diff --git a/bikeshed/Spec.py b/bikeshed/Spec.py index d6a261f57a..7ce609e39f 100644 --- a/bikeshed/Spec.py +++ b/bikeshed/Spec.py @@ -18,6 +18,7 @@ constants, datablocks, dfns, + doctypes, extensions, fingerprinting, h, @@ -108,6 +109,7 @@ def initializeState(self) -> bool: self.widl: widlparser.Parser = idl.getParser() self.languages: dict[str, language.Language] = fetchLanguages(self.dataFile) + self.doctypes: doctypes.DoctypeManager = fetchDoctypes(self.dataFile) self.extraJC = stylescript.JCManager() self.extraJC.addColors() @@ -141,21 +143,27 @@ def initMetadata(self, inputContent: InputSource.InputContent) -> None: # in a markdown code span or an to show off. _, self.mdDocument = metadata.parse(lines=inputContent.lines) - # Combine the data so far... + # Combine the data so far, and compute the doctype + # (the other md sources need the doctype in order to be found) self.md = metadata.join(self.mdBaseline, self.mdDocument, self.mdCommandLine) + rawDoctype = (self.md.rawOrg, self.md.rawGroup, self.md.rawStatus) + self.doctype = self.doctypes.getDoctype(self.md.rawOrg, self.md.rawGroup, self.md.rawStatus) - # Using that to determine the Group and Status, load the correct defaults.include boilerplate self.mdDefaults = metadata.fromJson( - data=retrieve.retrieveBoilerplateFile(self, "defaults", error=True), + data=retrieve.retrieveBoilerplateFile(self, "defaults"), source="defaults", ) self.md = metadata.join(self.mdBaseline, self.mdDefaults, self.mdDocument, self.mdCommandLine) + if rawDoctype != (self.md.rawOrg, self.md.rawGroup, self.md.rawStatus): + # recompute doctype + self.doctype = self.doctypes.getDoctype(self.md.rawOrg, self.md.rawGroup, self.md.rawStatus) # Using all of that, load up the text macros so I can sub them into the computed-metadata file. self.md.fillTextMacros(self.macros, doc=self) jsonEscapedMacros = {k: json.dumps(v)[1:-1] for k, v in self.macros.items()} + computedMdText = h.replaceMacrosTextly( - retrieve.retrieveBoilerplateFile(self, "computed-metadata", error=True), + retrieve.retrieveBoilerplateFile(self, "computed-metadata"), macros=jsonEscapedMacros, context="? of computed-metadata.include", ) @@ -173,7 +181,7 @@ def initMetadata(self, inputContent: InputSource.InputContent) -> None: # And compute macros again, in case the preceding steps changed them. self.md.fillTextMacros(self.macros, doc=self) - self.md.validate() + self.md.validate(doc=self) m.retroactivelyCheckErrorLevel() def earlyParse(self, inputContent: InputSource.InputContent) -> list[l.Line]: @@ -231,7 +239,7 @@ def assembleDocument(self) -> Spec: features=markdownFeatures, ) - self.refs.setSpecData(self.md) + self.refs.setSpecData(self) # Convert to a single string of html now, for convenience. self.html = "".join(x.text for x in self.lines) @@ -554,6 +562,10 @@ def fetchLanguages(dataFile: retrieve.DataFileRequester) -> dict[str, language.L } +def fetchDoctypes(dataFile: retrieve.DataFileRequester) -> doctypes.DoctypeManager: + return doctypes.DoctypeManager.fromKdlStr(dataFile.fetch("boilerplate", "doctypes.kdl", str=True)) + + def addDomintroStyles(doc: Spec) -> None: # Adds common WHATWG styles for domintro blocks. diff --git a/bikeshed/boilerplate.py b/bikeshed/boilerplate.py index 8f4cb7ad4a..57f4d99ac6 100644 --- a/bikeshed/boilerplate.py +++ b/bikeshed/boilerplate.py @@ -157,7 +157,7 @@ def getFillContainer(tag: str, doc: t.SpecT, default: bool = False) -> t.Element # Otherwise, append to the end of the document, # unless you're in the byos group - if doc.md.group == "byos": + if doc.doctype.group.name == "BYOS": return None if default: return doc.body @@ -240,7 +240,7 @@ def removeUnwantedBoilerplate(doc: t.SpecT) -> None: def w3cStylesheetInUse(doc: t.SpecT) -> bool: - return doc.md.prepTR or doc.md.status in config.snapshotStatuses + return doc.md.prepTR or doc.doctype.group.name == "W3C" def addBikeshedBoilerplate(doc: t.SpecT) -> None: @@ -933,7 +933,7 @@ def printPreviousVersion(v: dict[str, str]) -> t.ElementT | None: md.setdefault("This version", []).append(h.E.a({"href": mac["version"], "class": "u-url"}, mac["version"])) if doc.md.TR: md.setdefault("Latest published version", []).append(h.E.a({"href": doc.md.TR}, doc.md.TR)) - if doc.md.ED and doc.md.status in config.snapshotStatuses: + if doc.md.ED and "TR" in doc.doctype.status.requires: md.setdefault("Editor's Draft", []).append(h.E.a({"href": doc.md.ED}, doc.md.ED)) if doc.md.previousVersions: md["Previous Versions"] = [printPreviousVersion(ver) for ver in doc.md.previousVersions] diff --git a/bikeshed/conditional.py b/bikeshed/conditional.py index de150f01d0..4a10549d06 100644 --- a/bikeshed/conditional.py +++ b/bikeshed/conditional.py @@ -3,7 +3,7 @@ import dataclasses import re -from . import config, h, t +from . import h, t from . import messages as m # Any element can have an include-if or exclude-if attribute, @@ -61,7 +61,7 @@ def processConditionals(doc: t.SpecT, container: t.ElementT | None = None) -> No def evalConditions(doc: t.SpecT, el: t.ElementT, conditionString: str) -> t.Generator[bool, None, None]: for cond in parseConditions(conditionString, el): if cond.type == "status": - yield config.looselyMatch(cond.value, doc.md.status) + yield doc.doctype.status.looselyMatch(cond.value) elif cond.type == "text macro": for k in doc.macros: if k.upper() == cond.value: diff --git a/bikeshed/config/__init__.py b/bikeshed/config/__init__.py index 104068b50d..78231cf841 100644 --- a/bikeshed/config/__init__.py +++ b/bikeshed/config/__init__.py @@ -35,23 +35,3 @@ simplifyText, splitForValues, ) -from .status import ( - canonicalizeStatus, - datedStatuses, - deadlineStatuses, - implementationStatuses, - looselyMatch, - megaGroups, - noEDStatuses, - shortToLongStatus, - snapshotStatuses, - splitStatus, - unlevelledStatuses, - w3cCgs, - w3cCommunityStatuses, - w3cIgs, - w3cIGStatuses, - w3cProcessDocumentStatuses, - w3cTAGStatuses, - w3cWGStatuses, -) diff --git a/bikeshed/config/main.py b/bikeshed/config/main.py index 5af1398c87..e065f7eb64 100644 --- a/bikeshed/config/main.py +++ b/bikeshed/config/main.py @@ -12,6 +12,7 @@ def englishFromList(items: t.Iterable[str], conjunction: str = "or") -> str: # Format a list of strings into an English list. items = list(items) + assert len(items) > 0 if len(items) == 1: return items[0] if len(items) == 2: diff --git a/bikeshed/config/status.py b/bikeshed/config/status.py deleted file mode 100644 index f8a4512af4..0000000000 --- a/bikeshed/config/status.py +++ /dev/null @@ -1,496 +0,0 @@ -from __future__ import annotations - -from .. import messages as m -from .. import t -from . import main - -shortToLongStatus = { - "DREAM": "A Collection of Interesting Ideas", - "LS": "Living Standard", - "LS-COMMIT": "Commit Snapshot", - "LS-BRANCH": "Branch Snapshot", - "LS-PR": "PR Preview", - "LD": "Living Document", - "DRAFT-FINDING": "Draft Finding", - "FINDING": "Finding", - "whatwg/RD": "Review Draft", - "w3c/ED": "Editor’s Draft", - "w3c/WD": "W3C Working Draft", - "w3c/FPWD": "W3C First Public Working Draft", - "w3c/LCWD": "W3C Last Call Working Draft", - "w3c/CR": "W3C Candidate Recommendation Snapshot", - "w3c/CRD": "W3C Candidate Recommendation Draft", - "w3c/PR": "W3C Proposed Recommendation", - "w3c/REC": "W3C Recommendation", - "w3c/PER": "W3C Proposed Edited Recommendation", - "w3c/WG-NOTE": "W3C Group Note", - "w3c/IG-NOTE": "W3C Group Note", - "w3c/NOTE": "W3C Group Note", - "w3c/NOTE-ED": "Editor’s Draft", - "w3c/NOTE-WD": "W3C Group Draft Note", - "w3c/NOTE-FPWD": "W3C Group Draft Note", - "w3c/DRY": "W3C Draft Registry", - "w3c/CRYD": "W3C Candidate Registry Draft", - "w3c/CRY": "W3C Candidate Registry", - "w3c/RY": "W3C Registry", - "w3c/MO": "W3C Member-only Draft", - "w3c/UD": "Unofficial Proposal Draft", - "w3c/CG-DRAFT": "Draft Community Group Report", - "w3c/CG-FINAL": "Final Community Group Report", - "tc39/STAGE0": "Stage 0: Strawman", - "tc39/STAGE1": "Stage 1: Proposal", - "tc39/STAGE2": "Stage 2: Draft", - "tc39/STAGE3": "Stage 3: Candidate", - "tc39/STAGE4": "Stage 4: Finished", - "iso/I": "Issue", - "iso/DR": "Defect Report", - "iso/D": "Draft Proposal", - "iso/P": "Published Proposal", - "iso/MEET": "Meeting Announcements", - "iso/RESP": "Records of Response", - "iso/MIN": "Minutes", - "iso/ER": "Editor’s Report", - "iso/SD": "Standing Document", - "iso/PWI": "Preliminary Work Item", - "iso/NP": "New Proposal", - "iso/NWIP": "New Work Item Proposal", - "iso/WD": "Working Draft", - "iso/CD": "Committee Draft", - "iso/FCD": "Final Committee Draft", - "iso/DIS": "Draft International Standard", - "iso/FDIS": "Final Draft International Standard", - "iso/PRF": "Proof of a new International Standard", - "iso/IS": "International Standard", - "iso/TR": "Technical Report", - "iso/DTR": "Draft Technical Report", - "iso/TS": "Technical Specification", - "iso/DTS": "Draft Technical Specification", - "iso/PAS": "Publicly Available Specification", - "iso/TTA": "Technology Trends Assessment", - "iso/IWA": "International Workshop Agreement", - "iso/COR": "Technical Corrigendum", - "iso/GUIDE": "Guidance to Technical Committees", - "iso/NP-AMD": "New Proposal Amendment", - "iso/AWI-AMD": "Approved new Work Item Amendment", - "iso/WD-AMD": "Working Draft Amendment", - "iso/CD-AMD": "Committee Draft Amendment", - "iso/PD-AMD": "Proposed Draft Amendment", - "iso/FPD-AMD": "Final Proposed Draft Amendment", - "iso/D-AMD": "Draft Amendment", - "iso/FD-AMD": "Final Draft Amendment", - "iso/PRF-AMD": "Proof Amendment", - "iso/AMD": "Amendment", - "fido/ED": "Editor’s Draft", - "fido/WD": "Working Draft", - "fido/RD": "Review Draft", - "fido/ID": "Implementation Draft", - "fido/PS": "Proposed Standard", - "fido/FD": "Final Document", - "khronos/ED": "Editor’s Draft", - "aom/PD": "Pre-Draft", - "aom/WGD": "AOM Working Group Draft", - "aom/WGA": "AOM Working Group Approved Draft", - "aom/FD": "AOM Final Deliverable", -} -snapshotStatuses = [ - "w3c/WD", - "w3c/FPWD", - "w3c/LCWD", - "w3c/CR", - "w3c/CRD", - "w3c/PR", - "w3c/REC", - "w3c/PER", - "w3c/WG-NOTE", - "w3c/IG-NOTE", - "w3c/NOTE", - "w3c/NOTE-WD", - "w3c/NOTE-FPWD", - "w3c/DRY", - "w3c/CRYD", - "w3c/CRY", - "w3c/RY", - "w3c/MO", -] -datedStatuses = [ - "w3c/WD", - "w3c/FPWD", - "w3c/LCWD", - "w3c/CR", - "w3c/CRD", - "w3c/PR", - "w3c/REC", - "w3c/PER", - "w3c/WG-NOTE", - "w3c/IG-NOTE", - "w3c/NOTE", - "w3c/NOTE-WD", - "w3c/NOTE-FPWD", - "w3c/DRY", - "w3c/CRYD", - "w3c/CRY", - "w3c/RY", - "w3c/MO", - "whatwg/RD", -] -implementationStatuses = ["w3c/CR", "w3c/CRD", "w3c/PR", "w3c/REC"] -unlevelledStatuses = [ - "LS", - "LD", - "DREAM", - "w3c/UD", - "LS-COMMIT", - "LS-BRANCH", - "LS-PR", - "FINDING", - "DRAFT-FINDING", - "whatwg/RD", -] -deadlineStatuses = ["w3c/LCWD", "w3c/PR"] -noEDStatuses = [ - "LS", - "LS-COMMIT", - "LS-BRANCH", - "LS-PR", - "LD", - "FINDING", - "DRAFT-FINDING", - "DREAM", - "iso/NP", - "whatwg/RD", -] - -# W3C statuses are restricted in various confusing ways. - -# These statuses are usable by any group operating under the W3C Process -# Document. (So, not by Community and Business Groups.) -w3cProcessDocumentStatuses = frozenset( - [ - "w3c/ED", - "w3c/NOTE", - "w3c/NOTE-ED", - "w3c/NOTE-WD", - "w3c/NOTE-FPWD", - "w3c/UD", - ], -) - -# Interest Groups are limited to these statuses -w3cIGStatuses = frozenset(["w3c/IG-NOTE"]).union(w3cProcessDocumentStatuses) -# Working Groups are limited to these statuses -w3cWGStatuses = frozenset( - [ - "w3c/WD", - "w3c/FPWD", - "w3c/LCWD", - "w3c/CR", - "w3c/CRD", - "w3c/PR", - "w3c/REC", - "w3c/PER", - "w3c/WG-NOTE", - "w3c/DRY", - "w3c/CRYD", - "w3c/CRY", - "w3c/RY", - ], -).union(w3cProcessDocumentStatuses) -# The TAG is limited to these statuses -w3cTAGStatuses = frozenset( - [ - "DRAFT-FINDING", - "FINDING", - "w3c/WG-NOTE", # despite the TAG not being a WG. I know, it's weird. - ], -).union(w3cProcessDocumentStatuses) -# Community and Business Groups are limited to these statuses -w3cCommunityStatuses = frozenset(["w3c/CG-DRAFT", "w3c/CG-FINAL", "w3c/UD"]) - -megaGroups = { - "w3c": frozenset( - [ - "ab", - "act-framework", - "act-rules-format", - "audiowg", - "browser-testing-tools", - "csswg", - "dap", - "fedidcg", - "fxtf", - "geolocation", - "gpuwg", - "houdini", - "html", - "htmlwg", - "httpslocal", - "i18n", - "immersivewebcg", - "immersivewebwg", - "mediacapture", - "mediawg", - "patcg", - "patcg-id", - "ping", - "pngwg", - "privacycg", - "processcg", - "ricg", - "sacg", - "secondscreencg", - "secondscreenwg", - "serviceworkers", - "solidcg", - "svg", - "tag", - "texttracks", - "uievents", - "wasm", - "web-bluetooth-cg", - "web-payments", - "webapps", - "webappsec", - "webauthn", - "webediting", - "webfontswg", - "webml", - "webmlwg", - "webperf", - "webplatform", - "webrtc", - "webspecs", - "webtransport", - "webvr", - "wecg", - "wicg", - "wintercg", - "w3t", - ], - ), - "whatwg": frozenset(["whatwg"]), - "tc39": frozenset(["tc39"]), - "iso": frozenset(["wg14", "wg21"]), - "fido": frozenset(["fido"]), - "priv-sec": frozenset( - [ - "audiowg", - "csswg", - "dap", - "fxtf", - "fxtf-csswg", - "geolocation", - "houdini", - "html", - "mediacapture", - "mediawg", - "ricg", - "svg", - "texttracks", - "uievents", - "web-bluetooth-cg", - "webappsec", - "webfontswg", - "webplatform", - "webspecs", - "whatwg", - ], - ), - "khronos": frozenset(["webgl"]), - "aom": frozenset(["aom"]), -} -# Community and business groups within the W3C: -w3cCgs = frozenset( - [ - "fedidcg", - "immersivewebcg", - "patcg", - "patcg-id", - "privacycg", - "processcg", - "ricg", - "sacg", - "solidcg", - "web-bluetooth-cg", - "webml", - "wecg", - "wicg", - "wintercg", - ], -) -assert w3cCgs.issubset(megaGroups["w3c"]) -# Interest Groups within the W3C: -w3cIgs = frozenset(["ping"]) -assert w3cIgs.issubset(megaGroups["w3c"]) - - -@t.overload -def canonicalizeStatus(rawStatus: None, group: str | None) -> None: ... - - -@t.overload -def canonicalizeStatus(rawStatus: str, group: str | None) -> str: ... - - -def canonicalizeStatus(rawStatus: str | None, group: str | None) -> str | None: - if rawStatus is None: - return None - - def validateW3Cstatus(group: str, status: str, rawStatus: str) -> None: - if status == "DREAM": - m.warn("You used Status: DREAM for a W3C document. Consider UD instead.") - return - - if "w3c/" + status in shortToLongStatus: - status = "w3c/" + status - - def formatStatusSet(statuses: frozenset[str]) -> str: - return ", ".join(sorted({status.split("/")[-1] for status in statuses})) - - if group in w3cIgs and status not in w3cIGStatuses: - m.warn( - f"You used Status: {rawStatus}, but W3C Interest Groups are limited to these statuses: {formatStatusSet(w3cIGStatuses)}.", - ) - - if group == "tag" and status not in w3cTAGStatuses: - m.warn( - f"You used Status: {rawStatus}, but the TAG is are limited to these statuses: {formatStatusSet(w3cTAGStatuses)}", - ) - - if group in w3cCgs and status not in w3cCommunityStatuses: - m.warn( - f"You used Status: {rawStatus}, but W3C Community and Business Groups are limited to these statuses: {formatStatusSet(w3cCommunityStatuses)}.", - ) - - def megaGroupsForStatus(status: str) -> list[str]: - # Returns a list of megagroups that recognize the given status - mgs = [] - for key in shortToLongStatus: - mg, _, s = key.partition("/") - if s == status: - mgs.append(mg) - return mgs - - # Canonicalize the rawStatus that was passed in, into a known form. - # Might be foo/BAR, or just BAR. - megaGroup, _, status = rawStatus.partition("/") - if status == "": - status = megaGroup - megaGroup = "" - megaGroup = megaGroup.lower() - status = status.upper() - if megaGroup: - canonStatus = megaGroup + "/" + status - else: - canonStatus = status - - if group is not None: - group = group.lower() - - if group in megaGroups["w3c"]: - validateW3Cstatus(group, canonStatus, rawStatus) - - # Using a directly-recognized status is A-OK. - # (Either one of the unrestricted statuses, - # or one of the restricted statuses with the correct standards-org prefix.) - if canonStatus in shortToLongStatus: - return canonStatus - - possibleMgs = megaGroupsForStatus(status) - - # If they specified a standards-org prefix and it wasn't found, - # that's an error. - if megaGroup: - # Was the error because the megagroup doesn't exist? - if possibleMgs: - if megaGroup not in megaGroups: - msg = f"Status metadata specified an unrecognized '{megaGroup}' organization." - else: - msg = f"Status '{status}' can't be used with the org '{megaGroup}'." - if "" in possibleMgs: - if len(possibleMgs) == 1: - msg += f" That status must be used without an org at all, like `Status: {status}`" - else: - msg += " That status can only be used with the org{} {}, or without an org at all.".format( - "s" if len(possibleMgs) > 1 else "", - main.englishFromList(f"'{x}'" for x in possibleMgs if x != ""), - ) - else: - if len(possibleMgs) == 1: - msg += f" That status can only be used with the org '{possibleMgs[0]}', like `Status: {possibleMgs[0]}/{status}`" - else: - msg += " That status can only be used with the orgs {}.".format( - main.englishFromList(f"'{x}'" for x in possibleMgs), - ) - - else: - if megaGroup not in megaGroups: - msg = f"Unknown Status metadata '{canonStatus}'. Check the docs for valid Status values." - else: - msg = f"Status '{status}' can't be used with the org '{megaGroup}'. Check the docs for valid Status values." - m.die(msg) - return canonStatus - - # Otherwise, they provided a bare status. - # See if their group is compatible with any of the prefixed statuses matching the bare status. - assert "" not in possibleMgs # if it was here, the literal "in" test would have caught this bare status - for mg in possibleMgs: - if group in megaGroups[mg]: - canonStatus = mg + "/" + status - - if mg == "w3c": - validateW3Cstatus(group, canonStatus, rawStatus) - - return canonStatus - - # Group isn't in any compatible org, so suggest prefixing. - if possibleMgs: - msg = "You used Status: {}, but that's limited to the {} org{}".format( - rawStatus, - main.englishFromList(f"'{mg}'" for mg in possibleMgs), - "s" if len(possibleMgs) > 1 else "", - ) - if group: - msg += ", and your group '{}' isn't recognized as being in {}.".format( - group, - "any of those orgs" if len(possibleMgs) > 1 else "that org", - ) - msg += " If this is wrong, please file a Bikeshed issue to categorize your group properly, and/or try:\n" - msg += "\n".join(f"Status: {mg}/{status}" for mg in possibleMgs) - else: - msg += ", and you don't have a Group metadata. Please declare your Group, or check the docs for statuses that can be used by anyone." - else: - msg = f"Unknown Status metadata '{canonStatus}'. Check the docs for valid Status values." - m.die(msg) - return canonStatus - - -@t.overload -def splitStatus(st: None) -> tuple[None, None]: ... - - -@t.overload -def splitStatus(st: str) -> tuple[str | None, str]: ... - - -def splitStatus(st: str | None) -> tuple[str | None, str | None]: - if st is None: - return None, None - - parts = st.partition("/") - if parts[2] == "": - return None, parts[0] - - return parts[0], parts[2] - - -def looselyMatch(s1: str | None, s2: str | None) -> bool: - # Loosely matches two statuses: - # they must have the same status name, - # and either the same or missing group name - group1, status1 = splitStatus(s1) - group2, status2 = splitStatus(s2) - if status1 != status2: - return False - if group1 == group2 or group1 is None or group2 is None: - return True - return False diff --git a/bikeshed/doctypes/__init__.py b/bikeshed/doctypes/__init__.py new file mode 100644 index 0000000000..e845d6cdc0 --- /dev/null +++ b/bikeshed/doctypes/__init__.py @@ -0,0 +1 @@ +from .manager import NIL_GROUP, NIL_ORG, NIL_STATUS, Doctype, DoctypeManager, Group, Org, Status diff --git a/bikeshed/doctypes/manager.py b/bikeshed/doctypes/manager.py new file mode 100644 index 0000000000..1c7d522362 --- /dev/null +++ b/bikeshed/doctypes/manager.py @@ -0,0 +1,190 @@ +from __future__ import annotations + +import dataclasses + +import kdl + +from .. import t +from . import utils + + +@dataclasses.dataclass +class Doctype: + org: Org + group: Group + status: Status + + def __str__(self) -> str: + return f"Doctype<org={self.org.name}, group={self.group.fullName()}, status={self.status.fullName()}>" + + +@dataclasses.dataclass +class DoctypeManager: + genericStatuses: dict[str, Status] = dataclasses.field(default_factory=dict) + orgs: dict[str, Org] = dataclasses.field(default_factory=dict) + + @staticmethod + def fromKdlStr(data: str) -> DoctypeManager: + self = DoctypeManager() + kdlDoc = kdl.parse(data) + + for node in kdlDoc.getAll("status"): + status = Status.fromKdlNode(node) + self.genericStatuses[status.name] = status + + for node in kdlDoc.getAll("org"): + org = Org.fromKdlNode(node) + self.orgs[org.name] = org + + return self + + def getStatuses(self, name: str) -> list[Status]: + statuses = [] + if name in self.genericStatuses: + statuses.append(self.genericStatuses[name]) + for org in self.orgs.values(): + if name in org.statuses: + statuses.append(org.statuses[name]) + return statuses + + def getStatus(self, orgName: str | None, statusName: str, allowGeneric: bool = False) -> Status | None: + # Note that a None orgName does *not* indicate we don't care, + # it's specifically statuses *not* restricted to an org. + if orgName is None: + return self.genericStatuses.get(statusName) + elif orgName in self.orgs: + statusInOrg = self.orgs[orgName].statuses.get(statusName) + if statusInOrg: + return statusInOrg + elif allowGeneric: + return self.genericStatuses.get(statusName) + else: + return None + else: + return None + + def getGroups(self, orgName: str | None, groupName: str) -> list[Group]: + # Unlike Status, if org is None we'll just grab whatever group matches. + groups = [] + for org in self.orgs.values(): + if orgName is not None and org.name != orgName: + continue + if groupName in org.groups: + groups.append(org.groups[groupName]) + return groups + + def getGroup(self, orgName: str | None, groupName: str) -> Group | None: + # If Org is None, and there are multiple groups with that name, fail to find. + groups = self.getGroups(orgName, groupName) + if len(groups) == 1: + return groups[0] + else: + return None + + def getOrg(self, orgName: str) -> Org | None: + return self.orgs.get(orgName) + + def getDoctype(self, orgName: str | None, groupName: str | None, statusName: str | None) -> Doctype: + org, group, status = utils.canonicalize(self, orgName, groupName, statusName) + return Doctype(org if org else NIL_ORG, group if group else NIL_GROUP, status if status else NIL_STATUS) + + +@dataclasses.dataclass +class Org: + name: str + groups: dict[str, Group] = dataclasses.field(default_factory=dict) + statuses: dict[str, Status] = dataclasses.field(default_factory=dict) + + @staticmethod + def fromKdlNode(node: kdl.Node) -> Org: + name = t.cast(str, node.args[0]).upper() + self = Org(name) + for child in node.getAll("group"): + g = Group.fromKdlNode(child, org=self) + self.groups[g.name] = g + for child in node.getAll("status"): + s = Status.fromKdlNode(child, org=self) + self.statuses[s.name] = s + return self + + def __bool__(self) -> bool: + return self != NIL_ORG + + +NIL_ORG = Org("(not provided)") + + +@dataclasses.dataclass +class Group: + name: str + privSec: bool + org: Org + requires: list[str] = dataclasses.field(default_factory=list) + type: str | None = None + + def fullName(self) -> str: + if self.org: + return self.org.name + "/" + self.name + else: + return self.name + + @staticmethod + def fromKdlNode(node: kdl.Node, org: Org) -> Group: + name = t.cast(str, node.args[0]).upper() + privSec = t.cast(bool, node.props.get("priv-sec", False)) + if "type" in node.props: + groupType = str(node.props.get("type")).lower() + else: + groupType = None + self = Group(name, privSec, org, type=groupType) + for n in node.getAll("requires"): + self.requires.extend(t.cast("list[str]", n.getArgs((..., str)))) + return self + + def __bool__(self) -> bool: + return self != NIL_GROUP + + +NIL_GROUP = Group("(not provided)", privSec=False, org=NIL_ORG) + + +@dataclasses.dataclass +class Status: + name: str + longName: str + org: Org + requires: list[str] = dataclasses.field(default_factory=list) + groupTypes: list[str] = dataclasses.field(default_factory=list) + + def fullName(self) -> str: + if self.org: + return self.org.name + "/" + self.name + else: + return self.name + + def looselyMatch(self, rawStatus: str) -> bool: + orgName, statusName = utils.splitOrg(rawStatus) + if statusName and self.name.upper() != statusName.upper(): + return False + if orgName and self.org.name != orgName.upper(): + return False + return True + + @staticmethod + def fromKdlNode(node: kdl.Node, org: Org | None = None) -> Status: + if org is None: + org = NIL_ORG + name = t.cast(str, node.args[0]).upper() + longName = t.cast(str, node.args[1]) + self = Status(name, longName, org) + for n in node.getAll("requires"): + self.requires.extend(t.cast("list[str]", n.getArgs((..., str)))) + for n in node.getAll("group-types"): + self.groupTypes.extend(str(x).lower() for x in n.getArgs((..., str))) + return self + + def __bool__(self) -> bool: + return self != NIL_STATUS + + +NIL_STATUS = Status("(not provided)", "", org=NIL_ORG) diff --git a/bikeshed/doctypes/utils.py b/bikeshed/doctypes/utils.py new file mode 100644 index 0000000000..00e40b0d4f --- /dev/null +++ b/bikeshed/doctypes/utils.py @@ -0,0 +1,210 @@ +from __future__ import annotations + +from .. import config, t +from .. import messages as m + +if t.TYPE_CHECKING: + from . import DoctypeManager, Group, Org, Status # pylint: disable=cyclic-import + + +def canonicalize( + manager: DoctypeManager, + rawOrg: str | None, + rawGroup: str | None, + rawStatus: str | None, +) -> tuple[Org | None, Group | None, Status | None]: + # Takes raw Org/Status/Group names (something written in the Org/Status/Group metadata), + # and, if possible, converts them into Org/Status/Group objects. + + # First, canonicalize the status and group casings, and separate them from + # any inline org specifiers. + # Then, figure out what the actual org name is. + orgFromStatus, statusName = splitOrg(rawStatus) + orgFromStatus = orgFromStatus.upper() if orgFromStatus is not None else None + statusName = statusName.upper() if statusName is not None else None + + orgFromGroup, groupName = splitOrg(rawGroup) + orgFromGroup = orgFromGroup.upper() if orgFromGroup is not None else None + groupName = groupName.upper() if groupName is not None else None + + orgName = reconcileOrgs(rawOrg, orgFromStatus, orgFromGroup) + + if orgName is not None and rawOrg is None: + orgInferredFrom = "Org (inferred from " + if orgFromStatus is not None: + orgInferredFrom += f"Status '{rawStatus}')" + else: + orgInferredFrom += f"Group '{rawGroup}')" + else: + orgInferredFrom = "Org" + + # Actually fetch the Org/Status/Group objects + if orgName is not None: + org = manager.getOrg(orgName) + if org is None: + m.die(f"Unknown {orgInferredFrom} '{orgName}'. See docs for recognized Org values.") + else: + org = None + + if groupName is not None: + group = manager.getGroup(orgName, groupName) + if group is None: + if orgName is None: + groups = manager.getGroups(orgName, groupName) + if len(groups) > 1: + orgNamesForGroup = config.englishFromList((x.org.name for x in groups), "and") + m.die( + f"Your Group '{groupName}' exists under several Orgs ({orgNamesForGroup}). Specify which org you want in an Org metadata.", + ) + else: + m.die(f"Unknown Group '{groupName}'. See docs for recognized Group values.") + else: + groups = manager.getGroups(None, groupName) + if len(groups) > 0: + orgNamesForGroup = config.englishFromList((x.org.name for x in groups), "and") + m.die( + f"Your Group '{groupName}' doesn't exist under the {orgInferredFrom} '{orgName}', but does exist under {orgNamesForGroup}. Specify the correct Org (or the correct Group).", + ) + else: + m.die(f"Unknown Group '{rawGroup}'. See docs for recognized Group values.") + else: + group = None + + # If Org wasn't specified anywhere, default it from Group if possible + if org is None and group is not None: + org = group.org + + if statusName is not None: + if orgFromStatus is not None: + # If status explicitly specified an org, use that + status = manager.getStatus(orgFromStatus, statusName) + elif org: + # Otherwise, if we found an org, look for it there, + # but fall back to looking for it in the generic statuses + status = manager.getStatus(org.name, statusName, allowGeneric=True) + else: + # Otherwise, just look in the generic statuses; + # the error stuff later will catch it if that doesn't work. + status = manager.getStatus(None, statusName) + else: + # Just quick exit on this case, nothing we can do. + return org, group, None + + # See if your org-specific Status matches your Org + if org and status and status.org and status.org != org: + m.die(f"Your {orgInferredFrom} is '{org.name}', but your Status is only usable in the '{status.org.name}' Org.") + + if group and status and status.org and status.org != group.org: + # If using an org-specific Status, Group must match. + # (Any group can use a generic status.) + possibleStatusNames = [x.name for x in group.org.statuses.values()] + m.die( + f"Your Group ({group.name}) is in the '{group.org.name}' Org, but your Status ({status.name}) is only usable in the '{status.org.name}' Org. Allowed Status values for '{group.org.name}' are {config.englishFromList(sorted(possibleStatusNames))}", + ) + + if group and group.type is not None and status and status.groupTypes and group.type not in status.groupTypes: + allowedStatuses = [s.name for s in group.org.statuses.values() if group.type in s.groupTypes] + if allowedStatuses: + m.warn( + f"You used Status {status.name}, but your Group ({group.name}) is limited to the statuses {config.englishFromList(sorted(allowedStatuses))}.", + ) + else: + m.die( + f"PROGRAMMING ERROR: Group '{group.fullName()}' has type '{group.type}', but none of the {group.org.name} Statuses are associated with that type.", + ) + + if group and status and group.org.name == "W3C": + # Apply the special w3c rules + validateW3CStatus(status) + + # Reconciliation done, return everything if Status exists. + if status: + return org, group, status + + # Otherwise, try and figure out why we failed to find the status + + possibleStatuses = manager.getStatuses(statusName) + if len(possibleStatuses) == 0: + m.die(f"Unknown Status metadata '{rawStatus}'. Check the docs for valid Status values.") + return org, group, status + elif len(possibleStatuses) == 1: + possibleStatus = possibleStatuses[0] + if possibleStatus.org is None: + m.die( + f"Your Status '{statusName}' is a generic status, but you explicitly specified '{rawStatus}'. Remove the org prefix from your Status.", + ) + else: + m.die( + f"Your Status '{statusName}' only exists in the '{possibleStatus.org.name}' Org, but you specified the {orgInferredFrom} '{orgName}'.", + ) + else: + statusNames = config.englishFromList((x.org.name for x in possibleStatuses if x.org), "and") + includesDefaultStatus = any(x.org is None for x in possibleStatuses) + if includesDefaultStatus: + msg = f"Your Status '{statusName}' only exists in Org(s) {statusNames}, or is a generic status." + else: + msg = f"Your Status '{statusName}' only exists in the Orgs {statusNames}." + if orgName: + if org: + msg += f" Your specified {orgInferredFrom} is '{orgName}'." + else: + msg += f" Your specified {orgInferredFrom} is an unknown value '{orgName}'." + else: + msg += " Declare one of those Orgs in your Org metadata." + m.die(msg) + + return org, group, status + + +def splitOrg(st: str | None) -> tuple[str | None, str | None]: + if st is None: + return None, None + + if "/" in st: + parts = st.partition("/") + return parts[0].strip().lower(), parts[2].strip() + else: + return None, st.strip() + + +def reconcileOrgs(fromRaw: str | None, fromStatus: str | None, fromGroup: str | None) -> str | None: + # Since there are three potential sources of "org" name, + # figure out what the name actually is, + # and complain if they disagree. + fromRaw = fromRaw.upper() if fromRaw else None + fromStatus = fromStatus.upper() if fromStatus else None + fromGroup = fromGroup.upper() if fromGroup else None + + orgName: str | None = fromRaw + + if fromStatus is not None: + if orgName is None: + orgName = fromStatus + elif orgName == fromStatus: + pass + else: + m.die( + f"Your Org metadata specifies '{fromRaw}', but your Status metadata states an org of '{fromStatus}'. These must agree - either fix them or remove one of them.", + ) + + if fromGroup is not None: + if orgName is None: + orgName = fromGroup + elif orgName == fromGroup: + pass + else: + m.die( + f"Your Org metadata specifies '{fromRaw}', but your Group metadata states an org of '{fromGroup}'. These must agree - either fix them or remove one of them.", + ) + + return orgName + + +def validateW3CStatus(status: Status) -> None: + if status.name == "DREAM": + m.warn("You used Status:DREAM for a W3C document. Consider Status:UD instead.") + + if status.name in ("IG-NOTE", "WG-NOTE"): + m.die( + f"Under Process2021, {status.name} is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead.", + ) diff --git a/bikeshed/headings.py b/bikeshed/headings.py index e9375c98c2..1cd7f3300b 100644 --- a/bikeshed/headings.py +++ b/bikeshed/headings.py @@ -22,8 +22,8 @@ def processHeadings(doc: t.SpecT, scope: str = "doc") -> None: addHeadingBonuses(headings) for el in headings: h.addClass(doc, el, "settled") - if scope == "all" and doc.md.group in config.megaGroups["priv-sec"]: - checkPrivacySecurityHeadings(h.findAll(".heading", doc)) + if scope == "all" and doc.doctype.group.privSec: + checkPrivacySecurityHeadings(doc, h.findAll(".heading", doc)) def resetHeadings(headings: list[t.ElementT]) -> None: @@ -56,7 +56,7 @@ def addHeadingIds(doc: t.SpecT, headings: list[t.ElementT]) -> None: ) -def checkPrivacySecurityHeadings(headings: list[t.ElementT]) -> None: +def checkPrivacySecurityHeadings(doc: t.SpecT, headings: list[t.ElementT]) -> None: security = False privacy = False for header in headings: @@ -66,7 +66,7 @@ def checkPrivacySecurityHeadings(headings: list[t.ElementT]) -> None: security = True if "privacy" in text and "considerations" in text: privacy = True - if "security" in text and "privacy" in text and "considerations" in text: + if "security" in text and "privacy" in text and "considerations" in text and doc.doctype.org.name == "W3C": m.warn( "W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one.", el=header, diff --git a/bikeshed/metadata.py b/bikeshed/metadata.py index fdeb24c1dc..539eda7621 100644 --- a/bikeshed/metadata.py +++ b/bikeshed/metadata.py @@ -49,8 +49,6 @@ def __init__(self) -> None: self.level: str | None = None self.displayShortname: str | None = None self.shortname: str | None = None - self.status: str | None = None - self.rawStatus: str | None = None # optional metadata self.advisementClass: str = "advisement" @@ -80,7 +78,6 @@ def __init__(self) -> None: self.externalInfotrees: config.BoolSet = config.BoolSet(default=False) self.favicon: str | None = None self.forceCrossorigin: bool = False - self.group: str | None = None self.h1: str | None = None self.ignoreCanIUseUrlFailure: list[str] = [] self.ignoreMDNFailure: list[str] = [] @@ -117,6 +114,9 @@ def __init__(self) -> None: self.prepTR: bool = False self.previousEditors: list[dict[str, str | None]] = [] self.previousVersions: list[dict[str, str]] = [] + self.rawGroup: str | None = None + self.rawOrg: str | None = None + self.rawStatus: str | None = None self.removeMultipleLinks: bool = False self.repository: repository.Repository | None = None self.requiredIDs: list[str] = [] @@ -160,11 +160,11 @@ def addData(self, key: str, val: str, lineNum: str | int | None = None) -> Metad if key not in ("ED", "TR", "URL"): key = key.title() - if key not in knownKeys: + if key not in KNOWN_KEYS: m.die(f'Unknown metadata key "{key}". Prefix custom keys with "!".', lineNum=lineNum) return self - md = knownKeys[key] + md = KNOWN_KEYS[key] try: parsedVal = md.parse(key, val, lineNum=lineNum) except Exception as e: @@ -176,7 +176,7 @@ def addData(self, key: str, val: str, lineNum: str | int | None = None) -> Metad return self def addParsedData(self, key: str, val: t.Any) -> MetadataManager: - md = knownKeys[key] + md = KNOWN_KEYS[key] result = md.join(getattr(self, md.attrName), val) setattr(self, md.attrName, result) self.manuallySetKeys.add(key) @@ -185,7 +185,8 @@ def addParsedData(self, key: str, val: t.Any) -> MetadataManager: def computeImplicitMetadata(self, doc: t.SpecT) -> None: # Do some "computed metadata", based on the value of other metadata. # Only call this when you're sure all metadata sources are parsed. - if self.group == "byos": + + if doc.doctype.group.name == "BYOS": self.boilerplate.default = False if not self.repository and doc: self.repository = getSpecRepository(doc) @@ -195,7 +196,6 @@ def computeImplicitMetadata(self, doc: t.SpecT) -> None: and "repository-issue-tracking" in self.boilerplate ): self.issues.append(("GitHub", self.repository.formatIssueUrl())) - self.status = config.canonicalizeStatus(self.rawStatus, self.group) self.expires = canonicalizeExpiryDate(self.date, self.expires) @@ -212,65 +212,46 @@ def computeImplicitMetadata(self, doc: t.SpecT) -> None: if self.dieOn: m.state.dieOn = self.dieOn - def validate(self) -> bool: - if self.group == "byos": + def validate(self, doc: t.SpecT) -> bool: + if doc.doctype.group.name == "BYOS": return True if not self.hasMetadata: m.die("The document requires at least one <pre class=metadata> block.") return False - if self.status in ("w3c/IG-NOTE", "w3c/WG-NOTE"): - m.die( - f"Under Process2021, {self.status} is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead.", - ) + requiredMd = [ + KNOWN_KEYS["Status"], + KNOWN_KEYS["Shortname"], + KNOWN_KEYS["Title"], + ] + + if doc.doctype.status: + for mdName in doc.doctype.status.requires: + if mdName in KNOWN_KEYS: + requiredMd.append(KNOWN_KEYS[mdName]) + else: + m.warn( + f"Programming error: your Status '{doc.doctype.status.fullName()}' claims to require the unknown metadata '{mdName}'. Please report this to the maintainer.", + ) + if doc.doctype.group: + for mdName in doc.doctype.group.requires: + if mdName in KNOWN_KEYS: + requiredMd.append(KNOWN_KEYS[mdName]) + else: + m.warn( + f"Programming error: your Group '{doc.doctype.group.fullName()}' claims to require the unknown metadata '{mdName}'. Please report this to the maintainer.", + ) - # { MetadataManager attr : metadata name (for printing) } - requiredSingularKeys = { - "status": "Status", - "shortname": "Shortname", - "title": "Title", - } - recommendedSingularKeys = {} - requiredMultiKeys = {} - - if self.status not in config.noEDStatuses: - requiredSingularKeys["ED"] = "ED" - if self.status in config.deadlineStatuses: - requiredSingularKeys["deadline"] = "Deadline" - if self.status in config.datedStatuses: - recommendedSingularKeys["date"] = "Date" - if self.status in config.snapshotStatuses: - requiredSingularKeys["TR"] = "TR" - requiredMultiKeys["issues"] = "Issue Tracking" - if self.status in config.implementationStatuses: - requiredSingularKeys["implementationReport"] = "Implementation Report" - if self.status not in config.unlevelledStatuses: - requiredSingularKeys["level"] = "Level" - if self.status not in config.shortToLongStatus: - m.die(f"Unknown Status '{self.status}' used.") if not self.noEditor: - requiredMultiKeys["editors"] = "Editor" + requiredMd.append(KNOWN_KEYS["Editor"]) if not self.noAbstract: - requiredMultiKeys["abstract"] = "Abstract" - if self.group and self.group.lower() == "csswg": - requiredSingularKeys["workStatus"] = "Work Status" - if self.group and self.group.lower() == "wg21": - requiredSingularKeys["audience"] = "Audience" + requiredMd.append(KNOWN_KEYS["Abstract"]) errors = [] - warnings = [] - for attrName, name in requiredSingularKeys.items(): - if getattr(self, attrName) is None: - errors.append(f" Missing a '{name}' entry.") - for attrName, name in recommendedSingularKeys.items(): - if getattr(self, attrName) is None: - warnings.append(f" You probably want to provide a '{name}' entry.") - for attrName, name in requiredMultiKeys.items(): - if len(getattr(self, attrName)) == 0: - errors.append(f" Must provide at least one '{name}' entry.") - if warnings: - m.warn("Some recommended metadata is missing:\n" + "\n".join(warnings)) + for md in requiredMd: + if getattr(self, md.attrName) is None: + errors.append(f" Missing '{md.humanName}'") if errors: m.die("Not all required metadata was provided:\n" + "\n".join(errors)) return False @@ -298,22 +279,27 @@ def fillTextMacros(self, macros: t.DefaultDict[str, str], doc: t.SpecT) -> None: macros["level"] = str(self.level) if self.displayVshortname: macros["vshortname"] = self.displayVshortname - if self.status == "FINDING" and self.group: - macros["longstatus"] = f"Finding of the {self.group}" - elif self.status in config.shortToLongStatus: - macros["longstatus"] = config.shortToLongStatus[self.status] + if doc.doctype.status.name == "FINDING" and doc.doctype.group: + macros["longstatus"] = f"Finding of the {doc.doctype.group.name}" + elif doc.doctype.status.name == "DRAFT-FINDING" and doc.doctype.group: + macros["longstatus"] = f"Draft Finding of the {doc.doctype.group.name}" + elif doc.doctype.status: + macros["longstatus"] = doc.doctype.status.longName else: macros["longstatus"] = "" - if self.status in ("w3c/LCWD", "w3c/FPWD"): - macros["status"] = "WD" - elif self.status in ("w3c/NOTE-FPWD", "w3c/NOTE-WD"): - macros["status"] = "DNOTE" - elif self.status in ("w3c/WG-NOTE", "w3c/IG-NOTE"): - macros["status"] = "NOTE" - elif self.status == "w3c/NOTE-ED": - macros["status"] = "ED" - elif self.rawStatus: - macros["status"] = self.rawStatus + if doc.doctype.group.name == "W3C": + if doc.doctype.status.name in ("LCWD", "FPWD"): + macros["status"] = "WD" + elif doc.doctype.status.name in ("NOTE-FPWD", "NOTE-WD"): + macros["status"] = "DNOTE" + elif doc.doctype.status.name in ("WG-NOTE", "IG-NOTE"): + macros["status"] = "NOTE" + elif doc.doctype.status.name == "NOTE-ED": + macros["status"] = "ED" + elif doc.doctype.status: + macros["status"] = doc.doctype.status.name + elif doc.doctype.status: + macros["status"] = doc.doctype.status.name if self.workStatus: macros["workstatus"] = self.workStatus if self.TR: @@ -344,8 +330,10 @@ def fillTextMacros(self, macros: t.DefaultDict[str, str], doc: t.SpecT) -> None: if self.deadline: macros["deadline"] = self.deadline.strftime(f"{self.deadline.day} %B %Y") macros["isodeadline"] = self.deadline.strftime("%Y-%m-%d") - if self.status in config.snapshotStatuses: - macros["version"] = "https://www.w3.org/TR/{year}/{status}-{vshortname}-{cdate}/".format(**macros) + if doc.doctype.org.name == "W3C" and "Date" in doc.doctype.status.requires: + macros["version"] = ( + f"https://www.w3.org/TR/{macros['year']}/{doc.doctype.status.name}-{macros['vshortname']}-{macros['cdate']}/" + ) macros["history"] = f"https://www.w3.org/standards/history/{self.displayVshortname}/" elif self.ED: macros["version"] = self.ED @@ -364,30 +352,29 @@ def fillTextMacros(self, macros: t.DefaultDict[str, str], doc: t.SpecT) -> None: macros["mailinglist"] = self.mailingList if self.mailingListArchives: macros["mailinglistarchives"] = self.mailingListArchives - if self.status == "w3c/FPWD": - macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-WD" - macros["w3c-status-url"] = "https://www.w3.org/standards/types#FPWD" - elif self.status in ("w3c/NOTE-FPWD", "w3c/NOTE-WD"): - macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-DNOTE" - macros["w3c-status-url"] = "https://www.w3.org/standards/types#DNOTE" - elif self.status == "FINDING": - macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" - macros["w3c-status-url"] = "https://www.w3.org/standards/types#FINDING" - elif self.status == "w3c/CG-DRAFT": - macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/cg-draft" - macros["w3c-status-url"] = "https://www.w3.org/standards/types#CG-DRAFT" - elif self.status == "w3c/CG-FINAL": - macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/cg-final" - macros["w3c-status-url"] = "https://www.w3.org/standards/types#CG-FINAL" - elif self.status == "w3c/NOTE-ED": - macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-ED" - macros["w3c-status-url"] = "https://www.w3.org/standards/types#ED" - else: - shortStatus = ( - self.rawStatus.partition("/")[2] if (self.rawStatus and "/" in str(self.rawStatus)) else self.rawStatus - ) - macros["w3c-stylesheet-url"] = f"https://www.w3.org/StyleSheets/TR/2021/W3C-{shortStatus}" - macros["w3c-status-url"] = f"https://www.w3.org/standards/types#{shortStatus}" + if doc.doctype.org.name == "W3C": + statusName = doc.doctype.status.name + if statusName == "FPWD": + macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-WD" + macros["w3c-status-url"] = "https://www.w3.org/standards/types#FPWD" + elif statusName in ("NOTE-FPWD", "NOTE-WD"): + macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-DNOTE" + macros["w3c-status-url"] = "https://www.w3.org/standards/types#DNOTE" + elif statusName == "FINDING": + macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" + macros["w3c-status-url"] = "https://www.w3.org/standards/types#FINDING" + elif statusName == "CG-DRAFT": + macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/cg-draft" + macros["w3c-status-url"] = "https://www.w3.org/standards/types#CG-DRAFT" + elif statusName == "CG-FINAL": + macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/cg-final" + macros["w3c-status-url"] = "https://www.w3.org/standards/types#CG-FINAL" + elif statusName == "NOTE-ED": + macros["w3c-stylesheet-url"] = "https://www.w3.org/StyleSheets/TR/2021/W3C-ED" + macros["w3c-status-url"] = "https://www.w3.org/standards/types#ED" + else: + macros["w3c-stylesheet-url"] = f"https://www.w3.org/StyleSheets/TR/2021/W3C-{statusName}" + macros["w3c-status-url"] = f"https://www.w3.org/standards/types#{statusName}" if self.customWarningText is not None: macros["customwarningtext"] = parsedTextFromRawLines( self.customWarningText, @@ -1065,7 +1052,7 @@ def parse(lines: t.Sequence[Line]) -> tuple[list[Line], MetadataManager]: assert match is not None key = match[1].strip() val = match[2].strip() - if key in knownKeys and knownKeys[key].multiline: + if key in KNOWN_KEYS and KNOWN_KEYS[key].multiline: multilineVal = True elif key[0] == "!": multilineVal = True @@ -1256,7 +1243,7 @@ def join(*sources: MetadataManager | None) -> MetadataManager: if mdsource is None: continue for k in mdsource.manuallySetKeys: - mdentry = knownKeys[k] + mdentry = KNOWN_KEYS[k] md.addParsedData(k, getattr(mdsource, mdentry.attrName)) for k, v in mdsource.otherMetadata.items(): md.otherMetadata.setdefault(k, []).extend(v) @@ -1327,7 +1314,7 @@ def parseLiteralList(key: str, val: str, lineNum: str | int | None) -> list[str] return [val] -knownKeys = { +KNOWN_KEYS = { "Abstract": Metadata("Abstract", "abstract", joinList, parseLiteralList, multiline=True), "Advisement Class": Metadata("Advisement Class", "advisementClass", joinValue, parseLiteral), "Assertion Class": Metadata("Assertion Class", "assertionClass", joinValue, parseLiteral), @@ -1369,7 +1356,7 @@ def parseLiteralList(key: str, val: str, lineNum: str | int | None) -> list[str] "Favicon": Metadata("Favicon", "favicon", joinValue, parseLiteral), "Force Crossorigin": Metadata("Force Crossorigin", "forceCrossorigin", joinValue, parseBoolean), "Former Editor": Metadata("Former Editor", "previousEditors", joinList, parseEditor), - "Group": Metadata("Group", "group", joinValue, parseLiteral), + "Group": Metadata("Group", "rawGroup", joinValue, parseLiteral), "H1": Metadata("H1", "h1", joinValue, parseLiteral), "Ignore Can I Use Url Failure": Metadata( "Ignore Can I Use Url Failure", @@ -1418,6 +1405,7 @@ def parseLiteralList(key: str, val: str, lineNum: str | int | None) -> list[str] "No Editor": Metadata("No Editor", "noEditor", joinValue, parseBoolean), "Note Class": Metadata("Note Class", "noteClass", joinValue, parseLiteral), "Opaque Elements": Metadata("Opaque Elements", "opaqueElements", joinList, parseCommaSeparated), + "Org": Metadata("Org", "rawOrg", joinValue, parseLiteral), "Prepare For Tr": Metadata("Prepare For Tr", "prepTR", joinValue, parseBoolean), "Previous Version": Metadata("Previous Version", "previousVersions", joinList, parsePreviousVersion), "Remove Multiple Links": Metadata("Remove Multiple Links", "removeMultipleLinks", joinValue, parseBoolean), diff --git a/bikeshed/refs/manager.py b/bikeshed/refs/manager.py index 892fbbe791..c4e9cd1dfb 100644 --- a/bikeshed/refs/manager.py +++ b/bikeshed/refs/manager.py @@ -244,18 +244,19 @@ def initializeBiblio(self) -> None: ), ) - def setSpecData(self, md: t.MetadataManager) -> None: - if md.defaultRefStatus: - self.defaultStatus = md.defaultRefStatus - elif md.status in config.snapshotStatuses: - self.defaultStatus = constants.refStatus.snapshot - elif md.status in config.shortToLongStatus: - self.defaultStatus = constants.refStatus.current - self.shortname = md.shortname - self.specLevel = md.level - self.spec = md.vshortname + def setSpecData(self, doc: t.SpecT) -> None: + if doc.md.defaultRefStatus: + self.defaultStatus = doc.md.defaultRefStatus + elif doc.doctype.status: + if "TR" in doc.doctype.status.requires: + self.defaultStatus = constants.refStatus.snapshot + else: + self.defaultStatus = constants.refStatus.current + self.shortname = doc.md.shortname + self.specLevel = doc.md.level + self.spec = doc.md.vshortname - for term, defaults in md.linkDefaults.items(): + for term, defaults in doc.md.linkDefaults.items(): for default in defaults: self.defaultSpecs[term].append(default) diff --git a/bikeshed/retrieve.py b/bikeshed/retrieve.py index 9d76d243f6..a46a6c82e2 100644 --- a/bikeshed/retrieve.py +++ b/bikeshed/retrieve.py @@ -8,6 +8,9 @@ from . import InputSource, config, t from . import messages as m +if t.TYPE_CHECKING: + from .doctypes import Group, Org, Status + class DataFileRequester: def __init__(self, fileType: str | None = None, fallback: DataFileRequester | None = None) -> None: @@ -101,9 +104,10 @@ def _fail(self, location: str, str: bool, okayToFail: bool) -> str | io.TextIOWr def retrieveBoilerplateFile( doc: t.SpecT, name: str, - group: str | None = None, - status: str | None = None, - error: bool = True, + group: Group | None = None, + status: Status | None = None, + org: Org | None = None, + quiet: bool = False, allowLocal: bool = True, fileRequester: DataFileRequester | None = None, ) -> str: @@ -116,58 +120,77 @@ def retrieveBoilerplateFile( else: dataFile = fileRequester - if group is None and doc.md.group is not None: - group = doc.md.group.lower() + if group is None: + group = doc.doctype.group + groupName = group.name.lower() if group else None if status is None: - if doc.md.status is not None: - status = doc.md.status - elif doc.md.rawStatus is not None: - status = doc.md.rawStatus - megaGroup, status = config.splitStatus(status) + status = doc.doctype.status + statusName = status.name.upper() if status else None + if org is None: + org = doc.doctype.org + orgName = org.name.lower() if org else None searchLocally = allowLocal and doc.md.localBoilerplate[name] def boilerplatePath(*segs: str) -> str: return dataFile.path("boilerplate", *segs) - statusFile = f"{name}-{status}.include" - genericFile = f"{name}.include" - sources: list[InputSource.InputSource | None] = [] + filenames = [] + if statusName: + filenames.append(f"{name}-{statusName}.include") + filenames.append(f"{name}.include") + + sources: list[InputSource.InputSource] = [] + # 1: Look locally if searchLocally: - sources.append(doc.inputSource.relative(statusFile)) # Can be None. - sources.append(doc.inputSource.relative(genericFile)) + for fn in filenames: + source = doc.inputSource.relative(fn) + if source: + sources.append(source) else: - for f in (statusFile, genericFile): - if doc.inputSource.cheaplyExists(f): + for fn in filenames: + if doc.inputSource.cheaplyExists(fn): m.warn( - f"Found {f} next to the specification without a matching\n" + f"Found {fn} next to the specification without a matching\n" + f"Local Boilerplate: {name} yes\n" + "in the metadata. This include won't be found when building via a URL.", ) # We should remove this after giving specs time to react to the warning: - sources.append(doc.inputSource.relative(f)) - if group: - sources.append(InputSource.FileInputSource(boilerplatePath(group, statusFile), chroot=False)) - sources.append(InputSource.FileInputSource(boilerplatePath(group, genericFile), chroot=False)) - if megaGroup: - sources.append(InputSource.FileInputSource(boilerplatePath(megaGroup, statusFile), chroot=False)) - sources.append(InputSource.FileInputSource(boilerplatePath(megaGroup, genericFile), chroot=False)) - sources.append(InputSource.FileInputSource(boilerplatePath(statusFile), chroot=False)) - sources.append(InputSource.FileInputSource(boilerplatePath(genericFile), chroot=False)) + source = doc.inputSource.relative(fn) + if source: + sources.append(source) + # 2: Look in the group's folder + if groupName: + sources.extend(InputSource.FileInputSource(boilerplatePath(groupName, fn), chroot=False) for fn in filenames) + # 3: Look in the org's folder + if orgName: + sources.extend(InputSource.FileInputSource(boilerplatePath(orgName, fn), chroot=False) for fn in filenames) + # 4: Look in the generic defaults + sources.extend(InputSource.FileInputSource(boilerplatePath(fn), chroot=False) for fn in filenames) # Watch all the possible sources, not just the one that got used, because if # an earlier one appears, we want to rebuild. - doc.recordDependencies(*(x for x in sources if x is not None)) + doc.recordDependencies(*sources) for source in sources: - if source is not None: - try: - return source.read().content - except OSError: - # That input doesn't exist. - pass - if error: - m.die( - f"Couldn't find an appropriate include file for the {name} inclusion, given group='{group}' and status='{status}'.", - ) + try: + content = source.read().content + return content + except OSError: + # That input doesn't exist. + pass + if not quiet: + components = [] + if orgName: + components.append(f"Org '{orgName}'") + if groupName: + components.append(f"Group '{groupName}'") + if statusName: + components.append(f"Status '{statusName}'") + msg = "Couldn't find an appropriate include file for the {name} inclusion" + if components: + msg += ", given " + config.englishFromList(components, "and") + else: + msg += "." + m.die(msg) return "" diff --git a/bikeshed/spec-data/readonly/anchors/anchors-1_.data b/bikeshed/spec-data/readonly/anchors/anchors-1_.data index 0a38ef5514..572504eb98 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-1_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-1_.data @@ -1,3 +1,14 @@ +"1" +enum-value +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-tokenversion-1 +1 +1 +TokenVersion +- 1 attr-value html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-1s.data b/bikeshed/spec-data/readonly/anchors/anchors-1s.data index 08408e688d..a336fa51cc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-1s.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-1s.data @@ -7,6 +7,18 @@ current https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-x 1 +box-shadow +- +1st <length> +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#shadow-offset-x +1 +1 +box-shadow-offset - 1st <length> dfn @@ -17,4 +29,5 @@ snapshot https://www.w3.org/TR/css-backgrounds-3/#shadow-offset-x 1 +box-shadow - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-2n.data b/bikeshed/spec-data/readonly/anchors/anchors-2n.data index a1faa4f60b..4471f38edc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-2n.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-2n.data @@ -7,6 +7,18 @@ current https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-y 1 +box-shadow +- +2nd <length> +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#shadow-offset-y +1 +1 +box-shadow-offset - 2nd <length> dfn @@ -17,4 +29,5 @@ snapshot https://www.w3.org/TR/css-backgrounds-3/#shadow-offset-y 1 +box-shadow - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-3f.data b/bikeshed/spec-data/readonly/anchors/anchors-3f.data new file mode 100644 index 0000000000..b8115fb53a --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-3f.data @@ -0,0 +1,11 @@ +3. feature query +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#api-query + +1 +Navigator +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-3r.data b/bikeshed/spec-data/readonly/anchors/anchors-3r.data index b515fdf0ba..e8bc2e188c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-3r.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-3r.data @@ -7,6 +7,7 @@ current https://drafts.csswg.org/css-backgrounds-3/#shadow-blur-radius 1 +box-shadow - 3rd <length [0,∞]> dfn @@ -17,4 +18,5 @@ snapshot https://www.w3.org/TR/css-backgrounds-3/#shadow-blur-radius 1 +box-shadow - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-4c.data b/bikeshed/spec-data/readonly/anchors/anchors-4c.data new file mode 100644 index 0000000000..79f8aca1ba --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-4c.data @@ -0,0 +1,11 @@ +4. create a handwriting recognizer +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#create-a-handwriting-recognizer + +1 +Navigator +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-4t.data b/bikeshed/spec-data/readonly/anchors/anchors-4t.data index d2964949a6..9db163aa45 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-4t.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-4t.data @@ -7,6 +7,7 @@ current https://drafts.csswg.org/css-backgrounds-3/#shadow-spread-distance 1 +box-shadow - 4th <length> dfn @@ -17,4 +18,5 @@ snapshot https://www.w3.org/TR/css-backgrounds-3/#shadow-spread-distance 1 +box-shadow - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-54.data b/bikeshed/spec-data/readonly/anchors/anchors-54.data index 32ae533c12..fbb2a7f3d4 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-54.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-54.data @@ -1,6 +1,6 @@ 5.4 generate a network error report dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -8,3 +8,13 @@ https://w3c.github.io/network-error-logging/#generate-a-network-error-report 1 1 - +5.4 generate a network error report +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#generate-a-network-error-report +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-55.data b/bikeshed/spec-data/readonly/anchors/anchors-55.data index 6cb3809934..5b4e60f10b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-55.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-55.data @@ -1,6 +1,6 @@ 5.5 deliver a network report dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -8,3 +8,13 @@ https://w3c.github.io/network-error-logging/#deliver-a-network-report 1 1 - +5.5 deliver a network report +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#deliver-a-network-report +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-64.data b/bikeshed/spec-data/readonly/anchors/anchors-64.data new file mode 100644 index 0000000000..6c78630639 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-64.data @@ -0,0 +1,20 @@ +64-bit integer +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#64-bit-integer + +1 +- +64-bit integer +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#64-bit-integer + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-__.data b/bikeshed/spec-data/readonly/anchors/anchors-__.data index 5d6210eb7f..60e934a51a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-__.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-__.data @@ -9,15 +9,24 @@ https://html.spec.whatwg.org/multipage/media.html#value-track-kind-none 1 - -value -css-images-3 -css-images -3 +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x18 +1 +1 +- + +dfn +css2 +css +1 snapshot -https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle +https://www.w3.org/TR/CSS21/selector.html#x18 1 1 -image-orientation - enum-value @@ -100,16 +109,6 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#mult-req 1 -1 -- -! -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-generatedID - 1 - "" @@ -638,6 +637,46 @@ https://www.w3.org/TR/css-variables-1/#propdef- 1 1 - += +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x14 +1 +1 +- += +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x14 +1 +1 +- += +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x18 +1 +1 +- += +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x18 +1 +1 +- > selector selectors-4 @@ -716,16 +755,6 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#mult-opt 1 -1 -- -? -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-generatedID-0 - 1 - | @@ -868,3 +897,23 @@ https://www.w3.org/TR/selectors-4/#selectordef-sibling 1 1 - +~= +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x16 +1 +1 +- +~= +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x16 +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-a1.data b/bikeshed/spec-data/readonly/anchors/anchors-a1.data new file mode 100644 index 0000000000..59232d6af9 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-a1.data @@ -0,0 +1,22 @@ +a1lx +value +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#valdef-av1layeredimageindexingproperty-a1lx +1 +1 +AV1LayeredImageIndexingProperty +- +a1op +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#operatingpointselectorproperty-a1op +1 +1 +OperatingPointSelectorProperty +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-a_.data b/bikeshed/spec-data/readonly/anchors/anchors-a_.data index b44cb61ec4..b81c72f4e7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-a_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-a_.data @@ -105,6 +105,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpucolordict-a GPUColorDict - a +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpucolor-a + +1 +GPUColor +- +a attr-value html html @@ -152,10 +163,16 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-add-a-b-a +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-add-a-b-options-a 1 1 -MLGraphBuilder/add(a, b) +MLGraphBuilder/add(a, b, options) +MLGraphBuilder/sub(a, b, options) +MLGraphBuilder/mul(a, b, options) +MLGraphBuilder/div(a, b, options) +MLGraphBuilder/max(a, b, options) +MLGraphBuilder/min(a, b, options) +MLGraphBuilder/pow(a, b, options) - a argument @@ -163,10 +180,15 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-div-a-b-a +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-equal-a-b-options-a 1 1 -MLGraphBuilder/div(a, b) +MLGraphBuilder/equal(a, b, options) +MLGraphBuilder/greater(a, b, options) +MLGraphBuilder/greaterOrEqual(a, b, options) +MLGraphBuilder/lesser(a, b, options) +MLGraphBuilder/lesserOrEqual(a, b, options) +MLGraphBuilder/logicalNot(a, options) - a argument @@ -178,18 +200,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gemm-a-b-options- 1 1 MLGraphBuilder/gemm(a, b, options) -MLGraphBuilder/gemm(a, b) -- -a -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-matmul-a-b-a -1 -1 -MLGraphBuilder/matmul(a, b) - a argument @@ -197,54 +207,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-max-a-b-a +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-matmul-a-b-options-a 1 1 -MLGraphBuilder/max(a, b) -- -a -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-min-a-b-a -1 -1 -MLGraphBuilder/min(a, b) -- -a -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-mul-a-b-a -1 -1 -MLGraphBuilder/mul(a, b) -- -a -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pow-a-b-a -1 -1 -MLGraphBuilder/pow(a, b) -- -a -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sub-a-b-a -1 -1 -MLGraphBuilder/sub(a, b) +MLGraphBuilder/matmul(a, b, options) - a element @@ -279,94 +245,99 @@ https://www.w3.org/TR/css-color-5/#valdef-oklab-a oklab() - a -dict-member -geometry-1 -geometry +attribute +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-a +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-a 1 1 -DOMMatrix2DInit +CSSLab - a -attribute -geometry-1 -geometry +argument +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-a +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab-l-a-b-alpha-a 1 1 -DOMMatrixReadOnly -DOMMatrix +CSSLab/CSSLab(l, a, b, alpha) +CSSLab/constructor(l, a, b, alpha) +CSSLab/CSSLab(l, a, b) +CSSLab/constructor(l, a, b) - a -dict-member -webgpu -webgpu +attribute +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpucolordict-a +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-a 1 1 -GPUColorDict +CSSOKLab - a argument -webnn -webnn +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-a +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-alpha-a 1 1 -MLGraphBuilder/add(a, b) +CSSOKLab/CSSOKLab(l, a, b, alpha) +CSSOKLab/constructor(l, a, b, alpha) +CSSOKLab/CSSOKLab(l, a, b) +CSSOKLab/constructor(l, a, b) - a -argument -webnn -webnn +dict-member +geometry-1 +geometry 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div-a-b-a +https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-a 1 1 -MLGraphBuilder/div(a, b) +DOMMatrix2DInit - a -argument -webnn -webnn +attribute +geometry-1 +geometry 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-a +https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-a 1 1 -MLGraphBuilder/gemm(a, b, options) -MLGraphBuilder/gemm(a, b) +DOMMatrixReadOnly +DOMMatrix - a -argument -webnn -webnn +dict-member +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-a +https://www.w3.org/TR/webgpu/#dom-gpucolordict-a 1 1 -MLGraphBuilder/matmul(a, b) +GPUColorDict - a -argument -webnn -webnn +dfn +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max-a-b-a +https://www.w3.org/TR/webgpu/#gpucolor-a + 1 -1 -MLGraphBuilder/max(a, b) +GPUColor - a argument @@ -374,10 +345,16 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min-a-b-a +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-options-a 1 1 -MLGraphBuilder/min(a, b) +MLGraphBuilder/add(a, b, options) +MLGraphBuilder/sub(a, b, options) +MLGraphBuilder/mul(a, b, options) +MLGraphBuilder/div(a, b, options) +MLGraphBuilder/max(a, b, options) +MLGraphBuilder/min(a, b, options) +MLGraphBuilder/pow(a, b, options) - a argument @@ -385,10 +362,15 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul-a-b-a +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-options-a 1 1 -MLGraphBuilder/mul(a, b) +MLGraphBuilder/equal(a, b, options) +MLGraphBuilder/greater(a, b, options) +MLGraphBuilder/greaterOrEqual(a, b, options) +MLGraphBuilder/lesser(a, b, options) +MLGraphBuilder/lesserOrEqual(a, b, options) +MLGraphBuilder/logicalNot(a, options) - a argument @@ -396,10 +378,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow-a-b-a +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-a 1 1 -MLGraphBuilder/pow(a, b) +MLGraphBuilder/gemm(a, b, options) - a argument @@ -407,10 +389,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub-a-b-a +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-options-a 1 1 -MLGraphBuilder/sub(a, b) +MLGraphBuilder/matmul(a, b, options) - {a} grammar diff --git a/bikeshed/spec-data/readonly/anchors/anchors-aa.data b/bikeshed/spec-data/readonly/anchors/anchors-aa.data index 21738f0bbb..cf984c255c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-aa.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-aa.data @@ -116,15 +116,14 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato getInfo - aaguid -abstract-op +dfn webauthn-3 webauthn 3 current -https://w3c.github.io/webauthn/#abstract-opdef-devicepubkey-record-aaguid -1 +https://w3c.github.io/webauthn/#aaguid + 1 -devicePubKey record - aaguid dfn @@ -138,12 +137,24 @@ https://w3c.github.io/webauthn/#authdata-attestedcredentialdata-aaguid authData/attestedCredentialData - aaguid +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-devicepubkey-record-aaguid +1 +1 +devicePubKey record +- +aaguid dfn webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#aaguid +https://www.w3.org/TR/webauthn-3/#authdata-attestedcredentialdata-aaguid 1 +authData/attestedCredentialData - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ab.data b/bikeshed/spec-data/readonly/anchors/anchors-ab.data index 4775434da3..edfd75ea4c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ab.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ab.data @@ -20,28 +20,6 @@ https://wicg.github.io/speech-api/#dom-speechrecognitionerrorcode-aborted 1 SpeechRecognitionErrorCode - -"absolute-orientation" -enum-value -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensortype-absolute-orientation -1 -1 -MockSensorType -- -"absolute-orientation" -enum-value -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-absolute-orientation -1 -1 -MockSensorType -- "absolute-url" dfn web-nfc @@ -52,64 +30,24 @@ https://w3c.github.io/web-nfc/#dfn-absolute-url-0 1 - -<absolute-color-base> -type -css-color-4 -css-color -4 -current -https://drafts.csswg.org/css-color-4/#typedef-absolute-color-base -1 -1 -- -<absolute-color-base> -type -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#typedef-absolute-color-base -1 -1 -- -<absolute-color-base> -type -css-color-4 -css-color -4 -snapshot -https://www.w3.org/TR/css-color-4/#typedef-absolute-color-base -1 -1 -- -<absolute-color-function> -type -css-color-4 -css-color +<abs/> +dfn +mathml4 +mathml 4 current -https://drafts.csswg.org/css-color-4/#typedef-absolute-color-function -1 -1 -- -<absolute-color-function> -type -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#typedef-absolute-color-function -1 +https://w3c.github.io/mathml/#contm_abs + 1 - -<absolute-color-function> -type -css-color-4 -css-color +<abs/> +dfn +mathml4 +mathml 4 snapshot -https://www.w3.org/TR/css-color-4/#typedef-absolute-color-function -1 +https://www.w3.org/TR/mathml4/#contm_abs + 1 - <absolute-size> @@ -174,26 +112,6 @@ https://dom.spec.whatwg.org/#abortsignal 1 1 - -AbsoluteOrientationReadingValues -dictionary -orientation-sensor -orientation-sensor -1 -current -https://w3c.github.io/orientation-sensor/#dictdef-absoluteorientationreadingvalues -1 -1 -- -AbsoluteOrientationReadingValues -dictionary -orientation-sensor -orientation-sensor -1 -snapshot -https://www.w3.org/TR/orientation-sensor/#dictdef-absoluteorientationreadingvalues -1 -1 -- AbsoluteOrientationSensor interface orientation-sensor @@ -308,6 +226,17 @@ streams current https://streams.spec.whatwg.org/#writablestreamdefaultcontroller-abortalgorithm +1 +WritableStreamDefaultController +- +[[abortcontroller]] +dfn +streams +streams +1 +current +https://streams.spec.whatwg.org/#writablestreamdefaultcontroller-abortcontroller + 1 WritableStreamDefaultController - @@ -383,6 +312,36 @@ current https://w3c.github.io/i18n-glossary/#dfn-abjad 1 +- +abjad +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-abjad +1 + +- +able to retrieve and buffer data in an efficient way +dfn +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-able-to-retrieve-and-buffer-data-in-an-efficient-way + +1 +- +able to retrieve and buffer data in an efficient way +dfn +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-able-to-retrieve-and-buffer-data-in-an-efficient-way + +1 - abnf dfn @@ -493,13 +452,13 @@ https://w3c.github.io/IndexedDB/#transaction-abort transaction - abort -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-abort - +1 1 - abort @@ -557,13 +516,13 @@ https://www.w3.org/TR/IndexedDB-3/#transaction-abort transaction - abort -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-abort - +1 1 - abort @@ -596,7 +555,17 @@ current https://xhr.spec.whatwg.org/#event-xhr-abort 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget +- +abort a document and its descendants +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/document-lifecycle.html#abort-a-document-and-its-descendants + +1 - abort a parser dfn @@ -689,6 +658,28 @@ https://webbluetoothcg.github.io/web-bluetooth/#abort-all-active-watchadvertisem 1 - +abort all atomic write requests +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#webtransportsendstream-abort-all-atomic-write-requests + +1 +WebTransportSendStream +- +abort all atomic write requests +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#webtransportsendstream-abort-all-atomic-write-requests + +1 +WebTransportSendStream +- abort all flag dfn background-fetch @@ -718,6 +709,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#abort-an-upgrade-transaction +1 +- +abort controller +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigateevent-abort-controller + 1 - abort reason @@ -731,6 +732,28 @@ https://dom.spec.whatwg.org/#abortsignal-abort-reason 1 AbortSignal - +abort source +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#scheduling-state-abort-source + +1 +scheduling state +- +abort steps +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#task-handle-abort-steps + +1 +task handle +- abort the fetch() call dfn fetch @@ -749,6 +772,16 @@ html current https://html.spec.whatwg.org/multipage/images.html#abort-the-image-request +1 +- +abort the ongoing navigation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#abort-the-ongoing-navigation + 1 - abort the request @@ -783,7 +816,7 @@ https://html.spec.whatwg.org/multipage/webappapis.html#abort-a-running-script - abort the update dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -793,11 +826,11 @@ https://w3c.github.io/payment-request/#dfn-abort-the-update - abort the update dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-abort-the-update +https://www.w3.org/TR/payment-request/#dfn-abort-the-update 1 1 - @@ -910,7 +943,7 @@ SourceBuffer - abort() method -payment-request-1.1 +payment-request payment-request 1 current @@ -976,11 +1009,11 @@ SourceBuffer - abort() method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-abort +https://www.w3.org/TR/payment-request/#dom-paymentrequest-abort 1 1 PaymentRequest @@ -1160,6 +1193,36 @@ https://www.w3.org/TR/IndexedDB-3/#transaction-abort 1 transaction - +about base url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-about-base-url + +1 +- +about base url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-params-about-base-url + +1 +- +about base url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#concept-document-about-base-url + +1 +- about-to-be-notified rejected promises list dfn html @@ -1176,7 +1239,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank +https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank 1 - @@ -1186,7 +1249,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/urls-and-fetching.html#about:html-kind +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#about%3Ahtml-kind 1 - @@ -1196,7 +1259,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/urls-and-fetching.html#about:legacy-compat +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#about%3Alegacy-compat 1 - @@ -1206,7 +1269,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/urls-and-fetching.html#about:srcdoc +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#about%3Asrcdoc 1 - @@ -1282,18 +1345,29 @@ https://www.w3.org/TR/css-values-4/#funcdef-abs 1 1 - -abs(x) +abs(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.abs +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-abs 1 1 -Math +MLGraphBuilder - -abs(x) +abs(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs +1 +1 +MLGraphBuilder +- +abs(input, options) method webnn webnn @@ -1304,7 +1378,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-abs 1 MLGraphBuilder - -abs(x) +abs(input, options) method webnn webnn @@ -1315,6 +1389,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs 1 MLGraphBuilder - +abs(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.abs +1 +1 +Math +- absence-of-digits-in-numeric-character-reference dfn html @@ -1325,6 +1410,17 @@ https://html.spec.whatwg.org/multipage/parsing.html#parse-error-absence-of-digit 1 - +absent +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-absent +1 +1 +SmartCardConnectionState +- absolute value css-position-3 @@ -1381,6 +1477,18 @@ https://w3c.github.io/deviceorientation/#dom-deviceorientationevent-absolute DeviceOrientationEvent - absolute +argument +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#dom-deviceorientationevent-requestpermission-absolute-absolute +1 +1 +DeviceOrientationEvent/requestPermission(absolute) +DeviceOrientationEvent/requestPermission() +- +absolute dict-member orientation-event orientation-event @@ -1436,6 +1544,18 @@ https://www.w3.org/TR/orientation-event/#dom-deviceorientationevent-absolute DeviceOrientationEvent - absolute +argument +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#dom-deviceorientationevent-requestpermission-absolute-absolute +1 +1 +DeviceOrientationEvent/requestPermission(absolute) +DeviceOrientationEvent/requestPermission() +- +absolute dict-member orientation-event orientation-event @@ -1446,6 +1566,46 @@ https://www.w3.org/TR/orientation-event/#dom-deviceorientationeventinit-absolute 1 DeviceOrientationEventInit - +absolute color +dfn +css-color-4 +css-color +4 +current +https://drafts.csswg.org/css-color-4/#absolute-color +1 +1 +- +absolute color +dfn +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#absolute-color +1 +1 +- +absolute color +dfn +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#absolute-color +1 +1 +- +absolute color +dfn +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#absolute-color +1 +1 +- absolute length dfn css-values-3 @@ -1474,6 +1634,26 @@ css current https://drafts.csswg.org/css2/#absolute-length +1 +- +absolute length +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x39 +1 +1 +- +absolute length +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x39 +1 1 - absolute length @@ -1494,6 +1674,16 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#absolute-length +1 +- +absolute length unit +dfn +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#absolute-length + 1 - absolute length unit @@ -1504,6 +1694,16 @@ css-values current https://drafts.csswg.org/css-values-4/#absolute-length +1 +- +absolute length unit +dfn +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#absolute-length + 1 - absolute length unit @@ -1514,6 +1714,46 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#absolute-length +1 +- +absolute orientation +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#absolute-orientation + +1 +- +absolute orientation +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#absolute-orientation + +1 +- +absolute orientation sensor +dfn +orientation-sensor +orientation-sensor +1 +current +https://w3c.github.io/orientation-sensor/#absolute-orientation-sensor-type + +1 +- +absolute orientation sensor +dfn +orientation-sensor +orientation-sensor +1 +snapshot +https://www.w3.org/TR/orientation-sensor/#absolute-orientation-sensor-type + 1 - absolute path @@ -1628,6 +1868,46 @@ https://www.w3.org/TR/css-color-5/#valdef-color-profile-rendering-intent-absolut 1 @color-profile/rendering-intent - +absolute-orientation virtual sensor type +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#absolute-orientation-virtual-sensor-type +1 +1 +- +absolute-orientation virtual sensor type +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#absolute-orientation-virtual-sensor-type +1 +1 +- +absolute-position containing block +dfn +css-position-3 +css-position +3 +current +https://drafts.csswg.org/css-position-3/#absolute-position-containing-block +1 +1 +- +absolute-position containing block +dfn +css-position-3 +css-position +3 +snapshot +https://www.w3.org/TR/css-position-3/#absolute-position-containing-block +1 +1 +- absolute-url dfn web-nfc @@ -1726,6 +2006,26 @@ css current https://drafts.csswg.org/css2/#absolutely-positioned +1 +- +absolutely positioned element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#absolutely-positioned +1 +1 +- +absolutely positioned element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#absolutely-positioned +1 1 - absolutely positioned element @@ -1860,6 +2160,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#abstract-numeric-types +1 +- +abstract operation hostresizearraybuffer +dfn +wasm-js-api-2 +wasm-js-api +2 +current +https://webassembly.github.io/spec/js-api/#HostResizeArrayBuffer +1 +1 +- +abstract operation hostresizearraybuffer +dfn +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#HostResizeArrayBuffer +1 1 - abstractfloat @@ -1901,6 +2221,26 @@ snapshot https://www.w3.org/TR/WGSL/#abstractint 1 +- +abugida +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-abugida +1 + +- +abugida +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-abugida +1 + - {a,b} grammar diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ac.data b/bikeshed/spec-data/readonly/anchors/anchors-ac.data index db0a005a76..5816ea39d1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ac.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ac.data @@ -1,24 +1,22 @@ "accelerometer" -enum-value -generic-sensor -generic-sensor +permission +orientation-event +orientation-event 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-accelerometer +https://w3c.github.io/deviceorientation/#permissiondef-accelerometer 1 1 -MockSensorType - "accelerometer" -enum-value -generic-sensor -generic-sensor +permission +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-accelerometer +https://www.w3.org/TR/orientation-event/#permissiondef-accelerometer 1 1 -MockSensorType - "accumulate" enum-value @@ -55,6 +53,17 @@ https://www.w3.org/TR/web-animations-1/#dom-compositeoperation-accumulate CompositeOperation CompositeOperationOrAuto - +"accumulate" +enum-value +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-iterationcompositeoperation-accumulate +1 +1 +IterationCompositeOperation +- "activated" enum-value service-workers @@ -112,6 +121,17 @@ AnimationReplaceState - "active" enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessionstate-active +1 +1 +AudioSessionState +- +"active" +enum-value idle-detection idle-detection 1 @@ -181,6 +201,26 @@ html current https://html.spec.whatwg.org/multipage/semantics-other.html#selector-active +1 +- +:active +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x35 +1 +1 +- +:active +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x35 +1 1 - :active @@ -203,6 +243,46 @@ https://www.w3.org/TR/selectors-4/#active-pseudo 1 1 - +:active-view-transition +selector +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#active-view-transition-pseudo +1 +1 +- +:active-view-transition +selector +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#active-view-transition-pseudo +1 +1 +- +:active-view-transition-type() +selector +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#active-view-transition-type-pseudo +1 +1 +- +:active-view-transition-type() +selector +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#active-view-transition-type-pseudo +1 +1 +- Accelerometer interface accelerometer @@ -287,26 +367,6 @@ https://www.w3.org/TR/accelerometer/#enumdef-accelerometerlocalcoordinatesystem 1 1 - -AccelerometerReadingValues -dictionary -accelerometer -accelerometer -1 -current -https://w3c.github.io/accelerometer/#dictdef-accelerometerreadingvalues -1 -1 -- -AccelerometerReadingValues -dictionary -accelerometer -accelerometer -1 -snapshot -https://www.w3.org/TR/accelerometer/#dictdef-accelerometerreadingvalues -1 -1 -- AccelerometerSensorOptions dictionary accelerometer @@ -392,7 +452,7 @@ Document - [[acceptPromise]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -403,11 +463,11 @@ PaymentRequest - [[acceptPromise]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-acceptpromise +https://www.w3.org/TR/payment-request/#dfn-acceptpromise 1 PaymentRequest @@ -533,6 +593,28 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattserver-ac 1 BluetoothRemoteGATTServer - +[[activeProtocol]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-activeprotocol + +1 +SmartCardConnection +- +[[activeScans]] +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetooth-activescans-slot +1 +1 +Bluetooth +- [[activeTargets]] attribute resize-observer-1 @@ -648,6 +730,26 @@ https://www.w3.org/TR/orientation-event/#dom-devicemotioneventinit-acceleration 1 DeviceMotionEventInit - +acceleration with gravity +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#acceleration-with-gravity + +1 +- +acceleration with gravity +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#acceleration-with-gravity + +1 +- accelerationIncludingGravity attribute orientation-event @@ -700,16 +802,6 @@ accelerometer current https://w3c.github.io/accelerometer/#accelerometer-sensor-type -1 -- -accelerometer -permission -accelerometer -accelerometer -1 -current -https://w3c.github.io/accelerometer/#permissiondef-accelerometer -1 1 - accelerometer @@ -722,13 +814,23 @@ https://www.w3.org/TR/accelerometer/#accelerometer-sensor-type 1 - -accelerometer -permission -accelerometer -accelerometer +accelerometer virtual sensor type +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#accelerometer-virtual-sensor-type +1 +1 +- +accelerometer virtual sensor type +dfn +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/accelerometer/#permissiondef-accelerometer +https://www.w3.org/TR/orientation-event/#accelerometer-virtual-sensor-type 1 1 - @@ -746,14 +848,17 @@ mover munder - accent -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-accent - 1 +1 +munderover +mover +munder - accent color dfn @@ -821,9 +926,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-accentcolor +https://drafts.csswg.org/css-color-4/#valdef-color-accentcolor 1 1 +<color> <system-color> - accentcolor @@ -832,9 +938,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-accentcolor +https://www.w3.org/TR/css-color-4/#valdef-color-accentcolor 1 1 +<color> <system-color> - accentcolortext @@ -843,9 +950,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-accentcolortext +https://drafts.csswg.org/css-color-4/#valdef-color-accentcolortext 1 1 +<color> <system-color> - accentcolortext @@ -854,9 +962,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-accentcolortext +https://www.w3.org/TR/css-color-4/#valdef-color-accentcolortext 1 1 +<color> <system-color> - accentunder @@ -873,14 +982,17 @@ mover munder - accentunder -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-accentunder - 1 +1 +munderover +mover +munder - accept element-attr @@ -977,23 +1089,23 @@ https://www.w3.org/TR/webdriver2/#dfn-accept-alert 1 - -accept and notify state +accept insecure tls dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-accept-and-notify-state +https://w3c.github.io/webdriver/#dfn-accept-insecure-tls 1 - -accept and notify state +accept insecure tls dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-accept-and-notify-state +https://www.w3.org/TR/webdriver2/#dfn-accept-insecure-tls 1 - @@ -1015,26 +1127,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-insecure-tls-certificates -1 -- -accept state -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-accept-state - -1 -- -accept state -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-accept-state - 1 - accept-ch cache @@ -1044,7 +1136,7 @@ client-hints-infrastructure 1 current https://wicg.github.io/client-hints-infrastructure/#accept-ch-cache - +1 1 - accept-charset @@ -1058,25 +1150,38 @@ https://html.spec.whatwg.org/multipage/forms.html#attr-form-accept-charset 1 form - -accept-language -dfn -presentation-api -presentation-api +acceptAllAdvertisements +attribute +web-bluetooth-scanning +web-bluetooth-scanning 1 current -https://w3c.github.io/presentation-api/#dfn-accept-language - +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-acceptalladvertisements 1 +1 +BluetoothLEScan - -accept-language -dfn -presentation-api -presentation-api +acceptAllAdvertisements +dict-member +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanoptions-acceptalladvertisements 1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-accept-language +BluetoothLEScanOptions +- +acceptAllAdvertisements +dict-member +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanpermissiondescriptor-acceptalladvertisements +1 1 +BluetoothLEScanPermissionDescriptor - acceptAllDevices dict-member @@ -1122,24 +1227,23 @@ https://dom.spec.whatwg.org/#dom-nodefilter-acceptnode 1 NodeFilter - -accept_patch_format +acceptable anchor element dfn -ift -ift +css-anchor-position-1 +css-anchor-position 1 current -https://w3c.github.io/IFT/Overview.html#patchrequest-accept_patch_format - +https://drafts.csswg.org/css-anchor-position-1/#acceptable-anchor-element +1 1 -PatchRequest - acceptable anchor element dfn css-anchor-position-1 css-anchor-position 1 -current -https://drafts.csswg.org/css-anchor-position-1/#acceptable-anchor-element +snapshot +https://www.w3.org/TR/css-anchor-position-1/#acceptable-anchor-element 1 1 - @@ -1172,6 +1276,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-accepting +1 +- +accepted @position-try properties +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#accepted-position-try-properties +1 +1 +- +accepted @position-try properties +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#accepted-position-try-properties +1 1 - accepting @@ -1308,11 +1432,11 @@ https://fetch.spec.whatwg.org/#http-access-control-allow-origin - access-control-allow-private-network http-header -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#http-headerdef-access-control-allow-private-network +https://wicg.github.io/private-network-access/#http-headerdef-access-control-allow-private-network 1 1 - @@ -1358,11 +1482,11 @@ https://fetch.spec.whatwg.org/#http-access-control-request-method - access-control-request-private-network http-header -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#http-headerdef-access-control-request-private-network +https://wicg.github.io/private-network-access/#http-headerdef-access-control-request-private-network 1 1 - @@ -1388,50 +1512,6 @@ https://html.spec.whatwg.org/multipage/interaction.html#dom-accesskeylabel 1 HTMLElement - -access_mode -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-access_mode - -1 -recursive descent syntax -- -access_mode -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-access_mode - -1 -syntax -- -access_mode -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-access_mode - -1 -recursive descent syntax -- -access_mode -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-access_mode - -1 -syntax -- accessibility api dfn wai-aria-1.2 @@ -1444,23 +1524,13 @@ https://w3c.github.io/aria/#dfn-accessibility-api - accessibility api dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-accessibility-api - -1 -- -accessibility api -dfn -mathml-aam -mathml-aam +https://w3c.github.io/aria/#dfn-accessibility-api 1 -current -https://w3c.github.io/mathml-aam/#dfn-accessibility-api -1 - accessibility api dfn @@ -1481,16 +1551,6 @@ current https://w3c.github.io/svg-aam/#dfn-accessibility-api -- -accessibility api -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-accessibility-api - -1 - accessibility api dfn @@ -1542,15 +1602,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-accessibility-api - -accessibility apis +accessibility api dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-accessibility-api - +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-api 1 + - accessibility apis dfn @@ -1561,16 +1621,6 @@ current https://w3c.github.io/svg-aam/#dfn-accessibility-api -- -accessibility apis -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-accessibility-api - -1 - accessibility apis dfn @@ -1611,6 +1661,66 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-accessibility-api +- +accessibility child +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +accessibility child +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +accessibility child +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child +1 +1 +- +accessibility children +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +accessibility children +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +accessibility children +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child +1 +1 - accessibility considerations dfn @@ -1622,25 +1732,105 @@ https://html.spec.whatwg.org/multipage/dom.html#concept-element-accessibility-co 1 - -accessibility subtree +accessibility descendant dfn -core-aam-1.2 -core-aam +wai-aria-1.2 +wai-aria 1 current -https://w3c.github.io/core-aam/#dfn-accessibility-subtree +https://w3c.github.io/aria/#dfn-accessibility-descendant +1 +1 +- +accessibility descendant +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-descendant +1 +1 +- +accessibility descendant +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-descendant +1 +1 +- +accessibility descendants +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-descendant +1 +1 +- +accessibility descendants +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-descendant +1 +1 +- +accessibility descendants +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-descendant +1 +1 +- +accessibility parent +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-parent +1 +1 +- +accessibility parent +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-parent +1 +1 +- +accessibility parent +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-parent +1 1 - - accessibility subtree dfn -mathml-aam -mathml-aam +core-aam-1.2 +core-aam 1 current -https://w3c.github.io/mathml-aam/#dfn-accessibility-subtree - +https://w3c.github.io/core-aam/#dfn-accessibility-subtree 1 + - accessibility subtree dfn @@ -1684,12 +1874,12 @@ https://w3c.github.io/aria/#dfn-accessibility-tree - accessibility tree dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-accessibility-tree - +https://w3c.github.io/aria/#dfn-accessibility-tree +1 1 - accessibility tree @@ -1701,16 +1891,6 @@ current https://w3c.github.io/svg-aam/#dfn-accessibility-tree -- -accessibility tree -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-accessibility-tree - -1 - accessibility tree dfn @@ -1732,25 +1912,25 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-accessibility-tree - -accessible description +accessibility tree dfn -accname-1.2 -accname +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-tree 1 -current -https://w3c.github.io/accname/#dfn-accessible-description 1 - - accessible description dfn -mathml-aam -mathml-aam +accname-1.2 +accname 1 current -https://w3c.github.io/mathml-aam/#dfn-accessible-description - +https://w3c.github.io/accname/#dfn-accessible-description 1 + - accessible description dfn @@ -1769,8 +1949,8 @@ accname 1 snapshot https://www.w3.org/TR/accname-1.2/#dfn-accessible-description - 1 + - accessible description dfn @@ -1801,26 +1981,6 @@ current https://w3c.github.io/accname/#dfn-accessible-name 1 -- -accessible name -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-accessible-name - -1 -- -accessible name -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-accessible-name - -1 - accessible name dfn @@ -1849,8 +2009,8 @@ accname 1 snapshot https://www.w3.org/TR/accname-1.2/#dfn-accessible-name - 1 + - accessible name dfn @@ -1881,16 +2041,6 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-accessible-name -- -accessible names -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-accessible-name - -1 - accessible names dfn @@ -1901,16 +2051,6 @@ current https://w3c.github.io/svg-aam/#dfn-accessible-name -- -accessible names -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-accessible-name - -1 - accessible names dfn @@ -1944,23 +2084,13 @@ https://w3c.github.io/aria/#dfn-accessible-object - accessible object dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-accessible-object - -1 -- -accessible object -dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-accessible-object - +https://w3c.github.io/aria/#dfn-accessible-object 1 + - accessible object dfn @@ -1981,16 +2111,6 @@ current https://w3c.github.io/svg-aam/#dfn-accessible-object -- -accessible object -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-accessible-object - -1 - accessible object dfn @@ -2022,15 +2142,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-accessible-object - -accessible objects +accessible object dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-accessible-object - +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessible-object 1 + - accessible objects dfn @@ -2041,16 +2161,6 @@ current https://w3c.github.io/svg-aam/#dfn-accessible-object -- -accessible objects -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-accessible-object - -1 - accessible objects dfn @@ -2135,6 +2245,39 @@ https://html.spec.whatwg.org/multipage/browsers.html#accessor-accessed-relations 1 - +accountHint +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredentialdisconnectoptions-accounthint +1 +1 +IdentityCredentialDisconnectOptions +- +account_hint +argument +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-disconnect_endpoint_request-account_hint +1 +1 +disconnect_endpoint_request +- +account_id +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-disconnectedaccount-account_id +1 +1 +DisconnectedAccount +- account_id argument fedcm @@ -2157,26 +2300,26 @@ https://fedidcg.github.io/FedCM/#dom-identityprovideraccountlist-accounts 1 IdentityProviderAccountList - -accounts_endpoint -dict-member +accounts endpoint +dfn fedcm fedcm 1 current -https://fedidcg.github.io/FedCM/#dom-identityproviderapiconfig-accounts_endpoint -1 +https://fedidcg.github.io/FedCM/#accounts-endpoint + 1 -IdentityProviderAPIConfig - -accountstate -dfn +accounts_endpoint +dict-member fedcm fedcm 1 current -https://fedidcg.github.io/FedCM/#accountstate - +https://fedidcg.github.io/FedCM/#dom-identityproviderapiconfig-accounts_endpoint 1 +1 +IdentityProviderAPIConfig - accumulate enum-value @@ -2275,28 +2418,6 @@ https://www.w3.org/TR/css-values-4/#accumulation - accuracy attribute -geolocation -geolocation -1 -current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-accuracy -1 -1 -GeolocationCoordinates -- -accuracy -dict-member -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-accuracy -1 -1 -GeolocationReadingValues -- -accuracy -attribute geolocation-sensor geolocation-sensor 1 @@ -2318,15 +2439,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-accuracy GeolocationSensorReading - accuracy -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-accuracy +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-accuracy 1 1 -GeolocationReadingValues +GeolocationCoordinates - accuracy attribute @@ -2439,7 +2560,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-acquire-a-position +https://w3c.github.io/geolocation/#dfn-acquire-a-position 1 - @@ -2599,7 +2720,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-acquire-a-position +https://w3c.github.io/geolocation/#dfn-acquire-a-position 1 - @@ -2692,10 +2813,9 @@ notifications notifications 1 current -https://notifications.spec.whatwg.org/#actions +https://notifications.spec.whatwg.org/#action 1 -notification - action dict-member @@ -2847,6 +2967,17 @@ current https://w3c.github.io/web-nfc/#dfn-action-record +- +actions +dfn +notifications +notifications +1 +current +https://notifications.spec.whatwg.org/#actions + +1 +notification - actions attribute @@ -2942,14 +3073,15 @@ https://w3c.github.io/mathml-core/#dfn-actiontype maction - actiontype -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-actiontype - 1 +1 +maction - activate dfn @@ -3012,6 +3144,16 @@ content-index current https://wicg.github.io/content-index/spec/#activate-a-content-index-entry +1 +- +activate a navigable +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#activate-a-navigable + 1 - activate a portal browsing context @@ -3052,6 +3194,26 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#activate-an-event-handler +1 +- +activate data collection +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-activate-data-collection + +1 +- +activate data collection +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-activate-data-collection + 1 - activate history entry @@ -3062,6 +3224,26 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#activate-history-entry +1 +- +activate view transition +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#activate-view-transition + +1 +- +activate view transition +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#activate-view-transition + 1 - activate() @@ -3087,6 +3269,17 @@ https://wicg.github.io/portals/#dom-htmlportalelement-activate HTMLPortalElement - activated +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-activated + +1 +platform collector +- +activated attribute generic-sensor generic-sensor @@ -3098,6 +3291,17 @@ https://w3c.github.io/sensors/#dom-sensor-activated Sensor - activated +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-activated + +1 +platform collector +- +activated attribute generic-sensor generic-sensor @@ -3139,81 +3343,80 @@ https://www.w3.org/TR/generic-sensor/#activated-sensor-objects 1 - activation -dict-member -webnn -webnn +dfn +html +html 1 current -https://webmachinelearning.github.io/webnn/#dom-mlbatchnormalizationoptions-activation +https://html.spec.whatwg.org/multipage/browsing-the-web.html#uni-activation 1 1 -MLBatchNormalizationOptions +user navigation involvement - activation -dict-member -webnn -webnn +attribute +html +html 1 current -https://webmachinelearning.github.io/webnn/#dom-mlconv2doptions-activation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-activation 1 1 -MLConv2dOptions +Navigation - activation -dict-member -webnn -webnn +attribute +html +html 1 current -https://webmachinelearning.github.io/webnn/#dom-mlconvtranspose2doptions-activation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pageswapevent-activation 1 1 -MLConvTranspose2dOptions +PageSwapEvent - activation -dfn -navigation-api -navigation-api +dict-member +html +html 1 current -https://wicg.github.io/navigation-api/#user-navigation-involvement-activation - +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pageswapeventinit-activation 1 -user navigation involvement +1 +PageSwapEventInit - activation -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-activation +dfn +html +html 1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-activation + 1 -MLBatchNormalizationOptions - activation -dict-member +dfn webnn webnn 1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlconv2doptions-activation -1 +current +https://webmachinelearning.github.io/webnn/#operator-activation + 1 -MLConv2dOptions +operator - activation -dict-member +dfn webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-activation -1 +https://www.w3.org/TR/webnn/#operator-activation + 1 -MLConvTranspose2dOptions +operator - activation behavior dfn @@ -3235,16 +3438,6 @@ current https://w3c.github.io/core-aam/#dfn-activation-behavior 1 -- -activation behavior -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-activation-behavior - -1 - activation behavior dfn @@ -3255,16 +3448,6 @@ current https://w3c.github.io/svg-aam/#dfn-activation-behavior -- -activation behavior -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#activation-behavior - -1 - activation behavior dfn @@ -3278,23 +3461,35 @@ https://www.w3.org/TR/core-aam-1.2/#dfn-activation-behavior - activation behavior dfn -uievents -uievents +wai-aria-1.2 +wai-aria 1 snapshot -https://www.w3.org/TR/uievents/#activation-behavior +https://www.w3.org/TR/wai-aria-1.2/#dfn-activation-behavior + + +- +activation function +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#operator-activation 1 +operator - -activation behavior +activation function dfn -wai-aria-1.2 -wai-aria +webnn +webnn 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dfn-activation-behavior - +https://www.w3.org/TR/webnn/#operator-activation +1 +operator - activation notification dfn @@ -3463,10 +3658,21 @@ mediaqueries-5 mediaqueries 5 current -https://drafts.csswg.org/mediaqueries-5/#valdef-media-forced-colors-active +https://drafts.csswg.org/mediaqueries-5/#valdef-media-forced-colors-active +1 +1 +@media/forced-colors +- +active +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationreplacedstate-active 1 1 -@media/forced-colors +AnimationReplacedState - active dfn @@ -3600,6 +3806,17 @@ https://w3c.github.io/mediasession/#dom-mediasession-setmicrophoneactive-active- MediaSession/setMicrophoneActive(active) - active +argument +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasession-setscreenshareactive-active-active +1 +1 +MediaSession/setScreenshareActive(active) +- +active dfn webcodecs webcodecs @@ -3643,6 +3860,28 @@ https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-active RTCOutboundRtpStreamStats - active +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-active +1 +1 +BluetoothLEScan +- +active +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwritingrecognizer-active + +1 +HandwritingRecognizer +- +active dfn indexeddb-3 indexeddb @@ -3709,6 +3948,17 @@ https://www.w3.org/TR/mediasession/#dom-mediasession-setmicrophoneactive-active- MediaSession/setMicrophoneActive(active) - active +argument +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasession-setscreenshareactive-active-active +1 +1 +MediaSession/setScreenshareActive(active) +- +active attribute service-workers service-workers @@ -3817,6 +4067,26 @@ https://www.w3.org/TR/webxr/#xrframe-active 1 XRFrame - +active (pseudo-class) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x35 +1 +1 +- +active (pseudo-class) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x35 +1 +1 +- active background fetches dfn background-fetch @@ -3846,7 +4116,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#active-bidi-sessions - +1 1 - active browsing context @@ -3948,6 +4218,16 @@ credential-management current https://w3c.github.io/webappsec-credential-management/#active-credential-types +1 +- +active credential types +dfn +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#active-credential-types + 1 - active document @@ -3990,28 +4270,6 @@ snapshot https://www.w3.org/TR/pointerevents3/#dfn-active-document -- -active dom transition -dfn -css-view-transitions-1 -css-view-transitions -1 -current -https://drafts.csswg.org/css-view-transitions-1/#document-active-dom-transition - -1 -document -- -active dom transition -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#document-active-dom-transition - -1 -document - active duration dfn @@ -4061,6 +4319,26 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#active-duration +1 +- +active duration +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#active-duration + +1 +- +active editcontext +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-active-editcontext + 1 - active element @@ -4132,16 +4410,6 @@ html current https://html.spec.whatwg.org/multipage/media.html#active-flag-was-set-when-the-script-started -1 -- -active frame element -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/obsolete.html#active-frame-element - 1 - active function object @@ -4174,6 +4442,26 @@ snapshot https://www.w3.org/TR/json-ld11-api/#dfn-active-graph +- +active http sessions +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-active-http-sessions + +1 +- +active http sessions +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-active-http-sessions + +1 - active immersive session dfn @@ -4480,6 +4768,16 @@ https://html.spec.whatwg.org/multipage/browsers.html#active-sandboxing-flag-set 1 Document - +active scanning +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#active-scanning + +1 +- active script dfn html @@ -4512,26 +4810,6 @@ https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-activ 1 environment - -active session -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-active-session - -1 -- -active session -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-active-session - -1 -- active session history entry dfn html @@ -4548,7 +4826,7 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-active-session +https://w3c.github.io/webdriver/#dfn-active-sessions 1 - @@ -4558,7 +4836,7 @@ webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-active-session +https://www.w3.org/TR/webdriver2/#dfn-active-sessions 1 - @@ -4630,6 +4908,36 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#active-time +1 +- +active time space +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#active-time-space + + +- +active timeline +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#active-timeline +1 +1 +- +active touch point +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-active-touch-point + 1 - active touch point @@ -4658,9 +4966,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#active-track-buffers - +https://w3c.github.io/media-source/#dfn-active-track-buffers +1 - active track buffers dfn @@ -4668,9 +4976,31 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#active-track-buffers +https://www.w3.org/TR/media-source-2/#dfn-active-track-buffers + +1 +- +active types +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#viewtransition-active-types +1 +ViewTransition +- +active types +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#viewtransition-active-types +1 +ViewTransition - active user consent dfn @@ -4692,6 +5022,28 @@ https://www.w3.org/TR/screen-capture/#dfn-active-user-consent 1 - +active view transition +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#document-active-view-transition + +1 +document +- +active view transition +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#document-active-view-transition + +1 +document +- active window dfn html @@ -4819,6 +5171,17 @@ https://www.w3.org/TR/web-animations-1/#dom-computedeffecttiming-activeduration 1 ComputedEffectTiming - +activeDuration +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-computedeffecttiming-activeduration +1 +1 +ComputedEffectTiming +- activeElement attribute html @@ -4830,6 +5193,17 @@ https://html.spec.whatwg.org/multipage/interaction.html#dom-documentorshadowroot 1 DocumentOrShadowRoot - +activeProtocol +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectresult-activeprotocol +1 +1 +SmartCardConnectResult +- activeSourceBuffers attribute media-source-2 @@ -4874,14 +5248,16 @@ https://drafts.csswg.org/css-color-3/#activeborder 1 - activeborder -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#activeborder - +https://drafts.csswg.org/css-color-4/#valdef-color-activeborder 1 +1 +<color> +<deprecated-color> - activeborder dfn @@ -4894,14 +5270,16 @@ https://www.w3.org/TR/css-color-3/#activeborder 1 - activeborder -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#activeborder - +https://www.w3.org/TR/css-color-4/#valdef-color-activeborder 1 +1 +<color> +<deprecated-color> - activecaption dfn @@ -4914,14 +5292,16 @@ https://drafts.csswg.org/css-color-3/#activecaption 1 - activecaption -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#activecaption - +https://drafts.csswg.org/css-color-4/#valdef-color-activecaption 1 +1 +<color> +<deprecated-color> - activecaption dfn @@ -4934,14 +5314,16 @@ https://www.w3.org/TR/css-color-3/#activecaption 1 - activecaption -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#activecaption - +https://www.w3.org/TR/css-color-4/#valdef-color-activecaption 1 +1 +<color> +<deprecated-color> - actively processing dfn @@ -4969,9 +5351,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-activetext +https://drafts.csswg.org/css-color-4/#valdef-color-activetext 1 1 +<color> <system-color> - activetext @@ -4980,9 +5363,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-activetext +https://www.w3.org/TR/css-color-4/#valdef-color-activetext 1 1 +<color> <system-color> - actual playback rate @@ -5063,6 +5447,26 @@ html current https://html.spec.whatwg.org/multipage/form-elements.html#concept-meter-actual +1 +- +actual value +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#actual-value +1 +1 +- +actual value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#actual-value +1 1 - actual value @@ -5107,12 +5511,22 @@ https://drafts.csswg.org/css2/#actual-value - actual viewport dfn -css-viewport +css-viewport-1 css-viewport 1 current https://drafts.csswg.org/css-viewport/#actual-viewport +1 +- +actual viewport +dfn +css-viewport-1 +css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#actual-viewport + 1 - actualBoundingBoxAscent diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ad.data b/bikeshed/spec-data/readonly/anchors/anchors-ad.data index c6b32fbe53..c3f59957bc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ad.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ad.data @@ -132,6 +132,68 @@ https://www.w3.org/TR/uievents/#dom-mutationevent-addition 1 MutationEvent - +AdAuctionData +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-adauctiondata +1 +1 +- +AdAuctionDataConfig +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-adauctiondataconfig +1 +1 +- +AdRender +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-adrender +1 +1 +- +Add +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-usage-scope-add +1 +1 +usage scope +- +Add +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-usage-scope-add +1 +1 +usage scope +- +AddEntriesFromIterable +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-add-entries-from-iterable +1 +1 +- AddEntriesFromIterable(target, iterable, adder) abstract-op ecmascript @@ -152,6 +214,16 @@ https://dom.spec.whatwg.org/#dictdef-addeventlisteneroptions 1 1 - +AddRestrictedFunctionProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-addrestrictedfunctionproperties +1 +1 +- AddRestrictedFunctionProperties(F, realm) abstract-op ecmascript @@ -173,7 +245,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-external-addsearchprovi 1 External - -AddToKeptObjects(object) +AddToKeptObjects +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-addtokeptobjects +1 +1 +- +AddToKeptObjects(value) abstract-op ecmascript ecmascript @@ -183,7 +265,27 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - -AddWaiter(WL, W) +AddValueToKeyedGroup +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-add-value-to-keyed-group +1 +1 +- +AddValueToKeyedGroup(groups, key, value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-add-value-to-keyed-group +1 +1 +- +AddWaiter abstract-op ecmascript ecmascript @@ -193,6 +295,46 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-addwaiter 1 1 - +AddWaiter(WL, waiterRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-addwaiter +1 +1 +- +AddressErrors +dictionary +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors +1 +1 +- +AddressErrors +dictionary +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors +1 +1 +- +AdvanceStringIndex +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-advancestringindex +1 +1 +- AdvanceStringIndex(S, index, unicode) abstract-op ecmascript @@ -247,6 +389,157 @@ https://www.w3.org/TR/webgpu/#dom-gpuadapter-adapter-slot 1 GPUAdapter - +ad +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-ad +1 +1 +GenerateBidOutput +- +ad +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-ad + +1 +generated bid +- +ad component descriptors +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-ad-component-descriptors + +1 +generated bid +- +ad components +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-components + +1 +interest group +- +ad cost +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-ad-cost + +1 +generated bid +- +ad descriptor +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-descriptor + +1 +- +ad descriptor +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-ad-descriptor + +1 +generated bid +- +ad json +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#previous-win-ad-json + +1 +previous win +- +ad keyword replacement +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-keyword-replacement + +1 +- +ad render id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-ad-render-id + +1 +interest group ad +- +ad render id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-previous-win-ad-render-id + +1 +server auction previous win +- +ad size +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-size + +1 +- +ad sizes +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-sizes + +1 +interest group +- +ad slot +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#direct-from-seller-signals-key-ad-slot + +1 +direct from seller signals key +- ad structure dfn web-bluetooth @@ -257,6 +550,167 @@ https://webbluetoothcg.github.io/web-bluetooth/#ad-structure 1 - +ad-auction-additional-bid +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-ad-auction-additional-bid +1 +1 +- +ad-auction-allow-trusted-scoring-signals-from +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-ad-auction-allow-trusted-scoring-signals-from +1 +1 +- +ad-auction-allowed +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-ad-auction-allowed +1 +1 +- +ad-auction-signals +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-ad-auction-signals +1 +1 +- +adAuctionComponents(numAdComponents) +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-adauctioncomponents +1 +1 +Navigator +- +adAuctionHeaders +attribute +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-htmliframeelement-adauctionheaders +1 +1 +HTMLIFrameElement +- +adAuctionHeaders +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-requestinit-adauctionheaders +1 +1 +RequestInit +- +adComponents +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-adcomponents +1 +1 +GenerateBidInterestGroup +- +adComponents +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-adcomponents +1 +1 +GenerateBidOutput +- +adComponents +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-adcomponents +1 +1 +ScoringBrowserSignals +- +adComponentsLimit +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-adcomponentslimit +1 +1 +BiddingBrowserSignals +- +adCost +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-adcost +1 +1 +GenerateBidOutput +- +adCost +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-adcost +1 +1 +ReportWinBrowserSignals +- +adJSON +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-previouswin-adjson +1 +1 +PreviousWin +- +adSizes +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-adsizes +1 +1 +GenerateBidInterestGroup +- adapter dfn webgpu @@ -277,6 +731,17 @@ https://www.w3.org/TR/webgpu/#adapter 1 - +adauctionheaders +element-attr +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#element-attrdef-iframe-adauctionheaders +1 +1 +iframe +- add dfn dom @@ -312,15 +777,15 @@ https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-add mask-composite - add -dfn -fullscreen -fullscreen +abstract-op +webgpu +webgpu 1 current -https://fullscreen.spec.whatwg.org/#top-layer-add +https://gpuweb.github.io/gpuweb/#abstract-opdef-usage-scope-add 1 1 -top layer +usage scope - add dfn @@ -333,17 +798,6 @@ https://w3c.github.io/DOM-Parsing/#dfn-add 1 - add -method -custom-state-pseudo-class -custom-state-pseudo-class -1 -current -https://wicg.github.io/custom-state-pseudo-class/#dom-customstateset-add -1 -1 -CustomStateSet -- -add value css-masking-1 css-masking @@ -366,6 +820,17 @@ https://www.w3.org/TR/web-animations-1/#dom-compositeoperation-add CompositeOperation CompositeOperationOrAuto - +add +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-usage-scope-add +1 +1 +usage scope +- add a css style sheet dfn cssom-1 @@ -384,6 +849,16 @@ cssom snapshot https://www.w3.org/TR/cssom-1/#add-a-css-style-sheet 1 +1 +- +add a flag +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-add-a-flag + 1 - add a part @@ -392,7 +867,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#add-a-part +https://urlpattern.spec.whatwg.org/#add-a-part 1 - @@ -414,6 +889,16 @@ resource-timing snapshot https://www.w3.org/TR/resource-timing/#dfn-add-a-performanceresourcetiming-entry +1 +- +add a platform contribution +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#add-a-platform-contribution + 1 - add a priority change algorithm @@ -444,7 +929,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#add-a-token +https://urlpattern.spec.whatwg.org/#add-a-token 1 - @@ -454,7 +939,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#add-a-token-with-default-length +https://urlpattern.spec.whatwg.org/#add-a-token-with-default-length 1 - @@ -464,18 +949,18 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#add-a-token-with-default-position-and-length +https://urlpattern.spec.whatwg.org/#add-a-token-with-default-position-and-length 1 - add a track -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#dfn-add-a-track - +1 1 MediaStream - @@ -490,13 +975,13 @@ https://w3c.github.io/webrtc-pc/#add-track 1 - add a track -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-add-a-track - +1 1 MediaStream - @@ -518,6 +1003,16 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#add-a-vcard-line +1 +- +add an element to the top layer +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#add-an-element-to-the-top-layer +1 1 - add an entry @@ -602,6 +1097,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-add-an-input-source +1 +- +add an upcoming traverse api method tracker +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#add-an-upcoming-traverse-api-method-tracker + 1 - add cookie @@ -642,6 +1147,26 @@ webauthn snapshot https://www.w3.org/TR/webauthn-3/#add-credential +1 +- +add default values +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-add-default-values + +1 +- +add default values +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-add-default-values + 1 - add device to storage @@ -715,8 +1240,9 @@ mediacapture-automation 1 current https://w3c.github.io/mediacapture-automation/#add-mock-camera - 1 +1 +extension commands - add mock microphone dfn @@ -725,8 +1251,9 @@ mediacapture-automation 1 current https://w3c.github.io/mediacapture-automation/#add-mock-microphone - 1 +1 +extension commands - add or put dfn @@ -810,6 +1337,16 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#add-track +1 +- +add to the top layer +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#add-an-element-to-the-top-layer +1 1 - add two types @@ -829,9 +1366,10 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#add-two-types - +https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-add-two-types 1 +1 +CSSNumericValue - add value dfn @@ -930,6 +1468,17 @@ RdfGraph - add() method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-add +1 +1 +CSSNumericValue +- +add() +method json-ld11-api json-ld-api 1 @@ -1005,6 +1554,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add 1 MLGraphBuilder - +add(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-add +1 +1 +MLGraphBuilder +- +add(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add +1 +1 +MLGraphBuilder +- add(description) method content-index @@ -1049,6 +1620,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-add 1 FontFaceSet - +add(font) +method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-add +1 +1 +FontFaceSet +- add(graphName, graph) method json-ld11-api @@ -1172,17 +1754,6 @@ IDBObjectStore - add(value) method -custom-state-pseudo-class -custom-state-pseudo-class -1 -current -https://wicg.github.io/custom-state-pseudo-class/#dom-customstateset-add -1 -1 -CustomStateSet -- -add(value) -method indexeddb-3 indexeddb 3 @@ -1214,25 +1785,26 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbobjectstore-add 1 IDBObjectStore - -add-ons +add-new-report dfn -tracking-dnt -tracking-dnt +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-add-ons - +https://wicg.github.io/attribution-reporting-api/#event-level-report-replacement-result-add-new-report +1 +event-level-report-replacement result - add-ons dfn tracking-dnt tracking-dnt 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-add-ons +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-add-ons + -1 - addAll(requests) method @@ -1476,6 +2048,17 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-path2d-addpath 1 Path2D - +addPoint(point) +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingstroke-addpoint +1 +1 +HandwritingStroke +- addRange() method selection-api @@ -1542,6 +2125,17 @@ https://w3c.github.io/webrtc-ice/#dom-rtcicetransport-addremotecandidate 1 RTCIceTransport - +addRoutes(rules) +method +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-installevent-addroutes +1 +1 +InstallEvent +- addRule() method cssom-1 @@ -1696,6 +2290,17 @@ https://www.w3.org/TR/media-source-2/#dom-mediasource-addsourcebuffer 1 MediaSource - +addStroke(stroke) +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-addstroke +1 +1 +HandwritingDrawing +- addTextTrack(kind, label, language) method html @@ -1948,6 +2553,50 @@ https://dom.spec.whatwg.org/#dom-mutationrecord-addednodes 1 MutationRecord - +addedRanges +attribute +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeevent-addedranges +1 +1 +BufferedChangeEvent +- +addedRanges +dict-member +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeeventinit-addedranges +1 +1 +BufferedChangeEventInit +- +addedRanges +attribute +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeevent-addedranges +1 +1 +BufferedChangeEvent +- +addedRanges +dict-member +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeeventinit-addedranges +1 +1 +BufferedChangeEventInit +- adding a cookie dfn webdriver2 @@ -2008,6 +2657,27 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#addition 1 +1 +- +additional bid key +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-additional-bid-key + +1 +interest group +- +additional bids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#additional-bids + 1 - additional capability deserialization algorithm @@ -2017,7 +2687,7 @@ webdriver 2 current https://w3c.github.io/webdriver/#dfn-additional-capability-deserialization-algorithm - +1 1 - additional capability deserialization algorithm @@ -2027,12 +2697,12 @@ webdriver 2 snapshot https://www.w3.org/TR/webdriver2/#dfn-additional-capability-deserialization-algorithm - +1 1 - additional data type dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -2043,11 +2713,11 @@ Payment Method - additional data type dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-additional-data-type +https://www.w3.org/TR/payment-request/#dfn-additional-data-type Payment Method @@ -2119,6 +2789,28 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-n-additional-name 1 - +additionalBidKey +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroup-additionalbidkey +1 +1 +AuctionAdInterestGroup +- +additionalBids +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-additionalbids +1 +1 +AuctionAdConfig +- additionalData dict-member webcryptoapi @@ -2132,7 +2824,7 @@ AesGcmParams - additionalDisplayItems dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -2143,11 +2835,11 @@ PaymentDetailsModifier - additionalDisplayItems dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-additionaldisplayitems +https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-additionaldisplayitems 1 1 PaymentDetailsModifier @@ -2159,7 +2851,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesGcmParams-additionalData -1 + 1 - additive @@ -2429,6 +3121,28 @@ https://www.w3.org/TR/WGSL/#syntax-additive_operator 1 syntax - +addmodule initiated +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworklet-addmodule-initiated + +1 +SharedStorageWorklet +- +addmodule success +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworkletglobalscope-addmodule-success + +1 +SharedStorageWorkletGlobalScope +- address element html @@ -2462,6 +3176,16 @@ https://w3c.github.io/contact-picker/#dom-contactinfo-address ContactInfo - address +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-address + +1 +- +address attribute webrtc webrtc @@ -2528,6 +3252,16 @@ https://www.w3.org/TR/contact-picker/#dom-contactinfo-address ContactInfo - address +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-address + +1 +- +address dict-member webrtc-stats webrtc-stats @@ -2578,7 +3312,7 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-address-line - +1 1 physical address - @@ -2589,7 +3323,7 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-address-line - +1 1 physical address - @@ -2774,6 +3508,17 @@ https://w3c.github.io/contact-picker/#dom-contactaddress-addressline ContactAddress - addressLine +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-addressline +1 +1 +AddressErrors +- +addressLine attribute contact-picker contact-picker @@ -2784,6 +3529,17 @@ https://www.w3.org/TR/contact-picker/#dom-contactaddress-addressline 1 ContactAddress - +addressLine +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-addressline +1 +1 +AddressErrors +- addressModeU dict-member webgpu @@ -2850,50 +3606,6 @@ https://www.w3.org/TR/webgpu/#dom-gpusamplerdescriptor-addressmodew 1 GPUSamplerDescriptor - -address_space -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-address_space - -1 -recursive descent syntax -- -address_space -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-address_space - -1 -syntax -- -address_space -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-address_space - -1 -recursive descent syntax -- -address_space -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-address_space - -1 -syntax -- addressable character dfn svg2 @@ -2937,23 +3649,23 @@ https://www.w3.org/TR/contact-picker/#user-contact-addresses user contact - addsourcebuffer -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-addsourcebuffer - +1 1 - addsourcebuffer -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-addsourcebuffer - +1 1 - addtrack @@ -2999,6 +3711,17 @@ https://www.w3.org/TR/webrtc-identity/#dfn-addtrack 1 - +addtransceiver sendencodings validation steps +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-addtransceiver-sendencodings-validation-steps +1 +1 +RTCPeerConnection +- adequate implementation experience dfn w3c-process @@ -3027,6 +3750,36 @@ css current https://drafts.csswg.org/css2/#adjoining-margins +1 +- +adjoining margins +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x28 +1 +1 +- +adjoining margins +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x28 +1 +1 +- +adjust bid list based on k-anonymity +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#adjust-bid-list-based-on-k-anonymity + 1 - adjust foreign attributes @@ -3067,6 +3820,26 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#adjusted-current-node +1 +- +adjusted pressure state +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-adjusted-pressure-state + +1 +- +adjusted pressure state +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-adjusted-pressure-state + 1 - adjustedradicalkernafterdegree @@ -3244,6 +4017,39 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-adr 1 - +ads +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-ads +1 +1 +GenerateBidInterestGroup +- +ads +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ads + +1 +interest group +- +ads +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-interest-group-ads + +1 +server auction interest group +- adts enum-value webcodecs-aac-codec-registration @@ -3398,22 +4204,22 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-advanced-constraints - advanced observable properties dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-advanced-observable-properties +https://w3c.github.io/window-management/#screen-advanced-observable-properties 1 screen - advanced observable properties dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-advanced-observable-properties +https://www.w3.org/TR/window-management/#screen-advanced-observable-properties 1 screen @@ -3488,6 +4294,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#advertising-event +1 +- +advertising event +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#advertising-event + 1 - advertising events @@ -3498,6 +4314,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#advertising-event +1 +- +advertising events +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#advertising-event + 1 - advisory board diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ae.data b/bikeshed/spec-data/readonly/anchors/anchors-ae.data index 426424d6ec..caca8182c8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ae.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ae.data @@ -65,7 +65,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesCbcParams -1 + 1 - aesctrparams @@ -75,7 +75,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesCtrParams -1 + 1 - aesderivedkeyparams @@ -85,7 +85,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesDerivedKeyParams -1 + 1 - aesgcmparams @@ -95,7 +95,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesGcmParams -1 + 1 - aeskeyalgorithm @@ -105,7 +105,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesKeyAlgorithm -1 + 1 - aeskeygenparams @@ -115,6 +115,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesKeyGenParams -1 + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-af.data b/bikeshed/spec-data/readonly/anchors/anchors-af.data index 4564bdc0e4..baccdaada3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-af.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-af.data @@ -1,25 +1,3 @@ -"after-transition" -enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationfocusreset-after-transition -1 -1 -NavigationFocusReset -- -"after-transition" -enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationscrollbehavior-after-transition -1 -1 -NavigationScrollBehavior -- ::after selector css-pseudo-4 @@ -70,6 +48,68 @@ https://drafts.csswg.org/css2/#selectordef-after 1 1 - +:after +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x5 +1 +1 +- +:after +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x5 +1 +1 +- +:after +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x59 +1 +1 +- +:after +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x59 +1 +1 +- +[[AfterPenaltyRecordMap]] +attribute +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-afterpenaltyrecordmap + +1 +PressureObserver +- +[[AfterPenaltyRecordMap]] +attribute +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-afterpenaltyrecordmap + +1 +PressureObserver +- affected by a base url change dfn html @@ -78,6 +118,26 @@ html current https://html.spec.whatwg.org/multipage/infrastructure.html#affected-by-a-base-url-change +1 +- +affected range +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#affected-range + +1 +- +affected range +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#affected-range + 1 - after @@ -104,25 +164,45 @@ content() - after value -css-content-3 -css-content -3 -snapshot -https://www.w3.org/TR/css-content-3/#valdef-content-after +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#valdef-scroll-marker-group-after 1 1 -content() +scroll-marker-group - after dfn -css-view-transitions-1 -css-view-transitions +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x5 +1 +1 +- +after +dfn +css2 +css 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#phases-after - +https://www.w3.org/TR/CSS21/generate.html#x5 +1 1 -phases +- +after +value +css-content-3 +css-content +3 +snapshot +https://www.w3.org/TR/css-content-3/#valdef-content-after +1 +1 +content() - after after body dfn @@ -288,6 +368,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-after 1 AnimationEffect - +after() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-after +1 +1 +AnimationEffect +- after(...effects) method web-animations-2 @@ -299,6 +390,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-after 1 AnimationEffect - +after(...effects) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-after +1 +1 +AnimationEffect +- after(...nodes) method dom @@ -330,6 +432,28 @@ https://www.w3.org/TR/css-transitions-1/#after-change-style 1 1 - +after-transition +enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationfocusreset-after-transition +1 +1 +NavigationFocusReset +- +after-transition +enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationscrollbehavior-after-transition +1 +1 +NavigationScrollBehavior +- afterprint event html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ag.data b/bikeshed/spec-data/readonly/anchors/anchors-ag.data index 2e1d732fc8..413d9f4f20 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ag.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ag.data @@ -40,6 +40,16 @@ https://www.w3.org/TR/css-speech-1/#typedef-voice-family-age 1 voice-family - +AgentCanSuspend +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-agentcansuspend +1 +1 +- AgentCanSuspend() abstract-op ecmascript @@ -50,6 +60,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +AgentSignifier +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-agentsignifier +1 +1 +- AgentSignifier() abstract-op ecmascript @@ -103,6 +123,17 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-agent - agent dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#realm's-agent +1 +1 +realm +- +agent +dfn ecmascript ecmascript 1 @@ -457,16 +488,25 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#ag 1 ECMAScript - -aggregatable budget consumed +aggregatable attribution report dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-aggregatable-budget-consumed +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report + +1 +- +aggregatable attribution report cache +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-cache 1 -attribution source - aggregatable contribution dfn @@ -478,6 +518,78 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-contribution 1 - +aggregatable debug rate-limit cache +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-cache + +1 +- +aggregatable debug rate-limit record +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-record + +1 +- +aggregatable debug rate-limit window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-window + +1 +- +aggregatable debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-report + +1 +- +aggregatable debug reporting config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-config + +1 +- +aggregatable debug reporting config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-aggregatable-debug-reporting-config + +1 +attribution source +- +aggregatable debug reporting config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatable-debug-reporting-config + +1 +attribution trigger +- aggregatable dedup key dfn attribution-reporting-api @@ -510,6 +622,37 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatab 1 attribution trigger - +aggregatable filtering id max bytes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatable-filtering-id-max-bytes + +1 +attribution trigger +- +aggregatable key value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-key-value + +1 +- +aggregatable report +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report + +1 +- aggregatable report dfn attribution-reporting-api @@ -522,11 +665,11 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report - aggregatable report cache dfn -attribution-reporting-api -attribution-reporting-api +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/attribution-reporting-api/#aggregatable-report-cache +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-cache 1 - @@ -541,16 +684,26 @@ https://wicg.github.io/attribution-reporting-api/#attribution-source-aggregatabl 1 attribution source - -aggregatable report window time +aggregatable source registration time configuration dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-aggregatable-report-window-time +https://wicg.github.io/attribution-reporting-api/#aggregatable-source-registration-time-configuration 1 -attribution source +- +aggregatable source registration time configuration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatable-source-registration-time-configuration + +1 +attribution trigger - aggregatable trigger data dfn @@ -573,17 +726,168 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatab 1 attribution trigger - -aggregatable values +aggregatable values configuration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-values-configuration + +1 +- +aggregatable values configurations dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatable-values +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatable-values-configurations 1 attribution trigger - +aggregatable-attribution +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#rate-limit-scope-aggregatable-attribution + +1 +rate-limit scope +- +aggregatable-debug-reporting json key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-json-key + +1 +- +aggregatable_debug_reporting +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-aggregatable_debug_reporting + +1 +source-registration JSON key +- +aggregatable_debug_reporting +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregatable_debug_reporting + +1 +trigger-registration JSON key +- +aggregatable_deduplication_keys +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregatable_deduplication_keys + +1 +trigger-registration JSON key +- +aggregatable_filtering_id_max_bytes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregatable_filtering_id_max_bytes + +1 +trigger-registration JSON key +- +aggregatable_report_window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-aggregatable_report_window + +1 +source-registration JSON key +- +aggregatable_source_registration_time +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregatable_source_registration_time + +1 +trigger-registration JSON key +- +aggregatable_trigger_data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregatable_trigger_data + +1 +trigger-registration JSON key +- +aggregatable_values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregatable_values + +1 +trigger-registration JSON key +- +aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-aggregation-coordinator + +1 +aggregatable report +- +aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregation-coordinator + +1 +- +aggregation coordinator +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-config-aggregation-coordinator + +1 +aggregatable debug reporting config +- aggregation coordinator dfn attribution-reporting-api @@ -594,6 +898,8 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report-aggregatio 1 aggregatable report +aggregatable attribution report +aggregatable debug report - aggregation coordinator dfn @@ -616,6 +922,16 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-aggregatio 1 attribution trigger - +aggregation coordinator map +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregation-coordinator-map + +1 +- aggregation keys dfn attribution-reporting-api @@ -627,43 +943,58 @@ https://wicg.github.io/attribution-reporting-api/#attribution-source-aggregation 1 attribution source - -agreement -dfn -i18n-glossary -i18n-glossary +aggregationCoordinatorOrigin +dict-member +private-aggregation-api +private-aggregation-api 1 current -https://w3c.github.io/i18n-glossary/#dfn-agreement +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-protectedaudienceprivateaggregationconfig-aggregationcoordinatororigin 1 - +1 +ProtectedAudiencePrivateAggregationConfig - -agreement -dfn -i18n-glossary -i18n-glossary +aggregationCoordinatorOrigin +dict-member +private-aggregation-api +private-aggregation-api 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-agreement +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-sharedstorageprivateaggregationconfig-aggregationcoordinatororigin 1 - +1 +SharedStoragePrivateAggregationConfig - -agreements +aggregation_coordinator_origin dfn -i18n-glossary -i18n-glossary +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/i18n-glossary/#dfn-agreement -1 +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-json-key-aggregation_coordinator_origin +1 +aggregatable-debug-reporting JSON key - -agreements +aggregation_coordinator_origin dfn -i18n-glossary -i18n-glossary +attribution-reporting-api +attribution-reporting-api 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-agreement +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-aggregation_coordinator_origin + +1 +trigger-registration JSON key +- +aggregation_keys +dfn +attribution-reporting-api +attribution-reporting-api 1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-aggregation_keys +1 +source-registration JSON key - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-al.data b/bikeshed/spec-data/readonly/anchors/anchors-al.data index cb861111b3..e0dcfbcfcf 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-al.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-al.data @@ -22,6 +22,17 @@ GPUTextureAspect - "all" enum-value +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-samesitecookiestype-all +1 +1 +SameSiteCookiesType +- +"all" +enum-value service-workers service-workers 1 @@ -281,6 +292,26 @@ current https://drafts.csswg.org/css2/#all-media-group +- +'all' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#all-media-group +1 +1 +- +'all' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#all-media-group +1 +1 - 'allow' grammar @@ -308,19 +339,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#typedef-alpha-value -1 -1 -- -<alpha-value> -type -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#typedef-alpha-value +https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value 1 1 +<color> - <alpha-value> type @@ -328,19 +350,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#typedef-alpha-value -1 -1 -- -<alpha-value> -type -css-color-5 -css-color -5 -snapshot -https://www.w3.org/TR/css-color-5/#typedef-alpha-value +https://www.w3.org/TR/css-color-4/#typedef-color-alpha-value 1 1 +<color> - <alphavalue> dfn @@ -368,7 +381,7 @@ json-ld11-framing json-ld-framing 1 current -https://w3c.github.io/json-ld-framing/#dom-jsonldembed-@always +https://w3c.github.io/json-ld-framing/#dom-jsonldembed-%40always 1 1 JsonLdEmbed @@ -379,7 +392,7 @@ json-ld11-framing json-ld-framing 1 snapshot -https://www.w3.org/TR/json-ld11-framing/#dom-jsonldembed-@always +https://www.w3.org/TR/json-ld11-framing/#dom-jsonldembed-%40always 1 1 JsonLdEmbed @@ -468,7 +481,37 @@ https://www.w3.org/TR/webvtt1/#enumdef-alignsetting 1 1 - -AllocateArrayBuffer(constructor, byteLength) +AllCharacters +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-allcharacters +1 +1 +- +AllCharacters(rer) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-allcharacters +1 +1 +- +AllocateArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-allocatearraybuffer +1 +1 +- +AllocateArrayBuffer(constructor, byteLength, maxByteLength) abstract-op ecmascript ecmascript @@ -478,7 +521,17 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-allocatearraybuffer 1 1 - -AllocateSharedArrayBuffer(constructor, byteLength) +AllocateSharedArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-allocatesharedarraybuffer +1 +1 +- +AllocateSharedArrayBuffer(constructor, byteLength, maxByteLength) abstract-op ecmascript ecmascript @@ -488,6 +541,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-allocatesharedarraybu 1 1 - +AllocateTypedArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-allocatetypedarray +1 +1 +- AllocateTypedArray(constructorName, newTarget, defaultProto, length) abstract-op ecmascript @@ -498,6 +561,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-allocatetypedarra 1 1 - +AllocateTypedArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-allocatetypedarraybuffer +1 +1 +- AllocateTypedArrayBuffer(O, length) abstract-op ecmascript @@ -528,6 +601,16 @@ https://webidl.spec.whatwg.org/#AllowShared 1 1 - +AllowSharedBufferSource +typedef +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#AllowSharedBufferSource +1 +1 +- AllowedBluetoothDevice dictionary web-bluetooth @@ -752,26 +835,6 @@ https://www.w3.org/TR/mediasession/#mediametadata-album 1 MediaMetadata - -alert -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-alert - -1 -- -alert -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-alert - -1 -- alert steps dfn notifications @@ -888,7 +951,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-Algorithm -1 + 1 - algorithm @@ -898,7 +961,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-algorithm -1 + 1 - algorithm @@ -944,32 +1007,32 @@ https://w3c.github.io/mathml-core/#dfn-algorithm-for-determining-the-form-of-an- 1 - algorithm for determining the form of an embellished operator -dfn +abstract-op mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-algorithm-for-determining-the-form-of-an-embellished-operator - +1 1 - algorithm for determining the properties of an embellished operator -dfn +abstract-op mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-algorithm-for-determining-the-properties-of-an-embellished-operator - +current +https://w3c.github.io/mathml-core/#algorithm-for-determining-the-properties-of-an-embellished-operator +1 1 - -algorithm for determining the properties of an embellished operator tests: 1 mo-single-char-and-children ,,, +algorithm for determining the properties of an embellished operator abstract-op mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#algorithm-for-determining-the-properties-of-an-embellished-operator +snapshot +https://www.w3.org/TR/mathml-core/#algorithm-for-determining-the-properties-of-an-embellished-operator 1 1 - @@ -1034,13 +1097,13 @@ https://w3c.github.io/mathml-core/#dfn-algorithm-for-stretching-operators-along- 1 - algorithm for stretching operators along the block axis -dfn +abstract-op mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-algorithm-for-stretching-operators-along-the-block-axis - +1 1 - algorithm for stretching operators along the inline axis @@ -1054,13 +1117,13 @@ https://w3c.github.io/mathml-core/#dfn-algorithm-for-stretching-operators-along- 1 - algorithm for stretching operators along the inline axis -dfn +abstract-op mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-algorithm-for-stretching-operators-along-the-inline-axis - +1 1 - algorithm normalization @@ -1091,26 +1154,6 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#session-history-traversal-parallel-queue-algorithm-set -1 -- -algorithm to close a midiport -dfn -webmidi -webmidi -1 -current -https://webaudio.github.io/web-midi-api/#dfn-algorithm-to-close-a-midiport - -1 -- -algorithm to close a midiport -dfn -webmidi -webmidi -1 -snapshot -https://www.w3.org/TR/webmidi/#dfn-algorithm-to-close-a-midiport -1 1 - algorithm to convert a date object to a string @@ -1164,13 +1207,13 @@ https://w3c.github.io/mathml-core/#dfn-algorithm-to-determine-the-category-of-an 1 - algorithm to determine the category of an operator -dfn +abstract-op mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-algorithm-to-determine-the-category-of-an-operator - +1 1 - algorithm to open a midiport @@ -1189,28 +1232,8 @@ webmidi webmidi 1 snapshot -https://www.w3.org/TR/webmidi/#dfn-algorithm-to-open-a-midiport -1 -1 -- -algorithm to request midi access -dfn -webmidi -webmidi -1 -current -https://webaudio.github.io/web-midi-api/#dfn-algorithm-to-request-midi-access +https://www.w3.org/TR/webmidi/#dfn-open-the-port -1 -- -algorithm to request midi access -dfn -webmidi -webmidi -1 -snapshot -https://www.w3.org/TR/webmidi/#dfn-algorithm-to-request-midi-access -1 1 - algorithm to set the properties of an operator from its category @@ -1224,13 +1247,13 @@ https://w3c.github.io/mathml-core/#dfn-algorithm-to-set-the-properties-of-an-ope 1 - algorithm to set the properties of an operator from its category -dfn +abstract-op mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-algorithm-to-set-the-properties-of-an-operator-from-its-category - +1 1 - algorithm_cached @@ -1240,7 +1263,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-algorithm_cached -1 + 1 - algorithmidentifier @@ -1250,7 +1273,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AlgorithmIdentifier -1 + 1 - alias @@ -1370,6 +1393,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-aliceblue 1 1 <color> +<named-color> - aliceblue dfn @@ -1391,6 +1415,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-aliceblue 1 1 <color> +<named-color> - align dfn @@ -1917,6 +1942,17 @@ https://drafts.csswg.org/css-align-3/#propdef-align-self 1 - align-self +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-align-self +1 +1 +CSSPositionTryDescriptors +- +align-self property css-flexbox-1 css-flexbox @@ -1946,15 +1982,38 @@ https://www.w3.org/TR/css-flexbox-1/#propdef-align-self 1 1 - -align-tracks -property -css-grid-3 -css-grid -3 +alignSelf +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-alignself +1 +1 +CSSPositionTryDescriptors +- +align_attr +dfn +wgsl +wgsl +1 current -https://drafts.csswg.org/css-grid-3/#propdef-align-tracks +https://gpuweb.github.io/gpuweb/wgsl/#syntax-align_attr + +1 +syntax +- +align_attr +dfn +wgsl +wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-align_attr + 1 +syntax - aligned dfn @@ -2274,6 +2333,28 @@ Document - all value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all +1 +1 +anchor-scope +- +all +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-all +1 +1 +border-limit +- +all +value css-break-4 css-break 4 @@ -2469,6 +2550,17 @@ https://drafts.csswg.org/mediaqueries-5/#valdef-media-all @media - all +value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-timeline-scope-all +1 +1 +timeline-scope +- +all dfn html html @@ -2490,6 +2582,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-document-all Document - all +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-all +1 +1 +StorageAccessTypes +- +all enum-value webrtc webrtc @@ -2502,6 +2605,17 @@ RTCIceTransportPolicy - all value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-scope-all +1 +1 +anchor-scope +- +all +value css-break-4 css-break 4 @@ -2705,10 +2819,152 @@ https://www.w3.org/TR/webdriver2/#dfn-associated-cookies 1 - -all(iterable) -method -ecmascript -ecmascript +all buyer experiment group id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyer-experiment-group-id + +1 +auction config +- +all buyers cumulative timeout +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyers-cumulative-timeout + +1 +auction config +- +all buyers currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyers-currency + +1 +auction config +- +all buyers group limit +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyers-group-limit + +1 +auction config +- +all buyers multi-bid limit +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyers-multi-bid-limit + +1 +auction config +- +all buyers priority signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyers-priority-signals + +1 +auction config +- +all buyers timeout +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-buyers-timeout + +1 +auction config +- +all fetch listeners are empty +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#all-fetch-listeners-are-empty + +1 +- +all fetch listeners are empty flag +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#service-worker-all-fetch-listeners-are-empty-flag + +1 +service worker +- +all per interest group data +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-all-per-interest-group-data + +1 +trusted bidding signals batcher +- +all sellers capabilities +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-all-sellers-capabilities + +1 +interest group +- +all slots requested sizes +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-all-slots-requested-sizes + +1 +auction config +- +all trusted bidding signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-all-trusted-bidding-signals + +1 +trusted bidding signals batcher +- +all(iterable) +method +ecmascript +ecmascript 1 current https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.all @@ -2837,6 +3093,17 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.a 1 Promise - +allSlotsRequestedSizes +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-allslotsrequestedsizes +1 +1 +AuctionAdConfig +- allocate color textures dfn webxrlayers-1 @@ -3087,15 +3354,38 @@ https://html.spec.whatwg.org/multipage/iframe-embed-object.html#dom-iframe-allow 1 HTMLIFrameElement - -allow comments option +allow +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-htmlfencedframeelement-allow +1 +1 +HTMLFencedFrameElement +- +allow +element-attr +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#element-attrdef-fencedframe-allow +1 +1 +fencedframe +- +allow declarative shadow roots dfn -sanitizer-api -sanitizer-api +dom +dom 1 current -https://wicg.github.io/sanitizer-api/#allow-comments-option - +https://dom.spec.whatwg.org/#document-allow-declarative-shadow-roots +1 1 +Document - allow new features dfn @@ -3107,16 +3397,15 @@ https://www.w3.org/Consortium/Process/#allow-new-features 1 - -allow text fragment scroll -dfn -scroll-to-text-fragment -scroll-to-text-fragment +allow-cross-origin-event-reporting +http-header +fenced-frame +fenced-frame 1 current -https://wicg.github.io/scroll-to-text-fragment/#document-allow-text-fragment-scroll - +https://wicg.github.io/fenced-frame/#http-headerdef-allow-cross-origin-event-reporting +1 1 -document - allow-csp-from http-header @@ -3163,17 +3452,6 @@ hanging-punctuation - allow-end value -css-text-4 -css-text -4 -current -https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-allow-end -1 -1 -text-spacing-trim -- -allow-end -value css-text-3 css-text 3 @@ -3194,16 +3472,15 @@ https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-allow-end 1 hanging-punctuation - -allow-end -value -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-allow-end +allow-fenced-frame-automatic-beacons +http-header +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#http-headerdef-allow-fenced-frame-automatic-beacons 1 1 -text-spacing - allow-forms attr-value @@ -3216,6 +3493,17 @@ https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-f 1 iframe/sandbox - +allow-keywords +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-interpolate-size-allow-keywords +1 +1 +interpolate-size +- allow-list dfn permissions-policy-1 @@ -3388,27 +3676,27 @@ https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-t 1 iframe/sandbox - -allowAttributes +allowComponentAuction dict-member -sanitizer-api -sanitizer-api +turtledove +turtledove 1 current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-allowattributes +https://wicg.github.io/turtledove/#dom-generatebidoutput-allowcomponentauction 1 1 -SanitizerConfig +GenerateBidOutput - -allowComments +allowComponentAuction dict-member -sanitizer-api -sanitizer-api +turtledove +turtledove 1 current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-allowcomments +https://wicg.github.io/turtledove/#dom-scoreadoutput-allowcomponentauction 1 1 -SanitizerConfig +ScoreAdOutput - allowCredentials dict-member @@ -3443,27 +3731,16 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-allowcre 1 PublicKeyCredentialRequestOptions - -allowCustomElements -dict-member -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-allowcustomelements -1 -1 -SanitizerConfig -- -allowElements +allowCredentials dict-member -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-allowelements +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-allowcredentials 1 1 -SanitizerConfig +PublicKeyCredentialRequestOptionsJSON - allowFullscreen attribute @@ -3498,17 +3775,6 @@ https://www.w3.org/TR/webtransport/#dom-webtransportoptions-allowpooling 1 WebTransportOptions - -allowUnknownMarkup -dict-member -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-allowunknownmarkup -1 -1 -SanitizerConfig -- allowWithoutGesture dict-member clipboard-apis @@ -3543,6 +3809,17 @@ https://w3c.github.io/autoplay/#dom-autoplaypolicy-allowed AutoplayPolicy - allowed +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-rate-limit-result-allowed + +1 +destination rate-limit result +- +allowed enum-value autoplay-detection autoplay-detection @@ -3561,6 +3838,16 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#allowed-aggregatable-budget-per-source +1 +- +allowed aggregation coordinator set +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#allowed-aggregation-coordinator-set + 1 - allowed buffer usages @@ -3601,6 +3888,16 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#allowed-in-the-body +1 +- +allowed number of groups +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-manager-allowed-number-of-groups + 1 - allowed public key algorithms @@ -3623,6 +3920,28 @@ https://www.w3.org/TR/webtransport/#allowed-public-key-algorithms 1 - +allowed reporting origins +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-allowed-reporting-origins +1 +1 +fenced frame reporting metadata +- +allowed reporting origins +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-allowed-reporting-origins + +1 +interest group ad +- allowed required constraints for device selection dfn mediacapture-streams @@ -3630,7 +3949,7 @@ mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#dfn-allowed-required-constraints-for-device-selection - +1 1 - allowed required constraints for device selection @@ -3640,7 +3959,7 @@ mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-allowed-required-constraints-for-device-selection - +1 1 - allowed signed exchange link info @@ -3671,16 +3990,6 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#allowed-texture-usages -1 -- -allowed to download -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/links.html#allowed-to-download - 1 - allowed to modify the clipboard @@ -3793,6 +4102,17 @@ https://html.spec.whatwg.org/multipage/iframe-embed-object.html#allowed-to-use 1 1 - +allowed to use +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#privateaggregation-allowed-to-use + +1 +PrivateAggregation +- allowed value step dfn html @@ -3836,6 +4156,17 @@ https://www.w3.org/TR/autoplay-detection/#dom-autoplaypolicy-allowed-muted 1 AutoplayPolicy - +allowedBluetoothServiceClassIds +dict-member +serial +serial +1 +current +https://wicg.github.io/serial/#dom-serialportrequestoptions-allowedbluetoothserviceclassids +1 +1 +SerialPortRequestOptions +- allowedDevices dict-member web-bluetooth @@ -3891,6 +4222,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-allowedbluetoothdevice-allow 1 AllowedBluetoothDevice - +allowedReportingOrigins +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionad-allowedreportingorigins +1 +1 +AuctionAd +- allowedServices dict-member web-bluetooth @@ -4006,26 +4348,25 @@ https://www.w3.org/TR/CSP3/#source-list-allows-all-inline-behavior 1 source list - -allows downloading +allows auto-sizes dfn html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#source-snapshot-params-download +https://html.spec.whatwg.org/multipage/embedded-content.html#allows-auto-sizes 1 - -allows logout -argument -fedcm -fedcm +allows downloading +dfn +html +html 1 current -https://fedidcg.github.io/FedCM/#dom-accountstate-allows-logout -1 +https://html.spec.whatwg.org/multipage/browsing-the-web.html#source-snapshot-params-download + 1 -AccountState - allowsFeature(feature) method @@ -4104,6 +4445,26 @@ https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-allpass 1 BiquadFilterType - +alltypes +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#alltypes + +1 +- +alltypes +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#alltypes + +1 +- alpha dict-member css-paint-api-1 @@ -4332,10 +4693,10 @@ css-color-5 css-color 5 current -https://drafts.csswg.org/css-color-5/#valdef-hsl-alpha +https://drafts.csswg.org/css-color-5/#valdef-color-alpha 1 1 -hsl() +color() - alpha value @@ -4343,10 +4704,10 @@ css-color-5 css-color 5 current -https://drafts.csswg.org/css-color-5/#valdef-hwb-alpha +https://drafts.csswg.org/css-color-5/#valdef-hsl-alpha 1 1 -hwb() +hsl() - alpha value @@ -4354,7 +4715,18 @@ css-color-5 css-color 5 current -https://drafts.csswg.org/css-color-5/#valdef-lab-alpha +https://drafts.csswg.org/css-color-5/#valdef-hwb-alpha +1 +1 +hwb() +- +alpha +value +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#valdef-lab-alpha 1 1 lab() @@ -4511,16 +4883,6 @@ https://immersive-web.github.io/webxr/#dom-xrwebgllayerinit-alpha XRWebGLLayerInit - alpha -dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#3alpha - -1 -- -alpha attribute orientation-event orientation-event @@ -4565,6 +4927,16 @@ https://w3c.github.io/deviceorientation/#dom-deviceorientationeventinit-alpha DeviceOrientationEventInit - alpha +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#3alpha + +1 +- +alpha dict-member webcodecs webcodecs @@ -4647,6 +5019,17 @@ css-color-5 css-color 5 snapshot +https://www.w3.org/TR/css-color-5/#valdef-color-alpha +1 +1 +color() +- +alpha +value +css-color-5 +css-color +5 +snapshot https://www.w3.org/TR/css-color-5/#valdef-hsl-alpha 1 1 @@ -4775,6 +5158,206 @@ PaintRenderingContext2D - alpha attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-alpha +1 +1 +CSSColor +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor-colorspace-channels-alpha-alpha +1 +1 +CSSColor/CSSColor(colorSpace, channels, alpha) +CSSColor/constructor(colorSpace, channels, alpha) +CSSColor/CSSColor(colorSpace, channels) +CSSColor/constructor(colorSpace, channels) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-alpha +1 +1 +CSSHSL +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl-h-s-l-alpha-alpha +1 +1 +CSSHSL/CSSHSL(h, s, l, alpha) +CSSHSL/constructor(h, s, l, alpha) +CSSHSL/CSSHSL(h, s, l) +CSSHSL/constructor(h, s, l) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-alpha +1 +1 +CSSHWB +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-alpha-alpha +1 +1 +CSSHWB/CSSHWB(h, w, b, alpha) +CSSHWB/constructor(h, w, b, alpha) +CSSHWB/CSSHWB(h, w, b) +CSSHWB/constructor(h, w, b) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-alpha +1 +1 +CSSLab +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab-l-a-b-alpha-alpha +1 +1 +CSSLab/CSSLab(l, a, b, alpha) +CSSLab/constructor(l, a, b, alpha) +CSSLab/CSSLab(l, a, b) +CSSLab/constructor(l, a, b) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-alpha +1 +1 +CSSLCH +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch-l-c-h-alpha-alpha +1 +1 +CSSLCH/CSSLCH(l, c, h, alpha) +CSSLCH/constructor(l, c, h, alpha) +CSSLCH/CSSLCH(l, c, h) +CSSLCH/constructor(l, c, h) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-alpha +1 +1 +CSSOKLab +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-alpha-alpha +1 +1 +CSSOKLab/CSSOKLab(l, a, b, alpha) +CSSOKLab/constructor(l, a, b, alpha) +CSSOKLab/CSSOKLab(l, a, b) +CSSOKLab/constructor(l, a, b) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-alpha +1 +1 +CSSOKLCH +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-alpha-alpha +1 +1 +CSSOKLCH/CSSOKLCH(l, c, h, alpha) +CSSOKLCH/constructor(l, c, h, alpha) +CSSOKLCH/CSSOKLCH(l, c, h) +CSSOKLCH/constructor(l, c, h) +- +alpha +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-alpha +1 +1 +CSSRGB +- +alpha +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb-r-g-b-alpha-alpha +1 +1 +CSSRGB/CSSRGB(r, g, b, alpha) +CSSRGB/constructor(r, g, b, alpha) +CSSRGB/CSSRGB(r, g, b) +CSSRGB/constructor(r, g, b) +- +alpha +attribute orientation-event orientation-event 1 @@ -4818,6 +5401,16 @@ https://www.w3.org/TR/orientation-event/#dom-deviceorientationeventinit-alpha DeviceOrientationEventInit - alpha +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3alpha + +1 +- +alpha dict-member webcodecs webcodecs @@ -4938,11 +5531,21 @@ https://www.w3.org/TR/css-color-4/#alpha-channel - alpha compaction dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3alphaCompaction +https://w3c.github.io/png/#3alphaCompaction + +1 +- +alpha compaction +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3alphaCompaction 1 - @@ -4968,21 +5571,41 @@ https://www.w3.org/TR/css-color-4/#alpha-channel - alpha separation dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3alphaSeparation +https://w3c.github.io/png/#3alphaSeparation 1 - -alpha table +alpha separation dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3alphaSeparation + 1 +- +alpha table +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-alpha-table +https://w3c.github.io/png/#3alphaTable + +1 +- +alpha table +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3alphaTable 1 - @@ -5113,6 +5736,26 @@ https://www.w3.org/TR/webgpu/#dom-gpumultisamplestate-alphatocoverageenabled 1 1 GPUMultisampleState +- +alphabet +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-alphabet +1 + +- +alphabet +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-alphabet +1 + - alphabetic value @@ -5165,10 +5808,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-alphabetic +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-alphabetic 1 1 -text-edge +line-fit-edge +<<text-edge>> - alphabetic enum-value @@ -5232,10 +5876,11 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-alphabetic +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-alphabetic 1 1 -text-edge +line-fit-edge +<<text-edge>> - alphabetic baseline dfn @@ -5453,6 +6098,26 @@ w3c-process current https://www.w3.org/Consortium/Process/#alternate-ac-representative 1 +1 +- +alt flag +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#alt-flag + +1 +- +alt flag +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#alt-flag + 1 - altKey @@ -5645,6 +6310,28 @@ https://drafts.csswg.org/css-ruby-1/#valdef-ruby-position-alternate ruby-position - alternate +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-playbackdirection-alternate +1 +1 +PlaybackDirection +- +alternate +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#playback-direction-alternate + +1 +playback direction +- +alternate attr-value html html @@ -5806,6 +6493,28 @@ https://drafts.csswg.org/css-animations-1/#valdef-animation-direction-alternate- animation-direction - alternate-reverse +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-playbackdirection-alternate-reverse +1 +1 +PlaybackDirection +- +alternate-reverse +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#playback-direction-alternate-reverse + +1 +playback direction +- +alternate-reverse value css-animations-1 css-animations @@ -5871,27 +6580,47 @@ https://html.spec.whatwg.org/multipage/media.html#value-track-kind-alternate 1 - -altitude -attribute -geolocation -geolocation +alternatives +dict-member +handwriting-recognition +handwriting-recognition 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-altitude +https://wicg.github.io/handwriting-recognition/#dom-handwritinghints-alternatives 1 1 -GeolocationCoordinates +HandwritingHints - -altitude +alternatives dict-member -geolocation-sensor -geolocation-sensor +handwriting-recognition +handwriting-recognition 1 current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-altitude +https://wicg.github.io/handwriting-recognition/#dom-handwritinghintsqueryresult-alternatives +1 1 +HandwritingHintsQueryResult +- +altgraph flag +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#altgraph-flag + +1 +- +altgraph flag +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#altgraph-flag + 1 -GeolocationReadingValues - altitude attribute @@ -5916,15 +6645,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-altitude GeolocationSensorReading - altitude -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-altitude +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-altitude 1 1 -GeolocationReadingValues +GeolocationCoordinates - altitude attribute @@ -5961,28 +6690,6 @@ GeolocationCoordinates - altitudeAccuracy attribute -geolocation -geolocation -1 -current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-altitudeaccuracy -1 -1 -GeolocationCoordinates -- -altitudeAccuracy -dict-member -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-altitudeaccuracy -1 -1 -GeolocationReadingValues -- -altitudeAccuracy -attribute geolocation-sensor geolocation-sensor 1 @@ -6004,15 +6711,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-altitudea GeolocationSensorReading - altitudeAccuracy -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-altitudeaccuracy +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-altitudeaccuracy 1 1 -GeolocationReadingValues +GeolocationCoordinates - altitudeAccuracy attribute @@ -6124,6 +6831,28 @@ https://w3c.github.io/mathml-core/#dfn-alttext 1 math - +alttext +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-alttext +1 +1 +math +- +always +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-always +1 +1 +position-visibility +- always value css-break-4 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-am.data b/bikeshed/spec-data/readonly/anchors/anchors-am.data index 7e1c33b524..cc8c8b4e9a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-am.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-am.data @@ -1,44 +1,13 @@ -"ambient-light" +"ambient" enum-value -generic-sensor -generic-sensor +audio-session +audio-session 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-ambient-light -1 -1 -MockSensorType -- -"ambient-light" -enum-value -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-ambient-light -1 -1 -MockSensorType -- -AmbientLightReadingValues -dictionary -ambient-light -ambient-light -1 -current -https://w3c.github.io/ambient-light/#dictdef-ambientlightreadingvalues -1 -1 -- -AmbientLightReadingValues -dictionary -ambient-light -ambient-light -1 -snapshot -https://www.w3.org/TR/ambient-light/#dictdef-ambientlightreadingvalues +https://w3c.github.io/audio-session/#dom-audiosessiontype-ambient 1 1 +AudioSessionType - AmbientLightSensor interface @@ -172,6 +141,26 @@ ambient-light snapshot https://www.w3.org/TR/ambient-light/#ambient-light-threshold-check-algorithm +1 +- +ambient-light virtual sensor type +dfn +ambient-light +ambient-light +1 +current +https://w3c.github.io/ambient-light/#ambient-light-virtual-sensor-type + +1 +- +ambient-light virtual sensor type +dfn +ambient-light +ambient-light +1 +snapshot +https://www.w3.org/TR/ambient-light/#ambient-light-virtual-sensor-type + 1 - ambient-light-sensor @@ -238,7 +227,7 @@ CSS - amount dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -249,15 +238,59 @@ PaymentItem - amount dict-member -payment-request-1.1 +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingoption-amount +1 +1 +PaymentShippingOption +- +amount +dict-member +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-amount +https://www.w3.org/TR/payment-request/#dom-paymentitem-amount 1 1 PaymentItem - +amount +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-amount +1 +1 +PaymentShippingOption +- +amount to debit +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-amount-to-debit +1 +1 +exfiltration budget metadata +- +amount to debit reference +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-reference-amount-to-debit-reference +1 +1 +exfiltration budget metadata reference +- amplitude attribute filter-effects-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-an.data b/bikeshed/spec-data/readonly/anchors/anchors-an.data index 05574e9835..f17147b663 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-an.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-an.data @@ -1,3 +1,14 @@ +"ancestor" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptwindowattribution-ancestor +1 +1 +ScriptWindowAttribution +- "angle" enum-value css-typed-om-1 @@ -159,15 +170,14 @@ https://drafts.csswg.org/css-anchor-position-1/#typedef-anchor-element 1 - <anchor-element> -value +type css-anchor-position-1 css-anchor-position 1 -current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-anchor-element +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-anchor-element 1 1 -anchor-scroll - <anchor-side> type @@ -179,6 +189,16 @@ https://drafts.csswg.org/css-anchor-position-1/#typedef-anchor-side 1 1 - +<anchor-side> +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-anchor-side +1 +1 +- <anchor-size> type css-anchor-position-1 @@ -187,6 +207,36 @@ css-anchor-position current https://drafts.csswg.org/css-anchor-position-1/#typedef-anchor-size 1 +1 +- +<anchor-size> +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-anchor-size +1 +1 +- +<and/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_and + +1 +- +<and/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_and + 1 - <angle-percentage> @@ -261,15 +311,24 @@ https://drafts.csswg.org/css-values-4/#angle-value 1 - <angle> -value -css-images-3 -css-images -3 +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#value-def-angle +1 +1 +- +<angle> +dfn +css2 +css +1 snapshot -https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle +https://www.w3.org/TR/CSS21/aural.html#value-def-angle 1 1 -image-orientation - <angle> value @@ -380,26 +439,6 @@ css-will-change snapshot https://www.w3.org/TR/css-will-change-1/#typedef-animateable-feature 1 -1 -- -<annotation-xml> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-annotation-xml - -1 -- -<annotation> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-annotation - 1 - <antecedent> @@ -432,6 +471,28 @@ https://www.w3.org/TR/css-syntax-3/#typedef-any-value 1 1 - +@annotation +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-annotation +1 +1 +@font-feature-values +- +@annotation +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-annotation +1 +1 +@font-feature-values +- ANY_TYPE const dom @@ -768,6 +829,16 @@ https://drafts.csswg.org/web-animations-2/#animationnodelist 1 1 - +AnimationNodeList +interface +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#animationnodelist +1 +1 +- AnimationPlayState enum web-animations-1 @@ -818,6 +889,16 @@ https://www.w3.org/TR/web-animations-1/#animationplaybackevent 1 1 - +AnimationPlaybackEvent +interface +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#animationplaybackevent +1 +1 +- AnimationPlaybackEvent(type) constructor web-animations-1 @@ -851,6 +932,17 @@ https://www.w3.org/TR/web-animations-1/#dom-animationplaybackevent-animationplay 1 AnimationPlaybackEvent - +AnimationPlaybackEvent(type) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-animationplaybackevent +1 +1 +AnimationPlaybackEvent +- AnimationPlaybackEvent(type, eventInitDict) constructor web-animations-1 @@ -884,6 +976,17 @@ https://www.w3.org/TR/web-animations-1/#dom-animationplaybackevent-animationplay 1 AnimationPlaybackEvent - +AnimationPlaybackEvent(type, eventInitDict) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-animationplaybackevent +1 +1 +AnimationPlaybackEvent +- AnimationPlaybackEventInit dictionary web-animations-1 @@ -914,6 +1017,16 @@ https://www.w3.org/TR/web-animations-1/#dictdef-animationplaybackeventinit 1 1 - +AnimationPlaybackEventInit +dictionary +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dictdef-animationplaybackeventinit +1 +1 +- AnimationReplaceState enum web-animations-1 @@ -934,6 +1047,16 @@ https://www.w3.org/TR/web-animations-1/#enumdef-animationreplacestate 1 1 - +AnimationTimeOptions +dictionary +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#dictdef-animationtimeoptions +1 +1 +- AnimationTimeline interface web-animations-1 @@ -994,6 +1117,50 @@ https://www.w3.org/TR/css-animation-worklet-1/#callbackdef-animatorinstanceconst 1 1 - +[[AnticipatedConcurrentIncomingBidirectionalStreams]] +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams-slot +1 +1 +WebTransport +- +[[AnticipatedConcurrentIncomingBidirectionalStreams]] +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams-slot +1 +1 +WebTransport +- +[[AnticipatedConcurrentIncomingUnidirectionalStreams]] +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams-slot +1 +1 +WebTransport +- +[[AnticipatedConcurrentIncomingUnidirectionalStreams]] +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams-slot +1 +1 +WebTransport +- [[angle]] attribute screen-orientation @@ -1086,6 +1253,16 @@ gamepad current https://w3c.github.io/gamepad/#dfn-a-new-gamepad +1 +- +a new gamepad +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-a-new-gamepad + 1 - a new gamepad @@ -1100,11 +1277,21 @@ https://www.w3.org/TR/gamepad/#dfn-a-new-gamepad - a new gamepadhapticactuator dfn -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-a-new-gamepadhapticactuator +https://w3c.github.io/gamepad/#dfn-constructing-a-gamepadhapticactuator + +1 +- +a new gamepadhapticactuator +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-constructing-a-gamepadhapticactuator 1 - @@ -1114,7 +1301,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-a-new-geolocationposition +https://w3c.github.io/geolocation/#dfn-a-new-geolocationposition 1 - @@ -1136,16 +1323,6 @@ webidl current https://webidl.spec.whatwg.org/#a-new-promise 1 -1 -- -an early error result -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#an-early-error-result - 1 - an end time @@ -1238,6 +1415,16 @@ https://drafts.csswg.org/css-color-4/#analogous-components 1 1 - +analogous components +dfn +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#analogous-components +1 +1 +- analysernode interface webaudio @@ -1287,6 +1474,26 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#ancestor-browsing-context +1 +- +ancestor +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#ancestor +1 +1 +- +ancestor +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#ancestor +1 1 - ancestor details revealing algorithm @@ -1495,13 +1702,33 @@ https://drafts.csswg.org/css-anchor-position-1/#anchor-element 1 - -anchor function +anchor element +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#anchor-element + +1 +- +anchor functions dfn css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#anchor-function +https://drafts.csswg.org/css-anchor-position-1/#anchor-functions +1 +1 +- +anchor functions +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#anchor-functions 1 1 - @@ -1513,6 +1740,16 @@ css-anchor-position current https://drafts.csswg.org/css-anchor-position-1/#anchor-name +1 +- +anchor name +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#anchor-name + 1 - anchor node @@ -1555,16 +1792,6 @@ css-scroll-anchoring snapshot https://www.w3.org/TR/css-scroll-anchoring-1/#anchoring-algorithm -1 -- -anchor point -dfn -motion-1 -motion -1 -current -https://drafts.fxtf.org/motion-1/#anchor-point - 1 - anchor point @@ -1577,13 +1804,43 @@ https://www.w3.org/TR/motion-1/#anchor-point 1 - -anchor query +anchor positioning dfn css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#anchor-query +https://drafts.csswg.org/css-anchor-position-1/#anchor-positioning +1 +1 +- +anchor positioning +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#anchor-positioning +1 +1 +- +anchor specifier +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#anchor-specifier + +1 +- +anchor specifier +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#anchor-specifier 1 - @@ -1648,6 +1905,16 @@ https://drafts.csswg.org/css-anchor-position-1/#funcdef-anchor 1 1 - +anchor() +function +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#funcdef-anchor +1 +1 +- anchor(name) method ecmascript @@ -1659,15 +1926,33 @@ https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browser 1 String - -anchor-default -property +anchor-center +value css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-default +https://drafts.csswg.org/css-anchor-position-1/#valdef-justify-self-anchor-center +1 +1 +justify-self +align-self +justify-items +align-items +- +anchor-center +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-justify-self-anchor-center 1 1 +justify-self +align-self +justify-items +align-items - anchor-name property @@ -1679,13 +1964,33 @@ https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-name 1 1 - -anchor-scroll +anchor-name +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-anchor-name +1 +1 +- +anchor-scope property css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-scroll +https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-scope +1 +1 +- +anchor-scope +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-anchor-scope 1 1 - @@ -1699,6 +2004,16 @@ https://drafts.csswg.org/css-anchor-position-1/#funcdef-anchor-size 1 1 - +anchor-size() +function +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#funcdef-anchor-size +1 +1 +- anchorNode attribute selection-api @@ -1775,13 +2090,45 @@ https://immersive-web.github.io/anchors/#anchors 1 - +anchors-valid +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-anchors-valid +1 +1 +position-visibility +- +anchors-visible +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-anchors-visible +1 +1 +position-visibility +- ancillary chunk dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-ancillary-chunk +https://w3c.github.io/png/#3ancillaryChunk + +1 +- +ancillary chunk +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3ancillaryChunk 1 - @@ -1882,17 +2229,6 @@ https://www.w3.org/TR/webauthn-3/#android-key-attestation-certificate-extension- 1 - -androidversion -dfn -compat -compat -1 -current -https://compat.spec.whatwg.org/#chrome-androidversion - -1 -chrome -- angle dict-member css-typed-om-1 @@ -1941,11 +2277,11 @@ CSSRotate/constructor(x, y, z, angle) - angle value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-corner-shape-angle +https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle 1 1 corner-shape @@ -2025,17 +2361,6 @@ https://www.w3.org/TR/SVG2/coords.html#__svg__SVGTransform__angle SVGTransform - angle -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-angle -1 -1 -CSSNumericBaseType -- -angle dict-member css-typed-om-1 css-typed-om @@ -2067,6 +2392,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate-angle-angle 1 1 CSSRotate/CSSRotate(angle) +CSSRotate/constructor(angle) - angle argument @@ -2078,6 +2404,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate-x-y-z-angle-angle 1 1 CSSRotate/CSSRotate(x, y, z, angle) +CSSRotate/constructor(x, y, z, angle) - angle argument @@ -2586,11 +2913,21 @@ ImageTrack - animated image dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-animated-image +https://w3c.github.io/png/#dfn-animated-image + +1 +- +animated image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-animated-image 1 - @@ -2612,6 +2949,26 @@ svg-integration snapshot https://www.w3.org/TR/svg-integration/#animated-image-document-mode 1 +1 +- +animated png +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-animated-png + +1 +- +animated png +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-animated-png + 1 - animatedInstanceRoot @@ -2729,6 +3086,17 @@ https://www.w3.org/TR/web-animations-1/#concept-animation 1 1 - +animation +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effectcallback-animation +1 +1 +EffectCallback +- animation addition attributes dfn svg-animations @@ -2757,6 +3125,26 @@ css-animation-worklet snapshot https://www.w3.org/TR/css-animation-worklet-1/#animation-animator-name +1 +- +animation attachment range +dfn +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#animation-attachment-range +1 +1 +- +animation attachment range +dfn +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#animation-attachment-range +1 1 - animation class @@ -2847,6 +3235,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#animation-effect-start-time +1 +- +animation effect start time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#animation-effect-start-time + 1 - animation element @@ -2959,6 +3357,16 @@ webxr snapshot https://www.w3.org/TR/webxr/#animation-frame-callback-identifier +1 +- +animation model +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#animation-model-dfn + 1 - animation origin @@ -3181,13 +3589,13 @@ https://drafts.csswg.org/css-animations-2/#propdef-animation-composition 1 1 - -animation-delay +animation-composition property -css-animations-1 +css-animations-2 css-animations -1 -current -https://drafts.csswg.org/css-animations-1/#propdef-animation-delay +2 +snapshot +https://www.w3.org/TR/css-animations-2/#propdef-animation-composition 1 1 - @@ -3196,38 +3604,18 @@ property css-animations-1 css-animations 1 -snapshot -https://www.w3.org/TR/css-animations-1/#propdef-animation-delay +current +https://drafts.csswg.org/css-animations-1/#propdef-animation-delay 1 1 - animation-delay property -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#propdef-animation-delay -1 -1 -- -animation-delay-end -property -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#propdef-animation-delay-end -1 -1 -- -animation-delay-start -property -scroll-animations-1 -scroll-animations +css-animations-1 +css-animations 1 snapshot -https://www.w3.org/TR/scroll-animations-1/#propdef-animation-delay-start +https://www.w3.org/TR/css-animations-1/#propdef-animation-delay 1 1 - @@ -3263,6 +3651,16 @@ https://drafts.csswg.org/css-animations-1/#propdef-animation-duration - animation-duration property +css-animations-2 +css-animations +2 +current +https://drafts.csswg.org/css-animations-2/#propdef-animation-duration +1 +1 +- +animation-duration +property css-animations-1 css-animations 1 @@ -3271,6 +3669,16 @@ https://www.w3.org/TR/css-animations-1/#propdef-animation-duration 1 1 - +animation-duration +property +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#propdef-animation-duration +1 +1 +- animation-fill-mode property css-animations-1 @@ -3381,6 +3789,16 @@ https://drafts.csswg.org/scroll-animations-1/#propdef-animation-range-end 1 1 - +animation-range-end +property +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#propdef-animation-range-end +1 +1 +- animation-range-start property scroll-animations-1 @@ -3391,6 +3809,16 @@ https://drafts.csswg.org/scroll-animations-1/#propdef-animation-range-start 1 1 - +animation-range-start +property +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#propdef-animation-range-start +1 +1 +- animation-tainted dfn css-variables-1 @@ -3431,6 +3859,16 @@ https://drafts.csswg.org/css-animations-2/#propdef-animation-timeline 1 1 - +animation-timeline +property +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#propdef-animation-timeline +1 +1 +- animation-timing-function property css-animations-1 @@ -3475,6 +3913,9 @@ https://www.w3.org/TR/css-animations-1/#dom-animationevent-animationevent-type-a 1 1 AnimationEvent/AnimationEvent(type, animationEventInitDict) +AnimationEvent/constructor(type, animationEventInitDict) +AnimationEvent/AnimationEvent(type) +AnimationEvent/constructor(type) - animationName attribute @@ -3531,6 +3972,17 @@ https://www.w3.org/TR/css-animations-1/#dom-animationeventinit-animationname 1 AnimationEventInit - +animationName +attribute +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#dom-cssanimation-animationname +1 +1 +CSSAnimation +- animationWorklet attribute css-animation-worklet-1 @@ -3570,10 +4022,10 @@ css-animations-1 css-animations 1 snapshot -https://www.w3.org/TR/css-animations-1/#eventdef-animationevent-animationcancel +https://www.w3.org/TR/css-animations-1/#eventdef-globaleventhandlers-animationcancel 1 1 -animationevent +GlobalEventHandlers - animationend event @@ -3592,20 +4044,10 @@ css-animations-1 css-animations 1 snapshot -https://www.w3.org/TR/css-animations-1/#eventdef-animationevent-animationend -1 -1 -animationevent -- -animationevent() -function -css-animations-1 -css-animations -1 -snapshot -https://www.w3.org/TR/css-animations-1/#funcdef-animationevent +https://www.w3.org/TR/css-animations-1/#eventdef-globaleventhandlers-animationend 1 1 +GlobalEventHandlers - animationframe dfn @@ -3646,10 +4088,10 @@ css-animations-1 css-animations 1 snapshot -https://www.w3.org/TR/css-animations-1/#eventdef-animationevent-animationiteration +https://www.w3.org/TR/css-animations-1/#eventdef-globaleventhandlers-animationiteration 1 1 -animationevent +GlobalEventHandlers - animationstart event @@ -3668,10 +4110,10 @@ css-animations-1 css-animations 1 snapshot -https://www.w3.org/TR/css-animations-1/#eventdef-animationevent-animationstart +https://www.w3.org/TR/css-animations-1/#eventdef-globaleventhandlers-animationstart 1 1 -animationevent +GlobalEventHandlers - animator dfn @@ -3963,10 +4405,10 @@ webcodecs-hevc-codec-registration webcodecs-hevc-codec-registration 1 current -https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-avcbitstreamformat-annexb +https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-hevcbitstreamformat-annexb 1 1 -AvcBitstreamFormat +HevcBitstreamFormat - annexb enum-value @@ -3985,10 +4427,10 @@ webcodecs-hevc-codec-registration webcodecs-hevc-codec-registration 1 snapshot -https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-avcbitstreamformat-annexb +https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-hevcbitstreamformat-annexb 1 1 -AvcBitstreamFormat +HevcBitstreamFormat - anniversary dfn @@ -3998,6 +4440,26 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-anniversary +1 +- +annotated asset id +dfn +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#annotated-asset-id + +1 +- +annotated location +dfn +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#annotated-location + 1 - annotated types @@ -4082,6 +4544,16 @@ https://www.w3.org/TR/css-ruby-1/#ruby-annotation-box 1 1 - +annotation +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-annotation +1 +1 +- annotation box dfn css-ruby-1 @@ -4121,6 +4593,26 @@ snapshot https://www.w3.org/TR/css-ruby-1/#annotation-level 1 +- +annotation syntax +dfn +rdf12-turtle +rdf-turtle +1 +current +https://w3c.github.io/rdf-turtle/spec/#dfn-annotation-syntax + + +- +annotation syntax +dfn +rdf12-turtle +rdf-turtle +1 +snapshot +https://www.w3.org/TR/rdf12-turtle/#dfn-annotation-syntax + + - annotation(<feature-value-name>) value @@ -4143,6 +4635,26 @@ https://www.w3.org/TR/css-fonts-4/#annotation 1 1 font-variant-alternates +- +annotation-syntax +dfn +rdf12-turtle +rdf-turtle +1 +current +https://w3c.github.io/rdf-turtle/spec/#dfn-annotation-syntax + + +- +annotation-syntax +dfn +rdf12-turtle +rdf-turtle +1 +snapshot +https://www.w3.org/TR/rdf12-turtle/#dfn-annotation-syntax + + - annotation-xml element @@ -4154,14 +4666,24 @@ https://w3c.github.io/mathml-core/#dfn-annotation-xml 1 1 - -announce an rtcdatachannel as open -dfn +annotation-xml +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-annotation-xml +1 +1 +- +announce an RTCDataChannel as open +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#announce-datachannel-open - +1 1 - announce an rtcdatachannel as open @@ -4185,13 +4707,13 @@ https://html.spec.whatwg.org/multipage/server-sent-events.html#announce-the-conn 1 - announce the rtcdatachannel as open -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#announce-datachannel-open - +1 1 - announce the rtcdatachannel as open @@ -4289,6 +4811,17 @@ https://drafts.csswg.org/css-display-4/#anonymous CSS - anonymous +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-anonymous +1 +1 +<request-url-modifier> +- +anonymous dfn css22 css @@ -4325,6 +4858,26 @@ script/crossorigin - anonymous dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x9 +1 +1 +- +anonymous +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x9 +1 +1 +- +anonymous +dfn css-display-3 css-display 3 @@ -4342,6 +4895,16 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-anonymous-mrow-box +1 +- +anonymous <mrow> box +dfn +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-anonymous-mrow-box + 1 - anonymous box @@ -4387,6 +4950,16 @@ https://www.w3.org/TR/css-display-3/#anonymous 1 CSS - +anonymous box +dfn +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-anonymous-box + +1 +- anonymous button content box dfn html @@ -4415,6 +4988,26 @@ css current https://drafts.csswg.org/css2/#anonymous-inline-boxes +1 +- +anonymous inline boxes +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x14 +1 +1 +- +anonymous inline boxes +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x14 +1 1 - anonymous-client-ip @@ -4450,6 +5043,28 @@ https://www.w3.org/TR/webrtc/#dom-rtcsdptype-answer 1 RTCSdpType - +answerToReset +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstatus-answertoreset +1 +1 +SmartCardConnectionStatus +- +answerToReset +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateout-answertoreset +1 +1 +SmartCardReaderStateOut +- answerer's system state dfn webrtc @@ -4514,6 +5129,94 @@ https://www.w3.org/TR/webxr/#dom-xrwebgllayerinit-antialias 1 XRWebGLLayerInit - +anticipatedConcurrentIncomingBidirectionalStreams +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams +1 +1 +WebTransport +- +anticipatedConcurrentIncomingBidirectionalStreams +dict-member +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportoptions-anticipatedconcurrentincomingbidirectionalstreams +1 +1 +WebTransportOptions +- +anticipatedConcurrentIncomingBidirectionalStreams +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams +1 +1 +WebTransport +- +anticipatedConcurrentIncomingBidirectionalStreams +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportoptions-anticipatedconcurrentincomingbidirectionalstreams +1 +1 +WebTransportOptions +- +anticipatedConcurrentIncomingUnidirectionalStreams +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams +1 +1 +WebTransport +- +anticipatedConcurrentIncomingUnidirectionalStreams +dict-member +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportoptions-anticipatedconcurrentincomingunidirectionalstreams +1 +1 +WebTransportOptions +- +anticipatedConcurrentIncomingUnidirectionalStreams +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams +1 +1 +WebTransport +- +anticipatedConcurrentIncomingUnidirectionalStreams +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportoptions-anticipatedconcurrentincomingunidirectionalstreams +1 +1 +WebTransportOptions +- anticipatedRemoval attribute deprecation-reporting @@ -4556,6 +5259,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-antiquewhite 1 1 <color> +<named-color> - antiquewhite dfn @@ -4577,6 +5281,18 @@ https://www.w3.org/TR/css-color-4/#valdef-color-antiquewhite 1 1 <color> +<named-color> +- +any +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-calc-size-any +1 +1 +calc-size() - any dfn @@ -4693,6 +5409,39 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.a 1 Promise - +any(signals) +method +dom +dom +1 +current +https://dom.spec.whatwg.org/#dom-abortsignal-any +1 +1 +AbortSignal +- +any(signals) +method +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#dom-tasksignal-any +1 +1 +TaskSignal +- +any(signals, init) +method +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#dom-tasksignal-any +1 +1 +TaskSignal +- any-hover descriptor mediaqueries-4 @@ -4789,6 +5538,16 @@ rdf-xml current https://w3c.github.io/rdf-xml/spec/#dfn-anystring +1 +- +anystring +dfn +rdf12-xml +rdf-xml +1 +snapshot +https://www.w3.org/TR/rdf12-xml/#dfn-anystring + 1 - anyuri @@ -4799,6 +5558,16 @@ rdf-xml current https://w3c.github.io/rdf-xml/spec/#dfn-anyuri +1 +- +anyuri +dfn +rdf12-xml +rdf-xml +1 +snapshot +https://www.w3.org/TR/rdf12-xml/#dfn-anyuri + 1 - anywhere diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ap.data b/bikeshed/spec-data/readonly/anchors/anchors-ap.data index e8cd79a7f3..ca1b2cd44b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ap.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ap.data @@ -1,3 +1,43 @@ +<apply> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_apply + +1 +- +<apply> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_apply + +1 +- +<approx/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_approx + +1 +- +<approx/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_approx + +1 +- AppBannerPromptOutcome enum manifest-incubations @@ -28,7 +68,97 @@ https://www.w3.org/TR/media-source-2/#dom-appendmode 1 1 - -ApplyStringOrNumericBinaryOperator(lval, opText, rval) +Apply brotli patch +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-apply-brotli-patch +1 +1 +- +Apply brotli patch +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-apply-brotli-patch +1 +1 +- +Apply glyph keyed patch +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-apply-glyph-keyed-patch +1 +1 +- +Apply glyph keyed patch +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-apply-glyph-keyed-patch +1 +1 +- +Apply per table brotli patch +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-apply-per-table-brotli-patch +1 +1 +- +Apply per table brotli patch +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-apply-per-table-brotli-patch +1 +1 +- +ApplyConstraints algorithm +abstract-op +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dfn-applyconstraints-algorithm +1 +1 +- +ApplyConstraints algorithm +abstract-op +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dfn-applyconstraints-algorithm +1 +1 +- +ApplyStringOrNumericBinaryOperator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-applystringornumericbinaryoperator +1 +1 +- +ApplyStringOrNumericBinaryOperator(lVal, opText, rVal) abstract-op ecmascript ecmascript @@ -120,6 +250,17 @@ https://webidl.spec.whatwg.org/#a-promise-resolved-with 1 1 - +api +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-api + +1 +aggregatable report +- api base url dfn html @@ -131,16 +272,15 @@ https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url 1 environment settings object - -api url character encoding +api url parser dfn -html -html +url +url 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding -1 +https://url.spec.whatwg.org/#api-url-parser + 1 -environment settings object - api value dfn @@ -152,14 +292,34 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept- 1 - -apng +app-assisted individualization dfn -png-spec -png-spec -1 +encrypted-media-2 +encrypted-media +2 current -https://w3c.github.io/PNG-spec/#dfn-apng +https://w3c.github.io/encrypted-media/#dfn-app-assisted-individualization +1 +- +app-assisted individualization +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-app-assisted-individualization + +1 +- +app-region +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-app-region +1 1 - appCodeName @@ -361,17 +521,6 @@ https://infra.spec.whatwg.org/#set-append 1 set - -append -dfn -prefetch -prefetch -1 -current -https://wicg.github.io/nav-speculation/prefetch.html#redirect-chain-append - -1 -redirect chain -- append a request `origin` header dfn fetch @@ -392,23 +541,13 @@ https://dom.spec.whatwg.org/#concept-element-attributes-append 1 1 - -append an attribute +append an entry to the contribution cache dfn -trusted-types -trusted-types +private-aggregation-api +private-aggregation-api 1 current -https://w3c.github.io/trusted-types/dist/spec/#concept-element-attributes-append -1 -1 -- -append an attribute -dfn -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#concept-element-attributes-append +https://patcg-individual-drafts.github.io/private-aggregation-api/#append-an-entry-to-the-contribution-cache 1 1 - @@ -440,6 +579,56 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#dfn-append-error 1 +1 +- +append or modify a request `sec-browsing-topics` header +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#append-or-modify-a-request-sec-browsing-topics-header + +1 +- +append or modify a sec-shared-storage-writable request header +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#append-or-modify-a-sec-shared-storage-writable-request-header + +1 +- +append private state token issue request headers +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#append-private-state-token-issue-request-headers + +1 +- +append private state token redemption record headers +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#append-private-state-token-redemption-record-headers + +1 +- +append private state token redemption request headers +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#append-private-state-token-redemption-request-headers + 1 - append session history synchronous navigation steps @@ -480,6 +669,16 @@ fetch-metadata snapshot https://www.w3.org/TR/fetch-metadata/#abstract-opdef-append-the-fetch-metadata-headers-for-a-request 1 +1 +- +append to a bidding signals per-interest group data map +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#append-to-a-bidding-signals-per-interest-group-data-map + 1 - append to an event path @@ -498,9 +697,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#append-window - +https://w3c.github.io/media-source/#dfn-append-window +1 - append window dfn @@ -508,9 +707,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#append-window - +https://www.w3.org/TR/media-source-2/#dfn-append-window +1 - append() method @@ -534,6 +733,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-append 1 GroupEffect - +append() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-append +1 +1 +GroupEffect +- append(...effects) method web-animations-2 @@ -545,6 +755,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-append 1 GroupEffect - +append(...effects) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-append +1 +1 +GroupEffect +- append(...nodes) method dom @@ -556,6 +777,17 @@ https://dom.spec.whatwg.org/#dom-parentnode-append 1 ParentNode - +append(key, value) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-append +1 +1 +SharedStorage +- append(name, blobValue) method xhr @@ -622,6 +854,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-append 1 StylePropertyMap - +append(property) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-append +1 +1 +StylePropertyMap +- append(property, ...values) method css-typed-om-1 @@ -798,6 +1041,17 @@ https://www.w3.org/TR/media-source-2/#dom-sourcebuffer-appendwindowstart 1 SourceBuffer - +appended by soft navigation +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#node-appended-by-soft-navigation + +1 +node +- appid dfn webauthn-3 @@ -1035,19 +1289,8 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-applicable-specification -1 -1 -- -applicable to types -dfn -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#extended-attributes-applicable-to-types 1 -extended attributes - applicable to types dfn @@ -1057,17 +1300,6 @@ webidl current https://webidl.spec.whatwg.org/#extended-attributes-applicable-to-types -1 -extended attributes -- -applicable to types -dfn -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#extended-attributes-applicable-to-types - 1 extended attributes - @@ -1091,6 +1323,50 @@ https://www.w3.org/TR/screen-wake-lock/#dfn-applicable-wake-lock 1 - +application +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_application + +1 +intent +- +application +dict-member +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusencoderconfig-application +1 +1 +OpusEncoderConfig +- +application +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent_application + +1 +intent +- +application +dict-member +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusencoderconfig-application +1 +1 +OpusEncoderConfig +- application context dfn appmanifest @@ -1117,7 +1393,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn-application-internal-identifier +https://w3c.github.io/i18n-glossary/#dfn-application-internal-identifiers 1 - @@ -1127,7 +1403,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-application-internal-identifier +https://www.w3.org/TR/i18n-glossary/#dfn-application-internal-identifiers 1 - @@ -1258,7 +1534,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#application/atom+xml +https://html.spec.whatwg.org/multipage/indices.html#application%2Fatom%2Bxml 1 - @@ -1268,7 +1544,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#application/json +https://html.spec.whatwg.org/multipage/indices.html#application%2Fjson 1 - @@ -1298,7 +1574,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/iana.html#application/microdata+json +https://html.spec.whatwg.org/multipage/iana.html#application%2Fmicrodata%2Bjson 1 - @@ -1308,7 +1584,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#application/rss+xml +https://html.spec.whatwg.org/multipage/indices.html#application%2Frss%2Bxml 1 - @@ -1321,16 +1597,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-application-tracking-status-json -- -application/tracking-status+json -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-application-tracking-status-json - -1 - application/x-www-form-urlencoded attr-value @@ -1370,7 +1636,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/iana.html#application/xhtml+xml +https://html.spec.whatwg.org/multipage/iana.html#application%2Fxhtml%2Bxml 1 - @@ -1380,7 +1646,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#application/xml +https://html.spec.whatwg.org/multipage/indices.html#application%2Fxml 1 - @@ -1448,6 +1714,28 @@ https://www.w3.org/TR/appmanifest/#dfn-applied 1 1 - +appliedentriesbitmap +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-appliedentriesbitmap + +1 +Format 1 Patch Map +- +appliedentriesbitmap +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-appliedentriesbitmap + +1 +Format 1 Patch Map +- applies to dfn css-cascade-3 @@ -1516,6 +1804,36 @@ mst-content-hint snapshot https://www.w3.org/TR/mst-content-hint/#dfn-apply-a-default +1 +- +apply a position option +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#apply-a-position-option + +1 +- +apply a position option +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#apply-a-position-option + +1 +- +apply any component ads target to a bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#apply-any-component-ads-target-to-a-bid + 1 - apply any pending playback rate @@ -1582,6 +1900,16 @@ https://www.w3.org/TR/webxr-gamepads-module-1/#xrframe-apply-gamepad-frame-updat 1 XRFrame - +apply interest groups limits to prioritized list +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#apply-interest-groups-limits-to-prioritized-list + +1 +- apply link options from parsed header attributes dfn html @@ -1612,13 +1940,53 @@ https://www.w3.org/TR/screen-orientation/#dfn-apply-orientation-lock 1 - -apply pending history changes +apply rappor noise dfn -html -html +turtledove +turtledove 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-pending-history-changes +https://wicg.github.io/turtledove/#apply-rappor-noise + +1 +- +apply request modifiers from url value +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#apply-request-modifiers-from-url-value +1 +1 +- +apply scroll margin to a scrollport +dfn +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#apply-scroll-margin-to-a-scrollport + +1 +- +apply scroll margin to a scrollport +dfn +intersection-observer +intersection-observer +1 +snapshot +https://www.w3.org/TR/intersection-observer/#apply-scroll-margin-to-a-scrollport + +1 +- +apply source location +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#apply-source-location 1 - @@ -1689,6 +2057,36 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#apply-the-percent-hint +1 +1 +- +apply the push/replace history step +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-the-push%2Freplace-history-step + +1 +- +apply the reload history step +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-the-reload-history-step + +1 +- +apply the traverse history step +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-the-traverse-history-step 1 - @@ -1886,26 +2284,6 @@ https://www.w3.org/TR/mediacapture-streams/#dom-mediastreamtrack-applyconstraint 1 MediaStreamTrack - -applyconstraints algorithm -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#dfn-applyconstraints-algorithm -1 -1 -- -applyconstraints algorithm -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#dfn-applyconstraints-algorithm -1 -1 -- applyconstraints template method dfn mediacapture-streams @@ -1984,6 +2362,16 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#fourier-transform +1 +- +applying the restriction transformation +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-applying-the-restriction-transformation + 1 - appropriate end tag token @@ -2004,6 +2392,17 @@ credential-management current https://w3c.github.io/webappsec-credential-management/#credential-type-registry-appropriate-interface-object +1 +credential type registry +- +appropriate interface object +dfn +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#credential-type-registry-appropriate-interface-object + 1 credential type registry - @@ -2059,14 +2458,16 @@ https://drafts.csswg.org/css-color-3/#appworkspace 1 - appworkspace -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#appworkspace - +https://drafts.csswg.org/css-color-4/#valdef-color-appworkspace +1 1 +<color> +<deprecated-color> - appworkspace dfn @@ -2079,12 +2480,14 @@ https://www.w3.org/TR/css-color-3/#appworkspace 1 - appworkspace -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#appworkspace - +https://www.w3.org/TR/css-color-4/#valdef-color-appworkspace +1 1 +<color> +<deprecated-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-aq.data b/bikeshed/spec-data/readonly/anchors/anchors-aq.data index 71235f3e04..50df668305 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-aq.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-aq.data @@ -18,6 +18,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-aqua 1 1 <color> +<named-color> - aqua value @@ -50,6 +51,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-aqua 1 1 <color> +<named-color> - aquamarine dfn @@ -71,6 +73,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-aquamarine 1 1 <color> +<named-color> - aquamarine dfn @@ -92,4 +95,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-aquamarine 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ar.data b/bikeshed/spec-data/readonly/anchors/anchors-ar.data index 621fac0184..13224176f4 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ar.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ar.data @@ -99,7 +99,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%arrayiteratorprototype%-object +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25arrayiteratorprototype%25-object 1 1 - @@ -136,6 +136,266 @@ https://drafts.csswg.org/css-shapes-2/#typedef-shape-arc-sweep 1 shape() - +<arccos/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccos + +1 +- +<arccos/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccos + +1 +- +<arccosh/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccosh + +1 +- +<arccosh/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccosh + +1 +- +<arccot/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccot + +1 +- +<arccot/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccot + +1 +- +<arccoth/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccoth + +1 +- +<arccoth/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccoth + +1 +- +<arccsc/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccsc + +1 +- +<arccsc/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccsc + +1 +- +<arccsch/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccsch + +1 +- +<arccsch/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccsch + +1 +- +<arcsec/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsec + +1 +- +<arcsec/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsec + +1 +- +<arcsech/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsech + +1 +- +<arcsech/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsech + +1 +- +<arcsin/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsin + +1 +- +<arcsin/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsin + +1 +- +<arcsinh/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsinh + +1 +- +<arcsinh/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsinh + +1 +- +<arctan/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arctan + +1 +- +<arctan/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arctan + +1 +- +<arctanh/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arctanh + +1 +- +<arctanh/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arctanh + +1 +- +<arg/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arg + +1 +- +<arg/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arg + +1 +- ARIAMixin interface wai-aria-1.2 @@ -148,6 +408,16 @@ https://w3c.github.io/aria/#dom-ariamixin - ARIAMixin interface +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin +1 +1 +- +ARIAMixin +interface wai-aria-1.2 wai-aria 1 @@ -156,6 +426,16 @@ https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin 1 1 - +ARIAMixin +interface +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin +1 +1 +- Array interface ecmascript @@ -177,6 +457,17 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array 1 Array - +Array.prototype %Symbol.iterator% () +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-%25symbol.iterator%25 +1 +1 +Array.prototype [ %Symbol.iterator% ] ( ) +- ArrayBuffer interface ecmascript @@ -197,7 +488,7 @@ https://webidl.spec.whatwg.org/#idl-ArrayBuffer 1 1 - -ArrayBuffer(length) +ArrayBuffer(length, options) constructor ecmascript ecmascript @@ -208,6 +499,46 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer-length 1 ArrayBuffer - +ArrayBufferByteLength +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybufferbytelength +1 +1 +- +ArrayBufferByteLength(arrayBuffer, order) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybufferbytelength +1 +1 +- +ArrayBufferCopyAndDetach +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffercopyanddetach +1 +1 +- +ArrayBufferCopyAndDetach(arrayBuffer, newLength, preserveResizability) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffercopyanddetach +1 +1 +- ArrayBufferView typedef webidl @@ -218,6 +549,16 @@ https://webidl.spec.whatwg.org/#ArrayBufferView 1 1 - +ArrayCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-arraycreate +1 +1 +- ArrayCreate(length, proto) abstract-op ecmascript @@ -228,6 +569,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +ArraySetLength +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-arraysetlength +1 +1 +- ArraySetLength(A, Desc) abstract-op ecmascript @@ -238,6 +589,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +ArraySpeciesCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-arrayspeciescreate +1 +1 +- ArraySpeciesCreate(originalArray, length) abstract-op ecmascript @@ -322,6 +683,26 @@ https://www.w3.org/TR/css-counter-styles-3/#valdef-counter-style-name-arabic-ind 1 <counter-style-name> - +arbitrary substitution +dfn +css-variables-1 +css-variables +1 +current +https://drafts.csswg.org/css-variables-1/#substitute-a-var +1 +1 +- +arbitrary substitution function +dfn +css-variables-1 +css-variables +1 +current +https://drafts.csswg.org/css-variables-1/#arbitrary-substitution-function + +1 +- arc value css-shapes-2 @@ -579,6 +960,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssmathinvert-cssmathinvert-arg-arg 1 1 CSSMathInvert/CSSMathInvert(arg) +CSSMathInvert/constructor(arg) - arg argument @@ -590,6 +972,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssmathnegate-cssmathnegate-arg-arg 1 1 CSSMathNegate/CSSMathNegate(arg) +CSSMathNegate/constructor(arg) - arg argument @@ -602,36 +985,156 @@ https://www.w3.org/TR/cssom-view-1/#dom-element-scrollintoview-arg-arg 1 Element/scrollIntoView(arg) - -arg_i -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#arg_i - -1 -- -arg_i -dfn -wgsl -wgsl +arg +element-attr +mathml-core +mathml-core 1 snapshot -https://www.w3.org/TR/WGSL/#arg_i - +https://www.w3.org/TR/mathml-core/#dfn-arg +1 1 - -args -argument -css-typed-om-1 -css-typed-om +argMax(input, axis) +method +webnn +webnn 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathmax-cssmathmax-args-args +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmax 1 1 -CSSMathMax/CSSMathMax(...args) +MLGraphBuilder +- +argMax(input, axis) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmax +1 +1 +MLGraphBuilder +- +argMax(input, axis, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmax +1 +1 +MLGraphBuilder +- +argMax(input, axis, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmax +1 +1 +MLGraphBuilder +- +argMin(input, axis) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmin +1 +1 +MLGraphBuilder +- +argMin(input, axis) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin +1 +1 +MLGraphBuilder +- +argMin(input, axis, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmin +1 +1 +MLGraphBuilder +- +argMin(input, axis, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin +1 +1 +MLGraphBuilder +- +arg_i +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#arg_i + +1 +- +arg_i +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#arg_i + +1 +- +argminmax-op +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-argminmax-op + +1 +MLGraphBuilder +- +argminmax-op +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-argminmax-op + +1 +MLGraphBuilder +- +args +argument +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathmax-cssmathmax-args-args +1 +1 +CSSMathMax/CSSMathMax(...args) CSSMathMax/constructor(...args) CSSMathMax/CSSMathMax() CSSMathMax/constructor() @@ -710,7 +1213,10 @@ snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmax-cssmathmax-args-args 1 1 -CSSMathMax/CSSMathMax(args) +CSSMathMax/CSSMathMax(...args) +CSSMathMax/constructor(...args) +CSSMathMax/CSSMathMax() +CSSMathMax/constructor() - args argument @@ -721,7 +1227,10 @@ snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmin-cssmathmin-args-args 1 1 -CSSMathMin/CSSMathMin(args) +CSSMathMin/CSSMathMin(...args) +CSSMathMin/constructor(...args) +CSSMathMin/CSSMathMin() +CSSMathMin/constructor() - args argument @@ -732,7 +1241,10 @@ snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssmathproduct-cssmathproduct-args-args 1 1 -CSSMathProduct/CSSMathProduct(args) +CSSMathProduct/CSSMathProduct(...args) +CSSMathProduct/constructor(...args) +CSSMathProduct/CSSMathProduct() +CSSMathProduct/constructor() - args argument @@ -743,7 +1255,10 @@ snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssmathsum-cssmathsum-args-args 1 1 -CSSMathSum/CSSMathSum(args) +CSSMathSum/CSSMathSum(...args) +CSSMathSum/constructor(...args) +CSSMathSum/CSSMathSum() +CSSMathSum/constructor() - argument_expression_list dfn @@ -1001,904 +1516,2004 @@ https://w3c.github.io/aria/#dom-ariamixin-ariaactivedescendantelement 1 ARIAMixin - -ariaAtomic +ariaActiveDescendantElement attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaatomic +https://w3c.github.io/aria/#dom-ariamixin-ariaactivedescendantelement 1 1 ARIAMixin - -ariaAtomic +ariaActiveDescendantElement attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaatomic +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaactivedescendantelement 1 1 ARIAMixin - -ariaAutoComplete +ariaAtomic attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaautocomplete +https://w3c.github.io/aria/#dom-ariamixin-ariaatomic 1 1 ARIAMixin - -ariaAutoComplete +ariaAtomic attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaautocomplete +current +https://w3c.github.io/aria/#dom-ariamixin-ariaatomic 1 1 ARIAMixin - -ariaBusy +ariaAtomic attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariabusy +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaatomic 1 1 ARIAMixin - -ariaBusy +ariaAtomic attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariabusy +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaatomic 1 1 ARIAMixin - -ariaChecked +ariaAutoComplete attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariachecked +https://w3c.github.io/aria/#dom-ariamixin-ariaautocomplete 1 1 ARIAMixin - -ariaChecked +ariaAutoComplete attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariachecked +current +https://w3c.github.io/aria/#dom-ariamixin-ariaautocomplete 1 1 ARIAMixin - -ariaColCount +ariaAutoComplete attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariacolcount +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaautocomplete 1 1 ARIAMixin - -ariaColCount +ariaAutoComplete attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacolcount +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaautocomplete 1 1 ARIAMixin - -ariaColIndex +ariaBrailleLabel attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariacolindex +https://w3c.github.io/aria/#dom-ariamixin-ariabraillelabel 1 1 ARIAMixin - -ariaColIndex +ariaBrailleLabel attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacolindex +current +https://w3c.github.io/aria/#dom-ariamixin-ariabraillelabel 1 1 ARIAMixin - -ariaColIndexText +ariaBrailleRoleDescription attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariacolindextext +https://w3c.github.io/aria/#dom-ariamixin-ariabrailleroledescription 1 1 ARIAMixin - -ariaColSpan +ariaBrailleRoleDescription attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariacolspan +https://w3c.github.io/aria/#dom-ariamixin-ariabrailleroledescription 1 1 ARIAMixin - -ariaColSpan +ariaBusy attribute wai-aria-1.2 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacolspan +current +https://w3c.github.io/aria/#dom-ariamixin-ariabusy 1 1 ARIAMixin - -ariaControlsElements +ariaBusy attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariacontrolselements +https://w3c.github.io/aria/#dom-ariamixin-ariabusy 1 1 ARIAMixin - -ariaCurrent +ariaBusy attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariacurrent +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariabusy 1 1 ARIAMixin - -ariaCurrent +ariaBusy attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacurrent +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariabusy 1 1 ARIAMixin - -ariaDescribedByElements +ariaChecked attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariadescribedbyelements +https://w3c.github.io/aria/#dom-ariamixin-ariachecked 1 1 ARIAMixin - -ariaDescription +ariaChecked attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariadescription +https://w3c.github.io/aria/#dom-ariamixin-ariachecked 1 1 ARIAMixin - -ariaDetailsElements +ariaChecked attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariadetailselements +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariachecked 1 1 ARIAMixin - -ariaDisabled +ariaChecked attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariadisabled +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariachecked 1 1 ARIAMixin - -ariaDisabled +ariaColCount attribute wai-aria-1.2 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariadisabled +current +https://w3c.github.io/aria/#dom-ariamixin-ariacolcount 1 1 ARIAMixin - -ariaErrorMessageElements +ariaColCount attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaerrormessageelements +https://w3c.github.io/aria/#dom-ariamixin-ariacolcount 1 1 ARIAMixin - -ariaExpanded +ariaColCount attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariaexpanded +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacolcount 1 1 ARIAMixin - -ariaExpanded +ariaColCount attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaexpanded +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariacolcount 1 1 ARIAMixin - -ariaFlowToElements +ariaColIndex attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaflowtoelements +https://w3c.github.io/aria/#dom-ariamixin-ariacolindex 1 1 ARIAMixin - -ariaHasPopup +ariaColIndex attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariahaspopup +https://w3c.github.io/aria/#dom-ariamixin-ariacolindex 1 1 ARIAMixin - -ariaHasPopup +ariaColIndex attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariahaspopup +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacolindex 1 1 ARIAMixin - -ariaHidden +ariaColIndex attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariahidden +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariacolindex 1 1 ARIAMixin - -ariaHidden +ariaColIndexText attribute wai-aria-1.2 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariahidden +current +https://w3c.github.io/aria/#dom-ariamixin-ariacolindextext 1 1 ARIAMixin - -ariaInvalid +ariaColIndexText attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariainvalid +https://w3c.github.io/aria/#dom-ariamixin-ariacolindextext 1 1 ARIAMixin - -ariaInvalid +ariaColIndexText attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariainvalid +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariacolindextext 1 1 ARIAMixin - -ariaKeyShortcuts +ariaColSpan attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariakeyshortcuts +https://w3c.github.io/aria/#dom-ariamixin-ariacolspan 1 1 ARIAMixin - -ariaKeyShortcuts +ariaColSpan +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariacolspan +1 +1 +ARIAMixin +- +ariaColSpan attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariakeyshortcuts +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacolspan 1 1 ARIAMixin - -ariaLabel +ariaColSpan +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariacolspan +1 +1 +ARIAMixin +- +ariaControlsElements attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-arialabel +https://w3c.github.io/aria/#dom-ariamixin-ariacontrolselements 1 1 ARIAMixin - -ariaLabel +ariaControlsElements attribute -wai-aria-1.2 +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariacontrolselements +1 +1 +ARIAMixin +- +ariaControlsElements +attribute +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-arialabel +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariacontrolselements 1 1 ARIAMixin - -ariaLabelledByElements +ariaCurrent attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-arialabelledbyelements +https://w3c.github.io/aria/#dom-ariamixin-ariacurrent 1 1 ARIAMixin - -ariaLevel +ariaCurrent attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-arialevel +https://w3c.github.io/aria/#dom-ariamixin-ariacurrent 1 1 ARIAMixin - -ariaLevel +ariaCurrent attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-arialevel +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariacurrent 1 1 ARIAMixin - -ariaLive +ariaCurrent +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariacurrent +1 +1 +ARIAMixin +- +ariaDescribedByElements attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-arialive +https://w3c.github.io/aria/#dom-ariamixin-ariadescribedbyelements 1 1 ARIAMixin - -ariaLive +ariaDescribedByElements attribute -wai-aria-1.2 +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariadescribedbyelements +1 +1 +ARIAMixin +- +ariaDescribedByElements +attribute +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-arialive +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariadescribedbyelements 1 1 ARIAMixin - -ariaModal +ariaDescription attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariamodal +https://w3c.github.io/aria/#dom-ariamixin-ariadescription 1 1 ARIAMixin - -ariaModal +ariaDescription attribute -wai-aria-1.2 +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariadescription +1 +1 +ARIAMixin +- +ariaDescription +attribute +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariamodal +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariadescription 1 1 ARIAMixin - -ariaMultiLine +ariaDetailsElements attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariamultiline +https://w3c.github.io/aria/#dom-ariamixin-ariadetailselements 1 1 ARIAMixin - -ariaMultiLine +ariaDetailsElements attribute -wai-aria-1.2 +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariadetailselements +1 +1 +ARIAMixin +- +ariaDetailsElements +attribute +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariamultiline +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariadetailselements 1 1 ARIAMixin - -ariaMultiSelectable +ariaDisabled attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariamultiselectable +https://w3c.github.io/aria/#dom-ariamixin-ariadisabled 1 1 ARIAMixin - -ariaMultiSelectable +ariaDisabled +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariadisabled +1 +1 +ARIAMixin +- +ariaDisabled attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariamultiselectable +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariadisabled 1 1 ARIAMixin - -ariaOrientation +ariaDisabled +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariadisabled +1 +1 +ARIAMixin +- +ariaErrorMessageElements attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaorientation +https://w3c.github.io/aria/#dom-ariamixin-ariaerrormessageelements 1 1 ARIAMixin - -ariaOrientation +ariaErrorMessageElements attribute -wai-aria-1.2 +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaerrormessageelements +1 +1 +ARIAMixin +- +ariaErrorMessageElements +attribute +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaorientation +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaerrormessageelements 1 1 ARIAMixin - -ariaOwnsElements +ariaExpanded attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaownselements +https://w3c.github.io/aria/#dom-ariamixin-ariaexpanded 1 1 ARIAMixin - -ariaPlaceholder +ariaExpanded attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaplaceholder +https://w3c.github.io/aria/#dom-ariamixin-ariaexpanded 1 1 ARIAMixin - -ariaPlaceholder +ariaExpanded attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaplaceholder +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaexpanded 1 1 ARIAMixin - -ariaPosInSet +ariaExpanded +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaexpanded +1 +1 +ARIAMixin +- +ariaFlowToElements attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaposinset +https://w3c.github.io/aria/#dom-ariamixin-ariaflowtoelements 1 1 ARIAMixin - -ariaPosInSet +ariaFlowToElements attribute -wai-aria-1.2 +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaflowtoelements +1 +1 +ARIAMixin +- +ariaFlowToElements +attribute +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaposinset +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaflowtoelements 1 1 ARIAMixin - -ariaPressed +ariaHasPopup attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariapressed +https://w3c.github.io/aria/#dom-ariamixin-ariahaspopup 1 1 ARIAMixin - -ariaPressed +ariaHasPopup +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariahaspopup +1 +1 +ARIAMixin +- +ariaHasPopup attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariapressed +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariahaspopup 1 1 ARIAMixin - -ariaReadOnly +ariaHasPopup +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariahaspopup +1 +1 +ARIAMixin +- +ariaHidden attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariareadonly +https://w3c.github.io/aria/#dom-ariamixin-ariahidden 1 1 ARIAMixin - -ariaReadOnly +ariaHidden +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariahidden +1 +1 +ARIAMixin +- +ariaHidden +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariahidden +1 +1 +ARIAMixin +- +ariaHidden +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariahidden +1 +1 +ARIAMixin +- +ariaInvalid +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariainvalid +1 +1 +ARIAMixin +- +ariaInvalid +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariainvalid +1 +1 +ARIAMixin +- +ariaInvalid +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariainvalid +1 +1 +ARIAMixin +- +ariaInvalid +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariainvalid +1 +1 +ARIAMixin +- +ariaKeyShortcuts +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariakeyshortcuts +1 +1 +ARIAMixin +- +ariaKeyShortcuts +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariakeyshortcuts +1 +1 +ARIAMixin +- +ariaKeyShortcuts +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariakeyshortcuts +1 +1 +ARIAMixin +- +ariaKeyShortcuts +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariakeyshortcuts +1 +1 +ARIAMixin +- +ariaLabel +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialabel +1 +1 +ARIAMixin +- +ariaLabel +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialabel +1 +1 +ARIAMixin +- +ariaLabel +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-arialabel +1 +1 +ARIAMixin +- +ariaLabel +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-arialabel +1 +1 +ARIAMixin +- +ariaLabelledByElements +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialabelledbyelements +1 +1 +ARIAMixin +- +ariaLabelledByElements +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialabelledbyelements +1 +1 +ARIAMixin +- +ariaLabelledByElements +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-arialabelledbyelements +1 +1 +ARIAMixin +- +ariaLevel +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialevel +1 +1 +ARIAMixin +- +ariaLevel +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialevel +1 +1 +ARIAMixin +- +ariaLevel +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-arialevel +1 +1 +ARIAMixin +- +ariaLevel +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-arialevel +1 +1 +ARIAMixin +- +ariaLive +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialive +1 +1 +ARIAMixin +- +ariaLive +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-arialive +1 +1 +ARIAMixin +- +ariaLive +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-arialive +1 +1 +ARIAMixin +- +ariaLive +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-arialive +1 +1 +ARIAMixin +- +ariaModal +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariamodal +1 +1 +ARIAMixin +- +ariaModal +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariamodal +1 +1 +ARIAMixin +- +ariaModal +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariamodal +1 +1 +ARIAMixin +- +ariaModal +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariamodal +1 +1 +ARIAMixin +- +ariaMultiLine +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariamultiline +1 +1 +ARIAMixin +- +ariaMultiLine +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariamultiline +1 +1 +ARIAMixin +- +ariaMultiLine +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariamultiline +1 +1 +ARIAMixin +- +ariaMultiLine +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariamultiline +1 +1 +ARIAMixin +- +ariaMultiSelectable +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariamultiselectable +1 +1 +ARIAMixin +- +ariaMultiSelectable +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariamultiselectable +1 +1 +ARIAMixin +- +ariaMultiSelectable +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariamultiselectable +1 +1 +ARIAMixin +- +ariaMultiSelectable +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariamultiselectable +1 +1 +ARIAMixin +- +ariaOrientation +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaorientation +1 +1 +ARIAMixin +- +ariaOrientation +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaorientation +1 +1 +ARIAMixin +- +ariaOrientation +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaorientation +1 +1 +ARIAMixin +- +ariaOrientation +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaorientation +1 +1 +ARIAMixin +- +ariaOwnsElements +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaownselements +1 +1 +ARIAMixin +- +ariaOwnsElements +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaownselements +1 +1 +ARIAMixin +- +ariaOwnsElements +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaownselements +1 +1 +ARIAMixin +- +ariaPlaceholder +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaplaceholder +1 +1 +ARIAMixin +- +ariaPlaceholder +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaplaceholder +1 +1 +ARIAMixin +- +ariaPlaceholder +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaplaceholder +1 +1 +ARIAMixin +- +ariaPlaceholder +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaplaceholder +1 +1 +ARIAMixin +- +ariaPosInSet +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaposinset +1 +1 +ARIAMixin +- +ariaPosInSet +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaposinset +1 +1 +ARIAMixin +- +ariaPosInSet +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaposinset +1 +1 +ARIAMixin +- +ariaPosInSet +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaposinset +1 +1 +ARIAMixin +- +ariaPressed +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariapressed +1 +1 +ARIAMixin +- +ariaPressed +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariapressed +1 +1 +ARIAMixin +- +ariaPressed +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariapressed +1 +1 +ARIAMixin +- +ariaPressed +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariapressed +1 +1 +ARIAMixin +- +ariaReadOnly +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariareadonly +1 +1 +ARIAMixin +- +ariaReadOnly +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariareadonly +1 +1 +ARIAMixin +- +ariaReadOnly +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariareadonly +1 +1 +ARIAMixin +- +ariaReadOnly +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariareadonly +1 +1 +ARIAMixin +- +ariaRequired +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarequired +1 +1 +ARIAMixin +- +ariaRequired +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarequired +1 +1 +ARIAMixin +- +ariaRequired +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarequired +1 +1 +ARIAMixin +- +ariaRequired +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariarequired +1 +1 +ARIAMixin +- +ariaRoleDescription +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaroledescription +1 +1 +ARIAMixin +- +ariaRoleDescription +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaroledescription +1 +1 +ARIAMixin +- +ariaRoleDescription +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaroledescription +1 +1 +ARIAMixin +- +ariaRoleDescription +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaroledescription +1 +1 +ARIAMixin +- +ariaRowCount +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowcount +1 +1 +ARIAMixin +- +ariaRowCount +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowcount +1 +1 +ARIAMixin +- +ariaRowCount +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarowcount +1 +1 +ARIAMixin +- +ariaRowCount +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariarowcount +1 +1 +ARIAMixin +- +ariaRowIndex +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowindex +1 +1 +ARIAMixin +- +ariaRowIndex +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowindex +1 +1 +ARIAMixin +- +ariaRowIndex +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarowindex +1 +1 +ARIAMixin +- +ariaRowIndex +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariarowindex +1 +1 +ARIAMixin +- +ariaRowIndexText +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowindextext +1 +1 +ARIAMixin +- +ariaRowIndexText +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowindextext +1 +1 +ARIAMixin +- +ariaRowIndexText +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariarowindextext +1 +1 +ARIAMixin +- +ariaRowSpan +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowspan +1 +1 +ARIAMixin +- +ariaRowSpan +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariarowspan +1 +1 +ARIAMixin +- +ariaRowSpan +attribute +wai-aria-1.2 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarowspan +1 +1 +ARIAMixin +- +ariaRowSpan +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariarowspan +1 +1 +ARIAMixin +- +ariaSelected +attribute +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaselected +1 +1 +ARIAMixin +- +ariaSelected +attribute +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dom-ariamixin-ariaselected +1 +1 +ARIAMixin +- +ariaSelected attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariareadonly +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaselected 1 1 ARIAMixin - -ariaRequired +ariaSelected attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariarequired +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariaselected 1 1 ARIAMixin - -ariaRequired +ariaSetSize attribute wai-aria-1.2 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarequired +current +https://w3c.github.io/aria/#dom-ariamixin-ariasetsize 1 1 ARIAMixin - -ariaRoleDescription +ariaSetSize attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariaroledescription +https://w3c.github.io/aria/#dom-ariamixin-ariasetsize 1 1 ARIAMixin - -ariaRoleDescription +ariaSetSize attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaroledescription +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariasetsize 1 1 ARIAMixin - -ariaRowCount +ariaSetSize attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariarowcount +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariasetsize 1 1 ARIAMixin - -ariaRowCount +ariaSort attribute wai-aria-1.2 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarowcount +current +https://w3c.github.io/aria/#dom-ariamixin-ariasort 1 1 ARIAMixin - -ariaRowIndex +ariaSort attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariarowindex +https://w3c.github.io/aria/#dom-ariamixin-ariasort 1 1 ARIAMixin - -ariaRowIndex +ariaSort attribute wai-aria-1.2 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarowindex +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariasort 1 1 ARIAMixin - -ariaRowIndexText +ariaSort attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariarowindextext +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariasort 1 1 ARIAMixin - -ariaRowSpan +ariaValueMax attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariarowspan +https://w3c.github.io/aria/#dom-ariamixin-ariavaluemax 1 1 ARIAMixin - -ariaRowSpan +ariaValueMax attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariarowspan +current +https://w3c.github.io/aria/#dom-ariamixin-ariavaluemax 1 1 ARIAMixin - -ariaSelected +ariaValueMax attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariaselected +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluemax 1 1 ARIAMixin - -ariaSelected +ariaValueMax attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariaselected +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariavaluemax 1 1 ARIAMixin - -ariaSetSize +ariaValueMin attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariasetsize +https://w3c.github.io/aria/#dom-ariamixin-ariavaluemin 1 1 ARIAMixin - -ariaSetSize +ariaValueMin attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariasetsize +current +https://w3c.github.io/aria/#dom-ariamixin-ariavaluemin 1 1 ARIAMixin - -ariaSort +ariaValueMin attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariasort +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluemin 1 1 ARIAMixin - -ariaSort +ariaValueMin attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariasort +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariavaluemin 1 1 ARIAMixin - -ariaValueMax +ariaValueNow attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariavaluemax +https://w3c.github.io/aria/#dom-ariamixin-ariavaluenow 1 1 ARIAMixin - -ariaValueMax +ariaValueNow attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluemax +current +https://w3c.github.io/aria/#dom-ariamixin-ariavaluenow 1 1 ARIAMixin - -ariaValueMin +ariaValueNow attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariavaluemin +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluenow 1 1 ARIAMixin - -ariaValueMin +ariaValueNow attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluemin +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariavaluenow 1 1 ARIAMixin - -ariaValueNow +ariaValueText attribute wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dom-ariamixin-ariavaluenow +https://w3c.github.io/aria/#dom-ariamixin-ariavaluetext 1 1 ARIAMixin - -ariaValueNow +ariaValueText attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluenow +current +https://w3c.github.io/aria/#dom-ariamixin-ariavaluetext 1 1 ARIAMixin @@ -1908,19 +3523,19 @@ attribute wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dom-ariamixin-ariavaluetext +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluetext 1 1 ARIAMixin - ariaValueText attribute -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-ariavaluetext +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-ariavaluetext 1 1 ARIAMixin @@ -1930,18 +3545,18 @@ dfn wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dfn-ariamixin-getter-steps +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dfn-ariamixin-getter-steps 1 - ariamixin getter steps dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dfn-ariamixin-getter-steps +https://www.w3.org/TR/wai-aria-1.3/#dfn-ariamixin-getter-steps 1 - @@ -1950,18 +3565,18 @@ dfn wai-aria-1.2 wai-aria 1 -current -https://w3c.github.io/aria/#dfn-ariamixin-setter-steps +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dfn-ariamixin-setter-steps 1 - ariamixin setter steps dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dfn-ariamixin-setter-steps +https://www.w3.org/TR/wai-aria-1.3/#dfn-ariamixin-setter-steps 1 - @@ -2011,6 +3626,26 @@ list-style-type - armenian value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-armenian +1 +1 +- +armenian +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-armenian +1 +1 +- +armenian +value css-counter-styles-3 css-counter-styles 3 @@ -2031,17 +3666,6 @@ https://gpuweb.github.io/gpuweb/wgsl/#array 1 - array -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-array - -1 -syntax_kw -- -array argument webaudio webaudio @@ -2140,17 +3764,6 @@ https://www.w3.org/TR/WGSL/#array 1 - array -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-array - -1 -syntax_kw -- -array argument webaudio webaudio @@ -2348,9 +3961,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#array-size +https://gpuweb.github.io/gpuweb/wgsl/#texture-array-size 1 +texture - array size dfn @@ -2358,9 +3972,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#array-size +https://www.w3.org/TR/WGSL/#texture-array-size 1 +texture - array-like object dfn @@ -2571,28 +4186,6 @@ https://www.w3.org/TR/webgpu/#dom-gpuvertexbufferlayout-arraystride 1 GPUVertexBufferLayout - -array_type_specifier -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-array_type_specifier - -1 -syntax -- -array_type_specifier -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-array_type_specifier - -1 -syntax -- arraybuffer dfn webcryptoapi @@ -2600,7 +4193,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ArrayBuffer -1 + 1 - arraybufferview @@ -2610,38 +4203,30 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ArrayBufferView -1 + 1 - -arrayed texture +arrayed dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#arrayed-texture +https://gpuweb.github.io/gpuweb/wgsl/#texture-arrayed 1 +texture - -arrayed texture +arrayed dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#arrayed-texture - -1 -- -arrayof -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#arrayof +https://www.w3.org/TR/WGSL/#texture-arrayed 1 +texture - arrow dfn @@ -2777,6 +4362,28 @@ mediasession mediasession 1 current +https://w3c.github.io/mediasession/#dom-chapterinformation-artwork +1 +1 +ChapterInformation +- +artwork +dict-member +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-chapterinformationinit-artwork +1 +1 +ChapterInformationInit +- +artwork +attribute +mediasession +mediasession +1 +current https://w3c.github.io/mediasession/#dom-mediametadata-artwork 1 1 @@ -2799,6 +4406,28 @@ mediasession mediasession 1 snapshot +https://www.w3.org/TR/mediasession/#dom-chapterinformation-artwork +1 +1 +ChapterInformation +- +artwork +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-chapterinformationinit-artwork +1 +1 +ChapterInformationInit +- +artwork +attribute +mediasession +mediasession +1 +snapshot https://www.w3.org/TR/mediasession/#dom-mediametadata-artwork 1 1 @@ -2821,6 +4450,17 @@ mediasession mediasession 1 current +https://w3c.github.io/mediasession/#chapterinformation-artwork-images + +1 +ChapterInformation +- +artwork images +dfn +mediasession +mediasession +1 +current https://w3c.github.io/mediasession/#mediametadata-artwork-images 1 @@ -2832,6 +4472,17 @@ mediasession mediasession 1 snapshot +https://www.w3.org/TR/mediasession/#chapterinformation-artwork-images + +1 +ChapterInformation +- +artwork images +dfn +mediasession +mediasession +1 +snapshot https://www.w3.org/TR/mediasession/#mediametadata-artwork-images 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-as.data b/bikeshed/spec-data/readonly/anchors/anchors-as.data index 2e5c6c2932..4864b37dff 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-as.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-as.data @@ -620,7 +620,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%asyncfromsynciteratorprototype%-object +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25asyncfromsynciteratorprototype%25-object 1 1 - @@ -674,23 +674,56 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-propertie 1 1 - -%AsyncIteratorPrototype% +%AsyncGeneratorPrototype% interface ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asynciteratorprototype +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-asyncgenerator-prototype +1 +1 +- +%AsyncGeneratorPrototype%.next(value) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-next 1 1 +%AsyncGeneratorPrototype%.next ( value ) - -@@asyncIterator -const +%AsyncGeneratorPrototype%.return(value) +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-return +1 +1 +%AsyncGeneratorPrototype%.return ( value ) +- +%AsyncGeneratorPrototype%.throw(exception) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-throw +1 +1 +%AsyncGeneratorPrototype%.throw ( exception ) +- +%AsyncIteratorPrototype% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asynciteratorprototype 1 1 - @@ -704,6 +737,16 @@ https://html.spec.whatwg.org/multipage/scripting.html#assignednodesoptions 1 1 - +AsyncBlockStart +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncblockstart +1 +1 +- AsyncBlockStart(promiseCapability, asyncBody, asyncContext) abstract-op ecmascript @@ -714,6 +757,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncbloc 1 1 - +AsyncFromSyncIteratorContinuation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncfromsynciteratorcontinuation +1 +1 +- AsyncFromSyncIteratorContinuation(result, promiseCapability) abstract-op ecmascript @@ -745,6 +798,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-fun 1 AsyncFunction - +AsyncFunctionStart +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-functions-abstract-operations-async-function-start +1 +1 +- AsyncFunctionStart(promiseCapability, asyncFunctionBody) abstract-op ecmascript @@ -765,6 +828,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorAwaitReturn +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorawaitreturn +1 +1 +- AsyncGeneratorAwaitReturn(generator) abstract-op ecmascript @@ -775,6 +848,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorCompleteStep +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorcompletestep +1 +1 +- AsyncGeneratorCompleteStep(generator, completion, done, realm) abstract-op ecmascript @@ -785,6 +868,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorDrainQueue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratordrainqueue +1 +1 +- AsyncGeneratorDrainQueue(generator) abstract-op ecmascript @@ -795,6 +888,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorEnqueue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorenqueue +1 +1 +- AsyncGeneratorEnqueue(generator, completion, promiseCapability) abstract-op ecmascript @@ -826,6 +929,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 AsyncGeneratorFunction - +AsyncGeneratorResume +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorresume +1 +1 +- AsyncGeneratorResume(generator, completion) abstract-op ecmascript @@ -836,6 +949,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorStart +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorstart +1 +1 +- AsyncGeneratorStart(generator, generatorBody) abstract-op ecmascript @@ -846,6 +969,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorUnwrapYieldResumption +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorunwrapyieldresumption +1 +1 +- AsyncGeneratorUnwrapYieldResumption(resumptionValue) abstract-op ecmascript @@ -856,6 +989,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorValidate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorvalidate +1 +1 +- AsyncGeneratorValidate(generator, generatorBrand) abstract-op ecmascript @@ -866,6 +1009,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncGeneratorYield +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratoryield +1 +1 +- AsyncGeneratorYield(value) abstract-op ecmascript @@ -876,6 +1029,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgene 1 1 - +AsyncIteratorClose +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-asynciteratorclose +1 +1 +- AsyncIteratorClose(iteratorRecord, completion) abstract-op ecmascript @@ -886,6 +1049,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-asynciteratorclos 1 1 - +AsyncModuleExecutionFulfilled +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-async-module-execution-fulfilled +1 +1 +- AsyncModuleExecutionFulfilled(module) abstract-op ecmascript @@ -896,6 +1069,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +AsyncModuleExecutionRejected +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-async-module-execution-rejected +1 +1 +- AsyncModuleExecutionRejected(module, error) abstract-op ecmascript @@ -924,8 +1107,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-associatedmediastreamids + 1 -1 +RTCRtpSender - [[AssociatedRemoteMediaStreams]] attribute @@ -945,8 +1129,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-associatedremotemediastreams + 1 -1 +RTCRtpReceiver - [[associatedProperty]] attribute @@ -1117,6 +1302,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-ascent-override @font-face - ascent-override +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-ascent-override +1 +1 +CSSFontFaceDescriptors +- +ascent-override descriptor css-fonts-5 css-fonts @@ -1171,6 +1367,39 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-ascentoverr 1 FontFaceDescriptors - +ascentOverride +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-ascentoverride +1 +1 +CSSFontFaceDescriptors +- +ascentOverride +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-ascentoverride +1 +1 +FontFace +- +ascentOverride +dict-member +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacedescriptors-ascentoverride +1 +1 +FontFaceDescriptors +- ascii alpha dfn infra @@ -1217,7 +1446,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_ascii_case-insensitive +https://w3c.github.io/i18n-glossary/#dfn-ascii-case-insensitive 1 - @@ -1238,7 +1467,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#case-insensitive -1 + 1 - ascii case-insensitive @@ -1247,7 +1476,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_ascii_case-insensitive +https://www.w3.org/TR/i18n-glossary/#dfn-ascii-case-insensitive 1 - @@ -1257,7 +1486,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_ascii_case-insensitive +https://w3c.github.io/i18n-glossary/#dfn-ascii-case-insensitive 1 - @@ -1267,7 +1496,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_ascii_case-insensitive +https://www.w3.org/TR/i18n-glossary/#dfn-ascii-case-insensitive 1 - @@ -1631,11 +1860,11 @@ font-size-adjust - aspect-ratio descriptor -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#descdef-container-aspect-ratio +https://drafts.csswg.org/css-conditional-5/#descdef-container-aspect-ratio 1 1 @container @@ -1674,6 +1903,17 @@ https://drafts.csswg.org/mediaqueries-5/#descdef-media-aspect-ratio - aspect-ratio descriptor +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#descdef-container-aspect-ratio +1 +1 +@container +- +aspect-ratio +descriptor css-contain-3 css-contain 3 @@ -1927,16 +2167,6 @@ screen-capture snapshot https://www.w3.org/TR/screen-capture/#dfn-aspectratio 1 -1 -- -aspectratio -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-aspectratio - 1 - aspects @@ -2064,6 +2294,46 @@ https://console.spec.whatwg.org/#assert 1 console - +asserted +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-asserted-triple + +1 +- +asserted +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-asserted-triple + +1 +- +asserted triple +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-asserted-triple + +1 +- +asserted triple +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-asserted-triple + +1 +- assertion dfn webauthn-3 @@ -2131,12 +2401,22 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#assertioncreationdata-assertionattestation +snapshot +https://www.w3.org/TR/webauthn-3/#assertioncreationdata-assertionattestation 1 assertionCreationData - +assertionmethod +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-assertionmethod + +1 +- assign a slot dfn dom @@ -2381,6 +2661,26 @@ https://www.w3.org/TR/WGSL/#recursive-descent-syntax-assignment_statement-01 1 recursive descent syntax +- +assistive technologies +dfn +accname-1.2 +accname +1 +current +https://w3c.github.io/accname/#dfn-assistive-technologies + + +- +assistive technologies +dfn +accname-1.2 +accname +1 +current +https://w3c.github.io/accname/#dfn-assistive-technologies + + - assistive technologies dfn @@ -2394,13 +2694,13 @@ https://w3c.github.io/aria/#dfn-assistive-technologies - assistive technologies dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-assistive-technology - +https://w3c.github.io/aria/#dfn-assistive-technologies 1 + - assistive technologies dfn @@ -2418,9 +2718,19 @@ accname-1.2 accname 1 snapshot -https://www.w3.org/TR/accname-1.2/#dfn-assistive-technology +https://www.w3.org/TR/accname-1.2/#dfn-assistive-technologies + +- +assistive technologies +dfn +accname-1.2 +accname 1 +snapshot +https://www.w3.org/TR/accname-1.2/#dfn-assistive-technologies + + - assistive technologies dfn @@ -2461,16 +2771,26 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-assistive-technology +- +assistive technologies +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-assistive-technologies +1 + - assistive technology dfn -mathml-aam -mathml-aam +accname-1.2 +accname 1 current -https://w3c.github.io/mathml-aam/#dfn-assistive-technology +https://w3c.github.io/accname/#dfn-assistive-technologies + -1 - assistive technology dfn @@ -2488,9 +2808,9 @@ accname-1.2 accname 1 snapshot -https://www.w3.org/TR/accname-1.2/#dfn-assistive-technology +https://www.w3.org/TR/accname-1.2/#dfn-assistive-technologies + -1 - assistive technology dfn @@ -2534,61 +2854,81 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-assistive-technology - associable dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#associable +https://w3c.github.io/encrypted-media/#dfn-associable 1 - associable dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#associable +https://www.w3.org/TR/encrypted-media-2/#dfn-associable 1 - associable by an entity dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#associable-by-entity +https://w3c.github.io/encrypted-media/#dfn-associable-by-an-entity 1 - associable by an entity dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#associable-by-entity +https://www.w3.org/TR/encrypted-media-2/#dfn-associable-by-an-entity 1 - associable by the application dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#associable-by-application +https://w3c.github.io/encrypted-media/#dfn-associable-by-the-application 1 - associable by the application dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-associable-by-the-application + +1 +- +associable value +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-associable + 1 +- +associable value +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#associable-by-application +https://www.w3.org/TR/encrypted-media-2/#dfn-associable 1 - @@ -2610,6 +2950,16 @@ css-animation-worklet snapshot https://www.w3.org/TR/css-animation-worklet-1/#associate-animator-instance-of-worklet-animation +1 +- +associate the issuer +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#associate-the-issuer + 1 - associated @@ -2642,33 +2992,45 @@ https://www.w3.org/TR/webrtc/#dfn-associated 1 - -associated animation of an animation effect +associated animation dfn web-animations-1 web-animations 1 current -https://drafts.csswg.org/web-animations-1/#associated-animation-of-an-animation-effect +https://drafts.csswg.org/web-animations-1/#animation-effect-associated-animation 1 +animation effect - -associated animation of an animation effect +associated animation dfn web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#associated-animation-of-an-animation-effect +https://www.w3.org/TR/web-animations-1/#animation-effect-associated-animation 1 +animation effect - associated background image requests dfn -element-timing -element-timing +paint-timing +paint-timing 1 current -https://wicg.github.io/element-timing/#associated-background-image-requests +https://w3c.github.io/paint-timing/#associated-background-image-requests + +1 +- +associated background image requests +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#associated-background-image-requests 1 - @@ -2845,6 +3207,16 @@ html current https://html.spec.whatwg.org/multipage/dom.html#concept-domstringmap-element +1 +- +associated element +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-associated-element + 1 - associated event @@ -2853,7 +3225,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#performanceeventtiming-associated-event +https://w3c.github.io/event-timing/#performanceeventtiming-associated-event PerformanceEventTiming @@ -2881,11 +3253,21 @@ https://html.spec.whatwg.org/multipage/interaction.html#associated-focus-navigat - associated image request dfn -element-timing -element-timing +paint-timing +paint-timing 1 current -https://wicg.github.io/element-timing/#associated-image-request +https://w3c.github.io/paint-timing/#associated-image-request + +1 +- +associated image request +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#associated-image-request 1 - @@ -2917,6 +3299,26 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#associated-interface +1 +- +associated mediadevices +dfn +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dfn-associated-mediadevices + +1 +- +associated mediadevices +dfn +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dfn-associated-mediadevices + 1 - associated navigator @@ -2989,6 +3391,28 @@ https://www.w3.org/TR/webaudio/#associated-option-object 1 - +associated pressure source +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-associated-pressure-source + +1 +platform collector +- +associated pressure source +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-associated-pressure-source + +1 +platform collector +- associated realm dfn webidl @@ -3017,26 +3441,6 @@ screen-orientation snapshot https://www.w3.org/TR/screen-orientation/#dfn-associated-screenorientation -1 -- -associated sensors -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#associated-sensors -1 -1 -- -associated sensors -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#associated-sensors -1 1 - associated session @@ -3057,6 +3461,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-associated-session +1 +- +associated storage partition +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#associated-storage-partition + 1 - associated store @@ -3101,6 +3515,27 @@ https://www.w3.org/TR/webaudio/#baseaudiocontext-associated-task-queue 1 BaseAudioContext - +associated url pattern +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#urlpattern-associated-url-pattern + +1 +URLPattern +- +associated user context +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#associated-user-context +1 +1 +- associated useractivation dfn html @@ -3139,16 +3574,6 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#associated-with-a-timeline -1 -- -associated with an animation -dfn -web-animations-1 -web-animations -1 -current -https://drafts.csswg.org/web-animations-1/#associated-with-an-animation - 1 - associated with an animation @@ -3169,6 +3594,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#associated-with-an-animation +1 +- +associated with an animation +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#associated-with-an-animation + 1 - associated with connection @@ -3187,30 +3622,32 @@ first-party-sets first-party-sets 1 current -https://wicg.github.io/first-party-sets/#first-party-set-associatedsites +https://wicg.github.io/first-party-sets/#related-website-set-associatedsites 1 -first-party set +related website set - association steps -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#association-steps - +https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-rtcrtptransform-association-steps +1 1 +RTCRtpTransform - association steps -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#association-steps - +https://www.w3.org/TR/webrtc-encoded-transform/#abstract-opdef-rtcrtptransform-association-steps 1 +1 +RTCRtpTransform - asterisk dfn @@ -3218,7 +3655,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-type-asterisk +https://urlpattern.spec.whatwg.org/#token-type-asterisk 1 token/type @@ -3299,27 +3736,27 @@ https://www.w3.org/TR/webgpu/#async-pipeline-creation 1 - -asyncIterator -attribute -ecmascript -ecmascript +asyncIterable +argument +streams +streams 1 current -https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.asynciterator +https://streams.spec.whatwg.org/#dom-readablestream-from-asynciterable-asynciterable 1 1 -Symbol +ReadableStream/from(asyncIterable) - -asyncgenerator prototype object -dfn +asyncIterator +attribute ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-asyncgenerator-prototype +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.asynciterator 1 1 -ECMAScript +Symbol - asyncgeneratorrequest dfn @@ -3353,6 +3790,17 @@ https://webidl.spec.whatwg.org/#asynchronous-iterator-initialization-steps 1 1 - +asynchronous iterator initialization steps +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageiterator-asynchronous-iterator-initialization-steps + +1 +SharedStorageIterator +- asynchronous iterator prototype object dfn webidl @@ -3451,6 +3899,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#asynchronously-execute-a-request +1 +- +asynchronously finish reporting +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#asynchronously-finish-reporting + 1 - asynchronously instantiate a webassembly module diff --git a/bikeshed/spec-data/readonly/anchors/anchors-at.data b/bikeshed/spec-data/readonly/anchors/anchors-at.data index b00c17c22c..0d85660f9e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-at.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-at.data @@ -40,16 +40,6 @@ https://drafts.csswg.org/selectors-nonelement-1/#selectordef-attr 1 1 - -::attr() -selector -selectors-nonelement-1 -selectors-nonelement -1 -snapshot -https://www.w3.org/TR/selectors-nonelement-1/#selectordef-attr -1 -1 -- <at-keyword-token> type css-syntax-3 @@ -70,6 +60,16 @@ https://www.w3.org/TR/css-syntax-3/#typedef-at-keyword-token 1 1 - +<at-rule-list> +type +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#typedef-at-rule-list +1 +1 +- <atomic-condition> type css-conditional-values-1 @@ -138,6 +138,16 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#typedef-attr-modifier +1 +- +<attr-name> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-attr-name +1 1 - <attr-type> @@ -192,6 +202,36 @@ https://dom.spec.whatwg.org/#dom-event-at_target 1 Event - +AtomicCompareExchangeInSharedBlock +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-atomiccompareexchangeinsharedblock +1 +1 +- +AtomicCompareExchangeInSharedBlock(block, byteIndexInBuffer, elementSize, expectedBytes, replacementBytes) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-atomiccompareexchangeinsharedblock +1 +1 +- +AtomicReadModifyWrite +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-atomicreadmodifywrite +1 +1 +- AtomicReadModifyWrite(typedArray, index, value, op) abstract-op ecmascript @@ -242,15 +282,37 @@ https://dom.spec.whatwg.org/#attr 1 1 - -AttributeMatchList -typedef -sanitizer-api -sanitizer-api +AttributionReportingRequestOptions +dictionary +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#dictdef-attributionreportingrequestoptions +1 +1 +- +[[AtomicWriteRequests]] +attribute +webtransport +webtransport 1 current -https://wicg.github.io/sanitizer-api/#typedefdef-attributematchlist +https://w3c.github.io/webtransport/#dom-webtransportsendstream-atomicwriterequests-slot +1 +1 +WebTransportSendStream +- +[[AtomicWriteRequests]] +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-atomicwriterequests-slot 1 1 +WebTransportSendStream - [[attachment_size]] attribute @@ -339,6 +401,39 @@ https://w3c.github.io/webauthn/#authdata-flags-at 1 authData/flags - +at +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#authdata-flags-at + +1 +authData/flags +- +at <position> +value +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#valdef-ray-at-position +1 +1 +ray() +- +at most one top bid owner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-at-most-one-top-bid-owner + +1 +leading bid info +- at progress timeline boundary dfn web-animations-2 @@ -347,6 +442,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#at-progress-timeline-boundary +1 +- +at progress timeline boundary +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#at-progress-timeline-boundary + 1 - at risk @@ -365,7 +470,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.at +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.at 1 1 %TypedArray% @@ -434,6 +539,26 @@ https://drafts.csswg.org/css-syntax-3/#at-rule - at-rule dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#at-rules +1 +1 +- +at-rule +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#at-rules +1 +1 +- +at-rule +dfn css-syntax-3 css-syntax 3 @@ -547,28 +672,6 @@ https://html.spec.whatwg.org/multipage/webappapis.html#dom-atob 1 WindowOrWorkerGlobalScope - -atomic -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-atomic - -1 -syntax_kw -- -atomic -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-atomic - -1 -syntax_kw -- atomic http redirect handling dfn fetch @@ -679,6 +782,26 @@ https://www.w3.org/TR/css-display-3/#atomic-inline 1 1 - +atomic inline-level box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x13 +1 +1 +- +atomic inline-level box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x13 +1 +1 +- atomic inline-level boxes dfn css22 @@ -729,6 +852,50 @@ https://www.w3.org/TR/WGSL/#atomic-type 1 - +atomicWrite() +method +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportwriter-atomicwrite +1 +1 +WebTransportWriter +- +atomicWrite() +method +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportwriter-atomicwrite +1 +1 +WebTransportWriter +- +atomicWrite(chunk) +method +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportwriter-atomicwrite +1 +1 +WebTransportWriter +- +atomicWrite(chunk) +method +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportwriter-atomicwrite +1 +1 +WebTransportWriter +- atomically dfn webaudio @@ -786,8 +953,8 @@ abstract-op webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#abstract-opdef-devicepubkey-record-attstmt +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-devicepubkey-record-attstmt 1 1 devicePubKey record @@ -800,6 +967,16 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#md-vevent-attach +1 +- +attach a shadow root +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#concept-attach-a-shadow-root + 1 - attach a webvtt internal node object @@ -1042,6 +1219,26 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#attempt-to-create-a-non-fetch-scheme-document +1 +- +attempt to decrypt +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-attempt-to-decrypt + +1 +- +attempt to decrypt +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-attempt-to-decrypt + 1 - attempt to deliver a debug report @@ -1052,6 +1249,16 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#attempt-to-deliver-a-debug-report +1 +- +attempt to deliver a report +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#attempt-to-deliver-a-report + 1 - attempt to deliver a report @@ -1072,6 +1279,26 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#attempt-to-deliver-a-verbose-debug-report +1 +- +attempt to deliver an aggregatable debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attempt-to-deliver-an-aggregatable-debug-report + +1 +- +attempt to disconnect +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#attempt-to-disconnect + 1 - attempt to populate the history entry's document @@ -1084,6 +1311,57 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#attempt-to-populate 1 - +attempt to queue reports for sending +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#attempt-to-queue-reports-for-sending + +1 +- +attempt to resume playback if necessary +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-attempt-to-resume-playback-if-necessary + +1 +- +attempt to resume playback if necessary +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-attempt-to-resume-playback-if-necessary + +1 +- +attempt to send an automatic beacon +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#attempt-to-send-an-automatic-beacon + +1 +- +attempted custom url report to disallowed origin +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-attempted-custom-url-report-to-disallowed-origin +1 +1 +fenced frame reporting metadata +- attempting to access the depth buffer dfn webxr-depth-sensing-1 @@ -1142,10 +1420,10 @@ webauthn-3 webauthn 3 current -https://w3c.github.io/webauthn/#dom-authenticationextensionsdevicepublickeyinputs-attestation +https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-attestation 1 1 -AuthenticationExtensionsDevicePublicKeyInputs +PublicKeyCredentialCreationOptions - attestation dict-member @@ -1153,42 +1431,42 @@ webauthn-3 webauthn 3 current -https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-attestation +https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptionsjson-attestation 1 1 -PublicKeyCredentialCreationOptions +PublicKeyCredentialCreationOptionsJSON - attestation -dict-member +dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptionsjson-attestation -1 +snapshot +https://www.w3.org/TR/webauthn-3/#attestation + 1 -PublicKeyCredentialCreationOptionsJSON - attestation dict-member webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dom-publickeycredentialrequestoptions-attestation +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsdevicepublickeyinputs-attestation 1 1 -PublicKeyCredentialRequestOptions +AuthenticationExtensionsDevicePublicKeyInputs - attestation -dfn +dict-member webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#attestation - +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-attestation +1 1 +PublicKeyCredentialCreationOptions - attestation dict-member @@ -1196,10 +1474,32 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-attestation +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-attestation 1 1 -PublicKeyCredentialCreationOptions +PublicKeyCredentialCreationOptionsJSON +- +attestation +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-attestation +1 +1 +PublicKeyCredentialRequestOptions +- +attestation +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-attestation +1 +1 +PublicKeyCredentialRequestOptionsJSON - attestation ca dfn @@ -1472,16 +1772,27 @@ https://w3c.github.io/webauthn/#abstract-opdef-credential-record-attestationclie 1 credential record - +attestationClientDataJSON +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-attestationclientdatajson +1 +1 +credential record +- attestationFormats dict-member webauthn-3 webauthn 3 current -https://w3c.github.io/webauthn/#dom-authenticationextensionsdevicepublickeyinputs-attestationformats +https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-attestationformats 1 1 -AuthenticationExtensionsDevicePublicKeyInputs +PublicKeyCredentialCreationOptions - attestationFormats dict-member @@ -1489,7 +1800,29 @@ webauthn-3 webauthn 3 current -https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-attestationformats +https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptionsjson-attestationformats +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +attestationFormats +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsdevicepublickeyinputs-attestationformats +1 +1 +AuthenticationExtensionsDevicePublicKeyInputs +- +attestationFormats +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-attestationformats 1 1 PublicKeyCredentialCreationOptions @@ -1499,33 +1832,44 @@ dict-member webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dom-publickeycredentialrequestoptions-attestationformats +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-attestationformats +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +attestationFormats +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-attestationformats 1 1 PublicKeyCredentialRequestOptions - -attestationObject -abstract-op +attestationFormats +dict-member webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#abstract-opdef-credential-record-attestationobject +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-attestationformats 1 1 -credential record +PublicKeyCredentialRequestOptionsJSON - attestationObject -attribute +abstract-op webauthn-3 webauthn 3 current -https://w3c.github.io/webauthn/#dom-authenticatorassertionresponse-attestationobject +https://w3c.github.io/webauthn/#abstract-opdef-credential-record-attestationobject 1 1 -AuthenticatorAssertionResponse +credential record - attestationObject attribute @@ -1550,6 +1894,39 @@ https://w3c.github.io/webauthn/#dom-authenticatorattestationresponsejson-attesta AuthenticatorAttestationResponseJSON - attestationObject +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-attestationobject +1 +1 +credential record +- +attestationObject +attribute +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponse-attestationobject +1 +1 +AuthenticatorAssertionResponse +- +attestationObject +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponsejson-attestationobject +1 +1 +AuthenticatorAssertionResponseJSON +- +attestationObject attribute webauthn-3 webauthn @@ -1560,6 +1937,17 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponse-attestati 1 AuthenticatorAttestationResponse - +attestationObject +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponsejson-attestationobject +1 +1 +AuthenticatorAttestationResponseJSON +- attestationconveyancepreferenceoption dfn webauthn-3 @@ -1641,9 +2029,10 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#attestedcredentialdata +https://www.w3.org/TR/webauthn-3/#authdata-attestedcredentialdata 1 +authData - attr argument @@ -1733,6 +2122,18 @@ https://w3c.github.io/DOM-Parsing/#dfn-attr-localname 1 - attr() +value +css-content-3 +css-content +3 +current +https://drafts.csswg.org/css-content-3/#valdef-content-attr + +1 +content +<content-list> +- +attr() function css-values-5 css-values @@ -1742,40 +2143,46 @@ https://drafts.csswg.org/css-values-5/#funcdef-attr 1 1 - -attr(x) -value -css22 +attr() +dfn +css2 css 1 current -https://drafts.csswg.org/css2/#valdef-content-attr-x +https://www.w3.org/TR/CSS21/generate.html#x18 1 1 -content - -attr-associated element +attr() dfn -html -html +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x18 +1 +1 +- +attr(x) +value +css22 +css 1 current -https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#attr-associated-element +https://drafts.csswg.org/css2/#valdef-content-attr-x 1 1 -Element -ElementInternals +content - -attr-associated elements +attr-iframe-credentialless dfn -html -html +anonymous-iframe +anonymous-iframe 1 current -https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#attr-associated-elements -1 +https://wicg.github.io/anonymous-iframe/#attr-iframe-credentialless + 1 -Element -ElementInternals - attr.localname dfn @@ -1959,28 +2366,6 @@ TrustedTypePolicyFactory/getAttributeType(tagName, attribute, elementNs, attrNs) TrustedTypePolicyFactory/getAttributeType(tagName, attribute, elementNs) TrustedTypePolicyFactory/getAttributeType(tagName, attribute) - -attrib_end -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-attrib_end - -1 -syntax -- -attrib_end -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-attrib_end - -1 -syntax -- attribute dfn dom @@ -2035,26 +2420,6 @@ syntax - attribute dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-attribute - -1 -- -attribute -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-attribute - -1 -- -attribute -dfn svg-aam-1.0 svg-aam 1 @@ -2108,6 +2473,26 @@ https://webidl.spec.whatwg.org/#dfn-attribute - attribute dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#attribute +1 +1 +- +attribute +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#attribute +1 +1 +- +attribute +dfn wgsl wgsl 1 @@ -2140,16 +2525,6 @@ syntax - attribute dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-attribute - -1 -- -attribute -dfn graphics-aam-1.0 graphics-aam 1 @@ -2210,16 +2585,6 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-attribute -- -attribute allow list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#attribute-allow-list - -1 - attribute caching dfn @@ -2239,16 +2604,6 @@ dom current https://dom.spec.whatwg.org/#concept-element-attributes-change-ext 1 -1 -- -attribute drop list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#attribute-drop-list - 1 - attribute getter @@ -2269,16 +2624,6 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#attribute-handle -1 -- -attribute kind -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#attribute-kind - 1 - attribute list @@ -2311,26 +2656,6 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#concept-mock-attribute-list -1 -- -attribute match list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#attribute-match-list - -1 -- -attribute matches an attribute match list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#attribute-matches-an-attribute-match-list - 1 - attribute name state @@ -2363,16 +2688,6 @@ https://drafts.csswg.org/selectors-nonelement-1/#attribute-node-selector 1 1 - -attribute node selector -dfn -selectors-nonelement-1 -selectors-nonelement -1 -snapshot -https://www.w3.org/TR/selectors-nonelement-1/#attribute-node-selector -1 -1 -- attribute selector dfn selectors-4 @@ -2411,26 +2726,6 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#attribute-type -1 -- -attribute validation steps -dfn -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#concept-element-attributes-validation-ext -1 -1 -- -attribute validation steps -dfn -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#concept-element-attributes-validation-ext -1 1 - attribute value (double-quoted) state @@ -2612,16 +2907,6 @@ html current https://html.spec.whatwg.org/multipage/syntax.html#syntax-attributes -1 -- -attributes -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-attribute - 1 - attributes @@ -2635,14 +2920,26 @@ https://w3c.github.io/svg-aam/#dfn-attribute - attributes -dfn -accname-1.2 -accname +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-attributes +1 +1 +SanitizerConfig +- +attributes +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerelementnamespacewithattributes-attributes 1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-attribute - 1 +SanitizerElementNamespaceWithAttributes - attributes dfn @@ -2757,17 +3054,6 @@ https://w3c.github.io/longtasks/#dom-performancelongtasktiming-attribution PerformanceLongTaskTiming - attribution -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#rate-limit-scope-attribution - -1 -rate-limit scope -- -attribution dict-member performance-measure-memory performance-measure-memory @@ -2794,17 +3080,6 @@ longtasks-1 longtasks 1 snapshot -https://www.w3.org/TR/longtasks-1/#dom-performanceentry-attribution -1 -1 -PerformanceEntry -- -attribution -attribute -longtasks-1 -longtasks -1 -snapshot https://www.w3.org/TR/longtasks-1/#dom-performancelongtasktiming-attribution 1 1 @@ -2820,26 +3095,38 @@ https://wicg.github.io/attribution-reporting-api/#attribution-caches 1 - -attribution debug data +attribution debug info dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-debug-data +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-attribution-debug-info 1 +aggregatable attribution report - -attribution debug report +attribution debug info dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-debug-report +https://wicg.github.io/attribution-reporting-api/#attribution-debug-info 1 - +attribution debug info +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-report-attribution-debug-info + +1 +event-level report +- attribution destination dfn attribution-reporting-api @@ -2862,6 +3149,17 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-attributio 1 attribution trigger - +attribution destination +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-limit-record-attribution-destination + +1 +destination limit record +- attribution destination website dfn private-click-measurement @@ -2944,6 +3242,92 @@ https://wicg.github.io/attribution-reporting-api/#attribution-report 1 - +attribution reporting context origin +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#source-snapshot-params-attribution-reporting-context-origin + +1 +source snapshot params +- +attribution reporting eligibility +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#request-attribution-reporting-eligibility +1 +1 +request +- +attribution reporting eligibility +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#script-fetch-options-attribution-reporting-eligibility + +1 +script fetch options +- +attribution reporting eligibility +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#xmlhttprequest-eligibility + +1 +- +attribution reporting enabled +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#source-snapshot-params-attribution-reporting-enabled + +1 +source snapshot params +- +attribution scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-scopes + +1 +- +attribution scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-attribution-scopes + +1 +attribution source +- +attribution scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-attribution-scopes + +1 +attribution trigger +- attribution source dfn attribution-reporting-api @@ -2985,12 +3369,33 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger 1 - attribution-reporting +enum-value +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#dom-permissionpolicy-attribution-reporting +1 +1 +PermissionPolicy +- +attribution-reporting-eligible dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-reporting +https://wicg.github.io/attribution-reporting-api/#attribution-reporting-eligible + +1 +- +attribution-reporting-support +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-reporting-support 1 - @@ -3005,6 +3410,17 @@ https://privacycg.github.io/private-click-measurement/#dom-htmlanchorelement-att 1 HTMLAnchorElement - +attributionReporting +dict-member +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#dom-requestinit-attributionreporting +1 +1 +RequestInit +- attributionSourceId attribute private-click-measurement @@ -3027,6 +3443,72 @@ https://wicg.github.io/attribution-reporting-api/#dom-htmlattributionsrcelementu 1 HTMLAttributionSrcElementUtils - +attribution_scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-attribution_scopes + +1 +source-registration JSON key +- +attribution_scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-attribution_scopes + +1 +trigger-registration JSON key +- +attributionreportingcontextorigin +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-event-attributionreportingcontextorigin + +1 +automatic beacon event +- +attributionreportingcontextorigin +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#destination-enum-event-attributionreportingcontextorigin + +1 +destination enum event +- +attributionreportingenabled +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-event-attributionreportingenabled + +1 +automatic beacon event +- +attributionreportingenabled +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#destination-enum-event-attributionreportingenabled + +1 +destination enum event +- attributionsrc element-attr attribution-reporting-api diff --git a/bikeshed/spec-data/readonly/anchors/anchors-au.data b/bikeshed/spec-data/readonly/anchors/anchors-au.data index ce7f26e4ba..0389ead3da 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-au.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-au.data @@ -21,6 +21,17 @@ https://w3c.github.io/mediacapture-main/#dfn-audio - "audio" enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusapplication-audio +1 +1 +OpusApplication +- +"audio" +enum-value content-index content-index 1 @@ -40,6 +51,17 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-audio 1 - +"audio" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusapplication-audio +1 +1 +OpusApplication +- "audio-busy" enum-value speech-api @@ -160,6 +182,7 @@ https://drafts.csswg.org/web-animations-1/#dom-fillmode-auto 1 1 FillMode +PlaybackDirection - "auto" enum-value @@ -218,6 +241,17 @@ NotificationDirection - "auto" enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessiontype-auto +1 +1 +AudioSessionType +- +"auto" +enum-value image-capture image-capture 1 @@ -229,6 +263,17 @@ FillLightMode - "auto" enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opussignal-auto +1 +1 +OpusSignal +- +"auto" +enum-value webvtt1 webvtt 1 @@ -251,14 +296,14 @@ PositionAlignSetting - "auto" enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationhistorybehavior-auto +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransitionnavigation-auto 1 1 -NavigationHistoryBehavior +ViewTransitionNavigation - "auto" enum-value @@ -306,6 +351,28 @@ FillMode - "auto" enum-value +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-fillmode-auto +1 +1 +FillMode +- +"auto" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opussignal-auto +1 +1 +OpusSignal +- +"auto" +enum-value webgpu webgpu 1 @@ -368,6 +435,26 @@ current https://drafts.csswg.org/css2/#audio-media-group +- +'audio' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#audio-media-group +1 +1 +- +'audio' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#audio-media-group +1 +1 - :autofill selector @@ -500,6 +587,107 @@ https://drafts.csswg.org/css-text-4/#valdef-text-spacing-autospace 1 text-spacing - +<autospace> +type +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#typedef-autospace +1 +1 +- +<autospace> +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-autospace +1 +1 +text-spacing +- +AuctionAd +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-auctionad +1 +1 +- +AuctionAdConfig +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-auctionadconfig +1 +1 +- +AuctionAdInterestGroup +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-auctionadinterestgroup +1 +1 +- +AuctionAdInterestGroupKey +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-auctionadinterestgroupkey +1 +1 +- +AuctionAdInterestGroupSize +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-auctionadinterestgroupsize +1 +1 +- +AuctionRealTimeReportingConfig +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-auctionrealtimereportingconfig +1 +1 +- +AuctionReportBuyerDebugModeConfig +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-auctionreportbuyerdebugmodeconfig +1 +1 +- +AuctionReportBuyersConfig +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-auctionreportbuyersconfig +1 +1 +- AudioBuffer interface webaudio @@ -781,6 +969,16 @@ https://www.w3.org/TR/webaudio/#dictdef-audiocontextoptions 1 1 - +AudioContextRenderSizeCategory +enum +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#enumdef-audiocontextrendersizecategory +1 +1 +- AudioContextState enum webaudio @@ -1431,6 +1629,36 @@ https://www.w3.org/TR/webaudio/#audioscheduledsourcenode 1 1 - +AudioSession +interface +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#audiosession +1 +1 +- +AudioSessionState +enum +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#enumdef-audiosessionstate +1 +1 +- +AudioSessionType +enum +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#enumdef-audiosessiontype +1 +1 +- AudioSinkInfo interface webaudio @@ -1757,6 +1985,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticationextensionsclientinputsjson 1 1 - +AuthenticationExtensionsClientInputsJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsclientinputsjson +1 +1 +- AuthenticationExtensionsClientOutputs dictionary webauthn-3 @@ -1787,13 +2025,23 @@ https://w3c.github.io/webauthn/#dictdef-authenticationextensionsclientoutputsjso 1 1 - +AuthenticationExtensionsClientOutputsJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsclientoutputsjson +1 +1 +- AuthenticationExtensionsDevicePublicKeyInputs dictionary webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dictdef-authenticationextensionsdevicepublickeyinputs +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsdevicepublickeyinputs 1 1 - @@ -1802,8 +2050,8 @@ dictionary webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dictdef-authenticationextensionsdevicepublickeyoutputs +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsdevicepublickeyoutputs 1 1 - @@ -1857,6 +2105,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticationextensionsprfinputs 1 1 - +AuthenticationExtensionsPRFInputs +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsprfinputs +1 +1 +- AuthenticationExtensionsPRFOutputs dictionary webauthn-3 @@ -1867,6 +2125,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticationextensionsprfoutputs 1 1 - +AuthenticationExtensionsPRFOutputs +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsprfoutputs +1 +1 +- AuthenticationExtensionsPRFValues dictionary webauthn-3 @@ -1877,6 +2145,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticationextensionsprfvalues 1 1 - +AuthenticationExtensionsPRFValues +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationextensionsprfvalues +1 +1 +- AuthenticationExtensionsPaymentInputs dictionary secure-payment-confirmation @@ -1907,6 +2185,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticationresponsejson 1 1 - +AuthenticationResponseJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticationresponsejson +1 +1 +- AuthenticatorAssertionResponse interface webauthn-3 @@ -1937,6 +2225,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticatorassertionresponsejson 1 1 - +AuthenticatorAssertionResponseJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticatorassertionresponsejson +1 +1 +- AuthenticatorAttachment enum webauthn-3 @@ -1987,6 +2285,16 @@ https://w3c.github.io/webauthn/#dictdef-authenticatorattestationresponsejson 1 1 - +AuthenticatorAttestationResponseJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-authenticatorattestationresponsejson +1 +1 +- AuthenticatorResponse interface webauthn-3 @@ -2182,47 +2490,242 @@ https://streams.spec.whatwg.org/#readablebytestreamcontroller-autoallocatechunks 1 ReadableByteStreamController - -audible +auction dfn -mediacapture-streams -mediacapture-streams +turtledove +turtledove 1 current -https://w3c.github.io/mediacapture-main/#stream-audible +https://wicg.github.io/turtledove/#auction 1 -stream - -audible +auction config dfn -mediacapture-streams -mediacapture-streams +private-aggregation-api +private-aggregation-api 1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#stream-audible +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#interestgroupscriptrunnerglobalscope-auction-config 1 -stream +InterestGroupScriptRunnerGlobalScope - -audience segmentation +auction config dfn -tracking-dnt -tracking-dnt +turtledove +turtledove 1 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-audience-segmentation - +https://wicg.github.io/turtledove/#auction-config +1 - -audience segmentation +auction config dfn -tracking-dnt -tracking-dnt +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-auction-config + +1 +leading bid info +- +auction nonce +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-auction-nonce + +1 +auction config +- +auction nonce +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-nonce + +1 +- +auction report buyer debug details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-auction-report-buyer-debug-details + +1 +auction config +- +auction report buyer keys +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-auction-report-buyer-keys + +1 +auction config +- +auction report buyers +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-auction-report-buyers + +1 +auction config +- +auction report info +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-report-info + +1 +- +auction signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-auction-signals + +1 +auction config +- +auction signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#direct-from-seller-signals-auction-signals + +1 +direct from seller signals +- +auctionNonce +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-auctionnonce +1 +1 +AuctionAdConfig +- +auctionReportBuyerDebugModeConfig +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionadconfig-auctionreportbuyerdebugmodeconfig +1 +1 +AuctionAdConfig +- +auctionReportBuyerKeys +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionadconfig-auctionreportbuyerkeys +1 +1 +AuctionAdConfig +- +auctionReportBuyers +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionadconfig-auctionreportbuyers +1 +1 +AuctionAdConfig +- +auctionSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-auctionsignals +1 +1 +AuctionAdConfig +- +auctionSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-directfromsellersignalsforbuyer-auctionsignals +1 +1 +DirectFromSellerSignalsForBuyer +- +auctionSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-directfromsellersignalsforseller-auctionsignals +1 +1 +DirectFromSellerSignalsForSeller +- +audible +dfn +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#stream-audible + +1 +stream +- +audible +dfn +mediacapture-streams +mediacapture-streams 1 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-audience-segmentation +https://www.w3.org/TR/mediacapture-streams/#stream-audible 1 +stream +- +audience segmentation +dfn +tracking-dnt +tracking-dnt +1 +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-audience-segmentation + + - audio element @@ -2289,6 +2792,17 @@ https://w3c.github.io/mediacapture-screen-share/#dom-displaymediastreamoptions-a DisplayMediaStreamOptions - audio +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusapplication-audio +1 +1 +OpusApplication +- +audio element epub-33 epub @@ -2342,6 +2856,17 @@ https://www.w3.org/TR/screen-capture/#dom-displaymediastreamoptions-audio 1 DisplayMediaStreamOptions - +audio +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusapplication-audio +1 +1 +OpusApplication +- audio buffer underrun dfn webaudio @@ -2389,7 +2914,7 @@ mimesniff 1 current https://mimesniff.spec.whatwg.org/#audio-or-video-type-pattern-matching-algorithm - +1 1 - audio sample @@ -2612,15 +3137,26 @@ MediaRecorderOptions - audioCapabilities dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-audiocapabilities 1 1 MediaKeySystemConfiguration - +audioCapabilities +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-audiocapabilities +1 +1 +MediaKeySystemConfiguration +- audioData argument webaudio @@ -2707,17 +3243,6 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-audiolevel -1 - -RTCMediaStreamTrackStats -- -audioLevel -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-audiolevel 1 @@ -2737,17 +3262,6 @@ RTCInboundRtpStreamStats - audioLevel dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-audiolevel -1 - -RTCMediaStreamTrackStats -- -audioLevel -dict-member webrtc webrtc 1 @@ -2757,6 +3271,17 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpcontributingsource-audiolevel 1 RTCRtpContributingSource - +audioSession +attribute +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-navigator-audiosession +1 +1 +Navigator +- audioTracks attribute html @@ -2852,17 +3377,6 @@ https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions 1 1 - -audiocapabilities -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-audiocapabilities - -1 -mediakeysystemconfiguration -- audiocontext enum-value autoplay-detection @@ -3172,14 +3686,24 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-audit - -audit +auditory icon dfn -tracking-dnt -tracking-dnt +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#x0 +1 +1 +- +auditory icon +dfn +css2 +css 1 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-audit - +https://www.w3.org/TR/CSS21/aural.html#x0 +1 1 - augmented certificate @@ -3396,26 +3920,6 @@ openscreenprotocol snapshot https://www.w3.org/TR/openscreenprotocol/#auth-spake2-handshake -1 -- -auth-spake2-need-psk -dfn -openscreenprotocol -openscreenprotocol -1 -current -https://w3c.github.io/openscreenprotocol/#auth-spake2-need-psk - -1 -- -auth-spake2-need-psk -dfn -openscreenprotocol -openscreenprotocol -1 -snapshot -https://www.w3.org/TR/openscreenprotocol/#auth-spake2-need-psk - 1 - auth-status @@ -3436,16 +3940,6 @@ openscreenprotocol snapshot https://www.w3.org/TR/openscreenprotocol/#auth-status -1 -- -authdataextensions -dfn -webauthn-3 -webauthn -3 -snapshot -https://www.w3.org/TR/webauthn-3/#authdataextensions - 1 - authenticate @@ -3470,23 +3964,13 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothcharacteristicprope 1 BluetoothCharacteristicProperties - -authenticating +authentication dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-authenticating - +vc-data-integrity +vc-data-integrity 1 -- -authenticating -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-authenticating +current +https://w3c.github.io/vc-data-integrity/#dfn-authentication 1 - @@ -3498,6 +3982,16 @@ webauthn current https://w3c.github.io/webauthn/#authentication +1 +- +authentication +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-authentication + 1 - authentication @@ -3560,17 +4054,6 @@ https://fetch.spec.whatwg.org/#authentication-entry 1 1 - -authentication entry -dfn -prefetch -prefetch -1 -current -https://wicg.github.io/nav-speculation/prefetch.html#exchange-record-authentication-entry - -1 -exchange record -- authentication extension dfn webauthn-3 @@ -3642,6 +4125,17 @@ https://www.w3.org/TR/webauthn-3/#authenticator 1 - +authenticator +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-issuing-a-credential-request-to-an-authenticator-authenticator +1 +1 +Issuing a credential request to an authenticator +- authenticator attachment modality dfn webauthn-3 @@ -3982,11 +4476,44 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationresponsejson-authenticatorattachment +1 +1 +AuthenticationResponseJSON +- +authenticatorAttachment +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-authenticatorselectioncriteria-authenticatorattachment 1 1 AuthenticatorSelectionCriteria - +authenticatorAttachment +attribute +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-authenticatorattachment +1 +1 +PublicKeyCredential +- +authenticatorAttachment +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-registrationresponsejson-authenticatorattachment +1 +1 +RegistrationResponseJSON +- authenticatorData attribute webauthn-3 @@ -4010,6 +4537,17 @@ https://w3c.github.io/webauthn/#dom-authenticatorassertionresponsejson-authentic AuthenticatorAssertionResponseJSON - authenticatorData +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-authenticatorattestationresponsejson-authenticatordata +1 +1 +AuthenticatorAttestationResponseJSON +- +authenticatorData attribute webauthn-3 webauthn @@ -4020,6 +4558,50 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponse-authenticat 1 AuthenticatorAssertionResponse - +authenticatorData +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponsejson-authenticatordata +1 +1 +AuthenticatorAssertionResponseJSON +- +authenticatorData +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponsejson-authenticatordata +1 +1 +AuthenticatorAttestationResponseJSON +- +authenticatorDisplayName +abstract-op +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#abstract-opdef-credential-record-authenticatordisplayname +1 +1 +credential record +- +authenticatorDisplayName +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-credentialpropertiesoutput-authenticatordisplayname +1 +1 +CredentialPropertiesOutput +- authenticatorExtensions argument webauthn-3 @@ -4031,6 +4613,17 @@ https://w3c.github.io/webauthn/#dom-issuing-a-credential-request-to-an-authentic 1 Issuing a credential request to an authenticator - +authenticatorExtensions +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-issuing-a-credential-request-to-an-authenticator-authenticatorextensions +1 +1 +Issuing a credential request to an authenticator +- authenticatorSelection dict-member webauthn-3 @@ -4064,6 +4657,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-authent 1 PublicKeyCredentialCreationOptions - +authenticatorSelection +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-authenticatorselection +1 +1 +PublicKeyCredentialCreationOptionsJSON +- authenticatorcancel dfn webauthn-3 @@ -4590,6 +5194,26 @@ css current https://drafts.csswg.org/css2/#authoring +1 +- +authoring tool +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#authoring +1 +1 +- +authoring tool +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#authoring +1 1 - authoring tool @@ -4618,7 +5242,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-authority +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-authority 1 1 constructor string parser/state @@ -4698,14 +5322,14 @@ justify-self - auto value -css-anchor-position-1 -css-anchor-position -1 +css-animations-2 +css-animations +2 current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-auto +https://drafts.csswg.org/css-animations-2/#valdef-animation-duration-auto 1 1 -anchor() +animation-duration - auto value @@ -4928,6 +5552,17 @@ css-fonts-4 css-fonts 4 current +https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-position-auto +1 +1 +font-synthesis-position +- +auto +value +css-fonts-4 +css-fonts +4 +current https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-small-caps-auto 1 1 @@ -5059,6 +5694,17 @@ dominant-baseline - auto value +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#valdef-text-box-edge-auto +1 +1 +text-box-edge +- +auto +value css-multicol-1 css-multicol 1 @@ -5240,6 +5886,17 @@ inset - auto value +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#valdef-overlay-auto +1 +1 +overlay +- +auto +value css-rhythm-1 css-rhythm 1 @@ -5316,29 +5973,10 @@ css-scroll-snap-2 css-scroll-snap 2 current -https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-auto -1 -1 -scroll-start -scroll-start-x -scroll-start-y -scroll-start-block -scroll-start-inline -- -auto -value -css-scroll-snap-2 -css-scroll-snap -2 -current https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-target-auto 1 1 scroll-start-target -scroll-start-target-x -scroll-start-target-y -scroll-start-target-block -scroll-start-target-inline - auto value @@ -5411,6 +6049,21 @@ aspect-ratio - auto value +css-sizing-4 +css-sizing +4 +current +https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto +1 +1 +contain-intrinsic-width +contain-intrinsic-height +contain-intrinsic-block-size +contain-intrinsic-inline-size +contain-intrinsic-size +- +auto +value css-speech-1 css-speech 1 @@ -5536,6 +6189,17 @@ css-text-4 css-text 4 current +https://drafts.csswg.org/css-text-4/#valdef-text-autospace-auto +1 +1 +text-autospace +- +auto +value +css-text-4 +css-text +4 +current https://drafts.csswg.org/css-text-4/#valdef-text-justify-auto 1 1 @@ -5569,6 +6233,17 @@ css-text-4 css-text 4 current +https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-auto +1 +1 +text-wrap-style +- +auto +value +css-text-4 +css-text +4 +current https://drafts.csswg.org/css-text-4/#valdef-wrap-before-auto 1 1 @@ -5724,6 +6399,17 @@ css-ui-4 css-ui 4 current +https://drafts.csswg.org/css-ui-4/#valdef-caret-animation-auto +1 +1 +caret-animation +- +auto +value +css-ui-4 +css-ui +4 +current https://drafts.csswg.org/css-ui-4/#valdef-caret-shape-auto 1 1 @@ -5757,6 +6443,17 @@ css-ui-4 css-ui 4 current +https://drafts.csswg.org/css-ui-4/#valdef-outline-color-auto +1 +1 +outline-color +- +auto +value +css-ui-4 +css-ui +4 +current https://drafts.csswg.org/css-ui-4/#valdef-pointer-events-auto 1 1 @@ -5775,6 +6472,17 @@ user-select - auto value +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-navigation-auto +1 +1 +@view-transition/navigation +- +auto +value css-will-change-1 css-will-change 1 @@ -5925,6 +6633,18 @@ https://drafts.csswg.org/web-animations-1/#dom-compositeoperationorauto-auto CompositeOperationOrAuto - auto +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-fillmode-auto +1 +1 +FillMode +PlaybackDirection +- +auto value filter-effects-1 filter-effects @@ -5941,6 +6661,17 @@ motion-1 motion 1 current +https://drafts.fxtf.org/motion-1/#valdef-offset-anchor-auto +1 +1 +offset-anchor +- +auto +value +motion-1 +motion +1 +current https://drafts.fxtf.org/motion-1/#valdef-offset-position-auto 1 1 @@ -5985,6 +6716,17 @@ html html 1 current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigationhistorybehavior-auto +1 +1 +NavigationHistoryBehavior +- +auto +enum-value +html +html +1 +current https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-fontkerning-auto 1 1 @@ -6002,6 +6744,16 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textrendering- CanvasTextRendering - auto +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable-auto-state + +1 +- +auto attr-value html html @@ -6044,12 +6796,22 @@ https://html.spec.whatwg.org/multipage/images.html#attr-img-decoding-auto-state 1 - auto -attr-value +dfn html html 1 current -https://html.spec.whatwg.org/multipage/media.html#attr-media-preload-auto +https://html.spec.whatwg.org/multipage/images.html#valdef-sizes-auto + +1 +- +auto +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#attr-media-preload-auto 1 1 audio/preload @@ -6061,21 +6823,30 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-auto-keyword +https://html.spec.whatwg.org/multipage/popover.html#attr-popover-auto 1 1 html-global/popover - auto -attr-value +dfn html html 1 current -https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-auto +https://html.spec.whatwg.org/multipage/popover.html#attr-popover-auto-state + 1 +- +auto +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-auto-state + 1 -th/scope - auto attr-value @@ -6166,6 +6937,17 @@ https://w3c.github.io/virtual-keyboard/#dfn-auto 1 - auto +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opussignal-auto +1 +1 +OpusSignal +- +auto dfn web-app-launch web-app-launch @@ -6211,6 +6993,29 @@ justify-self - auto value +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#valdef-animation-duration-auto +1 +1 +animation-duration +- +auto +value +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#valdef-animation-timeline-auto +1 +1 +animation-timeline +<single-animation-timeline> +- +auto +value css-backgrounds-3 css-backgrounds 3 @@ -6407,10 +7212,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-small-caps-auto +https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-position-auto 1 1 -font-synthesis-small-caps +font-synthesis-position - auto value @@ -6418,10 +7223,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-style-auto +https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-small-caps-auto 1 1 -font-synthesis-style +font-synthesis-small-caps - auto value @@ -6429,10 +7234,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-weight-auto +https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-style-auto 1 1 -font-synthesis-weight +font-synthesis-style - auto value @@ -6440,10 +7245,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-emoji-auto +https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-weight-auto 1 1 -font-variant-emoji +font-synthesis-weight - auto value @@ -6462,7 +7267,7 @@ css-gcpm-3 css-gcpm 3 snapshot -https://www.w3.org/TR/css-gcpm-3/#valuedef-auto +https://www.w3.org/TR/css-gcpm-3/#valdef-footnote-policy-auto 1 1 footnote-policy @@ -6549,6 +7354,17 @@ dominant-baseline - auto value +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#valdef-text-box-edge-auto +1 +1 +text-box-edge +- +auto +value css-multicol-1 css-multicol 1 @@ -6608,28 +7424,6 @@ css-overflow-3 css-overflow 3 snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-block-ellipsis-auto -1 -1 -block-ellipsis -- -auto -value -css-overflow-3 -css-overflow -3 -snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-continue-auto -1 -1 -continue -- -auto -value -css-overflow-3 -css-overflow -3 -snapshot https://www.w3.org/TR/css-overflow-3/#valdef-overflow-auto 1 1 @@ -6665,6 +7459,17 @@ css-overflow-4 css-overflow 4 snapshot +https://www.w3.org/TR/css-overflow-4/#valdef-block-ellipsis-auto +1 +1 +block-ellipsis +- +auto +value +css-overflow-4 +css-overflow +4 +snapshot https://www.w3.org/TR/css-overflow-4/#valdef-continue-auto 1 1 @@ -6802,6 +7607,21 @@ scroll-padding-block-end - auto value +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#valdef-scroll-start-target-auto +1 +1 +scroll-start-target +scroll-start-target-block +scroll-start-target-inline +scroll-start-target-x +scroll-start-target-y +- +auto +value css-scrollbars-1 css-scrollbars 1 @@ -6974,6 +7794,17 @@ css-text-4 css-text 4 snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-auto +1 +1 +text-autospace +- +auto +value +css-text-4 +css-text +4 +snapshot https://www.w3.org/TR/css-text-4/#valdef-text-justify-auto 1 1 @@ -6996,6 +7827,28 @@ css-text-4 css-text 4 snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-auto +1 +1 +text-spacing-trim +- +auto +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-wrap-style-auto +1 +1 +text-wrap-style +- +auto +value +css-text-4 +css-text +4 +snapshot https://www.w3.org/TR/css-text-4/#valdef-wrap-before-auto 1 1 @@ -7169,6 +8022,17 @@ user-select - auto value +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-navigation-auto +1 +1 +@view-transition/navigation +- +auto +value css-will-change-1 css-will-change 1 @@ -7300,6 +8164,17 @@ CompositeOperationOrAuto - auto enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opussignal-auto +1 +1 +OpusSignal +- +auto +enum-value webvtt1 webvtt 1 @@ -7357,72 +8232,106 @@ https://www.w3.org/TR/css-sizing-4/#valdef-aspect-ratio-auto--ratio 1 aspect-ratio - -auto <length> -value -css-sizing-4 -css-sizing -4 +auto (direction) +dfn +i18n-glossary +i18n-glossary +1 current -https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto-length +https://w3c.github.io/i18n-glossary/#dfn-auto-direction 1 + +- +auto (direction) +dfn +i18n-glossary +i18n-glossary 1 -contain-intrinsic-width -contain-intrinsic-height -contain-intrinsic-block-size -contain-intrinsic-inline-size -contain-intrinsic-size +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-auto-direction +1 + - -auto popover list +auto base direction dfn -html -html +i18n-glossary +i18n-glossary 1 current -https://html.spec.whatwg.org/multipage/popover.html#auto-popover-list +https://w3c.github.io/i18n-glossary/#dfn-auto-direction +1 + +- +auto base direction +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-auto-direction +1 + +- +auto direction +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-auto-direction +1 +- +auto direction +dfn +i18n-glossary +i18n-glossary 1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-auto-direction +1 + - -auto state +auto directionality dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-auto-state +https://html.spec.whatwg.org/multipage/dom.html#auto-directionality 1 - -auto(<lang>) -value -css-text-4 -css-text -4 -current -https://drafts.csswg.org/css-text-4/#valdef-word-boundary-detection-auto-lang +auto paragraph direction +dfn +i18n-glossary +i18n-glossary 1 +current +https://w3c.github.io/i18n-glossary/#dfn-auto-direction 1 -word-boundary-detection + - -auto(<lang>) -value -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#valdef-word-boundary-detection-auto-lang +auto paragraph direction +dfn +i18n-glossary +i18n-glossary 1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-auto-direction 1 -word-boundary-detection + - -auto-accept +auto-aligned start time dfn -html -html -1 +web-animations-2 +web-animations +2 current -https://html.spec.whatwg.org/multipage/system-state.html#rph-automation-mode-auto-accept - +https://drafts.csswg.org/web-animations-2/#animation-auto-aligned-start-time 1 + +animation - auto-column dfn @@ -7442,6 +8351,16 @@ css-tables snapshot https://www.w3.org/TR/css-tables-3/#auto-column +1 +- +auto-directionality form-associated elements +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#auto-directionality-form-associated-elements + 1 - auto-fill @@ -7572,6 +8491,50 @@ https://www.w3.org/TR/css-ruby-1/#auto-hidden 1 - +auto-phrase +value +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#valdef-word-break-auto-phrase +1 +1 +word-break +- +auto-phrase +value +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-auto-phrase +1 +1 +word-space-transform +- +auto-phrase +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-word-break-auto-phrase +1 +1 +word-break +- +auto-phrase +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-word-space-transform-auto-phrase +1 +1 +word-space-transform +- auto-placement dfn css-grid-1 @@ -7652,13 +8615,13 @@ https://www.w3.org/TR/css-grid-2/#auto-placement-cursor 1 1 - -auto-reject +auto-reauthenticated dfn -html -html +fedcm +fedcm 1 current -https://html.spec.whatwg.org/multipage/system-state.html#rph-automation-mode-auto-reject +https://fedidcg.github.io/FedCM/#auto-reauthenticated 1 - @@ -7682,17 +8645,6 @@ https://www.w3.org/TR/screen-wake-lock/#dfn-auto-releasing-wake-locks 1 - -auto-same -value -css-anchor-position-1 -css-anchor-position -1 -current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-auto-same -1 -1 -anchor() -- autoAllocateChunkSize dict-member streams @@ -7858,72 +8810,6 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbobjectstoreparameters-autoincrement 1 IDBObjectStoreParameters - -autoPad -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlconv2doptions-autopad -1 -1 -MLConv2dOptions -- -autoPad -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlconvtranspose2doptions-autopad -1 -1 -MLConvTranspose2dOptions -- -autoPad -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlpool2doptions-autopad -1 -1 -MLPool2dOptions -- -autoPad -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlconv2doptions-autopad -1 -1 -MLConv2dOptions -- -autoPad -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-autopad -1 -1 -MLConvTranspose2dOptions -- -autoPad -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlpool2doptions-autopad -1 -1 -MLPool2dOptions -- auto_design_width dfn miniapp-manifest @@ -7942,6 +8828,16 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-auto_design_width +1 +- +autoaccept +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/system-state.html#rph-automation-mode-auto-accept + 1 - autocapitalization hints @@ -8046,6 +8942,16 @@ html current https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill-anchor-mantle +1 +- +autofill and credentialless iframe +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#autofill-and-credentialless-iframe +1 1 - autofill detail tokens @@ -8221,15 +9127,82 @@ https://html.spec.whatwg.org/multipage/media.html#attr-media-preload-auto-state 1 - -automatic anchor positioning +automatic beacon data +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-automatic-beacon-data + +1 +fencedframetype +- +automatic beacon data map +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#document-automatic-beacon-data-map + +1 +Document +- +automatic beacon data map +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#source-snapshot-params-automatic-beacon-data-map + +1 +source snapshot params +- +automatic beacon event +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-automatic-beacon-event + +1 +fencedframetype +- +automatic beacon event type +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-automatic-beacon-event-type +1 +1 +fencedframetype +- +automatic beacons allowed +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#document-automatic-beacons-allowed + +1 +Document +- +automatic beacons allowed dfn -css-anchor-position-1 -css-anchor-position +fenced-frame +fenced-frame 1 current -https://drafts.csswg.org/css-anchor-position-1/#automatic-anchor-positioning +https://wicg.github.io/fenced-frame/#source-snapshot-params-automatic-beacons-allowed 1 +source snapshot params - automatic block size dfn @@ -8419,6 +9392,26 @@ css current https://drafts.csswg.org/css2/#automatic-numbering +1 +- +automatic numbering +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x1 +1 +1 +- +automatic numbering +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x1 +1 1 - automatic placement @@ -8619,6 +9612,26 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#dfn-automation-event +1 +- +automation local testing mode +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#automation-local-testing-mode + +1 +- +automation local testing mode enabled +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#automation-local-testing-mode-enabled + 1 - automation method @@ -8751,12 +9764,23 @@ https://html.spec.whatwg.org/multipage/media.html#dom-media-autoplay HTMLMediaElement - autoplay -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-autoplay +1 +1 +model +- +autoreject +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/system-state.html#rph-automation-mode-auto-reject 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-av.data b/bikeshed/spec-data/readonly/anchors/anchors-av.data index 6851e2c4f8..aab028ba4e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-av.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-av.data @@ -20,6 +20,26 @@ https://www.w3.org/TR/webcodecs-avc-codec-registration/#dom-avcbitstreamformat-a 1 AvcBitstreamFormat - +AvailableNamedTimeZoneIdentifiers +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-availablenamedtimezoneidentifiers +1 +1 +- +AvailableNamedTimeZoneIdentifiers() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-availablenamedtimezoneidentifiers +1 +1 +- AvcBitstreamFormat enum webcodecs-avc-codec-registration @@ -79,6 +99,314 @@ webhid current https://wicg.github.io/webhid/#dfn-a-valid-filter +1 +- +av01 +value +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#valdef-av1-image-item-type-av01 +1 +1 +AV1 Image Item Type +- +av01 +value +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#valdef-av1sampleentry-av01 +1 +1 +AV1SampleEntry +- +av01 +value +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#valdef-isobmff-brand-av01 +1 +1 +ISOBMFF Brand +- +av1 +dict-member +webcodecs-av1-codec-registration +webcodecs-av1-codec-registration +1 +current +https://w3c.github.io/webcodecs/av1_codec_registration.html#dom-videoencoderencodeoptions-av1 +1 +1 +VideoEncoderEncodeOptions +- +av1 +dict-member +webcodecs-av1-codec-registration +webcodecs-av1-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-av1-codec-registration/#dom-videoencoderencodeoptions-av1 +1 +1 +VideoEncoderEncodeOptions +- +av1 alpha image item +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-alpha-image-item +1 +1 +- +av1 alpha image sequence +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-alpha-image-sequence +1 +1 +- +av1 auxiliary image item +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-auxiliary-image-item + +1 +- +av1 auxiliary image sequence +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-auxiliary-image-sequence + +1 +- +av1 depth image item +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-depth-image-item +1 +1 +- +av1 depth image sequence +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-depth-image-sequence +1 +1 +- +av1 image file format +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-image-file-format + +1 +- +av1 image item +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-image-item + +1 +- +av1 image item data +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-image-item-data + +1 +- +av1 image sequence +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-image-sequence + +1 +- +av1 item configuration property +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1-item-configuration-property + +1 +- +av1 sample +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1-sample + +1 +- +av1c +value +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#valdef-av1-item-configuration-property-av1c +1 +1 +AV1 Item Configuration Property +- +av1c +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1c +1 +1 +- +av1codecconfigurationbox +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox + +1 +- +av1f +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1f +1 +1 +- +av1forwardkeyframesamplegroupentry +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1forwardkeyframesamplegroupentry + +1 +- +av1layeredimageindexingproperty +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#av1layeredimageindexingproperty +1 +1 +- +av1m +value +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#valdef-av1metadatasamplegroupentry-av1m + +1 +AV1MetadataSampleGroupEntry +- +av1m +value +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#valdef-av1multiframesamplegroupentry-av1m +1 +1 +AV1MultiFrameSampleGroupEntry +- +av1metadatasamplegroupentry +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1metadatasamplegroupentry + +1 +- +av1multiframesamplegroupentry +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1multiframesamplegroupentry + +1 +- +av1s +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1s +1 +1 +- +av1sampleentry +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1sampleentry + +1 +- +av1switchframesamplegroupentry +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#av1switchframesamplegroupentry + 1 - availHeight @@ -105,44 +433,44 @@ Screen - availLeft attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-availleft +https://w3c.github.io/window-management/#dom-screendetailed-availleft 1 1 ScreenDetailed - availLeft attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-availleft +https://www.w3.org/TR/window-management/#dom-screendetailed-availleft 1 1 ScreenDetailed - availTop attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-availtop +https://w3c.github.io/window-management/#dom-screendetailed-availtop 1 1 ScreenDetailed - availTop attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-availtop +https://www.w3.org/TR/window-management/#dom-screendetailed-availtop 1 1 ScreenDetailed @@ -226,21 +554,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#buffer-internals-state-available +https://gpuweb.github.io/gpuweb/#gpubuffer-internal-state-available 1 -buffer internals/state -- -available -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#query-set-state-available - -1 -query set state +GPUBuffer/[[internal state]] - available dfn @@ -284,34 +601,33 @@ https://w3c.github.io/remote-playback/#dfn-available - available dfn -contact-picker -contact-picker +serial +serial 1 -snapshot -https://www.w3.org/TR/contact-picker/#available +current +https://wicg.github.io/serial/#dfn-available 1 - available dfn -remote-playback -remote-playback +contact-picker +contact-picker 1 snapshot -https://www.w3.org/TR/remote-playback/#dfn-available +https://www.w3.org/TR/contact-picker/#available 1 - available dfn -webgpu -webgpu +remote-playback +remote-playback 1 snapshot -https://www.w3.org/TR/webgpu/#buffer-internals-state-available +https://www.w3.org/TR/remote-playback/#dfn-available 1 -buffer internals/state - available dfn @@ -319,10 +635,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#query-set-state-available +https://www.w3.org/TR/webgpu/#gpubuffer-internal-state-available 1 -query set state +GPUBuffer/[[internal state]] - available block space dfn @@ -383,7 +699,7 @@ css-font-loading 3 snapshot https://www.w3.org/TR/css-font-loading-3/#available-font-faces - +1 1 - available grid space @@ -438,11 +754,11 @@ https://drafts.csswg.org/css-page-3/#available-height - available height dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-available-height +https://w3c.github.io/window-management/#screen-available-height 1 screen @@ -459,11 +775,11 @@ https://www.w3.org/TR/css-page-3/#available-height - available height dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-available-height +https://www.w3.org/TR/window-management/#screen-available-height 1 screen @@ -488,6 +804,60 @@ https://www.w3.org/TR/css-sizing-3/#available 1 1 - +available locales list +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#available-locales-list +1 +1 +- +available named time zone +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +available named time zone identifier +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +available named time zone identifiers +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +available named time zones +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- available presentation display dfn presentation-api @@ -530,44 +900,44 @@ https://www.w3.org/TR/presentation-api/#dfn-available-presentation-display - available screen area dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-available-screen-area +https://w3c.github.io/window-management/#screen-available-screen-area 1 screen - available screen area dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-available-screen-area +https://www.w3.org/TR/window-management/#screen-available-screen-area 1 screen - available screen position dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-available-screen-position +https://w3c.github.io/window-management/#screen-available-screen-position 1 screen - available screen position dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-available-screen-position +https://www.w3.org/TR/window-management/#screen-available-screen-position 1 screen @@ -615,11 +985,11 @@ https://drafts.csswg.org/css-page-3/#available-width - available width dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-available-width +https://w3c.github.io/window-management/#screen-available-width 1 screen @@ -636,11 +1006,11 @@ https://www.w3.org/TR/css-page-3/#available-width - available width dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-available-width +https://www.w3.org/TR/window-management/#screen-available-width 1 screen @@ -840,6 +1210,17 @@ https://w3c.github.io/webcodecs/avc_codec_registration.html#dom-videoencoderconf VideoEncoderConfig - avc +dict-member +webcodecs-avc-codec-registration +webcodecs-avc-codec-registration +1 +current +https://w3c.github.io/webcodecs/avc_codec_registration.html#dom-videoencoderencodeoptions-avc +1 +1 +VideoEncoderEncodeOptions +- +avc enum-value webcodecs-avc-codec-registration webcodecs-avc-codec-registration @@ -861,6 +1242,17 @@ https://www.w3.org/TR/webcodecs-avc-codec-registration/#dom-videoencoderconfig-a 1 VideoEncoderConfig - +avc +dict-member +webcodecs-avc-codec-registration +webcodecs-avc-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-avc-codec-registration/#dom-videoencoderencodeoptions-avc +1 +1 +VideoEncoderEncodeOptions +- averageLoad attribute webaudio @@ -927,6 +1319,39 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-averagepool2d 1 MLGraphBuilder - +avif +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#avif-image-brand-avif +1 +1 +AVIF Image brand +- +avio +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#avif-intra-only-brand-avio +1 +1 +AVIF Intra-only brand +- +avis +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#avif-image-sequence-brand-avis +1 +1 +AVIF Image Sequence brand +- avoid value css-break-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-aw.data b/bikeshed/spec-data/readonly/anchors/anchors-aw.data index 625d46f138..e4999a0f6d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-aw.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-aw.data @@ -1,3 +1,13 @@ +Await +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#await +1 +1 +- Await(value) abstract-op ecmascript @@ -35,6 +45,6 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#awaits - +1 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ax.data b/bikeshed/spec-data/readonly/anchors/anchors-ax.data index 07ce0261d9..a4a6d3c36d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ax.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ax.data @@ -173,6 +173,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssskew-cssskew-ax-ay-ax 1 1 CSSSkew/CSSSkew(ax, ay) +CSSSkew/constructor(ax, ay) - ax attribute @@ -195,6 +196,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssskewx-cssskewx-ax-ax 1 1 CSSSkewX/CSSSkewX(ax) +CSSSkewX/constructor(ax) - axes attribute @@ -213,10 +215,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlreduceoptions-axes +https://webmachinelearning.github.io/webnn/#dom-mllayernormalizationoptions-axes 1 1 -MLReduceOptions +MLLayerNormalizationOptions - axes dict-member @@ -224,21 +226,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlresample2doptions-axes -1 -1 -MLResample2dOptions -- -axes -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlsliceoptions-axes +https://webmachinelearning.github.io/webnn/#dom-mlreduceoptions-axes 1 1 -MLSliceOptions +MLReduceOptions - axes dict-member @@ -246,10 +237,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlsqueezeoptions-axes +https://webmachinelearning.github.io/webnn/#dom-mlresample2doptions-axes 1 1 -MLSqueezeOptions +MLResample2dOptions - axes attribute @@ -268,21 +259,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlreduceoptions-axes -1 -1 -MLReduceOptions -- -axes -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlresample2doptions-axes +https://www.w3.org/TR/webnn/#dom-mllayernormalizationoptions-axes 1 1 -MLResample2dOptions +MLLayerNormalizationOptions - axes dict-member @@ -290,10 +270,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlsliceoptions-axes +https://www.w3.org/TR/webnn/#dom-mlreduceoptions-axes 1 1 -MLSliceOptions +MLReduceOptions - axes dict-member @@ -301,10 +281,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlsqueezeoptions-axes +https://www.w3.org/TR/webnn/#dom-mlresample2doptions-axes 1 1 -MLSqueezeOptions +MLResample2dOptions - axis attribute @@ -363,6 +343,16 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-tdth-axis HTMLTableCellElement - axis +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-axis + +1 +- +axis dict-member webnn webnn @@ -374,15 +364,49 @@ https://webmachinelearning.github.io/webnn/#dom-mlbatchnormalizationoptions-axis MLBatchNormalizationOptions - axis +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgatheroptions-axis +1 +1 +MLGatherOptions +- +axis +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-axis +1 +1 +MLGraphBuilder/argMin(input, axis, options) +MLGraphBuilder/argMax(input, axis, options) +- +axis +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-axis +1 +1 +MLGraphBuilder/concat(inputs, axis, options) +- +axis argument webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-concat-inputs-axis-axis +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-axis 1 1 -MLGraphBuilder/concat(inputs, axis) +MLGraphBuilder/softmax(input, axis, options) - axis dict-member @@ -396,6 +420,16 @@ https://webmachinelearning.github.io/webnn/#dom-mlsplitoptions-axis MLSplitOptions - axis +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-axis + +1 +- +axis attribute scroll-animations-1 scroll-animations @@ -440,15 +474,49 @@ https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-axis MLBatchNormalizationOptions - axis +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgatheroptions-axis +1 +1 +MLGatherOptions +- +axis +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-axis +1 +1 +MLGraphBuilder/argMin(input, axis, options) +MLGraphBuilder/argMax(input, axis, options) +- +axis argument webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-axis +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-axis 1 1 -MLGraphBuilder/concat(inputs, axis) +MLGraphBuilder/concat(inputs, axis, options) +- +axis +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-axis +1 +1 +MLGraphBuilder/softmax(input, axis, options) - axis dict-member @@ -512,27 +580,16 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacevariationaxis-axistag 1 FontFaceVariationAxis - -axis_space_have -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-axis_space_have - -1 -PatchRequest -- -axis_space_needed -dfn -ift -ift +axisTag +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacevariationaxis-axistag 1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-axis_space_needed - 1 -PatchRequest +FontFaceVariationAxis - axisheight dfn @@ -554,23 +611,3 @@ https://www.w3.org/TR/mathml-core/#dfn-axisheight 1 - -axisinterval -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#axisinterval - -1 -- -axisspace -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#axisspace - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ay.data b/bikeshed/spec-data/readonly/anchors/anchors-ay.data index 93b91aa4ad..fd5d458163 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ay.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ay.data @@ -65,6 +65,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssskew-cssskew-ax-ay-ay 1 1 CSSSkew/CSSSkew(ax, ay) +CSSSkew/constructor(ax, ay) - ay attribute @@ -87,4 +88,5 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssskewy-cssskewy-ay-ay 1 1 CSSSkewY/CSSSkewY(ay) +CSSSkewY/constructor(ay) - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-az.data b/bikeshed/spec-data/readonly/anchors/anchors-az.data index 3867184a35..3634946e8e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-az.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-az.data @@ -32,6 +32,26 @@ https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fedistantlight-azimuth feDistantLight - azimuth +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth +1 +1 +- +azimuth +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth +1 +1 +- +azimuth dfn css22 css @@ -160,6 +180,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-azure 1 1 <color> +<named-color> - azure dfn @@ -181,4 +202,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-azure 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-b_.data b/bikeshed/spec-data/readonly/anchors/anchors-b_.data index 31d829ebf0..bd6dc1c085 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-b_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-b_.data @@ -188,6 +188,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpucolordict-b GPUColorDict - b +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpucolor-b + +1 +GPUColor +- +b element html html @@ -203,10 +214,16 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-add-a-b-b +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-add-a-b-options-b 1 1 -MLGraphBuilder/add(a, b) +MLGraphBuilder/add(a, b, options) +MLGraphBuilder/sub(a, b, options) +MLGraphBuilder/mul(a, b, options) +MLGraphBuilder/div(a, b, options) +MLGraphBuilder/max(a, b, options) +MLGraphBuilder/min(a, b, options) +MLGraphBuilder/pow(a, b, options) - b argument @@ -214,10 +231,15 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-div-a-b-b +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-equal-a-b-options-b 1 1 -MLGraphBuilder/div(a, b) +MLGraphBuilder/equal(a, b, options) +MLGraphBuilder/greater(a, b, options) +MLGraphBuilder/greaterOrEqual(a, b, options) +MLGraphBuilder/lesser(a, b, options) +MLGraphBuilder/lesserOrEqual(a, b, options) +MLGraphBuilder/logicalNot(a, options) - b argument @@ -229,29 +251,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gemm-a-b-options- 1 1 MLGraphBuilder/gemm(a, b, options) -MLGraphBuilder/gemm(a, b) -- -b -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-matmul-a-b-b -1 -1 -MLGraphBuilder/matmul(a, b) -- -b -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-max-a-b-b -1 -1 -MLGraphBuilder/max(a, b) - b argument @@ -259,43 +258,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-min-a-b-b +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-matmul-a-b-options-b 1 1 -MLGraphBuilder/min(a, b) -- -b -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-mul-a-b-b -1 -1 -MLGraphBuilder/mul(a, b) -- -b -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pow-a-b-b -1 -1 -MLGraphBuilder/pow(a, b) -- -b -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sub-a-b-b -1 -1 -MLGraphBuilder/sub(a, b) +MLGraphBuilder/matmul(a, b, options) - b value @@ -353,94 +319,149 @@ https://www.w3.org/TR/css-color-5/#valdef-rgb-b rgb() - b -dict-member -geometry-1 -geometry +attribute +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-b +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-b 1 1 -DOMMatrix2DInit +CSSHWB - b -attribute -geometry-1 -geometry +argument +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-b +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-alpha-b 1 1 -DOMMatrixReadOnly -DOMMatrix +CSSHWB/CSSHWB(h, w, b, alpha) +CSSHWB/constructor(h, w, b, alpha) +CSSHWB/CSSHWB(h, w, b) +CSSHWB/constructor(h, w, b) - b -dict-member -webgpu -webgpu +attribute +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpucolordict-b +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-b 1 1 -GPUColorDict +CSSLab - b argument -webnn -webnn +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-b +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab-l-a-b-alpha-b 1 1 -MLGraphBuilder/add(a, b) +CSSLab/CSSLab(l, a, b, alpha) +CSSLab/constructor(l, a, b, alpha) +CSSLab/CSSLab(l, a, b) +CSSLab/constructor(l, a, b) - b -argument -webnn -webnn +attribute +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div-a-b-b +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-b 1 1 -MLGraphBuilder/div(a, b) +CSSOKLab - b argument -webnn -webnn +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-b +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-alpha-b 1 1 -MLGraphBuilder/gemm(a, b, options) -MLGraphBuilder/gemm(a, b) +CSSOKLab/CSSOKLab(l, a, b, alpha) +CSSOKLab/constructor(l, a, b, alpha) +CSSOKLab/CSSOKLab(l, a, b) +CSSOKLab/constructor(l, a, b) - b -argument -webnn -webnn +attribute +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-b +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-b 1 1 -MLGraphBuilder/matmul(a, b) +CSSRGB - b argument -webnn -webnn +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max-a-b-b +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb-r-g-b-alpha-b 1 1 -MLGraphBuilder/max(a, b) +CSSRGB/CSSRGB(r, g, b, alpha) +CSSRGB/constructor(r, g, b, alpha) +CSSRGB/CSSRGB(r, g, b) +CSSRGB/constructor(r, g, b) +- +b +dict-member +geometry-1 +geometry +1 +snapshot +https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-b +1 +1 +DOMMatrix2DInit +- +b +attribute +geometry-1 +geometry +1 +snapshot +https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-b +1 +1 +DOMMatrixReadOnly +DOMMatrix +- +b +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucolordict-b +1 +1 +GPUColorDict +- +b +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#gpucolor-b + +1 +GPUColor - b argument @@ -448,10 +469,16 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min-a-b-b +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-options-b 1 1 -MLGraphBuilder/min(a, b) +MLGraphBuilder/add(a, b, options) +MLGraphBuilder/sub(a, b, options) +MLGraphBuilder/mul(a, b, options) +MLGraphBuilder/div(a, b, options) +MLGraphBuilder/max(a, b, options) +MLGraphBuilder/min(a, b, options) +MLGraphBuilder/pow(a, b, options) - b argument @@ -459,10 +486,15 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul-a-b-b +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-options-b 1 1 -MLGraphBuilder/mul(a, b) +MLGraphBuilder/equal(a, b, options) +MLGraphBuilder/greater(a, b, options) +MLGraphBuilder/greaterOrEqual(a, b, options) +MLGraphBuilder/lesser(a, b, options) +MLGraphBuilder/lesserOrEqual(a, b, options) +MLGraphBuilder/logicalNot(a, options) - b argument @@ -470,10 +502,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow-a-b-b +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-b 1 1 -MLGraphBuilder/pow(a, b) +MLGraphBuilder/gemm(a, b, options) - b argument @@ -481,8 +513,8 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub-a-b-b +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-options-b 1 1 -MLGraphBuilder/sub(a, b) +MLGraphBuilder/matmul(a, b, options) - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ba.data b/bikeshed/spec-data/readonly/anchors/anchors-ba.data index d5d3a04356..5c2e37eb30 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ba.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ba.data @@ -74,6 +74,7 @@ https://drafts.csswg.org/web-animations-1/#dom-fillmode-backwards 1 1 FillMode +PlaybackDirection - "backwards" enum-value @@ -97,6 +98,17 @@ https://www.w3.org/TR/web-animations-1/#dom-fillmode-backwards 1 FillMode - +"backwards" +enum-value +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-fillmode-backwards +1 +1 +FillMode +- "bad-grammar" enum-value speech-api @@ -176,11 +188,11 @@ ResponseType - ::backdrop selector -fullscreen -fullscreen -1 +css-position-4 +css-position +4 current -https://fullscreen.spec.whatwg.org/#css-pe-backdrop +https://drafts.csswg.org/css-position-4/#selectordef-backdrop 1 1 - @@ -438,6 +450,16 @@ https://wicg.github.io/periodic-background-sync/#dictdef-backgroundsyncoptions 1 1 - +BackreferenceMatcher +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-backreference-matcher +1 +1 +- BackreferenceMatcher(rer, n, direction) abstract-op ecmascript @@ -520,6 +542,16 @@ https://w3c.github.io/webauthn/#typedefdef-base64urlstring 1 1 - +Base64URLString +typedef +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#typedefdef-base64urlstring +1 +1 +- BaseAudioContext interface webaudio @@ -782,24 +814,13 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-back 1 History - -back() -method -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigation-back -1 -1 -Navigation -- back(options) method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-back +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-back 1 1 Navigation @@ -883,7 +904,7 @@ filter-effects 2 current https://drafts.fxtf.org/filter-effects-2/#backdrop-root - +1 1 - backdrop root image @@ -914,6 +935,16 @@ webauthn current https://w3c.github.io/webauthn/#backed-up +1 +- +backed up +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#backed-up + 1 - backface-visibility @@ -957,14 +988,16 @@ https://drafts.csswg.org/css-color-3/#background 1 - background -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#background - +https://drafts.csswg.org/css-color-4/#valdef-color-background +1 1 +<color> +<deprecated-color> - background property @@ -1019,6 +1052,26 @@ https://wicg.github.io/scheduling-apis/#dom-taskpriority-background TaskPriority - background +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-background +1 +1 +- +background +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-background +1 +1 +- +background dfn css22 css @@ -1049,14 +1102,16 @@ https://www.w3.org/TR/css-color-3/#background 1 - background -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#background - +https://www.w3.org/TR/css-color-4/#valdef-color-background 1 +1 +<color> +<deprecated-color> - background dfn @@ -1086,6 +1141,26 @@ webcodecs snapshot https://www.w3.org/TR/webcodecs/#background-codec +1 +- +background color +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#background-color-layer + +1 +- +background color +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#background-color-layer + 1 - background fetch @@ -1169,6 +1244,46 @@ background-fetch current https://wicg.github.io/background-fetch/#background-fetch-task-source +1 +- +background image +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#background-images + +1 +- +background image +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#background-images + +1 +- +background image layer +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#background-image-layer + +1 +- +background image layer +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#background-image-layer + 1 - background painting area @@ -1272,6 +1387,26 @@ https://drafts.csswg.org/css2/#propdef-background-attachment 1 - background-attachment +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-background-attachment +1 +1 +- +background-attachment +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-background-attachment +1 +1 +- +background-attachment dfn css22 css @@ -1372,6 +1507,26 @@ https://drafts.csswg.org/css2/#propdef-background-color 1 - background-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-background-color +1 +1 +- +background-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-background-color +1 +1 +- +background-color dfn css22 css @@ -1412,6 +1567,26 @@ https://drafts.csswg.org/css2/#propdef-background-image 1 - background-image +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-background-image +1 +1 +- +background-image +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-background-image +1 +1 +- +background-image dfn css22 css @@ -1482,6 +1657,26 @@ https://drafts.csswg.org/css2/#propdef-background-position 1 - background-position +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-background-position +1 +1 +- +background-position +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-background-position +1 +1 +- +background-position dfn css22 css @@ -1553,6 +1748,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-background-repeat - background-repeat property +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat +1 +1 +- +background-repeat +property css22 css 1 @@ -1562,6 +1767,26 @@ https://drafts.csswg.org/css2/#propdef-background-repeat 1 - background-repeat +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat +1 +1 +- +background-repeat +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat +1 +1 +- +background-repeat dfn css22 css @@ -1581,6 +1806,46 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-background-repeat 1 1 - +background-repeat-block +property +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat-block +1 +1 +- +background-repeat-inline +property +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat-inline +1 +1 +- +background-repeat-x +property +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat-x +1 +1 +- +background-repeat-y +property +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat-y +1 +1 +- background-size property css-backgrounds-3 @@ -1601,27 +1866,103 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-background-size 1 1 - -backgroundColor -attribute -edit-context -edit-context +background-tbd +property +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#propdef-background-tbd +1 +1 +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams 1 current -https://w3c.github.io/edit-context/#dom-textformat-backgroundcolor +https://w3c.github.io/mediacapture-main/#dom-mediatrackcapabilities-backgroundblur 1 1 -TextFormat +MediaTrackCapabilities - -backgroundColor +backgroundBlur dict-member -edit-context -edit-context +mediacapture-streams +mediacapture-streams 1 current -https://w3c.github.io/edit-context/#dom-textformatinit-backgroundcolor +https://w3c.github.io/mediacapture-main/#dom-mediatrackconstraintset-backgroundblur 1 1 -TextFormatInit +MediaTrackConstraintSet +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-mediatracksettings-backgroundblur +1 +1 +MediaTrackSettings +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-mediatracksupportedconstraints-backgroundblur +1 +1 +MediaTrackSupportedConstraints +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-mediatrackcapabilities-backgroundblur +1 +1 +MediaTrackCapabilities +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-mediatrackconstraintset-backgroundblur +1 +1 +MediaTrackConstraintSet +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-mediatracksettings-backgroundblur +1 +1 +MediaTrackSettings +- +backgroundBlur +dict-member +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-mediatracksupportedconstraints-backgroundblur +1 +1 +MediaTrackSupportedConstraints - backgroundColor attribute @@ -1753,6 +2094,26 @@ https://www.w3.org/TR/filter-effects-1/#attr-valuedef-in-backgroundalpha 1 in - +backgroundblur +dfn +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#def-constraint-backgroundBlur + +1 +- +backgroundblur +dfn +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#def-constraint-backgroundBlur + +1 +- backgroundfetchabort event background-fetch @@ -1847,20 +2208,51 @@ storage storage 1 current -https://storage.spec.whatwg.org/#storage-proxy-map-backing-map +https://storage.spec.whatwg.org/#storage-proxy-map-backing-map + +1 +storage proxy map +- +backing observable array exotic object +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#backing-observable-array-exotic-object + +1 +- +backing struct +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-not-restored-reason-details-backing-struct + +1 +- +backing struct +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-not-restored-reasons-backing-struct 1 -storage proxy map - -backing observable array exotic object -dfn -webidl -webidl +backlog +dict-member +direct-sockets +direct-sockets 1 current -https://webidl.spec.whatwg.org/#backing-observable-array-exotic-object - +https://wicg.github.io/direct-sockets/#dom-tcpserversocketoptions-backlog +1 1 +TCPServerSocketOptions - backpressure dfn @@ -1880,6 +2272,26 @@ css current https://drafts.csswg.org/css2/#escaped-characters +1 +- +backslash escapes +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#escaped-characters +1 +1 +- +backslash escapes +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#escaped-characters +1 1 - backup element queue @@ -1900,6 +2312,16 @@ webauthn current https://w3c.github.io/webauthn/#backup-eligibility +1 +- +backup eligibility +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#backup-eligibility + 1 - backup eligible @@ -1910,6 +2332,16 @@ webauthn current https://w3c.github.io/webauthn/#backup-eligible +1 +- +backup eligible +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#backup-eligible + 1 - backup incumbent settings object stack @@ -1930,6 +2362,16 @@ webauthn current https://w3c.github.io/webauthn/#backup-state +1 +- +backup state +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#backup-state + 1 - backupEligible @@ -1943,6 +2385,17 @@ https://w3c.github.io/webauthn/#abstract-opdef-credential-record-backupeligible 1 credential record - +backupEligible +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-backupeligible +1 +1 +credential record +- backupState abstract-op webauthn-3 @@ -1954,6 +2407,17 @@ https://w3c.github.io/webauthn/#abstract-opdef-credential-record-backupstate 1 credential record - +backupState +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-backupstate +1 +1 +credential record +- backwards value css-animations-1 @@ -1966,6 +2430,29 @@ https://drafts.csswg.org/css-animations-1/#valdef-animation-fill-mode-backwards animation-fill-mode - backwards +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-fillmode-backwards +1 +1 +FillMode +PlaybackDirection +- +backwards +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#fill-mode-backwards + +1 +fill mode +- +backwards dfn selection-api selection-api @@ -2067,6 +2554,16 @@ badging current https://w3c.github.io/badging/#dfn-badge +1 +- +badge +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-badge + 1 - badge resource @@ -2108,10 +2605,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance +https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-balance 1 1 -text-wrap +text-wrap-style - balance value @@ -2130,10 +2627,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-wrap-balance +https://www.w3.org/TR/css-text-4/#valdef-text-wrap-style-balance 1 1 -text-wrap +text-wrap-style - balance-all value @@ -2368,6 +2865,17 @@ https://drafts.csswg.org/css-ruby-1/#ruby-base-box 1 - base +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#decomposition-base + +1 +decomposition +- +base element html html @@ -2383,6 +2891,30 @@ url url 1 current +https://url.spec.whatwg.org/#dom-url-canparse-url-base-base +1 +1 +URL/canParse(url, base) +URL/canParse(url) +- +base +argument +url +url +1 +current +https://url.spec.whatwg.org/#dom-url-parse-url-base-base +1 +1 +URL/parse(url, base) +URL/parse(url) +- +base +argument +url +url +1 +current https://url.spec.whatwg.org/#dom-url-url-url-base-base 1 1 @@ -2404,6 +2936,17 @@ JsonLdOptions - base dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#decomposition-base + +1 +decomposition +- +base +dfn css-ruby-1 css-ruby 1 @@ -2449,7 +2992,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_base_direction +https://w3c.github.io/i18n-glossary/#dfn-base-direction 1 - @@ -2465,21 +3008,21 @@ https://w3c.github.io/json-ld-syntax/#dfn-base-direction - base direction dfn -appmanifest -appmanifest +pub-manifest +pub-manifest 1 current -https://w3c.github.io/manifest/#dfn-base-direction +https://w3c.github.io/pub-manifest/#dfn-base-direction 1 - base direction dfn -appmanifest -appmanifest +rdf12-concepts +rdf-concepts 1 -snapshot -https://www.w3.org/TR/appmanifest/#dfn-base-direction +current +https://w3c.github.io/rdf-concepts/spec/#dfn-base-direction 1 - @@ -2489,7 +3032,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_base_direction +https://www.w3.org/TR/i18n-glossary/#dfn-base-direction 1 - @@ -2502,6 +3045,26 @@ snapshot https://www.w3.org/TR/json-ld11/#dfn-base-direction +- +base direction +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-base-direction + +1 +- +base direction +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-base-direction + +1 - base iri dfn @@ -2512,6 +3075,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-base-iri 1 +- +base iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-base-iri +1 + - base level dfn @@ -2611,7 +3184,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-base-type - +1 1 CSSNumericValue - @@ -2654,6 +3227,16 @@ json-ld-api current https://w3c.github.io/json-ld-api/#dfn-base-url +1 +- +base url +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-base-url + 1 - base url @@ -2664,6 +3247,16 @@ json-ld-api snapshot https://www.w3.org/TR/json-ld11-api/#dfn-base-url +1 +- +base url +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-base-url + 1 - base url change steps @@ -2736,6 +3329,16 @@ sri snapshot https://www.w3.org/TR/SRI/#dfn-base64-encoding +1 +- +base64 vlq +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#base64-vlq + 1 - base64-value @@ -3102,7 +3705,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-exec-input-baseurl-baseurl +https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec-input-baseurl-baseurl 1 1 URLPattern/exec(input, baseURL) @@ -3115,7 +3718,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-test-input-baseurl-baseurl +https://urlpattern.spec.whatwg.org/#dom-urlpattern-test-input-baseurl-baseurl 1 1 URLPattern/test(input, baseURL) @@ -3128,7 +3731,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-baseurl-options-baseurl +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-baseurl-options-baseurl 1 1 URLPattern/URLPattern(input, baseURL, options) @@ -3142,7 +3745,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-baseurl +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-baseurl 1 1 URLPatternInit @@ -3422,6 +4025,17 @@ https://www.w3.org/TR/SVG2/types.html#__svg__SVGAnimatedString__baseVal 1 SVGAnimatedString - +baseValue +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-pasignalvalue-basevalue +1 +1 +PASignalValue +- baseVertex argument webgpu @@ -3444,17 +4058,6 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-drawindexed-indexcount- 1 GPURenderCommandsMixin/drawIndexed(indexCount, instanceCount, firstIndex, baseVertex, firstInstance) - -base_checksum -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-base_checksum - -1 -PatchRequest -- baseaudiocontext interface webaudio @@ -3781,16 +4384,6 @@ css-inline snapshot https://www.w3.org/TR/css-inline-3/#baseline-alignment-preference 1 -1 -- -baseline attribute allow list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#baseline-attribute-allow-list - 1 - baseline content-alignment @@ -3811,16 +4404,6 @@ css-align snapshot https://www.w3.org/TR/css-align-3/#baseline-content-alignment 1 -1 -- -baseline element allow list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#baseline-element-allow-list - 1 - baseline of a cell @@ -4114,16 +4697,6 @@ https://drafts.css-houdini.org/font-metrics-api-1/#dom-fontmetrics-baselines 1 FontMetrics - -baselines -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-baselines - -1 -- basic dfn webauthn-3 @@ -4180,7 +4753,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_basic_language_range +https://w3c.github.io/i18n-glossary/#dfn-basic-language-range 1 - @@ -4190,7 +4763,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_basic_language_range +https://w3c.github.io/i18n-glossary/#dfn-basic-language-range 1 - @@ -4200,7 +4773,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_basic_language_range +https://www.w3.org/TR/i18n-glossary/#dfn-basic-language-range 1 - @@ -4210,7 +4783,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_basic_language_range +https://www.w3.org/TR/i18n-glossary/#dfn-basic-language-range 1 - @@ -4220,7 +4793,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bmp +https://w3c.github.io/i18n-glossary/#dfn-basic-multilingual-plane 1 - @@ -4230,7 +4803,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bmp +https://www.w3.org/TR/i18n-glossary/#dfn-basic-multilingual-plane 1 - @@ -4240,7 +4813,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bmp +https://w3c.github.io/i18n-glossary/#dfn-basic-multilingual-plane 1 - @@ -4250,28 +4823,28 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bmp +https://www.w3.org/TR/i18n-glossary/#dfn-basic-multilingual-plane 1 - basic observable properties dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-basic-observable-properties +https://w3c.github.io/window-management/#screen-basic-observable-properties 1 screen - basic observable properties dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-basic-observable-properties +https://www.w3.org/TR/window-management/#screen-basic-observable-properties 1 screen @@ -4344,6 +4917,16 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#batch-cache-operations +1 +- +batch or fetch trusted bidding signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#batch-or-fetch-trusted-bidding-signals + 1 - batchNormalization(input, mean, variance) @@ -4390,6 +4973,49 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization 1 MLGraphBuilder - +batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#batching-scope + +1 +- +batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache-entry-batching-scope + +1 +contribution cache entry +- +batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry-batching-scope + +1 +on event contribution cache entry +- +batching scope map +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-batching-scope-map + +1 +auction config +- battery status task source dfn battery-status diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bc.data b/bikeshed/spec-data/readonly/anchors/anchors-bc.data index 7d505333aa..75cc5a3b36 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bc.data @@ -306,3 +306,14 @@ https://www.w3.org/TR/webgpu/#dom-gputextureformat-bc7-rgba-unorm-srgb 1 GPUTextureFormat - +bcdDevice +dict-member +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dom-usbblocklistentry-bcddevice +1 +1 +USBBlocklistEntry +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-be.data b/bikeshed/spec-data/readonly/anchors/anchors-be.data index 373ad1a903..a50368d406 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-be.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-be.data @@ -1,46 +1,13 @@ -"beginning" +"belowThreshold" enum-value -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestamplocation-beginning -1 -1 -GPUComputePassTimestampLocation -- -"beginning" -enum-value -webgpu -webgpu +turtledove +turtledove 1 current -https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestamplocation-beginning -1 -1 -GPURenderPassTimestampLocation -- -"beginning" -enum-value -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestamplocation-beginning -1 -1 -GPUComputePassTimestampLocation -- -"beginning" -enum-value -webgpu -webgpu +https://wicg.github.io/turtledove/#dom-kanonstatus-belowthreshold 1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestamplocation-beginning 1 -1 -GPURenderPassTimestampLocation +KAnonStatus - ::before selector @@ -92,6 +59,46 @@ https://drafts.csswg.org/css2/#selectordef-before 1 1 - +:before +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x2 +1 +1 +- +:before +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x2 +1 +1 +- +:before +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x57 +1 +1 +- +:before +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x57 +1 +1 +- BeforeInstallPromptEvent interface manifest-incubations @@ -130,6 +137,17 @@ webauthn current https://w3c.github.io/webauthn/#authdata-flags-be +1 +authData/flags +- +be +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#authdata-flags-be + 1 authData/flags - @@ -152,6 +170,46 @@ snapshot https://www.w3.org/TR/css-nav-1/#directionally-scroll-an-element 1 +- +bearer credential +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-bearer-credentials + + +- +bearer credential +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-bearer-credentials + + +- +bearer credentials +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-bearer-credentials + + +- +bearer credentials +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-bearer-credentials + + - bearing angle dfn @@ -231,6 +289,26 @@ html current https://html.spec.whatwg.org/multipage/infrastructure.html#becomes-connected 1 +1 +- +becomes lost +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#becomes-lost + +1 +- +becomes lost +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#becomes-lost + 1 - before @@ -256,15 +334,35 @@ https://drafts.csswg.org/css-content-3/#valdef-content-before content() - before +value +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#valdef-scroll-marker-group-before +1 +1 +scroll-marker-group +- +before dfn -css-view-transitions-1 -css-view-transitions +css2 +css 1 current -https://drafts.csswg.org/css-view-transitions-1/#phases-before - +https://www.w3.org/TR/CSS21/generate.html#x2 +1 +1 +- +before +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x2 +1 1 -phases - before value @@ -277,17 +375,6 @@ https://www.w3.org/TR/css-content-3/#valdef-content-before 1 content() - -before -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#phases-before - -1 -phases -- before attribute name state dfn html @@ -410,6 +497,16 @@ https://www.w3.org/TR/web-animations-1/#animation-effect-before-phase 1 animation effect - +before request sent map +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#before-request-sent-map + +1 +- before() method dom @@ -432,6 +529,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-before 1 AnimationEffect - +before() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-before +1 +1 +AnimationEffect +- before(...effects) method web-animations-2 @@ -443,6 +551,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-before 1 AnimationEffect - +before(...effects) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-before +1 +1 +AnimationEffect +- before(...nodes) method dom @@ -522,7 +641,7 @@ input-events snapshot https://www.w3.org/TR/input-events-2/#dfn-beforeinput - +1 - beforeinput dfn @@ -693,6 +812,17 @@ https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-begincomputepass 1 GPUCommandEncoder - +beginIndex +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingsegment-beginindex +1 +1 +HandwritingSegment +- beginOcclusionQuery(queryIndex) method webgpu @@ -726,6 +856,17 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-beginpath 1 CanvasDrawPath - +beginPointIndex +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawingsegment-beginpointindex +1 +1 +HandwritingDrawingSegment +- beginRenderPass(descriptor) method webgpu @@ -768,6 +909,72 @@ https://www.w3.org/TR/cssom-view-1/#beginning-edges 1 - +beginningOfPassWriteIndex +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestampwrites-beginningofpasswriteindex +1 +1 +GPUComputePassTimestampWrites +- +beginningOfPassWriteIndex +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestampwrites-beginningofpasswriteindex +1 +1 +GPURenderPassTimestampWrites +- +beginningOfPassWriteIndex +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestampwrites-beginningofpasswriteindex +1 +1 +GPUComputePassTimestampWrites +- +beginningOfPassWriteIndex +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestampwrites-beginningofpasswriteindex +1 +1 +GPURenderPassTimestampWrites +- +beginningPadding +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-beginningpadding +1 +1 +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) +- +beginningPadding +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-beginningpadding +1 +1 +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) +- beginusingpinuvauthtoken dfn fido-v2.1 @@ -943,6 +1150,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-beige 1 1 <color> +<named-color> - beige dfn @@ -964,6 +1172,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-beige 1 1 <color> +<named-color> - being activated dfn @@ -992,7 +1201,7 @@ html 1 current https://html.spec.whatwg.org/multipage/rendering.html#being-rendered - +1 1 - being used as relevant canvas fallback content diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bf.data b/bikeshed/spec-data/readonly/anchors/anchors-bf.data index 40bbd3ff9d..976f7b1615 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bf.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bf.data @@ -28,3 +28,13 @@ https://www.w3.org/TR/css-display-3/#bfc 1 1 - +bfcache blocking details +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#concept-document-bfcache-blocking-details + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bg.data b/bikeshed/spec-data/readonly/anchors/anchors-bg.data index a6d087d101..074e5ef0b7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bg.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bg.data @@ -92,7 +92,7 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpufeaturename-bgra8unorm-storage +https://gpuweb.github.io/gpuweb/#bgra8unorm-storage 1 1 GPUFeatureName @@ -103,7 +103,7 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpufeaturename-bgra8unorm-storage +https://www.w3.org/TR/webgpu/#bgra8unorm-storage 1 1 GPUFeatureName @@ -170,6 +170,16 @@ https://drafts.csswg.org/css-backgrounds-3/#typedef-bg-position - <bg-position> type +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#typedef-bg-position +1 +1 +- +<bg-position> +type css-backgrounds-3 css-backgrounds 3 @@ -353,6 +363,28 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-tr-bgcolor 1 tr - +bgra8unorm +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-bgra8unorm + +1 +texel format +- +bgra8unorm +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-bgra8unorm + +1 +texel format +- bgsound element html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bi.data b/bikeshed/spec-data/readonly/anchors/anchors-bi.data index 3c35600845..6b2f4a05f0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bi.data @@ -47,6 +47,56 @@ current https://drafts.csswg.org/css2/#bitmap-media-group +- +'bitmap' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#bitmap-media-group +1 +1 +- +'bitmap' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#bitmap-media-group +1 +1 +- +<bind> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_bind + +1 +- +<bind> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_bind + +1 +- +BiddingBrowserSignals +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-biddingbrowsersignals +1 +1 - BigInt interface @@ -79,6 +129,16 @@ https://webidl.spec.whatwg.org/#idl-BigInt64Array 1 1 - +BigIntBitwiseOp +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-bigintbitwiseop +1 +1 +- BigIntBitwiseOp(op, x, y) abstract-op ecmascript @@ -109,7 +169,7 @@ https://webidl.spec.whatwg.org/#idl-BigUint64Array 1 1 - -BinaryAnd(x, y) +BinaryAnd abstract-op ecmascript ecmascript @@ -119,13 +179,13 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-bina 1 1 - -BinaryData -typedef -css-font-loading-3 -css-font-loading -3 +BinaryAnd(x, y) +abstract-op +ecmascript +ecmascript +1 current -https://drafts.csswg.org/css-font-loading-3/#typedefdef-binarydata +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-binaryand 1 1 - @@ -139,6 +199,16 @@ https://www.w3.org/TR/css-font-loading-3/#typedefdef-binarydata 1 1 - +BinaryOr +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-binaryor +1 +1 +- BinaryOr(x, y) abstract-op ecmascript @@ -159,6 +229,16 @@ https://websockets.spec.whatwg.org/#enumdef-binarytype 1 1 - +BinaryXor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-binaryxor +1 +1 +- BinaryXor(x, y) abstract-op ecmascript @@ -473,6 +553,17 @@ https://drafts.fxtf.org/filter-effects-1/#element-attrdef-feconvolvematrix-bias feConvolveMatrix - bias +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-bias + +1 +Mapping Entry +- +bias dict-member webnn webnn @@ -544,6 +635,17 @@ webnn webnn 1 current +https://webmachinelearning.github.io/webnn/#dom-mllayernormalizationoptions-bias +1 +1 +MLLayerNormalizationOptions +- +bias +dict-member +webnn +webnn +1 +current https://webmachinelearning.github.io/webnn/#dom-mllstmcelloptions-bias 1 1 @@ -561,6 +663,17 @@ https://webmachinelearning.github.io/webnn/#dom-mllstmoptions-bias MLLstmOptions - bias +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-bias + +1 +Mapping Entry +- +bias attribute filter-effects-1 filter-effects @@ -654,6 +767,17 @@ webnn webnn 1 snapshot +https://www.w3.org/TR/webnn/#dom-mllayernormalizationoptions-bias +1 +1 +MLLayerNormalizationOptions +- +bias +dict-member +webnn +webnn +1 +snapshot https://www.w3.org/TR/webnn/#dom-mllstmcelloptions-bias 1 1 @@ -710,25 +834,340 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-biased-fragment-depth 1 1 - -biaxial +bicameral dfn -generic-sensor -generic-sensor +i18n-glossary +i18n-glossary 1 current -https://w3c.github.io/sensors/#biaxial - +https://w3c.github.io/i18n-glossary/#dfn-bicameral 1 + - -biaxial +bicameral dfn -generic-sensor -generic-sensor +i18n-glossary +i18n-glossary 1 snapshot -https://www.w3.org/TR/generic-sensor/#biaxial +https://www.w3.org/TR/i18n-glossary/#dfn-bicameral +1 + +- +bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#decoded-additional-bid-bid + +1 +decoded additional bid +- +bid +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-bid +1 +1 +GenerateBidOutput +- +bid +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-bid +1 +1 +ReportingBrowserSignals +- +bid +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoreadoutput-bid +1 +1 +ScoreAdOutput +- +bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-bid + +1 +generated bid +- +bid ad +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-bid-ad + +1 +generated bid +- +bid count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-browser-signals-bid-count + +1 +server auction browser signals +- +bid counts +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-bid-counts + +1 +interest group +- +bid debug reporting info +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info + +1 +- +bid duration +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-bid-duration + +1 +generated bid +- +bid in seller currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-bid-in-seller-currency + +1 +generated bid +- +bid with currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-with-currency + +1 +- +bid-reject-reason +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value-bid-reject-reason 1 +signal base value +- +bidCount +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-bidcount +1 +1 +BiddingBrowserSignals +- +bidCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-bidcurrency +1 +1 +GenerateBidOutput +- +bidCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-bidcurrency +1 +1 +ReportingBrowserSignals +- +bidCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoreadoutput-bidcurrency +1 +1 +ScoreAdOutput +- +bidCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-bidcurrency +1 +1 +ScoringBrowserSignals +- +bidder debug loss report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-bidder-debug-loss-report-url + +1 +bid debug reporting info +- +bidder debug win report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-bidder-debug-win-report-url + +1 +bid debug reporting info +- +bidding data version +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-bidding-data-version + +1 +leading bid info +- +bidding script failure bucket +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bidding-script-failure-bucket + +1 +- +bidding signals keys +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-interest-group-bidding-signals-keys + +1 +server auction interest group +- +bidding signals per interest group data +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bidding-signals-per-interest-group-data + +1 +- +bidding url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-bidding-url + +1 +interest group +- +bidding wasm helper url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-bidding-wasm-helper-url + +1 +interest group +- +biddingDurationMsec +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-biddingdurationmsec +1 +1 +ScoringBrowserSignals +- +biddingLogicURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-biddinglogicurl +1 +1 +GenerateBidInterestGroup +- +biddingWasmHelperURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-biddingwasmhelperurl +1 +1 +GenerateBidInterestGroup - bidi dfn @@ -736,7 +1175,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bidirectional_text +https://w3c.github.io/i18n-glossary/#dfn-bidirectional-text 1 - @@ -746,7 +1185,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bidirectional_text +https://www.w3.org/TR/i18n-glossary/#dfn-bidirectional-text 1 - @@ -756,7 +1195,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_uba +https://w3c.github.io/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -766,7 +1205,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_uba +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -819,6 +1258,26 @@ snapshot https://www.w3.org/TR/css-text-4/#bidi-formatting-characters 1 +- +bidi isolate +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-bidi-isolate +1 + +- +bidi isolate +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-bidi-isolate +1 + - bidi isolation dfn @@ -927,7 +1386,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#bidi-session - +1 1 - bidi text @@ -936,7 +1395,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bidirectional_text +https://w3c.github.io/i18n-glossary/#dfn-bidirectional-text 1 - @@ -946,7 +1405,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bidirectional_text +https://www.w3.org/TR/i18n-glossary/#dfn-bidirectional-text 1 - @@ -1106,6 +1565,26 @@ https://www.w3.org/TR/webtransport/#stream-bidirectional 1 stream +- +bidirectional isolate +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-bidi-isolate +1 + +- +bidirectional isolate +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-bidi-isolate +1 + - bidirectional text dfn @@ -1113,7 +1592,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bidirectional_text +https://w3c.github.io/i18n-glossary/#dfn-bidirectional-text 1 - @@ -1123,7 +1602,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bidirectional_text +https://w3c.github.io/i18n-glossary/#dfn-bidirectional-text 1 - @@ -1133,7 +1612,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bidirectional_text +https://www.w3.org/TR/i18n-glossary/#dfn-bidirectional-text 1 - @@ -1143,7 +1622,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bidirectional_text +https://www.w3.org/TR/i18n-glossary/#dfn-bidirectional-text 1 - @@ -1207,6 +1686,77 @@ https://drafts.csswg.org/css2/#bidirectionality-bidi 1 - +bidirectionality (bidi) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x45 +1 +1 +- +bidirectionality (bidi) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x45 +1 +1 +- +bidirectionally broadcastable +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#bidirectionally-broadcastable + +1 +- +bidirectionally broadcastable +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#bidirectionally-broadcastable + +1 +- +bidirectionally broadcasting +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#bidirectionally-broadcasting + +1 +- +bidirectionally broadcasting +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#bidirectionally-broadcasting + +1 +- +bids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-bids + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- big element html @@ -1296,7 +1846,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-BigInteger -1 + 1 - billing @@ -1316,6 +1866,26 @@ output/autocomplete select/autocomplete textarea/autocomplete - +billing address +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-billing-address + +1 +- +billing address +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-billing-address + +1 +- binary data dfn fs @@ -1722,6 +2292,28 @@ https://www.w3.org/TR/webgpu/#binding-usage 1 - +binding_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-binding_attr + +1 +syntax +- +binding_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-binding_attr + +1 +syntax +- bioenroll dfn fido-v2.1 @@ -1813,6 +2405,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-bisque 1 1 <color> +<named-color> - bisque dfn @@ -1834,38 +2427,27 @@ https://www.w3.org/TR/css-color-4/#valdef-color-bisque 1 1 <color> +<named-color> - -bit depth +bit debit dfn -png-spec -png-spec +shared-storage +shared-storage 1 current -https://w3c.github.io/PNG-spec/#dfn-bit-depth +https://wicg.github.io/shared-storage/#bit-debit 1 - -bitcast +bit pack dfn -wgsl -wgsl +turtledove +turtledove 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-bitcast +https://wicg.github.io/turtledove/#bit-pack 1 -syntax_kw -- -bitcast -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-bitcast - -1 -syntax_kw - bitmap dfn @@ -2052,6 +2634,17 @@ webcodecs webcodecs 1 current +https://w3c.github.io/webcodecs/#dom-audioencoderconfig-bitratemode +1 +1 +AudioEncoderConfig +- +bitrateMode +dict-member +webcodecs +webcodecs +1 +current https://w3c.github.io/webcodecs/#dom-videoencoderconfig-bitratemode 1 1 @@ -2063,11 +2656,33 @@ webcodecs webcodecs 1 snapshot +https://www.w3.org/TR/webcodecs/#dom-audioencoderconfig-bitratemode +1 +1 +AudioEncoderConfig +- +bitrateMode +dict-member +webcodecs +webcodecs +1 +snapshot https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-bitratemode 1 1 VideoEncoderConfig - +bits +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#bit-debit-bits + +1 +bit debit +- bitsPerSecond dict-member mediastream-recording diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bl.data b/bikeshed/spec-data/readonly/anchors/anchors-bl.data index b336bc737d..75c2efb45b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bl.data @@ -118,6 +118,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#permissiondef-bluetooth 1 1 - +"bluetooth-le-scan" +enum-value +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-permissionname-bluetooth-le-scan +1 +1 +PermissionName +- 'block' grammar csp3 @@ -232,6 +243,27 @@ https://www.w3.org/TR/compositing-1/#ltblendmodegt 1 1 - +<block-contents> +type +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#typedef-block-contents +1 +1 +- +<block-ellipsis> +value +css-overflow-4 +css-overflow +4 +current +https://drafts.csswg.org/css-overflow-4/#valdef-line-clamp-block-ellipsis +1 +1 +line-clamp +- BLUE const webgpu @@ -452,6 +484,16 @@ https://www.w3.org/TR/FileAPI/#dfn-BlobPropertyBag 1 1 - +BlockDeclarationInstantiation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-blockdeclarationinstantiation +1 +1 +- BlockDeclarationInstantiation(code, env) abstract-op ecmascript @@ -542,6 +584,38 @@ current https://webbluetoothcg.github.io/web-bluetooth/#typedefdef-bluetoothcharacteristicuuid 1 +- +BluetoothDataFilter +interface +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothdatafilter +1 +1 +- +BluetoothDataFilter() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-bluetoothdatafilter +1 +1 +BluetoothDataFilter +- +BluetoothDataFilter(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-bluetoothdatafilter +1 +1 +BluetoothDataFilter - BluetoothDataFilterInit dictionary @@ -583,6 +657,48 @@ https://webbluetoothcg.github.io/web-bluetooth/#bluetoothdeviceeventhandlers 1 1 - +BluetoothLEScan +interface +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothlescan +1 +1 +- +BluetoothLEScanFilter +interface +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothlescanfilter +1 +1 +- +BluetoothLEScanFilter() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-bluetoothlescanfilter +1 +1 +BluetoothLEScanFilter +- +BluetoothLEScanFilter(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-bluetoothlescanfilter +1 +1 +BluetoothLEScanFilter +- BluetoothLEScanFilterInit dictionary web-bluetooth @@ -593,6 +709,68 @@ https://webbluetoothcg.github.io/web-bluetooth/#dictdef-bluetoothlescanfilterini 1 1 - +BluetoothLEScanOptions +dictionary +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dictdef-bluetoothlescanoptions +1 +1 +- +BluetoothLEScanPermissionDescriptor +dictionary +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dictdef-bluetoothlescanpermissiondescriptor +1 +1 +- +BluetoothLEScanPermissionResult +interface +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothlescanpermissionresult +1 +1 +- +BluetoothManufacturerDataFilter +interface +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothmanufacturerdatafilter +1 +1 +- +BluetoothManufacturerDataFilter() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothmanufacturerdatafilter-bluetoothmanufacturerdatafilter +1 +1 +BluetoothManufacturerDataFilter +- +BluetoothManufacturerDataFilter(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothmanufacturerdatafilter-bluetoothmanufacturerdatafilter +1 +1 +BluetoothManufacturerDataFilter +- BluetoothManufacturerDataFilterInit dictionary web-bluetooth @@ -683,6 +861,38 @@ https://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattservice 1 1 - +BluetoothServiceDataFilter +interface +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothservicedatafilter +1 +1 +- +BluetoothServiceDataFilter() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothservicedatafilter-bluetoothservicedatafilter +1 +1 +BluetoothServiceDataFilter +- +BluetoothServiceDataFilter(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothservicedatafilter-bluetoothservicedatafilter +1 +1 +BluetoothServiceDataFilter +- BluetoothServiceDataFilterInit dictionary web-bluetooth @@ -778,28 +988,6 @@ https://www.w3.org/TR/css-syntax-3/#square-block 1 CSS - -_blankspace -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-_blankspace - -1 -syntax -- -_blankspace -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-_blankspace - -1 -syntax -- black dfn css-color-3 @@ -820,6 +1008,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-black 1 1 <color> +<named-color> - black value @@ -863,6 +1052,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-black 1 1 <color> +<named-color> - black dfn @@ -895,6 +1085,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-blanchedalmond 1 1 <color> +<named-color> - blanchedalmond dfn @@ -916,6 +1107,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-blanchedalmond 1 1 <color> +<named-color> - blank dfn @@ -935,6 +1127,16 @@ html current https://html.spec.whatwg.org/multipage/rendering.html#concept-rendering-blank +1 +- +blank line +dfn +rdf12-n-quads +rdf-n-quads +1 +current +https://w3c.github.io/rdf-n-quads/spec/#dfn-blank-line + 1 - blank line @@ -945,6 +1147,26 @@ rdf-n-triples current https://w3c.github.io/rdf-n-triples/spec/#dfn-blank-line +1 +- +blank line +dfn +rdf12-n-quads +rdf-n-quads +1 +snapshot +https://www.w3.org/TR/rdf12-n-quads/#dfn-blank-line + +1 +- +blank line +dfn +rdf12-n-triples +rdf-n-triples +1 +snapshot +https://www.w3.org/TR/rdf12-n-triples/#dfn-blank-line + 1 - blank node @@ -955,6 +1177,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-blank-node +1 +- +blank node +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-blank-node + 1 - blank node identifier @@ -966,6 +1198,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-blank-node-identifier +- +blank node identifier +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-blank-node-identifier + + - blank node identifiers dfn @@ -976,6 +1218,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-blank-node-identifier +- +blank node identifiers +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-blank-node-identifier + + - blank node to quads map dfn @@ -1005,6 +1257,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-blank-node +1 +- +blank nodes +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-blank-node + 1 - blankspace @@ -1061,6 +1323,17 @@ https://drafts.csswg.org/css-page-3/#descdef-page-bleed @page - bleed +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-bleed +1 +1 +CSSPageDescriptors +- +bleed descriptor css-page-3 css-page @@ -1155,6 +1428,90 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrcompositionlayer-blendtexturesourceal 1 XRCompositionLayer - +blend_src +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#attribute-blend_src + +1 +attribute +- +blend_src +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#attribute-blend_src + +1 +attribute +- +blend_src_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-blend_src_attr + +1 +syntax +- +blend_src_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-blend_src_attr + +1 +syntax +- +blendable +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#blendable + +1 +- +blendable +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#blendable + +1 +- +blendable format +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#blendable + +1 +- +blendable format +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#blendable + +1 +- blink value css-text-decor-3 @@ -1701,7 +2058,7 @@ current https://drafts.csswg.org/css-gcpm-3/#footnote-display-block 1 1 -propdef-footnote-display +footnote-display - block value @@ -1772,6 +2129,37 @@ scroll-timeline-axis view-timeline-axis - block +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#value-def-block +1 +1 +- +block +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#value-def-block +1 +1 +- +block +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-size-block +1 +1 +anchor-size() +- +block value css-box-4 css-box @@ -1832,7 +2220,7 @@ css-gcpm-3 css-gcpm 3 snapshot -https://www.w3.org/TR/css-gcpm-3/#valuedef-block +https://www.w3.org/TR/css-gcpm-3/#valdef-footnote-policy-block 1 1 footnote-policy @@ -1904,6 +2292,26 @@ https://www.w3.org/TR/scroll-animations-1/#valdef-scroll-block scroll() scroll-timeline-axis view-timeline-axis +- +block (unicode) +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-block-unicode + + +- +block (unicode) +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-block-unicode + + - block access dfn @@ -1983,16 +2391,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#block-axis 1 -1 -- -block axis -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-block-axis - 1 - block bad port @@ -2027,6 +2425,26 @@ https://drafts.csswg.org/css-display-4/#block-box - block box dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x8 +1 +1 +- +block box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x8 +1 +1 +- +block box +dfn css-display-3 css-display 3 @@ -2123,6 +2541,26 @@ css current https://drafts.csswg.org/css2/#block-container-box +1 +- +block container box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#block-container-box +1 +1 +- +block container box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#block-container-box +1 1 - block container box @@ -2175,15 +2613,25 @@ https://www.w3.org/TR/css-writing-modes-4/#block-dimension 1 1 - -block dimension +block direction dfn -mathml-core -mathml-core +i18n-glossary +i18n-glossary 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-block-dimension +current +https://w3c.github.io/i18n-glossary/#dfn-block-direction + +- +block direction +dfn +i18n-glossary +i18n-glossary 1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-block-direction + + - block elements dfn @@ -2397,11 +2845,11 @@ https://drafts.csswg.org/css-overflow-4/#block-overflow-ellipsis - block overflow ellipsis dfn -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#block-overflow-ellipsis +https://www.w3.org/TR/css-overflow-4/#block-overflow-ellipsis 1 - @@ -2413,26 +2861,6 @@ html current https://html.spec.whatwg.org/multipage/dom.html#block-rendering -1 -- -block row -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#block-row - -1 -- -block row -dfn -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#block-row - 1 - block scripts @@ -2513,16 +2941,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#block-size 1 -1 -- -block size -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-block-size - 1 - block start @@ -2637,13 +3055,25 @@ https://drafts.csswg.org/css-overflow-4/#propdef-block-ellipsis - block-ellipsis property -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#propdef-block-ellipsis +https://www.w3.org/TR/css-overflow-4/#propdef-block-ellipsis +1 +1 +- +block-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-end 1 1 +position-area +<position-area> - block-end value @@ -2711,6 +3141,18 @@ https://drafts.csswg.org/css-writing-modes-4/#block-end - block-end value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-end +1 +1 +inset-area +<inset-area> +- +block-end +value css-box-4 css-box 4 @@ -2835,6 +3277,26 @@ https://drafts.csswg.org/css-display-4/#block-level-box - block-level box dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x5 +1 +1 +- +block-level box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x5 +1 +1 +- +block-level box +dfn css-display-3 css-display 3 @@ -2883,6 +3345,26 @@ https://www.w3.org/TR/css-display-3/#block-level 1 1 - +block-level element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#block-level +1 +1 +- +block-level element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#block-level +1 +1 +- block-level elements dfn css22 @@ -2904,13 +3386,72 @@ https://www.w3.org/TR/css-layout-api-1/#dom-layoutsizingmode-block-like 1 LayoutSizingMode - +block-self-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-self-end +1 +1 +position-area +<position-area> +- +block-self-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-self-end +1 +1 +inset-area +<inset-area> +- +block-self-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-self-start +1 +1 +position-area +<position-area> +- +block-self-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-self-start +1 +1 +inset-area +<inset-area> +- +block-size +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-block-size +1 +1 +CSSPositionTryDescriptors +- block-size descriptor -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#descdef-container-block-size +https://drafts.csswg.org/css-conditional-5/#descdef-container-block-size 1 1 @container @@ -2947,6 +3488,17 @@ https://drafts.csswg.org/css-writing-modes-4/#block-size - block-size descriptor +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#descdef-container-block-size +1 +1 +@container +- +block-size +descriptor css-contain-3 css-contain 3 @@ -2988,6 +3540,18 @@ https://www.w3.org/TR/css-writing-modes-4/#block-size - block-start value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-start +1 +1 +position-area +<position-area> +- +block-start +value css-box-4 css-box 4 @@ -3052,6 +3616,18 @@ https://drafts.csswg.org/css-writing-modes-4/#block-start - block-start value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-start +1 +1 +inset-area +<inset-area> +- +block-start +value css-box-4 css-box 4 @@ -3112,16 +3688,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#block-start 1 -1 -- -block-start -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-block-start - 1 - block-step @@ -3224,17 +3790,6 @@ https://www.w3.org/TR/css-rhythm-1/#propdef-block-step-size 1 1 - -blockElements -dict-member -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-blockelements -1 -1 -SanitizerConfig -- blockEnd attribute css-layout-api-1 @@ -3402,6 +3957,17 @@ LayoutFragment - blockSize attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-blocksize +1 +1 +CSSPositionTryDescriptors +- +blockSize +attribute resize-observer-1 resize-observer 1 @@ -3530,6 +4096,16 @@ https://www.w3.org/TR/IndexedDB-3/#eventdef-idbopendbrequest-blocked 1 IDBOpenDBRequest - +blocked bluetooth service class uuid +dfn +serial +serial +1 +current +https://wicg.github.io/serial/#dfn-blocked-bluetooth-service-class-uuid + +1 +- blocked by a blocklist rule dfn webhid @@ -3568,6 +4144,16 @@ webhid current https://wicg.github.io/webhid/#dfn-blocked-report +1 +- +blocked request map +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#blocked-request-map + 1 - blocked-on-parser @@ -3814,6 +4400,17 @@ https://html.spec.whatwg.org/multipage/urls-and-fetching.html#blocking-tokens-se 1 - +blockingDuration +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-blockingduration +1 +1 +PerformanceLongAnimationFrameTiming +- blocklist dfn web-nfc @@ -3842,6 +4439,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#blocklisted +1 +- +blocklisted +dfn +webusb +webusb +1 +current +https://wicg.github.io/webusb/#blocklisted + 1 - blocklisted for reads @@ -3862,6 +4469,26 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#blocklisted-for-writes +1 +- +blocklisted manufacturer data +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#blocklisted-manufacturer-data + +1 +- +blocklisted manufacturer data filter +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#blocklisted-manufacturer-data-filter + 1 - blockquote @@ -3894,6 +4521,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-blue 1 1 <color> +<named-color> - blue value @@ -3926,6 +4554,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-blue 1 1 <color> +<named-color> - bluetooth attribute @@ -4002,6 +4631,28 @@ https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-tree-bluetooth-tree 1 Bluetooth tree - +bluetoothServiceClassId +dict-member +serial +serial +1 +current +https://wicg.github.io/serial/#dom-serialportfilter-bluetoothserviceclassid +1 +1 +SerialPortFilter +- +bluetoothServiceClassId +dict-member +serial +serial +1 +current +https://wicg.github.io/serial/#dom-serialportinfo-bluetoothserviceclassid +1 +1 +SerialPortInfo +- blueviolet dfn css-color-3 @@ -4022,6 +4673,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-blueviolet 1 1 <color> +<named-color> - blueviolet dfn @@ -4043,6 +4695,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-blueviolet 1 1 <color> +<named-color> - blur event @@ -4082,9 +4735,10 @@ css-backgrounds-3 css-backgrounds 3 current -https://drafts.csswg.org/css-backgrounds-3/#blur-radius - +https://drafts.csswg.org/css-backgrounds-3/#box-shadow-blur-radius +1 1 +box-shadow - blur radius dfn @@ -4092,9 +4746,10 @@ css-backgrounds-3 css-backgrounds 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#blur-radius - +https://www.w3.org/TR/css-backgrounds-3/#box-shadow-blur-radius +1 1 +box-shadow - blur() function diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bm.data b/bikeshed/spec-data/readonly/anchors/anchors-bm.data index 2a7033cb29..d35e582408 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bm.data @@ -4,7 +4,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_bmp +https://w3c.github.io/i18n-glossary/#dfn-basic-multilingual-plane 1 - @@ -14,7 +14,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_bmp +https://www.w3.org/TR/i18n-glossary/#dfn-basic-multilingual-plane 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bo.data b/bikeshed/spec-data/readonly/anchors/anchors-bo.data index eb3ffa317c..911780a241 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bo.data @@ -52,6 +52,7 @@ https://drafts.csswg.org/web-animations-1/#dom-fillmode-both 1 1 FillMode +PlaybackDirection - "both" enum-value @@ -88,6 +89,17 @@ FillMode - "both" enum-value +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-fillmode-both +1 +1 +FillMode +- +"both" +enum-value webnn webnn 1 @@ -139,6 +151,56 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-properties-of-the 1 1 - +<bool-and> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-and +1 +1 +- +<bool-in-parens> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-in-parens +1 +1 +- +<bool-not> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-not +1 +1 +- +<bool-or> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-or +1 +1 +- +<bool-test> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-test +1 +1 +- <boolean-constant> type css-conditional-values-1 @@ -149,6 +211,26 @@ https://drafts.csswg.org/css-conditional-values-1/#typedef-boolean-constant 1 1 - +<boolean-without-or> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-boolean-without-or +1 +1 +- +<boolean> +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-boolean +1 +1 +- <border-style> type css22 @@ -159,6 +241,26 @@ https://drafts.csswg.org/css2/#value-def-border-style 1 1 - +<border-style> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-border-style +1 +1 +- +<border-style> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-border-style +1 +1 +- <border-width> type css22 @@ -169,6 +271,26 @@ https://drafts.csswg.org/css2/#value-def-border-width 1 1 - +<border-width> +type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-border-width +1 +1 +- +<border-width> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-border-width +1 +1 +- <bottom> type css22 @@ -192,6 +314,26 @@ clip - <bottom> type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#value-def-bottom +1 +1 +- +<bottom> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#value-def-bottom +1 +1 +- +<bottom> +type css-masking-1 css-masking 1 @@ -203,21 +345,41 @@ clip - <box> type -css-backgrounds-3 -css-backgrounds +css-box-3 +css-box 3 current -https://drafts.csswg.org/css-backgrounds-3/#typedef-box +https://drafts.csswg.org/css-box-3/#typedef-box 1 1 - <box> type -css-backgrounds-3 -css-backgrounds +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#typedef-box +1 +1 +- +<box> +type +css-box-3 +css-box 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#typedef-box +https://www.w3.org/TR/css-box-3/#typedef-box +1 +1 +- +<box> +type +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#typedef-box 1 1 - @@ -373,6 +535,16 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-boolean-construct 1 Boolean - +BoundFunctionCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-boundfunctioncreate +1 +1 +- BoundFunctionCreate(targetFunction, boundThis, boundArgs) abstract-op ecmascript @@ -436,6 +608,36 @@ https://www.w3.org/TR/css-layout-api-1/#dom-layoutchild-box-slot 1 LayoutChild - +board +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#bod +1 +1 +- +board of directors +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#bod +1 +1 +- +bod +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#bod +1 +1 +- body dfn fetch @@ -631,10 +833,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-debug-data-body +https://wicg.github.io/attribution-reporting-api/#verbose-debug-data-body 1 -attribution debug data +verbose debug data - body attribute @@ -1000,16 +1202,6 @@ https://www.w3.org/TR/css-content-3/#propdef-bookmark-label 1 1 - -bookmark-label -property -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#propdef-bookmark-label -1 -1 -- bookmark-level property css-content-3 @@ -1030,16 +1222,6 @@ https://www.w3.org/TR/css-content-3/#propdef-bookmark-level 1 1 - -bookmark-level -property -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#propdef-bookmark-level -1 -1 -- bookmark-state property css-content-3 @@ -1060,16 +1242,6 @@ https://www.w3.org/TR/css-content-3/#propdef-bookmark-state 1 1 - -bookmark-state -property -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#propdef-bookmark-state -1 -1 -- bookmarks dfn css-content-3 @@ -1088,16 +1260,6 @@ css-content snapshot https://www.w3.org/TR/css-content-3/#bookmarks -1 -- -bookmarks -dfn -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#bookmarks0 - 1 - bool @@ -1115,33 +1277,11 @@ dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-bool - -1 -syntax_kw -- -bool -dfn -wgsl -wgsl -1 snapshot https://www.w3.org/TR/WGSL/#bool 1 - -bool -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-bool - -1 -syntax_kw -- bool_literal dfn wgsl @@ -1389,18 +1529,6 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border 1 - border -value -css-backgrounds-4 -css-backgrounds -4 -current -https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-border -1 -1 -background-clip -<bg-clip> -- -border dfn css-box-3 css-box @@ -1518,6 +1646,26 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-table-border HTMLTableElement - border +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border +1 +1 +- +border +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border +1 +1 +- +border dfn css22 css @@ -1646,6 +1794,26 @@ css current https://drafts.csswg.org/css2/#border-box +1 +- +border box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x14 +1 +1 +- +border box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x14 +1 1 - border box @@ -1668,13 +1836,23 @@ https://www.w3.org/TR/css-box-4/#border-box 1 1 - -border box +border color dfn -mathml-core -mathml-core +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#border-color-dfn + 1 +- +border color +dfn +css-backgrounds-3 +css-backgrounds +3 snapshot -https://www.w3.org/TR/mathml-core/#dfn-border-box +https://www.w3.org/TR/css-backgrounds-3/#border-color-dfn 1 - @@ -1710,7 +1888,27 @@ https://drafts.csswg.org/css2/#border-edge - border edge dfn -css-box-3 +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#border-edge +1 +1 +- +border edge +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#border-edge +1 +1 +- +border edge +dfn +css-box-3 css-box 3 snapshot @@ -1736,6 +1934,26 @@ cssom-view snapshot https://www.w3.org/TR/cssom-view-1/#border-edge +1 +- +border image +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#border-image-dfn + +1 +- +border image +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#border-image-dfn + 1 - border image area @@ -1756,6 +1974,26 @@ css-backgrounds snapshot https://www.w3.org/TR/css-backgrounds-3/#border-image-area +1 +- +border image region +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#border-image-region + +1 +- +border image region +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#border-image-region + 1 - border properties @@ -1816,6 +2054,68 @@ css-backgrounds snapshot https://www.w3.org/TR/css-backgrounds-3/#border-radii +1 +- +border style +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#border-style-dfn + +1 +- +border style +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#border-style-dfn + +1 +- +border width +dfn +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#border-width-dfn +1 +1 +- +border width +dfn +css-backgrounds-3 +css-backgrounds +3 +snapshot +https://www.w3.org/TR/css-backgrounds-3/#border-width-dfn +1 +1 +- +border-area +value +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-border-area +1 +1 +background-clip +<bg-clip> +- +border-block +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block +1 1 - border-block @@ -1840,6 +2140,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block - border-block-color property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-color +1 +1 +- +border-block-color +property css-logical-1 css-logical 1 @@ -1860,6 +2170,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-color - border-block-end property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-end +1 +1 +- +border-block-end +property css-logical-1 css-logical 1 @@ -1880,6 +2200,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-end - border-block-end-color property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color +1 +1 +- +border-block-end-color +property css-logical-1 css-logical 1 @@ -1900,11 +2230,21 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-end-color - border-block-end-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-radius +1 +1 +- +border-block-end-style +property +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-block-end-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style 1 1 - @@ -1930,6 +2270,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-end-style - border-block-end-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width +1 +1 +- +border-block-end-width +property css-logical-1 css-logical 1 @@ -1950,6 +2300,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-end-width - border-block-start property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-start +1 +1 +- +border-block-start +property css-logical-1 css-logical 1 @@ -1970,6 +2330,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-start - border-block-start-color property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color +1 +1 +- +border-block-start-color +property css-logical-1 css-logical 1 @@ -1990,11 +2360,21 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-start-color - border-block-start-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-radius +1 +1 +- +border-block-start-style +property +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-block-start-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style 1 1 - @@ -2020,6 +2400,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-start-style - border-block-start-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width +1 +1 +- +border-block-start-width +property css-logical-1 css-logical 1 @@ -2040,6 +2430,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-start-width - border-block-style property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-style +1 +1 +- +border-block-style +property css-logical-1 css-logical 1 @@ -2060,6 +2460,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-block-style - border-block-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-block-width +1 +1 +- +border-block-width +property css-logical-1 css-logical 1 @@ -2090,6 +2500,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom - border-bottom property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom +1 +1 +- +border-bottom +property css22 css 1 @@ -2099,6 +2519,26 @@ https://drafts.csswg.org/css2/#propdef-border-bottom 1 - border-bottom +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom +1 +1 +- +border-bottom +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom +1 +1 +- +border-bottom dfn css22 css @@ -2130,11 +2570,11 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color - border-bottom-color property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-bottom-color +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-color 1 1 - @@ -2149,6 +2589,26 @@ https://drafts.csswg.org/css2/#propdef-border-bottom-color 1 - border-bottom-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-color +1 +1 +- +border-bottom-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-color +1 +1 +- +border-bottom-color dfn css22 css @@ -2180,6 +2640,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-left-radius - border-bottom-left-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-left-radius +1 +1 +- +border-bottom-left-radius +property css-backgrounds-3 css-backgrounds 3 @@ -2190,11 +2660,11 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-bottom-left-radius - border-bottom-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-bottom-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-radius 1 1 - @@ -2210,6 +2680,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius - border-bottom-right-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-right-radius +1 +1 +- +border-bottom-right-radius +property css-backgrounds-3 css-backgrounds 3 @@ -2230,6 +2710,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style - border-bottom-style property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-style +1 +1 +- +border-bottom-style +property css22 css 1 @@ -2239,6 +2729,26 @@ https://drafts.csswg.org/css2/#propdef-border-bottom-style 1 - border-bottom-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-style +1 +1 +- +border-bottom-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-style +1 +1 +- +border-bottom-style dfn css22 css @@ -2270,6 +2780,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width - border-bottom-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-width +1 +1 +- +border-bottom-width +property css22 css 1 @@ -2279,6 +2799,26 @@ https://drafts.csswg.org/css2/#propdef-border-bottom-width 1 - border-bottom-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width +1 +1 +- +border-bottom-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width +1 +1 +- +border-bottom-width dfn css22 css @@ -2350,8 +2890,12 @@ https://drafts.csswg.org/css-box-3/#valdef-box-border-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - border-box value @@ -2363,8 +2907,12 @@ https://drafts.csswg.org/css-box-4/#valdef-box-border-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - border-box value @@ -2498,8 +3046,12 @@ https://www.w3.org/TR/css-box-3/#valdef-box-border-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - border-box value @@ -2511,8 +3063,12 @@ https://www.w3.org/TR/css-box-4/#valdef-box-border-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - border-box value @@ -2616,51 +3172,51 @@ stroke-origin - border-clip property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-clip +https://drafts.csswg.org/css-borders-4/#propdef-border-clip 1 1 - border-clip-bottom property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-clip-bottom +https://drafts.csswg.org/css-borders-4/#propdef-border-clip-bottom 1 1 - border-clip-left property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-clip-left +https://drafts.csswg.org/css-borders-4/#propdef-border-clip-left 1 1 - border-clip-right property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-clip-right +https://drafts.csswg.org/css-borders-4/#propdef-border-clip-right 1 1 - border-clip-top property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-clip-top +https://drafts.csswg.org/css-borders-4/#propdef-border-clip-top 1 1 - @@ -2685,6 +3241,26 @@ https://drafts.csswg.org/css2/#propdef-border-collapse 1 - border-collapse +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse +1 +1 +- +border-collapse +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse +1 +1 +- +border-collapse dfn css22 css @@ -2716,11 +3292,11 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color - border-color property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-color +https://drafts.csswg.org/css-borders-4/#propdef-border-color 1 1 - @@ -2735,6 +3311,26 @@ https://drafts.csswg.org/css2/#propdef-border-color 1 - border-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-color +1 +1 +- +border-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-color +1 +1 +- +border-color dfn css22 css @@ -2756,6 +3352,16 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-color - border-end-end-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-end-end-radius +1 +1 +- +border-end-end-radius +property css-logical-1 css-logical 1 @@ -2776,6 +3382,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-end-end-radius - border-end-start-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-end-start-radius +1 +1 +- +border-end-start-radius +property css-logical-1 css-logical 1 @@ -2916,6 +3532,16 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-image-width - border-inline property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline +1 +1 +- +border-inline +property css-logical-1 css-logical 1 @@ -2936,6 +3562,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline - border-inline-color property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color +1 +1 +- +border-inline-color +property css-logical-1 css-logical 1 @@ -2956,6 +3592,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-color - border-inline-end property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end +1 +1 +- +border-inline-end +property css-logical-1 css-logical 1 @@ -2976,6 +3622,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-end - border-inline-end-color property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color +1 +1 +- +border-inline-end-color +property css-logical-1 css-logical 1 @@ -2996,11 +3652,21 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-end-color - border-inline-end-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-radius +1 +1 +- +border-inline-end-style +property +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-inline-end-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style 1 1 - @@ -3026,6 +3692,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-end-style - border-inline-end-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width +1 +1 +- +border-inline-end-width +property css-logical-1 css-logical 1 @@ -3046,6 +3722,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-end-width - border-inline-start property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start +1 +1 +- +border-inline-start +property css-logical-1 css-logical 1 @@ -3066,6 +3752,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-start - border-inline-start-color property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color +1 +1 +- +border-inline-start-color +property css-logical-1 css-logical 1 @@ -3086,11 +3782,21 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-start-color - border-inline-start-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-radius +1 +1 +- +border-inline-start-style +property +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-inline-start-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style 1 1 - @@ -3116,6 +3822,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-start-style - border-inline-start-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width +1 +1 +- +border-inline-start-width +property css-logical-1 css-logical 1 @@ -3136,6 +3852,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-start-width - border-inline-style property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style +1 +1 +- +border-inline-style +property css-logical-1 css-logical 1 @@ -3156,6 +3882,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-inline-style - border-inline-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width +1 +1 +- +border-inline-width +property css-logical-1 css-logical 1 @@ -3186,6 +3922,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left - border-left property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-left +1 +1 +- +border-left +property css22 css 1 @@ -3195,6 +3941,26 @@ https://drafts.csswg.org/css2/#propdef-border-left 1 - border-left +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-left +1 +1 +- +border-left +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-left +1 +1 +- +border-left dfn css22 css @@ -3226,11 +3992,11 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color - border-left-color property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-left-color +https://drafts.csswg.org/css-borders-4/#propdef-border-left-color 1 1 - @@ -3245,6 +4011,26 @@ https://drafts.csswg.org/css2/#propdef-border-left-color 1 - border-left-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-left-color +1 +1 +- +border-left-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-left-color +1 +1 +- +border-left-color dfn css22 css @@ -3266,11 +4052,11 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-left-color - border-left-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-left-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-left-radius 1 1 - @@ -3286,6 +4072,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style - border-left-style property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-left-style +1 +1 +- +border-left-style +property css22 css 1 @@ -3295,6 +4091,26 @@ https://drafts.csswg.org/css2/#propdef-border-left-style 1 - border-left-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-left-style +1 +1 +- +border-left-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-left-style +1 +1 +- +border-left-style dfn css22 css @@ -3326,6 +4142,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width - border-left-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-left-width +1 +1 +- +border-left-width +property css22 css 1 @@ -3335,6 +4161,26 @@ https://drafts.csswg.org/css2/#propdef-border-left-width 1 - border-left-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width +1 +1 +- +border-left-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width +1 +1 +- +border-left-width dfn css22 css @@ -3356,11 +4202,11 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-left-width - border-limit property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-limit +https://drafts.csswg.org/css-borders-4/#propdef-border-limit 1 1 - @@ -3376,11 +4222,11 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius - border-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-radius 1 1 - @@ -3406,6 +4252,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right - border-right property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-right +1 +1 +- +border-right +property css22 css 1 @@ -3415,6 +4271,26 @@ https://drafts.csswg.org/css2/#propdef-border-right 1 - border-right +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-right +1 +1 +- +border-right +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-right +1 +1 +- +border-right dfn css22 css @@ -3446,11 +4322,11 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color - border-right-color property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-right-color +https://drafts.csswg.org/css-borders-4/#propdef-border-right-color 1 1 - @@ -3465,6 +4341,26 @@ https://drafts.csswg.org/css2/#propdef-border-right-color 1 - border-right-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-right-color +1 +1 +- +border-right-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-right-color +1 +1 +- +border-right-color dfn css22 css @@ -3486,11 +4382,11 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-right-color - border-right-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-right-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-right-radius 1 1 - @@ -3506,6 +4402,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style - border-right-style property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-right-style +1 +1 +- +border-right-style +property css22 css 1 @@ -3515,6 +4421,26 @@ https://drafts.csswg.org/css2/#propdef-border-right-style 1 - border-right-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-right-style +1 +1 +- +border-right-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-right-style +1 +1 +- +border-right-style dfn css22 css @@ -3536,21 +4462,51 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-right-style - border-right-width property -css-backgrounds-3 -css-backgrounds -3 +css-backgrounds-3 +css-backgrounds +3 +current +https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +1 +1 +- +border-right-width +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-right-width +1 +1 +- +border-right-width +property +css22 +css +1 +current +https://drafts.csswg.org/css2/#propdef-border-right-width +1 +1 +- +border-right-width +property +css2 +css +1 current -https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width 1 1 - border-right-width property -css22 +css2 css 1 -current -https://drafts.csswg.org/css2/#propdef-border-right-width +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width 1 1 - @@ -3595,6 +4551,26 @@ https://drafts.csswg.org/css2/#propdef-border-spacing 1 - border-spacing +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing +1 +1 +- +border-spacing +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing +1 +1 +- +border-spacing dfn css22 css @@ -3616,6 +4592,16 @@ https://www.w3.org/TR/css-tables-3/#propdef-border-spacing - border-start-end-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-start-end-radius +1 +1 +- +border-start-end-radius +property css-logical-1 css-logical 1 @@ -3636,6 +4622,16 @@ https://www.w3.org/TR/css-logical-1/#propdef-border-start-end-radius - border-start-start-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-start-start-radius +1 +1 +- +border-start-start-radius +property css-logical-1 css-logical 1 @@ -3675,6 +4671,26 @@ https://drafts.csswg.org/css2/#propdef-border-style 1 - border-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-style +1 +1 +- +border-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-style +1 +1 +- +border-style dfn css22 css @@ -3706,6 +4722,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top - border-top property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-top +1 +1 +- +border-top +property css22 css 1 @@ -3715,6 +4741,26 @@ https://drafts.csswg.org/css2/#propdef-border-top 1 - border-top +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-top +1 +1 +- +border-top +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-top +1 +1 +- +border-top dfn css22 css @@ -3746,11 +4792,11 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color - border-top-color property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-top-color +https://drafts.csswg.org/css-borders-4/#propdef-border-top-color 1 1 - @@ -3765,6 +4811,26 @@ https://drafts.csswg.org/css2/#propdef-border-top-color 1 - border-top-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-top-color +1 +1 +- +border-top-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-top-color +1 +1 +- +border-top-color dfn css22 css @@ -3796,6 +4862,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius - border-top-left-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-top-left-radius +1 +1 +- +border-top-left-radius +property css-backgrounds-3 css-backgrounds 3 @@ -3806,11 +4882,11 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-top-left-radius - border-top-radius property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-border-top-radius +https://drafts.csswg.org/css-borders-4/#propdef-border-top-radius 1 1 - @@ -3826,6 +4902,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius - border-top-right-radius property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-top-right-radius +1 +1 +- +border-top-right-radius +property css-backgrounds-3 css-backgrounds 3 @@ -3846,6 +4932,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style - border-top-style property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-top-style +1 +1 +- +border-top-style +property css22 css 1 @@ -3855,6 +4951,26 @@ https://drafts.csswg.org/css2/#propdef-border-top-style 1 - border-top-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-top-style +1 +1 +- +border-top-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-top-style +1 +1 +- +border-top-style dfn css22 css @@ -3886,6 +5002,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width - border-top-width property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-border-top-width +1 +1 +- +border-top-width +property css22 css 1 @@ -3895,6 +5021,26 @@ https://drafts.csswg.org/css2/#propdef-border-top-width 1 - border-top-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width +1 +1 +- +border-top-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width +1 +1 +- +border-top-width dfn css22 css @@ -3935,6 +5081,26 @@ https://drafts.csswg.org/css2/#propdef-border-width 1 - border-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-border-width +1 +1 +- +border-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-border-width +1 +1 +- +border-width dfn css22 css @@ -3954,6 +5120,26 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-border-width 1 1 - +border::of a box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-border-area +1 +1 +- +border::of a box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-border-area +1 +1 +- borderBoxSize attribute resize-observer-1 @@ -3987,6 +5173,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-table-bordercolor 1 table - +borderless +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-borderless +1 +1 +display mode +- both value css-animations-1 @@ -4011,17 +5208,6 @@ wrap-flow - both value -css-inline-3 -css-inline -3 -current -https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-both -1 -1 -leading-trim -- -both -value css-page-floats-3 css-page-floats 3 @@ -4054,26 +5240,38 @@ https://drafts.csswg.org/css2/#valdef-clear-both clear - both -value -css-animations-1 -css-animations +enum-value +web-animations-1 +web-animations 1 -snapshot -https://www.w3.org/TR/css-animations-1/#valdef-animation-fill-mode-both +current +https://drafts.csswg.org/web-animations-1/#dom-fillmode-both 1 1 -animation-fill-mode +FillMode +PlaybackDirection +- +both +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#fill-mode-both + +1 +fill mode - both value -css-inline-3 -css-inline -3 +css-animations-1 +css-animations +1 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-leading-trim-both +https://www.w3.org/TR/css-animations-1/#valdef-animation-fill-mode-both 1 1 -leading-trim +animation-fill-mode - both value @@ -4146,10 +5344,32 @@ dfn storage storage 1 -current -https://storage.spec.whatwg.org/#bottle-map - +current +https://storage.spec.whatwg.org/#bottle-map + +1 +- +bottom +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-bottom +1 +1 +CSSPositionTryDescriptors +- +bottom +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-bottom +1 1 +anchor() - bottom value @@ -4157,10 +5377,11 @@ css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-bottom +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-bottom 1 1 -anchor() +position-area +<position-area> - bottom value @@ -4175,11 +5396,11 @@ background-position - bottom value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-border-limit-bottom +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-bottom 1 1 border-limit @@ -4357,6 +5578,26 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textbaseline-b CanvasTextBaseline - bottom +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom +1 +1 +- +bottom +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom +1 +1 +- +bottom dfn css22 css @@ -4368,6 +5609,29 @@ https://www.w3.org/TR/CSS22/visuren.html#propdef-bottom - bottom value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-bottom +1 +1 +anchor() +- +bottom +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-bottom +1 +1 +inset-area +<inset-area> +- +bottom +value css-backgrounds-3 css-backgrounds 3 @@ -4506,6 +5770,120 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-body-bottommargin 1 body - +bounce set +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-record-bounce-set + +1 +bounce tracking record +- +bounce tracking +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking + +1 +- +bounce tracking activation lifetime +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-activation-lifetime + +1 +- +bounce tracking grace period +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-grace-period + +1 +- +bounce tracking record +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-record + +1 +- +bounce tracking record +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#top-level-traversable-bounce-tracking-record + +1 +top-level traversable +- +bounce tracking timer +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-timer + +1 +- +bounce tracking timer period +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-timer-period + +1 +- +bound +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-bound + +1 +- +bound buffer ranges +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpubindgroup-bound-buffer-ranges + +1 +GPUBindGroup +- +bound buffer ranges +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#gpubindgroup-bound-buffer-ranges + +1 +GPUBindGroup +- bound credential dfn webauthn-3 @@ -4880,6 +6258,26 @@ https://www.w3.org/TR/virtual-keyboard/#dom-virtualkeyboard-boundingrect 1 VirtualKeyboard - +bounds +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-bounds + +1 +- +bounds +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-bounds + +1 +- boundsGeometry attribute webxr @@ -5208,6 +6606,16 @@ https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow - box-shadow property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-box-shadow +1 +1 +- +box-shadow +property css-backgrounds-3 css-backgrounds 3 @@ -5216,6 +6624,56 @@ https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow 1 1 - +box-shadow-blur +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-blur +1 +1 +- +box-shadow-color +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-color +1 +1 +- +box-shadow-offset +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-offset +1 +1 +- +box-shadow-position +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-position +1 +1 +- +box-shadow-spread +property +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-spread +1 +1 +- box-sizing property css-sizing-3 @@ -5276,3 +6734,143 @@ https://www.w3.org/TR/css-line-grid-1/#propdef-box-snap 1 1 - +box::border +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-border-area +1 +1 +- +box::border +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-border-area +1 +1 +- +box::content +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-content-area +1 +1 +- +box::content +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-content-area +1 +1 +- +box::content height +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#content-height +1 +1 +- +box::content height +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#content-height +1 +1 +- +box::content width +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#content-width +1 +1 +- +box::content width +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#content-width +1 +1 +- +box::margin +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-margin-area +1 +1 +- +box::margin +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-margin-area +1 +1 +- +box::overflow +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#x0 +1 +1 +- +box::overflow +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#x0 +1 +1 +- +box::padding +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-padding-area +1 +1 +- +box::padding +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-padding-area +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-br.data b/bikeshed/spec-data/readonly/anchors/anchors-br.data index f0ebd5fa1e..c71023d95d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-br.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-br.data @@ -68,6 +68,28 @@ https://html.spec.whatwg.org/multipage/web-messaging.html#broadcastchannel 1 1 - +BroadcastChannel +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-broadcastchannel +1 +1 +StorageAccessTypes +- +BroadcastChannel(name) +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-broadcastchannel +1 +1 +StorageAccessHandle +- BrowserCaptureMediaStreamTrack interface mediacapture-region @@ -88,6 +110,26 @@ https://www.w3.org/TR/mediacapture-region/#dom-browsercapturemediastreamtrack 1 1 - +BrowsingTopic +dictionary +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dictdef-browsingtopic +1 +1 +- +BrowsingTopicsOptions +dictionary +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dictdef-browsingtopicsoptions +1 +1 +- [[breakToken]] attribute css-layout-api-1 @@ -262,6 +304,26 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-braille 1 @media - +branch factor encoding +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#branch-factor-encoding + +1 +- +branch factor encoding +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#branch-factor-encoding + +1 +- branches of a readable stream tee dfn streams @@ -360,6 +422,28 @@ https://wicg.github.io/ua-client-hints/#windoworworkerglobalscope-brands-frozen- 1 WindowOrWorkerGlobalScope - +breadth +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-breadth +1 +1 +XRWorldMeshFeature +- +breadth +attribute +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-breadth-breadth +1 +1 +XRWorldMeshFeature/breadth +- break dfn css-break-4 @@ -454,6 +538,26 @@ css-break snapshot https://www.w3.org/TR/css-break-4/#break +1 +- +break calibration +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-break-calibration + +1 +- +break calibration +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-break-calibration + 1 - break completion @@ -711,10 +815,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-white-space-break-spaces +https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-break-spaces 1 1 -white-space +white-space-collapse - break-spaces value @@ -733,10 +837,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-white-space-break-spaces +https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-break-spaces 1 1 -white-space +white-space-collapse - break-word value @@ -1148,6 +1252,26 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#broadcaster +1 +- +broadcasting +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#broadcasting + +1 +- +broadcasting +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#broadcasting + 1 - broadcasting to other browsing contexts @@ -1170,6 +1294,92 @@ https://html.spec.whatwg.org/multipage/images.html#img-error 1 - +brotli patch +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#brotli-patch + +1 +- +brotli patch +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#brotli-patch + +1 +- +brotlistream +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#brotli-patch-brotlistream + +1 +Brotli patch +- +brotlistream +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-keyed-patch-brotlistream + +1 +Glyph keyed patch +- +brotlistream +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#tablepatch-brotlistream + +1 +TablePatch +- +brotlistream +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#brotli-patch-brotlistream + +1 +Brotli patch +- +brotlistream +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-keyed-patch-brotlistream + +1 +Glyph keyed patch +- +brotlistream +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#tablepatch-brotlistream + +1 +TablePatch +- brown dfn css-color-3 @@ -1190,6 +1400,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-brown 1 1 <color> +<named-color> - brown dfn @@ -1211,14 +1422,26 @@ https://www.w3.org/TR/css-color-4/#valdef-color-brown 1 1 <color> +<named-color> - browser -dfn +value mediaqueries-5 mediaqueries 5 current -https://drafts.csswg.org/mediaqueries-5/#display-mode-browser +https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-browser +1 +1 +@media/display-mode +- +browser +dfn +appmanifest +appmanifest +1 +current +https://w3c.github.io/manifest/#dfn-browser 1 1 display mode @@ -1257,6 +1480,28 @@ DisplayCaptureSurfaceType - browser dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#modules-browser +1 +1 +modules +- +browser +dfn +appmanifest +appmanifest +1 +snapshot +https://www.w3.org/TR/appmanifest/#dfn-browser +1 +1 +display mode +- +browser +dfn mediacapture-region mediacapture-region 1 @@ -1398,56 +1643,71 @@ https://www.w3.org/TR/remote-playback/#dfn-browser-initiated-remote-playback 1 - -browser name +browser signals dfn -webdriver2 -webdriver -2 +turtledove +turtledove +1 current -https://w3c.github.io/webdriver/#dfn-browser-name +https://wicg.github.io/turtledove/#server-auction-interest-group-browser-signals 1 +server auction interest group - -browser name +browser ui dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-browser-name - +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#uni-browser-ui 1 +1 +user navigation involvement - -browser ui +browser.close dfn -navigation-api -navigation-api +webdriver-bidi +webdriver-bidi 1 current -https://wicg.github.io/navigation-api/#user-navigation-involvement-browser-ui - +https://w3c.github.io/webdriver-bidi/#commands-browserclose 1 -user navigation involvement +1 +commands - -browser version +browser.createusercontext dfn -webdriver2 -webdriver -2 +webdriver-bidi +webdriver-bidi +1 current -https://w3c.github.io/webdriver/#dfn-browser-version - +https://w3c.github.io/webdriver-bidi/#commands-browsercreateusercontext +1 1 +commands - -browser version +browser.getusercontexts dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-browser-version - +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-browsergetusercontexts +1 1 +commands +- +browser.removeusercontext +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-browserremoveusercontext +1 +1 +commands - browsing context dfn @@ -1513,16 +1773,15 @@ https://w3c.github.io/longtasks/#browsing-context-container 1 - -browsing context event map +browsing context container dfn -webdriver-bidi -webdriver-bidi -1 -current -https://w3c.github.io/webdriver-bidi/#event-browsing-context-event-map +longtasks-1 +longtasks 1 +snapshot +https://www.w3.org/TR/longtasks-1/#browsing-context-container + 1 -event - browsing context group dfn @@ -1562,16 +1821,6 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context-group-set -1 -- -browsing context id -dfn -webdriver-bidi -webdriver-bidi -1 -current -https://w3c.github.io/webdriver-bidi/#browsing-context-id -1 1 - browsing context input state map @@ -1614,14 +1863,34 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context- 1 - -browsing context tree discarded +browsing profile dfn -webdriver-bidi -webdriver-bidi -1 +encrypted-media-2 +encrypted-media +2 current -https://w3c.github.io/webdriver-bidi/#browsing-context-tree-discarded +https://w3c.github.io/encrypted-media/#dfn-browsing-profile + +1 +- +browsing profile +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-browsing-profile + 1 +- +browsing topics task source +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-task-source + 1 - browsing-context connected @@ -1634,6 +1903,60 @@ https://html.spec.whatwg.org/multipage/infrastructure.html#browsing-context-conn 1 1 - +browsing-topics +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-policy-controlled-feature + +1 +- +browsingTopics +attribute +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-htmliframeelement-browsingtopics +1 +1 +HTMLIFrameElement +- +browsingTopics +dict-member +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-requestinit-browsingtopics +1 +1 +RequestInit +- +browsingTopics() +method +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-document-browsingtopics +1 +1 +Document +- +browsingTopics(options) +method +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-document-browsingtopics +1 +1 +Document +- browsingcontext dfn webdriver-bidi @@ -1645,6 +1968,17 @@ https://w3c.github.io/webdriver-bidi/#modules-browsingcontext 1 modules - +browsingcontext.activate +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-browsingcontextactivate +1 +1 +commands +- browsingcontext.capturescreenshot dfn webdriver-bidi @@ -1700,6 +2034,17 @@ https://w3c.github.io/webdriver-bidi/#commands-browsingcontexthandleuserprompt 1 commands - +browsingcontext.locatenodes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-browsingcontextlocatenodes +1 +1 +commands +- browsingcontext.navigate dfn webdriver-bidi @@ -1733,3 +2078,36 @@ https://w3c.github.io/webdriver-bidi/#commands-browsingcontextreload 1 commands - +browsingcontext.setviewport +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-browsingcontextsetviewport +1 +1 +commands +- +browsingcontext.traversehistory +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-browsingcontexttraversehistory +1 +1 +commands +- +browsingtopics +element-attr +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#element-attrdef-iframe-browsingtopics +1 +1 +iframe +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bs.data b/bikeshed/spec-data/readonly/anchors/anchors-bs.data index 4bf965777c..b64dd8aaac 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bs.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bs.data @@ -6,6 +6,17 @@ webauthn current https://w3c.github.io/webauthn/#authdata-flags-bs +1 +authData/flags +- +bs +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#authdata-flags-bs + 1 authData/flags - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bu.data b/bikeshed/spec-data/readonly/anchors/anchors-bu.data index 029ff7825b..ca98e43406 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-bu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-bu.data @@ -9,6 +9,17 @@ https://wicg.github.io/webusb/#dom-usbendpointtype-bulk 1 USBEndpointType - +"buyer" +enum-value +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencereportingdestination-buyer +1 +1 +FenceReportingDestination +- :buffering selector selectors-4 @@ -17,6 +28,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-buffering 1 +1 +- +:buffering +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-buffering + 1 - :buffering @@ -50,6 +71,66 @@ https://webidl.spec.whatwg.org/#BufferSource 1 1 - +BufferedChangeEvent +interface +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeevent +1 +1 +- +BufferedChangeEvent +interface +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeevent +1 +1 +- +BufferedChangeEventInit +dictionary +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeeventinit +1 +1 +- +BufferedChangeEventInit +dictionary +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeeventinit +1 +1 +- +BuiltinCallOrConstruct +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-builtincallorconstruct +1 +1 +- +BuiltinCallOrConstruct(F, thisArgument, argumentsList, newTarget) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-builtincallorconstruct +1 +1 +- [[BufferedAmount]] attribute webrtc @@ -68,8 +149,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-bufferedamount + 1 -1 +RTCDataChannel - [[buffer full flag]] attribute @@ -137,6 +219,28 @@ https://fs.spec.whatwg.org/#filesystemwritablefilestream-buffer 1 FileSystemWritableFileStream - +[[builder]] +attribute +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperand-builder-slot +1 +1 +MLOperand +- +[[builder]] +attribute +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperand-builder-slot +1 +1 +MLOperand +- [[buttonMapping]] attribute gamepad @@ -225,26 +329,6 @@ https://www.w3.org/TR/gamepad/#dfn-buttons 1 Gamepad - -bubble phase -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#bubble-phase - -1 -- -bubble phase -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#bubble-phase - -1 -- bubbles argument dom @@ -294,6 +378,36 @@ https://dom.spec.whatwg.org/#dom-eventinit-bubbles 1 EventInit - +bubbles +argument +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-bubbles +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +bubbles +argument +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-bubbles +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- bubblesArg argument uievents @@ -480,24 +594,69 @@ UIEvent/initUIEvent(typeArg, bubblesArg, cancelableArg) UIEvent/initUIEvent(typeArg, bubblesArg) UIEvent/initUIEvent(typeArg) - -bubbling phase +bucket +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionreportbuyersconfig-bucket +1 +1 +AuctionReportBuyersConfig +- +bucket +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-paextendedhistogramcontribution-bucket +1 +1 +PAExtendedHistogramContribution +- +bucket +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-pahistogramcontribution-bucket +1 +1 +PAHistogramContribution +- +bucket +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-realtimecontribution-bucket +1 +1 +RealTimeContribution +- +bucket dfn -uievents -uievents +turtledove +turtledove 1 current -https://w3c.github.io/uievents/#bubble-phase +https://wicg.github.io/turtledove/#real-time-reporting-contribution-bucket 1 +real time reporting contribution - -bubbling phase +bucket file system dfn -uievents -uievents +fs +fs +1 +current +https://fs.spec.whatwg.org/#origin-private-file-system 1 -snapshot -https://www.w3.org/TR/uievents/#bubble-phase - 1 - bucket map @@ -510,6 +669,17 @@ https://storage.spec.whatwg.org/#bucket-map 1 - +budget +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-budget + +1 +source-registration JSON key +- buffer argument fs @@ -639,7 +809,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.buffer +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.buffer 1 1 %TypedArray% @@ -905,33 +1075,33 @@ https://streams.spec.whatwg.org/#pull-into-descriptor-buffer-byte-length 1 pull-into descriptor - -buffer internals +buffer source types dfn -webgpu -webgpu +webidl +webidl 1 current -https://gpuweb.github.io/gpuweb/#buffer-internals - +https://webidl.spec.whatwg.org/#dfn-buffer-source-type +1 1 - -buffer internals +buffer types dfn -webgpu -webgpu +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#buffer-types 1 -snapshot -https://www.w3.org/TR/webgpu/#buffer-internals - 1 - -buffer source types +buffer view types dfn webidl webidl 1 current -https://webidl.spec.whatwg.org/#dfn-buffer-source-type +https://webidl.spec.whatwg.org/#buffer-view-types 1 1 - @@ -1130,10 +1300,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-desc-bufferview-bufferview +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-bufferview 1 1 -MLGraphBuilder/constant(desc, bufferView) +MLGraphBuilder/constant(descriptor, bufferView) - bufferView argument @@ -1141,10 +1311,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-desc-bufferview-bufferview +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-bufferview 1 1 -MLGraphBuilder/constant(desc, bufferView) +MLGraphBuilder/constant(descriptor, bufferView) - buffered attribute @@ -1290,14 +1460,35 @@ https://w3c.github.io/webrtc-pc/#event-datachannel-bufferedamountlow RTCDataChannel - bufferedamountlow -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-datachannel-bufferedamountlow +1 - +RTCDataChannel +- +bufferedchange +event +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-bufferedchange +1 +1 +- +bufferedchange +event +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-bufferedchange +1 +1 - buffers dict-member @@ -1328,16 +1519,116 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#BufferSource + +1 +- +build a content range +dfn +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#build-a-content-range + +1 +- +build a url pattern from a web idl value +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#build-a-url-pattern-from-a-web-idl-value 1 1 - -build the list of first-party sets +build a url pattern from an infra value +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#build-a-url-pattern-from-an-infra-value +1 +1 +- +build a urlpattern object from a web idl value +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#build-a-urlpattern-object-from-a-web-idl-value +1 +1 +- +build an interest group passed to generatebid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#build-an-interest-group-passed-to-generatebid + +1 +- +build bid generators map +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#build-bid-generators-map + +1 +- +build not restored reasons for a top-level traversable and its descendants +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#build-not-restored-reasons-for-a-top-level-traversable-and-its-descendants + +1 +- +build not restored reasons for document state +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#build-not-restored-reasons-for-document-state + +1 +- +build the list of related website sets dfn first-party-sets first-party-sets 1 current -https://wicg.github.io/first-party-sets/#build-the-list-of-first-party-sets +https://wicg.github.io/first-party-sets/#build-the-list-of-related-website-sets + +1 +- +build trusted bidding signals url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#build-trusted-bidding-signals-url + +1 +- +build trusted scoring signals url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#build-trusted-scoring-signals-url 1 - @@ -1363,27 +1654,15 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build 1 MLGraphBuilder - -buildSync(outputs) -method -webnn -webnn +built-in default config +dfn +sanitizer-api +sanitizer-api 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-buildsync -1 -1 -MLGraphBuilder -- -buildSync(outputs) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-buildsync -1 +https://wicg.github.io/sanitizer-api/#built-in-default-config + 1 -MLGraphBuilder - built-in functions dfn @@ -1453,6 +1732,26 @@ fido current https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#built-in-user-verification-method +1 +- +built-in value name-token +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#built-in-value-name-token + +1 +- +built-in value name-token +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#built-in-value-name-token + 1 - built-in values @@ -1497,38 +1796,58 @@ https://www.w3.org/TR/WGSL/#attribute-builtin 1 attribute - -builtin_value_name +builtin functions that compute a derivative dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-builtin_value_name +https://gpuweb.github.io/gpuweb/wgsl/#builtin-functions-that-compute-a-derivative 1 -recursive descent syntax - -builtin_value_name +builtin functions that compute a derivative +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#builtin-functions-that-compute-a-derivative + +1 +- +builtin_attr dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-builtin_value_name +https://gpuweb.github.io/gpuweb/wgsl/#syntax-builtin_attr 1 syntax - -builtin_value_name +builtin_attr dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-builtin_value_name +https://www.w3.org/TR/WGSL/#syntax-builtin_attr + +1 +syntax +- +builtin_value_name +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-builtin_value_name 1 -recursive descent syntax +syntax - builtin_value_name dfn @@ -1591,16 +1910,6 @@ webrtc-identity snapshot https://www.w3.org/TR/webrtc-identity/#dfn-bundle -1 -- -bundle -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-bundle - 1 - bundle-only @@ -1621,16 +1930,6 @@ webrtc-identity snapshot https://www.w3.org/TR/webrtc-identity/#dfn-bundle-only -1 -- -bundle-only -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-bundle-only - 1 - bundle-policy @@ -1651,16 +1950,6 @@ webrtc-identity snapshot https://www.w3.org/TR/webrtc-identity/#dfn-bundle-policy -1 -- -bundle-policy -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-bundle-policy - 1 - bundlePolicy @@ -1727,6 +2016,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-burlywood 1 1 <color> +<named-color> - burlywood dfn @@ -1748,6 +2038,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-burlywood 1 1 <color> +<named-color> - butt value @@ -1830,7 +2121,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#button-state-(type=button) +https://html.spec.whatwg.org/multipage/input.html#button-state-(type%3Dbutton) 1 1 input @@ -1976,9 +2267,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-buttonborder +https://drafts.csswg.org/css-color-4/#valdef-color-buttonborder 1 1 +<color> <system-color> - buttonborder @@ -1987,9 +2279,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-buttonborder +https://www.w3.org/TR/css-color-4/#valdef-color-buttonborder 1 1 +<color> <system-color> - buttonface @@ -2008,9 +2301,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-buttonface +https://drafts.csswg.org/css-color-4/#valdef-color-buttonface 1 1 +<color> <system-color> - buttonface @@ -2029,9 +2323,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-buttonface +https://www.w3.org/TR/css-color-4/#valdef-color-buttonface 1 1 +<color> <system-color> - buttonhighlight @@ -2045,14 +2340,16 @@ https://drafts.csswg.org/css-color-3/#buttonhighlight 1 - buttonhighlight -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#buttonhighlight - +https://drafts.csswg.org/css-color-4/#valdef-color-buttonhighlight 1 +1 +<color> +<deprecated-color> - buttonhighlight dfn @@ -2065,12 +2362,24 @@ https://www.w3.org/TR/css-color-3/#buttonhighlight 1 - buttonhighlight -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#buttonhighlight +https://www.w3.org/TR/css-color-4/#valdef-color-buttonhighlight +1 +1 +<color> +<deprecated-color> +- +buttons +dfn +css-scrollbars-1 +css-scrollbars +1 +current +https://drafts.csswg.org/css-scrollbars-1/#buttons 1 - @@ -2161,14 +2470,16 @@ https://drafts.csswg.org/css-color-3/#buttonshadow 1 - buttonshadow -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#buttonshadow - +https://drafts.csswg.org/css-color-4/#valdef-color-buttonshadow 1 +1 +<color> +<deprecated-color> - buttonshadow dfn @@ -2181,14 +2492,16 @@ https://www.w3.org/TR/css-color-3/#buttonshadow 1 - buttonshadow -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#buttonshadow - +https://www.w3.org/TR/css-color-4/#valdef-color-buttonshadow +1 1 +<color> +<deprecated-color> - buttontext dfn @@ -2206,9 +2519,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-buttontext +https://drafts.csswg.org/css-color-4/#valdef-color-buttontext 1 1 +<color> <system-color> - buttontext @@ -2227,8 +2541,86 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-buttontext +https://www.w3.org/TR/css-color-4/#valdef-color-buttontext 1 1 +<color> <system-color> - +buyer and seller reporting id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-buyer-and-seller-reporting-id + +1 +interest group ad +- +buyer reporting id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-buyer-reporting-id + +1 +interest group ad +- +buyer reporting result +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-buyer-reporting-result + +1 +leading bid info +- +buyerAndSellerReportingId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionad-buyerandsellerreportingid +1 +1 +AuctionAd +- +buyerAndSellerReportingId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-buyerandsellerreportingid +1 +1 +ReportingBrowserSignals +- +buyerReportingId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionad-buyerreportingid +1 +1 +AuctionAd +- +buyerReportingId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-buyerreportingid +1 +1 +ReportWinBrowserSignals +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-bv.data b/bikeshed/spec-data/readonly/anchors/anchors-bv.data new file mode 100644 index 0000000000..c6ab68ef3a --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-bv.data @@ -0,0 +1,20 @@ +<bvar> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_bvar + +1 +- +<bvar> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_bvar + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-by.data b/bikeshed/spec-data/readonly/anchors/anchors-by.data index c37adda74b..6e959ad079 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-by.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-by.data @@ -63,6 +63,16 @@ https://streams.spec.whatwg.org/#blqs-constructor 1 ByteLengthQueuingStrategy - +ByteListBitwiseOp +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-bytelistbitwiseop +1 +1 +- ByteListBitwiseOp(op, xBytes, yBytes) abstract-op ecmascript @@ -73,6 +83,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-bytelistbitwiseop 1 1 - +ByteListEqual +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-bytelistequal +1 +1 +- ByteListEqual(xBytes, yBytes) abstract-op ecmascript @@ -223,11 +243,11 @@ https://infra.spec.whatwg.org/#byte - byte dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-byte +https://w3c.github.io/png/#dfn-byte 1 - @@ -239,6 +259,16 @@ webidl current https://webidl.spec.whatwg.org/#idl-byte 1 +1 +- +byte +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-byte + 1 - byte length @@ -340,11 +370,21 @@ readable byte stream queue entry - byte order dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-byte-order +https://w3c.github.io/png/#dfn-byte-order + +1 +- +byte order +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-byte-order 1 - @@ -507,7 +547,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.bytelength +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.bytelength 1 1 %TypedArray% @@ -595,7 +635,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.byteoffset +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.byteoffset 1 1 %TypedArray% @@ -623,6 +663,16 @@ https://streams.spec.whatwg.org/#dom-readablestreamtype-bytes ReadableStreamType - bytes +dfn +push-api +push-api +1 +current +https://w3c.github.io/push-api/#dfn-bytes + +1 +- +bytes argument wasm-js-api-2 wasm-js-api @@ -724,6 +774,16 @@ https://wicg.github.io/webpackage/loading.html#read-buffer-bytes read buffer - bytes +dfn +push-api +push-api +1 +snapshot +https://www.w3.org/TR/push-api/#dfn-bytes + +1 +- +bytes argument wasm-js-api-2 wasm-js-api @@ -780,6 +840,61 @@ https://streams.spec.whatwg.org/#pull-into-descriptor-bytes-filled 1 pull-into descriptor - +bytes() +method +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#dom-body-bytes +1 +1 +Body +- +bytes() +method +fileapi +fileapi +1 +current +https://w3c.github.io/FileAPI/#dom-blob-bytes +1 +1 +Blob +- +bytes() +method +push-api +push-api +1 +current +https://w3c.github.io/push-api/#dom-pushmessagedata-bytes +1 +1 +PushMessageData +- +bytes() +method +fileapi +fileapi +1 +snapshot +https://www.w3.org/TR/FileAPI/#dom-blob-bytes +1 +1 +Blob +- +bytes() +method +push-api +push-api +1 +snapshot +https://www.w3.org/TR/push-api/#dom-pushmessagedata-bytes +1 +1 +PushMessageData +- bytesAcknowledged dict-member webtransport @@ -824,6 +939,28 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatepairstats-bytesdiscardedo 1 RTCIceCandidatePairStats - +bytesLost +dict-member +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-byteslost +1 +1 +WebTransportConnectionStats +- +bytesLost +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-byteslost +1 +1 +WebTransportConnectionStats +- bytesPerRow dict-member webgpu @@ -918,10 +1055,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportreceivestreamstats-bytesreceived +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-bytesreceived 1 1 -WebTransportReceiveStreamStats +WebTransportConnectionStats - bytesReceived dict-member @@ -929,10 +1066,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-bytesreceived +https://w3c.github.io/webtransport/#dom-webtransportreceivestreamstats-bytesreceived 1 1 -WebTransportStats +WebTransportReceiveStreamStats - bytesReceived dict-member @@ -984,10 +1121,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportreceivestreamstats-bytesreceived +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-bytesreceived 1 1 -WebTransportReceiveStreamStats +WebTransportConnectionStats - bytesReceived dict-member @@ -995,10 +1132,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-bytesreceived +https://www.w3.org/TR/webtransport/#dom-webtransportreceivestreamstats-bytesreceived 1 1 -WebTransportStats +WebTransportReceiveStreamStats - bytesSent dict-member @@ -1050,10 +1187,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportsendstreamstats-bytessent +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-bytessent 1 1 -WebTransportSendStreamStats +WebTransportConnectionStats - bytesSent dict-member @@ -1061,10 +1198,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-bytessent +https://w3c.github.io/webtransport/#dom-webtransportsendstreamstats-bytessent 1 1 -WebTransportStats +WebTransportSendStreamStats - bytesSent dict-member @@ -1116,10 +1253,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamstats-bytessent +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-bytessent 1 1 -WebTransportSendStreamStats +WebTransportConnectionStats - bytesSent dict-member @@ -1127,10 +1264,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-bytessent +https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamstats-bytessent 1 1 -WebTransportStats +WebTransportSendStreamStats - bytesWritten argument @@ -1215,13 +1352,3 @@ https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamstats-byteswritten 1 WebTransportSendStreamStats - -bytestring -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#bytestring - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-c_.data b/bikeshed/spec-data/readonly/anchors/anchors-c_.data index 03c0005841..299de8c982 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-c_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-c_.data @@ -147,6 +147,56 @@ https://www.w3.org/TR/css-color-5/#valdef-oklch-c oklch() - c +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-c +1 +1 +CSSLCH +- +c +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch-l-c-h-alpha-c +1 +1 +CSSLCH/CSSLCH(l, c, h, alpha) +CSSLCH/constructor(l, c, h, alpha) +CSSLCH/CSSLCH(l, c, h) +CSSLCH/constructor(l, c, h) +- +c +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-c +1 +1 +CSSOKLCH +- +c +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-alpha-c +1 +1 +CSSOKLCH/CSSOKLCH(l, c, h, alpha) +CSSOKLCH/constructor(l, c, h, alpha) +CSSOKLCH/CSSOKLCH(l, c, h) +CSSOKLCH/constructor(l, c, h) +- +c dict-member geometry-1 geometry @@ -170,16 +220,6 @@ DOMMatrixReadOnly DOMMatrix - c -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-c - -1 -- -c dict-member webnn webnn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ca.data b/bikeshed/spec-data/readonly/anchors/anchors-ca.data index 9a3866cfe4..2d53cae43f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ca.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ca.data @@ -1,3 +1,14 @@ +"cache" +enum-value +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routersourceenum-cache +1 +1 +RouterSourceEnum +- "camera" permission mediacapture-streams @@ -29,23 +40,33 @@ https://wicg.github.io/speech-api/#dom-speechsynthesiserrorcode-canceled 1 SpeechSynthesisErrorCode - -<calc-constant> +<calc-keyword> type css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#typedef-calc-constant +https://drafts.csswg.org/css-values-4/#typedef-calc-keyword 1 1 - -<calc-constant> +<calc-keyword> type css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#typedef-calc-constant +https://www.w3.org/TR/css-values-4/#typedef-calc-keyword +1 +1 +- +<calc-mix()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-calc-mix 1 1 - @@ -149,6 +170,16 @@ https://www.w3.org/TR/css-values-4/#typedef-calc-product 1 1 - +<calc-size-basis> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-calc-size-basis +1 +1 +- <calc-sum> type css-values-3 @@ -227,6 +258,46 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#typedef-calc-value 1 +1 +- +<card/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_card + +1 +- +<card/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_card + +1 +- +<cartesianproduct/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cartesianproduct + +1 +- +<cartesianproduct/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cartesianproduct + 1 - CAPTURING_PHASE @@ -320,6 +391,16 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-calculating-color-attachment-bytes- 1 1 - +Call +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-call +1 +1 +- Call(F, V, argumentsList) abstract-op ecmascript @@ -350,6 +431,26 @@ https://www.w3.org/TR/mediacapture-streams/#dom-cameradevicepermissiondescriptor 1 1 - +CanBeHeldWeakly +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-canbeheldweakly +1 +1 +- +CanBeHeldWeakly(v) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-canbeheldweakly +1 +1 +- CanDeclareGlobalFunction(N) abstract-op ecmascript @@ -359,6 +460,7 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-candeclareglobalfunction 1 1 +Global Environment Records - CanDeclareGlobalVar(N) abstract-op @@ -369,6 +471,7 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-candeclareglobalvar 1 1 +Global Environment Records - CanMakePaymentEvent interface @@ -410,6 +513,16 @@ https://streams.spec.whatwg.org/#can-transfer-array-buffer 1 1 - +CanonicalNumericIndexString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-canonicalnumericindexstring +1 +1 +- CanonicalNumericIndexString(argument) abstract-op ecmascript @@ -420,6 +533,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-canonicalnumerici 1 1 - +Canonicalize +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-canonicalize-ch +1 +1 +- Canonicalize(rer, ch) abstract-op ecmascript @@ -430,6 +553,26 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-can 1 1 - +CanonicalizeKeyedCollectionKey +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-canonicalizekeyedcollectionkey +1 +1 +- +CanonicalizeKeyedCollectionKey(key) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-canonicalizekeyedcollectionkey +1 +1 +- CanvasCaptureMediaStreamTrack interface mediacapture-fromelement @@ -890,6 +1033,26 @@ https://www.w3.org/TR/screen-capture/#dom-capturestartfocusbehavior 1 1 - +CapturedMouseEvent +interface +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseevent +1 +1 +- +CapturedMouseEventInit +dictionary +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseeventinit +1 +1 +- CaretPosition interface cssom-view-1 @@ -910,6 +1073,26 @@ https://www.w3.org/TR/cssom-view-1/#caretposition 1 1 - +CaretPositionFromPointOptions +dictionary +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dictdef-caretpositionfrompointoptions +1 +1 +- +CaseClauseIsSelected +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-runtime-semantics-caseclauseisselected +1 +1 +- CaseClauseIsSelected(C, input) abstract-op ecmascript @@ -1003,7 +1186,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-cachedposition +https://w3c.github.io/geolocation/#dfn-cachedposition 1 Geolocation @@ -1140,6 +1323,17 @@ https://streams.spec.whatwg.org/#readablestreamdefaultcontroller-cancelalgorithm 1 ReadableStreamDefaultController - +[[cancelalgorithm]] +dfn +streams +streams +1 +current +https://streams.spec.whatwg.org/#transformstreamdefaultcontroller-cancelalgorithm + +1 +TransformStreamDefaultController +- cache attribute fetch @@ -1309,6 +1503,17 @@ https://w3c.github.io/ServiceWorker/#dom-multicachequeryoptions-cachename MultiCacheQueryOptions - cacheName +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routersourcedict-cachename +1 +1 +RouterSourceDict +- +cacheName argument service-workers service-workers @@ -1370,6 +1575,16 @@ html current https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#cached-attr-associated-elements +1 +- +cached attr-associated elements object +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#cached-attr-associated-elements-object + 1 - cached ecmascript object @@ -1389,8 +1604,30 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-cached-object + +1 +- +caches +attribute +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-caches +1 +1 +StorageAccessHandle +- +caches +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-caches 1 1 +StorageAccessTypes - caches attribute @@ -1405,6 +1642,17 @@ WindowOrWorkerGlobalScope - caches attribute +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-caches +1 +1 +StorageBucket +- +caches +attribute service-workers service-workers 1 @@ -1434,6 +1682,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-cadetblue 1 1 <color> +<named-color> - cadetblue dfn @@ -1455,6 +1704,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-cadetblue 1 1 <color> +<named-color> - calc() function @@ -1496,6 +1746,16 @@ https://www.w3.org/TR/css-values-4/#funcdef-calc 1 1 - +calc-mix() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-calc-mix +1 +1 +- calc-operator nodes dfn css-values-4 @@ -1518,6 +1778,52 @@ https://www.w3.org/TR/css-values-4/#calculation-tree-calc-operator-nodes 1 calculation tree - +calc-size basis +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#calc-size-basis + +1 +- +calc-size calculation +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#calc-size-calculation + +1 +- +calc-size() +function +css-sizing-3 +css-sizing +3 +current +https://drafts.csswg.org/css-sizing-3/#funcdef-width-calc-size +1 +1 +width +min-width +max-width +height +min-height +max-height +- +calc-size() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-calc-size +1 +1 +- calcmode element-attr svg-animations @@ -1559,87 +1865,396 @@ https://www.w3.org/TR/resize-observer-1/#calculate-box-size%E2%91%A0 1 - -calculate depth for node +calculate conv output size dfn -resize-observer-1 -resize-observer +webnn +webnn 1 current -https://drafts.csswg.org/resize-observer-1/#calculate-depth-for-node +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-conv-output-size 1 +MLGraphBuilder - -calculate depth for node +calculate conv output size dfn -resize-observer-1 -resize-observer +webnn +webnn 1 snapshot -https://www.w3.org/TR/resize-observer-1/#calculate-depth-for-node +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-conv-output-size 1 +MLGraphBuilder - -calculate linear easing output progress +calculate conv2d output sizes dfn -css-easing-2 -css-easing -2 -current -https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress -1 +webnn +webnn 1 -- -calculate the absolute position -dfn -webdriver2 -webdriver -2 current -https://w3c.github.io/webdriver/#dfn-calculate-the-absolute-position +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-conv2d-output-sizes 1 +MLGraphBuilder - -calculate the absolute position +calculate conv2d output sizes dfn -webdriver2 -webdriver -2 +webnn +webnn +1 snapshot -https://www.w3.org/TR/webdriver2/#dfn-calculate-the-absolute-position +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-conv2d-output-sizes 1 +MLGraphBuilder - -calculate the aspect ratio +calculate convtranspose output size dfn -webxrlayers-1 -webxrlayers +webnn +webnn 1 current -https://immersive-web.github.io/layers/#calculate-the-aspect-ratio +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-convtranspose-output-size 1 +MLGraphBuilder - -calculate the aspect ratio +calculate convtranspose output size dfn -webxrlayers-1 -webxrlayers +webnn +webnn 1 snapshot -https://www.w3.org/TR/webxrlayers-1/#calculate-the-aspect-ratio +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-convtranspose-output-size 1 +MLGraphBuilder - -calculate the part element map +calculate convtranspose2d output sizes dfn -css-shadow-parts-1 -css-shadow-parts +webnn +webnn 1 current -https://drafts.csswg.org/css-shadow-parts-1/#calculate-the-part-element-map +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-convtranspose2d-output-sizes 1 +MLGraphBuilder - -calculation +calculate convtranspose2d output sizes +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-convtranspose2d-output-sizes + +1 +MLGraphBuilder +- +calculate depth for node +dfn +resize-observer-1 +resize-observer +1 +current +https://drafts.csswg.org/resize-observer-1/#calculate-depth-for-node + +1 +- +calculate depth for node +dfn +resize-observer-1 +resize-observer +1 +snapshot +https://www.w3.org/TR/resize-observer-1/#calculate-depth-for-node + +1 +- +calculate dom path +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#calculate-dom-path + +1 +- +calculate dom path +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#calculate-dom-path + +1 +- +calculate linear easing output progress +dfn +css-easing-2 +css-easing +2 +current +https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress +1 +1 +- +calculate matmul output sizes +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-matmul-output-sizes + +1 +MLGraphBuilder +- +calculate matmul output sizes +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-matmul-output-sizes + +1 +MLGraphBuilder +- +calculate mouseevent button attribute +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#calculate-mouseevent-button-attribute + +1 +- +calculate mouseevent button attribute +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#calculate-mouseevent-button-attribute + +1 +- +calculate padding output sizes +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-padding-output-sizes + +1 +MLGraphBuilder +- +calculate padding output sizes +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-padding-output-sizes + +1 +MLGraphBuilder +- +calculate pool2d output sizes +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-pool2d-output-sizes + +1 +MLGraphBuilder +- +calculate pool2d output sizes +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-pool2d-output-sizes + +1 +MLGraphBuilder +- +calculate reduction output sizes +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-reduction-output-sizes + +1 +MLGraphBuilder +- +calculate reduction output sizes +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-reduction-output-sizes + +1 +MLGraphBuilder +- +calculate resample output sizes +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-calculate-resample-output-sizes + +1 +MLGraphBuilder +- +calculate resample output sizes +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-resample-output-sizes + +1 +MLGraphBuilder +- +calculate the absolute position +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-calculate-the-absolute-position + +1 +- +calculate the absolute position +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-calculate-the-absolute-position + +1 +- +calculate the ad slot size query param +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#calculate-the-ad-slot-size-query-param + +1 +- +calculate the aspect ratio +dfn +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#calculate-the-aspect-ratio + +1 +- +calculate the aspect ratio +dfn +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#calculate-the-aspect-ratio + +1 +- +calculate the device posture information +dfn +device-posture +device-posture +1 +current +https://w3c.github.io/device-posture/#dfn-calculate-the-device-posture-information + +1 +- +calculate the device posture information +dfn +device-posture +device-posture +1 +snapshot +https://www.w3.org/TR/device-posture/#dfn-calculate-the-device-posture-information + +1 +- +calculate the epochs for caller +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#calculate-the-epochs-for-caller + +1 +- +calculate the part element map +dfn +css-shadow-parts-1 +css-shadow-parts +1 +current +https://drafts.csswg.org/css-shadow-parts-1/#calculate-the-part-element-map + +1 +- +calculate the topics for caller +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#calculate-the-topics-for-caller + +1 +- +calculate user topics +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#calculate-user-topics + +1 +- +calculating an auto-aligned start time +dfn +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#animation-calculating-an-auto-aligned-start-time +1 +1 +animation +- +calculation dfn css-values-4 css-values @@ -1777,7 +2392,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-call-back-with-error +https://w3c.github.io/geolocation/#dfn-call-back-with-error 1 - @@ -1851,13 +2466,13 @@ https://www.w3.org/TR/WGSL/#call-site-tag 1 - -call the dom update callback +call the update callback dfn css-view-transitions-1 css-view-transitions 1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#call-the-dom-update-callback +current +https://drafts.csswg.org/css-view-transitions-1/#call-the-update-callback 1 - @@ -1866,8 +2481,8 @@ dfn css-view-transitions-1 css-view-transitions 1 -current -https://drafts.csswg.org/css-view-transitions-1/#call-the-update-callback +snapshot +https://www.w3.org/TR/css-view-transitions-1/#call-the-update-callback 1 - @@ -1923,28 +2538,6 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#syntax-call_phrase -1 -syntax -- -callable -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-callable - -1 -recursive descent syntax -- -callable -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-callable - 1 syntax - @@ -1959,28 +2552,6 @@ https://webidl.spec.whatwg.org/#effective-overload-set-tuple-callable 1 effective overload set tuple - -callable -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-callable - -1 -recursive descent syntax -- -callable -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-callable - -1 -syntax -- callback dfn dom @@ -2035,7 +2606,7 @@ dom 1 current https://dom.spec.whatwg.org/#event-listener-callback - +1 1 event listener - @@ -2181,18 +2752,6 @@ HTMLVideoElement/requestVideoFrameCallback(callback) - callback argument -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#dom-document-startviewtransition-callback-callback -1 -1 -Document/startViewTransition(callback) -Document/startViewTransition() -- -callback -argument intersection-observer intersection-observer 1 @@ -2376,6 +2935,30 @@ https://webidl.spec.whatwg.org/#dfn-callback-this-value 1 1 - +callbackOptions +argument +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-document-startviewtransition-callbackoptions-callbackoptions +1 +1 +Document/startViewTransition(callbackOptions) +Document/startViewTransition() +- +callbackOptions +argument +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-document-startviewtransition-callbackoptions-callbackoptions +1 +1 +Document/startViewTransition(callbackOptions) +Document/startViewTransition() +- called function dfn wgsl @@ -2436,6 +3019,28 @@ https://www.w3.org/TR/WGSL/#caller 1 - +caller domain +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topics-caller-context-caller-domain + +1 +topics caller context +- +caller domains +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topic-with-caller-domains-caller-domains + +1 +topic with caller domains +- calling function dfn wgsl @@ -2454,6 +3059,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#calling-function +1 +- +calling site +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#calling-site + 1 - callsitenorestriction @@ -2476,23 +3091,23 @@ https://www.w3.org/TR/WGSL/#callsitenorestriction 1 - -callsiterequiredtobeuniform +callsiterequiredtobeuniform.s dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#callsiterequiredtobeuniform +https://gpuweb.github.io/gpuweb/wgsl/#callsiterequiredtobeuniforms 1 - -callsiterequiredtobeuniform +callsiterequiredtobeuniform.s dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#callsiterequiredtobeuniform +https://www.w3.org/TR/WGSL/#callsiterequiredtobeuniforms 1 - @@ -2557,10 +3172,10 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-camel_cased_attribute +https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-camel_cased_attribute 1 1 -CSSStyleDeclaration +CSSStyleProperties - camel_cased_attribute attribute @@ -2607,23 +3222,23 @@ https://immersive-web.github.io/raw-camera-access/#xrcamera-camera-image XRCamera - camera information can be exposed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#camera-information-can-be-exposed - +1 1 - camera information can be exposed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#camera-information-can-be-exposed - +1 1 - camera-access @@ -2634,26 +3249,6 @@ raw-camera-access current https://immersive-web.github.io/raw-camera-access/#camera-access -1 -- -camera-information-can-be-exposed -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#camera-information-can-be-exposed - -1 -- -camera-information-can-be-exposed -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#camera-information-can-be-exposed - 1 - can add resource timing entry @@ -2708,16 +3303,6 @@ https://drafts.csswg.org/css-color-4/#can-be-displayed - can be displayed dfn -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#can-be-displayed -1 -1 -- -can be displayed -dfn css-color-4 css-color 4 @@ -2726,16 +3311,6 @@ https://www.w3.org/TR/css-color-4/#can-be-displayed 1 1 - -can be displayed -dfn -css-color-5 -css-color -5 -snapshot -https://www.w3.org/TR/css-color-5/#can-be-displayed -1 -1 -- can be manually scrolled dfn css-nav-1 @@ -2806,6 +3381,28 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#can-have-its-url-re 1 - +can initiate outbound view transition +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#document-can-initiate-outbound-view-transition + +1 +document +- +can initiate outbound view transition +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#document-can-initiate-outbound-view-transition + +1 +document +- can make digital goods service algorithm dfn digital-goods @@ -2818,7 +3415,7 @@ https://wicg.github.io/digital-goods/#can-make-digital-goods-service-algorithm - can make payment algorithm dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -2828,51 +3425,75 @@ https://w3c.github.io/payment-request/#dfn-can-make-payment-algorithm - can make payment algorithm dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-can-make-payment-algorithm +https://www.w3.org/TR/payment-request/#dfn-can-make-payment-algorithm 1 - -can't be displayed +can provide readings flag dfn -css-color-4 -css-color -4 +generic-sensor +generic-sensor +1 current -https://drafts.csswg.org/css-color-4/#cant-be-displayed +https://w3c.github.io/sensors/#virtual-sensor-can-provide-readings-flag + +1 +virtual sensor +- +can provide readings flag +dfn +generic-sensor +generic-sensor 1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-can-provide-readings-flag + 1 +virtual sensor - -can't be displayed +can provide samples dfn -css-color-5 -css-color -5 +compute-pressure +compute-pressure +1 current -https://drafts.csswg.org/css-color-5/#cant-be-displayed +https://w3c.github.io/compute-pressure/#dfn-can-provide-samples + 1 +virtual pressure source +- +can provide samples +dfn +compute-pressure +compute-pressure 1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-can-provide-samples + +1 +virtual pressure source - can't be displayed dfn css-color-4 css-color 4 -snapshot -https://www.w3.org/TR/css-color-4/#cant-be-displayed +current +https://drafts.csswg.org/css-color-4/#cant-be-displayed 1 1 - can't be displayed dfn -css-color-5 +css-color-4 css-color -5 +4 snapshot -https://www.w3.org/TR/css-color-5/#cant-be-displayed +https://www.w3.org/TR/css-color-4/#cant-be-displayed 1 1 - @@ -2900,22 +3521,22 @@ MediaSource - canGoBack attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-cangoback +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-cangoback 1 1 Navigation - canGoForward attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-cangoforward +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-cangoforward 1 1 Navigation @@ -2944,29 +3565,40 @@ RTCDTMFSender - canIntercept attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-canintercept +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-canintercept 1 1 NavigateEvent - canIntercept dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-canintercept +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-canintercept 1 1 NavigateEventInit - +canLoadAdAuctionFencedFrame() +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-canloadadauctionfencedframe +1 +1 +Navigator +- canMakePayment() method -payment-request-1.1 +payment-request payment-request 1 current @@ -2977,36 +3609,36 @@ PaymentRequest - canMakePayment() method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-canmakepayment +https://www.w3.org/TR/payment-request/#dom-paymentrequest-canmakepayment 1 1 PaymentRequest - -canPlayEffectType() +canParse(url) method -gamepad-extensions -gamepad-extensions +url +url 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-canplayeffecttype +https://url.spec.whatwg.org/#dom-url-canparse 1 1 -GamepadHapticActuator +URL - -canPlayEffectType(type) +canParse(url, base) method -gamepad-extensions -gamepad-extensions +url +url 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-canplayeffecttype +https://url.spec.whatwg.org/#dom-url-canparse 1 1 -GamepadHapticActuator +URL - canPlayType(type) method @@ -3105,6 +3737,7 @@ current https://html.spec.whatwg.org/multipage/indices.html#event-cancel 1 1 +CloseWatcher HTMLElement - cancel @@ -3113,6 +3746,17 @@ streams streams 1 current +https://streams.spec.whatwg.org/#dom-transformer-cancel +1 +1 +Transformer +- +cancel +dict-member +streams +streams +1 +current https://streams.spec.whatwg.org/#dom-underlyingsource-cancel 1 1 @@ -3152,15 +3796,14 @@ https://w3c.github.io/webtransport/#webtransportreceivestream-cancel WebTransportReceiveStream - cancel -event -close-watcher -close-watcher +dfn +web-smart-card +web-smart-card 1 current -https://wicg.github.io/close-watcher/#eventdef-closewatcher-cancel -1 +https://wicg.github.io/web-smart-card/#dfn-cancel + 1 -CloseWatcher - cancel dfn @@ -3236,14 +3879,13 @@ https://streams.spec.whatwg.org/#cancel-a-readable-stream - cancel action dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#close-watcher-cancel-action +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-cancel-action 1 -close watcher - cancel an animation dfn @@ -3305,6 +3947,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#cancel-event +1 +- +cancel the outstanding getstatuschange +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-cancel-the-outstanding-getstatuschange + 1 - cancel() @@ -3758,12 +4410,27 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceeventtiming-cancelable +https://w3c.github.io/event-timing/#dom-performanceeventtiming-cancelable 1 PerformanceEventTiming - cancelable +argument +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-cancelable +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +cancelable attribute event-timing event-timing @@ -3774,6 +4441,21 @@ https://www.w3.org/TR/event-timing/#dom-performanceeventtiming-cancelable PerformanceEventTiming - +cancelable +argument +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-cancelable +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- cancelableArg argument uievents @@ -3962,14 +4644,13 @@ UIEvent/initUIEvent(typeArg) - cancelaction dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#create-a-close-watcher-cancelaction +https://html.spec.whatwg.org/multipage/interaction.html#create-close-watcher-cancelaction 1 -create a close watcher - cancelalgorithm dfn @@ -3993,6 +4674,17 @@ https://streams.spec.whatwg.org/#readablestream-set-up-with-byte-reading-support 1 ReadableStream/set up with byte reading support - +cancelalgorithm +dfn +streams +streams +1 +current +https://streams.spec.whatwg.org/#transformstream-set-up-cancelalgorithm +1 +1 +TransformStream/set up +- canceled dfn fetch @@ -4316,6 +5008,16 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#candidate-recommendation-draft +1 +1 +- +candidate recommendation review period +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#candidate-recommendation-review-period 1 - @@ -4326,7 +5028,7 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#candidate-recommendation-snapshot - +1 1 - candidate registry @@ -4445,6 +5147,16 @@ https://www.w3.org/TR/css-nav-1/#dom-spatialnavigationsearchoptions-candidates 1 SpatialNavigationSearchOptions - +canexcluderoot +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#auto-directionality-can-exclude-root + +1 +- cannot be manually scrolled dfn css-nav-1 @@ -4546,13 +5258,66 @@ https://html.spec.whatwg.org/multipage/links.html#link-type-canonical 1 link/rel - +canonical +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizerconfig-canonical + +1 +SanitizerConfig +- +canonical +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizernamelist-canonical + +1 +SanitizerNameList +- +canonical +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizernamewithattributeslist-canonical + +1 +SanitizerNameWithAttributesList +- +canonical identifier +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-canonical-identifier + +1 +- +canonical identifier +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-canonical-identifier + +1 +- canonical index dfn gamepad gamepad 1 current -https://w3c.github.io/gamepad/#dfn-canonical-index +https://w3c.github.io/gamepad/#dfn-canonical-indices 1 - @@ -4562,7 +5327,27 @@ gamepad gamepad 1 snapshot -https://www.w3.org/TR/gamepad/#dfn-canonical-index +https://www.w3.org/TR/gamepad/#dfn-canonical-indices + +1 +- +canonical indices +dfn +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dfn-canonical-indices + +1 +- +canonical indices +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-canonical-indices 1 - @@ -4622,7 +5407,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_canonical_unicode_locale_identifier +https://w3c.github.io/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4632,7 +5417,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_canonical_unicode_locale_identifier +https://www.w3.org/TR/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4654,6 +5439,26 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-canonical-n-quads +1 +- +canonical n-quads document +dfn +rdf12-n-quads +rdf-n-quads +1 +current +https://w3c.github.io/rdf-n-quads/spec/#dfn-canonical-n-quads-document + +1 +- +canonical n-quads document +dfn +rdf12-n-quads +rdf-n-quads +1 +snapshot +https://www.w3.org/TR/rdf12-n-quads/#dfn-canonical-n-quads-document + 1 - canonical n-quads form @@ -4684,6 +5489,16 @@ rdf-n-triples current https://w3c.github.io/rdf-n-triples/spec/#dfn-canonical-n-triples-document +1 +- +canonical n-triples document +dfn +rdf12-n-triples +rdf-n-triples +1 +snapshot +https://www.w3.org/TR/rdf12-n-triples/#dfn-canonical-n-triples-document + 1 - canonical numeric string @@ -4724,7 +5539,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_canonical_unicode_locale_identifier +https://w3c.github.io/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4734,7 +5549,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_canonical_unicode_locale_identifier +https://www.w3.org/TR/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4744,7 +5559,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_canonical_unicode_locale_identifier +https://w3c.github.io/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4754,7 +5569,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_canonical_unicode_locale_identifier +https://w3c.github.io/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4764,7 +5579,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_canonical_unicode_locale_identifier +https://www.w3.org/TR/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4774,7 +5589,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_canonical_unicode_locale_identifier +https://www.w3.org/TR/i18n-glossary/#dfn-canonical-unicode-locale-identifier 1 - @@ -4829,6 +5644,26 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothuuid-canonicaluuid 1 BluetoothUUID - +canonicalization function +dfn +rdf-canon +rdf-canon +1 +current +https://w3c.github.io/rdf-canon/spec/#dfn-canonicalization-function +1 +1 +- +canonicalization function +dfn +rdf-canon +rdf-canon +1 +snapshot +https://www.w3.org/TR/rdf-canon/#dfn-canonicalization-function +1 +1 +- canonicalization state dfn rdf-canon @@ -4847,6 +5682,16 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-canonicalization-state +1 +- +canonicalize a configuration +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#canonicalize-a-configuration + 1 - canonicalize a hash @@ -4855,7 +5700,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-hash +https://urlpattern.spec.whatwg.org/#canonicalize-a-hash 1 - @@ -4865,7 +5710,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-hostname +https://urlpattern.spec.whatwg.org/#canonicalize-a-hostname 1 - @@ -4875,7 +5720,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-password +https://urlpattern.spec.whatwg.org/#canonicalize-a-password 1 - @@ -4885,7 +5730,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-pathname +https://urlpattern.spec.whatwg.org/#canonicalize-a-pathname 1 - @@ -4895,7 +5740,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-port +https://urlpattern.spec.whatwg.org/#canonicalize-a-port 1 - @@ -4905,7 +5750,27 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-protocol +https://urlpattern.spec.whatwg.org/#canonicalize-a-protocol + +1 +- +canonicalize a sanitizer element list +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#canonicalize-a-sanitizer-element-list + +1 +- +canonicalize a sanitizer name +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#canonicalize-a-sanitizer-name 1 - @@ -4915,7 +5780,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-search +https://urlpattern.spec.whatwg.org/#canonicalize-a-search 1 - @@ -4925,7 +5790,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-a-username +https://urlpattern.spec.whatwg.org/#canonicalize-a-username 1 - @@ -4935,7 +5800,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-an-ipv6-hostname +https://urlpattern.spec.whatwg.org/#canonicalize-an-ipv6-hostname 1 - @@ -4945,7 +5810,38 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#canonicalize-an-opaque-pathname +https://urlpattern.spec.whatwg.org/#canonicalize-an-opaque-pathname + +1 +- +canonicalize for interpolation +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#calc-size-canonicalize-for-interpolation +1 +1 +calc-size() +- +canonicalized dataset +dfn +rdf-canon +rdf-canon +1 +current +https://w3c.github.io/rdf-canon/spec/#dfn-canonicalized-dataset + +1 +- +canonicalized dataset +dfn +rdf-canon +rdf-canon +1 +snapshot +https://www.w3.org/TR/rdf-canon/#dfn-canonicalized-dataset 1 - @@ -4999,9 +5895,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas +https://drafts.csswg.org/css-color-4/#valdef-color-canvas 1 1 +<color> <system-color> - canvas @@ -5079,25 +5976,45 @@ https://svgwg.org/svg2-draft/coords.html#TermCanvas 1 - canvas -dfn -png-spec -png-spec +attribute +mediacapture-fromelement +mediacapture-fromelement +1 +current +https://w3c.github.io/mediacapture-fromelement/#dom-canvascapturemediastreamtrack-canvas +1 1 +CanvasCaptureMediaStreamTrack +- +canvas +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-canvas +https://w3c.github.io/png/#dfn-canvas 1 - canvas -attribute -mediacapture-fromelement -mediacapture-fromelement +dfn +css2 +css 1 current -https://w3c.github.io/mediacapture-fromelement/#dom-canvascapturemediastreamtrack-canvas +https://www.w3.org/TR/CSS21/intro.html#canvas +1 +1 +- +canvas +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/intro.html#canvas 1 1 -CanvasCaptureMediaStreamTrack - canvas dfn @@ -5115,9 +6032,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-canvas +https://www.w3.org/TR/css-color-4/#valdef-color-canvas 1 1 +<color> <system-color> - canvas @@ -5132,6 +6050,16 @@ https://www.w3.org/TR/mediacapture-fromelement/#dom-canvascapturemediastreamtrac CanvasCaptureMediaStreamTrack - canvas +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-canvas + +1 +- +canvas attribute webgpu webgpu @@ -5218,9 +6146,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-canvastext +https://drafts.csswg.org/css-color-4/#valdef-color-canvastext 1 1 +<color> <system-color> - canvastext @@ -5229,9 +6158,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-canvastext +https://www.w3.org/TR/css-color-4/#valdef-color-canvastext 1 1 +<color> <system-color> - cap @@ -5240,10 +6170,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-cap +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-cap 1 1 -text-edge +line-fit-edge +<<text-edge>> - cap value @@ -5262,10 +6193,11 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-cap +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-cap 1 1 -text-edge +line-fit-edge +<<text-edge>> - cap value @@ -5338,6 +6270,39 @@ https://www.w3.org/TR/svg-strokes/#TermCapShape 1 1 - +cap unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#cap +1 +1 +<length> +- +cap(value) +method +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cap +1 +1 +CSS +- +cap(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cap +1 +1 +CSS +- cap-height value css-fonts-5 @@ -5406,7 +6371,7 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-capability +https://w3c.github.io/webdriver/#dfn-capabilities 1 - @@ -5426,7 +6391,7 @@ webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-capability +https://www.w3.org/TR/webdriver2/#dfn-capabilities 1 - @@ -5450,33 +6415,13 @@ https://w3c.github.io/webdriver/#dfn-capabilities-processing 1 - -capabilities processing -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-capabilities-processing - -1 -- -capability -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#dfn-capabilities - -1 -- -capability +capabilities processing dfn webdriver2 webdriver 2 -current -https://w3c.github.io/webdriver/#dfn-capability +snapshot +https://www.w3.org/TR/webdriver2/#dfn-capabilities-processing 1 - @@ -5485,18 +6430,18 @@ dfn mediacapture-streams mediacapture-streams 1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#dfn-capabilities +current +https://w3c.github.io/mediacapture-main/#dfn-capabilities 1 - capability dfn -webdriver2 -webdriver -2 +mediacapture-streams +mediacapture-streams +1 snapshot -https://www.w3.org/TR/webdriver2/#dfn-capability +https://www.w3.org/TR/mediacapture-streams/#dfn-capabilities 1 - @@ -5507,7 +6452,7 @@ webdriver 2 current https://w3c.github.io/webdriver/#dfn-capability-name - +1 1 - capability name @@ -5517,6 +6462,26 @@ webdriver 2 snapshot https://www.w3.org/TR/webdriver2/#dfn-capability-name +1 +1 +- +capabilitydelegation +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-capabilitydelegation + +1 +- +capabilityinvocation +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-capabilityinvocation 1 - @@ -5690,6 +6655,26 @@ https://drafts.csswg.org/css2/#propdef-caption-side 1 - caption-side +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side +1 +1 +- +caption-side +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side +1 +1 +- +caption-side dfn css22 css @@ -5761,14 +6746,16 @@ https://drafts.csswg.org/css-color-3/#captiontext 1 - captiontext -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#captiontext - +https://drafts.csswg.org/css-color-4/#valdef-color-captiontext +1 1 +<color> +<deprecated-color> - captiontext dfn @@ -5781,14 +6768,16 @@ https://www.w3.org/TR/css-color-3/#captiontext 1 - captiontext -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#captiontext - +https://www.w3.org/TR/css-color-4/#valdef-color-captiontext 1 +1 +<color> +<deprecated-color> - capture dict-member @@ -5813,6 +6802,17 @@ https://dom.spec.whatwg.org/#event-listener-capture event listener - capture +element-attr +html-media-capture +html-media-capture +1 +current +https://w3c.github.io/html-media-capture/#dfn-capture +1 +1 +input +- +capture attribute html-media-capture html-media-capture @@ -5864,73 +6864,73 @@ https://www.w3.org/TR/html-media-capture/#dfn-capture-control-type 1 - -capture phase +capture rendering characteristics dfn -uievents -uievents +css-view-transitions-1 +css-view-transitions 1 current -https://w3c.github.io/uievents/#capture-phase +https://drafts.csswg.org/css-view-transitions-1/#capture-rendering-characteristics 1 - -capture phase +capture rendering characteristics dfn -uievents -uievents +css-view-transitions-1 +css-view-transitions 1 snapshot -https://www.w3.org/TR/uievents/#capture-phase +https://www.w3.org/TR/css-view-transitions-1/#capture-rendering-characteristics 1 - -capture rendering characteristics +capture the image dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#capture-rendering-characteristics +https://drafts.csswg.org/css-view-transitions-1/#capture-the-image 1 - -capture rendering characteristics +capture the image dfn css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#capture-rendering-characteristics +https://www.w3.org/TR/css-view-transitions-1/#capture-the-image 1 - -capture the image +capture the new state dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#capture-the-image +https://drafts.csswg.org/css-view-transitions-1/#capture-the-new-state 1 - -capture the image +capture the new state dfn css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#capture-the-image +https://www.w3.org/TR/css-view-transitions-1/#capture-the-new-state 1 - -capture the new state +capture the old state dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#capture-the-new-state +https://drafts.csswg.org/css-view-transitions-1/#capture-the-old-state 1 - @@ -5939,10 +6939,21 @@ dfn css-view-transitions-1 css-view-transitions 1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#capture-the-old-state + +1 +- +capture-ad-auction-headers +dfn +turtledove +turtledove +1 current -https://drafts.csswg.org/css-view-transitions-1/#capture-the-old-state +https://wicg.github.io/turtledove/#request-capture-ad-auction-headers 1 +request - capture-session dfn @@ -6063,6 +7074,38 @@ https://wicg.github.io/video-rvfc/#dom-videoframecallbackmetadata-capturetime 1 VideoFrameCallbackMetadata - +captured ad auction additional bids headers +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#traversable-navigable-captured-ad-auction-additional-bids-headers + +1 +traversable navigable +- +captured ad auction signals headers +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#traversable-navigable-captured-ad-auction-signals-headers + +1 +traversable navigable +- +captured additional bids headers +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#captured-additional-bids-headers + +1 +- captured element dfn css-view-transitions-1 @@ -6081,6 +7124,36 @@ css-view-transitions snapshot https://www.w3.org/TR/css-view-transitions-1/#captured-element +1 +- +captured in a view transition +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-in-a-view-transition +1 +1 +- +captured in a view transition +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-in-a-view-transition +1 +1 +- +capturedmousechange +dfn +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dfn-capturedmousechange + 1 - capturehandlechange @@ -6252,19 +7325,19 @@ dfn cssom-view-1 cssom-view 1 -current -https://drafts.csswg.org/cssom-view-1/#caret-range +snapshot +https://www.w3.org/TR/cssom-view-1/#caret-range 1 - -caret range -dfn -cssom-view-1 -cssom-view +caret-animation +property +css-ui-4 +css-ui +4 +current +https://drafts.csswg.org/css-ui-4/#propdef-caret-animation 1 -snapshot -https://www.w3.org/TR/cssom-view-1/#caret-range - 1 - caret-color @@ -6349,6 +7422,27 @@ https://www.w3.org/TR/cssom-view-1/#dom-document-caretpositionfrompoint 1 Document - +caretPositionFromPoint(x, y, options) +method +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-document-caretpositionfrompoint +1 +1 +Document +- +carried forward +dfn +css-color-4 +css-color +4 +current +https://drafts.csswg.org/css-color-4/#carried-forward +1 +1 +- cascade dfn css-cascade-3 @@ -6397,6 +7491,26 @@ css current https://drafts.csswg.org/css2/#cascade%E2%91%A0 +1 +- +cascade +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#x12 +1 +1 +- +cascade +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#x12 +1 1 - cascade @@ -6567,6 +7681,16 @@ css-fonts current https://drafts.csswg.org/css-fonts-4/#cascaded-independently +1 +- +cascaded independently +dfn +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#cascaded-independently + 1 - cascaded value @@ -6757,7 +7881,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_case_folding +https://w3c.github.io/i18n-glossary/#dfn-case-folded 1 - @@ -6767,7 +7891,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_case_folding +https://www.w3.org/TR/i18n-glossary/#dfn-case-folded 1 - @@ -6797,7 +7921,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_case_sensitive +https://w3c.github.io/i18n-glossary/#dfn-case-sensitive 1 - @@ -6807,7 +7931,27 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_case_sensitive +https://www.w3.org/TR/i18n-glossary/#dfn-case-sensitive +1 + +- +case-folded +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-case-folded +1 + +- +case-folded +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-case-folded 1 - @@ -6827,7 +7971,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_case_sensitive +https://w3c.github.io/i18n-glossary/#dfn-case-sensitive 1 - @@ -6848,7 +7992,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#case-sensitive -1 + 1 - case-sensitive @@ -6857,7 +8001,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_case_sensitive +https://www.w3.org/TR/i18n-glossary/#dfn-case-sensitive 1 - @@ -6971,6 +8115,70 @@ https://www.w3.org/TR/WGSL/#syntax-case_selectors 1 syntax - +cast +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#cast + +1 +- +cast +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#cast + +1 +- +cast(input, type) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cast +1 +1 +MLGraphBuilder +- +cast(input, type) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast +1 +1 +MLGraphBuilder +- +cast(input, type, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cast +1 +1 +MLGraphBuilder +- +cast(input, type, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast +1 +1 +MLGraphBuilder +- catch(onRejected) method ecmascript diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cb.data b/bikeshed/spec-data/readonly/anchors/anchors-cb.data index 3dd9ecc927..08160cde07 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cb.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cb.data @@ -1,20 +1,80 @@ -cbcs +"cbcs" dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#scheme-cbcs + + +- +"cbcs" +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#scheme-cbcs + + +- +<cbytes> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cbytes + +1 +- +<cbytes> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cbytes + 1 +- +cbcs +dfn +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#scheme-cbcs - -cbcs-1-9 +cbcs dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#scheme-cbcs + + +- +cbcs-1-9 +dfn +encrypted-media-2 encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#scheme-cbcs-1-9 +https://w3c.github.io/encrypted-media/#dfn-cbcs-1-9 + + +- +cbcs-1-9 +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-cbcs-1-9 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cc.data b/bikeshed/spec-data/readonly/anchors/anchors-cc.data index 942027d551..0b3914b905 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cc.data @@ -209,6 +209,26 @@ snapshot https://www.w3.org/TR/webauthn-3/#ccdtostring 1 +- +ccs +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-ccs +1 + +- +ccs +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-ccs +1 + - cctlds dfn @@ -216,10 +236,10 @@ first-party-sets first-party-sets 1 current -https://wicg.github.io/first-party-sets/#first-party-set-cctlds +https://wicg.github.io/first-party-sets/#related-website-set-cctlds 1 -first-party set +related website set - ccw value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cd.data b/bikeshed/spec-data/readonly/anchors/anchors-cd.data index f5f4654f13..a8686207be 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cd.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cd.data @@ -129,3 +129,43 @@ https://www.w3.org/TR/webauthn-3/#cddl 1 - +cdm +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-cdm +1 +1 +- +cdm +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-cdm +1 +1 +- +cdm unavailable +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-cdm-unavailable + +1 +- +cdm unavailable +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-cdm-unavailable + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ce.data b/bikeshed/spec-data/readonly/anchors/anchors-ce.data index f99adc5651..fe82ab7107 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ce.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ce.data @@ -19,6 +19,26 @@ https://www.w3.org/TR/webnn/#dom-mlroundingtype-ceil 1 1 MLRoundingType +- +"cenc" +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#scheme-cenc + + +- +"cenc" +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#scheme-cenc + + - "center" enum-value @@ -108,6 +128,46 @@ https://www.w3.org/TR/webvtt1/#dom-positionalignsetting-center 1 PositionAlignSetting - +<ceiling/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_ceiling + +1 +- +<ceiling/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_ceiling + +1 +- +<cerror> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cerror + +1 +- +<cerror> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cerror + +1 +- CEReactions extended-attribute html @@ -136,21 +196,33 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-certificate + 1 -1 +RTCCertificate - -ceil(x) +ceil(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.ceil +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-ceil 1 1 -Math +MLGraphBuilder - -ceil(x) +ceil(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil +1 +1 +MLGraphBuilder +- +ceil(input, options) method webnn webnn @@ -161,7 +233,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-ceil 1 MLGraphBuilder - -ceil(x) +ceil(input, options) method webnn webnn @@ -172,6 +244,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil 1 MLGraphBuilder - +ceil(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.ceil +1 +1 +Math +- ceiling expression dfn wgsl @@ -319,7 +402,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-we 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - cellState argument @@ -331,7 +413,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentw 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - cellpadding element-attr @@ -379,13 +460,23 @@ ConnectionType - cenc dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#scheme-cenc +- +cenc +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#scheme-cenc + + - center value @@ -416,6 +507,18 @@ anchor() - center value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-center +1 +1 +position-area +<position-area> +- +center +value css-backgrounds-3 css-backgrounds 3 @@ -517,21 +620,6 @@ scroll-snap-align - center value -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-center -1 -1 -scroll-start -scroll-start-x -scroll-start-y -scroll-start-block -scroll-start-inline -- -center -value css-speech-1 css-speech 1 @@ -630,6 +718,17 @@ https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-align-center stroke-align - center +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-center +1 +1 +interpolation sampling +- +center enum-value html html @@ -651,6 +750,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#center 1 - center +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-sampling-center +1 +1 +interpolation sampling +- +center value css-align-3 css-align @@ -668,6 +778,29 @@ align-content - center value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-center +1 +1 +anchor() +- +center +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-center +1 +1 +inset-area +<inset-area> +- +center +value css-backgrounds-3 css-backgrounds 3 @@ -1145,6 +1278,28 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrmediaequirectlayerinit-centralhorizon 1 XRMediaEquirectLayerInit - +centroid +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-centroid +1 +1 +interpolation sampling +- +centroid +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-sampling-centroid +1 +1 +interpolation sampling +- ceo dfn w3c-process @@ -1263,46 +1418,86 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcstatstype-certificate 1 RTCStatsType - -certificate algorithms +certificate chain +dfn +webpackage +webpackage +1 +current +https://wicg.github.io/webpackage/loading.html#certificate-chain + +1 +- +certificate chain +dfn +webpackage +webpackage +1 +current +https://wicg.github.io/webpackage/loading.html#exchange-signature-certificate-chain + +1 +exchange signature +- +certificate serial number dfn openscreenprotocol openscreenprotocol 1 current -https://w3c.github.io/openscreenprotocol/#certificate-algorithms +https://w3c.github.io/openscreenprotocol/#certificate-serial-number 1 - -certificate algorithms +certificate serial number dfn openscreenprotocol openscreenprotocol 1 snapshot -https://www.w3.org/TR/openscreenprotocol/#certificate-algorithms +https://www.w3.org/TR/openscreenprotocol/#certificate-serial-number 1 - -certificate chain +certificate serial number base dfn -webpackage -webpackage +openscreenprotocol +openscreenprotocol 1 current -https://wicg.github.io/webpackage/loading.html#certificate-chain +https://w3c.github.io/openscreenprotocol/#certificate-serial-number-base 1 - -certificate chain +certificate serial number base dfn -webpackage -webpackage +openscreenprotocol +openscreenprotocol +1 +snapshot +https://www.w3.org/TR/openscreenprotocol/#certificate-serial-number-base + +1 +- +certificate serial number counter +dfn +openscreenprotocol +openscreenprotocol 1 current -https://wicg.github.io/webpackage/loading.html#exchange-signature-certificate-chain +https://w3c.github.io/openscreenprotocol/#certificate-serial-number-counter + +1 +- +certificate serial number counter +dfn +openscreenprotocol +openscreenprotocol +1 +snapshot +https://www.w3.org/TR/openscreenprotocol/#certificate-serial-number-counter 1 -exchange signature - certificates dict-member diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ch.data b/bikeshed/spec-data/readonly/anchors/anchors-ch.data index c06afa847e..736eb214ee 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ch.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ch.data @@ -6,6 +6,26 @@ css current https://drafts.csswg.org/css2/#charset%E2%91%A0 +1 +- +"@charset" +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x57 +1 +1 +- +"@charset" +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x57 +1 1 - :checked @@ -58,6 +78,28 @@ https://www.w3.org/TR/selectors-4/#checked-pseudo 1 1 - +@character-variant +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-character-variant +1 +1 +@font-feature-values +- +@character-variant +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-character-variant +1 +1 +@font-feature-values +- @charset at-rule css-syntax-3 @@ -330,6 +372,46 @@ https://www.w3.org/TR/webaudio/#dictdef-channelsplitteroptions 1 1 - +ChapterInformation +interface +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#chapterinformation +1 +1 +- +ChapterInformation +interface +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#chapterinformation +1 +1 +- +ChapterInformationInit +dictionary +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dictdef-chapterinformationinit +1 +1 +- +ChapterInformationInit +dictionary +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dictdef-chapterinformationinit +1 +1 +- CharacterBoundsUpdateEvent interface edit-context @@ -370,6 +452,26 @@ https://www.w3.org/TR/edit-context/#dom-characterboundsupdateeventinit 1 1 - +CharacterComplement +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-charactercomplement +1 +1 +- +CharacterComplement(rer, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-charactercomplement +1 +1 +- CharacterData interface dom @@ -380,6 +482,16 @@ https://dom.spec.whatwg.org/#characterdata 1 1 - +CharacterRange +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-characterrange-abstract-operation +1 +1 +- CharacterRange(A, B) abstract-op ecmascript @@ -390,6 +502,16 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-cha 1 1 - +CharacterRangeOrUnion +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-runtime-semantics-characterrangeorunion-abstract-operation +1 +1 +- CharacterRangeOrUnion(rer, A, B) abstract-op ecmascript @@ -400,6 +522,16 @@ https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browser 1 1 - +CharacterSetMatcher +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-charactersetmatcher-abstract-operation +1 +1 +- CharacterSetMatcher(rer, A, invert, direction) abstract-op ecmascript @@ -420,6 +552,46 @@ https://webbluetoothcg.github.io/web-bluetooth/#characteristiceventhandlers 1 1 - +Check entry intersection +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-check-entry-intersection +1 +1 +- +Check entry intersection +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-check-entry-intersection +1 +1 +- +Check permissions policy +abstract-op +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#check-permissions-policy +1 +1 +- +Check permissions policy +abstract-op +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#check-permissions-policy +1 +1 +- CheckVisibilityOptions dictionary cssom-view-1 @@ -480,6 +652,28 @@ https://dom.spec.whatwg.org/#childnode 1 1 - +[[ChangesCountMap]] +attribute +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-changescountmap + +1 +PressureObserver +- +[[ChangesCountMap]] +attribute +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-changescountmap + +1 +PressureObserver +- [[ChargingTime]] attribute battery-status @@ -655,6 +849,39 @@ https://www.w3.org/TR/css-values-4/#ch 1 <length> - +ch unit +value +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#ch +1 +1 +<length> +- +ch unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#ch +1 +1 +<length> +- +ch unit +value +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#ch +1 +1 +<length> +- ch(value) method css-typed-om-1 @@ -837,6 +1064,16 @@ https://wicg.github.io/client-hints-infrastructure/#ch-ua-bitness 1 1 - +ch-ua-form-factors +dfn +client-hints-infrastructure +client-hints-infrastructure +1 +current +https://wicg.github.io/client-hints-infrastructure/#ch-ua-form-factors +1 +1 +- ch-ua-full-version dfn client-hints-infrastructure @@ -1004,13 +1241,13 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-tr-choff HTMLTableRowElement - chain -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-chain - +1 1 - chain @@ -1024,13 +1261,13 @@ https://www.w3.org/TR/webrtc/#dfn-chain 1 - chain an operation -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-chain - +1 1 - chain an operation @@ -1044,33 +1281,33 @@ https://www.w3.org/TR/webrtc/#dfn-chain 1 - chain transform algorithm -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#chain-transform-algorithm - +https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-chain-transform-algorithm +1 1 - chain transform algorithm -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#chain-transform-algorithm - +https://www.w3.org/TR/webrtc-encoded-transform/#abstract-opdef-chain-transform-algorithm +1 1 - chaining -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-chain - +1 1 - chaining @@ -1093,16 +1330,6 @@ https://www.w3.org/Consortium/Process/#GeneralChairs 1 1 - -chair decision appeal -dfn -w3c-process -w3c-process -1 -current -https://www.w3.org/Consortium/Process/#chair-decision-appeal -1 -1 -- chair decisions dfn w3c-process @@ -1125,6 +1352,16 @@ https://w3c.github.io/secure-payment-confirmation/#dom-securepaymentconfirmation SecurePaymentConfirmationRequest - challenge +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-challenge + +1 +- +challenge dict-member webauthn-3 webauthn @@ -1191,6 +1428,16 @@ https://www.w3.org/TR/secure-payment-confirmation/#dom-securepaymentconfirmation SecurePaymentConfirmationRequest - challenge +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-challenge + +1 +- +challenge dict-member webauthn-3 webauthn @@ -1218,11 +1465,33 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-challenge +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +challenge +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-challenge 1 1 PublicKeyCredentialRequestOptions - +challenge +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-challenge +1 +1 +PublicKeyCredentialRequestOptionsJSON +- change event cssom-view-1 @@ -1259,6 +1528,17 @@ VideoTrackList TextTrackList - change +event +device-posture +device-posture +1 +current +https://w3c.github.io/device-posture/#dfn-change +1 +1 +DevicePosture +- +change dfn presentation-api presentation-api @@ -1281,22 +1561,22 @@ ScreenOrientation - change event -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#eventdef-screen-change +https://w3c.github.io/window-management/#eventdef-screen-change 1 1 Screen - change event -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#eventdef-screendetailed-change +https://w3c.github.io/window-management/#eventdef-screendetailed-change 1 1 ScreenDetailed @@ -1313,6 +1593,17 @@ https://webidl.spec.whatwg.org/#dfn-change-global-environment realm - change +dfn +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#preferenceobject-change + +1 +PreferenceObject +- +change event cssom-view-1 cssom-view @@ -1324,9 +1615,20 @@ https://www.w3.org/TR/cssom-view-1/#eventdef-mediaquerylist-change MediaQueryList - change -dfn -presentation-api -presentation-api +event +device-posture +device-posture +1 +snapshot +https://www.w3.org/TR/device-posture/#dfn-change +1 +1 +DevicePosture +- +change +dfn +presentation-api +presentation-api 1 snapshot https://www.w3.org/TR/presentation-api/#dfn-change @@ -1346,22 +1648,22 @@ ScreenOrientation - change event -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#eventdef-screen-change +https://www.w3.org/TR/window-management/#eventdef-screen-change 1 1 Screen - change event -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#eventdef-screendetailed-change +https://www.w3.org/TR/window-management/#eventdef-screendetailed-change 1 1 ScreenDetailed @@ -1477,6 +1779,36 @@ snapshot https://www.w3.org/TR/payment-handler/#dfn-change-payment-method-algorithm 1 +- +change process +dfn +permissions-registry +permissions-registry +1 +current +https://w3c.github.io/permissions-registry/#dfn-change-process + + +- +change process +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-change-process + + +- +change process +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-change-process + + - change remote playback state dfn @@ -1504,7 +1836,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#change-state +https://urlpattern.spec.whatwg.org/#change-state 1 - @@ -1558,6 +1890,17 @@ https://www.w3.org/TR/cssom-1/#change-the-preferred-css-style-sheet-set-name 1 1 - +change the selected candidate pair and state +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-change-the-selected-candidate-pair-and-state +1 +1 +RTCIceTransport +- changePaymentMethod() method payment-handler @@ -1800,6 +2143,17 @@ https://wicg.github.io/cookie-store/#dom-extendablecookiechangeeventinit-changed 1 ExtendableCookieChangeEventInit - +changed +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-changed +1 +1 +SmartCardReaderStateFlagsOut +- changedTouches attribute touch-events @@ -1854,11 +2208,11 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#changing-navigable- - channel dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-channel +https://w3c.github.io/png/#3channel 1 - @@ -1907,6 +2261,16 @@ https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata-channel AudioBuffer/getChannelData(channel) - channel +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3channel + +1 +- +channel argument webaudio webaudio @@ -2520,21 +2884,10 @@ webrtc webrtc 1 current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodeccapability-channels -1 -1 -RTCRtpCodecCapability -- -channels -dict-member -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodecparameters-channels +https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodec-channels 1 1 -RTCRtpCodecParameters +RTCRtpCodec - channels dict-member @@ -2558,6 +2911,31 @@ https://www.w3.org/TR/WGSL/#channels 1 - channels +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-channels +1 +1 +CSSColor +- +channels +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor-colorspace-channels-alpha-channels +1 +1 +CSSColor/CSSColor(colorSpace, channels, alpha) +CSSColor/constructor(colorSpace, channels, alpha) +CSSColor/CSSColor(colorSpace, channels) +CSSColor/constructor(colorSpace, channels) +- +channels dict-member media-capabilities media-capabilities @@ -2621,6 +2999,72 @@ https://www.w3.org/TR/webaudio/#ChannelSplitterOptions 1 1 - +chapter information +dfn +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#mediametadata-chapter-information + +1 +MediaMetadata +- +chapter information +dfn +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#mediametadata-chapter-information + +1 +MediaMetadata +- +chapterInfo +attribute +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediametadata-chapterinfo +1 +1 +MediaMetadata +- +chapterInfo +dict-member +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediametadatainit-chapterinfo +1 +1 +MediaMetadataInit +- +chapterInfo +attribute +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediametadata-chapterinfo +1 +1 +MediaMetadata +- +chapterInfo +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediametadatainit-chapterinfo +1 +1 +MediaMetadataInit +- chapters attr-value html @@ -2703,7 +3147,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-type-char +https://urlpattern.spec.whatwg.org/#token-type-char 1 token/type @@ -2880,11 +3324,11 @@ https://svgwg.org/svg2-draft/text.html#TermCharacter - character dfn -input-events-2 -input-events -2 +mathml4 +mathml +4 current -https://w3c.github.io/input-events/#dfn-character +https://w3c.github.io/mathml/#dfn-character 1 - @@ -2940,13 +3384,13 @@ https://www.w3.org/TR/css-ui-4/#character - character dfn -input-events-2 -input-events -2 +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/input-events-2/#dfn-character - +https://www.w3.org/TR/mathml4/#dfn-character +1 - character encoding dfn @@ -2964,7 +3408,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_encoding +https://w3c.github.io/i18n-glossary/#dfn-character-encoding 1 - @@ -2974,9 +3418,29 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_encoding +https://w3c.github.io/i18n-glossary/#dfn-character-encoding 1 +- +character encoding +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x50 +1 +1 +- +character encoding +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x50 +1 +1 - character encoding dfn @@ -2984,7 +3448,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_encoding +https://www.w3.org/TR/i18n-glossary/#dfn-character-encoding 1 - @@ -2994,7 +3458,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_encoding +https://www.w3.org/TR/i18n-glossary/#dfn-character-encoding 1 - @@ -3014,7 +3478,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_encoding +https://w3c.github.io/i18n-glossary/#dfn-character-encoding 1 - @@ -3024,7 +3488,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_encoding +https://www.w3.org/TR/i18n-glossary/#dfn-character-encoding 1 - @@ -3094,7 +3558,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_character_set +https://w3c.github.io/i18n-glossary/#dfn-character-set 1 - @@ -3104,7 +3568,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_character_set +https://www.w3.org/TR/i18n-glossary/#dfn-character-set 1 - @@ -3463,6 +3927,26 @@ scroll-to-text-fragment current https://wicg.github.io/scroll-to-text-fragment/#characterstring +1 +- +charge shared storage navigation budget +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#charge-shared-storage-navigation-budget + +1 +- +charge shared storage reporting budget +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#charge-shared-storage-reporting-budget + 1 - charging @@ -3693,6 +4177,17 @@ https://tc39.es/ecma262/multipage/text-processing.html#pattern-charset 1 ECMAScript - +charsetelement +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-pattern-notation +1 +1 +ECMAScript +- charsets dfn ecmascript @@ -3754,6 +4249,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-chartreuse 1 1 <color> +<named-color> - chartreuse dfn @@ -3775,6 +4271,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-chartreuse 1 1 <color> +<named-color> - charwidth dfn @@ -3796,16 +4293,15 @@ https://www.w3.org/TR/SVG2/text.html#CharWidth 1 1 - -check -method -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-check +check a currency tag +dfn +turtledove +turtledove 1 +current +https://wicg.github.io/turtledove/#check-a-currency-tag + 1 -FontFaceSet - check a global object's embedder policy dfn @@ -3835,11 +4331,31 @@ html current https://html.spec.whatwg.org/multipage/browsers.html#check-a-navigation-response's-adherence-to-its-embedder-policy +1 +- +check ancestor for task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#check-ancestor-for-task +1 +1 +- +check ancestor set for task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#check-ancestor-set-for-task +1 1 - check and canonicalize amount dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -3849,17 +4365,17 @@ https://w3c.github.io/payment-request/#dfn-check-and-canonicalize-amount - check and canonicalize amount dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-amount +https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-amount 1 - check and canonicalize total amount dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -3869,11 +4385,11 @@ https://w3c.github.io/payment-request/#dfn-check-and-canonicalize-total-amount - check and canonicalize total amount dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-total-amount +https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-total-amount 1 - @@ -3947,6 +4463,28 @@ https://w3c.github.io/web-nfc/#dfn-check-created-records 1 - +check dimensions +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mloperanddescriptor-check-dimensions + +1 +MLOperandDescriptor +- +check dimensions +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mloperanddescriptor-check-dimensions + +1 +MLOperandDescriptor +- check encrypted decoding support dfn media-capabilities @@ -3975,6 +4513,26 @@ html current https://html.spec.whatwg.org/multipage/nav-history-apis.html#popup-window-is-requested +1 +- +check if a scheme is suitable +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-a-scheme-is-suitable + +1 +- +check if a text directive can be scrolled +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#check-if-a-text-directive-can-be-scrolled + 1 - check if a window feature is set @@ -3987,97 +4545,187 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-feature-is-s 1 - -check if an access between two browsing contexts should be reported +check if addmodule is allowed and update state dfn -html -html +shared-storage +shared-storage 1 current -https://html.spec.whatwg.org/multipage/browsers.html#coop-check-access-report +https://wicg.github.io/shared-storage/#check-if-addmodule-is-allowed-and-update-state 1 - -check if an attribution source can create aggregatable contributions +check if aggregatable debug reporting should be blocked by rate-limit dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-can-create-aggregatable-contributions +https://wicg.github.io/attribution-reporting-api/#check-if-aggregatable-debug-reporting-should-be-blocked-by-rate-limit 1 - -check if an attribution source exceeds the unexpired destination limit +check if an access between two browsing contexts should be reported dfn -attribution-reporting-api -attribution-reporting-api +html +html 1 current -https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-exceeds-the-unexpired-destination-limit +https://html.spec.whatwg.org/multipage/browsers.html#coop-check-access-report 1 - -check if an origin is suitable +check if an aggregatable attribution report should be unconditionally sent dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#check-if-an-origin-is-suitable +https://wicg.github.io/attribution-reporting-api/#check-if-an-aggregatable-attribution-report-should-be-unconditionally-sent 1 - -check if cookie-based debugging is allowed +check if an attribution source and attribution trigger have matching attribution scopes dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#check-if-cookie-based-debugging-is-allowed +https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-and-attribution-trigger-have-matching-attribution-scopes 1 - -check if coop values require a browsing context group switch +check if an attribution source can create aggregatable contributions dfn -html -html +attribution-reporting-api +attribution-reporting-api 1 current -https://html.spec.whatwg.org/multipage/browsers.html#check-browsing-context-group-switch-coop-value +https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-can-create-aggregatable-contributions 1 - -check if debug reporting is allowed +check if an attribution source exceeds the per day destination limits dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#check-if-debug-reporting-is-allowed +https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-exceeds-the-per-day-destination-limits 1 - -check if enforcing report-only coop would require a browsing context group switch +check if an attribution source exceeds the time-based destination limits dfn -html -html +attribution-reporting-api +attribution-reporting-api 1 current -https://html.spec.whatwg.org/multipage/browsers.html#check-bcg-switch-navigation-report-only +https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-exceeds-the-time-based-destination-limits 1 - -check if hardware exposure is allowed +check if an attribution source should be blocked by reporting-origin per site limit dfn -webrtc-stats -webrtc-stats +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/webrtc-stats/#dfn-exposing-hardware-is-allowed +https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-source-should-be-blocked-by-reporting-origin-per-site-limit 1 - -check if hardware exposure is allowed +check if an attribution trigger contains aggregatable data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-an-attribution-trigger-contains-aggregatable-data + +1 +- +check if an origin is suitable +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-an-origin-is-suitable +1 +1 +- +check if attribution debugging can be enabled +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-attribution-debugging-can-be-enabled + +1 +- +check if attribution should be blocked by attribution rate limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-attribution-should-be-blocked-by-attribution-rate-limit + +1 +- +check if attribution should be blocked by rate limits +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-attribution-should-be-blocked-by-rate-limits + +1 +- +check if cookie-based debugging is allowed +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-cookie-based-debugging-is-allowed + +1 +- +check if coop values require a browsing context group switch +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsers.html#check-browsing-context-group-switch-coop-value + +1 +- +check if enforcing report-only coop would require a browsing context group switch +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsers.html#check-bcg-switch-navigation-report-only + +1 +- +check if hardware exposure is allowed +dfn +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dfn-exposing-hardware-is-allowed + +1 +- +check if hardware exposure is allowed dfn webrtc-stats webrtc-stats @@ -4088,13 +4736,13 @@ https://www.w3.org/TR/webrtc-stats/#dfn-exposing-hardware-is-allowed 1 - check if negotiation is needed -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-check-if-negotiation-is-needed - +1 1 - check if negotiation is needed @@ -4105,6 +4753,36 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-check-if-negotiation-is-needed +1 +- +check if required seller capabilities are permitted +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#check-if-required-seller-capabilities-are-permitted + +1 +- +check if source has compatible attribution scope fields +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-if-source-has-compatible-attribution-scope-fields + +1 +- +check if string-like +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#check-if-string-like + 1 - check if the device is configured @@ -4135,6 +4813,16 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#check-if-three-code-points-would-start-a-number +1 +- +check if three code points would start a unicode-range +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range + 1 - check if three code points would start an ident sequence @@ -4177,13 +4865,23 @@ https://www.w3.org/TR/css-syntax-3/#check-if-two-code-points-are-a-valid-escape 1 - -check if unloading is user-canceled +check if unloading is canceled dfn html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#checking-if-unloading-is-user-canceled +https://html.spec.whatwg.org/multipage/browsing-the-web.html#checking-if-unloading-is-canceled + +1 +- +check if user preference setting allows access to shared storage +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#check-if-user-preference-setting-allows-access-to-shared-storage 1 - @@ -4195,6 +4893,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#check-if-we-can-run-script +1 +- +check interest group permissions +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#check-interest-group-permissions + 1 - check parsed records @@ -4213,7 +4921,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-checking-permission +https://w3c.github.io/geolocation/#dfn-checking-permission - @@ -4247,6 +4955,28 @@ https://html.spec.whatwg.org/multipage/popover.html#check-popover-validity 1 - +check resample options +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-check-resample-options + +1 +MLGraphBuilder +- +check resample options +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-check-resample-options + +1 +MLGraphBuilder +- check sensor policy-controlled features dfn generic-sensor @@ -4267,24 +4997,34 @@ https://www.w3.org/TR/generic-sensor/#check-sensor-policy-controlled-features 1 1 - -check templatedness -abstract-op -trusted-types -trusted-types +check soft navigation +dfn +soft-navigations +soft-navigations 1 current -https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-check-templatedness -1 +https://wicg.github.io/soft-navigations/#check-soft-navigation + 1 - -check templatedness -abstract-op -trusted-types -trusted-types +check soft navigation contentful paint +dfn +soft-navigations +soft-navigations 1 -snapshot -https://www.w3.org/TR/trusted-types/#abstract-opdef-check-templatedness +current +https://wicg.github.io/soft-navigations/#check-soft-navigation-contentful-paint + +1 +- +check soft navigation same document commit +dfn +soft-navigations +soft-navigations 1 +current +https://wicg.github.io/soft-navigations/#check-soft-navigation-same-document-commit + 1 - check that a key could be injected into a value @@ -4409,6 +5149,26 @@ https://www.w3.org/TR/webcodecs/#imagedecoder-check-type-support 1 ImageDecoder - +check user prompt handler matches +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-check-user-prompt-handler-matches + +1 +- +check user prompt handler matches +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-check-user-prompt-handler-matches + +1 +- check validity steps dfn html @@ -4417,6 +5177,57 @@ html current https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#check-validity-steps +1 +- +check whether a bit debit is expired +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#check-whether-a-bit-debit-is-expired + +1 +- +check whether a moment falls within a window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#check-whether-a-moment-falls-within-a-window + +1 +- +check whether a string is a valid currency tag +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#check-whether-a-string-is-a-valid-currency-tag + +1 +- +check whether addmodule is finished +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworkletglobalscope-check-whether-addmodule-is-finished + +1 +SharedStorageWorkletGlobalScope +- +check whether negative targeted +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#check-whether-negative-targeted + 1 - check(font) @@ -4430,6 +5241,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-check 1 FontFaceSet - +check(font) +method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-check +1 +1 +FontFaceSet +- check(font, text) method css-font-loading-3 @@ -4441,6 +5263,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-check 1 FontFaceSet - +check(font, text) +method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-check +1 +1 +FontFaceSet +- check-for-apache-bug flag dfn mimesniff @@ -4606,7 +5439,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#checkbox-state-(type=checkbox) +https://html.spec.whatwg.org/multipage/input.html#checkbox-state-(type%3Dcheckbox) 1 1 input @@ -4652,16 +5485,6 @@ html current https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-fe-checked -1 -- -checkforusercancelation -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-history-step-check - 1 - checking @@ -4714,7 +5537,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-checking-permission +https://w3c.github.io/geolocation/#dfn-checking-permission - @@ -4823,6 +5646,46 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-child +1 +- +child +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +child +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +child +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#child +1 +1 +- +child +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#child +1 1 - child @@ -4858,6 +5721,16 @@ https://www.w3.org/TR/fill-stroke-3/#valdef-svg-paint-child 1 <svg-paint> - +child +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child +1 +1 +- child break token dfn css-layout-api-1 @@ -4939,6 +5812,76 @@ web-animations current https://drafts.csswg.org/web-animations-2/#child-effect +1 +- +child effect +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#child-effect + +1 +- +child element +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +child element +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +child element +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child +1 +1 +- +child elements +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +child elements +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +child elements +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child +1 1 - child input properties @@ -5023,6 +5966,26 @@ css current https://drafts.csswg.org/css2/#child-selector +1 +- +child selector +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x13 +1 +1 +- +child selector +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x13 +1 1 - child text content @@ -5268,6 +6231,27 @@ https://fs.spec.whatwg.org/#directory-entry-children directory entry - children +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-children +1 +1 +NotRestoredReasons +- +children +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-children + +1 +- +children dfn html html @@ -5275,6 +6259,26 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#concept-mock-children +1 +- +children +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 +1 +- +children +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-child +1 1 - children @@ -5288,6 +6292,62 @@ https://wicg.github.io/webhid/#dom-hidcollectioninfo-children 1 HIDCollectionInfo - +children +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child +1 +1 +- +children +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-children +1 +1 +GroupEffect +- +children +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-groupeffect-children-timing-children +1 +1 +GroupEffect/GroupEffect(children, timing) +- +children +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-sequenceeffect-children-timing-children +1 +1 +SequenceEffect/SequenceEffect(children, timing) +SequenceEffect/constructor(children, timing) +SequenceEffect/SequenceEffect(children) +SequenceEffect/constructor(children) +- +children array +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-not-restored-reasons-children + +1 +- children changed steps dfn dom @@ -5362,6 +6422,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-chocolate 1 1 <color> +<named-color> - chocolate dfn @@ -5383,6 +6444,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-chocolate 1 1 <color> +<named-color> - chorded button interactions dfn @@ -5446,6 +6508,36 @@ https://tc39.es/ecma262/multipage/memory-model.html#sec-chosen-value-records 1 ECMAScript - +chroma_sample_position +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#chroma_sample_position +1 +1 +- +chroma_subsampling_x +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#chroma_subsampling_x +1 +1 +- +chroma_subsampling_y +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#chroma_subsampling_y +1 +1 +- chromatic adaptation transform dfn css-color-4 @@ -5478,11 +6570,11 @@ https://drafts.csswg.org/css-color-4/#chromaticity - chromaticity dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-chromaticity +https://w3c.github.io/png/#dfn-chromaticity 1 - @@ -5496,13 +6588,13 @@ https://www.w3.org/TR/css-color-4/#chromaticity 1 1 - -chromeplatform +chromaticity dfn -compat -compat -1 -current -https://compat.spec.whatwg.org/#chromeplatform +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-chromaticity 1 - @@ -5598,11 +6690,11 @@ WritableStreamDefaultWriter/write() - chunk dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-chunk +https://w3c.github.io/png/#3chunk 1 - @@ -5641,6 +6733,28 @@ VideoDecoder/decode(chunk) - chunk argument +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportwriter-atomicwrite-chunk-chunk +1 +1 +WebTransportWriter/atomicWrite(chunk) +WebTransportWriter/atomicWrite() +- +chunk +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3chunk + +1 +- +chunk +argument webcodecs webcodecs 1 @@ -5672,6 +6786,18 @@ https://www.w3.org/TR/webcodecs/#dom-videodecoder-decode-chunk-chunk 1 VideoDecoder/decode(chunk) - +chunk +argument +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportwriter-atomicwrite-chunk-chunk +1 +1 +WebTransportWriter/atomicWrite(chunk) +WebTransportWriter/atomicWrite() +- chunk steps dfn streams diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ci.data b/bikeshed/spec-data/readonly/anchors/anchors-ci.data index 64194a785f..b7c38ad428 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ci.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ci.data @@ -1,3 +1,23 @@ +<ci> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_ci + +1 +- +<ci> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_ci + +1 +- circ dfn html @@ -25,10 +45,10 @@ css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle +https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle 1 1 -<rg-ending-shape> +<radial-shape> - circle value @@ -84,6 +104,26 @@ https://svgwg.org/svg2-draft/shapes.html#elementdef-circle 1 - circle +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-circle +1 +1 +- +circle +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-circle +1 +1 +- +circle element svg2 svg @@ -110,10 +150,10 @@ css-images-3 css-images 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-ending-shape-circle +https://www.w3.org/TR/css-images-3/#valdef-radial-shape-circle 1 1 -<ending-shape> +<radial-shape> - circle value @@ -209,6 +249,26 @@ snapshot https://www.w3.org/TR/SVG2/linking.html#TermCircularReference 1 1 +- +circumgraph +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-circumgraph +1 + +- +circumgraph +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-circumgraph +1 + - cite element-attr @@ -294,11 +354,22 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-city - +1 1 physical address - city +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-city +1 +1 +AddressErrors +- +city attribute contact-picker contact-picker @@ -316,7 +387,18 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-city - +1 1 physical address - +city +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-city +1 +1 +AddressErrors +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cj.data b/bikeshed/spec-data/readonly/anchors/anchors-cj.data index 90322ffd9a..07608417a9 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cj.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cj.data @@ -1,3 +1,23 @@ +cjk +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-cjk + + +- +cjk +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-cjk + + +- cjk-decimal value css-counter-styles-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cl.data b/bikeshed/spec-data/readonly/anchors/anchors-cl.data index 6ad8bd30d1..49b19093a1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cl.data @@ -9,6 +9,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathoperator-clamp 1 CSSMathOperator - +"clamp" +enum-value +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-clamp +1 +1 +CSSMathOperator +- "clamp-to-edge" enum-value webgpu @@ -64,6 +75,17 @@ https://wicg.github.io/webusb/#dom-usbrequesttype-class 1 USBRequestType - +"classic-script" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptinvokertype-classic-script +1 +1 +ScriptInvokerType +- "clear" enum-value webgpu @@ -86,6 +108,50 @@ https://www.w3.org/TR/webgpu/#dom-gpuloadop-clear 1 GPULoadOp - +"client-device" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialhints-client-device +1 +1 +PublicKeyCredentialHints +- +"client-device" +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialhints-client-device +1 +1 +PublicKeyCredentialHints +- +"clip-distances" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpufeaturename-clip-distances +1 +1 +GPUFeatureName +- +"clip-distances" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpufeaturename-clip-distances +1 +1 +GPUFeatureName +- "clipboard-write" enum-value clipboard-apis @@ -171,16 +237,6 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-closed 1 -1 -- -:closed -selector -html -html -1 -current -https://html.spec.whatwg.org/multipage/semantics-other.html#selector-closed - 1 - :closed @@ -276,6 +332,16 @@ https://webidl.spec.whatwg.org/#Clamp 1 1 - +CleanupFinalizationRegistry +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-cleanup-finalization-registry +1 +1 +- CleanupFinalizationRegistry(finalizationRegistry) abstract-op ecmascript @@ -286,6 +352,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +ClearKeptObjects +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-clear-kept-objects +1 +1 +- ClearKeptObjects() abstract-op ecmascript @@ -316,6 +392,16 @@ https://www.w3.org/TR/service-workers/#client 1 1 - +ClientCapability +enum +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#enumdef-clientcapability +1 +1 +- ClientLifecycleState enum page-lifecycle @@ -574,26 +660,6 @@ https://www.w3.org/TR/clipboard-apis/#typedefdef-clipboarditemdata 1 1 - -ClipboardItemDataType -typedef -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#typedefdef-clipboarditemdatatype -1 -1 -- -ClipboardItemDelayedCallback -callback -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#callbackdef-clipboarditemdelayedcallback -1 -1 -- ClipboardItemOptions dictionary clipboard-apis @@ -654,6 +720,26 @@ https://www.w3.org/TR/clipboard-apis/#dictdef-clipboardpermissiondescriptor 1 1 - +ClipboardUnsanitizedFormats +dictionary +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#dictdef-clipboardunsanitizedformats +1 +1 +- +CloneArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-clonearraybuffer +1 +1 +- CloneArrayBuffer(srcBuffer, srcByteOffset, srcLength) abstract-op ecmascript @@ -718,43 +804,21 @@ https://websockets.spec.whatwg.org/#dictdef-closeeventinit - CloseWatcher interface -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#closewatcher -1 -1 -- -CloseWatcher() -constructor -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#dom-closewatcher-closewatcher -1 -1 -CloseWatcher -- -CloseWatcher(options) -constructor -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#dom-closewatcher-closewatcher +https://html.spec.whatwg.org/multipage/interaction.html#closewatcher 1 1 -CloseWatcher - CloseWatcherOptions dictionary -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#dictdef-closewatcheroptions +https://html.spec.whatwg.org/multipage/interaction.html#closewatcheroptions 1 1 - @@ -824,6 +888,39 @@ https://streams.spec.whatwg.org/#writablestreamdefaultcontroller-closealgorithm 1 WritableStreamDefaultController - +[[closedPromise]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-closedpromise + +1 +TCPSocket +- +[[closedPromise]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-closedpromise-0 + +1 +UDPSocket +- +[[closedPromise]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-closedpromise-1 + +1 +TCPServerSocket +- [[closed]] attribute webcodecs @@ -901,6 +998,46 @@ https://streams.spec.whatwg.org/#readablestreamdefaultcontroller-closerequested 1 ReadableStreamDefaultController - +claim +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-claims +1 +1 +- +claim +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-claims +1 +1 +- +claim validation +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-claim-validation +1 +1 +- +claim validation +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-claim-validation +1 +1 +- claim() method service-workers @@ -945,6 +1082,26 @@ https://wicg.github.io/webusb/#dom-usbinterface-claimed 1 USBInterface - +claims +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-claims +1 +1 +- +claims +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-claims +1 +1 +- clamp a grid area dfn css-grid-1 @@ -1006,17 +1163,6 @@ https://drafts.csswg.org/css-values-4/#funcdef-clamp 1 - clamp() -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-options -1 -1 -MLGraphBuilder -- -clamp() function css-values-4 css-values @@ -1026,40 +1172,7 @@ https://www.w3.org/TR/css-values-4/#funcdef-clamp 1 1 - -clamp() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-options -1 -1 -MLGraphBuilder -- -clamp(options) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-options -1 -1 -MLGraphBuilder -- -clamp(options) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-options -1 -1 -MLGraphBuilder -- -clamp(x) +clamp(input) method webnn webnn @@ -1070,7 +1183,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp 1 MLGraphBuilder - -clamp(x) +clamp(input) method webnn webnn @@ -1081,7 +1194,7 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp 1 MLGraphBuilder - -clamp(x, options) +clamp(input, options) method webnn webnn @@ -1092,7 +1205,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp 1 MLGraphBuilder - -clamp(x, options) +clamp(input, options) method webnn webnn @@ -1179,26 +1292,6 @@ https://svgwg.org/svg2-draft/styling.html#ClassAttribute core-attributes - class -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-class - -1 -- -class -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-class - -1 -- -class element-attr mathml-core mathml-core @@ -1251,16 +1344,6 @@ core-attributes - class dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-class - -1 -- -class -dfn graphics-aam-1.0 graphics-aam 1 @@ -1280,13 +1363,23 @@ https://www.w3.org/TR/graphics-aria-1.0/#dfn-class - class -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-class +1 +- +class +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-class + 1 - class @@ -1373,6 +1466,28 @@ https://www.w3.org/TR/css-paint-api-1/#paint-definition-class-constructor 1 paint definition - +class list +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#captured-element-class-list + +1 +captured element +- +class list +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#captured-element-class-list + +1 +captured element +- class selector dfn selectors-4 @@ -1482,16 +1597,6 @@ Element/getElementsByClassName(classNames) - classes dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-class - -1 -- -classes -dfn svg-aam-1.0 svg-aam 1 @@ -1499,16 +1604,6 @@ current https://w3c.github.io/svg-aam/#dfn-class -- -classes -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-class - -1 - classes dfn @@ -1562,16 +1657,45 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-clas 1 ECMAScript - -classic history api serialized data +classic conformance +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-classic-conformance + +1 +- +classic conformance +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-classic-conformance + +1 +- +classic history api state +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-classic-history-api-state + +1 +- +classic history api state dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigateevent-classic-history-api-serialized-data +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigateevent-classic-history-api-state 1 -NavigateEvent - classic script dfn @@ -1625,16 +1749,15 @@ https://www.w3.org/TR/css-overflow-3/#classic-scrollbars 1 1 - -classichistoryapiserializeddata +classichistoryapistate dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-classichistoryapiserializeddata +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-classichistoryapistate 1 -fire a non-traversal navigate event - classid element-attr @@ -1647,6 +1770,16 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-object-classid 1 object - +classify +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#classify + +1 +- classstaticblockdefinition record dfn ecmascript @@ -1708,7 +1841,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_common_locale_data_repository +https://w3c.github.io/i18n-glossary/#dfn-common-locale-data-repository 1 - @@ -1718,20 +1851,19 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_common_locale_data_repository +https://www.w3.org/TR/i18n-glossary/#dfn-common-locale-data-repository 1 - clean up dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-clean-up +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-clean-up 1 -navigation API method navigation - clean up after running a callback dfn @@ -1839,6 +1971,26 @@ https://www.w3.org/TR/IndexedDB-3/#cleanup-indexed-database-transactions 1 transaction - +cleanup remote end state +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#cleanup-remote-end-state + +1 +- +cleanup the session +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#cleanup-the-session + +1 +- clear value css3-exclusions @@ -1915,6 +2067,37 @@ map - clear dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-clear + +1 +badge +- +clear +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-clear +1 +1 +- +clear +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-clear +1 +1 +- +clear +dfn css22 css 1 @@ -1924,6 +2107,17 @@ https://www.w3.org/TR/CSS22/visuren.html#propdef-clear 1 - clear +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-clear + +1 +badge +- +clear property css-page-floats-3 css-page-floats @@ -2024,6 +2218,17 @@ https://www.w3.org/TR/webdriver2/#dfn-clear-algorithm 1 - +clear all entries in the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-clear-all-entries-in-the-database + +1 +shared storage database +- clear an object store dfn indexeddb-3 @@ -2052,6 +2257,16 @@ fetch current https://fetch.spec.whatwg.org/#concept-cache-clear +1 +- +clear cache for host +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#clear-cache-for-host + 1 - clear cache for origin @@ -2072,6 +2287,16 @@ clear-site-data snapshot https://www.w3.org/TR/clear-site-data/#abstract-opdef-clear-cache-for-origin 1 +1 +- +clear cookies for host +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#clear-cookies-for-host + 1 - clear cookies for origin @@ -2092,6 +2317,56 @@ clear-site-data snapshot https://www.w3.org/TR/clear-site-data/#abstract-opdef-clear-cookies-for-origin 1 +1 +- +clear data with buckets +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#clear-data-with-buckets + +1 +- +clear excess interest groups +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#clear-excess-interest-groups + +1 +- +clear key +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-clear-key + +1 +- +clear key +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-clear-key + +1 +- +clear non-cookie storage for host +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#clear-non-cookie-storage-for-host + 1 - clear registration @@ -2112,6 +2387,16 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#clear-registration +1 +- +clear site data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#clear-site-data + 1 - clear site data for response @@ -2192,6 +2477,16 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-clear-the-negotiation-needed-flag +1 +- +clear the operationinprogress +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-clear-the-operationinprogress + 1 - clear the stack back to a table body context @@ -2349,10 +2644,43 @@ webmidi webmidi 1 current -https://webaudio.github.io/web-midi-api/#dom-midioutput-clear +https://webaudio.github.io/web-midi-api/#dom-midioutput-clear +1 +1 +MIDIOutput +- +clear() +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-clear +1 +1 +HandwritingDrawing +- +clear() +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingstroke-clear +1 +1 +HandwritingStroke +- +clear() +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-clear 1 1 -MIDIOutput +SharedStorage - clear() method @@ -2367,6 +2695,17 @@ IDBObjectStore - clear() method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-clear +1 +1 +FontFaceSet +- +clear() +method css-typed-om-1 css-typed-om 1 @@ -2376,6 +2715,17 @@ https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-clear 1 StylePropertyMap - +clear() +method +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioutput-clear +1 +1 +MIDIOutput +- clear-site-data http-header clear-site-data @@ -2407,6 +2757,17 @@ https://w3c.github.io/badging/#dom-navigatorbadge-clearappbadge 1 NavigatorBadge - +clearAppBadge() +method +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dom-navigatorbadge-clearappbadge +1 +1 +NavigatorBadge +- clearBuffer(buffer) method webgpu @@ -2473,17 +2834,6 @@ https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-clearbuffer 1 GPUCommandEncoder - -clearClientBadge() -method -badging -badging -1 -current -https://w3c.github.io/badging/#dom-navigator-clearclientbadge -1 -1 -Navigator -- clearData(format) method html @@ -2627,6 +2977,83 @@ https://www.w3.org/TR/user-timing/#dom-performance-clearmeasures 1 Performance - +clearOnAccess +dict-member +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrlayerinit-clearonaccess +1 +1 +XRLayerInit +- +clearOnAccess +dict-member +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrprojectionlayerinit-clearonaccess +1 +1 +XRProjectionLayerInit +- +clearOnAccess +dict-member +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerinit-clearonaccess +1 +1 +XRLayerInit +- +clearOnAccess +dict-member +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrprojectionlayerinit-clearonaccess +1 +1 +XRProjectionLayerInit +- +clearOriginJoinedAdInterestGroups(owner) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-clearoriginjoinedadinterestgroups +1 +1 +Navigator +- +clearOriginJoinedAdInterestGroups(owner, interestGroupsToKeep) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-clearoriginjoinedadinterestgroups +1 +1 +Navigator +- +clearOverride() +method +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-clearoverride +1 +1 +PreferenceObject +- clearParameters() method dom @@ -2721,7 +3148,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-clearwatch +https://w3c.github.io/geolocation/#dom-geolocation-clearwatch 1 1 Geolocation @@ -2743,7 +3170,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-clearwatch +https://w3c.github.io/geolocation/#dom-geolocation-clearwatch 1 1 Geolocation @@ -2767,6 +3194,26 @@ css current https://drafts.csswg.org/css2/#clearance +1 +- +clearance. +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#clearance +1 +1 +- +clearance. +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#clearance +1 1 - cleared @@ -2775,9 +3222,21 @@ badging badging 1 current -https://w3c.github.io/badging/#dfn-cleared +https://w3c.github.io/badging/#dfn-clear + +1 +badge +- +cleared +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-clear 1 +badge - clearing dfn @@ -2785,9 +3244,21 @@ badging badging 1 current -https://w3c.github.io/badging/#dfn-cleared +https://w3c.github.io/badging/#dfn-clear + +1 +badge +- +clearing +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-clear 1 +badge - clearpinuvauthtokenpermissionsexceptlbw dfn @@ -2937,6 +3408,16 @@ job - client dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#client +1 +1 +- +client +dfn webauthn-3 webauthn 3 @@ -2988,6 +3469,16 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcdtlsrole-client 1 RTCDtlsRole - +client bounce detection timer period +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#client-bounce-detection-timer-period + +1 +- client characteristic configuration dfn web-bluetooth @@ -2996,6 +3487,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#client-characteristic-configuration +1 +- +client coordinate system +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-client-coordinate-system + 1 - client data @@ -3158,17 +3659,6 @@ https://www.w3.org/TR/secure-payment-confirmation/#client-extension-processing-r 1 1 - -client font subset -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#client-state-client-font-subset - -1 -Client State -- client hints set dfn client-hints-infrastructure @@ -3233,6 +3723,16 @@ https://www.w3.org/TR/service-workers/#dfn-client-message-queue 1 ServiceWorkerContainer - +client metadata endpoint +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#client-metadata-endpoint + +1 +- client mode targets dfn web-app-launch @@ -3263,15 +3763,27 @@ https://www.w3.org/TR/webauthn-3/#client-platform 1 - -client state -dfn -ift -ift -1 +client-device +enum-value +webauthn-3 +webauthn +3 current -https://w3c.github.io/IFT/Overview.html#client-state - +https://w3c.github.io/webauthn/#dom-publickeycredentialhints-client-device +1 +1 +PublicKeyCredentialHints +- +client-device +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialhints-client-device +1 1 +PublicKeyCredentialHints - client-side dfn @@ -3338,17 +3850,6 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#credentialpropertiesoutput-client-side-discoverable-credential-property - -1 -CredentialPropertiesOutput -- -client-side discoverable credential property -dfn -webauthn-3 -webauthn -3 snapshot https://www.w3.org/TR/webauthn-3/#credentialpropertiesoutput-client-side-discoverable-credential-property @@ -3386,6 +3887,17 @@ https://w3c.github.io/webauthn/#dom-issuing-a-credential-request-to-an-authentic 1 Issuing a credential request to an authenticator - +clientDataHash +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-issuing-a-credential-request-to-an-authenticator-clientdatahash +1 +1 +Issuing a credential request to an authenticator +- clientDataJSON dict-member webauthn-3 @@ -3420,6 +3932,28 @@ https://w3c.github.io/webauthn/#dom-authenticatorresponse-clientdatajson AuthenticatorResponse - clientDataJSON +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponsejson-clientdatajson +1 +1 +AuthenticatorAssertionResponseJSON +- +clientDataJSON +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponsejson-clientdatajson +1 +1 +AuthenticatorAttestationResponseJSON +- +clientDataJSON attribute webauthn-3 webauthn @@ -3452,6 +3986,28 @@ https://w3c.github.io/webauthn/#dom-registrationresponsejson-clientextensionresu 1 RegistrationResponseJSON - +clientExtensionResults +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationresponsejson-clientextensionresults +1 +1 +AuthenticationResponseJSON +- +clientExtensionResults +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-registrationresponsejson-clientextensionresults +1 +1 +RegistrationResponseJSON +- clientHeight attribute cssom-view-1 @@ -3978,6 +4534,17 @@ fedcm fedcm 1 current +https://fedidcg.github.io/FedCM/#dom-disconnect_endpoint_request-client_id +1 +1 +disconnect_endpoint_request +- +client_id +argument +fedcm +fedcm +1 +current https://fedidcg.github.io/FedCM/#dom-id_assertion_endpoint_request-client_id 1 1 @@ -4093,6 +4660,16 @@ https://www.w3.org/TR/webauthn-3/#credentialcreationdata-clientextensionresults 1 credentialCreationData - +clienthints +grammar +clear-site-data +clear-site-data +1 +current +https://w3c.github.io/webappsec-clear-site-data/#grammardef-clienthints +1 +1 +- clientid dfn web-locks @@ -4237,6 +4814,26 @@ https://drafts.fxtf.org/css-masking-1/#propdef-clip 1 - clip +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#propdef-clip +1 +1 +- +clip +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#propdef-clip +1 +1 +- +clip dfn css22 css @@ -4320,6 +4917,26 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#clip-position +1 +- +clip space coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#clip-space-coordinates + +1 +- +clip space coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#clip-space-coordinates + 1 - clip steps @@ -4436,6 +5053,50 @@ https://www.w3.org/TR/css-masking-1/#dom-svgclippathelement-clippathunits 1 SVGClipPathElement - +clip_distances +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#built-in-values-clip_distances + +1 +built-in values +- +clip_distances +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#extension-clip_distances + +1 +extension +- +clip_distances +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#built-in-values-clip_distances + +1 +built-in values +- +clip_distances +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#extension-clip_distances + +1 +extension +- clipboard attribute clipboard-apis @@ -4498,6 +5159,27 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#clipboarditem-clipboard-item +1 +ClipboardItem +- +clipboard item +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#clipboard-item + +1 +- +clipboard item +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#clipboarditem-clipboard-item + 1 ClipboardItem - @@ -4509,6 +5191,16 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#clipboard-items +1 +- +clipboard items +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#clipboard-items + 1 - clipboard task source @@ -4519,6 +5211,16 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#clipboard-task-source +1 +- +clipboard task source +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#clipboard-task-source + 1 - clipboardData @@ -4566,24 +5268,26 @@ https://www.w3.org/TR/clipboard-apis/#dom-clipboardeventinit-clipboarddata ClipboardEventInit - clipboardchange -dfn +event clipboard-apis clipboard-apis 1 current -https://w3c.github.io/clipboard-apis/#clipboardchange - +https://w3c.github.io/clipboard-apis/#eventdef-globaleventhandlers-clipboardchange 1 +1 +GlobalEventHandlers - clipboardchange -dfn +event clipboard-apis clipboard-apis 1 snapshot -https://www.w3.org/TR/clipboard-apis/#clipboardchange - +https://www.w3.org/TR/clipboard-apis/#eventdef-documentandelementeventhandlers-clipboardchange 1 +1 +DocumentAndElementEventHandlers - clipboarddata dfn @@ -4671,6 +5375,16 @@ https://www.w3.org/TR/css-masking-1/#element-attrdef-clippath-clippathunits 1 clipPath - +clipped by intervening elements +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#clipped-by-intervening-elements + +1 +- clipping path dfn css-masking-1 @@ -4719,6 +5433,26 @@ html current https://html.spec.whatwg.org/multipage/canvas.html#clipping-region +1 +- +clipping region +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#x3 +1 +1 +- +clipping region +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#x3 +1 1 - clipping region @@ -4757,21 +5491,10 @@ webrtc webrtc 1 current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodeccapability-clockrate -1 -1 -RTCRtpCodecCapability -- -clockRate -dict-member -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodecparameters-clockrate +https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodec-clockrate 1 1 -RTCRtpCodecParameters +RTCRtpCodec - clockRate dict-member @@ -4817,6 +5540,39 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-clockrate 1 RTCRtpCodecParameters - +clonable +attribute +dom +dom +1 +current +https://dom.spec.whatwg.org/#dom-shadowroot-clonable +1 +1 +ShadowRoot +- +clonable +dict-member +dom +dom +1 +current +https://dom.spec.whatwg.org/#dom-shadowrootinit-clonable +1 +1 +ShadowRootInit +- +clonable +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#shadowroot-clonable + +1 +ShadowRoot +- clone value css-break-3 @@ -4960,23 +5716,23 @@ https://html.spec.whatwg.org/multipage/browsers.html#clone-a-policy-container 1 - clone a track -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#track-clone - +1 1 - clone a track -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#track-clone - +1 1 - clone an object @@ -5057,7 +5813,7 @@ webcodecs 1 current https://w3c.github.io/webcodecs/#clone-videoframe - +1 1 - clone videoframe @@ -5067,7 +5823,7 @@ webcodecs 1 snapshot https://www.w3.org/TR/webcodecs/#clone-videoframe - +1 1 - clone() @@ -5204,6 +5960,28 @@ MediaStreamTrack - clone() method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-clone +1 +1 +GroupEffect +- +clone() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-clone +1 +1 +SequenceEffect +- +clone() +method webcodecs webcodecs 1 @@ -5309,7 +6087,19 @@ current https://html.spec.whatwg.org/multipage/indices.html#event-close 1 1 +CloseWatcher HTMLElement +MessagePort +- +close +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-close + +1 - close dict-member @@ -5345,6 +6135,17 @@ https://streams.spec.whatwg.org/#writablestream-close WritableStream - close +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-type-close + +1 +token/type +- +close event indexeddb-3 indexeddb @@ -5389,39 +6190,6 @@ https://websockets.spec.whatwg.org/#eventdef-websocket-close WebSocket - close -dfn -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#close-watcher-close - -1 -close watcher -- -close -event -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#eventdef-closewatcher-close -1 -1 -CloseWatcher -- -close -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#token-type-close - -1 -token/type -- -close event indexeddb-3 indexeddb @@ -5433,25 +6201,15 @@ https://www.w3.org/TR/IndexedDB-3/#eventdef-idbdatabase-close IDBDatabase - close -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-close - -1 -mediakeysession -- -close -dfn +event webrtc webrtc 1 snapshot -https://www.w3.org/TR/webrtc/#dfn-close - +https://www.w3.org/TR/webrtc/#event-datachannel-close +1 +RTCDataChannel - close dfn @@ -5524,36 +6282,55 @@ https://www.w3.org/TR/presentation-api/#dfn-close-the-presentation-connection 1 - -close a top-level traversable +close a top-level traversable +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/document-sequences.html#close-a-top-level-traversable + +1 +- +close a worker +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/workers.html#close-a-worker +1 +1 +- +close action dfn html html 1 current -https://html.spec.whatwg.org/multipage/document-sequences.html#close-a-top-level-traversable +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-close-action 1 - -close a worker +close any associated document picture-in-picture windows dfn -html -html +document-picture-in-picture +document-picture-in-picture 1 current -https://html.spec.whatwg.org/multipage/workers.html#close-a-worker -1 +https://wicg.github.io/document-picture-in-picture/#close-any-associated-document-picture-in-picture-windows + 1 - -close action +close any existing picture-in-picture windows dfn -close-watcher -close-watcher +document-picture-in-picture +document-picture-in-picture 1 current -https://wicg.github.io/close-watcher/#close-watcher-close-action +https://wicg.github.io/document-picture-in-picture/#close-any-existing-picture-in-picture-windows 1 -close watcher - close audiodata dfn @@ -5659,34 +6436,34 @@ https://www.w3.org/TR/IndexedDB-3/#connection-close-pending-flag 1 connection - -close sentinel +close request dfn -streams -streams +html +html 1 current -https://streams.spec.whatwg.org/#close-sentinel - +https://html.spec.whatwg.org/multipage/interaction.html#close-request +1 1 - -close signal +close request steps dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#close-signal +https://html.spec.whatwg.org/multipage/interaction.html#close-request-steps 1 1 - -close signal steps +close sentinel dfn -close-watcher -close-watcher +streams +streams 1 current -https://wicg.github.io/close-watcher/#close-signal-steps -1 +https://streams.spec.whatwg.org/#close-sentinel + 1 - close steps @@ -5732,13 +6509,13 @@ https://html.spec.whatwg.org/multipage/parsing.html#close-the-cell 1 - close the connection -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-close-the-connection - +1 1 - close the connection @@ -5789,6 +6566,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-close-the-session +1 +- +close the websocket connections +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#close-the-websocket-connections + +1 +- +close to the viewport +dfn +css-contain-2 +css-contain +2 +current +https://drafts.csswg.org/css-contain-2/#close-to-the-viewport + 1 - close videodecoder @@ -5838,7 +6635,7 @@ webcodecs 1 current https://w3c.github.io/webcodecs/#close-videoframe - +1 1 - close videoframe @@ -5848,38 +6645,37 @@ webcodecs 1 snapshot https://www.w3.org/TR/webcodecs/#close-videoframe - +1 1 - close watcher dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#close-watcher +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher 1 1 - close watcher dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#htmldialogelement-close-watcher +https://html.spec.whatwg.org/multipage/interactive-elements.html#dialog-close-watcher 1 -HTMLDialogElement - -close watcher stack +close watcher manager dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#close-watcher-stack -1 +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-manager + 1 - close window @@ -5924,6 +6720,17 @@ https://www.w3.org/TR/picture-in-picture/#close-window-algorithm - close() method +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityprovider-close +1 +1 +IdentityProvider +- +close() +method fs fs 1 @@ -5961,6 +6768,17 @@ html html 1 current +https://html.spec.whatwg.org/multipage/interaction.html#dom-closewatcher-close +1 +1 +CloseWatcher +- +close() +method +html +html +1 +current https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-window-close 1 1 @@ -6089,9 +6907,9 @@ IDBDatabase - close() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-close 1 @@ -6254,14 +7072,36 @@ WebSocket - close() method -close-watcher -close-watcher +direct-sockets +direct-sockets 1 current -https://wicg.github.io/close-watcher/#dom-closewatcher-close +https://wicg.github.io/direct-sockets/#dom-tcpserversocket-close 1 1 -CloseWatcher +TCPServerSocket +- +close() +method +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket-close +1 +1 +TCPSocket +- +close() +method +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocket-close +1 +1 +UDPSocket - close() method @@ -6308,15 +7148,15 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbdatabase-close IDBDatabase - close() -dfn -encrypted-media +method +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-close - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-close 1 -mediakeysession +1 +MediaKeySession - close() method @@ -6419,6 +7259,17 @@ VideoFrame - close() method +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-close +1 +1 +MIDIPort +- +close() +method webrtc webrtc 1 @@ -6531,6 +7382,26 @@ content - close-quote value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-close-quote +1 +1 +- +close-quote +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-close-quote +1 +1 +- +close-quote +value css-content-3 css-content 3 @@ -6601,14 +7472,13 @@ CanvasPath - closeaction dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#create-a-close-watcher-closeaction +https://html.spec.whatwg.org/multipage/interaction.html#create-close-watcher-closeaction 1 -create a close watcher - closealgorithm dfn @@ -6654,6 +7524,27 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-window-closed Window - closed +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#attr-shadowrootmode-closed +1 +1 +template/shadowrootmode +- +closed +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#attr-shadowrootmode-closed-state + +1 +- +closed attribute streams streams @@ -6698,25 +7589,26 @@ https://w3c.github.io/IndexedDB/#connection-closed connection - closed -attribute -encrypted-media +dfn +encrypted-media-2 encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dom-mediakeysession-closed -1 +https://w3c.github.io/encrypted-media/#dfn-closed + 1 -MediaKeySession +media key session - closed -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#media-key-session-closed - +https://w3c.github.io/encrypted-media/#dom-mediakeysession-closed +1 1 +MediaKeySession - closed enum-value @@ -6731,7 +7623,7 @@ ReadyState - closed dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -6895,6 +7787,39 @@ https://webaudio.github.io/web-midi-api/#dom-midiportconnectionstate-closed MIDIPortConnectionState - closed +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocket-closed +1 +1 +TCPServerSocket +- +closed +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket-closed +1 +1 +TCPSocket +- +closed +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocket-closed +1 +1 +UDPSocket +- +closed dfn indexeddb-3 indexeddb @@ -6918,24 +7843,25 @@ bookmark-state - closed dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-closed +https://www.w3.org/TR/encrypted-media-2/#dfn-closed 1 -mediakeysession +media key session - closed -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#media-key-session-closed - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-closed 1 +1 +MediaKeySession - closed enum-value @@ -6950,11 +7876,11 @@ ReadyState - closed dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-closed +https://www.w3.org/TR/payment-request/#dfn-closed 1 PaymentRequest @@ -7004,6 +7930,17 @@ https://www.w3.org/TR/webcodecs/#dom-codecstate-closed CodecState - closed +enum-value +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiportconnectionstate-closed +1 +1 +MIDIPortConnectionState +- +closed dfn webrtc webrtc @@ -7012,6 +7949,7 @@ snapshot https://www.w3.org/TR/webrtc/#data-transport-closed 1 +RTCDataChannel underlying data transport - closed enum-value @@ -7133,15 +8071,26 @@ https://www.w3.org/TR/SVG2/paths.html#TermClosedSubpath - closed-by-application enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessionclosedreason-closed-by-application 1 1 MediaKeySessionClosedReason - +closed-by-application +enum-value +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessionclosedreason-closed-by-application +1 +1 +MediaKeySessionClosedReason +- closed-shadow-hidden dfn dom @@ -7169,10 +8118,10 @@ css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner +https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner 1 1 -<rg-extent-keyword> +<radial-extent> radial-gradient() repeating-radial-gradient() - @@ -7193,10 +8142,12 @@ css-images-3 css-images 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-size-closest-corner +https://www.w3.org/TR/css-images-3/#valdef-radial-extent-closest-corner 1 1 -<size> +<radial-extent> +radial-gradient() +repeating-radial-gradient() - closest-corner value @@ -7215,24 +8166,14 @@ css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side +https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side 1 1 -<rg-extent-keyword> +<radial-extent> radial-gradient() repeating-radial-gradient() - closest-side -dfn -css-shapes-1 -css-shapes -1 -current -https://drafts.csswg.org/css-shapes-1/#closest-side - -1 -- -closest-side value motion-1 motion @@ -7249,10 +8190,12 @@ css-images-3 css-images 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-size-closest-side +https://www.w3.org/TR/css-images-3/#valdef-radial-extent-closest-side 1 1 -<size> +<radial-extent> +radial-gradient() +repeating-radial-gradient() - closest-side dfn @@ -7340,25 +8283,26 @@ https://w3c.github.io/webrtc-pc/#event-datachannel-closing RTCDataChannel - closing -dfn +enum-value webrtc webrtc 1 snapshot -https://www.w3.org/TR/webrtc/#dfn-closing - - +https://www.w3.org/TR/webrtc/#dom-rtcdatachannelstate-closing +1 +1 +RTCDataChannelState - closing -enum-value +event webrtc webrtc 1 snapshot -https://www.w3.org/TR/webrtc/#dom-rtcdatachannelstate-closing +https://www.w3.org/TR/webrtc/#event-datachannel-closing 1 -1 -RTCDataChannelState + +RTCDataChannel - closing procedure dfn @@ -7371,13 +8315,13 @@ https://w3c.github.io/presentation-api/#dfn-start-closing-the-presentation-conne 1 - closing procedure -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#data-transport-closing-procedure - +1 1 - closing procedure diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cm.data b/bikeshed/spec-data/readonly/anchors/anchors-cm.data index 309bc2bc25..b812fa70ac 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cm.data @@ -105,6 +105,16 @@ https://www.w3.org/TR/css-typed-om-1/#dom-css-cm 1 CSS - +cmaf av1 track +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#cmaf-av1-track + +1 +- cmp(first, second) method indexeddb-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cn.data b/bikeshed/spec-data/readonly/anchors/anchors-cn.data index 2c5193b084..8480c4e20d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cn.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cn.data @@ -1,3 +1,23 @@ +<cn> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cn + +1 +- +<cn> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cn + +1 +- cname dict-member webrtc diff --git a/bikeshed/spec-data/readonly/anchors/anchors-co.data b/bikeshed/spec-data/readonly/anchors/anchors-co.data index be31e6b188..dbca0777b3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-co.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-co.data @@ -118,6 +118,17 @@ https://www.w3.org/TR/webgpu/#dom-gpusamplerbindingtype-comparison 1 GPUSamplerBindingType - +"component-seller" +enum-value +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencereportingdestination-component-seller +1 +1 +FenceReportingDestination +- "conditional" enum-value credential-management-1 @@ -129,6 +140,39 @@ https://w3c.github.io/webappsec-credential-management/#dom-credentialmediationre 1 CredentialMediationRequirement - +"conditional" +enum-value +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequirement-conditional +1 +1 +CredentialMediationRequirement +- +"conditionalCreate" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-conditionalcreate +1 +1 +ClientCapability +- +"conditionalGet" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-conditionalget +1 +1 +ClientCapability +- "configured" enum-value webcodecs @@ -175,6 +219,17 @@ BitrateMode - "constant" enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderbitratemode-constant +1 +1 +VideoEncoderBitrateMode +- +"constant" +enum-value webnn webnn 1 @@ -197,6 +252,17 @@ BitrateMode - "constant" enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderbitratemode-constant +1 +1 +VideoEncoderBitrateMode +- +"constant" +enum-value webgpu webgpu 1 @@ -217,6 +283,28 @@ https://www.w3.org/TR/webnn/#dom-mlpaddingmode-constant 1 MLPaddingMode - +"consumed" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-adapter-state-consumed +1 +1 +adapter/[[state]] +- +"consumed" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-adapter-state-consumed +1 +1 +adapter/[[state]] +- "content" enum-value cssom-view-1 @@ -261,6 +349,28 @@ https://www.w3.org/TR/resize-observer-1/#dom-resizeobserverboxoptions-content-bo 1 ResizeObserverBoxOptions - +"context-origin" +enum-value +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstoragedataorigin-context-origin +1 +1 +SharedStorageDataOrigin +- +"continue" +enum-value +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredentialrequestoptionscontext-continue +1 +1 +IdentityCredentialRequestOptionsContext +- "continuous" enum-value image-capture @@ -336,6 +446,26 @@ current https://drafts.csswg.org/css2/#continuous-media-group +- +'continuous' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#continuous-media-group +1 +1 +- +'continuous' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#continuous-media-group +1 +1 - ::content selector @@ -345,6 +475,26 @@ css-scoping snapshot https://www.w3.org/TR/css-scoping-1/#selectordef-content 1 +1 +- +<codomain/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_codomain + +1 +- +<codomain/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_codomain + 1 - <colon-token> @@ -367,6 +517,46 @@ https://www.w3.org/TR/css-syntax-3/#typedef-colon-token 1 1 - +<color-base> +type +css-color-4 +css-color +4 +current +https://drafts.csswg.org/css-color-4/#typedef-color-base +1 +1 +- +<color-base> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-color-base +1 +1 +- +<color-base> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-color-base +1 +1 +- +<color-base> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-color-base +1 +1 +- <color-font-tech> type css-fonts-4 @@ -407,6 +597,46 @@ https://www.w3.org/TR/css-fonts-5/#color-font-tech-values 1 1 - +<color-function> +type +css-color-4 +css-color +4 +current +https://drafts.csswg.org/css-color-4/#typedef-color-function +1 +1 +- +<color-function> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-color-function +1 +1 +- +<color-function> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-color-function +1 +1 +- +<color-function> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-color-function +1 +1 +- <color-interpolation-method> type css-color-4 @@ -437,6 +667,16 @@ https://www.w3.org/TR/css-color-4/#color-interpolation-method 1 1 - +<color-interpolation-method> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#color-interpolation-method +1 +1 +- <color-space> type css-color-4 @@ -467,6 +707,16 @@ https://www.w3.org/TR/css-color-4/#typedef-color-space 1 1 - +<color-space> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-color-space +1 +1 +- <color-stop-angle> type css-images-4 @@ -643,6 +893,26 @@ https://drafts.csswg.org/css2/#value-def-color 1 - <color> +type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-color +1 +1 +- +<color> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-color +1 +1 +- +<color> dfn css-color-3 css-color @@ -662,6 +932,16 @@ https://www.w3.org/TR/css-color-4/#typedef-color 1 1 - +<color> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-color +1 +1 +- <colorspace-params> type css-color-4 @@ -684,6 +964,16 @@ https://drafts.csswg.org/css-color-5/#typedef-colorspace-params - <colorspace-params> type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-colorspace-params +1 +1 +- +<colorspace-params> +type css-color-4 css-color 4 @@ -883,6 +1173,46 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#typedef-complex-selector 1 +1 +- +<complexes/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_complexes + +1 +- +<complexes/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_complexes + +1 +- +<compose/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_compose + +1 +- +<compose/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_compose + 1 - <composite-mode> @@ -993,6 +1323,56 @@ css-conditional-values current https://drafts.csswg.org/css-conditional-values-1/#typedef-condition 1 +1 +- +<condition> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_condition + +1 +- +<condition> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_condition + +1 +- +<conic-gradient-syntax> +type +css-images-4 +css-images +4 +current +https://drafts.csswg.org/css-images-4/#typedef-conic-gradient-syntax +1 +1 +- +<conjugate/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_conjugate + +1 +- +<conjugate/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_conjugate + 1 - <consequent> @@ -1007,11 +1387,21 @@ https://drafts.csswg.org/css-conditional-values-1/#typedef-consequent - <container-condition> type -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#typedef-container-condition +https://drafts.csswg.org/css-conditional-5/#typedef-container-condition +1 +1 +- +<container-condition> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-container-condition 1 1 - @@ -1027,11 +1417,21 @@ https://www.w3.org/TR/css-contain-3/#typedef-container-condition - <container-name> type -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#typedef-container-name +https://drafts.csswg.org/css-conditional-5/#typedef-container-name +1 +1 +- +<container-name> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-container-name 1 1 - @@ -1045,13 +1445,33 @@ https://www.w3.org/TR/css-contain-3/#typedef-container-name 1 1 - +<container-progress()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-container-progress +1 +1 +- <container-query> type -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#typedef-container-query +https://drafts.csswg.org/css-conditional-5/#typedef-container-query +1 +1 +- +<container-query> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-container-query 1 1 - @@ -1075,6 +1495,16 @@ https://www.w3.org/TR/css-align-3/#typedef-content-distribution 1 1 - +<content-level> +type +css-gcpm-4 +css-gcpm +4 +current +https://drafts.csswg.org/css-gcpm-4/#typedef-content-level +1 +1 +- <content-list> type css-content-3 @@ -1099,6 +1529,16 @@ bookmark-label - <content-list> type +css-gcpm-3 +css-gcpm +3 +current +https://drafts.csswg.org/css-gcpm-3/#content-list +1 +1 +- +<content-list> +type css-content-3 css-content 3 @@ -1119,6 +1559,16 @@ https://www.w3.org/TR/css-content-3/#valdef-bookmark-label-content-list 1 bookmark-label - +<content-list> +type +css-gcpm-3 +css-gcpm +3 +snapshot +https://www.w3.org/TR/css-gcpm-3/#content-list +1 +1 +- <content-position> type css-align-3 @@ -1242,6 +1692,86 @@ https://drafts.csswg.org/css-shapes-2/#typedef-shape-coordinate-pair 1 shape() - +<cos/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cos + +1 +- +<cos/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cos + +1 +- +<cosh/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cosh + +1 +- +<cosh/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cosh + +1 +- +<cot/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cot + +1 +- +<cot/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cot + +1 +- +<coth/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_coth + +1 +- +<coth/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_coth + +1 +- <counter-name> type css-lists-3 @@ -1401,6 +1931,26 @@ https://drafts.csswg.org/css2/#value-def-counter 1 - <counter> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-counter +1 +1 +- +<counter> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-counter +1 +1 +- +<counter> type css-lists-3 css-lists @@ -1432,11 +1982,21 @@ https://www.w3.org/TR/css-color-5/#at-ruledef-profile - @container at-rule -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#at-ruledef-container +https://drafts.csswg.org/css-conditional-5/#at-ruledef-container +1 +1 +- +@container +at-rule +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#at-ruledef-container 1 1 - @@ -1450,6 +2010,26 @@ https://www.w3.org/TR/css-contain-3/#at-ruledef-container 1 1 - +@context +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-context +1 +1 +- +@context +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-context +1 +1 +- @counter-style at-rule css-counter-styles-3 @@ -1675,6 +2255,26 @@ https://www.w3.org/TR/webcodecs/#enumdef-codecstate 1 1 - +CollectSenders +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-collectsenders +1 +1 +- +CollectTransceivers +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-collecttransceivers +1 +1 +- CollectedClientAdditionalPaymentData dictionary secure-payment-confirmation @@ -1817,6 +2417,46 @@ https://dom.spec.whatwg.org/#dom-comment-comment 1 Comment - +CompareArrayElements +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-comparearrayelements +1 +1 +- +CompareArrayElements(x, y, comparator) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-comparearrayelements +1 +1 +- +CompareTypedArrayElements +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-comparetypedarrayelements +1 +1 +- +CompareTypedArrayElements(x, y, comparator) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-comparetypedarrayelements +1 +1 +- CompileError exception wasm-js-api-2 @@ -1837,6 +2477,16 @@ https://www.w3.org/TR/wasm-js-api-2/#exceptiondef-compileerror 1 1 - +CompletePropertyDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-completepropertydescriptor +1 +1 +- CompletePropertyDescriptor(Desc) abstract-op ecmascript @@ -1847,6 +2497,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-comp 1 1 - +ComposeWriteEventBytes +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-composewriteeventbytes +1 +1 +- ComposeWriteEventBytes(execution, byteIndex, Ws) abstract-op ecmascript @@ -1981,13 +2641,23 @@ https://www.w3.org/TR/uievents/#dictdef-compositioneventinit 1 1 - +CompressionFormat +enum +compression +compression +1 +current +https://compression.spec.whatwg.org/#enumdef-compressionformat +1 +1 +- CompressionStream interface compression compression 1 current -https://wicg.github.io/compression/#compressionstream +https://compression.spec.whatwg.org/#compressionstream 1 1 - @@ -1997,7 +2667,7 @@ compression compression 1 current -https://wicg.github.io/compression/#dom-compressionstream-compressionstream +https://compression.spec.whatwg.org/#dom-compressionstream-compressionstream 1 1 CompressionStream @@ -2397,6 +3067,16 @@ https://www.w3.org/TR/mediacapture-streams/#dom-constraints 1 1 - +Construct +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-construct +1 +1 +- Construct policy from dictionary and origin abstract-op permissions-policy-1 @@ -2429,7 +3109,7 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-construct - Constructor constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -2440,11 +3120,11 @@ PaymentRequestUpdateEvent - Constructor constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor 1 1 PaymentRequestUpdateEvent @@ -2694,6 +3374,16 @@ https://www.w3.org/TR/css-contain-2/#dictdef-contentvisibilityautostatechangedev 1 1 - +ContinueDynamicImport +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-ContinueDynamicImport +1 +1 +- ContinueDynamicImport(promiseCapability, moduleCompletion) abstract-op ecmascript @@ -2704,6 +3394,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-Conti 1 1 - +ContinueModuleLoading +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-ContinueModuleLoading +1 +1 +- ContinueModuleLoading(state, moduleCompletion) abstract-op ecmascript @@ -2961,6 +3661,16 @@ https://wicg.github.io/cookie-store/#cookiestoremanager 1 1 - +CopyDataBlockBytes +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-copydatablockbytes +1 +1 +- CopyDataBlockBytes(toBlock, toIndex, fromBlock, fromIndex, count) abstract-op ecmascript @@ -2971,6 +3681,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-copy 1 1 - +CopyDataProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-copydataproperties +1 +1 +- CopyDataProperties(target, source, excludedItems) abstract-op ecmascript @@ -3108,8 +3828,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-configuration + 1 -1 +RTCPeerConnection - [[CongestionControl]] attribute @@ -3133,6 +3854,17 @@ https://www.w3.org/TR/webtransport/#dom-webtransport-congestioncontrol-slot 1 WebTransport - +[[ConnectionState]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-connectionstate + +1 +RTCPeerConnection +- [[Constraints]] attribute mediacapture-streams @@ -3580,6 +4312,39 @@ https://www.w3.org/TR/webcodecs/#dom-videoframe-color-space-slot 1 VideoFrame - +[[colorAttachments]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-renderstate-colorattachments-slot +1 +1 +RenderState +- +[[colorAttachments]] +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-renderstate-colorattachments-slot +1 +1 +RenderState +- +[[comm]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-comm + +1 +SmartCardConnection +- [[command_encoder]] attribute webgpu @@ -3692,7 +4457,7 @@ GPUCommandsMixin - [[complete]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -3714,11 +4479,11 @@ ImageDecoder - [[complete]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-complete +https://www.w3.org/TR/payment-request/#dfn-complete 1 PaymentResponse @@ -3879,6 +4644,17 @@ Gamepad - [[connected]] attribute +serial +serial +1 +current +https://wicg.github.io/serial/#dfn-connected + +1 +SerialPort +- +[[connected]] +attribute gamepad gamepad 1 @@ -3888,6 +4664,17 @@ https://www.w3.org/TR/gamepad/#dfn-connected 1 Gamepad - +[[connections]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-connections + +1 +SmartCardContext +- [[constrainedbitspersecond]] dfn mediastream-recording @@ -3928,6 +4715,28 @@ https://www.w3.org/TR/mediastream-recording/#constrainedmimetype 1 - +[[content device]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-device-content-device-slot +1 +1 +device +- +[[content device]] +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-device-content-device-slot +1 +1 +device +- [[contextType]] attribute webnn @@ -3967,17 +4776,6 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-context-slot -1 -1 -MLCommandEncoder -- -[[context]] -attribute -webnn -webnn -1 -current https://webmachinelearning.github.io/webnn/#dom-mlgraph-context-slot 1 1 @@ -3996,14 +4794,14 @@ MLGraphBuilder - [[context]] attribute -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-context-slot +web-smart-card +web-smart-card 1 +current +https://wicg.github.io/web-smart-card/#dfn-context + 1 -MLCommandEncoder +SmartCardConnection - [[context]] attribute @@ -4470,7 +5268,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationpositionerror-code +https://w3c.github.io/geolocation/#dom-geolocationpositionerror-code 1 1 GeolocationPositionError @@ -4738,24 +5536,24 @@ https://infra.spec.whatwg.org/#code-point - code point dfn -i18n-glossary -i18n-glossary +urlpattern +urlpattern 1 current -https://w3c.github.io/i18n-glossary/#def_code_point -1 +https://urlpattern.spec.whatwg.org/#tokenizer-code-point +1 +tokenizer - code point dfn -urlpattern -urlpattern +i18n-glossary +i18n-glossary 1 current -https://wicg.github.io/urlpattern/#tokenizer-code-point - +https://w3c.github.io/i18n-glossary/#dfn-code-point 1 -tokenizer + - code point dfn @@ -4763,7 +5561,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_code_point +https://www.w3.org/TR/i18n-glossary/#dfn-code-point 1 - @@ -4826,17 +5624,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_code_unit -1 - -- -code unit -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_code_unit +https://w3c.github.io/i18n-glossary/#dfn-code-unit 1 - @@ -4846,17 +5634,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_code_unit -1 - -- -code unit -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_code_unit +https://www.w3.org/TR/i18n-glossary/#dfn-code-unit 1 - @@ -4870,6 +5648,17 @@ https://infra.spec.whatwg.org/#code-unit-less-than 1 1 - +code unit less than +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-dictionary-less-than-comparator + +1 +browsing-topic +- code unit prefix dfn infra @@ -4919,36 +5708,6 @@ current https://infra.spec.whatwg.org/#code-unit-suffix 1 1 -- -code units -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_code_unit -1 - -- -code units -dfn -webidl -webidl -1 -current -https://webidl.spec.whatwg.org/#dfn-code-unit - -1 -- -code units -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_code_unit -1 - - codeBase attribute @@ -5092,6 +5851,17 @@ https://w3c.github.io/webcodecs/#dom-videoencoderconfig-codec VideoEncoderConfig - codec +dict-member +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters-codec +1 +1 +RTCRtpEncodingParameters +- +codec enum-value webrtc-stats webrtc-stats @@ -5177,6 +5947,16 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcstatstype-codec 1 RTCStatsType - +codec dictionary match +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-codec-dictionary-match +1 +1 +- codec processing model dfn webcodecs @@ -5309,7 +6089,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_coded_character_set +https://w3c.github.io/i18n-glossary/#dfn-coded-character-set 1 - @@ -5319,7 +6099,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_coded_character_set +https://www.w3.org/TR/i18n-glossary/#dfn-coded-character-set 1 - @@ -5329,9 +6109,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#coded-frame +https://w3c.github.io/media-source/#dfn-coded-frame +1 1 - - coded frame dfn @@ -5339,9 +6119,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#coded-frame +https://www.w3.org/TR/media-source-2/#dfn-coded-frame +1 1 - - coded frame duration dfn @@ -5349,9 +6129,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#coded-frame-duration - +https://w3c.github.io/media-source/#dfn-coded-frame-duration +1 - coded frame duration dfn @@ -5359,9 +6139,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#coded-frame-duration - +https://www.w3.org/TR/media-source-2/#dfn-coded-frame-duration +1 - coded frame end timestamp dfn @@ -5369,9 +6149,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#coded-frame-end-timestamp - +https://w3c.github.io/media-source/#dfn-coded-frame-end-timestamp +1 - coded frame end timestamp dfn @@ -5379,9 +6159,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#coded-frame-end-timestamp - +https://www.w3.org/TR/media-source-2/#dfn-coded-frame-end-timestamp +1 - coded frame eviction dfn @@ -5409,9 +6189,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#coded-frame-group - +https://w3c.github.io/media-source/#dfn-coded-frame-group +1 - coded frame group dfn @@ -5419,9 +6199,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#coded-frame-group - +https://www.w3.org/TR/media-source-2/#dfn-coded-frame-group +1 - coded frame processing dfn @@ -5617,49 +6397,47 @@ https://www.w3.org/TR/webcodecs/#dom-videoframebufferinit-codedwidth 1 VideoFrameBufferInit - -codepoint reordering map +codepoint rects dfn -ift -ift +edit-context +edit-context 1 current -https://w3c.github.io/IFT/Overview.html#client-state-codepoint-reordering-map +https://w3c.github.io/edit-context/#dfn-codepoint-rects 1 -Client State - -codepoint_ordering +codepoint rects start index dfn -ift -ift +edit-context +edit-context 1 current -https://w3c.github.io/IFT/Overview.html#patchresponse-codepoint_ordering +https://w3c.github.io/edit-context/#dfn-codepoint-rects-start-index 1 -PatchResponse - -codepoints_have +codepoints dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patchrequest-codepoints_have +https://w3c.github.io/IFT/Overview.html#mapping-entry-codepoints 1 -PatchRequest +Mapping Entry - -codepoints_needed +codepoints dfn ift ift 1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-codepoints_needed +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-codepoints 1 -PatchRequest +Mapping Entry - codetype element-attr @@ -5817,10 +6595,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse +https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse 1 1 -text-space-collapse +white-space-collapse - collapse dfn @@ -5855,6 +6633,26 @@ https://drafts.csswg.org/css2/#valdef-visibility-collapse visibility - collapse +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x26 +1 +1 +- +collapse +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x26 +1 +1 +- +collapse value css-display-3 css-display @@ -5871,10 +6669,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-collapse-collapse +https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-collapse 1 1 -text-space-collapse +white-space-collapse - collapse through dfn @@ -5884,6 +6682,26 @@ css current https://drafts.csswg.org/css2/#collapse-through +1 +- +collapse through +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x29 +1 +1 +- +collapse through +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x29 +1 1 - collapse() @@ -6228,6 +7046,26 @@ css current https://drafts.csswg.org/css2/#collapsed-margin +1 +- +collapsing margin +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x27 +1 +1 +- +collapsing margin +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x27 +1 1 - colleague @@ -6268,6 +7106,16 @@ infra current https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points 1 +1 +- +collect a single fordebuggingonly report +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#collect-a-single-fordebuggingonly-report + 1 - collect a webvtt block @@ -6348,6 +7196,46 @@ fullscreen current https://fullscreen.spec.whatwg.org/#collect-documents-to-unfullscreen +1 +- +collect fordebuggingonly reports +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#collect-fordebuggingonly-reports + +1 +- +collect nodes using accessibility attributes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#collect-nodes-using-accessibility-attributes + +1 +- +collect page topics calculation input data +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#collect-page-topics-calculation-input-data + +1 +- +collect topics caller domain +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#collect-topics-caller-domain + 1 - collect webvtt cue timings and settings @@ -6542,26 +7430,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-collects -- -collects -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-collects - -1 -- -collectsenders -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-collectsenders - -1 - collectsenders dfn @@ -6571,16 +7439,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-collectsenders -1 -- -collecttransceivers -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-collecttransceivers - 1 - collecttransceivers @@ -6665,7 +7523,7 @@ css-color-3 css-color 3 current -https://drafts.csswg.org/css-color-3/#color0 +https://drafts.csswg.org/css-color-3/#color1 1 1 - @@ -6825,7 +7683,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#color-state-(type=color) +https://html.spec.whatwg.org/multipage/input.html#color-state-(type%3Dcolor) 1 1 input @@ -6875,6 +7733,16 @@ https://html.spec.whatwg.org/multipage/semantics.html#attr-link-color link - color +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-color + +1 +- +color dict-member ink-enhancement ink-enhancement @@ -6886,6 +7754,26 @@ https://wicg.github.io/ink-enhancement/#dom-inktrailstyle-color InkTrailStyle - color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/colors.html#propdef-color +1 +1 +- +color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/colors.html#propdef-color +1 +1 +- +color dfn css22 css @@ -6938,11 +7826,11 @@ https://www.w3.org/TR/css-color-4/#propdef-color - color dfn -mathml-core -mathml-core -1 +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-color +https://www.w3.org/TR/mathml4/#dfn-color 1 - @@ -7003,44 +7891,44 @@ GPURenderPassEncoder/setBlendConstant(color) - color depth dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#pixel-color-depth +https://w3c.github.io/window-management/#pixel-color-depth 1 pixel - color depth dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-color-depth +https://w3c.github.io/window-management/#screen-color-depth 1 screen - color depth dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#pixel-color-depth +https://www.w3.org/TR/window-management/#pixel-color-depth 1 pixel - color depth dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-color-depth +https://www.w3.org/TR/window-management/#screen-color-depth 1 screen @@ -7303,6 +8191,26 @@ css-images snapshot https://www.w3.org/TR/css-images-4/#color-transition-hint 1 +1 +- +color type +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#3colourType + +1 +- +color type +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3colourType + 1 - color() @@ -7327,6 +8235,16 @@ https://drafts.csswg.org/css-color-5/#funcdef-color - color() function +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#funcdef-color +1 +1 +- +color() +function css-color-4 css-color 4 @@ -7559,6 +8477,16 @@ https://www.w3.org/TR/filter-effects-1/#propdef-color-interpolation-filters 1 1 - +color-layers() +function +css-color-6 +css-color +6 +current +https://drafts.csswg.org/css-color-6/#funcdef-color-layers +1 +1 +- color-mix() function css-color-5 @@ -7752,6 +8680,17 @@ https://www.w3.org/TR/media-capabilities/#dom-videoconfiguration-colorgamut 1 VideoConfiguration - +colorScheme +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferencemanager-colorscheme +1 +1 +PreferenceManager +- colorSpace attribute css-typed-om-1 @@ -7881,6 +8820,42 @@ dict-member webcodecs webcodecs 1 +current +https://w3c.github.io/webcodecs/#dom-videoframecopytooptions-colorspace +1 +1 +VideoFrameCopyToOptions +- +colorSpace +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-colorspace +1 +1 +CSSColor +- +colorSpace +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor-colorspace-channels-alpha-colorspace +1 +1 +CSSColor/CSSColor(colorSpace, channels, alpha) +CSSColor/constructor(colorSpace, channels, alpha) +CSSColor/CSSColor(colorSpace, channels) +CSSColor/constructor(colorSpace, channels) +- +colorSpace +dict-member +webcodecs +webcodecs +1 snapshot https://www.w3.org/TR/webcodecs/#dom-videodecoderconfig-colorspace 1 @@ -7911,6 +8886,17 @@ VideoFrameBufferInit - colorSpace dict-member +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoframecopytooptions-colorspace +1 +1 +VideoFrameCopyToOptions +- +colorSpace +dict-member webgpu webgpu 1 @@ -8213,16 +9199,6 @@ https://www.w3.org/TR/webxrlayers-1/#xrprojectionlayer-colortextures-for-seconda 1 XRProjectionLayer - -colour type -dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#3colourType - -1 -- cols element-attr html @@ -8268,16 +9244,6 @@ https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-colspan td th - -colspan -dfn -mathml-core -mathml-core -1 -current -https://w3c.github.io/mathml-core/#dfn-colspan - -1 -- column value css-break-3 @@ -8363,8 +9329,28 @@ html html 1 current +https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-column-state + +1 +- +column +dfn +html +html +1 +current https://html.spec.whatwg.org/multipage/tables.html#concept-column +1 +- +column +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#column + 1 - column @@ -8577,6 +9563,16 @@ css-multicol snapshot https://www.w3.org/TR/css-multicol-1/#column-gap +1 +- +column group +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-colgroup-state + 1 - column group @@ -9106,6 +10102,16 @@ css-tables snapshot https://www.w3.org/TR/css-tables-3/#column 1 +1 +- +columnspan +dfn +mathml-core +mathml-core +1 +current +https://w3c.github.io/mathml-core/#dfn-columnspan + 1 - columnspan @@ -9131,6 +10137,26 @@ selector - combinator dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#combinator +1 +1 +- +combinator +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#combinator +1 +1 +- +combinator +dfn selectors-4 selectors 4 @@ -9262,6 +10288,16 @@ https://www.w3.org/TR/css-transitions-1/#transition-combined-duration 1 1 transition +- +combining character +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-combining-mark +1 + - combining character dfn @@ -9272,6 +10308,16 @@ current https://w3c.github.io/uievents-key/#combining-character 1 +- +combining character +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-combining-mark +1 + - combining character dfn @@ -9282,6 +10328,46 @@ snapshot https://www.w3.org/TR/uievents-key/#combining-character 1 +- +combining character sequence +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-ccs +1 + +- +combining character sequence +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-ccs +1 + +- +combining mark +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-combining-mark +1 + +- +combining mark +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-combining-mark +1 + - combining shadow lists dfn @@ -9325,6 +10411,16 @@ https://www.w3.org/TR/WGSL/#syntax_sym-comma 1 syntax_sym - +comma-containing productions +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#comma-containing-productions + +1 +- command dfn html @@ -9600,6 +10696,17 @@ https://html.spec.whatwg.org/multipage/syntax.html#syntax-comments 1 - +comments +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-comments +1 +1 +SanitizerConfig +- commit dfn indexeddb-3 @@ -9670,46 +10777,6 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-params-commit-early-hints -1 -- -commit the canvas texture -abstract-op -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#abstract-opdef-commit-the-canvas-texture -1 -1 -- -commit the canvas texture -abstract-op -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#abstract-opdef-commit-the-canvas-texture -1 -1 -- -commit() -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/canvas.html#offscreencontext-commit - -1 -- -commit() -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/canvas.html#offscreencontext2d-commit - 1 - commit() @@ -9757,6 +10824,17 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-commitstyles Animation - committed +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationresult-committed +1 +1 +NavigationResult +- +committed dfn indexeddb-3 indexeddb @@ -9768,17 +10846,6 @@ https://w3c.github.io/IndexedDB/#transaction-commit transaction - committed -dict-member -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationresult-committed -1 -1 -NavigationResult -- -committed dfn indexeddb-3 indexeddb @@ -9791,25 +10858,23 @@ transaction - committed promise dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-committed-promise +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-committed 1 -navigation API method navigation - committed-to entry dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-committed-to-entry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-committed-to-entry 1 -navigation API method navigation - committing dfn @@ -9833,13 +10898,33 @@ https://www.w3.org/TR/IndexedDB-3/#transaction-committing 1 transaction - +common key systems +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-common-key-systems + +1 +- +common key systems +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-common-key-systems + +1 +- common locale data repository dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_common_locale_data_repository +https://w3c.github.io/i18n-glossary/#dfn-common-locale-data-repository 1 - @@ -9849,7 +10934,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_common_locale_data_repository +https://w3c.github.io/i18n-glossary/#dfn-common-locale-data-repository 1 - @@ -9859,7 +10944,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_common_locale_data_repository +https://www.w3.org/TR/i18n-glossary/#dfn-common-locale-data-repository 1 - @@ -9869,9 +10954,29 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_common_locale_data_repository +https://www.w3.org/TR/i18n-glossary/#dfn-common-locale-data-repository 1 +- +common safety checks +dfn +screen-orientation +screen-orientation +1 +current +https://w3c.github.io/screen-orientation/#dfn-common-safety-checks + +1 +- +common safety checks +dfn +screen-orientation +screen-orientation +1 +snapshot +https://www.w3.org/TR/screen-orientation/#dfn-common-safety-checks + +1 - common writing system keys dfn @@ -9925,7 +11030,7 @@ current https://drafts.csswg.org/css-gcpm-3/#footnote-display-compact 1 1 -propdef-footnote-display +footnote-display - compact element-attr @@ -10423,6 +11528,16 @@ snapshot https://www.w3.org/TR/cssom-1/#compare-media-queries 1 1 +- +compare topics based on priority and count +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#compare-topics-based-on-priority-and-count + + - compare two keys dfn @@ -10488,28 +11603,6 @@ https://dom.spec.whatwg.org/#dom-range-comparepoint 1 Range - -compassneedscalibration -event -orientation-event -orientation-event -1 -current -https://w3c.github.io/deviceorientation/#def-compassneedscalibration -1 -1 -Window -- -compassneedscalibration -event -orientation-event -orientation-event -1 -snapshot -https://www.w3.org/TR/orientation-event/#def-compassneedscalibration -1 -1 -Window -- compatMode attribute dom @@ -10520,6 +11613,26 @@ https://dom.spec.whatwg.org/#dom-document-compatmode 1 1 Document +- +compatibility character +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-compatibility-character + + +- +compatibility character +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-compatibility-character + + - compatibility mapping with mouse events dfn @@ -10561,6 +11674,116 @@ https://www.w3.org/TR/pointerevents3/#dfn-compatibility-mouse-events 1 - +compatibilityid +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#brotli-patch-compatibilityid + +1 +Brotli patch +- +compatibilityid +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-compatibilityid + +1 +Format 1 Patch Map +- +compatibilityid +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-compatibilityid + +1 +Format 2 Patch Map +- +compatibilityid +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-keyed-patch-compatibilityid + +1 +Glyph keyed patch +- +compatibilityid +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#per-table-brotli-patch-compatibilityid + +1 +Per table brotli patch +- +compatibilityid +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#brotli-patch-compatibilityid + +1 +Brotli patch +- +compatibilityid +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-compatibilityid + +1 +Format 1 Patch Map +- +compatibilityid +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-compatibilityid + +1 +Format 2 Patch Map +- +compatibilityid +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-keyed-patch-compatibilityid + +1 +Glyph keyed patch +- +compatibilityid +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#per-table-brotli-patch-compatibilityid + +1 +Per table brotli patch +- compatible baseline alignment preferences dfn css-align-3 @@ -10691,13 +11914,35 @@ https://html.spec.whatwg.org/multipage/browsers.html#compatible-with-cross-origi 1 - +compilationHints +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpushadermoduledescriptor-compilationhints +1 +1 +GPUShaderModuleDescriptor +- +compilationHints +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpushadermoduledescriptor-compilationhints +1 +1 +GPUShaderModuleDescriptor +- compile a component dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#compile-a-component +https://urlpattern.spec.whatwg.org/#compile-a-component 1 - @@ -10841,11 +12086,11 @@ IDBTransaction - complete enum-value -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticsresult-complete +https://w3c.github.io/gamepad/#dom-gamepadhapticsresult-complete 1 1 GamepadHapticsResult @@ -10949,6 +12194,17 @@ https://www.w3.org/TR/css-transitions-1/#dfn-complete transition - complete +enum-value +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticsresult-complete +1 +1 +GamepadHapticsResult +- +complete attribute webcodecs webcodecs @@ -11004,7 +12260,7 @@ https://wicg.github.io/background-fetch/#complete-a-record - complete() method -payment-request-1.1 +payment-request payment-request 1 current @@ -11015,18 +12271,18 @@ PaymentResponse - complete() method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-complete +https://www.w3.org/TR/payment-request/#dom-paymentresponse-complete 1 1 PaymentResponse - complete(result) method -payment-request-1.1 +payment-request payment-request 1 current @@ -11037,18 +12293,18 @@ PaymentResponse - complete(result) method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-complete +https://www.w3.org/TR/payment-request/#dom-paymentresponse-complete 1 1 PaymentResponse - complete(result, details) method -payment-request-1.1 +payment-request payment-request 1 current @@ -11059,11 +12315,11 @@ PaymentResponse - complete(result, details) method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-complete +https://www.w3.org/TR/payment-request/#dom-paymentresponse-complete 1 1 PaymentResponse @@ -11300,13 +12556,13 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-compliance - -compliance +component dfn -tracking-dnt -tracking-dnt +urlpattern +urlpattern 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-compliance +current +https://urlpattern.spec.whatwg.org/#component 1 - @@ -11333,16 +12589,6 @@ https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-component RTCIceCandidate - component -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#component - -1 -- -component attribute webrtc webrtc @@ -11364,6 +12610,17 @@ https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-component 1 RTCIceCandidate - +component auctions +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-component-auctions + +1 +auction config +- component percent-encode set dfn url @@ -11374,13 +12631,57 @@ https://url.spec.whatwg.org/#component-percent-encode-set 1 1 - +component seller +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-component-seller + +1 +bid debug reporting info +- +component seller +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-component-seller + +1 +generated bid +- +component seller +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-component-seller + +1 +leading bid info +- +component seller reporting result +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-component-seller-reporting-result + +1 +leading bid info +- component start dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-component-start +https://urlpattern.spec.whatwg.org/#constructor-string-parser-component-start 1 1 constructor string parser @@ -11447,6 +12748,28 @@ https://www.w3.org/TR/WGSL/#component-wise 1 - +componentAuctions +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-componentauctions +1 +1 +AuctionAdConfig +- +componentSeller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-componentseller +1 +1 +ReportingBrowserSignals +- component_or_swizzle_specifier dfn wgsl @@ -11525,6 +12848,17 @@ https://gpuweb.github.io/gpuweb/wgsl/#components - components dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-interest-group-components + +1 +server auction interest group +- +components +dfn wgsl wgsl 1 @@ -11544,6 +12878,17 @@ https://www.w3.org/TR/css-color-5/#descdef-color-profile-components 1 @color-profile - +components +attribute +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#dom-csscolorprofilerule-components +1 +1 +CSSColorProfileRule +- composed attribute dom @@ -11607,7 +12952,7 @@ web-animations current https://drafts.csswg.org/web-animations-1/#composite -1 + - composite dict-member @@ -11676,11 +13021,11 @@ https://gpuweb.github.io/gpuweb/wgsl/#composite - composite dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-composited +https://w3c.github.io/png/#dfn-composited 1 - @@ -11692,6 +13037,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#composite +1 +- +composite +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-composited + 1 - composite @@ -11702,7 +13057,7 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#composite -1 + - composite dict-member @@ -11761,11 +13116,21 @@ KeyframeEffectOptions - composite (verb) dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-composited +https://w3c.github.io/png/#dfn-composited + +1 +- +composite (verb) +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-composited 1 - @@ -11788,6 +13153,26 @@ snapshot https://www.w3.org/TR/css-fonts-4/#composite-face 1 +- +composite message +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-composite-message +1 + +- +composite message +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-composite-message +1 + - composite operation dfn @@ -11869,33 +13254,43 @@ https://www.w3.org/TR/web-animations-1/#composite-operation-replace 1 - -composite reference component expression +composite vowel dfn -wgsl -wgsl +i18n-glossary +i18n-glossary 1 current -https://gpuweb.github.io/gpuweb/wgsl/#composite-reference-component-expression - +https://w3c.github.io/i18n-glossary/#dfn-composite-vowel 1 + - -composite reference component expression +composite vowel dfn -wgsl -wgsl +i18n-glossary +i18n-glossary 1 snapshot -https://www.w3.org/TR/WGSL/#composite-reference-component-expression - +https://www.w3.org/TR/i18n-glossary/#dfn-composite-vowel 1 + - composited dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-composited +https://w3c.github.io/png/#dfn-composited + +1 +- +composited +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-composited 1 - @@ -11947,7 +13342,7 @@ web-animations current https://drafts.csswg.org/web-animations-1/#composite -1 + - composition dfn @@ -11957,7 +13352,7 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#composite -1 + - composition enabled dfn @@ -12003,16 +13398,25 @@ https://www.w3.org/TR/webxr/#xrwebgllayer-composition-enabled 1 XRWebGLLayer - -compositionEnd -attribute +composition end +dfn edit-context edit-context 1 current -https://w3c.github.io/edit-context/#dom-textupdateevent-compositionend +https://w3c.github.io/edit-context/#dfn-composition-end + 1 +- +composition start +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-composition-start + 1 -TextUpdateEvent - compositionEnd dict-member @@ -12052,17 +13456,6 @@ attribute edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-editcontext-compositionrangeend -1 -1 -EditContext -- -compositionRangeEnd -attribute -edit-context -edit-context -1 snapshot https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangeend 1 @@ -12074,17 +13467,6 @@ attribute edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-editcontext-compositionrangestart -1 -1 -EditContext -- -compositionRangeStart -attribute -edit-context -edit-context -1 snapshot https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangestart 1 @@ -12092,17 +13474,6 @@ https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangestart EditContext - compositionStart -attribute -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dom-textupdateevent-compositionstart -1 -1 -TextUpdateEvent -- -compositionStart dict-member edit-context edit-context @@ -12391,7 +13762,7 @@ compression compression 1 current -https://wicg.github.io/compression/#compress-and-enqueue-a-chunk +https://compression.spec.whatwg.org/#compress-and-enqueue-a-chunk 1 - @@ -12401,7 +13772,7 @@ compression compression 1 current -https://wicg.github.io/compression/#compress-flush-and-enqueue +https://compression.spec.whatwg.org/#compress-flush-and-enqueue 1 - @@ -12445,16 +13816,6 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#compressed-format -1 -- -compressedset -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#compressedset - 1 - compression @@ -12483,7 +13844,7 @@ compression compression 1 current -https://wicg.github.io/compression/#compression-context +https://compression.spec.whatwg.org/#compression-context 1 - @@ -12505,6 +13866,36 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#compression-curve +1 +- +compressorname +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#compressorname + +1 +- +computational graph +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#computational-graph + +1 +- +computational graph +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#computational-graph + 1 - computationally independent @@ -12528,6 +13919,16 @@ https://www.w3.org/TR/css-properties-values-api-1/#computationally-independent 1 - compute +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-compute +1 +1 +- +compute dict-member webgpu webgpu @@ -12578,6 +13979,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#compute +1 +- +compute +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-compute +1 1 - compute @@ -12639,16 +14050,6 @@ speculation-rules current https://wicg.github.io/nav-speculation/speculation-rules.html#compute-a-speculative-action-referrer-policy -1 -- -compute account state -dfn -fedcm -fedcm -1 -current -https://fedidcg.github.io/FedCM/#compute-account-state - 1 - compute all hit test results @@ -12747,7 +14148,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#compute-interactionid +https://w3c.github.io/event-timing/#compute-interactionid 1 1 - @@ -12809,7 +14210,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#compute-protocol-matches-a-special-scheme-flag +https://urlpattern.spec.whatwg.org/#compute-protocol-matches-a-special-scheme-flag 1 - @@ -12873,33 +14274,33 @@ https://www.w3.org/TR/WGSL/#compute-shader-stage 1 - -compute the effective overload set +compute the channel capacity of a source dfn -webidl -webidl +attribution-reporting-api +attribution-reporting-api 1 current -https://webidl.spec.whatwg.org/#compute-the-effective-overload-set +https://wicg.github.io/attribution-reporting-api/#compute-the-channel-capacity-of-a-source 1 - -compute the interest rectangle +compute the connection status dfn -css-view-transitions-1 -css-view-transitions +fedcm +fedcm 1 current -https://drafts.csswg.org/css-view-transitions-1/#computing-the-interest-rectangle +https://fedidcg.github.io/FedCM/#compute-the-connection-status 1 - -compute the interest rectangle +compute the effective overload set dfn -css-view-transitions-1 -css-view-transitions +webidl +webidl 1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#computing-the-interest-rectangle +current +https://webidl.spec.whatwg.org/#compute-the-effective-overload-set 1 - @@ -12921,6 +14322,26 @@ intersection-observer snapshot https://www.w3.org/TR/intersection-observer/#compute-the-intersection +1 +- +compute the key hash of reporting id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#compute-the-key-hash-of-reporting-id + +1 +- +compute the scopes channel capacity of a source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#compute-the-scopes-channel-capacity-of-a-source + 1 - compute the tick duration @@ -12965,27 +14386,49 @@ https://www.w3.org/TR/webnn/#dom-mlcontext-compute 1 MLContext - -computeSync(graph, inputs, outputs) -method -webnn -webnn +compute_attr +dfn +wgsl +wgsl 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcontext-computesync +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-compute_attr + +1 +recursive descent syntax +- +compute_attr +dfn +wgsl +wgsl 1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-compute_attr + 1 -MLContext +syntax - -computeSync(graph, inputs, outputs) -method -webnn -webnn +compute_attr +dfn +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcontext-computesync +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-compute_attr + 1 +recursive descent syntax +- +compute_attr +dfn +wgsl +wgsl 1 -MLContext +snapshot +https://www.w3.org/TR/WGSL/#syntax-compute_attr + +1 +syntax - computed <image> dfn @@ -13074,18 +14517,38 @@ dfn web-animations-1 web-animations 1 -current -https://drafts.csswg.org/web-animations-1/#computed-keyframe-offset +snapshot +https://www.w3.org/TR/web-animations-1/#computed-keyframe-offset 1 - -computed keyframe offset +computed keyframe offsets dfn web-animations-1 web-animations 1 +current +https://drafts.csswg.org/web-animations-1/#computed-keyframe-offsets + +1 +- +computed keyframe order +dfn +css-animations-2 +css-animations +2 +current +https://drafts.csswg.org/css-animations-2/#computed-keyframe-order + +1 +- +computed keyframe order +dfn +css-animations-2 +css-animations +2 snapshot -https://www.w3.org/TR/web-animations-1/#computed-keyframe-offset +https://www.w3.org/TR/css-animations-2/#computed-keyframe-order 1 - @@ -13208,7 +14671,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#computed-stylepropertymap - +1 1 - computed track list @@ -13293,6 +14756,26 @@ https://drafts.csswg.org/css-cascade-5/#computed-value - computed value dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#computed-value +1 +1 +- +computed value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#computed-value +1 +1 +- +computed value +dfn css-cascade-3 css-cascade 3 @@ -13329,6 +14812,16 @@ css current https://drafts.csswg.org/css2/#computed-value +1 +- +computed writing suggestions value +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#computed-writing-suggestions-value + 1 - computedOffset @@ -13555,26 +15048,6 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#computing-the-envelope-rate -1 -- -computing the interest rectangle -dfn -css-view-transitions-1 -css-view-transitions -1 -current -https://drafts.csswg.org/css-view-transitions-1/#computing-the-interest-rectangle - -1 -- -computing the interest rectangle -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#computing-the-interest-rectangle - 1 - computing the makeup gain @@ -13671,6 +15144,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat 1 MLGraphBuilder - +concat(inputs, axis, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-concat +1 +1 +MLGraphBuilder +- +concat(inputs, axis, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat +1 +1 +MLGraphBuilder +- concatenate dfn infra @@ -13709,34 +15204,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-concealedsamples -1 - -RTCMediaStreamTrackStats -- -concealedSamples -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-concealedsamples 1 1 RTCInboundRtpStreamStats - -concealedSamples -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-concealedsamples -1 - -RTCMediaStreamTrackStats -- concealmentEvents dict-member webrtc-stats @@ -13753,33 +15226,31 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-concealmentevents -1 - -RTCMediaStreamTrackStats -- -concealmentEvents -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-concealmentevents 1 1 RTCInboundRtpStreamStats - -concealmentEvents -dict-member -webrtc-stats -webrtc-stats +concept +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_concept + 1 +- +concept +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-concealmentevents -1 +https://www.w3.org/TR/mathml4/#intent_concept -RTCMediaStreamTrackStats +1 - concept namespace dfn @@ -13859,6 +15330,26 @@ dom-parsing snapshot https://www.w3.org/TR/DOM-Parsing/#dfn-concept-namespace-prefix-map +1 +- +concept-or-literal +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_concept-or-literal + +1 +- +concept-or-literal +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent_concept-or-literal + 1 - concept-parse-fragment @@ -14012,6 +15503,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-concrete-rdf-syntax +- +concrete rdf syntax +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-concrete-rdf-syntax + + - concretization dfn @@ -14059,10 +15560,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-condensed +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-condensed 1 1 -font-stretch +font-width - condensed enum-value @@ -14081,10 +15582,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-condensed +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-condensed 1 1 -font-stretch +font-width - condition argument @@ -14099,6 +15600,39 @@ console/assert(condition, ...data) console/assert(condition) console/assert() - +condition +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routerrule-condition +1 +1 +RouterRule +- +condition +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-condition +1 +1 +MLGraphBuilder/where(condition, trueValue, falseValue, options) +- +condition +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-condition +1 +1 +MLGraphBuilder/where(condition, trueValue, falseValue, options) +- conditionText argument css-conditional-3 @@ -14154,6 +15688,17 @@ https://w3c.github.io/webappsec-credential-management/#dom-credentialmediationre 1 CredentialMediationRequirement - +conditional +enum-value +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequirement-conditional +1 +1 +CredentialMediationRequirement +- conditional group rule dfn css-conditional-3 @@ -14182,6 +15727,26 @@ css current https://drafts.csswg.org/css2/#conditional-import +1 +- +conditional import +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#x9 +1 +1 +- +conditional import +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#x9 +1 1 - conditional keyword @@ -14246,6 +15811,28 @@ https://www.w3.org/TR/css-conditional-5/#conditional-rule-chain 1 1 - +conditionalCreate +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-conditionalcreate +1 +1 +ClientCapability +- +conditionalGet +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-conditionalget +1 +1 +ClientCapability +- conditionally exposed dfn webidl @@ -14471,6 +16058,27 @@ SpeechRecognitionAlternative - config dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#config + +1 +- +config +argument +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityprovider-getuserinfo-config-config +1 +1 +IdentityProvider/getUserInfo(config) +- +config +dfn fido-v2.1 fido 1 @@ -14622,6 +16230,28 @@ https://w3c.github.io/webcodecs/#dom-videoencodersupport-config VideoEncoderSupport - config +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-htmlfencedframeelement-config +1 +1 +HTMLFencedFrameElement +- +config +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframe-config + +1 +fencedframe +- +config argument sanitizer-api sanitizer-api @@ -14636,14 +16266,26 @@ Sanitizer/Sanitizer() Sanitizer/constructor() - config -dfn -tracking-dnt -tracking-dnt +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-getinterestgroupadauctiondata-config-config 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-config - 1 +Navigator/getInterestGroupAdAuctionData(config) +- +config +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-runadauction-config-config +1 +1 +Navigator/runAdAuction(config) - config argument @@ -14777,6 +16419,38 @@ https://www.w3.org/TR/webcodecs/#dom-videoencodersupport-config 1 VideoEncoderSupport - +config file +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#config-file + +1 +- +config idl +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-config-idl + +1 +auction config +- +config version +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#epoch-config-version + +1 +epoch +- configURL dict-member fedcm @@ -14788,6 +16462,27 @@ https://fedidcg.github.io/FedCM/#dom-identityproviderconfig-configurl 1 IdentityProviderConfig - +configVersion +dict-member +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-browsingtopic-configversion +1 +1 +BrowsingTopic +- +configobus +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#configobus +1 +1 +- configuration argument webgpu @@ -14931,25 +16626,37 @@ https://wicg.github.io/webusb/#configuration-descriptor 1 - -configuration dictionary +configuration point dfn -sanitizer-api -sanitizer-api +document-policy +document-policy 1 current -https://wicg.github.io/sanitizer-api/#configuration-dictionary - +https://wicg.github.io/document-policy/#configuration-point +1 1 - -configuration point +configuration version dfn -document-policy -document-policy +topics +topics 1 current -https://wicg.github.io/document-policy/#configuration-point +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-configuration-version + 1 +browsing topics types +- +configuration version +dfn +topics +topics 1 +current +https://patcg-individual-drafts.github.io/topics/#user-agent-configuration-version + +1 +user agent - configurationName attribute @@ -15159,23 +16866,13 @@ https://www.w3.org/TR/webcodecs/#dom-codecstate-configured 1 CodecState - -confirm +confirm idp login dialog dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-confirm - +fedcm +fedcm 1 -- -confirm -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-confirm +current +https://fedidcg.github.io/FedCM/#confirm-idp-login-dialog 1 - @@ -15190,6 +16887,38 @@ https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-confirm 1 Window - +conflict +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-conflict + +1 +diagnostic +- +conflict +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic-conflict + +1 +diagnostic +- +conflicting credentials exist +dfn +prefetch +prefetch +1 +current +https://wicg.github.io/nav-speculation/prefetch.html#conflicting-credentials-exist + +1 +- conflicting indexes enum-value json-ld11-api @@ -15222,13 +16951,23 @@ https://drafts.csswg.org/css2/#conformance-term 1 - -conformant server +conformance dfn -ift -ift +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#conformance-term +1 +1 +- +conformance +dfn +css2 +css 1 snapshot -https://www.w3.org/TR/IFT/#conformant-server +https://www.w3.org/TR/CSS21/conform.html#conformance-term 1 1 - @@ -15280,36 +17019,6 @@ proximity current https://w3c.github.io/proximity/#conformant-user-agent -1 -- -conformant user agent -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#conformant-user-agent - -1 -- -conformant user agent -dfn -ift -ift -1 -snapshot -https://www.w3.org/TR/IFT/#conformant-user-agent -1 -1 -- -conformant user agent -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#conformant-user-agent - 1 - conformant user agent @@ -15361,6 +17070,26 @@ snapshot https://www.w3.org/TR/webaudio/#conformant-user-agent 1 1 +- +conforming cryptographic suite specification +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-conforming-cryptographic-suite-specification + + +- +conforming cryptographic suite specification +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-conforming-cryptographic-suite-specification + + - conforming document dfn @@ -15371,6 +17100,36 @@ current https://w3c.github.io/rdf-xml/spec/#dfn-conforming-document 1 1 +- +conforming document +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-conforming-document + + +- +conforming document +dfn +rdf12-xml +rdf-xml +1 +snapshot +https://www.w3.org/TR/rdf12-xml/#dfn-conforming-document +1 +1 +- +conforming document +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-conforming-document + + - conforming documents dfn @@ -15382,25 +17141,65 @@ https://html.spec.whatwg.org/multipage/infrastructure.html#conforming-documents 1 - -conforming ecmascript implementation +conforming implementation dfn webidl webidl 1 current -https://webidl.spec.whatwg.org/#dfn-conforming-ecmascript-implementation +https://webidl.spec.whatwg.org/#dfn-conforming-implementation 1 1 - -conforming implementation +conforming issuer implementation +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-conforming-issuer-implementation + + +- +conforming issuer implementation +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-conforming-issuer-implementation + + +- +conforming javascript implementation dfn webidl webidl 1 current -https://webidl.spec.whatwg.org/#dfn-conforming-implementation +https://webidl.spec.whatwg.org/#dfn-conforming-javascript-implementation +1 +1 +- +conforming processor +dfn +vc-data-integrity +vc-data-integrity 1 +current +https://w3c.github.io/vc-data-integrity/#dfn-conforming-processor + + +- +conforming processor +dfn +vc-data-integrity +vc-data-integrity 1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-conforming-processor + + - conforming rdf/xml document dfn @@ -15412,6 +17211,16 @@ https://w3c.github.io/rdf-xml/spec/#dfn-conforming-document 1 1 - +conforming rdf/xml document +dfn +rdf12-xml +rdf-xml +1 +snapshot +https://www.w3.org/TR/rdf12-xml/#dfn-conforming-document +1 +1 +- conforming scripted web animations user agent dfn web-animations-1 @@ -15431,6 +17240,26 @@ snapshot https://www.w3.org/TR/web-animations-1/#conforming-scripted-web-animations-user-agent 1 1 +- +conforming secured document +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-conforming-secured-document + + +- +conforming secured document +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-conforming-secured-document + + - conforming set of idl fragments dfn @@ -15469,7 +17298,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-conforming-implementation -1 + 1 - conforming user agent @@ -15481,6 +17310,26 @@ snapshot https://www.w3.org/TR/webauthn-3/#conforming-user-agent 1 +- +conforming verifier implementation +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-conforming-verifier-implementation + + +- +conforming verifier implementation +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-conforming-verifier-implementation + + - conforming-touch-behavior dfn @@ -15585,6 +17434,26 @@ snapshot https://www.w3.org/TR/css-images-4/#funcdef-conic-gradient 1 1 +- +conjunct +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-conjunct +1 + +- +conjunct +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-conjunct +1 + - connect event @@ -15665,6 +17534,26 @@ remote-playback snapshot https://www.w3.org/TR/remote-playback/#dfn-connect 1 +1 +- +connect stream +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#connect-stream + +1 +- +connect stream +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#connect-stream + 1 - connect to sensor @@ -15698,6 +17587,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattserver-co 1 BluetoothRemoteGATTServer - +connect() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-connect +1 +1 +SmartCardContext +- connect(destinationNode) method webaudio @@ -15808,6 +17708,28 @@ https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output 1 AudioNode - +connect(readerName, accessMode) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-connect +1 +1 +SmartCardContext +- +connect(readerName, accessMode, options) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-connect +1 +1 +SmartCardContext +- connect-src dfn csp3 @@ -15928,6 +17850,17 @@ https://dom.spec.whatwg.org/#connected - connected dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#compute-the-connection-status-connected + +1 +compute the connection status +- +connected +dfn indexeddb-3 indexeddb 3 @@ -15970,17 +17903,6 @@ https://w3c.github.io/remote-playback/#dom-remoteplaybackstate-connected RemotePlaybackState - connected -dict-member -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensorconfiguration-connected -1 -1 -MockSensorConfiguration -- -connected enum-value webrtc webrtc @@ -16059,6 +17981,27 @@ BluetoothRemoteGATTServer - connected dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-connected + +1 +- +connected +attribute +serial +serial +1 +current +https://wicg.github.io/serial/#dom-serialport-connected +1 +1 +SerialPort +- +connected +dfn indexeddb-3 indexeddb 3 @@ -16079,17 +18022,6 @@ https://www.w3.org/TR/gamepad/#dom-gamepad-connected Gamepad - connected -dict-member -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensorconfiguration-connected -1 -1 -MockSensorConfiguration -- -connected enum-value presentation-api presentation-api @@ -16113,6 +18045,17 @@ RemotePlaybackState - connected enum-value +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiportdevicestate-connected +1 +1 +MIDIPortDeviceState +- +connected +enum-value webrtc webrtc 1 @@ -16166,6 +18109,38 @@ https://www.w3.org/TR/webrtc/#idl-def-RTCSctpTransportState.connected 1 RTCSctpTransportState - +connected accounts set +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#connected-accounts-set + +1 +- +connected platform collectors +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-connected-platform-collectors + +1 +virtual pressure source +- +connected platform collectors +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-connected-platform-collectors + +1 +virtual pressure source +- connecting enum-value presentation-api @@ -16414,6 +18389,17 @@ https://wicg.github.io/netinfo/#dom-navigatornetworkinformation-connection NavigatorNetworkInformation - connection +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectresult-connection +1 +1 +SmartCardConnectResult +- +connection dfn indexeddb-3 indexeddb @@ -16476,6 +18462,17 @@ https://www.w3.org/TR/webdriver2/#dfn-connection 1 - +connection +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-connection +1 +1 +MIDIPort +- connection end time dfn fetch @@ -16487,26 +18484,6 @@ https://fetch.spec.whatwg.org/#connection-timing-info-connection-end-time 1 connection timing info - -connection flag -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#connection-flag - -1 -- -connection flag -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#connection-flag - -1 -- connection pool dfn fetch @@ -16553,16 +18530,6 @@ dfn webrtc webrtc 1 -current -https://w3c.github.io/webrtc-pc/#dfn-connection-state - -1 -- -connection state -dfn -webrtc -webrtc -1 snapshot https://www.w3.org/TR/webrtc/#dfn-connection-state @@ -16706,14 +18673,15 @@ https://w3c.github.io/webrtc-pc/#event-connectionstatechange RTCPeerConnection - connectionstatechange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-connectionstatechange +1 - +RTCPeerConnection - consecutive dfn @@ -16733,6 +18701,26 @@ css current https://drafts.csswg.org/css2/#consecutive +1 +- +consecutive +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x21 +1 +1 +- +consecutive +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x21 +1 1 - consecutive @@ -16793,7 +18781,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#considered-for-event-timing +https://w3c.github.io/event-timing/#considered-for-event-timing 1 - @@ -16838,6 +18826,28 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#consistent-comparator 1 ECMAScript - +consistent type +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-consistent-type +1 +1 +CSS +- +consistent type +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-consistent-type +1 +1 +CSS +- console namespace console @@ -16879,6 +18889,26 @@ https://www.w3.org/TR/SVG2/coords.html#__svg__SVGTransformList__consolidate 1 1 SVGTransformList +- +consonant cluster +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-consonant-cluster + + +- +consonant cluster +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-consonant-cluster + + - const dfn @@ -17025,6 +19055,50 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#syntax-const_assert_statement +1 +syntax +- +const_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-const_attr + +1 +recursive descent syntax +- +const_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-const_attr + +1 +syntax +- +const_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-const_attr + +1 +recursive descent syntax +- +const_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-const_attr + 1 syntax - @@ -17061,6 +19135,17 @@ https://w3c.github.io/mediacapture-record/#dom-bitratemode-constant BitrateMode - constant +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderbitratemode-constant +1 +1 +VideoEncoderBitrateMode +- +constant dfn webidl webidl @@ -17082,6 +19167,17 @@ https://www.w3.org/TR/mediastream-recording/#dom-bitratemode-constant BitrateMode - constant +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderbitratemode-constant +1 +1 +VideoEncoderBitrateMode +- +constant dfn webgpu webgpu @@ -17092,7 +19188,7 @@ https://www.w3.org/TR/webgpu/#internal-usage-constant 1 internal usage - -constant(desc, bufferView) +constant(descriptor, bufferView) method webnn webnn @@ -17103,7 +19199,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant 1 MLGraphBuilder - -constant(desc, bufferView) +constant(descriptor, bufferView) method webnn webnn @@ -17114,71 +19210,71 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant 1 MLGraphBuilder - -constant(value) +constant(type, value) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-value-type +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-type-value 1 1 MLGraphBuilder - -constant(value) +constant(type, value) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-value-type +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-type-value 1 1 MLGraphBuilder - -constant(value, type) -method -webnn -webnn +constants +dict-member +webgpu +webgpu 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-value-type +https://gpuweb.github.io/gpuweb/#dom-gpuprogrammablestage-constants 1 1 -MLGraphBuilder +GPUProgrammableStage - -constant(value, type) -method +constants +dfn webnn webnn 1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-value-type -1 +current +https://webmachinelearning.github.io/webnn/#computational-graph-constants + 1 -MLGraphBuilder +computational graph - constants dict-member webgpu webgpu 1 -current -https://gpuweb.github.io/gpuweb/#dom-gpuprogrammablestage-constants +snapshot +https://www.w3.org/TR/webgpu/#dom-gpuprogrammablestage-constants 1 1 GPUProgrammableStage - constants -dict-member -webgpu -webgpu +dfn +webnn +webnn 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpuprogrammablestage-constants -1 +https://www.w3.org/TR/webnn/#computational-graph-constants + 1 -GPUProgrammableStage +computational graph - constantsourcenode interface @@ -17220,6 +19316,17 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-constrainable-object 1 - +constrained-high +value +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#valdef-dynamic-range-limit-constrained-high +1 +1 +dynamic-range-limit +- constrainedness dfn css-tables-3 @@ -17262,6 +19369,28 @@ https://w3c.github.io/mediacapture-main/#dom-overconstrainederror-constraint OverconstrainedError - constraint +argument +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-navigator-createhandwritingrecognizer-constraint-constraint +1 +1 +Navigator/createHandwritingRecognizer(constraint) +- +constraint +argument +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-navigator-queryhandwritingrecognizer-constraint-constraint +1 +1 +Navigator/queryHandwritingRecognizer(constraint) +- +constraint dfn mediacapture-streams mediacapture-streams @@ -17320,6 +19449,16 @@ rdf-xml current https://w3c.github.io/rdf-xml/spec/#dfn-constraint-id +1 +- +constraint-id +dfn +rdf12-xml +rdf-xml +1 +snapshot +https://www.w3.org/TR/rdf12-xml/#dfn-constraint-id + 1 - constraints @@ -17468,6 +19607,16 @@ magnetometer snapshot https://www.w3.org/TR/magnetometer/#construct-a-magnetometer-object +1 +- +construct a pending fenced frame config +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#construct-a-pending-fenced-frame-config + 1 - construct a proximity sensor object @@ -17653,23 +19802,23 @@ https://www.w3.org/TR/WGSL/#constructible 1 - -constructing a websocket resource name +constructing a gamepadhapticactuator dfn -webdriver-bidi -webdriver-bidi +gamepad +gamepad 1 current -https://w3c.github.io/webdriver-bidi/#construct-a-websocket-resource-name +https://w3c.github.io/gamepad/#dfn-constructing-a-gamepadhapticactuator 1 - -constructing a websocket url +constructing a gamepadhapticactuator dfn -webdriver-bidi -webdriver-bidi +gamepad +gamepad 1 -current -https://w3c.github.io/webdriver-bidi/#construct-a-websocket-url +snapshot +https://www.w3.org/TR/gamepad/#dfn-constructing-a-gamepadhapticactuator 1 - @@ -17736,6 +19885,17 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#construc 1 ECMAScript - +constructor +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizer-constructor +1 +1 +Sanitizer +- constructor document dfn cssom-1 @@ -17795,7 +19955,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser +https://urlpattern.spec.whatwg.org/#constructor-string-parser 1 1 - @@ -18384,6 +20544,17 @@ XRRigidTransform - constructor() constructor +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseevent-constructor +1 +1 +CapturedMouseEvent +- +constructor() +constructor streams streams 1 @@ -18428,6 +20599,17 @@ URLSearchParams - constructor() constructor +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options +1 +1 +URLPattern +- +constructor() +constructor dom-parsing dom-parsing 1 @@ -18582,9 +20764,9 @@ TextUpdateEvent - constructor() constructor +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedevent-constructor 1 @@ -18593,9 +20775,9 @@ MediaEncryptedEvent - constructor() constructor +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageevent-constructor 1 @@ -18729,6 +20911,28 @@ media-source-2 media-source 2 current +https://w3c.github.io/media-source/#dom-bufferedchangeevent-constructor +1 +1 +BufferedChangeEvent +- +constructor() +constructor +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-managedmediasource-constructor +1 +1 +ManagedMediaSource +- +constructor() +constructor +media-source-2 +media-source +2 +current https://w3c.github.io/media-source/#dom-mediasource-constructor 1 1 @@ -18751,6 +20955,17 @@ mediacapture-streams mediacapture-streams 1 current +https://w3c.github.io/mediacapture-main/#dom-devicechangeevent-constructor +1 +1 +DeviceChangeEvent +- +constructor() +constructor +mediacapture-streams +mediacapture-streams +1 +current https://w3c.github.io/mediacapture-main/#dom-mediastream-constructor 1 1 @@ -18857,7 +21072,7 @@ PaymentRequestEvent - constructor() constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -18868,7 +21083,7 @@ PaymentMethodChangeEvent - constructor() constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -18879,7 +21094,7 @@ PaymentRequest - constructor() constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -19065,6 +21280,28 @@ https://w3c.github.io/webcodecs/#dom-videocolorspace-videocolorspace VideoColorSpace - constructor() +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-constructor +1 +1 +RTCEncodedAudioFrame +- +constructor() +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-constructor +1 +1 +RTCEncodedVideoFrame +- +constructor() constructor webrtc-encoded-transform webrtc-encoded-transform @@ -19275,6 +21512,50 @@ MIDIMessageEvent - constructor() constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-bluetoothdatafilter +1 +1 +BluetoothDataFilter +- +constructor() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-bluetoothlescanfilter +1 +1 +BluetoothLEScanFilter +- +constructor() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothmanufacturerdatafilter-bluetoothmanufacturerdatafilter +1 +1 +BluetoothManufacturerDataFilter +- +constructor() +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothservicedatafilter-bluetoothservicedatafilter +1 +1 +BluetoothServiceDataFilter +- +constructor() +constructor webidl webidl 1 @@ -19286,14 +21567,36 @@ DOMException - constructor() constructor -close-watcher -close-watcher +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocket-constructor +1 +1 +TCPServerSocket +- +constructor() +constructor +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket-constructor +1 +1 +TCPSocket +- +constructor() +constructor +direct-sockets +direct-sockets 1 current -https://wicg.github.io/close-watcher/#dom-closewatcher-closewatcher +https://wicg.github.io/direct-sockets/#dom-udpsocket-constructor 1 1 -CloseWatcher +UDPSocket - constructor() constructor @@ -19308,6 +21611,28 @@ EyeDropper - constructor() constructor +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-htmlfencedframeelement-htmlfencedframeelement +1 +1 +HTMLFencedFrameElement +- +constructor() +constructor +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingstroke-handwritingstroke +1 +1 +HandwritingStroke +- +constructor() +constructor idle-detection idle-detection 1 @@ -19451,14 +21776,14 @@ SpeechSynthesisUtterance - constructor() constructor -urlpattern -urlpattern +web-smart-card +web-smart-card 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options +https://wicg.github.io/web-smart-card/#dom-smartcarderror-constructor 1 1 -URLPattern +SmartCardError - constructor() constructor @@ -19594,6 +21919,50 @@ Highlight - constructor() constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmax-cssmathmax +1 +1 +CSSMathMax +- +constructor() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmin-cssmathmin +1 +1 +CSSMathMin +- +constructor() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathproduct-cssmathproduct +1 +1 +CSSMathProduct +- +constructor() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathsum-cssmathsum +1 +1 +CSSMathSum +- +constructor() +constructor cssom-1 cssom 1 @@ -19660,6 +22029,28 @@ TextUpdateEvent - constructor() constructor +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedevent-constructor +1 +1 +MediaEncryptedEvent +- +constructor() +constructor +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageevent-constructor +1 +1 +MediaKeyMessageEvent +- +constructor() +constructor gamepad gamepad 1 @@ -19796,6 +22187,28 @@ media-source-2 media-source 2 snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeevent-constructor +1 +1 +BufferedChangeEvent +- +constructor() +constructor +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-managedmediasource-constructor +1 +1 +ManagedMediaSource +- +constructor() +constructor +media-source-2 +media-source +2 +snapshot https://www.w3.org/TR/media-source-2/#dom-mediasource-constructor 1 1 @@ -19807,6 +22220,17 @@ mediacapture-streams mediacapture-streams 1 snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeevent-constructor +1 +1 +DeviceChangeEvent +- +constructor() +constructor +mediacapture-streams +mediacapture-streams +1 +snapshot https://www.w3.org/TR/mediacapture-streams/#dom-mediastream-constructor 1 1 @@ -19902,33 +22326,33 @@ PaymentRequestEvent - constructor() constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-constructor 1 1 PaymentMethodChangeEvent - constructor() constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequest-constructor 1 1 PaymentRequest - constructor() constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor 1 1 PaymentRequestUpdateEvent @@ -20133,6 +22557,50 @@ GPUPipelineError - constructor() constructor +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectionevent-constructor +1 +1 +MIDIConnectionEvent +- +constructor() +constructor +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midimessageevent-constructor +1 +1 +MIDIMessageEvent +- +constructor() +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-constructor +1 +1 +RTCEncodedAudioFrame +- +constructor() +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-constructor +1 +1 +RTCEncodedVideoFrame +- +constructor() +constructor webrtc-encoded-transform webrtc-encoded-transform 1 @@ -20236,10 +22704,10 @@ webrtc webrtc 1 snapshot -https://www.w3.org/TR/webrtc/#dom-rtcsessiondescription-constructor +https://www.w3.org/TR/webrtc/#dom-rtctrackevent-constructor 1 1 -RTCSessionDescription +RTCTrackEvent - constructor() constructor @@ -20247,10 +22715,10 @@ webrtc webrtc 1 snapshot -https://www.w3.org/TR/webrtc/#dom-rtctrackevent-constructor +https://www.w3.org/TR/webrtc/#dom-sessiondescription 1 1 -RTCTrackEvent +RTCSessionDescription - constructor() constructor @@ -20351,6 +22819,50 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathsum-cssmathsum 1 CSSMathSum - +constructor(...args) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmax-cssmathmax +1 +1 +CSSMathMax +- +constructor(...args) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmin-cssmathmin +1 +1 +CSSMathMin +- +constructor(...args) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathproduct-cssmathproduct +1 +1 +CSSMathProduct +- +constructor(...args) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathsum-cssmathsum +1 +1 +CSSMathSum +- constructor(...initialRanges) constructor css-highlight-api-1 @@ -20395,6 +22907,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrotate-cssrotate 1 CSSRotate - +constructor(angle) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate +1 +1 +CSSRotate +- constructor(animatorName) constructor css-animation-worklet-1 @@ -20461,6 +22984,28 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathnegate-cssmathnegate 1 CSSMathNegate - +constructor(arg) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathinvert-cssmathinvert +1 +1 +CSSMathInvert +- +constructor(arg) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathnegate-cssmathnegate +1 +1 +CSSMathNegate +- constructor(ax) constructor css-typed-om-1 @@ -20472,6 +23017,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssskewx-cssskewx 1 CSSSkewX - +constructor(ax) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssskewx-cssskewx +1 +1 +CSSSkewX +- constructor(ax, ay) constructor css-typed-om-1 @@ -20483,6 +23039,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssskew-cssskew 1 CSSSkew - +constructor(ax, ay) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssskew-cssskew +1 +1 +CSSSkew +- constructor(ay) constructor css-typed-om-1 @@ -20494,6 +23061,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssskewy-cssskewy 1 CSSSkewY - +constructor(ay) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssskewy-cssskewy +1 +1 +CSSSkewY +- constructor(barcodeDetectorOptions) constructor shape-detection-api @@ -20716,17 +23294,6 @@ IntersectionObserver - constructor(callback, options) constructor -compute-pressure -compute-pressure -1 -current -https://w3c.github.io/compute-pressure/#dom-pressureobserver-constructor -1 -1 -PressureObserver -- -constructor(callback, options) -constructor reporting-1 reporting 1 @@ -20738,17 +23305,6 @@ ReportingObserver - constructor(callback, options) constructor -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressureobserver-constructor -1 -1 -PressureObserver -- -constructor(callback, options) -constructor intersection-observer intersection-observer 1 @@ -20813,6 +23369,28 @@ https://drafts.csswg.org/web-animations-2/#dom-sequenceeffect-sequenceeffect 1 SequenceEffect - +constructor(children) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-groupeffect +1 +1 +GroupEffect +- +constructor(children) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-sequenceeffect +1 +1 +SequenceEffect +- constructor(children, timing) constructor web-animations-2 @@ -20835,6 +23413,28 @@ https://drafts.csswg.org/web-animations-2/#dom-sequenceeffect-sequenceeffect 1 SequenceEffect - +constructor(children, timing) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-groupeffect +1 +1 +GroupEffect +- +constructor(children, timing) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-sequenceeffect +1 +1 +SequenceEffect +- constructor(colorSpace, channels) constructor css-typed-om-1 @@ -20846,6 +23446,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csscolor-csscolor 1 CSSColor - +constructor(colorSpace, channels) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor +1 +1 +CSSColor +- constructor(colorSpace, channels, alpha) constructor css-typed-om-1 @@ -20857,6 +23468,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csscolor-csscolor 1 CSSColor - +constructor(colorSpace, channels, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor +1 +1 +CSSColor +- constructor(config) constructor sanitizer-api @@ -21891,6 +24513,28 @@ https://w3c.github.io/webappsec-credential-management/#dom-passwordcredential-pa 1 PasswordCredential - +constructor(data) +constructor +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-federatedcredential-federatedcredential +1 +1 +FederatedCredential +- +constructor(data) +constructor +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-passwordcredential-passwordcredential-data +1 +1 +PasswordCredential +- constructor(data, init) constructor webcodecs @@ -21930,7 +24574,7 @@ webrtc webrtc 1 snapshot -https://www.w3.org/TR/webrtc/#dom-rtcsessiondescription-constructor +https://www.w3.org/TR/webrtc/#dom-sessiondescription 1 1 RTCSessionDescription @@ -22144,6 +24788,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontface-fontface 1 FontFace - +constructor(family, source) +constructor +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface +1 +1 +FontFace +- constructor(family, source, descriptors) constructor css-font-loading-3 @@ -22155,6 +24810,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontface-fontface 1 FontFace - +constructor(family, source, descriptors) +constructor +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface +1 +1 +FontFace +- constructor(fileBits, fileName) constructor fileapi @@ -22212,6 +24878,17 @@ PasswordCredential - constructor(form) constructor +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-passwordcredential-passwordcredential +1 +1 +PasswordCredential +- +constructor(form) +constructor xhr xhr 1 @@ -22238,7 +24915,7 @@ compression compression 1 current -https://wicg.github.io/compression/#dom-compressionstream-compressionstream +https://compression.spec.whatwg.org/#dom-compressionstream-compressionstream 1 1 CompressionStream @@ -22249,7 +24926,7 @@ compression compression 1 current -https://wicg.github.io/compression/#dom-decompressionstream-decompressionstream +https://compression.spec.whatwg.org/#dom-decompressionstream-decompressionstream 1 1 DecompressionStream @@ -22265,6 +24942,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshsl-csshsl 1 CSSHSL - +constructor(h, s, l) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl +1 +1 +CSSHSL +- constructor(h, s, l, alpha) constructor css-typed-om-1 @@ -22276,6 +24964,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshsl-csshsl 1 CSSHSL - +constructor(h, s, l, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl +1 +1 +CSSHSL +- constructor(h, w, b) constructor css-typed-om-1 @@ -22287,6 +24986,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb 1 CSSHWB - +constructor(h, w, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb +1 +1 +CSSHWB +- constructor(h, w, b, alpha) constructor css-typed-om-1 @@ -22298,6 +25008,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb 1 CSSHWB - +constructor(h, w, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb +1 +1 +CSSHWB +- constructor(idp, name) constructor webrtc-identity @@ -22575,6 +25296,50 @@ RTCError - constructor(init) constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-bluetoothdatafilter +1 +1 +BluetoothDataFilter +- +constructor(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-bluetoothlescanfilter +1 +1 +BluetoothLEScanFilter +- +constructor(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothmanufacturerdatafilter-bluetoothmanufacturerdatafilter +1 +1 +BluetoothManufacturerDataFilter +- +constructor(init) +constructor +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothservicedatafilter-bluetoothservicedatafilter +1 +1 +BluetoothServiceDataFilter +- +constructor(init) +constructor scheduling-apis scheduling-apis 1 @@ -22716,17 +25481,6 @@ https://www.w3.org/TR/webrtc/#dom-rtcerror-constructor 1 RTCError - -constructor(init) -constructor -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror -1 -1 -WebTransportError -- constructor(init, message) constructor webrtc @@ -22754,8 +25508,8 @@ constructor css-font-loading-3 css-font-loading 3 -current -https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-fontfaceset +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-fontfaceset 1 1 FontFaceSet @@ -22777,7 +25531,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options 1 1 URLPattern @@ -22788,7 +25542,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern 1 1 URLPattern @@ -22799,7 +25553,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern 1 1 URLPattern @@ -22821,7 +25575,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options 1 1 URLPattern @@ -22914,6 +25668,28 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab 1 CSSOKLab - +constructor(l, a, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab +1 +1 +CSSLab +- +constructor(l, a, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab +1 +1 +CSSOKLab +- constructor(l, a, b, alpha) constructor css-typed-om-1 @@ -22936,6 +25712,28 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab 1 CSSOKLab - +constructor(l, a, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab +1 +1 +CSSLab +- +constructor(l, a, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab +1 +1 +CSSOKLab +- constructor(l, c, h) constructor css-typed-om-1 @@ -22958,6 +25756,28 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch 1 CSSOKLCH - +constructor(l, c, h) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch +1 +1 +CSSLCH +- +constructor(l, c, h) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch +1 +1 +CSSOKLCH +- constructor(l, c, h, alpha) constructor css-typed-om-1 @@ -22980,6 +25800,28 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch 1 CSSOKLCH - +constructor(l, c, h, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch +1 +1 +CSSLCH +- +constructor(l, c, h, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch +1 +1 +CSSOKLCH +- constructor(label) constructor encoding @@ -23035,6 +25877,39 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssperspective-cssperspective 1 CSSPerspective - +constructor(length) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssperspective-cssperspective +1 +1 +CSSPerspective +- +constructor(localAddress) +constructor +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocket-constructor +1 +1 +TCPServerSocket +- +constructor(localAddress, options) +constructor +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocket-constructor +1 +1 +TCPServerSocket +- constructor(lower, value, upper) constructor css-typed-om-1 @@ -23046,6 +25921,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathclamp-cssmathclamp 1 CSSMathClamp - +constructor(lower, value, upper) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-cssmathclamp +1 +1 +CSSMathClamp +- constructor(markName) constructor user-timing @@ -23101,6 +25987,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixc 1 CSSMatrixComponent - +constructor(matrix) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixcomponent +1 +1 +CSSMatrixComponent +- constructor(matrix, options) constructor css-typed-om-1 @@ -23112,6 +26009,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixc 1 CSSMatrixComponent - +constructor(matrix, options) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixcomponent +1 +1 +CSSMatrixComponent +- constructor(members) constructor css-typed-om-1 @@ -23123,6 +26031,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssunparsedvalue-cssunparsedv 1 CSSUnparsedValue - +constructor(members) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssunparsedvalue-cssunparsedvalue +1 +1 +CSSUnparsedValue +- constructor(message) constructor webgpu @@ -23151,6 +26070,17 @@ webgpu webgpu 1 current +https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-constructor +1 +1 +GPUPipelineError +- +constructor(message) +constructor +webgpu +webgpu +1 +current https://gpuweb.github.io/gpuweb/#dom-gpuvalidationerror-gpuvalidationerror 1 1 @@ -23206,11 +26136,33 @@ webgpu webgpu 1 snapshot +https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-constructor +1 +1 +GPUPipelineError +- +constructor(message) +constructor +webgpu +webgpu +1 +snapshot https://www.w3.org/TR/webgpu/#dom-gpuvalidationerror-gpuvalidationerror 1 1 GPUValidationError - +constructor(message) +constructor +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror +1 +1 +WebTransportError +- constructor(message, name) constructor webidl @@ -23228,7 +26180,7 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-gpupipelineerror +https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-constructor 1 1 GPUPipelineError @@ -23250,11 +26202,22 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-gpupipelineerror +https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-constructor 1 1 GPUPipelineError - +constructor(message, options) +constructor +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror +1 +1 +WebTransportError +- constructor(messageInit) constructor web-nfc @@ -23268,7 +26231,7 @@ NDEFMessage - constructor(methodData, details) constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -23279,11 +26242,33 @@ PaymentRequest - constructor(methodData, details) constructor -payment-request-1.1 +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentrequest-constructor +1 +1 +PaymentRequest +- +constructor(methodData, details, options) +constructor +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentrequest-constructor +1 +1 +PaymentRequest +- +constructor(methodData, details, options) +constructor +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequest-constructor 1 1 PaymentRequest @@ -23514,17 +26499,6 @@ edit-context edit-context 1 current -https://w3c.github.io/edit-context/#dom-characterboundsupdateevent-constructor -1 -1 -CharacterBoundsUpdateEvent -- -constructor(options) -constructor -edit-context -edit-context -1 -current https://w3c.github.io/edit-context/#dom-editcontext-constructor 1 1 @@ -23543,28 +26517,6 @@ TextFormat - constructor(options) constructor -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dom-textformatupdateevent-constructor -1 -1 -TextFormatUpdateEvent -- -constructor(options) -constructor -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dom-textupdateevent-constructor -1 -1 -TextUpdateEvent -- -constructor(options) -constructor geolocation-sensor geolocation-sensor 1 @@ -23598,14 +26550,14 @@ AudioBuffer - constructor(options) constructor -close-watcher -close-watcher +direct-sockets +direct-sockets 1 current -https://wicg.github.io/close-watcher/#dom-closewatcher-closewatcher +https://wicg.github.io/direct-sockets/#dom-udpsocket-constructor 1 1 -CloseWatcher +UDPSocket - constructor(options) constructor @@ -23620,6 +26572,17 @@ Profiler - constructor(options) constructor +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarderror-constructor +1 +1 +SmartCardError +- +constructor(options) +constructor accelerometer accelerometer 1 @@ -23783,6 +26746,17 @@ https://www.w3.org/TR/webrtc-encoded-transform/#dom-sframetransform-sframetransf 1 SFrameTransform - +constructor(options, message) +constructor +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarderror-constructor +1 +1 +SmartCardError +- constructor(origin) constructor webxr-hit-test-1 @@ -23827,6 +26801,94 @@ https://www.w3.org/TR/webxr-hit-test-1/#dom-xrray-xrray 1 XRRay - +constructor(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +constructor(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- +constructor(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +constructor(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- +constructor(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +constructor(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- +constructor(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +constructor(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- constructor(p1) constructor geometry-1 @@ -23981,6 +27043,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrgb-cssrgb 1 CSSRGB - +constructor(r, g, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb +1 +1 +CSSRGB +- constructor(r, g, b, alpha) constructor css-typed-om-1 @@ -23992,6 +27065,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrgb-cssrgb 1 CSSRGB - +constructor(r, g, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb +1 +1 +CSSRGB +- constructor(recordInit) constructor web-nfc @@ -24003,6 +27087,28 @@ https://w3c.github.io/web-nfc/#dom-ndefrecord-constructor 1 NDEFRecord - +constructor(remoteAddress, remotePort) +constructor +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket-constructor +1 +1 +TCPSocket +- +constructor(remoteAddress, remotePort, options) +constructor +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket-constructor +1 +1 +TCPSocket +- constructor(sensorOptions) constructor ambient-light @@ -24630,6 +27736,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csstransformvalue-csstransfor 1 CSSTransformValue - +constructor(transforms) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csstransformvalue-csstransformvalue +1 +1 +CSSTransformValue +- constructor(type) constructor dom @@ -24698,6 +27815,17 @@ NavigationEvent - constructor(type) constructor +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +constructor(type) +constructor css-transitions-1 css-transitions 1 @@ -24742,6 +27870,17 @@ AnimationPlaybackEvent - constructor(type) constructor +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseevent-constructor +1 +1 +CapturedMouseEvent +- +constructor(type) +constructor indexeddb-3 indexeddb 3 @@ -24808,10 +27947,43 @@ DeviceOrientationEvent - constructor(type) constructor -encrypted-media -encrypted-media +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-characterboundsupdateevent-constructor +1 +1 +CharacterBoundsUpdateEvent +- +constructor(type) +constructor +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-textformatupdateevent-constructor +1 +1 +TextFormatUpdateEvent +- +constructor(type) +constructor +edit-context +edit-context 1 current +https://w3c.github.io/edit-context/#dom-textupdateevent-constructor +1 +1 +TextUpdateEvent +- +constructor(type) +constructor +encrypted-media-2 +encrypted-media +2 +current https://w3c.github.io/encrypted-media/#dom-mediaencryptedevent-constructor 1 1 @@ -24819,6 +27991,28 @@ MediaEncryptedEvent - constructor(type) constructor +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeevent-constructor +1 +1 +BufferedChangeEvent +- +constructor(type) +constructor +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeevent-constructor +1 +1 +DeviceChangeEvent +- +constructor(type) +constructor payment-handler payment-handler 1 @@ -24841,7 +28035,7 @@ PaymentRequestEvent - constructor(type) constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -24852,7 +28046,7 @@ PaymentMethodChangeEvent - constructor(type) constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -24995,6 +28189,17 @@ SecurityPolicyViolationEvent - constructor(type) constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- +constructor(type) +constructor webrtc webrtc 1 @@ -25149,6 +28354,17 @@ ClipboardEvent - constructor(type) constructor +css-animations-1 +css-animations +1 +snapshot +https://www.w3.org/TR/css-animations-1/#dom-animationevent-animationevent +1 +1 +AnimationEvent +- +constructor(type) +constructor css-contain-2 css-contain 2 @@ -25160,6 +28376,17 @@ ContentVisibilityAutoStateChangedEvent - constructor(type) constructor +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfacesetloadevent +1 +1 +FontFaceSetLoadEvent +- +constructor(type) +constructor css-nav-1 css-nav 1 @@ -25171,6 +28398,50 @@ NavigationEvent - constructor(type) constructor +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +constructor(type) +constructor +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedevent-constructor +1 +1 +MediaEncryptedEvent +- +constructor(type) +constructor +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeevent-constructor +1 +1 +BufferedChangeEvent +- +constructor(type) +constructor +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeevent-constructor +1 +1 +DeviceChangeEvent +- +constructor(type) +constructor orientation-event orientation-event 1 @@ -25215,22 +28486,22 @@ PaymentRequestEvent - constructor(type) constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-constructor 1 1 PaymentMethodChangeEvent - constructor(type) constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor 1 1 PaymentRequestUpdateEvent @@ -25380,6 +28651,50 @@ AnimationPlaybackEvent - constructor(type) constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-animationplaybackevent +1 +1 +AnimationPlaybackEvent +- +constructor(type) +constructor +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectionevent-constructor +1 +1 +MIDIConnectionEvent +- +constructor(type) +constructor +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midimessageevent-constructor +1 +1 +MIDIMessageEvent +- +constructor(type) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- +constructor(type) +constructor webrtc webrtc 1 @@ -25422,6 +28737,17 @@ https://drafts.csswg.org/css-animations-1/#dom-animationevent-animationevent 1 AnimationEvent - +constructor(type, animationEventInitDict) +constructor +css-animations-1 +css-animations +1 +snapshot +https://www.w3.org/TR/css-animations-1/#dom-animationevent-animationevent +1 +1 +AnimationEvent +- constructor(type, errorEventInitDict) constructor generic-sensor @@ -25444,28 +28770,6 @@ https://www.w3.org/TR/generic-sensor/#dom-sensorerrorevent-sensorerrorevent 1 SensorErrorEvent - -constructor(type, eventInit) -constructor -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigateevent-navigateevent -1 -1 -NavigateEvent -- -constructor(type, eventInit) -constructor -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeevent-navigationcurrententrychangeevent -1 -1 -NavigationCurrentEntryChangeEvent -- constructor(type, eventInitDict) constructor dom @@ -25523,6 +28827,17 @@ NavigationEvent - constructor(type, eventInitDict) constructor +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +constructor(type, eventInitDict) +constructor cssom-view-1 cssom-view 1 @@ -25622,6 +28937,17 @@ NotificationEvent - constructor(type, eventInitDict) constructor +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseevent-constructor +1 +1 +CapturedMouseEvent +- +constructor(type, eventInitDict) +constructor indexeddb-3 indexeddb 3 @@ -25699,9 +29025,9 @@ DeviceOrientationEvent - constructor(type, eventInitDict) constructor +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedevent-constructor 1 @@ -25710,9 +29036,9 @@ MediaEncryptedEvent - constructor(type, eventInitDict) constructor +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageevent-constructor 1 @@ -25732,6 +29058,28 @@ GamepadEvent - constructor(type, eventInitDict) constructor +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeevent-constructor +1 +1 +BufferedChangeEvent +- +constructor(type, eventInitDict) +constructor +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeevent-constructor +1 +1 +DeviceChangeEvent +- +constructor(type, eventInitDict) +constructor mediacapture-streams mediacapture-streams 1 @@ -25765,7 +29113,7 @@ PaymentRequestEvent - constructor(type, eventInitDict) constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -25776,7 +29124,7 @@ PaymentMethodChangeEvent - constructor(type, eventInitDict) constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -26117,6 +29465,17 @@ ExtendableCookieChangeEvent - constructor(type, eventInitDict) constructor +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureevent-documentpictureinpictureevent +1 +1 +DocumentPictureInPictureEvent +- +constructor(type, eventInitDict) +constructor manifest-incubations manifest-incubations 1 @@ -26271,6 +29630,17 @@ ContentVisibilityAutoStateChangedEvent - constructor(type, eventInitDict) constructor +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfacesetloadevent +1 +1 +FontFaceSetLoadEvent +- +constructor(type, eventInitDict) +constructor css-nav-1 css-nav 1 @@ -26282,6 +29652,39 @@ NavigationEvent - constructor(type, eventInitDict) constructor +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +constructor(type, eventInitDict) +constructor +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedevent-constructor +1 +1 +MediaEncryptedEvent +- +constructor(type, eventInitDict) +constructor +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageevent-constructor +1 +1 +MediaKeyMessageEvent +- +constructor(type, eventInitDict) +constructor gamepad gamepad 1 @@ -26293,6 +29696,28 @@ GamepadEvent - constructor(type, eventInitDict) constructor +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeevent-constructor +1 +1 +BufferedChangeEvent +- +constructor(type, eventInitDict) +constructor +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeevent-constructor +1 +1 +DeviceChangeEvent +- +constructor(type, eventInitDict) +constructor mediacapture-streams mediacapture-streams 1 @@ -26348,22 +29773,22 @@ PaymentRequestEvent - constructor(type, eventInitDict) constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-constructor 1 1 PaymentMethodChangeEvent - constructor(type, eventInitDict) constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor 1 1 PaymentRequestUpdateEvent @@ -26557,6 +29982,17 @@ AnimationPlaybackEvent - constructor(type, eventInitDict) constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-animationplaybackevent +1 +1 +AnimationPlaybackEvent +- +constructor(type, eventInitDict) +constructor webaudio webaudio 1 @@ -26579,6 +30015,28 @@ OfflineAudioCompletionEvent - constructor(type, eventInitDict) constructor +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectionevent-constructor +1 +1 +MIDIConnectionEvent +- +constructor(type, eventInitDict) +constructor +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midimessageevent-constructor +1 +1 +MIDIMessageEvent +- +constructor(type, eventInitDict) +constructor webrtc-encoded-transform webrtc-encoded-transform 1 @@ -26819,6 +30277,39 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-valueevent-valueevent 1 ValueEvent - +constructor(type, options) +constructor +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-characterboundsupdateevent-constructor +1 +1 +CharacterBoundsUpdateEvent +- +constructor(type, options) +constructor +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-textformatupdateevent-constructor +1 +1 +TextFormatUpdateEvent +- +constructor(type, options) +constructor +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-textupdateevent-constructor +1 +1 +TextUpdateEvent +- constructor(type, priorityChangeEventInitDict) constructor scheduling-apis @@ -26841,6 +30332,28 @@ https://w3c.github.io/web-nfc/#dom-ndefreadingevent-constructor 1 NDEFReadingEvent - +constructor(type, rid) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- +constructor(type, rid) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- constructor(type, transitionEventInitDict) constructor css-transitions-1 @@ -26942,6 +30455,17 @@ WebSocket - constructor(url) constructor +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-fencedframeconfig +1 +1 +FencedFrameConfig +- +constructor(url) +constructor presentation-api presentation-api 1 @@ -27017,6 +30541,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csskeywordvalue-csskeywordval 1 CSSKeywordValue - +constructor(value) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csskeywordvalue-csskeywordvalue +1 +1 +CSSKeywordValue +- constructor(value, unit) constructor css-typed-om-1 @@ -27028,6 +30563,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssunitvalue-cssunitvalue 1 CSSUnitValue - +constructor(value, unit) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssunitvalue-cssunitvalue +1 +1 +CSSUnitValue +- constructor(variable) constructor css-typed-om-1 @@ -27039,6 +30585,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssvariablereferencevalue-css 1 CSSVariableReferenceValue - +constructor(variable) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssvariablereferencevalue-cssvariablereferencevalue +1 +1 +CSSVariableReferenceValue +- constructor(variable, fallback) constructor css-typed-om-1 @@ -27050,6 +30607,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssvariablereferencevalue-css 1 CSSVariableReferenceValue - +constructor(variable, fallback) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssvariablereferencevalue-cssvariablereferencevalue +1 +1 +CSSVariableReferenceValue +- constructor(videoTrack) constructor image-capture @@ -27248,6 +30816,28 @@ https://drafts.fxtf.org/geometry-1/#dom-domrectreadonly-domrectreadonly 1 DOMRectReadOnly - +constructor(x, y) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssscale-cssscale +1 +1 +CSSScale +- +constructor(x, y) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csstranslate-csstranslate +1 +1 +CSSTranslate +- constructor(x, y, width) constructor geometry-1 @@ -27336,6 +30926,28 @@ https://drafts.fxtf.org/geometry-1/#dom-dompointreadonly-dompointreadonly 1 DOMPointReadOnly - +constructor(x, y, z) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssscale-cssscale +1 +1 +CSSScale +- +constructor(x, y, z) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csstranslate-csstranslate +1 +1 +CSSTranslate +- constructor(x, y, z, angle) constructor css-typed-om-1 @@ -27347,6 +30959,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrotate-cssrotate-x-y-z-ang 1 CSSRotate - +constructor(x, y, z, angle) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate-x-y-z-angle +1 +1 +CSSRotate +- constructor(x, y, z, w) constructor geometry-1 @@ -27380,6 +31003,26 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#construc 1 ECMAScript - +consume a block +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#consume-a-block + +1 +- +consume a block's contents +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#consume-a-blocks-contents + +1 +- consume a component value dfn css-syntax-3 @@ -27460,13 +31103,13 @@ https://www.w3.org/TR/css-syntax-3/#consume-a-function 1 - -consume a list of declarations +consume a list of component values dfn css-syntax-3 css-syntax 3 current -https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-declarations +https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-component-values 1 - @@ -27478,16 +31121,6 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-declarations -1 -- -consume a list of rules -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-rules - 1 - consume a list of rules @@ -27576,7 +31209,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#consume-a-required-token +https://urlpattern.spec.whatwg.org/#consume-a-required-token 1 - @@ -27625,18 +31258,18 @@ dfn css-syntax-3 css-syntax 3 -current -https://drafts.csswg.org/css-syntax-3/#consume-a-style-blocks-contents +snapshot +https://www.w3.org/TR/css-syntax-3/#consume-a-style-blocks-contents 1 - -consume a style block's contents +consume a stylesheet's contents dfn css-syntax-3 css-syntax 3 -snapshot -https://www.w3.org/TR/css-syntax-3/#consume-a-style-blocks-contents +current +https://drafts.csswg.org/css-syntax-3/#consume-a-stylesheets-contents 1 - @@ -27686,9 +31319,21 @@ css-syntax-3 css-syntax 3 current -https://drafts.csswg.org/css-syntax-3/#consume-a-token +https://drafts.csswg.org/css-syntax-3/#token-stream-consume-a-token + +1 +token stream +- +consume a token +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#tokenizer-consume-a-token 1 +tokenizer - consume a token dfn @@ -27698,6 +31343,16 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#consume-a-token +1 +- +consume a unicode-range token +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#consume-a-unicode-range-token +1 1 - consume a url token @@ -27831,6 +31486,16 @@ https://fetch.spec.whatwg.org/#concept-body-consume-body 1 Body - +consume budget if permitted +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#consume-budget-if-permitted + +1 +- consume comments dfn css-syntax-3 @@ -27849,6 +31514,16 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#consume-comments +1 +- +consume history-action user activation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#consume-history-action-user-activation + 1 - consume text @@ -27857,7 +31532,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#consume-text +https://urlpattern.spec.whatwg.org/#consume-text 1 - @@ -27866,18 +31541,18 @@ dfn css-syntax-3 css-syntax 3 -current -https://drafts.csswg.org/css-syntax-3/#consume-the-next-input-token +snapshot +https://www.w3.org/TR/css-syntax-3/#consume-the-next-input-token 1 - -consume the next input token +consume the remnants of a bad declaration dfn css-syntax-3 css-syntax 3 -snapshot -https://www.w3.org/TR/css-syntax-3/#consume-the-next-input-token +current +https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-declaration 1 - @@ -27899,6 +31574,16 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#consume-the-remnants-of-a-bad-url +1 +- +consume the value of a unicode-range descriptor +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#consume-the-value-of-a-unicode-range-descriptor + 1 - consume user activation @@ -27932,25 +31617,26 @@ https://html.spec.whatwg.org/multipage/parsing.html#charref-in-attribute 1 - -consumer +consumed budget dfn -streams -streams +attribution-reporting-api +attribution-reporting-api 1 current -https://streams.spec.whatwg.org/#consumer +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-record-consumed-budget 1 +aggregatable debug rate-limit record - consumer dfn -i18n-glossary -i18n-glossary +streams +streams 1 current -https://w3c.github.io/i18n-glossary/#dfn-consumer -1 +https://streams.spec.whatwg.org/#consumer +1 - consumer dfn @@ -27981,16 +31667,6 @@ snapshot https://www.w3.org/TR/i18n-glossary/#dfn-consumer 1 -- -consumer -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-consumer -1 - - consumer dfn @@ -28001,26 +31677,6 @@ snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-consumer 1 1 -- -consumers -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn-consumer -1 - -- -consumers -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-consumer -1 - - contact dfn @@ -28164,6 +31820,26 @@ contact-picker snapshot https://www.w3.org/TR/contact-picker/#contacts-source +1 +- +contagious invalidity +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#contagious-invalidity + +1 +- +contagious invalidity +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#contagious-invalidity + 1 - contain @@ -28302,6 +31978,17 @@ user-select - contain value +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-group-contain +1 +1 +view-transition-group +- +contain +value scroll-animations-1 scroll-animations 1 @@ -28503,6 +32190,28 @@ https://www.w3.org/TR/scroll-animations-1/#valdef-animation-timeline-range-conta 1 animation-timeline-range - +contain a percentage +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-contain-a-percentage +1 +1 +CSS +- +contain a percentage +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-contain-a-percentage +1 +1 +CSS +- contain constraint dfn css-images-3 @@ -28664,13 +32373,23 @@ https://dom.spec.whatwg.org/#contained 1 live range - +contained text auto directionality +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#contained-text-auto-directionality + +1 +- container property -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#propdef-container +https://drafts.csswg.org/css-conditional-5/#propdef-container 1 1 - @@ -28740,6 +32459,16 @@ memory attribution token - container property +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#propdef-container +1 +1 +- +container +property css-contain-3 css-contain 3 @@ -28822,11 +32551,21 @@ https://www.w3.org/TR/SVG2/struct.html#container-element - container feature dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#container-feature +https://drafts.csswg.org/css-conditional-5/#container-feature +1 +1 +- +container feature +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#container-feature 1 1 - @@ -28892,11 +32631,21 @@ https://www.w3.org/TR/permissions-policy-1/#container-policy - container query dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#container-query +https://drafts.csswg.org/css-conditional-5/#container-query +1 +1 +- +container query +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#container-query 1 1 - @@ -28912,12 +32661,22 @@ https://www.w3.org/TR/css-contain-3/#container-query - container query length dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#container-query-length - +https://drafts.csswg.org/css-conditional-5/#container-query-length +1 +1 +- +container query length +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#container-query-length +1 1 - container query length @@ -28928,6 +32687,26 @@ css-contain snapshot https://www.w3.org/TR/css-contain-3/#container-query-length +1 +- +container query length unit +dfn +css-conditional-5 +css-conditional +5 +current +https://drafts.csswg.org/css-conditional-5/#container-query-length +1 +1 +- +container query length unit +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#container-query-length +1 1 - container resource @@ -28970,13 +32749,45 @@ https://www.w3.org/TR/epub-33/#dfn-container-root-url 1 1 - +container size +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-container-size +1 +1 +fenced frame config +- +container size +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-container-size +1 +1 +fenced frame config instance +- container size query dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#container-size-query +https://drafts.csswg.org/css-conditional-5/#container-size-query +1 +1 +- +container size query +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#container-size-query 1 1 - @@ -28992,11 +32803,21 @@ https://www.w3.org/TR/css-contain-3/#container-size-query - container style query dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#container-style-query +https://drafts.csswg.org/css-conditional-5/#container-style-query +1 +1 +- +container style query +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#container-style-query 1 1 - @@ -29012,11 +32833,21 @@ https://www.w3.org/TR/css-contain-3/#container-style-query - container-name property -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#propdef-container-name +https://drafts.csswg.org/css-conditional-5/#propdef-container-name +1 +1 +- +container-name +property +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#propdef-container-name 1 1 - @@ -29030,13 +32861,33 @@ https://www.w3.org/TR/css-contain-3/#propdef-container-name 1 1 - +container-progress() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-container-progress +1 +1 +- container-type property -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#propdef-container-type +https://drafts.csswg.org/css-conditional-5/#propdef-container-type +1 +1 +- +container-type +property +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#propdef-container-type 1 1 - @@ -29050,6 +32901,17 @@ https://www.w3.org/TR/css-contain-3/#propdef-container-type 1 1 - +containerHeight +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-containerheight +1 +1 +FencedFrameConfig +- containerId attribute longtasks-1 @@ -29074,11 +32936,11 @@ TaskAttributionTiming - containerName attribute -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#dom-csscontainerrule-containername +https://drafts.csswg.org/css-conditional-5/#dom-csscontainerrule-containername 1 1 CSSContainerRule @@ -29096,6 +32958,17 @@ TaskAttributionTiming - containerName attribute +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#dom-csscontainerrule-containername +1 +1 +CSSContainerRule +- +containerName +attribute longtasks-1 longtasks 1 @@ -29107,11 +32980,22 @@ TaskAttributionTiming - containerQuery attribute -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#dom-csscontainerrule-containerquery +https://drafts.csswg.org/css-conditional-5/#dom-csscontainerrule-containerquery +1 +1 +CSSContainerRule +- +containerQuery +attribute +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#dom-csscontainerrule-containerquery 1 1 CSSContainerRule @@ -29160,6 +33044,39 @@ https://www.w3.org/TR/longtasks-1/#dom-taskattributiontiming-containertype 1 TaskAttributionTiming - +containerWidth +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-containerwidth +1 +1 +FencedFrameConfig +- +containerheight +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-containerheight + +1 +fencedframeconfig +- +containerwidth +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-containerwidth + +1 +fencedframeconfig +- containing block dfn css-display-3 @@ -29198,6 +33115,26 @@ css current https://drafts.csswg.org/css2/#containing-block%E2%91%A0 +1 +- +containing block +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#containing-block +1 +1 +- +containing block +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#containing-block +1 1 - containing block @@ -29270,6 +33207,37 @@ https://www.w3.org/TR/css-transforms-1/#containing-block-for-all-descendants 1 1 - +containing block::initial +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#x1 +1 +1 +- +containing block::initial +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#x1 +1 +1 +- +containing group name +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#captured-element-containing-group-name + +1 +captured element +- containing job queue dfn service-workers @@ -29404,6 +33372,27 @@ webauthn current https://w3c.github.io/webauthn/#contains +1 +- +contains +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizerconfig-contains + +1 +SanitizerConfig +- +contains +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#contains + 1 - contains a gamepad user gesture @@ -29609,6 +33598,17 @@ https://drafts.csswg.org/css-regions-1/#content 1 - content +value +css-ui-4 +css-ui +4 +current +https://drafts.csswg.org/css-ui-4/#valdef-field-sizing-content +1 +1 +field-sizing +- +content dfn css22 css @@ -29663,6 +33663,46 @@ HTMLMetaElement - content dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#content +1 +1 +- +content +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#content +1 +1 +- +content +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-content +1 +1 +- +content +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-content +1 +1 +- +content +dfn css22 css 1 @@ -29872,6 +33912,26 @@ css current https://drafts.csswg.org/css2/#content-box +1 +- +content box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x10 +1 +1 +- +content box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x10 +1 1 - content box @@ -29892,16 +33952,6 @@ css-box snapshot https://www.w3.org/TR/css-box-4/#content-box 1 -1 -- -content box -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-content-box - 1 - content clip @@ -29926,6 +33976,26 @@ https://www.w3.org/TR/intersection-observer/#intersectionobserver-content-clip 1 IntersectionObserver - +content decryption module (cdm) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-cdm +1 +1 +- +content decryption module (cdm) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-cdm +1 +1 +- content display area dfn epub-rs-33 @@ -30004,6 +34074,26 @@ css current https://drafts.csswg.org/css2/#content-edge +1 +- +content edge +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#content-edge +1 +1 +- +content edge +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#content-edge +1 1 - content edge @@ -30289,6 +34379,28 @@ https://www.w3.org/TR/largest-contentful-paint/#content-set 1 - +content size +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-content-size +1 +1 +fenced frame config +- +content size +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-content-size +1 +1 +fenced frame config instance +- content size suggestion dfn css-flexbox-1 @@ -30402,6 +34514,17 @@ Document - content type dfn +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#response-body-info-content-type +1 +1 +response body info +- +content type +dfn media-feeds media-feeds 1 @@ -30622,8 +34745,12 @@ https://drafts.csswg.org/css-box-3/#valdef-box-content-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - content-box value @@ -30635,8 +34762,12 @@ https://drafts.csswg.org/css-box-4/#valdef-box-content-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - content-box value @@ -30759,8 +34890,12 @@ https://www.w3.org/TR/css-box-3/#valdef-box-content-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - content-box value @@ -30772,8 +34907,12 @@ https://www.w3.org/TR/css-box-4/#valdef-box-content-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - content-box value @@ -30955,36 +35094,6 @@ https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-keywo 1 meta/http-equiv - -content-list -dfn -css-gcpm-3 -css-gcpm -3 -current -https://drafts.csswg.org/css-gcpm-3/#content-list - -1 -- -content-list -dfn -css-gcpm-4 -css-gcpm -4 -current -https://drafts.csswg.org/css-gcpm-4/#content-list - -1 -- -content-list -dfn -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#content-list - -1 -- content-security-policy attr-value html @@ -31036,23 +35145,23 @@ https://www.w3.org/TR/CSP3/#header-content-security-policy-report-only 1 1 - -content-timeline example definition +content-timeline example term dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#content-timeline-example-definition +https://gpuweb.github.io/gpuweb/#content-timeline-example-term - -content-timeline example definition +content-timeline example term dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#content-timeline-example-definition +https://www.w3.org/TR/webgpu/#content-timeline-example-term - @@ -31097,6 +35206,46 @@ https://www.w3.org/TR/css-contain-2/#propdef-content-visibility 1 1 - +content::of a box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-content-area +1 +1 +- +content::of a box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-content-area +1 +1 +- +content::rendered +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#rendered-content +1 +1 +- +content::rendered +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#rendered-content +1 +1 +- contentBoxSize attribute resize-observer-1 @@ -31163,6 +35312,17 @@ https://html.spec.whatwg.org/multipage/interaction.html#dom-contenteditable 1 ElementContentEditable - +contentHeight +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-contentheight +1 +1 +FencedFrameConfig +- contentHint attribute mst-content-hint @@ -31175,6 +35335,17 @@ https://w3c.github.io/mst-content-hint/#dom-mediastreamtrack-contenthint MediaStreamTrack - contentHint +dict-member +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderconfig-contenthint +1 +1 +VideoEncoderConfig +- +contentHint attribute mst-content-hint mst-content-hint @@ -31185,6 +35356,17 @@ https://www.w3.org/TR/mst-content-hint/#dom-mediastreamtrack-contenthint 1 MediaStreamTrack - +contentHint +dict-member +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-contenthint +1 +1 +VideoEncoderConfig +- contentRect attribute resize-observer-1 @@ -31234,9 +35416,9 @@ Blob/slice() - contentType dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability-contenttype 1 @@ -31277,6 +35459,17 @@ https://w3c.github.io/media-capabilities/#dom-videoconfiguration-contenttype VideoConfiguration - contentType +attribute +resource-timing +resource-timing +1 +current +https://w3c.github.io/resource-timing/#dom-performanceresourcetiming-contenttype +1 +1 +PerformanceResourceTiming +- +contentType argument fileapi fileapi @@ -31291,6 +35484,17 @@ Blob/slice(start) Blob/slice() - contentType +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemmediacapability-contenttype +1 +1 +MediaKeySystemMediaCapability +- +contentType attribute json-ld11-api json-ld-api @@ -31323,6 +35527,39 @@ https://www.w3.org/TR/media-capabilities/#dom-videoconfiguration-contenttype 1 VideoConfiguration - +contentType +attribute +resource-timing +resource-timing +1 +snapshot +https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming-contenttype +1 +1 +PerformanceResourceTiming +- +contentVisibilityAuto +dict-member +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-checkvisibilityoptions-contentvisibilityauto +1 +1 +CheckVisibilityOptions +- +contentWidth +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-contentwidth +1 +1 +FencedFrameConfig +- contentWindow attribute html @@ -31398,6 +35635,16 @@ https://w3c.github.io/paint-timing/#contentful 1 1 - +contentful +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#contentful +1 +1 +- contentful image dfn paint-timing @@ -31408,6 +35655,38 @@ https://w3c.github.io/paint-timing/#contentful-image 1 - +contentful image +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#contentful-image + +1 +- +contentful paint +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#interaction-data-contentful-paint + +1 +interaction data +- +contentheight +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-contentheight + +1 +fencedframeconfig +- contention dfn ecmascript @@ -31420,16 +35699,6 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-entercriticalsection ECMAScript - contents -dfn -css-contain-2 -css-contain -2 -current -https://drafts.csswg.org/css-contain-2/#element-contents - -1 -- -contents value css-content-3 css-content @@ -31570,19 +35839,8 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-contents-of-arraybuffer -1 -1 -- -contenttype -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemmediacapability-contenttype 1 -mediakeysystemmediacapability - contentvisibilityautostatechange event @@ -31606,6 +35864,50 @@ https://www.w3.org/TR/css-contain-2/#eventdef-element-contentvisibilityautostate 1 Element - +contentwidth +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-contentwidth + +1 +fencedframeconfig +- +context +dfn +compression +compression +1 +current +https://compression.spec.whatwg.org/#compressionstream-context + +1 +CompressionStream +- +context +dfn +compression +compression +1 +current +https://compression.spec.whatwg.org/#decompressionstream-context + +1 +DecompressionStream +- +context +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredentialrequestoptions-context +1 +1 +IdentityCredentialRequestOptions +- context dfn html @@ -31726,6 +36028,16 @@ current https://w3c.github.io/json-ld-syntax/#dfn-context +- +context +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-context + +1 - context argument @@ -32261,35 +36573,12 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-mlgraphbuilder-context-context +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constructor-context-context 1 1 -MLGraphBuilder/MLGraphBuilder(context) MLGraphBuilder/constructor(context) - context -dfn -compression -compression -1 -current -https://wicg.github.io/compression/#compressionstream-context - -1 -CompressionStream -- -context -dfn -compression -compression -1 -current -https://wicg.github.io/compression/#decompressionstream-context - -1 -DecompressionStream -- -context dict-member webcrypto-secure-curves webcrypto-secure-curves @@ -32334,11 +36623,11 @@ https://www.w3.org/TR/json-ld11/#dfn-context - context dfn -tracking-dnt -tracking-dnt +pub-manifest +pub-manifest 1 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-context +https://www.w3.org/TR/pub-manifest/#dfn-context 1 - @@ -32876,10 +37165,9 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mlgraphbuilder-context-context +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constructor-context-context 1 1 -MLGraphBuilder/MLGraphBuilder(context) MLGraphBuilder/constructor(context) - context @@ -32952,6 +37240,26 @@ https://www.w3.org/TR/webxrlayers-1/#xrwebglbinding-context 1 XRWebGLBinding - +context cleanup steps +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#context-cleanup-steps + +1 +- +context cleanup steps +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#context-cleanup-steps + +1 +- context definition dfn json-ld11 @@ -33012,8 +37320,30 @@ https://www.w3.org/TR/SVG2/painting.html#TermContextElement 1 1 - -context is capturing +context id dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-context-id + +1 +aggregatable report +- +context id +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#pre-specified-report-parameters-context-id + +1 +pre-specified report parameters +- +context is capturing +abstract-op mediacapture-streams mediacapture-streams 1 @@ -33023,7 +37353,7 @@ https://w3c.github.io/mediacapture-main/#context-is-capturing 1 - context is capturing -dfn +abstract-op mediacapture-streams mediacapture-streams 1 @@ -33092,6 +37422,17 @@ https://www.w3.org/TR/DOM-Parsing/#dfn-context-object 1 - +context origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#node-context-origin +1 +1 +node +- context overflow enum-value json-ld11-api @@ -33114,6 +37455,27 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-context-overflow 1 JsonLdErrorCode - +context site +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-record-context-site + +1 +aggregatable debug rate-limit record +- +context type +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#context-type + +1 +- context type dfn webnn @@ -33132,6 +37494,16 @@ webnn snapshot https://www.w3.org/TR/webnn/#context-type +1 +- +context validation result +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-context-validation-result + 1 - context-base-iri @@ -33248,6 +37620,17 @@ https://mimesniff.spec.whatwg.org/#context-specific-sniffing-algorithm 1 - +contextId +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-sharedstorageprivateaggregationconfig-contextid +1 +1 +SharedStoragePrivateAggregationConfig +- contextNode argument dom @@ -33319,6 +37702,17 @@ https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-contextoptio 1 OfflineAudioContext/constructor(contextOptions) - +contextString +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-setsharedstoragecontext-contextstring-contextstring +1 +1 +FencedFrameConfig/setSharedStorageContext(contextString) +- contextTime dict-member webaudio @@ -33568,16 +37962,6 @@ syntax_kw - continue property -css-overflow-3 -css-overflow -3 -snapshot -https://www.w3.org/TR/css-overflow-3/#propdef-continue -1 -1 -- -continue -property css-overflow-4 css-overflow 4 @@ -33919,16 +38303,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-contractee -- -contractee -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-contractee - -1 - contrast dfn @@ -33985,6 +38359,17 @@ https://w3c.github.io/mediacapture-image/#dom-mediatracksupportedconstraints-con MediaTrackSupportedConstraints - contrast +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferencemanager-contrast +1 +1 +PreferenceManager +- +contrast dfn image-capture image-capture @@ -34102,6 +38487,16 @@ filter - contrast-color() function +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#funcdef-contrast-color +1 +1 +- +contrast-color() +function css-color-6 css-color 6 @@ -34110,6 +38505,49 @@ https://drafts.csswg.org/css-color-6/#funcdef-contrast-color 1 1 - +contrast-color() +function +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#funcdef-contrast-color +1 +1 +- +contributeToHistogram(contribution) +method +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-contributetohistogram +1 +1 +PrivateAggregation +- +contributeToHistogram(contribution) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-realtimereporting-contributetohistogram +1 +1 +RealTimeReporting +- +contributeToHistogramOnEvent(event, contribution) +method +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-contributetohistogramonevent +1 +1 +PrivateAggregation +- contributes a script-blocking style sheet dfn html @@ -34184,49 +38622,91 @@ https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata 1 RTCEncodedVideoFrameMetadata - -contributingsources +contribution dfn -webrtc-encoded-transform -webrtc-encoded-transform +private-aggregation-api +private-aggregation-api 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframemetadata-contributingsources +https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache-entry-contribution 1 -RTCEncodedAudioFrameMetadata +contribution cache entry - -contributingsources +contribution +argument +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-contributetohistogram-contribution-contribution +1 +1 +PrivateAggregation/contributeToHistogram(contribution) +- +contribution +argument +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-contributetohistogramonevent-event-contribution-contribution +1 +1 +PrivateAggregation/contributeToHistogramOnEvent(event, contribution) +- +contribution dfn -webrtc-encoded-transform -webrtc-encoded-transform +private-aggregation-api +private-aggregation-api 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframemetadata-contributingsources +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry-contribution 1 -RTCEncodedVideoFrameMetadata +on event contribution cache entry - -contributingsources +contribution +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-realtimereporting-contributetohistogram-contribution-contribution +1 +1 +RealTimeReporting/contributeToHistogram(contribution) +- +contribution cache dfn -webrtc-encoded-transform -webrtc-encoded-transform +private-aggregation-api +private-aggregation-api 1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframemetadata-contributingsources +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache 1 -RTCEncodedAudioFrameMetadata - -contributingsources +contribution cache entry dfn -webrtc-encoded-transform -webrtc-encoded-transform +private-aggregation-api +private-aggregation-api 1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframemetadata-contributingsources +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache-entry 1 -RTCEncodedVideoFrameMetadata +- +contributions +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-contributions + +1 +aggregatable report - contributions dfn @@ -34238,6 +38718,8 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report-contributi 1 aggregatable report +aggregatable attribution report +aggregatable debug report - control attribute @@ -34278,6 +38760,36 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#control-barrier +1 +- +control bounds +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-control-bounds + +1 +- +control flag +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#control-flag + +1 +- +control flag +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#control-flag + 1 - control message @@ -34440,6 +38952,28 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#control' 1 - +control() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-control +1 +1 +SmartCardConnection +- +control(controlCode, data) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-control +1 +1 +SmartCardConnection +- control-character-in-input-stream dfn html @@ -34465,17 +38999,6 @@ attribute edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-editcontext-controlbound -1 -1 -EditContext -- -controlBound -attribute -edit-context -edit-context -1 snapshot https://www.w3.org/TR/edit-context/#dom-editcontext-controlbound 1 @@ -34783,15 +39306,25 @@ https://www.w3.org/TR/service-workers/#dom-serviceworkercontainer-controller 1 ServiceWorkerContainer - -controller +controller document dfn -tracking-dnt -tracking-dnt +vc-data-integrity +vc-data-integrity 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-controller +current +https://w3c.github.io/vc-data-integrity/#dfn-controller-document + +- +controller document +dfn +vc-data-integrity +vc-data-integrity 1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-controller-document + + - controllerchange event @@ -34941,14 +39474,15 @@ https://html.spec.whatwg.org/multipage/media.html#dom-media-controls HTMLMediaElement - controls -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-controls - 1 +1 +model - controls dfn @@ -34968,6 +39502,16 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#dfn-control +1 +- +controls of the window +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-controls-of-the-window + 1 - controls of the window @@ -35068,26 +39612,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d 1 MLGraphBuilder - -conversion expression -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#conversion-expression - -1 -- -conversion expression -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#conversion-expression - -1 -- conversion to db dfn webaudio @@ -35162,6 +39686,16 @@ https://infra.spec.whatwg.org/#javascript-string-convert string JavaScript string - +convert +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#convert-data-format +1 +1 +- convert a cssunitvalue dfn css-typed-om-1 @@ -35248,7 +39782,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#convert-a-modifier-to-a-string +https://urlpattern.spec.whatwg.org/#convert-a-modifier-to-a-string 1 - @@ -35289,16 +39823,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-convert-integer-to-octet-string -1 -1 -- -convert a string to a number -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#convert-a-string-to-a-number 1 - @@ -35370,6 +39894,36 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#convert-a-value-to-a-multientry-key +1 +- +convert an ad render +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-an-ad-render + +1 +- +convert an ad size to a map +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-an-ad-size-to-a-map + +1 +- +convert an ad size to a string +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-an-ad-size-to-a-string + 1 - convert an infra value to a json-compatible javascript value @@ -35470,6 +40024,16 @@ webxr-hit-test snapshot https://www.w3.org/TR/webxr-hit-test-1/#convert-from-native-entity-type +1 +- +convert generatebidoutput to generated bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-generatebidoutput-to-generated-bid + 1 - convert header names to a sorted-lowercase set @@ -35510,6 +40074,16 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-convert-ndefrecord-data-bytes +1 +- +convert one or many generatebidoutputs to a list of generated bids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-one-or-many-generatebidoutputs-to-a-list-of-generated-bids + 1 - convert to a list of name-value pairs @@ -35522,6 +40096,68 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#convert- 1 - +convert to a string sequence +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-to-a-string-sequence + +1 +- +convert to absolute url +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-convert-to-absolute-url + +1 +- +convert to absolute url +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-convert-to-absolute-url + +1 +- +convert to an auctionad sequence +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#convert-to-an-auctionad-sequence + +1 +- +convert to rgb frame +dfn +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#videoframe-convert-to-rgb-frame + +1 +VideoFrame +- +convert to rgb frame +dfn +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#videoframe-convert-to-rgb-frame + +1 +VideoFrame +- convertPointFromNode(point, from) method cssom-view-1 @@ -35709,6 +40345,16 @@ https://www.w3.org/TR/SVG2/types.html#__svg__SVGLength__convertToSpecifiedUnits 1 SVGLength - +converted to a javascript value +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value +1 +1 +- converted to a numeric type or bigint dfn webidl @@ -35725,7 +40371,7 @@ webidl webidl 1 current -https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value +https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value 1 1 - @@ -35745,7 +40391,7 @@ webidl webidl 1 current -https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value +https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value 1 1 - @@ -35759,6 +40405,16 @@ https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value 1 1 - +converted to javascript values +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value +1 +1 +- converting dfn webidl @@ -35808,6 +40464,26 @@ infra current https://infra.spec.whatwg.org/#convert-a-json-derived-javascript-value-to-an-infra-value +1 +- +converting a quaternion to rotation matrix +dfn +orientation-sensor +orientation-sensor +1 +current +https://w3c.github.io/orientation-sensor/#converting-a-quaternion-to-rotation-matrix + +1 +- +converting a quaternion to rotation matrix +dfn +orientation-sensor +orientation-sensor +1 +snapshot +https://www.w3.org/TR/orientation-sensor/#converting-a-quaternion-to-rotation-matrix + 1 - converting an infra value to a json-compatible javascript value @@ -35858,6 +40534,46 @@ dom current https://dom.spec.whatwg.org/#converting-nodes-into-a-node 1 +1 +- +converttofloat +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#converttofloat + +1 +- +converttofloat +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#converttofloat + +1 +- +converttoint +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#converttoint + +1 +- +converttoint +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#converttoint + 1 - convolvernode @@ -35931,17 +40647,6 @@ https://wicg.github.io/cookie-store/#cookie-change-subscription-list 1 - -cookie data -dfn -prefetch -prefetch -1 -current -https://wicg.github.io/nav-speculation/prefetch.html#exchange-record-cookie-data - -1 -exchange record -- cookie domain dfn webdriver2 @@ -36090,16 +40795,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-cookie-secure-only -1 -- -cookie store -dfn -presentation-api -presentation-api -1 -current -https://w3c.github.io/presentation-api/#dfn-cookie-store - 1 - cookie store @@ -36110,16 +40805,6 @@ cookie-store current https://wicg.github.io/cookie-store/#cookie-store -1 -- -cookie store -dfn -presentation-api -presentation-api -1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-cookie-store - 1 - cookie value @@ -36206,6 +40891,17 @@ https://wicg.github.io/cookie-store/#dom-window-cookiestore Window - cookies +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-cookies +1 +1 +StorageAccessTypes +- +cookies grammar clear-site-data clear-site-data @@ -36368,6 +41064,17 @@ https://www.w3.org/TR/css-values-4/#coordinating-list-property 1 1 - +coordinatorOrigin +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-adauctiondataconfig-coordinatororigin +1 +1 +AdAuctionDataConfig +- coords element-attr html @@ -36418,7 +41125,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationposition-coords +https://w3c.github.io/geolocation/#dom-geolocationposition-coords 1 1 GeolocationPosition @@ -36497,24 +41204,26 @@ https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransfer-effectallowed-c 1 - copy -dfn +event clipboard-apis clipboard-apis 1 current -https://w3c.github.io/clipboard-apis/#copy - +https://w3c.github.io/clipboard-apis/#eventdef-globaleventhandlers-copy +1 1 +GlobalEventHandlers - copy -dfn +event clipboard-apis clipboard-apis 1 snapshot -https://www.w3.org/TR/clipboard-apis/#copy - +https://www.w3.org/TR/clipboard-apis/#eventdef-documentandelementeventhandlers-copy +1 1 +DocumentAndElementEventHandlers - copy value @@ -36546,6 +41255,26 @@ dom-parsing current https://w3c.github.io/DOM-Parsing/#dfn-copy-a-namespace-prefix-map +1 +- +copy an mloperand +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#copy-an-mloperand + +1 +- +copy an mloperand +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#copy-an-mloperand + 1 - copy prefetch cookies @@ -37032,7 +41761,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.copywithin +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.copywithin 1 1 %TypedArray% @@ -37048,6 +41777,50 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.c 1 Array - +copycount +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-copycount + +1 +Mapping Entry +- +copycount +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-copycount + +1 +Mapping Entry +- +copyindices +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-copyindices + +1 +Mapping Entry +- +copyindices +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-copyindices + +1 +Mapping Entry +- copylink dfn html @@ -37088,6 +41861,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-coral 1 1 <color> +<named-color> - coral dfn @@ -37109,6 +41883,27 @@ https://www.w3.org/TR/css-color-4/#valdef-color-coral 1 1 <color> +<named-color> +- +core +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent-core + +1 +- +core +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent-core + +1 - core attributes dfn @@ -37169,6 +41964,17 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-core-operator +1 +embellished operator +- +core properties +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent-core-properties + 1 - core_lhs_expression @@ -37239,11 +42045,11 @@ https://www.w3.org/TR/fill-stroke-3/#--corner-diagonal - corner-shape property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-corner-shape +https://drafts.csswg.org/css-borders-4/#propdef-corner-shape 1 1 - @@ -37271,21 +42077,21 @@ DetectedText - corners property -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#propdef-corners +https://drafts.csswg.org/css-borders-4/#propdef-corners 1 1 - corners value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-border-limit-corners +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-corners 1 1 border-limit @@ -37310,6 +42116,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-cornflowerblue 1 1 <color> +<named-color> - cornflowerblue dfn @@ -37331,6 +42138,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-cornflowerblue 1 1 <color> +<named-color> - cornsilk dfn @@ -37352,6 +42160,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-cornsilk 1 1 <color> +<named-color> - cornsilk dfn @@ -37373,46 +42182,124 @@ https://www.w3.org/TR/css-color-4/#valdef-color-cornsilk 1 1 <color> +<named-color> - -corpus +correctly rounded dfn -ift -ift +wgsl +wgsl 1 current -https://w3c.github.io/IFT/Overview.html#corpus +https://gpuweb.github.io/gpuweb/wgsl/#correctly-rounded 1 - -corpus +correctly rounded dfn -ift -ift +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/IFT/#corpus +https://www.w3.org/TR/WGSL/#correctly-rounded 1 - -correctly rounded +correspond to dfn -wgsl -wgsl +webxr-plane-detection +webxr-plane-detection 1 current -https://gpuweb.github.io/gpuweb/wgsl/#correctly-rounded +https://immersive-web.github.io/real-world-geometry/plane-detection.html#correspond-to 1 - -correctly rounded +correspond to dfn -wgsl -wgsl +real-world-meshing +real-world-meshing 1 -snapshot -https://www.w3.org/TR/WGSL/#correctly-rounded +current +https://immersive-web.github.io/real-world-meshing/#correspond-to + +1 +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding + +1 +SmartCardReaderStateIn +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-0 + +1 +SmartCardReaderStateFlagsIn +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-1 + +1 +SmartCardReaderStateOut +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-2 + +1 +SmartCardReaderStateFlagsOut +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-3 1 +SmartCardAccessMode +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-4 + +1 +SmartCardConnectionState +- +corresponding +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-5 + +1 +SmartCardError - corresponding animator instance dfn @@ -37444,6 +42331,17 @@ https://svgwg.org/svg2-draft/struct.html#TermCorrespondingElement 1 - +corresponding flags +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-corresponding-flags + +1 +SmartCardProtocol +- corresponding use element dfn svg2 @@ -37586,7 +42484,7 @@ html 1 current https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute-credentials-mode - +1 1 - cors-cross-origin @@ -37720,18 +42618,29 @@ https://www.w3.org/TR/css-values-4/#funcdef-cos 1 1 - -cos(x) +cos(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.cos +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cos 1 1 -Math +MLGraphBuilder - -cos(x) +cos(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos +1 +1 +MLGraphBuilder +- +cos(input, options) method webnn webnn @@ -37742,7 +42651,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cos 1 MLGraphBuilder - -cos(x) +cos(input, options) method webnn webnn @@ -37753,6 +42662,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos 1 MLGraphBuilder - +cos(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.cos +1 +1 +Math +- cosh(x) method ecmascript @@ -37764,6 +42684,26 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.cosh 1 Math - +council report +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#council-report +1 +1 +- +council team contact +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#council-team-contact +1 +1 +- count argument dom @@ -37894,6 +42834,17 @@ IDBObjectStore/getAllKeys(query) IDBObjectStore/getAllKeys() - count +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-operator-count + +1 +summary operator +- +count argument indexeddb-3 indexeddb @@ -37989,6 +42940,17 @@ https://www.w3.org/TR/webgpu/#dom-gpuquerysetdescriptor-count 1 GPUQuerySetDescriptor - +count entries in the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-count-entries-in-the-database + +1 +shared storage database +- count map dfn console @@ -38189,7 +43151,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesCtrParams-counter -1 + 1 - counter @@ -38303,6 +43265,26 @@ https://drafts.csswg.org/css2/#funcdef-counter 1 - counter() +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x46 +1 +1 +- +counter() +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x46 +1 +1 +- +counter() function css-lists-3 css-lists @@ -38333,6 +43315,26 @@ https://drafts.csswg.org/css2/#propdef-counter-increment 1 - counter-increment +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment +1 +1 +- +counter-increment +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment +1 +1 +- +counter-increment dfn css22 css @@ -38373,6 +43375,26 @@ https://drafts.csswg.org/css2/#propdef-counter-reset 1 - counter-reset +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset +1 +1 +- +counter-reset +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset +1 +1 +- +counter-reset dfn css22 css @@ -38420,6 +43442,26 @@ css current https://drafts.csswg.org/css2/#counters%E2%91%A0 +1 +- +counters +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#counters +1 +1 +- +counters +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#counters +1 1 - counters() @@ -38487,11 +43529,22 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-country - +1 1 physical address - country +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-country +1 +1 +AddressErrors +- +country attribute contact-picker contact-picker @@ -38509,10 +43562,21 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-country - +1 1 physical address - +country +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-country +1 +1 +AddressErrors +- country-name attr-value html @@ -38596,6 +43660,16 @@ https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-co animation-timeline-range - cover +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-cover + +1 +- +cover value css-backgrounds-3 css-backgrounds @@ -38640,6 +43714,16 @@ https://www.w3.org/TR/css-round-display-1/#valdef-viewport-fit-cover viewport-fit - cover +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-cover + +1 +- +cover value scroll-animations-1 scroll-animations diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cp.data b/bikeshed/spec-data/readonly/anchors/anchors-cp.data index 483196633f..3d1ece967a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cp.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cp.data @@ -66,6 +66,17 @@ RTCQualityLimitationReason - cpu enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mldevicetype-cpu +1 +1 +MLDeviceType +- +cpu +enum-value compute-pressure compute-pressure 1 @@ -77,6 +88,17 @@ PressureSource - cpu enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mldevicetype-cpu +1 +1 +MLDeviceType +- +cpu +enum-value webrtc-stats webrtc-stats 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cq.data b/bikeshed/spec-data/readonly/anchors/anchors-cq.data index cffdfc666e..3bab72e5ad 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cq.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cq.data @@ -9,6 +9,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cqb 1 CSS - +cqb(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqb +1 +1 +CSS +- cqh(value) method css-typed-om-1 @@ -20,6 +31,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cqh 1 CSS - +cqh(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqh +1 +1 +CSS +- cqi(value) method css-typed-om-1 @@ -31,6 +53,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cqi 1 CSS - +cqi(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqi +1 +1 +CSS +- cqmax(value) method css-typed-om-1 @@ -42,6 +75,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cqmax 1 CSS - +cqmax(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqmax +1 +1 +CSS +- cqmin(value) method css-typed-om-1 @@ -53,6 +97,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cqmin 1 CSS - +cqmin(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqmin +1 +1 +CSS +- cqw(value) method css-typed-om-1 @@ -64,3 +119,14 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cqw 1 CSS - +cqw(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqw +1 +1 +CSS +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cr.data b/bikeshed/spec-data/readonly/anchors/anchors-cr.data index 307ca45a71..ccaccbacb0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cr.data @@ -20,6 +20,17 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatorattachment-cross-platform 1 AuthenticatorAttachment - +<crossorigin-modifier> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier-crossorigin-modifier +1 +1 +<request-url-modifier> +- Create a Credential abstract-op credential-management-1 @@ -180,43 +191,43 @@ https://www.w3.org/TR/trusted-types/#abstract-opdef-create-a-trusted-type-policy 1 1 - -Create a Trusted Type from literal +Create a new device-bound key record abstract-op -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-create-a-trusted-type-from-literal +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-create-a-new-device-bound-key-record 1 1 - -Create a Trusted Type from literal +CreateArrayFromList abstract-op -trusted-types -trusted-types +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/trusted-types/#abstract-opdef-create-a-trusted-type-from-literal +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createarrayfromlist 1 1 - -Create a new device-bound key record +CreateArrayFromList(elements) abstract-op -webauthn-3 -webauthn -3 +ecmascript +ecmascript +1 current -https://w3c.github.io/webauthn/#abstract-opdef-create-a-new-device-bound-key-record +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createarrayfromlist 1 1 - -CreateArrayFromList(elements) +CreateArrayIterator abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createarrayfromlist +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-createarrayiterator 1 1 - @@ -230,6 +241,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-createarrayiterat 1 1 - +CreateAsyncFromSyncIterator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createasyncfromsynciterator +1 +1 +- CreateAsyncFromSyncIterator(syncIteratorRecord) abstract-op ecmascript @@ -240,6 +261,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createasy 1 1 - +CreateAsyncIteratorFromClosure +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createasynciteratorfromclosure +1 +1 +- CreateAsyncIteratorFromClosure(closure, generatorBrand, generatorPrototype) abstract-op ecmascript @@ -250,6 +281,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createasy 1 1 - +CreateBuiltinFunction +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-createbuiltinfunction +1 +1 +- CreateBuiltinFunction(behaviour, length, name, additionalInternalSlotsList, realm, prototype, prefix) abstract-op ecmascript @@ -260,6 +301,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +CreateByteDataBlock +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-createbytedatablock +1 +1 +- CreateByteDataBlock(size) abstract-op ecmascript @@ -270,6 +321,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-crea 1 1 - +CreateDataProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createdataproperty +1 +1 +- CreateDataProperty(O, P, V) abstract-op ecmascript @@ -280,6 +341,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createdatapropert 1 1 - +CreateDataPropertyOrThrow +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createdatapropertyorthrow +1 +1 +- CreateDataPropertyOrThrow(O, P, V) abstract-op ecmascript @@ -290,6 +361,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createdatapropert 1 1 - +CreateDynamicFunction +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-createdynamicfunction +1 +1 +- CreateDynamicFunction(constructor, newTarget, kind, parameterArgs, bodyArg) abstract-op ecmascript @@ -300,6 +381,16 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-createdynamicfunc 1 1 - +CreateForInIterator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-createforiniterator +1 +1 +- CreateForInIterator(object) abstract-op ecmascript @@ -332,6 +423,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 Global Environment Records - +CreateHTML +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-createhtml +1 +1 +- CreateHTML(string, tag, attribute, value) abstract-op ecmascript @@ -371,7 +472,29 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-createimmutablebinding-n-s 1 1 -Environment Records +Declarative Environment Records +- +CreateImmutableBinding(N, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-createimmutablebinding-n-s +1 +1 +Global Environment Records +- +CreateImmutableBinding(N, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-createimmutablebinding-n-s +1 +1 +Object Environment Records - CreateImportBinding(N, M, N2) abstract-op @@ -384,6 +507,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 Module Environment Records - +CreateIntrinsics +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-createintrinsics +1 +1 +- CreateIntrinsics(realmRec) abstract-op ecmascript @@ -394,13 +527,13 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - -CreateIterResultObject(value, done) +CreateIteratorFromClosure abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createiterresultobject +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createiteratorfromclosure 1 1 - @@ -414,6 +547,36 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createite 1 1 - +CreateIteratorResultObject +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createiterresultobject +1 +1 +- +CreateIteratorResultObject(value, done) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createiterresultobject +1 +1 +- +CreateListFromArrayLike +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createlistfromarraylike +1 +1 +- CreateListFromArrayLike(obj, elementTypes) abstract-op ecmascript @@ -424,6 +587,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createlistfromarr 1 1 - +CreateListIteratorRecord +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createlistiteratorRecord +1 +1 +- CreateListIteratorRecord(list) abstract-op ecmascript @@ -434,6 +607,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createlistiterato 1 1 - +CreateMapIterator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-createmapiterator +1 +1 +- CreateMapIterator(map, kind) abstract-op ecmascript @@ -444,7 +627,7 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-createmapiterator 1 1 - -CreateMappedArgumentsObject(func, formals, argumentsList, env) +CreateMappedArgumentsObject abstract-op ecmascript ecmascript @@ -454,13 +637,13 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -CreateMethodProperty(O, P, V) +CreateMappedArgumentsObject(func, formals, argumentsList, env) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createmethodproperty +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-createmappedargumentsobject 1 1 - @@ -473,7 +656,39 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-createmutablebinding-n-d 1 1 -Environment Records +Declarative Environment Records +- +CreateMutableBinding(N, D) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-createmutablebinding-n-d +1 +1 +Global Environment Records +- +CreateMutableBinding(N, D) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-createmutablebinding-n-d +1 +1 +Object Environment Records +- +CreateNonEnumerableDataPropertyOrThrow +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createnonenumerabledatapropertyorthrow +1 +1 - CreateNonEnumerableDataPropertyOrThrow(O, P, V) abstract-op @@ -485,6 +700,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createnonenumerab 1 1 - +CreatePerIterationEnvironment +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-createperiterationenvironment +1 +1 +- CreatePerIterationEnvironment(perIterationBindings) abstract-op ecmascript @@ -515,13 +740,13 @@ https://streams.spec.whatwg.org/#create-readable-stream 1 1 - -CreateRealm() +CreateRegExpStringIterator abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-createrealm +https://tc39.es/ecma262/multipage/text-processing.html#sec-createregexpstringiterator 1 1 - @@ -535,6 +760,16 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-createregexpstringite 1 1 - +CreateResolvingFunctions +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-createresolvingfunctions +1 +1 +- CreateResolvingFunctions(promise) abstract-op ecmascript @@ -585,6 +820,16 @@ https://www.w3.org/TR/trusted-types/#callbackdef-createscripturlcallback 1 1 - +CreateSetIterator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-createsetiterator +1 +1 +- CreateSetIterator(set, kind) abstract-op ecmascript @@ -595,6 +840,16 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-createsetiterator 1 1 - +CreateSharedByteDataBlock +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-createsharedbytedatablock +1 +1 +- CreateSharedByteDataBlock(size) abstract-op ecmascript @@ -605,6 +860,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-crea 1 1 - +CreateUnmappedArgumentsObject +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-createunmappedargumentsobject +1 +1 +- CreateUnmappedArgumentsObject(argumentsList) abstract-op ecmascript @@ -921,6 +1186,17 @@ PublicKeyCredential - [[Create]](origin, options, sameOriginWithAncestors) method +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-create-origin-options-sameoriginwithancestors +1 +1 +DigitalCredential +- +[[Create]](origin, options, sameOriginWithAncestors) +method credential-management-1 credential-management 1 @@ -1004,14 +1280,14 @@ https://wicg.github.io/crash-reporting/#crash-reports 1 - -crc +crd dfn -png-spec -png-spec +w3c-process +w3c-process 1 current -https://w3c.github.io/PNG-spec/#dfn-crc - +https://www.w3.org/Consortium/Process/#candidate-recommendation-draft +1 1 - create @@ -1071,6 +1347,17 @@ FileSystemGetFileOptions - create dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#url-pattern-create +1 +1 +URL pattern +- +create +dfn webtransport webtransport 1 @@ -1097,10 +1384,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#webtransportratecontrolfeedback-create - +https://w3c.github.io/webtransport/#webtransportreceivestream-create +1 1 -WebTransportRateControlFeedback +WebTransportReceiveStream - create dfn @@ -1108,10 +1395,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#webtransportreceivestream-create +https://w3c.github.io/webtransport/#webtransportsendgroup-create 1 1 -WebTransportReceiveStream +WebTransportSendGroup - create dfn @@ -1126,6 +1413,17 @@ WebTransportSendStream - create dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#webtransportwriter-create +1 +1 +WebTransportWriter +- +create +dfn webidl webidl 1 @@ -1144,7 +1442,29 @@ current https://webidl.spec.whatwg.org/#arraybufferview-create 1 1 -ArrayBufferView +ArrayBufferView +- +create +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-create-exception +1 +1 +exception +- +create +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#sharedarraybuffer-create +1 +1 +SharedArrayBuffer - create dict-member @@ -1196,10 +1516,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#webtransporterror-create - +https://www.w3.org/TR/webtransport/#webtransportreceivestream-create +1 1 -WebTransportError +WebTransportReceiveStream - create dfn @@ -1207,10 +1527,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#webtransportreceivestream-create +https://www.w3.org/TR/webtransport/#webtransportsendgroup-create 1 1 -WebTransportReceiveStream +WebTransportSendGroup - create dfn @@ -1223,6 +1543,17 @@ https://www.w3.org/TR/webtransport/#webtransportsendstream-create 1 WebTransportSendStream - +create +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#webtransportwriter-create +1 +1 +WebTransportWriter +- create a 'webgpu' context on a canvas abstract-op webgpu @@ -1281,6 +1612,46 @@ geometry snapshot https://www.w3.org/TR/geometry-1/#create-a-3d-matrix +1 +- +create a MediaDevices +abstract-op +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dfn-create-a-mediadevices +1 +1 +- +create a MediaDevices +abstract-op +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dfn-create-a-mediadevices +1 +1 +- +create a MediaStreamTrack +abstract-op +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dfn-create-a-mediastreamtrack +1 +1 +- +create a MediaStreamTrack +abstract-op +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dfn-create-a-mediastreamtrack +1 1 - create a bidirectional stream @@ -1353,6 +1724,56 @@ ua-client-hints current https://wicg.github.io/ua-client-hints/#create-a-brand-version-list +1 +- +create a cancelable mouseevent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#create-a-cancelable-mouseevent + +1 +- +create a cancelable mouseevent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#create-a-cancelable-mouseevent + +1 +- +create a channel +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#create-a-channel + +1 +- +create a chapterinformation +dfn +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#create-a-chapterinformation + +1 +- +create a chapterinformation +dfn +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#create-a-chapterinformation + 1 - create a classic script @@ -1375,13 +1796,13 @@ https://w3c.github.io/clipboard-apis/#create-a-clipboarditem-object 1 - -create a close watcher +create a clipboarditem object dfn -close-watcher -close-watcher +clipboard-apis +clipboard-apis 1 -current -https://wicg.github.io/close-watcher/#create-a-close-watcher +snapshot +https://www.w3.org/TR/clipboard-apis/#create-a-clipboarditem-object 1 - @@ -1391,7 +1812,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#create-a-component-match-result +https://urlpattern.spec.whatwg.org/#create-a-component-match-result 1 - @@ -1403,6 +1824,16 @@ fetch current https://fetch.spec.whatwg.org/#create-a-connection +1 +- +create a connection between the rp and the idp account +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#create-a-connection-between-the-rp-and-the-idp-account + 1 - create a constructed cssstylesheet @@ -1423,6 +1854,48 @@ cssom snapshot https://www.w3.org/TR/cssom-1/#create-a-constructed-cssstylesheet 1 +1 +- +create a contactaddress from user-provided input +dfn +contact-picker +contact-picker +1 +current +https://w3c.github.io/contact-picker/#contactsmanager-create-a-contactaddress-from-user-provided-input +1 +1 +ContactsManager +- +create a contactaddress from user-provided input +dfn +contact-picker +contact-picker +1 +snapshot +https://www.w3.org/TR/contact-picker/#contactsmanager-create-a-contactaddress-from-user-provided-input +1 +1 +ContactsManager +- +create a context +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#create-a-context + +1 +- +create a context +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#create-a-context + 1 - create a cookie @@ -1585,13 +2058,23 @@ https://html.spec.whatwg.org/multipage/infrastructure.html#create-a-date-object 1 - -create a document fragment +create a dependent abort signal +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#create-a-dependent-abort-signal +1 +1 +- +create a dependent task signal dfn -sanitizer-api -sanitizer-api +scheduling-apis +scheduling-apis 1 current -https://wicg.github.io/sanitizer-api/#create-a-document-fragment +https://wicg.github.io/scheduling-apis/#create-a-dependent-task-signal 1 - @@ -1793,6 +2276,36 @@ geometry snapshot https://www.w3.org/TR/geometry-1/#create-a-domrectreadonly-from-the-dictionary +1 +- +create a fixed length memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +current +https://webassembly.github.io/spec/js-api/#create-a-fixed-length-memory-buffer + +1 +- +create a fixed length memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#create-a-fixed-length-memory-buffer + +1 +- +create a fixed priority unabortable task signal +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#create-a-fixed-priority-unabortable-task-signal + 1 - create a fresh top-level traversable @@ -2163,46 +2676,6 @@ cssom snapshot https://www.w3.org/TR/cssom-1/#create-a-medialist-object 1 -1 -- -create a mediastreamtrack -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#dfn-create-a-mediastreamtrack -1 -1 -- -create a mediastreamtrack -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#dfn-create-a-mediastreamtrack -1 -1 -- -create a memory buffer -dfn -wasm-js-api-2 -wasm-js-api -2 -current -https://webassembly.github.io/spec/js-api/#create-a-memory-buffer - -1 -- -create a memory buffer -dfn -wasm-js-api-2 -wasm-js-api -2 -snapshot -https://www.w3.org/TR/wasm-js-api-2/#create-a-memory-buffer - 1 - create a memory object @@ -2413,6 +2886,16 @@ performance-measure-memory current https://wicg.github.io/performance-measure-memory/#creating-a-new-memory-measurement +1 +- +create a new nested traversable +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#create-a-new-nested-traversable + 1 - create a new realm @@ -2423,6 +2906,36 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#creating-a-new-javascript-realm 1 +1 +- +create a new script fetcher +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#create-a-new-script-fetcher + +1 +- +create a new script runner agent +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#create-a-new-script-runner-agent + +1 +- +create a new script runner realm +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#create-a-new-script-runner-realm + 1 - create a new signed exchange report @@ -2435,34 +2948,84 @@ https://wicg.github.io/webpackage/loading.html#create-a-new-signed-exchange-repo 1 - -create a new top-level browsing context and document +create a new top-level browsing context and document +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/document-sequences.html#creating-a-new-top-level-browsing-context + +1 +- +create a new top-level traversable +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/document-sequences.html#creating-a-new-top-level-traversable + +1 +- +create a non-cancelable mouseevent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#create-a-non-cancelable-mouseevent + +1 +- +create a non-cancelable mouseevent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#create-a-non-cancelable-mouseevent + +1 +- +create a notification +dfn +notifications +notifications +1 +current +https://notifications.spec.whatwg.org/#create-a-notification +1 +1 +- +create a notification with a settings object dfn -html -html +notifications +notifications 1 current -https://html.spec.whatwg.org/multipage/document-sequences.html#creating-a-new-top-level-browsing-context +https://notifications.spec.whatwg.org/#create-a-notification-with-a-settings-object 1 - -create a new top-level traversable +create a notrestoredreasondetails object dfn html html 1 current -https://html.spec.whatwg.org/multipage/document-sequences.html#creating-a-new-top-level-traversable +https://html.spec.whatwg.org/multipage/nav-history-apis.html#create-a-notrestoredreasondetails-object 1 - -create a notification +create a notrestoredreasons object dfn -notifications -notifications +html +html 1 current -https://notifications.spec.whatwg.org/#create-a-notification - +https://html.spec.whatwg.org/multipage/nav-history-apis.html#create-a-notrestoredreasons-object +1 1 - create a null input source @@ -2543,6 +3106,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-create-a-pointer-input-source +1 +- +create a pointerevent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#create-a-pointerevent + +1 +- +create a pointerevent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#create-a-pointerevent + 1 - create a potential-cors request @@ -2594,6 +3177,26 @@ push-api snapshot https://www.w3.org/TR/push-api/#dfn-create-a-push-subscription +1 +- +create a quaternion from euler angles +dfn +orientation-sensor +orientation-sensor +1 +current +https://w3c.github.io/orientation-sensor/#create-a-quaternion-from-euler-angles + +1 +- +create a quaternion from euler angles +dfn +orientation-sensor +orientation-sensor +1 +snapshot +https://www.w3.org/TR/orientation-sensor/#create-a-quaternion-from-euler-angles + 1 - create a receiving browsing context @@ -2634,6 +3237,16 @@ webxr snapshot https://www.w3.org/TR/webxr/#create-a-reference-space +1 +- +create a report request +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#create-a-report-request + 1 - create a report request @@ -2656,23 +3269,43 @@ https://wicg.github.io/nav-speculation/prefetch.html#create-a-reserved-client 1 1 - -create a sandbox realm +create a resizable memory buffer dfn -webdriver-bidi -webdriver-bidi -1 +wasm-js-api-2 +wasm-js-api +2 current -https://w3c.github.io/webdriver-bidi/#create-a-sandbox-realm +https://webassembly.github.io/spec/js-api/#create-a-resizable-memory-buffer + +1 +- +create a resizable memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#create-a-resizable-memory-buffer 1 - -create a sanitizer +create a restrictiontarget dfn -sanitizer-api -sanitizer-api +element-capture +element-capture 1 current -https://wicg.github.io/sanitizer-api/#create-a-sanitizer +https://screen-share.github.io/element-capture/#dfn-create-a-restrictiontarget +1 +1 +- +create a sandbox realm +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#create-a-sandbox-realm 1 - @@ -2684,6 +3317,26 @@ scheduling-apis current https://wicg.github.io/scheduling-apis/#create-a-scheduler-task-queue +1 +- +create a session +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-create-a-session + +1 +- +create a session +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-create-a-session + 1 - create a set iterator @@ -2694,6 +3347,36 @@ webidl current https://webidl.spec.whatwg.org/#create-a-set-iterator +1 +- +create a shared storage bucket +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#create-a-shared-storage-bucket + +1 +- +create a shared storage shelf +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#create-a-shared-storage-shelf + +1 +- +create a soft navigation entry +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#create-a-soft-navigation-entry + 1 - create a sorted name list @@ -2773,7 +3456,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#create-a-sum-value - +1 1 - create a table object @@ -2794,6 +3477,26 @@ wasm-js-api snapshot https://www.w3.org/TR/wasm-js-api-2/#create-a-table-object +1 +- +create a task handle +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#create-a-task-handle + +1 +- +create a task scope +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#create-a-task-scope + 1 - create a type @@ -2813,9 +3516,10 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#create-a-type - +https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-create-a-type +1 1 +CSSNumericValue - create a type from a unit map dfn @@ -2834,7 +3538,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#create-a-type-from-a-unit-map - +1 1 - create a unified platform version string @@ -2925,6 +3629,96 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#create-aggregatable-contributions +1 +- +create aggregatable contributions from aggregation keys and aggregatable values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#create-aggregatable-contributions-from-aggregation-keys-and-aggregatable-values + +1 +- +create an RTCDTMFSender +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcdtmfsender +1 +1 +- +create an RTCDataChannel +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcdatachannel +1 +1 +- +create an RTCIceCandidate +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-creating-an-rtcicecandidate +1 +1 +- +create an RTCIceCandidatePair +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-creating-an-rtcicecandidatepair +1 +1 +- +create an RTCRtpReceiver +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcrtpreceiver +1 +1 +- +create an RTCRtpSender +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcrtpsender +1 +1 +- +create an RTCRtpTransceiver +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcrtptransceiver +1 +1 +- +create an RTCSctpTransport +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcsctptransport +1 1 - create an agent @@ -2958,13 +3752,13 @@ https://immersive-web.github.io/anchors/#create-an-anchor-from-hit-test-result 1 - create an answer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-creating-an-answer - +1 1 - create an answer @@ -3174,28 +3968,78 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#create-an-internal-representation -1 +https://drafts.css-houdini.org/css-typed-om-1/#create-an-internal-representation +1 +1 +- +create an internal representation +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#create-an-internal-representation +1 +1 +- +create an intrinsic sizes object +dfn +css-layout-api-1 +css-layout-api +1 +snapshot +https://www.w3.org/TR/css-layout-api-1/#create-an-intrinsic-sizes-object + +1 +- +create an mloperand +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#create-an-mloperand + +1 +- +create an mloperand +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#create-an-mloperand + +1 +- +create an mloperanddescriptor +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#create-an-mloperanddescriptor + 1 - -create an intrinsic sizes object +create an mloperanddescriptor dfn -css-layout-api-1 -css-layout-api +webnn +webnn 1 snapshot -https://www.w3.org/TR/css-layout-api-1/#create-an-intrinsic-sizes-object +https://www.w3.org/TR/webnn/#create-an-mloperanddescriptor 1 - create an offer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-creating-an-offer - +1 1 - create an offer @@ -3245,29 +4089,9 @@ dfn webrtc webrtc 1 -current -https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcdatachannel - -1 -- -create an rtcdatachannel -dfn -webrtc -webrtc -1 snapshot https://www.w3.org/TR/webrtc/#dfn-create-an-rtcdatachannel -1 -- -create an rtcdtmfsender -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcdtmfsender - 1 - create an rtcdtmfsender @@ -3278,16 +4102,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-create-an-rtcdtmfsender -1 -- -create an rtcicecandidate -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-creating-an-rtcicecandidate - 1 - create an rtcicecandidate @@ -3298,16 +4112,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-creating-an-rtcicecandidate -1 -- -create an rtcrtpreceiver -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcrtpreceiver - 1 - create an rtcrtpreceiver @@ -3318,16 +4122,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-create-an-rtcrtpreceiver -1 -- -create an rtcrtpsender -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcrtpsender - 1 - create an rtcrtpsender @@ -3338,16 +4132,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-create-an-rtcrtpsender -1 -- -create an rtcrtptransceiver -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcrtptransceiver - 1 - create an rtcrtptransceiver @@ -3358,16 +4142,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-create-an-rtcrtptransceiver -1 -- -create an rtcsctptransport -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcsctptransport - 1 - create an rtcsctptransport @@ -3378,16 +4152,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-create-an-rtcsctptransport -1 -- -create an underlying value -dfn -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#create-an-underlying-value -1 1 - create and initialize a document object @@ -3460,23 +4224,13 @@ https://www.w3.org/TR/service-workers/#create-client 1 - -create context +create fetch event and dispatch dfn -webnn -webnn +service-workers +service-workers 1 current -https://webmachinelearning.github.io/webnn/#create-context - -1 -- -create context -dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#create-context +https://w3c.github.io/ServiceWorker/#create-fetch-event-and-dispatch 1 - @@ -3510,23 +4264,13 @@ https://html.spec.whatwg.org/multipage/semantics.html#create-link-options-from-e 1 - -create mock sensor +create mesh object dfn -generic-sensor -generic-sensor +real-world-meshing +real-world-meshing 1 current -https://w3c.github.io/sensors/#create-mock-sensor - -1 -- -create mock sensor -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#create-mock-sensor +https://immersive-web.github.io/real-world-meshing/#create-mesh-object 1 - @@ -3588,6 +4332,16 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-create-ndef-record +1 +- +create nested configs +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#create-nested-configs + 1 - create new anchor object @@ -3608,6 +4362,58 @@ client-hints-infrastructure current https://wicg.github.io/client-hints-infrastructure/#abstract-opdef-create-or-override-the-cached-client-hints-set 1 +1 +- +create permissions policy +dfn +credential-management-1 +credential-management +1 +current +https://w3c.github.io/webappsec-credential-management/#credential-type-registry-create-permissions-policy + +1 +credential type registry +- +create permissions policy +dfn +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#credential-type-registry-create-permissions-policy + +1 +credential type registry +- +create plane object +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#create-plane-object + +1 +- +create pointerevent from mouseevent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#create-pointerevent-from-mouseevent + +1 +- +create pointerevent from mouseevent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#create-pointerevent-from-mouseevent + 1 - create record objects @@ -3618,6 +4424,38 @@ background-fetch current https://wicg.github.io/background-fetch/#create-record-objects +1 +- +create reduction operation +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-create-reduction-operation + +1 +MLGraphBuilder +- +create reduction operation +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-create-reduction-operation + +1 +MLGraphBuilder +- +create script entry point +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#create-script-entry-point + 1 - create the attribution @@ -3909,6 +4747,17 @@ https://dom.spec.whatwg.org/#dom-document-createattributens 1 Document - +createAuctionNonce() +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-createauctionnonce +1 +1 +Navigator +- createBidirectionalStream() method webtransport @@ -4208,17 +5057,6 @@ GPUDevice - createCommandEncoder() method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcontext-createcommandencoder -1 -1 -MLContext -- -createCommandEncoder() -method webgpu webgpu 1 @@ -4228,17 +5066,6 @@ https://www.w3.org/TR/webgpu/#dom-gpudevice-createcommandencoder 1 GPUDevice - -createCommandEncoder() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcontext-createcommandencoder -1 -1 -MLContext -- createCommandEncoder(descriptor) method webgpu @@ -4393,112 +5220,35 @@ https://www.w3.org/TR/webnn/#dom-ml-createcontext-gpudevice 1 ML - -createContext(options) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontext -1 -1 -ML -- -createContext(options) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontext -1 -1 -ML -- -createContextSync() -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontextsync -1 -1 -ML -- -createContextSync() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontextsync -1 -1 -ML -- -createContextSync(gpuDevice) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontextsync-gpudevice -1 -1 -ML -- -createContextSync(gpuDevice) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontextsync-gpudevice -1 -1 -ML -- -createContextSync(options) +createContext(options) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontextsync +https://webmachinelearning.github.io/webnn/#dom-ml-createcontext 1 1 ML - -createContextSync(options) +createContext(options) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontextsync +https://www.w3.org/TR/webnn/#dom-ml-createcontext 1 1 ML - -createContextualFragment() -method -dom-parsing -dom-parsing -1 -current -https://w3c.github.io/DOM-Parsing/#dom-range-createcontextualfragment -1 -1 -Range -- -createContextualFragment(fragment) +createContextualFragment(string) method -dom-parsing -dom-parsing +html +html 1 current -https://w3c.github.io/DOM-Parsing/#dom-range-createcontextualfragment +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-range-createcontextualfragment 1 1 Range @@ -4767,28 +5517,6 @@ https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay 1 BaseAudioContext - -createDelayed(items) -method -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-createdelayed -1 -1 -ClipboardItem -- -createDelayed(items, options) -method -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-createdelayed -1 -1 -ClipboardItem -- createDocument(namespace, qualifiedName) method dom @@ -5141,6 +5869,17 @@ https://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument 1 DOMImplementation - +createHandwritingRecognizer(constraint) +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-navigator-createhandwritingrecognizer +1 +1 +Navigator +- createIIRFilter(feedforward, feedback) method webaudio @@ -5275,15 +6014,26 @@ AudioContext - createMediaKeys() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemaccess-createmediakeys 1 1 MediaKeySystemAccess - +createMediaKeys() +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemaccess-createmediakeys +1 +1 +MediaKeySystemAccess +- createMediaStreamDestination() method webaudio @@ -5438,6 +6188,28 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbdatabase-createobjectstore 1 IDBDatabase - +createObjectURL +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-createobjecturl +1 +1 +StorageAccessTypes +- +createObjectURL(obj) +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-createobjecturl +1 +1 +StorageAccessHandle +- createObjectURL(obj) method fileapi @@ -6461,28 +7233,72 @@ https://www.w3.org/TR/trusted-types/#dom-trustedtypepolicy-createscripturl 1 TrustedTypePolicy - +createSendGroup() +method +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-createsendgroup +1 +1 +WebTransport +- +createSendGroup() +method +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-createsendgroup +1 +1 +WebTransport +- createSession() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeys-createsession 1 1 MediaKeys - -createSession(, sessionType) +createSession() method +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys-createsession 1 +1 +MediaKeys +- +createSession(sessionType) +method +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeys-createsession 1 1 MediaKeys - +createSession(sessionType) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys-createsession +1 +1 +MediaKeys +- createShaderModule(descriptor) method webgpu @@ -6747,6 +7563,28 @@ https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createwaveshaper 1 BaseAudioContext - +createWorklet(moduleURL) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-createworklet +1 +1 +SharedStorage +- +createWorklet(moduleURL, options) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-createworklet +1 +1 +SharedStorage +- createWritable() method fs @@ -6812,7 +7650,7 @@ transaction - created dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -6823,14 +7661,23 @@ PaymentRequest - created dfn -webidl -webidl +vc-data-integrity +vc-data-integrity 1 current -https://webidl.spec.whatwg.org/#dfn-create-exception +https://w3c.github.io/vc-data-integrity/#dfn-created + 1 +- +created +dfn +vc-data-model-2.0 +vc-data-model 1 -exception +current +https://w3c.github.io/vc-data-model/#dfn-created + + - created dfn @@ -6845,14 +7692,34 @@ transaction - created dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-created +https://www.w3.org/TR/payment-request/#dfn-created 1 PaymentRequest +- +created +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-created + +1 +- +created +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-created + + - created on dfn @@ -6864,27 +7731,47 @@ https://w3c.github.io/webauthn/#created-on 1 - -createmediakeys +created on dfn -encrypted-media -encrypted-media -1 +webauthn-3 +webauthn +3 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess-createmediakeys +https://www.w3.org/TR/webauthn-3/#created-on 1 -mediakeysystemaccess - -createmediakeys() +created policy names dfn -encrypted-media -encrypted-media +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#trustedtypepolicyfactory-created-policy-names + +1 +TrustedTypePolicyFactory +- +created policy names +dfn +trusted-types +trusted-types 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess-createmediakeys +https://www.w3.org/TR/trusted-types/#trustedtypepolicyfactory-created-policy-names 1 -mediakeysystemaccess +TrustedTypePolicyFactory +- +createhandwritingrecognizer(constraint) +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#createhandwritingrecognizer-constraint +1 +1 - createoffer dfn @@ -6896,27 +7783,25 @@ https://www.w3.org/TR/webrtc-identity/#dfn-createoffer 1 - -createsession +createproof dfn -encrypted-media -encrypted-media +vc-data-integrity +vc-data-integrity 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeys-createsession +current +https://w3c.github.io/vc-data-integrity/#dfn-createproof 1 -mediakeys - -createsession() +createproof dfn -encrypted-media -encrypted-media +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeys-createsession +https://www.w3.org/TR/vc-data-integrity/#dfn-createproof 1 -mediakeys - creating dfn @@ -6968,6 +7853,17 @@ webtransport webtransport 1 current +https://w3c.github.io/webtransport/#webtransportsendgroup-create +1 +1 +WebTransportSendGroup +- +creating +dfn +webtransport +webtransport +1 +current https://w3c.github.io/webtransport/#webtransportsendstream-create 1 1 @@ -6978,6 +7874,17 @@ dfn webtransport webtransport 1 +current +https://w3c.github.io/webtransport/#webtransportwriter-create +1 +1 +WebTransportWriter +- +creating +dfn +webtransport +webtransport +1 snapshot https://www.w3.org/TR/webtransport/#webtransportdatagramduplexstream-create 1 @@ -7001,11 +7908,53 @@ webtransport webtransport 1 snapshot +https://www.w3.org/TR/webtransport/#webtransportsendgroup-create +1 +1 +WebTransportSendGroup +- +creating +dfn +webtransport +webtransport +1 +snapshot https://www.w3.org/TR/webtransport/#webtransportsendstream-create 1 1 WebTransportSendStream - +creating +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#webtransportwriter-create +1 +1 +WebTransportWriter +- +creating a child filesystemdirectoryhandle +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#creating-a-child-filesystemdirectoryhandle + +1 +- +creating a child filesystemfilehandle +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#creating-a-child-filesystemfilehandle + +1 +- creating a cookie dfn webdriver2 @@ -7027,23 +7976,23 @@ https://www.w3.org/TR/webdriver2/#dfn-creating-a-cookie 1 - creating a device info object -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#creating-a-device-info-object - +1 1 - creating a device info object -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#creating-a-device-info-object - +1 1 - creating a frozen array @@ -7087,23 +8036,23 @@ https://wicg.github.io/webhid/#dfn-creating-a-hid-report-item 1 - creating a list of device info objects -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#creating-a-list-of-device-info-objects - +1 1 - creating a list of device info objects -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#creating-a-list-of-device-info-objects - +1 1 - creating a new browsing context @@ -7124,6 +8073,26 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-creating-a-new-browsing-context +1 +- +creating a new filesystemdirectoryhandle +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#creating-a-new-filesystemdirectoryhandle +1 +1 +- +creating a new filesystemfilehandle +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#creating-a-new-filesystemfilehandle +1 1 - creating a new memory attribution @@ -7174,16 +8143,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-new-sessions -1 -- -creating a notification -dfn -notifications -notifications -1 -current -https://notifications.spec.whatwg.org/#create-a-notification - 1 - creating a policy container from a fetch response @@ -7207,16 +8166,6 @@ https://streams.spec.whatwg.org/#readablestream-create-a-proxy 1 ReadableStream - -creating a scheduler task queue -dfn -scheduling-apis -scheduling-apis -1 -current -https://wicg.github.io/scheduling-apis/#create-a-scheduler-task-queue - -1 -- creating a sequence from an iterable dfn webidl @@ -7244,7 +8193,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#create-a-sum-value - +1 1 - creating a type @@ -7264,18 +8213,39 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#create-a-type - +https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-create-a-type +1 +1 +CSSNumericValue +- +creating an RTCIceCandidate +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-creating-an-rtcicecandidate +1 +1 +- +creating an RTCIceCandidatePair +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-creating-an-rtcicecandidatepair +1 1 - creating an answer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-creating-an-answer - +1 1 - creating an answer @@ -7329,13 +8299,13 @@ https://webidl.spec.whatwg.org/#creating-an-observable-array-exotic-object 1 - creating an offer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-creating-an-offer - +1 1 - creating an offer @@ -7366,16 +8336,6 @@ webidl current https://webidl.spec.whatwg.org/#dfn-create-operation-function -1 -- -creating an rtcicecandidate -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-creating-an-rtcicecandidate - 1 - creating an rtcicecandidate @@ -7398,63 +8358,34 @@ https://wicg.github.io/background-fetch/#create-record-objects 1 - -creating-a-device-info-object +creation dfn -mediacapture-streams -mediacapture-streams +network-error-logging +network-error-logging 1 current -https://w3c.github.io/mediacapture-main/#creating-a-device-info-object - -1 -- -creating-a-device-info-object -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#creating-a-device-info-object +https://w3c.github.io/network-error-logging/#dfn-creation 1 - -creating-a-list-of-device-info-objects -dfn -mediacapture-streams -mediacapture-streams +creation +attribute +network-reporting +network-reporting 1 current -https://w3c.github.io/mediacapture-main/#creating-a-list-of-device-info-objects - -1 -- -creating-a-list-of-device-info-objects -dfn -mediacapture-streams -mediacapture-streams +https://w3c.github.io/reporting/network-reporting.html#dom-endpoint-group-creation 1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#creating-a-list-of-device-info-objects - 1 +endpoint group - creation dfn -network-error-logging-1 network-error-logging -1 -current -https://w3c.github.io/network-error-logging/#dfn-creation - -1 -- -creation -dfn -network-error-logging-1 network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-creation +https://www.w3.org/TR/network-error-logging/#dfn-creation 1 - @@ -7524,6 +8455,36 @@ CSS counter - creator dfn +audiobooks +audiobooks +1 +current +https://w3c.github.io/audiobooks/#dfn-creator + +1 +- +creator +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-creator + +1 +- +creator +dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-creator + +1 +- +creator +dfn css-lists-3 css-lists 3 @@ -7533,13 +8494,13 @@ https://www.w3.org/TR/css-lists-3/#css-counter-creator 1 CSS counter - -creator base url +creator dfn -html -html +pub-manifest +pub-manifest 1 -current -https://html.spec.whatwg.org/multipage/document-sequences.html#creator-base-url +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-creator 1 - @@ -7606,6 +8567,16 @@ fido current https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#credblob-value +1 +- +credential +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-credential +1 1 - credential @@ -7673,6 +8644,16 @@ https://www.w3.org/TR/credential-management-1/#dom-credentialscontainer-store-cr CredentialsContainer/store(credential) - credential +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-credential +1 +1 +- +credential argument webauthn-3 webauthn @@ -7722,6 +8703,16 @@ webauthn current https://w3c.github.io/webauthn/#credential-descriptor-for-a-credential-record +1 +- +credential descriptor for a credential record +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#credential-descriptor-for-a-credential-record + 1 - credential id @@ -7852,6 +8843,56 @@ webauthn current https://w3c.github.io/webauthn/#credential-record +1 +- +credential record +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#credential-record + +1 +- +credential repositories +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-credential-repositories +1 +1 +- +credential repositories +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-credential-repositories +1 +1 +- +credential repository +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-credential-repositories +1 +1 +- +credential repository +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-credential-repositories +1 1 - credential source @@ -7967,7 +9008,68 @@ snapshot https://www.w3.org/TR/credential-management-1/#credential-credential-type 1 -Credential +credential +- +credential type +dfn +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#credential-type-registry-credential-type + +1 +credential type registry +- +credential type examples +dfn +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-credential-type-examples + +1 +- +credential verifier's +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifier +1 +1 +- +credential verifier's +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifier +1 +1 +- +credential verifiers +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifier +1 +1 +- +credential verifiers +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifier +1 +1 - credentialIds dict-member @@ -8002,17 +9104,6 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 AuthenticationExtensionsClientInputs - -credentialType -dict-member -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dom-rtciceserver-credentialtype -1 -1 -RTCIceServer -- credentialed-prerender dfn prerendering-revamped @@ -8051,9 +9142,10 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#credentialid +https://www.w3.org/TR/webauthn-3/#authdata-attestedcredentialdata-credentialid 1 +authData/attestedCredentialData - credentialidlength dfn @@ -8072,9 +9164,10 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#credentialidlength +https://www.w3.org/TR/webauthn-3/#authdata-attestedcredentialdata-credentialidlength 1 +authData/attestedCredentialData - credentialidresult dfn @@ -8100,14 +9193,46 @@ assertionCreationData - credentialless dfn -html -html +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsers.html#coep-credentialless +1 +1 +embedder policy value +- +credentialless +attribute +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#dom-htmliframeelement-credentialless +1 +1 +HTMLIFrameElement +- +credentialless +attribute +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#dom-window-credentialless +1 +1 +Window +- +credentialless window +dfn +anonymous-iframe +anonymous-iframe 1 current -https://html.spec.whatwg.org/multipage/browsers.html#coep-credentialless +https://wicg.github.io/anonymous-iframe/#credentialless-window 1 1 -embedder policy value - credentialmgmtpreview dfn @@ -8137,9 +9262,10 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#credentialpublickey +https://www.w3.org/TR/webauthn-3/#authdata-attestedcredentialdata-credentialpublickey 1 +authData/attestedCredentialData - credentials dfn @@ -8218,6 +9344,16 @@ https://html.spec.whatwg.org/multipage/worklets.html#dom-workletoptions-credenti WorkletOptions - credentials +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-credential +1 +1 +- +credentials attribute credential-management-1 credential-management @@ -8239,6 +9375,16 @@ https://www.w3.org/TR/credential-management-1/#dom-navigator-credentials 1 Navigator - +credentials +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-credential +1 +1 +- credentials map dfn webauthn-3 @@ -8290,6 +9436,26 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#concept-script-fetch-options-credentials +1 +- +credentialsubject +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#defn-credentialSubject +1 +1 +- +credentialsubject +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#defn-credentialSubject +1 1 - credmgmt @@ -8353,6 +9519,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-crimson 1 1 <color> +<named-color> - crimson dfn @@ -8374,6 +9541,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-crimson 1 1 <color> +<named-color> - crisp-edges value @@ -8421,13 +9589,23 @@ PressureState - critical chunk dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-critical-chunk +https://w3c.github.io/png/#3criticalChunk + + +- +critical chunk +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3criticalChunk + -1 - critical section dfn @@ -8435,7 +9613,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-objects +https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-records 1 1 ECMAScript @@ -8446,7 +9624,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-objects +https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-records 1 1 ECMAScript @@ -8461,6 +9639,58 @@ https://html.spec.whatwg.org/multipage/infrastructure.html#critical-subresources 1 - +critical-ch restart time +dfn +navigation-timing-2 +navigation-timing +2 +current +https://w3c.github.io/navigation-timing/#dfn-critical-ch-restart-time + +1 +- +critical-ch restart time +dfn +client-hints-infrastructure +client-hints-infrastructure +1 +current +https://wicg.github.io/client-hints-infrastructure/#critical-ch-restart-time + +1 +- +critical-ch restart time +dfn +navigation-timing-2 +navigation-timing +2 +snapshot +https://www.w3.org/TR/navigation-timing-2/#dfn-critical-ch-restart-time + +1 +- +criticalCHRestart +attribute +navigation-timing-2 +navigation-timing +2 +current +https://w3c.github.io/navigation-timing/#dom-performancenavigationtiming-criticalchrestart +1 +1 +PerformanceNavigationTiming +- +criticalCHRestart +attribute +navigation-timing-2 +navigation-timing +2 +snapshot +https://www.w3.org/TR/navigation-timing-2/#dom-performancenavigationtiming-criticalchrestart +1 +1 +PerformanceNavigationTiming +- crop value css-page-3 @@ -8741,6 +9971,26 @@ css-flexbox snapshot https://www.w3.org/TR/css-flexbox-1/#cross-dimension 1 +1 +- +cross origin limitations +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-cross-origin-limitations + +1 +- +cross origin limitations +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-cross-origin-limitations + 1 - cross size @@ -9057,6 +10307,28 @@ https://wicg.github.io/nav-speculation/prefetch.html#cross-origin-prefetch-ip-an 1 1 - +cross-origin reporting allowed +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-cross-origin-reporting-allowed +1 +1 +fenced frame config +- +cross-origin reporting allowed +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-cross-origin-reporting-allowed +1 +1 +fenced frame config instance +- cross-origin request dfn referrer-policy @@ -9095,6 +10367,16 @@ longtasks current https://w3c.github.io/longtasks/#cross-origin-ancestor +1 +- +cross-origin-ancestor +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#cross-origin-ancestor + 1 - cross-origin-descendant @@ -9105,6 +10387,16 @@ longtasks current https://w3c.github.io/longtasks/#cross-origin-descendant +1 +- +cross-origin-descendant +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#cross-origin-descendant + 1 - cross-origin-domain target @@ -9219,13 +10511,13 @@ https://w3c.github.io/longtasks/#cross-origin-unreachable 1 - -cross-partition prefetch state +cross-origin-unreachable dfn -prefetch -prefetch +longtasks-1 +longtasks 1 -current -https://wicg.github.io/nav-speculation/prefetch.html#cross-partition-prefetch-state +snapshot +https://www.w3.org/TR/longtasks-1/#cross-origin-unreachable 1 - @@ -9433,6 +10725,39 @@ https://www.w3.org/TR/webauthn-3/#dom-collectedclientdata-crossorigin 1 CollectedClientData - +crossOriginDataVersion +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-crossorigindataversion +1 +1 +BiddingBrowserSignals +- +crossOriginDataVersion +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-crossorigindataversion +1 +1 +ScoringBrowserSignals +- +crossOriginExposed +dict-member +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fenceevent-crossoriginexposed +1 +1 +FenceEvent +- crossOriginIsolated attribute html @@ -9566,14 +10891,15 @@ https://html.spec.whatwg.org/multipage/semantics.html#link-options-crossorigin 1 - crossorigin -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-crossorigin - 1 +1 +model - crossorigin element-attr @@ -9630,13 +10956,35 @@ https://www.w3.org/TR/filter-effects-1/#element-attrdef-feimage-crossorigin 1 feImage - +crossorigin() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-request-url-modifier-crossorigin +1 +1 +<request-url-modifier> +- +crossoriginexposed +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-data-crossoriginexposed + +1 +automatic beacon data +- crossoriginget dfn html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginget-(-o,-p,-receiver-) +https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginget-(-o%2C-p%2C-receiver-) 1 - @@ -9646,7 +10994,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossorigingetownpropertyhelper-(-o,-p-) +https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossorigingetownpropertyhelper-(-o%2C-p-) 1 - @@ -9686,18 +11034,18 @@ html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginset-(-o,-p,-v,-receiver-) +https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginset-(-o%2C-p%2C-v%2C-receiver-) 1 - -crt +crs dfn -png-spec -png-spec +w3c-process +w3c-process 1 current -https://w3c.github.io/PNG-spec/#dfn-crt - +https://www.w3.org/Consortium/Process/#candidate-recommendation-snapshot +1 1 - crush @@ -9739,7 +11087,47 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-Crypto + +1 +- +cryptographic agility +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptographic-agility + +1 +- +cryptographic agility +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptographic-agility + +1 +- +cryptographic layering +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptographic-layering + +1 +- +cryptographic layering +dfn +vc-data-integrity +vc-data-integrity 1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptographic-layering + 1 - cryptographic nonce @@ -9772,6 +11160,26 @@ current https://html.spec.whatwg.org/multipage/semantics.html#link-options-nonce 1 +- +cryptographic suite +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptosuite +1 + +- +cryptographic suite +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptosuite +1 + - cryptokey dfn @@ -9780,7 +11188,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey -1 + 1 - cryptokeypair @@ -9790,6 +11198,86 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKeyPair + +1 +- +cryptosuite +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptosuite +1 + +- +cryptosuite +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptosuite +1 + +- +cryptosuite instance +dfn +vc-data-integrity +vc-data-integrity 1 +current +https://w3c.github.io/vc-data-integrity/#dfn-data-integrity-cryptographic-suite-instance +1 +1 +- +cryptosuite instance +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-data-integrity-cryptographic-suite-instance +1 +1 +- +cryptosuite instantiation algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptosuite-instantiation-algorithm +1 +1 +- +cryptosuite instantiation algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptosuite-instantiation-algorithm +1 +1 +- +cryptosuite verification result +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptosuite-verification-result + +1 +- +cryptosuite verification result +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptosuite-verification-result + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cs.data b/bikeshed/spec-data/readonly/anchors/anchors-cs.data index 41febc0717..f40bf62925 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cs.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cs.data @@ -1,3 +1,93 @@ +<cs> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cs + +1 +- +<cs> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_cs + +1 +- +<csc/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_csc + +1 +- +<csc/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_csc + +1 +- +<csch/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_csch + +1 +- +<csch/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_csch + +1 +- +<css-type> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-css-type +1 +1 +- +<csymbol> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_csymbol + +1 +- +<csymbol> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_csymbol + +1 +- CSPViolationReportBody interface csp3 @@ -48,6 +138,16 @@ https://drafts.csswg.org/css-animations-2/#cssanimation 1 1 - +CSSAnimation +interface +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#cssanimation +1 +1 +- CSSBoxType enum cssom-view-1 @@ -78,6 +178,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#csscolor 1 1 - +CSSColor +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#csscolor +1 +1 +- CSSColor(colorSpace, channels) constructor css-typed-om-1 @@ -89,6 +199,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csscolor-csscolor 1 CSSColor - +CSSColor(colorSpace, channels) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor +1 +1 +CSSColor +- CSSColor(colorSpace, channels, alpha) constructor css-typed-om-1 @@ -100,6 +221,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csscolor-csscolor 1 CSSColor - +CSSColor(colorSpace, channels, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor +1 +1 +CSSColor +- CSSColor(colorSpace, channels, optional alpha) constructor css-typed-om-1 @@ -111,6 +243,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csscolor-csscolor-colorspace- 1 CSSColor - +CSSColor(colorSpace, channels, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolor-csscolor-colorspace-channels-optional-alpha +1 +1 +CSSColor +- CSSColorAngle typedef css-typed-om-1 @@ -121,6 +264,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-csscolorangle 1 1 - +CSSColorAngle +typedef +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#typedefdef-csscolorangle +1 +1 +- CSSColorNumber typedef css-typed-om-1 @@ -131,6 +284,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-csscolornumber 1 1 - +CSSColorNumber +typedef +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#typedefdef-csscolornumber +1 +1 +- CSSColorPercent typedef css-typed-om-1 @@ -141,6 +304,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-csscolorpercent 1 1 - +CSSColorPercent +typedef +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#typedefdef-csscolorpercent +1 +1 +- CSSColorProfileRule interface css-color-5 @@ -151,6 +324,16 @@ https://drafts.csswg.org/css-color-5/#csscolorprofilerule 1 1 - +CSSColorProfileRule +interface +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#csscolorprofilerule +1 +1 +- CSSColorRGBComp typedef css-typed-om-1 @@ -161,6 +344,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-csscolorrgbcomp 1 1 - +CSSColorRGBComp +typedef +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#typedefdef-csscolorrgbcomp +1 +1 +- CSSColorValue interface css-typed-om-1 @@ -171,6 +364,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#csscolorvalue 1 1 - +CSSColorValue +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#csscolorvalue +1 +1 +- CSSConditionRule interface css-conditional-3 @@ -193,11 +396,21 @@ https://www.w3.org/TR/css-conditional-3/#cssconditionrule - CSSContainerRule interface -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#csscontainerrule +https://drafts.csswg.org/css-conditional-5/#csscontainerrule +1 +1 +- +CSSContainerRule +interface +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#csscontainerrule 1 1 - @@ -231,23 +444,13 @@ https://www.w3.org/TR/css-counter-styles-3/#csscounterstylerule 1 1 - -CSSFontFaceLoadEvent +CSSFontFaceDescriptors interface -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-cssfontfaceloadevent -1 -1 -- -CSSFontFaceLoadEventInit -dictionary -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dictdef-cssfontfaceloadeventinit +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#cssfontfacedescriptors 1 1 - @@ -307,7 +510,7 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#cssfontfeaturevaluesrule%E2%91%A0 +https://www.w3.org/TR/css-fonts-4/#cssfontfeaturevaluesrule 1 1 - @@ -331,6 +534,16 @@ https://www.w3.org/TR/css-fonts-4/#cssfontpalettevaluesrule 1 1 - +CSSFunctionRule +interface +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#cssfunctionrule +1 +1 +- CSSGroupingRule interface cssom-1 @@ -361,6 +574,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#csshsl 1 1 - +CSSHSL +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#csshsl +1 +1 +- CSSHSL(h, s, l) constructor css-typed-om-1 @@ -372,6 +595,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshsl-csshsl 1 CSSHSL - +CSSHSL(h, s, l) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl +1 +1 +CSSHSL +- CSSHSL(h, s, l, alpha) constructor css-typed-om-1 @@ -383,6 +617,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshsl-csshsl 1 CSSHSL - +CSSHSL(h, s, l, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl +1 +1 +CSSHSL +- CSSHSL(h, s, l, optional alpha) constructor css-typed-om-1 @@ -394,6 +639,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshsl-csshsl-h-s-l-optional- 1 CSSHSL - +CSSHSL(h, s, l, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl-h-s-l-optional-alpha +1 +1 +CSSHSL +- CSSHWB interface css-typed-om-1 @@ -404,6 +660,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#csshwb 1 1 - +CSSHWB +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#csshwb +1 +1 +- CSSHWB(h, w, b) constructor css-typed-om-1 @@ -415,13 +681,46 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb 1 CSSHWB - -CSSHWB(h, w, b, alpha) +CSSHWB(h, w, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb +1 +1 +CSSHWB +- +CSSHWB(h, w, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb +1 +1 +CSSHWB +- +CSSHWB(h, w, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb +1 +1 +CSSHWB +- +CSSHWB(h, w, b, optional alpha) constructor css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb +https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-optional-alpha 1 1 CSSHWB @@ -431,8 +730,8 @@ constructor css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-optional-alpha +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-optional-alpha 1 1 CSSHWB @@ -569,6 +868,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-csskeywordish 1 1 - +CSSKeywordish +typedef +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#typedefdef-csskeywordish +1 +1 +- CSSLCH interface css-typed-om-1 @@ -579,6 +888,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#csslch 1 1 - +CSSLCH +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#csslch +1 +1 +- CSSLCH(l, c, h) constructor css-typed-om-1 @@ -590,6 +909,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csslch-csslch 1 CSSLCH - +CSSLCH(l, c, h) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch +1 +1 +CSSLCH +- CSSLCH(l, c, h, alpha) constructor css-typed-om-1 @@ -601,6 +931,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csslch-csslch 1 CSSLCH - +CSSLCH(l, c, h, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch +1 +1 +CSSLCH +- CSSLCH(l, c, h, optional alpha) constructor css-typed-om-1 @@ -612,6 +953,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csslch-csslch-l-c-h-optional- 1 CSSLCH - +CSSLCH(l, c, h, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch-l-c-h-optional-alpha +1 +1 +CSSLCH +- CSSLab interface css-typed-om-1 @@ -622,6 +974,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#csslab 1 1 - +CSSLab +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#csslab +1 +1 +- CSSLab(l, a, b) constructor css-typed-om-1 @@ -633,6 +995,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csslab-csslab 1 CSSLab - +CSSLab(l, a, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab +1 +1 +CSSLab +- CSSLab(l, a, b, alpha) constructor css-typed-om-1 @@ -644,6 +1017,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csslab-csslab 1 CSSLab - +CSSLab(l, a, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab +1 +1 +CSSLab +- CSSLab(l, a, b, optional alpha) constructor css-typed-om-1 @@ -655,6 +1039,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csslab-csslab-l-a-b-optional- 1 CSSLab - +CSSLab(l, a, b, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab-l-a-b-optional-alpha +1 +1 +CSSLab +- CSSLayerBlockRule interface css-cascade-5 @@ -725,6 +1120,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssmathclamp 1 1 - +CSSMathClamp +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssmathclamp +1 +1 +- CSSMathClamp(lower, value, upper) constructor css-typed-om-1 @@ -736,6 +1141,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathclamp-cssmathclamp 1 CSSMathClamp - +CSSMathClamp(lower, value, upper) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-cssmathclamp +1 +1 +CSSMathClamp +- CSSMathInvert interface css-typed-om-1 @@ -809,6 +1225,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathmax-cssmathmax 1 CSSMathMax - +CSSMathMax() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmax-cssmathmax +1 +1 +CSSMathMax +- CSSMathMax(...args) constructor css-typed-om-1 @@ -862,6 +1289,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathmin-cssmathmin 1 CSSMathMin - +CSSMathMin() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathmin-cssmathmin +1 +1 +CSSMathMin +- CSSMathMin(...args) constructor css-typed-om-1 @@ -977,6 +1415,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathproduct-cssmathproduct 1 CSSMathProduct - +CSSMathProduct() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathproduct-cssmathproduct +1 +1 +CSSMathProduct +- CSSMathProduct(...args) constructor css-typed-om-1 @@ -1030,6 +1479,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathsum-cssmathsum 1 CSSMathSum - +CSSMathSum() +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathsum-cssmathsum +1 +1 +CSSMathSum +- CSSMathSum(...args) constructor css-typed-om-1 @@ -1103,6 +1563,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixc 1 CSSMatrixComponent - +CSSMatrixComponent(matrix) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixcomponent +1 +1 +CSSMatrixComponent +- CSSMatrixComponent(matrix, options) constructor css-typed-om-1 @@ -1185,6 +1656,16 @@ https://www.w3.org/TR/cssom-1/#cssnamespacerule 1 1 - +CSSNestedDeclarations +interface +css-nesting-1 +css-nesting +1 +current +https://drafts.csswg.org/css-nesting-1/#cssnesteddeclarations +1 +1 +- CSSNumberish typedef css-typed-om-1 @@ -1295,67 +1776,153 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssoklch 1 1 - +CSSOKLCH +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssoklch +1 +1 +- +CSSOKLCH(l, c, h) +constructor +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch +1 +1 +CSSOKLCH +- CSSOKLCH(l, c, h) constructor css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch +1 +1 +CSSOKLCH +- +CSSOKLCH(l, c, h, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch +1 +1 +CSSOKLCH +- +CSSOKLCH(l, c, h, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch +1 +1 +CSSOKLCH +- +CSSOKLCH(l, c, h, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-optional-alpha +1 +1 +CSSOKLCH +- +CSSOKLCH(l, c, h, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-optional-alpha +1 +1 +CSSOKLCH +- +CSSOKLab +interface +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#cssoklab +1 +1 +- +CSSOKLab +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssoklab 1 1 -CSSOKLCH - -CSSOKLCH(l, c, h, alpha) +CSSOKLab(l, a, b) constructor css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab 1 1 -CSSOKLCH +CSSOKLab - -CSSOKLCH(l, c, h, optional alpha) +CSSOKLab(l, a, b) constructor css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-optional-alpha +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab 1 1 -CSSOKLCH -- CSSOKLab -interface +- +CSSOKLab(l, a, b, alpha) +constructor css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#cssoklab +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab 1 1 +CSSOKLab - -CSSOKLab(l, a, b) +CSSOKLab(l, a, b, alpha) constructor css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab 1 1 CSSOKLab - -CSSOKLab(l, a, b, alpha) +CSSOKLab(l, a, b, optional alpha) constructor css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab +https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-optional-alpha 1 1 CSSOKLab @@ -1365,8 +1932,8 @@ constructor css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-optional-alpha +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-optional-alpha 1 1 CSSOKLab @@ -1391,6 +1958,16 @@ https://www.w3.org/TR/cssom-1/#cssomstring 1 1 - +CSSPageDescriptors +interface +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#csspagedescriptors +1 +1 +- CSSPageRule interface cssom-1 @@ -1631,26 +2208,45 @@ https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-cssperspectivevalue 1 1 - -CSSPositionValue -interface +CSSPerspectiveValue +typedef css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#csspositionvalue +https://www.w3.org/TR/css-typed-om-1/#typedefdef-cssperspectivevalue 1 1 - -CSSPositionValue(x, y) -constructor -css-typed-om-1 -css-typed-om +CSSPositionTryDescriptors +interface +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#csspositiontrydescriptors +1 +1 +- +CSSPositionTryRule +interface +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#csspositiontryrule +1 +1 +- +CSSPositionTryRule +interface +css-anchor-position-1 +css-anchor-position 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-csspositionvalue-csspositionvalue +https://www.w3.org/TR/css-anchor-position-1/#csspositiontryrule 1 1 -CSSPositionValue - CSSPropertyRule interface @@ -1702,6 +2298,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssrgb 1 1 - +CSSRGB +interface +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssrgb +1 +1 +- CSSRGB(r, g, b) constructor css-typed-om-1 @@ -1713,6 +2319,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrgb-cssrgb 1 CSSRGB - +CSSRGB(r, g, b) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb +1 +1 +CSSRGB +- CSSRGB(r, g, b, alpha) constructor css-typed-om-1 @@ -1724,6 +2341,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrgb-cssrgb 1 CSSRGB - +CSSRGB(r, g, b, alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb +1 +1 +CSSRGB +- CSSRGB(r, g, b, optional alpha) constructor css-typed-om-1 @@ -1735,6 +2363,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrgb-cssrgb-r-g-b-optional- 1 CSSRGB - +CSSRGB(r, g, b, optional alpha) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb-r-g-b-optional-alpha +1 +1 +CSSRGB +- CSSRotate interface css-typed-om-1 @@ -1870,6 +2509,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssscale-cssscale 1 CSSScale - +CSSScale(x, y) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssscale-cssscale +1 +1 +CSSScale +- CSSScale(x, y, z) constructor css-typed-om-1 @@ -2028,6 +2678,26 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssskewy-cssskewy 1 CSSSkewY - +CSSStartingStyleRule +interface +css-transitions-2 +css-transitions +2 +current +https://drafts.csswg.org/css-transitions-2/#cssstartingstylerule +1 +1 +- +CSSStartingStyleRule +interface +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#cssstartingstylerule +1 +1 +- CSSStringSource typedef css-parser-api @@ -2058,6 +2728,16 @@ https://www.w3.org/TR/cssom-1/#cssstyledeclaration 1 1 - +CSSStyleProperties +interface +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#cssstyleproperties +1 +1 +- CSSStyleRule interface cssom-1 @@ -2284,6 +2964,16 @@ https://drafts.csswg.org/css-transitions-2/#csstransition 1 1 - +CSSTransition +interface +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#csstransition +1 +1 +- CSSTranslate interface css-typed-om-1 @@ -2315,6 +3005,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-csstranslate-csstranslate 1 CSSTranslate - +CSSTranslate(x, y) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csstranslate-csstranslate +1 +1 +CSSTranslate +- CSSTranslate(x, y, z) constructor css-typed-om-1 @@ -2472,6 +3173,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssvariablereferencevalue-css 1 CSSVariableReferenceValue - +CSSVariableReferenceValue(variable) +constructor +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssvariablereferencevalue-cssvariablereferencevalue +1 +1 +CSSVariableReferenceValue +- CSSVariableReferenceValue(variable, fallback) constructor css-typed-om-1 @@ -2494,6 +3206,26 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssvariablereferencevalue-cssvariabler 1 CSSVariableReferenceValue - +CSSViewTransitionRule +interface +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#cssviewtransitionrule +1 +1 +- +CSSViewTransitionRule +interface +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#cssviewtransitionrule +1 +1 +- csp attribute csp-embedded-enforcement @@ -2619,16 +3351,6 @@ html current https://html.spec.whatwg.org/multipage/browsers.html#csp-derived-sandboxing-flags -1 -- -cspnavigationtype -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-navigationtype - 1 - css @@ -2964,6 +3686,26 @@ https://www.w3.org/TR/css-color-4/#css-gamut-mapping-algorithm 1 1 - +css grammar production block +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-grammar-production-block +1 +1 +- +css grammar production block +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-grammar-production-block +1 +1 +- css ident dfn css-values-3 @@ -3464,6 +4206,39 @@ https://www.w3.org/TR/cssom-1/#css-style-sheet-set-name 1 1 - +css value definition syntax +dfn +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#css-value-definition-syntax +1 +1 +CSS +- +css value definition syntax +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-value-definition-syntax +1 +1 +CSS +- +css value definition syntax +dfn +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#css-value-definition-syntax +1 +1 +CSS +- css-connected dfn css-font-loading-3 @@ -3530,10 +4305,10 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-cssfloat +https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-cssfloat 1 1 -CSSStyleDeclaration +CSSStyleProperties - cssFloat attribute @@ -3559,17 +4334,6 @@ CSSKeyframesRule - cssRules attribute -css-nesting-1 -css-nesting -1 -current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-cssrules -1 -1 -CSSStyleRule -- -cssRules -attribute cssom-1 cssom 1 @@ -3706,6 +4470,17 @@ css-typed-om-1 css-typed-om 1 snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolorvalue-parse-csstext-csstext +1 +1 +CSSColorValue/parse(cssText) +- +cssText +argument +css-typed-om-1 +css-typed-om +1 +snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-parse-csstext-csstext 1 1 @@ -3791,7 +4566,7 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#cssfontfeaturevaluesrule +https://www.w3.org/TR/css-fonts-4/#cssfontfeaturevaluesrule-dfn 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cu.data b/bikeshed/spec-data/readonly/anchors/anchors-cu.data index 268d68842b..50748220ab 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cu.data @@ -212,6 +212,26 @@ css-easing snapshot https://www.w3.org/TR/css-easing-1/#typedef-cubic-bezier-easing-function 1 +1 +- +<curl/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_curl + +1 +- +<curl/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_curl + 1 - <curve-command> @@ -245,6 +265,16 @@ https://drafts.csswg.org/css-color-5/#typedef-custom-color-space 1 1 - +<custom-color-space> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-custom-color-space +1 +1 +- <custom-highlight-name> type css-highlight-api-1 @@ -305,6 +335,28 @@ https://www.w3.org/TR/css-values-4/#identifier-value 1 1 - +<custom-ident>+ +value +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-class-custom-ident +1 +1 +view-transition-class +- +<custom-ident>+ +value +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-class-custom-ident +1 +1 +view-transition-class +- <custom-params> type css-color-5 @@ -317,6 +369,16 @@ https://drafts.csswg.org/css-color-5/#typedef-custom-params - <custom-params> type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-custom-params +1 +1 +- +<custom-params> +type css-color-5 css-color 5 @@ -479,11 +541,11 @@ https://dom.spec.whatwg.org/#dictdef-customeventinit - CustomStateSet interface -custom-state-pseudo-class -custom-state-pseudo-class +html +html 1 current -https://wicg.github.io/custom-state-pseudo-class/#customstateset +https://html.spec.whatwg.org/multipage/custom-elements.html#customstateset 1 1 - @@ -505,8 +567,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-currentdirection + 1 -1 +RTCRtpTransceiver - [[CurrentLocalDescription]] attribute @@ -526,8 +589,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-currentlocaldescription + 1 -1 +RTCPeerConnection - [[CurrentPosture]] attribute @@ -569,8 +633,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-currentremotedescription + 1 -1 +RTCPeerConnection - [[current frame]] attribute @@ -734,6 +799,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-cue 1 - cue +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-cue +1 +1 +- +cue +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-cue +1 +1 +- +cue dfn css22 css @@ -884,6 +969,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-cue-after 1 - cue-after +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-cue-after +1 +1 +- +cue-after +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-cue-after +1 +1 +- +cue-after dfn css22 css @@ -914,6 +1019,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-cue-before 1 - cue-before +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-cue-before +1 +1 +- +cue-before +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-cue-before +1 +1 +- +cue-before dfn css22 css @@ -988,13 +1113,13 @@ https://w3c.github.io/longtasks/#culprit-browsing-context-container 1 - -culprit frame +culprit browsing context container dfn longtasks-1 longtasks 1 snapshot -https://www.w3.org/TR/longtasks-1/#culprit-frame +https://www.w3.org/TR/longtasks-1/#culprit-browsing-context-container 1 - @@ -1010,7 +1135,7 @@ https://wicg.github.io/layout-instability/#cumulative-layout-shift-cls-score - currency dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -1020,16 +1145,37 @@ https://w3c.github.io/payment-request/#dom-paymentcurrencyamount-currency PaymentCurrencyAmount - currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-with-currency-currency + +1 +bid with currency +- +currency dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount-currency +https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount-currency 1 1 PaymentCurrencyAmount - +currency tag +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#currency-tag + +1 +- current dfn dom @@ -1079,6 +1225,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#current +1 +- +current +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#current + 1 - current battery status information @@ -1224,25 +1380,23 @@ https://html.spec.whatwg.org/multipage/custom-elements.html#current-element-queu - current entry dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-current-entry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry 1 -Navigation - current entry index dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-current-entry-index +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry-index 1 -Navigation - current error scope abstract-op @@ -1275,26 +1429,6 @@ https://dom.spec.whatwg.org/#window-current-event 1 Window - -current event target -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#current-event-target - -1 -- -current event target -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#current-event-target - -1 -- current filter dfn html @@ -1333,6 +1467,16 @@ html current https://html.spec.whatwg.org/multipage/interaction.html#current-focus-chain-of-a-top-level-traversable +1 +- +current frame timing info +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#current-frame-timing-info + 1 - current frequency data @@ -1413,16 +1557,6 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#current-input-code-point 1 -1 -- -current input token -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#current-input-token - 1 - current input token @@ -1440,18 +1574,18 @@ dfn web-animations-1 web-animations 1 -current -https://drafts.csswg.org/web-animations-1/#current-iteration +snapshot +https://www.w3.org/TR/web-animations-1/#current-iteration 1 - -current iteration +current iteration index dfn web-animations-1 web-animations 1 -snapshot -https://www.w3.org/TR/web-animations-1/#current-iteration +current +https://drafts.csswg.org/web-animations-1/#current-iteration-index 1 - @@ -1713,43 +1847,43 @@ https://www.w3.org/TR/compute-pressure/#dfn-current-pressure-state 1 - -current ready promise -dfn -web-animations-1 -web-animations +current queue timestamp +abstract-op +webgpu +webgpu 1 current -https://drafts.csswg.org/web-animations-1/#current-ready-promise - +https://gpuweb.github.io/gpuweb/#abstract-opdef-current-queue-timestamp +1 1 - -current ready promise -dfn -web-animations-1 -web-animations +current queue timestamp +abstract-op +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/web-animations-1/#current-ready-promise - +https://www.w3.org/TR/webgpu/#abstract-opdef-current-queue-timestamp +1 1 - -current realm +current ready promise dfn -presentation-api -presentation-api +web-animations-1 +web-animations 1 current -https://w3c.github.io/presentation-api/#dfn-current-realm +https://drafts.csswg.org/web-animations-1/#current-ready-promise 1 - -current realm +current ready promise dfn -presentation-api -presentation-api +web-animations-1 +web-animations 1 snapshot -https://www.w3.org/TR/presentation-api/#dfn-current-realm +https://www.w3.org/TR/web-animations-1/#current-ready-promise 1 - @@ -1785,63 +1919,34 @@ https://html.spec.whatwg.org/multipage/images.html#current-request 1 - -current screen +current scheduling state dfn -window-placement -window-placement +scheduling-apis +scheduling-apis 1 current -https://w3c.github.io/window-placement/#current-screen +https://wicg.github.io/scheduling-apis/#event-loop-current-scheduling-state 1 +event loop - current screen dfn -window-placement -window-placement -1 -snapshot -https://www.w3.org/TR/window-placement/#current-screen - -1 -- -current screen orientation -dfn -device-posture -device-posture +window-management +window-management 1 current -https://w3c.github.io/device-posture/#dfn-current-screen-orientation +https://w3c.github.io/window-management/#current-screen 1 - -current screen orientation +current screen dfn -device-posture -device-posture +window-management +window-management 1 snapshot -https://www.w3.org/TR/device-posture/#dfn-current-screen-orientation - -1 -- -current session -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-current-session - -1 -- -current session -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-current-session +https://www.w3.org/TR/window-management/#current-screen 1 - @@ -1926,6 +2031,17 @@ https://html.spec.whatwg.org/multipage/dnd.html#current-target-element 1 - +current task start time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-current-task-start-time + +1 +frame timing info +- current template insertion mode dfn html @@ -2088,6 +2204,16 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#current-transition-generation +1 +- +current transition generation +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#current-transition-generation + 1 - current translate point object @@ -2213,6 +2339,16 @@ current https://w3c.github.io/hr-time/#dfn-current-wall-time 1 1 +- +current wall time +dfn +hr-time-3 +hr-time +3 +current +https://w3c.github.io/hr-time/#dfn-eso-current-wall-time +1 +1 environment settings object - current wall time @@ -2224,6 +2360,16 @@ snapshot https://www.w3.org/TR/hr-time-3/#dfn-current-wall-time 1 1 +- +current wall time +dfn +hr-time-3 +hr-time +3 +snapshot +https://www.w3.org/TR/hr-time-3/#dfn-eso-current-wall-time +1 +1 environment settings object - current-password @@ -2243,6 +2389,28 @@ output/autocomplete select/autocomplete textarea/autocomplete - +currentCSSZoom +attribute +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-element-currentcsszoom +1 +1 +Element +- +currentCount +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstatein-currentcount +1 +1 +SmartCardReaderStateIn +- currentDirection attribute webrtc @@ -2267,11 +2435,11 @@ RTCRtpTransceiver - currentEntry attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-currententry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-currententry 1 1 Navigation @@ -2406,28 +2574,6 @@ snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatepairstats-currentroundtriptime 1 1 -RTCIceCandidatePairStats -- -currentRtt -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-currentrtt -1 - -RTCIceCandidatePairStats -- -currentRtt -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatepairstats-currentrtt -1 - RTCIceCandidatePairStats - currentScale @@ -2454,22 +2600,22 @@ SVGSVGElement - currentScreen attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetails-currentscreen +https://w3c.github.io/window-management/#dom-screendetails-currentscreen 1 1 ScreenDetails - currentScreen attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetails-currentscreen +https://www.w3.org/TR/window-management/#dom-screendetails-currentscreen 1 1 ScreenDetails @@ -2507,6 +2653,17 @@ https://html.spec.whatwg.org/multipage/media.html#dom-media-currentsrc 1 HTMLMediaElement - +currentState +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstatein-currentstate +1 +1 +SmartCardReaderStateIn +- currentTarget attribute dom @@ -2529,6 +2686,17 @@ https://drafts.csswg.org/web-animations-2/#dom-effectcallback-currenttarget 1 EffectCallback - +currentTarget +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effectcallback-currenttarget +1 +1 +EffectCallback +- currentTime attribute web-animations-1 @@ -2696,6 +2864,50 @@ AnimationTimeline - currentTime attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animation-currenttime +1 +1 +Animation +- +currentTime +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-currenttime +1 +1 +AnimationPlaybackEvent +- +currentTime +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackeventinit-currenttime +1 +1 +AnimationPlaybackEventInit +- +currentTime +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationtimeline-currenttime +1 +1 +AnimationTimeline +- +currentTime +attribute webaudio webaudio 1 @@ -2782,11 +2994,11 @@ https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor - currententrychange event -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#eventdef-navigation-currententrychange +https://html.spec.whatwg.org/multipage/indices.html#event-currententrychange 1 1 Navigation @@ -2833,22 +3045,22 @@ https://html.spec.whatwg.org/multipage/webappapis.html#currently-running-task - currentscreenchange event -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#eventdef-screendetails-currentscreenchange +https://w3c.github.io/window-management/#eventdef-screendetails-currentscreenchange 1 1 ScreenDetails - currentscreenchange event -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#eventdef-screendetails-currentscreenchange +https://www.w3.org/TR/window-management/#eventdef-screendetails-currentscreenchange 1 1 ScreenDetails @@ -2897,6 +3109,36 @@ https://drafts.csswg.org/css2/#valdef-generic-family-cursive <generic-family> - cursive +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-cursive +1 + +- +cursive +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#cursive-def +1 +1 +- +cursive +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#cursive-def +1 +1 +- +cursive value css-fonts-4 css-fonts @@ -2907,6 +3149,16 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-family-cursive 1 font-family <generic-family> +- +cursive +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-cursive +1 + - cursive script dfn @@ -3043,6 +3295,26 @@ https://w3c.github.io/mediacapture-screen-share/#dom-mediatracksupportedconstrai MediaTrackSupportedConstraints - cursor +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#propdef-cursor +1 +1 +- +cursor +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#propdef-cursor +1 +1 +- +cursor dfn css22 css @@ -3136,6 +3408,26 @@ https://www.w3.org/TR/screen-capture/#dom-mediatracksupportedconstraints-cursor 1 MediaTrackSupportedConstraints - +cursor position +dfn +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dfn-cursor-position + +1 +- +cursor position +dfn +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dfn-cursor-position + +1 +- curve value css-shapes-2 @@ -3198,7 +3490,7 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#custodian - +1 1 - custom @@ -3316,6 +3608,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#custom-effect +1 +- +custom effect +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#custom-effect + 1 - custom element @@ -3400,6 +3702,16 @@ https://dom.spec.whatwg.org/#concept-element-custom-element-state 1 Element - +custom function +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#custom-function + +1 +- custom highlight dfn css-highlight-api-1 @@ -3527,7 +3839,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#custom-property-name-string - +1 1 - custom property registration @@ -3560,13 +3872,13 @@ https://drafts.csswg.org/css-extensions-1/#custom-selector 1 - -custom state pseudo class -dfn -custom-state-pseudo-class -custom-state-pseudo-class +custom state pseudo-class +selector +html +html 1 current -https://wicg.github.io/custom-state-pseudo-class/#custom-state-pseudo-class +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-custom 1 - @@ -3635,22 +3947,24 @@ https://html.spec.whatwg.org/multipage/custom-elements.html#customized-built-in- 1 - cut -dfn +event clipboard-apis clipboard-apis 1 current -https://w3c.github.io/clipboard-apis/#cut - +https://w3c.github.io/clipboard-apis/#eventdef-globaleventhandlers-cut +1 1 +GlobalEventHandlers - cut -dfn +event clipboard-apis clipboard-apis 1 snapshot -https://www.w3.org/TR/clipboard-apis/#cut - +https://www.w3.org/TR/clipboard-apis/#eventdef-documentandelementeventhandlers-cut +1 1 +DocumentAndElementEventHandlers - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-cy.data b/bikeshed/spec-data/readonly/anchors/anchors-cy.data index 6b662c2b1c..bf043ac433 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-cy.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-cy.data @@ -126,6 +126,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-cyan 1 1 <color> +<named-color> - cyan dfn @@ -147,6 +148,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-cyan 1 1 <color> +<named-color> - cycle dfn @@ -223,6 +225,26 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#c 1 ECMAScript - +cyclic module record +dfn +tc39-import-attributes +tc39-import-attributes +1 +current +https://tc39.es/proposal-import-attributes/#cyclic-module-record +1 +1 +- +cyclic module record +dfn +tc39-source-phase-imports +tc39-source-phase-imports +1 +current +https://tc39.es/proposal-source-phase-imports/#cyclic-module-record +1 +1 +- cyclic module records dfn ecmascript diff --git a/bikeshed/spec-data/readonly/anchors/anchors-d_.data b/bikeshed/spec-data/readonly/anchors/anchors-d_.data index f4ddff0e75..fdfd9b4f74 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-d_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-d_.data @@ -96,13 +96,3 @@ https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-d DOMMatrixReadOnly DOMMatrix - -d -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-d - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-da.data b/bikeshed/spec-data/readonly/anchors/anchors-da.data index 1a5f97114a..6c6ba1e47a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-da.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-da.data @@ -89,6 +89,16 @@ https://www.w3.org/TR/svg-strokes/#DataTypeDasharray 1 1 - +<dashed-function> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-dashed-function +1 +1 +- <dashed-ident> type css-values-4 @@ -109,6 +119,50 @@ https://www.w3.org/TR/css-values-4/#typedef-dashed-ident 1 1 - +<dashed-ident> || <try-tactic> +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-dashed-ident--try-tactic +1 +1 +position-try-fallbacks +- +<dashed-ident> || <try-tactic> +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-dashed-ident--try-tactic +1 +1 +position-try-options +- +<dashed-ident># +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-name-dashed-ident +1 +1 +anchor-name +- +<dashed-ident># +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-name-dashed-ident +1 +1 +anchor-name +- <dashndashdigit-ident> type css-syntax-3 @@ -285,6 +339,47 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date 1 Date - +Date.prototype %Symbol.toPrimitive% (hint) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype-%25symbol.toprimitive%25 +1 +1 +Date.prototype [ %Symbol.toPrimitive% ] ( hint ) +- +DateFromTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-datefromtime +1 +1 +- +DateFromTime(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-datefromtime +1 +1 +- +DateString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-datestring +1 +1 +- DateString(tv) abstract-op ecmascript @@ -295,6 +390,86 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-datestring 1 1 - +Day +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-day +1 +1 +- +Day(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-day +1 +1 +- +DayFromYear +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-dayfromyear +1 +1 +- +DayFromYear(y) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-dayfromyear +1 +1 +- +DayWithinYear +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-daywithinyear +1 +1 +- +DayWithinYear(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-daywithinyear +1 +1 +- +DaysInYear +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-daysinyear +1 +1 +- +DaysInYear(y) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-daysinyear +1 +1 +- [[DataChannelId]] attribute webrtc @@ -313,8 +488,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-datachannelid + 1 -1 +RTCDataChannel - [[DataChannelLabel]] attribute @@ -334,8 +510,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-datachannellabel + 1 -1 +RTCDataChannel - [[DataChannelProtocol]] attribute @@ -355,8 +532,20 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-datachannelprotocol + +1 +RTCDataChannel +- +[[DataChannels]] +attribute +webrtc +webrtc 1 +current +https://w3c.github.io/webrtc-pc/#dfn-datachannels + 1 +RTCPeerConnection - [[Data]] attribute @@ -375,7 +564,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontface-data +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-data-slot 1 1 FontFace @@ -605,6 +794,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkblue 1 1 <color> +<named-color> - darkblue dfn @@ -626,6 +816,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkblue 1 1 <color> +<named-color> - darkcyan dfn @@ -647,6 +838,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkcyan 1 1 <color> +<named-color> - darkcyan dfn @@ -668,6 +860,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkcyan 1 1 <color> +<named-color> - darken value @@ -722,6 +915,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkgoldenrod 1 1 <color> +<named-color> - darkgoldenrod dfn @@ -743,6 +937,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkgoldenrod 1 1 <color> +<named-color> - darkgray dfn @@ -764,6 +959,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkgray 1 1 <color> +<named-color> - darkgray dfn @@ -785,6 +981,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkgray 1 1 <color> +<named-color> - darkgreen dfn @@ -806,6 +1003,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkgreen 1 1 <color> +<named-color> - darkgreen dfn @@ -827,6 +1025,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkgreen 1 1 <color> +<named-color> - darkgrey dfn @@ -848,6 +1047,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkgrey 1 1 <color> +<named-color> - darkgrey dfn @@ -869,6 +1069,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkgrey 1 1 <color> +<named-color> - darkkhaki dfn @@ -890,6 +1091,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkkhaki 1 1 <color> +<named-color> - darkkhaki dfn @@ -911,6 +1113,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkkhaki 1 1 <color> +<named-color> - darkmagenta dfn @@ -932,6 +1135,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkmagenta 1 1 <color> +<named-color> - darkmagenta dfn @@ -953,6 +1157,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkmagenta 1 1 <color> +<named-color> - darkolivegreen dfn @@ -974,6 +1179,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkolivegreen 1 1 <color> +<named-color> - darkolivegreen dfn @@ -995,6 +1201,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkolivegreen 1 1 <color> +<named-color> - darkorange dfn @@ -1016,6 +1223,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkorange 1 1 <color> +<named-color> - darkorange dfn @@ -1037,6 +1245,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkorange 1 1 <color> +<named-color> - darkorchid dfn @@ -1058,6 +1267,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkorchid 1 1 <color> +<named-color> - darkorchid dfn @@ -1079,6 +1289,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkorchid 1 1 <color> +<named-color> - darkred dfn @@ -1100,6 +1311,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkred 1 1 <color> +<named-color> - darkred dfn @@ -1121,6 +1333,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkred 1 1 <color> +<named-color> - darksalmon dfn @@ -1142,6 +1355,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darksalmon 1 1 <color> +<named-color> - darksalmon dfn @@ -1163,6 +1377,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darksalmon 1 1 <color> +<named-color> - darkseagreen dfn @@ -1184,6 +1399,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkseagreen 1 1 <color> +<named-color> - darkseagreen dfn @@ -1205,6 +1421,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkseagreen 1 1 <color> +<named-color> - darkslateblue dfn @@ -1226,6 +1443,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkslateblue 1 1 <color> +<named-color> - darkslateblue dfn @@ -1247,6 +1465,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkslateblue 1 1 <color> +<named-color> - darkslategray dfn @@ -1268,6 +1487,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkslategray 1 1 <color> +<named-color> - darkslategray dfn @@ -1289,6 +1509,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkslategray 1 1 <color> +<named-color> - darkslategrey dfn @@ -1310,6 +1531,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkslategrey 1 1 <color> +<named-color> - darkslategrey dfn @@ -1331,6 +1553,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkslategrey 1 1 <color> +<named-color> - darkturquoise dfn @@ -1352,6 +1575,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkturquoise 1 1 <color> +<named-color> - darkturquoise dfn @@ -1373,6 +1597,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkturquoise 1 1 <color> +<named-color> - darkviolet dfn @@ -1394,6 +1619,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-darkviolet 1 1 <color> +<named-color> - darkviolet dfn @@ -1415,6 +1641,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-darkviolet 1 1 <color> +<named-color> - dash list dfn @@ -1520,6 +1747,37 @@ border-left-style border-style - dashed +enum-value +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-underlinestyle-dashed +1 +1 +UnderlineStyle +- +dashed +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-dashed +1 +1 +- +dashed +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-dashed +1 +1 +- +dashed value css-backgrounds-3 css-backgrounds @@ -1542,10 +1800,10 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-dashed-attribute +https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-dashed-attribute 1 1 -CSSStyleDeclaration +CSSStyleProperties - dashed attribute attribute @@ -1564,10 +1822,10 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-dashed_attribute +https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-dashed_attribute 1 1 -CSSStyleDeclaration +CSSStyleProperties - dashed_attribute attribute @@ -2183,6 +2441,28 @@ representation - data dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#system-clipboard-representation-data + +1 +system clipboard representation +- +data +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-data + +1 +pressure source sample +- +data +dfn input-events-2 input-events 2 @@ -2215,7 +2495,7 @@ BlobEventInit - data dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -2226,7 +2506,7 @@ PaymentCompleteDetails - data dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -2237,7 +2517,7 @@ PaymentDetailsModifier - data dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -2269,6 +2549,39 @@ https://w3c.github.io/push-api/#dom-pusheventinit-data PushEventInit - data +dfn +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#trustedhtml-data +1 +1 +TrustedHTML +- +data +dfn +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#trustedscript-data +1 +1 +TrustedScript +- +data +dfn +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#trustedscripturl-data +1 +1 +TrustedScriptURL +- +data attribute uievents uievents @@ -2314,6 +2627,32 @@ InputEventInit - data attribute +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-data +1 +1 +TextEvent +- +data +argument +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-data +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +data +attribute web-nfc web-nfc 1 @@ -2444,28 +2783,6 @@ webrtc-encoded-transform current https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-data 1 -1 -RTCEncodedVideoFrame -- -data -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframe-data - -1 -RTCEncodedAudioFrame -- -data -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframe-data - 1 RTCEncodedVideoFrame - @@ -2508,32 +2825,76 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-debug-report-data +https://wicg.github.io/attribution-reporting-api/#verbose-debug-report-data 1 -attribution debug report +verbose debug report - data attribute -portals -portals +digital-identities +digital-identities 1 current -https://wicg.github.io/portals/#dom-portalactivateevent-data +https://wicg.github.io/digital-credentials#dom-digitalcredential-data 1 1 -PortalActivateEvent +DigitalCredential - data dict-member -portals -portals +direct-sockets +direct-sockets 1 current -https://wicg.github.io/portals/#dom-portalactivateeventinit-data +https://wicg.github.io/direct-sockets/#dom-udpmessage-data 1 1 -PortalActivateEventInit +UDPMessage +- +data +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-event-data + +1 +automatic beacon event +- +data +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#destination-enum-event-data + +1 +destination enum event +- +data +attribute +portals +portals +1 +current +https://wicg.github.io/portals/#dom-portalactivateevent-data +1 +1 +PortalActivateEvent +- +data +dict-member +portals +portals +1 +current +https://wicg.github.io/portals/#dom-portalactivateeventinit-data +1 +1 +PortalActivateEventInit - data dict-member @@ -2547,6 +2908,28 @@ https://wicg.github.io/portals/#dom-portalactivateoptions-data PortalActivateOptions - data +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-runfunctionforsharedstorageselecturloperation-data +1 +1 +RunFunctionForSharedStorageSelectURLOperation +- +data +dict-member +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstoragerunoperationmethodoptions-data +1 +1 +SharedStorageRunOperationMethodOptions +- +data attribute webhid webhid @@ -2710,6 +3093,28 @@ https://www.w3.org/TR/clipboard-apis/#dom-clipboard-writetext-data-data Clipboard/writeText(data) - data +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#representation-data + +1 +representation +- +data +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-data + +1 +pressure source sample +- +data argument credential-management-1 credential-management @@ -2719,6 +3124,7 @@ https://www.w3.org/TR/credential-management-1/#dom-federatedcredential-federated 1 1 FederatedCredential/FederatedCredential(data) +FederatedCredential/constructor(data) - data argument @@ -2730,6 +3136,7 @@ https://www.w3.org/TR/credential-management-1/#dom-passwordcredential-passwordcr 1 1 PasswordCredential/PasswordCredential(data) +PasswordCredential/constructor(data) - data attribute @@ -2805,7 +3212,7 @@ input-events snapshot https://www.w3.org/TR/input-events-2/#dfn-data - +1 - data attribute @@ -2831,33 +3238,33 @@ BlobEventInit - data dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcompletedetails-data +https://www.w3.org/TR/payment-request/#dom-paymentcompletedetails-data 1 1 PaymentCompleteDetails - data dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-data +https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-data 1 1 PaymentDetailsModifier - data dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata-data +https://www.w3.org/TR/payment-request/#dom-paymentmethoddata-data 1 1 PaymentMethodData @@ -2907,6 +3314,39 @@ https://www.w3.org/TR/service-workers/#dom-extendablemessageeventinit-data ExtendableMessageEventInit - data +dfn +trusted-types +trusted-types +1 +snapshot +https://www.w3.org/TR/trusted-types/#trustedhtml-data +1 +1 +TrustedHTML +- +data +dfn +trusted-types +trusted-types +1 +snapshot +https://www.w3.org/TR/trusted-types/#trustedscript-data +1 +1 +TrustedScript +- +data +dfn +trusted-types +trusted-types +1 +snapshot +https://www.w3.org/TR/trusted-types/#trustedscripturl-data +1 +1 +TrustedScriptURL +- +data attribute uievents uievents @@ -2951,6 +3391,32 @@ https://www.w3.org/TR/uievents/#dom-inputeventinit-data InputEventInit - data +attribute +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-data +1 +1 +TextEvent +- +data +argument +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-data +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +data dict-member webcodecs webcodecs @@ -3052,45 +3518,45 @@ GPUQueue/writeTexture(destination, data, dataLayout, size) - data attribute -webrtc-encoded-transform -webrtc-encoded-transform +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-data +https://www.w3.org/TR/webmidi/#dom-midimessageevent-data 1 1 -RTCEncodedAudioFrame +MIDIMessageEvent - data -attribute -webrtc-encoded-transform -webrtc-encoded-transform +dict-member +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-data +https://www.w3.org/TR/webmidi/#dom-midimessageeventinit-data 1 1 -RTCEncodedVideoFrame +MIDIMessageEventInit - data -dfn +attribute webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframe-data - +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-data +1 1 RTCEncodedAudioFrame - data -dfn +attribute webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframe-data - +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-data +1 1 RTCEncodedVideoFrame - @@ -3168,25 +3634,85 @@ https://wicg.github.io/local-font-access/#font-representation-data-bytes 1 font representation - -data delivery +data collection dfn compute-pressure compute-pressure 1 current -https://w3c.github.io/compute-pressure/#dfn-data-delivery +https://w3c.github.io/compute-pressure/#dfn-data-collection 1 - -data delivery +data collection dfn compute-pressure compute-pressure 1 snapshot -https://www.w3.org/TR/compute-pressure/#dfn-data-delivery +https://www.w3.org/TR/compute-pressure/#dfn-data-collection + +1 +- +data integrity cryptographic suite instance +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-data-integrity-cryptographic-suite-instance +1 +1 +- +data integrity cryptographic suite instance +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-data-integrity-cryptographic-suite-instance +1 +1 +- +data integrity cryptographic suite instantiation algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-cryptosuite-instantiation-algorithm +1 +1 +- +data integrity cryptographic suite instantiation algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-cryptosuite-instantiation-algorithm +1 +1 +- +data integrity proof +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-data-integrity-proof +1 +- +data integrity proof +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-data-integrity-proof 1 + - data model dfn @@ -3196,6 +3722,16 @@ json-ld current https://w3c.github.io/json-ld-syntax/#dfn-data-model +1 +- +data model +dfn +managed-configuration +managed-configuration +1 +current +https://wicg.github.io/WebApiDevice/managed_config/#data-model + 1 - data model @@ -3208,6 +3744,28 @@ https://www.w3.org/TR/json-ld11/#dfn-data-model 1 - +data origin +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworklet-data-origin + +1 +SharedStorageWorklet +- +data partition origin +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorage-data-partition-origin + +1 +SharedStorage +- data properties dfn ecmascript @@ -3230,6 +3788,28 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-obje 1 ECMAScript - +data race +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-data-races +1 +1 +ECMAScript +- +data race free +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-data-race-freedom +1 +1 +ECMAScript +- data stage dfn webusb @@ -3276,10 +3856,21 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-debug-data-data-type +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-data-type + +1 +trigger debug data +- +data type +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#verbose-debug-data-data-type 1 -attribution debug data +verbose debug data - data type name dfn @@ -3321,6 +3912,37 @@ https://www.w3.org/TR/SVG2/linking.html#TermDataURL 1 1 - +data validation +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-data-validation + +1 +- +data validation +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-data-validation + +1 +- +data versions +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-data-versions + +1 +trusted bidding signals batcher +- data- dfn html @@ -3433,6 +4055,16 @@ openscreenprotocol snapshot https://www.w3.org/TR/openscreenprotocol/#data-frame +1 +- +data-version +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-data-version +1 1 - data: url processor @@ -3485,6 +4117,17 @@ CompositionEvent/initCompositionEvent(typeArg, bubblesArg, cancelableArg) CompositionEvent/initCompositionEvent(typeArg, bubblesArg) CompositionEvent/initCompositionEvent(typeArg) - +dataAttributes +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-dataattributes +1 +1 +SanitizerConfig +- dataBits dict-member serial @@ -3639,17 +4282,39 @@ https://www.w3.org/TR/webgpu/#dom-gpuqueue-writebuffer-buffer-bufferoffset-data- 1 GPUQueue/writeBuffer(buffer, bufferOffset, data, dataOffset, size) - -dataPrefix +dataOrigin dict-member -web-bluetooth -web-bluetooth +shared-storage +shared-storage 1 current -https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdatafilterinit-dataprefix +https://wicg.github.io/shared-storage/#dom-sharedstorageworkletoptions-dataorigin +1 +1 +SharedStorageWorkletOptions +- +dataPrefix +dict-member +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdatafilterinit-dataprefix 1 1 BluetoothDataFilterInit - +dataPrefix +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-dataprefix +1 +1 +BluetoothDataFilter +- dataSetReady dict-member serial @@ -3705,6 +4370,116 @@ https://w3c.github.io/input-events/#dom-inputeventinit-datatransfer 1 InputEventInit - +dataTransfer +attribute +input-events-2 +input-events +2 +snapshot +https://www.w3.org/TR/input-events-2/#dom-inputevent-datatransfer +1 +1 +InputEvent +- +dataTransfer +dict-member +input-events-2 +input-events +2 +snapshot +https://www.w3.org/TR/input-events-2/#dom-inputeventinit-datatransfer +1 +1 +InputEventInit +- +dataType +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperanddescriptor-datatype +1 +1 +MLOperandDescriptor +- +dataType +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperanddescriptor-datatype +1 +1 +MLOperandDescriptor +- +dataType() +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperand-datatype +1 +1 +MLOperand +- +dataType() +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperand-datatype +1 +1 +MLOperand +- +dataVersion +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-dataversion +1 +1 +BiddingBrowserSignals +- +dataVersion +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportresultbrowsersignals-dataversion +1 +1 +ReportResultBrowserSignals +- +dataVersion +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-dataversion +1 +1 +ReportWinBrowserSignals +- +dataVersion +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-dataversion +1 +1 +ScoringBrowserSignals +- data_matrix enum-value shape-detection-api @@ -3832,14 +4607,15 @@ https://w3c.github.io/webrtc-pc/#event-datachannel RTCPeerConnection - datachannel -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-datachannel +1 - +RTCPeerConnection - dataerror dfn @@ -3848,7 +4624,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-DataError -1 + 1 - datafld @@ -3888,10 +4664,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-datagrams +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-datagrams 1 1 -WebTransportStats +WebTransportConnectionStats - datagrams attribute @@ -3910,10 +4686,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-datagrams +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-datagrams 1 1 -WebTransportStats +WebTransportConnectionStats - datalist element @@ -3957,6 +4733,16 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-dataset-isomorphism 1 1 - +dataset isomorphism +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-dataset-isomorphism +1 +1 +- dataset-isomorphic dfn rdf12-concepts @@ -3967,6 +4753,16 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-dataset-isomorphism 1 1 - +dataset-isomorphic +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-dataset-isomorphism +1 +1 +- datasrc element-attr html @@ -3979,35 +4775,23 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-datasrc - datastream dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-datastream +https://w3c.github.io/png/#dfn-datastream 1 - -datatransfer -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputevent-datatransfer - - -inputevent -- -datatransfer +datastream dfn -input-events-2 -input-events -2 +png-3 +png +3 snapshot -https://www.w3.org/TR/input-events-2/#dom-inputeventinit-datatransfer +https://www.w3.org/TR/png-3/#dfn-datastream - -inputeventinit +1 - datatype attribute @@ -4031,6 +4815,17 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-datatype 1 - datatype +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mloperand-datatype + +1 +MLOperand +- +datatype attribute json-ld11-api json-ld-api @@ -4041,6 +4836,27 @@ https://www.w3.org/TR/json-ld11-api/#dom-rdfliteral-datatype 1 RdfLiteral - +datatype +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-datatype + +1 +- +datatype +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mloperand-datatype + +1 +MLOperand +- datatype iri dfn rdf12-concepts @@ -4049,6 +4865,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-datatype-iri +1 +- +datatype iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-datatype-iri + 1 - datatype map @@ -4061,6 +4887,38 @@ https://w3c.github.io/rdf-semantics/spec/#dfn-datatype-map 1 - +datatype map +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-datatype-map + +1 +- +dataview with buffer witness record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview-with-buffer-witness-records +1 +1 +ECMAScript +- +dataview with buffer witness records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview-with-buffer-witness-records +1 +1 +ECMAScript +- date dfn html @@ -4098,7 +4956,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#date-state-(type=date) +https://html.spec.whatwg.org/multipage/input.html#date-state-(type%3Ddate) 1 1 input @@ -4190,6 +5048,106 @@ https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-time-datet 1 time - +datetime connector record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-connector-record +1 +1 +- +datetime date range record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-date-range-record +1 +1 +- +datetime format record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-format-record +1 +1 +- +datetime range pattern format record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-range-pattern-format-record +1 +1 +- +datetime range pattern part record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-range-pattern-part-record +1 +1 +- +datetime range pattern record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-range-pattern-record +1 +1 +- +datetime style range record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-style-range-record +1 +1 +- +datetime style record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-style-record +1 +1 +- +datetime styles record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-styles-record +1 +1 +- +datetime time range record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-time-range-record +1 +1 +- datetime value dfn html @@ -4210,6 +5168,26 @@ https://html.spec.whatwg.org/multipage/input.html#attr-input-type-datetime-local 1 1 input/type +- +daylight saving +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-daylight-saving +1 + +- +daylight saving +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-daylight-saving +1 + - daylight saving time dfn @@ -4217,7 +5195,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_dst +https://w3c.github.io/i18n-glossary/#dfn-daylight-saving 1 - @@ -4227,7 +5205,27 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_dst +https://www.w3.org/TR/i18n-glossary/#dfn-daylight-saving +1 + +- +daylight savings time +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-daylight-saving +1 + +- +daylight savings time +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-daylight-saving 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-de.data b/bikeshed/spec-data/readonly/anchors/anchors-de.data index adb24eb226..30e9fcb7a3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-de.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-de.data @@ -99,6 +99,17 @@ XRLayerLayout - "default" enum-value +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrlayerquality-default +1 +1 +XRLayerQuality +- +"default" +enum-value notifications notifications 1 @@ -132,6 +143,17 @@ WebTransportCongestionControl - "default" enum-value +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-default +1 +1 +AudioContextRenderSizeCategory +- +"default" +enum-value webnn webnn 1 @@ -185,6 +207,39 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerlayout-default 1 XRLayerLayout - +"default" +enum-value +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerquality-default +1 +1 +XRLayerQuality +- +"deflate" +enum-value +compression +compression +1 +current +https://compression.spec.whatwg.org/#dom-compressionformat-deflate +1 +1 +CompressionFormat +- +"deflate-raw" +enum-value +compression +compression +1 +current +https://compression.spec.whatwg.org/#dom-compressionformat-deflate-raw +1 +1 +CompressionFormat +- "delta" enum-value webcodecs @@ -262,6 +317,28 @@ https://notifications.spec.whatwg.org/#dom-notificationpermission-denied 1 NotificationPermission - +"denied" +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-denied +1 +1 +permission +- +"denied" +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-denied +1 +1 +permission +- "depth" enum-value webgpu @@ -460,6 +537,17 @@ https://www.w3.org/TR/webgpu/#dom-gputextureformat-depth32float-stencil8 1 GPUTextureFormat - +"descendant" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptwindowattribution-descendant +1 +1 +ScriptWindowAttribution +- "desktop" enum-value file-system-access @@ -666,6 +754,16 @@ https://www.w3.org/TR/css-scoping-1/#selectordef-deep 1 1 - +::details-content +selector +css-pseudo-4 +css-pseudo +4 +current +https://drafts.csswg.org/css-pseudo-4/#selectordef-details-content +1 +1 +- :default selector selectors-4 @@ -790,6 +888,16 @@ https://www.w3.org/TR/css-syntax-3/#typedef-declaration-list 1 1 - +<declaration-rule-list> +type +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#typedef-declaration-rule-list +1 +1 +- <declaration-value> type css-syntax-3 @@ -808,6 +916,26 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#typedef-declaration-value 1 +1 +- +<degree> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_degree + +1 +- +<degree> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_degree + 1 - <delim-token> @@ -850,6 +978,36 @@ https://www.w3.org/TR/css-color-4/#typedef-deprecated-color 1 1 - +<determinant/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_determinant + +1 +- +<determinant/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_determinant + +1 +- +Decode +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-decode +1 +1 +- Decode(string, preserveEscapeSet) abstract-op ecmascript @@ -940,13 +1098,33 @@ https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters 1 1 - +Decoding sparse bit set treeData +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-decoding-sparse-bit-set-treedata +1 +1 +- +Decoding sparse bit set treeData +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-decoding-sparse-bit-set-treedata +1 +1 +- DecompressionStream interface compression compression 1 current -https://wicg.github.io/compression/#decompressionstream +https://compression.spec.whatwg.org/#decompressionstream 1 1 - @@ -956,7 +1134,7 @@ compression compression 1 current -https://wicg.github.io/compression/#dom-decompressionstream-decompressionstream +https://compression.spec.whatwg.org/#dom-decompressionstream-decompressionstream 1 1 DecompressionStream @@ -981,16 +1159,6 @@ https://webidl.spec.whatwg.org/#Default 1 1 - -DefaultTimeZone() -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-defaulttimezone -1 -1 -- Define an inherited policy for feature in container at origin abstract-op permissions-policy-1 @@ -1011,6 +1179,16 @@ https://www.w3.org/TR/permissions-policy-1/#define-inherited-policy-in-container 1 1 - +DefineField +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-definefield +1 +1 +- DefineField(receiver, fieldRecord) abstract-op ecmascript @@ -1021,6 +1199,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-definefield 1 1 - +DefineMethodProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-definemethodproperty +1 +1 +- DefineMethodProperty(homeObject, key, closure, enumerable) abstract-op ecmascript @@ -1031,6 +1219,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +DefinePropertyOrThrow +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-definepropertyorthrow +1 +1 +- DefinePropertyOrThrow(O, P, desc) abstract-op ecmascript @@ -1145,7 +1343,50 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-deletebinding-n 1 1 -Environment Records +Declarative Environment Records +- +DeleteBinding(N) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-deletebinding-n +1 +1 +Global Environment Records +- +DeleteBinding(N) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-module-environment-records-deletebinding-n +1 +1 +Module Environment Records +- +DeleteBinding(N) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-deletebinding-n +1 +1 +Object Environment Records +- +DeletePropertyOrThrow +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-deletepropertyorthrow +1 +1 - DeletePropertyOrThrow(O, P) abstract-op @@ -1177,6 +1418,16 @@ https://streams.spec.whatwg.org/#dequeue-value 1 1 - +DetachArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-detacharraybuffer +1 +1 +- DetachArrayBuffer(arrayBuffer, key) abstract-op ecmascript @@ -1217,6 +1468,46 @@ https://wicg.github.io/shape-detection-api/text.html#dictdef-detectedtext 1 1 - +DeviceChangeEvent +interface +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeevent +1 +1 +- +DeviceChangeEvent +interface +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeevent +1 +1 +- +DeviceChangeEventInit +dictionary +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeeventinit +1 +1 +- +DeviceChangeEventInit +dictionary +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeeventinit +1 +1 +- DeviceMotionEvent interface orientation-event @@ -1465,33 +1756,13 @@ https://www.w3.org/TR/orientation-event/#dictdef-deviceorientationeventinit 1 1 - -DevicePermissionDescriptor -dictionary -mediacapture-streams -mediacapture-streams +DevicePosture +interface +device-posture +device-posture 1 current -https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor -1 -1 -- -DevicePermissionDescriptor -dictionary -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#dom-devicepermissiondescriptor -1 -1 -- -DevicePosture -interface -device-posture -device-posture -1 -current -https://w3c.github.io/device-posture/#dom-deviceposture +https://w3c.github.io/device-posture/#dom-deviceposture 1 1 - @@ -1611,7 +1882,7 @@ snapshot https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymapreadonly-declarations-slot 1 1 -StylePropertyMapReadonly +StylePropertyMapReadOnly StylePropertyMap - [[decodeQueueSize]] @@ -1679,6 +1950,17 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#defaultproperties 1 - +[[delay]] +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-delay-slot +1 +1 +IntersectionObserver +- [[depthReadOnly]] attribute webgpu @@ -1723,6 +2005,28 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-depthreadonly-slot 1 GPURenderCommandsMixin - +[[depthStencilAttachment]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-renderstate-depthstencilattachment-slot +1 +1 +RenderState +- +[[depthStencilAttachment]] +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-renderstate-depthstencilattachment-slot +1 +1 +RenderState +- [[dequeue event scheduled]] attribute webcodecs @@ -1868,6 +2172,17 @@ GPUTextureView - [[descriptor]] attribute +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperand-descriptor-slot +1 +1 +MLOperand +- +[[descriptor]] +attribute webgpu webgpu 1 @@ -1921,6 +2236,28 @@ https://www.w3.org/TR/webgpu/#dom-gputextureview-descriptor-slot 1 GPUTextureView - +[[descriptor]] +attribute +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperand-descriptor-slot +1 +1 +MLOperand +- +[[destroyed]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpuqueryset-destroyed-slot +1 +1 +GPUQuerySet +- [[destroyed]] attribute webgpu @@ -1938,6 +2275,17 @@ webgpu webgpu 1 snapshot +https://www.w3.org/TR/webgpu/#dom-gpuqueryset-destroyed-slot +1 +1 +GPUQuerySet +- +[[destroyed]] +attribute +webgpu +webgpu +1 +snapshot https://www.w3.org/TR/webgpu/#dom-gputexture-destroyed-slot 1 1 @@ -1978,7 +2326,7 @@ WritableStream - [[details]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -1989,11 +2337,11 @@ PaymentRequest - [[details]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-details +https://www.w3.org/TR/payment-request/#dfn-details 1 1 PaymentRequest @@ -2171,6 +2519,26 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-d-entails +1 +- +d-entails +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-d-entails + +1 +- +de-percentify a calc-size calculation +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#de-percentify-a-calc-size-calculation +1 1 - deactivate @@ -2191,6 +2559,16 @@ push-api snapshot https://www.w3.org/TR/push-api/#dfn-deactivate +1 +- +deactivate a document for a cross-document navigation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#deactivate-a-document-for-a-cross-document-navigation + 1 - deactivate a sensor object @@ -2211,6 +2589,16 @@ generic-sensor snapshot https://www.w3.org/TR/generic-sensor/#deactivate-a-sensor-object 1 +1 +- +deactivate an editcontext +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-deactivate-an-editcontext + 1 - deactivate an event handler @@ -2221,6 +2609,26 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#deactivate-an-event-handler +1 +- +deactivate data collection +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-deactivate-data-collection + +1 +- +deactivate data collection +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-deactivate-data-collection + 1 - deactivated @@ -2243,6 +2651,17 @@ https://www.w3.org/TR/push-api/#dfn-deactivate 1 - +deactivated for unexpired destination limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-rate-limit-record-deactivated-for-unexpired-destination-limit + +1 +attribution rate-limit record +- dead key dfn uievents @@ -2263,6 +2682,28 @@ https://www.w3.org/TR/uievents/#dead-key 1 - +debug cookie set +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-debug-cookie-set + +1 +attribution source +- +debug data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-config-debug-data + +1 +aggregatable debug reporting config +- debug data dfn attribution-reporting-api @@ -2284,6 +2725,49 @@ https://wicg.github.io/attribution-reporting-api/#debug-data-type 1 - +debug details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-debug-details + +1 +aggregatable report +- +debug details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache-entry-debug-details + +1 +contribution cache entry +- +debug details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-details + +1 +- +debug details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry-debug-details + +1 +on event contribution cache entry +- debug key dfn attribution-reporting-api @@ -2306,6 +2790,28 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-debug-key 1 attribution trigger - +debug loss report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingandscoringscriptrunnerglobalscope-debug-loss-report-url + +1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +- +debug loss report urls +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-report-info-debug-loss-report-urls + +1 +auction report info +- debug mode dfn attribution-reporting-api @@ -2317,6 +2823,26 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report-debug-mode 1 aggregatable report - +debug report cooldown +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#debug-report-cooldown + +1 +- +debug report lockout until +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#debug-report-lockout-until + +1 +- debug reporting enabled dfn attribution-reporting-api @@ -2339,6 +2865,81 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-debug-repo 1 attribution trigger - +debug reporting enabled +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#os-registration-debug-reporting-enabled + +1 +OS registration +- +debug scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache-entry-debug-scope + +1 +contribution cache entry +- +debug scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-scope + +1 +- +debug scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry-debug-scope + +1 +on event contribution cache entry +- +debug scope map +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-scope-map + +1 +- +debug win report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingandscoringscriptrunnerglobalscope-debug-win-report-url + +1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +- +debug win report urls +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-report-info-debug-win-report-urls + +1 +auction report info +- debug() method console @@ -2361,6 +2962,83 @@ https://console.spec.whatwg.org/#debug 1 console - +debugKey +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionreportbuyerdebugmodeconfig-debugkey +1 +1 +AuctionReportBuyerDebugModeConfig +- +debugKey +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-padebugmodeoptions-debugkey +1 +1 +PADebugModeOptions +- +debug_data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-json-key-debug_data + +1 +aggregatable-debug-reporting JSON key +- +debug_key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-debug_key + +1 +source-registration JSON key +- +debug_key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-debug_key + +1 +trigger-registration JSON key +- +debug_reporting +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-debug_reporting + +1 +source-registration JSON key +- +debug_reporting +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-debug_reporting + +1 +trigger-registration JSON key +- decapsulate dfn fido-v2.1 @@ -2372,6 +3050,46 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 pinUvAuthProtocol - +decentralized identifier +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-decentralized-identifiers + +1 +- +decentralized identifier +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-decentralized-identifiers + +1 +- +decentralized identifiers +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-decentralized-identifiers + +1 +- +decentralized identifiers +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-decentralized-identifiers + +1 +- decibels to linear gain unit dfn webaudio @@ -2437,6 +3155,26 @@ html-global/inputmode - decimal value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-decimal +1 +1 +- +decimal +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-decimal +1 +1 +- +decimal +value css-counter-styles-3 css-counter-styles 3 @@ -2510,6 +3248,26 @@ list-style-type - decimal-leading-zero value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-decimal-leading-zero +1 +1 +- +decimal-leading-zero +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-decimal-leading-zero +1 +1 +- +decimal-leading-zero +value css-counter-styles-3 css-counter-styles 3 @@ -2607,6 +3365,28 @@ https://www.w3.org/TR/WGSL/#syntax-decimal_int_literal 1 syntax - +decision logic url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-decision-logic-url + +1 +auction config +- +decisionLogicURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-decisionlogicurl +1 +1 +AuctionAdConfig +- declaration dfn css-syntax-3 @@ -2636,6 +3416,26 @@ wgsl current https://gpuweb.github.io/gpuweb/wgsl/#declaration +1 +- +declaration +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x19 +1 +1 +- +declaration +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x19 +1 1 - declaration @@ -2665,31 +3465,84 @@ css22 css 1 current -https://drafts.csswg.org/css2/#declaration-block +https://drafts.csswg.org/css2/#declaration-block + +1 +- +declaration block +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x14 +1 +1 +- +declaration block +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x14 +1 +1 +- +declarations +dfn +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations +1 +1 +CSSStyleDeclaration +- +declarations +dfn +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#declared-policy-declarations 1 +declared policy - declarations dfn cssom-1 cssom 1 -current -https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations +snapshot +https://www.w3.org/TR/cssom-1/#cssstyledeclaration-declarations 1 1 CSSStyleDeclaration - declarations dfn -cssom-1 -cssom +permissions-policy-1 +permissions-policy 1 snapshot -https://www.w3.org/TR/cssom-1/#cssstyledeclaration-declarations +https://www.w3.org/TR/permissions-policy-1/#declared-policy-declarations + +1 +declared policy +- +declarative +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#shadowroot-declarative 1 1 -CSSStyleDeclaration +ShadowRoot - declarative custom selector dfn @@ -2823,26 +3676,6 @@ permissions-policy snapshot https://www.w3.org/TR/permissions-policy-1/#declared-origin -1 -- -declared permissions policy -dfn -permissions-policy-1 -permissions-policy -1 -current -https://w3c.github.io/webappsec-permissions-policy/#declared-policy - -1 -- -declared permissions policy -dfn -permissions-policy-1 -permissions-policy -1 -snapshot -https://www.w3.org/TR/permissions-policy-1/#declared-policy - 1 - declared playback state @@ -2880,11 +3713,33 @@ dfn permissions-policy-1 permissions-policy 1 +current +https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-declared-policy + +1 +permissions policy +- +declared policy +dfn +permissions-policy-1 +permissions-policy +1 snapshot https://www.w3.org/TR/permissions-policy-1/#declared-policy 1 - +declared policy +dfn +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#permissions-policy-declared-policy + +1 +permissions policy +- declared stylepropertymap dfn css-typed-om-1 @@ -2902,7 +3757,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#declared-stylepropertymap - +1 1 - declared value @@ -3027,16 +3882,6 @@ https://w3c.github.io/media-source/#dom-endofstreamerror-decode EndOfStreamError - decode -dfn -cookie-store -cookie-store -1 -current -https://wicg.github.io/cookie-store/#decode - -1 -- -decode enum-value media-source-2 media-source @@ -3047,6 +3892,16 @@ https://www.w3.org/TR/media-source-2/#dom-endofstreamerror-decode 1 EndOfStreamError - +decode an additional bid json +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#decode-an-additional-bid-json + +1 +- decode and enqueue a chunk dfn encoding @@ -3129,9 +3984,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#decode-timestamp - +https://w3c.github.io/media-source/#dfn-decode-timestamp +1 - decode timestamp dfn @@ -3139,9 +3994,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#decode-timestamp - +https://www.w3.org/TR/media-source-2/#dfn-decode-timestamp +1 - decode track metadata dfn @@ -3427,6 +4282,16 @@ https://tc39.es/ecma262/multipage/global-object.html#sec-decodeuricomponent-enco 1 globalThis - +decoded additional bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#decoded-additional-bid + +1 +- decoded size dfn fetch @@ -3654,6 +4519,26 @@ current https://compat.spec.whatwg.org/#decompose 1 +- +decomposed +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-decomposed +1 + +- +decomposed +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-decomposed +1 + - decompress and enqueue a chunk dfn @@ -3661,7 +4546,7 @@ compression compression 1 current -https://wicg.github.io/compression/#decompress-and-enqueue-a-chunk +https://compression.spec.whatwg.org/#decompress-and-enqueue-a-chunk 1 - @@ -3671,7 +4556,7 @@ compression compression 1 current -https://wicg.github.io/compression/#decompress-flush-and-enqueue +https://compression.spec.whatwg.org/#decompress-flush-and-enqueue 1 - @@ -3846,7 +4731,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-decrypt -1 + 1 - decrypt() @@ -3871,6 +4756,26 @@ https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-decrypt 1 SubtleCrypto - +decryption key id +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-decryption-key-id +1 +1 +- +decryption key id +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-decryption-key-id +1 +1 +- dedicated media source failure steps dfn html @@ -3946,6 +4851,17 @@ https://wicg.github.io/attribution-reporting-api/#attribution-source-dedup-keys 1 attribution source - +deduplication_key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-deduplication_key + +1 +trigger-registration JSON key +- deep argument dom @@ -4010,6 +4926,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-deeppink 1 1 <color> +<named-color> - deeppink dfn @@ -4031,6 +4948,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-deeppink 1 1 <color> +<named-color> - deepskyblue dfn @@ -4052,6 +4970,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-deepskyblue 1 1 <color> +<named-color> - deepskyblue dfn @@ -4073,17 +4992,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-deepskyblue 1 1 <color> -- -default -value -css-anchor-position-1 -css-anchor-position -1 -current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default -1 -1 -anchor-scroll +<named-color> - default value @@ -4180,6 +5089,26 @@ html current https://html.spec.whatwg.org/multipage/input.html#dom-input-value-default +1 +- +default +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-default-state + +1 +- +default +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-default-state + 1 - default @@ -4226,6 +5155,17 @@ https://immersive-web.github.io/layers/#dom-xrlayerlayout-default XRLayerLayout - default +enum-value +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrlayerquality-default +1 +1 +XRLayerQuality +- +default dfn miniapp-manifest miniapp-manifest @@ -4247,6 +5187,39 @@ https://w3c.github.io/screen-orientation/#dfn-default-screen-orientation 1 - default +enum-value +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-default +1 +1 +AudioContextRenderSizeCategory +- +default +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#context-type-default + +1 +context type +- +default +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlpowerpreference-default +1 +1 +MLPowerPreference +- +default attribute speech-api speech-api @@ -4323,6 +5296,28 @@ https://www.w3.org/TR/webgpu/#limit-default limit - default +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#context-type-default + +1 +context type +- +default +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlpowerpreference-default +1 +1 +MLPowerPreference +- +default enum-value webxrlayers-1 webxrlayers @@ -4333,6 +5328,17 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerlayout-default 1 XRLayerLayout - +default +enum-value +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerquality-default +1 +1 +XRLayerQuality +- default `user-agent` value dfn fetch @@ -4361,6 +5367,26 @@ uievents snapshot https://www.w3.org/TR/uievents/#default-action +1 +- +default aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#default-aggregation-coordinator + +1 +- +default aggregation coordinator +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#default-aggregation-coordinator + 1 - default allowlist @@ -4405,15 +5431,45 @@ snapshot https://www.w3.org/TR/permissions-policy-1/#policy-controlled-feature-default-allowlist 1 1 -policy-controlled feature +policy-controlled feature +- +default anchor element +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#default-anchor-element + +1 +- +default anchor element +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#default-anchor-element + +1 +- +default anchor specifier +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#default-anchor-specifier + +1 - default anchor specifier dfn css-anchor-position-1 css-anchor-position 1 -current -https://drafts.csswg.org/css-anchor-position-1/#default-anchor-specifier +snapshot +https://www.w3.org/TR/css-anchor-position-1/#default-anchor-specifier 1 - @@ -4487,6 +5543,16 @@ html current https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#default-button +1 +- +default cache behavior +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#default-cache-behavior + 1 - default classic script fetch options @@ -4517,16 +5583,6 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#default-clause -1 -- -default configuration -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#default-configuration - 1 - default control pipe @@ -4576,9 +5632,10 @@ web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#default-document-timeline +https://www.w3.org/TR/web-animations-1/#document-default-document-timeline 1 1 +document - default endpoint dfn @@ -4588,6 +5645,26 @@ webusb current https://wicg.github.io/webusb/#default-endpoint +1 +- +default entry lifetime +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#default-entry-lifetime + +1 +- +default event-level attributions per source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#default-event-level-attributions-per-source + 1 - default face @@ -4658,6 +5735,36 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#default-fetch-and-process-the-linked-resource +1 +- +default filtering id max bytes +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#default-filtering-id-max-bytes + +1 +- +default filtering id max bytes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#default-filtering-id-max-bytes + +1 +- +default filtering id value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#default-filtering-id-value + 1 - default graph @@ -4668,6 +5775,46 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-default-graph +1 +- +default graph +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-default-graph + +1 +- +default graph +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-default-graph + +1 +- +default graph +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-default-graph + +1 +- +default index +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#default-index + 1 - default initial value @@ -4739,6 +5886,16 @@ snapshot https://www.w3.org/TR/json-ld11/#dfn-default-language +- +default max event states +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#default-max-event-states + +1 - default maximum dfn @@ -4788,16 +5945,6 @@ mediacapture-automation current https://w3c.github.io/mediacapture-automation/#default-microphone -1 -- -default mock microphone device -dfn -mediacapture-automation -mediacapture-automation -1 -current -https://w3c.github.io/mediacapture-automation/#set-default-mock-microphne-device - 1 - default namespace @@ -4866,7 +6013,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#default-options +https://urlpattern.spec.whatwg.org/#default-options 1 - @@ -5058,9 +6205,10 @@ trusted-types trusted-types 1 current -https://w3c.github.io/trusted-types/dist/spec/#default-policy +https://w3c.github.io/trusted-types/dist/spec/#trustedtypepolicyfactory-default-policy 1 +TrustedTypePolicyFactory - default policy dfn @@ -5068,9 +6216,10 @@ trusted-types trusted-types 1 snapshot -https://www.w3.org/TR/trusted-types/#default-policy +https://www.w3.org/TR/trusted-types/#trustedtypepolicyfactory-default-policy 1 +TrustedTypePolicyFactory - default port dfn @@ -5130,6 +6279,46 @@ streams current https://streams.spec.whatwg.org/#default-reader 1 +1 +- +default reading order +dfn +audiobooks +audiobooks +1 +current +https://w3c.github.io/audiobooks/#dfn-default-reading-order + +1 +- +default reading order +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-default-reading-order + +1 +- +default reading order +dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-default-reading-order + +1 +- +default reading order +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-default-reading-order + 1 - default referrer policy @@ -5281,6 +6470,26 @@ css current https://drafts.csswg.org/css2/#default-style-sheet +1 +- +default style sheet +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#default-style-sheet +1 +1 +- +default style sheet +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#default-style-sheet +1 1 - default style state @@ -5291,6 +6500,16 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-default-style +1 +- +default summary +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/rendering.html#default-summary + 1 - default theme color @@ -5321,6 +6540,16 @@ webidl current https://webidl.spec.whatwg.org/#default-tojson-steps 1 +1 +- +default trigger data cardinality +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#default-trigger-data-cardinality + 1 - default unlock gesture @@ -5341,6 +6570,46 @@ pointerlock snapshot https://www.w3.org/TR/pointerlock-2/#dfn-default-unlock-gesture +1 +- +default url search variance +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#default-url-search-variance + +1 +- +default user context +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#default-user-context + +1 +- +default value +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#default-value + +1 +- +default value +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#default-value + 1 - default value @@ -5404,6 +6673,36 @@ html current https://html.spec.whatwg.org/multipage/form-elements.html#concept-output-default-value-override +1 +- +default values for storage partition key attributes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#default-values-for-storage-partition-key-attributes + +1 +- +default viewport-percentage units +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#default-viewport-percentage-units +1 +1 +- +default viewport-percentage units +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#default-viewport-percentage-units +1 1 - default-alone clause @@ -5426,23 +6725,23 @@ https://www.w3.org/TR/WGSL/#default-alone-clause 1 - -default-context +default-policy-explanation dfn -webnn -webnn +trusted-types +trusted-types 1 current -https://webmachinelearning.github.io/webnn/#default-context +https://w3c.github.io/trusted-types/dist/spec/#default-policy-explanation 1 - -default-context +default-policy-explanation dfn -webnn -webnn +trusted-types +trusted-types 1 snapshot -https://www.w3.org/TR/webnn/#default-context +https://www.w3.org/TR/trusted-types/#default-policy-explanation 1 - @@ -5720,6 +7019,17 @@ AudioParamDescriptor - defaultValue attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacevariationaxis-defaultvalue +1 +1 +FontFaceVariationAxis +- +defaultValue +attribute webaudio webaudio 1 @@ -5783,6 +7093,28 @@ https://html.spec.whatwg.org/multipage/canvas.html#initialize-imagedata-defaultc 1 - +defaultpatchencoding +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-defaultpatchencoding + +1 +Format 2 Patch Map +- +defaultpatchencoding +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-defaultpatchencoding + +1 +Format 2 Patch Map +- defaultvalue dfn wasm-js-api-2 @@ -5842,7 +7174,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-define-an-algorithm -1 + 1 - define the asynchronous iteration methods @@ -6028,17 +7360,37 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#defined-property-name -1 +1 +- +defines +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-defines + + - defines dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current https://w3c.github.io/aria/#dfn-defines +- +defines +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-defines + + - defining term dfn @@ -6408,16 +7760,6 @@ css-grid snapshot https://www.w3.org/TR/css-grid-2/#definite-grid-span 1 -1 -- -definitely process scroll behavior -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#definitely-process-scroll-behavior - 1 - definition @@ -6544,11 +7886,21 @@ https://webidl.spec.whatwg.org/#dfn-definition - deflate dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-deflate +https://w3c.github.io/png/#dfn-deflate + +1 +- +deflate +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-deflate 1 - @@ -6755,6 +8107,28 @@ https://drafts.csswg.org/web-animations-2/#dom-optionaleffecttiming-delay OptionalEffectTiming - delay +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-delay +1 +1 +IntersectionObserver +- +delay +dict-member +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverinit-delay +1 +1 +IntersectionObserverInit +- +delay dict-member scheduling-apis scheduling-apis @@ -6787,6 +8161,28 @@ https://www.w3.org/TR/web-animations-1/#dom-optionaleffecttiming-delay 1 OptionalEffectTiming - +delay +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effecttiming-delay +1 +1 +EffectTiming +- +delay +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-optionaleffecttiming-delay +1 +1 +OptionalEffectTiming +- delayTime attribute webaudio @@ -6831,17 +8227,6 @@ https://www.w3.org/TR/webaudio/#dom-delayoptions-delaytime 1 DelayOptions - -delayed -attribute -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-delayed -1 -1 -ClipboardItem -- delaying the load event dfn html @@ -6985,6 +8370,16 @@ https://dom.spec.whatwg.org/#dom-shadowrootinit-delegatesfocus 1 ShadowRootInit - +delegating its rendering to its children +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/rendering.html#delegating-its-rendering-to-its-children + +1 +- delete dfn fetch @@ -7066,6 +8461,17 @@ https://immersive-web.github.io/anchors/#delete-an-anchor 1 - +delete an entry from the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-delete-an-entry-from-the-database + +1 +shared storage database +- delete an existing named property dfn webidl @@ -7127,45 +8533,37 @@ https://www.w3.org/TR/webdriver2/#dfn-delete-cookies 1 - -delete mock camera +delete expired sources dfn -mediacapture-automation -mediacapture-automation +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/mediacapture-automation/#delete-mock-camera +https://wicg.github.io/attribution-reporting-api/#delete-expired-sources 1 - -delete mock capture device +delete mock camera dfn mediacapture-automation mediacapture-automation 1 current -https://w3c.github.io/mediacapture-automation/#delete-mock-capture-device - +https://w3c.github.io/mediacapture-automation/#delete-mock-camera 1 +1 +extension commands - -delete mock sensor +delete mock capture device dfn -generic-sensor -generic-sensor +mediacapture-automation +mediacapture-automation 1 current -https://w3c.github.io/sensors/#delete-mock-sensor - -1 -- -delete mock sensor -dfn -generic-sensor -generic-sensor +https://w3c.github.io/mediacapture-automation/#delete-mock-capture-device 1 -snapshot -https://www.w3.org/TR/generic-sensor/#delete-mock-sensor - 1 +extension commands - delete records from an object store dfn @@ -7205,6 +8603,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-delete-session +1 +- +delete sources for unexpired destination limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#delete-sources-for-unexpired-destination-limit + 1 - delete the content attribute @@ -7305,6 +8713,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-delete 1 FontFaceSet - +delete(font) +method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-delete +1 +1 +FontFaceSet +- delete(id) method content-index @@ -7338,6 +8757,17 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap.prototype.d 1 WeakMap - +delete(key) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-delete +1 +1 +SharedStorage +- delete(name) method fetch @@ -7373,6 +8803,17 @@ CookieStore - delete(name) method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-delete +1 +1 +StorageBucketManager +- +delete(name) +method xhr xhr 1 @@ -7382,6 +8823,17 @@ https://xhr.spec.whatwg.org/#dom-formdata-delete 1 FormData - +delete(name, value) +method +url +url +1 +current +https://url.spec.whatwg.org/#dom-urlsearchparams-delete +1 +1 +URLSearchParams +- delete(options) method cookie-store @@ -7703,17 +9155,6 @@ HTMLTableSectionElement - deleteRule(index) method -css-nesting-1 -css-nesting -1 -current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-deleterule -1 -1 -CSSStyleRule -- -deleteRule(index) -method cssom-1 cssom 1 @@ -7833,17 +9274,6 @@ https://w3c.github.io/webrtc-stats/#dfn-deleted 1 - deleted -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatestats-deleted -1 - -RTCIceCandidateStats -- -deleted attribute cookie-store cookie-store @@ -7897,17 +9327,6 @@ https://www.w3.org/TR/webrtc-stats/#dfn-deleted 1 - -deleted -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatestats-deleted -1 - -RTCIceCandidateStats -- deleter dfn webidl @@ -7924,7 +9343,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#options-delimiter-code-point +https://urlpattern.spec.whatwg.org/#options-delimiter-code-point 1 options @@ -7949,29 +9368,101 @@ https://www.w3.org/TR/resize-observer-1/#deliver-resize-loop-error-notification 1 - -delivered +delivered image dfn -attribution-reporting-api -attribution-reporting-api -1 +png-3 +png +3 current -https://wicg.github.io/attribution-reporting-api/#attribution-report-delivered +https://w3c.github.io/png/#3deliveredImage 1 -attribution report -aggregatable report -event-level report - delivered image dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3deliveredImage + +1 +- +delivery +enum-value +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingtype-delivery +1 +1 +PaymentShippingType +- +delivery +enum-value +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-delivery +1 +1 +PaymentShippingType +- +delivery type +dfn +resource-timing +resource-timing +1 +current +https://w3c.github.io/resource-timing/#dfn-delivery-type + +1 +- +delivery type +dfn +prefetch +prefetch 1 current -https://w3c.github.io/PNG-spec/#dfn-delivered-image +https://wicg.github.io/nav-speculation/prefetch.html#navigation-params-delivery-type + +1 +navigation params +- +delivery type +dfn +resource-timing +resource-timing +1 +snapshot +https://www.w3.org/TR/resource-timing/#dfn-delivery-type 1 - +deliveryType +attribute +resource-timing +resource-timing +1 +current +https://w3c.github.io/resource-timing/#dom-performanceresourcetiming-deliverytype +1 +1 +PerformanceResourceTiming +- +deliveryType +attribute +resource-timing +resource-timing +1 +snapshot +https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming-deliverytype +1 +1 +PerformanceResourceTiming +- delta dfn uievents @@ -7983,13 +9474,13 @@ https://w3c.github.io/uievents/#delta 1 - delta -dfn +enum-value webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframetype-delta - +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-delta +1 1 RTCEncodedVideoFrameType - @@ -8050,13 +9541,13 @@ Table/grow(delta, value) Table/grow(delta) - delta -dfn +enum-value webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframetype-delta - +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-delta +1 1 RTCEncodedVideoFrameType - @@ -8414,7 +9905,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-denotation + 1 +- +denotation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-denotation + 1 - denote @@ -8429,13 +9930,13 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-denote - denote dfn -rdf12-semantics -rdf-semantics +rdf12-concepts +rdf-concepts 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-denote +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-denote + -1 - denoted dfn @@ -8449,13 +9950,13 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-denote - denoted dfn -rdf12-semantics -rdf-semantics +rdf12-concepts +rdf-concepts 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-denote +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-denote + -1 - denotes dfn @@ -8469,13 +9970,13 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-denote - denotes dfn -rdf12-semantics -rdf-semantics +rdf12-concepts +rdf-concepts 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-denote +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-denote + -1 - dense value @@ -8521,7 +10022,7 @@ https://www.w3.org/TR/css-grid-2/#valdef-grid-auto-flow-dense 1 grid-auto-flow - -density-corrected intrinsic width and height +density-corrected natural width and height dfn html html @@ -8593,6 +10094,28 @@ https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata 1 RTCEncodedVideoFrameMetadata - +dependent +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#abortsignal-dependent + +1 +AbortSignal +- +dependent +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#tasksignal-dependent + +1 +TaskSignal +- dependent locality dfn contact-picker @@ -8600,7 +10123,7 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-dependent-locality - +1 1 physical address - @@ -8611,9 +10134,51 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-dependent-locality - +1 1 physical address +- +dependent signals +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#abortsignal-dependent-signals + +1 +AbortSignal +- +dependent signals +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#tasksignal-dependent-signals + +1 +TaskSignal +- +dependent vowel +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-dependent-vowel +1 + +- +dependent vowel +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-dependent-vowel +1 + - dependentLocality attribute @@ -8627,6 +10192,17 @@ https://w3c.github.io/contact-picker/#dom-contactaddress-dependentlocality ContactAddress - dependentLocality +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-dependentlocality +1 +1 +AddressErrors +- +dependentLocality attribute contact-picker contact-picker @@ -8637,6 +10213,17 @@ https://www.w3.org/TR/contact-picker/#dom-contactaddress-dependentlocality 1 ContactAddress - +dependentLocality +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-dependentlocality +1 +1 +AddressErrors +- deprecate dfn wai-aria-1.2 @@ -8649,13 +10236,13 @@ https://w3c.github.io/aria/#dfn-deprecated - deprecate dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-deprecated +https://w3c.github.io/aria/#dfn-deprecated + -1 - deprecate dfn @@ -8677,35 +10264,35 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-deprecated - -deprecated +deprecate dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dfn-deprecated +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-deprecated - deprecated dfn -mathml-aam -mathml-aam +wai-aria-1.2 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-deprecated +https://w3c.github.io/aria/#dfn-deprecated + -1 - deprecated dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-deprecated +https://w3c.github.io/aria/#dfn-deprecated + -1 - deprecated dfn @@ -8766,6 +10353,27 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-deprecated +- +deprecated +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-deprecated + + +- +deprecated render url replacements +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-deprecated-render-url-replacements + +1 +auction config - deprecatedCallback argument @@ -8779,6 +10387,61 @@ https://notifications.spec.whatwg.org/#dom-notification-requestpermission-deprec Notification/requestPermission(deprecatedCallback) Notification/requestPermission() - +deprecatedRenderURLReplacements +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-deprecatedrenderurlreplacements +1 +1 +AuctionAdConfig +- +deprecatedReplaceInURN(urnOrConfig, replacements) +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedreplaceinurn +1 +1 +Navigator +- +deprecatedRunAdAuctionEnforcesKAnonymity +attribute +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-deprecatedrunadauctionenforceskanonymity +1 +1 +Navigator +- +deprecatedURNtoURL(urnOrConfig) +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedurntourl +1 +1 +Navigator +- +deprecatedURNtoURL(urnOrConfig, send_reports) +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedurntourl +1 +1 +Navigator +- deprecates dfn uievents @@ -8811,13 +10474,13 @@ https://w3c.github.io/aria/#dfn-deprecated - deprecation dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-deprecated +https://w3c.github.io/aria/#dfn-deprecated + -1 - deprecation dfn @@ -8838,6 +10501,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-deprecated +- +deprecation +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-deprecated + + - deprecation reports dfn @@ -8916,6 +10589,28 @@ https://w3c.github.io/mathml-core/#attribute-mspace-depth mspace - depth +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mpadded-depth +1 +1 +mpadded +- +depth +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mspace-depth +1 +1 +mspace +- +depth dfn webgpu webgpu @@ -9020,6 +10715,28 @@ snapshot https://www.w3.org/TR/webxr-depth-sensing-1/#depth-coordinates-transformation-matrix +- +depth texture +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#type-depth-texture + +1 +type +- +depth texture +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#type-depth-texture + +1 +type - depth-or-stencil format dfn @@ -9501,6 +11218,28 @@ https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrsessioninit-depthsensing 1 XRSessionInit - +depthSlice +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpurenderpasscolorattachment-depthslice +1 +1 +GPURenderPassColorAttachment +- +depthSlice +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpurenderpasscolorattachment-depthslice +1 +1 +GPURenderPassColorAttachment +- depthStencil dict-member webgpu @@ -9678,70 +11417,26 @@ https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrsession-depthusage XRSession - depthWriteEnabled -dict-member -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpudepthstencilstate-depthwriteenabled -1 -1 -GPUDepthStencilState -- -depthWriteEnabled -dict-member -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpudepthstencilstate-depthwriteenabled -1 -1 -GPUDepthStencilState -- -depth_texture_type -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-depth_texture_type - -1 -recursive descent syntax -- -depth_texture_type -dfn -wgsl -wgsl +dict-member +webgpu +webgpu 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-depth_texture_type - -1 -syntax -- -depth_texture_type -dfn -wgsl -wgsl +https://gpuweb.github.io/gpuweb/#dom-gpudepthstencilstate-depthwriteenabled 1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-depth_texture_type - 1 -recursive descent syntax +GPUDepthStencilState - -depth_texture_type -dfn -wgsl -wgsl +depthWriteEnabled +dict-member +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-depth_texture_type - +https://www.w3.org/TR/webgpu/#dom-gpudepthstencilstate-depthwriteenabled 1 -syntax +1 +GPUDepthStencilState - depthorarraylayers dfn @@ -9749,10 +11444,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#extent3d-depthorarraylayers +https://gpuweb.github.io/gpuweb/#gpuextent3d-depthorarraylayers 1 -Extent3D +GPUExtent3D - depthorarraylayers dfn @@ -9760,10 +11455,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#extent3d-depthorarraylayers +https://www.w3.org/TR/webgpu/#gpuextent3d-depthorarraylayers 1 -Extent3D +GPUExtent3D - depthstenciltextures dfn @@ -9917,6 +11612,38 @@ https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref.prototype.de 1 WeakRef - +derivative_uniformity +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#trigger-derivative_uniformity + +1 +trigger +- +derivative_uniformity +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#trigger-derivative_uniformity + +1 +trigger +- +derive a permissions policy directly from a fenced frame config instance +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#derive-a-permissions-policy-directly-from-a-fenced-frame-config-instance + +1 +- derive render targets layout from pass abstract-op webgpu @@ -9975,6 +11702,16 @@ image-resource snapshot https://www.w3.org/TR/image-resource/#dfn-deriving-the-accessible-name +1 +- +derive top 5 topics +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#derive-top-5-topics + 1 - deriveBits @@ -9999,6 +11736,17 @@ https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-deriveBits 1 SubtleCrypto - +deriveBits(algorithm, baseKey) +method +webcryptoapi +webcryptoapi +1 +current +https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-deriveBits +1 +1 +SubtleCrypto +- deriveBits(algorithm, baseKey, length) method webcryptoapi @@ -10050,7 +11798,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-deriveBits -1 + 1 - derivekey @@ -10060,7 +11808,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-deriveKey -1 + 1 - deriving the accessible name @@ -10094,28 +11842,6 @@ https://svgwg.org/svg2-draft/struct.html#elementdef-desc 1 - desc -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-desc-bufferview-desc -1 -1 -MLGraphBuilder/constant(desc, bufferView) -- -desc -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-input-name-desc-desc -1 -1 -MLGraphBuilder/input(name, desc) -- -desc element svg2 svg @@ -10125,28 +11851,6 @@ https://www.w3.org/TR/SVG2/struct.html#elementdef-desc 1 1 - -desc -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-desc-bufferview-desc -1 -1 -MLGraphBuilder/constant(desc, bufferView) -- -desc -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input-name-desc-desc -1 -1 -MLGraphBuilder/input(name, desc) -- descendant dfn dom @@ -10166,6 +11870,26 @@ css current https://drafts.csswg.org/css2/#descendant +1 +- +descendant +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#descendant +1 +1 +- +descendant +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#descendant +1 1 - descendant combinator @@ -10199,16 +11923,6 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#descendant-naviga 1 Document - -descendant script fetch options -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/webappapis.html#descendant-script-fetch-options - -1 -- descendant text content dfn dom @@ -10227,6 +11941,26 @@ css current https://drafts.csswg.org/css2/#descendant-selectors%E2%91%A0 +1 +- +descendant-selectors +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x12 +1 +1 +- +descendant-selectors +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x12 +1 1 - descent metric @@ -10261,6 +11995,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-descent-override @font-face - descent-override +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-descent-override +1 +1 +CSSFontFaceDescriptors +- +descent-override descriptor css-fonts-5 css-fonts @@ -10315,6 +12060,39 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-descentover 1 FontFaceDescriptors - +descentOverride +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-descentoverride +1 +1 +CSSFontFaceDescriptors +- +descentOverride +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-descentoverride +1 +1 +FontFace +- +descentOverride +dict-member +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacedescriptors-descentoverride +1 +1 +FontFaceDescriptors +- description attribute webgpu @@ -10424,6 +12202,16 @@ https://w3c.github.io/server-timing/#dom-performanceservertiming-description PerformanceServerTiming - description +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-description +1 +1 +- +description dict-member webcodecs webcodecs @@ -10544,6 +12332,16 @@ https://www.w3.org/TR/server-timing/#dom-performanceservertiming-description PerformanceServerTiming - description +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-description +1 +1 +- +description dict-member webcodecs webcodecs @@ -10980,11 +12778,21 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-finish-descriptor-descriptor +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-descriptor +1 +1 +MLGraphBuilder/constant(descriptor, bufferView) +- +descriptor +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-input-name-descriptor-descriptor 1 1 -MLCommandEncoder/finish(descriptor) -MLCommandEncoder/finish() +MLGraphBuilder/input(name, descriptor) - descriptor argument @@ -11320,11 +13128,21 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-finish-descriptor-descriptor +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-descriptor +1 +1 +MLGraphBuilder/constant(descriptor, bufferView) +- +descriptor +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input-name-descriptor-descriptor 1 1 -MLCommandEncoder/finish(descriptor) -MLCommandEncoder/finish() +MLGraphBuilder/input(name, descriptor) - descriptor declarations dfn @@ -11378,10 +13196,13 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacefontface-descriptors +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface-family-source-descriptors-descriptors 1 1 -FontFace/FontFace() +FontFace/FontFace(family, source, descriptors) +FontFace/constructor(family, source, descriptors) +FontFace/FontFace(family, source) +FontFace/constructor(family, source) - deselectAll method @@ -11425,43 +13246,83 @@ https://fetch.spec.whatwg.org/#deserialize-a-serialized-abort-reason 1 1 - -deserialize a shadow root +deserialize a shadow root +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-deserialize-a-shadow-root + +1 +- +deserialize a shadow root +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-deserialize-a-shadow-root + +1 +- +deserialize a web element +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-deserialize-a-web-element + +1 +- +deserialize a web element +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-deserialize-a-web-element + +1 +- +deserialize a web frame dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-deserialize-a-shadow-root +https://w3c.github.io/webdriver/#dfn-deserialize-a-web-frame 1 - -deserialize a shadow root +deserialize a web frame dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-deserialize-a-shadow-root +https://www.w3.org/TR/webdriver2/#dfn-deserialize-a-web-frame 1 - -deserialize a web element +deserialize a web window dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-deserialize-a-web-element +https://w3c.github.io/webdriver/#dfn-deserialize-a-web-window 1 - -deserialize a web element +deserialize a web window dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-deserialize-a-web-element +https://www.w3.org/TR/webdriver2/#dfn-deserialize-a-web-window 1 - @@ -11533,6 +13394,46 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-deserialize-as-an-unhandled-prompt-behavior +1 +- +deserialize as timeouts configuration +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-deserialize-as-timeouts-configuration + +1 +- +deserialize as timeouts configuration +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-deserialize-as-timeouts-configuration + +1 +- +deserialize filter +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#deserialize-filter + +1 +- +deserialize header +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#deserialize-header + 1 - deserialize key-value list @@ -11563,6 +13464,26 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#deserialize-primitive-protocol-value +1 +- +deserialize protocol bytes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#deserialize-protocol-bytes + +1 +- +deserialize protocol messages +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#deserialize-protocol-messages + 1 - deserialize remote object reference @@ -11613,6 +13534,26 @@ html current https://html.spec.whatwg.org/multipage/interaction.html#design-mode-enabled +1 +- +design space segment +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#design-space-segment + +1 +- +design space segment +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#design-space-segment + 1 - designMode @@ -11656,25 +13597,81 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-designated-resource - -designated resource +designates dfn -tracking-dnt -tracking-dnt +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#concept-selector-hover + +1 +- +designspacecount +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-designspacecount + +1 +Mapping Entry +- +designspacecount +dfn +ift +ift 1 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-designated-resource +https://www.w3.org/TR/IFT/#mapping-entry-designspacecount 1 +Mapping Entry - -designates +designspacesegments dfn -html -html +ift +ift 1 current -https://html.spec.whatwg.org/multipage/semantics-other.html#concept-selector-hover +https://w3c.github.io/IFT/Overview.html#mapping-entry-designspacesegments + +1 +Mapping Entry +- +designspacesegments +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-designspacesegments 1 +Mapping Entry +- +desirability +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportresultbrowsersignals-desirability +1 +1 +ReportResultBrowserSignals +- +desirability +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoreadoutput-desirability +1 +1 +ScoreAdOutput - desired size to fill a stream's internal queue dfn @@ -11797,13 +13794,13 @@ https://w3c.github.io/aria/#dfn-desktop-focus-event - desktop focus dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-desktop-focus +https://w3c.github.io/aria/#dfn-desktop-focus-event + -1 - desktop focus dfn @@ -11824,6 +13821,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-desktop-focus +- +desktop focus +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-desktop-focus-event + + - desktop focus event dfn @@ -11837,13 +13844,13 @@ https://w3c.github.io/aria/#dfn-desktop-focus-event - desktop focus event dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-desktop-focus +https://w3c.github.io/aria/#dfn-desktop-focus-event + -1 - desktop focus event dfn @@ -11865,15 +13872,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-desktop-focus - -desktop focus events +desktop focus event dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-desktop-focus +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-desktop-focus-event + -1 - desktop focus events dfn @@ -12058,6 +14065,28 @@ https://html.spec.whatwg.org/multipage/links.html#preload-destination 1 - destination +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-destination +1 +1 +NavigateEvent +- +destination +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-destination +1 +1 +NavigateEventInit +- +destination dfn html html @@ -12170,37 +14199,48 @@ https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-destination BaseAudioContext - destination -attribute -navigation-api -navigation-api +dfn +attribution-reporting-api +attribution-reporting-api 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-destination +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-destination + +1 +source-registration JSON key +- +destination +dfn +fenced-frame +fenced-frame 1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-data-destination + 1 -NavigateEvent +automatic beacon data - destination dict-member -navigation-api -navigation-api +fenced-frame +fenced-frame 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-destination +https://wicg.github.io/fenced-frame/#dom-fenceevent-destination 1 1 -NavigateEventInit +FenceEvent - destination -dict-member -navigation-api -navigation-api +dfn +fenced-frame +fenced-frame 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeeventinit-destination +https://wicg.github.io/fenced-frame/#pending-event-destination 1 1 -NavigationCurrentEntryChangeEventInit +pending event - destination dfn @@ -12419,6 +14459,60 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-destination-browsing-context +1 +- +destination enum event +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-destination-enum-event + +1 +fencedframetype +- +destination event +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-destination-event + +1 +fencedframetype +- +destination limit priority +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-rate-limit-record-destination-limit-priority + +1 +attribution rate-limit record +- +destination limit priority +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-destination-limit-priority + +1 +attribution source +- +destination limit record +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-limit-record + 1 - destination node @@ -12441,6 +14535,37 @@ https://www.w3.org/TR/webaudio/#destination-node 1 - +destination rate-limit result +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-rate-limit-result + +1 +- +destination rate-limit window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-rate-limit-window + +1 +- +destination url event +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-destination-url-event + +1 +fencedframetype +- destination-atop dfn compositing-2 @@ -12679,16 +14804,27 @@ https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output 1 AudioNode/disconnect(destinationParam, output) - -destinationentry +destinationURL +dict-member +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fenceevent-destinationurl +1 +1 +FenceEvent +- +destination_limit_priority dfn -navigation-api -navigation-api +attribution-reporting-api +attribution-reporting-api 1 current -https://wicg.github.io/navigation-api/#fire-a-traversal-navigate-event-destinationentry +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-destination_limit_priority 1 -fire a traversal navigate event +source-registration JSON key - destinationoffset dfn @@ -12712,6 +14848,16 @@ https://www.w3.org/TR/webcodecs/#computed-plane-layout-destinationoffset 1 computed plane layout - +destinationshe +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-traverse-destinationshe + +1 +- destinationstride dfn webcodecs @@ -12736,25 +14882,23 @@ computed plane layout - destinationurl dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-download-requested-navigate-event-destinationurl +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-download-destinationurl 1 -fire a download-requested navigate event - destinationurl dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-destinationurl +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-destinationurl 1 -fire a non-traversal navigate event - destroy dfn @@ -12768,22 +14912,31 @@ https://html.spec.whatwg.org/multipage/document-lifecycle.html#destroy-a-documen - destroy dfn -close-watcher -close-watcher +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-destroy + +1 +- +destroy a child navigable +dfn +html +html 1 current -https://wicg.github.io/close-watcher/#close-watcher-destroy +https://html.spec.whatwg.org/multipage/document-sequences.html#destroy-a-child-navigable 1 -close watcher - -destroy a child navigable +destroy a document and its descendants dfn html html 1 current -https://html.spec.whatwg.org/multipage/document-sequences.html#destroy-a-child-navigable +https://html.spec.whatwg.org/multipage/document-lifecycle.html#destroy-a-document-and-its-descendants 1 - @@ -12843,25 +14996,25 @@ GPUTexture - destroy() method -webxrlayers-1 -webxrlayers +html +html 1 current -https://immersive-web.github.io/layers/#dom-xrcompositionlayer-destroy +https://html.spec.whatwg.org/multipage/interaction.html#dom-closewatcher-destroy 1 1 -XRCompositionLayer +CloseWatcher - destroy() method -close-watcher -close-watcher +webxrlayers-1 +webxrlayers 1 current -https://wicg.github.io/close-watcher/#dom-closewatcher-destroy +https://immersive-web.github.io/layers/#dom-xrcompositionlayer-destroy 1 1 -CloseWatcher +XRCompositionLayer - destroy() method @@ -12924,32 +15077,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#buffer-internals-state-destroyed - -1 -buffer internals/state -- -destroyed -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#query-set-state-destroyed - -1 -query set state -- -destroyed -dfn -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#buffer-internals-state-destroyed +https://gpuweb.github.io/gpuweb/#gpubuffer-internal-state-destroyed 1 -buffer internals/state +GPUBuffer/[[internal state]] - destroyed dfn @@ -12957,10 +15088,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#query-set-state-destroyed +https://www.w3.org/TR/webgpu/#gpubuffer-internal-state-destroyed 1 -query set state +GPUBuffer/[[internal state]] - desynchronized dfn @@ -13037,6 +15168,17 @@ https://svgwg.org/svg2-draft/types.html#TermDetach 1 - detached +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.detached +1 +1 +ArrayBuffer +- +detached dfn webidl webidl @@ -13390,7 +15532,7 @@ PaymentHandlerResponse - details attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -13423,25 +15565,24 @@ PaymentHandlerResponse - details attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-details +https://www.w3.org/TR/payment-request/#dom-paymentresponse-details 1 1 PaymentResponse - -details +details name group dfn -tracking-dnt -tracking-dnt +html +html 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata-details +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#details-name-group 1 -trackingexdata - details notification task steps dfn @@ -13471,6 +15612,56 @@ pointerevents snapshot https://www.w3.org/TR/pointerevents3/#dfn-touch-action-values +1 +- +details toggle task tracker +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#details-toggle-task-tracker + +1 +- +detect phrase boundaries +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#phrase-boundary-detection + +1 +- +detect phrase boundaries +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#phrase-boundary-detection + +1 +- +detect word boundaries +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#word-boundary-detection + +1 +- +detect word boundaries +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#word-boundary-detection + 1 - detect(image) @@ -13506,6 +15697,68 @@ https://wicg.github.io/shape-detection-api/text.html#dom-textdetector-detect 1 TextDetector - +detectedMeshes +attribute +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#dom-xrframe-detectedmeshes +1 +1 +XRFrame +- +detectedPlanes +attribute +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrframe-detectedplanes +1 +1 +XRFrame +- +detecting phrase boundaries +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#phrase-boundary-detection + +1 +- +detecting phrase boundaries +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#phrase-boundary-detection + +1 +- +detecting word boundaries +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#word-boundary-detection + +1 +- +detecting word boundaries +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#word-boundary-detection + +1 +- detector curve dfn webaudio @@ -13534,6 +15787,16 @@ html current https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#determine-a-field's-category +1 +- +determine a signal's numeric value +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#determine-a-signals-numeric-value + 1 - determine eligibility for an associated site @@ -13544,6 +15807,16 @@ first-party-sets current https://wicg.github.io/first-party-sets/#determine-eligibility-for-an-associated-site +1 +- +determine if DTMF can be sent +abstract-op +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-determine-if-dtmf-can-be-sent +1 1 - determine if a performance entry buffer is full @@ -13566,24 +15839,44 @@ https://www.w3.org/TR/performance-timeline/#dfn-determine-if-a-performance-entry 1 - -determine if a request has top-level storage access +determine if a randomized null attribution report is generated dfn -requeststorageaccessfororigin -requeststorageaccessfororigin +attribution-reporting-api +attribution-reporting-api 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#determine-if-a-request-has-top-level-storage-access +https://wicg.github.io/attribution-reporting-api/#determine-if-a-randomized-null-attribution-report-is-generated 1 - -determine if dtmf can be sent +determine if a report should be sent deterministically dfn -webrtc -webrtc +private-aggregation-api +private-aggregation-api 1 current -https://w3c.github.io/webrtc-pc/#dfn-determine-if-dtmf-can-be-sent +https://patcg-individual-drafts.github.io/private-aggregation-api/#determine-if-a-report-should-be-sent-deterministically +1 +- +determine if a request has top-level storage access +dfn +requeststorageaccessfor +requeststorageaccessfor +1 +current +https://privacycg.github.io/requestStorageAccessFor/#determine-if-a-request-has-top-level-storage-access + +1 +- +determine if an origin is an aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#determine-if-an-origin-is-an-aggregation-coordinator +1 1 - determine if dtmf can be sent @@ -13614,6 +15907,26 @@ fetch current https://fetch.spec.whatwg.org/#determine-nosniff 1 +1 +- +determine remaining navigation budget +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#determine-remaining-navigation-budget + +1 +- +determine reporting budget to charge +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#determine-reporting-budget-to-charge + 1 - determine request's referrer @@ -13634,6 +15947,16 @@ referrer-policy snapshot https://www.w3.org/TR/referrer-policy/#determine-requests-referrer 1 +1 +- +determine the active editcontext +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-determine-the-active-editcontext + 1 - determine the creation sandboxing flags @@ -13719,11 +16042,11 @@ https://www.w3.org/TR/css-layout-api-1/#determine-the-intrinsic-sizes - determine the ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#determine-the-ip-address-space +https://wicg.github.io/private-network-access/#determine-the-ip-address-space 1 1 - @@ -13806,6 +16129,16 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#determining-the-origin +1 +- +determine the point on an ellipse steps +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/canvas.html#determine-the-point-on-an-ellipse-steps + 1 - determine the position fallback styles @@ -13816,6 +16149,26 @@ css-anchor-position current https://drafts.csswg.org/css-anchor-position-1/#determine-the-position-fallback-styles +1 +- +determine the position fallback styles +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#determine-the-position-fallback-styles + +1 +- +determine the preflight mode +dfn +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#determine-the-preflight-mode + 1 - determine the purpose of an image @@ -13836,6 +16189,16 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-determine-the-purpose-of-an-image +1 +- +determine the scroll-into-view position +dfn +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#determine-the-scroll-into-view-position +1 1 - determine the start page @@ -13946,6 +16309,16 @@ csp-next current https://wicg.github.io/csp-next/scripting-policy.html#abstract-opdef-determine-whether-a-plugin-element-should-be-blocked-by-scripting-policy 1 +1 +- +determine whether a request can currently use shared storage +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#determine-whether-a-request-can-currently-use-shared-storage + 1 - determine whether a script element should be blocked by Scripting Policy @@ -13958,6 +16331,17 @@ https://wicg.github.io/csp-next/scripting-policy.html#abstract-opdef-determine-w 1 1 - +determine whether an entry is expired +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-determine-whether-an-entry-is-expired + +1 +shared storage database +- determine whether an event handler be blocked by Scripting Policy abstract-op csp-next @@ -13966,6 +16350,36 @@ csp-next current https://wicg.github.io/csp-next/scripting-policy.html#abstract-opdef-determine-whether-an-event-handler-be-blocked-by-scripting-policy 1 +1 +- +determine whether associating an issuer would exceed the top-level limit +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#determine-whether-associating-an-issuer-would-exceed-the-top-level-limit + +1 +- +determine whether shared storage is allowed by context +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#determine-whether-shared-storage-is-allowed-by-context + +1 +- +determine whether the user agent explicitly allows unpartitioned cookie access +dfn +storage-access +storage-access +1 +current +https://privacycg.github.io/storage-access/#determine-whether-the-user-agent-explicitly-allows-unpartitioned-cookie-access + 1 - determine-compatibility @@ -13997,16 +16411,6 @@ snapshot https://www.w3.org/TR/webauthn-3/#determines-the-set-of-origins-on-which-the-public-key-credential-may-be-exercised -- -determining the matching applications -dfn -badging -badging -1 -current -https://w3c.github.io/badging/#dfn-determining-the-matching-applications - -1 - determining the start page dfn @@ -14026,6 +16430,16 @@ miniapp-packaging snapshot https://www.w3.org/TR/miniapp-packaging/#dfn-determining-the-start-page +1 +- +deterministic operation timeout duration +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#deterministic-operation-timeout-duration + 1 - detune @@ -14362,30 +16776,50 @@ dict-member webgpu webgpu 1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucanvasconfiguration-device +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucanvasconfiguration-device +1 +1 +GPUCanvasConfiguration +- +device address +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#device-address + 1 +- +device administrator +dfn +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#device-administrator + 1 -GPUCanvasConfiguration - device change notification steps -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#dfn-device-change-notification-steps - +1 1 - device change notification steps -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-device-change-notification-steps - +1 1 - device coordinate system @@ -14429,47 +16863,67 @@ https://webbluetoothcg.github.io/web-bluetooth/#device-discovery-procedure 1 - device enumeration can proceed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#device-enumeration-can-proceed - +1 1 - device enumeration can proceed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#device-enumeration-can-proceed - +1 1 - device information can be exposed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#device-information-can-be-exposed - +1 1 - device information can be exposed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#device-information-can-be-exposed +1 +1 +- +device motion and orientation task source +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#device-motion-and-orientation-task-source 1 - -device permission revocation algorithm +device motion and orientation task source dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#device-motion-and-orientation-task-source + +1 +- +device permission revocation algorithm +abstract-op mediacapture-streams mediacapture-streams 1 @@ -14479,7 +16933,7 @@ https://w3c.github.io/mediacapture-main/#dfn-device-permission-revocation-algori 1 - device permission revocation algorithm -dfn +abstract-op mediacapture-streams mediacapture-streams 1 @@ -14530,33 +16984,83 @@ https://www.w3.org/TR/css-values-4/#device-pixel - device pixel ratio dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-device-pixel-ratio +https://w3c.github.io/window-management/#screen-device-pixel-ratio 1 screen - device pixel ratio dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-device-pixel-ratio +https://www.w3.org/TR/window-management/#screen-device-pixel-ratio 1 screen - +device pixel ratio overrides +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#device-pixel-ratio-overrides + +1 +- +device posture change steps +dfn +device-posture +device-posture +1 +current +https://w3c.github.io/device-posture/#dfn-device-posture-change-steps + +1 +- +device posture change steps +dfn +device-posture +device-posture +1 +snapshot +https://www.w3.org/TR/device-posture/#dfn-device-posture-change-steps + +1 +- device private key dfn webauthn-3 webauthn 3 +snapshot +https://www.w3.org/TR/webauthn-3/#device-private-key + +1 +- +device prompt +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#device-prompt + +1 +- +device prompt id +dfn +web-bluetooth +web-bluetooth +1 current -https://w3c.github.io/webauthn/#device-private-key +https://webbluetoothcg.github.io/web-bluetooth/#device-prompt-id 1 - @@ -14565,8 +17069,8 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#device-public-key +snapshot +https://www.w3.org/TR/webauthn-3/#device-public-key 1 - @@ -14575,8 +17079,8 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#device-public-key-attestation-object +snapshot +https://www.w3.org/TR/webauthn-3/#device-public-key-attestation-object 1 - @@ -14620,43 +17124,23 @@ https://www.w3.org/TR/webgpu/#device-timeline 1 - -device timeline slot +device timeline property dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#device-timeline-slot +https://gpuweb.github.io/gpuweb/#device-timeline-property 1 - -device timeline slot +device timeline property dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#device-timeline-slot - -1 -- -device type -dfn -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#device-type - -1 -- -device type -dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#device-type +https://www.w3.org/TR/webgpu/#device-timeline-property 1 - @@ -14709,8 +17193,8 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#device-bound-key +snapshot +https://www.w3.org/TR/webauthn-3/#device-bound-key 1 - @@ -14719,8 +17203,8 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#credential-record-device-bound-key-record +snapshot +https://www.w3.org/TR/webauthn-3/#credential-record-device-bound-key-record 1 credential record @@ -14743,26 +17227,6 @@ css-color snapshot https://www.w3.org/TR/css-color-5/#funcdef-device-cmyk 1 -1 -- -device-enumeration-can-proceed -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#device-enumeration-can-proceed - -1 -- -device-enumeration-can-proceed -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#device-enumeration-can-proceed - 1 - device-height @@ -14809,26 +17273,6 @@ https://www.w3.org/TR/mediaqueries-5/#descdef-media-device-height 1 @media - -device-information-can-be-exposed -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#device-information-can-be-exposed - -1 -- -device-information-can-be-exposed -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#device-information-can-be-exposed - -1 -- device-pixel-ratio dfn html @@ -14859,65 +17303,25 @@ https://www.w3.org/TR/device-posture/#dfn-device-posture 1 - -device-timeline example definition +device-timeline example term dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#device-timeline-example-definition +https://gpuweb.github.io/gpuweb/#device-timeline-example-term - -device-timeline example definition +device-timeline example term dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#device-timeline-example-definition - - -- -device-type-cpu -dfn -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#device-type-cpu - -1 -- -device-type-cpu -dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#device-type-cpu - -1 -- -device-type-gpu -dfn -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#device-type-gpu +https://www.w3.org/TR/webgpu/#device-timeline-example-term -1 -- -device-type-gpu -dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#device-type-gpu -1 - device-width descriptor @@ -14986,17 +17390,6 @@ https://w3c.github.io/mediacapture-automation/#dom-mockcapturedeviceconfiguratio MockCaptureDeviceConfiguration - deviceId -dict-member -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid -1 -1 -DevicePermissionDescriptor -- -deviceId attribute mediacapture-streams mediacapture-streams @@ -15096,17 +17489,6 @@ https://www.w3.org/TR/audio-output/#dom-audiooutputoptions-deviceid AudioOutputOptions - deviceId -dict-member -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#dom-devicepermissiondescriptor-deviceid -1 -1 -DevicePermissionDescriptor -- -deviceId attribute mediacapture-streams mediacapture-streams @@ -15241,11 +17623,11 @@ Window - devicePixelRatio attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-devicepixelratio +https://w3c.github.io/window-management/#dom-screendetailed-devicepixelratio 1 1 ScreenDetailed @@ -15274,11 +17656,11 @@ Window - devicePixelRatio attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-devicepixelratio +https://www.w3.org/TR/window-management/#dom-screendetailed-devicepixelratio 1 1 ScreenDetailed @@ -15321,8 +17703,8 @@ dict-member webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dom-authenticationextensionsclientinputs-devicepubkey +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsclientinputs-devicepubkey 1 1 AuthenticationExtensionsClientInputs @@ -15332,8 +17714,8 @@ dict-member webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dom-authenticationextensionsclientoutputs-devicepubkey +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsclientoutputs-devicepubkey 1 1 AuthenticationExtensionsClientOutputs @@ -15343,8 +17725,8 @@ abstract-op webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#abstract-opdef-credential-record-devicepubkeys +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-devicepubkeys 1 1 credential record @@ -15504,7 +17886,7 @@ compat 1 current https://compat.spec.whatwg.org/#devicecompat - +1 1 - devicecompat @@ -15538,17 +17920,6 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-deviceid 1 - -devicemodel -dfn -compat -compat -1 -current -https://compat.spec.whatwg.org/#chrome-devicemodel - -1 -chrome -- devicemotion event orientation-event @@ -15620,13 +17991,35 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#devicepubkey +snapshot +https://www.w3.org/TR/webauthn-3/#devicepubkey 1 - devices attribute +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeevent-devices +1 +1 +DeviceChangeEvent +- +devices +dict-member +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeeventinit-devices +1 +1 +DeviceChangeEventInit +- +devices +attribute web-bluetooth web-bluetooth 1 @@ -15647,6 +18040,28 @@ https://wicg.github.io/webusb/#dom-usbpermissionresult-devices 1 USBPermissionResult - +devices +attribute +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeevent-devices +1 +1 +DeviceChangeEvent +- +devices +dict-member +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeeventinit-devices +1 +1 +DeviceChangeEventInit +- devolvable dfn css-ui-4 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-di.data b/bikeshed/spec-data/readonly/anchors/anchors-di.data index 818cce6de5..23f1ba2f8e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-di.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-di.data @@ -1,3 +1,13 @@ +"digital-credentials-get" +permission +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-digital-credentials-get +1 +1 +- "direct" enum-value webauthn-3 @@ -20,6 +30,17 @@ https://www.w3.org/TR/webauthn-3/#dom-attestationconveyancepreference-direct 1 AttestationConveyancePreference - +"direct-seller" +enum-value +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencereportingdestination-direct-seller +1 +1 +FenceReportingDestination +- "directory" enum-value fs @@ -271,6 +292,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#disabled-pseudo 1 +1 +- +<diff/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_diff + +1 +- +<diff/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_diff + 1 - <dimension-token> @@ -554,6 +595,76 @@ https://www.w3.org/TR/css-display-3/#typedef-display-outside 1 1 - +<divergence/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_divergence + +1 +- +<divergence/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_divergence + +1 +- +<divide/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_divide + +1 +- +<divide/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_divide + +1 +- +DigitalCredential +interface +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-digitalcredential +1 +1 +- +DigitalCredentialRequestOptions +dictionary +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-digitalcredentialrequestoptions +1 +1 +- +DigitalCredentialsProvider +dictionary +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-digitalcredentialsprovider +1 +1 +- DigitalGoodsService interface digital-goods @@ -564,6 +675,26 @@ https://wicg.github.io/digital-goods/#digitalgoodsservice 1 1 - +DirectFromSellerSignalsForBuyer +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-directfromsellersignalsforbuyer +1 +1 +- +DirectFromSellerSignalsForSeller +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-directfromsellersignalsforseller +1 +1 +- DirectionSetting enum webvtt1 @@ -594,6 +725,16 @@ https://wicg.github.io/file-system-access/#dictdef-directorypickeroptions 1 1 - +DisconnectedAccount +dictionary +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dictdef-disconnectedaccount +1 +1 +- Dispatch error abstract-op webgpu @@ -692,8 +833,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-direction + 1 -1 +RTCRtpTransceiver - [[DischargingTime]] attribute @@ -752,6 +894,17 @@ PublicKeyCredential - [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) method +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-discoverfromexternalsource-origin-options-sameoriginwithancestors +1 +1 +DigitalCredential +- +[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) +method web-otp web-otp 1 @@ -840,6 +993,17 @@ PublicKeyCredential - [[discovery]] attribute +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-discovery +1 +1 +DigitalCredential +- +[[discovery]] +attribute credential-management-1 credential-management 1 @@ -915,6 +1079,28 @@ https://streams.spec.whatwg.org/#readablestream-disturbed 1 ReadableStream - +_disambiguate_template +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_disambiguate_template + +1 +syntax_sym +- +_disambiguate_template +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_disambiguate_template + +1 +syntax_sym +- d-interpretation dfn rdf12-semantics @@ -925,6 +1111,296 @@ https://w3c.github.io/rdf-semantics/spec/#dfn-d-interpretation 1 - +d-interpretation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-d-interpretation + +1 +- +diagnostic +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#attribute-diagnostic + +1 +attribute +- +diagnostic +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic + +1 +- +diagnostic +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-diagnostic + +1 +syntax_kw +- +diagnostic +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#attribute-diagnostic + +1 +attribute +- +diagnostic +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic + +1 +- +diagnostic +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_kw-diagnostic + +1 +syntax_kw +- +diagnostic filter +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-filter + +1 +- +diagnostic filter +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic-filter + +1 +- +diagnostic name-token +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-name-token + +1 +- +diagnostic name-token +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic-name-token + +1 +- +diagnostic_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-diagnostic_attr + +1 +syntax +- +diagnostic_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-diagnostic_attr + +1 +syntax +- +diagnostic_control +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-diagnostic_control + +1 +recursive descent syntax +- +diagnostic_control +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-diagnostic_control + +1 +syntax +- +diagnostic_control +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-diagnostic_control + +1 +recursive descent syntax +- +diagnostic_control +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-diagnostic_control + +1 +syntax +- +diagnostic_directive +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-diagnostic_directive + +1 +syntax +- +diagnostic_directive +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-diagnostic_directive + +1 +syntax +- +diagnostic_name_token +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-diagnostic_name_token + +1 +syntax +- +diagnostic_name_token +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-diagnostic_name_token + +1 +syntax +- +diagnostic_rule_name +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-diagnostic_rule_name + +1 +recursive descent syntax +- +diagnostic_rule_name +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-diagnostic_rule_name + +1 +syntax +- +diagnostic_rule_name +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-diagnostic_rule_name + +1 +recursive descent syntax +- +diagnostic_rule_name +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-diagnostic_rule_name + +1 +syntax +- +diagonal +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mltriangularoptions-diagonal +1 +1 +MLTriangularOptions +- +diagonal +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mltriangularoptions-diagonal +1 +1 +MLTriangularOptions +- diagonal-fractions value css-fonts-4 @@ -947,26 +1423,6 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-numeric-diagonal-fraction 1 font-variant-numeric - -dial -dfn -presentation-api -presentation-api -1 -current -https://w3c.github.io/presentation-api/#dfn-dial - -1 -- -dial -dfn -presentation-api -presentation-api -1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-dial - -1 -- dialog dfn html @@ -987,7 +1443,8 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs- 1 1 form/method -button/method +button/formmethod +input/formmethod - dialog element @@ -1070,27 +1527,36 @@ https://webidl.spec.whatwg.org/#idl-dictionary 1 - -did not come from a signed exchange +did dfn -webpackage -webpackage +vc-data-model-2.0 +vc-data-model 1 current -https://wicg.github.io/webpackage/loading.html#response-came-from-a-signed-exchange +https://w3c.github.io/vc-data-model/#dfn-decentralized-identifiers + +1 +- +did +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-decentralized-identifiers 1 -response - -did process scroll behavior +did not come from a signed exchange dfn -navigation-api -navigation-api +webpackage +webpackage 1 current -https://wicg.github.io/navigation-api/#navigateevent-did-process-scroll-behavior +https://wicg.github.io/webpackage/loading.html#response-came-from-a-signed-exchange 1 -NavigateEvent +response - did-perform-automatic-track-selection dfn @@ -1124,6 +1590,26 @@ https://www.w3.org/TR/requestidlecallback/#dom-idledeadline-didtimeout 1 IdleDeadline - +dids +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-decentralized-identifiers + +1 +- +dids +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-decentralized-identifiers + +1 +- difference value compositing-1 @@ -1144,7 +1630,18 @@ current https://drafts.fxtf.org/compositing-2/#valdef-blend-mode-difference 1 1 -<blend-mode> +<blend-mode> +- +difference +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#set-difference + +1 +set - difference value @@ -1157,6 +1654,17 @@ https://www.w3.org/TR/compositing-1/#valdef-blend-mode-difference 1 <blend-mode> - +difference(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.difference +1 +1 +Set +- differs significantly dfn layout-instability @@ -1238,7 +1746,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-digest -1 + 1 - digest() @@ -1263,6 +1771,26 @@ https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-digest 1 SubtleCrypto - +digestmultibase +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-digestmultibase + +1 +- +digestmultibase +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-digestmultibase + +1 +- digit dfn css-syntax-3 @@ -1281,6 +1809,87 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#digit 1 +1 +- +digital +dict-member +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-credentialrequestoptions-digital +1 +1 +CredentialRequestOptions +- +digital credential +dfn +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-digital-credential + +1 +- +digital publication +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-digital-publications + +1 +- +digital publication +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-digital-publications + +1 +- +digital publication's +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-digital-publications + +1 +- +digital publication's +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-digital-publications + +1 +- +digital publications +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-digital-publications + +1 +- +digital publications +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-digital-publications + 1 - digital signature @@ -1599,6 +2208,28 @@ https://html.spec.whatwg.org/multipage/embedded-content-other.html#dimension-att 1 - +dimensionality +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texture-dimensionality + +1 +texture +- +dimensionality +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texture-dimensionality + +1 +texture +- dimensions dict-member webnn @@ -1641,6 +2272,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-dimgray 1 1 <color> +<named-color> - dimgray dfn @@ -1662,6 +2294,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-dimgray 1 1 <color> +<named-color> - dimgrey dfn @@ -1683,6 +2316,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-dimgrey 1 1 <color> +<named-color> - dimgrey dfn @@ -1704,6 +2338,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-dimgrey 1 1 <color> +<named-color> - dir argument @@ -1925,13 +2560,13 @@ https://www.w3.org/TR/css-nav-1/#dom-window-navigate-dir-dir Window/navigate(dir) - dir -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-dir - +1 1 - dir @@ -2045,6 +2680,17 @@ AttestationConveyancePreference - direct enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardaccessmode-direct +1 +1 +SmartCardAccessMode +- +direct +enum-value webauthn-3 webauthn 3 @@ -2076,6 +2722,57 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-funct 1 ECMAScript - +direct from seller signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#direct-from-seller-signals + +1 +- +direct from seller signals header ad slot +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-direct-from-seller-signals-header-ad-slot + +1 +auction config +- +direct from seller signals key +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#direct-from-seller-signals-key + +1 +- +direct individualization +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-direct-individualization + +1 +- +direct individualization +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-direct-individualization + +1 +- direct manipulation dfn pointerevents3 @@ -2116,6 +2813,39 @@ https://www.w3.org/TR/pointerevents3/#dfn-direct-manipulation-behavior 1 - +direct seller is seller +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-direct-seller-is-seller +1 +1 +fenced frame reporting metadata +- +direct-sockets +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-direct-sockets + +1 +policy-controlled feature +- +directFromSellerSignalsHeaderAdSlot +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-directfromsellersignalsheaderadslot +1 +1 +AuctionAdConfig +- directed progress dfn web-animations-1 @@ -2433,6 +3163,26 @@ USBEndpoint/USBEndpoint(alternate, endpointNumber, direction) USBEndpoint/constructor(alternate, endpointNumber, direction) - direction +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-direction +1 +1 +- +direction +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-direction +1 +1 +- +direction dfn css22 css @@ -2798,6 +3548,26 @@ css-logical current https://drafts.csswg.org/css-logical-1/#directional-keyword +1 +- +directional language-tagged string +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-dir-lang-string + +1 +- +directional language-tagged string +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-dir-lang-string + 1 - directional override @@ -2838,6 +3608,16 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#directional-override 1 +1 +- +directionality +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#the-directionality + 1 - directionality of an attribute @@ -2995,6 +3775,27 @@ https://www.w3.org/TR/CSP3/#policy-directive-set 1 policy - +directive state +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#directive-state + +1 +- +directive state +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#she-directive-state + +1 +she +- directive-name grammar csp3 @@ -3043,6 +3844,16 @@ csp current https://w3c.github.io/webappsec-csp/#directives 1 +1 +- +directives +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#directives + 1 - directives @@ -3065,14 +3876,24 @@ https://drafts.csswg.org/web-animations-2/#directly-associated-with-an-animation 1 - -director +directly associated with an animation dfn -w3c-process -w3c-process +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#directly-associated-with-an-animation + 1 -current -https://www.w3.org/Consortium/Process/#def-Director +- +directory +dfn +entries-api +entries-api 1 +current +https://wicg.github.io/entries-api/#directory + 1 - directory @@ -3081,9 +3902,10 @@ entries-api entries-api 1 current -https://wicg.github.io/entries-api/#directory +https://wicg.github.io/entries-api/#filesystemdirectoryreader-directory 1 +FileSystemDirectoryReader - directory entry dfn @@ -3105,14 +3927,24 @@ https://wicg.github.io/entries-api/#directory-entry 1 - -directory reader +directory id dfn -entries-api -entries-api +device-attributes +device-attributes 1 current -https://wicg.github.io/entries-api/#directory-reader +https://wicg.github.io/WebApiDevice/device_attributes/#directory-id +1 +- +directory locator +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#directory-locator +1 1 - dirname @@ -3124,12 +3956,7 @@ current https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-dirname 1 1 -button -fieldset input -object -output -select textarea - dirtiness @@ -3485,14 +4312,15 @@ https://html.spec.whatwg.org/multipage/form-elements.html#dom-option-disabled HTMLOptionElement - disabled -dfn +enum-value html html 1 current https://html.spec.whatwg.org/multipage/media.html#dom-texttrack-disabled - 1 +1 +TextTrackMode - disabled dfn @@ -3538,6 +4366,16 @@ https://html.spec.whatwg.org/multipage/semantics.html#dom-style-disabled HTMLStyleElement - disabled +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-disabled + +1 +- +disabled dict-member cssom-1 cssom @@ -3554,10 +4392,20 @@ cssom-1 cssom 1 snapshot -https://www.w3.org/TR/cssom-1/#dom-stylesheet-disabled -1 +https://www.w3.org/TR/cssom-1/#dom-stylesheet-disabled +1 +1 +StyleSheet +- +disabled +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-disabled + 1 -StyleSheet - disabled fieldset dfn @@ -3633,6 +4481,17 @@ https://www.w3.org/TR/cssom-1/#concept-css-style-sheet-disallow-modification-fla 1 CSSStyleSheet - +disallowReturnToOpener +dict-member +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureoptions-disallowreturntoopener +1 +1 +DocumentPictureInPictureOptions +- disallowed enum-value autoplay-detection @@ -3655,6 +4514,28 @@ https://www.w3.org/TR/autoplay-detection/#dom-autoplaypolicy-disallowed 1 AutoplayPolicy - +disallowrecursion +dfn +device-posture +device-posture +1 +current +https://w3c.github.io/device-posture/#dfn-disallowrecursion + +1 +device posture change steps +- +disallowrecursion +dfn +device-posture +device-posture +1 +snapshot +https://www.w3.org/TR/device-posture/#dfn-disallowrecursion + +1 +device posture change steps +- disassociate animator instance of worklet animation dfn css-animation-worklet-1 @@ -3699,6 +4580,26 @@ list-style-type - disc value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-disc +1 +1 +- +disc +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-disc +1 +1 +- +disc +value css-counter-styles-3 css-counter-styles 3 @@ -3736,10 +4637,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-discard +https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-discard 1 1 -text-space-collapse +white-space-collapse - discard dfn @@ -3829,17 +4730,6 @@ margin-break - discard value -css-overflow-3 -css-overflow -3 -snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-continue-discard -1 -1 -continue -- -discard -value css-overflow-4 css-overflow 4 @@ -3855,10 +4745,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-collapse-discard +https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-discard 1 1 -text-space-collapse +white-space-collapse - discard enum-value @@ -3871,16 +4761,59 @@ https://www.w3.org/TR/webcodecs/#dom-alphaoption-discard 1 AlphaOption - +discard a mark +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-mark + +1 +token stream +- +discard a token +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-token + +1 +token stream +- +discard tokens +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#discard-tokens + +1 +- +discard whitespace +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-discard-whitespace + +1 +token stream +- discard-after value css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-trim-discard-after +https://drafts.csswg.org/css-text-4/#valdef-white-space-trim-discard-after 1 1 -text-space-trim +white-space-trim - discard-after value @@ -3888,10 +4821,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-after +https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-after 1 1 -text-space-trim +white-space-trim - discard-before value @@ -3899,10 +4832,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-trim-discard-before +https://drafts.csswg.org/css-text-4/#valdef-white-space-trim-discard-before 1 1 -text-space-trim +white-space-trim - discard-before value @@ -3910,10 +4843,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-before +https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-before 1 1 -text-space-trim +white-space-trim - discard-inner value @@ -3921,10 +4854,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-trim-discard-inner +https://drafts.csswg.org/css-text-4/#valdef-white-space-trim-discard-inner 1 1 -text-space-trim +white-space-trim - discard-inner value @@ -3932,10 +4865,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-inner +https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-inner 1 1 -text-space-trim +white-space-trim - discarded dfn @@ -4155,6 +5088,16 @@ remote-playback snapshot https://www.w3.org/TR/remote-playback/#dfn-disconnect 1 +1 +- +disconnect endpoint +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#disconnect-endpoint + 1 - disconnect from a remote playback device @@ -4201,6 +5144,17 @@ ResizeObserver - disconnect() method +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredential-disconnect +1 +1 +IdentityCredential +- +disconnect() +method intersection-observer intersection-observer 1 @@ -4267,6 +5221,17 @@ BluetoothRemoteGATTServer - disconnect() method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-disconnect +1 +1 +SmartCardConnection +- +disconnect() +method compute-pressure compute-pressure 1 @@ -4441,6 +5406,28 @@ https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output 1 AudioNode - +disconnect(disposition) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-disconnect +1 +1 +SmartCardConnection +- +disconnect(options) +method +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredential-disconnect +1 +1 +IdentityCredential +- disconnect(output) method webaudio @@ -4463,6 +5450,28 @@ https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output 1 AudioNode - +disconnect_endpoint +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityproviderapiconfig-disconnect_endpoint +1 +1 +IdentityProviderAPIConfig +- +disconnected +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#compute-the-connection-status-disconnected + +1 +compute the connection status +- disconnected enum-value remote-playback @@ -4531,6 +5540,17 @@ RemotePlaybackState - disconnected enum-value +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiportdevicestate-disconnected +1 +1 +MIDIPortDeviceState +- +disconnected +enum-value webrtc webrtc 1 @@ -4734,6 +5754,16 @@ webauthn current https://w3c.github.io/webauthn/#discoverablecredentialmetadata +1 +- +discoverablecredentialmetadata +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#discoverablecredentialmetadata + 1 - discrete @@ -4822,13 +5852,13 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-ligatures-discretionary-l 1 font-variant-ligatures - -dismiss +disentangle dfn -webdriver2 -webdriver -2 +html +html +1 current -https://w3c.github.io/webdriver/#dfn-dismissed +https://html.spec.whatwg.org/multipage/web-messaging.html#disentangle 1 - @@ -4837,68 +5867,58 @@ dfn webdriver2 webdriver 2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-dismissed +current +https://w3c.github.io/webdriver/#dfn-dismissed 1 - -dismiss alert +dismiss dfn -webdriver2 -webdriver -2 +w3c-process +w3c-process +1 current -https://w3c.github.io/webdriver/#dfn-dismiss-alert +https://www.w3.org/Consortium/Process/#dismissed 1 - -dismiss alert +dismiss dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-dismiss-alert +https://www.w3.org/TR/webdriver2/#dfn-dismissed 1 - -dismiss and notify state +dismiss alert dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-dismiss-and-notify-state +https://w3c.github.io/webdriver/#dfn-dismiss-alert 1 - -dismiss and notify state +dismiss alert dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-dismiss-and-notify-state +https://www.w3.org/TR/webdriver2/#dfn-dismiss-alert 1 - -dismiss state +dismissal dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-dismiss-state - +w3c-process +w3c-process 1 -- -dismiss state -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-dismiss-state +current +https://www.w3.org/Consortium/Process/#dismissed 1 - @@ -4925,6 +5945,16 @@ AppBannerPromptOutcome - dismissed dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#dismissed + +1 +- +dismissed +dfn webdriver2 webdriver 2 @@ -4961,26 +5991,6 @@ dom current https://dom.spec.whatwg.org/#concept-event-dispatch 1 -1 -- -dispatch -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#dispatch - -1 -- -dispatch -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#dispatch - 1 - dispatch a composition event @@ -5241,6 +6251,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-dispatch-actions-inner +1 +- +dispatch character bounds update event +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-dispatch-character-bounds-update-event + 1 - dispatch command @@ -5310,7 +6330,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dispatch-pending-event-timing-entries +https://w3c.github.io/event-timing/#dispatch-pending-event-timing-entries 1 1 - @@ -5324,6 +6344,50 @@ https://www.w3.org/TR/event-timing/#dispatch-pending-event-timing-entries 1 1 - +dispatch pending scrollsnapchange events +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#document-dispatch-pending-scrollsnapchange-events +1 +1 +Document +- +dispatch pending scrollsnapchange events +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#document-dispatch-pending-scrollsnapchange-events +1 +1 +Document +- +dispatch pending scrollsnapchanging events +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#document-dispatch-pending-scrollsnapchanging-events +1 +1 +Document +- +dispatch pending scrollsnapchanging events +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#document-dispatch-pending-scrollsnapchanging-events +1 +1 +Document +- dispatch size dfn wgsl @@ -5342,6 +6406,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#dispatch-size +1 +- +dispatch text format update event +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-dispatch-text-format-update-event + +1 +- +dispatch text update event +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-dispatch-text-update-event + 1 - dispatch the event @@ -5394,28 +6478,6 @@ https://www.w3.org/TR/webdriver2/#dfn-dispatch-tick-actions 1 - -dispatch(graph, inputs, outputs) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-dispatch -1 -1 -MLCommandEncoder -- -dispatch(graph, inputs, outputs) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-dispatch -1 -1 -MLCommandEncoder -- dispatchEvent(event) method dom @@ -5699,6 +6761,26 @@ content-index current https://wicg.github.io/content-index/spec/#display +1 +- +display +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-display +1 +1 +- +display +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-display +1 1 - display @@ -5733,14 +6815,37 @@ https://www.w3.org/TR/css-display-3/#propdef-display 1 - display -dfn +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-display +1 +1 +FontFace +- +display +dict-member +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacedescriptors-display +1 +1 +FontFaceDescriptors +- +display +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-display - 1 +1 +math - display frame rate dfn @@ -5764,11 +6869,21 @@ https://www.w3.org/TR/webxr/#display-frame-rate - display mode dfn -mediaqueries-5 -mediaqueries -5 +appmanifest +appmanifest +1 current -https://drafts.csswg.org/mediaqueries-5/#display-mode +https://w3c.github.io/manifest/#dfn-display-mode +1 +1 +- +display mode +dfn +appmanifest +appmanifest +1 +snapshot +https://www.w3.org/TR/appmanifest/#dfn-display-mode 1 1 - @@ -5830,16 +6945,6 @@ html current https://html.spec.whatwg.org/multipage/iframe-embed-object.html#display-no-plugin -1 -- -display property -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-display-property - 1 - display size @@ -6161,7 +7266,7 @@ VideoFrameInit - displayItems dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -6172,11 +7277,11 @@ PaymentDetailsBase - displayItems dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-displayitems +https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-displayitems 1 1 PaymentDetailsBase @@ -6236,6 +7341,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialuserentity-displayname 1 PublicKeyCredentialUserEntity - +displayName +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialuserentityjson-displayname +1 +1 +PublicKeyCredentialUserEntityJSON +- displaySurface dict-member screen-capture @@ -6464,13 +7580,13 @@ https://w3c.github.io/mathml-core/#dfn-displaystyle 1 - displaystyle -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-displaystyle - +1 1 - displaysurface @@ -6495,11 +7611,11 @@ https://www.w3.org/TR/screen-capture/#dfn-displaysurface - dispose event -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#eventdef-navigationhistoryentry-dispose +https://html.spec.whatwg.org/multipage/indices.html#event-dispose 1 1 NavigationHistoryEntry @@ -6658,6 +7774,16 @@ https://www.w3.org/TR/permissions-policy-1/#permissionspolicyviolationreportbody 1 PermissionsPolicyViolationReportBody - +disregarding +dfn +css-ui-4 +css-ui +4 +current +https://drafts.csswg.org/css-ui-4/#disregarding + +1 +- dissent dfn w3c-process @@ -6679,17 +7805,6 @@ https://w3c.github.io/proximity/#distance 1 - distance -dict-member -proximity -proximity -1 -current -https://w3c.github.io/proximity/#dom-proximityreadingvalues-distance -1 -1 -ProximityReadingValues -- -distance attribute proximity proximity @@ -6711,17 +7826,6 @@ https://www.w3.org/TR/proximity/#distance 1 - distance -dict-member -proximity -proximity -1 -snapshot -https://www.w3.org/TR/proximity/#dom-proximityreadingvalues-distance -1 -1 -ProximityReadingValues -- -distance attribute proximity proximity @@ -6806,31 +7910,131 @@ https://www.w3.org/TR/webaudio/#dom-panneroptions-distancemodel 1 PannerOptions - -distinctive permanent identifier +distinctive +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-distinctive + +1 +- +distinctive +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-distinctive + +1 +- +distinctive identifier +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-distinctive-identifier-s + +1 +- +distinctive identifier +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-distinctive-identifier-s + +1 +- +distinctive identifier(s) dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-distinctive-identifier-s + +1 +- +distinctive identifier(s) +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-distinctive-identifier-s + 1 +- +distinctive permanent identifier +dfn +encrypted-media-2 +encrypted-media +2 current -https://w3c.github.io/encrypted-media/#distinctive-permanent-identifier +https://w3c.github.io/encrypted-media/#dfn-distinctive-permanent-identifier-s 1 - distinctive permanent identifier dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-distinctive-permanent-identifier-s + +1 +- +distinctive permanent identifier(s) +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-distinctive-permanent-identifier-s + 1 +- +distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#distinctive-permanent-identifier +https://www.w3.org/TR/encrypted-media-2/#dfn-distinctive-permanent-identifier-s 1 - -distinctiveIdentifier -dict-member +distinctive value +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-distinctive + +1 +- +distinctive value +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-distinctive + 1 +- +distinctiveIdentifier +dict-member +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-distinctiveidentifier 1 @@ -6850,6 +8054,17 @@ MediaCapabilitiesKeySystemConfiguration - distinctiveIdentifier dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-distinctiveidentifier +1 +1 +MediaKeySystemConfiguration +- +distinctiveIdentifier +dict-member media-capabilities media-capabilities 1 @@ -6859,17 +8074,6 @@ https://www.w3.org/TR/media-capabilities/#dom-mediacapabilitieskeysystemconfigur 1 MediaCapabilitiesKeySystemConfiguration - -distinctiveidentifier -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-distinctiveidentifier - -1 -mediakeysystemconfiguration -- distinguishable dfn webidl @@ -7086,6 +8290,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssnumericvalue-div 1 CSSNumericValue - +div() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-div +1 +1 +CSSNumericValue +- div(...values) method css-typed-om-1 @@ -7130,6 +8345,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div 1 MLGraphBuilder - +div(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-div +1 +1 +MLGraphBuilder +- +div(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div +1 +1 +MLGraphBuilder +- division_equal dfn wgsl diff --git a/bikeshed/spec-data/readonly/anchors/anchors-dn.data b/bikeshed/spec-data/readonly/anchors/anchors-dn.data index 21a77447e4..41933b9162 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-dn.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-dn.data @@ -1,6 +1,16 @@ +dn-unfenced +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dn-unfenced + +1 +- dns resolution dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -10,11 +20,11 @@ https://w3c.github.io/network-error-logging/#dfn-dns-resolution - dns resolution dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-dns-resolution +https://www.w3.org/TR/network-error-logging/#dfn-dns-resolution 1 - @@ -29,53 +39,46 @@ https://html.spec.whatwg.org/multipage/links.html#link-type-dns-prefetch 1 link/rel - -dns-prefetch -dfn -resource-hints -resource-hints +dnsQueryType +dict-member +direct-sockets +direct-sockets 1 current -https://w3c.github.io/resource-hints/#dfn-dns-prefetch - +https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions-dnsquerytype +1 1 +TCPSocketOptions - -dns-prefetch -dfn -resource-hints -resource-hints +dnsQueryType +dict-member +direct-sockets +direct-sockets 1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-dns-prefetch +current +https://wicg.github.io/direct-sockets/#dom-udpmessage-dnsquerytype 1 1 +UDPMessage - -dnt -dfn -tracking-dnt -tracking-dnt +dnsQueryType +dict-member +direct-sockets +direct-sockets 1 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-dnt - - -- -dnt -dfn -tracking-dnt -tracking-dnt +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-dnsquerytype 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-dnt - 1 +UDPSocketOptions - -dnt:0 +dnt dfn tracking-dnt tracking-dnt 1 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-dnt-0 +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-dnt - @@ -84,10 +87,10 @@ dfn tracking-dnt tracking-dnt 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-dnt-0 +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-dnt-0 + -1 - dnt:1 dfn @@ -99,13 +102,3 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-dnt-1 - -dnt:1 -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-dnt-1 - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-do.data b/bikeshed/spec-data/readonly/anchors/anchors-do.data index be37fe5100..8fd9388533 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-do.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-do.data @@ -97,6 +97,46 @@ https://wicg.github.io/file-system-access/#dom-wellknowndirectory-downloads 1 WellKnownDirectory - +<domain/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_domain + +1 +- +<domain/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_domain + +1 +- +<domainofapplication> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_domainofapplication + +1 +- +<domainofapplication> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_domainofapplication + +1 +- DOCUMENT_FRAGMENT_NODE const dom @@ -1274,6 +1314,26 @@ https://xhr.spec.whatwg.org/#dom-xmlhttprequest-done 1 XMLHttpRequest - +DoWait +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-dowait +1 +1 +- +DoWait(mode, typedArray, index, value, timeout) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-dowait +1 +1 +- Document interface dom @@ -1326,6 +1386,57 @@ https://dom.spec.whatwg.org/#documentorshadowroot 1 1 - +DocumentPictureInPicture +interface +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#documentpictureinpicture +1 +1 +- +DocumentPictureInPictureEvent +interface +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#documentpictureinpictureevent +1 +1 +- +DocumentPictureInPictureEvent(type, eventInitDict) +constructor +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureevent-documentpictureinpictureevent +1 +1 +DocumentPictureInPictureEvent +- +DocumentPictureInPictureEventInit +dictionary +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dictdef-documentpictureinpictureeventinit +1 +1 +- +DocumentPictureInPictureOptions +dictionary +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dictdef-documentpictureinpictureoptions +1 +1 +- DocumentReadyState enum html @@ -1440,6 +1551,26 @@ https://html.spec.whatwg.org/multipage/dom.html#documentvisibilitystate 1 1 - +Does sink type require trusted types? +abstract-op +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-does-sink-type-require-trusted-types +1 +1 +- +Does sink type require trusted types? +abstract-op +trusted-types +trusted-types +1 +snapshot +https://www.w3.org/TR/trusted-types/#abstract-opdef-does-sink-type-require-trusted-types +1 +1 +- DoubleRange dictionary mediacapture-streams @@ -1478,8 +1609,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-documentorigin + 1 -1 +RTCPeerConnection - do bytes match metadatalist? dfn @@ -1706,16 +1838,6 @@ dom current https://dom.spec.whatwg.org/#concept-document 1 -1 -- -document -dfn -css-backgrounds-3 -css-backgrounds -3 -current -https://drafts.csswg.org/css-backgrounds-3/#document - 1 - document @@ -1801,35 +1923,26 @@ https://html.spec.whatwg.org/multipage/webappapis.html#concept-task-document 1 - document -attribute -json-ld11-api -json-ld-api +dfn +device-posture +device-posture 1 current -https://w3c.github.io/json-ld-api/#dom-remotedocument-document -1 +https://w3c.github.io/device-posture/#dfn-document + 1 -RemoteDocument +device posture change steps - document -dfn -uievents -uievents +attribute +json-ld11-api +json-ld-api 1 current -https://w3c.github.io/uievents/#document - +https://w3c.github.io/json-ld-api/#dom-remotedocument-document 1 -- -document -dfn -css-backgrounds-3 -css-backgrounds -3 -snapshot -https://www.w3.org/TR/css-backgrounds-3/#document - 1 +RemoteDocument - document dfn @@ -1863,6 +1976,17 @@ https://www.w3.org/TR/cssom-view-1/#mediaquerylist-document MediaQueryList - document +dfn +device-posture +device-posture +1 +snapshot +https://www.w3.org/TR/device-posture/#dfn-document + +1 +device posture change steps +- +document attribute json-ld11-api json-ld-api @@ -1873,16 +1997,6 @@ https://www.w3.org/TR/json-ld11-api/#dom-remotedocument-document 1 RemoteDocument - -document -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#document - -1 -- document `accept` header value dfn fetch @@ -1929,7 +2043,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_document_character_set +https://w3c.github.io/i18n-glossary/#dfn-document-character-set 1 - @@ -1939,7 +2053,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_document_character_set +https://www.w3.org/TR/i18n-glossary/#dfn-document-character-set 1 - @@ -1985,6 +2099,48 @@ https://www.w3.org/TR/web-animations-1/#animation-document-for-timing 1 animation - +document has implicit focus +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-document-has-implicit-focus + +1 +- +document has implicit focus +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-document-has-implicit-focus + +1 +- +document id +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#document-id-header-document-id + +1 +document-id-header +- +document id +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topics-history-entry-document-id + +1 +topics history entry +- document language dfn css22 @@ -2007,6 +2163,26 @@ https://drafts.csswg.org/selectors-4/#document-language - document language dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#doclanguage +1 +1 +- +document language +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#doclanguage +1 +1 +- +document language +dfn selectors-4 selectors 4 @@ -2185,6 +2361,16 @@ css-paint-api snapshot https://www.w3.org/TR/css-paint-api-1/#document-paint-definitions +1 +- +document picture-in-picture support +dfn +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#document-picture-in-picture-support + 1 - document policy @@ -2297,6 +2483,16 @@ current https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-document-state 1 +- +document time space +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#document-time-space + + - document timeline dfn @@ -2336,6 +2532,26 @@ css current https://drafts.csswg.org/css2/#doctree +1 +- +document tree +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#doctree +1 +1 +- +document tree +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#doctree +1 1 - document unload timing info @@ -2466,6 +2682,16 @@ document-policy current https://wicg.github.io/document-policy/#document-policy-report-only-header 1 +1 +- +document-scoped view transition name +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#document-scoped-view-transition-name + 1 - document-tree child navigable target name property set @@ -2488,7 +2714,7 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#document-tree-chi 1 - -document.write(...) +document.write(...text) method html html @@ -2499,7 +2725,7 @@ https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-documen 1 Document - -document.writeln(...) +document.writeln(...text) method html html @@ -2543,6 +2769,17 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonldoptions-documentloader 1 JsonLdOptions - +documentPictureInPicture +attribute +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-window-documentpictureinpicture +1 +1 +Window +- documentURI attribute dom @@ -2642,6 +2879,17 @@ https://www.w3.org/TR/json-ld11-api/#dom-remotedocument-documenturl 1 RemoteDocument - +documentpictureinpicture api +dfn +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#window-documentpictureinpicture-api + +1 +Window +- documentresource dfn html @@ -2649,8 +2897,9 @@ html 1 current https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-resource - 1 +1 +navigate - dodgerblue dfn @@ -2672,6 +2921,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-dodgerblue 1 1 <color> +<named-color> - dodgerblue dfn @@ -2693,6 +2943,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-dodgerblue 1 1 <color> +<named-color> - does filter data match dfn @@ -2747,6 +2998,26 @@ https://wicg.github.io/webpackage/loading.html#certificate-chain-has-a-trusted-l 1 certificate chain - +does url match expression in origin with redirect count? +dfn +csp3 +csp +3 +current +https://w3c.github.io/webappsec-csp/#match-url-to-source-expression +1 +1 +- +does url match expression in origin with redirect count? +dfn +csp3 +csp +3 +snapshot +https://www.w3.org/TR/CSP3/#match-url-to-source-expression +1 +1 +- doesn't match the stored exchange dfn webpackage @@ -2765,26 +3036,6 @@ html current https://html.spec.whatwg.org/multipage/interaction.html#dom-anchor -1 -- -dom application -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#dom-application - -1 -- -dom application -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#dom-application - 1 - dom complete time @@ -2839,26 +3090,6 @@ html current https://html.spec.whatwg.org/multipage/dom.html#concept-element-dom -1 -- -dom level 0 -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#dom-level-0 - -1 -- -dom level 0 -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#dom-level-0 - 1 - dom manipulation task source @@ -2881,28 +3112,6 @@ https://html.spec.whatwg.org/multipage/dom.html#dom-tree-accessors 1 - -dom update callback -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#viewtransition-dom-update-callback - -1 -ViewTransition -- -dom updated promise -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#viewtransition-dom-updated-promise - -1 -ViewTransition -- dom-domparser dfn dom-parsing @@ -3258,17 +3467,6 @@ https://www.w3.org/TR/webxr-dom-overlays-1/#dom-xrsession-domoverlaystate 1 XRSession - -domUpdated -attribute -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#dom-viewtransition-domupdated -1 -1 -ViewTransition -- domactivate dfn uievents @@ -3469,6 +3667,17 @@ https://url.spec.whatwg.org/#domain-to-unicode 1 - +domainHint +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityproviderrequestoptions-domainhint +1 +1 +IdentityProviderRequestOptions +- domainLookupEnd attribute navigation-timing-2 @@ -3557,6 +3766,17 @@ https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming-domainlooku 1 PerformanceResourceTiming - +domain_hints +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityprovideraccount-domain_hints +1 +1 +IdentityProviderAccount +- domattrmodified dfn uievents @@ -3595,16 +3815,6 @@ uievents snapshot https://www.w3.org/TR/uievents/#domcharacterdatamodified -1 -- -domerror -dfn -webmidi -webmidi -1 -snapshot -https://www.w3.org/TR/webmidi/#dfn-domerror -1 1 - domexception @@ -3614,6 +3824,16 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-DOMException + +1 +- +domexception names table +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-error-names-table 1 1 - @@ -3846,16 +4066,6 @@ uievents snapshot https://www.w3.org/TR/uievents/#domnoderemovedfromdocument -1 -- -domstring -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-domstring - 1 - domstring @@ -3875,7 +4085,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-DOMString -1 + 1 - domstring @@ -3936,7 +4146,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-done +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-done 1 1 constructor string parser/state @@ -3969,9 +4179,10 @@ entries-api entries-api 1 current -https://wicg.github.io/entries-api/#done-flag +https://wicg.github.io/entries-api/#filesystemdirectoryreader-done-flag 1 +FileSystemDirectoryReader - done flag dfn @@ -3984,17 +4195,6 @@ https://www.w3.org/TR/IndexedDB-3/#request-done-flag 1 request - -donottrack -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-donottrack - -1 -navigator -- dot value css-text-decor-3 @@ -4095,6 +4295,37 @@ border-left-style border-style - dotted +enum-value +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-underlinestyle-dotted +1 +1 +UnderlineStyle +- +dotted +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-dotted +1 +1 +- +dotted +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-dotted +1 +1 +- +dotted value css-backgrounds-3 css-backgrounds @@ -4167,6 +4398,26 @@ https://webidl.spec.whatwg.org/#idl-double - double value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-double +1 +1 +- +double +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-double +1 +1 +- +double +value css-backgrounds-3 css-backgrounds 3 @@ -4454,22 +4705,22 @@ BackgroundFetchRegistration - downloadRequest attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-downloadrequest +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-downloadrequest 1 1 NavigateEvent - downloadRequest dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-downloadrequest +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-downloadrequest 1 1 NavigateEventInit @@ -4518,43 +4769,3 @@ https://wicg.github.io/background-fetch/#dom-backgroundfetchregistration-downloa 1 BackgroundFetchRegistration - -downstream -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-downstream-node - -1 -- -downstream -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-downstream-node - -1 -- -downstream node -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-downstream-node - -1 -- -downstream node -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-downstream-node - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-dp.data b/bikeshed/spec-data/readonly/anchors/anchors-dp.data index 7b8762ee39..01b0fdf3fd 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-dp.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-dp.data @@ -146,8 +146,8 @@ abstract-op webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#abstract-opdef-devicepubkey-record-dpk +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-devicepubkey-record-dpk 1 1 devicePubKey record diff --git a/bikeshed/spec-data/readonly/anchors/anchors-dr.data b/bikeshed/spec-data/readonly/anchors/anchors-dr.data index fe598f835e..f9271244a6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-dr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-dr.data @@ -18,6 +18,28 @@ https://html.spec.whatwg.org/multipage/dnd.html#drageventinit 1 1 - +[[Draining]] +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-draining-slot +1 +1 +WebTransport +- +[[Draining]] +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-draining-slot +1 +1 +WebTransport +- [[drawCount]] attribute webgpu @@ -241,6 +263,26 @@ https://html.spec.whatwg.org/multipage/dnd.html#dom-draggable 1 HTMLElement - +draggable region +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-draggable-region +1 +1 +- +draggable regions +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-draggable-region +1 +1 +- dragleave event html @@ -275,6 +317,72 @@ https://html.spec.whatwg.org/multipage/dnd.html#event-dnd-dragstart GlobalEventHandlers Text - +drain_webtransport_session +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#session-signal-drain_webtransport_session + +1 +session-signal +- +drain_webtransport_session +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#session-signal-drain_webtransport_session + +1 +session-signal +- +draining +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-draining +1 +1 +WebTransport +- +draining +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#session-draining + +1 +session +- +draining +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-draining +1 +1 +WebTransport +- +draining +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#session-draining + +1 +session +- draw a bounding box from the framebuffer dfn webdriver2 @@ -333,6 +441,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#draw-command +1 +- +draw focus if needed +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/canvas.html#draw-focus-if-needed + 1 - draw(vertexCount) @@ -434,6 +552,17 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-drawfocusifnee 1 CanvasUserInterface - +drawFocusIfNeeded(path, element) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-drawfocusifneeded-path-element +1 +1 +CanvasUserInterface +- drawImage() method html @@ -599,6 +728,16 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-drawindirect 1 GPURenderCommandsMixin - +drawing +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#drawing + +1 +- drawing model dfn html @@ -619,6 +758,17 @@ https://html.spec.whatwg.org/multipage/canvas.html#drawing-state 1 - +drawingSegments +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingsegment-drawingsegments +1 +1 +HandwritingSegment +- drop value css-inline-3 @@ -663,6 +813,28 @@ https://html.spec.whatwg.org/multipage/rendering.html#drop-down-box 1 select - +drop-new-report-low-priority +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-report-replacement-result-drop-new-report-low-priority + +1 +event-level-report-replacement result +- +drop-new-report-none-to-replace +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-report-replacement-result-drop-new-report-none-to-replace + +1 +event-level-report-replacement result +- drop-shadow() function filter-effects-1 @@ -685,17 +857,6 @@ https://www.w3.org/TR/filter-effects-1/#funcdef-filter-drop-shadow 1 filter - -dropAttributes -dict-member -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-dropattributes -1 -1 -SanitizerConfig -- dropEffect attribute html @@ -707,17 +868,6 @@ https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransfer-dropeffect 1 DataTransfer - -dropElements -dict-member -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-dropelements -1 -1 -SanitizerConfig -- dropped dfn attribution-reporting-api @@ -823,50 +973,6 @@ https://www.w3.org/TR/webtransport/#dom-webtransportdatagramstats-droppedincomin 1 WebTransportDatagramStats - -droppedSamplesDuration -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats-droppedsamplesduration -1 -1 -RTCAudioSourceStats -- -droppedSamplesDuration -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-droppedsamplesduration -1 -1 -RTCAudioSourceStats -- -droppedSamplesEvents -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats-droppedsamplesevents -1 -1 -RTCAudioSourceStats -- -droppedSamplesEvents -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-droppedsamplesevents -1 -1 -RTCAudioSourceStats -- droppedVideoFrames attribute media-playback-quality diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ds.data b/bikeshed/spec-data/readonly/anchors/anchors-ds.data index b058c31284..1dbc27f46a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ds.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ds.data @@ -49,7 +49,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-d-satisfiable + 1 +- +d-satisfiable +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-d-satisfiable + 1 - dstFactor diff --git a/bikeshed/spec-data/readonly/anchors/anchors-dt.data b/bikeshed/spec-data/readonly/anchors/anchors-dt.data index ea163502b1..efde1cac93 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-dt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-dt.data @@ -16,8 +16,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-dtlstransportstate + 1 -1 +RTCDtlsTransport - [[Dtmf]] attribute @@ -37,8 +38,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-dtmf + 1 -1 +RTCRtpSender - dt element @@ -170,6 +172,16 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpsender-dtmf 1 RTCRtpSender - +dtmf playout task steps +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-dtmf-playout-task-steps + +1 +- dtstart dfn html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-du.data b/bikeshed/spec-data/readonly/anchors/anchors-du.data index 84ff7a785b..6afc7b8474 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-du.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-du.data @@ -1,22 +1,24 @@ -"dual-rumble" actuator type -dfn -gamepad-extensions -gamepad-extensions +"dual-source-blending" +enum-value +webgpu +webgpu 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-dual-rumble-actuator-type - +https://gpuweb.github.io/gpuweb/#dom-gpufeaturename-dual-source-blending 1 +1 +GPUFeatureName - -"dual-rumble" effect type -dfn -gamepad-extensions -gamepad-extensions +"dual-source-blending" +enum-value +webgpu +webgpu 1 -current -https://w3c.github.io/gamepad/extensions.html#dfn-dual-rumble-effect-type - +snapshot +https://www.w3.org/TR/webgpu/#dom-gpufeaturename-dual-source-blending 1 +1 +GPUFeatureName - [[Duration]] attribute @@ -36,8 +38,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-duration + 1 -1 +RTCDTMFSender - [[duration]] attribute @@ -113,6 +116,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-d-unsatisfiability +1 +- +d-unsatisfiability +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-d-unsatisfiability + 1 - d-unsatisfiable @@ -123,30 +136,62 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-d-unsatisfiability +1 +- +d-unsatisfiable +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-d-unsatisfiability + 1 - dual-rumble enum-value -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuatortype-dual-rumble +https://w3c.github.io/gamepad/#dom-gamepadhapticeffecttype-dual-rumble 1 1 -GamepadHapticActuatorType +GamepadHapticEffectType - dual-rumble enum-value -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 -current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticeffecttype-dual-rumble +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticeffecttype-dual-rumble 1 1 GamepadHapticEffectType - +dual_source_blending +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#extension-dual_source_blending + +1 +extension +- +dual_source_blending +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#extension-dual_source_blending + +1 +extension +- dump dfn webpackage @@ -382,6 +427,16 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#concept-duration +1 +- +duration +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry-duration + 1 - duration @@ -407,21 +462,21 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vevent-duration - duration dfn -gamepad-extensions -gamepad-extensions +audiobooks +audiobooks 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-duration +https://w3c.github.io/audiobooks/#dfn-duration 1 - duration dict-member -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadeffectparameters-duration +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-duration 1 1 GamepadEffectParameters @@ -438,6 +493,50 @@ https://w3c.github.io/hr-time/#dfn-duration - duration attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-duration +1 +1 +PerformanceLongAnimationFrameTiming +- +duration +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-duration +1 +1 +PerformanceScriptTiming +- +duration +attribute +longtasks-1 +longtasks +1 +current +https://w3c.github.io/longtasks/#dom-performancelongtasktiming-duration +1 +1 +PerformanceLongTaskTiming +- +duration +attribute +longtasks-1 +longtasks +1 +current +https://w3c.github.io/longtasks/#dom-taskattributiontiming-duration +1 +1 +TaskAttributionTiming +- +duration +attribute media-source-2 media-source 2 @@ -480,16 +579,6 @@ https://w3c.github.io/performance-timeline/#dom-performanceentry-duration PerformanceEntry - duration -dfn -resource-timing -resource-timing -1 -current -https://w3c.github.io/resource-timing/#dfn-duration - -1 -- -duration attribute server-timing server-timing @@ -645,6 +734,27 @@ AudioParam/setValueCurveAtTime(values, startTime, duration) - duration dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-duration + +1 +- +duration +dict-member +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters-duration +1 +1 +GamepadEffectParameters +- +duration +dfn hr-time-3 hr-time 3 @@ -655,6 +765,28 @@ https://www.w3.org/TR/hr-time-3/#dfn-duration - duration attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-performancelongtasktiming-duration +1 +1 +PerformanceLongTaskTiming +- +duration +attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-taskattributiontiming-duration +1 +1 +TaskAttributionTiming +- +duration +attribute media-source-2 media-source 2 @@ -697,16 +829,6 @@ https://www.w3.org/TR/performance-timeline/#dom-performanceentry-duration PerformanceEntry - duration -dfn -resource-timing -resource-timing -1 -snapshot -https://www.w3.org/TR/resource-timing/#dfn-duration - -1 -- -duration attribute server-timing server-timing @@ -752,6 +874,39 @@ OptionalEffectTiming - duration attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationtimeline-duration +1 +1 +AnimationTimeline +- +duration +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effecttiming-duration +1 +1 +EffectTiming +- +duration +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-optionaleffecttiming-duration +1 +1 +OptionalEffectTiming +- +duration +attribute webaudio webaudio 1 @@ -948,7 +1103,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceobserverinit-durationthreshold +https://w3c.github.io/event-timing/#dom-performanceobserverinit-durationthreshold 1 1 PerformanceObserverInit @@ -975,3 +1130,13 @@ https://html.spec.whatwg.org/multipage/media.html#event-media-durationchange 1 HTMLMediaElement - +during-loading navigation id for webdriver bidi +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#concept-document-navigation-id + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-dv.data b/bikeshed/spec-data/readonly/anchors/anchors-dv.data index c7849c24fd..e7b880c6f5 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-dv.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-dv.data @@ -4,7 +4,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-dvb +https://drafts.csswg.org/css-values-4/#dvb 1 1 <length> @@ -15,7 +15,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-dvb +https://www.w3.org/TR/css-values-4/#dvb 1 1 <length> @@ -31,13 +31,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-dvb 1 CSS - +dvb(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvb +1 +1 +CSS +- dvh value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-dvh +https://drafts.csswg.org/css-values-4/#dvh 1 1 <length> @@ -48,7 +59,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-dvh +https://www.w3.org/TR/css-values-4/#dvh 1 1 <length> @@ -64,13 +75,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-dvh 1 CSS - +dvh(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvh +1 +1 +CSS +- dvi value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-dvi +https://drafts.csswg.org/css-values-4/#dvi 1 1 <length> @@ -81,7 +103,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-dvi +https://www.w3.org/TR/css-values-4/#dvi 1 1 <length> @@ -97,13 +119,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-dvi 1 CSS - +dvi(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvi +1 +1 +CSS +- dvmax value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-dvmax +https://drafts.csswg.org/css-values-4/#dvmax 1 1 <length> @@ -114,7 +147,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-dvmax +https://www.w3.org/TR/css-values-4/#dvmax 1 1 <length> @@ -130,13 +163,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-dvmax 1 CSS - +dvmax(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvmax +1 +1 +CSS +- dvmin value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-dvmin +https://drafts.csswg.org/css-values-4/#dvmin 1 1 <length> @@ -147,7 +191,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-dvmin +https://www.w3.org/TR/css-values-4/#dvmin 1 1 <length> @@ -163,13 +207,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-dvmin 1 CSS - +dvmin(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvmin +1 +1 +CSS +- dvw value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-dvw +https://drafts.csswg.org/css-values-4/#dvw 1 1 <length> @@ -180,7 +235,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-dvw +https://www.w3.org/TR/css-values-4/#dvw 1 1 <length> @@ -196,3 +251,14 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-dvw 1 CSS - +dvw(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvw +1 +1 +CSS +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-dy.data b/bikeshed/spec-data/readonly/anchors/anchors-dy.data index ab6214c905..ebdb3bf417 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-dy.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-dy.data @@ -330,6 +330,16 @@ https://wicg.github.io/scheduling-apis/#scheduler-dynamic-priority-task-queue-ma 1 Scheduler - +dynamic range +dfn +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#dynamic-range +1 +1 +- dynamic statement instance dfn wgsl @@ -350,6 +360,28 @@ https://www.w3.org/TR/WGSL/#dynamic-statement-instance 1 - +dynamic view transition style sheet +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#document-dynamic-view-transition-style-sheet + +1 +document +- +dynamic view transition style sheet +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#document-dynamic-view-transition-style-sheet + +1 +document +- dynamic viewport size dfn css-values-4 @@ -434,6 +466,26 @@ https://www.w3.org/TR/mediaqueries-5/#descdef-media-dynamic-range 1 @media - +dynamic-range-limit +property +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#propdef-dynamic-range-limit +1 +1 +- +dynamic-range-limit-mix() +function +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#funcdef-dynamic-range-limit-mix +1 +1 +- dynamicOffsets argument webgpu diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ea.data b/bikeshed/spec-data/readonly/anchors/anchors-ea.data index f01044187d..bbb6f424f2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ea.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ea.data @@ -196,8 +196,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-earlycandidates + 1 -1 +RTCPeerConnection - each-line value @@ -401,6 +402,16 @@ https://tc39.es/ecma262/multipage/error-handling-and-language-extensions.html#ea 1 ECMAScript - +early error result +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-early-error-result + +1 +- early errors dfn ecmascript @@ -429,7 +440,7 @@ orientation-sensor 1 current https://w3c.github.io/orientation-sensor/#earths-reference-coordinate-system - +1 1 - earth's reference coordinate system @@ -439,7 +450,7 @@ orientation-sensor 1 snapshot https://www.w3.org/TR/orientation-sensor/#earths-reference-coordinate-system - +1 1 - ease diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ec.data b/bikeshed/spec-data/readonly/anchors/anchors-ec.data index 9c52d0544b..8e2f6c7eab 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ec.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ec.data @@ -95,7 +95,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdh-extended-derivation-steps -1 + 1 - ecdh generation steps @@ -115,7 +115,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdh-extended-generation-steps -1 + 1 - ecdh key export steps @@ -135,7 +135,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdh-extended-export-steps -1 + 1 - ecdh key import steps @@ -155,7 +155,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdh-extended-import-steps -1 + 1 - ecdhkeyderiveparams @@ -165,7 +165,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcdhKeyDeriveParams -1 + 1 - ecdsa curve name @@ -195,7 +195,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdsa-extended-generation-steps -1 + 1 - ecdsa key export steps @@ -215,7 +215,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdsa-extended-export-steps -1 + 1 - ecdsa key import steps @@ -235,7 +235,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdsa-extended-import-steps -1 + 1 - ecdsa signature steps @@ -255,7 +255,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdsa-extended-signature-steps -1 + 1 - ecdsa verification steps @@ -275,7 +275,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdsa-extended-verification-steps -1 + 1 - ecdsaparams @@ -285,7 +285,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcdsaParams -1 + 1 - echoCancellation @@ -392,34 +392,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-echoreturnloss -1 - -RTCMediaStreamTrackStats -- -echoReturnLoss -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-echoreturnloss 1 1 RTCAudioSourceStats - -echoReturnLoss -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-echoreturnloss -1 - -RTCMediaStreamTrackStats -- echoReturnLossEnhancement dict-member webrtc-stats @@ -436,34 +414,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-echoreturnlossenhancement -1 - -RTCMediaStreamTrackStats -- -echoReturnLossEnhancement -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-echoreturnlossenhancement 1 1 RTCAudioSourceStats - -echoReturnLossEnhancement -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-echoreturnlossenhancement -1 - -RTCMediaStreamTrackStats -- echocancellation dfn mediacapture-streams @@ -491,7 +447,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcKeyAlgorithm -1 + 1 - eckeygenparams @@ -501,7 +457,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcKeyGenParams -1 + 1 - eckeyimportparams @@ -511,7 +467,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcKeyImportParams -1 + 1 - ecmascript code execution context @@ -597,10 +553,10 @@ webidl webidl 1 current -https://webidl.spec.whatwg.org/#ecmascript-throw +https://webidl.spec.whatwg.org/#javascript-throw 1 -ECMAScript +JavaScript - economy value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ed.data b/bikeshed/spec-data/readonly/anchors/anchors-ed.data index fccc8da60c..7f5f2bbc23 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ed.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ed.data @@ -91,6 +91,17 @@ https://www.w3.org/Consortium/Process/#editors-draft 1 1 - +ed +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#authdata-flags-ed + +1 +authData/flags +- edge dfn css-box-3 @@ -229,10 +240,10 @@ edit-context edit-context 1 current -https://w3c.github.io/edit-context/#dom-element-editcontext +https://w3c.github.io/edit-context/#dom-htmlelement-editcontext 1 1 -Element +HTMLElement - editContext attribute @@ -303,6 +314,26 @@ css-ui snapshot https://www.w3.org/TR/css-ui-4/#editable-element +1 +- +editcontext editing host +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-editcontext-editing-host +1 +1 +- +editcontext-handled inputtype +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-editcontext-handled-inputtype + 1 - editing host diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ef.data b/bikeshed/spec-data/readonly/anchors/anchors-ef.data index a8af3cc169..3f8566b368 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ef.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ef.data @@ -8,6 +8,16 @@ https://drafts.csswg.org/web-animations-2/#callbackdef-effectcallback 1 1 - +EffectCallback +callback +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#callbackdef-effectcallback +1 +1 +- EffectTiming dictionary web-animations-1 @@ -38,6 +48,28 @@ https://wicg.github.io/netinfo/#dom-effectiveconnectiontype 1 1 - +[[effects]] +attribute +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dfn-effects + +1 +GamepadHapticActuator +- +[[effects]] +attribute +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-effects + +1 +GamepadHapticActuator +- effect dfn css-animation-worklet-1 @@ -103,6 +135,28 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-effect 1 Animation - +effect +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationtimeline-play-effect-effect +1 +1 +AnimationTimeline/play(effect) +- +effect easing function +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#animation-effect-effect-easing-function + +1 +animation effect +- effect stack dfn web-animations-1 @@ -140,9 +194,10 @@ web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#effect-target - +https://www.w3.org/TR/web-animations-1/#keyframe-effect-effect-target 1 +1 +keyframe effect - effect value dfn @@ -207,6 +262,8 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report-effective- 1 aggregatable report +aggregatable attribution report +aggregatable debug report - effective automation rate dfn @@ -352,6 +409,28 @@ https://html.spec.whatwg.org/multipage/browsers.html#concept-origin-effective-do 1 1 - +effective enabled permissions +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-effective-enabled-permissions +1 +1 +fenced frame config +- +effective enabled permissions +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-effective-enabled-permissions +1 +1 +fenced frame config instance +- effective entitytypes dfn webxr-hit-test-1 @@ -597,6 +676,17 @@ https://www.w3.org/TR/pointerevents3/#dfn-effective-position-of-the-legacy-mouse 1 - +effective priority +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#scheduler-task-queue-effective-priority + +1 +scheduler task queue +- effective resident key requirement for credential creation dfn webauthn-3 @@ -617,6 +707,28 @@ https://www.w3.org/TR/webauthn-3/#effective-resident-key-requirement-for-credent 1 - +effective sandbox flags +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-effective-sandbox-flags +1 +1 +fenced frame config +- +effective sandbox flags +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-effective-sandbox-flags +1 +1 +fenced frame config instance +- effective source list dfn csp-embedded-enforcement @@ -625,6 +737,16 @@ csp-embedded-enforcement current https://w3c.github.io/webappsec-cspee/#effective-source-list +1 +- +effective transformation matrix +dfn +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#effective-transformation-matrix + 1 - effective user verification requirement for assertion @@ -665,6 +787,36 @@ webauthn snapshot https://www.w3.org/TR/webauthn-3/#effective-user-verification-requirement-for-credential-creation +1 +- +effective visual size +dfn +largest-contentful-paint +largest-contentful-paint +1 +current +https://w3c.github.io/largest-contentful-paint/#effective-visual-size +1 +1 +- +effective visual size +dfn +largest-contentful-paint +largest-contentful-paint +1 +snapshot +https://www.w3.org/TR/largest-contentful-paint/#effective-visual-size +1 +1 +- +effective zoom +dfn +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#effective-zoom +1 1 - effective-value-type @@ -843,6 +995,17 @@ GroupEffect/prepend(...effects) GroupEffect/prepend() - effects +attribute +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dom-gamepadhapticactuator-effects +1 +1 +GamepadHapticActuator +- +effects argument css-animation-worklet-1 css-animation-worklet @@ -853,3 +1016,74 @@ https://www.w3.org/TR/css-animation-worklet-1/#dom-workletanimation-workletanima 1 WorkletAnimation/WorkletAnimation(animatorName, effects, timeline, options) - +effects +attribute +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticactuator-effects +1 +1 +GamepadHapticActuator +- +effects +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-after-effects-effects +1 +1 +AnimationEffect/after(...effects) +AnimationEffect/after() +- +effects +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-before-effects-effects +1 +1 +AnimationEffect/before(...effects) +AnimationEffect/before() +- +effects +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-replace-effects-effects +1 +1 +AnimationEffect/replace(...effects) +AnimationEffect/replace() +- +effects +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-append-effects-effects +1 +1 +GroupEffect/append(...effects) +GroupEffect/append() +- +effects +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-prepend-effects-effects +1 +1 +GroupEffect/prepend(...effects) +GroupEffect/prepend() +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ei.data b/bikeshed/spec-data/readonly/anchors/anchors-ei.data index 4b60fad465..de71b03648 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ei.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ei.data @@ -8,3 +8,25 @@ https://privacycg.github.io/private-click-measurement/#eight-bit-decimal-value 1 - +either +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-either +1 +1 +interpolation sampling +- +either +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-sampling-either +1 +1 +interpolation sampling +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ej.data b/bikeshed/spec-data/readonly/anchors/anchors-ej.data new file mode 100644 index 0000000000..de5bad8b8a --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-ej.data @@ -0,0 +1,11 @@ +eject +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarddisposition-eject +1 +1 +SmartCardDisposition +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-el.data b/bikeshed/spec-data/readonly/anchors/anchors-el.data index 9e9bd57517..8c55a5ba54 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-el.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-el.data @@ -99,6 +99,39 @@ https://html.spec.whatwg.org/multipage/custom-elements.html#elementinternals 1 1 - +[[Element]] +attribute +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-element +1 +1 +RestrictionTarget +- +[[Element]] +attribute +mediacapture-region +mediacapture-region +1 +current +https://w3c.github.io/mediacapture-region/#dfn-element +1 +1 +CropTarget +- +[[Element]] +attribute +mediacapture-region +mediacapture-region +1 +snapshot +https://www.w3.org/TR/mediacapture-region/#dfn-element +1 +1 +CropTarget +- elapsed time dfn css-animations-2 @@ -117,6 +150,26 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#elapsed-time +1 +- +elapsed time +dfn +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#elapsed-time + +1 +- +elapsed time +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#elapsed-time + 1 - elapsedTime @@ -358,16 +411,6 @@ https://w3c.github.io/autoplay/#dom-navigator-getautoplaypolicy-element-element Navigator/getAutoplayPolicy(element) - element -dfn -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dom-element - -1 -- -element attribute largest-contentful-paint largest-contentful-paint @@ -384,29 +427,32 @@ largest-contentful-paint largest-contentful-paint 1 current -https://w3c.github.io/largest-contentful-paint/#element +https://w3c.github.io/largest-contentful-paint/#largest-contentful-paint-candidate-element 1 +largest contentful paint candidate - element dfn -mathml-aam -mathml-aam +largest-contentful-paint +largest-contentful-paint 1 current -https://w3c.github.io/mathml-aam/#dfn-element +https://w3c.github.io/largest-contentful-paint/#largestcontentfulpaint-element 1 +LargestContentfulPaint - element dfn -mathml-aam -mathml-aam +paint-timing +paint-timing 1 current -https://w3c.github.io/mathml-aam/#dfn-element +https://w3c.github.io/paint-timing/#pending-image-record-element 1 +pending image record - element dfn @@ -472,17 +518,6 @@ https://wicg.github.io/element-timing/#element 1 - element -argument -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-sanitizefor-element-input-element -1 -1 -Sanitizer/sanitizeFor(element, input) -- -element dfn csp3 csp @@ -495,12 +530,22 @@ violation - element dfn -accname-1.2 -accname +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#element +1 +1 +- +element +dfn +css2 +css 1 snapshot -https://www.w3.org/TR/accname-1.2/#dfn-element - +https://www.w3.org/TR/CSS21/conform.html#element +1 1 - element @@ -593,9 +638,32 @@ largest-contentful-paint largest-contentful-paint 1 snapshot -https://www.w3.org/TR/largest-contentful-paint/#element +https://www.w3.org/TR/largest-contentful-paint/#largest-contentful-paint-candidate-element 1 +largest contentful paint candidate +- +element +dfn +largest-contentful-paint +largest-contentful-paint +1 +snapshot +https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-element + +1 +LargestContentfulPaint +- +element +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#pending-image-record-element + +1 +pending image record - element dfn @@ -638,26 +706,6 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-tabledescriptor-element 1 TableDescriptor - -element allow list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#element-allow-list - -1 -- -element block list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#element-block-list - -1 -- element clear dfn webdriver2 @@ -716,6 +764,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-element-click-intercepted +1 +- +element contents +dfn +css-contain-2 +css-contain +2 +current +https://drafts.csswg.org/css-contain-2/#element-contents +1 1 - element count @@ -758,73 +816,23 @@ https://html.spec.whatwg.org/multipage/custom-elements.html#element-definition-i 1 - -element displayed -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-element-displayedness - -1 -- -element displayed -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-element-displayedness - -1 -- -element displayedness -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-element-displayedness - -1 -- -element displayedness -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-element-displayedness - -1 -- -element drop list -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#element-drop-list - -1 -- -element from point +element displayed state dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-element-from-point +https://w3c.github.io/webdriver/#dfn-element-displayed-state 1 - -element from point +element displayed state dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-element-from-point +https://www.w3.org/TR/webdriver2/#dfn-element-displayed-state 1 - @@ -856,16 +864,6 @@ dom current https://dom.spec.whatwg.org/#concept-element-interface 1 -1 -- -element kind -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#element-kind - 1 - element location strategy @@ -886,16 +884,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-strategy -1 -- -element matches an element name -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#element-matches-an-element-name - 1 - element not interactable @@ -977,16 +965,6 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#element-stride -1 -- -element timing processing -dfn -element-timing -element-timing -1 -current -https://wicg.github.io/element-timing/#element-timing-processing - 1 - element tree @@ -1032,14 +1010,14 @@ https://html.spec.whatwg.org/multipage/infrastructure.html#element-type 1 - -element's +element with default preferred size dfn -mathml-aam -mathml-aam -1 +css-ui-4 +css-ui +4 current -https://w3c.github.io/mathml-aam/#dfn-element - +https://drafts.csswg.org/css-ui-4/#element-with-default-preferred-size +1 1 - element's @@ -1051,16 +1029,6 @@ current https://w3c.github.io/svg-aam/#dfn-element -- -element's -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-element - -1 - element's dfn @@ -1162,6 +1130,72 @@ https://www.w3.org/TR/css-images-4/#element-not-rendered 1 1 - +element-wise-binary-op +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-element-wise-binary-op + +1 +MLGraphBuilder +- +element-wise-binary-op +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-element-wise-binary-op + +1 +MLGraphBuilder +- +element-wise-logical-op +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-element-wise-logical-op + +1 +MLGraphBuilder +- +element-wise-logical-op +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-element-wise-logical-op + +1 +MLGraphBuilder +- +element-wise-unary-op +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-element-wise-unary-op + +1 +MLGraphBuilder +- +element-wise-unary-op +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-element-wise-unary-op + +1 +MLGraphBuilder +- element.localname dfn dom-parsing @@ -1190,6 +1224,46 @@ dom-parsing current https://w3c.github.io/DOM-Parsing/#dfn-element-prefix +1 +- +element::following +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#following +1 +1 +- +element::following +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#following +1 +1 +- +element::preceding +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#preceding +1 +1 +- +element::preceding +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#preceding +1 1 - elementFromPoint(x, y) @@ -1308,50 +1382,6 @@ https://wicg.github.io/element-timing/#dom-element-elementtiming 1 Element - -element_count_expression -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-element_count_expression - -1 -recursive descent syntax -- -element_count_expression -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-element_count_expression - -1 -syntax -- -element_count_expression -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-element_count_expression - -1 -recursive descent syntax -- -element_count_expression -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-element_count_expression - -1 -syntax -- elementcontenteditable dfn virtual-keyboard @@ -1371,86 +1401,6 @@ snapshot https://www.w3.org/TR/virtual-keyboard/#dom-elementcontenteditable 1 -- -elementrect-height -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-height - - -- -elementrect-height -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-height - - -- -elementrect-width -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-width - - -- -elementrect-width -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-width - - -- -elementrect-x -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-x - - -- -elementrect-x -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-x - - -- -elementrect-y -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-y - - -- -elementrect-y -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-y - - - elements attribute @@ -1482,16 +1432,6 @@ html current https://html.spec.whatwg.org/multipage/syntax.html#syntax-elements -1 -- -elements -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-element - 1 - elements @@ -1505,14 +1445,15 @@ https://w3c.github.io/svg-aam/#dfn-element - elements -dfn -accname-1.2 -accname +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-elements 1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-element - 1 +SanitizerConfig - elements dfn @@ -1649,6 +1590,26 @@ https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fedistantlight-elevati feDistantLight - elevation +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-elevation +1 +1 +- +elevation +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-elevation +1 +1 +- +elevation dfn css22 css @@ -1680,6 +1641,16 @@ https://www.w3.org/TR/filter-effects-1/#element-attrdef-fedistantlight-elevation 1 feDistantLight - +eligibility +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligibility +1 +1 +- eligible feed links dfn media-feeds @@ -1708,6 +1679,16 @@ html current https://html.spec.whatwg.org/multipage/web-messaging.html#eligible-for-messaging +1 +- +eligible for restriction +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-eligible-for-restriction + 1 - eligible for same-party membership when embedded within @@ -1718,6 +1699,36 @@ first-party-sets current https://wicg.github.io/first-party-sets/#eligible-for-same-party-membership-when-embedded-within 1 +1 +- +eligible key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligible-key + +1 +- +eligible to be largest contentful paint +dfn +largest-contentful-paint +largest-contentful-paint +1 +current +https://w3c.github.io/largest-contentful-paint/#eligible-to-be-largest-contentful-paint + +1 +- +eligible to be largest contentful paint +dfn +largest-contentful-paint +largest-contentful-paint +1 +snapshot +https://www.w3.org/TR/largest-contentful-paint/#eligible-to-be-largest-contentful-paint + 1 - eligible track @@ -1746,10 +1757,10 @@ css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse +https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse 1 1 -<rg-ending-shape> +<radial-shape> - ellipse element @@ -1777,10 +1788,10 @@ css-images-3 css-images 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-ending-shape-ellipse +https://www.w3.org/TR/css-images-3/#valdef-radial-shape-ellipse 1 1 -<ending-shape> +<radial-shape> - ellipse method steps dfn @@ -2001,51 +2012,7 @@ https://www.w3.org/TR/cssom-1/#dom-window-getcomputedstyle-elt-pseudoelt-elt Window/getComputedStyle(elt, pseudoElt) Window/getComputedStyle(elt) - -elu() -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-options -1 -1 -MLGraphBuilder -- -elu() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-options -1 -1 -MLGraphBuilder -- -elu(options) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-options -1 -1 -MLGraphBuilder -- -elu(options) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-options -1 -1 -MLGraphBuilder -- -elu(x) +elu(input) method webnn webnn @@ -2056,7 +2023,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu 1 MLGraphBuilder - -elu(x) +elu(input) method webnn webnn @@ -2067,7 +2034,7 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu 1 MLGraphBuilder - -elu(x, options) +elu(input, options) method webnn webnn @@ -2078,7 +2045,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu 1 MLGraphBuilder - -elu(x, options) +elu(input, options) method webnn webnn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-em.data b/bikeshed/spec-data/readonly/anchors/anchors-em.data index cae10d7d7b..6aedba30b2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-em.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-em.data @@ -101,6 +101,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#empty-pseudo 1 +1 +- +<emptyset/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_emptyset + +1 +- +<emptyset/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_emptyset + 1 - EMPTY @@ -125,6 +145,26 @@ https://www.w3.org/TR/FileAPI/#dom-filereader-empty 1 FileReader - +EmptyMatcher +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-emptymatcher +1 +1 +- +EmptyMatcher() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-emptymatcher +1 +1 +- em value css-values-3 @@ -190,6 +230,59 @@ https://www.w3.org/TR/css-values-4/#em 1 <length> - +em (unit) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#em-width +1 +1 +- +em (unit) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#em-width +1 +1 +- +em unit +value +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#em +1 +1 +<length> +- +em unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#em +1 +1 +<length> +- +em unit +value +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#em +1 +1 +<length> +- em(value) method css-typed-om-1 @@ -308,6 +401,17 @@ https://fedidcg.github.io/FedCM/#dom-identityprovideraccount-email IdentityProviderAccount - email +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityuserinfo-email +1 +1 +IdentityUserInfo +- +email attr-value html html @@ -341,7 +445,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#email-state-(type=email) +https://html.spec.whatwg.org/multipage/input.html#email-state-(type%3Demail) 1 1 input @@ -380,6 +484,17 @@ ContactInfo - email dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-payererrors-email +1 +1 +PayerErrors +- +email +dict-member contact-picker contact-picker 1 @@ -389,6 +504,17 @@ https://www.w3.org/TR/contact-picker/#dom-contactinfo-email 1 ContactInfo - +email +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-payererrors-email +1 +1 +PayerErrors +- emails dfn contact-picker @@ -609,6 +735,26 @@ https://wicg.github.io/sms-one-time-codes/#origin-bound-one-time-code-message-em origin-bound one-time code message - +embedded proof +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-embedded-proof +1 +1 +- +embedded proof +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-embedded-proof +1 +1 +- embedded watch action dfn media-feeds @@ -661,6 +807,28 @@ https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-value 1 1 - +embedder shared storage context +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-embedder-shared-storage-context +1 +1 +fenced frame config +- +embedder shared storage context +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-embedder-shared-storage-context +1 +1 +fenced frame config instance +- embedding dfn json-ld11 @@ -740,6 +908,16 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-embellished-operator +1 +- +embellished operator +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-embellished-operator + 1 - embellished operator @@ -750,6 +928,16 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-embellished-operator +1 +- +embellished operator +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-embellished-operator + 1 - embossed @@ -825,6 +1013,16 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#emit-a-context-created-event +1 +- +emit a script message +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#emit-a-script-message + 1 - emit an event @@ -837,17 +1035,26 @@ https://w3c.github.io/webdriver-bidi/#emit-an-event 1 1 - -emoji -value -css-fonts-4 -css-fonts -4 +emit soft navigation entry +dfn +soft-navigations +soft-navigations +1 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-family-emoji +https://wicg.github.io/soft-navigations/#emit-soft-navigation-entry + +1 +- +emitted +dfn +soft-navigations +soft-navigations 1 +current +https://wicg.github.io/soft-navigations/#interaction-data-emitted + 1 -font-family -<generic-family> +interaction data - emoji value @@ -866,18 +1073,6 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-family-emoji -1 -1 -font-family -<generic-family> -- -emoji -value -css-fonts-4 -css-fonts -4 -snapshot https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-emoji-emoji 1 1 @@ -927,6 +1122,17 @@ Node - empty dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-empty + +1 +token stream +- +empty +dfn css22 css 1 @@ -970,18 +1176,82 @@ https://w3c.github.io/web-nfc/#dfn-empty 1 - empty -dfn +enum-value webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframetype-empty - +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-empty +1 1 RTCEncodedVideoFrameType - empty dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligibility-empty + +1 +eligibility +- +empty +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#scheduler-task-queue-empty + +1 +scheduler task queue +- +empty +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-empty +1 +1 +SmartCardReaderStateFlagsIn +- +empty +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-empty +1 +1 +SmartCardReaderStateFlagsOut +- +empty +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#empty +1 +1 +- +empty +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#empty +1 +1 +- +empty +dfn selection-api selection-api 1 @@ -991,13 +1261,13 @@ https://www.w3.org/TR/selection-api/#dfn-empty 1 - empty -dfn +enum-value webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframetype-empty - +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-empty +1 1 RTCEncodedVideoFrameType - @@ -1081,6 +1351,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-empty-graph +1 +- +empty graph +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-empty-graph + 1 - empty host @@ -1211,6 +1491,16 @@ css-tables snapshot https://www.w3.org/TR/css-tables-3/#empty-table +1 +- +empty user context +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#empty-user-context + 1 - empty() @@ -1256,6 +1546,26 @@ https://drafts.csswg.org/css2/#propdef-empty-cells 1 - empty-cells +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells +1 +1 +- +empty-cells +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells +1 +1 +- +empty-cells dfn css22 css diff --git a/bikeshed/spec-data/readonly/anchors/anchors-en.data b/bikeshed/spec-data/readonly/anchors/anchors-en.data index b5d00ab7a2..f30738c37b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-en.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-en.data @@ -33,28 +33,6 @@ ScrollLogicalPosition - "end" enum-value -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestamplocation-end -1 -1 -GPUComputePassTimestampLocation -- -"end" -enum-value -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestamplocation-end -1 -1 -GPURenderPassTimestampLocation -- -"end" -enum-value webvtt1 webvtt 1 @@ -88,28 +66,6 @@ ScrollLogicalPosition - "end" enum-value -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestamplocation-end -1 -1 -GPUComputePassTimestampLocation -- -"end" -enum-value -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestamplocation-end -1 -1 -GPURenderPassTimestampLocation -- -"end" -enum-value webvtt1 webvtt 1 @@ -183,6 +139,28 @@ https://wicg.github.io/webhid/#dfn-english-rotation 1 - +"enterpictureinpicture" +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionaction-enterpictureinpicture +1 +1 +MediaSessionAction +- +"enterpictureinpicture" +enum-value +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-enterpictureinpicture +1 +1 +MediaSessionAction +- "enterprise" enum-value webauthn-3 @@ -277,29 +255,6 @@ https://www.w3.org/TR/selectors-4/#enabled-pseudo 1 1 - -<end-value> -type -css-values-4 -css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#typedef-mix-end-value - -1 -mix() -- -<ending-shape> -value -css-images-3 -css-images -3 -snapshot -https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-ending-shape -1 -1 -radial-gradient() -repeating-radial-gradient() -- END_TO_END const dom @@ -344,6 +299,16 @@ https://dom.spec.whatwg.org/#dom-node-entity_reference_node 1 Node - +Encode +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-encode +1 +1 +- Encode(string, extraUnescaped) abstract-op ecmascript @@ -718,6 +683,46 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-enqueue-a-render-command 1 1 - +EnqueueAtomicsWaitAsyncTimeoutJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-enqueueatomicswaitasynctimeoutjob +1 +1 +- +EnqueueAtomicsWaitAsyncTimeoutJob(WL, waiterRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-enqueueatomicswaitasynctimeoutjob +1 +1 +- +EnqueueResolveInAgentJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-enqueueresolveinagentjob +1 +1 +- +EnqueueResolveInAgentJob(agentSignifier, promiseCapability, resolution) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-enqueueresolveinagentjob +1 +1 +- EnqueueValueWithSize abstract-op streams @@ -738,6 +743,16 @@ https://wicg.github.io/csp-next/scripting-policy.html#abstract-opdef-ensurescrip 1 1 - +EnterCriticalSection +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-entercriticalsection +1 +1 +- EnterCriticalSection(WL) abstract-op ecmascript @@ -768,6 +783,16 @@ https://dom.spec.whatwg.org/#entityreference 1 1 - +EnumerableOwnProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-enumerableownproperties +1 +1 +- EnumerableOwnProperties(O, kind) abstract-op ecmascript @@ -778,6 +803,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-enumerableownprop 1 1 - +EnumerateObjectProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-enumerate-object-properties +1 +1 +- EnumerateObjectProperties(O) abstract-op ecmascript @@ -876,46 +911,46 @@ https://www.w3.org/TR/webcodecs/#dom-imagedecoder-encoded-data-slot 1 ImageDecoder - -[[endTimestampWrites]] +[[endTimestampWrite]] attribute webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpucomputepassencoder-endtimestampwrites-slot +https://gpuweb.github.io/gpuweb/#dom-gpucomputepassencoder-endtimestampwrite-slot 1 1 GPUComputePassEncoder - -[[endTimestampWrites]] +[[endTimestampWrite]] attribute webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpurenderpassencoder-endtimestampwrites-slot +https://gpuweb.github.io/gpuweb/#dom-gpurenderpassencoder-endtimestampwrite-slot 1 1 GPURenderPassEncoder - -[[endTimestampWrites]] +[[endTimestampWrite]] attribute webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpucomputepassencoder-endtimestampwrites-slot +https://www.w3.org/TR/webgpu/#dom-gpucomputepassencoder-endtimestampwrite-slot 1 1 GPUComputePassEncoder - -[[endTimestampWrites]] +[[endTimestampWrite]] attribute webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpurenderpassencoder-endtimestampwrites-slot +https://www.w3.org/TR/webgpu/#dom-gpurenderpassencoder-endtimestampwrite-slot 1 1 GPURenderPassEncoder @@ -996,16 +1031,6 @@ https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-enable 1 syntax_kw -- -enable -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_aware -1 - - enable dfn @@ -1017,16 +1042,6 @@ https://www.w3.org/TR/WGSL/#syntax_kw-enable 1 syntax_kw -- -enable -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_aware -1 - - enable a css style sheet set dfn @@ -1048,6 +1063,17 @@ https://www.w3.org/TR/cssom-1/#enable-a-css-style-sheet-set 1 1 - +enable bidding signals prioritization +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-enable-bidding-signals-prioritization + +1 +interest group +- enable directive dfn wgsl @@ -1101,6 +1127,59 @@ https://www.w3.org/TR/service-workers/#dom-navigationpreloadmanager-enable 1 NavigationPreloadManager - +enable-extension +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#enable-extension + +1 +- +enable-extension +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#enable-extension + +1 +- +enableBiddingSignalsPrioritization +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-enablebiddingsignalsprioritization +1 +1 +GenerateBidInterestGroup +- +enableDebugMode() +method +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-enabledebugmode +1 +1 +PrivateAggregation +- +enableDebugMode(options) +method +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-enabledebugmode +1 +1 +PrivateAggregation +- enableDelegations() method payment-handler @@ -1151,7 +1230,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-positionoptions-enablehighaccuracy +https://w3c.github.io/geolocation/#dom-positionoptions-enablehighaccuracy 1 1 PositionOptions @@ -1186,6 +1265,50 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#syntax-enable_directive +1 +syntax +- +enable_extension_list +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-enable_extension_list + +1 +syntax +- +enable_extension_list +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-enable_extension_list + +1 +syntax +- +enable_extension_name +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-enable_extension_name + +1 +syntax +- +enable_extension_name +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-enable_extension_name + 1 syntax - @@ -1232,6 +1355,28 @@ https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-enabled AudioTrack - enabled +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-details-enabled + +1 +debug details +- +enabled +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionreportbuyerdebugmodeconfig-enabled +1 +1 +AuctionReportBuyerDebugModeConfig +- +enabled dict-member service-workers service-workers @@ -1251,16 +1396,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-enabled -- -enabled -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_aware -1 - - enabled attribute @@ -1282,6 +1417,7 @@ current https://w3c.github.io/mediacapture-main/#track-enabled 1 1 +MediaStreamTrack - enabled dict-member @@ -1293,16 +1429,6 @@ https://w3c.github.io/webauthn/#dom-authenticationextensionsprfoutputs-enabled 1 1 AuthenticationExtensionsPRFOutputs -- -enabled -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_aware -1 - - enabled attribute @@ -1324,6 +1450,7 @@ snapshot https://www.w3.org/TR/mediacapture-streams/#track-enabled 1 1 +MediaStreamTrack - enabled value @@ -1348,14 +1475,15 @@ https://www.w3.org/TR/service-workers/#dom-navigationpreloadstate-enabled NavigationPreloadState - enabled -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-enabled - -1 +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsprfoutputs-enabled +1 +1 +AuthenticationExtensionsPRFOutputs - enabled css style sheet set dfn @@ -1509,6 +1637,16 @@ encoding current https://encoding.spec.whatwg.org/#encode 1 +1 +- +encode a canvas as base64 +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#encode-a-canvas-as-base64 + 1 - encode a canvas as base64 a canvas element @@ -1531,13 +1669,23 @@ https://www.w3.org/TR/webdriver2/#dfn-encoding-a-canvas-as-base64 1 - -encode an unsigned k-bit integer +encode an integer for the payload +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#encode-an-integer-for-the-payload + +1 +- +encode an unsigned k-byte integer dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#encode-an-unsigned-k-bit-integer +https://wicg.github.io/attribution-reporting-api/#encode-an-unsigned-k-byte-integer 1 - @@ -1569,6 +1717,16 @@ encoding current https://encoding.spec.whatwg.org/#encode-or-fail 1 +1 +- +encode trusted signals keys +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#encode-trusted-signals-keys + 1 - encode() @@ -1980,14 +2138,16 @@ FileReaderSync/readAsText(blob, encoding) FileReaderSync/readAsText(blob) - encoding -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-encoding - 1 +1 +annotation +annotation-xml - encoding a canvas as base64 dfn @@ -2015,7 +2175,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#encoding-callback +https://urlpattern.spec.whatwg.org/#encoding-callback 1 - @@ -2025,7 +2185,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser-encoding-callback +https://urlpattern.spec.whatwg.org/#pattern-parser-encoding-callback 1 pattern parser @@ -2048,6 +2208,26 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#encoding-sniffing-algorithm +1 +- +encoding-parse a url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#encoding-parsing-a-url +1 +1 +- +encoding-parse-and-serialize a url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#encoding-parsing-and-serializing-a-url + 1 - encodingInfo(configuration) @@ -2123,7 +2303,17 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-encrypt + +1 +- +encrypt the payload +dfn +private-aggregation-api +private-aggregation-api 1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#encrypt-the-payload + 1 - encrypt() @@ -2150,11 +2340,11 @@ SubtleCrypto - encrypted dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dom-evt-encrypted +https://w3c.github.io/encrypted-media/#dfn-encrypted - @@ -2171,11 +2361,11 @@ RTCRtpHeaderExtensionParameters - encrypted dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-evt-encrypted +https://www.w3.org/TR/encrypted-media-2/#dfn-encrypted - @@ -2190,14 +2380,44 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpheaderextensionparameters-encrypted 1 RTCRtpHeaderExtensionParameters - -encrypted-media +encrypted block encountered dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-encrypted-block-encountered +1 +1 +- +encrypted block encountered +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-encrypted-block-encountered +1 1 +- +encrypted-media +dfn +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dfn-encrypted-media +1 +- +encrypted-media +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-encrypted-media + 1 - encrypteddata @@ -2262,9 +2482,9 @@ https://www.w3.org/TR/epub-33/#dfn-encryption - encryptionScheme dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability-encryptionscheme 1 @@ -2284,6 +2504,17 @@ KeySystemTrackConfiguration - encryptionScheme dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemmediacapability-encryptionscheme +1 +1 +MediaKeySystemMediaCapability +- +encryptionScheme +dict-member media-capabilities media-capabilities 1 @@ -2376,6 +2607,18 @@ https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-end anchor() - end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-end +1 +1 +position-area +<position-area> +- +end attribute css-cascade-6 css-cascade @@ -2421,17 +2664,6 @@ wrap-flow - end value -css-inline-3 -css-inline -3 -current -https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-end -1 -1 -leading-trim -- -end -value css-rhythm-1 css-rhythm 1 @@ -2454,21 +2686,6 @@ scroll-snap-align - end value -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-end -1 -1 -scroll-start -scroll-start-x -scroll-start-y -scroll-start-block -scroll-start-inline -- -end -value css-text-3 css-text 3 @@ -2578,6 +2795,17 @@ https://svgwg.org/specs/animations/#EndAttribute animate - end +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-type-end + +1 +token/type +- +end argument fileapi fileapi @@ -2597,10 +2825,10 @@ ift ift 1 current -https://w3c.github.io/IFT/Overview.html#axisinterval-end +https://w3c.github.io/IFT/Overview.html#design-space-segment-end 1 -AxisInterval +Design Space Segment - end dict-member @@ -2614,6 +2842,39 @@ https://w3c.github.io/user-timing/#dom-performancemeasureoptions-end PerformanceMeasureOptions - end +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#report-window-end + +1 +report window +- +end +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-bucket-end + +1 +summary bucket +- +end +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#text-directive-end + +1 +text directive +- +end event speech-api speech-api @@ -2636,17 +2897,6 @@ https://wicg.github.io/speech-api/#eventdef-speechsynthesisutterance-end SpeechSynthesisUtterance - end -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#token-type-end - -1 -token/type -- -end argument fileapi fileapi @@ -2661,6 +2911,17 @@ Blob/slice(start) Blob/slice() - end +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#design-space-segment-end + +1 +Design Space Segment +- +end value css-align-3 css-align @@ -2678,25 +2939,37 @@ align-content - end value -css-easing-1 -css-easing +css-anchor-position-1 +css-anchor-position 1 snapshot -https://www.w3.org/TR/css-easing-1/#valdef-steps-end +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-end 1 1 -steps() +anchor() - end value -css-inline-3 -css-inline -3 +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-end +1 +1 +inset-area +<inset-area> +- +end +value +css-easing-1 +css-easing +1 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-leading-trim-end +https://www.w3.org/TR/css-easing-1/#valdef-steps-end 1 1 -leading-trim +steps() - end value @@ -2841,6 +3114,16 @@ https://www.w3.org/TR/webxr/#eventdef-xrsession-end 1 XRSession - +end any settled transaction +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-end-any-settled-transaction + +1 +- end collection tag dfn webhid @@ -2972,6 +3255,26 @@ html current https://html.spec.whatwg.org/multipage/syntax.html#syntax-end-tag +1 +- +end the session +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#end-the-session + +1 +- +end the transaction +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-end-the-transaction + 1 - end time @@ -2991,9 +3294,10 @@ web-animations-1 web-animations 1 current -https://drafts.csswg.org/web-animations-1/#end-time +https://drafts.csswg.org/web-animations-1/#animation-effect-end-time 1 +animation effect - end time dfn @@ -3018,6 +3322,38 @@ fetch timing info - end time dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-end-time + +1 +frame timing info +- +end time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-end-time + +1 +script timing info +- +end time +dfn +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dfn-end-time +1 +1 +- +end time +dfn css-transitions-1 css-transitions 1 @@ -3029,14 +3365,13 @@ transition - end time dfn -longtasks-1 -longtasks +performance-timeline +performance-timeline 1 snapshot -https://www.w3.org/TR/longtasks-1/#task-end-time - +https://www.w3.org/TR/performance-timeline/#dfn-end-time +1 1 -task - end time dfn @@ -3046,6 +3381,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#end-time +1 +- +end time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#end-time + 1 - end value @@ -3265,11 +3610,44 @@ https://www.w3.org/TR/web-animations-1/#dom-optionaleffecttiming-enddelay 1 OptionalEffectTiming - -endOcclusionQuery() -method -webgpu -webgpu -1 +endDelay +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effecttiming-enddelay +1 +1 +EffectTiming +- +endDelay +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-optionaleffecttiming-enddelay +1 +1 +OptionalEffectTiming +- +endIndex +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingsegment-endindex +1 +1 +HandwritingSegment +- +endOcclusionQuery() +method +webgpu +webgpu +1 current https://gpuweb.github.io/gpuweb/#dom-gpurenderpassencoder-endocclusionquery 1 @@ -3287,6 +3665,50 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderpassencoder-endocclusionquery 1 GPURenderPassEncoder - +endOfPassWriteIndex +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestampwrites-endofpasswriteindex +1 +1 +GPUComputePassTimestampWrites +- +endOfPassWriteIndex +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestampwrites-endofpasswriteindex +1 +1 +GPURenderPassTimestampWrites +- +endOfPassWriteIndex +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestampwrites-endofpasswriteindex +1 +1 +GPUComputePassTimestampWrites +- +endOfPassWriteIndex +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestampwrites-endofpasswriteindex +1 +1 +GPURenderPassTimestampWrites +- endOfStream() method media-source-2 @@ -3375,6 +3797,17 @@ https://www.w3.org/TR/scroll-animations-1/#dom-viewtimeline-endoffset 1 ViewTimeline - +endPointIndex +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawingsegment-endpointindex +1 +1 +HandwritingDrawingSegment +- endTime dict-member web-animations-1 @@ -3490,6 +3923,17 @@ https://www.w3.org/TR/web-animations-1/#dom-computedeffecttiming-endtime ComputedEffectTiming - endTime +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-computedeffecttiming-endtime +1 +1 +ComputedEffectTiming +- +endTime argument webaudio webaudio @@ -3544,6 +3988,17 @@ https://www.w3.org/TR/webvtt1/#dom-vttcue-vttcue-starttime-endtime-text-endtime 1 VTTCue/VTTCue(startTime, endTime, text) - +end_times +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-end_times + +1 +source-registration JSON key +- ended dfn webgpu @@ -3628,18 +4083,7 @@ current https://w3c.github.io/mediacapture-main/#track-ended 1 1 -track -- -ended -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-ended -1 - -RTCMediaStreamTrackStats +MediaStreamTrack - ended event @@ -3693,7 +4137,7 @@ snapshot https://www.w3.org/TR/mediacapture-streams/#track-ended 1 1 -track +MediaStreamTrack - ended dfn @@ -3707,17 +4151,6 @@ https://www.w3.org/TR/webgpu/#encoder-state-ended encoder state - ended -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-ended -1 - -RTCMediaStreamTrackStats -- -ended dfn webxr webxr @@ -3822,20 +4255,32 @@ dfn css-syntax-3 css-syntax 3 -current -https://drafts.csswg.org/css-syntax-3/#ending-token +snapshot +https://www.w3.org/TR/css-syntax-3/#ending-token 1 - -ending token -dfn -css-syntax-3 -css-syntax -3 +endingPadding +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding +1 +1 +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) +- +endingPadding +argument +webnn +webnn +1 snapshot -https://www.w3.org/TR/css-syntax-3/#ending-token - +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding +1 1 +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) - endings dict-member @@ -3953,6 +4398,16 @@ webusb current https://wicg.github.io/webusb/#endpoint-descriptor +1 +- +endpoint group +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#endpoint-group +1 1 - endpoint node @@ -3985,6 +4440,17 @@ https://streams.spec.whatwg.org/#endpoint-pair 1 1 - +endpoint-groups +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-client-endpoint-groups +1 +1 +client +- endpoint-on-the-path dfn svg2 @@ -4106,6 +4572,28 @@ https://w3c.github.io/reporting/#windoworworkerglobalscope-endpoints WindowOrWorkerGlobalScope - endpoints +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-endpoint-group-endpoints +1 +1 +endpoint group +- +endpoints +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-endpoints +1 +1 +network_reporting_endpoints +- +endpoints dfn webdriver2 webdriver @@ -4199,6 +4687,26 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.ends 1 String - +endstreaming +event +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-endstreaming +1 +1 +- +endstreaming +event +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-endstreaming +1 +1 +- enforce a response's cross-origin opener policy dfn html @@ -4311,6 +4819,26 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#enough-data +1 +- +enough managed data to ensure uninterrupted playback +dfn +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-enough-managed-data-to-ensure-uninterrupted-playback + +1 +- +enough managed data to ensure uninterrupted playback +dfn +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-enough-managed-data-to-ensure-uninterrupted-playback + 1 - enqueue @@ -4502,6 +5030,26 @@ webxr snapshot https://www.w3.org/TR/webxr/#ensure-an-immersive-xr-device-is-selected +1 +- +ensure details exclusivity by closing other elements if needed +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#ensure-details-exclusivity-by-closing-other-elements-if-needed + +1 +- +ensure details exclusivity by closing the given element if needed +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#ensure-details-exclusivity-by-closing-the-given-element-if-needed + 1 - ensure pre-insertion validity @@ -4525,7 +5073,7 @@ https://html.spec.whatwg.org/multipage/canvas.html#ensure-there-is-a-subpath 1 - -ensurecspdoesnotblockstringcompilation(realm, source) +ensurecspdoesnotblockstringcompilation(realm, parameterstrings, bodystring, codestring, compilationtype, parameterargs, bodyarg) dfn csp3 csp @@ -4535,7 +5083,7 @@ https://w3c.github.io/webappsec-csp/#can-compile-strings 1 1 - -ensurecspdoesnotblockstringcompilation(realm, source) +ensurecspdoesnotblockstringcompilation(realm, parameterstrings, bodystring, codestring, compilationtype, parameterargs, bodyarg) dfn csp3 csp @@ -4545,7 +5093,7 @@ https://www.w3.org/TR/CSP3/#can-compile-strings 1 1 - -ensurecspdoesnotblockwasmbytecompilation(realm) +ensurecspdoesnotblockwasmbytecompilationrealm dfn csp3 csp @@ -4555,7 +5103,7 @@ https://w3c.github.io/webappsec-csp/#can-compile-wasm-bytes 1 - -ensurecspdoesnotblockwasmbytecompilation(realm) +ensurecspdoesnotblockwasmbytecompilationrealm dfn csp3 csp @@ -4565,33 +5113,33 @@ https://www.w3.org/TR/CSP3/#can-compile-wasm-bytes 1 - -entail +entailment dfn -rdf12-semantics -rdf-semantics +rdf12-concepts +rdf-concepts 1 current -https://w3c.github.io/rdf-semantics/spec/#dfn-entail +https://w3c.github.io/rdf-concepts/spec/#dfn-entailment + -1 - entailment dfn rdf12-concepts rdf-concepts 1 -current -https://w3c.github.io/rdf-concepts/spec/#dfn-entailment +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-entailment - -entailment +entailment regime dfn rdf12-semantics rdf-semantics 1 current -https://w3c.github.io/rdf-semantics/spec/#dfn-entail +https://w3c.github.io/rdf-semantics/spec/#dfn-entailment-regime 1 - @@ -4600,18 +5148,18 @@ dfn rdf12-semantics rdf-semantics 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-entailment-regime +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-entailment-regime 1 - -entails +entails recognizing d dfn rdf12-semantics rdf-semantics 1 current -https://w3c.github.io/rdf-semantics/spec/#dfn-entail +https://w3c.github.io/rdf-semantics/spec/#dfn-entails-recognizing-d 1 - @@ -4620,8 +5168,8 @@ dfn rdf12-semantics rdf-semantics 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-entails-recognizing-d +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-entails-recognizing-d 1 - @@ -4657,6 +5205,17 @@ https://html.spec.whatwg.org/multipage/media.html#event-media-enter 1 TextTrackCue - +enter +event +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#eventdef-documentpictureinpicture-enter +1 +1 +DocumentPictureInPicture +- enterKeyHint attribute html @@ -4680,6 +5239,17 @@ https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint html-global - enterpictureinpicture +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionaction-enterpictureinpicture +1 +1 +MediaSessionAction +- +enterpictureinpicture event picture-in-picture picture-in-picture @@ -4691,6 +5261,17 @@ https://w3c.github.io/picture-in-picture/#eventdef-htmlvideoelement-enterpicture HTMLVideoElement - enterpictureinpicture +enum-value +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-enterpictureinpicture +1 +1 +MediaSessionAction +- +enterpictureinpicture event picture-in-picture picture-in-picture @@ -4795,29 +5376,120 @@ https://dom.spec.whatwg.org/#dom-documenttype-entities 1 DocumentType - -entity types +entities dfn -webxr-hit-test-1 -webxr-hit-test +pub-manifest +pub-manifest 1 current -https://immersive-web.github.io/hit-test/#xrhittestsource-entity-types +https://w3c.github.io/pub-manifest/#dfn-entities 1 -XRHitTestSource - -entity types +entities dfn -webxr-hit-test-1 -webxr-hit-test +vc-data-model-2.0 +vc-data-model 1 current -https://immersive-web.github.io/hit-test/#xrtransientinputhittestsource-entity-types +https://w3c.github.io/vc-data-model/#dfn-entities 1 -XRTransientInputHitTestSource - -entity types +entities +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-entities + +1 +- +entities +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-entities + +1 +- +entity +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-entities + +1 +- +entity +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-entities + +1 +- +entity +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-entities + +1 +- +entity +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-entities + +1 +- +entity id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-rate-limit-record-entity-id + +1 +attribution rate-limit record +- +entity types +dfn +webxr-hit-test-1 +webxr-hit-test +1 +current +https://immersive-web.github.io/hit-test/#xrhittestsource-entity-types + +1 +XRHitTestSource +- +entity types +dfn +webxr-hit-test-1 +webxr-hit-test +1 +current +https://immersive-web.github.io/hit-test/#xrtransientinputhittestsource-entity-types + +1 +XRTransientInputHitTestSource +- +entity types dfn webxr-hit-test-1 webxr-hit-test @@ -4839,6 +5511,26 @@ https://www.w3.org/TR/webxr-hit-test-1/#xrtransientinputhittestsource-entity-typ 1 XRTransientInputHitTestSource - +entity's +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-entities + +1 +- +entity's +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-entities + +1 +- entityTypes dict-member webxr-hit-test-1 @@ -4927,6 +5619,28 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#nested-history-entr 1 - entries +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-entries + +1 +Format 2 Patch Map +- +entries +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entries-entries + +1 +Mapping Entries +- +entries argument intersection-observer intersection-observer @@ -4949,6 +5663,28 @@ https://wicg.github.io/entries-api/#dom-filesystementriescallback-entries FileSystemEntriesCallback - entries +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-entries + +1 +Format 2 Patch Map +- +entries +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entries-entries + +1 +Mapping Entries +- +entries argument intersection-observer intersection-observer @@ -4998,7 +5734,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#entries-to-be-queued +https://w3c.github.io/event-timing/#entries-to-be-queued 1 - @@ -5014,11 +5750,22 @@ https://www.w3.org/TR/event-timing/#entries-to-be-queued - entries() method +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-entries +1 +1 +Navigation +- +entries() +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.entries +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.entries 1 1 %TypedArray% @@ -5056,17 +5803,6 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.entri 1 Set - -entries() -method -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigation-entries -1 -1 -Navigation -- entries(O) method ecmascript @@ -5091,14 +5827,14 @@ animation-timeline-range - entry dfn -fs -fs +html +html 1 current -https://fs.spec.whatwg.org/#filesystemhandle-entry +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#form-entry 1 1 -FileSystemHandle +entry list - entry dfn @@ -5106,10 +5842,20 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#form-entry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationdestination-entry + +1 +- +entry +attribute +html +html 1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationactivation-entry 1 -entry list +1 +NavigationActivation - entry dfn @@ -5165,6 +5911,28 @@ https://wicg.github.io/entries-api/#entry-concept - entry dfn +entries-api +entries-api +1 +current +https://wicg.github.io/entries-api/#filesystemdirectoryreader-entry + +1 +FileSystemDirectoryReader +- +entry +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-entry + +1 +shared storage database +- +entry +dfn permissions permissions 1 @@ -5237,24 +6005,23 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#entry-li - entry list dfn -performance-timeline -performance-timeline +html +html 1 current -https://w3c.github.io/performance-timeline/#dfn-entry-list +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-entry-list 1 - entry list dfn -navigation-api -navigation-api +performance-timeline +performance-timeline 1 current -https://wicg.github.io/navigation-api/#navigation-entry-list +https://w3c.github.io/performance-timeline/#dfn-entry-list 1 -Navigation - entry list dfn @@ -5357,6 +6124,28 @@ https://www.w3.org/TR/css-gcpm-3/#entry-value 1 - +entry-crossing +value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-entry-crossing +1 +1 +animation-timeline-range +- +entry-crossing +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-animation-timeline-range-entry-crossing +1 +1 +animation-timeline-range +- entryPoint dict-member webgpu @@ -5373,12 +6162,78 @@ dict-member webgpu webgpu 1 +current +https://gpuweb.github.io/gpuweb/#dom-gpushadermodulecompilationhint-entrypoint +1 +1 +GPUShaderModuleCompilationHint +- +entryPoint +dict-member +webgpu +webgpu +1 snapshot https://www.w3.org/TR/webgpu/#dom-gpuprogrammablestage-entrypoint 1 1 GPUProgrammableStage - +entryPoint +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpushadermodulecompilationhint-entrypoint +1 +1 +GPUShaderModuleCompilationHint +- +entryType +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-entrytype +1 +1 +PerformanceLongAnimationFrameTiming +- +entryType +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-entrytype +1 +1 +PerformanceScriptTiming +- +entryType +attribute +longtasks-1 +longtasks +1 +current +https://w3c.github.io/longtasks/#dom-performancelongtasktiming-entrytype +1 +1 +PerformanceLongTaskTiming +- +entryType +attribute +longtasks-1 +longtasks +1 +current +https://w3c.github.io/longtasks/#dom-taskattributiontiming-entrytype +1 +1 +TaskAttributionTiming +- entryType attribute performance-timeline @@ -5392,6 +6247,28 @@ PerformanceEntry - entryType attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-performancelongtasktiming-entrytype +1 +1 +PerformanceLongTaskTiming +- +entryType +attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-taskattributiontiming-entrytype +1 +1 +TaskAttributionTiming +- +entryType +attribute performance-timeline performance-timeline 1 @@ -5423,34 +6300,198 @@ https://www.w3.org/TR/performance-timeline/#dom-performanceobserverinit-entrytyp 1 PerformanceObserverInit - -entrylist +entrycount dfn -navigation-api -navigation-api +ift +ift 1 current -https://wicg.github.io/navigation-api/#navigate-entrylist +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-entrycount 1 -navigate +Format 2 Patch Map - -entrytype +entrycount dfn -resource-timing -resource-timing +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-entrycount + +1 +Format 1 Patch Map +- +entrycount +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-entrycount + +1 +Format 2 Patch Map +- +entryiddelta +dfn +ift +ift 1 current -https://w3c.github.io/resource-timing/#dfn-entrytype +https://w3c.github.io/IFT/Overview.html#mapping-entry-entryiddelta 1 +Mapping Entry - -entrytype +entryiddelta dfn -resource-timing -resource-timing +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-entryiddelta + +1 +Mapping Entry +- +entryidstringdata +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-entryidstringdata + +1 +Format 2 Patch Map +- +entryidstringdata +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-entryidstringdata + +1 +Format 2 Patch Map +- +entryidstringlength +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-entryidstringlength + +1 +Mapping Entry +- +entryidstringlength +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-entryidstringlength + +1 +Mapping Entry +- +entryindex +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-map-entryindex + +1 +Glyph Map +- +entryindex +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-map-entryindex + +1 +Glyph Map +- +entrymapcount +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#featurerecord-entrymapcount + +1 +FeatureRecord +- +entrymapcount +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#featurerecord-entrymapcount + +1 +FeatureRecord +- +entrymaprecord +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#entrymaprecord + +1 +- +entrymaprecord +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#entrymaprecord + +1 +- +entrymaprecords +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#feature-map-entrymaprecords + +1 +Feature Map +- +entrymaprecords +dfn +ift +ift 1 snapshot -https://www.w3.org/TR/resource-timing/#dfn-entrytype +https://www.w3.org/TR/IFT/#feature-map-entrymaprecords + +1 +Feature Map +- +entrytype +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry-entrytype 1 - @@ -5465,6 +6506,26 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-enum 1 ECMAScript - +enumerant +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#enumerant + +1 +- +enumerant +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#enumerant + +1 +- enumerate all devices attached to the system dfn webusb @@ -5517,13 +6578,23 @@ https://www.w3.org/TR/mediacapture-streams/#dom-mediadevices-enumeratedevices 1 MediaDevices - -enumerated attributes +enumerated attribute dfn html html 1 current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute +1 +1 +- +enumeration +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#enumeration 1 - @@ -5535,6 +6606,16 @@ webidl current https://webidl.spec.whatwg.org/#dfn-enumeration 1 +1 +- +enumeration +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#enumeration + 1 - enumeration types @@ -5606,6 +6687,26 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#envelopefollower +1 +- +enveloping proof +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-enveloping-proof +1 +1 +- +enveloping proof +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-enveloping-proof +1 1 - environment diff --git a/bikeshed/spec-data/readonly/anchors/anchors-eo.data b/bikeshed/spec-data/readonly/anchors/anchors-eo.data index bbadce5d85..092b16e6b2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-eo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-eo.data @@ -108,3 +108,23 @@ https://html.spec.whatwg.org/multipage/parsing.html#parse-error-eof-in-tag 1 - +eotf +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-eotf + +1 +- +eotf +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-eotf + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ep.data b/bikeshed/spec-data/readonly/anchors/anchors-ep.data index fa9018c7d8..f00139d59c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ep.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ep.data @@ -72,34 +72,36 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato - epoch dfn -ecmascript -ecmascript +topics +topics 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#epoch -1 +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-epoch + 1 -ECMAScript +browsing topics types - -epoch-relative timestamp +epoch dfn -hr-time-3 -hr-time -3 +ecmascript +ecmascript +1 current -https://w3c.github.io/hr-time/#dfn-epoch-relative-timestamp +https://tc39.es/ecma262/multipage/numbers-and-dates.html#epoch 1 1 +ECMAScript - -epoch-relative timestamp +epochs dfn -hr-time-3 -hr-time -3 -snapshot -https://www.w3.org/TR/hr-time-3/#dfn-epoch-relative-timestamp +topics +topics 1 +current +https://patcg-individual-drafts.github.io/topics/#user-topics-state-epochs + 1 +user topics state - epsilon dict-member @@ -128,6 +130,27 @@ dict-member webnn webnn 1 +current +https://webmachinelearning.github.io/webnn/#dom-mllayernormalizationoptions-epsilon +1 +1 +MLLayerNormalizationOptions +- +epsilon +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#epsilon + +1 +- +epsilon +dict-member +webnn +webnn +1 snapshot https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-epsilon 1 @@ -145,6 +168,17 @@ https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-epsilon 1 MLInstanceNormalizationOptions - +epsilon +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mllayernormalizationoptions-epsilon +1 +1 +MLLayerNormalizationOptions +- epub conformance checker dfn epub-33 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-eq.data b/bikeshed/spec-data/readonly/anchors/anchors-eq.data index cefe843713..8951305ab6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-eq.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-eq.data @@ -42,6 +42,46 @@ https://www.w3.org/TR/webaudio/#dom-panningmodeltype-equalpower 1 PanningModelType - +<eq/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_eq + +1 +- +<eq/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_eq + +1 +- +<equivalent/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_equivalent + +1 +- +<equivalent/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_equivalent + +1 +- equal dfn dom @@ -110,6 +150,17 @@ url - equal dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#set-equal + +1 +set +- +equal +dfn wgsl wgsl 1 @@ -190,6 +241,50 @@ https://www.w3.org/TR/IndexedDB-3/#equal-to 1 - +equal(a, b) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-equal +1 +1 +MLGraphBuilder +- +equal(a, b) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal +1 +1 +MLGraphBuilder +- +equal(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-equal +1 +1 +MLGraphBuilder +- +equal(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal +1 +1 +MLGraphBuilder +- equal_equal dfn wgsl @@ -278,6 +373,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssnumericvalue-equals 1 CSSNumericValue - +equals() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-equals +1 +1 +CSSNumericValue +- equals(...value) method css-typed-om-1 @@ -289,6 +395,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssnumericvalue-equals 1 CSSNumericValue - +equals(...value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-equals +1 +1 +CSSNumericValue +- equals(...values) method css-typed-om-1 @@ -320,6 +437,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-equivalence +- +equivalence +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-equivalence + + - equivalence class dfn @@ -364,42 +491,32 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-equivalence - equivalent dfn -rdf12-semantics -rdf-semantics +rdf12-concepts +rdf-concepts 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-equivalent +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-equivalence -1 -- -equivalent -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#equivalent -1 - equivalent dfn -generic-sensor -generic-sensor +service-workers +service-workers 1 snapshot -https://www.w3.org/TR/generic-sensor/#equivalent +https://www.w3.org/TR/service-workers/#dfn-job-equivalent 1 - -equivalent +equivalent modulo search variance dfn -service-workers -service-workers +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#equivalent-modulo-search-variance 1 -snapshot -https://www.w3.org/TR/service-workers/#dfn-job-equivalent - 1 - equivalent opaque format @@ -424,6 +541,50 @@ https://www.w3.org/TR/webcodecs/#equivalent-opaque-format - equivalent path dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#basic-shape-equivalent-path +1 +1 +<basic-shape> +- +equivalent path +dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#inset-equivalent-path +1 +1 +inset() +- +equivalent path +dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#rect-equivalent-path +1 +1 +rect() +- +equivalent path +dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#xywh-equivalent-path +1 +1 +xywh() +- +equivalent path +dfn svg2 svg 2 @@ -440,6 +601,26 @@ svg snapshot https://www.w3.org/TR/SVG2/paths.html#TermEquivalentPath +1 +- +equivalent texel representation +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#equivalent-texel-representation + +1 +- +equivalent texel representation +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#equivalent-texel-representation + 1 - equivalent to diff --git a/bikeshed/spec-data/readonly/anchors/anchors-er.data b/bikeshed/spec-data/readonly/anchors/anchors-er.data index af00e07e29..ca27cc7656 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-er.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-er.data @@ -44,6 +44,17 @@ GPUCompilationMessageType - "error" enum-value +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceloadstatus-error +1 +1 +FontFaceLoadStatus +- +"error" +enum-value webgpu webgpu 1 @@ -354,6 +365,50 @@ https://html.spec.whatwg.org/multipage/webappapis.html#erase-all-event-listeners 1 - +erf(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-erf +1 +1 +MLGraphBuilder +- +erf(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-erf +1 +1 +MLGraphBuilder +- +erf(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-erf +1 +1 +MLGraphBuilder +- +erf(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-erf +1 +1 +MLGraphBuilder +- err argument entries-api @@ -418,6 +473,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpuuncapturederroreventinit-error GPUUncapturedErrorEventInit - error +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#severity-error + +1 +severity +- +error event html html @@ -611,13 +677,13 @@ https://w3c.github.io/IndexedDB/#transaction-error transaction - error -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-error - +1 1 - error @@ -666,7 +732,18 @@ PaymentRequestDetailsUpdate - error dict-member -payment-request-1.1 +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentdetailsupdate-error +1 +1 +PaymentDetailsUpdate +- +error +dict-member +payment-request payment-request 1 current @@ -840,6 +917,17 @@ DecodeErrorCallback - error event +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-error +1 +1 +AudioContext +- +error +event websockets websockets 1 @@ -850,6 +938,17 @@ https://websockets.spec.whatwg.org/#eventdef-websocket-error WebSocket - error +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageiterator-error + +1 +SharedStorageIterator +- +error attribute speech-api speech-api @@ -1004,6 +1103,17 @@ https://www.w3.org/TR/IndexedDB-3/#transaction-error transaction - error +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#severity-error + +1 +severity +- +error attribute generic-sensor generic-sensor @@ -1026,13 +1136,13 @@ https://www.w3.org/TR/generic-sensor/#dom-sensorerroreventinit-error SensorErrorEventInit - error -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-error - +1 1 - error @@ -1081,11 +1191,22 @@ PaymentRequestDetailsUpdate - error dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-error +https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-error +1 +1 +PaymentDetailsUpdate +- +error +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-error 1 1 PaymentValidationErrors @@ -1210,14 +1331,15 @@ https://www.w3.org/TR/webgpu/#dom-gpuuncapturederroreventinit-error GPUUncapturedErrorEventInit - error -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-error +1 - +RTCDtlsTransport - error attribute @@ -1243,6 +1365,17 @@ RTCErrorEventInit - error event +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#event-datachannel-error +1 + +RTCDataChannel +- +error +event xhr xhr 1 @@ -1250,7 +1383,7 @@ current https://xhr.spec.whatwg.org/#event-xhr-error 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget - error code dfn @@ -1259,17 +1392,28 @@ webdriver 2 current https://w3c.github.io/webdriver/#dfn-error-code - +1 1 - error code dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#protocolxerror-error-code + + +ProtocolXError +- +error code +dfn webdriver2 webdriver 2 snapshot https://www.w3.org/TR/webdriver2/#dfn-error-code - +1 1 - error data @@ -1315,24 +1459,14 @@ TextDecoderCommon - error name dfn -webidl -webidl +fs +fs 1 current -https://webidl.spec.whatwg.org/#dfn-exception-error-name -1 -1 -exception -- -error names table -dfn -webidl -webidl -1 -current -https://webidl.spec.whatwg.org/#dfn-error-names-table -1 +https://fs.spec.whatwg.org/#file-system-access-result-error-name + 1 +file system access result - error reporting steps dfn @@ -1908,3 +2042,36 @@ https://streams.spec.whatwg.org/#writablestream-error 1 WritableStream - +errors +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-errors + +1 +verification result +- +errors +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-errors-0 + +1 +context validation result +- +errors +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-errors + +1 +verification result +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-es.data b/bikeshed/spec-data/readonly/anchors/anchors-es.data index 256326a463..f40ef111b6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-es.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-es.data @@ -1,3 +1,13 @@ +EscapeRegExpPattern +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-escaperegexppattern +1 +1 +- EscapeRegExpPattern(P, F) abstract-op ecmascript @@ -64,7 +74,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#escape-a-pattern-string +https://urlpattern.spec.whatwg.org/#escape-a-pattern-string 1 - @@ -74,7 +84,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#escape-a-regexp-string +https://urlpattern.spec.whatwg.org/#escape-a-regexp-string 1 - @@ -147,7 +157,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-type-escaped-char +https://urlpattern.spec.whatwg.org/#token-type-escaped-char 1 token/type @@ -225,6 +235,16 @@ https://www.w3.org/TR/webtransport/#session-establish 1 session - +establish a close watcher +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#establish-a-close-watcher + +1 +- establish a connection with the remote playback device dfn remote-playback @@ -367,6 +387,17 @@ https://www.w3.org/TR/webcodecs/#imagedecoder-establish-tracks 1 ImageDecoder - +establishContext() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresourcemanager-establishcontext +1 +1 +SmartCardResourceManager +- established an independent formatting context dfn css-display-3 @@ -478,6 +509,28 @@ https://html.spec.whatwg.org/multipage/media.html#defineTimeline 1 - +estimate +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-estimate +1 +1 +StorageAccessTypes +- +estimate() +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-estimate +1 +1 +StorageAccessHandle +- estimate() method storage @@ -489,6 +542,17 @@ https://storage.spec.whatwg.org/#dom-storagemanager-estimate 1 StorageManager - +estimate() +method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-estimate +1 +1 +StorageBucket +- estimated floor level dfn webxr @@ -529,16 +593,16 @@ https://www.w3.org/TR/hr-time-3/#dfn-estimated-monotonic-time-of-the-unix-epoch 1 - -estimatedPlayoutTimestamp -dict-member -webrtc-stats -webrtc-stats +estimated size +dfn +turtledove +turtledove 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-estimatedplayouttimestamp -1 +https://wicg.github.io/turtledove/#interest-group-estimated-size + 1 -RTCInboundRtpStreamStats +interest group - estimatedPlayoutTimestamp dict-member @@ -546,10 +610,10 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-estimatedplayouttimestamp +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-estimatedplayouttimestamp 1 - -RTCMediaStreamTrackStats +1 +RTCInboundRtpStreamStats - estimatedPlayoutTimestamp dict-member @@ -562,14 +626,25 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-estimatedplayou 1 RTCInboundRtpStreamStats - -estimatedPlayoutTimestamp +estimatedSendRate dict-member -webrtc-stats -webrtc-stats +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-estimatedsendrate +1 +1 +WebTransportConnectionStats +- +estimatedSendRate +dict-member +webtransport +webtransport 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-estimatedplayouttimestamp +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-estimatedsendrate 1 - -RTCMediaStreamTrackStats +1 +WebTransportConnectionStats - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-eu.data b/bikeshed/spec-data/readonly/anchors/anchors-eu.data index 22bd21c162..ea3cc5d5a8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-eu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-eu.data @@ -1,3 +1,23 @@ +<eulergamma/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_eulergamma + +1 +- +<eulergamma/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_eulergamma + +1 +- euc-jp dfn encoding @@ -88,3 +108,23 @@ https://encoding.spec.whatwg.org/#euc-kr-lead 1 - +european digits +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-european-digits + + +- +european digits +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-european-digits + + +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ev.data b/bikeshed/spec-data/readonly/anchors/anchors-ev.data index 48ce8a9596..83e76242fa 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ev.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ev.data @@ -9,6 +9,17 @@ https://wicg.github.io/csp-next/scripting-policy.html#dom-scriptingpolicyviolati 1 ScriptingPolicyViolationType - +"event-listener" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptinvokertype-event-listener +1 +1 +ScriptInvokerType +- %EvalError% exception ecmascript @@ -38,6 +49,16 @@ html current https://html.spec.whatwg.org/multipage/infrastructure.html#evalerror.prototype +1 +- +EvalDeclarationInstantiation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-evaldeclarationinstantiation +1 1 - EvalDeclarationInstantiation(body, varEnv, lexEnv, privateEnv, strict) @@ -79,7 +100,17 @@ current https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-moduleevaluation 1 1 -Module Records +Cyclic Module Records +- +EvaluateCall +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evaluatecall +1 +1 - EvaluateCall(func, ref, arguments, tailPosition) abstract-op @@ -91,6 +122,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evalu 1 1 - +EvaluateNew +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evaluatenew +1 +1 +- EvaluateNew(constructExpr, arguments) abstract-op ecmascript @@ -101,6 +142,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evalu 1 1 - +EvaluatePropertyAccessWithExpressionKey +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evaluate-property-access-with-expression-key +1 +1 +- EvaluatePropertyAccessWithExpressionKey(baseValue, expression, strict) abstract-op ecmascript @@ -111,6 +162,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evalu 1 1 - +EvaluatePropertyAccessWithIdentifierKey +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evaluate-property-access-with-identifier-key +1 +1 +- EvaluatePropertyAccessWithIdentifierKey(baseValue, identifierName, strict) abstract-op ecmascript @@ -121,6 +182,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evalu 1 1 - +EvaluateStringOrNumericBinaryExpression +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-evaluatestringornumericbinaryexpression +1 +1 +- EvaluateStringOrNumericBinaryExpression(leftOperand, opText, rightOperand) abstract-op ecmascript @@ -169,7 +240,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#eventcounts +https://w3c.github.io/event-timing/#eventcounts 1 1 - @@ -253,6 +324,16 @@ https://www.w3.org/TR/uievents/#dictdef-eventmodifierinit 1 1 - +EventSet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-event-set +1 +1 +- EventSet(execution) abstract-op ecmascript @@ -348,6 +429,17 @@ https://wicg.github.io/csp-next/scripting-policy.html#scripting-policy-eval 1 scripting policy - +eval +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsprfinputs-eval +1 +1 +AuthenticationExtensionsPRFInputs +- eval code dfn ecmascript @@ -381,13 +473,44 @@ https://w3c.github.io/webauthn/#dom-authenticationextensionsprfinputs-evalbycred 1 AuthenticationExtensionsPRFInputs - +evalByCredential +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsprfinputs-evalbycredential +1 +1 +AuthenticationExtensionsPRFInputs +- +evaluate a bidding script +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#evaluate-a-bidding-script + +1 +- +evaluate a custom function +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#evaluate-a-custom-function + +1 +- evaluate a javascript: url dfn html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#evaluate-a-javascript:-url +https://html.spec.whatwg.org/multipage/browsing-the-web.html#evaluate-a-javascript%3A-url 1 - @@ -419,6 +542,36 @@ entries-api current https://wicg.github.io/entries-api/#evaluate-a-path +1 +- +evaluate a reporting script +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#evaluate-a-reporting-script + +1 +- +evaluate a scoring script +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#evaluate-a-scoring-script + +1 +- +evaluate a script +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#evaluate-a-script + 1 - evaluate function body @@ -680,6 +833,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-script-event HTMLScriptElement - event +argument +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-contributetohistogramonevent-event-contribution-event +1 +1 +PrivateAggregation/contributeToHistogramOnEvent(event, contribution) +- +event dfn wai-aria-1.2 wai-aria @@ -691,23 +855,13 @@ https://w3c.github.io/aria/#dfn-event - event dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-event +https://w3c.github.io/aria/#dfn-event -1 -- -event -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-event -1 - event dfn @@ -728,16 +882,6 @@ current https://w3c.github.io/svg-aam/#dfn-event -- -event -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#event - -1 - event dfn @@ -762,24 +906,49 @@ source type - event argument -ink-enhancement -ink-enhancement +fenced-frame +fenced-frame 1 current -https://wicg.github.io/ink-enhancement/#dom-inkpresenter-updateinktrailstartpoint-event-style-event +https://wicg.github.io/fenced-frame/#dom-fence-reportevent-event-event 1 1 -InkPresenter/updateInkTrailStartPoint(event, style) +Fence/reportEvent(event) +Fence/reportEvent() +- +event +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fence-setreporteventdataforautomaticbeacons-event-event +1 +1 +Fence/setReportEventDataForAutomaticBeacons(event) +Fence/setReportEventDataForAutomaticBeacons() - event dfn -accname-1.2 -accname +fenced-frame +fenced-frame 1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-event - +current +https://wicg.github.io/fenced-frame/#pending-event-event +1 +1 +pending event +- +event +argument +ink-enhancement +ink-enhancement 1 +current +https://wicg.github.io/ink-enhancement/#dom-inkpresenter-updateinktrailstartpoint-event-style-event +1 +1 +InkPresenter/updateInkTrailStartPoint(event, style) - event dfn @@ -809,16 +978,6 @@ svg-aam snapshot https://www.w3.org/TR/svg-aam-1.0/#dfn-event -1 -- -event -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#event - 1 - event @@ -843,13 +1002,13 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-event - event dfn -webmidi -webmidi +wai-aria-1.3 +wai-aria 1 snapshot -https://www.w3.org/TR/webmidi/#dfn-event -1 -1 +https://www.w3.org/TR/wai-aria-1.3/#dfn-event + + - event dfn @@ -891,13 +1050,13 @@ https://dom.spec.whatwg.org/#concept-event-constructor-ext 1 1 - -event enabled browsing contexts +event enabled navigables dfn webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#event-enabled-browsing-contexts +https://w3c.github.io/webdriver-bidi/#event-enabled-navigables 1 - @@ -929,26 +1088,6 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers 1 -1 -- -event handler -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#event-handler - -1 -- -event handler -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#event-handler - 1 - event handler content attribute @@ -988,8 +1127,9 @@ html 1 current https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-map - 1 +1 +EventTarget - event id dfn @@ -1020,7 +1160,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#event-is-enabled - +1 1 - event listener @@ -1031,26 +1171,6 @@ dom current https://dom.spec.whatwg.org/#concept-event-listener 1 -1 -- -event listener -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#event-listener - -1 -- -event listener -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#event-listener - 1 - event listener list @@ -1106,98 +1226,69 @@ https://w3c.github.io/webdriver-bidi/#event-event-name 1 event - -event order -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#event-order - -1 -- -event order -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#event-order - -1 -- event parameters. dfn webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#command-event-parameters +https://w3c.github.io/webdriver-bidi/#event-event-parameters 1 1 -command +event - -event phase +event target dfn uievents uievents 1 current -https://w3c.github.io/uievents/#event-phase +https://w3c.github.io/uievents/#event-target 1 - -event phase +event target dfn uievents uievents 1 snapshot -https://www.w3.org/TR/uievents/#event-phase +https://www.w3.org/TR/uievents/#event-target 1 - -event report window +event target element id dfn -attribution-reporting-api -attribution-reporting-api +long-animation-frames +long-animation-frames 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-event-report-window +https://w3c.github.io/long-animation-frames/#script-timing-info-event-target-element-id 1 -attribution source +script timing info - -event report window time +event target element src attribute dfn -attribution-reporting-api -attribution-reporting-api +long-animation-frames +long-animation-frames 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-event-report-window-time +https://w3c.github.io/long-animation-frames/#script-timing-info-event-target-element-src-attribute 1 -attribution source +script timing info - -event target +event type dfn -uievents -uievents +long-animation-frames +long-animation-frames 1 current -https://w3c.github.io/uievents/#event-target - -1 -- -event target -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#event-target +https://w3c.github.io/long-animation-frames/#script-timing-info-event-type 1 +script timing info - event type dfn @@ -1230,6 +1321,17 @@ https://www.w3.org/TR/uievents/#event-type 1 - +event-attribution +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#rate-limit-scope-event-attribution + +1 +rate-limit scope +- event-level attributable dfn attribution-reporting-api @@ -1238,6 +1340,17 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#attribution-source-event-level-attributable +1 +attribution source +- +event-level epsilon +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-event-level-epsilon + 1 attribution source - @@ -1261,6 +1374,17 @@ https://wicg.github.io/attribution-reporting-api/#event-level-report-cache 1 - +event-level report windows +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-spec-event-level-report-windows + +1 +trigger spec +- event-level trigger configuration dfn attribution-reporting-api @@ -1282,15 +1406,59 @@ https://wicg.github.io/attribution-reporting-api/#attribution-trigger-event-leve 1 attribution trigger - -event-source trigger data cardinality +event-level-report-replacement result +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-report-replacement-result + +1 +- +event-source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligibility-event-source + +1 +eligibility +- +event-source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligible-key-event-source + +1 +eligible key +- +event-source-or-trigger dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#event-source-trigger-data-cardinality +https://wicg.github.io/attribution-reporting-api/#eligibility-event-source-or-trigger 1 +eligibility +- +eventCount +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateout-eventcount +1 +1 +SmartCardReaderStateOut - eventCounts attribute @@ -1298,7 +1466,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performance-eventcounts +https://w3c.github.io/event-timing/#dom-performance-eventcounts 1 1 Performance @@ -1314,29 +1482,16 @@ https://www.w3.org/TR/event-timing/#dom-performance-eventcounts 1 Performance - -eventInit -argument -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigateevent-navigateevent-type-eventinit-eventinit -1 -1 -NavigateEvent/NavigateEvent(type, eventInit) -NavigateEvent/constructor(type, eventInit) -- -eventInit -argument -navigation-api -navigation-api +eventData +dict-member +fenced-frame +fenced-frame 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeevent-navigationcurrententrychangeevent-type-eventinit-eventinit +https://wicg.github.io/fenced-frame/#dom-fenceevent-eventdata 1 1 -NavigationCurrentEntryChangeEvent/NavigationCurrentEntryChangeEvent(type, eventInit) -NavigationCurrentEntryChangeEvent/constructor(type, eventInit) +FenceEvent - eventInitDict argument @@ -1410,6 +1565,20 @@ NavigationEvent/constructor(type) - eventInitDict argument +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snapevent-type-eventinitdict-eventinitdict +1 +1 +SnapEvent/SnapEvent(type, eventInitDict) +SnapEvent/constructor(type, eventInitDict) +SnapEvent/SnapEvent(type) +SnapEvent/constructor(type) +- +eventInitDict +argument cssom-view-1 cssom-view 1 @@ -1848,6 +2017,18 @@ ExtendableCookieChangeEvent/constructor(type) - eventInitDict argument +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureevent-documentpictureinpictureevent-type-eventinitdict-eventinitdict +1 +1 +DocumentPictureInPictureEvent/DocumentPictureInPictureEvent(type, eventInitDict) +DocumentPictureInPictureEvent/constructor(type, eventInitDict) +- +eventInitDict +argument portals portals 1 @@ -1982,10 +2163,13 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-cssfontfaceloadeventcssfontfaceloadevent-eventinitdict +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfacesetloadevent-type-eventinitdict-eventinitdict 1 1 -CSSFontFaceLoadEvent/CSSFontFaceLoadEvent() +FontFaceSetLoadEvent/FontFaceSetLoadEvent(type, eventInitDict) +FontFaceSetLoadEvent/constructor(type, eventInitDict) +FontFaceSetLoadEvent/FontFaceSetLoadEvent(type) +FontFaceSetLoadEvent/constructor(type) - eventInitDict argument @@ -2001,6 +2185,20 @@ NavigationEvent/constructor(type) - eventInitDict argument +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snapevent-type-eventinitdict-eventinitdict +1 +1 +SnapEvent/SnapEvent(type, eventInitDict) +SnapEvent/constructor(type, eventInitDict) +SnapEvent/SnapEvent(type) +SnapEvent/constructor(type) +- +eventInitDict +argument cssom-view-1 cssom-view 1 @@ -2216,6 +2414,20 @@ AnimationPlaybackEvent/constructor(type) - eventInitDict argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-animationplaybackevent-type-eventinitdict-eventinitdict +1 +1 +AnimationPlaybackEvent/AnimationPlaybackEvent(type, eventInitDict) +AnimationPlaybackEvent/constructor(type, eventInitDict) +AnimationPlaybackEvent/AnimationPlaybackEvent(type) +AnimationPlaybackEvent/constructor(type) +- +eventInitDict +argument webaudio webaudio 1 @@ -2335,13 +2547,90 @@ https://dom.spec.whatwg.org/#dom-event-eventphase 1 Event - +eventSourceEligible +dict-member +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#dom-attributionreportingrequestoptions-eventsourceeligible +1 +1 +AttributionReportingRequestOptions +- +eventState +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateout-eventstate +1 +1 +SmartCardReaderStateOut +- +eventType +dict-member +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fenceevent-eventtype +1 +1 +FenceEvent +- +event_level_epsilon +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-event_level_epsilon + +1 +source-registration JSON key +- +event_report_window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-event_report_window + +1 +source-registration JSON key +- +event_report_windows +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-event_report_windows + +1 +source-registration JSON key +- +event_trigger_data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-event_trigger_data + +1 +trigger-registration JSON key +- eventcounts dfn event-timing event-timing 1 current -https://w3c.github.io/event-timing#window-eventcounts +https://w3c.github.io/event-timing/#window-eventcounts 1 Window @@ -2357,15 +2646,16 @@ https://www.w3.org/TR/event-timing/#window-eventcounts 1 Window - -events +eventdata dfn -mathml-aam -mathml-aam +fenced-frame +fenced-frame 1 current -https://w3c.github.io/mathml-aam/#dfn-event +https://wicg.github.io/fenced-frame/#automatic-beacon-data-eventdata 1 +automatic beacon data - events dfn @@ -2376,16 +2666,6 @@ current https://w3c.github.io/svg-aam/#dfn-event -- -events -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-event - -1 - events dfn @@ -2433,7 +2713,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#performanceeventtiming-eventtarget +https://w3c.github.io/event-timing/#performanceeventtiming-eventtarget 1 PerformanceEventTiming @@ -2449,6 +2729,26 @@ https://www.w3.org/TR/event-timing/#performanceeventtiming-eventtarget 1 PerformanceEventTiming - +eventual snap target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#eventual-snap-target +1 +1 +- +eventual snap target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#eventual-snap-target +1 +1 +- ever populated dfn html @@ -2459,18 +2759,18 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-ever 1 - -every(callbackfn, thisArg) +every(callback, thisArg) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.every +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.every 1 1 %TypedArray% - -every(callbackfn, thisArg) +every(callback, thisArg) method ecmascript ecmascript @@ -2481,6 +2781,26 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.e 1 Array - +evidence +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#defn-evidence +1 +1 +- +evidence +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#defn-evidence +1 +1 +- evidence of user interaction dfn fido-v2.1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ex.data b/bikeshed/spec-data/readonly/anchors/anchors-ex.data index 8c0710c29a..385de17ae3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ex.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ex.data @@ -20,49 +20,49 @@ https://www.w3.org/TR/web-locks/#dom-lockmode-exclusive 1 LockMode - -"explicit" +"expired" enum-value -webaudio -webaudio +webgpu +webgpu 1 current -https://webaudio.github.io/web-audio-api/#dom-channelcountmode-explicit +https://gpuweb.github.io/gpuweb/#dom-adapter-state-expired 1 1 -ChannelCountMode +adapter/[[state]] - -"explicit" +"expired" enum-value -webnn -webnn +webgpu +webgpu 1 -current -https://webmachinelearning.github.io/webnn/#dom-mlautopad-explicit +snapshot +https://www.w3.org/TR/webgpu/#dom-adapter-state-expired 1 1 -MLAutoPad +adapter/[[state]] - "explicit" enum-value webaudio webaudio 1 -snapshot -https://www.w3.org/TR/webaudio/#dom-channelcountmode-explicit +current +https://webaudio.github.io/web-audio-api/#dom-channelcountmode-explicit 1 1 ChannelCountMode - "explicit" enum-value -webnn -webnn +webaudio +webaudio 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlautopad-explicit +https://www.w3.org/TR/webaudio/#dom-channelcountmode-explicit 1 1 -MLAutoPad +ChannelCountMode - "exponential" enum-value @@ -86,6 +86,28 @@ https://www.w3.org/TR/webaudio/#dom-distancemodeltype-exponential 1 DistanceModelType - +"extended" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpucanvastonemappingmode-extended +1 +1 +GPUCanvasToneMappingMode +- +"extended" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucanvastonemappingmode-extended +1 +1 +GPUCanvasToneMappingMode +- "externalScript" enum-value csp-next @@ -141,6 +163,46 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-valuetype-externref 1 ValueType - +<exists/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_exists + +1 +- +<exists/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_exists + +1 +- +<exp/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_exp + +1 +- +<exp/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_exp + +1 +- <explicit-track-list> type css-grid-1 @@ -179,6 +241,26 @@ css-grid snapshot https://www.w3.org/TR/css-grid-2/#typedef-explicit-track-list 1 +1 +- +<exponentiale/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_exponentiale + +1 +- +<exponentiale/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_exponentiale + 1 - <extension-name> @@ -191,15 +273,15 @@ https://drafts.csswg.org/css-extensions-1/#typedef-extension-name 1 1 - -<extent-keyword> -type -css-images-3 -css-images -3 -snapshot -https://www.w3.org/TR/css-images-3/#typedef-extent-keyword - - +ExecuteAsyncModule +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-execute-async-module +1 +1 - ExecuteAsyncModule(module) abstract-op @@ -222,6 +304,46 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 Cyclic Module Records - +Expire +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-expire +1 +1 +- +Expire +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-expire +1 +1 +- +Expire the current texture +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-expire-the-current-texture +1 +1 +- +Expire the current texture +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-expire-the-current-texture +1 +1 +- Exposed extended-attribute webidl @@ -232,13 +354,23 @@ https://webidl.spec.whatwg.org/#Exposed 1 1 - -Extend the font subset +Extend an Incremental Font Subset abstract-op ift ift 1 current -https://w3c.github.io/IFT/Overview.html#abstract-opdef-extend-the-font-subset +https://w3c.github.io/IFT/Overview.html#abstract-opdef-extend-an-incremental-font-subset +1 +1 +- +Extend an Incremental Font Subset +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-extend-an-incremental-font-subset 1 1 - @@ -587,10 +719,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex 1 1 -text-edge +line-fit-edge +<<text-edge>> - ex value @@ -631,10 +764,11 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-ex +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-ex 1 1 -text-edge +line-fit-edge +<<text-edge>> - ex value @@ -658,6 +792,59 @@ https://www.w3.org/TR/css-values-4/#ex 1 <length> - +ex (unit) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#ex +1 +1 +- +ex (unit) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#ex +1 +1 +- +ex unit +value +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#ex +1 +1 +<length> +- +ex unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#ex +1 +1 +<length> +- +ex unit +value +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#ex +1 +1 +<length> +- ex(value) method css-typed-om-1 @@ -791,6 +978,17 @@ https://w3c.github.io/mediacapture-main/#dom-constrainulongrange-exact ConstrainULongRange - exact +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-data-matching-mode-exact + +1 +trigger-data matching mode +- +exact value css-color-adjust-1 css-color-adjust @@ -864,6 +1062,26 @@ css current https://drafts.csswg.org/css2/#exact-matching +1 +- +exact matching +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x14 +1 +1 +- +exact matching +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x14 +1 1 - example term @@ -894,6 +1112,16 @@ device-memory current https://www.w3.org/TR/device-memory/#examples +1 +- +examples of these types +dfn +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-credential-type-examples + 1 - exceeds the binding slot limits @@ -942,7 +1170,7 @@ webidl webidl 1 current -https://webidl.spec.whatwg.org/#es-exception-objects +https://webidl.spec.whatwg.org/#js-exception-objects 1 - @@ -955,6 +1183,7 @@ current https://html.spec.whatwg.org/multipage/browsing-the-web.html#exceptions-enabled 1 1 +navigate - exceptionsenabled dfn @@ -1006,6 +1235,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#exchange-mtu 1 - +exchange protocol +dfn +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-exchange-protocol + +1 +digital credential +- exchange record dfn prefetch @@ -1054,6 +1294,17 @@ screen-capture screen-capture 1 current +https://w3c.github.io/mediacapture-screen-share/#idl-def-MonitorTypeSurfacesEnum.exclude +1 +1 +MonitorTypeSurfacesEnum +- +exclude +enum-value +screen-capture +screen-capture +1 +current https://w3c.github.io/mediacapture-screen-share/#idl-def-SelfCapturePreferenceEnum.exclude 1 1 @@ -1082,6 +1333,17 @@ https://w3c.github.io/mediacapture-screen-share/#idl-def-SystemAudioPreferenceEn SystemAudioPreferenceEnum - exclude +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-source-registration-time-configuration-exclude + +1 +aggregatable source registration time configuration +- +exclude value css-masking-1 css-masking @@ -1098,6 +1360,17 @@ screen-capture screen-capture 1 snapshot +https://www.w3.org/TR/screen-capture/#idl-def-MonitorTypeSurfacesEnum.exclude +1 +1 +MonitorTypeSurfacesEnum +- +exclude +enum-value +screen-capture +screen-capture +1 +snapshot https://www.w3.org/TR/screen-capture/#idl-def-SelfCapturePreferenceEnum.exclude 1 1 @@ -1191,6 +1464,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-exclude 1 PublicKeyCredentialCreationOptions - +excludeCredentials +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-excludecredentials +1 +1 +PublicKeyCredentialCreationOptionsJSON +- excluded subtree dfn css-scroll-anchoring-1 @@ -1367,6 +1651,17 @@ https://www.w3.org/Consortium/Patent-Policy/#exclusion-opportunity - exclusionFilters dict-member +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#dom-requestdeviceoptions-exclusionfilters +1 + +RequestDeviceOptions +- +exclusionFilters +dict-member webhid webhid 1 @@ -1376,6 +1671,28 @@ https://wicg.github.io/webhid/#dom-hiddevicerequestoptions-exclusionfilters 1 HIDDeviceRequestOptions - +exclusionFilters +dict-member +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dom-usbdevicerequestoptions-exclusionfilters +1 +1 +USBDeviceRequestOptions +- +exclusionFilters +dict-member +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dom-usbpermissiondescriptor-exclusionfilters +1 +1 +USBPermissionDescriptor +- exclusive dict-member entries-api @@ -1387,6 +1704,39 @@ https://wicg.github.io/entries-api/#dom-filesystemflags-exclusive 1 FileSystemFlags - +exclusive +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardaccessmode-exclusive +1 +1 +SmartCardAccessMode +- +exclusive +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-exclusive +1 +1 +SmartCardReaderStateFlagsIn +- +exclusive +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-exclusive +1 +1 +SmartCardReaderStateFlagsOut +- exclusive access dfn webxr @@ -1433,7 +1783,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-exec +https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec 1 1 URLPattern @@ -1444,7 +1794,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-exec +https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec 1 1 URLPattern @@ -1455,7 +1805,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-exec +https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec 1 1 URLPattern @@ -1519,6 +1869,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-execute-async-script +1 +- +execute graph +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#execute-graph + +1 +- +execute graph +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#execute-graph + 1 - execute script @@ -1639,6 +2009,17 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 ECMAScript - +execution mode +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-execution-mode + +1 +interest group +- execution ready flag dfn html @@ -1670,6 +2051,17 @@ https://www.w3.org/TR/WGSL/#execution-scope 1 - +execution start time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-execution-start-time + +1 +script timing info +- execution-while-not-rendered dfn page-lifecycle @@ -1690,6 +2082,28 @@ https://wicg.github.io/page-lifecycle/#execution-while-out-of-viewport 1 1 - +executionMode +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-executionmode +1 +1 +GenerateBidInterestGroup +- +executionStart +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-executionstart +1 +1 +PerformanceScriptTiming +- executioncontexts grammar clear-site-data @@ -1730,6 +2144,61 @@ https://www.w3.org/TR/epub-33/#dfn-exempt-resource 1 1 - +exfiltration budget metadata +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-exfiltration-budget-metadata +1 +1 +fenced frame config +- +exfiltration budget metadata +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-exfiltration-budget-metadata +1 +1 +fencedframetype +- +exfiltration budget metadata reference +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-exfiltration-budget-metadata-reference +1 +1 +fenced frame config instance +- +exfiltration budget metadata reference +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-exfiltration-budget-metadata-reference +1 +1 +fencedframetype +- +exhaustive set of sandbox flags +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-exhaustive-set-of-sandbox-flags +1 +1 +fencedframetype +- exist dfn infra @@ -1816,6 +2285,26 @@ picture-in-picture snapshot https://www.w3.org/TR/picture-in-picture/#exit-picture-in-picture-algorithm +1 +- +exit pointer lock +dfn +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dfn-exit-pointer-lock + +1 +- +exit pointer lock +dfn +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dfn-exit-pointer-lock + 1 - exit value @@ -1858,6 +2347,28 @@ https://www.w3.org/TR/css-gcpm-3/#exit-value 1 - +exit-crossing +value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-exit-crossing +1 +1 +animation-timeline-range +- +exit-crossing +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-animation-timeline-range-exit-crossing +1 +1 +animation-timeline-range +- exitFullscreen() method fullscreen @@ -1955,18 +2466,29 @@ https://www.w3.org/TR/css-values-4/#funcdef-exp 1 1 - -exp(x) +exp(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.exp +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-exp 1 1 -Math +MLGraphBuilder - -exp(x) +exp(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp +1 +1 +MLGraphBuilder +- +exp(input, options) method webnn webnn @@ -1977,7 +2499,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-exp 1 MLGraphBuilder - -exp(x) +exp(input, options) method webnn webnn @@ -1988,6 +2510,27 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp 1 MLGraphBuilder - +exp(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.exp +1 +1 +Math +- +expand a storage partition spec +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#expand-a-storage-partition-spec + +1 +- expand() method json-ld11-api @@ -2032,6 +2575,50 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonldprocessor-expand 1 JsonLdProcessor - +expand(input, newShape) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-expand +1 +1 +MLGraphBuilder +- +expand(input, newShape) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand +1 +1 +MLGraphBuilder +- +expand(input, newShape, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-expand +1 +1 +MLGraphBuilder +- +expand(input, newShape, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand +1 +1 +MLGraphBuilder +- expand(input, options) method json-ld11-api @@ -2098,16 +2685,36 @@ https://dom.spec.whatwg.org/#dom-treewalker-expandentityreferences 1 TreeWalker - +expandable separators +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#expandable-separators + +1 +- +expandable separators +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#expandable-separators + +1 +- expanded value css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-expanded +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-expanded 1 1 -font-stretch +font-width - expanded enum-value @@ -2136,10 +2743,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-expanded +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-expanded 1 1 -font-stretch +font-width - expanded dfn @@ -2239,6 +2846,16 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#expanded-transition-property-name +1 +- +expanded transition property name +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#expanded-transition-property-name + 1 - expanding @@ -2280,6 +2897,28 @@ snapshot https://www.w3.org/TR/json-ld11-api/#dfn-expanded +- +expect +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#link-type-expect +1 +1 +link/rel +- +expected currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-expected-currency + +1 +InterestGroupBiddingScriptRunnerGlobalScope - expectedDisplayTime dict-member @@ -2292,22 +2931,42 @@ https://wicg.github.io/video-rvfc/#dom-videoframecallbackmetadata-expecteddispla 1 VideoFrameCallbackMetadata - -expectedImprovement -attribute -ink-enhancement -ink-enhancement +expects additional bids +dfn +turtledove +turtledove 1 current -https://wicg.github.io/ink-enhancement/#dom-inkpresenter-expectedimprovement +https://wicg.github.io/turtledove/#auction-config-expects-additional-bids + 1 +auction config +- +experimental flexible event support +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#experimental-flexible-event-support + 1 -InkPresenter - expiration -attribute -encrypted-media +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-expiration + 1 +- +expiration +attribute +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-expiration 1 @@ -2316,14 +2975,45 @@ MediaKeySession - expiration dfn +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-expiration + 1 +- +expiration +attribute +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-expiration +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-expiration +1 +1 +MediaKeySession +- +expiration time +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-expiration 1 -mediakeysession +- +expiration time +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#storagebucket-expiration-time + +1 +StorageBucket - expiration time dfn @@ -2336,6 +3026,16 @@ https://wicg.github.io/webpackage/loading.html#exchange-signature-expiration-tim 1 exchange signature - +expiration time +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-expiration + +1 +- expirationTime attribute push-api @@ -2380,6 +3080,26 @@ https://www.w3.org/TR/push-api/#dom-pushsubscriptionjson-expirationtime 1 PushSubscriptionJSON - +expire +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-expire +1 +1 +- +expire +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-expire +1 +1 +- expired dfn html @@ -2392,9 +3112,9 @@ https://html.spec.whatwg.org/multipage/interaction.html#activation-expiry - expired enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-expired 1 @@ -2403,7 +3123,7 @@ MediaKeyStatus - expired dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2413,25 +3133,69 @@ https://w3c.github.io/network-error-logging/#dfn-expired - expired dfn -encrypted-media -encrypted-media +network-reporting +network-reporting 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-expired +current +https://w3c.github.io/reporting/network-reporting.html#endpoint-group-expired 1 -mediakeystatus +endpoint group - expired dfn -network-error-logging-1 +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#bit-debit-expired + +1 +bit debit +- +expired +enum-value +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-expired +1 +1 +MediaKeyStatus +- +expired +dfn +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-expired +https://www.w3.org/TR/network-error-logging/#dfn-expired 1 - +expiredIncoming +dict-member +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportdatagramstats-expiredincoming +1 +1 +WebTransportDatagramStats +- +expiredIncoming +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportdatagramstats-expiredincoming +1 +1 +WebTransportDatagramStats +- expiredOutgoing dict-member webtransport @@ -2455,6 +3219,16 @@ https://www.w3.org/TR/webtransport/#dom-webtransportdatagramstats-expiredoutgoin WebTransportDatagramStats - expires +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-expire +1 +1 +- +expires attribute webrtc webrtc @@ -2499,6 +3273,38 @@ https://wicg.github.io/cookie-store/#dom-cookielistitem-expires CookieListItem - expires +argument +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-setexpires-expires-expires +1 +1 +StorageBucket/setExpires(expires) +- +expires +dict-member +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketoptions-expires +1 +1 +StorageBucketOptions +- +expires +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-expire +1 +1 +- +expires attribute webrtc webrtc @@ -2520,6 +3326,17 @@ https://www.w3.org/TR/webrtc/#dom-rtccertificateexpiration-expires 1 RTCCertificateExpiration - +expires() +method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-expires +1 +1 +StorageBucket +- expiry dfn attribution-reporting-api @@ -2531,6 +3348,28 @@ https://wicg.github.io/attribution-reporting-api/#attribution-source-expiry 1 attribution source - +expiry +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-expiry + +1 +source-registration JSON key +- +expiry +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-expiry + +1 +interest group +- expiry time dfn attribution-reporting-api @@ -2586,17 +3425,6 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dom-trackingexdata-explanatio TrackingExData - -explanation -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata-explanation - -1 -trackingexdata -- explanatory text dfn sms-one-time-codes @@ -2972,16 +3800,6 @@ css-grid current https://drafts.csswg.org/css-grid-2/#explicit-grid-span 1 -1 -- -explicit scopes -dfn -css-cascade-6 -css-cascade -6 -current -https://drafts.csswg.org/css-cascade-6/#explicit-scopes - 1 - explicit span @@ -3284,7 +4102,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-exportKey -1 + 1 - exportparts @@ -3365,13 +4183,13 @@ https://w3c.github.io/aria/#dfn-expose - expose dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-expose +https://w3c.github.io/aria/#dfn-expose + -1 - expose dfn @@ -3392,6 +4210,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-expose +- +expose +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-expose + + - expose a user interface to the user dfn @@ -3466,6 +4294,26 @@ https://wicg.github.io/background-fetch/#background-fetch-response-exposed 1 background fetch response - +exposed for paint timing +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#exposed-for-paint-timing +1 +1 +- +exposed for paint timing +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#exposed-for-paint-timing +1 +1 +- exposing hardware is allowed dfn webrtc-stats @@ -3868,7 +4716,7 @@ input-events snapshot https://www.w3.org/TR/input-events-2/#dfn-express-intention - +1 - express permission dfn @@ -4002,6 +4850,26 @@ https://www.w3.org/TR/WGSL/#syntax-expression_comma_list 1 syntax - +expressions +dfn +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#expressions + +1 +- +expressions +dfn +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#expressions + +1 +- ext dict-member webcryptoapi @@ -4150,17 +5018,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_extended_grapheme_cluster -1 - -- -extended grapheme cluster -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_extended_grapheme_cluster +https://w3c.github.io/i18n-glossary/#dfn-extended-grapheme-cluster 1 - @@ -4170,69 +5028,69 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_extended_grapheme_cluster +https://www.w3.org/TR/i18n-glossary/#dfn-extended-grapheme-cluster 1 - -extended grapheme cluster +extended inquiry response dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_extended_grapheme_cluster +web-bluetooth +web-bluetooth 1 +current +https://webbluetoothcg.github.io/web-bluetooth/#extended-inquiry-response +1 - -extended grapheme clusters +extended language range dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_extended_grapheme_cluster +https://w3c.github.io/i18n-glossary/#dfn-extended-language-range 1 - -extended grapheme clusters +extended language range dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_extended_grapheme_cluster +https://www.w3.org/TR/i18n-glossary/#dfn-extended-language-range 1 - -extended inquiry response +extended navigation dfn -web-bluetooth -web-bluetooth +nav-tracking-mitigations +nav-tracking-mitigations 1 current -https://webbluetoothcg.github.io/web-bluetooth/#extended-inquiry-response +https://privacycg.github.io/nav-tracking-mitigations/#extended-navigation 1 - -extended language range +extended real dfn -i18n-glossary -i18n-glossary +wgsl +wgsl 1 current -https://w3c.github.io/i18n-glossary/#def_extended_language_range -1 +https://gpuweb.github.io/gpuweb/wgsl/#extended-real +1 - -extended language range +extended real dfn -i18n-glossary -i18n-glossary +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_extended_language_range -1 +https://www.w3.org/TR/WGSL/#extended-real +1 - extended-address dfn @@ -4285,16 +5143,6 @@ current https://html.spec.whatwg.org/multipage/links.html#concept-extension 1 -- -extension -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_tag_extension -1 - - extension dfn @@ -4303,7 +5151,7 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-extension -1 + 1 - extension @@ -4318,13 +5166,13 @@ https://www.w3.org/TR/WGSL/#extension - extension dfn -i18n-glossary -i18n-glossary +rdf12-semantics +rdf-semantics 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag_extension -1 +https://www.w3.org/TR/rdf12-semantics/#dfn-extension +1 - extension capabilities dfn @@ -4433,7 +5281,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#extension-modules - +1 1 - extension sensor interface @@ -4474,6 +5322,16 @@ generic-sensor snapshot https://www.w3.org/TR/generic-sensor/#extension-specification +1 +- +extension storage partition key attributes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#extension-storage-partition-key-attributes + 1 - extension-token @@ -4486,28 +5344,6 @@ https://w3c.github.io/webappsec-referrer-policy/#grammardef-extension-token 1 1 - -extension_name -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-extension_name - -1 -syntax -- -extension_name -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-extension_name - -1 -syntax -- extensions dfn fido-v2.1 @@ -4550,16 +5386,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-extensions -- -extensions -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_tag_extension -1 - - extensions dict-member @@ -4648,16 +5474,6 @@ https://wicg.github.io/webpackage/loading.html#certificate-extensions 1 certificate -- -extensions -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag_extension -1 - - extensions dict-member @@ -4672,13 +5488,14 @@ SecurePaymentConfirmationRequest - extensions dfn -tracking-dnt -tracking-dnt -1 +webauthn-3 +webauthn +3 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-extensions +https://www.w3.org/TR/webauthn-3/#authdata-extensions 1 +authData - extensions dict-member @@ -4697,11 +5514,33 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-extensions +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +extensions +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-extensions 1 1 PublicKeyCredentialRequestOptions - +extensions +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-extensions +1 +1 +PublicKeyCredentialRequestOptionsJSON +- extensions to the predefined set of link types dfn html @@ -4720,26 +5559,6 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#concept-meta-extensions -1 -- -extent3d -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#extent3d - -1 -- -extent3d -dfn -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#extent3d - 1 - extern value cache @@ -4788,21 +5607,21 @@ Window - external dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#external +https://w3c.github.io/window-management/#external 1 - external dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#external +https://www.w3.org/TR/window-management/#external 1 - @@ -4896,6 +5715,48 @@ https://html.spec.whatwg.org/multipage/links.html#external-resource-link 1 1 - +external source dimensions +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#external-source-dimensions + +1 +- +external source dimensions +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#external-source-dimensions + +1 +- +external texture +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#type-external-texture + +1 +type +- +external texture +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#type-external-texture + +1 +type +- external type dfn web-nfc @@ -5020,10 +5881,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-extra-condensed +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-extra-condensed 1 1 -font-stretch +font-width - extra-condensed enum-value @@ -5042,10 +5903,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-extra-condensed +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-extra-condensed 1 1 -font-stretch +font-width - extra-expanded value @@ -5053,10 +5914,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-extra-expanded +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-extra-expanded 1 1 -font-stretch +font-width - extra-expanded enum-value @@ -5075,10 +5936,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-extra-expanded +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-extra-expanded 1 1 -font-stretch +font-width - extract dfn @@ -5192,6 +6053,36 @@ private-click-measurement current https://privacycg.github.io/private-click-measurement/#extract-a-six-bit-decimal-value +1 +- +extract a source map url from a webassembly source +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#extract-a-source-map-url-from-a-webassembly-source +1 +1 +- +extract a source map url from javascript through parsing +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#extract-a-source-map-url-from-javascript-through-parsing +1 +1 +- +extract a source map url from javascript without parsing +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#extract-a-source-map-url-from-javascript-without-parsing +1 1 - extract an action sequence @@ -5232,6 +6123,16 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#extracting-vevent-data +1 +- +extract challenges +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#extract-challenges + 1 - extract container element attributes @@ -5252,6 +6153,16 @@ background-fetch current https://wicg.github.io/background-fetch/#extract-content-range-values +1 +- +extract error information +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#extract-error + 1 - extract full timing info @@ -5468,7 +6379,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-extractable -1 + 1 - extracting a length diff --git a/bikeshed/spec-data/readonly/anchors/anchors-f1.data b/bikeshed/spec-data/readonly/anchors/anchors-f1.data index 1009ad4386..a31954cd8c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-f1.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-f1.data @@ -24,17 +24,6 @@ dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-f16 - -1 -syntax_kw -- -f16 -dfn -wgsl -wgsl -1 snapshot https://www.w3.org/TR/WGSL/#extension-f16 @@ -51,14 +40,3 @@ https://www.w3.org/TR/WGSL/#f16 1 - -f16 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-f16 - -1 -syntax_kw -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-f3.data b/bikeshed/spec-data/readonly/anchors/anchors-f3.data index 7e2040eb57..debbf52b65 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-f3.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-f3.data @@ -75,17 +75,6 @@ https://gpuweb.github.io/gpuweb/wgsl/#f32 1 - f32 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-f32 - -1 -syntax_kw -- -f32 enum-value webcodecs webcodecs @@ -107,17 +96,6 @@ https://www.w3.org/TR/WGSL/#f32 1 - f32 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-f32 - -1 -syntax_kw -- -f32 enum-value webcodecs webcodecs diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fa.data b/bikeshed/spec-data/readonly/anchors/anchors-fa.data index 3636e702cf..0700ec18f2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fa.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fa.data @@ -17,6 +17,66 @@ css-conditional-values current https://drafts.csswg.org/css-conditional-values-1/#false 1 +1 +- +<factorial/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_factorial + +1 +- +<factorial/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_factorial + +1 +- +<factorof/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_factorof + +1 +- +<factorof/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_factorof + +1 +- +<false/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_false + +1 +- +<false/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_false + 1 - <family-name> @@ -100,28 +160,6 @@ current https://html.spec.whatwg.org/multipage/worklets.html#fakeworkletglobalscope -- -[[Factors]] -attribute -compute-pressure -compute-pressure -1 -current -https://w3c.github.io/compute-pressure/#dfn-factors - -1 -PressureRecord -- -[[Factors]] -attribute -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dfn-factors - -1 -PressureRecord - [[FailedFonts]] attribute @@ -140,7 +178,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-failedfonts +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-failedfonts-slot 1 1 FontFaceSet @@ -371,28 +409,6 @@ https://www.w3.org/TR/webcodecs/#sub-sampling-factor 1 - -factors -attribute -compute-pressure -compute-pressure -1 -current -https://w3c.github.io/compute-pressure/#dom-pressurerecord-factors -1 -1 -PressureRecord -- -factors -attribute -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-factors -1 -1 -PressureRecord -- factory method dfn webaudio @@ -459,7 +475,7 @@ text-overflow - fail dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -469,7 +485,7 @@ https://w3c.github.io/network-error-logging/#dfn-fail - fail enum-value -payment-request-1.1 +payment-request payment-request 1 current @@ -480,21 +496,21 @@ PaymentComplete - fail dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-fail +https://www.w3.org/TR/network-error-logging/#dfn-fail 1 - fail enum-value -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-fail +https://www.w3.org/TR/payment-request/#dom-paymentcomplete-fail 1 1 PaymentComplete @@ -533,7 +549,7 @@ GPUStencilFaceState - failed dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -598,11 +614,11 @@ RTCStatsIceCandidatePairState - failed dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-fail +https://www.w3.org/TR/network-error-logging/#dfn-fail 1 - @@ -669,6 +685,16 @@ html current https://html.spec.whatwg.org/multipage/media.html#text-track-failed-to-load +1 +- +failover class +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#failover-class +1 1 - failure reason @@ -715,7 +741,7 @@ https://www.w3.org/TR/FileAPI/#failureReason - failure sampling rate dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -725,11 +751,11 @@ https://w3c.github.io/network-error-logging/#dfn-failure-sampling-rate - failure sampling rate dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-failure-sampling-rate +https://www.w3.org/TR/network-error-logging/#dfn-failure-sampling-rate 1 - @@ -746,7 +772,7 @@ BackgroundFetchRegistration - failure_fraction dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -756,17 +782,17 @@ https://w3c.github.io/network-error-logging/#dfn-failure_fraction - failure_fraction dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-failure_fraction +https://www.w3.org/TR/network-error-logging/#dfn-failure_fraction 1 - failures dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -787,11 +813,11 @@ endpoint - failures dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-fail +https://www.w3.org/TR/network-error-logging/#dfn-fail 1 - @@ -946,16 +972,6 @@ https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linejoin-fallback 1 1 stroke-linejoin -- -fallback -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_fallback -1 - - fallback descriptor @@ -1010,6 +1026,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssvariablereferencevalue-cssvariabler 1 1 CSSVariableReferenceValue/CSSVariableReferenceValue(variable, fallback) +CSSVariableReferenceValue/constructor(variable, fallback) +CSSVariableReferenceValue/CSSVariableReferenceValue(variable) +CSSVariableReferenceValue/constructor(variable) - fallback attribute @@ -1032,16 +1051,6 @@ https://www.w3.org/TR/fill-stroke-3/#valdef-stroke-linejoin-fallback 1 1 stroke-linejoin -- -fallback -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_fallback -1 - - fallback adapter dfn @@ -1166,6 +1175,90 @@ https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-false syntax_kw - false +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable-false +1 +1 +html-global/draggable +- +false +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable-false-state + +1 +- +false +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-false +1 +1 +html-global/contenteditable +- +false +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-false-state + +1 +- +false +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-false +1 +1 +html-global/spellcheck +- +false +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-false-state + +1 +- +false +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-false +1 +1 +html-global/writingsuggestions +- +false +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-false-state + +1 +- +false dfn wgsl wgsl @@ -1237,6 +1330,28 @@ https://html.spec.whatwg.org/multipage/interaction.html#concept-spellcheck-defau 1 - +falseValue +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-falsevalue +1 +1 +MLGraphBuilder/where(condition, trueValue, falseValue, options) +- +falseValue +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-falsevalue +1 +1 +MLGraphBuilder/where(condition, trueValue, falseValue, options) +- familiar with dfn html @@ -1300,10 +1415,13 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacefontface-family +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface-family-source-descriptors-family 1 1 -FontFace/FontFace() +FontFace/FontFace(family, source, descriptors) +FontFace/constructor(family, source, descriptors) +FontFace/FontFace(family, source) +FontFace/constructor(family, source) - family name dfn @@ -1343,30 +1461,6 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-n-family-name 1 - -fangsong -value -css-fonts-4 -css-fonts -4 -current -https://drafts.csswg.org/css-fonts-4/#valdef-font-family-fangsong -1 -1 -font-family -<generic-family> -- -fangsong -value -css-fonts-4 -css-fonts -4 -snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-family-fangsong -1 -1 -font-family -<generic-family> -- fantasy value css-fonts-4 @@ -1401,6 +1495,26 @@ https://drafts.csswg.org/css2/#valdef-generic-family-fantasy <generic-family> - fantasy +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#fantasy-def +1 +1 +- +fantasy +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#fantasy-def +1 +1 +- +fantasy value css-fonts-4 css-fonts @@ -1412,16 +1526,26 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-family-fantasy font-family <generic-family> - +far away from the viewport +dfn +css-contain-2 +css-contain +2 +current +https://drafts.csswg.org/css-contain-2/#far-away-from-the-viewport + +1 +- farthest-corner value css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner +https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner 1 1 -<rg-extent-keyword> +<radial-extent> radial-gradient() repeating-radial-gradient() - @@ -1442,10 +1566,12 @@ css-images-3 css-images 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-size-farthest-corner +https://www.w3.org/TR/css-images-3/#valdef-radial-extent-farthest-corner 1 1 -<size> +<radial-extent> +radial-gradient() +repeating-radial-gradient() - farthest-corner value @@ -1464,24 +1590,14 @@ css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side +https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side 1 1 -<rg-extent-keyword> +<radial-extent> radial-gradient() repeating-radial-gradient() - farthest-side -dfn -css-shapes-1 -css-shapes -1 -current -https://drafts.csswg.org/css-shapes-1/#farthest-side - -1 -- -farthest-side value motion-1 motion @@ -1498,10 +1614,12 @@ css-images-3 css-images 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-size-farthest-side +https://www.w3.org/TR/css-images-3/#valdef-radial-extent-farthest-side 1 1 -<size> +<radial-extent> +radial-gradient() +repeating-radial-gradient() - farthest-side dfn @@ -1607,10 +1725,32 @@ mediasession mediasession 1 current -https://w3c.github.io/mediasession/#dom-mediasessionactiondetails-fastseek +https://w3c.github.io/mediasession/#dom-mediasessionactionseektodetails-fastseek +1 +1 +MediaSessionActionSeekToDetails +- +fastSeek +dict-member +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionseektoactiondetails-fastseek +1 +1 +MediaSessionSeekToActionDetails +- +fastSeek +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionactionseektodetails-fastseek 1 1 -MediaSessionActionDetails +MediaSessionActionSeekToDetails - fastSeek dict-member @@ -1618,10 +1758,10 @@ mediasession mediasession 1 snapshot -https://www.w3.org/TR/mediasession/#dom-mediasessionactiondetails-fastseek +https://www.w3.org/TR/mediasession/#dom-mediasessionseektoactiondetails-fastseek 1 1 -MediaSessionActionDetails +MediaSessionSeekToActionDetails - fastSeek(time) method @@ -1656,6 +1796,46 @@ https://encoding.spec.whatwg.org/#dom-textdecoderoptions-fatal 1 TextDecoderOptions - +fatal error +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-fatal-errors + +1 +- +fatal error +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-fatal-errors + +1 +- +fatal errors +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-fatal-errors + +1 +- +fatal errors +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-fatal-errors + +1 +- fatally reject bad data dfn webcodecs diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fe.data b/bikeshed/spec-data/readonly/anchors/anchors-fe.data index 9e7e10547c..4cb745ab7a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fe.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fe.data @@ -9,6 +9,17 @@ https://wicg.github.io/background-fetch/#dom-backgroundfetchfailurereason-fetch- 1 BackgroundFetchFailureReason - +"fetch-event" +enum-value +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routersourceenum-fetch-event +1 +1 +RouterSourceEnum +- <feature-tag-value> value css-fonts-4 @@ -133,6 +144,77 @@ https://www.w3.org/TR/credential-management-1/#dictdef-federatedcredentialreques 1 1 - +Fence +interface +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fence +1 +1 +- +FenceEvent +dictionary +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dictdef-fenceevent +1 +1 +- +FenceReportingDestination +enum +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#enumdef-fencereportingdestination +1 +1 +- +FencedFrameConfig +interface +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig +1 +1 +- +FencedFrameConfig(url) +constructor +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-fencedframeconfig +1 +1 +FencedFrameConfig +- +FencedFrameConfigSize +typedef +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#typedefdef-fencedframeconfigsize +1 +1 +- +FencedFrameConfigURL +typedef +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#typedefdef-fencedframeconfigurl +1 +1 +- FetchEvent interface service-workers @@ -258,6 +340,26 @@ snapshot https://www.w3.org/TR/WGSL/#feasible-automatic-conversion 1 +- +featural syllabary +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-featural-syllabary +1 + +- +featural syllabary +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-featural-syllabary +1 + - feature dfn @@ -280,6 +382,16 @@ https://w3c.github.io/permissions/#dfn-powerful-feature 1 - feature +dfn +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dfn-feature +1 +1 +- +feature argument permissions-policy-1 permissions-policy @@ -304,6 +416,17 @@ PermissionsPolicy/getAllowlistForFeature(feature) - feature argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-protectedaudience-queryfeaturesupport-feature-feature +1 +1 +ProtectedAudience/queryFeatureSupport(feature) +- +feature +argument permissions-policy-1 permissions-policy 1 @@ -337,6 +460,16 @@ https://www.w3.org/TR/permissions/#dfn-powerful-feature - feature dfn +user-timing +user-timing +1 +snapshot +https://www.w3.org/TR/user-timing/#dfn-feature +1 +1 +- +feature +dfn webgpu webgpu 1 @@ -363,6 +496,26 @@ webxr snapshot https://www.w3.org/TR/webxr/#feature-descriptor +1 +- +feature map +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#feature-map + +1 +- +feature map +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#feature-map + 1 - feature requirements @@ -524,6 +677,28 @@ https://www.w3.org/TR/css-fonts-4/#dom-cssfontfeaturevaluesmap-set-featurevaluen 1 CSSFontFeatureValuesMap/set(featureValueName, values) - +featurecount +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-featurecount + +1 +Mapping Entry +- +featurecount +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-featurecount + +1 +Mapping Entry +- featureid dfn permissions-policy-1 @@ -566,6 +741,59 @@ https://www.w3.org/TR/selectors-4/#featureless 1 1 - +featuremapoffset +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-featuremapoffset + +1 +Format 1 Patch Map +- +featurerecord +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#featurerecord + +1 +- +featurerecord +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#featurerecord + +1 +- +featurerecords +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#feature-map-featurerecords + +1 +Feature Map +- +featurerecords +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#feature-map-featurerecords + +1 +Feature Map +- features attribute css-font-loading-3 @@ -601,6 +829,17 @@ GPUDevice - features attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-features +1 +1 +FontFace +- +features +attribute webgpu webgpu 1 @@ -643,37 +882,49 @@ https://www.w3.org/TR/permissions-policy-1/#dom-permissionspolicy-features 1 PermissionsPolicy - -features_have +featuretag dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patchrequest-features_have +https://w3c.github.io/IFT/Overview.html#featurerecord-featuretag 1 -PatchRequest +FeatureRecord - -features_needed +featuretag dfn ift ift 1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-features_needed +snapshot +https://www.w3.org/TR/IFT/#featurerecord-featuretag 1 -PatchRequest +FeatureRecord - -featuretagset +featuretags dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#featuretagset +https://w3c.github.io/IFT/Overview.html#mapping-entry-featuretags + +1 +Mapping Entry +- +featuretags +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-featuretags 1 +Mapping Entry - feblend element @@ -695,6 +946,28 @@ https://www.w3.org/TR/filter-effects-1/#elementdef-feblend 1 1 - +fecBytesReceived +dict-member +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecbytesreceived +1 +1 +RTCInboundRtpStreamStats +- +fecBytesReceived +dict-member +webrtc-stats +webrtc-stats +1 +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecbytesreceived +1 +1 +RTCInboundRtpStreamStats +- fecPacketsDiscarded dict-member webrtc-stats @@ -739,6 +1012,28 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecpacketsrecei 1 RTCInboundRtpStreamStats - +fecSsrc +dict-member +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecssrc +1 +1 +RTCInboundRtpStreamStats +- +fecSsrc +dict-member +webrtc-stats +webrtc-stats +1 +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecssrc +1 +1 +RTCInboundRtpStreamStats +- fecolormatrix element filter-effects-1 @@ -1331,13 +1626,250 @@ https://w3c.github.io/mathml-core/#dfn-fence mo - fence +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-window-fence +1 +1 +Window +- +fence dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#window-fence + +1 +Window +- +fence +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-fence +1 +1 +mo +- +fenced +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-fenced + +1 +attribution source +- +fenced +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-fenced + +1 +attribution trigger +- +fenced frame config +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config +1 +1 +- +fenced frame config instance +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#browsing-context-fenced-frame-config-instance + +1 +browsing context +- +fenced frame config instance +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance +1 +1 +- +fenced frame config instance +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#navigation-params-fenced-frame-config-instance + +1 +navigation params +- +fenced frame config mapping +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping + +1 +- +fenced frame config mapping +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#traversable-navigable-fenced-frame-config-mapping +1 +1 +traversable navigable +- +fenced frame reporter +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-fenced-frame-reporter +1 +1 +fenced frame config instance +- +fenced frame reporter +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-fenced-frame-reporter +1 +1 +fencedframetype +- +fenced frame reporting map +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-fenced-frame-reporting-map +1 +1 +fenced frame reporting metadata +- +fenced frame reporting map +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-fenced-frame-reporting-map +1 +1 +fencedframetype +- +fenced frame reporting metadata +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-fenced-frame-reporting-metadata +1 +1 +fenced frame config +- +fenced frame reporting metadata +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-fenced-frame-reporting-metadata +1 +1 +fencedframetype +- +fenced frame reporting metadata reference +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporter-fenced-frame-reporting-metadata-reference +1 +1 +fenced frame reporter +- +fenced navigable +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-navigable-container-fenced-navigable + +1 +fenced navigable container +- +fenced navigable containers +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-navigable-containers +1 +- +fenced-frame +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#supports-loading-mode-fenced-frame +1 +1 +Supports-Loading-Mode +- +fenced-frame-src +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-src + +1 +- +fencedframe +element +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#elementdef-fencedframe +1 1 - feoffset @@ -1428,6 +1960,16 @@ fetch current https://fetch.spec.whatwg.org/#concept-fetch 1 +1 +- +fetch +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-fetch + 1 - fetch @@ -1609,7 +2151,17 @@ html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-worklet/module-worker-script-graph +https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-worklet%2Fmodule-worker-script-graph + +1 +- +fetch accounts step +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#fetch-accounts-step 1 - @@ -1660,7 +2212,7 @@ css-images 4 current https://drafts.csswg.org/css-images-4/#fetch-an-external-image-for-a-stylesheet - +1 1 - fetch an external image for a stylesheet @@ -1711,6 +2263,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#fetch-an-inline-module-script-graph +1 +- +fetch and decode trusted scoring signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fetch-and-decode-trusted-scoring-signals + 1 - fetch and process the linked resource @@ -1775,6 +2337,16 @@ https://xhr.spec.whatwg.org/#xmlhttprequest-fetch-controller 1 XMLHttpRequest - +fetch destination from module type +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#fetch-destination-from-module-type + +1 +- fetch directives dfn csp3 @@ -1998,6 +2570,16 @@ fetch current https://fetch.spec.whatwg.org/#fetch-scheme 1 +1 +- +fetch script +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fetch-script + 1 - fetch steps @@ -2042,13 +2624,13 @@ https://fedidcg.github.io/FedCM/#fetch-the-account-picture 1 - -fetch the accounts list +fetch the accounts dfn fedcm fedcm 1 current -https://fedidcg.github.io/FedCM/#fetch-the-accounts-list +https://fedidcg.github.io/FedCM/#fetch-the-accounts 1 - @@ -2072,7 +2654,17 @@ https://fedidcg.github.io/FedCM/#fetch-the-config-file 1 - -fetch the descendants of and link a module script +fetch the current outstanding trusted signals batch +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fetch-the-current-outstanding-trusted-signals-batch + +1 +- +fetch the descendants of and link dfn html html @@ -2110,6 +2702,26 @@ fetch current https://fetch.spec.whatwg.org/#fetch-timing-info 1 +1 +- +fetch trusted signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fetch-trusted-signals + +1 +- +fetch webassembly +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fetch-webassembly + 1 - fetch(id, requests) diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fi.data b/bikeshed/spec-data/readonly/anchors/anchors-fi.data index e96481ae8b..c5066fcd51 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fi.data @@ -228,6 +228,26 @@ https://drafts.csswg.org/css2/#selectordef-first 1 - :first +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x10 +1 +1 +- +:first +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x10 +1 +1 +- +:first value css-page-3 css-page @@ -269,6 +289,26 @@ https://drafts.csswg.org/selectors-4/#first-child-pseudo 1 - :first-child +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x24 +1 +1 +- +:first-child +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x24 +1 +1 +- +:first-child selector selectors-3 selectors @@ -298,6 +338,26 @@ https://drafts.csswg.org/css2/#selectordef-first-letter 1 1 - +:first-letter +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x50 +1 +1 +- +:first-letter +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x50 +1 +1 +- :first-line selector css22 @@ -308,6 +368,26 @@ https://drafts.csswg.org/css2/#selectordef-first-line 1 1 - +:first-line +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo +1 +1 +- +:first-line +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo +1 +1 +- :first-of-page selector css-gcpm-4 @@ -440,6 +520,16 @@ https://www.w3.org/TR/css-backgrounds-3/#typedef-final-bg-layer 1 1 - +<first-valid()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-first-valid +1 +1 +- <fixed-breadth> type css-grid-1 @@ -1102,6 +1192,16 @@ https://www.w3.org/TR/web-animations-1/#enumdef-fillmode 1 1 - +FillMode +enum +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#enumdef-fillmode +1 +1 +- FinalizationRegistry interface ecmascript @@ -1123,6 +1223,16 @@ https://tc39.es/ecma262/multipage/managing-memory.html#sec-finalization-registry 1 FinalizationRegistry - +FindViaPredicate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-findviapredicate +1 +1 +- FindViaPredicate(O, len, direction, predicate, thisArg) abstract-op ecmascript @@ -1133,6 +1243,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-findviapredicate 1 1 - +FinishLoadingImportedModule +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-FinishLoadingImportedModule +1 +1 +- FinishLoadingImportedModule(referrer, specifier, payload, result) abstract-op ecmascript @@ -1161,8 +1281,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-fireddirection + 1 -1 +RTCRtpTransceiver - [[file]] dfn @@ -1208,6 +1329,17 @@ https://www.w3.org/TR/webgpu/#dom-gpu-error-scope-filter-slot 1 GPU error scope - +[[finishpromise]] +dfn +streams +streams +1 +current +https://streams.spec.whatwg.org/#transformstreamdefaultcontroller-finishpromise + +1 +TransformStreamDefaultController +- [[first initialization segment received flag]] attribute media-source-2 @@ -1248,6 +1380,26 @@ css current https://drafts.csswg.org/css2/#fictional-tag-sequence +1 +- +fictional tag sequence +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x48 +1 +1 +- +fictional tag sequence +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x48 +1 1 - fictional tag sequence @@ -1276,20 +1428,11 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-field +https://drafts.csswg.org/css-color-4/#valdef-color-field 1 1 +<color> <system-color> -- -field -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_non_linguistic_field -1 - - field value @@ -1297,20 +1440,21 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-field +https://www.w3.org/TR/css-color-4/#valdef-color-field 1 1 +<color> <system-color> - -field +field that blocks implicit submission dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_non_linguistic_field +html +html 1 +current +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#field-that-blocks-implicit-submission +1 - field-based formats dfn @@ -1318,7 +1462,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_field_based_format +https://w3c.github.io/i18n-glossary/#dfn-field-based-time-format 1 - @@ -1328,39 +1472,49 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_field_based_format -1 - -- -field-name -dfn -client-hints-infrastructure -client-hints-infrastructure +https://www.w3.org/TR/i18n-glossary/#dfn-field-based-time-format 1 -current -https://wicg.github.io/client-hints-infrastructure/#field-name -1 - -fields +field-based time format dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_non_linguistic_field +https://w3c.github.io/i18n-glossary/#dfn-field-based-time-format 1 - -fields +field-based time format dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_non_linguistic_field +https://www.w3.org/TR/i18n-glossary/#dfn-field-based-time-format 1 +- +field-name +dfn +client-hints-infrastructure +client-hints-infrastructure +1 +current +https://wicg.github.io/client-hints-infrastructure/#field-name + +1 +- +field-sizing +property +css-ui-4 +css-ui +4 +current +https://drafts.csswg.org/css-ui-4/#propdef-field-sizing +1 +1 - fieldset element @@ -1378,9 +1532,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-fieldtext +https://drafts.csswg.org/css-color-4/#valdef-color-fieldtext 1 1 +<color> <system-color> - fieldtext @@ -1389,9 +1544,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-fieldtext +https://www.w3.org/TR/css-color-4/#valdef-color-fieldtext 1 1 +<color> <system-color> - figcaption @@ -1426,6 +1582,16 @@ https://html.spec.whatwg.org/multipage/input.html#attr-input-type-file-keyword input/type - file +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#file + +1 +- +file enum-value media-capabilities media-capabilities @@ -1519,34 +1685,24 @@ https://url.spec.whatwg.org/#file-host-state 1 basic URL parser - -file name +file locator dfn -epub-33 -epub +fs +fs 1 current -https://w3c.github.io/epub-specs/epub33/core/#dfn-file-name +https://fs.spec.whatwg.org/#file-locator 1 1 - file name dfn -miniapp-packaging -miniapp-packaging +epub-33 +epub 1 current -https://w3c.github.io/miniapp-packaging/#dfn-filename - -1 -- -file name -dfn -miniapp-packaging -miniapp-packaging +https://w3c.github.io/epub-specs/epub33/core/#dfn-file-name 1 -current -https://w3c.github.io/miniapp-packaging/#dfn-filename - 1 - file name @@ -1557,45 +1713,25 @@ epub snapshot https://www.w3.org/TR/epub-33/#dfn-file-name 1 -1 -- -file name -dfn -miniapp-packaging -miniapp-packaging -1 -snapshot -https://www.w3.org/TR/miniapp-packaging/#dfn-filename - -1 -- -file name -dfn -miniapp-packaging -miniapp-packaging -1 -snapshot -https://www.w3.org/TR/miniapp-packaging/#dfn-filename - 1 - file names dfn -miniapp-packaging -miniapp-packaging +audiobooks +audiobooks 1 current -https://w3c.github.io/miniapp-packaging/#dfn-filename +https://w3c.github.io/audiobooks/#dfn-file-name 1 - file names dfn -miniapp-packaging -miniapp-packaging +audiobooks +audiobooks 1 snapshot -https://www.w3.org/TR/miniapp-packaging/#dfn-filename +https://www.w3.org/TR/audiobooks/#dfn-file-name 1 - @@ -1711,6 +1847,16 @@ entries-api current https://wicg.github.io/entries-api/#file-system +1 +- +file system access result +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-access-result +1 1 - file system entry @@ -1723,6 +1869,46 @@ https://fs.spec.whatwg.org/#entry 1 1 - +file system locator +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-locator +1 +1 +- +file system path +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-path +1 +1 +- +file system queue +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-queue + +1 +- +file system root +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-root +1 +1 +- file type dfn manifest-incubations @@ -1759,7 +1945,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#file-upload-state-(type=file) +https://html.spec.whatwg.org/multipage/input.html#file-upload-state-(type%3Dfile) 1 1 input @@ -1889,6 +2075,16 @@ html current https://html.spec.whatwg.org/multipage/input.html#dom-input-value-filename +1 +- +filename +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-download-filename + 1 - filename @@ -1914,17 +2110,6 @@ https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-filename ErrorEvent - filename -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#fire-a-download-requested-navigate-event-filename - -1 -fire a download-requested navigate event -- -filename argument xhr xhr @@ -2248,6 +2433,36 @@ https://www.w3.org/TR/web-animations-1/#dom-optionaleffecttiming-fill 1 OptionalEffectTiming - +fill in a pending fenced frame config +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fill-in-a-pending-fenced-frame-config + +1 +- +fill in the contribution +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#fill-in-the-contribution + +1 +- +fill in the signal value +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#fill-in-the-signal-value + +1 +- fill light mode dfn image-capture @@ -2386,7 +2601,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.fill +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.fill 1 1 %TypedArray% @@ -2412,8 +2627,9 @@ https://drafts.csswg.org/css-box-3/#valdef-box-fill-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - fill-box value @@ -2425,8 +2641,9 @@ https://drafts.csswg.org/css-box-4/#valdef-box-fill-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - fill-box value @@ -2504,8 +2721,9 @@ https://www.w3.org/TR/css-box-3/#valdef-box-fill-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - fill-box value @@ -2517,8 +2735,9 @@ https://www.w3.org/TR/css-box-4/#valdef-box-fill-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - fill-box value @@ -3146,7 +3365,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-conv2d-input-filt 1 1 MLGraphBuilder/conv2d(input, filter, options) -MLGraphBuilder/conv2d(input, filter) - filter argument @@ -3158,7 +3376,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-convtranspose2d-i 1 1 MLGraphBuilder/convTranspose2d(input, filter, options) -MLGraphBuilder/convTranspose2d(input, filter) - filter element @@ -3201,7 +3418,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-filt 1 1 MLGraphBuilder/conv2d(input, filter, options) -MLGraphBuilder/conv2d(input, filter) - filter argument @@ -3213,7 +3429,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-opt 1 1 MLGraphBuilder/convTranspose2d(input, filter, options) -MLGraphBuilder/convTranspose2d(input, filter) - filter buffer by name and type dfn @@ -3277,6 +3492,16 @@ https://www.w3.org/TR/css-syntax-3/#css-filter-code-points 1 CSS - +filter config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#filter-config + +1 +- filter data dfn attribution-reporting-api @@ -3300,11 +3525,21 @@ https://wicg.github.io/attribution-reporting-api/#filter-map - filter method dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3filter +https://w3c.github.io/png/#3filter + +1 +- +filter method +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3filter 1 - @@ -3438,18 +3673,18 @@ https://www.w3.org/TR/filter-effects-1/#funcdef-filter 1 1 - -filter(callbackfn, thisArg) +filter(callback, thisArg) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.filter +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.filter 1 1 %TypedArray% - -filter(callbackfn, thisArg) +filter(callback, thisArg) method ecmascript ecmascript @@ -3546,6 +3781,57 @@ https://www.w3.org/TR/filter-effects-1/#dom-svgfilterelement-filterunits 1 SVGFilterElement - +filter_data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-filter_data + +1 +source-registration JSON key +- +filterable +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#filterable + +1 +- +filterable +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#filterable + +1 +- +filterable format +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#filterable + +1 +- +filterable format +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#filterable + +1 +- filtered code points dfn css-syntax-3 @@ -3566,17 +3852,116 @@ snapshot https://www.w3.org/TR/css-syntax-3/#css-filter-code-points 1 -CSS +CSS +- +filtered response +dfn +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#concept-filtered-response +1 +1 +- +filtering id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-contribution-filtering-id + +1 +aggregatable contribution +- +filtering id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-key-value-filtering-id + +1 +aggregatable key value +- +filtering id max bytes +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-filtering-id-max-bytes + +1 +aggregatable report +- +filtering id max bytes +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#pre-specified-report-parameters-filtering-id-max-bytes + +1 +pre-specified report parameters +- +filtering id max bytes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-filtering-id-max-bytes + +1 +aggregatable attribution report +- +filteringId +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-paextendedhistogramcontribution-filteringid +1 +1 +PAExtendedHistogramContribution +- +filteringId +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-pahistogramcontribution-filteringid +1 +1 +PAHistogramContribution +- +filteringIdMaxBytes +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-sharedstorageprivateaggregationconfig-filteringidmaxbytes +1 +1 +SharedStoragePrivateAggregationConfig - -filtered response +filtering_id dfn -fetch -fetch +attribution-reporting-api +attribution-reporting-api 1 current -https://fetch.spec.whatwg.org/#concept-filtered-response -1 +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-filtering_id + 1 +trigger-registration JSON key - filterres element-attr @@ -3623,6 +4008,39 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-requestdeviceoptions-filters RequestDeviceOptions - filters +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-filters +1 +1 +BluetoothLEScan +- +filters +dict-member +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanoptions-filters +1 +1 +BluetoothLEScanOptions +- +filters +dict-member +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanpermissiondescriptor-filters +1 +1 +BluetoothLEScanPermissionDescriptor +- +filters dfn attribution-reporting-api attribution-reporting-api @@ -3650,6 +4068,17 @@ attribution-reporting-api attribution-reporting-api 1 current +https://wicg.github.io/attribution-reporting-api/#aggregatable-values-configuration-filters + +1 +aggregatable values configuration +- +filters +dfn +attribution-reporting-api +attribution-reporting-api +1 +current https://wicg.github.io/attribution-reporting-api/#attribution-trigger-filters 1 @@ -3667,6 +4096,17 @@ https://wicg.github.io/attribution-reporting-api/#event-level-trigger-configurat event-level trigger configuration - filters +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-filters + +1 +trigger-registration JSON key +- +filters dict-member serial serial @@ -3765,6 +4205,17 @@ https://www.w3.org/TR/cssom-1/#documentorshadowroot-final-css-style-sheets 1 DocumentOrShadowRoot - +final host +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-record-final-host + +1 +bounce tracking record +- final network-request start time dfn fetch @@ -3829,13 +4280,13 @@ https://fetch.spec.whatwg.org/#fetch-timing-info-final-service-worker-start-time fetch timing info - final steps to create an answer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-final-steps-to-create-an-answer - +1 1 - final steps to create an answer @@ -3849,13 +4300,13 @@ https://www.w3.org/TR/webrtc/#dfn-final-steps-to-create-an-answer 1 - final steps to create an offer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-final-steps-to-create-an-offer - +1 1 - final steps to create an offer @@ -3886,6 +4337,27 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#finalize-a-cross-document-navigation +1 +- +finalize a pending config +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-finalize-a-pending-config +1 +1 +fenced frame config mapping +- +finalize a reporting destination +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#finalize-a-reporting-destination +1 1 - finalize a same-document navigation @@ -3915,7 +4387,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#finalize-event-timing +https://w3c.github.io/event-timing/#finalize-event-timing 1 1 - @@ -3949,15 +4421,16 @@ https://www.w3.org/TR/screen-capture/#dfn-finalize-focus-decision-algorithm 1 - -finalize with an aborted navigation error +finalized config mapping dfn -navigation-api -navigation-api +fenced-frame +fenced-frame 1 current -https://wicg.github.io/navigation-api/#finalize-with-an-aborted-navigation-error +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-finalized-config-mapping 1 +fenced frame config mapping - finally(onFinally) method @@ -3990,15 +4463,16 @@ https://www.w3.org/TR/webdriver2/#dfn-find 1 - -find a first-party set +find a config dfn -first-party-sets -first-party-sets +fenced-frame +fenced-frame 1 current -https://wicg.github.io/first-party-sets/#find-a-first-party-set +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-find-a-config 1 1 +fenced frame config mapping - find a list of configuration descriptors for the connected usb device dfn @@ -4030,14 +4504,34 @@ https://wicg.github.io/webusb/#find-a-list-of-endpoint-descriptors 1 - -find a matching prefetch record +find a matching complete prefetch record dfn prefetch prefetch 1 current -https://wicg.github.io/nav-speculation/prefetch.html#find-a-matching-prefetch-record +https://wicg.github.io/nav-speculation/prefetch.html#find-a-matching-complete-prefetch-record +1 +1 +- +find a matching complete prerender record +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#find-a-matching-complete-prerender-record + +1 +- +find a matching trigger spec +dfn +attribution-reporting-api +attribution-reporting-api 1 +current +https://wicg.github.io/attribution-reporting-api/#find-a-matching-trigger-spec + 1 - find a potential indicated element @@ -4068,6 +4562,16 @@ scroll-to-text-fragment current https://wicg.github.io/scroll-to-text-fragment/#find-a-range-from-a-text-directive +1 +- +find a related website set +dfn +first-party-sets +first-party-sets +1 +current +https://wicg.github.io/first-party-sets/#find-a-related-website-set +1 1 - find a slot @@ -4258,6 +4762,16 @@ webusb current https://wicg.github.io/webusb/#find-if-the-interface-is-claimed +1 +- +find matching ad +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#find-matching-ad + 1 - find matching links @@ -4288,6 +4802,16 @@ dom current https://dom.spec.whatwg.org/#find-slotables 1 +1 +- +find sources with common destinations and reporting origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#find-sources-with-common-destinations-and-reporting-origin + 1 - find supported configuration combination @@ -4449,26 +4973,6 @@ current https://html.spec.whatwg.org/multipage/worklets.html#fakeworkletglobalscope-process -- -find the reporting frequency of a sensor object -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#find-the-reporting-frequency-of-a-sensor-object -1 -1 -- -find the reporting frequency of a sensor object -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#find-the-reporting-frequency-of-a-sensor-object -1 -1 - find the shortest distance dfn @@ -4526,7 +5030,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.find +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.find 1 1 %TypedArray% @@ -4568,7 +5072,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.findindex +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findindex 1 1 %TypedArray% @@ -4590,7 +5094,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.findlast +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlast 1 1 %TypedArray% @@ -4612,7 +5116,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.findlastindex +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlastindex 1 1 %TypedArray% @@ -4921,6 +5425,16 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-fingerprints-0 +1 +- +finish +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigateevent-finish + 1 - finish an animation @@ -5038,14 +5552,24 @@ GPURenderBundleEncoder - finish() method -webnn -webnn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizer-finish +1 +1 +HandwritingRecognizer +- +finish() +dfn +handwriting-recognition +handwriting-recognition 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-finish +https://wicg.github.io/handwriting-recognition/#finish 1 1 -MLCommandEncoder - finish() method @@ -5080,17 +5604,6 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderbundleencoder-finish 1 GPURenderBundleEncoder - -finish() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-finish -1 -1 -MLCommandEncoder -- finish(descriptor) method webgpu @@ -5115,17 +5628,6 @@ GPURenderBundleEncoder - finish(descriptor) method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-finish -1 -1 -MLCommandEncoder -- -finish(descriptor) -method webgpu webgpu 1 @@ -5146,17 +5648,6 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderbundleencoder-finish 1 GPURenderBundleEncoder - -finish(descriptor) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-finish -1 -1 -MLCommandEncoder -- finished attribute css-view-transitions-1 @@ -5180,6 +5671,17 @@ https://drafts.csswg.org/web-animations-1/#dom-animation-finished Animation - finished +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-finished +1 +1 +AnimationPlayState +- +finished dfn web-animations-1 web-animations @@ -5201,34 +5703,23 @@ https://encoding.spec.whatwg.org/#finished 1 - finished -dfn -indexeddb-3 -indexeddb -3 -current -https://w3c.github.io/IndexedDB/#transaction-finished - -1 -transaction -- -finished dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationresult-finished +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationresult-finished 1 1 NavigationResult - finished attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationtransition-finished +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtransition-finished 1 1 NavigationTransition @@ -5238,6 +5729,17 @@ dfn indexeddb-3 indexeddb 3 +current +https://w3c.github.io/IndexedDB/#transaction-finished + +1 +transaction +- +finished +dfn +indexeddb-3 +indexeddb +3 snapshot https://www.w3.org/TR/IndexedDB-3/#transaction-finished @@ -5266,15 +5768,16 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-finished 1 Animation - -finished play state +finished dfn web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#finished-play-state - +https://www.w3.org/TR/web-animations-1/#play-state-finished 1 +1 +play state - finished promise dfn @@ -5289,25 +5792,23 @@ ViewTransition - finished promise dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-finished-promise +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationtransition-finished 1 -navigation API method navigation - finished promise dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationtransition-finished-promise +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-finished 1 -NavigationTransition - finished promise dfn @@ -5375,26 +5876,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-fircount 1 RTCOutboundRtpStreamStats - -fire -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#fire - -1 -- -fire -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#fire - -1 -- fire a background fetch click event dfn background-fetch @@ -5495,13 +5976,13 @@ https://html.spec.whatwg.org/multipage/dnd.html#fire-a-dnd-event 1 - -fire a download-requested navigate event +fire a download request navigate event dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-download-requested-navigate-event +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-a-download-request-navigate-event 1 - @@ -5563,16 +6044,6 @@ keyboard-map current https://wicg.github.io/keyboard-map/#fire-a-layoutchange-event -1 -- -fire a non-traversal navigate event -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event - 1 - fire a page transition event @@ -5641,7 +6112,27 @@ xhr xhr 1 current -https://xhr.spec.whatwg.org/#concept-event-fire-progress +https://xhr.spec.whatwg.org/#concept-event-fire-progress + +1 +- +fire a push/replace/reload navigate event +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-a-push%2Freplace%2Freload-navigate-event + +1 +- +fire a selectionchange event +dfn +selection-api +selection-api +1 +current +https://w3c.github.io/selection-api/#dfn-fire-a-selectionchange-event 1 - @@ -5705,13 +6196,13 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-fire-a-track-event 1 - -fire a traversal navigate event +fire a traverse navigate event dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-traversal-navigate-event +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-a-traverse-navigate-event 1 - @@ -5813,6 +6304,26 @@ webxr snapshot https://www.w3.org/TR/webxr/#fire-an-input-source-event +1 +- +fire an orientation event +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#fire-an-orientation-event + +1 +- +fire an orientation event +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#fire-an-orientation-event + 1 - fire functional event @@ -5853,6 +6364,16 @@ push-api snapshot https://www.w3.org/TR/push-api/#dfn-fire-the-pushsubscriptionchange-event +1 +- +fire the pageswap event +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#fire-the-pageswap-event + 1 - firebrick @@ -5875,6 +6396,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-firebrick 1 1 <color> +<named-color> - firebrick dfn @@ -5896,6 +6418,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-firebrick 1 1 <color> +<named-color> - firefoxplatform dfn @@ -6072,6 +6595,17 @@ https://drafts.csswg.org/css-text-4/#valdef-hanging-punctuation-first hanging-punctuation - first +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-first +1 +1 +interpolation sampling +- +first argument indexeddb-3 indexeddb @@ -6116,6 +6650,17 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbfactory-cmp-first-second-first IDBFactory/cmp(first, second) - first +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-sampling-first +1 +1 +interpolation sampling +- +first value css-align-3 css-align @@ -6187,6 +6732,17 @@ https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-first 1 hanging-punctuation - +first +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsprfvalues-first +1 +1 +AuthenticationExtensionsPRFValues +- first available font dfn css-fonts-4 @@ -6257,16 +6813,6 @@ css-align snapshot https://www.w3.org/TR/css-align-3/#first-baseline-set 1 -1 -- -first baseline set -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-first-baseline-set - 1 - first baselines @@ -6390,6 +6936,17 @@ https://www.w3.org/TR/selectors-3/#first-formatted-line0 1 - +first interim network-response start time +dfn +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#fetch-timing-info-first-interim-network-response-start-time +1 +1 +fetch timing info +- first letter dfn css-pseudo-4 @@ -6459,16 +7016,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-first-party -- -first party -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-first-party - -1 - first public working draft dfn @@ -6533,6 +7080,17 @@ https://www.w3.org/TR/css-counter-styles-3/#first-symbol-value 1 1 - +first ui event timestamp +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-first-ui-event-timestamp + +1 +frame timing info +- first-baseline value css-line-grid-1 @@ -6614,6 +7172,26 @@ https://drafts.csswg.org/css2/#selectordef-first-child 1 1 - +first-child +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x24 +1 +1 +- +first-child +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x24 +1 +1 +- first-except value css-content-3 @@ -6668,6 +7246,26 @@ https://drafts.csswg.org/css-content-3/#valdef-content-first-letter content() - first-letter +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x50 +1 +1 +- +first-letter +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x50 +1 +1 +- +first-letter value css-content-3 css-content @@ -6698,23 +7296,33 @@ https://www.w3.org/TR/css-pseudo-4/#first-letter-text 1 - -first-party set +first-line dfn -first-party-sets -first-party-sets +css2 +css 1 current -https://wicg.github.io/first-party-sets/#first-party-set +https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo +1 +1 +- +first-line +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo 1 1 - first-party-site context dfn -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#first-party-site-context +https://privacycg.github.io/requestStorageAccessFor/#first-party-site-context 1 - @@ -6767,6 +7375,16 @@ snapshot https://www.w3.org/TR/i18n-glossary/#dfn-first-strong-detection 1 +- +first-valid() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-first-valid +1 +1 - firstChild attribute @@ -6790,6 +7408,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-firstchild 1 GroupEffect - +firstChild +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-firstchild +1 +1 +GroupEffect +- firstChild() method dom @@ -6900,6 +7529,28 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-drawindexed-indexcount- 1 GPURenderCommandsMixin/drawIndexed(indexCount, instanceCount, firstIndex, baseVertex, firstInstance) - +firstInterimResponseStart +attribute +resource-timing +resource-timing +1 +current +https://w3c.github.io/resource-timing/#dom-performanceresourcetiming-firstinterimresponsestart +1 +1 +PerformanceResourceTiming +- +firstInterimResponseStart +attribute +resource-timing +resource-timing +1 +snapshot +https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming-firstinterimresponsestart +1 +1 +PerformanceResourceTiming +- firstQuery argument webgpu @@ -6922,6 +7573,17 @@ https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-resolvequeryset-queryset-fir 1 GPUCommandEncoder/resolveQuerySet(querySet, firstQuery, queryCount, destination, destinationOffset) - +firstUIEventTimestamp +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-firstuieventtimestamp +1 +1 +PerformanceLongAnimationFrameTiming +- firstVertex argument webgpu @@ -6944,6 +7606,72 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-draw-vertexcount-instan 1 GPURenderCommandsMixin/draw(vertexCount, instanceCount, firstVertex, firstInstance) - +firstentryindex +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#entrymaprecord-firstentryindex + +1 +EntryMapRecord +- +firstentryindex +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#entrymaprecord-firstentryindex + +1 +EntryMapRecord +- +firstentryindex +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#featurerecord-firstentryindex + +1 +FeatureRecord +- +firstmappedglyph +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-map-firstmappedglyph + +1 +Glyph Map +- +firstmappedglyph +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-map-firstmappedglyph + +1 +Glyph Map +- +firstnewentryindex +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#featurerecord-firstnewentryindex + +1 +FeatureRecord +- fit-content value css-sizing-4 @@ -7049,30 +7777,46 @@ https://www.w3.org/TR/css-sizing-3/#fit-content-size 1 - fit-content() -value +function css-grid-1 css-grid 1 current -https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-fit-content +https://drafts.csswg.org/css-grid-1/#funcdef-grid-template-columns-fit-content 1 1 grid-template-columns grid-template-rows - fit-content() -value +function css-grid-2 css-grid 2 current -https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-fit-content +https://drafts.csswg.org/css-grid-2/#funcdef-grid-template-columns-fit-content 1 1 grid-template-columns grid-template-rows - fit-content() +function +css-sizing-3 +css-sizing +3 +current +https://drafts.csswg.org/css-sizing-3/#funcdef-width-fit-content +1 +1 +width +min-width +max-width +height +min-height +max-height +- +fit-content() value css-grid-1 css-grid @@ -7096,22 +7840,6 @@ https://www.w3.org/TR/css-grid-2/#valdef-grid-template-columns-fit-content grid-template-columns grid-template-rows - -fit-content(<length-percentage [0,∞]>) -value -css-sizing-3 -css-sizing -3 -current -https://drafts.csswg.org/css-sizing-3/#valdef-width-fit-content-length-percentage-0 -1 -1 -width -min-width -max-width -height -min-height -max-height -- fit-content(<length-percentage>) value css-sizing-3 @@ -7205,6 +7933,17 @@ position - fixed value +css-ui-4 +css-ui +4 +current +https://drafts.csswg.org/css-ui-4/#valdef-field-sizing-fixed +1 +1 +field-sizing +- +fixed +value css22 css 1 @@ -7400,6 +8139,28 @@ https://www.w3.org/TR/epub-33/#dfn-fixed-layout-document 1 1 - +fixed-length arraybuffer +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-fixed-length-and-resizable-arraybuffer-objects +1 +1 +ECMAScript +- +fixed-length sharedarraybuffer +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-fixed-length-and-growable-sharedarraybuffer-objects +1 +1 +ECMAScript +- fixed-positioned dfn css-position-3 @@ -7466,7 +8227,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-type-fixed-text +https://urlpattern.spec.whatwg.org/#part-type-fixed-text 1 part/type diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fl.data b/bikeshed/spec-data/readonly/anchors/anchors-fl.data index 07c0475fa1..e6496906ae 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fl.data @@ -1,3 +1,23 @@ +"flag" +dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-flag + +1 +- +"flag" +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-flag + +1 +- "flash" enum-value image-capture @@ -70,10 +90,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperandtype-float16 +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-float16 1 1 -MLOperandType +MLOperandDataType - "float16" enum-value @@ -81,10 +101,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperandtype-float16 +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-float16 1 1 -MLOperandType +MLOperandDataType - "float16x2" enum-value @@ -158,10 +178,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperandtype-float32 +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-float32 1 1 -MLOperandType +MLOperandDataType - "float32" enum-value @@ -180,10 +200,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperandtype-float32 +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-float32 1 1 -MLOperandType +MLOperandDataType - "float32" enum-value @@ -196,6 +216,28 @@ https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrdepthdataformat-float32 1 XRDepthDataFormat - +"float32-filterable" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#float32-filterable +1 +1 +GPUFeatureName +- +"float32-filterable" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#float32-filterable +1 +1 +GPUFeatureName +- "float32x2" enum-value webgpu @@ -392,23 +434,25 @@ https://www.w3.org/TR/css-flexbox-1/#valdef-flex-flex-shrink 1 flex - -<flex> -type +<flex [0,∞]> +value css-grid-1 css-grid 1 current -https://drafts.csswg.org/css-grid-1/#typedef-flex +https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex-0 1 1 +grid-template-columns +grid-template-rows - -<flex> +<flex [0,∞]> value -css-grid-1 +css-grid-2 css-grid -1 +2 current -https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex +https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-flex-0 1 1 grid-template-columns @@ -416,25 +460,23 @@ grid-template-rows - <flex> type -css-grid-2 +css-grid-1 css-grid -2 +1 current -https://drafts.csswg.org/css-grid-2/#typedef-flex +https://drafts.csswg.org/css-grid-1/#typedef-flex 1 1 - <flex> -value +type css-grid-2 css-grid 2 current -https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-flex +https://drafts.csswg.org/css-grid-2/#typedef-flex 1 1 -grid-template-columns -grid-template-rows - <flex> type @@ -480,6 +522,26 @@ https://www.w3.org/TR/css-grid-2/#valdef-grid-template-columns-flex grid-template-columns grid-template-rows - +<floor/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_floor + +1 +- +<floor/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_floor + +1 +- FlacEncoderConfig dictionary webcodecs-flac-codec-registration @@ -500,6 +562,16 @@ https://www.w3.org/TR/webcodecs-flac-codec-registration/#dictdef-flacencoderconf 1 1 - +FlattenIntoArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-flattenintoarray +1 +1 +- FlattenIntoArray(target, source, sourceLen, start, depth, mapperFunction, thisArg) abstract-op ecmascript @@ -510,6 +582,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-flattenintoarray 1 1 - +Float16Array +interface +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#idl-Float16Array +1 +1 +- Float32Array interface webidl @@ -573,16 +655,6 @@ https://www.w3.org/TR/webcodecs-flac-codec-registration/#dom-audioencoderconfig- 1 AudioEncoderConfig - -flag -dfn -badging -badging -1 -current -https://w3c.github.io/badging/#dfn-flag - -1 -- flagged as full dfn websockets @@ -606,6 +678,28 @@ RegExp - flags dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-keyed-patch-flags + +1 +Glyph keyed patch +- +flags +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#tablepatch-flags + +1 +TablePatch +- +flags +dfn webauthn-3 webauthn 3 @@ -617,13 +711,36 @@ authData - flags dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-keyed-patch-flags + +1 +Glyph keyed patch +- +flags +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#tablepatch-flags + +1 +TablePatch +- +flags +dfn webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#flags +https://www.w3.org/TR/webauthn-3/#authdata-flags 1 +authData - flags data type dfn @@ -657,6 +774,28 @@ https://www.w3.org/TR/image-capture/#dom-filllightmode-flash 1 FillLightMode - +flat +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type-flat +1 +1 +interpolation type +- +flat +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-type-flat +1 +1 +interpolation type +- flat tree dfn css-scoping-1 @@ -1026,17 +1165,6 @@ wrap-before wrap-after - flex -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-flex -1 -1 -CSSNumericBaseType -- -flex dict-member css-typed-om-1 css-typed-om @@ -1582,6 +1710,17 @@ https://www.w3.org/TR/css-flexbox-1/#valdef-justify-content-flex-end justify-content - flex-flow +value +css-display-4 +css-display +4 +current +https://drafts.csswg.org/css-display-4/#valdef-reading-flow-flex-flow +1 +1 +reading-flow +- +flex-flow property css-flexbox-1 css-flexbox @@ -1761,6 +1900,17 @@ https://www.w3.org/TR/css-flexbox-1/#valdef-justify-content-flex-start 1 justify-content - +flex-visual +value +css-display-4 +css-display +4 +current +https://drafts.csswg.org/css-display-4/#valdef-reading-flow-flex-visual +1 +1 +reading-flow +- flex-wrap property css-flexbox-1 @@ -1953,16 +2103,71 @@ https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle 1 image-orientation - -flip +flip-block value -css-images-3 -css-images -3 +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-flip-block +1 +1 +position-try-fallbacks +- +flip-block +value +css-anchor-position-1 +css-anchor-position +1 snapshot -https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-flip-block 1 1 -image-orientation +position-try-options +- +flip-inline +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-flip-inline +1 +1 +position-try-fallbacks +- +flip-inline +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-flip-inline +1 +1 +position-try-options +- +flip-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-flip-start +1 +1 +position-try-fallbacks +- +flip-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-flip-start +1 +1 +position-try-options - flipX() method @@ -2072,22 +2277,32 @@ https://drafts.csswg.org/css2/#propdef-float 1 - float -dfn -ift -ift +interface +webidl +webidl 1 current -https://w3c.github.io/IFT/Overview.html#float - +https://webidl.spec.whatwg.org/#idl-float +1 1 - float -interface -webidl -webidl +property +css2 +css 1 current -https://webidl.spec.whatwg.org/#idl-float +https://www.w3.org/TR/CSS21/visuren.html#propdef-float +1 +1 +- +float +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-float 1 1 - @@ -2239,6 +2454,26 @@ css current https://drafts.csswg.org/css2/#float-rules +1 +- +float rules +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#float-rules +1 +1 +- +float rules +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#float-rules +1 1 - float-defer @@ -2393,7 +2628,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_floating_time +https://w3c.github.io/i18n-glossary/#dfn-floating-times 1 - @@ -2403,7 +2638,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_floating_time +https://www.w3.org/TR/i18n-glossary/#dfn-floating-times 1 - @@ -2507,18 +2742,29 @@ https://www.w3.org/TR/screen-capture/#dfn-floor-value 1 - -floor(x) +floor(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.floor +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-floor 1 1 -Math +MLGraphBuilder - -floor(x) +floor(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor +1 +1 +MLGraphBuilder +- +floor(input, options) method webnn webnn @@ -2529,7 +2775,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-floor 1 MLGraphBuilder - -floor(x) +floor(input, options) method webnn webnn @@ -2540,6 +2786,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor 1 MLGraphBuilder - +floor(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.floor +1 +1 +Math +- floralwhite dfn css-color-3 @@ -2560,6 +2817,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-floralwhite 1 1 <color> +<named-color> - floralwhite dfn @@ -2581,6 +2839,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-floralwhite 1 1 <color> +<named-color> - flow value @@ -2708,6 +2967,26 @@ css current https://drafts.csswg.org/css2/#flow-of-an-element +1 +- +flow of an element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x25 +1 +1 +- +flow of an element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x25 +1 1 - flow-from diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fm.data b/bikeshed/spec-data/readonly/anchors/anchors-fm.data index b4829c6b09..1dfbcb9b4d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fm.data @@ -3,8 +3,8 @@ abstract-op webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#abstract-opdef-devicepubkey-record-fmt +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-devicepubkey-record-fmt 1 1 devicePubKey record diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fo.data b/bikeshed/spec-data/readonly/anchors/anchors-fo.data index f91a73bebd..6cfa9a8423 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fo.data @@ -63,6 +63,7 @@ https://drafts.csswg.org/web-animations-1/#dom-fillmode-forwards 1 1 FillMode +PlaybackDirection - "forwards" enum-value @@ -86,13 +87,24 @@ https://www.w3.org/TR/web-animations-1/#dom-fillmode-forwards 1 FillMode - +"forwards" +enum-value +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-fillmode-forwards +1 +1 +FillMode +- %ForInIteratorPrototype% interface ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-%foriniteratorprototype%-object +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-%25foriniteratorprototype%25-object 1 1 - @@ -134,6 +146,26 @@ html current https://html.spec.whatwg.org/multipage/semantics-other.html#selector-focus +1 +- +:focus +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x38 +1 +1 +- +:focus +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x38 +1 1 - :focus @@ -196,23 +228,23 @@ https://www.w3.org/TR/selectors-4/#focus-within-pseudo 1 1 - -<font-feature-tech> +<font-features-tech> type css-fonts-4 css-fonts 4 -snapshot -https://www.w3.org/TR/css-fonts-4/#font-feature-tech-values +current +https://drafts.csswg.org/css-fonts-4/#font-features-tech-values 1 1 - -<font-feature-tech> +<font-features-tech> type css-fonts-5 css-fonts 5 -snapshot -https://www.w3.org/TR/css-fonts-5/#font-feature-tech-values +current +https://drafts.csswg.org/css-fonts-5/#font-features-tech-values 1 1 - @@ -221,8 +253,8 @@ type css-fonts-4 css-fonts 4 -current -https://drafts.csswg.org/css-fonts-4/#font-features-tech-values +snapshot +https://www.w3.org/TR/css-fonts-4/#font-features-tech-values 1 1 - @@ -231,29 +263,9 @@ type css-fonts-5 css-fonts 5 -current -https://drafts.csswg.org/css-fonts-5/#font-features-tech-values -1 -1 -- -<font-format -dfn -css-conditional-5 -css-conditional -5 -current -https://drafts.csswg.org/css-conditional-5/#font-format - -1 -- -<font-format -dfn -css-conditional-5 -css-conditional -5 snapshot -https://www.w3.org/TR/css-conditional-5/#font-format - +https://www.w3.org/TR/css-fonts-5/#font-features-tech-values +1 1 - <font-format> @@ -296,63 +308,63 @@ https://www.w3.org/TR/css-fonts-5/#font-format-values 1 1 - -<font-stretch-css3> +<font-src-list> type css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#font-stretch-css3-values +https://drafts.csswg.org/css-fonts-4/#typedef-font-src-list 1 1 - -<font-stretch-css3> +<font-src-list> type css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#font-stretch-css3-values +https://www.w3.org/TR/css-fonts-4/#typedef-font-src-list 1 1 - -<font-tech> +<font-src> type -css-conditional-5 -css-conditional -5 +css-fonts-4 +css-fonts +4 current -https://drafts.csswg.org/css-conditional-5/#typedef-font-tech +https://drafts.csswg.org/css-fonts-4/#typedef-font-src 1 1 - -<font-tech> +<font-src> type css-fonts-4 css-fonts 4 -current -https://drafts.csswg.org/css-fonts-4/#font-tech-values +snapshot +https://www.w3.org/TR/css-fonts-4/#typedef-font-src 1 1 - <font-tech> type -css-fonts-5 +css-fonts-4 css-fonts -5 +4 current -https://drafts.csswg.org/css-fonts-5/#font-tech-values +https://drafts.csswg.org/css-fonts-4/#font-tech-values 1 1 - <font-tech> type -css-conditional-5 -css-conditional +css-fonts-5 +css-fonts 5 -snapshot -https://www.w3.org/TR/css-conditional-5/#typedef-font-tech +current +https://drafts.csswg.org/css-fonts-5/#font-tech-values 1 1 - @@ -414,6 +426,46 @@ css-fonts snapshot https://www.w3.org/TR/css-fonts-4/#font-weight-absolute-values 1 +1 +- +<font-width-css3> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#font-width-css3-values +1 +1 +- +<font-width-css3> +type +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#font-width-css3-values +1 +1 +- +<forall/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_forall + +1 +- +<forall/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_forall + 1 - <forgiving-relative-selector-list> @@ -740,12 +792,23 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontface +https://www.w3.org/TR/css-font-loading-3/#fontface 1 1 - +FontFace(family, source) +constructor +css-font-loading-3 +css-font-loading +3 +current +https://drafts.csswg.org/css-font-loading-3/#dom-fontface-fontface +1 +1 FontFace -method +- +FontFace(family, source) +constructor css-font-loading-3 css-font-loading 3 @@ -755,7 +818,7 @@ https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface 1 FontFace - -FontFace(family, source) +FontFace(family, source, descriptors) constructor css-font-loading-3 css-font-loading @@ -771,8 +834,8 @@ constructor css-font-loading-3 css-font-loading 3 -current -https://drafts.csswg.org/css-font-loading-3/#dom-fontface-fontface +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface 1 1 FontFace @@ -807,6 +870,16 @@ https://drafts.csswg.org/css-font-loading-3/#fontfacefeatures 1 1 - +FontFaceFeatures +interface +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfacefeatures +1 +1 +- FontFaceLoadStatus enum css-font-loading-3 @@ -837,6 +910,16 @@ https://drafts.csswg.org/css-font-loading-3/#fontfacepalette 1 1 - +FontFacePalette +interface +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfacepalette +1 +1 +- FontFacePalettes interface css-font-loading-3 @@ -847,6 +930,16 @@ https://drafts.csswg.org/css-font-loading-3/#fontfacepalettes 1 1 - +FontFacePalettes +interface +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfacepalettes +1 +1 +- FontFaceSet interface css-font-loading-3 @@ -863,7 +956,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset +https://www.w3.org/TR/css-font-loading-3/#fontfaceset 1 1 - @@ -872,8 +965,8 @@ constructor css-font-loading-3 css-font-loading 3 -current -https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-fontfaceset +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-fontfaceset 1 1 FontFaceSet @@ -888,6 +981,16 @@ https://drafts.csswg.org/css-font-loading-3/#fontfacesetloadevent 1 1 - +FontFaceSetLoadEvent +interface +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfacesetloadevent +1 +1 +- FontFaceSetLoadEvent(type) constructor css-font-loading-3 @@ -899,6 +1002,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacesetloadevent-fontfacese 1 FontFaceSetLoadEvent - +FontFaceSetLoadEvent(type) +constructor +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfacesetloadevent +1 +1 +FontFaceSetLoadEvent +- FontFaceSetLoadEvent(type, eventInitDict) constructor css-font-loading-3 @@ -910,6 +1024,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacesetloadevent-fontfacese 1 FontFaceSetLoadEvent - +FontFaceSetLoadEvent(type, eventInitDict) +constructor +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfacesetloadevent +1 +1 +FontFaceSetLoadEvent +- FontFaceSetLoadEventInit dictionary css-font-loading-3 @@ -920,6 +1045,16 @@ https://drafts.csswg.org/css-font-loading-3/#dictdef-fontfacesetloadeventinit 1 1 - +FontFaceSetLoadEventInit +dictionary +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dictdef-fontfacesetloadeventinit +1 +1 +- FontFaceSetLoadStatus enum css-font-loading-3 @@ -956,7 +1091,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesource +https://www.w3.org/TR/css-font-loading-3/#fontfacesource 1 1 - @@ -970,6 +1105,16 @@ https://drafts.csswg.org/css-font-loading-3/#fontfacevariationaxis 1 1 - +FontFaceVariationAxis +interface +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfacevariationaxis +1 +1 +- FontFaceVariations interface css-font-loading-3 @@ -980,6 +1125,16 @@ https://drafts.csswg.org/css-font-loading-3/#fontfacevariations 1 1 - +FontFaceVariations +interface +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfacevariations +1 +1 +- FontMetrics interface font-metrics-api-1 @@ -990,6 +1145,16 @@ https://drafts.css-houdini.org/font-metrics-api-1/#fontmetrics 1 1 - +ForBodyEvaluation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-forbodyevaluation +1 +1 +- ForBodyEvaluation(test, increment, stmt, perIterationBindings, labelSet) abstract-op ecmascript @@ -1000,6 +1165,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declaration 1 1 - +ForDebuggingOnly +interface +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fordebuggingonly +1 +1 +- FormData interface xhr @@ -1166,7 +1341,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontstatuspromise +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontstatuspromise-slot 1 1 FontFace @@ -1266,6 +1441,26 @@ uievents current https://w3c.github.io/uievents/#focus +1 +- +focus +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#x8 +1 +1 +- +focus +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#x8 +1 1 - focus @@ -1299,38 +1494,77 @@ https://www.w3.org/TR/uievents/#focus 1 - -focus chain +focus (pseudo-class) dfn -html -html +css2 +css 1 current -https://html.spec.whatwg.org/multipage/interaction.html#focus-chain - +https://www.w3.org/TR/CSS21/selector.html#x38 +1 1 - -focus changed during ongoing navigation +focus (pseudo-class) dfn -navigation-api -navigation-api +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x38 1 -current -https://wicg.github.io/navigation-api/#navigation-focus-changed-during-ongoing-navigation - 1 -Navigation - -focus delegate +focus and origin check dfn -html -html +generic-sensor +generic-sensor 1 current -https://html.spec.whatwg.org/multipage/interaction.html#focus-delegate - +https://w3c.github.io/sensors/#focus-and-origin-check +1 1 - -focus distance +focus and origin check +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#focus-and-origin-check +1 +1 +- +focus chain +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#focus-chain + +1 +- +focus changed during ongoing navigation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#focus-changed-during-ongoing-navigation + +1 +- +focus delegate +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#focus-delegate + +1 +- +focus distance dfn image-capture image-capture @@ -1392,14 +1626,13 @@ https://html.spec.whatwg.org/multipage/interaction.html#focus-navigation-scope-o - focus reset behavior dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigateevent-focus-reset-behavior +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigateevent-focusreset 1 -NavigateEvent - focus ring dfn @@ -1517,6 +1750,28 @@ https://www.w3.org/TR/screen-capture/#idl-def-CaptureStartFocusBehavior.focus-ca 1 CaptureStartFocusBehavior - +focus-capturing-application +enum-value +screen-capture +screen-capture +1 +current +https://w3c.github.io/mediacapture-screen-share/#idl-def-CaptureStartFocusBehavior.focus-capturing-application +1 +1 +CaptureStartFocusBehavior +- +focus-capturing-application +enum-value +screen-capture +screen-capture +1 +snapshot +https://www.w3.org/TR/screen-capture/#idl-def-CaptureStartFocusBehavior.focus-capturing-application +1 +1 +CaptureStartFocusBehavior +- focus-existing dfn web-app-launch @@ -1528,6 +1783,16 @@ https://wicg.github.io/web-app-launch/#dfn-focus-existing 1 client mode - +focus-unfenced +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#focus-unfenced + +1 +- focusDistance dict-member image-capture @@ -1750,11 +2015,11 @@ Selection - focusReset dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationinterceptoptions-focusreset +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationinterceptoptions-focusreset 1 1 NavigationInterceptOptions @@ -1968,39 +2233,6 @@ https://www.w3.org/TR/device-posture/#dom-deviceposturetype-folded 1 DevicePostureType - -folded-over -enum-value -device-posture -device-posture -1 -current -https://w3c.github.io/device-posture/#dom-deviceposturetype-folded-over -1 -1 -DevicePostureType -- -folded-over -enum-value -device-posture -device-posture -1 -snapshot -https://www.w3.org/TR/device-posture/#dom-deviceposturetype-folded-over -1 -1 -DevicePostureType -- -follow -dfn -dom -dom -1 -current -https://dom.spec.whatwg.org/#abortsignal-follow -1 -1 -AbortSignal -- follow the hyperlink dfn html @@ -2030,6 +2262,26 @@ css current https://drafts.csswg.org/css2/#following +1 +- +following element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#following +1 +1 +- +following element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#following +1 1 - font @@ -2125,6 +2377,26 @@ svg current https://svgwg.org/svg2-draft/text.html#TermFont +1 +- +font +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#propdef-font +1 +1 +- +font +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#propdef-font +1 1 - font @@ -2143,10 +2415,32 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-font +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-add-font-font +1 +1 +FontFaceSet/add(font) +- +font +argument +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-check-font-text-font +1 +1 +FontFaceSet/check(font, text) +- +font +argument +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-delete-font-font 1 1 -FontFaceSet/check() +FontFaceSet/delete(font) - font argument @@ -2154,10 +2448,10 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-font +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-load-font-text-font 1 1 -FontFaceSet/load() +FontFaceSet/load(font, text) - font property @@ -2277,6 +2571,26 @@ mimesniff current https://mimesniff.spec.whatwg.org/#font-mime-type 1 +1 +- +font patch +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#font-patch + +1 +- +font patch +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#font-patch + 1 - font representation @@ -2347,6 +2661,16 @@ ift current https://w3c.github.io/IFT/Overview.html#font-subset +1 +- +font subset +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#font-subset + 1 - font subset definition @@ -2357,6 +2681,16 @@ ift current https://w3c.github.io/IFT/Overview.html#font-subset-definition +1 +- +font subset definition +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#font-subset-definition + 1 - font swap period @@ -2422,6 +2756,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-feature-values-font-display @font-feature-values - font-display +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-display +1 +1 +CSSFontFaceDescriptors +- +font-display descriptor css-fonts-4 css-fonts @@ -2466,6 +2811,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-palette-values-font-family @font-palette-values - font-family +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-family +1 +1 +CSSFontFaceDescriptors +- +font-family property css-fonts-4 css-fonts @@ -2486,6 +2842,26 @@ https://drafts.csswg.org/css2/#propdef-font-family 1 - font-family +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-family +1 +1 +- +font-family +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-family +1 +1 +- +font-family dfn css22 css @@ -2539,6 +2915,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-feature-settings @font-face - font-feature-settings +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-feature-settings +1 +1 +CSSFontFaceDescriptors +- +font-feature-settings property css-fonts-4 css-fonts @@ -2569,6 +2956,28 @@ https://www.w3.org/TR/css-fonts-4/#propdef-font-feature-settings 1 1 - +font-feature-value-type +dfn +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#font-feature-values-font-feature-value-type +1 +1 +@font-feature-values +- +font-feature-value-type +dfn +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#font-feature-values-font-feature-value-type +1 +1 +@font-feature-values +- font-kerning property css-fonts-4 @@ -2601,6 +3010,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-language-override @font-face - font-language-override +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-language-override +1 +1 +CSSFontFaceDescriptors +- +font-language-override property css-fonts-4 css-fonts @@ -2643,17 +3063,28 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-named-instance @font-face - font-named-instance -descriptor +attribute css-fonts-4 css-fonts 4 -snapshot -https://www.w3.org/TR/css-fonts-4/#descdef-font-face-font-named-instance +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-named-instance 1 1 -@font-face +CSSFontFaceDescriptors - -font-optical-sizing +font-named-instance +descriptor +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#descdef-font-face-font-named-instance +1 +1 +@font-face +- +font-optical-sizing property css-fonts-4 css-fonts @@ -2765,6 +3196,26 @@ https://drafts.csswg.org/css2/#propdef-font-size 1 - font-size +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-size +1 +1 +- +font-size +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-size +1 +1 +- +font-size dfn css22 css @@ -2856,13 +3307,24 @@ https://www.w3.org/TR/CSP3/#font-src 1 - font-stretch -descriptor +attribute css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-stretch +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-stretch 1 +1 +CSSFontFaceDescriptors +- +font-stretch +dfn +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#font-face-font-stretch + 1 @font-face - @@ -2877,13 +3339,13 @@ https://drafts.csswg.org/css-fonts-4/#propdef-font-stretch 1 - font-stretch -descriptor +dfn css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#descdef-font-face-font-stretch -1 +https://www.w3.org/TR/css-fonts-4/#font-face-font-stretch + 1 @font-face - @@ -2909,6 +3371,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-style @font-face - font-style +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-style +1 +1 +CSSFontFaceDescriptors +- +font-style property css-fonts-4 css-fonts @@ -2929,6 +3402,26 @@ https://drafts.csswg.org/css2/#propdef-font-style 1 - font-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-style +1 +1 +- +font-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-style +1 +1 +- +font-style dfn css22 css @@ -2979,6 +3472,26 @@ https://www.w3.org/TR/css-fonts-4/#propdef-font-synthesis 1 1 - +font-synthesis-position +property +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-position +1 +1 +- +font-synthesis-position +property +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#propdef-font-synthesis-position +1 +1 +- font-synthesis-small-caps property css-fonts-4 @@ -3060,6 +3573,26 @@ https://drafts.csswg.org/css2/#propdef-font-variant 1 - font-variant +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant +1 +1 +- +font-variant +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant +1 +1 +- +font-variant dfn css22 css @@ -3231,6 +3764,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-variation-settings @font-face - font-variation-settings +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-variation-settings +1 +1 +CSSFontFaceDescriptors +- +font-variation-settings property css-fonts-4 css-fonts @@ -3273,6 +3817,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-weight @font-face - font-weight +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-weight +1 +1 +CSSFontFaceDescriptors +- +font-weight property css-fonts-4 css-fonts @@ -3293,6 +3848,26 @@ https://drafts.csswg.org/css2/#propdef-font-weight 1 - font-weight +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight +1 +1 +- +font-weight +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight +1 +1 +- +font-weight dfn css22 css @@ -3323,6 +3898,59 @@ https://www.w3.org/TR/css-fonts-4/#propdef-font-weight 1 1 - +font-width +descriptor +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-width +1 +1 +@font-face +- +font-width +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-font-width +1 +1 +CSSFontFaceDescriptors +- +font-width +property +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#propdef-font-width +1 +1 +- +font-width +descriptor +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#descdef-font-face-font-width +1 +1 +@font-face +- +font-width +property +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#propdef-font-width +1 +1 +- fontBoundingBoxAscent attribute font-metrics-api-1 @@ -3367,6 +3995,28 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-textmetrics-fontboundingb 1 TextMetrics - +fontDisplay +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontdisplay +1 +1 +CSSFontFaceDescriptors +- +fontFamily +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontfamily +1 +1 +CSSFontFaceDescriptors +- fontFamily attribute css-fonts-4 @@ -3411,6 +4061,17 @@ https://www.w3.org/TR/css-fonts-4/#dom-cssfontpalettevaluesrule-fontfamily 1 CSSFontPaletteValuesRule - +fontFeatureSettings +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontfeaturesettings +1 +1 +CSSFontFaceDescriptors +- fontKerning attribute html @@ -3422,56 +4083,133 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-fontkerning 1 CanvasTextDrawingStyles - -fontStretch +fontLanguageOverride attribute -html -html +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontlanguageoverride 1 +1 +CSSFontFaceDescriptors +- +fontNamedInstance +attribute +css-fonts-4 +css-fonts +4 current -https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-fontstretch +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontnamedinstance 1 1 -CanvasTextDrawingStyles +CSSFontFaceDescriptors - -fontVariantCaps +fontStretch +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontstretch +1 +1 +CSSFontFaceDescriptors +- +fontStretch attribute html html 1 current -https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-fontvariantcaps +https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-fontstretch 1 1 CanvasTextDrawingStyles - -fontcolor(color) -method -ecmascript -ecmascript -1 +fontStyle +attribute +css-fonts-4 +css-fonts +4 current -https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-string.prototype.fontcolor +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontstyle 1 1 -String +CSSFontFaceDescriptors - -fontface -dfn +fontVariantCaps +attribute html html 1 current -https://html.spec.whatwg.org/multipage/infrastructure.html#fontface - +https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-fontvariantcaps 1 +1 +CanvasTextDrawingStyles - -fontfaces +fontVariationSettings attribute -css-font-loading-3 -css-font-loading -3 +css-fonts-4 +css-fonts +4 current -https://drafts.csswg.org/css-font-loading-3/#dom-fontfacesetloadevent-fontfaces +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontvariationsettings +1 +1 +CSSFontFaceDescriptors +- +fontWeight +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontweight +1 +1 +CSSFontFaceDescriptors +- +fontWidth +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-fontwidth +1 +1 +CSSFontFaceDescriptors +- +fontcolor(colour) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-string.prototype.fontcolor +1 +1 +String +- +fontface +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/infrastructure.html#fontface + +1 +- +fontfaces +attribute +css-font-loading-3 +css-font-loading +3 +current +https://drafts.csswg.org/css-font-loading-3/#dom-fontfacesetloadevent-fontfaces 1 1 FontFaceSetLoadEvent @@ -3493,10 +4231,10 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-cssfontfaceloadevent-fontfaces +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfaces 1 1 -CSSFontFaceLoadEvent +FontFaceSetLoadEvent - fontfaces dict-member @@ -3504,10 +4242,10 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-cssfontfaceloadeventinit-fontfaces +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadeventinit-fontfaces 1 1 -CSSFontFaceLoadEventInit +FontFaceSetLoadEventInit - fonts attribute @@ -3611,7 +4349,7 @@ css-gcpm-3 css-gcpm 3 snapshot -https://www.w3.org/TR/css-gcpm-3/#valuedef-footnote +https://www.w3.org/TR/css-gcpm-3/#valdef-float-footnote 1 1 float @@ -3776,6 +4514,17 @@ https://infra.spec.whatwg.org/#map-iterate 1 map - +for k-anon auction +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-for-k-anon-auction + +1 +generated bid +- for(key) method ecmascript @@ -3787,18 +4536,51 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.for 1 Symbol - -forEach(callbackfn, thisArg) +forDebuggingOnly +attribute +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingandscoringscriptrunnerglobalscope-fordebuggingonly +1 +1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +- +forDebuggingOnlyInCooldownOrLockout +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-fordebuggingonlyincooldownorlockout +1 +1 +BiddingBrowserSignals +- +forDebuggingOnlyInCooldownOrLockout +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-fordebuggingonlyincooldownorlockout +1 +1 +ScoringBrowserSignals +- +forEach(callback, thisArg) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.foreach +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.foreach 1 1 %TypedArray% - -forEach(callbackfn, thisArg) +forEach(callback, thisArg) method ecmascript ecmascript @@ -3809,7 +4591,7 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.f 1 Array - -forEach(callbackfn, thisArg) +forEach(callback, thisArg) method ecmascript ecmascript @@ -3820,7 +4602,7 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.forea 1 Map - -forEach(callbackfn, thisArg) +forEach(callback, thisArg) method ecmascript ecmascript @@ -4038,17 +4820,6 @@ Element/toggleAttribute(qualifiedName, force) Element/toggleAttribute(qualifiedName) - force -value -css-overflow-4 -css-overflow -4 -current -https://drafts.csswg.org/css-overflow-4/#valdef-scrollbar-gutter-force -1 - -scrollbar-gutter -- -force attribute touch-events touch-events @@ -4498,6 +5269,17 @@ https://www.w3.org/TR/mediaqueries-5/#descdef-media-forced-colors 1 @media - +forcedStyleAndLayoutDuration +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-forcedstyleandlayoutduration +1 +1 +PerformanceScriptTiming +- forcepinchange dfn fido-v2.1 @@ -4517,6 +5299,27 @@ html current https://html.spec.whatwg.org/multipage/server-sent-events.html#concept-eventsource-forcibly-close +1 +- +fordebuggingonly +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingandscoringscriptrunnerglobalscope-fordebuggingonly + +1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +- +fordebuggingonly reports +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#fordebuggingonly-reports + 1 - foreign content document @@ -4609,6 +5412,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-forestgreen 1 1 <color> +<named-color> - forestgreen dfn @@ -4630,6 +5434,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-forestgreen 1 1 <color> +<named-color> - forget the media element's media-resource-specific tracks dfn @@ -4826,16 +5631,18 @@ https://www.w3.org/TR/credential-management-1/#dom-passwordcredential-passwordcr 1 1 PasswordCredential/PasswordCredential(form) +PasswordCredential/constructor(form) - form -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-form - 1 +1 +mo - form argument @@ -4942,6 +5749,17 @@ https://html.spec.whatwg.org/multipage/forms.html#form-associated-element 1 - +form-factors +dfn +ua-client-hints +ua-client-hints +1 +current +https://wicg.github.io/ua-client-hints/#user-agent-form-factors +1 +1 +user agent +- formAction attribute html @@ -4967,22 +5785,22 @@ FormDataEvent - formData attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-formdata +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-formdata 1 1 NavigateEvent - formData dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-formdata +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-formdata 1 1 NavigateEventInit @@ -5010,6 +5828,17 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-fs-f HTMLButtonElement HTMLInputElement - +formFactors +dict-member +ua-client-hints +ua-client-hints +1 +current +https://wicg.github.io/ua-client-hints/#dom-uadatavalues-formfactors +1 +1 +UADataValues +- formMethod attribute html @@ -5119,6 +5948,52 @@ https://www.w3.org/Consortium/Process/#formally-addressed 1 - format +dfn +compression +compression +1 +current +https://compression.spec.whatwg.org/#compressionstream-format + +1 +CompressionStream +- +format +dfn +compression +compression +1 +current +https://compression.spec.whatwg.org/#decompressionstream-format + +1 +DecompressionStream +- +format +argument +compression +compression +1 +current +https://compression.spec.whatwg.org/#dom-compressionstream-compressionstream-format-format +1 +1 +CompressionStream/CompressionStream(format) +CompressionStream/constructor(format) +- +format +argument +compression +compression +1 +current +https://compression.spec.whatwg.org/#dom-decompressionstream-decompressionstream-format-format +1 +1 +DecompressionStream/DecompressionStream(format) +DecompressionStream/constructor(format) +- +format dict-member webgpu webgpu @@ -5207,6 +6082,61 @@ https://gpuweb.github.io/gpuweb/#dom-gpuvertexattribute-format GPUVertexAttribute - format +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#brotli-patch-format + +1 +Brotli patch +- +format +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-format + +1 +Format 1 Patch Map +- +format +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-format + +1 +Format 2 Patch Map +- +format +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-keyed-patch-format + +1 +Glyph keyed patch +- +format +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#per-table-brotli-patch-format + +1 +Per table brotli patch +- +format attribute webcodecs webcodecs @@ -5263,6 +6193,17 @@ VideoFrameBufferInit - format dict-member +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoframecopytooptions-format +1 +1 +VideoFrameCopyToOptions +- +format +dict-member webcodecs-aac-codec-registration webcodecs-aac-codec-registration 1 @@ -5306,61 +6247,70 @@ https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusencoderconf OpusEncoderConfig - format -dfn -compression -compression +dict-member +shape-detection-api +shape-detection-api 1 current -https://wicg.github.io/compression/#compressionstream-format - +https://wicg.github.io/shape-detection-api/#dom-detectedbarcode-format 1 -CompressionStream +1 +DetectedBarcode - format dfn -compression -compression +ift +ift 1 -current -https://wicg.github.io/compression/#decompressionstream-format +snapshot +https://www.w3.org/TR/IFT/#brotli-patch-format 1 -DecompressionStream +Brotli patch - format -argument -compression -compression -1 -current -https://wicg.github.io/compression/#dom-compressionstream-compressionstream-format-format +dfn +ift +ift 1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-format + 1 -CompressionStream/CompressionStream(format) -CompressionStream/constructor(format) +Format 1 Patch Map - format -argument -compression -compression -1 -current -https://wicg.github.io/compression/#dom-decompressionstream-decompressionstream-format-format +dfn +ift +ift 1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-format + 1 -DecompressionStream/DecompressionStream(format) -DecompressionStream/constructor(format) +Format 2 Patch Map - format -dict-member -shape-detection-api -shape-detection-api +dfn +ift +ift 1 -current -https://wicg.github.io/shape-detection-api/#dom-detectedbarcode-format +snapshot +https://www.w3.org/TR/IFT/#glyph-keyed-patch-format + 1 +Glyph keyed patch +- +format +dfn +ift +ift 1 -DetectedBarcode +snapshot +https://www.w3.org/TR/IFT/#per-table-brotli-patch-format + +1 +Per table brotli patch - format dict-member @@ -5463,6 +6413,17 @@ VideoFrameBufferInit - format dict-member +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoframecopytooptions-format +1 +1 +VideoFrameCopyToOptions +- +format +dict-member webgpu webgpu 1 @@ -5549,6 +6510,80 @@ https://www.w3.org/TR/webgpu/#dom-gpuvertexattribute-format 1 GPUVertexAttribute - +format 1 patch map +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map + +1 +- +format 1 patch map +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map + +1 +- +format 2 patch map +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map + +1 +- +format 2 patch map +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map + +1 +- +formatflags +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry-formatflags + +1 +Mapping Entry +- +formatflags +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-formatflags + +1 +Mapping Entry +- +formats +argument +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#dom-clipboard-read-formats-formats +1 +1 +Clipboard/read(formats) +Clipboard/read() +- formats dict-member shape-detection-api @@ -5598,6 +6633,26 @@ css current https://drafts.csswg.org/css2/#formatting-context +1 +- +formatting context +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x32 +1 +1 +- +formatting context +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x32 +1 1 - formatting context @@ -5619,6 +6674,26 @@ current https://drafts.csswg.org/css2/#formatting-structure +- +formatting structure +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/intro.html#formatting-structure +1 +1 +- +formatting structure +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/intro.html#formatting-structure +1 +1 - formdata event @@ -5633,14 +6708,24 @@ HTMLElement - formdataentrylist dfn -navigation-api -navigation-api +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-form-data-entry-list +1 +1 +navigate +- +formdataentrylist +dfn +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-formdataentrylist +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-formdataentrylist 1 -fire a non-traversal navigate event - formenctype element-attr @@ -5754,24 +6839,13 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-forward 1 History - -forward() -method -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigation-forward -1 -1 -Navigation -- forward(options) method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-forward +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-forward 1 1 Navigation @@ -5784,6 +6858,26 @@ css current https://drafts.csswg.org/css2/#forward-compatible-parsing +1 +- +forward-compatible parsing +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x0 +1 +1 +- +forward-compatible parsing +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x0 +1 1 - forwardX @@ -5897,6 +6991,29 @@ https://drafts.csswg.org/css-animations-1/#valdef-animation-fill-mode-forwards animation-fill-mode - forwards +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-fillmode-forwards +1 +1 +FillMode +PlaybackDirection +- +forwards +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#fill-mode-forwards + +1 +fill mode +- +forwards dfn selection-api selection-api diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fr.data b/bikeshed/spec-data/readonly/anchors/anchors-fr.data index 3b05e790a7..0f6c46a74c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fr.data @@ -125,6 +125,26 @@ https://drafts.csswg.org/css-values-4/#frequency-value 1 - <frequency> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#value-def-frequency +1 +1 +- +<frequency> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#value-def-frequency +1 +1 +- +<frequency> type css-values-3 css-values @@ -258,6 +278,16 @@ https://www.w3.org/TR/service-workers/#enumdef-frametype 1 1 - +FromPropertyDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-frompropertydescriptor +1 +1 +- FromPropertyDescriptor(Desc) abstract-op ecmascript @@ -534,17 +564,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fractionlost -1 - -RTCInboundRtpStreamStats -- -fractionLost -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcremoteinboundrtpstreamstats-fractionlost 1 1 @@ -556,17 +575,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-fractionlost -1 - -RTCInboundRtpStreamStats -- -fractionLost -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcremoteinboundrtpstreamstats-fractionlost 1 1 @@ -911,11 +919,11 @@ https://www.w3.org/TR/webgpu/#fragment - fragment box dfn -css-overflow-4 +css-overflow-5 css-overflow -4 +5 current -https://drafts.csswg.org/css-overflow-4/#fragment-box +https://drafts.csswg.org/css-overflow-5/#fragment-box 1 - @@ -938,6 +946,26 @@ current https://html.spec.whatwg.org/multipage/parsing.html#fragment-case +- +fragment coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#fragment-coordinates + +1 +- +fragment coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#fragment-coordinates + +1 - fragment directive dfn @@ -968,6 +996,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-fragment-identifier +- +fragment identifier +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-fragment-identifier + + - fragment identifiers dfn @@ -979,14 +1017,24 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-fragment-identifier - -fragment parsing algorithm +fragment identifiers dfn -dom-parsing -dom-parsing +rdf12-concepts +rdf-concepts 1 -current -https://w3c.github.io/DOM-Parsing/#dfn-fragment-parsing-algorithm +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-fragment-identifier + +- +fragment parsing algorithm steps +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#fragment-parsing-algorithm-steps +1 1 - fragment percent-encode set @@ -1009,14 +1057,14 @@ https://www.w3.org/TR/css-scoping-1/#fragment-pseudo-element 1 1 - -fragment serializing algorithm +fragment serializing algorithm steps dfn -dom-parsing -dom-parsing +html +html 1 current -https://w3c.github.io/DOM-Parsing/#dfn-fragment-serializing-algorithm - +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#fragment-serializing-algorithm-steps +1 1 - fragment shader stage @@ -1061,16 +1109,49 @@ https://wicg.github.io/scroll-to-text-fragment/#dom-document-fragmentdirective 1 Document - -fragment_id +fragment_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-fragment_attr + +1 +recursive descent syntax +- +fragment_attr dfn -ift -ift +wgsl +wgsl 1 current -https://w3c.github.io/IFT/Overview.html#patchrequest-fragment_id +https://gpuweb.github.io/gpuweb/wgsl/#syntax-fragment_attr 1 -PatchRequest +syntax +- +fragment_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-fragment_attr + +1 +recursive descent syntax +- +fragment_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-fragment_attr + +1 +syntax - fragmentainer dfn @@ -1424,11 +1505,11 @@ https://www.w3.org/TR/css-break-4/#fragmented-flow - fragments value -css-overflow-4 +css-overflow-5 css-overflow -4 +5 current -https://drafts.csswg.org/css-overflow-4/#valdef-continue-fragments +https://drafts.csswg.org/css-overflow-5/#valdef-continue-fragments 1 1 continue @@ -1511,6 +1592,28 @@ XRWebGLBinding/getSubImage(layer, frame, eye) XRWebGLBinding/getSubImage(layer, frame) - frame +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#xrplane-frame + +1 +XRPlane +- +frame +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#xrmesh-frame + +1 +XRMesh +- +frame argument webxr webxr @@ -1563,6 +1666,16 @@ current https://w3c.github.io/json-ld-framing/#dfn-frame +- +frame +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-frame + +1 - frame argument @@ -1630,11 +1743,11 @@ https://www.w3.org/TR/json-ld11-framing/#dfn-frame - frame dfn -longtasks-1 -longtasks -1 +png-3 +png +3 snapshot -https://www.w3.org/TR/longtasks-1/#frame +https://www.w3.org/TR/png-3/#dfn-frame 1 - @@ -1772,21 +1885,21 @@ https://html.spec.whatwg.org/multipage/rendering.html#frame-border-colour - frame buffer dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-frame-buffer +https://w3c.github.io/png/#dfn-frame-buffer 1 - -frame context +frame buffer dfn -longtasks-1 -longtasks -1 +png-3 +png +3 snapshot -https://www.w3.org/TR/longtasks-1/#frame-context +https://www.w3.org/TR/png-3/#dfn-frame-buffer 1 - @@ -1840,6 +1953,16 @@ css-animation-worklet current https://drafts.css-houdini.org/css-animationworklet-1/#frame-requested-flag +1 +- +frame timing info +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info +1 1 - frame type @@ -2170,17 +2293,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-frameheight -1 - -RTCMediaStreamTrackStats -- -frameHeight -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-frameheight 1 1 @@ -2203,17 +2315,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-frameheight -1 - -RTCMediaStreamTrackStats -- -frameHeight -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-frameheight 1 1 @@ -2445,17 +2546,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framewidth -1 - -RTCMediaStreamTrackStats -- -frameWidth -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-framewidth 1 1 @@ -2478,17 +2568,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framewidth -1 - -RTCMediaStreamTrackStats -- -frameWidth -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-framewidth 1 1 @@ -2547,6 +2626,46 @@ https://www.w3.org/TR/webxr/#dom-xrwebgllayer-framebuffer 1 XRWebGLLayer - +framebuffer coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#framebuffer-coordinates + +1 +- +framebuffer coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#framebuffer-coordinates + +1 +- +framebuffer memory +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#framebuffer-memory + +1 +- +framebuffer memory +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#framebuffer-memory + +1 +- framebufferHeight attribute webxr @@ -2717,16 +2836,6 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-framerate 1 VideoEncoderConfig - -framerate -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-framerate - -1 -- frameratechange event webxr @@ -2825,28 +2934,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-framesassembled 1 RTCInboundRtpStreamStats - -framesCaptured -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framescaptured -1 - -RTCMediaStreamTrackStats -- -framesCaptured -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framescaptured -1 - -RTCMediaStreamTrackStats -- framesDecoded dict-member webrtc-stats @@ -2863,34 +2950,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framesdecoded -1 - -RTCMediaStreamTrackStats -- -framesDecoded -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-framesdecoded 1 1 RTCInboundRtpStreamStats - -framesDecoded -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framesdecoded -1 - -RTCMediaStreamTrackStats -- framesDropped dict-member webrtc-stats @@ -2907,34 +2972,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framesdropped -1 - -RTCMediaStreamTrackStats -- -framesDropped -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-framesdropped 1 1 RTCInboundRtpStreamStats - -framesDropped -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framesdropped -1 - -RTCMediaStreamTrackStats -- framesEncoded dict-member webrtc-stats @@ -2974,17 +3017,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framespersecond -1 - -RTCMediaStreamTrackStats -- -framesPerSecond -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-framespersecond 1 1 @@ -3018,17 +3050,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framespersecond -1 - -RTCMediaStreamTrackStats -- -framesPerSecond -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-framespersecond 1 1 @@ -3061,34 +3082,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framesreceived -1 - -RTCMediaStreamTrackStats -- -framesReceived -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-framesreceived 1 1 RTCInboundRtpStreamStats - -framesReceived -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framesreceived -1 - -RTCMediaStreamTrackStats -- framesRendered dict-member webrtc-stats @@ -3117,17 +3116,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-framessent -1 - -RTCMediaStreamTrackStats -- -framesSent -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-framessent 1 1 @@ -3139,17 +3127,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-framessent -1 - -RTCMediaStreamTrackStats -- -framesSent -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-framessent 1 1 @@ -3186,6 +3163,26 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-iframe-framespacing 1 iframe - +framework +dfn +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dfn-framework +1 +1 +- +framework +dfn +user-timing +user-timing +1 +snapshot +https://www.w3.org/TR/user-timing/#dfn-framework +1 +1 +- framing dfn json-ld11-framing @@ -3438,17 +3435,6 @@ https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-frequency OscillatorOptions - frequency -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-frequency -1 -1 -CSSNumericBaseType -- -frequency dict-member css-typed-om-1 css-typed-om @@ -3681,39 +3667,61 @@ GeometryUtils/convertRectFromNode(rect, from, options) GeometryUtils/convertRectFromNode(rect, from) - from -element-attr -svg-animations -svg-animations +attribute +html +html 1 current -https://svgwg.org/specs/animations/#FromAttribute +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationactivation-from 1 1 -animate +NavigationActivation - from attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeevent-from +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationcurrententrychangeevent-from 1 1 NavigationCurrentEntryChangeEvent - from +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationcurrententrychangeeventinit-from +1 +1 +NavigationCurrentEntryChangeEventInit +- +from attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationtransition-from +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtransition-from 1 1 NavigationTransition - from +element-attr +svg-animations +svg-animations +1 +current +https://svgwg.org/specs/animations/#FromAttribute +1 +1 +animate +- +from argument cssom-view-1 cssom-view @@ -3761,16 +3769,26 @@ https://html.spec.whatwg.org/multipage/scripting.html#concept-script-external - from entry dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationtransition-from-entry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationtransition-from 1 -NavigationTransition - -from(items, mapfn, thisArg) +from(asyncIterable) +method +streams +streams +1 +current +https://streams.spec.whatwg.org/#rs-from +1 +1 +ReadableStream +- +from(items, mapper, thisArg) method ecmascript ecmascript @@ -3976,6 +3994,17 @@ String - fromElement() method +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dom-restrictiontarget-fromelement +1 +1 +RestrictionTarget +- +fromElement() +method mediacapture-region mediacapture-region 1 @@ -3998,6 +4027,17 @@ CropTarget - fromElement(element) method +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dom-restrictiontarget-fromelement +1 +1 +RestrictionTarget +- +fromElement(element) +method mediacapture-region mediacapture-region 1 @@ -4117,72 +4157,6 @@ https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-fromfloat64array 1 DOMMatrixReadOnly - -fromLiteral(templateStringsArray) -method -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#dom-trustedhtml-fromliteral -1 -1 -TrustedHTML -- -fromLiteral(templateStringsArray) -method -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#dom-trustedscript-fromliteral -1 -1 -TrustedScript -- -fromLiteral(templateStringsArray) -method -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#dom-trustedscripturl-fromliteral -1 -1 -TrustedScriptURL -- -fromLiteral(templateStringsArray) -method -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#dom-trustedhtml-fromliteral -1 -1 -TrustedHTML -- -fromLiteral(templateStringsArray) -method -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#dom-trustedscript-fromliteral -1 -1 -TrustedScript -- -fromLiteral(templateStringsArray) -method -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#dom-trustedscripturl-fromliteral -1 -1 -TrustedScriptURL -- fromMatrix() method geometry-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ft.data b/bikeshed/spec-data/readonly/anchors/anchors-ft.data deleted file mode 100644 index 0e2e1d960b..0000000000 --- a/bikeshed/spec-data/readonly/anchors/anchors-ft.data +++ /dev/null @@ -1,20 +0,0 @@ -ftpproxy -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-ftpproxy - -1 -- -ftpproxy -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-ftpproxy - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fu.data b/bikeshed/spec-data/readonly/anchors/anchors-fu.data index 8c0a98baa3..d49b7abf27 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-fu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-fu.data @@ -87,7 +87,7 @@ webvtt 1 current https://w3c.github.io/webvtt/#selectordef-future -1 + 1 - :future @@ -108,6 +108,46 @@ webvtt snapshot https://www.w3.org/TR/webvtt1/#future +1 +- +<function-dependency-list> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-function-dependency-list +1 +1 +- +<function-name> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-function-name +1 +1 +- +<function-parameter-list> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-function-parameter-list +1 +1 +- +<function-parameter> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-function-parameter +1 1 - <function-token> @@ -130,6 +170,26 @@ https://www.w3.org/TR/css-syntax-3/#typedef-function-token 1 1 - +@function +at-rule +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#at-ruledef-function +1 +1 +- +FulfillPromise +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-fulfillpromise +1 +1 +- FulfillPromise(promise, value) abstract-op ecmascript @@ -160,6 +220,26 @@ https://fullscreen.spec.whatwg.org/#dictdef-fullscreenoptions 1 1 - +Fully Expand a Font Subset +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-fully-expand-a-font-subset +1 +1 +- +Fully Expand a Font Subset +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-fully-expand-a-font-subset +1 +1 +- Function interface ecmascript @@ -191,6 +271,27 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function-p1-p2-pn 1 Function - +Function.prototype %Symbol.hasInstance% (V) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function.prototype-%25symbol.hasinstance%25 +1 +1 +Function.prototype [ %Symbol.hasInstance% ] ( V ) +- +FunctionDeclarationInstantiation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-functiondeclarationinstantiation +1 +1 +- FunctionDeclarationInstantiation(func, argumentsList) abstract-op ecmascript @@ -253,6 +354,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-fuchsia 1 1 <color> +<named-color> - fuchsia value @@ -285,6 +387,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-fuchsia 1 1 <color> +<named-color> - fulfill dfn @@ -394,6 +497,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#full-assignment +1 +- +full conformance +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-full-conformance + +1 +- +full conformance +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-full-conformance + 1 - full glyph cell @@ -414,6 +537,26 @@ svg snapshot https://www.w3.org/TR/SVG2/coords.html#TermFullGlyphCell 1 +1 +- +full invalidation +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#full-invalidation + +1 +- +full invalidation +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#full-invalidation + 1 - full name @@ -516,17 +659,27 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#full-wildcard-regexp-value +https://urlpattern.spec.whatwg.org/#full-wildcard-regexp-value 1 - full-range image dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-full-range-image +https://w3c.github.io/png/#dfn-full-range-image + +1 +- +full-range image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-full-range-image 1 - @@ -774,7 +927,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-type-full-wildcard +https://urlpattern.spec.whatwg.org/#part-type-full-wildcard 1 part/type @@ -857,15 +1010,15 @@ https://wicg.github.io/ua-client-hints/#dom-uadatavalues-fullversionlist UADataValues - fullscreen -dfn +value mediaqueries-5 mediaqueries 5 current -https://drafts.csswg.org/mediaqueries-5/#display-mode-fullscreen +https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-fullscreen 1 1 -display mode +@media/display-mode - fullscreen attribute @@ -880,6 +1033,17 @@ Document - fullscreen dfn +appmanifest +appmanifest +1 +current +https://w3c.github.io/manifest/#dfn-fullscreen +1 +1 +display mode +- +fullscreen +dfn miniapp-manifest miniapp-manifest 1 @@ -890,6 +1054,17 @@ https://w3c.github.io/miniapp-manifest/#dfn-fullscreen - fullscreen dfn +appmanifest +appmanifest +1 +snapshot +https://www.w3.org/TR/appmanifest/#dfn-fullscreen +1 +1 +display mode +- +fullscreen +dfn mediaqueries-5 mediaqueries 5 @@ -1054,6 +1229,26 @@ https://fullscreen.spec.whatwg.org/#eventdef-document-fullscreenerror 1 Document Element +- +fullwidth +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-fullwidth +1 + +- +fullwidth +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-fullwidth +1 + - fullwidth closing punctuation dfn @@ -1166,6 +1361,27 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active 1 Document - +fully active descendant of a top-level traversable with user attention +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#fully-active-descendant-of-a-top-level-traversable-with-user-attention +1 +1 +Document +- +fully addressed +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#fully-addressed + +1 +- fully clipped dfn css-scroll-anchoring-1 @@ -1280,11 +1496,21 @@ body - fully transparent black dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-fully-transparent-black +https://w3c.github.io/png/#dfn-fully-transparent-black + +1 +- +fully transparent black +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-fully-transparent-black 1 - @@ -1350,6 +1576,28 @@ https://www.w3.org/TR/WGSL/#syntax-func_call_statement 1 syntax - +func_call_statement.post.ident +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-func_call_statementpostident + +1 +recursive descent syntax +- +func_call_statement.post.ident +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-func_call_statementpostident + +1 +recursive descent syntax +- function dfn css-syntax-3 @@ -1507,6 +1755,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#function-declaration +1 +- +function dependency +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#function-dependency + 1 - function environment record @@ -1573,6 +1831,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#function 1 ECMAScript - +function parameter +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#function-parameter + +1 +- function scope dfn wgsl diff --git a/bikeshed/spec-data/readonly/anchors/anchors-fw.data b/bikeshed/spec-data/readonly/anchors/anchors-fw.data new file mode 100644 index 0000000000..c734b7039a --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-fw.data @@ -0,0 +1,10 @@ +fwd_distance +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#fwd_distance +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-g_.data b/bikeshed/spec-data/readonly/anchors/anchors-g_.data index f089352002..cbf0dcfeac 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-g_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-g_.data @@ -57,6 +57,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpucolordict-g GPUColorDict - g +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpucolor-g + +1 +GPUColor +- +g element svg2 svg @@ -109,14 +120,29 @@ https://www.w3.org/TR/css-color-5/#valdef-rgb-g rgb() - g -dfn -tracking-dnt -tracking-dnt +argument +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-g - +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb-r-g-b-alpha-g +1 +1 +CSSRGB/CSSRGB(r, g, b, alpha) +CSSRGB/constructor(r, g, b, alpha) +CSSRGB/CSSRGB(r, g, b) +CSSRGB/constructor(r, g, b) +- +g +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-g +1 1 +CSSRGB - g dict-member @@ -129,3 +155,14 @@ https://www.w3.org/TR/webgpu/#dom-gpucolordict-g 1 GPUColorDict - +g +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#gpucolor-g + +1 +GPUColor +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ga.data b/bikeshed/spec-data/readonly/anchors/anchors-ga.data index c434684661..5dfd2288d0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ga.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ga.data @@ -177,11 +177,21 @@ https://www.w3.org/TR/gamepad/#dom-gamepadbutton - GamepadEffectParameters dictionary -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadeffectparameters +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters +1 +1 +- +GamepadEffectParameters +dictionary +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters 1 1 - @@ -237,41 +247,61 @@ https://w3c.github.io/gamepad/extensions.html#dom-gamepadhand - GamepadHapticActuator interface -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator +https://w3c.github.io/gamepad/#dom-gamepadhapticactuator 1 1 - -GamepadHapticActuatorType +GamepadHapticActuator +interface +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticactuator +1 +1 +- +GamepadHapticEffectType enum -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuatortype +https://w3c.github.io/gamepad/#dom-gamepadhapticeffecttype 1 1 - GamepadHapticEffectType enum -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 -current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticeffecttype +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticeffecttype 1 1 - GamepadHapticsResult enum -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticsresult +https://w3c.github.io/gamepad/#dom-gamepadhapticsresult +1 +1 +- +GamepadHapticsResult +enum +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticsresult 1 1 - @@ -315,6 +345,16 @@ https://w3c.github.io/gamepad/extensions.html#dom-gamepadtouch 1 1 - +GatherAvailableAncestors +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-gather-available-ancestors +1 +1 +- GatherAvailableAncestors(module, execList) abstract-op ecmascript @@ -506,6 +546,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-gainsboro 1 1 <color> +<named-color> - gainsboro dfn @@ -527,6 +568,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-gainsboro 1 1 <color> +<named-color> - gamepad attribute @@ -682,6 +724,16 @@ gamepad snapshot https://www.w3.org/TR/gamepad/#dfn-gamepaddisconnected 1 +1 +- +gamepadhapticactuator +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator + 1 - gamma @@ -696,16 +748,6 @@ https://drafts.fxtf.org/filter-effects-1/#attr-valuedef-type-gamma type - gamma -dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#dfn-gamma - -1 -- -gamma attribute orientation-event orientation-event @@ -750,6 +792,16 @@ https://w3c.github.io/deviceorientation/#dom-deviceorientationeventinit-gamma DeviceOrientationEventInit - gamma +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-gamma + +1 +- +gamma attr-value filter-effects-1 filter-effects @@ -804,23 +856,53 @@ https://www.w3.org/TR/orientation-event/#dom-deviceorientationeventinit-gamma 1 DeviceOrientationEventInit - -gamma encoding +gamma dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-gamma + 1 +- +gamma encoding +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-gamma-encoding +https://w3c.github.io/png/#dfn-gamma-encoding 1 - -gamma value +gamma encoding dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-gamma-encoding + 1 +- +gamma value +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-gamma-value +https://w3c.github.io/png/#dfn-gamma-value + +1 +- +gamma value +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-gamma-value 1 - @@ -944,16 +1026,6 @@ resize-observer current https://drafts.csswg.org/resize-observer-1/#gather-active-resize-observations-at-depth -1 -- -gather cookie data -dfn -prefetch -prefetch -1 -current -https://wicg.github.io/nav-speculation/prefetch.html#gather-cookie-data - 1 - gather() @@ -967,6 +1039,50 @@ https://w3c.github.io/webrtc-ice/#dom-rtcicetransport-gather 1 RTCIceTransport - +gather(input, indices) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gather +1 +1 +MLGraphBuilder +- +gather(input, indices) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather +1 +1 +MLGraphBuilder +- +gather(input, indices, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gather +1 +1 +MLGraphBuilder +- +gather(input, indices, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather +1 +1 +MLGraphBuilder +- gather(options) method webrtc-ice @@ -1067,14 +1183,15 @@ https://w3c.github.io/webrtc-pc/#event-icetransport-gatheringstatechange RTCIceTransport - gatheringstatechange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-icetransport-gatheringstatechange +1 - +RTCIceTransport - gatt attribute diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gc.data b/bikeshed/spec-data/readonly/anchors/anchors-gc.data index 04cfc9a760..9c8a52cc40 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gc.data @@ -1,3 +1,23 @@ +<gcd/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_gcd + +1 +- +<gcd/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_gcd + +1 +- gc() method testutils diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ge.data b/bikeshed/spec-data/readonly/anchors/anchors-ge.data index ef066d111a..f1bed91374 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ge.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ge.data @@ -4,31 +4,9 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-geolocation +https://w3c.github.io/geolocation/#dfn-geolocation 1 -- -"geolocation" -enum-value -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensortype-geolocation -1 -1 -MockSensorType -- -"geolocation" -enum-value -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-geolocation -1 -1 -MockSensorType - "geolocation" permission @@ -70,6 +48,49 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-propertie 1 1 - +%GeneratorPrototype% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-generator-prototype +1 +1 +- +%GeneratorPrototype%.next(value) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.next +1 +1 +%GeneratorPrototype%.next ( value ) +- +%GeneratorPrototype%.return(value) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.return +1 +1 +%GeneratorPrototype%.return ( value ) +- +%GeneratorPrototype%.throw(exception) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.throw +1 +1 +%GeneratorPrototype%.throw ( exception ) +- <gender> type css-speech-1 @@ -94,6 +115,16 @@ voice-family - <general-enclosed> type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +1 +1 +- +<general-enclosed> +type mediaqueries-4 mediaqueries 4 @@ -132,13 +163,23 @@ https://www.w3.org/TR/mediaqueries-5/#typedef-general-enclosed 1 1 - +<generic-complete> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#typedef-generic-complete +1 +1 +- <generic-family> type css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#generic-family-value +https://drafts.csswg.org/css-fonts-4/#typedef-generic-family 1 1 - @@ -162,6 +203,26 @@ https://www.w3.org/TR/css-fonts-4/#generic-family-value 1 1 - +<generic-incomplete> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#typedef-generic-incomplete +1 +1 +- +<generic-script-specific> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#typedef-generic-script-specific +1 +1 +- <generic-voice> type css-speech-1 @@ -173,6 +234,26 @@ https://drafts.csswg.org/css-speech-1/#typedef-generic-voice 1 - <generic-voice> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#value-def-generic-voice +1 +1 +- +<generic-voice> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#value-def-generic-voice +1 +1 +- +<generic-voice> type css-speech-1 css-speech @@ -200,6 +281,26 @@ css-masking snapshot https://www.w3.org/TR/css-masking-1/#typedef-geometry-box 1 +1 +- +<geq/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_geq + +1 +- +<geq/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_geq + 1 - Generate a validation error @@ -292,6 +393,26 @@ https://w3c.github.io/webrtc-identity/#dom-generateassertioncallback 1 1 - +GenerateBidInterestGroup +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup +1 +1 +- +GenerateBidOutput +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-generatebidoutput +1 +1 +- GenerateTestReportParameters dictionary reporting-1 @@ -343,6 +464,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator 1 GeneratorFunction - +GeneratorResume +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorresume +1 +1 +- GeneratorResume(generator, value, generatorBrand) abstract-op ecmascript @@ -353,6 +484,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator 1 1 - +GeneratorResumeAbrupt +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorresumeabrupt +1 +1 +- GeneratorResumeAbrupt(generator, abruptCompletion, generatorBrand) abstract-op ecmascript @@ -363,6 +504,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator 1 1 - +GeneratorStart +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorstart +1 +1 +- GeneratorStart(generator, generatorBody) abstract-op ecmascript @@ -373,6 +524,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator 1 1 - +GeneratorValidate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorvalidate +1 +1 +- GeneratorValidate(generator, generatorBrand) abstract-op ecmascript @@ -383,7 +544,17 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator 1 1 - -GeneratorYield(iterNextObj) +GeneratorYield +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatoryield +1 +1 +- +GeneratorYield(iteratorResult) abstract-op ecmascript ecmascript @@ -409,7 +580,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation +https://w3c.github.io/geolocation/#dom-geolocation 1 1 - @@ -429,7 +600,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates +https://w3c.github.io/geolocation/#dom-geolocationcoordinates 1 1 - @@ -449,7 +620,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationposition +https://w3c.github.io/geolocation/#dom-geolocationposition 1 1 - @@ -469,7 +640,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationpositionerror +https://w3c.github.io/geolocation/#dom-geolocationpositionerror 1 1 - @@ -483,26 +654,6 @@ https://www.w3.org/TR/geolocation/#dom-geolocationpositionerror 1 1 - -GeolocationReadingValues -dictionary -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dictdef-geolocationreadingvalues -1 -1 -- -GeolocationReadingValues -dictionary -geolocation-sensor -geolocation-sensor -1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dictdef-geolocationreadingvalues -1 -1 -- GeolocationSensor interface geolocation-sensor @@ -647,6 +798,16 @@ https://www.w3.org/TR/cssom-view-1/#geometryutils 1 1 - +Get +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-get-o-p +1 +1 +- Get Trusted Type compliant string abstract-op trusted-types @@ -667,397 +828,932 @@ https://www.w3.org/TR/trusted-types/#abstract-opdef-get-trusted-type-compliant-s 1 1 - -Get(O, P) +Get Trusted Type data for attribute abstract-op -ecmascript -ecmascript +trusted-types +trusted-types 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-get-o-p +https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-get-trusted-type-data-for-attribute 1 1 - -GetActiveScriptOrModule() +Get Trusted Type data for attribute abstract-op -ecmascript -ecmascript +trusted-types +trusted-types 1 -current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getactivescriptormodule +snapshot +https://www.w3.org/TR/trusted-types/#abstract-opdef-get-trusted-type-data-for-attribute 1 1 - -GetAnimationsOptions -dictionary -web-animations-1 -web-animations +Get Trusted Type policy value +abstract-op +trusted-types +trusted-types 1 current -https://drafts.csswg.org/web-animations-1/#dictdef-getanimationsoptions +https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-get-trusted-type-policy-value 1 1 - -GetAnimationsOptions -dictionary -web-animations-1 -web-animations +Get Trusted Type policy value +abstract-op +trusted-types +trusted-types 1 snapshot -https://www.w3.org/TR/web-animations-1/#dictdef-getanimationsoptions +https://www.w3.org/TR/trusted-types/#abstract-opdef-get-trusted-type-policy-value 1 1 - -GetBindingValue(N, S) +Get feature value for origin abstract-op -ecmascript -ecmascript +permissions-policy-1 +permissions-policy 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-getbindingvalue-n-s +https://w3c.github.io/webappsec-permissions-policy/#get-feature-value-for-origin 1 1 -Environment Records - -GetExportedNames(exportStarSet) +Get feature value for origin abstract-op -ecmascript -ecmascript +permissions-policy-1 +permissions-policy 1 -current -https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-getexportednames +snapshot +https://www.w3.org/TR/permissions-policy-1/#get-feature-value-for-origin 1 1 -Module Records - -GetFunctionRealm(obj) +Get the reporting endpoint for a feature abstract-op -ecmascript -ecmascript +permissions-policy-1 +permissions-policy 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getfunctionrealm +https://w3c.github.io/webappsec-permissions-policy/#get-reporting-endpoint 1 1 - -GetGeneratorKind() +Get the reporting endpoint for a feature abstract-op -ecmascript -ecmascript +permissions-policy-1 +permissions-policy 1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-getgeneratorkind +snapshot +https://www.w3.org/TR/permissions-policy-1/#get-reporting-endpoint 1 1 - -GetGlobalObject() +Get(O, P) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getglobalobject +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-get-o-p 1 1 - -GetIdentifierReference(env, name, strict) +GetActiveScriptOrModule abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getidentifierreference +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getactivescriptormodule +1 +1 +- +GetActiveScriptOrModule() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getactivescriptormodule +1 +1 +- +GetAnimationsOptions +dictionary +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dictdef-getanimationsoptions +1 +1 +- +GetAnimationsOptions +dictionary +web-animations-1 +web-animations +1 +snapshot +https://www.w3.org/TR/web-animations-1/#dictdef-getanimationsoptions +1 +1 +- +GetArrayBufferMaxByteLengthOption +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getarraybuffermaxbytelengthoption +1 +1 +- +GetArrayBufferMaxByteLengthOption(options) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getarraybuffermaxbytelengthoption +1 +1 +- +GetBindingValue(N, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-getbindingvalue-n-s +1 +1 +Declarative Environment Records +- +GetBindingValue(N, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-getbindingvalue-n-s +1 +1 +Global Environment Records +- +GetBindingValue(N, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-module-environment-records-getbindingvalue-n-s +1 +1 +Module Environment Records +- +GetBindingValue(N, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-getbindingvalue-n-s +1 +1 +Object Environment Records +- +GetExportedNames(exportStarSet) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-getexportednames +1 +1 +Source Text Module Records +- +GetFunctionRealm +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getfunctionrealm +1 +1 +- +GetFunctionRealm(obj) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getfunctionrealm +1 +1 +- +GetGeneratorKind +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-getgeneratorkind +1 +1 +- +GetGeneratorKind() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-getgeneratorkind +1 +1 +- +GetGlobalObject +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getglobalobject +1 +1 +- +GetGlobalObject() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getglobalobject +1 +1 +- +GetHTMLOptions +dictionary +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#gethtmloptions +1 +1 +- +GetIdentifierReference +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getidentifierreference +1 +1 +- +GetIdentifierReference(env, name, strict) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getidentifierreference +1 +1 +- +GetImportedModule +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-GetImportedModule +1 +1 +- +GetImportedModule(referrer, specifier) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-GetImportedModule +1 +1 +- +GetIterator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiterator +1 +1 +- +GetIterator(obj, kind) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiterator +1 +1 +- +GetIteratorFromMethod +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiteratorfrommethod +1 +1 +- +GetIteratorFromMethod(obj, method) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiteratorfrommethod +1 +1 +- +GetMatchIndexPair +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-getmatchindexpair +1 +1 +- +GetMatchIndexPair(S, match) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-getmatchindexpair +1 +1 +- +GetMatchString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-getmatchstring +1 +1 +- +GetMatchString(S, match) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-getmatchstring +1 +1 +- +GetMethod +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getmethod +1 +1 +- +GetMethod(V, P) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getmethod +1 +1 +- +GetModifySetValueInBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getmodifysetvalueinbuffer +1 +1 +- +GetModifySetValueInBuffer(arrayBuffer, byteIndex, type, value, op) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getmodifysetvalueinbuffer +1 +1 +- +GetModuleNamespace +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-getmodulenamespace +1 +1 +- +GetModuleNamespace(module) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-getmodulenamespace +1 +1 +- +GetNamedTimeZoneEpochNanoseconds +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneepochnanoseconds +1 +1 +- +GetNamedTimeZoneEpochNanoseconds(timeZoneIdentifier, year, month, day, hour, minute, second, millisecond, microsecond, nanosecond) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneepochnanoseconds +1 +1 +- +GetNamedTimeZoneOffsetNanoseconds +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneoffsetnanoseconds +1 +1 +- +GetNamedTimeZoneOffsetNanoseconds(timeZoneIdentifier, epochNanoseconds) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneoffsetnanoseconds +1 +1 +- +GetNewTarget +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getnewtarget +1 +1 +- +GetNewTarget() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getnewtarget +1 +1 +- +GetNotificationOptions +dictionary +notifications +notifications +1 +current +https://notifications.spec.whatwg.org/#dictdef-getnotificationoptions +1 +1 +- +GetOwnPropertyKeys +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-getownpropertykeys +1 +1 +- +GetOwnPropertyKeys(O, type) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-getownpropertykeys +1 +1 +- +GetPromiseResolve +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-getpromiseresolve +1 +1 +- +GetPromiseResolve(promiseConstructor) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-getpromiseresolve +1 +1 +- +GetPrototypeFromConstructor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-getprototypefromconstructor +1 +1 +- +GetPrototypeFromConstructor(constructor, intrinsicDefaultProto) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-getprototypefromconstructor +1 +1 +- +GetRawBytesFromSharedBlock +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getrawbytesfromsharedblock +1 +1 +- +GetRawBytesFromSharedBlock(block, byteIndex, type, isTypedArray, order) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getrawbytesfromsharedblock +1 +1 +- +GetRootNodeOptions +dictionary +dom +dom +1 +current +https://dom.spec.whatwg.org/#dictdef-getrootnodeoptions 1 1 - -GetImportedModule(referrer, specifier) +GetSVGDocument +interface +svg2 +svg +2 +current +https://svgwg.org/svg2-draft/struct.html#InterfaceGetSVGDocument +1 +1 +- +GetSVGDocument +interface +svg2 +svg +2 +snapshot +https://www.w3.org/TR/SVG2/struct.html#InterfaceGetSVGDocument +1 +1 +- +GetSetRecord abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-GetImportedModule +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-getsetrecord 1 1 - -GetIterator(obj, hint, method) +GetSetRecord(obj) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiterator +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-getsetrecord 1 1 - -GetMatchIndexPair(S, match) +GetStringIndex abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-getmatchindexpair +https://tc39.es/ecma262/multipage/text-processing.html#sec-getstringindex 1 1 - -GetMatchString(S, match) +GetStringIndex(S, codePointIndex) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-getmatchstring +https://tc39.es/ecma262/multipage/text-processing.html#sec-getstringindex 1 1 - -GetMethod(V, P) +GetSubstitution abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getmethod +https://tc39.es/ecma262/multipage/text-processing.html#sec-getsubstitution 1 1 - -GetModifySetValueInBuffer(arrayBuffer, byteIndex, type, value, op, isLittleEndian) +GetSubstitution(matched, str, position, captures, namedCaptures, replacementTemplate) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-getmodifysetvalueinbuffer +https://tc39.es/ecma262/multipage/text-processing.html#sec-getsubstitution 1 1 - -GetModuleNamespace(module) +GetSuperBase() abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-getmodulenamespace +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getsuperbase 1 1 +Function Environment Records - -GetNamedTimeZoneEpochNanoseconds(timeZoneIdentifier, year, month, day, hour, minute, second, millisecond, microsecond, nanosecond) +GetSuperConstructor abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneepochnanoseconds +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-getsuperconstructor 1 1 - -GetNamedTimeZoneOffsetNanoseconds(timeZoneIdentifier, epochNanoseconds) +GetSuperConstructor() abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneoffsetnanoseconds +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-getsuperconstructor 1 1 - -GetNewTarget() +GetTemplateObject abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getnewtarget +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-gettemplateobject 1 1 - -GetNotificationOptions -dictionary -notifications -notifications +GetTemplateObject(templateLiteral) +abstract-op +ecmascript +ecmascript 1 current -https://notifications.spec.whatwg.org/#dictdef-getnotificationoptions +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-gettemplateobject 1 1 - -GetOwnPropertyKeys(O, type) +GetThisBinding() abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-getownpropertykeys +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-function-environment-records-getthisbinding 1 1 +Function Environment Records - -GetPromiseResolve(promiseConstructor) +GetThisBinding() abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-getpromiseresolve +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-getthisbinding 1 1 +Global Environment Records - -GetPrototypeFromConstructor(constructor, intrinsicDefaultProto) +GetThisBinding() abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-getprototypefromconstructor +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-module-environment-records-getthisbinding 1 1 +Module Environment Records - -GetRootNodeOptions -dictionary -dom -dom +GetThisEnvironment +abstract-op +ecmascript +ecmascript 1 current -https://dom.spec.whatwg.org/#dictdef-getrootnodeoptions +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getthisenvironment 1 1 - -GetSVGDocument -interface -svg2 -svg -2 +GetThisEnvironment() +abstract-op +ecmascript +ecmascript +1 current -https://svgwg.org/svg2-draft/struct.html#InterfaceGetSVGDocument +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getthisenvironment 1 1 - -GetSVGDocument -interface -svg2 -svg -2 -snapshot -https://www.w3.org/TR/SVG2/struct.html#InterfaceGetSVGDocument +GetThisValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-getthisvalue 1 1 - -GetStringIndex(S, codePointIndex) +GetThisValue(V) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-getstringindex +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-getthisvalue 1 1 - -GetSubstitution(matched, str, position, captures, namedCaptures, replacementTemplate) +GetUTCEpochNanoseconds abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-getsubstitution +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getutcepochnanoseconds 1 1 - -GetSuperBase() +GetUTCEpochNanoseconds(year, month, day, hour, minute, second, millisecond, microsecond, nanosecond) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getsuperbase +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getutcepochnanoseconds 1 1 -Function Environment Records - -GetSuperConstructor() +GetV abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-getsuperconstructor +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getv 1 1 - -GetTemplateObject(templateLiteral) +GetV(V, P) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-gettemplateobject +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getv 1 1 - -GetThisBinding() +GetValue abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-function-environment-records-getthisbinding +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-getvalue 1 1 -Module Environment Records - -GetThisEnvironment() +GetValue(V) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-getthisenvironment +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-getvalue 1 1 - -GetThisValue(V) +GetValueFromBuffer abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-getthisvalue +https://tc39.es/ecma262/multipage/structured-data.html#sec-getvaluefrombuffer 1 1 - -GetUTCEpochNanoseconds(year, month, day, hour, minute, second, millisecond, microsecond, nanosecond) +GetValueFromBuffer(arrayBuffer, byteIndex, type, isTypedArray, order, isLittleEndian) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getutcepochnanoseconds +https://tc39.es/ecma262/multipage/structured-data.html#sec-getvaluefrombuffer 1 1 - -GetV(V, P) +GetViewByteLength abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getv +https://tc39.es/ecma262/multipage/structured-data.html#sec-getviewbytelength 1 1 - -GetValue(V) +GetViewByteLength(viewRecord) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-getvalue +https://tc39.es/ecma262/multipage/structured-data.html#sec-getviewbytelength 1 1 - -GetValueFromBuffer(arrayBuffer, byteIndex, type, isTypedArray, order, isLittleEndian) +GetViewValue abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-getvaluefrombuffer +https://tc39.es/ecma262/multipage/structured-data.html#sec-getviewvalue 1 1 - @@ -1071,6 +1767,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-getviewvalue 1 1 - +GetWaiterList +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-getwaiterlist +1 +1 +- GetWaiterList(block, i) abstract-op ecmascript @@ -1125,6 +1831,17 @@ https://drafts.csswg.org/css-animations-1/#dom-csskeyframesrule-__getter__ 1 CSSKeyframesRule - +__getter__(index) +method +css-animations-1 +css-animations +1 +snapshot +https://www.w3.org/TR/css-animations-1/#dom-csskeyframesrule-__getter__ +1 +1 +CSSKeyframesRule +- geckoversion dfn compat @@ -1135,6 +1852,50 @@ https://compat.spec.whatwg.org/#geckoversion 1 - +gelu(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gelu +1 +1 +MLGraphBuilder +- +gelu(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gelu +1 +1 +MLGraphBuilder +- +gelu(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gelu +1 +1 +MLGraphBuilder +- +gelu(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gelu +1 +1 +MLGraphBuilder +- gemm(a, b) method webnn @@ -1188,6 +1949,26 @@ current https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-gender-identity 1 +- +general category +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-general-category + + +- +general category +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-general-category + + - general discovery procedure dfn @@ -1198,6 +1979,26 @@ current https://webbluetoothcg.github.io/web-bluetooth/#general-discovery-procedure 1 +- +general json-ld processing +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-general-json-ld-processing + + +- +general json-ld processing +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-general-json-ld-processing + + - generalized rdf (rdfs) closure dfn @@ -1208,14 +2009,44 @@ current https://w3c.github.io/rdf-semantics/spec/#dfn-generalized-rdf-rdfs-closure +- +generalized rdf (rdfs) closure +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-generalized-rdf-rdfs-closure + + +- +generalized rdf dataset +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-dataset +1 + - generalized rdf dataset dfn rdf12-concepts rdf-concepts 1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-generalized-rdf-dataset +1 + +- +generalized rdf graph +dfn +rdf12-concepts +rdf-concepts +1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-dataset +https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-graph 1 - @@ -1224,8 +2055,8 @@ dfn rdf12-concepts rdf-concepts 1 -current -https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-graph +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-generalized-rdf-graph 1 - @@ -1238,6 +2069,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-triple 1 +- +generalized rdf triple +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-generalized-rdf-triple +1 + - generate a change password url dfn @@ -1337,6 +2178,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#generate-a-key +1 +- +generate a network report +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#generate-a-network-report +1 1 - generate a new blob url @@ -1365,7 +2216,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#generate-a-pattern-string +https://urlpattern.spec.whatwg.org/#generate-a-pattern-string 1 1 - @@ -1395,7 +2246,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#generate-a-regular-expression-and-name-list +https://urlpattern.spec.whatwg.org/#generate-a-regular-expression-and-name-list 1 1 - @@ -1435,7 +2286,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#generate-a-segment-wildcard-regexp +https://urlpattern.spec.whatwg.org/#generate-a-segment-wildcard-regexp 1 - @@ -1467,6 +2318,16 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#abstract-opdef-generate-a-validation-error 1 +1 +- +generate a verbose debug report url +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#generate-a-verbose-debug-report-url + 1 - generate all implied end tags thoroughly @@ -1479,13 +2340,13 @@ https://html.spec.whatwg.org/multipage/parsing.html#generate-all-implied-end-tag 1 - -generate an attribution debug report url +generate an aggregatable debug report url dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#generate-an-attribution-debug-report-url +https://wicg.github.io/attribution-reporting-api/#generate-an-aggregatable-debug-report-url 1 - @@ -1507,6 +2368,26 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#generate-an-attribution-report-url +1 +- +generate an id +dfn +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dfn-generate-an-id +1 +1 +- +generate an id +dfn +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dfn-generate-an-id +1 1 - generate an internal error @@ -1569,13 +2450,13 @@ https://www.w3.org/TR/reporting-1/#generate-and-queue-a-report 1 1 - -generate attribution report headers +generate and score bids dfn -attribution-reporting-api -attribution-reporting-api +turtledove +turtledove 1 current -https://wicg.github.io/attribution-reporting-api/#generate-attribution-report-headers +https://wicg.github.io/turtledove/#generate-and-score-bids 1 - @@ -1610,22 +2491,52 @@ https://html.spec.whatwg.org/multipage/parsing.html#generate-implied-end-tags 1 - generate key frame algorithm -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#generate-key-frame-algorithm - +https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-generate-key-frame-algorithm +1 1 - generate key frame algorithm -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#generate-key-frame-algorithm +https://www.w3.org/TR/webrtc-encoded-transform/#abstract-opdef-generate-key-frame-algorithm +1 +1 +- +generate masked tokens +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#generate-masked-tokens + +1 +- +generate null attribution reports +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#generate-null-attribution-reports + +1 +- +generate potentially multiple bids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generate-potentially-multiple-bids 1 - @@ -1649,6 +2560,37 @@ https://www.w3.org/TR/reporting-1/#generate-test-report 1 1 - +generate the internal representation +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-processing-algorithm + +1 +- +generate the internal representation +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-processing-algorithm + +1 +- +generate-bid +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#worklet-function-generate-bid + +1 +worklet function +- generateAssertion dict-member webrtc-identity @@ -1776,6 +2718,17 @@ webrtc-encoded-transform webrtc-encoded-transform 1 current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-generatekeyframe +1 +1 +RTCRtpScriptTransform +- +generateKeyFrame(rid) +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +current https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-generatekeyframe 1 1 @@ -1787,6 +2740,17 @@ webrtc-encoded-transform webrtc-encoded-transform 1 snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransform-generatekeyframe +1 +1 +RTCRtpScriptTransform +- +generateKeyFrame(rid) +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-generatekeyframe 1 1 @@ -1816,26 +2780,48 @@ RTCRtpSender - generateRequest() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-generaterequest 1 1 MediaKeySession - -generateRequest(initDataType, initData) +generateRequest() method +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-generaterequest 1 +1 +MediaKeySession +- +generateRequest(initDataType, initData) +method +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-generaterequest 1 1 MediaKeySession - +generateRequest(initDataType, initData) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-generaterequest +1 +1 +MediaKeySession +- generateassertion dfn webrtc-identity @@ -1875,6 +2861,26 @@ css-page snapshot https://www.w3.org/TR/css-page-3/#generated +1 +- +generated bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid + +1 +- +generated code +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#generated-code + 1 - generated content @@ -1885,6 +2891,26 @@ css current https://drafts.csswg.org/css2/#generated-content +1 +- +generated content +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x0 +1 +1 +- +generated content +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x0 +1 1 - generated namespace prefix index @@ -1904,38 +2930,26 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-generateKey -1 -1 -- -generaterequest -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-generaterequest 1 -mediakeysession - -generaterequest() +generates an anonymous <mrow> box dfn -encrypted-media -encrypted-media +mathml-core +mathml-core 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-generaterequest +current +https://w3c.github.io/mathml-core/#dfn-generates-an-anonymous-mrow-box 1 -mediakeysession - generates an anonymous <mrow> box dfn mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-generates-an-anonymous-mrow-box +snapshot +https://www.w3.org/TR/mathml-core/#dfn-generates-an-anonymous-mrow-box 1 - @@ -1997,6 +3011,16 @@ webauthn current https://w3c.github.io/webauthn/#generating-authenticator +1 +- +generating authenticator +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#generating-authenticator + 1 - generation @@ -2061,17 +3085,6 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#ta 1 Generator Execution Contexts - -generator prototype object -dfn -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-generator-prototype -1 -1 -ECMAScript -- generator-unable-to-provide-required-alt dfn html @@ -2097,50 +3110,122 @@ dfn console console 1 -current -https://console.spec.whatwg.org/#generic-javascript-object-formatting - +current +https://console.spec.whatwg.org/#generic-javascript-object-formatting + +1 +- +generic raw text element parsing algorithm +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/parsing.html#generic-raw-text-element-parsing-algorithm + +1 +- +generic rcdata element parsing algorithm +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/parsing.html#generic-rcdata-element-parsing-algorithm + +1 +- +generic sensor permission revocation algorithm +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#generic-sensor-permission-revocation-algorithm +1 +1 +- +generic sensor permission revocation algorithm +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#generic-sensor-permission-revocation-algorithm +1 +1 +- +generic(fangsong) +value +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-fangsong +1 +1 +font-family +<generic-family> +- +generic(fangsong) +value +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#valdef-font-family-generic-fangsong +1 1 +font-family +<generic-family> - -generic raw text element parsing algorithm -dfn -html -html -1 +generic(kai) +value +css-fonts-4 +css-fonts +4 current -https://html.spec.whatwg.org/multipage/parsing.html#generic-raw-text-element-parsing-algorithm - +https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-kai 1 +1 +font-family +<generic-family> - -generic rcdata element parsing algorithm -dfn -html -html +generic(kai) +value +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#valdef-font-family-generic-kai 1 -current -https://html.spec.whatwg.org/multipage/parsing.html#generic-rcdata-element-parsing-algorithm - 1 +font-family +<generic-family> - -generic sensor permission revocation algorithm -dfn -generic-sensor -generic-sensor -1 +generic(nastaliq) +value +css-fonts-4 +css-fonts +4 current -https://w3c.github.io/sensors/#generic-sensor-permission-revocation-algorithm +https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-nastaliq 1 1 +font-family +<generic-family> - -generic sensor permission revocation algorithm -dfn -generic-sensor -generic-sensor -1 +generic(nastaliq) +value +css-fonts-4 +css-fonts +4 snapshot -https://www.w3.org/TR/generic-sensor/#generic-sensor-permission-revocation-algorithm +https://www.w3.org/TR/css-fonts-4/#valdef-font-family-generic-nastaliq 1 1 +font-family +<generic-family> - geo dfn @@ -2163,17 +3248,6 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vevent-geo 1 - geolocation -attribute -geolocation -geolocation -1 -current -https://w3c.github.io/geolocation-api/#dom-navigator-geolocation -1 -1 -Navigator -- -geolocation dfn geolocation-sensor geolocation-sensor @@ -2184,6 +3258,17 @@ https://w3c.github.io/geolocation-sensor/#geolocation 1 - geolocation +attribute +geolocation +geolocation +1 +current +https://w3c.github.io/geolocation/#dom-navigator-geolocation +1 +1 +Navigator +- +geolocation dfn geolocation-sensor geolocation-sensor @@ -2204,6 +3289,26 @@ https://www.w3.org/TR/geolocation/#dom-navigator-geolocation 1 Navigator - +geolocation reading parsing algorithm +dfn +geolocation-sensor +geolocation-sensor +1 +current +https://w3c.github.io/geolocation-sensor/#geolocation-reading-parsing-algorithm + +1 +- +geolocation reading parsing algorithm +dfn +geolocation-sensor +geolocation-sensor +1 +snapshot +https://www.w3.org/TR/geolocation-sensor/#geolocation-reading-parsing-algorithm + +1 +- geolocation sensor dfn geolocation-sensor @@ -2230,7 +3335,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-geolocation-task-source +https://w3c.github.io/geolocation/#dfn-geolocation-task-source 1 - @@ -2242,6 +3347,26 @@ geolocation snapshot https://www.w3.org/TR/geolocation/#dfn-geolocation-task-source +1 +- +geolocation virtual sensor type +dfn +geolocation-sensor +geolocation-sensor +1 +current +https://w3c.github.io/geolocation-sensor/#geolocation-virtual-sensor-type + +1 +- +geolocation virtual sensor type +dfn +geolocation-sensor +geolocation-sensor +1 +snapshot +https://www.w3.org/TR/geolocation-sensor/#geolocation-virtual-sensor-type + 1 - geometricPrecision @@ -2299,6 +3424,26 @@ list-style-type - georgian value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-georgian +1 +1 +- +georgian +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-georgian +1 +1 +- +georgian +value css-counter-styles-3 css-counter-styles 3 @@ -2339,7 +3484,8 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs- 1 1 form/method -button/method +button/formmethod +input/formmethod - get dfn @@ -2354,14 +3500,45 @@ map - get dfn -encrypted-media -encrypted-media +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizer-get +1 +1 +Sanitizer +- +get %TypedArray%.prototype [ %Symbol.toStringTag% ] +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype-%25symbol.tostringtag%25 +1 +1 +%TypedArray%.prototype [ %Symbol.toStringTag% ] +- +get Trusted Types-compliant attribute value +abstract-op +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-get-trusted-types-compliant-attribute-value +1 +1 +- +get Trusted Types-compliant attribute value +abstract-op +trusted-types +trusted-types 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap-get - +https://www.w3.org/TR/trusted-types/#abstract-opdef-get-trusted-types-compliant-attribute-value +1 1 -mediakeystatusmap - get a backgroundfetchregistration instance dfn @@ -2371,16 +3548,6 @@ background-fetch current https://wicg.github.io/background-fetch/#get-a-backgroundfetchregistration-instance -1 -- -get a browsing context -dfn -webdriver-bidi -webdriver-bidi -1 -current -https://w3c.github.io/webdriver-bidi/#get-a-browsing-context - 1 - get a copy of the buffer source @@ -2423,6 +3590,16 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-get-a-copy-of-the-image-contents-of 1 1 - +get a debug details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#get-a-debug-details +1 +1 +- get a document layout definition dfn css-layout-api-1 @@ -2581,6 +3758,16 @@ css-layout-api snapshot https://www.w3.org/TR/css-layout-api-1/#get-a-layout-definition +1 +- +get a navigable +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-a-navigable +1 1 - get a node @@ -2621,6 +3808,26 @@ permissions snapshot https://www.w3.org/TR/permissions/#dfn-get-a-permission-store-entry 1 +1 +- +get a platform sensor's sampling bounds +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#get-a-platform-sensors-sampling-bounds + +1 +- +get a platform sensor's sampling bounds +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#get-a-platform-sensors-sampling-bounds + 1 - get a pointer id @@ -2651,6 +3858,16 @@ webidl current https://webidl.spec.whatwg.org/#waiting-for-all-promise 1 +1 +- +get a prompt +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#get-a-prompt + 1 - get a reader @@ -2672,6 +3889,16 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#get-a-realm +1 +- +get a realm from a navigable +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-a-realm-from-a-navigable + 1 - get a realm from a target @@ -2700,7 +3927,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#get-a-safe-token +https://urlpattern.spec.whatwg.org/#get-a-safe-token 1 - @@ -2714,6 +3941,17 @@ https://w3c.github.io/webdriver-bidi/#get-a-sandbox-name 1 - +get a sanitizer config from options +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizerconfig-get-a-sanitizer-config-from-options + +1 +SanitizerConfig +- get a session id for a websocket resource dfn webdriver-bidi @@ -2753,6 +3991,26 @@ css-layout-api current https://drafts.css-houdini.org/css-layout-api-1/#get-a-style-map +1 +- +get a virtual pressure source +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-get-a-virtual-pressure-source + +1 +- +get a virtual pressure source +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-get-a-virtual-pressure-source + 1 - get a webelement origin @@ -2882,7 +4140,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#getting-all-navigables-that-only-need-history-object-length/index-update +https://html.spec.whatwg.org/multipage/browsing-the-web.html#getting-all-navigables-that-only-need-history-object-length%2Findex-update 1 - @@ -2954,16 +4212,6 @@ dom current https://dom.spec.whatwg.org/#concept-element-attributes-get-value 1 -1 -- -get an element -dfn -element-timing -element-timing -1 -current -https://wicg.github.io/element-timing/#get-an-element - 1 - get an element id @@ -2994,6 +4242,16 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#get-an-element's-target +1 +- +get an eligibility from attributionreportingrequestoptions +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#get-an-eligibility-from-attributionreportingrequestoptions + 1 - get an encoder @@ -3056,6 +4314,17 @@ https://html.spec.whatwg.org/multipage/parsing.html#concept-get-xml-encoding-whe 1 - +get batching scope steps +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#scoping-details-get-batching-scope-steps + +1 +scoping details +- get boundary point at index dfn scroll-to-text-fragment @@ -3073,8 +4342,9 @@ mediacapture-automation 1 current https://w3c.github.io/mediacapture-automation/#get-capture-prompt-result - 1 +1 +extension commands - get client lifecycle state dfn @@ -3134,6 +4404,26 @@ webusb current https://wicg.github.io/webusb/#get-configuration +1 +- +get consent status +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-get-consent-status + +1 +- +get consent status +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-get-consent-status + 1 - get coordinates relative to an origin @@ -3174,6 +4464,36 @@ webauthn snapshot https://www.w3.org/TR/webauthn-3/#get-credentials +1 +- +get current interaction data +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#get-current-interaction-data + +1 +- +get current task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#get-current-task +1 +1 +- +get current task id +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#get-current-task-id +1 1 - get current url @@ -3216,6 +4536,17 @@ https://www.w3.org/TR/requestidlecallback/#dfn-get-deadline-time 1 - +get debug scope steps +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#scoping-details-get-debug-scope-steps + +1 +scoping details +- get default selected track index dfn webcodecs @@ -3238,6 +4569,16 @@ https://www.w3.org/TR/webcodecs/#imagedecoder-get-default-selected-track-index 1 ImageDecoder - +get descendant topics +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#get-descendant-topics + +1 +- get descriptor dfn webusb @@ -3246,6 +4587,36 @@ webusb current https://wicg.github.io/webusb/#get-descriptor +1 +- +get direct from seller signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#get-direct-from-seller-signals + +1 +- +get direct from seller signals for a buyer +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#get-direct-from-seller-signals-for-a-buyer + +1 +- +get direct from seller signals for a seller +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#get-direct-from-seller-signals-for-a-seller + 1 - get element attribute @@ -3286,6 +4657,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-get-element-css-value +1 +- +get element from input.elementorigin steps +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-element-from-inputelementorigin-steps + 1 - get element origin @@ -3438,35 +4819,26 @@ https://www.w3.org/TR/service-workers/#get-frame-type 1 - -get mock capture devices +get matching cookies dfn -mediacapture-automation -mediacapture-automation +webdriver-bidi +webdriver-bidi 1 current -https://w3c.github.io/mediacapture-automation/#get-mock-capture-devices +https://w3c.github.io/webdriver-bidi/#get-matching-cookies 1 - -get mock sensor +get mock capture devices dfn -generic-sensor -generic-sensor +mediacapture-automation +mediacapture-automation 1 current -https://w3c.github.io/sensors/#get-mock-sensor - -1 -- -get mock sensor -dfn -generic-sensor -generic-sensor +https://w3c.github.io/mediacapture-automation/#get-mock-capture-devices 1 -snapshot -https://www.w3.org/TR/generic-sensor/#get-mock-sensor - 1 +extension commands - get named cookie dfn @@ -3506,6 +4878,16 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#get-newest-worker +1 +- +get or create a batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#get-or-create-a-batching-scope + 1 - get or create a node reference @@ -3596,6 +4978,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-get-or-create-an-input-source +1 +- +get or expire a bucket +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#get-or-expire-a-bucket + +1 +- +get os registrations from a header value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#get-os-registrations-from-a-header-value + 1 - get page source @@ -3618,6 +5020,28 @@ https://www.w3.org/TR/webdriver2/#dfn-get-page-source 1 - +get permissions policy +dfn +credential-management-1 +credential-management +1 +current +https://w3c.github.io/webappsec-credential-management/#credential-type-registry-get-permissions-policy + +1 +credential type registry +- +get permissions policy +dfn +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#credential-type-registry-get-permissions-policy + +1 +credential type registry +- get registration dfn service-workers @@ -3638,13 +5062,33 @@ https://www.w3.org/TR/service-workers/#get-registration 1 - -get related browsing contexts +get registration info from a header list +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#get-registration-info-from-a-header-list + +1 +- +get related navigables dfn webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#get-related-browsing-contexts +https://w3c.github.io/webdriver-bidi/#get-related-navigables + +1 +- +get router source +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#get-router-source 1 - @@ -3656,6 +5100,16 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#getting-session-history-entries +1 +- +get session history entries for the navigation api +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#getting-session-history-entries-for-the-navigation-api + 1 - get shared id for a node @@ -3666,6 +5120,16 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#get-shared-id-for-a-node +1 +- +get sources to delete for the unexpired destination limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#get-sources-to-delete-for-the-unexpired-destination-limit + 1 - get stream @@ -3690,6 +5154,86 @@ https://www.w3.org/TR/FileAPI/#blob-get-stream 1 Blob - +get supported capabilities for audio/video type +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-get-supported-capabilities-for-audio-video-type + +1 +- +get supported capabilities for audio/video type +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-get-supported-capabilities-for-audio-video-type + +1 +- +get supported configuration +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-get-supported-configuration +1 +1 +- +get supported configuration +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-get-supported-configuration +1 +1 +- +get supported configuration and consent +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-get-supported-configuration-and-consent + +1 +- +get supported configuration and consent +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-get-supported-configuration-and-consent + +1 +- +get supported registrars +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#get-supported-registrars +1 +1 +- +get text content +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#get-text-content +1 +1 +- get the "all"-indexed element dfn html @@ -3718,6 +5262,60 @@ html current https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#concept-get-all-named +1 +- +get the active user prompt +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-get-the-active-user-prompt + +1 +- +get the active user prompt +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-get-the-active-user-prompt + +1 +- +get the attr-associated element +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#attr-associated-element +1 +1 +Element +ElementInternals +- +get the attr-associated elements +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#attr-associated-elements +1 +1 +Element +ElementInternals +- +get the automatic beacon data mapping to use +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#get-the-automatic-beacon-data-mapping-to-use + 1 - get the bluetoothdevice representing @@ -3741,43 +5339,43 @@ https://drafts.csswg.org/cssom-view-1/#element-get-the-bounding-box 1 Element - -get the browsing context +get the canonical url string if valid dfn -webdriver-bidi -webdriver-bidi +shared-storage +shared-storage 1 current -https://w3c.github.io/webdriver-bidi/#get-the-browsing-context +https://wicg.github.io/shared-storage/#get-the-canonical-url-string-if-valid 1 - -get the browsing context info +get the child navigables dfn webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#get-the-browsing-context-info +https://w3c.github.io/webdriver-bidi/#get-the-child-navigables 1 - -get the child browsing contexts +get the content attribute dfn -webdriver-bidi -webdriver-bidi +html +html 1 current -https://w3c.github.io/webdriver-bidi/#get-the-child-browsing-contexts +https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#get-the-content-attribute 1 - -get the content attribute +get the cookie store dfn -html -html +webdriver-bidi +webdriver-bidi 1 current -https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#get-the-content-attribute +https://w3c.github.io/webdriver-bidi/#get-the-cookie-store 1 - @@ -3809,6 +5407,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#getting-the-current-value-of-the-event-handler +1 +- +get the descendant script fetch options +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#get-the-descendant-script-fetch-options + 1 - get the element @@ -3819,6 +5427,36 @@ html current https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#get-the-element +1 +- +get the entry point +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-get-the-entry-point +1 +1 +- +get the entry point +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-get-the-entry-point +1 +1 +- +get the fetch timings +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-fetch-timings + 1 - get the focusable area @@ -3875,6 +5513,16 @@ stack queue set - +get the initiator +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-initiator + +1 +- get the input state dfn webdriver2 @@ -3936,23 +5584,54 @@ https://www.w3.org/TR/web-locks/#get-the-lock-request-queue 1 - -get the matching prerendering navigable +get the login status dfn -prerendering-revamped -prerendering-revamped +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#get-the-login-status + +1 +- +get the mime type +dfn +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#concept-body-mime-type + +1 +Body +- +get the navigable +dfn +webdriver-bidi +webdriver-bidi 1 current -https://wicg.github.io/nav-speculation/prerendering.html#get-the-matching-prerendering-navigable +https://w3c.github.io/webdriver-bidi/#get-the-navigable 1 - -get the navigation api history index +get the navigable info dfn -navigation-api -navigation-api +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-navigable-info + +1 +- +get the navigation api entry index +dfn +html +html 1 current -https://wicg.github.io/navigation-api/#get-the-navigation-api-history-index +https://html.spec.whatwg.org/multipage/nav-history-apis.html#getting-the-navigation-api-entry-index 1 - @@ -3964,6 +5643,16 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#get-the-navigation-info +1 +- +get the network intercepts +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-network-intercepts + 1 - get the next code point @@ -3972,7 +5661,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#get-the-next-code-point +https://urlpattern.spec.whatwg.org/#get-the-next-code-point 1 - @@ -3986,6 +5675,17 @@ https://webidl.spec.whatwg.org/#dfn-get-the-next-iteration-result 1 1 - +get the next iteration result +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageiterator-get-the-next-iteration-result + +1 +SharedStorageIterator +- get the notifications permission state dfn notifications @@ -3994,6 +5694,16 @@ notifications current https://notifications.spec.whatwg.org/#get-the-notifications-permission-state +1 +- +get the number of distinct versions in epochs +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#get-the-number-of-distinct-versions-in-epochs + 1 - get the object @@ -4004,6 +5714,16 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#get-the-object +1 +- +get the origin rectangle +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-origin-rectangle + 1 - get the parent @@ -4016,13 +5736,13 @@ https://dom.spec.whatwg.org/#get-the-parent 1 1 - -get the parent browsing context +get the parent navigable dfn webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#get-the-parent-browsing-context +https://w3c.github.io/webdriver-bidi/#get-the-parent-navigable 1 - @@ -4034,6 +5754,46 @@ ua-client-hints current https://wicg.github.io/ua-client-hints/#get-the-platform-version +1 +- +get the privateaggregation +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#get-the-privateaggregation +1 +1 +- +get the prompt handler +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-get-the-prompt-handler +1 +1 +- +get the prompt handler +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-get-the-prompt-handler +1 +1 +- +get the protocol +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-protocol + 1 - get the realm info @@ -4044,6 +5804,46 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#get-the-realm-info +1 +- +get the registration platform +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#get-the-registration-platform + +1 +- +get the request data +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-request-data + +1 +- +get the response content info +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-response-content-info + +1 +- +get the response data +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-response-data + 1 - get the runnable task queues @@ -4054,6 +5854,16 @@ scheduling-apis current https://wicg.github.io/scheduling-apis/#get-the-runnable-task-queues +1 +- +get the select-url result index +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#get-the-select-url-result-index + 1 - get the service worker object @@ -4104,6 +5914,16 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#get-the-source +1 +- +get the string value +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#get-the-string-value + 1 - get the supported loading modes @@ -4124,6 +5944,16 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#getting-the-target-history-entry +1 +- +get the text steps +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#get-the-text-steps +1 1 - get the used step @@ -4158,6 +5988,16 @@ https://infra.spec.whatwg.org/#map-getting-the-values 1 map - +get the worker's owners +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-the-workers-owners + +1 +- get time origin timestamp dfn hr-time-3 @@ -4204,27 +6044,117 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-get-title +https://w3c.github.io/webdriver/#dfn-get-title + +1 +- +get title +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-get-title + +1 +- +get unique urls +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-get-unique-urls + +1 +- +get unique urls +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-get-unique-urls + +1 +- +get url +dfn +webusb +webusb +1 +current +https://wicg.github.io/webusb/#get-url + +1 +- +get user context +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#get-user-context +1 +1 +- +get uuid from string +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#get-uuid-from-string + +1 +- +get valid values for colorscheme +dfn +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#get-valid-values-for-colorscheme + +1 +- +get valid values for contrast +dfn +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#get-valid-values-for-contrast + +1 +- +get valid values for reduceddata +dfn +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#get-valid-values-for-reduceddata 1 - -get title +get valid values for reducedmotion dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-get-title +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#get-valid-values-for-reducedmotion 1 - -get url +get valid values for reducedtransparency dfn -webusb -webusb +web-preferences-api +web-preferences-api 1 current -https://wicg.github.io/webusb/#get-url +https://wicg.github.io/web-preferences-api/#get-valid-values-for-reducedtransparency 1 - @@ -4321,9 +6251,9 @@ NamedFlowMap - get() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap-get 1 @@ -4354,6 +6284,17 @@ CookieStore - get() method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizer-get +1 +1 +Sanitizer +- +get() +method credential-management-1 credential-management 1 @@ -4375,15 +6316,15 @@ https://www.w3.org/TR/css-regions-1/#dom-namedflowmap-get NamedFlowMap - get() -dfn -encrypted-media +method +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap-get - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatusmap-get 1 -mediakeystatusmap +1 +MediaKeyStatusMap - get(id) method @@ -4497,6 +6438,17 @@ WeakMap - get(key) method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-get +1 +1 +SharedStorage +- +get(key) +method webxr-hand-input-1 webxr-hand-input 1 @@ -4508,15 +6460,26 @@ XRHand - get(keyId) method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap-get 1 1 MediaKeyStatusMap - +get(keyId) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatusmap-get +1 +1 +MediaKeyStatusMap +- get(name) method fetch @@ -5158,6 +7121,17 @@ https://www.w3.org/TR/web-animations-1/#dom-documentorshadowroot-getanimations 1 DocumentOrShadowRoot - +getAnimations() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animatable-getanimations +1 +1 +Animatable +- getAnimations(options) method web-animations-1 @@ -5180,6 +7154,28 @@ https://www.w3.org/TR/web-animations-1/#dom-animatable-getanimations 1 Animatable - +getAnnotatedAssetId() +method +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#dom-navigatormanageddata-getannotatedassetid +1 +1 +NavigatorManagedData +- +getAnnotatedLocation() +method +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#dom-navigatormanageddata-getannotatedlocation +1 +1 +NavigatorManagedData +- getAsFile() method html @@ -5213,6 +7209,17 @@ https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitem-getasstring 1 DataTransferItem - +getAttribute() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-getattribute +1 +1 +SmartCardConnection +- getAttribute(qualifiedName) method dom @@ -5224,6 +7231,17 @@ https://dom.spec.whatwg.org/#dom-element-getattribute 1 Element - +getAttribute(tag) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-getattribute +1 +1 +SmartCardConnection +- getAttributeNS(namespace, localName) method dom @@ -6038,6 +8056,17 @@ https://www.w3.org/TR/css-animation-worklet-1/#dom-workletgroupeffect-getchildre 1 WorkletGroupEffect - +getClientCapabilities() +method +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredential-getclientcapabilities +1 +1 +PublicKeyCredential +- getClientExtensionResults() method webauthn-3 @@ -6324,11 +8353,22 @@ https://www.w3.org/TR/web-animations-1/#dom-animationeffect-getcomputedtiming 1 AnimationEffect - +getComputedTiming() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-getcomputedtiming +1 +1 +AnimationEffect +- getConfiguration() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemaccess-getconfiguration 1 @@ -6348,14 +8388,14 @@ RTCPeerConnection - getConfiguration() method -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-getconfiguration +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemaccess-getconfiguration 1 1 -Sanitizer +MediaKeySystemAccess - getConfiguration() method @@ -6539,7 +8579,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-getcurrentposition +https://w3c.github.io/geolocation/#dom-geolocation-getcurrentposition 1 1 Geolocation @@ -6561,7 +8601,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-getcurrentposition +https://w3c.github.io/geolocation/#dom-geolocation-getcurrentposition 1 1 Geolocation @@ -6583,7 +8623,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-getcurrentposition +https://w3c.github.io/geolocation/#dom-geolocation-getcurrentposition 1 1 Geolocation @@ -6605,7 +8645,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-getcurrentposition +https://w3c.github.io/geolocation/#dom-geolocation-getcurrentposition 1 1 Geolocation @@ -6648,57 +8688,13 @@ method scroll-animations-1 scroll-animations 1 -current -https://drafts.csswg.org/scroll-animations-1/#dom-animationtimeline-getcurrenttime -1 -1 -AnimationTimeline -- -getCurrentTime() -method -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#dom-animationtimeline-getcurrenttime -1 -1 -AnimationTimeline -- -getCurrentTime(optionalrangeName) -method -scroll-animations-1 -scroll-animations -1 -current -https://drafts.csswg.org/scroll-animations-1/#dom-animationtimeline-getcurrenttime -1 -1 -AnimationTimeline -- -getCurrentTime(optionalrangeName) -method -scroll-animations-1 -scroll-animations -1 snapshot https://www.w3.org/TR/scroll-animations-1/#dom-animationtimeline-getcurrenttime 1 1 AnimationTimeline - -getCurrentTime(rangeName) -method -scroll-animations-1 -scroll-animations -1 -current -https://drafts.csswg.org/scroll-animations-1/#dom-animationtimeline-getcurrenttime -1 -1 -AnimationTimeline -- -getCurrentTime(rangeName) +getCurrentTime(options) method scroll-animations-1 scroll-animations @@ -6742,17 +8738,6 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype.getd 1 Date - -getDefaultConfiguration() -method -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-getdefaultconfiguration -1 -1 -Sanitizer -- getDepthInMeters(x, y) method webxr-depth-sensing-1 @@ -6940,6 +8925,17 @@ https://wicg.github.io/digital-goods/#dom-window-getdigitalgoodsservice 1 Window - +getDirectory +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-getdirectory +1 +1 +StorageAccessTypes +- getDirectory() method fs @@ -6953,6 +8949,17 @@ StorageManager - getDirectory() method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-getdirectory +1 +1 +StorageAccessHandle +- +getDirectory() +method entries-api entries-api 1 @@ -6962,6 +8969,17 @@ https://wicg.github.io/entries-api/#dom-filesystemdirectoryentry-getdirectory 1 FileSystemDirectoryEntry - +getDirectory() +method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-getdirectory +1 +1 +StorageBucket +- getDirectory(path) method entries-api @@ -7028,6 +9046,17 @@ https://fs.spec.whatwg.org/#dom-filesystemdirectoryhandle-getdirectoryhandle 1 FileSystemDirectoryHandle - +getDirectoryId() +method +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#dom-navigatormanageddata-getdirectoryid +1 +1 +NavigatorManagedData +- getDisplayMedia dict-member mediacapture-automation @@ -7798,6 +9827,28 @@ https://www.w3.org/TR/gamepad/#dom-navigator-getgamepads 1 Navigator - +getHTML(options) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-element-gethtml +1 +1 +Element +- +getHTML(options) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-shadowroot-gethtml +1 +1 +ShadowRoot +- getHighEntropyValues(hints) method ua-client-hints @@ -7864,6 +9915,17 @@ https://www.w3.org/TR/webxr-hit-test-1/#dom-xrframe-gethittestresultsfortransien 1 XRFrame - +getHostname() +method +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#dom-navigatormanageddata-gethostname +1 +1 +NavigatorManagedData +- getHours() method ecmascript @@ -7996,6 +10058,17 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview.prototype.ge 1 DataView - +getInterestGroupAdAuctionData(config) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-getinterestgroupadauctiondata +1 +1 +Navigator +- getIntersectionList method svg2 @@ -8249,6 +10322,17 @@ https://www.w3.org/TR/webrtc/#dom-rtcicetransport-getlocalparameters 1 RTCIceTransport - +getManagedConfiguration(keys) +method +managed-configuration +managed-configuration +1 +current +https://wicg.github.io/WebApiDevice/managed_config/#dom-navigatormanageddata-getmanagedconfiguration +1 +1 +NavigatorManagedData +- getMappedRange() method webgpu @@ -8458,6 +10542,17 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype.getm 1 Date - +getName(constructor) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/custom-elements.html#dom-customelementregistry-getname +1 +1 +CustomElementRegistry +- getNamedItem(qualifiedName) method dom @@ -8502,6 +10597,17 @@ https://www.w3.org/TR/webxr/#dom-xrwebgllayer-getnativeframebufferscalefactor 1 XRWebGLLayer - +getNestedConfigs() +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fence-getnestedconfigs +1 +1 +Fence +- getNotifications() method notifications @@ -8799,6 +10905,17 @@ https://www.w3.org/TR/SVG2/types.html#__svg__SVGGeometryElement__getPointAtLengt 1 SVGGeometryElement - +getPoints() +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingstroke-getpoints +1 +1 +HandwritingStroke +- getPorts() method serial @@ -8876,6 +10993,17 @@ https://www.w3.org/TR/pointerevents3/#dom-pointerevent-getpredictedevents 1 PointerEvent - +getPrediction() +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-getprediction +1 +1 +HandwritingDrawing +- getPreferredCanvasFormat() method webgpu @@ -9562,22 +11690,22 @@ SVGGraphicsElement - getScreenDetails() method -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-window-getscreendetails +https://w3c.github.io/window-management/#dom-window-getscreendetails 1 1 Window - getScreenDetails() method -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-window-getscreendetails +https://www.w3.org/TR/window-management/#dom-window-getscreendetails 1 1 Window @@ -9681,6 +11809,17 @@ https://www.w3.org/TR/webrtc/#dom-peerconnection-getsenders 1 RTCPeerConnection - +getSerialNumber() +method +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#dom-navigatormanageddata-getserialnumber +1 +1 +NavigatorManagedData +- getService(name) method web-bluetooth @@ -9825,37 +11964,37 @@ https://www.w3.org/TR/SVG2/text.html#__svg__SVGTextContentElement__getStartPosit SVGTextContentElement - getState() -method -service-workers -service-workers +attribute +html +html 1 current -https://w3c.github.io/ServiceWorker/#dom-navigationpreloadmanager-getstate +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-getstate 1 1 -NavigationPreloadManager +NavigationDestination - getState() method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationdestination-getstate +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-getstate 1 1 -NavigationDestination +NavigationHistoryEntry - getState() method -navigation-api -navigation-api +service-workers +service-workers 1 current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-getstate +https://w3c.github.io/ServiceWorker/#dom-navigationpreloadmanager-getstate 1 1 -NavigationHistoryEntry +NavigationPreloadManager - getState() method @@ -9929,6 +12068,17 @@ webtransport webtransport 1 current +https://w3c.github.io/webtransport/#dom-webtransportsendgroup-getstats +1 +1 +WebTransportSendGroup +- +getStats() +method +webtransport +webtransport +1 +current https://w3c.github.io/webtransport/#dom-webtransportsendstream-getstats 1 1 @@ -9995,6 +12145,17 @@ webtransport webtransport 1 snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendgroup-getstats +1 +1 +WebTransportSendGroup +- +getStats() +method +webtransport +webtransport +1 +snapshot https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-getstats 1 1 @@ -10022,6 +12183,94 @@ https://www.w3.org/TR/webrtc/#widl-RTCPeerConnection-getStats-Promise-RTCStatsRe 1 RTCPeerConnection - +getStatusChange() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-getstatuschange +1 +1 +SmartCardContext +- +getStatusChange(readerStates) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-getstatuschange +1 +1 +SmartCardContext +- +getStatusChange(readerStates, options) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-getstatuschange +1 +1 +SmartCardContext +- +getStatusForPolicy() +method +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dom-mediakeys-getstatusforpolicy +1 +1 +MediaKeys +- +getStatusForPolicy() +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys-getstatusforpolicy +1 +1 +MediaKeys +- +getStatusForPolicy(policy) +method +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dom-mediakeys-getstatusforpolicy +1 +1 +MediaKeys +- +getStatusForPolicy(policy) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys-getstatusforpolicy +1 +1 +MediaKeys +- +getStrokes() +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-getstrokes +1 +1 +HandwritingDrawing +- getSubImage(layer, frame) method webxrlayers-1 @@ -10220,6 +12469,17 @@ https://w3c.github.io/input-events/#dom-inputevent-gettargetranges 1 InputEvent - +getTargetRanges() +method +input-events-2 +input-events +2 +snapshot +https://www.w3.org/TR/input-events-2/#dom-inputevent-gettargetranges +1 +1 +InputEvent +- getTextFormats() method edit-context @@ -10627,6 +12887,17 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview.prototype.ge 1 DataView - +getUnsafe() +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizer-getunsafe +1 +1 +Sanitizer +- getUserData() method dom @@ -10638,6 +12909,17 @@ https://dom.spec.whatwg.org/#dom-node-getuserdata 1 Node - +getUserInfo(config) +method +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityprovider-getuserinfo +1 +1 +IdentityProvider +- getUserMedia dict-member mediacapture-automation @@ -10649,6 +12931,26 @@ https://w3c.github.io/mediacapture-automation/#dom-mockcapturepromptresultconfig 1 MockCapturePromptResultConfiguration - +getUserMedia specific failure is allowed +abstract-op +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#getUserMedia-specific-failure-is-allowed +1 +1 +- +getUserMedia specific failure is allowed +abstract-op +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#getUserMedia-specific-failure-is-allowed +1 +1 +- getUserMedia() method mediacapture-streams @@ -10668,7 +12970,7 @@ mediacapture-streams current https://w3c.github.io/mediacapture-main/#dom-navigator-getusermedia 1 -1 + Navigator - getUserMedia() @@ -10690,7 +12992,7 @@ mediacapture-streams snapshot https://www.w3.org/TR/mediacapture-streams/#dom-navigator-getusermedia 1 -1 + Navigator - getUserMedia(constraints) @@ -10723,7 +13025,7 @@ mediacapture-streams current https://w3c.github.io/mediacapture-main/#dom-navigator-getusermedia 1 -1 + Navigator - getUserMedia(constraints, successCallback, errorCallback) @@ -10734,7 +13036,7 @@ mediacapture-streams snapshot https://www.w3.org/TR/mediacapture-streams/#dom-navigator-getusermedia 1 -1 + Navigator - getVideoPlaybackQuality() @@ -10902,38 +13204,38 @@ https://streams.spec.whatwg.org/#ws-get-writer 1 WritableStream - -getYear() +getWriter() method -ecmascript -ecmascript +webtransport +webtransport 1 current -https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-date.prototype.getyear +https://w3c.github.io/webtransport/#dom-webtransportsendstream-getwriter 1 1 -Date +WebTransportSendStream - -getconfiguration -dfn -encrypted-media -encrypted-media +getWriter() +method +webtransport +webtransport 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess-getconfiguration - +https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-getwriter +1 1 -mediakeysystemaccess +WebTransportSendStream - -getconfiguration() -dfn -encrypted-media -encrypted-media +getYear() +method +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess-getconfiguration - +current +https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-date.prototype.getyear 1 -mediakeysystemaccess +1 +Date - getdisplaymedia prompt result dfn @@ -11067,30 +13369,8 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-Crypto-method-getRandomValues -1 -1 -- -gettargetranges -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputevent-gettargetranges - - -inputevent -- -gettargetranges() -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputevent-gettargetranges - -inputevent +1 - getter dfn @@ -11389,6 +13669,16 @@ https://infra.spec.whatwg.org/#map-getting-the-keys 1 map - +getting the locator +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#getting-the-locator +1 +1 +- getting the property dfn webdriver2 @@ -11427,16 +13717,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-getting-the-property-with-default -1 -- -getting the runnable task queues -dfn -scheduling-apis -scheduling-apis -1 -current -https://wicg.github.io/scheduling-apis/#get-the-runnable-task-queues - 1 - getting the service worker object @@ -11512,53 +13792,24 @@ https://fetch.spec.whatwg.org/#header-value-get-decode-and-split 1 header value - -getusermedia prompt result -dfn -mediacapture-automation -mediacapture-automation -1 -current -https://w3c.github.io/mediacapture-automation/#getUserMedia-prompt-result - -1 -- -getusermedia specific failure is allowed +getunsafe dfn -mediacapture-streams -mediacapture-streams +sanitizer-api +sanitizer-api 1 current -https://w3c.github.io/mediacapture-main/#getUserMedia-specific-failure-is-allowed - -1 -- -getusermedia specific failure is allowed -dfn -mediacapture-streams -mediacapture-streams +https://wicg.github.io/sanitizer-api/#sanitizer-getunsafe 1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#getUserMedia-specific-failure-is-allowed - 1 +Sanitizer - -getusermedia-specific-failure-is-allowed +getusermedia prompt result dfn -mediacapture-streams -mediacapture-streams +mediacapture-automation +mediacapture-automation 1 current -https://w3c.github.io/mediacapture-main/#getUserMedia-specific-failure-is-allowed - -1 -- -getusermedia-specific-failure-is-allowed -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#getUserMedia-specific-failure-is-allowed +https://w3c.github.io/mediacapture-automation/#getUserMedia-prompt-result 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gh.data b/bikeshed/spec-data/readonly/anchors/anchors-gh.data index 4ce5f6c249..dac9bd0d15 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gh.data @@ -18,6 +18,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-ghostwhite 1 1 <color> +<named-color> - ghostwhite dfn @@ -39,4 +40,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-ghostwhite 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gi.data b/bikeshed/spec-data/readonly/anchors/anchors-gi.data index 830ed96590..311476c4a6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gi.data @@ -25,6 +25,17 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-n-given-name 1 - +givenName +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityuserinfo-givenname +1 +1 +IdentityUserInfo +- given_name dict-member fedcm diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gl.data b/bikeshed/spec-data/readonly/anchors/anchors-gl.data index d0e74c4daa..0ad174a6b1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gl.data @@ -114,6 +114,16 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-global-global 1 Global - +GlobalDeclarationInstantiation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-globaldeclarationinstantiation +1 +1 +- GlobalDeclarationInstantiation(script, env) abstract-op ecmascript @@ -195,6 +205,26 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-get-regexp.prototype. 1 RegExp - +global +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-global + +1 +- +global +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-global + +1 +- global alpha dfn html @@ -290,6 +320,26 @@ https://tc39.es/ecma262/multipage/ecmascript-language-source-code.html#sec-types 1 ECMAScript - +global data checks +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-global-data-checks + +1 +- +global data checks +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-global-data-checks + +1 +- global date and time dfn html @@ -298,6 +348,46 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#concept-datetime +1 +- +global diagnostic filter +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#global-diagnostic-filter + +1 +- +global diagnostic filter +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#global-diagnostic-filter + +1 +- +global duration +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-global-duration + +1 +- +global duration +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-global-duration + 1 - global environment record @@ -583,6 +673,26 @@ current https://w3c.github.io/web-nfc/#dfn-global-type +- +global view transition user agent style sheet +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#global-view-transition-user-agent-style-sheet + +1 +- +global view transition user agent style sheet +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#global-view-transition-user-agent-style-sheet + +1 - globalAlpha attribute @@ -650,24 +760,24 @@ https://tc39.es/ecma262/multipage/global-object.html#sec-globalthis 1 globalThis - -global_constant_decl +global_decl dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-global_constant_decl +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-global_decl 1 -syntax +recursive descent syntax - -global_constant_decl +global_decl dfn wgsl wgsl 1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-global_constant_decl +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-global_decl 1 syntax @@ -677,8 +787,8 @@ dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-global_decl +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-global_decl 1 recursive descent syntax @@ -688,30 +798,30 @@ dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-global_decl +snapshot +https://www.w3.org/TR/WGSL/#syntax-global_decl 1 syntax - -global_decl +global_directive dfn wgsl wgsl 1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-global_decl +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-global_directive 1 recursive descent syntax - -global_decl +global_directive dfn wgsl wgsl 1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-global_decl +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-global_directive 1 syntax @@ -721,11 +831,11 @@ dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-global_directive +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-global_directive 1 -syntax +recursive descent syntax - global_directive dfn @@ -760,6 +870,50 @@ https://www.w3.org/TR/WGSL/#built-in-values-global_invocation_id 1 built-in values - +global_value_decl +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-global_value_decl + +1 +recursive descent syntax +- +global_value_decl +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-global_value_decl + +1 +syntax +- +global_value_decl +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-global_value_decl + +1 +recursive descent syntax +- +global_value_decl +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-global_value_decl + +1 +syntax +- global_variable_decl dfn wgsl @@ -789,7 +943,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-GlobalCrypto -1 + 1 - glyph @@ -808,7 +962,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_glyph +https://w3c.github.io/i18n-glossary/#dfn-glyph 1 - @@ -818,7 +972,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_glyph +https://www.w3.org/TR/i18n-glossary/#dfn-glyph 1 - @@ -920,6 +1074,66 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-glyph-assembly-width +1 +- +glyph closure +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-closure + +1 +- +glyph closure +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-closure + +1 +- +glyph keyed patch +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-keyed-patch + +1 +- +glyph keyed patch +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-keyed-patch + +1 +- +glyph map +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyph-map + +1 +- +glyph map +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyph-map + 1 - glyph modifier key @@ -1000,6 +1214,136 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#propdef-glyph-orientation-vertical 1 +1 +- +glyphcount +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-glyphcount + +1 +Format 1 Patch Map +- +glyphcount +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyphpatches-glyphcount + +1 +GlyphPatches +- +glyphcount +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-glyphcount + +1 +Format 1 Patch Map +- +glyphcount +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyphpatches-glyphcount + +1 +GlyphPatches +- +glyphdata +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyphpatches-glyphdata + +1 +GlyphPatches +- +glyphdata +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyphpatches-glyphdata + +1 +GlyphPatches +- +glyphdataoffsets +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyphpatches-glyphdataoffsets + +1 +GlyphPatches +- +glyphdataoffsets +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyphpatches-glyphdataoffsets + +1 +GlyphPatches +- +glyphids +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyphpatches-glyphids + +1 +GlyphPatches +- +glyphids +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyphpatches-glyphids + +1 +GlyphPatches +- +glyphpatches +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyphpatches + +1 +- +glyphpatches +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyphpatches + 1 - glyphsRendered diff --git a/bikeshed/spec-data/readonly/anchors/anchors-go.data b/bikeshed/spec-data/readonly/anchors/anchors-go.data index 70778db893..b307f2a39d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-go.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-go.data @@ -40,6 +40,28 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-go 1 History - +goaway +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#session-signal-goaway + +1 +session-signal +- +goaway +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#session-signal-goaway + +1 +session-signal +- gold dfn css-color-3 @@ -60,6 +82,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-gold 1 1 <color> +<named-color> - gold dfn @@ -81,6 +104,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-gold 1 1 <color> +<named-color> - goldenrod dfn @@ -102,6 +126,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-goldenrod 1 1 <color> +<named-color> - goldenrod dfn @@ -123,6 +148,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-goldenrod 1 1 <color> +<named-color> - gossip path dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gp.data b/bikeshed/spec-data/readonly/anchors/anchors-gp.data index 1e715c19bb..b20ff9554b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gp.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gp.data @@ -468,7 +468,7 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dictdef-gpubufferdescriptor +https://gpuweb.github.io/gpuweb/#gpubufferdescriptor 1 1 - @@ -478,7 +478,7 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dictdef-gpubufferdescriptor +https://www.w3.org/TR/webgpu/#gpubufferdescriptor 1 1 - @@ -622,6 +622,46 @@ https://www.w3.org/TR/webgpu/#gpucanvascontext 1 1 - +GPUCanvasToneMapping +dictionary +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dictdef-gpucanvastonemapping +1 +1 +- +GPUCanvasToneMapping +dictionary +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dictdef-gpucanvastonemapping +1 +1 +- +GPUCanvasToneMappingMode +enum +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpucanvastonemappingmode +1 +1 +- +GPUCanvasToneMappingMode +enum +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#gpucanvastonemappingmode +1 +1 +- GPUColor typedef webgpu @@ -942,63 +982,23 @@ https://www.w3.org/TR/webgpu/#gpucomputepassencoder 1 1 - -GPUComputePassTimestampLocation -enum -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#enumdef-gpucomputepasstimestamplocation -1 -1 -- -GPUComputePassTimestampLocation -enum -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#enumdef-gpucomputepasstimestamplocation -1 -1 -- -GPUComputePassTimestampWrite -dictionary -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dictdef-gpucomputepasstimestampwrite -1 -1 -- -GPUComputePassTimestampWrite -dictionary -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dictdef-gpucomputepasstimestampwrite -1 -1 -- GPUComputePassTimestampWrites -typedef +dictionary webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#typedefdef-gpucomputepasstimestampwrites +https://gpuweb.github.io/gpuweb/#dictdef-gpucomputepasstimestampwrites 1 1 - GPUComputePassTimestampWrites -typedef +dictionary webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#typedefdef-gpucomputepasstimestampwrites +https://www.w3.org/TR/webgpu/#dictdef-gpucomputepasstimestampwrites 1 1 - @@ -1482,6 +1482,26 @@ https://www.w3.org/TR/webgpu/#gpuimagecopyexternalimage 1 1 - +GPUImageCopyExternalImageSource +typedef +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#typedefdef-gpuimagecopyexternalimagesource +1 +1 +- +GPUImageCopyExternalImageSource +typedef +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#typedefdef-gpuimagecopyexternalimagesource +1 +1 +- GPUImageCopyTexture dictionary webgpu @@ -1602,6 +1622,26 @@ https://www.w3.org/TR/webgpu/#typedefdef-gpuintegercoordinate 1 1 - +GPUIntegerCoordinateOut +typedef +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#typedefdef-gpuintegercoordinateout +1 +1 +- +GPUIntegerCoordinateOut +typedef +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#typedefdef-gpuintegercoordinateout +1 +1 +- GPUInternalError interface webgpu @@ -1986,13 +2026,57 @@ https://www.w3.org/TR/webgpu/#gpupipelineerror 1 1 - +GPUPipelineError() +constructor +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-constructor +1 +1 +GPUPipelineError +- +GPUPipelineError() +constructor +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-constructor +1 +1 +GPUPipelineError +- +GPUPipelineError(message) +constructor +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-constructor +1 +1 +GPUPipelineError +- +GPUPipelineError(message) +constructor +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-constructor +1 +1 +GPUPipelineError +- GPUPipelineError(message, options) constructor webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-gpupipelineerror +https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-constructor 1 1 GPUPipelineError @@ -2003,7 +2087,7 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-gpupipelineerror +https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-constructor 1 1 GPUPipelineError @@ -2512,63 +2596,23 @@ https://www.w3.org/TR/webgpu/#dictdef-gpurenderpasslayout 1 1 - -GPURenderPassTimestampLocation -enum -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#enumdef-gpurenderpasstimestamplocation -1 -1 -- -GPURenderPassTimestampLocation -enum -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#enumdef-gpurenderpasstimestamplocation -1 -1 -- -GPURenderPassTimestampWrite -dictionary -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dictdef-gpurenderpasstimestampwrite -1 -1 -- -GPURenderPassTimestampWrite -dictionary -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dictdef-gpurenderpasstimestampwrite -1 -1 -- GPURenderPassTimestampWrites -typedef +dictionary webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#typedefdef-gpurenderpasstimestampwrites +https://gpuweb.github.io/gpuweb/#dictdef-gpurenderpasstimestampwrites 1 1 - GPURenderPassTimestampWrites -typedef +dictionary webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#typedefdef-gpurenderpasstimestampwrites +https://www.w3.org/TR/webgpu/#dictdef-gpurenderpasstimestampwrites 1 1 - @@ -2872,6 +2916,26 @@ https://www.w3.org/TR/webgpu/#typedefdef-gpusize32 1 1 - +GPUSize32Out +typedef +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#typedefdef-gpusize32out +1 +1 +- +GPUSize32Out +typedef +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#typedefdef-gpusize32out +1 +1 +- GPUSize64 typedef webgpu @@ -2892,6 +2956,26 @@ https://www.w3.org/TR/webgpu/#typedefdef-gpusize64 1 1 - +GPUSize64Out +typedef +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#typedefdef-gpusize64out +1 +1 +- +GPUSize64Out +typedef +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#typedefdef-gpusize64out +1 +1 +- GPUStencilFaceState dictionary webgpu @@ -3118,7 +3202,7 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dictdef-gputexturedescriptor +https://gpuweb.github.io/gpuweb/#gputexturedescriptor 1 1 - @@ -3128,7 +3212,7 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dictdef-gputexturedescriptor +https://www.w3.org/TR/webgpu/#gputexturedescriptor 1 1 - @@ -3514,6 +3598,16 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#enumdef-gpuvertexstepmode 1 +1 +- +gpcatnavigation +dfn +gpc-spec +gpc-spec +1 +current +https://privacycg.github.io/gpc-spec/#dfn-gpcatnavigation + 1 - gpu @@ -3528,6 +3622,17 @@ https://gpuweb.github.io/gpuweb/#dom-navigatorgpu-gpu NavigatorGPU - gpu +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mldevicetype-gpu +1 +1 +MLDeviceType +- +gpu attribute webgpu webgpu @@ -3538,6 +3643,17 @@ https://www.w3.org/TR/webgpu/#dom-navigatorgpu-gpu 1 NavigatorGPU - +gpu +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mldevicetype-gpu +1 +1 +MLDeviceType +- gpu command dfn webgpu @@ -3584,9 +3700,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontext-gpudevice-gpudevice +https://webmachinelearning.github.io/webnn/#dom-ml-createcontext-options-gpudevice 1 1 +ML/createContext(options) ML/createContext(gpuDevice) - gpuDevice @@ -3594,34 +3711,13 @@ argument webnn webnn 1 -current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontextsync-gpudevice-gpudevice -1 -1 -ML/createContextSync(gpuDevice) -- -gpuDevice -argument -webnn -webnn -1 snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontext-gpudevice-gpudevice +https://www.w3.org/TR/webnn/#dom-ml-createcontext-options-gpudevice 1 1 +ML/createContext(options) ML/createContext(gpuDevice) - -gpuDevice -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontextsync-gpudevice-gpudevice -1 -1 -ML/createContextSync(gpuDevice) -- gpuUncapturedErrorEventInitDict argument webgpu diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gr.data b/bikeshed/spec-data/readonly/anchors/anchors-gr.data index ed51ce178b..e6726677a6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gr.data @@ -31,27 +31,49 @@ https://notifications.spec.whatwg.org/#dom-notificationpermission-granted 1 NotificationPermission - -"gravity" +"granted" +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-granted +1 +1 +permission +- +"granted" +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-granted +1 +1 +permission +- +"graphics-optimized" enum-value -generic-sensor -generic-sensor +webxrlayers-1 +webxrlayers 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-gravity +https://immersive-web.github.io/layers/#dom-xrlayerquality-graphics-optimized 1 1 -MockSensorType +XRLayerQuality - -"gravity" +"graphics-optimized" enum-value -generic-sensor -generic-sensor +webxrlayers-1 +webxrlayers 1 snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-gravity +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerquality-graphics-optimized 1 1 -MockSensorType +XRLayerQuality - "greater" enum-value @@ -106,6 +128,26 @@ current https://drafts.csswg.org/css2/#grid-media-group +- +'grid' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#grid-media-group +1 +1 +- +'grid' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#grid-media-group +1 +1 - ::grammar-error selector @@ -215,6 +257,26 @@ https://www.w3.org/TR/css-grid-2/#grid-s-auto-row 1 grid - +<grad/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_grad + +1 +- +<grad/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_grad + +1 +- <gradient> type css-images-3 @@ -333,26 +395,6 @@ https://www.w3.org/TR/webgpu/#dom-gpucolorwrite-green 1 GPUColorWrite - -GravityReadingValues -dictionary -accelerometer -accelerometer -1 -current -https://w3c.github.io/accelerometer/#dictdef-gravityreadingvalues -1 -1 -- -GravityReadingValues -dictionary -accelerometer -accelerometer -1 -snapshot -https://www.w3.org/TR/accelerometer/#dictdef-gravityreadingvalues -1 -1 -- GravitySensor interface accelerometer @@ -417,6 +459,26 @@ https://www.w3.org/TR/accelerometer/#dom-gravitysensor-gravitysensor 1 GravitySensor - +GroupBy +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-groupby +1 +1 +- +GroupBy(items, callback, keyCoercion) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-groupby +1 +1 +- GroupEffect interface web-animations-2 @@ -427,6 +489,16 @@ https://drafts.csswg.org/web-animations-2/#groupeffect 1 1 - +GroupEffect +interface +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#groupeffect +1 +1 +- GroupEffect(children) constructor web-animations-2 @@ -438,6 +510,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-groupeffect 1 GroupEffect - +GroupEffect(children) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-groupeffect +1 +1 +GroupEffect +- GroupEffect(children, timing) constructor web-animations-2 @@ -449,6 +532,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-groupeffect 1 GroupEffect - +GroupEffect(children, timing) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-groupeffect +1 +1 +GroupEffect +- [[group end timestamp]] attribute media-source-2 @@ -493,6 +587,50 @@ https://www.w3.org/TR/media-source-2/#dfn-group-start-timestamp 1 SourceBuffer - +_greater_than +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_greater_than + +1 +syntax_sym +- +_greater_than +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_greater_than + +1 +syntax_sym +- +_greater_than_equal +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_greater_than_equal + +1 +syntax_sym +- +_greater_than_equal +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_greater_than_equal + +1 +syntax_sym +- grab value css-ui-3 @@ -1162,26 +1300,14 @@ https://www.w3.org/TR/webxr/#dom-xrpermissionstatus-granted XRPermissionStatus - graph -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-dispatch-graph-inputs-outputs-graph -1 -1 -MLCommandEncoder/dispatch(graph, inputs, outputs) -- -graph -argument -webnn -webnn +dfn +vc-data-model-2.0 +vc-data-model 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-initializegraph-graph-graph -1 +https://w3c.github.io/vc-data-model/#dfn-graphs + 1 -MLCommandEncoder/initializeGraph(graph) - graph argument @@ -1195,37 +1321,25 @@ https://webmachinelearning.github.io/webnn/#dom-mlcontext-compute-graph-inputs-o MLContext/compute(graph, inputs, outputs) - graph -argument +dfn webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcontext-computesync-graph-inputs-outputs-graph -1 -1 -MLContext/computeSync(graph, inputs, outputs) -- -graph -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-dispatch-graph-inputs-outputs-graph -1 +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-graph + 1 -MLCommandEncoder/dispatch(graph, inputs, outputs) +MLGraphBuilder - graph -argument -webnn -webnn +dfn +vc-data-model-2.0 +vc-data-model 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-initializegraph-graph-graph -1 +https://www.w3.org/TR/vc-data-model-2.0/#dfn-graphs + 1 -MLCommandEncoder/initializeGraph(graph) - graph argument @@ -1239,15 +1353,15 @@ https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-graph MLContext/compute(graph, inputs, outputs) - graph -argument +dfn webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcontext-computesync-graph-inputs-outputs-graph -1 +https://www.w3.org/TR/webnn/#mlgraphbuilder-graph + 1 -MLContext/computeSync(graph, inputs, outputs) +MLGraphBuilder - graph isomorphism dfn @@ -1257,7 +1371,7 @@ rdf-canon current https://w3c.github.io/rdf-canon/spec/#dfn-graph-isomorphism -1 + - graph isomorphism dfn @@ -1277,6 +1391,16 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-graph-isomorphism + +- +graph isomorphism +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-graph-isomorphism +1 1 - graph name @@ -1287,6 +1411,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-graph-name +1 +- +graph name +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-graph-name + 1 - graph object @@ -1315,29 +1449,20 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_grapheme +https://w3c.github.io/i18n-glossary/#dfn-grapheme 1 - grapheme -dfn -i18n-glossary -i18n-glossary +dict-member +handwriting-recognition +handwriting-recognition 1 current -https://w3c.github.io/i18n-glossary/#def_grapheme +https://wicg.github.io/handwriting-recognition/#dom-handwritingsegment-grapheme 1 - -- -grapheme -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_grapheme 1 - +HandwritingSegment - grapheme dfn @@ -1345,7 +1470,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_grapheme +https://www.w3.org/TR/i18n-glossary/#dfn-grapheme 1 - @@ -1375,7 +1500,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_grapheme_cluster +https://w3c.github.io/i18n-glossary/#dfn-grapheme-cluster 1 - @@ -1405,27 +1530,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_grapheme_cluster -1 - -- -graphemes -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_grapheme -1 - -- -graphemes -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_grapheme +https://www.w3.org/TR/i18n-glossary/#dfn-grapheme-cluster 1 - @@ -1441,23 +1546,13 @@ https://w3c.github.io/aria/#dfn-graphical-document - graphical document dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-graphical-document +https://w3c.github.io/aria/#dfn-graphical-document -1 -- -graphical document -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-graphical-document -1 - graphical document dfn @@ -1499,15 +1594,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-graphical-document - -graphical documents +graphical document dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-graphical-document +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-graphical-document + -1 - graphical documents dfn @@ -1569,6 +1664,28 @@ https://www.w3.org/TR/SVG2/struct.html#graphics-referencing-element 1 1 - +graphics-optimized +enum-value +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrlayerquality-graphics-optimized +1 +1 +XRLayerQuality +- +graphics-optimized +enum-value +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerquality-graphics-optimized +1 +1 +XRLayerQuality +- graphloadingstate record dfn ecmascript @@ -1591,6 +1708,26 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#g 1 ECMAScript - +graphs +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-graphs + +1 +- +graphs +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-graphs + +1 +- gravity dfn accelerometer @@ -1609,6 +1746,46 @@ accelerometer snapshot https://www.w3.org/TR/accelerometer/#gravity +1 +- +gravity sensor +dfn +accelerometer +accelerometer +1 +current +https://w3c.github.io/accelerometer/#gravity-sensor-sensor-type + +1 +- +gravity sensor +dfn +accelerometer +accelerometer +1 +snapshot +https://www.w3.org/TR/accelerometer/#gravity-sensor-sensor-type + +1 +- +gravity virtual sensor type +dfn +accelerometer +accelerometer +1 +current +https://w3c.github.io/accelerometer/#gravity-virtual-sensor-type + +1 +- +gravity virtual sensor type +dfn +accelerometer +accelerometer +1 +snapshot +https://www.w3.org/TR/accelerometer/#gravity-virtual-sensor-type + 1 - gray @@ -1631,6 +1808,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-gray 1 1 <color> +<named-color> - gray value @@ -1663,6 +1841,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-gray 1 1 <color> +<named-color> - grayscale() function @@ -1702,9 +1881,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-graytext +https://drafts.csswg.org/css-color-4/#valdef-color-graytext 1 1 +<color> <system-color> - graytext @@ -1723,9 +1903,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-graytext +https://www.w3.org/TR/css-color-4/#valdef-color-graytext 1 1 +<color> <system-color> - grdfd1 @@ -1737,6 +1918,16 @@ current https://w3c.github.io/rdf-semantics/spec/#dfn-grdfd1 +- +grdfd1 +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-grdfd1 + + - greater than dfn @@ -1758,6 +1949,94 @@ https://www.w3.org/TR/IndexedDB-3/#greater-than 1 - +greater(a, b) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-greater +1 +1 +MLGraphBuilder +- +greater(a, b) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater +1 +1 +MLGraphBuilder +- +greater(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-greater +1 +1 +MLGraphBuilder +- +greater(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater +1 +1 +MLGraphBuilder +- +greaterOrEqual(a, b) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-greaterorequal +1 +1 +MLGraphBuilder +- +greaterOrEqual(a, b) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal +1 +1 +MLGraphBuilder +- +greaterOrEqual(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-greaterorequal +1 +1 +MLGraphBuilder +- +greaterOrEqual(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal +1 +1 +MLGraphBuilder +- greater_than dfn wgsl @@ -1822,6 +2101,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-green 1 1 <color> +<named-color> - green value @@ -1854,6 +2134,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-green 1 1 <color> +<named-color> - greenyellow dfn @@ -1875,6 +2156,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-greenyellow 1 1 <color> +<named-color> - greenyellow dfn @@ -1896,6 +2178,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-greenyellow 1 1 <color> +<named-color> - gregorian calendar dfn @@ -1903,7 +2186,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_gregorian_calendar +https://w3c.github.io/i18n-glossary/#dfn-gregorian-calendar 1 - @@ -1913,7 +2196,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_gregorian_calendar +https://www.w3.org/TR/i18n-glossary/#dfn-gregorian-calendar 1 - @@ -1937,6 +2220,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-grey 1 1 <color> +<named-color> - grey dfn @@ -1958,14 +2242,65 @@ https://www.w3.org/TR/css-color-4/#valdef-color-grey 1 1 <color> +<named-color> +- +grey sample +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#3greyscale + +1 +- +grey sample +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3greyscale + +1 - greyscale dfn -png-spec -png-spec +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-greyscale + +1 +- +greyscale +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-greyscale + 1 +- +greyscale with alpha +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-greyscale +https://w3c.github.io/png/#dfn-greyscale-with-alpha + +1 +- +greyscale with alpha +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-greyscale-with-alpha 1 - @@ -2582,8 +2917,28 @@ dfn css-grid-2 css-grid 2 -snapshot -https://www.w3.org/TR/css-grid-2/#grid-layout +snapshot +https://www.w3.org/TR/css-grid-2/#grid-layout +1 +1 +- +grid layout algorithm +dfn +css-grid-1 +css-grid +1 +current +https://drafts.csswg.org/css-grid-1/#layout-algorithm +1 +1 +- +grid layout algorithm +dfn +css-grid-2 +css-grid +2 +current +https://drafts.csswg.org/css-grid-2/#layout-algorithm 1 1 - @@ -2833,7 +3188,7 @@ css-grid-1 css-grid 1 current -https://drafts.csswg.org/css-grid-1/#grid-sizing-algorithm +https://drafts.csswg.org/css-grid-1/#algo-grid-sizing 1 1 - @@ -2843,7 +3198,7 @@ css-grid-2 css-grid 2 current -https://drafts.csswg.org/css-grid-2/#grid-sizing-algorithm +https://drafts.csswg.org/css-grid-2/#algo-grid-sizing 1 1 - @@ -3247,6 +3602,17 @@ https://www.w3.org/TR/css-grid-2/#propdef-grid-column-start 1 1 - +grid-columns +value +css-display-4 +css-display +4 +current +https://drafts.csswg.org/css-display-4/#valdef-reading-flow-grid-columns +1 +1 +reading-flow +- grid-gap property css-align-3 @@ -3347,6 +3713,17 @@ https://www.w3.org/TR/css-grid-2/#grid-order 1 1 - +grid-order +value +css-display-4 +css-display +4 +current +https://drafts.csswg.org/css-display-4/#valdef-reading-flow-grid-order +1 +1 +reading-flow +- grid-placement property dfn css-grid-1 @@ -3527,6 +3904,17 @@ https://www.w3.org/TR/css-grid-2/#propdef-grid-row-start 1 1 - +grid-rows +value +css-display-4 +css-display +4 +current +https://drafts.csswg.org/css-display-4/#valdef-reading-flow-grid-rows +1 +1 +reading-flow +- grid-template property css-grid-1 @@ -3744,6 +4132,26 @@ border-style - groove value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-groove +1 +1 +- +groove +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-groove +1 +1 +- +groove +value css-backgrounds-3 css-backgrounds 3 @@ -3767,6 +4175,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-ground +1 +- +ground +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-ground + 1 - group @@ -3823,6 +4241,40 @@ GenerateTestReportParameters - group dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-group + +1 +network_reporting_endpoints +- +group +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-joinadinterestgroup-group-group +1 +1 +Navigator/joinAdInterestGroup(group) +- +group +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-leaveadinterestgroup-group-group +1 +1 +Navigator/leaveAdInterestGroup(group) +Navigator/leaveAdInterestGroup() +- +group +dfn wgsl wgsl 1 @@ -3895,23 +4347,13 @@ https://www.w3.org/Consortium/Process/#group-decision 1 1 - -group decision appeal -dfn -w3c-process -w3c-process -1 -current -https://www.w3.org/Consortium/Process/#wg-decision-appeal -1 -1 -- group depth dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-group-depth +https://urlpattern.spec.whatwg.org/#constructor-string-parser-group-depth 1 1 constructor string parser @@ -3926,6 +4368,27 @@ https://drafts.csswg.org/web-animations-2/#group-effect 1 - +group effect +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#group-effect + +1 +- +group has ad components +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-group-has-ad-components + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- group keyframes dfn css-view-transitions-1 @@ -3954,7 +4417,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#component-group-name-list +https://urlpattern.spec.whatwg.org/#component-group-name-list 1 component @@ -4083,6 +4546,28 @@ https://www.w3.org/TR/webgpu/#group-equivalent 1 - +groupBy(items, callback) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.groupby +1 +1 +Object +- +groupBy(items, callback) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.groupby +1 +1 +Map +- groupCollapsed() method console @@ -4259,6 +4744,108 @@ https://www.w3.org/TR/webgpu/#dom-gpudebugcommandsmixin-pushdebuggroup-grouplabe 1 GPUDebugCommandsMixin/pushDebugGroup(groupLabel) - +group_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-group_attr + +1 +syntax +- +group_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-group_attr + +1 +syntax +- +group_count_x +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#group_count_x + +1 +- +group_count_x +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#group_count_x + +1 +- +group_count_y +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#group_count_y + +1 +- +group_count_y +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#group_count_y + +1 +- +group_count_z +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#group_count_z + +1 +- +group_count_z +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#group_count_z + +1 +- +grouped +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#grouped + +1 +- +grouped +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#grouped + +1 +- groupid dfn mediacapture-streams @@ -4297,18 +4884,28 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-grouping-elements +1 +- +groups +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-manager-groups + 1 - groups dict-member -webnn -webnn +urlpattern +urlpattern 1 current -https://webmachinelearning.github.io/webnn/#dom-mlconv2doptions-groups +https://urlpattern.spec.whatwg.org/#dom-urlpatterncomponentresult-groups 1 1 -MLConv2dOptions +URLPatternComponentResult - groups dict-member @@ -4316,21 +4913,21 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlconvtranspose2doptions-groups +https://webmachinelearning.github.io/webnn/#dom-mlconv2doptions-groups 1 1 -MLConvTranspose2dOptions +MLConv2dOptions - groups dict-member -urlpattern -urlpattern +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterncomponentresult-groups +https://webmachinelearning.github.io/webnn/#dom-mlconvtranspose2doptions-groups 1 1 -URLPatternComponentResult +MLConvTranspose2dOptions - groups dict-member @@ -4354,6 +4951,26 @@ https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-groups 1 MLConvTranspose2dOptions - +grow the memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +current +https://webassembly.github.io/spec/js-api/#grow-the-memory-buffer + +1 +- +grow the memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#grow-the-memory-buffer + +1 +- grow(delta) method wasm-js-api-2 @@ -4420,6 +5037,39 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-table-grow 1 Table - +grow(newLength) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype.grow +1 +1 +SharedArrayBuffer +- +growable +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.growable +1 +1 +SharedArrayBuffer +- +growable sharedarraybuffer +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-fixed-length-and-growable-sharedarraybuffer-objects +1 +1 +ECMAScript +- growth limit dfn css-grid-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gt.data b/bikeshed/spec-data/readonly/anchors/anchors-gt.data new file mode 100644 index 0000000000..4a6f8f80dc --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-gt.data @@ -0,0 +1,20 @@ +<gt/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_gt + +1 +- +<gt/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_gt + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gy.data b/bikeshed/spec-data/readonly/anchors/anchors-gy.data index fe396a93fe..0ed0344761 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-gy.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-gy.data @@ -1,24 +1,22 @@ "gyroscope" -enum-value -generic-sensor -generic-sensor +permission +orientation-event +orientation-event 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-gyroscope +https://w3c.github.io/deviceorientation/#permissiondef-gyroscope 1 1 -MockSensorType - "gyroscope" -enum-value -generic-sensor -generic-sensor +permission +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-gyroscope +https://www.w3.org/TR/orientation-event/#permissiondef-gyroscope 1 1 -MockSensorType - Gyroscope interface @@ -104,26 +102,6 @@ https://www.w3.org/TR/gyroscope/#enumdef-gyroscopelocalcoordinatesystem 1 1 - -GyroscopeReadingValues -dictionary -gyroscope -gyroscope -1 -current -https://w3c.github.io/gyroscope/#dictdef-gyroscopereadingvalues -1 -1 -- -GyroscopeReadingValues -dictionary -gyroscope -gyroscope -1 -snapshot -https://www.w3.org/TR/gyroscope/#dictdef-gyroscopereadingvalues -1 -1 -- GyroscopeSensorOptions dictionary gyroscope @@ -164,3 +142,23 @@ https://www.w3.org/TR/gyroscope/#gyroscope-sensor-type 1 - +gyroscope virtual sensor type +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#gyroscope-virtual-sensor-type +1 +1 +- +gyroscope virtual sensor type +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#gyroscope-virtual-sensor-type +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-gz.data b/bikeshed/spec-data/readonly/anchors/anchors-gz.data new file mode 100644 index 0000000000..765e984b7d --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-gz.data @@ -0,0 +1,11 @@ +"gzip" +enum-value +compression +compression +1 +current +https://compression.spec.whatwg.org/#dom-compressionformat-gzip +1 +1 +CompressionFormat +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-h_.data b/bikeshed/spec-data/readonly/anchors/anchors-h_.data index a52385198b..80a49a528c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-h_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-h_.data @@ -186,3 +186,103 @@ https://www.w3.org/TR/css-color-5/#valdef-oklch-h 1 oklch() - +h +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl-h-s-l-alpha-h +1 +1 +CSSHSL/CSSHSL(h, s, l, alpha) +CSSHSL/constructor(h, s, l, alpha) +CSSHSL/CSSHSL(h, s, l) +CSSHSL/constructor(h, s, l) +- +h +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-h +1 +1 +CSSHSL +- +h +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-alpha-h +1 +1 +CSSHWB/CSSHWB(h, w, b, alpha) +CSSHWB/constructor(h, w, b, alpha) +CSSHWB/CSSHWB(h, w, b) +CSSHWB/constructor(h, w, b) +- +h +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-h +1 +1 +CSSHWB +- +h +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch-l-c-h-alpha-h +1 +1 +CSSLCH/CSSLCH(l, c, h, alpha) +CSSLCH/constructor(l, c, h, alpha) +CSSLCH/CSSLCH(l, c, h) +CSSLCH/constructor(l, c, h) +- +h +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-h +1 +1 +CSSLCH +- +h +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-alpha-h +1 +1 +CSSOKLCH/CSSOKLCH(l, c, h, alpha) +CSSOKLCH/constructor(l, c, h, alpha) +CSSOKLCH/CSSOKLCH(l, c, h) +CSSOKLCH/constructor(l, c, h) +- +h +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-h +1 +1 +CSSOKLCH +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ha.data b/bikeshed/spec-data/readonly/anchors/anchors-ha.data index 3ee13c43eb..897df38b7c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ha.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ha.data @@ -31,6 +31,17 @@ https://www.w3.org/TR/mediasession/#dom-mediasessionaction-hangup 1 MediaSessionAction - +"hardware" +enum-value +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-hardware +1 +1 +AudioContextRenderSizeCategory +- :has() selector selectors-4 @@ -89,26 +100,6 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#typedef-hash-token 1 -1 -- -@@hasInstance -const -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols -1 -1 -- -@@hasinstance -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/infrastructure.html#@@hasinstance - 1 - HAVE_CURRENT_DATA @@ -166,26 +157,167 @@ https://html.spec.whatwg.org/multipage/media.html#dom-media-have_nothing 1 HTMLMediaElement - -Handle failed font load +Handle errors abstract-op ift ift 1 current -https://w3c.github.io/IFT/Overview.html#abstract-opdef-handle-failed-font-load +https://w3c.github.io/IFT/Overview.html#abstract-opdef-handle-errors 1 1 - -Handle server response +Handle errors abstract-op ift ift 1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-handle-errors +1 +1 +- +HandwritingDrawing +interface +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwritingdrawing +1 +1 +- +HandwritingDrawingSegment +dictionary +handwriting-recognition +handwriting-recognition +1 current -https://w3c.github.io/IFT/Overview.html#abstract-opdef-handle-server-response +https://wicg.github.io/handwriting-recognition/#dictdef-handwritingdrawingsegment 1 1 - +HandwritingHints +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritinghints +1 +1 +- +HandwritingHintsQueryResult +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritinghintsqueryresult +1 +1 +- +HandwritingInputType +enum +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#enumdef-handwritinginputtype +1 +1 +- +HandwritingModelConstraint +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritingmodelconstraint +1 +1 +- +HandwritingPoint +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritingpoint +1 +1 +- +HandwritingPrediction +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritingprediction +1 +1 +- +HandwritingRecognitionType +enum +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#enumdef-handwritingrecognitiontype +1 +1 +- +HandwritingRecognizer +interface +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwritingrecognizer +1 +1 +- +HandwritingRecognizerQueryResult +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritingrecognizerqueryresult +1 +1 +- +HandwritingSegment +dictionary +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dictdef-handwritingsegment +1 +1 +- +HandwritingStroke +interface +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwritingstroke +1 +1 +- +HandwritingStroke() +constructor +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingstroke-handwritingstroke +1 +1 +HandwritingStroke +- HardwareAcceleration enum webcodecs @@ -215,7 +347,49 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-hasbinding-n 1 1 -Environment Records +Declarative Environment Records +- +HasBinding(N) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-hasbinding-n +1 +1 +Global Environment Records +- +HasBinding(N) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-hasbinding-n +1 +1 +Object Environment Records +- +HasEitherUnicodeFlag +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-haseitherunicodeflag-abstract-operation +1 +1 +- +HasEitherUnicodeFlag(rer) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-haseitherunicodeflag-abstract-operation +1 +1 - HasLexicalDeclaration(N) abstract-op @@ -226,6 +400,17 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-haslexicaldeclaration 1 1 +Global Environment Records +- +HasOwnProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hasownproperty +1 +1 - HasOwnProperty(O, P) abstract-op @@ -237,6 +422,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hasownproperty 1 1 - +HasProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hasproperty +1 +1 +- HasProperty(O, P) abstract-op ecmascript @@ -256,6 +451,7 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hasrestrictedglobalproperty 1 1 +Global Environment Records - HasSuperBinding() abstract-op @@ -266,7 +462,40 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-hassuperbinding 1 1 -Environment Records +Declarative Environment Records +- +HasSuperBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-function-environment-records-hassuperbinding +1 +1 +Function Environment Records +- +HasSuperBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-hassuperbinding +1 +1 +Global Environment Records +- +HasSuperBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-hassuperbinding +1 +1 +Object Environment Records - HasThisBinding() abstract-op @@ -277,7 +506,51 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-hasthisbinding 1 1 -Environment Records +Declarative Environment Records +- +HasThisBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-function-environment-records-hasthisbinding +1 +1 +Function Environment Records +- +HasThisBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-hasthisbinding +1 +1 +Global Environment Records +- +HasThisBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-module-environment-records-hasthisbinding +1 +1 +Module Environment Records +- +HasThisBinding() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-hasthisbinding +1 +1 +Object Environment Records - HasVarDeclaration(N) abstract-op @@ -288,6 +561,7 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hasvardeclaration 1 1 +Global Environment Records - HashAlgorithmIdentifier typedef @@ -319,6 +593,17 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#hashchangeeventinit 1 1 - +[[hand]] +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-hand + +1 +Gamepad +- [[handle]] attribute webcryptoapi @@ -332,7 +617,7 @@ CryptoKey - [[handler]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -343,15 +628,26 @@ PaymentRequest - [[handler]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-handler +https://www.w3.org/TR/payment-request/#dfn-handler 1 PaymentRequest - +[[hapticactuators]] +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-hapticactuators + +1 +Gamepad +- [[has ever been assigned as srcobject]] attribute media-source-2 @@ -396,6 +692,28 @@ https://www.w3.org/TR/media-source-2/#dfn-has-ever-been-attached 1 MediaSource - +[[hasBuilt]] +attribute +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hasbuilt-slot +1 +1 +MLGraphBuilder +- +[[hasBuilt]] +attribute +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hasbuilt-slot +1 +1 +MLGraphBuilder +- [[hasGamepadGesture]] attribute gamepad @@ -418,6 +736,17 @@ https://www.w3.org/TR/gamepad/#dfn-hasgamepadgesture 1 Navigator - +had conflicting credentials +dfn +prefetch +prefetch +1 +current +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-had-conflicting-credentials +1 +1 +prefetch record +- hadRecentInput attribute layout-instability @@ -488,6 +817,26 @@ snapshot https://www.w3.org/TR/css-text-4/#half-width 1 +- +halfwidth +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-halfwidth +1 + +- +halfwidth +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-halfwidth +1 + - hand attribute @@ -748,7 +1097,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-handle -1 + 1 - handle @@ -803,6 +1152,36 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#handle-a-connection-closing +1 +- +handle a redeem response +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#handle-a-redeem-response + +1 +- +handle a shared-storage-write response +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#handle-a-shared-storage-write-response + +1 +- +handle ad auction signals header value +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#handle-ad-auction-signals-header-value + 1 - handle an incoming message @@ -813,6 +1192,26 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#handle-an-incoming-message +1 +- +handle an input promise in configuration +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#handle-an-input-promise-in-configuration + +1 +- +handle an issue response +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#handle-an-issue-response + 1 - handle any user prompts @@ -863,6 +1262,56 @@ serial current https://wicg.github.io/serial/#dfn-handle-closing-the-readable-stream +1 +- +handle closing the tcpserversocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-handle-closing-the-tcpserversocket-readable-stream + +1 +- +handle closing the tcpsocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-handle-closing-the-tcpsocket-readable-stream + +1 +- +handle closing the tcpsocket writable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-handle-closing-the-tcpsocket-writable-stream + +1 +- +handle closing the udpsocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-handle-closing-the-udpsocket-readable-stream + +1 +- +handle closing the udpsocket writable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-handle-closing-the-udpsocket-writable-stream + 1 - handle closing the writable stream @@ -893,6 +1342,16 @@ xhr current https://xhr.spec.whatwg.org/#handle-errors +1 +- +handle event callback +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#handle-event-callback + 1 - handle fetch @@ -935,63 +1394,163 @@ https://www.w3.org/TR/service-workers/#dfn-handle-fetch-task-source 1 1 - -handle for an object +handle for an object +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#handle-for-an-object + +1 +- +handle functional event task source +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dfn-handle-functional-event-task-source +1 +1 +- +handle functional event task source +dfn +service-workers +service-workers +1 +snapshot +https://www.w3.org/TR/service-workers/#dfn-handle-functional-event-task-source +1 +1 +- +handle input for editcontext +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-handle-input-for-editcontext +1 +1 +- +handle media session action +dfn +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#handle-media-session-action + +1 +- +handle media session action +dfn +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#handle-media-session-action + +1 +- +handle native mouse click +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#handle-native-mouse-click + +1 +- +handle native mouse click +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#handle-native-mouse-click + +1 +- +handle native mouse double click +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#handle-native-mouse-double-click + +1 +- +handle native mouse double click +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#handle-native-mouse-double-click + +1 +- +handle native mouse down dfn -webdriver-bidi -webdriver-bidi +uievents +uievents 1 current -https://w3c.github.io/webdriver-bidi/#handle-for-an-object +https://w3c.github.io/uievents/#handle-native-mouse-down 1 - -handle functional event task source +handle native mouse down dfn -service-workers -service-workers -1 -current -https://w3c.github.io/ServiceWorker/#dfn-handle-functional-event-task-source +uievents +uievents 1 +snapshot +https://www.w3.org/TR/uievents/#handle-native-mouse-down + 1 - -handle functional event task source +handle native mouse move dfn -service-workers -service-workers -1 -snapshot -https://www.w3.org/TR/service-workers/#dfn-handle-functional-event-task-source +uievents +uievents 1 +current +https://w3c.github.io/uievents/#handle-native-mouse-move + 1 - -handle funky elements +handle native mouse move dfn -sanitizer-api -sanitizer-api +uievents +uievents 1 -current -https://wicg.github.io/sanitizer-api/#handle-funky-elements +snapshot +https://www.w3.org/TR/uievents/#handle-native-mouse-move 1 - -handle media session action +handle native mouse up dfn -mediasession -mediasession +uievents +uievents 1 current -https://w3c.github.io/mediasession/#handle-media-session-action +https://w3c.github.io/uievents/#handle-native-mouse-up 1 - -handle media session action +handle native mouse up dfn -mediasession -mediasession +uievents +uievents 1 snapshot -https://www.w3.org/TR/mediasession/#handle-media-session-action +https://www.w3.org/TR/uievents/#handle-native-mouse-up 1 - @@ -1033,6 +1592,16 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#handle-service-worker-client-unload +1 +- +handle topics response +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#handle-topics-response + 1 - handle transition frame @@ -1043,6 +1612,16 @@ css-view-transitions current https://drafts.csswg.org/css-view-transitions-1/#handle-transition-frame +1 +- +handle transition frame +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#handle-transition-frame + 1 - handle user agent shutdown @@ -1077,26 +1656,6 @@ https://dom.spec.whatwg.org/#dom-eventlistener-handleevent EventListener - handled -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/webappapis.html#concept-error-handled - -1 -- -handled -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/webappapis.html#concept-promise-rejection-handled - -1 -- -handled attribute service-workers service-workers @@ -1171,6 +1730,17 @@ https://encoding.spec.whatwg.org/#handler 1 - handler +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationinterceptoptions-handler +1 +1 +NavigationInterceptOptions +- +handler argument mediasession mediasession @@ -1182,15 +1752,15 @@ https://w3c.github.io/mediasession/#dom-mediasession-setactionhandler-action-han MediaSession/setActionHandler(action, handler) - handler -dict-member -navigation-api -navigation-api -1 +dfn +webdriver2 +webdriver +2 current -https://wicg.github.io/navigation-api/#dom-navigationinterceptoptions-handler -1 +https://w3c.github.io/webdriver/#dfn-handler + 1 -NavigationInterceptOptions +prompt handler configuration - handler argument @@ -1203,6 +1773,37 @@ https://www.w3.org/TR/mediasession/#dom-mediasession-setactionhandler-action-han 1 MediaSession/setActionHandler(action, handler) - +handler +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-handler + +1 +prompt handler configuration +- +handler key +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-handler-key + +1 +- +handler key +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-handler-key + +1 +- handling a canmakepaymentevent dfn payment-handler @@ -1301,6 +1902,16 @@ webpackage current https://wicg.github.io/webpackage/loading.html#handling-the-certificate-reference +1 +- +handwriting recognizer +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwriting-recognizer +1 1 - hang @@ -1575,6 +2186,17 @@ https://www.w3.org/TR/mediasession/#dom-mediasessionaction-hangup 1 MediaSessionAction - +happens-before +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-happens-before +1 +1 +ECMAScript +- hapticActuators attribute gamepad-extensions @@ -1660,51 +2282,29 @@ https://www.w3.org/TR/compositing-1/#valdef-blend-mode-hard-light 1 <blend-mode> - -hardSigmoid() -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-options -1 -1 -MLGraphBuilder -- -hardSigmoid() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-options -1 -1 -MLGraphBuilder -- -hardSigmoid(options) +hardSigmoid(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid 1 1 MLGraphBuilder - -hardSigmoid(options) +hardSigmoid(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid 1 1 MLGraphBuilder - -hardSigmoid(x) +hardSigmoid(input, options) method webnn webnn @@ -1715,7 +2315,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid 1 MLGraphBuilder - -hardSigmoid(x) +hardSigmoid(input, options) method webnn webnn @@ -1726,71 +2326,60 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid 1 MLGraphBuilder - -hardSigmoid(x, options) +hardSwish(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish 1 1 MLGraphBuilder - -hardSigmoid(x, options) +hardSwish(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish 1 1 MLGraphBuilder - -hardSwish() +hardSwish(input, options) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish%E2%91%A0 +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish 1 1 MLGraphBuilder - -hardSwish() +hardSwish(input, options) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish%E2%91%A0 +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish 1 1 MLGraphBuilder - -hardSwish(x) -method -webnn -webnn +hardware +enum-value +webaudio +webaudio 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish -1 -1 -MLGraphBuilder -- -hardSwish(x) -method -webnn -webnn +https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-hardware 1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish 1 -1 -MLGraphBuilder +AudioContextRenderSizeCategory - hardware enum-value @@ -1808,22 +2397,33 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#hardware-bound-device-key-pair +snapshot +https://www.w3.org/TR/webauthn-3/#hardware-bound-device-key-pair 1 - hardware-context-reset enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessionclosedreason-hardware-context-reset 1 1 MediaKeySessionClosedReason - +hardware-context-reset +enum-value +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessionclosedreason-hardware-context-reset +1 +1 +MediaKeySessionClosedReason +- hardware-encoder-error enum-value webrtc @@ -1912,24 +2512,43 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-hardwareacceleration 1 VideoEncoderConfig - -has +has a border dfn -encrypted-media -encrypted-media +html +html 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap-has +current +https://html.spec.whatwg.org/multipage/rendering.html#has-a-border 1 -mediakeystatusmap - -has a border +has a flag dfn -html -html +web-smart-card +web-smart-card 1 current -https://html.spec.whatwg.org/multipage/rendering.html#has-a-border +https://wicg.github.io/web-smart-card/#dfn-has-a-flag + +1 +- +has a home tab +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-has-a-home-tab + +1 +- +has a new tab button +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-has-a-new-tab-button 1 - @@ -2014,26 +2633,25 @@ https://dom.spec.whatwg.org/#concept-element-attribute-has 1 1 - -has been scrolled by the user +has been revealed dfn html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#has-been-scrolled-by-the-user +https://html.spec.whatwg.org/multipage/browsing-the-web.html#has-been-revealed 1 - has been scrolled by the user dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#document-has-been-scrolled-by-the-user +https://html.spec.whatwg.org/multipage/browsing-the-web.html#has-been-scrolled-by-the-user 1 -Document - has been shipped dfn @@ -2075,6 +2693,17 @@ https://www.w3.org/TR/compute-pressure/#dfn-has-change-in-data 1 - +has cross-origin data origin +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworklet-has-cross-origin-data-origin + +1 +SharedStorageWorklet +- has default method steps dfn webidl @@ -2091,7 +2720,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#has-dispatched-input-event +https://w3c.github.io/event-timing/#has-dispatched-input-event 1 - @@ -2127,14 +2756,13 @@ https://www.w3.org/TR/largest-contentful-paint/#has-dispatched-scroll-event - has entries and events disabled dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-has-entries-and-events-disabled +https://html.spec.whatwg.org/multipage/nav-history-apis.html#has-entries-and-events-disabled 1 -Navigation - has ever been evaluated flag dfn @@ -2158,53 +2786,106 @@ https://www.w3.org/TR/service-workers/#dfn-has-ever-been-evaluated-flag 1 script resource - +has fixed priority +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#tasksignal-has-fixed-priority + +1 +TaskSignal +- has focus steps dfn html html 1 current -https://html.spec.whatwg.org/multipage/interaction.html#has-focus-steps +https://html.spec.whatwg.org/multipage/interaction.html#has-focus-steps +1 +1 +- +has no style sheet that is blocking scripts +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics.html#has-no-style-sheet-that-is-blocking-scripts + +1 +- +has not shifted +dfn +layout-instability +layout-instability +1 +current +https://wicg.github.io/layout-instability/#has-not-shifted +1 +1 +- +has proxy configuration +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-has-proxy-configuration + 1 +- +has proxy configuration +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-has-proxy-configuration + 1 - -has no style sheet that is blocking scripts +has range limitations dfn html html 1 current -https://html.spec.whatwg.org/multipage/semantics.html#has-no-style-sheet-that-is-blocking-scripts +https://html.spec.whatwg.org/multipage/input.html#have-range-limitations 1 - -has not shifted +has regexp groups dfn -layout-instability -layout-instability +urlpattern +urlpattern 1 current -https://wicg.github.io/layout-instability/#has-not-shifted -1 +https://urlpattern.spec.whatwg.org/#component-has-regexp-groups + 1 +component - -has range limitations +has regexp groups dfn -html -html +urlpattern +urlpattern 1 current -https://html.spec.whatwg.org/multipage/input.html#have-range-limitations - +https://urlpattern.spec.whatwg.org/#url-pattern-has-regexp-groups +1 1 +URL pattern - -has reloaded for critical-ch +has scheduled selectionchange event dfn -client-hints-infrastructure -client-hints-infrastructure +selection-api +selection-api 1 current -https://wicg.github.io/client-hints-infrastructure/#has-reloaded-for-critical-ch +https://w3c.github.io/selection-api/#dfn-has-scheduled-selectionchange-event 1 - @@ -2290,17 +2971,6 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#source-snapshot-par 1 - -has updated credentials -dfn -prefetch -prefetch -1 -current -https://wicg.github.io/nav-speculation/prefetch.html#redirect-chain-has-updated-credentials - -1 -redirect chain -- has() method css-regions-1 @@ -2314,9 +2984,9 @@ NamedFlowMap - has() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap-has 1 @@ -2335,15 +3005,15 @@ https://www.w3.org/TR/css-regions-1/#dom-namedflowmap-has NamedFlowMap - has() -dfn -encrypted-media +method +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap-has - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatusmap-has +1 1 -mediakeystatusmap +MediaKeyStatusMap - has(cacheName) method @@ -2391,15 +3061,26 @@ WeakMap - has(keyId) method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap-has 1 1 MediaKeyStatusMap - +has(keyId) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatusmap-has +1 +1 +MediaKeyStatusMap +- has(name) method fetch @@ -2433,6 +3114,17 @@ https://xhr.spec.whatwg.org/#dom-formdata-has 1 FormData - +has(name, value) +method +url +url +1 +current +https://url.spec.whatwg.org/#dom-urlsearchparams-has +1 +1 +URLSearchParams +- has(property) method css-typed-om-1 @@ -2820,6 +3512,17 @@ https://wicg.github.io/webhid/#dom-hidreportitem-haspreferredstate 1 HIDReportItem - +hasPrivateToken(issuer) +method +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-document-hasprivatetoken +1 +1 +Document +- hasReading attribute generic-sensor @@ -2842,6 +3545,28 @@ https://www.w3.org/TR/generic-sensor/#dom-sensor-hasreading 1 Sensor - +hasRedemptionRecord(issuer) +method +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-document-hasredemptionrecord +1 +1 +Document +- +hasRegExpGroups +attribute +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-hasregexpgroups +1 +1 +URLPattern +- hasStorageAccess() method storage-access @@ -2853,6 +3578,61 @@ https://privacycg.github.io/storage-access/#dom-document-hasstorageaccess 1 Document - +hasUAVisualTransition +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-hasuavisualtransition +1 +1 +NavigateEvent +- +hasUAVisualTransition +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-hasuavisualtransition +1 +1 +NavigateEventInit +- +hasUAVisualTransition +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-popstateevent-hasuavisualtransition +1 +1 +PopStateEvent +- +hasUAVisualTransition +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-popstateeventinit-hasuavisualtransition +1 +1 +PopStateEventInit +- +hasUnpartitionedCookieAccess() +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-document-hasunpartitionedcookieaccess +1 +1 +Document +- hash attribute html @@ -2899,6 +3679,50 @@ URL - hash dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-hash +1 +1 +constructor string parser/state +- +hash +attribute +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-hash +1 +1 +URLPattern +- +hash +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-hash +1 +1 +URLPatternInit +- +hash +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-hash +1 +1 +URLPatternResult +- +hash +dfn rdf-canon rdf-canon 1 @@ -3008,56 +3832,12 @@ RsaHashedKeyGenParams - hash dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-hash -1 -1 -constructor string parser/state -- -hash -attribute -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpattern-hash -1 -1 -URLPattern -- -hash -dict-member -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-hash -1 -1 -URLPatternInit -- -hash -dict-member -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-hash -1 -1 -URLPatternResult -- -hash -dfn webcryptoapi webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaHashedKeyGenParams-hash -1 + 1 - hash @@ -3096,10 +3876,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-hash-component +https://urlpattern.spec.whatwg.org/#url-pattern-hash-component 1 -URLPattern +URL pattern - hash of the serialized client data dfn @@ -3215,22 +3995,22 @@ https://w3c.github.io/webappsec-subresource-integrity/#grammardef-hash-with-opti - hashChange attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-hashchange +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-hashchange 1 1 NavigateEvent - hashChange dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-hashchange +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-hashchange 1 1 NavigateEventInit @@ -3242,7 +4022,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HashAlgorithmIdentifier -1 + 1 - hashchange @@ -3255,6 +4035,46 @@ https://html.spec.whatwg.org/multipage/indices.html#event-hashchange 1 1 Window +- +hashing +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-hashing + + +- +hashing +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-hashing + + +- +hashing algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-hashing-algorithm + + +- +hashing algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-hashing-algorithm + + - have a particular element in button scope dfn @@ -3346,6 +4166,17 @@ https://webidl.spec.whatwg.org/#has-default-method-steps 1 - +have fixed priority +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#tasksignal-has-fixed-priority + +1 +TaskSignal +- have-local-offer enum-value webrtc diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hd.data b/bikeshed/spec-data/readonly/anchors/anchors-hd.data index 3ce3ca8da8..f82d7d4661 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hd.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hd.data @@ -16,6 +16,66 @@ media-capabilities snapshot https://www.w3.org/TR/media-capabilities/#enumdef-hdrmetadatatype 1 +1 +- +hdr +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-hdr + +1 +- +hdr +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-hdr + +1 +- +hdr headroom +dfn +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#hdr-headroom +1 +1 +- +hdr10 static metadata +dfn +av1-hdr10plus +av1-hdr10plus +1 +current +https://aomediacodec.github.io/av1-hdr10plus/#hdr10-static-metadata + +1 +- +hdr10+ metadata +dfn +av1-hdr10plus +av1-hdr10plus +1 +current +https://aomediacodec.github.io/av1-hdr10plus/#hdr10-metadata + +1 +- +hdr10+ metadata obu +dfn +av1-hdr10plus +av1-hdr10plus +1 +current +https://aomediacodec.github.io/av1-hdr10plus/#hdr10-metadata-obu + 1 - hdrMetadataType diff --git a/bikeshed/spec-data/readonly/anchors/anchors-he.data b/bikeshed/spec-data/readonly/anchors/anchors-he.data index 46f5fb745c..b13a03826c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-he.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-he.data @@ -246,6 +246,16 @@ html current https://html.spec.whatwg.org/multipage/sections.html#the-header-element 1 +1 +- +header errors debug data type +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#header-errors-debug-data-type + 1 - header integrity @@ -385,6 +395,17 @@ https://fetch.spec.whatwg.org/#concept-cache-match-header 1 - +header-parsing-error +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#header-errors-debug-data-type-header-parsing-error + +1 +header errors debug data type +- headerBytesReceived dict-member webrtc-stats @@ -596,28 +617,6 @@ https://fetch.spec.whatwg.org/#headers-guard - heading attribute -geolocation -geolocation -1 -current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-heading -1 -1 -GeolocationCoordinates -- -heading -dict-member -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-heading -1 -1 -GeolocationReadingValues -- -heading -attribute geolocation-sensor geolocation-sensor 1 @@ -639,15 +638,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-heading GeolocationSensorReading - heading -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-heading +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-heading 1 1 -GeolocationReadingValues +GeolocationCoordinates - heading attribute @@ -735,6 +734,16 @@ https://www.w3.org/TR/css-counter-styles-3/#hebrew <counter-style-name> - height +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#height + +1 +- +height attribute css-paint-api-1 css-paint-api @@ -757,6 +766,17 @@ https://drafts.css-houdini.org/font-metrics-api-1/#dom-fontmetrics-height FontMetrics - height +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-height +1 +1 +CSSPositionTryDescriptors +- +height value css-anchor-position-1 css-anchor-position @@ -769,11 +789,11 @@ anchor-size() - height descriptor -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#descdef-container-height +https://drafts.csswg.org/css-conditional-5/#descdef-container-height 1 1 @container @@ -1094,10 +1114,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#extent3d-height +https://gpuweb.github.io/gpuweb/#gpuextent3d-height 1 -Extent3D +GPUExtent3D - height element-attr @@ -1168,7 +1188,6 @@ current https://html.spec.whatwg.org/multipage/embedded-content-other.html#dom-dim-height 1 1 -HTMLImageElement HTMLIFrameElement HTMLEmbedElement HTMLObjectElement @@ -1320,14 +1339,15 @@ https://immersive-web.github.io/layers/#dom-xrquadlayerinit-height XRQuadLayerInit - height -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-height - 1 +1 +model - height attribute @@ -1341,6 +1361,28 @@ https://immersive-web.github.io/raw-camera-access/#dom-xrcamera-height XRCamera - height +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-height +1 +1 +XRWorldMeshFeature +- +height +attribute +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-height-height +1 +1 +XRWorldMeshFeature/height +- +height attribute webxr webxr @@ -1568,16 +1610,6 @@ https://w3c.github.io/webcodecs/#dom-videoencoderconfig-height 1 1 VideoEncoderConfig -- -height -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-height - - - height dict-member @@ -1603,17 +1635,94 @@ RTCVideoSourceStats - height dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-height +https://w3c.github.io/window-management/#screen-height 1 screen - height dict-member +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureoptions-height +1 +1 +DocumentPictureInPictureOptions +- +height +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-htmlfencedframeelement-height +1 +1 +HTMLFencedFrameElement +- +height +element-attr +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#element-attrdef-fencedframe-height +1 +1 +fencedframe +- +height +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#size-height +1 +1 +size +- +height +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-size-height + +1 +ad size +- +height +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-adrender-height +1 +1 +AdRender +- +height +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroupsize-height +1 +1 +AuctionAdInterestGroupSize +- +height +dict-member video-rvfc video-rvfc 1 @@ -1624,6 +1733,26 @@ https://wicg.github.io/video-rvfc/#dom-videoframecallbackmetadata-height VideoFrameCallbackMetadata - height +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-height +1 +1 +- +height +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-height +1 +1 +- +height dfn css22 css @@ -1711,6 +1840,28 @@ https://www.w3.org/TR/SVG2/struct.html#__svg__SVGUseElement__height SVGUseElement - height +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-size-height +1 +1 +anchor-size() +- +height +descriptor +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#descdef-container-height +1 +1 +@container +- +height descriptor css-contain-3 css-contain @@ -1927,6 +2078,28 @@ https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-height DOMRectReadOnly - height +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mpadded-height +1 +1 +mpadded +- +height +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mspace-height +1 +1 +mspace +- +height dict-member media-capabilities media-capabilities @@ -2066,16 +2239,6 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-height 1 1 VideoEncoderConfig -- -height -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-height - - - height dict-member @@ -2127,10 +2290,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#extent3d-height +https://www.w3.org/TR/webgpu/#gpuextent3d-height 1 -Extent3D +GPUExtent3D - height dict-member @@ -2155,16 +2318,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcvideosourcestats-height RTCVideoSourceStats - height -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-height - -1 -- -height attribute webxr-depth-sensing-1 webxr-depth-sensing @@ -2221,11 +2374,11 @@ XRQuadLayerInit - height dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-height +https://www.w3.org/TR/window-management/#screen-height 1 screen @@ -2252,6 +2405,17 @@ https://www.w3.org/TR/geometry-1/#rectangle-height-dimension 1 rectangle - +height units +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-size-height-units + +1 +ad size +- held dict-member web-locks @@ -2391,10 +2555,10 @@ webcodecs-hevc-codec-registration webcodecs-hevc-codec-registration 1 current -https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-avcbitstreamformat-hevc +https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-hevcbitstreamformat-hevc 1 1 -AvcBitstreamFormat +HevcBitstreamFormat - hevc dict-member @@ -2408,15 +2572,26 @@ https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-videoencodercon VideoEncoderConfig - hevc +dict-member +webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +1 +current +https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-videoencoderencodeoptions-hevc +1 +1 +VideoEncoderEncodeOptions +- +hevc enum-value webcodecs-hevc-codec-registration webcodecs-hevc-codec-registration 1 snapshot -https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-avcbitstreamformat-hevc +https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-hevcbitstreamformat-hevc 1 1 -AvcBitstreamFormat +HevcBitstreamFormat - hevc dict-member @@ -2429,6 +2604,17 @@ https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-videoencoderconfig- 1 VideoEncoderConfig - +hevc +dict-member +webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-videoencoderencodeoptions-hevc +1 +1 +VideoEncoderEncodeOptions +- hex color dfn css-color-4 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hh.data b/bikeshed/spec-data/readonly/anchors/anchors-hh.data index 391cca78c3..ce4334b8ae 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hh.data @@ -4,7 +4,17 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn_percent-encoding +https://w3c.github.io/i18n-glossary/#dfn-percent-encoding +1 + +- +%hh encoding +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-percent-encoding 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hi.data b/bikeshed/spec-data/readonly/anchors/anchors-hi.data index d22b9bafae..340bff9d87 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hi.data @@ -44,6 +44,17 @@ RequestPriority - "high" enum-value +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmeshquality-high +1 +1 +XRMeshQuality +- +"high" +enum-value webrtc-priority webrtc-priority 1 @@ -214,6 +225,28 @@ https://www.w3.org/TR/css-fonts-4/#historical-lig-values 1 1 - +@historical-forms +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-historical-forms +1 +1 +@font-feature-values +- +@historical-forms +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-historical-forms +1 +1 +@font-feature-values +- HID interface webhid @@ -671,7 +704,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#hidden-state-(type=hidden) +https://html.spec.whatwg.org/multipage/input.html#hidden-state-(type%3Dhidden) 1 1 input @@ -693,12 +726,22 @@ html html 1 current -https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-hidden-keyword +https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-hidden 1 1 html-global/hidden - hidden +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-hidden-state + +1 +- +hidden attribute html html @@ -721,14 +764,15 @@ https://html.spec.whatwg.org/multipage/interaction.html#dom-hidden HTMLElement - hidden -dfn +enum-value html html 1 current https://html.spec.whatwg.org/multipage/media.html#dom-texttrack-hidden - 1 +1 +TextTrackMode - hidden dfn @@ -775,13 +819,14 @@ element - hidden dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-hidden - +https://w3c.github.io/aria/#dfn-hidden 1 + +element - hidden dfn @@ -827,13 +872,23 @@ https://w3c.github.io/svg-aam/#dfn-hidden - hidden -dfn -accname-1.2 -accname +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-hidden +1 +1 +- +hidden +value +css2 +css 1 snapshot -https://www.w3.org/TR/accname-1.2/#dfn-hidden - +https://www.w3.org/TR/CSS21/box.html#value-def-hidden +1 1 - hidden @@ -940,6 +995,17 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-hidden +- +hidden +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-hidden +1 + +element - hidden enum-value @@ -981,6 +1047,28 @@ current https://w3c.github.io/aria/#dfn-hide-from-all-users 1 +element +- +hidden from all users +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-hide-from-all-users +1 + +element +- +hidden from all users +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-hide-from-all-users +1 + element - hidden ruby annotation @@ -1001,16 +1089,6 @@ css-ruby snapshot https://www.w3.org/TR/css-ruby-1/#hidden-annotation -1 -- -hidden state -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-hidden-state - 1 - hidden state @@ -1023,7 +1101,7 @@ https://html.spec.whatwg.org/multipage/interactive-elements.html#command-facet-h 1 - -hidden until found state +hidden until found dfn html html @@ -1043,7 +1121,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight- 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - hiddenSize argument @@ -1055,7 +1132,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-wei 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - hiddenSize argument @@ -1067,7 +1143,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - hiddenSize argument @@ -1079,7 +1154,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-we 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - hiddenSize argument @@ -1091,7 +1165,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - hiddenSize argument @@ -1103,7 +1176,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentwe 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - hiddenSize argument @@ -1115,7 +1187,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweigh 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - hiddenSize argument @@ -1127,7 +1198,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentw 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - hiddenState argument @@ -1139,7 +1209,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-wei 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - hiddenState argument @@ -1151,7 +1220,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-we 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - hiddenState argument @@ -1163,7 +1231,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentwe 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - hiddenState argument @@ -1175,7 +1242,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentw 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - hide dfn @@ -1210,6 +1276,27 @@ https://fullscreen.spec.whatwg.org/#dom-fullscreennavigationui-hide FullscreenNavigationUI - hide +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-hide +1 +1 +html-global/popovertargetaction +- +hide +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-hide-state + +1 +- +hide dfn css-ruby-1 css-ruby @@ -1229,35 +1316,47 @@ https://html.spec.whatwg.org/multipage/popover.html#hide-popover-algorithm 1 - -hide all popovers +hide all popovers until dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#hide-all-popovers +https://html.spec.whatwg.org/multipage/popover.html#hide-all-popovers-until 1 1 - -hide all popovers until +hide from all users dfn -html -html +wai-aria-1.2 +wai-aria 1 current -https://html.spec.whatwg.org/multipage/popover.html#hide-all-popovers-until - +https://w3c.github.io/aria/#dfn-hide-from-all-users 1 + +element - hide from all users dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 current https://w3c.github.io/aria/#dfn-hide-from-all-users 1 +element +- +hide from all users +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-hide-from-all-users +1 + element - hide() @@ -1305,6 +1404,17 @@ https://html.spec.whatwg.org/multipage/grouping-content.html#hierarchically-corr - high value +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#valdef-dynamic-range-limit-high +1 +1 +dynamic-range-limit +- +high +value css-speech-1 css-speech 1 @@ -1490,6 +1600,16 @@ https://www.w3.org/TR/mediaqueries-5/#contrast-ratio-high-contrast-ratio 1 contrast ratio - +high dynamic range +dfn +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#high-dynamic-range +1 +1 +- high peak brightness dfn mediaqueries-5 @@ -1520,6 +1640,16 @@ streams current https://streams.spec.whatwg.org/#high-water-mark 1 +1 +- +high word +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-high-word + 1 - high-entropy client hint @@ -1552,6 +1682,28 @@ https://www.w3.org/TR/generic-sensor/#high-level 1 - +high-performance +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlpowerpreference-high-performance +1 +1 +MLPowerPreference +- +high-performance +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlpowerpreference-high-performance +1 +1 +MLPowerPreference +- high-quality value css-images-3 @@ -1640,6 +1792,16 @@ https://streams.spec.whatwg.org/#dom-queuingstrategyinit-highwatermark 1 QueuingStrategyInit - +high_bitdepth +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#high_bitdepth +1 +1 +- highest end timestamp dfn media-source-2 @@ -1660,6 +1822,72 @@ https://www.w3.org/TR/media-source-2/#highest-end-timestamp 1 - +highest scoring other bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-highest-scoring-other-bid + +1 +leading bid info +- +highest scoring other bid owner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-highest-scoring-other-bid-owner + +1 +leading bid info +- +highest scoring other bids count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-highest-scoring-other-bids-count + +1 +leading bid info +- +highest-scoring-other-bid +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value-highest-scoring-other-bid + +1 +signal base value +- +highestScoringOtherBid +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-highestscoringotherbid +1 +1 +ReportingBrowserSignals +- +highestScoringOtherBidCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-highestscoringotherbidcurrency +1 +1 +ReportingBrowserSignals +- highlight dfn css-color-3 @@ -1676,9 +1904,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-highlight +https://drafts.csswg.org/css-color-4/#valdef-color-highlight 1 1 +<color> <system-color> - highlight @@ -1697,9 +1926,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-highlight +https://www.w3.org/TR/css-color-4/#valdef-color-highlight 1 1 +<color> <system-color> - highlight overlay @@ -1800,9 +2030,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-highlighttext +https://drafts.csswg.org/css-color-4/#valdef-color-highlighttext 1 1 +<color> <system-color> - highlighttext @@ -1821,9 +2052,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-highlighttext +https://www.w3.org/TR/css-color-4/#valdef-color-highlighttext 1 1 +<color> <system-color> - highpass @@ -1903,16 +2135,82 @@ https://streams.spec.whatwg.org/#writablestream-set-up-highwatermark 1 WritableStream/set up - +hint +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent_hint + +1 +- hints dict-member -webgpu -webgpu +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-hints +1 +1 +PublicKeyCredentialCreationOptions +- +hints +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptionsjson-hints +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +hints +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialrequestoptions-hints +1 +1 +PublicKeyCredentialRequestOptions +- +hints +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialrequestoptionsjson-hints +1 +1 +PublicKeyCredentialRequestOptionsJSON +- +hints +argument +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizer-startdrawing-hints-hints +1 +1 +HandwritingRecognizer/startDrawing(hints) +HandwritingRecognizer/startDrawing() +- +hints +dict-member +handwriting-recognition +handwriting-recognition 1 current -https://gpuweb.github.io/gpuweb/#dom-gpushadermoduledescriptor-hints +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizerqueryresult-hints 1 1 -GPUShaderModuleDescriptor +HandwritingRecognizerQueryResult - hints argument @@ -1927,14 +2225,47 @@ NavigatorUAData/getHighEntropyValues(hints) - hints dict-member -webgpu -webgpu +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-hints +1 +1 +PublicKeyCredentialCreationOptions +- +hints +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-hints +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +hints +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-hints 1 +1 +PublicKeyCredentialRequestOptions +- +hints +dict-member +webauthn-3 +webauthn +3 snapshot -https://www.w3.org/TR/webgpu/#dom-gpushadermoduledescriptor-hints +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-hints 1 1 -GPUShaderModuleDescriptor +PublicKeyCredentialRequestOptionsJSON - hiragana value @@ -2044,6 +2375,17 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-ligatures-historical-liga 1 font-variant-ligatures - +historicalForms +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfeaturevaluesrule-historicalforms +1 +1 +CSSFontFeatureValuesRule +- history attribute html @@ -2057,11 +2399,11 @@ Window - history dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationnavigateoptions-history +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationnavigateoptions-history 1 1 NavigationNavigateOptions @@ -2094,6 +2436,26 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-history-policy-container +1 +- +history-action activation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#history-action-activation + +1 +- +history-action activation-consuming api +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#history-action-activation-consuming-api +1 1 - history-navigation flag @@ -2114,8 +2476,9 @@ html 1 current https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-hh - 1 +1 +navigate - historyhandling dfn @@ -2127,6 +2490,28 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#uhus-historyhandlin 1 - +hit global limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-rate-limit-result-hit-global-limit + +1 +destination rate-limit result +- +hit reporting limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-rate-limit-result-hit-reporting-limit + +1 +destination rate-limit result +- hit test dfn pointerevents3 @@ -2136,6 +2521,16 @@ current https://w3c.github.io/pointerevents/#dfn-hit-test +- +hit test +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#hit-test + +1 - hit test dfn @@ -2146,6 +2541,16 @@ snapshot https://www.w3.org/TR/pointerevents3/#dfn-hit-test +- +hit test +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#hit-test + +1 - hit-test dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hk.data b/bikeshed/spec-data/readonly/anchors/anchors-hk.data index c1f148e5fb..4a831be40c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hk.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hk.data @@ -15,6 +15,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HkdfParams -1 + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hl.data b/bikeshed/spec-data/readonly/anchors/anchors-hl.data index 8b33febc84..0865ca4c5b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hl.data @@ -54,6 +54,16 @@ https://w3c.github.io/media-capabilities/#dom-transferfunction-hlg TransferFunction - hlg +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-hlg + +1 +- +hlg enum-value webcodecs webcodecs @@ -76,6 +86,16 @@ https://www.w3.org/TR/media-capabilities/#dom-transferfunction-hlg TransferFunction - hlg +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-hlg + +1 +- +hlg enum-value webcodecs webcodecs diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hm.data b/bikeshed/spec-data/readonly/anchors/anchors-hm.data index 3cecb6b24e..c496af2a3f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hm.data @@ -48,6 +48,17 @@ https://w3c.github.io/webcrypto/#dfn-HmacKeyGenParams 1 1 - +hmac key +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#user-topics-state-hmac-key + +1 +user topics state +- hmac key export steps dfn webcryptoapi @@ -119,7 +130,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HmacImportParams -1 + 1 - hmackeyalgorithm @@ -129,7 +140,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HmacKeyAlgorithm -1 + 1 - hmackeygenparams @@ -139,6 +150,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HmacKeyGenParams -1 + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ho.data b/bikeshed/spec-data/readonly/anchors/anchors-ho.data index 2c1cd91c0f..e9c009c3b3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ho.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ho.data @@ -11,25 +11,14 @@ ContentCategory - "horizontal" enum-value -scroll-animations-1 -scroll-animations +webxr-plane-detection +webxr-plane-detection 1 current -https://drafts.csswg.org/scroll-animations-1/#dom-scrollaxis-horizontal +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplaneorientation-horizontal 1 1 -ScrollAxis -- -"horizontal" -enum-value -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#dom-scrollaxis-horizontal -1 -1 -ScrollAxis +XRPlaneOrientation - :host selector @@ -129,6 +118,26 @@ html current https://html.spec.whatwg.org/multipage/semantics-other.html#selector-hover +1 +- +:hover +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x32 +1 +1 +- +:hover +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x32 +1 1 - :hover @@ -151,6 +160,16 @@ https://www.w3.org/TR/selectors-4/#hover-pseudo 1 1 - +HostCallJobCallback +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostcalljobcallback +1 +1 +- HostCallJobCallback(jobCallback, V, argumentsList) abstract-op ecmascript @@ -161,6 +180,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +HostEnqueueFinalizationRegistryCleanupJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-host-cleanup-finalization-registry +1 +1 +- HostEnqueueFinalizationRegistryCleanupJob(finalizationRegistry) abstract-op ecmascript @@ -171,6 +200,36 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +HostEnqueueGenericJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuegenericjob +1 +1 +- +HostEnqueueGenericJob(job, realm) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuegenericjob +1 +1 +- +HostEnqueuePromiseJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuepromisejob +1 +1 +- HostEnqueuePromiseJob(job, realm) abstract-op ecmascript @@ -181,6 +240,36 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +HostEnqueueTimeoutJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuetimeoutjob +1 +1 +- +HostEnqueueTimeoutJob(timeoutJob, realm, milliseconds) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuetimeoutjob +1 +1 +- +HostEnsureCanAddPrivateElement +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hostensurecanaddprivateelement +1 +1 +- HostEnsureCanAddPrivateElement(O) abstract-op ecmascript @@ -191,7 +280,7 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hostensurecanaddp 1 1 - -HostEnsureCanCompileStrings(calleeRealm) +HostEnsureCanCompileStrings abstract-op ecmascript ecmascript @@ -201,6 +290,26 @@ https://tc39.es/ecma262/multipage/global-object.html#sec-hostensurecancompilestr 1 1 - +HostEnsureCanCompileStrings(calleeRealm, parameterStrings, bodyString, direct) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-hostensurecancompilestrings +1 +1 +- +HostEventSet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-hosteventset +1 +1 +- HostEventSet(execution) abstract-op ecmascript @@ -211,6 +320,16 @@ https://tc39.es/ecma262/multipage/memory-model.html#sec-hosteventset 1 1 - +HostFinalizeImportMeta +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-hostfinalizeimportmeta +1 +1 +- HostFinalizeImportMeta(importMeta, moduleRecord) abstract-op ecmascript @@ -221,6 +340,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-hostf 1 1 - +HostGetImportMetaProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-hostgetimportmetaproperties +1 +1 +- HostGetImportMetaProperties(moduleRecord) abstract-op ecmascript @@ -231,6 +360,36 @@ https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-hostg 1 1 - +HostGrowSharedArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-hostgrowsharedarraybuffer +1 +1 +- +HostGrowSharedArrayBuffer(buffer, newByteLength) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-hostgrowsharedarraybuffer +1 +1 +- +HostHasSourceTextAvailable +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-hosthassourcetextavailable +1 +1 +- HostHasSourceTextAvailable(func) abstract-op ecmascript @@ -241,6 +400,16 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-hosthassourcetext 1 1 - +HostLoadImportedModule +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-HostLoadImportedModule +1 +1 +- HostLoadImportedModule(referrer, specifier, hostDefined, payload) abstract-op ecmascript @@ -251,6 +420,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +HostMakeJobCallback +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostmakejobcallback +1 +1 +- HostMakeJobCallback(callback) abstract-op ecmascript @@ -261,6 +440,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +HostPromiseRejectionTracker +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-host-promise-rejection-tracker +1 +1 +- HostPromiseRejectionTracker(promise, operation) abstract-op ecmascript @@ -271,6 +460,46 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-host-prom 1 1 - +HostResizeArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-hostresizearraybuffer +1 +1 +- +HostResizeArrayBuffer(buffer, newByteLength) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-hostresizearraybuffer +1 +1 +- +HourFromTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-hourfromtime +1 +1 +- +HourFromTime(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-hourfromtime +1 +1 +- hold time dfn web-animations-1 @@ -293,6 +522,86 @@ https://www.w3.org/TR/web-animations-1/#animation-hold-time 1 animation - +holder +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-holders +1 +1 +- +holder +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-holders +1 +1 +- +holder's +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-holders +1 +1 +- +holder's +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-holders +1 +1 +- +holders +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-holders +1 +1 +- +holders +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-holders +1 +1 +- +holders' +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-holders +1 +1 +- +holders' +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-holders +1 +1 +- home attr-value html @@ -348,6 +657,26 @@ html current https://html.spec.whatwg.org/multipage/interaction.html#home-sequential-focus-navigation-order +1 +- +home tab context +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-home-tab-context + +1 +- +home_tab +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-home_tab + 1 - honeydew @@ -370,6 +699,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-honeydew 1 1 <color> +<named-color> - honeydew dfn @@ -391,6 +721,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-honeydew 1 1 <color> +<named-color> - honor user preferences for automatic text track selection dfn @@ -456,32 +787,6 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-n-honorific-suffi 1 - -horizontal -value -scroll-animations-1 -scroll-animations -1 -current -https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-horizontal -1 -1 -scroll() -scroll-timeline-axis -view-timeline-axis -- -horizontal -value -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#valdef-scroll-horizontal -1 -1 -scroll() -scroll-timeline-axis -view-timeline-axis -- horizontal axis dfn css-writing-modes-3 @@ -608,9 +913,21 @@ css-backgrounds-3 css-backgrounds 3 current -https://drafts.csswg.org/css-backgrounds-3/#horizontal-offset - +https://drafts.csswg.org/css-backgrounds-3/#box-shadow-horizontal-offset +1 1 +box-shadow +- +horizontal offset +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-offset-horizontal-offset +1 +1 +box-shadow-offset - horizontal offset dfn @@ -618,9 +935,10 @@ css-backgrounds-3 css-backgrounds 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#horizontal-offset - +https://www.w3.org/TR/css-backgrounds-3/#box-shadow-horizontal-offset +1 1 +box-shadow - horizontal script dfn @@ -700,6 +1018,16 @@ css-writing-modes current https://drafts.csswg.org/css-writing-modes-4/#horizontal-writing-mode 1 +1 +- +horizontal writing mode +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/rendering.html#horizontal-writing-mode + 1 - horizontal writing mode @@ -1073,16 +1401,6 @@ https://tc39.es/ecma262/multipage/overview.html#host-hook 1 1 ECMAScript -- -host institutions -dfn -w3c-process -w3c-process -1 -current -https://www.w3.org/Consortium/Process/#hosts - - - host interfaces dfn @@ -1347,6 +1665,17 @@ https://www.w3.org/TR/CSP3/#grammardef-host-source 1 1 - +host-synchronizes-with +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-host-synchronizes-with +1 +1 +ECMAScript +- hostcalljobcallback dfn html @@ -1365,6 +1694,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuefinalizationregistrycleanupjob +1 +- +hostenqueuegenericjob +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuegenericjob + 1 - hostenqueuepromisejob @@ -1375,6 +1714,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuepromisejob +1 +- +hostenqueuetimeoutjob +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuetimeoutjob + 1 - hostensurecanaddprivateelement @@ -1393,7 +1742,17 @@ html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#hostensurecancompilestrings(realm) +https://html.spec.whatwg.org/multipage/webappapis.html#hostensurecancompilestrings(realm%2C-parameterstrings%2C-bodystring%2C-codestring%2C-compilationtype%2C-parameterargs%2C-bodyarg) + +1 +- +hostgetcodeforeval +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#hostgetcodeforeval(argument) 1 - @@ -1407,13 +1766,13 @@ https://html.spec.whatwg.org/multipage/webappapis.html#hostgetimportmetaproperti 1 - -hostgetsupportedimportassertions +hostgetsupportedimportattributes dfn html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#hostgetsupportedimportassertions +https://html.spec.whatwg.org/multipage/webappapis.html#hostgetsupportedimportattributes 1 - @@ -1487,7 +1846,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-hostname +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-hostname 1 1 constructor string parser/state @@ -1498,7 +1857,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-hostname +https://urlpattern.spec.whatwg.org/#dom-urlpattern-hostname 1 1 URLPattern @@ -1509,7 +1868,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-hostname +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-hostname 1 1 URLPatternInit @@ -1520,21 +1879,31 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-hostname +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-hostname 1 1 URLPatternResult - +hostname +dfn +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#hostname + +1 +- hostname component dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-hostname-component +https://urlpattern.spec.whatwg.org/#url-pattern-hostname-component 1 -URLPattern +URL pattern - hostname ipv6 bracket depth dfn @@ -1542,7 +1911,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-hostname-ipv6-bracket-depth +https://urlpattern.spec.whatwg.org/#constructor-string-parser-hostname-ipv6-bracket-depth 1 1 constructor string parser @@ -1553,7 +1922,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#hostname-options +https://urlpattern.spec.whatwg.org/#hostname-options 1 - @@ -1563,7 +1932,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#hostname-pattern-is-an-ipv6-address +https://urlpattern.spec.whatwg.org/#hostname-pattern-is-an-ipv6-address 1 - @@ -1599,15 +1968,15 @@ https://tc39.es/ecma262/multipage/overview.html#host 1 ECMAScript - -hosts +hostsystemutcepochnanoseconds dfn -w3c-process -w3c-process +html +html 1 current -https://www.w3.org/Consortium/Process/#hosts - +https://html.spec.whatwg.org/multipage/webappapis.html#hostsystemutcepochnanoseconds +1 - hotpink dfn @@ -1629,6 +1998,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-hotpink 1 1 <color> +<named-color> - hotpink dfn @@ -1650,6 +2020,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-hotpink 1 1 <color> +<named-color> - hover descriptor @@ -1739,6 +2110,26 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-hover-hover 1 @media/hover - +hover (pseudo-class) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x32 +1 +1 +- +hover (pseudo-class) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x32 +1 +1 +- how argument dom diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hr.data b/bikeshed/spec-data/readonly/anchors/anchors-hr.data index 524e0b601c..ea13e6ad98 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hr.data @@ -53,6 +53,17 @@ https://html.spec.whatwg.org/multipage/grouping-content.html#the-hr-element 1 - href +element-attr +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#element-attrdef-a-href +1 +1 +a +- +href attribute cssom-1 cssom diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hs.data b/bikeshed/spec-data/readonly/anchors/anchors-hs.data index 8328b38ddb..6f3dcddb9b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hs.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hs.data @@ -32,16 +32,6 @@ https://drafts.csswg.org/css-color-4/#funcdef-hsl - hsl() function -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#funcdef-hsl -1 -1 -- -hsl() -function css-color-4 css-color 4 @@ -50,16 +40,6 @@ https://www.w3.org/TR/css-color-4/#funcdef-hsl 1 1 - -hsl() -function -css-color-5 -css-color -5 -snapshot -https://www.w3.org/TR/css-color-5/#funcdef-hsl -1 -1 -- hsla() function css-color-4 @@ -72,16 +52,6 @@ https://drafts.csswg.org/css-color-4/#funcdef-hsla - hsla() function -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#funcdef-hsla -1 -1 -- -hsla() -function css-color-4 css-color 4 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ht.data b/bikeshed/spec-data/readonly/anchors/anchors-ht.data index 9884245aa3..b14c2e30c4 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ht.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ht.data @@ -208,6 +208,27 @@ https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmlembedelement 1 1 - +HTMLFencedFrameElement +interface +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#htmlfencedframeelement +1 +1 +- +HTMLFencedFrameElement() +constructor +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-htmlfencedframeelement-htmlfencedframeelement +1 +1 +HTMLFencedFrameElement +- HTMLFieldSetElement interface html @@ -659,6 +680,16 @@ https://html.spec.whatwg.org/multipage/form-elements.html#htmlselectelement 1 1 - +HTMLSharedStorageWritableElementUtils +interface +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#htmlsharedstoragewritableelementutils +1 +1 +- HTMLSlotElement interface html @@ -689,26 +720,6 @@ https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlspanelement 1 1 - -HTMLString -typedef -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#typedefdef-htmlstring -1 -1 -- -HTMLString -typedef -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#typedefdef-htmlstring -1 -1 -- HTMLStyleElement interface html @@ -869,6 +880,78 @@ https://html.spec.whatwg.org/multipage/semantics.html#the-html-element 1 1 - +html +argument +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtml-html-options-html +1 +1 +Document/parseHTML(html, options) +Document/parseHTML(html) +- +html +argument +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtmlunsafe-html-options-html +1 +1 +Document/parseHTMLUnsafe(html, options) +Document/parseHTMLUnsafe(html) +- +html +argument +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-element-sethtml-html-options-html +1 +1 +Element/setHTML(html, options) +Element/setHTML(html) +- +html +argument +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-element-sethtmlunsafe-html-options-html +1 +1 +Element/setHTMLUnsafe(html, options) +Element/setHTMLUnsafe(html) +- +html +argument +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtml-html-options-html +1 +1 +ShadowRoot/setHTML(html, options) +ShadowRoot/setHTML(html) +- +html +argument +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtmlunsafe-html-options-html +1 +1 +ShadowRoot/setHTMLUnsafe(html, options) +ShadowRoot/setHTMLUnsafe(html) +- html character reference in annotation state dfn webvtt1 @@ -1077,16 +1160,6 @@ json-ld-api snapshot https://www.w3.org/TR/json-ld11-api/#dfn-html-script-extraction -1 -- -html serialization -dfn -dom-parsing -dom-parsing -1 -current -https://w3c.github.io/DOM-Parsing/#dfn-html-serialization - 1 - html-ns @@ -1155,9 +1228,9 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#htmldocument - htmlmediaelement dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-htmlmediaelement @@ -1165,31 +1238,11 @@ https://w3c.github.io/encrypted-media/#dom-htmlmediaelement - htmlmediaelement dfn +encrypted-media-2 encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-htmlmediaelement - -1 -- -http authentication -dfn -presentation-api -presentation-api -1 -current -https://w3c.github.io/presentation-api/#dfn-http-authentication - -1 -- -http authentication -dfn -presentation-api -presentation-api -1 +2 snapshot -https://www.w3.org/TR/presentation-api/#dfn-http-authentication +https://www.w3.org/TR/encrypted-media-2/#dom-htmlmediaelement 1 - @@ -1221,6 +1274,26 @@ fetch current https://fetch.spec.whatwg.org/#concept-http-fetch 1 +1 +- +http flag +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-http-flag + +1 +- +http flag +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-http-flag + 1 - http header layer division @@ -1251,6 +1324,26 @@ mimesniff current https://mimesniff.spec.whatwg.org/#http-quoted-string-token-code-point +1 +- +http session +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-http-session + +1 +- +http session +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-http-session + 1 - http tab or space @@ -1366,11 +1459,11 @@ https://fetch.spec.whatwg.org/#concept-http-network-or-cache-fetch - http-no-service-worker fetch dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#http-no-service-worker-fetch +https://wicg.github.io/private-network-access/#http-no-service-worker-fetch 1 - @@ -1395,17 +1488,6 @@ https://fetch.spec.whatwg.org/#concept-http-redirect-fetch 1 1 - -http3only -dfn -fetch -fetch -1 -current -https://fetch.spec.whatwg.org/#obtain-a-connection-http3only -1 -1 -obtain a connection -- http://microformats.org/profile/hcalendar#vevent dfn html @@ -1469,23 +1551,3 @@ https://w3c.github.io/webrtc-identity/#dom-rtcerrorinit-httprequeststatuscode 1 RTCErrorInit - -httpproxy -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-httpproxy - -1 -- -httpproxy -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-httpproxy - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hu.data b/bikeshed/spec-data/readonly/anchors/anchors-hu.data index 11982bde04..f57c304f6d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hu.data @@ -28,6 +28,16 @@ https://www.w3.org/TR/css-color-4/#typedef-hue-interpolation-method 1 1 - +<hue-interpolation-method> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-hue-interpolation-method +1 +1 +- <hue> type css-color-4 @@ -131,17 +141,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-hugeframessent -1 - -RTCMediaStreamTrackStats -- -hugeFramesSent -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-hugeframessent 1 1 @@ -153,17 +152,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-hugeframessent -1 - -RTCMediaStreamTrackStats -- -hugeFramesSent -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-hugeframessent 1 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-hy.data b/bikeshed/spec-data/readonly/anchors/anchors-hy.data index 743e300208..69f02652b8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-hy.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-hy.data @@ -9,6 +9,50 @@ https://w3c.github.io/webauthn/#dom-authenticatortransport-hybrid 1 AuthenticatorTransport - +"hybrid" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialhints-hybrid +1 +1 +PublicKeyCredentialHints +- +"hybrid" +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-hybrid +1 +1 +AuthenticatorTransport +- +"hybrid" +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialhints-hybrid +1 +1 +PublicKeyCredentialHints +- +"hybridTransport" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-hybridtransport +1 +1 +ClientCapability +- hybrid enum-value webauthn-3 @@ -20,6 +64,70 @@ https://w3c.github.io/webauthn/#dom-authenticatortransport-hybrid 1 AuthenticatorTransport - +hybrid +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialhints-hybrid +1 +1 +PublicKeyCredentialHints +- +hybrid +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-hybrid +1 +1 +AuthenticatorTransport +- +hybrid +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialhints-hybrid +1 +1 +PublicKeyCredentialHints +- +hybridTransport +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-hybridtransport +1 +1 +ClientCapability +- +hyperbolic angle +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#hyperbolic-angle + +1 +- +hyperbolic angle +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#hyperbolic-angle + +1 +- hyperlink dfn html @@ -48,6 +156,26 @@ html current https://html.spec.whatwg.org/multipage/links.html#hyperlink-auditing +1 +- +hyperlinksuffix +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#downloading-hyperlinksuffix + +1 +- +hyperlinksuffix +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#following-hyperlinksuffix + 1 - hyphen-separated matching @@ -58,6 +186,26 @@ css current https://drafts.csswg.org/css2/#hyphen-separated-matching +1 +- +hyphen-separated matching +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x18 +1 +1 +- +hyphen-separated matching +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x18 +1 1 - hyphenate diff --git a/bikeshed/spec-data/readonly/anchors/anchors-i1.data b/bikeshed/spec-data/readonly/anchors/anchors-i1.data index c1e87c1e7c..c960773269 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-i1.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-i1.data @@ -4,7 +4,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#internationalization +https://w3c.github.io/i18n-glossary/#dfn-i18n 1 - @@ -24,7 +24,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#internationalization +https://www.w3.org/TR/i18n-glossary/#dfn-i18n 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-i3.data b/bikeshed/spec-data/readonly/anchors/anchors-i3.data index 1b5251f9f1..c384ef4b92 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-i3.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-i3.data @@ -35,30 +35,8 @@ dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-i32 - -1 -syntax_kw -- -i32 -dfn -wgsl -wgsl -1 snapshot https://www.w3.org/TR/WGSL/#i32 1 - -i32 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-i32 - -1 -syntax_kw -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-i4.data b/bikeshed/spec-data/readonly/anchors/anchors-i4.data index e0e25e343f..071bb85be7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-i4.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-i4.data @@ -42,6 +42,94 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420a 1 VideoPixelFormat - +"I420AP10" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420ap10 +1 +1 +VideoPixelFormat +- +"I420AP10" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420ap10 +1 +1 +VideoPixelFormat +- +"I420AP12" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420ap12 +1 +1 +VideoPixelFormat +- +"I420AP12" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420ap12 +1 +1 +VideoPixelFormat +- +"I420P10" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420p10 +1 +1 +VideoPixelFormat +- +"I420P10" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420p10 +1 +1 +VideoPixelFormat +- +"I420P12" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420p12 +1 +1 +VideoPixelFormat +- +"I420P12" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420p12 +1 +1 +VideoPixelFormat +- "I422" enum-value webcodecs @@ -64,6 +152,116 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422 1 VideoPixelFormat - +"I422A" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422a +1 +1 +VideoPixelFormat +- +"I422A" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422a +1 +1 +VideoPixelFormat +- +"I422AP10" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422ap10 +1 +1 +VideoPixelFormat +- +"I422AP10" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422ap10 +1 +1 +VideoPixelFormat +- +"I422AP12" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422ap12 +1 +1 +VideoPixelFormat +- +"I422AP12" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422ap12 +1 +1 +VideoPixelFormat +- +"I422P10" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422p10 +1 +1 +VideoPixelFormat +- +"I422P10" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422p10 +1 +1 +VideoPixelFormat +- +"I422P12" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422p12 +1 +1 +VideoPixelFormat +- +"I422P12" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422p12 +1 +1 +VideoPixelFormat +- "I444" enum-value webcodecs @@ -86,6 +284,116 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444 1 VideoPixelFormat - +"I444A" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444a +1 +1 +VideoPixelFormat +- +"I444A" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444a +1 +1 +VideoPixelFormat +- +"I444AP10" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444ap10 +1 +1 +VideoPixelFormat +- +"I444AP10" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444ap10 +1 +1 +VideoPixelFormat +- +"I444AP12" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444ap12 +1 +1 +VideoPixelFormat +- +"I444AP12" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444ap12 +1 +1 +VideoPixelFormat +- +"I444P10" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444p10 +1 +1 +VideoPixelFormat +- +"I444P10" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444p10 +1 +1 +VideoPixelFormat +- +"I444P12" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444p12 +1 +1 +VideoPixelFormat +- +"I444P12" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444p12 +1 +1 +VideoPixelFormat +- I420 enum-value webcodecs @@ -130,6 +438,94 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420a 1 VideoPixelFormat - +I420AP10 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420ap10 +1 +1 +VideoPixelFormat +- +I420AP10 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420ap10 +1 +1 +VideoPixelFormat +- +I420AP12 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420ap12 +1 +1 +VideoPixelFormat +- +I420AP12 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420ap12 +1 +1 +VideoPixelFormat +- +I420P10 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420p10 +1 +1 +VideoPixelFormat +- +I420P10 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420p10 +1 +1 +VideoPixelFormat +- +I420P12 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i420p12 +1 +1 +VideoPixelFormat +- +I420P12 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i420p12 +1 +1 +VideoPixelFormat +- I422 enum-value webcodecs @@ -152,6 +548,116 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422 1 VideoPixelFormat - +I422A +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422a +1 +1 +VideoPixelFormat +- +I422A +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422a +1 +1 +VideoPixelFormat +- +I422AP10 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422ap10 +1 +1 +VideoPixelFormat +- +I422AP10 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422ap10 +1 +1 +VideoPixelFormat +- +I422AP12 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422ap12 +1 +1 +VideoPixelFormat +- +I422AP12 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422ap12 +1 +1 +VideoPixelFormat +- +I422P10 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422p10 +1 +1 +VideoPixelFormat +- +I422P10 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422p10 +1 +1 +VideoPixelFormat +- +I422P12 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i422p12 +1 +1 +VideoPixelFormat +- +I422P12 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i422p12 +1 +1 +VideoPixelFormat +- I444 enum-value webcodecs @@ -174,3 +680,113 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444 1 VideoPixelFormat - +I444A +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444a +1 +1 +VideoPixelFormat +- +I444A +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444a +1 +1 +VideoPixelFormat +- +I444AP10 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444ap10 +1 +1 +VideoPixelFormat +- +I444AP10 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444ap10 +1 +1 +VideoPixelFormat +- +I444AP12 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444ap12 +1 +1 +VideoPixelFormat +- +I444AP12 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444ap12 +1 +1 +VideoPixelFormat +- +I444P10 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444p10 +1 +1 +VideoPixelFormat +- +I444P10 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444p10 +1 +1 +VideoPixelFormat +- +I444P12 +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videopixelformat-i444p12 +1 +1 +VideoPixelFormat +- +I444P12 +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videopixelformat-i444p12 +1 +1 +VideoPixelFormat +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ia.data b/bikeshed/spec-data/readonly/anchors/anchors-ia.data index 1a397103bc..12b7be87ca 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ia.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ia.data @@ -4,27 +4,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_iana_language_subtag_registry -1 - -- -iana language subtag registry -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_iana_language_subtag_registry -1 - -- -iana language subtag registry -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_iana_language_subtag_registry +https://w3c.github.io/i18n-glossary/#dfn-subtag-registry 1 - @@ -34,7 +14,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_iana_language_subtag_registry +https://www.w3.org/TR/i18n-glossary/#dfn-subtag-registry 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ic.data b/bikeshed/spec-data/readonly/anchors/anchors-ic.data index ec4a0ee64e..01ce0a4aaa 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ic.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ic.data @@ -20,6 +20,17 @@ https://www.w3.org/TR/contact-picker/#dom-contactproperty-icon 1 ContactProperty - +[[IceConnectionState]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-iceconnectionstate + +1 +RTCPeerConnection +- [[IceGathererState]] attribute webrtc @@ -40,6 +51,18 @@ snapshot https://www.w3.org/TR/webrtc/#dfn-icegathererstate 1 1 +RTCIceTransport +- +[[IceGatheringState]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-icegatheringstate + +1 +RTCPeerConnection - [[IceRole]] attribute @@ -61,6 +84,7 @@ snapshot https://www.w3.org/TR/webrtc/#dfn-icerole 1 1 +RTCIceTransport - [[IceTransportState]] attribute @@ -82,6 +106,7 @@ snapshot https://www.w3.org/TR/webrtc/#dfn-icetransportstate 1 1 +RTCIceTransport - ic value @@ -105,6 +130,17 @@ https://www.w3.org/TR/css-values-4/#ic 1 <length> - +ic unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#ic +1 +1 +<length> +- ic(value) method css-typed-om-1 @@ -209,16 +245,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-ice-candidate-pool-size -1 -- -ice connection state -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-ice-connection-state - 1 - ice connection state @@ -229,16 +255,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-ice-connection-state -1 -- -ice gathering state -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-ice-gathering-state - 1 - ice gathering state @@ -566,14 +582,15 @@ https://w3c.github.io/webrtc-pc/#event-icecandidate RTCPeerConnection - icecandidate -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-icecandidate +1 - +RTCPeerConnection - icecandidateerror event @@ -598,14 +615,35 @@ https://w3c.github.io/webrtc-pc/#event-icecandidateerror RTCPeerConnection - icecandidateerror -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-icecandidateerror +1 +RTCPeerConnection +- +icecast header +dfn +mse-byte-stream-format-mpeg-audio +mse-byte-stream-format-mpeg-audio +1 +current +https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#dfn-icecast-header + +1 +- +icecast header +dfn +mse-byte-stream-format-mpeg-audio +mse-byte-stream-format-mpeg-audio +1 +snapshot +https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#dfn-icecast-header +1 - iceconnectionstatechange event @@ -619,14 +657,15 @@ https://w3c.github.io/webrtc-pc/#event-iceconnectionstatechange RTCPeerConnection - iceconnectionstatechange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-iceconnectionstatechange +1 - +RTCPeerConnection - icegatheringstatechange event @@ -640,14 +679,15 @@ https://w3c.github.io/webrtc-pc/#event-icegatheringstatechange RTCPeerConnection - icegatheringstatechange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-icegatheringstatechange +1 - +RTCPeerConnection - icon value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-id.data b/bikeshed/spec-data/readonly/anchors/anchors-id.data index 14216daa83..1173c0c44f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-id.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-id.data @@ -99,6 +99,26 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#typedef-ident-token 1 +1 +- +<ident/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_ident + +1 +- +<ident/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_ident + 1 - <ident> @@ -605,6 +625,16 @@ https://fedidcg.github.io/FedCM/#identitycredential 1 1 - +IdentityCredentialDisconnectOptions +dictionary +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dictdef-identitycredentialdisconnectoptions +1 +1 +- IdentityCredentialRequestOptions dictionary fedcm @@ -615,6 +645,26 @@ https://fedidcg.github.io/FedCM/#dictdef-identitycredentialrequestoptions 1 1 - +IdentityCredentialRequestOptionsContext +enum +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#enumdef-identitycredentialrequestoptionscontext +1 +1 +- +IdentityProvider +interface +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#identityprovider +1 +1 +- IdentityProviderAPIConfig dictionary fedcm @@ -685,6 +735,16 @@ https://fedidcg.github.io/FedCM/#dictdef-identityprovidericon 1 1 - +IdentityProviderRequestOptions +dictionary +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dictdef-identityproviderrequestoptions +1 +1 +- IdentityProviderToken dictionary fedcm @@ -705,6 +765,16 @@ https://fedidcg.github.io/FedCM/#dictdef-identityproviderwellknown 1 1 - +IdentityUserInfo +dictionary +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dictdef-identityuserinfo +1 +1 +- IdleDeadline interface requestidlecallback @@ -924,6 +994,16 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#nested-history-id +1 +- +id +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-params-id + 1 - id @@ -997,6 +1077,59 @@ html html 1 current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationhistoryentry-id + +1 +- +id +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-id +1 +1 +NavigationDestination +- +id +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-id +1 +1 +NavigationHistoryEntry +- +id +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-id +1 +1 +NotRestoredReasons +- +id +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-id + +1 +- +id +dfn +html +html +1 +current https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-id 1 1 @@ -1063,9 +1196,10 @@ largest-contentful-paint largest-contentful-paint 1 current -https://w3c.github.io/largest-contentful-paint/#id +https://w3c.github.io/largest-contentful-paint/#largestcontentfulpaint-id 1 +LargestContentfulPaint - id dfn @@ -1097,6 +1231,16 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-id +1 +- +id +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-id + 1 - id @@ -1123,7 +1267,7 @@ MediaStreamTrack - id dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -1134,7 +1278,7 @@ PaymentDetailsInit - id attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -1144,6 +1288,28 @@ https://w3c.github.io/payment-request/#dom-paymentrequest-id PaymentRequest - id +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingoption-id +1 +1 +PaymentShippingOption +- +id +attribute +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dom-performanceentry-id +1 +1 +PerformanceEntry +- +id attribute presentation-api presentation-api @@ -1155,6 +1321,16 @@ https://w3c.github.io/presentation-api/#dom-presentationconnection-id PresentationConnection - id +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-id +1 +1 +- +id attribute web-nfc web-nfc @@ -1618,48 +1794,37 @@ https://wicg.github.io/intervention-reporting/#interventionreportbody-id InterventionReportBody - id -attribute -navigation-api -navigation-api +dict-member +performance-measure-memory +performance-measure-memory 1 current -https://wicg.github.io/navigation-api/#dom-navigationdestination-id +https://wicg.github.io/performance-measure-memory/#dom-memoryattributioncontainer-id 1 1 -NavigationDestination +MemoryAttributionContainer - id -attribute -navigation-api -navigation-api +dict-member +private-network-access +private-network-access 1 current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-id +https://wicg.github.io/private-network-access/#dom-privatenetworkaccesspermissiondescriptor-id 1 1 -NavigationHistoryEntry +PrivateNetworkAccessPermissionDescriptor - id dfn -navigation-api -navigation-api +turtledove +turtledove 1 current -https://wicg.github.io/navigation-api/#navigationdestination-id +https://wicg.github.io/turtledove/#generated-bid-id 1 -NavigationDestination -- -id -dict-member -performance-measure-memory -performance-measure-memory -1 -current -https://wicg.github.io/performance-measure-memory/#dom-memoryattributioncontainer-id -1 -1 -MemoryAttributionContainer +generated bid - id element-attr @@ -1755,18 +1920,29 @@ largest-contentful-paint largest-contentful-paint 1 snapshot -https://www.w3.org/TR/largest-contentful-paint/#id +https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-id 1 +LargestContentfulPaint - id -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-id +1 +- +id +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-id + 1 - id @@ -1793,27 +1969,49 @@ MediaStreamTrack - id dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit-id +https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit-id 1 1 PaymentDetailsInit - id attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-id +https://www.w3.org/TR/payment-request/#dom-paymentrequest-id 1 1 PaymentRequest - id +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-id +1 +1 +PaymentShippingOption +- +id +attribute +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dom-performanceentry-id +1 +1 +PerformanceEntry +- +id attribute presentation-api presentation-api @@ -1847,6 +2045,16 @@ https://www.w3.org/TR/service-workers/#dom-clients-get-id-id Clients/get(id) - id +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-id +1 +1 +- +id attribute web-animations-1 web-animations @@ -1869,6 +2077,39 @@ https://www.w3.org/TR/web-animations-1/#dom-keyframeanimationoptions-id KeyframeAnimationOptions - id +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-id +1 +1 +credential record +- +id +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#discoverablecredentialmetadata-id + +1 +DiscoverableCredentialMetadata +- +id +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationresponsejson-id +1 +1 +AuthenticationResponseJSON +- +id dict-member webauthn-3 webauthn @@ -1885,6 +2126,17 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialdescriptorjson-id +1 +1 +PublicKeyCredentialDescriptorJSON +- +id +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrpentity-id 1 1 @@ -1907,6 +2159,28 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialuserentityjson-id +1 +1 +PublicKeyCredentialUserEntityJSON +- +id +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-registrationresponsejson-id +1 +1 +RegistrationResponseJSON +- +id +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-tokenbinding-id 1 1 @@ -1924,6 +2198,17 @@ https://www.w3.org/TR/webauthn-3/#public-key-credential-source-id public key credential source - id +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-id +1 +1 +MIDIPort +- +id dict-member webrtc-stats webrtc-stats @@ -2049,6 +2334,28 @@ https://www.w3.org/TR/selectors-4/#id-selector 1 1 - +idProduct +dict-member +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dom-usbblocklistentry-idproduct +1 +1 +USBBlocklistEntry +- +idVendor +dict-member +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dom-usbblocklistentry-idvendor +1 +1 +USBBlocklistEntry +- id_assertion_endpoint dict-member fedcm @@ -2060,6 +2367,28 @@ https://fedidcg.github.io/FedCM/#dom-identityproviderapiconfig-id_assertion_endp 1 IdentityProviderAPIConfig - +id_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-id_attr + +1 +syntax +- +id_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-id_attr + +1 +syntax +- ideal dict-member image-capture @@ -2412,6 +2741,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-identify +1 +- +identified +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-identify + 1 - identified with @@ -2532,6 +2871,26 @@ PerformanceElementTiming - identifier dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier +1 +1 +- +identifier +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier +1 +1 +- +identifier +dfn indexeddb-3 indexeddb 3 @@ -2651,6 +3010,26 @@ current https://w3c.github.io/aria/#dfn-identifies +- +identifies +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-identifies + + +- +identifies +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-identifies + + - identify dfn @@ -2660,6 +3039,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-identify +1 +- +identify +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-identify + 1 - identity @@ -2706,6 +3095,17 @@ https://w3c.github.io/webrtc-identity/#dom-rtcidentityvalidationresult-identity RTCIdentityValidationResult - identity +attribute +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-navigator-identity +1 +1 +Navigator +- +identity dfn appmanifest appmanifest @@ -2737,6 +3137,16 @@ https://www.w3.org/TR/webrtc-identity/#dom-rtcidentityvalidationresult-identity 1 rtcidentityvalidationresult - +identity assertion endpoint +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#identity-assertion-endpoint + +1 +- identity resolving key dfn web-bluetooth @@ -2817,6 +3227,50 @@ https://streams.spec.whatwg.org/#identity-transform-stream 1 1 - +identity(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-identity +1 +1 +MLGraphBuilder +- +identity(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-identity +1 +1 +MLGraphBuilder +- +identity(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-identity +1 +1 +MLGraphBuilder +- +identity(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-identity +1 +1 +MLGraphBuilder +- identity-credentials-get dfn fedcm @@ -2826,6 +3280,26 @@ current https://fedidcg.github.io/FedCM/#identity-credentials-get 1 1 +- +ideograph +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-ideograph +1 + +- +ideograph +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-ideograph +1 + - ideograph-alpha value @@ -2844,10 +3318,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-ideograph-alpha +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-ideograph-alpha 1 1 -text-spacing +text-autospace - ideograph-numeric value @@ -2866,10 +3340,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-ideograph-numeric +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-ideograph-numeric 1 1 -text-spacing +text-autospace - ideographic value @@ -2911,10 +3385,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ideographic +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ideographic 1 1 -text-edge +line-fit-edge +<<text-edge>> - ideographic enum-value @@ -2967,10 +3442,11 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-ideographic +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-ideographic 1 1 -text-edge +line-fit-edge +<<text-edge>> - ideographic-ink value @@ -2978,10 +3454,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ideographic-ink +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ideographic-ink 1 1 -text-edge +line-fit-edge +<<text-edge>> - ideographic-ink value @@ -2989,10 +3466,11 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-ideographic-ink +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-ideographic-ink 1 1 -text-edge +line-fit-edge +<<text-edge>> - ideographic-ink-over baseline dfn @@ -3060,10 +3538,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-word-boundary-expansion-ideographic-space +https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-ideographic-space 1 1 -word-boundary-expansion +word-space-transform - ideographic-space value @@ -3071,10 +3549,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-word-boundary-expansion-ideographic-space +https://www.w3.org/TR/css-text-4/#valdef-word-space-transform-ideographic-space 1 1 -word-boundary-expansion +word-space-transform - ideographic-under baseline dfn @@ -3188,6 +3666,17 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#idl-expo 1 - idle +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-idle +1 +1 +AnimationPlayState +- +idle dfn web-animations-1 web-animations @@ -3198,6 +3687,17 @@ https://drafts.csswg.org/web-animations-1/#play-state-idle 1 play state - +idle +dfn +web-animations-1 +web-animations +1 +snapshot +https://www.w3.org/TR/web-animations-1/#play-state-idle +1 +1 +play state +- idle callback identifier dfn requestidlecallback @@ -3270,16 +3770,6 @@ https://www.w3.org/TR/web-animations-1/#animation-effect-idle-phase 1 animation effect - -idle play state -dfn -web-animations-1 -web-animations -1 -snapshot -https://www.w3.org/TR/web-animations-1/#idle-play-state - -1 -- idp dfn fedcm @@ -3466,3 +3956,34 @@ https://www.w3.org/TR/webrtc-identity/#dom-rtcpeerconnection-idploginurl 1 rtcpeerconnection - +idref +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-idref + +1 +- +idref +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-idref + +1 +- +ids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-ids + +1 +bid debug reporting info +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-if.data b/bikeshed/spec-data/readonly/anchors/anchors-if.data index 8eb7ced05e..20b2dd1e90 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-if.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-if.data @@ -31,6 +31,16 @@ https://fetch.spec.whatwg.org/#dom-requestdestination-iframe 1 RequestDestination - +IfAbruptCloseIterator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ifabruptcloseiterator +1 +1 +- IfAbruptCloseIterator(value, iteratorRecord) abstract-op ecmascript @@ -41,6 +51,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ifabruptcloseiter 1 1 - +IfAbruptRejectPromise +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-ifabruptrejectpromise +1 +1 +- IfAbruptRejectPromise(value, capability) abstract-op ecmascript diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ig.data b/bikeshed/spec-data/readonly/anchors/anchors-ig.data index 787b40dc72..940c6538e1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ig.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ig.data @@ -1,3 +1,14 @@ +ig names +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-ig-names + +1 +trusted bidding signals batcher +- ignore dfn css22 @@ -16,6 +27,48 @@ appmanifest current https://w3c.github.io/manifest/#dfn-ignore +1 +- +ignore +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-ignore +1 +1 +SmartCardReaderStateFlagsIn +- +ignore +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-ignore +1 +1 +SmartCardReaderStateFlagsOut +- +ignore +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#ignore +1 +1 +- +ignore +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#ignore +1 1 - ignore @@ -45,7 +98,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#options-ignore-case +https://urlpattern.spec.whatwg.org/#options-ignore-case 1 options @@ -68,26 +121,6 @@ dom-parsing current https://w3c.github.io/DOM-Parsing/#dfn-ignore-namespace-definition-attribute -1 -- -ignore state -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-ignore-state - -1 -- -ignore state -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-ignore-state - 1 - ignore unknown @@ -159,7 +192,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternoptions-ignorecase +https://urlpattern.spec.whatwg.org/#dom-urlpatternoptions-ignorecase 1 1 URLPatternOptions @@ -230,6 +263,17 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrprojectionlayer-ignoredepthvalues 1 XRProjectionLayer - +ignoreIfPresent +dict-member +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstoragesetmethodoptions-ignoreifpresent +1 +1 +SharedStorageSetMethodOptions +- ignoreMethod dict-member service-workers @@ -328,3 +372,13 @@ https://www.w3.org/TR/css-syntax-3/#css-ignored 1 css - +ignorelist +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#ignorelist + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ij.data b/bikeshed/spec-data/readonly/anchors/anchors-ij.data index 7b24af3d1b..4ffd68a71d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ij.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ij.data @@ -4,7 +4,17 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_ijam +https://w3c.github.io/i18n-glossary/#dfn-ijam +1 + +- +ijam +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-ijam 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-il.data b/bikeshed/spec-data/readonly/anchors/anchors-il.data index b2137e1e51..25984ef4b3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-il.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-il.data @@ -16,6 +16,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-ill-typed +1 +- +ill-typed +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-ill-typed + 1 - illegal @@ -28,16 +38,25 @@ https://drafts.csswg.org/css2/#illegal 1 - -illuminance -dict-member -ambient-light -ambient-light +illegal +dfn +css2 +css 1 current -https://w3c.github.io/ambient-light/#dom-ambientlightreadingvalues-illuminance +https://www.w3.org/TR/CSS21/conform.html#illegal +1 +1 +- +illegal +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#illegal 1 1 -AmbientLightReadingValues - illuminance attribute @@ -61,34 +80,43 @@ https://w3c.github.io/ambient-light/#illuminance 1 - illuminance -dict-member +attribute ambient-light ambient-light 1 snapshot -https://www.w3.org/TR/ambient-light/#dom-ambientlightreadingvalues-illuminance +https://www.w3.org/TR/ambient-light/#dom-ambientlightsensor-illuminance 1 1 -AmbientLightReadingValues +AmbientLightSensor - illuminance -attribute +dfn ambient-light ambient-light 1 snapshot -https://www.w3.org/TR/ambient-light/#dom-ambientlightsensor-illuminance +https://www.w3.org/TR/ambient-light/#illuminance + 1 +- +illuminance reading parsing algorithm +dfn +ambient-light +ambient-light +1 +current +https://w3c.github.io/ambient-light/#illuminance-reading-parsing-algorithm + 1 -AmbientLightSensor - -illuminance +illuminance reading parsing algorithm dfn ambient-light ambient-light 1 snapshot -https://www.w3.org/TR/ambient-light/#illuminance +https://www.w3.org/TR/ambient-light/#illuminance-reading-parsing-algorithm 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-im.data b/bikeshed/spec-data/readonly/anchors/anchors-im.data index d8c506593e..2df813f9a2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-im.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-im.data @@ -175,6 +175,26 @@ css-images snapshot https://www.w3.org/TR/css-images-4/#typedef-image-tags 1 +1 +- +<image/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_image + +1 +- +<image/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_image + 1 - <image> @@ -215,6 +235,66 @@ css-images snapshot https://www.w3.org/TR/css-images-4/#typedef-image 1 +1 +- +<imaginary/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_imaginary + +1 +- +<imaginary/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_imaginary + +1 +- +<imaginaryi/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_imaginaryi + +1 +- +<imaginaryi/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_imaginaryi + +1 +- +<implies/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_implies + +1 +- +<implies/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_implies + 1 - <import-conditions> @@ -278,6 +358,26 @@ https://drafts.csswg.org/css2/#at-ruledef-import 1 - @import +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#x7 +1 +1 +- +@import +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#x7 +1 +1 +- +@import at-rule css-cascade-3 css-cascade @@ -767,17 +867,6 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-implementation-slot -1 -1 -MLCommandEncoder -- -[[implementation]] -attribute -webnn -webnn -1 -current https://webmachinelearning.github.io/webnn/#dom-mlgraph-implementation-slot 1 1 @@ -789,17 +878,6 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-implementation-slot -1 -1 -MLCommandEncoder -- -[[implementation]] -attribute -webnn -webnn -1 -snapshot https://www.w3.org/TR/webnn/#dom-mlgraph-implementation-slot 1 1 @@ -1009,13 +1087,35 @@ VideoFrame/constructor(image, init) VideoFrame/VideoFrame(image) VideoFrame/constructor(image) - +image animation name rule +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-image-animation-name-rule + +1 +captured element +- +image animation name rule +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-element-image-animation-name-rule + +1 +captured element +- image button element-state html html 1 current -https://html.spec.whatwg.org/multipage/input.html#image-button-state-(type=image) +https://html.spec.whatwg.org/multipage/input.html#image-button-state-(type%3Dimage) 1 1 input @@ -1063,11 +1163,21 @@ image request - image data dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-image-data +https://w3c.github.io/png/#dfn-image-data + +1 +- +image data +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-image-data 1 - @@ -1231,7 +1341,7 @@ mimesniff 1 current https://mimesniff.spec.whatwg.org/#image-type-pattern-matching-algorithm - +1 1 - image url @@ -1421,7 +1531,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#image/gif +https://html.spec.whatwg.org/multipage/indices.html#image%2Fgif 1 - @@ -1431,7 +1541,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#image/jpeg +https://html.spec.whatwg.org/multipage/indices.html#image%2Fjpeg 1 - @@ -1441,7 +1551,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#image/png +https://html.spec.whatwg.org/multipage/indices.html#image%2Fpng 1 - @@ -1451,7 +1561,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#image/svg+xml +https://html.spec.whatwg.org/multipage/indices.html#image%2Fsvg%2Bxml 1 - @@ -1501,6 +1611,17 @@ PhotoSettings - imageIndex attribute +webxr-depth-sensing-1 +webxr-depth-sensing +1 +current +https://immersive-web.github.io/depth-sensing/#dom-xrwebgldepthinformation-imageindex +1 +1 +XRWebGLDepthInformation +- +imageIndex +attribute webxrlayers-1 webxrlayers 1 @@ -1512,6 +1633,17 @@ XRWebGLSubImage - imageIndex attribute +webxr-depth-sensing-1 +webxr-depth-sensing +1 +snapshot +https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrwebgldepthinformation-imageindex +1 +1 +XRWebGLDepthInformation +- +imageIndex +attribute webxrlayers-1 webxrlayers 1 @@ -1630,33 +1762,23 @@ https://html.spec.whatwg.org/multipage/canvas.html#imagebitmaprenderingcontext-c 1 - -imagecopytexture subresource size +imagecopytexture physical subresource size dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#imagecopytexture-subresource-size +https://gpuweb.github.io/gpuweb/#imagecopytexture-physical-subresource-size 1 - -imagecopytexture subresource size +imagecopytexture physical subresource size dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#imagecopytexture-subresource-size - -1 -- -images -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#images +https://www.w3.org/TR/webgpu/#imagecopytexture-physical-subresource-size 1 - @@ -1671,23 +1793,23 @@ https://html.spec.whatwg.org/multipage/dom.html#dom-document-images 1 Document - -images +images pending rendering dfn -webgpu -webgpu +paint-timing +paint-timing 1 -snapshot -https://www.w3.org/TR/webgpu/#images +current +https://w3c.github.io/paint-timing/#images-pending-rendering 1 - images pending rendering dfn -element-timing -element-timing +paint-timing +paint-timing 1 -current -https://wicg.github.io/element-timing/#images-pending-rendering +snapshot +https://www.w3.org/TR/paint-timing/#images-pending-rendering 1 - @@ -1949,23 +2071,23 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#im 1 ECMAScript - -immutable value example definition +immutable value example term dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#immutable-value-example-definition +https://gpuweb.github.io/gpuweb/#immutable-value-example-term - -immutable value example definition +immutable value example term dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#immutable-value-example-definition +https://www.w3.org/TR/webgpu/#immutable-value-example-term - @@ -2010,28 +2132,6 @@ https://infra.spec.whatwg.org/#implementation 1 1 - -implementation -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtccodecstats-implementation -1 - -RTCCodecStats -- -implementation -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtccodecstats-implementation -1 - -RTCCodecStats -- implementation-approximated dfn ecmascript @@ -2099,8 +2199,8 @@ value css-anchor-position-1 css-anchor-position 1 -current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-implicit +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-implicit 1 1 anchor() @@ -2112,7 +2212,17 @@ css-anchor-position 1 current https://drafts.csswg.org/css-anchor-position-1/#implicit-anchor-element + 1 +- +implicit anchor element +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#implicit-anchor-element + 1 - implicit column span @@ -2487,16 +2597,6 @@ css-grid current https://drafts.csswg.org/css-grid-2/#implicit-grid-span 1 -1 -- -implicit scope -dfn -css-cascade-6 -css-cascade -6 -current -https://drafts.csswg.org/css-cascade-6/#implicit-scope - 1 - implicit signals @@ -2538,6 +2638,7 @@ current https://w3c.github.io/webdriver/#dfn-implicit-wait-timeout 1 +timeouts - implicit wait timeout dfn @@ -2548,6 +2649,7 @@ snapshot https://www.w3.org/TR/webdriver2/#dfn-implicit-wait-timeout 1 +timeouts - implicitly convert a duration to a timestamp dfn @@ -2738,16 +2840,6 @@ current https://html.spec.whatwg.org/multipage/webappapis.html#implied-event-loop 1 -- -impolite peer -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-impolite-peer - - - import conditions dfn @@ -3191,6 +3283,16 @@ https://www.w3.org/TR/cssom-1/#css-declaration-important-flag 1 CSS declaration - +importattribute record +dfn +tc39-import-attributes +tc39-import-attributes +1 +current +https://tc39.es/proposal-import-attributes/#importattribute-record +1 +1 +- importentry record dfn ecmascript @@ -3204,11 +3306,21 @@ ECMAScript - importentry record dfn -tc39-import-assertions -tc39-import-assertions +tc39-import-attributes +tc39-import-attributes +1 +current +https://tc39.es/proposal-import-attributes/#importentry-record +1 +1 +- +importentry record +dfn +tc39-source-phase-imports +tc39-source-phase-imports 1 current -https://tc39.es/proposal-import-assertions/#importentry-record +https://tc39.es/proposal-source-phase-imports/#importentry-record 1 1 - @@ -3230,7 +3342,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-importKey -1 + 1 - imports diff --git a/bikeshed/spec-data/readonly/anchors/anchors-in.data b/bikeshed/spec-data/readonly/anchors/anchors-in.data index 75ec528b8b..63400dd535 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-in.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-in.data @@ -11,6 +11,17 @@ USBDirection - "inactive" enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessionstate-inactive +1 +1 +AudioSessionState +- +"inactive" +enum-value mediastream-recording mediastream-recording 1 @@ -444,10 +455,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperandtype-int32 +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-int32 1 1 -MLOperandType +MLOperandDataType - "int32" enum-value @@ -455,10 +466,32 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperandtype-int32 +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-int32 +1 +1 +MLOperandDataType +- +"int64" +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-int64 +1 +1 +MLOperandDataType +- +"int64" +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-int64 1 1 -MLOperandType +MLOperandDataType - "int8" enum-value @@ -466,10 +499,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperandtype-int8 +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-int8 1 1 -MLOperandType +MLOperandDataType - "int8" enum-value @@ -477,10 +510,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperandtype-int8 +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-int8 1 1 -MLOperandType +MLOperandDataType - "interactive" enum-value @@ -594,6 +627,17 @@ USBEndpointType - "interrupted" enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessionstate-interrupted +1 +1 +AudioSessionState +- +"interrupted" +enum-value speech-api speech-api 1 @@ -708,6 +752,16 @@ ecmascript current https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-objects 1 +1 +- +'inline-speculation-rules' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-inline-speculation-rules + 1 - 'interactive media group @@ -719,6 +773,26 @@ current https://drafts.csswg.org/css2/#interactive-media-group +- +'interactive media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#interactive-media-group +1 +1 +- +'interactive media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#interactive-media-group +1 +1 - -infinity value @@ -830,6 +904,46 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#invalid-pseudo 1 +1 +- +<in/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_in + +1 +- +<in/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_in + +1 +- +<infinity/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_infinity + +1 +- +<infinity/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_infinity + 1 - <inflexible-breadth> @@ -872,6 +986,58 @@ https://www.w3.org/TR/css-grid-2/#typedef-inflexible-breadth 1 1 - +<inset-area> +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-inset-area +1 +1 +- +<inset-area> +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inset-area +1 +1 +inset-area +- +<int/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_int + +1 +- +<int/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_int + +1 +- +<integer [1,∞]> <block-ellipsis>? +value +css-overflow-4 +css-overflow +4 +snapshot +https://www.w3.org/TR/css-overflow-4/#valdef-line-clamp-integer-1--block-ellipsis +1 +1 +line-clamp +- <integer> type css-fonts-4 @@ -925,6 +1091,26 @@ https://drafts.csswg.org/css2/#value-def-integer - <integer> type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-integer +1 +1 +- +<integer> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-integer +1 +1 +- +<integer> +type css-fonts-4 css-fonts 4 @@ -986,6 +1172,131 @@ https://www.w3.org/TR/css-grid-2/#grid-placement-int 1 <grid-line> - +<integers/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_integers + +1 +- +<integers/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_integers + +1 +- +<integrity-modifier> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier-integrity-modifier +1 +1 +<request-url-modifier> +- +<intersect/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_intersect + +1 +- +<intersect/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_intersect + +1 +- +<interval> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_interval_constructor + +1 +constructor +- +<interval> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_interval_qualifier + +1 +qualifier +- +<interval> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_interval_constructor + +1 +constructor +- +<interval> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_interval_qualifier + +1 +qualifier +- +<intrinsic-size-keyword> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-intrinsic-size-keyword +1 +1 +- +<inverse/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_inverse + +1 +- +<inverse/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_inverse + +1 +- INDEX const webgpu @@ -1107,6 +1418,26 @@ https://webidl.spec.whatwg.org/#dom-domexception-invalid_state_err 1 DOMException - +InLeapYear +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-inleapyear +1 +1 +- +InLeapYear(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-inleapyear +1 +1 +- InUseAttributeError exception webidl @@ -1189,76 +1520,148 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-initializebinding-n-v 1 1 -Environment Records +Declarative Environment Records - -InitializeBoundName(name, value, environment) +InitializeBinding(N, V) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/syntax-directed-operations.html#sec-initializeboundname +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-initializebinding-n-v 1 1 +Global Environment Records - -InitializeEnvironment() +InitializeBinding(N, V) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-source-text-module-record-initialize-environment +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-initializebinding-n-v 1 1 -Cyclic Module Records +Object Environment Records - -InitializeHostDefinedRealm() +InitializeBoundName abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-initializehostdefinedrealm +https://tc39.es/ecma262/multipage/syntax-directed-operations.html#sec-initializeboundname 1 1 - -InitializeInstanceElements(O, constructor) +InitializeBoundName(name, value, environment) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-initializeinstanceelements +https://tc39.es/ecma262/multipage/syntax-directed-operations.html#sec-initializeboundname 1 1 - -InitializeReadableStream +InitializeEnvironment() abstract-op -streams -streams +ecmascript +ecmascript 1 current -https://streams.spec.whatwg.org/#initialize-readable-stream +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-source-text-module-record-initialize-environment 1 1 +Cyclic Module Records - -InitializeReferencedBinding(V, W) +InitializeHostDefinedRealm abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-initializereferencedbinding +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-initializehostdefinedrealm 1 1 - -InitializeTransformStream +InitializeHostDefinedRealm() abstract-op -streams -streams +ecmascript +ecmascript 1 current -https://streams.spec.whatwg.org/#initialize-transform-stream +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-initializehostdefinedrealm +1 +1 +- +InitializeInstanceElements +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-initializeinstanceelements +1 +1 +- +InitializeInstanceElements(O, constructor) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-initializeinstanceelements +1 +1 +- +InitializeReadableStream +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#initialize-readable-stream +1 +1 +- +InitializeReferencedBinding +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-initializereferencedbinding +1 +1 +- +InitializeReferencedBinding(V, W) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-initializereferencedbinding +1 +1 +- +InitializeTransformStream +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#initialize-transform-stream +1 +1 +- +InitializeTypedArrayFromArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedarrayfromarraybuffer 1 1 - @@ -1272,6 +1675,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedar 1 1 - +InitializeTypedArrayFromArrayLike +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedarrayfromarraylike +1 +1 +- InitializeTypedArrayFromArrayLike(O, arrayLike) abstract-op ecmascript @@ -1282,6 +1695,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedar 1 1 - +InitializeTypedArrayFromList +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedarrayfromlist +1 +1 +- InitializeTypedArrayFromList(O, values) abstract-op ecmascript @@ -1292,6 +1715,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedar 1 1 - +InitializeTypedArrayFromTypedArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-initializetypedarrayfromtypedarray +1 +1 +- InitializeTypedArrayFromTypedArray(O, srcArray) abstract-op ecmascript @@ -1352,13 +1785,13 @@ https://wicg.github.io/ink-enhancement/#dictdef-inktrailstyle 1 1 - -InnerHTML -interface -dom-parsing -dom-parsing +InnerModuleEvaluation +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/DOM-Parsing/#dom-innerhtml +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-innermoduleevaluation 1 1 - @@ -1372,6 +1805,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +InnerModuleLinking +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-InnerModuleLinking +1 +1 +- InnerModuleLinking(module, stack, index) abstract-op ecmascript @@ -1382,6 +1825,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +InnerModuleLoading +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-InnerModuleLoading +1 +1 +- InnerModuleLoading(state, module) abstract-op ecmascript @@ -1535,6 +1988,16 @@ snapshot https://www.w3.org/TR/miniapp-lifecycle/#dom-inputobject 1 +- +InstallErrorCause +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-installerrorcause +1 +1 - InstallErrorCause(O, options) abstract-op @@ -1546,6 +2009,16 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-installerrorcause 1 1 - +InstallEvent +interface +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#installevent +1 +1 +- Instance interface wasm-js-api-2 @@ -1610,6 +2083,16 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-instance-instance 1 Instance - +InstanceofOperator +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-instanceofoperator +1 +1 +- InstanceofOperator(V, target) abstract-op ecmascript @@ -1650,63 +2133,143 @@ https://webidl.spec.whatwg.org/#idl-Int8Array 1 1 - -IntegerIndexedElementGet(O, index) +IntegerPart abstract-op -ecmascript -ecmascript +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#abstract-opdef-integerpart +1 +1 +- +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +interface +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingandscoringscriptrunnerglobalscope +1 +1 +- +InterestGroupBiddingScriptRunnerGlobalScope +interface +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope +1 +1 +- +InterestGroupReportingScriptRunnerGlobalScope +interface +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupreportingscriptrunnerglobalscope +1 +1 +- +InterestGroupScoringScriptRunnerGlobalScope +interface +turtledove +turtledove 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integerindexedelementget +https://wicg.github.io/turtledove/#interestgroupscoringscriptrunnerglobalscope 1 1 - -IntegerIndexedElementSet(O, index, value) +InterestGroupScriptRunnerGlobalScope +interface +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupscriptrunnerglobalscope +1 +1 +- +InternalizeJSONProperty abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integerindexedelementset +https://tc39.es/ecma262/multipage/structured-data.html#sec-internalizejsonproperty 1 1 - -IntegerIndexedObjectCreate(prototype) +InternalizeJSONProperty(holder, name, reviver) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integerindexedobjectcreate +https://tc39.es/ecma262/multipage/structured-data.html#sec-internalizejsonproperty 1 1 - -IntegerPart +Interpret Format 1 Patch Map abstract-op -webidl -webidl +ift +ift 1 current -https://webidl.spec.whatwg.org/#abstract-opdef-integerpart +https://w3c.github.io/IFT/Overview.html#abstract-opdef-interpret-format-1-patch-map 1 1 - -InteractionCounts -interface -event-timing -event-timing +Interpret Format 1 Patch Map +abstract-op +ift +ift 1 snapshot -https://www.w3.org/TR/event-timing/#interactioncounts +https://www.w3.org/TR/IFT/#abstract-opdef-interpret-format-1-patch-map 1 1 - -InternalizeJSONProperty(holder, name, reviver) +Interpret Format 2 Patch Map abstract-op -ecmascript -ecmascript +ift +ift 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-internalizejsonproperty +https://w3c.github.io/IFT/Overview.html#abstract-opdef-interpret-format-2-patch-map +1 +1 +- +Interpret Format 2 Patch Map +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-interpret-format-2-patch-map +1 +1 +- +Interpret Format 2 Patch Map Entry +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-interpret-format-2-patch-map-entry +1 +1 +- +Interpret Format 2 Patch Map Entry +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-interpret-format-2-patch-map-entry 1 1 - @@ -2028,6 +2591,36 @@ https://webidl.spec.whatwg.org/#invalidstateerror 1 1 - +Invalidate +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-invalidate +1 +1 +- +Invalidate +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-invalidate +1 +1 +- +Invoke +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-invoke +1 +1 +- Invoke(V, P, argumentsList) abstract-op ecmascript @@ -2210,8 +2803,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-intertonegap + 1 -1 +RTCDTMFSender - [[InternalStream]] attribute @@ -2620,50 +3214,28 @@ https://www.w3.org/TR/webcodecs/#dom-imagedecoder-internal-selected-track-index- 1 ImageDecoder - -[[internals]] +[[internal state]] attribute webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpubuffer-internals-slot +https://gpuweb.github.io/gpuweb/#dom-gpubuffer-internal-state-slot 1 1 GPUBuffer - -[[internals]] -attribute -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-internals-slot -1 -1 -GPUObjectBase -- -[[internals]] +[[internal state]] attribute webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpubuffer-internals-slot +https://www.w3.org/TR/webgpu/#dom-gpubuffer-internal-state-slot 1 1 GPUBuffer - -[[internals]] -attribute -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpuobjectbase-internals-slot -1 -1 -GPUObjectBase -- [[intrinsicSizesRequest]] attribute css-layout-api-1 @@ -2955,6 +3527,7 @@ current https://html.spec.whatwg.org/multipage/webappapis.html#in-error-reporting-mode 1 +global object - in fixed mode dfn @@ -3095,6 +3668,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#in-play +1 +- +in play +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#in-play + 1 - in row @@ -3135,6 +3718,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#in-scope +1 +- +in scope +dfn +css-cascade-6 +css-cascade +6 +snapshot +https://www.w3.org/TR/css-cascade-6/#in-scope + 1 - in select @@ -3319,6 +3912,16 @@ https://wicg.github.io/layout-instability/#in-the-previous-frame 1 1 - +in the top layer +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#in-the-top-layer +1 +1 +- in transfers dfn webusb @@ -3393,6 +3996,36 @@ https://www.w3.org/TR/css-typed-om-1/#dom-css-in 1 CSS - +in-band outline +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#in-band-outline +1 +1 +- +in-bounds index +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#in-bounds-index + +1 +- +in-bounds index +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#in-bounds-index + +1 +- in-flow dfn css-display-3 @@ -3425,22 +4058,32 @@ https://drafts.csswg.org/css2/#in-flow - in-flow dfn -css-display-3 -css-display -3 -snapshot -https://www.w3.org/TR/css-display-3/#in-flow +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x24 1 1 - in-flow dfn -mathml-core -mathml-core +css2 +css 1 snapshot -https://www.w3.org/TR/mathml-core/#dfn-in-flow - +https://www.w3.org/TR/CSS21/visuren.html#x24 +1 +1 +- +in-flow +dfn +css-display-3 +css-display +3 +snapshot +https://www.w3.org/TR/css-display-3/#in-flow +1 1 - in-gamut @@ -3486,13 +4129,13 @@ https://www.w3.org/TR/IndexedDB-3/#object-store-in-line-keys object-store - in-parallel steps to create an answer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-in-parallel-steps-to-create-an-answer - +1 1 - in-parallel steps to create an answer @@ -3506,13 +4149,13 @@ https://www.w3.org/TR/webrtc/#dfn-in-parallel-steps-to-create-an-answer 1 - in-parallel steps to create an offer -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-in-parallel-steps-to-create-an-offer - +1 1 - in-parallel steps to create an offer @@ -4177,14 +4820,16 @@ https://drafts.csswg.org/css-color-3/#inactiveborder 1 - inactiveborder -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#inactiveborder - +https://drafts.csswg.org/css-color-4/#valdef-color-inactiveborder +1 1 +<color> +<deprecated-color> - inactiveborder dfn @@ -4197,14 +4842,16 @@ https://www.w3.org/TR/css-color-3/#inactiveborder 1 - inactiveborder -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#inactiveborder - +https://www.w3.org/TR/css-color-4/#valdef-color-inactiveborder 1 +1 +<color> +<deprecated-color> - inactivecaption dfn @@ -4217,14 +4864,16 @@ https://drafts.csswg.org/css-color-3/#inactivecaption 1 - inactivecaption -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#inactivecaption - +https://drafts.csswg.org/css-color-4/#valdef-color-inactivecaption +1 1 +<color> +<deprecated-color> - inactivecaption dfn @@ -4237,14 +4886,16 @@ https://www.w3.org/TR/css-color-3/#inactivecaption 1 - inactivecaption -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#inactivecaption - +https://www.w3.org/TR/css-color-4/#valdef-color-inactivecaption 1 +1 +<color> +<deprecated-color> - inactivecaptiontext dfn @@ -4257,14 +4908,16 @@ https://drafts.csswg.org/css-color-3/#inactivecaptiontext 1 - inactivecaptiontext -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#inactivecaptiontext - +https://drafts.csswg.org/css-color-4/#valdef-color-inactivecaptiontext +1 1 +<color> +<deprecated-color> - inactivecaptiontext dfn @@ -4277,14 +4930,16 @@ https://www.w3.org/TR/css-color-3/#inactivecaptiontext 1 - inactivecaptiontext -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#inactivecaptiontext - +https://www.w3.org/TR/css-color-4/#valdef-color-inactivecaptiontext 1 +1 +<color> +<deprecated-color> - inappropriate for a control dfn @@ -4340,6 +4995,28 @@ https://www.w3.org/TR/autoplay-detection/#dom-autoplaypolicy-inaudible-media-ele 1 AutoplayPolicy - +inbound view transition params +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#document-inbound-view-transition-params + +1 +document +- +inbound view transition params +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#document-inbound-view-transition-params + +1 +document +- inbound-rtp enum-value webrtc-stats @@ -4368,6 +5045,17 @@ screen-capture screen-capture 1 current +https://w3c.github.io/mediacapture-screen-share/#idl-def-MonitorTypeSurfacesEnum.include +1 +1 +MonitorTypeSurfacesEnum +- +include +enum-value +screen-capture +screen-capture +1 +current https://w3c.github.io/mediacapture-screen-share/#idl-def-SelfCapturePreferenceEnum.include 1 1 @@ -4407,6 +5095,28 @@ https://webidl.spec.whatwg.org/#include interface - include +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-source-registration-time-configuration-include + +1 +aggregatable source registration time configuration +- +include +enum-value +screen-capture +screen-capture +1 +snapshot +https://www.w3.org/TR/screen-capture/#idl-def-MonitorTypeSurfacesEnum.include +1 +1 +MonitorTypeSurfacesEnum +- +include enum-value screen-capture screen-capture @@ -4484,7 +5194,7 @@ ClientQueryOptions - include_subdomains dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -4494,11 +5204,22 @@ https://w3c.github.io/network-error-logging/#dfn-include_subdomains - include_subdomains dfn -network-error-logging-1 +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-include_subdomains + +1 +network_reporting_endpoints +- +include_subdomains +dfn +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-include_subdomains +https://www.w3.org/TR/network-error-logging/#dfn-include_subdomains 1 - @@ -4600,7 +5321,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.includes +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.includes 1 1 %TypedArray% @@ -4713,6 +5434,16 @@ https://dom.spec.whatwg.org/#concept-tree-inclusive-sibling 1 tree - +inclusive-dn-unfenced +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#inclusive-dn-unfenced + +1 +- incoming unidirectional dfn webtransport @@ -4735,6 +5466,17 @@ https://www.w3.org/TR/webtransport/#stream-incoming-unidirectional 1 stream - +incomingBidInSellerCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoreadoutput-incomingbidinsellercurrency +1 +1 +ScoreAdOutput +- incomingBidirectionalStreams attribute webtransport @@ -4832,6 +5574,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-inconsistent +- +inconsistency +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-inconsistent + + - inconsistent dfn @@ -4842,6 +5594,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-inconsistent +- +inconsistent +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-inconsistent + + - incorrectly-closed-comment dfn @@ -4869,7 +5631,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#increase-interaction-count +https://w3c.github.io/event-timing/#increase-interaction-count 1 - @@ -4901,6 +5663,56 @@ css-color snapshot https://www.w3.org/TR/css-color-4/#increasing 1 +1 +- +increment a winning bid's k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#increment-a-winning-bids-k-anonymity-count + +1 +- +increment ad k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#increment-ad-k-anonymity-count + +1 +- +increment component ad k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#increment-component-ad-k-anonymity-count + +1 +- +increment k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#increment-k-anonymity-count + +1 +- +increment reporting id k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#increment-reporting-id-k-anonymity-count + 1 - increment statement @@ -4955,13 +5767,33 @@ https://www.w3.org/TR/WGSL/#syntax-increment_statement 1 syntax - +incremental font +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#incremental-font + +1 +- +incremental font +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#incremental-font + +1 +- incremental time dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_incremental_time +https://w3c.github.io/i18n-glossary/#dfn-incremental-time 1 - @@ -4971,7 +5803,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_incremental_time +https://www.w3.org/TR/i18n-glossary/#dfn-incremental-time 1 - @@ -5206,12 +6038,32 @@ https://www.w3.org/TR/css-display-3/#independent-formatting-context 1 1 - -indeterminate -attribute -html -html -1 -current +independent vowel +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-independent-vowel +1 + +- +independent vowel +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-independent-vowel +1 + +- +indeterminate +attribute +html +html +1 +current https://html.spec.whatwg.org/multipage/input.html#dom-input-indeterminate 1 1 @@ -5392,27 +6244,15 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacepalettes-__getter__-ind FontFacePalettes/__getter__(index) - index -argument -css-nesting-1 -css-nesting -1 -current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-deleterule-index-index -1 -1 -CSSStyleRule/deleteRule(index) -- -index -argument -css-nesting-1 -css-nesting -1 +dfn +css-syntax-3 +css-syntax +3 current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-insertrule-rule-index-index -1 +https://drafts.csswg.org/css-syntax-3/#token-stream-index + 1 -CSSStyleRule/insertRule(rule, index) -CSSStyleRule/insertRule(rule) +token stream - index argument @@ -5627,6 +6467,38 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-history-ind 1 - index +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationhistoryentry-index + +1 +- +index +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-index +1 +1 +NavigationDestination +- +index +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-index +1 +1 +NavigationHistoryEntry +- +index argument webxr webxr @@ -5638,6 +6510,39 @@ https://immersive-web.github.io/webxr/#dom-xrinputsourcearray-__getter__-index-i XRInputSourceArray/__getter__(index) - index +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#pattern-parser-index + +1 +pattern parser +- +index +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-index + +1 +token +- +index +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#tokenizer-index + +1 +tokenizer +- +index argument fileapi fileapi @@ -5737,50 +6642,6 @@ https://wicg.github.io/content-index/spec/#dom-serviceworkerregistration-index ServiceWorkerRegistration - index -attribute -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationdestination-index -1 -1 -NavigationDestination -- -index -attribute -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-index -1 -1 -NavigationHistoryEntry -- -index -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#navigationdestination-index - -1 -NavigationDestination -- -index -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#navigationhistoryentry-index - -1 -NavigationHistoryEntry -- -index argument speech-api speech-api @@ -5814,39 +6675,6 @@ https://wicg.github.io/speech-api/#dom-speechrecognitionresultlist-item-index-in SpeechRecognitionResultList/item(index) - index -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#pattern-parser-index - -1 -pattern parser -- -index -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#token-index - -1 -token -- -index -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#tokenizer-index - -1 -tokenizer -- -index dict-member webusb webusb @@ -5891,6 +6719,39 @@ index-handle - index argument +css-animations-1 +css-animations +1 +snapshot +https://www.w3.org/TR/css-animations-1/#dom-csskeyframesrule-__getter__-index-index +1 +1 +CSSKeyframesRule/__getter__(index) +- +index +argument +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacepalette-__getter__-index-index +1 +1 +FontFacePalette/__getter__(index) +- +index +argument +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacepalettes-__getter__-index-index +1 +1 +FontFacePalettes/__getter__(index) +- +index +argument css-nesting-1 css-nesting 1 @@ -6130,6 +6991,17 @@ Table/set(index) - index argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationnodelist-item-index-index +1 +1 +AnimationNodeList/item(index) +- +index +argument webcodecs webcodecs 1 @@ -6519,7 +7391,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.indexof +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.indexof 1 1 %TypedArray% @@ -6546,17 +7418,6 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.inde 1 String - -indexed getter -dfn -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#cssnumericarray-indexed-getter - -1 -CSSNumericArray -- indexed properties dfn webidl @@ -6587,18 +7448,50 @@ https://webidl.spec.whatwg.org/#dfn-indexed-property-setter 1 1 - -indexed-colour +indexed-color dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-indexed-colour +https://w3c.github.io/png/#3indexedColour + +1 +- +indexed-color +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3indexedColour 1 - indexedDB attribute +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-indexeddb +1 +1 +StorageAccessHandle +- +indexedDB +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-indexeddb +1 +1 +StorageAccessTypes +- +indexedDB +attribute indexeddb-3 indexeddb 3 @@ -6610,6 +7503,17 @@ WindowOrWorkerGlobalScope - indexedDB attribute +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-indexeddb +1 +1 +StorageBucket +- +indexedDB +attribute indexeddb-3 indexeddb 3 @@ -6621,27 +7525,57 @@ WindowOrWorkerGlobalScope - indexing dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3indexing +https://w3c.github.io/png/#3indexing 1 - -indianred +indexing dfn -css-color-3 -css-color +png-3 +png 3 -current -https://drafts.csswg.org/css-color-3/#indianred -1 +snapshot +https://www.w3.org/TR/png-3/#3indexing + 1 - -indianred -value -css-color-4 +indexing expression +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#indexing-expression + +1 +- +indexing expression +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#indexing-expression + +1 +- +indianred +dfn +css-color-3 +css-color +3 +current +https://drafts.csswg.org/css-color-3/#indianred +1 +1 +- +indianred +value +css-color-4 css-color 4 current @@ -6649,6 +7583,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-indianred 1 1 <color> +<named-color> - indianred dfn @@ -6670,6 +7605,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-indianred 1 1 <color> +<named-color> - indicate attribute @@ -6721,6 +7657,48 @@ current https://w3c.github.io/aria/#dfn-indicates +- +indicates +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-indicates + + +- +indicates +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-indicates + + +- +indices +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmeshblock-indices +1 +1 +XRMeshBlock +- +indices +attribute +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#dom-xrmesh-indices +1 +1 +XRMesh - indices dfn @@ -6736,27 +7714,27 @@ stack queue set - -indices_have -dfn -ift -ift +indices +argument +webnn +webnn 1 current -https://w3c.github.io/IFT/Overview.html#patchrequest-indices_have - +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gather-input-indices-options-indices 1 -PatchRequest +1 +MLGraphBuilder/gather(input, indices, options) - -indices_needed -dfn -ift -ift +indices +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-indices 1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-indices_needed - 1 -PatchRequest +MLGraphBuilder/gather(input, indices, options) - indigo dfn @@ -6778,6 +7756,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-indigo 1 1 <color> +<named-color> - indigo dfn @@ -6799,6 +7778,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-indigo 1 1 <color> +<named-color> - indirect enum-value @@ -7064,11 +8044,31 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-kind-individual 1 - -individualization-request -enum-value +individualization +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-individualization + +1 +- +individualization +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-individualization + 1 +- +individualization-request +enum-value +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-individualization-request 1 @@ -7076,15 +8076,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-individualization MediaKeyMessageType - individualization-request -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessagetype-individualization-request - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessagetype-individualization-request +1 1 -mediakeymessagetype +MediaKeyMessageType - inert dfn @@ -7128,6 +8128,17 @@ https://drafts.csswg.org/css-animations-1/#valdef-animation-iteration-count-infi animation-iteration-count - infinite +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-infinity +1 +1 +CSS +- +infinite value mediaqueries-4 mediaqueries @@ -7161,6 +8172,17 @@ https://www.w3.org/TR/css-animations-1/#valdef-animation-iteration-count-infinit animation-iteration-count - infinite +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-infinity +1 +1 +CSS +- +infinite value mediaqueries-4 mediaqueries @@ -7223,6 +8245,17 @@ https://www.w3.org/TR/css-grid-2/#infinitely-growable 1 - infinity +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-infinity +1 +1 +CSS +- +infinity value css-values-4 css-values @@ -7234,6 +8267,17 @@ https://drafts.csswg.org/css-values-4/#valdef-calc-infinity calc() - infinity +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-infinity +1 +1 +CSS +- +infinity value css-values-4 css-values @@ -7245,59 +8289,91 @@ https://www.w3.org/TR/css-values-4/#valdef-calc-infinity calc() - info -dict-member -webcryptoapi -webcryptoapi +attribute +webgpu +webgpu 1 current -https://w3c.github.io/webcrypto/#dfn-HkdfParams-info +https://gpuweb.github.io/gpuweb/#dom-gpuadapter-info 1 1 -HkdfParams +GPUAdapter +- +info +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#severity-info + +1 +severity - info attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-info +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-info 1 1 NavigateEvent - info dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-info +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-info 1 1 NavigateEventInit - info dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationoptions-info +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationoptions-info 1 1 NavigationOptions - info dfn -navigation-api -navigation-api +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-info + +1 +- +info +dict-member +webcryptoapi +webcryptoapi 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-info +https://w3c.github.io/webcrypto/#dfn-HkdfParams-info +1 +1 +HkdfParams +- +info +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#severity-info 1 -navigation API method navigation +severity - info dfn @@ -7306,8 +8382,19 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HkdfParams-info + +1 +- +info +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpuadapter-info 1 1 +GPUAdapter - info() method @@ -7342,14 +8429,16 @@ https://drafts.csswg.org/css-color-3/#infobackground 1 - infobackground -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#infobackground - +https://drafts.csswg.org/css-color-4/#valdef-color-infobackground 1 +1 +<color> +<deprecated-color> - infobackground dfn @@ -7362,52 +8451,34 @@ https://www.w3.org/TR/css-color-3/#infobackground 1 - infobackground -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#infobackground - -1 -- -inform the navigation api about canceling navigation -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#inform-the-navigation-api-about-canceling-navigation - -1 -- -inform the navigation api about nested navigable destruction -dfn -navigation-api -navigation-api +https://www.w3.org/TR/css-color-4/#valdef-color-infobackground 1 -current -https://wicg.github.io/navigation-api/#inform-the-navigation-api-about-nested-navigable-destruction - 1 +<color> +<deprecated-color> - -informative +inform the navigation api about aborting navigation dfn -mathml-aam -mathml-aam +html +html 1 current -https://w3c.github.io/mathml-aam/#dfn-informative +https://html.spec.whatwg.org/multipage/nav-history-apis.html#inform-the-navigation-api-about-aborting-navigation 1 - -informative +inform the navigation api about child navigable destruction dfn -mathml-aam -mathml-aam +html +html 1 current -https://w3c.github.io/mathml-aam/#dfn-informative +https://html.spec.whatwg.org/multipage/nav-history-apis.html#inform-the-navigation-api-about-child-navigable-destruction 1 - @@ -7430,16 +8501,6 @@ current https://w3c.github.io/svg-aam/#dfn-informative -- -informative -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-informative - -1 - informative dfn @@ -7502,14 +8563,16 @@ https://drafts.csswg.org/css-color-3/#infotext 1 - infotext -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#infotext - +https://drafts.csswg.org/css-color-4/#valdef-color-infotext +1 1 +<color> +<deprecated-color> - infotext dfn @@ -7522,14 +8585,16 @@ https://www.w3.org/TR/css-color-3/#infotext 1 - infotext -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#infotext - +https://www.w3.org/TR/css-color-4/#valdef-color-infotext 1 +1 +<color> +<deprecated-color> - ingest payment method manifests dfn @@ -7551,20 +8616,40 @@ https://www.w3.org/TR/payment-method-manifest/#ingest-payment-method-manifests 1 1 - -inherit +inherent vowel dfn -css-cascade-3 -css-cascade -3 -current -https://drafts.csswg.org/css-cascade-3/#css-inheritance +i18n-glossary +i18n-glossary 1 +current +https://w3c.github.io/i18n-glossary/#dfn-inherent-vowel 1 -CSS + - -inherit -value -css-cascade-3 +inherent vowel +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-inherent-vowel +1 + +- +inherit +dfn +css-cascade-3 +css-cascade +3 +current +https://drafts.csswg.org/css-cascade-3/#css-inheritance +1 +1 +CSS +- +inherit +value +css-cascade-3 css-cascade 3 current @@ -7641,6 +8726,26 @@ CanvasDirection - inherit dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#attr-translate-inherit-state + +1 +- +inherit +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-inherit-state + +1 +- +inherit +dfn webidl webidl 1 @@ -7663,6 +8768,26 @@ dictionary - inherit dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#value-def-inherit +1 +1 +- +inherit +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#value-def-inherit +1 +1 +- +inherit +dfn css-cascade-3 css-cascade 3 @@ -7875,26 +9000,6 @@ dom-parsing current https://w3c.github.io/DOM-Parsing/#dfn-inherited-ns -1 -- -inherited policies -dfn -permissions-policy-1 -permissions-policy -1 -current -https://w3c.github.io/webappsec-permissions-policy/#inherited-policy - -1 -- -inherited policies -dfn -permissions-policy-1 -permissions-policy -1 -snapshot -https://www.w3.org/TR/permissions-policy-1/#inherited-policy - 1 - inherited policy @@ -7903,9 +9008,10 @@ permissions-policy-1 permissions-policy 1 current -https://w3c.github.io/webappsec-permissions-policy/#inherited-policy +https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-inherited-policy 1 +permissions policy - inherited policy dfn @@ -7913,9 +9019,10 @@ permissions-policy-1 permissions-policy 1 snapshot -https://www.w3.org/TR/permissions-policy-1/#inherited-policy +https://www.w3.org/TR/permissions-policy-1/#permissions-policy-inherited-policy 1 +permissions policy - inherited policy for a feature dfn @@ -8005,6 +9112,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#inherited-time +1 +- +inherited time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#inherited-time + 1 - inherited value @@ -8387,6 +9504,17 @@ URLSearchParams/URLSearchParams() URLSearchParams/constructor() - init +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-init + +1 +constructor string parser/state +- +init argument mediacapture-transform mediacapture-transform @@ -8562,6 +9690,62 @@ BluetoothAdvertisingEvent/constructor(type, init) - init argument +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-bluetoothdatafilter-init-init +1 +1 +BluetoothDataFilter/BluetoothDataFilter(init) +BluetoothDataFilter/constructor(init) +BluetoothDataFilter/BluetoothDataFilter() +BluetoothDataFilter/constructor() +- +init +argument +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-bluetoothlescanfilter-init-init +1 +1 +BluetoothLEScanFilter/BluetoothLEScanFilter(init) +BluetoothLEScanFilter/constructor(init) +BluetoothLEScanFilter/BluetoothLEScanFilter() +BluetoothLEScanFilter/constructor() +- +init +argument +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothmanufacturerdatafilter-bluetoothmanufacturerdatafilter-init-init +1 +1 +BluetoothManufacturerDataFilter/BluetoothManufacturerDataFilter(init) +BluetoothManufacturerDataFilter/constructor(init) +BluetoothManufacturerDataFilter/BluetoothManufacturerDataFilter() +BluetoothManufacturerDataFilter/constructor() +- +init +argument +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothservicedatafilter-bluetoothservicedatafilter-init-init +1 +1 +BluetoothServiceDataFilter/BluetoothServiceDataFilter(init) +BluetoothServiceDataFilter/constructor(init) +BluetoothServiceDataFilter/BluetoothServiceDataFilter() +BluetoothServiceDataFilter/constructor() +- +init +argument background-fetch background-fetch 1 @@ -8635,15 +9819,16 @@ TaskController/TaskController() TaskController/constructor() - init -dfn -urlpattern -urlpattern +argument +scheduling-apis +scheduling-apis 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-init - +https://wicg.github.io/scheduling-apis/#dom-tasksignal-any-signals-init-init 1 -constructor string parser/state +1 +TaskSignal/any(signals, init) +TaskSignal/any(signals) - init argument @@ -8831,20 +10016,6 @@ VideoFrame/constructor(image) - init argument -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror-init-init -1 -1 -WebTransportError/WebTransportError(init) -WebTransportError/constructor(init) -WebTransportError/WebTransportError() -WebTransportError/constructor() -- -init -argument webxrlayers-1 webxrlayers 1 @@ -9095,9 +10266,9 @@ CustomEvent - initData attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedevent-initdata 1 @@ -9106,20 +10277,42 @@ MediaEncryptedEvent - initData dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedeventinit-initdata 1 1 MediaEncryptedEventInit - -initDataType +initData attribute +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedevent-initdata +1 +1 +MediaEncryptedEvent +- +initData +dict-member +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedeventinit-initdata +1 1 +MediaEncryptedEventInit +- +initDataType +attribute +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedevent-initdatatype 1 @@ -9128,9 +10321,9 @@ MediaEncryptedEvent - initDataType dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedeventinit-initdatatype 1 @@ -9149,6 +10342,28 @@ https://w3c.github.io/media-capabilities/#dom-mediacapabilitieskeysystemconfigur MediaCapabilitiesKeySystemConfiguration - initDataType +attribute +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedevent-initdatatype +1 +1 +MediaEncryptedEvent +- +initDataType +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedeventinit-initdatatype +1 +1 +MediaEncryptedEventInit +- +initDataType dict-member media-capabilities media-capabilities @@ -9161,15 +10376,26 @@ MediaCapabilitiesKeySystemConfiguration - initDataTypes dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-initdatatypes 1 1 MediaKeySystemConfiguration - +initDataTypes +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-initdatatypes +1 +1 +MediaKeySystemConfiguration +- initDict argument web-bluetooth @@ -9965,73 +11191,117 @@ https://html.spec.whatwg.org/multipage/webstorage.html#dom-storageevent-initstor 1 StorageEvent - -initUIEvent(typeArg) +initTextEvent(type) method uievents uievents 1 current -https://w3c.github.io/uievents/#dom-uievent-inituievent +https://w3c.github.io/uievents/#dom-textevent-inittextevent 1 1 -UIEvent +TextEvent - -initUIEvent(typeArg) +initTextEvent(type) method uievents uievents 1 snapshot -https://www.w3.org/TR/uievents/#dom-uievent-inituievent +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent 1 1 -UIEvent +TextEvent - -initUIEvent(typeArg, bubblesArg) +initTextEvent(type, bubbles) method uievents uievents 1 current -https://w3c.github.io/uievents/#dom-uievent-inituievent +https://w3c.github.io/uievents/#dom-textevent-inittextevent 1 1 -UIEvent +TextEvent - -initUIEvent(typeArg, bubblesArg) +initTextEvent(type, bubbles) method uievents uievents 1 snapshot -https://www.w3.org/TR/uievents/#dom-uievent-inituievent +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent 1 1 -UIEvent +TextEvent - -initUIEvent(typeArg, bubblesArg, cancelableArg) +initTextEvent(type, bubbles, cancelable) method uievents uievents 1 current -https://w3c.github.io/uievents/#dom-uievent-inituievent +https://w3c.github.io/uievents/#dom-textevent-inittextevent 1 1 -UIEvent +TextEvent - -initUIEvent(typeArg, bubblesArg, cancelableArg) +initTextEvent(type, bubbles, cancelable) method uievents uievents 1 snapshot -https://www.w3.org/TR/uievents/#dom-uievent-inituievent +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent 1 1 -UIEvent +TextEvent - -initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg) +initTextEvent(type, bubbles, cancelable, view) +method +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-inittextevent +1 +1 +TextEvent +- +initTextEvent(type, bubbles, cancelable, view) +method +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent +1 +1 +TextEvent +- +initTextEvent(type, bubbles, cancelable, view, data) +method +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-inittextevent +1 +1 +TextEvent +- +initTextEvent(type, bubbles, cancelable, view, data) +method +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent +1 +1 +TextEvent +- +initUIEvent(typeArg) method uievents uievents @@ -10042,7 +11312,7 @@ https://w3c.github.io/uievents/#dom-uievent-inituievent 1 UIEvent - -initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg) +initUIEvent(typeArg) method uievents uievents @@ -10053,7 +11323,7 @@ https://www.w3.org/TR/uievents/#dom-uievent-inituievent 1 UIEvent - -initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg) +initUIEvent(typeArg, bubblesArg) method uievents uievents @@ -10064,7 +11334,7 @@ https://w3c.github.io/uievents/#dom-uievent-inituievent 1 UIEvent - -initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg) +initUIEvent(typeArg, bubblesArg) method uievents uievents @@ -10075,60 +11345,71 @@ https://www.w3.org/TR/uievents/#dom-uievent-inituievent 1 UIEvent - -initdata -dfn -encrypted-media -encrypted-media +initUIEvent(typeArg, bubblesArg, cancelableArg) +method +uievents +uievents 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediaencryptedevent-initdata - +current +https://w3c.github.io/uievents/#dom-uievent-inituievent 1 -mediaencryptedevent +1 +UIEvent - -initdata -dfn -encrypted-media -encrypted-media +initUIEvent(typeArg, bubblesArg, cancelableArg) +method +uievents +uievents 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediaencryptedeventinit-initdata - +https://www.w3.org/TR/uievents/#dom-uievent-inituievent +1 1 -mediaencryptedeventinit +UIEvent - -initdatatype -dfn -encrypted-media -encrypted-media +initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg) +method +uievents +uievents 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediaencryptedevent-initdatatype - +current +https://w3c.github.io/uievents/#dom-uievent-inituievent 1 -mediaencryptedevent +1 +UIEvent - -initdatatype -dfn -encrypted-media -encrypted-media +initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg) +method +uievents +uievents 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediaencryptedeventinit-initdatatype - +https://www.w3.org/TR/uievents/#dom-uievent-inituievent +1 1 -mediaencryptedeventinit +UIEvent - -initdatatypes -dfn -encrypted-media -encrypted-media +initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg) +method +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-uievent-inituievent +1 +1 +UIEvent +- +initUIEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg) +method +uievents +uievents 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-initdatatypes - +https://www.w3.org/TR/uievents/#dom-uievent-inituievent +1 1 -mediakeysystemconfiguration +UIEvent - initial value @@ -10282,24 +11563,33 @@ https://drafts.csswg.org/css2/#initial-containing-block - initial containing block dfn -css-display-3 -css-display -3 -snapshot -https://www.w3.org/TR/css-display-3/#initial-containing-block +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#x1 1 1 - -initial direction +initial containing block dfn -motion-1 -motion +css2 +css 1 -current -https://drafts.fxtf.org/motion-1/#offset-path-initial-direction +snapshot +https://www.w3.org/TR/CSS21/visudet.html#x1 +1 +1 +- +initial containing block +dfn +css-display-3 +css-display +3 +snapshot +https://www.w3.org/TR/css-display-3/#initial-containing-block 1 1 -offset path - initial direction value @@ -10352,6 +11642,17 @@ https://www.w3.org/TR/css-flexbox-1/#initial-free-space 1 - +initial host +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-record-initial-host + +1 +bounce tracking record +- initial letter dfn css-inline-3 @@ -10467,17 +11768,6 @@ https://www.w3.org/TR/SVG2/paths.html#TermInitialPoint 1 - initial position -dfn -motion-1 -motion -1 -current -https://drafts.fxtf.org/motion-1/#offset-path-initial-position -1 -1 -offset path -- -initial position value motion-1 motion @@ -10515,7 +11805,7 @@ css-overflow 3 current https://drafts.csswg.org/css-overflow-3/#initial-scroll-position - +1 1 - initial scroll position @@ -10528,6 +11818,26 @@ https://www.w3.org/TR/css-overflow-3/#initial-scroll-position 1 1 - +initial scroll target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#initial-scroll-target +1 +1 +- +initial scroll target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#initial-scroll-target +1 +1 +- initial serialized large-blob array dfn fido-v2.1 @@ -10538,17 +11848,50 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 - -initial snapshot root size +initial snapshot containing block size dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#viewtransition-initial-snapshot-root-size +https://drafts.csswg.org/css-view-transitions-1/#viewtransition-initial-snapshot-containing-block-size + +1 +ViewTransition +- +initial snapshot containing block size +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#view-transition-params-initial-snapshot-containing-block-size + +1 +view transition params +- +initial snapshot containing block size +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#viewtransition-initial-snapshot-containing-block-size 1 ViewTransition - +initial snapshot containing block size +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#view-transition-params-initial-snapshot-containing-block-size + +1 +view transition params +- initial url dfn html @@ -10628,6 +11971,26 @@ webdriver current https://w3c.github.io/webdriver/#dfn-initial-value +1 +- +initial value +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#x1 +1 +1 +- +initial value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#x1 +1 1 - initial value @@ -10682,7 +12045,7 @@ https://www.w3.org/TR/webdriver2/#dfn-initial-value - initial viewport dfn -css-viewport +css-viewport-1 css-viewport 1 current @@ -10708,6 +12071,16 @@ svg snapshot https://www.w3.org/TR/SVG2/coords.html#TermInitialViewport 1 +1 +- +initial viewport +dfn +css-viewport-1 +css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#initial-viewport + 1 - initial-letter @@ -10814,6 +12187,16 @@ https://www.w3.org/TR/css-properties-values-api-1/#descdef-property-initial-valu 1 @property - +initial-window-credentialless +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#initial-window-credentialless +1 +1 +- initialCellState dict-member webnn @@ -10841,8 +12224,8 @@ argument css-font-loading-3 css-font-loading 3 -current -https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-fontfaceset-initialfaces-initialfaces +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-fontfaceset-initialfaces-initialfaces 1 1 FontFaceSet/FontFaceSet(initialFaces) @@ -10964,6 +12347,26 @@ https://www.w3.org/TR/css-properties-values-api-1/#dom-propertydefinition-initia 1 PropertyDefinition - +initial_presentation_delay_minus_one +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#initial_presentation_delay_minus_one + +1 +- +initial_presentation_delay_present +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#initial_presentation_delay_present +1 +1 +- initialinsertion dfn html @@ -11028,24 +12431,64 @@ https://www.w3.org/TR/miniapp-lifecycle/#dfn-initialization Document - -initialization data type +initialization data dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-initialization-data +1 +1 +- +initialization data +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-initialization-data 1 +1 +- +initialization data encountered +dfn +encrypted-media-2 +encrypted-media +2 current -https://w3c.github.io/encrypted-media/#initialization-data-type - +https://w3c.github.io/encrypted-media/#dfn-initialization-data-encountered +1 1 - -initialization data type +initialization data encountered dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-initialization-data-encountered +1 +1 +- +initialization data type +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-initialization-data-type +1 1 +- +initialization data type +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#initialization-data-type - +https://www.w3.org/TR/encrypted-media-2/#dfn-initialization-data-type +1 1 - initialization segment @@ -11054,9 +12497,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#init-segment +https://w3c.github.io/media-source/#dfn-initialization-segment +1 1 - - initialization segment dfn @@ -11064,9 +12507,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#init-segment +https://www.w3.org/TR/media-source-2/#dfn-initialization-segment +1 1 - - initialization segment received dfn @@ -11116,6 +12559,17 @@ url url 1 current +https://url.spec.whatwg.org/#url-initialize + +1 +URL +- +initialize +dfn +url +url +1 +current https://url.spec.whatwg.org/#urlsearchparams-initialize 1 @@ -11127,7 +12581,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-initialize +https://urlpattern.spec.whatwg.org/#urlpattern-initialize 1 URLPattern @@ -11252,24 +12706,84 @@ https://www.w3.org/TR/wasm-js-api-2/#initialize-a-memory-object 1 - -initialize a new intersectionobserver +initialize a mouseevent dfn -intersection-observer -intersection-observer +uievents +uievents 1 current -https://w3c.github.io/IntersectionObserver/#initialize-a-new-intersectionobserver - +https://w3c.github.io/uievents/#initialize-a-mouseevent +1 1 - -initialize a new intersectionobserver +initialize a mouseevent dfn -intersection-observer -intersection-observer -1 +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#initialize-a-mouseevent +1 +1 +- +initialize a new intersectionobserver +dfn +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#initialize-a-new-intersectionobserver + +1 +- +initialize a new intersectionobserver +dfn +intersection-observer +intersection-observer +1 snapshot https://www.w3.org/TR/intersection-observer/#initialize-a-new-intersectionobserver +1 +- +initialize a performanceentry +dfn +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dfn-initialize-a-performanceentry +1 +1 +- +initialize a performanceentry +dfn +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dfn-initialize-a-performanceentry +1 +1 +- +initialize a pointerevent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#initialize-a-pointerevent + +1 +- +initialize a pointerevent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#initialize-a-pointerevent + 1 - initialize a quad layer @@ -11340,6 +12854,26 @@ wasm-js-api snapshot https://www.w3.org/TR/wasm-js-api-2/#initialize-a-table-object +1 +- +initialize a uievent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#initialize-a-uievent + +1 +- +initialize a uievent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#initialize-a-uievent + 1 - initialize a worker global scope's policy container @@ -11448,7 +12982,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#initialize-event-timing +https://w3c.github.io/event-timing/#initialize-event-timing 1 1 - @@ -11506,16 +13040,55 @@ https://www.w3.org/TR/webcodecs/#videoframe-initialize-frame-with-resource-and-s 1 VideoFrame - -initialize the entries for a new navigation +initialize pointerlock attributes for mouseevent +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#initialize-pointerlock-attributes-for-mouseevent + +1 +- +initialize pointerlock attributes for mouseevent +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#initialize-pointerlock-attributes-for-mouseevent + +1 +- +initialize tcpserversocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-tcpserversocket-readable-stream + +1 +- +initialize tcpsocket readable stream dfn -navigation-api -navigation-api +direct-sockets +direct-sockets 1 current -https://wicg.github.io/navigation-api/#navigation-initialize-the-entries-for-a-new-navigation +https://wicg.github.io/direct-sockets/#dfn-initialize-tcpsocket-readable-stream + +1 +- +initialize tcpsocket writable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-tcpsocket-writable-stream 1 -Navigation - initialize the navigable dfn @@ -11525,6 +13098,26 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#initialize-the-navigable +1 +- +initialize the navigation api entries for a new document +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#initialize-the-navigation-api-entries-for-a-new-document + +1 +- +initialize the nested traversable +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#initialize-the-nested-traversable + 1 - initialize the render state @@ -11589,8 +13182,58 @@ https://www.w3.org/TR/webxr/#initialize-the-session 1 - -initialize the underlying source +initialize the tcpserversocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-tcpserversocket-readable-stream + +1 +- +initialize the tcpsocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-tcpsocket-readable-stream + +1 +- +initialize the tcpsocket writable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-tcpsocket-writable-stream + +1 +- +initialize the udpsocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-udpsocket-readable-stream + +1 +- +initialize the udpsocket writable stream dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-udpsocket-writable-stream + +1 +- +initialize the underlying source +abstract-op mediacapture-streams mediacapture-streams 1 @@ -11600,7 +13243,7 @@ https://w3c.github.io/mediacapture-main/#dfn-initialize-the-underlying-source 1 - initialize the underlying source -dfn +abstract-op mediacapture-streams mediacapture-streams 1 @@ -11627,6 +13270,26 @@ webxrlayers snapshot https://www.w3.org/TR/webxrlayers-1/#initialize-the-viewport +1 +- +initialize udpsocket readable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-udpsocket-readable-stream + +1 +- +initialize udpsocket writable stream +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-initialize-udpsocket-writable-stream + 1 - initialize visible rect and display size @@ -11671,28 +13334,6 @@ https://www.w3.org/TR/webtransport/#initialize-webtransport-over-http 1 - -initializeGraph(graph) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-initializegraph -1 -1 -MLCommandEncoder -- -initializeGraph(graph) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-initializegraph -1 -1 -MLCommandEncoder -- initialized flag dfn dom @@ -11762,26 +13403,6 @@ gamepad snapshot https://www.w3.org/TR/gamepad/#dfn-initializing-buttons -1 -- -initiate a preconnect -dfn -resource-hints -resource-hints -1 -current -https://w3c.github.io/resource-hints/#dfn-initiate-a-preconnect - -1 -- -initiate a preconnect -dfn -resource-hints -resource-hints -1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-initiate-a-preconnect -1 1 - initiate remote playback @@ -11814,6 +13435,17 @@ https://html.spec.whatwg.org/multipage/dnd.html#initiate-the-drag-and-drop-opera 1 - +initiateRoomCapture() +method +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrsession-initiateroomcapture +1 +1 +XRSession +- initiator dfn fetch @@ -11835,6 +13467,17 @@ https://html.spec.whatwg.org/multipage/semantics.html#link-options-initiator 1 - +initiator fenced frame config instance +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#source-snapshot-params-initiator-fenced-frame-config-instance + +1 +source snapshot params +- initiator origin dfn html @@ -11926,16 +13569,6 @@ picture-in-picture snapshot https://www.w3.org/TR/picture-in-picture/#initiators-of-active-picture-in-picture-sessions -1 -- -initiatortocheck -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-history-step-initiator - 1 - inject a key into a value using a key path @@ -12235,7 +13868,7 @@ current https://drafts.csswg.org/css-gcpm-3/#footnote-display-inline 1 1 -propdef-footnote-display +footnote-display - inline value @@ -12306,6 +13939,37 @@ https://immersive-web.github.io/webxr/#dom-xrsessionmode-inline XRSessionMode - inline +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#value-def-inline +1 +1 +- +inline +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#value-def-inline +1 +1 +- +inline +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-size-inline +1 +1 +anchor-size() +- +inline value css-box-4 css-box @@ -12455,16 +14119,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#inline-axis 1 -1 -- -inline axis -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-inline-axis - 1 - inline base direction @@ -12599,26 +14253,67 @@ https://drafts.csswg.org/css2/#inline-box - inline box dfn -css-display-3 -css-display -3 -snapshot -https://www.w3.org/TR/css-display-3/#inline-box -1 +css2 +css 1 -- -inline check -dfn -csp3 -csp -3 current -https://w3c.github.io/webappsec-csp/#directive-inline-check +https://www.w3.org/TR/CSS21/visuren.html#inline-box 1 +1 +- +inline box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#inline-box +1 +1 +- +inline box +dfn +css-display-3 +css-display +3 +snapshot +https://www.w3.org/TR/css-display-3/#inline-box +1 +1 +- +inline check +dfn +csp3 +csp +3 +current +https://w3c.github.io/webappsec-csp/#directive-inline-check +1 +1 +directive +- +inline check +dfn +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#directive-inline-check + 1 directive - inline check +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-inline-check + +1 +- +inline check dfn csp3 csp @@ -12677,16 +14372,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#inline-dimension 1 -1 -- -inline dimension -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-inline-dimension - 1 - inline documentation for external scripts @@ -12967,16 +14652,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#inline-size 1 -1 -- -inline size -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-inline-size - 1 - inline start @@ -13145,6 +14820,26 @@ https://drafts.csswg.org/css2/#value-def-inline-block display - inline-block +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#value-def-inline-block +1 +1 +- +inline-block +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#value-def-inline-block +1 +1 +- +inline-block value css-display-3 css-display @@ -13158,6 +14853,18 @@ display - inline-end value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-end +1 +1 +position-area +<position-area> +- +inline-end +value css-box-4 css-box 4 @@ -13211,6 +14918,18 @@ https://drafts.csswg.org/css-writing-modes-4/#inline-end - inline-end value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-end +1 +1 +inset-area +<inset-area> +- +inline-end +value css-box-4 css-box 4 @@ -13260,16 +14979,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#inline-end 1 -1 -- -inline-end -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-inline-end - 1 - inline-flex @@ -13462,6 +15171,26 @@ https://drafts.csswg.org/css-display-4/#inline-level-box - inline-level box dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x11 +1 +1 +- +inline-level box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x11 +1 +1 +- +inline-level box +dfn css-display-3 css-display 3 @@ -13510,6 +15239,26 @@ https://www.w3.org/TR/css-display-3/#inline-level 1 1 - +inline-level element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#inline-level +1 +1 +- +inline-level element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#inline-level +1 +1 +- inline-level elements dfn css22 @@ -13520,38 +15269,97 @@ https://drafts.csswg.org/css2/#inline-level 1 - +inline-self-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-self-end +1 +1 +position-area +<position-area> +- +inline-self-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-self-end +1 +1 +inset-area +<inset-area> +- +inline-self-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-self-start +1 +1 +position-area +<position-area> +- +inline-self-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-self-start +1 +1 +inset-area +<inset-area> +- +inline-size +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inline-size +1 +1 +CSSPositionTryDescriptors +- inline-size descriptor -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#descdef-container-inline-size +https://drafts.csswg.org/css-conditional-5/#descdef-container-inline-size 1 1 @container - inline-size value -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#valdef-contain-inline-size +https://drafts.csswg.org/css-conditional-5/#valdef-container-type-inline-size 1 1 -contain +container-type - inline-size value -css-contain-3 +css-contain-2 css-contain -3 +2 current -https://drafts.csswg.org/css-contain-3/#valdef-container-type-inline-size +https://drafts.csswg.org/css-contain-2/#valdef-contain-inline-size 1 1 -container-type +contain - inline-size property @@ -13605,6 +15413,28 @@ https://www.w3.org/TR/SVG2/text.html#InlineSizeProperty - inline-size descriptor +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#descdef-container-inline-size +1 +1 +@container +- +inline-size +value +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#valdef-container-type-inline-size +1 +1 +container-type +- +inline-size +descriptor css-contain-3 css-contain 3 @@ -13668,11 +15498,11 @@ https://www.w3.org/TR/css-writing-modes-4/#inline-size - inline-size containment dfn -css-contain-3 +css-contain-2 css-contain -3 +2 current -https://drafts.csswg.org/css-contain-3/#inline-size-containment +https://drafts.csswg.org/css-contain-2/#inline-size-containment 1 1 - @@ -13708,6 +15538,18 @@ https://www.w3.org/TR/css-inline-3/#propdef-inline-sizing - inline-start value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-start +1 +1 +position-area +<position-area> +- +inline-start +value css-box-4 css-box 4 @@ -13761,6 +15603,18 @@ https://drafts.csswg.org/css-writing-modes-4/#inline-start - inline-start value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-start +1 +1 +inset-area +<inset-area> +- +inline-start +value css-box-4 css-box 4 @@ -13810,16 +15664,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#inline-start 1 -1 -- -inline-start -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-inline-start - 1 - inline-table @@ -13869,19 +15713,39 @@ display - inline-table value -css-display-3 -css-display -3 -snapshot -https://www.w3.org/TR/css-display-3/#valdef-display-inline-table +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table 1 1 -display -<display-legacy> - inline-table -dfn -css-tables-3 +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table +1 +1 +- +inline-table +value +css-display-3 +css-display +3 +snapshot +https://www.w3.org/TR/css-display-3/#valdef-display-inline-table +1 +1 +display +<display-legacy> +- +inline-table +dfn +css-tables-3 css-tables 3 snapshot @@ -13968,6 +15832,17 @@ LayoutFragment - inlineSize attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inlinesize +1 +1 +CSSPositionTryDescriptors +- +inlineSize +attribute resize-observer-1 resize-observer 1 @@ -14162,9 +16037,21 @@ css-backgrounds-3 css-backgrounds 3 current -https://drafts.csswg.org/css-backgrounds-3/#inner-box-shadow - +https://drafts.csswg.org/css-backgrounds-3/#box-shadow-inner-box-shadow +1 +1 +box-shadow +- +inner box-shadow +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-inner-box-shadow +1 1 +box-shadow-position - inner box-shadow dfn @@ -14172,9 +16059,10 @@ css-backgrounds-3 css-backgrounds 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#inner-box-shadow - +https://www.w3.org/TR/css-backgrounds-3/#box-shadow-inner-box-shadow +1 1 +box-shadow - inner display type dfn @@ -14234,6 +16122,26 @@ css current https://drafts.csswg.org/css2/#inner-edge +1 +- +inner edge +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#inner-edge +1 +1 +- +inner edge +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#inner-edge +1 1 - inner edge @@ -14318,11 +16226,11 @@ https://dom.spec.whatwg.org/#concept-event-listener-inner-invoke - inner navigate event firing algorithm dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#inner-navigate-event-firing-algorithm +https://html.spec.whatwg.org/multipage/nav-history-apis.html#inner-navigate-event-firing-algorithm 1 - @@ -14421,14 +16329,25 @@ https://www.w3.org/TR/css-sizing-3/#inner-size - innerHTML attribute -dom-parsing -dom-parsing +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-element-innerhtml +1 +1 +Element +- +innerHTML +attribute +html +html 1 current -https://w3c.github.io/DOM-Parsing/#dom-innerhtml-innerhtml +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-shadowroot-innerhtml 1 1 -InnerHTML +ShadowRoot - innerHeight attribute @@ -14590,6 +16509,95 @@ https://html.spec.whatwg.org/multipage/input.html#the-input-element - input dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-input +1 +1 +constructor string parser +- +input +argument +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec-input-baseurl-input +1 +1 +URLPattern/exec(input, baseURL) +URLPattern/exec(input) +URLPattern/exec() +- +input +argument +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-test-input-baseurl-input +1 +1 +URLPattern/test(input, baseURL) +URLPattern/test(input) +URLPattern/test() +- +input +argument +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-baseurl-options-input +1 +1 +URLPattern/URLPattern(input, baseURL, options) +URLPattern/constructor(input, baseURL, options) +URLPattern/URLPattern(input, baseURL) +URLPattern/constructor(input, baseURL) +- +input +argument +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options-input +1 +1 +URLPattern/URLPattern(input, options) +URLPattern/constructor(input, options) +URLPattern/URLPattern(input) +URLPattern/constructor(input) +URLPattern/URLPattern() +URLPattern/constructor() +- +input +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatterncomponentresult-input +1 +1 +URLPatternComponentResult +- +input +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#tokenizer-input + +1 +tokenizer +- +input +dfn input-events-2 input-events 2 @@ -14678,6 +16686,17 @@ https://w3c.github.io/uievents/#input 1 - input +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#modules-input +1 +1 +modules +- +input argument webaudio webaudio @@ -14721,16 +16740,15 @@ https://webaudio.github.io/web-midi-api/#dom-midiporttype-input MIDIPortType - input -argument +dfn webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-averagepool2d-input-options-input -1 +https://webmachinelearning.github.io/webnn/#computational-graph-input + 1 -MLGraphBuilder/averagePool2d(input, options) -MLGraphBuilder/averagePool2d(input) +computational graph - input argument @@ -14738,11 +16756,22 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-abs-input-options-input 1 1 -MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) +MLGraphBuilder/abs(input, options) +MLGraphBuilder/ceil(input, options) +MLGraphBuilder/cos(input, options) +MLGraphBuilder/erf(input, options) +MLGraphBuilder/exp(input, options) +MLGraphBuilder/floor(input, options) +MLGraphBuilder/identity(input, options) +MLGraphBuilder/log(input, options) +MLGraphBuilder/neg(input, options) +MLGraphBuilder/reciprocal(input, options) +MLGraphBuilder/sin(input, options) +MLGraphBuilder/sqrt(input, options) +MLGraphBuilder/tan(input, options) - input argument @@ -14750,11 +16779,11 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-input 1 1 -MLGraphBuilder/conv2d(input, filter, options) -MLGraphBuilder/conv2d(input, filter) +MLGraphBuilder/argMin(input, axis, options) +MLGraphBuilder/argMax(input, axis, options) - input argument @@ -14762,11 +16791,12 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-averagepool2d-input-options-input 1 1 -MLGraphBuilder/convTranspose2d(input, filter, options) -MLGraphBuilder/convTranspose2d(input, filter) +MLGraphBuilder/averagePool2d(input, options) +MLGraphBuilder/l2Pool2d(input, options) +MLGraphBuilder/maxPool2d(input, options) - input argument @@ -14774,11 +16804,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input 1 1 -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/batchNormalization(input, mean, variance, options) - input argument @@ -14786,11 +16815,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cast-input-type-options-input 1 1 -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) +MLGraphBuilder/cast(input, type, options) - input argument @@ -14798,11 +16826,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-input-options-input 1 1 -MLGraphBuilder/instanceNormalization(input, options) -MLGraphBuilder/instanceNormalization(input) +MLGraphBuilder/clamp(input, options) - input argument @@ -14810,11 +16837,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-l2pool2d-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-input 1 1 -MLGraphBuilder/l2Pool2d(input, options) -MLGraphBuilder/l2Pool2d(input) +MLGraphBuilder/conv2d(input, filter, options) - input argument @@ -14822,11 +16848,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-options-input 1 1 -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/convTranspose2d(input, filter, options) - input argument @@ -14834,11 +16859,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-input-options-input 1 1 -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) +MLGraphBuilder/elu(input, options) - input argument @@ -14846,11 +16870,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-maxpool2d-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-input 1 1 -MLGraphBuilder/maxPool2d(input, options) -MLGraphBuilder/maxPool2d(input) +MLGraphBuilder/expand(input, newShape, options) - input argument @@ -14858,11 +16881,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-padding-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gather-input-indices-options-input 1 1 -MLGraphBuilder/pad(input, padding, options) -MLGraphBuilder/pad(input, padding) +MLGraphBuilder/gather(input, indices, options) - input argument @@ -14870,11 +16892,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducel1-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gelu-input-options-input 1 1 -MLGraphBuilder/reduceL1(input, options) -MLGraphBuilder/reduceL1(input) +MLGraphBuilder/gelu(input, options) - input argument @@ -14882,11 +16903,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducel2-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input 1 1 -MLGraphBuilder/reduceL2(input, options) -MLGraphBuilder/reduceL2(input) +MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) - input argument @@ -14894,11 +16914,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducelogsum-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input 1 1 -MLGraphBuilder/reduceLogSum(input, options) -MLGraphBuilder/reduceLogSum(input) +MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) - input argument @@ -14906,11 +16925,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducelogsumexp-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-input-options-input 1 1 -MLGraphBuilder/reduceLogSumExp(input, options) -MLGraphBuilder/reduceLogSumExp(input) +MLGraphBuilder/hardSigmoid(input, options) - input argument @@ -14918,11 +16936,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducemax-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish-input-options-input 1 1 -MLGraphBuilder/reduceMax(input, options) -MLGraphBuilder/reduceMax(input) +MLGraphBuilder/hardSwish(input, options) - input argument @@ -14930,11 +16947,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducemean-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-input 1 1 -MLGraphBuilder/reduceMean(input, options) -MLGraphBuilder/reduceMean(input) +MLGraphBuilder/instanceNormalization(input, options) - input argument @@ -14942,11 +16958,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducemin-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-layernormalization-input-options-input 1 1 -MLGraphBuilder/reduceMin(input, options) -MLGraphBuilder/reduceMin(input) +MLGraphBuilder/layerNormalization(input, options) - input argument @@ -14954,11 +16969,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reduceproduct-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-input-options-input 1 1 -MLGraphBuilder/reduceProduct(input, options) -MLGraphBuilder/reduceProduct(input) +MLGraphBuilder/leakyRelu(input, options) - input argument @@ -14966,11 +16980,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducesum-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-input-options-input 1 1 -MLGraphBuilder/reduceSum(input, options) -MLGraphBuilder/reduceSum(input) +MLGraphBuilder/linear(input, options) - input argument @@ -14978,11 +16991,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducesumsquare-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input 1 1 -MLGraphBuilder/reduceSumSquare(input, options) -MLGraphBuilder/reduceSumSquare(input) +MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) - input argument @@ -14990,11 +17002,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-resample2d-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input 1 1 -MLGraphBuilder/resample2d(input, options) -MLGraphBuilder/resample2d(input) +MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) - input argument @@ -15002,10 +17013,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reshape-input-newshape-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input 1 1 -MLGraphBuilder/reshape(input, newShape) +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) - input argument @@ -15013,11 +17024,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-prelu-input-slope-options-input 1 1 -MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) +MLGraphBuilder/prelu(input, slope, options) - input argument @@ -15025,11 +17035,19 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-split-input-splits-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducel1-input-options-input 1 1 -MLGraphBuilder/split(input, splits, options) -MLGraphBuilder/split(input, splits) +MLGraphBuilder/reduceL1(input, options) +MLGraphBuilder/reduceL2(input, options) +MLGraphBuilder/reduceLogSum(input, options) +MLGraphBuilder/reduceLogSumExp(input, options) +MLGraphBuilder/reduceMax(input, options) +MLGraphBuilder/reduceMean(input, options) +MLGraphBuilder/reduceMin(input, options) +MLGraphBuilder/reduceProduct(input, options) +MLGraphBuilder/reduceSum(input, options) +MLGraphBuilder/reduceSumSquare(input, options) - input argument @@ -15037,11 +17055,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-squeeze-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-relu-input-options-input 1 1 -MLGraphBuilder/squeeze(input, options) -MLGraphBuilder/squeeze(input) +MLGraphBuilder/relu(input, options) - input argument @@ -15049,134 +17066,131 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-transpose-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-resample2d-input-options-input 1 1 -MLGraphBuilder/transpose(input, options) -MLGraphBuilder/transpose(input) +MLGraphBuilder/resample2d(input, options) - input argument -sanitizer-api -sanitizer-api +webnn +webnn 1 current -https://wicg.github.io/sanitizer-api/#dom-element-sethtml-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-input 1 1 -Element/setHTML(input, options) -Element/setHTML(input) +MLGraphBuilder/reshape(input, newShape, options) - input argument -sanitizer-api -sanitizer-api +webnn +webnn 1 current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-sanitize-input-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sigmoid-input-options-input 1 1 -Sanitizer/sanitize(input) +MLGraphBuilder/sigmoid(input, options) - input argument -sanitizer-api -sanitizer-api +webnn +webnn 1 current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-sanitizefor-element-input-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-input 1 1 -Sanitizer/sanitizeFor(element, input) +MLGraphBuilder/slice(input, starts, sizes, options) - input -dfn -urlpattern -urlpattern +argument +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-input 1 1 -constructor string parser +MLGraphBuilder/softmax(input, axis, options) - input argument -urlpattern -urlpattern +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-exec-input-baseurl-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-input-options-input 1 1 -URLPattern/exec(input, baseURL) -URLPattern/exec(input) -URLPattern/exec() +MLGraphBuilder/softplus(input, options) - input argument -urlpattern -urlpattern +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-test-input-baseurl-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign-input-options-input 1 1 -URLPattern/test(input, baseURL) -URLPattern/test(input) -URLPattern/test() +MLGraphBuilder/softsign(input, options) - input argument -urlpattern -urlpattern +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-baseurl-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-split-input-splits-options-input 1 1 -URLPattern/URLPattern(input, baseURL, options) -URLPattern/constructor(input, baseURL, options) -URLPattern/URLPattern(input, baseURL) -URLPattern/constructor(input, baseURL) +MLGraphBuilder/split(input, splits, options) - input argument -urlpattern -urlpattern +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tanh-input-options-input 1 1 -URLPattern/URLPattern(input, options) -URLPattern/constructor(input, options) -URLPattern/URLPattern(input) -URLPattern/constructor(input) -URLPattern/URLPattern() -URLPattern/constructor() +MLGraphBuilder/tanh(input, options) - input -dict-member -urlpattern -urlpattern +argument +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterncomponentresult-input +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-transpose-input-options-input 1 1 -URLPatternComponentResult +MLGraphBuilder/transpose(input, options) +- +input +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-triangular-input-options-input +1 +1 +MLGraphBuilder/triangular(input, options) - input dfn -urlpattern -urlpattern +webnn +webnn 1 current -https://wicg.github.io/urlpattern/#tokenizer-input +https://webmachinelearning.github.io/webnn/#operator-input 1 -tokenizer +operator - input dfn @@ -15186,7 +17200,7 @@ input-events snapshot https://www.w3.org/TR/input-events-2/#dfn-input - +1 - input argument @@ -15311,6 +17325,63 @@ https://www.w3.org/TR/webgpu/#internal-usage-input internal usage - input +enum-value +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiporttype-input +1 +1 +MIDIPortType +- +input +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#computational-graph-input + +1 +computational graph +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs-input-options-input +1 +1 +MLGraphBuilder/abs(input, options) +MLGraphBuilder/ceil(input, options) +MLGraphBuilder/cos(input, options) +MLGraphBuilder/erf(input, options) +MLGraphBuilder/exp(input, options) +MLGraphBuilder/floor(input, options) +MLGraphBuilder/identity(input, options) +MLGraphBuilder/log(input, options) +MLGraphBuilder/neg(input, options) +MLGraphBuilder/reciprocal(input, options) +MLGraphBuilder/sin(input, options) +MLGraphBuilder/sqrt(input, options) +MLGraphBuilder/tan(input, options) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-input +1 +1 +MLGraphBuilder/argMin(input, axis, options) +MLGraphBuilder/argMax(input, axis, options) +- +input argument webnn webnn @@ -15320,7 +17391,8 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-averagepool2d-input-options-inpu 1 1 MLGraphBuilder/averagePool2d(input, options) -MLGraphBuilder/averagePool2d(input) +MLGraphBuilder/l2Pool2d(input, options) +MLGraphBuilder/maxPool2d(input, options) - input argument @@ -15332,7 +17404,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-va 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-options-input +1 +1 +MLGraphBuilder/cast(input, type, options) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-input-options-input +1 +1 +MLGraphBuilder/clamp(input, options) - input argument @@ -15344,7 +17437,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-inpu 1 1 MLGraphBuilder/conv2d(input, filter, options) -MLGraphBuilder/conv2d(input, filter) - input argument @@ -15356,7 +17448,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-opt 1 1 MLGraphBuilder/convTranspose2d(input, filter, options) -MLGraphBuilder/convTranspose2d(input, filter) - input argument @@ -15364,11 +17455,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-input-options-input 1 1 -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/elu(input, options) - input argument @@ -15376,11 +17466,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-input 1 1 -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) +MLGraphBuilder/expand(input, newShape, options) - input argument @@ -15388,11 +17477,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-input 1 1 -MLGraphBuilder/instanceNormalization(input, options) -MLGraphBuilder/instanceNormalization(input) +MLGraphBuilder/gather(input, indices, options) - input argument @@ -15400,11 +17488,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-l2pool2d-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gelu-input-options-input 1 1 -MLGraphBuilder/l2Pool2d(input, options) -MLGraphBuilder/l2Pool2d(input) +MLGraphBuilder/gelu(input, options) - input argument @@ -15412,11 +17499,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input 1 1 -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) - input argument @@ -15424,11 +17510,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input 1 1 -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) +MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) - input argument @@ -15436,11 +17521,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-maxpool2d-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-input-options-input 1 1 -MLGraphBuilder/maxPool2d(input, options) -MLGraphBuilder/maxPool2d(input) +MLGraphBuilder/hardSigmoid(input, options) - input argument @@ -15448,11 +17532,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-padding-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish-input-options-input 1 1 -MLGraphBuilder/pad(input, padding, options) -MLGraphBuilder/pad(input, padding) +MLGraphBuilder/hardSwish(input, options) - input argument @@ -15460,11 +17543,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-input 1 1 -MLGraphBuilder/reduceL1(input, options) -MLGraphBuilder/reduceL1(input) +MLGraphBuilder/instanceNormalization(input, options) - input argument @@ -15472,11 +17554,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel2-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization-input-options-input 1 1 -MLGraphBuilder/reduceL2(input, options) -MLGraphBuilder/reduceL2(input) +MLGraphBuilder/layerNormalization(input, options) - input argument @@ -15484,11 +17565,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsum-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-input-options-input 1 1 -MLGraphBuilder/reduceLogSum(input, options) -MLGraphBuilder/reduceLogSum(input) +MLGraphBuilder/leakyRelu(input, options) - input argument @@ -15496,11 +17576,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsumexp-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-input-options-input 1 1 -MLGraphBuilder/reduceLogSumExp(input, options) -MLGraphBuilder/reduceLogSumExp(input) +MLGraphBuilder/linear(input, options) - input argument @@ -15508,11 +17587,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemax-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input 1 1 -MLGraphBuilder/reduceMax(input, options) -MLGraphBuilder/reduceMax(input) +MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) - input argument @@ -15520,11 +17598,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemean-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input 1 1 -MLGraphBuilder/reduceMean(input, options) -MLGraphBuilder/reduceMean(input) +MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) - input argument @@ -15532,11 +17609,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemin-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input 1 1 -MLGraphBuilder/reduceMin(input, options) -MLGraphBuilder/reduceMin(input) +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) - input argument @@ -15544,11 +17620,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-options-input 1 1 -MLGraphBuilder/reduceProduct(input, options) -MLGraphBuilder/reduceProduct(input) +MLGraphBuilder/prelu(input, slope, options) - input argument @@ -15556,11 +17631,19 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesum-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-input 1 1 +MLGraphBuilder/reduceL1(input, options) +MLGraphBuilder/reduceL2(input, options) +MLGraphBuilder/reduceLogSum(input, options) +MLGraphBuilder/reduceLogSumExp(input, options) +MLGraphBuilder/reduceMax(input, options) +MLGraphBuilder/reduceMean(input, options) +MLGraphBuilder/reduceMin(input, options) +MLGraphBuilder/reduceProduct(input, options) MLGraphBuilder/reduceSum(input, options) -MLGraphBuilder/reduceSum(input) +MLGraphBuilder/reduceSumSquare(input, options) - input argument @@ -15568,11 +17651,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesumsquare-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu-input-options-input 1 1 -MLGraphBuilder/reduceSumSquare(input, options) -MLGraphBuilder/reduceSumSquare(input) +MLGraphBuilder/relu(input, options) - input argument @@ -15584,7 +17666,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d-input-options-input 1 1 MLGraphBuilder/resample2d(input, options) -MLGraphBuilder/resample2d(input) - input argument @@ -15592,10 +17673,21 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-input +1 +1 +MLGraphBuilder/reshape(input, newShape, options) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid-input-options-input 1 1 -MLGraphBuilder/reshape(input, newShape) +MLGraphBuilder/sigmoid(input, options) - input argument @@ -15607,7 +17699,39 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options 1 1 MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-input +1 +1 +MLGraphBuilder/softmax(input, axis, options) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-input-options-input +1 +1 +MLGraphBuilder/softplus(input, options) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign-input-options-input +1 +1 +MLGraphBuilder/softsign(input, options) - input argument @@ -15619,7 +17743,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-input 1 1 MLGraphBuilder/split(input, splits, options) -MLGraphBuilder/split(input, splits) - input argument @@ -15627,11 +17750,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-squeeze-input-options-input +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh-input-options-input 1 1 -MLGraphBuilder/squeeze(input, options) -MLGraphBuilder/squeeze(input) +MLGraphBuilder/tanh(input, options) - input argument @@ -15643,7 +17765,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-input 1 1 MLGraphBuilder/transpose(input, options) -MLGraphBuilder/transpose(input) +- +input +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-input +1 +1 +MLGraphBuilder/triangular(input, options) +- +input +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#operator-input + +1 +operator - input activation behavior dfn @@ -15695,6 +17838,26 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#input-audioparam-buffer +1 +- +input blank node identifier map +dfn +rdf-canon +rdf-canon +1 +current +https://w3c.github.io/rdf-canon/spec/#dfn-input-blank-node-identifier-map + +1 +- +input blank node identifier map +dfn +rdf-canon +rdf-canon +1 +snapshot +https://www.w3.org/TR/rdf-canon/#dfn-input-blank-node-identifier-map + 1 - input buffer @@ -15785,6 +17948,26 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-input-dataset +1 +- +input document +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-input-document + +1 +- +input document +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-input-document + 1 - input frame @@ -16131,7 +18314,18 @@ https://wicg.github.io/webhid/#dfn-input-tag - -input(name, desc) +input url list +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#selecturl-input-url-list + +1 +selectURL +- +input(name, descriptor) method webnn webnn @@ -16142,7 +18336,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-input 1 MLGraphBuilder - -input(name, desc) +input(name, descriptor) method webnn webnn @@ -16163,9 +18357,42 @@ https://drafts.csswg.org/css-ui-4/#propdef-input-security 1 1 - -inputBuffer -attribute -webaudio +input.performactions +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-inputperformactions +1 +1 +commands +- +input.releaseactions +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-inputreleaseactions +1 +1 +commands +- +input.setfiles +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-inputsetfiles +1 +1 +commands +- +inputBuffer +attribute +webaudio webaudio 1 current @@ -16417,6 +18644,28 @@ https://w3c.github.io/uievents/#dom-inputeventinit-inputtype InputEventInit - inputType +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinghints-inputtype +1 +1 +HandwritingHints +- +inputType +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinghintsqueryresult-inputtype +1 +1 +HandwritingHintsQueryResult +- +inputType attribute uievents uievents @@ -16438,39 +18687,6 @@ https://www.w3.org/TR/uievents/#dom-inputeventinit-inputtype 1 InputEventInit - -inputevent.datatransfer -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputevent-datatransfer - - -inputevent -- -inputevent.gettargetranges -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputevent-gettargetranges - - -inputevent -- -inputevent.gettargetranges() -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputevent-gettargetranges - - -inputevent -- inputmode element-attr html @@ -16493,6 +18709,17 @@ https://wicg.github.io/webhid/#dfn-inputreport 1 - inputs +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-inputs +1 +1 +URLPatternResult +- +inputs argument webaudio webaudio @@ -16525,17 +18752,6 @@ https://webaudio.github.io/web-midi-api/#dom-midiaccess-inputs MIDIAccess - inputs -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-dispatch-graph-inputs-outputs-inputs -1 -1 -MLCommandEncoder/dispatch(graph, inputs, outputs) -- -inputs dict-member webnn webnn @@ -16563,32 +18779,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcontext-computesync-graph-inputs-outputs-inputs -1 -1 -MLContext/computeSync(graph, inputs, outputs) -- -inputs -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-concat-inputs-axis-inputs -1 -1 -MLGraphBuilder/concat(inputs, axis) -- -inputs -dict-member -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-inputs +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-inputs 1 1 -URLPatternResult +MLGraphBuilder/concat(inputs, axis, options) - inputs argument @@ -16612,15 +18806,15 @@ https://www.w3.org/TR/webaudio/#inputs 1 - inputs -argument -webnn -webnn +attribute +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-dispatch-graph-inputs-outputs-inputs +https://www.w3.org/TR/webmidi/#dom-midiaccess-inputs 1 1 -MLCommandEncoder/dispatch(graph, inputs, outputs) +MIDIAccess - inputs dict-member @@ -16650,21 +18844,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcontext-computesync-graph-inputs-outputs-inputs -1 -1 -MLContext/computeSync(graph, inputs, outputs) -- -inputs -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-inputs +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-inputs 1 1 -MLGraphBuilder/concat(inputs, axis) +MLGraphBuilder/concat(inputs, axis, options) - inputsourceschange event @@ -16687,36 +18870,6 @@ https://www.w3.org/TR/webxr/#eventdef-xrsession-inputsourceschange 1 1 XRSession -- -inputtype -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dfn-inputtype - - -- -inputtype values -dfn -input-events-2 -input-events -2 -current -https://w3c.github.io/input-events/#dfn-inputtype-values - -1 -- -inputtype values -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dfn-inputtype-values - - - ins element @@ -16832,6 +18985,17 @@ https://infra.spec.whatwg.org/#list-insert list set - +insert +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-insert +1 +1 +text-autospace +- insert a character dfn html @@ -16880,6 +19044,16 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#insert-a-foreign-element +1 +- +insert a token +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#insert-a-token + 1 - insert adjacent @@ -16890,6 +19064,16 @@ dom current https://dom.spec.whatwg.org/#insert-adjacent +1 +- +insert an element at the adjusted insertion location +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/parsing.html#insert-an-element-at-the-adjusted-insertion-location + 1 - insert an html element @@ -16912,35 +19096,44 @@ https://drafts.csswg.org/web-animations-2/#insert-children 1 - -insertAdjacentElement(where, element) -method -dom -dom +insert children +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#insert-children + 1 -current -https://dom.spec.whatwg.org/#dom-element-insertadjacentelement +- +insert entries to map +dfn +turtledove +turtledove 1 +current +https://wicg.github.io/turtledove/#insert-entries-to-map + 1 -Element - -insertAdjacentHTML() +insertAdjacentElement(where, element) method -dom-parsing -dom-parsing +dom +dom 1 current -https://w3c.github.io/DOM-Parsing/#dom-element-insertadjacenthtml +https://dom.spec.whatwg.org/#dom-element-insertadjacentelement 1 1 Element - -insertAdjacentHTML(position, text) +insertAdjacentHTML(position, string) method -dom-parsing -dom-parsing +html +html 1 current -https://w3c.github.io/DOM-Parsing/#dom-element-insertadjacenthtml +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-element-insertadjacenthtml 1 1 Element @@ -17134,17 +19327,6 @@ HTMLTableSectionElement - insertRule(rule) method -css-nesting-1 -css-nesting -1 -current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-insertrule -1 -1 -CSSStyleRule -- -insertRule(rule) -method cssom-1 cssom 1 @@ -17200,17 +19382,6 @@ CSSStyleSheet - insertRule(rule, index) method -css-nesting-1 -css-nesting -1 -current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-insertrule -1 -1 -CSSStyleRule -- -insertRule(rule, index) -method cssom-1 cssom 1 @@ -17290,34 +19461,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-insertedsamplesfordeceleration -1 - -RTCMediaStreamTrackStats -- -insertedSamplesForDeceleration -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-insertedsamplesfordeceleration 1 1 RTCInboundRtpStreamStats - -insertedSamplesForDeceleration -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-insertedsamplesfordeceleration -1 - -RTCMediaStreamTrackStats -- insertion mode dfn html @@ -17359,13 +19508,24 @@ https://dom.spec.whatwg.org/#concept-node-insert-ext 1 - inset +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset +1 +1 +CSSPositionTryDescriptors +- +inset value css-backgrounds-3 css-backgrounds 3 current https://drafts.csswg.org/css-backgrounds-3/#shadow-inset -1 + 1 box-shadow - @@ -17387,6 +19547,17 @@ border-right-style border - inset +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-inset +1 +1 +box-shadow-position +- +inset property css-logical-1 css-logical @@ -17423,11 +19594,22 @@ border-left-style border-style - inset -value -fill-stroke-3 -fill-stroke -3 -current +dict-member +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#dom-viewtimelineoptions-inset +1 +1 +ViewTimelineOptions +- +inset +value +fill-stroke-3 +fill-stroke +3 +current https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-align-inset 1 1 @@ -17435,12 +19617,32 @@ stroke-align - inset value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-inset +1 +1 +- +inset +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-inset +1 +1 +- +inset +value css-backgrounds-3 css-backgrounds 3 snapshot https://www.w3.org/TR/css-backgrounds-3/#shadow-inset -1 + 1 box-shadow - @@ -17492,6 +19694,17 @@ https://www.w3.org/TR/fill-stroke-3/#valdef-stroke-align-inset 1 stroke-align - +inset +dict-member +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#dom-viewtimelineoptions-inset +1 +1 +ViewTimelineOptions +- inset properties dfn css-logical-1 @@ -17544,6 +19757,48 @@ https://www.w3.org/TR/css-shapes-1/#funcdef-basic-shape-inset 1 <basic-shape> - +inset-area +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-inset-area +1 +1 +- +inset-area grid +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#inset-area-grid +1 +1 +- +inset-area( <'inset-area'> ) +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-inset-area-inset-area +1 +1 +position-try-options +- +inset-block +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset-block +1 +1 +CSSPositionTryDescriptors +- inset-block property css-logical-1 @@ -17585,6 +19840,17 @@ https://www.w3.org/TR/css-position-3/#propdef-inset-block 1 - inset-block-end +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset-block-end +1 +1 +CSSPositionTryDescriptors +- +inset-block-end property css-logical-1 css-logical @@ -17625,6 +19891,17 @@ https://www.w3.org/TR/css-position-3/#propdef-inset-block-end 1 - inset-block-start +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset-block-start +1 +1 +CSSPositionTryDescriptors +- +inset-block-start property css-logical-1 css-logical @@ -17665,6 +19942,17 @@ https://www.w3.org/TR/css-position-3/#propdef-inset-block-start 1 - inset-inline +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset-inline +1 +1 +CSSPositionTryDescriptors +- +inset-inline property css-logical-1 css-logical @@ -17705,6 +19993,17 @@ https://www.w3.org/TR/css-position-3/#propdef-inset-inline 1 - inset-inline-end +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset-inline-end +1 +1 +CSSPositionTryDescriptors +- +inset-inline-end property css-logical-1 css-logical @@ -17745,6 +20044,17 @@ https://www.w3.org/TR/css-position-3/#propdef-inset-inline-end 1 - inset-inline-start +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-inset-inline-start +1 +1 +CSSPositionTryDescriptors +- +inset-inline-start property css-logical-1 css-logical @@ -17791,7 +20101,7 @@ css-position 3 current https://drafts.csswg.org/css-position-3/#inset-modified-containing-block - +1 1 - inset-modified containing block @@ -17801,8 +20111,85 @@ css-position 3 snapshot https://www.w3.org/TR/css-position-3/#inset-modified-containing-block - 1 +1 +- +insetBlock +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-insetblock +1 +1 +CSSPositionTryDescriptors +- +insetBlockEnd +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-insetblockend +1 +1 +CSSPositionTryDescriptors +- +insetBlockStart +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-insetblockstart +1 +1 +CSSPositionTryDescriptors +- +insetInline +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-insetinline +1 +1 +CSSPositionTryDescriptors +- +insetInlineEnd +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-insetinlineend +1 +1 +CSSPositionTryDescriptors +- +insetInlineStart +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-insetinlinestart +1 +1 +CSSPositionTryDescriptors +- +inside +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside +1 +1 +anchor() - inside dfn @@ -17838,6 +20225,17 @@ list-style-position - inside value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-inside +1 +1 +anchor() +- +inside +value css-lists-3 css-lists 3 @@ -18135,6 +20533,16 @@ https://webassembly.github.io/spec/js-api/#dom-webassemblyinstantiatedsource-ins WebAssemblyInstantiatedSource - instance +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-instance + +1 +- +instance dict-member wasm-js-api-2 wasm-js-api @@ -18162,7 +20570,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-instance-with-respect-to + 1 +- +instance with respect to +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-instance-with-respect-to + 1 - instanceCount @@ -18317,14 +20735,14 @@ https://www.w3.org/TR/cssom-view-1/#concept-instant-scroll 1 - -instantiate a promise of a module +instantiate a config dfn -wasm-js-api-2 -wasm-js-api -2 +fenced-frame +fenced-frame +1 current -https://webassembly.github.io/spec/js-api/#instantiate-a-promise-of-a-module - +https://wicg.github.io/fenced-frame/#instantiate-a-config +1 1 - instantiate a promise of a module @@ -18332,18 +20750,18 @@ dfn wasm-js-api-2 wasm-js-api 2 -snapshot -https://www.w3.org/TR/wasm-js-api-2/#instantiate-a-promise-of-a-module +current +https://webassembly.github.io/spec/js-api/#instantiate-a-promise-of-a-module 1 - -instantiate a webassembly module +instantiate a promise of a module dfn wasm-js-api-2 wasm-js-api 2 snapshot -https://www.w3.org/TR/wasm-js-api-2/#instantiate-a-webassembly-module +https://www.w3.org/TR/wasm-js-api-2/#instantiate-a-promise-of-a-module 1 - @@ -18651,11 +21069,11 @@ https://drafts.csswg.org/css-values-4/#integer - integer dfn -ift -ift -1 +mathml4 +mathml +4 current -https://w3c.github.io/IFT/Overview.html#integer +https://w3c.github.io/mathml/#dfn-integer 1 - @@ -18687,6 +21105,16 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#integer 1 +1 +- +integer +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-integer + 1 - integer @@ -18710,7 +21138,7 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#integer- 1 ECMAScript - -integer indices +integer indices,integer-indexed dfn ecmascript ecmascript @@ -18769,38 +21197,6 @@ webidl current https://webidl.spec.whatwg.org/#dfn-integer-type 1 -1 -- -integer-indexed exotic object -dfn -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#integer-indexed-exotic-object -1 -1 -ECMAScript -- -integer-indexed exotic objects -dfn -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#integer-indexed-exotic-object -1 -1 -ECMAScript -- -integerlist -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#integerlist - 1 - integrity @@ -18877,6 +21273,16 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#link-options-integrity +1 +- +integrity +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#concept-import-map-integrity + 1 - integrity @@ -18963,6 +21369,17 @@ https://www.w3.org/TR/SRI/#dfn-integrity-metadata 1 - +integrity() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-request-url-modifier-integrity +1 +1 +<request-url-modifier> +- integrity-metadata grammar sri @@ -19051,6 +21468,56 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-intent 1 +1 +- +intent +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-intent + +1 +- +intent +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-intent +1 +1 +- +intent +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-intent + +1 +- +intent concept dictionary +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-intent-concept-dictionary + +1 +- +intent concept dictionary +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-intent-concept-dictionary + 1 - inter-annotation white space @@ -19315,24 +21782,45 @@ https://www.w3.org/TR/webdriver2/#dfn-interactable 1 - +interaction data +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#interaction-data + +1 +- +interaction task id to interaction data +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#document-interaction-task-id-to-interaction-data + +1 +document +- interactionCount attribute event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performance-interactioncount +https://w3c.github.io/event-timing/#dom-performance-interactioncount 1 1 Performance - -interactionCounts +interactionCount attribute event-timing event-timing 1 snapshot -https://www.w3.org/TR/event-timing/#dom-performance-interactioncounts +https://www.w3.org/TR/event-timing/#dom-performance-interactioncount 1 1 Performance @@ -19343,7 +21831,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceeventtiming-interactionid +https://w3c.github.io/event-timing/#dom-performanceeventtiming-interactionid 1 PerformanceEventTiming @@ -19387,35 +21875,36 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#window-interactioncount +https://w3c.github.io/event-timing/#window-interactioncount 1 Window - -interactioncounts +interactioncount dfn event-timing event-timing 1 snapshot -https://www.w3.org/TR/event-timing/#window-interactioncounts +https://www.w3.org/TR/event-timing/#window-interactioncount 1 Window - interactive -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-interactive - 1 +1 +model - interactive dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -19437,11 +21926,11 @@ AudioContextLatencyCategory - interactive dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-interactive +https://www.w3.org/TR/payment-request/#dfn-interactive 1 PaymentRequest @@ -19469,12 +21958,22 @@ https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2 - interactive-widget dfn -css-viewport +css-viewport-1 css-viewport 1 current https://drafts.csswg.org/css-viewport/#interactive-widget - +1 +1 +- +interactive-widget +dfn +css-viewport-1 +css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#interactive-widget +1 1 - interactively validate the constraints @@ -19487,91 +21986,304 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#interact 1 - -intercept -attribute -filter-effects-1 -filter-effects +intercept +attribute +filter-effects-1 +filter-effects +1 +current +https://drafts.fxtf.org/filter-effects-1/#dom-svgcomponenttransferfunctionelement-intercept +1 +1 +SVGComponentTransferFunctionElement +- +intercept +element-attr +filter-effects-1 +filter-effects +1 +current +https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomponenttransfer-intercept +1 +1 +feComponentTransfer +- +intercept +attribute +filter-effects-1 +filter-effects +1 +snapshot +https://www.w3.org/TR/filter-effects-1/#dom-svgcomponenttransferfunctionelement-intercept +1 +1 +SVGComponentTransferFunctionElement +- +intercept +element-attr +filter-effects-1 +filter-effects +1 +snapshot +https://www.w3.org/TR/filter-effects-1/#element-attrdef-fecomponenttransfer-intercept +1 +1 +feComponentTransfer +- +intercept map +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#intercept-map + +1 +- +intercept(options) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-intercept +1 +1 +NavigateEvent +- +interception state +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigateevent-interception-state + +1 +- +interest group +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#interestgroupreportingscriptrunnerglobalscope-interest-group + +1 +InterestGroupReportingScriptRunnerGlobalScope +- +interest group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-interest-group + +1 +generated bid +- +interest group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group + +1 +- +interest group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-interest-group + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +interest group ad +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad + +1 +- +interest group buyers +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-interest-group-buyers + +1 +auction config +- +interest group descriptor +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-interest-group-descriptor +1 +1 +fenced frame config instance +- +interest group descriptor +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-interest-group-descriptor +1 +1 +fenced frame config +- +interest group descriptor +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-interest-group-descriptor +1 +1 +fencedframetype +- +interest group note +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#WGNote +1 +1 +- +interest group owner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-interest-group-owner + +1 +bid debug reporting info +- +interest group set +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-set + +1 +- +interest group set max owners +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-set-max-owners + +1 +- +interest group update +dfn +turtledove +turtledove 1 current -https://drafts.fxtf.org/filter-effects-1/#dom-svgcomponenttransferfunctionelement-intercept -1 +https://wicg.github.io/turtledove/#interest-group-update + 1 -SVGComponentTransferFunctionElement - -intercept -element-attr -filter-effects-1 -filter-effects +interest groups +dfn +w3c-process +w3c-process 1 current -https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomponenttransfer-intercept +https://www.w3.org/Consortium/Process/#GroupsIG 1 1 -feComponentTransfer - -intercept -attribute -filter-effects-1 -filter-effects -1 -snapshot -https://www.w3.org/TR/filter-effects-1/#dom-svgcomponenttransferfunctionelement-intercept +interest-cohort +dfn +topics +topics 1 +current +https://patcg-individual-drafts.github.io/topics/#interest-cohort-policy-controlled-feature + 1 -SVGComponentTransferFunctionElement - -intercept -element-attr -filter-effects-1 -filter-effects +interestGroupBuyers +dict-member +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/filter-effects-1/#element-attrdef-fecomponenttransfer-intercept +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-interestgroupbuyers 1 1 -feComponentTransfer +AuctionAdConfig - -intercept() -method -navigation-api -navigation-api +interestGroupName +dict-member +turtledove +turtledove 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-intercept +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-interestgroupname 1 1 -NavigateEvent +ReportWinBrowserSignals - -intercept(options) -method -navigation-api -navigation-api +interestGroupOwner +dict-member +turtledove +turtledove 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-intercept +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-interestgroupowner 1 1 -NavigateEvent +ReportingBrowserSignals - -interest group note -dfn -w3c-process -w3c-process +interestGroupOwner +dict-member +turtledove +turtledove 1 current -https://www.w3.org/Consortium/Process/#WGNote +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-interestgroupowner 1 1 +ScoringBrowserSignals - -interest groups -dfn -w3c-process -w3c-process +interestGroupsToKeep +argument +turtledove +turtledove 1 current -https://www.w3.org/Consortium/Process/#GroupsIG +https://wicg.github.io/turtledove/#dom-navigator-clearoriginjoinedadinterestgroups-owner-interestgroupstokeep-interestgroupstokeep 1 1 +Navigator/clearOriginJoinedAdInterestGroups(owner, interestGroupsToKeep) +Navigator/clearOriginJoinedAdInterestGroups(owner) - interface argument @@ -19806,6 +22518,26 @@ https://wicg.github.io/speech-api/#dom-speechrecognition-interimresults 1 SpeechRecognition - +interior nodes +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interior-nodes + +1 +- +interior nodes +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interior-nodes + +1 +- interlace value mediaqueries-4 @@ -19852,11 +22584,21 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-scan-interlace - interlaced png image dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-interlaced-png-image +https://w3c.github.io/png/#dfn-interlaced-png-image + +1 +- +interlaced png image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-interlaced-png-image 1 - @@ -19973,11 +22715,11 @@ AuthenticatorTransport - internal dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#internal +https://w3c.github.io/window-management/#internal 1 - @@ -19994,11 +22736,11 @@ AuthenticatorTransport - internal dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#internal +https://www.w3.org/TR/window-management/#internal 1 - @@ -20014,14 +22756,13 @@ https://html.spec.whatwg.org/multipage/tables.html#internal-algorithm-for-scanni - internal close watcher dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#closewatcher-internal-close-watcher +https://html.spec.whatwg.org/multipage/interaction.html#internal-close-watcher 1 -CloseWatcher - internal content attribute map dfn @@ -20063,23 +22804,23 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-generate-an-internal-error 1 1 - -internal json clone algorithm +internal json clone dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-internal-json-clone-algorithm +https://w3c.github.io/webdriver/#dfn-internal-json-clone 1 - -internal json clone algorithm +internal json clone dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-internal-json-clone-algorithm +https://www.w3.org/TR/webdriver2/#dfn-internal-json-clone 1 - @@ -20280,6 +23021,27 @@ current https://w3c.github.io/json-ld-api/#dfn-internal-representation +- +internal representation +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-internal-representation + +1 +- +internal representation +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#css-internal-representation +1 +1 +CSS - internal representation dfn @@ -20290,6 +23052,26 @@ snapshot https://www.w3.org/TR/json-ld11-api/#dfn-internal-representation +- +internal representation +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-internal-representation + +1 +- +internal resource links +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#internal-resource-link +1 +1 - internal response dfn @@ -20430,6 +23212,26 @@ css current https://drafts.csswg.org/css2/#internal-table-box +1 +- +internal table box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x19 +1 +1 +- +internal table box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x19 +1 1 - internal table box @@ -20556,9 +23358,9 @@ https://www.w3.org/TR/webgpu/#internal-usage - internal-error enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessionclosedreason-internal-error 1 @@ -20567,9 +23369,9 @@ MediaKeySessionClosedReason - internal-error enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-internal-error 1 @@ -20577,15 +23379,26 @@ https://w3c.github.io/encrypted-media/#dom-mediakeystatus-internal-error MediaKeyStatus - internal-error -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessionclosedreason-internal-error +1 1 +MediaKeySessionClosedReason +- +internal-error +enum-value +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-internal-error - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-internal-error +1 1 -mediakeystatus +MediaKeyStatus - internal-url dfn @@ -20635,7 +23448,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_international_preferences +https://w3c.github.io/i18n-glossary/#dfn-international-preferences 1 - @@ -20645,37 +23458,27 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_international_preferences +https://www.w3.org/TR/i18n-glossary/#dfn-international-preferences 1 - -international preferences. +internationalisation dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_international_preferences +https://w3c.github.io/i18n-glossary/#dfn-i18n 1 - -international preferences. +internationalisation dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_international_preferences -1 - -- -internationalization -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#internationalization +https://www.w3.org/TR/i18n-glossary/#dfn-i18n 1 - @@ -20685,7 +23488,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#internationalization +https://w3c.github.io/i18n-glossary/#dfn-i18n 1 - @@ -20715,17 +23518,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#internationalization -1 - -- -internationalization -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#internationalization +https://www.w3.org/TR/i18n-glossary/#dfn-i18n 1 - @@ -20765,7 +23558,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#internationalization +https://w3c.github.io/i18n-glossary/#dfn-i18n 1 - @@ -20775,61 +23568,149 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#internationalization -1 +https://www.w3.org/TR/i18n-glossary/#dfn-i18n +1 + +- +interpolate +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#interpolation +1 +1 +- +interpolate +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#attribute-interpolate + +1 +attribute +- +interpolate +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#attribute-interpolate + +1 +attribute +- +interpolate +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#interpolation +1 +1 +- +interpolate-size +property +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#propdef-interpolate-size +1 +1 +- +interpolate_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-interpolate_attr + +1 +recursive descent syntax +- +interpolate_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-interpolate_attr + +1 +syntax +- +interpolate_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-interpolate_attr + +1 +recursive descent syntax +- +interpolate_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-interpolate_attr +1 +syntax - -internationalized resource identifier +interpolate_sampling_name dfn -rdf12-concepts -rdf-concepts +wgsl +wgsl 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-internationalized-resource-identifier +https://gpuweb.github.io/gpuweb/wgsl/#syntax-interpolate_sampling_name 1 +syntax - -interpolate +interpolate_sampling_name dfn -css-values-4 -css-values -4 -current -https://drafts.csswg.org/css-values-4/#interpolation +wgsl +wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-interpolate_sampling_name + 1 +syntax - -interpolate +interpolate_type_name dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#attribute-interpolate +https://gpuweb.github.io/gpuweb/wgsl/#syntax-interpolate_type_name 1 -attribute +syntax - -interpolate +interpolate_type_name dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#attribute-interpolate +https://www.w3.org/TR/WGSL/#syntax-interpolate_type_name 1 -attribute -- -interpolate -dfn -css-values-4 -css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#interpolation -1 -1 +syntax - interpolation dfn @@ -20860,6 +23741,16 @@ snapshot https://www.w3.org/TR/css-values-4/#interpolation 1 1 +- +interpolation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-interpolation + + - interpolation color space dfn @@ -20908,7 +23799,7 @@ wgsl 1 current https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling - +1 1 - interpolation sampling @@ -20918,124 +23809,86 @@ wgsl 1 snapshot https://www.w3.org/TR/WGSL/#interpolation-sampling - +1 1 - -interpolation type +interpolation sampling name-token dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-name-token 1 - -interpolation type +interpolation sampling name-token dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#interpolation-type - -1 -- -interpolation_sample_name -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-interpolation_sample_name +https://www.w3.org/TR/WGSL/#interpolation-sampling-name-token 1 -recursive descent syntax - -interpolation_sample_name +interpolation type dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-interpolation_sample_name - -1 -syntax -- -interpolation_sample_name -dfn -wgsl -wgsl +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type 1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-interpolation_sample_name - 1 -recursive descent syntax - -interpolation_sample_name +interpolation type dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-interpolation_sample_name - -1 -syntax -- -interpolation_type_name -dfn -wgsl -wgsl +https://www.w3.org/TR/WGSL/#interpolation-type 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-interpolation_type_name - 1 -recursive descent syntax - -interpolation_type_name +interpolation type name-token dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-interpolation_type_name +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type-name-token 1 -syntax - -interpolation_type_name +interpolation type name-token dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-interpolation_type_name +https://www.w3.org/TR/WGSL/#interpolation-type-name-token 1 -recursive descent syntax - -interpolation_type_name +interpretation dfn -wgsl -wgsl +rdf12-semantics +rdf-semantics +1 +current +https://w3c.github.io/rdf-semantics/spec/#dfn-interpretation 1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-interpolation_type_name - 1 -syntax - interpretation dfn rdf12-semantics rdf-semantics 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-interpretation +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-interpretation 1 1 - @@ -21208,6 +24061,17 @@ https://www.w3.org/TR/intersection-observer/#intersectionobserver-intersection-r 1 IntersectionObserver - +intersection(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.intersection +1 +1 +Set +- intersectionObserverEntryInit argument intersection-observer @@ -21385,6 +24249,16 @@ https://dom.spec.whatwg.org/#dom-range-intersectsnode Range - interval +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interval + +1 +- +interval attribute orientation-event orientation-event @@ -21407,6 +24281,16 @@ https://w3c.github.io/deviceorientation/#dom-devicemotioneventinit-interval DeviceMotionEventInit - interval +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interval + +1 +- +interval attribute orientation-event orientation-event @@ -21446,6 +24330,26 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#interval-end +1 +- +interval end +dfn +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#interval-end + +1 +- +interval end +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#interval-end + 1 - interval start @@ -21466,6 +24370,26 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#interval-start +1 +- +interval start +dfn +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#interval-start + +1 +- +interval start +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#interval-start + 1 - intervention reports @@ -21500,11 +24424,11 @@ https://www.w3.org/TR/webxrlayers-1/#intialize-a-composition-layer - intl mathematical value dfn -tc39-intl-numberformat -tc39-intl-numberformat +ecma-402 +ecma-402 1 current -https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#intl-mathematical-value +https://tc39.es/ecma402/#intl-mathematical-value 1 1 - @@ -21558,14 +24482,24 @@ https://drafts.csswg.org/css2/#intrinsic 1 - -intrinsic height +intrinsic dimensions dfn -html -html +css2 +css 1 current -https://html.spec.whatwg.org/multipage/media.html#concept-video-intrinsic-height - +https://www.w3.org/TR/CSS21/conform.html#intrinsic +1 +1 +- +intrinsic dimensions +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#intrinsic +1 1 - intrinsic iteration duration @@ -21576,6 +24510,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#intrinsic-iteration-duration +1 +- +intrinsic iteration duration +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#intrinsic-iteration-duration + 1 - intrinsic percentage width of a column @@ -21808,16 +24752,6 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-intrinsic-stretch-axis -1 -- -intrinsic width -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/media.html#concept-video-intrinsic-width - 1 - intrinsic-sizes-invalid @@ -21895,6 +24829,28 @@ https://wicg.github.io/digital-goods/#dom-itemdetails-introductorypriceperiod 1 ItemDetails - +inuse +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-inuse +1 +1 +SmartCardReaderStateFlagsIn +- +inuse +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-inuse +1 +1 +SmartCardReaderStateFlagsOut +- invalid dfn css-syntax-3 @@ -21907,13 +24863,13 @@ https://drafts.csswg.org/css-syntax-3/#css-invalid css - invalid -dfn +abstract-op webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#invalid - +https://gpuweb.github.io/gpuweb/#abstract-opdef-invalid +1 1 - invalid @@ -21934,7 +24890,7 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-invalid -1 + 1 - invalid @@ -21950,12 +24906,22 @@ css - invalid dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-invalid + +1 +- +invalid +abstract-op webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#invalid - +https://www.w3.org/TR/webgpu/#abstract-opdef-invalid +1 1 - invalid @embed value @@ -21964,7 +24930,7 @@ json-ld11-framing json-ld-framing 1 current -https://w3c.github.io/json-ld-framing/#dom-jsonldframingerrorcode-invalid-@embed-value +https://w3c.github.io/json-ld-framing/#dom-jsonldframingerrorcode-invalid-%40embed-value 1 1 JsonLdFramingErrorCode @@ -21975,7 +24941,7 @@ json-ld11-framing json-ld-framing 1 snapshot -https://www.w3.org/TR/json-ld11-framing/#dom-jsonldframingerrorcode-invalid-@embed-value +https://www.w3.org/TR/json-ld11-framing/#dom-jsonldframingerrorcode-invalid-%40embed-value 1 1 JsonLdFramingErrorCode @@ -21986,7 +24952,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@id-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40id-value 1 1 JsonLdErrorCode @@ -21997,7 +24963,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@id-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40id-value 1 1 JsonLdErrorCode @@ -22008,7 +24974,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@import-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40import-value 1 1 JsonLdErrorCode @@ -22019,7 +24985,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@import-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40import-value 1 1 JsonLdErrorCode @@ -22030,7 +24996,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@included-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40included-value 1 1 JsonLdErrorCode @@ -22041,7 +25007,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@included-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40included-value 1 1 JsonLdErrorCode @@ -22052,7 +25018,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@index-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40index-value 1 1 JsonLdErrorCode @@ -22063,7 +25029,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@index-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40index-value 1 1 JsonLdErrorCode @@ -22074,7 +25040,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@nest-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40nest-value 1 1 JsonLdErrorCode @@ -22085,7 +25051,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@nest-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40nest-value 1 1 JsonLdErrorCode @@ -22096,7 +25062,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@prefix-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40prefix-value 1 1 JsonLdErrorCode @@ -22107,7 +25073,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@prefix-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40prefix-value 1 1 JsonLdErrorCode @@ -22118,7 +25084,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@propagate-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40propagate-value 1 1 JsonLdErrorCode @@ -22129,7 +25095,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@propagate-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40propagate-value 1 1 JsonLdErrorCode @@ -22140,7 +25106,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@protected-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40protected-value 1 1 JsonLdErrorCode @@ -22151,7 +25117,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@protected-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40protected-value 1 1 JsonLdErrorCode @@ -22162,7 +25128,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@reverse-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40reverse-value 1 1 JsonLdErrorCode @@ -22173,7 +25139,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@reverse-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40reverse-value 1 1 JsonLdErrorCode @@ -22184,7 +25150,7 @@ json-ld11-api json-ld-api 1 current -https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-@version-value +https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-invalid-%40version-value 1 1 JsonLdErrorCode @@ -22195,7 +25161,7 @@ json-ld11-api json-ld-api 1 snapshot -https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-@version-value +https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-%40version-value 1 1 JsonLdErrorCode @@ -22244,13 +25210,43 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-json-literal 1 JsonLdErrorCode - -invalid anchor query +invalid anchor function +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valid-anchor-function + +1 +- +invalid anchor function +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valid-anchor-function + +1 +- +invalid anchor-size function dfn css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#valid-anchor-query +https://drafts.csswg.org/css-anchor-position-1/#valid-anchor-size-function + +1 +- +invalid anchor-size function +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valid-anchor-size-function 1 - @@ -22697,6 +25693,26 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-language-tagged 1 1 JsonLdErrorCode +- +invalid load +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#invalid-load + + +- +invalid load +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#invalid-load + + - invalid local context enum-value @@ -22738,6 +25754,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#invalid-memory-reference +1 +- +invalid pointer +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#invalid-pointer + +1 +- +invalid pointer +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#invalid-pointer + 1 - invalid reference @@ -22848,6 +25884,16 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-reverse-propert 1 JsonLdErrorCode - +invalid rule error +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#invalid-rule-error + +1 +- invalid scoped context enum-value json-ld11-api @@ -22973,6 +26019,26 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonlderrorcode-invalid-set-or-list-obj 1 1 JsonLdErrorCode +- +invalid store +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#invalid-store + + +- +invalid store +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#invalid-store + + - invalid term definition enum-value @@ -23164,7 +26230,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-type-invalid-char +https://urlpattern.spec.whatwg.org/#token-type-invalid-char 1 token/type @@ -23248,6 +26314,26 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-InvalidAccessError + +1 +- +invalidate +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-invalidate +1 +1 +- +invalidate +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-invalidate 1 1 - @@ -23259,25 +26345,65 @@ css-layout-api snapshot https://www.w3.org/TR/css-layout-api-1/#invalidate-layout-functions +1 +- +invalidated +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-invalidate +1 +1 +- +invalidated +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-invalidate +1 +1 +- +invalidates +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-invalidate +1 +1 +- +invalidates +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-invalidate +1 1 - invalidstateerror dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dfn-InvalidStateError +https://w3c.github.io/encrypted-media/#dfn-invalidstateerror 1 - invalidstateerror dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dfn-InvalidStateError +https://www.w3.org/TR/encrypted-media-2/#dfn-invalidstateerror 1 - @@ -23303,6 +26429,50 @@ https://www.w3.org/TR/WGSL/#attribute-invariant 1 attribute - +invariant_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-invariant_attr + +1 +recursive descent syntax +- +invariant_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-invariant_attr + +1 +syntax +- +invariant_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-invariant_attr + +1 +recursive descent syntax +- +invariant_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-invariant_attr + +1 +syntax +- inverse attribute webxr @@ -23347,6 +26517,26 @@ https://www.w3.org/TR/webxr/#dom-xrrigidtransform-inverse 1 XRRigidTransform - +inverse channel transfer function +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#inverse-channel-transfer-function + +1 +- +inverse channel transfer function +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#inverse-channel-transfer-function + +1 +- inverse context dfn json-ld11-api @@ -23402,17 +26592,6 @@ outline-color - invert value -css-ui-4 -css-ui -4 -current -https://drafts.csswg.org/css-ui-4/#valdef-outline-color-invert -1 -1 -outline-color -- -invert -value css22 css 1 @@ -23423,26 +26602,24 @@ https://drafts.csswg.org/css2/#value-def-invert outline-color - invert -dfn -css-typed-om-1 -css-typed-om +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#value-def-invert 1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#cssmath-invert - 1 -CSSMath - invert -enum-value -css-typed-om-1 -css-typed-om +value +css2 +css 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-invert +https://www.w3.org/TR/CSS21/ui.html#value-def-invert 1 1 -CSSMathOperator - invert value @@ -23477,6 +26654,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssmath-invert-a-cssnumericvalue 1 CSSMath - +invert a cssnumericvalue +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssmath-invert-a-cssnumericvalue +1 +1 +CSSMath +- invert a type dfn css-typed-om-1 @@ -23488,6 +26676,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-invert-a-type 1 CSSNumericValue - +invert a type +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-invert-a-type +1 +1 +CSSNumericValue +- invert() function filter-effects-1 @@ -23646,6 +26845,16 @@ css-inline current https://drafts.csswg.org/css-inline-3/#invisible-line-box +1 +- +invisible line box +dfn +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#invisible-line-box + 1 - invited expert in a working group @@ -23868,6 +27077,16 @@ requestidlecallback snapshot https://www.w3.org/TR/requestidlecallback/#dfn-invoke-idle-callbacks-algorithm +1 +- +invoke text directives +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#invoke-text-directives + 1 - invoke the indexed property setter @@ -23900,3 +27119,58 @@ https://w3c.github.io/web-share-target/#dfn-invoke 1 - +invoker +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-invoker +1 +1 +PerformanceScriptTiming +- +invoker name +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-invoker-name + +1 +script timing info +- +invoker name when created +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#promise-invoker-name-when-created + +1 +Promise +- +invoker type +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-invoker-type + +1 +script timing info +- +invokerType +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-invokertype +1 +1 +PerformanceScriptTiming +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ip.data b/bikeshed/spec-data/readonly/anchors/anchors-ip.data index 634f366f16..1093bacd90 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ip.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ip.data @@ -1,3 +1,13 @@ +IPAddressSpace +enum +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#enumdef-ipaddressspace +1 +1 +- ip address dfn url @@ -10,58 +20,69 @@ https://url.spec.whatwg.org/#ip-address - ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#cache-entry-ip-address-space +https://wicg.github.io/private-network-access/#cache-entry-ip-address-space 1 1 cache entry - ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#connection-ip-address-space +https://wicg.github.io/private-network-access/#connection-ip-address-space 1 1 connection - ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#ip-address-space +https://wicg.github.io/private-network-access/#ip-address-space 1 1 - ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#policy-container-ip-address-space +https://wicg.github.io/private-network-access/#policy-container-ip-address-space 1 1 policy container - ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#response-ip-address-space +https://wicg.github.io/private-network-access/#response-ip-address-space 1 1 response - +ipv4 +enum-value +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-socketdnsquerytype-ipv4 +1 +1 +SocketDnsQueryType +- ipv4 address dfn url @@ -192,6 +213,17 @@ https://url.spec.whatwg.org/#ipv4-too-many-parts 1 - +ipv6 +enum-value +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-socketdnsquerytype-ipv6 +1 +1 +SocketDnsQueryType +- ipv6 address dfn url @@ -292,3 +324,25 @@ https://url.spec.whatwg.org/#ipv6-unclosed 1 - +ipv6Only +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketoptions-ipv6only +1 +1 +TCPServerSocketOptions +- +ipv6Only +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-ipv6only +1 +1 +UDPSocketOptions +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ir.data b/bikeshed/spec-data/readonly/anchors/anchors-ir.data index b7d73acd87..26ea9aba86 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ir.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ir.data @@ -26,7 +26,37 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-internationalized-resource-identifier +https://w3c.github.io/rdf-concepts/spec/#dfn-iri + +1 +- +iri +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-iri + +1 +- +iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-iri + +1 +- +iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-iri 1 - @@ -58,6 +88,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-iri-equality +1 +- +iri equality +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-iri-equality + 1 - iri expanding @@ -99,6 +139,46 @@ snapshot https://www.w3.org/TR/json-ld11-api/#dfn-iri-mapping 1 +- +iri reference +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-iri-reference + + +- +iri reference +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-iri-reference + + +- +iri references +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-iri-reference + + +- +iri references +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-iri-reference + + - irk dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-is.data b/bikeshed/spec-data/readonly/anchors/anchors-is.data index 7287d53359..1797f7b1f2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-is.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-is.data @@ -79,26 +79,6 @@ compositing snapshot https://www.w3.org/TR/compositing-1/#isolated-propid 1 -1 -- -@@isConcatSpreadable -const -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols -1 -1 -- -@@isconcatspreadable -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/infrastructure.html#@@isconcatspreadable - 1 - Is feature enabled in document for origin? @@ -121,6 +101,36 @@ https://www.w3.org/TR/permissions-policy-1/#is-feature-enabled 1 1 - +Is origin potentially trustworthy? +abstract-op +secure-contexts +secure-contexts +1 +current +https://w3c.github.io/webappsec-secure-contexts/#is-origin-trustworthy +1 +1 +- +Is origin potentially trustworthy? +abstract-op +secure-contexts +secure-contexts +1 +snapshot +https://www.w3.org/TR/secure-contexts/#is-origin-trustworthy +1 +1 +- +IsAccessorDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isaccessordescriptor +1 +1 +- IsAccessorDescriptor(Desc) abstract-op ecmascript @@ -131,6 +141,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isac 1 1 - +IsArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isarray +1 +1 +- IsArray(argument) abstract-op ecmascript @@ -141,6 +161,36 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isarray 1 1 - +IsArrayBufferViewOutOfBounds +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-isarraybufferviewoutofbounds +1 +1 +- +IsArrayBufferViewOutOfBounds(O) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-isarraybufferviewoutofbounds +1 +1 +- +IsBigIntElementType +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isbigintelementtype +1 +1 +- IsBigIntElementType(type) abstract-op ecmascript @@ -151,6 +201,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-isbigintelementtype 1 1 - +IsCallable +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iscallable +1 +1 +- IsCallable(argument) abstract-op ecmascript @@ -161,6 +221,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iscallable 1 1 - +IsCompatiblePropertyDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-iscompatiblepropertydescriptor +1 +1 +- IsCompatiblePropertyDescriptor(Extensible, Desc, Current) abstract-op ecmascript @@ -171,6 +241,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +IsConcatSpreadable +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-isconcatspreadable +1 +1 +- IsConcatSpreadable(O) abstract-op ecmascript @@ -181,6 +261,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-isconcatspreadabl 1 1 - +IsConstructor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isconstructor +1 +1 +- IsConstructor(argument) abstract-op ecmascript @@ -191,6 +281,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isconstructor 1 1 - +IsDataDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isdatadescriptor +1 +1 +- IsDataDescriptor(Desc) abstract-op ecmascript @@ -201,6 +301,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isda 1 1 - +IsDetachedBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isdetachedbuffer +1 +1 +- IsDetachedBuffer(arrayBuffer) abstract-op ecmascript @@ -211,6 +321,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-isdetachedbuffer 1 1 - +IsExtensible +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isextensible-o +1 +1 +- IsExtensible(O) abstract-op ecmascript @@ -221,6 +341,36 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isextensible-o 1 1 - +IsFixedLengthArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isfixedlengtharraybuffer +1 +1 +- +IsFixedLengthArrayBuffer(arrayBuffer) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isfixedlengtharraybuffer +1 +1 +- +IsGenericDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isgenericdescriptor +1 +1 +- IsGenericDescriptor(Desc) abstract-op ecmascript @@ -241,13 +391,13 @@ https://wicg.github.io/is-input-pending/#dom-isinputpendingoptions 1 1 - -IsIntegralNumber(argument) +IsLessThan abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isintegralnumber +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islessthan 1 1 - @@ -261,6 +411,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islessthan 1 1 - +IsLooselyEqual +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islooselyequal +1 +1 +- IsLooselyEqual(x, y) abstract-op ecmascript @@ -271,6 +431,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islooselyequal 1 1 - +IsNoTearConfiguration +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isnotearconfiguration +1 +1 +- IsNoTearConfiguration(type, order) abstract-op ecmascript @@ -291,6 +461,16 @@ https://streams.spec.whatwg.org/#is-non-negative-number 1 1 - +IsPrivateReference +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isprivatereference +1 +1 +- IsPrivateReference(V) abstract-op ecmascript @@ -301,6 +481,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-ispr 1 1 - +IsPromise +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-ispromise +1 +1 +- IsPromise(x) abstract-op ecmascript @@ -311,13 +501,13 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-ispromise 1 1 - -IsPropertyKey(argument) +IsPropertyReference abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ispropertykey +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-ispropertyreference 1 1 - @@ -341,6 +531,16 @@ https://streams.spec.whatwg.org/#is-readable-stream-locked 1 1 - +IsRegExp +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isregexp +1 +1 +- IsRegExp(argument) abstract-op ecmascript @@ -362,6 +562,16 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-external-issearchprovid 1 External - +IsSharedArrayBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-issharedarraybuffer +1 +1 +- IsSharedArrayBuffer(obj) abstract-op ecmascript @@ -372,6 +582,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-issharedarraybuffer 1 1 - +IsStrictlyEqual +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isstrictlyequal +1 +1 +- IsStrictlyEqual(x, y) abstract-op ecmascript @@ -382,6 +602,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isstrictlyequal 1 1 - +IsSuperReference +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-issuperreference +1 +1 +- IsSuperReference(V) abstract-op ecmascript @@ -392,6 +622,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-issu 1 1 - +IsTimeZoneOffsetString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-istimezoneoffsetstring +1 +1 +- IsTimeZoneOffsetString(offsetString) abstract-op ecmascript @@ -402,6 +642,36 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-istimezoneoffsetstr 1 1 - +IsTypedArrayOutOfBounds +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-istypedarrayoutofbounds +1 +1 +- +IsTypedArrayOutOfBounds(taRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-istypedarrayoutofbounds +1 +1 +- +IsUnclampedIntegerElementType +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isunclampedintegerelementtype +1 +1 +- IsUnclampedIntegerElementType(type) abstract-op ecmascript @@ -412,6 +682,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-isunclampedintegerele 1 1 - +IsUnresolvableReference +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isunresolvablereference +1 +1 +- IsUnresolvableReference(V) abstract-op ecmascript @@ -422,6 +702,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-isun 1 1 - +IsUnsignedElementType +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isunsignedelementtype +1 +1 +- IsUnsignedElementType(type) abstract-op ecmascript @@ -432,6 +722,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-isunsignedelementtype 1 1 - +IsValidIntegerIndex +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-isvalidintegerindex +1 +1 +- IsValidIntegerIndex(O, index) abstract-op ecmascript @@ -442,6 +742,36 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +IsViewOutOfBounds +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isviewoutofbounds +1 +1 +- +IsViewOutOfBounds(viewRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-isviewoutofbounds +1 +1 +- +IsWordChar +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-iswordchar-abstract-operation +1 +1 +- IsWordChar(rer, Input, e) abstract-op ecmascript @@ -504,6 +834,7 @@ snapshot https://www.w3.org/TR/webrtc/#dfn-isclosed 1 1 +RTCPeerConnection - [[isClosed]] attribute @@ -577,7 +908,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-ishighaccuracy +https://w3c.github.io/geolocation/#dfn-ishighaccuracy 1 GeolocationPosition @@ -709,7 +1040,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-duplicate-name +https://urlpattern.spec.whatwg.org/#is-a-duplicate-name 1 - @@ -719,7 +1050,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-group-close +https://urlpattern.spec.whatwg.org/#is-a-group-close 1 - @@ -729,7 +1060,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-group-open +https://urlpattern.spec.whatwg.org/#is-a-group-open 1 - @@ -739,7 +1070,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-hash-prefix +https://urlpattern.spec.whatwg.org/#is-a-hash-prefix 1 - @@ -749,7 +1080,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-non-special-pattern-char +https://urlpattern.spec.whatwg.org/#is-a-non-special-pattern-char 1 - @@ -770,7 +1101,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-password-prefix +https://urlpattern.spec.whatwg.org/#is-a-password-prefix 1 - @@ -780,7 +1111,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-pathname-start +https://urlpattern.spec.whatwg.org/#is-a-pathname-start 1 - @@ -800,7 +1131,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-port-prefix +https://urlpattern.spec.whatwg.org/#is-a-port-prefix 1 - @@ -810,7 +1141,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-protocol-suffix +https://urlpattern.spec.whatwg.org/#is-a-protocol-suffix 1 - @@ -830,7 +1161,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-search-prefix +https://urlpattern.spec.whatwg.org/#is-a-search-prefix 1 - @@ -862,20 +1193,41 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-a-valid-name-code-point +https://urlpattern.spec.whatwg.org/#is-a-valid-name-code-point 1 - is active dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#close-watcher-is-active +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-active 1 -close watcher +- +is ad component +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-is-ad-component +1 +1 +fenced frame config instance +- +is ad component +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-is-ad-component +1 +1 +fenced frame config - is allowed to show a file picker dfn @@ -893,7 +1245,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-an-absolute-pathname +https://urlpattern.spec.whatwg.org/#is-an-absolute-pathname 1 - @@ -923,7 +1275,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-an-identity-terminator +https://urlpattern.spec.whatwg.org/#is-an-identity-terminator 1 - @@ -933,7 +1285,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-an-ipv6-close +https://urlpattern.spec.whatwg.org/#is-an-ipv6-close 1 - @@ -943,7 +1295,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-an-ipv6-open +https://urlpattern.spec.whatwg.org/#is-an-ipv6-open 1 - @@ -964,7 +1316,17 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#is-ascii +https://urlpattern.spec.whatwg.org/#is-ascii + +1 +- +is associated with +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#is-associated-with 1 - @@ -1036,6 +1398,58 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#is-closing +1 +- +is component auction +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-is-component-auction + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +is composing +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-is-composing + +1 +- +is continuation +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#scheduler-task-queue-is-continuation + +1 +scheduler task queue +- +is currently stalled +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#is-currently-stalled + +1 +- +is debugging only in cooldown or lockout +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#is-debugging-only-in-cooldown-or-lockout + 1 - is delaying load events @@ -1066,6 +1480,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-is-detached +1 +- +is document picture-in-picture +dfn +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#is-document-picture-in-picture + 1 - is element enabled @@ -1175,6 +1599,28 @@ https://www.w3.org/TR/permissions/#dfn-is-equal-to 1 permission key - +is expected to match a url +dfn +prefetch +prefetch +1 +current +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-is-expected-to-match-a-url +1 +1 +prefetch record +- +is expected to match a url +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record-is-expected-to-match-a-url +1 +1 +prerender record +- is finished dfn webidl @@ -1196,36 +1642,49 @@ https://encoding.spec.whatwg.org/#gbk-flag 1 - -is grouped with previous +is global prototype chain mutable +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#realm-is-global-prototype-chain-mutable +1 +1 +realm +- +is in a bucket file system dfn -close-watcher -close-watcher +fs +fs 1 current -https://wicg.github.io/close-watcher/#close-watcher-is-grouped-with-previous - +https://fs.spec.whatwg.org/#filesystemhandle-is-in-a-bucket-file-system +1 1 -close watcher +FileSystemHandle - is in view -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#dfn-is-in-view - 1 +1 +Document - is in view -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-is-in-view - 1 +1 +Document - is initial about:blank dfn @@ -1233,7 +1692,17 @@ html html 1 current -https://html.spec.whatwg.org/multipage/dom.html#is-initial-about:blank +https://html.spec.whatwg.org/multipage/dom.html#is-initial-about%3Ablank + +1 +- +is input.elementorigin +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#is-inputelementorigin 1 - @@ -1247,6 +1716,17 @@ https://fetch.spec.whatwg.org/#is-local 1 1 - +is lower-priority than +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-report-is-lower-priority-than + +1 +event-level report +- is modal dfn html @@ -1277,17 +1757,6 @@ https://wicg.github.io/webusb/#is-not-a-valid-filter 1 - -is not active -dfn -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#close-watcher-is-active - -1 -close watcher -- is not an array index dfn webidl @@ -1354,6 +1823,17 @@ https://wicg.github.io/webpackage/loading.html#exchange-signature-is-valid 1 exchange signature - +is null report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-is-null-report + +1 +aggregatable attribution report +- is origin-keyed dfn html @@ -1362,6 +1842,26 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#is-origin-keyed +1 +- +is persistent session type? +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-is-persistent-session-type + +1 +- +is persistent session type? +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-is-persistent-session-type + 1 - is point in path steps @@ -1406,25 +1906,23 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#is-popup - is running cancel action dfn -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#close-watcher-is-running-cancel-action +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-is-running-cancel 1 -close watcher - is same document dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationdestination-is-same-document +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationdestination-samedocument 1 -NavigationDestination - is same-party with its top-level embedder dfn @@ -1529,6 +2027,28 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.is 1 Object - +is-agent-order-before +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-agent-order +1 +1 +ECMAScript +- +is-memory-order-before +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-memory-order +1 +1 +ECMAScript +- is-value-compatible dfn document-policy @@ -1718,6 +2238,50 @@ https://wicg.github.io/webhid/#dom-hidreportitem-isabsolute 1 HIDReportItem - +isActivating +dict-member +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionactioncapturedetails-isactivating +1 +1 +MediaSessionActionCaptureDetails +- +isActivating +dict-member +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessioncaptureactiondetails-isactivating +1 +1 +MediaSessionCaptureActionDetails +- +isActivating +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionactioncapturedetails-isactivating +1 +1 +MediaSessionActionCaptureDetails +- +isActivating +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessioncaptureactiondetails-isactivating +1 +1 +MediaSessionCaptureActionDetails +- isActive attribute html @@ -1768,10 +2332,21 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.isarray +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.isarray +1 +1 +Array +- +isAutoSelected +attribute +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredential-isautoselected 1 1 -Array +IdentityCredential - isBufferedBytes dict-member @@ -1927,6 +2502,28 @@ https://w3c.github.io/webauthn/#dom-publickeycredential-isconditionalmediationav 1 PublicKeyCredential - +isConditionalMediationAvailable() +method +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credential-isconditionalmediationavailable +1 +1 +Credential +- +isConditionalMediationAvailable() +method +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-isconditionalmediationavailable +1 +1 +PublicKeyCredential +- isConfigSupported(config) method webcodecs @@ -2081,6 +2678,17 @@ https://wicg.github.io/entries-api/#dom-filesystementry-isdirectory 1 FileSystemEntry - +isDisjointFrom(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.isdisjointfrom +1 +1 +Set +- isElementContentWhitespace attribute dom @@ -2105,22 +2713,22 @@ Node - isExtended attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screen-isextended +https://w3c.github.io/window-management/#dom-screen-isextended 1 1 Screen - isExtended attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screen-isextended +https://www.w3.org/TR/window-management/#dom-screen-isextended 1 1 Screen @@ -2317,17 +2925,6 @@ attribute edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-editcontext-isincomposition -1 -1 -EditContext -- -isInComposition -attribute -edit-context -edit-context -1 snapshot https://www.w3.org/TR/edit-context/#dom-editcontext-isincomposition 1 @@ -2369,22 +2966,22 @@ Number - isInternal attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-isinternal +https://w3c.github.io/window-management/#dom-screendetailed-isinternal 1 1 ScreenDetailed - isInternal attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-isinternal +https://www.w3.org/TR/window-management/#dom-screendetailed-isinternal 1 1 ScreenDetailed @@ -2488,6 +3085,17 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-number.isnan 1 Number - +isPasskeyPlatformAuthenticatorAvailable() +method +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-ispasskeyplatformauthenticatoravailable +1 +1 +PublicKeyCredential +- isPayment dict-member secure-payment-confirmation @@ -2622,11 +3230,11 @@ PointerEventInit - isPrimary attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-isprimary +https://w3c.github.io/window-management/#dom-screendetailed-isprimary 1 1 ScreenDetailed @@ -2666,11 +3274,11 @@ PointerEventInit - isPrimary attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-isprimary +https://www.w3.org/TR/window-management/#dom-screendetailed-isprimary 1 1 ScreenDetailed @@ -2708,28 +3316,6 @@ https://fetch.spec.whatwg.org/#dom-request-isreloadnavigation 1 Request - -isRemote -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatestats-isremote -1 - -RTCIceCandidateStats -- -isRemote -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatestats-isremote -1 - -RTCIceCandidateStats -- isSafeInteger(number) method ecmascript @@ -2829,6 +3415,28 @@ https://html.spec.whatwg.org/multipage/webappapis.html#dom-issecurecontext 1 WindowOrWorkerGlobalScope - +isSecurePaymentConfirmationAvailable() +method +secure-payment-confirmation +secure-payment-confirmation +1 +current +https://w3c.github.io/secure-payment-confirmation/#dom-paymentrequest-issecurepaymentconfirmationavailable +1 +1 +PaymentRequest +- +isSecurePaymentConfirmationAvailable() +method +secure-payment-confirmation +secure-payment-confirmation +1 +snapshot +https://www.w3.org/TR/secure-payment-confirmation/#dom-paymentrequest-issecurepaymentconfirmationavailable +1 +1 +PaymentRequest +- isSessionSupported(mode) method webxr @@ -2884,6 +3492,28 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerinit-isstatic 1 XRLayerInit - +isSubsetOf(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.issubsetof +1 +1 +Set +- +isSupersetOf(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.issupersetof +1 +1 +Set +- isSupported attribute dom @@ -2895,6 +3525,28 @@ https://dom.spec.whatwg.org/#dom-node-issupported 1 Node - +isSystemKeyboardSupported +attribute +webxr +webxr +1 +current +https://immersive-web.github.io/webxr/#dom-xrsession-issystemkeyboardsupported +1 +1 +XRSession +- +isSystemKeyboardSupported +attribute +webxr +webxr +1 +snapshot +https://www.w3.org/TR/webxr/#dom-xrsession-issystemkeyboardsupported +1 +1 +XRSession +- isTrusted attribute dom @@ -3027,6 +3679,28 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.isview 1 ArrayBuffer - +isVisible +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-isvisible +1 +1 +IntersectionObserverEntry +- +isVisible +dict-member +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentryinit-isvisible +1 +1 +IntersectionObserverEntryInit +- isVolatile dict-member webhid @@ -3038,6 +3712,28 @@ https://wicg.github.io/webhid/#dom-hidreportitem-isvolatile 1 HIDReportItem - +isWellFormed() +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.iswellformed +1 +1 +String +- +iscustom +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#representation-iscustom + +1 +representation +- isdebugreport dfn attribution-reporting-api @@ -3087,10 +3783,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#match-an-attribution-sources-filter-data-against-a-filter-map-isnegated +https://wicg.github.io/attribution-reporting-api/#match-an-attribution-source-against-a-filter-config-isnegated 1 -match an attribution source’s filter data against a filter map +match an attribution source against a filter config - isnegated dfn @@ -3098,10 +3794,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#match-an-attribution-sources-filter-data-against-filters-isnegated +https://wicg.github.io/attribution-reporting-api/#match-an-attribution-source-against-filters-isnegated 1 -match an attribution source’s filter data against filters +match an attribution source against filters - iso dict-member @@ -3679,10 +4375,10 @@ prefetch prefetch 1 current -https://wicg.github.io/nav-speculation/prefetch.html#cross-partition-prefetch-state-isolated-partition-key - +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-isolated-partition-key +1 1 -cross-partition prefetch state +prefetch record - isolated sequence dfn @@ -3815,6 +4511,16 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-graph-isomorphism 1 1 - +isomorphic +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-graph-isomorphism +1 +1 +- isomorphic decode dfn infra @@ -3847,25 +4553,13 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#isplatformobjectsam - issamedocument dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-issamedocument - -1 -fire a non-traversal navigate event -- -issitewide -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexresult-issitewide +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-issamedocument 1 -trackingexresult - isstatic dfn @@ -3891,11 +4585,21 @@ XRCompositionLayer - issue a haptic effect dfn -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-issue-a-haptic-effect +https://w3c.github.io/gamepad/#dfn-issue-a-haptic-effect + +1 +- +issue a haptic effect +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-issue-a-haptic-effect 1 - @@ -3917,6 +4621,68 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-issued-identifiers-map +1 +- +issuer +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-issuers +1 +1 +- +issuer +argument +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-document-hasprivatetoken-issuer-issuer +1 +1 +Document/hasPrivateToken(issuer) +- +issuer +argument +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-document-hasredemptionrecord-issuer-issuer +1 +1 +Document/hasRedemptionRecord(issuer) +- +issuer +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-issuers +1 +1 +- +issuer's +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-issuers +1 +1 +- +issuer's +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-issuers +1 1 - issuerCertificateId @@ -3941,6 +4707,67 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtccertificatestats-issuercertificateid 1 RTCCertificateStats - +issuerassociations +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#issuerassociations + +1 +- +issuerequest +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#issuerequest + +1 +- +issueresponse +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#issueresponse + +1 +- +issuers +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-issuers +1 +1 +- +issuers +dict-member +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-privatetoken-issuers +1 +1 +PrivateToken +- +issuers +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-issuers +1 +1 +- issuing a credential request to an authenticator dfn webauthn-3 @@ -3949,6 +4776,17 @@ webauthn current https://w3c.github.io/webauthn/#publickeycredential-issuing-a-credential-request-to-an-authenticator +1 +PublicKeyCredential +- +issuing a credential request to an authenticator +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#publickeycredential-issuing-a-credential-request-to-an-authenticator + 1 PublicKeyCredential - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-it.data b/bikeshed/spec-data/readonly/anchors/anchors-it.data index 30e6ef0bfd..e3626d147e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-it.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-it.data @@ -15,17 +15,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%iteratorprototype%-object -1 -1 -- -@@iterator -const -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25iteratorprototype%25-object 1 1 - @@ -49,16 +39,6 @@ https://wicg.github.io/digital-goods/#enumdef-itemtype 1 1 - -IterableToList(items, method) -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iterabletolist -1 -1 -- Iterate over each dynamic binding offset abstract-op webgpu @@ -89,6 +69,26 @@ https://drafts.csswg.org/web-animations-2/#enumdef-iterationcompositeoperation 1 1 - +IterationCompositeOperation +enum +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#enumdef-iterationcompositeoperation +1 +1 +- +IteratorClose +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorclose +1 +1 +- IteratorClose(iteratorRecord, completion) abstract-op ecmascript @@ -99,7 +99,17 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorclose 1 1 - -IteratorComplete(iterResult) +IteratorComplete +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorcomplete +1 +1 +- +IteratorComplete(iteratorResult) abstract-op ecmascript ecmascript @@ -109,6 +119,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorcomplete 1 1 - +IteratorNext +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratornext +1 +1 +- IteratorNext(iteratorRecord, value) abstract-op ecmascript @@ -119,6 +139,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratornext 1 1 - +IteratorStep +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorstep +1 +1 +- IteratorStep(iteratorRecord) abstract-op ecmascript @@ -129,7 +159,57 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorstep 1 1 - -IteratorValue(iterResult) +IteratorStepValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorstepvalue +1 +1 +- +IteratorStepValue(iteratorRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorstepvalue +1 +1 +- +IteratorToList +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratortolist +1 +1 +- +IteratorToList(iteratorRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratortolist +1 +1 +- +IteratorValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorvalue +1 +1 +- +IteratorValue(iteratorResult) abstract-op ecmascript ecmascript @@ -609,6 +689,17 @@ https://www.w3.org/TR/geometry-1/#dom-domrectlist-item 1 DOMRectList - +item(index) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationnodelist-item +1 +1 +AnimationNodeList +- item(nameOrIndex) method html @@ -670,7 +761,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/microdata.html#names:-the-itemprop-attribute +https://html.spec.whatwg.org/multipage/microdata.html#names%3A-the-itemprop-attribute 1 1 html-global @@ -756,18 +847,6 @@ ClipboardItem/constructor(items, options) ClipboardItem/ClipboardItem(items) ClipboardItem/constructor(items) - -items -argument -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-createdelayed-items-options-items -1 -1 -ClipboardItem/createDelayed(items, options) -ClipboardItem/createDelayed(items) -- itemscope element-attr html @@ -792,17 +871,6 @@ html-global - iterable dfn -encrypted-media -encrypted-media -1 -current -https://w3c.github.io/encrypted-media/#dfn-iterable - -1 -MediaKeyStatusMap -- -iterable -dfn json-ld11-api json-ld-api 1 @@ -835,17 +903,6 @@ https://webidl.spec.whatwg.org/#dfn-iterable - iterable dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap-iterable - -1 -mediakeystatusmap -- -iterable -dfn json-ld11-api json-ld-api 1 @@ -958,6 +1015,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#iteration-composite-operation +1 +- +iteration composite operation +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#iteration-composite-operation + 1 - iteration composite operation accumulate @@ -968,6 +1035,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#iteration-composite-operation-accumulate +1 +- +iteration composite operation accumulate +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#iteration-composite-operation-accumulate + 1 - iteration composite operation replace @@ -978,6 +1055,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#iteration-composite-operation-replace +1 +- +iteration composite operation replace +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#iteration-composite-operation-replace + 1 - iteration count @@ -1018,6 +1105,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#iteration-duration +1 +- +iteration index +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#current-iteration-index + 1 - iteration interval @@ -1051,6 +1148,17 @@ https://drafts.csswg.org/css-font-loading-3/#fontfaceset-iteration-order 1 FontFaceSet - +iteration order +dfn +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfaceset-iteration-order +1 +1 +FontFaceSet +- iteration progress dfn web-animations-1 @@ -1090,6 +1198,26 @@ snapshot https://www.w3.org/TR/web-animations-1/#iteration-start 1 +- +iteration time +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#iteration-time + + +- +iteration time space +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#iteration-time-space + + - iterationComposite attribute @@ -1113,6 +1241,28 @@ https://drafts.csswg.org/web-animations-2/#dom-keyframeeffectoptions-iterationco 1 KeyframeEffectOptions - +iterationComposite +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-keyframeeffect-iterationcomposite +1 +1 +KeyframeEffect +- +iterationComposite +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-keyframeeffectoptions-iterationcomposite +1 +1 +KeyframeEffectOptions +- iterationStart dict-member web-animations-1 @@ -1165,6 +1315,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#iterationcompositeoperation +1 +- +iterationcompositeoperation +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#iterationcompositeoperation + 1 - iterations @@ -1207,7 +1367,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-Pbkdf2Params-iterations -1 + 1 - iterations diff --git a/bikeshed/spec-data/readonly/anchors/anchors-iv.data b/bikeshed/spec-data/readonly/anchors/anchors-iv.data index e80f6c0fcc..a219e4e2e9 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-iv.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-iv.data @@ -27,7 +27,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesCbcParams-iv -1 + 1 - ivory @@ -50,6 +50,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-ivory 1 1 <color> +<named-color> - ivory dfn @@ -71,4 +72,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-ivory 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ja.data b/bikeshed/spec-data/readonly/anchors/anchors-ja.data index 86a2b8d355..2486353d70 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ja.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ja.data @@ -7,6 +7,26 @@ current https://html.spec.whatwg.org/multipage/document-sequences.html#jake-diagram 1 +- +jamo +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-jamo +1 + +- +jamo +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-jamo +1 + - japanese dfn @@ -167,33 +187,24 @@ https://html.spec.whatwg.org/multipage/webappapis.html#javascript-module-script 1 1 - -javascript realm +javascript string dfn -presentation-api -presentation-api +infra +infra 1 current -https://w3c.github.io/presentation-api/#dfn-javascript-realm - -1 -- -javascript realm -dfn -presentation-api -presentation-api +https://infra.spec.whatwg.org/#string 1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-javascript-realm - 1 - -javascript string +javascript throw dfn -infra -infra +webidl +webidl 1 current -https://infra.spec.whatwg.org/#string -1 +https://webidl.spec.whatwg.org/#javascript-throw + 1 +JavaScript - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ji.data b/bikeshed/spec-data/readonly/anchors/anchors-ji.data index 6fb8f868f4..1fcc9077ab 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ji.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ji.data @@ -1,3 +1,14 @@ +[[JitterBufferTarget]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-jitterbuffertarget +1 +1 +RTCRtpReceiver +- jis-b4 value css-page-3 @@ -168,34 +179,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-jitterbufferdelay -1 - -RTCMediaStreamTrackStats -- -jitterBufferDelay -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-jitterbufferdelay 1 1 RTCInboundRtpStreamStats - -jitterBufferDelay -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-jitterbufferdelay -1 - -RTCMediaStreamTrackStats -- jitterBufferEmittedCount dict-member webrtc-stats @@ -212,34 +201,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-jitterbufferemittedcount -1 - -RTCMediaStreamTrackStats -- -jitterBufferEmittedCount -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-jitterbufferemittedcount 1 1 RTCInboundRtpStreamStats - -jitterBufferEmittedCount -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-jitterbufferemittedcount -1 - -RTCMediaStreamTrackStats -- jitterBufferMinimumDelay dict-member webrtc-stats @@ -262,6 +229,17 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-jitterbuffermin 1 RTCInboundRtpStreamStats - +jitterBufferTarget +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dom-rtcrtpreceiver-jitterbuffertarget +1 +1 +RTCRtpReceiver +- jitterBufferTargetDelay dict-member webrtc-stats diff --git a/bikeshed/spec-data/readonly/anchors/anchors-jo.data b/bikeshed/spec-data/readonly/anchors/anchors-jo.data index 1bf6b91ada..dcb1cd6193 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-jo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-jo.data @@ -148,13 +148,46 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#jo 1 ECMAScript - +join count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-browser-signals-join-count + +1 +server auction browser signals +- +join counts +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-join-counts + +1 +interest group +- +join time +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-join-time + +1 +interest group +- join(separator) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.join +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.join 1 1 %TypedArray% @@ -170,6 +203,49 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.j 1 Array - +join-ad-interest-group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#join-ad-interest-group + +1 +- +joinAdInterestGroup(group) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-joinadinterestgroup +1 +1 +Navigator +- +joinCount +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-joincount +1 +1 +BiddingBrowserSignals +- +joining origin +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-joining-origin + +1 +interest group +- joint argument webxr-hand-input-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-js.data b/bikeshed/spec-data/readonly/anchors/anchors-js.data index 75683630ae..3c9443ce6c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-js.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-js.data @@ -1,5 +1,16 @@ "json" enum-value +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#dom-requestdestination-json +1 +1 +RequestDestination +- +"json" +enum-value xhr xhr 1 @@ -329,8 +340,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-jsepmid + 1 -1 +RTCRtpTransceiver - json clone dfn @@ -730,36 +742,6 @@ snapshot https://www.w3.org/TR/json-ld11/#dfn-json-ld-value -- -json-serialize -dfn -payment-request-1.1 -payment-request -1 -snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-json-serialize -1 -1 -- -json-serialized -dfn -payment-request-1.1 -payment-request -1 -snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-json-serialize -1 -1 -- -json-serializing -dfn -payment-request-1.1 -payment-request -1 -snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-json-serialize -1 -1 - jsonldprocessor-compact-context dfn @@ -1068,6 +1050,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-JsonWebKey -1 + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ju.data b/bikeshed/spec-data/readonly/anchors/anchors-ju.data index 2fa93b9f70..6772810728 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ju.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ju.data @@ -351,6 +351,17 @@ https://drafts.csswg.org/css-align-3/#propdef-justify-self 1 - justify-self +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-justify-self +1 +1 +CSSPositionTryDescriptors +- +justify-self property css-align-3 css-align @@ -360,13 +371,14 @@ https://www.w3.org/TR/css-align-3/#propdef-justify-self 1 1 - -justify-tracks -property -css-grid-3 -css-grid -3 +justifySelf +attribute +css-anchor-position-1 +css-anchor-position +1 current -https://drafts.csswg.org/css-grid-3/#propdef-justify-tracks +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-justifyself 1 1 +CSSPositionTryDescriptors - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ka.data b/bikeshed/spec-data/readonly/anchors/anchors-ka.data index c929b54a1a..9e8ac74aea 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ka.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ka.data @@ -1,3 +1,74 @@ +KAnonStatus +enum +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#enumdef-kanonstatus +1 +1 +- +k-anonymity duration +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#k-anonymity-duration + +1 +- +k-anonymity server +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#k-anonymity-server + +1 +- +k-anonymity threshold +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#k-anonymity-threshold + +1 +- +kAnonStatus +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-kanonstatus +1 +1 +ReportWinBrowserSignals +- +kana +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-kana +1 + +- +kana +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-kana +1 + +- kannada value css-counter-styles-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ke.data b/bikeshed/spec-data/readonly/anchors/anchors-ke.data index 10e12f89cc..71bcdae0d0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ke.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ke.data @@ -286,6 +286,26 @@ https://w3c.github.io/webcrypto/#dfn-KeyAlgorithm 1 1 - +KeyForSymbol +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-keyforsymbol +1 +1 +- +KeyForSymbol(sym) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-keyforsymbol +1 +1 +- KeyFormat enum webcryptoapi @@ -296,6 +316,70 @@ https://w3c.github.io/webcrypto/#dom-keyformat 1 1 - +KeyFrameRequestEvent +interface +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#keyframerequestevent +1 +1 +- +KeyFrameRequestEvent +interface +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#keyframerequestevent +1 +1 +- +KeyFrameRequestEvent(type) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- +KeyFrameRequestEvent(type) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- +KeyFrameRequestEvent(type, rid) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- +KeyFrameRequestEvent(type, rid) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent +1 +1 +KeyFrameRequestEvent +- KeySystemTrackConfiguration dictionary media-capabilities @@ -513,6 +597,17 @@ https://www.w3.org/TR/web-animations-1/#dom-keyframeeffect-keyframeeffect-source 1 KeyframeEffect - +KeyframeEffect(source) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-keyframeeffect-keyframeeffect-source +1 +1 +KeyframeEffect +- KeyframeEffect(target, keyframes) constructor web-animations-1 @@ -568,6 +663,17 @@ https://www.w3.org/TR/web-animations-1/#dom-keyframeeffect-keyframeeffect 1 KeyframeEffect - +KeyframeEffect(target, keyframes, options) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-keyframeeffect-keyframeeffect +1 +1 +KeyframeEffect +- KeyframeEffectOptions dictionary web-animations-1 @@ -606,8 +712,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-keyingmaterialhandle + 1 -1 +RTCCertificate - [[key chunk required]] attribute @@ -741,6 +848,39 @@ https://www.w3.org/TR/css-text-4/#valdef-word-break-keep-all 1 word-break - +keepAlive +dict-member +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstoragerunoperationmethodoptions-keepalive +1 +1 +SharedStorageRunOperationMethodOptions +- +keepAliveDelay +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions-keepalivedelay +1 +1 +TCPSocketOptions +- +keepDimensions +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlargminmaxoptions-keepdimensions +1 +1 +MLArgMinMaxOptions +- keepDimensions dict-member webnn @@ -758,6 +898,17 @@ webnn webnn 1 snapshot +https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-keepdimensions +1 +1 +MLArgMinMaxOptions +- +keepDimensions +dict-member +webnn +webnn +1 +snapshot https://www.w3.org/TR/webnn/#dom-mlreduceoptions-keepdimensions 1 1 @@ -774,6 +925,39 @@ https://fs.spec.whatwg.org/#dom-filesystemcreatewritableoptions-keepexistingdata 1 FileSystemCreateWritableOptions - +keepRepeatedDevices +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-keeprepeateddevices +1 +1 +BluetoothLEScan +- +keepRepeatedDevices +dict-member +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanoptions-keeprepeateddevices +1 + +BluetoothLEScanOptions +- +keepRepeatedDevices +dict-member +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanpermissiondescriptor-keeprepeateddevices +1 +1 +BluetoothLEScanPermissionDescriptor +- keepalive attribute fetch @@ -1083,6 +1267,48 @@ https://fetch.spec.whatwg.org/#connection-key connection - key +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationhistoryentry-key + +1 +- +key +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-key +1 +1 +NavigationDestination +- +key +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-key +1 +1 +NavigationHistoryEntry +- +key +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-key + +1 +- +key attribute html html @@ -1117,6 +1343,17 @@ map - key dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-details-key + +1 +debug details +- +key +dfn indexeddb-3 indexeddb 3 @@ -1203,6 +1440,16 @@ indexeddb current https://w3c.github.io/IndexedDB/#key +1 +- +key +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-key-s + 1 - key @@ -1239,27 +1486,27 @@ https://w3c.github.io/uievents/#dom-keyboardeventinit-key KeyboardEventInit - key -argument +enum-value webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransform-setencryptionkey-key-keyid-key +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-key 1 1 -SFrameTransform/setEncryptionKey(key, keyID) -SFrameTransform/setEncryptionKey(key) +RTCEncodedVideoFrameType - key -dfn +argument webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframetype-key - +https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransform-setencryptionkey-key-keyid-key 1 -RTCEncodedVideoFrameType +1 +SFrameTransform/setEncryptionKey(key, keyID) +SFrameTransform/setEncryptionKey(key) - key dfn @@ -1285,59 +1532,82 @@ aggregatable contribution - key argument -navigation-api -navigation-api +shared-storage +shared-storage 1 current -https://wicg.github.io/navigation-api/#dom-navigation-traverseto-key-options-key +https://wicg.github.io/shared-storage/#dom-sharedstorage-append-key-value-key 1 1 -Navigation/traverseTo(key, options) -Navigation/traverseTo(key) +SharedStorage/append(key, value) - key -attribute -navigation-api -navigation-api +argument +shared-storage +shared-storage 1 current -https://wicg.github.io/navigation-api/#dom-navigationdestination-key +https://wicg.github.io/shared-storage/#dom-sharedstorage-delete-key-key 1 1 -NavigationDestination +SharedStorage/delete(key) - key -attribute -navigation-api -navigation-api +argument +shared-storage +shared-storage 1 current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-key +https://wicg.github.io/shared-storage/#dom-sharedstorage-get-key-key 1 1 -NavigationHistoryEntry +SharedStorage/get(key) +- +key +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-set-key-value-options-key +1 +1 +SharedStorage/set(key, value, options) +SharedStorage/set(key, value) - key dfn -navigation-api -navigation-api +shared-storage +shared-storage 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-key +https://wicg.github.io/shared-storage/#entry-key 1 -navigation API method navigation +entry +- +key +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setprioritysignalsoverride-key-priority-key +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope/setPrioritySignalsOverride(key, priority) +InterestGroupBiddingScriptRunnerGlobalScope/setPrioritySignalsOverride(key) - key dfn -navigation-api -navigation-api +turtledove +turtledove 1 current -https://wicg.github.io/navigation-api/#navigationdestination-key +https://wicg.github.io/turtledove/#signed-additional-bid-signature-key 1 -NavigationDestination +signed additional bid signature - key dfn @@ -1427,6 +1697,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#key +1 +- +key +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-key-s + 1 - key @@ -1463,27 +1743,27 @@ https://www.w3.org/TR/uievents/#dom-keyboardeventinit-key KeyboardEventInit - key -argument +enum-value webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-sframetransform-setencryptionkey-key-keyid-key +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-key 1 1 -SFrameTransform/setEncryptionKey(key, keyID) -SFrameTransform/setEncryptionKey(key) +RTCEncodedVideoFrameType - key -dfn +argument webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframetype-key - +https://www.w3.org/TR/webrtc-encoded-transform/#dom-sframetransform-setencryptionkey-key-keyid-key 1 -RTCEncodedVideoFrameType +1 +SFrameTransform/setEncryptionKey(key, keyID) +SFrameTransform/setEncryptionKey(key) - key argument @@ -1565,6 +1845,16 @@ uievents-code snapshot https://www.w3.org/TR/uievents-code/#key-code-attribute-value +1 +- +key commitment +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#key-commitment + 1 - key export steps @@ -1574,7 +1864,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-rsa-ssa-extended-export-steps -1 + 1 - key frame @@ -1615,6 +1905,26 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#key-generator +1 +- +key id +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-decryption-key-id +1 +1 +- +key id +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-decryption-key-id +1 1 - key import steps @@ -1624,7 +1934,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-rsa-ssa-extended-import-steps -1 + 1 - key input source @@ -1705,6 +2015,26 @@ uievents snapshot https://www.w3.org/TR/uievents/#modifier-key-name +1 +- +key modifier state +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#key-modifier-state + +1 +- +key modifier state +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#key-modifier-state + 1 - key only flag @@ -1799,6 +2129,17 @@ attribution-reporting-api attribution-reporting-api 1 current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-config-key-piece + +1 +aggregatable debug reporting config +- +key piece +dfn +attribution-reporting-api +attribution-reporting-api +1 +current https://wicg.github.io/attribution-reporting-api/#aggregatable-trigger-data-key-piece 1 @@ -1822,6 +2163,26 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#key-range +1 +- +key session +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-key-session + +1 +- +key session +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-key-session + 1 - key string @@ -1842,6 +2203,26 @@ uievents-key snapshot https://www.w3.org/TR/uievents-key/#key-string +1 +- +key system +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-key-system +1 +1 +- +key system +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-key-system +1 1 - key value @@ -1875,6 +2256,26 @@ https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-key 1 Storage - +key(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-key-s + +1 +- +key(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-key-s + +1 +- keyArg argument uievents @@ -2092,50 +2493,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-keyframesencod 1 RTCOutboundRtpStreamStats - -keyFramesReceived -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-keyframesreceived -1 - -RTCMediaStreamTrackStats -- -keyFramesReceived -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-keyframesreceived -1 - -RTCMediaStreamTrackStats -- -keyFramesSent -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-keyframessent -1 - -RTCMediaStreamTrackStats -- -keyFramesSent -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-keyframessent -1 - -RTCMediaStreamTrackStats -- keyID argument webrtc-encoded-transform @@ -2296,20 +2653,31 @@ IDBObjectStoreParameters - keyStatuses attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-keystatuses 1 1 MediaKeySession - -keySystem +keyStatuses attribute +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-keystatuses 1 +1 +MediaKeySession +- +keySystem +attribute +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemaccess-keysystem 1 @@ -2328,6 +2696,17 @@ https://w3c.github.io/media-capabilities/#dom-mediacapabilitieskeysystemconfigur MediaCapabilitiesKeySystemConfiguration - keySystem +attribute +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemaccess-keysystem +1 +1 +MediaKeySystemAccess +- +keySystem dict-member media-capabilities media-capabilities @@ -2415,6 +2794,38 @@ https://w3c.github.io/webcrypto/#dom-jsonwebkey-key_ops 1 JsonWebKey - +key_piece +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-json-key-key_piece + +1 +aggregatable-debug-reporting JSON key +- +key_piece +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-key_piece + +1 +trigger-registration JSON key +- +keyagreement +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-keyagreement + +1 +- keyalgorithm dfn webcryptoapi @@ -2422,7 +2833,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-KeyAlgorithm -1 + 1 - keyboard @@ -2459,13 +2870,13 @@ https://w3c.github.io/aria/#dfn-keyboard-accessible - keyboard accessible dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-keyboard-accessible +https://w3c.github.io/aria/#dfn-keyboard-accessible + -1 - keyboard accessible dfn @@ -2496,6 +2907,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-keyboard-accessible +- +keyboard accessible +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-keyboard-accessible + + - keyboard lock task queue dfn @@ -2786,6 +3207,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#keyframe-specific-composite-operation +1 +- +keyframe-specific easing function +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#keyframe-specific-easing-function + 1 - keyframes @@ -2816,10 +3247,10 @@ web-animations-1 web-animations 1 current -https://drafts.csswg.org/web-animations-1/#dom-keyframeeffect-setkeyframes-keyframes +https://drafts.csswg.org/web-animations-1/#dom-keyframeeffect-keyframes 1 1 -KeyframeEffect/setKeyframes +KeyframeEffect - keyframes argument @@ -2971,6 +3402,28 @@ https://w3c.github.io/push-api/#dom-pushsubscriptionjson-keys PushSubscriptionJSON - keys +argument +managed-configuration +managed-configuration +1 +current +https://wicg.github.io/WebApiDevice/managed_config/#dom-navigatormanageddata-getmanagedconfiguration-keys-keys +1 +1 +NavigatorManagedData/getManagedConfiguration(keys) +- +keys +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-keys + +1 +trusted bidding signals batcher +- +keys dfn indexeddb-3 indexeddb @@ -2998,7 +3451,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.keys +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.keys 1 1 %TypedArray% @@ -3060,6 +3513,17 @@ CacheStorage - keys() method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-keys +1 +1 +StorageBucketManager +- +keys() +method service-workers service-workers 1 @@ -3146,47 +3610,25 @@ https://svgwg.org/specs/animations/#KeySplinesAttribute 1 animate - -keystatuses -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-keystatuses - -1 -mediakeysession -- keystatuseschange dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dom-evt-keystatuseschange +https://w3c.github.io/encrypted-media/#dfn-keystatuseschange - keystatuseschange dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-evt-keystatuseschange +https://www.w3.org/TR/encrypted-media-2/#dfn-keystatuseschange -- -keysystem -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess-keysystem - -1 -mediakeysystemaccess - keytimes element-attr @@ -3384,6 +3826,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-keyword-source 1 +1 +- +keyword-source +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-keyword-source + 1 - keyword-source diff --git a/bikeshed/spec-data/readonly/anchors/anchors-kh.data b/bikeshed/spec-data/readonly/anchors/anchors-kh.data index f24dcd7b7b..84042aef27 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-kh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-kh.data @@ -40,6 +40,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-khaki 1 1 <color> +<named-color> - khaki dfn @@ -61,6 +62,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-khaki 1 1 <color> +<named-color> - khmer value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ki.data b/bikeshed/spec-data/readonly/anchors/anchors-ki.data index c1553a9722..c0054ce5a1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ki.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ki.data @@ -60,7 +60,7 @@ input-events snapshot https://www.w3.org/TR/input-events-2/#dfn-kill-buffer - +1 - kin dfn @@ -84,6 +84,17 @@ https://fs.spec.whatwg.org/#dom-filesystemhandle-kind FileSystemHandle - kind +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#locator-kind +1 +1 +file system locator +- +kind attribute html html @@ -198,17 +209,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-kind -1 -1 -RTCInboundRtpStreamStats -- -kind -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcmediasourcestats-kind 1 1 @@ -220,17 +220,6 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-kind -1 - -RTCMediaStreamTrackStats -- -kind -dict-member -webrtc-stats -webrtc-stats -1 -current https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-kind 1 1 @@ -341,17 +330,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-kind -1 -1 -RTCInboundRtpStreamStats -- -kind -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcmediasourcestats-kind 1 1 @@ -363,17 +341,6 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-kind -1 - -RTCMediaStreamTrackStats -- -kind -dict-member -webrtc-stats -webrtc-stats -1 -snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcrtpstreamstats-kind 1 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-kn.data b/bikeshed/spec-data/readonly/anchors/anchors-kn.data index 5a15ea70db..9277a74af7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-kn.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-kn.data @@ -66,6 +66,16 @@ writing-system - known dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-known + +1 +- +known +dfn css-text-3 css-text 3 @@ -86,23 +96,105 @@ https://www.w3.org/TR/css-text-4/#writing-system-known 1 writing-system - -known prompt handling approaches table +known +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-known + +1 +- +known attributes +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#known-attributes + +1 +- +known concept +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_known_concept + +1 +- +known elements +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#known-elements + +1 +- +known key +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-known + +1 +- +known key +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-known + +1 +- +known prompt handlers dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-known-prompt-handling-approaches-table +https://w3c.github.io/webdriver/#dfn-known-prompt-handlers 1 - -known prompt handling approaches table +known prompt handlers dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-known-prompt-handling-approaches-table +https://www.w3.org/TR/webdriver2/#dfn-known-prompt-handlers 1 - +knownSources +attribute +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dom-pressureobserver-knownsources +1 +1 +PressureObserver +- +knownSources +attribute +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dom-pressureobserver-knownsources +1 +1 +PressureObserver +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-l1.data b/bikeshed/spec-data/readonly/anchors/anchors-l1.data index 50b3fbb0d3..4e7b593e77 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-l1.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-l1.data @@ -58,23 +58,3 @@ https://www.w3.org/TR/webrtc-svc/#dfn-l1t3 1 1 - -l10n -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_localization -1 - -- -l10n -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_localization -1 - -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-l2.data b/bikeshed/spec-data/readonly/anchors/anchors-l2.data index 362caa4ec0..06681bb572 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-l2.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-l2.data @@ -252,3 +252,13 @@ https://w3c.github.io/rdf-semantics/spec/#dfn-l2v 1 - +l2v +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-l2v + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-l_.data b/bikeshed/spec-data/readonly/anchors/anchors-l_.data index 4a70d700da..3f49be1294 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-l_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-l_.data @@ -233,3 +233,128 @@ https://www.w3.org/TR/css-color-5/#valdef-oklch-l 1 oklch() - +l +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl-h-s-l-alpha-l +1 +1 +CSSHSL/CSSHSL(h, s, l, alpha) +CSSHSL/constructor(h, s, l, alpha) +CSSHSL/CSSHSL(h, s, l) +CSSHSL/constructor(h, s, l) +- +l +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-l +1 +1 +CSSHSL +- +l +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-csslab-l-a-b-alpha-l +1 +1 +CSSLab/CSSLab(l, a, b, alpha) +CSSLab/constructor(l, a, b, alpha) +CSSLab/CSSLab(l, a, b) +CSSLab/constructor(l, a, b) +- +l +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslab-l +1 +1 +CSSLab +- +l +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-csslch-l-c-h-alpha-l +1 +1 +CSSLCH/CSSLCH(l, c, h, alpha) +CSSLCH/constructor(l, c, h, alpha) +CSSLCH/CSSLCH(l, c, h) +CSSLCH/constructor(l, c, h) +- +l +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csslch-l +1 +1 +CSSLCH +- +l +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-cssoklab-l-a-b-alpha-l +1 +1 +CSSOKLab/CSSOKLab(l, a, b, alpha) +CSSOKLab/constructor(l, a, b, alpha) +CSSOKLab/CSSOKLab(l, a, b) +CSSOKLab/constructor(l, a, b) +- +l +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklab-l +1 +1 +CSSOKLab +- +l +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-cssoklch-l-c-h-alpha-l +1 +1 +CSSOKLCH/CSSOKLCH(l, c, h, alpha) +CSSOKLCH/constructor(l, c, h, alpha) +CSSOKLCH/CSSOKLCH(l, c, h) +CSSOKLCH/constructor(l, c, h) +- +l +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssoklch-l +1 +1 +CSSOKLCH +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-la.data b/bikeshed/spec-data/readonly/anchors/anchors-la.data index ee48170ca9..2dad8af133 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-la.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-la.data @@ -52,6 +52,26 @@ https://drafts.csswg.org/selectors-3/#sel-lang 1 - :lang +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x41 +1 +1 +- +:lang +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x41 +1 +1 +- +:lang selector selectors-3 selectors @@ -181,27 +201,45 @@ https://www.w3.org/TR/selectors-4/#last-of-type-pseudo 1 1 - -<lang> -type -css-text-4 -css-text +<lambda> +dfn +mathml4 +mathml 4 current -https://drafts.csswg.org/css-text-4/#typedef-word-boundary-detection-lang -1 +https://w3c.github.io/mathml/#contm_lambda + 1 -word-boundary-detection - -<lang> -type -css-text-4 -css-text +<lambda> +dfn +mathml4 +mathml 4 snapshot -https://www.w3.org/TR/css-text-4/#typedef-word-boundary-detection-lang +https://www.w3.org/TR/mathml4/#contm_lambda + +1 +- +<laplacian/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_laplacian + 1 +- +<laplacian/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_laplacian + 1 -word-boundary-detection - <layer-name> type @@ -665,8 +703,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-lastcreatedanswer + 1 -1 +RTCPeerConnection - [[LastCreatedOffer]] attribute @@ -686,8 +725,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-lastcreatedoffer + 1 -1 +RTCPeerConnection - [[LastRecordMap]] attribute @@ -729,8 +769,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-lastreturnedparameters + 1 -1 +RTCRtpSender - [[LastStableRidlessSendEncodings]] attribute @@ -740,6 +781,17 @@ webrtc current https://w3c.github.io/webrtc-pc/#dfn-laststableridlesssendencodings +1 +RTCRtpSender +- +[[LastStableRidlessSendEncodings]] +attribute +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dfn-laststableridlesssendencodings + 1 RTCRtpSender - @@ -761,8 +813,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-laststablestateassociatedremotemediastreams + 1 -1 +RTCRtpReceiver - [[LastStableStateReceiveCodecs]] attribute @@ -782,8 +835,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-laststablestatereceivecodecs + 1 -1 +RTCRtpReceiver - [[LastStableStateReceiverTransport]] attribute @@ -803,8 +857,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-laststablestatereceivertransport + 1 -1 +RTCRtpReceiver - [[LastStableStateSenderTransport]] attribute @@ -824,8 +879,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-laststablestatesendertransport + 1 -1 +RTCRtpSender - [[lastEventFiredAt]] attribute @@ -1333,9 +1389,9 @@ menu - label dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-label 1 @@ -1409,7 +1465,7 @@ MediaStreamTrack - label dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -1420,6 +1476,17 @@ PaymentItem - label dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingoption-label +1 +1 +PaymentShippingOption +- +label +dict-member webcryptoapi webcryptoapi 1 @@ -1453,27 +1520,49 @@ RTCDataChannelStats - label attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-label +https://w3c.github.io/window-management/#dom-screendetailed-label 1 1 ScreenDetailed - label dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-label +https://w3c.github.io/window-management/#screen-label 1 screen - label +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperatoroptions-label +1 +1 +MLOperatorOptions +- +label +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#operator-label + +1 +operator +- +label dfn prefetch prefetch @@ -1491,19 +1580,19 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaOaepParams-label -1 + 1 - label -dfn -encrypted-media +dict-member +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-label - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-label 1 -mediakeysystemconfiguration +1 +MediaKeySystemConfiguration - label dfn @@ -1561,16 +1650,27 @@ MediaStreamTrack - label dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-label +https://www.w3.org/TR/payment-request/#dom-paymentitem-label 1 1 PaymentItem - label +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-label +1 +1 +PaymentShippingOption +- +label attribute webgpu webgpu @@ -1594,6 +1694,28 @@ GPUObjectDescriptorBase - label dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperatoroptions-label +1 +1 +MLOperatorOptions +- +label +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#operator-label + +1 +operator +- +label +dict-member webrtc-stats webrtc-stats 1 @@ -1616,22 +1738,22 @@ RTCDataChannel - label attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-label +https://www.w3.org/TR/window-management/#dom-screendetailed-label 1 1 ScreenDetailed - label dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-label +https://www.w3.org/TR/window-management/#screen-label 1 screen @@ -1706,23 +1828,13 @@ https://w3c.github.io/aria/#dfn-landmark - landmark dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-landmark +https://w3c.github.io/aria/#dfn-landmark -1 -- -landmark -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-landmark -1 - landmark dfn @@ -1764,15 +1876,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-landmark - -landmarks +landmark dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-landmark +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-landmark + -1 - landmarks dfn @@ -1807,11 +1919,11 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-landmark - landscape value -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#valdef-container-orientation-landscape +https://drafts.csswg.org/css-conditional-5/#valdef-container-orientation-landscape 1 1 @container/orientation @@ -1882,6 +1994,17 @@ OrientationLockType - landscape value +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#valdef-container-orientation-landscape +1 +1 +@container/orientation +- +landscape +value css-contain-3 css-contain 3 @@ -2318,6 +2441,26 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-lang +1 +- +lang (pseudo-class) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x41 +1 +1 +- +lang (pseudo-class) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x41 +1 1 - language @@ -2413,16 +2556,6 @@ https://notifications.spec.whatwg.org/#concept-language 1 notification -- -language -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_natural_language -1 - - language attribute @@ -2437,13 +2570,13 @@ RdfLiteral - language dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_natural_language +pub-manifest +pub-manifest 1 +current +https://w3c.github.io/pub-manifest/#dfn-language +1 - language attribute @@ -2456,6 +2589,36 @@ https://www.w3.org/TR/json-ld11-api/#dom-rdfliteral-language 1 RdfLiteral - +language +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-language + +1 +- +language extension +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#language-extension + +1 +- +language extension +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#language-extension + +1 +- language map dfn json-ld11 @@ -2502,7 +2665,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_metadata +https://w3c.github.io/i18n-glossary/#dfn-language-metadata 1 - @@ -2512,17 +2675,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_metadata -1 - -- -language negotiation -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn-language-negotiation +https://www.w3.org/TR/i18n-glossary/#dfn-language-metadata 1 - @@ -2546,15 +2699,15 @@ https://www.w3.org/TR/i18n-glossary/#dfn-language-negotiation 1 - -language negotiation +language priority list dfn -i18n-glossary -i18n-glossary +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#language-priority-list 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-language-negotiation 1 - - language priority list dfn @@ -2562,7 +2715,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_priority_list +https://w3c.github.io/i18n-glossary/#dfn-language-priority-list 1 - @@ -2572,7 +2725,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_priority_list +https://www.w3.org/TR/i18n-glossary/#dfn-language-priority-list 1 - @@ -2592,27 +2745,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_range -1 - -- -language range -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_range -1 - -- -language range -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_range +https://w3c.github.io/i18n-glossary/#dfn-language-range 1 - @@ -2622,7 +2755,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_range +https://www.w3.org/TR/i18n-glossary/#dfn-language-range 1 - @@ -2636,33 +2769,13 @@ https://www.w3.org/TR/selectors-4/#language-range 1 - -language ranges +language subtag dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_range -1 - -- -language ranges -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_range -1 - -- -language subtag -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_subtag +https://w3c.github.io/i18n-glossary/#dfn-language-subtag 1 - @@ -2672,7 +2785,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_subtag +https://www.w3.org/TR/i18n-glossary/#dfn-language-subtag 1 - @@ -2682,17 +2795,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_tag -1 - -- -language tag -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_tag +https://w3c.github.io/i18n-glossary/#dfn-language-tag 1 - @@ -2742,29 +2845,19 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag +https://www.w3.org/TR/i18n-glossary/#dfn-language-tag 1 - language tag dfn -i18n-glossary -i18n-glossary +rdf12-concepts +rdf-concepts 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag -1 +https://www.w3.org/TR/rdf12-concepts/#dfn-language-tag -- -language tag extension -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_tag_extension 1 - - language tag extension dfn @@ -2772,17 +2865,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_tag_extension -1 - -- -language tag extension -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag_extension +https://w3c.github.io/i18n-glossary/#dfn-language-tag-extension 1 - @@ -2792,57 +2875,47 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag_extension +https://www.w3.org/TR/i18n-glossary/#dfn-language-tag-extension 1 - -language tags +language-range dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_language_tag +https://w3c.github.io/i18n-glossary/#dfn-language-range 1 - -language tags +language-range dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag +https://www.w3.org/TR/i18n-glossary/#dfn-language-range 1 - -language-range +language-tagged string dfn -i18n-glossary -i18n-glossary +rdf12-concepts +rdf-concepts 1 current -https://w3c.github.io/i18n-glossary/#def_language_range -1 +https://w3c.github.io/rdf-concepts/spec/#dfn-language-tagged-string -- -language-range -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_range 1 - - language-tagged string dfn rdf12-concepts rdf-concepts 1 -current -https://w3c.github.io/rdf-concepts/spec/#dfn-language-tagged-string +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-language-tagged-string 1 - @@ -2869,6 +2942,17 @@ https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-languages 1 NavigatorLanguage - +languages +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingmodelconstraint-languages +1 +1 +HandwritingModelConstraint +- lao value css-counter-styles-3 @@ -3099,6 +3183,38 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-largeop +1 +embellished operator +- +largeop +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-largeop-0 +1 +1 +mo +- +largest contentful paint candidate +dfn +largest-contentful-paint +largest-contentful-paint +1 +current +https://w3c.github.io/largest-contentful-paint/#largest-contentful-paint-candidate + +1 +- +largest contentful paint candidate +dfn +largest-contentful-paint +largest-contentful-paint +1 +snapshot +https://www.w3.org/TR/largest-contentful-paint/#largest-contentful-paint-candidate + 1 - largest contentful paint size @@ -3314,16 +3430,6 @@ css-align snapshot https://www.w3.org/TR/css-align-3/#last-baseline-set 1 -1 -- -last baseline set -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-last-baseline-set - 1 - last baselines @@ -3485,6 +3591,16 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#last-frame-duration +1 +- +last history-action activation timestamp +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#last-history-action-activation-timestamp + 1 - last idle period start time @@ -3497,6 +3613,17 @@ https://html.spec.whatwg.org/multipage/webappapis.html#last-idle-period-start-ti 1 - +last interaction task id +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#document-last-interaction-task-id + +1 +document +- last line dfn sms-one-time-codes @@ -3525,6 +3652,106 @@ css-flexbox snapshot https://www.w3.org/TR/css-flexbox-1/#main-axis-baseline 1 +1 +- +last modification date +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-last-modification-date + +1 +- +last modification date +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-last-modification-date + +1 +- +last mouse dom path +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#last-mouse-dom-path + +1 +- +last mouse dom path +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#last-mouse-dom-path + +1 +- +last mouse element +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#last-mouse-element + +1 +- +last mouse element +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#last-mouse-element + +1 +- +last mouse move +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#last-mouse-move + +1 +- +last mouse move +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#last-mouse-move + +1 +- +last performance entry id +dfn +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dfn-last-performance-entry-id + +1 +- +last performance entry id +dfn +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dfn-last-performance-entry-id + 1 - last position updated time @@ -3547,13 +3774,13 @@ https://www.w3.org/TR/mediasession/#last-position-updated-time 1 - -last presented frame indentifier +last presented frame identifier dfn video-rvfc video-rvfc 1 current -https://wicg.github.io/video-rvfc/#last-presented-frame-indentifier +https://wicg.github.io/video-rvfc/#last-presented-frame-identifier 1 - @@ -3615,6 +3842,26 @@ html current https://html.spec.whatwg.org/multipage/images.html#last-selected-source +1 +- +last successful position option +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#last-successful-position-option +1 +1 +- +last successful position option +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#last-successful-position-option + 1 - last update check time @@ -3639,6 +3886,28 @@ https://www.w3.org/TR/service-workers/#dfn-last-update-check-time 1 service worker registration - +last updated +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#value-struct-last-updated + +1 +value struct +- +last updated +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-last-updated + +1 +interest group +- last usable css region dfn css-regions-1 @@ -3772,6 +4041,17 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vevent-last-modified 1 - +last-opened window +dfn +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#documentpictureinpicture-last-opened-window + +1 +DocumentPictureInPicture +- lastChance attribute background-sync @@ -3794,6 +4074,28 @@ https://wicg.github.io/background-sync/spec/#dom-synceventinit-lastchance 1 SyncEventInit - +lastChangedTime +attribute +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplane-lastchangedtime +1 +1 +XRPlane +- +lastChangedTime +attribute +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#dom-xrmesh-lastchangedtime +1 +1 +XRMesh +- lastChild attribute dom @@ -3816,6 +4118,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-lastchild 1 GroupEffect - +lastChild +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-lastchild +1 +1 +GroupEffect +- lastChild() method dom @@ -3910,7 +4223,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.lastindexof +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.lastindexof 1 1 %TypedArray% @@ -4003,17 +4316,6 @@ https://www.w3.org/TR/FileAPI/#dfn-lastModified 1 File - -lastModified -attribute -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-lastmodified -1 -1 -ClipboardItem -- lastPacketReceivedTimestamp dict-member webrtc-stats @@ -4102,6 +4404,39 @@ https://www.w3.org/TR/resize-observer-1/#dom-resizeobservation-lastreportedsizes 1 ResizeObservation - +lastUpdateTime +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverregistration-lastupdatetime +1 +1 +IntersectionObserverRegistration +- +lastentryindex +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#entrymaprecord-lastentryindex + +1 +EntryMapRecord +- +lastentryindex +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#entrymaprecord-lastentryindex + +1 +EntryMapRecord +- latency dfn mediacapture-streams @@ -4210,6 +4545,17 @@ https://www.w3.org/TR/mediacapture-streams/#dom-mediatracksupportedconstraints-l 1 MediaTrackSupportedConstraints - +latency threshold +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#real-time-reporting-contribution-latency-threshold + +1 +real time reporting contribution +- latencyHint dict-member webaudio @@ -4254,6 +4600,17 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-latencymode 1 VideoEncoderConfig - +latencyThreshold +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-realtimecontribution-latencythreshold +1 +1 +RealTimeContribution +- latest entry dfn html @@ -4304,27 +4661,27 @@ https://www.w3.org/TR/generic-sensor/#latest-reading 1 - -latitude -attribute -geolocation -geolocation +latest sample +dfn +compute-pressure +compute-pressure 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-latitude -1 +https://w3c.github.io/compute-pressure/#dfn-latest-sample + 1 -GeolocationCoordinates +pressure source - -latitude -dict-member -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-latitude +latest sample +dfn +compute-pressure +compute-pressure 1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-latest-sample + 1 -GeolocationReadingValues +pressure source - latitude attribute @@ -4349,15 +4706,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-latitude GeolocationSensorReading - latitude -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-latitude +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-latitude 1 1 -GeolocationReadingValues +GeolocationCoordinates - latitude attribute @@ -4632,6 +4989,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lavender 1 1 <color> +<named-color> - lavender dfn @@ -4653,6 +5011,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lavender 1 1 <color> +<named-color> - lavenderblush dfn @@ -4674,6 +5033,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lavenderblush 1 1 <color> +<named-color> - lavenderblush dfn @@ -4695,6 +5055,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lavenderblush 1 1 <color> +<named-color> - lawngreen dfn @@ -4716,6 +5077,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lawngreen 1 1 <color> +<named-color> - lawngreen dfn @@ -4737,6 +5099,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lawngreen 1 1 <color> +<named-color> - layer attribute @@ -4878,11 +5241,11 @@ XRWebGLLayer/constructor(session, context) - layerName attribute -css-cascade-5 -css-cascade -5 +cssom-1 +cssom +1 current -https://drafts.csswg.org/css-cascade-5/#dom-cssimportrule-layername +https://drafts.csswg.org/cssom-1/#dom-cssimportrule-layername 1 1 CSSImportRule @@ -4898,6 +5261,104 @@ https://www.w3.org/TR/css-cascade-5/#dom-cssimportrule-layername 1 CSSImportRule - +layerNormalization(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-layernormalization +1 +1 +MLGraphBuilder +- +layerNormalization(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization +1 +1 +MLGraphBuilder +- +layerNormalization(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-layernormalization +1 +1 +MLGraphBuilder +- +layerNormalization(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization +1 +1 +MLGraphBuilder +- +layerX +attribute +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-mouseevent-layerx +1 +1 +MouseEvent +- +layerX +attribute +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-mouseevent-layerx +1 +1 +MouseEvent +- +layerY +attribute +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-mouseevent-layery +1 +1 +MouseEvent +- +layerY +attribute +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-mouseevent-layery +1 +1 +MouseEvent +- +layer_size +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#layer_size + +1 +- layers attribute webxrlayers-1 @@ -5027,17 +5488,6 @@ https://drafts.csswg.org/css-contain-2/#valdef-contain-layout contain - layout -value -css-display-4 -css-display -4 -current -https://drafts.csswg.org/css-display-4/#valdef-order-layout -1 -1 -order -- -layout dict-member webgpu webgpu @@ -5825,16 +6275,6 @@ css-layout-api snapshot https://www.w3.org/TR/css-layout-api-1/#layout-invalid -1 -- -layout-order -property -css-display-4 -css-display -4 -current -https://drafts.csswg.org/css-display-4/#propdef-layout-order -1 1 - layout-valid @@ -5976,7 +6416,7 @@ https://html.spec.whatwg.org/multipage/urls-and-fetching.html#lazy-load-resumpti 1 - -lazy load root margin +lazy load scroll margin dfn html html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lc.data b/bikeshed/spec-data/readonly/anchors/anchors-lc.data index 842bbb8560..a1b1fbf83e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lc.data @@ -1,3 +1,23 @@ +<lcm/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_lcm + +1 +- +<lcm/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_lcm + +1 +- lch value css-color-4 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-le.data b/bikeshed/spec-data/readonly/anchors/anchors-le.data index 08374f9360..3f68e7b1a5 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-le.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-le.data @@ -174,6 +174,26 @@ https://drafts.csswg.org/css2/#selectordef-left 1 - :left +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x6 +1 +1 +- +:left +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x6 +1 +1 +- +:left value css-page-3 css-page @@ -227,6 +247,26 @@ clip - <left> type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#value-def-left +1 +1 +- +<left> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#value-def-left +1 +1 +- +<left> +type css-masking-1 css-masking 1 @@ -236,6 +276,26 @@ https://www.w3.org/TR/css-masking-1/#typedef-clip-left 1 clip - +<legacy-device-cmyk-syntax> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-legacy-device-cmyk-syntax +1 +1 +- +<legacy-device-cmyk-syntax> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-legacy-device-cmyk-syntax +1 +1 +- <legacy-hsl-syntax> type css-color-4 @@ -246,6 +306,16 @@ https://drafts.csswg.org/css-color-4/#typedef-legacy-hsl-syntax 1 1 - +<legacy-hsl-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-legacy-hsl-syntax +1 +1 +- <legacy-hsla-syntax> type css-color-4 @@ -256,6 +326,16 @@ https://drafts.csswg.org/css-color-4/#typedef-legacy-hsla-syntax 1 1 - +<legacy-hsla-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-legacy-hsla-syntax +1 +1 +- <legacy-pseudo-element-selector> type selectors-4 @@ -276,6 +356,16 @@ https://drafts.csswg.org/css-color-4/#typedef-legacy-rgb-syntax 1 1 - +<legacy-rgb-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-legacy-rgb-syntax +1 +1 +- <legacy-rgba-syntax> type css-color-4 @@ -286,16 +376,39 @@ https://drafts.csswg.org/css-color-4/#typedef-legacy-rgba-syntax 1 1 - +<legacy-rgba-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-legacy-rgba-syntax +1 +1 +- <length [0,∞]> value css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-0 +https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-0 +1 +1 +<radial-size> +radial-gradient() +repeating-radial-gradient() +- +<length [0,∞]> +value +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#valdef-radial-size-length-0 1 1 -<rg-size> +<radial-size> radial-gradient() repeating-radial-gradient() - @@ -305,13 +418,37 @@ css-images-3 css-images 3 current -https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-percentage-0-2 +https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-percentage-0-2 1 1 -<rg-size> +<radial-size> radial-gradient() repeating-radial-gradient() - +<length-percentage [0,∞]>{2} +value +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#valdef-radial-size-length-percentage-0-2 +1 +1 +<radial-size> +radial-gradient() +repeating-radial-gradient() +- +<length-percentage> +value +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#valdef-letter-spacing-length-percentage +1 +1 +letter-spacing +- <length-percentage> value css-text-4 @@ -349,6 +486,17 @@ css-text-4 css-text 4 snapshot +https://www.w3.org/TR/css-text-4/#valdef-letter-spacing-length-percentage +1 +1 +letter-spacing +- +<length-percentage> +value +css-text-4 +css-text +4 +snapshot https://www.w3.org/TR/css-text-4/#valdef-word-spacing-length-percentage 1 1 @@ -396,17 +544,6 @@ https://www.w3.org/TR/fill-stroke-3/#valdef-stroke-dasharray-length-percentage 1 stroke-dasharray - -<length-percentage>{2} -value -css-images-3 -css-images -3 -snapshot -https://www.w3.org/TR/css-images-3/#valdef-size-length-percentage2 -1 -1 -<size> -- <length> value css-position-3 @@ -467,17 +604,6 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-letter-spacing-length -1 -1 -letter-spacing -- -<length> -value -css-text-4 -css-text -4 -current https://drafts.csswg.org/css-text-4/#valdef-text-indent-length 1 1 @@ -566,15 +692,24 @@ https://drafts.csswg.org/css2/#value-def-length 1 - <length> -value -css-images-3 -css-images -3 +type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-length +1 +1 +- +<length> +type +css2 +css +1 snapshot -https://www.w3.org/TR/css-images-3/#valdef-size-length +https://www.w3.org/TR/CSS21/syndata.html#value-def-length 1 1 -<size> - <length> value @@ -636,17 +771,6 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-letter-spacing-length -1 -1 -letter-spacing -- -<length> -value -css-text-4 -css-text -4 -snapshot https://www.w3.org/TR/css-text-4/#valdef-text-indent-length 1 1 @@ -670,6 +794,26 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#length-value 1 +1 +- +<leq/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_leq + +1 +- +<leq/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_leq + 1 - @left-bottom @@ -798,6 +942,16 @@ https://www.w3.org/TR/SVG2/text.html#__svg__SVGTextContentElement__LENGTHADJUST_ 1 SVGTextContentElement - +LeaveCriticalSection +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-leavecriticalsection +1 +1 +- LeaveCriticalSection(WL) abstract-op ecmascript @@ -928,6 +1082,16 @@ https://webidl.spec.whatwg.org/#LegacyWindowAlias 1 1 - +LengthOfArrayLike +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-lengthofarraylike +1 +1 +- LengthOfArrayLike(obj) abstract-op ecmascript @@ -982,6 +1146,50 @@ https://www.w3.org/TR/webaudio/#dom-audiobuffer-length-slot 1 AudioBuffer - +_less_than +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_less_than + +1 +syntax_sym +- +_less_than +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_less_than + +1 +syntax_sym +- +_less_than_equal +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_less_than_equal + +1 +syntax_sym +- +_less_than_equal +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_less_than_equal + +1 +syntax_sym +- le bonding procedure dfn web-bluetooth @@ -1036,16 +1244,6 @@ https://www.w3.org/TR/css-content-3/#funcdef-leader 1 1 - -leader() -function -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#funcdef-leader -1 -1 -- leading dfn css-inline-3 @@ -1073,10 +1271,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-leading +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-leading 1 1 -text-edge +line-fit-edge +<<text-edge>> - leading dfn @@ -1105,10 +1304,53 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-leading +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-leading +1 +1 +line-fit-edge +<<text-edge>> +- +leading bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-leading-bid + +1 +leading bid info +- +leading bid info +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info + +1 +- +leading non-k-anon-enforced bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-leading-non-k-anon-enforced-bid + +1 +leading bid info +- +leading surrogate +dfn +infra +infra +1 +current +https://infra.spec.whatwg.org/#leading-surrogate 1 1 -text-edge - leading surrogate dfn @@ -1132,26 +1374,6 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#leading- 1 ECMAScript - -leading-trim -property -css-inline-3 -css-inline -3 -current -https://drafts.csswg.org/css-inline-3/#propdef-leading-trim -1 -1 -- -leading-trim -property -css-inline-3 -css-inline -3 -snapshot -https://www.w3.org/TR/css-inline-3/#propdef-leading-trim -1 -1 -- leaf dfn webpackage @@ -1163,103 +1385,113 @@ https://wicg.github.io/webpackage/loading.html#certificate-chain-leaf 1 certificate chain - -leakyRelu() +leakyRelu(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu 1 1 MLGraphBuilder - -leakyRelu() +leakyRelu(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu 1 1 MLGraphBuilder - -leakyRelu(options) +leakyRelu(input, options) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu 1 1 MLGraphBuilder - -leakyRelu(options) +leakyRelu(input, options) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu 1 1 MLGraphBuilder - -leakyRelu(x) -method -webnn -webnn +lean +dfn +rdf12-semantics +rdf-semantics 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu -1 +https://w3c.github.io/rdf-semantics/spec/#dfn-lean + 1 -MLGraphBuilder - -leakyRelu(x) -method -webnn -webnn +lean +dfn +rdf12-semantics +rdf-semantics 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu +https://www.w3.org/TR/rdf12-semantics/#dfn-lean + +1 +- +least relation +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#least-relation 1 1 -MLGraphBuilder +ECMAScript - -leakyRelu(x, options) -method -webnn -webnn +leave +enum-value +web-smart-card +web-smart-card 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu +https://wicg.github.io/web-smart-card/#dom-smartcarddisposition-leave 1 1 -MLGraphBuilder +SmartCardDisposition - -leakyRelu(x, options) +leaveAdInterestGroup() method -webnn -webnn +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu +current +https://wicg.github.io/turtledove/#dom-navigator-leaveadinterestgroup 1 1 -MLGraphBuilder +Navigator - -lean -dfn -rdf12-semantics -rdf-semantics +leaveAdInterestGroup(group) +method +turtledove +turtledove 1 current -https://w3c.github.io/rdf-semantics/spec/#dfn-lean - +https://wicg.github.io/turtledove/#dom-navigator-leaveadinterestgroup 1 +1 +Navigator - leavepictureinpicture event @@ -1319,6 +1551,17 @@ justify-self justify-items - left +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-left +1 +1 +CSSPositionTryDescriptors +- +left value css-anchor-position-1 css-anchor-position @@ -1331,6 +1574,18 @@ anchor() - left value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-left +1 +1 +position-area +<position-area> +- +left +value css-backgrounds-3 css-backgrounds 3 @@ -1342,11 +1597,11 @@ background-position - left value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-border-limit-left +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-left 1 1 border-limit @@ -1693,16 +1948,36 @@ VideoFacingModeEnum - left attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-left +https://w3c.github.io/window-management/#dom-screendetailed-left 1 1 ScreenDetailed - left +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-left +1 +1 +- +left +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-left +1 +1 +- +left dfn css22 css @@ -1727,6 +2002,29 @@ justify-items - left value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-left +1 +1 +anchor() +- +left +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-left +1 +1 +inset-area +<inset-area> +- +left +value css-backgrounds-3 css-backgrounds 3 @@ -1990,11 +2288,11 @@ AlignSetting - left attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-left +https://www.w3.org/TR/window-management/#dom-screendetailed-left 1 1 ScreenDetailed @@ -2061,6 +2359,48 @@ https://www.w3.org/TR/WGSL/#left-hand-side 1 - +left-to-right +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-left-to-right +1 + +- +left-to-right +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-left-to-right +1 + +- +leftTrigger +dict-member +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-lefttrigger +1 +1 +GamepadEffectParameters +- +leftTrigger +dict-member +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters-lefttrigger +1 +1 +GamepadEffectParameters +- leftmargin element-attr html @@ -2187,36 +2527,6 @@ current https://webidl.spec.whatwg.org/#dfn-legacy-callback-interface-object 1 1 -- -legacy character encoding -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_legacy_character_encoding -1 - -- -legacy character encoding -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_legacy_character_encoding -1 - -- -legacy character encodings -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_legacy_character_encoding -1 - - legacy character encodings dfn @@ -2224,7 +2534,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_legacy_character_encoding +https://w3c.github.io/i18n-glossary/#dfn-legacy-character-encodings 1 - @@ -2234,17 +2544,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_legacy_character_encoding -1 - -- -legacy character encodings -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_legacy_character_encoding +https://www.w3.org/TR/i18n-glossary/#dfn-legacy-character-encodings 1 - @@ -2451,15 +2751,25 @@ current https://dom.spec.whatwg.org/#eventtarget-legacy-canceled-activation-behavior 1 1 -EventTarget +EventTarget +- +legacy-clone a traversable storage shed +dfn +storage +storage +1 +current +https://storage.spec.whatwg.org/#legacy-clone-a-traversable-storage-shed +1 +1 - -legacy-clone a traversable storage shed +legacy-obtain service worker fetch event listener callbacks dfn -storage -storage +dom +dom 1 current -https://storage.spec.whatwg.org/#legacy-clone-a-traversable-storage-shed +https://dom.spec.whatwg.org/#legacy-obtain-service-worker-fetch-event-listener-callbacks 1 1 - @@ -2566,6 +2876,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lemonchiffon 1 1 <color> +<named-color> - lemonchiffon dfn @@ -2587,6 +2898,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lemonchiffon 1 1 <color> +<named-color> - length dfn @@ -3091,51 +3403,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-constructor-length -1 -1 -AsyncFunction -- -length -attribute -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-length -1 -1 -AsyncGeneratorFunction -- -length -attribute -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction.length -1 -1 -GeneratorFunction -- -length -attribute -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function.length -1 -1 -Function -- -length -attribute -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.length +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.length 1 1 %TypedArray% @@ -3152,6 +3420,16 @@ https://w3c.github.io/FileAPI/#dfn-length FileList - length +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-length + +1 +- +length attribute media-source-2 media-source @@ -3422,30 +3700,52 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesCtrParams-length + +1 +- +length +attribute +css-animations-1 +css-animations +1 +snapshot +https://www.w3.org/TR/css-animations-1/#dom-csskeyframesrule-length 1 1 +CSSKeyframesRule - length attribute -css-typed-om-1 -css-typed-om +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacepalette-length 1 +1 +FontFacePalette +- +length +attribute +css-font-loading-3 +css-font-loading +3 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericarray-length +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacepalettes-length 1 1 -CSSNumericArray +FontFacePalettes - length -enum-value +attribute css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-length +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericarray-length 1 1 -CSSNumericBaseType +CSSNumericArray - length dict-member @@ -3468,6 +3768,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssperspective-cssperspective-length-l 1 1 CSSPerspective/CSSPerspective(length) +CSSPerspective/constructor(length) - length attribute @@ -3558,6 +3859,16 @@ https://www.w3.org/TR/geometry-1/#dom-domrectlist-length DOMRectList - length +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-length + +1 +- +length attribute media-source-2 media-source @@ -3581,6 +3892,17 @@ Table - length attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationnodelist-length +1 +1 +AnimationNodeList +- +length +attribute webaudio webaudio 1 @@ -3689,15 +4011,27 @@ https://www.w3.org/TR/webxr/#dom-xrinputsourcearray-length 1 XRInputSourceArray - -length-percentage +length limit dfn -mathml-core -mathml-core +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-length-percentage +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-length-limit 1 +trusted bidding signals batcher +- +length() +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-length +1 +1 +SharedStorage - lengthAdjust attribute @@ -3771,7 +4105,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenize-policy-lenient +https://urlpattern.spec.whatwg.org/#tokenize-policy-lenient 1 tokenize policy @@ -3800,11 +4134,11 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-prefers-contrast-less - less public dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#ip-address-space-less-public +https://wicg.github.io/private-network-access/#ip-address-space-less-public 1 1 IP address space @@ -3821,17 +4155,6 @@ https://w3c.github.io/IndexedDB/#less-than - less than dfn -scheduling-apis -scheduling-apis -1 -current -https://wicg.github.io/scheduling-apis/#taskpriority-less-than - -1 -TaskPriority -- -less than -dfn indexeddb-3 indexeddb 3 @@ -3884,6 +4207,94 @@ https://www.w3.org/TR/WGSL/#syntax_sym-less_than_equal 1 syntax_sym - +lesser(a, b) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lesser +1 +1 +MLGraphBuilder +- +lesser(a, b) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser +1 +1 +MLGraphBuilder +- +lesser(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lesser +1 +1 +MLGraphBuilder +- +lesser(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser +1 +1 +MLGraphBuilder +- +lesserOrEqual(a, b) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lesserorequal +1 +1 +MLGraphBuilder +- +lesserOrEqual(a, b) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal +1 +1 +MLGraphBuilder +- +lesserOrEqual(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lesserorequal +1 +1 +MLGraphBuilder +- +lesserOrEqual(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal +1 +1 +MLGraphBuilder +- let dfn wgsl @@ -4049,6 +4460,26 @@ https://drafts.csswg.org/css2/#propdef-letter-spacing 1 - letter-spacing +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-letter-spacing +1 +1 +- +letter-spacing +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-letter-spacing +1 +1 +- +letter-spacing dfn css22 css @@ -4188,6 +4619,26 @@ css snapshot https://www.w3.org/TR/css-2023/#levels 1 +1 +- +levels of detail +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#levels-of-detail + +1 +- +levels of detail +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#levels-of-detail + 1 - lexical form @@ -4218,6 +4669,16 @@ json-ld-api snapshot https://www.w3.org/TR/json-ld11-api/#dfn-lexical-form +1 +- +lexical form +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-lexical-form + 1 - lexical space @@ -4228,6 +4689,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-lexical-space +1 +- +lexical space +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-lexical-space + 1 - lexical-to-value mapping @@ -4238,6 +4709,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-lexical-to-value-mapping +1 +- +lexical-to-value mapping +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-lexical-to-value-mapping + 1 - lexicalenvironment @@ -4251,3 +4732,14 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#ta 1 ECMAScript Code Execution Contexts - +lexicographic code unit order +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#lexicographic-code-unit-order +1 +1 +ECMAScript +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lh.data b/bikeshed/spec-data/readonly/anchors/anchors-lh.data index 60764607f9..9710bf7340 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lh.data @@ -20,6 +20,17 @@ https://www.w3.org/TR/css-values-4/#lh 1 <length> - +lh unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#lh +1 +1 +<length> +- lh(value) method css-typed-om-1 @@ -86,3 +97,23 @@ https://www.w3.org/TR/WGSL/#syntax-lhs_expression 1 syntax - +lhsvalue +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#lhsvalue + +1 +- +lhsvalue +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#lhsvalue + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-li.data b/bikeshed/spec-data/readonly/anchors/anchors-li.data index 38b0c9c0e3..d70f45b5f1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-li.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-li.data @@ -218,28 +218,6 @@ https://www.w3.org/TR/webnn/#dom-mlinterpolationmode-linear 1 MLInterpolationMode - -"linear-acceleration" -enum-value -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensortype-linear-acceleration -1 -1 -MockSensorType -- -"linear-acceleration" -enum-value -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-linear-acceleration -1 -1 -MockSensorType -- :link selector css22 @@ -278,6 +256,26 @@ html current https://html.spec.whatwg.org/multipage/semantics-other.html#selector-link +1 +- +:link +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x26 +1 +1 +- +:link +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x26 +1 1 - :link @@ -298,6 +296,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#link-pseudo 1 +1 +- +<limit/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_limit + +1 +- +<limit/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_limit + 1 - <line-command> @@ -501,6 +519,36 @@ https://drafts.csswg.org/css-easing-2/#typedef-linear-easing-function 1 1 - +<linear-gradient-syntax> +type +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#typedef-linear-gradient-syntax +1 +1 +- +<linear-gradient-syntax> +type +css-images-4 +css-images +4 +current +https://drafts.csswg.org/css-images-4/#typedef-linear-gradient-syntax +1 +1 +- +<linear-gradient-syntax> +type +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#typedef-linear-gradient-syntax +1 +1 +- <linear-stop-length> type css-easing-2 @@ -552,6 +600,26 @@ https://drafts.csswg.org/css-link-params-1/#valdef-none-link-param 1 none - +<list> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_list + +1 +- +<list> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_list + +1 +- LifecycleError interface miniapp-lifecycle @@ -612,26 +680,6 @@ https://www.w3.org/TR/webvtt1/#typedefdef-lineandpositionsetting 1 1 - -LinearAccelerationReadingValues -dictionary -accelerometer -accelerometer -1 -current -https://w3c.github.io/accelerometer/#dictdef-linearaccelerationreadingvalues -1 -1 -- -LinearAccelerationReadingValues -dictionary -accelerometer -accelerometer -1 -snapshot -https://www.w3.org/TR/accelerometer/#dictdef-linearaccelerationreadingvalues -1 -1 -- LinearAccelerationSensor interface accelerometer @@ -705,7 +753,7 @@ current https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-moduledeclarationlinking 1 1 -Module Records +Cyclic Module Records - LinkError exception @@ -901,11 +949,31 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-work-license 1 - -license-release -enum-value +license +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-license + +1 +- +license +dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-license + 1 +- +license-release +enum-value +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-license-release 1 @@ -913,21 +981,21 @@ https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-license-release MediaKeyMessageType - license-release -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessagetype-license-release - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessagetype-license-release +1 1 -mediakeymessagetype +MediaKeyMessageType - license-renewal enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-license-renewal 1 @@ -935,21 +1003,21 @@ https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-license-renewal MediaKeyMessageType - license-renewal -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessagetype-license-renewal - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessagetype-license-renewal 1 -mediakeymessagetype +1 +MediaKeyMessageType - license-request enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-license-request 1 @@ -957,15 +1025,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype-license-request MediaKeyMessageType - license-request -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessagetype-license-request - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessagetype-license-request +1 1 -mediakeymessagetype +MediaKeyMessageType - licensing commitment dfn @@ -1172,6 +1240,17 @@ https://www.w3.org/TR/FileAPI/#lifeTime 1 blob url - +lifetimeMs +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroup-lifetimems +1 +1 +AuctionAdInterestGroup +- light value css-color-adjust-1 @@ -1364,6 +1443,26 @@ https://dom.spec.whatwg.org/#concept-light-tree 1 1 - +light-dark() +function +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#funcdef-light-dark +1 +1 +- +light-dark() +function +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#funcdef-light-dark +1 +1 +- light-estimation dfn webxr-lighting-estimation-1 @@ -1450,6 +1549,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightblue 1 1 <color> +<named-color> - lightblue dfn @@ -1471,6 +1571,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightblue 1 1 <color> +<named-color> - lightcoral dfn @@ -1492,6 +1593,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightcoral 1 1 <color> +<named-color> - lightcoral dfn @@ -1513,6 +1615,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightcoral 1 1 <color> +<named-color> - lightcyan dfn @@ -1534,6 +1637,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightcyan 1 1 <color> +<named-color> - lightcyan dfn @@ -1555,6 +1659,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightcyan 1 1 <color> +<named-color> - lighten value @@ -1674,6 +1779,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightgoldenrodyellow 1 1 <color> +<named-color> - lightgoldenrodyellow dfn @@ -1695,6 +1801,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightgoldenrodyellow 1 1 <color> +<named-color> - lightgray dfn @@ -1716,6 +1823,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightgray 1 1 <color> +<named-color> - lightgray dfn @@ -1737,6 +1845,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightgray 1 1 <color> +<named-color> - lightgreen dfn @@ -1758,6 +1867,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightgreen 1 1 <color> +<named-color> - lightgreen dfn @@ -1779,6 +1889,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightgreen 1 1 <color> +<named-color> - lightgrey dfn @@ -1800,6 +1911,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightgrey 1 1 <color> +<named-color> - lightgrey dfn @@ -1821,6 +1933,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightgrey 1 1 <color> +<named-color> - lighting-color property @@ -1862,6 +1975,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightpink 1 1 <color> +<named-color> - lightpink dfn @@ -1883,6 +1997,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightpink 1 1 <color> +<named-color> - lightsalmon dfn @@ -1904,6 +2019,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightsalmon 1 1 <color> +<named-color> - lightsalmon dfn @@ -1925,6 +2041,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightsalmon 1 1 <color> +<named-color> - lightseagreen dfn @@ -1946,6 +2063,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightseagreen 1 1 <color> +<named-color> - lightseagreen dfn @@ -1967,6 +2085,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightseagreen 1 1 <color> +<named-color> - lightskyblue dfn @@ -1988,6 +2107,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightskyblue 1 1 <color> +<named-color> - lightskyblue dfn @@ -2009,6 +2129,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightskyblue 1 1 <color> +<named-color> - lightslategray dfn @@ -2030,6 +2151,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightslategray 1 1 <color> +<named-color> - lightslategray dfn @@ -2051,6 +2173,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightslategray 1 1 <color> +<named-color> - lightslategrey dfn @@ -2072,6 +2195,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightslategrey 1 1 <color> +<named-color> - lightslategrey dfn @@ -2093,6 +2217,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightslategrey 1 1 <color> +<named-color> - lightsteelblue dfn @@ -2114,6 +2239,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightsteelblue 1 1 <color> +<named-color> - lightsteelblue dfn @@ -2135,6 +2261,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightsteelblue 1 1 <color> +<named-color> - lightyellow dfn @@ -2156,6 +2283,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lightyellow 1 1 <color> +<named-color> - lightyellow dfn @@ -2177,6 +2305,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lightyellow 1 1 <color> +<named-color> - lime dfn @@ -2198,6 +2327,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-lime 1 1 <color> +<named-color> - lime value @@ -2230,6 +2360,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-lime 1 1 <color> +<named-color> - limegreen dfn @@ -2251,6 +2382,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-limegreen 1 1 <color> +<named-color> - limegreen dfn @@ -2272,6 +2404,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-limegreen 1 1 <color> +<named-color> - limit dfn @@ -2285,6 +2418,28 @@ https://gpuweb.github.io/gpuweb/#limit - limit dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-scopes-limit + +1 +attribution scopes +- +limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-limit + +1 +source-registration JSON key +- +limit +dfn webgpu webgpu 1 @@ -2461,16 +2616,6 @@ css-grid snapshot https://www.w3.org/TR/css-grid-2/#limited-contribution -1 -- -limited to numbers greater than zero -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#limited-to-numbers-greater-than-zero - 1 - limited to only known values @@ -2493,7 +2638,7 @@ https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#limited-to-onl 1 - -limited to only non-negative numbers greater than zero +limited to only positive numbers dfn html html @@ -2503,7 +2648,7 @@ https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#limited-to-onl 1 - -limited to only non-negative numbers greater than zero with fallback +limited to only positive numbers with fallback dfn html html @@ -2780,6 +2925,26 @@ svg current https://svgwg.org/svg2-draft/text.html#TermLineBox +1 +- +line box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#line-box +1 +1 +- +line box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#line-box +1 1 - line box @@ -3277,11 +3442,11 @@ https://drafts.csswg.org/css-overflow-4/#propdef-line-clamp - line-clamp property -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#propdef-line-clamp +https://www.w3.org/TR/css-overflow-4/#propdef-line-clamp 1 1 - @@ -3323,6 +3488,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#line-ending-comment +1 +- +line-fit-edge +property +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#propdef-line-fit-edge +1 +1 +- +line-fit-edge +property +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#propdef-line-fit-edge +1 1 - line-gap-override @@ -3337,6 +3522,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-line-gap-override @font-face - line-gap-override +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-line-gap-override +1 +1 +CSSFontFaceDescriptors +- +line-gap-override descriptor css-fonts-5 css-fonts @@ -3410,6 +3606,26 @@ https://drafts.csswg.org/css2/#propdef-line-height 1 - line-height +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height +1 +1 +- +line-height +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height +1 +1 +- +line-height dfn css22 css @@ -3487,16 +3703,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#line-left 1 -1 -- -line-left -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-line-left - 1 - line-left @@ -3568,16 +3774,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#line-over 1 -1 -- -line-over -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-line-over - 1 - line-padding @@ -3864,16 +4060,6 @@ css-writing-modes snapshot https://www.w3.org/TR/css-writing-modes-4/#line-under 1 -1 -- -line-under -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-line-under - 1 - lineAlign @@ -3942,6 +4128,39 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-linegapover 1 FontFaceDescriptors - +lineGapOverride +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-linegapoverride +1 +1 +CSSFontFaceDescriptors +- +lineGapOverride +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-linegapoverride +1 +1 +FontFace +- +lineGapOverride +dict-member +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacedescriptors-linegapoverride +1 +1 +FontFaceDescriptors +- lineJoin attribute html @@ -4163,6 +4382,17 @@ https://drafts.fxtf.org/filter-effects-1/#attr-valuedef-type-linear type - linear +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type-linear +1 +1 +interpolation type +- +linear enum-value webcodecs webcodecs @@ -4185,6 +4415,17 @@ https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-linear DistanceModelType - linear +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-type-linear +1 +1 +interpolation type +- +linear value css-easing-1 css-easing @@ -4246,6 +4487,46 @@ accelerometer snapshot https://www.w3.org/TR/accelerometer/#linear-acceleration +1 +- +linear acceleration sensor +dfn +accelerometer +accelerometer +1 +current +https://w3c.github.io/accelerometer/#linear-acceleration-sensor-sensor-type + +1 +- +linear acceleration sensor +dfn +accelerometer +accelerometer +1 +snapshot +https://www.w3.org/TR/accelerometer/#linear-acceleration-sensor-sensor-type + +1 +- +linear device acceleration +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#linear-device-acceleration + +1 +- +linear device acceleration +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#linear-device-acceleration + 1 - linear easing function @@ -4358,51 +4639,29 @@ https://drafts.csswg.org/css-easing-2/#funcdef-linear 1 1 - -linear() -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-options -1 -1 -MLGraphBuilder -- -linear() -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-options -1 -1 -MLGraphBuilder -- -linear(options) +linear(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear 1 1 MLGraphBuilder - -linear(options) +linear(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear 1 1 MLGraphBuilder - -linear(x) +linear(input, options) method webnn webnn @@ -4413,7 +4672,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear 1 MLGraphBuilder - -linear(x) +linear(input, options) method webnn webnn @@ -4424,27 +4683,25 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear 1 MLGraphBuilder - -linear(x, options) -method -webnn -webnn +linear-acceleration virtual sensor type +dfn +orientation-event +orientation-event 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear +https://w3c.github.io/deviceorientation/#linear-acceleration-virtual-sensor-type 1 1 -MLGraphBuilder - -linear(x, options) -method -webnn -webnn +linear-acceleration virtual sensor type +dfn +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear +https://www.w3.org/TR/orientation-event/#linear-acceleration-virtual-sensor-type 1 1 -MLGraphBuilder - linear-gradient() function @@ -4458,16 +4715,6 @@ https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient - linear-gradient() function -css-images-4 -css-images -4 -current -https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient -1 -1 -- -linear-gradient() -function css-images-3 css-images 3 @@ -4614,6 +4861,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-linen 1 1 <color> +<named-color> - linen dfn @@ -4635,6 +4883,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-linen 1 1 <color> +<named-color> - lineno attribute @@ -4736,14 +4985,15 @@ https://w3c.github.io/mathml-core/#dfn-linethickness mfrac - linethickness -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-linethickness - 1 +1 +mfrac - lining-nums value @@ -4878,6 +5128,36 @@ epub snapshot https://www.w3.org/TR/epub-33/#dfn-link 1 +1 +- +link (pseudo-class) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x26 +1 +1 +- +link (pseudo-class) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x26 +1 +1 +- +link decoration +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#link-decoration + 1 - link processing options @@ -4990,6 +5270,66 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#linked-resource-fetch-setup-steps +1 +- +linked resources +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-linkedresources + +1 +- +linked resources +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-linkedresources + +1 +- +linkedresource +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-linkedresources + +1 +- +linkedresource +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-linkedresources + +1 +- +linkedresources +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-linkedresources + +1 +- +linkedresources +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-linkedresources + 1 - linkmove @@ -5021,6 +5361,16 @@ epub current https://w3c.github.io/epub-specs/epub33/core/#dfn-links 1 +1 +- +links +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-links + 1 - links @@ -5031,6 +5381,16 @@ epub snapshot https://www.w3.org/TR/epub-33/#dfn-links 1 +1 +- +links +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-links + 1 - linktext @@ -5039,9 +5399,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-linktext +https://drafts.csswg.org/css-color-4/#valdef-color-linktext 1 1 +<color> <system-color> - linktext @@ -5050,9 +5411,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-linktext +https://www.w3.org/TR/css-color-4/#valdef-color-linktext 1 1 +<color> <system-color> - list @@ -5130,6 +5492,26 @@ https://html.spec.whatwg.org/multipage/rendering.html#list-box 1 select - +list element +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-list-element + +1 +- +list element +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-list-element + +1 +- list interfaces dfn svg2 @@ -5492,16 +5874,6 @@ https://www.w3.org/TR/service-workers/#dfn-job-list-of-equivalent-jobs 1 job - -list of first-party sets -dfn -first-party-sets -first-party-sets -1 -current -https://wicg.github.io/first-party-sets/#list-of-first-party-sets -1 -1 -- list of frame updates dfn webxr @@ -5584,6 +5956,47 @@ https://www.w3.org/TR/webxr/#list-of-immersive-xr-devices 1 - +list of implemented header extensions for receiving +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-list-of-implemented-header-extensions-for-receiving + +1 +- +list of implemented header extensions for sending +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-list-of-implemented-header-extensions-for-sending + +1 +- +list of implemented receive codecs +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-list-of-implemented-receive-codecs +1 +1 +- +list of implemented send codecs +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-list-of-implemented-send-codecs +1 +1 +RTCRtpSender +- list of inherent constrainable track properties dfn mediacapture-streams @@ -5797,6 +6210,16 @@ performance-timeline snapshot https://www.w3.org/TR/performance-timeline/#dfn-list-of-registered-performance-observer-objects +1 +- +list of related website sets +dfn +first-party-sets +first-party-sets +1 +current +https://wicg.github.io/first-party-sets/#list-of-related-website-sets +1 1 - list of representations @@ -5809,6 +6232,27 @@ https://w3c.github.io/clipboard-apis/#list-of-representations 1 - +list of representations +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#list-of-representations + +1 +- +list of router rules +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#service-worker-list-of-router-rules + +1 +service worker +- list of runnable idle callbacks dfn requestidlecallback @@ -6070,6 +6514,26 @@ css current https://drafts.csswg.org/css2/#list-properties +1 +- +list properties +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x30 +1 +1 +- +list properties +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x30 +1 1 - list-concatenation @@ -6093,7 +6557,7 @@ https://drafts.csswg.org/css-display-3/#valdef-display-list-item 1 1 display -<display-list-item> +<display-listitem> - list-item value @@ -6134,6 +6598,26 @@ https://drafts.csswg.org/css2/#value-def-list-item display - list-item +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#value-def-list-item +1 +1 +- +list-item +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#value-def-list-item +1 +1 +- +list-item value css-display-3 css-display @@ -6143,7 +6627,7 @@ https://www.w3.org/TR/css-display-3/#valdef-display-list-item 1 1 display -<display-list-item> +<display-listitem> - list-item value @@ -6160,26 +6644,6 @@ counter-reset counter() counters() - -list-of-inherent-constrainable-track-properties -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#list-of-inherent-constrainable-track-properties - -1 -- -list-of-inherent-constrainable-track-properties -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#list-of-inherent-constrainable-track-properties - -1 -- list-style property css-lists-3 @@ -6201,6 +6665,26 @@ https://drafts.csswg.org/css2/#propdef-list-style 1 - list-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style +1 +1 +- +list-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style +1 +1 +- +list-style dfn css22 css @@ -6241,6 +6725,26 @@ https://drafts.csswg.org/css2/#propdef-list-style-image 1 - list-style-image +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image +1 +1 +- +list-style-image +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image +1 +1 +- +list-style-image dfn css22 css @@ -6281,6 +6785,26 @@ https://drafts.csswg.org/css2/#propdef-list-style-position 1 - list-style-position +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position +1 +1 +- +list-style-position +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position +1 +1 +- +list-style-position dfn css22 css @@ -6321,6 +6845,26 @@ https://drafts.csswg.org/css2/#propdef-list-style-type 1 - list-style-type +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type +1 +1 +- +list-style-type +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type +1 +1 +- +list-style-type dfn css22 css @@ -6382,6 +6926,17 @@ https://wicg.github.io/digital-goods/#dom-digitalgoodsservice-listpurchases 1 DigitalGoodsService - +listReaders() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext-listreaders +1 +1 +SmartCardContext +- listbox value css-ui-4 @@ -6421,8 +6976,9 @@ html 1 current https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-listener - 1 +1 +event handler - listener attribute @@ -6543,11 +7099,21 @@ syntax - literal dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_literal + +1 +- +literal +dfn rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-literal +https://w3c.github.io/rdf-concepts/spec/#dfn-literal 1 - @@ -6583,13 +7149,43 @@ https://www.w3.org/TR/WGSL/#syntax-literal 1 syntax - +literal +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent_literal + +1 +- +literal +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-literal + +1 +- literal term equality dfn rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-term-equal +https://w3c.github.io/rdf-concepts/spec/#dfn-literal-term-equality + +1 +- +literal term equality +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-literal-term-equality 1 - @@ -6601,6 +7197,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-literal-value +1 +- +literal value +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-literal-value + 1 - literal-punctuation @@ -6647,6 +7253,17 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se ECMAScript - live +dfn +indexeddb-3 +indexeddb +3 +current +https://w3c.github.io/IndexedDB/#transaction-live + +1 +transaction +- +live enum-value mediacapture-streams mediacapture-streams @@ -6658,6 +7275,17 @@ https://w3c.github.io/mediacapture-main/#idl-def-MediaStreamTrackState.live MediaStreamTrackState - live +dfn +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#transaction-live + +1 +transaction +- +live enum-value mediacapture-streams mediacapture-streams @@ -6701,23 +7329,13 @@ https://w3c.github.io/aria/#dfn-live-region - live region dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-live-region - -1 -- -live region -dfn -mathml-aam -mathml-aam +https://w3c.github.io/aria/#dfn-live-region 1 -current -https://w3c.github.io/mathml-aam/#dfn-live-region -1 - live region dfn @@ -6759,15 +7377,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-live-region - -live regions +live region dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-live-region - +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-live-region 1 + - live regions dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ln.data b/bikeshed/spec-data/readonly/anchors/anchors-ln.data index 7881452f9f..d2d4482593 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ln.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ln.data @@ -1,3 +1,23 @@ +<ln/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_ln + +1 +- +<ln/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_ln + +1 +- LN10 attribute ecmascript diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lo.data b/bikeshed/spec-data/readonly/anchors/anchors-lo.data index df4348e36b..f0807ca58b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lo.data @@ -42,6 +42,28 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacesetloadstatus-loaded 1 FontFaceSetLoadStatus - +"loaded" +enum-value +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceloadstatus-loaded +1 +1 +FontFaceLoadStatus +- +"loaded" +enum-value +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadstatus-loaded +1 +1 +FontFaceSetLoadStatus +- "loading" enum-value css-font-loading-3 @@ -64,6 +86,28 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacesetloadstatus-loading 1 FontFaceSetLoadStatus - +"loading" +enum-value +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceloadstatus-loading +1 +1 +FontFaceLoadStatus +- +"loading" +enum-value +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadstatus-loading +1 +1 +FontFaceSetLoadStatus +- "local" enum-value webxr @@ -77,6 +121,17 @@ XRReferenceSpaceType - "local" enum-value +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#dom-ipaddressspace-local +1 +1 +IPAddressSpace +- +"local" +enum-value webxr webxr 1 @@ -130,6 +185,28 @@ https://wicg.github.io/idle-detection/#dom-screenidlestate-locked 1 ScreenIdleState - +"logged-in" +enum-value +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-loginstatus-logged-in +1 +1 +LoginStatus +- +"logged-out" +enum-value +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-loginstatus-logged-out +1 +1 +LoginStatus +- "low" enum-value fetch @@ -143,6 +220,17 @@ RequestPriority - "low" enum-value +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmeshquality-low +1 +1 +XRMeshQuality +- +"low" +enum-value webrtc-priority webrtc-priority 1 @@ -229,6 +317,28 @@ https://www.w3.org/TR/webnn/#dom-mlpowerpreference-low-power 1 MLPowerPreference - +"lowdelay" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusapplication-lowdelay +1 +1 +OpusApplication +- +"lowdelay" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusapplication-lowdelay +1 +1 +OpusApplication +- "lowpass" enum-value webaudio @@ -285,12 +395,82 @@ https://drafts.csswg.org/selectors-4/#local-link-pseudo - :local-link selector +selectors-5 +selectors +5 +current +https://drafts.csswg.org/selectors-5/#local-link-pseudo +1 +1 +- +:local-link +selector selectors-4 selectors 4 snapshot https://www.w3.org/TR/selectors-4/#local-link-pseudo 1 +1 +- +<log/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_log + +1 +- +<log/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_log + +1 +- +<logbase> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_logbase + +1 +- +<logbase> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_logbase + +1 +- +<lowlimit> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_lowlimit + +1 +- +<lowlimit> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_lowlimit + 1 - LOADED @@ -370,13 +550,23 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.log2e 1 Math - -Load a font with a HTTP Cache +Load patch file abstract-op ift ift 1 current -https://w3c.github.io/IFT/Overview.html#abstract-opdef-load-a-font-with-a-http-cache +https://w3c.github.io/IFT/Overview.html#abstract-opdef-load-patch-file +1 +1 +- +Load patch file +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-load-patch-file 1 1 - @@ -429,7 +619,17 @@ current https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-LoadRequestedModules 1 1 -Module Records +Cyclic Module Records +- +LocalTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-localtime +1 +1 - LocalTime(t) abstract-op @@ -621,6 +821,26 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-logical-miplevel-specific-texture-e 1 1 - +LoginStatus +enum +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#enumdef-loginstatus +1 +1 +- +LoopContinues +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-loopcontinues +1 +1 +- LoopContinues(completion, labelSet) abstract-op ecmascript @@ -648,7 +868,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loadedfonts +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loadedfonts-slot 1 1 FontFaceSet @@ -670,7 +890,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loadingfonts +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loadingfonts-slot 1 1 FontFaceSet @@ -693,8 +913,20 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-localicecredentialstoreplace + +1 +RTCPeerConnection +- +[[Local]] +attribute +webrtc +webrtc 1 +current +https://w3c.github.io/webrtc-pc/#dfn-local + 1 +RTCIceCandidatePair - load event @@ -752,28 +984,6 @@ https://www.w3.org/TR/FileAPI/#dfn-load-event FileReader - load -method -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-load -1 -1 -FontFaceSet -- -load -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-load - -1 -mediakeysession -- -load dfn uievents uievents @@ -792,7 +1002,7 @@ current https://xhr.spec.whatwg.org/#event-xhr-load 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget - load a document dfn @@ -931,9 +1141,9 @@ HTMLMediaElement - load() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-load 1 @@ -952,15 +1162,15 @@ https://www.w3.org/TR/css-font-loading-3/#dom-fontface-load FontFace - load() -dfn -encrypted-media +method +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-load - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-load 1 -mediakeysession +1 +MediaKeySession - load(font) method @@ -973,6 +1183,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-load 1 FontFaceSet - +load(font) +method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-load +1 +1 +FontFaceSet +- load(font, text) method css-font-loading-3 @@ -984,17 +1205,39 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-load 1 FontFaceSet - +load(font, text) +method +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-load +1 +1 +FontFaceSet +- load(sessionId) method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-load 1 1 MediaKeySession - +load(sessionId) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-load +1 +1 +MediaKeySession +- load(typedArray, index) method ecmascript @@ -1267,6 +1510,16 @@ https://html.spec.whatwg.org/multipage/media.html#event-media-loadedmetadata 1 HTMLMediaElement - +loadedmodulerequest record +dfn +tc39-import-attributes +tc39-import-attributes +1 +current +https://tc39.es/proposal-import-attributes/#loadedmodulerequest-record +1 +1 +- loadend event fileapi @@ -1298,7 +1551,7 @@ current https://xhr.spec.whatwg.org/#event-xhr-loadend 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget - loading event @@ -1366,14 +1619,15 @@ https://html.spec.whatwg.org/multipage/media.html#text-track-loading 1 - loading -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-loading - 1 +1 +model - loading event @@ -1381,7 +1635,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loading +https://www.w3.org/TR/css-font-loading-3/#eventdef-fontfaceset-loading 1 1 FontFaceSet @@ -1518,7 +1772,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loadingdone +https://www.w3.org/TR/css-font-loading-3/#eventdef-fontfaceset-loadingdone 1 1 FontFaceSet @@ -1540,7 +1794,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-loadingerror +https://www.w3.org/TR/css-font-loading-3/#eventdef-fontfaceset-loadingerror 1 1 FontFaceSet @@ -1587,7 +1841,7 @@ current https://xhr.spec.whatwg.org/#event-xhr-loadstart 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget - loadtime dfn @@ -1595,9 +1849,21 @@ largest-contentful-paint largest-contentful-paint 1 current -https://w3c.github.io/largest-contentful-paint/#loadtime +https://w3c.github.io/largest-contentful-paint/#largestcontentfulpaint-loadtime + +1 +LargestContentfulPaint +- +loadtime +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#pending-image-record-loadtime 1 +pending image record - loadtime dfn @@ -1605,15 +1871,27 @@ largest-contentful-paint largest-contentful-paint 1 snapshot -https://www.w3.org/TR/largest-contentful-paint/#loadtime +https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-loadtime 1 +LargestContentfulPaint - -local -value -css-backgrounds-3 -css-backgrounds -3 +loadtime +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#pending-image-record-loadtime + +1 +pending image record +- +local +value +css-backgrounds-3 +css-backgrounds +3 current https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-local 1 @@ -1642,7 +1920,7 @@ https://w3c.github.io/webdriver/#dfn-local-ends 1 - local -dict-member +attribute webrtc webrtc 1 @@ -1654,11 +1932,11 @@ RTCIceCandidatePair - local dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#ip-address-space-local +https://wicg.github.io/private-network-access/#ip-address-space-local 1 1 IP address space @@ -1708,11 +1986,11 @@ XRReferenceSpaceType - local address dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#local-address +https://wicg.github.io/private-network-access/#local-address 1 - @@ -1832,7 +2110,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#local-date-and-time-state-(type=datetime-local) +https://html.spec.whatwg.org/multipage/input.html#local-date-and-time-state-(type%3Ddatetime-local) 1 1 input @@ -1874,7 +2152,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#local-end-definition - +1 1 - local ends @@ -1914,7 +2192,7 @@ css-values 4 current https://drafts.csswg.org/css-values-4/#local-font-relative-lengths - +1 1 - local font-relative lengths @@ -1924,7 +2202,7 @@ css-values 4 snapshot https://www.w3.org/TR/css-values-4/#local-font-relative-lengths - +1 1 - local invocation id @@ -2018,6 +2296,16 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#concept-mock-local-name +1 +- +local name +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#local-name + 1 - local name data type @@ -2166,7 +2454,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_local_time +https://w3c.github.io/i18n-glossary/#dfn-local-time 1 - @@ -2176,7 +2464,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_local_time +https://www.w3.org/TR/i18n-glossary/#dfn-local-time 1 - @@ -2189,6 +2477,26 @@ snapshot https://www.w3.org/TR/web-animations-1/#local-time 1 +- +local time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#local-time + +1 +- +local time space +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#local-time-space + + - local type dfn @@ -2252,7 +2560,17 @@ snapshot https://www.w3.org/TR/css-values-4/#url-local-url-flag 1 1 -url() +<url> +- +local variable +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#local-variable + +1 - local-candidate enum-value @@ -2318,6 +2636,50 @@ https://fetch.spec.whatwg.org/#local-urls-only-flag 1 1 - +localAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketopeninfo-localaddress +1 +1 +TCPServerSocketOpenInfo +- +localAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo-localaddress +1 +1 +TCPSocketOpenInfo +- +localAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo-localaddress +1 +1 +UDPSocketOpenInfo +- +localAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-localaddress +1 +1 +UDPSocketOptions +- localCandidateId dict-member webrtc-stats @@ -2594,6 +2956,61 @@ https://dom.spec.whatwg.org/#dom-xsltprocessor-setparameter-namespaceuri-localna 1 XSLTProcessor/setParameter(namespaceURI, localName, value) - +localPort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketopeninfo-localport +1 +1 +TCPServerSocketOpenInfo +- +localPort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketoptions-localport +1 +1 +TCPServerSocketOptions +- +localPort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo-localport +1 +1 +TCPSocketOpenInfo +- +localPort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo-localport +1 +1 +UDPSocketOpenInfo +- +localPort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-localport +1 +1 +UDPSocketOptions +- localService attribute speech-api @@ -2616,6 +3033,28 @@ https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage 1 WindowLocalStorage - +localStorage +attribute +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-localstorage +1 +1 +StorageAccessHandle +- +localStorage +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-localstorage +1 +1 +StorageAccessTypes +- localTime attribute css-animation-worklet-1 @@ -2671,6 +3110,17 @@ https://www.w3.org/TR/web-animations-1/#dom-computedeffecttiming-localtime 1 ComputedEffectTiming - +localTime +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-computedeffecttiming-localtime +1 +1 +ComputedEffectTiming +- local_invocation_id dfn wgsl @@ -2721,17 +3171,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#locale -1 - -- -locale -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#locale +https://w3c.github.io/i18n-glossary/#dfn-locale 1 - @@ -2762,17 +3202,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#locale -1 - -- -locale -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#locale +https://www.w3.org/TR/i18n-glossary/#dfn-locale 1 - @@ -2786,36 +3216,6 @@ https://www.w3.org/TR/secure-payment-confirmation/#dom-securepaymentconfirmation 1 1 SecurePaymentConfirmationRequest -- -locale aware -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_aware -1 - -- -locale aware -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_aware -1 - -- -locale fallback -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_fallback -1 - - locale fallback dfn @@ -2823,17 +3223,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_locale_fallback -1 - -- -locale fallback -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_fallback +https://w3c.github.io/i18n-glossary/#dfn-locale-fallback 1 - @@ -2843,7 +3233,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_fallback +https://www.w3.org/TR/i18n-glossary/#dfn-locale-fallback 1 - @@ -2853,7 +3243,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_locale_neutral +https://w3c.github.io/i18n-glossary/#dfn-locale-neutral 1 - @@ -2863,17 +3253,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_neutral -1 - -- -locale-aware -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_aware +https://www.w3.org/TR/i18n-glossary/#dfn-locale-neutral 1 - @@ -2883,17 +3263,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_locale_aware -1 - -- -locale-aware -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_aware +https://w3c.github.io/i18n-glossary/#dfn-locale-aware 1 - @@ -2903,17 +3273,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_aware -1 - -- -locale-neutral -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_locale_neutral +https://www.w3.org/TR/i18n-glossary/#dfn-locale-aware 1 - @@ -2923,17 +3283,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_locale_neutral -1 - -- -locale-neutral -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_neutral +https://w3c.github.io/i18n-glossary/#dfn-locale-neutral 1 - @@ -2943,7 +3293,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_locale_neutral +https://www.w3.org/TR/i18n-glossary/#dfn-locale-neutral 1 - @@ -2958,23 +3308,23 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.loca 1 String - -locales +localisation dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#locale +https://w3c.github.io/i18n-glossary/#dfn-localisation 1 - -locales +localisation dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#locale +https://www.w3.org/TR/i18n-glossary/#dfn-localisation 1 - @@ -2987,6 +3337,26 @@ current https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-adr-locality 1 +- +localizable content +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-localizable-content +1 + +- +localizable content +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-localizable-content +1 + - localizable member dfn @@ -3048,63 +3418,83 @@ https://www.w3.org/TR/miniapp-manifest/#dfn-localizable-members 1 - -localizable text +localizable string dfn -i18n-glossary -i18n-glossary +pub-manifest +pub-manifest 1 current -https://w3c.github.io/i18n-glossary/#def_localizable_text -1 +https://w3c.github.io/pub-manifest/#dfn-localizablestrings +1 - -localizable text +localizable string dfn -i18n-glossary -i18n-glossary +pub-manifest +pub-manifest 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_localizable_text -1 +https://www.w3.org/TR/pub-manifest/#dfn-localizablestrings +1 - -localization +localizable text dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_localization +https://w3c.github.io/i18n-glossary/#dfn-localizable-text 1 - -localization +localizable text dfn i18n-glossary i18n-glossary 1 -current -https://w3c.github.io/i18n-glossary/#def_localization +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-localizable-text 1 - -localization +localizablestring dfn -miniapp-packaging -miniapp-packaging +pub-manifest +pub-manifest 1 current -https://w3c.github.io/miniapp-packaging/#dfn-localization +https://w3c.github.io/pub-manifest/#dfn-localizablestrings 1 - -localization +localizablestring dfn -miniapp-packaging -miniapp-packaging +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-localizablestrings + +1 +- +localizablestrings +dfn +pub-manifest +pub-manifest 1 current -https://w3c.github.io/miniapp-packaging/#dfn-localization +https://w3c.github.io/pub-manifest/#dfn-localizablestrings + +1 +- +localizablestrings +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-localizablestrings 1 - @@ -3113,10 +3503,30 @@ dfn i18n-glossary i18n-glossary 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_localization +current +https://w3c.github.io/i18n-glossary/#dfn-localisation +1 + +- +localization +dfn +miniapp-packaging +miniapp-packaging 1 +current +https://w3c.github.io/miniapp-packaging/#dfn-localization +1 +- +localization +dfn +miniapp-packaging +miniapp-packaging +1 +current +https://w3c.github.io/miniapp-packaging/#dfn-localization + +1 - localization dfn @@ -3124,7 +3534,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_localization +https://www.w3.org/TR/i18n-glossary/#dfn-localisation 1 - @@ -3188,25 +3598,15 @@ https://www.w3.org/TR/miniapp-packaging/#dfn-localization-resources 1 - -localized +locally substitute a var() dfn -i18n-glossary -i18n-glossary +css-mixins-1 +css-mixins 1 current -https://w3c.github.io/i18n-glossary/#def_localization -1 +https://drafts.csswg.org/css-mixins-1/#locally-substitute-a-var -- -localized -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_localization 1 - - localname dfn @@ -3218,14 +3618,24 @@ https://w3c.github.io/DOM-Parsing/#dfn-localname 1 - -localvalue +localtestingmode dfn -webdriver-bidi -webdriver-bidi +private-aggregation-api +private-aggregation-api 1 current -https://w3c.github.io/webdriver-bidi/#localvalue +https://patcg-individual-drafts.github.io/private-aggregation-api/#localtestingmode + 1 +- +localtestingmode +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#localtestingmode + 1 - locate a namespace @@ -3248,48 +3658,76 @@ https://dom.spec.whatwg.org/#locate-a-namespace-prefix 1 1 - -locating a namespace prefix +locate nodes using accessibility attributes dfn -dom -dom +webdriver-bidi +webdriver-bidi 1 current -https://dom.spec.whatwg.org/#locate-a-namespace-prefix +https://w3c.github.io/webdriver-bidi/#locate-nodes-using-accessibility-attributes + +1 +- +locate nodes using css +dfn +webdriver-bidi +webdriver-bidi 1 +current +https://w3c.github.io/webdriver-bidi/#locate-nodes-using-css + 1 - -location +locate nodes using inner text dfn -cssom-1 -cssom +webdriver-bidi +webdriver-bidi 1 current -https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-location +https://w3c.github.io/webdriver-bidi/#locate-nodes-using-inner-text 1 -CSSStyleSheet - -location -dict-member -webgpu -webgpu +locate nodes using xpath +dfn +webdriver-bidi +webdriver-bidi 1 current -https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestampwrite-location +https://w3c.github.io/webdriver-bidi/#locate-nodes-using-xpath + +1 +- +locating a namespace prefix +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#locate-a-namespace-prefix 1 1 -GPUComputePassTimestampWrite - -location -dict-member -webgpu -webgpu +locating an entry +dfn +fs +fs 1 current -https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestampwrite-location +https://fs.spec.whatwg.org/#locating-an-entry +1 +1 +- +location +dfn +cssom-1 +cssom 1 +current +https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-location + 1 -GPURenderPassTimestampWrite +CSSStyleSheet - location dfn @@ -3421,28 +3859,6 @@ https://www.w3.org/TR/uievents/#dom-keyboardeventinit-location 1 KeyboardEventInit - -location -dict-member -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestampwrite-location -1 -1 -GPUComputePassTimestampWrite -- -location -dict-member -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestampwrite-location -1 -1 -GPURenderPassTimestampWrite -- location url dfn fetch @@ -3504,6 +3920,28 @@ KeyboardEvent/initKeyboardEvent(typeArg, bubblesArg, cancelableArg) KeyboardEvent/initKeyboardEvent(typeArg, bubblesArg) KeyboardEvent/initKeyboardEvent(typeArg) - +location_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-location_attr + +1 +syntax +- +location_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-location_attr + +1 +syntax +- locationbar attribute html @@ -3526,6 +3964,17 @@ https://wicg.github.io/shape-detection-api/#dom-landmark-locations 1 Landmark - +locator +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#filesystemhandle-locator +1 +1 +FileSystemHandle +- lock dfn fs @@ -3539,6 +3988,16 @@ file entry - lock dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-weblock +1 +1 +- +lock +dfn streams streams 1 @@ -3651,6 +4110,26 @@ https://www.w3.org/TR/web-locks/#lock-manager-lock-request-queue-map 1 lock manager - +lock requests queue +dfn +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dfn-lock-requests-queue + +1 +- +lock requests queue +dfn +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dfn-lock-requests-queue + +1 +- lock task queue dfn web-locks @@ -3923,6 +4402,38 @@ https://www.w3.org/TR/screen-orientation/#dfn-lock-the-screen-orientation 1 - +lockout period +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#lockout-period + +1 +- +locks +attribute +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-locks +1 +1 +StorageAccessHandle +- +locks +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-locks +1 +1 +StorageAccessTypes +- locks attribute web-locks @@ -3945,6 +4456,26 @@ https://www.w3.org/TR/web-locks/#dom-navigatorlocks-locks 1 NavigatorLocks - +lod +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#levels-of-detail + +1 +- +lod +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#levels-of-detail + +1 +- lodMaxClamp dict-member webgpu @@ -4052,18 +4583,29 @@ https://console.spec.whatwg.org/#log 1 console - -log(x) +log(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.log +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-log 1 1 -Math +MLGraphBuilder - -log(x) +log(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log +1 +1 +MLGraphBuilder +- +log(input, options) method webnn webnn @@ -4074,7 +4616,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-log 1 MLGraphBuilder - -log(x) +log(input, options) method webnn webnn @@ -4085,6 +4627,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log 1 MLGraphBuilder - +log(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.log +1 +1 +Math +- log10(x) method ecmascript @@ -4118,6 +4671,26 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.log2 1 Math - +logged-in +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#logged-in + +1 +- +logged-out +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#logged-out + +1 +- logic layer dfn miniapp-lifecycle @@ -4219,6 +4792,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-logical-expression 1 +- +logical expression +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-logical-expression +1 + - logical height dfn @@ -4306,17 +4889,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_logical_order -1 - -- -logical order -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_logical_order +https://w3c.github.io/i18n-glossary/#dfn-logical-order 1 - @@ -4326,17 +4899,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_logical_order -1 - -- -logical order -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_logical_order +https://www.w3.org/TR/i18n-glossary/#dfn-logical-order 1 - @@ -4358,6 +4921,26 @@ css-logical snapshot https://www.w3.org/TR/css-logical-1/#logical-property-group 1 +1 +- +logical texel address +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#logical-texel-address + +1 +- +logical texel address +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#logical-texel-address + 1 - logical width @@ -4406,21 +4989,65 @@ webhid webhid 1 current -https://wicg.github.io/webhid/#dom-hidreportitem-logicalmaximum +https://wicg.github.io/webhid/#dom-hidreportitem-logicalmaximum +1 +1 +HIDReportItem +- +logicalMinimum +dict-member +webhid +webhid +1 +current +https://wicg.github.io/webhid/#dom-hidreportitem-logicalminimum +1 +1 +HIDReportItem +- +logicalNot(a) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-logicalnot +1 +1 +MLGraphBuilder +- +logicalNot(a) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-logicalnot +1 +1 +MLGraphBuilder +- +logicalNot(a, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-logicalnot 1 1 -HIDReportItem +MLGraphBuilder - -logicalMinimum -dict-member -webhid -webhid +logicalNot(a, options) +method +webnn +webnn 1 -current -https://wicg.github.io/webhid/#dom-hidreportitem-logicalminimum +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-logicalnot 1 1 -HIDReportItem +MLGraphBuilder - logicalSurface dict-member @@ -4510,6 +5137,16 @@ https://www.w3.org/TR/screen-capture/#dom-mediatracksupportedconstraints-logical 1 MediaTrackSupportedConstraints - +logically connected +dfn +serial +serial +1 +current +https://wicg.github.io/serial/#dfn-logically-connected + +1 +- logicalsurface dfn screen-capture @@ -4530,6 +5167,60 @@ https://www.w3.org/TR/screen-capture/#dfn-logicalsurface 1 1 - +login +attribute +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-navigator-login +1 +1 +Navigator +- +login status map +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#login-status-map + +1 +- +loginHint +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityproviderrequestoptions-loginhint +1 +1 +IdentityProviderRequestOptions +- +login_hints +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityprovideraccount-login_hints +1 +1 +IdentityProviderAccount +- +login_url +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityproviderapiconfig-login_url +1 +1 +IdentityProviderAPIConfig +- logo dfn html @@ -4550,6 +5241,16 @@ https://webidl.spec.whatwg.org/#idl-long 1 1 - +long animation frame +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#long-animation-frame +1 +1 +- long attribute values dfn web-bluetooth @@ -4558,6 +5259,26 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#long-attribute-values +1 +- +long cooldown period +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#long-cooldown-period + +1 +- +long cooldown rate +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#long-cooldown-rate + 1 - long long @@ -4787,28 +5508,6 @@ https://www.w3.org/TR/css-cascade-5/#longhand - longitude attribute -geolocation -geolocation -1 -current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-longitude -1 -1 -GeolocationCoordinates -- -longitude -dict-member -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-longitude -1 -1 -GeolocationReadingValues -- -longitude -attribute geolocation-sensor geolocation-sensor 1 @@ -4830,15 +5529,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-longitude GeolocationSensorReading - longitude -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-longitude +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-longitude 1 1 -GeolocationReadingValues +GeolocationCoordinates - longitude attribute @@ -4883,6 +5582,67 @@ https://html.spec.whatwg.org/multipage/custom-elements.html#look-up-a-custom-ele 1 1 - +look up penultimate redemption +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#look-up-penultimate-redemption + +1 +- +look up per-buyer currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#look-up-per-buyer-currency + +1 +- +look up per-buyer multi-bid limit +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#look-up-per-buyer-multi-bid-limit + +1 +- +look up the key commitments +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#look-up-the-key-commitments + +1 +- +look up the latest keys +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#look-up-the-latest-keys + +1 +- +lookback window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#filter-config-lookback-window + +1 +filter config +- looking up dfn webauthn-3 @@ -4905,6 +5665,16 @@ https://www.w3.org/TR/webauthn-3/#credential-id-looking-up 1 credential id - +lookup race response +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#lookup-race-response +1 +1 +- lookupNamespaceURI(prefix) method dom @@ -5006,14 +5776,15 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-marquee-loop HTMLMarqueeElement - loop -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-loop - 1 +1 +model - loop dfn @@ -5307,11 +6078,21 @@ https://www.w3.org/TR/webgpu/#lose-the-device - lossless dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-lossless +https://w3c.github.io/png/#dfn-lossless + +1 +- +lossless +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-lossless 1 - @@ -5586,6 +6367,28 @@ https://www.w3.org/TR/generic-sensor/#low-level 1 - +low-power +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlpowerpreference-low-power +1 +1 +MLPowerPreference +- +low-power +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlpowerpreference-low-power +1 +1 +MLPowerPreference +- low-surrogate code unit dfn ecmascript @@ -5608,6 +6411,28 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#low-surr 1 ECMAScript - +lowdelay +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusapplication-lowdelay +1 +1 +OpusApplication +- +lowdelay +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusapplication-lowdelay +1 +1 +OpusApplication +- lower argument css-typed-om-1 @@ -5703,6 +6528,29 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbkeyrange-lowerbound-lower-open-lower IDBKeyRange/lowerBound(lower, open) IDBKeyRange/lowerBound(lower) - +lower +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-cssmathclamp-lower-value-upper-lower +1 +1 +CSSMathClamp/CSSMathClamp(lower, value, upper) +CSSMathClamp/constructor(lower, value, upper) +- +lower +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-lower +1 +1 +CSSMathClamp +- lower bound dfn indexeddb-3 @@ -5836,6 +6684,26 @@ list-style-type - lower-greek value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-lower-greek +1 +1 +- +lower-greek +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-lower-greek +1 +1 +- +lower-greek +value css-counter-styles-3 css-counter-styles 3 @@ -5869,6 +6737,26 @@ list-style-type - lower-latin value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-lower-latin +1 +1 +- +lower-latin +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-lower-latin +1 +1 +- +lower-latin +value css-counter-styles-3 css-counter-styles 3 @@ -5908,6 +6796,26 @@ html current https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-state-lower-roman +1 +- +lower-roman +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-lower-roman +1 +1 +- +lower-roman +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-lower-roman +1 1 - lower-roman diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ls.data b/bikeshed/spec-data/readonly/anchors/anchors-ls.data index e5649533c2..b4e93068aa 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ls.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ls.data @@ -1,13 +1,3 @@ -lsb -dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#dfn-lsb - -1 -- lspace element-attr mathml-core @@ -42,6 +32,17 @@ https://w3c.github.io/mathml-core/#dfn-lspace-0 mo - lspace +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mpadded-lspace +1 +1 +mpadded +- +lspace dfn mathml-core mathml-core @@ -50,6 +51,18 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-lspace 1 +embellished operator +- +lspace +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-lspace-0 +1 +1 +mo - lstm(input, weight, recurrentWeight, steps, hiddenSize) method @@ -145,7 +158,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_iana_language_subtag_registry +https://w3c.github.io/i18n-glossary/#dfn-subtag-registry 1 - @@ -155,7 +168,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_iana_language_subtag_registry +https://www.w3.org/TR/i18n-glossary/#dfn-subtag-registry 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lt.data b/bikeshed/spec-data/readonly/anchors/anchors-lt.data index 6322b8e618..4c3e272474 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lt.data @@ -9,6 +9,26 @@ https://notifications.spec.whatwg.org/#dom-notificationdirection-ltr 1 NotificationDirection - +<lt/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_lt + +1 +- +<lt/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_lt + +1 +- ltr value css-writing-modes-3 @@ -90,7 +110,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn-ltr +https://w3c.github.io/i18n-glossary/#dfn-left-to-right 1 - @@ -166,7 +186,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-ltr +https://www.w3.org/TR/i18n-glossary/#dfn-left-to-right 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lu.data b/bikeshed/spec-data/readonly/anchors/anchors-lu.data index 100094b2f0..49e2d24065 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lu.data @@ -21,6 +21,16 @@ https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrdepthdataformat-luminance-alp XRDepthDataFormat - luminance +dfn +css-color-4 +css-color +4 +current +https://drafts.csswg.org/css-color-4/#luminance +1 +1 +- +luminance value css-masking-1 css-masking @@ -55,11 +65,11 @@ mask-type - luminance dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-luminance +https://w3c.github.io/png/#dfn-luminance 1 - @@ -96,6 +106,16 @@ https://www.w3.org/TR/css-masking-1/#valdef-mask-type-luminance 1 mask-type - +luminance +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-luminance + +1 +- luminancetoalpha attr-value filter-effects-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lv.data b/bikeshed/spec-data/readonly/anchors/anchors-lv.data index 9f59504409..e64a06756a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lv.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lv.data @@ -4,7 +4,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-lvb +https://drafts.csswg.org/css-values-4/#lvb 1 1 <length> @@ -15,7 +15,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-lvb +https://www.w3.org/TR/css-values-4/#lvb 1 1 <length> @@ -31,13 +31,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-lvb 1 CSS - +lvb(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvb +1 +1 +CSS +- lvh value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-lvh +https://drafts.csswg.org/css-values-4/#lvh 1 1 <length> @@ -48,7 +59,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-lvh +https://www.w3.org/TR/css-values-4/#lvh 1 1 <length> @@ -64,13 +75,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-lvh 1 CSS - +lvh(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvh +1 +1 +CSS +- lvi value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-lvi +https://drafts.csswg.org/css-values-4/#lvi 1 1 <length> @@ -81,7 +103,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-lvi +https://www.w3.org/TR/css-values-4/#lvi 1 1 <length> @@ -97,13 +119,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-lvi 1 CSS - +lvi(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvi +1 +1 +CSS +- lvmax value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-lvmax +https://drafts.csswg.org/css-values-4/#lvmax 1 1 <length> @@ -114,7 +147,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-lvmax +https://www.w3.org/TR/css-values-4/#lvmax 1 1 <length> @@ -130,13 +163,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-lvmax 1 CSS - +lvmax(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvmax +1 +1 +CSS +- lvmin value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-lvmin +https://drafts.csswg.org/css-values-4/#lvmin 1 1 <length> @@ -147,7 +191,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-lvmin +https://www.w3.org/TR/css-values-4/#lvmin 1 1 <length> @@ -163,13 +207,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-lvmin 1 CSS - +lvmin(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvmin +1 +1 +CSS +- lvw value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-lvw +https://drafts.csswg.org/css-values-4/#lvw 1 1 <length> @@ -180,7 +235,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-lvw +https://www.w3.org/TR/css-values-4/#lvw 1 1 <length> @@ -196,3 +251,14 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-lvw 1 CSS - +lvw(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvw +1 +1 +CSS +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-lz.data b/bikeshed/spec-data/readonly/anchors/anchors-lz.data index 40f1bb72eb..1b88a16b62 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-lz.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-lz.data @@ -1,10 +1,20 @@ lz77 dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3LZ77 +https://w3c.github.io/png/#3LZ77 + +1 +- +lz77 +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3LZ77 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ma.data b/bikeshed/spec-data/readonly/anchors/anchors-ma.data index 61fb1aa4ba..c70ac14c30 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ma.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ma.data @@ -1,24 +1,22 @@ "magnetometer" -enum-value -generic-sensor -generic-sensor +permission +orientation-event +orientation-event 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-magnetometer +https://w3c.github.io/deviceorientation/#permissiondef-magnetometer 1 1 -MockSensorType - "magnetometer" -enum-value -generic-sensor -generic-sensor +permission +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-magnetometer +https://www.w3.org/TR/orientation-event/#permissiondef-magnetometer 1 1 -MockSensorType - "manifest" enum-value @@ -77,28 +75,6 @@ MeteringMode - "manual" enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationfocusreset-manual -1 -1 -NavigationFocusReset -- -"manual" -enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationscrollbehavior-manual -1 -1 -NavigationScrollBehavior -- -"manual" -enum-value css-layout-api-1 css-layout-api 1 @@ -255,7 +231,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%mapiteratorprototype%-object +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25mapiteratorprototype%25-object 1 1 - @@ -307,16 +283,6 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#selectordef-matches 1 -1 -- -<maction> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-maction - 1 - <margin-width> @@ -329,6 +295,26 @@ https://drafts.csswg.org/css2/#value-def-margin-width 1 1 - +<margin-width> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-margin-width +1 +1 +- +<margin-width> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-margin-width +1 +1 +- <marker-ref> type svg2 @@ -429,34 +415,64 @@ https://www.w3.org/TR/css-masking-1/#typedef-masking-mode 1 1 - -<math> +<matrix/> dfn -mathml-core -mathml-core +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_matrix + 1 +- +<matrix/> +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-math +https://www.w3.org/TR/mathml4/#contm_matrix 1 - -@@match -const -ecmascript -ecmascript -1 +<matrixrow/> +dfn +mathml4 +mathml +4 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols -1 +https://w3c.github.io/mathml/#contm_matrixrow + 1 - -@@matchAll -const -ecmascript -ecmascript +<matrixrow/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_matrixrow + 1 +- +<max/> +dfn +mathml4 +mathml +4 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://w3c.github.io/mathml/#contm_max + 1 +- +<max/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_max + 1 - MAP_READ @@ -631,53 +647,53 @@ https://www.w3.org/TR/magnetometer/#enumdef-magnetometerlocalcoordinatesystem 1 1 - -MagnetometerReadingValues +MagnetometerSensorOptions dictionary magnetometer magnetometer 1 current -https://w3c.github.io/magnetometer/#dictdef-magnetometerreadingvalues +https://w3c.github.io/magnetometer/#dictdef-magnetometersensoroptions 1 1 - -MagnetometerReadingValues +MagnetometerSensorOptions dictionary magnetometer magnetometer 1 snapshot -https://www.w3.org/TR/magnetometer/#dictdef-magnetometerreadingvalues +https://www.w3.org/TR/magnetometer/#dictdef-magnetometersensoroptions 1 1 - -MagnetometerSensorOptions -dictionary -magnetometer -magnetometer +MakeArgGetter +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/magnetometer/#dictdef-magnetometersensoroptions +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makearggetter 1 1 - -MagnetometerSensorOptions -dictionary -magnetometer -magnetometer +MakeArgGetter(name, env) +abstract-op +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/magnetometer/#dictdef-magnetometersensoroptions +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makearggetter 1 1 - -MakeArgGetter(name, env) +MakeArgSetter abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makearggetter +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makeargsetter 1 1 - @@ -691,6 +707,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +MakeBasicObject +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-makebasicobject +1 +1 +- MakeBasicObject(internalSlotsList) abstract-op ecmascript @@ -701,6 +727,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-makebasicobject 1 1 - +MakeClassConstructor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makeclassconstructor +1 +1 +- MakeClassConstructor(F) abstract-op ecmascript @@ -711,7 +747,7 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -MakeConstructor(F, writablePrototype, prototype) +MakeConstructor abstract-op ecmascript ecmascript @@ -721,190 +757,466 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -MakeDate(day, time) +MakeConstructor(F, writablePrototype, prototype) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makedate +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makeconstructor 1 1 - -MakeDay(year, month, date) +MakeDataViewWithBufferWitnessRecord abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makeday +https://tc39.es/ecma262/multipage/structured-data.html#sec-makedataviewwithbufferwitnessrecord 1 1 - -MakeMatchIndicesIndexPairArray(S, indices, groupNames, hasGroups) +MakeDataViewWithBufferWitnessRecord(obj, order) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-makematchindicesindexpairarray +https://tc39.es/ecma262/multipage/structured-data.html#sec-makedataviewwithbufferwitnessrecord 1 1 - -MakeMethod(F, homeObject) +MakeDate abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makemethod +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makedate 1 1 - -MakePrivateReference(baseValue, privateIdentifier) +MakeDate(day, time) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-makeprivatereference +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makedate 1 1 - -MakeSuperPropertyReference(actualThis, propertyKey, strict) +MakeDay abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-makesuperpropertyreference +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makeday 1 1 - -MakeTime(hour, min, sec, ms) +MakeDay(year, month, date) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-maketime +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makeday 1 1 - -Map -interface +MakeFullYear +abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-objects +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makefullyear 1 1 - -Map(iterable) -constructor +MakeFullYear(year) +abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-iterable +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makefullyear 1 1 -Map - -Math -namespace +MakeMatchIndicesIndexPairArray +abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math-object +https://tc39.es/ecma262/multipage/text-processing.html#sec-makematchindicesindexpairarray 1 1 - -MathMLElement -interface -mathml-core -mathml-core +MakeMatchIndicesIndexPairArray(S, indices, groupNames, hasGroups) +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/mathml-core/#dom-mathmlelement +https://tc39.es/ecma262/multipage/text-processing.html#sec-makematchindicesindexpairarray 1 1 - -MathMLElement -interface -mathml-core -mathml-core +MakeMethod +abstract-op +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/mathml-core/#dom-mathmlelement +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makemethod 1 1 - -[[MaxChannels]] -attribute -webrtc -webrtc +MakeMethod(F, homeObject) +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/webrtc-pc/#dfn-maxchannels - +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makemethod +1 1 -RTCSctpTransport - -[[MaxChannels]] -attribute -webrtc -webrtc +MakePrivateReference +abstract-op +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-maxchannels +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-makeprivatereference 1 1 - -[[MaxMessageSize]] -attribute -webrtc -webrtc +MakePrivateReference(baseValue, privateIdentifier) +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/webrtc-pc/#dfn-maxmessagesize - +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-makeprivatereference +1 1 -RTCSctpTransport - -[[MaxMessageSize]] -attribute -webrtc -webrtc +MakeSuperPropertyReference +abstract-op +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-maxmessagesize +current +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-makesuperpropertyreference 1 1 - -[[MaxPacketLifeTime]] -attribute -webrtc -webrtc +MakeSuperPropertyReference(actualThis, propertyKey, strict) +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/webrtc-pc/#dfn-maxpacketlifetime - +https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-makesuperpropertyreference +1 1 -RTCDataChannel - -[[MaxPacketLifeTime]] -attribute -webrtc -webrtc +MakeTime +abstract-op +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-maxpacketlifetime +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-maketime 1 1 - +MakeTime(hour, min, sec, ms) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-maketime +1 +1 +- +MakeTypedArrayWithBufferWitnessRecord +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-maketypedarraywithbufferwitnessrecord +1 +1 +- +MakeTypedArrayWithBufferWitnessRecord(obj, order) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-maketypedarraywithbufferwitnessrecord +1 +1 +- +ManagedMediaSource +interface +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-managedmediasource +1 +1 +- +ManagedMediaSource +interface +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-managedmediasource +1 +1 +- +ManagedSourceBuffer +interface +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-managedsourcebuffer +1 +1 +- +ManagedSourceBuffer +interface +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-managedsourcebuffer +1 +1 +- +Map +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-objects +1 +1 +- +Map(iterable) +constructor +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-iterable +1 +1 +Map +- +Map.prototype %Symbol.iterator% () +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype-%25symbol.iterator%25 +1 +1 +Map.prototype [ %Symbol.iterator% ] ( ) +- +MatchSequence +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-matchsequence +1 +1 +- +MatchSequence(m1, m2, direction) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-matchsequence +1 +1 +- +MatchTwoAlternatives +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-matchtwoalternatives +1 +1 +- +MatchTwoAlternatives(m1, m2) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-matchtwoalternatives +1 +1 +- +Math +namespace +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math-object +1 +1 +- +MathMLElement +interface +mathml-core +mathml-core +1 +current +https://w3c.github.io/mathml-core/#dom-mathmlelement +1 +1 +- +MathMLElement +interface +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dom-mathmlelement +1 +1 +- +MaybeSimpleCaseFolding +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-maybesimplecasefolding +1 +1 +- +MaybeSimpleCaseFolding(rer, A) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-maybesimplecasefolding +1 +1 +- +[[MaxChangesThreshold]] +attribute +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-maxchangesthreshold + +1 +PressureObserver +- +[[MaxChangesThreshold]] +attribute +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-maxchangesthreshold + +1 +PressureObserver +- +[[MaxChannels]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-maxchannels + +1 +RTCSctpTransport +- +[[MaxChannels]] +attribute +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dfn-maxchannels + +1 +RTCSctpTransport +- +[[MaxMessageSize]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-maxmessagesize + +1 +RTCSctpTransport +- +[[MaxMessageSize]] +attribute +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dfn-maxmessagesize + +1 +RTCSctpTransport +- +[[MaxPacketLifeTime]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-maxpacketlifetime + +1 +RTCDataChannel +- +[[MaxPacketLifeTime]] +attribute +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dfn-maxpacketlifetime + +1 +RTCDataChannel +- [[MaxRetransmits]] attribute webrtc @@ -923,8 +1235,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-maxretransmits + 1 -1 +RTCDataChannel - [[mapping]] attribute @@ -1014,6 +1327,28 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderpassencoder-maxdrawcount-slot 1 GPURenderPassEncoder - +ma1a +value +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#valdef-av1-image-item-type-ma1a +1 +1 +AV1 Image Item Type +- +ma1b +value +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#valdef-av1-image-item-type-ma1b +1 +1 +AV1 Image Item Type +- machine-readable equivalent of the element's contents dfn html @@ -1044,6 +1379,49 @@ https://w3c.github.io/mathml-core/#dfn-maction 1 1 - +maction +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-maction +1 +1 +- +made consistent +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-make-a-type-consistent +1 +1 +CSS +- +made consistent +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-make-a-type-consistent +1 +1 +CSS +- +madeHighestScoringOtherBid +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-madehighestscoringotherbid +1 +1 +ReportWinBrowserSignals +- magFilter dict-member webgpu @@ -1174,6 +1552,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-magenta 1 1 <color> +<named-color> - magenta dfn @@ -1195,6 +1574,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-magenta 1 1 <color> +<named-color> - magic numbers dfn @@ -1588,6 +1968,16 @@ compat current https://compat.spec.whatwg.org/#majorversion +1 +- +make a background attributionsrc request +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#make-a-background-attributionsrc-request + 1 - make a component string @@ -1596,10 +1986,32 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#make-a-component-string +https://urlpattern.spec.whatwg.org/#make-a-component-string 1 - +make a type consistent +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-make-a-type-consistent +1 +1 +CSS +- +make a type consistent +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-make-a-type-consistent +1 +1 +CSS +- make active dfn html @@ -1620,6 +2032,38 @@ https://w3c.github.io/web-nfc/#dfn-make-an-nfc-tag-permanently-read-only 1 - +make background attributionsrc requests +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#make-background-attributionsrc-requests + +1 +- +make consistent +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-make-a-type-consistent +1 +1 +CSS +- +make consistent +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-make-a-type-consistent +1 +1 +CSS +- make disappear dfn websockets @@ -1630,6 +2074,16 @@ https://websockets.spec.whatwg.org/#make-disappear 1 1 - +make document unsalvageable +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#make-document-unsalvageable +1 +1 +- makeReadOnly() method web-nfc @@ -1759,35 +2213,56 @@ https://www.w3.org/TR/css-speech-1/#valdef-voice-family-male 1 voice-family - -managed state -dfn -wai-aria-1.2 -wai-aria +managed +attribute +managed-configuration +managed-configuration 1 current -https://w3c.github.io/aria/#dfn-managed-state +https://wicg.github.io/WebApiDevice/managed_config/#dom-navigator-managed +1 +1 +Navigator +- +managed data task source +dfn +device-attributes +device-attributes 1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#managed-data-task-source +1 - -managed state +managed data task source dfn -mathml-aam -mathml-aam +managed-configuration +managed-configuration 1 current -https://w3c.github.io/mathml-aam/#dfn-managed-state +https://wicg.github.io/WebApiDevice/managed_config/#managed-data-task-source 1 - managed state dfn -mathml-aam -mathml-aam +wai-aria-1.2 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-managed-state +https://w3c.github.io/aria/#dfn-managed-state +1 +- +managed state +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-managed-state 1 + - managed state dfn @@ -1829,15 +2304,15 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-managed-state - -managed states +managed state dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-managed-state - +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-managed-state 1 + - managed states dfn @@ -1858,6 +2333,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-managed-state +- +managedconfigurationchange +dfn +managed-configuration +managed-configuration +1 +current +https://wicg.github.io/WebApiDevice/managed_config/#managedconfigurationchange + +1 - manager dfn @@ -2017,6 +2502,16 @@ miniapp-manifest current https://w3c.github.io/miniapp-manifest/#dfn-miniapp-manifest-s 1 +1 +- +manifest +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-manifests + 1 - manifest @@ -2047,6 +2542,16 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-miniapp-manifest-s 1 +1 +- +manifest +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-manifests + 1 - manifest fallback chain @@ -2116,7 +2621,7 @@ appmanifest 1 current https://w3c.github.io/manifest/#dfn-manifest-url - +1 1 - manifest url @@ -2126,7 +2631,7 @@ appmanifest 1 snapshot https://www.w3.org/TR/appmanifest/#dfn-manifest-url - +1 1 - manifest's @@ -2167,6 +2672,26 @@ csp snapshot https://www.w3.org/TR/CSP3/#manifest-src 1 +1 +- +manifests +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-manifests + +1 +- +manifests +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-manifests + 1 - manual @@ -2197,10 +2722,21 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-word-boundary-detection-manual +https://drafts.csswg.org/css-text-4/#valdef-word-break-manual +1 +1 +word-break +- +manual +value +css-ui-4 +css-ui +4 +current +https://drafts.csswg.org/css-ui-4/#valdef-caret-animation-manual 1 1 -word-boundary-detection +caret-animation - manual enum-value @@ -2214,17 +2750,49 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#dom-scrollrestorati ScrollRestoration - manual +enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationfocusreset-manual +1 +1 +NavigationFocusReset +- +manual +enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationscrollbehavior-manual +1 +1 +NavigationScrollBehavior +- +manual attr-value html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-manual-keyword +https://html.spec.whatwg.org/multipage/popover.html#attr-popover-manual 1 1 html-global/popover - manual +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#attr-popover-manual-state + +1 +- +manual enum-value image-capture image-capture @@ -2284,10 +2852,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-word-boundary-detection-manual +https://www.w3.org/TR/css-text-4/#valdef-word-break-manual 1 1 -word-boundary-detection +word-break - manual enum-value @@ -2331,16 +2899,6 @@ https://dom.spec.whatwg.org/#slottable-manual-slot-assignment 1 slottable - -manual state -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-manual-state - -1 -- manually dfn manifest-incubations @@ -2373,6 +2931,27 @@ https://webaudio.github.io/web-midi-api/#dom-midiport-manufacturer 1 MIDIPort - +manufacturer +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-manufacturer +1 +1 +MIDIPort +- +manufacturer data blocklist +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#manufacturer-data-blocklist + +1 +- manufacturer specific data dfn web-bluetooth @@ -2381,6 +2960,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#manufacturer-specific-data +1 +- +manufacturer specific data +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#manufacturer-specific-data + 1 - manufacturerData @@ -2416,6 +3005,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothlescanfilterinit-ma BluetoothLEScanFilterInit - +manufacturerData +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-manufacturerdata +1 +1 +BluetoothLEScanFilter +- manufacturerName attribute webusb @@ -2468,6 +3068,38 @@ https://storage.spec.whatwg.org/#storage-bottle-map 1 storage bottle - +map +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#map + +1 +- +map +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#filter-config-map + +1 +filter config +- +map +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-registeradbeacon-map-map +1 +1 +InterestGroupReportingScriptRunnerGlobalScope/registerAdBeacon(map) +- map a url to ndef dfn web-nfc @@ -2673,6 +3305,16 @@ https://www.w3.org/TR/webxr-hit-test-1/#xrframe-map-of-hit-test-sources-to-hit-t 1 XRFrame - +map of navigables to device prompts +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#map-of-navigables-to-device-prompts + +1 +- map of new anchors dfn anchors @@ -2705,6 +3347,17 @@ https://html.spec.whatwg.org/multipage/links.html#map-of-preloaded-resources 1 - +map of settimeout and setinterval ids +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#map-of-settimeout-and-setinterval-ids +1 +1 +WindowOrWorkerGlobalScope +- map size getter dfn webidl @@ -2755,18 +3408,18 @@ https://html.spec.whatwg.org/multipage/rendering.html#map-to-the-aspect-ratio-pr 1 - -map(callbackfn, thisArg) +map(callback, thisArg) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.map +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.map 1 1 %TypedArray% - -map(callbackfn, thisArg) +map(callback, thisArg) method ecmascript ecmascript @@ -2863,27 +3516,49 @@ snapshot https://www.w3.org/TR/webgpu/#dom-gpubuffer-mapstate 1 1 -GPUBuffer +GPUBuffer +- +maplike +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-maplike +1 +1 +- +maplike declaration +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-maplike-declaration +1 +1 - -maplike +mapped url dfn -webidl -webidl +fenced-frame +fenced-frame 1 current -https://webidl.spec.whatwg.org/#dfn-maplike +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-mapped-url 1 1 +fenced frame config instance - -maplike declaration +mapped url dfn -webidl -webidl +fenced-frame +fenced-frame 1 current -https://webidl.spec.whatwg.org/#dfn-maplike-declaration +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapped-url 1 1 +fenced frame config - mappedAtCreation dict-member @@ -2929,6 +3604,46 @@ https://www.w3.org/TR/gamepad/#dom-gamepad-mapping 1 Gamepad - +mapping entries +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entries + +1 +- +mapping entries +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entries + +1 +- +mapping entry +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#mapping-entry + +1 +- +mapping entry +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry + +1 +- mapping logic dfn css-logical-1 @@ -2947,6 +3662,16 @@ css-logical snapshot https://www.w3.org/TR/css-logical-1/#mapping-logic 1 +1 +- +mappings +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#mappings + 1 - maps to the dimension property @@ -2980,6 +3705,17 @@ https://html.spec.whatwg.org/multipage/rendering.html#maps-to-the-pixel-length-p 1 - margin +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin +1 +1 +CSSPositionTryDescriptors +- +margin dfn css-box-3 css-box @@ -3051,6 +3787,37 @@ https://drafts.csswg.org/css2/#propdef-margin 1 - margin +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-margin +1 +1 +CSSPageDescriptors +- +margin +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-margin +1 +1 +- +margin +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-margin +1 +1 +- +margin dfn css22 css @@ -3209,6 +3976,26 @@ css current https://drafts.csswg.org/css2/#margin-box +1 +- +margin box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x17 +1 +1 +- +margin box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x17 +1 1 - margin box @@ -3229,16 +4016,6 @@ css-box snapshot https://www.w3.org/TR/css-box-4/#margin-box 1 -1 -- -margin box -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-margin-box - 1 - margin context @@ -3289,6 +4066,26 @@ css current https://drafts.csswg.org/css2/#margin-edge +1 +- +margin edge +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#margin-edge +1 +1 +- +margin edge +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#margin-edge +1 1 - margin edge @@ -3362,6 +4159,17 @@ https://www.w3.org/TR/css-box-4/#margin-properties 1 - margin-block +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-block +1 +1 +CSSPositionTryDescriptors +- +margin-block property css-logical-1 css-logical @@ -3382,6 +4190,17 @@ https://www.w3.org/TR/css-logical-1/#propdef-margin-block 1 - margin-block-end +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-block-end +1 +1 +CSSPositionTryDescriptors +- +margin-block-end property css-logical-1 css-logical @@ -3402,6 +4221,17 @@ https://www.w3.org/TR/css-logical-1/#propdef-margin-block-end 1 - margin-block-start +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-block-start +1 +1 +CSSPositionTryDescriptors +- +margin-block-start property css-logical-1 css-logical @@ -3422,6 +4252,17 @@ https://www.w3.org/TR/css-logical-1/#propdef-margin-block-start 1 - margin-bottom +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-bottom +1 +1 +CSSPositionTryDescriptors +- +margin-bottom property css-box-3 css-box @@ -3452,6 +4293,37 @@ https://drafts.csswg.org/css2/#propdef-margin-bottom 1 - margin-bottom +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-margin-bottom +1 +1 +CSSPageDescriptors +- +margin-bottom +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom +1 +1 +- +margin-bottom +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom +1 +1 +- +margin-bottom dfn css22 css @@ -3491,6 +4363,7 @@ https://drafts.csswg.org/css-box-3/#valdef-box-margin-box 1 1 <box> +<layout-box> <shape-box> <geometry-box> - @@ -3504,6 +4377,7 @@ https://drafts.csswg.org/css-box-4/#valdef-box-margin-box 1 1 <box> +<layout-box> <shape-box> <geometry-box> - @@ -3529,6 +4403,7 @@ https://www.w3.org/TR/css-box-3/#valdef-box-margin-box 1 1 <box> +<layout-box> <shape-box> <geometry-box> - @@ -3542,6 +4417,7 @@ https://www.w3.org/TR/css-box-4/#valdef-box-margin-box 1 1 <box> +<layout-box> <shape-box> <geometry-box> - @@ -3578,6 +4454,17 @@ https://www.w3.org/TR/css-break-4/#propdef-margin-break 1 - margin-inline +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-inline +1 +1 +CSSPositionTryDescriptors +- +margin-inline property css-logical-1 css-logical @@ -3598,6 +4485,17 @@ https://www.w3.org/TR/css-logical-1/#propdef-margin-inline 1 - margin-inline-end +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-inline-end +1 +1 +CSSPositionTryDescriptors +- +margin-inline-end property css-logical-1 css-logical @@ -3618,6 +4516,17 @@ https://www.w3.org/TR/css-logical-1/#propdef-margin-inline-end 1 - margin-inline-start +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-inline-start +1 +1 +CSSPositionTryDescriptors +- +margin-inline-start property css-logical-1 css-logical @@ -3638,6 +4547,17 @@ https://www.w3.org/TR/css-logical-1/#propdef-margin-inline-start 1 - margin-left +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-left +1 +1 +CSSPositionTryDescriptors +- +margin-left property css-box-3 css-box @@ -3668,6 +4588,37 @@ https://drafts.csswg.org/css2/#propdef-margin-left 1 - margin-left +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-margin-left +1 +1 +CSSPageDescriptors +- +margin-left +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-margin-left +1 +1 +- +margin-left +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-margin-left +1 +1 +- +margin-left dfn css22 css @@ -3698,32 +4649,74 @@ https://www.w3.org/TR/css-box-4/#propdef-margin-left 1 - margin-right +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-right +1 +1 +CSSPositionTryDescriptors +- +margin-right property css-box-3 css-box 3 current -https://drafts.csswg.org/css-box-3/#propdef-margin-right +https://drafts.csswg.org/css-box-3/#propdef-margin-right +1 +1 +- +margin-right +property +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#propdef-margin-right +1 +1 +- +margin-right +property +css22 +css +1 +current +https://drafts.csswg.org/css2/#propdef-margin-right +1 +1 +- +margin-right +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-margin-right 1 1 +CSSPageDescriptors - margin-right property -css-box-4 -css-box -4 +css2 +css +1 current -https://drafts.csswg.org/css-box-4/#propdef-margin-right +https://www.w3.org/TR/CSS21/box.html#propdef-margin-right 1 1 - margin-right property -css22 +css2 css 1 -current -https://drafts.csswg.org/css2/#propdef-margin-right +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-margin-right 1 1 - @@ -3758,6 +4751,17 @@ https://www.w3.org/TR/css-box-4/#propdef-margin-right 1 - margin-top +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margin-top +1 +1 +CSSPositionTryDescriptors +- +margin-top property css-box-3 css-box @@ -3788,6 +4792,37 @@ https://drafts.csswg.org/css2/#propdef-margin-top 1 - margin-top +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-margin-top +1 +1 +CSSPageDescriptors +- +margin-top +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-margin-top +1 +1 +- +margin-top +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-margin-top +1 +1 +- +margin-top dfn css22 css @@ -3837,6 +4872,81 @@ https://www.w3.org/TR/css-box-4/#propdef-margin-trim 1 1 - +margin::of a box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-margin-area +1 +1 +- +margin::of a box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-margin-area +1 +1 +- +marginBlock +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-marginblock +1 +1 +CSSPositionTryDescriptors +- +marginBlockEnd +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-marginblockend +1 +1 +CSSPositionTryDescriptors +- +marginBlockStart +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-marginblockstart +1 +1 +CSSPositionTryDescriptors +- +marginBottom +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-marginbottom +1 +1 +CSSPositionTryDescriptors +- +marginBottom +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-marginbottom +1 +1 +CSSPageDescriptors +- marginHeight attribute html @@ -3859,6 +4969,105 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-iframe-marginheight 1 HTMLIFrameElement - +marginInline +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margininline +1 +1 +CSSPositionTryDescriptors +- +marginInlineEnd +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margininlineend +1 +1 +CSSPositionTryDescriptors +- +marginInlineStart +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margininlinestart +1 +1 +CSSPositionTryDescriptors +- +marginLeft +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-marginleft +1 +1 +CSSPositionTryDescriptors +- +marginLeft +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-marginleft +1 +1 +CSSPageDescriptors +- +marginRight +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-marginright +1 +1 +CSSPositionTryDescriptors +- +marginRight +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-marginright +1 +1 +CSSPageDescriptors +- +marginTop +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-margintop +1 +1 +CSSPositionTryDescriptors +- +marginTop +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-margintop +1 +1 +CSSPageDescriptors +- marginWidth attribute html @@ -3931,12 +5140,24 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-mark +https://drafts.csswg.org/css-color-4/#valdef-color-mark 1 1 +<color> <system-color> - mark +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-mark + +1 +token stream +- +mark element html html @@ -3963,39 +5184,30 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-mark +https://www.w3.org/TR/css-color-4/#valdef-color-mark 1 1 +<color> <system-color> - -mark a promise as handled +mark a debug scope complete dfn -webidl -webidl +private-aggregation-api +private-aggregation-api 1 current -https://webidl.spec.whatwg.org/#mark-a-promise-as-handled +https://patcg-individual-drafts.github.io/private-aggregation-api/#mark-a-debug-scope-complete 1 1 - -mark adapters stale +mark a promise as handled dfn -webgpu -webgpu +webidl +webidl 1 current -https://gpuweb.github.io/gpuweb/#mark-adapters-stale - -1 -- -mark adapters stale -dfn -webgpu -webgpu +https://webidl.spec.whatwg.org/#mark-a-promise-as-handled 1 -snapshot -https://www.w3.org/TR/webgpu/#mark-adapters-stale - 1 - mark as handled @@ -4035,7 +5247,7 @@ paint-timing 1 snapshot https://www.w3.org/TR/paint-timing/#mark-paint-timing - +1 1 - mark resource timing @@ -4075,54 +5287,155 @@ user-timing user-timing 1 snapshot -https://www.w3.org/TR/user-timing/#dom-performance-mark +https://www.w3.org/TR/user-timing/#dom-performance-mark +1 +1 +Performance +- +mark(markName) +method +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dom-performance-mark +1 +1 +Performance +- +mark(markName) +method +user-timing +user-timing +1 +snapshot +https://www.w3.org/TR/user-timing/#dom-performance-mark +1 +1 +Performance +- +mark(markName, markOptions) +method +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dom-performance-mark +1 +1 +Performance +- +mark(markName, markOptions) +method +user-timing +user-timing +1 +snapshot +https://www.w3.org/TR/user-timing/#dom-performance-mark +1 +1 +Performance +- +mark_feature_usage +dfn +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dfn-mark_feature_usage +1 +1 +- +mark_feature_usage +dfn +user-timing +user-timing +1 +snapshot +https://www.w3.org/TR/user-timing/#dfn-mark_feature_usage +1 +1 +- +mark_fully_loaded +dfn +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dfn-mark_fully_loaded +1 +1 +- +mark_fully_loaded +dfn +user-timing +user-timing +1 +snapshot +https://www.w3.org/TR/user-timing/#dfn-mark_fully_loaded 1 1 -Performance - -mark(markName) -method +mark_fully_visible +dfn user-timing user-timing 1 current -https://w3c.github.io/user-timing/#dom-performance-mark +https://w3c.github.io/user-timing/#dfn-mark_fully_visible 1 1 -Performance - -mark(markName) -method +mark_fully_visible +dfn user-timing user-timing 1 snapshot -https://www.w3.org/TR/user-timing/#dom-performance-mark +https://www.w3.org/TR/user-timing/#dfn-mark_fully_visible 1 1 -Performance - -mark(markName, markOptions) -method +mark_interactive +dfn user-timing user-timing 1 current -https://w3c.github.io/user-timing/#dom-performance-mark +https://w3c.github.io/user-timing/#dfn-mark_interactive 1 1 -Performance - -mark(markName, markOptions) -method +mark_interactive +dfn user-timing user-timing 1 snapshot -https://www.w3.org/TR/user-timing/#dom-performance-mark +https://www.w3.org/TR/user-timing/#dfn-mark_interactive +1 +1 +- +marked indexes +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-marked-indexes + +1 +token stream +- +marker +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#marker 1 1 -Performance - marker value @@ -4542,6 +5855,17 @@ https://drafts.csswg.org/css-page-3/#descdef-page-marks @page - marks +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-marks +1 +1 +CSSPageDescriptors +- +marks descriptor css-page-3 css-page @@ -4558,9 +5882,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-marktext +https://drafts.csswg.org/css-color-4/#valdef-color-marktext 1 1 +<color> <system-color> - marktext @@ -4569,9 +5894,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-marktext +https://www.w3.org/TR/css-color-4/#valdef-color-marktext 1 1 +<color> <system-color> - markup declaration open state @@ -4604,6 +5930,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-maroon 1 1 <color> +<named-color> - maroon value @@ -4636,6 +5963,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-maroon 1 1 <color> +<named-color> - marquee element @@ -4730,6 +6058,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdatafilterinit-mask BluetoothDataFilterInit - mask +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdatafilter-mask +1 +1 +BluetoothDataFilter +- +mask element css-masking-1 css-masking @@ -5328,6 +6667,16 @@ https://www.w3.org/TR/css-masking-1/#element-attrdef-mask-maskcontentunits 1 mask - +masked +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-masked +1 +1 +- maskunits element-attr css-masking-1 @@ -5370,37 +6719,15 @@ https://drafts.csswg.org/css-grid-3/#masonry-box 1 - -masonry-auto-flow -property +masonry layout +dfn css-grid-3 css-grid 3 current -https://drafts.csswg.org/css-grid-3/#propdef-masonry-auto-flow -1 -1 -- -mat2x2 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat2x2 - -1 -syntax_kw -- -mat2x2 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat2x2 +https://drafts.csswg.org/css-grid-3/#masonry-layout 1 -syntax_kw - mat2x2f dfn @@ -5442,28 +6769,6 @@ https://www.w3.org/TR/WGSL/#mat2x2h 1 - -mat2x3 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat2x3 - -1 -syntax_kw -- -mat2x3 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat2x3 - -1 -syntax_kw -- mat2x3f dfn wgsl @@ -5504,28 +6809,6 @@ https://www.w3.org/TR/WGSL/#mat2x3h 1 - -mat2x4 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat2x4 - -1 -syntax_kw -- -mat2x4 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat2x4 - -1 -syntax_kw -- mat2x4f dfn wgsl @@ -5566,28 +6849,6 @@ https://www.w3.org/TR/WGSL/#mat2x4h 1 - -mat3x2 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat3x2 - -1 -syntax_kw -- -mat3x2 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat3x2 - -1 -syntax_kw -- mat3x2f dfn wgsl @@ -5628,28 +6889,6 @@ https://www.w3.org/TR/WGSL/#mat3x2h 1 - -mat3x3 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat3x3 - -1 -syntax_kw -- -mat3x3 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat3x3 - -1 -syntax_kw -- mat3x3f dfn wgsl @@ -5690,28 +6929,6 @@ https://www.w3.org/TR/WGSL/#mat3x3h 1 - -mat3x4 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat3x4 - -1 -syntax_kw -- -mat3x4 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat3x4 - -1 -syntax_kw -- mat3x4f dfn wgsl @@ -5752,28 +6969,6 @@ https://www.w3.org/TR/WGSL/#mat3x4h 1 - -mat4x2 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat4x2 - -1 -syntax_kw -- -mat4x2 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat4x2 - -1 -syntax_kw -- mat4x2f dfn wgsl @@ -5784,203 +6979,115 @@ https://gpuweb.github.io/gpuweb/wgsl/#mat4x2f 1 - -mat4x2f -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#mat4x2f - -1 -- -mat4x2h -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#mat4x2h - -1 -- -mat4x2h -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#mat4x2h - -1 -- -mat4x3 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat4x3 - -1 -syntax_kw -- -mat4x3 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat4x3 - -1 -syntax_kw -- -mat4x3f -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#mat4x3f - -1 -- -mat4x3f -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#mat4x3f - -1 -- -mat4x3h -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#mat4x3h - -1 -- -mat4x3h +mat4x2f dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#mat4x3h +https://www.w3.org/TR/WGSL/#mat4x2f 1 - -mat4x4 +mat4x2h dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-mat4x4 +https://gpuweb.github.io/gpuweb/wgsl/#mat4x2h 1 -syntax_kw - -mat4x4 +mat4x2h dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-mat4x4 +https://www.w3.org/TR/WGSL/#mat4x2h 1 -syntax_kw - -mat4x4f +mat4x3f dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#mat4x4f +https://gpuweb.github.io/gpuweb/wgsl/#mat4x3f 1 - -mat4x4f +mat4x3f dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#mat4x4f +https://www.w3.org/TR/WGSL/#mat4x3f 1 - -mat4x4h +mat4x3h dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#mat4x4h +https://gpuweb.github.io/gpuweb/wgsl/#mat4x3h 1 - -mat4x4h +mat4x3h dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#mat4x4h +https://www.w3.org/TR/WGSL/#mat4x3h 1 - -mat_prefix +mat4x4f dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-mat_prefix +https://gpuweb.github.io/gpuweb/wgsl/#mat4x4f 1 -recursive descent syntax - -mat_prefix +mat4x4f dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-mat_prefix +snapshot +https://www.w3.org/TR/WGSL/#mat4x4f 1 -syntax - -mat_prefix +mat4x4h dfn wgsl wgsl 1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-mat_prefix +current +https://gpuweb.github.io/gpuweb/wgsl/#mat4x4h 1 -recursive descent syntax - -mat_prefix +mat4x4h dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-mat_prefix +https://www.w3.org/TR/WGSL/#mat4x4h 1 -syntax - match dfn @@ -6030,8 +7137,62 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#match +https://urlpattern.spec.whatwg.org/#url-pattern-match +1 +1 +URL pattern +- +match +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothlescan-match + +1 +BluetoothLEScan +- +match +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#bluetoothlescanfilter-match + +1 +BluetoothLEScanFilter +- +match +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-keyword-replacement-match +1 +ad keyword replacement +- +match +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x1 +1 +1 +- +match +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x1 +1 1 - match @@ -6051,7 +7212,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-match - +1 1 CSSNumericValue - @@ -6085,23 +7246,23 @@ https://www.w3.org/TR/selectors-4/#match-a-complex-selector-against-an-element 1 - -match a css production +match a device filter dfn -css-typed-om-1 -css-typed-om +webusb +webusb 1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#match-a-css-production +current +https://wicg.github.io/webusb/#match-a-device-filter 1 - -match a device filter +match a device in prompt dfn -webusb -webusb +web-bluetooth +web-bluetooth 1 current -https://wicg.github.io/webusb/#match-a-device-filter +https://webbluetoothcg.github.io/web-bluetooth/#match-a-device-in-prompt 1 - @@ -6116,6 +7277,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue-match-a-grammar 1 CSSStyleValue - +match a grammar +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssstylevalue-match-a-grammar +1 +1 +CSSStyleValue +- match a request dfn webdriver2 @@ -6196,33 +7368,43 @@ https://www.w3.org/TR/selectors-4/#match-a-selector-against-an-element 1 1 - -match an attribution source's filter data against a filter map +match a source map url in a comment +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#match-a-source-map-url-in-a-comment + +1 +- +match an attribution source against a filter config dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#match-an-attribution-sources-filter-data-against-a-filter-map +https://wicg.github.io/attribution-reporting-api/#match-an-attribution-source-against-a-filter-config 1 - -match an attribution source's filter data against filters +match an attribution source against filters dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#match-an-attribution-sources-filter-data-against-filters +https://wicg.github.io/attribution-reporting-api/#match-an-attribution-source-against-filters 1 - -match an attribution source's filter data against filters and negated filters +match an attribution source against filters and negated filters dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#match-an-attribution-sources-filter-data-against-filters-and-negated-filters +https://wicg.github.io/attribution-reporting-api/#match-an-attribution-source-against-filters-and-negated-filters 1 - @@ -6264,6 +7446,16 @@ webhid current https://wicg.github.io/webhid/#dfn-match-any-filter +1 +- +match cookie +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#match-cookie + 1 - match cross-origin opener policy values @@ -6338,6 +7530,16 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-match-records 1 ECMAScript - +match router condition +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#match-router-condition + +1 +- match service worker registration dfn service-workers @@ -6358,27 +7560,38 @@ https://www.w3.org/TR/service-workers/#match-service-worker-registration 1 1 - -match the filter +match the grammar dfn -serial -serial +css-typed-om-1 +css-typed-om 1 current -https://wicg.github.io/serial/#dfn-match-the-filter - +https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue-match-a-grammar +1 1 +CSSStyleValue - match the grammar dfn css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue-match-a-grammar +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssstylevalue-match-a-grammar 1 1 CSSStyleValue - +match url pattern +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#match-url-pattern + +1 +- match(regexp) method ecmascript @@ -6502,6 +7715,17 @@ CacheStorage - match-parent value +css-content-3 +css-content +3 +current +https://drafts.csswg.org/css-content-3/#valdef-quotes-match-parent +1 +1 +quotes +- +match-parent +value css-line-grid-1 css-line-grid 1 @@ -6914,7 +8138,7 @@ webdriver 2 current https://w3c.github.io/webdriver/#dfn-matched-capability-serialization-algorithm - +1 1 - matched capability serialization algorithm @@ -6924,7 +8148,7 @@ webdriver 2 snapshot https://www.w3.org/TR/webdriver2/#dfn-matched-capability-serialization-algorithm - +1 1 - matcher @@ -6973,6 +8197,28 @@ ECMAScript - matches attribute +css-conditional-3 +css-conditional +3 +current +https://drafts.csswg.org/css-conditional-3/#dom-cssmediarule-matches +1 +1 +CSSMediaRule +- +matches +attribute +css-conditional-3 +css-conditional +3 +current +https://drafts.csswg.org/css-conditional-3/#dom-csssupportsrule-matches +1 +1 +CSSSupportsRule +- +matches +attribute cssom-view-1 cssom-view 1 @@ -7068,6 +8314,28 @@ document rule predicate - matches attribute +css-conditional-3 +css-conditional +3 +snapshot +https://www.w3.org/TR/css-conditional-3/#dom-cssmediarule-matches +1 +1 +CSSMediaRule +- +matches +attribute +css-conditional-3 +css-conditional +3 +snapshot +https://www.w3.org/TR/css-conditional-3/#dom-csssupportsrule-matches +1 +1 +CSSSupportsRule +- +matches +attribute cssom-view-1 cssom-view 1 @@ -7119,13 +8387,45 @@ https://webbluetoothcg.github.io/web-bluetooth/#matches-a-filter 1 - +matches a url +dfn +prefetch +prefetch +1 +current +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-matches-a-url +1 +1 +prefetch record +- +matches a url +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record-matches-a-url +1 +1 +prerender record +- matches about:blank dfn html html 1 current -https://html.spec.whatwg.org/multipage/urls-and-fetching.html#matches-about:blank +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#matches-about%3Ablank + +1 +- +matches about:srcdoc +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/urls-and-fetching.html#matches-about%3Asrcdoc 1 - @@ -7227,7 +8527,7 @@ serial serial 1 current -https://wicg.github.io/serial/#dfn-match-the-filter +https://wicg.github.io/serial/#dfn-matches-the-filter 1 - @@ -7502,6 +8802,16 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-size-math 1 font-size - +math +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-math +1 +1 +- math axis dfn mathml-core @@ -7550,6 +8860,16 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-math-content-box +1 +- +math content box +dfn +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-math-content-box + 1 - math function @@ -7572,6 +8892,28 @@ https://www.w3.org/TR/css-values-4/#math-function 1 1 - +math-auto +value +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#valdef-text-transform-math-auto +1 +1 +text-transform +- +math-auto +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-transform-math-auto +1 +1 +text-transform +- math-depth property mathml-core @@ -7583,13 +8925,13 @@ https://w3c.github.io/mathml-core/#propdef-math-depth 1 - math-depth -dfn +property mathml-core mathml-core 1 snapshot -https://www.w3.org/TR/mathml-core/#dfn-math-depth - +https://www.w3.org/TR/mathml-core/#propdef-math-depth +1 1 - math-shift @@ -7603,13 +8945,13 @@ https://w3c.github.io/mathml-core/#propdef-math-shift 1 - math-shift -dfn +property mathml-core mathml-core 1 snapshot -https://www.w3.org/TR/mathml-core/#dfn-math-shift - +https://www.w3.org/TR/mathml-core/#propdef-math-shift +1 1 - math-style @@ -7623,13 +8965,13 @@ https://w3c.github.io/mathml-core/#propdef-math-style 1 - math-style -dfn +property mathml-core mathml-core 1 snapshot -https://www.w3.org/TR/mathml-core/#dfn-math-style - +https://www.w3.org/TR/mathml-core/#propdef-math-style +1 1 - mathbackground @@ -7643,13 +8985,13 @@ https://w3c.github.io/mathml-core/#dfn-mathbackground 1 - mathbackground -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-mathbackground - +1 1 - mathcolor @@ -7663,13 +9005,13 @@ https://w3c.github.io/mathml-core/#dfn-mathcolor 1 - mathcolor -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-mathcolor - +1 1 - mathematical @@ -7849,13 +9191,13 @@ https://w3c.github.io/mathml-core/#dfn-mathsize 1 - mathsize -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-mathsize - +1 1 - mathtopaccentattachment @@ -7889,13 +9231,13 @@ https://w3c.github.io/mathml-core/#dfn-mathvariant 1 - mathvariant -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-mathvariant - +1 1 - matmul(a, b) @@ -7920,6 +9262,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul 1 MLGraphBuilder - +matmul(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-matmul +1 +1 +MLGraphBuilder +- +matmul(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul +1 +1 +MLGraphBuilder +- matrix argument css-typed-om-1 @@ -8095,6 +9459,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixcomponent- 1 1 CSSMatrixComponent/CSSMatrixComponent(matrix, options) +CSSMatrixComponent/constructor(matrix, options) +CSSMatrixComponent/CSSMatrixComponent(matrix) +CSSMatrixComponent/constructor(matrix) - matrix attribute @@ -8422,17 +9789,6 @@ https://w3c.github.io/mediacapture-main/#dom-ulongrange-max ULongRange - max -dict-member -proximity -proximity -1 -current -https://w3c.github.io/proximity/#dom-proximityreadingvalues-max -1 -1 -ProximityReadingValues -- -max attribute proximity proximity @@ -8475,17 +9831,6 @@ https://webaudio.github.io/web-audio-api/#dom-channelcountmode-max ChannelCountMode - max -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-max -1 -1 -CSSMathOperator -- -max dict-member image-capture image-capture @@ -8519,17 +9864,6 @@ https://www.w3.org/TR/mediacapture-streams/#dom-ulongrange-max ULongRange - max -dict-member -proximity -proximity -1 -snapshot -https://www.w3.org/TR/proximity/#dom-proximityreadingvalues-max -1 -1 -ProximityReadingValues -- -max attribute proximity proximity @@ -8571,83 +9905,94 @@ https://www.w3.org/TR/webdriver2/#dfn-max 1 - -max aggregatable dedup keys per trigger +max aggregatable attribution reports per attribution destination dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-aggregatable-dedup-keys-per-trigger +https://wicg.github.io/attribution-reporting-api/#max-aggregatable-attribution-reports-per-attribution-destination 1 - -max aggregatable reports per attribution destination +max aggregatable debug budget per rate-limit window dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-aggregatable-reports-per-attribution-destination +https://wicg.github.io/attribution-reporting-api/#max-aggregatable-debug-budget-per-rate-limit-window 1 - -max aggregatable trigger data per trigger +max aggregatable reports per source dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-aggregatable-trigger-data-per-trigger +https://wicg.github.io/attribution-reporting-api/#max-aggregatable-reports-per-source 1 - -max aggregation keys per attribution +max aggregation keys per source registration dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-aggregation-keys-per-attribution +https://wicg.github.io/attribution-reporting-api/#max-aggregation-keys-per-source-registration 1 - -max attribution reporting endpoints per rate-limit window +max attribution reporting origins per rate-limit window dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-attribution-reporting-endpoints-per-rate-limit-window +https://wicg.github.io/attribution-reporting-api/#max-attribution-reporting-origins-per-rate-limit-window 1 - -max attributions per event source +max attribution scopes per source dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-attributions-per-event-source +https://wicg.github.io/attribution-reporting-api/#max-attribution-scopes-per-source 1 - -max attributions per navigation source +max attributions per rate-limit window dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-attributions-per-navigation-source +https://wicg.github.io/attribution-reporting-api/#max-attributions-per-rate-limit-window 1 - -max attributions per rate-limit window +max attributions per source dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-attributions-per-rate-limit-window +https://wicg.github.io/attribution-reporting-api/#randomized-response-output-configuration-max-attributions-per-source + +1 +randomized response output configuration +- +max batch size +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#max-batch-size 1 - @@ -8669,6 +10014,16 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#max-bindings-per-shader-stage +1 +- +max contributions per aggregatable debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-contributions-per-aggregatable-debug-report + 1 - max cross size @@ -8721,13 +10076,84 @@ https://wicg.github.io/attribution-reporting-api/#max-destinations-covered-by-un 1 - -max entries per filter map +max destinations per rate-limit window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-destinations-per-rate-limit-window + +1 +- +max destinations per source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-destinations-per-source + +1 +- +max destinations per source reporting site per day +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-destinations-per-source-reporting-site-per-day + +1 +- +max distinct trigger data per source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-distinct-trigger-data-per-source + +1 +- +max entries per filter data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-entries-per-filter-data + +1 +- +max event states +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-scopes-max-event-states + +1 +attribution scopes +- +max event-level attribution scopes channel capacity per source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-event-level-attribution-scopes-channel-capacity-per-source + +1 +- +max event-level channel capacity per source dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-entries-per-filter-map +https://wicg.github.io/attribution-reporting-api/#max-event-level-channel-capacity-per-source 1 - @@ -8801,13 +10227,53 @@ https://www.w3.org/TR/css-ui-3/#max-inner-width 1 - -max items in filters +max interest groups total size per owner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#max-interest-groups-total-size-per-owner + +1 +- +max length of attribution scope for source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-length-of-attribution-scope-for-source + +1 +- +max length per aggregation key identifier +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-length-per-aggregation-key-identifier + +1 +- +max length per filter string +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-length-per-filter-string + +1 +- +max length per trigger context id dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-items-in-filters +https://wicg.github.io/attribution-reporting-api/#max-length-per-trigger-context-id 1 - @@ -8851,6 +10317,27 @@ https://www.w3.org/TR/css-flexbox-1/#max-main-size-property 1 1 - +max negative interest groups per owner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#max-negative-interest-groups-per-owner + +1 +- +max number of event-level reports +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-max-number-of-event-level-reports + +1 +attribution source +- max pending sources per source origin dfn attribution-reporting-api @@ -8879,6 +10366,46 @@ compute-pressure snapshot https://www.w3.org/TR/compute-pressure/#dfn-max-queued-records +1 +- +max regular interest groups per owner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#max-regular-interest-groups-per-owner + +1 +- +max settable event-level attributions per source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-settable-event-level-attributions-per-source + +1 +- +max settable event-level epsilon +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-settable-event-level-epsilon + +1 +- +max settable event-level report windows +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-settable-event-level-report-windows + 1 - max shader stages per pipeline @@ -8941,23 +10468,23 @@ https://www.w3.org/TR/css-sizing-3/#max-size-properties 1 1 - -max source expiry +max source reporting origins per rate-limit window dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-source-expiry +https://wicg.github.io/attribution-reporting-api/#max-source-reporting-origins-per-rate-limit-window 1 - -max source reporting endpoints per rate-limit window +max source reporting origins per source reporting site dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-source-reporting-endpoints-per-rate-limit-window +https://wicg.github.io/attribution-reporting-api/#max-source-reporting-origins-per-source-reporting-site 1 - @@ -9001,6 +10528,38 @@ https://www.w3.org/TR/css-grid-2/#max-track-sizing-function 1 - +max trigger-state cardinality +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#max-trigger-state-cardinality + +1 +- +max trusted bidding signals url length +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-max-trusted-bidding-signals-url-length + +1 +interest group +- +max trusted scoring signals url length +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-max-trusted-scoring-signals-url-length + +1 +auction config +- max usage time period dfn fido-v2.1 @@ -9012,13 +10571,13 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 PUAToken - -max values per filter entry +max values per filter data entry dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#max-values-per-filter-entry +https://wicg.github.io/attribution-reporting-api/#max-values-per-filter-data-entry 1 - @@ -9064,6 +10623,17 @@ https://drafts.csswg.org/css-values-4/#funcdef-max 1 - max() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-max +1 +1 +CSSNumericValue +- +max() function css-values-4 css-values @@ -9117,7 +10687,29 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-max 1 MLGraphBuilder - -max(a, b) +max(a, b) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max +1 +1 +MLGraphBuilder +- +max(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-max +1 +1 +MLGraphBuilder +- +max(a, b, options) method webnn webnn @@ -9140,6 +10732,17 @@ https://fetch.spec.whatwg.org/#concept-cache-max-age cache entry - max-block-size +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-max-block-size +1 +1 +CSSPositionTryDescriptors +- +max-block-size property css-logical-1 css-logical @@ -9423,16 +11026,6 @@ css-sizing snapshot https://www.w3.org/TR/css-sizing-3/#max-content-inline-size 1 -1 -- -max-content inline size -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-max-content-inline-size - 1 - max-content inline-size contribution @@ -9596,6 +11189,17 @@ https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-table 1 - max-height +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-max-height +1 +1 +CSSPositionTryDescriptors +- +max-height property css-sizing-3 css-sizing @@ -9616,6 +11220,26 @@ https://drafts.csswg.org/css2/#propdef-max-height 1 - max-height +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height +1 +1 +- +max-height +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height +1 +1 +- +max-height dfn css22 css @@ -9636,6 +11260,17 @@ https://www.w3.org/TR/css-sizing-3/#propdef-max-height 1 - max-inline-size +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-max-inline-size +1 +1 +CSSPositionTryDescriptors +- +max-inline-size property css-logical-1 css-logical @@ -9667,16 +11302,6 @@ https://drafts.csswg.org/css-overflow-4/#propdef-max-lines - max-lines property -css-overflow-3 -css-overflow -3 -snapshot -https://www.w3.org/TR/css-overflow-3/#propdef-max-lines -1 -1 -- -max-lines -property css-overflow-4 css-overflow 4 @@ -9686,6 +11311,17 @@ https://www.w3.org/TR/css-overflow-4/#propdef-max-lines 1 - max-width +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-max-width +1 +1 +CSSPositionTryDescriptors +- +max-width property css-sizing-3 css-sizing @@ -9706,6 +11342,26 @@ https://drafts.csswg.org/css2/#propdef-max-width 1 - max-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width +1 +1 +- +max-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width +1 +1 +- +max-width dfn css22 css @@ -9824,6 +11480,50 @@ https://www.w3.org/TR/webgpu/#dom-supported-limits-maxbindgroups 1 supported limits - +maxBindGroupsPlusVertexBuffers +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpusupportedlimits-maxbindgroupsplusvertexbuffers +1 +1 +GPUSupportedLimits +- +maxBindGroupsPlusVertexBuffers +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-supported-limits-maxbindgroupsplusvertexbuffers +1 +1 +supported limits +- +maxBindGroupsPlusVertexBuffers +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpusupportedlimits-maxbindgroupsplusvertexbuffers +1 +1 +GPUSupportedLimits +- +maxBindGroupsPlusVertexBuffers +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-supported-limits-maxbindgroupsplusvertexbuffers +1 +1 +supported limits +- maxBindingsPerBindGroup attribute webgpu @@ -9890,6 +11590,17 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpencodingparameters-maxbitrate 1 RTCRtpEncodingParameters - +maxBlockSize +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-maxblocksize +1 +1 +CSSPositionTryDescriptors +- maxBufferSize attribute webgpu @@ -9967,6 +11678,28 @@ https://www.w3.org/TR/webgpu/#dom-supported-limits-maxbuffersize 1 supported limits - +maxByteLength +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.maxbytelength +1 +1 +ArrayBuffer +- +maxByteLength +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.maxbytelength +1 +1 +SharedArrayBuffer +- maxChannelCount attribute webaudio @@ -10715,6 +12448,39 @@ https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters-maxframerate 1 RTCRtpEncodingParameters - +maxFramerate +dict-member +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtcrtpencodingparameters-maxframerate +1 +1 +RTCRtpEncodingParameters +- +maxHeight +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-maxheight +1 +1 +CSSPositionTryDescriptors +- +maxInlineSize +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-maxinlinesize +1 +1 +CSSPositionTryDescriptors +- maxInterStageShaderComponents attribute webgpu @@ -11067,50 +12833,6 @@ https://www.w3.org/TR/webgpu/#dom-supported-limits-maxsamplerspershaderstage 1 supported limits - -maxSamplingFrequency -dict-member -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensor-maxsamplingfrequency -1 -1 -MockSensor -- -maxSamplingFrequency -dict-member -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensorconfiguration-maxsamplingfrequency -1 -1 -MockSensorConfiguration -- -maxSamplingFrequency -dict-member -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensor-maxsamplingfrequency -1 -1 -MockSensor -- -maxSamplingFrequency -dict-member -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensorconfiguration-maxsamplingfrequency -1 -1 -MockSensorConfiguration -- maxStorageBufferBindingSize attribute webgpu @@ -11441,6 +13163,28 @@ https://www.w3.org/TR/pointerevents3/#dom-navigator-maxtouchpoints 1 Navigator - +maxTrustedBiddingSignalsURLLength +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-maxtrustedbiddingsignalsurllength +1 +1 +GenerateBidInterestGroup +- +maxTrustedScoringSignalsURLLength +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-maxtrustedscoringsignalsurllength +1 +1 +AuctionAdConfig +- maxUniformBufferBindingSize attribute webgpu @@ -11727,9 +13471,20 @@ https://www.w3.org/TR/webgpu/#dom-supported-limits-maxvertexbuffers 1 supported limits - +maxWidth +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-maxwidth +1 +1 +CSSPositionTryDescriptors +- max_age dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -11739,24 +13494,46 @@ https://w3c.github.io/network-error-logging/#dfn-max_age - max_age dfn -network-error-logging-1 +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-max_age +1 +1 +network_reporting_endpoints +- +max_age +dfn +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-max_age +https://www.w3.org/TR/network-error-logging/#dfn-max_age 1 - -maxage +max_event_level_reports dfn -tracking-dnt -tracking-dnt +attribution-reporting-api +attribution-reporting-api 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata-maxage +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-max_event_level_reports + +1 +source-registration JSON key +- +max_event_states +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-max_event_states 1 -trackingexdata +source-registration JSON key - maxbuffersize dfn @@ -11809,6 +13586,17 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 getInfo - +maxentryindex +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-maxentryindex + +1 +Format 1 Patch Map +- maximize the window dfn webdriver2 @@ -11967,26 +13755,6 @@ https://www.w3.org/TR/webgpu/#limit-class-maximum 1 limit class - -maximum active sessions -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-maximum-active-sessions - -1 -- -maximum active sessions -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-maximum-active-sessions - -1 -- maximum allowed code point dfn css-syntax-3 @@ -12005,6 +13773,16 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#maximum-allowed-code-point 1 +1 +- +maximum allowed target +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-maximum-allowed-target + 1 - maximum allowed value length @@ -12088,6 +13866,28 @@ https://www.w3.org/TR/webxr/#maximum-inline-field-of-view 1 - +maximum length +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#key-maximum-length + +1 +key +- +maximum length +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#value-maximum-length + +1 +value +- maximum mipLevel count abstract-op webgpu @@ -12139,6 +13939,17 @@ https://notifications.spec.whatwg.org/#maximum-number-of-actions 1 - +maximum number of configs +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-maximum-number-of-configs + +1 +fenced frame config mapping +- maximum number of retries dfn periodic-background-sync @@ -12149,6 +13960,82 @@ https://wicg.github.io/periodic-background-sync/#maximum-number-of-retries 1 - +maximum report contributions +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#maximum-report-contributions + +1 +- +maximum sampling frequency +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#device-sensor-maximum-sampling-frequency + +1 +device sensor +- +maximum sampling frequency +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#sensor-type-maximum-sampling-frequency +1 +1 +sensor type +- +maximum sampling frequency +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#virtual-sensor-maximum-sampling-frequency + +1 +virtual sensor +- +maximum sampling frequency +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#device-sensor-maximum-sampling-frequency + +1 +device sensor +- +maximum sampling frequency +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#sensor-type-maximum-sampling-frequency +1 +1 +sensor type +- +maximum sampling frequency +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-maximum-sampling-frequency + +1 +virtual sensor +- maximum size dfn css-sizing-3 @@ -12209,6 +14096,17 @@ https://www.w3.org/TR/webcodecs/#maximum-value 1 - +maximum version string length +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-maximum-version-string-length + +1 +browsing topics types +- maximum width dfn css-sizing-3 @@ -12235,7 +14133,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-positionoptions-maximumage +https://w3c.github.io/geolocation/#dom-positionoptions-maximumage 1 1 PositionOptions @@ -12262,6 +14160,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacevariationaxis-maximumva 1 FontFaceVariationAxis - +maximumValue +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacevariationaxis-maximumvalue +1 +1 +FontFaceVariationAxis +- maxlength element-attr html @@ -12338,6 +14247,17 @@ https://www.w3.org/TR/mathml-core/#dfn-maxsize 1 - +maxsize +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-maxsize-0 +1 +1 +mo +- maxtemplatefriendlyname dfn fido-v2.1 @@ -12376,6 +14296,26 @@ css current https://drafts.csswg.org/css2/#may +1 +- +may +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x8 +1 +1 +- +may +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x8 +1 1 - may have a guest browsing context @@ -12386,6 +14326,26 @@ portals current https://wicg.github.io/portals/#may-have-a-guest-browsing-context +1 +- +may receive data +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-may-receive-data + +1 +- +may receive data +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-may-receive-data + 1 - mayUseGATT @@ -12416,17 +14376,207 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#maybe-add-a-part-from-the-pending-fixed-value +https://urlpattern.spec.whatwg.org/#maybe-add-a-part-from-the-pending-fixed-value + +1 +- +maybe defer and then complete trigger attribution +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#maybe-defer-and-then-complete-trigger-attribution + +1 +- +maybe obtain an interest group +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#maybe-obtain-an-interest-group + +1 +- +maybe replace event-level report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#maybe-replace-event-level-report + +1 +- +maybe send pointerdown event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointerdown-event + +1 +- +maybe send pointerdown event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointerdown-event + +1 +- +maybe send pointerenter event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointerenter-event + +1 +- +maybe send pointerenter event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointerenter-event + +1 +- +maybe send pointerleave event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointerleave-event + +1 +- +maybe send pointerleave event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointerleave-event + +1 +- +maybe send pointermove event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointermove-event + +1 +- +maybe send pointermove event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointermove-event + +1 +- +maybe send pointerout event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointerout-event + +1 +- +maybe send pointerout event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointerout-event + +1 +- +maybe send pointerover event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointerover-event 1 - -maybe continue the navigate event +maybe send pointerover event dfn -navigation-api -navigation-api +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointerover-event + +1 +- +maybe send pointerup event +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#maybe-send-pointerup-event + +1 +- +maybe send pointerup event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-send-pointerup-event + +1 +- +maybe set the upcoming non-traverse api method tracker +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#maybe-set-the-upcoming-non-traverse-api-method-tracker + +1 +- +maybe show context menu +dfn +uievents +uievents 1 current -https://wicg.github.io/navigation-api/#maybe-continue-the-navigate-event +https://w3c.github.io/uievents/#maybe-show-context-menu + +1 +- +maybe show context menu +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#maybe-show-context-menu 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-me.data b/bikeshed/spec-data/readonly/anchors/anchors-me.data index 483bdce77f..1cee3f948f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-me.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-me.data @@ -44,6 +44,17 @@ AutoplayPolicyMediaType - "medium" enum-value +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmeshquality-medium +1 +1 +XRMeshQuality +- +"medium" +enum-value webrtc-priority webrtc-priority 1 @@ -108,6 +119,26 @@ https://www.w3.org/TR/webxr-hit-test-1/#dom-xrhittesttrackabletype-mesh 1 XRHitTestTrackableType - +<mean/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_mean + +1 +- +<mean/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_mean + +1 +- <media-and> type mediaqueries-4 @@ -388,6 +419,16 @@ https://www.w3.org/TR/mediaqueries-5/#typedef-media-or 1 1 - +<media-progress()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-media-progress +1 +1 +- <media-query-list> type mediaqueries-4 @@ -508,13 +549,23 @@ https://www.w3.org/TR/mediaqueries-5/#typedef-media-type 1 1 - -<merror> +<median/> dfn -mathml-core -mathml-core +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_median + 1 +- +<median/> +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-merror +https://www.w3.org/TR/mathml4/#contm_median 1 - @@ -938,24 +989,44 @@ https://www.w3.org/TR/media-capabilities/#enumdef-mediaencodingtype - MediaEncryptedEvent interface +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedevent 1 1 - +MediaEncryptedEvent +interface +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedevent +1 +1 +- MediaEncryptedEventInit dictionary +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediaencryptedeventinit 1 1 - +MediaEncryptedEventInit +dictionary +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediaencryptedeventinit +1 +1 +- MediaError interface html @@ -988,134 +1059,284 @@ https://www.w3.org/TR/mediasession/#dictdef-mediaimage - MediaKeyMessageEvent interface +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageevent 1 1 - +MediaKeyMessageEvent +interface +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageevent +1 +1 +- MediaKeyMessageEventInit dictionary +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageeventinit 1 1 - +MediaKeyMessageEventInit +dictionary +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageeventinit +1 +1 +- MediaKeyMessageType enum +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessagetype 1 1 - +MediaKeyMessageType +enum +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessagetype +1 +1 +- MediaKeySession interface +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession 1 1 - +MediaKeySession +interface +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession +1 +1 +- MediaKeySessionClosedReason enum +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessionclosedreason 1 1 - -MediaKeySessionType +MediaKeySessionClosedReason enum +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessionclosedreason 1 +1 +- +MediaKeySessionType +enum +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessiontype 1 1 - -MediaKeyStatus +MediaKeySessionType enum +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessiontype +1 1 +- +MediaKeyStatus +enum +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus 1 1 - +MediaKeyStatus +enum +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus +1 +1 +- MediaKeyStatusMap interface +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap 1 1 - -MediaKeySystemAccess +MediaKeyStatusMap interface +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatusmap +1 1 +- +MediaKeySystemAccess +interface +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemaccess 1 1 - +MediaKeySystemAccess +interface +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemaccess +1 +1 +- MediaKeySystemConfiguration dictionary +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration 1 1 - -MediaKeySystemMediaCapability +MediaKeySystemConfiguration dictionary +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration +1 1 +- +MediaKeySystemMediaCapability +dictionary +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability 1 1 - +MediaKeySystemMediaCapability +dictionary +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemmediacapability +1 +1 +- MediaKeys interface +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dom-mediakeys +1 +1 +- +MediaKeys +interface +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys +1 1 +- +MediaKeysPolicy +dictionary +encrypted-media-2 +encrypted-media +2 current -https://w3c.github.io/encrypted-media/#dom-mediakeys +https://w3c.github.io/encrypted-media/#dom-mediakeyspolicy +1 +1 +- +MediaKeysPolicy +dictionary +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeyspolicy 1 1 - MediaKeysRequirement enum +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysrequirement 1 1 - +MediaKeysRequirement +enum +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysrequirement +1 +1 +- MediaList interface cssom-1 @@ -1518,6 +1739,26 @@ https://www.w3.org/TR/mediasession/#callbackdef-mediasessionactionhandler 1 1 - +MediaSessionCaptureActionDetails +dictionary +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dictdef-mediasessioncaptureactiondetails +1 +1 +- +MediaSessionCaptureActionDetails +dictionary +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dictdef-mediasessioncaptureactiondetails +1 +1 +- MediaSessionPlaybackState enum mediasession @@ -1538,43 +1779,83 @@ https://www.w3.org/TR/mediasession/#enumdef-mediasessionplaybackstate 1 1 - -MediaSettingsRange +MediaSessionSeekActionDetails dictionary -image-capture -image-capture +mediasession +mediasession 1 current -https://w3c.github.io/mediacapture-image/#dictdef-mediasettingsrange +https://w3c.github.io/mediasession/#dictdef-mediasessionseekactiondetails 1 1 - -MediaSettingsRange +MediaSessionSeekActionDetails dictionary -image-capture -image-capture +mediasession +mediasession 1 snapshot -https://www.w3.org/TR/image-capture/#dictdef-mediasettingsrange +https://www.w3.org/TR/mediasession/#dictdef-mediasessionseekactiondetails 1 1 - -MediaSource -interface -media-source-2 -media-source -2 +MediaSessionSeekToActionDetails +dictionary +mediasession +mediasession +1 current -https://w3c.github.io/media-source/#dom-mediasource +https://w3c.github.io/mediasession/#dictdef-mediasessionseektoactiondetails 1 1 - -MediaSource -interface -media-source-2 -media-source -2 -snapshot -https://www.w3.org/TR/media-source-2/#dom-mediasource +MediaSessionSeekToActionDetails +dictionary +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dictdef-mediasessionseektoactiondetails +1 +1 +- +MediaSettingsRange +dictionary +image-capture +image-capture +1 +current +https://w3c.github.io/mediacapture-image/#dictdef-mediasettingsrange +1 +1 +- +MediaSettingsRange +dictionary +image-capture +image-capture +1 +snapshot +https://www.w3.org/TR/image-capture/#dictdef-mediasettingsrange +1 +1 +- +MediaSource +interface +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-mediasource +1 +1 +- +MediaSource +interface +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-mediasource 1 1 - @@ -2181,6 +2462,28 @@ https://wicg.github.io/performance-measure-memory/#dictdef-memorymeasurement 1 1 - +Merge +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-usage-scope-merge +1 +1 +usage scope +- +Merge +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-usage-scope-merge +1 +1 +usage scope +- MessageChannel interface html @@ -2455,7 +2758,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-batchnormalizatio 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) - mean argument @@ -2467,7 +2769,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-va 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) - measurable properties dfn @@ -2633,16 +2934,6 @@ https://drafts.csswg.org/css-conditional-3/#dom-cssmediarule-media CSSMediaRule - media -at-rule -css22 -css -1 -current -https://drafts.csswg.org/css2/#at-ruledef-media%E2%91%A0 -1 -1 -- -media dfn cssom-1 cssom @@ -2852,6 +3143,26 @@ https://svgwg.org/svg2-draft/styling.html#__svg__SVGStyleElement__media SVGStyleElement - media +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#x2 +1 +1 +- +media +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#x2 +1 +1 +- +media element-attr svg2 svg @@ -3112,6 +3423,16 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-media-description +1 +- +media element +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#media-element +1 1 - media element attributes @@ -3172,16 +3493,6 @@ remote-playback snapshot https://www.w3.org/TR/remote-playback/#dfn-media-element-state -1 -- -media elements -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/media.html#media-element - 1 - media feature @@ -3313,6 +3624,26 @@ snapshot https://www.w3.org/TR/remote-playback/#dfn-media-flinging +- +media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#x4 +1 +1 +- +media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#x4 +1 +1 - media groups dfn @@ -3464,6 +3795,28 @@ https://wicg.github.io/media-feeds/#dfn-media-logo 1 - +media metadata +dfn +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#chapterinformation-media-metadata + +1 +ChapterInformation +- +media metadata +dfn +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#chapterinformation-media-metadata + +1 +ChapterInformation +- media mirroring dfn remote-playback @@ -3741,9 +4094,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#media-segment +https://w3c.github.io/media-source/#dfn-media-segment +1 1 - - media segment dfn @@ -3751,9 +4104,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#media-segment +https://www.w3.org/TR/media-source-2/#dfn-media-segment +1 1 - - media sender dfn @@ -3967,6 +4320,17 @@ https://www.w3.org/TR/mediaqueries-5/#media-type 1 1 - +media type +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-media-type + +1 +verification result +- media() function css-conditional-5 @@ -3995,6 +4359,26 @@ css current https://drafts.csswg.org/css2/#conditional-import +1 +- +media-dependent import +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#x9 +1 +1 +- +media-dependent import +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#x9 +1 1 - media-feed link relation type @@ -4029,6 +4413,16 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcstatstype-media-playout 1 RTCStatsType - +media-progress() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-media-progress +1 +1 +- media-resource-specific text track dfn html @@ -4101,26 +4495,6 @@ csp snapshot https://www.w3.org/TR/CSP3/#media-src 1 -1 -- -media-time -dfn -openscreenprotocol -openscreenprotocol -1 -current -https://w3c.github.io/openscreenprotocol/#media-time - -1 -- -media-time -dfn -openscreenprotocol -openscreenprotocol -1 -snapshot -https://www.w3.org/TR/openscreenprotocol/#media-time - 1 - mediaCapabilities @@ -4279,15 +4653,26 @@ MediaElementAudioSourceOptions - mediaKeys attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-mediakeys 1 1 HTMLMediaElement - +mediaKeys +attribute +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-htmlmediaelement-mediakeys +1 +1 +HTMLMediaElement +- mediaSession attribute mediasession @@ -4530,270 +4915,97 @@ https://w3c.github.io/web-nfc/#dom-ndefrecord-mediatype 1 NDEFRecord - -mediaType -dict-member -web-nfc -web-nfc -1 -current -https://w3c.github.io/web-nfc/#dom-ndefrecordinit-mediatype -1 -1 -NDEFRecordInit -- -mediaType -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-mediatype -1 - -RTCRtpStreamStats -- -mediaType -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcrtpstreamstats-mediatype -1 - -RTCRtpStreamStats -- -mediadevices -dfn -screen-capture -screen-capture -1 -current -https://w3c.github.io/mediacapture-screen-share/#dom-mediadevices - -1 -- -mediadevices -dfn -mediacapture-viewport -mediacapture-viewport -1 -current -https://w3c.github.io/mediacapture-viewport/#dom-mediadevices - -1 -- -mediadevices -dfn -mediacapture-viewport -mediacapture-viewport -1 -snapshot -https://www.w3.org/TR/mediacapture-viewport/#dom-mediadevices - -1 -- -mediadevices -dfn -screen-capture -screen-capture -1 -snapshot -https://www.w3.org/TR/screen-capture/#dom-mediadevices - -1 -- -mediaelement -enum-value -autoplay-detection -autoplay-detection -1 -current -https://w3c.github.io/autoplay/#dom-autoplaypolicymediatype-mediaelement -1 -1 -AutoplayPolicyMediaType -- -mediaelement -enum-value -autoplay-detection -autoplay-detection -1 -snapshot -https://www.w3.org/TR/autoplay-detection/#dom-autoplaypolicymediatype-mediaelement -1 -1 -AutoplayPolicyMediaType -- -mediaelementaudiosourcenode -interface -webaudio -webaudio -1 -snapshot -https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode -1 -1 -- -mediaelementaudiosourceoptions -dictionary -webaudio -webaudio -1 -snapshot -https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions -1 -1 -- -mediaencryptedevent -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediaencryptedevent - -1 -- -mediaencryptedeventinit -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediaencryptedeventinit - -1 -- -mediakeymessageevent -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessageevent - -1 -- -mediakeymessageeventinit -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessageeventinit - -1 -- -mediakeymessagetype -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessagetype - -1 -- -mediakeys -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-htmlmediaelement-mediakeys - -1 -htmlmediaelement -- -mediakeys -dfn -encrypted-media -encrypted-media +mediaType +dict-member +web-nfc +web-nfc +1 +current +https://w3c.github.io/web-nfc/#dom-ndefrecordinit-mediatype 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeys - 1 +NDEFRecordInit - -mediakeysession +mediadevices dfn -encrypted-media -encrypted-media +screen-capture +screen-capture 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession +current +https://w3c.github.io/mediacapture-screen-share/#dom-mediadevices 1 - -mediakeysessiontype +mediadevices dfn -encrypted-media -encrypted-media +mediacapture-viewport +mediacapture-viewport 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysessiontype +current +https://w3c.github.io/mediacapture-viewport/#dom-mediadevices 1 - -mediakeysrequirement +mediadevices dfn -encrypted-media -encrypted-media +mediacapture-viewport +mediacapture-viewport 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysrequirement +https://www.w3.org/TR/mediacapture-viewport/#dom-mediadevices 1 - -mediakeystatus +mediadevices dfn -encrypted-media -encrypted-media +screen-capture +screen-capture 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus +https://www.w3.org/TR/screen-capture/#dom-mediadevices 1 - -mediakeystatusmap -dfn -encrypted-media -encrypted-media +mediaelement +enum-value +autoplay-detection +autoplay-detection 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap - +current +https://w3c.github.io/autoplay/#dom-autoplaypolicymediatype-mediaelement 1 +1 +AutoplayPolicyMediaType - -mediakeysystemaccess -dfn -encrypted-media -encrypted-media +mediaelement +enum-value +autoplay-detection +autoplay-detection 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess - +https://www.w3.org/TR/autoplay-detection/#dom-autoplaypolicymediatype-mediaelement +1 1 +AutoplayPolicyMediaType - -mediakeysystemconfiguration -dfn -encrypted-media -encrypted-media +mediaelementaudiosourcenode +interface +webaudio +webaudio 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration - +https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode +1 1 - -mediakeysystemmediacapability -dfn -encrypted-media -encrypted-media +mediaelementaudiosourceoptions +dictionary +webaudio +webaudio 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemmediacapability - +https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions +1 1 - mediarecorder @@ -4824,7 +5036,7 @@ media-source current https://w3c.github.io/media-source/#mediasource-object-url - +1 - mediasource object url dfn @@ -4834,7 +5046,7 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#mediasource-object-url - +1 - mediastream dfn @@ -4982,6 +5194,17 @@ credential-management-1 credential-management 1 current +https://w3c.github.io/webappsec-credential-management/#dom-credentialcreationoptions-mediation +1 +1 +CredentialCreationOptions +- +mediation +dict-member +credential-management-1 +credential-management +1 +current https://w3c.github.io/webappsec-credential-management/#dom-credentialrequestoptions-mediation 1 1 @@ -4993,11 +5216,33 @@ credential-management-1 credential-management 1 snapshot +https://www.w3.org/TR/credential-management-1/#dom-credentialcreationoptions-mediation +1 +1 +CredentialCreationOptions +- +mediation +dict-member +credential-management-1 +credential-management +1 +snapshot https://www.w3.org/TR/credential-management-1/#dom-credentialrequestoptions-mediation 1 1 CredentialRequestOptions - +mediatype +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-mediatype + +1 +verification result +- medium value css-backgrounds-3 @@ -5303,6 +5548,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumaquamarine 1 1 <color> +<named-color> - mediumaquamarine dfn @@ -5324,6 +5570,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumaquamarine 1 1 <color> +<named-color> - mediumblue dfn @@ -5345,6 +5592,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumblue 1 1 <color> +<named-color> - mediumblue dfn @@ -5366,6 +5614,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumblue 1 1 <color> +<named-color> - mediumorchid dfn @@ -5387,6 +5636,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumorchid 1 1 <color> +<named-color> - mediumorchid dfn @@ -5408,6 +5658,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumorchid 1 1 <color> +<named-color> - mediumpurple dfn @@ -5429,6 +5680,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumpurple 1 1 <color> +<named-color> - mediumpurple dfn @@ -5450,6 +5702,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumpurple 1 1 <color> +<named-color> - mediumseagreen dfn @@ -5471,6 +5724,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumseagreen 1 1 <color> +<named-color> - mediumseagreen dfn @@ -5492,6 +5746,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumseagreen 1 1 <color> +<named-color> - mediumslateblue dfn @@ -5513,6 +5768,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumslateblue 1 1 <color> +<named-color> - mediumslateblue dfn @@ -5534,6 +5790,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumslateblue 1 1 <color> +<named-color> - mediumspringgreen dfn @@ -5555,6 +5812,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumspringgreen 1 1 <color> +<named-color> - mediumspringgreen dfn @@ -5576,6 +5834,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumspringgreen 1 1 <color> +<named-color> - mediumturquoise dfn @@ -5597,6 +5856,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumturquoise 1 1 <color> +<named-color> - mediumturquoise dfn @@ -5618,6 +5878,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumturquoise 1 1 <color> +<named-color> - mediumvioletred dfn @@ -5639,6 +5900,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mediumvioletred 1 1 <color> +<named-color> - mediumvioletred dfn @@ -5660,6 +5922,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mediumvioletred 1 1 <color> +<named-color> - meetOrSlice attribute @@ -5743,23 +6006,23 @@ https://www.w3.org/TR/WGSL/#member 1 - -member consortia +member association dfn w3c-process w3c-process 1 current -https://www.w3.org/Consortium/Process/#fdn-member-consortium +https://www.w3.org/Consortium/Process/#member-association 1 - -member consortium +member associations dfn w3c-process w3c-process 1 current -https://www.w3.org/Consortium/Process/#fdn-member-consortium +https://www.w3.org/Consortium/Process/#member-association 1 - @@ -5890,26 +6153,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssunparsedvalue-cssunparsedvalue-memb 1 1 CSSUnparsedValue/CSSUnparsedValue(members) -- -memoranda of understanding -dfn -w3c-process -w3c-process -1 -current -https://www.w3.org/Consortium/Process/#mou -1 -1 -- -memorandum of understanding -dfn -w3c-process -w3c-process -1 -current -https://www.w3.org/Consortium/Process/#mou -1 -1 +CSSUnparsedValue/constructor(members) - memory access dfn @@ -5952,6 +6196,50 @@ https://wicg.github.io/performance-measure-memory/#windoworworkerglobalscope-mem 1 WindowOrWorkerGlobalScope - +memory cleanup +dfn +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-memory-cleanup + +1 +ManagedMediaSource +- +memory cleanup +dfn +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-memory-cleanup-0 + +1 +ManagedSourceBuffer +- +memory cleanup +dfn +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-memory-cleanup + +1 +ManagedMediaSource +- +memory cleanup +dfn +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-memory-cleanup-0 + +1 +ManagedSourceBuffer +- memory footprint dfn wgsl @@ -6144,14 +6432,16 @@ https://drafts.csswg.org/css-color-3/#menu 1 - menu -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#menu - +https://drafts.csswg.org/css-color-4/#valdef-color-menu +1 1 +<color> +<deprecated-color> - menu value @@ -6196,14 +6486,16 @@ https://www.w3.org/TR/css-color-3/#menu 1 - menu -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#menu - +https://www.w3.org/TR/css-color-4/#valdef-color-menu 1 +1 +<color> +<deprecated-color> - menu value @@ -6292,14 +6584,16 @@ https://drafts.csswg.org/css-color-3/#menutext 1 - menutext -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#menutext - +https://drafts.csswg.org/css-color-4/#valdef-color-menutext +1 1 +<color> +<deprecated-color> - menutext dfn @@ -6312,14 +6606,16 @@ https://www.w3.org/TR/css-color-3/#menutext 1 - menutext -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#menutext - +https://www.w3.org/TR/css-color-4/#valdef-color-menutext 1 +1 +<color> +<deprecated-color> - merge value @@ -6333,13 +6629,24 @@ https://drafts.csswg.org/css-ruby-1/#valdef-ruby-merge-merge ruby-merge - merge +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-usage-scope-merge +1 +1 +usage scope +- +merge dfn rdf12-semantics rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-merge -1 + 1 - merge @@ -6353,6 +6660,27 @@ https://www.w3.org/TR/css-ruby-1/#valdef-ruby-merge-merge 1 ruby-merge - +merge +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-merge + +1 +- +merge +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-usage-scope-merge +1 +1 +usage scope +- merge with the next text node dfn html @@ -6410,7 +6738,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-merging + +1 +- +merging +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-merging + 1 - merging capabilities @@ -6443,6 +6781,37 @@ https://w3c.github.io/mathml-core/#dfn-merror 1 1 - +merror +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-merror +1 +1 +- +mesh-detection +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#mesh-detection + +1 +- +meshSpace +attribute +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#dom-xrmesh-meshspace +1 +1 +XRMesh +- message attribute webgpu @@ -6517,18 +6886,6 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-gpupipelineerror-message-options-message -1 -1 -GPUPipelineError/GPUPipelineError(message, options) -GPUPipelineError/constructor(message, options) -- -message -argument -webgpu -webgpu -1 -current https://gpuweb.github.io/gpuweb/#dom-gpuvalidationerror-gpuvalidationerror-message-message 1 1 @@ -6687,19 +7044,19 @@ ServiceWorkerContainer - message dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dom-evt-message +https://w3c.github.io/encrypted-media/#dfn-message - message attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageevent-message 1 @@ -6708,9 +7065,9 @@ MediaKeyMessageEvent - message dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageeventinit-message 1 @@ -6723,7 +7080,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationpositionerror-message +https://w3c.github.io/geolocation/#dom-geolocationpositionerror-message 1 1 GeolocationPositionError @@ -6833,17 +7190,6 @@ WebTransportError/WebTransportError() WebTransportError/constructor() - message -dfn -webidl -webidl -1 -current -https://webidl.spec.whatwg.org/#dfn-exception-message -1 -1 -exception -- -message argument webidl webidl @@ -6877,7 +7223,7 @@ webidl 1 current https://webidl.spec.whatwg.org/#domexception-message - +1 1 DOMException - @@ -7006,35 +7352,35 @@ SpeechRecognitionErrorEventInit - message dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-evt-message +https://www.w3.org/TR/encrypted-media-2/#dfn-message - message -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessageevent-message - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageevent-message 1 -mediakeymessageevent +1 +MediaKeyMessageEvent - message -dfn -encrypted-media +dict-member +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessageeventinit-message - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageeventinit-message 1 -mediakeymessageeventinit +1 +MediaKeyMessageEventInit - message attribute @@ -7244,18 +7590,6 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-gpupipelineerror-message-options-message -1 -1 -GPUPipelineError/GPUPipelineError(message, options) -GPUPipelineError/constructor(message, options) -- -message -argument -webgpu -webgpu -1 -snapshot https://www.w3.org/TR/webgpu/#dom-gpuvalidationerror-gpuvalidationerror-message-message 1 1 @@ -7263,25 +7597,51 @@ GPUValidationError/GPUValidationError(message) GPUValidationError/constructor(message) - message -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-datachannel-message +1 - +RTCDataChannel - message -dict-member +argument webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransporterrorinit-message +https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror-message-options-message +1 +1 +WebTransportError/WebTransportError(message, options) +WebTransportError/constructor(message, options) +WebTransportError/WebTransportError(message) +WebTransportError/constructor(message) +WebTransportError/WebTransportError() +WebTransportError/constructor() +- +message entity +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#message-entity +1 +1 +- +message entity +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#message-entity 1 1 -WebTransportErrorInit - message port post message steps dfn @@ -7328,9 +7688,9 @@ font - messageType attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageevent-messagetype 1 @@ -7339,15 +7699,37 @@ MediaKeyMessageEvent - messageType dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeymessageeventinit-messagetype 1 1 MediaKeyMessageEventInit - +messageType +attribute +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageevent-messagetype +1 +1 +MediaKeyMessageEvent +- +messageType +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeymessageeventinit-messagetype +1 +1 +MediaKeyMessageEventInit +- messageerror event html @@ -7429,16 +7811,6 @@ https://www.w3.org/TR/service-workers/#service-worker-container-messageerror-eve 1 1 ServiceWorkerContainer -- -messageevent -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#the-messageevent-interfaces - - - messages attribute @@ -7506,28 +7878,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcdatachannelstats-messagessent 1 RTCDataChannelStats - -messagetype -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessageevent-messagetype - -1 -mediakeymessageevent -- -messagetype -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeymessageeventinit-messagetype - -1 -mediakeymessageeventinit -- met dfn html @@ -7568,6 +7918,48 @@ https://www.w3.org/TR/epub-33/#dfn-meta 1 1 - +meta flag +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#meta-flag + +1 +- +meta flag +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#meta-flag + +1 +- +metaData +attribute +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrframe-metadata +1 +1 +XRFrame +- +metaData +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrframe-metadata%E2%91%A0 +1 +1 +XRFrame +- metaKey attribute touch-events @@ -7814,17 +8206,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_metadata -1 - -- -metadata -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_metadata +https://w3c.github.io/i18n-glossary/#dfn-metadata 1 - @@ -7878,12 +8260,67 @@ webcodecs webcodecs 1 current +https://w3c.github.io/webcodecs/#dom-videoframebufferinit-metadata +1 +1 +VideoFrameBufferInit +- +metadata +dict-member +webcodecs +webcodecs +1 +current https://w3c.github.io/webcodecs/#dom-videoframeinit-metadata 1 1 VideoFrameInit - metadata +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframeoptions-metadata +1 +1 +RTCEncodedAudioFrameOptions +- +metadata +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframeoptions-metadata +1 +1 +RTCEncodedVideoFrameOptions +- +metadata +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionad-metadata +1 +1 +AuctionAd +- +metadata +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-metadata + +1 +interest group ad +- +metadata argument video-rvfc video-rvfc @@ -7920,17 +8357,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_metadata -1 - -- -metadata -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_metadata +https://www.w3.org/TR/i18n-glossary/#dfn-metadata 1 - @@ -7984,11 +8411,44 @@ webcodecs webcodecs 1 snapshot +https://www.w3.org/TR/webcodecs/#dom-videoframebufferinit-metadata +1 +1 +VideoFrameBufferInit +- +metadata +dict-member +webcodecs +webcodecs +1 +snapshot https://www.w3.org/TR/webcodecs/#dom-videoframeinit-metadata 1 1 VideoFrameInit - +metadata +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframeoptions-metadata +1 +1 +RTCEncodedAudioFrameOptions +- +metadata +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframeoptions-metadata +1 +1 +RTCEncodedVideoFrameOptions +- metadata content dfn html @@ -7997,6 +8457,26 @@ html current https://html.spec.whatwg.org/multipage/dom.html#metadata-content-2 1 +1 +- +metadata frames +dfn +mse-byte-stream-format-mpeg-audio +mse-byte-stream-format-mpeg-audio +1 +current +https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#dfn-metadata-frames + +1 +- +metadata frames +dfn +mse-byte-stream-format-mpeg-audio +mse-byte-stream-format-mpeg-audio +1 +snapshot +https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#dfn-metadata-frames + 1 - metadata() @@ -8021,6 +8501,26 @@ https://www.w3.org/TR/webcodecs/#dom-videoframe-metadata 1 VideoFrame - +metadata_specific_parameters +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#metadata_specific_parameters +1 +1 +- +metadata_type +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#metadata_type +1 +1 +- meter value css-ui-4 @@ -8285,7 +8785,7 @@ PaymentRequestEventInit - methodDetails attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -8296,7 +8796,7 @@ PaymentMethodChangeEvent - methodDetails dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -8307,22 +8807,22 @@ PaymentMethodChangeEventInit - methodDetails attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-methoddetails +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-methoddetails 1 1 PaymentMethodChangeEvent - methodDetails dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit-methoddetails +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit-methoddetails 1 1 PaymentMethodChangeEventInit @@ -8340,7 +8840,7 @@ PaymentHandlerResponse - methodName attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -8351,7 +8851,7 @@ PaymentMethodChangeEvent - methodName dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -8362,7 +8862,7 @@ PaymentMethodChangeEventInit - methodName attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -8384,33 +8884,33 @@ PaymentHandlerResponse - methodName attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-methodname +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-methodname 1 1 PaymentMethodChangeEvent - methodName dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit-methodname +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit-methodname 1 1 PaymentMethodChangeEventInit - methodName attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-methodname +https://www.w3.org/TR/payment-request/#dom-paymentresponse-methodname 1 1 PaymentResponse diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mf.data b/bikeshed/spec-data/readonly/anchors/anchors-mf.data index 02194c8829..a5ca240187 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mf.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mf.data @@ -358,14 +358,14 @@ https://www.w3.org/TR/mediaqueries-5/#typedef-mf-value 1 1 - -<mfrac> -dfn +mfrac +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mfrac - +current +https://w3c.github.io/mathml-core/#dfn-mfrac +1 1 - mfrac @@ -373,8 +373,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mfrac +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mfrac 1 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mi.data b/bikeshed/spec-data/readonly/anchors/anchors-mi.data index 8a5de72b20..828673fcba 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mi.data @@ -138,6 +138,16 @@ https://webaudio.github.io/web-midi-api/#dfn-midi-0 1 1 - +"midi" +permission +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dfn-midi-0 +1 +1 +- "mime" dfn web-nfc @@ -214,14 +224,78 @@ https://www.w3.org/TR/webgpu/#dom-gpuaddressmode-mirror-repeat 1 GPUAddressMode - -<mi> +<min/> dfn -mathml-core -mathml-core +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_min + 1 +- +<min/> +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-mi +https://www.w3.org/TR/mathml4/#contm_min +1 +- +<minus/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_minus_binary + +1 +binary +- +<minus/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_minus_unary + +1 +unary +- +<minus/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_minus_binary + +1 +binary +- +<minus/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_minus_unary + +1 +unary +- +<mix()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-mix +1 1 - MIDIAccess @@ -234,6 +308,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiaccess 1 1 - +MIDIAccess +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiaccess +1 +1 +- MIDIConnectionEvent interface webmidi @@ -244,6 +328,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiconnectionevent 1 1 - +MIDIConnectionEvent +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectionevent +1 +1 +- MIDIConnectionEventInit dictionary webmidi @@ -254,6 +348,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiconnectioneventinit 1 1 - +MIDIConnectionEventInit +dictionary +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectioneventinit +1 +1 +- MIDIInput interface webmidi @@ -264,6 +368,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiinput 1 1 - +MIDIInput +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiinput +1 +1 +- MIDIInputMap interface webmidi @@ -274,6 +388,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiinputmap 1 1 - +MIDIInputMap +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiinputmap +1 +1 +- MIDIMessageEvent interface webmidi @@ -284,6 +408,16 @@ https://webaudio.github.io/web-midi-api/#dom-midimessageevent 1 1 - +MIDIMessageEvent +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midimessageevent +1 +1 +- MIDIMessageEventInit dictionary webmidi @@ -294,6 +428,16 @@ https://webaudio.github.io/web-midi-api/#dom-midimessageeventinit 1 1 - +MIDIMessageEventInit +dictionary +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midimessageeventinit +1 +1 +- MIDIOptions dictionary webmidi @@ -304,6 +448,16 @@ https://webaudio.github.io/web-midi-api/#dom-midioptions 1 1 - +MIDIOptions +dictionary +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioptions +1 +1 +- MIDIOutput interface webmidi @@ -314,6 +468,16 @@ https://webaudio.github.io/web-midi-api/#dom-midioutput 1 1 - +MIDIOutput +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioutput +1 +1 +- MIDIOutputMap interface webmidi @@ -324,6 +488,16 @@ https://webaudio.github.io/web-midi-api/#dom-midioutputmap 1 1 - +MIDIOutputMap +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioutputmap +1 +1 +- MIDIPort interface webmidi @@ -334,6 +508,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiport 1 1 - +MIDIPort +interface +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport +1 +1 +- MIDIPortConnectionState enum webmidi @@ -344,6 +528,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiportconnectionstate 1 1 - +MIDIPortConnectionState +enum +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiportconnectionstate +1 +1 +- MIDIPortDeviceState enum webmidi @@ -354,6 +548,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiportdevicestate 1 1 - +MIDIPortDeviceState +enum +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiportdevicestate +1 +1 +- MIDIPortType enum webmidi @@ -364,6 +568,16 @@ https://webaudio.github.io/web-midi-api/#dom-midiporttype 1 1 - +MIDIPortType +enum +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiporttype +1 +1 +- MIN_SAFE_INTEGER attribute ecmascript @@ -396,6 +610,16 @@ https://webaudio.github.io/web-midi-api/#dom-midipermissiondescriptor 1 1 - +MidiPermissionDescriptor +dictionary +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midipermissiondescriptor +1 +1 +- Millisecond typedef netinfo @@ -407,6 +631,46 @@ https://wicg.github.io/netinfo/#dom-millisecond 1 Millisecond - +MimeType +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/system-state.html#mimetype +1 +1 +- +MimeTypeArray +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/system-state.html#mimetypearray +1 +1 +- +MinFromTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-minfromtime +1 +1 +- +MinFromTime(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-minfromtime +1 +1 +- [[Mid]] attribute webrtc @@ -425,8 +689,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-mid + 1 -1 +RTCRtpTransceiver - mi element @@ -438,6 +703,16 @@ https://w3c.github.io/mathml-core/#dfn-mi 1 1 - +mi +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mi +1 +1 +- mi_error dfn webpackage @@ -470,43 +745,23 @@ https://html.spec.whatwg.org/multipage/microdata.html#microdata-error 1 - microphone information can be exposed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#microphone-information-can-be-exposed - +1 1 - microphone information can be exposed -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#microphone-information-can-be-exposed - 1 -- -microphone-information-can-be-exposed -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#microphone-information-can-be-exposed - -1 -- -microphone-information-can-be-exposed -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#microphone-information-can-be-exposed - 1 - microtask @@ -690,7 +945,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-midi -1 + 1 - midi device @@ -710,7 +965,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-midi-device -1 + 1 - midi input port @@ -730,7 +985,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-midi-input-port -1 + 1 - midi interface @@ -750,7 +1005,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-midi-interface -1 + 1 - midi message @@ -770,7 +1025,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-midi-message -1 + 1 - midi output port @@ -790,27 +1045,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-midi-output-port -1 -1 -- -midi system real-time message -dfn -webmidi -webmidi -1 -current -https://webaudio.github.io/web-midi-api/#dfn-midi-system-real-time-message -1 -- -midi system real-time message -dfn -webmidi -webmidi -1 -snapshot -https://www.w3.org/TR/webmidi/#dfn-midi-system-real-time-message -1 1 - midnightblue @@ -833,6 +1068,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-midnightblue 1 1 <color> +<named-color> - midnightblue dfn @@ -854,6 +1090,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-midnightblue 1 1 <color> +<named-color> - midpoint-on-the-path dfn @@ -963,17 +1200,6 @@ fetch fetch 1 current -https://fetch.spec.whatwg.org/#concept-body-mime-type - -1 -Body -- -mime type -dfn -fetch -fetch -1 -current https://fetch.spec.whatwg.org/#data-url-struct-mime-type 1 @@ -997,6 +1223,17 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#representation-mime-type +1 +representation +- +mime type +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#representation-mime-type + 1 representation - @@ -1064,14 +1301,25 @@ MediaRecorderOptions - mimeType dict-member -webrtc -webrtc +webrtc-encoded-transform +webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodeccapability-mimetype +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-mimetype 1 1 -RTCRtpCodecCapability +RTCEncodedAudioFrameMetadata +- +mimeType +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-mimetype +1 +1 +RTCEncodedVideoFrameMetadata - mimeType dict-member @@ -1079,10 +1327,10 @@ webrtc webrtc 1 current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodecparameters-mimetype +https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodec-mimetype 1 1 -RTCRtpCodecParameters +RTCRtpCodec - mimeType dict-member @@ -1119,6 +1367,28 @@ MediaRecorderOptions - mimeType dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-mimetype +1 +1 +RTCEncodedAudioFrameMetadata +- +mimeType +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-mimetype +1 +1 +RTCEncodedVideoFrameMetadata +- +mimeType +dict-member webrtc-stats webrtc-stats 1 @@ -1161,26 +1431,6 @@ https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-mimetypes 1 NavigatorPlugins - -mimetype -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/system-state.html#mimetype - -1 -- -mimetypearray -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/system-state.html#mimetypearray - -1 -- min element-attr html @@ -1226,6 +1476,17 @@ https://html.spec.whatwg.org/multipage/input.html#dom-input-min HTMLInputElement - min +dict-member +streams +streams +1 +current +https://streams.spec.whatwg.org/#dom-readablestreambyobreaderreadoptions-min +1 +1 +ReadableStreamBYOBReaderReadOptions +- +min element-attr svg-animations svg-animations @@ -1280,17 +1541,6 @@ https://w3c.github.io/webdriver/#dfn-min 1 - min -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-min -1 -1 -CSSMathOperator -- -min dict-member image-capture image-capture @@ -1331,16 +1581,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-min -1 -- -min aggregatable report delay -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#min-aggregatable-report-delay - 1 - min cross size @@ -1481,6 +1721,16 @@ css-flexbox snapshot https://www.w3.org/TR/css-flexbox-1/#min-main-size-property 1 +1 +- +min report window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#min-report-window + 1 - min size @@ -1605,6 +1855,17 @@ https://drafts.csswg.org/css-values-4/#funcdef-min 1 - min() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-min +1 +1 +CSSNumericValue +- +min() function css-values-4 css-values @@ -1669,6 +1930,39 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min 1 MLGraphBuilder - +min(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-min +1 +1 +MLGraphBuilder +- +min(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min +1 +1 +MLGraphBuilder +- +min-block-size +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-min-block-size +1 +1 +CSSPositionTryDescriptors +- min-block-size property css-logical-1 @@ -1909,16 +2203,6 @@ css-sizing snapshot https://www.w3.org/TR/css-sizing-3/#min-content-inline-size 1 -1 -- -min-content inline size -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-min-content-inline-size - 1 - min-content inline-size contribution @@ -2122,6 +2406,17 @@ https://www.w3.org/TR/css-tables-3/#min-content-specified-sizing-guess 1 - min-height +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-min-height +1 +1 +CSSPositionTryDescriptors +- +min-height property css-sizing-3 css-sizing @@ -2142,6 +2437,26 @@ https://drafts.csswg.org/css2/#propdef-min-height 1 - min-height +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height +1 +1 +- +min-height +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height +1 +1 +- +min-height dfn css22 css @@ -2162,6 +2477,17 @@ https://www.w3.org/TR/css-sizing-3/#propdef-min-height 1 - min-inline-size +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-min-inline-size +1 +1 +CSSPositionTryDescriptors +- +min-inline-size property css-logical-1 css-logical @@ -2202,6 +2528,17 @@ https://www.w3.org/TR/css-sizing-4/#propdef-min-intrinsic-sizing 1 - min-width +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-min-width +1 +1 +CSSPositionTryDescriptors +- +min-width property css-sizing-3 css-sizing @@ -2222,6 +2559,26 @@ https://drafts.csswg.org/css2/#propdef-min-width 1 - min-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width +1 +1 +- +min-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width +1 +1 +- +min-width dfn css22 css @@ -2263,6 +2620,17 @@ https://www.w3.org/TR/webgpu/#dom-gpubufferbindinglayout-minbindingsize 1 GPUBufferBindingLayout - +minBlockSize +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-minblocksize +1 +1 +CSSPositionTryDescriptors +- minContentSize attribute css-layout-api-1 @@ -2395,115 +2763,115 @@ https://www.w3.org/TR/webgpu/#dom-gpusamplerdescriptor-minfilter 1 GPUSamplerDescriptor - -minInterval +minHdcpVersion dict-member -periodic-background-sync -periodic-background-sync -1 +encrypted-media-2 +encrypted-media +2 current -https://wicg.github.io/periodic-background-sync/#dom-backgroundsyncoptions-mininterval +https://w3c.github.io/encrypted-media/#dom-mediakeyspolicy-minhdcpversion 1 1 -BackgroundSyncOptions +MediaKeysPolicy - -minLength -attribute -html -html -1 -current -https://html.spec.whatwg.org/multipage/form-elements.html#dom-textarea-minlength +minHdcpVersion +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeyspolicy-minhdcpversion 1 1 -HTMLTextAreaElement +MediaKeysPolicy - -minLength +minHeight attribute -html -html +css-anchor-position-1 +css-anchor-position 1 current -https://html.spec.whatwg.org/multipage/input.html#dom-input-minlength +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-minheight 1 1 -HTMLInputElement +CSSPositionTryDescriptors - -minPinLength -dict-member -fido-v2.1 -fido +minInlineSize +attribute +css-anchor-position-1 +css-anchor-position 1 current -https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#dom-authenticationextensionsclientinputs-minpinlength +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-mininlinesize 1 1 -AuthenticationExtensionsClientInputs +CSSPositionTryDescriptors - -minRtt +minInterval dict-member -webtransport -webtransport +periodic-background-sync +periodic-background-sync 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-minrtt +https://wicg.github.io/periodic-background-sync/#dom-backgroundsyncoptions-mininterval 1 1 -WebTransportStats +BackgroundSyncOptions - -minRtt -dict-member -webtransport -webtransport +minLength +attribute +html +html 1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-minrtt +current +https://html.spec.whatwg.org/multipage/form-elements.html#dom-textarea-minlength 1 1 -WebTransportStats +HTMLTextAreaElement - -minSamplingFrequency -dict-member -generic-sensor -generic-sensor +minLength +attribute +html +html 1 current -https://w3c.github.io/sensors/#dom-mocksensor-minsamplingfrequency +https://html.spec.whatwg.org/multipage/input.html#dom-input-minlength 1 1 -MockSensor +HTMLInputElement - -minSamplingFrequency +minPinLength dict-member -generic-sensor -generic-sensor +fido-v2.1 +fido 1 current -https://w3c.github.io/sensors/#dom-mocksensorconfiguration-minsamplingfrequency +https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#dom-authenticationextensionsclientinputs-minpinlength 1 1 -MockSensorConfiguration +AuthenticationExtensionsClientInputs - -minSamplingFrequency +minRtt dict-member -generic-sensor -generic-sensor +webtransport +webtransport 1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensor-minsamplingfrequency +current +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-minrtt 1 1 -MockSensor +WebTransportConnectionStats - -minSamplingFrequency +minRtt dict-member -generic-sensor -generic-sensor +webtransport +webtransport 1 snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensorconfiguration-minsamplingfrequency +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-minrtt 1 1 -MockSensorConfiguration +WebTransportConnectionStats - minStorageBufferOffsetAlignment attribute @@ -2659,6 +3027,17 @@ https://www.w3.org/TR/webnn/#dom-mlclampoptions-minvalue 1 MLClampOptions - +minWidth +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-minwidth +1 +1 +CSSPositionTryDescriptors +- min_code dfn miniapp-manifest @@ -2991,8 +3370,8 @@ miniapp-manifest miniapp-manifest 1 current -https://w3c.github.io/miniapp-manifest/#dfn-route - +https://w3c.github.io/miniapp-manifest/#dfn-page-route +1 1 - miniapp page route @@ -3001,8 +3380,8 @@ miniapp-manifest miniapp-manifest 1 snapshot -https://www.w3.org/TR/miniapp-manifest/#dfn-route - +https://www.w3.org/TR/miniapp-manifest/#dfn-page-route +1 1 - miniapp pages @@ -3575,13 +3954,45 @@ https://w3c.github.io/longtasks/#minimal-culprit-attribution - -minimal-ui +minimal culprit attribution dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#minimal-culprit-attribution + + +- +minimal-ui +value mediaqueries-5 mediaqueries 5 current -https://drafts.csswg.org/mediaqueries-5/#display-mode-minimal-ui +https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-minimal-ui +1 +1 +@media/display-mode +- +minimal-ui +dfn +appmanifest +appmanifest +1 +current +https://w3c.github.io/manifest/#dfn-minimal-ui +1 +1 +display mode +- +minimal-ui +dfn +appmanifest +appmanifest +1 +snapshot +https://www.w3.org/TR/appmanifest/#dfn-minimal-ui 1 1 display mode @@ -3597,6 +4008,16 @@ https://www.w3.org/TR/mediaqueries-5/#display-mode-minimal-ui 1 display mode - +minimize a supported mime type +dfn +mimesniff +mimesniff +1 +current +https://mimesniff.spec.whatwg.org/#minimize-a-supported-mime-type +1 +1 +- minimize window dfn webdriver2 @@ -3669,6 +4090,16 @@ https://www.w3.org/TR/css3-exclusions/#valdef-wrap-flow-wrap-flowminimum 1 wrap-flow - +minimum allowed target +dfn +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-minimum-allowed-target + +1 +- minimum allowed value length dfn html @@ -3749,6 +4180,17 @@ https://www.w3.org/TR/css-grid-2/#minimum-contribution 1 - +minimum fill +dfn +streams +streams +1 +current +https://streams.spec.whatwg.org/#pull-into-descriptor-minimum-fill + +1 +pull-into descriptor +- minimum height dfn css-sizing-3 @@ -3850,6 +4292,102 @@ https://drafts.csswg.org/css-size-adjust-1/#minimum-readable-text-size 1 - +minimum report delay +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#minimum-report-delay + +1 +- +minimum role +dfn +html-aam-1.0 +html-aam +1 +current +https://w3c.github.io/html-aam/#dfn-minimum-role + +1 +- +minimum role +dfn +html-aam-1.0 +html-aam +1 +snapshot +https://www.w3.org/TR/html-aam-1.0/#dfn-minimum-role + +1 +- +minimum sampling frequency +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#device-sensor-minimum-sampling-frequency + +1 +device sensor +- +minimum sampling frequency +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#sensor-type-minimum-sampling-frequency +1 +1 +sensor type +- +minimum sampling frequency +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#virtual-sensor-minimum-sampling-frequency + +1 +virtual sensor +- +minimum sampling frequency +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#device-sensor-minimum-sampling-frequency + +1 +device sensor +- +minimum sampling frequency +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#sensor-type-minimum-sampling-frequency +1 +1 +sensor type +- +minimum sampling frequency +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-minimum-sampling-frequency + +1 +virtual sensor +- minimum size dfn css-sizing-3 @@ -3931,6 +4469,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacevariationaxis-minimumva 1 FontFaceVariationAxis - +minimumValue +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacevariationaxis-minimumvalue +1 +1 +FontFaceVariationAxis +- minlength element-attr html @@ -3966,24 +4515,24 @@ https://html.spec.whatwg.org/multipage/input.html#attr-input-minlength input - minmax() -value +function css-grid-1 css-grid 1 current -https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-minmax +https://drafts.csswg.org/css-grid-1/#funcdef-grid-template-columns-minmax 1 1 grid-template-columns grid-template-rows - minmax() -value +function css-grid-2 css-grid 2 current -https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-minmax +https://drafts.csswg.org/css-grid-2/#funcdef-grid-template-columns-minmax 1 1 grid-template-columns @@ -4013,6 +4562,16 @@ https://www.w3.org/TR/css-grid-2/#valdef-grid-template-columns-minmax grid-template-columns grid-template-rows - +minority opinion +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#minority-opinion + +1 +- minorversion dfn compat @@ -4076,6 +4635,18 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-minsize 1 +embellished operator +- +minsize +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-minsize-0 +1 +1 +mo - mintcream dfn @@ -4097,6 +4668,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mintcream 1 1 <color> +<named-color> - mintcream dfn @@ -4118,6 +4690,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mintcream 1 1 <color> +<named-color> - minus dfn @@ -4215,6 +4788,28 @@ https://www.w3.org/TR/WGSL/#mip-level 1 - +mip level count +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texture-mip-level-count + +1 +texture +- +mip level count +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texture-mip-level-count + +1 +texture +- mipLevel dict-member webgpu @@ -4389,6 +4984,17 @@ https://www.w3.org/TR/webgpu/#dom-gpusamplerdescriptor-mipmapfilter 1 GPUSamplerDescriptor - +mirror +attr-value +filter-effects-1 +filter-effects +1 +current +https://drafts.fxtf.org/filter-effects-1/#attr-valuedef-feguassianblur-edgemode-mirror +1 +1 +feGuassianBlur/edgeMode +- mirror if necessary dfn media-source-2 @@ -4407,6 +5013,16 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#dfn-mirror-if-necessary +1 +- +mismatch dialog step +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#mismatch-dialog-step + 1 - missing color component @@ -4599,6 +5215,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-mistyrose 1 1 <color> +<named-color> - mistyrose dfn @@ -4620,6 +5237,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-mistyrose 1 1 <color> +<named-color> - miter value @@ -4654,23 +5272,53 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-miterlimit 1 CanvasPathDrawingStyles - -mix() -function -css-values-4 +mix end value +dfn +css-values-5 css-values -4 +5 +current +https://drafts.csswg.org/css-values-5/#mix-end-value + +1 +- +mix notations +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#mix-notations + +1 +- +mix progress value +dfn +css-values-5 +css-values +5 current -https://drafts.csswg.org/css-values-4/#funcdef-mix +https://drafts.csswg.org/css-values-5/#mix-progress-value + 1 +- +mix start value +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#mix-start-value + 1 - mix() function -css-values-4 +css-values-5 css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#funcdef-mix +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-mix 1 1 - @@ -4777,6 +5425,26 @@ mixed-content snapshot https://www.w3.org/TR/mixed-content/#mixed-content 1 +1 +- +mixed content limitations +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-mixed-content-limitations + +1 +- +mixed content limitations +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-mixed-content-limitations + 1 - mixed download diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ml.data b/bikeshed/spec-data/readonly/anchors/anchors-ml.data index ffc5a32477..ea0463f4b0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ml.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ml.data @@ -18,43 +18,23 @@ https://www.w3.org/TR/webnn/#ml 1 1 - -MLActivation -interface -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#mlactivation -1 -1 -- -MLActivation -interface -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#mlactivation -1 -1 -- -MLAutoPad -enum +MLArgMinMaxOptions +dictionary webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#enumdef-mlautopad +https://webmachinelearning.github.io/webnn/#dictdef-mlargminmaxoptions 1 1 - -MLAutoPad -enum +MLArgMinMaxOptions +dictionary webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#enumdef-mlautopad +https://www.w3.org/TR/webnn/#dictdef-mlargminmaxoptions 1 1 - @@ -78,46 +58,6 @@ https://www.w3.org/TR/webnn/#dictdef-mlbatchnormalizationoptions 1 1 - -MLBufferResourceView -dictionary -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dictdef-mlbufferresourceview -1 -1 -- -MLBufferResourceView -dictionary -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dictdef-mlbufferresourceview -1 -1 -- -MLBufferView -typedef -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#typedefdef-mlbufferview -1 -1 -- -MLBufferView -typedef -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#typedefdef-mlbufferview -1 -1 -- MLClampOptions dictionary webnn @@ -138,26 +78,6 @@ https://www.w3.org/TR/webnn/#dictdef-mlclampoptions 1 1 - -MLCommandEncoder -interface -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#mlcommandencoder -1 -1 -- -MLCommandEncoder -interface -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#mlcommandencoder -1 -1 -- MLComputeResult dictionary webnn @@ -338,23 +258,23 @@ https://www.w3.org/TR/webnn/#dictdef-mleluoptions 1 1 - -MLGPUResource -typedef +MLGatherOptions +dictionary webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#typedefdef-mlgpuresource +https://webmachinelearning.github.io/webnn/#dictdef-mlgatheroptions 1 1 - -MLGPUResource -typedef +MLGatherOptions +dictionary webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#typedefdef-mlgpuresource +https://www.w3.org/TR/webnn/#dictdef-mlgatheroptions 1 1 - @@ -580,6 +500,26 @@ https://www.w3.org/TR/webnn/#enumdef-mlinterpolationmode 1 1 - +MLLayerNormalizationOptions +dictionary +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dictdef-mllayernormalizationoptions +1 +1 +- +MLLayerNormalizationOptions +dictionary +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dictdef-mllayernormalizationoptions +1 +1 +- MLLeakyReluOptions dictionary webnn @@ -700,43 +640,43 @@ https://www.w3.org/TR/webnn/#typedefdef-mlnamedarraybufferviews 1 1 - -MLNamedGPUResources +MLNamedOperands typedef webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#typedefdef-mlnamedgpuresources +https://webmachinelearning.github.io/webnn/#typedefdef-mlnamedoperands 1 1 - -MLNamedGPUResources +MLNamedOperands typedef webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#typedefdef-mlnamedgpuresources +https://www.w3.org/TR/webnn/#typedefdef-mlnamedoperands 1 1 - -MLNamedOperands +MLNumber typedef webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#typedefdef-mlnamedoperands +https://webmachinelearning.github.io/webnn/#typedefdef-mlnumber 1 1 - -MLNamedOperands +MLNumber typedef webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#typedefdef-mlnamedoperands +https://www.w3.org/TR/webnn/#typedefdef-mlnumber 1 1 - @@ -760,6 +700,26 @@ https://www.w3.org/TR/webnn/#mloperand 1 1 - +MLOperandDataType +enum +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#enumdef-mloperanddatatype +1 +1 +- +MLOperandDataType +enum +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#enumdef-mloperanddatatype +1 +1 +- MLOperandDescriptor dictionary webnn @@ -780,23 +740,23 @@ https://www.w3.org/TR/webnn/#dictdef-mloperanddescriptor 1 1 - -MLOperandType -enum +MLOperatorOptions +dictionary webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#enumdef-mloperandtype +https://webmachinelearning.github.io/webnn/#dictdef-mloperatoroptions 1 1 - -MLOperandType -enum +MLOperatorOptions +dictionary webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#enumdef-mloperandtype +https://www.w3.org/TR/webnn/#dictdef-mloperatoroptions 1 1 - @@ -880,6 +840,26 @@ https://www.w3.org/TR/webnn/#enumdef-mlpowerpreference 1 1 - +MLRecurrentNetworkActivation +enum +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#enumdef-mlrecurrentnetworkactivation +1 +1 +- +MLRecurrentNetworkActivation +enum +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#enumdef-mlrecurrentnetworkactivation +1 +1 +- MLRecurrentNetworkDirection enum webnn @@ -960,46 +940,6 @@ https://www.w3.org/TR/webnn/#enumdef-mlroundingtype 1 1 - -MLSliceOptions -dictionary -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dictdef-mlsliceoptions -1 -1 -- -MLSliceOptions -dictionary -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dictdef-mlsliceoptions -1 -1 -- -MLSoftplusOptions -dictionary -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dictdef-mlsoftplusoptions -1 -1 -- -MLSoftplusOptions -dictionary -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dictdef-mlsoftplusoptions -1 -1 -- MLSplitOptions dictionary webnn @@ -1020,43 +960,43 @@ https://www.w3.org/TR/webnn/#dictdef-mlsplitoptions 1 1 - -MLSqueezeOptions +MLTransposeOptions dictionary webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dictdef-mlsqueezeoptions +https://webmachinelearning.github.io/webnn/#dictdef-mltransposeoptions 1 1 - -MLSqueezeOptions +MLTransposeOptions dictionary webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dictdef-mlsqueezeoptions +https://www.w3.org/TR/webnn/#dictdef-mltransposeoptions 1 1 - -MLTransposeOptions +MLTriangularOptions dictionary webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dictdef-mltransposeoptions +https://webmachinelearning.github.io/webnn/#dictdef-mltriangularoptions 1 1 - -MLTransposeOptions +MLTriangularOptions dictionary webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dictdef-mltransposeoptions +https://www.w3.org/TR/webnn/#dictdef-mltriangularoptions 1 1 - @@ -1082,3 +1022,23 @@ https://www.w3.org/TR/webnn/#dom-navigatorml-ml 1 NavigatorML - +ml task source +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#ml-task-source + +1 +- +ml task source +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#ml-task-source + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mm.data b/bikeshed/spec-data/readonly/anchors/anchors-mm.data index 57af120409..39b58021ce 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mm.data @@ -1,13 +1,3 @@ -<mmultiscripts> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mmultiscripts - -1 -- mm value css-values-3 @@ -95,6 +85,16 @@ https://w3c.github.io/mathml-core/#dfn-mmultiscripts 1 1 - +mmultiscripts +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mmultiscripts +1 +1 +- mmultiscripts base dfn mathml-core diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mn.data b/bikeshed/spec-data/readonly/anchors/anchors-mn.data index 6001ba3c8c..83ba595c77 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mn.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mn.data @@ -1,11 +1,11 @@ -<mn> -dfn +mn +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mn - +current +https://w3c.github.io/mathml-core/#dfn-mn +1 1 - mn @@ -13,8 +13,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mn +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mn 1 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mo.data b/bikeshed/spec-data/readonly/anchors/anchors-mo.data index e250b46339..393be17764 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mo.data @@ -1,3 +1,14 @@ +"module-script" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptinvokertype-module-script +1 +1 +ScriptInvokerType +- "mono" enum-value webxrlayers-1 @@ -40,6 +51,17 @@ https://www.w3.org/TR/mst-content-hint/#idl-def-VideoContentHint.motion 1 - +"mouse" +enum-value +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinginputtype-mouse +1 +1 +HandwritingInputType +- "mouth" enum-value shape-detection-api @@ -59,6 +81,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-modal 1 +1 +- +:modal +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-modal + 1 - :modal @@ -71,14 +103,44 @@ https://www.w3.org/TR/selectors-4/#selectordef-modal 1 1 - -<mo> +<mode/> dfn -mathml-core -mathml-core +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_mode + 1 +- +<mode/> +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-mo +https://www.w3.org/TR/mathml4/#contm_mode +1 +- +<modern-device-cmyk-syntax> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-modern-device-cmyk-syntax +1 +1 +- +<modern-device-cmyk-syntax> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-modern-device-cmyk-syntax +1 1 - <modern-hsl-syntax> @@ -91,6 +153,36 @@ https://drafts.csswg.org/css-color-4/#typedef-modern-hsl-syntax 1 1 - +<modern-hsl-syntax> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-modern-hsl-syntax +1 +1 +- +<modern-hsl-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-modern-hsl-syntax +1 +1 +- +<modern-hsl-syntax> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-modern-hsl-syntax +1 +1 +- <modern-hsla-syntax> type css-color-4 @@ -101,6 +193,36 @@ https://drafts.csswg.org/css-color-4/#typedef-modern-hsla-syntax 1 1 - +<modern-hsla-syntax> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-modern-hsla-syntax +1 +1 +- +<modern-hsla-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-modern-hsla-syntax +1 +1 +- +<modern-hsla-syntax> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-modern-hsla-syntax +1 +1 +- <modern-rgb-syntax> type css-color-4 @@ -111,6 +233,36 @@ https://drafts.csswg.org/css-color-4/#typedef-modern-rgb-syntax 1 1 - +<modern-rgb-syntax> +type +css-color-5 +css-color +5 +current +https://drafts.csswg.org/css-color-5/#typedef-modern-rgb-syntax +1 +1 +- +<modern-rgb-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-modern-rgb-syntax +1 +1 +- +<modern-rgb-syntax> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-modern-rgb-syntax +1 +1 +- <modern-rgba-syntax> type css-color-4 @@ -121,27 +273,87 @@ https://drafts.csswg.org/css-color-4/#typedef-modern-rgba-syntax 1 1 - -<move-command> +<modern-rgba-syntax> type -css-shapes-2 -css-shapes -2 +css-color-5 +css-color +5 current -https://drafts.csswg.org/css-shapes-2/#typedef-shape-move-command +https://drafts.csswg.org/css-color-5/#typedef-modern-rgba-syntax +1 +1 +- +<modern-rgba-syntax> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-modern-rgba-syntax 1 1 -shape() - -<mover> +<modern-rgba-syntax> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-modern-rgba-syntax +1 +1 +- +<moment/> dfn -mathml-core -mathml-core +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_moment + 1 +- +<moment/> +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-mover +https://www.w3.org/TR/mathml4/#contm_moment + +1 +- +<momentabout> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_momentabout + +1 +- +<momentabout> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_momentabout 1 - +<move-command> +type +css-shapes-2 +css-shapes +2 +current +https://drafts.csswg.org/css-shapes-2/#typedef-shape-move-command +1 +1 +shape() +- MODIFICATION const uievents @@ -214,86 +426,6 @@ https://w3c.github.io/mediacapture-automation/#dom-mockmicrophoneconfiguration 1 1 - -MockSensor -dictionary -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dictdef-mocksensor -1 -1 -- -MockSensor -dictionary -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dictdef-mocksensor -1 -1 -- -MockSensorConfiguration -dictionary -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dictdef-mocksensorconfiguration -1 -1 -- -MockSensorConfiguration -dictionary -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dictdef-mocksensorconfiguration -1 -1 -- -MockSensorReadingValues -dictionary -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dictdef-mocksensorreadingvalues -1 -1 -- -MockSensorReadingValues -dictionary -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dictdef-mocksensorreadingvalues -1 -1 -- -MockSensorType -enum -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#enumdef-mocksensortype -1 -1 -- -MockSensorType -enum -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#enumdef-mocksensortype -1 -1 -- Modify a credential abstract-op credential-management-1 @@ -398,6 +530,16 @@ https://www.w3.org/TR/wasm-js-api-2/#dictdef-moduleimportdescriptor 1 1 - +ModuleNamespaceCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-modulenamespacecreate +1 +1 +- ModuleNamespaceCreate(module, exports) abstract-op ecmascript @@ -408,6 +550,46 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +MonitorTypeSurfacesEnum +enum +screen-capture +screen-capture +1 +current +https://w3c.github.io/mediacapture-screen-share/#dom-monitortypesurfacesenum +1 +1 +- +MonitorTypeSurfacesEnum +enum +screen-capture +screen-capture +1 +snapshot +https://www.w3.org/TR/screen-capture/#dom-monitortypesurfacesenum +1 +1 +- +MonthFromTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-monthfromtime +1 +1 +- +MonthFromTime(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-monthfromtime +1 +1 +- MouseEvent interface uievents @@ -512,6 +694,16 @@ https://w3c.github.io/mathml-core/#dfn-mo 1 1 - +mo +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mo +1 +1 +- mobile attr-value html @@ -603,6 +795,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-moccasin 1 1 <color> +<named-color> - moccasin dfn @@ -624,6 +817,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-moccasin 1 1 <color> +<named-color> - mock capture device set dfn @@ -635,128 +829,6 @@ https://w3c.github.io/mediacapture-automation/#mock-capture-device-set 1 - -mock sensor -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#mock-sensor - -1 -- -mock sensor -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#mock-sensor - -1 -- -mock sensor already created -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#mock-sensor-already-created - -1 -- -mock sensor already created -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#mock-sensor-already-created - -1 -- -mock sensor reading -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#mock-sensor-reading - -1 -- -mock sensor reading -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#mock-sensor-reading - -1 -- -mock sensor reading values -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#mock-sensor-reading-values -1 -1 -- -mock sensor reading values -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#mock-sensor-reading-values -1 -1 -- -mock sensor type -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#mock-sensor-type - -1 -- -mock sensor type -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#mock-sensor-type - -1 -- -mockSensorType -dict-member -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensorconfiguration-mocksensortype -1 -1 -MockSensorConfiguration -- -mockSensorType -dict-member -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensorconfiguration-mocksensortype -1 -1 -MockSensorConfiguration -- mod() function css-values-4 @@ -921,6 +993,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpubuffer-mapasync-mode-offset-size-mode GPUBuffer/mapAsync(mode, offset, size) - mode +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpucanvastonemapping-mode +1 +1 +GPUCanvasToneMapping +- +mode dfn html html @@ -1153,6 +1236,16 @@ https://webmachinelearning.github.io/webnn/#dom-mlresample2doptions-mode MLResample2dOptions - mode +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-mode + +1 +- +mode dict-member file-system-access file-system-access @@ -1353,6 +1446,17 @@ GPUBuffer/mapAsync(mode, offset, size) - mode dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucanvastonemapping-mode +1 +1 +GPUCanvasToneMapping +- +mode +dict-member webnn webnn 1 @@ -1418,48 +1522,147 @@ https://www.w3.org/TR/webxr/#dom-xrsystem-requestsession-mode-options-mode XRSystem/requestSession(mode, options) XRSystem/requestSession(mode) - -mode +mode +dfn +webxr +webxr +1 +snapshot +https://www.w3.org/TR/webxr/#xrsession-mode + +1 +XRSession +- +model +element +model-element +model-element +1 +current +https://immersive-web.github.io/model-element/#dfn-model +1 +1 +- +model +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-model + +1 +browsing topics types +- +model +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#user-agent-model + +1 +user agent +- +model +dict-member +ua-client-hints +ua-client-hints +1 +current +https://wicg.github.io/ua-client-hints/#dom-uadatavalues-model +1 +1 +UADataValues +- +model +dfn +ua-client-hints +ua-client-hints +1 +current +https://wicg.github.io/ua-client-hints/#user-agent-model +1 +1 +user agent +- +model version +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-model-version + +1 +browsing topics types +- +model version +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#epoch-model-version + +1 +epoch +- +model version dfn -webxr -webxr +topics +topics 1 -snapshot -https://www.w3.org/TR/webxr/#xrsession-mode +current +https://patcg-individual-drafts.github.io/topics/#user-agent-model-version 1 -XRSession +user agent - -model -element -model-element -model-element +modelVersion +dict-member +topics +topics 1 current -https://immersive-web.github.io/model-element/#dfn-model +https://patcg-individual-drafts.github.io/topics/#dom-browsingtopic-modelversion 1 1 +BrowsingTopic - -model +modeling signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-modeling-signals + +1 +generated bid +- +modelingSignals dict-member -ua-client-hints -ua-client-hints +turtledove +turtledove 1 current -https://wicg.github.io/ua-client-hints/#dom-uadatavalues-model +https://wicg.github.io/turtledove/#dom-generatebidoutput-modelingsignals 1 1 -UADataValues +GenerateBidOutput - -model -dfn -ua-client-hints -ua-client-hints +modelingSignals +dict-member +turtledove +turtledove 1 current -https://wicg.github.io/ua-client-hints/#user-agent-model +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-modelingsignals 1 1 -user agent +ReportWinBrowserSignals - moderate value @@ -1493,6 +1696,16 @@ https://drafts.csswg.org/css-color-4/#modern-color-syntax 1 1 - +modern color syntax +dfn +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#modern-color-syntax +1 +1 +- modification timestamp dfn fs @@ -1504,13 +1717,35 @@ https://fs.spec.whatwg.org/#file-entry-modification-timestamp 1 file entry - +modified bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-modified-bid + +1 +generated bid +- +modifiedBid +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportresultbrowsersignals-modifiedbid +1 +1 +ReportResultBrowserSignals +- modifier dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-modifier +https://urlpattern.spec.whatwg.org/#part-modifier 1 part @@ -1790,7 +2025,7 @@ PaymentRequestEventInit - modifiers dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -1834,11 +2069,11 @@ PaymentRequestEventInit - modifiers dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-modifiers +https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-modifiers 1 1 PaymentDetailsBase @@ -2088,6 +2323,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 ECMAScript - +module integrity map +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#module-integrity-map + +1 +- module map dfn html @@ -2146,9 +2391,10 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#module-name - +https://w3c.github.io/webdriver-bidi/#module-module-name +1 1 +module - module namespace exotic object dfn @@ -2354,6 +2600,18 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-webassembly-instantiate-moduleobject-im WebAssembly/instantiate(moduleObject, importObject) WebAssembly/instantiate(moduleObject) - +moduleURL +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-createworklet-moduleurl-options-moduleurl +1 +1 +SharedStorage/createWorklet(moduleURL, options) +SharedStorage/createWorklet(moduleURL) +- modulepreload attr-value html @@ -2365,6 +2623,26 @@ https://html.spec.whatwg.org/multipage/links.html#link-type-modulepreload 1 link/rel - +modulerequest record +dfn +tc39-import-attributes +tc39-import-attributes +1 +current +https://tc39.es/proposal-import-attributes/#modulerequest-record +1 +1 +- +modulerequest record +dfn +tc39-source-phase-imports +tc39-source-phase-imports +1 +current +https://tc39.es/proposal-source-phase-imports/#modulerequest-record +1 +1 +- modulo dfn wgsl @@ -2409,6 +2687,17 @@ https://www.w3.org/TR/WGSL/#syntax_sym-modulo_equal 1 syntax_sym - +modulus +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-data-matching-mode-modulus + +1 +trigger-data matching mode +- modulusLength dict-member webcryptoapi @@ -2438,7 +2727,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaKeyGenParams-modulusLength -1 + 1 - mojibake @@ -2447,7 +2736,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_mojibake +https://w3c.github.io/i18n-glossary/#dfn-mojibake 1 - @@ -2457,7 +2746,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_mojibake +https://www.w3.org/TR/i18n-glossary/#dfn-mojibake 1 - @@ -2547,6 +2836,26 @@ https://www.w3.org/TR/screen-capture/#idl-def-DisplayCaptureSurfaceType.monitor 1 DisplayCaptureSurfaceType - +monitor for cdm state changes +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-monitor-for-cdm-state-changes + +1 +- +monitor for cdm state changes +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-monitor-for-cdm-state-changes + +1 +- monitor the list of available presentation displays dfn presentation-api @@ -2587,6 +2896,28 @@ https://www.w3.org/TR/remote-playback/#dfn-monitor-the-list-of-available-remote- 1 - +monitorTypeSurfaces +dict-member +screen-capture +screen-capture +1 +current +https://w3c.github.io/mediacapture-screen-share/#dom-displaymediastreamoptions-monitortypesurfaces +1 +1 +DisplayMediaStreamOptions +- +monitorTypeSurfaces +dict-member +screen-capture +screen-capture +1 +snapshot +https://www.w3.org/TR/screen-capture/#dom-displaymediastreamoptions-monitortypesurfaces +1 +1 +DisplayMediaStreamOptions +- monitored dfn csp3 @@ -2670,6 +3001,16 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerlayout-mono XRLayerLayout - monochrome +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#monochrome +1 +1 +- +monochrome descriptor mediaqueries-4 mediaqueries @@ -2809,6 +3150,26 @@ https://drafts.csswg.org/css2/#valdef-generic-family-monospace <generic-family> - monospace +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#monospace-def +1 +1 +- +monospace +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#monospace-def +1 +1 +- +monospace value css-fonts-4 css-fonts @@ -2827,7 +3188,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-monotonic + +1 +- +monotonic +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-monotonic + 1 - monotonic clock @@ -2907,7 +3278,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#month-state-(type=month) +https://html.spec.whatwg.org/multipage/input.html#month-state-(type%3Dmonth) 1 1 input @@ -2934,6 +3305,92 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-prefers-contrast-more 1 @media/prefers-contrast - +most recent navigation +dfn +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dfn-most-recent-navigation + +1 +- +most recent navigation +dfn +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dfn-most-recent-navigation + +1 +- +most-block-size +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-block-size +1 +1 +position-try-order +- +most-block-size +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-order-most-block-size +1 +1 +position-try-order +- +most-height +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-height +1 +1 +position-try-order +- +most-height +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-order-most-height +1 +1 +position-try-order +- +most-inline-size +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-inline-size +1 +1 +position-try-order +- +most-inline-size +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-order-most-inline-size +1 +1 +position-try-order +- most-negative-single-float dfn webaudio @@ -2974,6 +3431,28 @@ https://www.w3.org/TR/webaudio/#most-positive-single-float 1 - +most-width +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-width +1 +1 +position-try-order +- +most-width +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-order-most-width +1 +1 +position-try-order +- motion enum-value screen-capture @@ -3082,14 +3561,24 @@ https://www.w3.org/TR/webxrlayers-1/#motionvectortextures 1 - -mou +mouse button bitmask dfn -w3c-process -w3c-process +uievents +uievents 1 current -https://www.w3.org/Consortium/Process/#mou +https://w3c.github.io/uievents/#mouse-button-bitmask + 1 +- +mouse button bitmask +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#mouse-button-bitmask + 1 - mousedown @@ -3274,6 +3763,18 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-movablelimits 1 +embellished operator +- +movablelimits +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-movablelimits-0 +1 +1 +mo - move value @@ -3564,6 +4065,16 @@ https://w3c.github.io/mathml-core/#dfn-mover 1 1 - +mover +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mover +1 +1 +- mover base dfn mathml-core @@ -3604,3 +4115,23 @@ https://www.w3.org/TR/mathml-core/#dfn-mover-overscript 1 - +movie-fragment relative addressing +dfn +mse-byte-stream-format-isobmff +mse-byte-stream-format-isobmff +1 +current +https://w3c.github.io/mse-byte-stream-format-isobmff/#dfn-movie-fragment-relative-addressing + +1 +- +movie-fragment relative addressing +dfn +mse-byte-stream-format-isobmff +mse-byte-stream-format-isobmff +1 +snapshot +https://www.w3.org/TR/mse-byte-stream-format-isobmff/#dfn-movie-fragment-relative-addressing + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mp.data b/bikeshed/spec-data/readonly/anchors/anchors-mp.data index 398ed8a099..0a7c5632d3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mp.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mp.data @@ -1,31 +1,11 @@ -<mpadded> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mpadded - -1 -- -<mphantom> -dfn +mpadded +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mphantom - -1 -- -<mprescripts> -dfn -mathml-core -mathml-core +current +https://w3c.github.io/mathml-core/#dfn-mpadded 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mprescripts - 1 - mpadded @@ -33,8 +13,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mpadded +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mpadded 1 1 - @@ -58,63 +38,63 @@ https://www.w3.org/TR/mathml-core/#dfn-mpadded-inner-box 1 - -mpadded@depth -dfn -mathml-core -mathml-core +mpath +element +svg-animations +svg-animations +1 +current +https://svgwg.org/specs/animations/#elementdef-mpath 1 -snapshot -https://www.w3.org/TR/mathml-core/#attribute-mpadded-depth - 1 - -mpadded@height +mpeg audio frame dfn -mathml-core -mathml-core +mse-byte-stream-format-mpeg-audio +mse-byte-stream-format-mpeg-audio 1 -snapshot -https://www.w3.org/TR/mathml-core/#attribute-mpadded-height +current +https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#dfn-mpeg-audio-frame 1 - -mpadded@lspace +mpeg audio frame dfn -mathml-core -mathml-core +mse-byte-stream-format-mpeg-audio +mse-byte-stream-format-mpeg-audio 1 snapshot -https://www.w3.org/TR/mathml-core/#attribute-mpadded-lspace +https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#dfn-mpeg-audio-frame 1 - -mpadded@voffset +mpeg2ts_timestampoffset dfn -mathml-core -mathml-core +mse-byte-stream-format-mp2t +mse-byte-stream-format-mp2t 1 -snapshot -https://www.w3.org/TR/mathml-core/#attribute-mpadded-voffset +current +https://w3c.github.io/mse-byte-stream-format-mp2t/#dfn-mpeg2ts_timestampoffset 1 - -mpadded@width +mpeg2ts_timestampoffset dfn -mathml-core -mathml-core +mse-byte-stream-format-mp2t +mse-byte-stream-format-mp2t 1 snapshot -https://www.w3.org/TR/mathml-core/#attribute-mpadded-width +https://www.w3.org/TR/mse-byte-stream-format-mp2t/#dfn-mpeg2ts_timestampoffset 1 - -mpath +mphantom element -svg-animations -svg-animations +mathml-core +mathml-core 1 current -https://svgwg.org/specs/animations/#elementdef-mpath +https://w3c.github.io/mathml-core/#dfn-mphantom 1 1 - @@ -123,8 +103,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mphantom +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mphantom 1 1 - @@ -138,3 +118,13 @@ https://w3c.github.io/mathml-core/#dfn-mprescripts 1 1 - +mprescripts +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mprescripts +1 +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mr.data b/bikeshed/spec-data/readonly/anchors/anchors-mr.data index fe0c9b606b..31fd6f24f1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mr.data @@ -1,21 +1,11 @@ -<mroot> -dfn +mroot +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mroot - -1 -- -<mrow> -dfn -mathml-core -mathml-core +current +https://w3c.github.io/mathml-core/#dfn-mroot 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mrow - 1 - mroot @@ -23,8 +13,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mroot +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mroot 1 1 - @@ -78,6 +68,16 @@ https://w3c.github.io/mathml-core/#dfn-mrow 1 1 - +mrow +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mrow +1 +1 +- mrst dfn webrtc-svc diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ms.data b/bikeshed/spec-data/readonly/anchors/anchors-ms.data index a66cc48d15..be04b6f28c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ms.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ms.data @@ -1,73 +1,3 @@ -<ms> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-ms - -1 -- -<mspace> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mspace - -1 -- -<msqrt> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-msqrt - -1 -- -<mstyle> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mstyle - -1 -- -<msub> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-msub - -1 -- -<msubsup> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-msubsup - -1 -- -<msup> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-msup - -1 -- ms value css-values-3 @@ -122,6 +52,16 @@ https://www.w3.org/TR/css-values-4/#ms 1 <time> - +ms +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-ms +1 +1 +- ms(value) method css-typed-om-1 @@ -144,15 +84,16 @@ https://www.w3.org/TR/css-typed-om-1/#dom-css-ms 1 CSS - -msb -dfn -png-spec -png-spec +msFromTime(t) +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/PNG-spec/#dfn-msb - +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-msfromtime 1 +1 +globalThis - mspace element @@ -164,34 +105,24 @@ https://w3c.github.io/mathml-core/#dfn-mspace 1 1 - -mspace@depth -dfn +mspace +element mathml-core mathml-core 1 snapshot -https://www.w3.org/TR/mathml-core/#attribute-mspace-depth - -1 -- -mspace@height -dfn -mathml-core -mathml-core +https://www.w3.org/TR/mathml-core/#dfn-mspace 1 -snapshot -https://www.w3.org/TR/mathml-core/#attribute-mspace-height - 1 - -mspace@width -dfn +msqrt +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#attribute-mspace-width - +current +https://w3c.github.io/mathml-core/#dfn-msqrt +1 1 - msqrt @@ -199,8 +130,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-msqrt +snapshot +https://www.w3.org/TR/mathml-core/#dfn-msqrt 1 1 - @@ -254,6 +185,16 @@ https://w3c.github.io/mathml-core/#dfn-mstyle 1 1 - +mstyle +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mstyle +1 +1 +- msub element mathml-core @@ -264,6 +205,16 @@ https://w3c.github.io/mathml-core/#dfn-msub 1 1 - +msub +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-msub +1 +1 +- msub base dfn mathml-core @@ -314,6 +265,16 @@ https://w3c.github.io/mathml-core/#dfn-msubsup 1 1 - +msubsup +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-msubsup +1 +1 +- msubsup base dfn mathml-core @@ -384,6 +345,16 @@ https://w3c.github.io/mathml-core/#dfn-msup 1 1 - +msup +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-msup +1 +1 +- msup base dfn mathml-core diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mt.data b/bikeshed/spec-data/readonly/anchors/anchors-mt.data index 6edba55dd1..4ee9946832 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mt.data @@ -1,70 +1,70 @@ -<mtable> -dfn +mtable +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mtable - +current +https://w3c.github.io/mathml-core/#dfn-mtable +1 1 - -<mtd> -dfn +mtable +element mathml-core mathml-core 1 snapshot -https://www.w3.org/TR/mathml-core/#dfn-mtd - +https://www.w3.org/TR/mathml-core/#dfn-mtable +1 1 - -<mtext> -dfn +mtd +element mathml-core mathml-core 1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-mtext - +current +https://w3c.github.io/mathml-core/#dfn-mtd +1 1 - -<mtr> -dfn +mtd +element mathml-core mathml-core 1 snapshot -https://www.w3.org/TR/mathml-core/#dfn-mtr - +https://www.w3.org/TR/mathml-core/#dfn-mtd +1 1 - -mtable +mtext element mathml-core mathml-core 1 current -https://w3c.github.io/mathml-core/#dfn-mtable +https://w3c.github.io/mathml-core/#dfn-mtext 1 1 - -mtd +mtext element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mtd +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mtext 1 1 - -mtext +mtr element mathml-core mathml-core 1 current -https://w3c.github.io/mathml-core/#dfn-mtext +https://w3c.github.io/mathml-core/#dfn-mtr 1 1 - @@ -73,8 +73,8 @@ element mathml-core mathml-core 1 -current -https://w3c.github.io/mathml-core/#dfn-mtr +snapshot +https://www.w3.org/TR/mathml-core/#dfn-mtr 1 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-mu.data b/bikeshed/spec-data/readonly/anchors/anchors-mu.data index 3e7357c9f8..94e4108383 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-mu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-mu.data @@ -10,6 +10,17 @@ https://w3c.github.io/mst-content-hint/#idl-def-AudioContentHint.music - "music" enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opussignal-music +1 +1 +OpusSignal +- +"music" +enum-value file-system-access file-system-access 1 @@ -29,6 +40,17 @@ https://www.w3.org/TR/mst-content-hint/#idl-def-AudioContentHint.music 1 - +"music" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opussignal-music +1 +1 +OpusSignal +- :muted selector selectors-4 @@ -37,6 +59,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-muted 1 +1 +- +:muted +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-muted + 1 - :muted @@ -47,26 +79,6 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#selectordef-muted 1 -1 -- -<munder> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-munder - -1 -- -<munderover> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-munderover - 1 - MultiCacheQueryOptions @@ -213,6 +225,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssnumericvalue-mul 1 CSSNumericValue - +mul() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-mul +1 +1 +CSSNumericValue +- mul(...values) method css-typed-om-1 @@ -257,6 +280,39 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul 1 MLGraphBuilder - +mul(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-mul +1 +1 +MLGraphBuilder +- +mul(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul +1 +1 +MLGraphBuilder +- +multi-bid limit +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-multi-bid-limit + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- multi-col line dfn css-multicol-1 @@ -367,6 +423,16 @@ https://drafts.csswg.org/css-multicol-1/#multi-column-spanner 1 1 - +multi-column spanner +dfn +css-multicol-1 +css-multicol +1 +snapshot +https://www.w3.org/TR/css-multicol-1/#multi-column-spanner +1 +1 +- multi-column spanning element dfn css-multicol-1 @@ -377,6 +443,16 @@ https://drafts.csswg.org/css-multicol-1/#multi-column-spanning-element 1 1 - +multi-column spanning element +dfn +css-multicol-1 +css-multicol +1 +snapshot +https://www.w3.org/TR/css-multicol-1/#multi-column-spanning-element +1 +1 +- multi-device credential dfn webauthn-3 @@ -385,6 +461,16 @@ webauthn current https://w3c.github.io/webauthn/#multi-device-credential +1 +- +multi-device credential +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#multi-device-credential + 1 - multi-factor capable @@ -429,24 +515,35 @@ https://www.w3.org/TR/css-flexbox-1/#multi-line-flex-container - multi-screen origin dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#multi-screen-origin +https://w3c.github.io/window-management/#multi-screen-origin 1 - multi-screen origin dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#multi-screen-origin +https://www.w3.org/TR/window-management/#multi-screen-origin 1 - +multiBidLimit +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-multibidlimit +1 +1 +BiddingBrowserSignals +- multiEntry attribute indexeddb-3 @@ -602,7 +699,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#multipart/form-data +https://html.spec.whatwg.org/multipage/indices.html#multipart%2Fform-data 1 - @@ -612,7 +709,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-boundary-string +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-boundary-string 1 1 - @@ -622,7 +719,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-encoding-algorithm 1 1 - @@ -632,7 +729,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#multipart/mixed +https://html.spec.whatwg.org/multipage/indices.html#multipart%2Fmixed 1 - @@ -642,7 +739,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/iana.html#multipart/x-mixed-replace +https://html.spec.whatwg.org/multipage/iana.html#multipart%2Fx-mixed-replace 1 - @@ -753,6 +850,26 @@ css current https://drafts.csswg.org/css2/#multiple-declarations +1 +- +multiple declarations +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x8 +1 +1 +- +multiple declarations +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x8 +1 1 - multiple values @@ -773,6 +890,16 @@ longtasks current https://w3c.github.io/longtasks/#multiple-contexts +1 +- +multiple-contexts +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#multiple-contexts + 1 - multiplicative_expression @@ -952,7 +1079,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-multiply-two-types - +1 1 CSSNumericValue - @@ -1088,27 +1215,27 @@ https://www.w3.org/TR/webgpu/#dom-gputexturebindinglayout-multisampled 1 GPUTextureBindingLayout - -multisampled_texture_type +multisampled texture dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-multisampled_texture_type +https://gpuweb.github.io/gpuweb/wgsl/#type-multisampled-texture 1 -syntax +type - -multisampled_texture_type +multisampled texture dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-multisampled_texture_type +https://www.w3.org/TR/WGSL/#type-multisampled-texture 1 -syntax +type - munder element @@ -1120,6 +1247,16 @@ https://w3c.github.io/mathml-core/#dfn-munder 1 1 - +munder +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-munder +1 +1 +- munder base dfn mathml-core @@ -1170,6 +1307,16 @@ https://w3c.github.io/mathml-core/#dfn-munderover 1 1 - +munderover +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-munderover +1 +1 +- munderover base dfn mathml-core @@ -1240,6 +1387,28 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-muse 1 - +music +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opussignal-music +1 +1 +OpusSignal +- +music +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opussignal-music +1 +1 +OpusSignal +- must dfn css22 @@ -1248,6 +1417,26 @@ css current https://drafts.csswg.org/css2/#must +1 +- +must +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x0 +1 +1 +- +must +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x0 +1 1 - must not @@ -1258,6 +1447,26 @@ css current https://drafts.csswg.org/css2/#must-not +1 +- +must not +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x1 +1 +1 +- +must not +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x1 +1 1 - must not be exposed @@ -1280,6 +1489,72 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-must-not-be-exposed 1 - +must_use +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#attribute-must_use + +1 +attribute +- +must_use +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#attribute-must_use + +1 +attribute +- +must_use_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-must_use_attr + +1 +recursive descent syntax +- +must_use_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-must_use_attr + +1 +syntax +- +must_use_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-must_use_attr + +1 +recursive descent syntax +- +must_use_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-must_use_attr + +1 +syntax +- mutable dfn html @@ -1454,6 +1729,28 @@ current https://w3c.github.io/mediacapture-main/#event-mediastreamtrack-mute 1 +- +mute +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-mute +1 +1 +SmartCardReaderStateFlagsIn +- +mute +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-mute +1 +1 +SmartCardReaderStateFlagsOut - mute event @@ -1494,8 +1791,9 @@ html 1 current https://html.spec.whatwg.org/multipage/media.html#concept-media-muted - 1 +1 +media element - muted attribute @@ -1509,14 +1807,26 @@ https://html.spec.whatwg.org/multipage/media.html#dom-media-muted HTMLMediaElement - muted -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-muted +1 +1 +model +- +muted +dfn +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dfn-muted-0 1 +source - muted attribute @@ -1538,6 +1848,7 @@ current https://w3c.github.io/mediacapture-main/#track-muted 1 1 +MediaStreamTrack - muted attribute @@ -1551,6 +1862,17 @@ https://w3c.github.io/mediacapture-transform/#dom-videotrackgenerator-muted VideoTrackGenerator - muted +dfn +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dfn-muted-0 + +1 +source +- +muted attribute mediacapture-streams mediacapture-streams @@ -1570,6 +1892,7 @@ snapshot https://www.w3.org/TR/mediacapture-streams/#track-muted 1 1 +MediaStreamTrack - muted attribute diff --git a/bikeshed/spec-data/readonly/anchors/anchors-n_.data b/bikeshed/spec-data/readonly/anchors/anchors-n_.data index 405ecfb484..2ac81694e9 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-n_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-n_.data @@ -29,13 +29,3 @@ https://w3c.github.io/webcrypto/#dom-jsonwebkey-n 1 JsonWebKey - -n -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-n - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-na.data b/bikeshed/spec-data/readonly/anchors/anchors-na.data index 01bc00c079..3a6af068b2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-na.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-na.data @@ -74,16 +74,6 @@ https://drafts.csswg.org/selectors-nonelement-1/#typedef-na-name 1 1 - -<na-name> -type -selectors-nonelement-1 -selectors-nonelement -1 -snapshot -https://www.w3.org/TR/selectors-nonelement-1/#typedef-na-name -1 -1 -- <na-prefix> type selectors-nonelement-1 @@ -94,16 +84,6 @@ https://drafts.csswg.org/selectors-nonelement-1/#typedef-na-prefix 1 1 - -<na-prefix> -type -selectors-nonelement-1 -selectors-nonelement -1 -snapshot -https://www.w3.org/TR/selectors-nonelement-1/#typedef-na-prefix -1 -1 -- <name-repeat> type css-grid-2 @@ -154,23 +134,43 @@ https://drafts.csswg.org/selectors-nonelement-1/#typedef-namespace-attr 1 1 - -<namespace-attr> +<namespace-prefix> type -selectors-nonelement-1 -selectors-nonelement +css-namespaces-3 +css-namespaces +3 +current +https://drafts.csswg.org/css-namespaces-3/#typedef-namespace-prefix 1 -snapshot -https://www.w3.org/TR/selectors-nonelement-1/#typedef-namespace-attr 1 +- +<naturalnumbers/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_naturalnumbers + +1 +- +<naturalnumbers/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_naturalnumbers + 1 - -<namespace-prefix> -type +@namespace +at-rule css-namespaces-3 css-namespaces 3 current -https://drafts.csswg.org/css-namespaces-3/#typedef-namespace-prefix +https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace 1 1 - @@ -321,83 +321,71 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-nativeerror - NavigateEvent interface -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#navigateevent -1 -1 -- -NavigateEvent(type, eventInit) -constructor -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-navigateevent +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigateevent 1 1 -NavigateEvent - NavigateEventInit dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigateeventinit +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigateeventinit 1 1 - Navigation interface -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation 1 1 - -NavigationCurrentEntryChangeEvent +NavigationActivation interface -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationcurrententrychangeevent +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationactivation 1 1 - -NavigationCurrentEntryChangeEvent(type, eventInit) -constructor -navigation-api -navigation-api +NavigationCurrentEntryChangeEvent +interface +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeevent-navigationcurrententrychangeevent +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationcurrententrychangeevent 1 1 -NavigationCurrentEntryChangeEvent - NavigationCurrentEntryChangeEventInit dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationcurrententrychangeeventinit +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationcurrententrychangeeventinit 1 1 - NavigationDestination interface -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationdestination +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationdestination 1 1 - @@ -487,71 +475,71 @@ https://www.w3.org/TR/css-nav-1/#dictdef-navigationeventinit - NavigationFocusReset enum -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#enumdef-navigationfocusreset +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationfocusreset 1 1 - NavigationHistoryBehavior enum -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#enumdef-navigationhistorybehavior +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationhistorybehavior 1 1 - NavigationHistoryEntry interface -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationhistoryentry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationhistoryentry 1 1 - NavigationInterceptHandler callback -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#callbackdef-navigationintercepthandler +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationintercepthandler 1 1 - NavigationInterceptOptions dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationinterceptoptions +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationinterceptoptions 1 1 - NavigationNavigateOptions dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationnavigateoptions +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationnavigateoptions 1 1 - NavigationOptions dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationoptions +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationoptions 1 1 - @@ -597,31 +585,31 @@ https://www.w3.org/TR/service-workers/#dictdef-navigationpreloadstate - NavigationReloadOptions dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationreloadoptions +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationreloadoptions 1 1 - NavigationResult dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationresult +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationresult 1 1 - NavigationScrollBehavior enum -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#enumdef-navigationscrollbehavior +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationscrollbehavior 1 1 - @@ -647,31 +635,31 @@ https://www.w3.org/TR/navigation-timing-2/#dom-navigationtimingtype - NavigationTransition interface -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationtransition +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtransition 1 1 - NavigationType enum -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#enumdef-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtype 1 1 - NavigationUpdateCurrentEntryOptions dictionary -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dictdef-navigationupdatecurrententryoptions +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationupdatecurrententryoptions 1 1 - @@ -715,6 +703,16 @@ https://w3c.github.io/badging/#dom-navigatorbadge 1 1 - +NavigatorBadge +interface +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dom-navigatorbadge +1 +1 +- NavigatorConcurrentHardware interface html @@ -825,6 +823,16 @@ https://www.w3.org/TR/web-locks/#navigatorlocks 1 1 - +NavigatorLogin +interface +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#navigatorlogin +1 +1 +- NavigatorML interface webnn @@ -845,6 +853,26 @@ https://www.w3.org/TR/webnn/#navigatorml 1 1 - +NavigatorManagedData +interface +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#navigatormanageddata +1 +1 +- +NavigatorManagedData +interface +managed-configuration +managed-configuration +1 +current +https://wicg.github.io/WebApiDevice/managed_config/#navigatormanageddata +1 +1 +- NavigatorNetworkInformation interface netinfo @@ -865,6 +893,16 @@ https://html.spec.whatwg.org/multipage/system-state.html#navigatoronline 1 1 - +NavigatorPlugins +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins +1 +1 +- NavigatorStorage interface storage @@ -875,6 +913,16 @@ https://storage.spec.whatwg.org/#navigatorstorage 1 1 - +NavigatorStorageBuckets +interface +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#navigatorstoragebuckets +1 +1 +- NavigatorUA interface ua-client-hints @@ -913,7 +961,7 @@ mediacapture-streams current https://w3c.github.io/mediacapture-main/#dom-navigatorusermediaerrorcallback 1 -1 + - NavigatorUserMediaErrorCallback callback @@ -923,7 +971,7 @@ mediacapture-streams snapshot https://www.w3.org/TR/mediacapture-streams/#dom-navigatorusermediaerrorcallback 1 -1 + - NavigatorUserMediaSuccessCallback callback @@ -933,7 +981,7 @@ mediacapture-streams current https://w3c.github.io/mediacapture-main/#dom-navigatorusermediasuccesscallback 1 -1 + - NavigatorUserMediaSuccessCallback callback @@ -943,7 +991,29 @@ mediacapture-streams snapshot https://www.w3.org/TR/mediacapture-streams/#dom-navigatorusermediasuccesscallback 1 + +- +[[name]] +attribute +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperand-name-slot +1 +1 +MLOperand +- +[[name]] +attribute +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperand-name-slot +1 1 +MLOperand - nackCount dict-member @@ -1214,6 +1284,17 @@ Font - name attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontryrule-name +1 +1 +CSSPositionTryRule +- +name +attribute css-animations-1 css-animations 1 @@ -1345,6 +1426,17 @@ https://fedidcg.github.io/FedCM/#dom-identityproviderbranding-name IdentityProviderBranding - name +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityuserinfo-name +1 +1 +IdentityUserInfo +- +name dfn fetch fetch @@ -1638,6 +1730,38 @@ https://html.spec.whatwg.org/multipage/image-maps.html#dom-map-name HTMLMapElement - name +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry-name + +1 +- +name +element-attr +html +html +1 +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-details-name +1 +1 +details +- +name +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-details-name +1 +1 +HTMLDetailsElement +- +name attribute html html @@ -1649,6 +1773,27 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-name Window - name +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-name +1 +1 +NotRestoredReasons +- +name +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-name + +1 +- +name element-attr html html @@ -1890,6 +2035,17 @@ https://notifications.spec.whatwg.org/#action-name action - name +argument +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-broadcastchannel-name-name +1 +1 +StorageAccessHandle/BroadcastChannel(name) +- +name attribute ecmascript ecmascript @@ -1939,9 +2095,10 @@ url url 1 current -https://url.spec.whatwg.org/#dom-urlsearchparams-delete-name-name +https://url.spec.whatwg.org/#dom-urlsearchparams-delete-name-value-name 1 1 +URLSearchParams/delete(name, value) URLSearchParams/delete(name) - name @@ -1972,9 +2129,10 @@ url url 1 current -https://url.spec.whatwg.org/#dom-urlsearchparams-has-name-name +https://url.spec.whatwg.org/#dom-urlsearchparams-has-name-value-name 1 1 +URLSearchParams/has(name, value) URLSearchParams/has(name) - name @@ -1989,6 +2147,28 @@ https://url.spec.whatwg.org/#dom-urlsearchparams-set-name-value-name URLSearchParams/set(name, value) - name +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#part-name + +1 +part +- +name +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-type-name + +1 +token/type +- +name attribute fileapi fileapi @@ -2200,6 +2380,17 @@ https://w3c.github.io/IndexedDB/#object-store-name object-store - name +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#system-clipboard-representation-name + +1 +system clipboard representation +- +name dict-member contact-picker contact-picker @@ -2222,7 +2413,51 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dom-trackingexdata-name TrackingExData - name -dfn +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-name +1 +1 +PerformanceLongAnimationFrameTiming +- +name +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-name +1 +1 +PerformanceScriptTiming +- +name +attribute +longtasks-1 +longtasks +1 +current +https://w3c.github.io/longtasks/#dom-performancelongtasktiming-name +1 +1 +PerformanceLongTaskTiming +- +name +attribute +longtasks-1 +longtasks +1 +current +https://w3c.github.io/longtasks/#dom-taskattributiontiming-name +1 +1 +TaskAttributionTiming +- +name +dfn appmanifest appmanifest 1 @@ -2288,6 +2523,17 @@ https://w3c.github.io/miniapp-manifest/#dfn-name-2 MiniApp widget resource - name +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-payererrors-name +1 +1 +PayerErrors +- +name attribute performance-timeline performance-timeline @@ -2353,14 +2599,15 @@ https://w3c.github.io/reporting/#dom-endpoint-name endpoint - name -dfn -resource-timing -resource-timing +attribute +network-reporting +network-reporting 1 current -https://w3c.github.io/resource-timing/#dfn-name - +https://w3c.github.io/reporting/network-reporting.html#dom-endpoint-group-name +1 1 +endpoint group - name attribute @@ -2396,6 +2643,16 @@ https://w3c.github.io/trusted-types/dist/spec/#trustedtypepolicy-name TrustedTypePolicy - name +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-name +1 +1 +- +name attribute web-locks web-locks @@ -2729,6 +2986,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothuuid-getservice-nam BluetoothUUID/getService(name) - name +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-name +1 +1 +BluetoothLEScanFilter +- +name argument webidl webidl @@ -2762,7 +3030,7 @@ webidl 1 current https://webidl.spec.whatwg.org/#domexception-name - +1 1 DOMException - @@ -2772,10 +3040,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-input-name-desc-name +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-input-name-descriptor-name 1 1 -MLGraphBuilder/input(name, desc) +MLGraphBuilder/input(name, descriptor) - name dfn @@ -3071,6 +3339,17 @@ https://wicg.github.io/entries-api/#name 1 - name +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#interest-group-descriptor-name +1 +1 +interest group descriptor +- +name dict-member js-self-profiling js-self-profiling @@ -3093,6 +3372,87 @@ https://wicg.github.io/manifest-incubations/#dfn-name file handler - name +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerattributenamespace-name +1 +1 +SanitizerAttributeNamespace +- +name +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerelementnamespace-name +1 +1 +SanitizerElementNamespace +- +name +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-run-name-options-name +1 +1 +SharedStorage/run(name, options) +SharedStorage/run(name) +- +name +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-selecturl-name-urls-options-name +1 +1 +SharedStorage/selectURL(name, urls, options) +SharedStorage/selectURL(name, urls) +- +name +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-run-name-options-name +1 +1 +SharedStorageWorklet/run(name, options) +SharedStorageWorklet/run(name) +- +name +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-selecturl-name-urls-options-name +1 +1 +SharedStorageWorklet/selectURL(name, urls, options) +SharedStorageWorklet/selectURL(name, urls) +- +name +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworkletglobalscope-register-name-operationctor-name +1 +1 +SharedStorageWorkletGlobalScope/register(name, operationCtor) +- +name attribute speech-api speech-api @@ -3126,26 +3486,93 @@ https://wicg.github.io/speech-api/#dom-speechsynthesisvoice-name SpeechSynthesisVoice - name +attribute +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-name +1 +1 +StorageBucket +- +name +argument +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-delete-name-name +1 +1 +StorageBucketManager/delete(name) +- +name +argument +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-open-name-options-name +1 +1 +StorageBucketManager/open(name, options) +StorageBucketManager/open(name) +- +name +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroupkey-name +1 +1 +AuctionAdInterestGroupKey +- +name +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-name +1 +1 +GenerateBidInterestGroup +- +name +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-registeradmacro-name-value-name +1 +1 +InterestGroupReportingScriptRunnerGlobalScope/registerAdMacro(name, value) +- +name dfn -urlpattern -urlpattern +turtledove +turtledove 1 current -https://wicg.github.io/urlpattern/#part-name +https://wicg.github.io/turtledove/#interest-group-name 1 -part +interest group - name dfn -urlpattern -urlpattern +turtledove +turtledove 1 current -https://wicg.github.io/urlpattern/#token-type-name +https://wicg.github.io/turtledove/#server-auction-interest-group-name 1 -token/type +server auction interest group - name dfn @@ -3446,6 +3873,17 @@ https://www.w3.org/TR/credential-management-1/#dom-passwordcredentialdata-name PasswordCredentialData - name +attribute +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#dom-csspositiontryrule-name +1 +1 +CSSPositionTryRule +- +name argument css-animation-worklet-1 css-animation-worklet @@ -3480,6 +3918,17 @@ CSSLayerBlockRule - name attribute +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#dom-csscolorprofilerule-name +1 +1 +CSSColorProfileRule +- +name +attribute css-counter-styles-3 css-counter-styles 3 @@ -3491,6 +3940,17 @@ CSSCounterStyleRule - name attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacevariationaxis-name +1 +1 +FontFaceVariationAxis +- +name +attribute css-fonts-4 css-fonts 4 @@ -3578,6 +4038,28 @@ https://www.w3.org/TR/cssom-1/#dom-cssmarginrule-name CSSMarginRule - name +attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-performancelongtasktiming-name +1 +1 +PerformanceLongTaskTiming +- +name +attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-taskattributiontiming-name +1 +1 +TaskAttributionTiming +- +name dfn miniapp-manifest miniapp-manifest @@ -3622,6 +4104,17 @@ https://www.w3.org/TR/miniapp-manifest/#dfn-name-2 MiniApp widget resource - name +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-payererrors-name +1 +1 +PayerErrors +- +name attribute performance-timeline performance-timeline @@ -3666,6 +4159,16 @@ https://www.w3.org/TR/permissions/#dom-permissionstatus-name PermissionStatus - name +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-name + +1 +- +name attribute reporting-1 reporting @@ -3677,16 +4180,6 @@ https://www.w3.org/TR/reporting-1/#dom-endpoint-name endpoint - name -dfn -resource-timing -resource-timing -1 -snapshot -https://www.w3.org/TR/resource-timing/#dfn-name - -1 -- -name attribute server-timing server-timing @@ -3698,17 +4191,6 @@ https://www.w3.org/TR/server-timing/#dom-performanceservertiming-name PerformanceServerTiming - name -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata-name - -1 -trackingexdata -- -name attribute trusted-types trusted-types @@ -3731,6 +4213,16 @@ https://www.w3.org/TR/trusted-types/#trustedtypepolicy-name TrustedTypePolicy - name +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-name +1 +1 +- +name dict-member wasm-js-api-2 wasm-js-api @@ -3888,23 +4380,45 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialentity-name PublicKeyCredentialEntity - name -argument -webnn -webnn -1 +dict-member +webauthn-3 +webauthn +3 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input-name-desc-name +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialuserentityjson-name 1 1 -MLGraphBuilder/input(name, desc) +PublicKeyCredentialUserEntityJSON - name -dfn -webrtc-identity -webrtc-identity +attribute +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webrtc-identity/#dom-rtcidentityassertion-name +https://www.w3.org/TR/webmidi/#dom-midiport-name +1 +1 +MIDIPort +- +name +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input-name-descriptor-name +1 +1 +MLGraphBuilder/input(name, descriptor) +- +name +dfn +webrtc-identity +webrtc-identity +1 +snapshot +https://www.w3.org/TR/webrtc-identity/#dom-rtcidentityassertion-name 1 rtcidentityassertion @@ -4124,6 +4638,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothlescanfilterinit-na BluetoothLEScanFilterInit - +namePrefix +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-nameprefix +1 +1 +BluetoothLEScanFilter +- named attribute dfn dom @@ -4216,6 +4741,26 @@ css-color snapshot https://www.w3.org/TR/css-color-4/#named-color 1 +1 +- +named component expression +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#named-component-expression + +1 +- +named component expression +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#named-component-expression + 1 - named definition @@ -4241,6 +4786,17 @@ ViewTransition - named elements dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#view-transition-params-named-elements + +1 +view transition params +- +named elements +dfn html html 1 @@ -4260,6 +4816,17 @@ https://www.w3.org/TR/css-view-transitions-1/#viewtransition-named-elements 1 ViewTransition - +named elements +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#view-transition-params-named-elements + +1 +view transition params +- named flow dfn css-regions-1 @@ -4288,6 +4855,56 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-named-graph +1 +- +named graph +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-named-graph +1 +1 +- +named graph +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-named-graphs + +1 +- +named graph +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-named-graph + +1 +- +named graph +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-named-graph +1 +1 +- +named graph +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-named-graphs + 1 - named graphs @@ -4298,6 +4915,36 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-named-graph +1 +- +named graphs +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-named-graphs + +1 +- +named graphs +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-named-graph + +1 +- +named graphs +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-named-graphs + 1 - named grid area @@ -4448,6 +5095,26 @@ webidl current https://webidl.spec.whatwg.org/#dfn-named-property-visibility 1 +1 +- +named scroll progress timelines +dfn +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#named-scroll-progress-timelines + +1 +- +named scroll progress timelines +dfn +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#named-scroll-progress-timelines + 1 - named string @@ -4480,13 +5147,13 @@ https://www.w3.org/TR/css-content-3/#named-string 1 - -named strings +named string dfn css-gcpm-3 css-gcpm 3 snapshot -https://www.w3.org/TR/css-gcpm-3/#named-strings0 +https://www.w3.org/TR/css-gcpm-3/#named-string 1 - @@ -4510,13 +5177,43 @@ https://www.w3.org/TR/scroll-animations-1/#named-timeline-range 1 1 - -named view-transition pseudo-element +named view progress timelines +dfn +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#named-view-progress-timelines + +1 +- +named view progress timelines +dfn +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#named-view-progress-timelines + +1 +- +named view transition pseudo-elements dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#named-view-transition-pseudo-element +https://drafts.csswg.org/css-view-transitions-1/#named-view-transition-pseudo-elements + +1 +- +named view transition pseudo-elements +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#named-view-transition-pseudo-elements 1 - @@ -4670,7 +5367,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcKeyGenParams-namedCurve -1 + 1 - namedcurve @@ -4680,7 +5377,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-NamedCurve -1 + 1 - namedflows @@ -4701,6 +5398,36 @@ css-regions snapshot https://www.w3.org/TR/css-regions-1/#document-namedflows +1 +- +namedspace +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-namedspace + +1 +- +namedspace +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-namedspace + +1 +- +names +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#names + 1 - names @@ -4942,6 +5669,38 @@ current https://webidl.spec.whatwg.org/#dfn-namespace 1 1 +- +namespace +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerattributenamespace-namespace +1 +1 +SanitizerAttributeNamespace +- +namespace +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerelementnamespace-namespace +1 +1 +SanitizerElementNamespace +- +namespace +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-namespace + + - namespace concept dfn @@ -4962,6 +5721,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-namespace-iri +- +namespace iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-namespace-iri + + - namespace member dfn @@ -5034,6 +5803,16 @@ snapshot https://www.w3.org/TR/css-namespaces-3/#namespace-prefix 1 1 +- +namespace prefix +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-namespace-prefix + + - namespace prefix lists dfn @@ -5183,6 +5962,17 @@ https://www.w3.org/TR/html-aria/#dfn-naming-prohibited 1 - nan +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-nan +1 +1 +CSS +- +nan value css-values-4 css-values @@ -5194,6 +5984,17 @@ https://drafts.csswg.org/css-values-4/#valdef-calc-nan calc() - nan +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-nan +1 +1 +CSS +- +nan value css-values-4 css-values @@ -5248,11 +6049,21 @@ text-emphasis-skip - narrow-range image dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-narrow-range-image +https://w3c.github.io/png/#dfn-narrow-range-image + +1 +- +narrow-range image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-narrow-range-image 1 - @@ -5339,13 +6150,35 @@ https://immersive-web.github.io/anchors/#xrhittestresult-native-entity 1 XRHitTestResult - -native entity type +native entity dfn -webxr-hit-test-1 -webxr-hit-test +webxr-plane-detection +webxr-plane-detection 1 current -https://immersive-web.github.io/hit-test/#native-entity-type +https://immersive-web.github.io/real-world-geometry/plane-detection.html#xrplane-native-entity + +1 +XRPlane +- +native entity +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#xrmesh-native-entity + +1 +XRMesh +- +native entity type +dfn +webxr-hit-test-1 +webxr-hit-test +1 +current +https://immersive-web.github.io/hit-test/#native-entity-type 1 - @@ -5418,6 +6251,26 @@ snapshot https://www.w3.org/TR/webxr-hit-test-1/#native-hit-test-result 1 +- +native mesh detection +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#native-mesh-detection + + +- +native mesh objects +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#native-mesh-objects + + - native origin dfn @@ -5495,6 +6348,26 @@ https://www.w3.org/TR/webxr/#xrspace-native-origin 1 XRSpace +- +native plane detection +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#native-plane-detection + + +- +native plane objects +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#native-plane-objects + + - native webgl framebuffer resolution dfn @@ -5679,6 +6552,16 @@ css-images current https://drafts.csswg.org/css-images-3/#natural-height 1 +1 +- +natural height +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#concept-video-intrinsic-height + 1 - natural height @@ -5697,17 +6580,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_natural_language -1 - -- -natural language -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_natural_language +https://w3c.github.io/i18n-glossary/#dfn-natural-language 1 - @@ -5717,17 +6590,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_natural_language -1 - -- -natural language -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_natural_language +https://www.w3.org/TR/i18n-glossary/#dfn-natural-language 1 - @@ -5781,6 +6644,16 @@ css-images current https://drafts.csswg.org/css-images-3/#natural-width 1 +1 +- +natural width +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#concept-video-intrinsic-width + 1 - natural width @@ -5969,6 +6842,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-navajowhite 1 1 <color> +<named-color> - navajowhite dfn @@ -5990,6 +6864,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-navajowhite 1 1 <color> +<named-color> - navbeforefocus event @@ -6031,6 +6906,16 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-params-navigable +1 +- +navigable +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-params-navigable + 1 - navigable @@ -6050,6 +6935,27 @@ html 1 current https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-navigable +1 +1 +Window +- +navigable cache behavior +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#navigable-cache-behavior + +1 +- +navigable cache behavior map +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#navigable-cache-behavior-map 1 - @@ -6063,6 +6969,27 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#navigable-contain 1 1 - +navigable event map +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#event-navigable-event-map +1 +1 +event +- +navigable id +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#navigable-id +1 +1 +- navigable seen nodes map dfn webdriver2 @@ -6104,6 +7031,17 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate 1 - navigate +event +html +html +1 +current +https://html.spec.whatwg.org/multipage/indices.html#event-navigate +1 +1 +Navigation +- +navigate dfn infra infra @@ -6135,17 +7073,6 @@ https://w3c.github.io/navigation-timing/#dom-navigationtimingtype-navigate NavigationTimingType - navigate -event -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#eventdef-navigation-navigate -1 -1 -Navigation -- -navigate enum-value navigation-timing-2 navigation-timing @@ -6202,7 +7129,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate-to-a-javascript:-url +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate-to-a-javascript%3A-url 1 - @@ -6241,17 +7168,6 @@ WindowClient - navigate(url) method -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigation-navigate -1 -1 -Navigation -- -navigate(url) -method service-workers service-workers 1 @@ -6263,11 +7179,11 @@ WindowClient - navigate(url, options) method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-navigate +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-navigate 1 1 Navigation @@ -6296,22 +7212,22 @@ client mode - navigateerror event -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#eventdef-navigation-navigateerror +https://html.spec.whatwg.org/multipage/indices.html#event-navigateerror 1 1 Navigation - navigatesuccess event -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#eventdef-navigation-navigatesuccess +https://html.spec.whatwg.org/multipage/indices.html#event-navigatesuccess 1 1 Navigation @@ -6334,9 +7250,63 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-navigating-to-a-fragment-identifier +1 +- +navigating url attributes list +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#navigating-url-attributes-list + 1 - navigation +descriptor +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#descdef-view-transition-navigation +1 +1 +@view-transition +- +navigation +attribute +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-cssviewtransitionrule-navigation +1 +1 +CSSViewTransitionRule +- +navigation +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#view-transition-navigation + +1 +@view-transition +- +navigation +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation +1 +1 +Window +- +navigation attribute navigation-timing-2 navigation-timing @@ -6359,15 +7329,37 @@ https://wicg.github.io/attribution-reporting-api/#source-type-navigation source type - navigation +descriptor +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#descdef-view-transition-navigation +1 +1 +@view-transition +- +navigation attribute -navigation-api -navigation-api +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-cssviewtransitionrule-navigation 1 -current -https://wicg.github.io/navigation-api/#dom-window-navigation 1 +CSSViewTransitionRule +- +navigation +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#view-transition-navigation + 1 -Window +@view-transition - navigation attribute @@ -6392,76 +7384,131 @@ https://html.spec.whatwg.org/multipage/webappapis.html#navigation-and-traversal- - navigation api dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#window-navigation-api +https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-navigation-api 1 -Window - navigation api id dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#session-history-entry-navigation-api-id +https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-navigation-api-id 1 -session history entry - navigation api key dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#session-history-entry-navigation-api-key +https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-navigation-api-key 1 -session history entry - -navigation api method navigation +navigation api method tracker dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker + +1 +- +navigation api method tracker-derived result +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-derived-result 1 - navigation api state dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#session-history-entry-navigation-api-state +https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-navigation-api-state 1 -session history entry - -navigation handler list +navigation budget epoch dfn -navigation-api -navigation-api +shared-storage +shared-storage 1 current -https://wicg.github.io/navigation-api/#navigateevent-navigation-handler-list +https://wicg.github.io/shared-storage/#navigation-budget-epoch 1 -NavigateEvent - -navigation id +navigation budget lifetime +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#navigation-budget-lifetime + +1 +- +navigation can trigger a cross-document view-transition? +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#navigation-can-trigger-a-cross-document-view-transition +1 +1 +- +navigation can trigger a cross-document view-transition? +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#navigation-can-trigger-a-cross-document-view-transition +1 +1 +- +navigation entropy allowance +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#navigation-entropy-allowance + +1 +- +navigation entropy ledger +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#navigation-entropy-ledger + +1 +- +navigation handler list dfn html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-id +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigateevent-navigation-handler-list 1 - @@ -6471,20 +7518,19 @@ html html 1 current -https://html.spec.whatwg.org/multipage/dom.html#concept-document-navigation-id +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-id 1 - navigation object dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-navigation-object +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-navigation 1 -navigation API method navigation - navigation params dfn @@ -6645,6 +7691,16 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-navigation-style-values +1 +- +navigation task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#navigation-task + 1 - navigation timing entry @@ -6675,28 +7731,47 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-params-nav-timing-type +1 +- +navigation timing type +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-params-nav-timing-type + 1 - navigation type dfn -navigation-timing-2 -navigation-timing -2 +html +html +1 current -https://w3c.github.io/navigation-timing/#dfn-navigation-type +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationtransition-navigationtype 1 - navigation type dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationtransition-navigation-type +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nav-activation-navigation-type + +1 +- +navigation type +dfn +navigation-timing-2 +navigation-timing +2 +current +https://w3c.github.io/navigation-timing/#dfn-navigation-type 1 -NavigationTransition - navigation type dfn @@ -6706,6 +7781,26 @@ navigation-timing snapshot https://www.w3.org/TR/navigation-timing-2/#dfn-navigation-type +1 +- +navigation-credentialless +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#navigation-credentialless +1 +1 +- +navigation-failure +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-navigation-failure + 1 - navigation-override @@ -6728,15 +7823,59 @@ https://www.w3.org/TR/css-nav-1/#navigation-override 1 - -navigation-source trigger data cardinality +navigation-params-credentialless +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#navigation-params-credentialless + +1 +- +navigation-source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligibility-navigation-source + +1 +eligibility +- +navigation-source dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#navigation-source-trigger-data-cardinality +https://wicg.github.io/attribution-reporting-api/#eligible-key-navigation-source 1 +eligible key +- +navigationId +attribute +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dom-performanceentry-navigationid +1 +1 +PerformanceEntry +- +navigationId +attribute +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dom-performanceentry-navigationid +1 +1 +PerformanceEntry - navigationPreload attribute @@ -6784,55 +7923,66 @@ PerformanceTiming - navigationType attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-navigationtype 1 1 NavigateEvent - navigationType dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-navigationtype 1 1 NavigateEventInit - navigationType attribute -navigation-api -navigation-api +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationactivation-navigationtype +1 +1 +NavigationActivation +- +navigationType +attribute +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeevent-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationcurrententrychangeevent-navigationtype 1 1 NavigationCurrentEntryChangeEvent - navigationType dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeeventinit-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationcurrententrychangeeventinit-navigationtype 1 1 NavigationCurrentEntryChangeEventInit - navigationType attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationtransition-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtransition-navigationtype 1 1 NavigationTransition @@ -6928,27 +8078,46 @@ https://www.w3.org/TR/miniapp-manifest/#dfn-navigation_style 1 - -navigationapistate +navigational tracking dfn -navigation-api -navigation-api +nav-tracking-mitigations +nav-tracking-mitigations 1 current -https://wicg.github.io/navigation-api/#navigate-navigationapistate +https://privacycg.github.io/nav-tracking-mitigations/#navigational-tracking +1 +- +navigationapistate +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-navigation-api-state +1 1 navigate - navigationapistate dfn -navigation-api -navigation-api +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#reload-navigation-api-state + +1 +- +navigationapistate +dfn +html +html 1 current -https://wicg.github.io/navigation-api/#reload-navigationapistate +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-navigationapistate 1 -reload - navigationpreloadmanager dfn @@ -6972,26 +8141,47 @@ https://www.w3.org/TR/service-workers/#service-worker-registration-navigationpre 1 service worker registration - -navigationtype +navigationsourceeligible dfn -infra -infra +attribution-reporting-api +attribution-reporting-api 1 current -https://infra.spec.whatwg.org/#example-navigate-algo-navigationType +https://wicg.github.io/attribution-reporting-api/#navigate-navigationsourceeligible +1 +navigate +- +navigationsourceeligible +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#navigation-params-navigationsourceeligible +1 +navigation params - navigationtype dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-navigationtype +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-navigationtype 1 -fire a non-traversal navigate event +- +navigationtype +dfn +infra +infra +1 +current +https://infra.spec.whatwg.org/#example-navigate-algo-navigationType + + - navigator attribute @@ -7017,19 +8207,9 @@ WorkerGlobalScope - navigator dfn -device-posture -device-posture -1 -current -https://w3c.github.io/device-posture/#dom-navigator - -1 -- -navigator -dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-navigator @@ -7057,21 +8237,21 @@ https://wicg.github.io/window-controls-overlay/#dom-navigator - navigator dfn -device-posture -device-posture -1 +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/device-posture/#dom-navigator +https://www.w3.org/TR/encrypted-media-2/#dom-navigator 1 - navigator dfn -encrypted-media -encrypted-media +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-navigator +https://www.w3.org/TR/webmidi/#dom-navigator 1 - @@ -7085,17 +8265,6 @@ https://html.spec.whatwg.org/multipage/system-state.html#concept-navigator-compa 1 - -navigator.donottrack -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-donottrack - -1 -navigator -- navigator.hardwareConcurrency attribute html @@ -7107,72 +8276,6 @@ https://html.spec.whatwg.org/multipage/workers.html#dom-navigator-hardwareconcur 1 NavigatorConcurrentHardware - -navigator.removetrackingexception -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-removetrackingexception - -1 -navigator -- -navigator.removetrackingexception() -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-removetrackingexception - -1 -navigator -- -navigator.storetrackingexception -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-storetrackingexception - -1 -navigator -- -navigator.storetrackingexception() -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-storetrackingexception - -1 -navigator -- -navigator.trackingexceptionexists -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-trackingexceptionexists - -1 -navigator -- -navigator.trackingexceptionexists() -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-trackingexceptionexists - -1 -navigator -- navigatornetworkinformation dfn savedata @@ -7181,16 +8284,6 @@ savedata current https://wicg.github.io/savedata/#dfn-navigatornetworkinformation -1 -- -navigatorplugins -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins - 1 - navnotarget @@ -7235,6 +8328,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-navy 1 1 <color> +<named-color> - navy value @@ -7267,4 +8361,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-navy 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ne.data b/bikeshed/spec-data/readonly/anchors/anchors-ne.data index 8ed81ca60d..451db964a7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ne.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ne.data @@ -132,6 +132,17 @@ FrameType - "network" enum-value +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routersourceenum-network +1 +1 +RouterSourceEnum +- +"network" +enum-value speech-api speech-api 1 @@ -284,13 +295,33 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbcursordirection-nextunique 1 IDBCursorDirection - +<neq/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_neq + +1 +- +<neq/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_neq + +1 +- @never enum-value json-ld11-framing json-ld-framing 1 current -https://w3c.github.io/json-ld-framing/#dom-jsonldembed-@never +https://w3c.github.io/json-ld-framing/#dom-jsonldembed-%40never 1 1 JsonLdEmbed @@ -301,7 +332,7 @@ json-ld11-framing json-ld-framing 1 snapshot -https://www.w3.org/TR/json-ld11-framing/#dom-jsonldembed-@never +https://www.w3.org/TR/json-ld11-framing/#dom-jsonldembed-%40never 1 1 JsonLdEmbed @@ -403,6 +434,16 @@ https://wicg.github.io/savedata/#dom-networkinformationsavedata 1 NetworkInformationSaveData - +NewDeclarativeEnvironment +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newdeclarativeenvironment +1 +1 +- NewDeclarativeEnvironment(E) abstract-op ecmascript @@ -413,6 +454,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +NewFunctionEnvironment +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newfunctionenvironment +1 +1 +- NewFunctionEnvironment(F, newTarget) abstract-op ecmascript @@ -423,6 +474,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +NewGlobalEnvironment +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newglobalenvironment +1 +1 +- NewGlobalEnvironment(G, thisValue) abstract-op ecmascript @@ -433,6 +494,16 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +NewModuleEnvironment +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newmoduleenvironment +1 +1 +- NewModuleEnvironment(E) abstract-op ecmascript @@ -453,6 +524,16 @@ https://webidl.spec.whatwg.org/#NewObject 1 1 - +NewObjectEnvironment +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newobjectenvironment +1 +1 +- NewObjectEnvironment(O, W, E) abstract-op ecmascript @@ -463,7 +544,7 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - -NewPrivateEnvironment(outerPrivEnv) +NewPrivateEnvironment abstract-op ecmascript ecmascript @@ -473,6 +554,26 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +NewPrivateEnvironment(outerPrivateEnv) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newprivateenvironment +1 +1 +- +NewPromiseCapability +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-newpromisecapability +1 +1 +- NewPromiseCapability(C) abstract-op ecmascript @@ -483,6 +584,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-newpromis 1 1 - +NewPromiseReactionJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-newpromisereactionjob +1 +1 +- NewPromiseReactionJob(reaction, argument) abstract-op ecmascript @@ -493,6 +604,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-newpromis 1 1 - +NewPromiseResolveThenableJob +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-newpromiseresolvethenablejob +1 +1 +- NewPromiseResolveThenableJob(promiseToResolve, thenable, then) abstract-op ecmascript @@ -521,8 +642,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-negotiated + 1 -1 +RTCDataChannel - [[NegotiationNeeded]] attribute @@ -542,8 +664,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-negotiationneeded + 1 -1 +RTCPeerConnection - ne-resize value @@ -601,17 +724,6 @@ https://www.w3.org/TR/css-ui-4/#valdef-cursor-ne-resize cursor - near -dict-member -proximity -proximity -1 -current -https://w3c.github.io/proximity/#dom-proximityreadingvalues-near -1 -1 -ProximityReadingValues -- -near attribute proximity proximity @@ -633,17 +745,6 @@ https://w3c.github.io/proximity/#near 1 - near -dict-member -proximity -proximity -1 -snapshot -https://www.w3.org/TR/proximity/#dom-proximityreadingvalues-near -1 -1 -ProximityReadingValues -- -near attribute proximity proximity @@ -664,6 +765,17 @@ https://www.w3.org/TR/proximity/#near 1 - +nearMesh +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmetadata-nearmesh +1 +1 +XRMetadata +- nearest value css-rhythm-1 @@ -688,6 +800,17 @@ https://drafts.csswg.org/css-values-4/#valdef-rounding-strategy-nearest - nearest value +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-group-nearest +1 +1 +view-transition-group +- +nearest +value scroll-animations-1 scroll-animations 1 @@ -752,6 +875,36 @@ scroll-to-text-fragment current https://wicg.github.io/scroll-to-text-fragment/#nearest-block-ancestor +1 +- +nearest containing group name +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#nearest-containing-group-name + +1 +- +nearest enclosing diagnostic filter +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#nearest-enclosing-diagnostic-filter + +1 +- +nearest enclosing diagnostic filter +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#nearest-enclosing-diagnostic-filter + 1 - nearest inclusive open popover @@ -782,6 +935,26 @@ css-images current https://drafts.csswg.org/css-images-3/#nearest-neighbor +1 +- +nearest neighbor +dfn +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#nearest-neighbor + +1 +- +nearest same-origin root +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#nearest-same-origin-root + 1 - nearest scrollport @@ -855,17 +1028,6 @@ https://html.spec.whatwg.org/multipage/browsers.html#coop-enforcement-bcg-switch 1 - -needs continue -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#navigateevent-needs-continue - -1 -NavigateEvent -- needs more data dfn streams @@ -877,6 +1039,26 @@ https://streams.spec.whatwg.org/#readablestream-need-more-data 1 ReadableStream - +needs scroll adjustment +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#needs-scroll-adjustment + +1 +- +needs scroll adjustment +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#needs-scroll-adjustment + +1 +- needsRedraw attribute webxrlayers-1 @@ -899,7 +1081,7 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrcompositionlayer-needsredraw 1 XRCompositionLayer - -neg(x) +neg(input) method webnn webnn @@ -910,7 +1092,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-neg 1 MLGraphBuilder - -neg(x) +neg(input) method webnn webnn @@ -921,27 +1103,27 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg 1 MLGraphBuilder - -negate -dfn -css-typed-om-1 -css-typed-om +neg(input, options) +method +webnn +webnn 1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#cssmath-negate - +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-neg 1 -CSSMath +1 +MLGraphBuilder - -negate -enum-value -css-typed-om-1 -css-typed-om +neg(input, options) +method +webnn +webnn 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-negate +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg 1 1 -CSSMathOperator +MLGraphBuilder - negate a cssnumericvalue dfn @@ -954,6 +1136,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#cssmath-negate-a-cssnumericvalue 1 CSSMath - +negate a cssnumericvalue +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#cssmath-negate-a-cssnumericvalue +1 +1 +CSSMath +- negated filters dfn attribution-reporting-api @@ -982,6 +1175,17 @@ attribution-reporting-api attribution-reporting-api 1 current +https://wicg.github.io/attribution-reporting-api/#aggregatable-values-configuration-negated-filters + +1 +aggregatable values configuration +- +negated filters +dfn +attribution-reporting-api +attribution-reporting-api +1 +current https://wicg.github.io/attribution-reporting-api/#attribution-trigger-negated-filters 1 @@ -1042,6 +1246,38 @@ https://www.w3.org/TR/css-counter-styles-3/#dom-csscounterstylerule-negative 1 CSSCounterStyleRule - +negative infinity +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-infinity +1 +1 +CSS +- +negative infinity +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-infinity +1 +1 +CSS +- +negative interest group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#negative-interest-group + +1 +- negative scrollable overflow region dfn css-overflow-3 @@ -1049,9 +1285,94 @@ css-overflow 3 current https://drafts.csswg.org/css-overflow-3/#negative-scrollable-overflow-region +1 +1 +- +negative scrollable overflow region +dfn +css-overflow-3 +css-overflow +3 +snapshot +https://www.w3.org/TR/css-overflow-3/#negative-scrollable-overflow-region +1 +1 +- +negative target info +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#negative-target-info + +1 +- +negative target interest group names +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#decoded-additional-bid-negative-target-interest-group-names + +1 +decoded additional bid +- +negative target joining origin +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#decoded-additional-bid-negative-target-joining-origin + +1 +decoded additional bid +- +negative targeting +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#negative-targeting 1 - +negative zero +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-signed-zero +1 +1 +CSS +- +negative zero +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-signed-zero +1 +1 +CSS +- +negotiable +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-negotiable +1 +1 +SmartCardConnectionState +- negotiated attribute webrtc @@ -1128,14 +1449,15 @@ https://w3c.github.io/webrtc-pc/#event-negotiation RTCPeerConnection - negotiationneeded -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-negotiation +1 - +RTCPeerConnection - neighbor dfn @@ -1149,7 +1471,7 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-neighbor - nel dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1159,17 +1481,17 @@ https://w3c.github.io/network-error-logging/#dfn-nel - nel dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-nel +https://www.w3.org/TR/network-error-logging/#dfn-nel 1 - nel policies dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1179,17 +1501,17 @@ https://w3c.github.io/network-error-logging/#dfn-nel-policies - nel policies dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-nel-policies - +https://www.w3.org/TR/network-error-logging/#dfn-nel-policies +1 1 - nel policy dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1199,12 +1521,12 @@ https://w3c.github.io/network-error-logging/#dfn-nel-policies - nel policy dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-nel-policies - +https://www.w3.org/TR/network-error-logging/#dfn-nel-policies +1 1 - nemeth braille @@ -1219,13 +1541,13 @@ https://w3c.github.io/aria/#dfn-nemeth-braille - nemeth braille dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-nemeth-braille +https://w3c.github.io/aria/#dfn-nemeth-braille + -1 - nemeth braille dfn @@ -1246,6 +1568,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-nemeth-braille +- +nemeth braille +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-nemeth-braille + + - nest value dfn @@ -1267,6 +1599,39 @@ https://www.w3.org/TR/json-ld11-api/#dfn-nest-value 1 - +nested config mapping +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-nested-config-mapping + +1 +fenced frame config mapping +- +nested configs +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-nested-configs +1 +1 +fenced frame config instance +- +nested configs +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-nested-configs +1 +1 +fenced frame config +- nested context required document policy dfn document-policy @@ -1275,6 +1640,16 @@ document-policy current https://wicg.github.io/document-policy/#nested-context-required-document-policy +1 +- +nested declarations rule +dfn +css-nesting-1 +css-nesting +1 +current +https://drafts.csswg.org/css-nesting-1/#nested-declarations-rule%E2%91%A0 +1 1 - nested grid @@ -1523,6 +1898,17 @@ https://w3c.github.io/media-source/#dom-endofstreamerror-network EndOfStreamError - network +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#modules-network +1 +1 +modules +- +network enum-value media-source-2 media-source @@ -1535,11 +1921,21 @@ EndOfStreamError - network byte order dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-network-byte-order +https://w3c.github.io/png/#dfn-network-byte-order + +1 +- +network byte order +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-network-byte-order 1 - @@ -1555,7 +1951,7 @@ https://fetch.spec.whatwg.org/#concept-network-error - network error dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1565,17 +1961,17 @@ https://w3c.github.io/network-error-logging/#dfn-network-errors - network error dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-network-errors +https://www.w3.org/TR/network-error-logging/#dfn-network-errors 1 - network error report dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1585,17 +1981,17 @@ https://w3c.github.io/network-error-logging/#dfn-network-error-reports - network error report dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-network-error-reports +https://www.w3.org/TR/network-error-logging/#dfn-network-error-reports 1 - network error reports dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1605,17 +2001,17 @@ https://w3c.github.io/network-error-logging/#dfn-network-error-reports - network error reports dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-network-error-reports +https://www.w3.org/TR/network-error-logging/#dfn-network-error-reports 1 - network errors dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1625,11 +2021,11 @@ https://w3c.github.io/network-error-logging/#dfn-network-errors - network errors dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-network-errors +https://www.w3.org/TR/network-error-logging/#dfn-network-errors 1 - @@ -1643,13 +2039,13 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-network-interaction - -network interaction +network intercept dfn -tracking-dnt -tracking-dnt +webdriver-bidi +webdriver-bidi 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-network-interaction +current +https://w3c.github.io/webdriver-bidi/#network-intercept 1 - @@ -1660,12 +2056,22 @@ fetch 1 current https://fetch.spec.whatwg.org/#network-partition-key +1 +1 +- +network reporting endpoint +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network-reporting-endpoint 1 - network request dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1675,17 +2081,17 @@ https://w3c.github.io/network-error-logging/#dfn-network-requests - network request dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-network-requests +https://www.w3.org/TR/network-error-logging/#dfn-network-requests 1 - network requests dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1695,14 +2101,102 @@ https://w3c.github.io/network-error-logging/#dfn-network-requests - network requests dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-network-requests +https://www.w3.org/TR/network-error-logging/#dfn-network-requests 1 - +network.addintercept +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkaddintercept +1 +1 +commands +- +network.continuerequest +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkcontinuerequest +1 +1 +commands +- +network.continueresponse +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkcontinueresponse +1 +1 +commands +- +network.continuewithauth +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkcontinuewithauth +1 +1 +commands +- +network.failrequest +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkfailrequest +1 +1 +commands +- +network.provideresponse +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkprovideresponse +1 +1 +commands +- +network.removeintercept +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networkremoveintercept +1 +1 +commands +- +network.setcachebehavior +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-networksetcachebehavior +1 +1 +commands +- networkPriority dict-member webrtc-priority @@ -1736,6 +2230,16 @@ https://html.spec.whatwg.org/multipage/media.html#dom-media-networkstate 1 HTMLMediaElement - +network_reporting_endpoints +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints + +1 +- networking task source dfn html @@ -2097,6 +2601,16 @@ html current https://html.spec.whatwg.org/multipage/web-messaging.html#dom-broadcastchannel +1 +- +new closewatcher(options) +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#dom-closewatcher + 1 - new connection setting @@ -2141,6 +2655,16 @@ https://www.w3.org/TR/css-view-transitions-1/#captured-element-new-element 1 captured element - +new entry +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nav-activation-new-entry + +1 +- new information about the user's intent dfn permissions @@ -2241,27 +2765,15 @@ https://drafts.css-houdini.org/css-typed-om-1/#create-a-cssunitvalue-from-a-pair 1 1 - -new view-box rule -dfn -css-view-transitions-1 -css-view-transitions -1 -current -https://drafts.csswg.org/css-view-transitions-1/#captured-element-new-view-box-rule - -1 -captured element -- -new view-box rule +new unit value dfn -css-view-transitions-1 -css-view-transitions +css-typed-om-1 +css-typed-om 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#captured-element-new-view-box-rule - +https://www.w3.org/TR/css-typed-om-1/#create-a-cssunitvalue-from-a-pair +1 1 -captured element - new window dfn @@ -2317,10 +2829,32 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reshape-input-newshape-newshape +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-newshape +1 +1 +MLGraphBuilder/expand(input, newShape, options) +- +newShape +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-newshape +1 +1 +MLGraphBuilder/reshape(input, newShape, options) +- +newShape +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-newshape 1 1 -MLGraphBuilder/reshape(input, newShape) +MLGraphBuilder/expand(input, newShape, options) - newShape argument @@ -2328,10 +2862,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-newshape +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-newshape 1 1 -MLGraphBuilder/reshape(input, newShape) +MLGraphBuilder/reshape(input, newShape, options) - newSize argument @@ -2350,7 +2884,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#dom-toggleevent-newstate +https://html.spec.whatwg.org/multipage/interaction.html#dom-toggleevent-newstate 1 1 ToggleEvent @@ -2589,6 +3123,16 @@ https://wicg.github.io/manifest-incubations/#dfn-new_note_url 1 note_taking - +new_tab_button +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-new_tab_button + +1 +- newline dfn css-syntax-3 @@ -2692,10 +3236,10 @@ scheduling-apis scheduling-apis 1 current -https://wicg.github.io/scheduling-apis/#scheduler-next-enqueue-order +https://wicg.github.io/scheduling-apis/#event-loop-next-enqueue-order 1 -Scheduler +event loop - next index dfn @@ -2703,7 +3247,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenizer-next-index +https://urlpattern.spec.whatwg.org/#tokenizer-next-index 1 tokenizer @@ -2736,16 +3280,6 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#next-input-code-point 1 -1 -- -next input token -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#next-input-token - 1 - next input token @@ -2764,7 +3298,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#next-is-authority-slashes +https://urlpattern.spec.whatwg.org/#next-is-authority-slashes 1 - @@ -2795,7 +3329,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser-next-numeric-name +https://urlpattern.spec.whatwg.org/#pattern-parser-next-numeric-name 1 pattern parser @@ -2821,6 +3355,27 @@ https://drafts.csswg.org/web-animations-2/#next-sibling-not-included 1 - +next sibling not included +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#next-sibling-not-included + +1 +- +next token +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-next-token + +1 +token stream +- next token dfn html @@ -2831,27 +3386,26 @@ https://html.spec.whatwg.org/multipage/parsing.html#next-token 1 - -next(value) -method -ecmascript -ecmascript +next update after +dfn +turtledove +turtledove 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-next -1 +https://wicg.github.io/turtledove/#interest-group-next-update-after + 1 -AsyncGenerator +interest group - -next(value) -method -ecmascript -ecmascript +next user interaction allows a new group +dfn +html +html 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.next -1 +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-manager-next + 1 -Generator - next-sibling combinator dfn @@ -2981,6 +3535,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-nextsibling 1 AnimationEffect - +nextSibling +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-nextsibling +1 +1 +AnimationEffect +- nextSibling() method dom diff --git a/bikeshed/spec-data/readonly/anchors/anchors-nf.data b/bikeshed/spec-data/readonly/anchors/anchors-nf.data index f27bf8e623..9ccedd5360 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-nf.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-nf.data @@ -19,6 +19,16 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-nfc 1 1 AuthenticatorTransport +- +nfc +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-c +1 + - nfc enum-value @@ -30,6 +40,16 @@ https://w3c.github.io/webauthn/#dom-authenticatortransport-nfc 1 1 AuthenticatorTransport +- +nfc +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-c +1 + - nfc enum-value @@ -214,3 +234,63 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 nfc - +nfd +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-d +1 + +- +nfd +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-d +1 + +- +nfkc +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-kc +1 + +- +nfkc +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-kc +1 + +- +nfkd +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-kd +1 + +- +nfkd +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-kd +1 + +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-no.data b/bikeshed/spec-data/readonly/anchors/anchors-no.data index 77194ebee9..be53ac49ae 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-no.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-no.data @@ -202,6 +202,7 @@ https://drafts.csswg.org/web-animations-1/#dom-fillmode-none 1 1 FillMode +PlaybackDirection - "none" enum-value @@ -249,6 +250,17 @@ XRHandedness - "none" enum-value +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-samesitecookiestype-none +1 +1 +SameSiteCookiesType +- +"none" +enum-value service-workers service-workers 1 @@ -336,6 +348,17 @@ https://wicg.github.io/cookie-store/#dom-cookiesamesite-none CookieSameSite - "none" +enum-value +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-refreshpolicy-none +1 +1 +RefreshPolicy +- +"none" dfn webhid webhid @@ -369,6 +392,17 @@ BreakType - "none" enum-value +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransitionnavigation-none +1 +1 +ViewTransitionNavigation +- +"none" +enum-value image-capture image-capture 1 @@ -424,6 +458,17 @@ FillMode - "none" enum-value +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-fillmode-none +1 +1 +FillMode +- +"none" +enum-value webaudio webaudio 1 @@ -576,6 +621,28 @@ https://www.w3.org/TR/webgpu/#dom-gpucomparefunction-not-equal 1 GPUCompareFunction - +"not-running" +enum-value +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-runningstatus-not-running +1 +1 +RunningStatus +- +"notCalculated" +enum-value +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-kanonstatus-notcalculated +1 +1 +KAnonStatus +- "notch" enum-value webaudio @@ -598,6 +665,26 @@ https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-notch 1 BiquadFilterType - +"nothing" +dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-nothing + +1 +- +"nothing" +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-nothing + +1 +- 'none' grammar csp3 @@ -618,6 +705,46 @@ https://www.w3.org/TR/CSP3/#grammardef-none 1 1 - +'none'::as border style +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-bo-none +1 +1 +- +'none'::as border style +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-bo-none +1 +1 +- +'none'::as display value +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x21 +1 +1 +- +'none'::as display value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x21 +1 +1 +- :not() selector selectors-3 @@ -658,13 +785,103 @@ https://www.w3.org/TR/selectors-4/#negation-pseudo 1 1 - -<none> +<not/> dfn -mathml-core -mathml-core +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_not + +1 +- +<not/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_not + +1 +- +<notanumber/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_notanumber + +1 +- +<notanumber/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_notanumber + +1 +- +<notin/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_notin + +1 +- +<notin/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_notin + +1 +- +<notprsubset/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_notprsubset + +1 +- +<notprsubset/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_notprsubset + +1 +- +<notsubset/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_notsubset + 1 +- +<notsubset/> +dfn +mathml4 +mathml +4 snapshot -https://www.w3.org/TR/mathml-core/#dfn-none +https://www.w3.org/TR/mathml4/#contm_notsubset 1 - @@ -815,6 +1032,16 @@ https://dom.spec.whatwg.org/#nonelementparentnode 1 1 - +NormalCompletion +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-normalcompletion +1 +1 +- NormalCompletion(value) abstract-op ecmascript @@ -855,6 +1082,26 @@ https://webidl.spec.whatwg.org/#notreadableerror 1 1 - +NotRestoredReasonDetails +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#notrestoredreasondetails +1 +1 +- +NotRestoredReasons +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#notrestoredreasons +1 +1 +- NotSupportedError exception webidl @@ -988,7 +1235,17 @@ https://notifications.spec.whatwg.org/#callbackdef-notificationpermissioncallbac 1 1 - -NotifyWaiter(WL, W) +NotifyWaiter +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-notifywaiter +1 +1 +- +NotifyWaiter(WL, waiterRecord) abstract-op ecmascript ecmascript @@ -1042,6 +1299,27 @@ https://www.w3.org/TR/webaudio/#dom-periodicwave-normalize-slot 1 PeriodicWave - +no +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#attr-translate-no-keyword +1 +1 +html-global/translate +- +no +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#attr-translate-no-state + +1 +- no corresponding role dfn html-aria @@ -1070,6 +1348,26 @@ html current https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-crossorigin-none +1 +- +no invalidation +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#no-invalidation + +1 +- +no invalidation +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#no-invalidation + 1 - no longer open @@ -1092,17 +1390,7 @@ https://www.w3.org/TR/webdriver2/#dfn-no-longer-open 1 - -no pending font loads -dfn -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#no-pending-font-loads - -1 -- -no popover state +no popover dfn html html @@ -1143,6 +1431,17 @@ https://url.spec.whatwg.org/#no-scheme-state 1 basic URL parser - +no signals flags +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher-no-signals-flags + +1 +trusted bidding signals batcher +- no such alert dfn webdriver2 @@ -1181,6 +1480,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-no-such-cookie +1 +- +no such device +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#no-such-device + 1 - no such element @@ -1229,29 +1538,32 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#no-such-handle - +https://w3c.github.io/webdriver-bidi/#errors-no-such-handle +1 1 +errors - -no such mock sensor +no such history entry dfn -generic-sensor -generic-sensor +webdriver-bidi +webdriver-bidi 1 current -https://w3c.github.io/sensors/#no-such-mock-sensor - +https://w3c.github.io/webdriver-bidi/#errors-no-such-history-entry +1 1 +errors - -no such mock sensor +no such intercept dfn -generic-sensor -generic-sensor +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-no-such-intercept 1 -snapshot -https://www.w3.org/TR/generic-sensor/#no-such-mock-sensor - 1 +errors - no such node dfn @@ -1259,24 +1571,47 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#no-such-node - +https://w3c.github.io/webdriver-bidi/#errors-no-such-node +1 1 +errors - -no such script +no such prompt dfn -webdriver-bidi -webdriver-bidi +web-bluetooth +web-bluetooth 1 current -https://w3c.github.io/webdriver-bidi/#no-such-script +https://webbluetoothcg.github.io/web-bluetooth/#no-such-prompt 1 - -no such shadow root +no such request dfn -webdriver2 -webdriver +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-no-such-request +1 +1 +errors +- +no such script +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-no-such-script +1 +1 +errors +- +no such shadow root +dfn +webdriver2 +webdriver 2 current https://w3c.github.io/webdriver/#dfn-no-such-shadow-root @@ -1293,6 +1628,28 @@ https://www.w3.org/TR/webdriver2/#dfn-no-such-shadow-root 1 - +no such storage partition +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-no-such-storage-partition +1 +1 +errors +- +no such user context +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-no-such-user-context +1 +1 +errors +- no such window dfn webdriver2 @@ -1324,6 +1681,17 @@ https://drafts.csswg.org/css-text-4/#valdef-text-autospace-no-autospace 1 text-autospace - +no-autospace +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-no-autospace +1 +1 +text-autospace +- no-clip value css-masking-1 @@ -1372,6 +1740,26 @@ content - no-close-quote value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-no-close-quote +1 +1 +- +no-close-quote +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-no-close-quote +1 +1 +- +no-close-quote +value css-content-3 css-content 3 @@ -1466,10 +1854,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-no-compress +https://www.w3.org/TR/css-text-4/#valdef-text-justify-no-compress 1 1 -text-spacing +text-justify - no-contextual value @@ -1649,6 +2037,26 @@ content - no-open-quote value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-no-open-quote +1 +1 +- +no-open-quote +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-no-open-quote +1 +1 +- +no-open-quote +value css-content-3 css-content 3 @@ -1660,6 +2068,17 @@ content <content-list> <quote> - +no-overflow +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-no-overflow +1 +1 +position-visibility +- no-preference value mediaqueries-5 @@ -1803,6 +2222,17 @@ https://dom.spec.whatwg.org/#concept-document-no-quirks 1 - no-referrer +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-no-referrer +1 +1 +<request-url-modifier> +- +no-referrer enum-value referrer-policy referrer-policy @@ -1814,6 +2244,17 @@ https://www.w3.org/TR/referrer-policy/#dom-referrerpolicy-no-referrer ReferrerPolicy - no-referrer-when-downgrade +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-no-referrer-when-downgrade +1 +1 +<request-url-modifier> +- +no-referrer-when-downgrade enum-value referrer-policy referrer-policy @@ -1837,6 +2278,20 @@ background-repeat - no-repeat value +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-repeat-x-no-repeat +1 +1 +background-repeat-x +background-repeat-y +background-repeat-block +background-repeat-inline +- +no-repeat +value css-backgrounds-3 css-backgrounds 3 @@ -1846,6 +2301,17 @@ https://www.w3.org/TR/css-backgrounds-3/#valdef-background-repeat-no-repeat 1 background-repeat - +no-service +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-no-service +1 +1 +SmartCardResponseCode +- no-skip value css-text-decor-4 @@ -1857,6 +2323,17 @@ https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-self-no-s 1 text-decoration-skip-self - +no-smartcard +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-no-smartcard +1 +1 +SmartCardResponseCode +- no-sniff flag dfn mimesniff @@ -1887,6 +2364,93 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept- 1 - +no-vary params +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#url-search-variance-no-vary-params + +1 +URL search variance +- +no-vary-search +http-header +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#http-headerdef-no-vary-search +1 +1 +- +no-vary-search hint +dfn +prefetch +prefetch +1 +current +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-no-vary-search-hint +1 +1 +prefetch record +- +no-vary-search hint +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record-no-vary-search-hint +1 +1 +prerender record +- +no-vary-search hint +dfn +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#prefetch-candidate-no-vary-search-hint + +1 +prefetch candidate +- +no-vary-search hint +dfn +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#prerender-candidate-no-vary-search-hint + +1 +prerender candidate +- +no-vary-search hint +dfn +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rule-no-vary-search-hint + +1 +speculation rule +- +noDelay +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions-nodelay +1 +1 +TCPSocketOptions +- noHref attribute html @@ -2186,16 +2750,6 @@ NamedFlow/getRegionsByContent(node) - node dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-node - -1 -- -node -dfn rdf12-concepts rdf-concepts 1 @@ -2237,16 +2791,6 @@ https://wicg.github.io/layout-instability/#dom-layoutshiftattribution-node LayoutShiftAttribution - node -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-node - -1 -- -node argument css-regions-1 css-regions @@ -2259,6 +2803,16 @@ NamedFlow/getRegionsByContent() - node dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-node + +1 +- +node +dfn wai-aria-1.2 wai-aria 1 @@ -2716,6 +3270,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-node +1 +- +nodes +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-node + 1 - noembed @@ -2998,26 +3562,6 @@ https://html.spec.whatwg.org/multipage/scripting.html#attr-script-nomodule 1 script - -non-arrayed texture -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#non-arrayed-texture - -1 -- -non-arrayed texture -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#non-arrayed-texture - -1 -- non-ascii code point dfn css-syntax-3 @@ -3040,61 +3584,81 @@ https://drafts.csswg.org/css-syntax-3/#non-ascii-ident-code-point - non-associable dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#non-associable +https://w3c.github.io/encrypted-media/#dfn-non-associable 1 - non-associable dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#non-associable +https://www.w3.org/TR/encrypted-media-2/#dfn-non-associable 1 - non-associable by an entity dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#non-associable-by-entity +https://w3c.github.io/encrypted-media/#dfn-non-associable-by-an-entity 1 - non-associable by an entity dfn +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-non-associable-by-an-entity + +1 +- +non-associable by application +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-non-associable-by-application + 1 +- +non-associable by application +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#non-associable-by-entity +https://www.w3.org/TR/encrypted-media-2/#dfn-non-associable-by-application 1 - non-associable by the application dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#non-associable-by-application +https://w3c.github.io/encrypted-media/#dfn-non-associable-by-application 1 - non-associable by the application dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#non-associable-by-application +https://www.w3.org/TR/encrypted-media-2/#dfn-non-associable-by-application 1 - @@ -3228,6 +3792,16 @@ paint-timing current https://w3c.github.io/paint-timing/#non-empty +1 +- +non-empty +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#non-empty + 1 - non-fetch scheme navigation params @@ -3286,7 +3860,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_non_linguistic_field +https://w3c.github.io/i18n-glossary/#dfn-non-linguistic-field 1 - @@ -3295,48 +3869,8 @@ dfn i18n-glossary i18n-glossary 1 -current -https://w3c.github.io/i18n-glossary/#def_non_linguistic_field -1 - -- -non-linguistic field -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_non_linguistic_field -1 - -- -non-linguistic field -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_non_linguistic_field -1 - -- -non-linguistic fields -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_non_linguistic_field -1 - -- -non-linguistic fields -dfn -i18n-glossary -i18n-glossary -1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_non_linguistic_field +https://www.w3.org/TR/i18n-glossary/#dfn-non-linguistic-field 1 - @@ -3358,16 +3892,6 @@ css-overscroll snapshot https://www.w3.org/TR/css-overscroll-1/#non-local-boundary-default-action -1 -- -non-normative -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-informative - 1 - non-normative @@ -3379,16 +3903,6 @@ current https://w3c.github.io/svg-aam/#dfn-informative -- -non-normative -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-informative - -1 - non-normative dfn @@ -3429,6 +3943,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-informative +- +non-overridable counter-style names +dfn +css-counter-styles-3 +css-counter-styles +3 +current +https://drafts.csswg.org/css-counter-styles-3/#non-overridable-counter-style-names + +1 - non-persistent notification dfn @@ -3440,6 +3964,28 @@ https://notifications.spec.whatwg.org/#non-persistent-notification 1 - +non-primary time zone identifier +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +non-primary time zone identifiers +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- non-printable code point dfn css-syntax-3 @@ -3691,10 +4237,10 @@ fedcm fedcm 1 current -https://fedidcg.github.io/FedCM/#dom-identityproviderconfig-nonce +https://fedidcg.github.io/FedCM/#dom-identityproviderrequestoptions-nonce 1 1 -IdentityProviderConfig +IdentityProviderRequestOptions - nonce element-attr @@ -3726,6 +4272,16 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-nonce +1 +- +nonce +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-nonce + 1 - nonce @@ -3751,13 +4307,23 @@ https://wicg.github.io/csp-next/scripting-policy.html#scripting-policy-nonce scripting policy - nonce -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-nonce +1 +- +nonce +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-nonce + 1 - nonce-source @@ -3827,10 +4393,21 @@ css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-none +https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-none +1 +1 +anchor-scope +- +none +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-none 1 1 -anchor-scroll +position-area - none value @@ -3838,10 +4415,10 @@ css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#valdef-position-fallback-none +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-none 1 1 -position-fallback +position-try-fallbacks - none value @@ -3918,6 +4495,17 @@ border - none value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#shadow-offset-none +1 +1 +box-shadow-offset +- +none +value css-box-4 css-box 4 @@ -3951,6 +4539,17 @@ forced-color-adjust - none value +css-conditional-5 +css-conditional +5 +current +https://drafts.csswg.org/css-conditional-5/#valdef-container-name-none +1 +1 +container-name +- +none +value css-contain-1 css-contain 1 @@ -3973,17 +4572,6 @@ contain - none value -css-contain-3 -css-contain -3 -current -https://drafts.csswg.org/css-contain-3/#valdef-container-name-none -1 -1 -container-name -- -none -value css-content-3 css-content 3 @@ -4133,6 +4721,17 @@ css-fonts-4 css-fonts 4 current +https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-position-none +1 +1 +font-synthesis-position +- +none +value +css-fonts-4 +css-fonts +4 +current https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-small-caps-none 1 1 @@ -4296,6 +4895,17 @@ initial-letter-wrap - none value +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-none +1 +1 +text-box-trim +- +none +value css-line-grid-1 css-line-grid 1 @@ -4429,6 +5039,17 @@ max-lines - none value +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#valdef-scroll-marker-group-none +1 +1 +scroll-marker-group +- +none +value css-overscroll-1 css-overscroll 1 @@ -4466,6 +5087,17 @@ float - none value +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#valdef-overlay-none +1 +1 +overlay +- +none +value css-ruby-1 css-ruby 1 @@ -4518,10 +5150,6 @@ https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-target-none 1 1 scroll-start-target -scroll-start-target-x -scroll-start-target-y -scroll-start-target-block -scroll-start-target-inline - none value @@ -4745,10 +5373,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-word-boundary-expansion-none +https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-none 1 1 -word-boundary-expansion +word-space-transform - none value @@ -4952,6 +5580,17 @@ user-select - none value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#valdef-clamp-none +1 +1 +clamp() +- +none +value css-view-transitions-1 css-view-transitions 1 @@ -4963,6 +5602,28 @@ view-transition-name - none value +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-class-none +1 +1 +view-transition-class +- +none +value +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-navigation-none +1 +1 +@view-transition/navigation +- +none +value css-writing-modes-3 css-writing-modes 3 @@ -5288,6 +5949,40 @@ https://drafts.csswg.org/mediaqueries-5/#valdef-media-update-none - none value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-timeline-scope-none +1 +1 +timeline-scope +- +none +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-fillmode-none +1 +1 +FillMode +PlaybackDirection +- +none +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#fill-mode-none + +1 +fill mode +- +none +value fill-stroke-3 fill-stroke 3 @@ -5336,7 +6031,7 @@ motion-1 motion 1 current -https://drafts.fxtf.org/motion-1/#offsetpath-none +https://drafts.fxtf.org/motion-1/#valdef-offset-path-none 1 1 offset-path @@ -5357,6 +6052,17 @@ html html 1 current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#uni-none +1 +1 +user navigation involvement +- +none +dfn +html +html +1 +current https://html.spec.whatwg.org/multipage/canvas.html#concept-canvas-none 1 @@ -5514,50 +6220,93 @@ html html 1 current -https://html.spec.whatwg.org/multipage/system-state.html#rph-automation-mode-none +https://html.spec.whatwg.org/multipage/scripting.html#attr-shadowrootmode-none-state 1 - none -enum-value -image-capture -image-capture +dfn +html +html 1 current -https://w3c.github.io/mediacapture-image/#dom-meteringmode-none -1 +https://html.spec.whatwg.org/multipage/system-state.html#rph-automation-mode-none + 1 -MeteringMode - none -enum-value -mediacapture-streams -mediacapture-streams +dfn +urlpattern +urlpattern 1 current -https://w3c.github.io/mediacapture-main/#idl-def-VideoResizeModeEnum.user -1 +https://urlpattern.spec.whatwg.org/#part-modifier-none + 1 -VideoResizeModeEnum +part/modifier - none enum-value -mediasession -mediasession +edit-context +edit-context 1 current -https://w3c.github.io/mediasession/#dom-mediasessionplaybackstate-none +https://w3c.github.io/edit-context/#dom-underlinestyle-none 1 1 -MediaSessionPlaybackState +UnderlineStyle - none enum-value -webauthn-3 -webauthn -3 +edit-context +edit-context +1 current -https://w3c.github.io/webauthn/#dom-attestationconveyancepreference-none +https://w3c.github.io/edit-context/#dom-underlinethickness-none +1 +1 +UnderlineThickness +- +none +enum-value +image-capture +image-capture +1 +current +https://w3c.github.io/mediacapture-image/#dom-meteringmode-none +1 +1 +MeteringMode +- +none +enum-value +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#idl-def-VideoResizeModeEnum.user +1 +1 +VideoResizeModeEnum +- +none +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionplaybackstate-none +1 +1 +MediaSessionPlaybackState +- +none +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-attestationconveyancepreference-none 1 1 AttestationConveyancePreference @@ -5616,17 +6365,6 @@ https://webaudio.github.io/web-audio-api/#dom-oversampletype-none OverSampleType - none -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#user-navigation-involvement-none - -1 -user navigation involvement -- -none enum-value netinfo netinfo @@ -5660,17 +6398,6 @@ https://wicg.github.io/serial/#dom-paritytype-none ParityType - none -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#part-modifier-none - -1 -part/modifier -- -none enum-value webhid webhid @@ -5683,6 +6410,50 @@ HIDUnitSystem - none value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-name-none +1 +1 +anchor-name +- +none +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-scope-none +1 +1 +anchor-scope +- +none +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-none +1 +1 +inset-area +- +none +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-none +1 +1 +position-try-options +- +none +value css-animations-1 css-animations 1 @@ -5705,6 +6476,18 @@ animation-name - none value +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#valdef-animation-timeline-none +1 +1 +animation-timeline +<single-animation-timeline> +- +none +value css-backgrounds-3 css-backgrounds 3 @@ -5777,6 +6560,17 @@ forced-color-adjust - none value +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#valdef-container-name-none +1 +1 +container-name +- +none +value css-contain-1 css-contain 1 @@ -5936,6 +6730,17 @@ css-fonts-4 css-fonts 4 snapshot +https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-position-none +1 +1 +font-synthesis-position +- +none +value +css-fonts-4 +css-fonts +4 +snapshot https://www.w3.org/TR/css-fonts-4/#valdef-font-synthesis-small-caps-none 1 1 @@ -6087,6 +6892,17 @@ https://www.w3.org/TR/css-inline-3/#valdef-initial-letter-wrap-none initial-letter-wrap - none +value +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#valdef-text-box-trim-none +1 +1 +text-box-trim +- +none enum-value css-layout-api-1 css-layout-api @@ -6187,39 +7003,28 @@ column-span - none value -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-block-ellipsis-none +https://www.w3.org/TR/css-overflow-4/#valdef-block-ellipsis-none 1 1 block-ellipsis - none value -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-line-clamp-none +https://www.w3.org/TR/css-overflow-4/#valdef-line-clamp-none 1 1 line-clamp - none value -css-overflow-3 -css-overflow -3 -snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-max-lines-none -1 -1 -max-lines -- -none -value css-overflow-4 css-overflow 4 @@ -6312,6 +7117,21 @@ scroll-snap-type - none value +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#valdef-scroll-start-target-none +1 +1 +scroll-start-target +scroll-start-target-block +scroll-start-target-inline +scroll-start-target-x +scroll-start-target-y +- +none +value css-scrollbars-1 css-scrollbars 1 @@ -6521,10 +7341,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-word-boundary-expansion-none +https://www.w3.org/TR/css-text-4/#valdef-word-space-transform-none 1 1 -word-boundary-expansion +word-space-transform - none value @@ -6728,6 +7548,17 @@ user-select - none value +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#valdef-clamp-none +1 +1 +clamp() +- +none +value css-view-transitions-1 css-view-transitions 1 @@ -6739,6 +7570,28 @@ view-transition-name - none value +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-class-none +1 +1 +view-transition-class +- +none +value +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-navigation-none +1 +1 +@view-transition/navigation +- +none +value css-writing-modes-3 css-writing-modes 3 @@ -7013,6 +7866,17 @@ https://www.w3.org/TR/motion-1/#offsetpath-none offsetpath - none +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-timeline-scope-none +1 +1 +timeline-scope +- +none enum-value webaudio webaudio @@ -7153,26 +8017,6 @@ a/rel area/rel form/rel - -noproxy -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-noproxy - -1 -- -noproxy -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-noproxy - -1 -- noreferrer attr-value html @@ -7277,6 +8121,17 @@ gap - normal value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-normal +1 +1 +position-try-order +- +normal +value css-animations-1 css-animations 1 @@ -7339,11 +8194,11 @@ color-scheme - normal value -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#valdef-container-type-normal +https://drafts.csswg.org/css-conditional-5/#valdef-container-type-normal 1 1 container-type @@ -7361,6 +8216,17 @@ content - normal value +css-display-4 +css-display +4 +current +https://drafts.csswg.org/css-display-4/#valdef-reading-flow-normal +1 +1 +reading-flow +- +normal +value css-fonts-4 css-fonts 4 @@ -7486,10 +8352,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-normal +https://drafts.csswg.org/css-fonts-4/#valdef-font-style-normal 1 1 -font-stretch +font-style - normal value @@ -7497,10 +8363,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-style-normal +https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-emoji-normal 1 1 -font-style +font-variant-emoji - normal value @@ -7508,10 +8374,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-emoji-normal +https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-normal 1 1 -font-variant-emoji +font-weight - normal value @@ -7519,10 +8385,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-normal +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-normal 1 1 -font-weight +font-width - normal value @@ -7579,10 +8445,10 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-normal +https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal 1 1 -leading-trim +line-height - normal value @@ -7590,10 +8456,10 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal +https://drafts.csswg.org/css-inline-3/#valdef-text-box-normal 1 1 -line-height +text-box - normal value @@ -7766,10 +8632,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-spacing-normal +https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-normal 1 1 -text-spacing +text-spacing-trim - normal value @@ -7788,10 +8654,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-word-boundary-detection-normal +https://drafts.csswg.org/css-text-4/#valdef-word-break-normal 1 1 -word-boundary-detection +word-break - normal value @@ -7799,21 +8665,21 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-word-break-normal +https://drafts.csswg.org/css-text-4/#valdef-word-spacing-normal 1 1 -word-break +word-spacing - normal value -css-text-4 -css-text -4 +css-view-transitions-2 +css-view-transitions +2 current -https://drafts.csswg.org/css-text-4/#valdef-word-spacing-normal +https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-group-normal 1 1 -word-spacing +view-transition-group - normal value @@ -7959,6 +8825,28 @@ https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-start-norma animation-range-start - normal +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-playbackdirection-normal +1 +1 +PlaybackDirection +- +normal +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#playback-direction-normal + +1 +playback direction +- +normal value compositing-1 compositing @@ -7981,6 +8869,17 @@ https://drafts.fxtf.org/compositing-2/#valdef-blend-mode-normal <blend-mode> - normal +value +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#valdef-offset-position-normal +1 +1 +offset-position +- +normal enum-value html html @@ -8083,6 +8982,17 @@ gap - normal value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-order-normal +1 +1 +position-try-order +- +normal +value css-animations-1 css-animations 1 @@ -8145,6 +9055,17 @@ color-scheme - normal value +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#valdef-container-type-normal +1 +1 +container-type +- +normal +value css-contain-3 css-contain 3 @@ -8292,10 +9213,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-normal +https://www.w3.org/TR/css-fonts-4/#valdef-font-style-normal 1 1 -font-stretch +font-style - normal value @@ -8303,10 +9224,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-style-normal +https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-emoji-normal 1 1 -font-style +font-variant-emoji - normal value @@ -8321,6 +9242,17 @@ font-weight - normal value +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-normal +1 +1 +font-width +- +normal +value css-fonts-5 css-fonts 5 @@ -8374,10 +9306,10 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-leading-trim-normal +https://www.w3.org/TR/css-inline-3/#valdef-line-height-normal 1 1 -leading-trim +line-height - normal value @@ -8385,10 +9317,10 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-line-height-normal +https://www.w3.org/TR/css-inline-3/#valdef-text-box-normal 1 1 -line-height +text-box - normal enum-value @@ -8561,10 +9493,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-normal +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-normal 1 1 -text-spacing +text-autospace - normal value @@ -8572,10 +9504,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-white-space-normal +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-normal 1 1 -white-space +text-spacing-trim - normal value @@ -8583,10 +9515,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-word-boundary-detection-normal +https://www.w3.org/TR/css-text-4/#valdef-white-space-normal 1 1 -word-boundary-detection +white-space - normal value @@ -8633,6 +9565,28 @@ https://www.w3.org/TR/css-writing-modes-4/#valdef-unicode-bidi-normal unicode-bidi - normal +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-animation-range-end-normal +1 +1 +animation-range-end +- +normal +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-animation-range-start-normal +1 +1 +animation-range-start +- +normal dfn webdriver2 webdriver @@ -8735,6 +9689,126 @@ snapshot https://www.w3.org/TR/webdriver2/#dfn-normal-window-state 1 +- +normalisation +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-normalisation +1 + +- +normalisation +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-normalisation +1 + +- +normalization +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-normalisation +1 + +- +normalization +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-normalisation +1 + +- +normalization form c +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-c +1 + +- +normalization form c +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-c +1 + +- +normalization form d +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-d +1 + +- +normalization form d +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-d +1 + +- +normalization form kc +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-kc +1 + +- +normalization form kc +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-kc +1 + +- +normalization form kd +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-kd +1 + +- +normalization form kd +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-kd +1 + - normalize dfn @@ -8808,6 +9882,16 @@ html current https://html.spec.whatwg.org/multipage/nav-history-apis.html#normalizing-the-feature-name +1 +- +normalize a module integrity map +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#normalizing-a-module-integrity-map + 1 - normalize a specifier key @@ -8837,7 +9921,27 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-normalize-an-algorithm + +1 +- +normalize data +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-normalize-data + 1 +- +normalize data +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-normalize-data + 1 - normalize into a token stream @@ -8898,6 +10002,16 @@ html current https://html.spec.whatwg.org/multipage/system-state.html#normalize-protocol-handler-parameters 1 +1 +- +normalize rect +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#normalize-rect + 1 - normalize specified timing @@ -8908,6 +10022,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#normalize-specified-timing +1 +- +normalize specified timing +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#normalize-specified-timing + 1 - normalize the source densities @@ -8953,26 +10077,6 @@ https://dom.spec.whatwg.org/#dom-document-normalizedocument 1 Document - -normalized dataset -dfn -rdf-canon -rdf-canon -1 -current -https://w3c.github.io/rdf-canon/spec/#dfn-normalized-dataset - -1 -- -normalized dataset -dfn -rdf-canon -rdf-canon -1 -snapshot -https://www.w3.org/TR/rdf-canon/#dfn-normalized-dataset - -1 -- normalized identifier string dfn webgpu @@ -9020,7 +10124,7 @@ html 1 current https://html.spec.whatwg.org/multipage/media.html#normalised-timeranges-object - +1 1 - normalized value @@ -9050,7 +10154,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-normalized-usages -1 + 1 - normalized view coordinates @@ -9083,35 +10187,16 @@ https://url.spec.whatwg.org/#normalized-windows-drive-letter 1 - -normalizedprotocol -dfn -manifest-incubations -manifest-incubations -1 -current -https://wicg.github.io/manifest-incubations/#dfn-normalizedprotocol - -1 -- -normalizedurl -dfn -manifest-incubations -manifest-incubations +normals +dict-member +webxr-meshing +webxr-meshing 1 current -https://wicg.github.io/manifest-incubations/#dfn-normalizedurl - +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmeshblock-normals 1 -- -normative -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-normative - 1 +XRMeshBlock - normative dfn @@ -9131,16 +10216,6 @@ w3c-patent-policy current https://www.w3.org/Consortium/Patent-Policy/#dfn-norm -1 -- -normative -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-normative - 1 - normative @@ -9238,6 +10313,17 @@ https://drafts.csswg.org/mediaqueries-5/#valdef-media-not @media - not +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-not +1 +1 +RouterCondition +- +not value mediaqueries-4 mediaqueries @@ -9299,23 +10385,13 @@ https://www.w3.org/TR/web-animations-1/#not-animatable 1 1 - -not displayed +not determined dfn -webdriver2 -webdriver +css-contain-2 +css-contain 2 current -https://w3c.github.io/webdriver/#dfn-element-displayedness - -1 -- -not displayed -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-element-displayedness +https://drafts.csswg.org/css-contain-2/#not-determined 1 - @@ -9329,37 +10405,7 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-not-enabled - -not enabled -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-not-enabled - -1 -- -not handled -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/webappapis.html#concept-error-nothandled - -1 -- -not handled -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/webappapis.html#concept-promise-rejection-nothandled - -1 -- -not hidden state +not hidden dfn html html @@ -9448,6 +10494,67 @@ w3c-process current https://www.w3.org/Consortium/Process/#not-required +1 +- +not restored reason details +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-details-struct +1 +1 +- +not restored reasons +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-not-restored-reasons + +1 +- +not restored reasons +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-nrr +1 +1 +Document +- +not restored reasons +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-struct +1 +1 +- +not restored reasons +dfn +navigation-timing-2 +navigation-timing +2 +current +https://w3c.github.io/navigation-timing/#dfn-not-restored-reasons + +1 +- +not restored reasons +dfn +navigation-timing-2 +navigation-timing +2 +snapshot +https://www.w3.org/TR/navigation-timing-2/#dfn-not-restored-reasons + 1 - not-allowed @@ -9474,9 +10581,9 @@ cursor - not-allowed enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysrequirement-not-allowed 1 @@ -9506,15 +10613,59 @@ https://www.w3.org/TR/css-ui-4/#valdef-cursor-not-allowed cursor - not-allowed -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysrequirement-not-allowed +1 +1 +MediaKeysRequirement +- +not-ready +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-not-ready +1 +1 +SmartCardResponseCode +- +not-transacted +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-not-transacted +1 +1 +SmartCardResponseCode +- +notRestoredReasons +attribute +navigation-timing-2 +navigation-timing +2 +current +https://w3c.github.io/navigation-timing/#dom-performancenavigationtiming-notrestoredreasons 1 +1 +PerformanceNavigationTiming +- +notRestoredReasons +attribute +navigation-timing-2 +navigation-timing +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysrequirement-not-allowed - +https://www.w3.org/TR/navigation-timing-2/#dom-performancenavigationtiming-notrestoredreasons +1 1 -mediakeysrequirement +PerformanceNavigationTiming - not_equal dfn @@ -9538,6 +10689,17 @@ https://www.w3.org/TR/WGSL/#syntax_sym-not_equal 1 syntax_sym - +not_filters +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-not_filters + +1 +trigger-registration JSON key +- notations attribute dom @@ -9629,16 +10791,6 @@ html current https://html.spec.whatwg.org/multipage/dom.html#concept-content-nothing -1 -- -nothing -dfn -badging -badging -1 -current -https://w3c.github.io/badging/#dfn-nothing - 1 - notification @@ -9673,6 +10825,16 @@ https://notifications.spec.whatwg.org/#dom-notificationeventinit-notification 1 NotificationEventInit - +notification show steps +dfn +notifications +notifications +1 +current +https://notifications.spec.whatwg.org/#notification-show-steps +1 +1 +- notifications permission notifications @@ -9684,6 +10846,17 @@ https://notifications.spec.whatwg.org/#permissiondef-notifications 1 - notify +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-notify + +1 +prompt handler configuration +- +notify attribute web-bluetooth web-bluetooth @@ -9694,6 +10867,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothcharacteristicprope 1 BluetoothCharacteristicProperties - +notify +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-notify + +1 +prompt handler configuration +- notify about playing dfn html @@ -9716,14 +10900,13 @@ https://html.spec.whatwg.org/multipage/webappapis.html#notify-about-rejected-pro - notify about the committed-to entry dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-notify-about-the-committed-to-entry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#notify-about-the-committed-to-entry 1 -navigation API method navigation - notify activated state dfn @@ -9853,6 +11036,16 @@ compute-pressure snapshot https://www.w3.org/TR/compute-pressure/#dfn-notify-pressure-observers +1 +- +notify the close watcher manager about user activation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#notify-the-close-watcher-manager-about-user-activation + 1 - notify(typedArray, index, count) @@ -9868,11 +11061,11 @@ Atomics - notsupportederror dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dfn-NotSupportedError +https://w3c.github.io/encrypted-media/#dfn-notsupportederror 1 - @@ -9883,16 +11076,16 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-NotSupportedError -1 + 1 - notsupportederror dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dfn-NotSupportedError +https://www.w3.org/TR/encrypted-media-2/#dfn-notsupportederror 1 - @@ -9980,21 +11173,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-wrap-nowrap -1 -1 -text-wrap -- -nowrap -value -css-text-4 -css-text -4 -current -https://drafts.csswg.org/css-text-4/#valdef-white-space-nowrap +https://drafts.csswg.org/css-text-4/#valdef-text-wrap-mode-nowrap 1 1 -white-space +text-wrap-mode - nowrap value @@ -10047,19 +11229,8 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-wrap-nowrap +https://www.w3.org/TR/css-text-4/#valdef-text-wrap-mode-nowrap 1 1 -text-wrap -- -nowrap -value -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#valdef-white-space-nowrap -1 -1 -white-space +text-wrap-mode - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-np.data b/bikeshed/spec-data/readonly/anchors/anchors-np.data new file mode 100644 index 0000000000..8888a26374 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-np.data @@ -0,0 +1,44 @@ +"npu" +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mldevicetype-npu +1 +1 +MLDeviceType +- +"npu" +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mldevicetype-npu +1 +1 +MLDeviceType +- +npu +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mldevicetype-npu +1 +1 +MLDeviceType +- +npu +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mldevicetype-npu +1 +1 +MLDeviceType +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-nq.data b/bikeshed/spec-data/readonly/anchors/anchors-nq.data index 4821de6115..0cbe4eecb0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-nq.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-nq.data @@ -1,4 +1,24 @@ ->n-quads parser +n-quads document +dfn +rdf12-n-quads +rdf-n-quads +1 +current +https://w3c.github.io/rdf-n-quads/spec/#dfn-n-quads-document + +1 +- +n-quads document +dfn +rdf12-n-quads +rdf-n-quads +1 +snapshot +https://www.w3.org/TR/rdf12-n-quads/#dfn-n-quads-document + +1 +- +n-quads parser dfn rdf12-n-quads rdf-n-quads @@ -6,6 +26,16 @@ rdf-n-quads current https://w3c.github.io/rdf-n-quads/spec/#dfn-n-quads-parser +1 +- +n-quads parser +dfn +rdf12-n-quads +rdf-n-quads +1 +snapshot +https://www.w3.org/TR/rdf12-n-quads/#dfn-n-quads-parser + 1 - nquads diff --git a/bikeshed/spec-data/readonly/anchors/anchors-nr.data b/bikeshed/spec-data/readonly/anchors/anchors-nr.data index b3602d8eae..6a5cd51b74 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-nr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-nr.data @@ -53,3 +53,23 @@ https://www.w3.org/TR/css-ui-4/#valdef-cursor-n-resize 1 cursor - +nruntime +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#nruntime + +1 +- +nruntime +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#nruntime + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-nt.data b/bikeshed/spec-data/readonly/anchors/anchors-nt.data index 30dddb4e96..3db694facc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-nt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-nt.data @@ -1,10 +1,10 @@ ::nth-fragment() selector -css-overflow-4 +css-overflow-5 css-overflow -4 +5 current -https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment +https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment 1 1 - @@ -18,6 +18,26 @@ https://www.w3.org/TR/css-overflow-4/#selectordef-nth-fragment 1 1 - +:nth() +selector +css-gcpm-3 +css-gcpm +3 +current +https://drafts.csswg.org/css-gcpm-3/#selectordef-nth +1 +1 +- +:nth() +selector +css-gcpm-3 +css-gcpm +3 +snapshot +https://www.w3.org/TR/css-gcpm-3/#selectordef-nth +1 +1 +- :nth-child() selector selectors-3 @@ -236,6 +256,16 @@ rdf-n-triples current https://w3c.github.io/rdf-n-triples/spec/#dfn-n-triples-document +1 +- +n-triples document +dfn +rdf12-n-triples +rdf-n-triples +1 +snapshot +https://www.w3.org/TR/rdf12-n-triples/#dfn-n-triples-document + 1 - n-triples parser @@ -245,26 +275,16 @@ rdf-n-triples 1 current https://w3c.github.io/rdf-n-triples/spec/#dfn-n-triples-parser -1 + 1 - -nth() -function -css-gcpm-3 -css-gcpm -3 -current -https://drafts.csswg.org/css-gcpm-3/#funcdef-nth -1 +n-triples parser +dfn +rdf12-n-triples +rdf-n-triples 1 -- -nth() -function -css-gcpm-3 -css-gcpm -3 snapshot -https://www.w3.org/TR/css-gcpm-3/#funcdef-nth -1 +https://www.w3.org/TR/rdf12-n-triples/#dfn-n-triples-parser + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-nu.data b/bikeshed/spec-data/readonly/anchors/anchors-nu.data index 68151a03d2..e0b0c2407e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-nu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-nu.data @@ -90,6 +90,26 @@ https://drafts.csswg.org/css2/#value-def-number - <number> type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-number +1 +1 +- +<number> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-number +1 +1 +- +<number> +type css-values-3 css-values 3 @@ -200,6 +220,16 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-number-constructor- 1 Number - +NumberBitwiseOp +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-numberbitwiseop +1 +1 +- NumberBitwiseOp(op, x, y) abstract-op ecmascript @@ -210,6 +240,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-numb 1 1 - +NumberToBigInt +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-numbertobigint +1 +1 +- NumberToBigInt(number) abstract-op ecmascript @@ -220,6 +260,16 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-numbertobigint 1 1 - +NumericToRawBytes +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-numerictorawbytes +1 +1 +- NumericToRawBytes(type, value, isLittleEndian) abstract-op ecmascript @@ -432,27 +482,27 @@ https://webidl.spec.whatwg.org/#dfn-nullable-type 1 1 - -numIncomingStreamsCreated -dict-member -webtransport -webtransport +numAdComponents +argument +fenced-frame +fenced-frame 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-numincomingstreamscreated +https://wicg.github.io/fenced-frame/#dom-navigator-adauctioncomponents-numadcomponents-numadcomponents 1 1 -WebTransportStats +Navigator/adAuctionComponents(numAdComponents) - -numIncomingStreamsCreated +numMandatoryAdComponents dict-member -webtransport -webtransport +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-numincomingstreamscreated +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-nummandatoryadcomponents 1 1 -WebTransportStats +GenerateBidOutput - numOctaves attribute @@ -476,28 +526,6 @@ https://www.w3.org/TR/filter-effects-1/#dom-svgfeturbulenceelement-numoctaves 1 SVGFETurbulenceElement - -numOutgoingStreamsCreated -dict-member -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransportstats-numoutgoingstreamscreated -1 -1 -WebTransportStats -- -numOutgoingStreamsCreated -dict-member -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-numoutgoingstreamscreated -1 -1 -WebTransportStats -- num_workgroups dfn wgsl @@ -575,6 +603,47 @@ input - number dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-number + +1 +- +number +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-number + +1 +- +number +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_number + +1 +intent +- +number +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-number + +1 +- +number +dfn css-values-3 css-values 3 @@ -593,6 +662,49 @@ https://www.w3.org/TR/css-values-4/#number 1 1 - +number +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-number + +1 +- +number +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent_number + +1 +intent +- +number of aggregatable attribution reports +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-number-of-aggregatable-attribution-reports + +1 +attribution source +- +number of aggregatable debug reports +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-number-of-aggregatable-debug-reports + +1 +attribution source +- number of days in month month of year year dfn html @@ -614,6 +726,17 @@ https://wicg.github.io/attribution-reporting-api/#attribution-source-number-of-e 1 attribution source - +number of mandatory ad components +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-number-of-mandatory-ad-components + +1 +generated bid +- number of nullable member types dfn webidl @@ -632,6 +755,36 @@ layout-instability current https://wicg.github.io/layout-instability/#number-of-pixels-to-significance +1 +- +number of platform buckets +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#number-of-platform-buckets + +1 +- +number of tokens +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#number-of-tokens + +1 +- +number of user buckets +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#number-of-user-buckets + 1 - number type @@ -1378,6 +1531,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#numeric-scalar +1 +- +numeric scalar conversion to floating point +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#numeric-scalar-conversion-to-floating-point + +1 +- +numeric scalar conversion to floating point +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#numeric-scalar-conversion-to-floating-point + 1 - numeric type value @@ -1430,6 +1603,17 @@ https://www.w3.org/TR/WGSL/#numeric-vector 1 - +numeric-only +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-interpolate-size-numeric-only +1 +1 +interpolate-size +- numoctaves element-attr filter-effects-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ob.data b/bikeshed/spec-data/readonly/anchors/anchors-ob.data index 987b9badfe..d54d575dbd 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ob.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ob.data @@ -50,6 +50,16 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object-value 1 Object - +ObjectDefineProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-objectdefineproperties +1 +1 +- ObjectDefineProperties(O, Properties) abstract-op ecmascript @@ -102,6 +112,28 @@ https://www.w3.org/TR/intersection-observer/#dom-intersectionobserver-observatio 1 IntersectionObserver - +[[ObservationWindow]] +attribute +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-observationwindow + +1 +PressureObserver +- +[[ObservationWindow]] +attribute +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-observationwindow + +1 +PressureObserver +- [[observationTargets]] attribute resize-observer-1 @@ -115,6 +147,17 @@ ResizeObserver - obj argument +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-createobjecturl-obj-obj +1 +1 +StorageAccessHandle/createObjectURL(obj) +- +obj +argument fileapi fileapi 1 @@ -165,37 +208,27 @@ current https://w3c.github.io/aria/#dfn-object -- -object -attribute -json-ld11-api -json-ld-api -1 -current -https://w3c.github.io/json-ld-api/#dom-rdftriple-object -1 -1 -RdfTriple - object dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-object +https://w3c.github.io/aria/#dfn-object + -1 - object -dfn -mathml-aam -mathml-aam +attribute +json-ld11-api +json-ld-api 1 current -https://w3c.github.io/mathml-aam/#dfn-object - +https://w3c.github.io/json-ld-api/#dom-rdftriple-object 1 +1 +RdfTriple - object dfn @@ -250,16 +283,6 @@ blob URL entry - object dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-object - -1 -- -object -dfn graphics-aam-1.0 graphics-aam 1 @@ -291,6 +314,16 @@ RdfTriple - object dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-object + +1 +- +object +dfn svg-aam-1.0 svg-aam 1 @@ -318,6 +351,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-object +- +object +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-object + + - object bounding box dfn @@ -886,16 +929,6 @@ css-images current https://drafts.csswg.org/css-images-3/#objects -1 -- -objects -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-object - 1 - objects @@ -907,16 +940,6 @@ current https://w3c.github.io/svg-aam/#dfn-object -- -objects -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-object - -1 - objects dfn @@ -1001,13 +1024,13 @@ https://drafts.csswg.org/css-fonts-4/#valdef-font-style-oblique-angle--90deg-90d 1 font-style - -oblique <angle>? +oblique <angle [-90deg,90deg]>? value css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-style-oblique-angle +https://www.w3.org/TR/css-fonts-4/#valdef-font-style-oblique-angle--90deg-90deg 1 1 font-style @@ -1273,6 +1296,28 @@ https://www.w3.org/TR/compute-pressure/#dom-pressureobserver-observe 1 PressureObserver - +observe(source, options) +method +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dom-pressureobserver-observe +1 +1 +PressureObserver +- +observe(source, options) +method +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dom-pressureobserver-observe +1 +1 +PressureObserver +- observe(target) method dom @@ -1361,6 +1406,16 @@ https://www.w3.org/TR/resize-observer-1/#dom-resizeobserver-observe 1 ResizeObserver - +observe-browsing-topics +http-header +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#http-headerdef-observe-browsing-topics +1 +1 +- observed attributes dfn html @@ -1499,6 +1554,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#observer +1 +- +observer +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#observer + 1 - observer @@ -1663,6 +1728,16 @@ csp-next current https://wicg.github.io/csp-next/scripting-policy.html#abstract-opdef-obtain-a-scripting-policy-pair-from-a-response 1 +1 +- +obtain a boolean parameter value +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#obtain-a-boolean-parameter-value + 1 - obtain a browsing context to use for a navigation response @@ -1701,7 +1776,17 @@ html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#obtain-a-dedicated/shared-worker-agent +https://html.spec.whatwg.org/multipage/webappapis.html#obtain-a-dedicated%2Fshared-worker-agent + +1 +- +obtain a dictionary structured header value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-a-dictionary-structured-header-value 1 - @@ -1753,6 +1838,16 @@ web-locks snapshot https://www.w3.org/TR/web-locks/#obtain-a-lock-manager +1 +- +obtain a null attribution report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-a-null-attribution-report + 1 - obtain a physical form @@ -1785,13 +1880,43 @@ https://wicg.github.io/attribution-reporting-api/#obtain-a-randomized-source-res 1 - -obtain a report time from deadline +obtain a randomized source response pick rate dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-a-report-time-from-deadline +https://wicg.github.io/attribution-reporting-api/#obtain-a-randomized-source-response-pick-rate + +1 +- +obtain a report delivery time +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-a-report-delivery-time + +1 +- +obtain a report's shared info +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-a-reports-shared-info + +1 +- +obtain a reporting endpoint +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-a-reporting-endpoint 1 - @@ -1817,6 +1942,16 @@ https://www.w3.org/TR/webxr/#xrview-obtain-a-scaled-viewport 1 XRView - +obtain a script runner agent +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#obtain-a-script-runner-agent + +1 +- obtain a service worker agent dfn html @@ -1865,6 +2000,36 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#obtain-a-set-of-event-names +1 +- +obtain a set of possible trigger states +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-a-set-of-possible-trigger-states + +1 +- +obtain a shared storage bottle map +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#obtain-a-shared-storage-bottle-map + +1 +- +obtain a shared storage shelf +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#obtain-a-shared-storage-shelf + 1 - obtain a similar-origin window agent @@ -1885,16 +2050,6 @@ html current https://html.spec.whatwg.org/multipage/browsers.html#obtain-a-site 1 -1 -- -obtain a source expiry -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#obtain-a-source-expiry - 1 - obtain a storage bottle map @@ -1935,6 +2090,36 @@ storage current https://storage.spec.whatwg.org/#obtain-a-storage-shelf +1 +- +obtain a string-like parameter value +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#obtain-a-string-like-parameter-value + +1 +- +obtain a url search variance +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#obtain-a-url-search-variance + +1 +- +obtain a url search variance hint +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#obtain-a-url-search-variance-hint + 1 - obtain a websocket connection @@ -1973,7 +2158,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#obtaining-a-worker/worklet-agent +https://html.spec.whatwg.org/multipage/webappapis.html#obtaining-a-worker%2Fworklet-agent 1 - @@ -1987,43 +2172,43 @@ https://html.spec.whatwg.org/multipage/webappapis.html#obtain-a-worklet-agent 1 - -obtain an aggregatable report +obtain an aggregatable attribution report dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-an-aggregatable-report +https://wicg.github.io/attribution-reporting-api/#obtain-an-aggregatable-attribution-report 1 - -obtain an aggregatable report delivery time +obtain an aggregatable attribution report delivery time dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-an-aggregatable-report-delivery-time +https://wicg.github.io/attribution-reporting-api/#obtain-an-aggregatable-attribution-report-delivery-time 1 - -obtain an attribution source from an anchor +obtain an aggregatable report dfn -attribution-reporting-api -attribution-reporting-api +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-an-attribution-source-from-an-anchor +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-an-aggregatable-report 1 - -obtain an attribution source from window features +obtain an aggregatable report body dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-an-attribution-source-from-window-features +https://wicg.github.io/attribution-reporting-api/#obtain-an-aggregatable-report-body 1 - @@ -2087,33 +2272,113 @@ https://www.w3.org/TR/epub-rs-33/#dfn-obtain-an-expanded-url 1 - -obtain and deliver a debug report +obtain and deliver a verbose debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-verbose-debug-report + +1 +- +obtain and deliver a verbose debug report on source registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-verbose-debug-report-on-source-registration + +1 +- +obtain and deliver a verbose debug report on trigger registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-verbose-debug-report-on-trigger-registration + +1 +- +obtain and deliver an aggregatable debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-an-aggregatable-debug-report + +1 +- +obtain and deliver an aggregatable debug report on registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-an-aggregatable-debug-report-on-registration + +1 +- +obtain and deliver an aggregatable debug report on source registration dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-debug-report +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-an-aggregatable-debug-report-on-source-registration 1 - -obtain and deliver a debug report on source registration +obtain and deliver an aggregatable debug report on trigger registration dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-debug-report-on-source-registration +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-an-aggregatable-debug-report-on-trigger-registration 1 - -obtain and deliver a debug report on trigger registration +obtain and deliver debug reports on os registrations dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-debug-report-on-trigger-registration +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-debug-reports-on-os-registrations + +1 +- +obtain and deliver debug reports on registration header errors +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-debug-reports-on-registration-header-errors + +1 +- +obtain and deliver debug reports on source registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-debug-reports-on-source-registration + +1 +- +obtain and deliver debug reports on trigger registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-debug-reports-on-trigger-registration 1 - @@ -2157,23 +2422,13 @@ https://www.w3.org/TR/webxr-depth-sensing-1/#obtain-cpu-depth-information 1 - -obtain debug data body on trigger registration +obtain default effective windows dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-debug-data-body-on-trigger-registration - -1 -- -obtain debug data on trigger registration -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#obtain-debug-data-on-trigger-registration +https://wicg.github.io/attribution-reporting-api/#obtain-default-effective-windows 1 - @@ -2195,16 +2450,6 @@ webxr-depth-sensing snapshot https://www.w3.org/TR/webxr-depth-sensing-1/#obtain-depth-at-coordinates -1 -- -obtain early deadlines -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#obtain-early-deadlines - 1 - obtain hit test results @@ -2255,6 +2500,36 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-obtain-permission +1 +- +obtain rounded source time +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-rounded-source-time + +1 +- +obtain the aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-aggregation-coordinator + +1 +- +obtain the aggregation service payloads +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-aggregation-service-payloads + 1 - obtain the aggregation service payloads @@ -2341,13 +2616,43 @@ https://www.w3.org/TR/webxr/#xrrigidtransform-obtain-the-matrix 1 XRRigidTransform - -obtain the number of report windows +obtain the plaintext payload dfn -attribution-reporting-api -attribution-reporting-api +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-plaintext-payload + +1 +- +obtain the pre-specified report parameters +dfn +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-the-number-of-report-windows +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-pre-specified-report-parameters + +1 +- +obtain the private aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-private-aggregation-coordinator + +1 +- +obtain the private aggregation coordinator from a string +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-private-aggregation-coordinator-from-a-string 1 - @@ -2375,21 +2680,21 @@ XRView - obtain the public key for encryption dfn -attribution-reporting-api -attribution-reporting-api +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-the-public-key-for-encryption +https://patcg-individual-drafts.github.io/private-aggregation-api/#obtain-the-public-key-for-encryption 1 - -obtain the report time at a window +obtain the public key for encryption dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-the-report-time-at-a-window +https://wicg.github.io/attribution-reporting-api/#obtain-the-public-key-for-encryption 1 - @@ -2401,6 +2706,26 @@ html current https://html.spec.whatwg.org/multipage/canvas.html#obtain-numeric-values +1 +- +obtain verbose debug data body on trigger registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-verbose-debug-data-body-on-trigger-registration + +1 +- +obtain verbose debug data on trigger registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-verbose-debug-data-on-trigger-registration + 1 - obtain webgl depth information diff --git a/bikeshed/spec-data/readonly/anchors/anchors-oc.data b/bikeshed/spec-data/readonly/anchors/anchors-oc.data index 5426206577..f315ad07c1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-oc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-oc.data @@ -226,7 +226,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-octet-string -1 + 1 - octet string containing @@ -256,6 +256,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-octet-string-containing -1 + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-oe.data b/bikeshed/spec-data/readonly/anchors/anchors-oe.data new file mode 100644 index 0000000000..861c86d6f2 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-oe.data @@ -0,0 +1,20 @@ +oetf +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-oetf + +1 +- +oetf +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-oetf + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-of.data b/bikeshed/spec-data/readonly/anchors/anchors-of.data index 62bd5e6462..005c27641e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-of.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-of.data @@ -20,6 +20,27 @@ https://www.w3.org/TR/image-capture/#dom-filllightmode-off 1 FillLightMode - +<offset-path> +type +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#typedef-offset-path +1 +1 +- +<offset-path> || <coord-box> +value +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#valdef-offset-path-offset-path--coord-box +1 +1 +offset-path +- OfflineAudioCompletionEvent interface webaudio @@ -229,6 +250,17 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.of Array - off +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#severity-off + +1 +severity +- +off attr-value html html @@ -246,14 +278,15 @@ select/autocomplete textarea/autocomplete - off -dfn +attr-value html html 1 current https://html.spec.whatwg.org/multipage/forms.html#attr-form-autocomplete-off - 1 +1 +form/autocomplete - off dfn @@ -288,6 +321,17 @@ https://w3c.github.io/mediacapture-image/#dom-filllightmode-off FillLightMode - off +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#severity-off + +1 +severity +- +off enum-value image-capture image-capture @@ -611,6 +655,17 @@ https://drafts.csswg.org/web-animations-1/#dom-basepropertyindexedkeyframe-offse BasePropertyIndexedKeyframe - offset +dict-member +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dom-timelinerangeoffset-offset +1 +1 +TimelineRangeOffset +- +offset attribute filter-effects-1 filter-effects @@ -742,6 +797,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpuvertexattribute-offset GPUVertexAttribute - offset +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-pasignalvalue-offset +1 +1 +PASignalValue +- +offset element-attr svg2 svg @@ -764,6 +830,16 @@ https://svgwg.org/svg2-draft/pservers.html#__svg__SVGStopElement__offset SVGStopElement - offset +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#offset + +1 +- +offset dict-member webcodecs webcodecs @@ -808,17 +884,6 @@ https://webaudio.github.io/web-audio-api/#dom-constantsourceoptions-offset ConstantSourceOptions - offset -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlbufferresourceview-offset -1 -1 -MLBufferResourceView -- -offset element-attr svg2 svg @@ -1059,16 +1124,15 @@ https://www.w3.org/TR/webgpu/#dom-gpuvertexattribute-offset 1 GPUVertexAttribute - -offset -dict-member -webnn -webnn +offset anchor point +dfn +motion-1 +motion 1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlbufferresourceview-offset +current +https://drafts.fxtf.org/motion-1/#offset-anchor-point 1 1 -MLBufferResourceView - offset distance dfn @@ -1108,6 +1172,16 @@ motion snapshot https://www.w3.org/TR/motion-1/#offset-path +1 +- +offset position +dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#offset-position +1 1 - offset ray @@ -1154,6 +1228,38 @@ https://www.w3.org/TR/webxr-hit-test-1/#xrtransientinputhittestsource-offset-ray 1 XRTransientInputHitTestSource - +offset starting position +dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#offset-starting-position +1 +1 +- +offset time zone +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +offset time zones +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- offset transform dfn motion-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ol.data b/bikeshed/spec-data/readonly/anchors/anchors-ol.data index a34e1f867e..2070105599 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ol.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ol.data @@ -30,6 +30,82 @@ https://www.w3.org/TR/css-speech-1/#valdef-voice-family-old 1 voice-family - +old backdrop-filter +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-backdrop-filter + +1 +captured element +- +old color-scheme +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-color-scheme + +1 +captured element +- +old direction +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-direction + +1 +captured element +- +old direction +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-direction + +1 +captured element +- +old entry +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nav-activation-old-entry + +1 +- +old height +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-height + +1 +captured element +- +old height +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-height + +1 +captured element +- old image dfn css-view-transitions-1 @@ -49,6 +125,28 @@ css-view-transitions snapshot https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-image +1 +captured element +- +old mix-blend-mode +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-mix-blend-mode + +1 +captured element +- +old mix-blend-mode +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-mix-blend-mode + 1 captured element - @@ -58,50 +156,94 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-old-state +https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-old-state + +1 +- +old text-orientation +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-text-orientation 1 +captured element +- +old text-orientation +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-text-orientation + +1 +captured element +- +old transform +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-transform + +1 +captured element +- +old transform +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-transform + +1 +captured element - -old styles +old width dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-styles +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-width 1 captured element - -old styles +old width dfn css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-styles +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-width 1 captured element - -old view-box rule +old writing-mode dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-view-box-rule +https://drafts.csswg.org/css-view-transitions-1/#captured-element-old-writing-mode 1 captured element - -old view-box rule +old writing-mode dfn css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-view-box-rule +https://www.w3.org/TR/css-view-transitions-1/#captured-element-old-writing-mode 1 captured element @@ -112,7 +254,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#dom-toggleevent-oldstate +https://html.spec.whatwg.org/multipage/interaction.html#dom-toggleevent-oldstate 1 1 ToggleEvent @@ -289,6 +431,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-oldlace 1 1 <color> +<named-color> - oldlace dfn @@ -310,6 +453,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-oldlace 1 1 <color> +<named-color> - oldstyle-nums value @@ -353,6 +497,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-olive 1 1 <color> +<named-color> - olive value @@ -385,6 +530,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-olive 1 1 <color> +<named-color> - olivedrab dfn @@ -406,6 +552,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-olivedrab 1 1 <color> +<named-color> - olivedrab dfn @@ -427,4 +574,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-olivedrab 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-om.data b/bikeshed/spec-data/readonly/anchors/anchors-om.data index b5e9ac1ef1..9db5953acc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-om.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-om.data @@ -153,6 +153,16 @@ https://www.w3.org/TR/json-ld11-framing/#dom-jsonldoptions-omitgraph 1 JsonLdOptions - +omiterror +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#report-exception-omiterror + +1 +- omitted dfn html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-on.data b/bikeshed/spec-data/readonly/anchors/anchors-on.data index 9db6010509..a5d8ae076e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-on.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-on.data @@ -130,6 +130,50 @@ https://www.w3.org/TR/webgpu/#dom-gpublendfactor-one-minus-src-alpha 1 GPUBlendFactor - +"one-minus-src1" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpublendfactor-one-minus-src1 +1 +1 +GPUBlendFactor +- +"one-minus-src1" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpublendfactor-one-minus-src1 +1 +1 +GPUBlendFactor +- +"one-minus-src1-alpha" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpublendfactor-one-minus-src1-alpha +1 +1 +GPUBlendFactor +- +"one-minus-src1-alpha" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpublendfactor-one-minus-src1-alpha +1 +1 +GPUBlendFactor +- "only-if-cached" enum-value fetch @@ -227,7 +271,7 @@ json-ld11-framing json-ld-framing 1 current -https://w3c.github.io/json-ld-framing/#dom-jsonldembed-@once +https://w3c.github.io/json-ld-framing/#dom-jsonldembed-%40once 1 1 JsonLdEmbed @@ -238,7 +282,7 @@ json-ld11-framing json-ld-framing 1 snapshot -https://www.w3.org/TR/json-ld11-framing/#dom-jsonldembed-@once +https://www.w3.org/TR/json-ld11-framing/#dom-jsonldembed-%40once 1 1 JsonLdEmbed @@ -301,14 +345,15 @@ select/autocomplete textarea/autocomplete - on -dfn +attr-value html html 1 current https://html.spec.whatwg.org/multipage/forms.html#attr-form-autocomplete-on - 1 +1 +form/autocomplete - on dfn @@ -341,6 +386,48 @@ https://html.spec.whatwg.org/multipage/semantics.html#link-options-on-document-r 1 - +on event contribution cache +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache + +1 +- +on event contribution cache entry +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry + +1 +- +on navigate callback +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-on-navigate-callback +1 +1 +fenced frame config instance +- +on navigate callback +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-on-navigate-callback +1 +1 +fenced frame config +- on response available dfn html @@ -980,6 +1067,28 @@ https://wicg.github.io/background-fetch/#dom-serviceworkerglobalscope-onbackgrou 1 ServiceWorkerGlobalScope - +onbandwidthestimate +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-onbandwidthestimate +1 +1 +RTCRtpScriptTransform +- +onbandwidthestimate +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransform-onbandwidthestimate +1 +1 +RTCRtpScriptTransform +- onbeforeinput attribute html @@ -995,16 +1104,6 @@ Window GlobalEventHandlers - onbeforeinstallprompt -dfn -manifest-incubations -manifest-incubations -1 -current -https://wicg.github.io/manifest-incubations/#dfn-onbeforeinstallprompt - -1 -- -onbeforeinstallprompt attribute manifest-incubations manifest-incubations @@ -1183,6 +1282,28 @@ https://www.w3.org/TR/webrtc/#dom-rtcdatachannel-onbufferedamountlow 1 RTCDataChannel - +onbufferedchange +attribute +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-managedsourcebuffer-onbufferedchange +1 +1 +ManagedSourceBuffer +- +onbufferedchange +attribute +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-managedsourcebuffer-onbufferedchange +1 +1 +ManagedSourceBuffer +- oncancel attribute web-animations-1 @@ -1200,24 +1321,24 @@ html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncancel +https://html.spec.whatwg.org/multipage/interaction.html#handler-closewatcher-oncancel 1 1 -HTMLElement -Document -Window -GlobalEventHandlers +CloseWatcher - oncancel attribute -close-watcher -close-watcher +html +html 1 current -https://wicg.github.io/close-watcher/#dom-closewatcher-oncancel +https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncancel 1 1 -CloseWatcher +HTMLElement +Document +Window +GlobalEventHandlers - oncancel attribute @@ -1291,6 +1412,17 @@ https://w3c.github.io/mediacapture-handle/actions/#dom-mediadevices-oncaptureact 1 MediaDevices - +oncapturedmousechange +attribute +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturecontroller-oncapturedmousechange +1 +1 +CaptureController +- oncapturehandlechange dfn capture-handle-identity @@ -1355,6 +1487,28 @@ https://dom.spec.whatwg.org/#event-listener-once 1 event listener - +once +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-data-once + +1 +automatic beacon data +- +once +dict-member +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fenceevent-once +1 +1 +FenceEvent +- onchange attribute cssom-view-1 @@ -1449,22 +1603,22 @@ ScreenOrientation - onchange attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screen-onchange +https://w3c.github.io/window-management/#dom-screen-onchange 1 1 Screen - onchange attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-onchange +https://w3c.github.io/window-management/#dom-screendetailed-onchange 1 1 ScreenDetailed @@ -1504,6 +1658,17 @@ NetworkInformation - onchange attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-onchange +1 +1 +PreferenceObject +- +onchange +attribute cssom-view-1 cssom-view 1 @@ -1559,22 +1724,22 @@ ScreenOrientation - onchange attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screen-onchange +https://www.w3.org/TR/window-management/#dom-screen-onchange 1 1 Screen - onchange attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-onchange +https://www.w3.org/TR/window-management/#dom-screendetailed-onchange 1 1 ScreenDetailed @@ -1687,6 +1852,28 @@ html html 1 current +https://html.spec.whatwg.org/multipage/interaction.html#handler-closewatcher-onclose +1 +1 +CloseWatcher +- +onclose +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/web-messaging.html#handler-messageport-onclose +1 +1 +MessagePort +- +onclose +attribute +html +html +1 +current https://html.spec.whatwg.org/multipage/webappapis.html#handler-onclose 1 1 @@ -1752,17 +1939,6 @@ WebSocket - onclose attribute -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#dom-closewatcher-onclose -1 -1 -CloseWatcher -- -onclose -attribute indexeddb-3 indexeddb 3 @@ -1816,28 +1992,6 @@ https://www.w3.org/TR/webrtc/#dom-rtcdatachannel-onclosing 1 RTCDataChannel - -oncompassneedscalibration -attribute -orientation-event -orientation-event -1 -current -https://w3c.github.io/deviceorientation/#dom-window-oncompassneedscalibration -1 -1 -Window -- -oncompassneedscalibration -attribute -orientation-event -orientation-event -1 -snapshot -https://www.w3.org/TR/orientation-event/#dom-window-oncompassneedscalibration -1 -1 -Window -- oncomplete attribute indexeddb-3 @@ -2262,33 +2416,33 @@ GlobalEventHandlers - oncurrententrychange attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-oncurrententrychange +https://html.spec.whatwg.org/multipage/nav-history-apis.html#handler-navigation-oncurrententrychange 1 1 Navigation - oncurrentscreenchange attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetails-oncurrentscreenchange +https://w3c.github.io/window-management/#dom-screendetails-oncurrentscreenchange 1 1 ScreenDetails - oncurrentscreenchange attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetails-oncurrentscreenchange +https://www.w3.org/TR/window-management/#dom-screendetails-oncurrentscreenchange 1 1 ScreenDetails @@ -2653,11 +2807,11 @@ RemotePlayback - ondispose attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-ondispose +https://html.spec.whatwg.org/multipage/nav-history-apis.html#handler-navigationhistoryentry-ondispose 1 1 NavigationHistoryEntry @@ -2810,7 +2964,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-modifier-one-or-more +https://urlpattern.spec.whatwg.org/#part-modifier-one-or-more 1 part/modifier @@ -2832,6 +2986,18 @@ output/autocomplete select/autocomplete textarea/autocomplete - +oneOrManyBids +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setbid-oneormanybids-oneormanybids +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope/setBid(oneOrManyBids) +InterestGroupBiddingScriptRunnerGlobalScope/setBid() +- onemptied attribute html @@ -2848,9 +3014,9 @@ GlobalEventHandlers - onencrypted attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-onencrypted 1 @@ -2858,15 +3024,15 @@ https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-onencrypted HTMLMediaElement - onencrypted -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-htmlmediaelement-onencrypted - +https://www.w3.org/TR/encrypted-media-2/#dom-htmlmediaelement-onencrypted +1 1 -htmlmediaelement +HTMLMediaElement - onend attribute @@ -3000,6 +3166,28 @@ https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-onended 1 AudioScheduledSourceNode - +onendstreaming +attribute +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-managedmediasource-onendstreaming +1 +1 +ManagedMediaSource +- +onendstreaming +attribute +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-managedmediasource-onendstreaming +1 +1 +ManagedMediaSource +- onenter attribute html @@ -3011,6 +3199,17 @@ https://html.spec.whatwg.org/multipage/media.html#handler-texttrackcue-onenter 1 TextTrackCue - +onenter +attribute +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpicture-onenter +1 +1 +DocumentPictureInPicture +- onenterpictureinpicture attribute picture-in-picture @@ -3211,6 +3410,17 @@ RTCDtlsTransport - onerror attribute +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audiocontext-onerror +1 +1 +AudioContext +- +onerror +attribute websockets websockets 1 @@ -3698,48 +3908,57 @@ https://www.w3.org/TR/miniapp-lifecycle/#dom-global-onglobalshown Global - -ongoing navigate event -dfn -navigation-api -navigation-api +onglobalunloaded +attribute +miniapp-lifecycle +miniapp-lifecycle 1 current -https://wicg.github.io/navigation-api/#navigation-ongoing-navigate-event +https://w3c.github.io/miniapp-lifecycle/#dom-global-onglobalunloaded +1 +Global +- +onglobalunloaded +attribute +miniapp-lifecycle +miniapp-lifecycle 1 -Navigation +snapshot +https://www.w3.org/TR/miniapp-lifecycle/#dom-global-onglobalunloaded +1 + +Global - -ongoing navigation +ongoing api method tracker dfn html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#ongoing-navigation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#ongoing-api-method-tracker 1 - -ongoing navigation +ongoing navigate event dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-ongoing-navigation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#ongoing-navigate-event 1 -Navigation - -ongoing navigation signal +ongoing navigation dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-ongoing-navigation-signal +https://html.spec.whatwg.org/multipage/browsing-the-web.html#ongoing-navigation 1 -Navigation - ongoing promise dfn @@ -4003,6 +4222,50 @@ Document Window GlobalEventHandlers - +onkeyframerequest +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-onkeyframerequest +1 +1 +RTCRtpScriptTransform +- +onkeyframerequest +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-onkeyframerequest +1 +1 +RTCRtpScriptTransformer +- +onkeyframerequest +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransform-onkeyframerequest +1 +1 +RTCRtpScriptTransform +- +onkeyframerequest +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-onkeyframerequest +1 +1 +RTCRtpScriptTransformer +- onkeypress attribute html @@ -4019,9 +4282,9 @@ GlobalEventHandlers - onkeystatuseschange attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-onkeystatuseschange 1 @@ -4029,15 +4292,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeysession-onkeystatuseschange MediaKeySession - onkeystatuseschange -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-onkeystatuseschange - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-onkeystatuseschange 1 -mediakeysession +1 +MediaKeySession - onkeyup attribute @@ -4490,6 +4753,17 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbkeyrange-only 1 IDBKeyRange - +onmanagedconfigurationchange +attribute +managed-configuration +managed-configuration +1 +current +https://wicg.github.io/WebApiDevice/managed_config/#dom-navigatormanageddata-onmanagedconfigurationchange +1 +1 +NavigatorManagedData +- onmark attribute speech-api @@ -4591,9 +4865,9 @@ ServiceWorkerGlobalScope - onmessage attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-onmessage 1 @@ -4656,15 +4930,15 @@ https://wicg.github.io/portals/#dom-portalhost-onmessage PortalHost - onmessage -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-onmessage - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-onmessage +1 1 -mediakeysession +MediaKeySession - onmessage attribute @@ -4842,6 +5116,17 @@ https://webaudio.github.io/web-midi-api/#dom-midiinput-onmidimessage 1 MIDIInput - +onmidimessage +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiinput-onmidimessage +1 +1 +MIDIInput +- onmousedown attribute html @@ -4964,33 +5249,33 @@ MediaStreamTrack - onnavigate attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-onnavigate +https://html.spec.whatwg.org/multipage/nav-history-apis.html#handler-navigation-onnavigate 1 1 Navigation - onnavigateerror attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-onnavigateerror +https://html.spec.whatwg.org/multipage/nav-history-apis.html#handler-navigation-onnavigateerror 1 1 Navigation - onnavigatesuccess attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-onnavigatesuccess +https://html.spec.whatwg.org/multipage/nav-history-apis.html#handler-navigation-onnavigatesuccess 1 1 Navigation @@ -5258,6 +5543,17 @@ https://www.w3.org/TR/miniapp-lifecycle/#dom-page-onpageready Page - +onpagereveal +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#handler-window-onpagereveal +1 +1 +WindowEventHandlers +- onpageshow attribute html @@ -5291,6 +5587,17 @@ https://www.w3.org/TR/miniapp-lifecycle/#dom-page-onpageshown Page - +onpageswap +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#handler-window-onpageswap +1 +1 +WindowEventHandlers +- onpageunloaded attribute miniapp-lifecycle @@ -5374,9 +5681,31 @@ https://www.w3.org/TR/mediastream-recording/#dom-mediarecorder-onpause 1 MediaRecorder - +onpayerdetailchange +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentresponse-onpayerdetailchange +1 +1 +PaymentResponse +- +onpayerdetailchange +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse-onpayerdetailchange +1 +1 +PaymentResponse +- onpaymentmethodchange attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -5387,11 +5716,11 @@ PaymentRequest - onpaymentmethodchange attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onpaymentmethodchange +https://www.w3.org/TR/payment-request/#dom-paymentrequest-onpaymentmethodchange 1 1 PaymentRequest @@ -5892,17 +6221,6 @@ Document Window GlobalEventHandlers - -onratecontrolfeedback -attribute -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransport-onratecontrolfeedback -1 -1 -WebTransport -- onreading attribute generic-sensor @@ -6423,22 +6741,22 @@ DedicatedWorkerGlobalScope - onscreenschange attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetails-onscreenschange +https://w3c.github.io/window-management/#dom-screendetails-onscreenschange 1 1 ScreenDetails - onscreenschange attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetails-onscreenschange +https://www.w3.org/TR/window-management/#dom-screendetails-onscreenschange 1 1 ScreenDetails @@ -6485,6 +6803,9 @@ current https://html.spec.whatwg.org/multipage/webappapis.html#handler-onscrollend 1 1 +HTMLElement +Document +Window GlobalEventHandlers - onscrollend @@ -6508,6 +6829,58 @@ https://wicg.github.io/overscroll-scrollend-events/#dom-globaleventhandlers-onsc GlobalEventHandlers - +onscrollsnapchange +attribute +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-document-onscrollsnapchange +1 +1 +Document +Element +Window +- +onscrollsnapchange +attribute +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-document-onscrollsnapchange +1 +1 +Document +Element +Window +- +onscrollsnapchanging +attribute +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-document-onscrollsnapchanging +1 +1 +Document +Element +Window +- +onscrollsnapchanging +attribute +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-document-onscrollsnapchanging +1 +1 +Document +Element +Window +- onsecuritypolicyviolation attribute html @@ -6729,6 +7102,50 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-serviceeventhandlers-onservi 1 ServiceEventHandlers - +onshippingaddresschange +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentrequest-onshippingaddresschange +1 +1 +PaymentRequest +- +onshippingaddresschange +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentrequest-onshippingaddresschange +1 +1 +PaymentRequest +- +onshippingoptionchange +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentrequest-onshippingoptionchange +1 +1 +PaymentRequest +- +onshippingoptionchange +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentrequest-onshippingoptionchange +1 +1 +PaymentRequest +- onshow attribute html @@ -6819,6 +7236,50 @@ Document Window GlobalEventHandlers - +onsnapchanged +attribute +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-globaleventhandlers-onsnapchanged +1 +1 +GlobalEventHandlers +- +onsnapchanged +attribute +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-globaleventhandlers-onsnapchanged +1 +1 +GlobalEventHandlers +- +onsnapchanging +attribute +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-globaleventhandlers-onsnapchanging +1 +1 +GlobalEventHandlers +- +onsnapchanging +attribute +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-globaleventhandlers-onsnapchanging +1 +1 +GlobalEventHandlers +- onsoundend attribute speech-api @@ -7053,6 +7514,28 @@ https://www.w3.org/TR/mediastream-recording/#dom-mediarecorder-onstart 1 MediaRecorder - +onstartstreaming +attribute +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-managedmediasource-onstartstreaming +1 +1 +ManagedMediaSource +- +onstartstreaming +attribute +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-managedmediasource-onstartstreaming +1 +1 +ManagedMediaSource +- onstatechange attribute service-workers @@ -7066,6 +7549,17 @@ ServiceWorker - onstatechange attribute +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosession-onstatechange +1 +1 +AudioSession +- +onstatechange +attribute webrtc webrtc 1 @@ -7154,6 +7648,28 @@ BaseAudioContext - onstatechange attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiaccess-onstatechange +1 +1 +MIDIAccess +- +onstatechange +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-onstatechange +1 +1 +MIDIPort +- +onstatechange +attribute webrtc webrtc 1 @@ -7396,13 +7912,13 @@ https://w3c.github.io/aria/#dfn-ontology - ontology dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-ontology +https://w3c.github.io/aria/#dfn-ontology + -1 - ontology dfn @@ -7433,6 +7949,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-ontology +- +ontology +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-ontology + + - ontonechange attribute @@ -7904,9 +8430,9 @@ GlobalEventHandlers - onwaitingforkey attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-onwaitingforkey 1 @@ -7914,15 +8440,15 @@ https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-onwaitingforkey HTMLMediaElement - onwaitingforkey -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-htmlmediaelement-onwaitingforkey - +https://www.w3.org/TR/encrypted-media-2/#dom-htmlmediaelement-onwaitingforkey 1 -htmlmediaelement +1 +HTMLMediaElement - onwebkitanimationend attribute diff --git a/bikeshed/spec-data/readonly/anchors/anchors-op.data b/bikeshed/spec-data/readonly/anchors/anchors-op.data index 8016de3fad..20e7e4f5e2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-op.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-op.data @@ -33,6 +33,17 @@ XREnvironmentBlendMode - "opaque" enum-value +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-opaqueproperty-opaque +1 +1 +OpaqueProperty +- +"opaque" +enum-value webgpu webgpu 1 @@ -86,6 +97,17 @@ https://w3c.github.io/webappsec-credential-management/#dom-credentialmediationre 1 CredentialMediationRequirement - +"optional" +enum-value +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequirement-optional +1 +1 +CredentialMediationRequirement +- "opus" enum-value webcodecs-opus-codec-registration @@ -116,16 +138,6 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-open 1 -1 -- -:open -selector -html -html -1 -current -https://html.spec.whatwg.org/multipage/semantics-other.html#selector-open - 1 - :open @@ -168,6 +180,48 @@ https://www.w3.org/TR/selectors-4/#optional-pseudo 1 1 - +<opacity-value> +type +css-color-4 +css-color +4 +current +https://drafts.csswg.org/css-color-4/#typedef-opacity-opacity-value +1 +1 +opacity +- +<opacity-value> +type +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#typedef-opacity-opacity-value +1 +1 +opacity +- +<opentype-tag> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#typedef-opentype-tag +1 +1 +- +<opentype-tag> +type +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#typedef-opentype-tag +1 +1 +- OPEN const html @@ -201,6 +255,16 @@ https://xhr.spec.whatwg.org/#dom-xmlhttprequest-opened 1 XMLHttpRequest - +OpaqueProperty +enum +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#enumdef-opaqueproperty +1 +1 +- OpenFilePickerOptions dictionary file-system-access @@ -221,6 +285,16 @@ https://webidl.spec.whatwg.org/#operationerror 1 1 - +OperationType +enum +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#enumdef-operationtype +1 +1 +- OptOutError exception webidl @@ -262,6 +336,26 @@ https://www.w3.org/TR/web-animations-1/#dictdef-optionaleffecttiming 1 1 - +OpusApplication +enum +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#enumdef-opusapplication +1 +1 +- +OpusApplication +enum +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#enumdef-opusapplication +1 +1 +- OpusBitstreamFormat enum webcodecs-opus-codec-registration @@ -302,6 +396,26 @@ https://www.w3.org/TR/webcodecs-opus-codec-registration/#dictdef-opusencoderconf 1 1 - +OpusSignal +enum +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#enumdef-opussignal +1 +1 +- +OpusSignal +enum +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#enumdef-opussignal +1 +1 +- [[Operations]] attribute webrtc @@ -320,7 +434,106 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-operations + +1 +RTCPeerConnection +- +[[openedPromise]] +attribute +direct-sockets +direct-sockets 1 +current +https://wicg.github.io/direct-sockets/#dfn-openedpromise + +1 +TCPSocket +- +[[openedPromise]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-openedpromise-0 + +1 +UDPSocket +- +[[openedPromise]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-openedpromise-1 + +1 +TCPServerSocket +- +[[operationInProgress]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-operationinprogress + +1 +SmartCardContext +- +[[operator]] +attribute +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperand-operator-slot +1 +1 +MLOperand +- +[[operator]] +attribute +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperand-operator-slot +1 +1 +MLOperand +- +[[options]] +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-options +1 +1 +PaymentRequest +- +[[options]] +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-options +1 +1 +PaymentRequest +- +op_index +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#op_index + 1 - opacity @@ -407,6 +620,17 @@ https://www.w3.org/TR/filter-effects-1/#funcdef-filter-opacity 1 filter - +opacityProperty +dict-member +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-checkvisibilityoptions-opacityproperty +1 +1 +CheckVisibilityOptions +- opaque value mediaqueries-5 @@ -440,6 +664,17 @@ https://immersive-web.github.io/webxr-ar-module/#opaque 1 - opaque +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#visibility-opaque +1 +1 +visibility +- +opaque value mediaqueries-5 mediaqueries @@ -743,6 +978,38 @@ https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-dialog-open HTMLDialogElement - open +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#attr-shadowrootmode-open +1 +1 +template/shadowrootmode +- +open +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#attr-shadowrootmode-open-state + +1 +- +open +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-type-open + +1 +token/type +- +open argument indexeddb-3 indexeddb @@ -767,6 +1034,16 @@ IDBKeyRange/upperBound(upper, open) IDBKeyRange/upperBound(upper) - open +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent-open + +1 +- +open enum-value media-source-2 media-source @@ -822,17 +1099,6 @@ https://websockets.spec.whatwg.org/#eventdef-websocket-open WebSocket - open -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#token-type-open - -1 -token/type -- -open argument indexeddb-3 indexeddb @@ -890,6 +1156,16 @@ https://www.w3.org/TR/css-text-decor-4/#valdef-text-text-emphasis-open text-text-emphasis - open +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent-open + +1 +- +open enum-value media-source-2 media-source @@ -913,6 +1189,17 @@ encoder state - open enum-value +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiportconnectionstate-open +1 +1 +MIDIPortConnectionState +- +open +enum-value webrtc webrtc 1 @@ -923,32 +1210,53 @@ https://www.w3.org/TR/webrtc/#dom-rtcdatachannelstate-open RTCDataChannelState - open -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-datachannel-open +1 +RTCDataChannel +- +open a bucket +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#open-a-bucket +1 - -open a database +open a database connection dfn indexeddb-3 indexeddb 3 current -https://w3c.github.io/IndexedDB/#open-a-database +https://w3c.github.io/IndexedDB/#open-a-database-connection 1 - -open a database +open a database connection dfn indexeddb-3 indexeddb 3 snapshot -https://www.w3.org/TR/IndexedDB-3/#open-a-database +https://www.w3.org/TR/IndexedDB-3/#open-a-database-connection + +1 +- +open properties +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent-open-properties 1 - @@ -1022,6 +1330,16 @@ webmidi current https://webaudio.github.io/web-midi-api/#dfn-open-the-port +1 +- +open the port +dfn +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dfn-open-the-port + 1 - open window algorithm @@ -1099,6 +1417,17 @@ https://wicg.github.io/webusb/#dom-usbdevice-open 1 USBDevice - +open() +method +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-open +1 +1 +MIDIPort +- open(cacheName) method service-workers @@ -1178,6 +1507,17 @@ IDBFactory - open(name) method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-open +1 +1 +StorageBucketManager +- +open(name) +method indexeddb-3 indexeddb 3 @@ -1187,6 +1527,17 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbfactory-open 1 IDBFactory - +open(name, options) +method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-open +1 +1 +StorageBucketManager +- open(name, version) method indexeddb-3 @@ -1290,6 +1641,26 @@ content - open-quote value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-open-quote +1 +1 +- +open-quote +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-open-quote +1 +1 +- +open-quote +value css-content-3 css-content 3 @@ -1633,6 +2004,39 @@ Clients - opened attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocket-opened +1 +1 +TCPServerSocket +- +opened +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket-opened +1 +1 +TCPSocket +- +opened +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocket-opened +1 +1 +UDPSocket +- +opened +attribute webhid webhid 1 @@ -1709,13 +2113,13 @@ https://w3c.github.io/aria/#dfn-operable - operable dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-operable +https://w3c.github.io/aria/#dfn-operable + -1 - operable dfn @@ -1736,6 +2140,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-operable +- +operable +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-operable + + - operating coordinate space dfn @@ -1755,6 +2169,16 @@ filter-effects snapshot https://www.w3.org/TR/filter-effects-1/#operating-coordinate-space +1 +- +operatingpointselectorproperty +dfn +av1-avif +av1-avif +1 +current +https://aomediacodec.github.io/av1-avif/#operatingpointselectorproperty + 1 - operation @@ -1789,13 +2213,24 @@ https://webidl.spec.whatwg.org/#dfn-operation 1 - operation +dict-member +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-privatetoken-operation +1 +1 +PrivateToken +- +operation dfn webcryptoapi webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#supported-operations -1 + 1 - operation @@ -1809,6 +2244,28 @@ https://www.w3.org/TR/webgpu/#dom-gpublendcomponent-operation 1 GPUBlendComponent - +operation map +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworkletglobalscope-operation-map + +1 +SharedStorageWorkletGlobalScope +- +operationCtor +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworkletglobalscope-register-name-operationctor-operationctor +1 +1 +SharedStorageWorkletGlobalScope/register(name, operationCtor) +- operationerror dfn webcryptoapi @@ -1816,7 +2273,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-OperationError -1 + 1 - operations chain @@ -1915,6 +2372,7 @@ CSSMathSum CSSMathProduct CSSMathMin CSSMathMax +CSSMathClamp CSSMathNegate CSSMathInvert - @@ -1984,34 +2442,34 @@ https://www.w3.org/TR/css-values-4/#calculation-tree-operator-nodes 1 calculation tree - -optgroup -element -html -html -1 -current -https://html.spec.whatwg.org/multipage/form-elements.html#the-optgroup-element -1 -1 -- -optimal sampling frequency +operators dfn -generic-sensor -generic-sensor +webnn +webnn 1 current -https://w3c.github.io/sensors/#optimal-sampling-frequency +https://webmachinelearning.github.io/webnn/#operators 1 - -optimal sampling frequency +operators dfn -generic-sensor -generic-sensor +webnn +webnn 1 snapshot -https://www.w3.org/TR/generic-sensor/#optimal-sampling-frequency +https://www.w3.org/TR/webnn/#operators +1 +- +optgroup +element +html +html +1 +current +https://html.spec.whatwg.org/multipage/form-elements.html#the-optgroup-element +1 1 - optimal viewing region @@ -2218,10 +2676,21 @@ https://drafts.csswg.org/css2/#optional 1 - optional +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#part-modifier-optional + +1 +part/modifier +- +optional enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysrequirement-optional 1 @@ -2252,14 +2721,23 @@ dictionary member - optional dfn -urlpattern -urlpattern +css2 +css 1 current -https://wicg.github.io/urlpattern/#part-modifier-optional - +https://www.w3.org/TR/CSS21/conform.html#x9 +1 +1 +- +optional +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x9 +1 1 -part/modifier - optional enum-value @@ -2284,33 +2762,33 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-face-font-display-optional @font-face/font-display - optional -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysrequirement-optional - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysrequirement-optional +1 1 -mediakeysrequirement +MediaKeysRequirement - -optional api surfaces +optional api surface dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#optional-api-surfaces +https://gpuweb.github.io/gpuweb/#optional-api-surface 1 - -optional api surfaces +optional api surface dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#optional-api-surfaces +https://www.w3.org/TR/webgpu/#optional-api-surface 1 - @@ -2342,6 +2820,16 @@ mediacapture-streams snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-optional-basic-constraints +1 +- +optional data types +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#optional-data-types + 1 - optional features @@ -2372,6 +2860,16 @@ private-click-measurement current https://privacycg.github.io/private-click-measurement/#optional-trigger-priority +1 +- +optional unsanitized data types +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#optional-unsanitized-data-types + 1 - optional-ascii-whitespace @@ -2727,13 +3225,25 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstylesheet-cssstylesheet-options-options +https://drafts.csswg.org/cssom-1/#dom-cssstylesheet-cssstylesheet-options-options +1 +1 +CSSStyleSheet/CSSStyleSheet(options) +CSSStyleSheet/constructor(options) +CSSStyleSheet/CSSStyleSheet() +CSSStyleSheet/constructor() +- +options +argument +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-document-caretpositionfrompoint-x-y-options-options 1 1 -CSSStyleSheet/CSSStyleSheet(options) -CSSStyleSheet/constructor(options) -CSSStyleSheet/CSSStyleSheet() -CSSStyleSheet/constructor() +Document/caretPositionFromPoint(x, y, options) +Document/caretPositionFromPoint(x, y) - options argument @@ -3002,6 +3512,18 @@ fedcm fedcm 1 current +https://fedidcg.github.io/FedCM/#dom-identitycredential-disconnect-options-options +1 +1 +IdentityCredential/disconnect(options) +IdentityCredential/disconnect() +- +options +argument +fedcm +fedcm +1 +current https://fedidcg.github.io/FedCM/#dom-identitycredential-discoverfromexternalsource-origin-options-sameoriginwithancestors-options 1 1 @@ -3147,18 +3669,6 @@ https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-constructor-options GPUPipelineError/constructor() - options -argument -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpupipelineerror-gpupipelineerror-message-options-options -1 -1 -GPUPipelineError/GPUPipelineError(message, options) -GPUPipelineError/constructor(message, options) -- -options attribute html html @@ -3254,6 +3764,42 @@ ServiceWorkerRegistration/showNotification(title) - options argument +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-privateaggregation-enabledebugmode-options-options +1 +1 +PrivateAggregation/enableDebugMode(options) +PrivateAggregation/enableDebugMode() +- +options +argument +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-document-browsingtopics-options-options +1 +1 +Document/browsingTopics(options) +Document/browsingTopics() +- +options +argument +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-sharedworker-scripturl-options-options +1 +1 +StorageAccessHandle/SharedWorker(scriptURL, options) +StorageAccessHandle/SharedWorker(scriptURL) +- +options +argument streams streams 1 @@ -3301,6 +3847,58 @@ ReadableStream/pipeTo(destination) - options argument +streams +streams +1 +current +https://streams.spec.whatwg.org/#dom-readablestreambyobreader-read-view-options-options +1 +1 +ReadableStreamBYOBReader/read(view, options) +ReadableStreamBYOBReader/read(view) +- +options +argument +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-baseurl-options-options +1 +1 +URLPattern/URLPattern(input, baseURL, options) +URLPattern/constructor(input, baseURL, options) +URLPattern/URLPattern(input, baseURL) +URLPattern/constructor(input, baseURL) +- +options +argument +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options-options +1 +1 +URLPattern/URLPattern(input, options) +URLPattern/constructor(input, options) +URLPattern/URLPattern(input) +URLPattern/constructor(input) +URLPattern/URLPattern() +URLPattern/constructor() +- +options +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#options + +1 +- +options +argument fileapi fileapi 1 @@ -3634,6 +4232,17 @@ https://w3c.github.io/reporting/#reportingobserver-options ReportingObserver - options +dfn +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#trustedtypepolicy-options + +1 +TrustedTypePolicy +- +options argument web-locks web-locks @@ -3786,6 +4395,34 @@ webrtc-encoded-transform webrtc-encoded-transform 1 current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe-originalframe-options-options +1 +1 +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame, options) +RTCEncodedAudioFrame/constructor(originalFrame, options) +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame) +RTCEncodedAudioFrame/constructor(originalFrame) +- +options +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe-originalframe-options-options +1 +1 +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame, options) +RTCEncodedVideoFrame/constructor(originalFrame, options) +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame) +RTCEncodedVideoFrame/constructor(originalFrame) +- +options +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +current https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-rtcrtpscripttransform-worker-options-transfer-options 1 1 @@ -4475,6 +5112,18 @@ BluetoothDevice/watchAdvertisements() - options argument +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetooth-requestlescan-options-options +1 +1 +Bluetooth/requestLEScan(options) +Bluetooth/requestLEScan() +- +options +argument webnn webnn 1 @@ -4483,7 +5132,47 @@ https://webmachinelearning.github.io/webnn/#dom-ml-createcontext-options-options 1 1 ML/createContext(options) -ML/createContext() +ML/createContext(gpuDevice) +- +options +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-abs-input-options-options +1 +1 +MLGraphBuilder/abs(input, options) +MLGraphBuilder/ceil(input, options) +MLGraphBuilder/cos(input, options) +MLGraphBuilder/erf(input, options) +MLGraphBuilder/exp(input, options) +MLGraphBuilder/floor(input, options) +MLGraphBuilder/identity(input, options) +MLGraphBuilder/log(input, options) +MLGraphBuilder/neg(input, options) +MLGraphBuilder/reciprocal(input, options) +MLGraphBuilder/sin(input, options) +MLGraphBuilder/sqrt(input, options) +MLGraphBuilder/tan(input, options) +- +options +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-add-a-b-options-options +1 +1 +MLGraphBuilder/add(a, b, options) +MLGraphBuilder/sub(a, b, options) +MLGraphBuilder/mul(a, b, options) +MLGraphBuilder/div(a, b, options) +MLGraphBuilder/max(a, b, options) +MLGraphBuilder/min(a, b, options) +MLGraphBuilder/pow(a, b, options) - options argument @@ -4491,11 +5180,11 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-ml-createcontextsync-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-options 1 1 -ML/createContextSync(options) -ML/createContextSync() +MLGraphBuilder/argMin(input, axis, options) +MLGraphBuilder/argMax(input, axis, options) - options argument @@ -4507,7 +5196,8 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-averagepool2d-inp 1 1 MLGraphBuilder/averagePool2d(input, options) -MLGraphBuilder/averagePool2d(input) +MLGraphBuilder/l2Pool2d(input, options) +MLGraphBuilder/maxPool2d(input, options) - options argument @@ -4519,7 +5209,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-batchnormalizatio 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) - options argument @@ -4527,11 +5216,21 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cast-input-type-options-options +1 +1 +MLGraphBuilder/cast(input, type, options) +- +options +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-input-options-options 1 1 -MLGraphBuilder/clamp(options) -MLGraphBuilder/clamp() +MLGraphBuilder/clamp(input, options) - options argument @@ -4539,11 +5238,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-x-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-options 1 1 -MLGraphBuilder/clamp(x, options) -MLGraphBuilder/clamp(x) +MLGraphBuilder/concat(inputs, axis, options) - options argument @@ -4555,7 +5253,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-conv2d-input-filt 1 1 MLGraphBuilder/conv2d(input, filter, options) -MLGraphBuilder/conv2d(input, filter) - options argument @@ -4567,7 +5264,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-convtranspose2d-i 1 1 MLGraphBuilder/convTranspose2d(input, filter, options) -MLGraphBuilder/convTranspose2d(input, filter) - options argument @@ -4575,11 +5271,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-input-options-options 1 1 -MLGraphBuilder/elu(options) -MLGraphBuilder/elu() +MLGraphBuilder/elu(input, options) - options argument @@ -4587,11 +5282,15 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-x-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-equal-a-b-options-options 1 1 -MLGraphBuilder/elu(x, options) -MLGraphBuilder/elu(x) +MLGraphBuilder/equal(a, b, options) +MLGraphBuilder/greater(a, b, options) +MLGraphBuilder/greaterOrEqual(a, b, options) +MLGraphBuilder/lesser(a, b, options) +MLGraphBuilder/lesserOrEqual(a, b, options) +MLGraphBuilder/logicalNot(a, options) - options argument @@ -4599,11 +5298,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gemm-a-b-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-options 1 1 -MLGraphBuilder/gemm(a, b, options) -MLGraphBuilder/gemm(a, b) +MLGraphBuilder/expand(input, newShape, options) - options argument @@ -4611,11 +5309,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gather-input-indices-options-options 1 1 -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/gather(input, indices, options) - options argument @@ -4623,11 +5320,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gelu-input-options-options 1 1 -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) +MLGraphBuilder/gelu(input, options) - options argument @@ -4635,11 +5331,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gemm-a-b-options-options 1 1 -MLGraphBuilder/hardSigmoid(options) -MLGraphBuilder/hardSigmoid() +MLGraphBuilder/gemm(a, b, options) - options argument @@ -4647,11 +5342,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-x-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options 1 1 -MLGraphBuilder/hardSigmoid(x, options) -MLGraphBuilder/hardSigmoid(x) +MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) - options argument @@ -4659,11 +5353,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options 1 1 -MLGraphBuilder/instanceNormalization(input, options) -MLGraphBuilder/instanceNormalization(input) +MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) - options argument @@ -4671,11 +5364,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-l2pool2d-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-input-options-options 1 1 -MLGraphBuilder/l2Pool2d(input, options) -MLGraphBuilder/l2Pool2d(input) +MLGraphBuilder/hardSigmoid(input, options) - options argument @@ -4683,11 +5375,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish-input-options-options 1 1 -MLGraphBuilder/leakyRelu(options) -MLGraphBuilder/leakyRelu() +MLGraphBuilder/hardSwish(input, options) - options argument @@ -4695,11 +5386,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-x-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-options 1 1 -MLGraphBuilder/leakyRelu(x, options) -MLGraphBuilder/leakyRelu(x) +MLGraphBuilder/instanceNormalization(input, options) - options argument @@ -4707,11 +5397,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-layernormalization-input-options-options 1 1 -MLGraphBuilder/linear(options) -MLGraphBuilder/linear() +MLGraphBuilder/layerNormalization(input, options) - options argument @@ -4719,11 +5408,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-x-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-input-options-options 1 1 -MLGraphBuilder/linear(x, options) -MLGraphBuilder/linear(x) +MLGraphBuilder/leakyRelu(input, options) - options argument @@ -4731,11 +5419,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-input-options-options 1 1 -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/linear(input, options) - options argument @@ -4743,11 +5430,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-options 1 1 -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) +MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) - options argument @@ -4755,11 +5441,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-maxpool2d-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-options 1 1 -MLGraphBuilder/maxPool2d(input, options) -MLGraphBuilder/maxPool2d(input) +MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) - options argument @@ -4767,11 +5452,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-padding-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-matmul-a-b-options-options 1 1 -MLGraphBuilder/pad(input, padding, options) -MLGraphBuilder/pad(input, padding) +MLGraphBuilder/matmul(a, b, options) - options argument @@ -4779,11 +5463,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducel1-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options 1 1 -MLGraphBuilder/reduceL1(input, options) -MLGraphBuilder/reduceL1(input) +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) - options argument @@ -4791,11 +5474,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducel2-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-prelu-input-slope-options-options 1 1 -MLGraphBuilder/reduceL2(input, options) -MLGraphBuilder/reduceL2(input) +MLGraphBuilder/prelu(input, slope, options) - options argument @@ -4803,11 +5485,19 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducelogsum-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducel1-input-options-options 1 1 +MLGraphBuilder/reduceL1(input, options) +MLGraphBuilder/reduceL2(input, options) MLGraphBuilder/reduceLogSum(input, options) -MLGraphBuilder/reduceLogSum(input) +MLGraphBuilder/reduceLogSumExp(input, options) +MLGraphBuilder/reduceMax(input, options) +MLGraphBuilder/reduceMean(input, options) +MLGraphBuilder/reduceMin(input, options) +MLGraphBuilder/reduceProduct(input, options) +MLGraphBuilder/reduceSum(input, options) +MLGraphBuilder/reduceSumSquare(input, options) - options argument @@ -4815,11 +5505,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducelogsumexp-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-relu-input-options-options 1 1 -MLGraphBuilder/reduceLogSumExp(input, options) -MLGraphBuilder/reduceLogSumExp(input) +MLGraphBuilder/relu(input, options) - options argument @@ -4827,11 +5516,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducemax-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-resample2d-input-options-options 1 1 -MLGraphBuilder/reduceMax(input, options) -MLGraphBuilder/reduceMax(input) +MLGraphBuilder/resample2d(input, options) - options argument @@ -4839,11 +5527,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducemean-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-options 1 1 -MLGraphBuilder/reduceMean(input, options) -MLGraphBuilder/reduceMean(input) +MLGraphBuilder/reshape(input, newShape, options) - options argument @@ -4851,11 +5538,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducemin-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sigmoid-input-options-options 1 1 -MLGraphBuilder/reduceMin(input, options) -MLGraphBuilder/reduceMin(input) +MLGraphBuilder/sigmoid(input, options) - options argument @@ -4863,11 +5549,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reduceproduct-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-options 1 1 -MLGraphBuilder/reduceProduct(input, options) -MLGraphBuilder/reduceProduct(input) +MLGraphBuilder/slice(input, starts, sizes, options) - options argument @@ -4875,11 +5560,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducesum-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-options 1 1 -MLGraphBuilder/reduceSum(input, options) -MLGraphBuilder/reduceSum(input) +MLGraphBuilder/softmax(input, axis, options) - options argument @@ -4887,11 +5571,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reducesumsquare-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-input-options-options 1 1 -MLGraphBuilder/reduceSumSquare(input, options) -MLGraphBuilder/reduceSumSquare(input) +MLGraphBuilder/softplus(input, options) - options argument @@ -4899,11 +5582,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-resample2d-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign-input-options-options 1 1 -MLGraphBuilder/resample2d(input, options) -MLGraphBuilder/resample2d(input) +MLGraphBuilder/softsign(input, options) - options argument @@ -4911,11 +5593,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-split-input-splits-options-options 1 1 -MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) +MLGraphBuilder/split(input, splits, options) - options argument @@ -4923,11 +5604,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tanh-input-options-options 1 1 -MLGraphBuilder/softplus(options) -MLGraphBuilder/softplus() +MLGraphBuilder/tanh(input, options) - options argument @@ -4935,11 +5615,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-x-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-transpose-input-options-options 1 1 -MLGraphBuilder/softplus(x, options) -MLGraphBuilder/softplus(x) +MLGraphBuilder/transpose(input, options) - options argument @@ -4947,11 +5626,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-split-input-splits-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-triangular-input-options-options 1 1 -MLGraphBuilder/split(input, splits, options) -MLGraphBuilder/split(input, splits) +MLGraphBuilder/triangular(input, options) - options argument @@ -4959,23 +5637,21 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-squeeze-input-options-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-options 1 1 -MLGraphBuilder/squeeze(input, options) -MLGraphBuilder/squeeze(input) +MLGraphBuilder/where(condition, trueValue, falseValue, options) - options argument -webnn -webnn +attribution-reporting-api +attribution-reporting-api 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-transpose-input-options-options +https://wicg.github.io/attribution-reporting-api/#dom-xmlhttprequest-setattributionreporting-options-options 1 1 -MLGraphBuilder/transpose(input, options) -MLGraphBuilder/transpose(input) +XMLHttpRequest/setAttributionReporting(options) - options argument @@ -5028,20 +5704,6 @@ BackgroundFetchUpdateUIEvent/updateUI() - options argument -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#dom-closewatcher-closewatcher-options-options -1 -1 -CloseWatcher/CloseWatcher(options) -CloseWatcher/constructor(options) -CloseWatcher/CloseWatcher() -CloseWatcher/constructor() -- -options -argument cookie-store cookie-store 1 @@ -5148,6 +5810,18 @@ CSS/parseStylesheet(css) - options argument +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpicture-requestwindow-options-options +1 +1 +DocumentPictureInPicture/requestWindow(options) +DocumentPictureInPicture/requestWindow() +- +options +argument entries-api entries-api 1 @@ -5226,210 +5900,231 @@ IdleDetector/start() - options argument -local-font-access -local-font-access +local-font-access +local-font-access +1 +current +https://wicg.github.io/local-font-access/#dom-window-querylocalfonts-options-options +1 +1 +Window/queryLocalFonts(options) +Window/queryLocalFonts() +- +options +argument +periodic-background-sync +periodic-background-sync +1 +current +https://wicg.github.io/periodic-background-sync/#dom-periodicsyncmanager-register-tag-options-options +1 +1 +PeriodicSyncManager/register(tag, options) +PeriodicSyncManager/register(tag) +- +options +argument +portals +portals 1 current -https://wicg.github.io/local-font-access/#dom-window-querylocalfonts-options-options +https://wicg.github.io/portals/#dom-htmlportalelement-activate-options-options 1 1 -Window/queryLocalFonts(options) -Window/queryLocalFonts() +HTMLPortalElement/activate(options) +HTMLPortalElement/activate() - options argument -navigation-api -navigation-api +portals +portals 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-intercept-options-options +https://wicg.github.io/portals/#dom-htmlportalelement-postmessage-message-options-options 1 1 -NavigateEvent/intercept(options) -NavigateEvent/intercept() +HTMLPortalElement/postMessage(message, options) +HTMLPortalElement/postMessage(message) - options argument -navigation-api -navigation-api +portals +portals 1 current -https://wicg.github.io/navigation-api/#dom-navigation-back-options-options +https://wicg.github.io/portals/#dom-portalhost-postmessage-message-options-options 1 1 -Navigation/back(options) -Navigation/back() +PortalHost/postMessage(message, options) +PortalHost/postMessage(message) - options argument -navigation-api -navigation-api +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/navigation-api/#dom-navigation-forward-options-options +https://wicg.github.io/sanitizer-api/#dom-document-parsehtml-html-options-options 1 1 -Navigation/forward(options) -Navigation/forward() +Document/parseHTML(html, options) +Document/parseHTML(html) - options argument -navigation-api -navigation-api +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/navigation-api/#dom-navigation-navigate-url-options-options +https://wicg.github.io/sanitizer-api/#dom-document-parsehtmlunsafe-html-options-options 1 1 -Navigation/navigate(url, options) -Navigation/navigate(url) +Document/parseHTMLUnsafe(html, options) +Document/parseHTMLUnsafe(html) - options argument -navigation-api -navigation-api +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/navigation-api/#dom-navigation-reload-options-options +https://wicg.github.io/sanitizer-api/#dom-element-sethtml-html-options-options 1 1 -Navigation/reload(options) -Navigation/reload() +Element/setHTML(html, options) +Element/setHTML(html) - options argument -navigation-api -navigation-api +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/navigation-api/#dom-navigation-traverseto-key-options-options +https://wicg.github.io/sanitizer-api/#dom-element-sethtmlunsafe-html-options-options 1 1 -Navigation/traverseTo(key, options) -Navigation/traverseTo(key) +Element/setHTMLUnsafe(html, options) +Element/setHTMLUnsafe(html) - options argument -navigation-api -navigation-api +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/navigation-api/#dom-navigation-updatecurrententry-options-options +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtml-html-options-options 1 1 -Navigation/updateCurrentEntry(options) +ShadowRoot/setHTML(html, options) +ShadowRoot/setHTML(html) - options argument -periodic-background-sync -periodic-background-sync +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/periodic-background-sync/#dom-periodicsyncmanager-register-tag-options-options +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtmlunsafe-html-options-options 1 1 -PeriodicSyncManager/register(tag, options) -PeriodicSyncManager/register(tag) +ShadowRoot/setHTMLUnsafe(html, options) +ShadowRoot/setHTMLUnsafe(html) - options argument -portals -portals +scheduling-apis +scheduling-apis 1 current -https://wicg.github.io/portals/#dom-htmlportalelement-activate-options-options +https://wicg.github.io/scheduling-apis/#dom-scheduler-posttask-callback-options-options 1 1 -HTMLPortalElement/activate(options) -HTMLPortalElement/activate() +Scheduler/postTask(callback, options) +Scheduler/postTask(callback) - options argument -portals -portals +shared-storage +shared-storage 1 current -https://wicg.github.io/portals/#dom-htmlportalelement-postmessage-message-options-options +https://wicg.github.io/shared-storage/#dom-sharedstorage-createworklet-moduleurl-options-options 1 1 -HTMLPortalElement/postMessage(message, options) -HTMLPortalElement/postMessage(message) +SharedStorage/createWorklet(moduleURL, options) +SharedStorage/createWorklet(moduleURL) - options argument -portals -portals +shared-storage +shared-storage 1 current -https://wicg.github.io/portals/#dom-portalhost-postmessage-message-options-options +https://wicg.github.io/shared-storage/#dom-sharedstorage-run-name-options-options 1 1 -PortalHost/postMessage(message, options) -PortalHost/postMessage(message) +SharedStorage/run(name, options) +SharedStorage/run(name) - options argument -sanitizer-api -sanitizer-api +shared-storage +shared-storage 1 current -https://wicg.github.io/sanitizer-api/#dom-element-sethtml-input-options-options +https://wicg.github.io/shared-storage/#dom-sharedstorage-selecturl-name-urls-options-options 1 1 -Element/setHTML(input, options) -Element/setHTML(input) +SharedStorage/selectURL(name, urls, options) +SharedStorage/selectURL(name, urls) - options argument -scheduling-apis -scheduling-apis +shared-storage +shared-storage 1 current -https://wicg.github.io/scheduling-apis/#dom-scheduler-posttask-callback-options-options +https://wicg.github.io/shared-storage/#dom-sharedstorage-set-key-value-options-options 1 1 -Scheduler/postTask(callback, options) -Scheduler/postTask(callback) +SharedStorage/set(key, value, options) +SharedStorage/set(key, value) - options argument -urlpattern -urlpattern +shared-storage +shared-storage 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-baseurl-options-options +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-run-name-options-options 1 1 -URLPattern/URLPattern(input, baseURL, options) -URLPattern/constructor(input, baseURL, options) -URLPattern/URLPattern(input, baseURL) -URLPattern/constructor(input, baseURL) +SharedStorageWorklet/run(name, options) +SharedStorageWorklet/run(name) - options argument -urlpattern -urlpattern +shared-storage +shared-storage 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options-options +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-selecturl-name-urls-options-options 1 1 -URLPattern/URLPattern(input, options) -URLPattern/constructor(input, options) -URLPattern/URLPattern(input) -URLPattern/constructor(input) -URLPattern/URLPattern() -URLPattern/constructor() +SharedStorageWorklet/selectURL(name, urls, options) +SharedStorageWorklet/selectURL(name, urls) - options -dfn -urlpattern -urlpattern +argument +storage-buckets +storage-buckets 1 current -https://wicg.github.io/urlpattern/#options - +https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-open-name-options-options +1 1 +StorageBucketManager/open(name, options) +StorageBucketManager/open(name) - options argument @@ -5578,18 +6273,6 @@ ClipboardItem/constructor(items) - options argument -clipboard-apis -clipboard-apis -1 -snapshot -https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-createdelayed-items-options-options -1 -1 -ClipboardItem/createDelayed(items, options) -ClipboardItem/createDelayed(items) -- -options -argument contact-picker contact-picker 1 @@ -5699,6 +6382,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssmatrixcomponent-cssmatrixcomponent- 1 1 CSSMatrixComponent/CSSMatrixComponent(matrix, options) +CSSMatrixComponent/constructor(matrix, options) +CSSMatrixComponent/CSSMatrixComponent(matrix) +CSSMatrixComponent/constructor(matrix) - options argument @@ -5930,6 +6616,18 @@ scroll-animations-1 scroll-animations 1 snapshot +https://www.w3.org/TR/scroll-animations-1/#dom-animationtimeline-getcurrenttime-options-options +1 +1 +AnimationTimeline/getCurrentTime(options) +AnimationTimeline/getCurrentTime() +- +options +argument +scroll-animations-1 +scroll-animations +1 +snapshot https://www.w3.org/TR/scroll-animations-1/#dom-scrolltimeline-scrolltimeline-options-options 1 1 @@ -6074,6 +6772,17 @@ ServiceWorkerContainer/register(scriptURL, options) ServiceWorkerContainer/register(scriptURL) - options +dfn +trusted-types +trusted-types +1 +snapshot +https://www.w3.org/TR/trusted-types/#trustedtypepolicy-options + +1 +TrustedTypePolicy +- +options argument web-animations-1 web-animations @@ -6714,6 +7423,28 @@ PublicKeyCredential/[[DiscoverFromExternalSource]](origin, options, sameOriginWi - options argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-parsecreationoptionsfromjson-options-options +1 +1 +PublicKeyCredential/parseCreationOptionsFromJSON(options) +- +options +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-parserequestoptionsfromjson-options-options +1 +1 +PublicKeyCredential/parseRequestOptionsFromJSON(options) +- +options +argument webcodecs webcodecs 1 @@ -6806,15 +7537,15 @@ GPUPipelineError/constructor() - options argument -webgpu -webgpu +webnn +webnn 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpupipelineerror-gpupipelineerror-message-options-options +https://www.w3.org/TR/webnn/#dom-ml-createcontext-options-options 1 1 -GPUPipelineError/GPUPipelineError(message, options) -GPUPipelineError/constructor(message, options) +ML/createContext(options) +ML/createContext(gpuDevice) - options argument @@ -6822,11 +7553,39 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontext-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs-input-options-options 1 1 -ML/createContext(options) -ML/createContext() +MLGraphBuilder/abs(input, options) +MLGraphBuilder/ceil(input, options) +MLGraphBuilder/cos(input, options) +MLGraphBuilder/erf(input, options) +MLGraphBuilder/exp(input, options) +MLGraphBuilder/floor(input, options) +MLGraphBuilder/identity(input, options) +MLGraphBuilder/log(input, options) +MLGraphBuilder/neg(input, options) +MLGraphBuilder/reciprocal(input, options) +MLGraphBuilder/sin(input, options) +MLGraphBuilder/sqrt(input, options) +MLGraphBuilder/tan(input, options) +- +options +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-options-options +1 +1 +MLGraphBuilder/add(a, b, options) +MLGraphBuilder/sub(a, b, options) +MLGraphBuilder/mul(a, b, options) +MLGraphBuilder/div(a, b, options) +MLGraphBuilder/max(a, b, options) +MLGraphBuilder/min(a, b, options) +MLGraphBuilder/pow(a, b, options) - options argument @@ -6834,11 +7593,11 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-ml-createcontextsync-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-options 1 1 -ML/createContextSync(options) -ML/createContextSync() +MLGraphBuilder/argMin(input, axis, options) +MLGraphBuilder/argMax(input, axis, options) - options argument @@ -6850,7 +7609,8 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-averagepool2d-input-options-opti 1 1 MLGraphBuilder/averagePool2d(input, options) -MLGraphBuilder/averagePool2d(input) +MLGraphBuilder/l2Pool2d(input, options) +MLGraphBuilder/maxPool2d(input, options) - options argument @@ -6862,7 +7622,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-va 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) - options argument @@ -6870,11 +7629,21 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-options-options +1 +1 +MLGraphBuilder/cast(input, type, options) +- +options +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-input-options-options 1 1 -MLGraphBuilder/clamp(options) -MLGraphBuilder/clamp() +MLGraphBuilder/clamp(input, options) - options argument @@ -6882,11 +7651,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-x-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-options 1 1 -MLGraphBuilder/clamp(x, options) -MLGraphBuilder/clamp(x) +MLGraphBuilder/concat(inputs, axis, options) - options argument @@ -6898,7 +7666,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-opti 1 1 MLGraphBuilder/conv2d(input, filter, options) -MLGraphBuilder/conv2d(input, filter) - options argument @@ -6910,7 +7677,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-opt 1 1 MLGraphBuilder/convTranspose2d(input, filter, options) -MLGraphBuilder/convTranspose2d(input, filter) - options argument @@ -6918,11 +7684,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-input-options-options 1 1 -MLGraphBuilder/elu(options) -MLGraphBuilder/elu() +MLGraphBuilder/elu(input, options) - options argument @@ -6930,11 +7695,15 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-x-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-options-options 1 1 -MLGraphBuilder/elu(x, options) -MLGraphBuilder/elu(x) +MLGraphBuilder/equal(a, b, options) +MLGraphBuilder/greater(a, b, options) +MLGraphBuilder/greaterOrEqual(a, b, options) +MLGraphBuilder/lesser(a, b, options) +MLGraphBuilder/lesserOrEqual(a, b, options) +MLGraphBuilder/logicalNot(a, options) - options argument @@ -6942,11 +7711,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-options 1 1 -MLGraphBuilder/gemm(a, b, options) -MLGraphBuilder/gemm(a, b) +MLGraphBuilder/expand(input, newShape, options) - options argument @@ -6954,11 +7722,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-options 1 1 -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) +MLGraphBuilder/gather(input, indices, options) - options argument @@ -6966,11 +7733,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gelu-input-options-options 1 1 -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) +MLGraphBuilder/gelu(input, options) - options argument @@ -6978,11 +7744,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-options 1 1 -MLGraphBuilder/hardSigmoid(options) -MLGraphBuilder/hardSigmoid() +MLGraphBuilder/gemm(a, b, options) - options argument @@ -6990,11 +7755,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-x-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options 1 1 -MLGraphBuilder/hardSigmoid(x, options) -MLGraphBuilder/hardSigmoid(x) +MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) - options argument @@ -7002,11 +7766,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options 1 1 -MLGraphBuilder/instanceNormalization(input, options) -MLGraphBuilder/instanceNormalization(input) +MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) - options argument @@ -7014,11 +7777,21 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-l2pool2d-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-input-options-options 1 1 -MLGraphBuilder/l2Pool2d(input, options) -MLGraphBuilder/l2Pool2d(input) +MLGraphBuilder/hardSigmoid(input, options) +- +options +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish-input-options-options +1 +1 +MLGraphBuilder/hardSwish(input, options) - options argument @@ -7026,11 +7799,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-options 1 1 -MLGraphBuilder/leakyRelu(options) -MLGraphBuilder/leakyRelu() +MLGraphBuilder/instanceNormalization(input, options) - options argument @@ -7038,11 +7810,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-x-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization-input-options-options 1 1 -MLGraphBuilder/leakyRelu(x, options) -MLGraphBuilder/leakyRelu(x) +MLGraphBuilder/layerNormalization(input, options) - options argument @@ -7050,11 +7821,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-input-options-options 1 1 -MLGraphBuilder/linear(options) -MLGraphBuilder/linear() +MLGraphBuilder/leakyRelu(input, options) - options argument @@ -7062,11 +7832,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-x-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-input-options-options 1 1 -MLGraphBuilder/linear(x, options) -MLGraphBuilder/linear(x) +MLGraphBuilder/linear(input, options) - options argument @@ -7078,7 +7847,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweigh 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - options argument @@ -7090,7 +7858,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentw 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - options argument @@ -7098,11 +7865,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-maxpool2d-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-options-options 1 1 -MLGraphBuilder/maxPool2d(input, options) -MLGraphBuilder/maxPool2d(input) +MLGraphBuilder/matmul(a, b, options) - options argument @@ -7110,11 +7876,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-padding-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options 1 1 -MLGraphBuilder/pad(input, padding, options) -MLGraphBuilder/pad(input, padding) +MLGraphBuilder/pad(input, beginningPadding, endingPadding, options) - options argument @@ -7122,11 +7887,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-options-options 1 1 -MLGraphBuilder/reduceL1(input, options) -MLGraphBuilder/reduceL1(input) +MLGraphBuilder/prelu(input, slope, options) - options argument @@ -7134,11 +7898,19 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel2-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-options 1 1 +MLGraphBuilder/reduceL1(input, options) MLGraphBuilder/reduceL2(input, options) -MLGraphBuilder/reduceL2(input) +MLGraphBuilder/reduceLogSum(input, options) +MLGraphBuilder/reduceLogSumExp(input, options) +MLGraphBuilder/reduceMax(input, options) +MLGraphBuilder/reduceMean(input, options) +MLGraphBuilder/reduceMin(input, options) +MLGraphBuilder/reduceProduct(input, options) +MLGraphBuilder/reduceSum(input, options) +MLGraphBuilder/reduceSumSquare(input, options) - options argument @@ -7146,11 +7918,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsum-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu-input-options-options 1 1 -MLGraphBuilder/reduceLogSum(input, options) -MLGraphBuilder/reduceLogSum(input) +MLGraphBuilder/relu(input, options) - options argument @@ -7158,11 +7929,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsumexp-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d-input-options-options 1 1 -MLGraphBuilder/reduceLogSumExp(input, options) -MLGraphBuilder/reduceLogSumExp(input) +MLGraphBuilder/resample2d(input, options) - options argument @@ -7170,11 +7940,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemax-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-options 1 1 -MLGraphBuilder/reduceMax(input, options) -MLGraphBuilder/reduceMax(input) +MLGraphBuilder/reshape(input, newShape, options) - options argument @@ -7182,11 +7951,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemean-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid-input-options-options 1 1 -MLGraphBuilder/reduceMean(input, options) -MLGraphBuilder/reduceMean(input) +MLGraphBuilder/sigmoid(input, options) - options argument @@ -7194,11 +7962,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemin-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-options 1 1 -MLGraphBuilder/reduceMin(input, options) -MLGraphBuilder/reduceMin(input) +MLGraphBuilder/slice(input, starts, sizes, options) - options argument @@ -7206,11 +7973,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-options 1 1 -MLGraphBuilder/reduceProduct(input, options) -MLGraphBuilder/reduceProduct(input) +MLGraphBuilder/softmax(input, axis, options) - options argument @@ -7218,11 +7984,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesum-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-input-options-options 1 1 -MLGraphBuilder/reduceSum(input, options) -MLGraphBuilder/reduceSum(input) +MLGraphBuilder/softplus(input, options) - options argument @@ -7230,11 +7995,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesumsquare-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign-input-options-options 1 1 -MLGraphBuilder/reduceSumSquare(input, options) -MLGraphBuilder/reduceSumSquare(input) +MLGraphBuilder/softsign(input, options) - options argument @@ -7242,11 +8006,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d-input-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-options 1 1 -MLGraphBuilder/resample2d(input, options) -MLGraphBuilder/resample2d(input) +MLGraphBuilder/split(input, splits, options) - options argument @@ -7254,11 +8017,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh-input-options-options 1 1 -MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) +MLGraphBuilder/tanh(input, options) - options argument @@ -7266,11 +8028,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-options 1 1 -MLGraphBuilder/softplus(options) -MLGraphBuilder/softplus() +MLGraphBuilder/transpose(input, options) - options argument @@ -7278,11 +8039,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-x-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-options 1 1 -MLGraphBuilder/softplus(x, options) -MLGraphBuilder/softplus(x) +MLGraphBuilder/triangular(input, options) - options argument @@ -7290,35 +8050,38 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-options 1 1 -MLGraphBuilder/split(input, splits, options) -MLGraphBuilder/split(input, splits) +MLGraphBuilder/where(condition, trueValue, falseValue, options) - options argument -webnn -webnn +webrtc-encoded-transform +webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-squeeze-input-options-options +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe-originalframe-options-options 1 1 -MLGraphBuilder/squeeze(input, options) -MLGraphBuilder/squeeze(input) +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame, options) +RTCEncodedAudioFrame/constructor(originalFrame, options) +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame) +RTCEncodedAudioFrame/constructor(originalFrame) - options argument -webnn -webnn +webrtc-encoded-transform +webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-options +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe-originalframe-options-options 1 1 -MLGraphBuilder/transpose(input, options) -MLGraphBuilder/transpose(input) +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame, options) +RTCEncodedVideoFrame/constructor(originalFrame, options) +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame) +RTCEncodedVideoFrame/constructor(originalFrame) - options argument @@ -7401,6 +8164,22 @@ WebTransport/constructor(url) - options argument +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror-message-options-options +1 +1 +WebTransportError/WebTransportError(message, options) +WebTransportError/constructor(message, options) +WebTransportError/WebTransportError(message) +WebTransportError/constructor(message) +WebTransportError/WebTransportError() +WebTransportError/constructor() +- +options +argument webxr-hit-test-1 webxr-hit-test 1 @@ -7473,6 +8252,17 @@ credential-management current https://w3c.github.io/webappsec-credential-management/#credential-type-registry-options-member-identifier +1 +credential type registry +- +options member identifier +dfn +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#credential-type-registry-options-member-identifier + 1 credential type registry - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-or.data b/bikeshed/spec-data/readonly/anchors/anchors-or.data index 788fbc1480..6c6deac700 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-or.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-or.data @@ -82,6 +82,48 @@ https://www.w3.org/TR/referrer-policy/#referrer-policy-origin-when-cross-origin 1 1 - +<or/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_or + +1 +- +<or/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_or + +1 +- +@ornaments +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-ornaments +1 +1 +@font-feature-values +- +@ornaments +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-ornaments +1 +1 +@font-feature-values +- ORDERED_NODE_ITERATOR_TYPE const dom @@ -104,6 +146,16 @@ https://dom.spec.whatwg.org/#dom-xpathresult-ordered_node_snapshot_type 1 XPathResult - +OrdinaryCallBindThis +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarycallbindthis +1 +1 +- OrdinaryCallBindThis(F, calleeContext, thisArgument) abstract-op ecmascript @@ -114,6 +166,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryCallEvaluateBody +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarycallevaluatebody +1 +1 +- OrdinaryCallEvaluateBody(F, argumentsList) abstract-op ecmascript @@ -124,6 +186,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryCreateFromConstructor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarycreatefromconstructor +1 +1 +- OrdinaryCreateFromConstructor(constructor, intrinsicDefaultProto, internalSlotsList) abstract-op ecmascript @@ -134,6 +206,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryDefineOwnProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarydefineownproperty +1 +1 +- OrdinaryDefineOwnProperty(O, P, Desc) abstract-op ecmascript @@ -144,6 +226,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryDelete +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarydelete +1 +1 +- OrdinaryDelete(O, P) abstract-op ecmascript @@ -154,6 +246,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryFunctionCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryfunctioncreate +1 +1 +- OrdinaryFunctionCreate(functionPrototype, sourceText, ParameterList, Body, thisMode, env, privateEnv) abstract-op ecmascript @@ -164,6 +266,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryGet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryget +1 +1 +- OrdinaryGet(O, P, Receiver) abstract-op ecmascript @@ -174,6 +286,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryGetOwnProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarygetownproperty +1 +1 +- OrdinaryGetOwnProperty(O, P) abstract-op ecmascript @@ -184,6 +306,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryGetPrototypeOf +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarygetprototypeof +1 +1 +- OrdinaryGetPrototypeOf(O) abstract-op ecmascript @@ -194,6 +326,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryHasInstance +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ordinaryhasinstance +1 +1 +- OrdinaryHasInstance(C, O) abstract-op ecmascript @@ -204,6 +346,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ordinaryhasinstan 1 1 - +OrdinaryHasProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryhasproperty +1 +1 +- OrdinaryHasProperty(O, P) abstract-op ecmascript @@ -214,6 +366,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryIsExtensible +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryisextensible +1 +1 +- OrdinaryIsExtensible(O) abstract-op ecmascript @@ -224,6 +386,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryObjectCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryobjectcreate +1 +1 +- OrdinaryObjectCreate(proto, additionalInternalSlotsList) abstract-op ecmascript @@ -234,6 +406,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryOwnPropertyKeys +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryownpropertykeys +1 +1 +- OrdinaryOwnPropertyKeys(O) abstract-op ecmascript @@ -244,6 +426,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryPreventExtensions +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarypreventextensions +1 +1 +- OrdinaryPreventExtensions(O) abstract-op ecmascript @@ -254,6 +446,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinarySet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinaryset +1 +1 +- OrdinarySet(O, P, V, Receiver) abstract-op ecmascript @@ -264,6 +466,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinarySetPrototypeOf +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarysetprototypeof +1 +1 +- OrdinarySetPrototypeOf(O, V) abstract-op ecmascript @@ -274,6 +486,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinarySetWithOwnDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-ordinarysetwithowndescriptor +1 +1 +- OrdinarySetWithOwnDescriptor(O, P, V, Receiver, ownDesc) abstract-op ecmascript @@ -284,6 +506,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +OrdinaryToPrimitive +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ordinarytoprimitive +1 +1 +- OrdinaryToPrimitive(O, hint) abstract-op ecmascript @@ -412,8 +644,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-ordered + 1 -1 +RTCDataChannel - [[Origin]] attribute @@ -433,8 +666,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-origin + 1 -1 +RTCCertificate - [[orientationPendingPromise]] attribute @@ -492,6 +726,17 @@ https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-or syntax_sym - or +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-or +1 +1 +RouterCondition +- +or dfn wgsl wgsl @@ -577,6 +822,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-orange 1 1 <color> +<named-color> - orange value @@ -609,6 +855,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-orange 1 1 <color> +<named-color> - orangered dfn @@ -630,6 +877,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-orangered 1 1 <color> +<named-color> - orangered dfn @@ -651,6 +899,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-orangered 1 1 <color> +<named-color> - orchid dfn @@ -672,6 +921,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-orchid 1 1 <color> +<named-color> - orchid dfn @@ -693,6 +943,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-orchid 1 1 <color> +<named-color> - order property @@ -967,17 +1218,6 @@ https://dom.spec.whatwg.org/#concept-ordered-set-serializer 1 1 - -ordering_checksum -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-ordering_checksum - -1 -PatchRequest -- ordinal value css-fonts-4 @@ -1097,11 +1337,22 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-organization - +1 1 physical address - organization +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-organization +1 +1 +AddressErrors +- +organization attribute contact-picker contact-picker @@ -1119,10 +1370,21 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-organization - +1 1 physical address - +organization +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-organization +1 +1 +AddressErrors +- organization-name dfn html @@ -1261,11 +1523,11 @@ Window - orientation descriptor -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#descdef-container-orientation +https://drafts.csswg.org/css-conditional-5/#descdef-container-orientation 1 1 @container @@ -1316,6 +1578,17 @@ XRCubeLayerInit - orientation attribute +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplane-orientation +1 +1 +XRPlane +- +orientation +attribute webxr webxr 1 @@ -1386,11 +1659,11 @@ Screen - orientation dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-orientation +https://w3c.github.io/window-management/#screen-orientation 1 screen @@ -1408,6 +1681,17 @@ manifest - orientation descriptor +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#descdef-container-orientation +1 +1 +@container +- +orientation +descriptor css-contain-3 css-contain 3 @@ -1511,11 +1795,11 @@ XRCubeLayerInit - orientation dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-orientation +https://www.w3.org/TR/window-management/#screen-orientation 1 screen @@ -1734,6 +2018,17 @@ https://dom.spec.whatwg.org/#concept-document-origin Document - origin +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-origin +1 +1 +<request-url-modifier> +- +origin dfn geometry-1 geometry @@ -1745,6 +2040,17 @@ https://drafts.fxtf.org/geometry-1/#rectangle-origin rectangle - origin +dfn +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#ray-origin + +1 +ray() +- +origin argument fedcm fedcm @@ -2073,6 +2379,17 @@ https://w3c.github.io/mediacapture-handle/identity/#dom-capturehandle-origin CaptureHandle - origin +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-client-origin +1 +1 +client +- +origin dict-member credential-management-1 credential-management @@ -2152,6 +2469,28 @@ accept-ch-cache - origin dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-origin +1 +1 +exfiltration budget metadata +- +origin +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-reference-origin +1 +1 +exfiltration budget metadata reference +- +origin +dfn prefetch prefetch 1 @@ -2371,7 +2710,7 @@ credential-management 1 current https://w3c.github.io/webappsec-credential-management/#credential-origin-bound - +1 1 Credential - @@ -2382,7 +2721,7 @@ credential-management 1 snapshot https://www.w3.org/TR/credential-management-1/#credential-origin-bound - +1 1 Credential - @@ -2428,14 +2767,14 @@ https://www.w3.org/TR/webxr/#xrspace-origin-offset 1 XRSpace - -origin private file system +origin rate-limit window dfn -fs -fs +attribution-reporting-api +attribution-reporting-api 1 current -https://fs.spec.whatwg.org/#origin-private-file-system -1 +https://wicg.github.io/attribution-reporting-api/#origin-rate-limit-window + 1 - origin time @@ -2551,6 +2890,17 @@ https://www.w3.org/TR/referrer-policy/#origin-only-flag 1 - origin-when-cross-origin +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-origin-when-cross-origin +1 +1 +<request-url-modifier> +- +origin-when-cross-origin enum-value referrer-policy referrer-policy @@ -2561,46 +2911,6 @@ https://www.w3.org/TR/referrer-policy/#dom-referrerpolicy-origin-when-cross-orig 1 ReferrerPolicy - -origin2d -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#origin2d - -1 -- -origin2d -dfn -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#origin2d - -1 -- -origin3d -dfn -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#origin3d - -1 -- -origin3d -dfn -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#origin3d - -1 -- originAgentCluster attribute html @@ -3060,71 +3370,56 @@ https://www.w3.org/TR/json-ld11-api/#dfn-original-base-url 1 - -original font +original containing block dfn -ift -ift -1 +css-position-3 +css-position +3 current -https://w3c.github.io/IFT/Overview.html#original-font - +https://drafts.csswg.org/css-position-3/#original-containing-block 1 -- -original font axis space -dfn -ift -ift 1 -current -https://w3c.github.io/IFT/Overview.html#client-state-original-font-axis-space - -1 -Client State - -original font checksum +original containing block dfn -ift -ift +css-position-3 +css-position +3 +snapshot +https://www.w3.org/TR/css-position-3/#original-containing-block 1 -current -https://w3c.github.io/IFT/Overview.html#client-state-original-font-checksum - 1 -Client State - -original font feature list +original insertion mode dfn -ift -ift +html +html 1 current -https://w3c.github.io/IFT/Overview.html#client-state-original-font-feature-list +https://html.spec.whatwg.org/multipage/parsing.html#original-insertion-mode 1 -Client State - -original insertion mode +original opener dfn -html -html +webdriver-bidi +webdriver-bidi 1 current -https://html.spec.whatwg.org/multipage/parsing.html#original-insertion-mode +https://w3c.github.io/webdriver-bidi/#original-opener 1 - original report time dfn -attribution-reporting-api -attribution-reporting-api +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-report-original-report-time +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-original-report-time 1 -attribution report aggregatable report -event-level report - original source dfn @@ -3136,6 +3431,72 @@ https://streams.spec.whatwg.org/#original-source 1 - +original source +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#original-source + +1 +- +originalFrame +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe-originalframe-options-originalframe +1 +1 +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame, options) +RTCEncodedAudioFrame/constructor(originalFrame, options) +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame) +RTCEncodedAudioFrame/constructor(originalFrame) +- +originalFrame +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe-originalframe-options-originalframe +1 +1 +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame, options) +RTCEncodedVideoFrame/constructor(originalFrame, options) +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame) +RTCEncodedVideoFrame/constructor(originalFrame) +- +originalFrame +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe-originalframe-options-originalframe +1 +1 +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame, options) +RTCEncodedAudioFrame/constructor(originalFrame, options) +RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame) +RTCEncodedAudioFrame/constructor(originalFrame) +- +originalFrame +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe-originalframe-options-originalframe +1 +1 +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame, options) +RTCEncodedVideoFrame/constructor(originalFrame, options) +RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame) +RTCEncodedVideoFrame/constructor(originalFrame) +- originalPolicy attribute csp3 @@ -3202,58 +3563,24 @@ https://www.w3.org/TR/CSP3/#dom-securitypolicyviolationeventinit-originalpolicy 1 SecurityPolicyViolationEventInit - -original_axis_space +originally specified color space dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchresponse-original_axis_space - -1 -PatchResponse -- -original_features -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchresponse-original_features - -1 -PatchResponse -- -original_font_checksum -dfn -ift -ift -1 +css-color-5 +css-color +5 current -https://w3c.github.io/IFT/Overview.html#patchrequest-original_font_checksum - +https://drafts.csswg.org/css-color-5/#originally-specified-color-space 1 -PatchRequest -- -original_font_checksum -dfn -ift -ift 1 -current -https://w3c.github.io/IFT/Overview.html#patchresponse-original_font_checksum - -1 -PatchResponse - -originally specified +originally specified color space dfn css-color-5 css-color 5 -current -https://drafts.csswg.org/css-color-5/#originally-specified - +snapshot +https://www.w3.org/TR/css-color-5/#originally-specified-color-space +1 1 - originate @@ -3376,16 +3703,16 @@ https://www.w3.org/TR/WGSL/#originating-variable 1 - -origins with conflicting credentials +origins authorized for cross origin trusted signals dfn -prefetch -prefetch +turtledove +turtledove 1 current -https://wicg.github.io/nav-speculation/prefetch.html#cross-partition-prefetch-state-origins-with-conflicting-credentials +https://wicg.github.io/turtledove/#script-fetcher-origins-authorized-for-cross-origin-trusted-signals 1 -cross-partition prefetch state +script fetcher - oriya value @@ -3484,6 +3811,26 @@ https://drafts.csswg.org/css2/#propdef-orphans 1 - orphans +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#propdef-orphans +1 +1 +- +orphans +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#propdef-orphans +1 +1 +- +orphans dfn css22 css diff --git a/bikeshed/spec-data/readonly/anchors/anchors-os.data b/bikeshed/spec-data/readonly/anchors/anchors-os.data index 2a5290597a..6173c48216 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-os.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-os.data @@ -100,6 +100,57 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#enumdef-oscillatortype 1 +1 +- +os +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#registrar-os + +1 +registrar +- +os debug data type +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#os-debug-data-type + +1 +- +os registration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#os-registration + +1 +- +os specific custom map name +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#os-specific-custom-map-name + +1 +- +os specific custom name +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#os-specific-custom-name + 1 - os specific well-known format @@ -112,6 +163,38 @@ https://w3c.github.io/clipboard-apis/#os-specific-well-known-format 1 - +os specific well-known format +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#os-specific-well-known-format + +1 +- +os-source-delegated +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#os-debug-data-type-os-source-delegated + +1 +OS debug data type +- +os-trigger-delegated +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#os-debug-data-type-os-trigger-delegated + +1 +OS debug data type +- oscillatornode interface webaudio diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ot.data b/bikeshed/spec-data/readonly/anchors/anchors-ot.data index 4b423c519d..108cc12225 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ot.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ot.data @@ -1,5 +1,16 @@ "other" enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptwindowattribution-other +1 +1 +ScriptWindowAttribution +- +"other" +enum-value webusb webusb 1 @@ -9,6 +20,26 @@ https://wicg.github.io/webusb/#dom-usbrecipient-other 1 USBRecipient - +<otherwise> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_otherwise + +1 +- +<otherwise> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_otherwise + +1 +- OTPCredential interface web-otp @@ -446,7 +477,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-type-other-modifier +https://urlpattern.spec.whatwg.org/#token-type-other-modifier 1 token/type @@ -501,6 +532,17 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#discoverablecredentialmetadata-otherui + +1 +DiscoverableCredentialMetadata +- +otherui +dfn +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#public-key-credential-source-otherui 1 @@ -515,6 +557,26 @@ current https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparsersupportedtype-otherwise 1 +- +othographic syllable +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-othographic-syllable +1 + +- +othographic syllable +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-othographic-syllable +1 + - otp dict-member diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ou.data b/bikeshed/spec-data/readonly/anchors/anchors-ou.data index 4afb1cd8b5..953941be79 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ou.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ou.data @@ -59,6 +59,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#out-of-range-pseudo 1 +1 +- +<outerproduct/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_outerproduct + +1 +- +<outerproduct/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_outerproduct + 1 - <outline-line-style> @@ -301,26 +321,6 @@ https://www.w3.org/TR/filter-effects-1/#attr-valuedef-operator-out 1 operator - -out of bounds access -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#out-of-bounds-access - -1 -- -out of bounds access -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#out-of-bounds-access - -1 -- out of flow dfn css-display-3 @@ -349,6 +349,26 @@ css current https://drafts.csswg.org/css2/#out-of-flow +1 +- +out of flow +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x23 +1 +1 +- +out of flow +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x23 +1 1 - out of flow @@ -409,6 +429,56 @@ webusb current https://wicg.github.io/webusb/#out-transfers +1 +- +out-of-band outline +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#out-of-band-outline +1 +1 +- +out-of-bounds access +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#out-of-bounds-access + +1 +- +out-of-bounds access +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#out-of-bounds-access + +1 +- +out-of-bounds index +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#out-of-bounds-index + +1 +- +out-of-bounds index +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#out-of-bounds-index + 1 - out-of-flow @@ -503,6 +573,28 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-generate-an-out-of-memory-error 1 1 - +outbound post-capture steps +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#viewtransition-outbound-post-capture-steps + +1 +ViewTransition +- +outbound post-capture steps +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#viewtransition-outbound-post-capture-steps + +1 +ViewTransition +- outbound-rtp enum-value webrtc-stats @@ -551,9 +643,21 @@ css-backgrounds-3 css-backgrounds 3 current -https://drafts.csswg.org/css-backgrounds-3/#outer-box-shadow - +https://drafts.csswg.org/css-backgrounds-3/#box-shadow-outer-box-shadow +1 1 +box-shadow +- +outer box-shadow +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-outer-box-shadow +1 +1 +box-shadow-position - outer box-shadow dfn @@ -561,9 +665,10 @@ css-backgrounds-3 css-backgrounds 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#outer-box-shadow - +https://www.w3.org/TR/css-backgrounds-3/#box-shadow-outer-box-shadow +1 1 +box-shadow - outer display type dfn @@ -623,6 +728,26 @@ css current https://drafts.csswg.org/css2/#outer-edge +1 +- +outer edge +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#outer-edge +1 +1 +- +outer edge +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#outer-edge +1 1 - outer edge @@ -869,11 +994,11 @@ https://www.w3.org/TR/css-sizing-3/#outer-size - outerHTML attribute -dom-parsing -dom-parsing +html +html 1 current -https://w3c.github.io/DOM-Parsing/#dom-element-outerhtml +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-element-outerhtml 1 1 Element @@ -1057,6 +1182,46 @@ html current https://html.spec.whatwg.org/multipage/sections.html#outline +1 +- +outline +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#propdef-outline +1 +1 +- +outline +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#propdef-outline +1 +1 +- +outline +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#x2 +1 +1 +- +outline +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#x2 +1 1 - outline @@ -1087,26 +1252,6 @@ css-ui snapshot https://www.w3.org/TR/css-ui-4/#propdef-outline 1 -1 -- -outline table -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#outline-table - -1 -- -outline table -dfn -ift -ift -1 -snapshot -https://www.w3.org/TR/IFT/#outline-table - 1 - outline-color @@ -1140,6 +1285,26 @@ https://drafts.csswg.org/css2/#propdef-outline-color 1 - outline-color +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#propdef-outline-color +1 +1 +- +outline-color +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#propdef-outline-color +1 +1 +- +outline-color dfn css22 css @@ -1240,6 +1405,26 @@ https://drafts.csswg.org/css2/#propdef-outline-style 1 - outline-style +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#propdef-outline-style +1 +1 +- +outline-style +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#propdef-outline-style +1 +1 +- +outline-style dfn css22 css @@ -1300,6 +1485,26 @@ https://drafts.csswg.org/css2/#propdef-outline-width 1 - outline-width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/ui.html#propdef-outline-width +1 +1 +- +outline-width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/ui.html#propdef-outline-width +1 +1 +- +outline-width dfn css22 css @@ -1516,6 +1721,17 @@ https://webaudio.github.io/web-midi-api/#dom-midiporttype-output MIDIPortType - output +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#operator-output + +1 +operator +- +output argument webaudio webaudio @@ -1658,6 +1874,28 @@ https://www.w3.org/TR/webcodecs/#dom-videoframeoutputcallback-output 1 VideoFrameOutputCallback - +output +enum-value +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiporttype-output +1 +1 +MIDIPortType +- +output +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#operator-output + +1 +operator +- output audiodata dfn webcodecs @@ -1722,11 +1960,21 @@ PaintRenderingContext2D - output buffer dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-output-buffer +https://w3c.github.io/png/#dfn-output-buffer + +1 +- +output buffer +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-output-buffer 1 - @@ -1934,9 +2182,9 @@ https://www.w3.org/TR/webcodecs/#output-videoframes - output-downscaled enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-output-downscaled 1 @@ -1944,21 +2192,21 @@ https://w3c.github.io/encrypted-media/#dom-mediakeystatus-output-downscaled MediaKeyStatus - output-downscaled -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-output-downscaled - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-output-downscaled +1 1 -mediakeystatus +MediaKeyStatus - output-restricted enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-output-restricted 1 @@ -1966,15 +2214,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeystatus-output-restricted MediaKeyStatus - output-restricted -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-output-restricted - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-output-restricted +1 1 -mediakeystatus +MediaKeyStatus - output1 dict-member @@ -2064,6 +2312,28 @@ https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-outputchannelcount 1 AudioWorkletNodeOptions - +outputDataType +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlargminmaxoptions-outputdatatype +1 +1 +MLArgMinMaxOptions +- +outputDataType +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-outputdatatype +1 +1 +MLArgMinMaxOptions +- outputLatency attribute webaudio @@ -2196,17 +2466,6 @@ https://webaudio.github.io/web-midi-api/#dom-midiaccess-outputs MIDIAccess - outputs -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlcommandencoder-dispatch-graph-inputs-outputs-outputs -1 -1 -MLCommandEncoder/dispatch(graph, inputs, outputs) -- -outputs dict-member webnn webnn @@ -2234,17 +2493,6 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlcontext-computesync-graph-inputs-outputs-outputs -1 -1 -MLContext/computeSync(graph, inputs, outputs) -- -outputs -argument -webnn -webnn -1 -current https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-build-outputs-outputs 1 1 @@ -2252,17 +2500,6 @@ MLGraphBuilder/build(outputs) - outputs argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-buildsync-outputs-outputs -1 -1 -MLGraphBuilder/buildSync(outputs) -- -outputs -argument webaudio webaudio 1 @@ -2283,15 +2520,15 @@ https://www.w3.org/TR/webaudio/#outputs 1 - outputs -argument -webnn -webnn +attribute +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcommandencoder-dispatch-graph-inputs-outputs-outputs +https://www.w3.org/TR/webmidi/#dom-midiaccess-outputs 1 1 -MLCommandEncoder/dispatch(graph, inputs, outputs) +MIDIAccess - outputs dict-member @@ -2321,33 +2558,11 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlcontext-computesync-graph-inputs-outputs-outputs -1 -1 -MLContext/computeSync(graph, inputs, outputs) -- -outputs -argument -webnn -webnn -1 -snapshot https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build-outputs-outputs 1 1 MLGraphBuilder/build(outputs) - -outputs -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-buildsync-outputs-outputs -1 -1 -MLGraphBuilder/buildSync(outputs) -- outset value css-backgrounds-3 @@ -2367,6 +2582,17 @@ border - outset value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-outset +1 +1 +box-shadow-position +- +outset +value css22 css 1 @@ -2394,6 +2620,26 @@ stroke-align - outset value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-outset +1 +1 +- +outset +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-outset +1 +1 +- +outset +value css-backgrounds-3 css-backgrounds 3 @@ -2421,6 +2667,17 @@ https://www.w3.org/TR/fill-stroke-3/#valdef-stroke-align-outset stroke-align - outside +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside +1 +1 +anchor() +- +outside dfn css3-exclusions css-exclusions @@ -2454,6 +2711,17 @@ list-style-position - outside value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-outside +1 +1 +anchor() +- +outside +value css-lists-3 css-lists 3 @@ -2473,6 +2741,27 @@ https://www.w3.org/TR/css3-exclusions/#outside-inside 1 1 - +outside of home tab scope +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-outside-of-home-tab-scope + +1 +- +outside settings +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworkletglobalscope-outside-settings + +1 +SharedStorageWorkletGlobalScope +- outside-shape value css-shapes-2 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ov.data b/bikeshed/spec-data/readonly/anchors/anchors-ov.data index 82e7e93040..13b31a2d53 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ov.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ov.data @@ -290,11 +290,11 @@ https://drafts.csswg.org/css-overflow-3/#propdef-overflow - overflow value -css-overflow-4 +css-overflow-5 css-overflow -4 +5 current -https://drafts.csswg.org/css-overflow-4/#valdef-continue-overflow +https://drafts.csswg.org/css-overflow-5/#valdef-continue-overflow 1 1 continue @@ -320,6 +320,46 @@ https://drafts.csswg.org/css2/#propdef-overflow 1 - overflow +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow +1 +1 +- +overflow +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow +1 +1 +- +overflow +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#x0 +1 +1 +- +overflow +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#x0 +1 +1 +- +overflow dfn css22 css @@ -1004,6 +1044,31 @@ transaction - overlay value +css-overflow-3 +css-overflow +3 +current +https://drafts.csswg.org/css-overflow-3/#valdef-overflow-overlay +1 +1 +overflow +overflow-x +overflow-y +overflow-block +overflow-inline +- +overlay +property +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#propdef-overlay +1 +1 +- +overlay +value compositing-1 compositing 1 @@ -1045,6 +1110,21 @@ https://www.w3.org/TR/compositing-1/#valdef-blend-mode-overlay 1 <blend-mode> - +overlay +value +css-overflow-3 +css-overflow +3 +snapshot +https://www.w3.org/TR/css-overflow-3/#valdef-overflow-overlay +1 +1 +overflow +overflow-x +overflow-y +overflow-block +overflow-inline +- overlay element dfn webxr-dom-overlays-1 @@ -1087,12 +1167,22 @@ https://www.w3.org/TR/css-overflow-3/#overlay-scrollbars - overlays-content dfn -css-viewport +css-viewport-1 css-viewport 1 current https://drafts.csswg.org/css-viewport/#overlays-content +1 +- +overlays-content +dfn +css-viewport-1 +css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#overlays-content + 1 - overlaysContent @@ -1274,6 +1364,17 @@ https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-override syntax_kw - override +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-override +1 +1 +PreferenceObject +- +override dfn wgsl wgsl @@ -1409,6 +1510,16 @@ https://xhr.spec.whatwg.org/#dom-xmlhttprequest-overridemimetype 1 XMLHttpRequest - +overrule +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#overrule + +1 +- oversample attribute webaudio diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ow.data b/bikeshed/spec-data/readonly/anchors/anchors-ow.data index 32f4ef416a..0c6e7e72cc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ow.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ow.data @@ -51,27 +51,6 @@ Reflect - owned dfn -wai-aria-1.2 -wai-aria -1 -current -https://w3c.github.io/aria/#dfn-owned-element -1 - -ARIA -- -owned -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-owned-element - -1 -- -owned -dfn svg-aam-1.0 svg-aam 1 @@ -90,35 +69,34 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-owned-element - -owned element +owned child dfn wai-aria-1.2 wai-aria 1 current -https://w3c.github.io/aria/#dfn-owned-element +https://w3c.github.io/aria/#dfn-accessibility-child +1 1 - -ARIA - -owned element +owned child dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-owned-element - +https://w3c.github.io/aria/#dfn-accessibility-child +1 1 - -owned element +owned child dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-child 1 -current -https://w3c.github.io/mathml-aam/#dfn-owned-element - 1 - owned element @@ -163,26 +141,25 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-owned-element - owned element's dfn -wai-aria-1.2 -wai-aria +svg-aam-1.0 +svg-aam 1 current -https://w3c.github.io/aria/#dfn-owned-element -1 +https://w3c.github.io/svg-aam/#dfn-owned-element + -ARIA - owned element's dfn -mathml-aam -mathml-aam +wai-aria-1.2 +wai-aria 1 -current -https://w3c.github.io/mathml-aam/#dfn-owned-element +snapshot +https://www.w3.org/TR/wai-aria-1.2/#dfn-owned-element + -1 - -owned element's +owned elements dfn svg-aam-1.0 svg-aam @@ -192,7 +169,7 @@ https://w3c.github.io/svg-aam/#dfn-owned-element - -owned element's +owned elements dfn wai-aria-1.2 wai-aria @@ -202,35 +179,61 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-owned-element - -owned elements +owner dfn -mathml-aam -mathml-aam +fenced-frame +fenced-frame 1 current -https://w3c.github.io/mathml-aam/#dfn-owned-element - +https://wicg.github.io/fenced-frame/#interest-group-descriptor-owner 1 +1 +interest group descriptor - -owned elements -dfn -svg-aam-1.0 -svg-aam +owner +dict-member +turtledove +turtledove 1 current -https://w3c.github.io/svg-aam/#dfn-owned-element - - +https://wicg.github.io/turtledove/#dom-auctionadinterestgroupkey-owner +1 +1 +AuctionAdInterestGroupKey - -owned elements +owner +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-owner +1 +1 +GenerateBidInterestGroup +- +owner +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-clearoriginjoinedadinterestgroups-owner-interestgroupstokeep-owner +1 +1 +Navigator/clearOriginJoinedAdInterestGroups(owner, interestGroupsToKeep) +Navigator/clearOriginJoinedAdInterestGroups(owner) +- +owner dfn -wai-aria-1.2 -wai-aria +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/wai-aria-1.2/#dfn-owned-element - +current +https://wicg.github.io/turtledove/#interest-group-owner +1 +interest group - owner css rule dfn @@ -399,26 +402,6 @@ SVGElement - owning dfn -wai-aria-1.2 -wai-aria -1 -current -https://w3c.github.io/aria/#dfn-owning-element - - -- -owning -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-owning-element - -1 -- -owning -dfn svg-aam-1.0 svg-aam 1 @@ -448,6 +431,26 @@ https://wicg.github.io/page-lifecycle/#dedicatedworkerglobalscope-owning-documen 1 DedicatedWorkerGlobalScope - +owning document set +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-owning-document-set + +1 +- +owning document set +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-owning-document-set + +1 +- owning element dfn css-animations-2 @@ -470,53 +473,43 @@ https://drafts.csswg.org/css-transitions-2/#owning-element - owning element dfn -wai-aria-1.2 -wai-aria +svg-aam-1.0 +svg-aam 1 current -https://w3c.github.io/aria/#dfn-owning-element +https://w3c.github.io/svg-aam/#dfn-owning-element - owning element dfn -mathml-aam -mathml-aam +svg-aam-1.0 +svg-aam 1 current -https://w3c.github.io/mathml-aam/#dfn-owning-element +https://w3c.github.io/svg-aam/#dfn-owning-element + -1 - owning element dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-owning-element +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#owning-element 1 - owning element dfn -svg-aam-1.0 -svg-aam -1 -current -https://w3c.github.io/svg-aam/#dfn-owning-element - +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#owning-element -- -owning element -dfn -svg-aam-1.0 -svg-aam 1 -current -https://w3c.github.io/svg-aam/#dfn-owning-element - - - owning element dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-p_.data b/bikeshed/spec-data/readonly/anchors/anchors-p_.data index 975a9899f0..c911596283 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-p_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-p_.data @@ -1,14 +1,4 @@ p -dfn -motion-1 -motion -1 -current -https://drafts.fxtf.org/motion-1/#p - -1 -- -p element html html @@ -49,13 +39,3 @@ https://www.w3.org/TR/motion-1/#p 1 - -p -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-p - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pa.data b/bikeshed/spec-data/readonly/anchors/anchors-pa.data index ba776fb223..aead5024cc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pa.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pa.data @@ -97,6 +97,39 @@ https://www.w3.org/TR/service-workers/#dom-serviceworkerstate-parsed 1 ServiceWorkerState - +"passedAndEnforced" +enum-value +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-kanonstatus-passedandenforced +1 +1 +KAnonStatus +- +"passedNotEnforced" +enum-value +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-kanonstatus-passednotenforced +1 +1 +KAnonStatus +- +"passkeyPlatformAuthenticator" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-passkeyplatformauthenticator +1 +1 +ClientCapability +- "pause" enum-value mediasession @@ -187,7 +220,7 @@ AnimationPlayState - "payment" permission -payment-request-1.1 +payment-request payment-request 1 current @@ -195,6 +228,16 @@ https://w3c.github.io/payment-request/#dfn-payment 1 1 - +"payment" +permission +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-payment +1 +1 +- %parseFloat% method ecmascript @@ -226,6 +269,26 @@ current https://drafts.csswg.org/css2/#paged-media-group +- +'paged' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#paged-media-group +1 +1 +- +'paged' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#paged-media-group +1 +1 - ::part() selector @@ -264,7 +327,7 @@ webvtt 1 current https://w3c.github.io/webvtt/#selectordef-past -1 + 1 - :past @@ -295,6 +358,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-paused 1 +1 +- +:paused +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-paused + 1 - :paused @@ -317,6 +390,26 @@ https://drafts.csswg.org/css2/#value-def-padding-width 1 1 - +<padding-width> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-padding-width +1 +1 +- +<padding-width> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-padding-width +1 +1 +- <page-selector-list> type css-page-3 @@ -481,6 +574,48 @@ https://www.w3.org/TR/css-fonts-4/#typedef-font-palette-palette-identifier 1 font-palette - +<palette-mix()> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#typedef-font-palette-palette-mix +1 +1 +font-palette +- +<palette-mix()> +type +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#typedef-font-palette-palette-mix +1 +1 +font-palette +- +<partialdiff/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_partialdiff + +1 +- +<partialdiff/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_partialdiff + +1 +- @page at-rule css-page-3 @@ -502,6 +637,26 @@ https://drafts.csswg.org/css2/#at-ruledef-page 1 - @page +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x3 +1 +1 +- +@page +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x3 +1 +1 +- +@page at-rule css-page-3 css-page @@ -511,6 +666,26 @@ https://www.w3.org/TR/css-page-3/#at-ruledef-page 1 1 - +PADebugModeOptions +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-padebugmodeoptions +1 +1 +- +PAExtendedHistogramContribution +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-paextendedhistogramcontribution +1 +1 +- PAGE_RULE const cssom-1 @@ -533,6 +708,26 @@ https://www.w3.org/TR/cssom-1/#dom-cssrule-page_rule 1 CSSRule - +PAHistogramContribution +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-pahistogramcontribution +1 +1 +- +PASignalValue +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-pasignalvalue +1 +1 +- PackAndPostMessage abstract-op streams @@ -592,6 +787,26 @@ snapshot https://www.w3.org/TR/miniapp-lifecycle/#dom-pageinputobject 1 +- +PageRevealEvent +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#pagerevealevent +1 +1 +- +PageRevealEventInit +dictionary +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#pagerevealeventinit +1 +1 - PageState enum @@ -612,6 +827,26 @@ snapshot https://www.w3.org/TR/miniapp-lifecycle/#dom-pagestate 1 +- +PageSwapEvent +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#pageswapevent +1 +1 +- +PageSwapEventInit +dictionary +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#pageswapeventinit +1 +1 - PageTransitionEvent interface @@ -857,6 +1092,36 @@ https://www.w3.org/TR/permissions-policy-1/#parse-policy-directive 1 1 - +ParseHexOctet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-parsehexoctet +1 +1 +- +ParseHexOctet(string, position) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-parsehexoctet +1 +1 +- +ParseModule +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-parsemodule +1 +1 +- ParseModule(sourceText, realm, hostDefined) abstract-op ecmascript @@ -867,6 +1132,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +ParseScript +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-parse-script +1 +1 +- ParseScript(sourceText, realm, hostDefined) abstract-op ecmascript @@ -877,6 +1152,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +ParseTimeZoneOffsetString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-parsetimezoneoffsetstring +1 +1 +- ParseTimeZoneOffsetString(offsetString) abstract-op ecmascript @@ -1012,9 +1297,29 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-path2d 1 Path2D - +PayerErrors +dictionary +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-payererrors +1 +1 +- +PayerErrors +dictionary +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-payererrors +1 +1 +- PaymentComplete enum -payment-request-1.1 +payment-request payment-request 1 current @@ -1024,17 +1329,17 @@ https://w3c.github.io/payment-request/#dom-paymentcomplete - PaymentComplete enum -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete +https://www.w3.org/TR/payment-request/#dom-paymentcomplete 1 1 - PaymentCompleteDetails dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1044,11 +1349,11 @@ https://w3c.github.io/payment-request/#dom-paymentcompletedetails - PaymentCompleteDetails dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcompletedetails +https://www.w3.org/TR/payment-request/#dom-paymentcompletedetails 1 1 - @@ -1074,7 +1379,7 @@ https://www.w3.org/TR/secure-payment-confirmation/#dictdef-paymentcredentialinst - PaymentCurrencyAmount dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1084,11 +1389,11 @@ https://w3c.github.io/payment-request/#dom-paymentcurrencyamount - PaymentCurrencyAmount dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount +https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount 1 1 - @@ -1114,7 +1419,7 @@ https://www.w3.org/TR/payment-handler/#dom-paymentdelegation - PaymentDetailsBase dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1124,17 +1429,17 @@ https://w3c.github.io/payment-request/#dom-paymentdetailsbase - PaymentDetailsBase dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase +https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase 1 1 - PaymentDetailsInit dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1144,17 +1449,17 @@ https://w3c.github.io/payment-request/#dom-paymentdetailsinit - PaymentDetailsInit dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit +https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit 1 1 - PaymentDetailsModifier dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1164,17 +1469,17 @@ https://w3c.github.io/payment-request/#dom-paymentdetailsmodifier - PaymentDetailsModifier dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier +https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier 1 1 - PaymentDetailsUpdate dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1184,11 +1489,11 @@ https://w3c.github.io/payment-request/#dom-paymentdetailsupdate - PaymentDetailsUpdate dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate +https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate 1 1 - @@ -1214,7 +1519,7 @@ https://www.w3.org/TR/payment-handler/#dom-paymenthandlerresponse - PaymentItem dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1224,11 +1529,11 @@ https://w3c.github.io/payment-request/#dom-paymentitem - PaymentItem dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem +https://www.w3.org/TR/payment-request/#dom-paymentitem 1 1 - @@ -1254,7 +1559,7 @@ https://www.w3.org/TR/payment-handler/#dom-paymentmanager - PaymentMethodChangeEvent interface -payment-request-1.1 +payment-request payment-request 1 current @@ -1264,17 +1569,17 @@ https://w3c.github.io/payment-request/#dom-paymentmethodchangeevent - PaymentMethodChangeEvent interface -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent 1 1 - PaymentMethodChangeEventInit dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1284,17 +1589,17 @@ https://w3c.github.io/payment-request/#dom-paymentmethodchangeeventinit - PaymentMethodChangeEventInit dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit +https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit 1 1 - PaymentMethodData dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1304,17 +1609,37 @@ https://w3c.github.io/payment-request/#dom-paymentmethoddata - PaymentMethodData dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata +https://www.w3.org/TR/payment-request/#dom-paymentmethoddata +1 +1 +- +PaymentOptions +dictionary +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions +1 +1 +- +PaymentOptions +dictionary +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions 1 1 - PaymentRequest interface -payment-request-1.1 +payment-request payment-request 1 current @@ -1324,11 +1649,11 @@ https://w3c.github.io/payment-request/#dom-paymentrequest - PaymentRequest interface -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest +https://www.w3.org/TR/payment-request/#dom-paymentrequest 1 1 - @@ -1394,7 +1719,7 @@ https://www.w3.org/TR/payment-handler/#dom-paymentrequesteventinit - PaymentRequestUpdateEvent interface -payment-request-1.1 +payment-request payment-request 1 current @@ -1404,17 +1729,17 @@ https://w3c.github.io/payment-request/#dom-paymentrequestupdateevent - PaymentRequestUpdateEvent interface -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent 1 1 - PaymentRequestUpdateEvent.PaymentRequestUpdateEvent() constructor -payment-request-1.1 +payment-request payment-request 1 current @@ -1425,18 +1750,18 @@ PaymentRequestUpdateEvent - PaymentRequestUpdateEvent.PaymentRequestUpdateEvent() constructor -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor 1 1 PaymentRequestUpdateEvent - PaymentRequestUpdateEventInit dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1446,17 +1771,17 @@ https://w3c.github.io/payment-request/#dom-paymentrequestupdateeventinit - PaymentRequestUpdateEventInit dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateeventinit +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateeventinit 1 1 - PaymentResponse interface -payment-request-1.1 +payment-request payment-request 1 current @@ -1466,17 +1791,57 @@ https://w3c.github.io/payment-request/#dom-paymentresponse - PaymentResponse interface -payment-request-1.1 +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse +1 +1 +- +PaymentShippingOption +dictionary +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingoption +1 +1 +- +PaymentShippingOption +dictionary +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingoption +1 +1 +- +PaymentShippingType +enum +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingtype +1 +1 +- +PaymentShippingType +enum +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse +https://www.w3.org/TR/payment-request/#dom-paymentshippingtype 1 1 - PaymentValidationErrors dictionary -payment-request-1.1 +payment-request payment-request 1 current @@ -1486,11 +1851,11 @@ https://w3c.github.io/payment-request/#dom-paymentvalidationerrors - PaymentValidationErrors dictionary -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors +https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors 1 1 - @@ -1576,6 +1941,28 @@ https://www.w3.org/TR/epub-33/#dfn-package-document 1 1 - +packed_4x8_integer_dot_product +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#language_extension-packed_4x8_integer_dot_product + +1 +language_extension +- +packed_4x8_integer_dot_product +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#language_extension-packed_4x8_integer_dot_product + +1 +language_extension +- packetLengths argument webusb @@ -1740,10 +2127,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-packetslost +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-packetslost 1 1 -WebTransportStats +WebTransportConnectionStats - packetsLost dict-member @@ -1762,10 +2149,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-packetslost +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-packetslost 1 1 -WebTransportStats +WebTransportConnectionStats - packetsReceived dict-member @@ -1806,10 +2193,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-packetsreceived +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-packetsreceived 1 1 -WebTransportStats +WebTransportConnectionStats - packetsReceived dict-member @@ -1850,10 +2237,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-packetsreceived +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-packetsreceived 1 1 -WebTransportStats +WebTransportConnectionStats - packetsSent dict-member @@ -1894,10 +2281,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-packetssent +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-packetssent 1 1 -WebTransportStats +WebTransportConnectionStats - packetsSent dict-member @@ -1938,10 +2325,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-packetssent +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-packetssent 1 1 -WebTransportStats +WebTransportConnectionStats - pad descriptor @@ -1987,7 +2374,7 @@ https://www.w3.org/TR/css-counter-styles-3/#dom-csscounterstylerule-pad 1 CSSCounterStyleRule - -pad(input, padding) +pad(input, beginningPadding, endingPadding) method webnn webnn @@ -1998,7 +2385,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad 1 MLGraphBuilder - -pad(input, padding) +pad(input, beginningPadding, endingPadding) method webnn webnn @@ -2009,7 +2396,7 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad 1 MLGraphBuilder - -pad(input, padding, options) +pad(input, beginningPadding, endingPadding, options) method webnn webnn @@ -2020,7 +2407,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad 1 MLGraphBuilder - -pad(input, padding, options) +pad(input, beginningPadding, endingPadding, options) method webnn webnn @@ -2147,27 +2534,35 @@ https://webmachinelearning.github.io/webnn/#dom-mlconvtranspose2doptions-padding MLConvTranspose2dOptions - padding -argument +dict-member webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pad-input-padding-options-padding +https://webmachinelearning.github.io/webnn/#dom-mlpool2doptions-padding 1 1 -MLGraphBuilder/pad(input, padding, options) -MLGraphBuilder/pad(input, padding) +MLPool2dOptions - padding -dict-member -webnn -webnn +property +css2 +css 1 current -https://webmachinelearning.github.io/webnn/#dom-mlpool2doptions-padding +https://www.w3.org/TR/CSS21/box.html#propdef-padding +1 +1 +- +padding +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-padding 1 1 -MLPool2dOptions - padding dfn @@ -2264,18 +2659,6 @@ https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-padding MLConvTranspose2dOptions - padding -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-padding-options-padding -1 -1 -MLGraphBuilder/pad(input, padding, options) -MLGraphBuilder/pad(input, padding) -- -padding dict-member webnn webnn @@ -2364,6 +2747,26 @@ css current https://drafts.csswg.org/css2/#padding-box +1 +- +padding box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#x12 +1 +1 +- +padding box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#x12 +1 1 - padding box @@ -2384,16 +2787,6 @@ css-box snapshot https://www.w3.org/TR/css-box-4/#padding-box 1 -1 -- -padding box -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-padding-box - 1 - padding edge @@ -2424,6 +2817,26 @@ css current https://drafts.csswg.org/css2/#padding-edge +1 +- +padding edge +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#padding-edge +1 +1 +- +padding edge +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#padding-edge +1 1 - padding edge @@ -2587,6 +3000,26 @@ https://drafts.csswg.org/css2/#propdef-padding-bottom 1 - padding-bottom +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom +1 +1 +- +padding-bottom +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom +1 +1 +- +padding-bottom dfn css22 css @@ -2648,8 +3081,12 @@ https://drafts.csswg.org/css-box-3/#valdef-box-padding-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - padding-box value @@ -2661,8 +3098,12 @@ https://drafts.csswg.org/css-box-4/#valdef-box-padding-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - padding-box value @@ -2752,8 +3193,12 @@ https://www.w3.org/TR/css-box-3/#valdef-box-padding-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - padding-box value @@ -2765,8 +3210,12 @@ https://www.w3.org/TR/css-box-4/#valdef-box-padding-box 1 1 <box> +<visual-box> +<layout-box> <shape-box> <geometry-box> +<paint-box> +<coord-box> - padding-box value @@ -2915,6 +3364,26 @@ https://drafts.csswg.org/css2/#propdef-padding-left 1 - padding-left +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-padding-left +1 +1 +- +padding-left +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-padding-left +1 +1 +- +padding-left dfn css22 css @@ -2975,6 +3444,26 @@ https://drafts.csswg.org/css2/#propdef-padding-right 1 - padding-right +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-padding-right +1 +1 +- +padding-right +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-padding-right +1 +1 +- +padding-right dfn css22 css @@ -3035,6 +3524,26 @@ https://drafts.csswg.org/css2/#propdef-padding-top 1 - padding-top +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#propdef-padding-top +1 +1 +- +padding-top +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#propdef-padding-top +1 +1 +- +padding-top dfn css22 css @@ -3064,6 +3573,26 @@ https://www.w3.org/TR/css-box-4/#propdef-padding-top 1 1 - +padding::of a box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#box-padding-area +1 +1 +- +padding::of a box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#box-padding-area +1 +1 +- pag dfn w3c-patent-policy @@ -3255,7 +3784,7 @@ css-page 4 current https://drafts.csswg.org/css-page-4/#page-area -1 + 1 - page area @@ -3266,6 +3795,26 @@ css current https://drafts.csswg.org/css2/#page-area +1 +- +page area +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#page-area +1 +1 +- +page area +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#page-area +1 1 - page area @@ -3285,7 +3834,7 @@ css-page 4 current https://drafts.csswg.org/css-page-4/#page-border -1 + 1 - page box @@ -3305,7 +3854,7 @@ css-page 4 current https://drafts.csswg.org/css-page-4/#page-box -1 + 1 - page box @@ -3320,11 +3869,31 @@ https://drafts.csswg.org/css2/#page-box%E2%91%A0 - page box dfn -css-page-3 -css-page -3 -snapshot -https://www.w3.org/TR/css-page-3/#page-box +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x1 +1 +1 +- +page box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x1 +1 +1 +- +page box +dfn +css-page-3 +css-page +3 +snapshot +https://www.w3.org/TR/css-page-3/#page-box 1 1 - @@ -3398,6 +3967,16 @@ https://www.w3.org/TR/css-page-3/#page-context 1 1 - +page credentialless nonce +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#page-credentialless-nonce +1 +1 +- page first render ready dfn miniapp-lifecycle @@ -3556,6 +4135,16 @@ https://www.w3.org/TR/miniapp-lifecycle/#dfn-page-lifecycle-states Document - +page load +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#page-load + +1 +- page load strategy dfn webdriver2 @@ -3585,6 +4174,7 @@ current https://w3c.github.io/webdriver/#dfn-page-load-timeout 1 +timeouts - page load timeout dfn @@ -3595,6 +4185,7 @@ snapshot https://www.w3.org/TR/webdriver2/#dfn-page-load-timeout 1 +timeouts - page loaded dfn @@ -3667,7 +4258,7 @@ css-page 4 current https://drafts.csswg.org/css-page-4/#page-margin -1 + 1 - page orientation @@ -3697,7 +4288,7 @@ css-page 4 current https://drafts.csswg.org/css-page-4/#page-padding -1 + 1 - page progression @@ -3788,8 +4379,8 @@ miniapp-manifest miniapp-manifest 1 current -https://w3c.github.io/miniapp-manifest/#dfn-route - +https://w3c.github.io/miniapp-manifest/#dfn-page-route +1 1 - page route @@ -3798,8 +4389,8 @@ miniapp-manifest miniapp-manifest 1 snapshot -https://www.w3.org/TR/miniapp-manifest/#dfn-route - +https://www.w3.org/TR/miniapp-manifest/#dfn-page-route +1 1 - page routes @@ -3808,8 +4399,8 @@ miniapp-manifest miniapp-manifest 1 current -https://w3c.github.io/miniapp-manifest/#dfn-route - +https://w3c.github.io/miniapp-manifest/#dfn-page-route +1 1 - page routes @@ -3818,8 +4409,8 @@ miniapp-manifest miniapp-manifest 1 snapshot -https://www.w3.org/TR/miniapp-manifest/#dfn-route - +https://www.w3.org/TR/miniapp-manifest/#dfn-page-route +1 1 - page running in background @@ -3884,6 +4475,26 @@ css current https://drafts.csswg.org/css2/#page-selector +1 +- +page selector +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x5 +1 +1 +- +page selector +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x5 +1 1 - page selector @@ -4093,6 +4704,26 @@ https://drafts.csswg.org/css2/#propdef-page-break-after 1 - page-break-after +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after +1 +1 +- +page-break-after +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after +1 +1 +- +page-break-after dfn css22 css @@ -4113,6 +4744,26 @@ https://drafts.csswg.org/css2/#propdef-page-break-before 1 - page-break-before +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before +1 +1 +- +page-break-before +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before +1 +1 +- +page-break-before dfn css22 css @@ -4133,6 +4784,26 @@ https://drafts.csswg.org/css2/#propdef-page-break-inside 1 - page-break-inside +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside +1 +1 +- +page-break-inside +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside +1 +1 +- +page-break-inside dfn css22 css @@ -4150,6 +4821,26 @@ css current https://drafts.csswg.org/css2/#page-context +1 +- +page-context +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#page-context +1 +1 +- +page-context +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#page-context +1 1 - page-margin boxes @@ -4169,7 +4860,7 @@ css-page 4 current https://drafts.csswg.org/css-page-4/#page-margin-boxes -1 + 1 - page-margin boxes @@ -4213,6 +4904,28 @@ https://drafts.csswg.org/css-page-3/#descdef-page-page-orientation 1 @page - +page-orientation +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-page-orientation +1 +1 +CSSPageDescriptors +- +page-orientation +descriptor +css-page-3 +css-page +3 +snapshot +https://www.w3.org/TR/css-page-3/#descdef-page-page-orientation +1 +1 +@page +- pageInputObject attribute miniapp-lifecycle @@ -4268,6 +4981,17 @@ https://drafts.csswg.org/cssom-view-1/#dom-visualviewport-pageleft 1 VisualViewport - +pageOrientation +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-pageorientation +1 +1 +CSSPageDescriptors +- pagePath attribute miniapp-lifecycle @@ -4577,6 +5301,17 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-type-tel-pager 1 - +pagereveal +event +html +html +1 +current +https://html.spec.whatwg.org/multipage/indices.html#event-pagereveal +1 +1 +Window +- pages dfn miniapp-manifest @@ -4628,13 +5363,24 @@ https://html.spec.whatwg.org/multipage/indices.html#event-pageshow 1 Window - +pageswap +event +html +html +1 +current +https://html.spec.whatwg.org/multipage/indices.html#event-pageswap +1 +1 +Window +- paginate value -css-overflow-4 +css-overflow-5 css-overflow -4 +5 current -https://drafts.csswg.org/css-overflow-4/#valdef-continue-paginate +https://drafts.csswg.org/css-overflow-5/#valdef-continue-paginate 1 1 continue @@ -4774,6 +5520,56 @@ https://www.w3.org/TR/paint-timing/#paint 1 1 - +paint a block's decorations +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#paint-a-blocks-decorations +1 +1 +- +paint a box in a line box +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#paint-a-box-in-a-line-box +1 +1 +- +paint a document +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#paint-a-document +1 +1 +- +paint a stacking container +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#paint-a-stacking-container +1 +1 +- +paint a stacking context +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#paint-a-stacking-context +1 +1 +- paint class instances dfn css-paint-api-1 @@ -5084,6 +5880,16 @@ paint-timing current https://w3c.github.io/paint-timing/#paint-timing-eligible +1 +- +paint-timing eligible +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#paint-timing-eligible + 1 - paintCtor @@ -5138,6 +5944,16 @@ paint-timing current https://w3c.github.io/paint-timing/#paintable +1 +- +paintable +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#paintable + 1 - paintable bounding rect @@ -5148,6 +5964,16 @@ paint-timing current https://w3c.github.io/paint-timing/#paintable-bounding-rect +1 +- +paintable bounding rect +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#paintable-bounding-rect + 1 - paintable pseudo-element @@ -5158,6 +5984,16 @@ paint-timing current https://w3c.github.io/paint-timing/#paintable-pseudo-element +1 +- +paintable pseudo-element +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#paintable-pseudo-element + 1 - painting of the surd @@ -5304,6 +6140,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-palegoldenrod 1 1 <color> +<named-color> - palegoldenrod dfn @@ -5325,6 +6162,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-palegoldenrod 1 1 <color> +<named-color> - palegreen dfn @@ -5346,6 +6184,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-palegreen 1 1 <color> +<named-color> - palegreen dfn @@ -5367,15 +6206,36 @@ https://www.w3.org/TR/css-color-4/#valdef-color-palegreen 1 1 <color> +<named-color> - palette dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-palette +https://w3c.github.io/png/#3palette + +1 +- +palette +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3palette +1 +- +palette-mix() +function +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#funcdef-palette-mix +1 1 - palettes @@ -5389,6 +6249,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontface-palettes 1 FontFace - +palettes +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-palettes +1 +1 +FontFace +- paleturquoise dfn css-color-3 @@ -5409,6 +6280,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-paleturquoise 1 1 <color> +<named-color> - paleturquoise dfn @@ -5430,6 +6302,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-paleturquoise 1 1 <color> +<named-color> - palevioletred dfn @@ -5451,6 +6324,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-palevioletred 1 1 <color> +<named-color> - palevioletred dfn @@ -5472,6 +6346,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-palevioletred 1 1 <color> +<named-color> - palpable content dfn @@ -5741,6 +6616,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-papayawhip 1 1 <color> +<named-color> - papayawhip dfn @@ -5762,6 +6638,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-papayawhip 1 1 <color> +<named-color> - par element @@ -5907,6 +6784,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#param_i +1 +- +param_i_contents +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#param_i_contents + +1 +- +param_i_contents +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#param_i_contents + 1 - param_list @@ -5931,6 +6828,26 @@ https://www.w3.org/TR/WGSL/#syntax-param_list 1 syntax - +parameter return tag +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#parameter-return-tag + +1 +- +parameter return tag +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#parameter-return-tag + +1 +- parameter tag dfn wgsl @@ -5949,6 +6866,16 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#parameter-tag +1 +- +parameter type +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#parameter-type + 1 - parameterData @@ -5973,6 +6900,26 @@ https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-parameterdata 1 AudioWorkletNodeOptions - +parametercontentsrequiredtobeuniform.s +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#parametercontentsrequiredtobeuniforms + +1 +- +parametercontentsrequiredtobeuniform.s +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#parametercontentsrequiredtobeuniforms + +1 +- parameterdescriptors dfn webaudio @@ -6033,43 +6980,63 @@ https://www.w3.org/TR/WGSL/#parameternorestriction 1 - -parameterrequiredtobeuniform +parameterrequiredtobeuniform.s dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#parameterrequiredtobeuniform +https://gpuweb.github.io/gpuweb/wgsl/#parameterrequiredtobeuniforms 1 - -parameterrequiredtobeuniform +parameterrequiredtobeuniform.s dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#parameterrequiredtobeuniform +https://www.w3.org/TR/WGSL/#parameterrequiredtobeuniforms 1 - -parameterrequiredtobeuniformforreturnvalue +parameterreturncontentsrequiredtobeuniform dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#parameterrequiredtobeuniformforreturnvalue +https://gpuweb.github.io/gpuweb/wgsl/#parameterreturncontentsrequiredtobeuniform 1 - -parameterrequiredtobeuniformforreturnvalue +parameterreturncontentsrequiredtobeuniform dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#parameterrequiredtobeuniformforreturnvalue +https://www.w3.org/TR/WGSL/#parameterreturncontentsrequiredtobeuniform + +1 +- +parameterreturnnorestriction +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#parameterreturnnorestriction + +1 +- +parameterreturnnorestriction +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#parameterreturnnorestriction 1 - @@ -6123,7 +7090,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#algorithm-specific-params -1 + 1 - parameters @@ -6306,8 +7273,9 @@ html 1 current https://html.spec.whatwg.org/multipage/document-sequences.html#nav-parent - 1 +1 +navigable - parent dfn @@ -6332,12 +7300,52 @@ Window - parent dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-parent +1 +1 +- +parent +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-parent +1 +1 +- +parent +dfn entries-api entries-api 1 current https://wicg.github.io/entries-api/#parent +1 +- +parent +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#parent +1 +1 +- +parent +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#parent +1 1 - parent @@ -6351,6 +7359,27 @@ https://www.w3.org/TR/css-pseudo-4/#dom-csspseudoelement-parent 1 CSSPseudoElement - +parent +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-parent +1 +1 +- +parent +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-parent +1 +1 +AnimationEffect +- parent box dfn css-display-3 @@ -6472,6 +7501,16 @@ https://www.w3.org/TR/cssom-1/#concept-css-style-sheet-parent-css-style-sheet 1 CSSStyleSheet - +parent directionality +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#parent-directionality + +1 +- parent element dfn dom @@ -6482,6 +7521,36 @@ https://dom.spec.whatwg.org/#parent-element 1 1 - +parent element +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-parent +1 +1 +- +parent element +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-accessibility-parent +1 +1 +- +parent element +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-accessibility-parent +1 +1 +- parent grid dfn css-grid-2 @@ -6510,6 +7579,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#parent-group +1 +- +parent group +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#parent-group + 1 - parent layout @@ -6540,7 +7619,7 @@ media-source current https://w3c.github.io/media-source/#parent-media-source - +1 - parent media source dfn @@ -6550,7 +7629,40 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#parent-media-source +1 +- +parent task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#callback-function-parent-task + +1 +callback function +- +parent task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#script-parent-task + +1 +script +- +parent task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#task-parent-task +1 +task - parentElement attribute @@ -6717,6 +7829,16 @@ https://www.w3.org/TR/css-syntax-3/#css-parse-something-according-to-a-css-gramm 1 CSS - +parse a block's contents +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#parse-a-blocks-contents +1 +1 +- parse a boolean feature dfn html @@ -6745,6 +7867,16 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#parse-a-calculation 1 +1 +- +parse a clear-site-data header with buckets +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#parse-a-clear-site-data-header-with-buckets + 1 - parse a comma-separated list according to a css grammar @@ -6815,18 +7947,28 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#parse-a-constructor-string +https://urlpattern.spec.whatwg.org/#parse-a-constructor-string 1 - parse a css <color> value dfn -html -html -1 +css-color-4 +css-color +4 current -https://html.spec.whatwg.org/multipage/infrastructure.html#parsed-as-a-css-color-value - +https://drafts.csswg.org/css-color-4/#parse-a-css-color-value +1 +1 +- +parse a css <color> value +dfn +css-color-4 +css-color +4 +snapshot +https://www.w3.org/TR/css-color-4/#parse-a-css-color-value +1 1 - parse a css declaration block @@ -6926,7 +8068,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#parse-a-cssstylevalue - +1 1 - parse a date component @@ -6987,6 +8129,16 @@ speculation-rules current https://wicg.github.io/nav-speculation/speculation-rules.html#parse-a-document-rule-predicate +1 +- +parse a duration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-a-duration + 1 - parse a duration string @@ -6997,6 +8149,16 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#parse-a-duration-string +1 +- +parse a filter pair +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-a-filter-pair + 1 - parse a global date and time string @@ -7066,7 +8228,17 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-parse-a-jwk + 1 +- +parse a key +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#parse-a-key + 1 - parse a list @@ -7136,42 +8308,22 @@ dfn css-syntax-3 css-syntax 3 -current -https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations +snapshot +https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations 1 1 - -parse a list of declarations +parse a list of rules dfn css-syntax-3 css-syntax 3 snapshot -https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations +https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules 1 1 - -parse a list of rules -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules -1 -1 -- -parse a list of rules -dfn -css-syntax-3 -css-syntax -3 -snapshot -https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules -1 -1 -- -parse a local date and time string +parse a local date and time string dfn html html @@ -7189,6 +8341,26 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-parse-a-local-type-record +1 +- +parse a margin +dfn +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#parse-a-margin + +1 +- +parse a margin +dfn +intersection-observer +intersection-observer +1 +snapshot +https://www.w3.org/TR/intersection-observer/#parse-a-margin + 1 - parse a media query @@ -7297,7 +8469,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#parse-a-pattern-string +https://urlpattern.spec.whatwg.org/#parse-a-pattern-string 1 - @@ -7338,7 +8510,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-parse-a-privateKeyInfo -1 + 1 - parse a relative selector @@ -7379,26 +8551,6 @@ csp snapshot https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-responses-content-security-policies 1 -1 -- -parse a root margin -dfn -intersection-observer -intersection-observer -1 -current -https://w3c.github.io/IntersectionObserver/#parse-a-root-margin - -1 -- -parse a root margin -dfn -intersection-observer -intersection-observer -1 -snapshot -https://www.w3.org/TR/intersection-observer/#parse-a-root-margin - 1 - parse a rule @@ -7509,6 +8661,16 @@ server-timing snapshot https://www.w3.org/TR/server-timing/#dfn-parse-a-server-timing-header-field +1 +- +parse a signed additional bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-a-signed-additional-bid + 1 - parse a single range header value @@ -7559,6 +8721,16 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-parse-a-smart-poster-type-record +1 +- +parse a source aggregatable debug reporting config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-a-source-aggregatable-debug-reporting-config + 1 - parse a speculation rule @@ -7599,16 +8771,6 @@ geometry snapshot https://www.w3.org/TR/geometry-1/#parse-a-string-into-an-abstract-matrix -1 -- -parse a style block's contents -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#parse-a-style-blocks-contents -1 1 - parse a style block's contents @@ -7641,6 +8803,16 @@ https://www.w3.org/TR/css-syntax-3/#parse-a-stylesheet 1 1 - +parse a stylesheet's contents +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheets-contents +1 +1 +- parse a subjectpublickeyinfo dfn webcryptoapi @@ -7658,7 +8830,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-parse-a-spki -1 + 1 - parse a subset @@ -7728,7 +8900,7 @@ html 1 current https://html.spec.whatwg.org/multipage/urls-and-fetching.html#parse-a-url - +1 1 - parse a url @@ -7749,6 +8921,16 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-parse-a-url +1 +- +parse a url search variance +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#parse-a-url-search-variance + 1 - parse a vint @@ -7789,6 +8971,16 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#parse-a-yearless-date-string +1 +- +parse aggregatable debug reporting data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-aggregatable-debug-reporting-data + 1 - parse aggregatable dedup keys @@ -7799,6 +8991,26 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#parse-aggregatable-dedup-keys +1 +- +parse aggregatable filtering id max bytes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-aggregatable-filtering-id-max-bytes + +1 +- +parse aggregatable key-values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-aggregatable-key-values + 1 - parse aggregatable trigger data @@ -7829,6 +9041,66 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#parse-aggregation-keys +1 +- +parse allowed trusted scoring signals origins +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-allowed-trusted-scoring-signals-origins + +1 +- +parse an adrender ad size +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-an-adrender-ad-size + +1 +- +parse an adrender dimension value +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-an-adrender-dimension-value + +1 +- +parse an advertising data filter +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#parse-an-advertising-data-filter + +1 +- +parse an aggregatable debug reporting config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-an-aggregatable-debug-reporting-config + +1 +- +parse an aggregation coordinator +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-an-aggregation-coordinator + 1 - parse an aggregation key piece @@ -7858,7 +9130,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-parse-an-asn1-structure -1 + 1 - parse an attribution destination @@ -7879,6 +9151,26 @@ first-party-sets current https://wicg.github.io/first-party-sets/#parse-an-equivalence-map +1 +- +parse an event-trigger value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-an-event-trigger-value + +1 +- +parse an https origin +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-an-https-origin + 1 - parse an import map string @@ -7979,6 +9271,26 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-parse-an-ndef-url-record +1 +- +parse an optional 64-bit signed integer +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-an-optional-64-bit-signed-integer + +1 +- +parse an optional 64-bit unsigned integer +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-an-optional-64-bit-unsigned-integer + 1 - parse an origin-bound one-time code message @@ -7999,6 +9311,36 @@ first-party-sets current https://wicg.github.io/first-party-sets/#parse-and-validate-a-site +1 +- +parse and validate server response +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-and-validate-server-response + +1 +- +parse and verify a bidding code or update url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-and-verify-a-bidding-code-or-update-url + +1 +- +parse and verify a trusted signals url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#parse-and-verify-a-trusted-signals-url + 1 - parse as a forgiving selector list @@ -8049,6 +9391,36 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#parse-attribution-destinations +1 +- +parse attribution scope values for source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-attribution-scope-values-for-source + +1 +- +parse attribution scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-attribution-scopes + +1 +- +parse attribution scopes for trigger +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-attribution-scopes-for-trigger + 1 - parse document policy @@ -8120,6 +9492,16 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#parse-event-triggers +1 +- +parse filter config +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-filter-config + 1 - parse filter data @@ -8130,6 +9512,16 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#parse-filter-data +1 +- +parse filter values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-filter-values + 1 - parse filters @@ -8140,6 +9532,16 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#parse-filters +1 +- +parse html from a string +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#parse-html-from-a-string + 1 - parse json bytes to a javascript value @@ -8182,6 +9584,36 @@ https://infra.spec.whatwg.org/#parse-a-json-string-to-an-infra-value 1 1 - +parse max event states +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-max-event-states + +1 +- +parse orientation data reading +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#parse-orientation-data-reading +1 +1 +- +parse orientation data reading +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#parse-orientation-data-reading +1 +1 +- parse records from bytes dfn web-nfc @@ -8190,6 +9622,16 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-parse-records-from-bytes +1 +- +parse report windows +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-report-windows + 1 - parse response's Clear-Site-Data header @@ -8232,6 +9674,26 @@ https://www.w3.org/TR/CSP3/#parse-response-csp 1 1 - +parse single-value number reading +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#parse-single-value-number-reading +1 +1 +- +parse single-value number reading +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#parse-single-value-number-reading +1 +1 +- parse something according to a css grammar dfn css-syntax-3 @@ -8272,6 +9734,36 @@ speculation-rules current https://wicg.github.io/nav-speculation/speculation-rules.html#parse-speculation-rules +1 +- +parse summary buckets +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-summary-buckets + +1 +- +parse summary operator +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-summary-operator + +1 +- +parse the fragment directive +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#parse-the-fragment-directive + 1 - parse the report descriptor @@ -8302,6 +9794,36 @@ webvtt snapshot https://www.w3.org/TR/webvtt1/#parse-the-webvtt-cue-settings +1 +- +parse top-level report windows +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-top-level-report-windows + +1 +- +parse trigger data into a trigger spec map +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-trigger-data-into-a-trigger-spec-map + +1 +- +parse trigger specs +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#parse-trigger-specs + 1 - parse url @@ -8312,6 +9834,26 @@ fedcm current https://fedidcg.github.io/FedCM/#parse-url +1 +- +parse url pattern +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#parse-url-pattern + +1 +- +parse url pattern +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#parse-url-pattern + 1 - parse videoframecopytooptions @@ -8358,6 +9900,26 @@ https://www.w3.org/TR/webcodecs/#videoframe-parse-visible-rect 1 VideoFrame - +parse xyz reading +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#parse-xyz-reading +1 +1 +- +parse xyz reading +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#parse-xyz-reading +1 +1 +- parse(cssText) method css-typed-om-1 @@ -8386,6 +9948,17 @@ css-typed-om-1 css-typed-om 1 snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csscolorvalue-parse +1 +1 +CSSColorValue +- +parse(cssText) +method +css-typed-om-1 +css-typed-om +1 +snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-parse 1 1 @@ -8430,10 +10003,32 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-json.parse +https://tc39.es/ecma262/multipage/structured-data.html#sec-json.parse +1 +1 +JSON +- +parse(url) +method +url +url +1 +current +https://url.spec.whatwg.org/#dom-url-parse +1 +1 +URL +- +parse(url, base) +method +url +url +1 +current +https://url.spec.whatwg.org/#dom-url-parse 1 1 -JSON +URL - parseAll(property, cssText) method @@ -8479,6 +10074,17 @@ https://w3c.github.io/webauthn/#dom-publickeycredential-parsecreationoptionsfrom 1 PublicKeyCredential - +parseCreationOptionsFromJSON(options) +method +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-parsecreationoptionsfromjson +1 +1 +PublicKeyCredential +- parseDeclaration(css) method css-parser-api @@ -8556,6 +10162,61 @@ https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-dompars 1 DOMParser - +parseHTML(html) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtml +1 +1 +Document +- +parseHTML(html, options) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtml +1 +1 +Document +- +parseHTMLUnsafe(html) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-parsehtmlunsafe +1 +1 +Document +- +parseHTMLUnsafe(html) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtmlunsafe +1 +1 +Document +- +parseHTMLUnsafe(html, options) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtmlunsafe +1 +1 +Document +- parseInt(string, radix) method ecmascript @@ -8589,6 +10250,17 @@ https://w3c.github.io/webauthn/#dom-publickeycredential-parserequestoptionsfromj 1 PublicKeyCredential - +parseRequestOptionsFromJSON(options) +method +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-parserequestoptionsfromjson +1 +1 +PublicKeyCredential +- parseRule(css) method css-parser-api @@ -8718,15 +10390,27 @@ https://www.w3.org/TR/payment-method-manifest/#parsed-payment-method-manifest 1 1 - -parsedtextdirective +parsehtml dfn -scroll-to-text-fragment -scroll-to-text-fragment +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/scroll-to-text-fragment/#parsedtextdirective - +https://wicg.github.io/sanitizer-api/#dom-document-parsehtml%E2%91%A0 +1 +1 +DOM/Document +- +parsehtmlunsafe +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-document-parsehtmlunsafe%E2%91%A0 +1 1 +DOM/Document - parser cannot change the mode flag dfn @@ -8787,6 +10471,16 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#parser-pause-flag +1 +- +parser-aborted +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-parser-aborted + 1 - parser-inserted @@ -8855,17 +10549,6 @@ dfn css-syntax-3 css-syntax 3 -current -https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar -1 -1 -CSS -- -parsing a list -dfn -css-syntax-3 -css-syntax -3 snapshot https://www.w3.org/TR/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar 1 @@ -8964,21 +10647,31 @@ https://w3c.github.io/web-nfc/#dfn-parsing-the-blocklist - parsing the blocklist dfn -web-bluetooth -web-bluetooth +webhid +webhid 1 current -https://webbluetoothcg.github.io/web-bluetooth/#parsing-the-blocklist +https://wicg.github.io/webhid/#dfn-parsing-the-blocklist 1 - parsing the blocklist dfn -webhid -webhid +webusb +webusb 1 current -https://wicg.github.io/webhid/#dfn-parsing-the-blocklist +https://wicg.github.io/webusb/#parsing-the-blocklist + +1 +- +parsing the bluetooth service class id blocklist +dfn +serial +serial +1 +current +https://wicg.github.io/serial/#dfn-parsing-the-bluetooth-service-class-id-blocklist 1 - @@ -8990,6 +10683,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#parsing-the-gatt-assigned-numbers +1 +- +parsing the gatt blocklist +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#parsing-the-gatt-blocklist + 1 - parsing the invariant prefix @@ -9000,6 +10703,16 @@ webpackage current https://wicg.github.io/webpackage/loading.html#parsing-the-invariant-prefix +1 +- +parsing the manufacturer data blocklist +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#parsing-the-manufacturer-data-blocklist + 1 - parsing the report descriptor @@ -9090,7 +10803,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part +https://urlpattern.spec.whatwg.org/#part 1 - @@ -9144,7 +10857,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-list +https://urlpattern.spec.whatwg.org/#part-list 1 - @@ -9154,7 +10867,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser-part-list +https://urlpattern.spec.whatwg.org/#pattern-parser-part-list 1 pattern parser @@ -9192,6 +10905,16 @@ https://www.w3.org/TR/css-shadow-parts-1/#element-part-name-map 1 element - +part-like pseudo-elements +dfn +css-pseudo-4 +css-pseudo +4 +current +https://drafts.csswg.org/css-pseudo-4/#part-like-pseudo-elements + +1 +- partial assignment dfn wgsl @@ -9210,6 +10933,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#partial-assignment +1 +- +partial canonicalization function +dfn +rdf-canon +rdf-canon +1 +current +https://w3c.github.io/rdf-canon/spec/#dfn-partial-canonicalization-function +1 +1 +- +partial canonicalization function +dfn +rdf-canon +rdf-canon +1 +snapshot +https://www.w3.org/TR/rdf-canon/#dfn-partial-canonicalization-function +1 1 - partial derivative @@ -9260,6 +11003,26 @@ webidl current https://webidl.spec.whatwg.org/#partial-interface-mixin 1 +1 +- +partial invalidation +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#partial-invalidation + +1 +- +partial invalidation +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#partial-invalidation + 1 - partial link text @@ -9480,16 +11243,70 @@ https://www.w3.org/TR/css-flexbox-1/#baseline-participation align-items align-self - -partition state +partition nonce dfn -prefetch -prefetch +anonymous-iframe +anonymous-iframe 1 current -https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-partition-state - +https://wicg.github.io/anonymous-iframe/#environment-partition-nonce +1 +1 +environment +- +partition nonce +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-partition-nonce +1 +1 +fenced frame config instance +- +partition nonce +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#partition-nonce +1 +1 +- +partitioned +dict-member +cookie-store +cookie-store +1 +current +https://wicg.github.io/cookie-store/#dom-cookieinit-partitioned +1 +1 +CookieInit +- +partitioned +dict-member +cookie-store +cookie-store +1 +current +https://wicg.github.io/cookie-store/#dom-cookielistitem-partitioned +1 1 -prefetch record +CookieListItem +- +partitioned +dict-member +cookie-store +cookie-store +1 +current +https://wicg.github.io/cookie-store/#dom-cookiestoredeleteoptions-partitioned +1 +1 +CookieStoreDeleteOptions - party dfn @@ -9501,23 +11318,23 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-party - -party +pass extraction dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-party +png-3 +png +3 +current +https://w3c.github.io/png/#3passExtraction 1 - pass extraction dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#dfn-pass-extraction +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3passExtraction 1 - @@ -9583,23 +11400,23 @@ https://www.w3.org/TR/webgpu/#dom-gpustencilfacestate-passop 1 GPUStencilFaceState - -passes privacy test +passes rate obfuscation test dfn compute-pressure compute-pressure 1 current -https://w3c.github.io/compute-pressure/#dfn-passes-privacy-test +https://w3c.github.io/compute-pressure/#dfn-passes-rate-obfuscation-test 1 - -passes privacy test +passes rate obfuscation test dfn compute-pressure compute-pressure 1 snapshot -https://www.w3.org/TR/compute-pressure/#dfn-passes-privacy-test +https://www.w3.org/TR/compute-pressure/#dfn-passes-rate-obfuscation-test 1 - @@ -9693,9 +11510,70 @@ web-bluetooth web-bluetooth 1 current -https://webbluetoothcg.github.io/web-bluetooth/#passive-scanning - +https://webbluetoothcg.github.io/web-bluetooth/#passive-scanning + +1 +- +passive scanning +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#passive-scanning + +1 +- +passkey +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#passkey + +1 +- +passkey +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#passkey + +1 +- +passkey platform authenticator +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#passkey-platform-authenticator + +1 +- +passkey platform authenticator +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#passkey-platform-authenticator + +1 +- +passkeyPlatformAuthenticator +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-passkeyplatformauthenticator 1 +1 +ClientCapability - password dfn @@ -9724,7 +11602,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#password-state-(type=password) +https://html.spec.whatwg.org/multipage/input.html#password-state-(type%3Dpassword) 1 1 input @@ -9763,114 +11641,114 @@ https://url.spec.whatwg.org/#dom-url-password URL - password -const -credential-management-1 -credential-management +dfn +urlpattern +urlpattern 1 current -https://w3c.github.io/webappsec-credential-management/#dom-credential-type-password +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-password 1 1 -Credential/[[type]] +constructor string parser/state - password -dict-member -credential-management-1 -credential-management +attribute +urlpattern +urlpattern 1 current -https://w3c.github.io/webappsec-credential-management/#dom-credentialcreationoptions-password +https://urlpattern.spec.whatwg.org/#dom-urlpattern-password 1 1 -CredentialCreationOptions +URLPattern - password dict-member -credential-management-1 -credential-management +urlpattern +urlpattern 1 current -https://w3c.github.io/webappsec-credential-management/#dom-credentialrequestoptions-password +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-password 1 1 -CredentialRequestOptions +URLPatternInit - password -attribute -credential-management-1 -credential-management +dict-member +urlpattern +urlpattern 1 current -https://w3c.github.io/webappsec-credential-management/#dom-passwordcredential-password +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-password 1 1 -PasswordCredential +URLPatternResult - password -dict-member +const credential-management-1 credential-management 1 current -https://w3c.github.io/webappsec-credential-management/#dom-passwordcredentialdata-password +https://w3c.github.io/webappsec-credential-management/#dom-credential-type-password 1 1 -PasswordCredentialData +Credential/[[type]] - password dict-member -webrtc -webrtc +credential-management-1 +credential-management 1 current -https://w3c.github.io/webrtc-pc/#dom-rtciceparameters-password +https://w3c.github.io/webappsec-credential-management/#dom-credentialcreationoptions-password 1 1 -RTCIceParameters +CredentialCreationOptions - password -dfn -urlpattern -urlpattern +dict-member +credential-management-1 +credential-management 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-password +https://w3c.github.io/webappsec-credential-management/#dom-credentialrequestoptions-password 1 1 -constructor string parser/state +CredentialRequestOptions - password attribute -urlpattern -urlpattern +credential-management-1 +credential-management 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-password +https://w3c.github.io/webappsec-credential-management/#dom-passwordcredential-password 1 1 -URLPattern +PasswordCredential - password dict-member -urlpattern -urlpattern +credential-management-1 +credential-management 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-password +https://w3c.github.io/webappsec-credential-management/#dom-passwordcredentialdata-password 1 1 -URLPatternInit +PasswordCredentialData - password dict-member -urlpattern -urlpattern +webrtc +webrtc 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-password +https://w3c.github.io/webrtc-pc/#dom-rtciceparameters-password 1 1 -URLPatternResult +RTCIceParameters - password const @@ -9928,17 +11806,6 @@ https://www.w3.org/TR/credential-management-1/#dom-passwordcredentialdata-passwo PasswordCredentialData - password -enum-value -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dom-rtcicecredentialtype-password -1 -1 -RTCIceCredentialType -- -password dict-member webrtc webrtc @@ -9968,10 +11835,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-password-component +https://urlpattern.spec.whatwg.org/#url-pattern-password-component 1 -URLPattern +URL pattern - past names map dfn @@ -9995,76 +11862,172 @@ https://fs.spec.whatwg.org/#filesystemdirectoryhandle-iterator-past-results FileSystemDirectoryHandle-iterator - paste -dfn +event clipboard-apis clipboard-apis 1 current -https://w3c.github.io/clipboard-apis/#paste - +https://w3c.github.io/clipboard-apis/#eventdef-globaleventhandlers-paste 1 +1 +GlobalEventHandlers - paste -dfn +event clipboard-apis clipboard-apis 1 snapshot -https://www.w3.org/TR/clipboard-apis/#paste +https://www.w3.org/TR/clipboard-apis/#eventdef-documentandelementeventhandlers-paste +1 +1 +DocumentAndElementEventHandlers +- +patch application algorithm +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#patch-application-algorithm + +1 +- +patch application algorithm +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#patch-application-algorithm + +1 +- +patch format +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#patch-format + +1 +- +patch format +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#patch-format 1 - -patch +patch map dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patchresponse-patch +https://w3c.github.io/IFT/Overview.html#patch-map + +1 +- +patch map +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#patch-map 1 -PatchResponse - -patch request header +patch map entries dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patch-request-header +https://w3c.github.io/IFT/Overview.html#patch-map-entries + 1 +- +patch map entries +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#patch-map-entries + 1 - -patch_format +patchencoding dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patchresponse-patch_format +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-patchencoding 1 -PatchResponse +Format 1 Patch Map - -patchrequest +patchencoding dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patchrequest +https://w3c.github.io/IFT/Overview.html#mapping-entry-patchencoding + +1 +Mapping Entry +- +patchencoding +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-patchencoding + +1 +Format 1 Patch Map +- +patchencoding +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#mapping-entry-patchencoding 1 +Mapping Entry - -patchresponse +patches dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#patchresponse +https://w3c.github.io/IFT/Overview.html#per-table-brotli-patch-patches + +1 +Per table brotli patch +- +patches +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#per-table-brotli-patch-patches 1 +Per table brotli patch - patent advisory group dfn @@ -10109,6 +12072,17 @@ Event - path dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#locator-path +1 +1 +file system locator +- +path +dfn html html 1 @@ -10391,17 +12365,6 @@ https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-path - path() function -motion-1 -motion -1 -current -https://drafts.fxtf.org/motion-1/#funcdef-offsetpath-pathfunc-path -1 -1 -offsetpath-pathfunc -- -path() -function css-shapes-1 css-shapes 1 @@ -10574,7 +12537,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-pathname +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-pathname 1 1 constructor string parser/state @@ -10585,7 +12548,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-pathname +https://urlpattern.spec.whatwg.org/#dom-urlpattern-pathname 1 1 URLPattern @@ -10596,7 +12559,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-pathname +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-pathname 1 1 URLPatternInit @@ -10607,7 +12570,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-pathname +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-pathname 1 1 URLPatternResult @@ -10618,10 +12581,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-pathname-component +https://urlpattern.spec.whatwg.org/#url-pattern-pathname-component 1 -URLPattern +URL pattern - pathname options dfn @@ -10629,7 +12592,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pathname-options +https://urlpattern.spec.whatwg.org/#pathname-options 1 - @@ -10701,7 +12664,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser +https://urlpattern.spec.whatwg.org/#pattern-parser 1 - @@ -10711,7 +12674,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#component-pattern-string +https://urlpattern.spec.whatwg.org/#component-pattern-string 1 component @@ -10722,7 +12685,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-string +https://urlpattern.spec.whatwg.org/#pattern-string 1 - @@ -10955,6 +12918,26 @@ https://wicg.github.io/speech-api/#eventdef-speechsynthesisutterance-pause SpeechSynthesisUtterance - pause +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-pause +1 +1 +- +pause +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-pause +1 +1 +- +pause dfn css22 css @@ -11026,6 +13009,17 @@ https://www.w3.org/TR/web-animations-1/#pause-an-animation 1 - +pause duration +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-pause-duration + +1 +script timing info +- pause() method web-animations-1 @@ -11103,6 +13097,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-pause-after 1 - pause-after +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-pause-after +1 +1 +- +pause-after +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-pause-after +1 +1 +- +pause-after dfn css22 css @@ -11133,6 +13147,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-pause-before 1 - pause-before +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-pause-before +1 +1 +- +pause-before +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-pause-before +1 +1 +- +pause-before dfn css22 css @@ -11168,11 +13202,22 @@ dict-member webrtc-stats webrtc-stats 1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-pausecount +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-pausecount +1 +1 +RTCInboundRtpStreamStats +- +pauseDuration +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-pauseduration 1 1 -RTCInboundRtpStreamStats +PerformanceScriptTiming - pauseOnExit attribute @@ -11197,6 +13242,17 @@ https://drafts.csswg.org/css-animations-1/#valdef-animation-play-state-paused animation-play-state - paused +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-paused +1 +1 +AnimationPlayState +- +paused dfn web-animations-1 web-animations @@ -11284,6 +13340,17 @@ https://www.w3.org/TR/mediastream-recording/#dom-recordingstate-paused 1 RecordingState - +paused +dfn +web-animations-1 +web-animations +1 +snapshot +https://www.w3.org/TR/web-animations-1/#play-state-paused +1 +1 +play state +- paused flag dfn background-fetch @@ -11315,13 +13382,23 @@ https://html.spec.whatwg.org/multipage/media.html#paused-for-user-interaction 1 - -paused play state +pausing all input sources dfn -web-animations-1 -web-animations +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#pausing-all-input-sources + +1 +- +pausing all input sources +dfn +mediasession +mediasession 1 snapshot -https://www.w3.org/TR/web-animations-1/#paused-play-state +https://www.w3.org/TR/mediasession/#pausing-all-input-sources 1 - @@ -11488,6 +13565,17 @@ https://w3c.github.io/payment-handler/#dfn-payer 1 - payer +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentvalidationerrors-payer +1 +1 +PaymentValidationErrors +- +payer dfn payment-handler payment-handler @@ -11495,6 +13583,57 @@ payment-handler snapshot https://www.w3.org/TR/payment-handler/#dfn-payer +1 +- +payer +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-payer +1 +1 +PaymentValidationErrors +- +payer detail changed algorithm +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-payer-detail-changed-algorithm + +1 +- +payer detail changed algorithm +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-payer-detail-changed-algorithm + +1 +- +payer details +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-payer-details + +1 +- +payer details +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-payer-details + 1 - payerEmail @@ -11520,6 +13659,17 @@ https://w3c.github.io/payment-handler/#dom-paymenthandlerresponse-payeremail PaymentHandlerResponse - payerEmail +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentresponse-payeremail +1 +1 +PaymentResponse +- +payerEmail enum-value payment-handler payment-handler @@ -11541,6 +13691,39 @@ https://www.w3.org/TR/payment-handler/#dom-paymenthandlerresponse-payeremail 1 PaymentHandlerResponse - +payerEmail +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse-payeremail +1 +1 +PaymentResponse +- +payerErrors +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentdetailsupdate-payererrors +1 +1 +PaymentDetailsUpdate +- +payerErrors +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-payererrors +1 +1 +PaymentDetailsUpdate +- payerName enum-value payment-handler @@ -11564,6 +13747,17 @@ https://w3c.github.io/payment-handler/#dom-paymenthandlerresponse-payername PaymentHandlerResponse - payerName +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentresponse-payername +1 +1 +PaymentResponse +- +payerName enum-value payment-handler payment-handler @@ -11585,6 +13779,17 @@ https://www.w3.org/TR/payment-handler/#dom-paymenthandlerresponse-payername 1 PaymentHandlerResponse - +payerName +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse-payername +1 +1 +PaymentResponse +- payerPhone enum-value payment-handler @@ -11608,6 +13813,17 @@ https://w3c.github.io/payment-handler/#dom-paymenthandlerresponse-payerphone PaymentHandlerResponse - payerPhone +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentresponse-payerphone +1 +1 +PaymentResponse +- +payerPhone enum-value payment-handler payment-handler @@ -11628,6 +13844,37 @@ https://www.w3.org/TR/payment-handler/#dom-paymenthandlerresponse-payerphone 1 1 PaymentHandlerResponse +- +payerPhone +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse-payerphone +1 +1 +PaymentResponse +- +payerdetailchange +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-payerdetailchange + + +- +payerdetailchange +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-payerdetailchange + + - payload field dfn @@ -11737,50 +13984,6 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-payloadtype 1 RTCRtpCodecParameters - -payloadtype -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframemetadata-payloadtype - -1 -RTCEncodedAudioFrameMetadata -- -payloadtype -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframemetadata-payloadtype - -1 -RTCEncodedVideoFrameMetadata -- -payloadtype -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframemetadata-payloadtype - -1 -RTCEncodedAudioFrameMetadata -- -payloadtype -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframemetadata-payloadtype - -1 -RTCEncodedVideoFrameMetadata -- payment dict-member secure-payment-confirmation @@ -11811,16 +14014,6 @@ digital-goods current https://wicg.github.io/digital-goods/#payment -1 -- -payment -dfn -payment-request-1.1 -payment-request -1 -snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-permission - 1 - payment @@ -11877,7 +14070,7 @@ https://w3c.github.io/payment-handler/#dfn-payment-handler - payment handler dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -11897,11 +14090,11 @@ https://www.w3.org/TR/payment-handler/#dfn-payment-handler - payment handler dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-handler +https://www.w3.org/TR/payment-request/#dfn-payment-handler 1 - @@ -11927,7 +14120,7 @@ https://www.w3.org/TR/payment-handler/#dfn-payment-handler-window - payment method dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -11937,17 +14130,17 @@ https://w3c.github.io/payment-request/#dfn-payment-method - payment method dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method +https://www.w3.org/TR/payment-request/#dfn-payment-method - payment method changed algorithm dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -11958,11 +14151,11 @@ payment handler - payment method changed algorithm dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-changed-algorithm +https://www.w3.org/TR/payment-request/#dfn-payment-method-changed-algorithm 1 1 payment handler @@ -12009,7 +14202,7 @@ https://www.w3.org/TR/payment-method-manifest/#payment-method-manifest - payment method provider dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12019,17 +14212,17 @@ https://w3c.github.io/payment-request/#dfn-payment-method-provider - payment method provider dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-provider +https://www.w3.org/TR/payment-request/#dfn-payment-method-provider - payment request is showing dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12039,27 +14232,17 @@ https://w3c.github.io/payment-request/#dfn-payment-request-is-showing - payment request is showing dfn -payment-request-1.1 payment-request -1 -snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-request-is-showing - -1 -- -payment-permission -dfn -payment-request-1.1 payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-permission +https://www.w3.org/TR/payment-request/#dfn-payment-request-is-showing 1 - payment-relevant browsing context dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12069,11 +14252,11 @@ https://w3c.github.io/payment-request/#dfn-payment-relevant-browsing-context - payment-relevant browsing context dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-payment-relevant-browsing-context +https://www.w3.org/TR/payment-request/#dfn-payment-relevant-browsing-context 1 - @@ -12101,7 +14284,7 @@ ServiceWorkerRegistration - paymentMethod dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -12112,11 +14295,11 @@ PaymentValidationErrors - paymentMethod dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-paymentmethod +https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-paymentmethod 1 1 PaymentValidationErrors @@ -12134,7 +14317,7 @@ PaymentRequestDetailsUpdate - paymentMethodErrors dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -12156,11 +14339,11 @@ PaymentRequestDetailsUpdate - paymentMethodErrors dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-paymentmethoderrors +https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-paymentmethoderrors 1 1 PaymentDetailsUpdate @@ -12299,7 +14482,7 @@ PaymentRequestEventInit - paymentmethodchange dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12309,17 +14492,17 @@ https://w3c.github.io/payment-request/#dfn-paymentmethodchange - paymentmethodchange dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-paymentmethodchange +https://www.w3.org/TR/payment-request/#dfn-paymentmethodchange - paymentrequest updated algorithm dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12329,17 +14512,17 @@ https://w3c.github.io/payment-request/#dfn-paymentrequest-updated-algorithm - paymentrequest updated algorithm dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-updated-algorithm +https://www.w3.org/TR/payment-request/#dfn-paymentrequest-updated-algorithm 1 - -paymentrequest(methoddata, details) +paymentrequest(methoddata, details, options) dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12347,19 +14530,19 @@ https://w3c.github.io/payment-request/#dfn-paymentrequest-paymentrequest 1 - -paymentrequest(methoddata, details) +paymentrequest(methoddata, details, options) dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-paymentrequest +https://www.w3.org/TR/payment-request/#dfn-paymentrequest-paymentrequest 1 - paymentrequest.paymentrequest() dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -12369,11 +14552,11 @@ https://w3c.github.io/payment-request/#dfn-paymentrequest-paymentrequest - paymentrequest.paymentrequest() dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-paymentrequest +https://www.w3.org/TR/payment-request/#dfn-paymentrequest-paymentrequest 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pb.data b/bikeshed/spec-data/readonly/anchors/anchors-pb.data index 81ee2f643d..244800302d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pb.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pb.data @@ -15,6 +15,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-Pbkdf2Params -1 + 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pe.data b/bikeshed/spec-data/readonly/anchors/anchors-pe.data index 3221bff0a3..8e97fd09e1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pe.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pe.data @@ -86,6 +86,17 @@ https://www.w3.org/TR/webtransport/#dom-webtransportreliabilitymode-pending 1 WebTransportReliabilityMode - +"per-character" +enum-value +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognitiontype-per-character +1 +1 +HandwritingRecognitionType +- "percent" enum-value css-typed-om-1 @@ -226,17 +237,6 @@ https://drafts.csswg.org/css-values-4/#percentage-value - <percentage> value -css-values-4 -css-values -4 -current -https://drafts.csswg.org/css-values-4/#valdef-mix-percentage -1 -1 -mix() -- -<percentage> -value css22 css 1 @@ -282,6 +282,26 @@ https://drafts.csswg.org/css2/#value-def-percentage 1 - <percentage> +type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-percentage +1 +1 +- +<percentage> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-percentage +1 +1 +- +<percentage> value css-position-3 css-position @@ -344,24 +364,13 @@ https://www.w3.org/TR/css-values-4/#percentage-value 1 1 - -<percentage> -value -css-values-4 -css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#valdef-mix-percentage -1 -1 -mix() -- PERMISSION_DENIED const geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationpositionerror-permission_denied +https://w3c.github.io/geolocation/#dom-geolocationpositionerror-permission_denied 1 1 GeolocationPositionError @@ -387,6 +396,16 @@ https://streams.spec.whatwg.org/#peek-queue-value 1 1 - +PerformEval +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/global-object.html#sec-performeval +1 +1 +- PerformEval(x, strictCaller, direct) abstract-op ecmascript @@ -397,6 +416,16 @@ https://tc39.es/ecma262/multipage/global-object.html#sec-performeval 1 1 - +PerformPromiseAll +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpromiseall +1 +1 +- PerformPromiseAll(iteratorRecord, constructor, resultCapability, promiseResolve) abstract-op ecmascript @@ -407,6 +436,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpr 1 1 - +PerformPromiseAllSettled +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpromiseallsettled +1 +1 +- PerformPromiseAllSettled(iteratorRecord, constructor, resultCapability, promiseResolve) abstract-op ecmascript @@ -417,6 +456,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpr 1 1 - +PerformPromiseAny +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpromiseany +1 +1 +- PerformPromiseAny(iteratorRecord, constructor, resultCapability, promiseResolve) abstract-op ecmascript @@ -427,6 +476,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpr 1 1 - +PerformPromiseRace +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpromiserace +1 +1 +- PerformPromiseRace(iteratorRecord, constructor, resultCapability, promiseResolve) abstract-op ecmascript @@ -437,6 +496,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpr 1 1 - +PerformPromiseThen +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-performpromisethen +1 +1 +- PerformPromiseThen(promise, onFulfilled, onRejected, resultCapability) abstract-op ecmascript @@ -523,7 +592,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#performanceeventtiming +https://w3c.github.io/event-timing/#performanceeventtiming 1 1 - @@ -537,6 +606,16 @@ https://www.w3.org/TR/event-timing/#performanceeventtiming 1 1 - +PerformanceLongAnimationFrameTiming +interface +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#performancelonganimationframetiming +1 +1 +- PerformanceLongTaskTiming interface longtasks-1 @@ -817,6 +896,16 @@ https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming 1 1 - +PerformanceScriptTiming +interface +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#performancescripttiming +1 +1 +- PerformanceServerTiming interface server-timing @@ -1142,6 +1231,28 @@ https://www.w3.org/TR/permissions-policy-1/#permissionspolicyviolationreportbody 1 1 - +[[PenaltyDuration]] +attribute +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-penaltyduration + +1 +PressureObserver +- +[[PenaltyDuration]] +attribute +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-penaltyduration + +1 +PressureObserver +- [[PendingLocalDescription]] attribute webrtc @@ -1160,8 +1271,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-pendinglocaldescription + 1 -1 +RTCPeerConnection - [[PendingMakeReadOnly]] attribute @@ -1218,17 +1330,6 @@ https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-pendingoperation- 1 WebTransportSendStream - -[[PendingReadyPromises]] -attribute -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-pendingreadypromises -1 -1 -FontFaceSet -- [[PendingRemoteDescription]] attribute webrtc @@ -1247,8 +1348,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-pendingremotedescription + 1 -1 +RTCPeerConnection - [[PendingWrite]] attribute @@ -1567,6 +1669,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-peachpuff 1 1 <color> +<named-color> - peachpuff dfn @@ -1588,6 +1691,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-peachpuff 1 1 <color> +<named-color> - peak brightness dfn @@ -1664,6 +1768,17 @@ https://encoding.spec.whatwg.org/#i-o-queue-peek 1 I/O queue - +peek +dfn +infra +infra +1 +current +https://infra.spec.whatwg.org/#stack-peek +1 +1 +stack +- peepholeWeight dict-member webnn @@ -1840,7 +1955,7 @@ Animation - pending dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -1850,6 +1965,17 @@ https://w3c.github.io/payment-request/#dom-paymentitem-pending PaymentItem - pending +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network-reporting-endpoint-pending + +1 +network reporting endpoint +- +pending dict-member web-locks web-locks @@ -1904,11 +2030,11 @@ SpeechSynthesis - pending dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-pending +https://www.w3.org/TR/payment-request/#dom-paymentitem-pending 1 1 PaymentItem @@ -1936,22 +2062,23 @@ https://www.w3.org/TR/web-locks/#dom-lockmanagersnapshot-pending LockManagerSnapshot - pending -dfn -webrtc-identity -webrtc-identity +enum-value +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webrtc-identity/#dfn-pending - +https://www.w3.org/TR/webmidi/#dom-midiportconnectionstate-pending +1 1 +MIDIPortConnectionState - pending dfn -webrtc -webrtc +webrtc-identity +webrtc-identity 1 snapshot -https://www.w3.org/TR/webrtc/#dfn-pending +https://www.w3.org/TR/webrtc-identity/#dfn-pending 1 - @@ -1982,8 +2109,41 @@ web-animations 1 snapshot https://www.w3.org/TR/web-animations-1/#pending-animation-event-queue +1 +1 +- +pending config mapping +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-pending-config-mapping 1 +fenced frame config mapping +- +pending entries +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageiterator-pending-entries + +1 +SharedStorageIterator +- +pending event +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-pending-event +1 +1 +fencedframetype - pending external speculation rule resource dfn @@ -2001,7 +2161,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#pending-first-pointer-down +https://w3c.github.io/event-timing/#pending-first-pointer-down 1 - @@ -2021,7 +2181,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser-pending-fixed-value +https://urlpattern.spec.whatwg.org/#pattern-parser-pending-fixed-value 1 pattern parser @@ -2037,6 +2197,26 @@ https://encoding.spec.whatwg.org/#textencoderstream-pending-high-surrogate 1 TextEncoderStream - +pending image record +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#pending-image-record + +1 +- +pending image record +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#pending-image-record + +1 +- pending immersive session dfn webxr @@ -2083,7 +2263,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#pending-key-downs +https://w3c.github.io/event-timing/#pending-key-downs 1 - @@ -2128,6 +2308,17 @@ https://drafts.csswg.org/css-font-loading-3/#fontfaceset-pending-on-the-environm 1 FontFaceSet - +pending on the environment +dfn +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfaceset-pending-on-the-environment +1 +1 +FontFaceSet +- pending parsing-blocking script dfn html @@ -2186,6 +2377,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#pending-play-task +1 +- +pending play task +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#pending-play-task + 1 - pending playback rate @@ -2234,7 +2435,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#pending-pointer-downs +https://w3c.github.io/event-timing/#pending-pointer-downs 1 - @@ -2268,6 +2469,17 @@ https://www.w3.org/TR/webaudio/#pending-processor-construction-data 1 - +pending promise count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-pending-promise-count + +1 +auction config +- pending promises count dfn service-workers @@ -2320,6 +2532,27 @@ https://html.spec.whatwg.org/multipage/images.html#pending-request 1 - +pending resource-timing start time +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/iframe-embed-object.html#iframe-pending-resource-timing-start-time + +1 +- +pending script +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-pending-script + +1 +frame timing info +- pending scroll event targets dfn cssom-view-1 @@ -2352,24 +2585,99 @@ https://drafts.csswg.org/cssom-view-1/#document-pending-scrollend-event-targets 1 Document - -pending table character tokens +pending scrollsnapchange event targets dfn -html -html -1 +css-scroll-snap-2 +css-scroll-snap +2 current -https://html.spec.whatwg.org/multipage/parsing.html#concept-pending-table-char-tokens - +https://drafts.csswg.org/css-scroll-snap-2/#document-pending-scrollsnapchange-event-targets 1 +1 +Document - -pending text track change notification flag +pending scrollsnapchange event targets dfn -html -html -1 +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#document-pending-scrollsnapchange-event-targets +1 +1 +Document +- +pending scrollsnapchanging event targets +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#document-pending-scrollsnapchanging-event-targets +1 +1 +Document +- +pending scrollsnapchanging event targets +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#document-pending-scrollsnapchanging-event-targets +1 +1 +Document +- +pending shared storage budget debit +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#pending-shared-storage-budget-debit + +1 +- +pending table character tokens +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/parsing.html#concept-pending-table-char-tokens + +1 +- +pending text directives +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#document-pending-text-directives + +1 +Document +- +pending text track change notification flag +dfn +html +html +1 current https://html.spec.whatwg.org/multipage/media.html#pending-text-track-change-notification-flag +1 +- +pending top layer removals +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#pending-top-layer-removals +1 1 - pending write tuple @@ -2456,6 +2764,317 @@ https://www.w3.org/TR/webrtc/#dom-peerconnection-pendingremotedesc 1 RTCPeerConnection - +pendingdisposition +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-pendingdisposition + +1 +- +pendingexception +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-pendingexception + +1 +- +per buyer bid generator +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#per-buyer-bid-generator + +1 +- +per buyer cumulative timeouts +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-cumulative-timeouts + +1 +auction config +- +per buyer currencies +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-currencies + +1 +auction config +- +per buyer experiment group ids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-experiment-group-ids + +1 +auction config +- +per buyer group limits +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-group-limits + +1 +auction config +- +per buyer multi-bid limits +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-multi-bid-limits + +1 +auction config +- +per buyer priority signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-priority-signals + +1 +auction config +- +per buyer real time reporting config +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-real-time-reporting-config + +1 +auction config +- +per buyer signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-signals + +1 +auction config +- +per buyer signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#direct-from-seller-signals-per-buyer-signals + +1 +direct from seller signals +- +per buyer timeouts +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-per-buyer-timeouts + +1 +auction config +- +per signals url bid generator +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#per-signals-url-bid-generator + +1 +- +per table brotli patch +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#per-table-brotli-patch + +1 +- +per table brotli patch +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#per-table-brotli-patch + +1 +- +per-bid or seller on event contribution cache +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-per-bid-or-seller-on-event-contribution-cache + +1 +auction config +- +per-type virtual sensor metadata +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#per-type-virtual-sensor-metadata +1 +1 +- +per-type virtual sensor metadata +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#per-type-virtual-sensor-metadata +1 +1 +- +perBuyerCumulativeTimeouts +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyercumulativetimeouts +1 +1 +AuctionAdConfig +- +perBuyerCurrencies +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyercurrencies +1 +1 +AuctionAdConfig +- +perBuyerExperimentGroupIds +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyerexperimentgroupids +1 +1 +AuctionAdConfig +- +perBuyerGroupLimits +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyergrouplimits +1 +1 +AuctionAdConfig +- +perBuyerMultiBidLimits +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyermultibidlimits +1 +1 +AuctionAdConfig +- +perBuyerPrioritySignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyerprioritysignals +1 +1 +AuctionAdConfig +- +perBuyerRealTimeReportingConfig +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyerrealtimereportingconfig +1 +1 +AuctionAdConfig +- +perBuyerSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyersignals +1 +1 +AuctionAdConfig +- +perBuyerSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-directfromsellersignalsforbuyer-perbuyersignals +1 +1 +DirectFromSellerSignalsForBuyer +- +perBuyerTimeouts +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-perbuyertimeouts +1 +1 +AuctionAdConfig +- perceivable dfn wai-aria-1.2 @@ -2468,13 +3087,13 @@ https://w3c.github.io/aria/#dfn-perceivable - perceivable dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-perceivable - +https://w3c.github.io/aria/#dfn-perceivable 1 + - perceivable dfn @@ -2488,22 +3107,22 @@ https://w3c.github.io/svg-aam/#dfn-perceivable - perceivable dfn -accname-1.2 -accname +wai-aria-1.2 +wai-aria 1 snapshot -https://www.w3.org/TR/accname-1.2/#dfn-perceivable +https://www.w3.org/TR/wai-aria-1.2/#dfn-perceivable + -1 - perceivable dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 snapshot -https://www.w3.org/TR/wai-aria-1.2/#dfn-perceivable - +https://www.w3.org/TR/wai-aria-1.3/#dfn-perceivable +1 - percent @@ -2518,17 +3137,6 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssnumerictype-percent CSSNumericType - percent -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-percent -1 -1 -CSSNumericBaseType -- -percent dict-member css-typed-om-1 css-typed-om @@ -2545,7 +3153,17 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn_percent-encoding +https://w3c.github.io/i18n-glossary/#dfn-percent-encoding +1 + +- +percent encoded +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-percent-encoding 1 - @@ -2555,7 +3173,17 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn_percent-encoding +https://w3c.github.io/i18n-glossary/#dfn-percent-encoding +1 + +- +percent encoding +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-percent-encoding 1 - @@ -2577,7 +3205,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-percent-hint - +1 1 CSSNumericValue - @@ -2645,6 +3273,16 @@ https://url.spec.whatwg.org/#string-percent-decode 1 string - +percent-decode a text directive term +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#percent-decode-a-text-directive-term + +1 +- percent-encode dfn url @@ -2683,7 +3321,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn_percent-encoding +https://w3c.github.io/i18n-glossary/#dfn-percent-encoding 1 - @@ -2692,8 +3330,8 @@ dfn i18n-glossary i18n-glossary 1 -current -https://w3c.github.io/i18n-glossary/#dfn_percent-encoding +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-percent-encoding 1 - @@ -2790,6 +3428,28 @@ https://www.w3.org/TR/css-tables-3/#percentage-contribution 1 - +percentage-containing +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-contain-a-percentage +1 +1 +CSS +- +percentage-containing +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-contain-a-percentage +1 +1 +CSS +- percentageBlockSize attribute css-layout-api-1 @@ -2878,13 +3538,13 @@ https://www.w3.org/TR/css-layout-api-1/#dom-layoutconstraintsoptions-percentagei 1 LayoutConstraintsOptions - -percentencodedchar +percentencodedbyte dfn scroll-to-text-fragment scroll-to-text-fragment 1 current -https://wicg.github.io/scroll-to-text-fragment/#percentencodedchar +https://wicg.github.io/scroll-to-text-fragment/#percentencodedbyte 1 - @@ -2932,11 +3592,11 @@ https://html.spec.whatwg.org/multipage/webappapis.html#perform-a-microtask-check - perform a navigation api traversal dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#perform-a-navigation-api-traversal +https://html.spec.whatwg.org/multipage/nav-history-apis.html#performing-a-navigation-api-traversal 1 - @@ -2972,6 +3632,17 @@ https://drafts.csswg.org/cssom-view-1/#perform-a-scroll - perform a scroll dfn +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#viewport-perform-a-scroll +1 +1 +viewport +- +perform a scroll +dfn webdriver2 webdriver 2 @@ -3078,6 +3749,26 @@ css-view-transitions snapshot https://www.w3.org/TR/css-view-transitions-1/#perform-pending-transition-operations +1 +- +perform shared checks +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigateevent-perform-shared-checks + +1 +- +perform storage maintenance +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#perform-storage-maintenance + 1 - perform the fetch hook @@ -3549,43 +4240,53 @@ https://webbluetoothcg.github.io/web-bluetooth/#peripheral - permanent identifier dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#permanent-identifier +https://w3c.github.io/encrypted-media/#dfn-permanent-identifier-s 1 - permanent identifier dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#permanent-identifier +https://www.w3.org/TR/encrypted-media-2/#dfn-permanent-identifier-s 1 - -permanently de-identified +permanent identifier(s) dfn -tracking-dnt -tracking-dnt -1 +encrypted-media-2 +encrypted-media +2 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-permanently-de-identified +https://w3c.github.io/encrypted-media/#dfn-permanent-identifier-s +1 +- +permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-permanent-identifier-s +1 - permanently de-identified dfn tracking-dnt tracking-dnt 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-permanently-de-identified +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-permanently-de-identified + -1 - permissible worker dfn @@ -3621,32 +4322,12 @@ NotificationPermissionCallback - permission dfn -orientation-event -orientation-event -1 -current -https://w3c.github.io/deviceorientation/#permission - -1 -- -permission -dfn permissions permissions 1 current https://w3c.github.io/permissions/#dfn-permission 1 -1 -- -permission -dfn -orientation-event -orientation-event -1 -snapshot -https://www.w3.org/TR/orientation-event/#permission - 1 - permission @@ -3865,6 +4546,17 @@ powerful feature - permission state dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-access-result-permission-state + +1 +file system access result +- +permission state +dfn permissions permissions 1 @@ -4023,6 +4715,16 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato perms-param - permissions +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-permissions + +1 +- +permissions attribute permissions permissions @@ -4045,6 +4747,16 @@ https://w3c.github.io/permissions/#dom-workernavigator-permissions WorkerNavigator - permissions +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-permissions + +1 +- +permissions attribute permissions permissions @@ -4095,6 +4807,27 @@ permissions-policy snapshot https://www.w3.org/TR/permissions-policy-1/#permissions-policy +1 +- +permissions policy state +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-permissions-policy-state + +1 +auction config +- +permissions policy state +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#permissions-policy-state + 1 - permissions policy violation reports @@ -4165,6 +4898,46 @@ permissions-policy snapshot https://www.w3.org/TR/permissions-policy-1/#permissions-policy-header 1 +1 +- +permissions-policy-report-only +http-header +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-report-only-header +1 +1 +- +permissions-policy-report-only +http-header +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#permissions-policy-report-only-header +1 +1 +- +permissions-source-expression +dfn +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#permissions-source-expression + +1 +- +permissions-source-expression +dfn +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#permissions-source-expression + 1 - permissionsPolicy @@ -4321,6 +5094,17 @@ StorageManager - persist() method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-persist +1 +1 +StorageBucket +- +persist() +method web-animations-1 web-animations 1 @@ -4331,6 +5115,17 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-persist Animation - persisted +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationreplacedstate-persisted +1 +1 +AnimationReplacedState +- +persisted attribute html html @@ -4341,6 +5136,17 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pagetransitione 1 PageTransitionEvent - +persisted +dict-member +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketoptions-persisted +1 +1 +StorageBucketOptions +- persisted replace state dfn web-animations-1 @@ -4382,6 +5188,17 @@ https://storage.spec.whatwg.org/#dom-storagemanager-persisted 1 StorageManager - +persisted() +method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-persisted +1 +1 +StorageBucket +- persistent css style sheet dfn cssom-1 @@ -4425,9 +5242,9 @@ cookie - persistent-license enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessiontype-persistent-license 1 @@ -4435,21 +5252,76 @@ https://w3c.github.io/encrypted-media/#dom-mediakeysessiontype-persistent-licens MediaKeySessionType - persistent-license -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessiontype-persistent-license +1 +1 +MediaKeySessionType +- +persistentAnchors +attribute +anchors +anchors +1 +current +https://immersive-web.github.io/anchors/#dom-xrsession-persistentanchors +1 +1 +XRSession +- +persistentDeviceId +attribute +pointerevents3 +pointerevents +3 +current +https://w3c.github.io/pointerevents/#dom-pointerevent-persistentdeviceid +1 +1 +PointerEvent +- +persistentDeviceId +dict-member +pointerevents3 +pointerevents +3 +current +https://w3c.github.io/pointerevents/#dom-pointereventinit-persistentdeviceid +1 1 +PointerEventInit +- +persistentDeviceId +attribute +pointerevents3 +pointerevents +3 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysessiontype-persistent-license - +https://www.w3.org/TR/pointerevents3/#dom-pointerevent-persistentdeviceid +1 +1 +PointerEvent +- +persistentDeviceId +dict-member +pointerevents3 +pointerevents +3 +snapshot +https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-persistentdeviceid 1 -mediakeysessiontype +1 +PointerEventInit - persistentState dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-persistentstate 1 @@ -4469,6 +5341,17 @@ MediaCapabilitiesKeySystemConfiguration - persistentState dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-persistentstate +1 +1 +MediaKeySystemConfiguration +- +persistentState +dict-member media-capabilities media-capabilities 1 @@ -4478,17 +5361,6 @@ https://www.w3.org/TR/media-capabilities/#dom-mediacapabilitieskeysystemconfigur 1 MediaCapabilitiesKeySystemConfiguration - -persistentstate -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-persistentstate - -1 -mediakeysystemconfiguration -- personalbar attribute html @@ -4509,16 +5381,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-personalization -- -personalization -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-personalization - -1 - perspective property @@ -4531,6 +5393,28 @@ https://drafts.csswg.org/css-transforms-2/#propdef-perspective 1 - perspective +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type-perspective +1 +1 +interpolation type +- +perspective +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-type-perspective +1 +1 +interpolation type +- +perspective property css-transforms-2 css-transforms @@ -4642,6 +5526,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-peru 1 1 <color> +<named-color> - peru dfn @@ -4663,6 +5548,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-peru 1 1 <color> +<named-color> - petite-caps value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ph.data b/bikeshed/spec-data/readonly/anchors/anchors-ph.data index 5eee44ce71..31af17d032 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ph.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ph.data @@ -71,22 +71,12 @@ ViewTransition - phase dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current https://w3c.github.io/network-error-logging/#dfn-phase -1 -- -phase -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#phase - 1 - phase @@ -102,21 +92,11 @@ ViewTransition - phase dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-phase - -1 -- -phase -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#phase +https://www.w3.org/TR/network-error-logging/#dfn-phase 1 - @@ -210,17 +190,7 @@ IIRFilterNode/getFrequencyResponse() - phases dfn -css-view-transitions-1 -css-view-transitions -1 -current -https://drafts.csswg.org/css-view-transitions-1/#phases - -1 -- -phases -dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -230,21 +200,11 @@ https://w3c.github.io/network-error-logging/#dfn-phase - phases dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#phases - -1 -- -phases -dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-phase +https://www.w3.org/TR/network-error-logging/#dfn-phase 1 - @@ -260,6 +220,28 @@ https://w3c.github.io/contact-picker/#dom-contactaddress-phone ContactAddress - phone +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-phone +1 +1 +AddressErrors +- +phone +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-payererrors-phone +1 +1 +PayerErrors +- +phone attribute contact-picker contact-picker @@ -270,6 +252,28 @@ https://www.w3.org/TR/contact-picker/#dom-contactaddress-phone 1 ContactAddress - +phone +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-phone +1 +1 +AddressErrors +- +phone +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-payererrors-phone +1 +1 +PayerErrors +- phone number dfn contact-picker @@ -277,7 +281,7 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-phone-number - +1 1 physical address - @@ -288,7 +292,7 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-phone-number - +1 1 physical address - @@ -363,6 +367,46 @@ https://www.w3.org/TR/image-capture/#dom-imagecapture-takephoto-photosettings-ph ImageCapture/takePhoto(photoSettings) ImageCapture/takePhoto() - +phrase boundary +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#phrase-boundary + +1 +- +phrase boundary +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#phrase-boundary + +1 +- +phrase boundary detection +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#phrase-boundary-detection + +1 +- +phrase boundary detection +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#phrase-boundary-detection + +1 +- phrasing content dfn html @@ -420,7 +464,7 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address - +1 1 - physical address @@ -430,7 +474,7 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address - +1 1 - physical bottom @@ -755,11 +799,11 @@ https://www.w3.org/TR/css-writing-modes-4/#physical-top - physical unit dfn -css-values-4 +css-values-3 css-values -4 +3 current -https://drafts.csswg.org/css-values-4/#physical-unit +https://drafts.csswg.org/css-values-3/#physical-unit 1 1 - @@ -768,29 +812,29 @@ dfn css-values-4 css-values 4 -snapshot -https://www.w3.org/TR/css-values-4/#physical-unit +current +https://drafts.csswg.org/css-values-4/#physical-unit 1 1 - -physical units +physical unit dfn css-values-3 css-values 3 -current -https://drafts.csswg.org/css-values-3/#physical-units - +snapshot +https://www.w3.org/TR/css-values-3/#physical-unit +1 1 - -physical units +physical unit dfn -css-values-3 +css-values-4 css-values -3 +4 snapshot -https://www.w3.org/TR/css-values-3/#physical-units - +https://www.w3.org/TR/css-values-4/#physical-unit +1 1 - physicalMaximum diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pi.data b/bikeshed/spec-data/readonly/anchors/anchors-pi.data index 83fb83f1df..bdfa849319 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pi.data @@ -137,6 +137,66 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#selectordef-picture-in-picture 1 +1 +- +<pi/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_pi + +1 +- +<pi/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_pi + +1 +- +<piece> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_piece + +1 +- +<piece> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_piece + +1 +- +<piecewise> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_piecewise + +1 +- +<piecewise> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_piecewise + 1 - PI @@ -340,6 +400,28 @@ https://html.spec.whatwg.org/multipage/form-elements.html#concept-select-pick 1 - +pickup +enum-value +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingtype-pickup +1 +1 +PaymentShippingType +- +pickup +enum-value +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-pickup +1 +1 +PaymentShippingType +- picture dict-member fedcm @@ -352,6 +434,17 @@ https://fedidcg.github.io/FedCM/#dom-identityprovideraccount-picture IdentityProviderAccount - picture +dict-member +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identityuserinfo-picture +1 +1 +IdentityUserInfo +- +picture element html html @@ -361,6 +454,17 @@ https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element 1 1 - +picture-in-picture +value +mediaqueries-5 +mediaqueries +5 +current +https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-picture-in-picture +1 +1 +@media/display-mode +- picture-in-picture support dfn picture-in-picture @@ -648,6 +752,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-pink 1 1 <color> +<named-color> - pink dfn @@ -669,6 +774,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-pink 1 1 <color> +<named-color> - pinretries dfn @@ -1146,6 +1252,26 @@ https://wicg.github.io/speech-api/#dom-speechsynthesisutterance-pitch SpeechSynthesisUtterance - pitch +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-pitch +1 +1 +- +pitch +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-pitch +1 +1 +- +pitch dfn css22 css @@ -1156,6 +1282,26 @@ https://www.w3.org/TR/CSS22/aural.html#propdef-pitch 1 - pitch-range +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range +1 +1 +- +pitch-range +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range +1 +1 +- +pitch-range dfn css22 css @@ -1177,12 +1323,22 @@ https://drafts.csswg.org/css2/#reference-pixel - pixel dfn -png-spec -png-spec +css2 +css 1 current -https://w3c.github.io/PNG-spec/#dfn-pixel - +https://www.w3.org/TR/CSS21/syndata.html#x40 +1 +1 +- +pixel +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x40 +1 1 - pixel density descriptor @@ -1332,22 +1488,42 @@ image-rendering - pixels dfn -window-placement -window-placement +png-3 +png +3 +current +https://w3c.github.io/png/#3pixel + +1 +- +pixels +dfn +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-pixels +https://w3c.github.io/window-management/#screen-pixels 1 screen - pixels dfn -window-placement -window-placement +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3pixel + +1 +- +pixels +dfn +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-pixels +https://www.w3.org/TR/window-management/#screen-pixels 1 screen diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pk.data b/bikeshed/spec-data/readonly/anchors/anchors-pk.data index 080322eea2..ec07836166 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pk.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pk.data @@ -9,6 +9,17 @@ https://w3c.github.io/webauthn/#dom-issuing-a-credential-request-to-an-authentic 1 Issuing a credential request to an authenticator - +pkOptions +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-issuing-a-credential-request-to-an-authenticator-pkoptions +1 +1 +Issuing a credential request to an authenticator +- pkcs8 enum-value webcryptoapi diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pl.data b/bikeshed/spec-data/readonly/anchors/anchors-pl.data index 2053589bc1..6b5ea2dd84 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pl.data @@ -64,6 +64,28 @@ https://www.w3.org/TR/mediasession/#dom-mediasessionaction-play 1 MediaSessionAction - +"play-and-record" +enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessiontype-play-and-record +1 +1 +AudioSessionType +- +"playback" +enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessiontype-playback +1 +1 +AudioSessionType +- "playback" enum-value webaudio @@ -166,6 +188,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-playing 1 +1 +- +:playing +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-playing + 1 - :playing @@ -176,6 +208,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#selectordef-playing 1 +1 +- +<plus/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_plus + +1 +- +<plus/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_plus + 1 - PlaneLayout @@ -218,13 +270,44 @@ https://www.w3.org/TR/web-animations-1/#enumdef-playbackdirection 1 1 - -[[playingeffectpromise]] -dfn -gamepad-extensions -gamepad-extensions +Plugin +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/system-state.html#dom-plugin +1 +1 +- +PluginArray +interface +html +html 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-playingeffectpromise +https://html.spec.whatwg.org/multipage/system-state.html#pluginarray +1 +1 +- +[[playingEffectPromise]] +attribute +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dfn-playingeffectpromise + +1 +GamepadHapticActuator +- +[[playingEffectPromise]] +attribute +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-playingeffectpromise 1 GamepadHapticActuator @@ -280,6 +363,17 @@ https://drafts.csswg.org/css-align-3/#propdef-place-self 1 - place-self +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-place-self +1 +1 +CSSPositionTryDescriptors +- +place-self property css-align-3 css-align @@ -289,6 +383,17 @@ https://www.w3.org/TR/css-align-3/#propdef-place-self 1 1 - +placeSelf +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-placeself +1 +1 +CSSPositionTryDescriptors +- placed dfn indexeddb-3 @@ -518,6 +623,27 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#plaintext-state +1 +- +plaintext-only +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-plaintextonly +1 +1 +html-global/contenteditable +- +plaintext-only +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-plaintextonly-state + 1 - plan to navigate @@ -548,6 +674,36 @@ webcodecs snapshot https://www.w3.org/TR/webcodecs/#planar +1 +- +plane +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-plane +1 + +- +plane +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-plane +1 + +- +plane-detection +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#plane-detection + 1 - planeIndex @@ -572,6 +728,17 @@ https://www.w3.org/TR/webcodecs/#dom-audiodatacopytooptions-planeindex 1 AudioDataCopyToOptions - +planeSpace +attribute +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplane-planespace +1 +1 +XRPlane +- planned navigation dfn html @@ -822,6 +989,46 @@ compute-pressure snapshot https://www.w3.org/TR/compute-pressure/#dfn-platform-collector +1 +- +platform collector mapping +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-platform-collector-mapping + +1 +- +platform collector mapping +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-platform-collector-mapping + +1 +- +platform contribution buckets +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#platform-contribution-buckets + +1 +- +platform contribution priority weight +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#platform-contribution-priority-weight + 1 - platform credential @@ -862,26 +1069,6 @@ fido current https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#platform-key-agreement-key -1 -- -platform name -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-platform-name - -1 -- -platform name -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-platform-name - 1 - platform object @@ -1067,15 +1254,35 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#play-an-animation +1 +- +play an animation +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#play-an-animation + 1 - play effects with type dfn -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-play-effects-with-type +https://w3c.github.io/gamepad/#dfn-play-effects-with-type + +1 +- +play effects with type +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-play-effects-with-type 1 - @@ -1106,9 +1313,10 @@ web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#play-state - +https://www.w3.org/TR/web-animations-1/#animation-play-state 1 +1 +animation - play() method @@ -1154,6 +1362,17 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-play 1 Animation - +play() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationtimeline-play +1 +1 +AnimationTimeline +- play(effect) method web-animations-2 @@ -1165,6 +1384,37 @@ https://drafts.csswg.org/web-animations-2/#dom-animationtimeline-play 1 AnimationTimeline - +play(effect) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationtimeline-play +1 +1 +AnimationTimeline +- +play-during +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-play-during +1 +1 +- +play-during +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-play-during +1 +1 +- play-during dfn css22 @@ -1177,33 +1427,66 @@ https://www.w3.org/TR/CSS22/aural.html#propdef-play-during - playEffect() method -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-playeffect +https://w3c.github.io/gamepad/#dom-gamepadhapticactuator-playeffect +1 +1 +GamepadHapticActuator +- +playEffect() +method +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticactuator-playeffect 1 1 GamepadHapticActuator - playEffect(type) method -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-playeffect +https://w3c.github.io/gamepad/#dom-gamepadhapticactuator-playeffect +1 +1 +GamepadHapticActuator +- +playEffect(type) +method +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticactuator-playeffect 1 1 GamepadHapticActuator - playEffect(type, params) method -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-playeffect +https://w3c.github.io/gamepad/#dom-gamepadhapticactuator-playeffect +1 +1 +GamepadHapticActuator +- +playEffect(type, params) +method +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticactuator-playeffect 1 1 GamepadHapticActuator @@ -1252,6 +1535,16 @@ https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-playback 1 AudioContextLatencyCategory - +playback control +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#playback-control + +1 +- playback direction dfn web-animations-1 @@ -1323,6 +1616,17 @@ https://www.w3.org/TR/web-animations-1/#playback-rate 1 - +playback rate +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#animation-effect-playback-rate + +1 +animation effect +- playback volume dfn html @@ -1455,6 +1759,28 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-updateplaybackrate-playbac Animation/updatePlaybackRate(playbackRate) - playbackRate +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effecttiming-playbackrate +1 +1 +EffectTiming +- +playbackRate +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-optionaleffecttiming-playbackrate +1 +1 +OptionalEffectTiming +- +playbackRate attribute webaudio webaudio @@ -1733,16 +2059,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-plug-ins -- -plug-ins -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-plug-ins - -1 - plugin dfn @@ -1752,26 +2068,6 @@ html current https://html.spec.whatwg.org/multipage/infrastructure.html#plugin -1 -- -plugin -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/system-state.html#dom-plugin - -1 -- -pluginarray -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/system-state.html#pluginarray - 1 - plugins @@ -1826,6 +2122,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-plum 1 1 <color> +<named-color> - plum dfn @@ -1847,6 +2144,17 @@ https://www.w3.org/TR/css-color-4/#valdef-color-plum 1 1 <color> +<named-color> +- +plural rules operands record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#plural-operands-record +1 +1 - plus dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pn.data b/bikeshed/spec-data/readonly/anchors/anchors-pn.data index 2c87f6d57d..225b0780e8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pn.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pn.data @@ -1,80 +1,100 @@ png datastream dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-png-datastream +https://w3c.github.io/png/#3PNGdatastream 1 - -png decoder +png datastream dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#dfn-png-decoder +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3PNGdatastream 1 - png editor dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-png-editor +https://w3c.github.io/png/#dfn-png-editor 1 - -png encoder +png editor dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#dfn-png-encoder +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-png-editor 1 - -png file +png four-byte unsigned integer dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-png-file +https://w3c.github.io/png/#dfn-png-four-byte-unsigned-integer 1 - png four-byte unsigned integer dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-png-four-byte-unsigned-integer + 1 +- +png image +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-png-four-byte-unsigned-integer +https://w3c.github.io/png/#3PNGimage 1 - png image dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3PNGimage + 1 +- +png two-byte unsigned integer +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-png-image +https://w3c.github.io/png/#dfn-png-two-byte-unsigned-integer 1 - -png signature +png two-byte unsigned integer dfn -png-spec -png-spec -1 -current -https://w3c.github.io/PNG-spec/#dfn-png-signature +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-png-two-byte-unsigned-integer 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-po.data b/bikeshed/spec-data/readonly/anchors/anchors-po.data index 9efda6f056..b55657fb18 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-po.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-po.data @@ -64,6 +64,27 @@ https://www.w3.org/TR/css-pseudo-4/#selectordef-first-letter-postfix 1 ::first-letter - +:popover-open +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-popover-open + +1 +- +<'position-area'> +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-position-area +1 +1 +position-try-fallbacks +- <points> type svg2 @@ -114,15 +135,36 @@ https://www.w3.org/TR/css-color-4/#typedef-polar-color-space 1 1 - -<position> +<polar-color-space> type -css-backgrounds-4 -css-backgrounds -4 +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-polar-color-space +1 +1 +- +<position-area> +type +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#typedef-position-area +1 +1 +- +<position-area> +value +css-anchor-position-1 +css-anchor-position +1 current -https://drafts.csswg.org/css-backgrounds-4/#typedef-position +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-position-area 1 1 +position-area - <position> type @@ -164,13 +206,43 @@ https://www.w3.org/TR/css-values-4/#typedef-position 1 1 - -@position-fallback +<power/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_power + +1 +- +<power/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_power + +1 +- +@position-try at-rule css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#at-ruledef-position-fallback +https://drafts.csswg.org/css-anchor-position-1/#at-ruledef-position-try +1 +1 +- +@position-try +at-rule +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#at-ruledef-position-try 1 1 - @@ -180,7 +252,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationpositionerror-position_unavailable +https://w3c.github.io/geolocation/#dom-geolocationpositionerror-position_unavailable 1 1 GeolocationPositionError @@ -267,6 +339,26 @@ https://www.w3.org/TR/pointerevents3/#dom-pointereventinit 1 1 - +PointerLockOptions +dictionary +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dom-pointerlockoptions +1 +1 +- +PointerLockOptions +dictionary +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dom-pointerlockoptions +1 +1 +- PopStateEvent interface html @@ -287,13 +379,13 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#popstateeventinit 1 1 - -PopoverTargetElement +PopoverInvokerElement interface html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popovertargetelement +https://html.spec.whatwg.org/multipage/popover.html#popoverinvokerelement 1 1 - @@ -385,7 +477,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-positioncallback +https://w3c.github.io/geolocation/#dom-positioncallback 1 1 - @@ -405,7 +497,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-positionerrorcallback +https://w3c.github.io/geolocation/#dom-positionerrorcallback 1 1 - @@ -425,7 +517,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-positionoptions +https://w3c.github.io/geolocation/#dom-positionoptions 1 1 - @@ -439,6 +531,28 @@ https://www.w3.org/TR/geolocation/#dom-positionoptions 1 1 - +[[PostureOverride]] +attribute +device-posture +device-posture +1 +current +https://w3c.github.io/device-posture/#dfn-postureoverride + +1 +top-level traversable +- +[[PostureOverride]] +attribute +device-posture +device-posture +1 +snapshot +https://www.w3.org/TR/device-posture/#dfn-postureoverride + +1 +top-level traversable +- [[port to main]] attribute media-source-2 @@ -483,6 +597,17 @@ https://www.w3.org/TR/media-source-2/#dfn-port-to-worker 1 HTMLMediaElement - +[[pose]] +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-pose + +1 +Gamepad +- [[powerPreference]] attribute webnn @@ -537,6 +662,27 @@ geometry current https://drafts.fxtf.org/geometry-1/#point +1 +- +point +argument +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingstroke-addpoint-point-point +1 +1 +HandwritingStroke/addPoint(point) +- +point +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#point + 1 - point @@ -808,7 +954,7 @@ pointerevents 3 current https://w3c.github.io/pointerevents/#dfn-pointer-capture - +1 1 - pointer capture @@ -818,7 +964,7 @@ pointerevents 3 snapshot https://www.w3.org/TR/pointerevents3/#dfn-pointer-capture - +1 1 - pointer capture target override @@ -927,7 +1073,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#pointer-interaction-value-map +https://w3c.github.io/event-timing/#pointer-interaction-value-map 1 - @@ -947,7 +1093,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#pointer-is-drag-set +https://w3c.github.io/event-timing/#pointer-is-drag-set 1 - @@ -959,6 +1105,26 @@ event-timing snapshot https://www.w3.org/TR/event-timing/#pointer-is-drag-set +1 +- +pointer lock state +dfn +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dfn-pointer-lock-state + +1 +- +pointer lock state +dfn +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dfn-pointer-lock-state + 1 - pointer parameter tag @@ -1089,6 +1255,46 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-pointer-interactable-paint-tree +1 +- +pointer-lock options +dfn +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dfn-pointer-lock-options + +1 +- +pointer-lock options +dfn +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dfn-pointer-lock-options + +1 +- +pointer-lock target +dfn +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dfn-pointer-lock-target + +1 +- +pointer-lock target +dfn +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dfn-pointer-lock-target + 1 - pointerBeforeReferenceNode @@ -1234,6 +1440,28 @@ https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-pointertype 1 PointerEventInit - +pointer_composite_access +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#language_extension-pointer_composite_access + +1 +language_extension +- +pointer_composite_access +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#language_extension-pointer_composite_access + +1 +language_extension +- pointercancel event pointerevents3 @@ -1371,7 +1599,6 @@ current https://w3c.github.io/pointerlock/#dfn-pointerlockchange 1 1 -Document - pointerlockchange event @@ -1382,7 +1609,6 @@ snapshot https://www.w3.org/TR/pointerlock-2/#dfn-pointerlockchange 1 1 -Document - pointerlockerror event @@ -1393,7 +1619,6 @@ current https://w3c.github.io/pointerlock/#dfn-pointerlockerror 1 1 -Document - pointerlockerror event @@ -1404,7 +1629,6 @@ snapshot https://www.w3.org/TR/pointerlock-2/#dfn-pointerlockerror 1 1 -Document - pointermove event @@ -1641,6 +1865,17 @@ https://svgwg.org/svg2-draft/shapes.html#__svg__SVGAnimatedPoints__points SVGAnimatedPoints - points +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwritingstroke-points + +1 +HandwritingStroke +- +points element-attr svg2 svg @@ -1913,6 +2148,17 @@ https://www.w3.org/TR/trusted-types/#policies - policy dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#tokenizer-policy + +1 +tokenizer +- +policy +dfn tracking-dnt tracking-dnt 1 @@ -1934,17 +2180,6 @@ violation - policy dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#tokenizer-policy - -1 -tokenizer -- -policy -dfn csp3 csp 3 @@ -1954,19 +2189,9 @@ https://www.w3.org/TR/CSP3/#violation-policy 1 violation - -policy -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-policy - -1 -- policy cache dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -1976,11 +2201,11 @@ https://w3c.github.io/network-error-logging/#dfn-policy-cache - policy cache dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-policy-cache +https://www.w3.org/TR/network-error-logging/#dfn-policy-cache 1 - @@ -2176,7 +2401,7 @@ iframe - policy origin dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2186,32 +2411,52 @@ https://w3c.github.io/network-error-logging/#dfn-policy-origin - policy origin dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-policy-origin +https://www.w3.org/TR/network-error-logging/#dfn-policy-origin 1 - policy request headers dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current https://w3c.github.io/network-error-logging/#dfn-policy-request-headers +1 +- +policy request headers +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#dfn-policy-request-headers + 1 - policy response headers dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current https://w3c.github.io/network-error-logging/#dfn-policy-response-headers +1 +- +policy response headers +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#dfn-policy-response-headers + 1 - policy value @@ -2321,16 +2566,6 @@ https://www.w3.org/TR/trusted-types/#dom-trustedtypepolicyfactory-createpolicy-p 1 TrustedTypePolicyFactory/createPolicy(policyName, policyOptions) TrustedTypePolicyFactory/createPolicy(policyName) -- -polite peer -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-polite-peer - - - poly dfn @@ -2353,9 +2588,20 @@ https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-shape-keyword-p 1 - polygon -element -svg2 -svg +attribute +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplane-polygon +1 +1 +XRPlane +- +polygon +element +svg2 +svg 2 current https://svgwg.org/svg2-draft/shapes.html#elementdef-polygon @@ -2425,6 +2671,28 @@ https://www.w3.org/TR/SVG2/shapes.html#elementdef-polyline 1 1 - +pooling-op +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-pooling-op + +1 +MLGraphBuilder +- +pooling-op +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlgraphbuilder-pooling-op + +1 +MLGraphBuilder +- pop dfn infra @@ -2533,33 +2801,33 @@ https://html.spec.whatwg.org/multipage/popover.html#dom-popover 1 HTMLElement - -popover focusing steps +popover close watcher dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-focusing-steps +https://html.spec.whatwg.org/multipage/popover.html#popover-close-watcher 1 - -popover invoker +popover focusing steps dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-invoker +https://html.spec.whatwg.org/multipage/popover.html#popover-focusing-steps 1 - -popover invokers +popover invoker dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-invokers +https://html.spec.whatwg.org/multipage/popover.html#popover-invoker 1 - @@ -2583,23 +2851,23 @@ https://html.spec.whatwg.org/multipage/popover.html#popover-pointerdown-target 1 - -popover target attribute activation behavior +popover showing or hiding dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-target-attribute-activation-behavior +https://html.spec.whatwg.org/multipage/popover.html#popover-showing-or-hiding 1 - -popover target attributes +popover target attribute activation behavior dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#the-popover-target-attributes +https://html.spec.whatwg.org/multipage/popover.html#popover-target-attribute-activation-behavior 1 - @@ -2613,13 +2881,13 @@ https://html.spec.whatwg.org/multipage/popover.html#popover-target-element 1 - -popover toggle task +popover toggle task tracker dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task +https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-tracker 1 - @@ -2633,68 +2901,46 @@ https://html.spec.whatwg.org/multipage/popover.html#popover-visibility-state 1 1 - -popoverHideTargetElement -attribute -html -html -1 -current -https://html.spec.whatwg.org/multipage/popover.html#dom-popoverhidetargetelement -1 -1 -HTMLElement -- -popoverShowTargetElement +popoverTargetAction attribute html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#dom-popovershowtargetelement +https://html.spec.whatwg.org/multipage/popover.html#dom-popovertargetaction 1 1 HTMLElement - -popoverToggleTargetElement +popoverTargetElement attribute html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#dom-popovertoggletargetelement +https://html.spec.whatwg.org/multipage/popover.html#dom-popovertargetelement 1 1 HTMLElement - -popoverhidetarget -element-attr -html -html -1 -current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-hide-target -1 -1 -html-global -- -popovershowtarget +popovertarget element-attr html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-show-target +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertarget 1 1 html-global - -popovertoggletarget +popovertargetaction element-attr html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#attr-popover-toggle-target +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction 1 1 html-global @@ -2710,26 +2956,6 @@ https://html.spec.whatwg.org/multipage/indices.html#event-popstate 1 Window - -populate rotation matrix -dfn -orientation-sensor -orientation-sensor -1 -current -https://w3c.github.io/orientation-sensor/#populate-rotation-matrix - -1 -- -populate rotation matrix -dfn -orientation-sensor -orientation-sensor -1 -snapshot -https://www.w3.org/TR/orientation-sensor/#populate-rotation-matrix - -1 -- populate the bluetooth cache dfn web-bluetooth @@ -2768,6 +2994,16 @@ webxr snapshot https://www.w3.org/TR/webxr/#populate-the-pose +1 +- +populate with html/head/body +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/document-lifecycle.html#populate-with-html%2Fhead%2Fbody + 1 - populateMatrix(targetMatrix) @@ -2881,6 +3117,50 @@ URL - port dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-port +1 +1 +constructor string parser/state +- +port +attribute +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-port +1 +1 +URLPattern +- +port +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-port +1 +1 +URLPatternInit +- +port +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-port +1 +1 +URLPatternResult +- +port +dfn webdriver-bidi webdriver-bidi 1 @@ -3012,50 +3292,6 @@ https://webaudio.github.io/web-midi-api/#dom-midiconnectioneventinit-port MIDIConnectionEventInit - port -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-port -1 -1 -constructor string parser/state -- -port -attribute -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpattern-port -1 -1 -URLPattern -- -port -dict-member -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-port -1 -1 -URLPatternInit -- -port -dict-member -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-port -1 -1 -URLPatternResult -- -port attribute webaudio webaudio @@ -3089,6 +3325,28 @@ https://www.w3.org/TR/webaudio/#processor-construction-data-port processor construction data - port +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectionevent-port +1 +1 +MIDIConnectionEvent +- +port +dict-member +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiconnectioneventinit-port +1 +1 +MIDIConnectionEventInit +- +port dict-member webrtc-stats webrtc-stats @@ -3158,10 +3416,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-port-component +https://urlpattern.spec.whatwg.org/#url-pattern-port-component 1 -URLPattern +URL pattern - port message queue dfn @@ -3350,11 +3608,11 @@ Window - portrait value -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#valdef-container-orientation-portrait +https://drafts.csswg.org/css-conditional-5/#valdef-container-orientation-portrait 1 1 @container/orientation @@ -3425,6 +3683,17 @@ OrientationLockType - portrait value +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#valdef-container-orientation-portrait +1 +1 +@container/orientation +- +portrait +value css-contain-3 css-contain 3 @@ -3943,6 +4212,26 @@ https://w3c.github.io/webvtt/#dom-vttcue-position VTTCue - position +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-position +1 +1 +- +position +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-position +1 +1 +- +position dfn css22 css @@ -4064,14 +4353,64 @@ https://www.w3.org/TR/css-position-3/#position-box 1 - -position fallback list +position fallback origin +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#position-fallback-origin + +1 +- +position fallback origin +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#position-fallback-origin + +1 +- +position option dfn css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#position-fallback-list +https://drafts.csswg.org/css-anchor-position-1/#position-option + +1 +- +position option +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#position-option +1 +- +position options list +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#position-options-list +1 +1 +- +position options list +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#position-options-list +1 1 - position state @@ -4080,7 +4419,7 @@ mediasession mediasession 1 current -https://w3c.github.io/mediasession/#position-state%E2%91%A0 +https://w3c.github.io/mediasession/#position-state 1 - @@ -4090,7 +4429,7 @@ mediasession mediasession 1 snapshot -https://www.w3.org/TR/mediasession/#position-state%E2%91%A0 +https://www.w3.org/TR/mediasession/#position-state 1 - @@ -4105,19 +4444,141 @@ https://infra.spec.whatwg.org/#string-position-variable 1 string - -position-fallback -property +position-anchor +attribute css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#propdef-position-fallback +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-position-anchor 1 1 +CSSPositionTryDescriptors - -positionAlign -attribute -webvtt1 +position-anchor +property +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#propdef-position-anchor +1 +1 +- +position-anchor +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-position-anchor +1 +1 +- +position-area +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-position-area +1 +1 +CSSPositionTryDescriptors +- +position-area +property +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#propdef-position-area +1 +1 +- +position-area grid +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#position-area-grid +1 +1 +- +position-try +property +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try +1 +1 +- +position-try +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-position-try +1 +1 +- +position-try-fallbacks +property +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try-fallbacks +1 +1 +- +position-try-options +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-position-try-options +1 +1 +- +position-try-order +property +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try-order +1 +1 +- +position-try-order +property +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#propdef-position-try-order +1 +1 +- +position-visibility +property +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#propdef-position-visibility +1 +1 +- +positionAlign +attribute +webvtt1 webvtt 1 current @@ -4137,6 +4598,28 @@ https://www.w3.org/TR/webvtt1/#dom-vttcue-positionalign 1 VTTCue - +positionAnchor +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-positionanchor +1 +1 +CSSPositionTryDescriptors +- +positionArea +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-positionarea +1 +1 +CSSPositionTryDescriptors +- positionX attribute webaudio @@ -4413,6 +4896,26 @@ css current https://drafts.csswg.org/css2/#positioned-element +1 +- +positioned element/box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#positioned-element +1 +1 +- +positioned element/box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#positioned-element +1 1 - positioning rectangle @@ -4453,6 +4956,26 @@ css current https://drafts.csswg.org/css2/#positioning-scheme%E2%91%A0 +1 +- +positioning scheme +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x22 +1 +1 +- +positioning scheme +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x22 +1 1 - positioning scheme @@ -4473,6 +4996,70 @@ css current https://drafts.csswg.org/css2/#positioning-scheme%E2%91%A0 +1 +- +positive infinity +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-infinity +1 +1 +CSS +- +positive infinity +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-infinity +1 +1 +CSS +- +positive zero +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-signed-zero +1 +1 +CSS +- +positive zero +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-signed-zero +1 +1 +CSS +- +positive-integer +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-positive-integer + +1 +- +positive-integer +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-positive-integer + 1 - possible blocking tokens @@ -4515,16 +5102,6 @@ html current https://html.spec.whatwg.org/multipage/dnd.html#concept-platform-dropeffect-override -1 -- -possibly pending font loads -dfn -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#possibly-pending-font-loads - 1 - possibly update the key generator @@ -4567,7 +5144,8 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs- 1 1 form/method -button/method +button/formmethod +input/formmethod - post resource dfn @@ -4597,6 +5175,16 @@ css-inline snapshot https://www.w3.org/TR/css-inline-3/#post-alignment-shift +1 +- +post-connection steps +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#concept-node-post-connection-ext +1 1 - post-multiplied @@ -5058,7 +5646,7 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-postal-code - +1 1 physical address - @@ -5069,7 +5657,7 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-postal-code - +1 1 physical address - @@ -5112,6 +5700,17 @@ https://w3c.github.io/contact-picker/#dom-contactaddress-postalcode ContactAddress - postalCode +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-postalcode +1 +1 +AddressErrors +- +postalCode attribute contact-picker contact-picker @@ -5122,6 +5721,17 @@ https://www.w3.org/TR/contact-picker/#dom-contactaddress-postalcode 1 ContactAddress - +postalCode +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-postalcode +1 +1 +AddressErrors +- posted message task source dfn html @@ -5130,6 +5740,16 @@ html current https://html.spec.whatwg.org/multipage/web-messaging.html#posted-message-task-source +1 +- +posted task task source +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#posted-task-task-source + 1 - poster @@ -5155,14 +5775,15 @@ https://html.spec.whatwg.org/multipage/media.html#dom-video-poster HTMLVideoElement - poster -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-poster - 1 +1 +model - poster frame dfn @@ -5309,6 +5930,37 @@ https://www.w3.org/TR/service-workers/#fetchevent-potential-response 1 FetchEvent - +potential soft navigation task ids +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#document-potential-soft-navigation-task-ids + +1 +document +- +potential-trigger-set +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#potential-trigger-set + +1 +- +potential-trigger-set +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#potential-trigger-set + +1 +- potentialcustomelementname dfn html @@ -5366,16 +6018,17 @@ html 1 current https://html.spec.whatwg.org/multipage/media.html#potentially-playing - 1 +1 +media element - potentially process scroll behavior dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#potentially-process-scroll-behavior +https://html.spec.whatwg.org/multipage/nav-history-apis.html#potentially-process-scroll-behavior 1 - @@ -5391,11 +6044,11 @@ https://html.spec.whatwg.org/multipage/urls-and-fetching.html#potentially-render - potentially reset the focus dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#potentially-reset-the-focus +https://html.spec.whatwg.org/multipage/nav-history-apis.html#potentially-reset-the-focus 1 - @@ -5511,6 +6164,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow 1 MLGraphBuilder - +pow(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-pow +1 +1 +MLGraphBuilder +- +pow(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow +1 +1 +MLGraphBuilder +- pow(base, exponent) method ecmascript @@ -5542,6 +6217,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-powderblue 1 1 <color> +<named-color> - powderblue dfn @@ -5563,109 +6239,28 @@ https://www.w3.org/TR/css-color-4/#valdef-color-powderblue 1 1 <color> +<named-color> - -power preference -dfn -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#power-preference - -1 -- -power preference +power efficient dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#power-preference - -1 -- -power-preference-default -dfn -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#power-preference-default - -1 -- -power-preference-default -dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#power-preference-default - -1 -- -power-preference-high-performance -dfn -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#power-preference-high-performance - -1 -- -power-preference-high-performance -dfn -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#power-preference-high-performance - -1 -- -power-preference-low-power -dfn -webnn -webnn +media-capabilities +media-capabilities 1 current -https://webmachinelearning.github.io/webnn/#power-preference-low-power +https://w3c.github.io/media-capabilities/#power-efficient 1 - -power-preference-low-power +power efficient dfn -webnn -webnn +media-capabilities +media-capabilities 1 snapshot -https://www.w3.org/TR/webnn/#power-preference-low-power +https://www.w3.org/TR/media-capabilities/#power-efficient 1 - -power-supply -enum-value -compute-pressure -compute-pressure -1 -current -https://w3c.github.io/compute-pressure/#dom-pressurefactor-power-supply -1 -1 -PressureFactor -- -power-supply -enum-value -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressurefactor-power-supply -1 -1 -PressureFactor -- powerEfficient dict-member media-capabilities @@ -5776,6 +6371,17 @@ https://www.w3.org/TR/webnn/#dom-mlcontextoptions-powerpreference 1 MLContextOptions - +powered +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-powered +1 +1 +SmartCardConnectionState +- powerful feature dfn permissions diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pq.data b/bikeshed/spec-data/readonly/anchors/anchors-pq.data index 913b3a5039..bd57529c72 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pq.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pq.data @@ -54,6 +54,16 @@ https://w3c.github.io/media-capabilities/#dom-transferfunction-pq TransferFunction - pq +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-pq + +1 +- +pq enum-value webcodecs webcodecs @@ -76,6 +86,16 @@ https://www.w3.org/TR/media-capabilities/#dom-transferfunction-pq TransferFunction - pq +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-pq + +1 +- +pq enum-value webcodecs webcodecs diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pr.data b/bikeshed/spec-data/readonly/anchors/anchors-pr.data index 2b23bb67a6..45913ed3dd 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pr.data @@ -240,6 +240,27 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbcursordirection-prevunique 1 IDBCursorDirection - +"private" +enum-value +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#dom-ipaddressspace-private +1 +1 +IPAddressSpace +- +"private-network-access" +permission +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#permissiondef-private-network-access +1 +1 +- "product" enum-value css-typed-om-1 @@ -273,27 +294,27 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-product 1 CSSMathOperator - -"proximity" -enum-value -generic-sensor -generic-sensor +"prompt" +dfn +permissions +permissions 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-proximity +https://w3c.github.io/permissions/#dfn-prompt 1 1 -MockSensorType +permission - -"proximity" -enum-value -generic-sensor -generic-sensor +"prompt" +dfn +permissions +permissions 1 snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-proximity +https://www.w3.org/TR/permissions/#dfn-prompt 1 1 -MockSensorType +permission - %Promise% interface @@ -347,6 +368,36 @@ https://www.w3.org/TR/css-pseudo-4/#selectordef-first-letter-prefix 1 ::first-letter - +<predefined-polar-params> +type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-predefined-polar-params +1 +1 +- +<predefined-rectangular-params> +type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rectangular-params +1 +1 +- +<predefined-rectangular> +type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rectangular +1 +1 +- <predefined-rgb-params> type css-color-4 @@ -369,6 +420,16 @@ https://drafts.csswg.org/css-color-5/#typedef-predefined-rgb-params - <predefined-rgb-params> type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rgb-params +1 +1 +- +<predefined-rgb-params> +type css-color-4 css-color 4 @@ -409,6 +470,16 @@ https://drafts.csswg.org/css-color-5/#typedef-predefined-rgb - <predefined-rgb> type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rgb +1 +1 +- +<predefined-rgb> +type css-color-4 css-color 4 @@ -425,6 +496,86 @@ css-color snapshot https://www.w3.org/TR/css-color-5/#typedef-predefined-rgb 1 +1 +- +<primes/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_primes + +1 +- +<primes/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_primes + +1 +- +<product/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_product + +1 +- +<product/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_product + +1 +- +<progress()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-progress-fn +1 +1 +- +<progress> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-progress +1 +1 +- +<prsubset/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_prsubset + +1 +- +<prsubset/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_prsubset + 1 - @property @@ -468,6 +619,26 @@ https://html.spec.whatwg.org/multipage/canvas.html#predefinedcolorspace 1 1 - +PreferenceManager +interface +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#preferencemanager +1 +1 +- +PreferenceObject +interface +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#preferenceobject +1 +1 +- PremultiplyAlpha enum html @@ -478,23 +649,33 @@ https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#premultip 1 1 - -Prepare the script URL and text +Prepare the script text abstract-op trusted-types trusted-types 1 current -https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-prepare-the-script-url-and-text +https://w3c.github.io/trusted-types/dist/spec/#abstract-opdef-prepare-the-script-text 1 1 - -Prepare the script URL and text +Prepare the script text abstract-op trusted-types trusted-types 1 snapshot -https://www.w3.org/TR/trusted-types/#abstract-opdef-prepare-the-script-url-and-text +https://www.w3.org/TR/trusted-types/#abstract-opdef-prepare-the-script-text +1 +1 +- +PrepareForOrdinaryCall +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-prepareforordinarycall 1 1 - @@ -508,6 +689,16 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - +PrepareForTailCall +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-preparefortailcall +1 +1 +- PrepareForTailCall() abstract-op ecmascript @@ -778,26 +969,6 @@ https://www.w3.org/TR/clipboard-apis/#enumdef-presentationstyle 1 1 - -PressureFactor -enum -compute-pressure -compute-pressure -1 -current -https://w3c.github.io/compute-pressure/#dom-pressurefactor -1 -1 -- -PressureFactor -enum -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressurefactor -1 -1 -- PressureObserver interface compute-pressure @@ -938,6 +1109,16 @@ https://www.w3.org/TR/credential-management-1/#abstract-opdef-prevent-silent-acc 1 1 - +PreviousWin +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-previouswin +1 +1 +- Printer abstract-op console @@ -948,6 +1129,26 @@ https://console.spec.whatwg.org/#printer 1 1 - +PrivateAggregation +interface +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#privateaggregation +1 +1 +- +PrivateElementFind +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateelementfind +1 +1 +- PrivateElementFind(O, P) abstract-op ecmascript @@ -958,6 +1159,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateelementfin 1 1 - +PrivateFieldAdd +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privatefieldadd +1 +1 +- PrivateFieldAdd(O, P, value) abstract-op ecmascript @@ -968,6 +1179,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privatefieldadd 1 1 - +PrivateGet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateget +1 +1 +- PrivateGet(O, P) abstract-op ecmascript @@ -978,6 +1199,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateget 1 1 - +PrivateMethodOrAccessorAdd +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privatemethodoraccessoradd +1 +1 +- PrivateMethodOrAccessorAdd(O, method) abstract-op ecmascript @@ -988,6 +1219,26 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privatemethodorac 1 1 - +PrivateNetworkAccessPermissionDescriptor +dictionary +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#dictdef-privatenetworkaccesspermissiondescriptor +1 +1 +- +PrivateSet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateset +1 +1 +- PrivateSet(O, P, value) abstract-op ecmascript @@ -998,6 +1249,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateset 1 1 - +PrivateToken +dictionary +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dictdef-privatetoken +1 +1 +- Process permissions policy attributes abstract-op permissions-policy-1 @@ -1241,7 +1502,7 @@ https://html.spec.whatwg.org/multipage/webappapis.html#promiserejectioneventinit 1 1 - -PromiseResolve(C, x) +PromiseResolve abstract-op ecmascript ecmascript @@ -1251,13 +1512,13 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise-r 1 1 - -Promises -interface -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-promise +PromiseResolve(C, x) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise-resolve 1 1 - @@ -1291,23 +1552,23 @@ https://www.w3.org/TR/css-properties-values-api-1/#dictdef-propertydefinition 1 1 - -ProximityReadingValues -dictionary -proximity -proximity +ProtectedAudience +interface +turtledove +turtledove 1 current -https://w3c.github.io/proximity/#dictdef-proximityreadingvalues +https://wicg.github.io/turtledove/#protectedaudience 1 1 - -ProximityReadingValues +ProtectedAudiencePrivateAggregationConfig dictionary -proximity -proximity +private-aggregation-api +private-aggregation-api 1 -snapshot -https://www.w3.org/TR/proximity/#dictdef-proximityreadingvalues +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-protectedaudienceprivateaggregationconfig 1 1 - @@ -1396,6 +1657,16 @@ https://tc39.es/ecma262/multipage/reflection.html#sec-proxy-target-handler 1 Proxy - +ProxyCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-proxycreate +1 +1 +- ProxyCreate(target, handler) abstract-op ecmascript @@ -1413,7 +1684,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-preferredcodecs - +1 1 RTCRtpTransceiver - @@ -1424,8 +1695,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-preferredcodecs + 1 -1 +RTCRtpTransceiver - [[prefer animation]] attribute @@ -1471,49 +1743,38 @@ https://www.w3.org/TR/gamepad/#dfn-pressed 1 GamepadButton - -[[preventSilentAccess]](credential, sameOriginWithAncestors) -method -webauthn-3 -webauthn -3 -current -https://w3c.github.io/webauthn/#dom-publickeycredential-preventsilentaccess-slot -1 -1 -PublicKeyCredential -- -[[preventSilentAccess]](credential, sameOriginWithAncestors) -method -webauthn-3 -webauthn -3 -snapshot -https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-preventsilentaccess-slot -1 -1 -PublicKeyCredential -- -[[previously_returned_adapters]] +[[prevalidatedSize]] attribute webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpu-previously_returned_adapters-slot +https://gpuweb.github.io/gpuweb/#dom-gpubindgroupentry-prevalidatedsize-slot 1 1 -GPU +GPUBindGroupEntry - -[[previously_returned_adapters]] +[[prevalidatedSize]] attribute webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpu-previously_returned_adapters-slot +https://www.w3.org/TR/webgpu/#dom-gpubindgroupentry-prevalidatedsize-slot +1 +1 +GPUBindGroupEntry +- +[[preventSilentAccess]](credential, sameOriginWithAncestors) +method +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-preventsilentaccess-slot 1 1 -GPU +PublicKeyCredential - [[primaries]] attribute @@ -1687,6 +1948,46 @@ https://www.w3.org/TR/css-text-4/#valdef-white-space-pre 1 1 white-space +- +pre-base +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-pre-base +1 + +- +pre-base +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-pre-base +1 + +- +pre-base vowel +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-pre-base +1 + +- +pre-base vowel +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-pre-base +1 + - pre-configured list of rp ids authorized to receive dfn @@ -1749,6 +2050,16 @@ current https://w3c.github.io/rdf-semantics/spec/#dfn-pre-interpretation +- +pre-interpretation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-pre-interpretation + + - pre-line value @@ -1959,6 +2270,26 @@ https://www.w3.org/TR/CSP3/#directive-pre-request-check 1 directive - +pre-specified report parameters +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#pre-specified-report-parameters + +1 +- +pre-specified report parameters map +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#pre-specified-report-parameters-map + +1 +- pre-wrap value css-text-3 @@ -2079,45 +2410,65 @@ https://drafts.csswg.org/css2/#preceding 1 - -preconnect -attr-value -html -html +preceding element +dfn +css2 +css 1 current -https://html.spec.whatwg.org/multipage/links.html#link-type-preconnect +https://www.w3.org/TR/CSS21/conform.html#preceding 1 1 -link/rel - -preconnect +preceding element dfn -html -html +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#preceding +1 +1 +- +precomposed +dfn +i18n-glossary +i18n-glossary 1 current -https://html.spec.whatwg.org/multipage/links.html#preconnect +https://w3c.github.io/i18n-glossary/#dfn-precomposed +1 +- +precomposed +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-precomposed 1 + - preconnect -dfn -resource-hints -resource-hints +attr-value +html +html 1 current -https://w3c.github.io/resource-hints/#dfn-preconnect - +https://html.spec.whatwg.org/multipage/links.html#link-type-preconnect 1 +1 +link/rel - preconnect dfn -resource-hints -resource-hints -1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-preconnect +html +html 1 +current +https://html.spec.whatwg.org/multipage/links.html#preconnect + 1 - predecessor browsing context @@ -2194,6 +2545,16 @@ https://www.w3.org/TR/json-ld11-api/#dom-rdftriple-predicate 1 RdfTriple - +predicate +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-predicate + +1 +- predicted events dfn pointerevents3 @@ -2290,11 +2651,22 @@ https://wicg.github.io/media-feeds/#dfn-predominant-figure-position - preempted enum-value -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticsresult-preempted +https://w3c.github.io/gamepad/#dom-gamepadhapticsresult-preempted +1 +1 +GamepadHapticsResult +- +preempted +enum-value +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticsresult-preempted 1 1 GamepadHapticsResult @@ -2376,6 +2748,17 @@ https://wicg.github.io/prefer-current-tab/#dom-mediastreamconstraints-prefercurr 1 MediaStreamConstraints - +preferInitialWindowPlacement +dict-member +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureoptions-preferinitialwindowplacement +1 +1 +DocumentPictureInPictureOptions +- prefer_related_applications dfn appmanifest @@ -2428,6 +2811,28 @@ https://privacycg.github.io/gpc-spec/#dfn-preference 1 - +preferenceobject update steps +dfn +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#preferenceobject-preferenceobject-update-steps + +1 +PreferenceObject +- +preferences +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-navigator-preferences +1 +1 +Navigator +- preferred enum-value webauthn-3 @@ -2661,6 +3066,46 @@ snapshot https://www.w3.org/TR/css-inline-3/#preferred-line-height 1 +- +preferred native depth sensing capability +dfn +webxr-depth-sensing-1 +webxr-depth-sensing +1 +current +https://immersive-web.github.io/depth-sensing/#preferred-native-depth-sensing-capability + + +- +preferred native depth sensing capability +dfn +webxr-depth-sensing-1 +webxr-depth-sensing +1 +snapshot +https://www.w3.org/TR/webxr-depth-sensing-1/#preferred-native-depth-sensing-capability + + +- +preferred native depth sensing format +dfn +webxr-depth-sensing-1 +webxr-depth-sensing +1 +current +https://immersive-web.github.io/depth-sensing/#preferred-native-depth-sensing-format + + +- +preferred native depth sensing format +dfn +webxr-depth-sensing-1 +webxr-depth-sensing +1 +snapshot +https://www.w3.org/TR/webxr-depth-sensing-1/#preferred-native-depth-sensing-format + + - preferred order dfn @@ -2682,6 +3127,17 @@ https://www.w3.org/TR/cssom-1/#concept-shorthands-preferred-order 1 1 - +preferred platform +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#registration-info-preferred-platform + +1 +registration info +- preferred resolution dfn css-images-4 @@ -2762,6 +3218,17 @@ https://www.w3.org/TR/css-sizing-3/#width 1 1 - +preferredProtocols +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectoptions-preferredprotocols +1 +1 +SmartCardConnectOptions +- preferredReflectionFormat attribute webxr-lighting-estimation-1 @@ -2918,16 +3385,6 @@ link/rel - prefetch dfn -resource-hints -resource-hints -1 -current -https://w3c.github.io/resource-hints/#dfn-prefetch - -1 -- -prefetch -dfn prefetch prefetch 1 @@ -2936,16 +3393,6 @@ https://wicg.github.io/nav-speculation/prefetch.html#prefetch 1 1 - -prefetch -dfn -resource-hints -resource-hints -1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-prefetch -1 -1 -- prefetch candidate dfn speculation-rules @@ -3142,6 +3589,17 @@ byte sequence - prefix dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#part-prefix + +1 +part +- +prefix +dfn dom-parsing dom-parsing 1 @@ -3166,21 +3624,10 @@ scroll-to-text-fragment scroll-to-text-fragment 1 current -https://wicg.github.io/scroll-to-text-fragment/#parsedtextdirective-prefix - -1 -ParsedTextDirective -- -prefix -dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#part-prefix +https://wicg.github.io/scroll-to-text-fragment/#text-directive-prefix 1 -part +text directive - prefix descriptor @@ -3231,7 +3678,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#options-prefix-code-point +https://urlpattern.spec.whatwg.org/#options-prefix-code-point 1 options @@ -3315,6 +3762,26 @@ snapshot https://www.w3.org/TR/css-2023/#vendor-prefix 1 1 +- +prefixed name +dfn +rdf12-turtle +rdf-turtle +1 +current +https://w3c.github.io/rdf-turtle/spec/#dfn-prefixed-name + + +- +prefixed name +dfn +rdf12-turtle +rdf-turtle +1 +snapshot +https://www.w3.org/TR/rdf12-turtle/#dfn-prefixed-name + + - preload attr-value @@ -3475,10 +3942,54 @@ https://fetch.spec.whatwg.org/#fetch-params-preloaded-response-candidate 1 fetch params - -prelude -argument -css-parser-api -css-parser-api +prelu(input, slope) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-prelu +1 +1 +MLGraphBuilder +- +prelu(input, slope) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu +1 +1 +MLGraphBuilder +- +prelu(input, slope, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-prelu +1 +1 +MLGraphBuilder +- +prelu(input, slope, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu +1 +1 +MLGraphBuilder +- +prelude +argument +css-parser-api +css-parser-api 1 current https://wicg.github.io/css-parser-api/#dom-cssparseratrule-cssparseratrule-name-prelude-body-prelude @@ -3772,17 +4283,6 @@ https://www.w3.org/TR/miniapp-packaging/#dfn-preparing-the-platform-runtime - prepend dfn -encoding -encoding -1 -current -https://encoding.spec.whatwg.org/#concept-stream-prepend - -1 -I/O queue -- -prepend -dfn infra infra 1 @@ -3825,6 +4325,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-prepend 1 GroupEffect - +prepend() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-prepend +1 +1 +GroupEffect +- prepend(...effects) method web-animations-2 @@ -3836,6 +4347,17 @@ https://drafts.csswg.org/web-animations-2/#dom-groupeffect-prepend 1 GroupEffect - +prepend(...effects) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-prepend +1 +1 +GroupEffect +- prepend(...nodes) method dom @@ -3848,67 +4370,68 @@ https://dom.spec.whatwg.org/#dom-parentnode-prepend ParentNode - prerender -attr-value -html -html -1 +enum-value +navigation-timing-2 +navigation-timing +2 current -https://html.spec.whatwg.org/multipage/links.html#link-type-prerender +https://w3c.github.io/navigation-timing/#dom-navigationtimingtype-prerender 1 1 -link/rel +NavigationTimingType - prerender enum-value navigation-timing-2 navigation-timing 2 -current -https://w3c.github.io/navigation-timing/#dom-navigationtimingtype-prerender +snapshot +https://www.w3.org/TR/navigation-timing-2/#dom-navigationtimingtype-prerender 1 1 NavigationTimingType - -prerender +prerender candidate dfn -resource-hints -resource-hints +speculation-rules +speculation-rules 1 current -https://w3c.github.io/resource-hints/#dfn-prerender +https://wicg.github.io/nav-speculation/speculation-rules.html#prerender-candidate 1 - -prerender -enum-value -navigation-timing-2 -navigation-timing -2 -snapshot -https://www.w3.org/TR/navigation-timing-2/#dom-navigationtimingtype-prerender +prerender initial response search variance +dfn +prerendering-revamped +prerendering-revamped 1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerendering-traversable-prerender-initial-response-search-variance + 1 -NavigationTimingType +prerendering traversable - -prerender +prerender record dfn -resource-hints -resource-hints +prerendering-revamped +prerendering-revamped 1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-prerender +current +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record 1 1 - -prerender candidate +prerender records dfn -speculation-rules -speculation-rules +prerendering-revamped +prerendering-revamped 1 current -https://wicg.github.io/nav-speculation/speculation-rules.html#prerender-candidate - +https://wicg.github.io/nav-speculation/prerendering.html#document-prerender-records 1 +1 +Document - prerender rules dfn @@ -3959,20 +4482,20 @@ prerendering-revamped prerendering-revamped 1 current -https://wicg.github.io/nav-speculation/prerendering.html#prerendering-traversable - +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record-prerendering-traversable 1 +1 +prerender record - -prerendering traversables map +prerendering traversable dfn prerendering-revamped prerendering-revamped 1 current -https://wicg.github.io/nav-speculation/prerendering.html#document-prerendering-traversables-map +https://wicg.github.io/nav-speculation/prerendering.html#prerendering-traversable 1 -Document - prerenderingchange event @@ -4008,6 +4531,39 @@ TokenBindingStatus - present enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-present +1 +1 +SmartCardConnectionState +- +present +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-present +1 +1 +SmartCardReaderStateFlagsIn +- +present +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-present +1 +1 +SmartCardReaderStateFlagsOut +- +present +enum-value webauthn-3 webauthn 3 @@ -4025,6 +4581,26 @@ manifest-incubations current https://wicg.github.io/manifest-incubations/#dfn-present-an-install-prompt +1 +- +present coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#present-coordinates + +1 +- +present coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#present-coordinates + 1 - presentation @@ -4039,6 +4615,16 @@ https://w3c.github.io/presentation-api/#dom-navigator-presentation Navigator - presentation +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-presentation +1 +1 +- +presentation attribute presentation-api presentation-api @@ -4049,6 +4635,16 @@ https://www.w3.org/TR/presentation-api/#dom-navigator-presentation 1 Navigator - +presentation +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-presentation +1 +1 +- presentation attributes dfn svg2 @@ -4277,7 +4873,7 @@ media-source current https://w3c.github.io/media-source/#presentation-interval - +1 - presentation interval dfn @@ -4287,7 +4883,7 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#presentation-interval - +1 - presentation message data dfn @@ -4347,7 +4943,7 @@ media-source current https://w3c.github.io/media-source/#presentation-order - +1 - presentation order dfn @@ -4357,7 +4953,7 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#presentation-order - +1 - presentation request url dfn @@ -4397,6 +4993,16 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-presentation-request-url +1 +- +presentation response +dfn +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-presentation-response + 1 - presentation start time @@ -4407,7 +5013,7 @@ media-source current https://w3c.github.io/media-source/#presentation-start-time - +1 - presentation start time dfn @@ -4417,7 +5023,7 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#presentation-start-time - +1 - presentation style dfn @@ -4427,6 +5033,16 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#presentation-style +1 +- +presentation style +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#presentation-style + 1 - presentation time @@ -4447,7 +5063,7 @@ media-source current https://w3c.github.io/media-source/#presentation-timestamp 1 - +1 - presentation timestamp dfn @@ -4457,7 +5073,7 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#presentation-timestamp 1 - +1 - presentation url dfn @@ -4816,14 +5432,14 @@ https://wicg.github.io/video-rvfc/#dom-videoframecallbackmetadata-presentationti 1 VideoFrameCallbackMetadata - -presentational hints +presentational hint dfn html html 1 current https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints - +1 1 - presentations @@ -4834,6 +5450,16 @@ presentation-api current https://w3c.github.io/presentation-api/#dfn-receiving-browsing-context +1 +- +presentations +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-presentation +1 1 - presentations @@ -4844,6 +5470,16 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-receiving-browsing-context +1 +- +presentations +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-presentation +1 1 - presentedFrames @@ -4884,10 +5520,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-preserve +https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-preserve 1 1 -text-space-collapse +white-space-collapse - preserve enum-value @@ -4917,10 +5553,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-collapse-preserve +https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-preserve 1 1 -text-space-collapse +white-space-collapse - preserve-breaks value @@ -4928,10 +5564,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-preserve-breaks +https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-preserve-breaks 1 1 -text-space-collapse +white-space-collapse - preserve-breaks value @@ -4939,10 +5575,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-collapse-preserve-breaks +https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-preserve-breaks 1 1 -text-space-collapse +white-space-collapse - preserve-parent-color value @@ -4972,10 +5608,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-preserve-spaces +https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-preserve-spaces 1 1 -text-space-collapse +white-space-collapse - preserve-spaces value @@ -4983,10 +5619,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-space-collapse-preserve-spaces +https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-preserve-spaces 1 1 -text-space-collapse +white-space-collapse - preserveAlpha attribute @@ -5299,6 +5935,46 @@ compute-pressure snapshot https://www.w3.org/TR/compute-pressure/#dfn-pressure-observer-task-queued +1 +- +pressure source +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-pressure-source + +1 +- +pressure source +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-pressure-source + +1 +- +pressure source sample +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-pressure-source-sample + +1 +- +pressure source sample +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-pressure-source-sample + 1 - pressure states @@ -5347,10 +6023,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-wrap-pretty +https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-pretty 1 1 -text-wrap +text-wrap-style - pretty value @@ -5358,10 +6034,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-wrap-pretty +https://www.w3.org/TR/css-text-4/#valdef-text-wrap-style-pretty 1 1 -text-wrap +text-wrap-style - prev attr-value @@ -5435,6 +6111,17 @@ MutationEvent/initMutationEvent(typeArg, bubblesArg, cancelableArg) MutationEvent/initMutationEvent(typeArg, bubblesArg) MutationEvent/initMutationEvent(typeArg) - +prevWinsMs +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-prevwinsms +1 +1 +BiddingBrowserSignals +- prevent cancel dfn streams @@ -5671,18 +6358,38 @@ https://www.w3.org/TR/touch-events/#dfn-preventdefault 1 1 - -previous -attr-value -html -html +preview +dfn +pub-manifest +pub-manifest 1 current -https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-previous -1 +https://w3c.github.io/pub-manifest/#dfn-preview + 1 -html-global/enterkeyhint - -previous +preview +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-preview + +1 +- +previous +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-previous +1 +1 +html-global/enterkeyhint +- +previous enum-value mediacapture-handle-actions mediacapture-handle-actions @@ -5825,6 +6532,38 @@ https://dom.spec.whatwg.org/#concept-tree-previous-sibling 1 tree - +previous win +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#previous-win + +1 +- +previous wins +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-previous-wins + +1 +interest group +- +previous wins +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-browser-signals-previous-wins + +1 +server auction browser signals +- previousElementSibling attribute dom @@ -5858,6 +6597,17 @@ https://www.w3.org/TR/intersection-observer/#dom-intersectionobserverregistratio 1 IntersectionObserverRegistration - +previousIsVisible +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverregistration-previousisvisible +1 +1 +IntersectionObserverRegistration +- previousNode() method dom @@ -5946,6 +6696,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-previoussibling 1 AnimationEffect - +previousSibling +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-previoussibling +1 +1 +AnimationEffect +- previousSibling() method dom @@ -5989,13 +6750,23 @@ https://html.spec.whatwg.org/multipage/interactive-elements.html#previously-focu 1 - -previously reported paints +previousproof dfn -paint-timing -paint-timing +vc-data-integrity +vc-data-integrity 1 current -https://w3c.github.io/paint-timing/#previously-reported-paints +https://w3c.github.io/vc-data-integrity/#dfn-previousproof + +1 +- +previousproof +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-previousproof 1 - @@ -6073,6 +6844,38 @@ webauthn current https://w3c.github.io/webauthn/#prf +1 +- +prf +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsclientinputs-prf +1 +1 +AuthenticationExtensionsClientInputs +- +prf +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsclientoutputs-prf +1 +1 +AuthenticationExtensionsClientOutputs +- +prf +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#prf + 1 - prflx @@ -6164,11 +6967,11 @@ https://w3c.github.io/screen-orientation/#dfn-primary - primary dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#primary +https://w3c.github.io/window-management/#primary 1 - @@ -6178,10 +6981,10 @@ first-party-sets first-party-sets 1 current -https://wicg.github.io/first-party-sets/#first-party-set-primary +https://wicg.github.io/first-party-sets/#related-website-set-primary 1 -first-party set +related website set - primary dfn @@ -6195,11 +6998,11 @@ https://www.w3.org/TR/screen-orientation/#dfn-primary - primary dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#primary +https://www.w3.org/TR/window-management/#primary 1 - @@ -6231,16 +7034,6 @@ w3c-process current https://www.w3.org/Consortium/Process/#primary-affiliation -1 -- -primary content element -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-primary-content-element - 1 - primary content element @@ -6262,6 +7055,26 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-primary-content-element +- +primary entry page +dfn +audiobooks +audiobooks +1 +current +https://w3c.github.io/audiobooks/#dfn-primary-entry-page + +1 +- +primary entry page +dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-primary-entry-page + +1 - primary filter primitive tree dfn @@ -6423,6 +7236,28 @@ https://www.w3.org/TR/webxr-gamepads-module-1/#primary-squeeze-button 1 - +primary time zone identifier +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +primary time zone identifiers +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- primary trigger dfn webxr-gamepads-module-1 @@ -6679,16 +7514,6 @@ https://www.w3.org/TR/filter-effects-1/#dom-svgfilterelement-primitiveunits 1 SVGFilterElement - -primitiveprotocolvalue -dfn -webdriver-bidi -webdriver-bidi -1 -current -https://w3c.github.io/webdriver-bidi/#primitiveprotocolvalue - -1 -- primitiveunits element-attr filter-effects-1 @@ -6741,6 +7566,26 @@ css current https://drafts.csswg.org/css2/#principal-box +1 +- +principal block-level box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#principal-box +1 +1 +- +principal block-level box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#principal-box +1 1 - principal box @@ -7016,6 +7861,28 @@ request - priority attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-network-reporting-endpoint-priority +1 +1 +network reporting endpoint +- +priority +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-priority + +1 +network_reporting_endpoints +- +priority +attribute webrtc webrtc 1 @@ -7064,32 +7931,43 @@ webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-priority +https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatestats-priority 1 - -RTCIceCandidatePairStats +1 +RTCIceCandidateStats - priority -dict-member -webrtc-stats -webrtc-stats +dfn +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatestats-priority -1 +https://wicg.github.io/attribution-reporting-api/#attribution-source-priority + 1 -RTCIceCandidateStats +attribution source - priority -dict-member -webrtc-stats -webrtc-stats +dfn +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-priority +https://wicg.github.io/attribution-reporting-api/#destination-limit-record-priority + +1 +destination limit record +- +priority +dfn +attribution-reporting-api +attribution-reporting-api 1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-trigger-configuration-priority -RTCMediaStreamTrackStats +1 +event-level trigger configuration - priority dfn @@ -7097,10 +7975,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-priority +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-priority 1 -attribution source +source-registration JSON key - priority dfn @@ -7108,10 +7986,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#event-level-trigger-configuration-priority +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-priority 1 -event-level trigger configuration +trigger-registration JSON key - priority dict-member @@ -7158,6 +8036,17 @@ https://wicg.github.io/scheduling-apis/#dom-tasksignal-priority TaskSignal - priority +dict-member +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#dom-tasksignalanyinit-priority +1 +1 +TaskSignalAnyInit +- +priority dfn scheduling-apis scheduling-apis @@ -7180,6 +8069,62 @@ https://wicg.github.io/scheduling-apis/#tasksignal-priority TaskSignal - priority +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroup-priority +1 +1 +AuctionAdInterestGroup +- +priority +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setpriority-priority-priority +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope/setPriority(priority) +- +priority +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setprioritysignalsoverride-key-priority-priority +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope/setPrioritySignalsOverride(key, priority) +InterestGroupBiddingScriptRunnerGlobalScope/setPrioritySignalsOverride(key) +- +priority +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-priority + +1 +interest group +- +priority +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-priority + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +priority attribute css-highlight-api-1 css-highlight-api @@ -7251,32 +8196,10 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatepairstats-priority +https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatestats-priority 1 - -RTCIceCandidatePairStats -- -priority -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatestats-priority -1 -1 -RTCIceCandidateStats -- -priority -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-priority -1 - -RTCMediaStreamTrackStats +1 +RTCIceCandidateStats - priority attribute @@ -7331,6 +8254,61 @@ https://wicg.github.io/scheduling-apis/#tasksignal-priority-changing 1 TaskSignal - +priority signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingscriptrunnerglobalscope-priority-signals + +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +priority signals overrides +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-priority-signals-overrides + +1 +interest group +- +priority source +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#scheduling-state-priority-source + +1 +scheduling state +- +priority vector +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-priority-vector + +1 +interest group +- +priority weight +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#real-time-reporting-contribution-priority-weight + +1 +real time reporting contribution +- priorityChangeEventInitDict argument scheduling-apis @@ -7343,6 +8321,39 @@ https://wicg.github.io/scheduling-apis/#dom-taskprioritychangeevent-taskpriority TaskPriorityChangeEvent/TaskPriorityChangeEvent(type, priorityChangeEventInitDict) TaskPriorityChangeEvent/constructor(type, priorityChangeEventInitDict) - +prioritySignalsOverrides +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroup-prioritysignalsoverrides +1 +1 +AuctionAdInterestGroup +- +priorityVector +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-priorityvector +1 +1 +GenerateBidInterestGroup +- +priorityWeight +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-realtimecontribution-priorityweight +1 +1 +RealTimeContribution +- prioritychange event scheduling-apis @@ -7364,6 +8375,59 @@ https://webbluetoothcg.github.io/web-bluetooth/#privacy-feature 1 - +privacy feature +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#privacy-feature + +1 +- +privacy feature in an observer +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#privacy-feature-in-an-observer + +1 +- +privacy policy +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-privacypolicy + +1 +- +privacy policy +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-privacypolicy + +1 +- +privacy-policy +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#link-type-privacy-policy +1 +1 +link/rel +a/rel +area/rel +- privacy_policy_url dict-member fedcm @@ -7375,6 +8439,26 @@ https://fedidcg.github.io/FedCM/#dom-identityproviderclientmetadata-privacy_poli 1 IdentityProviderClientMetadata - +privacypolicy +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-privacypolicy + +1 +- +privacypolicy +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-privacypolicy + +1 +- private dfn wgsl @@ -7399,11 +8483,11 @@ KeyType - private dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#ip-address-space-private +https://wicg.github.io/private-network-access/#ip-address-space-private 1 1 IP address space @@ -7431,21 +8515,53 @@ https://webbluetoothcg.github.io/web-bluetooth/#private-address - private address dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#private-address +https://wicg.github.io/private-network-access/#private-address 1 - -private field values +private aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#interest-group-private-aggregation-coordinator + +1 +interest group +- +private aggregation enabled dfn -png-spec -png-spec +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#permissions-policy-state-private-aggregation-enabled + 1 +permissions policy state +- +private field values +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-private-field-values +https://w3c.github.io/png/#dfn-private-field-values + +1 +- +private field values +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-private-field-values 1 - @@ -7473,23 +8589,174 @@ ECMAScript - private network access check dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#private-network-access-check +https://wicg.github.io/private-network-access/#private-network-access-check 1 1 - private network request dfn -local-network-access -local-network-access +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#private-network-request +1 +1 +- +private state token +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#xmlhttprequest-private-state-token + +1 +XMLHttpRequest +- +private token issuers +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#request-private-token-issuers + +1 +request +- +private token operation +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#request-private-token-operation + +1 +request +- +private token refresh policy +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#request-private-token-refresh-policy + +1 +request +- +private-aggregation +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#private-aggregation + +1 +- +private-network-access-id +http-header +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#http-headerdef-private-network-access-id +1 +1 +- +private-network-access-name +http-header +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#http-headerdef-private-network-access-name +1 +1 +- +private-state-token-issuance +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#policy-controlled-feature-private-state-token-issuance + +1 +policy-controlled feature +- +private-state-token-redemption +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#policy-controlled-feature-private-state-token-redemption + +1 +policy-controlled feature +- +privateAggregation +attribute +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-interestgroupscriptrunnerglobalscope-privateaggregation +1 +1 +InterestGroupScriptRunnerGlobalScope +- +privateAggregation +attribute +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-sharedstorageworkletglobalscope-privateaggregation +1 +1 +SharedStorageWorkletGlobalScope +- +privateAggregationConfig +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionadconfig-privateaggregationconfig +1 +1 +AuctionAdConfig +- +privateAggregationConfig +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionadinterestgroup-privateaggregationconfig +1 +1 +AuctionAdInterestGroup +- +privateAggregationConfig +dict-member +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/local-network-access/#private-network-request +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-sharedstoragerunoperationmethodoptions-privateaggregationconfig 1 1 +SharedStorageRunOperationMethodOptions - privateKey dict-member @@ -7502,6 +8769,39 @@ https://w3c.github.io/webcrypto/#dfn-CryptoKeyPair-privateKey 1 CryptoKeyPair - +privateToken +attribute +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-htmliframeelement-privatetoken +1 +1 +HTMLIFrameElement +- +privateToken +dict-member +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-requestinit-privatetoken +1 +1 +RequestInit +- +privateToken +argument +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-xmlhttprequest-setprivatetoken-privatetoken-privatetoken +1 +1 +XMLHttpRequest/setPrivateToken(privateToken) +- privateelement dfn ecmascript @@ -7575,7 +8875,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKeyPair-privateKey -1 + 1 - privatekey @@ -7589,6 +8889,17 @@ https://www.w3.org/TR/webauthn-3/#public-key-credential-source-privatekey 1 public key credential source - +privatetoken +element-attr +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#element-attrdef-iframe-privatetoken +1 +1 +iframe +- privileged no-cors request-header name dfn fetch @@ -7632,27 +8943,68 @@ https://www.w3.org/TR/webxr-lighting-estimation-1/#dom-xrlightprobe-probespace 1 XRLightProbe - -procedure timeouts +problemdetails dfn -web-bluetooth -web-bluetooth +vc-data-integrity +vc-data-integrity 1 current -https://webbluetoothcg.github.io/web-bluetooth/#procedure-timeouts +https://w3c.github.io/vc-data-integrity/#dfn-problemdetails 1 - -process a base url string +problemdetails dfn -urlpattern -urlpattern +vc-data-model-2.0 +vc-data-model 1 current -https://wicg.github.io/urlpattern/#process-a-base-url-string +https://w3c.github.io/vc-data-model/#dfn-problemdetails 1 - -process a color member +problemdetails +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-problemdetails + +1 +- +procedure timeouts +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#procedure-timeouts + +1 +- +process +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-process + +1 +token stream +- +process a base url string +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#process-a-base-url-string + +1 +- +process a color member dfn appmanifest appmanifest @@ -7670,6 +9022,16 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-process-a-color-member +1 +- +process a fetch storage access for bounce tracking mitigations +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#process-a-fetch-storage-access-for-bounce-tracking-mitigations + 1 - process a file handler item @@ -7682,13 +9044,13 @@ https://wicg.github.io/manifest-incubations/#dfn-process-a-file-handler-item 1 - -process a fragment directive +process a general storage access for bounce tracking mitigations dfn -scroll-to-text-fragment -scroll-to-text-fragment +nav-tracking-mitigations +nav-tracking-mitigations 1 current -https://wicg.github.io/scroll-to-text-fragment/#process-a-fragment-directive +https://privacycg.github.io/nav-tracking-mitigations/#process-a-general-storage-access-for-bounce-tracking-mitigations 1 - @@ -7800,6 +9162,16 @@ miniapp-packaging snapshot https://www.w3.org/TR/miniapp-packaging/#dfn-process-a-miniapp-package 1 +1 +- +process a network event +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#process-a-network-event + 1 - process a null action @@ -7960,6 +9332,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#process-a-timing-argument +1 +- +process a timing argument +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#process-a-timing-argument + 1 - process a tokenizing error @@ -7968,7 +9350,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-a-tokenizing-error +https://urlpattern.spec.whatwg.org/#process-a-tokenizing-error 1 - @@ -7978,7 +9360,17 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-a-urlpatterninit +https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit + +1 +- +process a web authentication assertion for bounce tracking mitigations +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#process-a-web-authentication-assertion-for-bounce-tracking-mitigations 1 - @@ -8010,6 +9402,16 @@ file-system-access current https://wicg.github.io/file-system-access/#process-accept-types +1 +- +process an attribution eligible response +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#process-an-attribution-eligible-response +1 1 - process an attribution source @@ -8020,6 +9422,36 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#process-an-attribution-source +1 +- +process an attribution source response +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#process-an-attribution-source-response + +1 +- +process an attribution trigger response +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#process-an-attribution-trigger-response + +1 +- +process an attributionsrc response +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#process-an-attributionsrc-response + 1 - process an html paste event @@ -8064,11 +9496,21 @@ https://www.w3.org/TR/image-resource/#dfn-process-an-image-resource-from-json - process an image that finished loading dfn -element-timing -element-timing +paint-timing +paint-timing 1 current -https://wicg.github.io/element-timing/#process-an-image-that-finished-loading +https://w3c.github.io/paint-timing/#process-an-image-that-finished-loading + +1 +- +process an image that finished loading +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#process-an-image-that-finished-loading 1 - @@ -8120,16 +9562,6 @@ encoding current https://encoding.spec.whatwg.org/#concept-encoding-process -1 -- -process and consume fragment directive -dfn -scroll-to-text-fragment -scroll-to-text-fragment -1 -current -https://wicg.github.io/scroll-to-text-fragment/#process-and-consume-fragment-directive - 1 - process blob parts @@ -8170,6 +9602,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-capabilities-processing +1 +- +process close watchers +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#process-close-watchers + +1 +- +process contributions for a batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#process-contributions-for-a-batching-scope +1 1 - process cookie changes @@ -8180,6 +9632,16 @@ cookie-store current https://wicg.github.io/cookie-store/#process-cookie-changes +1 +- +process document load for bounce tracking +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#process-document-load-for-bounce-tracking + 1 - process dt or dd @@ -8239,7 +9701,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-hash-for-init +https://urlpattern.spec.whatwg.org/#process-hash-for-init 1 - @@ -8249,7 +9711,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-hostname-for-init +https://urlpattern.spec.whatwg.org/#process-hostname-for-init 1 - @@ -8271,6 +9733,46 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-process-image-resources +1 +- +process image that finished loading +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#process-image-that-finished-loading + +1 +- +process image that finished loading +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#process-image-that-finished-loading + +1 +- +process internal resource link +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#process-internal-resource-link + +1 +- +process internal resource links +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#process-internal-resource-links + 1 - process link headers @@ -8283,13 +9785,34 @@ https://html.spec.whatwg.org/multipage/semantics.html#process-link-headers 1 - +process navigation start for bounce tracking +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#process-navigation-start-for-bounce-tracking + +1 +- +process old state captured +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#viewtransition-process-old-state-captured + +1 +ViewTransition +- process password for init dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-password-for-init +https://urlpattern.spec.whatwg.org/#process-password-for-init 1 - @@ -8299,7 +9822,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-pathname-for-init +https://urlpattern.spec.whatwg.org/#process-pathname-for-init 1 - @@ -8369,7 +9892,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-port-for-init +https://urlpattern.spec.whatwg.org/#process-port-for-init 1 - @@ -8379,18 +9902,18 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-protocol-for-init +https://urlpattern.spec.whatwg.org/#process-protocol-for-init 1 - process remote tracks -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#process-remote-tracks - +1 1 - process remote tracks @@ -8458,24 +9981,54 @@ https://fetch.spec.whatwg.org/#fetch-params-process-response-end-of-body 1 fetch params - +process response received for bounce tracking +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#process-response-received-for-bounce-tracking + +1 +- +process scoread output +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#process-scoread-output + +1 +- +process scroll behavior +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#process-scroll-behavior + +1 +- process search for init dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-search-for-init +https://urlpattern.spec.whatwg.org/#process-search-for-init 1 - process the addition of a remote track -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#process-remote-track-addition - +1 1 - process the addition of a remote track @@ -8696,6 +10249,16 @@ html current https://html.spec.whatwg.org/multipage/obsolete.html#process-the-frame-attributes +1 +- +process the home_tab member +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-process-the-home_tab-member + 1 - process the id member @@ -8806,6 +10369,16 @@ manifest-incubations current https://wicg.github.io/manifest-incubations/#dfn-process-the-new_note_url-member +1 +- +process the new_tab_button member +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-process-the-new_tab_button-member + 1 - process the next manual redirect @@ -8987,6 +10560,16 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-process-the-platform_version-member +1 +- +process the private aggregation contributions for an auction +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#process-the-private-aggregation-contributions-for-an-auction + 1 - process the protocol_handlers member @@ -9020,13 +10603,13 @@ https://www.w3.org/TR/appmanifest/#dfn-process-the-related_applications-member 1 - process the removal of a remote track -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#process-remote-track-removal - +1 1 - process the removal of a remote track @@ -9057,6 +10640,16 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-process-the-req_permissions-member +1 +- +process the result of a begintransaction +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-process-the-result-of-a-begintransaction + 1 - process the scope member @@ -9077,6 +10670,16 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-process-the-scope-member +1 +- +process the scope_patterns member +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-process-the-scope_patterns-member + 1 - process the share_target member @@ -9137,6 +10740,16 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-process-the-start_url-member +1 +- +process the tab_strip member +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-process-the-tab_strip-member + 1 - process the url member of an application @@ -9517,6 +11130,16 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-process-the-window-s-orientation-member +1 +- +process top layer removals +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#process-top-layer-removals +1 1 - process unconsumed launch params @@ -9527,6 +11150,16 @@ web-app-launch current https://wicg.github.io/web-app-launch/#dfn-process-unconsumed-launch-params +1 +- +process updateifolderthanms +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#process-updateifolderthanms + 1 - process username for init @@ -9535,7 +11168,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#process-username-for-init +https://urlpattern.spec.whatwg.org/#process-username-for-init 1 - @@ -9695,6 +11328,16 @@ appmanifest current https://w3c.github.io/manifest/#dfn-processing-a-manifest 1 +1 +- +processing a manifest +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-processing-algorithm + 1 - processing a manifest @@ -9705,6 +11348,16 @@ appmanifest snapshot https://www.w3.org/TR/appmanifest/#dfn-processing-a-manifest 1 +1 +- +processing a manifest +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-processing-algorithm + 1 - processing a miniapp manifest @@ -9735,6 +11388,26 @@ encoding current https://encoding.spec.whatwg.org/#concept-encoding-run +1 +- +processing algorithm +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-processing-algorithm + +1 +- +processing algorithm +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-processing-algorithm + 1 - processing an input buffer @@ -9775,26 +11448,6 @@ fileapi snapshot https://www.w3.org/TR/FileAPI/#process-blob-parts -1 -- -processing equivalence -dfn -uievents-code -uievents-code -1 -snapshot -https://www.w3.org/TR/uievents-code/#dfn-processing-equivalence - -1 -- -processing equivalence -dfn -uievents-key -uievents-key -1 -snapshot -https://www.w3.org/TR/uievents-key/#dfn-processing-equivalence - 1 - processing extension-point @@ -9959,6 +11612,26 @@ web-app-launch current https://wicg.github.io/web-app-launch/#dfn-processing-the-launch_handler-member +1 +- +processing the manifest +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-processing-algorithm + +1 +- +processing the manifest +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-processing-algorithm + 1 - processing the miniapp manifest @@ -10048,7 +11721,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceeventtiming-processingend +https://w3c.github.io/event-timing/#dom-performanceeventtiming-processingend 1 PerformanceEventTiming @@ -10092,7 +11765,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceeventtiming-processingstart +https://w3c.github.io/event-timing/#dom-performanceeventtiming-processingstart 1 PerformanceEventTiming @@ -10411,17 +12084,6 @@ https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-product 1 NavigatorID - -product -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-product -1 -1 -CSSMathOperator -- product id dfn webhid @@ -10469,7 +12131,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#product-of-two-unit-maps - +1 1 - productId @@ -10627,6 +12289,16 @@ https://w3c.github.io/json-ld-api/#dom-remotedocument-profile RemoteDocument - profile +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-profiles + +1 +- +profile dict-member json-ld11-api json-ld-api @@ -10649,6 +12321,16 @@ https://www.w3.org/TR/json-ld11-api/#dom-remotedocument-profile RemoteDocument - profile +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-profiles + +1 +- +profile dict-member webxr-hit-test-1 webxr-hit-test @@ -10678,6 +12360,26 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#profile-fundamentals +1 +- +profile(s) +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-profiles + +1 +- +profile(s) +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-profiles + 1 - profiles @@ -10692,6 +12394,26 @@ https://immersive-web.github.io/webxr/#dom-xrinputsource-profiles XRInputSource - profiles +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-profiles + +1 +- +profiles +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-profiles + +1 +- +profiles attribute webxr webxr @@ -10777,6 +12499,28 @@ https://drafts.csswg.org/web-animations-1/#dom-computedeffecttiming-progress ComputedEffectTiming - progress +dfn +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#animation-progress +1 +1 +animation +- +progress +attribute +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dom-animation-progress +1 +1 +Animation +- +progress argument web-animations-2 web-animations @@ -10875,6 +12619,17 @@ https://www.w3.org/TR/web-animations-1/#dom-computedeffecttiming-progress ComputedEffectTiming - progress +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-effectcallback-progress +1 +1 +EffectCallback +- +progress event xhr xhr @@ -10883,7 +12638,47 @@ current https://xhr.spec.whatwg.org/#event-xhr-progress 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget +- +progress end value +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#progress-end-value + +1 +- +progress start value +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#progress-start-value + +1 +- +progress value +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#progress-value + +1 +- +progress() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-progress +1 +1 - progress-bar value @@ -10915,6 +12710,36 @@ web-animations current https://drafts.csswg.org/web-animations-2/#progress-based-timeline +1 +- +progress-based timeline +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#progress-based-timeline + +1 +- +progressiondirection +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-progressiondirection + +1 +- +progressiondirection +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-progressiondirection + 1 - progressive @@ -10999,6 +12824,26 @@ webcodecs snapshot https://www.w3.org/TR/webcodecs/#progressive-image-frame-generation +1 +- +prohibited +dfn +wai-aria-1.2 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-prohibited + +1 +- +prohibited +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-prohibited + 1 - projection @@ -11186,6 +13031,16 @@ lock request - promise dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-promise + +1 +- +promise +dfn web-locks web-locks 1 @@ -11195,6 +13050,16 @@ https://www.w3.org/TR/web-locks/#lock-request-promise 1 lock request - +promise rejection delay +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#promise-rejection-delay + +1 +- promise resolved dfn webxr @@ -11208,204 +13073,485 @@ XRSession - promise resolved dfn -webxr -webxr +webxr +webxr +1 +snapshot +https://www.w3.org/TR/webxr/#xrsession-promise-resolved + +1 +XRSession +- +promise type +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#dfn-promise-type +1 +1 +- +promisecapability record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promisecapability-records +1 +1 +ECMAScript +- +promisecapability records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promisecapability-records +1 +1 +ECMAScript +- +promisereaction record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promisereaction-records +1 +1 +ECMAScript +- +promisereaction records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promisereaction-records +1 +1 +ECMAScript +- +promote an upcoming api method tracker to ongoing +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#promote-an-upcoming-api-method-tracker-to-ongoing + +1 +- +prompt +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-prompt +1 +1 +permission +- +prompt +enum-value +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dom-permissionstate-prompt +1 +1 +PermissionState +- +prompt +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-prompt +1 +1 +permission +- +prompt +enum-value +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dom-permissionstate-prompt +1 +1 +PermissionState +- +prompt handler configuration +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-prompt-handler-configuration + +1 +- +prompt handler configuration +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-prompt-handler-configuration + +1 +- +prompt the user to choose +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-prompt-the-user-to-choose +1 +1 +- +prompt the user to choose +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-prompt-the-user-to-choose +1 +1 +- +prompt() +method +remote-playback +remote-playback +1 +current +https://w3c.github.io/remote-playback/#dom-remoteplayback-prompt +1 +1 +RemotePlayback +- +prompt() +method +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dom-beforeinstallpromptevent-prompt +1 +1 +BeforeInstallPromptEvent +- +prompt() +method +remote-playback +remote-playback +1 +snapshot +https://www.w3.org/TR/remote-playback/#dom-remoteplayback-prompt +1 +1 +RemotePlayback +- +prompt(message, default) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-prompt +1 +1 +Window +- +prompting the user to choose +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-prompt-the-user-to-choose +1 +1 +- +prompting the user to choose +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-prompt-the-user-to-choose +1 +1 +- +proof +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-proof + +1 +- +proof +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-proof + +1 +- +proof chain +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-proof-chain + +1 +- +proof chain +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-chain + +1 +- +proof generation +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-proof-generation + + +- +proof generation +dfn +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/webxr/#xrsession-promise-resolved +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-generation + -1 -XRSession - -promise type +proof graph dfn -webidl -webidl +vc-data-integrity +vc-data-integrity 1 current -https://webidl.spec.whatwg.org/#dfn-promise-type +https://w3c.github.io/vc-data-integrity/#dfn-proof-graph 1 1 - -promisecapability record +proof graph dfn -ecmascript -ecmascript +vc-data-model-2.0 +vc-data-model 1 current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promisecapability-records -1 -1 -ECMAScript +https://w3c.github.io/vc-data-model/#dfn-proof-graph + + - -promisecapability records +proof graph dfn -ecmascript -ecmascript +vc-data-integrity +vc-data-integrity 1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promisecapability-records +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-graph 1 1 -ECMAScript - -promote the upcoming navigation to ongoing +proof graph dfn -navigation-api -navigation-api +vc-data-model-2.0 +vc-data-model 1 -current -https://wicg.github.io/navigation-api/#navigation-promote-the-upcoming-navigation-to-ongoing +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-proof-graph + -1 -Navigation - -prompt +proof purpose dfn -permissions -permissions +vc-data-integrity +vc-data-integrity 1 current -https://w3c.github.io/permissions/#dfn-prompt +https://w3c.github.io/vc-data-integrity/#dfn-proof-purpose 1 -1 -permission + - -prompt -enum-value -permissions -permissions -1 -current -https://w3c.github.io/permissions/#dom-permissionstate-prompt +proof purpose +dfn +vc-data-integrity +vc-data-integrity 1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-purpose 1 -PermissionState + - -prompt +proof serialization algorithm dfn -webdriver2 -webdriver -2 +vc-data-integrity +vc-data-integrity +1 current -https://w3c.github.io/webdriver/#dfn-prompt +https://w3c.github.io/vc-data-integrity/#dfn-proof-serialization-algorithm + -1 - -prompt +proof serialization algorithm dfn -permissions -permissions +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/permissions/#dfn-prompt -1 -1 -permission +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-serialization-algorithm + + - -prompt -enum-value -permissions -permissions -1 -snapshot -https://www.w3.org/TR/permissions/#dom-permissionstate-prompt +proof set +dfn +vc-data-integrity +vc-data-integrity 1 +current +https://w3c.github.io/vc-data-integrity/#dfn-proof-set + 1 -PermissionState - -prompt +proof set dfn -webdriver2 -webdriver -2 +vc-data-integrity +vc-data-integrity +1 snapshot -https://www.w3.org/TR/webdriver2/#dfn-prompt +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-set 1 - -prompt the user to choose +proof verification dfn -permissions -permissions +vc-data-integrity +vc-data-integrity 1 current -https://w3c.github.io/permissions/#dfn-prompt-the-user-to-choose -1 -1 +https://w3c.github.io/vc-data-integrity/#dfn-proof-verification + + - -prompt the user to choose +proof verification dfn -permissions -permissions +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/permissions/#dfn-prompt-the-user-to-choose -1 -1 +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-verification + + - -prompt() -method -remote-playback -remote-playback +proof verification algorithm +dfn +vc-data-integrity +vc-data-integrity 1 current -https://w3c.github.io/remote-playback/#dom-remoteplayback-prompt -1 +https://w3c.github.io/vc-data-integrity/#dfn-proof-verification-algorithm + + +- +proof verification algorithm +dfn +vc-data-integrity +vc-data-integrity 1 -RemotePlayback +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-proof-verification-algorithm + + - -prompt() -method -manifest-incubations -manifest-incubations +proofgraph +dfn +vc-data-integrity +vc-data-integrity 1 current -https://wicg.github.io/manifest-incubations/#dom-beforeinstallpromptevent-prompt +https://w3c.github.io/vc-data-integrity/#dfn-proofgraph 1 1 -BeforeInstallPromptEvent - -prompt() -method -remote-playback -remote-playback +proofgraph +dfn +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/remote-playback/#dom-remoteplayback-prompt +https://www.w3.org/TR/vc-data-integrity/#dfn-proofgraph 1 1 -RemotePlayback - -prompt(message, default) -method -html -html +proofpurpose +dfn +vc-data-integrity +vc-data-integrity 1 current -https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-prompt +https://w3c.github.io/vc-data-integrity/#dfn-proofpurpose + 1 +- +proofpurpose +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-proofpurpose + 1 -Window - -prompting the user to choose +proofvalue dfn -permissions -permissions +vc-data-integrity +vc-data-integrity 1 current -https://w3c.github.io/permissions/#dfn-prompt-the-user-to-choose -1 +https://w3c.github.io/vc-data-integrity/#dfn-proofvalue + 1 - -prompting the user to choose +proofvalue dfn -permissions -permissions +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/permissions/#dfn-prompt-the-user-to-choose -1 +https://www.w3.org/TR/vc-data-integrity/#dfn-proofvalue + 1 - propagate @@ -11488,33 +13634,33 @@ https://www.w3.org/TR/css-break-4/#propagate 1 - -propagation path +proper instance dfn -uievents -uievents +rdf12-semantics +rdf-semantics 1 current -https://w3c.github.io/uievents/#propagation-path +https://w3c.github.io/rdf-semantics/spec/#dfn-proper-instance 1 - -propagation path +proper instance dfn -uievents -uievents +rdf12-semantics +rdf-semantics 1 snapshot -https://www.w3.org/TR/uievents/#propagation-path +https://www.w3.org/TR/rdf12-semantics/#dfn-proper-instance 1 - -proper instance +proper subgraph dfn rdf12-semantics rdf-semantics 1 current -https://w3c.github.io/rdf-semantics/spec/#dfn-proper-instance +https://w3c.github.io/rdf-semantics/spec/#dfn-proper-subgraph 1 - @@ -11523,8 +13669,8 @@ dfn rdf12-semantics rdf-semantics 1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-proper-subgraph +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-proper-subgraph 1 - @@ -11546,6 +13692,26 @@ css current https://drafts.csswg.org/css2/#proper-table-child +1 +- +proper table child +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x17 +1 +1 +- +proper table child +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x17 +1 1 - proper table child @@ -11566,6 +13732,26 @@ css current https://drafts.csswg.org/css2/#proper-table-row-parent +1 +- +proper table row parent +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x18 +1 +1 +- +proper table row parent +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x18 +1 1 - proper table-row parent @@ -11625,21 +13811,21 @@ ContactsManager/select(properties) - properties dfn -mathml-aam -mathml-aam +svg-aam-1.0 +svg-aam 1 current -https://w3c.github.io/mathml-aam/#dfn-property +https://w3c.github.io/svg-aam/#dfn-property + -1 - properties dfn -svg-aam-1.0 -svg-aam +vc-data-model-2.0 +vc-data-model 1 current -https://w3c.github.io/svg-aam/#dfn-property +https://w3c.github.io/vc-data-model/#dfn-property - @@ -11662,16 +13848,6 @@ svg snapshot https://www.w3.org/TR/SVG2/styling.html#TermProperty -1 -- -properties -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-property - 1 - properties @@ -11715,6 +13891,16 @@ snapshot https://www.w3.org/TR/svg-aam-1.0/#dfn-property 1 +- +properties +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-property + + - properties dfn @@ -11938,21 +14124,22 @@ ARIA - property dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-property - +https://w3c.github.io/aria/#dfn-property 1 + +ARIA - property dfn -mathml-aam -mathml-aam -1 +mathml4 +mathml +4 current -https://w3c.github.io/mathml-aam/#dfn-property +https://w3c.github.io/mathml/#intent_property 1 - @@ -12000,12 +14187,32 @@ TrustedTypePolicyFactory/getPropertyType(tagName, property) - property dfn -accname-1.2 -accname +vc-data-model-2.0 +vc-data-model 1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-property +current +https://w3c.github.io/vc-data-model/#dfn-property + +- +property +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#property +1 +1 +- +property +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#property +1 1 - property @@ -12073,6 +14280,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-append-property-value 1 1 StylePropertyMap/append(property, ...values) +StylePropertyMap/append(property) - property argument @@ -12095,6 +14303,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-set-property-values-p 1 1 StylePropertyMap/set(property, ...values) +StylePropertyMap/set(property) - property argument @@ -12190,8 +14399,18 @@ graphics-aria-1.0 graphics-aria 1 snapshot -https://www.w3.org/TR/graphics-aria-1.0/#dfn-property - +https://www.w3.org/TR/graphics-aria-1.0/#dfn-property + + +- +property +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-property +1 - property @@ -12215,6 +14434,16 @@ https://www.w3.org/TR/trusted-types/#dom-trustedtypepolicyfactory-getpropertytyp 1 TrustedTypePolicyFactory/getPropertyType(tagName, property, elementNs) TrustedTypePolicyFactory/getPropertyType(tagName, property) +- +property +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-property + + - property dfn @@ -12235,6 +14464,17 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-property +- +property +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-property +1 + +ARIA - property declarations dfn @@ -12376,6 +14616,26 @@ https://drafts.csswg.org/css2/#propdef-property-name 1 - property-name +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/about.html#propdef-property-name +1 +1 +- +property-name +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/about.html#propdef-property-name +1 +1 +- +property-name dfn css22 css @@ -12564,6 +14824,16 @@ webrtc current https://w3c.github.io/webrtc-pc/#dfn-proposed-envelope +1 +- +proposed envelope +dfn +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dfn-proposed-envelope + 1 - proposed recommendation @@ -12663,7 +14933,7 @@ json-ld 1 current https://w3c.github.io/json-ld-syntax/#dfn-protected-term-definition - +1 - protected term definition @@ -12708,6 +14978,28 @@ https://html.spec.whatwg.org/multipage/workers.html#protected-worker 1 - +protectedAudience +attribute +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-protectedaudience +1 +1 +Navigator +- +proto-mismatch +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-proto-mismatch +1 +1 +SmartCardResponseCode +- protocol attribute html @@ -12753,6 +15045,50 @@ https://url.spec.whatwg.org/#dom-url-protocol URL - protocol +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-protocol +1 +1 +constructor string parser/state +- +protocol +attribute +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpattern-protocol +1 +1 +URLPattern +- +protocol +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-protocol +1 +1 +URLPatternInit +- +protocol +dict-member +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-protocol +1 +1 +URLPatternResult +- +protocol attribute credential-management-1 credential-management @@ -12863,58 +15199,48 @@ https://websockets.spec.whatwg.org/#dom-websocket-protocol WebSocket - protocol -dfn -manifest-incubations -manifest-incubations -1 -current -https://wicg.github.io/manifest-incubations/#dfn-protocol - -1 -- -protocol -dfn -urlpattern -urlpattern +attribute +digital-identities +digital-identities 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-protocol +https://wicg.github.io/digital-credentials#dom-digitalcredential-protocol 1 1 -constructor string parser/state +DigitalCredential - protocol -attribute -urlpattern -urlpattern +dict-member +digital-identities +digital-identities 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-protocol +https://wicg.github.io/digital-credentials#dom-digitalcredentialsprovider-protocol 1 1 -URLPattern +DigitalCredentialsProvider - protocol -dict-member -urlpattern -urlpattern +dfn +manifest-incubations +manifest-incubations 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-protocol -1 +https://wicg.github.io/manifest-incubations/#dfn-protocol + 1 -URLPatternInit +protocol handler description - protocol dict-member -urlpattern -urlpattern +web-smart-card +web-smart-card 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-protocol +https://wicg.github.io/web-smart-card/#dom-smartcardtransmitoptions-protocol 1 1 -URLPatternResult +SmartCardTransmitOptions - protocol attribute @@ -13021,10 +15347,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-protocol-component +https://urlpattern.spec.whatwg.org/#url-pattern-protocol-component 1 -URLPattern +URL pattern - protocol component matches a special scheme dfn @@ -13032,7 +15358,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#protocol-component-matches-a-special-scheme +https://urlpattern.spec.whatwg.org/#protocol-component-matches-a-special-scheme 1 - @@ -13052,7 +15378,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-protocol-matches-a-special-scheme-flag +https://urlpattern.spec.whatwg.org/#constructor-string-parser-protocol-matches-a-special-scheme-flag 1 1 constructor string parser @@ -13079,28 +15405,6 @@ https://wicg.github.io/manifest-incubations/#dfn-protocol_handlers 1 manifest - -protocol_version -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchrequest-protocol_version - -1 -PatchRequest -- -protocol_version -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchresponse-protocol_version - -1 -PatchResponse -- protocols dict-member credential-management-1 @@ -13137,16 +15441,6 @@ https://www.w3.org/TR/credential-management-1/#dom-federatedcredentialrequestopt 1 FederatedCredentialRequestOptions - -protocolversion -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#protocolversion - -1 -- prototype attribute ecmascript @@ -13169,6 +15463,17 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator 1 GeneratorFunction - +provided as additional bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-provided-as-additional-bid + +1 +generated bid +- provider attribute credential-management-1 @@ -13248,6 +15553,17 @@ FederatedCredentialRequestOptions - providers dict-member +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-digitalcredentialrequestoptions-providers +1 +1 +DigitalCredentialRequestOptions +- +providers +dict-member credential-management-1 credential-management 1 @@ -13309,6 +15625,16 @@ https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-proximity scroll-snap-type - proximity +permission +proximity +proximity +1 +current +https://w3c.github.io/proximity/#permissiondef-proximity +1 +1 +- +proximity value css-scroll-snap-1 css-scroll-snap @@ -13319,13 +15645,43 @@ https://www.w3.org/TR/css-scroll-snap-1/#valdef-scroll-snap-type-proximity 1 scroll-snap-type - +proximity +permission +proximity +proximity +1 +snapshot +https://www.w3.org/TR/proximity/#permissiondef-proximity +1 +1 +- +proximity reading parsing algorithm +dfn +proximity +proximity +1 +current +https://w3c.github.io/proximity/#proximity-reading-parsing-algorithm + +1 +- +proximity reading parsing algorithm +dfn +proximity +proximity +1 +snapshot +https://www.w3.org/TR/proximity/#proximity-reading-parsing-algorithm + +1 +- proximity sensor dfn proximity proximity 1 current -https://w3c.github.io/proximity/#proximity-sensor +https://w3c.github.io/proximity/#proximity-sensor-sensor-type 1 - @@ -13335,8 +15691,58 @@ proximity proximity 1 snapshot -https://www.w3.org/TR/proximity/#proximity-sensor +https://www.w3.org/TR/proximity/#proximity-sensor-sensor-type + +1 +- +proximity to the viewport +dfn +css-contain-2 +css-contain +2 +current +https://drafts.csswg.org/css-contain-2/#proximity-to-the-viewport +1 +1 +- +proximity virtual sensor type +dfn +proximity +proximity +1 +current +https://w3c.github.io/proximity/#proximity-virtual-sensor-type + +1 +- +proximity virtual sensor type +dfn +proximity +proximity +1 +snapshot +https://www.w3.org/TR/proximity/#proximity-virtual-sensor-type +1 +- +proximity-sensor-feature +dfn +proximity +proximity +1 +current +https://w3c.github.io/proximity/#proximity-sensor-feature +1 +1 +- +proximity-sensor-feature +dfn +proximity +proximity +1 +snapshot +https://www.w3.org/TR/proximity/#proximity-sensor-feature +1 1 - proxy @@ -13430,26 +15836,6 @@ fetch current https://fetch.spec.whatwg.org/#proxy-authentication-entry 1 -1 -- -proxyautoconfigurl -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-proxyautoconfigurl - -1 -- -proxyautoconfigurl -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-proxyautoconfigurl - 1 - proxytype diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ps.data b/bikeshed/spec-data/readonly/anchors/anchors-ps.data index 748e9b4c9b..eda4288be9 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ps.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ps.data @@ -154,6 +154,66 @@ https://www.w3.org/TR/selectors-4/#pseudo-class 1 1 - +pseudo-class:::first +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x10 +1 +1 +- +pseudo-class:::first +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x10 +1 +1 +- +pseudo-class:::left +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x6 +1 +1 +- +pseudo-class:::left +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x6 +1 +1 +- +pseudo-class:::right +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x8 +1 +1 +- +pseudo-class:::right +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x8 +1 +1 +- pseudo-classes dfn css22 @@ -162,6 +222,146 @@ css current https://drafts.csswg.org/css2/#pseudo-classes%E2%91%A0 +1 +- +pseudo-classes +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x23 +1 +1 +- +pseudo-classes +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x23 +1 +1 +- +pseudo-classes:::active +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x35 +1 +1 +- +pseudo-classes:::active +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x35 +1 +1 +- +pseudo-classes:::focus +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x38 +1 +1 +- +pseudo-classes:::focus +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x38 +1 +1 +- +pseudo-classes:::hover +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x32 +1 +1 +- +pseudo-classes:::hover +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x32 +1 +1 +- +pseudo-classes:::lang +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x41 +1 +1 +- +pseudo-classes:::lang +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x41 +1 +1 +- +pseudo-classes:::link +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x26 +1 +1 +- +pseudo-classes:::link +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x26 +1 +1 +- +pseudo-classes:::visited +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x29 +1 +1 +- +pseudo-classes:::visited +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x29 +1 1 - pseudo-compound selector @@ -202,6 +402,16 @@ css-view-transitions current https://drafts.csswg.org/css-view-transitions-1/#pseudo-element-root +1 +- +pseudo-element root +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#pseudo-element-root + 1 - pseudo-element tree @@ -212,6 +422,16 @@ css-view-transitions current https://drafts.csswg.org/css-view-transitions-1/#pseudo-element-tree +1 +- +pseudo-element tree +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#pseudo-element-tree + 1 - pseudo-elements @@ -222,6 +442,166 @@ css current https://drafts.csswg.org/css2/#pseudo-elements%E2%91%A0 +1 +- +pseudo-elements +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x22 +1 +1 +- +pseudo-elements +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x22 +1 +1 +- +pseudo-elements:::after +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x5 +1 +1 +- +pseudo-elements:::after +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x5 +1 +1 +- +pseudo-elements:::after +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x59 +1 +1 +- +pseudo-elements:::after +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x59 +1 +1 +- +pseudo-elements:::before +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x2 +1 +1 +- +pseudo-elements:::before +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x2 +1 +1 +- +pseudo-elements:::before +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x57 +1 +1 +- +pseudo-elements:::before +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x57 +1 +1 +- +pseudo-elements:::first-letter +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x50 +1 +1 +- +pseudo-elements:::first-letter +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x50 +1 +1 +- +pseudo-elements:::first-line +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo +1 +1 +- +pseudo-elements:::first-line +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo +1 +1 +- +pseudo-units +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-pseudo-units + +1 +- +pseudo-units +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-pseudo-units + 1 - pseudoElement @@ -380,3 +760,44 @@ https://www.w3.org/TR/cssom-1/#dom-window-getcomputedstyle-elt-pseudoelt-pseudoe Window/getComputedStyle(elt, pseudoElt) Window/getComputedStyle(elt) - +pstevaluate +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#pstevaluate + +1 +- +pstfinalize +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#pstfinalize + +1 +- +pstkeycommitments +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#pstkeycommitments + +1 +- +pstpretokens +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#request-pstpretokens + +1 +request +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pt.data b/bikeshed/spec-data/readonly/anchors/anchors-pt.data index 135dde7a96..b3cb7b9f3e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pt.data @@ -1,3 +1,43 @@ +<pt-class-selector> +type +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#typedef-pt-class-selector +1 +1 +- +<pt-class-selector> +type +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#typedef-pt-class-selector +1 +1 +- +<pt-name-and-class-selector> +type +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#typedef-pt-name-and-class-selector +1 +1 +- +<pt-name-and-class-selector> +type +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#typedef-pt-name-and-class-selector +1 +1 +- <pt-name-selector> type css-view-transitions-1 @@ -95,25 +135,3 @@ https://www.w3.org/TR/css-typed-om-1/#dom-css-pt 1 CSS - -ptr -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-ptr - -1 -syntax_kw -- -ptr -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-ptr - -1 -syntax_kw -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-pu.data b/bikeshed/spec-data/readonly/anchors/anchors-pu.data index dfa1db3bbe..9258e9bafa 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-pu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-pu.data @@ -1,3 +1,14 @@ +"public" +enum-value +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#dom-ipaddressspace-public +1 +1 +IPAddressSpace +- "public-key" enum-value webauthn-3 @@ -31,28 +42,6 @@ https://w3c.github.io/push-api/#dfn-push 1 - "push" -enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationhistorybehavior-push -1 -1 -NavigationHistoryBehavior -- -"push" -enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationtype-push -1 -1 -NavigationType -- -"push" permission push-api push-api @@ -82,6 +71,16 @@ https://www.w3.org/TR/webauthn-3/#publickeycredential 1 1 - +PublicKeyCredentialClientCapabilities +typedef +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#typedefdef-publickeycredentialclientcapabilities +1 +1 +- PublicKeyCredentialCreationOptions dictionary webauthn-3 @@ -112,6 +111,16 @@ https://w3c.github.io/webauthn/#dictdef-publickeycredentialcreationoptionsjson 1 1 - +PublicKeyCredentialCreationOptionsJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialcreationoptionsjson +1 +1 +- PublicKeyCredentialDescriptor dictionary webauthn-3 @@ -142,6 +151,16 @@ https://w3c.github.io/webauthn/#dictdef-publickeycredentialdescriptorjson 1 1 - +PublicKeyCredentialDescriptorJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptorjson +1 +1 +- PublicKeyCredentialEntity dictionary webauthn-3 @@ -162,6 +181,26 @@ https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialentity 1 1 - +PublicKeyCredentialHints +enum +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#enumdef-publickeycredentialhints +1 +1 +- +PublicKeyCredentialHints +enum +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#enumdef-publickeycredentialhints +1 +1 +- PublicKeyCredentialJSON typedef webauthn-3 @@ -172,6 +211,16 @@ https://w3c.github.io/webauthn/#typedefdef-publickeycredentialjson 1 1 - +PublicKeyCredentialJSON +typedef +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#typedefdef-publickeycredentialjson +1 +1 +- PublicKeyCredentialParameters dictionary webauthn-3 @@ -222,6 +271,16 @@ https://w3c.github.io/webauthn/#dictdef-publickeycredentialrequestoptionsjson 1 1 - +PublicKeyCredentialRequestOptionsJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialrequestoptionsjson +1 +1 +- PublicKeyCredentialRpEntity dictionary webauthn-3 @@ -292,6 +351,16 @@ https://w3c.github.io/webauthn/#dictdef-publickeycredentialuserentityjson 1 1 - +PublicKeyCredentialUserEntityJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentityjson +1 +1 +- PurchaseDetails dictionary digital-goods @@ -572,6 +641,16 @@ https://webidl.spec.whatwg.org/#PutForwards 1 1 - +PutValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-putvalue +1 +1 +- PutValue(V, W) abstract-op ecmascript @@ -714,6 +793,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-pubkeyc 1 PublicKeyCredentialCreationOptions - +pubKeyCredParams +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-pubkeycredparams +1 +1 +PublicKeyCredentialCreationOptionsJSON +- pubkeycredparams dfn fido-v2.1 @@ -749,11 +839,11 @@ KeyType - public dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#ip-address-space-public +https://wicg.github.io/private-network-access/#ip-address-space-public 1 1 IP address space @@ -765,16 +855,16 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-EcdhKeyDeriveParams-public -1 + 1 - public address dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#public-address +https://wicg.github.io/private-network-access/#public-address 1 - @@ -808,6 +898,16 @@ https://dom.spec.whatwg.org/#concept-doctype-publicid 1 1 DocumentType +- +public key +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-public-key + + - public key dfn @@ -819,6 +919,16 @@ https://wicg.github.io/webpackage/loading.html#certificate-public-key 1 certificate +- +public key +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-public-key + + - public key credential dfn @@ -975,6 +1085,17 @@ webauthn-3 webauthn 3 current +https://w3c.github.io/webauthn/#dom-authenticatorattestationresponsejson-publickey +1 +1 +AuthenticatorAttestationResponseJSON +- +publicKey +dict-member +webauthn-3 +webauthn +3 +current https://w3c.github.io/webauthn/#dom-credentialcreationoptions-publickey 1 1 @@ -1003,6 +1124,28 @@ https://w3c.github.io/webcrypto/#dfn-CryptoKeyPair-publicKey CryptoKeyPair - publicKey +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-publickey +1 +1 +credential record +- +publicKey +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponsejson-publickey +1 +1 +AuthenticatorAttestationResponseJSON +- +publicKey dict-member webauthn-3 webauthn @@ -1023,6 +1166,88 @@ https://www.w3.org/TR/webauthn-3/#dom-credentialrequestoptions-publickey 1 1 CredentialRequestOptions +- +publicKeyAlgorithm +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-authenticatorattestationresponsejson-publickeyalgorithm +1 +1 +AuthenticatorAttestationResponseJSON +- +publicKeyAlgorithm +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponsejson-publickeyalgorithm +1 +1 +AuthenticatorAttestationResponseJSON +- +publication context +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-publication-context + +1 +- +publication context +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-publication-context + +1 +- +publication date +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-publication-date + +1 +- +publication date +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-publication-date + +1 +- +publication manifest +dfn +audiobooks +audiobooks +1 +current +https://w3c.github.io/audiobooks/#dfn-publication-manifest + + +- +publication manifest +dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-publication-manifest + + - publication resource dfn @@ -1042,6 +1267,46 @@ epub snapshot https://www.w3.org/TR/epub-33/#dfn-publication-resource 1 +1 +- +publication type +dfn +audiobooks +audiobooks +1 +current +https://w3c.github.io/audiobooks/#dfn-publication-type + +1 +- +publication type +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-publication-type + +1 +- +publication type +dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-publication-type + +1 +- +publication type +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-publication-type + 1 - publicexponent @@ -1051,7 +1316,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaKeyGenParams-publicExponent -1 + 1 - publickey @@ -1061,6 +1326,26 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKeyPair-publicKey + +1 +- +publickey-credentials-create-feature +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#publickey-credentials-create-feature +1 +1 +- +publickey-credentials-create-feature +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#publickey-credentials-create-feature 1 1 - @@ -1137,6 +1422,17 @@ https://www.w3.org/TR/webtransport/#webtransportreceivestream-pull-bytes 1 WebTransportReceiveStream - +pull from bytes +dfn +streams +streams +1 +current +https://streams.spec.whatwg.org/#readablestream-pull-from-bytes +1 +1 +ReadableStream +- pull source dfn streams @@ -1237,6 +1533,16 @@ webtransport snapshot https://www.w3.org/TR/webtransport/#pullunidirectionalstream +1 +- +pulse() +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-pulse + 1 - pulse() @@ -1289,10 +1595,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-punctuation +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-punctuation 1 1 -text-spacing +text-autospace - punctuation value @@ -1327,6 +1633,27 @@ https://wicg.github.io/digital-goods/#dom-purchasedetails-purchasetoken 1 PurchaseDetails - +purge expired bit debits from all navigation entropy ledgers +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#purge-expired-bit-debits-from-all-navigation-entropy-ledgers + +1 +- +purge expired entries from the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-purge-expired-entries-from-the-database + +1 +shared storage database +- purple dfn css-color-3 @@ -1347,6 +1674,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-purple 1 1 <color> +<named-color> - purple value @@ -1379,6 +1707,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-purple 1 1 <color> +<named-color> - purpose dfn @@ -1414,14 +1743,26 @@ https://encoding.spec.whatwg.org/#concept-stream-push I/O queue - push -dfn +enum-value html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#hh-push - +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigationhistorybehavior-push 1 +1 +NavigationHistoryBehavior +- +push +enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtype-push +1 +1 +NavigationType - push dfn @@ -1580,17 +1921,6 @@ value css-ui-4 css-ui 4 -current -https://drafts.csswg.org/css-ui-4/#valdef-appearance-push-button -1 -1 -appearance -- -push-button -value -css-ui-4 -css-ui -4 snapshot https://www.w3.org/TR/css-ui-4/#valdef-appearance-push-button 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-qu.data b/bikeshed/spec-data/readonly/anchors/anchors-qu.data index eb360c97b9..d54dac5531 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-qu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-qu.data @@ -20,6 +20,28 @@ https://www.w3.org/TR/webcodecs/#dom-latencymode-quality 1 LatencyMode - +"quantizer" +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderbitratemode-quantizer +1 +1 +VideoEncoderBitrateMode +- +"quantizer" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderbitratemode-quantizer +1 +1 +VideoEncoderBitrateMode +- "quota-exceeded" enum-value background-fetch @@ -31,13 +53,33 @@ https://wicg.github.io/background-fetch/#dom-backgroundfetchfailurereason-quota- 1 BackgroundFetchFailureReason - -<query-in-parens> +<qualified-rule-list> type -css-contain-3 -css-contain +css-syntax-3 +css-syntax 3 current -https://drafts.csswg.org/css-contain-3/#typedef-query-in-parens +https://drafts.csswg.org/css-syntax-3/#typedef-qualified-rule-list +1 +1 +- +<query-in-parens> +type +css-conditional-5 +css-conditional +5 +current +https://drafts.csswg.org/css-conditional-5/#typedef-query-in-parens +1 +1 +- +<query-in-parens> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-query-in-parens 1 1 - @@ -109,6 +151,26 @@ css-content snapshot https://www.w3.org/TR/css-content-3/#typedef-quote 1 +1 +- +<quotient/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_quotient + +1 +- +<quotient/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_quotient + 1 - QUERY_RESOLVE @@ -194,6 +256,16 @@ https://webidl.spec.whatwg.org/#quotaexceedederror 1 1 - +QuoteJSONString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-quotejsonstring +1 +1 +- QuoteJSONString(value) abstract-op ecmascript @@ -430,6 +502,36 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-quad +1 +- +quad +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-quad + + +- +quad width +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#em-width +1 +1 +- +quad width +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#em-width +1 1 - quadraticCurveTo(cpx, cpy, x, y) @@ -724,16 +826,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-qualifiers -- -qualifiers -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-qualifiers - -1 - quality dfn @@ -746,6 +838,61 @@ https://html.spec.whatwg.org/multipage/canvas.html#image-encode-options-quality 1 - quality +attribute +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrcompositionlayer-quality +1 +1 +XRCompositionLayer +- +quality +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrnearmeshfeature-quality +1 +1 +XRNearMeshFeature +- +quality +attribute +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrnearmeshfeature-quality-quality +1 +1 +XRNearMeshFeature/quality +- +quality +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-quality +1 +1 +XRWorldMeshFeature +- +quality +attribute +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-quality-quality +1 +1 +XRWorldMeshFeature/quality +- +quality enum-value webcodecs webcodecs @@ -767,6 +914,17 @@ https://www.w3.org/TR/webcodecs/#dom-latencymode-quality 1 LatencyMode - +quality +attribute +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrcompositionlayer-quality +1 +1 +XRCompositionLayer +- qualityLimitationDurations dict-member webrtc-stats @@ -853,38 +1011,126 @@ https://www.w3.org/TR/webxr/#quantization 1 - -quaternion +quantizer +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderbitratemode-quantizer +1 +1 +VideoEncoderBitrateMode +- +quantizer dict-member -orientation-sensor -orientation-sensor +webcodecs-av1-codec-registration +webcodecs-av1-codec-registration 1 current -https://w3c.github.io/orientation-sensor/#dom-absoluteorientationreadingvalues-quaternion +https://w3c.github.io/webcodecs/av1_codec_registration.html#dom-videoencoderencodeoptionsforav1-quantizer 1 1 -AbsoluteOrientationReadingValues +VideoEncoderEncodeOptionsForAv1 - -quaternion -attribute -orientation-sensor -orientation-sensor +quantizer +dict-member +webcodecs-avc-codec-registration +webcodecs-avc-codec-registration 1 current -https://w3c.github.io/orientation-sensor/#dom-orientationsensor-quaternion +https://w3c.github.io/webcodecs/avc_codec_registration.html#dom-videoencoderencodeoptionsforavc-quantizer 1 1 -OrientationSensor +VideoEncoderEncodeOptionsForAvc - -quaternion +quantizer +dict-member +webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +1 +current +https://w3c.github.io/webcodecs/hevc_codec_registration.html#dom-videoencoderencodeoptionsforhevc-quantizer +1 +1 +VideoEncoderEncodeOptionsForHevc +- +quantizer +dict-member +webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +1 +current +https://w3c.github.io/webcodecs/vp9_codec_registration.html#dom-videoencoderencodeoptionsforvp9-quantizer +1 +1 +VideoEncoderEncodeOptionsForVp9 +- +quantizer +dict-member +webcodecs-av1-codec-registration +webcodecs-av1-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-av1-codec-registration/#dom-videoencoderencodeoptionsforav1-quantizer +1 +1 +VideoEncoderEncodeOptionsForAv1 +- +quantizer +dict-member +webcodecs-avc-codec-registration +webcodecs-avc-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-avc-codec-registration/#dom-videoencoderencodeoptionsforavc-quantizer +1 +1 +VideoEncoderEncodeOptionsForAvc +- +quantizer +dict-member +webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dom-videoencoderencodeoptionsforhevc-quantizer +1 +1 +VideoEncoderEncodeOptionsForHevc +- +quantizer dict-member +webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-vp9-codec-registration/#dom-videoencoderencodeoptionsforvp9-quantizer +1 +1 +VideoEncoderEncodeOptionsForVp9 +- +quantizer +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderbitratemode-quantizer +1 +1 +VideoEncoderBitrateMode +- +quaternion +attribute orientation-sensor orientation-sensor 1 -snapshot -https://www.w3.org/TR/orientation-sensor/#dom-absoluteorientationreadingvalues-quaternion +current +https://w3c.github.io/orientation-sensor/#dom-orientationsensor-quaternion 1 1 -AbsoluteOrientationReadingValues +OrientationSensor - quaternion attribute @@ -1113,6 +1359,17 @@ IDBObjectStore/openKeyCursor(query) IDBObjectStore/openKeyCursor() - query +dfn +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-query + +1 +digital credential +- +query argument indexeddb-3 indexeddb @@ -1337,6 +1594,16 @@ https://fs.spec.whatwg.org/#entry-query-access 1 file system entry - +query ad k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#query-ad-k-anonymity-count + +1 +- query cache dfn service-workers @@ -1355,15 +1622,35 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#query-cache +1 +- +query component ad k-anonymity count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#query-component-ad-k-anonymity-count + 1 - query container dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#query-container +https://drafts.csswg.org/css-conditional-5/#query-container +1 +1 +- +query container +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#query-container 1 1 - @@ -1379,11 +1666,21 @@ https://www.w3.org/TR/css-contain-3/#query-container - query container name dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#query-container-name +https://drafts.csswg.org/css-conditional-5/#query-container-name +1 +1 +- +query container name +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#query-container-name 1 1 - @@ -1417,54 +1714,54 @@ https://wicg.github.io/file-system-access/#querying-file-system-permission 1 - -query object +query generated bid k-anonymity count dfn -url -url +turtledove +turtledove 1 current -https://url.spec.whatwg.org/#concept-url-query-object +https://wicg.github.io/turtledove/#query-generated-bid-k-anonymity-count 1 -URL - -query parameter +query k-anonymity count dfn -ift -ift -1 -snapshot -https://www.w3.org/TR/IFT/#query-parameter +turtledove +turtledove 1 +current +https://wicg.github.io/turtledove/#query-k-anonymity-count + 1 - -query percent-encode set +query object dfn url url 1 current -https://url.spec.whatwg.org/#query-percent-encode-set +https://url.spec.whatwg.org/#concept-url-query-object 1 +URL - -query set state +query percent-encode set dfn -webgpu -webgpu +url +url 1 current -https://gpuweb.github.io/gpuweb/#query-set-state +https://url.spec.whatwg.org/#query-percent-encode-set 1 - -query set state +query reporting id k-anonymity count dfn -webgpu -webgpu +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/webgpu/#query-set-state +current +https://wicg.github.io/turtledove/#query-reporting-id-k-anonymity-count 1 - @@ -1497,16 +1794,6 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#query-the-bluetooth-cache -1 -- -query the sanitizer config -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#query-the-sanitizer-config - 1 - query() @@ -1597,27 +1884,27 @@ https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-resolvequeryset-queryset-fir 1 GPUCommandEncoder/resolveQuerySet(querySet, firstQuery, queryCount, destination, destinationOffset) - -queryIndex -argument -webgpu -webgpu +queryFeatureSupport(feature) +method +turtledove +turtledove 1 current -https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-writetimestamp-queryset-queryindex-queryindex +https://wicg.github.io/turtledove/#dom-protectedaudience-queryfeaturesupport 1 1 -GPUCommandEncoder/writeTimestamp(querySet, queryIndex) +ProtectedAudience - -queryIndex -dict-member -webgpu -webgpu +queryHandwritingRecognizer(constraint) +method +handwriting-recognition +handwriting-recognition 1 current -https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestampwrite-queryindex +https://wicg.github.io/handwriting-recognition/#dom-navigator-queryhandwritingrecognizer 1 1 -GPUComputePassTimestampWrite +Navigator - queryIndex argument @@ -1631,39 +1918,6 @@ https://gpuweb.github.io/gpuweb/#dom-gpurenderpassencoder-beginocclusionquery-qu GPURenderPassEncoder/beginOcclusionQuery(queryIndex) - queryIndex -dict-member -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestampwrite-queryindex -1 -1 -GPURenderPassTimestampWrite -- -queryIndex -argument -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-writetimestamp-queryset-queryindex-queryindex -1 -1 -GPUCommandEncoder/writeTimestamp(querySet, queryIndex) -- -queryIndex -dict-member -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestampwrite-queryindex -1 -1 -GPUComputePassTimestampWrite -- -queryIndex argument webgpu webgpu @@ -1674,17 +1928,6 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderpassencoder-beginocclusionquery-query 1 GPURenderPassEncoder/beginOcclusionQuery(queryIndex) - -queryIndex -dict-member -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestampwrite-queryindex -1 -1 -GPURenderPassTimestampWrite -- queryLocalFonts() method local-font-access @@ -1763,26 +2006,15 @@ https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-resolvequeryset-queryset- GPUCommandEncoder/resolveQuerySet(querySet, firstQuery, queryCount, destination, destinationOffset) - querySet -argument -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-writetimestamp-queryset-queryindex-queryset -1 -1 -GPUCommandEncoder/writeTimestamp(querySet, queryIndex) -- -querySet dict-member webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestampwrite-queryset +https://gpuweb.github.io/gpuweb/#dom-gpucomputepasstimestampwrites-queryset 1 1 -GPUComputePassTimestampWrite +GPUComputePassTimestampWrites - querySet dict-member @@ -1790,10 +2022,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestampwrite-queryset +https://gpuweb.github.io/gpuweb/#dom-gpurenderpasstimestampwrites-queryset 1 1 -GPURenderPassTimestampWrite +GPURenderPassTimestampWrites - querySet argument @@ -1807,15 +2039,15 @@ https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-resolvequeryset-queryset-fir GPUCommandEncoder/resolveQuerySet(querySet, firstQuery, queryCount, destination, destinationOffset) - querySet -argument +dict-member webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-writetimestamp-queryset-queryindex-queryset +https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestampwrites-queryset 1 1 -GPUCommandEncoder/writeTimestamp(querySet, queryIndex) +GPUComputePassTimestampWrites - querySet dict-member @@ -1823,21 +2055,20 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpucomputepasstimestampwrite-queryset +https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestampwrites-queryset 1 1 -GPUComputePassTimestampWrite +GPURenderPassTimestampWrites - -querySet -dict-member -webgpu -webgpu +queryhandwritingrecognizer(constraint) +dfn +handwriting-recognition +handwriting-recognition 1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpurenderpasstimestampwrite-queryset +current +https://wicg.github.io/handwriting-recognition/#queryhandwritingrecognizer-constraint 1 1 -GPURenderPassTimestampWrite - querying file system permission dfn @@ -1871,6 +2102,17 @@ https://infra.spec.whatwg.org/#queue 1 - queue +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#task-handle-queue + +1 +task handle +- +queue attribute webgpu webgpu @@ -1881,6 +2123,26 @@ https://www.w3.org/TR/webgpu/#dom-gpudevice-queue 1 GPUDevice - +queue a "message" event +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-queue-a-message-event + +1 +- +queue a "message" event +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-queue-a-message-event + +1 +- queue a bgfetch task dfn background-fetch @@ -1969,6 +2231,16 @@ html current https://html.spec.whatwg.org/multipage/browsers.html#queue-a-cross-origin-embedder-policy-inheritance-violation +1 +- +queue a details toggle event task +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interactive-elements.html#queue-a-details-toggle-event-task + 1 - queue a fetch task @@ -2049,6 +2321,26 @@ dom current https://dom.spec.whatwg.org/#queue-a-mutation-record +1 +- +queue a navigation performanceentry +dfn +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dfn-queue-a-navigation-performanceentry +1 +1 +- +queue a navigation performanceentry +dfn +performance-timeline +performance-timeline +1 +snapshot +https://www.w3.org/TR/performance-timeline/#dfn-queue-a-navigation-performanceentry +1 1 - queue a network task @@ -2141,16 +2433,6 @@ compute-pressure snapshot https://www.w3.org/TR/compute-pressure/#dfn-queue-a-record -1 -- -queue a report for delivery -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#queue-a-report-for-delivery - 1 - queue a scheduler task @@ -2351,6 +2633,36 @@ intersection-observer snapshot https://www.w3.org/TR/intersection-observer/#queue-an-intersectionobserverentry +1 +- +queue an ml task +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#queue-an-ml-task + +1 +- +queue an ml task +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#queue-an-ml-task + +1 +- +queue reports for delivery +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#queue-reports-for-delivery + 1 - queue the navigation timing entry @@ -2411,6 +2723,26 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#queue-timeline +1 +- +queue timeline property +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#queue-timeline-property + +1 +- +queue timeline property +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#queue-timeline-property + 1 - queue violation reports for accesses @@ -2423,23 +2755,23 @@ https://html.spec.whatwg.org/multipage/browsers.html#coop-violation-access 1 - -queue-timeline example definition +queue-timeline example term dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#queue-timeline-example-definition +https://gpuweb.github.io/gpuweb/#queue-timeline-example-term - -queue-timeline example definition +queue-timeline example term dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#queue-timeline-example-definition +https://www.w3.org/TR/webgpu/#queue-timeline-example-term - @@ -2454,15 +2786,16 @@ https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-queuemic 1 WindowOrWorkerGlobalScope - -queuing a scheduler task +queued dfn -scheduling-apis -scheduling-apis +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/scheduling-apis/#queue-a-scheduler-task +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-queued 1 +aggregatable report - queuing strategy dfn @@ -2517,23 +2850,65 @@ https://storage.spec.whatwg.org/#storage-endpoint-quota 1 storage endpoint - -quotaexceedederror +quota +dict-member +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucketoptions-quota +1 +1 +StorageBucketOptions +- +quota value dfn -encrypted-media -encrypted-media +storage-buckets +storage-buckets 1 current -https://w3c.github.io/encrypted-media/#dfn-QuotaExceededError +https://wicg.github.io/storage-buckets/#storagebucket-quota-value 1 +StorageBucket - quotaexceedederror dfn +encrypted-media-2 encrypted-media -encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-quotaexceedederror + 1 +- +quotaexceedederror +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#dfn-QuotaExceededError +https://www.w3.org/TR/encrypted-media-2/#dfn-quotaexceedederror + +1 +- +quotation mark system +dfn +css-content-3 +css-content +3 +current +https://drafts.csswg.org/css-content-3/#quotation-mark-system + +1 +- +quote depth +dfn +css-content-3 +css-content +3 +current +https://drafts.csswg.org/css-content-3/#quote-depth 1 - @@ -2558,6 +2933,26 @@ https://drafts.csswg.org/css2/#propdef-quotes 1 - quotes +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#propdef-quotes +1 +1 +- +quotes +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#propdef-quotes +1 +1 +- +quotes dfn css22 css diff --git a/bikeshed/spec-data/readonly/anchors/anchors-r3.data b/bikeshed/spec-data/readonly/anchors/anchors-r3.data index a570361737..023dde7eba 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-r3.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-r3.data @@ -64,3 +64,69 @@ https://www.w3.org/TR/webgpu/#dom-gputextureformat-r32uint 1 GPUTextureFormat - +r32float +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-r32float + +1 +texel format +- +r32float +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-r32float + +1 +texel format +- +r32sint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-r32sint + +1 +texel format +- +r32sint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-r32sint + +1 +texel format +- +r32uint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-r32uint + +1 +texel format +- +r32uint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-r32uint + +1 +texel format +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-r_.data b/bikeshed/spec-data/readonly/anchors/anchors-r_.data index 05483fed4e..3500bd482d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-r_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-r_.data @@ -57,6 +57,17 @@ https://gpuweb.github.io/gpuweb/#dom-gpucolordict-r GPUColorDict - r +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpucolor-r + +1 +GPUColor +- +r property svg2 svg @@ -188,6 +199,31 @@ rgb() - r argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-cssrgb-r-g-b-alpha-r +1 +1 +CSSRGB/CSSRGB(r, g, b, alpha) +CSSRGB/constructor(r, g, b, alpha) +CSSRGB/CSSRGB(r, g, b) +CSSRGB/constructor(r, g, b) +- +r +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssrgb-r +1 +1 +CSSRGB +- +r +argument service-workers service-workers 1 @@ -208,3 +244,14 @@ https://www.w3.org/TR/webgpu/#dom-gpucolordict-r 1 GPUColorDict - +r +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#gpucolor-r + +1 +GPUColor +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ra.data b/bikeshed/spec-data/readonly/anchors/anchors-ra.data index 4006e113a6..571837d7fc 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ra.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ra.data @@ -1,3 +1,14 @@ +"race-network-and-fetch-handler" +enum-value +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routersourceenum-race-network-and-fetch-handler +1 +1 +RouterSourceEnum +- %RangeError% exception ecmascript @@ -18,6 +29,144 @@ https://html.spec.whatwg.org/multipage/infrastructure.html#rangeerror.prototype 1 - +<radial-extent> +type +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#typedef-radial-extent +1 +1 +- +<radial-extent> +type +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#typedef-radial-extent +1 +1 +- +<radial-gradient-syntax> +type +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#typedef-radial-gradient-syntax +1 +1 +- +<radial-gradient-syntax> +type +css-images-4 +css-images +4 +current +https://drafts.csswg.org/css-images-4/#typedef-radial-gradient-syntax +1 +1 +- +<radial-gradient-syntax> +type +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#typedef-radial-gradient-syntax +1 +1 +- +<radial-shape> +type +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#typedef-radial-shape +1 +1 +- +<radial-shape> +value +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-shape +1 +1 +radial-gradient() +repeating-radial-gradient() +- +<radial-shape> +type +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#typedef-radial-shape +1 +1 +- +<radial-shape> +value +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-radial-shape +1 +1 +radial-gradient() +repeating-radial-gradient() +- +<radial-size> +type +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#typedef-radial-size +1 +1 +- +<radial-size> +value +css-images-3 +css-images +3 +current +https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-size +1 +1 +radial-gradient() +repeating-radial-gradient() +- +<radial-size> +type +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#typedef-radial-size +1 +1 +- +<radial-size> +value +css-images-3 +css-images +3 +snapshot +https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-radial-size +1 +1 +radial-gradient() +repeating-radial-gradient() +- <random-caching-options> type css-values-5 @@ -48,6 +197,37 @@ https://www.w3.org/TR/css-values-4/#ratio-value 1 1 - +<rationals/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_rationals + +1 +- +<rationals/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_rationals + +1 +- +<ray()> +value +motion-1 +motion +1 +current +https://drafts.fxtf.org/motion-1/#valdef-offset-path-ray +1 +1 +offset-path +- <ray-size> type motion-1 @@ -130,7 +310,7 @@ https://dom.spec.whatwg.org/#rangeexception 1 1 - -RawBytesToNumeric(type, rawBytes, isLittleEndian) +RawBytesToNumeric abstract-op ecmascript ecmascript @@ -140,27 +320,36 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-rawbytestonumeric 1 1 - -[[RateControlFeedbackMinInterval]] -attribute -webtransport -webtransport +RawBytesToNumeric(type, rawBytes, isLittleEndian) +abstract-op +ecmascript +ecmascript 1 current -https://w3c.github.io/webtransport/#dom-webtransport-ratecontrolfeedbackmininterval-slot +https://tc39.es/ecma262/multipage/structured-data.html#sec-rawbytestonumeric 1 1 -WebTransport - -[[RateControlFeedback]] -attribute -webtransport -webtransport +race response +dfn +service-workers +service-workers 1 current -https://w3c.github.io/webtransport/#dom-webtransport-ratecontrolfeedback-slot +https://w3c.github.io/ServiceWorker/#dfn-race-response + 1 +- +race response map +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#serviceworkerglobalscope-race-response-map + 1 -WebTransport +ServiceWorkerGlobalScope - race(iterable) method @@ -251,16 +440,6 @@ https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient - radial-gradient() function -css-images-4 -css-images -4 -current -https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient -1 -1 -- -radial-gradient() -function css-images-3 css-images 3 @@ -560,7 +739,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#radio-button-state-(type=radio) +https://html.spec.whatwg.org/multipage/input.html#radio-button-state-(type%3Dradio) 1 1 input @@ -911,7 +1090,7 @@ media-source current https://w3c.github.io/media-source/#random-access-point 1 - +1 - random access point dfn @@ -921,7 +1100,7 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#random-access-point 1 - +1 - random functions dfn @@ -986,33 +1165,43 @@ https://w3c.github.io/webcrypto/#dfn-Crypto-method-randomUUID 1 Crypto - -randomized aggregatable report delay +randomized aggregatable attribution report delay dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#randomized-aggregatable-report-delay +https://wicg.github.io/attribution-reporting-api/#randomized-aggregatable-attribution-report-delay 1 - -randomized event-source trigger rate +randomized null attribution report rate excluding source registration time dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#randomized-event-source-trigger-rate +https://wicg.github.io/attribution-reporting-api/#randomized-null-attribution-report-rate-excluding-source-registration-time 1 - -randomized navigation-source trigger rate +randomized null attribution report rate including source registration time dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#randomized-navigation-source-trigger-rate +https://wicg.github.io/attribution-reporting-api/#randomized-null-attribution-report-rate-including-source-registration-time + +1 +- +randomized report delay +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#randomized-report-delay 1 - @@ -1027,6 +1216,16 @@ https://wicg.github.io/attribution-reporting-api/#attribution-source-randomized- 1 attribution source - +randomized response output configuration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#randomized-response-output-configuration + +1 +- randomized source response dfn attribution-reporting-api @@ -1119,7 +1318,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#range-state-(type=range) +https://html.spec.whatwg.org/multipage/input.html#range-state-(type%3Drange) 1 1 input @@ -1134,16 +1333,6 @@ https://w3c.github.io/IndexedDB/#cursor-range 1 cursor -- -range -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_range -1 - - range dfn @@ -1190,14 +1379,15 @@ https://www.w3.org/TR/css-counter-styles-3/#dom-csscounterstylerule-range CSSCounterStyleRule - range -dfn -i18n-glossary -i18n-glossary +dict-member +scroll-animations-1 +scroll-animations 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_range +https://www.w3.org/TR/scroll-animations-1/#dom-animationtimeoptions-range 1 - +1 +AnimationTimeOptions - range dfn @@ -1250,63 +1440,63 @@ https://www.w3.org/TR/mediaqueries-5/#range-context 1 1 - -range removal +range diagnostic filter dfn -media-source-2 -media-source -2 +wgsl +wgsl +1 current -https://w3c.github.io/media-source/#dfn-range-removal +https://gpuweb.github.io/gpuweb/wgsl/#range-diagnostic-filter 1 - -range removal +range diagnostic filter dfn -media-source-2 -media-source -2 +wgsl +wgsl +1 snapshot -https://www.w3.org/TR/media-source-2/#dfn-range-removal +https://www.w3.org/TR/WGSL/#range-diagnostic-filter 1 - -range-request optimized font +range end dfn -ift -ift +edit-context +edit-context 1 current -https://w3c.github.io/IFT/Overview.html#range-request-optimized-font +https://w3c.github.io/edit-context/#dfn-range-end 1 - -range-request optimized font +range removal dfn -ift -ift -1 -snapshot -https://www.w3.org/TR/IFT/#range-request-optimized-font +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-range-removal 1 - -range-request threshold +range removal dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#range-request-threshold +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-range-removal 1 - -range-request threshold +range start dfn -ift -ift +edit-context +edit-context 1 -snapshot -https://www.w3.org/TR/IFT/#range-request-threshold +current +https://w3c.github.io/edit-context/#dfn-range-start 1 - @@ -1345,6 +1535,28 @@ Selection - rangeEnd attribute +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dom-animation-rangeend +1 +1 +Animation +- +rangeEnd +dict-member +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dom-keyframeanimationoptions-rangeend +1 +1 +KeyframeAnimationOptions +- +rangeEnd +attribute edit-context edit-context 1 @@ -1432,28 +1644,15 @@ https://www.w3.org/TR/edit-context/#dom-textformatinit-rangeend TextFormatInit - rangeName -argument -scroll-animations-1 -scroll-animations -1 +dict-member +web-animations-2 +web-animations +2 current -https://drafts.csswg.org/scroll-animations-1/#dom-animationtimeline-getcurrenttime-rangename-rangename +https://drafts.csswg.org/web-animations-2/#dom-timelinerangeoffset-rangename 1 1 -AnimationTimeline/getCurrentTime(rangeName) -AnimationTimeline/getCurrentTime() -- -rangeName -argument -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#dom-animationtimeline-getcurrenttime-rangename-rangename -1 -1 -AnimationTimeline/getCurrentTime(rangeName) -AnimationTimeline/getCurrentTime() +TimelineRangeOffset - rangeOverflow attribute @@ -1468,6 +1667,28 @@ ValidityState - rangeStart attribute +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dom-animation-rangestart +1 +1 +Animation +- +rangeStart +dict-member +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dom-keyframeanimationoptions-rangestart +1 +1 +KeyframeAnimationOptions +- +rangeStart +attribute edit-context edit-context 1 @@ -1565,26 +1786,27 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-vali 1 ValidityState - -range_deltas +rank dfn -ift -ift +webnn +webnn 1 current -https://w3c.github.io/IFT/Overview.html#compressedset-range_deltas +https://webmachinelearning.github.io/webnn/#mloperand-rank 1 -CompressedSet +MLOperand - -rangelist +rank dfn -ift -ift +webnn +webnn 1 -current -https://w3c.github.io/IFT/Overview.html#rangelist +snapshot +https://www.w3.org/TR/webnn/#mloperand-rank 1 +MLOperand - rasterization mask dfn @@ -1719,37 +1941,35 @@ https://www.w3.org/TR/webauthn-3/#rate-limiting 1 - -rate-limit scope +rate obfuscation dfn -attribution-reporting-api -attribution-reporting-api +compute-pressure +compute-pressure 1 current -https://wicg.github.io/attribution-reporting-api/#rate-limit-scope +https://w3c.github.io/compute-pressure/#dfn-rate-obfuscation 1 - -rateControlFeedback -attribute -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransport-ratecontrolfeedback +rate obfuscation +dfn +compute-pressure +compute-pressure 1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-rate-obfuscation + 1 -WebTransport - -rateControlFeedbackMinInterval -attribute -webtransport -webtransport +rate-limit scope +dfn +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/webtransport/#dom-webtransport-ratecontrolfeedbackmininterval -1 +https://wicg.github.io/attribution-reporting-api/#rate-limit-scope + 1 -WebTransport - ratechange event @@ -1762,17 +1982,6 @@ https://html.spec.whatwg.org/multipage/media.html#event-media-ratechange 1 HTMLMediaElement - -ratecontrolfeedback -event -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#eventdef-webtransport-ratecontrolfeedback -1 -1 -WebTransport -- ratio dfn css-values-4 @@ -1888,6 +2097,28 @@ https://w3c.github.io/webcrypto/#dom-keyformat-raw 1 KeyFormat - +raw +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-raw +1 +1 +SmartCardConnectionState +- +raw +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardprotocol-raw +1 +1 +SmartCardProtocol +- raw text elements dfn html @@ -1953,6 +2184,17 @@ https://w3c.github.io/webauthn/#dom-registrationresponsejson-rawid RegistrationResponseJSON - rawId +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationresponsejson-rawid +1 +1 +AuthenticationResponseJSON +- +rawId attribute webauthn-3 webauthn @@ -1963,6 +2205,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-rawid 1 PublicKeyCredential - +rawId +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-registrationresponsejson-rawid +1 +1 +RegistrationResponseJSON +- rawValue dict-member shape-detection-api diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rc.data b/bikeshed/spec-data/readonly/anchors/anchors-rc.data index 580629e5ab..34fd3b7ea2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rc.data @@ -20,6 +20,39 @@ https://www.w3.org/TR/css-values-4/#rcap 1 <length> - +rcap unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#rcap +1 +1 +<length> +- +rcap(value) +method +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rcap +1 +1 +CSS +- +rcap(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rcap +1 +1 +CSS +- rcdata end tag name state dfn html @@ -82,3 +115,36 @@ https://www.w3.org/TR/css-values-4/#rch 1 <length> - +rch unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#rch +1 +1 +<length> +- +rch(value) +method +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rch +1 +1 +CSS +- +rch(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rch +1 +1 +CSS +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rd.data b/bikeshed/spec-data/readonly/anchors/anchors-rd.data index 2dba44b5fa..a1f5c7bb72 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rd.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rd.data @@ -96,6 +96,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-dataset +1 +- +rdf dataset +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-dataset + 1 - rdf document @@ -107,6 +117,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-document +- +rdf document +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-document + + - rdf entail dfn @@ -116,6 +136,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-rdf-entail +1 +- +rdf entail +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdf-entail + 1 - rdf graph @@ -126,6 +156,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-graph +1 +- +rdf graph +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-graph + 1 - rdf interpretation @@ -136,6 +176,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-rdf-interpretation +1 +- +rdf interpretation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdf-interpretation + 1 - rdf literal @@ -144,7 +194,17 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-literal +https://w3c.github.io/rdf-concepts/spec/#dfn-literal + +1 +- +rdf literal +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-literal 1 - @@ -197,6 +257,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-source +- +rdf source +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-source + + - rdf statement dfn @@ -204,7 +274,17 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-statement +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-statement + + +- +rdf statement +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-statement - @@ -216,6 +296,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-term +1 +- +rdf term +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-term + 1 - rdf terms @@ -226,6 +316,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-term +1 +- +rdf terms +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-term + 1 - rdf triple @@ -234,7 +334,17 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-triple +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-triple + +1 +- +rdf triple +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-triple 1 - @@ -246,6 +356,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-rdf-unsatisfiable +1 +- +rdf unsatisfiable +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdf-unsatisfiable + 1 - rdf vocabulary @@ -254,9 +374,39 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-vocabulary +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-vocabulary + + +- +rdf vocabulary +dfn +rdf12-semantics +rdf-semantics +1 +current +https://w3c.github.io/rdf-semantics/spec/#dfn-rdf-vocabulary + +1 +- +rdf vocabulary +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-vocabulary + +- +rdf vocabulary +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdf-vocabulary +1 - rdf-compatible xsd types dfn @@ -266,6 +416,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-compatible-xsd-types +1 +- +rdf-compatible xsd types +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-compatible-xsd-types + 1 - rdf/xml document @@ -276,6 +436,16 @@ rdf-xml current https://w3c.github.io/rdf-xml/spec/#dfn-rdf-xml-document +1 +- +rdf/xml document +dfn +rdf12-xml +rdf-xml +1 +snapshot +https://www.w3.org/TR/rdf12-xml/#dfn-rdf-xml-document + 1 - rdf:html @@ -286,7 +456,37 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-html +1 +- +rdf:html +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-html + +1 +- +rdf:json +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-json + +1 +- +rdf:json +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-json +1 - rdf:xmlliteral dfn @@ -296,7 +496,17 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-xmlliteral +1 +- +rdf:xmlliteral +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-xmlliteral +1 - rdfDirection dict-member @@ -320,6 +530,26 @@ https://www.w3.org/TR/json-ld11-api/#dom-jsonldoptions-rdfdirection 1 JsonLdOptions - +rdfc-1.0 +dfn +rdf-canon +rdf-canon +1 +current +https://w3c.github.io/rdf-canon/spec/#dfn-rdfc-1-0 +1 +1 +- +rdfc-1.0 +dfn +rdf-canon +rdf-canon +1 +snapshot +https://www.w3.org/TR/rdf-canon/#dfn-rdfc-1-0 +1 +1 +- rdfd1 dfn rdf12-semantics @@ -329,6 +559,36 @@ current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfd1 +- +rdfd1 +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfd1 + + +- +rdfd1a +dfn +rdf12-semantics +rdf-semantics +1 +current +https://w3c.github.io/rdf-semantics/spec/#dfn-rdfd1a + + +- +rdfd1a +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfd1a + + - rdfd2 dfn @@ -339,6 +599,16 @@ current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfd2 +- +rdfd2 +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfd2 + + - rdfdataset-add-graph dfn @@ -408,6 +678,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs-entails +1 +- +rdfs entails +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs-entails + 1 - rdfs interpretation @@ -418,6 +698,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs-interpretation +1 +- +rdfs interpretation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs-interpretation + 1 - rdfs vocabulary @@ -428,6 +718,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs-vocabulary +1 +- +rdfs vocabulary +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs-vocabulary + 1 - rdfs1 @@ -437,7 +737,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs1 + + +- +rdfs1 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs1 + - rdfs10 @@ -447,7 +757,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs10 + + +- +rdfs10 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs10 + - rdfs11 @@ -457,7 +777,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs11 + + +- +rdfs11 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs11 + - rdfs12 @@ -467,7 +797,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs12 + + +- +rdfs12 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs12 + - rdfs13 @@ -477,7 +817,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs13 + + +- +rdfs13 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs13 + - rdfs2 @@ -487,7 +837,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs2 + + +- +rdfs2 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs2 + - rdfs3 @@ -497,7 +857,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs3 + + +- +rdfs3 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs3 + - rdfs4a @@ -507,7 +877,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs4a + + +- +rdfs4a +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs4a + - rdfs4b @@ -517,7 +897,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs4b + + +- +rdfs4b +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs4b + - rdfs5 @@ -527,7 +917,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs5 + + +- +rdfs5 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs5 + - rdfs6 @@ -537,7 +937,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs6 + + +- +rdfs6 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs6 + - rdfs7 @@ -547,7 +957,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs7 + + +- +rdfs7 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs7 + - rdfs8 @@ -557,7 +977,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs8 + + +- +rdfs8 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs8 + - rdfs9 @@ -567,6 +997,16 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-rdfs9 + + +- +rdfs9 +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs9 + - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-re.data b/bikeshed/spec-data/readonly/anchors/anchors-re.data index cfc6e65aef..ae52e99f4b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-re.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-re.data @@ -9,6 +9,28 @@ https://wicg.github.io/file-system-access/#dom-filesystempermissionmode-read 1 FileSystemPermissionMode - +"read-only" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpustoragetextureaccess-read-only +1 +1 +GPUStorageTextureAccess +- +"read-only" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpustoragetextureaccess-read-only +1 +1 +GPUStorageTextureAccess +- "read-only-storage" enum-value webgpu @@ -31,6 +53,28 @@ https://www.w3.org/TR/webgpu/#dom-gpubufferbindingtype-read-only-storage 1 GPUBufferBindingType - +"read-write" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpustoragetextureaccess-read-write +1 +1 +GPUStorageTextureAccess +- +"read-write" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpustoragetextureaccess-read-write +1 +1 +GPUStorageTextureAccess +- "readonly" enum-value indexeddb-3 @@ -218,6 +262,17 @@ https://www.w3.org/TR/webnn/#dom-mlpaddingmode-reflection 1 MLPaddingMode - +"refresh" +enum-value +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-refreshpolicy-refresh +1 +1 +RefreshPolicy +- "region" enum-value css-layout-api-1 @@ -262,27 +317,27 @@ https://www.w3.org/TR/css-layout-api-1/#dom-breaktype-region 1 BreakType - -"relative-orientation" +"reject-promise" enum-value -generic-sensor -generic-sensor +long-animation-frames +long-animation-frames 1 current -https://w3c.github.io/sensors/#dom-mocksensortype-relative-orientation +https://w3c.github.io/long-animation-frames/#dom-scriptinvokertype-reject-promise 1 1 -MockSensorType +ScriptInvokerType - -"relative-orientation" +"relatedOrigins" enum-value -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-relative-orientation +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-relatedorigins 1 1 -MockSensorType +ClientCapability - "relaxed" enum-value @@ -339,16 +394,27 @@ https://fetch.spec.whatwg.org/#dom-requestcache-reload 1 RequestCache - -"reload" +"relu" enum-value -navigation-api -navigation-api +webnn +webnn 1 current -https://wicg.github.io/navigation-api/#dom-navigationtype-reload +https://webmachinelearning.github.io/webnn/#dom-mlrecurrentnetworkactivation-relu 1 1 -NavigationType +MLRecurrentNetworkActivation +- +"relu" +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlrecurrentnetworkactivation-relu +1 +1 +MLRecurrentNetworkActivation - "removed" enum-value @@ -430,37 +496,26 @@ GPUStencilOperation - "replace" enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationhistorybehavior-replace -1 -1 -NavigationHistoryBehavior -- -"replace" -enum-value -navigation-api -navigation-api +web-animations-1 +web-animations 1 -current -https://wicg.github.io/navigation-api/#dom-navigationtype-replace +snapshot +https://www.w3.org/TR/web-animations-1/#dom-compositeoperation-replace 1 1 -NavigationType +CompositeOperation +CompositeOperationOrAuto - "replace" enum-value -web-animations-1 +web-animations-2 web-animations -1 +2 snapshot -https://www.w3.org/TR/web-animations-1/#dom-compositeoperation-replace +https://www.w3.org/TR/web-animations-2/#dom-iterationcompositeoperation-replace 1 1 -CompositeOperation -CompositeOperationOrAuto +IterationCompositeOperation - "replace" enum-value @@ -552,6 +607,17 @@ UserVerificationRequirement - "required" enum-value +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequirement-required +1 +1 +CredentialMediationRequirement +- +"required" +enum-value webauthn-3 webauthn 3 @@ -615,6 +681,17 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-resolution 1 CSSNumericBaseType - +"resolve-promise" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptinvokertype-resolve-promise +1 +1 +ScriptInvokerType +- "reverse" enum-value web-animations-1 @@ -705,7 +782,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-%regexpstringiteratorprototype%-object +https://tc39.es/ecma262/multipage/text-processing.html#sec-%25regexpstringiteratorprototype%25-object 1 1 - @@ -727,6 +804,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-report-sample 1 +1 +- +'report-sample' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-report-sample + 1 - 'report-sample' @@ -849,6 +936,46 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#required-pseudo 1 +1 +- +<real/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_real + +1 +- +<real/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_real + +1 +- +<reals/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_reals + +1 +- +<reals/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_reals + 1 - <rectangular-color-space> @@ -881,6 +1008,27 @@ https://www.w3.org/TR/css-color-4/#typedef-rectangular-color-space 1 1 - +<rectangular-color-space> +type +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#typedef-rectangular-color-space +1 +1 +- +<referrerpolicy-modifier> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier-referrerpolicy-modifier +1 +1 +<request-url-modifier> +- <relative-real-selector-list> type selectors-4 @@ -949,6 +1097,26 @@ css current https://drafts.csswg.org/css2/#value-def-relative-size 1 +1 +- +<rem/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_rem + +1 +- +<rem/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_rem + 1 - <repeat-style> @@ -963,6 +1131,16 @@ https://drafts.csswg.org/css-backgrounds-3/#typedef-repeat-style - <repeat-style> type +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#typedef-repeat-style +1 +1 +- +<repeat-style> +type css-backgrounds-3 css-backgrounds 3 @@ -971,6 +1149,26 @@ https://www.w3.org/TR/css-backgrounds-3/#typedef-repeat-style 1 1 - +<repetition> +type +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#typedef-repetition +1 +1 +- +<request-url-modifier> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier +1 +1 +- <resolution> type css-values-3 @@ -1032,16 +1230,6 @@ https://drafts.csswg.org/css-lists-3/#valdef-counter-reset-reversed-counter-name 1 counter-reset - -@@replace -const -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols -1 -1 -- READ const webgpu @@ -1564,6 +1752,16 @@ https://streams.spec.whatwg.org/#readable-stream-byob-reader-read 1 1 - +ReadableStreamBYOBReaderReadOptions +dictionary +streams +streams +1 +current +https://streams.spec.whatwg.org/#dictdef-readablestreambyobreaderreadoptions +1 +1 +- ReadableStreamBYOBReaderRelease abstract-op streams @@ -1785,6 +1983,16 @@ https://streams.spec.whatwg.org/#readable-stream-error 1 1 - +ReadableStreamFromIterable +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#readable-stream-from-iterable +1 +1 +- ReadableStreamFulfillReadIntoRequest abstract-op streams @@ -1995,6 +2203,26 @@ https://www.w3.org/TR/media-source-2/#dom-readystate 1 1 - +RealTimeContribution +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-realtimecontribution +1 +1 +- +RealTimeReporting +interface +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#realtimereporting +1 +1 +- RecordingState enum mediastream-recording @@ -2085,6 +2313,16 @@ https://tc39.es/ecma262/multipage/reflection.html#sec-reflect-object 1 1 - +RefreshPolicy +enum +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#enumdef-refreshpolicy +1 +1 +- RegExp interface ecmascript @@ -2106,73 +2344,188 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp-pattern-flags 1 RegExp - -RegExpAlloc(newTarget) -abstract-op +RegExp.prototype %Symbol.match% (string) +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpalloc +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.match%25 1 1 +RegExp.prototype [ %Symbol.match% ] ( string ) - -RegExpBuiltinExec(R, S) -abstract-op +RegExp.prototype %Symbol.matchAll% (string) +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpbuiltinexec +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp-prototype-%25symbol.matchall%25 1 1 +RegExp.prototype [ %Symbol.matchAll% ] ( string ) - -RegExpCreate(P, F) -abstract-op +RegExp.prototype %Symbol.replace% (string, replaceValue) +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpcreate +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.replace%25 1 1 +RegExp.prototype [ %Symbol.replace% ] ( string, replaceValue ) - -RegExpExec(R, S) -abstract-op +RegExp.prototype %Symbol.search% (string) +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpexec +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.search%25 1 1 +RegExp.prototype [ %Symbol.search% ] ( string ) - -RegExpHasFlag(R, codeUnit) -abstract-op +RegExp.prototype %Symbol.split% (string, limit) +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-regexphasflag +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.split%25 1 1 +RegExp.prototype [ %Symbol.split% ] ( string, limit ) - -RegExpInitialize(obj, pattern, flags) +RegExpAlloc abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpinitialize +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpalloc 1 1 - -Region -interface -css-regions-1 -css-regions -1 -current -https://drafts.csswg.org/css-regions-1/#region +RegExpAlloc(newTarget) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpalloc +1 +1 +- +RegExpBuiltinExec +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpbuiltinexec +1 +1 +- +RegExpBuiltinExec(R, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpbuiltinexec +1 +1 +- +RegExpCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpcreate +1 +1 +- +RegExpCreate(P, F) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpcreate +1 +1 +- +RegExpExec +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpexec +1 +1 +- +RegExpExec(R, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpexec +1 +1 +- +RegExpHasFlag +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexphasflag +1 +1 +- +RegExpHasFlag(R, codeUnit) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexphasflag +1 +1 +- +RegExpInitialize +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpinitialize +1 +1 +- +RegExpInitialize(obj, pattern, flags) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpinitialize +1 +1 +- +Region +interface +css-regions-1 +css-regions +1 +current +https://drafts.csswg.org/css-regions-1/#region 1 1 - @@ -2216,7 +2569,17 @@ https://w3c.github.io/webauthn/#dictdef-registrationresponsejson 1 1 - -RejectPromise(promise, reason) +RegistrationResponseJSON +dictionary +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dictdef-registrationresponsejson +1 +1 +- +RejectPromise abstract-op ecmascript ecmascript @@ -2226,33 +2589,23 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-rejectpro 1 1 - -RelatedApplication -dictionary -get-installed-related-apps -get-installed-related-apps +RejectPromise(promise, reason) +abstract-op +ecmascript +ecmascript 1 current -https://wicg.github.io/get-installed-related-apps/spec/#dictdef-relatedapplication +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-rejectpromise 1 1 - -RelativeOrientationReadingValues +RelatedApplication dictionary -orientation-sensor -orientation-sensor +get-installed-related-apps +get-installed-related-apps 1 current -https://w3c.github.io/orientation-sensor/#dictdef-relativeorientationreadingvalues -1 -1 -- -RelativeOrientationReadingValues -dictionary -orientation-sensor -orientation-sensor -1 -snapshot -https://www.w3.org/TR/orientation-sensor/#dictdef-relativeorientationreadingvalues +https://wicg.github.io/get-installed-related-apps/spec/#dictdef-relatedapplication 1 1 - @@ -2400,7 +2753,57 @@ https://www.w3.org/TR/remote-playback/#dom-remoteplaybackstate 1 1 - -RemoveWaiter(WL, W) +Remove Entries from Format 1 Patch Map +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-remove-entries-from-format-1-patch-map +1 +1 +- +Remove Entries from Format 1 Patch Map +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-remove-entries-from-format-1-patch-map +1 +1 +- +Remove Entries from Format 2 Patch Map +abstract-op +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#abstract-opdef-remove-entries-from-format-2-patch-map +1 +1 +- +Remove Entries from Format 2 Patch Map +abstract-op +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#abstract-opdef-remove-entries-from-format-2-patch-map +1 +1 +- +RemoveWaiter +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-removewaiter +1 +1 +- +RemoveWaiter(WL, waiterRecord) abstract-op ecmascript ecmascript @@ -2410,6 +2813,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-removewaiter 1 1 - +RemoveWaiters +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-removewaiters +1 +1 +- RemoveWaiters(WL, c) abstract-op ecmascript @@ -2450,6 +2863,16 @@ https://html.spec.whatwg.org/multipage/canvas.html#renderingcontext 1 1 - +RepeatMatcher +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-repeatmatcher-abstract-operation +1 +1 +- RepeatMatcher(m, min, max, greedy, x, c, parenIndex, parenCount) abstract-op ecmascript @@ -2530,6 +2953,16 @@ https://www.w3.org/TR/reporting-1/#reportbody 1 1 - +ReportEventType +typedef +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#typedefdef-reporteventtype +1 +1 +- ReportList typedef reporting-1 @@ -2550,6 +2983,36 @@ https://www.w3.org/TR/reporting-1/#typedefdef-reportlist 1 1 - +ReportResultBrowserSignals +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-reportresultbrowsersignals +1 +1 +- +ReportWinBrowserSignals +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-reportwinbrowsersignals +1 +1 +- +ReportingBrowserSignals +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-reportingbrowsersignals +1 +1 +- ReportingObserver interface reporting-1 @@ -2806,7 +3269,7 @@ https://fetch.spec.whatwg.org/#requestredirect 1 1 - -RequireInternalSlot(O, internalSlot) +RequireInternalSlot abstract-op ecmascript ecmascript @@ -2816,39 +3279,79 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -RequireObjectCoercible(argument) +RequireInternalSlot(O, internalSlot) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-requireobjectcoercible +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-requireinternalslot 1 1 - -ResetQueue +RequireObjectCoercible abstract-op -streams -streams +ecmascript +ecmascript 1 current -https://streams.spec.whatwg.org/#reset-queue +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-requireobjectcoercible 1 1 - -ResidentKeyRequirement -enum -webauthn-3 -webauthn -3 +RequireObjectCoercible(argument) +abstract-op +ecmascript +ecmascript +1 current -https://w3c.github.io/webauthn/#enumdef-residentkeyrequirement +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-requireobjectcoercible 1 1 - -ResidentKeyRequirement -enum -webauthn-3 +Reset the render pass binding state +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-reset-the-render-pass-binding-state +1 +1 +- +Reset the render pass binding state +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-reset-the-render-pass-binding-state +1 +1 +- +ResetQueue +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#reset-queue +1 +1 +- +ResidentKeyRequirement +enum +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#enumdef-residentkeyrequirement +1 +1 +- +ResidentKeyRequirement +enum +webauthn-3 webauthn 3 snapshot @@ -3051,6 +3554,16 @@ https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#resizequa 1 1 - +ResolveBinding +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-resolvebinding +1 +1 +- ResolveBinding(name, env) abstract-op ecmascript @@ -3070,9 +3583,9 @@ current https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-resolveexport 1 1 -Module Records +Source Text Module Records - -ResolvePrivateIdentifier(privEnv, identifier) +ResolvePrivateIdentifier abstract-op ecmascript ecmascript @@ -3082,6 +3595,26 @@ https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#se 1 1 - +ResolvePrivateIdentifier(privateEnv, identifier) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-resolve-private-identifier +1 +1 +- +ResolveThisBinding +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-resolvethisbinding +1 +1 +- ResolveThisBinding() abstract-op ecmascript @@ -3155,6 +3688,16 @@ https://fetch.spec.whatwg.org/#responsetype 1 1 - +RestrictionTarget +interface +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dom-restrictiontarget +1 +1 +- Retrieve a list of credentials abstract-op credential-management-1 @@ -3177,6 +3720,26 @@ https://www.w3.org/TR/credential-management-1/#abstract-opdef-credential-store-r 1 credential store - +RevalidateAtomicAccess +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-revalidateatomicaccess +1 +1 +- +RevalidateAtomicAccess(typedArray, byteIndexInBuffer) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-revalidateatomicaccess +1 +1 +- [[Readable]] attribute webtransport @@ -3232,6 +3795,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-readypromise-slot 1 FontFaceSet - +[[ReadyPromise]] +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-readypromise-slot +1 +1 +FontFaceSet +- [[ReadyState]] attribute mediacapture-streams @@ -3272,8 +3846,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-readystate + 1 -1 +RTCDataChannel - [[Ready]] attribute @@ -3304,7 +3879,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-receivecodecs - +1 1 RTCRtpReceiver - @@ -3315,8 +3890,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-receivecodecs + 1 -1 +RTCRtpReceiver - [[ReceiveStreams]] attribute @@ -3347,7 +3923,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-receivertrack - +1 1 RTCRtpReceiver - @@ -3358,8 +3934,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-receivertrack + 1 -1 +RTCRtpReceiver - [[ReceiverTransport]] attribute @@ -3379,8 +3956,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-receivertransport + 1 -1 +RTCRtpReceiver - [[Receiver]] attribute @@ -3400,8 +3978,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-receiver + 1 -1 +RTCRtpTransceiver - [[Receptive]] attribute @@ -3421,8 +4000,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-receptive + 1 -1 +RTCRtpTransceiver - [[RegisteredCaptureActions]] attribute @@ -3552,8 +4132,20 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-remotecertificates + +1 +RTCDtlsTransport +- +[[Remote]] +attribute +webrtc +webrtc 1 +current +https://w3c.github.io/webrtc-pc/#dfn-remote + 1 +RTCIceCandidatePair - [[readFatal]] attribute @@ -3579,6 +4171,39 @@ TransformStream - [[readable]] attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-readable + +1 +TCPSocket +- +[[readable]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-readable-0 + +1 +UDPSocket +- +[[readable]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-readable-1 + +1 +TCPServerSocket +- +[[readable]] +attribute serial serial 1 @@ -3709,6 +4334,17 @@ https://www.w3.org/TR/css-properties-values-api-1/#dom-window-registeredproperty 1 Window - +[[render quantum size]] +attribute +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-render-quantum-size-slot +1 +1 +BaseAudioContext +- [[renderExtent]] attribute webgpu @@ -3887,7 +4523,7 @@ BluetoothRemoteGATTService - [[request]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -3898,11 +4534,11 @@ PaymentResponse - [[request]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-request +https://www.w3.org/TR/payment-request/#dfn-request 1 PaymentResponse @@ -3962,6 +4598,17 @@ https://www.w3.org/TR/webcodecs/#dom-videoframe-resource-reference-slot 1 VideoFrame - +[[resourceManager]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-resourcemanager + +1 +SmartCardContext +- [[respondWithCalled]] attribute payment-handler @@ -3986,7 +4633,7 @@ PaymentRequestEvent - [[response]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -3997,18 +4644,18 @@ PaymentRequest - [[response]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-response +https://www.w3.org/TR/payment-request/#dfn-response 1 PaymentRequest - [[retryPromise]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -4019,15 +4666,26 @@ PaymentResponse - [[retryPromise]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-retrypromise +https://www.w3.org/TR/payment-request/#dfn-retrypromise 1 PaymentResponse - +[[returnedFromScans]] +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothdevice-returnedfromscans-slot +1 +1 +BluetoothDevice +- _reserved dfn wgsl @@ -4101,13 +4759,13 @@ https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled 1 promise - -react to navigate event result +react to changes in the environment dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#react-to-navigate-event-result +https://html.spec.whatwg.org/multipage/images.html#img-environment-changes 1 - @@ -4149,8 +4807,9 @@ html 1 current https://html.spec.whatwg.org/multipage/browsing-the-web.html#reactivate-a-document - 1 +1 +Document - read dfn @@ -4490,6 +5149,16 @@ mimesniff current https://mimesniff.spec.whatwg.org/#read-the-resource-header +1 +- +read web custom format +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#read-web-custom-format + 1 - read() @@ -4580,6 +5249,17 @@ https://fs.spec.whatwg.org/#dom-filesystemsyncaccesshandle-read 1 FileSystemSyncAccessHandle - +read(formats) +method +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#dom-clipboard-read +1 +1 +Clipboard +- read(readOptions) method geolocation-sensor @@ -4613,6 +5293,17 @@ https://streams.spec.whatwg.org/#byob-reader-read 1 ReadableStreamBYOBReader - +read(view, options) +method +streams +streams +1 +current +https://streams.spec.whatwg.org/#byob-reader-read +1 +1 +ReadableStreamBYOBReader +- read-into request dfn streams @@ -4654,6 +5345,26 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer-notation 1 1 ECMAScript +- +read-only depth-stencil +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#read-only-depth-stencil + + +- +read-only depth-stencil +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#read-only-depth-stencil + + - read-only mode dfn @@ -4685,6 +5396,28 @@ https://www.w3.org/TR/webrtc/#dfn-read-only-parameter 1 - +read-only storage texture +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#type-read-only-storage-texture + +1 +type +- +read-only storage texture +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#type-read-only-storage-texture + +1 +type +- read-only transaction dfn indexeddb-3 @@ -4707,20 +5440,42 @@ https://www.w3.org/TR/IndexedDB-3/#transaction-read-only-transaction 1 transaction - -read/write mode +read-write storage texture dfn -html -html +wgsl +wgsl 1 current -https://html.spec.whatwg.org/multipage/dnd.html#concept-dnd-rw +https://gpuweb.github.io/gpuweb/wgsl/#type-read-write-storage-texture 1 +type - -read/write transaction +read-write storage texture dfn -indexeddb-3 -indexeddb +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#type-read-write-storage-texture + +1 +type +- +read/write mode +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dnd.html#concept-dnd-rw + +1 +- +read/write transaction +dfn +indexeddb-3 +indexeddb 3 current https://w3c.github.io/IndexedDB/#transaction-read-write-transaction @@ -4959,6 +5714,26 @@ https://www.w3.org/TR/FileAPI/#dfn-readAsTextSync 1 FileReaderSync - +readEncodedData +abstract-op +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-readencodeddata +1 +1 +- +readEncodedData +abstract-op +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#abstract-opdef-readencodeddata +1 +1 +- readEntries(successCallback) method entries-api @@ -5165,6 +5940,17 @@ webrtc-encoded-transform webrtc-encoded-transform 1 current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-readable +1 +1 +RTCRtpScriptTransform +- +readable +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +current https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-readable 1 1 @@ -5204,6 +5990,39 @@ https://w3c.github.io/webtransport/#webtransportdatagramduplexstream-create-read WebTransportDatagramDuplexStream/create - readable +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketopeninfo-readable +1 +1 +TCPServerSocketOpenInfo +- +readable +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo-readable +1 +1 +TCPSocketOpenInfo +- +readable +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo-readable +1 +1 +UDPSocketOpenInfo +- +readable attribute serial serial @@ -5231,6 +6050,17 @@ webrtc-encoded-transform webrtc-encoded-transform 1 snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransform-readable +1 +1 +RTCRtpScriptTransform +- +readable +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-readable 1 1 @@ -5348,26 +6178,6 @@ https://streams.spec.whatwg.org/#dom-transformer-readabletype 1 Transformer - -readencodeddata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#readencodeddata - -1 -- -readencodeddata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#readencodeddata - -1 -- reader dfn streams @@ -5406,9 +6216,10 @@ entries-api entries-api 1 current -https://wicg.github.io/entries-api/#reader-error +https://wicg.github.io/entries-api/#filesystemdirectoryreader-reader-error 1 +FileSystemDirectoryReader - reader type dfn @@ -5421,6 +6232,50 @@ https://streams.spec.whatwg.org/#pull-into-descriptor-reader-type 1 pull-into descriptor - +reader-unavailable +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-reader-unavailable +1 +1 +SmartCardResponseCode +- +readerName +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstatus-readername +1 +1 +SmartCardConnectionStatus +- +readerName +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstatein-readername +1 +1 +SmartCardReaderStateIn +- +readerName +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateout-readername +1 +1 +SmartCardReaderStateOut +- readiness state dfn webdriver2 @@ -5441,17 +6296,6 @@ https://www.w3.org/TR/webdriver2/#dfn-readiness-state 1 - -reading -value -css-display-4 -css-display -4 -current -https://drafts.csswg.org/css-display-4/#valdef-order-reading -1 -1 -order -- reading a body dfn webpackage @@ -5490,7 +6334,50 @@ entries-api entries-api 1 current -https://wicg.github.io/entries-api/#reading-flag +https://wicg.github.io/entries-api/#filesystemdirectoryreader-reading-flag + +1 +FileSystemDirectoryReader +- +reading parsing algorithm +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#virtual-sensor-metadata-reading-parsing-algorithm +1 +1 +virtual sensor metadata +- +reading parsing algorithm +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-metadata-reading-parsing-algorithm +1 +1 +virtual sensor metadata +- +reading progression direction +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-progressiondirection + +1 +- +reading progression direction +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-progressiondirection 1 - @@ -5585,33 +6472,13 @@ https://wicg.github.io/webpackage/loading.html#read-buffer-reading-up-to 1 read buffer - -reading value -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#reading-value - -1 -- -reading value -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#reading-value - -1 -- -reading-order +reading-flow property css-display-4 css-display 4 current -https://drafts.csswg.org/css-display-4/#propdef-reading-order +https://drafts.csswg.org/css-display-4/#propdef-reading-flow 1 1 - @@ -5659,6 +6526,50 @@ https://html.spec.whatwg.org/multipage/input.html#attr-input-readonly 1 input - +readonly flag +dfn +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#cssstyledeclaration-readonly-flag +1 +1 +CSSStyleDeclaration +- +readonly_and_readwrite_storage_textures +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#language_extension-readonly_and_readwrite_storage_textures + +1 +language_extension +- +readonly_and_readwrite_storage_textures +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#language_extension-readonly_and_readwrite_storage_textures + +1 +language_extension +- +reads-from +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-reads-from +1 +1 +ECMAScript +- readsharedmemory dfn ecmascript @@ -5711,6 +6622,16 @@ web-animations current https://drafts.csswg.org/web-animations-1/#ready +1 +- +ready +dfn +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#ready + 1 - ready @@ -5780,6 +6701,17 @@ WebTransport - ready attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-ready +1 +1 +FontFaceSet +- +ready +attribute css-view-transitions-1 css-view-transitions 1 @@ -5940,17 +6872,6 @@ https://html.spec.whatwg.org/multipage/scripting.html#ready-to-be-parser-execute 1 - -ready() -method -css-font-loading-3 -css-font-loading -3 -snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-ready -1 -1 -FontFaceSet -- readyState attribute html @@ -6217,44 +7138,97 @@ https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-real 1 PeriodicWaveOptions - -real-world environment +real time reporting contribution dfn -webxr-ar-module-1 -webxr-ar-module +turtledove +turtledove 1 current -https://immersive-web.github.io/webxr-ar-module/#real-world-environment +https://wicg.github.io/turtledove/#real-time-reporting-contribution 1 - -real-world environment +real time reporting contributions dfn -webxr-ar-module-1 -webxr-ar-module +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/webxr-ar-module-1/#real-world-environment +current +https://wicg.github.io/turtledove/#interestgroupbiddingandscoringscriptrunnerglobalscope-real-time-reporting-contributions 1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope - -realm +real time reporting contributions map dfn -html -html +turtledove +turtledove 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#concept-global-object-realm -1 +https://wicg.github.io/turtledove/#auction-report-info-real-time-reporting-contributions-map + 1 -global object +auction report info - -realm +real time reporting contributions map dfn -html -html +turtledove +turtledove 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object's-realm +https://wicg.github.io/turtledove/#real-time-reporting-contributions-map + +1 +- +real-world environment +dfn +webxr-ar-module-1 +webxr-ar-module +1 +current +https://immersive-web.github.io/webxr-ar-module/#real-world-environment + +1 +- +real-world environment +dfn +webxr-ar-module-1 +webxr-ar-module +1 +snapshot +https://www.w3.org/TR/webxr-ar-module-1/#real-world-environment + +1 +- +realTimeReporting +attribute +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingandscoringscriptrunnerglobalscope-realtimereporting +1 +1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +- +realm +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#concept-global-object-realm +1 +1 +global object +- +realm +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object's-realm 1 1 environment settings object @@ -6368,6 +7342,17 @@ https://www.w3.org/TR/webcodecs/#dom-latencymode-realtime 1 LatencyMode - +realtimereporting +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupbiddingandscoringscriptrunnerglobalscope-realtimereporting + +1 +InterestGroupBiddingAndScoringScriptRunnerGlobalScope +- reason argument dom @@ -6442,6 +7427,27 @@ html html 1 current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reason-details-reason +1 +1 +NotRestoredReasonDetails +- +reason +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-details-reason + +1 +- +reason +attribute +html +html +1 +current https://html.spec.whatwg.org/multipage/webappapis.html#dom-promiserejectionevent-reason 1 1 @@ -6477,6 +7483,17 @@ streams streams 1 current +https://streams.spec.whatwg.org/#dom-transformercancelcallback-reason +1 +1 +TransformerCancelCallback +- +reason +argument +streams +streams +1 +current https://streams.spec.whatwg.org/#dom-transformstreamdefaultcontroller-error-reason-reason 1 1 @@ -6705,6 +7722,37 @@ https://www.w3.org/TR/webtransport/#dom-webtransportcloseinfo-reason 1 WebTransportCloseInfo - +reasons +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-reasons +1 +1 +NotRestoredReasons +- +reasons +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-reasons + +1 +- +reasons array +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-not-restored-reasons-reasons + +1 +- reassociation dfn wgsl @@ -6735,6 +7783,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-rebeccapurple 1 1 <color> +<named-color> - rebeccapurple value @@ -6746,6 +7795,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple 1 1 <color> +<named-color> - rec dfn @@ -6865,6 +7915,16 @@ https://drafts.csswg.org/css-color-hdr/#rec2100-hlg 1 1 - +rec2100-linear +dfn +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#rec2100-linear +1 +1 +- rec2100-pq dfn css-color-hdr @@ -7003,16 +8063,6 @@ https://www.w3.org/TR/webtransport/#session-receive-an-incoming-unidirectional-s 1 session - -receive an rtcdatachannel message -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-receive-an-rtcdatachannel-message - -1 -- receive-algorithm dfn presentation-api @@ -7033,6 +8083,28 @@ https://www.w3.org/TR/presentation-api/#dfn-receive-algorithm 1 - +receiveBufferSize +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions-receivebuffersize +1 +1 +TCPSocketOptions +- +receiveBufferSize +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-receivebuffersize +1 +1 +UDPSocketOptions +- receiveFeatureReport() method webhid @@ -7078,7 +8150,7 @@ https://xhr.spec.whatwg.org/#received-bytes - received ip address dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -7088,11 +8160,11 @@ https://w3c.github.io/network-error-logging/#dfn-received-ip-address - received ip address dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-received-ip-address +https://www.w3.org/TR/network-error-logging/#dfn-received-ip-address 1 - @@ -7358,6 +8430,28 @@ https://www.w3.org/TR/presentation-api/#dfn-receiving-user-agent 1 - +recency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-recency +1 +1 +BiddingBrowserSignals +- +recency ms +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-browser-signals-recency-ms + +1 +server auction browser signals +- recently picked directory map dfn file-system-access @@ -7386,12 +8480,23 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-recipient - +1 1 physical address - recipient dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-recipient +1 +1 +AddressErrors +- +recipient +dict-member webusb webusb 1 @@ -7419,10 +8524,65 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-recipient - +1 1 physical address - +recipient +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-recipient +1 +1 +AddressErrors +- +reciprocal(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reciprocal +1 +1 +MLGraphBuilder +- +reciprocal(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reciprocal +1 +1 +MLGraphBuilder +- +reciprocal(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reciprocal +1 +1 +MLGraphBuilder +- +reciprocal(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reciprocal +1 +1 +MLGraphBuilder +- reclaim a codec dfn webcodecs @@ -7443,6 +8603,28 @@ https://www.w3.org/TR/webcodecs/#reclaim-a-codec 1 - +recognitionType +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinghints-recognitiontype +1 +1 +HandwritingHints +- +recognitionType +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinghintsqueryresult-recognitiontype +1 +1 +HandwritingHintsQueryResult +- recognize dfn rdf12-semantics @@ -7451,6 +8633,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-recognize +1 +- +recognize +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-recognize + 1 - recognized @@ -7461,6 +8653,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-recognize +1 +- +recognized +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-recognize + 1 - recognized algorithm name @@ -7480,7 +8682,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#recognized-algorithm-name -1 + 1 - recognized datatype iri @@ -7491,6 +8693,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-recognized-datatype-iri +1 +- +recognized datatype iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-recognized-datatype-iri + 1 - recognized datatype iris @@ -7501,6 +8713,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-recognized-datatype-iri +1 +- +recognized datatype iris +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-recognized-datatype-iri + 1 - recognized key format values @@ -7520,7 +8742,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RecognizedKeyFormats -1 + 1 - recognized key type values @@ -7540,7 +8762,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RecognizedKeyType -1 + 1 - recognized key usage values @@ -7560,8 +8782,39 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RecognizedKeyUsage + +1 +- +recognized types +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-recognized-types + +1 +- +recognized types +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-recognized-types + +1 +- +recognizer +dfn +handwriting-recognition +handwriting-recognition 1 +current +https://wicg.github.io/handwriting-recognition/#handwritingdrawing-recognizer + 1 +HandwritingDrawing - recommendation dfn @@ -7601,6 +8854,26 @@ css current https://drafts.csswg.org/css2/#recommended +1 +- +recommended +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x7 +1 +1 +- +recommended +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x7 +1 1 - recommended motion vector texture resolution @@ -7621,6 +8894,16 @@ webxrlayers snapshot https://www.w3.org/TR/webxrlayers-1/#recommended-motion-vector-texture-resolution +1 +- +recommended range and default for a webauthn ceremony timeout +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#recommended-range-and-default-for-a-webauthn-ceremony-timeout + 1 - recommended use @@ -7807,16 +9090,6 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#reconsume-the-current-input-code-point 1 -1 -- -reconsume the current input token -dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-token - 1 - reconsume the current input token @@ -7905,6 +9178,46 @@ https://www.w3.org/TR/media-capabilities/#dom-mediaencodingtype-record 1 MediaEncodingType - +record a redemption record +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#record-a-redemption-record + +1 +- +record a user activation +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#record-a-user-activation + +1 +- +record classic script creation time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-classic-script-creation-time +1 +1 +- +record classic script execution start time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-classic-script-execution-start-time +1 +1 +- record connection timing info dfn fetch @@ -7923,25 +9236,45 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-record-identifier +1 +- +record module script execution start time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-module-script-execution-start-time +1 1 - record of license destruction dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#record-of-license-destruction +https://w3c.github.io/encrypted-media/#dfn-record-s-of-license-destruction 1 - record of license destruction dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#record-of-license-destruction +https://www.w3.org/TR/encrypted-media-2/#dfn-record-s-of-license-destruction + +1 +- +record pause duration +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-pause-duration 1 - @@ -7956,6 +9289,106 @@ https://dom.spec.whatwg.org/#concept-mo-queue 1 MutationObserver - +record redemption timestamp +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#record-redemption-timestamp + +1 +- +record rendering time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-rendering-time +1 +1 +- +record stateful bounces for bounce tracking +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#record-stateful-bounces-for-bounce-tracking + +1 +- +record task end time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-task-end-time +1 +1 +- +record task start time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-task-start-time +1 +1 +- +record timing info for event listener +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-timing-info-for-event-listener +1 +1 +- +record timing info for microtask checkpoint +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-timing-info-for-microtask-checkpoint +1 +1 +- +record timing info for promise resolver +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-timing-info-for-promise-resolver +1 +1 +- +record timing info for timer handler +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-timing-info-for-timer-handler +1 +1 +- +record timing info for user callback +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#record-timing-info-for-user-callback +1 +1 +- record type dfn web-nfc @@ -7974,6 +9407,26 @@ webidl current https://webidl.spec.whatwg.org/#record-type 1 +1 +- +record(s) of license destruction +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-record-s-of-license-destruction + +1 +- +record(s) of license destruction +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-record-s-of-license-destruction + 1 - record-namespace-loop @@ -8148,6 +9601,26 @@ https://wicg.github.io/background-fetch/#backgroundfetchregistration-records-ava 1 BackgroundFetchRegistration - +records of license destruction +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-record-s-of-license-destruction + +1 +- +records of license destruction +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-record-s-of-license-destruction + +1 +- recordsAvailable attribute background-fetch @@ -8340,6 +9813,16 @@ geometry snapshot https://www.w3.org/TR/geometry-1/#rectangle +1 +- +rectangle intersection +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#rectangle-intersection + 1 - rectangle state @@ -8381,6 +9864,16 @@ css-typed-om current https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-csscolorangle +1 +- +rectify a csscolorangle +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#rectify-a-csscolorangle + 1 - rectify a csscolornumber @@ -8391,6 +9884,16 @@ css-typed-om current https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-csscolornumber +1 +- +rectify a csscolornumber +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#rectify-a-csscolornumber + 1 - rectify a csscolorpercent @@ -8401,6 +9904,16 @@ css-typed-om current https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-csscolorpercent +1 +- +rectify a csscolorpercent +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#rectify-a-csscolorpercent + 1 - rectify a csscolorrgbcomp @@ -8411,6 +9924,16 @@ css-typed-om current https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-csscolorrgbcomp +1 +- +rectify a csscolorrgbcomp +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#rectify-a-csscolorrgbcomp + 1 - rectify a keywordish value @@ -8423,13 +9946,13 @@ https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-keywordish-value 1 1 - -rectify a numberish value +rectify a keywordish value dfn css-typed-om-1 css-typed-om 1 -current -https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-numberish-value +snapshot +https://www.w3.org/TR/css-typed-om-1/#rectify-a-keywordish-value 1 1 - @@ -8438,12 +9961,12 @@ dfn css-typed-om-1 css-typed-om 1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#rectify-a-numberish-value +current +https://drafts.css-houdini.org/css-typed-om-1/#rectify-a-numberish-value 1 1 - -rectifying a numberish value +rectify a numberish value dfn css-typed-om-1 css-typed-om @@ -8621,7 +10144,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight- 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - recurrentWeight argument @@ -8633,7 +10155,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-wei 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - recurrentWeight argument @@ -8645,7 +10166,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - recurrentWeight argument @@ -8657,7 +10177,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-we 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - recurrentWeight argument @@ -8669,7 +10188,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - recurrentWeight argument @@ -8681,7 +10199,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentwe 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - recurrentWeight argument @@ -8693,7 +10210,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweigh 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - recurrentWeight argument @@ -8705,7 +10221,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentw 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - recursive dict-member @@ -8726,6 +10241,16 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#recursively-emit-context-created-events +1 +- +recursively wait until configuration input promises resolve +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#recursively-wait-until-configuration-input-promises-resolve + 1 - recvonly @@ -8770,6 +10295,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-red 1 1 <color> +<named-color> - red value @@ -8802,6 +10328,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-red 1 1 <color> +<named-color> - red eye reduction dfn @@ -8867,16 +10394,66 @@ https://www.w3.org/TR/image-capture/#dom-photosettings-redeyereduction 1 PhotoSettings - -redirect -attribute -fetch -fetch +redeemrequest +dfn +trust-token-api +trust-token-api 1 current -https://fetch.spec.whatwg.org/#dom-request-redirect +https://wicg.github.io/trust-token-api/#redeemrequest + +1 +- +redeemresponse +dfn +trust-token-api +trust-token-api 1 +current +https://wicg.github.io/trust-token-api/#redeemresponse + 1 -Request +- +redemption record +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#redemption-record + +1 +- +redemptionrecords +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#redemptionrecords + +1 +- +redemptiontimes +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#redemptiontimes + +1 +- +redirect +attribute +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#dom-request-redirect +1 +1 +Request - redirect dict-member @@ -9166,10 +10743,13 @@ webxrlayers-1 webxrlayers 1 current -https://immersive-web.github.io/layers/#eventdef-xrlayer-redraw +https://immersive-web.github.io/layers/#eventdef-xrquadlayer-redraw 1 1 -XRLayer +XRQuadLayer +XRCylinderLayer +XREquirectLayer +XRCubeLayer - redraw event @@ -9177,10 +10757,13 @@ webxrlayers-1 webxrlayers 1 snapshot -https://www.w3.org/TR/webxrlayers-1/#eventdef-xrlayer-redraw +https://www.w3.org/TR/webxrlayers-1/#eventdef-xrquadlayer-redraw 1 1 -XRLayer +XRQuadLayer +XRCylinderLayer +XREquirectLayer +XRCubeLayer - reduce value @@ -9268,18 +10851,18 @@ https://www.w3.org/TR/generic-sensor/#reduce-accuracy 1 - -reduce(callbackfn, initialValue) +reduce(callback, initialValue) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.reduce +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduce 1 1 %TypedArray% - -reduce(callbackfn, initialValue) +reduce(callback, initialValue) method ecmascript ecmascript @@ -9642,18 +11225,18 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct 1 MLGraphBuilder - -reduceRight(callbackfn, initialValue) +reduceRight(callback, initialValue) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.reduceright +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduceright 1 1 %TypedArray% - -reduceRight(callbackfn, initialValue) +reduceRight(callback, initialValue) method ecmascript ecmascript @@ -9774,16 +11357,48 @@ https://www.w3.org/TR/css-speech-1/#valdef-voice-stress-reduced 1 voice-stress - -reduced image +reduced images dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-reduced-image +https://w3c.github.io/png/#3reducedImage + +1 +- +reduced images +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3reducedImage 1 - +reducedData +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferencemanager-reduceddata +1 +1 +PreferenceManager +- +reducedMotion +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferencemanager-reducedmotion +1 +1 +PreferenceManager +- reducedSize dict-member webrtc @@ -9806,6 +11421,17 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtcpparameters-reducedsize 1 RTCRtcpParameters - +reducedTransparency +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferencemanager-reducedtransparency +1 +1 +PreferenceManager +- reduction attribute webaudio @@ -9926,6 +11552,26 @@ https://www.w3.org/TR/SVG2/painting.html#__svg__SVGMarkerElement__refY 1 SVGMarkerElement - +refer to +dfn +rdf12-semantics +rdf-semantics +1 +current +https://w3c.github.io/rdf-semantics/spec/#dfn-refer-to + +1 +- +refer to +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-refer-to + +1 +- reference dfn dom @@ -9949,6 +11595,26 @@ https://gpuweb.github.io/gpuweb/#dom-gpurenderpassencoder-setstencilreference-re GPURenderPassEncoder/setStencilReference(reference) - reference +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_reference + +1 +- +reference +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#intent_reference + +1 +- +reference argument webgpu webgpu @@ -10021,13 +11687,33 @@ https://www.w3.org/TR/css-transforms-1/#reference-box 1 - -reference image +reference combinator dfn -png-spec -png-spec +selectors-5 +selectors +5 +current +https://drafts.csswg.org/selectors-5/#reference-combinator +1 1 +- +reference image +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-reference-image +https://w3c.github.io/png/#3referenceImage + +1 +- +reference image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3referenceImage 1 - @@ -10059,6 +11745,26 @@ css current https://drafts.csswg.org/css2/#reference-pixel +1 +- +reference pixel +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x40 +1 +1 +- +reference pixel +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x40 +1 1 - reference pixel @@ -10436,13 +12142,13 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-referent - referent dfn -rdf12-semantics -rdf-semantics -1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-referent -1 +rdf12-concepts +rdf-concepts 1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-referent + + - referrals dfn @@ -10453,16 +12159,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-referrals -- -referrals -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-referrals - -1 - referrer dfn @@ -11029,6 +12725,17 @@ https://www.w3.org/TR/SVG2/linking.html#AElementReferrerpolicyAttribute 1 a - +referrerpolicy() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-request-url-modifier-referrerpolicy +1 +1 +<request-url-modifier> +- referrerurl dfn referrer-policy @@ -11050,16 +12757,6 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetooth-referringdevice 1 Bluetooth - -refers to -dfn -rdf12-semantics -rdf-semantics -1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-refers-to - -1 -- reflect dfn dom @@ -11078,7 +12775,7 @@ html 1 current https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect - +1 1 - reflect @@ -11266,6 +12963,26 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-refresh +1 +- +refresh the memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +current +https://webassembly.github.io/spec/js-api/#refresh-the-memory-buffer + +1 +- +refresh the memory buffer +dfn +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#refresh-the-memory-buffer + 1 - refresh() @@ -11279,6 +12996,17 @@ https://html.spec.whatwg.org/multipage/system-state.html#dom-pluginarray-refresh 1 PluginArray - +refreshPolicy +dict-member +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-privatetoken-refreshpolicy +1 +1 +PrivateToken +- refx element-attr svg2 @@ -11384,7 +13112,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-type-regexp +https://urlpattern.spec.whatwg.org/#part-type-regexp 1 part/type @@ -11395,7 +13123,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-type-regexp +https://urlpattern.spec.whatwg.org/#token-type-regexp 1 token/type @@ -11485,11 +13213,22 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-region - +1 1 physical address - region +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-region +1 +1 +AddressErrors +- +region attribute webvtt1 webvtt @@ -11518,7 +13257,7 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-region - +1 1 physical address - @@ -11580,6 +13319,17 @@ https://www.w3.org/TR/css-page-floats-3/#valdef-float-reference-region float-reference - region +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-region +1 +1 +AddressErrors +- +region attribute webvtt1 webvtt @@ -11835,6 +13585,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#register-an-import-map +1 +- +register bids for fordebuggingonly reports +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#register-bids-for-fordebuggingonly-reports + 1 - register file handlers @@ -11845,6 +13605,16 @@ manifest-incubations current https://wicg.github.io/manifest-incubations/#dfn-register-file-handlers +1 +- +register reporting metadata +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#register-reporting-metadata + 1 - register() @@ -11880,6 +13650,17 @@ https://w3c.github.io/webrtc-identity/#dom-rtcidentityproviderregistrar-register 1 RTCIdentityProviderRegistrar - +register(name, operationCtor) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworkletglobalscope-register +1 +1 +SharedStorageWorkletGlobalScope +- register(scriptURL) method service-workers @@ -11968,6 +13749,28 @@ https://tc39.es/ecma262/multipage/managing-memory.html#sec-finalization-registry 1 FinalizationRegistry - +registerAdBeacon(map) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-registeradbeacon +1 +1 +InterestGroupReportingScriptRunnerGlobalScope +- +registerAdMacro(name, value) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-registeradmacro +1 +1 +InterestGroupReportingScriptRunnerGlobalScope +- registerAnimator(name, animatorCtor) method css-animation-worklet-1 @@ -12100,17 +13903,6 @@ https://drafts.csswg.org/css-highlight-api-1/#registered 1 - registered -argument -fedcm -fedcm -1 -current -https://fedidcg.github.io/FedCM/#dom-accountstate-registered -1 -1 -AccountState -- -registered dfn reporting-1 reporting @@ -12167,28 +13959,8 @@ css-properties-values-api 1 snapshot https://www.w3.org/TR/css-properties-values-api-1/#registered-custom-property - -1 -- -registered extension -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_language_tag_extension -1 - -- -registered extension -dfn -i18n-glossary -i18n-glossary 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_language_tag_extension 1 - - registered observer dfn @@ -12333,11 +14105,31 @@ https://url.spec.whatwg.org/#host-registrable-domain 1 host - -registration +registrable origin label dfn -service-workers -service-workers -1 +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#registrable-origin-label + +1 +- +registrar +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#registrar + +1 +- +registration +dfn +service-workers +service-workers +1 current https://w3c.github.io/ServiceWorker/#dfn-containing-service-worker-registration 1 @@ -12468,6 +14260,16 @@ webauthn snapshot https://www.w3.org/TR/webauthn-3/#registration-extension +1 +- +registration info +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#registration-info + 1 - registration map @@ -12491,17 +14293,6 @@ https://www.w3.org/TR/service-workers/#dfn-scope-to-registration-map 1 - registration state -argument -fedcm -fedcm -1 -current -https://fedidcg.github.io/FedCM/#dom-accountstate-registration-state -1 -1 -AccountState -- -registration state dfn background-sync background-sync @@ -12517,7 +14308,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_iana_language_subtag_registry +https://w3c.github.io/i18n-glossary/#dfn-subtag-registry 1 - @@ -12528,7 +14319,7 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#registry - +1 1 - registry @@ -12537,7 +14328,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_iana_language_subtag_registry +https://www.w3.org/TR/i18n-glossary/#dfn-subtag-registry 1 - @@ -12578,7 +14369,7 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#registry-definition - +1 1 - registry entry @@ -12588,7 +14379,7 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#registry-entry - +1 1 - registry report @@ -12618,7 +14409,7 @@ w3c-process 1 current https://www.w3.org/Consortium/Process/#registry-table - +1 1 - registry track @@ -12647,11 +14438,21 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#component-regular-expression +https://urlpattern.spec.whatwg.org/#component-regular-expression 1 component - +regular interest group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#regular-interest-group + +1 +- regular operation dfn webidl @@ -12693,6 +14494,16 @@ https://www.w3.org/TR/css-typed-om-1/#css-reify 1 1 CSS +- +reification +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-reification + + - reified as a cssstylevalue dfn @@ -12713,6 +14524,26 @@ snapshot https://www.w3.org/TR/css-typed-om-1/#reify-as-a-cssstylevalue 1 1 +- +reifier +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-reifier + + +- +reifier +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-reifier + + - reify dfn @@ -12784,6 +14615,16 @@ css-typed-om current https://drafts.css-houdini.org/css-typed-om-1/#reify-a-color-value +1 +- +reify a color value +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#reify-a-color-value + 1 - reify a list of component values @@ -12926,23 +14767,33 @@ https://www.w3.org/TR/css-typed-om-1/#reify-as-a-cssstylevalue 1 1 - -reinitialize url +reifying triple dfn -html -html +rdf12-concepts +rdf-concepts 1 current -https://html.spec.whatwg.org/multipage/links.html#reinitialise-url +https://w3c.github.io/rdf-concepts/spec/#dfn-reifying-triple + +- +reifying triple +dfn +rdf12-concepts +rdf-concepts 1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-reifying-triple + + - -reject +reinitialize url dfn -presentation-api -presentation-api +html +html 1 current -https://w3c.github.io/presentation-api/#dfn-reject +https://html.spec.whatwg.org/multipage/links.html#reinitialise-url 1 - @@ -12964,16 +14815,6 @@ webidl current https://webidl.spec.whatwg.org/#reject 1 -1 -- -reject -dfn -presentation-api -presentation-api -1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-reject - 1 - reject @@ -13070,14 +14911,13 @@ https://html.spec.whatwg.org/multipage/media.html#reject-pending-play-promises - reject the finished promise dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-reject-the-finished-promise +https://html.spec.whatwg.org/multipage/nav-history-apis.html#reject-the-finished-promise 1 -navigation API method navigation - reject(r) method @@ -13092,32 +14932,12 @@ Promise - rejected dfn -presentation-api -presentation-api -1 -current -https://w3c.github.io/presentation-api/#dfn-reject - -1 -- -rejected -dfn webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-reject -1 -- -rejected -dfn -presentation-api -presentation-api -1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-reject - 1 - rejected @@ -13440,33 +15260,33 @@ https://www.w3.org/TR/appmanifest/#dfn-related-application 1 - -related construct +related member dfn -trusted-types -trusted-types +w3c-process +w3c-process 1 current -https://w3c.github.io/trusted-types/dist/spec/#related-construct - +https://www.w3.org/Consortium/Process/#related-member +1 1 - -related construct -dfn -trusted-types -trusted-types +related origins validation procedure +abstract-op +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#abstract-opdef-related-origins-validation-procedure 1 -snapshot -https://www.w3.org/TR/trusted-types/#related-construct - 1 - -related member +related website set dfn -w3c-process -w3c-process +first-party-sets +first-party-sets 1 current -https://www.w3.org/Consortium/Process/#related-member +https://wicg.github.io/first-party-sets/#related-website-set 1 1 - @@ -13572,6 +15392,17 @@ MutationEvent/initMutationEvent(typeArg, bubblesArg, cancelableArg) MutationEvent/initMutationEvent(typeArg, bubblesArg) MutationEvent/initMutationEvent(typeArg) - +relatedOrigins +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-relatedorigins +1 +1 +ClientCapability +- relatedPort attribute webrtc @@ -13931,23 +15762,13 @@ https://w3c.github.io/aria/#dfn-relationship - relationship dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-relationship - -1 -- -relationship -dfn -mathml-aam -mathml-aam +https://w3c.github.io/aria/#dfn-relationship 1 -current -https://w3c.github.io/mathml-aam/#dfn-relationship -1 - relationship dfn @@ -13988,6 +15809,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-relationship +- +relationship +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-relationship +1 + - relationship discovery dfn @@ -14007,16 +15838,6 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#relationship-strings -1 -- -relationships -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-relationship - 1 - relationships @@ -14090,6 +15911,26 @@ css-color snapshot https://www.w3.org/TR/css-color-5/#relative-color 1 +1 +- +relative device orientation +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#relative-device-orientation + +1 +- +relative device orientation +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#relative-device-orientation + 1 - relative high resolution coarse time @@ -14132,7 +15973,7 @@ https://www.w3.org/TR/hr-time-3/#dfn-relative-high-resolution-time 1 1 - -relative iri +relative iri reference dfn rdf12-concepts rdf-concepts @@ -14142,7 +15983,17 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-relative-iri - -relative iris +relative iri reference +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-relative-iri + + +- +relative iri references dfn rdf12-concepts rdf-concepts @@ -14151,6 +16002,16 @@ current https://w3c.github.io/rdf-concepts/spec/#dfn-relative-iri +- +relative iri references +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-relative-iri + + - relative length dfn @@ -14190,6 +16051,16 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#relative-length +1 +- +relative length unit +dfn +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#relative-length + 1 - relative length unit @@ -14200,6 +16071,16 @@ css-values current https://drafts.csswg.org/css-values-4/#relative-length +1 +- +relative length unit +dfn +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#relative-length + 1 - relative length unit @@ -14212,24 +16093,44 @@ https://www.w3.org/TR/css-values-4/#relative-length 1 - -relative path +relative orientation sensor dfn -entries-api -entries-api +orientation-sensor +orientation-sensor 1 current -https://wicg.github.io/entries-api/#relative-path +https://w3c.github.io/orientation-sensor/#relative-orientation-sensor-type 1 - -relative position +relative orientation sensor dfn -css-position-3 -css-position -3 -current -https://drafts.csswg.org/css-position-3/#relative-position -1 +orientation-sensor +orientation-sensor +1 +snapshot +https://www.w3.org/TR/orientation-sensor/#relative-orientation-sensor-type + +1 +- +relative path +dfn +entries-api +entries-api +1 +current +https://wicg.github.io/entries-api/#relative-path + +1 +- +relative position +dfn +css-position-3 +css-position +3 +current +https://drafts.csswg.org/css-position-3/#relative-position +1 1 - relative position @@ -14250,6 +16151,26 @@ css current https://drafts.csswg.org/css2/#relative-positioning%E2%91%A0 +1 +- +relative positioning +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x34 +1 +1 +- +relative positioning +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x34 +1 1 - relative selector @@ -14322,6 +16243,26 @@ css current https://drafts.csswg.org/css2/#relative-units +1 +- +relative units +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x34 +1 +1 +- +relative units +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x34 +1 1 - relative-colorimetric @@ -14346,6 +16287,26 @@ https://www.w3.org/TR/css-color-5/#valdef-color-profile-rendering-intent-relativ 1 @color-profile/rendering-intent - +relative-orientation virtual sensor type +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#relative-orientation-virtual-sensor-type +1 +1 +- +relative-orientation virtual sensor type +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#relative-orientation-virtual-sensor-type +1 +1 +- relative-url string dfn url @@ -14525,6 +16486,17 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatestats-relayprotocol 1 RTCIceCandidateStats - +relayProtocol +attribute +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-relayprotocol +1 +1 +RTCIceCandidate +- release dfn fs @@ -14559,6 +16531,16 @@ https://streams.spec.whatwg.org/#writablestreamdefaultwriter-release WritableStreamDefaultWriter - release +dfn +screen-wake-lock +screen-wake-lock +1 +current +https://w3c.github.io/screen-wake-lock/#dfn-release + +1 +- +release attribute webaudio webaudio @@ -14581,6 +16563,16 @@ https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-release DynamicsCompressorOptions - release +dfn +screen-wake-lock +screen-wake-lock +1 +snapshot +https://www.w3.org/TR/screen-wake-lock/#dfn-release + +1 +- +release attribute webaudio webaudio @@ -14673,13 +16665,13 @@ https://www.w3.org/TR/webdriver2/#dfn-release-actions 1 - release early candidates -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-release-early-candidates - +1 1 - release early candidates @@ -14826,15 +16818,26 @@ WakeLockSentinel - release-acknowledged enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessionclosedreason-release-acknowledged 1 1 MediaKeySessionClosedReason - +release-acknowledged +enum-value +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessionclosedreason-release-acknowledged +1 +1 +MediaKeySessionClosedReason +- releaseEvents() method html @@ -14969,9 +16972,9 @@ MiniApp platform version resource - released enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-released 1 @@ -14990,15 +16993,15 @@ https://w3c.github.io/screen-wake-lock/#dom-wakelocksentinel-released WakeLockSentinel - released -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-released - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-released 1 -mediakeystatus +1 +MediaKeyStatus - released attribute @@ -15094,6 +17097,17 @@ https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-everythi 1 - +relevant +dfn +web-animations-1 +web-animations +1 +snapshot +https://www.w3.org/TR/web-animations-1/#animation-relevant +1 +1 +animation +- relevant agent dfn html @@ -15104,14 +17118,14 @@ https://html.spec.whatwg.org/multipage/webappapis.html#relevant-agent 1 1 - -relevant animation +relevant animations dfn web-animations-1 web-animations 1 -snapshot -https://www.w3.org/TR/web-animations-1/#relevant-animation - +current +https://drafts.csswg.org/web-animations-1/#relevant-animations +1 1 - relevant animations @@ -15119,8 +17133,8 @@ dfn web-animations-1 web-animations 1 -current -https://drafts.csswg.org/web-animations-1/#relevant-animations +snapshot +https://www.w3.org/TR/web-animations-1/#relevant-animations 1 1 - @@ -15134,6 +17148,16 @@ https://drafts.csswg.org/web-animations-1/#relevant-animations-for-a-subtree 1 1 - +relevant animations for a subtree +dfn +web-animations-1 +web-animations +1 +snapshot +https://www.w3.org/TR/web-animations-1/#relevant-animations-for-a-subtree +1 +1 +- relevant child nodes dfn html @@ -15166,6 +17190,7 @@ https://www.w3.org/TR/credential-management-1/#credentialrequestoptions-relevant 1 CredentialRequestOptions +CredentialCreationOptions - relevant document dfn @@ -15175,6 +17200,16 @@ html current https://html.spec.whatwg.org/multipage/nav-history-apis.html#relevant-document +1 +- +relevant frame timing info +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#relevant-frame-timing-info + 1 - relevant global object @@ -15323,7 +17358,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-textarea/input-relevant-value +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-textarea%2Finput-relevant-value 1 - @@ -15372,6 +17407,17 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#reload - reload enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtype-reload +1 +1 +NavigationType +- +reload +enum-value navigation-timing-2 navigation-timing 2 @@ -15453,24 +17499,13 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-location-reload 1 Location - -reload() -method -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigation-reload -1 -1 -Navigation -- reload(options) method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-reload +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-reload 1 1 Navigation @@ -15486,29 +17521,29 @@ https://fetch.spec.whatwg.org/#concept-request-reload-navigation-flag 1 request - -relu() +relu(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-relu%E2%91%A0 +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-relu 1 1 MLGraphBuilder - -relu() +relu(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu%E2%91%A0 +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu 1 1 MLGraphBuilder - -relu(x) +relu(input, options) method webnn webnn @@ -15519,7 +17554,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-relu 1 MLGraphBuilder - -relu(x) +relu(input, options) method webnn webnn @@ -15530,6 +17565,26 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu 1 MLGraphBuilder - +relying parties +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-relying-parties + +1 +- +relying parties +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-relying-parties + +1 +- relying party dfn fido-v2.1 @@ -15538,6 +17593,16 @@ fido current https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#relying-party +1 +- +relying party +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-relying-parties + 1 - relying party @@ -15548,6 +17613,16 @@ webauthn current https://w3c.github.io/webauthn/#relying-party +1 +- +relying party +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-relying-parties + 1 - relying party @@ -15624,6 +17699,39 @@ https://www.w3.org/TR/css-values-4/#rem 1 <length> - +rem unit +value +css-values-3 +css-values +3 +current +https://drafts.csswg.org/css-values-3/#rem +1 +1 +<length> +- +rem unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#rem +1 +1 +<length> +- +rem unit +value +css-values-3 +css-values +3 +snapshot +https://www.w3.org/TR/css-values-3/#rem +1 +1 +<length> +- rem() function css-values-4 @@ -15676,23 +17784,45 @@ https://url.spec.whatwg.org/#remaining 1 - -remaining fragmentainer extent +remaining aggregatable attribution budget dfn -css-break-3 -css-break -3 -current -https://drafts.csswg.org/css-break-3/#remaining-fragmentainer-extent +attribution-reporting-api +attribution-reporting-api 1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-remaining-aggregatable-attribution-budget + 1 +attribution source - -remaining fragmentainer extent +remaining aggregatable debug budget dfn -css-break-4 -css-break -4 -current -https://drafts.csswg.org/css-break-4/#remaining-fragmentainer-extent +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-remaining-aggregatable-debug-budget + +1 +attribution source +- +remaining fragmentainer extent +dfn +css-break-3 +css-break +3 +current +https://drafts.csswg.org/css-break-3/#remaining-fragmentainer-extent +1 +1 +- +remaining fragmentainer extent +dfn +css-break-4 +css-break +4 +current +https://drafts.csswg.org/css-break-4/#remaining-fragmentainer-extent 1 1 - @@ -15736,6 +17866,28 @@ https://www.w3.org/TR/css-flexbox-1/#remaining-free-space 1 - +remaining navigation budget +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#calling-site-remaining-navigation-budget + +1 +calling site +- +remainingBudget() +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-remainingbudget +1 +1 +SharedStorage +- remember a picked directory dfn file-system-access @@ -15780,7 +17932,7 @@ https://w3c.github.io/webdriver/#dfn-remote-ends 1 - remote -dict-member +attribute webrtc webrtc 1 @@ -15860,7 +18012,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#remote-end-definition - +1 1 - remote end event trigger @@ -15869,7 +18021,18 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#remote-end-event-trigger +https://w3c.github.io/webdriver-bidi/#event-remote-end-event-trigger +1 +1 +event +- +remote end steps +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#remote-end-steps 1 1 - @@ -15899,9 +18062,10 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#remote-end-subscribe-steps - +https://w3c.github.io/webdriver-bidi/#event-remote-end-subscribe-steps 1 +1 +event - remote ends dfn @@ -16359,6 +18523,50 @@ https://www.w3.org/TR/openscreenprotocol/#remote-playback-termination-response 1 - +remoteAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo-remoteaddress +1 +1 +TCPSocketOpenInfo +- +remoteAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpmessage-remoteaddress +1 +1 +UDPMessage +- +remoteAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo-remoteaddress +1 +1 +UDPSocketOpenInfo +- +remoteAddress +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-remoteaddress +1 +1 +UDPSocketOptions +- remoteCandidateId dict-member webrtc-stats @@ -16469,27 +18677,49 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-remoteid 1 RTCOutboundRtpStreamStats - -remoteSource +remotePort dict-member -webrtc-stats -webrtc-stats +direct-sockets +direct-sockets 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-remotesource +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo-remoteport 1 - -RTCMediaStreamTrackStats +1 +TCPSocketOpenInfo - -remoteSource +remotePort dict-member -webrtc-stats -webrtc-stats +direct-sockets +direct-sockets 1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-remotesource +current +https://wicg.github.io/direct-sockets/#dom-udpmessage-remoteport 1 - -RTCMediaStreamTrackStats +1 +UDPMessage +- +remotePort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo-remoteport +1 +1 +UDPSocketOpenInfo +- +remotePort +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-remoteport +1 +1 +UDPSocketOptions - remoteTimestamp dict-member @@ -16513,15 +18743,16 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcremoteoutboundrtpstreamstats-remoteti 1 RTCRemoteOutboundRtpStreamStats - -remotereference +removal steps dfn -webdriver-bidi -webdriver-bidi +scheduling-apis +scheduling-apis 1 current -https://w3c.github.io/webdriver-bidi/#remotereference +https://wicg.github.io/scheduling-apis/#scheduler-task-queue-removal-steps 1 +scheduler task queue - remove dfn @@ -16588,16 +18819,25 @@ https://wicg.github.io/scheduling-apis/#scheduler-task-queue-remove 1 scheduler task queue - -remove +remove a bucket dfn -encrypted-media -encrypted-media +storage-buckets +storage-buckets 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-remove +current +https://wicg.github.io/storage-buckets/#remove-a-bucket + +1 +- +remove a connection +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#remove-a-connection 1 -mediakeysession - remove a css rule dfn @@ -16657,26 +18897,16 @@ permissions snapshot https://www.w3.org/TR/permissions/#dfn-remove-a-permission-store-entry 1 -1 -- -remove a report from the cache -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#remove-a-report-from-the-cache - 1 - remove a track -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#dfn-remove-a-track - +1 1 MediaStream - @@ -16691,13 +18921,13 @@ https://w3c.github.io/webrtc-pc/#remove-track 1 - remove a track -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-remove-a-track - +1 1 MediaStream - @@ -16709,6 +18939,16 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#remove-track +1 +- +remove all connections +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#remove-all-connections + 1 - remove all credentials @@ -16749,6 +18989,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#remove-an-animation-effect +1 +- +remove an animation effect +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#remove-an-animation-effect + 1 - remove an animator instance @@ -16801,6 +19051,16 @@ https://dom.spec.whatwg.org/#concept-element-attributes-remove-by-namespace 1 1 - +remove an element from the top layer immediately +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#remove-an-element-from-the-top-layer-immediately +1 +1 +- remove an entry dfn fileapi @@ -16873,6 +19133,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-remove-an-input-source +1 +- +remove associated event-level reports and rate-limit records +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#remove-associated-event-level-reports-and-rate-limit-records + 1 - remove client hints from redirect if needed @@ -16923,6 +19193,26 @@ webusb current https://wicg.github.io/webusb/#remove-device-from-storage +1 +- +remove empty arrays +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-remove-empty-arrays + +1 +- +remove empty arrays +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-remove-empty-arrays + 1 - remove event @@ -16956,6 +19246,16 @@ https://wicg.github.io/nav-speculation/prerendering.html#prerendering-traversabl 1 prerendering traversable - +remove from the top layer immediately +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#remove-an-element-from-the-top-layer-immediately +1 +1 +- remove input source dfn webxr @@ -16978,6 +19278,16 @@ https://www.w3.org/TR/webxr/#xrsession-remove-input-source 1 XRSession - +remove or update sources with incompatible attribution scope fields +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#remove-or-update-sources-with-incompatible-attribution-scope-fields + +1 +- remove privileged no-cors request-headers dfn fetch @@ -17007,6 +19317,26 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#remove-replaced-animations +1 +- +remove sources with unselected attribution scopes +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#remove-sources-with-unselected-attribution-scopes + +1 +- +remove sources with unselected attribution scopes for destination +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#remove-sources-with-unselected-attribution-scopes-for-destination + 1 - remove the entry @@ -17053,6 +19383,16 @@ https://www.w3.org/TR/FileAPI/#removeTheEntry 1 blob url store - +remove the fragment directive +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#remove-the-fragment-directive + +1 +- remove the track dfn webrtc @@ -17139,9 +19479,9 @@ HTMLSelectElement - remove() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-remove 1 @@ -17160,15 +19500,15 @@ https://w3c.github.io/media-source/#dom-sourcebuffer-remove SourceBuffer - remove() -dfn -encrypted-media +method +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-remove - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-remove 1 -mediakeysession +1 +MediaKeySession - remove() method @@ -17181,6 +19521,17 @@ https://www.w3.org/TR/media-source-2/#dom-sourcebuffer-remove 1 SourceBuffer - +remove() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-remove +1 +1 +AnimationEffect +- remove(...tokens) method dom @@ -17302,6 +19653,28 @@ https://dom.spec.whatwg.org/#dom-element-removeattributenode 1 Element - +removeAttributes +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-removeattributes +1 +1 +SanitizerConfig +- +removeAttributes +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerelementnamespacewithattributes-removeattributes +1 +1 +SanitizerElementNamespaceWithAttributes +- removeChild(child) method dom @@ -17324,6 +19697,17 @@ https://html.spec.whatwg.org/multipage/media.html#dom-texttrack-removecue 1 TextTrack - +removeElements +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-removeelements +1 +1 +SanitizerConfig +- removeEntry(name) method fs @@ -17588,13 +19972,24 @@ https://www.w3.org/TR/media-source-2/#dom-mediasource-removesourcebuffer 1 MediaSource - -removeTrack() +removeStroke(stroke) method -mediacapture-streams -mediacapture-streams +handwriting-recognition +handwriting-recognition 1 current -https://w3c.github.io/mediacapture-main/#dom-mediastream-removetrack +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-removestroke +1 +1 +HandwritingDrawing +- +removeTrack() +method +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-mediastream-removetrack 1 1 MediaStream @@ -17710,6 +20105,17 @@ https://dom.spec.whatwg.org/#event-listener-removed event listener - removed +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationreplacedstate-removed +1 +1 +AnimationReplacedState +- +removed attribute webxr webxr @@ -17732,6 +20138,17 @@ https://immersive-web.github.io/webxr/#dom-xrinputsourceschangeeventinit-removed XRInputSourcesChangeEventInit - removed +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#storage-bucket-removed + +1 +storage bucket +- +removed attribute webxr webxr @@ -17783,6 +20200,17 @@ https://www.w3.org/TR/web-animations-1/#removed-replace-state 1 - +removed-card +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-removed-card +1 +1 +SmartCardResponseCode +- removedNodes attribute dom @@ -17794,35 +20222,57 @@ https://dom.spec.whatwg.org/#dom-mutationrecord-removednodes 1 MutationRecord - -removedSamplesForAcceleration -dict-member -webrtc-stats -webrtc-stats +removedRanges +attribute +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dom-bufferedchangeevent-removedranges +1 1 +BufferedChangeEvent +- +removedRanges +dict-member +media-source-2 +media-source +2 current -https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-removedsamplesforacceleration +https://w3c.github.io/media-source/#dom-bufferedchangeeventinit-removedranges 1 1 -RTCInboundRtpStreamStats +BufferedChangeEventInit - -removedSamplesForAcceleration +removedRanges +attribute +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeevent-removedranges +1 +1 +BufferedChangeEvent +- +removedRanges dict-member -webrtc-stats -webrtc-stats +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dom-bufferedchangeeventinit-removedranges 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-removedsamplesforacceleration 1 - -RTCMediaStreamTrackStats +BufferedChangeEventInit - removedSamplesForAcceleration dict-member webrtc-stats webrtc-stats 1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-removedsamplesforacceleration +current +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-removedsamplesforacceleration 1 1 RTCInboundRtpStreamStats @@ -17833,29 +20283,29 @@ webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-removedsamplesforacceleration +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-removedsamplesforacceleration 1 - -RTCMediaStreamTrackStats +1 +RTCInboundRtpStreamStats - removesourcebuffer -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-removesourcebuffer - +1 1 - removesourcebuffer -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-removesourcebuffer - +1 1 - removetrack @@ -17891,35 +20341,23 @@ https://www.w3.org/TR/mediacapture-streams/#event-mediastream-removetrack 1 - -removetrackingexception +removing steps dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-removetrackingexception - +dom +dom 1 -navigator -- -removetrackingexception() -dfn -tracking-dnt -tracking-dnt +current +https://dom.spec.whatwg.org/#concept-node-remove-ext 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-removetrackingexception - 1 -navigator - -removing steps +rename waiting period dfn -dom -dom +ecma-402 +ecma-402 1 current -https://dom.spec.whatwg.org/#concept-node-remove-ext +https://tc39.es/ecma402/#rename-waiting-period 1 1 - @@ -17955,6 +20393,17 @@ https://html.spec.whatwg.org/multipage/urls-and-fetching.html#blocking-token-ren 1 - render +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-render +1 +1 +GenerateBidOutput +- +render abstract-op webgpu webgpu @@ -17964,6 +20413,26 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-render 1 1 - +render document to a canvas +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#render-document-to-a-canvas + +1 +- +render in the top layer +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#render-in-the-top-layer +1 +1 +- render quantum dfn webaudio @@ -18064,6 +20533,17 @@ https://www.w3.org/TR/webgpu/#render-target-pixel-byte-cost 1 - +render url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-render-url + +1 +interest group ad +- render with a fallback font face dfn css-fonts-4 @@ -18229,6 +20709,72 @@ https://webaudio.github.io/web-audio-api/#dom-audiocontext-rendercapacity 1 AudioContext - +renderQuantumSize +attribute +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-renderquantumsize +1 +1 +AudioWorkletGlobalScope +- +renderQuantumSize +attribute +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-renderquantumsize +1 +1 +BaseAudioContext +- +renderSize +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-rendersize +1 +1 +ScoringBrowserSignals +- +renderSizeHint +dict-member +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-rendersizehint +1 +1 +AudioContextOptions +- +renderSizeHint +dict-member +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-rendersizehint +1 +1 +OfflineAudioContextOptions +- +renderStart +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-renderstart +1 +1 +PerformanceLongAnimationFrameTiming +- renderState attribute webxr @@ -18284,6 +20830,59 @@ https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-rende 1 LargestContentfulPaint - +renderURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionad-renderurl +1 +1 +AuctionAd +- +renderURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-renderurl +1 +1 +ReportingBrowserSignals +- +renderURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-renderurl +1 +1 +ScoringBrowserSignals +- +renderable +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#renderable + +1 +- +renderable +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#renderable + +1 +- renderable element dfn svg2 @@ -18310,7 +20909,7 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#renderable-format +https://gpuweb.github.io/gpuweb/#renderable 1 - @@ -18320,7 +20919,7 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#renderable-format +https://www.w3.org/TR/webgpu/#renderable 1 - @@ -18352,6 +20951,26 @@ css current https://drafts.csswg.org/css2/#rendered-content +1 +- +rendered content +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#rendered-content +1 +1 +- +rendered content +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#rendered-content +1 1 - rendered element @@ -18456,6 +21075,38 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#rendering-opportunity 1 +1 +- +rendering suppression for view transitions +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#document-rendering-suppression-for-view-transitions + +1 +document +- +rendering suppression for view transitions +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#document-rendering-suppression-for-view-transitions + +1 +document +- +rendering task source +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#rendering-task-source + 1 - rendering thread @@ -18531,12 +21182,23 @@ https://drafts.csswg.org/css-color-5/#dom-csscolorprofilerule-renderingintent 1 CSSColorProfileRule - -renderstate -dfn -webgpu -webgpu -1 -current +renderingIntent +attribute +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#dom-csscolorprofilerule-renderingintent +1 +1 +CSSColorProfileRule +- +renderstate +dfn +webgpu +webgpu +1 +current https://gpuweb.github.io/gpuweb/#renderstate 1 @@ -18557,9 +21219,10 @@ largest-contentful-paint largest-contentful-paint 1 current -https://w3c.github.io/largest-contentful-paint/#rendertime +https://w3c.github.io/largest-contentful-paint/#largestcontentfulpaint-rendertime 1 +LargestContentfulPaint - rendertime dfn @@ -18567,9 +21230,10 @@ largest-contentful-paint largest-contentful-paint 1 snapshot -https://www.w3.org/TR/largest-contentful-paint/#rendertime +https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-rendertime 1 +LargestContentfulPaint - renotify attribute @@ -18604,6 +21268,26 @@ https://notifications.spec.whatwg.org/#renotify-preference-flag 1 notification - +renounce +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#renounce + +1 +- +renunciation +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#renounce + +1 +- reorder dfn html @@ -18637,6 +21321,20 @@ https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-repeat-repeat border-image-repeat - repeat +value +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-repeat-x-repeat +1 +1 +background-repeat-x +background-repeat-y +background-repeat-block +background-repeat-inline +- +repeat attribute uievents uievents @@ -18766,6 +21464,17 @@ background-repeat - repeat-x value +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-repeat-repeat-x +1 +1 +background-repeat +- +repeat-x +value css-backgrounds-3 css-backgrounds 3 @@ -18788,6 +21497,17 @@ background-repeat - repeat-y value +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-repeat-repeat-y +1 +1 +background-repeat +- +repeat-y +value css-backgrounds-3 css-backgrounds 3 @@ -18847,6 +21567,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#repeated-duration +1 +- +repeated duration +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#repeated-duration + 1 - repeating-conic-gradient() @@ -19005,14 +21735,26 @@ CompositeOperation CompositeOperationOrAuto - replace -dfn +enum-value html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#hh-replace - +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigationhistorybehavior-replace +1 +1 +NavigationHistoryBehavior +- +replace +enum-value +html +html 1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtype-replace +1 +1 +NavigationType - replace dfn @@ -19048,6 +21790,17 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.replace Symbol - replace +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-autospace-replace +1 +1 +text-autospace +- +replace enum-value web-animations-1 web-animations @@ -19121,6 +21874,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-replace 1 AnimationEffect - +replace() +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-replace +1 +1 +AnimationEffect +- replace(...effects) method web-animations-2 @@ -19132,6 +21896,17 @@ https://drafts.csswg.org/web-animations-2/#dom-animationeffect-replace 1 AnimationEffect - +replace(...effects) +method +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationeffect-replace +1 +1 +AnimationEffect +- replace(searchValue, replaceValue) method ecmascript @@ -19374,6 +22149,17 @@ https://dom.spec.whatwg.org/#dom-childnode-replacewith 1 ChildNode - +replaceWithChildrenElements +dict-member +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-replacewithchildrenelements +1 +1 +SanitizerConfig +- replaceable animation dfn web-animations-1 @@ -19452,6 +22238,26 @@ css current https://drafts.csswg.org/css2/#replaced-element +1 +- +replaced element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#replaced-element +1 +1 +- +replaced element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#replaced-element +1 1 - replaced element @@ -19476,14 +22282,14 @@ https://encoding.spec.whatwg.org/#replacement - replacement dfn -ift -ift +turtledove +turtledove 1 current -https://w3c.github.io/IFT/Overview.html#patchresponse-replacement +https://wicg.github.io/turtledove/#ad-keyword-replacement-replacement 1 -PatchResponse +ad keyword replacement - replacement decoder dfn @@ -19505,6 +22311,17 @@ https://encoding.spec.whatwg.org/#replacement-error-returned-flag 1 - +replacements +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedreplaceinurn-urnorconfig-replacements-replacements +1 +1 +Navigator/deprecatedReplaceInURN(urnOrConfig, replacements) +- replaces client id dfn fetch @@ -19587,10 +22404,32 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-debug-data-body-on-trigger-registration-report +https://wicg.github.io/attribution-reporting-api/#generate-null-attribution-reports-report + +1 +generate null attribution reports +- +report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-verbose-debug-data-body-on-trigger-registration-report + +1 +obtain verbose debug data body on trigger registration +- +report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-verbose-debug-data-on-trigger-registration-report 1 -obtain debug data body on trigger registration +obtain verbose debug data on trigger registration - report dfn @@ -19598,10 +22437,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-debug-data-on-trigger-registration-report +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-report 1 -obtain debug data on trigger registration +trigger debug data - report dfn @@ -19621,6 +22460,16 @@ csp-next current https://wicg.github.io/csp-next/scripting-policy.html#abstract-opdef-report-a-scripting-policy-violation 1 +1 +- +report a private aggregation event +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#report-a-private-aggregation-event + 1 - report a warning to the console @@ -19633,13 +22482,13 @@ https://console.spec.whatwg.org/#report-a-warning-to-the-console 1 1 - -report an error +report an event dfn -html -html +fenced-frame +fenced-frame 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#report-the-error +https://wicg.github.io/fenced-frame/#report-an-event 1 - @@ -19649,7 +22498,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/webappapis.html#report-the-exception +https://html.spec.whatwg.org/multipage/webappapis.html#report-an-exception 1 1 - @@ -19704,6 +22553,16 @@ current https://wicg.github.io/webhid/#dfn-report-count-tag +- +report creation and scheduling steps +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#report-creation-and-scheduling-steps + +1 - report descriptor dfn @@ -19715,6 +22574,48 @@ https://wicg.github.io/webhid/#dfn-report-descriptor 1 - +report element timing +dfn +element-timing +element-timing +1 +current +https://wicg.github.io/element-timing/#report-element-timing +1 +1 +- +report frame timing +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#report-frame-timing +1 +1 +- +report header errors +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#registration-info-report-header-errors + +1 +registration info +- +report id +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-report-id + +1 +aggregatable report +- report id dfn attribution-reporting-api @@ -19725,8 +22626,10 @@ https://wicg.github.io/attribution-reporting-api/#attribution-report-report-id 1 attribution report -aggregatable report +aggregatable attribution report event-level report +aggregatable report +aggregatable debug report - report id tag dfn @@ -19746,6 +22649,26 @@ element-timing current https://wicg.github.io/element-timing/#report-image-element-timing +1 +- +report largest contentful paint +dfn +largest-contentful-paint +largest-contentful-paint +1 +current +https://w3c.github.io/largest-contentful-paint/#report-largest-contentful-paint +1 +1 +- +report largest contentful paint +dfn +largest-contentful-paint +largest-contentful-paint +1 +snapshot +https://www.w3.org/TR/largest-contentful-paint/#report-largest-contentful-paint +1 1 - report latest reading updated @@ -19766,16 +22689,6 @@ generic-sensor snapshot https://www.w3.org/TR/generic-sensor/#report-latest-reading-updated 1 -1 -- -report long tasks -dfn -longtasks-1 -longtasks -1 -snapshot -https://www.w3.org/TR/longtasks-1/#report-long-tasks - 1 - report only reporting endpoint @@ -19842,6 +22755,16 @@ https://www.w3.org/TR/reporting-1/#reportingobserver-report-queue 1 ReportingObserver - +report result +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#report-result + +1 +- report size tag dfn webhid @@ -19894,6 +22817,17 @@ https://wicg.github.io/layout-instability/#report-the-layout-shift-sources - report time dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-report-time + +1 +aggregatable report +- +report time +dfn attribution-reporting-api attribution-reporting-api 1 @@ -19902,8 +22836,10 @@ https://wicg.github.io/attribution-reporting-api/#attribution-report-report-time 1 attribution report -aggregatable report +aggregatable attribution report event-level report +aggregatable report +aggregatable debug report - report timing dfn @@ -19947,26 +22883,78 @@ https://www.w3.org/TR/reporting-1/#report-type 1 1 - -report validity steps +report url dfn -html -html +turtledove +turtledove 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#report-validity-steps +https://wicg.github.io/turtledove/#interestgroupreportingscriptrunnerglobalscope-report-url 1 +InterestGroupReportingScriptRunnerGlobalScope - -report window +report url dfn -attribution-reporting-api -attribution-reporting-api +turtledove +turtledove 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-state-report-window +https://wicg.github.io/turtledove/#reporting-result-report-url + +1 +reporting result +- +report validity steps +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#report-validity-steps + +1 +- +report win +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#report-win + +1 +- +report window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#report-window + +1 +- +report window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-state-report-window + +1 +trigger state +- +report window list +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#report-window-list 1 -trigger state - report-only dfn @@ -19989,6 +22977,28 @@ https://wicg.github.io/document-policy/#report-only-document-policy 1 - +report-only permissions policy +dfn +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#document-report-only-permissions-policy + +1 +Document +- +report-only permissions policy +dfn +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#document-report-only-permissions-policy + +1 +Document +- report-only reporting endpoint dfn html @@ -20009,6 +23019,17 @@ https://html.spec.whatwg.org/multipage/browsers.html#coop-struct-report-only-val 1 - +report-result +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#worklet-function-report-result + +1 +worklet function +- report-to dfn html @@ -20091,6 +23112,39 @@ https://www.w3.org/TR/CSP3/#report-uri 1 1 - +report-win +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#worklet-function-report-win + +1 +worklet function +- +reportAdAuctionLoss(url) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-fordebuggingonly-reportadauctionloss +1 +1 +ForDebuggingOnly +- +reportAdAuctionWin(url) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-fordebuggingonly-reportadauctionwin +1 +1 +ForDebuggingOnly +- reportCount dict-member webhid @@ -20113,6 +23167,28 @@ https://html.spec.whatwg.org/multipage/webappapis.html#dom-reporterror 1 WindowOrWorkerGlobalScope - +reportEvent() +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fence-reportevent +1 +1 +Fence +- +reportEvent(event) +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fence-reportevent +1 +1 +Fence +- reportId attribute webhid @@ -20198,7 +23274,7 @@ HTMLFormElement - report_to dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -20208,91 +23284,99 @@ https://w3c.github.io/network-error-logging/#dfn-report_to - report_to dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-report_to +https://www.w3.org/TR/network-error-logging/#dfn-report_to 1 - -reporting endpoint +reporting beacon map dfn -html -html +turtledove +turtledove 1 current -https://html.spec.whatwg.org/multipage/browsers.html#coop-struct-report-endpoint +https://wicg.github.io/turtledove/#interestgroupreportingscriptrunnerglobalscope-reporting-beacon-map 1 +InterestGroupReportingScriptRunnerGlobalScope - -reporting endpoint +reporting beacon map dfn -html -html +turtledove +turtledove 1 current -https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-reporting-endpoint -1 +https://wicg.github.io/turtledove/#reporting-result-reporting-beacon-map + 1 -embedder policy +reporting result - -reporting endpoint +reporting cache dfn -attribution-reporting-api -attribution-reporting-api +network-reporting +network-reporting 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-debug-report-reporting-endpoint +https://w3c.github.io/reporting/network-reporting.html#reporting-cache 1 -attribution debug report - -reporting endpoint +reporting configuration dfn -attribution-reporting-api -attribution-reporting-api +permissions-policy-1 +permissions-policy 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-rate-limit-record-reporting-endpoint +https://w3c.github.io/webappsec-permissions-policy/#declared-policy-reporting-configuration 1 -attribution rate-limit record +declared policy - -reporting endpoint +reporting configuration dfn -attribution-reporting-api -attribution-reporting-api +permissions-policy-1 +permissions-policy 1 -current -https://wicg.github.io/attribution-reporting-api/#attribution-report-reporting-endpoint +snapshot +https://www.w3.org/TR/permissions-policy-1/#declared-policy-reporting-configuration 1 -attribution report -aggregatable report -event-level report +declared policy +- +reporting destination info +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframetype-reporting-destination-info +1 +1 +fencedframetype - reporting endpoint dfn -attribution-reporting-api -attribution-reporting-api +html +html 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-reporting-endpoint +https://html.spec.whatwg.org/multipage/browsers.html#coop-struct-report-endpoint 1 -attribution source - reporting endpoint dfn -attribution-reporting-api -attribution-reporting-api +html +html 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-trigger-reporting-endpoint - +https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-reporting-endpoint 1 -attribution trigger +1 +embedder policy - reporting endpoint dfn @@ -20305,6 +23389,16 @@ https://wicg.github.io/document-policy/#policy-configuration-reporting-endpoint 1 policy configuration - +reporting entropy allowance +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#reporting-entropy-allowance + +1 +- reporting frequency dfn generic-sensor @@ -20327,7 +23421,7 @@ https://www.w3.org/TR/generic-sensor/#reporting-frequency - reporting group dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -20337,13 +23431,46 @@ https://w3c.github.io/network-error-logging/#dfn-reporting-group - reporting group dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-reporting-group +https://www.w3.org/TR/network-error-logging/#dfn-reporting-group + +1 +- +reporting macro map +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#reporting-destination-info-reporting-macro-map +1 +1 +reporting destination info +- +reporting macro map +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interestgroupreportingscriptrunnerglobalscope-reporting-macro-map + +1 +InterestGroupReportingScriptRunnerGlobalScope +- +reporting macro map +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#reporting-result-reporting-macro-map 1 +reporting result - reporting observer dfn @@ -20365,6 +23492,76 @@ https://www.w3.org/TR/reporting-1/#reporting-observer 1 - +reporting origin +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report-reporting-origin + +1 +aggregatable report +- +reporting origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-rate-limit-record-reporting-origin + +1 +attribution rate-limit record +- +reporting origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-report-reporting-origin + +1 +attribution report +aggregatable attribution report +event-level report +aggregatable report +aggregatable debug report +- +reporting origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-source-reporting-origin + +1 +attribution source +- +reporting origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-reporting-origin + +1 +attribution trigger +- +reporting origin +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#verbose-debug-report-reporting-origin + +1 +verbose debug report +- reporting rate dfn compute-pressure @@ -20385,6 +23582,38 @@ https://www.w3.org/TR/compute-pressure/#dfn-reporting-rate 1 - +reporting result +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#reporting-result + +1 +- +reporting site +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-record-reporting-site + +1 +aggregatable debug rate-limit record +- +reporting url map +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#reporting-destination-info-reporting-url-map +1 +1 +reporting destination info +- reporting-endpoints dfn reporting-1 @@ -20405,6 +23634,28 @@ https://www.w3.org/TR/reporting-1/#reporting-endpoints 1 1 - +reportingMetadata +dict-member +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageurlwithmetadata-reportingmetadata +1 +1 +SharedStorageUrlWithMetadata +- +reportingTimeout +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-reportingtimeout +1 +1 +AuctionAdConfig +- reports argument reporting-1 @@ -20483,12 +23734,12 @@ https://html.spec.whatwg.org/multipage/dom.html#represents - representation dfn -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#representation +clipboard-apis +clipboard-apis 1 +current +https://w3c.github.io/clipboard-apis/#representation + 1 - representation @@ -20496,8 +23747,8 @@ dfn clipboard-apis clipboard-apis 1 -current -https://w3c.github.io/clipboard-apis/#representation +snapshot +https://www.w3.org/TR/clipboard-apis/#representation 1 - @@ -20620,6 +23871,46 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-represents-a-web-element +1 +- +represents a web frame +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-represents-a-web-frame + +1 +- +represents a web frame +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-represents-a-web-frame + +1 +- +represents a web window +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-represents-a-web-window + +1 +- +represents a web window +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-represents-a-web-window + 1 - req_permissions @@ -20856,6 +24147,28 @@ FetchEventInit - request dfn +largest-contentful-paint +largest-contentful-paint +1 +current +https://w3c.github.io/largest-contentful-paint/#largest-contentful-paint-candidate-request + +1 +largest contentful paint candidate +- +request +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#pending-image-record-request + +1 +pending image record +- +request +dfn background-fetch background-fetch 1 @@ -20913,6 +24226,17 @@ BackgroundFetchRegistration/matchAll(request) BackgroundFetchRegistration/matchAll() - request +dict-member +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dom-digitalcredentialsprovider-request +1 +1 +DigitalCredentialsProvider +- +request dfn element-timing element-timing @@ -20935,6 +24259,17 @@ exchange record - request dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-adauctiondata-request +1 +1 +AdAuctionData +- +request +dict-member webusb webusb 1 @@ -20978,6 +24313,28 @@ https://www.w3.org/TR/IndexedDB-3/#request - request dfn +largest-contentful-paint +largest-contentful-paint +1 +snapshot +https://www.w3.org/TR/largest-contentful-paint/#largest-contentful-paint-candidate-request + +1 +largest contentful paint candidate +- +request +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#pending-image-record-request + +1 +pending image record +- +request +dfn service-workers service-workers 1 @@ -21119,7 +24476,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-request-a-position +https://w3c.github.io/geolocation/#dfn-request-a-position 1 - @@ -21144,6 +24501,16 @@ https://fs.spec.whatwg.org/#entry-request-access 1 file system entry - +request an element to be removed from the top layer +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#request-an-element-to-be-removed-from-the-top-layer +1 +1 +- request bluetooth devices dfn web-bluetooth @@ -21186,6 +24553,17 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#post-resource-reque 1 POST resource - +request context +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-request-context-request-context + +1 +server auction request context +- request error steps dfn xhr @@ -21226,6 +24604,27 @@ https://www.w3.org/TR/webxr-hit-test-1/#request-hit-test 1 - +request id +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#request-id +1 +1 +- +request id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-request-context-request-id + +1 +server auction request context +- request list dfn indexeddb-3 @@ -21366,6 +24765,16 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-request-referrer-policy +1 +- +request removal from the top layer +dfn +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#request-an-element-to-be-removed-from-the-top-layer +1 1 - request response list @@ -21428,6 +24837,16 @@ https://www.w3.org/TR/generic-sensor/#request-sensor-access 1 1 - +request storage access +dfn +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#request-storage-access +1 +1 +- request the "usb" permission dfn webusb @@ -21456,6 +24875,16 @@ webxr snapshot https://www.w3.org/TR/webxr/#request-the-xr-permission +1 +- +request to close +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-request-close + 1 - request to present an install prompt @@ -21663,50 +25092,6 @@ https://www.w3.org/TR/webgpu/#dom-gpu-requestadapter 1 GPU - -requestAdapterInfo() -method -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpuadapter-requestadapterinfo -1 -1 -GPUAdapter -- -requestAdapterInfo() -method -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpuadapter-requestadapterinfo -1 -1 -GPUAdapter -- -requestAdapterInfo(unmaskHints) -method -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpuadapter-requestadapterinfo -1 -1 -GPUAdapter -- -requestAdapterInfo(unmaskHints) -method -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpuadapter-requestadapterinfo -1 -1 -GPUAdapter -- requestAnimationFrame(callback) method html @@ -21740,6 +25125,39 @@ https://www.w3.org/TR/webxr/#dom-xrsession-requestanimationframe 1 XRSession - +requestBillingAddress +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions-requestbillingaddress +1 +1 +PaymentOptions +- +requestBillingAddress +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestbillingaddress +1 +1 +PaymentOptions +- +requestClose() +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#dom-closewatcher-requestclose +1 +1 +CloseWatcher +- requestData() method mediastream-recording @@ -21762,6 +25180,17 @@ https://www.w3.org/TR/mediastream-recording/#dom-mediarecorder-requestdata 1 MediaRecorder - +requestDestination +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-requestdestination +1 +1 +RouterCondition +- requestDevice() method webgpu @@ -21951,7 +25380,7 @@ XRSession - requestId attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -21961,12 +25390,34 @@ https://w3c.github.io/payment-request/#dom-paymentresponse-requestid PaymentResponse - requestId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-adauctiondata-requestid +1 +1 +AdAuctionData +- +requestId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-requestid +1 +1 +AuctionAdConfig +- +requestId attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-requestid +https://www.w3.org/TR/payment-request/#dom-paymentresponse-requestid 1 1 PaymentResponse @@ -22037,6 +25488,28 @@ https://www.w3.org/TR/requestidlecallback/#dom-window-requestidlecallback 1 Window - +requestLEScan() +method +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetooth-requestlescan +1 +1 +Bluetooth +- +requestLEScan(options) +method +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetooth-requestlescan +1 +1 +Bluetooth +- requestLightProbe() method webxr-lighting-estimation-1 @@ -22092,39 +25565,182 @@ https://webaudio.github.io/web-midi-api/#dom-navigator-requestmidiaccess 1 Navigator - -requestMIDIAccess(options) +requestMIDIAccess() method webmidi webmidi 1 -current -https://webaudio.github.io/web-midi-api/#dom-navigator-requestmidiaccess +snapshot +https://www.w3.org/TR/webmidi/#dom-navigator-requestmidiaccess 1 1 Navigator - -requestMediaKeySystemAccess() +requestMIDIAccess(options) method -encrypted-media -encrypted-media +webmidi +webmidi 1 current -https://w3c.github.io/encrypted-media/#dom-navigator-requestmediakeysystemaccess +https://webaudio.github.io/web-midi-api/#dom-navigator-requestmidiaccess 1 1 Navigator - -requestMediaKeySystemAccess(keySystem, supportedConfigurations) +requestMIDIAccess(options) method -encrypted-media -encrypted-media +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-navigator-requestmidiaccess +1 +1 +Navigator +- +requestMediaKeySystemAccess() +method +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dom-navigator-requestmediakeysystemaccess +1 1 +Navigator +- +requestMediaKeySystemAccess() +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-navigator-requestmediakeysystemaccess +1 +1 +Navigator +- +requestMediaKeySystemAccess(keySystem, supportedConfigurations) +method +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-navigator-requestmediakeysystemaccess 1 1 Navigator - +requestMediaKeySystemAccess(keySystem, supportedConfigurations) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-navigator-requestmediakeysystemaccess +1 +1 +Navigator +- +requestMethod +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-requestmethod +1 +1 +RouterCondition +- +requestMode +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-requestmode +1 +1 +RouterCondition +- +requestOverride(value) +method +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-requestoverride +1 +1 +PreferenceObject +- +requestPayerEmail +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions-requestpayeremail +1 +1 +PaymentOptions +- +requestPayerEmail +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayeremail +1 +1 +PaymentOptions +- +requestPayerName +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions-requestpayername +1 +1 +PaymentOptions +- +requestPayerName +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayername +1 +1 +PaymentOptions +- +requestPayerPhone +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions-requestpayerphone +1 +1 +PaymentOptions +- +requestPayerPhone +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayerphone +1 +1 +PaymentOptions +- requestPermission() method notifications @@ -22202,6 +25818,28 @@ https://www.w3.org/TR/orientation-event/#dom-deviceorientationevent-requestpermi 1 DeviceOrientationEvent - +requestPermission(absolute) +method +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#dom-deviceorientationevent-requestpermission +1 +1 +DeviceOrientationEvent +- +requestPermission(absolute) +method +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#dom-deviceorientationevent-requestpermission +1 +1 +DeviceOrientationEvent +- requestPermission(deprecatedCallback) method notifications @@ -22279,6 +25917,28 @@ https://www.w3.org/TR/pointerlock-2/#dom-element-requestpointerlock 1 Element - +requestPointerLock(options) +method +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dom-element-requestpointerlock +1 +1 +Element +- +requestPointerLock(options) +method +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dom-element-requestpointerlock +1 +1 +Element +- requestPort() method serial @@ -22411,6 +26071,28 @@ https://www.w3.org/TR/webxr/#dom-xrsystem-requestsession 1 XRSystem - +requestShipping +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions-requestshipping +1 +1 +PaymentOptions +- +requestShipping +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestshipping +1 +1 +PaymentOptions +- requestStart attribute navigation-timing-2 @@ -22466,13 +26148,24 @@ https://privacycg.github.io/storage-access/#dom-document-requeststorageaccess 1 Document - -requestStorageAccessForOrigin(requestedOrigin) +requestStorageAccess(types) +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-document-requeststorageaccess +1 +1 +Document +- +requestStorageAccessFor(requestedOrigin) method -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#dom-document-requeststorageaccessfororigin +https://privacycg.github.io/requestStorageAccessFor/#dom-document-requeststorageaccessfor 1 1 Document @@ -22543,14 +26236,46 @@ https://www.w3.org/TR/webxr/#dom-xrview-requestviewportscale 1 XRView - +requestWindow() +method +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpicture-requestwindow +1 +1 +DocumentPictureInPicture +- +requestWindow(options) +method +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpicture-requestwindow +1 +1 +DocumentPictureInPicture +- request_headers dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current https://w3c.github.io/network-error-logging/#dfn-request_headers +1 +- +request_headers +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#dfn-request_headers + 1 - requested features @@ -22579,9 +26304,10 @@ generic-sensor generic-sensor 1 current -https://w3c.github.io/sensors/#requested-sampling-frequency +https://w3c.github.io/sensors/#virtual-sensor-requested-sampling-frequency 1 +virtual sensor - requested sampling frequency dfn @@ -22589,7 +26315,28 @@ generic-sensor generic-sensor 1 snapshot -https://www.w3.org/TR/generic-sensor/#requested-sampling-frequency +https://www.w3.org/TR/generic-sensor/#virtual-sensor-requested-sampling-frequency + +1 +virtual sensor +- +requested sampling interval +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-requested-sampling-interval + +1 +- +requested sampling interval +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-requested-sampling-interval 1 - @@ -22613,6 +26360,17 @@ https://www.w3.org/TR/compute-pressure/#dfn-requested-sampling-rate 1 - +requested size +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-requested-size + +1 +auction config +- requested url dfn resource-timing @@ -22657,47 +26415,47 @@ view - requestedOrigin argument -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#dom-document-requeststorageaccessfororigin-requestedorigin-requestedorigin +https://privacycg.github.io/requestStorageAccessFor/#dom-document-requeststorageaccessfor-requestedorigin-requestedorigin 1 1 -Document/requestStorageAccessForOrigin(requestedOrigin) +Document/requestStorageAccessFor(requestedOrigin) - requestedOrigin dict-member -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#dom-toplevelstorageaccesspermissiondescriptor-requestedorigin +https://privacycg.github.io/requestStorageAccessFor/#dom-toplevelstorageaccesspermissiondescriptor-requestedorigin 1 1 TopLevelStorageAccessPermissionDescriptor - -requestedSamplingFrequency +requestedSize dict-member -generic-sensor -generic-sensor +turtledove +turtledove 1 current -https://w3c.github.io/sensors/#dom-mocksensor-requestedsamplingfrequency +https://wicg.github.io/turtledove/#dom-auctionadconfig-requestedsize 1 1 -MockSensor +AuctionAdConfig - -requestedSamplingFrequency +requestedSize dict-member -generic-sensor -generic-sensor +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensor-requestedsamplingfrequency +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-requestedsize 1 1 -MockSensor +BiddingBrowserSignals - requester dfn @@ -22740,38 +26498,6 @@ https://www.w3.org/TR/permissions/#dfn-request-permission-to-use 1 1 - -requestmediakeysystemaccess -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-navigator-requestmediakeysystemaccess - -1 -navigator -- -requestmediakeysystemaccess() -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-navigator-requestmediakeysystemaccess - -1 -navigator -- -requestmidiaccess -dfn -webmidi -webmidi -1 -snapshot -https://www.w3.org/TR/webmidi/#dom-navigator-requestmidiaccess -1 -1 -- requests argument service-workers @@ -23130,9 +26856,9 @@ HTMLInputElement - required enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysrequirement-required 1 @@ -23194,9 +26920,29 @@ https://webidl.spec.whatwg.org/#required-dictionary-member dictionary member - required -enum-value -credential-management-1 -credential-management +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x2 +1 +1 +- +required +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x2 +1 +1 +- +required +enum-value +credential-management-1 +credential-management 1 snapshot https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequirement-required @@ -23205,15 +26951,15 @@ https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequiremen CredentialMediationRequirement - required -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysrequirement-required - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysrequirement-required +1 1 -mediakeysrequirement +MediaKeysRequirement - required dfn @@ -23257,6 +27003,18 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report-required-a 1 aggregatable report +aggregatable attribution report +aggregatable debug report +- +required anchor reference +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#required-anchor-reference + + - required constraints dfn @@ -23329,6 +27087,27 @@ https://www.w3.org/TR/webxr/#required-features 1 - +required partition key attributes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#required-partition-key-attributes + +1 +- +required seller capabilities +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-required-seller-capabilities + +1 +auction config +- required-ascii-whitespace grammar csp3 @@ -23459,6 +27238,17 @@ https://www.w3.org/TR/webgpu/#dom-gpudevicedescriptor-requiredlimits 1 GPUDeviceDescriptor - +requiredSellerCapabilities +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-requiredsellercapabilities +1 +1 +AuctionAdConfig +- requiredalignof dfn wgsl @@ -23552,23 +27342,83 @@ unknown use video - -requiredtobeuniform +requiredtobeuniform.error +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#requiredtobeuniformerror + +1 +- +requiredtobeuniform.error +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#requiredtobeuniformerror + +1 +- +requiredtobeuniform.info +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#requiredtobeuniforminfo + +1 +- +requiredtobeuniform.info +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#requiredtobeuniforminfo + +1 +- +requiredtobeuniform.s +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#requiredtobeuniforms + +1 +- +requiredtobeuniform.s +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#requiredtobeuniforms + +1 +- +requiredtobeuniform.warning dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#requiredtobeuniform +https://gpuweb.github.io/gpuweb/wgsl/#requiredtobeuniformwarning 1 - -requiredtobeuniform +requiredtobeuniform.warning dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#requiredtobeuniform +https://www.w3.org/TR/WGSL/#requiredtobeuniformwarning 1 - @@ -23583,6 +27433,28 @@ https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rule-r 1 speculation rule - +requires +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-requires + +1 +syntax_kw +- +requires +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_kw-requires + +1 +syntax_kw +- requires anonymity dfn prefetch @@ -23646,6 +27518,59 @@ https://www.w3.org/TR/credential-management-1/#origin-requires-user-mediation 1 origin - +requires-directive +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#requires-directive + +1 +- +requires-directive +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#requires-directive + +1 +- +requires_directive +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-requires_directive + +1 +syntax +- +requires_directive +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-requires_directive + +1 +syntax +- +requireunreliable +dfn +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#obtain-a-connection-requireunreliable +1 +1 +obtain a connection +- reregisteredwhilefiring dfn background-sync @@ -23835,6 +27760,39 @@ https://tc39.es/ecma262/multipage/ecmascript-language-lexical-grammar.html#sec-k 1 ECMAScript - +reserved.top_navigation +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-event-type-reservedtop_navigation + +1 +automatic beacon event type +- +reserved.top_navigation_commit +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-event-type-reservedtop_navigation_commit + +1 +automatic beacon event type +- +reserved.top_navigation_start +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#automatic-beacon-event-type-reservedtop_navigation_start + +1 +automatic beacon event type +- reset dfn html @@ -23901,6 +27859,17 @@ https://w3c.github.io/webtransport/#stream-reset stream - reset +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarddisposition-reset +1 +1 +SmartCardDisposition +- +reset dfn webtransport webtransport @@ -24010,7 +27979,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#reset-button-state-(type=reset) +https://html.spec.whatwg.org/multipage/input.html#reset-button-state-(type%3Dreset) 1 1 input @@ -24045,6 +28014,16 @@ css-fonts current https://drafts.csswg.org/css-fonts-4/#reset-implicitly +1 +- +reset implicitly +dfn +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#reset-implicitly + 1 - reset mock capture devices @@ -24054,6 +28033,27 @@ mediacapture-automation 1 current https://w3c.github.io/mediacapture-automation/#reset-mock-capture-devices +1 +1 +extension commands +- +reset observation window +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-reset-observation-window + +1 +- +reset observation window +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-reset-observation-window 1 - @@ -24115,26 +28115,6 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#reset-the-insertion-mode-appropriately -1 -- -reset the memory buffer -dfn -wasm-js-api-2 -wasm-js-api -2 -current -https://webassembly.github.io/spec/js-api/#reset-the-memory-buffer - -1 -- -reset the memory buffer -dfn -wasm-js-api-2 -wasm-js-api -2 -snapshot -https://www.w3.org/TR/wasm-js-api-2/#reset-the-memory-buffer - 1 - reset the rendering context to its default state @@ -24222,11 +28202,11 @@ HTMLFormElement - reset() method -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-reset +https://w3c.github.io/gamepad/#dom-gamepadhapticactuator-reset 1 1 GamepadHapticActuator @@ -24299,6 +28279,17 @@ USBDevice - reset() method +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticactuator-reset +1 +1 +GamepadHapticActuator +- +reset() +method webcodecs webcodecs 1 @@ -24352,6 +28343,17 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoder-reset 1 VideoEncoder - +reset-card +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-reset-card +1 +1 +SmartCardResponseCode +- reset-only sub-property dfn css-cascade-3 @@ -24532,17 +28534,39 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape 1 MLGraphBuilder - -resident -dfn -html -html +reshape(input, newShape, options) +method +webnn +webnn 1 current -https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-co-resident - +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-reshape +1 1 +MLGraphBuilder - -resident credential +reshape(input, newShape, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape +1 +1 +MLGraphBuilder +- +resident +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-co-resident + +1 +- +resident credential dfn webauthn-3 webauthn @@ -24626,6 +28650,28 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatorselectioncriteria-residentkey 1 AuthenticatorSelectionCriteria - +resizable +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.resizable +1 +1 +ArrayBuffer +- +resizable arraybuffer +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-fixed-length-and-resizable-arraybuffer-objects +1 +1 +ECMAScript +- resize property css-ui-3 @@ -24648,7 +28694,7 @@ https://drafts.csswg.org/css-ui-4/#propdef-resize - resize dfn -css-viewport +css-viewport-1 css-viewport 1 current @@ -24708,6 +28754,16 @@ css-ui snapshot https://www.w3.org/TR/css-ui-4/#propdef-resize 1 +1 +- +resize +dfn +css-viewport-1 +css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#resize + 1 - resize @@ -24742,6 +28798,17 @@ https://wicg.github.io/window-controls-overlay/#dfn-title-bar-region-resizes 1 - +resize(newLength) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.resize +1 +1 +ArrayBuffer +- resizeBy(x, y) method cssom-view-1 @@ -24960,7 +29027,7 @@ https://www.w3.org/TR/screen-capture/#dfn-resizemode - resizes-content dfn -css-viewport +css-viewport-1 css-viewport 1 current @@ -24968,14 +29035,34 @@ https://drafts.csswg.org/css-viewport/#resizes-content 1 - -resizes-visual +resizes-content dfn +css-viewport-1 css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#resizes-content + +1 +- +resizes-visual +dfn +css-viewport-1 css-viewport 1 current https://drafts.csswg.org/css-viewport/#resizes-visual +1 +- +resizes-visual +dfn +css-viewport-1 +css-viewport +1 +snapshot +https://www.w3.org/TR/css-viewport-1/#resizes-visual + 1 - resolution @@ -25022,17 +29109,6 @@ https://www.w3.org/Consortium/Process/#group-decision 1 - resolution -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-resolution -1 -1 -CSSNumericBaseType -- -resolution dict-member css-typed-om-1 css-typed-om @@ -25081,10 +29157,10 @@ fs fs 1 current -https://fs.spec.whatwg.org/#entry-resolve +https://fs.spec.whatwg.org/#locator-resolve 1 -file system entry +file system locator - resolve dfn @@ -25094,16 +29170,6 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#import-meta-resolve -1 -- -resolve -dfn -presentation-api -presentation-api -1 -current -https://w3c.github.io/presentation-api/#dfn-resolve - 1 - resolve @@ -25124,16 +29190,6 @@ webidl current https://webidl.spec.whatwg.org/#resolve 1 -1 -- -resolve -dfn -presentation-api -presentation-api -1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-resolve - 1 - resolve @@ -25154,6 +29210,26 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-resolve +1 +- +resolve @view-transition rule +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#resolve-view-transition-rule + +1 +- +resolve @view-transition rule +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#resolve-view-transition-rule + 1 - resolve a blob url @@ -25194,6 +29270,16 @@ geolocation-sensor snapshot https://www.w3.org/TR/geolocation-sensor/#resolve-a-geolocation-promise +1 +- +resolve a module integrity metadata +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/webappapis.html#resolving-a-module-integrity-metadata + 1 - resolve a module specifier @@ -25214,6 +29300,16 @@ entries-api current https://wicg.github.io/entries-api/#resolve-a-relative-path +1 +- +resolve a typed value +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#resolve-a-typed-value + 1 - resolve a url-like module specifier @@ -25224,6 +29320,36 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#resolving-a-url-like-module-specifier +1 +- +resolve a var() function +dfn +css-variables-1 +css-variables +1 +current +https://drafts.csswg.org/css-variables-1/#resolve-a-var-function +1 +1 +- +resolve an arbitrary substitution function +dfn +css-variables-1 +css-variables +1 +current +https://drafts.csswg.org/css-variables-1/#resolve-an-arbitrary-substitution-function +1 +1 +- +resolve an argument +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#resolve-an-argument + 1 - resolve an imports match @@ -25286,6 +29412,26 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#resolve-get-client-promise +1 +- +resolve inbound cross-document view-transition +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#resolve-inbound-cross-document-view-transition +1 +1 +- +resolve inbound cross-document view-transition +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#resolve-inbound-cross-document-view-transition +1 1 - resolve indices @@ -25360,14 +29506,13 @@ https://www.w3.org/TR/css-tables-3/#resolving-percentages-heights-in-table-cell- - resolve the finished promise dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-resolve-the-finished-promise +https://html.spec.whatwg.org/multipage/nav-history-apis.html#resolve-the-finished-promise 1 -navigation API method navigation - resolve the requested features dfn @@ -25389,6 +29534,17 @@ https://www.w3.org/TR/webxr/#resolve-the-requested-features 1 - +resolve to config +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-resolve-to-config + +1 +auction config +- resolve(possibleDescendant) method fs @@ -25455,33 +29611,35 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderpasscolorattachment-resolvetarget 1 GPURenderPassColorAttachment - -resolved -dfn -presentation-api -presentation-api +resolveToConfig +dict-member +shared-storage +shared-storage 1 current -https://w3c.github.io/presentation-api/#dfn-resolve - +https://wicg.github.io/shared-storage/#dom-sharedstoragerunoperationmethodoptions-resolvetoconfig +1 1 +SharedStorageRunOperationMethodOptions - -resolved -dfn -webrtc -webrtc +resolveToConfig +dict-member +turtledove +turtledove 1 current -https://w3c.github.io/webrtc-pc/#dfn-resolve - +https://wicg.github.io/turtledove/#dom-auctionadconfig-resolvetoconfig +1 1 +AuctionAdConfig - resolved dfn -presentation-api -presentation-api +webrtc +webrtc 1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-resolve +current +https://w3c.github.io/webrtc-pc/#dfn-resolve 1 - @@ -25523,6 +29681,16 @@ svg snapshot https://www.w3.org/TR/SVG2/text.html#TermResolvedDescendantNode 1 +1 +- +resolved local value +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#resolved-local-value + 1 - resolved type @@ -25676,6 +29844,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#r 1 ECMAScript - +resolvedbinding record +dfn +tc39-source-phase-imports +tc39-source-phase-imports +1 +current +https://tc39.es/proposal-source-phase-imports/#resolvedbinding-record +1 +1 +- resolvedbinding records dfn ecmascript @@ -25860,17 +30038,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_resource -1 - -- -resource -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_resource +https://w3c.github.io/i18n-glossary/#dfn-resource 1 - @@ -25906,17 +30074,6 @@ https://w3c.github.io/webappsec-csp/#violation-resource violation - resource -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlbufferresourceview-resource -1 -1 -MLBufferResourceView -- -resource dfn csp3 csp @@ -25943,29 +30100,29 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_resource +https://www.w3.org/TR/i18n-glossary/#dfn-resource 1 - resource dfn -i18n-glossary -i18n-glossary +miniapp-packaging +miniapp-packaging 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_resource -1 +https://www.w3.org/TR/miniapp-packaging/#dfn-resource +1 - resource dfn -miniapp-packaging -miniapp-packaging +rdf12-concepts +rdf-concepts 1 snapshot -https://www.w3.org/TR/miniapp-packaging/#dfn-resource +https://www.w3.org/TR/rdf12-concepts/#dfn-resource + -1 - resource dict-member @@ -25978,17 +30135,6 @@ https://www.w3.org/TR/webgpu/#dom-gpubindgroupentry-resource 1 GPUBindGroupEntry - -resource -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlbufferresourceview-resource -1 -1 -MLBufferResourceView -- resource document dfn svg-integration @@ -26029,53 +30175,23 @@ https://mimesniff.spec.whatwg.org/#resource-header 1 - -resource hint link +resource identifier dfn -resource-hints -resource-hints +i18n-glossary +i18n-glossary 1 current -https://w3c.github.io/resource-hints/#dfn-resource-hint-link - +https://w3c.github.io/i18n-glossary/#dfn-resource-identifier 1 + - -resource hint link +resource identifier dfn -resource-hints -resource-hints +i18n-glossary +i18n-glossary 1 snapshot -https://www.w3.org/TR/resource-hints/#dfn-resource-hint-link -1 -1 -- -resource identifier -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn_resid -1 - -- -resource identifier -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn_resid -1 - -- -resource identifiers -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn_resid +https://www.w3.org/TR/i18n-glossary/#dfn-resource-identifier 1 - @@ -26117,6 +30233,46 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#resource-interface-of-a-shader +1 +- +resource list +dfn +audiobooks +audiobooks +1 +current +https://w3c.github.io/audiobooks/#dfn-resource-list + +1 +- +resource list +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-resource-list + +1 +- +resource list +dfn +audiobooks +audiobooks +1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-resource-list + +1 +- +resource list +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-resource-list + 1 - resource metadata management @@ -26261,15 +30417,26 @@ https://www.w3.org/TR/resource-timing/#dfn-resource-timing-secondary-buffer-curr - resource-evicted enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessionclosedreason-resource-evicted 1 1 MediaKeySessionClosedReason - +resource-evicted +enum-value +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessionclosedreason-resource-evicted +1 +1 +MediaKeySessionClosedReason +- resourceId dict-member js-self-profiling @@ -26290,16 +30457,6 @@ current https://html.spec.whatwg.org/multipage/microdata.html#md-vevent-resources 1 -- -resources -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_resource -1 - - resources dfn @@ -26334,23 +30491,23 @@ ProfilerTrace - resources dfn -i18n-glossary -i18n-glossary +miniapp-packaging +miniapp-packaging 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_resource -1 +https://www.w3.org/TR/miniapp-packaging/#dfn-resource +1 - resources dfn -miniapp-packaging -miniapp-packaging +rdf12-concepts +rdf-concepts 1 snapshot -https://www.w3.org/TR/miniapp-packaging/#dfn-resource +https://www.w3.org/TR/rdf12-concepts/#dfn-resource + -1 - respond to paymentrequest algorithm dfn @@ -26596,8 +30753,9 @@ html 1 current https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-response - 1 +1 +navigate - response dfn @@ -26731,6 +30889,17 @@ https://www.w3.org/TR/service-workers/#dom-cache-put-request-response-response Cache/put(request, response) - response +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationresponsejson-response +1 +1 +AuthenticationResponseJSON +- +response attribute webauthn-3 webauthn @@ -26742,6 +30911,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-response PublicKeyCredential - response +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-registrationresponsejson-response +1 +1 +RegistrationResponseJSON +- +response attribute xhr xhr @@ -26846,6 +31026,28 @@ https://xhr.spec.whatwg.org/#response-type 1 - +responseCode +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarderror-responsecode +1 +1 +SmartCardError +- +responseCode +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarderroroptions-responsecode +1 +1 +SmartCardErrorOptions +- responseEnd attribute navigation-timing-2 @@ -27013,12 +31215,22 @@ XMLHttpRequest - response_headers dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current https://w3c.github.io/network-error-logging/#dfn-response_headers +1 +- +response_headers +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#dfn-response_headers + 1 - responsesReceived @@ -27189,6 +31401,28 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#restorable-scrollab 1 - +restore +dfn +encoding +encoding +1 +current +https://encoding.spec.whatwg.org/#concept-stream-prepend + +1 +I/O queue +- +restore a mark +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-restore-a-mark + +1 +token stream +- restore persisted state dfn html @@ -27261,16 +31495,6 @@ https://immersive-web.github.io/anchors/#dom-xrsession-restorepersistentanchor 1 XRSession - -restoring scroll position data -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#restoring-scroll-position-data - -1 -- restrictOwnAudio dict-member screen-capture @@ -27337,6 +31561,68 @@ https://www.w3.org/TR/screen-capture/#dom-mediatracksupportedconstraints-restric 1 MediaTrackSupportedConstraints - +restrictTo() +method +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dom-browsercapturemediastreamtrack-restrictto +1 +1 +BrowserCaptureMediaStreamTrack +- +restrictTo(RestrictionTarget) +method +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dom-browsercapturemediastreamtrack-restrictto +1 +1 +BrowserCaptureMediaStreamTrack +- +restrictable mediastreamtrack +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-restrictable-mediastreamtrack + +1 +- +restricted +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-restricted + +1 +- +restriction mechanism +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-restriction-mechanism + +1 +- +restriction-states +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-restriction-states + +1 +- restrictions for contents of script elements dfn html @@ -27345,6 +31631,16 @@ html current https://html.spec.whatwg.org/multipage/scripting.html#restrictions-for-contents-of-script-elements +1 +- +restrictiontarget production +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-restrictiontarget-production + 1 - restrictownaudio @@ -27395,6 +31691,17 @@ XPathExpression/evaluate(contextNode, type) XPathExpression/evaluate(contextNode) - result +descriptor +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#descdef-function-result +1 +1 +@function +- +result attribute filter-effects-1 filter-effects @@ -27437,6 +31744,17 @@ https://html.spec.whatwg.org/multipage/scripting.html#concept-script-result 1 - result +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-result +1 +1 +constructor string parser +- +result attribute fileapi fileapi @@ -27547,17 +31865,6 @@ SpeechRecognition - result dfn -urlpattern -urlpattern -1 -current -https://wicg.github.io/urlpattern/#constructor-string-parser-result -1 -1 -constructor string parser -- -result -dfn webpackage webpackage 1 @@ -27628,7 +31935,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#algorithm-result -1 + 1 - result @@ -27697,26 +32004,6 @@ https://dom.spec.whatwg.org/#dom-xpathresult-resulttype 1 XPathResult - -resulting url record -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/urls-and-fetching.html#resulting-url-record - -1 -- -resulting url string -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/urls-and-fetching.html#resulting-url-string - -1 -- resultingClientId attribute service-workers @@ -27806,6 +32093,17 @@ https://wicg.github.io/speech-api/#dom-speechrecognitioneventinit-results SpeechRecognitionEventInit - results +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsprfoutputs-results +1 +1 +AuthenticationExtensionsPRFOutputs +- +results attribute webxr-hit-test-1 webxr-hit-test @@ -27834,7 +32132,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#resume - +1 1 - resume @@ -27998,28 +32296,72 @@ https://dom.spec.whatwg.org/#retarget 1 1 - -retransmittedBytesSent +retransmittedBytesReceived dict-member webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-retransmittedbytessent +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-retransmittedbytesreceived 1 1 -RTCOutboundRtpStreamStats +RTCInboundRtpStreamStats - -retransmittedBytesSent +retransmittedBytesReceived dict-member webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-retransmittedbytessent +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-retransmittedbytesreceived +1 +1 +RTCInboundRtpStreamStats +- +retransmittedBytesSent +dict-member +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-retransmittedbytessent +1 +1 +RTCOutboundRtpStreamStats +- +retransmittedBytesSent +dict-member +webrtc-stats +webrtc-stats +1 +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-retransmittedbytessent 1 1 RTCOutboundRtpStreamStats - +retransmittedPacketsReceived +dict-member +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-retransmittedpacketsreceived +1 +1 +RTCInboundRtpStreamStats +- +retransmittedPacketsReceived +dict-member +webrtc-stats +webrtc-stats +1 +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-retransmittedpacketsreceived +1 +1 +RTCInboundRtpStreamStats +- retransmittedPacketsSent dict-member webrtc-stats @@ -28090,6 +32432,16 @@ dom-parsing current https://w3c.github.io/DOM-Parsing/#dfn-retrieving-a-preferred-prefix-string +1 +- +retrieve a redemption record +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#retrieve-a-redemption-record + 1 - retrieve a referenced value from an index @@ -28110,6 +32462,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#retrieve-a-referenced-value-from-an-index +1 +- +retrieve a token +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#retrieve-a-token + 1 - retrieve a value from an index @@ -28152,6 +32514,28 @@ https://www.w3.org/TR/IndexedDB-3/#retrieve-a-value-from-an-object-store 1 - +retrieve all entries from the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-retrieve-all-entries-from-the-database + +1 +shared storage database +- +retrieve an entry from the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-retrieve-an-entry-from-the-database + +1 +shared storage database +- retrieve multiple keys from an object store dfn indexeddb-3 @@ -28284,7 +32668,7 @@ https://www.w3.org/TR/wasm-js-api-2/#retrieving-an-extern-value - retry() method -payment-request-1.1 +payment-request payment-request 1 current @@ -28295,18 +32679,18 @@ PaymentResponse - retry() method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-retry +https://www.w3.org/TR/payment-request/#dom-paymentresponse-retry 1 1 PaymentResponse - retry(errorFields) method -payment-request-1.1 +payment-request payment-request 1 current @@ -28317,15 +32701,26 @@ PaymentResponse - retry(errorFields) method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-retry +https://www.w3.org/TR/payment-request/#dom-paymentresponse-retry 1 1 PaymentResponse - +retry_after +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-network-reporting-endpoint-retry_after +1 +1 +network reporting endpoint +- return dfn wgsl @@ -28420,6 +32815,16 @@ ua-client-hints current https://wicg.github.io/ua-client-hints/#abstract-opdef-return-the-sec-ch-ua-full-version-list-value-for-a-request 1 +1 +- +return type +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#return-type + 1 - return type @@ -28472,28 +32877,6 @@ https://www.w3.org/TR/WGSL/#return-value 1 - -return(value) -method -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-return -1 -1 -AsyncGenerator -- -return(value) -method -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.return -1 -1 -Generator -- returnSequence dict-member webnn @@ -28687,6 +33070,16 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-link-rev 1 HTMLLinkElement - +reveal +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#reveal + +1 +- reverse value css-animations-1 @@ -28699,6 +33092,28 @@ https://drafts.csswg.org/css-animations-1/#valdef-animation-direction-reverse animation-direction - reverse +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-playbackdirection-reverse +1 +1 +PlaybackDirection +- +reverse +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#playback-direction-reverse + +1 +playback direction +- +reverse value motion-1 motion @@ -28788,7 +33203,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.reverse +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reverse 1 1 %TypedArray% @@ -28905,6 +33320,17 @@ all - revert value +css-cascade-5 +css-cascade +5 +current +https://drafts.csswg.org/css-cascade-5/#valdef-all-revert +1 +1 +all +- +revert +value css-cascade-4 css-cascade 4 @@ -28968,36 +33394,38 @@ https://webbluetoothcg.github.io/web-bluetooth/#revoke-bluetooth-access 1 - -revoke sensor permission -dfn -generic-sensor -generic-sensor +revoke(permissionDesc) +method +permissions-revoke +permissions-revoke 1 current -https://w3c.github.io/sensors/#revoke-sensor-permission +https://wicg.github.io/permissions-revoke/#dom-permissions-revoke 1 1 +Permissions - -revoke sensor permission -dfn -generic-sensor -generic-sensor +revokeObjectURL +dict-member +saa-non-cookie-storage +saa-non-cookie-storage 1 -snapshot -https://www.w3.org/TR/generic-sensor/#revoke-sensor-permission +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-revokeobjecturl 1 1 +StorageAccessTypes - -revoke(permissionDesc) +revokeObjectURL(url) method -permissions-revoke -permissions-revoke +saa-non-cookie-storage +saa-non-cookie-storage 1 current -https://wicg.github.io/permissions-revoke/#dom-permissions-revoke +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-revokeobjecturl 1 1 -Permissions +StorageAccessHandle - revokeObjectURL(url) method @@ -29027,7 +33455,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#rewind +https://urlpattern.spec.whatwg.org/#rewind 1 - @@ -29037,29 +33465,682 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#rewind-and-set-state +https://urlpattern.spec.whatwg.org/#rewind-and-set-state 1 - -rex -value -css-values-4 -css-values +rewrite: apply bvar domainofapplication +dfn +mathml4 +mathml 4 current -https://drafts.csswg.org/css-values-4/#rex +https://w3c.github.io/mathml/#dfn-rewrite-apply-bvar-domainofapplication + 1 +- +rewrite: apply bvar domainofapplication +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-apply-bvar-domainofapplication + 1 -<length> - -rex -value -css-values-4 -css-values +rewrite: attributes +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-attributes + +1 +- +rewrite: attributes +dfn +mathml4 +mathml 4 snapshot -https://www.w3.org/TR/css-values-4/#rex +https://www.w3.org/TR/mathml4/#dfn-rewrite-attributes + 1 +- +rewrite: ci presentation mathml +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-ci-presentation-mathml + 1 -<length> +- +rewrite: ci presentation mathml +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-ci-presentation-mathml + +1 +- +rewrite: ci type annotation +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-ci-type-annotation + +1 +- +rewrite: ci type annotation +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-ci-type-annotation + +1 +- +rewrite: cn based_integer +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-cn-based_integer + +1 +- +rewrite: cn based_integer +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-cn-based_integer + +1 +- +rewrite: cn constant +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-cn-constant + +1 +- +rewrite: cn constant +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-cn-constant + +1 +- +rewrite: cn presentation mathml +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-cn-presentation-mathml + +1 +- +rewrite: cn presentation mathml +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-cn-presentation-mathml + +1 +- +rewrite: cn sep +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-cn-sep + +1 +- +rewrite: cn sep +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-cn-sep + +1 +- +rewrite: condition +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-condition + +1 +- +rewrite: condition +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-condition + +1 +- +rewrite: csymbol type annotation +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-csymbol-type-annotation + +1 +- +rewrite: csymbol type annotation +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-csymbol-type-annotation + +1 +- +rewrite: defint +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-defint + +1 +- +rewrite: defint +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-defint + +1 +- +rewrite: defint limits +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-defint-limits + +1 +- +rewrite: defint limits +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-defint-limits + +1 +- +rewrite: diff +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-diff + +1 +- +rewrite: diff +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-diff + +1 +- +rewrite: element +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-element + +1 +- +rewrite: element +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-element + +1 +- +rewrite: int +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-int + +1 +- +rewrite: int +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-int + +1 +- +rewrite: interval qualifier +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-interval-qualifier + +1 +- +rewrite: interval qualifier +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-interval-qualifier + +1 +- +rewrite: lambda +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-lambda + +1 +- +rewrite: lambda +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-lambda + +1 +- +rewrite: lambda domainofapplication +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-lambda-domainofapplication + +1 +- +rewrite: lambda domainofapplication +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-lambda-domainofapplication + +1 +- +rewrite: limits condition +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-limits-condition + +1 +- +rewrite: limits condition +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-limits-condition + +1 +- +rewrite: n-ary domainofapplication +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-domainofapplication + +1 +- +rewrite: n-ary domainofapplication +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-domainofapplication + +1 +- +rewrite: n-ary relations +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-relations + +1 +- +rewrite: n-ary relations +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-relations + +1 +- +rewrite: n-ary relations bvar +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-relations-bvar + +1 +- +rewrite: n-ary relations bvar +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-relations-bvar + +1 +- +rewrite: n-ary setlist domainofapplication +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-setlist-domainofapplication + +1 +- +rewrite: n-ary setlist domainofapplication +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-setlist-domainofapplication + +1 +- +rewrite: n-ary unary domainofapplication +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-unary-domainofapplication + +1 +- +rewrite: n-ary unary domainofapplication +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-unary-domainofapplication + +1 +- +rewrite: n-ary unary set +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-unary-set + +1 +- +rewrite: n-ary unary set +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-unary-set + +1 +- +rewrite: n-ary unary single +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-n-ary-unary-single + +1 +- +rewrite: n-ary unary single +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-n-ary-unary-single + +1 +- +rewrite: nthdiff +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-nthdiff + +1 +- +rewrite: nthdiff +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-nthdiff + +1 +- +rewrite: partialdiffdegree +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-partialdiffdegree + +1 +- +rewrite: partialdiffdegree +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-partialdiffdegree + +1 +- +rewrite: quantifier +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-quantifier + +1 +- +rewrite: quantifier +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-quantifier + +1 +- +rewrite: restriction +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-restriction + +1 +- +rewrite: restriction +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-restriction + +1 +- +rewrite: tendsto +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-rewrite-tendsto + +1 +- +rewrite: tendsto +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-rewrite-tendsto + +1 +- +rex +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#rex +1 +1 +<length> +- +rex +value +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#rex +1 +1 +<length> +- +rex unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#rex +1 +1 +<length> +- +rex(value) +method +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rex +1 +1 +CSS +- +rex(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rex +1 +1 +CSS - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rg.data b/bikeshed/spec-data/readonly/anchors/anchors-rg.data index 5e6ce88932..f1805ac8b8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rg.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rg.data @@ -328,6 +328,28 @@ https://www.w3.org/TR/webcodecs/#dom-videomatrixcoefficients-rgb 1 VideoMatrixCoefficients - +"rgb10a2uint" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gputextureformat-rgb10a2uint +1 +1 +GPUTextureFormat +- +"rgb10a2uint" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gputextureformat-rgb10a2uint +1 +1 +GPUTextureFormat +- "rgb10a2unorm" enum-value webgpu @@ -636,60 +658,6 @@ https://www.w3.org/TR/webgpu/#dom-gputextureformat-rgba8unorm-srgb 1 GPUTextureFormat - -<rg-ending-shape> -type -css-images-3 -css-images -3 -current -https://drafts.csswg.org/css-images-3/#typedef-rg-ending-shape -1 -1 -- -<rg-ending-shape> -value -css-images-3 -css-images -3 -current -https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-ending-shape -1 -1 -radial-gradient() -repeating-radial-gradient() -- -<rg-extent-keyword> -type -css-images-3 -css-images -3 -current -https://drafts.csswg.org/css-images-3/#typedef-rg-extent-keyword -1 -1 -- -<rg-size> -type -css-images-3 -css-images -3 -current -https://drafts.csswg.org/css-images-3/#typedef-rg-size -1 -1 -- -<rg-size> -value -css-images-3 -css-images -3 -current -https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-size -1 -1 -radial-gradient() -repeating-radial-gradient() -- RGBA enum-value webcodecs @@ -734,6 +702,72 @@ https://www.w3.org/TR/webcodecs/#dom-videopixelformat-rgbx 1 VideoPixelFormat - +rg32float +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rg32float + +1 +texel format +- +rg32float +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rg32float + +1 +texel format +- +rg32sint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rg32sint + +1 +texel format +- +rg32sint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rg32sint + +1 +texel format +- +rg32uint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rg32uint + +1 +texel format +- +rg32uint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rg32uint + +1 +texel format +- rgb enum-value webcodecs @@ -778,11 +812,21 @@ https://www.w3.org/TR/webcodecs/#rgb-format - rgb merging dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3RGBmerging +https://w3c.github.io/png/#3RGBmerging + +1 +- +rgb merging +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3RGBmerging 1 - @@ -798,16 +842,6 @@ https://drafts.csswg.org/css-color-4/#funcdef-rgb - rgb() function -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#funcdef-rgb -1 -1 -- -rgb() -function css-color-4 css-color 4 @@ -816,13 +850,13 @@ https://www.w3.org/TR/css-color-4/#funcdef-rgb 1 1 - -rgb() +rgba() function -css-color-5 +css-color-4 css-color -5 -snapshot -https://www.w3.org/TR/css-color-5/#funcdef-rgb +4 +current +https://drafts.csswg.org/css-color-4/#funcdef-rgba 1 1 - @@ -831,28 +865,228 @@ function css-color-4 css-color 4 +snapshot +https://www.w3.org/TR/css-color-4/#funcdef-rgba +1 +1 +- +rgba16float +dfn +wgsl +wgsl +1 current -https://drafts.csswg.org/css-color-4/#funcdef-rgba +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba16float + 1 +texel format +- +rgba16float +dfn +wgsl +wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba16float + +1 +texel format - -rgba() -function -css-color-5 -css-color -5 +rgba16sint +dfn +wgsl +wgsl +1 current -https://drafts.csswg.org/css-color-5/#funcdef-rgba +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba16sint + +1 +texel format +- +rgba16sint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba16sint + 1 +texel format +- +rgba16uint +dfn +wgsl +wgsl 1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba16uint + +1 +texel format - -rgba() -function -css-color-4 -css-color -4 +rgba16uint +dfn +wgsl +wgsl +1 snapshot -https://www.w3.org/TR/css-color-4/#funcdef-rgba +https://www.w3.org/TR/WGSL/#texel-format-rgba16uint + +1 +texel format +- +rgba32float +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba32float + +1 +texel format +- +rgba32float +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba32float + +1 +texel format +- +rgba32sint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba32sint + +1 +texel format +- +rgba32sint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba32sint + +1 +texel format +- +rgba32uint +dfn +wgsl +wgsl 1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba32uint + +1 +texel format +- +rgba32uint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba32uint + +1 +texel format +- +rgba8sint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba8sint + +1 +texel format +- +rgba8sint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba8sint + +1 +texel format +- +rgba8snorm +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba8snorm + +1 +texel format +- +rgba8snorm +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba8snorm + +1 +texel format +- +rgba8uint +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba8uint + +1 +texel format +- +rgba8uint +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba8uint + +1 +texel format +- +rgba8unorm +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texel-format-rgba8unorm + +1 +texel format +- +rgba8unorm +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texel-format-rgba8unorm + 1 +texel format - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rh.data b/bikeshed/spec-data/readonly/anchors/anchors-rh.data new file mode 100644 index 0000000000..baf7148513 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-rh.data @@ -0,0 +1,20 @@ +rhsvalue +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#rhsvalue + +1 +- +rhsvalue +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#rhsvalue + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ri.data b/bikeshed/spec-data/readonly/anchors/anchors-ri.data index eafc9d641c..dd7648a70d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ri.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ri.data @@ -218,6 +218,26 @@ https://drafts.csswg.org/css2/#selectordef-right 1 - :right +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x8 +1 +1 +- +:right +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x8 +1 +1 +- +:right value css-page-3 css-page @@ -251,6 +271,26 @@ clip - <right> type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#value-def-right +1 +1 +- +<right> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#value-def-right +1 +1 +- +<right> +type css-masking-1 css-masking 1 @@ -342,6 +382,59 @@ https://www.w3.org/TR/css-values-4/#ric 1 <length> - +ric unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#ric +1 +1 +<length> +- +ric(value) +method +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-ric +1 +1 +CSS +- +ric(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-ric +1 +1 +CSS +- +richness +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-richness +1 +1 +- +richness +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-richness +1 +1 +- richness dfn css22 @@ -358,6 +451,31 @@ webrtc-encoded-transform webrtc-encoded-transform 1 current +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent-type-rid-rid +1 +1 +KeyFrameRequestEvent/KeyFrameRequestEvent(type, rid) +KeyFrameRequestEvent/constructor(type, rid) +KeyFrameRequestEvent/KeyFrameRequestEvent(type) +KeyFrameRequestEvent/constructor(type) +- +rid +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-rid +1 +1 +KeyFrameRequestEvent +- +rid +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +current https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-generatekeyframe-rid-rid 1 1 @@ -392,6 +510,31 @@ webrtc-encoded-transform webrtc-encoded-transform 1 snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent-type-rid-rid +1 +1 +KeyFrameRequestEvent/KeyFrameRequestEvent(type, rid) +KeyFrameRequestEvent/constructor(type, rid) +KeyFrameRequestEvent/KeyFrameRequestEvent(type) +KeyFrameRequestEvent/constructor(type) +- +rid +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-rid +1 +1 +KeyFrameRequestEvent +- +rid +argument +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-generatekeyframe-rid-rid 1 1 @@ -455,6 +598,26 @@ border-style - ridge value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-ridge +1 +1 +- +ridge +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-ridge +1 +1 +- +ridge +value css-backgrounds-3 css-backgrounds 3 @@ -508,6 +671,17 @@ justify-self justify-items - right +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-right +1 +1 +CSSPositionTryDescriptors +- +right value css-anchor-position-1 css-anchor-position @@ -520,6 +694,18 @@ anchor() - right value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-right +1 +1 +position-area +<position-area> +- +right +value css-backgrounds-3 css-backgrounds 3 @@ -531,11 +717,11 @@ background-position - right value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-border-limit-right +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-right 1 1 border-limit @@ -859,6 +1045,26 @@ https://w3c.github.io/mediacapture-main/#dom-videofacingmodeenum-right VideoFacingModeEnum - right +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-right +1 +1 +- +right +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-right +1 +1 +- +right dfn css22 css @@ -883,6 +1089,29 @@ justify-items - right value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-right +1 +1 +anchor() +- +right +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-right +1 +1 +inset-area +<inset-area> +- +right +value css-backgrounds-3 css-backgrounds 3 @@ -1162,6 +1391,48 @@ https://www.w3.org/TR/WGSL/#right-hand-side 1 - +right-to-left +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-right-to-left +1 + +- +right-to-left +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-right-to-left +1 + +- +rightTrigger +dict-member +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-righttrigger +1 +1 +GamepadEffectParameters +- +rightTrigger +dict-member +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters-righttrigger +1 +1 +GamepadEffectParameters +- rightmargin element-attr html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rl.data b/bikeshed/spec-data/readonly/anchors/anchors-rl.data index e6dfed3c22..cce6b51fcd 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rl.data @@ -53,6 +53,17 @@ https://www.w3.org/TR/css-values-4/#rlh 1 <length> - +rlh unit +value +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#rlh +1 +1 +<length> +- rlh(value) method css-typed-om-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ro.data b/bikeshed/spec-data/readonly/anchors/anchors-ro.data index 63b41d9855..ae921137f1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ro.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ro.data @@ -38,6 +38,50 @@ https://www.w3.org/TR/selectors-4/#root-pseudo 1 1 - +<root/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_root_binary + +1 +binary +- +<root/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_root_unary + +1 +unary +- +<root/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_root_binary + +1 +binary +- +<root/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_root_unary + +1 +unary +- <rounding-strategy> type css-values-4 @@ -78,6 +122,16 @@ https://www.w3.org/TR/orientation-sensor/#typedefdef-rotationmatrixtype 1 1 - +RoundMVResult +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-roundmvresult +1 +1 +- RoundMVResult(n) abstract-op ecmascript @@ -88,6 +142,56 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-roundmvresult 1 1 - +RouterCondition +dictionary +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dictdef-routercondition +1 +1 +- +RouterRule +dictionary +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dictdef-routerrule +1 +1 +- +RouterSource +typedef +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#typedefdef-routersource +1 +1 +- +RouterSourceDict +dictionary +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dictdef-routersourcedict +1 +1 +- +RouterSourceEnum +enum +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#enumdef-routersourceenum +1 +1 +- [[rootMargin]] attribute intersection-observer @@ -152,9 +256,9 @@ https://www.w3.org/TR/webauthn-3/#roaming-credential - robustness dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability-robustness 1 @@ -173,15 +277,15 @@ https://w3c.github.io/media-capabilities/#dom-keysystemtrackconfiguration-robust KeySystemTrackConfiguration - robustness -dfn -encrypted-media +dict-member +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemmediacapability-robustness - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemmediacapability-robustness +1 1 -mediakeysystemmediacapability +MediaKeySystemMediaCapability - robustness dict-member @@ -233,6 +337,16 @@ current https://w3c.github.io/aria/#dfn-role 1 +- +role +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-role +1 + - role attribute @@ -246,24 +360,15 @@ https://w3c.github.io/aria/#dom-ariamixin-role ARIAMixin - role -dfn -mathml-aam -mathml-aam +attribute +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-role - +https://w3c.github.io/aria/#dom-ariamixin-role 1 -- -role -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-role - 1 +ARIAMixin - role dfn @@ -315,16 +420,6 @@ svg snapshot https://www.w3.org/TR/SVG2/struct.html#RoleAttribute 1 -1 -- -role -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-role - 1 - role @@ -389,6 +484,27 @@ https://www.w3.org/TR/wai-aria-1.2/#dom-ariamixin-role ARIAMixin - role +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-role +1 + +- +role +attribute +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dom-ariamixin-role +1 +1 +ARIAMixin +- +role dict-member webrtc-encoded-transform webrtc-encoded-transform @@ -412,16 +528,6 @@ RTCIceTransport - roles dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-role - -1 -- -roles -dfn svg-aam-1.0 svg-aam 1 @@ -429,16 +535,6 @@ current https://w3c.github.io/svg-aam/#dfn-role -- -roles -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-role - -1 - roles dfn @@ -662,6 +758,17 @@ scroll-timeline-axis view-timeline-axis - root +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#locator-root +1 +1 +file system locator +- +root dict-member webxr-dom-overlays-1 webxr-dom-overlays @@ -728,6 +835,26 @@ https://wicg.github.io/entries-api/#file-system-root file system - root +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#root +1 +1 +- +root +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#root +1 +1 +- +root attribute intersection-observer intersection-observer @@ -871,6 +998,16 @@ uievents current https://w3c.github.io/uievents/#root-element +1 +- +root element +dfn +css-display-3 +css-display +3 +snapshot +https://www.w3.org/TR/css-display-3/#root-element +1 1 - root element @@ -890,7 +1027,7 @@ css-values 4 current https://drafts.csswg.org/css-values-4/#root-font-relative-lengths - +1 1 - root font-relative lengths @@ -900,7 +1037,7 @@ css-values 4 snapshot https://www.w3.org/TR/css-values-4/#root-font-relative-lengths - +1 1 - root identifier @@ -965,26 +1102,6 @@ https://www.w3.org/TR/intersection-observer/#intersectionobserver-root-intersect 1 IntersectionObserver - -root layer -dfn -css-anchor-position-1 -css-anchor-position -1 -current -https://drafts.csswg.org/css-anchor-position-1/#root-layer - -1 -- -root wai-aria node -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-root-wai-aria-node - -1 -- root wai-aria node dfn svg-aam-1.0 @@ -1164,6 +1281,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-rosybrown 1 1 <color> +<named-color> - rosybrown dfn @@ -1185,6 +1303,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-rosybrown 1 1 <color> +<named-color> - rotX argument @@ -1561,6 +1680,17 @@ https://drafts.csswg.org/css-page-3/#valdef-page-orientation-rotate-left 1 page-orientation - +rotate-left +value +css-page-3 +css-page +3 +snapshot +https://www.w3.org/TR/css-page-3/#valdef-page-orientation-rotate-left +1 +1 +page-orientation +- rotate-right value css-page-3 @@ -1572,6 +1702,17 @@ https://drafts.csswg.org/css-page-3/#valdef-page-orientation-rotate-right 1 page-orientation - +rotate-right +value +css-page-3 +css-page +3 +snapshot +https://www.w3.org/TR/css-page-3/#valdef-page-orientation-rotate-right +1 +1 +page-orientation +- rotate3d() function css-transforms-2 @@ -2110,6 +2251,26 @@ uievents snapshot https://www.w3.org/TR/uievents/#rotation +1 +- +rotation rate +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#rotation-rate + +1 +- +rotation rate +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#rotation-rate + 1 - rotationAngle @@ -2246,7 +2407,21 @@ css-backgrounds-4 css-backgrounds 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-corner-shape-round +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-repeat-x-round +1 +1 +background-repeat-x +background-repeat-y +background-repeat-block +background-repeat-inline +- +round +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-round 1 1 corner-shape @@ -2339,6 +2514,16 @@ https://www.w3.org/TR/fill-stroke-3/#valdef-stroke-linejoin-round 1 stroke-linejoin - +round a value +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#round-a-value + +1 +- round to the nearest integer dfn css-values-4 @@ -2569,8 +2754,8 @@ miniapp-manifest miniapp-manifest 1 current -https://w3c.github.io/miniapp-manifest/#dfn-route - +https://w3c.github.io/miniapp-manifest/#dfn-page-route +1 1 - route @@ -2579,8 +2764,8 @@ miniapp-manifest miniapp-manifest 1 snapshot -https://www.w3.org/TR/miniapp-manifest/#dfn-route - +https://www.w3.org/TR/miniapp-manifest/#dfn-page-route +1 1 - routing requests @@ -2653,6 +2838,16 @@ html html 1 current +https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-row-state + +1 +- +row +dfn +html +html +1 +current https://html.spec.whatwg.org/multipage/tables.html#concept-row 1 @@ -2696,6 +2891,16 @@ html html 1 current +https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-rowgroup-state + +1 +- +row group +dfn +html +html +1 +current https://html.spec.whatwg.org/multipage/tables.html#concept-row-group 1 @@ -2708,6 +2913,26 @@ css current https://drafts.csswg.org/css2/#row-group-box +1 +- +row group box +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x16 +1 +1 +- +row group box +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x16 +1 1 - row group header @@ -2728,6 +2953,26 @@ css current https://drafts.csswg.org/css2/#row-groups +1 +- +row groups +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x5 +1 +1 +- +row groups +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x5 +1 1 - row header @@ -3068,6 +3313,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-royalblue 1 1 <color> +<named-color> - royalblue dfn @@ -3089,4 +3335,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-royalblue 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rp.data b/bikeshed/spec-data/readonly/anchors/anchors-rp.data index 60d5d70061..d9de5170c6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rp.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rp.data @@ -51,6 +51,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-rp 1 PublicKeyCredentialCreationOptions - +rp +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-rp +1 +1 +PublicKeyCredentialCreationOptionsJSON +- rp id dfn webauthn-3 @@ -182,6 +193,17 @@ https://www.w3.org/TR/secure-payment-confirmation/#dom-securepaymentconfirmation SecurePaymentConfirmationRequest - rpId +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-issuing-a-credential-request-to-an-authenticator-rpid +1 +1 +Issuing a credential request to an authenticator +- +rpId dict-member webauthn-3 webauthn @@ -192,6 +214,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-rpid 1 PublicKeyCredentialRequestOptions - +rpId +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-rpid +1 +1 +PublicKeyCredentialRequestOptionsJSON +- rpid dfn fido-v2.1 @@ -253,7 +286,8 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#rpidhash +https://www.w3.org/TR/webauthn-3/#authdata-rpidhash 1 +authData - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rs.data b/bikeshed/spec-data/readonly/anchors/anchors-rs.data index 8ce66bf8e0..d795ff6a44 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rs.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rs.data @@ -125,7 +125,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaHashedImportParams -1 + 1 - rsahashedkeyalgorithm @@ -135,7 +135,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaHashedKeyAlgorithm -1 + 1 - rsahashedkeygenparams @@ -145,7 +145,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaHashedKeyGenParams -1 + 1 - rsakeyalgorithm @@ -155,7 +155,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaKeyAlgorithm -1 + 1 - rsakeygenparams @@ -165,7 +165,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaKeyGenParams -1 + 1 - rsaoaepparams @@ -175,7 +175,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaOaepParams -1 + 1 - rsaotherprimesinfo @@ -185,7 +185,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaOtherPrimesInfo -1 + 1 - rsapssparams @@ -195,7 +195,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaPssParams -1 + 1 - rsassa-pkcs1-v1_5 key export steps @@ -249,6 +249,18 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-rspace 1 +embellished operator +- +rspace +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-rspace-0 +1 +1 +mo - rssi attribute diff --git a/bikeshed/spec-data/readonly/anchors/anchors-rt.data b/bikeshed/spec-data/readonly/anchors/anchors-rt.data index 95569e7650..cb0874b704 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-rt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-rt.data @@ -388,7 +388,6 @@ snapshot https://www.w3.org/TR/mst-content-hint/#dom-rtcdegradationpreference 1 1 -RTCDegradationPreference - RTCDtlsFingerprint dictionary @@ -476,7 +475,7 @@ webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframe%E2%91%A0 +https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframe 1 1 - @@ -486,10 +485,54 @@ webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframe%E2%91%A0 +https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframe 1 1 - +RTCEncodedAudioFrame(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +RTCEncodedAudioFrame(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +RTCEncodedAudioFrame(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- +RTCEncodedAudioFrame(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-rtcencodedaudioframe +1 +1 +RTCEncodedAudioFrame +- RTCEncodedAudioFrameMetadata dictionary webrtc-encoded-transform @@ -510,13 +553,33 @@ https://www.w3.org/TR/webrtc-encoded-transform/#dictdef-rtcencodedaudioframemeta 1 1 - +RTCEncodedAudioFrameOptions +dictionary +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dictdef-rtcencodedaudioframeoptions +1 +1 +- +RTCEncodedAudioFrameOptions +dictionary +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dictdef-rtcencodedaudioframeoptions +1 +1 +- RTCEncodedVideoFrame interface webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframe%E2%91%A0 +https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframe 1 1 - @@ -526,9 +589,53 @@ webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframe%E2%91%A0 +https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframe +1 +1 +- +RTCEncodedVideoFrame(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- +RTCEncodedVideoFrame(originalFrame) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- +RTCEncodedVideoFrame(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe +1 +1 +RTCEncodedVideoFrame +- +RTCEncodedVideoFrame(originalFrame, options) +constructor +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-rtcencodedvideoframe 1 1 +RTCEncodedVideoFrame - RTCEncodedVideoFrameMetadata dictionary @@ -550,6 +657,26 @@ https://www.w3.org/TR/webrtc-encoded-transform/#dictdef-rtcencodedvideoframemeta 1 1 - +RTCEncodedVideoFrameOptions +dictionary +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dictdef-rtcencodedvideoframeoptions +1 +1 +- +RTCEncodedVideoFrameOptions +dictionary +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dictdef-rtcencodedvideoframeoptions +1 +1 +- RTCEncodedVideoFrameType enum webrtc-encoded-transform @@ -721,7 +848,7 @@ https://www.w3.org/TR/webrtc/#dom-rtcicecandidateinit 1 - RTCIceCandidatePair -dictionary +interface webrtc webrtc 1 @@ -840,16 +967,6 @@ https://www.w3.org/TR/webrtc/#dom-rtciceconnectionstate 1 1 - -RTCIceCredentialType -enum -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dom-rtcicecredentialtype -1 -1 -- RTCIceGatherOptions dictionary webrtc-ice @@ -990,6 +1107,16 @@ https://w3c.github.io/webrtc-pc/#dom-rtciceservertransportprotocol 1 1 - +RTCIceServerTransportProtocol +enum +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtciceservertransportprotocol +1 +1 +- RTCIceTcpCandidateType enum webrtc @@ -1209,46 +1336,6 @@ snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcmediasourcestats 1 1 -- -RTCMediaStreamStats -dictionary -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamstats - - -- -RTCMediaStreamStats -dictionary -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamstats - - -- -RTCMediaStreamTrackStats -dictionary -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats -1 - -- -RTCMediaStreamTrackStats -dictionary -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats -1 - - RTCOfferAnswerOptions dictionary @@ -1630,13 +1717,13 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpcapabilities 1 1 - -RTCRtpCodecCapability +RTCRtpCodec dictionary webrtc webrtc 1 current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodeccapability +https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodec 1 1 - @@ -1710,16 +1797,6 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtpcontributingsource 1 1 - -RTCRtpDecodingParameters -dictionary -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dom-rtcrtpdecodingparameters -1 -1 -- RTCRtpEncodingParameters dictionary webrtc @@ -2246,6 +2323,16 @@ https://www.w3.org/TR/webrtc/#dom-rtcsessiondescriptioninit 1 1 - +RTCSetParameterOptions +dictionary +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dom-rtcsetparameteroptions +1 +1 +- RTCSignalingState enum webrtc @@ -2505,136 +2592,6 @@ webrtc-identity current https://w3c.github.io/webrtc-identity/#dom-rtcconfiguration -1 -- -rtcdatachannel message has been received -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-receive-an-rtcdatachannel-message - -1 -- -rtcdtlstransport error -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-rtcdtlstransport-error - - -- -rtcdtlstransport state change -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#event-dtlstransport-statechange - - -- -rtcencodedaudioframe -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframe - -1 -- -rtcencodedaudioframe -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframe - -1 -- -rtcencodedaudioframemetadata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframemetadata - -1 -- -rtcencodedaudioframemetadata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframemetadata - -1 -- -rtcencodedvideoframe -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframe - -1 -- -rtcencodedvideoframe -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframe - -1 -- -rtcencodedvideoframemetadata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframemetadata - -1 -- -rtcencodedvideoframemetadata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframemetadata - -1 -- -rtcencodedvideoframetype -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframetype - -1 -- -rtcencodedvideoframetype -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframetype - 1 - rtcerror @@ -2686,16 +2643,6 @@ snapshot https://www.w3.org/TR/webrtc/#dfn-rtcicecandidate 1 -- -rtcicetransport state change -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#event-icetransport-statechange - - - rtcidentityassertion dfn @@ -2932,26 +2879,6 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-rtcsctptransport-connected -1 -- -rtcsctptransport state change -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#event-sctptransport-statechange - - -- -rtcsessiondescription() -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dom-sessiondescription - 1 - rtctransform @@ -3057,7 +2984,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn-rtl +https://w3c.github.io/i18n-glossary/#dfn-right-to-left 1 - @@ -3133,7 +3060,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-rtl +https://www.w3.org/TR/i18n-glossary/#dfn-right-to-left 1 - @@ -3203,6 +3130,28 @@ https://www.w3.org/TR/webrtc/#dfn-rtp-media-api - rtpTimestamp dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-rtptimestamp +1 +1 +RTCEncodedAudioFrameMetadata +- +rtpTimestamp +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-rtptimestamp +1 +1 +RTCEncodedVideoFrameMetadata +- +rtpTimestamp +dict-member webrtc webrtc 1 @@ -3225,6 +3174,28 @@ VideoFrameCallbackMetadata - rtpTimestamp dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-rtptimestamp +1 +1 +RTCEncodedAudioFrameMetadata +- +rtpTimestamp +dict-member +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-rtptimestamp +1 +1 +RTCEncodedVideoFrameMetadata +- +rtpTimestamp +dict-member webrtc webrtc 1 @@ -3251,10 +3222,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-rttvariation +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-rttvariation 1 1 -WebTransportStats +WebTransportConnectionStats - rttVariation dict-member @@ -3262,8 +3233,52 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-rttvariation +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-rttvariation +1 +1 +WebTransportConnectionStats +- +rtxSsrc +dict-member +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-rtxssrc +1 +1 +RTCInboundRtpStreamStats +- +rtxSsrc +dict-member +webrtc-stats +webrtc-stats +1 +current +https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-rtxssrc +1 +1 +RTCOutboundRtpStreamStats +- +rtxSsrc +dict-member +webrtc-stats +webrtc-stats +1 +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-rtxssrc +1 +1 +RTCInboundRtpStreamStats +- +rtxSsrc +dict-member +webrtc-stats +webrtc-stats +1 +snapshot +https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-rtxssrc 1 1 -WebTransportStats +RTCOutboundRtpStreamStats - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ru.data b/bikeshed/spec-data/readonly/anchors/anchors-ru.data index f8fa66600e..3dcafa16b1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ru.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ru.data @@ -11,6 +11,17 @@ AnimationPlayState - "running" enum-value +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-runningstatus-running +1 +1 +RunningStatus +- +"running" +enum-value webaudio webaudio 1 @@ -62,6 +73,26 @@ https://www.w3.org/TR/css-syntax-3/#typedef-rule-list 1 1 - +RunFunctionForSharedStorageSelectURLOperation +callback +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#callbackdef-runfunctionforsharedstorageselecturloperation +1 +1 +- +RunningStatus +enum +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#enumdef-runningstatus +1 +1 +- RuntimeError exception wasm-js-api-2 @@ -158,6 +189,16 @@ current https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-ruby-element 1 1 +- +ruby +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-ruby +1 + - ruby value @@ -213,6 +254,16 @@ https://www.w3.org/TR/css-text-4/#valdef-text-justify-ruby 1 1 text-justify +- +ruby +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-ruby +1 + - ruby annotation dfn @@ -798,16 +849,15 @@ https://drafts.csswg.org/css-animations-1/#dom-csskeyframesrule-appendrule-rule- CSSKeyframesRule/appendRule(rule) - rule -argument -css-nesting-1 -css-nesting -1 +dfn +css-syntax-3 +css-syntax +3 current -https://drafts.csswg.org/css-nesting-1/#dom-cssstylerule-insertrule-rule-index-rule +https://drafts.csswg.org/css-syntax-3/#css-rule 1 1 -CSSStyleRule/insertRule(rule, index) -CSSStyleRule/insertRule(rule) +CSS - rule argument @@ -924,6 +974,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-table-rules HTMLTableElement - rules +argument +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-installevent-addroutes-rules-rules +1 +1 +InstallEvent/addRoutes(rules) +- +rules attribute cssom-1 cssom @@ -934,16 +995,6 @@ https://www.w3.org/TR/cssom-1/#dom-cssstylesheet-rules 1 CSSStyleSheet - -rules for distinguishing if a resource is a feed or html -dfn -mimesniff -mimesniff -1 -current -https://mimesniff.spec.whatwg.org/#rules-for-distinguishing-if-a-resource-is-a-feed-or-html - -1 -- rules for distinguishing if a resource is text or binary dfn mimesniff @@ -1252,26 +1303,6 @@ html current https://html.spec.whatwg.org/multipage/workers.html#run-a-worker 1 -1 -- -run an upgrade transaction -dfn -indexeddb-3 -indexeddb -3 -current -https://w3c.github.io/IndexedDB/#run-an-upgrade-transaction - -1 -- -run an upgrade transaction -dfn -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#run-an-upgrade-transaction - 1 - run animators @@ -1382,6 +1413,16 @@ html current https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#run-steps-after-a-timeout 1 +1 +- +run the abort steps +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#run-the-abort-steps + 1 - run the animation frame callbacks @@ -1484,6 +1525,60 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#run-webdriver-bidi-preload-scripts 1 +1 +- +run(name) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-run +1 +1 +SharedStorage +- +run(name) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-run +1 +1 +SharedStorageWorklet +- +run(name, options) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-run +1 +1 +SharedStorage +- +run(name, options) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-run +1 +1 +SharedStorageWorklet +- +run-ad-auction +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#run-ad-auction + 1 - run-in @@ -1532,6 +1627,26 @@ display - run-in dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x15 +1 +1 +- +run-in +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x15 +1 +1 +- +run-in +dfn css-display-3 css-display 3 @@ -1612,6 +1727,17 @@ https://www.w3.org/TR/css-display-3/#run-in-sequence 1 - +runAdAuction(config) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-runadauction +1 +1 +Navigator +- runnable dfn html @@ -1642,6 +1768,17 @@ current https://drafts.csswg.org/css-gcpm-3/#propdef-running 1 +- +running +enum-value +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-running +1 +1 +AnimationPlayState - running dfn @@ -1709,6 +1846,17 @@ https://www.w3.org/TR/service-workers/#service-worker-running service worker - running +dfn +web-animations-1 +web-animations +1 +snapshot +https://www.w3.org/TR/web-animations-1/#play-state-running +1 +1 +play state +- +running enum-value webaudio webaudio @@ -1833,16 +1981,6 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#tn-running-nested-apply-history-step -1 -- -running play state -dfn -web-animations-1 -web-animations -1 -snapshot -https://www.w3.org/TR/web-animations-1/#running-play-state - 1 - running position @@ -1905,6 +2043,17 @@ https://www.w3.org/TR/css-gcpm-3/#funcdef-running 1 1 - +runningStatus +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-runningstatus +1 +1 +RouterCondition +- runtime expression dfn wgsl diff --git a/bikeshed/spec-data/readonly/anchors/anchors-s_.data b/bikeshed/spec-data/readonly/anchors/anchors-s_.data index 3f7147b58e..d02b3830c4 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-s_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-s_.data @@ -78,6 +78,31 @@ https://www.w3.org/TR/css-color-5/#valdef-hsl-s hsl() - s +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-csshsl-h-s-l-alpha-s +1 +1 +CSSHSL/CSSHSL(h, s, l, alpha) +CSSHSL/constructor(h, s, l, alpha) +CSSHSL/CSSHSL(h, s, l) +CSSHSL/constructor(h, s, l) +- +s +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshsl-s +1 +1 +CSSHSL +- +s value css-values-3 css-values diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sa.data b/bikeshed/spec-data/readonly/anchors/anchors-sa.data index 4be6c807ea..a45ffbdad6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sa.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sa.data @@ -1,25 +1,3 @@ -"same-lower" -enum-value -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlautopad-same-lower -1 -1 -MLAutoPad -- -"same-lower" -enum-value -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlautopad-same-lower -1 -1 -MLAutoPad -- "same-origin" enum-value fetch @@ -84,27 +62,16 @@ https://www.w3.org/TR/referrer-policy/#referrer-policy-same-origin 1 1 - -"same-upper" +"same-page" enum-value -webnn -webnn +long-animation-frames +long-animation-frames 1 current -https://webmachinelearning.github.io/webnn/#dom-mlautopad-same-upper +https://w3c.github.io/long-animation-frames/#dom-scriptwindowattribution-same-page 1 1 -MLAutoPad -- -"same-upper" -enum-value -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlautopad-same-upper -1 -1 -MLAutoPad +ScriptWindowAttribution - "sawtooth" enum-value @@ -138,6 +105,26 @@ https://webidl.spec.whatwg.org/#SameObject 1 1 - +SameSiteCookiesType +enum +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#enumdef-samesitecookiestype +1 +1 +- +SameValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevalue +1 +1 +- SameValue(x, y) abstract-op ecmascript @@ -148,6 +135,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevalue 1 1 - +SameValueNonNumber +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevaluenonnumber +1 +1 +- SameValueNonNumber(x, y) abstract-op ecmascript @@ -158,6 +155,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevaluenonnumbe 1 1 - +SameValueZero +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevaluezero +1 +1 +- SameValueZero(x, y) abstract-op ecmascript @@ -220,6 +227,26 @@ https://wicg.github.io/sanitizer-api/#dom-sanitizer-sanitizer 1 Sanitizer - +SanitizerAttribute +typedef +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#typedefdef-sanitizerattribute +1 +1 +- +SanitizerAttributeNamespace +dictionary +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dictdef-sanitizerattributenamespace +1 +1 +- SanitizerConfig dictionary sanitizer-api @@ -230,6 +257,46 @@ https://wicg.github.io/sanitizer-api/#dictdef-sanitizerconfig 1 1 - +SanitizerElement +typedef +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#typedefdef-sanitizerelement +1 +1 +- +SanitizerElementNamespace +dictionary +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dictdef-sanitizerelementnamespace +1 +1 +- +SanitizerElementNamespaceWithAttributes +dictionary +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dictdef-sanitizerelementnamespacewithattributes +1 +1 +- +SanitizerElementWithAttributes +typedef +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#typedefdef-sanitizerelementwithattributes +1 +1 +- SaveFilePickerOptions dictionary file-system-access @@ -240,24 +307,24 @@ https://wicg.github.io/file-system-access/#dictdef-savefilepickeroptions 1 1 - -[[SampleRate]] +[[SampleIntervalMap]] attribute compute-pressure compute-pressure 1 current -https://w3c.github.io/compute-pressure/#dfn-samplerate +https://w3c.github.io/compute-pressure/#dfn-sampleintervalmap 1 PressureObserver - -[[SampleRate]] +[[SampleIntervalMap]] attribute compute-pressure compute-pressure 1 snapshot -https://www.w3.org/TR/compute-pressure/#dfn-samplerate +https://www.w3.org/TR/compute-pressure/#dfn-sampleintervalmap 1 PressureObserver @@ -326,6 +393,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-saddlebrown 1 1 <color> +<named-color> - saddlebrown dfn @@ -347,6 +415,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-saddlebrown 1 1 <color> +<named-color> - safariplatform dfn @@ -380,17 +449,6 @@ https://drafts.csswg.org/css-align-3/#valdef-overflow-position-safe <overflow-position> - safe -dfn -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#safe-integer -1 -1 -ECMAScript -- -safe value css-align-3 css-align @@ -401,6 +459,17 @@ https://www.w3.org/TR/css-align-3/#valdef-overflow-position-safe 1 <overflow-position> - +safe integer +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#safe-integer +1 +1 +ECMAScript +- safe zone dfn appmanifest @@ -526,6 +595,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-salmon 1 1 <color> +<named-color> - salmon dfn @@ -547,6 +617,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-salmon 1 1 <color> +<named-color> - salt dict-member @@ -577,7 +648,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-HkdfParams-salt -1 + 1 - salt1 @@ -620,7 +691,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-RsaPssParams-saltLength -1 + 1 - salvageable @@ -653,6 +724,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#same-bluetooth-device 1 1 - +same document commit +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#interaction-data-same-document-commit + +1 +interaction data +- same origin dfn html @@ -725,6 +807,17 @@ https://html.spec.whatwg.org/multipage/webappapis.html#same-loop-windows 1 - same-origin +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-same-origin +1 +1 +<request-url-modifier> +- +same-origin dfn html html @@ -742,6 +835,16 @@ longtasks current https://w3c.github.io/longtasks/#same-origin +1 +- +same-origin +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#same-origin + 1 - same-origin @@ -803,6 +906,16 @@ longtasks current https://w3c.github.io/longtasks/#same-origin-ancestor +1 +- +same-origin-ancestor +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#same-origin-ancestor + 1 - same-origin-descendant @@ -813,6 +926,16 @@ longtasks current https://w3c.github.io/longtasks/#same-origin-descendant +1 +- +same-origin-descendant +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#same-origin-descendant + 1 - same-origin-domain target @@ -855,16 +978,6 @@ referrer-policy current https://w3c.github.io/webappsec-referrer-policy/#same-origin-referrer-request -1 -- -same-partition prefetch state -dfn -prefetch -prefetch -1 -current -https://wicg.github.io/nav-speculation/prefetch.html#same-partition-prefetch-state - 1 - same-party @@ -876,16 +989,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-same-party -- -same-party -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-same-party - -1 - same-permission dfn @@ -920,22 +1023,22 @@ cookie - sameDocument attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationdestination-samedocument +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-samedocument 1 1 NavigationDestination - sameDocument attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-samedocument +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-samedocument 1 1 NavigationHistoryEntry @@ -1050,6 +1153,28 @@ https://wicg.github.io/cookie-store/#dom-cookielistitem-samesite 1 CookieListItem - +sameSiteCookies +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-sharedworkeroptions-samesitecookies +1 +1 +SharedWorkerOptions +- +samesitecookies +dfn +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#sharedworkerglobalscope-samesitecookies +1 +1 +SharedWorkerGlobalScope +- samp element html @@ -1062,11 +1187,22 @@ https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-samp-elemen - sample dfn -png-spec -png-spec +wgsl +wgsl 1 current -https://w3c.github.io/PNG-spec/#dfn-sample +https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-sample +1 +1 +interpolation sampling +- +sample +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-sample 1 - @@ -1180,12 +1316,43 @@ violation - sample dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#interpolation-sampling-sample +1 +1 +interpolation sampling +- +sample +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-sample + +1 +- +sample +dfn webcodecs webcodecs 1 snapshot https://www.w3.org/TR/webcodecs/#sample +1 +- +sample a debug report +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#sample-a-debug-report + 1 - sample buffer size limit @@ -1198,23 +1365,45 @@ https://wicg.github.io/js-self-profiling/#dfn-sample-buffer-size-limit 1 - -sample depth +sample count dfn -png-spec -png-spec +wgsl +wgsl 1 current -https://w3c.github.io/PNG-spec/#dfn-sample-depth +https://gpuweb.github.io/gpuweb/wgsl/#texture-sample-count 1 +texture - -sample depth scaling +sample count dfn -png-spec -png-spec +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texture-sample-count + 1 +texture +- +sample depth scaling +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3sampleDepthScaling +https://w3c.github.io/png/#3sampleDepthScaling + +1 +- +sample depth scaling +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3sampleDepthScaling 1 - @@ -1226,6 +1415,16 @@ js-self-profiling current https://wicg.github.io/js-self-profiling/#dfn-sample-interval +1 +- +sample real time contributions +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#sample-real-time-contributions + 1 - sampleCount @@ -1295,6 +1494,17 @@ https://www.w3.org/TR/webgpu/#dom-gputexturedescriptor-samplecount GPUTextureDescriptor - sampleInterval +dict-member +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dom-pressureobserveroptions-sampleinterval +1 +1 +PressureObserverOptions +- +sampleInterval attribute js-self-profiling js-self-profiling @@ -1316,13 +1526,13 @@ https://wicg.github.io/js-self-profiling/#dom-profilerinitoptions-sampleinterval 1 ProfilerInitOptions - -sampleRate +sampleInterval dict-member compute-pressure compute-pressure 1 -current -https://w3c.github.io/compute-pressure/#dom-pressureobserveroptions-samplerate +snapshot +https://www.w3.org/TR/compute-pressure/#dom-pressureobserveroptions-sampleinterval 1 1 PressureObserverOptions @@ -1516,17 +1726,6 @@ OfflineAudioContextOptions - sampleRate dict-member -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressureobserveroptions-samplerate -1 -1 -PressureObserverOptions -- -sampleRate -dict-member mediacapture-streams mediacapture-streams 1 @@ -1876,49 +2075,47 @@ https://wicg.github.io/js-self-profiling/#dfn-samplebufferfull 1 - -sampled_texture_type +sampled texture dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-sampled_texture_type +https://gpuweb.github.io/gpuweb/wgsl/#type-sampled-texture 1 -recursive descent syntax +type - -sampled_texture_type +sampled texture dfn wgsl wgsl 1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-sampled_texture_type +snapshot +https://www.w3.org/TR/WGSL/#type-sampled-texture 1 -syntax +type - -sampled_texture_type +sampled type dfn wgsl wgsl 1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-sampled_texture_type +current +https://gpuweb.github.io/gpuweb/wgsl/#sampled-type 1 -recursive descent syntax - -sampled_texture_type +sampled type dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-sampled_texture_type +https://www.w3.org/TR/WGSL/#sampled-type 1 -syntax - sampleindex dfn @@ -1969,17 +2166,6 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-sampler - -1 -syntax_kw -- -sampler -dfn -wgsl -wgsl -1 -current https://gpuweb.github.io/gpuweb/wgsl/#type-sampler 1 @@ -2001,17 +2187,6 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-sampler - -1 -syntax_kw -- -sampler -dfn -wgsl -wgsl -1 -snapshot https://www.w3.org/TR/WGSL/#type-sampler 1 @@ -2074,17 +2249,6 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-sampler_comparison - -1 -syntax_kw -- -sampler_comparison -dfn -wgsl -wgsl -1 -current https://gpuweb.github.io/gpuweb/wgsl/#type-sampler_comparison 1 @@ -2096,66 +2260,11 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-sampler_comparison - -1 -syntax_kw -- -sampler_comparison -dfn -wgsl -wgsl -1 -snapshot https://www.w3.org/TR/WGSL/#type-sampler_comparison 1 type - -sampler_type -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-sampler_type - -1 -recursive descent syntax -- -sampler_type -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-sampler_type - -1 -syntax -- -sampler_type -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-sampler_type - -1 -recursive descent syntax -- -sampler_type -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-sampler_type - -1 -syntax -- samplerate dict-member media-capabilities @@ -2271,12 +2380,22 @@ https://w3c.github.io/compute-pressure/#dfn-sampling-rate - sampling rate dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current https://w3c.github.io/network-error-logging/#dfn-sampling-rate +1 +- +sampling rate +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#sampling-rate + 1 - sampling rate @@ -2291,17 +2410,17 @@ https://www.w3.org/TR/compute-pressure/#dfn-sampling-rate - sampling rate dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-sampling-rate +https://www.w3.org/TR/network-error-logging/#dfn-sampling-rate 1 - sampling rates dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2311,11 +2430,11 @@ https://w3c.github.io/network-error-logging/#dfn-sampling-rate - sampling rates dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-sampling-rate +https://www.w3.org/TR/network-error-logging/#dfn-sampling-rate 1 - @@ -2602,6 +2721,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-sandybrown 1 1 <color> +<named-color> - sandybrown dfn @@ -2623,6 +2743,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-sandybrown 1 1 <color> +<named-color> - sanitize dfn @@ -2632,26 +2753,6 @@ sanitizer-api current https://wicg.github.io/sanitizer-api/#sanitize -1 -- -sanitize a document fragment -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitize-a-document-fragment - -1 -- -sanitize a node -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitize-a-node - 1 - sanitize a url to send in a report @@ -2662,78 +2763,6 @@ html current https://html.spec.whatwg.org/multipage/browsers.html#sanitize-url-report -1 -- -sanitize action -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitize-action - -1 -- -sanitize action for an attribute -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitize-action-for-an-attribute - -1 -- -sanitize action for an element -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitize-action-for-an-element - -1 -- -sanitize(input) -method -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-sanitize -1 -1 -Sanitizer -- -sanitizeFor(element, input) -method -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#dom-sanitizer-sanitizefor -1 -1 -Sanitizer -- -sanitizeandset -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitizeandset - -1 -- -sanitizefor -dfn -sanitizer-api -sanitizer-api -1 -current -https://wicg.github.io/sanitizer-api/#sanitizefor - 1 - sanitizer @@ -2781,6 +2810,26 @@ https://drafts.csswg.org/css2/#valdef-generic-family-sans-serif <generic-family> - sans-serif +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#sans-serif-def +1 +1 +- +sans-serif +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#sans-serif-def +1 +1 +- +sans-serif value css-fonts-4 css-fonts @@ -2800,6 +2849,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-satisfiable +1 +- +satisfiable +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-satisfiable + 1 - satisfiable recognizing d @@ -2809,7 +2868,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-satisfiable-recognizing-d + 1 +- +satisfiable recognizing d +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-satisfiable-recognizing-d + 1 - satisfies @@ -2820,6 +2889,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-satisfies +1 +- +satisfies +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-satisfies + 1 - satisfies its constraints @@ -3101,6 +3180,17 @@ https://wicg.github.io/savedata/#dom-networkinformationsavedata-savedata 1 NetworkInformationSaveData - +saved bidding and auction request context +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#traversable-navigable-saved-bidding-and-auction-request-context + +1 +traversable navigable +- savedCredentialIds argument webauthn-3 @@ -3112,6 +3202,17 @@ https://w3c.github.io/webauthn/#dom-issuing-a-credential-request-to-an-authentic 1 Issuing a credential request to an authenticator - +savedCredentialIds +argument +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-issuing-a-credential-request-to-an-authenticator-savedcredentialids +1 +1 +Issuing a credential request to an authenticator +- savedata dfn savedata diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sc.data b/bikeshed/spec-data/readonly/anchors/anchors-sc.data index cff2e42ba7..f893357196 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sc.data @@ -163,6 +163,37 @@ https://fetch.spec.whatwg.org/#dom-requestdestination-script 1 RequestDestination - +"script-origin" +enum-value +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstoragedataorigin-script-origin +1 +1 +SharedStorageDataOrigin +- +::scroll-marker +selector +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#selectordef-scroll-marker +1 +1 +- +::scroll-marker-group +selector +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#selectordef-scroll-marker-group +1 +1 +- :scope selector selectors-4 @@ -181,6 +212,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#scope-pseudo 1 +1 +- +<scalarproduct/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_scalarproduct + +1 +- +<scalarproduct/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_scalarproduct + 1 - <scope-end> @@ -313,6 +364,26 @@ https://wicg.github.io/is-input-pending/#dom-scheduling 1 1 - +ScoreAdOutput +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-scoreadoutput +1 +1 +- +ScoringBrowserSignals +dictionary +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dictdef-scoringbrowsersignals +1 +1 +- Screen interface cssom-view-1 @@ -335,41 +406,41 @@ https://www.w3.org/TR/cssom-view-1/#screen - ScreenDetailed interface -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screendetailed +https://w3c.github.io/window-management/#screendetailed 1 1 - ScreenDetailed interface -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screendetailed +https://www.w3.org/TR/window-management/#screendetailed 1 1 - ScreenDetails interface -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screendetails +https://w3c.github.io/window-management/#screendetails 1 1 - ScreenDetails interface -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screendetails +https://www.w3.org/TR/window-management/#screendetails 1 1 - @@ -403,6 +474,16 @@ https://www.w3.org/TR/screen-orientation/#dom-screenorientation 1 1 - +ScriptEvaluation +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-runtime-semantics-scriptevaluation +1 +1 +- ScriptEvaluation(scriptRecord) abstract-op ecmascript @@ -413,6 +494,16 @@ https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#s 1 1 - +ScriptInvokerType +enum +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#enumdef-scriptinvokertype +1 +1 +- ScriptProcessorNode interface webaudio @@ -433,43 +524,13 @@ https://www.w3.org/TR/webaudio/#scriptprocessornode 1 1 - -ScriptString -typedef -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#typedefdef-scriptstring -1 -1 -- -ScriptString -typedef -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#typedefdef-scriptstring -1 -1 -- -ScriptURLString -typedef -trusted-types -trusted-types +ScriptWindowAttribution +enum +long-animation-frames +long-animation-frames 1 current -https://w3c.github.io/trusted-types/dist/spec/#typedefdef-scripturlstring -1 -1 -- -ScriptURLString -typedef -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#typedefdef-scripturlstring +https://w3c.github.io/long-animation-frames/#enumdef-scriptwindowattribution 1 1 - @@ -727,50 +788,6 @@ https://www.w3.org/TR/cssom-view-1/#dictdef-scrolltooptions 1 1 - -[[ScriptText]] -attribute -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#dom-htmlscriptelement-scripttext-slot -1 -1 -HTMLScriptElement -- -[[ScriptText]] -attribute -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#dom-htmlscriptelement-scripttext-slot -1 -1 -HTMLScriptElement -- -[[ScriptURL]] -attribute -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#dom-htmlscriptelement-scripturl-slot -1 -1 -HTMLScriptElement -- -[[ScriptURL]] -attribute -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#dom-htmlscriptelement-scripturl-slot -1 -1 -HTMLScriptElement -- [[SctpTransportState]] attribute webrtc @@ -789,8 +806,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sctptransportstate + 1 -1 +RTCSctpTransport - [[SctpTransport]] attribute @@ -810,8 +828,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sctptransport + 1 -1 +RTCPeerConnection - [[scissorRect]] attribute @@ -837,22 +856,22 @@ RenderState - [[screenDetails]] attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-window-screendetails-slot +https://w3c.github.io/window-management/#dom-window-screendetails-slot 1 1 Window - [[screenDetails]] attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-window-screendetails-slot +https://www.w3.org/TR/window-management/#dom-window-screendetails-slot 1 1 Window @@ -868,6 +887,28 @@ https://wicg.github.io/idle-detection/#dom-idledetector-screenstate-slot 1 IdleDetector - +[[scrollMargin]] +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-scrollmargin-slot +1 +1 +IntersectionObserver +- +[[scrollMargin]] +attribute +intersection-observer +intersection-observer +1 +snapshot +https://www.w3.org/TR/intersection-observer/#dom-intersectionobserver-scrollmargin-slot +1 +1 +IntersectionObserver +- scalabilityMode dict-member media-capabilities @@ -974,6 +1015,26 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#scalar +1 +- +scalar floating point to integral conversion +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#scalar-floating-point-to-integral-conversion + +1 +- +scalar floating point to integral conversion +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#scalar-floating-point-to-integral-conversion + 1 - scalar value @@ -985,6 +1046,26 @@ current https://infra.spec.whatwg.org/#scalar-value 1 1 +- +scalar value +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-scalar-value +1 + +- +scalar value +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-scalar-value +1 + - scalar value string dfn @@ -1082,6 +1163,28 @@ XRView/requestViewportScale(scale) - scale dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-auctionreportbuyersconfig-scale +1 +1 +AuctionReportBuyersConfig +- +scale +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-pasignalvalue-scale +1 +1 +PASignalValue +- +scale +dict-member webnn webnn 1 @@ -1103,6 +1206,17 @@ https://webmachinelearning.github.io/webnn/#dom-mlinstancenormalizationoptions-s MLInstanceNormalizationOptions - scale +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mllayernormalizationoptions-scale +1 +1 +MLLayerNormalizationOptions +- +scale property css-transforms-2 css-transforms @@ -1187,6 +1301,17 @@ https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-scale MLInstanceNormalizationOptions - scale +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mllayernormalizationoptions-scale +1 +1 +MLLayerNormalizationOptions +- +scale argument webxr webxr @@ -2218,6 +2343,16 @@ DOMMatrixReadOnly/scale(scaleX, scaleY) DOMMatrixReadOnly/scale(scaleX) DOMMatrixReadOnly/scale() - +scaled +dfn +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#scaled +1 +1 +- scaled flex shrink factor dfn css-flexbox-1 @@ -2472,12 +2607,43 @@ https://wicg.github.io/keyboard-map/#scancode - scanline dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-scanline +https://w3c.github.io/png/#dfn-scanline + +1 +- +scanline +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-scanline +1 +- +scans +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanpermissionresult-scans +1 +1 +BluetoothLEScanPermissionResult +- +scf +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#eqn-scf +1 1 - schedule a posttask task @@ -2490,13 +2656,33 @@ https://wicg.github.io/scheduling-apis/#schedule-a-posttask-task 1 - -schedule a task to invoke a callback +schedule a selectionchange event +dfn +selection-api +selection-api +1 +current +https://w3c.github.io/selection-api/#dfn-schedule-a-selectionchange-event + +1 +- +schedule a task to invoke an algorithm +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#schedule-a-task-to-invoke-an-algorithm + +1 +- +schedule a yield continuation dfn scheduling-apis scheduling-apis 1 current -https://wicg.github.io/scheduling-apis/#schedule-a-task-to-invoke-a-callback +https://wicg.github.io/scheduling-apis/#schedule-a-yield-continuation 1 - @@ -2606,6 +2792,16 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#schedule-job +1 +- +schedule user topics calculation +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#schedule-user-topics-calculation + 1 - scheduled event time @@ -2691,13 +2887,13 @@ https://wicg.github.io/is-input-pending/#dom-navigator-scheduling 1 Navigator - -scheduling a posttask task +scheduling state dfn scheduling-apis scheduling-apis 1 current -https://wicg.github.io/scheduling-apis/#schedule-a-posttask-task +https://wicg.github.io/scheduling-apis/#scheduling-state 1 - @@ -3037,18 +3233,7 @@ https://w3c.github.io/manifest/#dfn-scope manifest - scope -abstract-op -webauthn-3 -webauthn -3 -current -https://w3c.github.io/webauthn/#abstract-opdef-devicepubkey-record-scope -1 -1 -devicePubKey record -- -scope -dfn +dfn webauthn-3 webauthn 3 @@ -3081,6 +3266,26 @@ MemoryAttribution - scope dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#x29 +1 +1 +- +scope +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#x29 +1 +1 +- +scope +dfn indexeddb-3 indexeddb 3 @@ -3144,6 +3349,17 @@ https://www.w3.org/TR/service-workers/#dom-serviceworkerregistration-scope ServiceWorkerRegistration - scope +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-devicepubkey-record-scope +1 +1 +devicePubKey record +- +scope dfn webauthn-3 webauthn @@ -3161,7 +3377,7 @@ css-cascade current https://drafts.csswg.org/css-cascade-6/#scope-proximity - +1 - scope proximity dfn @@ -3245,6 +3461,16 @@ dom current https://dom.spec.whatwg.org/#scope-match-a-selectors-string 1 +1 +- +scope_patterns +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-scope_patterns + 1 - scoped @@ -3288,16 +3514,6 @@ snapshot https://www.w3.org/TR/json-ld11/#dfn-scoped-context -- -scoped descendant combinator -dfn -css-cascade-6 -css-cascade -6 -current -https://drafts.csswg.org/css-cascade-6/#scoped-descendant-combinator -1 -1 - scoped descendant combinator dfn @@ -3371,6 +3587,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#scoped-selector 1 +1 +- +scoped style rules +dfn +css-cascade-6 +css-cascade +6 +current +https://drafts.csswg.org/css-cascade-6/#scoped-style-rules + +1 +- +scoped style rules +dfn +css-cascade-6 +css-cascade +6 +snapshot +https://www.w3.org/TR/css-cascade-6/#scoped-style-rules + 1 - scoped to a sub-tree @@ -3513,6 +3749,27 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#concept-import-map-scopes +1 +- +scoping details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#privateaggregation-scoping-details + +1 +PrivateAggregation +- +scoping details +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#scoping-details + 1 - scoping limit @@ -3553,6 +3810,48 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#scoping-root 1 +1 +- +score and rank a bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#score-and-rank-a-bid + +1 +- +score-ad +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#worklet-function-score-ad + +1 +worklet function +- +scoring data version +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-scoring-data-version + +1 +leading bid info +- +scoring script failure bucket +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#scoring-script-failure-bucket + 1 - screen @@ -3656,22 +3955,22 @@ WakeLockType - screen dict-member -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-fullscreenoptions-screen +https://w3c.github.io/window-management/#dom-fullscreenoptions-screen 1 1 FullscreenOptions - screen dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen +https://w3c.github.io/window-management/#screen 1 - @@ -3754,43 +4053,43 @@ XRTargetRayMode - screen dict-member -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-fullscreenoptions-screen +https://www.w3.org/TR/window-management/#dom-fullscreenoptions-screen 1 1 FullscreenOptions - screen dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen +https://www.w3.org/TR/window-management/#screen 1 - screen area dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-screen-area +https://w3c.github.io/window-management/#screen-screen-area 1 screen - screen area dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-screen-area +https://www.w3.org/TR/window-management/#screen-screen-area 1 screen @@ -3817,21 +4116,21 @@ https://www.w3.org/TR/accelerometer/#screen-coordinate-system - screen ordering dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-ordering +https://w3c.github.io/window-management/#screen-ordering 1 - screen ordering dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-ordering +https://www.w3.org/TR/window-management/#screen-ordering 1 - @@ -3855,23 +4154,23 @@ https://www.w3.org/TR/screen-orientation/#dfn-screen-orientation-change-steps 1 1 - -screen orientation values table +screen orientation values lists dfn screen-orientation screen-orientation 1 current -https://w3c.github.io/screen-orientation/#dfn-screen-orientation-values-table +https://w3c.github.io/screen-orientation/#dfn-screen-orientation-values-lists 1 - -screen orientation values table +screen orientation values lists dfn screen-orientation screen-orientation 1 snapshot -https://www.w3.org/TR/screen-orientation/#dfn-screen-orientation-values-table +https://www.w3.org/TR/screen-orientation/#dfn-screen-orientation-values-lists 1 - @@ -3897,26 +4196,46 @@ https://www.w3.org/TR/screen-orientation/#dfn-screen-orientations - screen position dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-screen-position +https://w3c.github.io/window-management/#screen-screen-position 1 screen - screen position dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-screen-position +https://www.w3.org/TR/window-management/#screen-screen-position 1 screen - +screen reader +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#x1 +1 +1 +- +screen reader +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#x1 +1 +1 +- screen wake lock dfn screen-wake-lock @@ -4376,44 +4695,44 @@ MouseEvent/initMouseEvent(typeArg) - screens attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetails-screens +https://w3c.github.io/window-management/#dom-screendetails-screens 1 1 ScreenDetails - screens attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetails-screens +https://www.w3.org/TR/window-management/#dom-screendetails-screens 1 1 ScreenDetails - screenschange event -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#eventdef-screendetails-screenschange +https://w3c.github.io/window-management/#eventdef-screendetails-screenschange 1 1 ScreenDetails - screenschange event -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#eventdef-screendetails-screenschange +https://www.w3.org/TR/window-management/#eventdef-screendetails-screenschange 1 1 ScreenDetails @@ -4489,6 +4808,16 @@ current https://svgwg.org/svg2-draft/interact.html#elementdef-script 1 1 +- +script +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-script + + - script dfn @@ -4502,6 +4831,16 @@ https://w3c.github.io/webdriver-bidi/#modules-script modules - script +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-script + +1 +- +script element svg2 svg @@ -4511,6 +4850,37 @@ https://www.w3.org/TR/SVG2/interact.html#elementdef-script 1 1 - +script +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-script + + +- +script attribute +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-script-attribute + +1 +- +script body +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#script-fetcher-script-body + +1 +script fetcher +- script data double escape end state dfn html @@ -4700,27 +5070,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-script-domain -- -script domain -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-script-domain - -1 -- -script evaluation environment settings -dfn -longtasks-1 -longtasks -1 -snapshot -https://www.w3.org/TR/longtasks-1/#task-script-evaluation-environment-settings - -1 -task - script evaluation environment settings object set dfn @@ -4740,6 +5089,16 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#script-fetch-options +1 +- +script fetcher +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#script-fetcher + 1 - script nesting level @@ -4818,6 +5177,48 @@ https://www.w3.org/TR/service-workers/#dfn-script-resource-map 1 service worker - +script runner +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#script-runner + +1 +- +script speculationrules +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-script-speculationrules + +1 +- +script text +dfn +trusted-types +trusted-types +1 +current +https://w3c.github.io/trusted-types/dist/spec/#htmlscriptelement-script-text +1 +1 +HTMLScriptElement +- +script text +dfn +trusted-types +trusted-types +1 +snapshot +https://www.w3.org/TR/trusted-types/#htmlscriptelement-script-text +1 +1 +HTMLScriptElement +- script timeout dfn webdriver2 @@ -4827,6 +5228,7 @@ current https://w3c.github.io/webdriver/#dfn-script-timeout 1 +timeouts - script timeout dfn @@ -4837,6 +5239,7 @@ snapshot https://www.w3.org/TR/webdriver2/#dfn-script-timeout 1 +timeouts - script timeout error dfn @@ -4856,6 +5259,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-script-timeout-error +1 +- +script timing info +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info +1 1 - script url @@ -4913,33 +5326,34 @@ https://www.w3.org/TR/service-workers/#dfn-script-url 1 service worker - -script-blocking style sheet set +script url when created dfn -html -html +long-animation-frames +long-animation-frames 1 current -https://html.spec.whatwg.org/multipage/semantics.html#script-blocking-style-sheet-set +https://w3c.github.io/long-animation-frames/#promise-script-url-when-created 1 +Promise - -script-closable +script-blocking style sheet set dfn html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#script-closable +https://html.spec.whatwg.org/multipage/semantics.html#script-blocking-style-sheet-set 1 - script-closable dfn -prerendering-revamped -prerendering-revamped +html +html 1 current -https://wicg.github.io/nav-speculation/prerendering.html#script-closable +https://html.spec.whatwg.org/multipage/nav-history-apis.html#script-closable 1 - @@ -4994,6 +5408,17 @@ https://www.w3.org/TR/clipboard-apis/#script-may-access-clipboard 1 - +script-run-time +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value-script-run-time + +1 +signal base value +- script-src dfn csp3 @@ -5116,6 +5541,16 @@ https://w3c.github.io/webdriver-bidi/#commands-scriptcallfunction 1 commands - +script.channel +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#scriptchannel + +1 +- script.disown dfn webdriver-bidi @@ -5149,41 +5584,83 @@ https://w3c.github.io/webdriver-bidi/#commands-scriptgetrealms 1 commands - -script.removepreloadscript +script.localvalue dfn webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#commands-scriptremovepreloadscript +https://w3c.github.io/webdriver-bidi/#scriptlocalvalue 1 1 -commands - -scriptURL -attribute -service-workers -service-workers +script.primitiveprotocolvalue +dfn +webdriver-bidi +webdriver-bidi 1 current -https://w3c.github.io/ServiceWorker/#dom-serviceworker-scripturl -1 +https://w3c.github.io/webdriver-bidi/#scriptprimitiveprotocolvalue + 1 -ServiceWorker - -scriptURL -argument -service-workers -service-workers +script.remotereference +dfn +webdriver-bidi +webdriver-bidi 1 current -https://w3c.github.io/ServiceWorker/#dom-serviceworkercontainer-register-scripturl-options-scripturl -1 +https://w3c.github.io/webdriver-bidi/#scriptremotereference + 1 -ServiceWorkerContainer/register(scriptURL, options) -ServiceWorkerContainer/register(scriptURL) - -scriptURL +script.removepreloadscript +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-scriptremovepreloadscript +1 +1 +commands +- +scriptURL +argument +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-sharedworker-scripturl-options-scripturl +1 +1 +StorageAccessHandle/SharedWorker(scriptURL, options) +StorageAccessHandle/SharedWorker(scriptURL) +- +scriptURL +attribute +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-serviceworker-scripturl +1 +1 +ServiceWorker +- +scriptURL +argument +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-serviceworkercontainer-register-scripturl-options-scripturl +1 +1 +ServiceWorkerContainer/register(scriptURL, options) +ServiceWorkerContainer/register(scriptURL) +- +scriptURL attribute service-workers service-workers @@ -5463,13 +5940,13 @@ https://w3c.github.io/mathml-core/#dfn-scriptlevel 1 - scriptlevel -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-scriptlevel - +1 1 - scriptormodule @@ -5524,6 +6001,28 @@ https://html.spec.whatwg.org/multipage/dom.html#dom-document-scripts 1 Document - +scripts +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-scripts +1 +1 +PerformanceLongAnimationFrameTiming +- +scripts +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-scripts + +1 +frame timing info +- scripts may run for the newly-created document dfn html @@ -5669,6 +6168,17 @@ https://drafts.csswg.org/mediaqueries-5/#valdef-media-overflow-inline-scroll @media/overflow-inline - scroll +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationinterceptoptions-scroll +1 +1 +NavigationInterceptOptions +- +scroll dfn html html @@ -5700,17 +6210,6 @@ https://w3c.github.io/webvtt/#dom-vttregion-scroll VTTRegion - scroll -dict-member -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationinterceptoptions-scroll -1 -1 -NavigationInterceptOptions -- -scroll value css-backgrounds-3 css-backgrounds @@ -5884,14 +6383,13 @@ https://www.w3.org/TR/css-scroll-anchoring-1/#scroll-anchoring-bounding-rect - scroll behavior dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigateevent-scroll-behavior +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigateevent-scroll 1 -NavigateEvent - scroll boundary dfn @@ -6001,6 +6499,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-scrolls-into-view +1 +- +scroll marker control +dfn +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#scroll-marker-control +1 +1 +- +scroll marker group +dfn +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#scroll-marker-group%E2%91%A0 + 1 - scroll offset @@ -6010,7 +6528,17 @@ css-overflow 3 current https://drafts.csswg.org/css-overflow-3/#scroll-offset - +1 +1 +- +scroll offset +dfn +css-overflow-3 +css-overflow +3 +snapshot +https://www.w3.org/TR/css-overflow-3/#scroll-offset +1 1 - scroll origin @@ -6020,7 +6548,17 @@ css-overflow 3 current https://drafts.csswg.org/css-overflow-3/#scroll-origin - +1 +1 +- +scroll origin +dfn +css-overflow-3 +css-overflow +3 +snapshot +https://www.w3.org/TR/css-overflow-3/#scroll-origin +1 1 - scroll origin position @@ -6030,7 +6568,17 @@ css-overflow 3 current https://drafts.csswg.org/css-overflow-3/#scroll-origin-position - +1 +1 +- +scroll origin position +dfn +css-overflow-3 +css-overflow +3 +snapshot +https://www.w3.org/TR/css-overflow-3/#scroll-origin-position +1 1 - scroll position @@ -6040,7 +6588,17 @@ css-overflow 3 current https://drafts.csswg.org/css-overflow-3/#scroll-position - +1 +1 +- +scroll position +dfn +css-overflow-3 +css-overflow +3 +snapshot +https://www.w3.org/TR/css-overflow-3/#scroll-position +1 1 - scroll position data @@ -6257,11 +6815,11 @@ https://drafts.csswg.org/scroll-animations-1/#funcdef-scroll - scroll() method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-scroll +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-scroll 1 1 NavigateEvent @@ -6401,7 +6959,7 @@ scroll-animations 1 current https://drafts.csswg.org/scroll-animations-1/#scroll-driven-animations - +1 1 - scroll-driven animations @@ -6411,7 +6969,27 @@ scroll-animations 1 snapshot https://www.w3.org/TR/scroll-animations-1/#scroll-driven-animations - +1 +1 +- +scroll-driven timelines +dfn +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#scroll-driven-timelines +1 +1 +- +scroll-driven timelines +dfn +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#scroll-driven-timelines +1 1 - scroll-margin @@ -6634,6 +7212,16 @@ https://www.w3.org/TR/css-scroll-snap-1/#propdef-scroll-margin-top 1 1 - +scroll-marker-group +property +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#propdef-scroll-marker-group +1 +1 +- scroll-padding property css-scroll-snap-1 @@ -6936,36 +7524,6 @@ https://www.w3.org/TR/css-scroll-snap-1/#propdef-scroll-snap-type 1 1 - -scroll-start -property -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start -1 -1 -- -scroll-start-block -property -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-block -1 -1 -- -scroll-start-inline -property -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-inline -1 -1 -- scroll-start-target property css-scroll-snap-2 @@ -6976,23 +7534,13 @@ https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-target 1 1 - -scroll-start-x -property -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-x -1 -1 -- -scroll-start-y +scroll-start-target property css-scroll-snap-2 css-scroll-snap 2 -current -https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-y +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#propdef-scroll-start-target 1 1 - @@ -7265,16 +7813,49 @@ https://www.w3.org/TR/cssom-view-1/#dom-element-scrollleft 1 Element - -scrollPathIntoView() -method -html -html +scrollMargin +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-scrollmargin +1 +1 +IntersectionObserver +- +scrollMargin +dict-member +intersection-observer +intersection-observer 1 current -https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-scrollpathintoview +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverinit-scrollmargin 1 1 -CanvasUserInterface +IntersectionObserverInit +- +scrollMargin +attribute +intersection-observer +intersection-observer +1 +snapshot +https://www.w3.org/TR/intersection-observer/#dom-intersectionobserver-scrollmargin +1 +1 +IntersectionObserver +- +scrollMargin +dict-member +intersection-observer +intersection-observer +1 +snapshot +https://www.w3.org/TR/intersection-observer/#dom-intersectionobserverinit-scrollmargin +1 +1 +IntersectionObserverInit - scrollRestoration attribute @@ -7287,6 +7868,17 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-scroll- 1 History - +scrollTargetElement +attribute +css-overflow-5 +css-overflow +5 +current +https://drafts.csswg.org/css-overflow-5/#dom-htmllinkelement-scrolltargetelement +1 +1 +HTMLLinkElement +- scrollTo() method cssom-view-1 @@ -7576,14 +8168,16 @@ https://drafts.csswg.org/css-color-3/#scrollbar 1 - scrollbar -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#scrollbar - +https://drafts.csswg.org/css-color-4/#valdef-color-scrollbar 1 +1 +<color> +<deprecated-color> - scrollbar dfn @@ -7596,14 +8190,16 @@ https://www.w3.org/TR/css-color-3/#scrollbar 1 - scrollbar -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#scrollbar - +https://www.w3.org/TR/css-color-4/#valdef-color-scrollbar +1 1 +<color> +<deprecated-color> - scrollbar attribute @@ -7738,6 +8334,7 @@ https://drafts.csswg.org/cssom-view-1/#eventdef-document-scrollend 1 Document Element +VisualViewport - scrollend dfn @@ -7902,6 +8499,130 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-scrolls-into-view +1 +- +scrollsnapchange +event +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#eventdef-snapevent-scrollsnapchange +1 +1 +SnapEvent +- +scrollsnapchange +event +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#eventdef-snapevent-scrollsnapchange +1 +1 +SnapEvent +- +scrollsnapchangetargetblock +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchangetargetblock +1 +1 +- +scrollsnapchangetargetblock +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchangetargetblock +1 +1 +- +scrollsnapchangetargetinline +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchangetargetinline +1 +1 +- +scrollsnapchangetargetinline +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchangetargetinline +1 +1 +- +scrollsnapchanging +event +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#eventdef-snapevent-scrollsnapchanging +1 +1 +SnapEvent +- +scrollsnapchanging +event +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#eventdef-snapevent-scrollsnapchanging +1 +1 +SnapEvent +- +scrollsnapchanging block-axis target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchanging-block-axis-target + +1 +- +scrollsnapchanging block-axis target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchanging-block-axis-target + +1 +- +scrollsnapchanging inline-axis target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchanging-inline-axis-target + +1 +- +scrollsnapchanging inline-axis target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchanging-inline-axis-target + 1 - sct diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sd.data b/bikeshed/spec-data/readonly/anchors/anchors-sd.data index 25e4a348a1..44e5913e52 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sd.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sd.data @@ -1,3 +1,23 @@ +<sdev/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_sdev + +1 +- +<sdev/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sdev + +1 +- sdp dict-member webrtc @@ -92,21 +112,10 @@ webrtc webrtc 1 current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodeccapability-sdpfmtpline +https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodec-sdpfmtpline 1 1 -RTCRtpCodecCapability -- -sdpFmtpLine -dict-member -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpcodecparameters-sdpfmtpline -1 -1 -RTCRtpCodecParameters +RTCRtpCodec - sdpFmtpLine dict-member @@ -284,3 +293,23 @@ https://www.w3.org/TR/webrtc/#dom-rtcicecandidateinit-sdpmid 1 RTCIceCandidateInit - +sdr +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-sdr + +1 +- +sdr +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-sdr + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-se.data b/bikeshed/spec-data/readonly/anchors/anchors-se.data index 6e0c28fd4f..b4baa82fd6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-se.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-se.data @@ -1,3 +1,25 @@ +"security-key" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialhints-security-key +1 +1 +PublicKeyCredentialHints +- +"security-key" +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialhints-security-key +1 +1 +PublicKeyCredentialHints +- "seek" enum-value fs @@ -75,6 +97,39 @@ https://www.w3.org/TR/mediasession/#dom-mediasessionaction-seekto 1 MediaSessionAction - +"self" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptwindowattribution-self +1 +1 +ScriptWindowAttribution +- +"seller" +enum-value +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencereportingdestination-seller +1 +1 +FenceReportingDestination +- +"send-redemption-record" +enum-value +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-operationtype-send-redemption-record +1 +1 +OperationType +- "service-not-allowed" enum-value speech-api @@ -134,7 +189,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%setiteratorprototype%-object +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25setiteratorprototype%25-object 1 1 - @@ -161,6 +216,16 @@ default allowlist - 'self' grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-self + +1 +- +'self' +grammar csp3 csp 3 @@ -208,6 +273,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-seeking 1 +1 +- +:seeking +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-seeking + 1 - :seeking @@ -218,6 +293,46 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#selectordef-seeking 1 +1 +- +<sec/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_sec + +1 +- +<sec/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sec + +1 +- +<sech/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_sech + +1 +- +<sech/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sech + 1 - <selector-list> @@ -240,14 +355,24 @@ https://www.w3.org/TR/selectors-4/#typedef-selector-list 1 1 - -<selector-scope> -type -css-cascade-6 -css-cascade -6 -snapshot -https://www.w3.org/TR/css-cascade-6/#typedef-selector-scope +<selector/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_selector + 1 +- +<selector/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_selector + 1 - <self-position> @@ -268,16 +393,6 @@ css-align snapshot https://www.w3.org/TR/css-align-3/#typedef-self-position 1 -1 -- -<semantics> -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-semantics - 1 - <semicolon-token> @@ -366,14 +481,64 @@ https://www.w3.org/TR/css-speech-1/#valdef-voice-range-semitones 1 voice-range - -@@search -const -ecmascript -ecmascript +<sep/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_sep + +1 +- +<sep/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sep + +1 +- +<set> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_set + +1 +- +<set> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_set + 1 +- +<setdiff/> +dfn +mathml4 +mathml +4 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://w3c.github.io/mathml/#contm_setdiff + 1 +- +<setdiff/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_setdiff + 1 - SECURITY_ERR @@ -387,6 +552,26 @@ https://webidl.spec.whatwg.org/#dom-domexception-security_err 1 DOMException - +SecFromTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-secfromtime +1 +1 +- +SecFromTime(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-secfromtime +1 +1 +- SecureContext extended-attribute webidl @@ -531,6 +716,26 @@ https://www.w3.org/TR/CSP3/#dictdef-securitypolicyviolationeventinit 1 1 - +SelectSettings +abstract-op +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dfn-selectsettings +1 +1 +- +SelectSettings +abstract-op +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dfn-selectsettings +1 +1 +- Selection interface selection-api @@ -693,6 +898,16 @@ https://drafts.csswg.org/web-animations-2/#sequenceeffect 1 1 - +SequenceEffect +interface +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#sequenceeffect +1 +1 +- SequenceEffect(children) constructor web-animations-2 @@ -704,6 +919,17 @@ https://drafts.csswg.org/web-animations-2/#dom-sequenceeffect-sequenceeffect 1 SequenceEffect - +SequenceEffect(children) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-sequenceeffect +1 +1 +SequenceEffect +- SequenceEffect(children, timing) constructor web-animations-2 @@ -715,6 +941,17 @@ https://drafts.csswg.org/web-animations-2/#dom-sequenceeffect-sequenceeffect 1 SequenceEffect - +SequenceEffect(children, timing) +constructor +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-sequenceeffect +1 +1 +SequenceEffect +- Serial interface serial @@ -805,6 +1042,16 @@ https://html.spec.whatwg.org/multipage/structured-data.html#serializable 1 1 - +SerializeJSONArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-serializejsonarray +1 +1 +- SerializeJSONArray(state, value) abstract-op ecmascript @@ -815,6 +1062,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-serializejsonarray 1 1 - +SerializeJSONObject +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-serializejsonobject +1 +1 +- SerializeJSONObject(state, value) abstract-op ecmascript @@ -825,6 +1082,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-serializejsonobject 1 1 - +SerializeJSONProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-serializejsonproperty +1 +1 +- SerializeJSONProperty(state, key, holder) abstract-op ecmascript @@ -966,6 +1233,16 @@ https://www.w3.org/TR/service-workers/#enumdef-serviceworkerupdateviacache 1 - Set +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-set-o-p-v-throw +1 +1 +- +Set interface ecmascript ecmascript @@ -996,94 +1273,247 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-iterable 1 Set - -SetDefaultGlobalBindings(realmRec) -abstract-op +Set.prototype %Symbol.iterator% () +method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-setdefaultglobalbindings +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype-%25symbol.iterator%25 1 1 +Set.prototype [ %Symbol.iterator% ] ( ) - -SetFunctionLength(F, length) +SetDataHas abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-setfunctionlength +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdatahas 1 1 - -SetFunctionName(F, name, prefix) +SetDataHas(setData, value) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-setfunctionname +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdatahas 1 1 - -SetHTMLOptions -dictionary -sanitizer-api -sanitizer-api +SetDataIndex +abstract-op +ecmascript +ecmascript 1 current -https://wicg.github.io/sanitizer-api/#dictdef-sethtmloptions +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdataindex 1 1 - -SetImmutablePrototype(O, V) +SetDataIndex(setData, value) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-set-immutable-prototype +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdataindex 1 1 - -SetIntegrityLevel(O, level) +SetDataSize abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-setintegritylevel +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdatasize 1 1 - -SetMutableBinding(N, V, S) +SetDataSize(setData) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-setmutablebinding-n-v-s +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdatasize 1 1 -Environment Records - -SetRealmGlobalObject(realmRec, globalObj, thisValue) +SetDefaultGlobalBindings abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-setrealmglobalobject +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-setdefaultglobalbindings 1 1 - -SetTypedArrayFromArrayLike(target, targetOffset, source) +SetDefaultGlobalBindings(realmRec) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-settypedarrayfromarraylike +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-setdefaultglobalbindings +1 +1 +- +SetFunctionLength +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-setfunctionlength +1 +1 +- +SetFunctionLength(F, length) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-setfunctionlength +1 +1 +- +SetFunctionName +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-setfunctionname +1 +1 +- +SetFunctionName(F, name, prefix) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-setfunctionname +1 +1 +- +SetHTMLOptions +dictionary +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dictdef-sethtmloptions +1 +1 +- +SetImmutablePrototype +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-set-immutable-prototype +1 +1 +- +SetImmutablePrototype(O, V) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-set-immutable-prototype +1 +1 +- +SetIntegrityLevel +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-setintegritylevel +1 +1 +- +SetIntegrityLevel(O, level) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-setintegritylevel +1 +1 +- +SetMutableBinding(N, V, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-setmutablebinding-n-v-s +1 +1 +Declarative Environment Records +- +SetMutableBinding(N, V, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-setmutablebinding-n-v-s +1 +1 +Global Environment Records +- +SetMutableBinding(N, V, S) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-setmutablebinding-n-v-s +1 +1 +Object Environment Records +- +SetTypedArrayFromArrayLike +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-settypedarrayfromarraylike +1 +1 +- +SetTypedArrayFromArrayLike(target, targetOffset, source) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-settypedarrayfromarraylike +1 +1 +- +SetTypedArrayFromTypedArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-settypedarrayfromtypedarray 1 1 - @@ -1227,6 +1657,16 @@ https://streams.spec.whatwg.org/#set-up-writable-stream-default-writer 1 1 - +SetValueInBuffer +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-setvalueinbuffer +1 +1 +- SetValueInBuffer(arrayBuffer, byteIndex, type, value, isTypedArray, order, isLittleEndian) abstract-op ecmascript @@ -1237,6 +1677,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-setvalueinbuffer 1 1 - +SetViewValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-setviewvalue +1 +1 +- SetViewValue(view, requestIndex, isLittleEndian, type, value) abstract-op ecmascript @@ -1287,6 +1737,7 @@ snapshot https://www.w3.org/TR/webrtc/#dfn-selectedcandidatepair 1 1 +RTCIceTransport - [[SendCodecs]] attribute @@ -1295,7 +1746,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-sendcodecs - +1 1 RTCRtpSender - @@ -1306,8 +1757,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sendcodecs + 1 -1 +RTCRtpSender - [[SendEncodings]] attribute @@ -1316,7 +1768,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-sendencodings - +1 1 RTCRtpSender - @@ -1327,41 +1779,53 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sendencodings + 1 -1 +RTCRtpSender - -[[SendOrder]] +[[SendGroup]] attribute webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportsendstream-sendorder-slot +https://w3c.github.io/webtransport/#dom-webtransportsendstream-sendgroup-slot 1 1 WebTransportSendStream - -[[SendOrder]] +[[SendGroup]] attribute webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-sendorder-slot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-sendgroup-slot 1 1 WebTransportSendStream - -[[SendRate]] +[[SendOrder]] attribute webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportratecontrolfeedback-sendrate-slot +https://w3c.github.io/webtransport/#dom-webtransportsendstream-sendorder-slot +1 +1 +WebTransportSendStream +- +[[SendOrder]] +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-sendorder-slot 1 1 -WebTransportRateControlFeedback +WebTransportSendStream - [[SendStreams]] attribute @@ -1403,8 +1867,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sendertrack + 1 -1 +RTCRtpSender - [[SenderTransport]] attribute @@ -1424,8 +1889,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sendertransport + 1 -1 +RTCRtpSender - [[Sender]] attribute @@ -1434,7 +1900,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-sender - +1 1 RTCRtpTransceiver - @@ -1445,8 +1911,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-sender + 1 -1 +RTCRtpTransceiver - [[Session]] attribute @@ -1560,7 +2027,7 @@ ImageTrack - [[serializedMethodData]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -1571,18 +2038,18 @@ PaymentRequest - [[serializedMethodData]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-serializedmethoddata +https://www.w3.org/TR/payment-request/#dfn-serializedmethoddata 1 1 PaymentRequest - [[serializedModifierData]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -1593,11 +2060,11 @@ PaymentRequest - [[serializedModifierData]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-serializedmodifierdata +https://www.w3.org/TR/payment-request/#dfn-serializedmodifierdata 1 1 PaymentRequest @@ -1687,6 +2154,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-seagreen 1 1 <color> +<named-color> - seagreen dfn @@ -1708,6 +2176,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-seagreen 1 1 <color> +<named-color> - seal(O) method @@ -1738,6 +2207,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#seamlessly-update-the-playback-rate +1 +- +search +element +html +html +1 +current +https://html.spec.whatwg.org/multipage/grouping-content.html#the-search-element +1 1 - search @@ -1757,7 +2236,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#text-(type=text)-state-and-search-state-(type=search) +https://html.spec.whatwg.org/multipage/input.html#text-(type%3Dtext)-state-and-search-state-(type%3Dsearch) 1 1 input @@ -1859,7 +2338,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-search +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-search 1 1 constructor string parser/state @@ -1870,7 +2349,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-search +https://urlpattern.spec.whatwg.org/#dom-urlpattern-search 1 1 URLPattern @@ -1881,7 +2360,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-search +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-search 1 1 URLPatternInit @@ -1892,7 +2371,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-search +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-search 1 1 URLPatternResult @@ -1903,10 +2382,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-search-component +https://urlpattern.spec.whatwg.org/#url-pattern-search-component 1 -URLPattern +URL pattern - search invisible dfn @@ -2012,6 +2491,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-seashell 1 1 <color> +<named-color> - seashell dfn @@ -2033,6 +2513,27 @@ https://www.w3.org/TR/css-color-4/#valdef-color-seashell 1 1 <color> +<named-color> +- +sec-ad-auction-fetch +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-sec-ad-auction-fetch +1 +1 +- +sec-browsing-topics +http-header +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#http-headerdef-sec-browsing-topics +1 +1 - sec-ch-dpr http-header @@ -2074,6 +2575,16 @@ https://wicg.github.io/ua-client-hints/#http-headerdef-sec-ch-ua-bitness 1 1 - +sec-ch-ua-form-factors +http-header +ua-client-hints +ua-client-hints +1 +current +https://wicg.github.io/ua-client-hints/#http-headerdef-sec-ch-ua-form-factors +1 +1 +- sec-ch-ua-full-version http-header ua-client-hints @@ -2264,45 +2775,95 @@ https://privacycg.github.io/gpc-spec/#dfn-sec-gpc 1 - -sec-purpose +sec-private-state-token http-header -fetch -fetch +trust-token-api +trust-token-api 1 current -https://fetch.spec.whatwg.org/#http-sec-purpose +https://wicg.github.io/trust-token-api/#http-headerdef-sec-private-state-token 1 1 - -sec-required-csp +sec-private-state-token-crypto-version http-header -csp-embedded-enforcement -csp-embedded-enforcement +trust-token-api +trust-token-api 1 current -https://w3c.github.io/webappsec-cspee/#http-headerdef-sec-required-csp +https://wicg.github.io/trust-token-api/#http-headerdef-sec-private-state-token-crypto-version 1 1 - -sec-required-document-policy +sec-private-state-token-lifetime http-header -document-policy -document-policy +trust-token-api +trust-token-api 1 current -https://wicg.github.io/document-policy/#sec-required-document-policy-header +https://wicg.github.io/trust-token-api/#http-headerdef-sec-private-state-token-lifetime 1 1 - -second -argument -indexeddb-3 -indexeddb -3 -current -https://w3c.github.io/IndexedDB/#dom-idbfactory-cmp-first-second-second -1 -1 +sec-purpose +http-header +fetch +fetch +1 +current +https://fetch.spec.whatwg.org/#http-sec-purpose +1 +1 +- +sec-redemption-record +http-header +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#http-headerdef-sec-redemption-record +1 +1 +- +sec-required-csp +http-header +csp-embedded-enforcement +csp-embedded-enforcement +1 +current +https://w3c.github.io/webappsec-cspee/#http-headerdef-sec-required-csp +1 +1 +- +sec-required-document-policy +http-header +document-policy +document-policy +1 +current +https://wicg.github.io/document-policy/#sec-required-document-policy-header +1 +1 +- +sec-shared-storage-writable +http-header +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#http-headerdef-sec-shared-storage-writable +1 +1 +- +second +argument +indexeddb-3 +indexeddb +3 +current +https://w3c.github.io/IndexedDB/#dom-idbfactory-cmp-first-second-second +1 +1 IDBFactory/cmp(first, second) - second @@ -2327,6 +2888,28 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbfactory-cmp-first-second-second 1 IDBFactory/cmp(first, second) - +second +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsprfvalues-second +1 +1 +AuthenticationExtensionsPRFValues +- +second highest score +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-second-highest-score + +1 +leading bid info +- second-factor platform authenticator dfn webauthn-3 @@ -2379,11 +2962,11 @@ https://w3c.github.io/screen-orientation/#dfn-secondary - secondary dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#secondary +https://w3c.github.io/window-management/#secondary 1 - @@ -2399,11 +2982,11 @@ https://www.w3.org/TR/screen-orientation/#dfn-secondary - secondary dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#secondary +https://www.w3.org/TR/window-management/#secondary 1 - @@ -2459,6 +3042,26 @@ https://w3c.github.io/webcrypto/#dom-keytype-secret 1 1 KeyType +- +secret key +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-secret-key + + +- +secret key +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-secret-key + + - section element @@ -2528,6 +3131,16 @@ html current https://html.spec.whatwg.org/multipage/dom.html#sectioning-content-2 1 +1 +- +sections +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#sections + 1 - secure @@ -2543,7 +3156,7 @@ CookieListItem - secure connection establishment dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2553,11 +3166,11 @@ https://w3c.github.io/network-error-logging/#dfn-secure-connection-establishment - secure connection establishment dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-secure-connection-establishment +https://www.w3.org/TR/network-error-logging/#dfn-secure-connection-establishment 1 - @@ -2611,26 +3224,6 @@ secure-payment-confirmation snapshot https://www.w3.org/TR/secure-payment-confirmation/#secure-payment-confirmation-payment-handler -1 -- -secure tls -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-secure-tls - -1 -- -secure tls -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-secure-tls - 1 - secure-only-flag @@ -2708,6 +3301,88 @@ https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming-secureconne 1 PerformanceResourceTiming - +secured data document +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-secured-data-document +1 +1 +- +secured data document +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-secured-data-document +1 +1 +- +securing mechanism +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-securing-mechanism +1 +1 +- +securing mechanism +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-securing-mechanism +1 +1 +- +securing mechanisms +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-securing-mechanism +1 +1 +- +securing mechanisms +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-securing-mechanism +1 +1 +- +security-key +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-publickeycredentialhints-security-key +1 +1 +PublicKeyCredentialHints +- +security-key +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialhints-security-key +1 +1 +PublicKeyCredentialHints +- security-sensitive members dfn appmanifest @@ -2798,6 +3473,16 @@ feTurbulence - seek dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#seek + +1 +- +seek +dfn html html 1 @@ -2812,7 +3497,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#seek-and-get-the-next-code-point +https://urlpattern.spec.whatwg.org/#seek-and-get-the-next-code-point 1 - @@ -2833,10 +3518,10 @@ mediasession mediasession 1 current -https://w3c.github.io/mediasession/#dom-mediasessionactiondetails-seekoffset +https://w3c.github.io/mediasession/#dom-mediasessionseekactiondetails-seekoffset 1 1 -MediaSessionActionDetails +MediaSessionSeekActionDetails - seekOffset dict-member @@ -2844,10 +3529,10 @@ mediasession mediasession 1 snapshot -https://www.w3.org/TR/mediasession/#dom-mediasessionactiondetails-seekoffset +https://www.w3.org/TR/mediasession/#dom-mediasessionseekactiondetails-seekoffset 1 1 -MediaSessionActionDetails +MediaSessionSeekActionDetails - seekTime dict-member @@ -2855,10 +3540,10 @@ mediasession mediasession 1 current -https://w3c.github.io/mediasession/#dom-mediasessionactiondetails-seektime +https://w3c.github.io/mediasession/#dom-mediasessionseektoactiondetails-seektime 1 1 -MediaSessionActionDetails +MediaSessionSeekToActionDetails - seekTime dict-member @@ -2866,10 +3551,10 @@ mediasession mediasession 1 snapshot -https://www.w3.org/TR/mediasession/#dom-mediasessionactiondetails-seektime +https://www.w3.org/TR/mediasession/#dom-mediasessionseektoactiondetails-seektime 1 1 -MediaSessionActionDetails +MediaSessionSeekToActionDetails - seekable attribute @@ -3067,7 +3752,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser-segment-wildcard-regexp +https://urlpattern.spec.whatwg.org/#pattern-parser-segment-wildcard-regexp 1 pattern parser @@ -3098,11 +3783,43 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-type-segment-wildcard +https://urlpattern.spec.whatwg.org/#part-type-segment-wildcard 1 part/type - +segmentation +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#segmentation + +1 +- +segmentationResult +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingprediction-segmentationresult +1 +1 +HandwritingPrediction +- +segments +attribute +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#dom-viewport-segments +1 +1 +Viewport +- segments enum-value media-source-2 @@ -3322,6 +4039,26 @@ fedcm current https://fedidcg.github.io/FedCM/#select-an-account +1 +- +select an alternate resource +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-select-an-alternate-resource + +1 +- +select an alternate resource +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-select-an-alternate-resource + 1 - select an appropriate key attribute value @@ -3422,6 +4159,26 @@ css-nav snapshot https://www.w3.org/TR/css-nav-1/#select-the-best-candidate +1 +- +select the indicated part +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#select-the-indicated-part + +1 +- +select the next scheduler task queue from all schedulers +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#select-the-next-scheduler-task-queue-from-all-schedulers + 1 - select the scheduler task queue @@ -3440,7 +4197,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-select +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea%2Finput-select 1 1 HTMLInputElement @@ -3644,6 +4401,50 @@ https://www.w3.org/TR/SVG2/text.html#__svg__SVGTextContentElement__selectSubStri 1 SVGTextContentElement - +selectURL(name, urls) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-selecturl +1 +1 +SharedStorage +- +selectURL(name, urls) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-selecturl +1 +1 +SharedStorageWorklet +- +selectURL(name, urls, options) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-selecturl +1 +1 +SharedStorage +- +selectURL(name, urls, options) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-selecturl +1 +1 +SharedStorageWorklet +- selected element-attr html @@ -3678,6 +4479,17 @@ https://html.spec.whatwg.org/multipage/media.html#dom-videotrack-selected VideoTrack - selected +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingoption-selected +1 +1 +PaymentShippingOption +- +selected attribute webcodecs webcodecs @@ -3689,6 +4501,17 @@ https://w3c.github.io/webcodecs/#dom-imagetrack-selected ImageTrack - selected +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-selected +1 +1 +PaymentShippingOption +- +selected attribute webcodecs webcodecs @@ -3885,14 +4708,15 @@ https://w3c.github.io/webrtc-pc/#event-icetransport-selectedcandidatepairchange RTCIceTransport - selectedcandidatepairchange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-icetransport-selectedcandidatepairchange +1 - +RTCIceTransport - selecteditem value @@ -3900,9 +4724,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-selecteditem +https://drafts.csswg.org/css-color-4/#valdef-color-selecteditem 1 1 +<color> <system-color> - selecteditem @@ -3911,9 +4736,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-selecteditem +https://www.w3.org/TR/css-color-4/#valdef-color-selecteditem 1 1 +<color> <system-color> - selecteditemtext @@ -3922,9 +4748,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-selecteditemtext +https://drafts.csswg.org/css-color-4/#valdef-color-selecteditemtext 1 1 +<color> <system-color> - selecteditemtext @@ -3933,9 +4760,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-selecteditemtext +https://www.w3.org/TR/css-color-4/#valdef-color-selecteditemtext 1 1 +<color> <system-color> - selectedness @@ -4038,26 +4866,6 @@ css-nav snapshot https://www.w3.org/TR/css-nav-1/#select-the-best-candidate -1 -- -selecting the scheduler task queue -dfn -scheduling-apis -scheduling-apis -1 -current -https://wicg.github.io/scheduling-apis/#select-the-scheduler-task-queue - -1 -- -selecting the task queue of the next scheduler task -dfn -scheduling-apis -scheduling-apis -1 -current -https://wicg.github.io/scheduling-apis/#selecting-the-task-queue-of-the-next-scheduler-task - 1 - selection @@ -4066,7 +4874,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-textarea/input-selection +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-textarea%2Finput-selection 1 - @@ -4092,14 +4900,15 @@ https://w3c.github.io/selection-api/#dfn-selection 1 - selection -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-selection - 1 +1 +maction - selection dfn @@ -4109,6 +4918,16 @@ selection-api snapshot https://www.w3.org/TR/selection-api/#dfn-selection +1 +- +selection bounds +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-selection-bounds + 1 - selection direction @@ -4121,16 +4940,25 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#selectio 1 - -selectionBound -attribute +selection end +dfn edit-context edit-context 1 current -https://w3c.github.io/edit-context/#dom-editcontext-selectionbound +https://w3c.github.io/edit-context/#dfn-selection-end + 1 +- +selection start +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-selection-start + 1 -EditContext - selectionBound attribute @@ -4149,7 +4977,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-selectiondirection +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea%2Finput-selectiondirection 1 1 HTMLInputElement @@ -4161,7 +4989,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-selectionend +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea%2Finput-selectionend 1 1 HTMLInputElement @@ -4261,7 +5089,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-selectionstart +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea%2Finput-selectionstart 1 1 HTMLInputElement @@ -4375,6 +5203,26 @@ https://www.w3.org/TR/selection-api/#dfn-selectionchange 1 1 - +selective disclosure +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-selective-disclosure +1 +1 +- +selective disclosure +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-selective-disclosure +1 +1 +- selective forwarding middlebox dfn webrtc-svc @@ -4447,6 +5295,26 @@ webrtc current https://w3c.github.io/webrtc-pc/#stats-selector +1 +- +selector +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x15 +1 +1 +- +selector +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x15 +1 1 - selector @@ -4523,26 +5391,45 @@ https://drafts.csswg.org/css2/#selector-matches 1 - -selector scoping notation +selector::match +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x1 +1 +1 +- +selector::match dfn -css-cascade-6 -css-cascade -6 +css2 +css +1 snapshot -https://www.w3.org/TR/css-cascade-6/#selector-scoping-notation - +https://www.w3.org/TR/CSS21/selector.html#x1 +1 1 - -selectorText -attribute -cssom-1 -cssom +selector::subject of +dfn +css2 +css 1 current -https://drafts.csswg.org/cssom-1/#dom-cssgroupingrule-selectortext +https://www.w3.org/TR/CSS21/selector.html#subject +1 +1 +- +selector::subject of +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#subject 1 1 -CSSGroupingRule - selectorText attribute @@ -4665,26 +5552,6 @@ https://wicg.github.io/nav-speculation/speculation-rules.html#document-rule-css- 1 document rule CSS selector predicate - -selectsettings -dfn -mediacapture-streams -mediacapture-streams -1 -current -https://w3c.github.io/mediacapture-main/#dfn-selectsettings -1 -1 -- -selectsettings -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#dfn-selectsettings -1 -1 -- selectstart event webxr @@ -4728,6 +5595,19 @@ https://www.w3.org/TR/webxr/#eventdef-xrsession-selectstart XRSession - self +value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-self +1 +1 +scroll() +scroll-timeline-axis +view-timeline-axis +- +self attribute html html @@ -4771,6 +5651,29 @@ https://w3c.github.io/webauthn/#self - self dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#self + +1 +- +self +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-scroll-self +1 +1 +scroll() +scroll-timeline-axis +view-timeline-axis +- +self +dfn webauthn-3 webauthn 3 @@ -4850,6 +5753,17 @@ https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-self-block 1 anchor-size() - +self-block +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-size-self-block +1 +1 +anchor-size() +- self-closing flag dfn html @@ -4896,6 +5810,18 @@ anchor() - self-end value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-self-end +1 +1 +position-area +<position-area> +- +self-end +value css-align-3 css-align 3 @@ -4907,6 +5833,29 @@ https://www.w3.org/TR/css-align-3/#valdef-self-position-self-end justify-self align-self - +self-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-self-end +1 +1 +anchor() +- +self-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-self-end +1 +1 +inset-area +<inset-area> +- self-inline value css-anchor-position-1 @@ -4918,6 +5867,17 @@ https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-self-inline 1 anchor-size() - +self-inline +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-size-self-inline +1 +1 +anchor-size() +- self-origin dfn csp3 @@ -4931,6 +5891,16 @@ policy - self-origin dfn +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#self-origin + +1 +- +self-origin +dfn csp3 csp 3 @@ -4940,6 +5910,26 @@ https://www.w3.org/TR/CSP3/#policy-self-origin 1 policy - +self-origin +dfn +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#self-origin + +1 +- +self-property-list +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_property_list + +1 +- self-start value css-align-3 @@ -4966,6 +5956,18 @@ anchor() - self-start value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-self-start +1 +1 +position-area +<position-area> +- +self-start +value css-align-3 css-align 3 @@ -4977,6 +5979,29 @@ https://www.w3.org/TR/css-align-3/#valdef-self-position-self-start justify-self align-self - +self-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-self-start +1 +1 +anchor() +- +self-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-self-start +1 +1 +inset-area +<inset-area> +- selfBrowserSurface dict-member screen-capture @@ -4999,35 +6024,289 @@ https://www.w3.org/TR/screen-capture/#dom-displaymediastreamoptions-selfbrowsers 1 DisplayMediaStreamOptions - -semantic +seller dfn -mathml-aam -mathml-aam +turtledove +turtledove 1 current -https://w3c.github.io/mathml-aam/#dfn-semantics +https://wicg.github.io/turtledove/#auction-config-seller 1 +auction config - -semantic +seller dfn -svg-aam-1.0 -svg-aam +turtledove +turtledove 1 current -https://w3c.github.io/svg-aam/#dfn-semantics - +https://wicg.github.io/turtledove/#direct-from-seller-signals-key-seller +1 +direct from seller signals key - -semantic -dfn -accname-1.2 -accname +seller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-adauctiondataconfig-seller 1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-semantics - 1 +AdAuctionDataConfig +- +seller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-seller +1 +1 +AuctionAdConfig +- +seller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-seller +1 +1 +BiddingBrowserSignals +- +seller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-seller +1 +1 +ReportWinBrowserSignals +- +seller capabilities +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-seller-capabilities + +1 +interest group +- +seller capability +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#seller-capability + +1 +- +seller currency +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-seller-currency + +1 +auction config +- +seller debug loss report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-seller-debug-loss-report-url + +1 +bid debug reporting info +- +seller debug win report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-seller-debug-win-report-url + +1 +bid debug reporting info +- +seller experiment group id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-seller-experiment-group-id + +1 +auction config +- +seller private aggregation coordinator +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#auction-config-seller-private-aggregation-coordinator + +1 +auction config +- +seller real time reporting config +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-seller-real-time-reporting-config + +1 +auction config +- +seller reporting result +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-seller-reporting-result + +1 +leading bid info +- +seller signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-seller-signals + +1 +auction config +- +seller signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#direct-from-seller-signals-seller-signals + +1 +direct from seller signals +- +seller timeout +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-seller-timeout + +1 +auction config +- +sellerCapabilities +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-sellercapabilities +1 +1 +GenerateBidInterestGroup +- +sellerCurrency +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-sellercurrency +1 +1 +AuctionAdConfig +- +sellerExperimentGroupId +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-sellerexperimentgroupid +1 +1 +AuctionAdConfig +- +sellerRealTimeReportingConfig +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-sellerrealtimereportingconfig +1 +1 +AuctionAdConfig +- +sellerSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-sellersignals +1 +1 +AuctionAdConfig +- +sellerSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-directfromsellersignalsforseller-sellersignals +1 +1 +DirectFromSellerSignalsForSeller +- +sellerTimeout +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-sellertimeout +1 +1 +AuctionAdConfig +- +semantic +dfn +svg-aam-1.0 +svg-aam +1 +current +https://w3c.github.io/svg-aam/#dfn-semantics + + - semantic dfn @@ -5079,6 +6358,48 @@ https://w3c.github.io/rdf-semantics/spec/#dfn-semantic-extension 1 - +semantic extension +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-semantic-extension + +1 +- +semantic label +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#semantic-label + +1 +- +semanticLabel +attribute +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplane-semanticlabel +1 +1 +XRPlane +- +semanticLabel +attribute +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#dom-xrmesh-semanticlabel +1 +1 +XRMesh +- semantically dfn wai-aria-1.2 @@ -5091,13 +6412,13 @@ https://w3c.github.io/aria/#dfn-semantics - semantically dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-semantics - +https://w3c.github.io/aria/#dfn-semantics 1 + - semantically dfn @@ -5108,16 +6429,6 @@ current https://w3c.github.io/svg-aam/#dfn-semantics -- -semantically -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-semantics - -1 - semantically dfn @@ -5159,35 +6470,35 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-semantics - -semantics +semantically dfn -wai-aria-1.2 +wai-aria-1.3 wai-aria 1 -current -https://w3c.github.io/aria/#dfn-semantics +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-semantics 1 - semantics dfn -mathml-aam -mathml-aam +wai-aria-1.2 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-semantics - +https://w3c.github.io/aria/#dfn-semantics 1 + - semantics dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-semantics - +https://w3c.github.io/aria/#dfn-semantics 1 + - semantics element @@ -5218,16 +6529,6 @@ current https://w3c.github.io/svg-aam/#dfn-semantics -- -semantics -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-semantics - -1 - semantics dfn @@ -5248,6 +6549,16 @@ snapshot https://www.w3.org/TR/graphics-aria-1.0/#dfn-semantics +- +semantics +element +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-semantics +1 +1 - semantics dfn @@ -5278,6 +6589,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-semantics +- +semantics +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-semantics +1 + - semantics of an expression dfn @@ -5305,10 +6626,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-semi-condensed +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-semi-condensed 1 1 -font-stretch +font-width - semi-condensed enum-value @@ -5327,10 +6648,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-semi-condensed +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-semi-condensed 1 1 -font-stretch +font-width - semi-expanded value @@ -5338,10 +6659,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-semi-expanded +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-semi-expanded 1 1 -font-stretch +font-width - semi-expanded enum-value @@ -5360,10 +6681,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-semi-expanded +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-semi-expanded 1 1 -font-stretch +font-width - semicolon dfn @@ -5442,6 +6763,16 @@ https://www.w3.org/TR/webtransport/#stream-send 1 stream - +send a beacon +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#send-a-beacon + +1 +- send a datagram dfn webtransport @@ -5464,6 +6795,16 @@ https://www.w3.org/TR/webtransport/#session-send-a-datagram 1 session - +send a disconnect request +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#send-a-disconnect-request + +1 +- send a message dfn presentation-api @@ -5482,6 +6823,16 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-send-algorithm +1 +- +send a real time report +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#send-a-real-time-report + 1 - send a response @@ -5574,24 +6925,75 @@ https://w3c.github.io/webdriver-bidi/#send-an-error-response 1 - -send request key frame algorithm +send browsing topics header boolean +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#request-send-browsing-topics-header-boolean + +1 +request +- +send click event dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#send-click-event + +1 +- +send click event +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#send-click-event + +1 +- +send real time reports +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#send-real-time-reports + +1 +- +send report +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#send-report + +1 +- +send request key frame algorithm +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#send-request-key-frame-algorithm - +https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-send-request-key-frame-algorithm +1 1 - send request key frame algorithm -dfn +abstract-op webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#send-request-key-frame-algorithm - +https://www.w3.org/TR/webrtc-encoded-transform/#abstract-opdef-send-request-key-frame-algorithm +1 1 - send select update notifications @@ -5936,6 +7338,17 @@ PresentationConnection - send() method +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioutput-send +1 +1 +MIDIOutput +- +send() +method webrtc webrtc 1 @@ -5957,13 +7370,13 @@ https://xhr.spec.whatwg.org/#dom-xmlhttprequest-send XMLHttpRequest - send() algorithm -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#datachannel-send - +1 1 - send() algorithm @@ -6032,6 +7445,17 @@ WebSocket - send(data) method +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioutput-send +1 +1 +MIDIOutput +- +send(data) +method webrtc webrtc 1 @@ -6052,6 +7476,17 @@ https://webaudio.github.io/web-midi-api/#dom-midioutput-send 1 MIDIOutput - +send(data, timestamp) +method +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioutput-send +1 +1 +MIDIOutput +- send(message) method presentation-api @@ -6160,6 +7595,28 @@ https://www.w3.org/TR/beacon/#dom-navigator-sendbeacon 1 Navigator - +sendBufferSize +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions-sendbuffersize +1 +1 +TCPSocketOptions +- +sendBufferSize +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions-sendbuffersize +1 +1 +UDPSocketOptions +- sendCaptureAction() method mediacapture-handle-actions @@ -6226,6 +7683,61 @@ https://wicg.github.io/webhid/#dom-hiddevice-sendfeaturereport 1 HIDDevice - +sendGroup +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportsendstream-sendgroup +1 +1 +WebTransportSendStream +- +sendGroup +dict-member +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportsendstreamoptions-sendgroup +1 +1 +WebTransportSendStreamOptions +- +sendGroup +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-sendgroup +1 +1 +WebTransportSendStream +- +sendGroup +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamoptions-sendgroup +1 +1 +WebTransportSendStreamOptions +- +sendKeyFrameRequest() +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-sendkeyframerequest +1 +1 +RTCRtpScriptTransform +- sendKeyFrameRequest() method webrtc-encoded-transform @@ -6242,11 +7754,33 @@ method webrtc-encoded-transform webrtc-encoded-transform 1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-sendkeyframerequest +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransform-sendkeyframerequest +1 +1 +RTCRtpScriptTransform +- +sendKeyFrameRequest() +method +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-sendkeyframerequest +1 +1 +RTCRtpScriptTransformer +- +sendOrder +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportsendstream-sendorder 1 1 -RTCRtpScriptTransformer +WebTransportSendStream - sendOrder dict-member @@ -6260,26 +7794,26 @@ https://w3c.github.io/webtransport/#dom-webtransportsendstreamoptions-sendorder WebTransportSendStreamOptions - sendOrder -dict-member +attribute webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamoptions-sendorder +https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-sendorder 1 1 -WebTransportSendStreamOptions +WebTransportSendStream - -sendRate -attribute +sendOrder +dict-member webtransport webtransport 1 -current -https://w3c.github.io/webtransport/#dom-webtransportratecontrolfeedback-sendrate +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamoptions-sendorder 1 1 -WebTransportRateControlFeedback +WebTransportSendStreamOptions - sendReport() method @@ -6303,6 +7837,29 @@ https://wicg.github.io/webhid/#dom-hiddevice-sendreport 1 HIDDevice - +sendReportTo(url) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-sendreportto +1 +1 +InterestGroupReportingScriptRunnerGlobalScope +- +send_reports +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedurntourl-urnorconfig-send_reports-send_reports +1 +1 +Navigator/deprecatedURNtoURL(urnOrConfig, send_reports) +Navigator/deprecatedURNtoURL(urnOrConfig) +- senddatagrams dfn webtransport @@ -6367,6 +7924,16 @@ https://www.w3.org/TR/webrtc/#dom-rtcrtptransceiverdirection-sendonly 1 RTCRtpTransceiverDirection - +sendpendingreports +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#sendpendingreports + +1 +- sendrecv enum-value webrtc @@ -6477,26 +8044,6 @@ generic-sensor snapshot https://www.w3.org/TR/generic-sensor/#sensor-fusion -1 -- -sensor hubs -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#sensor-hubs - -1 -- -sensor hubs -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#sensor-hubs - 1 - sensor permission names @@ -6895,14 +8442,15 @@ https://w3c.github.io/mathml-core/#dfn-separator mo - separator -dfn +element-attr mathml-core mathml-core 1 snapshot https://www.w3.org/TR/mathml-core/#dfn-separator - 1 +1 +mo - sepia() function @@ -6946,6 +8494,36 @@ https://www.w3.org/TR/epub-33/#dfn-seq 1 1 - +seq_level_idx_0 +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#seq_level_idx_0 +1 +1 +- +seq_profile +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#seq_profile +1 +1 +- +seq_tier_0 +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#seq_tier_0 +1 +1 +- sequence dfn html @@ -6996,6 +8574,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#sequence-effect +1 +- +sequence effect +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#sequence-effect + 1 - sequence of simple selectors @@ -7047,28 +8635,6 @@ webrtc-encoded-transform snapshot https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-sequencenumber 1 -1 -RTCEncodedAudioFrameMetadata -- -sequencenumber -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframemetadata-sequencenumber - -1 -RTCEncodedAudioFrameMetadata -- -sequencenumber -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframemetadata-sequencenumber - 1 RTCEncodedAudioFrameMetadata - @@ -7157,12 +8723,32 @@ WorkerNavigator - serial number dfn +device-attributes +device-attributes +1 +current +https://wicg.github.io/WebApiDevice/device_attributes/#serial-number + +1 +- +serial number +dfn webusb webusb 1 current https://wicg.github.io/webusb/#serial-number +1 +- +serial port profile service class id +dfn +serial +serial +1 +current +https://wicg.github.io/serial/#dfn-serial-port-profile-service-class-id + 1 - serial port task source @@ -7230,103 +8816,87 @@ https://wicg.github.io/webusb/#dom-usbdevicefilter-serialnumber 1 USBDeviceFilter - -serializable object -dfn -html -html +serializable +attribute +dom +dom 1 current -https://html.spec.whatwg.org/multipage/structured-data.html#serializable-objects +https://dom.spec.whatwg.org/#dom-shadowroot-serializable 1 1 +ShadowRoot - -serializable objects -dfn -webcryptoapi -webcryptoapi +serializable +dict-member +dom +dom 1 current -https://w3c.github.io/webcrypto/#dfn-serializable-objects - +https://dom.spec.whatwg.org/#dom-shadowrootinit-serializable +1 1 +ShadowRootInit - -serialization +serializable dfn -i18n-glossary -i18n-glossary +dom +dom 1 current -https://w3c.github.io/i18n-glossary/#dfn-agreement -1 +https://dom.spec.whatwg.org/#shadowroot-serializable -- -serialization -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-agreement 1 - +ShadowRoot - -serialization agreement +serializable object dfn -i18n-glossary -i18n-glossary +html +html 1 current -https://w3c.github.io/i18n-glossary/#dfn-agreement +https://html.spec.whatwg.org/multipage/structured-data.html#serializable-objects +1 1 - - -serialization agreement +serializable objects dfn -i18n-glossary -i18n-glossary +webcryptoapi +webcryptoapi 1 current -https://w3c.github.io/i18n-glossary/#dfn-agreement -1 +https://w3c.github.io/webcrypto/#dfn-serializable-objects -- -serialization agreement -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-agreement 1 - - -serialization agreement -dfn -i18n-glossary -i18n-glossary +serializableShadowRoots +dict-member +html +html 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-agreement +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-gethtmloptions-serializableshadowroots 1 - +1 +GetHTMLOptions - -serialization agreements +serialization agreement dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn-agreement +https://w3c.github.io/i18n-glossary/#dfn-serialization-agreement 1 - -serialization agreements +serialization agreement dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-agreement +https://www.w3.org/TR/i18n-glossary/#dfn-serialization-agreement 1 - @@ -7580,6 +9150,16 @@ https://drafts.css-houdini.org/css-typed-om-1/#serialize-a-cssnumericvalue 1 1 - +serialize a cssnumericvalue +dfn +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#serialize-a-cssnumericvalue +1 +1 +- serialize a cssperspective dfn css-typed-om-1 @@ -7818,6 +9398,26 @@ css-typed-om snapshot https://www.w3.org/TR/css-typed-om-1/#serialize-a-cssvariablereferencevalue 1 +1 +- +serialize a currency tag +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#serialize-a-currency-tag + +1 +- +serialize a device +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#serialize-a-device + 1 - serialize a group of selectors @@ -8020,13 +9620,23 @@ https://mimesniff.spec.whatwg.org/#serialize-a-mime-type-to-bytes 1 1 - -serialize a private state token +serialize a prompt handler configuration dfn -attribution-reporting-api -attribution-reporting-api -1 +webdriver2 +webdriver +2 current -https://wicg.github.io/attribution-reporting-api/#serialize-a-private-state-token +https://w3c.github.io/webdriver/#dfn-serialize-a-prompt-handler-configuration + +1 +- +serialize a prompt handler configuration +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-serialize-a-prompt-handler-configuration 1 - @@ -8108,6 +9718,16 @@ cssom current https://drafts.csswg.org/cssom-1/#serialize-a-url 1 +1 +- +serialize a url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#serialize-a-url + 1 - serialize a url @@ -8118,6 +9738,16 @@ cssom snapshot https://www.w3.org/TR/cssom-1/#serialize-a-url 1 +1 +- +serialize a verbose debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#serialize-a-verbose-debug-report + 1 - serialize a whitespace-separated list @@ -8158,15 +9788,35 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#serialize-an-anb-value 1 +1 +- +serialize an aggregatable attribution report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#serialize-an-aggregatable-attribution-report + +1 +- +serialize an aggregatable debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#serialize-an-aggregatable-debug-report + 1 - serialize an aggregatable report dfn -attribution-reporting-api -attribution-reporting-api +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/attribution-reporting-api/#serialize-an-aggregatable-report +https://patcg-individual-drafts.github.io/private-aggregation-api/#serialize-an-aggregatable-report 1 - @@ -8180,13 +9830,13 @@ https://w3c.github.io/webdriver-bidi/#serialize-an-array-like 1 - -serialize an attribution debug report +serialize an attribution debug info dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#serialize-an-attribution-debug-report +https://wicg.github.io/attribution-reporting-api/#serialize-an-attribution-debug-info 1 - @@ -8258,6 +9908,16 @@ fetch current https://fetch.spec.whatwg.org/#serialize-an-integer +1 +- +serialize an integer +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#serialize-an-integer + 1 - serialize an integer @@ -8268,6 +9928,16 @@ url current https://url.spec.whatwg.org/#serialize-an-integer +1 +- +serialize an integer +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#serialize-an-integer + 1 - serialize an integer @@ -8278,6 +9948,16 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#serialize-an-integer +1 +- +serialize an integer +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#serialize-an-integer + 1 - serialize as a list @@ -8318,6 +9998,36 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#serialize-attribution-destinations +1 +- +serialize cookie +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#serialize-cookie + +1 +- +serialize cookie header +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#serialize-cookie-header + +1 +- +serialize header +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#serialize-header + 1 - serialize i/o queue @@ -8348,6 +10058,36 @@ webdriver-bidi current https://w3c.github.io/webdriver-bidi/#serialize-primitive-protocol-value +1 +- +serialize prompt devices +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#serialize-prompt-devices + +1 +- +serialize protocol bytes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#serialize-protocol-bytes + +1 +- +serialize protocol messages +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#serialize-protocol-messages + 1 - serialize required policy @@ -8358,6 +10098,16 @@ document-policy current https://wicg.github.io/document-policy/#serialize-required-policy 1 +1 +- +serialize set-cookie header +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#serialize-set-cookie-header + 1 - serialize steps @@ -8389,6 +10139,46 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#serialize-a-calculation-tree 1 +1 +- +serialize the timeouts configuration +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-serialize-the-timeouts-configuration + +1 +- +serialize the timeouts configuration +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-serialize-the-timeouts-configuration + +1 +- +serialize the user prompt handler +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-serialize-the-user-prompt-handler + +1 +- +serialize the user prompt handler +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-serialize-the-user-prompt-handler + 1 - serialize-attributes-loop @@ -8430,10 +10220,30 @@ fetch 1 current https://fetch.spec.whatwg.org/#fetch-controller-serialized-abort-reason - +1 1 fetch controller - +serialized canonical form +dfn +rdf-canon +rdf-canon +1 +current +https://w3c.github.io/rdf-canon/spec/#dfn-serialized-canonical-form + +1 +- +serialized canonical form +dfn +rdf-canon +rdf-canon +1 +snapshot +https://www.w3.org/TR/rdf-canon/#dfn-serialized-canonical-form + +1 +- serialized computed value dfn css-easing-2 @@ -8543,26 +10353,6 @@ fido current https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#serialized-large-blob-array -1 -- -serialized mock sensor -dfn -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#serialized-mock-sensor - -1 -- -serialized mock sensor -dfn -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#serialized-mock-sensor - 1 - serialized options @@ -8585,28 +10375,6 @@ https://www.w3.org/TR/css-animation-worklet-1/#serialized-options 1 - -serialized private state token -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#aggregatable-report-serialized-private-state-token - -1 -aggregatable report -- -serialized private state token -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#attribution-trigger-serialized-private-state-token - -1 -attribution trigger -- serialized source list dfn csp3 @@ -8643,20 +10411,9 @@ html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-serialized-state - -1 -- -serialized state -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#navigation-api-method-navigation-serialized-state +https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker-state 1 -navigation API method navigation - serialized-directive grammar @@ -8676,26 +10433,6 @@ csp snapshot https://www.w3.org/TR/CSP3/#grammardef-serialized-directive 1 -1 -- -serialized-origin -dfn -permissions-policy-1 -permissions-policy -1 -current -https://w3c.github.io/webappsec-permissions-policy/#serialized-origin - -1 -- -serialized-origin -dfn -permissions-policy-1 -permissions-policy -1 -snapshot -https://www.w3.org/TR/permissions-policy-1/#serialized-origin - 1 - serialized-permissions-policy @@ -8982,6 +10719,26 @@ https://drafts.csswg.org/css2/#valdef-generic-family-serif <generic-family> - serif +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#serif-def +1 +1 +- +serif +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#serif-def +1 +1 +- +serif value css-fonts-4 css-fonts @@ -9037,6 +10794,46 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcdtlsrole-server 1 RTCDtlsRole - +server auction browser signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-browser-signals + +1 +- +server auction interest group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-interest-group + +1 +- +server auction previous win +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-previous-win + +1 +- +server auction request context +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-request-context + +1 +- server ip dfn webpackage @@ -9048,6 +10845,28 @@ https://wicg.github.io/webpackage/loading.html#signed-exchange-report-server-ip 1 signed exchange report - +server response +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-server-response + +1 +auction config +- +server response id +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-server-response-id + +1 +auction config +- server-sent events dfn html @@ -9149,6 +10968,17 @@ https://fetch.spec.whatwg.org/#fetch-timing-info-server-timing-headers 1 fetch timing info - +server-too-busy +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-server-too-busy +1 +1 +SmartCardResponseCode +- serverCertificateHashes dict-member webtransport @@ -9171,6 +11001,17 @@ https://www.w3.org/TR/webtransport/#dom-webtransportoptions-servercertificatehas 1 WebTransportOptions - +serverResponse +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-serverresponse +1 +1 +AuctionAdConfig +- serverTiming attribute server-timing @@ -9291,23 +11132,23 @@ https://tc39.es/ecma402/#service-constructor 1 1 - -service constructor +service data dfn -tc39-intl-enumeration -tc39-intl-enumeration +web-bluetooth +web-bluetooth 1 current -https://tc39.es/proposal-intl-enumeration/#service-constructor -1 +https://webbluetoothcg.github.io/web-bluetooth/#service-data + 1 - service data -dfn -web-bluetooth -web-bluetooth +dfn +web-bluetooth-scanning +web-bluetooth-scanning 1 current -https://webbluetoothcg.github.io/web-bluetooth/#service-data +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#service-data 1 - @@ -9341,13 +11182,13 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-service-provider - -service provider +service uuid dfn -tracking-dnt -tracking-dnt +web-bluetooth-scanning +web-bluetooth-scanning 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-service-provider +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#service-uuid 1 - @@ -9839,6 +11680,17 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothlescanfilterinit-se BluetoothLEScanFilterInit - +serviceData +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-servicedata +1 +1 +BluetoothLEScanFilter +- serviceProvider argument digital-goods @@ -9940,16 +11792,27 @@ https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothlescanfilterinit-se BluetoothLEScanFilterInit - +services +attribute +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-services +1 +1 +BluetoothLEScanFilter +- servicesites dfn first-party-sets first-party-sets 1 current -https://wicg.github.io/first-party-sets/#first-party-set-servicesites +https://wicg.github.io/first-party-sets/#related-website-set-servicesites 1 -first-party set +related website set - sesame value @@ -10237,8 +12100,8 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-session -1 +https://w3c.github.io/webdriver/#dfn-sessions + 1 - session @@ -10247,8 +12110,8 @@ webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-session -1 +https://www.w3.org/TR/webdriver2/#dfn-sessions + 1 - session @@ -10465,6 +12328,46 @@ https://www.w3.org/TR/webxrlayers-1/#xrwebglbinding-session 1 XRWebGLBinding - +session closed +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-session-closed + +1 +- +session closed +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-session-closed + +1 +- +session configuration flags +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-session-configuration-flags + +1 +- +session configuration flags +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-session-configuration-flags + +1 +- session history dfn presentation-api @@ -10507,14 +12410,13 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#session-history-ent - session history entry dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigationhistoryentry-session-history-entry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nhe-she 1 -NavigationHistoryEntry - session history traversal parallel queue dfn @@ -10538,11 +12440,11 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#tn-session-histor - session id dfn -webdriver2 -webdriver +encrypted-media-2 +encrypted-media 2 current -https://w3c.github.io/webdriver/#dfn-session-id +https://w3c.github.io/encrypted-media/#dfn-session-id 1 - @@ -10551,28 +12453,28 @@ dfn webdriver2 webdriver 2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-session-id +current +https://w3c.github.io/webdriver/#dfn-session-id 1 - -session implicit wait timeout +session id dfn -webdriver2 -webdriver +encrypted-media-2 +encrypted-media 2 -current -https://w3c.github.io/webdriver/#dfn-session-script-timeout +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-session-id 1 - -session implicit wait timeout +session id dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-session-script-timeout +https://www.w3.org/TR/webdriver2/#dfn-session-id 1 - @@ -10594,46 +12496,6 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-session-not-created -1 -- -session page load timeout -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-session-script-timeout - -1 -- -session page load timeout -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-session-script-timeout - -1 -- -session script timeout -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-session-script-timeout - -1 -- -session script timeout -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-session-script-timeout - 1 - session storage @@ -10692,7 +12554,7 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-session-script-timeout +https://w3c.github.io/webdriver/#dfn-session-timeouts 1 - @@ -10702,7 +12564,7 @@ webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-session-script-timeout +https://www.w3.org/TR/webdriver2/#dfn-session-timeouts 1 - @@ -10716,6 +12578,17 @@ https://w3c.github.io/webdriver-bidi/#session-websocket-connections 1 - +session.end +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-sessionend +1 +1 +commands +- session.new dfn webdriver-bidi @@ -10762,15 +12635,26 @@ commands - sessionId attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-sessionid 1 1 MediaKeySession - +sessionId +attribute +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-sessionid +1 +1 +MediaKeySession +- sessionStorage attribute html @@ -10782,11 +12666,33 @@ https://html.spec.whatwg.org/multipage/webstorage.html#dom-sessionstorage 1 WindowSessionStorage - +sessionStorage +attribute +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-sessionstorage +1 +1 +StorageAccessHandle +- +sessionStorage +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-sessionstorage +1 +1 +StorageAccessTypes +- sessionTypes dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-sessiontypes 1 @@ -10806,6 +12712,17 @@ MediaCapabilitiesKeySystemConfiguration - sessionTypes dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-sessiontypes +1 +1 +MediaKeySystemConfiguration +- +sessionTypes +dict-member media-capabilities media-capabilities 1 @@ -10815,27 +12732,25 @@ https://www.w3.org/TR/media-capabilities/#dom-mediacapabilitieskeysystemconfigur 1 MediaCapabilitiesKeySystemConfiguration - -sessionid +sessions dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-sessionid +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-sessions 1 -mediakeysession - -sessiontypes +sessions dfn -encrypted-media -encrypted-media -1 +webdriver2 +webdriver +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-sessiontypes +https://www.w3.org/TR/webdriver2/#dfn-sessions 1 -mediakeysystemconfiguration - set dfn @@ -10895,9 +12810,21 @@ badging badging 1 current -https://w3c.github.io/badging/#dfn-set +https://w3c.github.io/badging/#dfn-setting + +1 +badge +- +set +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-setting 1 +badge - set dfn @@ -10910,13 +12837,13 @@ https://www.w3.org/TR/cssom-1/#set 1 - set a configuration -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#set-pc-configuration - +1 1 - set a configuration @@ -10987,6 +12914,26 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#set-local-description +1 +- +set a permission +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-set-a-permission + +1 +- +set a permission +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-set-a-permission + 1 - set a permission store entry @@ -11050,13 +12997,13 @@ https://www.w3.org/TR/webrtc/#set-remote-description 1 - set a session description -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#set-description - +1 1 - set a session description @@ -11081,7 +13028,7 @@ https://fetch.spec.whatwg.org/#concept-header-list-set-structured-header header list - set a track's muted state -dfn +abstract-op mediacapture-streams mediacapture-streams 1 @@ -11089,6 +13036,7 @@ current https://w3c.github.io/mediacapture-main/#set-track-muted 1 1 +MediaStreamTrack - set a track's muted state dfn @@ -11101,7 +13049,7 @@ https://w3c.github.io/webrtc-pc/#set-track-muted 1 - set a track's muted state -dfn +abstract-op mediacapture-streams mediacapture-streams 1 @@ -11109,6 +13057,7 @@ snapshot https://www.w3.org/TR/mediacapture-streams/#set-track-muted 1 1 +MediaStreamTrack - set a track's muted state dfn @@ -11171,16 +13120,15 @@ https://webidl.spec.whatwg.org/#observable-array-attribute-set-an-indexed-value 1 observable array attribute - -set an upcoming traverse navigation +set and filter html dfn -navigation-api -navigation-api +sanitizer-api +sanitizer-api 1 current -https://wicg.github.io/navigation-api/#navigation-set-an-upcoming-traverse-navigation +https://wicg.github.io/sanitizer-api/#set-and-filter-html 1 -Navigation - set animator instance of worklet animation dfn @@ -11200,6 +13148,16 @@ css-animation-worklet snapshot https://www.w3.org/TR/css-animation-worklet-1/#set-animator-instance-of-worklet-animation +1 +- +set attribution reporting headers +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#set-attribution-reporting-headers + 1 - set bitmap dimensions @@ -11219,9 +13177,41 @@ mediacapture-automation 1 current https://w3c.github.io/mediacapture-automation/#set-capture-prompt-result +1 +1 +extension commands +- +set credential properties +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#set-credential-properties 1 - +set credential properties parameters +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#set-credential-properties-parameters + +1 +- +set default mock microphone device +dfn +mediacapture-automation +mediacapture-automation +1 +current +https://w3c.github.io/mediacapture-automation/#set-default-mock-microphne-device +1 +1 +extension commands +- set descriptor dfn webusb @@ -11253,13 +13243,24 @@ https://webidl.spec.whatwg.org/#dfn-set-entries 1 1 - +set entries +dfn +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfaceset-set-entries + +1 +FontFaceSet +- set event timing entry duration dfn event-timing event-timing 1 current -https://w3c.github.io/event-timing#set-event-timing-entry-duration +https://w3c.github.io/event-timing/#set-event-timing-entry-duration 1 - @@ -11278,8 +13279,18 @@ dfn css-fonts-4 css-fonts 4 -current -https://drafts.csswg.org/css-fonts-4/#set-explicitly +current +https://drafts.csswg.org/css-fonts-4/#set-explicitly + +1 +- +set explicitly +dfn +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#set-explicitly 1 - @@ -11311,6 +13322,46 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#set-local-description +1 +- +set mouse event modifiers +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#set-mouse-event-modifiers + +1 +- +set mouse event modifiers +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#set-mouse-event-modifiers + +1 +- +set mouseevent attributes from native +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#set-mouseevent-attributes-from-native + +1 +- +set mouseevent attributes from native +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#set-mouseevent-attributes-from-native + 1 - set object @@ -11383,10 +13434,9 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#command-set-of-all-command-names +https://w3c.github.io/webdriver-bidi/#set-of-all-command-names 1 1 -command - set of aspects dfn @@ -11458,15 +13508,35 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-set-of-controlled-presentations +1 +- +set of devices +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#set-of-devices + 1 - set of elements with rendered text dfn -element-timing -element-timing +paint-timing +paint-timing 1 current -https://wicg.github.io/element-timing/#set-of-elements-with-rendered-text +https://w3c.github.io/paint-timing/#set-of-elements-with-rendered-text + +1 +- +set of elements with rendered text +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#set-of-elements-with-rendered-text 1 - @@ -11570,11 +13640,21 @@ https://w3c.github.io/mediacapture-automation/#mock-capture-device-set - set of owned text nodes dfn -element-timing -element-timing +paint-timing +paint-timing 1 current -https://wicg.github.io/element-timing/#set-of-owned-text-nodes +https://w3c.github.io/paint-timing/#set-of-owned-text-nodes + +1 +- +set of owned text nodes +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#set-of-owned-text-nodes 1 - @@ -11616,6 +13696,26 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-set-of-presentation-controllers +1 +- +set of previously reported paints +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#set-of-previously-reported-paints + +1 +- +set of previously reported paints +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#set-of-previously-reported-paints + 1 - set of rtcrtptransceivers @@ -11625,7 +13725,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#transceivers-set - +1 1 - set of rtcrtptransceivers @@ -11655,7 +13755,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#set-of-sessions-for-which-an-event-is-enabled - +1 1 - set of space-separated tokens @@ -11696,6 +13796,28 @@ anchors current https://immersive-web.github.io/anchors/#xrsession-set-of-tracked-anchors +1 +XRSession +- +set of tracked meshes +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#xrsession-set-of-tracked-meshes + +1 +XRSession +- +set of tracked planes +dfn +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#xrsession-set-of-tracked-planes + 1 XRSession - @@ -11706,7 +13828,7 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#transceivers-set - +1 1 - set of transceivers @@ -11741,6 +13863,16 @@ https://www.w3.org/TR/service-workers/#dfn-set-of-used-scripts 1 service worker - +set of user contexts +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#set-of-user-contexts + +1 +- set permission dfn permissions @@ -11757,12 +13889,32 @@ dfn permissions permissions 1 +current +https://w3c.github.io/permissions/#dfn-set-permission-0 +1 +1 +- +set permission +dfn +permissions +permissions +1 snapshot https://www.w3.org/TR/permissions/#dfn-set-permission 1 1 extension commands - +set permission +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-set-permission-0 +1 +1 +- set pointer capture dfn pointerevents3 @@ -11781,6 +13933,68 @@ pointerevents snapshot https://www.w3.org/TR/pointerevents3/#dfn-set-pointer-capture +1 +- +set pointerlock attributes for mousemove +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#set-pointerlock-attributes-for-mousemove + +1 +- +set pointerlock attributes for mousemove +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#set-pointerlock-attributes-for-mousemove + +1 +- +set private token properties for request from private token +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#set-private-token-properties-for-request-from-private-token + +1 +- +set record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-records +1 +1 +ECMAScript +- +set records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-records +1 +1 +ECMAScript +- +set redemption headers +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#set-redemption-headers + 1 - set registration @@ -11881,6 +14095,16 @@ webidl current https://webidl.spec.whatwg.org/#dfn-set-size-getter 1 +1 +- +set source url for script block +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#set-source-url-for-script-block + 1 - set spc transaction mode @@ -11913,6 +14137,16 @@ https://privacycg.github.io/storage-access/#set-storage-access 1 1 - +set text content +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#set-text-content +1 +1 +- set the Sec-Required-CSP header abstract-op csp-embedded-enforcement @@ -11921,6 +14155,36 @@ csp-embedded-enforcement current https://w3c.github.io/webappsec-cspee/#abstract-opdef-set-the-sec-required-csp-header 1 +1 +- +set the aggregation coordinator for a batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#set-the-aggregation-coordinator-for-a-batching-scope +1 +1 +- +set the application badge +dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-set-the-application-badge + +1 +- +set the application badge +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-set-the-application-badge + 1 - set the associated effect of an animation @@ -11946,13 +14210,13 @@ https://www.w3.org/TR/web-animations-1/#animation-set-the-associated-effect-of-a animation - set the associated remote streams -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#set-associated-remote-streams - +1 1 - set the associated remote streams @@ -11976,13 +14240,13 @@ https://dom.spec.whatwg.org/#set-the-canceled-flag 1 - set the configuration -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#set-pc-configuration - +1 1 - set the configuration @@ -12067,6 +14331,16 @@ https://www.w3.org/TR/web-animations-1/#animation-set-the-current-time 1 animation - +set the current time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#set-the-current-time + +1 +- set the current top-level browsing context dfn webdriver2 @@ -12088,23 +14362,23 @@ https://www.w3.org/TR/webdriver2/#dfn-set-the-current-top-level-browsing-context 1 - set the device information exposure -dfn +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#set-device-information-exposure - +1 1 - set the device information exposure -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#set-device-information-exposure - +1 1 - set the end @@ -12126,6 +14400,16 @@ html current https://html.spec.whatwg.org/multipage/semantics.html#set-the-frozen-base-url 1 +1 +- +set the high word +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-set-the-high-word + 1 - set the indexed value @@ -12139,6 +14423,16 @@ https://webidl.spec.whatwg.org/#observable-array-exotic-object-set-the-indexed-v 1 observable array exotic object - +set the inner text steps +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#set-the-inner-text-steps +1 +1 +- set the length dfn webidl @@ -12150,6 +14444,16 @@ https://webidl.spec.whatwg.org/#observable-array-exotic-object-set-the-length 1 observable array exotic object - +set the login status +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#set-the-login-status + +1 +- set the muted state dfn webrtc @@ -12165,8 +14469,18 @@ dfn webrtc webrtc 1 -snapshot -https://www.w3.org/TR/webrtc/#set-track-muted +snapshot +https://www.w3.org/TR/webrtc/#set-track-muted + +1 +- +set the ongoing navigation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#set-the-ongoing-navigation 1 - @@ -12199,6 +14513,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#set-the-playback-rate +1 +- +set the pre-specified report parameters for a batching scope +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#set-the-pre-specified-report-parameters-for-a-batching-scope +1 1 - set the required CSP @@ -12252,13 +14576,13 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#set-the- 1 - set the session description -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#set-description - +1 1 - set the session description @@ -12320,6 +14644,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#set-the-start-time +1 +- +set the start time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#set-the-start-time + 1 - set the timeline of an animation @@ -12355,16 +14689,16 @@ https://www.w3.org/TR/web-animations-1/#animation-set-the-timeline-of-an-animati 1 animation - -set the upcoming non-traverse navigation +set the timeline of an animation dfn -navigation-api -navigation-api +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#animation-set-the-timeline-of-an-animation 1 -current -https://wicg.github.io/navigation-api/#navigation-set-the-upcoming-non-traverse-navigation - 1 -Navigation +animation - set the url dfn @@ -12511,17 +14845,6 @@ https://streams.spec.whatwg.org/#writablestream-set-up 1 WritableStream - -set up -dfn -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#webtransporterror-set-up - -1 -WebTransportError -- set up a window environment settings object dfn html @@ -12743,6 +15066,28 @@ https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap.prototype.s 1 WeakMap - +set(key, value) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-set +1 +1 +SharedStorage +- +set(key, value, options) +method +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-set +1 +1 +SharedStorage +- set(name, blobValue) method xhr @@ -12831,6 +15176,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-set 1 StylePropertyMap - +set(property) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-set +1 +1 +StylePropertyMap +- set(property, ...values) method css-typed-om-1 @@ -12859,7 +15215,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.set +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.set 1 1 %TypedArray% @@ -12916,23 +15272,13 @@ https://www.w3.org/TR/fetch-metadata/#abstract-opdef-set-dest 1 1 - -set-device-information-exposure +set-login dfn -mediacapture-streams -mediacapture-streams +fedcm +fedcm 1 current -https://w3c.github.io/mediacapture-main/#set-device-information-exposure - -1 -- -set-device-information-exposure -dfn -mediacapture-streams -mediacapture-streams -1 -snapshot -https://www.w3.org/TR/mediacapture-streams/#set-device-information-exposure +https://fedidcg.github.io/FedCM/#set-login 1 - @@ -13029,6 +15375,17 @@ https://w3c.github.io/badging/#dom-navigatorbadge-setappbadge 1 NavigatorBadge - +setAppBadge() +method +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dom-navigatorbadge-setappbadge +1 +1 +NavigatorBadge +- setAppBadge(contents) method badging @@ -13040,6 +15397,28 @@ https://w3c.github.io/badging/#dom-navigatorbadge-setappbadge 1 NavigatorBadge - +setAppBadge(contents) +method +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dom-navigatorbadge-setappbadge +1 +1 +NavigatorBadge +- +setAttribute() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-setattribute +1 +1 +SmartCardConnection +- setAttribute(qualifiedName, value) method dom @@ -13051,6 +15430,17 @@ https://dom.spec.whatwg.org/#dom-element-setattribute 1 Element - +setAttribute(tag, value) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-setattribute +1 +1 +SmartCardConnection +- setAttributeNS(namespace, qualifiedName, value) method dom @@ -13084,6 +15474,17 @@ https://dom.spec.whatwg.org/#dom-element-setattributenodens 1 Element - +setAttributionReporting(options) +method +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#dom-xmlhttprequest-setattributionreporting +1 +1 +XMLHttpRequest +- setBaseAndExtent() method selection-api @@ -13128,6 +15529,28 @@ https://www.w3.org/TR/selection-api/#dom-selection-setbaseandextent 1 Selection - +setBid() +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setbid +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +setBid(oneOrManyBids) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setbid +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope +- setBigInt64(byteOffset, value, littleEndian) method ecmascript @@ -13304,28 +15727,6 @@ https://www.w3.org/TR/capture-handle-identity/#dom-mediadevices-setcapturehandle 1 MediaDevices - -setClientBadge() -method -badging -badging -1 -current -https://w3c.github.io/badging/#dom-navigator-setclientbadge -1 -1 -Navigator -- -setClientBadge(contents) -method -badging -badging -1 -current -https://w3c.github.io/badging/#dom-navigator-setclientbadge -1 -1 -Navigator -- setCodecPreferences() method webrtc @@ -13563,6 +15964,17 @@ https://dom.spec.whatwg.org/#dom-range-setendbefore 1 Range - +setExpires(expires) +method +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-storagebucket-setexpires +1 +1 +StorageBucket +- setFloat32(byteOffset, value, littleEndian) method ecmascript @@ -13651,7 +16063,7 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype.setf 1 Date - -setHTML(input) +setHTML(html) method sanitizer-api sanitizer-api @@ -13662,7 +16074,18 @@ https://wicg.github.io/sanitizer-api/#dom-element-sethtml 1 Element - -setHTML(input, options) +setHTML(html) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtml +1 +1 +ShadowRoot +- +setHTML(html, options) method sanitizer-api sanitizer-api @@ -13673,6 +16096,83 @@ https://wicg.github.io/sanitizer-api/#dom-element-sethtml 1 Element - +setHTML(html, options) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtml +1 +1 +ShadowRoot +- +setHTMLUnsafe(html) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-element-sethtmlunsafe +1 +1 +Element +- +setHTMLUnsafe(html) +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-shadowroot-sethtmlunsafe +1 +1 +ShadowRoot +- +setHTMLUnsafe(html) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-element-sethtmlunsafe +1 +1 +Element +- +setHTMLUnsafe(html) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtmlunsafe +1 +1 +ShadowRoot +- +setHTMLUnsafe(html, options) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-element-sethtmlunsafe +1 +1 +Element +- +setHTMLUnsafe(html, options) +method +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtmlunsafe +1 +1 +ShadowRoot +- setHeaderValue(value) method service-workers @@ -14104,26 +16604,48 @@ DOMMatrix - setMediaKeys() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-setmediakeys 1 1 HTMLMediaElement - -setMediaKeys(mediaKeys) +setMediaKeys() method +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-htmlmediaelement-setmediakeys +1 1 +HTMLMediaElement +- +setMediaKeys(mediaKeys) +method +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-setmediakeys 1 1 HTMLMediaElement - +setMediaKeys(mediaKeys) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-htmlmediaelement-setmediakeys +1 +1 +HTMLMediaElement +- setMicrophoneActive(active) method mediasession @@ -14327,19 +16849,30 @@ method webrtc webrtc 1 -current -https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-setparameters +current +https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-setparameters +1 +1 +RTCRtpSender +- +setParameters(parameters) +method +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtcrtpsender-setparameters 1 1 RTCRtpSender - -setParameters(parameters) +setParameters(parameters, setParameterOptions) method webrtc webrtc 1 -snapshot -https://www.w3.org/TR/webrtc/#dom-rtcrtpsender-setparameters +current +https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-setparameters 1 1 RTCRtpSender @@ -14619,6 +17152,50 @@ https://wicg.github.io/scheduling-apis/#dom-taskcontroller-setpriority 1 TaskController - +setPriority(priority) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setpriority +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +setPrioritySignalsOverride(key) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setprioritysignalsoverride +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +setPrioritySignalsOverride(key, priority) +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupbiddingscriptrunnerglobalscope-setprioritysignalsoverride +1 +1 +InterestGroupBiddingScriptRunnerGlobalScope +- +setPrivateToken(privateToken) +method +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-xmlhttprequest-setprivatetoken +1 +1 +XMLHttpRequest +- setProperty(property, value) method cssom-1 @@ -14691,7 +17268,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-setrangetext +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea%2Finput-setrangetext 1 1 HTMLInputElement @@ -14785,6 +17362,28 @@ https://www.w3.org/TR/webrtc/#dom-peerconnection-setremotedescription 1 RTCPeerConnection - +setReportEventDataForAutomaticBeacons() +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fence-setreporteventdataforautomaticbeacons +1 +1 +Fence +- +setReportEventDataForAutomaticBeacons(event) +method +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fence-setreporteventdataforautomaticbeacons +1 +1 +Fence +- setRequestHeader(name, value) method xhr @@ -14906,6 +17505,28 @@ https://www.w3.org/TR/webgpu/#dom-gpurenderpassencoder-setscissorrect 1 GPURenderPassEncoder - +setScreenshareActive(active) +method +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasession-setscreenshareactive +1 +1 +MediaSession +- +setScreenshareActive(active) +method +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasession-setscreenshareactive +1 +1 +MediaSession +- setSeconds(sec, ms) method ecmascript @@ -14923,7 +17544,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-setselectionrange +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea%2Finput-setselectionrange 1 1 HTMLInputElement @@ -14931,9 +17552,31 @@ HTMLTextAreaElement - setServerCertificate() method +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dom-mediakeys-setservercertificate +1 +1 +MediaKeys +- +setServerCertificate() +method +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys-setservercertificate 1 +1 +MediaKeys +- +setServerCertificate(serverCertificate) +method +encrypted-media-2 +encrypted-media +2 current https://w3c.github.io/encrypted-media/#dom-mediakeys-setservercertificate 1 @@ -14942,14 +17585,25 @@ MediaKeys - setServerCertificate(serverCertificate) method +encrypted-media-2 encrypted-media -encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeys-setservercertificate +1 +1 +MediaKeys +- +setSharedStorageContext(contextString) +method +fenced-frame +fenced-frame 1 current -https://w3c.github.io/encrypted-media/#dom-mediakeys-setservercertificate +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-setsharedstoragecontext 1 1 -MediaKeys +FencedFrameConfig - setSignals() method @@ -15116,6 +17770,17 @@ https://dom.spec.whatwg.org/#dom-range-setstartbefore 1 Range - +setStatus(status) +method +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-navigatorlogin-setstatus +1 +1 +NavigatorLogin +- setStdDeviation(stdDeviationX, stdDeviationY) method filter-effects-1 @@ -15644,6 +18309,60 @@ https://www.w3.org/TR/webgpu/#gpubindingcommandsmixin-setbindgroup 1 GPUBindingCommandsMixin - +setdelayenabled +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#setdelayenabled + +1 +- +sethtml +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-element-sethtml%E2%91%A0 +1 +1 +DOM/Element +- +sethtml +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtml%E2%91%A0 +1 +1 +DOM/ShadowRoot +- +sethtmlunsafe +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-element-sethtmlunsafe%E2%91%A0 +1 +1 +DOM/Element +- +sethtmlunsafe +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#dom-shadowroot-sethtmlunsafe%E2%91%A0 +1 +1 +DOM/ShadowRoot +- setidentityprovider dfn webrtc-identity @@ -15686,28 +18405,6 @@ https://webidl.spec.whatwg.org/#dfn-setlike-declaration 1 1 - -setmediakeys -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-htmlmediaelement-setmediakeys - -1 -htmlmediaelement -- -setmediakeys() -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-htmlmediaelement-setmediakeys - -1 -htmlmediaelement -- setminpinlength dfn fido-v2.1 @@ -15719,37 +18416,26 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 getInfo - -setremotedescription +setparameters validation steps dfn -webrtc-identity -webrtc-identity -1 -snapshot -https://www.w3.org/TR/webrtc-identity/#dfn-setremotedescription - +webrtc +webrtc 1 -- -setservercertificate -dfn -encrypted-media -encrypted-media +current +https://w3c.github.io/webrtc-pc/#dfn-setparameters-validation-steps 1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeys-setservercertificate - 1 -mediakeys +RTCRtpSender - -setservercertificate() +setremotedescription dfn -encrypted-media -encrypted-media +webrtc-identity +webrtc-identity 1 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeys-setservercertificate +https://www.w3.org/TR/webrtc-identity/#dfn-setremotedescription 1 -mediakeys - setter dfn @@ -15773,6 +18459,17 @@ https://webidl.spec.whatwg.org/#setter-steps - setting dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-setting + +1 +badge +- +setting +dfn mediacapture-streams mediacapture-streams 1 @@ -15783,6 +18480,17 @@ https://w3c.github.io/mediacapture-main/#dfn-settings - setting dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-setting + +1 +badge +- +setting +dfn mediacapture-streams mediacapture-streams 1 @@ -15812,13 +18520,13 @@ https://www.w3.org/TR/webdriver2/#dfn-set-a-property 1 - setting a session description -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#set-description - +1 1 - setting a session description @@ -16099,6 +18807,26 @@ https://wicg.github.io/webusb/#dom-usbdevice-controltransferout-setup-data-setup USBDevice/controlTransferOut(setup, data) USBDevice/controlTransferOut(setup) - +setup cross-document view-transition +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#setup-cross-document-view-transition +1 +1 +- +setup cross-document view-transition +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#setup-cross-document-view-transition +1 +1 +- setup packet dfn webusb @@ -16107,6 +18835,16 @@ webusb current https://wicg.github.io/webusb/#setup-packet +1 +- +setup serviceworkerglobalscope +dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#setup-serviceworkerglobalscope%E2%91%A0 + 1 - setup stage @@ -16179,6 +18917,50 @@ https://www.w3.org/TR/css-view-transitions-1/#setup-view-transition 1 - +severity +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-severity + +1 +diagnostic +- +severity +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic-severity + +1 +diagnostic +- +severity_control_name +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-severity_control_name + +1 +syntax +- +severity_control_name +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-severity_control_name + +1 +syntax +- sex attr-value html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sh.data b/bikeshed/spec-data/readonly/anchors/anchors-sh.data index d23bf217cc..30314490a2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sh.data @@ -42,6 +42,17 @@ https://www.w3.org/TR/web-locks/#dom-lockmode-shared 1 LockMode - +"shared-storage-select-url" +enum-value +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencereportingdestination-shared-storage-select-url +1 +1 +FenceReportingDestination +- "sharedworker" enum-value fetch @@ -171,29 +182,59 @@ type css-shapes-1 css-shapes 1 +snapshot +https://www.w3.org/TR/css-shapes-1/#typedef-shape-radius +1 +1 +- +<shape> +type +css22 +css +1 current -https://drafts.csswg.org/css-shapes-1/#typedef-shape-radius +https://drafts.csswg.org/css2/#value-def-shape 1 1 - -<shape-radius> +<shape> type -css-shapes-1 -css-shapes +css2 +css 1 -snapshot -https://www.w3.org/TR/css-shapes-1/#typedef-shape-radius +current +https://www.w3.org/TR/CSS21/visufx.html#value-def-shape 1 1 - <shape> type -css22 +css2 css 1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#value-def-shape +1 +1 +- +<share> +dfn +mathml4 +mathml +4 current -https://drafts.csswg.org/css2/#value-def-shape +https://w3c.github.io/mathml/#contm_share + 1 +- +<share> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_share + 1 - SHOW_ALL @@ -419,7 +460,17 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer-obj 1 1 - -SharedArrayBuffer(length) +SharedArrayBuffer +interface +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#idl-SharedArrayBuffer +1 +1 +- +SharedArrayBuffer(length, options) constructor ecmascript ecmascript @@ -430,6 +481,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer-len 1 SharedArrayBuffer - +SharedDataBlockEventSet +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-sharedatablockeventset +1 +1 +- SharedDataBlockEventSet(execution) abstract-op ecmascript @@ -440,6 +501,106 @@ https://tc39.es/ecma262/multipage/memory-model.html#sec-sharedatablockeventset 1 1 - +SharedStorage +interface +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorage +1 +1 +- +SharedStorageDataOrigin +enum +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#enumdef-sharedstoragedataorigin +1 +1 +- +SharedStoragePrivateAggregationConfig +dictionary +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-sharedstorageprivateaggregationconfig +1 +1 +- +SharedStorageResponse +typedef +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#typedefdef-sharedstorageresponse +1 +1 +- +SharedStorageRunOperationMethodOptions +dictionary +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dictdef-sharedstoragerunoperationmethodoptions +1 +1 +- +SharedStorageSetMethodOptions +dictionary +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dictdef-sharedstoragesetmethodoptions +1 +1 +- +SharedStorageUrlWithMetadata +dictionary +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dictdef-sharedstorageurlwithmetadata +1 +1 +- +SharedStorageWorklet +interface +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworklet +1 +1 +- +SharedStorageWorkletGlobalScope +interface +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworkletglobalscope +1 +1 +- +SharedStorageWorkletOptions +dictionary +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dictdef-sharedstorageworkletoptions +1 +1 +- SharedWorker interface html @@ -450,6 +611,28 @@ https://html.spec.whatwg.org/multipage/workers.html#sharedworker 1 1 - +SharedWorker +dict-member +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesstypes-sharedworker +1 +1 +StorageAccessTypes +- +SharedWorker(scriptURL) +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-sharedworker +1 +1 +StorageAccessHandle +- SharedWorker(scriptURL, options) constructor html @@ -461,6 +644,17 @@ https://html.spec.whatwg.org/multipage/workers.html#dom-sharedworker 1 SharedWorker - +SharedWorker(scriptURL, options) +method +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-sharedworker +1 +1 +StorageAccessHandle +- SharedWorkerGlobalScope interface html @@ -471,6 +665,16 @@ https://html.spec.whatwg.org/multipage/workers.html#sharedworkerglobalscope 1 1 - +SharedWorkerOptions +dictionary +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dictdef-sharedworkeroptions +1 +1 +- Should Trusted Type policy creation be blocked by Content Security Policy? abstract-op trusted-types @@ -553,6 +757,94 @@ https://www.w3.org/TR/web-share/#dfn-sharepromise 1 Navigator - +_shift_left +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_shift_left + +1 +syntax_sym +- +_shift_left +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_shift_left + +1 +syntax_sym +- +_shift_left_assign +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_shift_left_assign + +1 +syntax_sym +- +_shift_left_assign +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_shift_left_assign + +1 +syntax_sym +- +_shift_right +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_shift_right + +1 +syntax_sym +- +_shift_right +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_shift_right + +1 +syntax_sym +- +_shift_right_assign +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax_sym-_shift_right_assign + +1 +syntax_sym +- +_shift_right_assign +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax_sym-_shift_right_assign + +1 +syntax_sym +- sha-2 dfn sri @@ -833,6 +1125,16 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#shaders +1 +- +shadow color +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/canvas.html#concept-canvasshadowstyles-shadow-color + 1 - shadow host @@ -1174,44 +1476,190 @@ https://html.spec.whatwg.org/multipage/custom-elements.html#dom-elementinternals 1 ElementInternals - -shadows -dfn +shadowRoots +dict-member +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-caretpositionfrompointoptions-shadowroots +1 +1 +CaretPositionFromPointOptions +- +shadowRoots +dict-member html html 1 current -https://html.spec.whatwg.org/multipage/canvas.html#shadows - +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-gethtmloptions-shadowroots +1 1 +GetHTMLOptions - -shadows are only drawn if -dfn +shadowrootclonable +element-attr html html 1 current -https://html.spec.whatwg.org/multipage/canvas.html#when-shadows-are-drawn - +https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootclonable +1 1 +template - -shall +shadowrootclonable dfn -css22 -css +html +html 1 current -https://drafts.csswg.org/css2/#shall +https://html.spec.whatwg.org/multipage/scripting.html#dom-template-shadowrootclonable 1 - -shall not -dfn -css22 -css +shadowrootdelegatesfocus +element-attr +html +html 1 current -https://drafts.csswg.org/css2/#shall-not - +https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootdelegatesfocus +1 +1 +template +- +shadowrootdelegatesfocus +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#dom-template-shadowrootdelegatesfocus + +1 +- +shadowrootmode +element-attr +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootmode +1 +1 +template +- +shadowrootmode +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#dom-template-shadowrootmode + +1 +- +shadowrootserializable +element-attr +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootserializable +1 +1 +template +- +shadowrootserializable +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/scripting.html#dom-template-shadowrootserializable + +1 +- +shadows +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/canvas.html#shadows + +1 +- +shadows are only drawn if +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/canvas.html#when-shadows-are-drawn + +1 +- +shall +dfn +css22 +css +1 +current +https://drafts.csswg.org/css2/#shall + +1 +- +shall +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x3 +1 +1 +- +shall +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x3 +1 +1 +- +shall not +dfn +css22 +css +1 +current +https://drafts.csswg.org/css2/#shall-not + +1 +- +shall not +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x4 +1 +1 +- +shall not +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x4 +1 1 - shape @@ -1270,6 +1718,17 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-a-shape HTMLAnchorElement - shape +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#mloperand-shape + +1 +MLOperand +- +shape descriptor css-round-display-1 css-round-display @@ -1280,6 +1739,17 @@ https://www.w3.org/TR/css-round-display-1/#descdef-media-shape 1 @media - +shape +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mloperand-shape + +1 +MLOperand +- shape a stretchy glyph dfn mathml-core @@ -1330,6 +1800,28 @@ https://drafts.csswg.org/css-shapes-2/#funcdef-shape 1 1 - +shape() +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperand-shape +1 +1 +MLOperand +- +shape() +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperand-shape +1 +1 +MLOperand +- shape-image-threshold property css-shapes-1 @@ -1509,6 +2001,126 @@ snapshot https://www.w3.org/TR/SVG2/text.html#ShapesubtractProperty 1 1 +- +shaped border edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#shaped-edge +1 +1 +- +shaped border edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#shaped-edge +1 +1 +- +shaped content edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#shaped-edge +1 +1 +- +shaped content edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#shaped-edge +1 +1 +- +shaped edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#shaped-edge +1 +1 +- +shaped edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#shaped-edge +1 +1 +- +shaped margin edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#shaped-edge +1 +1 +- +shaped margin edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#shaped-edge +1 +1 +- +shaped padding edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#shaped-edge +1 +1 +- +shaped padding edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#shaped-edge +1 +1 +- +shaping +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-shaping +1 + +- +shaping +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-shaping +1 + - shaping of the glyph assembly dfn @@ -1625,6 +2237,17 @@ https://w3c.github.io/web-share-target/#dfn-share_target 1 manifest - +shared +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardaccessmode-shared +1 +1 +SmartCardAccessMode +- shared alignment context dfn css-align-3 @@ -1715,7 +2338,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push/replace-state-steps +https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push%2Freplace-state-steps 1 - @@ -1729,6 +2352,7 @@ https://wicg.github.io/attribution-reporting-api/#aggregatable-report-shared-inf 1 aggregatable report +aggregatable attribution report - shared lock count dfn @@ -1751,6 +2375,108 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 - +shared storage +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage + +1 +- +shared storage bucket +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-bucket + +1 +- +shared storage database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database + +1 +- +shared storage database queue +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-shared-storage-database-queue + +1 +shared storage database +- +shared storage navigation budget charged +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-navigation-budget-charged + + +- +shared storage navigation budget table +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-navigation-budget-table + +1 +- +shared storage reporting budget +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-reporting-budget + +1 +- +shared storage reporting budget charged +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-reporting-budget-charged + + +- +shared storage shed +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-shed + +1 +- +shared storage writable +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#request-shared-storage-writable + +1 +request +- shared utf-16 decoder dfn encoding @@ -1787,31 +2513,172 @@ service-workers service-workers 1 current -https://w3c.github.io/ServiceWorker/#dfn-sharedworker-client -1 +https://w3c.github.io/ServiceWorker/#dfn-sharedworker-client +1 +1 +service worker client +- +shared worker client +dfn +service-workers +service-workers +1 +snapshot +https://www.w3.org/TR/service-workers/#dfn-sharedworker-client +1 +1 +service worker client +- +shared worker manager +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/workers.html#shared-worker-manager + +1 +- +shared-storage +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#permissionspolicy-shared-storage + +1 +PermissionsPolicy +- +shared-storage-cross-origin-worklet-allowed +http-header +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-cross-origin-worklet-allowed +1 +1 +- +shared-storage-select-url +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#permissionspolicy-shared-storage-select-url + +1 +PermissionsPolicy +- +shared-storage-write +http-header +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-write +1 +1 +- +sharedStorage +attribute +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworkletglobalscope-sharedstorage +1 +1 +SharedStorageWorkletGlobalScope +- +sharedStorage +attribute +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-window-sharedstorage +1 +1 +Window +- +sharedStorageWritable +attribute +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-htmlsharedstoragewritableelementutils-sharedstoragewritable +1 +1 +HTMLSharedStorageWritableElementUtils +- +sharedStorageWritable +dict-member +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-requestinit-sharedstoragewritable +1 +1 +RequestInit +- +sharedstorage getter +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#sharedstorageworkletglobalscope-sharedstorage-getter + +1 +SharedStorageWorkletGlobalScope +- +sharedstorage getter +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#window-sharedstorage-getter + +1 +Window +- +sharedstoragecontext +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-sharedstoragecontext + 1 -service worker client +fencedframeconfig - -shared worker client -dfn -service-workers -service-workers +sharedstoragewritable +element-attr +shared-storage +shared-storage 1 -snapshot -https://www.w3.org/TR/service-workers/#dfn-sharedworker-client +current +https://wicg.github.io/shared-storage/#element-attrdef-iframe-sharedstoragewritable 1 1 -service worker client +iframe - -shared worker manager -dfn -html -html +sharedstoragewritable +element-attr +shared-storage +shared-storage 1 current -https://html.spec.whatwg.org/multipage/workers.html#shared-worker-manager - +https://wicg.github.io/shared-storage/#element-attrdef-img-sharedstoragewritable +1 1 +img - shares dfn @@ -1822,16 +2689,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-shares -- -shares -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-shares - -1 - sharetarget dfn @@ -1853,6 +2710,17 @@ https://w3c.github.io/web-share-target/#dfn-sharetargetparams 1 - +sharing-violation +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-sharing-violation +1 +1 +SmartCardResponseCode +- sharpness dict-member image-capture @@ -1973,6 +2841,26 @@ https://drafts.csswg.org/cssom-1/#dom-linkstyle-sheet LinkStyle - sheet +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#x0 +1 +1 +- +sheet +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#x0 +1 +1 +- +sheet attribute cssom-1 cssom @@ -1991,6 +2879,26 @@ css current https://drafts.csswg.org/css2/#sheets +1 +- +shift flag +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#shift-flag + +1 +- +shift flag +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#shift-flag + 1 - shift() @@ -2400,6 +3308,88 @@ output/autocomplete select/autocomplete textarea/autocomplete - +shipping +enum-value +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentshippingtype-shipping +1 +1 +PaymentShippingType +- +shipping +enum-value +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-shipping +1 +1 +PaymentShippingType +- +shipping address +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-shipping-address + +1 +- +shipping address +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-shipping-address + +1 +- +shipping address changed algorithm +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-shipping-address-changed-algorithm + +1 +- +shipping address changed algorithm +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-shipping-address-changed-algorithm + +1 +- +shipping option changed algorithm +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-shipping-option-changed-algorithm + +1 +- +shipping option changed algorithm +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-shipping-option-changed-algorithm + +1 +- shippingAddress enum-value payment-handler @@ -2423,6 +3413,39 @@ https://w3c.github.io/payment-handler/#dom-paymenthandlerresponse-shippingaddres PaymentHandlerResponse - shippingAddress +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentrequest-shippingaddress +1 +1 +PaymentRequest +- +shippingAddress +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentresponse-shippingaddress +1 +1 +PaymentResponse +- +shippingAddress +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentvalidationerrors-shippingaddress +1 +1 +PaymentValidationErrors +- +shippingAddress enum-value payment-handler payment-handler @@ -2444,6 +3467,39 @@ https://www.w3.org/TR/payment-handler/#dom-paymenthandlerresponse-shippingaddres 1 PaymentHandlerResponse - +shippingAddress +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingaddress +1 +1 +PaymentRequest +- +shippingAddress +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse-shippingaddress +1 +1 +PaymentResponse +- +shippingAddress +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-shippingaddress +1 +1 +PaymentValidationErrors +- shippingAddressErrors dict-member payment-handler @@ -2457,6 +3513,17 @@ PaymentRequestDetailsUpdate - shippingAddressErrors dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentdetailsupdate-shippingaddresserrors +1 +1 +PaymentDetailsUpdate +- +shippingAddressErrors +dict-member payment-handler payment-handler 1 @@ -2466,6 +3533,17 @@ https://www.w3.org/TR/payment-handler/#dom-paymentrequestdetailsupdate-shippinga 1 PaymentRequestDetailsUpdate - +shippingAddressErrors +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-shippingaddresserrors +1 +1 +PaymentDetailsUpdate +- shippingOption dict-member payment-handler @@ -2478,6 +3556,28 @@ https://w3c.github.io/payment-handler/#dom-paymenthandlerresponse-shippingoption PaymentHandlerResponse - shippingOption +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentrequest-shippingoption +1 +1 +PaymentRequest +- +shippingOption +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentresponse-shippingoption +1 +1 +PaymentResponse +- +shippingOption dict-member payment-handler payment-handler @@ -2488,6 +3588,28 @@ https://www.w3.org/TR/payment-handler/#dom-paymenthandlerresponse-shippingoption 1 PaymentHandlerResponse - +shippingOption +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingoption +1 +1 +PaymentRequest +- +shippingOption +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentresponse-shippingoption +1 +1 +PaymentResponse +- shippingOptions dict-member payment-handler @@ -2523,6 +3645,17 @@ PaymentRequestEventInit - shippingOptions dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentdetailsbase-shippingoptions +1 +1 +PaymentDetailsBase +- +shippingOptions +dict-member payment-handler payment-handler 1 @@ -2553,6 +3686,101 @@ https://www.w3.org/TR/payment-handler/#dom-paymentrequesteventinit-shippingoptio 1 1 PaymentRequestEventInit +- +shippingOptions +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-shippingoptions +1 +1 +PaymentDetailsBase +- +shippingType +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentoptions-shippingtype +1 +1 +PaymentOptions +- +shippingType +attribute +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-paymentrequest-shippingtype +1 +1 +PaymentRequest +- +shippingType +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentoptions-shippingtype +1 +1 +PaymentOptions +- +shippingType +attribute +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingtype +1 +1 +PaymentRequest +- +shippingaddresschange +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-shippingaddresschange + + +- +shippingaddresschange +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-shippingaddresschange + + +- +shippingoptionchange +dfn +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dfn-shippingoptionchange + + +- +shippingoptionchange +dfn +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-shippingoptionchange + + - short interface @@ -2562,6 +3790,16 @@ webidl current https://webidl.spec.whatwg.org/#idl-short 1 +1 +- +short cooldown period +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#short-cooldown-period + 1 - short_circuit_and_expression @@ -2742,6 +3980,16 @@ url current https://url.spec.whatwg.org/#shorten-a-urls-path +1 +- +shortened local name +dfn +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#shortened-local-name + 1 - shorter @@ -2866,6 +4114,26 @@ https://drafts.csswg.org/css-cascade-5/#shorthand-property - shorthand property dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/about.html#x1 +1 +1 +- +shorthand property +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/about.html#x1 +1 +1 +- +shorthand property +dfn css-cascade-3 css-cascade 3 @@ -2902,6 +4170,26 @@ css current https://drafts.csswg.org/css2/#should +1 +- +should +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x5 +1 +1 +- +should +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x5 +1 1 - should add entry @@ -2920,7 +4208,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#should-add-performanceeventtiming +https://w3c.github.io/event-timing/#should-add-performanceeventtiming 1 1 - @@ -2932,26 +4220,6 @@ event-timing snapshot https://www.w3.org/TR/event-timing/#should-add-performanceeventtiming 1 -1 -- -should attribution be blocked by attribution rate limit -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#should-block-attribution-for-attribution-limit - -1 -- -should attribution be blocked by rate limits -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#should-block-attribution-for-rate-limits - 1 - should be rendered @@ -3032,6 +4300,16 @@ csp snapshot https://www.w3.org/TR/CSP3/#should-block-navigation-request 1 +1 +- +should navigation response to navigation request be blocked by permissions policy? +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#should-navigation-response-to-navigation-request-be-blocked-by-permissions-policy + 1 - should navigation response to navigation request of type in target be blocked by content security policy? @@ -3062,6 +4340,26 @@ css current https://drafts.csswg.org/css2/#should-not +1 +- +should not +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#x6 +1 +1 +- +should not +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#x6 +1 1 - should not initialize device tracking @@ -3084,24 +4382,24 @@ https://www.w3.org/TR/webxr/#should-not-initialize-device-tracking 1 - -should processing be blocked by reporting-endpoint limit +should processing be blocked by reporting-origin limit dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#should-block-processing-for-reporting-endpoint-limit +https://wicg.github.io/attribution-reporting-api/#should-block-processing-for-reporting-origin-limit 1 - -should reload page for critical client hints -abstract-op -client-hints-infrastructure -client-hints-infrastructure +should report first contentful paint +dfn +paint-timing +paint-timing 1 current -https://wicg.github.io/client-hints-infrastructure/#abstract-opdef-should-reload-page-for-critical-client-hints -1 +https://w3c.github.io/paint-timing/#should-report-first-contentful-paint + 1 - should report first contentful paint @@ -3109,8 +4407,8 @@ dfn paint-timing paint-timing 1 -current -https://w3c.github.io/paint-timing/#should-report-first-contentful-paint +snapshot +https://www.w3.org/TR/paint-timing/#should-report-first-contentful-paint 1 - @@ -3190,7 +4488,7 @@ fetch fetch 1 current -https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-mime-type? +https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-mime-type%3F 1 1 - @@ -3200,7 +4498,27 @@ fetch fetch 1 current -https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff? +https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff%3F + +1 +- +should restart loading the page for critical client hints +abstract-op +client-hints-infrastructure +client-hints-infrastructure +1 +current +https://wicg.github.io/client-hints-infrastructure/#abstract-opdef-should-restart-loading-the-page-for-critical-client-hints +1 +1 +- +should send a report unconditionally +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#should-send-a-report-unconditionally 1 - @@ -3246,33 +4564,54 @@ https://fullscreen.spec.whatwg.org/#dom-fullscreennavigationui-show 1 FullscreenNavigationUI - -show popover +show +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-show +1 +1 +html-global/popovertargetaction +- +show dfn html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#show-popover +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-show-state 1 - -show poster flag +show an idp login dialog +dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#show-an-idp-login-dialog + +1 +- +show popover dfn html html 1 current -https://html.spec.whatwg.org/multipage/media.html#show-poster-flag +https://html.spec.whatwg.org/multipage/popover.html#show-popover 1 - -show steps +show poster flag dfn -notifications -notifications +html +html 1 current -https://notifications.spec.whatwg.org/#show-steps +https://html.spec.whatwg.org/multipage/media.html#show-poster-flag 1 - @@ -3282,17 +4621,28 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#show-the-picker,-if-applicable +https://html.spec.whatwg.org/multipage/input.html#show-the-picker%2C-if-applicable 1 - -show view-transition root pseudo-element +show view transition tree dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#document-show-view-transition-root-pseudo-element +https://drafts.csswg.org/css-view-transitions-1/#document-show-view-transition-tree + +1 +document +- +show view transition tree +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#document-show-view-transition-tree 1 document @@ -3310,7 +4660,7 @@ HTMLDialogElement - show() method -payment-request-1.1 +payment-request payment-request 1 current @@ -3332,11 +4682,11 @@ VirtualKeyboard - show() method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-show +https://www.w3.org/TR/payment-request/#dom-paymentrequest-show 1 1 PaymentRequest @@ -3354,7 +4704,7 @@ VirtualKeyboard - show(detailsPromise) method -payment-request-1.1 +payment-request payment-request 1 current @@ -3365,11 +4715,11 @@ PaymentRequest - show(detailsPromise) method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-show +https://www.w3.org/TR/payment-request/#dom-paymentrequest-show 1 1 PaymentRequest @@ -3484,6 +4834,17 @@ https://html.spec.whatwg.org/multipage/input.html#dom-input-showpicker 1 HTMLInputElement - +showPicker() +method +html +html +1 +current +https://html.spec.whatwg.org/multipage/input.html#dom-select-showpicker +1 +1 +HTMLSelectElement +- showPopover() method html @@ -3518,14 +4879,15 @@ https://wicg.github.io/file-system-access/#dom-window-showsavefilepicker Window - showing -dfn +enum-value html html 1 current https://html.spec.whatwg.org/multipage/media.html#dom-texttrack-showing - 1 +1 +TextTrackMode - showing dfn @@ -3548,6 +4910,16 @@ https://html.spec.whatwg.org/multipage/popover.html#popover-showing-state 1 popover visibility state - +showing auto popover list +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#auto-popover-list + +1 +- shown dfn miniapp-lifecycle @@ -3614,6 +4986,16 @@ https://www.w3.org/TR/miniapp-lifecycle/#dom-pagestate-shown PageState - +shuffle a list +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#shuffle-a-list + +1 +- shut down the session dfn webxr diff --git a/bikeshed/spec-data/readonly/anchors/anchors-si.data b/bikeshed/spec-data/readonly/anchors/anchors-si.data index cfae38f970..ef562d1404 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-si.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-si.data @@ -18,6 +18,50 @@ https://wicg.github.io/webhid/#dfn-si-rotation 1 - +"sigmoid" +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlrecurrentnetworkactivation-sigmoid +1 +1 +MLRecurrentNetworkActivation +- +"sigmoid" +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlrecurrentnetworkactivation-sigmoid +1 +1 +MLRecurrentNetworkActivation +- +"signin" +enum-value +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredentialrequestoptionscontext-signin +1 +1 +IdentityCredentialRequestOptionsContext +- +"signup" +enum-value +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredentialrequestoptionscontext-signup +1 +1 +IdentityCredentialRequestOptionsContext +- "silent" enum-value credential-management-1 @@ -29,6 +73,17 @@ https://w3c.github.io/webappsec-credential-management/#dom-credentialmediationre 1 CredentialMediationRequirement - +"silent" +enum-value +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credentialmediationrequirement-silent +1 +1 +CredentialMediationRequirement +- "sine" enum-value webaudio @@ -389,6 +444,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#typedef-simple-selector 1 +1 +- +<sin/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_sin + +1 +- +<sin/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sin + 1 - <single-animation-composition> @@ -401,6 +476,16 @@ https://drafts.csswg.org/css-animations-2/#typedef-single-animation-composition 1 1 - +<single-animation-composition> +type +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#typedef-single-animation-composition +1 +1 +- <single-animation-direction> type css-animations-1 @@ -491,6 +576,16 @@ https://drafts.csswg.org/css-animations-2/#typedef-single-animation-timeline 1 1 - +<single-animation-timeline> +type +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#typedef-single-animation-timeline +1 +1 +- <single-animation> type css-animations-1 @@ -521,6 +616,16 @@ https://www.w3.org/TR/css-animations-1/#typedef-single-animation 1 1 - +<single-animation> +type +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#typedef-single-animation +1 +1 +- <single-transition-property> type css-transitions-1 @@ -553,6 +658,16 @@ https://drafts.csswg.org/css-transitions-1/#single-transition - <single-transition> type +css-transitions-2 +css-transitions +2 +current +https://drafts.csswg.org/css-transitions-2/#single-transition +1 +1 +- +<single-transition> +type css-transitions-1 css-transitions 1 @@ -561,47 +676,65 @@ https://www.w3.org/TR/css-transitions-1/#single-transition 1 1 - -<size-feature> +<single-transition> type -css-contain-3 -css-contain -3 +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#single-transition +1 +1 +- +<sinh/> +dfn +mathml4 +mathml +4 current -https://drafts.csswg.org/css-contain-3/#typedef-size-feature +https://w3c.github.io/mathml/#contm_sinh + 1 +- +<sinh/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sinh + 1 - <size-feature> type -css-contain-3 -css-contain -3 -snapshot -https://www.w3.org/TR/css-contain-3/#typedef-size-feature +css-conditional-5 +css-conditional +5 +current +https://drafts.csswg.org/css-conditional-5/#typedef-size-feature 1 1 - -<size> +<size-feature> type -css-images-3 -css-images -3 +css-conditional-5 +css-conditional +5 snapshot -https://www.w3.org/TR/css-images-3/#typedef-size +https://www.w3.org/TR/css-conditional-5/#typedef-size-feature 1 1 - -<size> -value -css-images-3 -css-images +<size-feature> +type +css-contain-3 +css-contain 3 snapshot -https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-size +https://www.w3.org/TR/css-contain-3/#typedef-size-feature 1 1 -radial-gradient() -repeating-radial-gradient() - <size> value @@ -614,6 +747,17 @@ https://www.w3.org/TR/motion-1/#valdef-offsetpath-size 1 offsetpath - +[[SignalingState]] +attribute +webrtc +webrtc +1 +current +https://w3c.github.io/webrtc-pc/#dfn-signalingstate + +1 +RTCPeerConnection +- [[SinkId]] attribute audio-output @@ -637,15 +781,15 @@ https://www.w3.org/TR/audio-output/#dfn-sinkid HTMLMediaElement - [[signal]] -dfn -streams -streams +attribute +web-smart-card +web-smart-card 1 current -https://streams.spec.whatwg.org/#writablestreamdefaultcontroller-signal +https://wicg.github.io/web-smart-card/#dfn-signal 1 -WritableStreamDefaultController +SmartCardContext - [[sink ID]] attribute @@ -658,28 +802,6 @@ https://webaudio.github.io/web-audio-api/#dom-audiocontext-sink-id-slot 1 AudioContext - -[[size]] -attribute -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gputexture-size-slot -1 -1 -GPUTexture -- -[[size]] -attribute -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gputexture-size-slot -1 -1 -GPUTexture -- si-linear enum-value webhid @@ -731,6 +853,46 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-rel-sibling +1 +- +sibling +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#sibling +1 +1 +- +sibling +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#sibling +1 +1 +- +sibling-count() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-sibling-count +1 +1 +- +sibling-index() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-sibling-index +1 1 - side @@ -757,11 +919,11 @@ textPath - sides value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-border-limit-sides +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-sides 1 1 border-limit @@ -960,6 +1122,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-sienna 1 1 <color> +<named-color> - sienna dfn @@ -981,30 +1144,31 @@ https://www.w3.org/TR/css-color-4/#valdef-color-sienna 1 1 <color> +<named-color> - -sigmoid() +sigmoid(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sigmoid%E2%91%A0 +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sigmoid 1 1 MLGraphBuilder - -sigmoid() +sigmoid(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid%E2%91%A0 +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid 1 1 MLGraphBuilder - -sigmoid(x) +sigmoid(input, options) method webnn webnn @@ -1015,7 +1179,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sigmoid 1 MLGraphBuilder - -sigmoid(x) +sigmoid(input, options) method webnn webnn @@ -1054,7 +1218,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-sign -1 + 1 - sign() @@ -1110,23 +1274,24 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.sign 1 Math - -sign-in -dfn -fedcm -fedcm -1 +signCount +abstract-op +webauthn-3 +webauthn +3 current -https://fedidcg.github.io/FedCM/#sign-in - +https://w3c.github.io/webauthn/#abstract-opdef-credential-record-signcount 1 +1 +credential record - signCount abstract-op webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#abstract-opdef-credential-record-signcount +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-signcount 1 1 credential record @@ -1138,7 +1303,7 @@ dom 1 current https://dom.spec.whatwg.org/#abortcontroller-signal - +1 1 AbortController - @@ -1210,6 +1375,39 @@ Request - signal dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#dom-closewatcheroptions-signal +1 +1 +CloseWatcherOptions +- +signal +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-signal +1 +1 +NavigateEvent +- +signal +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-signal +1 +1 +NavigateEventInit +- +signal +dict-member streams streams 1 @@ -1355,25 +1553,25 @@ CredentialRequestOptions - signal dict-member -web-bluetooth -web-bluetooth +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration 1 current -https://webbluetoothcg.github.io/web-bluetooth/#dom-watchadvertisementsoptions-signal +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusencoderconfig-signal 1 1 -WatchAdvertisementsOptions +OpusEncoderConfig - signal dict-member -close-watcher -close-watcher +web-bluetooth +web-bluetooth 1 current -https://wicg.github.io/close-watcher/#dom-closewatcheroptions-signal +https://webbluetoothcg.github.io/web-bluetooth/#dom-watchadvertisementsoptions-signal 1 1 -CloseWatcherOptions +WatchAdvertisementsOptions - signal dict-member @@ -1398,37 +1596,48 @@ https://wicg.github.io/idle-detection/#dom-idleoptions-signal IdleOptions - signal -attribute -navigation-api -navigation-api +dict-member +scheduling-apis +scheduling-apis 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-signal +https://wicg.github.io/scheduling-apis/#dom-schedulerposttaskoptions-signal 1 1 -NavigateEvent +SchedulerPostTaskOptions - signal dict-member -navigation-api -navigation-api +turtledove +turtledove 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-signal +https://wicg.github.io/turtledove/#dom-auctionadconfig-signal 1 1 -NavigateEventInit +AuctionAdConfig - signal dict-member -scheduling-apis -scheduling-apis +web-smart-card +web-smart-card 1 current -https://wicg.github.io/scheduling-apis/#dom-schedulerposttaskoptions-signal +https://wicg.github.io/web-smart-card/#dom-smartcardgetstatuschangeoptions-signal 1 1 -SchedulerPostTaskOptions +SmartCardGetStatusChangeOptions +- +signal +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardtransactionoptions-signal +1 +1 +SmartCardTransactionOptions - signal dict-member @@ -1485,6 +1694,17 @@ https://www.w3.org/TR/web-locks/#lock-request-signal 1 lock request - +signal +dict-member +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusencoderconfig-signal +1 +1 +OpusEncoderConfig +- signal a slot change dfn dom @@ -1511,18 +1731,29 @@ dom dom 1 current -https://dom.spec.whatwg.org/#abortsignal-signal-abort +https://dom.spec.whatwg.org/#abortcontroller-signal-abort 1 +1 +AbortController +- +signal abort +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#abortsignal-signal-abort + 1 AbortSignal - -signal close watchers +signal base value dfn -close-watcher -close-watcher +private-aggregation-api +private-aggregation-api 1 current -https://wicg.github.io/close-watcher/#signal-close-watchers +https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value 1 - @@ -1565,16 +1796,6 @@ web-locks snapshot https://www.w3.org/TR/web-locks/#signal-to-abort-the-request -1 -- -signaling state -dfn -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dfn-signaling-state - 1 - signaling state @@ -1621,14 +1842,49 @@ https://w3c.github.io/webrtc-pc/#event-signalingstatechange RTCPeerConnection - signalingstatechange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-signalingstatechange +1 +RTCPeerConnection +- +signals +argument +dom +dom +1 +current +https://dom.spec.whatwg.org/#dom-abortsignal-any-signals-signals +1 +1 +AbortSignal/any(signals) +- +signals +argument +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#dom-tasksignal-any-signals-init-signals +1 +1 +TaskSignal/any(signals, init) +TaskSignal/any(signals) +- +signals-fetch-time +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value-signals-fetch-time +1 +signal base value - signature dfn @@ -1651,17 +1907,6 @@ https://w3c.github.io/miniapp-packaging/#dfn-signature 1 - signature -dict-member -webauthn-3 -webauthn -3 -current -https://w3c.github.io/webauthn/#dom-authenticationextensionsdevicepublickeyoutputs-signature -1 -1 -AuthenticationExtensionsDevicePublicKeyOutputs -- -signature attribute webauthn-3 webauthn @@ -1685,6 +1930,17 @@ AuthenticatorAssertionResponseJSON - signature dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#signed-additional-bid-signature-signature + +1 +signed additional bid signature +- +signature +dfn webpackage webpackage 1 @@ -1715,6 +1971,17 @@ https://www.w3.org/TR/miniapp-packaging/#dfn-signature 1 - signature +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsdevicepublickeyoutputs-signature +1 +1 +AuthenticationExtensionsDevicePublicKeyOutputs +- +signature attribute webauthn-3 webauthn @@ -1725,6 +1992,17 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponse-signature 1 AuthenticatorAssertionResponse - +signature +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponsejson-signature +1 +1 +AuthenticatorAssertionResponseJSON +- signature counter dfn webauthn-3 @@ -1835,7 +2113,18 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#signcount +https://www.w3.org/TR/webauthn-3/#authdata-signcount + +1 +authData +- +signed additional bid signature +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#signed-additional-bid-signature 1 - @@ -1880,6 +2169,28 @@ https://wicg.github.io/webpackage/loading.html#signed-message 1 - +signed zero +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#css-signed-zero +1 +1 +CSS +- +signed zero +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#css-signed-zero +1 +1 +CSS +- significant dfn wgsl @@ -1902,6 +2213,26 @@ https://www.w3.org/TR/WGSL/#mantissa-significant 1 mantissa - +significant change in orientation +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#significant-change-in-orientation + +1 +- +significant change in orientation +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#significant-change-in-orientation + +1 +- significant version dfn ua-client-hints @@ -2086,34 +2417,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-silentconcealedsamples -1 - -RTCMediaStreamTrackStats -- -silentConcealedSamples -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-silentconcealedsamples 1 1 RTCInboundRtpStreamStats - -silentConcealedSamples -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-silentconcealedsamples -1 - -RTCMediaStreamTrackStats -- silentcredentialdiscovery dfn webauthn-3 @@ -2122,6 +2431,16 @@ webauthn current https://w3c.github.io/webauthn/#silentcredentialdiscovery +1 +- +silentcredentialdiscovery +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#silentcredentialdiscovery + 1 - silently set the current time @@ -2156,6 +2475,16 @@ https://www.w3.org/TR/web-animations-1/#animation-silently-set-the-current-time 1 animation - +silently set the current time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#silently-set-the-current-time + +1 +- silver dfn css-color-3 @@ -2176,6 +2505,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-silver 1 1 <color> +<named-color> - silver value @@ -2208,6 +2538,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-silver 1 1 <color> +<named-color> - similar-origin window agent dfn @@ -2313,16 +2644,6 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#simple-colour -1 -- -simple entailment -dfn -rdf12-semantics -rdf-semantics -1 -current -https://w3c.github.io/rdf-semantics/spec/#dfn-entail - 1 - simple exception @@ -2373,6 +2694,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-simply-entail +1 +- +simple interpretation +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-simply-entail + 1 - simple iteration progress @@ -2405,6 +2736,16 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-simple-literal 1 1 - +simple literal +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-simple-literal +1 +1 +- simple literals dfn rdf12-concepts @@ -2415,6 +2756,16 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-simple-literal 1 1 - +simple literals +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-simple-literal +1 +1 +- simple nominal range dfn webaudio @@ -2487,6 +2838,26 @@ https://drafts.csswg.org/selectors-4/#simple - simple selector dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#simple-selector +1 +1 +- +simple selector +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#simple-selector +1 +1 +- +simple selector +dfn selectors-3 selectors 3 @@ -2615,6 +2986,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-simply-entail +1 +- +simply entail +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-simply-entail + 1 - simulcast envelope @@ -2657,18 +3038,29 @@ https://www.w3.org/TR/css-values-4/#funcdef-sin 1 1 - -sin(x) +sin(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.sin +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sin 1 1 -Math +MLGraphBuilder - -sin(x) +sin(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin +1 +1 +MLGraphBuilder +- +sin(input, options) method webnn webnn @@ -2679,7 +3071,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sin 1 MLGraphBuilder - -sin(x) +sin(input, options) method webnn webnn @@ -2690,6 +3082,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin 1 MLGraphBuilder - +sin(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.sin +1 +1 +Math +- sine enum-value webaudio @@ -2760,6 +3163,16 @@ webauthn current https://w3c.github.io/webauthn/#single-device-credential +1 +- +single-device credential +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#single-device-credential + 1 - single-dot url path segment @@ -2985,17 +3398,6 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dom-trackingexdata-site TrackingExData - -site -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata-site - -1 -trackingexdata -- site domain dfn tracking-dnt @@ -3005,16 +3407,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-site-domain -- -site domain -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-site-domain - -1 - site-specific dfn @@ -3025,16 +3417,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-site-specific -- -site-specific -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-site-specific - -1 - site-triggered install prompt dfn @@ -3055,16 +3437,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-site-wide-tracking-status-resource -- -site-wide tracking status resource -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-site-wide-tracking-status-resource - -1 - six-bit decimal value dfn @@ -3090,6 +3462,17 @@ StylePropertyMap - size value +css-conditional-5 +css-conditional +5 +current +https://drafts.csswg.org/css-conditional-5/#valdef-container-type-size +1 +1 +container-type +- +size +value css-contain-1 css-contain 1 @@ -3111,17 +3494,6 @@ https://drafts.csswg.org/css-contain-2/#valdef-contain-size contain - size -value -css-contain-3 -css-contain -3 -current -https://drafts.csswg.org/css-contain-3/#valdef-container-type-size -1 -1 -container-type -- -size descriptor css-page-3 css-page @@ -3143,6 +3515,28 @@ https://drafts.csswg.org/css-sizing-3/#size 1 - size +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-calc-size-size +1 +1 +calc-size() +- +size +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-csspagedescriptors-size +1 +1 +CSSPageDescriptors +- +size dict-member fedcm fedcm @@ -3319,6 +3713,17 @@ https://gpuweb.github.io/gpuweb/wgsl/#attribute-size attribute - size +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#texture-size + +1 +texture +- +size element-attr html html @@ -3521,9 +3926,9 @@ Blob - size attribute +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap-size 1 @@ -3547,9 +3952,10 @@ largest-contentful-paint largest-contentful-paint 1 current -https://w3c.github.io/largest-contentful-paint/#size +https://w3c.github.io/largest-contentful-paint/#largestcontentfulpaint-size 1 +LargestContentfulPaint - size attribute @@ -3563,15 +3969,26 @@ https://w3c.github.io/webvtt/#dom-vttcue-size VTTCue - size -dict-member -webnn -webnn +dfn +fenced-frame +fenced-frame 1 current -https://webmachinelearning.github.io/webnn/#dom-mlbufferresourceview-size +https://wicg.github.io/fenced-frame/#fencedframetype-size 1 1 -MLBufferResourceView +fencedframetype +- +size +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-descriptor-size + +1 +ad descriptor - size attribute @@ -3596,6 +4013,28 @@ https://www.w3.org/TR/WGSL/#attribute-size attribute - size +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#texture-size + +1 +texture +- +size +value +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#valdef-container-type-size +1 +1 +container-type +- +size value css-contain-1 css-contain @@ -3659,29 +4098,18 @@ https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymapreadonly-size 1 1 StylePropertyMapReadOnly -- -size -attribute -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymapreadonly-size%E2%91%A0 -1 -1 -StylePropertyMapReadonly StylePropertyMap - size -dfn -encrypted-media +attribute +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatusmap-size - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatusmap-size +1 1 -mediakeystatusmap +MediaKeyStatusMap - size attribute @@ -3700,9 +4128,10 @@ largest-contentful-paint largest-contentful-paint 1 snapshot -https://www.w3.org/TR/largest-contentful-paint/#size +https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-size 1 +LargestContentfulPaint - size argument @@ -3837,17 +4266,6 @@ https://www.w3.org/TR/webgpu/#dom-gputexturedescriptor-size GPUTextureDescriptor - size -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlbufferresourceview-size -1 -1 -MLBufferResourceView -- -size attribute webvtt1 webvtt @@ -3951,11 +4369,21 @@ https://www.w3.org/TR/css-contain-2/#size-containment-box - size features dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#size-features +https://drafts.csswg.org/css-conditional-5/#size-features + +1 +- +size features +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#size-features 1 - @@ -3969,6 +4397,28 @@ https://www.w3.org/TR/css-contain-3/#size-features 1 - +size group +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-ad-size-group + +1 +interest group ad +- +size groups +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-size-groups + +1 +interest group +- size record dfn web-nfc @@ -4001,6 +4451,50 @@ https://www.w3.org/TR/css-fonts-5/#descdef-font-face-size-adjust 1 @font-face - +sizeGroup +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionad-sizegroup +1 +1 +AuctionAd +- +sizeGroups +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-sizegroups +1 +1 +GenerateBidInterestGroup +- +size_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-size_attr + +1 +syntax +- +size_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-size_attr + +1 +syntax +- sizealgorithm dfn streams @@ -4172,7 +4666,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-slice-input-start 1 1 MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) - sizes dict-member @@ -4228,7 +4721,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options 1 1 MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) - sizes dict-member diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sk.data b/bikeshed/spec-data/readonly/anchors/anchors-sk.data index cdc6a08383..bc30e8fe48 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sk.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sk.data @@ -449,6 +449,39 @@ https://html.spec.whatwg.org/multipage/webappapis.html#skip-when-determining-inc 1 - +skipObservation +dict-member +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-browsingtopicsoptions-skipobservation +1 +1 +BrowsingTopicsOptions +- +skipRendering +attribute +webxr +webxr +1 +current +https://immersive-web.github.io/webxr/#dom-xrinputsource-skiprendering +1 +1 +XRInputSource +- +skipRendering +attribute +webxr +webxr +1 +snapshot +https://www.w3.org/TR/webxr/#dom-xrinputsource-skiprendering +1 +1 +XRInputSource +- skipTransition() method css-view-transitions-1 @@ -640,6 +673,16 @@ https://w3c.github.io/rdf-concepts/spec/#dfn-skolem-iri 1 1 - +skolem iri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-skolem-iri +1 +1 +- skolemization dfn rdf12-semantics @@ -647,7 +690,17 @@ rdf-semantics 1 current https://w3c.github.io/rdf-semantics/spec/#dfn-skolemization + + +- +skolemization +dfn +rdf12-semantics +rdf-semantics 1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-skolemization + - skyblue @@ -670,6 +723,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-skyblue 1 1 <color> +<named-color> - skyblue dfn @@ -691,4 +745,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-skyblue 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sl.data b/bikeshed/spec-data/readonly/anchors/anchors-sl.data index f40c766be7..f86a2bd12f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sl.data @@ -90,6 +90,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-slateblue 1 1 <color> +<named-color> - slateblue dfn @@ -111,6 +112,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-slateblue 1 1 <color> +<named-color> - slategray dfn @@ -132,6 +134,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-slategray 1 1 <color> +<named-color> - slategray dfn @@ -153,6 +156,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-slategray 1 1 <color> +<named-color> - slategrey dfn @@ -174,6 +178,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-slategrey 1 1 <color> +<named-color> - slategrey dfn @@ -195,6 +200,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-slategrey 1 1 <color> +<named-color> - slice value @@ -374,7 +380,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.slice +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.slice 1 1 %TypedArray% @@ -504,17 +510,6 @@ value css-ui-4 css-ui 4 -current -https://drafts.csswg.org/css-ui-4/#valdef-appearance-slider-horizontal -1 -1 -appearance -- -slider-horizontal -value -css-ui-4 -css-ui -4 snapshot https://www.w3.org/TR/css-ui-4/#valdef-appearance-slider-horizontal 1 @@ -544,6 +539,17 @@ https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomponenttransfer-sl feComponentTransfer - slope +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-prelu-input-slope-options-slope +1 +1 +MLGraphBuilder/prelu(input, slope, options) +- +slope attribute filter-effects-1 filter-effects @@ -565,6 +571,17 @@ https://www.w3.org/TR/filter-effects-1/#element-attrdef-fecomponenttransfer-slop 1 feComponentTransfer - +slope +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-options-slope +1 +1 +MLGraphBuilder/prelu(input, slope, options) +- slot dfn dom diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sm.data b/bikeshed/spec-data/readonly/anchors/anchors-sm.data index c79dd7a007..c235d577a2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sm.data @@ -1,3 +1,25 @@ +"smart-card" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-authenticatortransport-smart-card +1 +1 +AuthenticatorTransport +- +"smart-card" +enum-value +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-smart-card +1 +1 +AuthenticatorTransport +- "smart-poster" dfn web-nfc @@ -226,6 +248,216 @@ https://www.w3.org/TR/webrtc-encoded-transform/#typedefdef-smallcryptokeyid 1 1 - +SmartCardAccessMode +enum +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardaccessmode +1 +1 +- +SmartCardConnectOptions +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectoptions +1 +1 +- +SmartCardConnectResult +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectresult +1 +1 +- +SmartCardConnection +interface +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection +1 +1 +- +SmartCardConnectionState +enum +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate +1 +1 +- +SmartCardConnectionStatus +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstatus +1 +1 +- +SmartCardContext +interface +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardcontext +1 +1 +- +SmartCardDisposition +enum +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarddisposition +1 +1 +- +SmartCardError +interface +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarderror +1 +1 +- +SmartCardErrorOptions +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarderroroptions +1 +1 +- +SmartCardGetStatusChangeOptions +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardgetstatuschangeoptions +1 +1 +- +SmartCardProtocol +enum +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardprotocol +1 +1 +- +SmartCardReaderStateFlagsIn +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin +1 +1 +- +SmartCardReaderStateFlagsOut +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout +1 +1 +- +SmartCardReaderStateIn +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstatein +1 +1 +- +SmartCardReaderStateOut +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateout +1 +1 +- +SmartCardResourceManager +interface +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresourcemanager +1 +1 +- +SmartCardResponseCode +enum +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode +1 +1 +- +SmartCardTransactionCallback +callback +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardtransactioncallback +1 +1 +- +SmartCardTransactionOptions +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardtransactionoptions +1 +1 +- +SmartCardTransmitOptions +dictionary +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardtransmitoptions +1 +1 +- small value css-shapes-2 @@ -475,6 +707,16 @@ https://www.w3.org/TR/css-fonts-4/#valdef-font-small-caption 1 font - +smart card task source +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-smart-card-task-source + +1 +- smart poster dfn web-nfc @@ -485,25 +727,38 @@ https://w3c.github.io/web-nfc/#dfn-smart-poster - -smart sensors +smart-card +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-authenticatortransport-smart-card +1 +1 +AuthenticatorTransport +- +smart-card dfn -generic-sensor -generic-sensor +web-smart-card +web-smart-card 1 current -https://w3c.github.io/sensors/#smart-sensors +https://wicg.github.io/web-smart-card/#dfn-smart-card 1 +policy-controlled feature - -smart sensors -dfn -generic-sensor -generic-sensor -1 +smart-card +enum-value +webauthn-3 +webauthn +3 snapshot -https://www.w3.org/TR/generic-sensor/#smart-sensors - +https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-smart-card 1 +1 +AuthenticatorTransport - smart-poster dfn @@ -515,6 +770,28 @@ https://w3c.github.io/web-nfc/#dfn-smart-poster-0 1 - +smartCard +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-navigator-smartcard +1 +1 +Navigator +- +smartCard +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-workernavigator-smartcard +1 +1 +WorkerNavigator +- smil element epub-33 @@ -689,10 +966,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dom-webtransportstats-smoothedrtt +https://w3c.github.io/webtransport/#dom-webtransportconnectionstats-smoothedrtt 1 1 -WebTransportStats +WebTransportConnectionStats - smoothedRtt dict-member @@ -700,10 +977,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-smoothedrtt +https://www.w3.org/TR/webtransport/#dom-webtransportconnectionstats-smoothedrtt 1 1 -WebTransportStats +WebTransportConnectionStats - smoothing over time dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sn.data b/bikeshed/spec-data/readonly/anchors/anchors-sn.data index b22ebe2883..a20b5addce 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sn.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sn.data @@ -96,6 +96,16 @@ https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped 1 1 - +:snapped +selector +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#selectordef-snapped +1 +1 +- :snapped-block selector css-scroll-snap-2 @@ -106,6 +116,16 @@ https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped-block 1 1 - +:snapped-block +selector +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#selectordef-snapped-block +1 +1 +- :snapped-inline selector css-scroll-snap-2 @@ -116,6 +136,16 @@ https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped-inline 1 1 - +:snapped-inline +selector +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#selectordef-snapped-inline +1 +1 +- :snapped-x selector css-scroll-snap-2 @@ -126,6 +156,16 @@ https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped-x 1 1 - +:snapped-x +selector +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#selectordef-snapped-x +1 +1 +- :snapped-y selector css-scroll-snap-2 @@ -136,6 +176,100 @@ https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped-y 1 1 - +:snapped-y +selector +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#selectordef-snapped-y +1 +1 +- +SnapEvent +interface +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#snapevent +1 +1 +- +SnapEvent +interface +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#snapevent +1 +1 +- +SnapEvent(type) +constructor +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +SnapEvent(type) +constructor +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +SnapEvent(type, eventInitDict) +constructor +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +SnapEvent(type, eventInitDict) +constructor +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snapevent +1 +1 +SnapEvent +- +SnapEventInit +dictionary +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dictdef-snapeventinit +1 +1 +- +SnapEventInit +dictionary +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dictdef-snapeventinit +1 +1 +- snap value css-images-4 @@ -158,6 +292,66 @@ https://www.w3.org/TR/css-images-4/#valdef-image-resolution-snap 1 image-resolution - +snap a length as a border width +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#snap-a-length-as-a-border-width +1 +1 +- +snap a length as a border width +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#snap-a-length-as-a-border-width +1 +1 +- +snap as a border width +dfn +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#snap-a-length-as-a-border-width +1 +1 +- +snap as a border width +dfn +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#snap-a-length-as-a-border-width +1 +1 +- +snap target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#snap-target +1 +1 +- +snap target +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#snap-target +1 +1 +- snap-block value css-page-floats-3 @@ -246,6 +440,94 @@ https://www.w3.org/TR/css-page-floats-3/#valdef-float-snap-inline-length--left-- 1 float - +snapTargetBlock +attribute +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snaptargetblock +1 +1 +SnapEvent +- +snapTargetBlock +dict-member +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapeventinit-snaptargetblock +1 +1 +SnapEventInit +- +snapTargetBlock +attribute +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snaptargetblock +1 +1 +SnapEvent +- +snapTargetBlock +dict-member +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapeventinit-snaptargetblock +1 +1 +SnapEventInit +- +snapTargetInline +attribute +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snaptargetinline +1 +1 +SnapEvent +- +snapTargetInline +dict-member +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapeventinit-snaptargetinline +1 +1 +SnapEventInit +- +snapTargetInline +attribute +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snaptargetinline +1 +1 +SnapEvent +- +snapTargetInline +dict-member +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapeventinit-snaptargetinline +1 +1 +SnapEventInit +- snapToLines attribute webvtt1 @@ -268,33 +550,63 @@ https://www.w3.org/TR/webvtt1/#dom-vttcue-snaptolines 1 VTTCue - -snapshot root +snapshot containing block dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#snapshot-root +https://drafts.csswg.org/css-view-transitions-1/#snapshot-containing-block 1 - -snapshot root origin +snapshot containing block +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#snapshot-containing-block + +1 +- +snapshot containing block origin dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#snapshot-root-origin +https://drafts.csswg.org/css-view-transitions-1/#snapshot-containing-block-origin 1 - -snapshot root size +snapshot containing block origin +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#snapshot-containing-block-origin + +1 +- +snapshot containing block size dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#snapshot-root-size +https://drafts.csswg.org/css-view-transitions-1/#snapshot-containing-block-size + +1 +- +snapshot containing block size +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#snapshot-containing-block-size 1 - @@ -358,26 +670,6 @@ web-locks snapshot https://www.w3.org/TR/web-locks/#snapshot-the-lock-state -1 -- -snapshot viewport -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#snapshot-viewport - -1 -- -snapshot viewport origin -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#snapshot-viewport-origin - 1 - snapshotItem(index) @@ -430,6 +722,16 @@ css-anchor-position current https://drafts.csswg.org/css-anchor-position-1/#snapshotted-scroll-offset +1 +- +snapshotted scroll offset +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#snapshotted-scroll-offset + 1 - sniff-scriptable flag @@ -482,6 +784,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-snow 1 1 <color> +<named-color> - snow dfn @@ -503,4 +806,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-snow 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-so.data b/bikeshed/spec-data/readonly/anchors/anchors-so.data index 93681007d6..aa518e9dfa 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-so.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-so.data @@ -28,7 +28,37 @@ https://html.spec.whatwg.org/multipage/images.html#source-size 1 1 - -SortIndexedProperties(obj, len, SortCompare) +SocketDnsQueryType +enum +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-socketdnsquerytype +1 +1 +- +SoftNavigationEntry +interface +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#softnavigationentry +1 +1 +- +SortIndexedProperties +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-sortindexedproperties +1 +1 +- +SortIndexedProperties(obj, len, SortCompare, holes) abstract-op ecmascript ecmascript @@ -210,86 +240,6 @@ https://www.w3.org/TR/webrtc/#dom-rtcicetcpcandidatetype-so 1 RTCIceTcpCandidateType - -socks authentication -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-authenticating - -1 -- -socks authentication -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-authenticating - -1 -- -socks proxy -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-socks-proxy - -1 -- -socks proxy -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-socks-proxy - -1 -- -socksproxy -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-socksproxy - -1 -- -socksproxy -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-socksproxy - -1 -- -socksversion -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-socksversion - -1 -- -socksversion -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-socksversion - -1 -- soft value css-speech-1 @@ -486,29 +436,29 @@ https://www.w3.org/TR/compositing-1/#valdef-blend-mode-soft-light 1 <blend-mode> - -softmax() +softmax(input, axis) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax%E2%91%A0 +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax 1 1 MLGraphBuilder - -softmax() +softmax(input, axis) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax%E2%91%A0 +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax 1 1 MLGraphBuilder - -softmax(x) +softmax(input, axis, options) method webnn webnn @@ -519,7 +469,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax 1 MLGraphBuilder - -softmax(x) +softmax(input, axis, options) method webnn webnn @@ -530,148 +480,159 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax 1 MLGraphBuilder - -softplus() +softplus(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus 1 1 MLGraphBuilder - -softplus() +softplus(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus 1 1 MLGraphBuilder - -softplus(options) +softplus(input, options) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-options +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus 1 1 MLGraphBuilder - -softplus(options) +softplus(input, options) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-options +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus 1 1 MLGraphBuilder - -softplus(x) +softsign(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign 1 1 MLGraphBuilder - -softplus(x) +softsign(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign 1 1 MLGraphBuilder - -softplus(x, options) +softsign(input, options) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign 1 1 MLGraphBuilder - -softplus(x, options) +softsign(input, options) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign 1 1 MLGraphBuilder - -softsign() -method -webnn -webnn +software +dict-member +webmidi +webmidi 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign%E2%91%A0 +https://webaudio.github.io/web-midi-api/#dom-midioptions-software 1 1 -MLGraphBuilder +MIDIOptions - -softsign() -method -webnn -webnn +software +dict-member +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign%E2%91%A0 +https://www.w3.org/TR/webmidi/#dom-midioptions-software 1 1 -MLGraphBuilder +MIDIOptions - -softsign(x) -method -webnn -webnn +software_extension_list +dfn +wgsl +wgsl 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign -1 +https://gpuweb.github.io/gpuweb/wgsl/#syntax-software_extension_list + 1 -MLGraphBuilder +syntax - -softsign(x) -method -webnn -webnn +software_extension_list +dfn +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign -1 +https://www.w3.org/TR/WGSL/#syntax-software_extension_list + 1 -MLGraphBuilder +syntax - -software -dict-member -webmidi -webmidi +software_extension_name +dfn +wgsl +wgsl 1 current -https://webaudio.github.io/web-midi-api/#dom-midioptions-software +https://gpuweb.github.io/gpuweb/wgsl/#syntax-software_extension_name + 1 +syntax +- +software_extension_name +dfn +wgsl +wgsl 1 -MIDIOptions +snapshot +https://www.w3.org/TR/WGSL/#syntax-software_extension_name + +1 +syntax - solid value @@ -718,6 +679,37 @@ border-left-style border-style - solid +enum-value +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-underlinestyle-solid +1 +1 +UnderlineStyle +- +solid +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-solid +1 +1 +- +solid +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-solid +1 +1 +- +solid value css-backgrounds-3 css-backgrounds @@ -775,18 +767,18 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato 1 - -some(callbackfn, thisArg) +some(callback, thisArg) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.some +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.some 1 1 %TypedArray% - -some(callbackfn, thisArg) +some(callback, thisArg) method ecmascript ecmascript @@ -945,18 +937,18 @@ https://url.spec.whatwg.org/#dom-urlsearchparams-sort 1 URLSearchParams - -sort(comparefn) +sort(comparator) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.sort +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.sort 1 1 %TypedArray% - -sort(comparefn) +sort(comparator) method ecmascript ecmascript @@ -967,16 +959,6 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.s 1 Array - -sortedintegerlist -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#sortedintegerlist - -1 -- sorting dfn infra @@ -1009,7 +991,7 @@ contact-picker 1 current https://w3c.github.io/contact-picker/#physical-address-sorting-code - +1 1 physical address - @@ -1020,7 +1002,7 @@ contact-picker 1 snapshot https://www.w3.org/TR/contact-picker/#physical-address-sorting-code - +1 1 physical address - @@ -1086,6 +1068,17 @@ https://w3c.github.io/contact-picker/#dom-contactaddress-sortingcode ContactAddress - sortingCode +dict-member +payment-request +payment-request +1 +current +https://w3c.github.io/payment-request/#dom-addresserrors-sortingcode +1 +1 +AddressErrors +- +sortingCode attribute contact-picker contact-picker @@ -1096,6 +1089,17 @@ https://www.w3.org/TR/contact-picker/#dom-contactaddress-sortingcode 1 ContactAddress - +sortingCode +dict-member +payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dom-addresserrors-sortingcode +1 +1 +AddressErrors +- sound dfn html @@ -1447,6 +1451,17 @@ https://w3c.github.io/ServiceWorker/#dom-extendablemessageeventinit-source ExtendableMessageEventInit - source +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routerrule-source +1 +1 +RouterRule +- +source attribute compute-pressure compute-pressure @@ -1468,13 +1483,13 @@ https://w3c.github.io/mediacapture-main/#dfn-source 1 - source -dfn +attribute mediasession mediasession 1 current -https://w3c.github.io/mediasession/#mediaimage-source - +https://w3c.github.io/mediasession/#dom-mediaimage-source +1 1 MediaImage - @@ -1651,10 +1666,13 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacefontface-source +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-fontface-family-source-descriptors-source 1 1 -FontFace/FontFace() +FontFace/FontFace(family, source, descriptors) +FontFace/constructor(family, source, descriptors) +FontFace/FontFace(family, source) +FontFace/constructor(family, source) - source dfn @@ -1677,13 +1695,13 @@ https://www.w3.org/TR/mediacapture-streams/#dfn-source 1 - source -dfn +attribute mediasession mediasession 1 snapshot -https://www.w3.org/TR/mediasession/#mediaimage-source - +https://www.w3.org/TR/mediasession/#dom-mediaimage-source +1 1 MediaImage - @@ -1887,6 +1905,28 @@ https://www.w3.org/TR/webtransport/#dom-webtransporterror-source 1 WebTransportError - +source +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransporterroroptions-source +1 +1 +WebTransportErrorOptions +- +source character position +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-source-character-position + +1 +script timing info +- source debug data type dfn attribution-reporting-api @@ -1903,12 +1943,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-report-source-debug-key +https://wicg.github.io/attribution-reporting-api/#attribution-debug-info-source-debug-key 1 -attribution report -aggregatable report -event-level report +attribution debug info - source document dfn @@ -1938,6 +1976,26 @@ css current https://drafts.csswg.org/css2/#source-document +1 +- +source document +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#source-document +1 +1 +- +source document +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#source-document +1 1 - source document @@ -1958,16 +2016,6 @@ css snapshot https://www.w3.org/TR/css-2023/#source-document 1 -1 -- -source event id cardinality -dfn -attribution-reporting-api -attribution-reporting-api -1 -current -https://wicg.github.io/attribution-reporting-api/#source-event-id-cardinality - 1 - source expression @@ -2012,16 +2060,16 @@ https://www.w3.org/TR/CSP3/#violation-source-file 1 violation - -source identifier +source function name dfn -attribution-reporting-api -attribution-reporting-api +long-animation-frames +long-animation-frames 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-source-identifier +https://w3c.github.io/long-animation-frames/#script-timing-info-source-function-name 1 -attribution source +script timing info - source identifier dfn @@ -2029,31 +2077,74 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#event-level-report-source-identifier +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-source-identifier 1 -event-level report +aggregatable attribution report - -source image +source identifier dfn -png-spec -png-spec +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/PNG-spec/#dfn-source-image +https://wicg.github.io/attribution-reporting-api/#attribution-source-source-identifier 1 +attribution source - -source keys +source identifier dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#aggregatable-trigger-data-source-keys +https://wicg.github.io/attribution-reporting-api/#destination-limit-record-source-identifier 1 -aggregatable trigger data +destination limit record +- +source identifier +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-report-source-identifier + +1 +event-level report +- +source image +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#3sourceImage + +1 +- +source image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3sourceImage + +1 +- +source keys +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-trigger-data-source-keys + +1 +aggregatable trigger data - source lists dfn @@ -2073,6 +2164,16 @@ csp snapshot https://www.w3.org/TR/CSP3/#source-lists 1 +1 +- +source mapping url +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#source-mapping-url + 1 - source node @@ -2129,25 +2230,24 @@ AudioNode - source origin dfn -attribution-reporting-api -attribution-reporting-api +sourcemap +sourcemap 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-source-source-origin +https://tc39.es/source-map/#source-origin 1 -attribution source - -source partition key +source origin dfn -prefetch -prefetch +attribution-reporting-api +attribution-reporting-api 1 current -https://wicg.github.io/nav-speculation/prefetch.html#cross-partition-prefetch-state-source-partition-key +https://wicg.github.io/attribution-reporting-api/#attribution-source-source-origin 1 -cross-partition prefetch state +attribution source - source partition key dfn @@ -2155,10 +2255,10 @@ prefetch prefetch 1 current -https://wicg.github.io/nav-speculation/prefetch.html#same-partition-prefetch-state-source-partition-key - +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-source-partition-key +1 1 -same-partition prefetch state +prefetch record - source pixel ratio dfn @@ -2190,6 +2290,17 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#source-snapshot-par 1 - +source registration time configuration +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-source-registration-time-configuration + +1 +aggregatable attribution report +- source set dfn html @@ -2210,6 +2321,28 @@ https://html.spec.whatwg.org/multipage/semantics.html#link-options-source-set 1 - +source signal +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#tasksignal-source-signal + +1 +TaskSignal +- +source signals +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#abortsignal-source-signals + +1 +AbortSignal +- source site dfn attribution-reporting-api @@ -2240,6 +2373,16 @@ html current https://html.spec.whatwg.org/multipage/images.html#source-size-2 +1 +- +source snapshot has transient activation +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-params-source-activation + 1 - source snapshot params @@ -2300,10 +2443,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#aggregatable-report-source-time +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-source-time 1 -aggregatable report +aggregatable attribution report - source time dfn @@ -2318,6 +2461,16 @@ attribution source - source type dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-source-type + +1 +- +source type +dfn attribution-reporting-api attribution-reporting-api 1 @@ -2348,25 +2501,26 @@ https://wicg.github.io/attribution-reporting-api/#source-type 1 - -source types +source type dfn compute-pressure compute-pressure 1 -current -https://w3c.github.io/compute-pressure/#dfn-source-types +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-source-type 1 - -source types +source url dfn -compute-pressure -compute-pressure +long-animation-frames +long-animation-frames 1 -snapshot -https://www.w3.org/TR/compute-pressure/#dfn-source-types +current +https://w3c.github.io/long-animation-frames/#script-timing-info-source-url 1 +script timing info - source-atop dfn @@ -2378,6 +2532,28 @@ https://drafts.fxtf.org/compositing-2/#source-atop 1 - +source-channel-capacity-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-channel-capacity-limit + +1 +source debug data type +- +source-destination-global-rate-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-destination-global-rate-limit + +1 +source debug data type +- source-destination-limit dfn attribution-reporting-api @@ -2386,6 +2562,39 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-destination-limit +1 +source debug data type +- +source-destination-limit-replaced +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-destination-limit-replaced + +1 +source debug data type +- +source-destination-per-day-rate-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-destination-per-day-rate-limit + +1 +source debug data type +- +source-destination-rate-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-destination-rate-limit + 1 source debug data type - @@ -2429,6 +2638,17 @@ https://drafts.fxtf.org/compositing-2/#source-in 1 - +source-max-event-states-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-max-event-states-limit + +1 +source debug data type +- source-noised dfn attribution-reporting-api @@ -2460,6 +2680,49 @@ https://drafts.fxtf.org/compositing-2/#source-over 1 - +source-registration json key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key + +1 +- +source-reporting-origin-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-reporting-origin-limit + +1 +source debug data type +- +source-reporting-origin-per-site-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-reporting-origin-per-site-limit + +1 +source debug data type +- +source-scopes-channel-capacity-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-scopes-channel-capacity-limit + +1 +source debug data type +- source-storage-limit dfn attribution-reporting-api @@ -2479,6 +2742,17 @@ attribution-reporting-api current https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-success +1 +source debug data type +- +source-trigger-state-cardinality-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-debug-data-type-source-trigger-state-cardinality-limit + 1 source debug data type - @@ -2625,6 +2899,17 @@ https://wicg.github.io/input-device-capabilities/#dom-uieventinit-sourcecapabili 1 UIEventInit - +sourceCharPosition +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-sourcecharposition +1 +1 +PerformanceScriptTiming +- sourceFile attribute csp3 @@ -2735,6 +3020,17 @@ https://www.w3.org/TR/permissions-policy-1/#dom-permissionspolicyviolationreport 1 PermissionsPolicyViolationReportBody - +sourceFunctionName +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-sourcefunctionname +1 +1 +PerformanceScriptTiming +- sourceMap dict-member webgpu @@ -2790,6 +3086,39 @@ https://dom.spec.whatwg.org/#dom-range-compareboundarypoints-how-sourcerange-sou 1 Range/compareBoundaryPoints(how, sourceRange) - +sourceURL +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-sourceurl +1 +1 +PerformanceScriptTiming +- +source_event_id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-source_event_id + +1 +source-registration JSON key +- +source_keys +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-source_keys + +1 +trigger-registration JSON key +- sourcealpha attr-value filter-effects-1 @@ -2818,9 +3147,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#sourcebuffer-byte-stream-format-spec - +https://w3c.github.io/media-source/#dfn-sourcebuffer-byte-stream-format-specification +1 - sourcebuffer byte stream format specification dfn @@ -2828,9 +3157,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#sourcebuffer-byte-stream-format-spec - +https://www.w3.org/TR/media-source-2/#dfn-sourcebuffer-byte-stream-format-specification +1 - sourcebuffer configuration dfn @@ -2838,9 +3167,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#sourcebuffer-configuration - +https://w3c.github.io/media-source/#dfn-sourcebuffer-configuration +1 - sourcebuffer configuration dfn @@ -2848,9 +3177,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#sourcebuffer-configuration - +https://www.w3.org/TR/media-source-2/#dfn-sourcebuffer-configuration +1 - sourcebuffer monitoring dfn @@ -2893,43 +3222,53 @@ https://www.w3.org/TR/media-source-2/#dfn-sourcebufferlist-getter 1 - sourceclose -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-sourceclose - +1 1 - sourceclose -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-sourceclose +1 +1 +- +sourcedocument +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#traverse-sourcedocument 1 - sourceended -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-sourceended - +1 1 - sourceended -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-sourceended - +1 1 - sourcefile @@ -3043,22 +3382,42 @@ https://www.w3.org/TR/webcodecs/#computed-plane-layout-sourceleftbytes computed plane layout - sourceopen -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-sourceopen - +1 1 - sourceopen -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-sourceopen +1 +1 +- +sourceroot +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#sourceroot + +1 +- +sources +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#sources 1 - @@ -3073,13 +3432,13 @@ https://wicg.github.io/layout-instability/#dom-layoutshift-sources 1 LayoutShift - -sourcesnapshotparams +sourcescontent dfn -html -html +sourcemap +sourcemap 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#apply-history-step-source-snapshot +https://tc39.es/source-map/#sourcescontent 1 - @@ -3089,10 +3448,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-a-debug-report-on-trigger-registration-sourcetoattribute +https://wicg.github.io/attribution-reporting-api/#obtain-and-deliver-debug-reports-on-trigger-registration-sourcetoattribute 1 -obtain and deliver a debug report on trigger registration +obtain and deliver debug reports on trigger registration - sourcetoattribute dfn @@ -3100,10 +3459,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-debug-data-body-on-trigger-registration-sourcetoattribute +https://wicg.github.io/attribution-reporting-api/#obtain-verbose-debug-data-body-on-trigger-registration-sourcetoattribute 1 -obtain debug data body on trigger registration +obtain verbose debug data body on trigger registration - sourcetoattribute dfn @@ -3111,10 +3470,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#obtain-debug-data-on-trigger-registration-sourcetoattribute +https://wicg.github.io/attribution-reporting-api/#obtain-verbose-debug-data-on-trigger-registration-sourcetoattribute 1 -obtain debug data on trigger registration +obtain verbose debug data on trigger registration - sourcetop dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sp.data b/bikeshed/spec-data/readonly/anchors/anchors-sp.data index 397a27aabe..c518bfdff6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sp.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sp.data @@ -111,6 +111,26 @@ current https://drafts.csswg.org/css2/#speech-media-group +- +'speech' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#speech-media-group +1 +1 +- +'speech' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#speech-media-group +1 +1 - ::spelling-error selector @@ -153,23 +173,54 @@ https://drafts.csswg.org/css-text-4/#valdef-text-spacing-spacing-trim 1 text-spacing - -@@species -const -ecmascript -ecmascript +<spacing-trim> +type +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#typedef-spacing-trim +1 +1 +- +<spacing-trim> +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-spacing-trim +1 +1 +text-spacing +- +<specific-voice> +dfn +css2 +css 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://www.w3.org/TR/CSS21/aural.html#value-def-specific-voice 1 1 - -@@split -const -ecmascript -ecmascript +<specific-voice> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#value-def-specific-voice +1 1 +- +<spread-shadow> +type +css-borders-4 +css-borders +4 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://drafts.csswg.org/css-borders-4/#typedef-spread-shadow 1 1 - @@ -213,6 +264,16 @@ https://www.w3.org/TR/css-nav-1/#dictdef-spatialnavigationsearchoptions 1 1 - +SpeciesConstructor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-speciesconstructor +1 +1 +- SpeciesConstructor(O, defaultConstructor) abstract-op ecmascript @@ -525,6 +586,20 @@ border-image-repeat - space value +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#valdef-background-repeat-x-space +1 +1 +background-repeat-x +background-repeat-y +background-repeat-block +background-repeat-inline +- +space +value css-content-3 css-content 3 @@ -540,10 +615,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-word-boundary-expansion-space +https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-space 1 1 -word-boundary-expansion +word-space-transform - space argument @@ -683,10 +758,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-word-boundary-expansion-space +https://www.w3.org/TR/css-text-4/#valdef-word-space-transform-space 1 1 -word-boundary-expansion +word-space-transform - space dict-member @@ -836,24 +911,24 @@ https://www.w3.org/TR/webxrlayers-1/#space-warp 1 - -space-adjacent +space-all value css-text-4 css-text 4 -snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-adjacent +current +https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-space-all 1 1 -text-spacing +text-spacing-trim - space-all value css-text-4 css-text 4 -current -https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-space-all +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-space-all 1 1 text-spacing-trim @@ -1042,17 +1117,6 @@ https://www.w3.org/TR/css-ruby-1/#valdef-ruby-align-space-between 1 ruby-align - -space-end -value -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-end -1 -1 -text-spacing -- space-evenly value css-align-3 @@ -1096,10 +1160,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-first +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-space-first 1 1 -text-spacing +text-spacing-trim - space-like dfn @@ -1151,16 +1215,25 @@ https://drafts.csswg.org/css2/#space-separated-matching 1 - -space-start -value -css-text-4 -css-text -4 +space-separated matching +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x16 +1 +1 +- +space-separated matching +dfn +css2 +css +1 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-start +https://www.w3.org/TR/CSS21/selector.html#x16 1 1 -text-spacing - space-warp dfn @@ -1361,6 +1434,26 @@ https://www.w3.org/TR/SVG2/text.html#__svg__SVGTextPathElement__spacing 1 1 SVGTextPathElement +- +spacing mark +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-spacing-mark +1 + +- +spacing mark +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-spacing-mark +1 + - span dfn @@ -1511,82 +1604,533 @@ https://drafts.csswg.org/css-grid-2/#span-count - span count dfn -css-grid-1 -css-grid +css-grid-1 +css-grid +1 +snapshot +https://www.w3.org/TR/css-grid-1/#span-count + +1 +- +span count +dfn +css-grid-2 +css-grid +2 +snapshot +https://www.w3.org/TR/css-grid-2/#span-count + +1 +- +span-all +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-all +1 +1 +position-area +<position-area> +- +span-all +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-all +1 +1 +inset-area +<inset-area> +- +span-block-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-block-end +1 +1 +position-area +<position-area> +- +span-block-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-block-end +1 +1 +inset-area +<inset-area> +- +span-block-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-block-start +1 +1 +position-area +<position-area> +- +span-block-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-block-start +1 +1 +inset-area +<inset-area> +- +span-bottom +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-bottom +1 +1 +position-area +<position-area> +- +span-bottom +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-bottom +1 +1 +inset-area +<inset-area> +- +span-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-end +1 +1 +position-area +<position-area> +- +span-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-end +1 +1 +inset-area +<inset-area> +- +span-inline-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-inline-end +1 +1 +position-area +<position-area> +- +span-inline-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-inline-end +1 +1 +inset-area +<inset-area> +- +span-inline-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-inline-start +1 +1 +position-area +<position-area> +- +span-inline-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-inline-start +1 +1 +inset-area +<inset-area> +- +span-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-start +1 +1 +position-area +<position-area> +- +span-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-start +1 +1 +inset-area +<inset-area> +- +span-top +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-top +1 +1 +position-area +<position-area> +- +span-top +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-top +1 +1 +inset-area +<inset-area> +- +span-x-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-x-end +1 +1 +position-area +<position-area> +- +span-x-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-x-end +1 +1 +inset-area +<inset-area> +- +span-x-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-x-start +1 +1 +position-area +<position-area> +- +span-x-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-x-start +1 +1 +inset-area +<inset-area> +- +span-y-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-y-end +1 +1 +position-area +<position-area> +- +span-y-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-y-end +1 +1 +inset-area +<inset-area> +- +span-y-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-y-start +1 +1 +position-area +<position-area> +- +span-y-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-y-start +1 +1 +inset-area +<inset-area> +- +spanning annotation +dfn +css-ruby-1 +css-ruby +1 +current +https://drafts.csswg.org/css-ruby-1/#spanning-annotation + +1 +- +spanning annotation +dfn +css-ruby-1 +css-ruby +1 +snapshot +https://www.w3.org/TR/css-ruby-1/#spanning-annotation + +1 +- +sparql query +dfn +sparql12-query +sparql-query +1 +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlquery + +1 +- +sparql query +dfn +sparql12-query +sparql-query +1 +snapshot +https://www.w3.org/TR/sparql12-query/#dfn-sparqlquery + +1 +- +sparql query string +dfn +sparql12-query +sparql-query +1 +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlquerystring + +1 +- +sparql query string +dfn +sparql12-query +sparql-query +1 +snapshot +https://www.w3.org/TR/sparql12-query/#dfn-sparqlquerystring + +1 +- +sparql request string +dfn +sparql12-query +sparql-query +1 +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlrequeststring + +1 +- +sparql request string +dfn +sparql12-query +sparql-query +1 +snapshot +https://www.w3.org/TR/sparql12-query/#dfn-sparqlrequeststring + +1 +- +sparql update string +dfn +sparql12-query +sparql-query +1 +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlupdatestring + +1 +- +sparql update string +dfn +sparql12-query +sparql-query +1 +snapshot +https://www.w3.org/TR/sparql12-query/#dfn-sparqlupdatestring + +1 +- +sparqlquery +dfn +sparql12-query +sparql-query +1 +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlquery + +1 +- +sparqlquery +dfn +sparql12-query +sparql-query 1 snapshot -https://www.w3.org/TR/css-grid-1/#span-count +https://www.w3.org/TR/sparql12-query/#dfn-sparqlquery 1 - -span count +sparqlquerystring dfn -css-grid-2 -css-grid -2 -snapshot -https://www.w3.org/TR/css-grid-2/#span-count +sparql12-query +sparql-query +1 +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlquerystring 1 - -spanner +sparqlquerystring dfn -css-multicol-1 -css-multicol +sparql12-query +sparql-query 1 snapshot -https://www.w3.org/TR/css-multicol-1/#spanner -1 +https://www.w3.org/TR/sparql12-query/#dfn-sparqlquerystring + 1 - -spanning annotation +sparqlrequeststring dfn -css-ruby-1 -css-ruby +sparql12-query +sparql-query 1 current -https://drafts.csswg.org/css-ruby-1/#spanning-annotation +https://w3c.github.io/sparql-query/spec/#dfn-sparqlrequeststring 1 - -spanning annotation +sparqlrequeststring dfn -css-ruby-1 -css-ruby +sparql12-query +sparql-query 1 snapshot -https://www.w3.org/TR/css-ruby-1/#spanning-annotation +https://www.w3.org/TR/sparql12-query/#dfn-sparqlrequeststring 1 - -spanning element +sparqlupdatestring dfn -css-multicol-1 -css-multicol +sparql12-query +sparql-query 1 -snapshot -https://www.w3.org/TR/css-multicol-1/#spanning-element +current +https://w3c.github.io/sparql-query/spec/#dfn-sparqlupdatestring + 1 +- +sparqlupdatestring +dfn +sparql12-query +sparql-query +1 +snapshot +https://www.w3.org/TR/sparql12-query/#dfn-sparqlupdatestring + 1 - -sparse_bit_set +sparse bit set dfn ift ift 1 current -https://w3c.github.io/IFT/Overview.html#compressedset-sparse_bit_set +https://w3c.github.io/IFT/Overview.html#sparse-bit-set 1 -CompressedSet - -sparsebitset +sparse bit set dfn ift ift 1 -current -https://w3c.github.io/IFT/Overview.html#sparsebitset +snapshot +https://www.w3.org/TR/IFT/#sparse-bit-set 1 - @@ -1902,28 +2446,6 @@ https://www.w3.org/TR/css-nav-1/#spatial-navigation 1 1 - -spatialscalability -dfn -webrtc-svc -webrtc-svc -1 -current -https://w3c.github.io/webrtc-svc/#dfn-spatialscalability - -1 -VideoConfiguration -- -spatialscalability -dfn -webrtc-svc -webrtc-svc -1 -snapshot -https://www.w3.org/TR/webrtc-svc/#dfn-spatialscalability - -1 -VideoConfiguration -- spc credential dfn secure-payment-confirmation @@ -1955,6 +2477,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-speak 1 - speak +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-speak +1 +1 +- +speak +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-speak +1 +1 +- +speak dfn css22 css @@ -2028,6 +2570,26 @@ https://www.w3.org/TR/css-speech-1/#propdef-speak-as 1 - speak-header +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header +1 +1 +- +speak-header +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header +1 +1 +- +speak-header dfn css22 css @@ -2038,6 +2600,26 @@ https://www.w3.org/TR/CSS22/aural.html#propdef-speak-header 1 - speak-numeral +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral +1 +1 +- +speak-numeral +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral +1 +1 +- +speak-numeral dfn css22 css @@ -2048,6 +2630,26 @@ https://www.w3.org/TR/CSS22/aural.html#propdef-speak-numeral 1 - speak-punctuation +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation +1 +1 +- +speak-punctuation +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation +1 +1 +- +speak-punctuation dfn css22 css @@ -2335,6 +2937,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#specified-end-delay +1 +- +specified end delay +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#specified-end-delay + 1 - specified flow @@ -2365,6 +2977,36 @@ web-animations current https://drafts.csswg.org/web-animations-2/#specified-iteration-duration +1 +- +specified iteration duration +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#specified-iteration-duration + +1 +- +specified keyframe order +dfn +css-animations-2 +css-animations +2 +current +https://drafts.csswg.org/css-animations-2/#specified-keyframe-order + +1 +- +specified keyframe order +dfn +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#specified-keyframe-order + 1 - specified length @@ -2495,6 +3137,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#specified-start-delay +1 +- +specified start delay +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#specified-start-delay + 1 - specified value @@ -2529,6 +3181,26 @@ https://drafts.csswg.org/css-cascade-5/#specified-value - specified value dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#specified-value +1 +1 +- +specified value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#specified-value +1 +1 +- +specified value +dfn css-cascade-3 css-cascade 3 @@ -2757,26 +3429,6 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#speculative-fetch -1 -- -speculative fetch -dfn -resource-hints -resource-hints -1 -current -https://w3c.github.io/resource-hints/#dfn-speculative-fetch - -1 -- -speculative fetch -dfn -resource-hints -resource-hints -1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-speculative-fetch -1 1 - speculative html parser @@ -2855,6 +3507,26 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-speech @media - speech-rate +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate +1 +1 +- +speech-rate +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate +1 +1 +- +speech-rate dfn css22 css @@ -2899,28 +3571,6 @@ SpeechRecognition - speed attribute -geolocation -geolocation -1 -current -https://w3c.github.io/geolocation-api/#dom-geolocationcoordinates-speed -1 -1 -GeolocationCoordinates -- -speed -dict-member -geolocation-sensor -geolocation-sensor -1 -current -https://w3c.github.io/geolocation-sensor/#dom-geolocationreadingvalues-speed -1 -1 -GeolocationReadingValues -- -speed -attribute geolocation-sensor geolocation-sensor 1 @@ -2942,15 +3592,15 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-speed GeolocationSensorReading - speed -dict-member -geolocation-sensor -geolocation-sensor +attribute +geolocation +geolocation 1 -snapshot -https://www.w3.org/TR/geolocation-sensor/#dom-geolocationreadingvalues-speed +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-speed 1 1 -GeolocationReadingValues +GeolocationCoordinates - speed attribute @@ -3094,6 +3744,46 @@ https://www.w3.org/TR/webxr-lighting-estimation-1/#dom-xrlightestimate-spherical 1 1 XRLightEstimate +- +spillover +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-spillover-effects +1 + +- +spillover +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-spillover-effects +1 + +- +spillover effects +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-spillover-effects +1 + +- +spillover effects +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-spillover-effects +1 + - spin the event loop dfn @@ -3238,16 +3928,6 @@ https://infra.spec.whatwg.org/#split-on-commas 1 1 - -split the fragment from the fragment directive -dfn -scroll-to-text-fragment -scroll-to-text-fragment -1 -current -https://wicg.github.io/scroll-to-text-fragment/#split-the-fragment-from-the-fragment-directive -1 -1 -- split(input, splits) method webnn @@ -3324,7 +4004,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-split-input-split 1 1 MLGraphBuilder/split(input, splits, options) -MLGraphBuilder/split(input, splits) - splits argument @@ -3336,7 +4015,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-split 1 1 MLGraphBuilder/split(input, splits, options) -MLGraphBuilder/split(input, splits) - spoon-feed the parser dfn @@ -3426,9 +4104,10 @@ css-backgrounds-3 css-backgrounds 3 current -https://drafts.csswg.org/css-backgrounds-3/#spread-distance - +https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance +1 1 +box-shadow - spread distance dfn @@ -3436,9 +4115,10 @@ css-backgrounds-3 css-backgrounds 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#spread-distance - +https://www.w3.org/TR/css-backgrounds-3/#box-shadow-spread-distance +1 1 +box-shadow - spreadMethod attribute @@ -3526,6 +4206,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-springgreen 1 1 <color> +<named-color> - springgreen dfn @@ -3547,4 +4228,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-springgreen 1 1 <color> +<named-color> - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sq.data b/bikeshed/spec-data/readonly/anchors/anchors-sq.data index a0b8f60fa3..3743bf548e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sq.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sq.data @@ -62,6 +62,50 @@ https://www.w3.org/TR/css-values-4/#funcdef-sqrt 1 1 - +sqrt(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sqrt +1 +1 +MLGraphBuilder +- +sqrt(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sqrt +1 +1 +MLGraphBuilder +- +sqrt(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sqrt +1 +1 +MLGraphBuilder +- +sqrt(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sqrt +1 +1 +MLGraphBuilder +- sqrt(x) method ecmascript @@ -119,6 +163,26 @@ OscillatorType - square value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-square +1 +1 +- +square +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-square +1 +1 +- +square +value css-counter-styles-3 css-counter-styles 3 @@ -155,17 +219,6 @@ value css-ui-4 css-ui 4 -current -https://drafts.csswg.org/css-ui-4/#valdef-appearance-square-button -1 -1 -appearance -- -square-button -value -css-ui-4 -css-ui -4 snapshot https://www.w3.org/TR/css-ui-4/#valdef-appearance-square-button 1 @@ -194,50 +247,6 @@ https://www.w3.org/TR/webxr/#eventdef-xrsession-squeeze 1 XRSession - -squeeze(input) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-squeeze -1 -1 -MLGraphBuilder -- -squeeze(input) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-squeeze -1 -1 -MLGraphBuilder -- -squeeze(input, options) -method -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-squeeze -1 -1 -MLGraphBuilder -- -squeeze(input, options) -method -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-squeeze -1 -1 -MLGraphBuilder -- squeezeend event webxr diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sr.data b/bikeshed/spec-data/readonly/anchors/anchors-sr.data index 501c8ef203..d008091b8a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sr.data @@ -64,6 +64,50 @@ https://www.w3.org/TR/webgpu/#dom-gpublendfactor-src-alpha-saturated 1 GPUBlendFactor - +"src1" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpublendfactor-src1 +1 +1 +GPUBlendFactor +- +"src1" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpublendfactor-src1 +1 +1 +GPUBlendFactor +- +"src1-alpha" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpublendfactor-src1-alpha +1 +1 +GPUBlendFactor +- +"src1-alpha" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpublendfactor-src1-alpha +1 +1 +GPUBlendFactor +- "srgb" enum-value media-capabilities @@ -240,6 +284,17 @@ https://drafts.csswg.org/css-fonts-4/#descdef-font-face-src @font-face - src +attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-src +1 +1 +CSSFontFaceDescriptors +- +src element-attr html html @@ -400,6 +455,27 @@ html html 1 current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-src +1 +1 +NotRestoredReasons +- +src +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-src + +1 +- +src +attribute +html +html +1 +current https://html.spec.whatwg.org/multipage/obsolete.html#dom-frame-src 1 1 @@ -428,14 +504,15 @@ https://html.spec.whatwg.org/multipage/scripting.html#dom-script-src HTMLScriptElement - src -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-src - 1 +1 +model - src dfn @@ -538,6 +615,17 @@ https://www.w3.org/TR/css-color-5/#descdef-color-profile-src @color-profile - src +attribute +css-color-5 +css-color +5 +snapshot +https://www.w3.org/TR/css-color-5/#dom-csscolorprofilerule-src +1 +1 +CSSColorProfileRule +- +src descriptor css-fonts-4 css-fonts @@ -599,6 +687,26 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#funcdef-src 1 +1 +- +src-origin +dfn +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#src-origin + +1 +- +src-origin +dfn +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#src-origin + 1 - srcElement diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ss.data b/bikeshed/spec-data/readonly/anchors/anchors-ss.data index 5816d12eb6..d972dad548 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ss.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ss.data @@ -1,23 +1,3 @@ -sslproxy -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-sslproxy - -1 -- -sslproxy -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-sslproxy - -1 -- ssrc dict-member webrtc-stats diff --git a/bikeshed/spec-data/readonly/anchors/anchors-st.data b/bikeshed/spec-data/readonly/anchors/anchors-st.data index cb1c1daa8b..e73fb76549 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-st.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-st.data @@ -10,14 +10,15 @@ https://wicg.github.io/webusb/#dom-usbtransferstatus-stall USBTransferStatus - "standard" -dfn -gamepad -gamepad +enum-value +webgpu +webgpu 1 current -https://w3c.github.io/gamepad/#dfn-standard - +https://gpuweb.github.io/gpuweb/#dom-gpucanvastonemappingmode-standard +1 1 +GPUCanvasToneMappingMode - "standard" enum-value @@ -31,14 +32,15 @@ https://wicg.github.io/webusb/#dom-usbrequesttype-standard USBRequestType - "standard" -dfn -gamepad -gamepad +enum-value +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/gamepad/#dfn-standard - +https://www.w3.org/TR/webgpu/#dom-gpucanvastonemappingmode-standard +1 1 +GPUCanvasToneMappingMode - "start" enum-value @@ -432,6 +434,17 @@ https://fetch.spec.whatwg.org/#dom-requestdestination-style 1 RequestDestination - +"stylus" +enum-value +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinginputtype-stylus +1 +1 +HandwritingInputType +- %String% interface ecmascript @@ -458,7 +471,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-%stringiteratorprototype%-object +https://tc39.es/ecma262/multipage/text-processing.html#sec-%25stringiteratorprototype%25-object 1 1 - @@ -471,6 +484,26 @@ current https://drafts.csswg.org/css2/#static-media-group +- +'static' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#static-media-group +1 +1 +- +'static' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#static-media-group +1 +1 - 'strict-dynamic' grammar @@ -480,6 +513,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-strict-dynamic 1 +1 +- +'strict-dynamic' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-strict-dynamic + 1 - 'strict-dynamic' @@ -497,19 +540,19 @@ value css-content-3 css-content 3 -current -https://drafts.csswg.org/css-content-3/#valdef-content---string--counter +snapshot +https://www.w3.org/TR/css-content-3/#valdef-content---string--counter 1 1 content - -/ [ <string> | <counter> ]+ +/ [ <string> | <counter> | <attr()> ]+ value css-content-3 css-content 3 -snapshot -https://www.w3.org/TR/css-content-3/#valdef-content---string--counter +current +https://drafts.csswg.org/css-content-3/#valdef-content---string--counter--attr 1 1 content @@ -522,6 +565,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-stalled 1 +1 +- +:stalled +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-stalled + 1 - :stalled @@ -544,16 +597,15 @@ https://drafts.csswg.org/css-gcpm-4/#selectordef-start-of-page 1 1 - -<start-value> -type -css-values-4 -css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#typedef-mix-start-value - +:state() +selector +selectors-5 +selectors +5 +current +https://drafts.csswg.org/selectors-5/#selectordef-state +1 1 -mix() - <step-easing-function> type @@ -677,6 +729,26 @@ https://drafts.csswg.org/css2/#value-def-string 1 - <string> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-string +1 +1 +- +<string> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-string +1 +1 +- +<string> type css-values-3 css-values @@ -745,16 +817,6 @@ type css-syntax-3 css-syntax 3 -current -https://drafts.csswg.org/css-syntax-3/#typedef-style-block -1 -1 -- -<style-block> -type -css-syntax-3 -css-syntax -3 snapshot https://www.w3.org/TR/css-syntax-3/#typedef-style-block 1 @@ -772,11 +834,21 @@ https://www.w3.org/TR/css-contain-3/#typedef-style-condition - <style-feature> type -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#typedef-style-feature +https://drafts.csswg.org/css-conditional-5/#typedef-style-feature +1 +1 +- +<style-feature> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-style-feature 1 1 - @@ -792,11 +864,21 @@ https://www.w3.org/TR/css-contain-3/#typedef-style-feature - <style-in-parens> type -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#typedef-style-in-parens +https://drafts.csswg.org/css-conditional-5/#typedef-style-in-parens +1 +1 +- +<style-in-parens> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-style-in-parens 1 1 - @@ -812,11 +894,21 @@ https://www.w3.org/TR/css-contain-3/#typedef-style-in-parens - <style-query> type -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#typedef-style-query +https://drafts.csswg.org/css-conditional-5/#typedef-style-query +1 +1 +- +<style-query> +type +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#typedef-style-query 1 1 - @@ -835,20 +927,74 @@ type css-syntax-3 css-syntax 3 +snapshot +https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet +1 +1 +- +@starting-style +at-rule +css-transitions-2 +css-transitions +2 current -https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet +https://drafts.csswg.org/css-transitions-2/#at-ruledef-starting-style 1 1 - -<stylesheet> -type -css-syntax-3 -css-syntax -3 +@starting-style +at-rule +css-transitions-2 +css-transitions +2 snapshot -https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet +https://www.w3.org/TR/css-transitions-2/#at-ruledef-starting-style +1 +1 +- +@styleset +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-styleset +1 +1 +@font-feature-values +- +@styleset +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-styleset +1 1 +@font-feature-values +- +@stylistic +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-stylistic +1 +1 +@font-feature-values +- +@stylistic +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-stylistic 1 +1 +@font-feature-values - START_TO_END const @@ -959,6 +1105,26 @@ https://wicg.github.io/file-system-access/#typedefdef-startindirectory 1 1 - +StartViewTransitionOptions +dictionary +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dictdef-startviewtransitionoptions +1 +1 +- +StartViewTransitionOptions +dictionary +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dictdef-startviewtransitionoptions +1 +1 +- StatefulAnimator interface css-animation-worklet-1 @@ -1159,6 +1325,56 @@ https://html.spec.whatwg.org/multipage/webstorage.html#storage-2 1 1 - +StorageAccessHandle +interface +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#storageaccesshandle +1 +1 +- +StorageAccessTypes +dictionary +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dictdef-storageaccesstypes +1 +1 +- +StorageBucket +interface +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#storagebucket +1 +1 +- +StorageBucketManager +interface +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#storagebucketmanager +1 +1 +- +StorageBucketOptions +dictionary +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dictdef-storagebucketoptions +1 +1 +- StorageEstimate dictionary storage @@ -1272,23 +1488,24 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string-constructor-st 1 String - -StringContext -extended-attribute -trusted-types -trusted-types +String.prototype %Symbol.iterator% () +method +ecmascript +ecmascript 1 current -https://w3c.github.io/trusted-types/dist/spec/#StringContext +https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype-%25symbol.iterator%25 1 1 +String.prototype [ %Symbol.iterator% ] ( ) - -StringContext -extended-attribute -trusted-types -trusted-types +StringCreate +abstract-op +ecmascript +ecmascript 1 -snapshot -https://www.w3.org/TR/trusted-types/#StringContext +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-stringcreate 1 1 - @@ -1302,7 +1519,7 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -StringGetOwnProperty(S, P) +StringGetOwnProperty abstract-op ecmascript ecmascript @@ -1312,63 +1529,153 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -StringIndexOf(string, searchValue, fromIndex) +StringGetOwnProperty(S, P) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringindexof +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-stringgetownproperty 1 1 - -StringPad(O, maxLength, fillString, placement) +StringIndexOf abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpad +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringindexof 1 1 - -StringToBigInt(str) +StringIndexOf(string, searchValue, fromIndex) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-stringtobigint +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringindexof 1 1 - -StringToNumber(str) +StringLastIndexOf abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/abstract-operations.html#sec-stringtonumber +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringlastindexof 1 1 - -StructuredClone +StringLastIndexOf(string, searchValue, fromIndex) abstract-op -streams -streams +ecmascript +ecmascript 1 current -https://streams.spec.whatwg.org/#abstract-opdef-structuredclone +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringlastindexof 1 1 - -StructuredDeserialize +StringPad abstract-op -html -html +ecmascript +ecmascript 1 current -https://html.spec.whatwg.org/multipage/structured-data.html#structureddeserialize +https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpad +1 +1 +- +StringPad(S, maxLength, fillString, placement) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpad +1 +1 +- +StringPaddingBuiltinsImpl +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpaddingbuiltinsimpl +1 +1 +- +StringPaddingBuiltinsImpl(O, maxLength, fillString, placement) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpaddingbuiltinsimpl +1 +1 +- +StringToBigInt +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-stringtobigint +1 +1 +- +StringToBigInt(str) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-stringtobigint +1 +1 +- +StringToNumber +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-stringtonumber +1 +1 +- +StringToNumber(str) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-stringtonumber +1 +1 +- +StructuredClone +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#abstract-opdef-structuredclone +1 +1 +- +StructuredDeserialize +abstract-op +html +html +1 +current +https://html.spec.whatwg.org/multipage/structured-data.html#structureddeserialize 1 1 - @@ -1585,8 +1892,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-stopped-0 + 1 -1 +RTCRtpTransceiver - [[Stopping]] attribute @@ -1606,8 +1914,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-stopping + 1 -1 +RTCRtpTransceiver - [[Store]](credential, sameOriginWithAncestors) method @@ -1655,6 +1964,17 @@ PublicKeyCredential - [[Store]](credential, sameOriginWithAncestors) method +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-store-credential-sameoriginwithancestors +1 +1 +DigitalCredential +- +[[Store]](credential, sameOriginWithAncestors) +method credential-management-1 credential-management 1 @@ -1769,10 +2089,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpucommandsmixin-state-slot +https://gpuweb.github.io/gpuweb/#dom-adapter-state-slot 1 1 -GPUCommandsMixin +adapter - [[state]] attribute @@ -1780,10 +2100,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#dom-gpuqueryset-state-slot +https://gpuweb.github.io/gpuweb/#dom-gpucommandsmixin-state-slot 1 1 -GPUQuerySet +GPUCommandsMixin - [[state]] dfn @@ -1809,7 +2129,7 @@ WritableStream - [[state]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -1919,11 +2239,11 @@ Sensor - [[state]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-state +https://www.w3.org/TR/payment-request/#dfn-state 1 PaymentRequest @@ -1978,10 +2298,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpucommandsmixin-state-slot +https://www.w3.org/TR/webgpu/#dom-adapter-state-slot 1 1 -GPUCommandsMixin +adapter - [[state]] attribute @@ -1989,10 +2309,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#dom-gpuqueryset-state-slot +https://www.w3.org/TR/webgpu/#dom-gpucommandsmixin-state-slot 1 1 -GPUQuerySet +GPUCommandsMixin - [[stencilReadOnly]] attribute @@ -2264,10 +2584,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-wrap-stable +https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-stable 1 1 -text-wrap +text-wrap-style - stable enum-value @@ -2297,10 +2617,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-wrap-stable +https://www.w3.org/TR/css-text-4/#valdef-text-wrap-style-stable 1 1 -text-wrap +text-wrap-style - stable enum-value @@ -2325,6 +2645,17 @@ https://infra.spec.whatwg.org/#stack - stack dfn +crash-reporting +crash-reporting +1 +current +https://wicg.github.io/crash-reporting/#crashreportbody-stack + +1 +CrashReportBody +- +stack +dfn js-self-profiling js-self-profiling 1 @@ -2351,6 +2682,26 @@ css current https://drafts.csswg.org/css2/#stack-level +1 +- +stack level +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#stack-level +1 +1 +- +stack level +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#stack-level +1 1 - stack of open elements @@ -2504,6 +2855,26 @@ css current https://drafts.csswg.org/css2/#stacking-context +1 +- +stacking context +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x43 +1 +1 +- +stacking context +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x43 +1 1 - stacking contexts @@ -2590,6 +2961,26 @@ service worker registration - stale dfn +network-error-logging +network-error-logging +1 +current +https://w3c.github.io/network-error-logging/#dfn-stale + +1 +- +stale +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#dfn-stale + +1 +- +stale +dfn service-workers service-workers 1 @@ -2629,6 +3020,26 @@ https://fetch.spec.whatwg.org/#concept-stale-response 1 1 - +stale timelines +dfn +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#stale-timelines +1 +1 +- +stale timelines +dfn +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#stale-timelines +1 +1 +- stale-while-revalidate response dfn fetch @@ -2651,12 +3062,34 @@ https://html.spec.whatwg.org/multipage/media.html#event-media-stalled HTMLMediaElement - standalone -dfn +value mediaqueries-5 mediaqueries 5 current -https://drafts.csswg.org/mediaqueries-5/#display-mode-standalone +https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-standalone +1 +1 +@media/display-mode +- +standalone +dfn +appmanifest +appmanifest +1 +current +https://w3c.github.io/manifest/#dfn-standalone +1 +1 +display mode +- +standalone +dfn +appmanifest +appmanifest +1 +snapshot +https://www.w3.org/TR/appmanifest/#dfn-standalone 1 1 display mode @@ -2712,6 +3145,37 @@ https://www.w3.org/TR/css-grid-2/#standalone-grid 1 - +standalone vowel +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-standalone-vowel +1 + +- +standalone vowel +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-standalone-vowel +1 + +- +standard +value +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#valdef-dynamic-range-limit-standard +1 +1 +dynamic-range-limit +- standard value mediaqueries-5 @@ -2756,6 +3220,26 @@ https://www.w3.org/TR/mediaqueries-5/#valdef-media-dynamic-range-standard 1 @media/dynamic-range - +standard base64 alphabet +dfn +tc39-arraybuffer-base64 +tc39-arraybuffer-base64 +1 +current +https://tc39.es/proposal-arraybuffer-base64/spec/#standard-base64-alphabet +1 +1 +- +standard dynamic range +dfn +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#standard-dynamic-range +1 +1 +- standard gamepad dfn gamepad @@ -2774,6 +3258,26 @@ gamepad snapshot https://www.w3.org/TR/gamepad/#dfn-standard-gamepad +1 +- +standard sample patterns +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#standard-sample-patterns + +1 +- +standard sample patterns +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#standard-sample-patterns + 1 - standardize @@ -2784,6 +3288,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-standardize +1 +- +standardize +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-standardize + 1 - standardized payment method @@ -2826,10 +3340,40 @@ https://www.w3.org/TR/payment-method-id/#dfn-standardized-payment-method-identif 1 1 - -standby -element-attr -html -html +standardized permission +dfn +permissions-registry +permissions-registry +1 +current +https://w3c.github.io/permissions-registry/#dfn-standardized-permission + + +- +standardized permission +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-standardized-permission + + +- +standardized permission +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-standardized-permission + + +- +standby +element-attr +html +html 1 current https://html.spec.whatwg.org/multipage/obsolete.html#attr-object-standby @@ -2909,6 +3453,18 @@ https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-start anchor() - start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-start +1 +1 +position-area +<position-area> +- +start attribute css-cascade-6 css-cascade @@ -2965,17 +3521,6 @@ wrap-flow - start value -css-inline-3 -css-inline -3 -current -https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-start -1 -1 -leading-trim -- -start -value css-rhythm-1 css-rhythm 1 @@ -3009,21 +3554,6 @@ scroll-snap-align - start value -css-scroll-snap-2 -css-scroll-snap -2 -current -https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-start -1 -1 -scroll-start -scroll-start-x -scroll-start-y -scroll-start-block -scroll-start-inline -- -start -value css-text-3 css-text 3 @@ -3185,10 +3715,10 @@ ift ift 1 current -https://w3c.github.io/IFT/Overview.html#axisinterval-start +https://w3c.github.io/IFT/Overview.html#design-space-segment-start 1 -AxisInterval +Design Space Segment - start dfn @@ -3224,6 +3754,39 @@ https://w3c.github.io/user-timing/#dom-performancemeasureoptions-start PerformanceMeasureOptions - start +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#report-window-start + +1 +report window +- +start +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-bucket-start + +1 +summary bucket +- +start +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#text-directive-start + +1 +text directive +- +start event speech-api speech-api @@ -3261,6 +3824,17 @@ Blob/slice() - start dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#design-space-segment-start + +1 +Design Space Segment +- +start +dfn indexeddb-3 indexeddb 3 @@ -3288,6 +3862,29 @@ align-content - start value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-start +1 +1 +anchor() +- +start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-start +1 +1 +inset-area +<inset-area> +- +start +value css-content-3 css-content 3 @@ -3310,17 +3907,6 @@ steps() - start value -css-inline-3 -css-inline -3 -snapshot -https://www.w3.org/TR/css-inline-3/#valdef-leading-trim-start -1 -1 -leading-trim -- -start -value css-rhythm-1 css-rhythm 1 @@ -3621,6 +4207,16 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#start-delay +1 +- +start delay +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#start-delay + 1 - start intersection-observing a lazy loading element @@ -3815,6 +4411,26 @@ html current https://html.spec.whatwg.org/multipage/parsing.html#start-the-speculative-html-parser +1 +- +start the timer +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-start-the-timer + +1 +- +start the timer +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-start-the-timer + 1 - start the track processing model @@ -3873,25 +4489,69 @@ service worker timing info - start time dfn -css-transitions-1 -css-transitions +long-animation-frames +long-animation-frames 1 -snapshot -https://www.w3.org/TR/css-transitions-1/#transition-start-time +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-start-time + +1 +frame timing info +- +start time +dfn +long-animation-frames +long-animation-frames 1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-start-time + 1 -transition +script timing info - start time dfn -longtasks-1 -longtasks +prefetch +prefetch 1 -snapshot -https://www.w3.org/TR/longtasks-1/#task-start-time +current +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-start-time +1 +1 +prefetch record +- +start time +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record-start-time +1 +1 +prerender record +- +start time +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#interaction-data-start-time 1 -task +interaction data +- +start time +dfn +css-transitions-1 +css-transitions +1 +snapshot +https://www.w3.org/TR/css-transitions-1/#transition-start-time +1 +1 +transition - start time dfn @@ -3922,7 +4582,7 @@ appmanifest 1 current https://w3c.github.io/manifest/#dfn-start-url - +1 1 - start url @@ -3932,7 +4592,7 @@ appmanifest 1 snapshot https://www.w3.org/TR/appmanifest/#dfn-start-url - +1 1 - start user-agent initiated prerendering @@ -4393,15 +5053,48 @@ StaticRangeInit - startDelay dict-member -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadeffectparameters-startdelay +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-startdelay 1 1 GamepadEffectParameters - +startDelay +dict-member +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters-startdelay +1 +1 +GamepadEffectParameters +- +startDrawing() +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizer-startdrawing +1 +1 +HandwritingRecognizer +- +startDrawing(hints) +method +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizer-startdrawing +1 +1 +HandwritingRecognizer +- startIn dict-member file-system-access @@ -4591,67 +5284,133 @@ TextTrackCue - startTime attribute -performance-timeline -performance-timeline +long-animation-frames +long-animation-frames 1 current -https://w3c.github.io/performance-timeline/#dom-performanceentry-starttime +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-starttime 1 1 -PerformanceEntry +PerformanceLongAnimationFrameTiming - startTime -dict-member -user-timing -user-timing +attribute +long-animation-frames +long-animation-frames 1 current -https://w3c.github.io/user-timing/#dom-performancemarkoptions-starttime +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-starttime 1 1 -PerformanceMarkOptions +PerformanceScriptTiming - startTime -argument -webvtt1 -webvtt +attribute +longtasks-1 +longtasks 1 current -https://w3c.github.io/webvtt/#dom-vttcue-vttcue-starttime-endtime-text-starttime +https://w3c.github.io/longtasks/#dom-performancelongtasktiming-starttime 1 1 -VTTCue/VTTCue(startTime, endTime, text) -VTTCue/constructor(startTime, endTime, text) +PerformanceLongTaskTiming - startTime -argument -webaudio -webaudio +attribute +longtasks-1 +longtasks 1 current -https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-starttime +https://w3c.github.io/longtasks/#dom-taskattributiontiming-starttime 1 1 -AudioParam/setTargetAtTime() +TaskAttributionTiming - startTime -argument -webaudio -webaudio +attribute +mediasession +mediasession 1 current -https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime +https://w3c.github.io/mediasession/#dom-chapterinformation-starttime 1 1 -AudioParam/setTargetAtTime(target, startTime, timeConstant) +ChapterInformation - startTime -argument -webaudio -webaudio +dict-member +mediasession +mediasession 1 current -https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-starttime +https://w3c.github.io/mediasession/#dom-chapterinformationinit-starttime +1 +1 +ChapterInformationInit +- +startTime +attribute +performance-timeline +performance-timeline +1 +current +https://w3c.github.io/performance-timeline/#dom-performanceentry-starttime +1 +1 +PerformanceEntry +- +startTime +dict-member +user-timing +user-timing +1 +current +https://w3c.github.io/user-timing/#dom-performancemarkoptions-starttime +1 +1 +PerformanceMarkOptions +- +startTime +argument +webvtt1 +webvtt +1 +current +https://w3c.github.io/webvtt/#dom-vttcue-vttcue-starttime-endtime-text-starttime +1 +1 +VTTCue/VTTCue(startTime, endTime, text) +VTTCue/constructor(startTime, endTime, text) +- +startTime +argument +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-starttime +1 +1 +AudioParam/setTargetAtTime() +- +startTime +argument +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime +1 +1 +AudioParam/setTargetAtTime(target, startTime, timeConstant) +- +startTime +argument +webaudio +webaudio +1 +current +https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-starttime 1 1 AudioParam/setValueAtTime() @@ -4705,6 +5464,50 @@ DataCue/constructor(startTime, endTime, value) - startTime attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-performancelongtasktiming-starttime +1 +1 +PerformanceLongTaskTiming +- +startTime +attribute +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-taskattributiontiming-starttime +1 +1 +TaskAttributionTiming +- +startTime +attribute +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-chapterinformation-starttime +1 +1 +ChapterInformation +- +startTime +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-chapterinformationinit-starttime +1 +1 +ChapterInformationInit +- +startTime +attribute performance-timeline performance-timeline 1 @@ -4737,6 +5540,28 @@ https://www.w3.org/TR/web-animations-1/#dom-animation-starttime Animation - startTime +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animation-starttime +1 +1 +Animation +- +startTime +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-computedeffecttiming-starttime +1 +1 +ComputedEffectTiming +- +startTime argument webaudio webaudio @@ -4813,6 +5638,39 @@ https://www.w3.org/TR/webvtt1/#dom-vttcue-vttcue-starttime-endtime-text-starttim 1 VTTCue/VTTCue(startTime, endTime, text) - +startTransaction() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-starttransaction +1 +1 +SmartCardConnection +- +startTransaction(transaction) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-starttransaction +1 +1 +SmartCardConnection +- +startTransaction(transaction, options) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-starttransaction +1 +1 +SmartCardConnection +- startViewTransition() method css-view-transitions-1 @@ -4826,6 +5684,17 @@ Document - startViewTransition() method +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-document-startviewtransition +1 +1 +Document +- +startViewTransition() +method css-view-transitions-1 css-view-transitions 1 @@ -4835,13 +5704,35 @@ https://www.w3.org/TR/css-view-transitions-1/#dom-document-startviewtransition 1 Document - -startViewTransition(callback) +startViewTransition() method -css-view-transitions-1 +css-view-transitions-2 css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-document-startviewtransition +1 1 +Document +- +startViewTransition(callbackOptions) +method +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-document-startviewtransition +1 +1 +Document +- +startViewTransition(callbackOptions) +method +css-view-transitions-2 +css-view-transitions +2 snapshot -https://www.w3.org/TR/css-view-transitions-1/#dom-document-startviewtransition +https://www.w3.org/TR/css-view-transitions-2/#dom-document-startviewtransition 1 1 Document @@ -4857,6 +5748,28 @@ https://drafts.csswg.org/css-view-transitions-1/#dom-document-startviewtransitio 1 Document - +startViewTransition(updateCallback) +method +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#dom-document-startviewtransition +1 +1 +Document +- +start_time +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-start_time + +1 +source-registration JSON key +- start_url dfn appmanifest @@ -4879,14 +5792,14 @@ https://www.w3.org/TR/appmanifest/#dfn-start_url 1 manifest - -startdelay +startdrawing(hints) dfn -gamepad-extensions -gamepad-extensions +handwriting-recognition +handwriting-recognition 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-startdelay - +https://wicg.github.io/handwriting-recognition/#startdrawing-hints +1 1 - started @@ -4991,6 +5904,37 @@ https://www.w3.org/TR/css-images-4/#starting-point 1 - +starting style +dfn +css-transitions-2 +css-transitions +2 +current +https://drafts.csswg.org/css-transitions-2/#starting-style + +1 +- +starting style +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#starting-style + +1 +- +starting url +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerender-record-starting-url +1 +1 +prerender record +- starting value dfn html @@ -5011,6 +5955,7 @@ https://webidl.spec.whatwg.org/#arraybuffer-write-startingoffset 1 1 ArrayBuffer/write +SharedArrayBuffer/write - startingoffset dfn @@ -5097,7 +6042,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-slice-input-start 1 1 MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) - starts argument @@ -5109,7 +6053,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options 1 1 MLGraphBuilder/slice(input, starts, sizes, options) -MLGraphBuilder/slice(input, starts, sizes) - starts with dfn @@ -5214,25 +6157,57 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.star 1 String - +startstreaming +event +media-source-2 +media-source +2 +current +https://w3c.github.io/media-source/#dfn-startstreaming +1 +1 +- +startstreaming +event +media-source-2 +media-source +2 +snapshot +https://www.w3.org/TR/media-source-2/#dfn-startstreaming +1 +1 +- starttime dfn -resource-timing -resource-timing +html +html 1 current -https://w3c.github.io/resource-timing/#dfn-starttime +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry-starttime 1 - starttime dfn -resource-timing -resource-timing +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#chapterinformation-starttime + +1 +ChapterInformation +- +starttime +dfn +mediasession +mediasession 1 snapshot -https://www.w3.org/TR/resource-timing/#dfn-starttime +https://www.w3.org/TR/mediasession/#chapterinformation-starttime 1 +ChapterInformation - stashed exchange dfn @@ -5269,14 +6244,13 @@ fetch controller - state dfn -webgpu -webgpu +html +html 1 current -https://gpuweb.github.io/gpuweb/#buffer-internals-state +https://html.spec.whatwg.org/multipage/custom-elements.html#face-state 1 -buffer internals - state dfn @@ -5284,9 +6258,10 @@ html html 1 current -https://html.spec.whatwg.org/multipage/custom-elements.html#face-state - +https://html.spec.whatwg.org/multipage/images.html#img-req-state +1 1 +image request - state dfn @@ -5294,10 +6269,9 @@ html html 1 current -https://html.spec.whatwg.org/multipage/images.html#img-req-state -1 +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-history-state + 1 -image request - state dfn @@ -5305,7 +6279,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-history-state +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationdestination-state 1 - @@ -5321,6 +6295,28 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-state History - state +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationnavigateoptions-state +1 +1 +NavigationNavigateOptions +- +state +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationupdatecurrententryoptions-state +1 +1 +NavigationUpdateCurrentEntryOptions +- +state attribute html html @@ -5332,6 +6328,17 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-popstateevent-s PopStateEvent - state +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-popstateeventinit-state +1 +1 +PopStateEventInit +- +state argument webxr webxr @@ -5345,6 +6352,17 @@ XRSession/updateRenderState() - state dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state +1 +1 +constructor string parser +- +state +dfn fileapi fileapi 1 @@ -5398,35 +6416,36 @@ https://w3c.github.io/aria/#dfn-state - state -attribute -compute-pressure -compute-pressure +dfn +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/compute-pressure/#dom-pressurerecord-state -1 +https://w3c.github.io/aria/#dfn-state 1 -PressureRecord + - state -dfn -mathml-aam -mathml-aam +attribute +audio-session +audio-session 1 current -https://w3c.github.io/mathml-aam/#dfn-state - +https://w3c.github.io/audio-session/#dom-audiosession-state +1 1 +AudioSession - state -dfn -mathml-aam -mathml-aam +attribute +compute-pressure +compute-pressure 1 current -https://w3c.github.io/mathml-aam/#dfn-state - +https://w3c.github.io/compute-pressure/#dom-pressurerecord-state +1 1 +PressureRecord - state attribute @@ -5453,7 +6472,7 @@ MediaSession/setPositionState() - state dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -5625,125 +6644,70 @@ https://w3c.github.io/webrtc-pc/#dom-rtcsctptransport-state 1 RTCSctpTransport - -state -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcdatachannelstats-state -1 -1 -RTCDataChannelStats -- -state -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-state -1 -1 -RTCIceCandidatePairStats -- -state -attribute -webaudio -webaudio -1 -current -https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-state -1 -1 -BaseAudioContext -- -state -attribute -webmidi -webmidi -1 -current -https://webaudio.github.io/web-midi-api/#dom-midiport-state -1 -1 -MIDIPort -- -state -dfn -js-self-profiling -js-self-profiling -1 -current -https://wicg.github.io/js-self-profiling/#dfn-state - -1 -- -state -dfn -prefetch -prefetch +state +dict-member +webrtc-stats +webrtc-stats 1 current -https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-state +https://w3c.github.io/webrtc-stats/#dom-rtcdatachannelstats-state 1 1 -prefetch record +RTCDataChannelStats - state dict-member -navigation-api -navigation-api +webrtc-stats +webrtc-stats 1 current -https://wicg.github.io/navigation-api/#dom-navigationnavigateoptions-state +https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-state 1 1 -NavigationNavigateOptions +RTCIceCandidatePairStats - state -dict-member -navigation-api -navigation-api +attribute +webaudio +webaudio 1 current -https://wicg.github.io/navigation-api/#dom-navigationreloadoptions-state +https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-state 1 1 -NavigationReloadOptions +BaseAudioContext - state -dict-member -navigation-api -navigation-api +attribute +webmidi +webmidi 1 current -https://wicg.github.io/navigation-api/#dom-navigationupdatecurrententryoptions-state +https://webaudio.github.io/web-midi-api/#dom-midiport-state 1 1 -NavigationUpdateCurrentEntryOptions +MIDIPort - state dfn -navigation-api -navigation-api +js-self-profiling +js-self-profiling 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-state +https://wicg.github.io/js-self-profiling/#dfn-state 1 -fire a non-traversal navigate event - state dfn -navigation-api -navigation-api +prefetch +prefetch 1 current -https://wicg.github.io/navigation-api/#navigationdestination-state - +https://wicg.github.io/nav-speculation/prefetch.html#prefetch-record-state +1 1 -NavigationDestination +prefetch record - state dfn @@ -5757,15 +6721,15 @@ https://wicg.github.io/periodic-background-sync/#periodic-sync-registration-stat periodic sync registration - state -dfn -urlpattern -urlpattern +dict-member +web-smart-card +web-smart-card 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstatus-state 1 1 -constructor string parser +SmartCardConnectionStatus - state dfn @@ -5790,16 +6754,6 @@ https://www.w3.org/TR/IndexedDB-3/#transaction-state transaction - state -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-state - -1 -- -state attribute compute-pressure compute-pressure @@ -5877,11 +6831,11 @@ MediaRecorder - state dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-state-0 +https://www.w3.org/TR/payment-request/#dfn-state-0 1 1 PaymentRequest @@ -6003,6 +6957,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-state +- +state +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-state +1 + - state attribute @@ -6060,15 +7024,15 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoder-state VideoEncoder - state -dfn -webgpu -webgpu +attribute +webmidi +webmidi 1 snapshot -https://www.w3.org/TR/webgpu/#buffer-internals-state - +https://www.w3.org/TR/webmidi/#dom-midiport-state +1 1 -buffer internals +MIDIPort - state dict-member @@ -6165,16 +7129,6 @@ fido current https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#state-initializing-command -1 -- -state machine map -dfn -fedcm -fedcm -1 -current -https://fedidcg.github.io/FedCM/#state-machine-map - 1 - state override @@ -6277,14 +7231,37 @@ https://www.w3.org/TR/service-workers/#eventdef-serviceworker-statechange ServiceWorker - statechange -dfn +event +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#event-dtlstransport-statechange +1 + +RTCDtlsTransport +- +statechange +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-icetransport-statechange +1 +RTCIceTransport +- +statechange +event +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#event-sctptransport-statechange +1 +RTCSctpTransport - stateful animator dfn @@ -6324,6 +7301,16 @@ css-animation-worklet snapshot https://www.w3.org/TR/css-animation-worklet-1/#stateful-animator-instance +1 +- +stateful bounce tracking map +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#stateful-bounce-tracking-map + 1 - stateful commands @@ -6416,7 +7403,7 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-statement +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-statement - @@ -6461,6 +7448,16 @@ https://www.w3.org/TR/WGSL/#syntax-statement 1 syntax +- +statement +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-statement + + - statement at-rule dfn @@ -6484,13 +7481,14 @@ https://www.w3.org/TR/css-syntax-3/#statement-at-rule - states dfn -mathml-aam -mathml-aam +html +html 1 current -https://w3c.github.io/mathml-aam/#dfn-state +https://html.spec.whatwg.org/multipage/custom-elements.html#dom-elementinternals-states 1 +HTMLElement - states dfn @@ -6512,27 +7510,6 @@ current https://w3c.github.io/svg-aam/#dfn-state -- -states -attribute -custom-state-pseudo-class -custom-state-pseudo-class -1 -current -https://wicg.github.io/custom-state-pseudo-class/#dom-elementinternals-states -1 -1 -ElementInternals -- -states -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-state - -1 - states dfn @@ -6587,11 +7564,11 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-state - states set dfn -custom-state-pseudo-class -custom-state-pseudo-class +html +html 1 current -https://wicg.github.io/custom-state-pseudo-class/#states-set +https://html.spec.whatwg.org/multipage/custom-elements.html#states-set 1 - @@ -6666,7 +7643,7 @@ webdriver-bidi 1 current https://w3c.github.io/webdriver-bidi/#static-command - +1 1 - static context @@ -6701,11 +7678,21 @@ https://webbluetoothcg.github.io/web-bluetooth/#static-device-address - static image dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-static-image +https://w3c.github.io/png/#dfn-static-image + +1 +- +static image +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-static-image 1 - @@ -7021,13 +8008,13 @@ https://www.w3.org/TR/webrtc-stats/#dfn-stats-object-reference 1 - stats selection algorithm -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-stats-selection-algorithm - +1 1 - stats selection algorithm @@ -7083,6 +8070,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-status FontFaceSet - status +argument +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-navigatorlogin-setstatus-status-status +1 +1 +NavigatorLogin/setStatus(status) +- +status dfn fetch fetch @@ -7397,16 +8395,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-status-object -- -status object -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-status-object - -1 - status stage dfn @@ -7418,6 +8406,17 @@ https://wicg.github.io/webusb/#status-stage 1 - +status() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-status +1 +1 +SmartCardConnection +- status-bar value css-fonts-4 @@ -7460,22 +8459,12 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-status-id -- -status-id -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-status-id - -1 - status-pending enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-status-pending 1 @@ -7483,15 +8472,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeystatus-status-pending MediaKeyStatus - status-pending -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-status-pending - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-status-pending 1 -mediakeystatus +1 +MediaKeyStatus - statusCode attribute @@ -7865,6 +8854,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-steelblue 1 1 <color> +<named-color> - steelblue dfn @@ -7886,28 +8876,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-steelblue 1 1 <color> -- -steepness -dict-member -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlsoftplusoptions-steepness -1 -1 -MLSoftplusOptions -- -steepness -dict-member -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlsoftplusoptions-steepness -1 -1 -MLSoftplusOptions +<named-color> - stencil dfn @@ -8466,7 +9435,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight- 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - steps argument @@ -8478,7 +9446,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - steps dfn @@ -8500,7 +9467,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - steps argument @@ -8512,7 +9478,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweigh 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - steps for determining the web app's chosen display mode dfn @@ -8536,7 +9501,7 @@ https://www.w3.org/TR/appmanifest/#dfn-steps-for-determining-the-web-app-s-chose - steps for when a user changes payment method dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -8546,17 +9511,17 @@ https://w3c.github.io/payment-request/#dfn-steps-for-when-a-user-changes-payment - steps for when a user changes payment method dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-steps-for-when-a-user-changes-payment-method +https://www.w3.org/TR/payment-request/#dfn-steps-for-when-a-user-changes-payment-method - steps to check if a payment can be made dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -8566,11 +9531,11 @@ https://w3c.github.io/payment-request/#dfn-steps-to-check-if-a-payment-can-be-ma - steps to check if a payment can be made dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-check-if-a-payment-can-be-made +https://www.w3.org/TR/payment-request/#dfn-steps-to-check-if-a-payment-can-be-made - @@ -8582,6 +9547,16 @@ html current https://html.spec.whatwg.org/multipage/media.html#steps-to-expose-a-media-resource-specific-text-track +1 +- +steps to fire beforeunload +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#steps-to-fire-beforeunload + 1 - steps to install the web application @@ -8606,7 +9581,7 @@ https://wicg.github.io/manifest-incubations/#dfn-steps-to-notify-that-an-install - steps to respond to a payment request dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -8616,11 +9591,11 @@ https://w3c.github.io/payment-request/#dfn-steps-to-respond-to-a-payment-request - steps to respond to a payment request dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-respond-to-a-payment-request +https://www.w3.org/TR/payment-request/#dfn-steps-to-respond-to-a-payment-request - @@ -8696,7 +9671,7 @@ https://wicg.github.io/savedata/#dfn-steps-to-update-the-user-preference - steps to validate payment method data dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -8706,11 +9681,11 @@ https://w3c.github.io/payment-request/#dfn-steps-to-validate-payment-method-data - steps to validate payment method data dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-validate-payment-method-data +https://www.w3.org/TR/payment-request/#dfn-steps-to-validate-payment-method-data - @@ -9043,6 +10018,16 @@ https://w3c.github.io/mediasession/#dom-mediasessionaction-stop MediaSessionAction - stop +dfn +png-3 +png +3 +current +https://w3c.github.io/png/#dfn-stop + +1 +- +stop element svg2 svg @@ -9074,33 +10059,53 @@ https://www.w3.org/TR/mediastream-recording/#eventdef-mediarecorder-stop 1 MediaRecorder - -stop all sources +stop dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-stop + +1 +- +stop all sources +abstract-op mediacapture-streams mediacapture-streams 1 current https://w3c.github.io/mediacapture-main/#dfn-stop-all-sources - +1 1 - stop all sources -dfn +abstract-op mediacapture-streams mediacapture-streams 1 snapshot https://www.w3.org/TR/mediacapture-streams/#dfn-stop-all-sources - +1 1 - stop haptic effects dfn -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-stop-haptic-effects +https://w3c.github.io/gamepad/#dfn-stop-haptic-effects + +1 +- +stop haptic effects +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-stop-haptic-effects 1 - @@ -9187,13 +10192,13 @@ https://dom.spec.whatwg.org/#stop-propagation-flag Event - stop sending and receiving -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-stop-sending-and-receiving - +1 1 - stop sending and receiving @@ -9206,14 +10211,14 @@ https://www.w3.org/TR/webrtc/#dfn-stop-sending-and-receiving 1 - -stop the rtcrtptransceiver -dfn +stop the RTCRtpTransceiver +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-stop-the-rtcrtptransceiver - +1 1 - stop the rtcrtptransceiver @@ -9357,6 +10362,17 @@ AudioScheduledSourceNode - stop() method +web-bluetooth-scanning +web-bluetooth-scanning +1 +current +https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-stop +1 +1 +BluetoothLEScan +- +stop() +method js-self-profiling js-self-profiling 1 @@ -9764,6 +10780,17 @@ https://w3c.github.io/webappsec-clear-site-data/#grammardef-storage - storage dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#modules-storage +1 +1 +modules +- +storage +dfn wgsl wgsl 1 @@ -9794,6 +10821,37 @@ https://www.w3.org/TR/webgpu/#internal-usage-storage 1 internal usage - +storage access set +dfn +nav-tracking-mitigations +nav-tracking-mitigations +1 +current +https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-record-storage-access-set + +1 +bounce tracking record +- +storage and persistence +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-storage-and-persistence + +1 +- +storage and persistence +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-storage-and-persistence + +1 +- storage bottle dfn storage @@ -9814,6 +10872,17 @@ https://storage.spec.whatwg.org/#storage-bucket 1 - +storage bucket manager +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#storagebucketmanager-storage-bucket-manager + +1 +StorageBucketManager +- storage buffer dfn wgsl @@ -9908,6 +10977,26 @@ https://www.w3.org/TR/service-workers/#service-worker-registration-storage-key 1 service worker registration - +storage partition +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#storage-partition + +1 +- +storage partition key +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#storage-partition-key + +1 +- storage proxy map dfn storage @@ -9996,9 +11085,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#storage-texture +https://gpuweb.github.io/gpuweb/wgsl/#type-storage-texture 1 +type - storage texture dfn @@ -10006,9 +11096,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#storage-texture +https://www.w3.org/TR/WGSL/#type-storage-texture 1 +type - storage type dfn @@ -10030,6 +11121,17 @@ https://storage.spec.whatwg.org/#storage-usage 1 1 - +storage usage +dfn +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#storage-bucket-storage-usage + +1 +storage bucket +- storage-access permission storage-access @@ -10040,6 +11142,38 @@ https://privacycg.github.io/storage-access/#permissiondef-storage-access 1 1 - +storage-key-nonce +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#storage-key-nonce +1 +1 +- +storage-key-nonce +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#storage-key-storage-key-nonce +1 +1 +storage key +- +storage-key-origin +dfn +anonymous-iframe +anonymous-iframe +1 +current +https://wicg.github.io/anonymous-iframe/#storage-key-storage-key-origin +1 +1 +storage key +- storage-read dfn webgpu @@ -10080,6 +11214,49 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#storage-texel-formats +1 +- +storage.deletecookies +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-storagedeletecookies +1 +1 +commands +- +storage.getcookies +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-storagegetcookies +1 +1 +commands +- +storage.setcookie +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#commands-storagesetcookie +1 +1 +commands +- +storage:bucket-name +grammar +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#grammardef-storagebucket-name +1 1 - storageArea @@ -10093,6 +11270,17 @@ https://html.spec.whatwg.org/multipage/webstorage.html#dom-storageevent-storagea 1 StorageEvent - +storageBuckets +attribute +storage-buckets +storage-buckets +1 +current +https://wicg.github.io/storage-buckets/#dom-navigatorstoragebuckets-storagebuckets +1 +1 +NavigatorStorageBuckets +- storageTexture dict-member webgpu @@ -10115,49 +11303,16 @@ https://www.w3.org/TR/webgpu/#dom-gpubindgrouplayoutentry-storagetexture 1 GPUBindGroupLayoutEntry - -storage_texture_type -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-storage_texture_type - -1 -recursive descent syntax -- -storage_texture_type +store a pending config dfn -wgsl -wgsl +fenced-frame +fenced-frame 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-storage_texture_type - -1 -syntax -- -storage_texture_type -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-storage_texture_type - -1 -recursive descent syntax -- -storage_texture_type -dfn -wgsl -wgsl +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-store-a-pending-config 1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-storage_texture_type - 1 -syntax +fenced frame config mapping - store a record into an object store dfn @@ -10179,6 +11334,28 @@ https://www.w3.org/TR/IndexedDB-3/#store-a-record-into-an-object-store 1 - +store an entry in the database +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#shared-storage-database-store-an-entry-in-the-database + +1 +shared storage database +- +store nested configs +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-config-mapping-store-nested-configs +1 +1 +fenced frame config mapping +- store type dfn wgsl @@ -10355,27 +11532,15 @@ https://www.w3.org/TR/mediacapture-streams/#stored-permissions - -storetrackingexception -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-storetrackingexception - -1 -navigator -- -storetrackingexception() +storedtoken dfn -tracking-dnt -tracking-dnt +trust-token-api +trust-token-api 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-storetrackingexception +current +https://wicg.github.io/trust-token-api/#storedtoken 1 -navigator - strategy argument @@ -10513,17 +11678,6 @@ https://w3c.github.io/mediacapture-record/#dom-mediarecorder-stream MediaRecorder - stream -enum-value -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcstatstype-stream -1 -1 -RTCStatsType -- -stream attribute webaudio webaudio @@ -10581,17 +11735,6 @@ https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-stream 1 MediaStreamAudioDestinationNode - -stream -enum-value -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcstatstype-stream -1 -1 -RTCStatsType -- stream() method fileapi @@ -10653,32 +11796,32 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dom-webtransporterrorinit-streamerrorcode +https://www.w3.org/TR/webtransport/#dom-webtransporterroroptions-streamerrorcode 1 1 -WebTransportErrorInit +WebTransportErrorOptions - -streamIdentifier -dict-member -webrtc-stats -webrtc-stats -1 +streaming +attribute +media-source-2 +media-source +2 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamstats-streamidentifier +https://w3c.github.io/media-source/#dom-managedmediasource-streaming 1 - -RTCMediaStreamStats -- -streamIdentifier -dict-member -webrtc-stats -webrtc-stats 1 +ManagedMediaSource +- +streaming +attribute +media-source-2 +media-source +2 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamstats-streamidentifier +https://www.w3.org/TR/media-source-2/#dom-managedmediasource-streaming 1 - -RTCMediaStreamStats +1 +ManagedMediaSource - streaming-capabilities-request dfn @@ -10991,6 +12134,26 @@ html current https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-adr-street-address +1 +- +stress +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-stress +1 +1 +- +stress +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-stress +1 1 - stress @@ -11293,6 +12456,7 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-stretch-axis 1 +embellished operator - stretch fit dfn @@ -11505,6 +12669,18 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-stretchy 1 +embellished operator +- +stretchy +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-stretchy-0 +1 +1 +mo - strict value @@ -11556,7 +12732,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenize-policy-strict +https://urlpattern.spec.whatwg.org/#tokenize-policy-strict 1 tokenize policy @@ -11695,10 +12871,21 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-set-and-relation-specification-type +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-set-and-relation-specification-type +1 +1 +ECMAScript +- +strict subset +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#bluetoothdatafilterinit-strict-subset 1 1 -ECMAScript +BluetoothDataFilterInit - strict total order dfn @@ -11723,6 +12910,17 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-set- ECMAScript - strict-origin +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-strict-origin +1 +1 +<request-url-modifier> +- +strict-origin enum-value referrer-policy referrer-policy @@ -11734,6 +12932,17 @@ https://www.w3.org/TR/referrer-policy/#dom-referrerpolicy-strict-origin ReferrerPolicy - strict-origin-when-cross-origin +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-strict-origin-when-cross-origin +1 +1 +<request-url-modifier> +- +strict-origin-when-cross-origin enum-value referrer-policy referrer-policy @@ -11947,11 +13156,21 @@ https://infra.spec.whatwg.org/#string - string dfn -ift -ift +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-string + +1 +- +string +dfn +rdf12-concepts +rdf-concepts 1 current -https://w3c.github.io/IFT/Overview.html#string +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-string 1 - @@ -11967,6 +13186,26 @@ https://wicg.github.io/speech-api/#dom-speechgrammarlist-addfromstring-string-we SpeechGrammarList/addFromString(string, weight) SpeechGrammarList/addFromString(string) - +string +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-string + +1 +- +string +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-string + +1 +- string descriptor dfn webusb @@ -11976,6 +13215,26 @@ current https://wicg.github.io/webusb/#string-descriptor 1 +- +string direction +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-string-direction +1 + +- +string direction +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-string-direction +1 + - string exotic object dfn @@ -12092,16 +13351,6 @@ https://drafts.csswg.org/css-content-3/#funcdef-string - string() function -css-gcpm-3 -css-gcpm -3 -current -https://drafts.csswg.org/css-gcpm-3/#funcdef-string -1 -1 -- -string() -function css-content-3 css-content 3 @@ -12110,16 +13359,6 @@ https://www.w3.org/TR/css-content-3/#funcdef-string 1 1 - -string() -function -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#funcdef-string -1 -1 -- string-concatenation dfn ecmascript @@ -12309,7 +13548,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#CSSStyleValue-stringification-behavior - +1 1 CSSStyleValue - @@ -12320,7 +13559,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#CSSTransformComponent-stringification-behavior - +1 1 CSSTransformComponent - @@ -12619,6 +13858,38 @@ svg current https://svgwg.org/svg2-draft/painting.html#TermStroke 1 +1 +- +stroke +argument +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-addstroke-stroke-stroke +1 +1 +HandwritingDrawing/addStroke(stroke) +- +stroke +argument +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawing-removestroke-stroke-stroke +1 +1 +HandwritingDrawing/removeStroke(stroke) +- +stroke +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#stroke + 1 - stroke @@ -12903,8 +14174,9 @@ https://drafts.csswg.org/css-box-3/#valdef-box-stroke-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - stroke-box value @@ -12916,8 +14188,9 @@ https://drafts.csswg.org/css-box-4/#valdef-box-stroke-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - stroke-box value @@ -12995,8 +14268,9 @@ https://www.w3.org/TR/css-box-3/#valdef-box-stroke-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - stroke-box value @@ -13008,8 +14282,9 @@ https://www.w3.org/TR/css-box-4/#valdef-box-stroke-box 1 1 <box> -<shape-box> <geometry-box> +<paint-box> +<coord-box> - stroke-box value @@ -13717,6 +14992,17 @@ https://www.w3.org/TR/svg-strokes/#StrokeWidthProperty 1 1 - +strokeIndex +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingdrawingsegment-strokeindex +1 +1 +HandwritingDrawingSegment +- strokeRect(x, y, w, h) method html @@ -13792,6 +15078,17 @@ https://www.w3.org/TR/filter-effects-1/#attr-valuedef-in-strokepaint 1 in - +strokes +dfn +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#handwritingdrawing-strokes + +1 +HandwritingDrawing +- strong value css-speech-1 @@ -13877,16 +15174,6 @@ dfn css-cascade-6 css-cascade 6 -current -https://drafts.csswg.org/css-cascade-6/#strong-scoping-proximity - -1 -- -strong scoping proximity -dfn -css-cascade-6 -css-cascade -6 snapshot https://www.w3.org/TR/css-cascade-6/#strong-scoping-proximity @@ -13894,11 +15181,22 @@ https://www.w3.org/TR/css-cascade-6/#strong-scoping-proximity - strongMagnitude dict-member -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadeffectparameters-strongmagnitude +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-strongmagnitude +1 +1 +GamepadEffectParameters +- +strongMagnitude +dict-member +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters-strongmagnitude 1 1 GamepadEffectParameters @@ -13925,13 +15223,13 @@ https://www.w3.org/TR/permissions/#dfn-stronger-than 1 PermissionDescriptor - -strongmagnitude +strongly hidden dfn -gamepad-extensions -gamepad-extensions +css-anchor-position-1 +css-anchor-position 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-strongmagnitude +https://drafts.csswg.org/css-anchor-position-1/#strongly-hidden 1 - @@ -14140,7 +15438,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-structured-clone -1 + 1 - structuredClone(value, options) @@ -14185,6 +15483,17 @@ https://drafts.csswg.org/css-font-loading-3/#fontfaceset-stuck-on-the-environmen 1 FontFaceSet - +stuck on the environment +dfn +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#fontfaceset-stuck-on-the-environment +1 +1 +FontFaceSet +- style argument dom @@ -14198,6 +15507,17 @@ XSLTProcessor/importStylesheet(style) - style attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontryrule-style +1 +1 +CSSPositionTryRule +- +style +attribute css-animations-1 css-animations 1 @@ -14253,14 +15573,14 @@ CSSFontFaceRule - style attribute -cssom-1 -cssom +css-nesting-1 +css-nesting 1 current -https://drafts.csswg.org/cssom-1/#dom-cssgroupingrule-style +https://drafts.csswg.org/css-nesting-1/#dom-cssnesteddeclarations-style 1 1 -CSSGroupingRule +CSSNestedDeclarations - style attribute @@ -14417,6 +15737,17 @@ https://www.w3.org/TR/SVG2/styling.html#elementdef-style - style attribute +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#dom-csspositiontryrule-style +1 +1 +CSSPositionTryRule +- +style +attribute css-animations-1 css-animations 1 @@ -14540,7 +15871,7 @@ https://www.w3.org/TR/cssom-1/#dom-elementcssinlinestyle-style ElementCSSInlineStyle - style -dfn +element-attr mathml-core mathml-core 1 @@ -14549,6 +15880,37 @@ https://www.w3.org/TR/mathml-core/#dfn-style 1 - +style & layout interleave +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#style--layout-interleave +1 +1 +- +style & layout interleave +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#style--layout-interleave +1 +1 +- +style and layout start time +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-style-and-layout-start-time + +1 +frame timing info +- style attribute dfn css-style-attr @@ -14633,11 +15995,21 @@ captured element - style features dfn -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#style-features +https://drafts.csswg.org/css-conditional-5/#style-features + +1 +- +style features +dfn +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#style-features 1 - @@ -14700,16 +16072,6 @@ css current https://drafts.csswg.org/css-2023/#style-sheet 1 -1 -- -style sheet -dfn -css-backgrounds-3 -css-backgrounds -3 -current -https://drafts.csswg.org/css-backgrounds-3/#style-sheet - 1 - style sheet @@ -14730,6 +16092,26 @@ css current https://drafts.csswg.org/css2/#style-sheet +1 +- +style sheet +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#style-sheet +1 +1 +- +style sheet +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#style-sheet +1 1 - style sheet @@ -14750,16 +16132,6 @@ css snapshot https://www.w3.org/TR/css-2023/#style-sheet 1 -1 -- -style sheet -dfn -css-backgrounds-3 -css-backgrounds -3 -snapshot -https://www.w3.org/TR/css-backgrounds-3/#style-sheet - 1 - style sheet @@ -14842,6 +16214,17 @@ https://www.w3.org/TR/CSP3/#style-src-elem 1 1 - +styleAndLayoutStart +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-styleandlayoutstart +1 +1 +PerformanceLongAnimationFrameTiming +- styleMap attribute css-layout-api-1 @@ -14996,6 +16379,17 @@ https://www.w3.org/TR/css-fonts-4/#styleset font-variant-alternates - stylesheet +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#css-stylesheet +1 +1 +CSS +- +stylesheet attr-value html html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-su.data b/bikeshed/spec-data/readonly/anchors/anchors-su.data index 4cbd22c033..265d47f7ca 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-su.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-su.data @@ -148,6 +148,46 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#typedef-subclass-selector +1 +- +<subset/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_subset + +1 +- +<subset/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_subset + +1 +- +<sum/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_sum + +1 +- +<sum/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_sum + 1 - <supports-condition> @@ -422,13 +462,23 @@ https://www.w3.org/TR/screen-capture/#dom-surfaceswitchingpreferenceenum 1 1 - -SuspendAgent(WL, W, minimumTimeout) +SuspendThisAgent +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-suspendthisagent +1 +1 +- +SuspendThisAgent(WL, waiterRecord) abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-suspendagent +https://tc39.es/ecma262/multipage/structured-data.html#sec-suspendthisagent 1 1 - @@ -554,6 +604,17 @@ https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browser 1 String - +sub() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-sub +1 +1 +CSSNumericValue +- sub(...values) method css-typed-om-1 @@ -598,6 +659,28 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub 1 MLGraphBuilder - +sub(a, b, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sub +1 +1 +MLGraphBuilder +- +sub(a, b, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub +1 +1 +MLGraphBuilder +- sub(typedArray, index, value) method ecmascript @@ -617,16 +700,6 @@ html current https://html.spec.whatwg.org/multipage/structured-data.html#sub-deserialization 1 -1 -- -sub-document -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-sub-document - 1 - sub-document @@ -799,13 +872,13 @@ https://html.spec.whatwg.org/multipage/structured-data.html#sub-serialization 1 1 - -subarray(begin, end) +subarray(start, end) method ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.subarray +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.subarray 1 1 %TypedArray% @@ -843,7 +916,7 @@ https://www.w3.org/TR/css-typed-om-1/#subdivide-into-iterations - subdomains dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -852,12 +925,23 @@ https://w3c.github.io/network-error-logging/#dfn-subdomains 1 - subdomains +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-endpoint-group-subdomains +1 +1 +endpoint group +- +subdomains dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-subdomains +https://www.w3.org/TR/network-error-logging/#dfn-subdomains 1 - @@ -899,6 +983,16 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-subgraph +1 +- +subgraph +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-subgraph + 1 - subgrid @@ -1041,6 +1135,16 @@ rdf-concepts current https://w3c.github.io/rdf-concepts/spec/#dfn-subject +1 +- +subject +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-subjects +1 1 - subject @@ -1055,6 +1159,16 @@ https://www.w3.org/TR/json-ld11-api/#dom-rdftriple-subject RdfTriple - subject +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-subject + +1 +- +subject attribute scroll-animations-1 scroll-animations @@ -1087,6 +1201,16 @@ https://www.w3.org/TR/selectors-4/#selector-subject 1 selector - +subject +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-subjects +1 +1 +- subject (of selector) dfn css22 @@ -1095,6 +1219,26 @@ css current https://drafts.csswg.org/css2/#subject +1 +- +subject (of selector) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#subject +1 +1 +- +subject (of selector) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#subject +1 1 - subject of a selector @@ -1141,6 +1285,26 @@ https://www.w3.org/TR/selectors-4/#selector-subject 1 selector - +subject's +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-subjects +1 +1 +- +subject's +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-subjects +1 +1 +- subjects dfn css22 @@ -1149,6 +1313,26 @@ css current https://drafts.csswg.org/css2/#subject +1 +- +subjects +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-subjects +1 +1 +- +subjects +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-subjects +1 1 - subjects of the selector @@ -1189,6 +1373,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#subkeys +1 +- +submission appeals +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#submission-appeals + 1 - submission value @@ -1199,6 +1393,16 @@ html current https://html.spec.whatwg.org/multipage/custom-elements.html#face-submission-value +1 +- +submit +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit + 1 - submit @@ -1270,21 +1474,11 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#submit-button-state-(type=submit) +https://html.spec.whatwg.org/multipage/input.html#submit-button-state-(type%3Dsubmit) 1 1 input - -submit dialog -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submit-dialog - -1 -- submit() method html @@ -1328,13 +1522,13 @@ https://html.spec.whatwg.org/multipage/forms.html#category-submit 1 - -submitted +submitted from submit() method dfn html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submit-subbmitted-from-method 1 - @@ -1433,9 +1627,10 @@ webdriver-bidi webdriver-bidi 1 current -https://w3c.github.io/webdriver-bidi/#subscribe-priority - +https://w3c.github.io/webdriver-bidi/#event-subscribe-priority +1 1 +event - subscribe() method @@ -1720,28 +1915,6 @@ https://infra.spec.whatwg.org/#set-subset 1 set - -subset axis space -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#client-state-subset-axis-space - -1 -Client State -- -subset_axis_space -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#patchresponse-subset_axis_space - -1 -PatchResponse -- subsidiary dfn w3c-process @@ -1780,6 +1953,16 @@ w3c-process current https://www.w3.org/Consortium/Process/#mtg-substitute +1 +- +substitute a dashed function +dfn +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#substitute-a-dashed-function + 1 - substitute a var() @@ -1832,6 +2015,37 @@ https://drafts.csswg.org/css-env-1/#substitute-an-env 1 1 - +substitute arbitrary substitution function +dfn +css-variables-1 +css-variables +1 +current +https://drafts.csswg.org/css-variables-1/#substitute-a-var +1 +1 +- +substitute into a calc-size calculation +dfn +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#substitute-into-a-calc-size-calculation +1 +1 +- +substitute macros +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeutil-substitute-macros +1 +1 +fencedframeutil +- substitution dfn wgsl @@ -1962,46 +2176,6 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-subsuperscriptgapmin 1 -- -subtag -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_subtag -1 - -- -subtag -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_subtag -1 - -- -subtag -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_subtag -1 - -- -subtag -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_subtag -1 - - subtag registry dfn @@ -2009,7 +2183,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_iana_language_subtag_registry +https://w3c.github.io/i18n-glossary/#dfn-subtag-registry 1 - @@ -2019,59 +2193,29 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_iana_language_subtag_registry +https://www.w3.org/TR/i18n-glossary/#dfn-subtag-registry 1 - subtags dfn -i18n-glossary -i18n-glossary +ecma-402 +ecma-402 1 current -https://w3c.github.io/i18n-glossary/#def_subtag -1 - -- -subtags -dfn -appmanifest -appmanifest +https://tc39.es/ecma402/#bcp-47-subtag 1 -current -https://w3c.github.io/manifest/#dfn-subtags - 1 - subtags dfn web-nfc -web-nfc -1 -current -https://w3c.github.io/web-nfc/#dfn-subtags - -1 -- -subtags -dfn -appmanifest -appmanifest -1 -snapshot -https://www.w3.org/TR/appmanifest/#dfn-subtags - -1 -- -subtags -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_subtag +web-nfc 1 +current +https://w3c.github.io/web-nfc/#dfn-subtags +1 - subtitles attr-value @@ -2132,7 +2276,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-Crypto-attribute-subtle -1 + 1 - subtlecrypto @@ -2142,7 +2286,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto -1 + 1 - subtract @@ -2235,7 +2379,7 @@ MIME type - succeed dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2245,17 +2389,17 @@ https://w3c.github.io/network-error-logging/#dfn-succeed - succeed dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-succeed +https://www.w3.org/TR/network-error-logging/#dfn-succeed 1 - succeeded dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2276,11 +2420,11 @@ RTCStatsIceCandidatePairState - succeeded dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-succeed +https://www.w3.org/TR/network-error-logging/#dfn-succeed 1 - @@ -2308,7 +2452,7 @@ IDBRequest - success enum-value -payment-request-1.1 +payment-request payment-request 1 current @@ -2340,11 +2484,11 @@ IDBRequest - success enum-value -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-success +https://www.w3.org/TR/payment-request/#dom-paymentcomplete-success 1 1 PaymentComplete @@ -2476,7 +2620,7 @@ BaseAudioContext/decodeAudioData() - success_fraction dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2486,17 +2630,17 @@ https://w3c.github.io/network-error-logging/#dfn-success_fraction - success_fraction dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-success_fraction +https://www.w3.org/TR/network-error-logging/#dfn-success_fraction 1 - successful dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2506,17 +2650,17 @@ https://w3c.github.io/network-error-logging/#dfn-succeed - successful dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-succeed +https://www.w3.org/TR/network-error-logging/#dfn-succeed 1 - successful sampling rate dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2526,11 +2670,11 @@ https://w3c.github.io/network-error-logging/#dfn-successful-sampling-rate - successful sampling rate dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-successful-sampling-rate +https://www.w3.org/TR/network-error-logging/#dfn-successful-sampling-rate 1 - @@ -2669,25 +2813,25 @@ CSSCounterStyleRule - suffix dfn -scroll-to-text-fragment -scroll-to-text-fragment +urlpattern +urlpattern 1 current -https://wicg.github.io/scroll-to-text-fragment/#parsedtextdirective-suffix +https://urlpattern.spec.whatwg.org/#part-suffix 1 -ParsedTextDirective +part - suffix dfn -urlpattern -urlpattern +scroll-to-text-fragment +scroll-to-text-fragment 1 current -https://wicg.github.io/urlpattern/#part-suffix +https://wicg.github.io/scroll-to-text-fragment/#text-directive-suffix 1 -part +text directive - suffix descriptor @@ -2763,17 +2907,6 @@ https://html.spec.whatwg.org/multipage/interaction.html#suitable-sequentially-fo 1 - -sum -enum-value -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssmathoperator-sum -1 -1 -CSSMathOperator -- sum value dfn css-typed-om-1 @@ -2791,9 +2924,10 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#sum-value - +https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-sum-value +1 1 +CSSNumericValue - summary element @@ -2837,6 +2971,26 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-table-summary 1 HTMLTableElement - +summary bucket +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-bucket + +1 +- +summary bucket list +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-bucket-list + +1 +- summary for its parent details dfn html @@ -2846,6 +3000,58 @@ current https://html.spec.whatwg.org/multipage/interactive-elements.html#summary-for-its-parent-details 1 +- +summary operator +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-operator + +1 +- +summary_buckets +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-summary_buckets + +1 +source-registration JSON key +- +summary_operator +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-summary_operator + +1 +source-registration JSON key +- +summer time +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-summer-time +1 + +- +summer time +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-summer-time +1 + - sunken initial dfn @@ -3152,43 +3358,63 @@ https://infra.spec.whatwg.org/#set-superset 1 set - -supplementary characters +supplemental confidential council report dfn -i18n-glossary -i18n-glossary +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#supplemental-confidential-council-report +1 +1 +- +supplemental content +dfn +audiobooks +audiobooks 1 current -https://w3c.github.io/i18n-glossary/#dfn-supplementary-characters +https://w3c.github.io/audiobooks/#dfn-file-name + +1 +- +supplemental content +dfn +audiobooks +audiobooks 1 +snapshot +https://www.w3.org/TR/audiobooks/#dfn-file-name +1 - -supplementary characters +supplementary character dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn-supplementary-characters +https://w3c.github.io/i18n-glossary/#dfn-supplementary-code-point 1 - -supplementary characters +supplementary character dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-supplementary-characters +https://www.w3.org/TR/i18n-glossary/#dfn-supplementary-code-point 1 - -supplementary characters +supplementary code point dfn i18n-glossary i18n-glossary 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-supplementary-characters +current +https://w3c.github.io/i18n-glossary/#dfn-supplementary-code-point 1 - @@ -3197,8 +3423,8 @@ dfn i18n-glossary i18n-glossary 1 -current -https://w3c.github.io/i18n-glossary/#dfn-supplementary-characters +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-supplementary-code-point 1 - @@ -3763,7 +3989,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#supported-operation -1 + 1 - supported origins @@ -4001,7 +4227,7 @@ XRSession - supportedMethods dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -4012,7 +4238,7 @@ PaymentDetailsModifier - supportedMethods dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -4023,48 +4249,26 @@ PaymentMethodData - supportedMethods dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-supportedmethods +https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-supportedmethods 1 1 PaymentDetailsModifier - supportedMethods dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata-supportedmethods +https://www.w3.org/TR/payment-request/#dom-paymentmethoddata-supportedmethods 1 1 PaymentMethodData - -supportedSources -attribute -compute-pressure -compute-pressure -1 -current -https://w3c.github.io/compute-pressure/#dom-pressureobserver-supportedsources -1 -1 -PressureObserver -- -supportedSources -attribute -compute-pressure -compute-pressure -1 -snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressureobserver-supportedsources -1 -1 -PressureObserver -- supportedalgorithms dfn webcryptoapi @@ -4082,7 +4286,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-supportedAlgorithms -1 + 1 - supports bidi-only sessions @@ -4231,6 +4435,17 @@ https://html.spec.whatwg.org/multipage/scripting.html#dom-script-supports 1 HTMLScriptElement - +supports(type) +method +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#dom-clipboarditem-supports +1 +1 +ClipboardItem +- supports-loading-mode http-header prerendering-revamped @@ -4241,6 +4456,39 @@ https://wicg.github.io/nav-speculation/prerendering.html#http-headerdef-supports 1 1 - +supportsReliableOnly +attribute +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransport-supportsreliableonly +1 +1 +WebTransport +- +supportsReliableOnly +attribute +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransport-supportsreliableonly +1 +1 +WebTransport +- +supportsText +attribute +cssom-1 +cssom +1 +current +https://drafts.csswg.org/cssom-1/#dom-cssimportrule-supportstext +1 +1 +CSSImportRule +- suppress a pointer event stream dfn pointerevents3 @@ -4263,14 +4511,13 @@ https://www.w3.org/TR/pointerevents3/#dfn-suppress-a-pointer-event-stream - suppress normal scroll restoration during ongoing navigation dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-suppress-normal-scroll-restoration-during-ongoing-navigation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#suppress-normal-scroll-restoration-during-ongoing-navigation 1 -Navigation - suppressLocalAudioPlayback dict-member @@ -4399,13 +4646,13 @@ https://www.w3.org/TR/screen-capture/#dfn-suppresslocalaudioplayback 1 - surface a candidate -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-surface-the-candidate - +1 1 - surface a candidate @@ -4419,13 +4666,13 @@ https://www.w3.org/TR/webrtc/#dfn-surface-the-candidate 1 - surface the candidate -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-surface-the-candidate - +1 1 - surface the candidate @@ -4526,6 +4773,50 @@ https://www.w3.org/TR/screen-capture/#dom-displaymediastreamoptions-surfaceswitc 1 DisplayMediaStreamOptions - +surfaceX +attribute +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseevent-surfacex +1 +1 +CapturedMouseEvent +- +surfaceX +dict-member +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseeventinit-surfacex +1 +1 +CapturedMouseEventInit +- +surfaceY +attribute +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseevent-surfacey +1 +1 +CapturedMouseEvent +- +surfaceY +dict-member +captured-mouse-events +captured-mouse-events +1 +current +https://screen-share.github.io/captured-mouse-events/#dom-capturedmouseeventinit-surfacey +1 +1 +CapturedMouseEventInit +- surfacescale element-attr filter-effects-1 @@ -4587,7 +4878,7 @@ i18n-glossary 1 current https://w3c.github.io/i18n-glossary/#dfn-surrogate -1 + - surrogate @@ -4595,9 +4886,29 @@ dfn i18n-glossary i18n-glossary 1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-surrogate + + +- +surrogate code point +dfn +i18n-glossary +i18n-glossary +1 current https://w3c.github.io/i18n-glossary/#dfn-surrogate + + +- +surrogate code point +dfn +i18n-glossary +i18n-glossary 1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-surrogate + - surrogate pair @@ -4617,7 +4928,17 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#dfn-surrogate +https://w3c.github.io/i18n-glossary/#dfn-surrogate-pair +1 + +- +surrogate pair +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-surrogate-pair 1 - @@ -4631,16 +4952,6 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#surrogat 1 1 ECMAScript -- -surrogate pairs -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn-surrogate -1 - - surrogate-character-reference dfn @@ -4661,16 +4972,6 @@ current https://html.spec.whatwg.org/multipage/parsing.html#parse-error-surrogate-in-input-stream 1 -- -surrogates -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#dfn-surrogate -1 - - surroundContents(newParent) method diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sv.data b/bikeshed/spec-data/readonly/anchors/anchors-sv.data index 82f21a1856..1a38ba085a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sv.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sv.data @@ -4453,7 +4453,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-svb +https://drafts.csswg.org/css-values-4/#svb 1 1 <length> @@ -4464,7 +4464,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-svb +https://www.w3.org/TR/css-values-4/#svb 1 1 <length> @@ -4480,6 +4480,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svb 1 CSS - +svb(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svb +1 +1 +CSS +- svc dict-member webcodecs @@ -4738,12 +4749,9 @@ css-box-3 css-box 3 current -https://drafts.csswg.org/css-box-3/#box-svg-viewport-origin-box +https://drafts.csswg.org/css-box-3/#svg-viewport-origin-box 1 -<box> -<shape-box> -<geometry-box> - svg viewport origin box dfn @@ -4751,12 +4759,9 @@ css-box-4 css-box 4 current -https://drafts.csswg.org/css-box-4/#box-svg-viewport-origin-box +https://drafts.csswg.org/css-box-4/#svg-viewport-origin-box 1 -<box> -<shape-box> -<geometry-box> - svg viewport origin box dfn @@ -4764,12 +4769,9 @@ css-box-3 css-box 3 snapshot -https://www.w3.org/TR/css-box-3/#box-svg-viewport-origin-box +https://www.w3.org/TR/css-box-3/#svg-viewport-origin-box 1 -<box> -<shape-box> -<geometry-box> - svg viewport origin box dfn @@ -4777,12 +4779,9 @@ css-box-4 css-box 4 snapshot -https://www.w3.org/TR/css-box-4/#box-svg-viewport-origin-box +https://www.w3.org/TR/css-box-4/#svg-viewport-origin-box 1 -<box> -<shape-box> -<geometry-box> - svg viewports dfn @@ -4810,7 +4809,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-svh +https://drafts.csswg.org/css-values-4/#svh 1 1 <length> @@ -4821,7 +4820,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-svh +https://www.w3.org/TR/css-values-4/#svh 1 1 <length> @@ -4837,13 +4836,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svh 1 CSS - +svh(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svh +1 +1 +CSS +- svi value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-svi +https://drafts.csswg.org/css-values-4/#svi 1 1 <length> @@ -4854,7 +4864,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-svi +https://www.w3.org/TR/css-values-4/#svi 1 1 <length> @@ -4870,13 +4880,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svi 1 CSS - +svi(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svi +1 +1 +CSS +- svmax value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-svmax +https://drafts.csswg.org/css-values-4/#svmax 1 1 <length> @@ -4887,7 +4908,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-svmax +https://www.w3.org/TR/css-values-4/#svmax 1 1 <length> @@ -4903,13 +4924,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svmax 1 CSS - +svmax(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svmax +1 +1 +CSS +- svmin value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-svmin +https://drafts.csswg.org/css-values-4/#svmin 1 1 <length> @@ -4920,7 +4952,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-svmin +https://www.w3.org/TR/css-values-4/#svmin 1 1 <length> @@ -4936,13 +4968,24 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svmin 1 CSS - +svmin(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svmin +1 +1 +CSS +- svw value css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-svw +https://drafts.csswg.org/css-values-4/#svw 1 1 <length> @@ -4953,7 +4996,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-svw +https://www.w3.org/TR/css-values-4/#svw 1 1 <length> @@ -4969,3 +5012,14 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svw 1 CSS - +svw(value) +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svw +1 +1 +CSS +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sw.data b/bikeshed/spec-data/readonly/anchors/anchors-sw.data index d69ad0d53c..213f4dc6b3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sw.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sw.data @@ -1,3 +1,25 @@ +@swash +at-rule +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-swash +1 +1 +@font-feature-values +- +@swash +at-rule +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#at-ruledef-font-feature-values-swash +1 +1 +@font-feature-values +- sw-resize value css-ui-3 @@ -53,6 +75,17 @@ https://www.w3.org/TR/css-ui-4/#valdef-cursor-sw-resize 1 cursor - +swallowed +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-swallowed +1 +1 +SmartCardConnectionState +- swap value css-fonts-4 @@ -93,6 +126,16 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#swap +1 +- +swap due to a try-tactic +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#swap-due-to-a-try-tactic + 1 - swash @@ -221,6 +264,16 @@ css-font-loading current https://drafts.csswg.org/css-font-loading-3/#switch-the-fontfaceset-to-loaded +1 +- +switch the fontfaceset to loaded +dfn +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#switch-the-fontfaceset-to-loaded + 1 - switch the fontfaceset to loading @@ -231,6 +284,16 @@ css-font-loading current https://drafts.csswg.org/css-font-loading-3/#switch-the-fontfaceset-to-loading +1 +- +switch the fontfaceset to loading +dfn +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#switch-the-fontfaceset-to-loading + 1 - switch to frame @@ -299,40 +362,62 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-switch_body +https://gpuweb.github.io/gpuweb/wgsl/#syntax-switch_body 1 -recursive descent syntax +syntax - switch_body dfn wgsl wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-switch_body + +1 +syntax +- +switch_clause +dfn +wgsl +wgsl +1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-switch_body +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-switch_clause + +1 +recursive descent syntax +- +switch_clause +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-switch_clause 1 syntax - -switch_body +switch_clause dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-switch_body +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-switch_clause 1 recursive descent syntax - -switch_body +switch_clause dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-switch_body +https://www.w3.org/TR/WGSL/#syntax-switch_clause 1 syntax diff --git a/bikeshed/spec-data/readonly/anchors/anchors-sy.data b/bikeshed/spec-data/readonly/anchors/anchors-sy.data index fbea6f0952..e866a8e42f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-sy.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-sy.data @@ -74,6 +74,66 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol-constructo 1 1 - +%Symbol.asyncIterator% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.hasInstance% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.isConcatSpreadable% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.iterator% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.match% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.matchAll% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- %Symbol.prototype% interface ecmascript @@ -84,6 +144,76 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-properties-of-the 1 1 - +%Symbol.replace% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.search% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.species% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.split% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.toPrimitive% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.toStringTag% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- +%Symbol.unscopables% +interface +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +1 +1 +- %SyntaxError% exception ecmascript @@ -92,6 +222,46 @@ ecmascript current https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-native-error-types-used-in-this-standard-syntaxerror 1 +1 +- +%symbol.hasinstance% +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/infrastructure.html#symbol.hasinstance + +1 +- +%symbol.isconcatspreadable% +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/infrastructure.html#symbol.isconcatspreadable + +1 +- +%symbol.toprimitive% +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/infrastructure.html#symbol.toprimitive + +1 +- +%symbol.tostringtag% +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/infrastructure.html#symbol.tostringtag + 1 - %syntaxerror.prototype% @@ -144,6 +314,66 @@ https://www.w3.org/TR/css-counter-styles-3/#typedef-symbols-type 1 1 - +<syntax-combinator> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-syntax-combinator +1 +1 +- +<syntax-component-name> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-syntax-component-name +1 +1 +- +<syntax-component> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-syntax-component +1 +1 +- +<syntax-multiplier> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-syntax-multiplier +1 +1 +- +<syntax-type> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-syntax-type +1 +1 +- +<syntax> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-syntax +1 +1 +- <system-color> type css-color-4 @@ -164,6 +394,26 @@ https://www.w3.org/TR/css-color-4/#typedef-system-color 1 1 - +<system-family-name> +type +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#system-family-name-value +1 +1 +- +<system-family-name> +type +css-fonts-4 +css-fonts +4 +snapshot +https://www.w3.org/TR/css-fonts-4/#system-family-name-value +1 +1 +- SYNTAX_ERR const webidl @@ -196,6 +446,27 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol-descriptio 1 Symbol - +Symbol.prototype %Symbol.toPrimitive% (hint) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.prototype-%25symbol.toprimitive%25 +1 +1 +Symbol.prototype [ %Symbol.toPrimitive% ] ( hint ) +- +SymbolDescriptiveString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symboldescriptivestring +1 +1 +- SymbolDescriptiveString(sym) abstract-op ecmascript @@ -287,6 +558,26 @@ https://www.w3.org/TR/screen-capture/#dom-systemaudiopreferenceenum 1 1 - +SystemTimeZoneIdentifier +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-systemtimezoneidentifier +1 +1 +- +SystemTimeZoneIdentifier() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-systemtimezoneidentifier +1 +1 +- sy argument geometry-1 @@ -334,6 +625,46 @@ https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-skewy-sy-sy 1 DOMMatrixReadOnly/skewY(sy) DOMMatrixReadOnly/skewY() +- +syllabary +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-syllabary +1 + +- +syllabary +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-syllabary +1 + +- +syllable +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-syllable +1 + +- +syllable +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-syllable +1 + - symbol element @@ -515,6 +846,29 @@ snapshot https://www.w3.org/TR/mathml-core/#dfn-symmetric 1 +embellished operator +- +symmetric +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#dfn-symmetric-0 +1 +1 +mo +- +symmetricDifference(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.symmetricdifference +1 +1 +Set - symposia dfn @@ -670,50 +1024,6 @@ webrtc-encoded-transform snapshot https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-synchronizationsource 1 -1 -RTCEncodedVideoFrameMetadata -- -synchronizationsource -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframemetadata-synchronizationsource - -1 -RTCEncodedAudioFrameMetadata -- -synchronizationsource -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframemetadata-synchronizationsource - -1 -RTCEncodedVideoFrameMetadata -- -synchronizationsource -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframemetadata-synchronizationsource - -1 -RTCEncodedAudioFrameMetadata -- -synchronizationsource -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframemetadata-synchronizationsource - 1 RTCEncodedVideoFrameMetadata - @@ -770,6 +1080,17 @@ https://www.w3.org/TR/SVG2/types.html#TermSynchronize 1 1 - +synchronizes-with +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-synchronizes-with +1 +1 +ECMAScript +- synchronous flag dfn xhr @@ -818,16 +1139,6 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#synchronous-section -1 -- -synchronously instantiate a webassembly module -dfn -wasm-js-api-2 -wasm-js-api -2 -current -https://webassembly.github.io/spec/js-api/#synchronously-instantiate-a-webassembly-module - 1 - synchronously replace the rules of a cssstylesheet @@ -856,17 +1167,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_syntactic_content -1 - -- -syntactic content -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_syntactic_content +https://w3c.github.io/i18n-glossary/#dfn-syntactic-content 1 - @@ -876,17 +1177,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_syntactic_content -1 - -- -syntactic content -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_syntactic_content +https://www.w3.org/TR/i18n-glossary/#dfn-syntactic-content 1 - @@ -1103,7 +1394,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SyntaxError -1 + 1 - synthesize baseline @@ -1232,6 +1523,28 @@ https://webaudio.github.io/web-midi-api/#dom-midipermissiondescriptor-sysex 1 MidiPermissionDescriptor - +sysex +dict-member +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midioptions-sysex +1 +1 +MIDIOptions +- +sysex +dict-member +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midipermissiondescriptor-sysex +1 +1 +MidiPermissionDescriptor +- sysexEnabled attribute webmidi @@ -1243,6 +1556,17 @@ https://webaudio.github.io/web-midi-api/#dom-midiaccess-sysexenabled 1 MIDIAccess - +sysexEnabled +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiaccess-sysexenabled +1 +1 +MIDIAccess +- system descriptor css-counter-styles-3 @@ -1325,6 +1649,26 @@ clipboard-apis snapshot https://www.w3.org/TR/clipboard-apis/#system-clipboard-data +1 +- +system clipboard item +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#system-clipboard-item + +1 +- +system clipboard representation +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#system-clipboard-representation + 1 - system color pairings @@ -1384,7 +1728,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#dfn-system-exclusive -1 + 1 - system focus @@ -1416,6 +1760,26 @@ css current https://drafts.csswg.org/css2/#system-fonts +1 +- +system fonts +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/fonts.html#x11 +1 +1 +- +system fonts +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/fonts.html#x11 +1 1 - system id @@ -1437,6 +1801,26 @@ keyboard-lock current https://wicg.github.io/keyboard-lock/#system-key-press-handler +1 +- +system real time +dfn +webmidi +webmidi +1 +current +https://webaudio.github.io/web-midi-api/#dfn-system-real-time + +1 +- +system real time +dfn +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dfn-system-real-time + 1 - system resources @@ -1469,6 +1853,17 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#system-visibility 1 - +system-cancelled +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-system-cancelled +1 +1 +SmartCardResponseCode +- system-level audio callback dfn webaudio diff --git a/bikeshed/spec-data/readonly/anchors/anchors-t0.data b/bikeshed/spec-data/readonly/anchors/anchors-t0.data new file mode 100644 index 0000000000..4b4faa3b33 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-t0.data @@ -0,0 +1,22 @@ +t0 +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-t0 +1 +1 +SmartCardConnectionState +- +t0 +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardprotocol-t0 +1 +1 +SmartCardProtocol +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-t1.data b/bikeshed/spec-data/readonly/anchors/anchors-t1.data index 72d2922ff4..97f578ee89 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-t1.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-t1.data @@ -1,12 +1,24 @@ t1 -dfn -motion-1 -motion +enum-value +web-smart-card +web-smart-card 1 current -https://drafts.fxtf.org/motion-1/#t1 - +https://wicg.github.io/web-smart-card/#dom-smartcardconnectionstate-t1 +1 +1 +SmartCardConnectionState +- +t1 +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardprotocol-t1 +1 1 +SmartCardProtocol - t1 dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-t2.data b/bikeshed/spec-data/readonly/anchors/anchors-t2.data index 7a5b43d2d5..4fdf0aced2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-t2.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-t2.data @@ -3,16 +3,6 @@ dfn motion-1 motion 1 -current -https://drafts.fxtf.org/motion-1/#t2 - -1 -- -t2 -dfn -motion-1 -motion -1 snapshot https://www.w3.org/TR/motion-1/#t2 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-t_.data b/bikeshed/spec-data/readonly/anchors/anchors-t_.data index 883ba0e04b..516f3797e6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-t_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-t_.data @@ -20,12 +20,13 @@ https://w3c.github.io/webcrypto/#dom-rsaotherprimesinfo-t RsaOtherPrimesInfo - t -dfn -tracking-dnt -tracking-dnt +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingpoint-t 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-t - 1 +HandwritingPoint - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ta.data b/bikeshed/spec-data/readonly/anchors/anchors-ta.data index afb9454d0b..4a0c79e7c3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ta.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ta.data @@ -20,6 +20,28 @@ https://www.w3.org/TR/wasm-js-api-2/#dom-importexportkind-table 1 ImportExportKind - +"tanh" +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlrecurrentnetworkactivation-tanh +1 +1 +MLRecurrentNetworkActivation +- +"tanh" +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlrecurrentnetworkactivation-tanh +1 +1 +MLRecurrentNetworkActivation +- 'tactile' media group dfn css22 @@ -29,6 +51,26 @@ current https://drafts.csswg.org/css2/#tactile-media-group +- +'tactile' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#tactile-media-group +1 +1 +- +'tactile' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#tactile-media-group +1 +1 - ::target-text selector @@ -118,6 +160,46 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#target-within-pseudo 1 +1 +- +<tan/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_tan + +1 +- +<tan/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_tan + +1 +- +<tanh/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_tanh + +1 +- +<tanh/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_tanh + 1 - <target-contrast> @@ -387,24 +469,34 @@ https://wicg.github.io/scheduling-apis/#tasksignal 1 1 - +TaskSignalAnyInit +dictionary +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#dictdef-tasksignalanyinit +1 +1 +- [[targetScreenFullscreen]] attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-window-targetscreenfullscreen-slot +https://w3c.github.io/window-management/#dom-window-targetscreenfullscreen-slot 1 1 Window - [[targetScreenFullscreen]] attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-window-targetscreenfullscreen-slot +https://www.w3.org/TR/window-management/#dom-window-targetscreenfullscreen-slot 1 1 Window @@ -540,6 +632,27 @@ https://html.spec.whatwg.org/multipage/interaction.html#dom-tabindex 1 HTMLOrSVGElement - +tab_strip +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-tab_strip + +1 +- +tabbed +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-tabbed +1 +1 +display mode +- tabindex element-attr html @@ -584,7 +697,7 @@ https://www.w3.org/TR/SVG2/struct.html#SVGElementTabindexAttribute core-attributes - tabindex -dfn +element-attr mathml-core mathml-core 1 @@ -701,6 +814,26 @@ https://html.spec.whatwg.org/multipage/tables.html#the-table-element - table value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table +1 +1 +- +table +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table +1 +1 +- +table +value css-display-3 css-display 3 @@ -770,6 +903,26 @@ css current https://drafts.csswg.org/css2/#table-element +1 +- +table element +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x2 +1 +1 +- +table element +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x2 +1 1 - table for cookie conversion @@ -900,6 +1053,26 @@ wasm-js-api snapshot https://www.w3.org/TR/wasm-js-api-2/#table-object-cache +1 +- +table of contents +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-toc + +1 +- +table of contents +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-toc + 1 - table of effective connection types @@ -982,25 +1155,35 @@ https://www.w3.org/TR/webdriver2/#dfn-table-of-page-load-strategies 1 - -table of simple dialogs +table of provisional permissions dfn -webdriver2 -webdriver -2 +permissions-registry +permissions-registry +1 current -https://w3c.github.io/webdriver/#dfn-table-of-simple-dialogs +https://w3c.github.io/permissions-registry/#dfn-table-of-provisional-permissions + +- +table of provisional permissions +dfn +permissions +permissions 1 +current +https://w3c.github.io/permissions/#dfn-table-of-provisional-permissions + + - -table of simple dialogs +table of provisional permissions dfn -webdriver2 -webdriver -2 +permissions +permissions +1 snapshot -https://www.w3.org/TR/webdriver2/#dfn-table-of-simple-dialogs +https://www.w3.org/TR/permissions/#dfn-table-of-provisional-permissions + -1 - table of standard capabilities dfn @@ -1021,6 +1204,76 @@ snapshot https://www.w3.org/TR/webdriver2/#dfn-table-of-standard-capabilities 1 +- +table of standard storage partition key attributes +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#table-of-standard-storage-partition-key-attributes + +1 +- +table of standardized permissions +dfn +permissions-registry +permissions-registry +1 +current +https://w3c.github.io/permissions-registry/#dfn-table-of-standardized-permissions-of-the-web-platform + + +- +table of standardized permissions +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-table-of-standardized-permissions-of-the-web-platform + + +- +table of standardized permissions +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-table-of-standardized-permissions-of-the-web-platform + + +- +table of standardized permissions of the web platform +dfn +permissions-registry +permissions-registry +1 +current +https://w3c.github.io/permissions-registry/#dfn-table-of-standardized-permissions-of-the-web-platform + + +- +table of standardized permissions of the web platform +dfn +permissions +permissions +1 +current +https://w3c.github.io/permissions/#dfn-table-of-standardized-permissions-of-the-web-platform + + +- +table of standardized permissions of the web platform +dfn +permissions +permissions +1 +snapshot +https://www.w3.org/TR/permissions/#dfn-table-of-standardized-permissions-of-the-web-platform + + - table wrapper box dfn @@ -1132,6 +1385,26 @@ display - table-caption value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-caption +1 +1 +- +table-caption +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-caption +1 +1 +- +table-caption +value css-display-3 css-display 3 @@ -1199,6 +1472,26 @@ display - table-cell value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell +1 +1 +- +table-cell +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell +1 +1 +- +table-cell +value css-display-3 css-display 3 @@ -1266,6 +1559,26 @@ display - table-column value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-column +1 +1 +- +table-column +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-column +1 +1 +- +table-column +value css-display-3 css-display 3 @@ -1333,6 +1646,26 @@ display - table-column-group value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-column-group +1 +1 +- +table-column-group +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-column-group +1 +1 +- +table-column-group +value css-display-3 css-display 3 @@ -1410,19 +1743,39 @@ display - table-footer-group value -css-display-3 -css-display -3 -snapshot -https://www.w3.org/TR/css-display-3/#valdef-display-table-footer-group +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-footer-group 1 1 -display -<display-internal> - table-footer-group -dfn -css-tables-3 +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-footer-group +1 +1 +- +table-footer-group +value +css-display-3 +css-display +3 +snapshot +https://www.w3.org/TR/css-display-3/#valdef-display-table-footer-group +1 +1 +display +<display-internal> +- +table-footer-group +dfn +css-tables-3 css-tables 3 snapshot @@ -1497,6 +1850,26 @@ display - table-header-group value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-header-group +1 +1 +- +table-header-group +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-header-group +1 +1 +- +table-header-group +value css-display-3 css-display 3 @@ -1558,6 +1931,26 @@ https://drafts.csswg.org/css2/#propdef-table-layout 1 - table-layout +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout +1 +1 +- +table-layout +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout +1 +1 +- +table-layout dfn css22 css @@ -1664,6 +2057,26 @@ display - table-row value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-row +1 +1 +- +table-row +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-row +1 +1 +- +table-row +value css-display-3 css-display 3 @@ -1731,6 +2144,26 @@ display - table-row-group value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#value-def-table-row-group +1 +1 +- +table-row-group +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#value-def-table-row-group +1 +1 +- +table-row-group +value css-display-3 css-display 3 @@ -1833,6 +2266,68 @@ https://www.w3.org/TR/filter-effects-1/#dom-svgcomponenttransferfunctionelement- 1 SVGComponentTransferFunctionElement - +tablepatch +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#tablepatch + +1 +- +tablepatch +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#tablepatch + +1 +- +tables +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#glyphpatches-tables + +1 +GlyphPatches +- +tables +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x0 +1 +1 +- +tables +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x0 +1 +1 +- +tables +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#glyphpatches-tables + +1 +GlyphPatches +- tablevalues element-attr filter-effects-1 @@ -1913,6 +2408,26 @@ css current https://drafts.csswg.org/css2/#tabular-container +1 +- +tabular container +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/tables.html#x20 +1 +1 +- +tabular container +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/tables.html#x20 +1 1 - tabular container @@ -2017,6 +2532,28 @@ https://notifications.spec.whatwg.org/#tag notification - tag +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#design-space-segment-tag + +1 +Design Space Segment +- +tag +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#tablepatch-tag + +1 +TablePatch +- +tag attribute background-sync background-sync @@ -2136,6 +2673,28 @@ https://www.w3.org/Consortium/Process/#technical-architecture-group 1 1 - +tag +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#design-space-segment-tag + +1 +Design Space Segment +- +tag +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#tablepatch-tag + +1 +TablePatch +- tag name dfn html @@ -2306,6 +2865,16 @@ css-color snapshot https://www.w3.org/TR/css-color-4/#tagged-image 1 +1 +- +tagging +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-tagging + 1 - tagging @@ -2335,7 +2904,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-AesGcmParams-tagLength -1 + 1 - tags @@ -2701,6 +3270,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-tan 1 1 <color> +<named-color> - tan dfn @@ -2722,6 +3292,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-tan 1 1 <color> +<named-color> - tan() function @@ -2743,18 +3314,29 @@ https://www.w3.org/TR/css-values-4/#funcdef-tan 1 1 - -tan(x) +tan(input) method -ecmascript -ecmascript +webnn +webnn 1 current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.tan +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tan 1 1 -Math +MLGraphBuilder - -tan(x) +tan(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan +1 +1 +MLGraphBuilder +- +tan(input, options) method webnn webnn @@ -2765,7 +3347,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tan 1 MLGraphBuilder - -tan(x) +tan(input, options) method webnn webnn @@ -2776,6 +3358,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan 1 MLGraphBuilder - +tan(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.tan +1 +1 +Math +- tangentialPressure attribute pointerevents3 @@ -2820,40 +3413,29 @@ https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-tangentialpressure 1 PointerEventInit - -tanh() +tanh(input) method webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tanh%E2%91%A0 +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tanh 1 1 MLGraphBuilder - -tanh() +tanh(input) method webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh%E2%91%A0 +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh 1 1 MLGraphBuilder - -tanh(x) -method -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.tanh -1 -1 -Math -- -tanh(x) +tanh(input, options) method webnn webnn @@ -2864,7 +3446,7 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tanh 1 MLGraphBuilder - -tanh(x) +tanh(input, options) method webnn webnn @@ -2875,6 +3457,17 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh 1 MLGraphBuilder - +tanh(x) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.tanh +1 +1 +Math +- tao check dfn fetch @@ -3236,7 +3829,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceeventtiming-target +https://w3c.github.io/event-timing/#dom-performanceeventtiming-target 1 1 PerformanceEventTiming @@ -3247,7 +3840,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#target +https://w3c.github.io/event-timing/#target 1 1 - @@ -3263,16 +3856,6 @@ https://w3c.github.io/mediasession/#media-session-action-source-target media session action source - target -dfn -pointerlock-2 -pointerlock -2 -current -https://w3c.github.io/pointerlock/#dfn-target - -1 -- -target attribute touch-events touch-events @@ -3481,16 +4064,6 @@ https://www.w3.org/TR/mediasession/#media-session-action-source-target media session action source - target -dfn -pointerlock-2 -pointerlock -2 -snapshot -https://www.w3.org/TR/pointerlock-2/#dfn-target - -1 -- -target attribute resize-observer-1 resize-observer @@ -3589,12 +4162,22 @@ https://drafts.csswg.org/css-anchor-position-1/#target-anchor-element 1 - -target attribute named +target anchor element dfn -webpackage -webpackage +css-anchor-position-1 +css-anchor-position 1 -current +snapshot +https://www.w3.org/TR/css-anchor-position-1/#target-anchor-element + +1 +- +target attribute named +dfn +webpackage +webpackage +1 +current https://wicg.github.io/webpackage/loading.html#target-attribute-named 1 @@ -3629,16 +4212,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-target-domain -- -target domain -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-target-domain - -1 - target element dfn @@ -3683,13 +4256,13 @@ https://w3c.github.io/aria/#dfn-target-element - target element dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-target-element +https://w3c.github.io/aria/#dfn-target-element + -1 - target element dfn @@ -3710,6 +4283,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-target-element +- +target element +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-target-element + + - target element dfn @@ -3717,9 +4300,10 @@ web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#target-element - +https://www.w3.org/TR/web-animations-1/#effect-target-target-element 1 +1 +effect target - target entry dfn @@ -3731,6 +4315,17 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#changing-nav-contin 1 - +target fenced frame config +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#source-snapshot-params-target-fenced-frame-config + +1 +source snapshot params +- target frame rate dfn webxr @@ -3775,11 +4370,11 @@ XRWebGLLayer - target ip address space dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#request-target-ip-address-space +https://wicg.github.io/private-network-access/#request-target-ip-address-space 1 1 request @@ -3846,6 +4441,17 @@ https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rule-t 1 speculation rule - +target number of ad components +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#generated-bid-target-number-of-ad-components + +1 +generated bid +- target object dfn html @@ -3874,26 +4480,6 @@ webrtc-identity snapshot https://www.w3.org/TR/webrtc-identity/#dfn-target-peer-identity -1 -- -target phase -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#target-phase - -1 -- -target phase -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#target-phase - 1 - target property @@ -3933,9 +4519,10 @@ web-animations-1 web-animations 1 snapshot -https://www.w3.org/TR/web-animations-1/#target-pseudo-selector - +https://www.w3.org/TR/web-animations-1/#effect-target-target-pseudo-selector +1 1 +effect target - target snapshot params dfn @@ -3945,6 +4532,16 @@ html current https://html.spec.whatwg.org/multipage/browsing-the-web.html#target-snapshot-params +1 +- +target snapshot sandboxing flags +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-params-target-sandbox + 1 - target-counter() @@ -3967,16 +4564,6 @@ https://www.w3.org/TR/css-content-3/#funcdef-target-counter 1 1 - -target-counter() -function -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#funcdef-target-counter -1 -1 -- target-counters() function css-content-3 @@ -3997,16 +4584,6 @@ https://www.w3.org/TR/css-content-3/#funcdef-target-counters 1 1 - -target-counters() -function -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#funcdef-target-counters -1 -1 -- target-text() function css-content-3 @@ -4027,15 +4604,27 @@ https://www.w3.org/TR/css-content-3/#target-text-function 1 1 - -target-text() -function -css-gcpm-3 -css-gcpm -3 -snapshot -https://www.w3.org/TR/css-gcpm-3/#target-text-function +targetAddressSpace +attribute +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#dom-request-targetaddressspace 1 1 +Request +- +targetAddressSpace +dict-member +private-network-access +private-network-access +1 +current +https://wicg.github.io/private-network-access/#dom-requestinit-targetaddressspace +1 +1 +RequestInit - targetBitrate dict-member @@ -4081,6 +4670,17 @@ https://www.w3.org/TR/orientation-sensor/#dom-orientationsensor-populatematrix-t 1 OrientationSensor/populateMatrix(targetMatrix) - +targetNumAdComponents +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidoutput-targetnumadcomponents +1 +1 +GenerateBidOutput +- targetOrigin dict-member html @@ -4092,6 +4692,50 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-windowpostmessa 1 WindowPostMessageOptions - +targetRange +method +input-events-2 +input-events +2 +current +https://w3c.github.io/input-events/#dom-inputevent-gettargetranges +1 +1 +InputEvent +- +targetRange +dict-member +input-events-2 +input-events +2 +current +https://w3c.github.io/input-events/#dom-inputeventinit-targetranges +1 +1 +InputEventInit +- +targetRange +method +input-events-2 +input-events +2 +snapshot +https://www.w3.org/TR/input-events-2/#dom-inputevent-gettargetranges +1 +1 +InputEvent +- +targetRange +dict-member +input-events-2 +input-events +2 +snapshot +https://www.w3.org/TR/input-events-2/#dom-inputeventinit-targetranges +1 +1 +InputEventInit +- targetRanges dict-member input-events-2 @@ -4103,6 +4747,17 @@ https://w3c.github.io/input-events/#dom-inputeventinit-targetranges 1 InputEventInit - +targetRanges +dict-member +input-events-2 +input-events +2 +snapshot +https://www.w3.org/TR/input-events-2/#dom-inputeventinit-targetranges +1 +1 +InputEventInit +- targetRayMode attribute webxr @@ -4246,36 +4901,25 @@ https://www.w3.org/TR/miniapp-manifest/#dfn-target_code 1 MiniApp platform version resource - -targeted advertising +targetaddressspace dfn -tracking-dnt -tracking-dnt +private-network-access +private-network-access 1 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-targeted-advertising - - +https://wicg.github.io/private-network-access/#targetaddressspace +1 +1 - targeted advertising dfn tracking-dnt tracking-dnt 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-targeted-advertising - -1 -- -targetranges -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dom-inputeventinit-targetranges +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-targeted-advertising -inputeventinit - targets dict-member @@ -4310,27 +4954,6 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dom-trackingexdata-targets TrackingExData - targets -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-targets - -1 -- -targets -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata-targets - -1 -trackingexdata -- -targets dict-member webgpu webgpu @@ -4391,7 +5014,17 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_tashkil +https://w3c.github.io/i18n-glossary/#dfn-tashkil +1 + +- +tashkil +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-tashkil 1 - @@ -4401,7 +5034,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task 1 - @@ -4415,6 +5048,50 @@ https://html.spec.whatwg.org/multipage/webappapis.html#concept-task 1 1 - +task +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#task-handle-task + +1 +task handle +- +task +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#task-scope-task + +1 +task scope +- +task attribution id +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#task-task-attribution-id + +1 +task +- +task complete steps +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#task-handle-task-complete-steps + +1 +task handle +- task destination dfn fetch @@ -4426,6 +5103,38 @@ https://fetch.spec.whatwg.org/#fetch-params-task-destination 1 fetch params - +task durations +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#frame-timing-info-task-durations + +1 +frame timing info +- +task handle +dfn +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#task-handle + +1 +- +task id to interaction task id +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#document-task-id-to-interaction-task-id + +1 +document +- task queues dfn html @@ -4458,6 +5167,26 @@ https://www.w3.org/TR/service-workers/#dfn-service-worker-registration-task-queu 1 service worker registration - +task scope +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#concept-task-scope + +1 +- +task scope stack +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#task-scope-stack + +1 +- task source dfn html @@ -4492,13 +5221,36 @@ scheduler task queue - taxonomy dfn -mathml-aam -mathml-aam +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-taxonomy + +1 +browsing topics types +- +taxonomy +dfn +topics +topics 1 current -https://w3c.github.io/mathml-aam/#dfn-taxonomy +https://patcg-individual-drafts.github.io/topics/#epoch-taxonomy 1 +epoch +- +taxonomy +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#user-agent-taxonomy + +1 +user agent - taxonomy dfn @@ -4530,3 +5282,47 @@ https://www.w3.org/TR/wai-aria-1.2/#dfn-taxonomy - +taxonomy version +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-taxonomy-version + +1 +browsing topics types +- +taxonomy version +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#epoch-taxonomy-version + +1 +epoch +- +taxonomy version +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#user-agent-taxonomy-version + +1 +user agent +- +taxonomyVersion +dict-member +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-browsingtopic-taxonomyversion +1 +1 +BrowsingTopic +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tc.data b/bikeshed/spec-data/readonly/anchors/anchors-tc.data index f58514dfeb..757fcf5072 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tc.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tc.data @@ -1,3 +1,63 @@ +TCPServerSocket +interface +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocket +1 +1 +- +TCPServerSocketOpenInfo +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketopeninfo +1 +1 +- +TCPServerSocketOptions +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpserversocketoptions +1 +1 +- +TCPSocket +interface +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocket +1 +1 +- +TCPSocketOpenInfo +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo +1 +1 +- +TCPSocketOptions +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions +1 +1 +- tcp enum-value webrtc @@ -31,6 +91,17 @@ https://www.w3.org/TR/webrtc/#dom-rtciceprotocol-tcp 1 RTCIceProtocol - +tcp +enum-value +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtciceservertransportprotocol-tcp +1 +1 +RTCIceServerTransportProtocol +- tcpType attribute webrtc @@ -75,3 +146,23 @@ https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-tcptype 1 RTCIceCandidate - +tcpserversocket task source +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-tcpserversocket-task-source + +1 +- +tcpsocket task source +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-tcpsocket-task-source + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-te.data b/bikeshed/spec-data/readonly/anchors/anchors-te.data index d911912fc8..7e6d7bc62c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-te.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-te.data @@ -41,6 +41,17 @@ https://w3c.github.io/web-nfc/#dfn-text-0 1 - "text" +enum-value +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognitiontype-text +1 +1 +HandwritingRecognitionType +- +"text" dfn mst-content-hint mst-content-hint @@ -61,6 +72,28 @@ https://xhr.spec.whatwg.org/#dom-xmlhttprequestresponsetype-text 1 XMLHttpRequestResponseType - +"text-optimized" +enum-value +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrlayerquality-text-optimized +1 +1 +XRLayerQuality +- +"text-optimized" +enum-value +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerquality-text-optimized +1 +1 +XRLayerQuality +- "text-too-long" enum-value speech-api @@ -160,6 +193,28 @@ https://www.w3.org/TR/webgpu/#texture-compression-bc 1 GPUFeatureName - +"texture-compression-bc-sliced-3d" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#texture-compression-bc-sliced-3d +1 +1 +GPUFeatureName +- +"texture-compression-bc-sliced-3d" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#texture-compression-bc-sliced-3d +1 +1 +GPUFeatureName +- "texture-compression-etc2" enum-value webgpu @@ -182,6 +237,46 @@ https://www.w3.org/TR/webgpu/#texture-compression-etc2 1 GPUFeatureName - +<tendsto/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_tendsto + +1 +- +<tendsto/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_tendsto + +1 +- +<text-edge> +type +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#typedef-text-edge +1 +1 +- +<text-edge> +type +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#typedef-text-edge +1 +1 +- TEXTPATH_METHODTYPE_ALIGN const svg2 @@ -347,6 +442,16 @@ https://dom.spec.whatwg.org/#dom-node-text_node 1 Node - +TestIntegrityLevel +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-testintegritylevel +1 +1 +- TestIntegrityLevel(O, level) abstract-op ecmascript @@ -618,6 +723,26 @@ https://encoding.spec.whatwg.org/#dom-textencoderstream 1 TextEncoderStream - +TextEvent +interface +uievents +uievents +1 +current +https://w3c.github.io/uievents/#textevent +1 +1 +- +TextEvent +interface +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#textevent +1 +1 +- TextFormat interface edit-context @@ -916,6 +1041,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-teal 1 1 <color> +<named-color> - teal value @@ -948,6 +1074,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-teal 1 1 <color> +<named-color> - team dfn @@ -1027,6 +1154,26 @@ w3c-process current https://www.w3.org/Consortium/Process/#Team-only 1 +1 +- +tear down a task scope +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#tear-down-a-task-scope + +1 +- +technical agreement +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#technical-agreement + 1 - technical architecture group @@ -1298,7 +1445,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#telephone-state-(type=tel) +https://html.spec.whatwg.org/multipage/input.html#telephone-state-(type%3Dtel) 1 1 input @@ -1435,71 +1582,137 @@ https://www.w3.org/TR/WGSL/#template-parameters 1 - -templateStringsArray -argument -trusted-types -trusted-types +template_arg_comma_list +dfn +wgsl +wgsl 1 current -https://w3c.github.io/trusted-types/dist/spec/#dom-trustedhtml-fromliteral-templatestringsarray-templatestringsarray +https://gpuweb.github.io/gpuweb/wgsl/#syntax-template_arg_comma_list + +1 +syntax +- +template_arg_comma_list +dfn +wgsl +wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-template_arg_comma_list + 1 -TrustedHTML/fromLiteral(templateStringsArray) +syntax - -templateStringsArray -argument -trusted-types -trusted-types +template_arg_expression +dfn +wgsl +wgsl 1 current -https://w3c.github.io/trusted-types/dist/spec/#dom-trustedscript-fromliteral-templatestringsarray-templatestringsarray -1 +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-template_arg_expression + 1 -TrustedScript/fromLiteral(templateStringsArray) +recursive descent syntax - -templateStringsArray -argument -trusted-types -trusted-types +template_arg_expression +dfn +wgsl +wgsl 1 current -https://w3c.github.io/trusted-types/dist/spec/#dom-trustedscripturl-fromliteral-templatestringsarray-templatestringsarray +https://gpuweb.github.io/gpuweb/wgsl/#syntax-template_arg_expression + +1 +syntax +- +template_arg_expression +dfn +wgsl +wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-template_arg_expression + 1 -TrustedScriptURL/fromLiteral(templateStringsArray) +recursive descent syntax - -templateStringsArray -argument -trusted-types -trusted-types +template_arg_expression +dfn +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/trusted-types/#dom-trustedhtml-fromliteral-templatestringsarray-templatestringsarray +https://www.w3.org/TR/WGSL/#syntax-template_arg_expression + +1 +syntax +- +template_elaborated_ident +dfn +wgsl +wgsl 1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-template_elaborated_ident + 1 -TrustedHTML/fromLiteral(templateStringsArray) +syntax - -templateStringsArray -argument -trusted-types -trusted-types +template_elaborated_ident +dfn +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/trusted-types/#dom-trustedscript-fromliteral-templatestringsarray-templatestringsarray +https://www.w3.org/TR/WGSL/#syntax-template_elaborated_ident + 1 +syntax +- +template_elaborated_ident.post.ident +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-template_elaborated_identpostident + 1 -TrustedScript/fromLiteral(templateStringsArray) +recursive descent syntax - -templateStringsArray -argument -trusted-types -trusted-types +template_elaborated_ident.post.ident +dfn +wgsl +wgsl 1 snapshot -https://www.w3.org/TR/trusted-types/#dom-trustedscripturl-fromliteral-templatestringsarray-templatestringsarray +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-template_elaborated_identpostident + +1 +recursive descent syntax +- +template_list +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-template_list + +1 +syntax +- +template_list +dfn +wgsl +wgsl 1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-template_list + 1 -TrustedScriptURL/fromLiteral(templateStringsArray) +syntax - templatefriendlyname dfn @@ -1587,9 +1800,9 @@ https://wicg.github.io/background-fetch/#temporarily-unavailable - temporary enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysessiontype-temporary 1 @@ -1597,15 +1810,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeysessiontype-temporary MediaKeySessionType - temporary -dfn -encrypted-media +enum-value +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysessiontype-temporary - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysessiontype-temporary +1 1 -mediakeysessiontype +MediaKeySessionType - temporary buffer dfn @@ -1663,7 +1876,17 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-term-equal +https://w3c.github.io/rdf-concepts/spec/#dfn-literal-term-equality + +1 +- +term-equal +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-literal-term-equality 1 - @@ -1789,6 +2012,16 @@ fileapi snapshot https://www.w3.org/TR/FileAPI/#terminate-an-algorithm +1 +- +terminate event callback handling +dfn +soft-navigations +soft-navigations +1 +current +https://wicg.github.io/soft-navigations/#terminate-event-callback-handling + 1 - terminate remaining locks and requests @@ -1848,7 +2081,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#terminate-the-algorithm -1 + 1 - terminate this algorithm @@ -2020,6 +2253,19 @@ https://html.spec.whatwg.org/multipage/document-lifecycle.html#termination-nesti 1 - +terms-of-service +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#link-type-terms-of-service +1 +1 +link/rel +a/rel +area/rel +- terms_of_service_url dict-member fedcm @@ -2077,7 +2323,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-test +https://urlpattern.spec.whatwg.org/#dom-urlpattern-test 1 1 URLPattern @@ -2099,7 +2345,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-test +https://urlpattern.spec.whatwg.org/#dom-urlpattern-test 1 1 URLPattern @@ -2110,7 +2356,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-test +https://urlpattern.spec.whatwg.org/#dom-urlpattern-test 1 1 URLPattern @@ -2175,129 +2421,165 @@ https://www.w3.org/TR/webgpu/#texel-block 1 - -texel block height -dfn +texel block byte offset +abstract-op webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#texel-block-height - +https://gpuweb.github.io/gpuweb/#abstract-opdef-texel-block-byte-offset +1 1 - -texel block height -dfn +texel block byte offset +abstract-op webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#texel-block-height - +https://www.w3.org/TR/webgpu/#abstract-opdef-texel-block-byte-offset +1 1 - -texel block size +texel block copy footprint dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#texel-block-size +https://gpuweb.github.io/gpuweb/#texel-block-copy-footprint 1 - -texel block size +texel block copy footprint dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#texel-block-size +https://www.w3.org/TR/webgpu/#texel-block-copy-footprint 1 - -texel block width +texel block height dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#texel-block-width +https://gpuweb.github.io/gpuweb/#texel-block-height 1 - -texel block width +texel block height dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#texel-block-width +https://www.w3.org/TR/webgpu/#texel-block-height 1 - -texel format +texel block memory cost dfn -wgsl -wgsl +webgpu +webgpu 1 current -https://gpuweb.github.io/gpuweb/wgsl/#texel-format +https://gpuweb.github.io/gpuweb/#texel-block-memory-cost + -1 - -texel format +texel block memory cost dfn -wgsl -wgsl +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/WGSL/#texel-format +https://www.w3.org/TR/webgpu/#texel-block-memory-cost + + +- +texel block row +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#texel-block-row 1 - -texel_format +texel block row dfn -wgsl -wgsl +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#texel-block-row + +1 +- +texel block width +dfn +webgpu +webgpu 1 current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-texel_format +https://gpuweb.github.io/gpuweb/#texel-block-width + +1 +- +texel block width +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#texel-block-width 1 -recursive descent syntax - -texel_format +texel format dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-texel_format +https://gpuweb.github.io/gpuweb/wgsl/#texel-format 1 -syntax - -texel_format +texel format dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-texel_format +https://www.w3.org/TR/WGSL/#texel-format 1 -recursive descent syntax - -texel_format +texel image dfn -wgsl -wgsl +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#texel-image + +1 +- +texel image +dfn +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-texel_format +https://www.w3.org/TR/webgpu/#texel-image 1 -syntax - text argument @@ -2383,10 +2665,11 @@ css-inline-3 css-inline 3 current -https://drafts.csswg.org/css-inline-3/#valdef-text-edge-text +https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-text 1 1 -text-edge +line-fit-edge +<<text-edge>> - text value @@ -2513,7 +2796,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#text-(type=text)-state-and-search-state-(type=search) +https://html.spec.whatwg.org/multipage/input.html#text-(type%3Dtext)-state-and-search-state-(type%3Dsearch) 1 1 input @@ -2633,6 +2916,16 @@ svg current https://svgwg.org/svg2-draft/text.html#elementdef-text 1 +1 +- +text +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-text + 1 - text @@ -2745,6 +3038,17 @@ VTTCue/VTTCue(startTime, endTime, text) VTTCue/constructor(startTime, endTime, text) - text +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingprediction-text +1 +1 +HandwritingPrediction +- +text argument speech-api speech-api @@ -2807,10 +3111,10 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-text +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-check-font-text-text 1 1 -FontFaceSet/check() +FontFaceSet/check(font, text) - text argument @@ -2818,10 +3122,10 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-text +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceset-load-font-text-text 1 1 -FontFaceSet/load() +FontFaceSet/load(font, text) - text value @@ -2840,10 +3144,11 @@ css-inline-3 css-inline 3 snapshot -https://www.w3.org/TR/css-inline-3/#valdef-text-edge-text +https://www.w3.org/TR/css-inline-3/#valdef-line-fit-edge-text 1 1 -text-edge +line-fit-edge +<<text-edge>> - text value @@ -3068,6 +3373,48 @@ https://www.w3.org/TR/SVG2/text.html#TermTextContentElement 1 1 - +text directive +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#text-directive + +1 +- +text directive allowing mime type +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#text-directive-allowing-mime-type + +1 +- +text directive user activation +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#document-text-directive-user-activation + +1 +document +- +text directive user activation +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#request-text-directive-user-activation + +1 +request +- text edit context dfn edit-context @@ -3094,41 +3441,39 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-textarea/input-cursor +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-textarea%2Finput-cursor 1 - -text fragment directive +text format dfn -scroll-to-text-fragment -scroll-to-text-fragment +edit-context +edit-context 1 current -https://wicg.github.io/scroll-to-text-fragment/#text-fragment-directive +https://w3c.github.io/edit-context/#dfn-text-format 1 - -text fragment user activation +text format list dfn -scroll-to-text-fragment -scroll-to-text-fragment +edit-context +edit-context 1 current -https://wicg.github.io/scroll-to-text-fragment/#document-text-fragment-user-activation +https://w3c.github.io/edit-context/#dfn-text-format-list 1 -document - -text fragment user activation +text formats dfn -scroll-to-text-fragment -scroll-to-text-fragment +edit-context +edit-context 1 current -https://wicg.github.io/scroll-to-text-fragment/#request-text-fragment-user-activation +https://w3c.github.io/edit-context/#dfn-text-formats 1 -request - text input method dfn @@ -3194,16 +3539,6 @@ CSS - text node dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-text-node - -1 -- -text node -dfn svg-aam-1.0 svg-aam 1 @@ -3211,16 +3546,6 @@ current https://w3c.github.io/svg-aam/#dfn-text-node -- -text node -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-text-node - -1 - text node dfn @@ -3242,6 +3567,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-text-node +- +text node directionality +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#text-node-directionality + +1 - text preparation algorithm dfn @@ -3259,7 +3594,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_text_processing_language +https://w3c.github.io/i18n-glossary/#dfn-text-processing-language 1 - @@ -3269,7 +3604,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_text_processing_language +https://www.w3.org/TR/i18n-glossary/#dfn-text-processing-language 1 - @@ -3283,35 +3618,35 @@ https://w3c.github.io/web-nfc/#dfn-text-record - -text run +text sequence dfn css-display-3 css-display 3 current -https://drafts.csswg.org/css-display-3/#text-run +https://drafts.csswg.org/css-display-3/#css-text-sequence 1 1 CSS - -text run +text sequence dfn css-display-4 css-display 4 current -https://drafts.csswg.org/css-display-4/#text-run +https://drafts.csswg.org/css-display-4/#css-text-sequence 1 1 CSS - -text run +text sequence dfn css-display-3 css-display 3 snapshot -https://www.w3.org/TR/css-display-3/#text-run +https://www.w3.org/TR/css-display-3/#css-text-sequence 1 1 CSS @@ -3334,6 +3669,16 @@ media-source snapshot https://www.w3.org/TR/media-source-2/#dfn-text-splice-frame +1 +- +text state +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-text-state + 1 - text style values @@ -3514,6 +3859,26 @@ https://drafts.csswg.org/css2/#propdef-text-align 1 - text-align +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-text-align +1 +1 +- +text-align +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-text-align +1 +1 +- +text-align dfn css22 css @@ -3653,6 +4018,16 @@ https://drafts.csswg.org/css-text-4/#propdef-text-autospace 1 1 - +text-autospace +property +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#propdef-text-autospace +1 +1 +- text-before-edge value css-inline-3 @@ -3732,6 +4107,66 @@ https://www.w3.org/TR/css-inline-3/#valdef-dominant-baseline-text-bottom 1 dominant-baseline - +text-box +property +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#propdef-text-box +1 +1 +- +text-box +property +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#propdef-text-box +1 +1 +- +text-box-edge +property +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#propdef-text-box-edge +1 +1 +- +text-box-edge +property +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#propdef-text-box-edge +1 +1 +- +text-box-trim +property +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#propdef-text-box-trim +1 +1 +- +text-box-trim +property +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#propdef-text-box-trim +1 +1 +- text-combine-upright property css-writing-modes-3 @@ -3803,6 +4238,26 @@ https://drafts.csswg.org/css2/#propdef-text-decoration 1 - text-decoration +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-text-decoration +1 +1 +- +text-decoration +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-text-decoration +1 +1 +- +text-decoration dfn css22 css @@ -4152,37 +4607,17 @@ https://www.w3.org/TR/appmanifest/#dfn-text-directions 1 - -text-edge +text-emphasis property -css-inline-3 -css-inline +css-text-decor-3 +css-text-decor 3 current -https://drafts.csswg.org/css-inline-3/#propdef-text-edge +https://drafts.csswg.org/css-text-decor-3/#propdef-text-emphasis 1 1 - -text-edge -property -css-inline-3 -css-inline -3 -snapshot -https://www.w3.org/TR/css-inline-3/#propdef-text-edge -1 -1 -- -text-emphasis -property -css-text-decor-3 -css-text-decor -3 -current -https://drafts.csswg.org/css-text-decor-3/#propdef-text-emphasis -1 -1 -- -text-emphasis +text-emphasis property css-text-decor-4 css-text-decor @@ -4403,6 +4838,26 @@ https://drafts.csswg.org/css2/#propdef-text-indent 1 - text-indent +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-text-indent +1 +1 +- +text-indent +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-text-indent +1 +1 +- +text-indent dfn css22 css @@ -4472,6 +4927,28 @@ https://www.w3.org/TR/css-text-4/#propdef-text-justify 1 1 - +text-optimized +enum-value +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#dom-xrlayerquality-text-optimized +1 +1 +XRLayerQuality +- +text-optimized +enum-value +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerquality-text-optimized +1 +1 +XRLayerQuality +- text-orientation property css-writing-modes-3 @@ -4598,17 +5075,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_text_processing_language -1 - -- -text-processing language -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_text_processing_language +https://w3c.github.io/i18n-glossary/#dfn-text-processing-language 1 - @@ -4618,17 +5085,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_text_processing_language -1 - -- -text-processing language -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_text_processing_language +https://www.w3.org/TR/i18n-glossary/#dfn-text-processing-language 1 - @@ -4702,63 +5159,33 @@ https://drafts.csswg.org/css-size-adjust-1/#propdef-text-size-adjust 1 1 - -text-space-collapse -property -css-text-4 -css-text -4 -current -https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse -1 -1 -- -text-space-collapse -property -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#propdef-text-space-collapse -1 -1 -- -text-space-trim +text-spacing property css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#propdef-text-space-trim +https://drafts.csswg.org/css-text-4/#propdef-text-spacing 1 1 - -text-space-trim +text-spacing property css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#propdef-text-space-trim +https://www.w3.org/TR/css-text-4/#propdef-text-spacing 1 1 - -text-spacing +text-spacing-trim property css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#propdef-text-spacing -1 -1 -- -text-spacing -property -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#propdef-text-spacing +https://drafts.csswg.org/css-text-4/#propdef-text-spacing-trim 1 1 - @@ -4767,8 +5194,8 @@ property css-text-4 css-text 4 -current -https://drafts.csswg.org/css-text-4/#propdef-text-spacing-trim +snapshot +https://www.w3.org/TR/css-text-4/#propdef-text-spacing-trim 1 1 - @@ -4880,6 +5307,26 @@ https://drafts.csswg.org/css2/#propdef-text-transform 1 - text-transform +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-text-transform +1 +1 +- +text-transform +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-text-transform +1 +1 +- +text-transform dfn css22 css @@ -4907,16 +5354,6 @@ css-text snapshot https://www.w3.org/TR/css-text-4/#propdef-text-transform 1 -1 -- -text-transform -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-text-transform - 1 - text-under baseline @@ -5019,37 +5456,87 @@ https://www.w3.org/TR/css-text-4/#propdef-text-wrap 1 1 - +text-wrap-mode +property +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#propdef-text-wrap-mode +1 +1 +- +text-wrap-mode +property +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#propdef-text-wrap-mode +1 +1 +- +text-wrap-style +property +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#propdef-text-wrap-style +1 +1 +- +text-wrap-style +property +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#propdef-text-wrap-style +1 +1 +- text/css dfn html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/css +https://html.spec.whatwg.org/multipage/indices.html#text%2Fcss 1 - -text/event-stream +text/css dfn -html -html +css2 +css 1 current -https://html.spec.whatwg.org/multipage/iana.html#text/event-stream - +https://www.w3.org/TR/CSS21/conform.html#text-css +1 1 - -text/html +text/css +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#text-css +1 +1 +- +text/event-stream dfn html html 1 current -https://html.spec.whatwg.org/multipage/iana.html#text/html +https://html.spec.whatwg.org/multipage/iana.html#text%2Fevent-stream 1 - -text/html" +text/html enum-value html html @@ -5060,13 +5547,23 @@ https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-dompars 1 DOMParserSupportedType - +text/html +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/iana.html#text%2Fhtml + +1 +- text/javascript dfn html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/javascript +https://html.spec.whatwg.org/multipage/indices.html#text%2Fjavascript 1 - @@ -5076,7 +5573,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/json +https://html.spec.whatwg.org/multipage/indices.html#text%2Fjson 1 - @@ -5086,7 +5583,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/iana.html#text/ping +https://html.spec.whatwg.org/multipage/iana.html#text%2Fping 1 - @@ -5108,7 +5605,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#text/plain-encoding-algorithm +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#text%2Fplain-encoding-algorithm 1 - @@ -5118,7 +5615,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/uri-list +https://html.spec.whatwg.org/multipage/indices.html#text%2Furi-list 1 - @@ -5128,7 +5625,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/vcard +https://html.spec.whatwg.org/multipage/indices.html#text%2Fvcard 1 - @@ -5138,7 +5635,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/vtt +https://html.spec.whatwg.org/multipage/indices.html#text%2Fvtt 1 - @@ -5168,7 +5665,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#text/xml +https://html.spec.whatwg.org/multipage/indices.html#text%2Fxml 1 - @@ -5183,38 +5680,27 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textalign 1 CanvasTextDrawingStyles - -textBaseline -attribute -html -html +textAlternatives +dict-member +handwriting-recognition +handwriting-recognition 1 current -https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textbaseline +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizerqueryresult-textalternatives 1 1 -CanvasTextDrawingStyles +HandwritingRecognizerQueryResult - -textColor +textBaseline attribute -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dom-textformat-textcolor -1 -1 -TextFormat -- -textColor -dict-member -edit-context -edit-context +html +html 1 current -https://w3c.github.io/edit-context/#dom-textformatinit-textcolor +https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textbaseline 1 1 -TextFormatInit +CanvasTextDrawingStyles - textColor attribute @@ -5249,6 +5735,28 @@ https://dom.spec.whatwg.org/#dom-node-textcontent 1 Node - +textContext +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinghints-textcontext +1 +1 +HandwritingHints +- +textContext +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinghintsqueryresult-textcontext +1 +1 +HandwritingHintsQueryResult +- textFormats dict-member edit-context @@ -5315,6 +5823,17 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textrendering 1 CanvasTextDrawingStyles - +textSegmentation +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingrecognizerqueryresult-textsegmentation +1 +1 +HandwritingRecognizerQueryResult +- textTracks attribute html @@ -5470,17 +5989,6 @@ https://wicg.github.io/scroll-to-text-fragment/#textdirectivesuffix 1 - -textend -dfn -scroll-to-text-fragment -scroll-to-text-fragment -1 -current -https://wicg.github.io/scroll-to-text-fragment/#parsedtextdirective-textend - -1 -ParsedTextDirective -- textfield value css-ui-4 @@ -5502,6 +6010,26 @@ https://www.w3.org/TR/css-ui-4/#valdef-appearance-textfield 1 1 appearance +- +textinput +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#textinput +1 + +- +textinput +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#textinput +1 + - textlength element-attr @@ -5555,17 +6083,6 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-type-tel-textphon 1 - -textstart -dfn -scroll-to-text-fragment -scroll-to-text-fragment -1 -current -https://wicg.github.io/scroll-to-text-fragment/#parsedtextdirective-textstart - -1 -ParsedTextDirective -- textual data types dfn css-values-3 @@ -5640,7 +6157,7 @@ webgpu current https://gpuweb.github.io/gpuweb/#texture - +1 - texture dfn @@ -5714,7 +6231,7 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#texture - +1 - texture attribute @@ -5738,6 +6255,46 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrtexturetype-texture 1 XRTextureType - +texture coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#texture-coordinates + +1 +- +texture coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#texture-coordinates + +1 +- +texture copy sub-region +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-texture-copy-sub-region +1 +1 +- +texture copy sub-region +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-texture-copy-sub-region +1 +1 +- texture gather dfn wgsl @@ -5965,6 +6522,17 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrprojectionlayer-textureheight XRProjectionLayer - textureType +attribute +webxr-depth-sensing-1 +webxr-depth-sensing +1 +current +https://immersive-web.github.io/depth-sensing/#dom-xrwebgldepthinformation-texturetype +1 +1 +XRWebGLDepthInformation +- +textureType dict-member webxrlayers-1 webxrlayers @@ -6009,6 +6577,17 @@ https://immersive-web.github.io/layers/#dom-xrquadlayerinit-texturetype XRQuadLayerInit - textureType +attribute +webxr-depth-sensing-1 +webxr-depth-sensing +1 +snapshot +https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrwebgldepthinformation-texturetype +1 +1 +XRWebGLDepthInformation +- +textureType dict-member webxrlayers-1 webxrlayers @@ -6080,10 +6659,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_1d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_1d 1 -syntax_kw +type - texture_1d dfn @@ -6091,10 +6670,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_1d +https://www.w3.org/TR/WGSL/#type-texture_1d 1 -syntax_kw +type - texture_2d dfn @@ -6102,10 +6681,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_2d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_2d 1 -syntax_kw +type - texture_2d dfn @@ -6113,10 +6692,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_2d +https://www.w3.org/TR/WGSL/#type-texture_2d 1 -syntax_kw +type - texture_2d_array dfn @@ -6124,10 +6703,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_2d_array +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_2d_array 1 -syntax_kw +type - texture_2d_array dfn @@ -6135,10 +6714,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_2d_array +https://www.w3.org/TR/WGSL/#type-texture_2d_array 1 -syntax_kw +type - texture_3d dfn @@ -6146,10 +6725,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_3d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_3d 1 -syntax_kw +type - texture_3d dfn @@ -6157,208 +6736,186 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_3d - -1 -syntax_kw -- -texture_and_sampler_types -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-texture_and_sampler_types +https://www.w3.org/TR/WGSL/#type-texture_3d 1 -recursive descent syntax +type - -texture_and_sampler_types +texture_cube dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-texture_and_sampler_types +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_cube 1 -syntax +type - -texture_and_sampler_types -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-texture_and_sampler_types - -1 -recursive descent syntax -- -texture_and_sampler_types +texture_cube dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-texture_and_sampler_types +https://www.w3.org/TR/WGSL/#type-texture_cube 1 -syntax +type - -texture_cube +texture_cube_array dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_cube +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_cube_array 1 -syntax_kw +type - -texture_cube +texture_cube_array dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_cube +https://www.w3.org/TR/WGSL/#type-texture_cube_array 1 -syntax_kw +type - -texture_cube_array +texture_depth_2d dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_cube_array +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_depth_2d 1 -syntax_kw +type - -texture_cube_array +texture_depth_2d dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_cube_array +https://www.w3.org/TR/WGSL/#type-texture_depth_2d 1 -syntax_kw +type - -texture_depth_2d +texture_depth_2d_array dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_depth_2d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_depth_2d_array 1 -syntax_kw +type - -texture_depth_2d +texture_depth_2d_array dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_depth_2d +https://www.w3.org/TR/WGSL/#type-texture_depth_2d_array 1 -syntax_kw +type - -texture_depth_2d_array +texture_depth_cube dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_depth_2d_array +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_depth_cube 1 -syntax_kw +type - -texture_depth_2d_array +texture_depth_cube dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_depth_2d_array +https://www.w3.org/TR/WGSL/#type-texture_depth_cube 1 -syntax_kw +type - -texture_depth_cube +texture_depth_cube_array dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_depth_cube +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_depth_cube_array 1 -syntax_kw +type - -texture_depth_cube +texture_depth_cube_array dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_depth_cube +https://www.w3.org/TR/WGSL/#type-texture_depth_cube_array 1 -syntax_kw +type - -texture_depth_cube_array +texture_depth_multisampled_2d dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_depth_cube_array +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_depth_multisampled_2d 1 -syntax_kw +type - -texture_depth_cube_array +texture_depth_multisampled_2d dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_depth_cube_array +https://www.w3.org/TR/WGSL/#type-texture_depth_multisampled_2d 1 -syntax_kw +type - -texture_depth_multisampled_2d +texture_external dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_depth_multisampled_2d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_external 1 -syntax_kw +type - -texture_depth_multisampled_2d +texture_external dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_depth_multisampled_2d +https://www.w3.org/TR/WGSL/#type-texture_external 1 -syntax_kw +type - texture_multisampled_2d dfn @@ -6366,10 +6923,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_multisampled_2d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_multisampled_2d 1 -syntax_kw +type - texture_multisampled_2d dfn @@ -6377,10 +6934,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_multisampled_2d +https://www.w3.org/TR/WGSL/#type-texture_multisampled_2d 1 -syntax_kw +type - texture_storage_1d dfn @@ -6388,10 +6945,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_storage_1d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_storage_1d 1 -syntax_kw +type - texture_storage_1d dfn @@ -6399,10 +6956,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_storage_1d +https://www.w3.org/TR/WGSL/#type-texture_storage_1d 1 -syntax_kw +type - texture_storage_2d dfn @@ -6410,10 +6967,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_storage_2d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_storage_2d 1 -syntax_kw +type - texture_storage_2d dfn @@ -6421,10 +6978,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_storage_2d +https://www.w3.org/TR/WGSL/#type-texture_storage_2d 1 -syntax_kw +type - texture_storage_2d_array dfn @@ -6432,10 +6989,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_storage_2d_array +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_storage_2d_array 1 -syntax_kw +type - texture_storage_2d_array dfn @@ -6443,10 +7000,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_storage_2d_array +https://www.w3.org/TR/WGSL/#type-texture_storage_2d_array 1 -syntax_kw +type - texture_storage_3d dfn @@ -6454,10 +7011,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-texture_storage_3d +https://gpuweb.github.io/gpuweb/wgsl/#type-texture_storage_3d 1 -syntax_kw +type - texture_storage_3d dfn @@ -6465,8 +7022,8 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-texture_storage_3d +https://www.w3.org/TR/WGSL/#type-texture_storage_3d 1 -syntax_kw +type - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-th.data b/bikeshed/spec-data/readonly/anchors/anchors-th.data index d358b86f63..bf7c38b7e2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-th.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-th.data @@ -114,7 +114,117 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-%throwtypeerror% +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-%25throwtypeerror%25 +1 +1 +- +ThisBigIntValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-thisbigintvalue +1 +1 +- +ThisBigIntValue(value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-thisbigintvalue +1 +1 +- +ThisBooleanValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-thisbooleanvalue +1 +1 +- +ThisBooleanValue(value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-thisbooleanvalue +1 +1 +- +ThisNumberValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-thisnumbervalue +1 +1 +- +ThisNumberValue(value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-thisnumbervalue +1 +1 +- +ThisStringValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-thisstringvalue +1 +1 +- +ThisStringValue(value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-thisstringvalue +1 +1 +- +ThisSymbolValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-thissymbolvalue +1 +1 +- +ThisSymbolValue(value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-thissymbolvalue +1 +1 +- +ThrowCompletion +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-throwcompletion 1 1 - @@ -139,6 +249,17 @@ https://wicg.github.io/idle-detection/#dom-idledetector-threshold-slot 1 IdleDetector - +[[thresholds]] +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-thresholds-slot +1 +1 +IntersectionObserver +- tHead attribute html @@ -231,16 +352,6 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-ecdsa-extended-namedcurve-values -1 -1 -- -the directionality -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/dom.html#the-directionality 1 - @@ -400,7 +511,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#the-javascript:-url-special-case +https://html.spec.whatwg.org/multipage/browsing-the-web.html#the-javascript%3A-url-special-case 1 - @@ -454,23 +565,23 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-menu-bar-barpro 1 - -the personal bar barprop object +the navigation must be a replace dfn html html 1 current -https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-personal-bar-barprop-object +https://html.spec.whatwg.org/multipage/browsing-the-web.html#the-navigation-must-be-a-replace 1 - -the posted task task source +the personal bar barprop object dfn -scheduling-apis -scheduling-apis +html +html 1 current -https://wicg.github.io/scheduling-apis/#the-posted-task-task-source +https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-personal-bar-barprop-object 1 - @@ -504,16 +615,38 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#the-rules-for-cho 1 - -the same as +the same entry as +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-entry-the-same-entry-as + +1 +file system entry +- +the same locator as dfn fs fs 1 current -https://fs.spec.whatwg.org/#entry-the-same-as +https://fs.spec.whatwg.org/#file-system-locator-the-same-locator-as 1 -entry +file system locator +- +the same path as +dfn +fs +fs +1 +current +https://fs.spec.whatwg.org/#file-system-path-the-same-path-as + +1 +file system path - the scrollbar barprop object dfn @@ -732,27 +865,27 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.p 1 Promise - -thermal +thermals enum-value compute-pressure compute-pressure 1 current -https://w3c.github.io/compute-pressure/#dom-pressurefactor-thermal +https://w3c.github.io/compute-pressure/#dom-pressuresource-thermals 1 1 -PressureFactor +PressureSource - -thermal +thermals enum-value compute-pressure compute-pressure 1 snapshot -https://www.w3.org/TR/compute-pressure/#dom-pressurefactor-thermal +https://www.w3.org/TR/compute-pressure/#dom-pressuresource-thermals 1 1 -PressureFactor +PressureSource - thick value @@ -788,6 +921,17 @@ border-left-width border-width - thick +enum-value +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-underlinethickness-thick +1 +1 +UnderlineThickness +- +thick value css-backgrounds-3 css-backgrounds @@ -849,6 +993,17 @@ border-left-width border-width - thin +enum-value +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-underlinethickness-thin +1 +1 +UnderlineThickness +- +thin value css-backgrounds-3 css-backgrounds @@ -885,24 +1040,14 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-third-party -- -third party -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-third-party - -1 - third party context dfn -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#third-party-context +https://privacycg.github.io/requestStorageAccessFor/#third-party-context 1 - @@ -956,88 +1101,6 @@ https://webidl.spec.whatwg.org/#this 1 1 - -this date object -dfn -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#this-Date-object -1 -1 -ECMAScript -- -this time value -dfn -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#this-time-value -1 -1 -ECMAScript -- -thisBigIntValue -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#thisbigintvalue -1 -1 -- -thisBooleanValue -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/fundamental-objects.html#thisbooleanvalue -1 -1 -- -thisNumberValue -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#thisnumbervalue -1 -1 -- -thisStringValue -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/text-processing.html#thisstringvalue -1 -1 -- -thisSymbolValue -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/fundamental-objects.html#thissymbolvalue -1 -1 -- -thisTimeValue -abstract-op -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/numbers-and-dates.html#thistimevalue -1 -1 -- thistle dfn css-color-3 @@ -1058,6 +1121,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-thistle 1 1 <color> +<named-color> - thistle dfn @@ -1079,6 +1143,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-thistle 1 1 <color> +<named-color> - threeddarkshadow dfn @@ -1091,14 +1156,16 @@ https://drafts.csswg.org/css-color-3/#threeddarkshadow 1 - threeddarkshadow -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#threeddarkshadow - +https://drafts.csswg.org/css-color-4/#valdef-color-threeddarkshadow 1 +1 +<color> +<deprecated-color> - threeddarkshadow dfn @@ -1111,14 +1178,16 @@ https://www.w3.org/TR/css-color-3/#threeddarkshadow 1 - threeddarkshadow -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#threeddarkshadow - +https://www.w3.org/TR/css-color-4/#valdef-color-threeddarkshadow 1 +1 +<color> +<deprecated-color> - threedface dfn @@ -1131,14 +1200,16 @@ https://drafts.csswg.org/css-color-3/#threedface 1 - threedface -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#threedface - +https://drafts.csswg.org/css-color-4/#valdef-color-threedface 1 +1 +<color> +<deprecated-color> - threedface dfn @@ -1151,14 +1222,16 @@ https://www.w3.org/TR/css-color-3/#threedface 1 - threedface -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#threedface - +https://www.w3.org/TR/css-color-4/#valdef-color-threedface 1 +1 +<color> +<deprecated-color> - threedhighlight dfn @@ -1171,14 +1244,16 @@ https://drafts.csswg.org/css-color-3/#threedhighlight 1 - threedhighlight -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#threedhighlight - +https://drafts.csswg.org/css-color-4/#valdef-color-threedhighlight +1 1 +<color> +<deprecated-color> - threedhighlight dfn @@ -1191,14 +1266,16 @@ https://www.w3.org/TR/css-color-3/#threedhighlight 1 - threedhighlight -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#threedhighlight - +https://www.w3.org/TR/css-color-4/#valdef-color-threedhighlight +1 1 +<color> +<deprecated-color> - threedlightshadow dfn @@ -1211,14 +1288,16 @@ https://drafts.csswg.org/css-color-3/#threedlightshadow 1 - threedlightshadow -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#threedlightshadow - +https://drafts.csswg.org/css-color-4/#valdef-color-threedlightshadow +1 1 +<color> +<deprecated-color> - threedlightshadow dfn @@ -1231,14 +1310,16 @@ https://www.w3.org/TR/css-color-3/#threedlightshadow 1 - threedlightshadow -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#threedlightshadow - +https://www.w3.org/TR/css-color-4/#valdef-color-threedlightshadow 1 +1 +<color> +<deprecated-color> - threedshadow dfn @@ -1251,14 +1332,16 @@ https://drafts.csswg.org/css-color-3/#threedshadow 1 - threedshadow -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#threedshadow - +https://drafts.csswg.org/css-color-4/#valdef-color-threedshadow 1 +1 +<color> +<deprecated-color> - threedshadow dfn @@ -1271,14 +1354,16 @@ https://www.w3.org/TR/css-color-3/#threedshadow 1 - threedshadow -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#threedshadow - +https://www.w3.org/TR/css-color-4/#valdef-color-threedshadow +1 1 +<color> +<deprecated-color> - threshold dict-member @@ -1437,7 +1522,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-throw -1 + 1 - throw an exception @@ -1472,28 +1557,6 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-comp 1 ECMAScript - -throw(exception) -method -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-throw -1 -1 -AsyncGenerator -- -throw(exception) -method -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.throw -1 -1 -Generator -- throw-on-dynamic-markup-insertion counter dfn html @@ -1515,3 +1578,13 @@ https://dom.spec.whatwg.org/#dom-abortsignal-throwifaborted 1 AbortSignal - +thumb +dfn +css-scrollbars-1 +css-scrollbars +1 +current +https://drafts.csswg.org/css-scrollbars-1/#thumb + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ti.data b/bikeshed/spec-data/readonly/anchors/anchors-ti.data index 65ef6e68d7..2b3afc0cb6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ti.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ti.data @@ -125,6 +125,26 @@ https://drafts.csswg.org/css-values-4/#time-value 1 - <time> +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#value-def-time +1 +1 +- +<time> +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#value-def-time +1 +1 +- +<time> type css-values-3 css-values @@ -164,39 +184,69 @@ https://www.w3.org/TR/scroll-animations-1/#typedef-timeline-range-name 1 1 - -<timeline-range-name> <percentage> +<timeline-range-name> <length-percentage>? value scroll-animations-1 scroll-animations 1 current -https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-end-timeline-range-name-percentage +https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-end-timeline-range-name-length-percentage 1 1 animation-range-end - -<timeline-range-name> <percentage> +<timeline-range-name> <length-percentage>? value scroll-animations-1 scroll-animations 1 current -https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-start-timeline-range-name-percentage +https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-start-timeline-range-name-length-percentage 1 1 animation-range-start - -<timeline-range-name> <percentage> +<timeline-range-name> <length-percentage>? +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-animation-range-end-timeline-range-name-length-percentage +1 +1 +animation-range-end +- +<timeline-range-name> <length-percentage>? value scroll-animations-1 scroll-animations 1 snapshot -https://www.w3.org/TR/scroll-animations-1/#valdef-animation-delay-start-timeline-range-name-percentage +https://www.w3.org/TR/scroll-animations-1/#valdef-animation-range-start-timeline-range-name-length-percentage +1 1 +animation-range-start +- +<times/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_times + +1 +- +<times/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_times + 1 -animation-delay-start -animation-delay-end - TIMEOUT const @@ -204,7 +254,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationpositionerror-timeout +https://w3c.github.io/geolocation/#dom-geolocationpositionerror-timeout 1 1 GeolocationPositionError @@ -231,6 +281,16 @@ https://webidl.spec.whatwg.org/#dom-domexception-timeout_err 1 DOMException - +TimeClip +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timeclip +1 +1 +- TimeClip(time) abstract-op ecmascript @@ -241,6 +301,26 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timeclip 1 1 - +TimeFromYear +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timefromyear +1 +1 +- +TimeFromYear(y) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timefromyear +1 +1 +- TimeRanges interface html @@ -251,6 +331,16 @@ https://html.spec.whatwg.org/multipage/media.html#timeranges 1 1 - +TimeString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timestring +1 +1 +- TimeString(tv) abstract-op ecmascript @@ -261,6 +351,36 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timestring 1 1 - +TimeWithinDay +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timewithinday +1 +1 +- +TimeWithinDay(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timewithinday +1 +1 +- +TimeZoneString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timezoneestring +1 +1 +- TimeZoneString(tv) abstract-op ecmascript @@ -271,6 +391,16 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timezoneestring 1 1 - +TimelineRangeOffset +dictionary +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#dictdef-timelinerangeoffset +1 +1 +- TimeoutError exception webidl @@ -496,24 +626,24 @@ https://www.w3.org/TR/webdriver2/#dfn-ticks 1 - -tie track source to context -dfn +tie track source to MediaDevices +abstract-op mediacapture-streams mediacapture-streams 1 current -https://w3c.github.io/mediacapture-main/#dfn-tie-track-source-to-context - +https://w3c.github.io/mediacapture-main/#dfn-tie-track-source-to-mediadevices +1 1 - -tie track source to context -dfn +tie track source to MediaDevices +abstract-op mediacapture-streams mediacapture-streams 1 snapshot -https://www.w3.org/TR/mediacapture-streams/#dfn-tie-track-source-to-context - +https://www.w3.org/TR/mediacapture-streams/#dfn-tie-track-source-to-mediadevices +1 1 - tilde @@ -783,7 +913,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#time-state-(type=time) +https://html.spec.whatwg.org/multipage/input.html#time-state-(type%3Dtime) 1 1 input @@ -821,6 +951,28 @@ https://immersive-web.github.io/webxr/#xrframe-time XRFrame - time +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#epoch-time + +1 +epoch +- +time +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topics-history-entry-time + +1 +topics history entry +- +time attribute intersection-observer intersection-observer @@ -855,6 +1007,27 @@ PressureRecord - time dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-time + +1 +- +time +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limit-record-time + +1 +aggregatable debug rate-limit record +- +time +dfn attribution-reporting-api attribution-reporting-api 1 @@ -865,6 +1038,28 @@ https://wicg.github.io/attribution-reporting-api/#attribution-rate-limit-record- attribution rate-limit record - time +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#destination-limit-record-time + +1 +destination limit record +- +time +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#previous-win-time + +1 +previous win +- +time attribute compute-pressure compute-pressure @@ -876,26 +1071,25 @@ https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-time PressureRecord - time -enum-value +dict-member css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericbasetype-time +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumerictype-time 1 1 -CSSNumericBaseType +CSSNumericType - time -dict-member -css-typed-om-1 -css-typed-om -1 +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-cssnumerictype-time -1 +https://www.w3.org/TR/encrypted-media-2/#dfn-time + 1 -CSSNumericType - time attribute @@ -941,6 +1135,17 @@ https://www.w3.org/TR/webxr/#xrframe-time 1 XRFrame - +time delta +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-previous-win-time-delta + +1 +server auction previous win +- time marches on dfn html @@ -992,6 +1197,16 @@ snapshot https://www.w3.org/TR/openscreenprotocol/#time-scale 1 +- +time spaces +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#time-spaces + + - time value dfn @@ -1041,7 +1256,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_time_zone +https://w3c.github.io/i18n-glossary/#dfn-time-zone 1 - @@ -1051,9 +1266,64 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_time_zone +https://www.w3.org/TR/i18n-glossary/#dfn-time-zone 1 +- +time zone aware +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +time zone identifier +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript +- +time zone identifier record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifier-record +1 +1 +ECMAScript +- +time zone identifier records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifier-record +1 +1 +ECMAScript +- +time zone identifiers +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers +1 +1 +ECMAScript - time zone identifiers dfn @@ -1061,7 +1331,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_time_zone_id +https://w3c.github.io/i18n-glossary/#dfn-time-zone-identifiers 1 - @@ -1071,7 +1341,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_time_zone_id +https://www.w3.org/TR/i18n-glossary/#dfn-time-zone-identifiers 1 - @@ -1105,6 +1375,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#time-based-animation-to-a-proportional-animation +1 +- +time-based animation to a proportional animation +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#time-based-animation-to-a-proportional-animation + 1 - time-zone offset @@ -1161,6 +1441,17 @@ https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-timeconstant 1 AudioParam/setTargetAtTime() - +timeDelta +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-previouswin-timedelta +1 +1 +PreviousWin +- timeEnd() method console @@ -1512,6 +1803,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#timeline-duration +1 +- +timeline duration +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#timeline-duration + 1 - timeline offset @@ -1544,6 +1845,46 @@ https://www.w3.org/TR/web-animations-1/#timeline-time-to-origin-relative-time 1 1 - +timeline-agnostic +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#timeline-agnostic + +1 +- +timeline-agnostic +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#timeline-agnostic + +1 +- +timeline-scope +property +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#propdef-timeline-scope +1 +1 +- +timeline-scope +property +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#propdef-timeline-scope +1 +1 +- timelineTime attribute web-animations-1 @@ -1610,6 +1951,28 @@ https://www.w3.org/TR/web-animations-1/#dom-animationplaybackeventinit-timelinet 1 AnimationPlaybackEventInit - +timelineTime +attribute +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-timelinetime +1 +1 +AnimationPlaybackEvent +- +timelineTime +dict-member +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackeventinit-timelinetime +1 +1 +AnimationPlaybackEventInit +- timelinebegin dfn svg-animations @@ -1626,7 +1989,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-positionoptions-timeout +https://w3c.github.io/geolocation/#dom-positionoptions-timeout 1 1 PositionOptions @@ -1719,6 +2082,17 @@ https://w3c.github.io/webdriver/#dfn-timeout - timeout dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardgetstatuschangeoptions-timeout +1 +1 +SmartCardGetStatusChangeOptions +- +timeout +dict-member geolocation geolocation 1 @@ -1777,12 +2151,34 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-timeout +1 +1 +PublicKeyCredentialCreationOptionsJSON +- +timeout +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-timeout 1 1 PublicKeyCredentialRequestOptions - timeout +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-timeout +1 +1 +PublicKeyCredentialRequestOptionsJSON +- +timeout dfn webdriver2 webdriver @@ -1812,7 +2208,7 @@ current https://xhr.spec.whatwg.org/#event-xhr-timeout 1 1 -XMLHttpRequest +XMLHttpRequestEventTarget - timeout dfn @@ -1824,6 +2220,28 @@ https://xhr.spec.whatwg.org/#timeout 1 - +timeout fired flag +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-timeout-fired-flag + +1 +timer +- +timeout fired flag +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-timeout-fired-flag + +1 +timer +- timeout(milliseconds) method dom @@ -1855,23 +2273,23 @@ https://www.w3.org/TR/webdriver2/#dfn-timeouts-configuration 1 - -timeouts object +timer dfn webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-timeouts-object +https://w3c.github.io/webdriver/#dfn-timer 1 - -timeouts object +timer dfn webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-timeouts-object +https://www.w3.org/TR/webdriver2/#dfn-timer 1 - @@ -1962,6 +2380,16 @@ MediaRecorder/start(timeslice) MediaRecorder/start() - timestamp +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry-timestamp + +1 +- +timestamp attribute notifications notifications @@ -1995,26 +2423,37 @@ https://notifications.spec.whatwg.org/#timestamp notification - timestamp -attribute -gamepad -gamepad +dfn +topics +topics 1 current -https://w3c.github.io/gamepad/#dom-gamepad-timestamp +https://patcg-individual-drafts.github.io/topics/#topics-caller-context-timestamp + 1 +topics caller context +- +timestamp +dfn +compute-pressure +compute-pressure 1 -Gamepad +current +https://w3c.github.io/compute-pressure/#dfn-timestamp + +1 +pressure source sample - timestamp attribute -geolocation -geolocation +gamepad +gamepad 1 current -https://w3c.github.io/geolocation-api/#dom-geolocationposition-timestamp +https://w3c.github.io/gamepad/#dom-gamepad-timestamp 1 1 -GeolocationPosition +Gamepad - timestamp dict-member @@ -2028,6 +2467,17 @@ https://w3c.github.io/geolocation-sensor/#dom-geolocationsensorreading-timestamp GeolocationSensorReading - timestamp +attribute +geolocation +geolocation +1 +current +https://w3c.github.io/geolocation/#dom-geolocationposition-timestamp +1 +1 +GeolocationPosition +- +timestamp dfn reporting-1 reporting @@ -2149,48 +2599,15 @@ https://w3c.github.io/webcodecs/#dom-videoframeinit-timestamp VideoFrameInit - timestamp -attribute -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedaudioframe-timestamp -1 -1 -RTCEncodedAudioFrame -- -timestamp -attribute -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-timestamp -1 -1 -RTCEncodedVideoFrame -- -timestamp -dfn +dict-member webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedaudioframe-timestamp - +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-timestamp 1 -RTCEncodedAudioFrame -- -timestamp -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframe-timestamp - 1 -RTCEncodedVideoFrame +RTCEncodedVideoFrameMetadata - timestamp dict-member @@ -2226,50 +2643,6 @@ https://w3c.github.io/webrtc-stats/#dom-rtcstats-timestamp RTCStats - timestamp -dict-member -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransportdatagramstats-timestamp -1 -1 -WebTransportDatagramStats -- -timestamp -dict-member -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransportreceivestreamstats-timestamp -1 -1 -WebTransportReceiveStreamStats -- -timestamp -dict-member -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransportsendstreamstats-timestamp -1 -1 -WebTransportSendStreamStats -- -timestamp -dict-member -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#dom-webtransportstats-timestamp -1 -1 -WebTransportStats -- -timestamp attribute webaudio webaudio @@ -2303,6 +2676,28 @@ https://wicg.github.io/js-self-profiling/#dom-profilersample-timestamp ProfilerSample - timestamp +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#bit-debit-timestamp + +1 +bit debit +- +timestamp +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-timestamp + +1 +pressure source sample +- +timestamp attribute gamepad gamepad @@ -2457,48 +2852,15 @@ https://www.w3.org/TR/webcodecs/#dom-videoframeinit-timestamp VideoFrameInit - timestamp -attribute -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframe-timestamp -1 -1 -RTCEncodedAudioFrame -- -timestamp -attribute +dict-member webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-timestamp +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-timestamp 1 1 -RTCEncodedVideoFrame -- -timestamp -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedaudioframe-timestamp - -1 -RTCEncodedAudioFrame -- -timestamp -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframe-timestamp - -1 -RTCEncodedVideoFrame +RTCEncodedVideoFrameMetadata - timestamp dict-member @@ -2533,60 +2895,6 @@ https://www.w3.org/TR/webrtc/#dom-rtcstats-timestamp 1 RTCStats - -timestamp -dict-member -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportdatagramstats-timestamp -1 -1 -WebTransportDatagramStats -- -timestamp -dict-member -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportreceivestreamstats-timestamp -1 -1 -WebTransportReceiveStreamStats -- -timestamp -dict-member -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamstats-timestamp -1 -1 -WebTransportSendStreamStats -- -timestamp -dict-member -webtransport -webtransport -1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransportstats-timestamp -1 -1 -WebTransportStats -- -timestamp of last activation used for close watchers -dfn -close-watcher -close-watcher -1 -current -https://wicg.github.io/close-watcher/#timestamp-of-last-activation-used-for-close-watchers -1 -1 -- timestampOffset attribute media-source-2 @@ -2733,6 +3041,31 @@ https://www.w3.org/TR/web-animations-1/#dom-animationeffect-updatetiming-timing- 1 AnimationEffect/updateTiming(timing) - +timing +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-groupeffect-groupeffect-children-timing-timing +1 +1 +GroupEffect/GroupEffect(children, timing) +- +timing +argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-sequenceeffect-sequenceeffect-children-timing-timing +1 +1 +SequenceEffect/SequenceEffect(children, timing) +SequenceEffect/constructor(children, timing) +SequenceEffect/SequenceEffect(children) +SequenceEffect/constructor(children) +- timing allow failed flag dfn fetch @@ -2809,6 +3142,28 @@ fetch params - timing info dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#performancelonganimationframetiming-timing-info + +1 +PerformanceLongAnimationFrameTiming +- +timing info +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#performancescripttiming-timing-info + +1 +PerformanceScriptTiming +- +timing info +dfn resource-timing resource-timing 1 @@ -2825,6 +3180,26 @@ resource-timing snapshot https://www.w3.org/TR/resource-timing/#dfn-timing-info +1 +- +timing model +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#timing-model-dfn + +1 +- +timing nodes +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#timing-nodes + 1 - timing-allow-origin @@ -2845,6 +3220,26 @@ resource-timing snapshot https://www.w3.org/TR/resource-timing/#dfn-timing-allow-origin +1 +- +timing-eligible +dfn +paint-timing +paint-timing +1 +current +https://w3c.github.io/paint-timing/#timing-eligible +1 +1 +- +timing-eligible +dfn +paint-timing +paint-timing +1 +snapshot +https://www.w3.org/TR/paint-timing/#timing-eligible +1 1 - title @@ -3102,6 +3497,39 @@ https://svgwg.org/svg2-draft/styling.html#__svg__SVGStyleElement__title SVGStyleElement - title +dfn +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#chapterinformation-title + +1 +ChapterInformation +- +title +attribute +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-chapterinformation-title +1 +1 +ChapterInformation +- +title +dict-member +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-chapterinformationinit-title +1 +1 +ChapterInformationInit +- +title attribute mediasession mediasession @@ -3265,6 +3693,39 @@ https://www.w3.org/TR/cssom-1/#dom-stylesheet-title StyleSheet - title +dfn +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#chapterinformation-title + +1 +ChapterInformation +- +title +attribute +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-chapterinformation-title +1 +1 +ChapterInformation +- +title +dict-member +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-chapterinformationinit-title +1 +1 +ChapterInformationInit +- +title attribute mediasession mediasession @@ -3419,6 +3880,26 @@ https://wicg.github.io/window-controls-overlay/#dom-windowcontrolsoverlaygeometr 1 1 WindowControlsOverlayGeometryChangeEventInit +- +titlecase +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-titlecase +1 + +- +titlecase +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-titlecase +1 + - titling-caps value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tk.data b/bikeshed/spec-data/readonly/anchors/anchors-tk.data index df1f57eeca..2df39ff85a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tk.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tk.data @@ -8,13 +8,3 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-tk - -tk -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-tk - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tl.data b/bikeshed/spec-data/readonly/anchors/anchors-tl.data index 92e0df3f2c..74059f8bbe 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tl.data @@ -9,6 +9,17 @@ https://w3c.github.io/webrtc-pc/#dom-rtciceservertransportprotocol-tls 1 RTCIceServerTransportProtocol - +tls +enum-value +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtciceservertransportprotocol-tls +1 +1 +RTCIceServerTransportProtocol +- tlsVersion dict-member webrtc-stats diff --git a/bikeshed/spec-data/readonly/anchors/anchors-to.data b/bikeshed/spec-data/readonly/anchors/anchors-to.data index 59c168507a..5d8c1598d9 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-to.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-to.data @@ -42,6 +42,50 @@ https://www.w3.org/TR/mediasession/#dom-mediasessionaction-togglemicrophone 1 MediaSessionAction - +"togglescreenshare" +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionaction-togglescreenshare +1 +1 +MediaSessionAction +- +"togglescreenshare" +enum-value +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-togglescreenshare +1 +1 +MediaSessionAction +- +"token-redemption" +enum-value +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-operationtype-token-redemption +1 +1 +OperationType +- +"token-request" +enum-value +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-operationtype-token-request +1 +1 +OperationType +- "top-level" enum-value service-workers @@ -64,6 +108,17 @@ https://www.w3.org/TR/service-workers/#dom-frametype-top-level 1 FrameType - +"touch" +enum-value +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritinginputtype-touch +1 +1 +HandwritingInputType +- <(-token> type css-syntax-3 @@ -144,13 +199,13 @@ https://www.w3.org/TR/css-syntax-3/#tokendef-close-square 1 1 - -<toggle-value> +<toggle()> type css-values-5 css-values 5 current -https://drafts.csswg.org/css-values-5/#typedef-toggle-value +https://drafts.csswg.org/css-values-5/#typedef-toggle 1 1 - @@ -177,6 +232,26 @@ clip - <top> type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#value-def-top +1 +1 +- +<top> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#value-def-top +1 +1 +- +<top> +type css-masking-1 css-masking 1 @@ -224,46 +299,6 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#tokendef-close-curly 1 -1 -- -@@toPrimitive -const -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols -1 -1 -- -@@toStringTag -const -ecmascript -ecmascript -1 -current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols -1 -1 -- -@@toprimitive -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/infrastructure.html#@@toprimitive - -1 -- -@@tostringtag -dfn -html -html -1 -current -https://html.spec.whatwg.org/multipage/infrastructure.html#@@tostringtag - 1 - @top-center @@ -366,6 +401,16 @@ https://www.w3.org/TR/css-page-3/#at-ruledef-top-right-corner 1 1 - +ToBigInt +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tobigint +1 +1 +- ToBigInt(argument) abstract-op ecmascript @@ -376,6 +421,56 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tobigint 1 1 - +ToBigInt64 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tobigint64 +1 +1 +- +ToBigInt64(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tobigint64 +1 +1 +- +ToBigUint64 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tobiguint64 +1 +1 +- +ToBigUint64(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tobiguint64 +1 +1 +- +ToBoolean +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toboolean +1 +1 +- ToBoolean(argument) abstract-op ecmascript @@ -386,6 +481,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toboolean 1 1 - +ToDateString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-todatestring +1 +1 +- ToDateString(tv) abstract-op ecmascript @@ -396,6 +501,16 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-todatestring 1 1 - +ToIndex +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toindex +1 +1 +- ToIndex(value) abstract-op ecmascript @@ -406,6 +521,76 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toindex 1 1 - +ToInt16 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toint16 +1 +1 +- +ToInt16(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toint16 +1 +1 +- +ToInt32 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toint32 +1 +1 +- +ToInt32(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toint32 +1 +1 +- +ToInt8 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toint8 +1 +1 +- +ToInt8(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toint8 +1 +1 +- +ToIntegerOrInfinity +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tointegerorinfinity +1 +1 +- ToIntegerOrInfinity(argument) abstract-op ecmascript @@ -416,6 +601,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tointegerorinfini 1 1 - +ToLength +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tolength +1 +1 +- ToLength(argument) abstract-op ecmascript @@ -426,6 +621,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tolength 1 1 - +ToNumber +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tonumber +1 +1 +- ToNumber(argument) abstract-op ecmascript @@ -436,6 +641,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tonumber 1 1 - +ToNumeric +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tonumeric +1 +1 +- ToNumeric(value) abstract-op ecmascript @@ -446,6 +661,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tonumeric 1 1 - +ToObject +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toobject +1 +1 +- ToObject(argument) abstract-op ecmascript @@ -456,6 +681,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toobject 1 1 - +ToPrimitive +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toprimitive +1 +1 +- ToPrimitive(input, preferredType) abstract-op ecmascript @@ -466,6 +701,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-toprimitive 1 1 - +ToPropertyDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-topropertydescriptor +1 +1 +- ToPropertyDescriptor(Obj) abstract-op ecmascript @@ -476,6 +721,16 @@ https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-topr 1 1 - +ToPropertyKey +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-topropertykey +1 +1 +- ToPropertyKey(argument) abstract-op ecmascript @@ -486,6 +741,16 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-topropertykey 1 1 - +ToString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tostring +1 +1 +- ToString(argument) abstract-op ecmascript @@ -496,6 +761,96 @@ https://tc39.es/ecma262/multipage/abstract-operations.html#sec-tostring 1 1 - +ToUint16 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint16 +1 +1 +- +ToUint16(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint16 +1 +1 +- +ToUint32 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint32 +1 +1 +- +ToUint32(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint32 +1 +1 +- +ToUint8 +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint8 +1 +1 +- +ToUint8(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint8 +1 +1 +- +ToUint8Clamp +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint8clamp +1 +1 +- +ToUint8Clamp(argument) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/abstract-operations.html#sec-touint8clamp +1 +1 +- +ToZeroPaddedDecimalString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-tozeropaddeddecimalstring +1 +1 +- ToZeroPaddedDecimalString(n, minLength) abstract-op ecmascript @@ -512,7 +867,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#toggleevent +https://html.spec.whatwg.org/multipage/interaction.html#toggleevent 1 1 - @@ -522,7 +877,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/popover.html#toggleeventinit +https://html.spec.whatwg.org/multipage/interaction.html#toggleeventinit 1 1 - @@ -566,13 +921,23 @@ https://www.w3.org/TR/webauthn-3/#enumdef-tokenbindingstatus 1 1 - +TokenVersion +enum +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#enumdef-tokenversion +1 +1 +- TopLevelStorageAccessPermissionDescriptor dictionary -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#dictdef-toplevelstorageaccesspermissiondescriptor +https://privacycg.github.io/requestStorageAccessFor/#dictdef-toplevelstorageaccesspermissiondescriptor 1 1 - @@ -654,8 +1019,9 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-tonebuffer + 1 -1 +RTCDTMFSender - [[tokens]] attribute @@ -701,6 +1067,17 @@ https://www.w3.org/TR/gamepad/#dfn-touched 1 GamepadButton - +[[touchevents]] +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-touchevents + +1 +Gamepad +- to value css-shapes-2 @@ -895,6 +1272,28 @@ https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-number.prototype.to 1 Number - +toFixedLengthBuffer() +method +wasm-js-api-2 +wasm-js-api +2 +current +https://webassembly.github.io/spec/js-api/#dom-memory-tofixedlengthbuffer +1 +1 +Memory +- +toFixedLengthBuffer() +method +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#dom-memory-tofixedlengthbuffer +1 +1 +Memory +- toFloat32Array() method geometry-1 @@ -1044,13 +1443,35 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#dom-performanceeventtiming-tojson +https://w3c.github.io/event-timing/#dom-performanceeventtiming-tojson 1 1 PerformanceEventTiming - toJSON() method +geolocation +geolocation +1 +current +https://w3c.github.io/geolocation/#dom-geolocationcoordinates-tojson +1 +1 +GeolocationCoordinates +- +toJSON() +method +geolocation +geolocation +1 +current +https://w3c.github.io/geolocation/#dom-geolocationposition-tojson +1 +1 +GeolocationPosition +- +toJSON() +method hr-time-3 hr-time 3 @@ -1073,6 +1494,28 @@ LargestContentfulPaint - toJSON() method +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-tojson +1 +1 +PerformanceLongAnimationFrameTiming +- +toJSON() +method +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-tojson +1 +1 +PerformanceScriptTiming +- +toJSON() +method longtasks-1 longtasks 1 @@ -1249,6 +1692,17 @@ CSPViolationReportBody - toJSON() method +permissions-policy-1 +permissions-policy +1 +current +https://w3c.github.io/webappsec-permissions-policy/#dom-permissionspolicyviolationreportbody-tojson +1 +1 +PermissionsPolicyViolationReportBody +- +toJSON() +method webauthn-3 webauthn 3 @@ -1414,6 +1868,28 @@ PerformanceEventTiming - toJSON() method +geolocation +geolocation +1 +snapshot +https://www.w3.org/TR/geolocation/#dom-geolocationcoordinates-tojson +1 +1 +GeolocationCoordinates +- +toJSON() +method +geolocation +geolocation +1 +snapshot +https://www.w3.org/TR/geolocation/#dom-geolocationposition-tojson +1 +1 +GeolocationPosition +- +toJSON() +method geometry-1 geometry 1 @@ -1480,6 +1956,28 @@ LargestContentfulPaint - toJSON() method +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-performancelongtasktiming-tojson +1 +1 +PerformanceLongTaskTiming +- +toJSON() +method +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#dom-taskattributiontiming-tojson +1 +1 +TaskAttributionTiming +- +toJSON() +method mediacapture-streams mediacapture-streams 1 @@ -1535,6 +2033,17 @@ PerformanceEntry - toJSON() method +permissions-policy-1 +permissions-policy +1 +snapshot +https://www.w3.org/TR/permissions-policy-1/#dom-permissionspolicyviolationreportbody-tojson +1 +1 +PermissionsPolicyViolationReportBody +- +toJSON() +method push-api push-api 1 @@ -1623,6 +2132,17 @@ TrustedScriptURL - toJSON() method +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredential-tojson +1 +1 +PublicKeyCredential +- +toJSON() +method webcodecs webcodecs 1 @@ -1704,7 +2224,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.tolocalestring +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tolocalestring 1 1 %TypedArray% @@ -1929,6 +2449,83 @@ https://w3c.github.io/web-nfc/#dom-ndefrecord-torecords 1 NDEFRecord - +toResizableBuffer() +method +wasm-js-api-2 +wasm-js-api +2 +current +https://webassembly.github.io/spec/js-api/#dom-memory-toresizablebuffer +1 +1 +Memory +- +toResizableBuffer() +method +wasm-js-api-2 +wasm-js-api +2 +snapshot +https://www.w3.org/TR/wasm-js-api-2/#dom-memory-toresizablebuffer +1 +1 +Memory +- +toReversed() +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.toreversed +1 +1 +%TypedArray% +- +toReversed() +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.toreversed +1 +1 +Array +- +toSorted(comparator) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tosorted +1 +1 +%TypedArray% +- +toSorted(comparator) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tosorted +1 +1 +Array +- +toSpliced(start, skipCount, ...items) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tospliced +1 +1 +Array +- toStart argument dom @@ -2002,7 +2599,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.tostring +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tostring 1 1 %TypedArray% @@ -2095,6 +2692,17 @@ https://drafts.css-houdini.org/css-typed-om-1/#dom-cssnumericvalue-tosum 1 CSSNumericValue - +toSum() +method +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-tosum +1 +1 +CSSNumericValue +- toSum(...units) method css-typed-om-1 @@ -2150,6 +2758,37 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.toup 1 String - +toWellFormed() +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.towellformed +1 +1 +String +- +toc +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-toc + +1 +- +toc +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-toc + +1 +- toggle dfn html @@ -2171,6 +2810,37 @@ https://html.spec.whatwg.org/multipage/indices.html#event-toggle 1 HTMLElement - +toggle +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-toggle +1 +1 +html-global/popovertargetaction +- +toggle +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-toggle-state + +1 +- +toggle task tracker +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-tracker + +1 +- toggle() function css-values-5 @@ -2258,24 +2928,46 @@ https://www.w3.org/TR/mediasession/#dom-mediasessionaction-togglecamera 1 MediaSessionAction - -togglemicrophone +togglemicrophone +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionaction-togglemicrophone +1 +1 +MediaSessionAction +- +togglemicrophone +enum-value +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-togglemicrophone +1 +1 +MediaSessionAction +- +togglescreenshare enum-value mediasession mediasession 1 current -https://w3c.github.io/mediasession/#dom-mediasessionaction-togglemicrophone +https://w3c.github.io/mediasession/#dom-mediasessionaction-togglescreenshare 1 1 MediaSessionAction - -togglemicrophone +togglescreenshare enum-value mediasession mediasession 1 snapshot -https://www.w3.org/TR/mediasession/#dom-mediasessionaction-togglemicrophone +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-togglescreenshare 1 1 MediaSessionAction @@ -2393,7 +3085,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token +https://urlpattern.spec.whatwg.org/#token 1 - @@ -2433,7 +3125,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-token-increment +https://urlpattern.spec.whatwg.org/#constructor-string-parser-token-increment 1 1 constructor string parser @@ -2444,28 +3136,18 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-token-index +https://urlpattern.spec.whatwg.org/#constructor-string-parser-token-index 1 1 constructor string parser - token list dfn -wai-aria-1.2 -wai-aria -1 -current -https://w3c.github.io/aria/#dfn-token-list - -1 -- -token list -dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-token-list +https://urlpattern.spec.whatwg.org/#constructor-string-parser-token-list 1 1 constructor string parser @@ -2476,7 +3158,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-parser-token-list +https://urlpattern.spec.whatwg.org/#pattern-parser-token-list 1 pattern parser @@ -2487,7 +3169,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#token-list +https://urlpattern.spec.whatwg.org/#token-list 1 - @@ -2497,7 +3179,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenizer-token-list +https://urlpattern.spec.whatwg.org/#tokenizer-token-list 1 tokenizer @@ -2507,9 +3189,39 @@ dfn wai-aria-1.2 wai-aria 1 +current +https://w3c.github.io/aria/#dfn-token-list + +1 +- +token list +dfn +wai-aria-1.3 +wai-aria +1 +current +https://w3c.github.io/aria/#dfn-token-list + +1 +- +token list +dfn +wai-aria-1.2 +wai-aria +1 snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-token-list +1 +- +token list +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-token-list + 1 - token set @@ -2523,14 +3235,25 @@ https://dom.spec.whatwg.org/#concept-dtl-tokens 1 DOMTokenList - -tokenBinding -dict-member +token stream +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#css-token-stream + +1 +CSS +- +tokenbinding +dfn webauthn-3 webauthn 3 -snapshot -https://www.w3.org/TR/webauthn-3/#dom-collectedclientdata-tokenbinding -1 +current +https://w3c.github.io/webauthn/#dom-collectedclientdata-tokenbinding + 1 CollectedClientData - @@ -2539,8 +3262,8 @@ dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#collectedclientdata-tokenbinding +snapshot +https://www.w3.org/TR/webauthn-3/#collectedclientdata-tokenbinding 1 CollectedClientData @@ -2594,7 +3317,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenize +https://urlpattern.spec.whatwg.org/#tokenize 1 - @@ -2615,7 +3338,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenize-policy +https://urlpattern.spec.whatwg.org/#tokenize-policy 1 - @@ -2645,8 +3368,28 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#tokenizer +https://urlpattern.spec.whatwg.org/#tokenizer +1 +- +tokenizer +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/grammar.html#x3 +1 +1 +- +tokenizer +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/grammar.html#x3 +1 1 - tokens @@ -2673,6 +3416,37 @@ https://dom.spec.whatwg.org/#dom-domtokenlist-remove-tokens-tokens DOMTokenList/remove(...tokens) DOMTokenList/remove() - +tokens +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#token-stream-tokens + +1 +token stream +- +tokenstore +dfn +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#tokenstore + +1 +- +tolocaltime record +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#datetimeformat-tolocaltime-record +1 +1 +- tomato dfn css-color-3 @@ -2693,6 +3467,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-tomato 1 1 <color> +<named-color> - tomato dfn @@ -2714,6 +3489,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-tomato 1 1 <color> +<named-color> - tone attribute @@ -2781,6 +3557,28 @@ https://www.w3.org/TR/webrtc/#dom-RTCDTMFSender-tonebuffer 1 RTCDTMFSender - +toneMapping +dict-member +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpucanvasconfiguration-tonemapping +1 +1 +GPUCanvasConfiguration +- +toneMapping +dict-member +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpucanvasconfiguration-tonemapping +1 +1 +GPUCanvasConfiguration +- tonechange event webrtc @@ -2793,14 +3591,15 @@ https://w3c.github.io/webrtc-pc/#event-RTCDTMFSender-tonechange RTCDTMFSender - tonechange -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-RTCDTMFSender-tonechange +1 - +RTCDTMFSender - too sensitive or dangerous dfn @@ -2855,16 +3654,6 @@ current https://w3c.github.io/accname/#dfn-tooltip-attribute -- -tooltip attribute -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-tooltip-attribute - -1 - tooltip attribute dfn @@ -2884,7 +3673,7 @@ accname snapshot https://www.w3.org/TR/accname-1.2/#dfn-tooltip-attribute -1 + - tooltip attribute dfn @@ -2917,6 +3706,17 @@ https://www.w3.org/TR/FileAPI/#TooManyReadsFR 1 - top +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-top +1 +1 +CSSPositionTryDescriptors +- +top value css-anchor-position-1 css-anchor-position @@ -2929,6 +3729,18 @@ anchor() - top value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-top +1 +1 +position-area +<position-area> +- +top +value css-backgrounds-3 css-backgrounds 3 @@ -2940,11 +3752,11 @@ background-position - top value -css-backgrounds-4 -css-backgrounds +css-borders-4 +css-borders 4 current -https://drafts.csswg.org/css-backgrounds-4/#valdef-border-limit-top +https://drafts.csswg.org/css-borders-4/#valdef-border-limit-top 1 1 border-limit @@ -3156,16 +3968,36 @@ Window - top attribute -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-screendetailed-top +https://w3c.github.io/window-management/#dom-screendetailed-top 1 1 ScreenDetailed - top +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-top +1 +1 +- +top +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-top +1 +1 +- +top dfn css22 css @@ -3177,6 +4009,29 @@ https://www.w3.org/TR/CSS22/visuren.html#propdef-top - top value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-top +1 +1 +anchor() +- +top +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-top +1 +1 +inset-area +<inset-area> +- +top +value css-backgrounds-3 css-backgrounds 3 @@ -3328,15 +4183,26 @@ DOMRectReadOnly - top attribute -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-screendetailed-top +https://www.w3.org/TR/window-management/#dom-screendetailed-top 1 1 ScreenDetailed - +top 5 topics with caller domains +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#epoch-top-5-topics-with-caller-domains + +1 +epoch +- top accent attachment dfn mathml-core @@ -3357,15 +4223,104 @@ https://www.w3.org/TR/mathml-core/#dfn-top-accent-attachment 1 - +top bids count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-top-bids-count + +1 +leading bid info +- top layer dfn -fullscreen -fullscreen +css-position-4 +css-position +4 +current +https://drafts.csswg.org/css-position-4/#document-top-layer +1 +1 +Document +- +top level context domain +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topics-caller-context-top-level-context-domain + +1 +topics caller context +- +top level seller +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-top-level-seller + +1 +leading bid info +- +top level seller debug loss report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-top-level-seller-debug-loss-report-url + +1 +bid debug reporting info +- +top level seller debug win report url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-debug-reporting-info-top-level-seller-debug-win-report-url + +1 +bid debug reporting info +- +top level seller signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-top-level-seller-signals + +1 +leading bid info +- +top non-k-anon-enforced bids count +dfn +turtledove +turtledove 1 current -https://fullscreen.spec.whatwg.org/#top-layer +https://wicg.github.io/turtledove/#leading-bid-info-top-non-k-anon-enforced-bids-count + +1 +leading bid info +- +top non-k-anon-enforced score +dfn +turtledove +turtledove 1 +current +https://wicg.github.io/turtledove/#leading-bid-info-top-non-k-anon-enforced-score + 1 +leading bid info - top of the document dfn @@ -3377,6 +4332,17 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#top-of-the-document 1 - +top score +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#leading-bid-info-top-score + +1 +leading bid info +- top-level dfn storage-access @@ -3558,8 +4524,9 @@ html 1 current https://html.spec.whatwg.org/multipage/document-sequences.html#bc-traversable - 1 +1 +browsing context - top-level traversable dfn @@ -3580,6 +4547,27 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-traversable 1 +1 +- +top-level traversable +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#navigable-top-level-traversable + +1 +navigable +- +top-level traversable +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#top-level-traversable + 1 - top-level traversable set @@ -3594,13 +4582,46 @@ https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-travers - top-level-storage-access permission -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor +1 +current +https://privacycg.github.io/requestStorageAccessFor/#permissiondef-top-level-storage-access +1 +1 +- +topLevelSeller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-toplevelseller +1 +1 +BiddingBrowserSignals +- +topLevelSeller +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-toplevelseller +1 +1 +ReportingBrowserSignals +- +topLevelSellerSignals +dict-member +turtledove +turtledove 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#permissiondef-top-level-storage-access +https://wicg.github.io/turtledove/#dom-reportresultbrowsersignals-toplevelsellersignals 1 1 +ReportResultBrowserSignals - topOrigin attribute @@ -3647,6 +4668,17 @@ https://w3c.github.io/secure-payment-confirmation/#dom-collectedclientadditional CollectedClientAdditionalPaymentData - topOrigin +dict-member +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-collectedclientdata-toporigin +1 +1 +CollectedClientData +- +topOrigin attribute payment-handler payment-handler @@ -3690,6 +4722,160 @@ https://www.w3.org/TR/secure-payment-confirmation/#dom-collectedclientadditional 1 CollectedClientAdditionalPaymentData - +topOrigin +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-collectedclientdata-toporigin +1 +1 +CollectedClientData +- +topWindowHostname +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-topwindowhostname +1 +1 +BiddingBrowserSignals +- +topWindowHostname +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-reportingbrowsersignals-topwindowhostname +1 +1 +ReportingBrowserSignals +- +topWindowHostname +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-scoringbrowsersignals-topwindowhostname +1 +1 +ScoringBrowserSignals +- +topic +dict-member +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-browsingtopic-topic +1 +1 +BrowsingTopic +- +topic id +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topic-with-caller-domains-topic-id + +1 +topic with caller domains +- +topic ids +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-topic-ids + +1 +browsing topics types +- +topic with caller domains +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-topic-with-caller-domains + +1 +browsing topics types +- +topics calculation input data +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#determine-topics-calculation-input-data-header-topics-calculation-input-data + +1 +determine-topics-calculation-input-data-header +- +topics calculation input data +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topics-history-entry-topics-calculation-input-data + +1 +topics history entry +- +topics caller context +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-topics-caller-context + +1 +browsing topics types +- +topics caller domains +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#topics-history-entry-topics-caller-domains + +1 +topics history entry +- +topics history entry +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-topics-history-entry + +1 +browsing topics types +- +topics history storage +dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#user-agent-topics-history-storage + +1 +user agent +- topmargin element-attr html @@ -3738,7 +4924,7 @@ html 1 current https://html.spec.whatwg.org/multipage/popover.html#topmost-popover-ancestor - +1 1 - topmost script-having execution context @@ -3916,7 +5102,7 @@ PaymentRequestEventInit - total dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -3927,7 +5113,7 @@ PaymentDetailsInit - total dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -3938,7 +5124,7 @@ PaymentDetailsModifier - total dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -4004,33 +5190,33 @@ PaymentRequestEventInit - total dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit-total +https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit-total 1 1 PaymentDetailsInit - total dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-total +https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-total 1 1 PaymentDetailsModifier - total dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-total +https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-total 1 1 PaymentDetailsUpdate @@ -4129,6 +5315,17 @@ https://w3c.github.io/media-playback-quality/#dfn-total-video-frame-count 1 - +total window +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#report-window-list-total-window + +1 +report window list +- totalAssemblyTime dict-member webrtc-stats @@ -4178,17 +5375,6 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudioenergy -1 - -RTCMediaStreamTrackStats -- -totalAudioEnergy -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-totalaudioenergy 1 @@ -4206,39 +5392,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-totalaudioenerg 1 RTCInboundRtpStreamStats - -totalAudioEnergy -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudioenergy -1 - -RTCMediaStreamTrackStats -- -totalCaptureDelay -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats-totalcapturedelay -1 -1 -RTCAudioSourceStats -- -totalCaptureDelay -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-totalcapturedelay -1 -1 -RTCAudioSourceStats -- totalDecodeTime dict-member webrtc-stats @@ -4503,50 +5656,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcremoteoutboundrtpstreamstats-totalrou 1 RTCRemoteOutboundRtpStreamStats - -totalRtt -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-totalrtt -1 - -RTCIceCandidatePairStats -- -totalRtt -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatepairstats-totalrtt -1 - -RTCIceCandidatePairStats -- -totalSamplesCaptured -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats-totalsamplescaptured -1 -1 -RTCAudioSourceStats -- -totalSamplesCaptured -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcaudiosourcestats-totalsamplescaptured -1 -1 -RTCAudioSourceStats -- totalSamplesCount dict-member webrtc-stats @@ -4607,17 +5716,6 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalsamplesduration -1 - -RTCMediaStreamTrackStats -- -totalSamplesDuration -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcaudioplayoutstats-totalsamplesduration 1 @@ -4646,17 +5744,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-totalsamplesdur 1 RTCInboundRtpStreamStats - -totalSamplesDuration -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-totalsamplesduration -1 - -RTCMediaStreamTrackStats -- totalSamplesReceived dict-member webrtc-stats @@ -4673,34 +5760,12 @@ dict-member webrtc-stats webrtc-stats 1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalsamplesreceived -1 - -RTCMediaStreamTrackStats -- -totalSamplesReceived -dict-member -webrtc-stats -webrtc-stats -1 snapshot https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-totalsamplesreceived 1 1 RTCInboundRtpStreamStats - -totalSamplesReceived -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-totalsamplesreceived -1 - -RTCMediaStreamTrackStats -- totalSquaredInterFrameDelay dict-member webrtc-stats @@ -4752,6 +5817,26 @@ touch-events snapshot https://www.w3.org/TR/touch-events/#dfn-touch-point 1 +1 +- +touch surface +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-touch-surface + +1 +- +touch surface enumeration order +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-touch-surface-enumeration-order + 1 - touch target list diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tr.data b/bikeshed/spec-data/readonly/anchors/anchors-tr.data index b6658015f7..35b5162dd8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tr.data @@ -31,6 +31,50 @@ https://www.w3.org/TR/webxr/#dom-xrtargetraymode-tracked-pointer 1 XRTargetRayMode - +"transient" +enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessiontype-transient +1 +1 +AudioSessionType +- +"transient-pointer" +enum-value +webxr +webxr +1 +current +https://immersive-web.github.io/webxr/#dom-xrtargetraymode-transient-pointer +1 +1 +XRTargetRayMode +- +"transient-pointer" +enum-value +webxr +webxr +1 +snapshot +https://www.w3.org/TR/webxr/#dom-xrtargetraymode-transient-pointer +1 +1 +XRTargetRayMode +- +"transient-solo" +enum-value +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosessiontype-transient-solo +1 +1 +AudioSessionType +- "transparent" enum-value fileapi @@ -53,17 +97,6 @@ https://www.w3.org/TR/FileAPI/#dom-endingtype-transparent 1 EndingType - -"traverse" -enum-value -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigationtype-traverse -1 -1 -NavigationType -- "triangle" enum-value webaudio @@ -419,15 +452,139 @@ https://www.w3.org/TR/css-transforms-1/#typedef-transform-list 1 1 - -@try -at-rule +<transform-mix()> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-transform-mix +1 +1 +- +<transition-behavior-value> +type +css-transitions-2 +css-transitions +2 +current +https://drafts.csswg.org/css-transitions-2/#typedef-transition-behavior-value +1 +1 +- +<transition-behavior-value> +type +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#typedef-transition-behavior-value +1 +1 +- +<transpose/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_transpose + +1 +- +<transpose/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_transpose + +1 +- +<true/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_true + +1 +- +<true/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_true + +1 +- +<try-size> +type +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#typedef-try-size +1 +1 +- +<try-size> +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-try-size +1 +1 +- +<try-tactic> +type +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#typedef-position-try-fallbacks-try-tactic +1 +1 +position-try-fallbacks +- +<try-tactic> +value css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#at-ruledef-try +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-try-tactic +1 +1 +position-try-fallbacks +- +<try-tactic> +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-position-try-options-try-tactic +1 +1 +position-try-options +- +<try-tactic> +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-try-tactic 1 1 +position-try-options - TrackEvent interface @@ -663,6 +820,16 @@ https://streams.spec.whatwg.org/#transform-stream-default-sink-write-algorithm 1 1 - +TransformStreamDefaultSourceCancelAlgorithm +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#transform-stream-default-source-cancel +1 +1 +- TransformStreamDefaultSourcePullAlgorithm abstract-op streams @@ -703,6 +870,16 @@ https://streams.spec.whatwg.org/#transform-stream-set-backpressure 1 1 - +TransformStreamUnblockWrite +abstract-op +streams +streams +1 +current +https://streams.spec.whatwg.org/#transform-stream-unblock-write +1 +1 +- Transformer dictionary streams @@ -713,6 +890,16 @@ https://streams.spec.whatwg.org/#dictdef-transformer 1 1 - +TransformerCancelCallback +callback +streams +streams +1 +current +https://streams.spec.whatwg.org/#callbackdef-transformercancelcallback +1 +1 +- TransformerFlushCallback callback streams @@ -826,6 +1013,16 @@ https://dom.spec.whatwg.org/#treewalker 1 1 - +TriggerPromiseReactions +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-triggerpromisereactions +1 +1 +- TriggerPromiseReactions(reactions, argument) abstract-op ecmascript @@ -836,6 +1033,16 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-triggerpr 1 1 - +TrimString +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-trimstring +1 +1 +- TrimString(string, where) abstract-op ecmascript @@ -1014,6 +1221,17 @@ webtransport webtransport 1 current +https://w3c.github.io/webtransport/#dom-webtransportsendgroup-transport-slot +1 +1 +WebTransportSendGroup +- +[[Transport]] +attribute +webtransport +webtransport +1 +current https://w3c.github.io/webtransport/#dom-webtransportsendstream-transport-slot 1 1 @@ -1047,6 +1265,17 @@ webtransport webtransport 1 snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendgroup-transport-slot +1 +1 +WebTransportSendGroup +- +[[Transport]] +attribute +webtransport +webtransport +1 +snapshot https://www.w3.org/TR/webtransport/#dom-webtransportsendstream-transport-slot 1 1 @@ -1074,6 +1303,17 @@ https://www.w3.org/TR/webcodecs/#dom-imagetracklist-track-list-slot 1 ImageTrackList - +[[trackVisibility]] +attribute +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-trackvisibility-slot +1 +1 +IntersectionObserver +- [[track]] attribute mediacapture-transform @@ -1118,6 +1358,17 @@ https://www.w3.org/TR/mediacapture-transform/#dom-videotrackgenerator-track-slot 1 VideoTrackGenerator - +[[tracker]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-tracker + +1 +SmartCardContext +- [[tracks established]] attribute webcodecs @@ -1140,6 +1391,17 @@ https://www.w3.org/TR/webcodecs/#dom-imagedecoder-tracks-established-slot 1 ImageDecoder - +[[transactionState]] +attribute +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-transactionstate + +1 +SmartCardConnection +- [[transfer]] attribute webcodecs @@ -1238,6 +1500,16 @@ https://console.spec.whatwg.org/#trace console - track +dfn +css-scrollbars-1 +css-scrollbars +1 +current +https://drafts.csswg.org/css-scrollbars-1/#track + +1 +- +track attribute html html @@ -1401,17 +1673,6 @@ https://w3c.github.io/webrtc-pc/#event-track RTCPeerConnection - track -enum-value -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcstatstype-track -1 -1 -RTCStatsType -- -track attribute image-capture image-capture @@ -1477,17 +1738,6 @@ https://www.w3.org/TR/mediacapture-transform/#dom-videotrackgenerator-track VideoTrackGenerator - track -enum-value -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcstatstype-track -1 -1 -RTCStatsType -- -track attribute webrtc webrtc @@ -1532,14 +1782,15 @@ https://www.w3.org/TR/webrtc/#dom-rtpreceiver-track RTCRtpReceiver - track -dfn +event webrtc webrtc 1 snapshot https://www.w3.org/TR/webrtc/#event-track +1 - +RTCPeerConnection - track buffer dfn @@ -1587,9 +1838,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#track-description - +https://w3c.github.io/media-source/#dfn-track-description +1 - track description dfn @@ -1597,9 +1848,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#track-description - +https://www.w3.org/TR/media-source-2/#dfn-track-description +1 - track enabled state dfn @@ -1610,6 +1861,7 @@ current https://w3c.github.io/mediacapture-main/#track-enabled 1 1 +MediaStreamTrack - track enabled state dfn @@ -1620,6 +1872,7 @@ snapshot https://www.w3.org/TR/mediacapture-streams/#track-enabled 1 1 +MediaStreamTrack - track ended by the user agent dfn @@ -1647,9 +1900,9 @@ media-source-2 media-source 2 current -https://w3c.github.io/media-source/#track-id - +https://w3c.github.io/media-source/#dfn-track-id +1 - track id dfn @@ -1657,9 +1910,9 @@ media-source-2 media-source 2 snapshot -https://www.w3.org/TR/media-source-2/#track-id - +https://www.w3.org/TR/media-source-2/#dfn-track-id +1 - track index dfn @@ -1921,137 +2174,71 @@ https://html.spec.whatwg.org/multipage/media.html#track-url 1 - -trackId +trackIdentifier dict-member webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-trackid +https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-trackidentifier +1 1 - RTCInboundRtpStreamStats - -trackId +trackIdentifier dict-member webrtc-stats webrtc-stats 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-trackid +https://w3c.github.io/webrtc-stats/#dom-rtcmediasourcestats-trackidentifier 1 - -RTCOutboundRtpStreamStats +1 +RTCMediaSourceStats - -trackId +trackIdentifier dict-member webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-trackid +https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-trackidentifier +1 1 - RTCInboundRtpStreamStats - -trackId +trackIdentifier dict-member webrtc-stats webrtc-stats 1 snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats-trackid -1 - -RTCOutboundRtpStreamStats -- -trackIdentifier -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-trackidentifier -1 -1 -RTCInboundRtpStreamStats -- -trackIdentifier -dict-member -webrtc-stats -webrtc-stats -1 -current -https://w3c.github.io/webrtc-stats/#dom-rtcmediasourcestats-trackidentifier +https://www.w3.org/TR/webrtc-stats/#dom-rtcmediasourcestats-trackidentifier 1 1 RTCMediaSourceStats - -trackIdentifier -dict-member -webrtc-stats -webrtc-stats +trackVisibility +attribute +intersection-observer +intersection-observer 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-trackidentifier -1 - -RTCMediaStreamTrackStats -- -trackIdentifier -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-trackidentifier -1 -1 -RTCInboundRtpStreamStats -- -trackIdentifier -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediasourcestats-trackidentifier +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-trackvisibility 1 1 -RTCMediaSourceStats -- -trackIdentifier -dict-member -webrtc-stats -webrtc-stats -1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamtrackstats-trackidentifier -1 - -RTCMediaStreamTrackStats +IntersectionObserver - -trackIds +trackVisibility dict-member -webrtc-stats -webrtc-stats +intersection-observer +intersection-observer 1 current -https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamstats-trackids -1 - -RTCMediaStreamStats -- -trackIds -dict-member -webrtc-stats -webrtc-stats +https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverinit-trackvisibility 1 -snapshot -https://www.w3.org/TR/webrtc-stats/#dom-rtcmediastreamstats-trackids 1 - -RTCMediaStreamStats +IntersectionObserverInit - tracked dfn @@ -2154,16 +2341,6 @@ css-text snapshot https://www.w3.org/TR/css-text-4/#tracking 1 -1 -- -tracking -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-tracking - 1 - tracking status resource space @@ -2175,16 +2352,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-tracking-status-resource-space -- -tracking status resource space -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-tracking-status-resource-space - -1 - tracking status value dfn @@ -2195,16 +2362,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-tracking-status-value -- -tracking status value -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-tracking-status-value - -1 - tracking the effective position of the legacy mouse pointer dfn @@ -2258,48 +2415,6 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dom-navigator-trackingexcepti Navigator - -trackingexceptionexists -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-trackingexceptionexists - -1 -navigator -- -trackingexceptionexists() -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-navigator-trackingexceptionexists - -1 -navigator -- -trackingexdata -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexdata - -1 -- -trackingexresult -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dom-trackingexresult - -1 -- tracks attribute webcodecs @@ -2390,6 +2505,16 @@ font-variant-east-asian - trailing surrogate dfn +infra +infra +1 +current +https://infra.spec.whatwg.org/#trailing-surrogate +1 +1 +- +trailing surrogate +dfn ecmascript ecmascript 1 @@ -2560,6 +2685,16 @@ indexeddb snapshot https://www.w3.org/TR/IndexedDB-3/#transaction-concept +1 +- +transaction state +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-transaction-state + 1 - transaction(storeNames) @@ -2735,8 +2870,9 @@ webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-transceiver-kind - 1 +1 +RTCRtpTransceiver - transceiver kind dfn @@ -2763,61 +2899,51 @@ dfn i18n-glossary i18n-glossary 1 -current -https://w3c.github.io/i18n-glossary/#dfn-transcoder +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-transcoder 1 - -transcoder -dfn -i18n-glossary -i18n-glossary +transcript +attribute +speech-api +speech-api 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-transcoder +current +https://wicg.github.io/speech-api/#dom-speechrecognitionalternative-transcript 1 - +1 +SpeechRecognitionAlternative - -transcoder +transcription dfn i18n-glossary i18n-glossary 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-transcoder +current +https://w3c.github.io/i18n-glossary/#dfn-transcription 1 - -transcoders +transcription dfn -i18n-glossary -i18n-glossary +handwriting-recognition +handwriting-recognition 1 current -https://w3c.github.io/i18n-glossary/#dfn-transcoder -1 +https://wicg.github.io/handwriting-recognition/#transcription +1 - -transcoders +transcription dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#dfn-transcoder +https://www.w3.org/TR/i18n-glossary/#dfn-transcription 1 -- -transcript -attribute -speech-api -speech-api -1 -current -https://wicg.github.io/speech-api/#dom-speechrecognitionalternative-transcript -1 -1 -SpeechRecognitionAlternative - transfer dict-member @@ -2853,14 +2979,48 @@ https://w3c.github.io/ServiceWorker/#dom-serviceworker-postmessage-message-trans ServiceWorker/postMessage(message, transfer) - transfer -dfn -media-source-2 -media-source -2 +dict-member +webcodecs +webcodecs +1 current -https://w3c.github.io/media-source/#dfn-transfer - +https://w3c.github.io/webcodecs/#dom-audiodatainit-transfer +1 +1 +AudioDataInit +- +transfer +dict-member +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-encodedaudiochunkinit-transfer +1 +1 +EncodedAudioChunkInit +- +transfer +dict-member +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-encodedvideochunkinit-transfer +1 +1 +EncodedVideoChunkInit +- +transfer +dict-member +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-imagedecoderinit-transfer 1 +1 +ImageDecoderInit - transfer attribute @@ -2885,6 +3045,17 @@ https://w3c.github.io/webcodecs/#dom-videocolorspaceinit-transfer VideoColorSpaceInit - transfer +dict-member +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoframebufferinit-transfer +1 +1 +VideoFrameBufferInit +- +transfer argument webrtc-encoded-transform webrtc-encoded-transform @@ -2917,22 +3088,12 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#mlnamedarraybufferviews-transfer%E2%91%A0 +https://webmachinelearning.github.io/webnn/#mlnamedarraybufferviews-transfer 1 MLNamedArrayBufferViews - transfer -dfn -media-source-2 -media-source -2 -snapshot -https://www.w3.org/TR/media-source-2/#dfn-transfer - -1 -- -transfer argument service-workers service-workers @@ -2955,15 +3116,15 @@ https://www.w3.org/TR/service-workers/#dom-serviceworker-postmessage-message-tra ServiceWorker/postMessage(message, transfer) - transfer -attribute +dict-member webcodecs webcodecs 1 snapshot -https://www.w3.org/TR/webcodecs/#dom-videocolorspace-transfer +https://www.w3.org/TR/webcodecs/#dom-audiodatainit-transfer 1 1 -VideoColorSpace +AudioDataInit - transfer dict-member @@ -2971,25 +3132,80 @@ webcodecs webcodecs 1 snapshot -https://www.w3.org/TR/webcodecs/#dom-videocolorspaceinit-transfer +https://www.w3.org/TR/webcodecs/#dom-encodedaudiochunkinit-transfer 1 1 -VideoColorSpaceInit +EncodedAudioChunkInit - transfer -dfn -webnn -webnn +dict-member +webcodecs +webcodecs 1 snapshot -https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer%E2%91%A0 - +https://www.w3.org/TR/webcodecs/#dom-encodedvideochunkinit-transfer 1 -MLNamedArrayBufferViews +1 +EncodedVideoChunkInit - transfer -argument -webrtc-encoded-transform +dict-member +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-imagedecoderinit-transfer +1 +1 +ImageDecoderInit +- +transfer +attribute +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videocolorspace-transfer +1 +1 +VideoColorSpace +- +transfer +dict-member +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videocolorspaceinit-transfer +1 +1 +VideoColorSpaceInit +- +transfer +dict-member +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoframebufferinit-transfer +1 +1 +VideoFrameBufferInit +- +transfer +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer + +1 +MLNamedArrayBufferViews +- +transfer +argument +webrtc-encoded-transform webrtc-encoded-transform 1 snapshot @@ -3005,11 +3221,21 @@ RTCRtpScriptTransform/constructor(worker) - transfer function dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-transfer-function +https://w3c.github.io/png/#dfn-transfer-function + +1 +- +transfer function +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-transfer-function 1 - @@ -3063,6 +3289,17 @@ https://html.spec.whatwg.org/multipage/structured-data.html#transfer-steps 1 1 - +transfer(newLength) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.transfer +1 +1 +ArrayBuffer +- transfer-receiving steps dfn html @@ -3161,6 +3398,17 @@ https://www.w3.org/TR/resource-timing/#dom-performanceresourcetiming-transfersiz 1 PerformanceResourceTiming - +transferToFixedLength(newLength) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.transfertofixedlength +1 +1 +ArrayBuffer +- transferToImageBitmap() method html @@ -3172,6 +3420,17 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-offscreencanvas-transfert 1 OffscreenCanvas - +transferable +dfn +webidl +webidl +1 +current +https://webidl.spec.whatwg.org/#buffersource-transferable +1 +1 +BufferSource +- transferable object dfn html @@ -3716,6 +3975,17 @@ https://www.w3.org/TR/geometry-1/#transform-a-point-with-a-matrix 1 1 - +transform from snapshot containing block +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#captured-element-transform-from-snapshot-containing-block + +1 +captured element +- transform stream dfn streams @@ -3767,6 +4037,16 @@ https://wicg.github.io/layout-instability/#transform-indifferent-starting-point 1 1 - +transform-mix() +function +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#funcdef-transform-mix +1 +1 +- transform-origin property css-transforms-1 @@ -3925,6 +4205,46 @@ https://streams.spec.whatwg.org/#transformstream-set-up-transformalgorithm 1 1 TransformStream/set up +- +transformation +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-transformation + + +- +transformation +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-transformation + + +- +transformation algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-transformation-algorithm + + +- +transformation algorithm +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-transformation-algorithm + + - transformation matrix dfn @@ -4004,6 +4324,16 @@ web-animations current https://drafts.csswg.org/web-animations-2/#transformed-time +1 +- +transformed time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#transformed-time + 1 - transformer @@ -4099,6 +4429,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-csstransformvalue-csstransformvalue-tr 1 1 CSSTransformValue/CSSTransformValue(transforms) +CSSTransformValue/constructor(transforms) - transforms dfn @@ -4231,6 +4562,28 @@ https://dom.spec.whatwg.org/#transient-registered-observer 1 - +transient-pointer +enum-value +webxr +webxr +1 +current +https://immersive-web.github.io/webxr/#dom-xrtargetraymode-transient-pointer +1 +1 +XRTargetRayMode +- +transient-pointer +enum-value +webxr +webxr +1 +snapshot +https://www.w3.org/TR/webxr/#dom-xrtargetraymode-transient-pointer +1 +1 +XRTargetRayMode +- transition property css-transitions-1 @@ -4242,24 +4595,23 @@ https://drafts.csswg.org/css-transitions-1/#propdef-transition 1 - transition -attribute -navigation-api -navigation-api +dfn +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-transition -1 +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigation-transition + 1 -Navigation - transition -dfn -navigation-api -navigation-api +attribute +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-transition - +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-transition +1 1 Navigation - @@ -4281,6 +4633,16 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#transition-generation +1 +- +transition generation +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#transition-generation + 1 - transition origin @@ -4351,6 +4713,16 @@ css-transitions current https://drafts.csswg.org/css-transitions-2/#transition-phase +1 +- +transition phase +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#transition-phase + 1 - transition requests @@ -4374,27 +4746,36 @@ https://drafts.csswg.org/css-view-transitions-1/#viewtransition-transition-root- 1 ViewTransition - -transition suppressing rendering +transition root pseudo-element dfn css-view-transitions-1 css-view-transitions 1 -current -https://drafts.csswg.org/css-view-transitions-1/#document-transition-suppressing-rendering +snapshot +https://www.w3.org/TR/css-view-transitions-1/#viewtransition-transition-root-pseudo-element 1 -document +ViewTransition - -transition suppressing rendering -dfn -css-view-transitions-1 -css-view-transitions +transition-behavior +property +css-transitions-2 +css-transitions +2 +current +https://drafts.csswg.org/css-transitions-2/#propdef-transition-behavior +1 1 +- +transition-behavior +property +css-transitions-2 +css-transitions +2 snapshot -https://www.w3.org/TR/css-view-transitions-1/#document-transition-suppressing-rendering - +https://www.w3.org/TR/css-transitions-2/#propdef-transition-behavior +1 1 -document - transition-delay property @@ -4512,6 +4893,17 @@ https://drafts.csswg.org/css-transitions-2/#dom-csstransition-transitionproperty 1 CSSTransition - +transitionProperty +attribute +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#dom-csstransition-transitionproperty +1 +1 +CSSTransition +- transitionable dfn css-transitions-1 @@ -4520,6 +4912,16 @@ css-transitions current https://drafts.csswg.org/css-transitions-1/#transitionable +1 +- +transitionable +dfn +css-transitions-2 +css-transitions +2 +current +https://drafts.csswg.org/css-transitions-2/#transitionable + 1 - transitionable @@ -4530,6 +4932,16 @@ css-transitions snapshot https://www.w3.org/TR/css-transitions-1/#transitionable +1 +- +transitionable +dfn +css-transitions-2 +css-transitions +2 +snapshot +https://www.w3.org/TR/css-transitions-2/#transitionable + 1 - transitioncancel @@ -4691,6 +5103,16 @@ css-layout-api current https://drafts.css-houdini.org/css-layout-api-1/#translate-a-layoutconstraintsoptions-to-internal-constraints +1 +- +translate a preload destination +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/links.html#translate-a-preload-destination + 1 - translate() @@ -5060,26 +5482,79 @@ https://www.w3.org/TR/WGSL/#syntax-translation_unit 1 syntax - -transmission of request and response +transliteration dfn -network-error-logging-1 -network-error-logging +i18n-glossary +i18n-glossary 1 current -https://w3c.github.io/network-error-logging/#dfn-transmission-of-request-and-response +https://w3c.github.io/i18n-glossary/#dfn-transliteration +1 +- +transliteration +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-transliteration 1 + - transmission of request and response dfn -network-error-logging-1 +network-error-logging network-error-logging 1 -snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-transmission-of-request-and-response +current +https://w3c.github.io/network-error-logging/#dfn-transmission-of-request-and-response 1 - +transmission of request and response +dfn +network-error-logging +network-error-logging +1 +snapshot +https://www.w3.org/TR/network-error-logging/#dfn-transmission-of-request-and-response + +1 +- +transmit() +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-transmit +1 +1 +SmartCardConnection +- +transmit(sendBuffer) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-transmit +1 +1 +SmartCardConnection +- +transmit(sendBuffer, options) +method +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardconnection-transmit +1 +1 +SmartCardConnection +- transp dfn html @@ -5138,6 +5613,17 @@ https://html.spec.whatwg.org/multipage/dom.html#transparent - transparent dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#visibility-transparent +1 +1 +visibility +- +transparent +dfn css-color-3 css-color 3 @@ -5430,6 +5916,28 @@ https://w3c.github.io/webauthn/#dom-publickeycredentialdescriptorjson-transports PublicKeyCredentialDescriptorJSON - transports +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-transports +1 +1 +credential record +- +transports +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorattestationresponsejson-transports +1 +1 +AuthenticatorAttestationResponseJSON +- +transports dict-member webauthn-3 webauthn @@ -5440,6 +5948,17 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialdescriptor-transports 1 PublicKeyCredentialDescriptor - +transports +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialdescriptorjson-transports +1 +1 +PublicKeyCredentialDescriptorJSON +- transpose dfn wgsl @@ -5503,6 +6022,26 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose 1 1 MLGraphBuilder +- +trap +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#trap + + +- +trap +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#trap + + - trash token dfn @@ -5580,6 +6119,17 @@ https://dom.spec.whatwg.org/#concept-nodeiterator-traverse 1 NodeIterator - +traverse +enum-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtype-traverse +1 +1 +NavigationType +- traverse children dfn dom @@ -5611,35 +6161,24 @@ https://html.spec.whatwg.org/multipage/browsing-the-web.html#traverse-the-histor 1 - -traverseTo(key) -method -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#dom-navigation-traverseto -1 -1 -Navigation -- traverseTo(key, options) method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-traverseto +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-traverseto 1 1 Navigation - treat-as-public-address dfn -local-network-access -local-network-access +private-network-access +private-network-access 1 current -https://wicg.github.io/local-network-access/#treat-as-public-address +https://wicg.github.io/private-network-access/#treat-as-public-address 1 - @@ -5841,23 +6380,119 @@ https://www.w3.org/TR/webaudio/#dom-oscillatortype-triangle 1 OscillatorType - -triaxial +triangular(input) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-triangular +1 +1 +MLGraphBuilder +- +triangular(input) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular +1 +1 +MLGraphBuilder +- +triangular(input, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-triangular +1 +1 +MLGraphBuilder +- +triangular(input, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular +1 +1 +MLGraphBuilder +- +trig document +dfn +rdf12-trig +rdf-trig +1 +current +https://w3c.github.io/rdf-trig/spec/#dfn-trig-document + +1 +- +trig document +dfn +rdf12-trig +rdf-trig +1 +snapshot +https://www.w3.org/TR/rdf12-trig/#dfn-trig-document + +1 +- +trig parser dfn -generic-sensor -generic-sensor +rdf12-trig +rdf-trig 1 current -https://w3c.github.io/sensors/#triaxial +https://w3c.github.io/rdf-trig/spec/#dfn-trig-parser 1 - -triaxial +trig parser dfn -generic-sensor -generic-sensor +rdf12-trig +rdf-trig 1 snapshot -https://www.w3.org/TR/generic-sensor/#triaxial +https://www.w3.org/TR/rdf12-trig/#dfn-trig-parser + +1 +- +trigger +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligibility-trigger + +1 +eligibility +- +trigger +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligible-key-trigger + +1 +eligible key +- +trigger a prompt updated event +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#trigger-a-prompt-updated-event 1 - @@ -5881,6 +6516,28 @@ https://wicg.github.io/attribution-reporting-api/#trigger-attribution 1 - +trigger context id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-attribution-report-trigger-context-id + +1 +aggregatable attribution report +- +trigger context id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-trigger-context-id + +1 +attribution trigger +- trigger data dfn private-click-measurement @@ -5924,6 +6581,16 @@ https://wicg.github.io/attribution-reporting-api/#trigger-state-trigger-data 1 trigger state - +trigger debug data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data + +1 +- trigger debug data type dfn attribution-reporting-api @@ -5940,12 +6607,10 @@ attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-report-trigger-debug-key +https://wicg.github.io/attribution-reporting-api/#attribution-debug-info-trigger-debug-key 1 -attribution report -aggregatable report -event-level report +attribution debug info - trigger event-level attribution dfn @@ -5968,203 +6633,320 @@ https://wicg.github.io/attribution-reporting-api/#event-level-report-trigger-pri 1 event-level report - -trigger state +trigger spec dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-state +https://wicg.github.io/attribution-reporting-api/#trigger-spec 1 - -trigger time +trigger spec map dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#attribution-trigger-trigger-time +https://wicg.github.io/attribution-reporting-api/#trigger-spec-map 1 -attribution trigger - -trigger time +trigger specs dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#event-level-report-trigger-time +https://wicg.github.io/attribution-reporting-api/#attribution-source-trigger-specs 1 -event-level report +attribution source - -trigger-aggregate-deduplicated +trigger specs dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-deduplicated +https://wicg.github.io/attribution-reporting-api/#randomized-response-output-configuration-trigger-specs 1 -trigger debug data type +randomized response output configuration - -trigger-aggregate-insufficient-budget +trigger state dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-insufficient-budget +https://wicg.github.io/attribution-reporting-api/#trigger-state 1 -trigger debug data type - -trigger-aggregate-no-contributions +trigger time dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-no-contributions +https://wicg.github.io/attribution-reporting-api/#attribution-trigger-trigger-time 1 -trigger debug data type +attribution trigger - -trigger-aggregate-report-window-passed +trigger time dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-report-window-passed +https://wicg.github.io/attribution-reporting-api/#event-level-report-trigger-time 1 -trigger debug data type +event-level report - -trigger-aggregate-storage-limit +trigger-aggregate-attributions-per-source-destination-limit dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-storage-limit +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-attributions-per-source-destination-limit 1 trigger debug data type - -trigger-attributions-per-source-destination-limit +trigger-aggregate-deduplicated dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-attributions-per-source-destination-limit +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-deduplicated 1 trigger debug data type - -trigger-event-deduplicated +trigger-aggregate-excessive-reports dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-deduplicated +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-excessive-reports 1 trigger debug data type - -trigger-event-excessive-reports +trigger-aggregate-insufficient-budget dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-excessive-reports +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-insufficient-budget 1 trigger debug data type - -trigger-event-low-priority +trigger-aggregate-no-contributions dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-low-priority +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-no-contributions 1 trigger debug data type - -trigger-event-no-matching-configurations +trigger-aggregate-report-window-passed dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-no-matching-configurations +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-report-window-passed 1 trigger debug data type - -trigger-event-noise +trigger-aggregate-storage-limit dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-noise +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-aggregate-storage-limit 1 trigger debug data type - -trigger-event-report-window-passed +trigger-data matching mode dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-report-window-passed +https://wicg.github.io/attribution-reporting-api/#attribution-source-trigger-data-matching-mode 1 -trigger debug data type +attribution source - -trigger-event-storage-limit +trigger-data matching mode dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-storage-limit +https://wicg.github.io/attribution-reporting-api/#trigger-data-matching-mode 1 -trigger debug data type - -trigger-no-matching-filter-data +trigger-event-attributions-per-source-destination-limit dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-no-matching-filter-data +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-attributions-per-source-destination-limit 1 trigger debug data type - -trigger-no-matching-source +trigger-event-deduplicated dfn attribution-reporting-api attribution-reporting-api 1 current -https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-no-matching-source +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-deduplicated + +1 +trigger debug data type +- +trigger-event-excessive-reports +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-excessive-reports + +1 +trigger debug data type +- +trigger-event-low-priority +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-low-priority + +1 +trigger debug data type +- +trigger-event-no-matching-configurations +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-no-matching-configurations + +1 +trigger debug data type +- +trigger-event-no-matching-trigger-data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-no-matching-trigger-data + +1 +trigger debug data type +- +trigger-event-noise +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-noise + +1 +trigger debug data type +- +trigger-event-report-window-not-started +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-report-window-not-started 1 trigger debug data type - +trigger-event-report-window-passed +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-report-window-passed + +1 +trigger debug data type +- +trigger-event-storage-limit +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-event-storage-limit + +1 +trigger debug data type +- +trigger-no-matching-filter-data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-no-matching-filter-data + +1 +trigger debug data type +- +trigger-no-matching-source +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigger-no-matching-source + +1 +trigger debug data type +- +trigger-registration json key +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key + +1 +- trigger-reporting-origin-limit dfn attribution-reporting-api @@ -6176,6 +6958,28 @@ https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigge 1 trigger debug data type - +trigger-rumble +enum-value +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dom-gamepadhapticeffecttype-trigger-rumble +1 +1 +GamepadHapticEffectType +- +trigger-rumble +enum-value +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadhapticeffecttype-trigger-rumble +1 +1 +GamepadHapticEffectType +- trigger-unknown-error dfn attribution-reporting-api @@ -6187,6 +6991,103 @@ https://wicg.github.io/attribution-reporting-api/#trigger-debug-data-type-trigge 1 trigger debug data type - +triggerEligible +dict-member +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#dom-attributionreportingrequestoptions-triggereligible +1 +1 +AttributionReportingRequestOptions +- +trigger_context_id +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-trigger_context_id + +1 +trigger-registration JSON key +- +trigger_data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-trigger_data + +1 +source-registration JSON key +- +trigger_data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-trigger_data + +1 +trigger-registration JSON key +- +trigger_data_matching +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-trigger_data_matching + +1 +source-registration JSON key +- +trigger_specs +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-trigger_specs + +1 +source-registration JSON key +- +triggerdebugkey +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#obtain-an-event-level-report-triggerdebugkey + +1 +obtain an event-level report +- +triggered +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#triggered + +1 +- +triggered +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#triggered + +1 +- triggering event dfn private-click-measurement @@ -6197,6 +7098,28 @@ https://privacycg.github.io/private-click-measurement/#triggering-event 1 1 - +triggering location +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-triggering-location + +1 +diagnostic +- +triggering location +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic-triggering-location + +1 +diagnostic +- triggering result dfn attribution-reporting-api @@ -6207,6 +7130,28 @@ https://wicg.github.io/attribution-reporting-api/#triggering-result 1 - +triggering rule +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-triggering-rule + +1 +diagnostic +- +triggering rule +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#diagnostic-triggering-rule + +1 +diagnostic +- triggering status dfn attribution-reporting-api @@ -6228,38 +7173,126 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.trim 1 String - -trim-adjacent +trim-all +value +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-all +1 +1 +text-spacing-trim +- +trim-all value css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-adjacent +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-trim-all 1 1 -text-spacing +text-spacing-trim - -trim-auto +trim-both +value +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-trim-both +1 +1 +text-box-trim +- +trim-both value css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-auto +https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-both 1 1 text-spacing-trim - +trim-both +value +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#valdef-text-box-trim-trim-both +1 +1 +text-box-trim +- +trim-both +value +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-trim-both +1 +1 +text-spacing-trim +- +trim-end +value +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-trim-end +1 +1 +text-box-trim +- trim-end value +css-inline-3 +css-inline +3 +snapshot +https://www.w3.org/TR/css-inline-3/#valdef-text-box-trim-trim-end +1 +1 +text-box-trim +- +trim-start +value +css-inline-3 +css-inline +3 +current +https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-trim-start +1 +1 +text-box-trim +- +trim-start +value css-text-4 css-text 4 +current +https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-start +1 +1 +text-spacing-trim +- +trim-start +value +css-inline-3 +css-inline +3 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-end +https://www.w3.org/TR/css-inline-3/#valdef-text-box-trim-trim-start 1 1 -text-spacing +text-box-trim - trim-start value @@ -6267,10 +7300,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-start +https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-trim-start 1 1 -text-spacing +text-spacing-trim - trimEnd() method @@ -6342,7 +7375,37 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-triple +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-triple + +1 +- +triple +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-triple + +1 +- +triple term +dfn +rdf12-concepts +rdf-concepts +1 +current +https://w3c.github.io/rdf-concepts/spec/#dfn-triple-term + +1 +- +triple term +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-triple-term 1 - @@ -6369,6 +7432,90 @@ https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-true syntax_kw - true +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable-true +1 +1 +html-global/draggable +- +true +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable-true-state + +1 +- +true +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-true +1 +1 +html-global/contenteditable +- +true +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-true-state + +1 +- +true +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-true +1 +1 +html-global/spellcheck +- +true +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-true-state + +1 +- +true +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-true +1 +1 +html-global/writingsuggestions +- +true +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-true-state + +1 +- +true dfn wgsl wgsl @@ -6411,23 +7558,65 @@ https://html.spec.whatwg.org/multipage/obsolete.html#dom-marquee-truespeed 1 HTMLMarqueeElement - -truecolour -dfn -png-spec -png-spec +trueValue +argument +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-truevalue 1 +1 +MLGraphBuilder/where(condition, trueValue, falseValue, options) +- +trueValue +argument +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-truevalue +1 +1 +MLGraphBuilder/where(condition, trueValue, falseValue, options) +- +truecolor +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#3truecolour +https://w3c.github.io/png/#3truecolour 1 - -truecolour with alpha +truecolor dfn -png-spec -png-spec +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#3truecolour + 1 +- +truecolor with alpha +dfn +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-truecolour-with-alpha +https://w3c.github.io/png/#dfn-truecolor-with-alpha + +1 +- +truecolor with alpha +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-truecolor-with-alpha 1 - @@ -6495,6 +7684,59 @@ https://fs.spec.whatwg.org/#dom-filesystemwritablefilestream-truncate 1 FileSystemWritableFileStream - +trusted bidding signals batcher +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-batcher + +1 +- +trusted bidding signals failure bucket +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-bidding-signals-failure-bucket + +1 +- +trusted bidding signals keys +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-trusted-bidding-signals-keys + +1 +interest group +- +trusted bidding signals slot size mode +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-trusted-bidding-signals-slot-size-mode + +1 +interest group +- +trusted bidding signals url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-trusted-bidding-signals-url + +1 +interest group +- trusted immersive ui dfn webxr @@ -6515,6 +7757,27 @@ https://www.w3.org/TR/webxr/#trusted-immersive-ui 1 - +trusted scoring signals failure bucket +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#trusted-scoring-signals-failure-bucket + +1 +- +trusted scoring signals url +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#auction-config-trusted-scoring-signals-url + +1 +auction config +- trusted type dfn trusted-types @@ -6639,6 +7902,50 @@ https://www.w3.org/TR/trusted-types/#trusted-types-sink-group 1 - +trustedBiddingSignalsKeys +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-trustedbiddingsignalskeys +1 +1 +GenerateBidInterestGroup +- +trustedBiddingSignalsSlotSizeMode +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-trustedbiddingsignalsslotsizemode +1 +1 +GenerateBidInterestGroup +- +trustedBiddingSignalsURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-trustedbiddingsignalsurl +1 +1 +GenerateBidInterestGroup +- +trustedScoringSignalsURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadconfig-trustedscoringsignalsurl +1 +1 +AuctionAdConfig +- trustedTypes attribute trusted-types @@ -6668,7 +7975,7 @@ webdriver 2 current https://w3c.github.io/webdriver/#dfn-try - +1 1 - try @@ -6678,7 +7985,7 @@ webdriver 2 snapshot https://www.w3.org/TR/webdriver2/#dfn-try - +1 1 - try activate @@ -6727,7 +8034,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#try-to-consume-a-modifier-token +https://urlpattern.spec.whatwg.org/#try-to-consume-a-modifier-token 1 - @@ -6737,7 +8044,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#try-to-consume-a-regexp-or-wildcard-token +https://urlpattern.spec.whatwg.org/#try-to-consume-a-regexp-or-wildcard-token 1 - @@ -6747,7 +8054,17 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#try-to-consume-a-token +https://urlpattern.spec.whatwg.org/#try-to-consume-a-token + +1 +- +try to reach component ads target considering k-anonymity +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#try-to-reach-component-ads-target-considering-k-anonymity 1 - @@ -6778,7 +8095,7 @@ webdriver 2 current https://w3c.github.io/webdriver/#dfn-try - +1 1 - trying @@ -6788,6 +8105,6 @@ webdriver 2 snapshot https://www.w3.org/TR/webdriver2/#dfn-try - +1 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ts.data b/bikeshed/spec-data/readonly/anchors/anchors-ts.data index 8dce85ae2d..a19f8fbec2 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ts.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ts.data @@ -27,16 +27,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-tsv -- -tsv -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-tsv - -1 - tsv-extension dfn @@ -48,13 +38,3 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-tsv-extension - -tsv-extension -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-tsv-extension - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tt.data b/bikeshed/spec-data/readonly/anchors/anchors-tt.data index b00e594c5f..88f5ceba6a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tt.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tt.data @@ -90,7 +90,7 @@ https://www.w3.org/TR/trusted-types/#tt-wildcard - ttl dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -99,12 +99,23 @@ https://w3c.github.io/network-error-logging/#dfn-ttl 1 - ttl +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-endpoint-group-ttl +1 +1 +endpoint group +- +ttl dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-ttl +https://www.w3.org/TR/network-error-logging/#dfn-ttl 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tu.data b/bikeshed/spec-data/readonly/anchors/anchors-tu.data index 0918d7de92..e1c4ddb44e 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tu.data @@ -124,6 +124,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-turquoise 1 1 <color> +<named-color> - turquoise dfn @@ -145,4 +146,25 @@ https://www.w3.org/TR/css-color-4/#valdef-color-turquoise 1 1 <color> +<named-color> +- +turtle document +dfn +rdf12-turtle +rdf-turtle +1 +current +https://w3c.github.io/rdf-turtle/spec/#dfn-turtle-document + +1 +- +turtle document +dfn +rdf12-turtle +rdf-turtle +1 +snapshot +https://www.w3.org/TR/rdf12-turtle/#dfn-turtle-document + +1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-tw.data b/bikeshed/spec-data/readonly/anchors/anchors-tw.data index 6350104c61..e51f68a90a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-tw.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-tw.data @@ -1,3 +1,13 @@ +twelve_bit +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#twelve_bit +1 +1 +- twist attribute pointerevents3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ty.data b/bikeshed/spec-data/readonly/anchors/anchors-ty.data index 330f4d95ef..d9ec49ff63 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ty.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ty.data @@ -14,17 +14,28 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%-intrinsic-object +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25-intrinsic-object 1 1 - +%TypedArray%.prototype %Symbol.iterator% () +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype-%25symbol.iterator%25 +1 +1 +%TypedArray%.prototype [ %Symbol.iterator% ] ( ) +- %TypedArray.prototype% interface ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%typedarrayprototype%-object +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%25typedarrayprototype%25-object 1 1 - @@ -34,7 +45,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%typedarrayprototype%-object +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%25typedarrayprototype%25-object 1 1 ECMAScript @@ -47,6 +58,16 @@ html current https://html.spec.whatwg.org/multipage/infrastructure.html#typeerror.prototype +1 +- +<type()> +type +css-mixins-1 +css-mixins +1 +current +https://drafts.csswg.org/css-mixins-1/#typedef-type +1 1 - <type-selector> @@ -229,13 +250,93 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray 1 TypedArray - -TypedArrayCreate(constructor, argumentList) +TypedArrayByteLength +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraybytelength +1 +1 +- +TypedArrayByteLength(taRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraybytelength +1 +1 +- +TypedArrayCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraycreate +1 +1 +- +TypedArrayCreate(prototype) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraycreate +1 +1 +- +TypedArrayCreateFromConstructor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarraycreatefromconstructor +1 +1 +- +TypedArrayCreateFromConstructor(constructor, argumentList) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarraycreatefromconstructor +1 +1 +- +TypedArrayCreateSameType +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-create-same-type +1 +1 +- +TypedArrayCreateSameType(exemplar, argumentList) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-create-same-type +1 +1 +- +TypedArrayElementSize abstract-op ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#typedarray-create +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarrayelementsize 1 1 - @@ -249,6 +350,16 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarrayelement 1 1 - +TypedArrayElementType +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarrayelementtype +1 +1 +- TypedArrayElementType(O) abstract-op ecmascript @@ -259,6 +370,76 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarrayelement 1 1 - +TypedArrayGetElement +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraygetelement +1 +1 +- +TypedArrayGetElement(O, index) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraygetelement +1 +1 +- +TypedArrayLength +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraylength +1 +1 +- +TypedArrayLength(taRecord) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraylength +1 +1 +- +TypedArraySetElement +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraysetelement +1 +1 +- +TypedArraySetElement(O, index, value) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraysetelement +1 +1 +- +TypedArraySpeciesCreate +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#typedarray-species-create +1 +1 +- TypedArraySpeciesCreate(exemplar, argumentList) abstract-op ecmascript @@ -348,6 +529,17 @@ CryptoKey - [[type]] attribute +digital-identities +digital-identities +1 +current +https://wicg.github.io/digital-credentials#dfn-type +1 +1 +DigitalCredential +- +[[type]] +attribute web-otp web-otp 1 @@ -742,6 +934,20 @@ Element/pseudo(type) - type argument +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#dom-snapevent-snapevent-type-eventinitdict-type +1 +1 +SnapEvent/SnapEvent(type, eventInitDict) +SnapEvent/constructor(type, eventInitDict) +SnapEvent/SnapEvent(type) +SnapEvent/constructor(type) +- +type +argument css-transitions-1 css-transitions 1 @@ -1699,6 +1905,28 @@ https://svgwg.org/svg2-draft/styling.html#__svg__SVGStyleElement__type SVGStyleElement - type +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#part-type +1 +1 +part +- +type +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-type + +1 +token +- +type dict-member fileapi fileapi @@ -1841,6 +2069,17 @@ https://w3c.github.io/ServiceWorker/#dom-registrationoptions-type RegistrationOptions - type +attribute +audio-session +audio-session +1 +current +https://w3c.github.io/audio-session/#dom-audiosession-type +1 +1 +AudioSession +- +type argument autoplay-detection autoplay-detection @@ -1877,6 +2116,17 @@ https://w3c.github.io/clipboard-apis/#dom-clipboarditem-gettype-type-type ClipboardItem/getType(type) - type +argument +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#dom-clipboarditem-supports-type-type +1 +1 +ClipboardItem/supports(type) +- +type attribute device-posture device-posture @@ -1917,27 +2167,6 @@ DeviceOrientationEvent/constructor(type) - type dfn -gamepad-extensions -gamepad-extensions -1 -current -https://w3c.github.io/gamepad/extensions.html#dfn-type - -1 -- -type -attribute -gamepad-extensions -gamepad-extensions -1 -current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuator-type -1 -1 -GamepadHapticActuator -- -type -dfn image-resource image-resource 1 @@ -2049,7 +2278,7 @@ PerformanceNavigationTiming - type dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -2223,6 +2452,21 @@ uievents uievents 1 current +https://w3c.github.io/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-type +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +type +argument +uievents +uievents +1 +current https://w3c.github.io/uievents/#dom-uievent-uievent-type-eventinitdict-type 1 1 @@ -2246,6 +2490,16 @@ WheelEvent/WheelEvent(type) WheelEvent/constructor(type) - type +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-type +1 +1 +- +type attribute credential-management-1 credential-management @@ -2458,38 +2712,41 @@ https://w3c.github.io/webcrypto/#dom-cryptokey-type CryptoKey - type -attribute +argument webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-type +https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent-type-rid-type 1 1 -RTCEncodedVideoFrame +KeyFrameRequestEvent/KeyFrameRequestEvent(type, rid) +KeyFrameRequestEvent/constructor(type, rid) +KeyFrameRequestEvent/KeyFrameRequestEvent(type) +KeyFrameRequestEvent/constructor(type) - type -argument +attribute webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransformerrorevent-sframetransformerrorevent-type-eventinitdict-type +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframe-type 1 1 -SFrameTransformErrorEvent/SFrameTransformErrorEvent(type, eventInitDict) -SFrameTransformErrorEvent/constructor(type, eventInitDict) +RTCEncodedVideoFrame - type -dfn +argument webrtc-encoded-transform webrtc-encoded-transform 1 current -https://w3c.github.io/webrtc-encoded-transform/#rtcencodedvideoframe-type - +https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransformerrorevent-sframetransformerrorevent-type-eventinitdict-type 1 -RTCEncodedVideoFrame +1 +SFrameTransformErrorEvent/SFrameTransformErrorEvent(type, eventInitDict) +SFrameTransformErrorEvent/constructor(type, eventInitDict) - type attribute @@ -2704,22 +2961,21 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-value-type-type +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cast-input-type-options-type 1 1 -MLGraphBuilder/constant(value, type) -MLGraphBuilder/constant(value) +MLGraphBuilder/cast(input, type, options) - type -dict-member +argument webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperanddescriptor-type +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-type-value-type 1 1 -MLOperandDescriptor +MLGraphBuilder/constant(type, value) - type argument @@ -2848,6 +3104,18 @@ https://wicg.github.io/digital-goods/#dom-itemdetails-type ItemDetails - type +argument +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureevent-documentpictureinpictureevent-type-eventinitdict-type +1 +1 +DocumentPictureInPictureEvent/DocumentPictureInPictureEvent(type, eventInitDict) +DocumentPictureInPictureEvent/constructor(type, eventInitDict) +- +type dfn document-policy document-policy @@ -2860,37 +3128,45 @@ configuration point - type dfn -media-feeds -media-feeds +fenced-frame +fenced-frame 1 current -https://wicg.github.io/media-feeds/#dfn-type +https://wicg.github.io/fenced-frame/#automatic-beacon-event-type 1 +automatic beacon event - type -argument -navigation-api -navigation-api +dfn +fenced-frame +fenced-frame 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-navigateevent-type-eventinit-type -1 +https://wicg.github.io/fenced-frame/#destination-enum-event-type + 1 -NavigateEvent/NavigateEvent(type, eventInit) -NavigateEvent/constructor(type, eventInit) +destination enum event - type -argument -navigation-api -navigation-api +dfn +media-feeds +media-feeds 1 current -https://wicg.github.io/navigation-api/#dom-navigationcurrententrychangeevent-navigationcurrententrychangeevent-type-eventinit-type +https://wicg.github.io/media-feeds/#dfn-type + 1 +- +type +dfn +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#type + 1 -NavigationCurrentEntryChangeEvent/NavigationCurrentEntryChangeEvent(type, eventInit) -NavigationCurrentEntryChangeEvent/constructor(type, eventInit) - type attribute @@ -3001,26 +3277,15 @@ SpeechSynthesisEvent/SpeechSynthesisEvent(type, eventInitDict) SpeechSynthesisEvent/constructor(type, eventInitDict) - type -dfn -urlpattern -urlpattern +dict-member +turtledove +turtledove 1 current -https://wicg.github.io/urlpattern/#part-type -1 -1 -part -- -type -dfn -urlpattern -urlpattern +https://wicg.github.io/turtledove/#dom-auctionrealtimereportingconfig-type 1 -current -https://wicg.github.io/urlpattern/#token-type - 1 -token +AuctionRealTimeReportingConfig - type dict-member @@ -3211,7 +3476,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-type -1 + 1 - type @@ -3282,6 +3547,9 @@ https://www.w3.org/TR/css-animations-1/#dom-animationevent-animationevent-type-a 1 1 AnimationEvent/AnimationEvent(type, animationEventInitDict) +AnimationEvent/constructor(type, animationEventInitDict) +AnimationEvent/AnimationEvent(type) +AnimationEvent/constructor(type) - type argument @@ -3303,10 +3571,13 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-cssfontfaceloadeventcssfontfaceloadevent-type +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetloadevent-fontfacesetloadevent-type-eventinitdict-type 1 1 -CSSFontFaceLoadEvent/CSSFontFaceLoadEvent() +FontFaceSetLoadEvent/FontFaceSetLoadEvent(type, eventInitDict) +FontFaceSetLoadEvent/constructor(type, eventInitDict) +FontFaceSetLoadEvent/FontFaceSetLoadEvent(type) +FontFaceSetLoadEvent/constructor(type) - type attribute @@ -3366,6 +3637,20 @@ Element/pseudo(type) - type argument +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#dom-snapevent-snapevent-type-eventinitdict-type +1 +1 +SnapEvent/SnapEvent(type, eventInitDict) +SnapEvent/constructor(type, eventInitDict) +SnapEvent/SnapEvent(type) +SnapEvent/constructor(type) +- +type +argument css-transitions-1 css-transitions 1 @@ -3382,7 +3667,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#cssnumericvalue-type - +1 1 CSSNumericValue - @@ -3632,11 +3917,11 @@ PerformanceNavigationTiming - type dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-types +https://www.w3.org/TR/network-error-logging/#dfn-types 1 - @@ -3917,6 +4202,21 @@ uievents uievents 1 snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-type +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +type +argument +uievents +uievents +1 +snapshot https://www.w3.org/TR/uievents/#dom-uievent-uievent-type-eventinitdict-type 1 1 @@ -3940,6 +4240,16 @@ WheelEvent/WheelEvent(type) WheelEvent/constructor(type) - type +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-type +1 +1 +- +type argument web-animations-1 web-animations @@ -3955,6 +4265,20 @@ AnimationPlaybackEvent/constructor(type) - type argument +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#dom-animationplaybackevent-animationplaybackevent-type-eventinitdict-type +1 +1 +AnimationPlaybackEvent/AnimationPlaybackEvent(type, eventInitDict) +AnimationPlaybackEvent/constructor(type, eventInitDict) +AnimationPlaybackEvent/AnimationPlaybackEvent(type) +AnimationPlaybackEvent/constructor(type) +- +type +argument webaudio webaudio 1 @@ -4022,6 +4346,39 @@ https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-type OscillatorOptions - type +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-type +1 +1 +credential record +- +type +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#discoverablecredentialmetadata-type + +1 +DiscoverableCredentialMetadata +- +type +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticationresponsejson-type +1 +1 +AuthenticationResponseJSON +- +type dict-member webauthn-3 webauthn @@ -4049,12 +4406,34 @@ webauthn-3 webauthn 3 snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialdescriptorjson-type +1 +1 +PublicKeyCredentialDescriptorJSON +- +type +dict-member +webauthn-3 +webauthn +3 +snapshot https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialparameters-type 1 1 PublicKeyCredentialParameters - type +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-registrationresponsejson-type +1 +1 +RegistrationResponseJSON +- +type dfn webauthn-3 webauthn @@ -4210,61 +4589,74 @@ GPUUncapturedErrorEvent/GPUUncapturedErrorEvent(type, gpuUncapturedErrorEventIni GPUUncapturedErrorEvent/constructor(type, gpuUncapturedErrorEventInitDict) - type +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-type +1 +1 +MIDIPort +- +type argument webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-value-type-type +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-options-type 1 1 -MLGraphBuilder/constant(value, type) -MLGraphBuilder/constant(value) +MLGraphBuilder/cast(input, type, options) - type -dict-member +argument webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperanddescriptor-type +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-type-value-type 1 1 -MLOperandDescriptor +MLGraphBuilder/constant(type, value) - type -attribute +argument webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-type +https://www.w3.org/TR/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent-type-rid-type 1 1 -RTCEncodedVideoFrame +KeyFrameRequestEvent/KeyFrameRequestEvent(type, rid) +KeyFrameRequestEvent/constructor(type, rid) +KeyFrameRequestEvent/KeyFrameRequestEvent(type) +KeyFrameRequestEvent/constructor(type) - type -argument +attribute webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#dom-sframetransformerrorevent-sframetransformerrorevent-type-eventinitdict-type +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframe-type 1 1 -SFrameTransformErrorEvent/SFrameTransformErrorEvent(type, eventInitDict) -SFrameTransformErrorEvent/constructor(type, eventInitDict) +RTCEncodedVideoFrame - type -dfn +argument webrtc-encoded-transform webrtc-encoded-transform 1 snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#rtcencodedvideoframe-type - +https://www.w3.org/TR/webrtc-encoded-transform/#dom-sframetransformerrorevent-sframetransformerrorevent-type-eventinitdict-type 1 -RTCEncodedVideoFrame +1 +SFrameTransformErrorEvent/SFrameTransformErrorEvent(type, eventInitDict) +SFrameTransformErrorEvent/constructor(type, eventInitDict) - type dict-member @@ -4616,7 +5008,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#type-of-a-cssmathvalue - +1 1 - type of a cssunitvalue @@ -4636,7 +5028,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#type-of-a-cssunitvalue - +1 1 - type of the content @@ -4811,6 +5203,26 @@ https://drafts.csswg.org/selectors-4/#type-selector - type selector dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x11 +1 +1 +- +type selector +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x11 +1 +1 +- +type selector +dfn selectors-3 selectors 3 @@ -4873,9 +5285,29 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-type 1 CSSNumericValue - +type-generator +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#type-generator + +1 +- +type-generator +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#type-generator + +1 +- type-phase dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -4885,11 +5317,11 @@ https://w3c.github.io/network-error-logging/#dfn-type-phase - type-phase dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-type-phase +https://www.w3.org/TR/network-error-logging/#dfn-type-phase 1 - @@ -4912,6 +5344,26 @@ snapshot https://www.w3.org/TR/json-ld11/#dfn-type-scoped-context +- +type-specific credential processing +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-type-specific-credential-processing + + +- +type-specific credential processing +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-type-specific-credential-processing + + - typeArg argument @@ -5173,50 +5625,6 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#syntax-type_specifier -1 -syntax -- -type_specifier_without_ident -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-type_specifier_without_ident - -1 -recursive descent syntax -- -type_specifier_without_ident -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-type_specifier_without_ident - -1 -syntax -- -type_specifier_without_ident -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-type_specifier_without_ident - -1 -recursive descent syntax -- -type_specifier_without_ident -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-type_specifier_without_ident - 1 syntax - @@ -5279,6 +5687,16 @@ snapshot https://www.w3.org/TR/json-ld11/#dfn-typed-value +- +typedarray +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#typedarray + +1 - typedarray element type dfn @@ -5302,6 +5720,38 @@ https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-object 1 ECMAScript - +typedarray with buffer witness record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-with-buffer-witness-records +1 +1 +ECMAScript +- +typedarray with buffer witness records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-with-buffer-witness-records +1 +1 +ECMAScript +- +typedarrays +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#typedarray + +1 +- typedef dfn webidl @@ -5314,11 +5764,11 @@ https://webidl.spec.whatwg.org/#dfn-typedef - typeerror dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dfn-TypeError +https://w3c.github.io/encrypted-media/#dfn-typeerror 1 - @@ -5329,16 +5779,16 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-TypeError -1 + 1 - typeerror dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dfn-TypeError +https://www.w3.org/TR/encrypted-media-2/#dfn-typeerror 1 - @@ -5354,6 +5804,61 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-object-typemustmatch object - types +descriptor +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#descdef-view-transition-types +1 +1 +@view-transition +- +types +attribute +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-cssviewtransitionrule-types +1 +1 +CSSViewTransitionRule +- +types +dict-member +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-startviewtransitionoptions-types +1 +1 +StartViewTransitionOptions +- +types +attribute +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-viewtransition-types +1 +1 +ViewTransition +- +types +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#view-transition-types + +1 +@view-transition +- +types attribute html html @@ -5365,6 +5870,28 @@ https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransfer-types DataTransfer - types +argument +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-document-requeststorageaccess-types-types +1 +1 +Document/requestStorageAccess(types) +- +types +dfn +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#storageaccesshandle-types + +1 +StorageAccessHandle +- +types dfn storage storage @@ -5388,7 +5915,7 @@ ClipboardItem - types dfn -network-error-logging-1 +network-error-logging network-error-logging 1 current @@ -5408,6 +5935,27 @@ https://w3c.github.io/reporting/#dom-reportingobserveroptions-types ReportingObserverOptions - types +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-type +1 +1 +- +types +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-json-key-types + +1 +aggregatable-debug-reporting JSON key +- +types dict-member file-system-access file-system-access @@ -5452,12 +6000,67 @@ https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-types ClipboardItem - types +descriptor +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#descdef-view-transition-types +1 +1 +@view-transition +- +types +attribute +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-cssviewtransitionrule-types +1 +1 +CSSViewTransitionRule +- +types +dict-member +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-startviewtransitionoptions-types +1 +1 +StartViewTransitionOptions +- +types +attribute +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransition-types +1 +1 +ViewTransition +- +types +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#view-transition-types + +1 +@view-transition +- +types dfn -network-error-logging-1 +network-error-logging network-error-logging 1 snapshot -https://www.w3.org/TR/network-error-logging-1/#dfn-types +https://www.w3.org/TR/network-error-logging/#dfn-types 1 - @@ -5472,6 +6075,16 @@ https://www.w3.org/TR/reporting-1/#dom-reportingobserveroptions-types 1 ReportingObserverOptions - +types +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-type +1 +1 +- types array dfn html @@ -5490,6 +6103,17 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#clipboarditem-types-array +1 +ClipboardItem +- +types array +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#clipboarditem-types-array + 1 ClipboardItem - @@ -5642,6 +6266,16 @@ current https://drafts.csswg.org/css-text-4/#typographic-character-unit 1 1 +- +typographic character unit +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-typographic-character-unit + + - typographic character unit dfn @@ -5662,6 +6296,16 @@ snapshot https://www.w3.org/TR/css-text-4/#typographic-character-unit 1 1 +- +typographic character unit +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-typographic-character-unit + + - typographic letter unit dfn @@ -5682,6 +6326,16 @@ current https://drafts.csswg.org/css-text-4/#typographic-letter-unit 1 1 +- +typographic letter unit +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-typographic-letter-unit + + - typographic letter unit dfn @@ -5702,6 +6356,16 @@ snapshot https://www.w3.org/TR/css-text-4/#typographic-letter-unit 1 1 +- +typographic letter unit +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-typographic-letter-unit + + - typographic mode dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-u3.data b/bikeshed/spec-data/readonly/anchors/anchors-u3.data index 1dabd12e3d..10d6db3fa0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-u3.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-u3.data @@ -4,17 +4,6 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-u32 - -1 -syntax_kw -- -u32 -dfn -wgsl -wgsl -1 -current https://gpuweb.github.io/gpuweb/wgsl/#u32 1 @@ -25,17 +14,6 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-u32 - -1 -syntax_kw -- -u32 -dfn -wgsl -wgsl -1 -snapshot https://www.w3.org/TR/WGSL/#u32 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-u_.data b/bikeshed/spec-data/readonly/anchors/anchors-u_.data index baf9659872..705dabb912 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-u_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-u_.data @@ -18,13 +18,3 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-u - -u -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-u - -1 -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ua.data b/bikeshed/spec-data/readonly/anchors/anchors-ua.data index c27e9a7faf..12ba811b0a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ua.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ua.data @@ -36,16 +36,6 @@ css current https://drafts.csswg.org/css-2023/#user-agent -1 -- -ua -dfn -css-backgrounds-3 -css-backgrounds -3 -current -https://drafts.csswg.org/css-backgrounds-3/#ua - 1 - ua @@ -76,6 +66,26 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-ua +1 +- +ua +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#ua +1 +1 +- +ua +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#ua +1 1 - ua @@ -116,16 +126,6 @@ css snapshot https://www.w3.org/TR/css-2023/#user-agent -1 -- -ua -dfn -css-backgrounds-3 -css-backgrounds -3 -snapshot -https://www.w3.org/TR/css-backgrounds-3/#ua - 1 - ua @@ -258,46 +258,6 @@ https://www.w3.org/TR/css-cascade-5/#cascade-origin-ua 1 1 - -ua-default viewport size -dfn -css-values-4 -css-values -4 -current -https://drafts.csswg.org/css-values-4/#ua-default-viewport-size -1 -1 -- -ua-default viewport size -dfn -css-values-4 -css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#ua-default-viewport-size -1 -1 -- -ua-default viewport-percentage units -dfn -css-values-4 -css-values -4 -current -https://drafts.csswg.org/css-values-4/#ua-default-viewport-percentage-units -1 -1 -- -ua-default viewport-percentage units -dfn -css-values-4 -css-values -4 -snapshot -https://www.w3.org/TR/css-values-4/#ua-default-viewport-percentage-units -1 -1 -- ua-origin dfn css-cascade-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ub.data b/bikeshed/spec-data/readonly/anchors/anchors-ub.data index c85b51df5f..b1f8219d3d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ub.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ub.data @@ -4,7 +4,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_uba +https://w3c.github.io/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -14,7 +14,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_uba +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ud.data b/bikeshed/spec-data/readonly/anchors/anchors-ud.data index ce350dbb53..212c3646f6 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ud.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ud.data @@ -1,3 +1,43 @@ +UDPMessage +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpmessage +1 +1 +- +UDPSocket +interface +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocket +1 +1 +- +UDPSocketOpenInfo +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo +1 +1 +- +UDPSocketOptions +dictionary +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketoptions +1 +1 +- udp enum-value webrtc @@ -31,3 +71,24 @@ https://www.w3.org/TR/webrtc/#dom-rtciceprotocol-udp 1 RTCIceProtocol - +udp +enum-value +webrtc +webrtc +1 +snapshot +https://www.w3.org/TR/webrtc/#dom-rtciceservertransportprotocol-udp +1 +1 +RTCIceServerTransportProtocol +- +udpsocket task source +dfn +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-udpsocket-task-source + +1 +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ui.data b/bikeshed/spec-data/readonly/anchors/anchors-ui.data index daaaae4ae7..4fab09205b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ui.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ui.data @@ -114,10 +114,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperandtype-uint32 +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-uint32 1 1 -MLOperandType +MLOperandDataType - "uint32" enum-value @@ -147,10 +147,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperandtype-uint32 +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-uint32 1 1 -MLOperandType +MLOperandDataType - "uint32x2" enum-value @@ -218,16 +218,38 @@ https://www.w3.org/TR/webgpu/#dom-gpuvertexformat-uint32x4 1 GPUVertexFormat - +"uint64" +enum-value +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-uint64 +1 +1 +MLOperandDataType +- +"uint64" +enum-value +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-uint64 +1 +1 +MLOperandDataType +- "uint8" enum-value webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mloperandtype-uint8 +https://webmachinelearning.github.io/webnn/#dom-mloperanddatatype-uint8 1 1 -MLOperandType +MLOperandDataType - "uint8" enum-value @@ -235,10 +257,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mloperandtype-uint8 +https://www.w3.org/TR/webnn/#dom-mloperanddatatype-uint8 1 1 -MLOperandType +MLOperandDataType - "uint8x2" enum-value diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ul.data b/bikeshed/spec-data/readonly/anchors/anchors-ul.data index 219f12c020..4eb479c7bf 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ul.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ul.data @@ -84,10 +84,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-ultra-condensed +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-ultra-condensed 1 1 -font-stretch +font-width - ultra-condensed enum-value @@ -106,10 +106,10 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-ultra-condensed +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-ultra-condensed 1 1 -font-stretch +font-width - ultra-expanded value @@ -117,10 +117,10 @@ css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-ultra-expanded +https://drafts.csswg.org/css-fonts-4/#valdef-font-width-ultra-expanded 1 1 -font-stretch +font-width - ultra-expanded enum-value @@ -139,8 +139,8 @@ css-fonts-4 css-fonts 4 snapshot -https://www.w3.org/TR/css-fonts-4/#valdef-font-stretch-ultra-expanded +https://www.w3.org/TR/css-fonts-4/#valdef-font-width-ultra-expanded 1 1 -font-stretch +font-width - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-un.data b/bikeshed/spec-data/readonly/anchors/anchors-un.data index c73966e7b1..45fe4ab147 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-un.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-un.data @@ -20,28 +20,6 @@ https://www.w3.org/TR/webxr/#dom-xrreferencespacetype-unbounded 1 XRReferenceSpaceType - -"uncalibrated-magnetometer" -enum-value -generic-sensor -generic-sensor -1 -current -https://w3c.github.io/sensors/#dom-mocksensortype-uncalibrated-magnetometer -1 -1 -MockSensorType -- -"uncalibrated-magnetometer" -enum-value -generic-sensor -generic-sensor -1 -snapshot -https://www.w3.org/TR/generic-sensor/#dom-mocksensortype-uncalibrated-magnetometer -1 -1 -MockSensorType -- "unconfigured" enum-value webcodecs @@ -109,6 +87,17 @@ https://www.w3.org/TR/webgpu/#dom-gpubufferbindingtype-uniform GPUBufferBindingType - "unknown" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpudevicelostreason-unknown +1 +1 +GPUDeviceLostReason +- +"unknown" dfn web-nfc web-nfc @@ -129,6 +118,17 @@ https://wicg.github.io/shape-detection-api/#dom-barcodeformat-unknown 1 BarcodeFormat - +"unknown" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpudevicelostreason-unknown +1 +1 +GPUDeviceLostReason +- "unloaded" enum-value css-font-loading-3 @@ -140,6 +140,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceloadstatus-unloaded 1 FontFaceLoadStatus - +"unloaded" +enum-value +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfaceloadstatus-unloaded +1 +1 +FontFaceLoadStatus +- "unlocked" enum-value idle-detection @@ -173,6 +184,28 @@ https://www.w3.org/TR/webgpu/#dom-gpubuffermapstate-unmapped 1 GPUBufferMapState - +"unorm10-10-10-2" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpuvertexformat-unorm10-10-10-2 +1 +1 +GPUVertexFormat +- +"unorm10-10-10-2" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpuvertexformat-unorm10-10-10-2 +1 +1 +GPUVertexFormat +- "unorm16x2" enum-value webgpu @@ -303,6 +336,28 @@ https://www.w3.org/TR/referrer-policy/#referrer-policy-unsafe-url 1 1 - +"unsigned-short" +enum-value +webxr-depth-sensing-1 +webxr-depth-sensing +1 +current +https://immersive-web.github.io/depth-sensing/#dom-xrdepthdataformat-unsigned-short +1 +1 +XRDepthDataFormat +- +"unsigned-short" +enum-value +webxr-depth-sensing-1 +webxr-depth-sensing +1 +snapshot +https://www.w3.org/TR/webxr-depth-sensing-1/#dom-xrdepthdataformat-unsigned-short +1 +1 +XRDepthDataFormat +- "unspecified" enum-value clipboard-apis @@ -333,6 +388,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-unsafe-allow-redirects 1 +1 +- +'unsafe-allow-redirects' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-unsafe-allow-redirects + 1 - 'unsafe-allow-redirects' @@ -353,6 +418,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-unsafe-eval 1 +1 +- +'unsafe-eval' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-unsafe-eval + 1 - 'unsafe-eval' @@ -373,6 +448,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-unsafe-hashes 1 +1 +- +'unsafe-hashes' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-unsafe-hashes + 1 - 'unsafe-hashes' @@ -393,6 +478,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-unsafe-inline 1 +1 +- +'unsafe-inline' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-unsafe-inline + 1 - 'unsafe-inline' @@ -405,14 +500,34 @@ https://www.w3.org/TR/CSP3/#grammardef-unsafe-inline 1 1 - -@@unscopables -const -ecmascript -ecmascript +<unicode-range-token> +type +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token +1 1 +- +<union/> +dfn +mathml4 +mathml +4 current -https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-well-known-symbols +https://w3c.github.io/mathml/#contm_union + 1 +- +<union/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_union + 1 - UNIFORM @@ -534,23 +649,23 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-uncalibratedmag 1 UncalibratedMagnetometer - -UncalibratedMagnetometerReadingValues -dictionary -magnetometer -magnetometer +UnderlineStyle +enum +edit-context +edit-context 1 current -https://w3c.github.io/magnetometer/#dictdef-uncalibratedmagnetometerreadingvalues +https://w3c.github.io/edit-context/#dom-underlinestyle 1 1 - -UncalibratedMagnetometerReadingValues -dictionary -magnetometer -magnetometer +UnderlineThickness +enum +edit-context +edit-context 1 -snapshot -https://www.w3.org/TR/magnetometer/#dictdef-uncalibratedmagnetometerreadingvalues +current +https://w3c.github.io/edit-context/#dom-underlinethickness 1 1 - @@ -644,6 +759,16 @@ https://streams.spec.whatwg.org/#callbackdef-underlyingsourcestartcallback 1 1 - +UnicodeEscape +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-unicodeescape +1 +1 +- UnicodeEscape(C) abstract-op ecmascript @@ -654,7 +779,17 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-unicodeescape 1 1 - -UnicodeMatchProperty(p) +UnicodeMatchProperty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-unicodematchproperty-p +1 +1 +- +UnicodeMatchProperty(rer, p) abstract-op ecmascript ecmascript @@ -664,6 +799,16 @@ https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-uni 1 1 - +UnicodeMatchPropertyValue +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-unicodematchpropertyvalue-p-v +1 +1 +- UnicodeMatchPropertyValue(p, v) abstract-op ecmascript @@ -738,28 +883,6 @@ https://drafts.css-houdini.org/css-layout-api-1/#dom-layoutfragment-unique-id-sl 1 LayoutFragment - -[[unmaskedIdentifiers]] -attribute -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-adapter-unmaskedidentifiers-slot -1 -1 -adapter -- -[[unmaskedIdentifiers]] -attribute -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-adapter-unmaskedidentifiers-slot -1 -1 -adapter -- un-initialized value dfn uievents @@ -800,6 +923,17 @@ https://www.w3.org/TR/webdriver2/#dfn-unable-to-capture-screen 1 - +unable to close browser +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-unable-to-close-browser +1 +1 +errors +- unable to create an rtcdatachannel dfn webrtc @@ -842,6 +976,17 @@ https://www.w3.org/TR/battery-status/#dfn-unable-to-report-the-battery-status-in - unable to set cookie dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-unable-to-set-cookie +1 +1 +errors +- +unable to set cookie +dfn webdriver2 webdriver 2 @@ -860,6 +1005,39 @@ https://www.w3.org/TR/webdriver2/#dfn-unable-to-set-cookie 1 - +unable to set file input +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#errors-unable-to-set-file-input +1 +1 +errors +- +unadjustedMovement +dict-member +pointerlock-2 +pointerlock +2 +current +https://w3c.github.io/pointerlock/#dom-pointerlockoptions-unadjustedmovement +1 +1 +PointerLockOptions +- +unadjustedMovement +dict-member +pointerlock-2 +pointerlock +2 +snapshot +https://www.w3.org/TR/pointerlock-2/#dom-pointerlockoptions-unadjustedmovement +1 +1 +PointerLockOptions +- unadjustedtarget dfn touch-events @@ -868,6 +1046,16 @@ touch-events current https://w3c.github.io/touch-events/#dfn-unadjustedtarget +1 +- +unambiguously links to a source map +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#unambiguously-links-to-a-source-map + 1 - unanimity @@ -950,10 +1138,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#buffer-internals-state-unavailable +https://gpuweb.github.io/gpuweb/#gpubuffer-internal-state-unavailable 1 -buffer internals/state +GPUBuffer/[[internal state]] - unavailable dfn @@ -986,6 +1174,28 @@ https://w3c.github.io/remote-playback/#dfn-unavailable 1 - unavailable +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-unavailable +1 +1 +SmartCardReaderStateFlagsIn +- +unavailable +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-unavailable +1 +1 +SmartCardReaderStateFlagsOut +- +unavailable dfn audio-output audio-output @@ -1011,10 +1221,21 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#buffer-internals-state-unavailable +https://www.w3.org/TR/webgpu/#gpubuffer-internal-state-unavailable 1 -buffer internals/state +GPUBuffer/[[internal state]] +- +unaware +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-unaware +1 +1 +SmartCardReaderStateFlagsIn - unblock rendering dfn @@ -1068,33 +1289,93 @@ https://www.w3.org/TR/IndexedDB-3/#unbounded-key-range 1 - -unbounded text track cue +unbounded text track cue +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#unbounded-text-track-cue + +1 +- +uncalibrated magnetic field +dfn +magnetometer +magnetometer +1 +current +https://w3c.github.io/magnetometer/#uncalibrated-magnetic-field + +1 +- +uncalibrated magnetic field +dfn +magnetometer +magnetometer +1 +snapshot +https://www.w3.org/TR/magnetometer/#uncalibrated-magnetic-field + +1 +- +uncalibrated magnetometer +dfn +magnetometer +magnetometer +1 +current +https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-sensor-type + +1 +- +uncalibrated magnetometer +dfn +magnetometer +magnetometer +1 +snapshot +https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-sensor-type + +1 +- +uncalibrated magnetometer reading parsing algorithm +dfn +magnetometer +magnetometer +1 +current +https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-reading-parsing-algorithm + +1 +- +uncalibrated magnetometer reading parsing algorithm dfn -html -html +magnetometer +magnetometer 1 -current -https://html.spec.whatwg.org/multipage/media.html#unbounded-text-track-cue +snapshot +https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-reading-parsing-algorithm 1 - -uncalibrated magnetic field +uncalibrated-magnetometer virtual sensor type dfn magnetometer magnetometer 1 current -https://w3c.github.io/magnetometer/#uncalibrated-magnetic-field +https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-virtual-sensor-type 1 - -uncalibrated magnetic field +uncalibrated-magnetometer virtual sensor type dfn magnetometer magnetometer 1 snapshot -https://www.w3.org/TR/magnetometer/#uncalibrated-magnetic-field +https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-virtual-sensor-type 1 - @@ -1255,6 +1536,16 @@ mediacapture-region snapshot https://www.w3.org/TR/mediacapture-region/#dfn-uncropped +1 +- +undefined +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#attr-dir-undefined-state + 1 - undefined @@ -1523,6 +1814,26 @@ https://www.w3.org/TR/css-text-decor-4/#valdef-text-decoration-line-underline 1 text-decoration-line - +underline style +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-underline-style + +1 +- +underline thickness +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-underline-thickness + +1 +- underline zero position dfn css-text-decor-4 @@ -1548,28 +1859,6 @@ attribute edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-textformat-underlinecolor -1 -1 -TextFormat -- -underlineColor -dict-member -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dom-textformatinit-underlinecolor -1 -1 -TextFormatInit -- -underlineColor -attribute -edit-context -edit-context -1 snapshot https://www.w3.org/TR/edit-context/#dom-textformat-underlinecolor 1 @@ -1694,6 +1983,26 @@ streams current https://streams.spec.whatwg.org/#underlying-byte-source +1 +- +underlying connection +dfn +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#underlying-connection + +1 +- +underlying connection +dfn +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#underlying-connection + 1 - underlying connection technology @@ -1764,16 +2073,6 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#underlying-value -1 -- -underlying values -dfn -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#underlying-values - 1 - underlying view @@ -1896,15 +2195,16 @@ https://www.w3.org/TR/css-ui-4/#valdef-caret-shape-underscore 1 caret-shape - -understandable +underspecified storage partition dfn -mathml-aam -mathml-aam +webdriver-bidi +webdriver-bidi 1 current -https://w3c.github.io/mathml-aam/#dfn-understandable - +https://w3c.github.io/webdriver-bidi/#errors-underspecified-storage-partition +1 1 +errors - understandable dfn @@ -1954,6 +2254,16 @@ css-tables snapshot https://www.w3.org/TR/css-tables-3/#undistributable-space +1 +- +unescape url pattern +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#unescape-url-pattern + 1 - unescape(string) @@ -2057,6 +2367,39 @@ https://html.spec.whatwg.org/multipage/parsing.html#parse-error-unexpected-solid 1 - +unfenced container document +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#navigable-unfenced-container-document + +1 +navigable +- +unfenced parent +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#navigable-unfenced-parent + +1 +navigable +- +unfenced parent +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#traversable-navigable-unfenced-parent + +1 +traversable navigable +- unfocusing steps dfn html @@ -2157,23 +2500,23 @@ https://fullscreen.spec.whatwg.org/#unfullscreen-an-element 1 - -unhandled prompt behavior +ungrouped dfn -webdriver2 -webdriver -2 +webtransport +webtransport +1 current -https://w3c.github.io/webdriver/#dfn-unhandled-prompt-behavior +https://w3c.github.io/webtransport/#ungrouped 1 - -unhandled prompt behavior +ungrouped dfn -webdriver2 -webdriver -2 +webtransport +webtransport +1 snapshot -https://www.w3.org/TR/webdriver2/#dfn-unhandled-prompt-behavior +https://www.w3.org/TR/webtransport/#ungrouped 1 - @@ -2189,25 +2532,25 @@ https://html.spec.whatwg.org/multipage/indices.html#event-unhandledrejection Window WorkerGlobalScope - -uniaxial +unicameral dfn -generic-sensor -generic-sensor +i18n-glossary +i18n-glossary 1 current -https://w3c.github.io/sensors/#uniaxial - +https://w3c.github.io/i18n-glossary/#dfn-unicameral 1 + - -uniaxial +unicameral dfn -generic-sensor -generic-sensor +i18n-glossary +i18n-glossary 1 snapshot -https://www.w3.org/TR/generic-sensor/#uniaxial - +https://www.w3.org/TR/i18n-glossary/#dfn-unicameral 1 + - unicase value @@ -2270,7 +2613,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_universal_character_set +https://w3c.github.io/i18n-glossary/#dfn-unicode 1 - @@ -2291,7 +2634,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_universal_character_set +https://www.w3.org/TR/i18n-glossary/#dfn-unicode 1 - @@ -2301,7 +2644,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_uba +https://w3c.github.io/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -2311,17 +2654,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_uba -1 - -- -unicode bidirectional algorithm -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_uba +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -2331,17 +2664,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_uba -1 - -- -unicode bidirectional algorithm -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_uba +https://w3c.github.io/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -2351,7 +2674,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_uba +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-bidi-algorithm 1 - @@ -2367,13 +2690,13 @@ https://w3c.github.io/aria/#dfn-unicode-braille - unicode braille dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-unicode-braille +https://w3c.github.io/aria/#dfn-unicode-braille + -1 - unicode braille dfn @@ -2394,6 +2717,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-unicode-braille +- +unicode braille +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-unicode-braille + + - unicode braille patterns dfn @@ -2407,13 +2740,13 @@ https://w3c.github.io/aria/#dfn-unicode-braille - unicode braille patterns dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-unicode-braille +https://w3c.github.io/aria/#dfn-unicode-braille + -1 - unicode braille patterns dfn @@ -2434,6 +2767,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-unicode-braille +- +unicode braille patterns +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-unicode-braille + + - unicode character categories dfn @@ -2461,7 +2804,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_code_point +https://w3c.github.io/i18n-glossary/#dfn-unicode-code-point 1 - @@ -2471,127 +2814,197 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_code_point +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-code-point 1 - -unicode code points +unicode locale dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_code_point +https://w3c.github.io/i18n-glossary/#dfn-unicode-locale 1 - -unicode code points +unicode locale dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_code_point +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-locale 1 - -unicode locale +unicode locale extension sequence +dfn +ecma-402 +ecma-402 +1 +current +https://tc39.es/ecma402/#unicode-locale-extension-sequence +1 +1 +- +unicode locale identifier dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_locale +https://w3c.github.io/i18n-glossary/#dfn-unicode-locale 1 - -unicode locale +unicode locale identifier dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_locale +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-locale 1 - -unicode locale identifier +unicode normalization dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_locale +https://w3c.github.io/i18n-glossary/#dfn-normalisation 1 - -unicode locale identifier +unicode normalization +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-normalisation +1 + +- +unicode normalization form c dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_locale +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-c 1 - -unicode locale identifier +unicode normalization form c dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_locale +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-c 1 - -unicode locale identifier +unicode normalization form d +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-d +1 + +- +unicode normalization form d +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-d +1 + +- +unicode normalization form kc +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-kc +1 + +- +unicode normalization form kc dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_locale +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-kc 1 - -unicode locale identifiers +unicode normalization form kd dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_locale +https://w3c.github.io/i18n-glossary/#dfn-unicode-normalization-form-kd 1 - -unicode locale identifiers +unicode normalization form kd dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_locale +https://www.w3.org/TR/i18n-glossary/#dfn-unicode-normalization-form-kd +1 + +- +unicode scalar value +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-scalar-value 1 - -unicode locales +unicode scalar value dfn i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_unicode_locale +https://w3c.github.io/i18n-glossary/#dfn-scalar-value +1 + +- +unicode scalar value +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-scalar-value 1 - -unicode locales +unicode scalar value dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_unicode_locale +https://www.w3.org/TR/i18n-glossary/#dfn-scalar-value 1 - @@ -2626,6 +3039,26 @@ https://drafts.csswg.org/css2/#propdef-unicode-bidi 1 - unicode-bidi +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-unicode-bidi +1 +1 +- +unicode-bidi +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-unicode-bidi +1 +1 +- +unicode-bidi dfn css22 css @@ -2656,15 +3089,26 @@ https://www.w3.org/TR/css-writing-modes-4/#propdef-unicode-bidi 1 - unicode-range -descriptor +descriptor +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#descdef-font-face-unicode-range +1 +1 +@font-face +- +unicode-range +attribute css-fonts-4 css-fonts 4 current -https://drafts.csswg.org/css-fonts-4/#descdef-font-face-unicode-range +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-unicode-range 1 1 -@font-face +CSSFontFaceDescriptors - unicode-range descriptor @@ -2701,6 +3145,17 @@ FontFaceDescriptors - unicodeRange attribute +css-fonts-4 +css-fonts +4 +current +https://drafts.csswg.org/css-fonts-4/#dom-cssfontfacedescriptors-unicoderange +1 +1 +CSSFontFaceDescriptors +- +unicodeRange +attribute css-font-loading-3 css-font-loading 3 @@ -2721,6 +3176,68 @@ https://www.w3.org/TR/css-font-loading-3/#dom-fontfacedescriptors-unicoderange 1 FontFaceDescriptors - +unicodeSets +attribute +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-get-regexp.prototype.unicodesets +1 +1 +RegExp +- +unidirectionally broadcastable +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#unidirectionally-broadcastable + +1 +- +unidirectionally broadcastable +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#unidirectionally-broadcastable + +1 +- +unidirectionally broadcasting +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#unidirectionally-broadcasting + +1 +- +unidirectionally broadcasting +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#unidirectionally-broadcasting + +1 +- +unifiedplatform +dfn +compat +compat +1 +current +https://compat.spec.whatwg.org/#chrome-unifiedplatform + +1 +chrome +- uniform dfn wgsl @@ -2821,6 +3338,46 @@ wgsl snapshot https://www.w3.org/TR/WGSL/#uniform-variable +1 +- +uniformity analysis +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#uniformity-analysis + +1 +- +uniformity analysis +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#uniformity-analysis + +1 +- +uniformity failure +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#uniformity-failure + +1 +- +uniformity failure +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#uniformity-failure + 1 - uninitialized @@ -2854,6 +3411,17 @@ https://webidl.spec.whatwg.org/#dfn-union-type 1 1 - +union(other) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.union +1 +1 +Set +- unique attribute indexeddb-3 @@ -3016,6 +3584,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssunitvalue-cssunitvalue-value-unit-u 1 1 CSSUnitValue/CSSUnitValue(value, unit) +CSSUnitValue/constructor(value, unit) - unit attribute @@ -3056,7 +3625,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#sum-value-unit-map - +1 1 sum value - @@ -3224,6 +3793,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-tosum-units-units 1 1 CSSNumericValue/toSum(...units) +CSSNumericValue/toSum() - universal character set dfn @@ -3231,27 +3801,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_universal_character_set -1 - -- -universal character set -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_universal_character_set -1 - -- -universal character set -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_universal_character_set +https://w3c.github.io/i18n-glossary/#dfn-unicode 1 - @@ -3261,7 +3811,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_universal_character_set +https://www.w3.org/TR/i18n-glossary/#dfn-unicode 1 - @@ -3317,6 +3867,26 @@ https://drafts.csswg.org/selectors-4/#universal-selector - universal selector dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x10 +1 +1 +- +universal selector +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x10 +1 +1 +- +universal selector +dfn selectors-3 selectors 3 @@ -3352,7 +3922,7 @@ css-properties-values-api 1 snapshot https://www.w3.org/TR/css-properties-values-api-1/#universal-syntax-definition - +1 1 - universally unique identifier (uuid) @@ -3479,6 +4049,16 @@ writing-system - unknown dfn +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#unknown + +1 +- +unknown +dfn longtasks-1 longtasks 1 @@ -3489,7 +4069,7 @@ https://w3c.github.io/longtasks/#unknown - unknown enum-value -payment-request-1.1 +payment-request payment-request 1 current @@ -3553,6 +4133,17 @@ https://wicg.github.io/shape-detection-api/#dom-barcodeformat-unknown BarcodeFormat - unknown +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-unknown +1 +1 +SmartCardReaderStateFlagsOut +- +unknown element svg2 svg @@ -3585,12 +4176,22 @@ https://www.w3.org/TR/css-text-4/#writing-system-known writing-system - unknown +dfn +longtasks-1 +longtasks +1 +snapshot +https://www.w3.org/TR/longtasks-1/#unknown + +1 +- +unknown enum-value -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-unknown +https://www.w3.org/TR/payment-request/#dom-paymentcomplete-unknown 1 1 PaymentComplete @@ -3655,6 +4256,16 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-unknown-command +1 +- +unknown concept +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#intent_unknown_concept + 1 - unknown error @@ -3737,6 +4348,17 @@ https://html.spec.whatwg.org/multipage/parsing.html#parse-error-unknown-named-ch 1 - +unknown-reader +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-unknown-reader +1 +1 +SmartCardResponseCode +- unknowndirective dfn scroll-to-text-fragment @@ -3745,6 +4367,46 @@ scroll-to-text-fragment current https://wicg.github.io/scroll-to-text-fragment/#unknowndirective +1 +- +unlinkability +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-unlinkability + +1 +- +unlinkability +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-unlinkability + +1 +- +unlinkable disclosure +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-unlinkable-disclosure +1 +1 +- +unlinkable disclosure +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-unlinkable-disclosure +1 1 - unload @@ -3806,6 +4468,16 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-unload-a-document +1 +- +unload a document and its descendants +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/document-lifecycle.html#unload-a-document-and-its-descendants + 1 - unload counter @@ -3929,6 +4601,28 @@ https://www.w3.org/TR/navigation-timing-2/#dom-performancetiming-unloadeventstar PerformanceTiming - unloaded +dfn +miniapp-lifecycle +miniapp-lifecycle +1 +current +https://w3c.github.io/miniapp-lifecycle/#dfn-unloaded +1 + +Document +- +unloaded +enum-value +miniapp-lifecycle +miniapp-lifecycle +1 +current +https://w3c.github.io/miniapp-lifecycle/#dom-globalstate-unloaded +1 + +GlobalState +- +unloaded enum-value miniapp-lifecycle miniapp-lifecycle @@ -3940,6 +4634,28 @@ https://w3c.github.io/miniapp-lifecycle/#dom-pagestate-unloaded PageState - unloaded +dfn +miniapp-lifecycle +miniapp-lifecycle +1 +snapshot +https://www.w3.org/TR/miniapp-lifecycle/#dfn-unloaded +1 + +Document +- +unloaded +enum-value +miniapp-lifecycle +miniapp-lifecycle +1 +snapshot +https://www.w3.org/TR/miniapp-lifecycle/#dom-globalstate-unloaded +1 + +GlobalState +- +unloaded enum-value miniapp-lifecycle miniapp-lifecycle @@ -3950,6 +4666,28 @@ https://www.w3.org/TR/miniapp-lifecycle/#dom-pagestate-unloaded PageState - +unloading +dfn +miniapp-lifecycle +miniapp-lifecycle +1 +current +https://w3c.github.io/miniapp-lifecycle/#dfn-unloading +1 + +Document +- +unloading +dfn +miniapp-lifecycle +miniapp-lifecycle +1 +snapshot +https://www.w3.org/TR/miniapp-lifecycle/#dfn-unloading +1 + +Document +- unloading document cleanup steps dfn html @@ -4086,27 +4824,15 @@ https://www.w3.org/TR/webgpu/#dom-gpubuffer-unmap 1 GPUBuffer - -unmaskHints -argument -webgpu -webgpu +unmask tokens +dfn +trust-token-api +trust-token-api 1 current -https://gpuweb.github.io/gpuweb/#dom-gpuadapter-requestadapterinfo-unmaskhints -1 -1 -GPUAdapter/requestAdapterInfo() -- -unmaskHints -argument -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpuadapter-requestadapterinfo-unmaskhints -1 +https://wicg.github.io/trust-token-api/#unmask-tokens + 1 -GPUAdapter/requestAdapterInfo() - unmute event @@ -4288,11 +5014,11 @@ https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-o - unpartitioned data dfn -requeststorageaccessfororigin -requeststorageaccessfororigin +requeststorageaccessfor +requeststorageaccessfor 1 current -https://privacycg.github.io/requestStorageAccessForOrigin/#unpartitioned-data +https://privacycg.github.io/requestStorageAccessFor/#unpartitioned-data 1 - @@ -4306,6 +5032,50 @@ https://privacycg.github.io/storage-access/#unpartitioned-data 1 - +unpower +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcarddisposition-unpower +1 +1 +SmartCardDisposition +- +unpowered +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsin-unpowered +1 +1 +SmartCardReaderStateFlagsIn +- +unpowered +dict-member +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardreaderstateflagsout-unpowered +1 +1 +SmartCardReaderStateFlagsOut +- +unpowered-card +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-unpowered-card +1 +1 +SmartCardResponseCode +- unprefixed dfn css-2022 @@ -4472,17 +5242,6 @@ https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-unregiste NavigatorContentUtils - unregistered -argument -fedcm -fedcm -1 -current -https://fedidcg.github.io/FedCM/#dom-accountstate-unregistered -1 -1 -AccountState -- -unregistered dfn service-workers service-workers @@ -4542,6 +5301,27 @@ svg snapshot https://www.w3.org/TR/SVG2/linking.html#TermUnresolvedReference 1 +1 +- +unresponsive-card +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-unresponsive-card +1 +1 +SmartCardResponseCode +- +unrestricted +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-unrestricted + 1 - unrestricted double @@ -4564,6 +5344,28 @@ https://webidl.spec.whatwg.org/#idl-unrestricted-float 1 1 - +unrestricted_pointer_parameters +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#language_extension-unrestricted_pointer_parameters + +1 +language_extension +- +unrestricted_pointer_parameters +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#language_extension-unrestricted_pointer_parameters + +1 +language_extension +- unsafe value css-align-3 @@ -4602,10 +5404,10 @@ hr-time-3 hr-time 3 current -https://w3c.github.io/hr-time/#dfn-unsafe-current-time-0 +https://w3c.github.io/hr-time/#monotonic-clock-unsafe-current-time 1 1 -wall clock +monotonic clock - unsafe current time dfn @@ -4613,10 +5415,10 @@ hr-time-3 hr-time 3 current -https://w3c.github.io/hr-time/#dfn-unsafe-current-time-1 +https://w3c.github.io/hr-time/#wall-clock-unsafe-current-time 1 1 -monotonic clock +wall clock - unsafe current time dfn @@ -4634,10 +5436,10 @@ hr-time-3 hr-time 3 snapshot -https://www.w3.org/TR/hr-time-3/#dfn-unsafe-current-time-0 +https://www.w3.org/TR/hr-time-3/#monotonic-clock-unsafe-current-time 1 1 -wall clock +monotonic clock - unsafe current time dfn @@ -4645,10 +5447,10 @@ hr-time-3 hr-time 3 snapshot -https://www.w3.org/TR/hr-time-3/#dfn-unsafe-current-time-1 +https://www.w3.org/TR/hr-time-3/#wall-clock-unsafe-current-time 1 1 -monotonic clock +wall clock - unsafe moment dfn @@ -4733,6 +5535,17 @@ https://fetch.spec.whatwg.org/#unsafe-request-flag request - unsafe-url +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-unsafe-url +1 +1 +<request-url-modifier> +- +unsafe-url enum-value referrer-policy referrer-policy @@ -4761,6 +5574,37 @@ fileapi snapshot https://www.w3.org/TR/FileAPI/#UnsafeFileFR +1 +- +unsafely set html +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#unsafely-set-html + +1 +- +unsanitized +dict-member +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#dom-clipboardunsanitizedformats-unsanitized +1 +1 +ClipboardUnsanitizedFormats +- +unsanitized data types +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#unsanitized-data-types + 1 - unsatisfiable @@ -4771,6 +5615,26 @@ rdf-semantics current https://w3c.github.io/rdf-semantics/spec/#dfn-unsatisfiable +1 +- +unsatisfiable +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-unsatisfiable + +1 +- +unscaled +dfn +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#unscaled +1 1 - unscopables @@ -4784,6 +5648,26 @@ https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.unscopable 1 Symbol - +unsecured data document +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-unsecured-data-document +1 +1 +- +unsecured data document +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-unsecured-data-document +1 +1 +- unset value css-cascade-3 @@ -4836,6 +5720,17 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-unset +- +unset +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#eligibility-unset + +1 +eligibility - unset value @@ -4880,14 +5775,104 @@ https://www.w3.org/TR/cssom-1/#unset 1 - -unset +unshaped border edge dfn -tracking-dnt -tracking-dnt +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#unshaped-edge +1 1 +- +unshaped border edge +dfn +css-box-4 +css-box +4 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-unset - +https://www.w3.org/TR/css-box-4/#unshaped-edge +1 +1 +- +unshaped content edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#unshaped-edge +1 +1 +- +unshaped content edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#unshaped-edge +1 +1 +- +unshaped edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#unshaped-edge +1 +1 +- +unshaped edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#unshaped-edge +1 +1 +- +unshaped margin edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#unshaped-edge +1 +1 +- +unshaped margin edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#unshaped-edge +1 +1 +- +unshaped padding edge +dfn +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#unshaped-edge +1 +1 +- +unshaped padding edge +dfn +css-box-4 +css-box +4 +snapshot +https://www.w3.org/TR/css-box-4/#unshaped-edge +1 1 - unshift(...items) @@ -4919,6 +5904,16 @@ webauthn current https://w3c.github.io/webauthn/#unsigned-extension-outputs +1 +- +unsigned extension outputs +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#unsigned-extension-outputs + 1 - unsigned long @@ -4959,6 +5954,16 @@ mathml-core current https://w3c.github.io/mathml-core/#dfn-unsigned-integer +1 +- +unsigned-integer +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-unsigned-integer + 1 - unsigned-integer @@ -4969,6 +5974,36 @@ mathml-core snapshot https://www.w3.org/TR/mathml-core/#dfn-unsigned-integer +1 +- +unsigned-integer +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-unsigned-integer + +1 +- +unsigned-number +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-unsigned-number + +1 +- +unsigned-number +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-unsigned-number + 1 - unstable @@ -5126,6 +6161,28 @@ https://www.w3.org/TR/webdriver2/#dfn-unsupported-operation 1 - +unsupported-card +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-unsupported-card +1 +1 +SmartCardResponseCode +- +unsupported-feature +enum-value +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dom-smartcardresponsecode-unsupported-feature +1 +1 +SmartCardResponseCode +- unsuspendRedraw method svg2 @@ -5216,7 +6273,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-until-found-keyword +https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-until-found 1 1 html-global/hidden @@ -5272,7 +6329,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-unwrapKey -1 + 1 - unwrapped diff --git a/bikeshed/spec-data/readonly/anchors/anchors-up.data b/bikeshed/spec-data/readonly/anchors/anchors-up.data index e518eabe00..96968c6a7a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-up.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-up.data @@ -64,23 +64,43 @@ https://wicg.github.io/shape-detection-api/#dom-barcodeformat-upc_e 1 BarcodeFormat - -UpdateCallback -callback -css-view-transitions-1 -css-view-transitions -1 +<uplimit> +dfn +mathml4 +mathml +4 current -https://drafts.csswg.org/css-view-transitions-1/#callbackdef-updatecallback +https://w3c.github.io/mathml/#contm_uplimit + 1 +- +<uplimit> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_uplimit + 1 - -UpdateDOMCallback +UpdateCallback callback css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#callbackdef-updatedomcallback +https://www.w3.org/TR/css-view-transitions-1/#callbackdef-updatecallback +1 +1 +- +UpdateEmpty +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-updateempty 1 1 - @@ -112,12 +132,13 @@ webrtc 1 snapshot https://www.w3.org/TR/webrtc/#dfn-updatenegotiationneededflagonemptychain + 1 -1 +RTCPeerConnection - [[updating]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -128,11 +149,11 @@ PaymentRequest - [[updating]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-updating +https://www.w3.org/TR/payment-request/#dfn-updating 1 PaymentRequest @@ -252,9 +273,10 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#up +https://www.w3.org/TR/webauthn-3/#authdata-flags-up 1 +authData/flags - up enum-value @@ -385,27 +407,36 @@ https://wicg.github.io/shape-detection-api/#dom-barcodeformat-upc_e 1 BarcodeFormat - -upcoming non-traverse navigation +upcoming non-traverse api method tracker dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-upcoming-non-traverse-navigation +https://html.spec.whatwg.org/multipage/nav-history-apis.html#upcoming-non-traverse-api-method-tracker 1 -Navigation - -upcoming traverse navigations +upcoming traverse api method trackers dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigation-upcoming-traverse-navigations +https://html.spec.whatwg.org/multipage/nav-history-apis.html#upcoming-traverse-api-method-trackers 1 -Navigation +- +update +dict-member +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#dom-startviewtransitionoptions-update +1 +1 +StartViewTransitionOptions - update descriptor @@ -451,13 +482,13 @@ https://w3c.github.io/ServiceWorker/#update 1 - update -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-update - +1 1 - update @@ -472,24 +503,24 @@ https://webaudio.github.io/web-audio-api/#eventdef-audiorendercapacity-update AudioRenderCapacity - update -dfn -encrypted-media -encrypted-media -1 +dict-member +css-view-transitions-2 +css-view-transitions +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-update - +https://www.w3.org/TR/css-view-transitions-2/#dom-startviewtransitionoptions-update +1 1 -mediakeysession +StartViewTransitionOptions - update -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-update - +1 1 - update @@ -546,7 +577,7 @@ https://www.w3.org/TR/css-layout-api-1/#update-a-layout-child-style - update a paymentrequest's details algorithm dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -556,11 +587,11 @@ https://w3c.github.io/payment-request/#dfn-update-a-paymentrequest-s-details-alg - update a paymentrequest's details algorithm dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-update-a-paymentrequest-s-details-algorithm +https://www.w3.org/TR/payment-request/#dfn-update-a-paymentrequest-s-details-algorithm 1 - @@ -652,6 +683,16 @@ background-fetch current https://wicg.github.io/background-fetch/#update-background-fetch-instances +1 +- +update bid count +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#update-bid-count + 1 - update callback @@ -662,6 +703,17 @@ css-view-transitions current https://drafts.csswg.org/css-view-transitions-1/#viewtransition-update-callback +1 +ViewTransition +- +update callback +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#viewtransition-update-callback + 1 ViewTransition - @@ -676,6 +728,47 @@ https://drafts.csswg.org/css-view-transitions-1/#viewtransition-update-callback- 1 ViewTransition - +update callback done promise +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#viewtransition-update-callback-done-promise + +1 +ViewTransition +- +update capture state algorithm +dfn +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#update-capture-state-algorithm + +1 +- +update capture state algorithm +dfn +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#update-capture-state-algorithm + +1 +- +update captured headers +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#concept-update-captured-headers + +1 +- update document for history step application dfn html @@ -694,6 +787,36 @@ page-lifecycle current https://wicg.github.io/page-lifecycle/#update-document-frozenness-steps 1 +1 +- +update expiration +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-update-expiration + +1 +- +update expiration +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-update-expiration + +1 +- +update for navigable creation/destruction +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#update-for-navigable-creation%2Fdestruction + 1 - update gamepad state @@ -727,6 +850,16 @@ https://wicg.github.io/background-fetch/#background-fetch-update-handling-queue 1 background fetch - +update highest scoring other bid +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#update-highest-scoring-other-bid + +1 +- update href dfn html @@ -735,6 +868,26 @@ html current https://html.spec.whatwg.org/multipage/links.html#update-href +1 +- +update key statuses +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-update-key-statuses + +1 +- +update key statuses +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-update-key-statuses + 1 - update latest reading @@ -755,6 +908,26 @@ generic-sensor snapshot https://www.w3.org/TR/generic-sensor/#update-latest-reading 1 +1 +- +update mesh object +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#update-mesh-object + +1 +- +update meshes +dfn +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#update-meshes + 1 - update metadata algorithm @@ -777,33 +950,43 @@ https://www.w3.org/TR/mediasession/#update-metadata-algorithm 1 - -update mock sensor reading +update only dfn -generic-sensor -generic-sensor +html +html 1 current -https://w3c.github.io/sensors/#update-mock-sensor-reading +https://html.spec.whatwg.org/multipage/browsing-the-web.html#changing-nav-continuation-update-only 1 - -update mock sensor reading +update plane object dfn -generic-sensor -generic-sensor +webxr-plane-detection +webxr-plane-detection 1 -snapshot -https://www.w3.org/TR/generic-sensor/#update-mock-sensor-reading +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#update-plane-object 1 - -update only +update planes dfn -html -html +webxr-plane-detection +webxr-plane-detection 1 current -https://html.spec.whatwg.org/multipage/browsing-the-web.html#changing-nav-continuation-update-only +https://immersive-web.github.io/real-world-geometry/plane-detection.html#update-planes + +1 +- +update previous wins +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#update-previous-wins 1 - @@ -857,6 +1040,50 @@ https://www.w3.org/Consortium/Process/#update-requests 1 1 - +update scrollsnapchange targets +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#document-update-scrollsnapchange-targets +1 +1 +Document +- +update scrollsnapchange targets +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#document-update-scrollsnapchange-targets +1 +1 +Document +- +update scrollsnapchanging targets +dfn +css-scroll-snap-2 +css-scroll-snap +2 +current +https://drafts.csswg.org/css-scroll-snap-2/#document-update-scrollsnapchanging-targets +1 +1 +Document +- +update scrollsnapchanging targets +dfn +css-scroll-snap-2 +css-scroll-snap +2 +snapshot +https://www.w3.org/TR/css-scroll-snap-2/#document-update-scrollsnapchanging-targets +1 +1 +Document +- update service worker extended events set dfn service-workers @@ -969,13 +1196,13 @@ https://html.spec.whatwg.org/multipage/dom.html#update-the-current-document-read 1 - update the data max message size -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-update-the-data-max-message-size - +1 1 - update the data max message size @@ -988,47 +1215,15 @@ https://www.w3.org/TR/webrtc/#dfn-update-the-data-max-message-size 1 - -update the device posture information +update the editcontext dfn -device-posture -device-posture -1 -current -https://w3c.github.io/device-posture/#dfn-update-the-device-posture-information - -1 -- -update the device posture information -dfn -device-posture -device-posture -1 -snapshot -https://www.w3.org/TR/device-posture/#dfn-update-the-device-posture-information - -1 -- -update the entries for a same-document navigation -dfn -navigation-api -navigation-api -1 -current -https://wicg.github.io/navigation-api/#navigation-update-the-entries-for-a-same-document-navigation - -1 -Navigation -- -update the entries for reactivation -dfn -navigation-api -navigation-api +edit-context +edit-context 1 current -https://wicg.github.io/navigation-api/#navigation-update-the-entries-for-reactivation +https://w3c.github.io/edit-context/#dfn-update-the-editcontext 1 -Navigation - update the event map dfn @@ -1055,39 +1250,49 @@ dfn webrtc webrtc 1 +snapshot +https://www.w3.org/TR/webrtc/#update-ice-gathering-state + +1 +- +update the image data +dfn +html +html +1 current -https://w3c.github.io/webrtc-pc/#update-ice-gathering-state +https://html.spec.whatwg.org/multipage/images.html#update-the-image-data 1 - -update the ice gathering state +update the navigation api entries for a same-document navigation dfn -webrtc -webrtc +html +html 1 -snapshot -https://www.w3.org/TR/webrtc/#update-ice-gathering-state +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#update-the-navigation-api-entries-for-a-same-document-navigation 1 - -update the image data +update the navigation api entries for reactivation dfn html html 1 current -https://html.spec.whatwg.org/multipage/images.html#update-the-image-data +https://html.spec.whatwg.org/multipage/nav-history-apis.html#update-the-navigation-api-entries-for-reactivation 1 - update the negotiation-needed flag -dfn +abstract-op webrtc webrtc 1 current https://w3c.github.io/webrtc-pc/#dfn-update-the-negotiation-needed-flag - +1 1 - update the negotiation-needed flag @@ -1098,6 +1303,26 @@ webrtc snapshot https://www.w3.org/TR/webrtc/#dfn-update-the-negotiation-needed-flag +1 +- +update the opt-in state for outbound transitions +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#update-the-opt-in-state-for-outbound-transitions + +1 +- +update the opt-in state for outbound transitions +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#update-the-opt-in-state-for-outbound-transitions + 1 - update the overlay area information @@ -1162,24 +1387,25 @@ https://html.spec.whatwg.org/multipage/webappapis.html#update-the-rendering 1 1 - -update the rendering of the WebGPU canvas -abstract-op -webgpu -webgpu +update the rendering start time +dfn +long-animation-frames +long-animation-frames 1 current -https://gpuweb.github.io/gpuweb/#abstract-opdef-update-the-rendering-of-the-webgpu-canvas -1 +https://w3c.github.io/long-animation-frames/#frame-timing-info-update-the-rendering-start-time + 1 +frame timing info - -update the rendering of the WebGPU canvas -abstract-op -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#abstract-opdef-update-the-rendering-of-the-webgpu-canvas +update the response +dfn +webdriver-bidi +webdriver-bidi 1 +current +https://w3c.github.io/webdriver-bidi/#update-the-response + 1 - update the response @@ -1221,6 +1447,27 @@ html current https://html.spec.whatwg.org/multipage/images.html#update-the-source-set +1 +- +update the successor for activation +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#prerendering-traversable-update-the-successor-for-activation + +1 +prerendering traversable +- +update the text edit context +dfn +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dfn-update-the-text-edit-context + 1 - update the timing properties of an animation effect @@ -1241,6 +1488,26 @@ web-animations snapshot https://www.w3.org/TR/web-animations-1/#update-the-timing-properties-of-an-animation-effect +1 +- +update the user prompt handler +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-update-the-user-prompt-handler + +1 +- +update the user prompt handler +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-update-the-user-prompt-handler + 1 - update the viewports @@ -1271,6 +1538,16 @@ html current https://html.spec.whatwg.org/multipage/interaction.html#update-the-visibility-state +1 +- +update touchevents +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-updating-touchevents + 1 - update tracks @@ -1295,15 +1572,16 @@ https://www.w3.org/TR/webcodecs/#imagedecoder-update-tracks 1 ImageDecoder - -update transition dom +update url dfn -css-view-transitions-1 -css-view-transitions +turtledove +turtledove 1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#update-transition-dom +current +https://wicg.github.io/turtledove/#interest-group-update-url 1 +interest group - update via cache mode dfn @@ -1382,9 +1660,9 @@ ServiceWorkerRegistration - update() method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-update 1 @@ -1392,15 +1670,15 @@ https://w3c.github.io/encrypted-media/#dom-mediakeysession-update MediaKeySession - update() -dfn -encrypted-media +method +encrypted-media-2 encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysession-update - +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-update 1 -mediakeysession +1 +MediaKeySession - update() method @@ -1415,15 +1693,26 @@ ServiceWorkerRegistration - update(response) method +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysession-update 1 1 MediaKeySession - +update(response) +method +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysession-update +1 +1 +MediaKeySession +- update(value) method indexeddb-3 @@ -1446,6 +1735,17 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbcursor-update 1 IDBCursor - +updateAdInterestGroups() +method +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-navigator-updateadinterestgroups +1 +1 +Navigator +- updateCallback argument css-view-transitions-1 @@ -1458,6 +1758,18 @@ https://drafts.csswg.org/css-view-transitions-1/#dom-document-startviewtransitio Document/startViewTransition(updateCallback) Document/startViewTransition() - +updateCallback +argument +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#dom-document-startviewtransition-updatecallback-updatecallback +1 +1 +Document/startViewTransition(updateCallback) +Document/startViewTransition() +- updateCallbackDone attribute css-view-transitions-1 @@ -1469,6 +1781,17 @@ https://drafts.csswg.org/css-view-transitions-1/#dom-viewtransition-updatecallba 1 ViewTransition - +updateCallbackDone +attribute +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#dom-viewtransition-updatecallbackdone +1 +1 +ViewTransition +- updateCharacterBounds() method edit-context @@ -1518,13 +1841,13 @@ method edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-editcontext-updatecontrolbound +snapshot +https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbound 1 1 EditContext - -updateControlBound() +updateControlBound(controlBound) method edit-context edit-context @@ -1535,35 +1858,35 @@ https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbound 1 EditContext - -updateControlBound(controlBound) +updateControlBounds() method edit-context edit-context 1 current -https://w3c.github.io/edit-context/#dom-editcontext-updatecontrolbound +https://w3c.github.io/edit-context/#dom-editcontext-updatecontrolbounds 1 1 EditContext - -updateControlBound(controlBound) +updateControlBounds(controlBounds) method edit-context edit-context 1 -snapshot -https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbound +current +https://w3c.github.io/edit-context/#dom-editcontext-updatecontrolbounds 1 1 EditContext - updateCurrentEntry(options) method -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigation-updatecurrententry +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigation-updatecurrententry 1 1 Navigation @@ -1815,13 +2138,13 @@ method edit-context edit-context 1 -current -https://w3c.github.io/edit-context/#dom-editcontext-updateselectionbound +snapshot +https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbound 1 1 EditContext - -updateSelectionBound() +updateSelectionBound(selectionBound) method edit-context edit-context @@ -1832,24 +2155,24 @@ https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbound 1 EditContext - -updateSelectionBound(selectionBound) +updateSelectionBounds() method edit-context edit-context 1 current -https://w3c.github.io/edit-context/#dom-editcontext-updateselectionbound +https://w3c.github.io/edit-context/#dom-editcontext-updateselectionbounds 1 1 EditContext - -updateSelectionBound(selectionBound) +updateSelectionBounds(selectionBounds) method edit-context edit-context 1 -snapshot -https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbound +current +https://w3c.github.io/edit-context/#dom-editcontext-updateselectionbounds 1 1 EditContext @@ -1986,6 +2309,17 @@ https://wicg.github.io/background-fetch/#dom-backgroundfetchupdateuievent-update 1 BackgroundFetchUpdateUIEvent - +updateURL +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-updateurl +1 +1 +GenerateBidInterestGroup +- updateViaCache dict-member service-workers @@ -2032,7 +2366,7 @@ ServiceWorkerRegistration - updateWith() method -payment-request-1.1 +payment-request payment-request 1 current @@ -2043,18 +2377,18 @@ PaymentRequestUpdateEvent - updateWith() method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-updatewith +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-updatewith 1 1 PaymentRequestUpdateEvent - updateWith(detailsPromise) method -payment-request-1.1 +payment-request payment-request 1 current @@ -2065,33 +2399,33 @@ PaymentRequestUpdateEvent - updateWith(detailsPromise) method -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-updatewith +https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-updatewith 1 1 PaymentRequestUpdateEvent - updateend -dfn +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-updateend - +1 1 - updateend -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-updateend - +1 1 - updatefound @@ -2116,24 +2450,35 @@ https://www.w3.org/TR/service-workers/#service-worker-registration-updatefound-e 1 ServiceWorkerRegistration - -updatestart +updateifolderthanms dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bidding-signals-per-interest-group-data-updateifolderthanms + +1 +bidding signals per interest group data +- +updatestart +event media-source-2 media-source 2 current https://w3c.github.io/media-source/#dfn-updatestart - +1 1 - updatestart -dfn +event media-source-2 media-source 2 snapshot https://www.w3.org/TR/media-source-2/#dfn-updatestart - +1 1 - updating @@ -2180,6 +2525,26 @@ https://www.w3.org/TR/cssom-1/#cssstyledeclaration-updating-flag 1 CSSStyleDeclaration - +updating the rendering of a WebGPU canvas +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-updating-the-rendering-of-a-webgpu-canvas +1 +1 +- +updating the rendering of a WebGPU canvas +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-updating-the-rendering-of-a-webgpu-canvas +1 +1 +- updating the search origin dfn css-nav-1 @@ -2198,6 +2563,16 @@ css-nav snapshot https://www.w3.org/TR/css-nav-1/#update-the-search-origin +1 +- +updating touchevents +dfn +gamepad-extensions +gamepad-extensions +1 +current +https://w3c.github.io/gamepad/extensions.html#dfn-updating-touchevents + 1 - upgrade @@ -2222,6 +2597,26 @@ https://www.w3.org/TR/upgrade-insecure-requests/#valdef-insecure-requests-policy 1 insecure requests policy - +upgrade a database +dfn +indexeddb-3 +indexeddb +3 +current +https://w3c.github.io/IndexedDB/#upgrade-a-database + +1 +- +upgrade a database +dfn +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#upgrade-a-database + +1 +- upgrade a mixed content request to a potentially trustworthy url, if appropriate dfn mixed-content @@ -2465,6 +2860,46 @@ html current https://html.spec.whatwg.org/multipage/custom-elements.html#upgrades +1 +- +upheld +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#uphold + +1 +- +uphold +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#uphold + +1 +- +upholding +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#uphold + +1 +- +upholds +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#uphold + 1 - upload @@ -2654,6 +3089,17 @@ IDBKeyRange/upperBound(upper, open) IDBKeyRange/upperBound(upper) - upper +dict-member +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mltriangularoptions-upper +1 +1 +MLTriangularOptions +- +upper argument indexeddb-3 indexeddb @@ -2689,6 +3135,40 @@ https://www.w3.org/TR/IndexedDB-3/#dom-idbkeyrange-upperbound-upper-open-upper IDBKeyRange/upperBound(upper, open) IDBKeyRange/upperBound(upper) - +upper +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-cssmathclamp-lower-value-upper-upper +1 +1 +CSSMathClamp/CSSMathClamp(lower, value, upper) +CSSMathClamp/constructor(lower, value, upper) +- +upper +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-upper +1 +1 +CSSMathClamp +- +upper +dict-member +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mltriangularoptions-upper +1 +1 +MLTriangularOptions +- upper bound dfn indexeddb-3 @@ -2852,6 +3332,26 @@ list-style-type - upper-latin value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-upper-latin +1 +1 +- +upper-latin +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-upper-latin +1 +1 +- +upper-latin +value css-counter-styles-3 css-counter-styles 3 @@ -2891,6 +3391,26 @@ html current https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-state-upper-roman +1 +- +upper-roman +value +css2 +css +1 +current +https://www.w3.org/TR/CSS21/generate.html#value-def-upper-roman +1 +1 +- +upper-roman +value +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/generate.html#value-def-upper-roman +1 1 - upper-roman @@ -3212,6 +3732,17 @@ text-orientation - upright value +css-page-3 +css-page +3 +snapshot +https://www.w3.org/TR/css-page-3/#valdef-page-orientation-upright +1 +1 +page-orientation +- +upright +value css-writing-modes-3 css-writing-modes 3 @@ -3258,7 +3789,7 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-upstream-node +https://w3c.github.io/webdriver/#dfn-upstream 1 - @@ -3268,27 +3799,7 @@ webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-upstream-node - -1 -- -upstream node -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-upstream-node - -1 -- -upstream node -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-upstream-node +https://www.w3.org/TR/webdriver2/#dfn-upstream 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ur.data b/bikeshed/spec-data/readonly/anchors/anchors-ur.data index 88e01df59f..da6ee8ff47 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ur.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ur.data @@ -26,16 +26,6 @@ html current https://html.spec.whatwg.org/multipage/infrastructure.html#urierror.prototype -1 -- -<urange> -type -css-syntax-3 -css-syntax -3 -current -https://drafts.csswg.org/css-syntax-3/#typedef-urange -1 1 - <urange> @@ -80,6 +70,26 @@ https://drafts.csswg.org/css2/#value-def-uri 1 1 - +<uri> +type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#value-def-uri +1 +1 +- +<uri> +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#value-def-uri +1 +1 +- <url-modifier> type css-values-3 @@ -314,7 +324,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern +https://urlpattern.spec.whatwg.org/#urlpattern 1 1 - @@ -324,7 +334,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options 1 1 URLPattern @@ -335,7 +345,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options 1 1 URLPattern @@ -346,7 +356,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern 1 1 URLPattern @@ -357,7 +367,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern 1 1 URLPattern @@ -368,18 +378,28 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-urlpattern-input-options +https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options 1 1 URLPattern - +URLPatternCompatible +typedef +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#typedefdef-urlpatterncompatible +1 +1 +- URLPatternComponentResult dictionary urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dictdef-urlpatterncomponentresult +https://urlpattern.spec.whatwg.org/#dictdef-urlpatterncomponentresult 1 1 - @@ -389,7 +409,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dictdef-urlpatterninit +https://urlpattern.spec.whatwg.org/#dictdef-urlpatterninit 1 1 - @@ -399,7 +419,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#typedefdef-urlpatterninput +https://urlpattern.spec.whatwg.org/#typedefdef-urlpatterninput 1 1 - @@ -409,7 +429,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dictdef-urlpatternoptions +https://urlpattern.spec.whatwg.org/#dictdef-urlpatternoptions 1 1 - @@ -419,7 +439,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dictdef-urlpatternresult +https://urlpattern.spec.whatwg.org/#dictdef-urlpatternresult 1 1 - @@ -466,6 +486,16 @@ https://webidl.spec.whatwg.org/#dom-domexception-url_mismatch_err 1 DOMException - +UrnOrConfig +typedef +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#typedefdef-urnorconfig +1 +1 +- [[Urls]] attribute css-font-loading-3 @@ -483,7 +513,7 @@ css-font-loading-3 css-font-loading 3 snapshot -https://www.w3.org/TR/css-font-loading-3/#dom-fontface-urls +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-urls-slot 1 1 FontFace @@ -496,7 +526,7 @@ rdf-canon current https://w3c.github.io/rdf-canon/spec/#dfn-urdna2015 1 -1 + - urdna2015 dfn @@ -506,7 +536,7 @@ rdf-canon snapshot https://www.w3.org/TR/rdf-canon/#dfn-urdna2015 1 -1 + - urgna2012 dfn @@ -527,6 +557,16 @@ snapshot https://www.w3.org/TR/rdf-canon/#dfn-urgna2012 1 +- +uri +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#dfn-uri + +1 - uri dfn @@ -559,6 +599,26 @@ https://w3c.github.io/webrtc-pc/#dom-rtcrtpheaderextensionparameters-uri 1 1 RTCRtpHeaderExtensionParameters +- +uri +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#dfn-uri + +1 +- +uri +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-uri + + - uri dict-member @@ -632,6 +692,50 @@ https://www.w3.org/TR/webdriver2/#dfn-uri-template 1 - +uritemplate +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-1-patch-map-uritemplate + +1 +Format 1 Patch Map +- +uritemplate +dfn +ift +ift +1 +current +https://w3c.github.io/IFT/Overview.html#format-2-patch-map-uritemplate + +1 +Format 2 Patch Map +- +uritemplate +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-1-patch-map-uritemplate + +1 +Format 1 Patch Map +- +uritemplate +dfn +ift +ift +1 +snapshot +https://www.w3.org/TR/IFT/#format-2-patch-map-uritemplate + +1 +Format 2 Patch Map +- url dfn dom @@ -654,17 +758,6 @@ https://drafts.csswg.org/css-values-3/#url 1 - url -value -css-values-5 -css-values -5 -current -https://drafts.csswg.org/css-values-5/#valdef-attr-url -1 -1 -attr() -- -url dict-member fedcm fedcm @@ -750,6 +843,16 @@ html current https://html.spec.whatwg.org/multipage/browsers.html#coop-enforcement-url +1 +- +url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-params-url + 1 - url @@ -806,7 +909,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#url-state-(type=url) +https://html.spec.whatwg.org/multipage/input.html#url-state-(type%3Durl) 1 1 input @@ -880,6 +983,59 @@ html current https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-location-url +1 +- +url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationdestination-url + +1 +- +url +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-url +1 +1 +NavigationDestination +- +url +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-url +1 +1 +NavigationHistoryEntry +- +url +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-url +1 +1 +NotRestoredReasons +- +url +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#nrr-url + 1 - url @@ -937,6 +1093,17 @@ https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-ur WorkerGlobalScope - url +argument +saa-non-cookie-storage +saa-non-cookie-storage +1 +current +https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-revokeobjecturl-url-url +1 +1 +StorageAccessHandle/revokeObjectURL(url) +- +url dfn url url @@ -974,6 +1141,30 @@ url url 1 current +https://url.spec.whatwg.org/#dom-url-canparse-url-base-url +1 +1 +URL/canParse(url, base) +URL/canParse(url) +- +url +argument +url +url +1 +current +https://url.spec.whatwg.org/#dom-url-parse-url-base-url +1 +1 +URL/parse(url, base) +URL/parse(url) +- +url +argument +url +url +1 +current https://url.spec.whatwg.org/#dom-url-url-url-base-url 1 1 @@ -1054,9 +1245,10 @@ largest-contentful-paint largest-contentful-paint 1 current -https://w3c.github.io/largest-contentful-paint/#url +https://w3c.github.io/largest-contentful-paint/#largestcontentfulpaint-url 1 +LargestContentfulPaint - url dfn @@ -1092,6 +1284,16 @@ https://w3c.github.io/presentation-api/#dom-presentationconnection-url PresentationConnection - url +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-url + +1 +- +url attribute reporting-1 reporting @@ -1126,6 +1328,27 @@ report - url dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-url + +1 +network_reporting_endpoints +- +url +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-url + +1 +- +url +dfn web-nfc web-nfc 1 @@ -1284,6 +1507,17 @@ WebSocket/WebSocket(url) WebSocket/constructor(url) - url +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#os-registration-url + +1 +OS registration +- +url dict-member content-index content-index @@ -1328,6 +1562,29 @@ https://wicg.github.io/element-timing/#dom-performanceelementtiming-url PerformanceElementTiming - url +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-fencedframeconfig-url-url +1 +1 +FencedFrameConfig/FencedFrameConfig(url) +FencedFrameConfig/constructor(url) +- +url +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-url + +1 +fencedframeconfig +- +url dict-member get-installed-related-apps get-installed-related-apps @@ -1347,6 +1604,18 @@ current https://wicg.github.io/manifest-incubations/#dfn-url 1 +new_tab_button +- +url +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-url-0 + +1 +protocol handler description - url dfn @@ -1393,60 +1662,92 @@ https://wicg.github.io/nav-speculation/speculation-rules.html#prerender-candidat prerender candidate - url -argument -navigation-api -navigation-api +dict-member +performance-measure-memory +performance-measure-memory 1 current -https://wicg.github.io/navigation-api/#dom-navigation-navigate-url-options-url +https://wicg.github.io/performance-measure-memory/#dom-memoryattribution-url 1 1 -Navigation/navigate(url, options) -Navigation/navigate(url) +MemoryAttribution - url -attribute -navigation-api -navigation-api +dict-member +shared-storage +shared-storage 1 current -https://wicg.github.io/navigation-api/#dom-navigationdestination-url +https://wicg.github.io/shared-storage/#dom-sharedstorageurlwithmetadata-url 1 1 -NavigationDestination +SharedStorageUrlWithMetadata - url -attribute -navigation-api -navigation-api +dfn +soft-navigations +soft-navigations 1 current -https://wicg.github.io/navigation-api/#dom-navigationhistoryentry-url -1 +https://wicg.github.io/soft-navigations/#interaction-data-url + 1 -NavigationHistoryEntry +interaction data - url dfn -navigation-api -navigation-api +turtledove +turtledove 1 current -https://wicg.github.io/navigation-api/#navigationdestination-url +https://wicg.github.io/turtledove/#ad-descriptor-url 1 -NavigationDestination +ad descriptor - url dict-member -performance-measure-memory -performance-measure-memory +turtledove +turtledove 1 current -https://wicg.github.io/performance-measure-memory/#dom-memoryattribution-url +https://wicg.github.io/turtledove/#dom-adrender-url 1 1 -MemoryAttribution +AdRender +- +url +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-fordebuggingonly-reportadauctionloss-url-url +1 +1 +ForDebuggingOnly/reportAdAuctionLoss(url) +- +url +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-fordebuggingonly-reportadauctionwin-url-url +1 +1 +ForDebuggingOnly/reportAdAuctionWin(url) +- +url +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-sendreportto-url-url +1 +1 +InterestGroupReportingScriptRunnerGlobalScope/sendReportTo(url) - url dfn @@ -1530,9 +1831,10 @@ largest-contentful-paint largest-contentful-paint 1 snapshot -https://www.w3.org/TR/largest-contentful-paint/#url +https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-url 1 +LargestContentfulPaint - url attribute @@ -1546,6 +1848,16 @@ https://www.w3.org/TR/presentation-api/#dom-presentationconnection-url PresentationConnection - url +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-url + +1 +- +url attribute reporting-1 reporting @@ -1612,6 +1924,16 @@ https://www.w3.org/TR/service-workers/#dom-windowclient-navigate-url-url WindowClient/navigate(url) - url +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-url + +1 +- +url dict-member web-share web-share @@ -1639,6 +1961,17 @@ webrtc webrtc 1 snapshot +https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-url +1 +1 +RTCIceCandidate +- +url +attribute +webrtc +webrtc +1 +snapshot https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectioniceerrorevent-url 1 1 @@ -1808,6 +2141,16 @@ https://url.spec.whatwg.org/#concept-url-parser 1 1 - +url path +dfn +url +url +1 +current +https://url.spec.whatwg.org/#url-path +1 +1 +- url path segment dfn url @@ -1838,6 +2181,16 @@ https://url.spec.whatwg.org/#url-path-serializer 1 1 - +url pattern +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#url-pattern +1 +1 +- url prefix dfn webdriver2 @@ -1918,63 +2271,53 @@ https://www.w3.org/TR/SVG2/linking.html#TermURLReferenceWithFragmentIdentifier 1 1 - -url serializer +url request modifier steps dfn -url -url -1 +css-values-4 +css-values +4 current -https://url.spec.whatwg.org/#concept-url-serializer +https://drafts.csswg.org/css-values-4/#url-request-modifier-steps 1 1 - -url units +url request modifier steps dfn -url -url +css-values-4 +css-values +4 +snapshot +https://www.w3.org/TR/css-values-4/#url-request-modifier-steps 1 -current -https://url.spec.whatwg.org/#url-units - 1 - -url variable +url search variance dfn -webdriver2 -webdriver -2 +no-vary-search +no-vary-search +1 current -https://w3c.github.io/webdriver/#dfn-url-variables +https://wicg.github.io/nav-speculation/no-vary-search.html#url-search-variance 1 - -url variable +url serializer dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-url-variables - +url +url 1 -- -url variables -dfn -webdriver2 -webdriver -2 current -https://w3c.github.io/webdriver/#dfn-url-variables - +https://url.spec.whatwg.org/#concept-url-serializer +1 1 - -url variables +url units dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-url-variables +url +url +1 +current +https://url.spec.whatwg.org/#url-units 1 - @@ -2088,6 +2431,17 @@ https://url.spec.whatwg.org/#url-scheme-string 1 1 - +urlPattern +dict-member +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#dom-routercondition-urlpattern +1 +1 +RouterCondition +- urlencoded parser dfn url @@ -2116,6 +2470,26 @@ url current https://url.spec.whatwg.org/#concept-urlencoded-string-parser +1 +- +urls +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-url + +1 +- +urls +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-url + 1 - urls @@ -2141,6 +2515,61 @@ https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rule-u speculation rule - urls +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-runfunctionforsharedstorageselecturloperation-urls +1 +1 +RunFunctionForSharedStorageSelectURLOperation +- +urls +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-selecturl-name-urls-options-urls +1 +1 +SharedStorage/selectURL(name, urls, options) +SharedStorage/selectURL(name, urls) +- +urls +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorageworklet-selecturl-name-urls-options-urls +1 +1 +SharedStorageWorklet/selectURL(name, urls, options) +SharedStorageWorklet/selectURL(name, urls) +- +urls +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-url + +1 +- +urls +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-url + +1 +- +urls dict-member webrtc webrtc @@ -2173,3 +2602,37 @@ https://html.spec.whatwg.org/multipage/obsolete.html#attr-link-urn 1 link - +urn +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-urn + +1 +fencedframeconfig +- +urnOrConfig +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedreplaceinurn-urnorconfig-replacements-urnorconfig +1 +1 +Navigator/deprecatedReplaceInURN(urnOrConfig, replacements) +- +urnOrConfig +argument +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-navigator-deprecatedurntourl-urnorconfig-send_reports-urnorconfig +1 +1 +Navigator/deprecatedURNtoURL(urnOrConfig, send_reports) +Navigator/deprecatedURNtoURL(urnOrConfig) +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-us.data b/bikeshed/spec-data/readonly/anchors/anchors-us.data index 954397490d..f11590dd5a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-us.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-us.data @@ -31,6 +31,17 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-usb 1 AuthenticatorTransport - +"use" +enum-value +fedcm +fedcm +1 +current +https://fedidcg.github.io/FedCM/#dom-identitycredentialrequestoptionscontext-use +1 +1 +IdentityCredentialRequestOptionsContext +- "user-blocking" enum-value scheduling-apis @@ -42,6 +53,17 @@ https://wicg.github.io/scheduling-apis/#dom-taskpriority-user-blocking 1 TaskPriority - +"user-callback" +enum-value +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-scriptinvokertype-user-callback +1 +1 +ScriptInvokerType +- "user-visible" enum-value scheduling-apis @@ -53,6 +75,17 @@ https://wicg.github.io/scheduling-apis/#dom-taskpriority-user-visible 1 TaskPriority - +"userVerifyingPlatformAuthenticator" +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-userverifyingplatformauthenticator +1 +1 +ClientCapability +- :user-invalid selector selectors-4 @@ -61,6 +94,16 @@ selectors current https://drafts.csswg.org/selectors-4/#user-invalid-pseudo 1 +1 +- +:user-invalid +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-user-invalid + 1 - :user-invalid @@ -81,6 +124,16 @@ selectors current https://drafts.csswg.org/selectors-4/#user-valid-pseudo 1 +1 +- +:user-valid +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-user-valid + 1 - :user-valid @@ -124,6 +177,16 @@ https://wicg.github.io/webusb/#dom-usbalternateinterface-usbalternateinterface 1 USBAlternateInterface - +USBBlocklistEntry +dictionary +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dictdef-usbblocklistentry +1 +1 +- USBConfiguration interface webusb @@ -579,6 +642,50 @@ https://www.w3.org/TR/webauthn-3/#enumdef-userverificationrequirement 1 1 - +[[usage scope]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpurenderbundle-usage-scope-slot +1 +1 +GPURenderBundle +- +[[usage scope]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpurendercommandsmixin-usage-scope-slot +1 +1 +GPURenderCommandsMixin +- +[[usage scope]] +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpurenderbundle-usage-scope-slot +1 +1 +GPURenderBundle +- +[[usage scope]] +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-usage-scope-slot +1 +1 +GPURenderCommandsMixin +- [[usages]] attribute webcryptoapi @@ -647,9 +754,9 @@ IdleDetector - usable enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-usable 1 @@ -657,27 +764,58 @@ https://w3c.github.io/encrypted-media/#dom-mediakeystatus-usable MediaKeyStatus - usable -dfn +enum-value +encrypted-media-2 encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-usable +1 +1 +MediaKeyStatus +- +usable for decryption +dfn +encrypted-media-2 encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-usable-for-decryption + 1 +- +usable for decryption +dfn +encrypted-media-2 +encrypted-media +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeystatus-usable +https://www.w3.org/TR/encrypted-media-2/#dfn-usable-for-decryption 1 -mediakeystatus - usable-in-future enum-value +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeystatus-usable-in-future 1 1 MediaKeyStatus - +usable-in-future +enum-value +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeystatus-usable-in-future +1 +1 +MediaKeyStatus +- usableWithDarkBackground attribute css-font-loading-3 @@ -689,6 +827,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacepalette-usablewithdarkb 1 FontFacePalette - +usableWithDarkBackground +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacepalette-usablewithdarkbackground +1 +1 +FontFacePalette +- usableWithLightBackground attribute css-font-loading-3 @@ -700,6 +849,17 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacepalette-usablewithlight 1 FontFacePalette - +usableWithLightBackground +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacepalette-usablewithlightbackground +1 +1 +FontFacePalette +- usage attribute webgpu @@ -843,26 +1003,6 @@ https://www.w3.org/TR/webgpu/#dom-gputexturedescriptor-usage 1 GPUTextureDescriptor - -usage document frequency -dfn -ift -ift -1 -current -https://w3c.github.io/IFT/Overview.html#usage-document-frequency - -1 -- -usage document frequency -dfn -ift -ift -1 -snapshot -https://www.w3.org/TR/IFT/#usage-document-frequency - -1 -- usage id dfn webhid @@ -890,7 +1030,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#concept-usage-intersection -1 + 1 - usage maximum tag @@ -933,43 +1073,83 @@ https://wicg.github.io/webhid/#dfn-usage-page-tag - -usage scope validation +usage scope dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#usage-scope-validation +https://gpuweb.github.io/gpuweb/#usage-scope 1 - -usage scope validation +usage scope dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#usage-scope-validation +https://www.w3.org/TR/webgpu/#usage-scope 1 - -usage scopes +usage scope attachment exception dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#usage-scopes +https://gpuweb.github.io/gpuweb/#usage-scope-attachment-exception + +- +usage scope attachment exception +dfn +webgpu +webgpu 1 +snapshot +https://www.w3.org/TR/webgpu/#usage-scope-attachment-exception + + - -usage scopes +usage scope storage exception +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#usage-scope-storage-exception + + +- +usage scope storage exception dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#usage-scopes +https://www.w3.org/TR/webgpu/#usage-scope-storage-exception + + +- +usage scope validation +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#usage-scope-validation + +1 +- +usage scope validation +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#usage-scope-validation 1 - @@ -1089,7 +1269,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-usages -1 + 1 - usages_cached @@ -1099,7 +1279,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-slot-usages_cached -1 + 1 - usb @@ -1146,6 +1326,16 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatortransport-usb 1 AuthenticatorTransport - +usb blocklist +dfn +webusb +webusb +1 +current +https://wicg.github.io/webusb/#usb-blocklist + +1 +- usb device dfn webusb @@ -1292,6 +1482,146 @@ html current https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-crossorigin-use-credentials +1 +- +use distinctive identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s + +1 +- +use distinctive identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s + +1 +- +use distinctive identifier(s) or distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s + +1 +- +use distinctive identifier(s) or distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s + +1 +- +use distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-permanent-identifier-s + +1 +- +use distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-permanent-identifier-s + +1 +- +use dual source blending +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#use-dual-source-blending +1 +1 +- +use dual source blending +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#use-dual-source-blending +1 +1 +- +use of distinctive identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s + +1 +- +use of distinctive identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s + +1 +- +use of distinctive identifier(s) or distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s + +1 +- +use of distinctive identifier(s) or distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s + +1 +- +use of distinctive identifiers and distinctive permanent identifiers +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-of-distinctive-identifiers-and-distinctive-permanent-identifiers + +1 +- +use of distinctive identifiers and distinctive permanent identifiers +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-of-distinctive-identifiers-and-distinctive-permanent-identifiers + 1 - use report ids @@ -1348,6 +1678,17 @@ https://fetch.spec.whatwg.org/#use-cors-preflight-flag request - use-credentials +value +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-use-credentials +1 +1 +<request-url-modifier> +- +use-credentials attr-value html html @@ -1528,6 +1869,26 @@ css-color-adjust snapshot https://www.w3.org/TR/css-color-adjust-1/#used-color-scheme 1 +1 +- +used keyframe order +dfn +css-animations-2 +css-animations +2 +current +https://drafts.csswg.org/css-animations-2/#used-keyframe-order + +1 +- +used keyframe order +dfn +css-animations-2 +css-animations +2 +snapshot +https://www.w3.org/TR/css-animations-2/#used-keyframe-order + 1 - used min-width of a table @@ -1608,6 +1969,26 @@ css current https://drafts.csswg.org/css2/#usedValue +1 +- +used value +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/cascade.html#used-value +1 +1 +- +used value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/cascade.html#used-value +1 1 - used value @@ -1933,14 +2314,15 @@ https://www.w3.org/TR/mediacapture-streams/#dom-videofacingmodeenum-user VideoFacingModeEnum - user -dfn -tracking-dnt -tracking-dnt -1 +dict-member +webauthn-3 +webauthn +3 snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-user - +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-user 1 +1 +PublicKeyCredentialCreationOptions - user dict-member @@ -1948,14 +2330,14 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptions-user +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialcreationoptionsjson-user 1 1 -PublicKeyCredentialCreationOptions +PublicKeyCredentialCreationOptionsJSON - user aborts the payment request dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -1965,17 +2347,17 @@ https://w3c.github.io/payment-request/#dfn-user-aborts-the-payment-request - user aborts the payment request dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-user-aborts-the-payment-request +https://www.w3.org/TR/payment-request/#dfn-user-aborts-the-payment-request 1 - user aborts the payment request algorithm dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -1985,17 +2367,17 @@ https://w3c.github.io/payment-request/#dfn-user-aborts-the-payment-request - user aborts the payment request algorithm dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-user-aborts-the-payment-request +https://www.w3.org/TR/payment-request/#dfn-user-aborts-the-payment-request 1 - user accepts the payment request dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -2005,17 +2387,17 @@ https://w3c.github.io/payment-request/#dfn-user-accepts-the-payment-request-algo - user accepts the payment request dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-user-accepts-the-payment-request-algorithm +https://www.w3.org/TR/payment-request/#dfn-user-accepts-the-payment-request-algorithm 1 1 - user accepts the payment request algorithm dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -2025,11 +2407,11 @@ https://w3c.github.io/payment-request/#dfn-user-accepts-the-payment-request-algo - user accepts the payment request algorithm dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-user-accepts-the-payment-request-algorithm +https://www.w3.org/TR/payment-request/#dfn-user-accepts-the-payment-request-algorithm 1 1 - @@ -2043,25 +2425,25 @@ https://w3c.github.io/webauthn/#user-account 1 - -user action +user account dfn -tracking-dnt -tracking-dnt -1 -current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-user-action - +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#user-account +1 - user action dfn tracking-dnt tracking-dnt 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-user-action +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-user-action + -1 - user action pseudo-class dfn @@ -2103,25 +2485,25 @@ https://html.spec.whatwg.org/multipage/interaction.html#tracking-user-activation 1 1 - -user activity +user activation map dfn -tracking-dnt -tracking-dnt +nav-tracking-mitigations +nav-tracking-mitigations 1 current -https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-user-activity - +https://privacycg.github.io/nav-tracking-mitigations/#user-activation-map +1 - user activity dfn tracking-dnt tracking-dnt 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-user-activity +current +https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-user-activity + -1 - user agent dfn @@ -2141,16 +2523,6 @@ css current https://drafts.csswg.org/css-2023/#user-agent -1 -- -user agent -dfn -css-backgrounds-3 -css-backgrounds -3 -current -https://drafts.csswg.org/css-backgrounds-3/#user-agent - 1 - user agent @@ -2221,16 +2593,6 @@ device-posture current https://w3c.github.io/device-posture/#dfn-user-agent -1 -- -user agent -dfn -edit-context -edit-context -1 -current -https://w3c.github.io/edit-context/#dfn-user-agent - 1 - user agent @@ -2241,36 +2603,6 @@ html-media-capture current https://w3c.github.io/html-media-capture/#dfn-user-agent -1 -- -user agent -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-user-agent - -1 -- -user agent -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-user-agent - -1 -- -user agent -dfn -mediacapture-automation -mediacapture-automation -1 -current -https://w3c.github.io/mediacapture-automation/#dfn-user-agent - 1 - user agent @@ -2335,7 +2667,7 @@ https://w3c.github.io/payment-handler/#dfn-user-agents - user agent dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -2396,16 +2728,6 @@ report - user agent dfn -resource-hints -resource-hints -1 -current -https://w3c.github.io/resource-hints/#dfn-user-agent - -1 -- -user agent -dfn screen-wake-lock screen-wake-lock 1 @@ -2433,16 +2755,6 @@ current https://w3c.github.io/svg-aam/#dfn-user-agent -- -user agent -dfn -uievents -uievents -1 -current -https://w3c.github.io/uievents/#user-agent - -1 - user agent dfn @@ -2492,16 +2804,6 @@ webrtc current https://w3c.github.io/webrtc-pc/#dfn-user-agent -1 -- -user agent -dfn -webmidi -webmidi -1 -current -https://webaudio.github.io/web-midi-api/#dfn-user-agent - 1 - user agent @@ -2530,7 +2832,7 @@ css2 css 1 current -https://www.w3.org/TR/CSS21/conform.html#user-agent +https://www.w3.org/TR/CSS21/conform.html#ua 1 1 - @@ -2540,18 +2842,28 @@ css2 css 1 snapshot +https://www.w3.org/TR/CSS21/conform.html#ua +1 +1 +- +user agent +dfn +css2 +css +1 +current https://www.w3.org/TR/CSS21/conform.html#user-agent 1 1 - user agent dfn -accname-1.2 -accname +css2 +css 1 snapshot -https://www.w3.org/TR/accname-1.2/#dfn-user-agent - +https://www.w3.org/TR/CSS21/conform.html#user-agent +1 1 - user agent @@ -2602,16 +2914,6 @@ css snapshot https://www.w3.org/TR/css-2023/#user-agent -1 -- -user agent -dfn -css-backgrounds-3 -css-backgrounds -3 -snapshot -https://www.w3.org/TR/css-backgrounds-3/#user-agent - 1 - user agent @@ -2716,11 +3018,11 @@ https://www.w3.org/TR/payment-handler/#dfn-user-agents - user agent dfn -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-user-agent +https://www.w3.org/TR/payment-request/#dfn-user-agent 1 - @@ -2777,16 +3079,6 @@ report - user agent dfn -resource-hints -resource-hints -1 -snapshot -https://www.w3.org/TR/resource-hints/#dfn-user-agent -1 -1 -- -user agent -dfn screen-capture screen-capture 1 @@ -2823,16 +3115,6 @@ touch-events snapshot https://www.w3.org/TR/touch-events/#dfn-user-agent 1 -1 -- -user agent -dfn -uievents -uievents -1 -snapshot -https://www.w3.org/TR/uievents/#user-agent - 1 - user agent @@ -2874,16 +3156,6 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-user-agent -- -user agent -dfn -webmidi -webmidi -1 -snapshot -https://www.w3.org/TR/webmidi/#dfn-user-agent -1 -1 - user agent dfn @@ -2935,13 +3207,13 @@ https://w3c.github.io/mathml-core/#dfn-user-agent-stylesheet 1 - -user agents +user agent stylesheet dfn -mathml-aam -mathml-aam +mathml-core +mathml-core 1 -current -https://w3c.github.io/mathml-aam/#dfn-user-agent +snapshot +https://www.w3.org/TR/mathml-core/#dfn-user-agent-stylesheet 1 - @@ -2994,16 +3266,6 @@ current https://w3c.github.io/svg-aam/#dfn-user-agent -- -user agents -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-user-agent - -1 - user agents dfn @@ -3145,6 +3407,39 @@ https://www.w3.org/TR/webvtt1/#user-agents-that-support-a-full-html-css-engine 1 - +user attention +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#user-attention + +1 +top-level traversable +- +user bidding signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#interest-group-user-bidding-signals + +1 +interest group +- +user bidding signals +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#server-auction-interest-group-user-bidding-signals + +1 +server auction interest group +- user consent dfn fido-v2.1 @@ -3195,6 +3490,27 @@ https://www.w3.org/TR/contact-picker/#user-contact 1 - +user context +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#user-context +1 +1 +- +user context id +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#user-context-user-context-id +1 +1 +user context +- user coordinate system dfn css-transforms-1 @@ -3243,6 +3559,16 @@ webauthn current https://w3c.github.io/webauthn/#user-credential +1 +- +user credential +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#user-credential + 1 - user handle @@ -3311,7 +3637,7 @@ event-timing event-timing 1 current -https://w3c.github.io/event-timing#user-interaction-value +https://w3c.github.io/event-timing/#user-interaction-value 1 - @@ -3325,6 +3651,17 @@ https://www.w3.org/TR/event-timing/#user-interaction-value 1 - +user involvement +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#navigation-params-user-involvement + +1 +navigation params +- user language dfn local-font-access @@ -3377,23 +3714,23 @@ https://www.w3.org/TR/credential-management-1/#user-mediated - user navigation involvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#event-user-navigation-involvement +https://html.spec.whatwg.org/multipage/browsing-the-web.html#event-uni 1 Event - user navigation involvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#user-navigation-involvement - +https://html.spec.whatwg.org/multipage/browsing-the-web.html#user-navigation-involvement +1 1 - user origin @@ -3617,25 +3954,27 @@ https://www.w3.org/TR/css-cascade-5/#cascade-origin-user 1 1 - -user timing +user topics state dfn -user-timing -user-timing +topics +topics 1 current -https://w3c.github.io/user-timing/#dfn-user-timing +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-user-topics-state 1 +browsing topics types - -user timing +user topics state dfn -user-timing -user-timing +topics +topics 1 -snapshot -https://www.w3.org/TR/user-timing/#dfn-user-timing +current +https://patcg-individual-drafts.github.io/topics/#user-agent-user-topics-state 1 +user agent - user units dfn @@ -3657,13 +3996,13 @@ https://www.w3.org/TR/SVG2/coords.html#TermUserUnits 1 1 - -user verification +user validity dfn -webauthn-3 -webauthn -3 +html +html +1 current -https://w3c.github.io/webauthn/#user-verification +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#user-validity 1 - @@ -3672,18 +4011,18 @@ dfn webauthn-3 webauthn 3 -snapshot -https://www.w3.org/TR/webauthn-3/#user-verification +current +https://w3c.github.io/webauthn/#user-verification 1 - -user verification method +user verification dfn webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#user-verification-method +snapshot +https://www.w3.org/TR/webauthn-3/#user-verification 1 - @@ -3925,7 +4264,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_user_facing_identifier +https://w3c.github.io/i18n-glossary/#dfn-user-facing-identifiers 1 - @@ -3935,7 +4274,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_user_facing_identifier +https://www.w3.org/TR/i18n-glossary/#dfn-user-facing-identifiers 1 - @@ -3948,16 +4287,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-user-granted-exception -- -user-granted exception -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-user-granted-exception - -1 - user-origin dfn @@ -4045,27 +4374,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_user_supplied_value -1 - -- -user-supplied value -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_user_supplied_value -1 - -- -user-supplied value -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_user_supplied_value +https://w3c.github.io/i18n-glossary/#dfn-user-supplied-value 1 - @@ -4075,27 +4384,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_user_supplied_value -1 - -- -user-supplied values -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_user_supplied_value -1 - -- -user-supplied values -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_user_supplied_value +https://www.w3.org/TR/i18n-glossary/#dfn-user-supplied-value 1 - @@ -4163,6 +4452,17 @@ https://wicg.github.io/ua-client-hints/#dom-navigatorua-useragentdata 1 NavigatorUA - +userBiddingSignals +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-userbiddingsignals +1 +1 +GenerateBidInterestGroup +- userChoice dict-member manifest-incubations @@ -4207,6 +4507,17 @@ https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponse-userhandle 1 AuthenticatorAssertionResponse - +userHandle +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-authenticatorassertionresponsejson-userhandle +1 +1 +AuthenticatorAssertionResponseJSON +- userHint attribute payment-handler @@ -4231,26 +4542,48 @@ PaymentManager - userInitiated attribute -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateevent-userinitiated +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateevent-userinitiated 1 1 NavigateEvent - userInitiated dict-member -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#dom-navigateeventinit-userinitiated +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigateeventinit-userinitiated 1 1 NavigateEventInit - +userInsertedDevices +attribute +mediacapture-streams +mediacapture-streams +1 +current +https://w3c.github.io/mediacapture-main/#dom-devicechangeevent-userinserteddevices +1 +1 +DeviceChangeEvent +- +userInsertedDevices +attribute +mediacapture-streams +mediacapture-streams +1 +snapshot +https://www.w3.org/TR/mediacapture-streams/#dom-devicechangeevent-userinserteddevices +1 +1 +DeviceChangeEvent +- userState attribute idle-detection @@ -4317,6 +4650,28 @@ https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptions-userveri 1 PublicKeyCredentialRequestOptions - +userVerification +dict-member +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#dom-publickeycredentialrequestoptionsjson-userverification +1 +1 +PublicKeyCredentialRequestOptionsJSON +- +userVerifyingPlatformAuthenticator +enum-value +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#dom-clientcapability-userverifyingplatformauthenticator +1 +1 +ClientCapability +- userVisibleOnly dict-member push-api @@ -4383,16 +4738,6 @@ https://www.w3.org/TR/push-api/#dom-pushsubscriptionoptionsinit-uservisibleonly 1 PushSubscriptionOptionsInit - -userchoice -dfn -manifest-incubations -manifest-incubations -1 -current -https://wicg.github.io/manifest-incubations/#dfn-userchoice - -1 -- userhandle dfn webauthn-3 @@ -4449,69 +4794,83 @@ https://url.spec.whatwg.org/#userinfo-percent-encode-set - userinvolvement dfn -navigation-api -navigation-api +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-user-involvement + +1 +- +userinvolvement +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/browsing-the-web.html#reload-user-involvement + +1 +- +userinvolvement +dfn +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-download-requested-navigate-event-userinvolvement +https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submit-user-involvement 1 -fire a download-requested navigate event - userinvolvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-non-traversal-navigate-event-userinvolvement +https://html.spec.whatwg.org/multipage/links.html#downloading-userinvolvement 1 -fire a non-traversal navigate event - userinvolvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#fire-a-traversal-navigate-event-userinvolvement +https://html.spec.whatwg.org/multipage/links.html#following-userinvolvement 1 -fire a traversal navigate event - userinvolvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#navigate-userinvolvement +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-download-userinvolvement 1 -navigate - userinvolvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#reload-userinvolvement +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-prr-userinvolvement 1 -reload - userinvolvement dfn -navigation-api -navigation-api +html +html 1 current -https://wicg.github.io/navigation-api/#traverse-the-history-by-a-delta-userinvolvement +https://html.spec.whatwg.org/multipage/nav-history-apis.html#fire-navigate-traverse-userinvolvement 1 -traverse the history by a delta - username attr-value @@ -4574,23 +4933,12 @@ https://url.spec.whatwg.org/#dom-url-username URL - username -dict-member -webrtc -webrtc -1 -current -https://w3c.github.io/webrtc-pc/#dom-rtciceserver-username -1 -1 -RTCIceServer -- -username dfn urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#constructor-string-parser-state-username +https://urlpattern.spec.whatwg.org/#constructor-string-parser-state-username 1 1 constructor string parser/state @@ -4601,7 +4949,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpattern-username +https://urlpattern.spec.whatwg.org/#dom-urlpattern-username 1 1 URLPattern @@ -4612,7 +4960,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatterninit-username +https://urlpattern.spec.whatwg.org/#dom-urlpatterninit-username 1 1 URLPatternInit @@ -4623,7 +4971,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#dom-urlpatternresult-username +https://urlpattern.spec.whatwg.org/#dom-urlpatternresult-username 1 1 URLPatternResult @@ -4633,6 +4981,17 @@ dict-member webrtc webrtc 1 +current +https://w3c.github.io/webrtc-pc/#dom-rtciceserver-username +1 +1 +RTCIceServer +- +username +dict-member +webrtc +webrtc +1 snapshot https://www.w3.org/TR/webrtc/#dom-rtciceserver-username 1 @@ -4658,10 +5017,10 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#urlpattern-username-component +https://urlpattern.spec.whatwg.org/#url-pattern-username-component 1 -URLPattern +URL pattern - usernameFragment attribute @@ -4974,16 +5333,6 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#dfn-use -1 -- -uses -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-uses - 1 - uses a negative sign @@ -5008,61 +5357,61 @@ https://www.w3.org/TR/css-counter-styles-3/#use-a-negative-sign - uses distinctive identifier(s) dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#uses-distinctive-identifiers +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s 1 - uses distinctive identifier(s) dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#uses-distinctive-identifiers +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s 1 - uses distinctive identifier(s) or distinctive permanent identifier(s) dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#uses-distinctive-identifiers-or-distinctive-permanent-identifiers +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s 1 - uses distinctive identifier(s) or distinctive permanent identifier(s) dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#uses-distinctive-identifiers-or-distinctive-permanent-identifiers +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s 1 - uses distinctive permanent identifier(s) dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#uses-distinctive-permanent-identifiers +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-permanent-identifier-s 1 - uses distinctive permanent identifier(s) dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#uses-distinctive-permanent-identifiers +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-permanent-identifier-s 1 - @@ -5116,6 +5465,46 @@ service-workers snapshot https://www.w3.org/TR/service-workers/#dfn-use +1 +- +using distinctive identifier(s) or distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s + +1 +- +using distinctive identifier(s) or distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-identifier-s-or-distinctive-permanent-identifier-s + +1 +- +using distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-use-distinctive-permanent-identifier-s + +1 +- +using distinctive permanent identifier(s) +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-use-distinctive-permanent-identifier-s + 1 - using the a element to define a command @@ -5207,4 +5596,24 @@ snapshot https://www.w3.org/TR/webxr/#usually-support +- +usv +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-scalar-value +1 + +- +usv +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-scalar-value +1 + - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ut.data b/bikeshed/spec-data/readonly/anchors/anchors-ut.data index 7ff7916a6c..f01fb0d526 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ut.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ut.data @@ -1,3 +1,13 @@ +UTC +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-utc-t +1 +1 +- UTC(t) abstract-op ecmascript @@ -38,6 +48,26 @@ snapshot https://www.w3.org/TR/i18n-glossary/#def_utc 1 +- +utf-16 +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-utf-16 + + +- +utf-16 +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-utf-16 + + - utf-16 lead byte dfn @@ -118,6 +148,26 @@ current https://encoding.spec.whatwg.org/#utf-8 1 1 +- +utf-8 +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-utf-8 + + +- +utf-8 +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-utf-8 + + - utf-8 bytes needed dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-uu.data b/bikeshed/spec-data/readonly/anchors/anchors-uu.data index 6590b54699..1f113b7445 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-uu.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-uu.data @@ -32,16 +32,6 @@ XRSession/restorePersistentAnchor(uuid) - uuid dfn -presentation-api -presentation-api -1 -current -https://w3c.github.io/presentation-api/#dfn-uuid - -1 -- -uuid -dfn webdriver2 webdriver 2 @@ -91,16 +81,6 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#uuid -1 -- -uuid -dfn -presentation-api -presentation-api -1 -snapshot -https://www.w3.org/TR/presentation-api/#dfn-uuid - 1 - uuid diff --git a/bikeshed/spec-data/readonly/anchors/anchors-uv.data b/bikeshed/spec-data/readonly/anchors/anchors-uv.data index 40bf7845de..671ad7052d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-uv.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-uv.data @@ -3,16 +3,6 @@ typedef webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#typedefdef-uvmentries -1 -1 -- -UvmEntries -typedef -webauthn-3 -webauthn -3 snapshot https://www.w3.org/TR/webauthn-3/#typedefdef-uvmentries 1 @@ -23,16 +13,6 @@ typedef webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#typedefdef-uvmentry -1 -1 -- -UvmEntry -typedef -webauthn-3 -webauthn -3 snapshot https://www.w3.org/TR/webauthn-3/#typedefdef-uvmentry 1 @@ -88,9 +68,32 @@ webauthn-3 webauthn 3 snapshot -https://www.w3.org/TR/webauthn-3/#uv +https://www.w3.org/TR/webauthn-3/#authdata-flags-uv 1 +authData/flags +- +uvInitialized +abstract-op +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#abstract-opdef-credential-record-uvinitialized +1 +1 +credential record +- +uvInitialized +abstract-op +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#abstract-opdef-credential-record-uvinitialized +1 +1 +credential record - uvacfg dfn @@ -119,28 +122,6 @@ dict-member webauthn-3 webauthn 3 -current -https://w3c.github.io/webauthn/#dom-authenticationextensionsclientinputs-uvm -1 -1 -AuthenticationExtensionsClientInputs -- -uvm -dict-member -webauthn-3 -webauthn -3 -current -https://w3c.github.io/webauthn/#dom-authenticationextensionsclientoutputs-uvm -1 -1 -AuthenticationExtensionsClientOutputs -- -uvm -dict-member -webauthn-3 -webauthn -3 snapshot https://www.w3.org/TR/webauthn-3/#dom-authenticationextensionsclientinputs-uvm 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-va.data b/bikeshed/spec-data/readonly/anchors/anchors-va.data index 90f398a1fe..bbdac0e79a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-va.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-va.data @@ -1,3 +1,25 @@ +"valid" +enum-value +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-adapter-state-valid +1 +1 +adapter/[[state]] +- +"valid" +enum-value +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-adapter-state-valid +1 +1 +adapter/[[state]] +- "validation" enum-value webgpu @@ -55,6 +77,17 @@ BitrateMode - "variable" enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderbitratemode-variable +1 +1 +VideoEncoderBitrateMode +- +"variable" +enum-value mediastream-recording mediastream-recording 1 @@ -64,6 +97,17 @@ https://www.w3.org/TR/mediastream-recording/#dom-bitratemode-variable 1 BitrateMode - +"variable" +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderbitratemode-variable +1 +1 +VideoEncoderBitrateMode +- :valid selector selectors-4 @@ -92,6 +136,26 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#valid-pseudo 1 +1 +- +<variance/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_variance + +1 +- +<variance/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_variance + 1 - VALIDATION_ERR @@ -111,17 +175,6 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#abstract-opdef-gpucomputepassdescriptor-valid-usage -1 -1 -GPUComputePassDescriptor -- -Valid Usage -abstract-op -webgpu -webgpu -1 -current https://gpuweb.github.io/gpuweb/#abstract-opdef-gpurenderpassdescriptor-valid-usage 1 1 @@ -133,17 +186,6 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#abstract-opdef-gpucomputepassdescriptor-valid-usage -1 -1 -GPUComputePassDescriptor -- -Valid Usage -abstract-op -webgpu -webgpu -1 -snapshot https://www.w3.org/TR/webgpu/#abstract-opdef-gpurenderpassdescriptor-valid-usage 1 1 @@ -209,6 +251,36 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-validate-the-encoder-state 1 1 - +Validate timestampWrites +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-timestampwrites +1 +1 +- +Validate timestampWrites +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-validate-timestampwrites +1 +1 +- +ValidateAndApplyPropertyDescriptor +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-validateandapplypropertydescriptor +1 +1 +- ValidateAndApplyPropertyDescriptor(O, P, extensible, Desc, current) abstract-op ecmascript @@ -229,7 +301,17 @@ https://w3c.github.io/webrtc-identity/#dom-validateassertioncallback 1 1 - -ValidateAtomicAccess(typedArray, requestIndex) +ValidateAtomicAccess +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccess +1 +1 +- +ValidateAtomicAccess(taRecord, requestIndex) abstract-op ecmascript ecmascript @@ -239,6 +321,36 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccess 1 1 - +ValidateAtomicAccessOnIntegerTypedArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccessonintegertypedarray +1 +1 +- +ValidateAtomicAccessOnIntegerTypedArray(typedArray, requestIndex, waitable) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccessonintegertypedarray +1 +1 +- +ValidateIntegerTypedArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-validateintegertypedarray +1 +1 +- ValidateIntegerTypedArray(typedArray, waitable) abstract-op ecmascript @@ -249,6 +361,16 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-validateintegertypeda 1 1 - +ValidateNonRevokedProxy +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-validatenonrevokedproxy +1 +1 +- ValidateNonRevokedProxy(proxy) abstract-op ecmascript @@ -259,7 +381,17 @@ https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#se 1 1 - -ValidateTypedArray(O) +ValidateTypedArray +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-validatetypedarray +1 +1 +- +ValidateTypedArray(O, order) abstract-op ecmascript ecmascript @@ -371,6 +503,16 @@ https://webbluetoothcg.github.io/web-bluetooth/#dictdef-valueeventinit 1 1 - +ValueOfReadEvent +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/memory-model.html#sec-valueofreadevent +1 +1 +- ValueOfReadEvent(execution, R) abstract-op ecmascript @@ -401,6 +543,28 @@ https://www.w3.org/TR/wasm-js-api-2/#enumdef-valuetype 1 1 - +[[valid]] +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-valid-slot +1 +1 +GPUObjectBase +- +[[valid]] +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpuobjectbase-valid-slot +1 +1 +GPUObjectBase +- [[value]] attribute gamepad @@ -545,13 +709,13 @@ https://dom.spec.whatwg.org/#staticrange-valid StaticRange - valid -dfn +abstract-op webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#valid - +https://gpuweb.github.io/gpuweb/#abstract-opdef-valid +1 1 - valid @@ -581,7 +745,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_valid +https://w3c.github.io/i18n-glossary/#dfn-valid 1 - @@ -597,31 +761,93 @@ https://w3c.github.io/rdf-semantics/spec/#dfn-valid - valid dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizerconfig-valid + +1 +SanitizerConfig +- +valid +dfn +sanitizer-api +sanitizer-api +1 +current +https://wicg.github.io/sanitizer-api/#sanitizernamelist-valid + +1 +SanitizerNameList +- +valid +dfn i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_valid +https://www.w3.org/TR/i18n-glossary/#dfn-valid 1 - valid dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-valid + +1 +- +valid +abstract-op webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#valid +https://www.w3.org/TR/webgpu/#abstract-opdef-valid +1 +1 +- +valid anchor function +dfn +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valid-anchor-function + +1 +- +valid anchor function +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valid-anchor-function 1 - -valid anchor query +valid anchor-size function dfn css-anchor-position-1 css-anchor-position 1 current -https://drafts.csswg.org/css-anchor-position-1/#valid-anchor-query +https://drafts.csswg.org/css-anchor-position-1/#valid-anchor-size-function + +1 +- +valid anchor-size function +dfn +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valid-anchor-size-function 1 - @@ -794,6 +1020,16 @@ css-color snapshot https://www.w3.org/TR/css-color-5/#valid-color 1 +1 +- +valid company identifier string +dfn +web-bluetooth +web-bluetooth +1 +current +https://webbluetoothcg.github.io/web-bluetooth/#valid-company-identifier-string + 1 - valid croptarget @@ -833,7 +1069,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#valid-css-property - +1 1 - valid custom element name @@ -868,7 +1104,7 @@ https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-stri - valid decimal monetary value dfn -payment-request-1.1 +payment-request payment-request 1 current @@ -878,11 +1114,31 @@ https://w3c.github.io/payment-request/#dfn-valid-decimal-monetary-value - valid decimal monetary value dfn -payment-request-1.1 payment-request +payment-request +1 +snapshot +https://www.w3.org/TR/payment-request/#dfn-valid-decimal-monetary-value + +1 +- +valid dimension +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#valid-dimension + +1 +- +valid dimension +dfn +webnn +webnn 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-valid-decimal-monetary-value +https://www.w3.org/TR/webnn/#valid-dimension 1 - @@ -906,20 +1162,40 @@ https://url.spec.whatwg.org/#valid-domain-string 1 1 - -valid duration string +valid dual-rumble effect dfn -html -html +gamepad +gamepad 1 current -https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-duration-string +https://w3c.github.io/gamepad/#dfn-valid-dual-rumble-effect 1 - -valid eagerness strings +valid dual-rumble effect dfn -speculation-rules -speculation-rules +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-valid-dual-rumble-effect + +1 +- +valid duration string +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-duration-string + +1 +- +valid eagerness strings +dfn +speculation-rules +speculation-rules 1 current https://wicg.github.io/nav-speculation/speculation-rules.html#valid-eagerness-strings @@ -928,11 +1204,21 @@ https://wicg.github.io/nav-speculation/speculation-rules.html#valid-eagerness-st - valid effect dfn -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-valid-effect +https://w3c.github.io/gamepad/#dfn-valid-effect + +1 +- +valid effect +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-valid-effect 1 - @@ -986,23 +1272,33 @@ https://fs.spec.whatwg.org/#valid-file-name 1 - -valid floating-point number +valid filtering id max bytes range dfn -html -html +private-aggregation-api +private-aggregation-api 1 current -https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number +https://patcg-individual-drafts.github.io/private-aggregation-api/#valid-filtering-id-max-bytes-range 1 - -valid fragment directive +valid filtering id max bytes range dfn -scroll-to-text-fragment -scroll-to-text-fragment +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#valid-filtering-id-max-bytes-range + +1 +- +valid floating-point number +dfn +html +html 1 current -https://wicg.github.io/scroll-to-text-fragment/#valid-fragment-directive +https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number 1 - @@ -1054,16 +1350,6 @@ url current https://url.spec.whatwg.org/#valid-host-string 1 -1 -- -valid idref -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-valid-idref - 1 - valid idref @@ -1222,17 +1508,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_valid -1 - -- -valid language tag -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_valid +https://w3c.github.io/i18n-glossary/#dfn-valid 1 - @@ -1242,37 +1518,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_valid -1 - -- -valid language tag -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_valid -1 - -- -valid language tags -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_valid -1 - -- -valid language tags -dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_valid +https://www.w3.org/TR/i18n-glossary/#dfn-valid 1 - @@ -1324,6 +1570,16 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-lowercase-simple-colour +1 +- +valid media mime type +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-valid-media-mime-type + 1 - valid media mime type @@ -1334,6 +1590,16 @@ media-capabilities current https://w3c.github.io/media-capabilities/#valid-media-mime-type +1 +- +valid media mime type +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-valid-media-mime-type + 1 - valid media mime type @@ -1574,6 +1840,26 @@ payment-method-manifest snapshot https://www.w3.org/TR/payment-method-manifest/#valid-payment-method-manifest 1 +1 +- +valid pointer +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#valid-pointer + +1 +- +valid pointer +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#valid-pointer + 1 - valid postscript name @@ -1604,6 +1890,77 @@ presentation-api snapshot https://www.w3.org/TR/presentation-api/#dfn-valid-presentation-identifier +1 +- +valid prompt types +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-valid-prompt-types + +1 +- +valid prompt types +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-valid-prompt-types + +1 +- +valid protocol value +dfn +web-smart-card +web-smart-card +1 +current +https://wicg.github.io/web-smart-card/#dfn-valid-protocol-value + +1 +SmartCardProtocol +- +valid reference +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#valid-reference + +1 +- +valid reference +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#valid-reference + +1 +- +valid restriction target +dfn +element-capture +element-capture +1 +current +https://screen-share.github.io/element-capture/#dfn-valid-restriction-target + +1 +- +valid shadow host name +dfn +dom +dom +1 +current +https://dom.spec.whatwg.org/#valid-shadow-host-name +1 1 - valid simple color @@ -1614,6 +1971,16 @@ html current https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-simple-colour +1 +- +valid source expiry range +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#valid-source-expiry-range + 1 - valid source size list @@ -1624,6 +1991,26 @@ html current https://html.spec.whatwg.org/multipage/images.html#valid-source-size-list +1 +- +valid source types +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-valid-source-types + +1 +- +valid source types +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-valid-source-types + 1 - valid style sheet @@ -1634,6 +2021,26 @@ css current https://drafts.csswg.org/css2/#valid-style-sheet +1 +- +valid style sheet +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet +1 +1 +- +valid style sheet +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet +1 1 - valid suffix code point @@ -1724,6 +2131,26 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#abstract-opdef-valid-to-use-with 1 +1 +- +valid trigger-rumble effect +dfn +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dfn-valid-trigger-rumble-effect + +1 +- +valid trigger-rumble effect +dfn +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-valid-trigger-rumble-effect + 1 - valid url potentially surrounded by spaces @@ -1906,6 +2333,17 @@ https://www.w3.org/TR/epub-33/#dfn-valid-relative-container-url-with-fragment-st 1 1 - +validValues +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-validvalues +1 +1 +PreferenceObject +- validate dfn dom @@ -1927,6 +2365,26 @@ https://fetch.spec.whatwg.org/#headers-validate 1 Headers - +validate +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-claim-validation +1 +1 +- +validate +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-claim-validation +1 +1 +- validate GPUColor shape abstract-op webgpu @@ -2007,27 +2465,57 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpuorigin3d-shape 1 1 - -validate a cssnumberish time +validate a background attributionsrc eligibility dfn -web-animations-2 -web-animations -2 +attribution-reporting-api +attribution-reporting-api +1 current -https://drafts.csswg.org/web-animations-2/#validate-a-cssnumberish-time +https://wicg.github.io/attribution-reporting-api/#validate-a-background-attributionsrc-eligibility 1 - -validate a partial response +validate a bucket name dfn -background-fetch -background-fetch +storage-buckets +storage-buckets 1 current -https://wicg.github.io/background-fetch/#validate-a-partial-response +https://wicg.github.io/storage-buckets/#validate-a-bucket-name 1 - -validate a payment method identifier +validate a cssnumberish time +dfn +web-animations-2 +web-animations +2 +current +https://drafts.csswg.org/web-animations-2/#validate-a-cssnumberish-time + +1 +- +validate a cssnumberish time +dfn +web-animations-2 +web-animations +2 +snapshot +https://www.w3.org/TR/web-animations-2/#validate-a-cssnumberish-time + +1 +- +validate a partial response +dfn +background-fetch +background-fetch +1 +current +https://wicg.github.io/background-fetch/#validate-a-partial-response + +1 +- +validate a payment method identifier dfn payment-method-id payment-method-id @@ -2075,6 +2563,16 @@ file-system-access current https://wicg.github.io/file-system-access/#validate-a-suffix +1 +- +validate a url macro +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#validate-a-url-macro + 1 - validate a url-based payment method identifier @@ -2095,6 +2593,36 @@ payment-method-id snapshot https://www.w3.org/TR/payment-method-id/#dfn-validate-a-url-based-payment-method-identifier 1 +1 +- +validate aggregatable key-values value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#validate-aggregatable-key-values-value + +1 +- +validate and convert additional bids +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#validate-and-convert-additional-bids + +1 +- +validate and convert auction ad config +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#validate-and-convert-auction-ad-config + 1 - validate and extract @@ -2189,6 +2717,26 @@ payment-method-manifest snapshot https://www.w3.org/TR/payment-method-manifest/#validate-and-parse-the-payment-method-manifest 1 +1 +- +validate buffer with descriptor +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#validate-buffer-with-descriptor + +1 +- +validate buffer with descriptor +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#validate-buffer-with-descriptor + 1 - validate capabilities @@ -2219,6 +2767,36 @@ web-nfc current https://w3c.github.io/web-nfc/#dfn-validate-external-type +1 +- +validate fetching response +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#validate-fetching-response + +1 +- +validate fetching response headers +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#validate-fetching-response-headers + +1 +- +validate fetching response mime and body +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#validate-fetching-response-mime-and-body + 1 - validate local type @@ -2231,23 +2809,35 @@ https://w3c.github.io/web-nfc/#dfn-validate-local-type 1 - -validate mlcontext +validate operand dfn webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#validate-mlcontext +https://webmachinelearning.github.io/webnn/#mlgraphbuilder-validate-operand 1 +MLGraphBuilder - -validate mlcontext +validate operand dfn webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#validate-mlcontext +https://www.w3.org/TR/webnn/#mlgraphbuilder-validate-operand + +1 +MLGraphBuilder +- +validate reporting metadata +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#validate-reporting-metadata 1 - @@ -2289,26 +2879,6 @@ webxrlayers snapshot https://www.w3.org/TR/webxrlayers-1/#validate-the-state-of-the-xrwebglsubimage-creation-function -1 -- -validate the string in context -dfn -trusted-types -trusted-types -1 -current -https://w3c.github.io/trusted-types/dist/spec/#dfn-validate-the-string-in-context -1 -1 -- -validate the string in context -dfn -trusted-types -trusted-types -1 -snapshot -https://www.w3.org/TR/trusted-types/#dfn-validate-the-string-in-context -1 1 - validate videoframeinit @@ -2385,25 +2955,27 @@ https://www.w3.org/TR/webrtc-identity/#dom-validateassertioncallback 1 - -validating GPUBufferDescriptor -abstract-op -webgpu -webgpu +validated +dfn +vc-data-integrity +vc-data-integrity 1 current -https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpubufferdescriptor -1 +https://w3c.github.io/vc-data-integrity/#dfn-validated + 1 +context validation result - -validating GPUBufferDescriptor -abstract-op -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#abstract-opdef-validating-gpubufferdescriptor +validateddocument +dfn +vc-data-integrity +vc-data-integrity 1 +current +https://w3c.github.io/vc-data-integrity/#dfn-validateddocument + 1 +context validation result - validating GPUDepthStencilState abstract-op @@ -2685,24 +3257,64 @@ https://www.w3.org/TR/webgpu/#abstract-opdef-validating-shader-binding 1 1 - +validating texture buffer copy +abstract-op +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-texture-buffer-copy +1 +1 +- +validating texture buffer copy +abstract-op +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#abstract-opdef-validating-texture-buffer-copy +1 +1 +- validating texture copy range -dfn +abstract-op webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#validating-texture-copy-range - +https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-texture-copy-range +1 1 - validating texture copy range -dfn +abstract-op webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#validating-texture-copy-range - +https://www.w3.org/TR/webgpu/#abstract-opdef-validating-texture-copy-range +1 +1 +- +validation +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-claim-validation +1 +1 +- +validation +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-claim-validation +1 1 - validation anchor @@ -2733,6 +3345,26 @@ url current https://url.spec.whatwg.org/#validation-error +1 +- +validation error +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-validation-errors + +1 +- +validation error +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-validation-errors + 1 - validation error @@ -2743,6 +3375,26 @@ webgpu snapshot https://www.w3.org/TR/webgpu/#abstract-opdef-generate-a-validation-error 1 +1 +- +validation errors +dfn +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-validation-errors + +1 +- +validation errors +dfn +pub-manifest +pub-manifest +1 +snapshot +https://www.w3.org/TR/pub-manifest/#dfn-validation-errors + 1 - validation message @@ -2842,6 +3494,26 @@ https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-elem 1 ElementInternals - +validity +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet +1 +1 +- +validity +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet +1 +1 +- validity states dfn html @@ -2874,6 +3546,16 @@ https://wicg.github.io/webpackage/loading.html#exchange-signature-validityurlbyt 1 exchange signature - +validtextdirective +dfn +scroll-to-text-fragment +scroll-to-text-fragment +1 +current +https://wicg.github.io/scroll-to-text-fragment/#validtextdirective + +1 +- valign element-attr html @@ -2991,6 +3673,17 @@ css-typed-om-1 css-typed-om 1 current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-cap-value-value +1 +1 +CSS/cap(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +current https://drafts.css-houdini.org/css-typed-om-1/#dom-css-ch-value-value 1 1 @@ -3453,10 +4146,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rem-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rcap-value-value 1 1 -CSS/rem(value) +CSS/rcap(value) - value argument @@ -3464,10 +4157,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rlh-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rch-value-value 1 1 -CSS/rlh(value) +CSS/rch(value) - value argument @@ -3475,10 +4168,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-s-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rem-value-value 1 1 -CSS/s(value) +CSS/rem(value) - value argument @@ -3486,10 +4179,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svb-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rex-value-value 1 1 -CSS/svb(value) +CSS/rex(value) - value argument @@ -3497,10 +4190,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svh-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-ric-value-value 1 1 -CSS/svh(value) +CSS/ric(value) - value argument @@ -3508,10 +4201,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svi-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-rlh-value-value 1 1 -CSS/svi(value) +CSS/rlh(value) - value argument @@ -3519,10 +4212,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svmax-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-s-value-value 1 1 -CSS/svmax(value) +CSS/s(value) - value argument @@ -3530,10 +4223,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svmin-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svb-value-value 1 1 -CSS/svmin(value) +CSS/svb(value) - value argument @@ -3541,10 +4234,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svw-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svh-value-value 1 1 -CSS/svw(value) +CSS/svh(value) - value argument @@ -3552,10 +4245,10 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-turn-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svi-value-value 1 1 -CSS/turn(value) +CSS/svi(value) - value argument @@ -3563,10 +4256,54 @@ css-typed-om-1 css-typed-om 1 current -https://drafts.css-houdini.org/css-typed-om-1/#dom-css-vb-value-value +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svmax-value-value 1 1 -CSS/vb(value) +CSS/svmax(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svmin-value-value +1 +1 +CSS/svmin(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-svw-value-value +1 +1 +CSS/svw(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-turn-value-value +1 +1 +CSS/turn(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +current +https://drafts.css-houdini.org/css-typed-om-1/#dom-css-vb-value-value +1 +1 +CSS/vb(value) - value argument @@ -4124,8 +4861,9 @@ html 1 current https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-value - 1 +1 +event handler - value dfn @@ -4162,6 +4900,28 @@ map - value dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-paextendedhistogramcontribution-value +1 +1 +PAExtendedHistogramContribution +- +value +dict-member +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#dom-pahistogramcontribution-value +1 +1 +PAHistogramContribution +- +value +dict-member streams streams 1 @@ -4272,6 +5032,30 @@ url url 1 current +https://url.spec.whatwg.org/#dom-urlsearchparams-delete-name-value-value +1 +1 +URLSearchParams/delete(name, value) +URLSearchParams/delete(name) +- +value +argument +url +url +1 +current +https://url.spec.whatwg.org/#dom-urlsearchparams-has-name-value-value +1 +1 +URLSearchParams/has(name, value) +URLSearchParams/has(name) +- +value +argument +url +url +1 +current https://url.spec.whatwg.org/#dom-urlsearchparams-set-name-value-value 1 1 @@ -4279,6 +5063,28 @@ URLSearchParams/set(name, value) - value dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#part-value + +1 +part +- +value +dfn +urlpattern +urlpattern +1 +current +https://urlpattern.spec.whatwg.org/#token-value + +1 +token +- +value +dfn dom-parsing dom-parsing 1 @@ -4389,6 +5195,17 @@ NavigationPreloadManager/setHeaderValue(value) - value dfn +service-workers +service-workers +1 +current +https://w3c.github.io/ServiceWorker/#race-response-value + +1 +race response +- +value +dfn epub-33 epub 1 @@ -4432,7 +5249,7 @@ fingerprint - value dict-member -payment-request-1.1 +payment-request payment-request 1 current @@ -4484,6 +5301,16 @@ https://w3c.github.io/trusted-types/dist/spec/#dom-trustedtypepolicyfactory-issc 1 1 TrustedTypePolicyFactory/isScriptURL(value) +- +value +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-value + + - value dfn @@ -4760,11 +5587,10 @@ webnn webnn 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-value-type-value +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-constant-type-value-value 1 1 -MLGraphBuilder/constant(value, type) -MLGraphBuilder/constant(value) +MLGraphBuilder/constant(type, value) - value dict-member @@ -4790,6 +5616,50 @@ aggregatable contribution - value dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-json-key-value + +1 +aggregatable-debug-reporting JSON key +- +value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-key-value-value + +1 +aggregatable key value +- +value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#event-level-trigger-configuration-value + +1 +event-level trigger configuration +- +value +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-value + +1 +trigger-registration JSON key +- +value +dfn cookie-store cookie-store 1 @@ -4834,17 +5704,6 @@ CookieStore/set(name, value) - value argument -custom-state-pseudo-class -custom-state-pseudo-class -1 -current -https://wicg.github.io/custom-state-pseudo-class/#dom-customstateset-add-value-value -1 -1 -CustomStateSet/add(value) -- -value -argument datacue datacue 1 @@ -4880,130 +5739,305 @@ https://wicg.github.io/document-policy/#policy-configuration-value policy configuration - value -attribute -layout-instability -layout-instability +dfn +fenced-frame +fenced-frame 1 current -https://wicg.github.io/layout-instability/#dom-layoutshift-value +https://wicg.github.io/fenced-frame/#content-size-value 1 1 -LayoutShift +content size - value dfn -urlpattern -urlpattern +fenced-frame +fenced-frame 1 current -https://wicg.github.io/urlpattern/#part-value - +https://wicg.github.io/fenced-frame/#effective-enabled-permissions-value 1 -part +1 +effective enabled permissions - value dfn -urlpattern -urlpattern +fenced-frame +fenced-frame 1 current -https://wicg.github.io/urlpattern/#token-value - +https://wicg.github.io/fenced-frame/#effective-sandbox-flags-value 1 -token +1 +effective sandbox flags - value -dict-member -webusb -webusb +dfn +fenced-frame +fenced-frame 1 current -https://wicg.github.io/webusb/#dom-usbcontroltransferparameters-value +https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-value 1 1 -USBControlTransferParameters +exfiltration budget metadata - value dfn -csp3 -csp -3 -snapshot -https://www.w3.org/TR/CSP3/#directive-value +fenced-frame +fenced-frame 1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-value 1 -directive +1 +fenced frame reporting metadata - value dfn -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#cursor-value - +fenced-frame +fenced-frame 1 -cursor +current +https://wicg.github.io/fenced-frame/#interest-group-descriptor-value +1 +1 +interest group descriptor - value -argument -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#dom-idbcursor-update-value-value +dfn +fenced-frame +fenced-frame 1 +current +https://wicg.github.io/fenced-frame/#mapped-url-value 1 -IDBCursor/update(value) +1 +mapped url - value -attribute -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#dom-idbcursorwithvalue-value +dfn +fenced-frame +fenced-frame 1 +current +https://wicg.github.io/fenced-frame/#nested-configs-value 1 -IDBCursorWithValue +1 +nested configs - value -argument -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#dom-idbkeyrange-only-value-value +attribute +layout-instability +layout-instability 1 +current +https://wicg.github.io/layout-instability/#dom-layoutshift-value 1 -IDBKeyRange/only(value) +1 +LayoutShift - value -argument -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#dom-idbobjectstore-add-value-key-value +dfn +scroll-to-text-fragment +scroll-to-text-fragment 1 +current +https://wicg.github.io/scroll-to-text-fragment/#directive-state-value + 1 -IDBObjectStore/add(value, key) -IDBObjectStore/add(value) +directive state - value argument -indexeddb-3 -indexeddb -3 -snapshot -https://www.w3.org/TR/IndexedDB-3/#dom-idbobjectstore-put-value-key-value +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-append-key-value-value 1 1 -IDBObjectStore/put(value, key) -IDBObjectStore/put(value) +SharedStorage/append(key, value) - value -dfn +argument +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-set-key-value-options-value +1 +1 +SharedStorage/set(key, value, options) +SharedStorage/set(key, value) +- +value +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#value-struct-value + +1 +value struct +- +value +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#bid-with-currency-value + +1 +bid with currency +- +value +argument +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-interestgroupreportingscriptrunnerglobalscope-registeradmacro-name-value-value +1 +1 +InterestGroupReportingScriptRunnerGlobalScope/registerAdMacro(name, value) +- +value +argument +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-requestoverride-value-value +1 +1 +PreferenceObject/requestOverride(value) +- +value +attribute +web-preferences-api +web-preferences-api +1 +current +https://wicg.github.io/web-preferences-api/#dom-preferenceobject-value +1 +1 +PreferenceObject +- +value +dict-member +webusb +webusb +1 +current +https://wicg.github.io/webusb/#dom-usbcontroltransferparameters-value +1 +1 +USBControlTransferParameters +- +value +dfn +csp3 +csp +3 +snapshot +https://www.w3.org/TR/CSP3/#directive-value +1 +1 +directive +- +value +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#x21 +1 +1 +- +value +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#x21 +1 +1 +- +value +dfn +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#cursor-value + +1 +cursor +- +value +argument +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#dom-idbcursor-update-value-value +1 +1 +IDBCursor/update(value) +- +value +attribute +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#dom-idbcursorwithvalue-value +1 +1 +IDBCursorWithValue +- +value +argument +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#dom-idbkeyrange-only-value-value +1 +1 +IDBKeyRange/only(value) +- +value +argument +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#dom-idbobjectstore-add-value-key-value +1 +1 +IDBObjectStore/add(value, key) +IDBObjectStore/add(value) +- +value +argument +indexeddb-3 +indexeddb +3 +snapshot +https://www.w3.org/TR/IndexedDB-3/#dom-idbobjectstore-put-value-key-value +1 +1 +IDBObjectStore/put(value, key) +IDBObjectStore/put(value) +- +value +dfn indexeddb-3 indexeddb 3 @@ -5135,6 +6169,17 @@ css-typed-om-1 css-typed-om 1 snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cap-value-value +1 +1 +CSS/cap(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot https://www.w3.org/TR/css-typed-om-1/#dom-css-ch-value-value 1 1 @@ -5157,6 +6202,72 @@ css-typed-om-1 css-typed-om 1 snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqb-value-value +1 +1 +CSS/cqb(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqh-value-value +1 +1 +CSS/cqh(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqi-value-value +1 +1 +CSS/cqi(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqmax-value-value +1 +1 +CSS/cqmax(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqmin-value-value +1 +1 +CSS/cqmin(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-cqw-value-value +1 +1 +CSS/cqw(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot https://www.w3.org/TR/css-typed-om-1/#dom-css-deg-value-value 1 1 @@ -5201,6 +6312,72 @@ css-typed-om-1 css-typed-om 1 snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvb-value-value +1 +1 +CSS/dvb(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvh-value-value +1 +1 +CSS/dvh(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvi-value-value +1 +1 +CSS/dvi(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvmax-value-value +1 +1 +CSS/dvmax(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvmin-value-value +1 +1 +CSS/dvmin(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-dvw-value-value +1 +1 +CSS/dvw(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot https://www.w3.org/TR/css-typed-om-1/#dom-css-em-value-value 1 1 @@ -5300,6 +6477,72 @@ css-typed-om-1 css-typed-om 1 snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvb-value-value +1 +1 +CSS/lvb(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvh-value-value +1 +1 +CSS/lvh(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvi-value-value +1 +1 +CSS/lvi(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvmax-value-value +1 +1 +CSS/lvmax(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvmin-value-value +1 +1 +CSS/lvmin(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-lvw-value-value +1 +1 +CSS/lvw(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot https://www.w3.org/TR/css-typed-om-1/#dom-css-mm-value-value 1 1 @@ -5399,10 +6642,120 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-css-rem-value-value +https://www.w3.org/TR/css-typed-om-1/#dom-css-rcap-value-value +1 +1 +CSS/rcap(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rch-value-value +1 +1 +CSS/rch(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rem-value-value +1 +1 +CSS/rem(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rex-value-value +1 +1 +CSS/rex(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-ric-value-value +1 +1 +CSS/ric(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-rlh-value-value +1 +1 +CSS/rlh(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-s-value-value +1 +1 +CSS/s(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svb-value-value +1 +1 +CSS/svb(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svh-value-value +1 +1 +CSS/svh(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svi-value-value +1 +1 +CSS/svi(value) +- +value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-css-svmax-value-value 1 1 -CSS/rem(value) +CSS/svmax(value) - value argument @@ -5410,10 +6763,10 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-css-rlh-value-value +https://www.w3.org/TR/css-typed-om-1/#dom-css-svmin-value-value 1 1 -CSS/rlh(value) +CSS/svmin(value) - value argument @@ -5421,10 +6774,10 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-css-s-value-value +https://www.w3.org/TR/css-typed-om-1/#dom-css-svw-value-value 1 1 -CSS/s(value) +CSS/svw(value) - value argument @@ -5513,6 +6866,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-csskeywordvalue-csskeywordvalue-value- 1 1 CSSKeywordValue/CSSKeywordValue(value) +CSSKeywordValue/constructor(value) - value attribute @@ -5526,6 +6880,29 @@ https://www.w3.org/TR/css-typed-om-1/#dom-csskeywordvalue-value CSSKeywordValue - value +argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-cssmathclamp-lower-value-upper-value +1 +1 +CSSMathClamp/CSSMathClamp(lower, value, upper) +CSSMathClamp/constructor(lower, value, upper) +- +value +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-cssmathclamp-value +1 +1 +CSSMathClamp +- +value attribute css-typed-om-1 css-typed-om @@ -5557,6 +6934,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-equals-value-value 1 1 CSSNumericValue/equals(...value) +CSSNumericValue/equals() - value argument @@ -5568,6 +6946,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssunitvalue-cssunitvalue-value-unit-v 1 1 CSSUnitValue/CSSUnitValue(value, unit) +CSSUnitValue/constructor(value, unit) - value attribute @@ -5587,7 +6966,7 @@ css-typed-om 1 snapshot https://www.w3.org/TR/css-typed-om-1/#sum-value-value - +1 1 sum value - @@ -5648,11 +7027,11 @@ RdfLiteral - value dict-member -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount-value +https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount-value 1 1 PaymentCurrencyAmount @@ -5711,6 +7090,16 @@ https://www.w3.org/TR/trusted-types/#dom-trustedtypepolicyfactory-isscripturl-va 1 1 TrustedTypePolicyFactory/isScriptURL(value) +- +value +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-value + + - value attribute @@ -5855,11 +7244,10 @@ webnn webnn 1 snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-value-type-value +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-type-value-value 1 1 -MLGraphBuilder/constant(value, type) -MLGraphBuilder/constant(value) +MLGraphBuilder/constant(type, value) - value dict-member @@ -6061,6 +7449,16 @@ https://www.w3.org/TR/css-values-4/#css-value-definition-syntax 1 CSS - +value format record +dfn +tc39-temporal +tc39-temporal +1 +current +https://tc39.es/proposal-temporal/#datetimeformat-value-format-record +1 +1 +- value interpolation dfn css-values-4 @@ -6191,6 +7589,37 @@ https://w3c.github.io/rdf-semantics/spec/#dfn-value-space 1 - +value space +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-value-space + +1 +- +value space +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-value-space + +1 +- +value struct +dfn +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#entry-value-struct + +1 +entry +- value type dfn json-ld11 @@ -6472,25 +7901,36 @@ https://www.w3.org/TR/WGSL/#value_return 1 - -value_return_i +value_return_i_contents dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#value_return_i +https://gpuweb.github.io/gpuweb/wgsl/#value_return_i_contents 1 - -value_return_i +value_return_i_contents dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#value_return_i +https://www.w3.org/TR/WGSL/#value_return_i_contents + +1 +- +value_sum +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#summary-operator-value_sum 1 +summary operator - values attribute @@ -6719,6 +8159,17 @@ https://w3c.github.io/IndexedDB/#index-values index - values +dfn +badging +badging +1 +current +https://w3c.github.io/badging/#dfn-values + +1 +badge +- +values argument webaudio webaudio @@ -6742,6 +8193,50 @@ AudioParam/setValueCurveAtTime(values, startTime, duration) - values dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#aggregatable-values-configuration-values + +1 +aggregatable values configuration +- +values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#attribution-scopes-values + +1 +attribution scopes +- +values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#source-registration-json-key-values + +1 +source-registration JSON key +- +values +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#trigger-registration-json-key-values + +1 +trigger-registration JSON key +- +values +dfn indexeddb-3 indexeddb 3 @@ -6752,6 +8247,17 @@ https://www.w3.org/TR/IndexedDB-3/#index-values index - values +dfn +badging +badging +1 +snapshot +https://www.w3.org/TR/badging/#dfn-values + +1 +badge +- +values argument css-fonts-4 css-fonts @@ -6816,6 +8322,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-add-values-values 1 1 CSSNumericValue/add(...values) +CSSNumericValue/add() - values argument @@ -6827,6 +8334,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-div-values-values 1 1 CSSNumericValue/div(...values) +CSSNumericValue/div() - values argument @@ -6838,6 +8346,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-max-values-values 1 1 CSSNumericValue/max(...values) +CSSNumericValue/max() - values argument @@ -6849,6 +8358,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-min-values-values 1 1 CSSNumericValue/min(...values) +CSSNumericValue/min() - values argument @@ -6860,6 +8370,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-mul-values-values 1 1 CSSNumericValue/mul(...values) +CSSNumericValue/mul() - values argument @@ -6871,6 +8382,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssnumericvalue-sub-values-values 1 1 CSSNumericValue/sub(...values) +CSSNumericValue/sub() - values argument @@ -6882,6 +8394,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-append-property-value 1 1 StylePropertyMap/append(property, ...values) +StylePropertyMap/append(property) - values argument @@ -6893,6 +8406,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-stylepropertymap-set-property-values-v 1 1 StylePropertyMap/set(property, ...values) +StylePropertyMap/set(property) - values attribute @@ -6944,7 +8458,7 @@ ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.values +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.values 1 1 %TypedArray% @@ -7132,6 +8646,17 @@ https://w3c.github.io/mediacapture-record/#dom-bitratemode-variable BitrateMode - variable +enum-value +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#dom-videoencoderbitratemode-variable +1 +1 +VideoEncoderBitrateMode +- +variable dfn wgsl wgsl @@ -7151,6 +8676,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssvariablereferencevalue-cssvariabler 1 1 CSSVariableReferenceValue/CSSVariableReferenceValue(variable, fallback) +CSSVariableReferenceValue/constructor(variable, fallback) +CSSVariableReferenceValue/CSSVariableReferenceValue(variable) +CSSVariableReferenceValue/constructor(variable) - variable attribute @@ -7174,6 +8702,17 @@ https://www.w3.org/TR/mediastream-recording/#dom-bitratemode-variable 1 BitrateMode - +variable +enum-value +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#dom-videoencoderbitratemode-variable +1 +1 +VideoEncoderBitrateMode +- variable declaration dfn wgsl @@ -7248,68 +8787,46 @@ https://www.w3.org/TR/WGSL/#syntax-variable_decl 1 syntax - -variable_qualifier +variable_or_value_statement dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-variable_qualifier - -1 -syntax -- -variable_qualifier -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-variable_qualifier - -1 -syntax -- -variable_statement -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-variable_statement +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-variable_or_value_statement 1 recursive descent syntax - -variable_statement +variable_or_value_statement dfn wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-variable_statement +https://gpuweb.github.io/gpuweb/wgsl/#syntax-variable_or_value_statement 1 syntax - -variable_statement +variable_or_value_statement dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-variable_statement +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-variable_or_value_statement 1 recursive descent syntax - -variable_statement +variable_or_value_statement dfn wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#syntax-variable_statement +https://www.w3.org/TR/WGSL/#syntax-variable_or_value_statement 1 syntax @@ -7389,7 +8906,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-batchnormalizatio 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) - variance argument @@ -7401,29 +8917,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-va 1 1 MLGraphBuilder/batchNormalization(input, mean, variance, options) -MLGraphBuilder/batchNormalization(input, mean, variance) -- -variant -attribute -css-font-loading-3 -css-font-loading -3 -current -https://drafts.csswg.org/css-font-loading-3/#dom-fontface-variant -1 -1 -FontFace -- -variant -dict-member -css-font-loading-3 -css-font-loading -3 -current -https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-variant -1 -1 -FontFaceDescriptors - variant attribute @@ -7512,6 +9005,26 @@ https://wicg.github.io/webpackage/loading.html#element-attrdef-link-variants 1 1 link +- +variation selector +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-variation-selector +1 + +- +variation selector +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-variation-selector +1 + - variationSettings attribute @@ -7535,6 +9048,28 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-variationse 1 FontFaceDescriptors - +variationSettings +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-variationsettings +1 +1 +FontFace +- +variationSettings +dict-member +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontfacedescriptors-variationsettings +1 +1 +FontFaceDescriptors +- variations attribute css-font-loading-3 @@ -7546,3 +9081,36 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontface-variations 1 FontFace - +variations +attribute +css-font-loading-3 +css-font-loading +3 +snapshot +https://www.w3.org/TR/css-font-loading-3/#dom-fontface-variations +1 +1 +FontFace +- +vary on key order +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#url-search-variance-vary-on-key-order + +1 +URL search variance +- +vary params +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#url-search-variance-vary-params + +1 +URL search variance +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vb.data b/bikeshed/spec-data/readonly/anchors/anchors-vb.data index 05dc20826f..e7234e9e8f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-vb.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-vb.data @@ -4,7 +4,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-vb +https://drafts.csswg.org/css-values-4/#vb 1 1 <length> @@ -15,7 +15,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-vb +https://www.w3.org/TR/css-values-4/#vb 1 1 <length> diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ve.data b/bikeshed/spec-data/readonly/anchors/anchors-ve.data index c39af33ff9..2eec4e93a0 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ve.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ve.data @@ -65,25 +65,14 @@ GPUVertexStepMode - "vertical" enum-value -scroll-animations-1 -scroll-animations +webxr-plane-detection +webxr-plane-detection 1 current -https://drafts.csswg.org/scroll-animations-1/#dom-scrollaxis-vertical +https://immersive-web.github.io/real-world-geometry/plane-detection.html#dom-xrplaneorientation-vertical 1 1 -ScrollAxis -- -"vertical" -enum-value -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#dom-scrollaxis-vertical -1 -1 -ScrollAxis +XRPlaneOrientation - "very-low" enum-value @@ -129,6 +118,46 @@ https://www.w3.org/TR/css-logical-1/#valdef-logical-page-selector-verso 1 logical-page-selector - +<vector/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_vector + +1 +- +<vector/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_vector + +1 +- +<vectorproduct/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_vectorproduct + +1 +- +<vectorproduct/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_vectorproduct + +1 +- VERTEX const webgpu @@ -238,28 +267,6 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-vertex_buffers-slot 1 GPURenderCommandsMixin - -vec2 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-vec2 - -1 -syntax_kw -- -vec2 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-vec2 - -1 -syntax_kw -- vec2f dfn wgsl @@ -340,28 +347,6 @@ https://www.w3.org/TR/WGSL/#vec2u 1 - -vec3 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-vec3 - -1 -syntax_kw -- -vec3 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-vec3 - -1 -syntax_kw -- vec3f dfn wgsl @@ -442,28 +427,6 @@ https://www.w3.org/TR/WGSL/#vec3u 1 - -vec4 -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax_kw-vec4 - -1 -syntax_kw -- -vec4 -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax_kw-vec4 - -1 -syntax_kw -- vec4f dfn wgsl @@ -544,50 +507,6 @@ https://www.w3.org/TR/WGSL/#vec4u 1 - -vec_prefix -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-vec_prefix - -1 -recursive descent syntax -- -vec_prefix -dfn -wgsl -wgsl -1 -current -https://gpuweb.github.io/gpuweb/wgsl/#syntax-vec_prefix - -1 -syntax -- -vec_prefix -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#recursive-descent-syntax-vec_prefix - -1 -recursive descent syntax -- -vec_prefix -dfn -wgsl -wgsl -1 -snapshot -https://www.w3.org/TR/WGSL/#syntax-vec_prefix - -1 -syntax -- vector dfn wgsl @@ -853,81 +772,585 @@ dfn fido-v2.1 fido 1 -current -https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#authconfig-vendorcommandid - +current +https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#authconfig-vendorcommandid + +1 +authConfig +- +vendorprototypeconfigcommands +dfn +fido-v2.1 +fido +1 +current +https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#getinfo-vendorprototypeconfigcommands + +1 +getInfo +- +verbose debug data +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#verbose-debug-data + +1 +- +verbose debug report +dfn +attribution-reporting-api +attribution-reporting-api +1 +current +https://wicg.github.io/attribution-reporting-api/#verbose-debug-report + +1 +- +verifiability +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verify +1 +1 +- +verifiability +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verify +1 +1 +- +verifiable +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verify +1 +1 +- +verifiable +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verify +1 +1 +- +verifiable credential +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiable-credential +1 +1 +- +verifiable credential +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiable-credential +1 +1 +- +verifiable credential graph +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiable-credential-graph +1 +1 +- +verifiable credential graph +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiable-credential-graph +1 +1 +- +verifiable data registries +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiable-data-registries +1 +1 +- +verifiable data registries +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiable-data-registries +1 +1 +- +verifiable data registry +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiable-data-registries +1 +1 +- +verifiable data registry +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiable-data-registries +1 +1 +- +verifiable presentation +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiable-presentation +1 +1 +- +verifiable presentation +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiable-presentation +1 +1 +- +verifiable presentation graph +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiable-presentation-graph + +1 +- +verifiable presentation graph +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiable-presentation-graph + +1 +- +verifiablecredentialgraph +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifiablecredentialgraph +1 +1 +- +verifiablecredentialgraph +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifiablecredentialgraph +1 +1 +- +verification +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verify +1 +1 +- +verification +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verify +1 +1 +- +verification material +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verification-material + +1 +- +verification material +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verification-material + +1 +- +verification method +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verification-method +1 + +- +verification method +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verification-method +1 + +- +verification procedure +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#verification-procedure + +1 +- +verification procedure +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#verification-procedure + +1 +- +verification procedure inputs +dfn +webauthn-3 +webauthn +3 +current +https://w3c.github.io/webauthn/#verification-procedure-inputs + +1 +- +verification procedure inputs +dfn +webauthn-3 +webauthn +3 +snapshot +https://www.w3.org/TR/webauthn-3/#verification-procedure-inputs + +1 +- +verification result +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verification-result + +1 +- +verification result +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verification-result + +1 +- +verified +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verified + +1 +- +verified +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verified-0 + +1 +verification result +- +verified +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verify +1 +1 +- +verified +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verified + +1 +- +verified +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verified-0 + +1 +verification result +- +verified +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verify +1 +1 +- +verified display name +dfn +openscreenprotocol +openscreenprotocol +1 +current +https://w3c.github.io/openscreenprotocol/#verified-display-name + +1 +- +verified display name +dfn +openscreenprotocol +openscreenprotocol +1 +snapshot +https://www.w3.org/TR/openscreenprotocol/#verified-display-name + +1 +- +verifieddocument +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verifieddocument + +1 +- +verifieddocument +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verifieddocument-0 + +1 +verification result +- +verifieddocument +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verifieddocument + +1 +- +verifieddocument +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verifieddocument-0 + +1 +verification result +- +verifier +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verifier + + +- +verifier +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifier +1 +1 +- +verifier +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verifier + + +- +verifier +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifier +1 1 -authConfig - -vendorprototypeconfigcommands +verifier's dfn -fido-v2.1 -fido +vc-data-integrity +vc-data-integrity 1 current -https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#getinfo-vendorprototypeconfigcommands +https://w3c.github.io/vc-data-integrity/#dfn-verifier + -1 -getInfo - -verification procedure +verifier's dfn -webauthn-3 -webauthn -3 +vc-data-model-2.0 +vc-data-model +1 current -https://w3c.github.io/webauthn/#verification-procedure - +https://w3c.github.io/vc-data-model/#dfn-verifier +1 1 - -verification procedure +verifier's dfn -webauthn-3 -webauthn -3 +vc-data-integrity +vc-data-integrity +1 snapshot -https://www.w3.org/TR/webauthn-3/#verification-procedure +https://www.w3.org/TR/vc-data-integrity/#dfn-verifier -1 -- -verification procedure inputs -dfn -webauthn-3 -webauthn -3 -current -https://w3c.github.io/webauthn/#verification-procedure-inputs -1 - -verification procedure inputs +verifier's dfn -webauthn-3 -webauthn -3 +vc-data-model-2.0 +vc-data-model +1 snapshot -https://www.w3.org/TR/webauthn-3/#verification-procedure-inputs - +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifier +1 1 - -verified display name +verifiers dfn -openscreenprotocol -openscreenprotocol +vc-data-integrity +vc-data-integrity 1 current -https://w3c.github.io/openscreenprotocol/#verified-display-name +https://w3c.github.io/vc-data-integrity/#dfn-verifier + +- +verifiers +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verifier +1 1 - -verified display name +verifiers dfn -openscreenprotocol -openscreenprotocol +vc-data-integrity +vc-data-integrity 1 snapshot -https://www.w3.org/TR/openscreenprotocol/#verified-display-name +https://www.w3.org/TR/vc-data-integrity/#dfn-verifier + +- +verifiers +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verifier +1 1 - verify @@ -942,6 +1365,16 @@ https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticato pinUvAuthProtocol - verify +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verify +1 +1 +- +verify enum-value webcryptoapi webcryptoapi @@ -959,6 +1392,16 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-verify + +1 +- +verify +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verify 1 1 - @@ -1094,27 +1537,35 @@ https://www.w3.org/TR/webcodecs/#videoframe-verify-rect-offset-alignment 1 VideoFrame - -verify rect size alignment +verify router condition dfn -webcodecs -webcodecs +service-workers +service-workers 1 current -https://w3c.github.io/webcodecs/#videoframe-verify-rect-size-alignment +https://w3c.github.io/ServiceWorker/#verify-router-condition 1 -VideoFrame - -verify rect size alignment +verify value category dfn -webcodecs -webcodecs +pub-manifest +pub-manifest +1 +current +https://w3c.github.io/pub-manifest/#dfn-verify-value-category + +1 +- +verify value category +dfn +pub-manifest +pub-manifest 1 snapshot -https://www.w3.org/TR/webcodecs/#videoframe-verify-rect-size-alignment +https://www.w3.org/TR/pub-manifest/#dfn-verify-value-category 1 -VideoFrame - verify() method @@ -1138,6 +1589,26 @@ https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-verify 1 SubtleCrypto - +verifying +dfn +vc-data-model-2.0 +vc-data-model +1 +current +https://w3c.github.io/vc-data-model/#dfn-verify +1 +1 +- +verifying +dfn +vc-data-model-2.0 +vc-data-model +1 +snapshot +https://www.w3.org/TR/vc-data-model-2.0/#dfn-verify +1 +1 +- verifying a miniapp zip container dfn miniapp-packaging @@ -1156,6 +1627,36 @@ miniapp-packaging snapshot https://www.w3.org/TR/miniapp-packaging/#dfn-verifying-a-miniapp-zip-container +1 +- +verifyproof +dfn +vc-data-integrity +vc-data-integrity +1 +current +https://w3c.github.io/vc-data-integrity/#dfn-verifyproof + +1 +- +verifyproof +dfn +vc-data-integrity +vc-data-integrity +1 +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-verifyproof + +1 +- +version +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#version + 1 - version @@ -1182,6 +1683,38 @@ HTMLHtmlElement - version dfn +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#browsing-topics-types-version + +1 +browsing topics types +- +version +dict-member +topics +topics +1 +current +https://patcg-individual-drafts.github.io/topics/#dom-browsingtopic-version +1 +1 +BrowsingTopic +- +version +dfn +sourcemap +sourcemap +1 +current +https://tc39.es/source-map/#version + +1 +- +version +dfn indexeddb-3 indexeddb 3 @@ -1281,6 +1814,17 @@ installed app - version dict-member +trust-token-api +trust-token-api +1 +current +https://wicg.github.io/trust-token-api/#dom-privatetoken-version +1 +1 +PrivateToken +- +version +dict-member ua-client-hints ua-client-hints 1 @@ -1356,6 +1900,17 @@ https://www.w3.org/TR/miniapp-manifest/#dfn-version 1 - +version +attribute +webmidi +webmidi +1 +snapshot +https://www.w3.org/TR/webmidi/#dom-midiport-version +1 +1 +MIDIPort +- version resource dfn miniapp-manifest @@ -1645,6 +2200,50 @@ https://www.w3.org/TR/webgpu/#dom-gpurendercommandsmixin-draw-vertexcount-instan 1 GPURenderCommandsMixin/draw(vertexCount, instanceCount, firstVertex, firstInstance) - +vertex_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-vertex_attr + +1 +recursive descent syntax +- +vertex_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-vertex_attr + +1 +syntax +- +vertex_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-vertex_attr + +1 +recursive descent syntax +- +vertex_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-vertex_attr + +1 +syntax +- vertex_index dfn wgsl @@ -1668,19 +2267,6 @@ https://www.w3.org/TR/WGSL/#built-in-values-vertex_index built-in values - vertical -value -scroll-animations-1 -scroll-animations -1 -current -https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-vertical -1 -1 -scroll() -scroll-timeline-axis -view-timeline-axis -- -vertical attribute webvtt1 webvtt @@ -1692,19 +2278,6 @@ https://w3c.github.io/webvtt/#dom-vttcue-vertical VTTCue - vertical -value -scroll-animations-1 -scroll-animations -1 -snapshot -https://www.w3.org/TR/scroll-animations-1/#valdef-scroll-vertical -1 -1 -scroll() -scroll-timeline-axis -view-timeline-axis -- -vertical attribute webvtt1 webvtt @@ -1841,9 +2414,21 @@ css-backgrounds-3 css-backgrounds 3 current -https://drafts.csswg.org/css-backgrounds-3/#vertical-offset - +https://drafts.csswg.org/css-backgrounds-3/#box-shadow-vertical-offset +1 +1 +box-shadow +- +vertical offset +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-offset-vertical-offset 1 +1 +box-shadow-offset - vertical offset dfn @@ -1851,9 +2436,10 @@ css-backgrounds-3 css-backgrounds 3 snapshot -https://www.w3.org/TR/css-backgrounds-3/#vertical-offset - +https://www.w3.org/TR/css-backgrounds-3/#box-shadow-vertical-offset 1 +1 +box-shadow - vertical script dfn @@ -1933,6 +2519,16 @@ css-writing-modes current https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode 1 +1 +- +vertical writing mode +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/rendering.html#vertical-writing-mode + 1 - vertical writing mode @@ -1976,6 +2572,26 @@ https://drafts.csswg.org/css2/#propdef-vertical-align 1 - vertical-align +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align +1 +1 +- +vertical-align +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align +1 +1 +- +vertical-align dfn css22 css @@ -2189,6 +2805,28 @@ https://www.w3.org/TR/mediaqueries-5/#descdef-media-vertical-viewport-segments 1 @media - +vertices +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmeshblock-vertices +1 +1 +XRMeshBlock +- +vertices +attribute +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#dom-xrmesh-vertices +1 +1 +XRMesh +- very-low enum-value webrtc-priority diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vh.data b/bikeshed/spec-data/readonly/anchors/anchors-vh.data index 4eba72352d..261068a062 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-vh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-vh.data @@ -15,7 +15,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-vh +https://drafts.csswg.org/css-values-4/#vh 1 1 <length> @@ -37,7 +37,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-vh +https://www.w3.org/TR/css-values-4/#vh 1 1 <length> diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vi.data b/bikeshed/spec-data/readonly/anchors/anchors-vi.data index 79f9db69c4..b5f5deaa06 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-vi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-vi.data @@ -1,13 +1,3 @@ -"vibration" actuator type -dfn -gamepad-extensions -gamepad-extensions -1 -current -https://w3c.github.io/gamepad/extensions.html#dfn-vibration-actuator-type - -1 -- "video" enum-value fetch @@ -178,6 +168,26 @@ current https://drafts.csswg.org/css2/#visual-media-group +- +'visual' media group +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/media.html#visual-media-group +1 +1 +- +'visual' media group +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/media.html#visual-media-group +1 +1 - ::view-transition selector @@ -199,83 +209,83 @@ https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition 1 1 - -::view-transition-group( <pt-name-selector> ) +::view-transition-group() selector css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-group-pt-name-selector +https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-group 1 1 - -::view-transition-group( <pt-name-selector> ) +::view-transition-group() selector css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-group-pt-name-selector +https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-group 1 1 - -::view-transition-image-pair( <pt-name-selector> ) +::view-transition-image-pair() selector css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-image-pair-pt-name-selector +https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-image-pair 1 1 - -::view-transition-image-pair( <pt-name-selector> ) +::view-transition-image-pair() selector css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-image-pair-pt-name-selector +https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-image-pair 1 1 - -::view-transition-new( <pt-name-selector> ) +::view-transition-new() selector css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-new-pt-name-selector +https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-new 1 1 - -::view-transition-new( <pt-name-selector> ) +::view-transition-new() selector css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-new-pt-name-selector +https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-new 1 1 - -::view-transition-old( <pt-name-selector> ) +::view-transition-old() selector css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-old-pt-name-selector +https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-old 1 1 - -::view-transition-old( <pt-name-selector> ) +::view-transition-old() selector css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-old-pt-name-selector +https://www.w3.org/TR/css-view-transitions-1/#selectordef-view-transition-old 1 1 - @@ -317,6 +327,26 @@ html current https://html.spec.whatwg.org/multipage/semantics-other.html#selector-visited +1 +- +:visited +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x29 +1 +1 +- +:visited +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x29 +1 1 - :visited @@ -379,6 +409,37 @@ https://www.w3.org/TR/css-box-4/#typedef-visual-box 1 1 - +@view-transition +at-rule +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#at-view-transition-rule +1 +1 +- +@view-transition +at-rule +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#at-view-transition-rule +1 +1 +- +VIEW_TRANSITION_RULE +const +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#dom-cssrule-view_transition_rule +1 +1 +CSSRule +- VibratePattern typedef vibration @@ -657,6 +718,26 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoder-videoencoder 1 VideoEncoder - +VideoEncoderBitrateMode +enum +webcodecs +webcodecs +1 +current +https://w3c.github.io/webcodecs/#enumdef-videoencoderbitratemode +1 +1 +- +VideoEncoderBitrateMode +enum +webcodecs +webcodecs +1 +snapshot +https://www.w3.org/TR/webcodecs/#enumdef-videoencoderbitratemode +1 +1 +- VideoEncoderConfig dictionary webcodecs @@ -697,6 +778,86 @@ https://www.w3.org/TR/webcodecs/#dictdef-videoencoderencodeoptions 1 1 - +VideoEncoderEncodeOptionsForAv1 +dictionary +webcodecs-av1-codec-registration +webcodecs-av1-codec-registration +1 +current +https://w3c.github.io/webcodecs/av1_codec_registration.html#dictdef-videoencoderencodeoptionsforav1 +1 +1 +- +VideoEncoderEncodeOptionsForAv1 +dictionary +webcodecs-av1-codec-registration +webcodecs-av1-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-av1-codec-registration/#dictdef-videoencoderencodeoptionsforav1 +1 +1 +- +VideoEncoderEncodeOptionsForAvc +dictionary +webcodecs-avc-codec-registration +webcodecs-avc-codec-registration +1 +current +https://w3c.github.io/webcodecs/avc_codec_registration.html#dictdef-videoencoderencodeoptionsforavc +1 +1 +- +VideoEncoderEncodeOptionsForAvc +dictionary +webcodecs-avc-codec-registration +webcodecs-avc-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-avc-codec-registration/#dictdef-videoencoderencodeoptionsforavc +1 +1 +- +VideoEncoderEncodeOptionsForHevc +dictionary +webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +1 +current +https://w3c.github.io/webcodecs/hevc_codec_registration.html#dictdef-videoencoderencodeoptionsforhevc +1 +1 +- +VideoEncoderEncodeOptionsForHevc +dictionary +webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-hevc-codec-registration/#dictdef-videoencoderencodeoptionsforhevc +1 +1 +- +VideoEncoderEncodeOptionsForVp9 +dictionary +webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +1 +current +https://w3c.github.io/webcodecs/vp9_codec_registration.html#dictdef-videoencoderencodeoptionsforvp9 +1 +1 +- +VideoEncoderEncodeOptionsForVp9 +dictionary +webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-vp9-codec-registration/#dictdef-videoencoderencodeoptionsforvp9 +1 +1 +- VideoEncoderInit dictionary webcodecs @@ -1219,6 +1380,56 @@ https://www.w3.org/TR/css-view-transitions-1/#viewtransition 1 1 - +ViewTransitionNavigation +enum +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#enumdef-viewtransitionnavigation +1 +1 +- +ViewTransitionTypeSet +interface +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#viewtransitiontypeset +1 +1 +- +ViewTransitionTypeSet +interface +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#viewtransitiontypeset +1 +1 +- +ViewTransitionUpdateCallback +callback +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#callbackdef-viewtransitionupdatecallback +1 +1 +- +Viewport +interface +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#viewport%E2%91%A0 +1 +1 +- VirtualKeyboard interface virtual-keyboard @@ -1239,6 +1450,16 @@ https://www.w3.org/TR/virtual-keyboard/#dom-virtualkeyboard 1 1 - +VisibilityStateEntry +interface +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry +1 +1 +- VisualViewport interface cssom-view-1 @@ -1247,6 +1468,68 @@ cssom-view current https://drafts.csswg.org/cssom-view-1/#visualviewport 1 +1 +- +[[vibrationActuator]] +attribute +gamepad +gamepad +1 +current +https://w3c.github.io/gamepad/#dfn-vibrationactuator + +1 +Gamepad +- +[[vibrationActuator]] +attribute +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dfn-vibrationactuator + +1 +Gamepad +- +[[videokeyframeintervalcount]] +dfn +mediastream-recording +mediastream-recording +1 +current +https://w3c.github.io/mediacapture-record/#videokeyframeintervalcount + +1 +- +[[videokeyframeintervalcount]] +dfn +mediastream-recording +mediastream-recording +1 +snapshot +https://www.w3.org/TR/mediastream-recording/#videokeyframeintervalcount + +1 +- +[[videokeyframeintervalduration]] +dfn +mediastream-recording +mediastream-recording +1 +current +https://w3c.github.io/mediacapture-record/#videokeyframeintervalduration + +1 +- +[[videokeyframeintervalduration]] +dfn +mediastream-recording +mediastream-recording +1 +snapshot +https://www.w3.org/TR/mediastream-recording/#videokeyframeintervalduration + 1 - [[viewFormats]] @@ -1398,7 +1681,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-vi +https://drafts.csswg.org/css-values-4/#vi 1 1 <length> @@ -1409,7 +1692,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-vi +https://www.w3.org/TR/css-values-4/#vi 1 1 <length> @@ -1500,17 +1783,6 @@ https://w3c.github.io/vibration/#dom-navigator-vibrate 1 Navigator - -vibration -enum-value -gamepad-extensions -gamepad-extensions -1 -current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadhapticactuatortype-vibration -1 -1 -GamepadHapticActuatorType -- vibration pattern dfn notifications @@ -1534,11 +1806,22 @@ https://w3c.github.io/vibration/#dfn-vibration-pattern - vibrationActuator attribute -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepad-vibrationactuator +https://w3c.github.io/gamepad/#dom-gamepad-vibrationactuator +1 +1 +Gamepad +- +vibrationActuator +attribute +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepad-vibrationactuator 1 1 Gamepad @@ -1823,7 +2106,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/indices.html#video/mpeg +https://html.spec.whatwg.org/multipage/indices.html#video%2Fmpeg 1 - @@ -1873,15 +2156,26 @@ MediaRecorderOptions - videoCapabilities dict-member +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current https://w3c.github.io/encrypted-media/#dom-mediakeysystemconfiguration-videocapabilities 1 1 MediaKeySystemConfiguration - +videoCapabilities +dict-member +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dom-mediakeysystemconfiguration-videocapabilities +1 +1 +MediaKeySystemConfiguration +- videoHeight attribute html @@ -1893,28 +2187,72 @@ https://html.spec.whatwg.org/multipage/media.html#dom-video-videoheight 1 HTMLVideoElement - -videoTrack -argument -image-capture -image-capture +videoKeyFrameIntervalCount +dict-member +mediastream-recording +mediastream-recording 1 current -https://w3c.github.io/mediacapture-image/#dom-imagecapture-imagecapture-videotrack-videotrack +https://w3c.github.io/mediacapture-record/#dom-mediarecorderoptions-videokeyframeintervalcount 1 1 -ImageCapture/ImageCapture(videoTrack) -ImageCapture/constructor(videoTrack) +MediaRecorderOptions - -videoTrack -argument -image-capture -image-capture +videoKeyFrameIntervalCount +dict-member +mediastream-recording +mediastream-recording 1 snapshot -https://www.w3.org/TR/image-capture/#dom-imagecapture-imagecapture-videotrack-videotrack +https://www.w3.org/TR/mediastream-recording/#dom-mediarecorderoptions-videokeyframeintervalcount 1 1 -ImageCapture/ImageCapture(videoTrack) +MediaRecorderOptions +- +videoKeyFrameIntervalDuration +dict-member +mediastream-recording +mediastream-recording +1 +current +https://w3c.github.io/mediacapture-record/#dom-mediarecorderoptions-videokeyframeintervalduration +1 +1 +MediaRecorderOptions +- +videoKeyFrameIntervalDuration +dict-member +mediastream-recording +mediastream-recording +1 +snapshot +https://www.w3.org/TR/mediastream-recording/#dom-mediarecorderoptions-videokeyframeintervalduration +1 +1 +MediaRecorderOptions +- +videoTrack +argument +image-capture +image-capture +1 +current +https://w3c.github.io/mediacapture-image/#dom-imagecapture-imagecapture-videotrack-videotrack +1 +1 +ImageCapture/ImageCapture(videoTrack) +ImageCapture/constructor(videoTrack) +- +videoTrack +argument +image-capture +image-capture +1 +snapshot +https://www.w3.org/TR/image-capture/#dom-imagecapture-imagecapture-videotrack-videotrack +1 +1 +ImageCapture/ImageCapture(videoTrack) ImageCapture/constructor(videoTrack) - videoTracks @@ -1961,17 +2299,6 @@ https://html.spec.whatwg.org/multipage/media.html#dom-video-videowidth 1 HTMLVideoElement - -videocapabilities -dfn -encrypted-media -encrypted-media -1 -snapshot -https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemconfiguration-videocapabilities - -1 -mediakeysystemconfiguration -- videoinput enum-value mediacapture-streams @@ -2098,9 +2425,10 @@ streams streams 1 current -https://streams.spec.whatwg.org/#dom-readablestreambyobreader-read-view-view +https://streams.spec.whatwg.org/#dom-readablestreambyobreader-read-view-options-view 1 1 +ReadableStreamBYOBReader/read(view, options) ReadableStreamBYOBReader/read(view) - view @@ -2136,6 +2464,21 @@ https://svgwg.org/svg2-draft/linking.html#elementdef-view 1 - view +argument +uievents +uievents +1 +current +https://w3c.github.io/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-view +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +view attribute uievents uievents @@ -2168,6 +2511,21 @@ https://www.w3.org/TR/SVG2/linking.html#elementdef-view 1 - view +argument +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#dom-textevent-inittextevent-type-bubbles-cancelable-view-data-view +1 +1 +TextEvent/initTextEvent(type, bubbles, cancelable, view, data) +TextEvent/initTextEvent(type, bubbles, cancelable, view) +TextEvent/initTextEvent(type, bubbles, cancelable) +TextEvent/initTextEvent(type, bubbles) +TextEvent/initTextEvent(type) +- +view attribute uievents uievents @@ -2276,28 +2634,6 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrwebglbinding-getviewsubimage-layer-vi 1 XRWebGLBinding/getViewSubImage(layer, view) - -view blend mode rule -dfn -css-view-transitions-1 -css-view-transitions -1 -current -https://drafts.csswg.org/css-view-transitions-1/#captured-element-view-blend-mode-rule - -1 -captured element -- -view blend mode rule -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#captured-element-view-blend-mode-rule - -1 -captured element -- view constructor dfn streams @@ -2409,6 +2745,26 @@ scroll-animations snapshot https://www.w3.org/TR/scroll-animations-1/#view-progress-visibility-range +1 +- +view transition layer +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#view-transition-layer + +1 +- +view transition layer +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#view-transition-layer + 1 - view transition name @@ -2431,27 +2787,95 @@ https://www.w3.org/TR/css-view-transitions-1/#view-transition-name 1 - -view transition style sheet +view transition page-visibility change steps +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#view-transition-page-visibility-change-steps +1 +1 +- +view transition params +dfn +css-view-transitions-2 +css-view-transitions +2 +current +https://drafts.csswg.org/css-view-transitions-2/#view-transition-params + +1 +- +view transition params +dfn +css-view-transitions-2 +css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#view-transition-params + +1 +- +view transition pseudo-elements dfn css-view-transitions-1 css-view-transitions 1 current -https://drafts.csswg.org/css-view-transitions-1/#document-view-transition-style-sheet +https://drafts.csswg.org/css-view-transitions-1/#view-transition-pseudo-elements 1 -document - -view transition style sheet +view transition pseudo-elements dfn css-view-transitions-1 css-view-transitions 1 snapshot -https://www.w3.org/TR/css-view-transitions-1/#document-view-transition-style-sheet +https://www.w3.org/TR/css-view-transitions-1/#view-transition-pseudo-elements + +1 +- +view transition tree +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#view-transition-tree 1 -document +- +view transition tree +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#view-transition-tree + +1 +- +view transitions +dfn +css-view-transitions-1 +css-view-transitions +1 +current +https://drafts.csswg.org/css-view-transitions-1/#view-transitions +1 +1 +- +view transitions +dfn +css-view-transitions-1 +css-view-transitions +1 +snapshot +https://www.w3.org/TR/css-view-transitions-1/#view-transitions +1 +1 - view() function @@ -2483,8 +2907,8 @@ https://drafts.csswg.org/css-box-3/#valdef-box-view-box 1 1 <box> -<shape-box> <geometry-box> +<coord-box> - view-box value @@ -2496,8 +2920,8 @@ https://drafts.csswg.org/css-box-4/#valdef-box-view-box 1 1 <box> -<shape-box> <geometry-box> +<coord-box> - view-box value @@ -2553,8 +2977,8 @@ https://www.w3.org/TR/css-box-3/#valdef-box-view-box 1 1 <box> -<shape-box> <geometry-box> +<coord-box> - view-box value @@ -2566,8 +2990,8 @@ https://www.w3.org/TR/css-box-4/#valdef-box-view-box 1 1 <box> -<shape-box> <geometry-box> +<coord-box> - view-box value @@ -2693,44 +3117,33 @@ https://www.w3.org/TR/scroll-animations-1/#propdef-view-timeline-name 1 1 - -view-transition layer -dfn -css-view-transitions-1 +view-transition-class +property +css-view-transitions-2 css-view-transitions -1 +2 current -https://drafts.csswg.org/css-view-transitions-1/#view-transition-layer - +https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-class 1 -- -view-transition layer -dfn -css-view-transitions-1 -css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#view-transition-layer - 1 - -view-transition name -dfn -css-view-transitions-1 +view-transition-class +property +css-view-transitions-2 css-view-transitions +2 +snapshot +https://www.w3.org/TR/css-view-transitions-2/#propdef-view-transition-class 1 -current -https://drafts.csswg.org/css-view-transitions-1/#named-view-transition-pseudo-element-view-transition-name - 1 -named view-transition pseudo-element - -view-transition pseudo-elements -dfn -css-view-transitions-1 +view-transition-group +property +css-view-transitions-2 css-view-transitions -1 -snapshot -https://www.w3.org/TR/css-view-transitions-1/#view-transition-pseudo-elements +2 +current +https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-group 1 1 - @@ -3058,6 +3471,50 @@ https://www.w3.org/TR/webxrlayers-1/#dom-xrlayerinit-viewpixelwidth 1 XRLayerInit - +viewTransition +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pagerevealevent-viewtransition +1 +1 +PageRevealEvent +- +viewTransition +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pagerevealeventinit-viewtransition +1 +1 +PageRevealEventInit +- +viewTransition +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pageswapevent-viewtransition +1 +1 +PageSwapEvent +- +viewTransition +dict-member +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-pageswapeventinit-viewtransition +1 +1 +PageSwapEventInit +- viewbox element-attr svg2 @@ -3145,6 +3602,17 @@ https://www.w3.org/TR/webxr/#xrsession-viewer-reference-space XRSession - viewport +attribute +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#dom-window-viewport +1 +1 +Window +- +viewport dfn css22 css @@ -3177,6 +3645,26 @@ https://w3c.github.io/epub-specs/epub33/core/#dfn-viewport - viewport dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x1 +1 +1 +- +viewport +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x1 +1 +1 +- +viewport +dfn cssom-view-1 cssom-view 1 @@ -3234,6 +3722,26 @@ svg snapshot https://www.w3.org/TR/SVG2/coords.html#TermViewportCoordinateSystem 1 +1 +- +viewport coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#viewport-coordinates + +1 +- +viewport coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#viewport-coordinates + 1 - viewport modifiable @@ -3683,6 +4191,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-violet 1 1 <color> +<named-color> - violet dfn @@ -3704,6 +4213,27 @@ https://www.w3.org/TR/css-color-4/#valdef-color-violet 1 1 <color> +<named-color> +- +virama +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-virama +1 + +- +virama +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-virama +1 + - virtual authenticator database dfn @@ -3753,46 +4283,166 @@ html current https://html.spec.whatwg.org/multipage/document-sequences.html#virtual-browsing-context-group-id +1 +- +virtual expandable separator +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#virtual-expandable-separator + +1 +- +virtual expandable separator +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#virtual-expandable-separator + +1 +- +virtual pressure source +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-virtual-pressure-source + +1 +- +virtual pressure source +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-virtual-pressure-source + +1 +- +virtual pressure source mapping +dfn +compute-pressure +compute-pressure +1 +current +https://w3c.github.io/compute-pressure/#dfn-virtual-pressure-source-mapping + +1 +- +virtual pressure source mapping +dfn +compute-pressure +compute-pressure +1 +snapshot +https://www.w3.org/TR/compute-pressure/#dfn-virtual-pressure-source-mapping + 1 - virtual screen arrangement dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#virtual-screen-arrangement +https://w3c.github.io/window-management/#virtual-screen-arrangement 1 - virtual screen arrangement dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#virtual-screen-arrangement +https://www.w3.org/TR/window-management/#virtual-screen-arrangement 1 - -virtual word boundary +virtual sensor dfn -css-text-4 -css-text -4 +generic-sensor +generic-sensor +1 current -https://drafts.csswg.org/css-text-4/#virtual-word-boundary +https://w3c.github.io/sensors/#virtual-sensor 1 - -virtual word boundary +virtual sensor dfn -css-text-4 -css-text -4 +generic-sensor +generic-sensor +1 snapshot -https://www.w3.org/TR/css-text-4/#virtual-word-boundary +https://www.w3.org/TR/generic-sensor/#virtual-sensor + +1 +- +virtual sensor mapping +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#virtual-sensor-mapping +1 +- +virtual sensor mapping +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-mapping + +1 +- +virtual sensor metadata +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#virtual-sensor-metadata +1 +1 +- +virtual sensor metadata +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-metadata +1 +1 +- +virtual sensor type +dfn +generic-sensor +generic-sensor +1 +current +https://w3c.github.io/sensors/#virtual-sensor-type +1 +1 +- +virtual sensor type +dfn +generic-sensor +generic-sensor +1 +snapshot +https://www.w3.org/TR/generic-sensor/#virtual-sensor-type +1 1 - virtualKeyboard @@ -3882,6 +4532,135 @@ GPUBindGroupLayoutEntry - visibility dfn +intersection-observer +intersection-observer +1 +current +https://w3c.github.io/IntersectionObserver/#visibility + +1 +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#content-size-visibility +1 +1 +content size +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#effective-enabled-permissions-visibility +1 +1 +effective enabled permissions +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#effective-sandbox-flags-visibility +1 +1 +effective sandbox flags +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-visibility +1 +1 +exfiltration budget metadata +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-visibility +1 +1 +fenced frame reporting metadata +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#fencedframeconfig-visibility +1 +1 +fencedframeconfig +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#interest-group-descriptor-visibility +1 +1 +interest group descriptor +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#mapped-url-visibility +1 +1 +mapped url +- +visibility +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#nested-configs-visibility +1 +1 +nested configs +- +visibility +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility +1 +1 +- +visibility +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility +1 +1 +- +visibility +dfn css22 css 1 @@ -3924,6 +4703,16 @@ Document - visibility state dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#visibilitystateentry-state + +1 +- +visibility state +dfn webxr webxr 1 @@ -3984,6 +4773,17 @@ https://www.w3.org/TR/webxr/#xrsession-visibility-state 1 XRSession - +visibilityProperty +dict-member +cssom-view-1 +cssom-view +1 +current +https://drafts.csswg.org/cssom-view-1/#dom-checkvisibilityoptions-visibilityproperty +1 +1 +CheckVisibilityOptions +- visibilityState attribute html @@ -4298,7 +5098,7 @@ reporting 1 current https://w3c.github.io/reporting/#visible-to-reportingobservers - +1 1 - visible to reportingobservers @@ -4308,7 +5108,7 @@ reporting 1 snapshot https://www.w3.org/TR/reporting-1/#visible-to-reportingobservers - +1 1 - visible track @@ -4437,6 +5237,26 @@ webaudio snapshot https://www.w3.org/TR/webaudio/#visit +1 +- +visited (pseudo-class) +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/selector.html#x29 +1 +1 +- +visited (pseudo-class) +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/selector.html#x29 +1 1 - visitedtext @@ -4445,9 +5265,10 @@ css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#valdef-system-color-visitedtext +https://drafts.csswg.org/css-color-4/#valdef-color-visitedtext 1 1 +<color> <system-color> - visitedtext @@ -4456,9 +5277,10 @@ css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#valdef-system-color-visitedtext +https://www.w3.org/TR/css-color-4/#valdef-color-visitedtext 1 1 +<color> <system-color> - visual angle unit @@ -4509,6 +5331,26 @@ css current https://drafts.csswg.org/css2/#visual-formatting-model +1 +- +visual formatting model +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#x0 +1 +1 +- +visual formatting model +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#x0 +1 1 - visual representation diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vm.data b/bikeshed/spec-data/readonly/anchors/anchors-vm.data index e3adb6e145..d09ec4dc64 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-vm.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-vm.data @@ -15,7 +15,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-vmax +https://drafts.csswg.org/css-values-4/#vmax 1 1 <length> @@ -37,7 +37,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-vmax +https://www.w3.org/TR/css-values-4/#vmax 1 1 <length> @@ -81,7 +81,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-vmin +https://drafts.csswg.org/css-values-4/#vmin 1 1 <length> @@ -103,7 +103,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-vmin +https://www.w3.org/TR/css-values-4/#vmin 1 1 <length> diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vo.data b/bikeshed/spec-data/readonly/anchors/anchors-vo.data index a6178db338..8983071e93 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-vo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-vo.data @@ -1,3 +1,25 @@ +"voice" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opussignal-voice +1 +1 +OpusSignal +- +"voice" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opussignal-voice +1 +1 +OpusSignal +- "voice-unavailable" enum-value speech-api @@ -9,6 +31,50 @@ https://wicg.github.io/speech-api/#dom-speechsynthesiserrorcode-voice-unavailabl 1 SpeechSynthesisErrorCode - +"voiceactivity" +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionaction-voiceactivity +1 +1 +MediaSessionAction +- +"voiceactivity" +enum-value +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-voiceactivity +1 +1 +MediaSessionAction +- +"voip" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusapplication-voip +1 +1 +OpusApplication +- +"voip" +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusapplication-voip +1 +1 +OpusApplication +- :volume-locked selector selectors-4 @@ -17,6 +83,16 @@ selectors current https://drafts.csswg.org/selectors-4/#selectordef-volume-locked 1 +1 +- +:volume-locked +selector +html +html +1 +current +https://html.spec.whatwg.org/multipage/semantics-other.html#selector-volume-locked + 1 - :volume-locked @@ -45,7 +121,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_vocabulary +https://w3c.github.io/i18n-glossary/#dfn-vocabulary 1 - @@ -55,7 +131,7 @@ rdf12-concepts rdf-concepts 1 current -https://w3c.github.io/rdf-concepts/spec/#dfn-vocabulary +https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-vocabulary - @@ -75,9 +151,29 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_vocabulary +https://www.w3.org/TR/i18n-glossary/#dfn-vocabulary 1 +- +vocabulary +dfn +rdf12-concepts +rdf-concepts +1 +snapshot +https://www.w3.org/TR/rdf12-concepts/#dfn-rdf-vocabulary + + +- +vocabulary +dfn +rdf12-semantics +rdf-semantics +1 +snapshot +https://www.w3.org/TR/rdf12-semantics/#dfn-vocabulary + +1 - vocabulary mapping dfn @@ -110,6 +206,17 @@ https://w3c.github.io/mathml-core/#attribute-mpadded-voffset 1 mpadded - +voffset +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mpadded-voffset +1 +1 +mpadded +- voice dfn html @@ -121,6 +228,17 @@ https://html.spec.whatwg.org/multipage/microdata.html#md-vcard-type-tel-voice 1 - voice +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opussignal-voice +1 +1 +OpusSignal +- +voice attribute speech-api speech-api @@ -131,6 +249,17 @@ https://wicg.github.io/speech-api/#dom-speechsynthesisutterance-voice 1 SpeechSynthesisUtterance - +voice +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opussignal-voice +1 +1 +OpusSignal +- voice-balance property css-speech-1 @@ -182,6 +311,26 @@ https://drafts.csswg.org/css-speech-1/#propdef-voice-family 1 - voice-family +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-voice-family +1 +1 +- +voice-family +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-voice-family +1 +1 +- +voice-family dfn css22 css @@ -312,6 +461,28 @@ https://wicg.github.io/speech-api/#dom-speechsynthesisvoice-voiceuri 1 SpeechSynthesisVoice - +voiceactivity +enum-value +mediasession +mediasession +1 +current +https://w3c.github.io/mediasession/#dom-mediasessionaction-voiceactivity +1 +1 +MediaSessionAction +- +voiceactivity +enum-value +mediasession +mediasession +1 +snapshot +https://www.w3.org/TR/mediasession/#dom-mediasessionaction-voiceactivity +1 +1 +MediaSessionAction +- voiceschanged event speech-api @@ -333,6 +504,28 @@ https://html.spec.whatwg.org/multipage/syntax.html#void-elements 1 - +voip +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +current +https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusapplication-voip +1 +1 +OpusApplication +- +voip +enum-value +webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-opus-codec-registration/#dom-opusapplication-voip +1 +1 +OpusApplication +- volume attribute html @@ -356,6 +549,46 @@ https://wicg.github.io/speech-api/#dom-speechsynthesisutterance-volume SpeechSynthesisUtterance - volume +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#propdef-volume +1 +1 +- +volume +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#propdef-volume +1 +1 +- +volume +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/aural.html#x10 +1 +1 +- +volume +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/aural.html#x10 +1 +1 +- +volume dfn css22 css @@ -363,6 +596,16 @@ css snapshot https://www.w3.org/TR/CSS22/aural.html#propdef-volume 1 +1 +- +volume locked +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/media.html#volume-locked + 1 - volumechange diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vp.data b/bikeshed/spec-data/readonly/anchors/anchors-vp.data new file mode 100644 index 0000000000..5392b98c1d --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-vp.data @@ -0,0 +1,22 @@ +vp9 +dict-member +webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +1 +current +https://w3c.github.io/webcodecs/vp9_codec_registration.html#dom-videoencoderencodeoptions-vp9 +1 +1 +VideoEncoderEncodeOptions +- +vp9 +dict-member +webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +1 +snapshot +https://www.w3.org/TR/webcodecs-vp9-codec-registration/#dom-videoencoderencodeoptions-vp9 +1 +1 +VideoEncoderEncodeOptions +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-vw.data b/bikeshed/spec-data/readonly/anchors/anchors-vw.data index 693c966865..9baf5ff862 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-vw.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-vw.data @@ -15,7 +15,7 @@ css-values-4 css-values 4 current -https://drafts.csswg.org/css-values-4/#valdef-length-vw +https://drafts.csswg.org/css-values-4/#vw 1 1 <length> @@ -37,7 +37,7 @@ css-values-4 css-values 4 snapshot -https://www.w3.org/TR/css-values-4/#valdef-length-vw +https://www.w3.org/TR/css-values-4/#vw 1 1 <length> diff --git a/bikeshed/spec-data/readonly/anchors/anchors-w3.data b/bikeshed/spec-data/readonly/anchors/anchors-w3.data index de58529713..7f09a6d49a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-w3.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-w3.data @@ -1,3 +1,13 @@ +w3c board of directors +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#bod +1 +1 +- w3c candidate recommendation dfn w3c-process @@ -8,24 +18,34 @@ https://www.w3.org/Consortium/Process/#RecsCR 1 1 - -w3c decision +w3c council dfn w3c-process w3c-process 1 current -https://www.w3.org/Consortium/Process/#def-w3c-decision - +https://www.w3.org/Consortium/Process/#w3c-council +1 1 - -w3c director +w3c council chair dfn w3c-process w3c-process 1 current -https://www.w3.org/Consortium/Process/#def-Director +https://www.w3.org/Consortium/Process/#w3c-council-chair + 1 +- +w3c decision +dfn +w3c-process +w3c-process +1 +current +https://www.w3.org/Consortium/Process/#def-w3c-decision + 1 - w3c fellows diff --git a/bikeshed/spec-data/readonly/anchors/anchors-w_.data b/bikeshed/spec-data/readonly/anchors/anchors-w_.data index d6393f57c5..0af41a80e8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-w_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-w_.data @@ -121,6 +121,31 @@ hwb() - w argument +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-csshwb-h-w-b-alpha-w +1 +1 +CSSHWB/CSSHWB(h, w, b, alpha) +CSSHWB/constructor(h, w, b, alpha) +CSSHWB/CSSHWB(h, w, b) +CSSHWB/constructor(h, w, b) +- +w +attribute +css-typed-om-1 +css-typed-om +1 +snapshot +https://www.w3.org/TR/css-typed-om-1/#dom-csshwb-w +1 +1 +CSSHWB +- +w +argument geometry-1 geometry 1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-wa.data b/bikeshed/spec-data/readonly/anchors/anchors-wa.data index a2b29979d5..dc3f73cca1 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-wa.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-wa.data @@ -28,6 +28,16 @@ csp current https://w3c.github.io/webappsec-csp/#grammardef-wasm-unsafe-eval 1 +1 +- +'wasm-unsafe-eval' +grammar +speculation-rules +speculation-rules +1 +current +https://wicg.github.io/nav-speculation/speculation-rules.html#grammardef-wasm-unsafe-eval + 1 - 'wasm-unsafe-eval' @@ -196,7 +206,7 @@ https://www.w3.org/TR/webaudio/#dictdef-waveshaperoptions - [[waitForUpdate]] attribute -payment-request-1.1 +payment-request payment-request 1 current @@ -207,11 +217,11 @@ PaymentRequestUpdateEvent - [[waitForUpdate]] attribute -payment-request-1.1 +payment-request payment-request 1 snapshot -https://www.w3.org/TR/payment-request-1.1/#dfn-waitforupdate +https://www.w3.org/TR/payment-request/#dfn-waitforupdate 1 PaymentRequestUpdateEvent @@ -233,7 +243,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dfn-watchids +https://w3c.github.io/geolocation/#dfn-watchids 1 Geolocation @@ -312,6 +322,26 @@ webpackage current https://wicg.github.io/webpackage/loading.html#wait-and-queue-a-report-for +1 +- +wait for a matching prefetch record +dfn +prefetch +prefetch +1 +current +https://wicg.github.io/nav-speculation/prefetch.html#wait-for-a-matching-prefetch-record +1 +1 +- +wait for a matching prerendering record +dfn +prerendering-revamped +prerendering-revamped +1 +current +https://wicg.github.io/nav-speculation/prerendering.html#wait-for-a-matching-prerendering-record + 1 - wait for all @@ -322,6 +352,36 @@ webidl current https://webidl.spec.whatwg.org/#wait-for-all 1 +1 +- +wait for cross origin trusted scoring signals authorization from a fetcher +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#wait-for-cross-origin-trusted-scoring-signals-authorization-from-a-fetcher + +1 +- +wait for key +dfn +encrypted-media-2 +encrypted-media +2 +current +https://w3c.github.io/encrypted-media/#dfn-wait-for-key + +1 +- +wait for key +dfn +encrypted-media-2 +encrypted-media +2 +snapshot +https://www.w3.org/TR/encrypted-media-2/#dfn-wait-for-key + 1 - wait for navigation to complete @@ -330,7 +390,7 @@ webdriver2 webdriver 2 current -https://w3c.github.io/webdriver/#dfn-waiting-for-the-navigation-to-complete +https://w3c.github.io/webdriver/#dfn-wait-for-navigation-to-complete 1 - @@ -340,7 +400,17 @@ webdriver2 webdriver 2 snapshot -https://www.w3.org/TR/webdriver2/#dfn-waiting-for-the-navigation-to-complete +https://www.w3.org/TR/webdriver2/#dfn-wait-for-navigation-to-complete + +1 +- +wait for script body from a fetcher +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#wait-for-script-body-from-a-fetcher 1 - @@ -376,6 +446,16 @@ https://www.w3.org/TR/service-workers/#fetchevent-wait-to-respond-flag 1 FetchEvent - +wait until configuration input promises resolve +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#wait-until-configuration-input-promises-resolve + +1 +- wait(typedArray, index, value, timeout) method ecmascript @@ -387,6 +467,17 @@ https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.wait 1 Atomics - +waitAsync(typedArray, index, value, timeout) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.waitasync +1 +1 +Atomics +- waitUntil(f) method service-workers @@ -409,24 +500,68 @@ https://www.w3.org/TR/service-workers/#dom-extendableevent-waituntil 1 ExtendableEvent - -waiterlist +waitUntilAvailable +dict-member +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dom-webtransportsendstreamoptions-waituntilavailable +1 +1 +WebTransportSendStreamOptions +- +waitUntilAvailable +dict-member +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransportsendstreamoptions-waituntilavailable +1 +1 +WebTransportSendStreamOptions +- +waiter record +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-waiter-record +1 +1 +ECMAScript +- +waiter records dfn ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-objects +https://tc39.es/ecma262/multipage/structured-data.html#sec-waiter-record 1 1 ECMAScript - -waiterlists +waiterlist record dfn ecmascript ecmascript 1 current -https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-objects +https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-records +1 +1 +ECMAScript +- +waiterlist records +dfn +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-records 1 1 ECMAScript @@ -524,26 +659,6 @@ webidl current https://webidl.spec.whatwg.org/#wait-for-all 1 -1 -- -waiting for the navigation to complete -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-waiting-for-the-navigation-to-complete - -1 -- -waiting for the navigation to complete -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-waiting-for-the-navigation-to-complete - 1 - waiting promise @@ -612,21 +727,21 @@ https://www.w3.org/TR/media-source-2/#sourcebuffer-waiting-for-segment - waitingforkey dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 current -https://w3c.github.io/encrypted-media/#dom-evt-waitingforkey +https://w3c.github.io/encrypted-media/#dfn-waitingforkey - waitingforkey dfn +encrypted-media-2 encrypted-media -encrypted-media -1 +2 snapshot -https://www.w3.org/TR/encrypted-media/#dom-evt-waitingforkey +https://www.w3.org/TR/encrypted-media-2/#dfn-waitingforkey - @@ -698,7 +813,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_wall_time +https://w3c.github.io/i18n-glossary/#dfn-wall-time 1 - @@ -708,7 +823,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_wall_time +https://www.w3.org/TR/i18n-glossary/#dfn-wall-time 1 - @@ -734,6 +849,28 @@ https://console.spec.whatwg.org/#warn 1 console - +warning +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#severity-warning + +1 +severity +- +warning +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#severity-warning + +1 +severity +- warning user during nfc operations dfn web-nfc @@ -744,48 +881,59 @@ https://w3c.github.io/web-nfc/#dfn-warning-user-during-nfc-operations - -was already erroring +warnings dfn -streams -streams +vc-data-integrity +vc-data-integrity 1 current -https://streams.spec.whatwg.org/#pending-abort-request-was-already-erroring +https://w3c.github.io/vc-data-integrity/#dfn-warnings 1 -pending abort request +verification result - -was created via cross-origin redirects +warnings dfn -html -html +vc-data-integrity +vc-data-integrity 1 current -https://html.spec.whatwg.org/multipage/dom.html#was-created-via-cross-origin-redirects +https://w3c.github.io/vc-data-integrity/#dfn-warnings-0 1 +context validation result - -was created with user activation +warnings dfn -close-watcher -close-watcher +vc-data-integrity +vc-data-integrity 1 -current -https://wicg.github.io/close-watcher/#close-watcher-was-created-with-user-activation +snapshot +https://www.w3.org/TR/vc-data-integrity/#dfn-warnings 1 -close watcher +verification result - -was intercepted +was already erroring dfn -navigation-api -navigation-api +streams +streams 1 current -https://wicg.github.io/navigation-api/#navigateevent-was-intercepted +https://streams.spec.whatwg.org/#pending-abort-request-was-already-erroring 1 -NavigateEvent +pending abort request +- +was created via cross-origin redirects +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#was-created-via-cross-origin-redirects +1 +1 - wasClean attribute @@ -820,6 +968,17 @@ https://wicg.github.io/page-lifecycle/#dom-document-wasdiscarded 1 Document - +wasmHelper +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-wasmhelper +1 +1 +BiddingBrowserSignals +- watch advertisements manager dfn web-bluetooth @@ -902,7 +1061,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-watchposition +https://w3c.github.io/geolocation/#dom-geolocation-watchposition 1 1 Geolocation @@ -924,7 +1083,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-watchposition +https://w3c.github.io/geolocation/#dom-geolocation-watchposition 1 1 Geolocation @@ -946,7 +1105,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-watchposition +https://w3c.github.io/geolocation/#dom-geolocation-watchposition 1 1 Geolocation @@ -968,7 +1127,7 @@ geolocation geolocation 1 current -https://w3c.github.io/geolocation-api/#dom-geolocation-watchposition +https://w3c.github.io/geolocation/#dom-geolocation-watchposition 1 1 Geolocation @@ -1027,6 +1186,17 @@ https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-style-wavy text-decoration-style - wavy +enum-value +edit-context +edit-context +1 +current +https://w3c.github.io/edit-context/#dom-underlinestyle-wavy +1 +1 +UnderlineStyle +- +wavy value css-text-decor-4 css-text-decor diff --git a/bikeshed/spec-data/readonly/anchors/anchors-we.data b/bikeshed/spec-data/readonly/anchors/anchors-we.data index d021421d34..3ab66b28d8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-we.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-we.data @@ -241,6 +241,16 @@ current https://compat.spec.whatwg.org/#propdef--webkit-animation-timing-function 1 1 +- +-webkit-app-region +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-webkit-app-region +1 + - -webkit-appearance property @@ -457,11 +467,11 @@ continue - -webkit-discard value -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#valdef-continue--webkit-discard +https://www.w3.org/TR/css-overflow-4/#valdef-continue--webkit-discard 1 1 continue @@ -621,11 +631,11 @@ https://drafts.csswg.org/css-overflow-4/#propdef--webkit-line-clamp - -webkit-line-clamp property -css-overflow-3 +css-overflow-4 css-overflow -3 +4 snapshot -https://www.w3.org/TR/css-overflow-3/#propdef--webkit-line-clamp +https://www.w3.org/TR/css-overflow-4/#propdef--webkit-line-clamp 1 1 - @@ -1084,6 +1094,16 @@ https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref-target 1 WeakRef - +WeakRefDeref +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/managing-memory.html#sec-weakrefderef +1 +1 +- WeakRefDeref(weakRef) abstract-op ecmascript @@ -1571,6 +1591,26 @@ https://www.w3.org/TR/webtransport/#enumdef-webtransportcongestioncontrol 1 1 - +WebTransportConnectionStats +dictionary +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#dictdef-webtransportconnectionstats +1 +1 +- +WebTransportConnectionStats +dictionary +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dictdef-webtransportconnectionstats +1 +1 +- WebTransportDatagramDuplexStream interface webtransport @@ -1653,13 +1693,13 @@ https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror 1 WebTransportError - -WebTransportError(init) +WebTransportError(message) constructor webtransport webtransport 1 -snapshot -https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror +current +https://w3c.github.io/webtransport/#dom-webtransporterror-webtransporterror 1 1 WebTransportError @@ -1669,8 +1709,8 @@ constructor webtransport webtransport 1 -current -https://w3c.github.io/webtransport/#dom-webtransporterror-webtransporterror +snapshot +https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror 1 1 WebTransportError @@ -1686,15 +1726,16 @@ https://w3c.github.io/webtransport/#dom-webtransporterror-webtransporterror 1 WebTransportError - -WebTransportErrorInit -dictionary +WebTransportError(message, options) +constructor webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dictdef-webtransporterrorinit +https://www.w3.org/TR/webtransport/#dom-webtransporterror-webtransporterror 1 1 +WebTransportError - WebTransportErrorOptions dictionary @@ -1706,6 +1747,16 @@ https://w3c.github.io/webtransport/#dictdef-webtransporterroroptions 1 1 - +WebTransportErrorOptions +dictionary +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#dictdef-webtransporterroroptions +1 +1 +- WebTransportErrorSource enum webtransport @@ -1766,16 +1817,6 @@ https://www.w3.org/TR/webtransport/#dictdef-webtransportoptions 1 1 - -WebTransportRateControlFeedback -interface -webtransport -webtransport -1 -current -https://w3c.github.io/webtransport/#webtransportratecontrolfeedback -1 -1 -- WebTransportReceiveStream interface webtransport @@ -1836,6 +1877,26 @@ https://www.w3.org/TR/webtransport/#enumdef-webtransportreliabilitymode 1 1 - +WebTransportSendGroup +interface +webtransport +webtransport +1 +current +https://w3c.github.io/webtransport/#webtransportsendgroup +1 +1 +- +WebTransportSendGroup +interface +webtransport +webtransport +1 +snapshot +https://www.w3.org/TR/webtransport/#webtransportsendgroup +1 +1 +- WebTransportSendStream interface webtransport @@ -1896,23 +1957,43 @@ https://www.w3.org/TR/webtransport/#dictdef-webtransportsendstreamstats 1 1 - -WebTransportStats -dictionary +WebTransportWriter +interface webtransport webtransport 1 current -https://w3c.github.io/webtransport/#dictdef-webtransportstats +https://w3c.github.io/webtransport/#webtransportwriter 1 1 - -WebTransportStats -dictionary +WebTransportWriter +interface webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#dictdef-webtransportstats +https://www.w3.org/TR/webtransport/#webtransportwriter +1 +1 +- +WeekDay +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-weekday +1 +1 +- +WeekDay(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-weekday 1 1 - @@ -1974,13 +2055,23 @@ https://www.w3.org/TR/css-speech-1/#valdef-rest-before-weak rest-before rest-after - -weak scoping proximity +weak map dfn -css-cascade-6 -css-cascade -6 +webdriver2 +webdriver +2 current -https://drafts.csswg.org/css-cascade-6/#weak-scoping-proximity +https://w3c.github.io/webdriver/#dfn-weak-map + +1 +- +weak map +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-weak-map 1 - @@ -1996,11 +2087,22 @@ https://www.w3.org/TR/css-cascade-6/#weak-scoping-proximity - weakMagnitude dict-member -gamepad-extensions -gamepad-extensions +gamepad +gamepad 1 current -https://w3c.github.io/gamepad/extensions.html#dom-gamepadeffectparameters-weakmagnitude +https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-weakmagnitude +1 +1 +GamepadEffectParameters +- +weakMagnitude +dict-member +gamepad +gamepad +1 +snapshot +https://www.w3.org/TR/gamepad/#dom-gamepadeffectparameters-weakmagnitude 1 1 GamepadEffectParameters @@ -2025,15 +2127,16 @@ https://www.w3.org/TR/css-position-3/#weaker-inset 1 - -weakmagnitude +web dfn -gamepad-extensions -gamepad-extensions +attribution-reporting-api +attribution-reporting-api 1 current -https://w3c.github.io/gamepad/extensions.html#dfn-weakmagnitude +https://wicg.github.io/attribution-reporting-api/#registrar-web 1 +registrar - web analytics dfn @@ -2045,13 +2148,43 @@ https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-web-analytics - -web analytics +web animations animation model dfn -tracking-dnt -tracking-dnt +web-animations-1 +web-animations 1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-web-analytics +current +https://drafts.csswg.org/web-animations-1/#web-animations-animation-model + + +- +web animations api +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#web-animations-api +1 + +- +web animations model +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#web-animations-model +1 + +- +web animations timing model +dfn +web-animations-1 +web-animations +1 +current +https://drafts.csswg.org/web-animations-1/#web-animations-timing-model 1 - @@ -2092,7 +2225,7 @@ webmidi 1 snapshot https://www.w3.org/TR/webmidi/#WebAudio -1 + 1 - web authentication api @@ -2113,6 +2246,16 @@ webauthn snapshot https://www.w3.org/TR/webauthn-3/#web-authentication-api +1 +- +web custom format +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#web-custom-format + 1 - web element @@ -2193,6 +2336,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-web-elements +1 +- +web frame +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-web-frames + +1 +- +web frame +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-web-frames + 1 - web frame identifier @@ -2213,6 +2376,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-web-frame-identifier +1 +- +web frames +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-web-frames + +1 +- +web frames +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-web-frames + 1 - web idl arguments list @@ -2273,6 +2456,26 @@ web-share-target current https://w3c.github.io/web-share-target/#dfn-web-share-target 1 +1 +- +web window +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-web-windows + +1 +- +web window +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-web-windows + 1 - web window identifier @@ -2293,6 +2496,26 @@ webdriver snapshot https://www.w3.org/TR/webdriver2/#dfn-web-window-identifier +1 +- +web windows +dfn +webdriver2 +webdriver +2 +current +https://w3c.github.io/webdriver/#dfn-web-windows + +1 +- +web windows +dfn +webdriver2 +webdriver +2 +snapshot +https://www.w3.org/TR/webdriver2/#dfn-web-windows + 1 - web worker @@ -2311,7 +2534,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/iana.html#web+-scheme-prefix +https://html.spec.whatwg.org/multipage/iana.html#web%2B-scheme-prefix 1 - @@ -2344,16 +2567,6 @@ current https://w3c.github.io/dnt/drafts/tracking-dnt.html#dfn-web-wide -- -web-wide -dfn -tracking-dnt -tracking-dnt -1 -snapshot -https://www.w3.org/TR/tracking-dnt/#dfn-web-wide - -1 - webauthn dfn @@ -2547,6 +2760,36 @@ https://www.w3.org/TR/webdriver2/#dom-navigatorautomationinformation-webdriver 1 NavigatorAutomationInformation - +webdriver bidi auth required +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-auth-required +1 +1 +- +webdriver bidi before request sent +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-before-request-sent +1 +1 +- +webdriver bidi cache behavior +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-cache-behavior +1 +1 +- webdriver bidi dom content loaded dfn webdriver-bidi @@ -2567,6 +2810,16 @@ https://w3c.github.io/webdriver-bidi/#webdriver-bidi-download-started 1 1 - +webdriver bidi fetch error +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-fetch-error +1 +1 +- webdriver bidi fragment navigated dfn webdriver-bidi @@ -2587,6 +2840,26 @@ https://w3c.github.io/webdriver-bidi/#webdriver-bidi-load-complete 1 1 - +webdriver bidi navigable created +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigable-created +1 +1 +- +webdriver bidi navigable destroyed +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigable-destroyed +1 +1 +- webdriver bidi navigation aborted dfn webdriver-bidi @@ -2617,6 +2890,46 @@ https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigation-started 1 1 - +webdriver bidi page show +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-page-show +1 +1 +- +webdriver bidi pop state +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-pop-state +1 +1 +- +webdriver bidi response completed +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-response-completed +1 +1 +- +webdriver bidi response started +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#webdriver-bidi-response-started +1 +1 +- webdriver bidi user prompt closed dfn webdriver-bidi @@ -2837,6 +3150,28 @@ https://html.spec.whatwg.org/multipage/canvas.html#offscreencanvas-context-webgp 1 - +webgpu +dfn +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#context-type-webgpu + +1 +context type +- +webgpu +dfn +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#context-type-webgpu + +1 +context type +- webgpu interface dfn webgpu @@ -2857,63 +3192,63 @@ https://www.w3.org/TR/webgpu/#webgpu-interface 1 - -webgpu platform +webgpu object dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#webgpu-platform +https://gpuweb.github.io/gpuweb/#webgpu-object 1 - -webgpu platform +webgpu object dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#webgpu-platform +https://www.w3.org/TR/webgpu/#webgpu-object 1 - -webgpu task source +webgpu platform dfn webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#webgpu-task-source +https://gpuweb.github.io/gpuweb/#webgpu-platform 1 - -webgpu task source +webgpu platform dfn webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#webgpu-task-source +https://www.w3.org/TR/webgpu/#webgpu-platform 1 - -webgpu-context +webgpu task source dfn -webnn -webnn +webgpu +webgpu 1 current -https://webmachinelearning.github.io/webnn/#webgpu-context +https://gpuweb.github.io/gpuweb/#webgpu-task-source 1 - -webgpu-context +webgpu task source dfn -webnn -webnn +webgpu +webgpu 1 snapshot -https://www.w3.org/TR/webnn/#webgpu-context +https://www.w3.org/TR/webgpu/#webgpu-task-source 1 - @@ -2923,10 +3258,10 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-webkit-cased-attribute +https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-webkit-cased-attribute 1 1 -CSSStyleDeclaration +CSSStyleProperties - webkit-cased attribute attribute @@ -2999,10 +3334,10 @@ cssom-1 cssom 1 current -https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-webkit_cased_attribute +https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-webkit_cased_attribute 1 1 -CSSStyleDeclaration +CSSStyleProperties - webkit_cased_attribute attribute @@ -3142,6 +3477,16 @@ https://www.w3.org/TR/CSP3/#directive-webrtc-pre-connect-check 1 directive - +websocket +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-websocket + +1 +- websocket connection dfn webdriver-bidi @@ -3180,6 +3525,16 @@ websockets current https://websockets.spec.whatwg.org/#websocket-task-source 1 +1 +- +websocket url +dfn +webdriver-bidi +webdriver-bidi +1 +current +https://w3c.github.io/webdriver-bidi/#websocket-url + 1 - webtransport session @@ -3210,9 +3565,10 @@ webtransport webtransport 1 current -https://w3c.github.io/webtransport/#webtransport-stream +https://w3c.github.io/webtransport/#protocol-webtransport-stream 1 +protocol - webtransport stream dfn @@ -3220,9 +3576,10 @@ webtransport webtransport 1 snapshot -https://www.w3.org/TR/webtransport/#webtransport-stream +https://www.w3.org/TR/webtransport/#protocol-webtransport-stream 1 +protocol - webusb platform capability descriptor dfn @@ -5681,7 +6038,7 @@ html html 1 current -https://html.spec.whatwg.org/multipage/input.html#week-state-(type=week) +https://html.spec.whatwg.org/multipage/input.html#week-state-(type%3Dweek) 1 1 input @@ -5719,6 +6076,28 @@ https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-weight FontFaceDescriptors - weight +attribute +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#dom-network-reporting-endpoint-weight +1 +1 +network reporting endpoint +- +weight +dfn +network-reporting +network-reporting +1 +current +https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-weight + +1 +network_reporting_endpoints +- +weight argument webnn webnn @@ -5728,7 +6107,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gru-input-weight- 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - weight argument @@ -5740,7 +6118,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-grucell-input-wei 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - weight argument @@ -5752,7 +6129,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstm-input-weight 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - weight argument @@ -5764,7 +6140,6 @@ https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-lstmcell-input-we 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - weight attribute @@ -5833,7 +6208,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight 1 1 MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize) - weight argument @@ -5845,7 +6219,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentwe 1 1 MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options) -MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize) - weight argument @@ -5857,7 +6230,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweigh 1 1 MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options) -MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize) - weight argument @@ -5869,7 +6241,6 @@ https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentw 1 1 MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options) -MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize) - well formed dfn @@ -5877,7 +6248,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#pattern-string-well-formed +https://urlpattern.spec.whatwg.org/#pattern-string-well-formed 1 pattern string @@ -5898,7 +6269,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_well_formed +https://w3c.github.io/i18n-glossary/#dfn-well-formed 1 - @@ -5918,7 +6289,7 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_well_formed +https://www.w3.org/TR/i18n-glossary/#dfn-well-formed 1 - @@ -5938,17 +6309,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_well_formed -1 - -- -well-formed language tag -dfn -i18n-glossary -i18n-glossary -1 -current -https://w3c.github.io/i18n-glossary/#def_well_formed +https://w3c.github.io/i18n-glossary/#dfn-well-formed 1 - @@ -5958,39 +6319,29 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_well_formed +https://www.w3.org/TR/i18n-glossary/#dfn-well-formed 1 - -well-formed language tag +well-known file dfn -i18n-glossary -i18n-glossary -1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_well_formed +fedcm +fedcm 1 +current +https://fedidcg.github.io/FedCM/#well-known-file +1 - -well-formed language tags +well-known mime type from os specific format dfn -i18n-glossary -i18n-glossary +clipboard-apis +clipboard-apis 1 current -https://w3c.github.io/i18n-glossary/#def_well_formed -1 +https://w3c.github.io/clipboard-apis/#well-known-mime-type-from-os-specific-format -- -well-formed language tags -dfn -i18n-glossary -i18n-glossary 1 -snapshot -https://www.w3.org/TR/i18n-glossary/#def_well_formed -1 - - well-known type record dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-wg.data b/bikeshed/spec-data/readonly/anchors/anchors-wg.data new file mode 100644 index 0000000000..f9dd54a394 --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-wg.data @@ -0,0 +1,42 @@ +WGSLLanguageFeatures +interface +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#gpuwgsllanguagefeatures +1 +1 +- +WGSLLanguageFeatures +interface +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#gpuwgsllanguagefeatures +1 +1 +- +wgslLanguageFeatures +attribute +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#dom-gpu-wgsllanguagefeatures +1 +1 +GPU +- +wgslLanguageFeatures +attribute +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#dom-gpu-wgsllanguagefeatures +1 +1 +GPU +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-wh.data b/bikeshed/spec-data/readonly/anchors/anchors-wh.data index fdeda4136f..4d51bbd480 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-wh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-wh.data @@ -38,6 +38,16 @@ https://www.w3.org/TR/css-syntax-3/#typedef-whitespace-token 1 1 - +<whole-value> +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#whole-value +1 +1 +- @when at-rule css-conditional-5 @@ -221,6 +231,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-wheat 1 1 <color> +<named-color> - wheat dfn @@ -242,6 +253,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-wheat 1 1 <color> +<named-color> - wheel dfn @@ -261,6 +273,26 @@ uievents snapshot https://www.w3.org/TR/uievents/#wheel +1 +- +wheel event transaction +dfn +uievents +uievents +1 +current +https://w3c.github.io/uievents/#wheel-event-transaction + +1 +- +wheel event transaction +dfn +uievents +uievents +1 +snapshot +https://www.w3.org/TR/uievents/#wheel-event-transaction + 1 - wheel input source @@ -392,6 +424,50 @@ https://dom.spec.whatwg.org/#dom-element-insertadjacenttext-where-data-where 1 Element/insertAdjacentText(where, data) - +where(condition, trueValue, falseValue) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-where +1 +1 +MLGraphBuilder +- +where(condition, trueValue, falseValue) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where +1 +1 +MLGraphBuilder +- +where(condition, trueValue, falseValue, options) +method +webnn +webnn +1 +current +https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-where +1 +1 +MLGraphBuilder +- +where(condition, trueValue, falseValue, options) +method +webnn +webnn +1 +snapshot +https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where +1 +1 +MLGraphBuilder +- which attribute uievents @@ -533,6 +609,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-white 1 1 <color> +<named-color> - white value @@ -576,6 +653,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-white 1 1 <color> +<named-color> - white dfn @@ -620,11 +698,11 @@ https://drafts.csswg.org/css-color-4/#white-point - white point dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-white-point +https://w3c.github.io/png/#dfn-white-point 1 - @@ -636,6 +714,16 @@ css-color snapshot https://www.w3.org/TR/css-color-4/#white-point 1 +1 +- +white point +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-white-point + 1 - white space @@ -779,6 +867,26 @@ https://drafts.csswg.org/css2/#propdef-white-space 1 - white-space +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-white-space +1 +1 +- +white-space +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-white-space +1 +1 +- +white-space dfn css22 css @@ -808,6 +916,46 @@ https://www.w3.org/TR/css-text-4/#propdef-white-space 1 1 - +white-space-collapse +property +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#propdef-white-space-collapse +1 +1 +- +white-space-collapse +property +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#propdef-white-space-collapse +1 +1 +- +white-space-trim +property +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#propdef-white-space-trim +1 +1 +- +white-space-trim +property +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#propdef-white-space-trim +1 +1 +- whiteBalanceMode dict-member image-capture @@ -916,6 +1064,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-whitesmoke 1 1 <color> +<named-color> - whitesmoke dfn @@ -937,6 +1086,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-whitesmoke 1 1 <color> +<named-color> - whitespace dfn diff --git a/bikeshed/spec-data/readonly/anchors/anchors-wi.data b/bikeshed/spec-data/readonly/anchors/anchors-wi.data index 4a756964ec..1831441dc3 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-wi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-wi.data @@ -22,22 +22,22 @@ ClientType - "window-management" enum-value -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#dom-permissionpolicy-window-management +https://w3c.github.io/window-management/#dom-permissionpolicy-window-management 1 1 PermissionPolicy - "window-management" enum-value -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#dom-permissionpolicy-window-management +https://www.w3.org/TR/window-management/#dom-permissionpolicy-window-management 1 1 PermissionPolicy @@ -171,7 +171,29 @@ current https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-declarative-environment-records-withbaseobject 1 1 -Environment Records +Declarative Environment Records +- +WithBaseObject() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-global-environment-records-withbaseobject +1 +1 +Global Environment Records +- +WithBaseObject() +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-object-environment-records-withbaseobject +1 +1 +Object Environment Records - [[windowClient]] attribute @@ -237,23 +259,13 @@ https://w3c.github.io/aria/#dfn-widget - widget dfn -mathml-aam -mathml-aam +wai-aria-1.3 +wai-aria 1 current -https://w3c.github.io/mathml-aam/#dfn-widget - -1 -- -widget -dfn -mathml-aam -mathml-aam +https://w3c.github.io/aria/#dfn-widget 1 -current -https://w3c.github.io/mathml-aam/#dfn-widget -1 - widget dfn @@ -284,16 +296,6 @@ current https://w3c.github.io/svg-aam/#dfn-widget -- -widget -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-widget - -1 - widget dfn @@ -354,6 +356,16 @@ snapshot https://www.w3.org/TR/wai-aria-1.2/#dfn-widget +- +widget +dfn +wai-aria-1.3 +wai-aria +1 +snapshot +https://www.w3.org/TR/wai-aria-1.3/#dfn-widget +1 + - widget resources dfn @@ -373,16 +385,6 @@ miniapp-manifest snapshot https://www.w3.org/TR/miniapp-manifest/#dfn-widget-resources -1 -- -widgets -dfn -mathml-aam -mathml-aam -1 -current -https://w3c.github.io/mathml-aam/#dfn-widget - 1 - widgets @@ -414,16 +416,6 @@ current https://w3c.github.io/svg-aam/#dfn-widget -- -widgets -dfn -accname-1.2 -accname -1 -snapshot -https://www.w3.org/TR/accname-1.2/#dfn-widget - -1 - widgets dfn @@ -506,6 +498,26 @@ https://drafts.csswg.org/css2/#propdef-widows 1 - widows +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/page.html#propdef-widows +1 +1 +- +widows +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/page.html#propdef-widows +1 +1 +- +widows dfn css22 css @@ -533,6 +545,16 @@ css-break snapshot https://www.w3.org/TR/css-break-4/#propdef-widows 1 +1 +- +width +dfn +av1-isobmff +av1-isobmff +1 +current +https://aomediacodec.github.io/av1-isobmff/#width + 1 - width @@ -558,6 +580,17 @@ https://drafts.css-houdini.org/font-metrics-api-1/#dom-fontmetrics-width FontMetrics - width +attribute +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontrydescriptors-width +1 +1 +CSSPositionTryDescriptors +- +width value css-anchor-position-1 css-anchor-position @@ -570,11 +603,11 @@ anchor-size() - width descriptor -css-contain-3 -css-contain -3 +css-conditional-5 +css-conditional +5 current -https://drafts.csswg.org/css-contain-3/#descdef-container-width +https://drafts.csswg.org/css-conditional-5/#descdef-container-width 1 1 @container @@ -895,10 +928,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#extent3d-width +https://gpuweb.github.io/gpuweb/#gpuextent3d-width 1 -Extent3D +GPUExtent3D - width element-attr @@ -980,7 +1013,6 @@ current https://html.spec.whatwg.org/multipage/embedded-content-other.html#dom-dim-width 1 1 -HTMLImageElement HTMLIFrameElement HTMLEmbedElement HTMLObjectElement @@ -1187,14 +1219,15 @@ https://immersive-web.github.io/layers/#dom-xrquadlayerinit-width XRQuadLayerInit - width -dfn +element-attr model-element model-element 1 current https://immersive-web.github.io/model-element/#dfn-width - 1 +1 +model - width attribute @@ -1208,6 +1241,28 @@ https://immersive-web.github.io/raw-camera-access/#dom-xrcamera-width XRCamera - width +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-width +1 +1 +XRWorldMeshFeature +- +width +attribute +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrworldmeshfeature-width-width +1 +1 +XRWorldMeshFeature/width +- +width attribute webxr webxr @@ -1435,16 +1490,6 @@ https://w3c.github.io/webcodecs/#dom-videoencoderconfig-width 1 1 VideoEncoderConfig -- -width -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-width - - - width dict-member @@ -1481,17 +1526,94 @@ VTTRegion - width dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#screen-width +https://w3c.github.io/window-management/#screen-width 1 screen - width dict-member +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureoptions-width +1 +1 +DocumentPictureInPictureOptions +- +width +attribute +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#dom-htmlfencedframeelement-width +1 +1 +HTMLFencedFrameElement +- +width +element-attr +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#element-attrdef-fencedframe-width +1 +1 +fencedframe +- +width +dfn +fenced-frame +fenced-frame +1 +current +https://wicg.github.io/fenced-frame/#size-width +1 +1 +size +- +width +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-size-width + +1 +ad size +- +width +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-adrender-width +1 +1 +AdRender +- +width +dict-member +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#dom-auctionadinterestgroupsize-width +1 +1 +AuctionAdInterestGroupSize +- +width +dict-member video-rvfc video-rvfc 1 @@ -1502,6 +1624,26 @@ https://wicg.github.io/video-rvfc/#dom-videoframecallbackmetadata-width VideoFrameCallbackMetadata - width +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visudet.html#propdef-width +1 +1 +- +width +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visudet.html#propdef-width +1 +1 +- +width dfn css22 css @@ -1589,6 +1731,28 @@ https://www.w3.org/TR/SVG2/struct.html#__svg__SVGUseElement__width SVGUseElement - width +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-size-width +1 +1 +anchor-size() +- +width +descriptor +css-conditional-5 +css-conditional +5 +snapshot +https://www.w3.org/TR/css-conditional-5/#descdef-container-width +1 +1 +@container +- +width descriptor css-contain-3 css-contain @@ -1805,6 +1969,28 @@ https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-width DOMRectReadOnly - width +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mpadded-width +1 +1 +mpadded +- +width +element-attr +mathml-core +mathml-core +1 +snapshot +https://www.w3.org/TR/mathml-core/#attribute-mspace-width +1 +1 +mspace +- +width dict-member media-capabilities media-capabilities @@ -1944,16 +2130,6 @@ https://www.w3.org/TR/webcodecs/#dom-videoencoderconfig-width 1 1 VideoEncoderConfig -- -width -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-width - - - width dict-member @@ -2005,10 +2181,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#extent3d-width +https://www.w3.org/TR/webgpu/#gpuextent3d-width 1 -Extent3D +GPUExtent3D - width dict-member @@ -2033,16 +2209,6 @@ https://www.w3.org/TR/webrtc-stats/#dom-rtcvideosourcestats-width RTCVideoSourceStats - width -dfn -webrtc -webrtc -1 -snapshot -https://www.w3.org/TR/webrtc/#dfn-width - -1 -- -width attribute webvtt1 webvtt @@ -2110,11 +2276,11 @@ XRQuadLayerInit - width dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#screen-width +https://www.w3.org/TR/window-management/#screen-width 1 screen @@ -2171,6 +2337,17 @@ https://html.spec.whatwg.org/multipage/rendering.html#width-of-the-select's-labe 1 - +width units +dfn +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#ad-size-width-units + +1 +ad size +- wifi enum-value netinfo @@ -2194,6 +2371,28 @@ https://w3c.github.io/json-ld-framing/#dfn-wildcard - wildcard dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#url-search-variance-no-vary-params-wildcard + +1 +URL search variance/no-vary params +- +wildcard +dfn +no-vary-search +no-vary-search +1 +current +https://wicg.github.io/nav-speculation/no-vary-search.html#url-search-variance-vary-params-wildcard + +1 +URL search variance/vary params +- +wildcard +dfn json-ld11-framing json-ld-framing 1 @@ -2296,6 +2495,28 @@ https://html.spec.whatwg.org/multipage/canvas.html#dom-canvasrenderingcontext2ds 1 CanvasRenderingContext2DSettings - +willRequestConditionalCreation() +method +credential-management-1 +credential-management +1 +current +https://w3c.github.io/webappsec-credential-management/#dom-credential-willrequestconditionalcreation +1 +1 +Credential +- +willRequestConditionalCreation() +method +credential-management-1 +credential-management +1 +snapshot +https://www.w3.org/TR/credential-management-1/#dom-credential-willrequestconditionalcreation +1 +1 +Credential +- willValidate attribute html @@ -2366,14 +2587,16 @@ https://drafts.csswg.org/css-color-3/#window 1 - window -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#window - +https://drafts.csswg.org/css-color-4/#valdef-color-window +1 1 +<color> +<deprecated-color> - window dfn @@ -2398,6 +2621,16 @@ https://fetch.spec.whatwg.org/#dom-requestinit-window RequestInit - window +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-window + +1 +- +window attribute html html @@ -2409,6 +2642,28 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-window Window - window +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-window +1 +1 +PerformanceScriptTiming +- +window +dfn +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#script-timing-info-window + +1 +script timing info +- +window dfn screen-capture screen-capture @@ -2441,25 +2696,37 @@ https://w3c.github.io/miniapp-manifest/#dfn-window 1 - window -dfn -uievents -uievents +attribute +document-picture-in-picture +document-picture-in-picture 1 current -https://w3c.github.io/uievents/#window - +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpicture-window 1 +1 +DocumentPictureInPicture - window -dfn -close-watcher -close-watcher +attribute +document-picture-in-picture +document-picture-in-picture 1 current -https://wicg.github.io/close-watcher/#close-watcher-window - +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureevent-window +1 +1 +DocumentPictureInPictureEvent +- +window +dict-member +document-picture-in-picture +document-picture-in-picture +1 +current +https://wicg.github.io/document-picture-in-picture/#dom-documentpictureinpictureeventinit-window 1 -close watcher +1 +DocumentPictureInPictureEventInit - window dfn @@ -2472,14 +2739,16 @@ https://www.w3.org/TR/css-color-3/#window 1 - window -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#window - +https://www.w3.org/TR/css-color-4/#valdef-color-window 1 +1 +<color> +<deprecated-color> - window dfn @@ -2513,15 +2782,16 @@ https://www.w3.org/TR/screen-capture/#idl-def-DisplayCaptureSurfaceType.window 1 DisplayCaptureSurfaceType - -window +window attribution dfn -uievents -uievents +long-animation-frames +long-animation-frames 1 -snapshot -https://www.w3.org/TR/uievents/#window +current +https://w3c.github.io/long-animation-frames/#performancescripttiming-window-attribution 1 +PerformanceScriptTiming - window client dfn @@ -2547,6 +2817,16 @@ service worker client - window controls dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-controls-of-the-window + +1 +- +window controls +dfn window-controls-overlay window-controls-overlay 1 @@ -2563,6 +2843,26 @@ window-controls-overlay current https://wicg.github.io/window-controls-overlay/#dfn-window-controls-overlay +1 +- +window coordinates +dfn +webgpu +webgpu +1 +current +https://gpuweb.github.io/gpuweb/#window-coordinates + +1 +- +window coordinates +dfn +webgpu +webgpu +1 +snapshot +https://www.w3.org/TR/webgpu/#window-coordinates + 1 - window dimensioning/positioning @@ -2647,21 +2947,21 @@ https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-open-steps - window placement task source dfn -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#window-placement-task-source +https://w3c.github.io/window-management/#window-placement-task-source 1 - window placement task source dfn -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#window-placement-task-source +https://www.w3.org/TR/window-management/#window-placement-task-source 1 - @@ -2673,26 +2973,6 @@ html current https://html.spec.whatwg.org/multipage/web-messaging.html#window-post-message-steps -1 -- -window rect -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-window-rect - -1 -- -window rect -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-window-rect - 1 - window resource @@ -2768,21 +3048,21 @@ display mode - window-management permission -window-placement -window-placement +window-management +window-management 1 current -https://w3c.github.io/window-placement/#permissiondef-window-management +https://w3c.github.io/window-management/#permissiondef-window-management 1 1 - window-management permission -window-placement -window-placement +window-management +window-management 1 snapshot -https://www.w3.org/TR/window-placement/#permissiondef-window-management +https://www.w3.org/TR/window-management/#permissiondef-window-management 1 1 - @@ -2856,6 +3136,17 @@ https://www.w3.org/TR/webdriver2/#dfn-window-prompt 1 - +windowAttribution +attribute +long-animation-frames +long-animation-frames +1 +current +https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-windowattribution +1 +1 +PerformanceScriptTiming +- windowControlsOverlay attribute window-controls-overlay @@ -2920,14 +3211,16 @@ https://drafts.csswg.org/css-color-3/#windowframe 1 - windowframe -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#windowframe - +https://drafts.csswg.org/css-color-4/#valdef-color-windowframe 1 +1 +<color> +<deprecated-color> - windowframe dfn @@ -2940,14 +3233,16 @@ https://www.w3.org/TR/css-color-3/#windowframe 1 - windowframe -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#windowframe - +https://www.w3.org/TR/css-color-4/#valdef-color-windowframe +1 1 +<color> +<deprecated-color> - windowproxy reference object dfn @@ -3130,14 +3425,16 @@ https://drafts.csswg.org/css-color-3/#windowtext 1 - windowtext -dfn +value css-color-4 css-color 4 current -https://drafts.csswg.org/css-color-4/#windowtext - +https://drafts.csswg.org/css-color-4/#valdef-color-windowtext +1 1 +<color> +<deprecated-color> - windowtext dfn @@ -3150,24 +3447,49 @@ https://www.w3.org/TR/css-color-3/#windowtext 1 - windowtext -dfn +value css-color-4 css-color 4 snapshot -https://www.w3.org/TR/css-color-4/#windowtext - +https://www.w3.org/TR/css-color-4/#valdef-color-windowtext +1 1 +<color> +<deprecated-color> - -with an error +winning-bid dfn -webrtc -webrtc +private-aggregation-api +private-aggregation-api 1 -snapshot -https://www.w3.org/TR/webrtc/#data-transport-closed-error +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value-winning-bid 1 +signal base value +- +with(index, value) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.with +1 +1 +%TypedArray% +- +with(index, value) +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.with +1 +1 +Array - withCredentials attribute @@ -3202,6 +3524,27 @@ https://xhr.spec.whatwg.org/#dom-xmlhttprequest-withcredentials 1 XMLHttpRequest - +withResolvers() +method +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.withResolvers +1 +1 +Promise +- +within home tab scope +dfn +manifest-incubations +manifest-incubations +1 +current +https://wicg.github.io/manifest-incubations/#dfn-within-home-tab-scope + +1 +- within scope dfn appmanifest diff --git a/bikeshed/spec-data/readonly/anchors/anchors-wo.data b/bikeshed/spec-data/readonly/anchors/anchors-wo.data index d9a0c08a7c..77c9e556a9 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-wo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-wo.data @@ -53,6 +53,16 @@ https://www.w3.org/TR/webxr-ar-module-1/#dom-xrinteractionmode-world-space 1 XRInteractionMode - +WordCharacters +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/text-processing.html#sec-wordcharacters +1 +1 +- WordCharacters(rer) abstract-op ecmascript @@ -268,6 +278,46 @@ current https://html.spec.whatwg.org/multipage/worklets.html#workletoptions 1 1 +- +word +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-word +1 + +- +word +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-word +1 + +- +word boundary +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#word-boundary + +1 +- +word boundary +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-word-boundary + + - word boundary dfn @@ -277,6 +327,46 @@ scroll-to-text-fragment current https://wicg.github.io/scroll-to-text-fragment/#word-boundary +1 +- +word boundary +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#word-boundary + +1 +- +word boundary +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-word-boundary + + +- +word boundary detection +dfn +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#word-boundary-detection + +1 +- +word boundary detection +dfn +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#word-boundary-detection + 1 - word bounded @@ -337,46 +427,6 @@ html current https://html.spec.whatwg.org/multipage/canvas.html#concept-canvastextdrawingstyles-word-spacing -1 -- -word-boundary-detection -property -css-text-4 -css-text -4 -current -https://drafts.csswg.org/css-text-4/#propdef-word-boundary-detection -1 -1 -- -word-boundary-detection -property -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#propdef-word-boundary-detection -1 -1 -- -word-boundary-expansion -property -css-text-4 -css-text -4 -current -https://drafts.csswg.org/css-text-4/#propdef-word-boundary-expansion -1 -1 -- -word-boundary-expansion -property -css-text-4 -css-text -4 -snapshot -https://www.w3.org/TR/css-text-4/#propdef-word-boundary-expansion -1 1 - word-break @@ -457,6 +507,26 @@ css-text snapshot https://www.w3.org/TR/css-text-4/#word-separator +1 +- +word-space-transform +property +css-text-4 +css-text +4 +current +https://drafts.csswg.org/css-text-4/#propdef-word-space-transform +1 +1 +- +word-space-transform +property +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#propdef-word-space-transform +1 1 - word-spacing @@ -490,6 +560,26 @@ https://drafts.csswg.org/css2/#propdef-word-spacing 1 - word-spacing +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/text.html#propdef-word-spacing +1 +1 +- +word-spacing +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/text.html#propdef-word-spacing +1 +1 +- +word-spacing dfn css22 css @@ -1012,6 +1102,50 @@ https://www.w3.org/TR/WGSL/#attribute-workgroup_size 1 attribute - +workgroup_size_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#recursive-descent-syntax-workgroup_size_attr + +1 +recursive descent syntax +- +workgroup_size_attr +dfn +wgsl +wgsl +1 +current +https://gpuweb.github.io/gpuweb/wgsl/#syntax-workgroup_size_attr + +1 +syntax +- +workgroup_size_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#recursive-descent-syntax-workgroup_size_attr + +1 +recursive descent syntax +- +workgroup_size_attr +dfn +wgsl +wgsl +1 +snapshot +https://www.w3.org/TR/WGSL/#syntax-workgroup_size_attr + +1 +syntax +- working draft dfn w3c-process @@ -1042,6 +1176,17 @@ https://www.w3.org/Consortium/Process/#GroupsWG 1 1 - +worklet +attribute +shared-storage +shared-storage +1 +current +https://wicg.github.io/shared-storage/#dom-sharedstorage-worklet +1 +1 +SharedStorage +- worklet agent dfn html @@ -1090,6 +1235,27 @@ html current https://html.spec.whatwg.org/multipage/webappapis.html#worklet-event-loop +1 +- +worklet function +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry-worklet-function + +1 +on event contribution cache entry +- +worklet function +dfn +private-aggregation-api +private-aggregation-api +1 +current +https://patcg-individual-drafts.github.io/private-aggregation-api/#worklet-function + 1 - worklet global scope type @@ -1122,6 +1288,17 @@ https://www.w3.org/Consortium/Process/#EventsW 1 1 - +worldMesh +dict-member +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dom-xrmetadata-worldmesh +1 +1 +XRMetadata +- would need a browsing context group switch due to report-only dfn html @@ -1150,6 +1327,16 @@ css-syntax snapshot https://www.w3.org/TR/css-syntax-3/#check-if-three-code-points-would-start-a-number +1 +- +would start a unicode-range +dfn +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range + 1 - would start an ident sequence diff --git a/bikeshed/spec-data/readonly/anchors/anchors-wr.data b/bikeshed/spec-data/readonly/anchors/anchors-wr.data index b506588714..1f6b198cd8 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-wr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-wr.data @@ -619,6 +619,28 @@ TransformStream - [[writable]] attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-writable + +1 +TCPSocket +- +[[writable]] +attribute +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dfn-writable-0 + +1 +UDPSocket +- +[[writable]] +attribute serial serial 1 @@ -819,10 +841,10 @@ css-text-4 css-text 4 current -https://drafts.csswg.org/css-text-4/#valdef-text-wrap-wrap +https://drafts.csswg.org/css-text-4/#valdef-text-wrap-mode-wrap 1 1 -text-wrap +text-wrap-mode - wrap dfn @@ -915,10 +937,10 @@ css-text-4 css-text 4 snapshot -https://www.w3.org/TR/css-text-4/#valdef-text-wrap-wrap +https://www.w3.org/TR/css-text-4/#valdef-text-wrap-mode-wrap 1 1 -text-wrap +text-wrap-mode - wrap dfn @@ -1114,7 +1136,7 @@ webcryptoapi 1 snapshot https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-wrapKey -1 + 1 - wrapped function exotic object @@ -1297,6 +1319,17 @@ webrtc-encoded-transform webrtc-encoded-transform 1 current +https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-writable +1 +1 +RTCRtpScriptTransform +- +writable +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +current https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-writable 1 1 @@ -1336,6 +1369,28 @@ https://w3c.github.io/webtransport/#webtransportdatagramduplexstream-create-writ WebTransportDatagramDuplexStream/create - writable +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-tcpsocketopeninfo-writable +1 +1 +TCPSocketOpenInfo +- +writable +dict-member +direct-sockets +direct-sockets +1 +current +https://wicg.github.io/direct-sockets/#dom-udpsocketopeninfo-writable +1 +1 +UDPSocketOpenInfo +- +writable attribute serial serial @@ -1363,6 +1418,17 @@ webrtc-encoded-transform webrtc-encoded-transform 1 snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransform-writable +1 +1 +RTCRtpScriptTransform +- +writable +attribute +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-writable 1 1 @@ -1428,7 +1494,7 @@ streams 1 current https://streams.spec.whatwg.org/#writer - +1 1 - writableAuxiliaries @@ -1536,6 +1602,7 @@ https://webidl.spec.whatwg.org/#arraybuffer-write 1 1 ArrayBuffer +SharedArrayBuffer - write dfn @@ -1640,6 +1707,16 @@ clipboard-apis current https://w3c.github.io/clipboard-apis/#write-blobs-and-option-to-the-clipboard +1 +- +write blobs and option to the clipboard +dfn +clipboard-apis +clipboard-apis +1 +snapshot +https://www.w3.org/TR/clipboard-apis/#write-blobs-and-option-to-the-clipboard + 1 - write bytes @@ -1710,6 +1787,16 @@ web-bluetooth current https://webbluetoothcg.github.io/web-bluetooth/#write-long-characteristic-descriptors +1 +- +write web custom formats +dfn +clipboard-apis +clipboard-apis +1 +current +https://w3c.github.io/clipboard-apis/#write-web-custom-formats + 1 - write without response @@ -1849,9 +1936,10 @@ wgsl wgsl 1 current -https://gpuweb.github.io/gpuweb/wgsl/#write-only-storage-texture +https://gpuweb.github.io/gpuweb/wgsl/#type-write-only-storage-texture 1 +type - write-only storage texture dfn @@ -1859,9 +1947,10 @@ wgsl wgsl 1 snapshot -https://www.w3.org/TR/WGSL/#write-only-storage-texture +https://www.w3.org/TR/WGSL/#type-write-only-storage-texture 1 +type - writeBuffer(buffer, bufferOffset, data) method @@ -1929,6 +2018,26 @@ https://www.w3.org/TR/webgpu/#dom-gpuqueue-writebuffer 1 GPUQueue - +writeEncodedData +abstract-op +webrtc-encoded-transform +webrtc-encoded-transform +1 +current +https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-writeencodeddata +1 +1 +- +writeEncodedData +abstract-op +webrtc-encoded-transform +webrtc-encoded-transform +1 +snapshot +https://www.w3.org/TR/webrtc-encoded-transform/#abstract-opdef-writeencodeddata +1 +1 +- writeMask dict-member webgpu @@ -1995,28 +2104,6 @@ https://www.w3.org/TR/webgpu/#dom-gpuqueue-writetexture 1 GPUQueue - -writeTimestamp(querySet, queryIndex) -method -webgpu -webgpu -1 -current -https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-writetimestamp -1 -1 -GPUCommandEncoder -- -writeTimestamp(querySet, queryIndex) -method -webgpu -webgpu -1 -snapshot -https://www.w3.org/TR/webgpu/#dom-gpucommandencoder-writetimestamp -1 -1 -GPUCommandEncoder -- writeValue(value) method web-bluetooth @@ -2111,26 +2198,6 @@ webtransport snapshot https://www.w3.org/TR/webtransport/#writedatagrams -1 -- -writeencodeddata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -current -https://w3c.github.io/webrtc-encoded-transform/#writeencodeddata - -1 -- -writeencodeddata -dfn -webrtc-encoded-transform -webrtc-encoded-transform -1 -snapshot -https://www.w3.org/TR/webrtc-encoded-transform/#writeencodeddata - 1 - writeframe @@ -2160,7 +2227,7 @@ streams 1 current https://streams.spec.whatwg.org/#writer - +1 1 - writesharedmemory @@ -2234,6 +2301,26 @@ snapshot https://www.w3.org/TR/css-writing-modes-4/#writing-mode 1 1 +- +writing system +dfn +i18n-glossary +i18n-glossary +1 +current +https://w3c.github.io/i18n-glossary/#dfn-writing-system + + +- +writing system +dfn +i18n-glossary +i18n-glossary +1 +snapshot +https://www.w3.org/TR/i18n-glossary/#dfn-writing-system + + - writing system keys dfn @@ -2295,6 +2382,28 @@ https://www.w3.org/TR/css-writing-modes-4/#propdef-writing-mode 1 1 - +writingSuggestions +attribute +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#dom-writingsuggestions +1 +1 +HTMLElement +- +writingsuggestions +element-attr +html +html +1 +current +https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions +1 +1 +html-global +- written dict-member encoding diff --git a/bikeshed/spec-data/readonly/anchors/anchors-x_.data b/bikeshed/spec-data/readonly/anchors/anchors-x_.data index 5fe0e3ad01..bc6282cbf7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-x_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-x_.data @@ -1,3 +1,25 @@ +"x" +enum-value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#dom-scrollaxis-x +1 +1 +ScrollAxis +- +"x" +enum-value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#dom-scrollaxis-x +1 +1 +ScrollAxis +- x argument css-typed-om-1 @@ -121,9 +143,10 @@ cssom-view-1 cssom-view 1 current -https://drafts.csswg.org/cssom-view-1/#dom-document-caretpositionfrompoint-x-y-x +https://drafts.csswg.org/cssom-view-1/#dom-document-caretpositionfrompoint-x-y-options-x 1 1 +Document/caretPositionFromPoint(x, y, options) Document/caretPositionFromPoint(x, y) - x @@ -270,6 +293,19 @@ https://drafts.csswg.org/cssom-view-1/#dom-window-scrollto-x-y-x Window/scrollTo(x, y) - x +value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-x +1 +1 +scroll() +scroll-timeline-axis +view-timeline-axis +- +x attribute css-masking-1 css-masking @@ -632,10 +668,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#origin2d-x +https://gpuweb.github.io/gpuweb/#gpuorigin2d-x 1 -Origin2D +GPUOrigin2D - x dfn @@ -643,10 +679,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#origin3d-x +https://gpuweb.github.io/gpuweb/#gpuorigin3d-x 1 -Origin3D +GPUOrigin3D - x dfn @@ -812,15 +848,15 @@ https://w3c.github.io/accelerometer/#dom-accelerometer-x Accelerometer - x -dict-member -accelerometer -accelerometer +dfn +orientation-event +orientation-event 1 current -https://w3c.github.io/accelerometer/#dom-accelerometerreadingvalues-x -1 +https://w3c.github.io/deviceorientation/#device-orientation-x + 1 -AccelerometerReadingValues +Device Orientation - x attribute @@ -856,17 +892,6 @@ https://w3c.github.io/gyroscope/#dom-gyroscope-x Gyroscope - x -dict-member -gyroscope -gyroscope -1 -current -https://w3c.github.io/gyroscope/#dom-gyroscopereadingvalues-x -1 -1 -GyroscopeReadingValues -- -x attribute magnetometer magnetometer @@ -878,17 +903,6 @@ https://w3c.github.io/magnetometer/#dom-magnetometer-x Magnetometer - x -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-magnetometerreadingvalues-x -1 -1 -MagnetometerReadingValues -- -x attribute magnetometer magnetometer @@ -901,17 +915,6 @@ UncalibratedMagnetometer - x dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-x -1 -1 -UncalibratedMagnetometerReadingValues -- -x -dict-member image-capture image-capture 1 @@ -931,16 +934,6 @@ https://w3c.github.io/webcrypto/#dom-jsonwebkey-x 1 1 JsonWebKey -- -x -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-x - - - x argument @@ -1031,241 +1024,15 @@ https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-x PannerNode/setPosition(x, y, z) - x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-abs-x-x -1 -1 -MLGraphBuilder/abs(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-ceil-x-x -1 -1 -MLGraphBuilder/ceil(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-clamp-x-options-x -1 -1 -MLGraphBuilder/clamp(x, options) -MLGraphBuilder/clamp(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-cos-x-x -1 -1 -MLGraphBuilder/cos(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-elu-x-options-x -1 -1 -MLGraphBuilder/elu(x, options) -MLGraphBuilder/elu(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-exp-x-x -1 -1 -MLGraphBuilder/exp(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-floor-x-x -1 -1 -MLGraphBuilder/floor(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardsigmoid-x-options-x -1 -1 -MLGraphBuilder/hardSigmoid(x, options) -MLGraphBuilder/hardSigmoid(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-hardswish-x-x -1 -1 -MLGraphBuilder/hardSwish(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-leakyrelu-x-options-x -1 -1 -MLGraphBuilder/leakyRelu(x, options) -MLGraphBuilder/leakyRelu(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-linear-x-options-x -1 -1 -MLGraphBuilder/linear(x, options) -MLGraphBuilder/linear(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-log-x-x -1 -1 -MLGraphBuilder/log(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-neg-x-x -1 -1 -MLGraphBuilder/neg(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-relu-x-x -1 -1 -MLGraphBuilder/relu(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sigmoid-x-x -1 -1 -MLGraphBuilder/sigmoid(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-sin-x-x -1 -1 -MLGraphBuilder/sin(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softmax-x-x -1 -1 -MLGraphBuilder/softmax(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softplus-x-options-x -1 -1 -MLGraphBuilder/softplus(x, options) -MLGraphBuilder/softplus(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-softsign-x-x -1 -1 -MLGraphBuilder/softsign(x) -- -x -argument -webnn -webnn -1 -current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tan-x-x -1 -1 -MLGraphBuilder/tan(x) -- -x -argument -webnn -webnn +dict-member +handwriting-recognition +handwriting-recognition 1 current -https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-tanh-x-x +https://wicg.github.io/handwriting-recognition/#dom-handwritingpoint-x 1 1 -MLGraphBuilder/tanh(x) +HandwritingPoint - x attribute @@ -1388,17 +1155,6 @@ https://www.w3.org/TR/accelerometer/#dom-accelerometer-x Accelerometer - x -dict-member -accelerometer -accelerometer -1 -snapshot -https://www.w3.org/TR/accelerometer/#dom-accelerometerreadingvalues-x -1 -1 -AccelerometerReadingValues -- -x value css-color-5 css-color @@ -1459,32 +1215,11 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-csspositionvalue-csspositionvalue-x-y-x -1 -1 -CSSPositionValue/CSSPositionValue(x, y) -- -x -attribute -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-csspositionvalue-x -1 -1 -CSSPositionValue -- -x -argument -css-typed-om-1 -css-typed-om -1 -snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate-x-y-z-angle-x 1 1 CSSRotate/CSSRotate(x, y, z, angle) +CSSRotate/constructor(x, y, z, angle) - x attribute @@ -1507,6 +1242,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssscale-cssscale-x-y-z-x 1 1 CSSScale/CSSScale(x, y, z) +CSSScale/constructor(x, y, z) +CSSScale/CSSScale(x, y) +CSSScale/constructor(x, y) - x attribute @@ -1529,6 +1267,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-csstranslate-csstranslate-x-y-z-x 1 1 CSSTranslate/CSSTranslate(x, y, z) +CSSTranslate/constructor(x, y, z) +CSSTranslate/CSSTranslate(x, y) +CSSTranslate/constructor(x, y) - x attribute @@ -1985,17 +1726,6 @@ Gyroscope - x dict-member -gyroscope -gyroscope -1 -snapshot -https://www.w3.org/TR/gyroscope/#dom-gyroscopereadingvalues-x -1 -1 -GyroscopeReadingValues -- -x -dict-member image-capture image-capture 1 @@ -2017,17 +1747,6 @@ https://www.w3.org/TR/magnetometer/#dom-magnetometer-x Magnetometer - x -dict-member -magnetometer -magnetometer -1 -snapshot -https://www.w3.org/TR/magnetometer/#dom-magnetometerreadingvalues-x -1 -1 -MagnetometerReadingValues -- -x attribute magnetometer magnetometer @@ -2039,15 +1758,15 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-x UncalibratedMagnetometer - x -dict-member -magnetometer -magnetometer +dfn +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-x -1 +https://www.w3.org/TR/orientation-event/#device-orientation-x + 1 -UncalibratedMagnetometerReadingValues +Device Orientation - x attribute @@ -2072,6 +1791,19 @@ https://www.w3.org/TR/orientation-event/#dom-devicemotioneventaccelerationinit-x DeviceMotionEventAccelerationInit - x +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-scroll-x +1 +1 +scroll() +scroll-timeline-axis +view-timeline-axis +- +x argument webaudio webaudio @@ -2158,16 +1890,6 @@ https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-x 1 1 PannerNode/setPosition(x, y, z) -- -x -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-x - - - x dict-member @@ -2219,10 +1941,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#origin2d-x +https://www.w3.org/TR/webgpu/#gpuorigin2d-x 1 -Origin2D +GPUOrigin2D - x dfn @@ -2230,247 +1952,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#origin3d-x +https://www.w3.org/TR/webgpu/#gpuorigin3d-x 1 -Origin3D -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs-x-x -1 -1 -MLGraphBuilder/abs(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil-x-x -1 -1 -MLGraphBuilder/ceil(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-x-options-x -1 -1 -MLGraphBuilder/clamp(x, options) -MLGraphBuilder/clamp(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos-x-x -1 -1 -MLGraphBuilder/cos(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-x-options-x -1 -1 -MLGraphBuilder/elu(x, options) -MLGraphBuilder/elu(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp-x-x -1 -1 -MLGraphBuilder/exp(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor-x-x -1 -1 -MLGraphBuilder/floor(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-x-options-x -1 -1 -MLGraphBuilder/hardSigmoid(x, options) -MLGraphBuilder/hardSigmoid(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish-x-x -1 -1 -MLGraphBuilder/hardSwish(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-x-options-x -1 -1 -MLGraphBuilder/leakyRelu(x, options) -MLGraphBuilder/leakyRelu(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-x-options-x -1 -1 -MLGraphBuilder/linear(x, options) -MLGraphBuilder/linear(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log-x-x -1 -1 -MLGraphBuilder/log(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg-x-x -1 -1 -MLGraphBuilder/neg(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu-x-x -1 -1 -MLGraphBuilder/relu(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid-x-x -1 -1 -MLGraphBuilder/sigmoid(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin-x-x -1 -1 -MLGraphBuilder/sin(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-x-x -1 -1 -MLGraphBuilder/softmax(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-x-options-x -1 -1 -MLGraphBuilder/softplus(x, options) -MLGraphBuilder/softplus(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign-x-x -1 -1 -MLGraphBuilder/softsign(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan-x-x -1 -1 -MLGraphBuilder/tan(x) -- -x -argument -webnn -webnn -1 -snapshot -https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh-x-x -1 -1 -MLGraphBuilder/tanh(x) +GPUOrigin3D - x argument diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xa.data b/bikeshed/spec-data/readonly/anchors/anchors-xa.data index 4f263e7715..3bf48e9c24 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xa.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xa.data @@ -1,3 +1,47 @@ +x axis acceleration +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#devicemotioneventacceleration-x-axis-acceleration + +1 +DeviceMotionEventAcceleration +- +x axis acceleration +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#devicemotioneventacceleration-x-axis-acceleration + +1 +DeviceMotionEventAcceleration +- +x axis rotation rate +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#devicemotioneventrotationrate-x-axis-rotation-rate + +1 +DeviceMotionEventRotationRate +- +x axis rotation rate +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#devicemotioneventrotationrate-x-axis-rotation-rate + +1 +DeviceMotionEventRotationRate +- x-axis dfn css-writing-modes-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xb.data b/bikeshed/spec-data/readonly/anchors/anchors-xb.data index 2b4258fa8f..abb44ff279 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xb.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xb.data @@ -10,17 +10,6 @@ https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometer-xbias UncalibratedMagnetometer - xBias -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-xbias -1 -1 -UncalibratedMagnetometerReadingValues -- -xBias attribute magnetometer magnetometer @@ -31,14 +20,3 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-xbias 1 UncalibratedMagnetometer - -xBias -dict-member -magnetometer -magnetometer -1 -snapshot -https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-xbias -1 -1 -UncalibratedMagnetometerReadingValues -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xe.data b/bikeshed/spec-data/readonly/anchors/anchors-xe.data new file mode 100644 index 0000000000..699d0e956a --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-xe.data @@ -0,0 +1,24 @@ +x-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-end +1 +1 +position-area +<position-area> +- +x-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-end +1 +1 +inset-area +<inset-area> +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xf.data b/bikeshed/spec-data/readonly/anchors/anchors-xf.data index c6ab4934ad..3e08df3736 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xf.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xf.data @@ -20,6 +20,16 @@ https://www.w3.org/TR/css-speech-1/#valdef-voice-rate-x-fast 1 voice-rate - +x-fledge-bidding-signals-format-version +http-header +turtledove +turtledove +1 +current +https://wicg.github.io/turtledove/#http-headerdef-x-fledge-bidding-signals-format-version +1 +1 +- x-frame-options http-header html diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xh.data b/bikeshed/spec-data/readonly/anchors/anchors-xh.data index 7cdbbf88b1..f71c743345 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xh.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xh.data @@ -1,3 +1,23 @@ +x-height +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/syndata.html#ex +1 +1 +- +x-height +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/syndata.html#ex +1 +1 +- x-height baseline dfn css-inline-3 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xo.data b/bikeshed/spec-data/readonly/anchors/anchors-xo.data index b6cf61bc05..3cd59e10c4 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xo.data @@ -1,3 +1,23 @@ +<xor/> +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_xor + +1 +- +<xor/> +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_xor + +1 +- xor dfn compositing-2 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xr.data b/bikeshed/spec-data/readonly/anchors/anchors-xr.data index 09378eb99b..05ae8e1632 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xr.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xr.data @@ -36,26 +36,6 @@ webxr snapshot https://www.w3.org/TR/webxr/#permissiondef-xr-session-supported 1 -1 -- -"xr-standard" -dfn -gamepad -gamepad -1 -current -https://w3c.github.io/gamepad/#dfn-xr-standard - -1 -- -"xr-standard" -dfn -gamepad -gamepad -1 -snapshot -https://www.w3.org/TR/gamepad/#dfn-xr-standard - 1 - "xr-standard" gamepad mapping @@ -1014,6 +994,26 @@ https://www.w3.org/TR/webxrlayers-1/#enumdef-xrlayerlayout 1 1 - +XRLayerQuality +enum +webxrlayers-1 +webxrlayers +1 +current +https://immersive-web.github.io/layers/#enumdef-xrlayerquality +1 +1 +- +XRLayerQuality +enum +webxrlayers-1 +webxrlayers +1 +snapshot +https://www.w3.org/TR/webxrlayers-1/#enumdef-xrlayerquality +1 +1 +- XRLightEstimate interface webxr-lighting-estimation-1 @@ -1196,6 +1196,76 @@ https://www.w3.org/TR/webxrlayers-1/#dictdef-xrmediaquadlayerinit 1 1 - +XRMesh +interface +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#xrmesh +1 +1 +- +XRMeshBlock +dictionary +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dictdef-xrmeshblock +1 +1 +- +XRMeshQuality +enum +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#enumdef-xrmeshquality +1 +1 +- +XRMeshSet +interface +real-world-meshing +real-world-meshing +1 +current +https://immersive-web.github.io/real-world-meshing/#xrmeshset +1 +1 +- +XRMetadata +dictionary +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dictdef-xrmetadata +1 +1 +- +XRNearMesh +interface +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xrnearmesh +1 +1 +- +XRNearMeshFeature +dictionary +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dictdef-xrnearmeshfeature +1 +1 +- XRPermissionDescriptor dictionary webxr @@ -1236,6 +1306,36 @@ https://www.w3.org/TR/webxr/#xrpermissionstatus 1 1 - +XRPlane +interface +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#xrplane +1 +1 +- +XRPlaneOrientation +enum +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#enumdef-xrplaneorientation +1 +1 +- +XRPlaneSet +interface +webxr-plane-detection +webxr-plane-detection +1 +current +https://immersive-web.github.io/real-world-geometry/plane-detection.html#xrplaneset +1 +1 +- XRPose interface webxr @@ -2280,6 +2380,26 @@ https://www.w3.org/TR/webxrlayers-1/#xrwebglsubimage 1 1 - +XRWorldMesh +interface +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xrworldmesh +1 +1 +- +XRWorldMeshFeature +dictionary +webxr-meshing +webxr-meshing +1 +current +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#dictdef-xrworldmeshfeature +1 +1 +- xr attribute webxr diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xs.data b/bikeshed/spec-data/readonly/anchors/anchors-xs.data index c55f1f6f56..51ff896916 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xs.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xs.data @@ -30,6 +30,54 @@ https://dom.spec.whatwg.org/#dom-xsltprocessor-xsltprocessor 1 XSLTProcessor - +x-self-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-self-end +1 +1 +position-area +<position-area> +- +x-self-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-self-end +1 +1 +inset-area +<inset-area> +- +x-self-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-self-start +1 +1 +position-area +<position-area> +- +x-self-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-self-start +1 +1 +inset-area +<inset-area> +- x-slow value css-speech-1 @@ -85,6 +133,30 @@ https://www.w3.org/TR/css-speech-1/#valdef-voice-volume-x-soft 1 voice-volume - +x-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-start +1 +1 +position-area +<position-area> +- +x-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-start +1 +1 +inset-area +<inset-area> +- x-strong value css-speech-1 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-xy.data b/bikeshed/spec-data/readonly/anchors/anchors-xy.data index 7f7f6e1d61..0d3f0a40f7 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-xy.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-xy.data @@ -20,6 +20,16 @@ https://drafts.csswg.org/css-color-5/#typedef-xyz-params - <xyz-params> type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-xyz-params +1 +1 +- +<xyz-params> +type css-color-4 css-color 4 @@ -70,6 +80,16 @@ https://drafts.csswg.org/css-color-5/#typedef-xyz - <xyz> type +css-color-hdr +css-color-hdr +1 +current +https://drafts.csswg.org/css-color-hdr/#typedef-xyz +1 +1 +- +<xyz> +type css-color-5 css-color 5 diff --git a/bikeshed/spec-data/readonly/anchors/anchors-y_.data b/bikeshed/spec-data/readonly/anchors/anchors-y_.data index ac1580dd15..52e29018de 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-y_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-y_.data @@ -1,3 +1,25 @@ +"y" +enum-value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#dom-scrollaxis-y +1 +1 +ScrollAxis +- +"y" +enum-value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#dom-scrollaxis-y +1 +1 +ScrollAxis +- y argument css-typed-om-1 @@ -110,9 +132,10 @@ cssom-view-1 cssom-view 1 current -https://drafts.csswg.org/cssom-view-1/#dom-document-caretpositionfrompoint-x-y-y +https://drafts.csswg.org/cssom-view-1/#dom-document-caretpositionfrompoint-x-y-options-y 1 1 +Document/caretPositionFromPoint(x, y, options) Document/caretPositionFromPoint(x, y) - y @@ -259,6 +282,19 @@ https://drafts.csswg.org/cssom-view-1/#dom-window-scrollto-x-y-y Window/scrollTo(x, y) - y +value +scroll-animations-1 +scroll-animations +1 +current +https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-y +1 +1 +scroll() +scroll-timeline-axis +view-timeline-axis +- +y attribute css-masking-1 css-masking @@ -621,10 +657,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#origin2d-y +https://gpuweb.github.io/gpuweb/#gpuorigin2d-y 1 -Origin2D +GPUOrigin2D - y dfn @@ -632,10 +668,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#origin3d-y +https://gpuweb.github.io/gpuweb/#gpuorigin3d-y 1 -Origin3D +GPUOrigin3D - y dfn @@ -801,15 +837,15 @@ https://w3c.github.io/accelerometer/#dom-accelerometer-y Accelerometer - y -dict-member -accelerometer -accelerometer +dfn +orientation-event +orientation-event 1 current -https://w3c.github.io/accelerometer/#dom-accelerometerreadingvalues-y -1 +https://w3c.github.io/deviceorientation/#device-orientation-y + 1 -AccelerometerReadingValues +Device Orientation - y attribute @@ -845,17 +881,6 @@ https://w3c.github.io/gyroscope/#dom-gyroscope-y Gyroscope - y -dict-member -gyroscope -gyroscope -1 -current -https://w3c.github.io/gyroscope/#dom-gyroscopereadingvalues-y -1 -1 -GyroscopeReadingValues -- -y attribute magnetometer magnetometer @@ -867,17 +892,6 @@ https://w3c.github.io/magnetometer/#dom-magnetometer-y Magnetometer - y -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-magnetometerreadingvalues-y -1 -1 -MagnetometerReadingValues -- -y attribute magnetometer magnetometer @@ -890,17 +904,6 @@ UncalibratedMagnetometer - y dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-y -1 -1 -UncalibratedMagnetometerReadingValues -- -y -dict-member image-capture image-capture 1 @@ -920,16 +923,6 @@ https://w3c.github.io/webcrypto/#dom-jsonwebkey-y 1 1 JsonWebKey -- -y -dfn -webdriver2 -webdriver -2 -current -https://w3c.github.io/webdriver/#dfn-elementrect-y - - - y argument @@ -1020,6 +1013,17 @@ https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-y PannerNode/setPosition() - y +dict-member +handwriting-recognition +handwriting-recognition +1 +current +https://wicg.github.io/handwriting-recognition/#dom-handwritingpoint-y +1 +1 +HandwritingPoint +- +y attribute svg2 svg @@ -1140,17 +1144,6 @@ https://www.w3.org/TR/accelerometer/#dom-accelerometer-y Accelerometer - y -dict-member -accelerometer -accelerometer -1 -snapshot -https://www.w3.org/TR/accelerometer/#dom-accelerometerreadingvalues-y -1 -1 -AccelerometerReadingValues -- -y value css-color-5 css-color @@ -1211,32 +1204,11 @@ css-typed-om-1 css-typed-om 1 snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-csspositionvalue-csspositionvalue-x-y-y -1 -1 -CSSPositionValue/CSSPositionValue(x, y) -- -y -attribute -css-typed-om-1 -css-typed-om -1 -snapshot -https://www.w3.org/TR/css-typed-om-1/#dom-csspositionvalue-y -1 -1 -CSSPositionValue -- -y -argument -css-typed-om-1 -css-typed-om -1 -snapshot https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate-x-y-z-angle-y 1 1 CSSRotate/CSSRotate(x, y, z, angle) +CSSRotate/constructor(x, y, z, angle) - y attribute @@ -1259,6 +1231,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssscale-cssscale-x-y-z-y 1 1 CSSScale/CSSScale(x, y, z) +CSSScale/constructor(x, y, z) +CSSScale/CSSScale(x, y) +CSSScale/constructor(x, y) - y attribute @@ -1281,6 +1256,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-csstranslate-csstranslate-x-y-z-y 1 1 CSSTranslate/CSSTranslate(x, y, z) +CSSTranslate/constructor(x, y, z) +CSSTranslate/CSSTranslate(x, y) +CSSTranslate/constructor(x, y) - y attribute @@ -1726,17 +1704,6 @@ Gyroscope - y dict-member -gyroscope -gyroscope -1 -snapshot -https://www.w3.org/TR/gyroscope/#dom-gyroscopereadingvalues-y -1 -1 -GyroscopeReadingValues -- -y -dict-member image-capture image-capture 1 @@ -1758,17 +1725,6 @@ https://www.w3.org/TR/magnetometer/#dom-magnetometer-y Magnetometer - y -dict-member -magnetometer -magnetometer -1 -snapshot -https://www.w3.org/TR/magnetometer/#dom-magnetometerreadingvalues-y -1 -1 -MagnetometerReadingValues -- -y attribute magnetometer magnetometer @@ -1780,15 +1736,15 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-y UncalibratedMagnetometer - y -dict-member -magnetometer -magnetometer +dfn +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-y -1 +https://www.w3.org/TR/orientation-event/#device-orientation-y + 1 -UncalibratedMagnetometerReadingValues +Device Orientation - y attribute @@ -1813,6 +1769,19 @@ https://www.w3.org/TR/orientation-event/#dom-devicemotioneventaccelerationinit-y DeviceMotionEventAccelerationInit - y +value +scroll-animations-1 +scroll-animations +1 +snapshot +https://www.w3.org/TR/scroll-animations-1/#valdef-scroll-y +1 +1 +scroll() +scroll-timeline-axis +view-timeline-axis +- +y argument webaudio webaudio @@ -1899,16 +1868,6 @@ https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-y 1 1 PannerNode/setPosition() -- -y -dfn -webdriver2 -webdriver -2 -snapshot -https://www.w3.org/TR/webdriver2/#dfn-elementrect-y - - - y dict-member @@ -1960,10 +1919,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#origin2d-y +https://www.w3.org/TR/webgpu/#gpuorigin2d-y 1 -Origin2D +GPUOrigin2D - y dfn @@ -1971,10 +1930,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#origin3d-y +https://www.w3.org/TR/webgpu/#gpuorigin3d-y 1 -Origin3D +GPUOrigin3D - y argument diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ya.data b/bikeshed/spec-data/readonly/anchors/anchors-ya.data index 154bdcea9a..eec5c3905d 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ya.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ya.data @@ -1,3 +1,47 @@ +y axis acceleration +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#devicemotioneventacceleration-y-axis-acceleration + +1 +DeviceMotionEventAcceleration +- +y axis acceleration +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#devicemotioneventacceleration-y-axis-acceleration + +1 +DeviceMotionEventAcceleration +- +y axis rotation rate +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#devicemotioneventrotationrate-y-axis-rotation-rate + +1 +DeviceMotionEventRotationRate +- +y axis rotation rate +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#devicemotioneventrotationrate-y-axis-rotation-rate + +1 +DeviceMotionEventRotationRate +- y-axis dfn css-writing-modes-3 @@ -38,23 +82,3 @@ https://www.w3.org/TR/css-writing-modes-4/#y-axis 1 1 - -yank -dfn -input-events-2 -input-events -2 -current -https://w3c.github.io/input-events/#dfn-yank - -1 -- -yank -dfn -input-events-2 -input-events -2 -snapshot -https://www.w3.org/TR/input-events-2/#dfn-yank - - -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-yb.data b/bikeshed/spec-data/readonly/anchors/anchors-yb.data index 06eec7164d..350aa0bc30 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-yb.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-yb.data @@ -10,17 +10,6 @@ https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometer-ybias UncalibratedMagnetometer - yBias -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-ybias -1 -1 -UncalibratedMagnetometerReadingValues -- -yBias attribute magnetometer magnetometer @@ -31,14 +20,3 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-ybias 1 UncalibratedMagnetometer - -yBias -dict-member -magnetometer -magnetometer -1 -snapshot -https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-ybias -1 -1 -UncalibratedMagnetometerReadingValues -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ye.data b/bikeshed/spec-data/readonly/anchors/anchors-ye.data index 1f525be7a2..a85a41a022 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ye.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ye.data @@ -1,3 +1,47 @@ +YearFromTime +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-yearfromtime +1 +1 +- +YearFromTime(t) +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-yearfromtime +1 +1 +- +y-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-end +1 +1 +position-area +<position-area> +- +y-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-end +1 +1 +inset-area +<inset-area> +- yearless date dfn html @@ -28,6 +72,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-yellow 1 1 <color> +<named-color> - yellow value @@ -60,6 +105,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-yellow 1 1 <color> +<named-color> - yellowgreen dfn @@ -81,6 +127,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-yellowgreen 1 1 <color> +<named-color> - yellowgreen dfn @@ -102,4 +149,26 @@ https://www.w3.org/TR/css-color-4/#valdef-color-yellowgreen 1 1 <color> +<named-color> +- +yes +attr-value +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#attr-translate-yes-keyword +1 +1 +html-global/translate +- +yes +dfn +html +html +1 +current +https://html.spec.whatwg.org/multipage/dom.html#attr-translate-yes-state + +1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-yi.data b/bikeshed/spec-data/readonly/anchors/anchors-yi.data index 792ba71f5f..52a4f41a3b 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-yi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-yi.data @@ -1,3 +1,13 @@ +Yield +abstract-op +ecmascript +ecmascript +1 +current +https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-yield +1 +1 +- Yield(value) abstract-op ecmascript @@ -8,3 +18,14 @@ https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-yield 1 1 - +yield() +method +scheduling-apis +scheduling-apis +1 +current +https://wicg.github.io/scheduling-apis/#dom-scheduler-yield +1 +1 +Scheduler +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ys.data b/bikeshed/spec-data/readonly/anchors/anchors-ys.data new file mode 100644 index 0000000000..999768d1ec --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-ys.data @@ -0,0 +1,72 @@ +y-self-end +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-self-end +1 +1 +position-area +<position-area> +- +y-self-end +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-self-end +1 +1 +inset-area +<inset-area> +- +y-self-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-self-start +1 +1 +position-area +<position-area> +- +y-self-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-self-start +1 +1 +inset-area +<inset-area> +- +y-start +value +css-anchor-position-1 +css-anchor-position +1 +current +https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-start +1 +1 +position-area +<position-area> +- +y-start +value +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-start +1 +1 +inset-area +<inset-area> +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-z_.data b/bikeshed/spec-data/readonly/anchors/anchors-z_.data index 897b16c585..369e6602ca 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-z_.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-z_.data @@ -247,10 +247,10 @@ webgpu webgpu 1 current -https://gpuweb.github.io/gpuweb/#origin3d-z +https://gpuweb.github.io/gpuweb/#gpuorigin3d-z 1 -Origin3D +GPUOrigin3D - z dict-member @@ -275,15 +275,15 @@ https://w3c.github.io/accelerometer/#dom-accelerometer-z Accelerometer - z -dict-member -accelerometer -accelerometer +dfn +orientation-event +orientation-event 1 current -https://w3c.github.io/accelerometer/#dom-accelerometerreadingvalues-z -1 +https://w3c.github.io/deviceorientation/#device-orientation-z + 1 -AccelerometerReadingValues +Device Orientation - z attribute @@ -319,17 +319,6 @@ https://w3c.github.io/gyroscope/#dom-gyroscope-z Gyroscope - z -dict-member -gyroscope -gyroscope -1 -current -https://w3c.github.io/gyroscope/#dom-gyroscopereadingvalues-z -1 -1 -GyroscopeReadingValues -- -z attribute magnetometer magnetometer @@ -341,17 +330,6 @@ https://w3c.github.io/magnetometer/#dom-magnetometer-z Magnetometer - z -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-magnetometerreadingvalues-z -1 -1 -MagnetometerReadingValues -- -z attribute magnetometer magnetometer @@ -363,17 +341,6 @@ https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometer-z UncalibratedMagnetometer - z -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-z -1 -1 -UncalibratedMagnetometerReadingValues -- -z argument webaudio webaudio @@ -473,17 +440,6 @@ https://www.w3.org/TR/accelerometer/#dom-accelerometer-z Accelerometer - z -dict-member -accelerometer -accelerometer -1 -snapshot -https://www.w3.org/TR/accelerometer/#dom-accelerometerreadingvalues-z -1 -1 -AccelerometerReadingValues -- -z value css-color-5 css-color @@ -515,6 +471,7 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssrotate-cssrotate-x-y-z-angle-z 1 1 CSSRotate/CSSRotate(x, y, z, angle) +CSSRotate/constructor(x, y, z, angle) - z attribute @@ -537,6 +494,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-cssscale-cssscale-x-y-z-z 1 1 CSSScale/CSSScale(x, y, z) +CSSScale/constructor(x, y, z) +CSSScale/CSSScale(x, y) +CSSScale/constructor(x, y) - z attribute @@ -559,6 +519,9 @@ https://www.w3.org/TR/css-typed-om-1/#dom-csstranslate-csstranslate-x-y-z-z 1 1 CSSTranslate/CSSTranslate(x, y, z) +CSSTranslate/constructor(x, y, z) +CSSTranslate/CSSTranslate(x, y) +CSSTranslate/constructor(x, y) - z attribute @@ -702,17 +665,6 @@ https://www.w3.org/TR/gyroscope/#dom-gyroscope-z Gyroscope - z -dict-member -gyroscope -gyroscope -1 -snapshot -https://www.w3.org/TR/gyroscope/#dom-gyroscopereadingvalues-z -1 -1 -GyroscopeReadingValues -- -z attribute magnetometer magnetometer @@ -724,17 +676,6 @@ https://www.w3.org/TR/magnetometer/#dom-magnetometer-z Magnetometer - z -dict-member -magnetometer -magnetometer -1 -snapshot -https://www.w3.org/TR/magnetometer/#dom-magnetometerreadingvalues-z -1 -1 -MagnetometerReadingValues -- -z attribute magnetometer magnetometer @@ -746,15 +687,15 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-z UncalibratedMagnetometer - z -dict-member -magnetometer -magnetometer +dfn +orientation-event +orientation-event 1 snapshot -https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-z -1 +https://www.w3.org/TR/orientation-event/#device-orientation-z + 1 -UncalibratedMagnetometerReadingValues +Device Orientation - z attribute @@ -883,10 +824,10 @@ webgpu webgpu 1 snapshot -https://www.w3.org/TR/webgpu/#origin3d-z +https://www.w3.org/TR/webgpu/#gpuorigin3d-z 1 -Origin3D +GPUOrigin3D - z dict-member diff --git a/bikeshed/spec-data/readonly/anchors/anchors-za.data b/bikeshed/spec-data/readonly/anchors/anchors-za.data new file mode 100644 index 0000000000..ab990be9de --- /dev/null +++ b/bikeshed/spec-data/readonly/anchors/anchors-za.data @@ -0,0 +1,44 @@ +z axis acceleration +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#devicemotioneventacceleration-z-axis-acceleration + +1 +DeviceMotionEventAcceleration +- +z axis acceleration +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#devicemotioneventacceleration-z-axis-acceleration + +1 +DeviceMotionEventAcceleration +- +z axis rotation rate +dfn +orientation-event +orientation-event +1 +current +https://w3c.github.io/deviceorientation/#devicemotioneventrotationrate-z-axis-rotation-rate + +1 +DeviceMotionEventRotationRate +- +z axis rotation rate +dfn +orientation-event +orientation-event +1 +snapshot +https://www.w3.org/TR/orientation-event/#devicemotioneventrotationrate-z-axis-rotation-rate + +1 +DeviceMotionEventRotationRate +- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-zb.data b/bikeshed/spec-data/readonly/anchors/anchors-zb.data index 97ca5979a6..8af8a9591f 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-zb.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-zb.data @@ -10,17 +10,6 @@ https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometer-zbias UncalibratedMagnetometer - zBias -dict-member -magnetometer -magnetometer -1 -current -https://w3c.github.io/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-zbias -1 -1 -UncalibratedMagnetometerReadingValues -- -zBias attribute magnetometer magnetometer @@ -31,14 +20,3 @@ https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometer-zbias 1 UncalibratedMagnetometer - -zBias -dict-member -magnetometer -magnetometer -1 -snapshot -https://www.w3.org/TR/magnetometer/#dom-uncalibratedmagnetometerreadingvalues-zbias -1 -1 -UncalibratedMagnetometerReadingValues -- diff --git a/bikeshed/spec-data/readonly/anchors/anchors-ze.data b/bikeshed/spec-data/readonly/anchors/anchors-ze.data index e2e644bf52..67fcf47511 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-ze.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-ze.data @@ -132,7 +132,7 @@ urlpattern urlpattern 1 current -https://wicg.github.io/urlpattern/#part-modifier-zero-or-more +https://urlpattern.spec.whatwg.org/#part-modifier-zero-or-more 1 part/modifier diff --git a/bikeshed/spec-data/readonly/anchors/anchors-zi.data b/bikeshed/spec-data/readonly/anchors/anchors-zi.data index 15b7698ab4..13847b0868 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-zi.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-zi.data @@ -9,6 +9,26 @@ https://drafts.csswg.org/css2/#propdef-z-index 1 - z-index +property +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index +1 +1 +- +z-index +property +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index +1 +1 +- +z-index dfn css22 css diff --git a/bikeshed/spec-data/readonly/anchors/anchors-zl.data b/bikeshed/spec-data/readonly/anchors/anchors-zl.data index a6ac9656f2..137147cc3c 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-zl.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-zl.data @@ -1,10 +1,20 @@ zlib dfn -png-spec -png-spec -1 +png-3 +png +3 current -https://w3c.github.io/PNG-spec/#dfn-zlib +https://w3c.github.io/png/#dfn-zlib + +1 +- +zlib +dfn +png-3 +png +3 +snapshot +https://www.w3.org/TR/png-3/#dfn-zlib 1 - diff --git a/bikeshed/spec-data/readonly/anchors/anchors-zo.data b/bikeshed/spec-data/readonly/anchors/anchors-zo.data index 821d685a49..ed47a7a90a 100644 --- a/bikeshed/spec-data/readonly/anchors/anchors-zo.data +++ b/bikeshed/spec-data/readonly/anchors/anchors-zo.data @@ -4,7 +4,7 @@ i18n-glossary i18n-glossary 1 current -https://w3c.github.io/i18n-glossary/#def_zone_offset +https://w3c.github.io/i18n-glossary/#dfn-zone-offset 1 - @@ -14,9 +14,19 @@ i18n-glossary i18n-glossary 1 snapshot -https://www.w3.org/TR/i18n-glossary/#def_zone_offset +https://www.w3.org/TR/i18n-glossary/#dfn-zone-offset 1 +- +zoom +property +css-viewport-1 +css-viewport +1 +current +https://drafts.csswg.org/css-viewport/#propdef-zoom +1 +1 - zoom dict-member diff --git a/bikeshed/spec-data/readonly/biblio-keys.json b/bikeshed/spec-data/readonly/biblio-keys.json index 221246dfb9..ec5f12f2ad 100644 --- a/bikeshed/spec-data/readonly/biblio-keys.json +++ b/bikeshed/spec-data/readonly/biblio-keys.json @@ -22,6 +22,7 @@ "acss", "act-rules-aspects", "act-rules-format-1.0", +"act-rules-format-1.1", "activitypub", "activitystreams-core", "activitystreams-vocabulary", @@ -33,11 +34,13 @@ "adapt-symbols", "adapt-tools", "adlm-gap", +"adlm-lreq", "adobergb", "aert", "aes", "aes-wrap", "aes-wrap-pad", +"afgs1-spec", "agbdl", "agent-attributes", "alreq", @@ -45,12 +48,15 @@ "alt-techniques", "amaya", "ambient-light", +"anchors", +"angle_instanced_arrays", "animation-timing", "annot", "annotation-html", "annotation-model", "annotation-protocol", "annotation-vocab", +"anonymous-iframe", "ansi-x9-44", "ansi-x9-44-2007", "ansi-x9-62", @@ -63,7 +69,12 @@ "app-uri", "appmanifest", "arab-ks-gap", +"arab-ks-lreq", +"arab-lreq", "arab-ug-gap", +"arab-ug-lreq", +"arab-ur-gap", +"arab-ur-lreq", "arabic-math", "arabic-typo", "aria-in-html", @@ -71,6 +82,7 @@ "aria-role", "aria-state", "as", +"ascii", "at-spi", "atag-wombat", "atag10", @@ -84,13 +96,20 @@ "atsc53-4", "atsc65", "atsc72-1", +"attribution-reporting-api", "audio-eq-cookbook", "audio-output", +"audio-session", "audiobooks", "audioproc", "authentform", "autoplay-detection", "av1", +"av1-avif", +"av1-hdr10plus", +"av1-isobmff", +"av1-mpeg2-ts", +"av1-rtp-spec", "axapi", "background-fetch", "backplane", @@ -100,11 +119,15 @@ "bbc-subtitle", "bbc-wp193", "bbc-wp194", +"bcp0072", "bcp13", +"bcp175", "bcp47", +"bcp72", "beacon", "becss", "beng-gap", +"beng-lreq", "berners-lee98", "bibo", "bidi", @@ -127,12 +150,16 @@ "calendar-api", "call-control-reqs", "cans-iu-cr-gap", +"cans-lreq", "canvas-2d", +"capability-delegation", "capability-urls", "capture-api", "capture-handle-identity", "capture-scenarios", +"captured-mouse-events", "card-network-ids", +"cbd", "cc-about", "cc-choose", "ccpp", @@ -160,14 +187,17 @@ "charreq", "charsets", "cher-gap", +"cher-lreq", "chips", "cielab", "cjkv-info-processing", "clabs-hnapi", "cldr", "clear-site-data", +"client-hint-reliability", "client-hints-infrastructure", "clipboard-apis", +"close-watcher", "cloud-browser-arch", "clreq", "clreq-gap", @@ -181,10 +211,17 @@ "cohn-2004", "colorimetry", "coloring-rdf", +"commonmark", +"commonmark-0.27", +"commonmark-0.28", +"commonmark-0.29", +"commonmark-0.30", +"commonmark-0.31.2", "compat", "components-intro", "compositing", "compositing-1", +"compositing-2", "compression", "computable", "compute-pressure", @@ -197,7 +234,10 @@ "contacts-writer-api", "content-in-rdf", "content-in-rdf10", +"content-index", +"contenteditable", "context-sw", +"controller-document", "cookie-store", "cookies", "cooluris", @@ -210,6 +250,7 @@ "cowl", "cp50220", "cpc-req", +"crash-reporting", "credential-management-1", "cselection", "cselection-primer", @@ -217,6 +258,7 @@ "csp", "csp-cookies", "csp-embedded-enforcement", +"csp-next", "csp-pinning", "csp1", "csp11", @@ -229,15 +271,19 @@ "css-2020", "css-2021", "css-2022", +"css-2023", "css-access", "css-adaptation", "css-align-3", +"css-anchor-position-1", "css-animation-worklet", "css-animation-worklet-1", "css-animations-1", +"css-animations-2", "css-backgrounds-3", "css-backgrounds-4", "css-beijing", +"css-borders-4", "css-box-1", "css-box-3", "css-box-4", @@ -250,11 +296,14 @@ "css-color-3", "css-color-4", "css-color-5", +"css-color-6", "css-color-adjust-1", +"css-color-hdr", "css-conditional-1", "css-conditional-3", "css-conditional-4", "css-conditional-5", +"css-conditional-values-1", "css-contain-1", "css-contain-2", "css-contain-3", @@ -263,46 +312,60 @@ "css-device-adapt", "css-device-adapt-1", "css-display-3", +"css-display-4", "css-easing-1", +"css-easing-2", +"css-env-1", "css-exclusions-1", "css-extensions", +"css-extensions-1", "css-flexbox", "css-flexbox-1", "css-font-loading-3", "css-fonts-3", "css-fonts-4", "css-fonts-5", +"css-forms-1", "css-gcpm-3", +"css-gcpm-4", "css-grid-1", "css-grid-2", +"css-grid-3", "css-highlight-api-1", "css-images-3", "css-images-4", +"css-images-5", "css-inline-3", "css-layout-api-1", "css-line-grid-1", +"css-link-params-1", "css-lists-3", "css-logical-1", "css-marquee-3", "css-masking", "css-masking-1", "css-mime", +"css-mixins-1", "css-mobile", "css-multicol-1", +"css-multicol-2", "css-namespaces-3", "css-nav-1", "css-nesting-1", "css-overflow-3", "css-overflow-4", +"css-overflow-5", "css-overscroll", "css-overscroll-1", "css-overscroll-behavior", "css-page-3", +"css-page-4", "css-page-floats-3", "css-page-template-1", "css-paint-api-1", "css-parser-api", "css-position-3", +"css-position-4", "css-potential", "css-print", "css-properties-values-api-1", @@ -315,10 +378,13 @@ "css-scroll-anchoring-1", "css-scroll-boundary-behavior", "css-scroll-snap-1", +"css-scroll-snap-2", "css-scrollbars-1", "css-shadow-parts-1", "css-shapes", "css-shapes-1", +"css-shapes-2", +"css-size-adjust-1", "css-sizing-3", "css-sizing-4", "css-smil", @@ -337,16 +403,23 @@ "css-transforms-1", "css-transforms-2", "css-transitions-1", +"css-transitions-2", "css-tv", "css-typed-om-1", +"css-typed-om-2", "css-ui-3", "css-ui-4", "css-values", "css-values-3", "css-values-4", +"css-values-5", "css-variables", "css-variables-1", +"css-variables-2", "css-view-transitions-1", +"css-view-transitions-2", +"css-viewport", +"css-viewport-1", "css-will-change-1", "css-writing-modes-3", "css-writing-modes-4", @@ -448,12 +521,22 @@ "csw", "ct-guidelines", "ct-landscape", +"cta-5000", +"cta-5000-a", +"cta-5000-b", +"cta-5000-c", +"cta-5000-d", +"cta-5000-e", +"cta-5000-f", "ctaur", "cuap", "curie", "custom-elements", +"custom-state-pseudo-class", "cve-2009-0217", "cx", +"cyrl-gap", +"cyrl-lreq", "dahu", "dahu-test1", "dahu-test2", @@ -480,11 +563,13 @@ "dap-privacy-reqs", "dap-reqs", "dap-xacml-policy-profile", +"dapt", "dapt-reqs", "dashifiop", "data-extraction", "datacache", "datacite", +"datacue", "datetime", "davis", "dc-rdf", @@ -506,9 +591,12 @@ "ddr-core-vocabulary", "ddr-requirements", "ddr-simple-api", +"deprecation-reporting", "des", "design-principles", "deva-gap", +"deva-lreq", +"device-attributes", "device-memory-1", "device-orientation", "device-posture", @@ -529,12 +617,17 @@ "did-use-cases", "differences", "dig2000", +"digest-headers", +"digital-goods", +"digital-identities", "digital-typography", +"direct-sockets", "disco-prop", "discovery-api", "distributed-tracing", "dmpl", "dns-sd", +"document-picture-in-picture", "document-policy", "dom", "dom-bindings", @@ -622,6 +715,8 @@ "ecma-262-11.0", "ecma-262-12.0", "ecma-262-13.0", +"ecma-262-14.0", +"ecma-262-15.0", "ecma-262-2015", "ecma-262-2016", "ecma-262-2017", @@ -630,6 +725,8 @@ "ecma-262-2020", "ecma-262-2021", "ecma-262-2022", +"ecma-262-2023", +"ecma-262-2024", "ecma-262-5.1", "ecma-262-51", "ecma-262-6.0", @@ -645,6 +742,8 @@ "ecmascript-11.0", "ecmascript-12.0", "ecmascript-13.0", +"ecmascript-14.0", +"ecmascript-15.0", "ecmascript-2015", "ecmascript-2016", "ecmascript-2017", @@ -653,6 +752,8 @@ "ecmascript-2020", "ecmascript-2021", "ecmascript-2022", +"ecmascript-2023", +"ecmascript-2024", "ecmascript-5.1", "ecmascript-51", "ecmascript-6.0", @@ -663,16 +764,19 @@ "ecmascript-i18n", "ecmascript-mime", "edge-arch", +"edge-cloud-reqs", "edit-context", "editing", "egix", "egov-improving", +"element-capture", "element-timing", "elementtraversal", "elemtypo", "elreq", "elreq-gap", "email", +"eme-hdcp-version-registry", "eme-initdata-cenc", "eme-initdata-keyids", "eme-initdata-registry", @@ -689,13 +793,18 @@ "emotionml", "encoding", "encrypted-media", +"encrypted-media-1", +"encrypted-media-2", "entries-api", "eo-qb", "epr", "epub-33", "epub-a11y-11", "epub-a11y-eaa-mapping", +"epub-a11y-exemption", "epub-a11y-tech-11", +"epub-aria-authoring-11", +"epub-fxl-a11y", "epub-multi-rend-11", "epub-overview-33", "epub-rs-33", @@ -706,6 +815,8 @@ "esdh", "esi-invp", "esi-lang", +"essl", +"ethi-lreq", "ethical-web", "ethical-web-principles", "etsi102366", @@ -726,15 +837,33 @@ "exi-profile", "exif", "expamaya", +"ext_blend_minmax", +"ext_color_buffer_float", +"ext_color_buffer_half_float", +"ext_disjoint_timer_query", +"ext_disjoint_timer_query_webgl2", +"ext_float_blend", +"ext_frag_depth", +"ext_shader_texture_lod", +"ext_srgb", +"ext_texture_compression_bptc", +"ext_texture_compression_rgtc", +"ext_texture_filter_anisotropic", +"ext_texture_norm16", "extennnnsible", "extennnsible", "extennsible", "extensible", +"eyedropper-api", "feature-policy", "feature-policy-1", +"fedcm", +"fedcm-1", +"fenced-frame", "fetch", "fetch-metadata", "fido-appid", +"fido-v2.1", "figures", "file-api", "file-system", @@ -747,19 +876,24 @@ "fill-stroke-3", "filter-effects", "filter-effects-1", +"filter-effects-2", "fin-priv-notice", "findtext", "fingerprinting-guidance", "fips-180-3", "fips-180-4", "fips-186-3", +"fips-186-4", +"fips-186-5", "fir", "firesheep", +"first-party-sets", "flex", "flexbox", "flexfec", "foaf", "font", +"font-metrics-api-1", "font-rationale", "form-http-extensions", "fragid-best-practices", @@ -771,6 +905,7 @@ "fullscreen", "gallery", "gamepad", +"gamepad-extensions", "gdiff", "generic-sensor", "geodcat-ap", @@ -783,12 +918,18 @@ "geometry-1", "geopriv-arch", "geor-gap", +"geor-lreq", "georss", "geosparql", +"geosparql-v1.0", +"geosparql-v1.1", +"get-installed-related-apps", "getusermedia", "gif", +"gltf", "gml", "gov-data", +"gpc-spec", "graphics", "graphics-aam-1.0", "graphics-aria-1.0", @@ -799,11 +940,14 @@ "grddl-tests", "gregorian", "grek-gap", +"grek-lreq", "gsm-call", "gsm-sms", "gtk", "gujr-gap", +"gujr-lreq", "guru-gap", +"guru-lreq", "gyroscope", "h-adr", "h-card", @@ -817,6 +961,8 @@ "h-recipe", "h-resume", "h-review", +"handwriting-recognition", +"hani-lreq", "hash-in-uri", "hbbtv", "hcard", @@ -828,6 +974,7 @@ "hcls-swan", "hcls-swansioc", "hebr-gap", +"hebr-lreq", "hgml", "highres-time", "hlink", @@ -911,6 +1058,8 @@ "iana-cose", "iana-cp50220", "iana-dtls-srtp", +"iana-http-authschemes", +"iana-http-status-codes", "iana-media-types", "iana-relations", "iana-rtp-2", @@ -919,6 +1068,7 @@ "iana-tls-groups", "iana-tsv", "iana-uri-schemes", +"iana-urn-namespaces", "ianapermheaders", "icc", "icc32", @@ -958,6 +1108,7 @@ "indie-ui-requirements", "indieauth", "infra", +"ink-enhancement", "inkml", "inkreqs", "input-device-capabilities", @@ -969,10 +1120,13 @@ "interledger-protocol", "international-specs", "intersection-observer", +"intervention-reporting", "ipwg-practices", "iri", +"is-input-pending", "isdb", "isobmff", +"isolated-contexts", "its", "its20", "its2req", @@ -984,6 +1138,7 @@ "japanese-xml", "japi", "java-gap", +"java-lreq", "javascript", "jax-rs", "jax-rs-2.0", @@ -997,6 +1152,7 @@ "jisx4051", "jlreq", "jpan-gap", +"jpan-lreq", "jpeg", "jpeg2000", "js-self-profiling", @@ -1005,18 +1161,26 @@ "json", "json-ld", "json-ld-api", +"json-ld-api1", "json-ld-syntax", "json-ld-tests", +"json-ld1", "json-ld11", "json-ld11-api", "json-ld11-framing", "json-ld11-streaming", "json-lines", "json-patch", +"json-reference", "json-rpc", "json-schema", "json-schema-04", +"json-schema-05", "json-schema-2020-12", +"json-schema-validation", +"json-schema-validation-04", +"json-schema-validation-05", +"json-schema-validation-2020-12", "jsonl", "justify", "jwk", @@ -1025,17 +1189,25 @@ "keyboard-map", "keys", "khmr-gap", +"khmr-lreq", +"khr_parallel_shader_compile", "klreq", "knowprivacy", +"kore-gap", +"kore-lreq", "kuil", "kv-storage", "lang-subtag-registry", "langculttype", "laoo-gap", +"laoo-lreq", "largest-contentful-paint", +"latn-ca-gap", "latn-de-gap", "latn-fr-gap", +"latn-gap", "latn-hu-gap", +"latn-lreq", "latn-nl-gap", "layout-instability", "lbase", @@ -1064,15 +1236,18 @@ "localizable-manifests", "locn", "logfile", +"long-animation-frames", "longtasks-1", "low-vision-needs", "lpf", "ltli", "magnetometer", +"managed-configuration", "manifest-app-info", "manifest-incubations", "mapml", "mathml", +"mathml-aam", "mathml-bvar", "mathml-core", "mathml-for-css", @@ -1096,6 +1271,7 @@ "media-annot-reqs", "media-capabilities", "media-capture-api", +"media-feeds", "media-fragment", "media-fragments", "media-fragments-reqs", @@ -1104,12 +1280,15 @@ "media-frags-reqs", "media-playback-quality", "media-source", +"media-source-1", "media-source-2", "media-timed-events", "mediaaccessevents", "mediacapture-api", +"mediacapture-automation", "mediacapture-depth", "mediacapture-fromelement", +"mediacapture-handle-actions", "mediacapture-region", "mediacapture-streams", "mediacapture-transform", @@ -1170,7 +1349,9 @@ "mobileok", "mobileok-basic10-tests", "modality-interface", +"model-element", "mong-gap", +"mong-lreq", "motion-1", "motion-sensors", "moz-icons", @@ -1187,6 +1368,7 @@ "mpegdash", "mpeghevc", "mptp", +"mqtt", "mrcpv2", "msaa", "msdn-setcapture", @@ -1211,6 +1393,7 @@ "namespacestate", "native-file-system", "naur", +"nav-tracking-mitigations", "navigation-error-logging", "navigation-timing", "navigation-timing-2", @@ -1220,12 +1403,15 @@ "netinfo-usecases", "network-error-logging", "network-error-logging-1", +"network-reporting", "newline", "news-ml", "nfc", "ngram-spec", "nkoo-gap", +"nkoo-lreq", "nl-spec", +"no-vary-search", "note-ccpp", "note-cgm", "note-ice", @@ -1240,6 +1426,7 @@ "oa", "oaep-attack", "oai-pmh", +"oandm", "oasis-tag", "oauth-pop-key-distribution", "ocsp", @@ -1255,6 +1442,15 @@ "odrl21-vocab", "odrl21-xml", "oeb101", +"oes_draw_buffers_indexed", +"oes_element_index_uint", +"oes_fbo_render_mipmap", +"oes_standard_derivatives", +"oes_texture_float", +"oes_texture_float_linear", +"oes_texture_half_float", +"oes_texture_half_float_linear", +"oes_vertex_array_object", "offline-webapps", "ogc-06-042", "ogc-07-036", @@ -1277,17 +1473,27 @@ "oma-push", "oma-uri-schemes", "omgidl", +"oms", +"omxml", "open-font-format", "openapi", "openapi-2.0", +"openapi-3.0.0", +"openapi-3.0.1", "openapi-3.0.2", "openapi-3.0.3", "openapi-3.1.0", +"openapi-learn", +"openapi-registry", "openapis", "openapis-2.0", +"openapis-3.0.0", +"openapis-3.0.1", "openapis-3.0.2", "openapis-3.0.3", "openapis-3.1.0", +"openid-connect-core", +"openid-connect-discovery", "openscreenprotocol", "opensearch", "opentype", @@ -1297,7 +1503,10 @@ "orientation-sensor", "origin", "origin-policy", +"osge-lreq", "osge-osa-gap", +"overscroll-scrollend-events", +"ovr_multiview2", "owl-absyn", "owl-features", "owl-guide", @@ -1343,6 +1552,8 @@ "page-visibility", "page-visibility-2", "paint-timing", +"partitioned-cookies", +"passkey-endpoints", "patent-practice", "payment-handler", "payment-method-basic-card", @@ -1351,7 +1562,9 @@ "payment-pointers", "payment-request", "payment-request-1.1", +"pcsc5", "pdf", +"performance-measure-memory", "performance-timeline", "performance-timeline-2", "periodic-background-sync", @@ -1360,6 +1573,7 @@ "permissions", "permissions-policy", "permissions-policy-1", +"permissions-registry", "permissions-request", "permissions-revoke", "personalization-semantics-1.0", @@ -1384,6 +1598,7 @@ "pling-wiki", "plus", "png", +"png-1", "png-3", "png-hdr-pq", "png2e", @@ -1401,6 +1616,7 @@ "poix", "policy-reqs", "polyfills", +"portals", "porterduff", "positioning", "post-spectre-webdev", @@ -1420,7 +1636,9 @@ "pr-rdf-syntax", "predefined-counter-styles", "prefer-current-tab", +"prefetch", "preload", +"prerendering-revamped", "presentation-api", "print", "priority-hints", @@ -1432,6 +1650,9 @@ "privacy-issues-geo", "privacy-principles", "privacy-terminology", +"private-aggregation-api", +"private-click-measurement", +"private-network-access", "proc-model-req", "progress-events", "promises-guide", @@ -1489,7 +1710,9 @@ "rangerequest", "raster-tragedy", "raur", +"raw-camera-access", "raw-sockets", +"rch-explainer", "rdb-direct-mapping", "rdb2rdf-implementations", "rdb2rdf-test-cases", @@ -1528,6 +1751,14 @@ "rdf11-schema", "rdf11-testcases", "rdf11-xml", +"rdf12-concepts", +"rdf12-n-quads", +"rdf12-n-triples", +"rdf12-schema", +"rdf12-semantics", +"rdf12-trig", +"rdf12-turtle", +"rdf12-xml", "rdfa-api", "rdfa-core", "rdfa-in-html", @@ -1538,6 +1769,7 @@ "rdfcal", "rdftm-survey", "re3data-schema", +"real-world-meshing", "rec-css1", "rec-css2", "rec-xml", @@ -1560,6 +1792,7 @@ "reporting", "reporting-1", "requestidlecallback", +"requeststorageaccessfor", "resize-observer", "resize-observer-1", "resource-hints", @@ -1569,11 +1802,13 @@ "resource-timing-2", "respimg-usecases", "responsible-use-spatial", +"responsive-image-client-hints", "reusable-dialog-reqs", "rex", "rex-reqs", "rfc-index", "rfc3161-pkix-update-9", +"rfc6265bis", "richsnippets", "rif-bld", "rif-core", @@ -1610,9 +1845,12 @@ "ruby-use-cases", "runtime", "s6group2", +"saa-non-cookie-storage", "sac", "saml2-core", +"sanitizer-api", "saur", +"savedata", "sawsdl", "sawsdl-guide", "sax", @@ -1625,6 +1863,7 @@ "screen-wake-lock", "scroll-animations", "scroll-animations-1", +"scroll-to-text-fragment", "scsu", "sctp-sdp", "scxml", @@ -1637,6 +1876,7 @@ "sd6", "sd7", "sd8", +"sd9", "sdml", "sdp", "sdp-simulcast", @@ -1652,6 +1892,7 @@ "selection-api", "selectors-3", "selectors-4", +"selectors-5", "selectors-api", "selectors-api2", "selectors-level-3", @@ -1659,6 +1900,8 @@ "selectors-states", "selectors4", "semantic-interpretation", +"sensorml", +"serial", "server-timing", "service-workers", "service-workers-1", @@ -1677,6 +1920,7 @@ "shacl-ucr", "shadow-dom", "shape-detection-api", +"shared-storage", "shoplogfileformat", "si", "simple-payment-setup-protocol", @@ -1727,8 +1971,10 @@ "soap12-testcollection", "soapjms", "social-web-protocols", +"soft-navigations", "solidwebac", "sos", +"sourcemap", "sox", "sp800-131a", "sp800-38d", @@ -1749,8 +1995,21 @@ "sparql11-results-json", "sparql11-service-description", "sparql11-update", +"sparql12-concepts", +"sparql12-entailment", +"sparql12-federated-query", +"sparql12-graph-store-protocol", +"sparql12-protocol", +"sparql12-query", +"sparql12-results-csv-tsv", +"sparql12-results-json", +"sparql12-results-xml", +"sparql12-service-description", +"sparql12-update", +"spdx-licenses", "spec-variability", "spectre", +"speculation-rules", "speech-api", "speech-grammar", "speech-synthesis", @@ -1771,6 +2030,8 @@ "staticrange", "std68", "storage", +"storage-access", +"storage-buckets", "streamproc", "streams", "streams-api", @@ -1785,6 +2046,7 @@ "svg", "svg-aam-1.0", "svg-access", +"svg-animations", "svg-integration", "svg-markers", "svg-paths", @@ -1836,8 +2098,45 @@ "tabular-metadata", "taglink20030116", "taml-gap", +"taml-lreq", "task-models", "task-scheduler", +"tc39-array-find-from-last", +"tc39-array-from-async", +"tc39-array-grouping", +"tc39-arraybuffer-base64", +"tc39-arraybuffer-transfer", +"tc39-async-explicit-resource-management", +"tc39-atomics-wait-async", +"tc39-canonical-tz", +"tc39-change-array-by-copy", +"tc39-decorators", +"tc39-dynamic-code-brand-checks", +"tc39-explicit-resource-management", +"tc39-float16array", +"tc39-import-attributes", +"tc39-intl-annexes", +"tc39-intl-duration-format", +"tc39-intl-enumeration", +"tc39-intl-extend-timezonename", +"tc39-intl-locale-info", +"tc39-intl-negotiation", +"tc39-intl-numberformat", +"tc39-intl-pluralrules", +"tc39-is-usv-string", +"tc39-iterator-helpers", +"tc39-json-modules", +"tc39-json-parse-with-source", +"tc39-promise-try", +"tc39-promise-with-resolvers", +"tc39-regex-escaping", +"tc39-regexp-modifiers", +"tc39-resizablearraybuffer", +"tc39-set-methods", +"tc39-shadowrealm", +"tc39-source-phase-imports", +"tc39-symbols-as-weakmap-keys", +"tc39-temporal", "tcg-cmcprofile-aikcertenroll", "tcp-udp-sockets", "telephony", @@ -1848,14 +2147,17 @@ "testutils", "text-detection-api", "thai-gap", +"thai-lreq", "thegrid", "tibt-gap", +"tibt-lreq", "timesheets", "timezone", "timing-entrytypes-registry", "tlreq", "tls", "tobin", +"topics", "tor", "touch-events", "touch-events-extensions", @@ -1871,6 +2173,7 @@ "trig", "tripledes", "truetype", +"trust-token-api", "trusted-types", "tsvwg-rtcweb-qos", "tt-af-1-0-req", @@ -1889,6 +2192,7 @@ "turn-bis", "turn-uri", "turtle", +"turtledove", "tussle", "tvcontrol-api", "tvweb-uri-requirements", @@ -1897,6 +2201,7 @@ "typography", "tzdatabase", "tzdb", +"ua-client-hints", "uaag10", "uaag10-techs", "uaag20", @@ -1918,6 +2223,7 @@ "uax44", "uax45", "uax50", +"uax57", "uax9", "uclp", "ucr-web-maps", @@ -1964,9 +2270,11 @@ "urispace", "url", "url-1", +"urlpattern", "urls-in-data", "urn", "urn-oid", +"user-preference-media-features-headers", "user-timing", "user-timing-1", "user-timing-2", @@ -1989,6 +2297,7 @@ "utr51", "utr53", "utr54", +"utr56", "uts10", "uts18", "uts22", @@ -1997,14 +2306,25 @@ "uts39", "uts46", "uts51", +"uts55", "uwa-personalization-roadmap", "vann", "vbi-reqs", +"vc-bitstring-status-list", "vc-data-integrity", "vc-data-model", "vc-data-model-2.0", +"vc-di-bbs", +"vc-di-ecdsa", +"vc-di-eddsa", "vc-imp-guide", +"vc-jose-cose", +"vc-json-schema", "vc-jws-2020", +"vc-jwt", +"vc-overview", +"vc-specs-dir", +"vc-status-list", "vc-use-cases", "vcard-rdf", "vehicle-data", @@ -2013,6 +2333,7 @@ "verifiable-claims-data-model", "verifiable-claims-use-cases", "vibration", +"video-rvfc", "view-mode", "virtual-keyboard", "viss2-core", @@ -2059,6 +2380,7 @@ "w3c-html", "w3c-patent-policy", "w3c-process", +"w3c-vision", "wac-orientation-api", "wac-sensor-api", "wacz", @@ -2068,6 +2390,7 @@ "wai-aria-1.0", "wai-aria-1.1", "wai-aria-1.2", +"wai-aria-1.3", "wai-aria-10", "wai-aria-11", "wai-aria-implementation", @@ -2085,9 +2408,25 @@ "wapf-req", "warc", "wasm-core-1", +"wasm-core-1-fork-gc", "wasm-core-2", +"wasm-core-2-fork-branch-hinting", +"wasm-core-2-fork-extended-const", +"wasm-core-2-fork-function-references", +"wasm-core-2-fork-gc", +"wasm-core-2-fork-memory64", +"wasm-core-2-fork-multi-memory", +"wasm-core-2-fork-tail-call", +"wasm-core-2-fork-threads", "wasm-js-api-1", "wasm-js-api-2", +"wasm-js-api-2-fork-content-security-policy", +"wasm-js-api-2-fork-esm-integration", +"wasm-js-api-2-fork-exception-handling", +"wasm-js-api-2-fork-js-promise-integration", +"wasm-js-api-2-fork-js-string-builtins", +"wasm-js-api-2-fork-js-types", +"wasm-js-api-2-fork-threads", "wasm-web-api-1", "wasm-web-api-2", "wbxml", @@ -2117,23 +2456,29 @@ "wcag21", "wcag22", "wcag2ict", +"wcag2ict-22", "wcss11", "wcss12", "wd-charreq", "web-alarms", "web-animations", "web-animations-1", +"web-animations-2", "web-app-launch", "web-background-sync", "web-bluetooth", +"web-bluetooth-scanning", "web-forms-2", "web-intents", "web-locks", "web-nfc", +"web-otp", "web-packaging", "web-payments-use-cases", +"web-preferences-api", "web-share", "web-share-target", +"web-smart-card", "web-sql", "web-thing-model", "webac", @@ -2170,17 +2515,40 @@ "webcontent-0203", "webcontent-0414", "webcrypto-key-discovery", +"webcrypto-secure-curves", "webcrypto-usecases", "webcryptoapi", "webdatabase", "webdriver", +"webdriver-bidi", "webdriver1", "webdriver2", "webgl", "webgl-1", "webgl-103", "webgl-2", +"webgl1", +"webgl2", +"webgl_blend_equation_advanced_coherent", +"webgl_clip_cull_distance", +"webgl_color_buffer_float", +"webgl_compressed_texture_astc", +"webgl_compressed_texture_etc", +"webgl_compressed_texture_etc1", +"webgl_compressed_texture_pvrtc", +"webgl_compressed_texture_s3tc", +"webgl_compressed_texture_s3tc_srgb", +"webgl_debug_renderer_info", +"webgl_debug_shaders", +"webgl_depth_texture", +"webgl_draw_buffers", +"webgl_draw_instanced_base_vertex_base_instance", +"webgl_lose_context", +"webgl_multi_draw", +"webgl_multi_draw_instanced_base_vertex_base_instance", +"webgl_provoking_vertex", "webgpu", +"webhid", "webidl", "webidl-1", "webidl-2", @@ -2195,12 +2563,15 @@ "webmidi", "webnn", "webont-req", +"webp", +"webpackage", "webpayments-http-api", "webpayments-http-messages", "webpayments-overview", "webrtc", "webrtc-dscp", "webrtc-encoded-transform", +"webrtc-ice", "webrtc-identity", "webrtc-insertable-streams", "webrtc-nv-use-cases", @@ -2231,12 +2602,17 @@ "webxr-hand-input-1", "webxr-hit-test-1", "webxr-lighting-estimation-1", +"webxr-meshing", +"webxr-plane-detection", "webxrlayers-1", "wfs", "wgs84", +"wgs84-nga", +"wgs84-nima", "wgsl", "whatwg-books", "whatwg-compat", +"whatwg-compression", "whatwg-console", "whatwg-differences", "whatwg-dom", @@ -2258,6 +2634,7 @@ "whatwg-streams", "whatwg-testutils", "whatwg-url", +"whatwg-urlpattern", "whatwg-webidl", "whatwg-websockets", "whatwg-xhr", @@ -2278,6 +2655,7 @@ "wicg-css-overscroll-behavior", "wicg-css-parser-api", "wicg-css-scroll-boundary-behavior", +"wicg-document-picture-in-picture", "wicg-document-policy", "wicg-element-timing", "wicg-entries-api", @@ -2288,6 +2666,7 @@ "wicg-geolocation-sensor", "wicg-idle-detection", "wicg-input-device-capabilities", +"wicg-isolated-contexts", "wicg-js-self-profiling", "wicg-keyboard-lock", "wicg-keyboard-map", @@ -2343,8 +2722,16 @@ "widl", "window", "window-controls-overlay", +"window-management", "window-placement", "windows-glyph-proc", +"wmas2017", +"wmas2018", +"wmas2019", +"wmas2020", +"wmas2021", +"wmas2022", +"wmas2023", "wms", "wmts", "woff", @@ -2624,6 +3011,7 @@ "xop10", "xopinc-faq", "xpath", +"xpath-10", "xpath-21", "xpath-30", "xpath-31", @@ -2659,6 +3047,7 @@ "xptr-xpointer", "xptr-xpointer-cr2001", "xquery", +"xquery-10", "xquery-11", "xquery-11-requirements", "xquery-11-use-cases", @@ -2700,6 +3089,7 @@ "xslfo20-req", "xslreq", "xslt", +"xslt-10", "xslt-21", "xslt-21-requirements", "xslt-30", diff --git a/bikeshed/spec-data/readonly/biblio-numeric-suffixes.json b/bikeshed/spec-data/readonly/biblio-numeric-suffixes.json index 0d2699d377..b66f2b4fca 100644 --- a/bikeshed/spec-data/readonly/biblio-numeric-suffixes.json +++ b/bikeshed/spec-data/readonly/biblio-numeric-suffixes.json @@ -10,7 +10,8 @@ "ccpp-struct-vocab2" ], "compositing": [ -"compositing-1" +"compositing-1", +"compositing-2" ], "contact-picker": [ "contact-picker-1" @@ -30,6 +31,9 @@ "css-device-adapt": [ "css-device-adapt-1" ], +"css-extensions": [ +"css-extensions-1" +], "css-flexbox": [ "css-flexbox-1" ], @@ -40,14 +44,20 @@ "css-overscroll-1" ], "css-shapes": [ -"css-shapes-1" +"css-shapes-1", +"css-shapes-2" ], "css-values": [ "css-values-3", -"css-values-4" +"css-values-4", +"css-values-5" ], "css-variables": [ -"css-variables-1" +"css-variables-1", +"css-variables-2" +], +"css-viewport": [ +"css-viewport-1" ], "cssom": [ "cssom-1" @@ -75,14 +85,22 @@ "emma11", "emma20" ], +"encrypted-media": [ +"encrypted-media-1", +"encrypted-media-2" +], "epub-ssv": [ "epub-ssv-11" ], "feature-policy": [ "feature-policy-1" ], +"fedcm": [ +"fedcm-1" +], "filter-effects": [ -"filter-effects-1" +"filter-effects-1", +"filter-effects-2" ], "hr-time": [ "hr-time-1", @@ -117,10 +135,19 @@ "its20" ], "json-ld": [ +"json-ld1", "json-ld11" ], +"json-ld-api": [ +"json-ld-api1" +], "json-schema": [ -"json-schema-04" +"json-schema-04", +"json-schema-05" +], +"json-schema-validation": [ +"json-schema-validation-04", +"json-schema-validation-05" ], "mathml": [ "mathml2", @@ -128,6 +155,7 @@ "mathml4" ], "media-source": [ +"media-source-1", "media-source-2" ], "mediaont": [ @@ -163,6 +191,7 @@ "permissions-policy-1" ], "png": [ +"png-1", "png-3" ], "pointerevents": [ @@ -260,8 +289,12 @@ "wcag21", "wcag22" ], +"wcag2ict": [ +"wcag2ict-22" +], "web-animations": [ -"web-animations-1" +"web-animations-1", +"web-animations-2" ], "webauthn": [ "webauthn-1", @@ -279,7 +312,12 @@ "webgl": [ "webgl-1", "webgl-103", -"webgl-2" +"webgl-2", +"webgl1", +"webgl2" +], +"webgl_compressed_texture_etc": [ +"webgl_compressed_texture_etc1" ], "webidl": [ "webidl-1", @@ -370,6 +408,7 @@ "xmlsec-reqs2" ], "xpath": [ +"xpath-10", "xpath-21", "xpath-30", "xpath-31", @@ -389,6 +428,7 @@ "xproc20" ], "xquery": [ +"xquery-10", "xquery-11", "xquery-30", "xquery-31" @@ -403,6 +443,7 @@ "xsl11" ], "xslt": [ +"xslt-10", "xslt-21", "xslt-30", "xslt11", diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ac.data b/bikeshed/spec-data/readonly/biblio/biblio-ac.data index eac7ba1599..66267b7c43 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ac.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ac.data @@ -1,6 +1,6 @@ d:accelerometer accelerometer -18 October 2022 +7 June 2024 CR Accelerometer https://www.w3.org/TR/accelerometer/ @@ -184,6 +184,102 @@ https://www.w3.org/TR/2022/CRD-accelerometer-20221018/ +Anssi Kostiainen +- +d:accelerometer-20230130 +accelerometer-20230130 +30 January 2023 +CR +Accelerometer +https://www.w3.org/TR/2023/CRD-accelerometer-20230130/ +https://www.w3.org/TR/2023/CRD-accelerometer-20230130/ + + + +Anssi Kostiainen +- +d:accelerometer-20231025 +accelerometer-20231025 +25 October 2023 +CR +Accelerometer +https://www.w3.org/TR/2023/CRD-accelerometer-20231025/ +https://www.w3.org/TR/2023/CRD-accelerometer-20231025/ + + + +Anssi Kostiainen +- +d:accelerometer-20231102 +accelerometer-20231102 +2 November 2023 +CR +Accelerometer +https://www.w3.org/TR/2023/CRD-accelerometer-20231102/ +https://www.w3.org/TR/2023/CRD-accelerometer-20231102/ + + + +Anssi Kostiainen +- +d:accelerometer-20231128 +accelerometer-20231128 +28 November 2023 +CR +Accelerometer +https://www.w3.org/TR/2023/CRD-accelerometer-20231128/ +https://www.w3.org/TR/2023/CRD-accelerometer-20231128/ + + + +Anssi Kostiainen +- +d:accelerometer-20240104 +accelerometer-20240104 +4 January 2024 +CR +Accelerometer +https://www.w3.org/TR/2024/CRD-accelerometer-20240104/ +https://www.w3.org/TR/2024/CRD-accelerometer-20240104/ + + + +Anssi Kostiainen +- +d:accelerometer-20240105 +accelerometer-20240105 +5 January 2024 +CR +Accelerometer +https://www.w3.org/TR/2024/CRD-accelerometer-20240105/ +https://www.w3.org/TR/2024/CRD-accelerometer-20240105/ + + + +Anssi Kostiainen +- +d:accelerometer-20240108 +accelerometer-20240108 +8 January 2024 +CR +Accelerometer +https://www.w3.org/TR/2024/CRD-accelerometer-20240108/ +https://www.w3.org/TR/2024/CRD-accelerometer-20240108/ + + + +Anssi Kostiainen +- +d:accelerometer-20240607 +accelerometer-20240607 +7 June 2024 +CR +Accelerometer +https://www.w3.org/TR/2024/CRD-accelerometer-20240607/ +https://www.w3.org/TR/2024/CRD-accelerometer-20240607/ + + + Anssi Kostiainen - a:access-control @@ -409,7 +505,7 @@ Michael Cooper - d:accname-1.2 accname-1.2 -11 July 2019 +2 August 2024 WD Accessible Name and Description Computation 1.2 https://www.w3.org/TR/accname-1.2/ @@ -418,8 +514,7 @@ https://w3c.github.io/accname/ Bryan Garaventa -Joanmarie Diggs -Michael Cooper +Melanie Sumner - d:accname-1.2-20190711 accname-1.2-20190711 @@ -435,6 +530,97 @@ Bryan Garaventa Joanmarie Diggs Michael Cooper - +d:accname-1.2-20240227 +accname-1.2-20240227 +27 February 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240227/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240227/ + + + +Bryan Garaventa +Melanie Sumner +- +d:accname-1.2-20240403 +accname-1.2-20240403 +3 April 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240403/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240403/ + + + +Bryan Garaventa +Melanie Sumner +- +d:accname-1.2-20240429 +accname-1.2-20240429 +29 April 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240429/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240429/ + + + +Bryan Garaventa +Melanie Sumner +- +d:accname-1.2-20240607 +accname-1.2-20240607 +7 June 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240607/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240607/ + + + +Bryan Garaventa +Melanie Sumner +- +d:accname-1.2-20240621 +accname-1.2-20240621 +21 June 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240621/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240621/ + + + +Bryan Garaventa +Melanie Sumner +- +d:accname-1.2-20240710 +accname-1.2-20240710 +10 July 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240710/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240710/ + + + +Bryan Garaventa +Melanie Sumner +- +d:accname-1.2-20240802 +accname-1.2-20240802 +2 August 2024 +WD +Accessible Name and Description Computation 1.2 +https://www.w3.org/TR/2024/WD-accname-1.2-20240802/ +https://www.w3.org/TR/2024/WD-accname-1.2-20240802/ + + + +Bryan Garaventa +Melanie Sumner +- a:accname-aam-1.1 accname-aam-1.1 accname-1.1 @@ -734,6 +920,36 @@ Maureen Kraft Mary Jo Mueller Shadi Abou-Zahra - +d:act-rules-format-1.1 +act-rules-format-1.1 +18 June 2024 +WD +Accessibility Conformance Testing (ACT) Rules Format 1.1 +https://www.w3.org/TR/act-rules-format-1.1/ +https://w3c.github.io/wcag-act/act-rules-format.html + + + +Wilco Fiers +Trevor Bostic +Kathy Eng +Daniel Montalvo +- +d:act-rules-format-1.1-20240618 +act-rules-format-1.1-20240618 +18 June 2024 +WD +Accessibility Conformance Testing (ACT) Rules Format 1.1 +https://www.w3.org/TR/2024/WD-act-rules-format-1.1-20240618/ +https://www.w3.org/TR/2024/WD-act-rules-format-1.1-20240618/ + + + +Wilco Fiers +Trevor Bostic +Kathy Eng +Daniel Montalvo +- d:activitypub activitypub 23 January 2018 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ad.data b/bikeshed/spec-data/readonly/biblio/biblio-ad.data index 79dc390173..8f5e09e111 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ad.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ad.data @@ -569,7 +569,7 @@ Richard Schwerdtfeger - d:adlm-gap adlm-gap -12 July 2022 +9 July 2024 NOTE Adlam Gap Analysis https://www.w3.org/TR/adlm-gap/ @@ -685,6 +685,162 @@ https://www.w3.org/TR/2022/DNOTE-adlm-gap-20220712/ +Richard Ishida +- +d:adlm-gap-20230614 +adlm-gap-20230614 +14 June 2023 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230614/ + + + +Richard Ishida +- +d:adlm-gap-20230616 +adlm-gap-20230616 +16 June 2023 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230616/ +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230616/ + + + +Richard Ishida +- +d:adlm-gap-20230807 +adlm-gap-20230807 +7 August 2023 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230807/ + + + +Richard Ishida +- +d:adlm-gap-20231004 +adlm-gap-20231004 +4 October 2023 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-adlm-gap-20231004/ + + + +Richard Ishida +- +d:adlm-gap-20240701 +adlm-gap-20240701 +1 July 2024 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2024/DNOTE-adlm-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-adlm-gap-20240701/ + + + +Richard Ishida +- +d:adlm-gap-20240704 +adlm-gap-20240704 +4 July 2024 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2024/DNOTE-adlm-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-adlm-gap-20240704/ + + + +Richard Ishida +- +d:adlm-gap-20240709 +adlm-gap-20240709 +9 July 2024 +NOTE +Adlam Gap Analysis +https://www.w3.org/TR/2024/DNOTE-adlm-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-adlm-gap-20240709/ + + + +Richard Ishida +- +d:adlm-lreq +adlm-lreq +2 August 2024 +NOTE +Adlam Script Resources +https://www.w3.org/TR/adlm-lreq/ +https://w3c.github.io/afrlreq/adlm/ + + + +Richard Ishida +- +d:adlm-lreq-20240530 +adlm-lreq-20240530 +30 May 2024 +NOTE +Adlam Layout Requirements +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240530/ +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240530/ + + + +Richard Ishida +- +d:adlm-lreq-20240701 +adlm-lreq-20240701 +1 July 2024 +NOTE +Adlam Layout Requirements +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240701/ +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240701/ + + + +Richard Ishida +- +d:adlm-lreq-20240704 +adlm-lreq-20240704 +4 July 2024 +NOTE +Adlam Layout Requirements +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240704/ +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240704/ + + + +Richard Ishida +- +d:adlm-lreq-20240709 +adlm-lreq-20240709 +9 July 2024 +NOTE +Adlam Script Resources +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240709/ +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240709/ + + + +Richard Ishida +- +d:adlm-lreq-20240802 +adlm-lreq-20240802 +2 August 2024 +NOTE +Adlam Script Resources +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240802/ +https://www.w3.org/TR/2024/DNOTE-adlm-lreq-20240802/ + + + Richard Ishida - d:adobergb diff --git a/bikeshed/spec-data/readonly/biblio/biblio-af.data b/bikeshed/spec-data/readonly/biblio/biblio-af.data new file mode 100644 index 0000000000..dec96df485 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-af.data @@ -0,0 +1,11 @@ +d:afgs1-spec +AFGS1-SPEC + +Draft Deliverable +AOMedia Film Grain Synthesis 1 (AFGS1) specification +https://aomediacodec.github.io/afgs1-spec/ + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-al.data b/bikeshed/spec-data/readonly/biblio/biblio-al.data index a6805228c2..136a75f465 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-al.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-al.data @@ -1,19 +1,14 @@ d:alreq alreq -26 October 2021 -WD -Text Layout Requirements for the Arabic Script +9 July 2024 +NOTE +Arabic & Persian Layout Requirements https://www.w3.org/TR/alreq/ https://w3c.github.io/alreq/ -Behnam Esfahbod -Mostafa Hajizadeh -Najib Tounsi Richard Ishida -Shervin Afshar -Titus Nemeth - d:alreq-20180222 alreq-20180222 @@ -59,17 +54,76 @@ Richard Ishida Shervin Afshar Titus Nemeth - +d:alreq-20231212 +alreq-20231212 +12 December 2023 +NOTE +Arabic & Persian Layout Requirements +https://www.w3.org/TR/2023/DNOTE-alreq-20231212/ +https://www.w3.org/TR/2023/DNOTE-alreq-20231212/ + + + +Richard Ishida +- +d:alreq-20240430 +alreq-20240430 +30 April 2024 +NOTE +Arabic & Persian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-alreq-20240430/ +https://www.w3.org/TR/2024/DNOTE-alreq-20240430/ + + + +Richard Ishida +- +d:alreq-20240515 +alreq-20240515 +15 May 2024 +NOTE +Arabic & Persian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-alreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-alreq-20240515/ + + + +Richard Ishida +- +d:alreq-20240630 +alreq-20240630 +30 June 2024 +NOTE +Arabic & Persian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-alreq-20240630/ +https://www.w3.org/TR/2024/DNOTE-alreq-20240630/ + + + +Richard Ishida +- +d:alreq-20240709 +alreq-20240709 +9 July 2024 +NOTE +Arabic & Persian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-alreq-20240709/ +https://www.w3.org/TR/2024/DNOTE-alreq-20240709/ + + + +Richard Ishida +- d:alreq-gap alreq-gap -13 July 2022 +9 July 2024 NOTE -Arabic and Persian Gap Analysis +Arabic Script Gap Analysis https://www.w3.org/TR/alreq-gap/ https://w3c.github.io/alreq/gap-analysis/ -Shervin Afshar Richard Ishida - d:alreq-gap-20200616 @@ -200,6 +254,81 @@ https://www.w3.org/TR/2022/DNOTE-alreq-gap-20220713/ Shervin Afshar +Richard Ishida +- +d:alreq-gap-20230614 +alreq-gap-20230614 +14 June 2023 +NOTE +Arabic and Persian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-alreq-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-alreq-gap-20230614/ + + + +Shervin Afshar +Richard Ishida +- +d:alreq-gap-20230807 +alreq-gap-20230807 +7 August 2023 +NOTE +Arabic and Persian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-alreq-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-alreq-gap-20230807/ + + + +Shervin Afshar +Richard Ishida +- +d:alreq-gap-20231004 +alreq-gap-20231004 +4 October 2023 +NOTE +Arabic and Persian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-alreq-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-alreq-gap-20231004/ + + + +Shervin Afshar +Richard Ishida +- +d:alreq-gap-20240314 +alreq-gap-20240314 +14 March 2024 +NOTE +Arabic and Persian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-alreq-gap-20240314/ +https://www.w3.org/TR/2024/DNOTE-alreq-gap-20240314/ + + + +Richard Ishida +- +d:alreq-gap-20240630 +alreq-gap-20240630 +30 June 2024 +NOTE +Arabic and Persian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-alreq-gap-20240630/ +https://www.w3.org/TR/2024/DNOTE-alreq-gap-20240630/ + + + +Richard Ishida +- +d:alreq-gap-20240709 +alreq-gap-20240709 +9 July 2024 +NOTE +Arabic Script Gap Analysis +https://www.w3.org/TR/2024/DNOTE-alreq-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-alreq-gap-20240709/ + + + Richard Ishida - a:alt-techniques diff --git a/bikeshed/spec-data/readonly/biblio/biblio-am.data b/bikeshed/spec-data/readonly/biblio/biblio-am.data index 8f4499f377..d81788fc28 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-am.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-am.data @@ -22,7 +22,7 @@ https://www.w3.org/TR/NOTE-amaya-970220 - d:ambient-light ambient-light -18 October 2022 +24 January 2024 WD Ambient Light Sensor https://www.w3.org/TR/ambient-light/ @@ -370,6 +370,84 @@ https://www.w3.org/TR/2022/WD-ambient-light-20221018/ +Anssi Kostiainen +Rijubrata Bhaumik +- +d:ambient-light-20230130 +ambient-light-20230130 +30 January 2023 +WD +Ambient Light Sensor +https://www.w3.org/TR/2023/WD-ambient-light-20230130/ +https://www.w3.org/TR/2023/WD-ambient-light-20230130/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:ambient-light-20230721 +ambient-light-20230721 +21 July 2023 +WD +Ambient Light Sensor +https://www.w3.org/TR/2023/WD-ambient-light-20230721/ +https://www.w3.org/TR/2023/WD-ambient-light-20230721/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:ambient-light-20231020 +ambient-light-20231020 +20 October 2023 +WD +Ambient Light Sensor +https://www.w3.org/TR/2023/WD-ambient-light-20231020/ +https://www.w3.org/TR/2023/WD-ambient-light-20231020/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:ambient-light-20231127 +ambient-light-20231127 +27 November 2023 +WD +Ambient Light Sensor +https://www.w3.org/TR/2023/WD-ambient-light-20231127/ +https://www.w3.org/TR/2023/WD-ambient-light-20231127/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:ambient-light-20240105 +ambient-light-20240105 +5 January 2024 +WD +Ambient Light Sensor +https://www.w3.org/TR/2024/WD-ambient-light-20240105/ +https://www.w3.org/TR/2024/WD-ambient-light-20240105/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:ambient-light-20240124 +ambient-light-20240124 +24 January 2024 +WD +Ambient Light Sensor +https://www.w3.org/TR/2024/WD-ambient-light-20240124/ +https://www.w3.org/TR/2024/WD-ambient-light-20240124/ + + + Anssi Kostiainen Rijubrata Bhaumik - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-an.data b/bikeshed/spec-data/readonly/biblio/biblio-an.data index c42f6a0b15..e69b017315 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-an.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-an.data @@ -1,3 +1,25 @@ +d:anchors +ANCHORS + +Editor's Draft +WebXR Anchors Module +https://immersive-web.github.io/anchors/ + + + + +- +d:angle_instanced_arrays +ANGLE_INSTANCED_ARRAYS + +Editor's Draft +WebGL ANGLE_instanced_arrays Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/ANGLE_instanced_arrays/ + + + + +- d:animation-timing animation-timing 22 September 2015 @@ -421,6 +443,17 @@ https://www.w3.org/TR/2017/REC-annotation-vocab-20170223/ Robert Sanderson Paolo Ciccarese Benjamin Young +- +d:anonymous-iframe +ANONYMOUS-IFRAME + +Draft Community Group Report +Iframe credentialless +https://wicg.github.io/anonymous-iframe/ + + + + - d:ansi-x9-44 ANSI-X9-44 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ap.data b/bikeshed/spec-data/readonly/biblio/biblio-ap.data index cd4dd6005b..3de4e82c90 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ap.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ap.data @@ -44,6 +44,26 @@ a:api-design-principles-20220824 API-DESIGN-PRINCIPLES-20220824 design-principles-20220824 - +a:api-design-principles-20230224 +API-DESIGN-PRINCIPLES-20230224 +design-principles-20230224 +- +a:api-design-principles-20230426 +API-DESIGN-PRINCIPLES-20230426 +design-principles-20230426 +- +a:api-design-principles-20230907 +API-DESIGN-PRINCIPLES-20230907 +design-principles-20230907 +- +a:api-design-principles-20240130 +API-DESIGN-PRINCIPLES-20240130 +design-principles-20240130 +- +a:api-design-principles-20240718 +API-DESIGN-PRINCIPLES-20240718 +design-principles-20240718 +- d:api-perms api-perms 14 July 2015 @@ -186,7 +206,7 @@ Marcos Caceres - d:appmanifest appmanifest -25 January 2023 +2 July 2024 WD Web Application Manifest https://www.w3.org/TR/appmanifest/ @@ -197,9 +217,9 @@ https://w3c.github.io/manifest/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20131217 appmanifest-20131217 @@ -858,9 +878,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160609/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160629 appmanifest-20160629 @@ -875,9 +895,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160629/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160714 appmanifest-20160714 @@ -892,9 +912,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160714/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160805 appmanifest-20160805 @@ -909,9 +929,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160805/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160809 appmanifest-20160809 @@ -926,9 +946,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160809/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160812 appmanifest-20160812 @@ -943,9 +963,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160812/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160825 appmanifest-20160825 @@ -960,9 +980,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160825/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160901 appmanifest-20160901 @@ -977,9 +997,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160901/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20160912 appmanifest-20160912 @@ -994,9 +1014,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20160912/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161013 appmanifest-20161013 @@ -1011,9 +1031,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161013/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161103 appmanifest-20161103 @@ -1028,9 +1048,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161103/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161107 appmanifest-20161107 @@ -1045,9 +1065,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161107/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161108 appmanifest-20161108 @@ -1062,9 +1082,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161108/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161110 appmanifest-20161110 @@ -1079,9 +1099,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161110/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161114 appmanifest-20161114 @@ -1096,9 +1116,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161114/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161130 appmanifest-20161130 @@ -1113,9 +1133,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161130/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161205 appmanifest-20161205 @@ -1130,9 +1150,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161205/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161206 appmanifest-20161206 @@ -1147,9 +1167,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161206/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20161212 appmanifest-20161212 @@ -1164,9 +1184,9 @@ https://www.w3.org/TR/2016/WD-appmanifest-20161212/ Marcos Caceres Kenneth Christiansen Matt Giuca -Aaron Gustafson +Diego Gonzalez-Zuniga Daniel Murphy -Anssi Kostiainen +Christian Liebel - d:appmanifest-20170104 appmanifest-20170104 @@ -3015,3 +3035,241 @@ Aaron Gustafson Daniel Murphy Anssi Kostiainen - +d:appmanifest-20230329 +appmanifest-20230329 +29 March 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20230329/ +https://www.w3.org/TR/2023/WD-appmanifest-20230329/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20230426 +appmanifest-20230426 +26 April 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20230426/ +https://www.w3.org/TR/2023/WD-appmanifest-20230426/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20230502 +appmanifest-20230502 +2 May 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20230502/ +https://www.w3.org/TR/2023/WD-appmanifest-20230502/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20231006 +appmanifest-20231006 +6 October 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20231006/ +https://www.w3.org/TR/2023/WD-appmanifest-20231006/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20231012 +appmanifest-20231012 +12 October 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20231012/ +https://www.w3.org/TR/2023/WD-appmanifest-20231012/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20231028 +appmanifest-20231028 +28 October 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20231028/ +https://www.w3.org/TR/2023/WD-appmanifest-20231028/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20231115 +appmanifest-20231115 +15 November 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20231115/ +https://www.w3.org/TR/2023/WD-appmanifest-20231115/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20231129 +appmanifest-20231129 +29 November 2023 +WD +Web Application Manifest +https://www.w3.org/TR/2023/WD-appmanifest-20231129/ +https://www.w3.org/TR/2023/WD-appmanifest-20231129/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20240410 +appmanifest-20240410 +10 April 2024 +WD +Web Application Manifest +https://www.w3.org/TR/2024/WD-appmanifest-20240410/ +https://www.w3.org/TR/2024/WD-appmanifest-20240410/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20240501 +appmanifest-20240501 +1 May 2024 +WD +Web Application Manifest +https://www.w3.org/TR/2024/WD-appmanifest-20240501/ +https://www.w3.org/TR/2024/WD-appmanifest-20240501/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20240502 +appmanifest-20240502 +2 May 2024 +WD +Web Application Manifest +https://www.w3.org/TR/2024/WD-appmanifest-20240502/ +https://www.w3.org/TR/2024/WD-appmanifest-20240502/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Aaron Gustafson +Daniel Murphy +Anssi Kostiainen +- +d:appmanifest-20240517 +appmanifest-20240517 +17 May 2024 +WD +Web Application Manifest +https://www.w3.org/TR/2024/WD-appmanifest-20240517/ +https://www.w3.org/TR/2024/WD-appmanifest-20240517/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Diego Gonzalez-Zuniga +Daniel Murphy +Christian Liebel +- +d:appmanifest-20240612 +appmanifest-20240612 +12 June 2024 +WD +Web Application Manifest +https://www.w3.org/TR/2024/WD-appmanifest-20240612/ +https://www.w3.org/TR/2024/WD-appmanifest-20240612/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Diego Gonzalez-Zuniga +Daniel Murphy +Christian Liebel +- +d:appmanifest-20240702 +appmanifest-20240702 +2 July 2024 +WD +Web Application Manifest +https://www.w3.org/TR/2024/WD-appmanifest-20240702/ +https://www.w3.org/TR/2024/WD-appmanifest-20240702/ + + + +Marcos Caceres +Kenneth Christiansen +Matt Giuca +Diego Gonzalez-Zuniga +Daniel Murphy +Christian Liebel +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ar.data b/bikeshed/spec-data/readonly/biblio/biblio-ar.data index df8ffe49c4..50f041a099 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ar.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ar.data @@ -1,6 +1,6 @@ d:arab-ks-gap arab-ks-gap -12 July 2022 +19 July 2024 NOTE Perso-arabic Kashmiri Gap Analysis https://www.w3.org/TR/arab-ks-gap/ @@ -56,11 +56,179 @@ https://www.w3.org/TR/2022/DNOTE-arab-ks-gap-20220712/ +Richard Ishida +- +d:arab-ks-gap-20230614 +arab-ks-gap-20230614 +14 June 2023 +NOTE +Perso-arabic Kashmiri Gap Analysis +https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20230614/ + + + +Richard Ishida +- +d:arab-ks-gap-20230807 +arab-ks-gap-20230807 +7 August 2023 +NOTE +Perso-arabic Kashmiri Gap Analysis +https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20230807/ + + + +Richard Ishida +- +d:arab-ks-gap-20231004 +arab-ks-gap-20231004 +4 October 2023 +NOTE +Perso-arabic Kashmiri Gap Analysis +https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20231004/ + + + +Richard Ishida +- +d:arab-ks-gap-20240314 +arab-ks-gap-20240314 +14 March 2024 +NOTE +Perso-arabic Kashmiri Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ks-gap-20240314/ +https://www.w3.org/TR/2024/DNOTE-arab-ks-gap-20240314/ + + + +Richard Ishida +- +d:arab-ks-gap-20240702 +arab-ks-gap-20240702 +2 July 2024 +NOTE +Perso-arabic Kashmiri Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ks-gap-20240702/ +https://www.w3.org/TR/2024/DNOTE-arab-ks-gap-20240702/ + + + +Richard Ishida +- +d:arab-ks-gap-20240719 +arab-ks-gap-20240719 +19 July 2024 +NOTE +Perso-arabic Kashmiri Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ks-gap-20240719/ +https://www.w3.org/TR/2024/DNOTE-arab-ks-gap-20240719/ + + + +Richard Ishida +- +d:arab-ks-lreq +arab-ks-lreq +19 July 2024 +NOTE +Perso-arabic Kashmiri Layout Requirements +https://www.w3.org/TR/arab-ks-lreq/ +https://w3c.github.io/alreq/arab-ks/ + + + +Richard Ishida +- +d:arab-ks-lreq-20240618 +arab-ks-lreq-20240618 +18 June 2024 +NOTE +Perso-arabic Kashmiri Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ks-lreq-20240618/ +https://www.w3.org/TR/2024/DNOTE-arab-ks-lreq-20240618/ + + + +Richard Ishida +- +d:arab-ks-lreq-20240702 +arab-ks-lreq-20240702 +2 July 2024 +NOTE +Perso-arabic Kashmiri Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ks-lreq-20240702/ +https://www.w3.org/TR/2024/DNOTE-arab-ks-lreq-20240702/ + + + +Richard Ishida +- +d:arab-ks-lreq-20240719 +arab-ks-lreq-20240719 +19 July 2024 +NOTE +Perso-arabic Kashmiri Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ks-lreq-20240719/ +https://www.w3.org/TR/2024/DNOTE-arab-ks-lreq-20240719/ + + + +Richard Ishida +- +d:arab-lreq +arab-lreq +15 August 2024 +NOTE +Arabic Script Resources +https://www.w3.org/TR/arab-lreq/ +https://w3c.github.io/alreq/arab/ + + + +Richard Ishida +- +d:arab-lreq-20240716 +arab-lreq-20240716 +16 July 2024 +NOTE +Arabic Script Resources +https://www.w3.org/TR/2024/DNOTE-arab-lreq-20240716/ +https://www.w3.org/TR/2024/DNOTE-arab-lreq-20240716/ + + + +Richard Ishida +- +d:arab-lreq-20240802 +arab-lreq-20240802 +2 August 2024 +NOTE +Arabic Script Resources +https://www.w3.org/TR/2024/DNOTE-arab-lreq-20240802/ +https://www.w3.org/TR/2024/DNOTE-arab-lreq-20240802/ + + + +Richard Ishida +- +d:arab-lreq-20240815 +arab-lreq-20240815 +15 August 2024 +NOTE +Arabic Script Resources +https://www.w3.org/TR/2024/DNOTE-arab-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-arab-lreq-20240815/ + + + Richard Ishida - d:arab-ug-gap arab-ug-gap -12 July 2022 +19 July 2024 NOTE Uighur Gap Analysis https://www.w3.org/TR/arab-ug-gap/ @@ -116,6 +284,186 @@ https://www.w3.org/TR/2022/DNOTE-arab-ug-gap-20220712/ +Richard Ishida +- +d:arab-ug-gap-20230614 +arab-ug-gap-20230614 +14 June 2023 +NOTE +Uighur Gap Analysis +https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20230614/ + + + +Richard Ishida +- +d:arab-ug-gap-20230807 +arab-ug-gap-20230807 +7 August 2023 +NOTE +Uighur Gap Analysis +https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20230807/ + + + +Richard Ishida +- +d:arab-ug-gap-20231004 +arab-ug-gap-20231004 +4 October 2023 +NOTE +Uighur Gap Analysis +https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20231004/ + + + +Richard Ishida +- +d:arab-ug-gap-20240702 +arab-ug-gap-20240702 +2 July 2024 +NOTE +Uighur Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ug-gap-20240702/ +https://www.w3.org/TR/2024/DNOTE-arab-ug-gap-20240702/ + + + +Richard Ishida +- +d:arab-ug-gap-20240719 +arab-ug-gap-20240719 +19 July 2024 +NOTE +Uighur Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ug-gap-20240719/ +https://www.w3.org/TR/2024/DNOTE-arab-ug-gap-20240719/ + + + +Richard Ishida +- +d:arab-ug-lreq +arab-ug-lreq +19 July 2024 +NOTE +Uighur Layout Requirements +https://www.w3.org/TR/arab-ug-lreq/ +https://w3c.github.io/alreq/arab-ug/ + + + +Richard Ishida +- +d:arab-ug-lreq-20240618 +arab-ug-lreq-20240618 +18 June 2024 +NOTE +Uighur Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ug-lreq-20240618/ +https://www.w3.org/TR/2024/DNOTE-arab-ug-lreq-20240618/ + + + +Richard Ishida +- +d:arab-ug-lreq-20240719 +arab-ug-lreq-20240719 +19 July 2024 +NOTE +Uighur Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ug-lreq-20240719/ +https://www.w3.org/TR/2024/DNOTE-arab-ug-lreq-20240719/ + + + +Richard Ishida +- +d:arab-ur-gap +arab-ur-gap +19 July 2024 +NOTE +Urdu Gap Analysis +https://www.w3.org/TR/arab-ur-gap/ +https://w3c.github.io/alreq/gap-analysis/arab-ur-gap.html + + + +Richard Ishida +- +d:arab-ur-gap-20240702 +arab-ur-gap-20240702 +2 July 2024 +NOTE +Urdu Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ur-gap-20240702/ +https://www.w3.org/TR/2024/DNOTE-arab-ur-gap-20240702/ + + + +Richard Ishida +- +d:arab-ur-gap-20240719 +arab-ur-gap-20240719 +19 July 2024 +NOTE +Urdu Gap Analysis +https://www.w3.org/TR/2024/DNOTE-arab-ur-gap-20240719/ +https://www.w3.org/TR/2024/DNOTE-arab-ur-gap-20240719/ + + + +Richard Ishida +- +d:arab-ur-lreq +arab-ur-lreq +19 July 2024 +NOTE +Urdu Layout Requirements +https://www.w3.org/TR/arab-ur-lreq/ +https://w3c.github.io/alreq/arab-ur/ + + + +Richard Ishida +- +d:arab-ur-lreq-20240618 +arab-ur-lreq-20240618 +18 June 2024 +NOTE +Urdu Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ur-lreq-20240618/ +https://www.w3.org/TR/2024/DNOTE-arab-ur-lreq-20240618/ + + + +Richard Ishida +- +d:arab-ur-lreq-20240630 +arab-ur-lreq-20240630 +30 June 2024 +NOTE +Urdu Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ur-lreq-20240630/ +https://www.w3.org/TR/2024/DNOTE-arab-ur-lreq-20240630/ + + + +Richard Ishida +- +d:arab-ur-lreq-20240719 +arab-ur-lreq-20240719 +19 July 2024 +NOTE +Urdu Layout Requirements +https://www.w3.org/TR/2024/DNOTE-arab-ur-lreq-20240719/ +https://www.w3.org/TR/2024/DNOTE-arab-ur-lreq-20240719/ + + + Richard Ishida - d:arabic-math diff --git a/bikeshed/spec-data/readonly/biblio/biblio-as.data b/bikeshed/spec-data/readonly/biblio/biblio-as.data index 113484877d..1c9afb3fff 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-as.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-as.data @@ -19,4 +19,15 @@ https://www.w3.org/TR/1998/NOTE-AS-19980619 +- +d:ascii +ASCII + + +ISO/IEC 646:1991, Information technology -- ISO 7-bit coded character set for information interchange +https://www.ecma-international.org/publications-and-standards/standards/ecma-6/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-at.data b/bikeshed/spec-data/readonly/biblio/biblio-at.data index 1bbfa86804..62e636b1b5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-at.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-at.data @@ -697,4 +697,15 @@ http://www.atsc.org/cms/standards/a72/A72-Part-1-2014.pdf +- +d:attribution-reporting-api +ATTRIBUTION-REPORTING-API + +Draft Community Group Report +Attribution Reporting +https://wicg.github.io/attribution-reporting-api/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-au.data b/bikeshed/spec-data/readonly/biblio/biblio-au.data index ca024307b6..046dbe9960 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-au.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-au.data @@ -24,7 +24,7 @@ Raymond Toy - d:audio-output audio-output -10 February 2022 +31 August 2023 CR Audio Output Devices API https://www.w3.org/TR/audio-output/ @@ -241,6 +241,59 @@ https://www.w3.org/TR/2022/CRD-audio-output-20220210/ Justin Uberti Guido Urdaneta youenn fablet +- +d:audio-output-20230203 +audio-output-20230203 +3 February 2023 +CR +Audio Output Devices API +https://www.w3.org/TR/2023/CRD-audio-output-20230203/ +https://www.w3.org/TR/2023/CRD-audio-output-20230203/ + + + +Justin Uberti +Guido Urdaneta +youenn fablet +- +d:audio-output-20230504 +audio-output-20230504 +4 May 2023 +CR +Audio Output Devices API +https://www.w3.org/TR/2023/CRD-audio-output-20230504/ +https://www.w3.org/TR/2023/CRD-audio-output-20230504/ + + + +Justin Uberti +Guido Urdaneta +youenn fablet +- +d:audio-output-20230831 +audio-output-20230831 +31 August 2023 +CR +Audio Output Devices API +https://www.w3.org/TR/2023/CRD-audio-output-20230831/ +https://www.w3.org/TR/2023/CRD-audio-output-20230831/ + + + +Justin Uberti +Guido Urdaneta +youenn fablet +- +d:audio-session +AUDIO-SESSION + +Editor's Draft +Audio Session +https://w3c.github.io/audio-session/ + + + + - d:audiobooks audiobooks @@ -458,7 +511,7 @@ https://www.w3.org/TR/1999/NOTE-authentform-19990203 - d:autoplay-detection autoplay-detection -27 January 2023 +4 July 2024 WD Autoplay Policy Detection https://www.w3.org/TR/autoplay-detection/ @@ -466,7 +519,7 @@ https://w3c.github.io/autoplay/ -ALASTOR WU +Alastor Wu - d:autoplay-detection-20220315 autoplay-detection-20220315 @@ -514,5 +567,29 @@ https://www.w3.org/TR/2023/WD-autoplay-detection-20230127/ -ALASTOR WU +Alastor Wu +- +d:autoplay-detection-20230210 +autoplay-detection-20230210 +10 February 2023 +WD +Autoplay Policy Detection +https://www.w3.org/TR/2023/WD-autoplay-detection-20230210/ +https://www.w3.org/TR/2023/WD-autoplay-detection-20230210/ + + + +Alastor Wu +- +d:autoplay-detection-20240704 +autoplay-detection-20240704 +4 July 2024 +WD +Autoplay Policy Detection +https://www.w3.org/TR/2024/WD-autoplay-detection-20240704/ +https://www.w3.org/TR/2024/WD-autoplay-detection-20240704/ + + + +Alastor Wu - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-av.data b/bikeshed/spec-data/readonly/biblio/biblio-av.data index 0f3721b076..32301c29b7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-av.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-av.data @@ -10,4 +10,59 @@ https://aomediacodec.github.io/av1-spec/av1-spec.pdf Peter de Rivaz Jack Haughton +- +d:av1-avif +AV1-AVIF + +Final Deliverable +AV1 Image File Format (AVIF) +https://aomediacodec.github.io/av1-avif/ + + + + +- +d:av1-hdr10plus +AV1-HDR10PLUS + +Final Deliverable +HDR10+ AV1 Metadata Handling Specification +https://aomediacodec.github.io/av1-hdr10plus/ + + + + +- +d:av1-isobmff +AV1-ISOBMFF + +Draft Deliverable +AV1 Codec ISO Media File Format Binding +https://aomediacodec.github.io/av1-isobmff/ + + + + +- +d:av1-mpeg2-ts +AV1-MPEG2-TS + +Draft Deliverable +Carriage of AV1 in MPEG-2 TS +https://aomediacodec.github.io/av1-mpeg2-ts/ + + + + +- +d:av1-rtp-spec +AV1-RTP-SPEC + +Draft Deliverable +RTP Payload Format For AV1 (v1.0) +https://aomediacodec.github.io/av1-rtp-spec/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ba.data b/bikeshed/spec-data/readonly/biblio/biblio-ba.data index 36e89f3a2b..28f97acfff 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ba.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ba.data @@ -44,22 +44,48 @@ Steven Pemberton Charles Wiecha - d:badging -BADGING - -ED +badging +3 May 2023 +WD Badging API +https://www.w3.org/TR/badging/ https://w3c.github.io/badging/ +Marcos Caceres +Diego Gonzalez-Zuniga +- +d:badging-20230411 +badging-20230411 +11 April 2023 +WD +Badging API +https://www.w3.org/TR/2023/WD-badging-20230411/ +https://www.w3.org/TR/2023/WD-badging-20230411/ + + + +Marcos Caceres +Diego Gonzalez-Zuniga +- +d:badging-20230503 +badging-20230503 +3 May 2023 +WD +Badging API +https://www.w3.org/TR/2023/WD-badging-20230503/ +https://www.w3.org/TR/2023/WD-badging-20230503/ + + -Matt Giuca -Jay Harris +Marcos Caceres +Diego Gonzalez-Zuniga - d:baggage baggage -28 September 2022 -WD +30 May 2024 +CR Propagation format for distributed context: Baggage https://www.w3.org/TR/baggage/ https://w3c.github.io/baggage/ @@ -68,6 +94,8 @@ https://w3c.github.io/baggage/ Sergey Kanzhelev Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram - d:baggage-20201020 baggage-20201020 @@ -232,9 +260,112 @@ https://www.w3.org/TR/2022/WD-baggage-20220928/ Sergey Kanzhelev Yuri Shkuro - +d:baggage-20230523 +baggage-20230523 +23 May 2023 +WD +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2023/WD-baggage-20230523/ +https://www.w3.org/TR/2023/WD-baggage-20230523/ + + + +Sergey Kanzhelev +Yuri Shkuro +- +d:baggage-20230810 +baggage-20230810 +10 August 2023 +WD +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2023/WD-baggage-20230810/ +https://www.w3.org/TR/2023/WD-baggage-20230810/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram +- +d:baggage-20240119 +baggage-20240119 +19 January 2024 +WD +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2024/WD-baggage-20240119/ +https://www.w3.org/TR/2024/WD-baggage-20240119/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram +- +d:baggage-20240228 +baggage-20240228 +28 February 2024 +WD +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2024/WD-baggage-20240228/ +https://www.w3.org/TR/2024/WD-baggage-20240228/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram +- +d:baggage-20240326 +baggage-20240326 +26 March 2024 +WD +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2024/WD-baggage-20240326/ +https://www.w3.org/TR/2024/WD-baggage-20240326/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram +- +d:baggage-20240423 +baggage-20240423 +23 April 2024 +WD +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2024/WD-baggage-20240423/ +https://www.w3.org/TR/2024/WD-baggage-20240423/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram +- +d:baggage-20240530 +baggage-20240530 +30 May 2024 +CR +Propagation format for distributed context: Baggage +https://www.w3.org/TR/2024/CR-baggage-20240530/ +https://www.w3.org/TR/2024/CR-baggage-20240530/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +J. Kalyana Sundaram +- d:battery-status battery-status -3 February 2022 +23 May 2024 WD Battery Status API https://www.w3.org/TR/battery-status/ @@ -243,7 +374,6 @@ https://w3c.github.io/battery/ Anssi Kostiainen -Mounir Lamouri Raphael Kubo da Costa - d:battery-status-20110426 @@ -257,7 +387,6 @@ https://www.w3.org/TR/2011/WD-battery-status-20110426/ Anssi Kostiainen -Mounir Lamouri Raphael Kubo da Costa - d:battery-status-20110602 @@ -271,7 +400,6 @@ https://www.w3.org/TR/2011/WD-battery-status-20110602/ Anssi Kostiainen -Mounir Lamouri Raphael Kubo da Costa - d:battery-status-20110915 @@ -285,7 +413,6 @@ https://www.w3.org/TR/2011/WD-battery-status-20110915/ Anssi Kostiainen -Mounir Lamouri Raphael Kubo da Costa - d:battery-status-20111129 @@ -299,7 +426,6 @@ https://www.w3.org/TR/2011/WD-battery-status-20111129/ Anssi Kostiainen -Mounir Lamouri Raphael Kubo da Costa - d:battery-status-20120508 @@ -498,3 +624,16 @@ Anssi Kostiainen Mounir Lamouri Raphael Kubo da Costa - +d:battery-status-20240523 +battery-status-20240523 +23 May 2024 +WD +Battery Status API +https://www.w3.org/TR/2024/WD-battery-status-20240523/ +https://www.w3.org/TR/2024/WD-battery-status-20240523/ + + + +Anssi Kostiainen +Raphael Kubo da Costa +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-bc.data b/bikeshed/spec-data/readonly/biblio/biblio-bc.data index 6f420d7f64..e9adb79fd4 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-bc.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-bc.data @@ -1,8 +1,31 @@ +d:bcp0072 +bcp0072 +July 2003 +Best Current Practice +Guidelines for Writing RFC Text on Security Considerations +https://www.rfc-editor.org/info/bcp72 + + + + +E. Rescorla +B. Korver +F. Gont +I. Arce +- a:bcp13 BCP13 RFC4289 - +a:bcp175 +BCP175 +rfc6557 +- a:bcp47 BCP47 rfc5646 - +a:bcp72 +bcp72 +bcp0072 +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-be.data b/bikeshed/spec-data/readonly/biblio/biblio-be.data index 77a23b16aa..1cc9ee487c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-be.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-be.data @@ -419,7 +419,7 @@ Ian Hickson - d:beng-gap beng-gap -15 December 2021 +10 July 2024 NOTE Bengali Gap Analysis https://www.w3.org/TR/beng-gap/ @@ -523,6 +523,102 @@ https://www.w3.org/TR/2021/DNOTE-beng-gap-20211215/ +Richard Ishida +- +d:beng-gap-20230614 +beng-gap-20230614 +14 June 2023 +NOTE +Bengali Gap Analysis +https://www.w3.org/TR/2023/DNOTE-beng-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-beng-gap-20230614/ + + + +Richard Ishida +- +d:beng-gap-20230830 +beng-gap-20230830 +30 August 2023 +NOTE +Bengali Gap Analysis +https://www.w3.org/TR/2023/DNOTE-beng-gap-20230830/ +https://www.w3.org/TR/2023/DNOTE-beng-gap-20230830/ + + + +Richard Ishida +- +d:beng-gap-20231004 +beng-gap-20231004 +4 October 2023 +NOTE +Bengali Gap Analysis +https://www.w3.org/TR/2023/DNOTE-beng-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-beng-gap-20231004/ + + + +Richard Ishida +- +d:beng-gap-20240701 +beng-gap-20240701 +1 July 2024 +NOTE +Bengali Gap Analysis +https://www.w3.org/TR/2024/DNOTE-beng-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-beng-gap-20240701/ + + + +Richard Ishida +- +d:beng-gap-20240704 +beng-gap-20240704 +4 July 2024 +NOTE +Bengali Gap Analysis +https://www.w3.org/TR/2024/DNOTE-beng-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-beng-gap-20240704/ + + + +Richard Ishida +- +d:beng-gap-20240710 +beng-gap-20240710 +10 July 2024 +NOTE +Bengali Gap Analysis +https://www.w3.org/TR/2024/DNOTE-beng-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-beng-gap-20240710/ + + + +Richard Ishida +- +d:beng-lreq +beng-lreq +8 August 2024 +NOTE +Bengali Script Resources +https://www.w3.org/TR/beng-lreq/ +https://w3c.github.io/iip/beng/ + + + +Richard Ishida +- +d:beng-lreq-20240808 +beng-lreq-20240808 +8 August 2024 +NOTE +Bengali Script Resources +https://www.w3.org/TR/2024/DNOTE-beng-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-beng-lreq-20240808/ + + + Richard Ishida - a:berners-lee98 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-bl.data b/bikeshed/spec-data/readonly/biblio/biblio-bl.data index 36d8222c22..d159a8d6d5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-bl.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-bl.data @@ -82,3 +82,11 @@ a:blob-20221130 BLOB-20221130 FileAPI-20221130 - +a:blob-20230206 +BLOB-20230206 +FileAPI-20230206 +- +a:blob-20240524 +BLOB-20240524 +FileAPI-20240524 +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ca.data b/bikeshed/spec-data/readonly/biblio/biblio-ca.data index 1f511b02f7..15a4f593b5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ca.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ca.data @@ -89,9 +89,9 @@ Brandon Porter - d:cans-iu-cr-gap cans-iu-cr-gap -21 May 2021 -WD -Inuktitut & Cree Gap Analysis +9 July 2024 +NOTE +Canadian Syllabics Gap Analysis https://www.w3.org/TR/cans-iu-cr-gap/ https://w3c.github.io/amlreq/gap-analysis/iu-cr-gap @@ -133,6 +133,78 @@ https://www.w3.org/TR/2021/WD-cans-iu-cr-gap-20210521/ +Richard Ishida +- +d:cans-iu-cr-gap-20230614 +cans-iu-cr-gap-20230614 +14 June 2023 +NOTE +Inuktitut & Cree Gap Analysis +https://www.w3.org/TR/2023/DNOTE-cans-iu-cr-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-cans-iu-cr-gap-20230614/ + + + +Richard Ishida +- +d:cans-iu-cr-gap-20240701 +cans-iu-cr-gap-20240701 +1 July 2024 +NOTE +Inuktitut & Cree Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cans-iu-cr-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-cans-iu-cr-gap-20240701/ + + + +Richard Ishida +- +d:cans-iu-cr-gap-20240704 +cans-iu-cr-gap-20240704 +4 July 2024 +NOTE +Inuktitut & Cree Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cans-iu-cr-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-cans-iu-cr-gap-20240704/ + + + +Richard Ishida +- +d:cans-iu-cr-gap-20240709 +cans-iu-cr-gap-20240709 +9 July 2024 +NOTE +Canadian Syllabics Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cans-iu-cr-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-cans-iu-cr-gap-20240709/ + + + +Richard Ishida +- +d:cans-lreq +cans-lreq +8 August 2024 +NOTE +Canadian Aboriginal Syllabics Script Resources +https://www.w3.org/TR/cans-lreq/ +https://w3c.github.io/amlreq/cans/ + + + +Richard Ishida +- +d:cans-lreq-20240808 +cans-lreq-20240808 +8 August 2024 +NOTE +Canadian Aboriginal Syllabics Script Resources +https://www.w3.org/TR/2024/DNOTE-cans-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-cans-lreq-20240808/ + + + Richard Ishida - a:canvas-2d @@ -206,6 +278,17 @@ CANVAS-2D-20151119 a:canvas-2d-20210128 CANVAS-2D-20210128 2dcontext-20210128 +- +d:capability-delegation +CAPABILITY-DELEGATION + +Draft Community Group Report +Capability Delegation +https://wicg.github.io/capability-delegation/spec.html + + + + - d:capability-urls capability-urls @@ -297,7 +380,7 @@ html-media-capture-20180201 - d:capture-handle-identity capture-handle-identity -6 July 2022 +5 June 2024 WD Capture Handle - Bootstrapping Collaboration when Screensharing https://www.w3.org/TR/capture-handle-identity/ @@ -344,6 +427,19 @@ https://www.w3.org/TR/2022/WD-capture-handle-identity-20220706/ +Elad Alon +Jan-Ivar Bruaroey +- +d:capture-handle-identity-20240605 +capture-handle-identity-20240605 +5 June 2024 +WD +Capture Handle - Bootstrapping Collaboration when Screensharing +https://www.w3.org/TR/2024/WD-capture-handle-identity-20240605/ +https://www.w3.org/TR/2024/WD-capture-handle-identity-20240605/ + + + Elad Alon Jan-Ivar Bruaroey - @@ -370,6 +466,17 @@ https://www.w3.org/TR/2012/WD-capture-scenarios-20120306/ Travis Leithead +- +d:captured-mouse-events +CAPTURED-MOUSE-EVENTS + +Draft Community Group Report +Captured Mouse Events +https://screen-share.github.io/captured-mouse-events/ + + + + - d:card-network-ids card-network-ids diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cb.data b/bikeshed/spec-data/readonly/biblio/biblio-cb.data new file mode 100644 index 0000000000..9907328348 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-cb.data @@ -0,0 +1,12 @@ +d:cbd +CBD +3 June 2005 +W3C Member Submission +CBD - Concise Bounded Description +https://www.w3.org/Submission/CBD/ + + + + +Patrick Stickler, Nokia +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ch.data b/bikeshed/spec-data/readonly/biblio/biblio-ch.data index 4d51b493d8..240420fc23 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ch.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ch.data @@ -1,6 +1,6 @@ d:change-password-url change-password-url -27 September 2022 +3 June 2024 WD A Well-Known URL for Changing Passwords https://www.w3.org/TR/change-password-url/ @@ -21,6 +21,19 @@ https://www.w3.org/TR/2022/WD-change-password-url-20220927/ +Ricky Mondello +Theresa O'Connor +- +d:change-password-url-20240603 +change-password-url-20240603 +3 June 2024 +WD +A Well-Known URL for Changing Passwords +https://www.w3.org/TR/2024/WD-change-password-url-20240603/ +https://www.w3.org/TR/2024/WD-change-password-url-20240603/ + + + Ricky Mondello Theresa O'Connor - @@ -476,11 +489,11 @@ https://www.iana.org/assignments/character-sets - d:cher-gap cher-gap -19 January 2022 +9 July 2024 NOTE Cherokee Gap Analysis https://www.w3.org/TR/cher-gap/ -https://w3c.github.io/amlreq/gap-analysis/chr-gap.html +https://w3c.github.io/amlreq/gap-analysis/chr-gap @@ -532,6 +545,102 @@ https://www.w3.org/TR/2022/DNOTE-cher-gap-20220119/ +Richard Ishida +- +d:cher-gap-20230614 +cher-gap-20230614 +14 June 2023 +NOTE +Cherokee Gap Analysis +https://www.w3.org/TR/2023/DNOTE-cher-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-cher-gap-20230614/ + + + +Richard Ishida +- +d:cher-gap-20230615 +cher-gap-20230615 +15 June 2023 +NOTE +Cherokee Gap Analysis +https://www.w3.org/TR/2023/DNOTE-cher-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-cher-gap-20230615/ + + + +Richard Ishida +- +d:cher-gap-20240630 +cher-gap-20240630 +30 June 2024 +NOTE +Cherokee Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240630/ +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240630/ + + + +Richard Ishida +- +d:cher-gap-20240701 +cher-gap-20240701 +1 July 2024 +NOTE +Cherokee Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240701/ + + + +Richard Ishida +- +d:cher-gap-20240704 +cher-gap-20240704 +4 July 2024 +NOTE +Cherokee Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240704/ + + + +Richard Ishida +- +d:cher-gap-20240709 +cher-gap-20240709 +9 July 2024 +NOTE +Cherokee Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-cher-gap-20240709/ + + + +Richard Ishida +- +d:cher-lreq +cher-lreq +8 August 2024 +NOTE +Cherokee Script Resources +https://www.w3.org/TR/cher-lreq/ +https://w3c.github.io/amlreq/cher/ + + + +Richard Ishida +- +d:cher-lreq-20240808 +cher-lreq-20240808 +8 August 2024 +NOTE +Cherokee Script Resources +https://www.w3.org/TR/2024/DNOTE-cher-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-cher-lreq-20240808/ + + + Richard Ishida - d:chips diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cl.data b/bikeshed/spec-data/readonly/biblio/biblio-cl.data index d707c3a10a..8d64956e00 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-cl.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-cl.data @@ -14,7 +14,7 @@ CLDR Unicode Common Locale Data Repository -http://cldr.unicode.org/ +https://cldr.unicode.org/ @@ -67,6 +67,17 @@ https://www.w3.org/TR/2017/WD-clear-site-data-20171130/ Mike West +- +d:client-hint-reliability +CLIENT-HINT-RELIABILITY + +Editor's Draft +Client Hint Reliability +https://datatracker.ietf.org/doc/html/draft-davidben-http-client-hint-reliability + + + + - d:client-hints-infrastructure CLIENT-HINTS-INFRASTRUCTURE @@ -81,7 +92,7 @@ https://wicg.github.io/client-hints-infrastructure/ - d:clipboard-apis clipboard-apis -6 August 2021 +16 May 2023 WD Clipboard API and events https://www.w3.org/TR/clipboard-apis/ @@ -90,7 +101,7 @@ https://w3c.github.io/clipboard-apis/ Gary Kacmarcik -Grisha Lyukshin +Anupam Snigdha - d:clipboard-apis-20061115 clipboard-apis-20061115 @@ -103,7 +114,7 @@ https://www.w3.org/TR/2006/WD-clipboard-apis-20061115/ Gary Kacmarcik -Grisha Lyukshin +Anupam Snigdha - d:clipboard-apis-20110412 clipboard-apis-20110412 @@ -116,7 +127,7 @@ https://www.w3.org/TR/2011/WD-clipboard-apis-20110412/ Gary Kacmarcik -Grisha Lyukshin +Anupam Snigdha - d:clipboard-apis-20120223 clipboard-apis-20120223 @@ -129,7 +140,7 @@ https://www.w3.org/TR/2012/WD-clipboard-apis-20120223/ Gary Kacmarcik -Grisha Lyukshin +Anupam Snigdha - d:clipboard-apis-20130411 clipboard-apis-20130411 @@ -410,6 +421,30 @@ https://www.w3.org/TR/2021/WD-clipboard-apis-20210806/ Gary Kacmarcik Grisha Lyukshin +- +d:clipboard-apis-20230516 +clipboard-apis-20230516 +16 May 2023 +WD +Clipboard API and events +https://www.w3.org/TR/2023/WD-clipboard-apis-20230516/ +https://www.w3.org/TR/2023/WD-clipboard-apis-20230516/ + + + +Gary Kacmarcik +Anupam Snigdha +- +d:close-watcher +CLOSE-WATCHER + +Living Standard +Close Watcher API +https://wicg.github.io/close-watcher/ + +html + + - d:cloud-browser-arch cloud-browser-arch @@ -439,19 +474,14 @@ Alexandra Mikityuk - d:clreq clreq -9 October 2022 +1 July 2024 NOTE Requirements for Chinese Text Layout - 中文排版需求 https://www.w3.org/TR/clreq/ -https://w3c.github.io/clreq/ +https://www.w3.org/International/clreq/ -Bobby Tung -Yijun Chen -Eric Q LIU -Hui Jing Chen -Zhengyu Qian Fuqiao Xue Richard Ishida - @@ -813,16 +843,155 @@ Yijun Chen Eric Q LIU Hui Jing Chen Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20230301 +clreq-20230301 +1 March 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20230301/ +https://www.w3.org/TR/2023/DNOTE-clreq-20230301/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20230401 +clreq-20230401 +1 April 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20230401/ +https://www.w3.org/TR/2023/DNOTE-clreq-20230401/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20230501 +clreq-20230501 +1 May 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20230501/ +https://www.w3.org/TR/2023/DNOTE-clreq-20230501/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20230701 +clreq-20230701 +1 July 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20230701/ +https://www.w3.org/TR/2023/DNOTE-clreq-20230701/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20230801 +clreq-20230801 +1 August 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20230801/ +https://www.w3.org/TR/2023/DNOTE-clreq-20230801/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20230901 +clreq-20230901 +1 September 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20230901/ +https://www.w3.org/TR/2023/DNOTE-clreq-20230901/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20231101 +clreq-20231101 +1 November 2023 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2023/DNOTE-clreq-20231101/ +https://www.w3.org/TR/2023/DNOTE-clreq-20231101/ + + + +Bobby Tung +Yijun Chen +Eric Q LIU +Hui Jing Chen +Zhengyu Qian +Fuqiao Xue +Richard Ishida +- +d:clreq-20240701 +clreq-20240701 +1 July 2024 +NOTE +Requirements for Chinese Text Layout - 中文排版需求 +https://www.w3.org/TR/2024/DNOTE-clreq-20240701/ +https://www.w3.org/TR/2024/DNOTE-clreq-20240701/ + + + Fuqiao Xue Richard Ishida - d:clreq-gap clreq-gap -23 September 2022 +9 July 2024 NOTE Chinese Layout Gap Analysis https://www.w3.org/TR/clreq-gap/ -https://w3c.github.io/clreq/gap-analysis/ +https://www.w3.org/International/clreq/gap-analysis/ @@ -891,6 +1060,97 @@ https://www.w3.org/TR/2022/DNOTE-clreq-gap-20220923/ +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20230615 +clreq-gap-20230615 +15 June 2023 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230615/ + + + +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20230720 +clreq-gap-20230720 +20 July 2023 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230720/ +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230720/ + + + +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20230721 +clreq-gap-20230721 +21 July 2023 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230721/ +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230721/ + + + +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20231004 +clreq-gap-20231004 +4 October 2023 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-clreq-gap-20231004/ + + + +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20240208 +clreq-gap-20240208 +8 February 2024 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240208/ +https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240208/ + + + +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20240704 +clreq-gap-20240704 +4 July 2024 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240704/ + + + +Fuqiao Xue +Richard Ishida +- +d:clreq-gap-20240709 +clreq-gap-20240709 +9 July 2024 +NOTE +Chinese Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240709/ + + + Fuqiao Xue Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-co.data b/bikeshed/spec-data/readonly/biblio/biblio-co.data index de635d64ff..722d1c3acd 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-co.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-co.data @@ -232,6 +232,77 @@ Panagiotis Pediaditis Yannis Theoharis Vassilis Christophides - +d:commonmark +COMMONMARK + + +CommonMark Spec +https://spec.commonmark.org/ + + + + +- +d:commonmark-0.27 +COMMONMARK-0.27 +18 November 2016 + +CommonMark Spec, Version 0.27 +https://spec.commonmark.org/0.27/ +https://spec.commonmark.org/0.27/ + + + +John MacFarlane +- +d:commonmark-0.28 +COMMONMARK-0.28 +1 August 2017 + +CommonMark Spec, Version 0.28 +https://spec.commonmark.org/0.28/ +https://spec.commonmark.org/0.28/ + + + +John MacFarlane +- +d:commonmark-0.29 +COMMONMARK-0.29 +6 April 2019 + +CommonMark Spec, Version 0.29 +https://spec.commonmark.org/0.29/ +https://spec.commonmark.org/0.29/ + + + +John MacFarlane +- +d:commonmark-0.30 +COMMONMARK-0.30 +19 June 2021 + +CommonMark Spec, Version 0.30 +https://spec.commonmark.org/0.30/ +https://spec.commonmark.org/0.30/ + + + +John MacFarlane +- +d:commonmark-0.31.2 +COMMONMARK-0.31.2 +28 January 2024 + +CommonMark Spec, Version 0.31.2 +https://spec.commonmark.org/0.31.2/ +https://spec.commonmark.org/0.31.2/ + + + +John MacFarlane +- d:compat COMPAT @@ -302,7 +373,7 @@ compositing-1 - d:compositing-1 compositing-1 -13 January 2015 +21 March 2024 CR Compositing and Blending Level 1 https://www.w3.org/TR/compositing-1/ @@ -310,8 +381,7 @@ https://drafts.fxtf.org/compositing-1/ -Rik Cabanier -Nikos Andronikos +Chris Harrelson - d:compositing-1-20120816 compositing-1-20120816 @@ -389,6 +459,29 @@ https://www.w3.org/TR/2015/CR-compositing-1-20150113/ Rik Cabanier Nikos Andronikos +- +d:compositing-1-20240321 +compositing-1-20240321 +21 March 2024 +CR +Compositing and Blending Level 1 +https://www.w3.org/TR/2024/CRD-compositing-1-20240321/ +https://www.w3.org/TR/2024/CRD-compositing-1-20240321/ + + + +Chris Harrelson +- +d:compositing-2 +COMPOSITING-2 + +Editor's Draft +Compositing and Blending Level 2 +https://drafts.fxtf.org/compositing-2/ + + + + - a:compositing-20120816 compositing-20120816 @@ -414,16 +507,21 @@ a:compositing-20150113 compositing-20150113 compositing-1-20150113 - +a:compositing-20240321 +compositing-20240321 +compositing-1-20240321 +- d:compression COMPRESSION -cg-draft -Compression Streams -https://wicg.github.io/compression/ +Living Standard +Compression Standard +https://compression.spec.whatwg.org/ +Adam Rice - d:computable COMPUTABLE @@ -439,7 +537,7 @@ A. Turing - d:compute-pressure compute-pressure -24 January 2023 +17 June 2024 WD Compute Pressure Level 1 https://www.w3.org/TR/compute-pressure/ @@ -447,33 +545,399 @@ https://w3c.github.io/compute-pressure/ +Kenneth Christiansen +Raphael Kubo da Costa +Arnaud Mandy +- +d:compute-pressure-20221220 +compute-pressure-20221220 +20 December 2022 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2022/WD-compute-pressure-20221220/ +https://www.w3.org/TR/2022/WD-compute-pressure-20221220/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230124 +compute-pressure-20230124 +24 January 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230124/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230124/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230131 +compute-pressure-20230131 +31 January 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230131/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230131/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230202 +compute-pressure-20230202 +2 February 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230202/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230202/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230203 +compute-pressure-20230203 +3 February 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230203/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230203/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230313 +compute-pressure-20230313 +13 March 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230313/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230313/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230314 +compute-pressure-20230314 +14 March 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230314/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230314/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230322 +compute-pressure-20230322 +22 March 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230322/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230322/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230328 +compute-pressure-20230328 +28 March 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230328/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230328/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230329 +compute-pressure-20230329 +29 March 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230329/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230329/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230330 +compute-pressure-20230330 +30 March 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230330/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230330/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230525 +compute-pressure-20230525 +25 May 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230525/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230525/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230605 +compute-pressure-20230605 +5 June 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230605/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230605/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230613 +compute-pressure-20230613 +13 June 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230613/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230613/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230626 +compute-pressure-20230626 +26 June 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230626/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230626/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230816 +compute-pressure-20230816 +16 August 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230816/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230816/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230831 +compute-pressure-20230831 +31 August 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230831/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230831/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20230926 +compute-pressure-20230926 +26 September 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20230926/ +https://www.w3.org/TR/2023/WD-compute-pressure-20230926/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20231002 +compute-pressure-20231002 +2 October 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20231002/ +https://www.w3.org/TR/2023/WD-compute-pressure-20231002/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20231019 +compute-pressure-20231019 +19 October 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20231019/ +https://www.w3.org/TR/2023/WD-compute-pressure-20231019/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20231103 +compute-pressure-20231103 +3 November 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20231103/ +https://www.w3.org/TR/2023/WD-compute-pressure-20231103/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20231110 +compute-pressure-20231110 +10 November 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20231110/ +https://www.w3.org/TR/2023/WD-compute-pressure-20231110/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20231213 +compute-pressure-20231213 +13 December 2023 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2023/WD-compute-pressure-20231213/ +https://www.w3.org/TR/2023/WD-compute-pressure-20231213/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20240319 +compute-pressure-20240319 +19 March 2024 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2024/WD-compute-pressure-20240319/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240319/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20240405 +compute-pressure-20240405 +5 April 2024 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2024/WD-compute-pressure-20240405/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240405/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20240409 +compute-pressure-20240409 +9 April 2024 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2024/WD-compute-pressure-20240409/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240409/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20240429 +compute-pressure-20240429 +29 April 2024 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2024/WD-compute-pressure-20240429/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240429/ + + + +Kenneth Christiansen +Arnaud Mandy +- +d:compute-pressure-20240501 +compute-pressure-20240501 +1 May 2024 +WD +Compute Pressure Level 1 +https://www.w3.org/TR/2024/WD-compute-pressure-20240501/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240501/ + + + Kenneth Christiansen Arnaud Mandy - -d:compute-pressure-20221220 -compute-pressure-20221220 -20 December 2022 +d:compute-pressure-20240604 +compute-pressure-20240604 +4 June 2024 WD Compute Pressure Level 1 -https://www.w3.org/TR/2022/WD-compute-pressure-20221220/ -https://www.w3.org/TR/2022/WD-compute-pressure-20221220/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240604/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240604/ Kenneth Christiansen Arnaud Mandy - -d:compute-pressure-20230124 -compute-pressure-20230124 -24 January 2023 +d:compute-pressure-20240617 +compute-pressure-20240617 +17 June 2024 WD Compute Pressure Level 1 -https://www.w3.org/TR/2023/WD-compute-pressure-20230124/ -https://www.w3.org/TR/2023/WD-compute-pressure-20230124/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240617/ +https://www.w3.org/TR/2024/WD-compute-pressure-20240617/ Kenneth Christiansen +Raphael Kubo da Costa Arnaud Mandy - d:consent-eu-wp187 @@ -503,7 +967,7 @@ Terin Stock - d:contact-picker contact-picker -27 January 2023 +8 July 2024 WD Contact Picker API https://www.w3.org/TR/contact-picker/ @@ -512,7 +976,6 @@ https://w3c.github.io/contact-picker/ Peter Beverloo -Rayan Kanso - a:contact-picker-1 contact-picker-1 @@ -526,6 +989,34 @@ a:contact-picker-1-20230127 contact-picker-1-20230127 contact-picker-20230127 - +a:contact-picker-1-20230308 +contact-picker-1-20230308 +contact-picker-20230308 +- +a:contact-picker-1-20231013 +contact-picker-1-20231013 +contact-picker-20231013 +- +a:contact-picker-1-20240207 +contact-picker-1-20240207 +contact-picker-20240207 +- +a:contact-picker-1-20240227 +contact-picker-1-20240227 +contact-picker-20240227 +- +a:contact-picker-1-20240430 +contact-picker-1-20240430 +contact-picker-20240430 +- +a:contact-picker-1-20240618 +contact-picker-1-20240618 +contact-picker-20240618 +- +a:contact-picker-1-20240708 +contact-picker-1-20240708 +contact-picker-20240708 +- d:contact-picker-20221220 contact-picker-20221220 20 December 2022 @@ -552,6 +1043,91 @@ https://www.w3.org/TR/2023/WD-contact-picker-20230127/ Peter Beverloo Rayan Kanso - +d:contact-picker-20230308 +contact-picker-20230308 +8 March 2023 +WD +Contact Picker API +https://www.w3.org/TR/2023/WD-contact-picker-20230308/ +https://www.w3.org/TR/2023/WD-contact-picker-20230308/ + + + +Peter Beverloo +Rayan Kanso +- +d:contact-picker-20231013 +contact-picker-20231013 +13 October 2023 +WD +Contact Picker API +https://www.w3.org/TR/2023/WD-contact-picker-20231013/ +https://www.w3.org/TR/2023/WD-contact-picker-20231013/ + + + +Peter Beverloo +- +d:contact-picker-20240207 +contact-picker-20240207 +7 February 2024 +WD +Contact Picker API +https://www.w3.org/TR/2024/WD-contact-picker-20240207/ +https://www.w3.org/TR/2024/WD-contact-picker-20240207/ + + + +Peter Beverloo +- +d:contact-picker-20240227 +contact-picker-20240227 +27 February 2024 +WD +Contact Picker API +https://www.w3.org/TR/2024/WD-contact-picker-20240227/ +https://www.w3.org/TR/2024/WD-contact-picker-20240227/ + + + +Peter Beverloo +- +d:contact-picker-20240430 +contact-picker-20240430 +30 April 2024 +WD +Contact Picker API +https://www.w3.org/TR/2024/WD-contact-picker-20240430/ +https://www.w3.org/TR/2024/WD-contact-picker-20240430/ + + + +Peter Beverloo +- +d:contact-picker-20240618 +contact-picker-20240618 +18 June 2024 +WD +Contact Picker API +https://www.w3.org/TR/2024/WD-contact-picker-20240618/ +https://www.w3.org/TR/2024/WD-contact-picker-20240618/ + + + +Peter Beverloo +- +d:contact-picker-20240708 +contact-picker-20240708 +8 July 2024 +WD +Contact Picker API +https://www.w3.org/TR/2024/WD-contact-picker-20240708/ +https://www.w3.org/TR/2024/WD-contact-picker-20240708/ + + + +Peter Beverloo +- d:contacts-api contacts-api 14 January 2014 @@ -806,6 +1382,28 @@ https://www.w3.org/TR/2017/NOTE-Content-in-RDF10-20170202/ Johannes Koch Carlos A. Velasco Philip Ackermann +- +d:content-index +CONTENT-INDEX + +Editor's Draft +Content Index +https://wicg.github.io/content-index/spec/ + + + + +- +d:contenteditable +CONTENTEDITABLE + +Editor's Draft +ContentEditable +https://w3c.github.io/contentEditable/ + + + + - d:context-sw Context-SW @@ -820,6 +1418,84 @@ Contexts for the Semantic Web R.M.R. Guha R. Fikes - +d:controller-document +controller-document +17 August 2024 +WD +Controller Documents 1.0 +https://www.w3.org/TR/controller-document/ +https://w3c.github.io/controller-document/ + + + +Manu Sporny +Michael Jones +- +d:controller-document-20240523 +controller-document-20240523 +23 May 2024 +WD +Controller Documents 1.0 +https://www.w3.org/TR/2024/WD-controller-document-20240523/ +https://www.w3.org/TR/2024/WD-controller-document-20240523/ + + + +Michael Jones +Manu Sporny +- +d:controller-document-20240617 +controller-document-20240617 +17 June 2024 +WD +Controller Documents 1.0 +https://www.w3.org/TR/2024/WD-controller-document-20240617/ +https://www.w3.org/TR/2024/WD-controller-document-20240617/ + + + +Manu Sporny +Michael Jones +- +d:controller-document-20240630 +controller-document-20240630 +30 June 2024 +WD +Controller Documents 1.0 +https://www.w3.org/TR/2024/WD-controller-document-20240630/ +https://www.w3.org/TR/2024/WD-controller-document-20240630/ + + + +Manu Sporny +Michael Jones +- +d:controller-document-20240803 +controller-document-20240803 +3 August 2024 +WD +Controller Documents 1.0 +https://www.w3.org/TR/2024/WD-controller-document-20240803/ +https://www.w3.org/TR/2024/WD-controller-document-20240803/ + + + +Manu Sporny +Michael Jones +- +d:controller-document-20240817 +controller-document-20240817 +17 August 2024 +WD +Controller Documents 1.0 +https://www.w3.org/TR/2024/WD-controller-document-20240817/ +https://www.w3.org/TR/2024/WD-controller-document-20240817/ + + + +Manu Sporny +Michael Jones +- d:cookie-store COOKIE-STORE @@ -1060,7 +1736,7 @@ Aaron Leventhal - d:core-aam-1.2 core-aam-1.2 -22 November 2022 +13 August 2024 CR Core Accessibility API Mappings 1.2 https://www.w3.org/TR/core-aam-1.2/ @@ -1068,9 +1744,8 @@ https://w3c.github.io/core-aam/ -Joanmarie Diggs +Valerie Young Alexander Surkov -Michael Cooper - d:core-aam-1.2-20180719 core-aam-1.2-20180719 @@ -1279,6 +1954,255 @@ Joanmarie Diggs Alexander Surkov Michael Cooper - +d:core-aam-1.2-20230518 +core-aam-1.2-20230518 +18 May 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230518/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230518/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230626 +core-aam-1.2-20230626 +26 June 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230626/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230626/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230628 +core-aam-1.2-20230628 +28 June 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230628/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230628/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230705 +core-aam-1.2-20230705 +5 July 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230705/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230705/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230816 +core-aam-1.2-20230816 +16 August 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230816/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230816/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230817 +core-aam-1.2-20230817 +17 August 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230817/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230817/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230821 +core-aam-1.2-20230821 +21 August 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230821/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230821/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230825 +core-aam-1.2-20230825 +25 August 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230825/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230825/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230901 +core-aam-1.2-20230901 +1 September 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230901/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230901/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230902 +core-aam-1.2-20230902 +2 September 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230902/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230902/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20230904 +core-aam-1.2-20230904 +4 September 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230904/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230904/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20231012 +core-aam-1.2-20231012 +12 October 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231012/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231012/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20231026 +core-aam-1.2-20231026 +26 October 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231026/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231026/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20231031 +core-aam-1.2-20231031 +31 October 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231031/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231031/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20231102 +core-aam-1.2-20231102 +2 November 2023 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231102/ +https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231102/ + + + +Valerie Young +Alexander Surkov +Michael Cooper +- +d:core-aam-1.2-20240620 +core-aam-1.2-20240620 +20 June 2024 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2024/CRD-core-aam-1.2-20240620/ +https://www.w3.org/TR/2024/CRD-core-aam-1.2-20240620/ + + + +Valerie Young +Alexander Surkov +- +d:core-aam-1.2-20240621 +core-aam-1.2-20240621 +21 June 2024 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2024/CRD-core-aam-1.2-20240621/ +https://www.w3.org/TR/2024/CRD-core-aam-1.2-20240621/ + + + +Valerie Young +Alexander Surkov +- +d:core-aam-1.2-20240813 +core-aam-1.2-20240813 +13 August 2024 +CR +Core Accessibility API Mappings 1.2 +https://www.w3.org/TR/2024/CRD-core-aam-1.2-20240813/ +https://www.w3.org/TR/2024/CRD-core-aam-1.2-20240813/ + + + +Valerie Young +Alexander Surkov +- d:core-device CORE-DEVICE 2 December 2009 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cr.data b/bikeshed/spec-data/readonly/biblio/biblio-cr.data index 4a2b94f9a7..046da42367 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-cr.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-cr.data @@ -1,6 +1,17 @@ +d:crash-reporting +CRASH-REPORTING + +Draft Community Group Report +Crash Reporting +https://wicg.github.io/crash-reporting/ + + + + +- d:credential-management-1 credential-management-1 -17 January 2019 +13 August 2024 WD Credential Management Level 1 https://www.w3.org/TR/credential-management-1/ @@ -8,7 +19,8 @@ https://w3c.github.io/webappsec-credential-management/ -Mike West +Nina Satragno +Marcos Caceres - d:credential-management-1-20150430 credential-management-1-20150430 @@ -58,3 +70,102 @@ https://www.w3.org/TR/2019/WD-credential-management-1-20190117/ Mike West - +d:credential-management-1-20240228 +credential-management-1-20240228 +28 February 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240228/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240228/ + + + +Nina Satragno +- +d:credential-management-1-20240522 +credential-management-1-20240522 +22 May 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240522/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240522/ + + + +Nina Satragno +- +d:credential-management-1-20240523 +credential-management-1-20240523 +23 May 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240523/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240523/ + + + +Nina Satragno +- +d:credential-management-1-20240529 +credential-management-1-20240529 +29 May 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240529/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240529/ + + + +Nina Satragno +- +d:credential-management-1-20240530 +credential-management-1-20240530 +30 May 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240530/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240530/ + + + +Nina Satragno +- +d:credential-management-1-20240613 +credential-management-1-20240613 +13 June 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240613/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240613/ + + + +Nina Satragno +Marcos Caceres +- +d:credential-management-1-20240729 +credential-management-1-20240729 +29 July 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240729/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240729/ + + + +Nina Satragno +Marcos Caceres +- +d:credential-management-1-20240813 +credential-management-1-20240813 +13 August 2024 +WD +Credential Management Level 1 +https://www.w3.org/TR/2024/WD-credential-management-1-20240813/ +https://www.w3.org/TR/2024/WD-credential-management-1-20240813/ + + + +Nina Satragno +Marcos Caceres +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cs.data b/bikeshed/spec-data/readonly/biblio/biblio-cs.data index 78e37a01f0..112f16a764 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-cs.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-cs.data @@ -314,6 +314,86 @@ a:csp-20230113 CSP-20230113 CSP3-20230113 - +a:csp-20230220 +CSP-20230220 +CSP3-20230220 +- +a:csp-20230406 +CSP-20230406 +CSP3-20230406 +- +a:csp-20230411 +CSP-20230411 +CSP3-20230411 +- +a:csp-20230428 +CSP-20230428 +CSP3-20230428 +- +a:csp-20230503 +CSP-20230503 +CSP3-20230503 +- +a:csp-20230615 +CSP-20230615 +CSP3-20230615 +- +a:csp-20230628 +CSP-20230628 +CSP3-20230628 +- +a:csp-20230726 +CSP-20230726 +CSP3-20230726 +- +a:csp-20230727 +CSP-20230727 +CSP3-20230727 +- +a:csp-20230731 +CSP-20230731 +CSP3-20230731 +- +a:csp-20230904 +CSP-20230904 +CSP3-20230904 +- +a:csp-20230920 +CSP-20230920 +CSP3-20230920 +- +a:csp-20231030 +CSP-20231030 +CSP3-20231030 +- +a:csp-20231206 +CSP-20231206 +CSP3-20231206 +- +a:csp-20240115 +CSP-20240115 +CSP3-20240115 +- +a:csp-20240123 +CSP-20240123 +CSP3-20240123 +- +a:csp-20240221 +CSP-20240221 +CSP3-20240221 +- +a:csp-20240412 +CSP-20240412 +CSP3-20240412 +- +a:csp-20240424 +CSP-20240424 +CSP3-20240424 +- +a:csp-20240618 +CSP-20240618 +CSP3-20240618 +- d:csp-cookies csp-cookies 13 September 2016 @@ -385,6 +465,17 @@ https://www.w3.org/TR/2016/WD-csp-embedded-enforcement-20160909/ Mike West +- +d:csp-next +CSP-NEXT + +Editor's Draft +Scripting Policy +https://wicg.github.io/csp-next/scripting-policy.html + + + + - d:csp-pinning csp-pinning @@ -651,7 +742,7 @@ Daniel Veditz - d:csp3 CSP3 -13 January 2023 +18 June 2024 WD Content Security Policy Level 3 https://www.w3.org/TR/CSP3/ @@ -995,6 +1086,266 @@ https://www.w3.org/TR/2023/WD-CSP3-20230113/ +Mike West +Antonio Sartori +- +d:csp3-20230220 +CSP3-20230220 +20 February 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230220/ +https://www.w3.org/TR/2023/WD-CSP3-20230220/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230406 +CSP3-20230406 +6 April 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230406/ +https://www.w3.org/TR/2023/WD-CSP3-20230406/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230411 +CSP3-20230411 +11 April 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230411/ +https://www.w3.org/TR/2023/WD-CSP3-20230411/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230428 +CSP3-20230428 +28 April 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230428/ +https://www.w3.org/TR/2023/WD-CSP3-20230428/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230503 +CSP3-20230503 +3 May 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230503/ +https://www.w3.org/TR/2023/WD-CSP3-20230503/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230615 +CSP3-20230615 +15 June 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230615/ +https://www.w3.org/TR/2023/WD-CSP3-20230615/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230628 +CSP3-20230628 +28 June 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230628/ +https://www.w3.org/TR/2023/WD-CSP3-20230628/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230726 +CSP3-20230726 +26 July 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230726/ +https://www.w3.org/TR/2023/WD-CSP3-20230726/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230727 +CSP3-20230727 +27 July 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230727/ +https://www.w3.org/TR/2023/WD-CSP3-20230727/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230731 +CSP3-20230731 +31 July 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230731/ +https://www.w3.org/TR/2023/WD-CSP3-20230731/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230904 +CSP3-20230904 +4 September 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230904/ +https://www.w3.org/TR/2023/WD-CSP3-20230904/ + + + +Mike West +Antonio Sartori +- +d:csp3-20230920 +CSP3-20230920 +20 September 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20230920/ +https://www.w3.org/TR/2023/WD-CSP3-20230920/ + + + +Mike West +Antonio Sartori +- +d:csp3-20231030 +CSP3-20231030 +30 October 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20231030/ +https://www.w3.org/TR/2023/WD-CSP3-20231030/ + + + +Mike West +Antonio Sartori +- +d:csp3-20231206 +CSP3-20231206 +6 December 2023 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2023/WD-CSP3-20231206/ +https://www.w3.org/TR/2023/WD-CSP3-20231206/ + + + +Mike West +Antonio Sartori +- +d:csp3-20240115 +CSP3-20240115 +15 January 2024 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2024/WD-CSP3-20240115/ +https://www.w3.org/TR/2024/WD-CSP3-20240115/ + + + +Mike West +Antonio Sartori +- +d:csp3-20240123 +CSP3-20240123 +23 January 2024 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2024/WD-CSP3-20240123/ +https://www.w3.org/TR/2024/WD-CSP3-20240123/ + + + +Mike West +Antonio Sartori +- +d:csp3-20240221 +CSP3-20240221 +21 February 2024 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2024/WD-CSP3-20240221/ +https://www.w3.org/TR/2024/WD-CSP3-20240221/ + + + +Mike West +Antonio Sartori +- +d:csp3-20240412 +CSP3-20240412 +12 April 2024 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2024/WD-CSP3-20240412/ +https://www.w3.org/TR/2024/WD-CSP3-20240412/ + + + +Mike West +Antonio Sartori +- +d:csp3-20240424 +CSP3-20240424 +24 April 2024 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2024/WD-CSP3-20240424/ +https://www.w3.org/TR/2024/WD-CSP3-20240424/ + + + +Mike West +Antonio Sartori +- +d:csp3-20240618 +CSP3-20240618 +18 June 2024 +WD +Content Security Policy Level 3 +https://www.w3.org/TR/2024/WD-CSP3-20240618/ +https://www.w3.org/TR/2024/WD-CSP3-20240618/ + + + Mike West Antonio Sartori - @@ -1244,6 +1595,51 @@ Tab Atkins Jr. Elika Etemad Florian Rivoal - +d:css-2023 +css-2023 +7 December 2023 +NOTE +CSS Snapshot 2023 +https://www.w3.org/TR/css-2023/ +https://drafts.csswg.org/css-2023/ + + + +Chris Lilley +Elika Etemad +Tab Atkins Jr. +Florian Rivoal +- +d:css-2023-20230214 +css-2023-20230214 +14 February 2023 +NOTE +CSS Snapshot 2023 +https://www.w3.org/TR/2023/DNOTE-css-2023-20230214/ +https://www.w3.org/TR/2023/DNOTE-css-2023-20230214/ + + + +Chris Lilley +Elika Etemad +Tab Atkins Jr. +Florian Rivoal +- +d:css-2023-20231207 +css-2023-20231207 +7 December 2023 +NOTE +CSS Snapshot 2023 +https://www.w3.org/TR/2023/NOTE-css-2023-20231207/ +https://www.w3.org/TR/2023/NOTE-css-2023-20231207/ + + + +Chris Lilley +Elika Etemad +Tab Atkins Jr. +Florian Rivoal +- d:css-access CSS-access 4 August 1999 @@ -1284,7 +1680,7 @@ css-device-adapt-1-20160329 - d:css-align-3 css-align-3 -24 December 2021 +17 February 2023 WD CSS Box Alignment Module Level 3 https://www.w3.org/TR/css-align-3/ @@ -1490,6 +1886,74 @@ https://www.w3.org/TR/2021/WD-css-align-3-20211224/ Elika Etemad Tab Atkins Jr. - +d:css-align-3-20230217 +css-align-3-20230217 +17 February 2023 +WD +CSS Box Alignment Module Level 3 +https://www.w3.org/TR/2023/WD-css-align-3-20230217/ +https://www.w3.org/TR/2023/WD-css-align-3-20230217/ + + + +Elika Etemad +Tab Atkins Jr. +- +d:css-anchor-position-1 +css-anchor-position-1 +26 March 2024 +WD +CSS Anchor Positioning +https://www.w3.org/TR/css-anchor-position-1/ +https://drafts.csswg.org/css-anchor-position-1/ + + + +Tab Atkins Jr. +Elika Etemad +Ian Kilpatrick +- +d:css-anchor-position-1-20230629 +css-anchor-position-1-20230629 +29 June 2023 +WD +CSS Anchor Positioning +https://www.w3.org/TR/2023/WD-css-anchor-position-1-20230629/ +https://www.w3.org/TR/2023/WD-css-anchor-position-1-20230629/ + + + +Tab Atkins Jr. +Ian Kilpatrick +- +d:css-anchor-position-1-20240314 +css-anchor-position-1-20240314 +14 March 2024 +WD +CSS Anchor Positioning +https://www.w3.org/TR/2024/WD-css-anchor-position-1-20240314/ +https://www.w3.org/TR/2024/WD-css-anchor-position-1-20240314/ + + + +Tab Atkins Jr. +Elika Etemad +Ian Kilpatrick +- +d:css-anchor-position-1-20240326 +css-anchor-position-1-20240326 +26 March 2024 +WD +CSS Anchor Positioning +https://www.w3.org/TR/2024/WD-css-anchor-position-1-20240326/ +https://www.w3.org/TR/2024/WD-css-anchor-position-1-20240326/ + + + +Tab Atkins Jr. +Elika Etemad +Ian Kilpatrick +- a:css-animation-worklet css-animation-worklet css-animation-worklet-1 @@ -1528,7 +1992,7 @@ css-animation-worklet-1-20190625 - d:css-animations-1 css-animations-1 -11 October 2018 +2 March 2023 WD CSS Animations Level 1 https://www.w3.org/TR/css-animations-1/ @@ -1536,8 +2000,8 @@ https://drafts.csswg.org/css-animations/ -Dean Jackson David Baron +Dean Jackson Tab Atkins Jr. Brian Birtles - @@ -1551,8 +2015,8 @@ https://www.w3.org/TR/2009/WD-css3-animations-20090320/ -Dean Jackson David Baron +Dean Jackson Tab Atkins Jr. Brian Birtles - @@ -1566,8 +2030,8 @@ https://www.w3.org/TR/2012/WD-css3-animations-20120403/ -Dean Jackson David Baron +Dean Jackson Tab Atkins Jr. Brian Birtles - @@ -1617,9 +2081,63 @@ David Baron Tab Atkins Jr. Brian Birtles - +d:css-animations-1-20230302 +css-animations-1-20230302 +2 March 2023 +WD +CSS Animations Level 1 +https://www.w3.org/TR/2023/WD-css-animations-1-20230302/ +https://www.w3.org/TR/2023/WD-css-animations-1-20230302/ + + + +David Baron +Dean Jackson +Tab Atkins Jr. +Brian Birtles +- +d:css-animations-2 +css-animations-2 +2 June 2023 +WD +CSS Animations Level 2 +https://www.w3.org/TR/css-animations-2/ +https://drafts.csswg.org/css-animations-2/ + + + +David Baron +Brian Birtles +- +d:css-animations-2-20230302 +css-animations-2-20230302 +2 March 2023 +WD +CSS Animations Level 2 +https://www.w3.org/TR/2023/WD-css-animations-2-20230302/ +https://www.w3.org/TR/2023/WD-css-animations-2-20230302/ + + + +David Baron +Brian Birtles +- +d:css-animations-2-20230602 +css-animations-2-20230602 +2 June 2023 +WD +CSS Animations Level 2 +https://www.w3.org/TR/2023/WD-css-animations-2-20230602/ +https://www.w3.org/TR/2023/WD-css-animations-2-20230602/ + + + +David Baron +Brian Birtles +- d:css-backgrounds-3 css-backgrounds-3 -26 July 2021 +11 March 2024 CR CSS Backgrounds and Borders Module Level 3 https://www.w3.org/TR/css-backgrounds-3/ @@ -1627,7 +2145,6 @@ https://drafts.csswg.org/css-backgrounds/ -Bert Bos Elika Etemad Brad Kemper - @@ -1641,7 +2158,6 @@ https://www.w3.org/TR/2001/WD-css3-background-20010924 -Bert Bos Elika Etemad Brad Kemper - @@ -1655,7 +2171,6 @@ https://www.w3.org/TR/2002/WD-css3-background-20020219/ -Bert Bos Elika Etemad Brad Kemper - @@ -1669,7 +2184,6 @@ https://www.w3.org/TR/2002/WD-css3-background-20020802 -Bert Bos Elika Etemad Brad Kemper - @@ -1683,7 +2197,6 @@ https://www.w3.org/TR/2005/WD-css3-background-20050216 -Bert Bos Elika Etemad Brad Kemper - @@ -1697,7 +2210,6 @@ https://www.w3.org/TR/2008/WD-css3-background-20080910 -Bert Bos Elika Etemad Brad Kemper - @@ -1711,7 +2223,6 @@ https://www.w3.org/TR/2009/WD-css3-background-20091015 -Bert Bos Elika Etemad Brad Kemper - @@ -1725,7 +2236,6 @@ https://www.w3.org/TR/2009/CR-css3-background-20091217 -Bert Bos Elika Etemad Brad Kemper - @@ -1739,7 +2249,6 @@ https://www.w3.org/TR/2010/WD-css3-background-20100612 -Bert Bos Elika Etemad Brad Kemper - @@ -1753,7 +2262,6 @@ https://www.w3.org/TR/2011/CR-css3-background-20110215/ -Bert Bos Elika Etemad Brad Kemper - @@ -1767,7 +2275,6 @@ https://www.w3.org/TR/2012/WD-css3-background-20120214/ -Bert Bos Elika Etemad Brad Kemper - @@ -1781,7 +2288,6 @@ https://www.w3.org/TR/2012/CR-css3-background-20120417/ -Bert Bos Elika Etemad Brad Kemper - @@ -1866,6 +2372,46 @@ https://www.w3.org/TR/2021/CRD-css-backgrounds-3-20210726/ Bert Bos +Elika Etemad +Brad Kemper +- +d:css-backgrounds-3-20230214 +css-backgrounds-3-20230214 +14 February 2023 +CR +CSS Backgrounds and Borders Module Level 3 +https://www.w3.org/TR/2023/CRD-css-backgrounds-3-20230214/ +https://www.w3.org/TR/2023/CRD-css-backgrounds-3-20230214/ + + + +Bert Bos +Elika Etemad +Brad Kemper +- +d:css-backgrounds-3-20231219 +css-backgrounds-3-20231219 +19 December 2023 +CR +CSS Backgrounds and Borders Module Level 3 +https://www.w3.org/TR/2023/CRD-css-backgrounds-3-20231219/ +https://www.w3.org/TR/2023/CRD-css-backgrounds-3-20231219/ + + + +Elika Etemad +Brad Kemper +- +d:css-backgrounds-3-20240311 +css-backgrounds-3-20240311 +11 March 2024 +CR +CSS Backgrounds and Borders Module Level 3 +https://www.w3.org/TR/2024/CRD-css-backgrounds-3-20240311/ +https://www.w3.org/TR/2024/CRD-css-backgrounds-3-20240311/ + + + Elika Etemad Brad Kemper - @@ -1932,6 +2478,17 @@ https://www.w3.org/TR/2011/NOTE-css-beijing-20110512/ Elika Etemad +- +d:css-borders-4 +CSS-BORDERS-4 + +Editor's Draft +CSS Borders and Box Decorations Module Level 4 +https://drafts.csswg.org/css-borders-4/ + + + + - a:css-box-1 CSS-BOX-1 @@ -1977,10 +2534,22 @@ a:css-box-1-20221103 CSS-BOX-1-20221103 css-box-3-20221103 - +a:css-box-1-20230216 +CSS-BOX-1-20230216 +css-box-3-20230216 +- +a:css-box-1-20230406 +CSS-BOX-1-20230406 +css-box-3-20230406 +- +a:css-box-1-20240411 +CSS-BOX-1-20240411 +css-box-3-20240411 +- d:css-box-3 css-box-3 -3 November 2022 -CR +11 April 2024 +REC CSS Box Model Module Level 3 https://www.w3.org/TR/css-box-3/ https://drafts.csswg.org/css-box-3/ @@ -2108,11 +2677,47 @@ https://www.w3.org/TR/2022/CRD-css-box-3-20221103/ +Elika Etemad +- +d:css-box-3-20230216 +css-box-3-20230216 +16 February 2023 +PR +CSS Box Model Module Level 3 +https://www.w3.org/TR/2023/PR-css-box-3-20230216/ +https://www.w3.org/TR/2023/PR-css-box-3-20230216/ + + + +Elika Etemad +- +d:css-box-3-20230406 +css-box-3-20230406 +6 April 2023 +REC +CSS Box Model Module Level 3 +https://www.w3.org/TR/2023/REC-css-box-3-20230406/ +https://www.w3.org/TR/2023/REC-css-box-3-20230406/ + + + +Elika Etemad +- +d:css-box-3-20240411 +css-box-3-20240411 +11 April 2024 +REC +CSS Box Model Module Level 3 +https://www.w3.org/TR/2024/REC-css-box-3-20240411/ +https://www.w3.org/TR/2024/REC-css-box-3-20240411/ + + + Elika Etemad - d:css-box-4 css-box-4 -3 November 2022 +4 August 2024 WD CSS Box Model Module Level 4 https://www.w3.org/TR/css-box-4/ @@ -2144,6 +2749,30 @@ https://www.w3.org/TR/2022/WD-css-box-4-20221103/ +Elika Etemad +- +d:css-box-4-20240401 +css-box-4-20240401 +1 April 2024 +WD +CSS Box Model Module Level 4 +https://www.w3.org/TR/2024/WD-css-box-4-20240401/ +https://www.w3.org/TR/2024/WD-css-box-4-20240401/ + + + +Elika Etemad +- +d:css-box-4-20240804 +css-box-4-20240804 +4 August 2024 +WD +CSS Box Model Module Level 4 +https://www.w3.org/TR/2024/WD-css-box-4-20240804/ +https://www.w3.org/TR/2024/WD-css-box-4-20240804/ + + + Elika Etemad - d:css-break-3 @@ -2720,7 +3349,7 @@ Tab Atkins Jr. - d:css-cascade-6 css-cascade-6 -21 December 2021 +21 March 2023 WD CSS Cascading and Inheritance Level 6 https://www.w3.org/TR/css-cascade-6/ @@ -2742,6 +3371,20 @@ https://www.w3.org/TR/2021/WD-css-cascade-6-20211221/ +Elika Etemad +Miriam Suzanne +Tab Atkins Jr. +- +d:css-cascade-6-20230321 +css-cascade-6-20230321 +21 March 2023 +WD +CSS Cascading and Inheritance Level 6 +https://www.w3.org/TR/2023/WD-css-cascade-6-20230321/ +https://www.w3.org/TR/2023/WD-css-cascade-6-20230321/ + + + Elika Etemad Miriam Suzanne Tab Atkins Jr. @@ -2958,16 +3601,16 @@ David Baron - d:css-color-4 css-color-4 -1 November 2022 +13 February 2024 CR CSS Color Module Level 4 https://www.w3.org/TR/css-color-4/ -https://drafts.csswg.org/css-color/ +https://drafts.csswg.org/css-color-4/ -Tab Atkins Jr. Chris Lilley +Tab Atkins Jr. Lea Verou - d:css-color-4-20160705 @@ -3105,9 +3748,23 @@ Tab Atkins Jr. Chris Lilley Lea Verou - +d:css-color-4-20240213 +css-color-4-20240213 +13 February 2024 +CR +CSS Color Module Level 4 +https://www.w3.org/TR/2024/CRD-css-color-4-20240213/ +https://www.w3.org/TR/2024/CRD-css-color-4-20240213/ + + + +Chris Lilley +Tab Atkins Jr. +Lea Verou +- d:css-color-5 css-color-5 -28 June 2022 +29 February 2024 WD CSS Color Module Level 5 https://www.w3.org/TR/css-color-5/ @@ -3116,9 +3773,9 @@ https://drafts.csswg.org/css-color-5/ Chris Lilley -Una Kravets Lea Verou Adam Argyle +Una Kravets - d:css-color-5-20200303 css-color-5-20200303 @@ -3205,10 +3862,36 @@ https://www.w3.org/TR/2022/WD-css-color-5-20220628/ -Chris Lilley -Una Kravets -Lea Verou -Adam Argyle +Chris Lilley +Una Kravets +Lea Verou +Adam Argyle +- +d:css-color-5-20240229 +css-color-5-20240229 +29 February 2024 +WD +CSS Color Module Level 5 +https://www.w3.org/TR/2024/WD-css-color-5-20240229/ +https://www.w3.org/TR/2024/WD-css-color-5-20240229/ + + + +Chris Lilley +Lea Verou +Adam Argyle +Una Kravets +- +d:css-color-6 +CSS-COLOR-6 + +Editor's Draft +CSS Color Module Level 6 +https://drafts.csswg.org/css-color-6/ + + + + - d:css-color-adjust-1 css-color-adjust-1 @@ -3343,6 +4026,17 @@ Elika Etemad Rossen Atanassov Rune Lillesveen Tab Atkins Jr. +- +d:css-color-hdr +CSS-COLOR-HDR + +Editor's Draft +CSS Color HDR Module Level 1 +https://drafts.csswg.org/css-color-hdr/ + + + + - a:css-conditional-1 CSS-CONDITIONAL-1 @@ -3376,9 +4070,13 @@ a:css-conditional-1-20220113 CSS-CONDITIONAL-1-20220113 css-conditional-3-20220113 - +a:css-conditional-1-20240815 +CSS-CONDITIONAL-1-20240815 +css-conditional-3-20240815 +- d:css-conditional-3 css-conditional-3 -13 January 2022 +15 August 2024 CR CSS Conditional Rules Module Level 3 https://www.w3.org/TR/css-conditional-3/ @@ -3386,9 +4084,9 @@ https://drafts.csswg.org/css-conditional-3/ +Chris Lilley David Baron Elika Etemad -Chris Lilley - d:css-conditional-3-20110901 css-conditional-3-20110901 @@ -3400,9 +4098,9 @@ https://www.w3.org/TR/2011/WD-css3-conditional-20110901/ +Chris Lilley David Baron Elika Etemad -Chris Lilley - d:css-conditional-3-20120911 css-conditional-3-20120911 @@ -3414,9 +4112,9 @@ https://www.w3.org/TR/2012/WD-css3-conditional-20120911/ +Chris Lilley David Baron Elika Etemad -Chris Lilley - d:css-conditional-3-20121213 css-conditional-3-20121213 @@ -3428,9 +4126,9 @@ https://www.w3.org/TR/2012/WD-css3-conditional-20121213/ +Chris Lilley David Baron Elika Etemad -Chris Lilley - d:css-conditional-3-20130404 css-conditional-3-20130404 @@ -3486,6 +4184,20 @@ David Baron Elika Etemad Chris Lilley - +d:css-conditional-3-20240815 +css-conditional-3-20240815 +15 August 2024 +CR +CSS Conditional Rules Module Level 3 +https://www.w3.org/TR/2024/CRD-css-conditional-3-20240815/ +https://www.w3.org/TR/2024/CRD-css-conditional-3-20240815/ + + + +Chris Lilley +David Baron +Elika Etemad +- d:css-conditional-4 css-conditional-4 17 February 2022 @@ -3542,7 +4254,7 @@ Chris Lilley - d:css-conditional-5 css-conditional-5 -21 December 2021 +23 July 2024 WD CSS Conditional Rules Module Level 5 https://www.w3.org/TR/css-conditional-5/ @@ -3550,9 +4262,9 @@ https://drafts.csswg.org/css-conditional-5/ +Chris Lilley David Baron Elika Etemad -Chris Lilley - d:css-conditional-5-20211221 css-conditional-5-20211221 @@ -3567,10 +4279,35 @@ https://www.w3.org/TR/2021/WD-css-conditional-5-20211221/ David Baron Elika Etemad Chris Lilley +- +d:css-conditional-5-20240723 +css-conditional-5-20240723 +23 July 2024 +WD +CSS Conditional Rules Module Level 5 +https://www.w3.org/TR/2024/WD-css-conditional-5-20240723/ +https://www.w3.org/TR/2024/WD-css-conditional-5-20240723/ + + + +Chris Lilley +David Baron +Elika Etemad +- +d:css-conditional-values-1 +CSS-CONDITIONAL-VALUES-1 + +Unofficial Proposal Draft +CSS Conditional Values Module Level 1 +https://drafts.csswg.org/css-conditional-values-1/ + + + + - d:css-contain-1 css-contain-1 -25 October 2022 +25 June 2024 REC CSS Containment Module Level 1 https://www.w3.org/TR/css-contain-1/ @@ -3707,6 +4444,19 @@ https://www.w3.org/TR/2022/REC-css-contain-1-20221025/ +Tab Atkins Jr. +Florian Rivoal +- +d:css-contain-1-20240625 +css-contain-1-20240625 +25 June 2024 +REC +CSS Containment Module Level 1 +https://www.w3.org/TR/2024/REC-css-contain-1-20240625/ +https://www.w3.org/TR/2024/REC-css-contain-1-20240625/ + + + Tab Atkins Jr. Florian Rivoal - @@ -4017,7 +4767,7 @@ WD CSS Device Adaptation Module Level 1 https://www.w3.org/TR/css-device-adapt-1/ https://drafts.csswg.org/css-device-adapt/ - +css-viewport-1 Rune Lillesveen @@ -4031,7 +4781,7 @@ WD CSS Device Adaptation https://www.w3.org/TR/2011/WD-css-device-adapt-20110915/ https://www.w3.org/TR/2011/WD-css-device-adapt-20110915/ - +css-viewport-1 Rune Lillesveen @@ -4043,7 +4793,7 @@ WD CSS Device Adaptation Module Level 1 https://www.w3.org/TR/2015/WD-css-device-adapt-1-20151126/ https://www.w3.org/TR/2015/WD-css-device-adapt-1-20151126/ - +css-viewport-1 Rune Lillesveen @@ -4057,7 +4807,7 @@ WD CSS Device Adaptation Module Level 1 https://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/ https://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/ - +css-viewport-1 Rune Lillesveen @@ -4078,7 +4828,7 @@ css-device-adapt-1-20160329 - d:css-display-3 css-display-3 -18 November 2022 +30 March 2023 CR CSS Display Module Level 3 https://www.w3.org/TR/css-display-3/ @@ -4086,8 +4836,8 @@ https://drafts.csswg.org/css-display/ -Tab Atkins Jr. Elika Etemad +Tab Atkins Jr. - d:css-display-3-20140220 css-display-3-20140220 @@ -4267,10 +5017,47 @@ https://www.w3.org/TR/2022/CRD-css-display-3-20221118/ Tab Atkins Jr. Elika Etemad +- +d:css-display-3-20230316 +css-display-3-20230316 +16 March 2023 +CR +CSS Display Module Level 3 +https://www.w3.org/TR/2023/CRD-css-display-3-20230316/ +https://www.w3.org/TR/2023/CRD-css-display-3-20230316/ + + + +Tab Atkins Jr. +Elika Etemad +- +d:css-display-3-20230330 +css-display-3-20230330 +30 March 2023 +CR +CSS Display Module Level 3 +https://www.w3.org/TR/2023/CR-css-display-3-20230330/ +https://www.w3.org/TR/2023/CR-css-display-3-20230330/ + + + +Elika Etemad +Tab Atkins Jr. +- +d:css-display-4 +CSS-DISPLAY-4 + +Editor's Draft +CSS Display Module Level 4 +https://drafts.csswg.org/css-display-4/ + + + + - d:css-easing-1 css-easing-1 -1 April 2021 +13 February 2023 CR CSS Easing Functions Level 1 https://www.w3.org/TR/css-easing-1/ @@ -4281,7 +5068,6 @@ https://drafts.csswg.org/css-easing/ Brian Birtles Dean Jackson Matt Rakow -Shane Stephens - d:css-easing-1-20170221 css-easing-1-20170221 @@ -4355,6 +5141,42 @@ Brian Birtles Dean Jackson Matt Rakow Shane Stephens +- +d:css-easing-1-20230213 +css-easing-1-20230213 +13 February 2023 +CR +CSS Easing Functions Level 1 +https://www.w3.org/TR/2023/CRD-css-easing-1-20230213/ +https://www.w3.org/TR/2023/CRD-css-easing-1-20230213/ + + + +Brian Birtles +Dean Jackson +Matt Rakow +- +d:css-easing-2 +CSS-EASING-2 + +Editor's Draft +CSS Easing Functions Level 2 +https://drafts.csswg.org/css-easing-2/ + + + + +- +d:css-env-1 +CSS-ENV-1 + +Editor's Draft +CSS Environment Variables Module Level 1 +https://drafts.csswg.org/css-env-1/ + + + + - a:css-exclusions-1 CSS-EXCLUSIONS-1 @@ -4387,6 +5209,17 @@ https://drafts.csswg.org/css-extensions/ Tab Atkins Jr. +- +d:css-extensions-1 +CSS-EXTENSIONS-1 + +Editor's Draft +CSS Extensions +https://drafts.csswg.org/css-extensions-1/ + + + + - a:css-flexbox css-flexbox @@ -4667,7 +5500,7 @@ css-flexbox-1-20181119 - d:css-font-loading-3 css-font-loading-3 -22 May 2014 +6 April 2023 WD CSS Font Loading Module Level 3 https://www.w3.org/TR/css-font-loading-3/ @@ -4699,6 +5532,18 @@ https://www.w3.org/TR/2014/WD-css-font-loading-3-20140522/ +Tab Atkins Jr. +- +d:css-font-loading-3-20230406 +css-font-loading-3-20230406 +6 April 2023 +WD +CSS Font Loading Module Level 3 +https://www.w3.org/TR/2023/WD-css-font-loading-3-20230406/ +https://www.w3.org/TR/2023/WD-css-font-loading-3-20230406/ + + + Tab Atkins Jr. - d:css-fonts-3 @@ -4921,7 +5766,7 @@ Chris Lilley - d:css-fonts-4 css-fonts-4 -21 December 2021 +1 February 2024 WD CSS Fonts Module Level 4 https://www.w3.org/TR/css-fonts-4/ @@ -4929,8 +5774,6 @@ https://drafts.csswg.org/css-fonts-4/ -John Daggett -Myles Maxfield Chris Lilley - d:css-fonts-4-20170711 @@ -5027,11 +5870,23 @@ https://www.w3.org/TR/2021/WD-css-fonts-4-20211221/ John Daggett Myles Maxfield +Chris Lilley +- +d:css-fonts-4-20240201 +css-fonts-4-20240201 +1 February 2024 +WD +CSS Fonts Module Level 4 +https://www.w3.org/TR/2024/WD-css-fonts-4-20240201/ +https://www.w3.org/TR/2024/WD-css-fonts-4-20240201/ + + + Chris Lilley - d:css-fonts-5 css-fonts-5 -21 December 2021 +6 February 2024 WD CSS Fonts Module Level 5 https://www.w3.org/TR/css-fonts-5/ @@ -5039,7 +5894,6 @@ https://drafts.csswg.org/css-fonts-5/ -Myles Maxfield Chris Lilley - d:css-fonts-5-20210629 @@ -5080,10 +5934,33 @@ https://www.w3.org/TR/2021/WD-css-fonts-5-20211221/ Myles Maxfield Chris Lilley +- +d:css-fonts-5-20240206 +css-fonts-5-20240206 +6 February 2024 +WD +CSS Fonts Module Level 5 +https://www.w3.org/TR/2024/WD-css-fonts-5-20240206/ +https://www.w3.org/TR/2024/WD-css-fonts-5-20240206/ + + + +Chris Lilley +- +d:css-forms-1 +CSS-FORMS-1 + +A Collection of Interesting Ideas +CSS Form Styling Module Level 1 +https://drafts.csswg.org/css-forms-1/ + + + + - d:css-gcpm-3 css-gcpm-3 -13 May 2014 +25 January 2024 WD CSS Generated Content for Paged Media Module https://www.w3.org/TR/css-gcpm-3/ @@ -5091,7 +5968,8 @@ https://drafts.csswg.org/css-gcpm/ -Dave Cramer +Rachel Andrew +Mike Bremford - d:css-gcpm-3-20060612 css-gcpm-3-20060612 @@ -5103,7 +5981,8 @@ https://www.w3.org/TR/2006/WD-css3-gcpm-20060612 -Dave Cramer +Rachel Andrew +Mike Bremford - d:css-gcpm-3-20060919 css-gcpm-3-20060919 @@ -5115,7 +5994,8 @@ https://www.w3.org/TR/2006/WD-css3-gcpm-20060919 -Dave Cramer +Rachel Andrew +Mike Bremford - d:css-gcpm-3-20070205 css-gcpm-3-20070205 @@ -5127,7 +6007,8 @@ https://www.w3.org/TR/2007/WD-css3-gcpm-20070205 -Dave Cramer +Rachel Andrew +Mike Bremford - d:css-gcpm-3-20070504 css-gcpm-3-20070504 @@ -5139,7 +6020,8 @@ https://www.w3.org/TR/2007/WD-css3-gcpm-20070504 -Dave Cramer +Rachel Andrew +Mike Bremford - d:css-gcpm-3-20100608 css-gcpm-3-20100608 @@ -5151,7 +6033,8 @@ https://www.w3.org/TR/2010/WD-css3-gcpm-20100608 -Dave Cramer +Rachel Andrew +Mike Bremford - d:css-gcpm-3-20111129 css-gcpm-3-20111129 @@ -5176,6 +6059,30 @@ https://www.w3.org/TR/2014/WD-css-gcpm-3-20140513/ Dave Cramer +- +d:css-gcpm-3-20240125 +css-gcpm-3-20240125 +25 January 2024 +WD +CSS Generated Content for Paged Media Module +https://www.w3.org/TR/2024/WD-css-gcpm-3-20240125/ +https://www.w3.org/TR/2024/WD-css-gcpm-3-20240125/ + + + +Rachel Andrew +Mike Bremford +- +d:css-gcpm-4 +CSS-GCPM-4 + +Editor's Draft +CSS Generated Content for Paged Media Module Level 4 +https://drafts.csswg.org/css-gcpm-4/ + + + + - d:css-grid-1 css-grid-1 @@ -5575,6 +6482,17 @@ https://www.w3.org/TR/2020/CRD-css-grid-2-20201218/ Tab Atkins Jr. Elika Etemad Rossen Atanassov +- +d:css-grid-3 +CSS-GRID-3 + +Editor's Draft +CSS Grid Layout Module Level 3 +https://drafts.csswg.org/css-grid-3/ + + + + - d:css-highlight-api-1 css-highlight-api-1 @@ -5632,7 +6550,7 @@ Megan Gardner - d:css-images-3 css-images-3 -17 December 2020 +18 December 2023 CR CSS Images Module Level 3 https://www.w3.org/TR/css-images-3/ @@ -5765,15 +6683,29 @@ https://www.w3.org/TR/2020/CRD-css-images-3-20201217/ +Tab Atkins Jr. +Elika Etemad +Lea Verou +- +d:css-images-3-20231218 +css-images-3-20231218 +18 December 2023 +CR +CSS Images Module Level 3 +https://www.w3.org/TR/2023/CRD-css-images-3-20231218/ +https://www.w3.org/TR/2023/CRD-css-images-3-20231218/ + + + Tab Atkins Jr. Elika Etemad Lea Verou - d:css-images-4 css-images-4 -13 April 2017 +17 February 2023 WD -CSS Image Values and Replaced Content Module Level 4 +CSS Images Module Level 4 https://www.w3.org/TR/css-images-4/ https://drafts.csswg.org/css-images-4/ @@ -5809,10 +6741,35 @@ https://www.w3.org/TR/2017/WD-css-images-4-20170413/ Tab Atkins Jr. Elika Etemad Lea Verou +- +d:css-images-4-20230217 +css-images-4-20230217 +17 February 2023 +WD +CSS Images Module Level 4 +https://www.w3.org/TR/2023/WD-css-images-4-20230217/ +https://www.w3.org/TR/2023/WD-css-images-4-20230217/ + + + +Tab Atkins Jr. +Elika Etemad +Lea Verou +- +d:css-images-5 +CSS-IMAGES-5 + +Editor's Draft +CSS Images Module Level 5 +https://drafts.csswg.org/css-images-5/ + + + + - d:css-inline-3 css-inline-3 -14 November 2022 +12 August 2024 WD CSS Inline Layout Module Level 3 https://www.w3.org/TR/css-inline-3/ @@ -5820,7 +6777,6 @@ https://drafts.csswg.org/css-inline-3/ -Dave Cramer Elika Etemad - d:css-inline-3-20141218 @@ -5946,6 +6902,43 @@ https://www.w3.org/TR/2022/WD-css-inline-3-20221114/ Dave Cramer +Elika Etemad +- +d:css-inline-3-20230401 +css-inline-3-20230401 +1 April 2023 +WD +CSS Inline Layout Module Level 3 +https://www.w3.org/TR/2023/WD-css-inline-3-20230401/ +https://www.w3.org/TR/2023/WD-css-inline-3-20230401/ + + + +Dave Cramer +Elika Etemad +- +d:css-inline-3-20240808 +css-inline-3-20240808 +8 August 2024 +WD +CSS Inline Layout Module Level 3 +https://www.w3.org/TR/2024/WD-css-inline-3-20240808/ +https://www.w3.org/TR/2024/WD-css-inline-3-20240808/ + + + +Elika Etemad +- +d:css-inline-3-20240812 +css-inline-3-20240812 +12 August 2024 +WD +CSS Inline Layout Module Level 3 +https://www.w3.org/TR/2024/WD-css-inline-3-20240812/ +https://www.w3.org/TR/2024/WD-css-inline-3-20240812/ + + + Elika Etemad - d:css-layout-api-1 @@ -6023,6 +7016,17 @@ https://www.w3.org/TR/2014/WD-css-line-grid-1-20140916/ Elika Etemad Koji Ishii Alan Stearns +- +d:css-link-params-1 +CSS-LINK-PARAMS-1 + +Editor's Draft +CSS Linked Parameters +https://drafts.csswg.org/css-link-params-1/ + + + + - d:css-lists-3 css-lists-3 @@ -6339,6 +7343,17 @@ css-masking-1-20210805 a:css-mime CSS-MIME RFC2318 +- +d:css-mixins-1 +CSS-MIXINS-1 + +Editor's Draft +CSS Functions and Mixins Module +https://drafts.csswg.org/css-mixins-1/ + + + + - d:css-mobile css-mobile @@ -6462,7 +7477,7 @@ Bert Bos - d:css-multicol-1 css-multicol-1 -12 October 2021 +16 May 2024 CR CSS Multi-column Layout Module Level 1 https://www.w3.org/TR/css-multicol-1/ @@ -6628,8 +7643,32 @@ https://www.w3.org/TR/2021/CR-css-multicol-1-20211012/ -Florian Rivoal -Rachel Andrew +Florian Rivoal +Rachel Andrew +- +d:css-multicol-1-20240516 +css-multicol-1-20240516 +16 May 2024 +CR +CSS Multi-column Layout Module Level 1 +https://www.w3.org/TR/2024/CR-css-multicol-1-20240516/ +https://www.w3.org/TR/2024/CR-css-multicol-1-20240516/ + + + +Florian Rivoal +Rachel Andrew +- +d:css-multicol-2 +CSS-MULTICOL-2 + +Editor's Draft +CSS Multi-column Layout Module Level 2 +https://drafts.csswg.org/css-multicol-2/ + + + + - d:css-namespaces-3 css-namespaces-3 @@ -6769,7 +7808,7 @@ Florian Rivoal - d:css-nesting-1 css-nesting-1 -31 August 2021 +14 February 2023 WD CSS Nesting Module https://www.w3.org/TR/css-nesting-1/ @@ -6790,12 +7829,25 @@ https://www.w3.org/TR/2021/WD-css-nesting-1-20210831/ +Tab Atkins Jr. +Adam Argyle +- +d:css-nesting-1-20230214 +css-nesting-1-20230214 +14 February 2023 +WD +CSS Nesting Module +https://www.w3.org/TR/2023/WD-css-nesting-1-20230214/ +https://www.w3.org/TR/2023/WD-css-nesting-1-20230214/ + + + Tab Atkins Jr. Adam Argyle - d:css-overflow-3 css-overflow-3 -31 December 2022 +29 March 2023 WD CSS Overflow Module Level 3 https://www.w3.org/TR/css-overflow-3/ @@ -6897,12 +7949,38 @@ https://www.w3.org/TR/2022/WD-css-overflow-3-20221231/ +Elika Etemad +Florian Rivoal +- +d:css-overflow-3-20230321 +css-overflow-3-20230321 +21 March 2023 +WD +CSS Overflow Module Level 3 +https://www.w3.org/TR/2023/WD-css-overflow-3-20230321/ +https://www.w3.org/TR/2023/WD-css-overflow-3-20230321/ + + + +Elika Etemad +Florian Rivoal +- +d:css-overflow-3-20230329 +css-overflow-3-20230329 +29 March 2023 +WD +CSS Overflow Module Level 3 +https://www.w3.org/TR/2023/WD-css-overflow-3-20230329/ +https://www.w3.org/TR/2023/WD-css-overflow-3-20230329/ + + + Elika Etemad Florian Rivoal - d:css-overflow-4 css-overflow-4 -31 December 2022 +21 March 2023 WD CSS Overflow Module Level 4 https://www.w3.org/TR/css-overflow-4/ @@ -6912,6 +7990,7 @@ https://drafts.csswg.org/css-overflow-4/ David Baron Florian Rivoal +Elika Etemad - d:css-overflow-4-20170613 css-overflow-4-20170613 @@ -6938,6 +8017,31 @@ https://www.w3.org/TR/2022/WD-css-overflow-4-20221231/ David Baron Florian Rivoal +- +d:css-overflow-4-20230321 +css-overflow-4-20230321 +21 March 2023 +WD +CSS Overflow Module Level 4 +https://www.w3.org/TR/2023/WD-css-overflow-4-20230321/ +https://www.w3.org/TR/2023/WD-css-overflow-4-20230321/ + + + +David Baron +Florian Rivoal +Elika Etemad +- +d:css-overflow-5 +CSS-OVERFLOW-5 + +Editor's Draft +CSS Overflow Module Level 5 +https://drafts.csswg.org/css-overflow-5/ + + + + - a:css-overscroll css-overscroll @@ -6981,7 +8085,7 @@ css-overscroll-1-20190606 - d:css-page-3 css-page-3 -18 October 2018 +14 September 2023 WD CSS Paged Media Module Level 3 https://www.w3.org/TR/css-page-3/ @@ -6990,7 +8094,6 @@ https://drafts.csswg.org/css-page-3/ Elika Etemad -Simon Sapin - d:css-page-3-19990623 css-page-3-19990623 @@ -7003,7 +8106,6 @@ https://www.w3.org/1999/06/WD-css3-page-19990623 Elika Etemad -Simon Sapin - d:css-page-3-19990928 css-page-3-19990928 @@ -7016,7 +8118,6 @@ https://www.w3.org/TR/1999/WD-css3-page-19990928 Elika Etemad -Simon Sapin - d:css-page-3-20030909 css-page-3-20030909 @@ -7029,7 +8130,6 @@ https://www.w3.org/TR/2003/WD-css3-page-20030909 Elika Etemad -Simon Sapin - d:css-page-3-20031218 css-page-3-20031218 @@ -7042,7 +8142,6 @@ https://www.w3.org/TR/2003/WD-css3-page-20031218 Elika Etemad -Simon Sapin - d:css-page-3-20040225 css-page-3-20040225 @@ -7055,7 +8154,6 @@ https://www.w3.org/TR/2004/CR-css3-page-20040225 Elika Etemad -Simon Sapin - d:css-page-3-20061010 css-page-3-20061010 @@ -7068,7 +8166,6 @@ https://www.w3.org/TR/2006/WD-css3-page-20061010/ Elika Etemad -Simon Sapin - d:css-page-3-20130314 css-page-3-20130314 @@ -7097,6 +8194,29 @@ https://www.w3.org/TR/2018/WD-css-page-3-20181018/ Elika Etemad Simon Sapin +- +d:css-page-3-20230914 +css-page-3-20230914 +14 September 2023 +WD +CSS Paged Media Module Level 3 +https://www.w3.org/TR/2023/WD-css-page-3-20230914/ +https://www.w3.org/TR/2023/WD-css-page-3-20230914/ + + + +Elika Etemad +- +d:css-page-4 +CSS-PAGE-4 + +Unofficial Proposal Draft +Proposals for the future of CSS Paged Media +https://drafts.csswg.org/css-page-4/ + + + + - d:css-page-floats-3 css-page-floats-3 @@ -7206,7 +8326,7 @@ https://wicg.github.io/css-parser-api/ - d:css-position-3 css-position-3 -1 September 2022 +10 August 2024 WD CSS Positioned Layout Module Level 3 https://www.w3.org/TR/css-position-3/ @@ -7295,6 +8415,56 @@ https://www.w3.org/TR/2022/WD-css-position-3-20220901/ Elika Etemad Tab Atkins Jr. +- +d:css-position-3-20230217 +css-position-3-20230217 +17 February 2023 +WD +CSS Positioned Layout Module Level 3 +https://www.w3.org/TR/2023/WD-css-position-3-20230217/ +https://www.w3.org/TR/2023/WD-css-position-3-20230217/ + + + +Elika Etemad +Tab Atkins Jr. +- +d:css-position-3-20230403 +css-position-3-20230403 +3 April 2023 +WD +CSS Positioned Layout Module Level 3 +https://www.w3.org/TR/2023/WD-css-position-3-20230403/ +https://www.w3.org/TR/2023/WD-css-position-3-20230403/ + + + +Elika Etemad +Tab Atkins Jr. +- +d:css-position-3-20240810 +css-position-3-20240810 +10 August 2024 +WD +CSS Positioned Layout Module Level 3 +https://www.w3.org/TR/2024/WD-css-position-3-20240810/ +https://www.w3.org/TR/2024/WD-css-position-3-20240810/ + + + +Elika Etemad +Tab Atkins Jr. +- +d:css-position-4 +CSS-POSITION-4 + +Editor's Draft +CSS Positioned Layout Module Level 4 +https://drafts.csswg.org/css-position-4/ + + + + - d:css-potential CSS-potential @@ -7400,7 +8570,7 @@ Melinda Grant - d:css-properties-values-api-1 css-properties-values-api-1 -13 October 2020 +26 March 2024 WD CSS Properties and Values API Level 1 https://www.w3.org/TR/css-properties-values-api-1/ @@ -7409,10 +8579,8 @@ https://drafts.css-houdini.org/css-properties-values-api-1/ Tab Atkins Jr. -Daniel Glazman Alan Stearns Greg Whitworth -Shane Stephens - d:css-properties-values-api-1-20160607 css-properties-values-api-1-20160607 @@ -7479,6 +8647,20 @@ Alan Stearns Greg Whitworth Shane Stephens - +d:css-properties-values-api-1-20240326 +css-properties-values-api-1-20240326 +26 March 2024 +WD +CSS Properties and Values API Level 1 +https://www.w3.org/TR/2024/WD-css-properties-values-api-1-20240326/ +https://www.w3.org/TR/2024/WD-css-properties-values-api-1-20240326/ + + + +Tab Atkins Jr. +Alan Stearns +Greg Whitworth +- d:css-pseudo-4 css-pseudo-4 30 December 2022 @@ -8151,6 +9333,34 @@ Jacob Rossi Tab Atkins Jr. Elika Etemad - +d:css-scroll-snap-2 +css-scroll-snap-2 +23 July 2024 +WD +CSS Scroll Snap Module Level 2 +https://www.w3.org/TR/css-scroll-snap-2/ +https://drafts.csswg.org/css-scroll-snap-2/ + + + +Elika Etemad +Tab Atkins Jr. +Adam Argyle +- +d:css-scroll-snap-2-20240723 +css-scroll-snap-2-20240723 +23 July 2024 +WD +CSS Scroll Snap Module Level 2 +https://www.w3.org/TR/2024/WD-css-scroll-snap-2-20240723/ +https://www.w3.org/TR/2024/WD-css-scroll-snap-2-20240723/ + + + +Elika Etemad +Tab Atkins Jr. +Adam Argyle +- d:css-scrollbars-1 css-scrollbars-1 9 December 2021 @@ -8359,6 +9569,17 @@ https://www.w3.org/TR/2022/CRD-css-shapes-1-20221115/ Rossen Atanassov Alan Stearns +- +d:css-shapes-2 +CSS-SHAPES-2 + +Editor's Draft +CSS Shapes Module Level 2 +https://drafts.csswg.org/css-shapes-2/ + + + + - a:css-shapes-20130620 CSS-SHAPES-20130620 @@ -8379,6 +9600,17 @@ css-shapes-1-20140320 a:css-shapes-20221115 CSS-SHAPES-20221115 css-shapes-1-20221115 +- +d:css-size-adjust-1 +CSS-SIZE-ADJUST-1 + +Editor's Draft +CSS Mobile Text Size Adjustment Module Level 1 +https://drafts.csswg.org/css-size-adjust-1/ + + + + - d:css-sizing-3 css-sizing-3 @@ -8649,75 +9881,81 @@ css-scroll-snap-1-20210311 - d:css-speech-1 css-speech-1 -10 March 2020 +14 February 2023 CR -CSS Speech Module +CSS Speech Module Level 1 https://www.w3.org/TR/css-speech-1/ https://drafts.csswg.org/css-speech-1/ -Daniel Weck +Léonie Watson +Elika Etemad - d:css-speech-1-20030514 css-speech-1-20030514 14 May 2003 WD -CSS Speech Module +CSS Speech Module Level 1 https://www.w3.org/TR/2003/WD-css3-speech-20030514 https://www.w3.org/TR/2003/WD-css3-speech-20030514 -Daniel Weck +Léonie Watson +Elika Etemad - d:css-speech-1-20040727 css-speech-1-20040727 27 July 2004 WD -CSS Speech Module +CSS Speech Module Level 1 https://www.w3.org/TR/2004/WD-css3-speech-20040727 https://www.w3.org/TR/2004/WD-css3-speech-20040727 -Daniel Weck +Léonie Watson +Elika Etemad - d:css-speech-1-20041216 css-speech-1-20041216 16 December 2004 WD -CSS Speech Module +CSS Speech Module Level 1 https://www.w3.org/TR/2004/WD-css3-speech-20041216/ https://www.w3.org/TR/2004/WD-css3-speech-20041216/ -Daniel Weck +Léonie Watson +Elika Etemad - d:css-speech-1-20110419 css-speech-1-20110419 19 April 2011 WD -CSS Speech Module +CSS Speech Module Level 1 https://www.w3.org/TR/2011/WD-css3-speech-20110419 https://www.w3.org/TR/2011/WD-css3-speech-20110419 -Daniel Weck +Léonie Watson +Elika Etemad - d:css-speech-1-20110818 css-speech-1-20110818 18 August 2011 WD -CSS Speech Module +CSS Speech Module Level 1 https://www.w3.org/TR/2011/WD-css3-speech-20110818/ https://www.w3.org/TR/2011/WD-css3-speech-20110818/ -Daniel Weck +Léonie Watson +Elika Etemad - d:css-speech-1-20120320 css-speech-1-20120320 @@ -8755,6 +9993,19 @@ https://www.w3.org/TR/2020/CR-css-speech-1-20200310/ Daniel Weck - +d:css-speech-1-20230214 +css-speech-1-20230214 +14 February 2023 +CR +CSS Speech Module Level 1 +https://www.w3.org/TR/2023/CRD-css-speech-1-20230214/ +https://www.w3.org/TR/2023/CRD-css-speech-1-20230214/ + + + +Léonie Watson +Elika Etemad +- d:css-style-attr css-style-attr 7 November 2013 @@ -9123,7 +10374,7 @@ César Acebal - d:css-text-3 css-text-3 -27 January 2023 +3 September 2023 CR CSS Text Module Level 3 https://www.w3.org/TR/css-text-3/ @@ -9547,13 +10798,41 @@ https://www.w3.org/TR/2023/CRD-css-text-3-20230127/ +Elika Etemad +Koji Ishii +Florian Rivoal +- +d:css-text-3-20230213 +css-text-3-20230213 +13 February 2023 +CR +CSS Text Module Level 3 +https://www.w3.org/TR/2023/CRD-css-text-3-20230213/ +https://www.w3.org/TR/2023/CRD-css-text-3-20230213/ + + + +Elika Etemad +Koji Ishii +Florian Rivoal +- +d:css-text-3-20230903 +css-text-3-20230903 +3 September 2023 +CR +CSS Text Module Level 3 +https://www.w3.org/TR/2023/CRD-css-text-3-20230903/ +https://www.w3.org/TR/2023/CRD-css-text-3-20230903/ + + + Elika Etemad Koji Ishii Florian Rivoal - d:css-text-4 css-text-4 -31 December 2022 +29 May 2024 WD CSS Text Module Level 4 https://www.w3.org/TR/css-text-4/ @@ -9566,41 +10845,116 @@ Koji Ishii Alan Stearns Florian Rivoal - -d:css-text-4-20150922 -css-text-4-20150922 -22 September 2015 +d:css-text-4-20150922 +css-text-4-20150922 +22 September 2015 +WD +CSS Text Module Level 4 +https://www.w3.org/TR/2015/WD-css-text-4-20150922/ +https://www.w3.org/TR/2015/WD-css-text-4-20150922/ + + + +Elika Etemad +Koji Ishii +Alan Stearns +- +d:css-text-4-20180920 +css-text-4-20180920 +20 September 2018 +WD +CSS Text Module Level 4 +https://www.w3.org/TR/2018/WD-css-text-4-20180920/ +https://www.w3.org/TR/2018/WD-css-text-4-20180920/ + + + +Elika Etemad +Koji Ishii +Alan Stearns +- +d:css-text-4-20191113 +css-text-4-20191113 +13 November 2019 +WD +CSS Text Module Level 4 +https://www.w3.org/TR/2019/WD-css-text-4-20191113/ +https://www.w3.org/TR/2019/WD-css-text-4-20191113/ + + + +Elika Etemad +Koji Ishii +Alan Stearns +Florian Rivoal +- +d:css-text-4-20220318 +css-text-4-20220318 +18 March 2022 +WD +CSS Text Module Level 4 +https://www.w3.org/TR/2022/WD-css-text-4-20220318/ +https://www.w3.org/TR/2022/WD-css-text-4-20220318/ + + + +Elika Etemad +Koji Ishii +Alan Stearns +Florian Rivoal +- +d:css-text-4-20220505 +css-text-4-20220505 +5 May 2022 +WD +CSS Text Module Level 4 +https://www.w3.org/TR/2022/WD-css-text-4-20220505/ +https://www.w3.org/TR/2022/WD-css-text-4-20220505/ + + + +Elika Etemad +Koji Ishii +Alan Stearns +Florian Rivoal +- +d:css-text-4-20221231 +css-text-4-20221231 +31 December 2022 WD CSS Text Module Level 4 -https://www.w3.org/TR/2015/WD-css-text-4-20150922/ -https://www.w3.org/TR/2015/WD-css-text-4-20150922/ +https://www.w3.org/TR/2022/WD-css-text-4-20221231/ +https://www.w3.org/TR/2022/WD-css-text-4-20221231/ Elika Etemad Koji Ishii Alan Stearns +Florian Rivoal - -d:css-text-4-20180920 -css-text-4-20180920 -20 September 2018 +d:css-text-4-20230301 +css-text-4-20230301 +1 March 2023 WD CSS Text Module Level 4 -https://www.w3.org/TR/2018/WD-css-text-4-20180920/ -https://www.w3.org/TR/2018/WD-css-text-4-20180920/ +https://www.w3.org/TR/2023/WD-css-text-4-20230301/ +https://www.w3.org/TR/2023/WD-css-text-4-20230301/ Elika Etemad Koji Ishii Alan Stearns +Florian Rivoal - -d:css-text-4-20191113 -css-text-4-20191113 -13 November 2019 +d:css-text-4-20230329 +css-text-4-20230329 +29 March 2023 WD CSS Text Module Level 4 -https://www.w3.org/TR/2019/WD-css-text-4-20191113/ -https://www.w3.org/TR/2019/WD-css-text-4-20191113/ +https://www.w3.org/TR/2023/WD-css-text-4-20230329/ +https://www.w3.org/TR/2023/WD-css-text-4-20230329/ @@ -9609,13 +10963,13 @@ Koji Ishii Alan Stearns Florian Rivoal - -d:css-text-4-20220318 -css-text-4-20220318 -18 March 2022 +d:css-text-4-20231020 +css-text-4-20231020 +20 October 2023 WD CSS Text Module Level 4 -https://www.w3.org/TR/2022/WD-css-text-4-20220318/ -https://www.w3.org/TR/2022/WD-css-text-4-20220318/ +https://www.w3.org/TR/2023/WD-css-text-4-20231020/ +https://www.w3.org/TR/2023/WD-css-text-4-20231020/ @@ -9624,13 +10978,13 @@ Koji Ishii Alan Stearns Florian Rivoal - -d:css-text-4-20220505 -css-text-4-20220505 -5 May 2022 +d:css-text-4-20240219 +css-text-4-20240219 +19 February 2024 WD CSS Text Module Level 4 -https://www.w3.org/TR/2022/WD-css-text-4-20220505/ -https://www.w3.org/TR/2022/WD-css-text-4-20220505/ +https://www.w3.org/TR/2024/WD-css-text-4-20240219/ +https://www.w3.org/TR/2024/WD-css-text-4-20240219/ @@ -9639,13 +10993,13 @@ Koji Ishii Alan Stearns Florian Rivoal - -d:css-text-4-20221231 -css-text-4-20221231 -31 December 2022 +d:css-text-4-20240529 +css-text-4-20240529 +29 May 2024 WD CSS Text Module Level 4 -https://www.w3.org/TR/2022/WD-css-text-4-20221231/ -https://www.w3.org/TR/2022/WD-css-text-4-20221231/ +https://www.w3.org/TR/2024/WD-css-text-4-20240529/ +https://www.w3.org/TR/2024/WD-css-text-4-20240529/ @@ -9821,6 +11175,10 @@ a:css-timing-1-20210401 css-timing-1-20210401 css-easing-1-20210401 - +a:css-timing-1-20230213 +css-timing-1-20230213 +css-easing-1-20230213 +- d:css-transforms-1 css-transforms-1 14 February 2019 @@ -10108,6 +11466,32 @@ Dean Jackson Brian Birtles David Hyatt - +d:css-transitions-2 +css-transitions-2 +5 September 2023 +WD +CSS Transitions Level 2 +https://www.w3.org/TR/css-transitions-2/ +https://drafts.csswg.org/css-transitions-2/ + + + +David Baron +Brian Birtles +- +d:css-transitions-2-20230905 +css-transitions-2-20230905 +5 September 2023 +WD +CSS Transitions Level 2 +https://www.w3.org/TR/2023/WD-css-transitions-2-20230905/ +https://www.w3.org/TR/2023/WD-css-transitions-2-20230905/ + + + +David Baron +Brian Birtles +- d:css-tv css-tv 14 October 2014 @@ -10200,7 +11584,7 @@ Håkon Wium Lie - d:css-typed-om-1 css-typed-om-1 -10 April 2018 +21 March 2024 WD CSS Typed OM Level 1 https://www.w3.org/TR/css-typed-om-1/ @@ -10208,9 +11592,8 @@ https://drafts.css-houdini.org/css-typed-om-1/ -Shane Stephens Tab Atkins Jr. -Naina Raisinghani +François Remy - d:css-typed-om-1-20160607 css-typed-om-1-20160607 @@ -10250,6 +11633,30 @@ https://www.w3.org/TR/2018/WD-css-typed-om-1-20180410/ Shane Stephens Tab Atkins Jr. Naina Raisinghani +- +d:css-typed-om-1-20240321 +css-typed-om-1-20240321 +21 March 2024 +WD +CSS Typed OM Level 1 +https://www.w3.org/TR/2024/WD-css-typed-om-1-20240321/ +https://www.w3.org/TR/2024/WD-css-typed-om-1-20240321/ + + + +Tab Atkins Jr. +François Remy +- +d:css-typed-om-2 +CSS-TYPED-OM-2 + +A Collection of Interesting Ideas +CSS Typed OM Level 2 +https://drafts.css-houdini.org/css-typed-om-2/ + + + + - d:css-ui-3 css-ui-3 @@ -10536,9 +11943,13 @@ a:css-values-20221201 css-values-20221201 css-values-3-20221201 - +a:css-values-20240322 +css-values-20240322 +css-values-3-20240322 +- d:css-values-3 css-values-3 -1 December 2022 +22 March 2024 CR CSS Values and Units Module Level 3 https://www.w3.org/TR/css-values-3/ @@ -10730,12 +12141,25 @@ https://www.w3.org/TR/2022/CR-css-values-3-20221201/ +Tab Atkins Jr. +Elika Etemad +- +d:css-values-3-20240322 +css-values-3-20240322 +22 March 2024 +CR +CSS Values and Units Module Level 3 +https://www.w3.org/TR/2024/CRD-css-values-3-20240322/ +https://www.w3.org/TR/2024/CRD-css-values-3-20240322/ + + + Tab Atkins Jr. Elika Etemad - d:css-values-4 css-values-4 -19 October 2022 +12 March 2024 WD CSS Values and Units Module Level 4 https://www.w3.org/TR/css-values-4/ @@ -10862,6 +12286,69 @@ https://www.w3.org/TR/2022/WD-css-values-4-20221019/ Tab Atkins Jr. Elika Etemad +- +d:css-values-4-20230406 +css-values-4-20230406 +6 April 2023 +WD +CSS Values and Units Module Level 4 +https://www.w3.org/TR/2023/WD-css-values-4-20230406/ +https://www.w3.org/TR/2023/WD-css-values-4-20230406/ + + + +Tab Atkins Jr. +Elika Etemad +- +d:css-values-4-20231027 +css-values-4-20231027 +27 October 2023 +WD +CSS Values and Units Module Level 4 +https://www.w3.org/TR/2023/WD-css-values-4-20231027/ +https://www.w3.org/TR/2023/WD-css-values-4-20231027/ + + + +Tab Atkins Jr. +Elika Etemad +- +d:css-values-4-20231218 +css-values-4-20231218 +18 December 2023 +WD +CSS Values and Units Module Level 4 +https://www.w3.org/TR/2023/WD-css-values-4-20231218/ +https://www.w3.org/TR/2023/WD-css-values-4-20231218/ + + + +Tab Atkins Jr. +Elika Etemad +- +d:css-values-4-20240312 +css-values-4-20240312 +12 March 2024 +WD +CSS Values and Units Module Level 4 +https://www.w3.org/TR/2024/WD-css-values-4-20240312/ +https://www.w3.org/TR/2024/WD-css-values-4-20240312/ + + + +Tab Atkins Jr. +Elika Etemad +- +d:css-values-5 +CSS-VALUES-5 + +Editor's Draft +CSS Values and Units Module Level 5 +https://drafts.csswg.org/css-values-5/ + + + + - a:css-variables css-variables @@ -10964,6 +12451,17 @@ https://www.w3.org/TR/2022/CR-css-variables-1-20220616/ Tab Atkins Jr. +- +d:css-variables-2 +CSS-VARIABLES-2 + +Editor's Draft +CSS Custom Properties for Cascading Variables Module Level 2 +https://drafts.csswg.org/css-variables-2/ + + + + - a:css-variables-20120410 css-variables-20120410 @@ -10995,8 +12493,8 @@ css-variables-1-20220616 - d:css-view-transitions-1 css-view-transitions-1 -24 November 2022 -WD +28 March 2024 +CR CSS View Transitions Module Level 1 https://www.w3.org/TR/css-view-transitions-1/ https://drafts.csswg.org/css-view-transitions-1/ @@ -11035,6 +12533,140 @@ Tab Atkins Jr. Jake Archibald Khushal Sagar - +d:css-view-transitions-1-20230525 +css-view-transitions-1-20230525 +25 May 2023 +WD +CSS View Transitions Module Level 1 +https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230525/ +https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230525/ + + + +Tab Atkins Jr. +Jake Archibald +Khushal Sagar +- +d:css-view-transitions-1-20230530 +css-view-transitions-1-20230530 +30 May 2023 +WD +CSS View Transitions Module Level 1 +https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230530/ +https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230530/ + + + +Tab Atkins Jr. +Jake Archibald +Khushal Sagar +- +d:css-view-transitions-1-20230803 +css-view-transitions-1-20230803 +3 August 2023 +WD +CSS View Transitions Module Level 1 +https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230803/ +https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230803/ + + + +Tab Atkins Jr. +Jake Archibald +Khushal Sagar +- +d:css-view-transitions-1-20230905 +css-view-transitions-1-20230905 +5 September 2023 +CR +CSS View Transitions Module Level 1 +https://www.w3.org/TR/2023/CR-css-view-transitions-1-20230905/ +https://www.w3.org/TR/2023/CR-css-view-transitions-1-20230905/ + + + +Tab Atkins Jr. +Jake Archibald +Khushal Sagar +- +d:css-view-transitions-1-20240328 +css-view-transitions-1-20240328 +28 March 2024 +CR +CSS View Transitions Module Level 1 +https://www.w3.org/TR/2024/CRD-css-view-transitions-1-20240328/ +https://www.w3.org/TR/2024/CRD-css-view-transitions-1-20240328/ + + + +Tab Atkins Jr. +Jake Archibald +Khushal Sagar +- +d:css-view-transitions-2 +css-view-transitions-2 +16 May 2024 +WD +CSS View Transitions Module Level 2 +https://www.w3.org/TR/css-view-transitions-2/ +https://drafts.csswg.org/css-view-transitions-2/ + + + +Tab Atkins Jr. +Vladimir Levin +Noam Rosenthal +Khushal Sagar +- +d:css-view-transitions-2-20240516 +css-view-transitions-2-20240516 +16 May 2024 +WD +CSS View Transitions Module Level 2 +https://www.w3.org/TR/2024/WD-css-view-transitions-2-20240516/ +https://www.w3.org/TR/2024/WD-css-view-transitions-2-20240516/ + + + +Tab Atkins Jr. +Vladimir Levin +Noam Rosenthal +Khushal Sagar +- +a:css-viewport +CSS-VIEWPORT +css-viewport-1 +- +d:css-viewport-1 +css-viewport-1 +25 January 2024 +WD +CSS Viewport Module Level 1 +https://www.w3.org/TR/css-viewport-1/ +https://drafts.csswg.org/css-viewport/ + + + +Florian Rivoal +Emilio Cobos Álvarez +- +d:css-viewport-1-20240125 +css-viewport-1-20240125 +25 January 2024 +WD +CSS Viewport Module Level 1 +https://www.w3.org/TR/2024/WD-css-viewport-1-20240125/ +https://www.w3.org/TR/2024/WD-css-viewport-1-20240125/ + + + +Florian Rivoal +Emilio Cobos Álvarez +- +a:css-viewport-20240125 +CSS-VIEWPORT-20240125 +css-viewport-1-20240125 +- d:css-will-change-1 css-will-change-1 5 May 2022 @@ -12006,8 +13638,8 @@ css3-3d-transforms WD CSS 3D Transforms Module Level 3 https://www.w3.org/TR/css3-3d-transforms/ - -css-transforms-1 +https://drafts.csswg.org/css-transforms-2/ +css-transforms-2 Dean Jackson @@ -12021,7 +13653,7 @@ WD CSS 3D Transforms Module Level 3 https://www.w3.org/TR/2009/WD-css3-3d-transforms-20090320/ https://www.w3.org/TR/2009/WD-css3-3d-transforms-20090320/ -css-transforms-1 +css-transforms-2 Dean Jackson @@ -12092,6 +13724,10 @@ a:css3-align-20211224 css3-align-20211224 css-align-3-20211224 - +a:css3-align-20230217 +css3-align-20230217 +css-align-3-20230217 +- a:css3-animations css3-animations css-animations-1 @@ -12116,6 +13752,10 @@ a:css3-animations-20181011 css3-animations-20181011 css-animations-1-20181011 - +a:css3-animations-20230302 +css3-animations-20230302 +css-animations-1-20230302 +- a:css3-background css3-background css-backgrounds-3 @@ -12188,6 +13828,18 @@ a:css3-background-20210726 css3-background-20210726 css-backgrounds-3-20210726 - +a:css3-background-20230214 +css3-background-20230214 +css-backgrounds-3-20230214 +- +a:css3-background-20231219 +css3-background-20231219 +css-backgrounds-3-20231219 +- +a:css3-background-20240311 +css3-background-20240311 +css-backgrounds-3-20240311 +- a:css3-bg CSS3-BG css3-background @@ -12260,6 +13912,18 @@ a:css3-bg-20210726 CSS3-BG-20210726 css-backgrounds-3-20210726 - +a:css3-bg-20230214 +CSS3-BG-20230214 +css-backgrounds-3-20230214 +- +a:css3-bg-20231219 +CSS3-BG-20231219 +css-backgrounds-3-20231219 +- +a:css3-bg-20240311 +CSS3-BG-20240311 +css-backgrounds-3-20240311 +- d:css3-border css3-border 7 November 2002 @@ -12328,6 +13992,18 @@ a:css3-box-20221103 css3-box-20221103 css-box-3-20221103 - +a:css3-box-20230216 +css3-box-20230216 +css-box-3-20230216 +- +a:css3-box-20230406 +css3-box-20230406 +css-box-3-20230406 +- +a:css3-box-20240411 +css3-box-20240411 +css-box-3-20240411 +- a:css3-break css3-break css-break-3 @@ -12504,6 +14180,10 @@ a:css3-conditional-20220113 css3-conditional-20220113 css-conditional-3-20220113 - +a:css3-conditional-20240815 +css3-conditional-20240815 +css-conditional-3-20240815 +- a:css3-content css3-content css-content-3 @@ -12584,6 +14264,14 @@ a:css3-display-20221118 CSS3-DISPLAY-20221118 css-display-3-20221118 - +a:css3-display-20230316 +CSS3-DISPLAY-20230316 +css-display-3-20230316 +- +a:css3-display-20230330 +CSS3-DISPLAY-20230330 +css-display-3-20230330 +- d:css3-exclusions css3-exclusions 15 January 2015 @@ -12810,6 +14498,10 @@ a:css3-gcpm-20140513 css3-gcpm-20140513 css-gcpm-3-20140513 - +a:css3-gcpm-20240125 +css3-gcpm-20240125 +css-gcpm-3-20240125 +- d:css3-grid css3-grid 5 September 2007 @@ -13050,6 +14742,10 @@ a:css3-images-20201217 css3-images-20201217 css-images-3-20201217 - +a:css3-images-20231218 +css3-images-20231218 +css-images-3-20231218 +- a:css3-layout css3-layout css-template-3 @@ -13252,6 +14948,10 @@ a:css3-mediaqueries-20220405 css3-mediaqueries-20220405 mediaqueries-3-20220405 - +a:css3-mediaqueries-20240521 +css3-mediaqueries-20240521 +mediaqueries-3-20240521 +- a:css3-multicol css3-multicol css-multicol-1 @@ -13304,6 +15004,10 @@ a:css3-multicol-20211012 css3-multicol-20211012 css-multicol-1-20211012 - +a:css3-multicol-20240516 +css3-multicol-20240516 +css-multicol-1-20240516 +- a:css3-namespace css3-namespace css-namespaces-3 @@ -13372,6 +15076,10 @@ a:css3-page-20181018 css3-page-20181018 css-page-3-20181018 - +a:css3-page-20230914 +css3-page-20230914 +css-page-3-20230914 +- d:css3-page-template CSS3-PAGE-TEMPLATE @@ -13412,6 +15120,18 @@ a:css3-positioning-20220901 css3-positioning-20220901 css-position-3-20220901 - +a:css3-positioning-20230217 +css3-positioning-20230217 +css-position-3-20230217 +- +a:css3-positioning-20230403 +css3-positioning-20230403 +css-position-3-20230403 +- +a:css3-positioning-20240810 +css3-positioning-20240810 +css-position-3-20240810 +- d:css3-preslev css3-preslev 14 October 2014 @@ -13762,6 +15482,10 @@ a:css3-speech-20200310 css3-speech-20200310 css-speech-1-20200310 - +a:css3-speech-20230214 +css3-speech-20230214 +css-speech-1-20230214 +- a:css3-syntax css3-syntax css-syntax-3 @@ -13914,6 +15638,14 @@ a:css3-text-20230127 css3-text-20230127 css-text-3-20230127 - +a:css3-text-20230213 +css3-text-20230213 +css-text-3-20230213 +- +a:css3-text-20230903 +css3-text-20230903 +css-text-3-20230903 +- a:css3-text-decor CSS3-TEXT-DECOR css-text-decor-3 @@ -14154,6 +15886,10 @@ a:css3-values-20221201 css3-values-20221201 css-values-3-20221201 - +a:css3-values-20240322 +css3-values-20240322 +css-values-3-20240322 +- a:css3-webfonts css3-webfonts css-fonts-3 @@ -14362,6 +16098,18 @@ a:css3bg-20210726 CSS3BG-20210726 css-backgrounds-3-20210726 - +a:css3bg-20230214 +CSS3BG-20230214 +css-backgrounds-3-20230214 +- +a:css3bg-20231219 +CSS3BG-20231219 +css-backgrounds-3-20231219 +- +a:css3bg-20240311 +CSS3BG-20240311 +css-backgrounds-3-20240311 +- a:css3border CSS3BORDER css3-border @@ -14414,6 +16162,18 @@ a:css3box-20221103 CSS3BOX-20221103 css-box-3-20221103 - +a:css3box-20230216 +CSS3BOX-20230216 +css-box-3-20230216 +- +a:css3box-20230406 +CSS3BOX-20230406 +css-box-3-20230406 +- +a:css3box-20240411 +CSS3BOX-20240411 +css-box-3-20240411 +- a:css3cascade CSS3CASCADE css3-cascade @@ -14518,6 +16278,10 @@ a:css3col-20211012 CSS3COL-20211012 css-multicol-1-20211012 - +a:css3col-20240516 +CSS3COL-20240516 +css-multicol-1-20240516 +- a:css3color CSS3COLOR css3-color @@ -14610,6 +16374,10 @@ a:css3gcpm-20140513 CSS3GCPM-20140513 css-gcpm-3-20140513 - +a:css3gcpm-20240125 +CSS3GCPM-20240125 +css-gcpm-3-20240125 +- a:css3gencon CSS3GENCON css3-content @@ -14814,6 +16582,10 @@ a:css3page-20181018 CSS3PAGE-20181018 css-page-3-20181018 - +a:css3page-20230914 +CSS3PAGE-20230914 +css-page-3-20230914 +- a:css3pos CSS3POS css-position-3 @@ -14842,6 +16614,18 @@ a:css3pos-20220901 CSS3POS-20220901 css-position-3-20220901 - +a:css3pos-20230217 +CSS3POS-20230217 +css-position-3-20230217 +- +a:css3pos-20230403 +CSS3POS-20230403 +css-position-3-20230403 +- +a:css3pos-20240810 +CSS3POS-20240810 +css-position-3-20240810 +- a:css3ruby CSS3RUBY css3-ruby @@ -14922,6 +16706,10 @@ a:css3speech-20200310 CSS3SPEECH-20200310 css-speech-1-20200310 - +a:css3speech-20230214 +CSS3SPEECH-20230214 +css-speech-1-20230214 +- a:css3syn CSS3SYN css3-syntax @@ -15090,6 +16878,14 @@ a:css3text-20230127 CSS3TEXT-20230127 css-text-3-20230127 - +a:css3text-20230213 +CSS3TEXT-20230213 +css-text-3-20230213 +- +a:css3text-20230903 +CSS3TEXT-20230903 +css-text-3-20230903 +- a:css3textlayout CSS3TEXTLAYOUT css-writing-modes-3 @@ -15274,6 +17070,10 @@ a:css3val-20221201 CSS3VAL-20221201 css-values-3-20221201 - +a:css3val-20240322 +CSS3VAL-20240322 +css-values-3-20240322 +- a:css3writingmodes CSS3WRITINGMODES css-writing-modes-3 @@ -15358,6 +17158,10 @@ a:css4-images-20170413 css4-images-20170413 css-images-4-20170413 - +a:css4-images-20230217 +css4-images-20230217 +css-images-4-20230217 +- d:css4background CSS4BACKGROUND diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ct.data b/bikeshed/spec-data/readonly/biblio/biblio-ct.data index a17b2f29d8..1934c042bd 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ct.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ct.data @@ -121,9 +121,101 @@ https://www.w3.org/TR/2009/NOTE-ct-landscape-20091027/ Jo Rabin Andrew Swainston - +d:cta-5000 +CTA-5000 +December 2017 +CTA Specification +Web Media API Snapshot 2017 CTA-5000 +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-final-v2_pdf.pdf + + + + +David Evans +Mark Vickers +- +d:cta-5000-a +CTA-5000-A +December 2018 +CTA Specification +Web Media API Snapshot 2018 CTA-5000-A +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-a-final.pdf + + + + +Jon Piesing +Mark Vickers +- +d:cta-5000-b +CTA-5000-B +December 2019 +CTA Specification +Web Media API Snapshot 2019 CTA-5000-B +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-b-final_v2.pdf + + + + +John Luther +Jon Piesing +John Riviello +- +d:cta-5000-c +CTA-5000-C +December 2020 +CTA Specification +Web Media API Snapshot 2020 CTA-5000-C +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-c_final.pdf + + + + +Jon Piesing +John Riviello +- +d:cta-5000-d +CTA-5000-D +December 2021 +CTA Specification +Web Media API Snapshot 2021 CTA-5000-D +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-d-final.pdf + + + + +Jon Piesing +John Riviello +- +d:cta-5000-e +CTA-5000-E +December 2022 +CTA Specification +Web Media API Snapshot 2022 CTA-5000-E +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-e-final.pdf + + + + +Jon Piesing +John Riviello +- +d:cta-5000-f +CTA-5000-F +October 2023 +CTA Specification +Web Media API Snapshot 2023 CTA-5000-F +https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5000-f-final.pdf + + + + +Jon Piesing +John Riviello +- d:ctaur ctaur -8 November 2022 +10 July 2024 NOTE Collaboration Tools Accessibility User Requirements https://www.w3.org/TR/ctaur/ @@ -132,6 +224,8 @@ https://w3c.github.io/ctaur/ Jason White +Janina Sajka +Scott Hollier - d:ctaur-20221108 ctaur-20221108 @@ -145,3 +239,45 @@ https://www.w3.org/TR/2022/DNOTE-ctaur-20221108/ Jason White - +d:ctaur-20231024 +ctaur-20231024 +24 October 2023 +NOTE +Collaboration Tools Accessibility User Requirements +https://www.w3.org/TR/2023/DNOTE-ctaur-20231024/ +https://www.w3.org/TR/2023/DNOTE-ctaur-20231024/ + + + +Jason White +Janina Sajka +Scott Hollier +- +d:ctaur-20240320 +ctaur-20240320 +20 March 2024 +NOTE +Collaboration Tools Accessibility User Requirements +https://www.w3.org/TR/2024/DNOTE-ctaur-20240320/ +https://www.w3.org/TR/2024/DNOTE-ctaur-20240320/ + + + +Jason White +Janina Sajka +Scott Hollier +- +d:ctaur-20240710 +ctaur-20240710 +10 July 2024 +NOTE +Collaboration Tools Accessibility User Requirements +https://www.w3.org/TR/2024/DNOTE-ctaur-20240710/ +https://www.w3.org/TR/2024/DNOTE-ctaur-20240710/ + + + +Jason White +Janina Sajka +Scott Hollier +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cu.data b/bikeshed/spec-data/readonly/biblio/biblio-cu.data index 5b3ad106a8..f5d27fc655 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-cu.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-cu.data @@ -317,3 +317,14 @@ https://www.w3.org/TR/2018/NOTE-custom-elements-20180503/ Domenic Denicola - +d:custom-state-pseudo-class +CUSTOM-STATE-PSEUDO-CLASS + +Draft Community Group Report +Custom State Pseudo Class +https://wicg.github.io/custom-state-pseudo-class/ + +html + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cw.data b/bikeshed/spec-data/readonly/biblio/biblio-cw.data index a975b03988..b4eb6c3668 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-cw.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-cw.data @@ -49,7 +49,7 @@ Jason Merrill d:cwg1001 CWG1001 8 November 2009 -drafting +review Parameter type adjustment in dependent parameter types https://wg21.link/cwg1001 @@ -385,7 +385,7 @@ Jerry Coffin d:cwg1027 CWG1027 3 February 2010 -drafting +review Type consistency and reallocation of scalar types https://wg21.link/cwg1027 @@ -529,7 +529,7 @@ Daniel Krügler d:cwg1038 CWG1038 2 March 2010 -open +DRWP Overload resolution of &x.static_func https://wg21.link/cwg1038 @@ -1201,7 +1201,7 @@ Jason Merrill d:cwg1089 CWG1089 29 June 2010 -drafting +open Template parameters in member selections https://wg21.link/cwg1089 @@ -3397,7 +3397,7 @@ Nikolay Ivchenkov d:cwg1253 CWG1253 6 March 2011 -open +C++17 Generic non-template members https://wg21.link/cwg1253 @@ -3421,7 +3421,7 @@ Nikolay Ivchenkov d:cwg1255 CWG1255 8 March 2011 -open +drafting Definition problems with constexpr functions https://wg21.link/cwg1255 @@ -4728,7 +4728,7 @@ Richard Smith d:cwg1353 CWG1353 16 August 2011 -drafting +DRWP Array and variant members and deleted special member functions https://wg21.link/cwg1353 @@ -4824,7 +4824,7 @@ Daveed Vandevoorde d:cwg1360 CWG1360 16 August 2011 -drafting +CD6 constexpr defaulted default constructors https://wg21.link/cwg1360 @@ -5052,7 +5052,7 @@ Daveed Vandevoorde d:cwg1378 CWG1378 18 August 2011 -open +CD5 When is an instantiation required? https://wg21.link/cwg1378 @@ -5292,7 +5292,7 @@ John Spicer d:cwg1396 CWG1396 22 September 2011 -review +C++23 Deferred instantiation and checking of non-static data member initializers https://wg21.link/cwg1396 @@ -5400,7 +5400,7 @@ Daniel Krügler d:cwg1403 CWG1403 5 October 2011 -review +CD6 Universal-character-names in comments https://wg21.link/cwg1403 @@ -8052,7 +8052,7 @@ Ville Voutilainen d:cwg1602 CWG1602 9 January 2013 -open +review Linkage of specialization vs linkage of template arguments https://wg21.link/cwg1602 @@ -8364,7 +8364,7 @@ Chandler Carruth d:cwg1626 CWG1626 19 February 2013 -open +dup constexpr member functions in brace-or-equal-initializers https://wg21.link/cwg1626 @@ -8580,7 +8580,7 @@ John Spicer d:cwg1642 CWG1642 15 March 2013 -open +DRWP Missing requirements for prvalue operands https://wg21.link/cwg1642 @@ -9312,7 +9312,7 @@ Richard Smith d:cwg1698 CWG1698 10 June 2013 -open +DRWP Files ending in \ https://wg21.link/cwg1698 @@ -9324,7 +9324,7 @@ David Krauss d:cwg1699 CWG1699 12 June 2013 -extension +open Does befriending a class befriend its friends? https://wg21.link/cwg1699 @@ -9348,7 +9348,7 @@ unknown d:cwg170 CWG170 16 September 1999 -review +DRWP Pointer-to-member conversions https://wg21.link/cwg170 @@ -9636,7 +9636,7 @@ David Krauss d:cwg1721 CWG1721 20130731 -drafting +review Diagnosing ODR violations for static data members https://wg21.link/cwg1721 @@ -10524,7 +10524,7 @@ Richard Smith d:cwg1789 CWG1789 1 October 2013 -tentatively ready +open Array reference vs array decay in overload resolution https://wg21.link/cwg1789 @@ -11328,7 +11328,7 @@ Richard Smith d:cwg1849 CWG1849 3 February 2014 -drafting +CD6 Variable templates and the ODR https://wg21.link/cwg1849 @@ -11388,7 +11388,7 @@ Daveed Vandevoorde d:cwg1853 CWG1853 9 February 2014 -drafting +dup Defining “allocated storage” https://wg21.link/cwg1853 @@ -11964,7 +11964,7 @@ Mike Miller d:cwg1897 CWG1897 21 March 2014 -drafting +review ODR vs alternative tokens https://wg21.link/cwg1897 @@ -12252,7 +12252,7 @@ Daveed Vandevoorde d:cwg1918 CWG1918 27 April 2014 -open +CD5 friend templates with dependent scopes https://wg21.link/cwg1918 @@ -12612,7 +12612,7 @@ Mike Miller d:cwg1945 CWG1945 19 June 2014 -open +CD5 Friend declarations naming members of class templates in non-templates https://wg21.link/cwg1945 @@ -12732,7 +12732,7 @@ Faisal Vali d:cwg1954 CWG1954 23 June 2014 -open +DRWP typeid null dereference check in subexpressions https://wg21.link/cwg1954 @@ -12984,7 +12984,7 @@ Richard Smith d:cwg1973 CWG1973 16 July 2014 -review +DRWP Which parameter-declaration-clause in a lambda-expression? https://wg21.link/cwg1973 @@ -13596,7 +13596,7 @@ Richard Smith d:cwg2018 CWG2018 7 October 2014 -drafting +dup Qualification conversion vs reference binding https://wg21.link/cwg2018 @@ -14004,7 +14004,7 @@ Richard Smith d:cwg2049 CWG2049 20 November 2014 -drafting +DRWP List initializer in non-type template default argument https://wg21.link/cwg2049 @@ -14076,7 +14076,7 @@ Faisal Vali d:cwg2054 CWG2054 7 December 2014 -open +DRWP Missing description of class SFINAE https://wg21.link/cwg2054 @@ -14316,7 +14316,7 @@ Richard Smith d:cwg2072 CWG2072 19 January 2015 -review +C++23 Default argument instantiation for member functions of templates https://wg21.link/cwg2072 @@ -14724,7 +14724,7 @@ Maxim Kartashev d:cwg2102 CWG2102 16 March 2015 -drafting +DRWP Constructor checking in new-expression https://wg21.link/cwg2102 @@ -15276,7 +15276,7 @@ Maxim Kartashev d:cwg2144 CWG2144 19 June 2015 -drafting +DR Function/variable declaration ambiguity https://wg21.link/cwg2144 @@ -15336,7 +15336,7 @@ Hubert Tong d:cwg2149 CWG2149 25 June 2015 -drafting +DRWP Brace elision and array length deduction https://wg21.link/cwg2149 @@ -15768,7 +15768,7 @@ Vinny Romano d:cwg2181 CWG2181 18 October 2015 -drafting +C++20 Normative requirements in an informative Annex https://wg21.link/cwg2181 @@ -15816,7 +15816,7 @@ CWG d:cwg2185 CWG2185 21 October 2015 -open +CD6 Cv-qualified numeric types https://wg21.link/cwg2185 @@ -16584,7 +16584,7 @@ CWG d:cwg2242 CWG2242 5 March 2016 -DR +C++23 ODR violation with constant initialization possibly omitted https://wg21.link/cwg2242 @@ -16716,7 +16716,7 @@ Richard Smith d:cwg2252 CWG2252 22 March 2016 -review +DRWP Enumeration list-initialization from the same type https://wg21.link/cwg2252 @@ -17616,7 +17616,7 @@ Richard Smith d:cwg232 CWG232 5 June 2000 -drafting +NAD Is indirection through a null pointer undefined behavior? https://wg21.link/cwg232 @@ -17748,7 +17748,7 @@ Daveed Vandevoorde d:cwg233 CWG233 9 June 2000 -open +DR References vs pointers in UDC overload resolution https://wg21.link/cwg233 @@ -18576,7 +18576,7 @@ Richard Smith d:cwg2392 CWG2392 5 December 2018 -DR +C++23 new-expression size check and constant evaluation https://wg21.link/cwg2392 @@ -18780,7 +18780,7 @@ Mike Miller d:cwg2407 CWG2407 26 February 2019 -DR +C++23 Missing entry in Annex C for defaulted comparison operators https://wg21.link/cwg2407 @@ -18828,7 +18828,7 @@ Mike Miller d:cwg2410 CWG2410 27 March 2019 -DR +C++23 Implicit calls of immediate functions https://wg21.link/cwg2410 @@ -18912,7 +18912,7 @@ Mike Miller d:cwg2417 CWG2417 19 June 2019 -review +open Explicit instantiation and exception specifications https://wg21.link/cwg2417 @@ -19056,7 +19056,7 @@ Mike Miller d:cwg2428 CWG2428 10 December 2018 -DR +C++23 Deprecating a concept https://wg21.link/cwg2428 @@ -19140,7 +19140,7 @@ Richard Smith d:cwg2434 CWG2434 20190930 -open +review Mandatory copy elision vs non-class objects https://wg21.link/cwg2434 @@ -19224,7 +19224,7 @@ John Spicer d:cwg2440 CWG2440 28 August 2019 -DR +C++23 Allocation in core constant expressions https://wg21.link/cwg2440 @@ -19260,7 +19260,7 @@ S. B. Tam d:cwg2443 CWG2443 9 November 2019 -drafting +C++23 Meaningless template exports https://wg21.link/cwg2443 @@ -19356,7 +19356,7 @@ Jack Rouse d:cwg2450 CWG2450 7 January 2019 -drafting +DRWP braced-init-list as a template-argument https://wg21.link/cwg2450 @@ -19368,7 +19368,7 @@ Marek Polacek d:cwg2451 CWG2451 14 February 2020 -DR +C++23 promise.unhandled_exception() and final suspend point https://wg21.link/cwg2451 @@ -19464,7 +19464,7 @@ Andrey Erokhin d:cwg2459 CWG2459 21 September 2020 -drafting +DRWP Template parameter initialization https://wg21.link/cwg2459 @@ -19680,7 +19680,7 @@ Unknown d:cwg2475 CWG2475 22 April 2020 -drafting +C++23 Object declarations of type cv void https://wg21.link/cwg2475 @@ -19692,7 +19692,7 @@ Krystian Stasiowski d:cwg2476 CWG2476 29 January 2021 -drafting +DRWP placeholder-type-specifiers and function declarators https://wg21.link/cwg2476 @@ -19716,7 +19716,7 @@ Andrew Rogers d:cwg2478 CWG2478 2 February 2021 -review +C++23 Properties of explicit specializations of implicitly-instantiated class templates https://wg21.link/cwg2478 @@ -19788,7 +19788,7 @@ Richard Smith d:cwg2483 CWG2483 11 March 2021 -tentatively ready +C++23 Language linkage of static member functions https://wg21.link/cwg2483 @@ -19812,7 +19812,7 @@ Richard Smith d:cwg2485 CWG2485 1 April 2021 -drafting +DRWP Bit-fields in integral promotions https://wg21.link/cwg2485 @@ -19860,7 +19860,7 @@ Jiang An d:cwg2489 CWG2489 15 April 2021 -review +C++23 Storage provided by array of char https://wg21.link/cwg2489 @@ -19908,7 +19908,7 @@ Richard Smith d:cwg2492 CWG2492 11 January 2021 -review +drafting Comparing user-defined conversion sequences in list-initialization https://wg21.link/cwg2492 @@ -20076,7 +20076,7 @@ Jens Maurer d:cwg2504 CWG2504 3 November 2021 -drafting +DRWP Inheriting constructors from virtual base classes https://wg21.link/cwg2504 @@ -20124,7 +20124,7 @@ Jens Maurer d:cwg2508 CWG2508 1 November 2021 -DR +C++23 Restrictions on uses of template parameter names https://wg21.link/cwg2508 @@ -20208,7 +20208,7 @@ Richard Smith d:cwg2514 CWG2514 7 November 2021 -review +open Modifying const subobjects https://wg21.link/cwg2514 @@ -20232,7 +20232,7 @@ Andrey Erokhin d:cwg2516 CWG2516 3 October 2021 -review +C++23 Locus of enum-specifier or opaque-enum-declaration https://wg21.link/cwg2516 @@ -20244,7 +20244,7 @@ Jiang An d:cwg2517 CWG2517 10 June 2019 -open +C++23 Useless restriction on use of parameter in constraint-expression https://wg21.link/cwg2517 @@ -20256,7 +20256,7 @@ Richard Smith d:cwg2518 CWG2518 13 January 2022 -review +C++23 Conformance requirements and #error/#warning https://wg21.link/cwg2518 @@ -20268,7 +20268,7 @@ CWG d:cwg2519 CWG2519 20 January 2022 -drafting +DRWP Object representation of a bit-field https://wg21.link/cwg2519 @@ -20292,7 +20292,7 @@ Steve Clamage d:cwg2520 CWG2520 25 January 2022 -review +C++23 Template signature and default template arguments https://wg21.link/cwg2520 @@ -20304,7 +20304,7 @@ John Spicer d:cwg2521 CWG2521 7 January 2022 -open +C++23 User-defined literals and reserved identifiers https://wg21.link/cwg2521 @@ -20328,7 +20328,7 @@ Hubert Tong d:cwg2523 CWG2523 6 September 2021 -tentatively ready +C++23 Undefined behavior via omitted destructor call in constant expressions https://wg21.link/cwg2523 @@ -20364,7 +20364,7 @@ Jim X d:cwg2526 CWG2526 15 June 2020 -drafting +C++23 Relational comparison of void* pointers https://wg21.link/cwg2526 @@ -20388,7 +20388,7 @@ Jiang An d:cwg2528 CWG2528 26 January 2022 -drafting +C++23 Three-way comparison and the usual arithmetic conversions https://wg21.link/cwg2528 @@ -20400,7 +20400,7 @@ Cameron DaCamara d:cwg2529 CWG2529 8 February 2022 -drafting +C++23 Constant destruction of constexpr references https://wg21.link/cwg2529 @@ -20424,7 +20424,7 @@ Mike Miller d:cwg2530 CWG2530 10 February 2022 -drafting +C++23 Multiple definitions of enumerators https://wg21.link/cwg2530 @@ -20436,7 +20436,7 @@ Naiver Miigon d:cwg2531 CWG2531 16 February 2022 -open +DRWP Static data members redeclared as constexpr https://wg21.link/cwg2531 @@ -20460,7 +20460,7 @@ Andrey Erokhin d:cwg2533 CWG2533 17 February 2022 -drafting +DRWP Storage duration of implicitly created objects https://wg21.link/cwg2533 @@ -20496,7 +20496,7 @@ Andrey Erokhin d:cwg2536 CWG2536 21 February 2022 -drafting +open Partially initialized variables during constant initialization https://wg21.link/cwg2536 @@ -20508,7 +20508,7 @@ Barry Revzin d:cwg2537 CWG2537 25 February 2021 -tentatively ready +drafting Overbroad grammar for parameter-declaration https://wg21.link/cwg2537 @@ -20520,7 +20520,7 @@ Davis Herring d:cwg2538 CWG2538 2 December 2021 -DR +C++23 Can standard attributes be syntactically ignored? https://wg21.link/cwg2538 @@ -20532,7 +20532,7 @@ Jens Maurer d:cwg2539 CWG2539 24 February 2022 -tentatively ready +C++23 Three-way comparison requiring strong ordering for floating-point types https://wg21.link/cwg2539 @@ -20580,7 +20580,7 @@ Nathan Sidwell d:cwg2542 CWG2542 1 March 2022 -drafting +DRWP Is a closure type a structural type? https://wg21.link/cwg2542 @@ -20592,7 +20592,7 @@ Zhihao Yuan d:cwg2543 CWG2543 1 March 2022 -drafting +C++23 constinit and optimized dynamic initialization https://wg21.link/cwg2543 @@ -20628,7 +20628,7 @@ Richard Smith d:cwg2546 CWG2546 7 March 2022 -open +DRWP Defaulted secondary comparison operators defined as deleted https://wg21.link/cwg2546 @@ -20640,7 +20640,7 @@ Jim X d:cwg2547 CWG2547 7 March 2022 -open +DRWP Defaulted comparison operator function for non-classes https://wg21.link/cwg2547 @@ -20652,7 +20652,7 @@ Jim X d:cwg2548 CWG2548 8 March 2022 -open +NAD Array prvalues and additive operators https://wg21.link/cwg2548 @@ -20664,7 +20664,7 @@ Andrey Erokhin d:cwg2549 CWG2549 11 March 2022 -open +review Implicitly moving the operand of a throw-expression in unevaluated contexts https://wg21.link/cwg2549 @@ -20688,7 +20688,7 @@ Mike Miller d:cwg2550 CWG2550 13 March 2022 -open +DRWP Type "reference to cv void" outside of a declarator https://wg21.link/cwg2550 @@ -20700,7 +20700,7 @@ Jens Maurer d:cwg2551 CWG2551 7 September 2020 -open +review "Refers to allocated storage" has no meaning https://wg21.link/cwg2551 @@ -20712,7 +20712,7 @@ Andrey Erokhin d:cwg2552 CWG2552 21 March 2022 -open +DRWP Constant evaluation of non-defining variable declarations https://wg21.link/cwg2552 @@ -20724,7 +20724,7 @@ Hubert Tong d:cwg2553 CWG2553 10 December 2021 -open +review Restrictions on explicit object member functions https://wg21.link/cwg2553 @@ -20736,7 +20736,7 @@ Jens Maurer d:cwg2554 CWG2554 10 December 2021 -open +review Overriding virtual functions, also with explicit object parameters https://wg21.link/cwg2554 @@ -20748,7 +20748,7 @@ Jens Maurer d:cwg2555 CWG2555 23 March 2022 -open +drafting Ineffective redeclaration prevention for using-declarators https://wg21.link/cwg2555 @@ -20760,7 +20760,7 @@ Christof Meerwald d:cwg2556 CWG2556 24 March 2022 -open +DRWP Unusable promise::return_void https://wg21.link/cwg2556 @@ -20784,7 +20784,7 @@ Jens Maurer d:cwg2558 CWG2558 29 March 2022 -open +C++23 Uninitialized subobjects as a result of an immediate invocation https://wg21.link/cwg2558 @@ -20820,7 +20820,7 @@ James Kanze d:cwg2560 CWG2560 21 January 2020 -open +DRWP Parameter type determination in a requirement-parameter-list https://wg21.link/cwg2560 @@ -20832,7 +20832,7 @@ Daveed Vandevoorde d:cwg2561 CWG2561 14 February 2022 -open +DR Conversion to function pointer for lambda with explicit object parameter https://wg21.link/cwg2561 @@ -20856,7 +20856,7 @@ Tomasz Kamiński d:cwg2563 CWG2563 6 April 2022 -open +drafting Initialization of coroutine result object https://wg21.link/cwg2563 @@ -20868,7 +20868,7 @@ Tomasz Kamiński d:cwg2564 CWG2564 11 April 2022 -open +drafting Conversion to function pointer with an explicit object parameter https://wg21.link/cwg2564 @@ -20892,7 +20892,7 @@ Barry Revzin d:cwg2566 CWG2566 13 April 2022 -open +review Matching deallocation for uncaught exception https://wg21.link/cwg2566 @@ -20904,7 +20904,7 @@ Jim X d:cwg2567 CWG2567 1 April 2022 -open +NAD Operator lookup ambiguity https://wg21.link/cwg2567 @@ -20916,7 +20916,7 @@ Daveed Vandevoorde d:cwg2568 CWG2568 11 April 2022 -open +DRWP Access checking during synthesis of defaulted comparison operator https://wg21.link/cwg2568 @@ -20952,7 +20952,7 @@ Mike Miller d:cwg2570 CWG2570 18 April 2022 -open +DRWP Clarify constexpr for defaulted functions https://wg21.link/cwg2570 @@ -20976,7 +20976,7 @@ Corentin Jabot d:cwg2572 CWG2572 26 April 2022 -open +review Address of overloaded function with no target https://wg21.link/cwg2572 @@ -20988,7 +20988,7 @@ Jason Merrill d:cwg2573 CWG2573 23 October 2019 -open +DRWP Undefined behavior when splicing results in a universal-character-name https://wg21.link/cwg2573 @@ -21000,7 +21000,7 @@ US d:cwg2574 CWG2574 23 October 2019 -open +DRWP Undefined behavior when lexing unmatched quotes https://wg21.link/cwg2574 @@ -21120,7 +21120,7 @@ Jason Merrill d:cwg2583 CWG2583 3 May 2022 -DR +C++23 Common initial sequence should consider over-alignment https://wg21.link/cwg2583 @@ -21168,7 +21168,7 @@ Barry Revzin d:cwg2587 CWG2587 10 May 2022 -open +review Visible side effects and initial value of an object https://wg21.link/cwg2587 @@ -21180,7 +21180,7 @@ Andrey Erokhin d:cwg2588 CWG2588 26 May 2022 -drafting +DR friend declarations and module linkage https://wg21.link/cwg2588 @@ -21192,7 +21192,7 @@ Nathan Sidwell d:cwg2589 CWG2589 2 October 2019 -open +review Context of access checks during constraint satisfaction checking https://wg21.link/cwg2589 @@ -21216,7 +21216,7 @@ Matt Austern d:cwg2590 CWG2590 15 May 2022 -DR +C++23 Underlying type should determine size and alignment requirements of an enum https://wg21.link/cwg2590 @@ -21228,7 +21228,7 @@ Brian Bi d:cwg2591 CWG2591 29 May 2022 -open +DRWP Implicit change of active union member for anonymous union in union https://wg21.link/cwg2591 @@ -21252,7 +21252,7 @@ Jim X d:cwg2593 CWG2593 4 June 2022 -open +review Insufficient base class restriction for pointer-to-member expression https://wg21.link/cwg2593 @@ -21276,7 +21276,7 @@ Jim X d:cwg2595 CWG2595 8 June 2022 -open +DRWP "More constrained" for eligible special member functions https://wg21.link/cwg2595 @@ -21312,7 +21312,7 @@ Gabriel dos Reis d:cwg2598 CWG2598 18 June 2022 -DR +C++23 Unions should not require a non-static data member of literal type https://wg21.link/cwg2598 @@ -21324,7 +21324,7 @@ Richard Smith d:cwg2599 CWG2599 18 June 2022 -DR +C++23 What does initializing a parameter include? https://wg21.link/cwg2599 @@ -21360,7 +21360,7 @@ Scott Douglas d:cwg2600 CWG2600 18 June 2022 -review +DRWP Type dependency of placeholder types https://wg21.link/cwg2600 @@ -21372,7 +21372,7 @@ Hubert Tong d:cwg2601 CWG2601 16 June 2022 -DR +C++23 Tracking of created and destroyed subobjects https://wg21.link/cwg2601 @@ -21384,7 +21384,7 @@ Richard Smith d:cwg2602 CWG2602 16 June 2022 -review +C++23 consteval defaulted functions https://wg21.link/cwg2602 @@ -21396,7 +21396,7 @@ Aaron Ballman d:cwg2603 CWG2603 20 June 2022 -DR +C++23 Holistic functional equivalence for function templates https://wg21.link/cwg2603 @@ -21408,7 +21408,7 @@ Davis Herring d:cwg2604 CWG2604 23 June 2022 -DR +C++23 Attributes for an explicit specialization https://wg21.link/cwg2604 @@ -21420,7 +21420,7 @@ Aaron Ballman d:cwg2605 CWG2605 27 June 2022 -DR +C++23 Implicit-lifetime aggregates https://wg21.link/cwg2605 @@ -21492,7 +21492,7 @@ Mike Miller d:cwg2610 CWG2610 21 July 2022 -DR +C++23 Indirect private base classes in aggregates https://wg21.link/cwg2610 @@ -21504,7 +21504,7 @@ Chris Bowler d:cwg2611 CWG2611 5 August 2022 -DR +C++23 Missing parentheses in expansion of fold-expression could cause syntactic reinterpretation https://wg21.link/cwg2611 @@ -21516,7 +21516,7 @@ Richard Smith d:cwg2612 CWG2612 24 May 2022 -DR +C++23 Incorrect comment in example https://wg21.link/cwg2612 @@ -21528,7 +21528,7 @@ Jiang An d:cwg2613 CWG2613 15 February 2022 -DR +C++23 Incomplete definition of resumer https://wg21.link/cwg2613 @@ -21540,7 +21540,7 @@ Jim X d:cwg2614 CWG2614 27 October 2021 -DR +C++23 Unspecified results for class member access https://wg21.link/cwg2614 @@ -21552,7 +21552,7 @@ Andrey Erokhin d:cwg2615 CWG2615 17 August 2022 -accepted +C++23 Missing __has_cpp_attribute(assume) https://wg21.link/cwg2615 @@ -21564,7 +21564,7 @@ S. B. Tam d:cwg2616 CWG2616 24 August 2022 -DR +C++23 Imprecise restrictions on break and continue https://wg21.link/cwg2616 @@ -21576,7 +21576,7 @@ Jim X d:cwg2617 CWG2617 22 August 2022 -open +review Default template arguments for template members of non-template classes https://wg21.link/cwg2617 @@ -21588,7 +21588,7 @@ Mike Miller d:cwg2618 CWG2618 27 November 2021 -DR +C++23 Substitution during deduction should exclude exception specifications https://wg21.link/cwg2618 @@ -21600,7 +21600,7 @@ Christof Meerwald d:cwg2619 CWG2619 13 July 2022 -DR +C++23 Kind of initialization for a designated-initializer-list https://wg21.link/cwg2619 @@ -21624,7 +21624,7 @@ Jamie Schmeiser d:cwg2620 CWG2620 18 April 2019 -DR +C++23 Nonsensical disambiguation rule https://wg21.link/cwg2620 @@ -21636,7 +21636,7 @@ Krystian Stasiowski d:cwg2621 CWG2621 17 August 2022 -DR +C++23 Kind of lookup for using enum declarations https://wg21.link/cwg2621 @@ -21648,7 +21648,7 @@ Sean Baxter d:cwg2622 CWG2622 2 September 2022 -DR +C++23 Compounding types from function and pointer-to-member types https://wg21.link/cwg2622 @@ -21672,7 +21672,7 @@ Blacktea Hamburger d:cwg2624 CWG2624 22 August 2022 -DR +C++23 Array delete expression with no array cookie https://wg21.link/cwg2624 @@ -21684,7 +21684,7 @@ Blacktea Hamburger d:cwg2625 CWG2625 27 August 2022 -DR +C++23 Deletion of pointer to out-of-lifetime object https://wg21.link/cwg2625 @@ -21696,7 +21696,7 @@ Blacktea Hamburger d:cwg2626 CWG2626 10 September 2022 -DR +C++23 Rephrase ones' complement using base-2 representation https://wg21.link/cwg2626 @@ -21708,7 +21708,7 @@ Jim X d:cwg2627 CWG2627 13 August 2021 -DR +C++23 Bit-fields and narrowing conversions https://wg21.link/cwg2627 @@ -21720,7 +21720,7 @@ Tim Song d:cwg2628 CWG2628 11 September 2022 -open +DRWP Implicit deduction guides should propagate constraints https://wg21.link/cwg2628 @@ -21732,7 +21732,7 @@ Roy Jacobson d:cwg2629 CWG2629 7 September 2022 -DR +C++23 Variables of floating-point type as switch conditions https://wg21.link/cwg2629 @@ -21756,7 +21756,7 @@ Martin Sebor d:cwg2630 CWG2630 4 July 2022 -DR +C++23 Syntactic specification of class completeness https://wg21.link/cwg2630 @@ -21768,7 +21768,7 @@ Jim X d:cwg2631 CWG2631 16 September 2022 -DR +C++23 Immediate function evaluations in default arguments https://wg21.link/cwg2631 @@ -21780,7 +21780,7 @@ Aaron Ballman d:cwg2632 CWG2632 7 September 2022 -open +drafting 'user-declared' is not defined https://wg21.link/cwg2632 @@ -21804,7 +21804,7 @@ Jim X d:cwg2634 CWG2634 4 July 2022 -open +DRWP Avoid circularity in specification of scope for friend class declarations https://wg21.link/cwg2634 @@ -21816,7 +21816,7 @@ Jim X d:cwg2635 CWG2635 20 October 2022 -DR +C++23 Constrained structured bindings https://wg21.link/cwg2635 @@ -21828,7 +21828,7 @@ Corentin Jabot d:cwg2636 CWG2636 20 October 2022 -DR +C++23 Update Annex E based on Unicode 15.0 UAX #31 https://wg21.link/cwg2636 @@ -21840,7 +21840,7 @@ Steve Downey d:cwg2637 CWG2637 26 October 2022 -open +DRWP Injected-class-name as a simple-template-id https://wg21.link/cwg2637 @@ -21852,7 +21852,7 @@ Shafik Yaghmour d:cwg2638 CWG2638 26 October 2022 -open +DRWP Improve the example for initializing by initializer list https://wg21.link/cwg2638 @@ -21864,7 +21864,7 @@ Shafik Yaghmour d:cwg2639 CWG2639 3 November 2022 -accepted +C++23 new-lines after phase 1 https://wg21.link/cwg2639 @@ -21888,7 +21888,7 @@ John Spicer d:cwg2640 CWG2640 3 November 2022 -accepted +C++23 Allow more characters in an n-char sequence https://wg21.link/cwg2640 @@ -21900,7 +21900,7 @@ US d:cwg2641 CWG2641 7 November 2022 -DR +C++23 Redundant specification of value category of literals https://wg21.link/cwg2641 @@ -21912,7 +21912,7 @@ Andrey Erokhin d:cwg2642 CWG2642 3 November 2022 -DR +C++23 Inconsistent use of T and C https://wg21.link/cwg2642 @@ -21924,7 +21924,7 @@ US d:cwg2643 CWG2643 3 November 2022 -DR +C++23 Completing a pointer to array of unknown bound https://wg21.link/cwg2643 @@ -21936,7 +21936,7 @@ US d:cwg2644 CWG2644 3 November 2022 -DR +C++23 Incorrect comment in example https://wg21.link/cwg2644 @@ -21948,7 +21948,7 @@ US d:cwg2645 CWG2645 3 November 2022 -DR +C++23 Unused term "default argument promotions" https://wg21.link/cwg2645 @@ -21960,7 +21960,7 @@ US d:cwg2646 CWG2646 3 November 2022 -DR +C++23 Defaulted special member functions https://wg21.link/cwg2646 @@ -21972,7 +21972,7 @@ US d:cwg2647 CWG2647 3 November 2022 -DR +C++23 Fix for "needed for constant evaluation" https://wg21.link/cwg2647 @@ -21984,7 +21984,7 @@ US d:cwg2648 CWG2648 3 November 2022 -DR +C++23 Correspondence of surrogate call function and conversion function https://wg21.link/cwg2648 @@ -21996,7 +21996,7 @@ CA d:cwg2649 CWG2649 3 November 2022 -DR +C++23 Incorrect note about implicit conversion sequence https://wg21.link/cwg2649 @@ -22020,7 +22020,7 @@ Mike Miller d:cwg2650 CWG2650 3 November 2022 -DR +C++23 Incorrect example for ill-formed non-type template arguments https://wg21.link/cwg2650 @@ -22032,7 +22032,7 @@ US d:cwg2651 CWG2651 3 November 2022 -DR +C++23 Conversion function templates and "noexcept" https://wg21.link/cwg2651 @@ -22044,7 +22044,7 @@ US d:cwg2652 CWG2652 3 November 2022 -accepted +C++23 Overbroad definition of __STDCPP_BFLOAT16_T__ https://wg21.link/cwg2652 @@ -22056,7 +22056,7 @@ US d:cwg2653 CWG2653 3 November 2022 -accepted +C++23 Can an explicit object parameter have a default argument? https://wg21.link/cwg2653 @@ -22068,7 +22068,7 @@ GB d:cwg2654 CWG2654 3 November 2022 -DR +C++23 Un-deprecation of compound volatile assignments https://wg21.link/cwg2654 @@ -22077,341 +22077,3401 @@ https://wg21.link/cwg2654 US - -d:cwg266 -CWG266 -2 December 2000 +d:cwg2655 +CWG2655 +16 August 2022 NAD -No grammar sentence symbol -https://wg21.link/cwg266 +Instantiation of default arguments in lambda-expressions +https://wg21.link/cwg2655 -Hans Aberg +Tom Honermann - -d:cwg267 -CWG267 -4 December 2000 -open -Alignment requirement for new-expressions -https://wg21.link/cwg267 +d:cwg2656 +CWG2656 +11 November 2022 +drafting +Converting consteval lambda to function pointer in non-immediate context +https://wg21.link/cwg2656 -James Kuyper +Hubert Tong - -d:cwg268 -CWG268 -18 January 2001 -open -Macro name suppression in rescanned replacement text -https://wg21.link/cwg268 +d:cwg2657 +CWG2657 +10 November 2022 +DRWP +Cv-qualification adjustment when binding reference to temporary +https://wg21.link/cwg2657 -Bjarne Stroustrup +Brian Bi - -d:cwg269 -CWG269 -8 February 2001 -NAD -Order of initialization of multiply-defined static data members of class templates -https://wg21.link/cwg269 +d:cwg2658 +CWG2658 +4 December 2022 +C++23 +Trivial copying of unions in core constant expressions +https://wg21.link/cwg2658 -Andrei Iltchenko +Hubert Tong - -d:cwg27 -CWG27 -25 September 1997 -NAD -Overload ambiguities for builtin ?: prototypes -https://wg21.link/cwg27 +d:cwg2659 +CWG2659 +2 December 2022 +C++23 +Missing feature-test macro for lifetime extension in range-for loop +https://wg21.link/cwg2659 -Jason Merrill +CWG - -d:cwg270 -CWG270 -9 February 2001 -CD1 -Order of initialization of static data members of class templates -https://wg21.link/cwg270 - +d:cwg266 +CWG266 +2 December 2000 +NAD +No grammar sentence symbol +https://wg21.link/cwg266 + + + + +Hans Aberg +- +d:cwg2660 +CWG2660 +23 November 2022 +open +Confusing term "this parameter" +https://wg21.link/cwg2660 + + + + +Anoop Rana +- +d:cwg2661 +CWG2661 +7 October 2022 +DRWP +Missing disambiguation rule for pure-specifier vs. brace-or-equal-initializer +https://wg21.link/cwg2661 + + + + +Richard Smith +- +d:cwg2662 +CWG2662 +2 December 2022 +C++23 +Example for member access control vs. overload resolution +https://wg21.link/cwg2662 + + + + +Shafik Yaghmour +- +d:cwg2663 +CWG2663 +28 November 2022 +DRWP +Example for member redeclarations with using-declarations +https://wg21.link/cwg2663 + + + + +Shafik Yaghmour +- +d:cwg2664 +CWG2664 +5 December 2022 +C++23 +Deduction failure in CTAD for alias templates +https://wg21.link/cwg2664 + + + + +Christof Meerwald +- +d:cwg2665 +CWG2665 +6 December 2022 +NAD +Replacing a subobject with a complete object +https://wg21.link/cwg2665 + + + + +Richard Smith +- +d:cwg2666 +CWG2666 +17 October 2022 +open +Lifetime extension through static_cast +https://wg21.link/cwg2666 + + + + +Brian Bi +- +d:cwg2667 +CWG2667 +16 December 2022 +C++23 +Named module imports do not import macros +https://wg21.link/cwg2667 + + + + +Richard Smith +- +d:cwg2668 +CWG2668 +12 December 2022 +DRWP +co_await in a lambda-expression +https://wg21.link/cwg2668 + + + + +Jim X +- +d:cwg2669 +CWG2669 +18 December 2022 +open +Lifetime extension for aggregate initialization +https://wg21.link/cwg2669 + + + + +Ed Catmur +- +d:cwg267 +CWG267 +4 December 2000 +open +Alignment requirement for new-expressions +https://wg21.link/cwg267 + + + + +James Kuyper +- +d:cwg2670 +CWG2670 +21 December 2022 +open +Programs and translation units +https://wg21.link/cwg2670 + + + + +Gabriel dos Reis +- +d:cwg2671 +CWG2671 +18 November 2022 +open +friend named by a template-id +https://wg21.link/cwg2671 + + + + +Davis Herring +- +d:cwg2672 +CWG2672 +20220930 +DRWP +Lambda body SFINAE is still required, contrary to intent and note +https://wg21.link/cwg2672 + + + + +Richard Smith +- +d:cwg2673 +CWG2673 +20221230 +C++23 +User-declared spaceship vs. built-in operators +https://wg21.link/cwg2673 + + + + +Barry Revzin +- +d:cwg2674 +CWG2674 +11 January 2022 +C++23 +Prohibit explicit object parameters for constructors +https://wg21.link/cwg2674 + + + + +Erich Keane +- +d:cwg2675 +CWG2675 +6 December 2022 +open +start_lifetime_as, placement-new, and active union members +https://wg21.link/cwg2675 + + + + +Nina Ranns +- +d:cwg2676 +CWG2676 +6 December 2022 +open +Replacing a complete object having base subobjects +https://wg21.link/cwg2676 + + + + +Richard Smith +- +d:cwg2677 +CWG2677 +6 December 2022 +review +Replacing union subobjects +https://wg21.link/cwg2677 + + + + +Richard Smith +- +d:cwg2678 +CWG2678 +7 January 2023 +C++23 +std::source_location::current is unimplementable +https://wg21.link/cwg2678 + + + + +Richard Smith +- +d:cwg2679 +CWG2679 +7 January 2023 +open +Implicit conversion sequence with a null pointer constant +https://wg21.link/cwg2679 + + + + +Lénárd Szolnoki +- +d:cwg268 +CWG268 +18 January 2001 +open +Macro name suppression in rescanned replacement text +https://wg21.link/cwg268 + + + + +Bjarne Stroustrup +- +d:cwg2680 +CWG2680 +9 January 2023 +open +Class template argument deduction for aggregates with designated initializers +https://wg21.link/cwg2680 + + + + +Christof Meerwald +- +d:cwg2681 +CWG2681 +17 March 2020 +C++23 +Deducing member array type from string literal +https://wg21.link/cwg2681 + + + + +Jonathan Caves +- +d:cwg2682 +CWG2682 +11 January 2023 +C++23 +Templated function vs. function template +https://wg21.link/cwg2682 + + + + +Matthew House +- +d:cwg2683 +CWG2683 +11 January 2023 +DRWP +Default arguments for member functions of templated nested classes +https://wg21.link/cwg2683 + + + + +Matthew House +- +d:cwg2684 +CWG2684 +6 January 2023 +open +thread_local dynamic initialization +https://wg21.link/cwg2684 + + + + +Jason Merrill +- +d:cwg2685 +CWG2685 +14 July 2020 +C++23 +Aggregate CTAD, string, and brace elision +https://wg21.link/cwg2685 + + + + +Jason Merrill +- +d:cwg2686 +CWG2686 +15 October 2021 +open +Pack expansion into a non-pack parameter of a concept +https://wg21.link/cwg2686 + + + + +Michał Dominiak +- +d:cwg2687 +CWG2687 +16 January 2023 +C++23 +Calling an explicit object member function via an address-of-overload-set +https://wg21.link/cwg2687 + + + + +Matthew House +- +d:cwg2688 +CWG2688 +16 January 2023 +open +Calling explicit object member functions +https://wg21.link/cwg2688 + + + + +Matthew House +- +d:cwg2689 +CWG2689 +8 December 2022 +DRWP +Are cv-qualified std::nullptr_t fundamental types? +https://wg21.link/cwg2689 + + + + +Anoop Rana +- +d:cwg269 +CWG269 +8 February 2001 +NAD +Order of initialization of multiply-defined static data members of class templates +https://wg21.link/cwg269 + + + + +Andrei Iltchenko +- +d:cwg2690 +CWG2690 +20 January 2023 +C++23 +Semantics of defaulted move assignment operator for unions +https://wg21.link/cwg2690 + + + + +Cassio Neri +- +d:cwg2691 +CWG2691 +26 January 2023 +C++23 +hexadecimal-escape-sequence is too greedy +https://wg21.link/cwg2691 + + + + +Fraser Gordon +- +d:cwg2692 +CWG2692 +16 January 2023 +C++23 +Static and explicit object member functions with the same parameter-type-lists +https://wg21.link/cwg2692 + + + + +Matthew House +- +d:cwg2693 +CWG2693 +7 February 2023 +open +Escape sequences for the string-literal of #line +https://wg21.link/cwg2693 + + + + +CWG +- +d:cwg2694 +CWG2694 +7 February 2023 +open +string-literals of the _Pragma operator +https://wg21.link/cwg2694 + + + + +CWG +- +d:cwg2695 +CWG2695 +9 February 2023 +C++23 +Semantic ignorability of attributes +https://wg21.link/cwg2695 + + + + +Timur Doumler +- +d:cwg2696 +CWG2696 +9 February 2023 +dup +Relational comparisons of pointers to void +https://wg21.link/cwg2696 + + + + +CWG +- +d:cwg2697 +CWG2697 +11 February 2023 +DRWP +Deduction guides using abbreviated function syntax +https://wg21.link/cwg2697 + + + + +CWG +- +d:cwg2698 +CWG2698 +17 February 2023 +DRWP +Using extended integer types with z suffix +https://wg21.link/cwg2698 + + + + +Mike Miller +- +d:cwg2699 +CWG2699 +6 April 2020 +DRWP +Inconsistency of throw-expression specification +https://wg21.link/cwg2699 + + + + +Krystian Stasiowski +- +d:cwg27 +CWG27 +25 September 1997 +NAD +Overload ambiguities for builtin ?: prototypes +https://wg21.link/cwg27 + + + + +Jason Merrill +- +d:cwg270 +CWG270 +9 February 2001 +CD1 +Order of initialization of static data members of class templates +https://wg21.link/cwg270 + + + + +Jonathan H. Lundquist +- +d:cwg2700 +CWG2700 +13 February 2023 +DRWP +#error disallows existing implementation practice +https://wg21.link/cwg2700 + + + + +Richard Smith +- +d:cwg2701 +CWG2701 +20 November 2020 +open +Default arguments in multiple scopes / inheritance of array bounds in the same scope +https://wg21.link/cwg2701 + + + + +Richard Smith +- +d:cwg2702 +CWG2702 +13 February 2023 +open +Constant destruction of reference members +https://wg21.link/cwg2702 + + + + +Richard Smith +- +d:cwg2703 +CWG2703 +13 February 2023 +review +Three-way comparison requiring strong ordering for floating-point types, take 2 +https://wg21.link/cwg2703 + + + + +Richard Smith +- +d:cwg2704 +CWG2704 +11 November 2022 +open +Clarify meaning of "bind directly" +https://wg21.link/cwg2704 + + + + +Brian Bi +- +d:cwg2705 +CWG2705 +11 February 2023 +open +Accessing ambiguous subobjects +https://wg21.link/cwg2705 + + + + +Davis Herring +- +d:cwg2706 +CWG2706 +13 February 2023 +open +Repeated structured binding declarations +https://wg21.link/cwg2706 + + + + +Jim X +- +d:cwg2707 +CWG2707 +26 February 2020 +DRWP +Deduction guides cannot have a trailing requires-clause +https://wg21.link/cwg2707 + + + + +Richard Smith +- +d:cwg2708 +CWG2708 +14 March 2023 +DRWP +Parenthesized initialization of arrays +https://wg21.link/cwg2708 + + + + +Mike Miller +- +d:cwg2709 +CWG2709 +14 March 2023 +NAD +Parenthesized initialization of reference-to-aggregate +https://wg21.link/cwg2709 + + + + +Mike Miller +- +d:cwg271 +CWG271 +20 February 2001 +CD6 +Explicit instantiation and template argument deduction +https://wg21.link/cwg271 + + + + +John Spicer +- +d:cwg2710 +CWG2710 +23 March 2023 +DRWP +Loops in constant expressions +https://wg21.link/cwg2710 + + + + +Daniel Krügler +- +d:cwg2711 +CWG2711 +26 March 2023 +DRWP +Source for copy-initializing the exception object +https://wg21.link/cwg2711 + + + + +Brian Bi +- +d:cwg2712 +CWG2712 +24 March 2023 +DRWP +Simplify restrictions on built-in assignment operator candidates +https://wg21.link/cwg2712 + + + + +Brian Bi +- +d:cwg2713 +CWG2713 +6 April 2023 +DRWP +Initialization of reference-to-aggregate from designated initializer list +https://wg21.link/cwg2713 + + + + +Richard Smith +- +d:cwg2714 +CWG2714 +13 February 2017 +DRWP +Implicit deduction guides omit properties from the parameter-declaration-clause of a constructor +https://wg21.link/cwg2714 + + + + +Richard Smith +- +d:cwg2715 +CWG2715 +2 April 2023 +DRWP +"calling function" for parameter initialization may not exist +https://wg21.link/cwg2715 + + + + +Brian Bi +- +d:cwg2716 +CWG2716 +11 April 2023 +DRWP +Rule about self-or-base conversion is normatively redundant +https://wg21.link/cwg2716 + + + + +Brian Bi +- +d:cwg2717 +CWG2717 +11 April 2023 +DRWP +Pack expansion for alignment-specifier +https://wg21.link/cwg2717 + + + + +Jim X +- +d:cwg2718 +CWG2718 +9 April 2023 +DRWP +Type completeness for derived-to-base conversions +https://wg21.link/cwg2718 + + + + +Jim X +- +d:cwg2719 +CWG2719 +5 April 2023 +DRWP +Creating objects in misaligned storage +https://wg21.link/cwg2719 + + + + +Jiang An +- +d:cwg272 +CWG272 +22 February 2001 +CD1 +Explicit destructor invocation and qualified-ids +https://wg21.link/cwg272 + + + + +Mike Miller +- +d:cwg2720 +CWG2720 +29 March 2023 +DRWP +Template validity rules for templated entities and alias templates +https://wg21.link/cwg2720 + + + + +Richard Smith +- +d:cwg2721 +CWG2721 +23 March 2023 +DRWP +When exactly is storage reused? +https://wg21.link/cwg2721 + + + + +Richard Smith +- +d:cwg2722 +CWG2722 +24 April 2023 +DRWP +Temporary materialization conversion for noexcept operator +https://wg21.link/cwg2722 + + + + +Brian Bi +- +d:cwg2723 +CWG2723 +21 April 2023 +DRWP +Range of representable values for floating-point types +https://wg21.link/cwg2723 + + + + +Jiang An +- +d:cwg2724 +CWG2724 +7 April 2023 +DRWP +Clarify rounding for arithmetic right shift +https://wg21.link/cwg2724 + + + + +Jan Schultke +- +d:cwg2725 +CWG2725 +26 April 2023 +DRWP +Overload resolution for non-call of class member access +https://wg21.link/cwg2725 + + + + +Richard Smith +- +d:cwg2726 +CWG2726 +16 March 2023 +review +Alternative tokens appearing as attribute-tokens +https://wg21.link/cwg2726 + + + + +Jim X +- +d:cwg2727 +CWG2727 +4 May 2023 +open +Importing header units synthesized from source files +https://wg21.link/cwg2727 + + + + +Jim X +- +d:cwg2728 +CWG2728 +5 May 2023 +DR +Evaluation of conversions in a delete-expression +https://wg21.link/cwg2728 + + + + +Jiang An +- +d:cwg2729 +CWG2729 +6 February 2023 +DRWP +Meaning of new-type-id +https://wg21.link/cwg2729 + + + + +Jim X +- +d:cwg273 +CWG273 +10 March 2001 +CD1 +POD classes and operator&() +https://wg21.link/cwg273 + + + + +Andrei Iltchenko +- +d:cwg2730 +CWG2730 +11 May 2023 +open +Comparison templates on enumeration types +https://wg21.link/cwg2730 + + + + +Tobias Loew +- +d:cwg2731 +CWG2731 +11 May 2023 +open +List-initialization sequence with a user-defined conversion +https://wg21.link/cwg2731 + + + + +Brian Bi +- +d:cwg2732 +CWG2732 +25 May 2023 +DRWP +Can importable headers react to preprocessor state from point of import? +https://wg21.link/cwg2732 + + + + +Xu Chuanqi +- +d:cwg2733 +CWG2733 +25 May 2023 +DRWP +Applying [[maybe_unused]] to a label +https://wg21.link/cwg2733 + + + + +Barry Revzin +- +d:cwg2734 +CWG2734 +10 May 2023 +open +Immediate forward-declared function templates +https://wg21.link/cwg2734 + + + + +Corentin Jabot +- +d:cwg2735 +CWG2735 +23 March 2023 +open +List-initialization and conversions in overload resolution +https://wg21.link/cwg2735 + + + + +Jason Merrill +- +d:cwg2736 +CWG2736 +10 May 2023 +open +Standard layout class with empty base class also in first member +https://wg21.link/cwg2736 + + + + +Lénárd Szolnoki +- +d:cwg2737 +CWG2737 +23 May 2023 +review +Temporary lifetime extension for reference init-captures +https://wg21.link/cwg2737 + + + + +Tomasz Kamiński +- +d:cwg2738 +CWG2738 +22 May 2022 +review +"denotes a destructor" is missing specification +https://wg21.link/cwg2738 + + + + +Jim X +- +d:cwg2739 +CWG2739 +20 September 2022 +open +Nested requirement not a constant expression +https://wg21.link/cwg2739 + + + + +Barry Revzin +- +d:cwg274 +CWG274 +14 March 2001 +CD1 +Cv-qualification and char-alias access to out-of-lifetime objects +https://wg21.link/cwg274 + + + + +Mike Miller +- +d:cwg2740 +CWG2740 +10 February 2023 +open +Too many objects have constexpr-unknown type +https://wg21.link/cwg2740 + + + + +Richard Smith +- +d:cwg2741 +CWG2741 +1 June 2023 +open +Implicit conversion sequence from empty list to array of unknown bound +https://wg21.link/cwg2741 + + + + +Richard Smith +- +d:cwg2742 +CWG2742 +6 June 2023 +drafting +Guaranteed copy elision for brace-initialization from prvalue +https://wg21.link/cwg2742 + + + + +Jim X +- +d:cwg2743 +CWG2743 +5 June 2023 +open +Copying non-trivial objects nested within a union +https://wg21.link/cwg2743 + + + + +Jiang An +- +d:cwg2744 +CWG2744 +8 June 2023 +open +Multiple objects of the same type at the same address +https://wg21.link/cwg2744 + + + + +Chris Hallock +- +d:cwg2745 +CWG2745 +13 December 2022 +DRWP +Dependent odr-use in generic lambdas +https://wg21.link/cwg2745 + + + + +Shafik Yaghmour +- +d:cwg2746 +CWG2746 +13 December 2022 +DRWP +Checking of default template arguments +https://wg21.link/cwg2746 + + + + +Shafik Yaghmour +- +d:cwg2747 +CWG2747 +14 September 2021 +DRWP +Cannot depend on an already-deleted splice +https://wg21.link/cwg2747 + + + + +Jim X +- +d:cwg2748 +CWG2748 +13 June 2023 +DRWP +Accessing static data members via null pointer +https://wg21.link/cwg2748 + + + + +Tomasz Kamiński +- +d:cwg2749 +CWG2749 +12 March 2023 +DRWP +Treatment of "pointer to void" for relational comparisons +https://wg21.link/cwg2749 + + + + +lprv +- +d:cwg275 +CWG275 +15 February 2001 +CD1 +Explicit instantiation/specialization and using-directives +https://wg21.link/cwg275 + + + + +John Spicer +- +d:cwg2750 +CWG2750 +16 June 2023 +DRWP +construct_at without constructor call +https://wg21.link/cwg2750 + + + + +CWG +- +d:cwg2751 +CWG2751 +10 June 2020 +NAD +Order of destruction for parameters for operator functions +https://wg21.link/cwg2751 + + + + +Richard Smith +- +d:cwg2752 +CWG2752 +29 June 2023 +open +Excess-precision floating-point literals +https://wg21.link/cwg2752 + + + + +Peter Dimov +- +d:cwg2753 +CWG2753 +29 June 2023 +DRWP +Storage reuse for string literal objects and backing arrays +https://wg21.link/cwg2753 + + + + +Brian Bi +- +d:cwg2754 +CWG2754 +23 June 2023 +DRWP +Using *this in explicit object member functions that are coroutines +https://wg21.link/cwg2754 + + + + +Christof Meerwald +- +d:cwg2755 +CWG2755 +28 June 2023 +DRWP +Incorrect wording applied by P2738R1 +https://wg21.link/cwg2755 + + + + +Jens Maurer +- +d:cwg2756 +CWG2756 +20 June 2023 +review +Completion of initialization by delegating constructor +https://wg21.link/cwg2756 + + + + +Brian Bi +- +d:cwg2757 +CWG2757 +14 June 2023 +review +Deleting or deallocating storage of an object during its construction +https://wg21.link/cwg2757 + + + + +Jiang An +- +d:cwg2758 +CWG2758 +12 June 2023 +DRWP +What is "access and ambiguity control"? +https://wg21.link/cwg2758 + + + + +CWG +- +d:cwg2759 +CWG2759 +10 November 2020 +DRWP +[[no_unique_address] and common initial sequence +https://wg21.link/cwg2759 + + + + +Richard Smith +- +d:cwg276 +CWG276 +28 March 2001 +CD1 +Order of destruction of parameters and temporaries +https://wg21.link/cwg276 + + + + +James Kanze +- +d:cwg2760 +CWG2760 +8 July 2023 +DRWP +Defaulted constructor that is an immediate function +https://wg21.link/cwg2760 + + + + +Corentin Jabot +- +d:cwg2761 +CWG2761 +11 July 2023 +DRWP +Implicitly invoking the deleted destructor of an anonymous union member +https://wg21.link/cwg2761 + + + + +Corentin Jabot +- +d:cwg2762 +CWG2762 +11 July 2023 +DRWP +Type of implicit object parameter +https://wg21.link/cwg2762 + + + + +Jim X +- +d:cwg2763 +CWG2763 +10 July 2023 +DRWP +Ignorability of [[noreturn]] during constant evaluation +https://wg21.link/cwg2763 + + + + +Jiang An +- +d:cwg2764 +CWG2764 +5 July 2023 +DRWP +Use of placeholders affecting name mangling +https://wg21.link/cwg2764 + + + + +Hubert Tong +- +d:cwg2765 +CWG2765 +14 July 2023 +open +Address comparisons between potentially non-unique objects during constant evaluation +https://wg21.link/cwg2765 + + + + +CWG +- +d:cwg2766 +CWG2766 +15 July 2023 +open +Repeated evaluation of a string-literal may yield different objects +https://wg21.link/cwg2766 + + + + +Balog Pal +- +d:cwg2767 +CWG2767 +6 July 2023 +open +Non-defining declarations of anonymous unions +https://wg21.link/cwg2767 + + + + +Hubert Tong +- +d:cwg2768 +CWG2768 +6 July 2023 +DRWP +Assignment to enumeration variable with a braced-init-list +https://wg21.link/cwg2768 + + + + +Shafik Yaghmour +- +d:cwg2769 +CWG2769 +14 July 2023 +open +Substitution into template parameters and default template arguments should be interleaved +https://wg21.link/cwg2769 + + + + +Richard Smith +- +d:cwg277 +CWG277 +5 April 2001 +CD1 +Zero-initialization of pointers +https://wg21.link/cwg277 + + + + +Andrew Sawyer +- +d:cwg2770 +CWG2770 +14 July 2023 +open +Trailing requires-clause can refer to function parameters before they are substituted into +https://wg21.link/cwg2770 + + + + +Richard Smith +- +d:cwg2771 +CWG2771 +16 July 2023 +DRWP +Transformation for unqualified-ids in address operator +https://wg21.link/cwg2771 + + + + +Jim X +- +d:cwg2772 +CWG2772 +15 July 2023 +DRWP +Missing Annex C entry for linkage effects of linkage-specification +https://wg21.link/cwg2772 + + + + +Hubert Tong +- +d:cwg2773 +CWG2773 +16 July 2023 +open +Naming anonymous union members as class members +https://wg21.link/cwg2773 + + + + +Hubert Tong +- +d:cwg2774 +CWG2774 +17 July 2023 +open +Value-dependence of requires-expressions +https://wg21.link/cwg2774 + + + + +Christof Meerwald +- +d:cwg2775 +CWG2775 +20230531 +DRWP +Unclear argument type for copy of exception object +https://wg21.link/cwg2775 + + + + +Jiang An +- +d:cwg2776 +CWG2776 +27 July 2023 +open +Substitution failure and implementation limits +https://wg21.link/cwg2776 + + + + +Corentin Jabot +- +d:cwg2777 +CWG2777 +26 July 2023 +DRWP +Type of id-expression denoting a template parameter object +https://wg21.link/cwg2777 + + + + +Jim X +- +d:cwg2778 +CWG2778 +27 July 2023 +review +Trivial destructor does not imply constant destruction +https://wg21.link/cwg2778 + + + + +Jiang An +- +d:cwg2779 +CWG2779 +28 March 2023 +open +Restrictions on the ordinary literal encoding +https://wg21.link/cwg2779 + + + + +Jim X +- +d:cwg278 +CWG278 +12 April 2000 +NAD +External linkage and nameless entities +https://wg21.link/cwg278 + + + + +Daveed Vandevoorde +- +d:cwg2780 +CWG2780 +7 August 2023 +DRWP +reinterpret_cast to reference to function types +https://wg21.link/cwg2780 + + + + +Lauri Vasama +- +d:cwg2781 +CWG2781 +19 August 2023 +open +Unclear recursion in the one-definition rule +https://wg21.link/cwg2781 + + + + +Johannes Schaub +- +d:cwg2782 +CWG2782 +20 July 2023 +open +Treatment of closure types in the one-definition rule +https://wg21.link/cwg2782 + + + + +Brian Bi +- +d:cwg2783 +CWG2783 +21 August 2023 +DRWP +Handling of deduction guides in global-module-fragment +https://wg21.link/cwg2783 + + + + +Daniela Engert +- +d:cwg2784 +CWG2784 +21 August 2023 +open +Unclear definition of member-designator for offsetof +https://wg21.link/cwg2784 + + + + +Corentin Jabot +- +d:cwg2785 +CWG2785 +17 July 2023 +DRWP +Type-dependence of requires-expression +https://wg21.link/cwg2785 + + + + +CWG +- +d:cwg2786 +CWG2786 +23 August 2023 +open +Comparing pointers to complete objects +https://wg21.link/cwg2786 + + + + +Alisdair Meredith +- +d:cwg2787 +CWG2787 +8 August 2023 +open +Kind of explicit object copy/move assignment function +https://wg21.link/cwg2787 + + + + +Corentin Jabot +- +d:cwg2788 +CWG2788 +9 August 2023 +open +Correspondence and redeclarations +https://wg21.link/cwg2788 + + + + +Corentin Jabot +- +d:cwg2789 +CWG2789 +8 August 2023 +DRWP +Overload resolution with implicit and explicit object member functions +https://wg21.link/cwg2789 + + + + +Corentin Jabot +- +d:cwg279 +CWG279 +4 April 2001 +CD6 +Correspondence of "names for linkage purposes" +https://wg21.link/cwg279 + + + + +Daveed Vandevoorde +- +d:cwg2790 +CWG2790 +18 August 2023 +open +Aggregate initialization and user-defined conversion sequence +https://wg21.link/cwg2790 + + + + +Johannes Schaub +- +d:cwg2791 +CWG2791 +23 August 2023 +DRWP +Unclear phrasing about "returning to the caller" +https://wg21.link/cwg2791 + + + + +Jan Schultke +- +d:cwg2792 +CWG2792 +20230830 +DRWP +Clean up specification of noexcept operator +https://wg21.link/cwg2792 + + + + +Jan Schultke +- +d:cwg2793 +CWG2793 +20230831 +DRWP +Block-scope declaration conflicting with parameter name +https://wg21.link/cwg2793 + + + + +Jason Merrill +- +d:cwg2794 +CWG2794 +19 April 2023 +open +Uniqueness of lambdas in alias templates +https://wg21.link/cwg2794 + + + + +Ilya Biryukov +- +d:cwg2795 +CWG2795 +4 September 2023 +DRWP +Overlapping empty subobjects with different cv-qualification +https://wg21.link/cwg2795 + + + + +Jonathan Caves +- +d:cwg2796 +CWG2796 +14 September 2023 +DRWP +Function pointer conversions for relational operators +https://wg21.link/cwg2796 + + + + +Alisdair Meredith +- +d:cwg2797 +CWG2797 +17 September 2023 +review +Meaning of "corresponds" for rewritten operator candidates +https://wg21.link/cwg2797 + + + + +Corentin Jabot +- +d:cwg2798 +CWG2798 +12 September 2023 +DRWP +Manifestly constant evaluation of the static_assert message +https://wg21.link/cwg2798 + + + + +Jason Merrill +- +d:cwg2799 +CWG2799 +1 September 2017 +drafting +Inheriting default constructors +https://wg21.link/cwg2799 + + + + +Hubert Tong +- +d:cwg28 +CWG28 +19 October 1997 +CD1 +'exit', 'signal' and static object destruction +https://wg21.link/cwg28 + + + + +Martin J. O'Riordan +- +d:cwg280 +CWG280 +16 April 2001 +CD1 +Access and surrogate call functions +https://wg21.link/cwg280 + + + + +Andrei Iltchenko +- +d:cwg2800 +CWG2800 +22 September 2023 +review +Instantiating constexpr variables for potential constant evaluation +https://wg21.link/cwg2800 + + + + +Shafik Yaghmour +- +d:cwg2801 +CWG2801 +18 September 2023 +DRWP +Reference binding with reference-related types +https://wg21.link/cwg2801 + + + + +Brian Bi +- +d:cwg2802 +CWG2802 +26 September 2023 +open +Constrained auto and redeclaration with non-abbreviated syntax +https://wg21.link/cwg2802 + + + + +Richard Smith +- +d:cwg2803 +CWG2803 +14 June 2023 +DRWP +Overload resolution for reference binding of similar types +https://wg21.link/cwg2803 + + + + +Brian Bi +- +d:cwg2804 +CWG2804 +13 October 2023 +open +Lookup for determining rewrite targets +https://wg21.link/cwg2804 + + + + +Richard Smith +- +d:cwg2805 +CWG2805 +12 October 2023 +open +Underspecified selection of deallocation function +https://wg21.link/cwg2805 + + + + +Lénárd Szolnoki +- +d:cwg2806 +CWG2806 +10 October 2023 +DRWP +Make a type-requirement a type-only context +https://wg21.link/cwg2806 + + + + +Barry Revzin +- +d:cwg2807 +CWG2807 +7 September 2023 +DRWP +Destructors declared consteval +https://wg21.link/cwg2807 + + + + +Corentin Jabot +- +d:cwg2808 +CWG2808 +21 September 2023 +review +Explicit specialization of defaulted special member function +https://wg21.link/cwg2808 + + + + +Richard Smith +- +d:cwg2809 +CWG2809 +27 September 2023 +DRWP +An implicit definition does not redeclare a function +https://wg21.link/cwg2809 + + + + +Brian Bi +- +d:cwg281 +CWG281 +24 April 2001 +CD1 +inline specifier in friend declarations +https://wg21.link/cwg281 + + + + +John Spicer +- +d:cwg2810 +CWG2810 +23 January 2022 +DRWP +Requiring the absence of diagnostics for templates +https://wg21.link/cwg2810 + + + + +Andrey Erokhin +- +d:cwg2811 +CWG2811 +12 October 2023 +DRWP +Clarify "use" of main +https://wg21.link/cwg2811 + + + + +Jan Schultke +- +d:cwg2812 +CWG2812 +18 October 2023 +open +Allocation with explicit alignment +https://wg21.link/cwg2812 + + + + +Tim Song +- +d:cwg2813 +CWG2813 +28 August 2023 +DRWP +Class member access with prvalues +https://wg21.link/cwg2813 + + + + +Barry Revzin +- +d:cwg2814 +CWG2814 +20 October 2023 +NAD +Alignment requirement of incomplete class type +https://wg21.link/cwg2814 + + + + +Janet Cobb +- +d:cwg2815 +CWG2815 +5 October 2023 +drafting +Overload resolution for references/pointers to noexcept functions +https://wg21.link/cwg2815 + + + + +Brian Bi +- +d:cwg2816 +CWG2816 +26 April 2023 +review +Unclear phrasing "may assume ... eventually" +https://wg21.link/cwg2816 + + + + +Jiang An +- +d:cwg2817 +CWG2817 +23 February 2023 +open +sizeof(abstract class) is underspecified +https://wg21.link/cwg2817 + + + + +Jiang An +- +d:cwg2818 +CWG2818 +18 January 2023 +DR +Use of predefined reserved identifiers +https://wg21.link/cwg2818 + + + + +Jiang An +- +d:cwg2819 +CWG2819 +19 October 2023 +accepted +Cast from null pointer value in a constant expression +https://wg21.link/cwg2819 + + + + +Jason Merrill +- +d:cwg282 +CWG282 +1 May 2001 +open +Namespace for extended_type_info +https://wg21.link/cwg282 + + + + +Jens Maurer +- +d:cwg2820 +CWG2820 +20231031 +DRWP +Value-initialization and default constructors +https://wg21.link/cwg2820 + + + + +Shafik Yaghmour +- +d:cwg2821 +CWG2821 +24 July 2023 +review +Lifetime, zero-initialization, and dynamic initialization +https://wg21.link/cwg2821 + + + + +Jan Schultke +- +d:cwg2822 +CWG2822 +6 November 2023 +DRWP +Side-effect-free pointer zap +https://wg21.link/cwg2822 + + + + +Davis Herring +- +d:cwg2823 +CWG2823 +6 November 2023 +DRWP +Implicit undefined behavior when dereferencing pointers +https://wg21.link/cwg2823 + + + + +CWG +- +d:cwg2824 +CWG2824 +6 November 2023 +DRWP +Copy-initialization of arrays +https://wg21.link/cwg2824 + + + + +Anoop Rana +- +d:cwg2825 +CWG2825 +8 November 2023 +DRWP +Range-based for statement using a braced-init-list +https://wg21.link/cwg2825 + + + + +Arthur O'Dwyer +- +d:cwg2826 +CWG2826 +16 December 2022 +drafting +Missing definition of "temporary expression" +https://wg21.link/cwg2826 + + + + +Brian Bi +- +d:cwg2827 +CWG2827 +12 September 2021 +review +Representation of unsigned integral types +https://wg21.link/cwg2827 + + + + +David Detweiler +- +d:cwg2828 +CWG2828 +21 March 2022 +DRWP +Ambiguous interpretation of C-style cast +https://wg21.link/cwg2828 + + + + +Jim X +- +d:cwg2829 +CWG2829 +13 March 2020 +open +Redundant case in restricting user-defined conversion sequences +https://wg21.link/cwg2829 + + + + +Krystian Stasiowski +- +d:cwg283 +CWG283 +1 May 2001 +CD1 +Template type-parameters are not syntactically type-names +https://wg21.link/cwg283 + + + + +Clark Nelson +- +d:cwg2830 +CWG2830 +19 November 2019 +DRWP +Top-level cv-qualification should be ignored for list-initialization +https://wg21.link/cwg2830 + + + + +Krystian Stasiowski +- +d:cwg2831 +CWG2831 +13 April 2020 +DRWP +Non-templated function definitions and requires-clauses +https://wg21.link/cwg2831 + + + + +Krystian Stasiowski +- +d:cwg2832 +CWG2832 +9 November 2023 +open +Invented temporary variables and temporary objects +https://wg21.link/cwg2832 + + + + +Thomas Köppe +- +d:cwg2833 +CWG2833 +1 December 2023 +review +Evaluation of odr-use +https://wg21.link/cwg2833 + + + + +Brian Bi +- +d:cwg2834 +CWG2834 +2 December 2023 +review +Partial ordering and explicit object parameters +https://wg21.link/cwg2834 + + + + +Jason Merrill +- +d:cwg2835 +CWG2835 +20231130 +open +Name-independent declarations +https://wg21.link/cwg2835 + + + + +Jakub Jelínek +- +d:cwg2836 +CWG2836 +20 November 2023 +DR +Conversion rank of long double and extended floating-point types +https://wg21.link/cwg2836 + + + + +Joshua Cranmer +- +d:cwg2837 +CWG2837 +29 November 2023 +open +Instantiating and inheriting by-value copy constructors +https://wg21.link/cwg2837 + + + + +Brian Bi +- +d:cwg2838 +CWG2838 +20231130 +open +Declaration conflicts in lambda-expressions +https://wg21.link/cwg2838 + + + + +Jakub Jelínek +- +d:cwg2839 +CWG2839 +7 December 2023 +open +Explicit destruction of base classes +https://wg21.link/cwg2839 + + + + +Jiang An +- +d:cwg284 +CWG284 +1 May 2001 +CD1 +qualified-ids in class declarations +https://wg21.link/cwg284 + + + + +Mike Miller +- +d:cwg2840 +CWG2840 +20230831 +open +Missing requirements for fundamental alignments +https://wg21.link/cwg2840 + + + + +Jiang An +- +d:cwg2841 +CWG2841 +14 December 2023 +open +When do const objects start being const? +https://wg21.link/cwg2841 + + + + +Tom Honermann +- +d:cwg2842 +CWG2842 +10 December 2022 +open +Preferring an initializer_list over a single value +https://wg21.link/cwg2842 + + + + +Jason Merrill +- +d:cwg2843 +CWG2843 +5 January 2024 +review +Undated reference to Unicode makes C++ a moving target +https://wg21.link/cwg2843 + + + + +Jonathan Wakely +- +d:cwg2844 +CWG2844 +14 July 2023 +open +Enumerating a finite set of built-in candidates +https://wg21.link/cwg2844 + + + + +Brian Bi +- +d:cwg2845 +CWG2845 +29 December 2023 +DRWP +Make the closure type of a captureless lambda a structural type +https://wg21.link/cwg2845 + + + + +Barry Revzin +- +d:cwg2846 +CWG2846 +28 January 2024 +DRWP +Out-of-class definitions of explicit object member functions +https://wg21.link/cwg2846 + + + + +Krystian Stasiowski +- +d:cwg2847 +CWG2847 +15 December 2023 +review +Constrained explicit specializations of function templates at class scope +https://wg21.link/cwg2847 + + + + +Krystian Stasiowski +- +d:cwg2848 +CWG2848 +15 January 2024 +DRWP +Omitting an empty template argument list for explicit instantiation +https://wg21.link/cwg2848 + + + + +Anoop Rana +- +d:cwg2849 +CWG2849 +20 January 2024 +DRWP +Parameter objects are not temporary objects +https://wg21.link/cwg2849 + + + + +Brian Bi +- +d:cwg285 +CWG285 +1 May 2001 +NAD +Identifying a function template being specialized +https://wg21.link/cwg285 + + + + +Erwin Unruh +- +d:cwg2850 +CWG2850 +3 February 2024 +DRWP +Unclear storage duration for function parameter objects +https://wg21.link/cwg2850 + + + + +Brian Bi +- +d:cwg2851 +CWG2851 +3 November 2023 +DRWP +Allow floating-point conversions in converted constant expressions +https://wg21.link/cwg2851 + + + + +Brian Bi +- +d:cwg2852 +CWG2852 +25 October 2023 +open +Complete-class contexts and class-scope lambdas +https://wg21.link/cwg2852 + + + + +Richard Smith +- +d:cwg2853 +CWG2853 +3 February 2024 +DRWP +Pointer arithmetic with pointer to hypothetical element +https://wg21.link/cwg2853 + + + + +Jim X +- +d:cwg2854 +CWG2854 +22 January 2024 +DRWP +Storage duration of exception objects +https://wg21.link/cwg2854 + + + + +Jiang An +- +d:cwg2855 +CWG2855 +12 December 2023 +DRWP +Undefined behavior in postfix increment +https://wg21.link/cwg2855 + + + + +Lénárd Szolnoki +- +d:cwg2856 +CWG2856 +9 January 2024 +DRWP +Copy-list-initialization with explicit default constructors +https://wg21.link/cwg2856 + + + + +Anoop Rana +- +d:cwg2857 +CWG2857 +8 February 2024 +DRWP +Argument-dependent lookup with incomplete class types +https://wg21.link/cwg2857 + + + + +Lewis Baker +- +d:cwg2858 +CWG2858 +6 February 2024 +accepted +Declarative nested-name-specifiers and pack-index-specifiers +https://wg21.link/cwg2858 + + + + +Krystian Stasiowski +- +d:cwg2859 +CWG2859 +9 February 2024 +DR +Value-initialization with multiple default constructors +https://wg21.link/cwg2859 + + + + +Brian Bi +- +d:cwg286 +CWG286 +9 May 2001 +CD1 +Incorrect example in partial specialization +https://wg21.link/cwg286 + + + + +Martin Sebor +- +d:cwg2860 +CWG2860 +21 February 2024 +dup +Remove and fix the term "vacuous initialization" +https://wg21.link/cwg2860 + + + + +Jiang An +- +d:cwg2861 +CWG2861 +6 February 2024 +DR +dynamic_cast on bad pointer value +https://wg21.link/cwg2861 + + + + +Jim X +- +d:cwg2862 +CWG2862 +21 February 2024 +drafting +Unclear boundaries of template declarations +https://wg21.link/cwg2862 + + + + +Jan Schultke +- +d:cwg2863 +CWG2863 +24 February 2024 +drafting +Unclear synchronization requirements for object lifetime rules +https://wg21.link/cwg2863 + + + + +Richard Smith +- +d:cwg2864 +CWG2864 +4 November 2023 +DR +Narrowing floating-point conversions +https://wg21.link/cwg2864 + + + + +Brian Bi +- +d:cwg2865 +CWG2865 +14 January 2024 +DR +Regression on result of conditional operator +https://wg21.link/cwg2865 + + + + +Christof Meerwald +- +d:cwg2866 +CWG2866 +12 November 2023 +open +Observing the effects of [[no_unique_address]] +https://wg21.link/cwg2866 + + + + +Brian Bi +- +d:cwg2867 +CWG2867 +3 February 2023 +DR +Order of initialization for structured bindings +https://wg21.link/cwg2867 + + + + +Richard Smith +- +d:cwg2868 +CWG2868 +16 February 2018 +open +Self-references in trivially copyable objects as function return values +https://wg21.link/cwg2868 + + + + +Richard Smith +- +d:cwg2869 +CWG2869 +14 March 2024 +DR +this in local classes +https://wg21.link/cwg2869 + + + + +Richard Smith +- +d:cwg287 +CWG287 +17 May 2001 +drafting +Order dependencies in template instantiation +https://wg21.link/cwg287 + + + + +Martin Sebor +- +d:cwg2870 +CWG2870 +9 March 2024 +DR +Combining absent encoding-prefixes +https://wg21.link/cwg2870 + + + + +Jan Schultke +- +d:cwg2871 +CWG2871 +3 March 2024 +DR +User-declared constructor templates inhibiting default constructors +https://wg21.link/cwg2871 + + + + +Jim X +- +d:cwg2872 +CWG2872 +8 March 2024 +DR +Linkage and unclear "can be referred to" +https://wg21.link/cwg2872 + + + + +Brian Bi +- +d:cwg2873 +CWG2873 +16 March 2024 +open +Taking the address of a function involving template argument deduction +https://wg21.link/cwg2873 + + + + +Anoop Rana +- +d:cwg2874 +CWG2874 +19 March 2024 +DR +Qualified declarations of partial specializations +https://wg21.link/cwg2874 + + + + +Krystian Stasiowski +- +d:cwg2875 +CWG2875 +21 March 2024 +review +Missing support for round-tripping null pointer values through indirection/address operators +https://wg21.link/cwg2875 + + + + +Richard Smith +- +d:cwg2876 +CWG2876 +22 March 2024 +accepted +Disambiguation of T x = delete("text") +https://wg21.link/cwg2876 + + + + +Richard Smith +- +d:cwg2877 +CWG2877 +7 April 2024 +DR +Type-only lookup for using-enum-declarator +https://wg21.link/cwg2877 + + + + +Richard Smith +- +d:cwg2878 +CWG2878 +20 March 2024 +open +C-style casts to reference types +https://wg21.link/cwg2878 + + + + +Hubert Tong +- +d:cwg2879 +CWG2879 +15 April 2024 +drafting +Undesired outcomes with const_cast +https://wg21.link/cwg2879 + + + + +Brian Bi +- +d:cwg288 +CWG288 +19 May 2001 +CD1 +Misuse of "static type" in describing pointers +https://wg21.link/cwg288 + + + + +James Kuyper +- +d:cwg2880 +CWG2880 +7 March 2024 +open +Accessibility check for destructor of incomplete class type +https://wg21.link/cwg2880 + + + + +Alisdair Meredith +- +d:cwg2881 +CWG2881 +19 April 2024 +DR +Type restrictions for the explicit object parameter of a lambda +https://wg21.link/cwg2881 + + + + +Richard Smith +- +d:cwg2882 +CWG2882 +24 April 2024 +DR +Unclear treatment of conversion to void +https://wg21.link/cwg2882 + + + + +Richard Smith +- +d:cwg2883 +CWG2883 +20 March 2024 +DR +Definition of "odr-usable" ignores lambda scopes +https://wg21.link/cwg2883 + + + + +Hubert Tong +- +d:cwg2884 +CWG2884 +19 March 2024 +dup +Qualified declarations of partial specializations +https://wg21.link/cwg2884 + + + + +Krystian Stasiowski +- +d:cwg2885 +CWG2885 +26 November 2022 +review +Non-eligible trivial default constructors +https://wg21.link/cwg2885 + + + + +Roy Jacobson +- +d:cwg2886 +CWG2886 +27 April 2024 +DR +Temporaries and trivial potentially-throwing special member functions +https://wg21.link/cwg2886 + + + + +Jiang An +- +d:cwg2887 +CWG2887 +18 April 2024 +DR +Missing compatibility entries for xvalues +https://wg21.link/cwg2887 + + +Jiang An +- +d:cwg2888 +CWG2888 +20240430 +review +Missing cases for reference and array types for argument-dependent lookup +https://wg21.link/cwg2888 -Jonathan H. Lundquist + + + +Lewis Baker - -d:cwg271 -CWG271 -20 February 2001 -CD6 -Explicit instantiation and template argument deduction -https://wg21.link/cwg271 +d:cwg2889 +CWG2889 +3 May 2024 +open +Requiring an accessible destructor for destroying operator delete +https://wg21.link/cwg2889 -John Spicer +Lauri Vasama - -d:cwg272 -CWG272 -22 February 2001 +d:cwg289 +CWG289 +25 May 2001 CD1 -Explicit destructor invocation and qualified-ids -https://wg21.link/cwg272 +Incomplete list of contexts requiring a complete type +https://wg21.link/cwg289 Mike Miller - -d:cwg273 -CWG273 -10 March 2001 -CD1 -POD classes and operator&() -https://wg21.link/cwg273 +d:cwg2890 +CWG2890 +8 March 2024 +review +Defining members of local classes +https://wg21.link/cwg2890 -Andrei Iltchenko +Brian Bi - -d:cwg274 -CWG274 -14 March 2001 -CD1 -Cv-qualification and char-alias access to out-of-lifetime objects -https://wg21.link/cwg274 +d:cwg2891 +CWG2891 +17 May 2024 +DR +Normative status of implementation limits +https://wg21.link/cwg2891 -Mike Miller +ISO/CS - -d:cwg275 -CWG275 -15 February 2001 -CD1 -Explicit instantiation/specialization and using-directives -https://wg21.link/cwg275 +d:cwg2892 +CWG2892 +6 May 2024 +DR +Unclear usual arithmetic conversions +https://wg21.link/cwg2892 -John Spicer +Lauri Vasama - -d:cwg276 -CWG276 -28 March 2001 -CD1 -Order of destruction of parameters and temporaries -https://wg21.link/cwg276 +d:cwg2893 +CWG2893 +9 May 2024 +NAD +Instantiations in discarded if constexpr substatements +https://wg21.link/cwg2893 -James Kanze +Jan Schultke - -d:cwg277 -CWG277 -5 April 2001 -CD1 -Zero-initialization of pointers -https://wg21.link/cwg277 +d:cwg2894 +CWG2894 +14 May 2024 +review +Functional casts create prvalues of reference type +https://wg21.link/cwg2894 -Andrew Sawyer +Jan Schultke - -d:cwg278 -CWG278 -12 April 2000 -NAD -External linkage and nameless entities -https://wg21.link/cwg278 +d:cwg2895 +CWG2895 +29 May 2024 +DR +Initialization should ignore the destination type's cv-qualification +https://wg21.link/cwg2895 -Daveed Vandevoorde +Brian Bi - -d:cwg279 -CWG279 -4 April 2001 -CD6 -Correspondence of "names for linkage purposes" -https://wg21.link/cwg279 +d:cwg2896 +CWG2896 +15 May 2024 +review +Template argument deduction involving exception specifications +https://wg21.link/cwg2896 -Daveed Vandevoorde +Krystian Stasiowski - -d:cwg28 -CWG28 -19 October 1997 -CD1 -'exit', 'signal' and static object destruction -https://wg21.link/cwg28 +d:cwg2897 +CWG2897 +20240530 +open +Copying potentially-overlapping union subobjects +https://wg21.link/cwg2897 -Martin J. O'Riordan +Jiang An - -d:cwg280 -CWG280 -16 April 2001 -CD1 -Access and surrogate call functions -https://wg21.link/cwg280 +d:cwg2898 +CWG2898 +20240530 +open +Clarify implicit conversion sequence from cv T to T +https://wg21.link/cwg2898 -Andrei Iltchenko +Brian Bi - -d:cwg281 -CWG281 -24 April 2001 +d:cwg2899 +CWG2899 +5 June 2024 +open +Bad value representations should cause undefined behavior +https://wg21.link/cwg2899 + + + + +Jan Schultke +- +d:cwg29 +CWG29 +19 March 1998 CD1 -inline specifier in friend declarations -https://wg21.link/cwg281 +Linkage of locally declared functions +https://wg21.link/cwg29 -John Spicer +Mike Ball - -d:cwg282 -CWG282 -1 May 2001 +d:cwg290 +CWG290 +12 June 2001 +NAD +Should memcpy be allowed into a POD with a const member? +https://wg21.link/cwg290 + + + + +Garry Lancaster +- +d:cwg2900 +CWG2900 +5 June 2024 open -Namespace for extended_type_info -https://wg21.link/cwg282 +Deduction of non-type template arguments with placeholder types +https://wg21.link/cwg2900 -Jens Maurer +Hubert Tong - -d:cwg283 -CWG283 -1 May 2001 -CD1 -Template type-parameters are not syntactically type-names -https://wg21.link/cwg283 +d:cwg2901 +CWG2901 +14 June 2024 +open +Unclear semantics for near-match aliased access +https://wg21.link/cwg2901 -Clark Nelson +Jan Schultke - -d:cwg284 -CWG284 -1 May 2001 -CD1 -qualified-ids in class declarations -https://wg21.link/cwg284 +d:cwg2902 +CWG2902 +14 June 2024 +review +Implicit this transformation outside of permitted contexts +https://wg21.link/cwg2902 -Mike Miller +Vincent X - -d:cwg285 -CWG285 -1 May 2001 -NAD -Identifying a function template being specialized -https://wg21.link/cwg285 +d:cwg2903 +CWG2903 +13 June 2024 +tentatively ready +Can we omit the template disambiguator in nested-name-specifiers in type-only contexts? +https://wg21.link/cwg2903 -Erwin Unruh +Richard Smith - -d:cwg286 -CWG286 -9 May 2001 -CD1 -Incorrect example in partial specialization -https://wg21.link/cwg286 +d:cwg2904 +CWG2904 +14 June 2024 +open +Introducing template-names +https://wg21.link/cwg2904 -Martin Sebor +Brian Bi - -d:cwg287 -CWG287 -17 May 2001 -drafting -Order dependencies in template instantiation -https://wg21.link/cwg287 +d:cwg2905 +CWG2905 +16 June 2024 +tentatively ready +Value-dependence of noexcept-expression +https://wg21.link/cwg2905 -Martin Sebor +Mital Ashok - -d:cwg288 -CWG288 -19 May 2001 -CD1 -Misuse of "static type" in describing pointers -https://wg21.link/cwg288 +d:cwg2906 +CWG2906 +8 June 2024 +tentatively ready +Lvalue-to-rvalue conversion of class types for conditional operator +https://wg21.link/cwg2906 -James Kuyper +Jan Schultke - -d:cwg289 -CWG289 -25 May 2001 -CD1 -Incomplete list of contexts requiring a complete type -https://wg21.link/cwg289 +d:cwg2907 +CWG2907 +10 January 2023 +open +Constant lvalue-to-rvalue conversion on uninitialized std::nullptr_t +https://wg21.link/cwg2907 -Mike Miller +Jim X - -d:cwg29 -CWG29 -19 March 1998 -CD1 -Linkage of locally declared functions -https://wg21.link/cwg29 +d:cwg2908 +CWG2908 +17 June 2024 +open +Counting physical source lines for __LINE__ +https://wg21.link/cwg2908 -Mike Ball +Alisdair Meredith - -d:cwg290 -CWG290 -12 June 2001 -NAD -Should memcpy be allowed into a POD with a const member? -https://wg21.link/cwg290 +d:cwg2909 +CWG2909 +24 June 2024 +open +Subtle difference between constant-initialized and constexpr +https://wg21.link/cwg2909 -Garry Lancaster +CWG - d:cwg291 CWG291 @@ -22425,6 +25485,42 @@ https://wg21.link/cwg291 Andrei Iltchenko - +d:cwg2910 +CWG2910 +24 June 2024 +open +Effect of requirement-parameter-lists on odr-usability +https://wg21.link/cwg2910 + + + + +Hubert Tong +- +d:cwg2911 +CWG2911 +24 June 2024 +open +Unclear meaning of expressions "appearing within" subexpressions +https://wg21.link/cwg2911 + + + + +Hubert Tong +- +d:cwg2912 +CWG2912 +20 June 2024 +open +Too-large value for size in array new +https://wg21.link/cwg2912 + + + + +Mital Ashok +- d:cwg292 CWG292 26 June 2001 @@ -24408,7 +27504,7 @@ Nathan Myers d:cwg440 CWG440 13 November 2003 -open +NAD Allow implicit pointer-to-member conversion on nontype template argument https://wg21.link/cwg440 @@ -24576,7 +27672,7 @@ Gennaro Prota d:cwg453 CWG453 18 January 2004 -drafting +DRWP References may only bind to “valid” objects https://wg21.link/cwg453 @@ -24648,7 +27744,7 @@ Gabriel Dos Reis d:cwg459 CWG459 2 February 2004 -open +NAD Hiding of template parameters by base class members https://wg21.link/cwg459 @@ -24840,7 +27936,7 @@ Mike Miller d:cwg473 CWG473 12 July 2004 -open +NAD Block-scope declarations of allocator functions https://wg21.link/cwg473 @@ -25260,7 +28356,7 @@ Gabriel Dos Reis d:cwg504 CWG504 14 April 2005 -open +NAD Should use of a variable in its own initializer require a diagnostic? https://wg21.link/cwg504 @@ -25572,7 +28668,7 @@ Daveed Vandevoorde d:cwg528 CWG528 18 May 2005 -open +NAD Why are incomplete class types not allowed with typeid? https://wg21.link/cwg528 @@ -26520,7 +29616,7 @@ Martin Sebor d:cwg6 CWG6 -open +NAD Should the optimization that allows a class object to alias another object also allow the case of a parameter in an inline function to alias its argument? https://wg21.link/cwg6 @@ -27072,7 +30168,7 @@ Steve Adamczyk d:cwg640 CWG640 30 July 2007 -open +NAD Accessing destroyed local objects of static storage duration https://wg21.link/cwg640 @@ -28104,7 +31200,7 @@ Clark Nelson d:cwg718 CWG718 18 September 2008 -open +NAD Non-class, non-function friend declarations https://wg21.link/cwg718 @@ -28464,7 +31560,7 @@ Faisal Vali d:cwg745 CWG745 13 November 2008 -open +C++23 Effect of ill-formedness resulting from #error https://wg21.link/cwg745 @@ -30540,7 +33636,7 @@ John Spicer d:cwg900 CWG900 12 May 2009 -DR +C++23 Lifetime of temporaries in range-based for https://wg21.link/cwg900 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-cy.data b/bikeshed/spec-data/readonly/biblio/biblio-cy.data new file mode 100644 index 0000000000..1fb19c2460 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-cy.data @@ -0,0 +1,46 @@ +d:cyrl-gap +cyrl-gap +23 July 2024 +NOTE +Cyrillic Gap Analysis +https://www.w3.org/TR/cyrl-gap/ +https://w3c.github.io/gap-analysis/cyrl-gap + + + +- +d:cyrl-gap-20240723 +cyrl-gap-20240723 +23 July 2024 +NOTE +Cyrillic Gap Analysis +https://www.w3.org/TR/2024/DNOTE-cyrl-gap-20240723/ +https://www.w3.org/TR/2024/DNOTE-cyrl-gap-20240723/ + + + +- +d:cyrl-lreq +cyrl-lreq +8 August 2024 +NOTE +Cyrillic Script Resources +https://www.w3.org/TR/cyrl-lreq/ +https://w3c.github.io/eurlreq/cyrl/ + + + +Richard Ishida +- +d:cyrl-lreq-20240808 +cyrl-lreq-20240808 +8 August 2024 +NOTE +Cyrillic Script Resources +https://www.w3.org/TR/2024/DNOTE-cyrl-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-cyrl-lreq-20240808/ + + + +Richard Ishida +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-d0.data b/bikeshed/spec-data/readonly/biblio/biblio-d0.data index 9787fe89d3..d2d8b41f57 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-d0.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-d0.data @@ -217,6 +217,17 @@ https://wg21.link/d0260r1 +- +d:d0260r6 +D0260R6 + + +(Untitled) +https://wg21.link/d0260r6 + + + + - d:d0270r2 D0270R2 @@ -283,6 +294,17 @@ https://wg21.link/d0290r2 +- +d:d0290r4 +D0290R4 + + +Apply for synchronized_value, with changes based on LWG feedback +https://wg21.link/d0290r4 + + + + - d:d0298r2 D0298R2 @@ -734,6 +756,17 @@ https://wg21.link/d0492r2 +- +d:d0493r4 +D0493R4 + + +P0493R4 atomic min/max +https://wg21.link/d0493r4 + + + + - d:d0495r0 D0495R0 @@ -1823,6 +1856,17 @@ https://wg21.link/d0876r1 +- +d:d0876r12 +D0876R12 + + +fiber_context: fibers without scheduler - remove stop_source, stop_token, add ctor with explicit stack +https://wg21.link/d0876r12 + + + + - d:d0876r3 D0876R3 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-d1.data b/bikeshed/spec-data/readonly/biblio/biblio-d1.data index d065be937f..864f46c452 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-d1.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-d1.data @@ -228,6 +228,17 @@ https://wg21.link/d1045r1 +- +d:d1061r4 +D1061R4 + + +1061 (structured bindings can introduce a pack) +https://wg21.link/d1061r4 + + + + - d:d1063r1 D1063R1 @@ -1388,7 +1399,7 @@ d:d1466r1 D1466R1 -Miscellaneous minor fixes for chrono -- updated +Miscellaneous minor fixes for chrono — updated https://wg21.link/d1466r1 @@ -2263,6 +2274,17 @@ https://wg21.link/d1847r3 +- +d:d1854 +D1854 + + +Making non-encodable string literals ill-formed +https://wg21.link/d1854 + + + + - d:d1856r1 D1856R1 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-d2.data b/bikeshed/spec-data/readonly/biblio/biblio-d2.data index c8b121bb38..3adcb5b6e4 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-d2.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-d2.data @@ -41,6 +41,17 @@ https://wg21.link/d2014r1 +- +d:d2014r2 +D2014R2 + + +D2014R2 - align_val_t support for coroutine state allocation +https://wg21.link/d2014r2 + + + + - d:d2029r1 D2029R1 @@ -272,6 +283,17 @@ https://wg21.link/d2116r0 +- +d:d2308r0 +D2308R0 + + +Template parameter initialization +https://wg21.link/d2308r0 + + + + - d:d2314r4 D2314R4 @@ -283,6 +305,17 @@ https://wg21.link/d2314r4 +- +d:d2361 +D2361 + + +unevaluated strings +https://wg21.link/d2361 + + + + - d:d2415r2 D2415R2 @@ -327,6 +360,17 @@ https://wg21.link/d2450r0 +- +d:d2460 +D2460 + + +p2460 inner-scope namespace entitities +https://wg21.link/d2460 + + + + - d:d2462r0 D2462R0 @@ -338,4 +382,213 @@ https://wg21.link/d2462r0 +- +d:d2530r3 +D2530R3 + + +Changes based on LWG 2023-02-07 review +https://wg21.link/d2530r3 + + + + +- +d:d2572r1 +D2572R1 + + +P2572R1: std::format() fill character allowances +https://wg21.link/d2572r1 + + + + +- +d:d2609r3 +D2609R3 + + +P2609R3 +https://wg21.link/d2609r3 + + + + +- +d:d2616r4 +D2616R4 + + +(Untitled) +https://wg21.link/d2616r4 + + + + +- +d:d2621 +D2621 + + +UB? In My Lexer? +https://wg21.link/d2621 + + + + +- +d:d2652r2 +D2652R2 + + +Disallow User Specialization of allocator_traits (Bug fix from R1) +https://wg21.link/d2652r2 + + + + +- +d:d2674r1 +D2674R1 + + +A trait for implicit lifetime types +https://wg21.link/d2674r1 + + + + +- +d:d2679r2 +D2679R2 + + +Fixing std::start_lifetime_as and std::start_lifetime_as_array +https://wg21.link/d2679r2 + + + + +- +d:d2693r1 +D2693R1 + + +Formatting thread::id and stacktrace +https://wg21.link/d2693r1 + + + + +- +d:d2736r2 +D2736R2 + + +Referencing The Unicode Standard +https://wg21.link/d2736r2 + + + + +- +d:d2770r0 +D2770R0 + + +Stashing stashing iterators for proper flattening +https://wg21.link/d2770r0 + + + + +- +d:d2786r0 +D2786R0 + + +trivial relocation proposal in response to P1144R6 +https://wg21.link/d2786r0 + + + + +- +d:d2787r1 +D2787R1 + + +pmr::generator - Promise Types are not Values +https://wg21.link/d2787r1 + + + + +- +d:d2788r0 +D2788R0 + + +Linkage for modular constants +https://wg21.link/d2788r0 + + + + +- +d:d2789r0 +D2789R0 + + +C++ Standard Library Ready Issues to be moved in Issaquah, Feb. 2023 +https://wg21.link/d2789r0 + + + + +- +d:d2790r0 +D2790R0 + + +Standard Library Immediate Issues +https://wg21.link/d2790r0 + + + + +- +d:d2796r0 +D2796R0 + + +Core Language Working Group "ready" Issues for the February, 2023 meeting +https://wg21.link/d2796r0 + + + + +- +d:d2797r0 +D2797R0 + + +2692, 2687 Static and explicit object member functions with the same parameter-type-lists +https://wg21.link/d2797r0 + + + + +- +d:d2808r0 +D2808R0 + + +Internal linkage in the global module +https://wg21.link/d2808r0 + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-da.data b/bikeshed/spec-data/readonly/biblio/biblio-da.data index fd5a7838e5..8753c08b9c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-da.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-da.data @@ -388,6 +388,253 @@ M. Hanclik F Hirsch D. Rogers - +d:dapt +dapt +12 April 2024 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/dapt/ +https://w3c.github.io/dapt/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230425 +dapt-20230425 +25 April 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230425/ +https://www.w3.org/TR/2023/WD-dapt-20230425/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230504 +dapt-20230504 +4 May 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230504/ +https://www.w3.org/TR/2023/WD-dapt-20230504/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230505 +dapt-20230505 +5 May 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230505/ +https://www.w3.org/TR/2023/WD-dapt-20230505/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230606 +dapt-20230606 +6 June 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230606/ +https://www.w3.org/TR/2023/WD-dapt-20230606/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230619 +dapt-20230619 +19 June 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230619/ +https://www.w3.org/TR/2023/WD-dapt-20230619/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230628 +dapt-20230628 +28 June 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230628/ +https://www.w3.org/TR/2023/WD-dapt-20230628/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230727 +dapt-20230727 +27 July 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230727/ +https://www.w3.org/TR/2023/WD-dapt-20230727/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20230801 +dapt-20230801 +1 August 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20230801/ +https://www.w3.org/TR/2023/WD-dapt-20230801/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231006 +dapt-20231006 +6 October 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231006/ +https://www.w3.org/TR/2023/WD-dapt-20231006/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231011 +dapt-20231011 +11 October 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231011/ +https://www.w3.org/TR/2023/WD-dapt-20231011/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231013 +dapt-20231013 +13 October 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231013/ +https://www.w3.org/TR/2023/WD-dapt-20231013/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231019 +dapt-20231019 +19 October 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231019/ +https://www.w3.org/TR/2023/WD-dapt-20231019/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231102 +dapt-20231102 +2 November 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231102/ +https://www.w3.org/TR/2023/WD-dapt-20231102/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231123 +dapt-20231123 +23 November 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231123/ +https://www.w3.org/TR/2023/WD-dapt-20231123/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20231221 +dapt-20231221 +21 December 2023 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2023/WD-dapt-20231221/ +https://www.w3.org/TR/2023/WD-dapt-20231221/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20240301 +dapt-20240301 +1 March 2024 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2024/WD-dapt-20240301/ +https://www.w3.org/TR/2024/WD-dapt-20240301/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20240328 +dapt-20240328 +28 March 2024 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2024/WD-dapt-20240328/ +https://www.w3.org/TR/2024/WD-dapt-20240328/ + + + +Cyril Concolato +Nigel Megitt +- +d:dapt-20240412 +dapt-20240412 +12 April 2024 +WD +Dubbing and Audio description Profiles of TTML2 +https://www.w3.org/TR/2024/WD-dapt-20240412/ +https://www.w3.org/TR/2024/WD-dapt-20240412/ + + + +Cyril Concolato +Nigel Megitt +- d:dapt-reqs dapt-reqs 12 October 2022 @@ -510,7 +757,7 @@ Nikunj Mehta - d:datacite datacite -30 March 2021 +22 January 2024 DataCite Metadata Schema https://schema.datacite.org/ @@ -639,6 +886,29 @@ https://schema.datacite.org/meta/kernel-4.4/ DataCite Metadata Working Group +- +d:datacite-20240122 +datacite-20240122 +22 January 2024 + +DataCite Metadata Schema 4.5 +https://schema.datacite.org/meta/kernel-4.5/ +https://schema.datacite.org/meta/kernel-4.5/ + + + +DataCite Metadata Working Group +- +d:datacue +DATACUE + +Draft Community Group Report +DataCue API +https://wicg.github.io/datacue/ + + + + - d:datetime datetime diff --git a/bikeshed/spec-data/readonly/biblio/biblio-de.data b/bikeshed/spec-data/readonly/biblio/biblio-de.data index 4f0644931d..6175c12e5e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-de.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-de.data @@ -1,3 +1,14 @@ +d:deprecation-reporting +DEPRECATION-REPORTING + +Draft Community Group Report +Deprecation Reporting +https://wicg.github.io/deprecation-reporting/ + + + + +- d:des DES October 1999 @@ -11,7 +22,7 @@ https://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf - d:design-principles design-principles -24 August 2022 +18 July 2024 NOTE Web Platform Design Principles https://www.w3.org/TR/design-principles/ @@ -19,7 +30,7 @@ https://w3ctag.github.io/design-principles/ -Sangwhan Moon +Lea Verou - d:design-principles-20201110 design-principles-20201110 @@ -69,9 +80,70 @@ https://www.w3.org/TR/2022/NOTE-design-principles-20220824/ Sangwhan Moon - +d:design-principles-20230224 +design-principles-20230224 +24 February 2023 +NOTE +Web Platform Design Principles +https://www.w3.org/TR/2023/NOTE-design-principles-20230224/ +https://www.w3.org/TR/2023/NOTE-design-principles-20230224/ + + + +Sangwhan Moon +- +d:design-principles-20230426 +design-principles-20230426 +26 April 2023 +NOTE +Web Platform Design Principles +https://www.w3.org/TR/2023/NOTE-design-principles-20230426/ +https://www.w3.org/TR/2023/NOTE-design-principles-20230426/ + + + +Sangwhan Moon +- +d:design-principles-20230907 +design-principles-20230907 +7 September 2023 +NOTE +Web Platform Design Principles +https://www.w3.org/TR/2023/NOTE-design-principles-20230907/ +https://www.w3.org/TR/2023/NOTE-design-principles-20230907/ + + + +Sangwhan Moon +- +d:design-principles-20240130 +design-principles-20240130 +30 January 2024 +NOTE +Web Platform Design Principles +https://www.w3.org/TR/2024/NOTE-design-principles-20240130/ +https://www.w3.org/TR/2024/NOTE-design-principles-20240130/ + + + +Sangwhan Moon +Lea Verou +- +d:design-principles-20240718 +design-principles-20240718 +18 July 2024 +NOTE +Web Platform Design Principles +https://www.w3.org/TR/2024/NOTE-design-principles-20240718/ +https://www.w3.org/TR/2024/NOTE-design-principles-20240718/ + + + +Lea Verou +- d:deva-gap deva-gap -19 January 2022 +10 July 2024 NOTE Devanagari Gap Analysis https://www.w3.org/TR/deva-gap/ @@ -79,7 +151,6 @@ https://w3c.github.io/iip/gap-analysis/deva-gap -Akshat Joshi Richard Ishida - d:deva-gap-20200616 @@ -172,6 +243,116 @@ https://www.w3.org/TR/2022/DNOTE-deva-gap-20220119/ Akshat Joshi Richard Ishida +- +d:deva-gap-20230614 +deva-gap-20230614 +14 June 2023 +NOTE +Devanagari Gap Analysis +https://www.w3.org/TR/2023/DNOTE-deva-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-deva-gap-20230614/ + + + +Akshat Joshi +Richard Ishida +- +d:deva-gap-20230830 +deva-gap-20230830 +30 August 2023 +NOTE +Devanagari Gap Analysis +https://www.w3.org/TR/2023/DNOTE-deva-gap-20230830/ +https://www.w3.org/TR/2023/DNOTE-deva-gap-20230830/ + + + +Akshat Joshi +Richard Ishida +- +d:deva-gap-20231004 +deva-gap-20231004 +4 October 2023 +NOTE +Devanagari Gap Analysis +https://www.w3.org/TR/2023/DNOTE-deva-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-deva-gap-20231004/ + + + +Akshat Joshi +Richard Ishida +- +d:deva-gap-20240701 +deva-gap-20240701 +1 July 2024 +NOTE +Devanagari Gap Analysis +https://www.w3.org/TR/2024/DNOTE-deva-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-deva-gap-20240701/ + + + +Richard Ishida +- +d:deva-gap-20240704 +deva-gap-20240704 +4 July 2024 +NOTE +Devanagari Gap Analysis +https://www.w3.org/TR/2024/DNOTE-deva-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-deva-gap-20240704/ + + + +Richard Ishida +- +d:deva-gap-20240710 +deva-gap-20240710 +10 July 2024 +NOTE +Devanagari Gap Analysis +https://www.w3.org/TR/2024/DNOTE-deva-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-deva-gap-20240710/ + + + +Richard Ishida +- +d:deva-lreq +deva-lreq +8 August 2024 +NOTE +Devanagari Script Resources +https://www.w3.org/TR/deva-lreq/ +https://w3c.github.io/iip/deva/ + + + +Richard Ishida +- +d:deva-lreq-20240808 +deva-lreq-20240808 +8 August 2024 +NOTE +Devanagari Script Resources +https://www.w3.org/TR/2024/DNOTE-deva-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-deva-lreq-20240808/ + + + +Richard Ishida +- +d:device-attributes +DEVICE-ATTRIBUTES + +Draft Community Group Report +Device Attributes API +https://wicg.github.io/WebApiDevice/device_attributes/ + + + + - d:device-memory-1 device-memory-1 @@ -245,9 +426,97 @@ a:device-orientation-20230109 DEVICE-ORIENTATION-20230109 orientation-event-20230109 - +a:device-orientation-20230130 +DEVICE-ORIENTATION-20230130 +orientation-event-20230130 +- +a:device-orientation-20230322 +DEVICE-ORIENTATION-20230322 +orientation-event-20230322 +- +a:device-orientation-20230403 +DEVICE-ORIENTATION-20230403 +orientation-event-20230403 +- +a:device-orientation-20230412 +DEVICE-ORIENTATION-20230412 +orientation-event-20230412 +- +a:device-orientation-20230421 +DEVICE-ORIENTATION-20230421 +orientation-event-20230421 +- +a:device-orientation-20231113 +DEVICE-ORIENTATION-20231113 +orientation-event-20231113 +- +a:device-orientation-20231204 +DEVICE-ORIENTATION-20231204 +orientation-event-20231204 +- +a:device-orientation-20231205 +DEVICE-ORIENTATION-20231205 +orientation-event-20231205 +- +a:device-orientation-20231211 +DEVICE-ORIENTATION-20231211 +orientation-event-20231211 +- +a:device-orientation-20240104 +DEVICE-ORIENTATION-20240104 +orientation-event-20240104 +- +a:device-orientation-20240105 +DEVICE-ORIENTATION-20240105 +orientation-event-20240105 +- +a:device-orientation-20240122 +DEVICE-ORIENTATION-20240122 +orientation-event-20240122 +- +a:device-orientation-20240202 +DEVICE-ORIENTATION-20240202 +orientation-event-20240202 +- +a:device-orientation-20240311 +DEVICE-ORIENTATION-20240311 +orientation-event-20240311 +- +a:device-orientation-20240411 +DEVICE-ORIENTATION-20240411 +orientation-event-20240411 +- +a:device-orientation-20240502 +DEVICE-ORIENTATION-20240502 +orientation-event-20240502 +- +a:device-orientation-20240503 +DEVICE-ORIENTATION-20240503 +orientation-event-20240503 +- +a:device-orientation-20240504 +DEVICE-ORIENTATION-20240504 +orientation-event-20240504 +- +a:device-orientation-20240507 +DEVICE-ORIENTATION-20240507 +orientation-event-20240507 +- +a:device-orientation-20240508 +DEVICE-ORIENTATION-20240508 +orientation-event-20240508 +- +a:device-orientation-20240509 +DEVICE-ORIENTATION-20240509 +orientation-event-20240509 +- +a:device-orientation-20240514 +DEVICE-ORIENTATION-20240514 +orientation-event-20240514 +- d:device-posture device-posture -4 November 2021 +23 July 2024 WD Device Posture API https://www.w3.org/TR/device-posture/ @@ -257,6 +526,7 @@ https://w3c.github.io/device-posture/ Diego Gonzalez-Zuniga Kenneth Christiansen +Alexis Menard - d:device-posture-20201217 device-posture-20201217 @@ -349,6 +619,157 @@ https://www.w3.org/TR/2021/WD-device-posture-20211104/ Diego Gonzalez-Zuniga Kenneth Christiansen - +d:device-posture-20230403 +device-posture-20230403 +3 April 2023 +WD +Device Posture API +https://www.w3.org/TR/2023/WD-device-posture-20230403/ +https://www.w3.org/TR/2023/WD-device-posture-20230403/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +- +d:device-posture-20230404 +device-posture-20230404 +4 April 2023 +WD +Device Posture API +https://www.w3.org/TR/2023/WD-device-posture-20230404/ +https://www.w3.org/TR/2023/WD-device-posture-20230404/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +- +d:device-posture-20240108 +device-posture-20240108 +8 January 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240108/ +https://www.w3.org/TR/2024/WD-device-posture-20240108/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +- +d:device-posture-20240315 +device-posture-20240315 +15 March 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240315/ +https://www.w3.org/TR/2024/WD-device-posture-20240315/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240322 +device-posture-20240322 +22 March 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240322/ +https://www.w3.org/TR/2024/WD-device-posture-20240322/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240325 +device-posture-20240325 +25 March 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240325/ +https://www.w3.org/TR/2024/WD-device-posture-20240325/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240408 +device-posture-20240408 +8 April 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240408/ +https://www.w3.org/TR/2024/WD-device-posture-20240408/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240528 +device-posture-20240528 +28 May 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240528/ +https://www.w3.org/TR/2024/WD-device-posture-20240528/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240605 +device-posture-20240605 +5 June 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240605/ +https://www.w3.org/TR/2024/WD-device-posture-20240605/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240722 +device-posture-20240722 +22 July 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240722/ +https://www.w3.org/TR/2024/WD-device-posture-20240722/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- +d:device-posture-20240723 +device-posture-20240723 +23 July 2024 +WD +Device Posture API +https://www.w3.org/TR/2024/WD-device-posture-20240723/ +https://www.w3.org/TR/2024/WD-device-posture-20240723/ + + + +Diego Gonzalez-Zuniga +Kenneth Christiansen +Alexis Menard +- d:device-upload device-upload 6 July 1999 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-di.data b/bikeshed/spec-data/readonly/biblio/biblio-di.data index 720fdd46ce..e0cd2a862e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-di.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-di.data @@ -1668,7 +1668,7 @@ Daniel Hardman - d:did-spec-registries did-spec-registries -24 January 2023 +20 July 2024 NOTE DID Specification Registries https://www.w3.org/TR/did-spec-registries/ @@ -1676,9 +1676,7 @@ https://w3c.github.io/did-spec-registries/ -Orie Steele Manu Sporny -Michael Prorock - d:did-spec-registries-20200618 did-spec-registries-20200618 @@ -2402,6 +2400,214 @@ Orie Steele Manu Sporny Michael Prorock - +d:did-spec-registries-20230208 +did-spec-registries-20230208 +8 February 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230208/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230208/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230309 +did-spec-registries-20230309 +9 March 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230309/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230309/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230310 +did-spec-registries-20230310 +10 March 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230310/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230310/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230411 +did-spec-registries-20230411 +11 April 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230411/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230411/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230427 +did-spec-registries-20230427 +27 April 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230427/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230427/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230514 +did-spec-registries-20230514 +14 May 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230514/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230514/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230828 +did-spec-registries-20230828 +28 August 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230828/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230828/ + + + +Orie Steele +Manu Sporny +Michael Prorock +- +d:did-spec-registries-20230829 +did-spec-registries-20230829 +29 August 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230829/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230829/ + + + +Orie Steele +Manu Sporny +- +d:did-spec-registries-20230911 +did-spec-registries-20230911 +11 September 2023 +NOTE +DID Specification Registries +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230911/ +https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230911/ + + + +Orie Steele +Manu Sporny +- +d:did-spec-registries-20240429 +did-spec-registries-20240429 +29 April 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240429/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240429/ + + + +Manu Sporny +- +d:did-spec-registries-20240514 +did-spec-registries-20240514 +14 May 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240514/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240514/ + + + +Manu Sporny +- +d:did-spec-registries-20240515 +did-spec-registries-20240515 +15 May 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240515/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240515/ + + + +Manu Sporny +- +d:did-spec-registries-20240516 +did-spec-registries-20240516 +16 May 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240516/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240516/ + + + +Manu Sporny +- +d:did-spec-registries-20240611 +did-spec-registries-20240611 +11 June 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240611/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240611/ + + + +Manu Sporny +- +d:did-spec-registries-20240701 +did-spec-registries-20240701 +1 July 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240701/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240701/ + + + +Manu Sporny +- +d:did-spec-registries-20240720 +did-spec-registries-20240720 +20 July 2024 +NOTE +DID Specification Registries +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240720/ +https://www.w3.org/TR/2024/NOTE-did-spec-registries-20240720/ + + + +Manu Sporny +- d:did-use-cases did-use-cases 17 March 2021 @@ -2685,6 +2891,32 @@ http://www.digitalimaging.org/pdf/wg1n1017.pdf Digital Imaging Group +- +a:digest-headers +DIGEST-HEADERS +rfc9530 +- +d:digital-goods +DIGITAL-GOODS + +Draft Community Group Report +Digital Goods API +https://wicg.github.io/digital-goods/ + + + + +- +d:digital-identities +DIGITAL-IDENTITIES + +Draft Community Group Report +Digital Credentials +https://wicg.github.io/digital-identities/ + + + + - d:digital-typography DIGITAL-TYPOGRAPHY @@ -2697,6 +2929,17 @@ Digital Typography, An Introduction to Type and Composition for Computer System Richard Rubinstein +- +d:direct-sockets +DIRECT-SOCKETS + +Unofficial Proposal Draft +Direct Sockets API +https://wicg.github.io/direct-sockets/ + + + + - a:disco-prop DISCO-PROP diff --git a/bikeshed/spec-data/readonly/biblio/biblio-do.data b/bikeshed/spec-data/readonly/biblio/biblio-do.data index c2d0b9bfb2..d730537ee9 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-do.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-do.data @@ -1,3 +1,14 @@ +d:document-picture-in-picture +DOCUMENT-PICTURE-IN-PICTURE + +cg-draft +Document Picture-in-Picture +https://wicg.github.io/document-picture-in-picture/ + + + + +- d:document-policy DOCUMENT-POLICY @@ -1563,6 +1574,38 @@ a:dom-level-3-events-20220913 DOM-Level-3-Events-20220913 uievents-20220913 - +a:dom-level-3-events-20230509 +DOM-Level-3-Events-20230509 +uievents-20230509 +- +a:dom-level-3-events-20230627 +DOM-Level-3-Events-20230627 +uievents-20230627 +- +a:dom-level-3-events-20230823 +DOM-Level-3-Events-20230823 +uievents-20230823 +- +a:dom-level-3-events-20230915 +DOM-Level-3-Events-20230915 +uievents-20230915 +- +a:dom-level-3-events-20231204 +DOM-Level-3-Events-20231204 +uievents-20231204 +- +a:dom-level-3-events-20240221 +DOM-Level-3-Events-20240221 +uievents-20240221 +- +a:dom-level-3-events-20240613 +DOM-Level-3-Events-20240613 +uievents-20240613 +- +a:dom-level-3-events-20240622 +DOM-Level-3-Events-20240622 +uievents-20240622 +- a:dom-level-3-events-code DOM-Level-3-Events-code uievents-code @@ -1587,6 +1630,10 @@ a:dom-level-3-events-code-20170601 DOM-Level-3-Events-code-20170601 uievents-code-20170601 - +a:dom-level-3-events-code-20230530 +DOM-Level-3-Events-code-20230530 +uievents-code-20230530 +- a:dom-level-3-events-key DOM-Level-3-Events-key uievents-key @@ -1611,6 +1658,10 @@ a:dom-level-3-events-key-20170601 DOM-Level-3-Events-key-20170601 uievents-key-20170601 - +a:dom-level-3-events-key-20230530 +DOM-Level-3-Events-key-20230530 +uievents-key-20230530 +- d:dom-level-3-ls DOM-Level-3-LS 7 April 2004 @@ -2698,6 +2749,38 @@ a:domevents-20220913 DOMEvents-20220913 uievents-20220913 - +a:domevents-20230509 +DOMEvents-20230509 +uievents-20230509 +- +a:domevents-20230627 +DOMEvents-20230627 +uievents-20230627 +- +a:domevents-20230823 +DOMEvents-20230823 +uievents-20230823 +- +a:domevents-20230915 +DOMEvents-20230915 +uievents-20230915 +- +a:domevents-20231204 +DOMEvents-20231204 +uievents-20231204 +- +a:domevents-20240221 +DOMEvents-20240221 +uievents-20240221 +- +a:domevents-20240613 +DOMEvents-20240613 +uievents-20240613 +- +a:domevents-20240622 +DOMEvents-20240622 +uievents-20240622 +- d:domparsing DOMPARSING diff --git a/bikeshed/spec-data/readonly/biblio/biblio-dp.data b/bikeshed/spec-data/readonly/biblio/biblio-dp.data index ed289f6220..728dc945a7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-dp.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-dp.data @@ -228,8 +228,8 @@ Joanmarie Diggs - d:dpub-aam-1.1 dpub-aam-1.1 -30 November 2021 -WD +21 June 2024 +CR Digital Publishing Accessibility API Mappings 1.1 https://www.w3.org/TR/dpub-aam-1.1/ https://w3c.github.io/dpub-aam/ @@ -237,7 +237,7 @@ https://w3c.github.io/dpub-aam/ Matt Garrish -Joanmarie Diggs +Tzviya Siegman - d:dpub-aam-1.1-20211130 dpub-aam-1.1-20211130 @@ -252,6 +252,201 @@ https://www.w3.org/TR/2021/WD-dpub-aam-1.1-20211130/ Matt Garrish Joanmarie Diggs - +d:dpub-aam-1.1-20230308 +dpub-aam-1.1-20230308 +8 March 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230308/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230308/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230613 +dpub-aam-1.1-20230613 +13 June 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230613/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230613/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230619 +dpub-aam-1.1-20230619 +19 June 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230619/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230619/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230626 +dpub-aam-1.1-20230626 +26 June 2023 +CR +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/CRD-dpub-aam-1.1-20230626/ +https://www.w3.org/TR/2023/CRD-dpub-aam-1.1-20230626/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230703 +dpub-aam-1.1-20230703 +3 July 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230703/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230703/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230705 +dpub-aam-1.1-20230705 +5 July 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230705/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230705/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230823 +dpub-aam-1.1-20230823 +23 August 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230823/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230823/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20230902 +dpub-aam-1.1-20230902 +2 September 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230902/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230902/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20231108 +dpub-aam-1.1-20231108 +8 November 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231108/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231108/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20231213 +dpub-aam-1.1-20231213 +13 December 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231213/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231213/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20231222 +dpub-aam-1.1-20231222 +22 December 2023 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231222/ +https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231222/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20240109 +dpub-aam-1.1-20240109 +9 January 2024 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2024/WD-dpub-aam-1.1-20240109/ +https://www.w3.org/TR/2024/WD-dpub-aam-1.1-20240109/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20240123 +dpub-aam-1.1-20240123 +23 January 2024 +WD +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2024/WD-dpub-aam-1.1-20240123/ +https://www.w3.org/TR/2024/WD-dpub-aam-1.1-20240123/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20240227 +dpub-aam-1.1-20240227 +27 February 2024 +CR +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2024/CR-dpub-aam-1.1-20240227/ +https://www.w3.org/TR/2024/CR-dpub-aam-1.1-20240227/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aam-1.1-20240621 +dpub-aam-1.1-20240621 +21 June 2024 +CR +Digital Publishing Accessibility API Mappings 1.1 +https://www.w3.org/TR/2024/CRD-dpub-aam-1.1-20240621/ +https://www.w3.org/TR/2024/CRD-dpub-aam-1.1-20240621/ + + + +Matt Garrish +Tzviya Siegman +- d:dpub-accessibility dpub-accessibility 3 May 2016 @@ -421,8 +616,8 @@ Shane McCarron - d:dpub-aria-1.1 dpub-aria-1.1 -25 January 2023 -WD +21 June 2024 +CR Digital Publishing WAI-ARIA Module 1.1 https://www.w3.org/TR/dpub-aria-1.1/ https://w3c.github.io/dpub-aria/ @@ -559,6 +754,240 @@ https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230125/ +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230202 +dpub-aria-1.1-20230202 +2 February 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230202/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230202/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230215 +dpub-aria-1.1-20230215 +15 February 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230215/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230215/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230222 +dpub-aria-1.1-20230222 +22 February 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230222/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230222/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230515 +dpub-aria-1.1-20230515 +15 May 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230515/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230515/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230619 +dpub-aria-1.1-20230619 +19 June 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230619/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230619/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230620 +dpub-aria-1.1-20230620 +20 June 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230620/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230620/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230626 +dpub-aria-1.1-20230626 +26 June 2023 +CR +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/CRD-dpub-aria-1.1-20230626/ +https://www.w3.org/TR/2023/CRD-dpub-aria-1.1-20230626/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230703 +dpub-aria-1.1-20230703 +3 July 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230703/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230703/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230705 +dpub-aria-1.1-20230705 +5 July 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230705/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230705/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20230902 +dpub-aria-1.1-20230902 +2 September 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230902/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230902/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20231030 +dpub-aria-1.1-20231030 +30 October 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231030/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231030/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20231213 +dpub-aria-1.1-20231213 +13 December 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231213/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231213/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20231222 +dpub-aria-1.1-20231222 +22 December 2023 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231222/ +https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231222/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20240108 +dpub-aria-1.1-20240108 +8 January 2024 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240108/ +https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240108/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20240109 +dpub-aria-1.1-20240109 +9 January 2024 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240109/ +https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240109/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20240123 +dpub-aria-1.1-20240123 +23 January 2024 +WD +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240123/ +https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240123/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20240227 +dpub-aria-1.1-20240227 +27 February 2024 +CR +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2024/CR-dpub-aria-1.1-20240227/ +https://www.w3.org/TR/2024/CR-dpub-aria-1.1-20240227/ + + + +Matt Garrish +Tzviya Siegman +- +d:dpub-aria-1.1-20240621 +dpub-aria-1.1-20240621 +21 June 2024 +CR +Digital Publishing WAI-ARIA Module 1.1 +https://www.w3.org/TR/2024/CRD-dpub-aria-1.1-20240621/ +https://www.w3.org/TR/2024/CRD-dpub-aria-1.1-20240621/ + + + Matt Garrish Tzviya Siegman - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ds.data b/bikeshed/spec-data/readonly/biblio/biblio-ds.data index 84052a1fd6..5b16dbaf67 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ds.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ds.data @@ -193,14 +193,7 @@ https://www.w3.org/TR/2006/NOTE-DSig-usage-20061220/ Thomas Roessler - -d:dss +a:dss DSS -July 2013 - -FIPS PUB 186-4: Digital Signature Standard (DSS) -https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf - - - - +FIPS-186-5 - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-dx.data b/bikeshed/spec-data/readonly/biblio/biblio-dx.data index 67b24498fb..2cc21664d5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-dx.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-dx.data @@ -49,15 +49,16 @@ Nicholas Car - d:dx-prof-conneg dx-prof-conneg -26 November 2019 +2 October 2023 WD Content Negotiation by Profile https://www.w3.org/TR/dx-prof-conneg/ -https://w3c.github.io/dxwg/connegp/ +https://w3c.github.io/dx-connegp/connegp/ Lars G. Svensson +Rob Atkinson Nicholas Car - d:dx-prof-conneg-20181218 @@ -101,3 +102,17 @@ https://www.w3.org/TR/2019/WD-dx-prof-conneg-20191126/ Lars G. Svensson Nicholas Car - +d:dx-prof-conneg-20231002 +dx-prof-conneg-20231002 +2 October 2023 +WD +Content Negotiation by Profile +https://www.w3.org/TR/2023/WD-dx-prof-conneg-20231002/ +https://www.w3.org/TR/2023/WD-dx-prof-conneg-20231002/ + + + +Lars G. Svensson +Rob Atkinson +Nicholas Car +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ec.data b/bikeshed/spec-data/readonly/biblio/biblio-ec.data index 49aaacac3a..e55ad12a26 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ec.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ec.data @@ -46,6 +46,14 @@ a:ecma-262-13.0 ECMA-262-13.0 ECMASCRIPT-13.0 - +a:ecma-262-14.0 +ECMA-262-14.0 +ECMASCRIPT-14.0 +- +a:ecma-262-15.0 +ECMA-262-15.0 +ECMASCRIPT-15.0 +- a:ecma-262-2015 ECMA-262-2015 ECMASCRIPT-2015 @@ -78,6 +86,14 @@ a:ecma-262-2022 ECMA-262-2022 ECMASCRIPT-2022 - +a:ecma-262-2023 +ECMA-262-2023 +ECMASCRIPT-2023 +- +a:ecma-262-2024 +ECMA-262-2024 +ECMASCRIPT-2024 +- a:ecma-262-5.1 ECMA-262-5.1 ECMASCRIPT-5.1 @@ -178,6 +194,9 @@ https://262.ecma-international.org/12.0/ Jordan Harband +Shu-yu Guo +Michael Ficarra +Kevin Gibbons - d:ecmascript-13.0 ECMASCRIPT-13.0 @@ -189,6 +208,37 @@ https://262.ecma-international.org/13.0/ +Shu-yu Guo +Michael Ficarra +Kevin Gibbons +- +d:ecmascript-14.0 +ECMASCRIPT-14.0 +June 2023 +Standard +ECMA-262 14th Edition, The ECMAScript 2023 Language Specification +https://262.ecma-international.org/14.0/ +https://262.ecma-international.org/14.0/ + + + +Shu-yu Guo +Michael Ficarra +Kevin Gibbons +- +d:ecmascript-15.0 +ECMASCRIPT-15.0 +June 2024 +Standard +ECMA-262 15th Edition, The ECMAScript 2024 Language Specification +https://262.ecma-international.org/15.0/ +https://262.ecma-international.org/15.0/ + + + +Shu-yu Guo +Michael Ficarra +Kevin Gibbons - a:ecmascript-2015 ECMASCRIPT-2015 @@ -222,6 +272,14 @@ a:ecmascript-2022 ECMASCRIPT-2022 ECMASCRIPT-13.0 - +a:ecmascript-2023 +ECMASCRIPT-2023 +ECMASCRIPT-14.0 +- +a:ecmascript-2024 +ECMASCRIPT-2024 +ECMASCRIPT-15.0 +- d:ecmascript-5.1 ECMASCRIPT-5.1 June 2011 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ed.data b/bikeshed/spec-data/readonly/biblio/biblio-ed.data index 46c541b9d7..186ff9cfb2 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ed.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ed.data @@ -19,6 +19,34 @@ https://www.w3.org/TR/2001/NOTE-edge-arch-20010804 +- +d:edge-cloud-reqs +edge-cloud-reqs +26 September 2023 +NOTE +Client-Edge-Cloud coordination Use Cases and Requirements +https://www.w3.org/TR/edge-cloud-reqs/ +https://w3c.github.io/edge-computing-web-exploration/ + + + +Dapeng(Max) Liu +Michael McCool +Song XU +- +d:edge-cloud-reqs-20230926 +edge-cloud-reqs-20230926 +26 September 2023 +NOTE +Client-Edge-Cloud coordination Use Cases and Requirements +https://www.w3.org/TR/2023/DNOTE-edge-cloud-reqs-20230926/ +https://www.w3.org/TR/2023/DNOTE-edge-cloud-reqs-20230926/ + + + +Dapeng(Max) Liu +Michael McCool +Song XU - d:edit-context edit-context @@ -2028,7 +2056,7 @@ d:edit1160 EDIT1160 closed -[lib] Replace 'Notes:' elements with regular [ Note: ... -- end note] +[lib] Replace 'Notes:' elements with regular [ Note: ... — end note] https://wg21.link/edit1160 @@ -18297,7 +18325,7 @@ d:edit2497 EDIT2497 closed -[2018-11 LWG Motion 25] P0896R4 -- Clause 17 +[2018-11 LWG Motion 25] P0896R4 — Clause 17 https://wg21.link/edit2497 @@ -18308,7 +18336,7 @@ d:edit2498 EDIT2498 closed -[2018-11 LWG Motion 25] P0896R4 -- Clause 18 +[2018-11 LWG Motion 25] P0896R4 — Clause 18 https://wg21.link/edit2498 @@ -18319,7 +18347,7 @@ d:edit2499 EDIT2499 closed -[2018-11 LWG Motion 25] P0896R4 -- Clause 19 +[2018-11 LWG Motion 25] P0896R4 — Clause 19 https://wg21.link/edit2499 @@ -18352,7 +18380,7 @@ d:edit2500 EDIT2500 closed -[2018-11 LWG Motion 25] P0896R4 -- Clause 22 +[2018-11 LWG Motion 25] P0896R4 — Clause 22 https://wg21.link/edit2500 @@ -18363,7 +18391,7 @@ d:edit2501 EDIT2501 closed -[2018-11 LWG Motion 25] P0896R4 -- Clause 24 +[2018-11 LWG Motion 25] P0896R4 — Clause 24 https://wg21.link/edit2501 @@ -61765,1376 +61793,13839 @@ https://wg21.link/edit6066 - -d:edit607 -EDIT607 +d:edit6067 +EDIT6067 -closed -[defns.const.subexpr] Remove superfluous words -https://wg21.link/edit607 +open +[class.default.ctor] Default member initializer and brace-or-equal-initializer +https://wg21.link/edit6067 - -d:edit608 -EDIT608 +d:edit6068 +EDIT6068 closed -[support.types] Remove "field", which is not a defined term in C++ -https://wg21.link/edit608 +[const.iterators.iterator] Add \expos comment for concept +https://wg21.link/edit6068 - -d:edit609 -EDIT609 +d:edit6069 +EDIT6069 -closed -[expr.prim.lambda] Missing capture default in example 5.1.2.4 -https://wg21.link/edit609 +open +[mdspan.layout.left.cons] Fix editorial issue in layout_left/right conversion constructors +https://wg21.link/edit6069 - -d:edit61 -EDIT61 +d:edit607 +EDIT607 closed -"sequenced after" undefined -https://wg21.link/edit61 +[defns.const.subexpr] Remove superfluous words +https://wg21.link/edit607 - -d:edit610 -EDIT610 +d:edit6070 +EDIT6070 -closed -[expr.prim.lambda] Fix the capture list in code example -https://wg21.link/edit610 +open +[intro, front] Special page header before Clause 1 +https://wg21.link/edit6070 - -d:edit611 -EDIT611 +d:edit6071 +EDIT6071 closed -[terminate] Fix typo "terminate_handleri" -https://wg21.link/edit611 +[format.range.fmtmap] Fix undefined type name +https://wg21.link/edit6071 - -d:edit612 -EDIT612 +d:edit6072 +EDIT6072 -closed -Improper usage of "comparison operator" -https://wg21.link/edit612 +open +<print> header is missing in Table 118 +https://wg21.link/edit6072 - -d:edit613 -EDIT613 +d:edit6073 +EDIT6073 closed -[expr.const]p7 should be closer to p3 -https://wg21.link/edit613 +[func.require] Use math font for non-code conditions +https://wg21.link/edit6073 - -d:edit614 -EDIT614 +d:edit6074 +EDIT6074 closed -Remove incorrect "shall" -https://wg21.link/edit614 +[temp.over.link] Comment cut off in example 1 +https://wg21.link/edit6074 - -d:edit615 -EDIT615 +d:edit6075 +EDIT6075 closed -[unique.ptr.runtime.ctor] Fix format -https://wg21.link/edit615 +[support.c.headers.other] Ambiguity in the requirements for includes +https://wg21.link/edit6075 - -d:edit616 -EDIT616 +d:edit6076 +EDIT6076 -closed -Swap effects of `basic_regex::operator=` and `assign` -https://wg21.link/edit616 +open +[dcl.attr.grammar] Add note about the semantic ignorability of standard attributes CWG2695 +https://wg21.link/edit6076 - -d:edit617 -EDIT617 +d:edit6077 +EDIT6077 -closed -Re-synchronize generated grammar.tex with grambase.tex. -https://wg21.link/edit617 +open +[util.smartptr.atomic.general] Remove redundant explicit construction of return types +https://wg21.link/edit6077 - -d:edit618 -EDIT618 +d:edit6078 +EDIT6078 closed -Synchronize grammar for namespace-name -https://wg21.link/edit618 +[iostream.cons] Add std:: qualified for move +https://wg21.link/edit6078 - -d:edit619 -EDIT619 +d:edit6079 +EDIT6079 -closed -Uniform "ones' complement" and "two's complement" -https://wg21.link/edit619 +open +[tab:iostreams.summary] Add missing header in summary table +https://wg21.link/edit6079 - -d:edit62 -EDIT62 +d:edit608 +EDIT608 closed -[vector.bool]/1 typos -https://wg21.link/edit62 +[support.types] Remove "field", which is not a defined term in C++ +https://wg21.link/edit608 - -d:edit620 -EDIT620 +d:edit6080 +EDIT6080 -closed -The libreqtab4 LaTeX environment doesn't work -https://wg21.link/edit620 +open +[locale.codecvt.general] codecvt_base names missing from index of library names +https://wg21.link/edit6080 - -d:edit621 -EDIT621 +d:edit6081 +EDIT6081 -closed -Index subentries for make_error_code and make_error_condition -https://wg21.link/edit621 +open +[dcl.stc]/1 and [dcl.typedef]/1 each forbid "static typedef" +https://wg21.link/edit6081 - -d:edit622 -EDIT622 +d:edit6082 +EDIT6082 -closed -No \idxhdr index entry for <chrono> -https://wg21.link/edit622 +open +Section name of Header synopsis +https://wg21.link/edit6082 - -d:edit623 -EDIT623 +d:edit6083 +EDIT6083 -closed -Why does the size of the PDF fluctuate between 5 MB and 11 MB? -https://wg21.link/edit623 +open +[2023-02 CWG Motion 1] P2796R0 CWG ready issues except 2518, 2521, 2659, 2674, 2678, and 2691 +https://wg21.link/edit6083 - -d:edit624 -EDIT624 +d:edit6084 +EDIT6084 -closed -[diff.class] Fix typo "choise" -https://wg21.link/edit624 +open +[2023-02 CWG Motion 2] P2796R0 issues 2674 and 2691 +https://wg21.link/edit6084 - -d:edit625 -EDIT625 +d:edit6085 +EDIT6085 -closed -[conv.qual] Fix typo "desecender" -https://wg21.link/edit625 +open +[2023-02 CWG Motion 3] P2796R0 issue 2518 Conformance requirements and #error/#warning +https://wg21.link/edit6085 - -d:edit626 -EDIT626 +d:edit6086 +EDIT6086 -closed -[futures.shared_future] Remove duplicated word "shared" -https://wg21.link/edit626 +open +[2023-02 CWG Motion 4] P2796R0 issue 2521 User-defined literals and reserved identifiers +https://wg21.link/edit6086 - -d:edit627 -EDIT627 +d:edit6087 +EDIT6087 -closed -Delete the notionally redundant 'update' when describing actions upon ... -https://wg21.link/edit627 +open +[2023-02 CWG Motion 5] P2796R0 issue 2678 std::source_location::current is unimplementable +https://wg21.link/edit6087 - -d:edit628 -EDIT628 +d:edit6088 +EDIT6088 -closed -user-defined versus user defined -https://wg21.link/edit628 +open +[2023-02 CWG Motion 6] P2796R0 issue 2659 Missing feature-test macro for lifetime extension in range-for loop +https://wg21.link/edit6088 - -d:edit629 -EDIT629 +d:edit6089 +EDIT6089 -closed -[meta.trans.other] Table 57 uses the layout for type predicates (Tables 47-49,51) instead of type transformations/queries (Tables 50,52-56) -https://wg21.link/edit629 +open +[2023-02 CWG Motion 8] P2736R2 Referencing The Unicode Standard +https://wg21.link/edit6089 - -d:edit63 -EDIT63 +d:edit609 +EDIT609 closed -[streambuf.virt.put]/5 "NULL non-value" -https://wg21.link/edit63 +[expr.prim.lambda] Missing capture default in example 5.1.2.4 +https://wg21.link/edit609 - -d:edit630 -EDIT630 +d:edit6090 +EDIT6090 -closed -inconsistent terminology: "key equality" predicate" versus "key equality function" -https://wg21.link/edit630 +open +[2023-02 CWG Motion 9] P2788R0 Linkage for modular constants +https://wg21.link/edit6090 - -d:edit631 -EDIT631 +d:edit6091 +EDIT6091 -closed -[lex] Remove spurious whitespace -https://wg21.link/edit631 +open +[2023-02 CWG Motion 10] P2797R0 Proposed resolution for CWG2692 Static and explicit object member functions with the same parameter-type-lists +https://wg21.link/edit6091 - -d:edit632 -EDIT632 +d:edit6092 +EDIT6092 -closed -[diff] Use \Cpp macro -https://wg21.link/edit632 +open +[2023-02 LWG Motion 2] P2789R0 C++ Standard Library Issues to be moved in Issaquah, Feb. 2023 +https://wg21.link/edit6092 - -d:edit633 -EDIT633 +d:edit6093 +EDIT6093 -closed -Replaced \note with \remark and \notes with \remarks. -https://wg21.link/edit633 +open +[2023-02 LWG Motion 3] Immediate issues except 3441 in P2790R0 C++ Standard Library Immediate Issues to be moved in Issaquah, Feb. 2023 +https://wg21.link/edit6093 - -d:edit634 -EDIT634 +d:edit6094 +EDIT6094 -closed -[utilities] Add some hyphenation hints for long inline expressions -https://wg21.link/edit634 +open +[2023-02 LWG Motion 4] issue 3441 in P2790R0 +https://wg21.link/edit6094 - -d:edit635 -EDIT635 +d:edit6095 +EDIT6095 -closed -Travis CI support -https://wg21.link/edit635 +open +[2023-02 LWG Motion 5] P2770R0 Stashing stashing iterators for proper flattening +https://wg21.link/edit6095 - -d:edit636 -EDIT636 +d:edit6096 +EDIT6096 -closed -Improve consistency of complexity descriptions -https://wg21.link/edit636 +open +[2023-02 LWG Motion 6] P2164R9 views::enumerate) +https://wg21.link/edit6096 - -d:edit637 -EDIT637 +d:edit6097 +EDIT6097 -closed -[re.alg.match] Fix typo "otherwis" -https://wg21.link/edit637 +open +[2023-02 LWG Motion 7] P2711R1 Making multi-param constructors of views explicit +https://wg21.link/edit6097 - -d:edit638 -EDIT638 +d:edit6098 +EDIT6098 -closed -[temp.variadic] Fix typo "evalutes" -https://wg21.link/edit638 +open +[2023-02 LWG Motion 8] P2609R3 Relaxing Ranges Just A Smidge +https://wg21.link/edit6098 - -d:edit639 -EDIT639 +d:edit6099 +EDIT6099 -closed -[macros] Make \Cpp work in PDF bookmarks again -https://wg21.link/edit639 +open +[2023-02 LWG Motion 9] P2713R1 Escaping improvements in std::format +https://wg21.link/edit6099 - -d:edit64 -EDIT64 +d:edit61 +EDIT61 closed -type-specifier-seq should be decl-specifier-seq -https://wg21.link/edit64 +"sequenced after" undefined +https://wg21.link/edit61 - -d:edit640 -EDIT640 +d:edit610 +EDIT610 closed -Add missing "*" in example. -https://wg21.link/edit640 +[expr.prim.lambda] Fix the capture list in code example +https://wg21.link/edit610 - -d:edit641 -EDIT641 +d:edit6100 +EDIT6100 -closed -Fix wrong reference -https://wg21.link/edit641 +open +[2023-02 LWG Motion 10] P2675R1 format's width estimation is too approximate and not forward compatible +https://wg21.link/edit6100 - -d:edit642 -EDIT642 +d:edit6101 +EDIT6101 -closed -[gslice.array.comp.assign] Fix missing title -https://wg21.link/edit642 +open +[2023-02 LWG Motion 11] P2572R1 std::format fill character allowances +https://wg21.link/edit6101 - -d:edit643 -EDIT643 +d:edit6102 +EDIT6102 -closed -[valarray.members] add missing \end{itemdescr} and \begin{itemdescr} -https://wg21.link/edit643 +open +[2023-02 LWG Motion 12] P2693R1 Formatting thread::id and stacktrace +https://wg21.link/edit6102 - -d:edit644 -EDIT644 +d:edit6103 +EDIT6103 -closed -[strings] Formatting and whitespace harmonization -https://wg21.link/edit644 +open +[2023-02 LWG Motion 13] P2679R2 Fixing std::start_lifetime_as for arrays +https://wg21.link/edit6103 - -d:edit645 -EDIT645 +d:edit6104 +EDIT6104 -closed -(may be wrong) [tuple.apply] Use existing std::invoke function rather than magic INVOKE -https://wg21.link/edit645 +open +[2023-02 LWG Motion 14] P2674R1 (A trait for implicit lifetime types +https://wg21.link/edit6104 - -d:edit646 -EDIT646 +d:edit6105 +EDIT6105 -closed -Move removal of bool++ from C++14 compatibility annex to C++17 annex -https://wg21.link/edit646 +open +[2023-02 LWG Motion 15] P2655R3 common_reference_t of reference_wrapper Should Be a Reference Type +https://wg21.link/edit6105 - -d:edit647 -EDIT647 +d:edit6106 +EDIT6106 -closed -References to tables in Clause 28 should use "Table" not "table" -https://wg21.link/edit647 +open +[2023-02 LWG Motion 16] P2652R2 Disallow User Specialization of allocator_traits +https://wg21.link/edit6106 - -d:edit648 -EDIT648 +d:edit6107 +EDIT6107 -closed -Filesystem library should be mentioned in 17.1 [library.general] -https://wg21.link/edit648 +open +[2023-02 LWG Motion 17] P2787R1 (pmr::generator - Promise Types are not Values +https://wg21.link/edit6107 - -d:edit649 -EDIT649 +d:edit6108 +EDIT6108 -closed -[enum.copy_options] refers to "Filesystem library" -https://wg21.link/edit649 +open +[2023-02 LWG Motion 18] P2614R2 Deprecate numeric_limits::has_denorm +https://wg21.link/edit6108 - -d:edit65 -EDIT65 +d:edit6109 +EDIT6109 -closed -[thread.thread.class] missing declaration of swap(thread&,thread&) -https://wg21.link/edit65 +open +[2023-02 LWG Motion 19] P2588R3 barrier’s phase completion guarantees +https://wg21.link/edit6109 - -d:edit650 -EDIT650 +d:edit611 +EDIT611 closed -[dcl.attr] Fix wrong source encoding -https://wg21.link/edit650 +[terminate] Fix typo "terminate_handleri" +https://wg21.link/edit611 - -d:edit651 -EDIT651 +d:edit6110 +EDIT6110 -closed -[dcl.init.aggr] Fix an example in extended init. -https://wg21.link/edit651 +open +[2023-02 LWG Motion 20] P2763R1 layout_stride static extents default constructor fix +https://wg21.link/edit6110 - -d:edit652 -EDIT652 +d:edit6111 +EDIT6111 -closed -[defns.const.subexpr] Place defintition in alphabetical order -https://wg21.link/edit652 +open +ff +https://wg21.link/edit6111 - -d:edit653 -EDIT653 +d:edit6112 +EDIT6112 -closed -"ith" should be consistently formatted -https://wg21.link/edit653 +open +[expr.const] Missing indefinite article in CWG2558 resolution +https://wg21.link/edit6112 - -d:edit654 -EDIT654 +d:edit6113 +EDIT6113 -closed -[expr.new] Terminate a parenthetical -https://wg21.link/edit654 +open +[dcl.constexpr] awkward grammar in resolution of CWG2602 +https://wg21.link/edit6113 - -d:edit655 -EDIT655 +d:edit6114 +EDIT6114 -closed -[class.conv.fct] add \tcode{} around `*` -https://wg21.link/edit655 +open +[Motions 2023 02 lwg 13] P2679R2 Fixing std::start_lifetime_as and std::start_lifetime_as_array +https://wg21.link/edit6114 - -d:edit656 -EDIT656 +d:edit6115 +EDIT6115 -closed -[expr.prim.lambda] Replace EM-SPACE(U+2003) with space(U+0020) -https://wg21.link/edit656 +open +[CWG 9] P2788R0: Linkage for modular constants +https://wg21.link/edit6115 - -d:edit657 -EDIT657 +d:edit6116 +EDIT6116 -closed -[class.mem] Convert nonstatic to non-static since the hyphenated use … -https://wg21.link/edit657 +open +[LWG 3] P2790R0 Immediate issues except 3441 +https://wg21.link/edit6116 - -d:edit658 -EDIT658 +d:edit6117 +EDIT6117 -closed -[class.mem, class.mfct.non-static] Convert nonstatic to non-static si… -https://wg21.link/edit658 +open +[LWG 4] LWG3441 Misleading note about calls to customization points +https://wg21.link/edit6117 - -d:edit659 -EDIT659 +d:edit6118 +EDIT6118 -closed -[algorithms] Use \Cpp macro -https://wg21.link/edit659 +open +[CWG 1] P2796R0 except issues 2518, 2521, 2659, 2674, 2678, and 2691 +https://wg21.link/edit6118 - -d:edit66 -EDIT66 +d:edit6119 +EDIT6119 -closed -[thread.threads] Namespace indentation -https://wg21.link/edit66 +open +[CWG 2] P2796R0 issues 2674 and 2691 +https://wg21.link/edit6119 - -d:edit660 -EDIT660 +d:edit612 +EDIT612 closed -[inclusive.scan] Add missing template parameter. -https://wg21.link/edit660 +Improper usage of "comparison operator" +https://wg21.link/edit612 - -d:edit661 -EDIT661 +d:edit6120 +EDIT6120 -closed -[tools] simplify makegram -https://wg21.link/edit661 +open +[CWG 3] P2796R0 CWG2518 Conformance requirements and #error/#warning +https://wg21.link/edit6120 - -d:edit662 -EDIT662 +d:edit6121 +EDIT6121 -closed -[intro.object] For object names, don't refer to 'name' grammar rule, … -https://wg21.link/edit662 +open +[CWG 4] P2796R0 CWG2521 User-defined literals and reserved identifiers +https://wg21.link/edit6121 - -d:edit663 -EDIT663 +d:edit6122 +EDIT6122 -closed -[cstdint] Fix macro name patterns -https://wg21.link/edit663 +open +[CWG 5] P2796R0 CWG2678 std::source_location::current is unimplementable +https://wg21.link/edit6122 - -d:edit664 -EDIT664 +d:edit6123 +EDIT6123 -closed -Whitespace in index -https://wg21.link/edit664 +open +[CWG 6] P2796R0 CWG2659 Missing feature-test macro for lifetime extension in range-fo… +https://wg21.link/edit6123 - -d:edit665 -EDIT665 +d:edit6124 +EDIT6124 -closed -Index entries for [hardware.interference] -https://wg21.link/edit665 +open +[LWG 2] P2789R0 Ready and Tentatively Ready issues +https://wg21.link/edit6124 - -d:edit666 -EDIT666 +d:edit6125 +EDIT6125 -closed -[cpp.replace] Remove a bogus grammar term -https://wg21.link/edit666 +open +[CWG 10] P2797R0 Proposed resolution for CWG2692 Static and explicit object me… +https://wg21.link/edit6125 - -d:edit667 -EDIT667 +d:edit6126 +EDIT6126 -closed -[c.limits] Remove an incorrect note about type of constant macros -https://wg21.link/edit667 +open +[CWG 8] P2736R2 Referencing The Unicode Standard +https://wg21.link/edit6126 - -d:edit668 -EDIT668 +d:edit6127 +EDIT6127 -closed -[sf.cmath] Use \indextext and \indexlibrary instead of \index. -https://wg21.link/edit668 +open +[over.over] p1 Eliminate the ambiguity in the sentence +https://wg21.link/edit6127 - -d:edit669 -EDIT669 +d:edit6128 +EDIT6128 -closed -[error.reporting] references in [filesystems] should be to [fs.err.report] instead -https://wg21.link/edit669 +open +[LWG 5] P2770R0 Stashing stashing iterators for proper flattening +https://wg21.link/edit6128 - -d:edit67 -EDIT67 +d:edit6129 +EDIT6129 -closed -[ratio.ratio] Order of ratio members -https://wg21.link/edit67 +open +[LWG 14] P2674R1 A trait for implicit lifetime types +https://wg21.link/edit6129 - -d:edit670 -EDIT670 +d:edit613 +EDIT613 closed -[numerics] Use simpler table for header content -https://wg21.link/edit670 +[expr.const]p7 should be closer to p3 +https://wg21.link/edit613 - -d:edit671 -EDIT671 +d:edit6130 +EDIT6130 -closed -Consider changing title of [fs.err.report] -https://wg21.link/edit671 +open +[LWG 17] P2787R1 pmr::generator - Promise Types are not Values +https://wg21.link/edit6130 - -d:edit672 -EDIT672 +d:edit6131 +EDIT6131 -closed -Restore links in filesystem synopses -https://wg21.link/edit672 +open +[LWG 15] P2655R3 common_reference_t of reference_wrapper Should Be a Reference… +https://wg21.link/edit6131 - -d:edit673 -EDIT673 +d:edit6132 +EDIT6132 -closed -[string.view, alg.random.sample, numerics] Use \bigoh. -https://wg21.link/edit673 +open +[temp.deduct.call] p3 Adding "including" to make the meaning clearer +https://wg21.link/edit6132 - -d:edit674 -EDIT674 +d:edit6133 +EDIT6133 -closed -Why do we name `fail` in [iostate.flags]? -https://wg21.link/edit674 +open +[pairs.pair] Consistent wording for assignment +https://wg21.link/edit6133 - -d:edit675 -EDIT675 +d:edit6134 +EDIT6134 -closed -Overlong line in [new.delete.array] -https://wg21.link/edit675 +open +[LWG 16] P2652R2 Disallow User Specialization of allocator_traits +https://wg21.link/edit6134 - -d:edit676 -EDIT676 +d:edit6135 +EDIT6135 -closed -Overlong line in [syserr.errcode.nonmembers] -https://wg21.link/edit676 +open +[LWG 6] P2164R9 views::enumerate +https://wg21.link/edit6135 - -d:edit677 -EDIT677 +d:edit6136 +EDIT6136 closed -[cpp.predefined] Use \xname in index entry for __cplusplus. -https://wg21.link/edit677 +[LWG 7] P2711R1 Making multi-param constructors of views explicit +https://wg21.link/edit6136 - -d:edit678 -EDIT678 +d:edit6137 +EDIT6137 closed -Two index entries for ~ -https://wg21.link/edit678 +[LWG 8] P2609R3 Relaxing Ranges Just A Smidge +https://wg21.link/edit6137 - -d:edit679 -EDIT679 +d:edit6138 +EDIT6138 closed -"Equivalent to return foo();" vs. "Equivalent to foo()". -https://wg21.link/edit679 +[re.results.const] Sentence can be a note +https://wg21.link/edit6138 - -d:edit68 -EDIT68 +d:edit6139 +EDIT6139 closed -"conditionally supported" -> "conditionally-supported" -https://wg21.link/edit68 +[LWG 9] P2713R1 Escaping improvements in std::format +https://wg21.link/edit6139 - -d:edit680 -EDIT680 +d:edit614 +EDIT614 closed -Need Annex C entry for hexfloat -https://wg21.link/edit680 +Remove incorrect "shall" +https://wg21.link/edit614 - -d:edit681 -EDIT681 +d:edit6140 +EDIT6140 closed -[meta.unary.prop] add missing \ in is_swappable. -https://wg21.link/edit681 +[LWG 10] P2675R1 format's width estimation is too approximate and not forward … +https://wg21.link/edit6140 - -d:edit682 -EDIT682 +d:edit6141 +EDIT6141 -closed -[intseq] consolidate <utility> docs -https://wg21.link/edit682 +open +P2614R2 Deprecate numeric_limits::has_denorm +https://wg21.link/edit6141 - -d:edit683 -EDIT683 +d:edit6142 +EDIT6142 + +open +P2588R3 barrier's phase completion guarantees +https://wg21.link/edit6142 + + + + +- +d:edit6143 +EDIT6143 + +open +[specialized.algorithms.general] The note seems incorrect +https://wg21.link/edit6143 + + + + +- +d:edit6144 +EDIT6144 + +closed +[LWG 11] P2572R1 std::format fill character allowances +https://wg21.link/edit6144 + + + + +- +d:edit6145 +EDIT6145 + +open +[range.join.with.iterator] Simplify `operator--` with *`as-lvalue`* +https://wg21.link/edit6145 + + + + +- +d:edit6146 +EDIT6146 + +open +[range.lazy.split.view] Use present only *when* `bool`-condition +https://wg21.link/edit6146 + + + + +- +d:edit6147 +EDIT6147 + +closed +[LWG 12] P2693R1 Formatting thread::id and stacktrace +https://wg21.link/edit6147 + + + + +- +d:edit6148 +EDIT6148 + +closed +[LWG 20] P2763R1 layout_stride static extents default constructor fix +https://wg21.link/edit6148 + + + + +- +d:edit6149 +EDIT6149 + +closed +[library.general,tab:thread.summary] Sync references with Clause title +https://wg21.link/edit6149 + + + + +- +d:edit615 +EDIT615 + +closed +[unique.ptr.runtime.ctor] Fix format +https://wg21.link/edit615 + + + + +- +d:edit6150 +EDIT6150 + +open +[check] Diagnose redundant `\tcode` in `\tcode{\exposid{expos-only-name}}` +https://wg21.link/edit6150 + + + + +- +d:edit6151 +EDIT6151 + +open +[ranges.syn,range.enumerate] Inconsistent _template-head_ +https://wg21.link/edit6151 + + + + +- +d:edit6152 +EDIT6152 + +closed +[allocator.requirements.general]/98 make sure SimpleAllocator meets t… +https://wg21.link/edit6152 + + + + +- +d:edit6153 +EDIT6153 + +closed +[expected.object.eq] Fix typo +https://wg21.link/edit6153 + + + + +- +d:edit6154 +EDIT6154 + +open +[flat.map] `key_equiv` might be made an aggregate to simplify wording +https://wg21.link/edit6154 + + + + +- +d:edit6155 +EDIT6155 + +open +[format.string.std] Should "UCS" be replaced with "Unicode"? +https://wg21.link/edit6155 + + + + +- +d:edit6156 +EDIT6156 + +closed +[temp.expl.spec] Use normal spacing after "etc." within a sentence +https://wg21.link/edit6156 + + + + +- +d:edit6157 +EDIT6157 + +closed +[specialized.algorithms.general] Strike the possibly wrong note +https://wg21.link/edit6157 + + + + +- +d:edit6158 +EDIT6158 + +open +[intro.object] The term "potentially-overlapping subobject" doesn't seem to exclude reference members +https://wg21.link/edit6158 + + + + +- +d:edit6159 +EDIT6159 + +closed +[expr.prim.req.compound] Move compound requirement example from inner to outer bullet +https://wg21.link/edit6159 + + + + +- +d:edit616 +EDIT616 + +closed +Swap effects of `basic_regex::operator=` and `assign` +https://wg21.link/edit616 + + + + +- +d:edit6160 +EDIT6160 + +open +[intro.object] References are not potentially-overlapping subobjects +https://wg21.link/edit6160 + + + + +- +d:edit6161 +EDIT6161 + +closed +[dcl.pre] Add missing markup that makes "fails" a definition. +https://wg21.link/edit6161 + + + + +- +d:edit6162 +EDIT6162 + +closed +[cpp.pre] Fix grammar for #elifdef +https://wg21.link/edit6162 + + + + +- +d:edit6163 +EDIT6163 + +closed +[string.capacity] Use \tcode+\placeholder for placeholder +https://wg21.link/edit6163 + + + + +- +d:edit6164 +EDIT6164 + +closed +[depr.template.template] Add cross-ref to core language +https://wg21.link/edit6164 + + + + +- +d:edit6165 +EDIT6165 + +open +[lex.pptoken] p2 Make the effect of the whitespace in preprocessing tokens clearly +https://wg21.link/edit6165 + + + + +- +d:edit6166 +EDIT6166 + +closed +[over.match.funcs.general]/9 fix the style of references +https://wg21.link/edit6166 + + + + +- +d:edit6167 +EDIT6167 + +closed +[specialized.algorithms] remove voidify completely +https://wg21.link/edit6167 + + + + +- +d:edit6168 +EDIT6168 + +open +Move [expected] from [utilities] to [diagnostics] +https://wg21.link/edit6168 + + + + +- +d:edit6169 +EDIT6169 + +open +[module.interface] Fix outdated example +https://wg21.link/edit6169 + + + + +- +d:edit617 +EDIT617 + +closed +Re-synchronize generated grammar.tex with grambase.tex. +https://wg21.link/edit617 + + + + +- +d:edit6170 +EDIT6170 + +open +[dcl.init.general] Clarify initialization of arrays +https://wg21.link/edit6170 + + + + +- +d:edit6171 +EDIT6171 + +open +[expr.prim.lambda.capture] Improve wording on anonymous unions in lambda captures +https://wg21.link/edit6171 + + + + +- +d:edit6172 +EDIT6172 + +open +[conv.qual] Remove unused definition of 'cv-qualification signature' +https://wg21.link/edit6172 + + + + +- +d:edit6173 +EDIT6173 + +open +[expr.rel] Clarify confusing wording +https://wg21.link/edit6173 + + + + +- +d:edit6174 +EDIT6174 + +open +Bring pointer terminology up to date +https://wg21.link/edit6174 + + + + +- +d:edit6175 +EDIT6175 + +open +C++ +https://wg21.link/edit6175 + + + + +- +d:edit6176 +EDIT6176 + +closed +[re.results.general] Add type of `match_results::const_iterator` to index of imp def behaviour +https://wg21.link/edit6176 + + + + +- +d:edit6177 +EDIT6177 + +open +[range.cartesian.view] Remove unused template parameter +https://wg21.link/edit6177 + + + + +- +d:edit6178 +EDIT6178 + +open +[ranges] Format of `&&` expression +https://wg21.link/edit6178 + + + + +- +d:edit6179 +EDIT6179 + +closed +[check] Add check for i.e. and e.g. followed by comma +https://wg21.link/edit6179 + + + + +- +d:edit618 +EDIT618 + +closed +Synchronize grammar for namespace-name +https://wg21.link/edit618 + + + + +- +d:edit6180 +EDIT6180 + +closed +[fs.conform.9945] Use inter-sentence spacing after an (uppercase) acronym +https://wg21.link/edit6180 + + + + +- +d:edit6181 +EDIT6181 + +closed +[temp.deduct.funcaddr] Add missing \tcode +https://wg21.link/edit6181 + + + + +- +d:edit6182 +EDIT6182 + +open +[intro.abstract] Index the you-know-what clause +https://wg21.link/edit6182 + + + + +- +d:edit6183 +EDIT6183 + +closed +[span.iterators] Fix cross-reference to container iterators +https://wg21.link/edit6183 + + + + +- +d:edit6184 +EDIT6184 + +open +[std] Update references to [container.requirements.general] +https://wg21.link/edit6184 + + + + +- +d:edit6185 +EDIT6185 + +closed +LWG3906 [atomics.types.pointer], [atomics.ref.pointer] "Undefined address" is undefined +https://wg21.link/edit6185 + + + + +- +d:edit6186 +EDIT6186 + +closed +[projected, alg.req.ind.{move, copy}, range.as.rvalue.overview] fix typo +https://wg21.link/edit6186 + + + + +- +d:edit6187 +EDIT6187 + +open +typography: `'` (straight single quote) or `’` (curly single quote) +https://wg21.link/edit6187 + + + + +- +d:edit6188 +EDIT6188 + +closed +[stmt] Fix cross-references for condition +https://wg21.link/edit6188 + + + + +- +d:edit6189 +EDIT6189 + +open +[container.alloc.reqmts] Better cross-references for allocator-aware … +https://wg21.link/edit6189 + + + + +- +d:edit619 +EDIT619 + +closed +Uniform "ones' complement" and "two's complement" +https://wg21.link/edit619 + + + + +- +d:edit6190 +EDIT6190 + +open +[expr.pre] p3 "operators that are overloaded" is not a defined term +https://wg21.link/edit6190 + + + + +- +d:edit6191 +EDIT6191 + +closed +[intro.execution] p10 Ambiguous meaning with the "and" +https://wg21.link/edit6191 + + + + +- +d:edit6192 +EDIT6192 + +closed +[container.reqmts] Fix cross-references to contiguous container +https://wg21.link/edit6192 + + + + +- +d:edit6193 +EDIT6193 + +closed +[container.requirements.general] Move exposition-only concept +https://wg21.link/edit6193 + + + + +- +d:edit6194 +EDIT6194 + +open +[class.abstract] Missing change of note for inherited member functions in P1787R6 +https://wg21.link/edit6194 + + + + +- +d:edit6195 +EDIT6195 + +open +[class.ctor.general] Remove the paragraph made dangling by P1787R6 +https://wg21.link/edit6195 + + + + +- +d:edit6196 +EDIT6196 + +open +[intro.object] Clarify [intro.object]/3.1 +https://wg21.link/edit6196 + + + + +- +d:edit6197 +EDIT6197 + +open +[range.adaptor.helpers] make as-lvalue noexcept +https://wg21.link/edit6197 + + + + +- +d:edit6198 +EDIT6198 + +closed +[range.cartesian.view] `cartesian_product_view` deduction guide should qualify `views::all_t` +https://wg21.link/edit6198 + + + + +- +d:edit6199 +EDIT6199 + +closed +[container.reqmts] Relocate more container requirements +https://wg21.link/edit6199 + + + + +- +d:edit62 +EDIT62 + +closed +[vector.bool]/1 typos +https://wg21.link/edit62 + + + + +- +d:edit620 +EDIT620 + +closed +The libreqtab4 LaTeX environment doesn't work +https://wg21.link/edit620 + + + + +- +d:edit6200 +EDIT6200 + +open +Prevent double spacing in tcode +https://wg21.link/edit6200 + + + + +- +d:edit6201 +EDIT6201 + +open +CWG 2642: [class.member.lookup] p7 Note 3 now out-of-sync +https://wg21.link/edit6201 + + + + +- +d:edit6202 +EDIT6202 + +closed +Bump value of __cpp_lib_allocate_at_least for C++23 +https://wg21.link/edit6202 + + + + +- +d:edit6203 +EDIT6203 + +open +[defns.dynamic.type] Say "most derived object" in the example +https://wg21.link/edit6203 + + + + +- +d:edit6204 +EDIT6204 + +open +N4944 pre-CD: Remaining inconsistent inline constexpr variable templates +https://wg21.link/edit6204 + + + + +- +d:edit6205 +EDIT6205 + +closed +[version.syn] bump value of __cpp_lib_allocate_at_least +https://wg21.link/edit6205 + + + + +- +d:edit6206 +EDIT6206 + +closed +Mac modernization: allow listings 1.9, and don't allow errors in a pipe +https://wg21.link/edit6206 + + + + +- +d:edit6207 +EDIT6207 + +closed +Fix date +https://wg21.link/edit6207 + + + + +- +d:edit6208 +EDIT6208 + +closed +[range.utility.conv.to] Use model instead of satisfy for range concept +https://wg21.link/edit6208 + + + + +- +d:edit6209 +EDIT6209 + +closed +[over.literal] Cross-reference deprecated grammar +https://wg21.link/edit6209 + + + + +- +d:edit621 +EDIT621 + +closed +Index subentries for make_error_code and make_error_condition +https://wg21.link/edit621 + + + + +- +d:edit6210 +EDIT6210 + +open +[basic.compound] Fix incorrect cross-reference +https://wg21.link/edit6210 + + + + +- +d:edit6211 +EDIT6211 + +open +[temp.variadic] "instantiation of the init-capture pack" vs. "instantiation of the init-capture pack declaration" +https://wg21.link/edit6211 + + + + +- +d:edit6212 +EDIT6212 + +closed +[temp.variadic] Change "init-capture pack" to "init-capture pack declaration" +https://wg21.link/edit6212 + + + + +- +d:edit6213 +EDIT6213 + +closed +[depr.atomics.volatile] Use tcode to call out template name +https://wg21.link/edit6213 + + + + +- +d:edit6214 +EDIT6214 + +open +"behavior of a program is undefined" vs "program has undefined behavior" +https://wg21.link/edit6214 + + + + +- +d:edit6215 +EDIT6215 + +closed +[dcl.decl.general] Fix cross-references +https://wg21.link/edit6215 + + + + +- +d:edit6216 +EDIT6216 + +closed +[temp.variadic] Change "init-capture pack" to "init-capture pack declaration" +https://wg21.link/edit6216 + + + + +- +d:edit6217 +EDIT6217 + +open +LaTeX: package extract abuses internal LaTeX interfaces and seems to be highly incompatible with modern versions of LaTeX +https://wg21.link/edit6217 + + + + +- +d:edit6218 +EDIT6218 + +closed +#6204 Remove remaining inline from variable templates +https://wg21.link/edit6218 + + + + +- +d:edit6219 +EDIT6219 + +open +[range.enumerate.overview] Refer to [range.adaptor.object] +https://wg21.link/edit6219 + + + + +- +d:edit622 +EDIT622 + +closed +No \idxhdr index entry for <chrono> +https://wg21.link/edit622 + + + + +- +d:edit6220 +EDIT6220 + +open +[container.opt.reqmts] Index 3-way compare for containers +https://wg21.link/edit6220 + + + + +- +d:edit6221 +EDIT6221 + +open +[container.adapters] The `flat_*` container adapters need to index their members +https://wg21.link/edit6221 + + + + +- +d:edit6222 +EDIT6222 + +open +[string.iterators] should be removed as `basic_string` is a reversible container +https://wg21.link/edit6222 + + + + +- +d:edit6223 +EDIT6223 + +open +Doubtful uses of term "lifetime" +https://wg21.link/edit6223 + + + + +- +d:edit6224 +EDIT6224 + +open +[format.string.std] Replace "Derived Extracted Property" with simply "property" +https://wg21.link/edit6224 + + + + +- +d:edit6225 +EDIT6225 + +open +[expr.shift] more precise wording for arithmetic shift rounding CWG2724 +https://wg21.link/edit6225 + + + + +- +d:edit6226 +EDIT6226 + +closed +[class.static.data] IFNDR case is not distinguished +https://wg21.link/edit6226 + + + + +- +d:edit6227 +EDIT6227 + +closed +Fix Subclause name for cstddef in headers.cpp.fs +https://wg21.link/edit6227 + + + + +- +d:edit6228 +EDIT6228 + +closed +[iterator.concept.winc] Improve implementation-defined text +https://wg21.link/edit6228 + + + + +- +d:edit6229 +EDIT6229 + +open +Index for implementation defined entities +https://wg21.link/edit6229 + + + + +- +d:edit623 +EDIT623 + +closed +Why does the size of the PDF fluctuate between 5 MB and 11 MB? +https://wg21.link/edit623 + + + + +- +d:edit6230 +EDIT6230 + +open +[coro.generator] Editorial fixes +https://wg21.link/edit6230 + + + + +- +d:edit6231 +EDIT6231 + +closed +tools: update action in GitHub workflow +https://wg21.link/edit6231 + + + + +- +d:edit6232 +EDIT6232 + +closed +[range.enumerate.view] make the format more consistent +https://wg21.link/edit6232 + + + + +- +d:edit6233 +EDIT6233 + +closed +[alg.unique] namepace -> namespace +https://wg21.link/edit6233 + + + + +- +d:edit6234 +EDIT6234 + +closed +[range.repeat.iterator] Remove redundant period +https://wg21.link/edit6234 + + + + +- +d:edit6235 +EDIT6235 + +closed +One \grammarterm{x}, two \grammarterm{x}{s} (and likewise) +https://wg21.link/edit6235 + + + + +- +d:edit6236 +EDIT6236 + +open +[defns.iostream.templates] This section doesn't seem helpful and may be misleading +https://wg21.link/edit6236 + + + + +- +d:edit6237 +EDIT6237 + +closed +[utilities] Add range_format to index of library names +https://wg21.link/edit6237 + + + + +- +d:edit6238 +EDIT6238 + +closed +[flat.map.modifiers] try_emplace_hint doesn't exist +https://wg21.link/edit6238 + + + + +- +d:edit6239 +EDIT6239 + +closed +[dcl.attr.grammar] Braces of _balanced-token_ are unaligned +https://wg21.link/edit6239 + + + + +- +d:edit624 +EDIT624 + +closed +[diff.class] Fix typo "choise" +https://wg21.link/edit624 + + + + +- +d:edit6240 +EDIT6240 + +closed +Use new term "constexpr-suitable" +https://wg21.link/edit6240 + + + + +- +d:edit6241 +EDIT6241 + +closed +[lex, expr, dcl.dcl] Disable character protrusion from BNF lines. +https://wg21.link/edit6241 + + + + +- +d:edit6242 +EDIT6242 + +closed +[cpp.predefined] Add __cpp_auto_cast +https://wg21.link/edit6242 + + + + +- +d:edit6243 +EDIT6243 + +closed +[cmp.alg] Add missing formatting for `F` +https://wg21.link/edit6243 + + + + +- +d:edit6244 +EDIT6244 + +closed +[container.alloc.reqmts] Fix incorrect change of \mandates to \expects +https://wg21.link/edit6244 + + + + +- +d:edit6245 +EDIT6245 + +closed +[flat.map.cons] Close an angle bracket +https://wg21.link/edit6245 + + + + +- +d:edit6246 +EDIT6246 + +closed +[flat.set.modifiers] `(first, last)` should be `rg` +https://wg21.link/edit6246 + + + + +- +d:edit6247 +EDIT6247 + +closed +What should the standard say for changes listed in Annex C that are backported by implementations? +https://wg21.link/edit6247 + + + + +- +d:edit6248 +EDIT6248 + +open +[flat.{map,multiset,set}.modifiers] Harmonize description of insert(s, first, last) +https://wg21.link/edit6248 + + + + +- +d:edit6249 +EDIT6249 + +closed +[flat.map.modifiers] "Arg..." should be "Args..." +https://wg21.link/edit6249 + + + + +- +d:edit625 +EDIT625 + +closed +[conv.qual] Fix typo "desecender" +https://wg21.link/edit625 + + + + +- +d:edit6250 +EDIT6250 + +open +[basic.pre] p9.1 "character" should be improved with "translation character" +https://wg21.link/edit6250 + + + + +- +d:edit6251 +EDIT6251 + +closed +[intro.execution] Fix bad function call in example +https://wg21.link/edit6251 + + + + +- +d:edit6252 +EDIT6252 + +closed +[class.base.init] use defnadj to introduce delegating and target constructor +https://wg21.link/edit6252 + + + + +- +d:edit6253 +EDIT6253 + +closed +[strings], [unord.req.general], [stringbuf.members]: Fix xrefs to [co… +https://wg21.link/edit6253 + + + + +- +d:edit6254 +EDIT6254 + +open +[ranges] Make the "Effects: Equivalent to" format consistent +https://wg21.link/edit6254 + + + + +- +d:edit6255 +EDIT6255 + +open +Fix remaining references to container requirements, and adjust subclause naming +https://wg21.link/edit6255 + + + + +- +d:edit6256 +EDIT6256 + +open +[optional.monadic] Should we remove invented variable declarations? +https://wg21.link/edit6256 + + + + +- +d:edit6257 +EDIT6257 + +open +[unord.hash] [format.formatter.spec] Rephrase "specialization of X<Y>" +https://wg21.link/edit6257 + + + + +- +d:edit6258 +EDIT6258 + +open +[dcl.init.list] Eliminate a case of "specialization of X<Y>" +https://wg21.link/edit6258 + + + + +- +d:edit6259 +EDIT6259 + +closed +[flat.multiset.defn] Fix erroneous duplication of `iter-value-type<InputIterator>` +https://wg21.link/edit6259 + + + + +- +d:edit626 +EDIT626 + +closed +[futures.shared_future] Remove duplicated word "shared" +https://wg21.link/edit626 + + + + +- +d:edit6260 +EDIT6260 + +open +[flat.multiset.defn] Fix minor errors and inconsistencies +https://wg21.link/edit6260 + + + + +- +d:edit6261 +EDIT6261 + +open +[expr.static.cast] Paragraph 8 ends in a colon +https://wg21.link/edit6261 + + + + +- +d:edit6262 +EDIT6262 + +open +[expr.prim.req.nested][expr.prim.id.general] Say the normal form of the constraint-expression +https://wg21.link/edit6262 + + + + +- +d:edit6263 +EDIT6263 + +open +[mdspan.mdspan.cons] `OtherIndexType` is not a parameter pack ([mdspan.mdspan.cons]/8.2) +https://wg21.link/edit6263 + + + + +- +d:edit6264 +EDIT6264 + +closed +[format.formattable] Add the second template argument for `basic_format_context` LWG3925 +https://wg21.link/edit6264 + + + + +- +d:edit6265 +EDIT6265 + +closed +Refer to library exposition-only function templates as templates +https://wg21.link/edit6265 + + + + +- +d:edit6266 +EDIT6266 + +open +[basic.stc.dynamic.allocation] Remove redundant 'address of' +https://wg21.link/edit6266 + + + + +- +d:edit6267 +EDIT6267 + +open +[expr.const] Check the result object of a prvalue +https://wg21.link/edit6267 + + + + +- +d:edit6268 +EDIT6268 + +open +[expr.add] Pointer subtraction when P-Q is out of range of ptrdiff_t is unclear +https://wg21.link/edit6268 + + + + +- +d:edit6269 +EDIT6269 + +open +[expr.add] Clarify note on pointer subtraction +https://wg21.link/edit6269 + + + + +- +d:edit627 +EDIT627 + +closed +Delete the notionally redundant 'update' when describing actions upon ... +https://wg21.link/edit627 + + + + +- +d:edit6270 +EDIT6270 + +open +[string.view], [string.view.comparison] Refactor string_view comparisons, exploiting rewritten candidates +https://wg21.link/edit6270 + + + + +- +d:edit6271 +EDIT6271 + +open +An "introduction" clause +https://wg21.link/edit6271 + + + + +- +d:edit6272 +EDIT6272 + +open +[basic.def.odr] Restructure requirements in p14-p15 +https://wg21.link/edit6272 + + + + +- +d:edit6273 +EDIT6273 + +open +[func.wrap.func.general], [func.wrap.move.class] Remove redundant declaration +https://wg21.link/edit6273 + + + + +- +d:edit6274 +EDIT6274 + +open +P2767R0 §3 as seen by LWG in Varna +https://wg21.link/edit6274 + + + + +- +d:edit6275 +EDIT6275 + +open +P0792R14, [func.wrap.ref.class]: Remove redundant declaration of another undefined primary template declaration +https://wg21.link/edit6275 + + + + +- +d:edit6276 +EDIT6276 + +open +[2023-06 CWG Motion 1] P2922R0 Core Language Working Group "ready" Issues +https://wg21.link/edit6276 + + + + +- +d:edit6277 +EDIT6277 + +open +[2023-06 CWG Motion 2] P2621R2 UB? In my Lexer? +https://wg21.link/edit6277 + + + + +- +d:edit6278 +EDIT6278 + +open +[2023-06 CWG Motion 3] P1854R4 Making non-encodable string literals ill-formed +https://wg21.link/edit6278 + + + + +- +d:edit6279 +EDIT6279 + +open +[2023-06 CWG Motion 4] P2361R6 Unevaluated strings +https://wg21.link/edit6279 + + + + +- +d:edit628 +EDIT628 + +closed +user-defined versus user defined +https://wg21.link/edit628 + + + + +- +d:edit6280 +EDIT6280 + +open +[2023-06 CWG Motion 5] P2558R2 Add @, $, and ` to the basic character set +https://wg21.link/edit6280 + + + + +- +d:edit6281 +EDIT6281 + +open +[2023-06 CWG Motion 6] P2738R1 constexpr cast from void*: towards constexpr type-erasure +https://wg21.link/edit6281 + + + + +- +d:edit6282 +EDIT6282 + +open +[2023-06 CWG Motion 7] P2915R0 Proposed resolution for CWG1223 +https://wg21.link/edit6282 + + + + +- +d:edit6283 +EDIT6283 + +open +[2023-06 CWG Motion 8] P2552R3 On the ignorability of standard attributes +https://wg21.link/edit6283 + + + + +- +d:edit6284 +EDIT6284 + +open +[2023-06 CWG Motion 9] P2752R3 Static storage for braced initializers +https://wg21.link/edit6284 + + + + +- +d:edit6285 +EDIT6285 + +open +[2023-06 CWG Motion 10] P2741R3 User-generated static_assert messages +https://wg21.link/edit6285 + + + + +- +d:edit6286 +EDIT6286 + +open +[2023-06 CWG Motion 11] P2169R4 A nice placeholder with no name +https://wg21.link/edit6286 + + + + +- +d:edit6287 +EDIT6287 + +open +[2023-06 LWG Motion 1] Tentatively Ready issues in P2910R0 C++ Standard Library Issues to be moved in Varna, Jun. 2023 +https://wg21.link/edit6287 + + + + +- +d:edit6288 +EDIT6288 + +open +[2023-06 LWG Motion 2] P2497R0 Testing for success or failure of <charconv> functions +https://wg21.link/edit6288 + + + + +- +d:edit6289 +EDIT6289 + +open +[2023-06 LWG Motion 3] P2592R3 Hashing support for std::chrono value classes +https://wg21.link/edit6289 + + + + +- +d:edit629 +EDIT629 + +closed +[meta.trans.other] Table 57 uses the layout for type predicates (Tables 47-49,51) instead of type transformations/queries (Tables 50,52-56) +https://wg21.link/edit629 + + + + +- +d:edit6290 +EDIT6290 + +open +[2023-06 LWG Motion 4] P2587R3 to_string or not to_string +https://wg21.link/edit6290 + + + + +- +d:edit6291 +EDIT6291 + +open +[2023-06 LWG Motion 5] P2562R1 constexpr Stable Sorting +https://wg21.link/edit6291 + + + + +- +d:edit6292 +EDIT6292 + +open +[2023-06 LWG Motion 6] P2545R4 Read-Copy Update (RCU) +https://wg21.link/edit6292 + + + + +- +d:edit6293 +EDIT6293 + +open +[2023-06 LWG Motion 7] P2530R3 Hazard Pointers for C++26 +https://wg21.link/edit6293 + + + + +- +d:edit6294 +EDIT6294 + +open +[2023-06 LWG Motion 8] P2538R1 ADL-proof std::projected +https://wg21.link/edit6294 + + + + +- +d:edit6295 +EDIT6295 + +open +[2023-06 LWG Motion 9] P2495R3 Interfacing stringstreams with string_view +https://wg21.link/edit6295 + + + + +- +d:edit6296 +EDIT6296 + +open +[2023-06 LWG Motion 10] P2510R3 Formatting pointers +https://wg21.link/edit6296 + + + + +- +d:edit6297 +EDIT6297 + +open +[2023-06 LWG Motion 11] P2198R7 Freestanding Feature-Test Macros and Implementation-Defined Extensions +https://wg21.link/edit6297 + + + + +- +d:edit6298 +EDIT6298 + +open +[2023-06 LWG Motion 12] P2338R4 Freestanding Library: Character primitives and the C library +https://wg21.link/edit6298 + + + + +- +d:edit6299 +EDIT6299 + +open +[2023-06 LWG Motion 12] P2338R4 Freestanding Library: Character primitives and the C library +https://wg21.link/edit6299 + + + + +- +d:edit63 +EDIT63 + +closed +[streambuf.virt.put]/5 "NULL non-value" +https://wg21.link/edit63 + + + + +- +d:edit630 +EDIT630 + +closed +inconsistent terminology: "key equality" predicate" versus "key equality function" +https://wg21.link/edit630 + + + + +- +d:edit6300 +EDIT6300 + +open +[2023-06 LWG Motion 13] P2013R5 Freestanding Language: Optional ::operator new +https://wg21.link/edit6300 + + + + +- +d:edit6301 +EDIT6301 + +open +[2023-06 LWG Motion 15] P2363R5 Extending associative containers with the remaining heterogeneous overloads +https://wg21.link/edit6301 + + + + +- +d:edit6302 +EDIT6302 + +open +[2023-06 LWG Motion 16] P1901R2 Enabling the Use of weak_ptr as Keys in Unordered Associative Containers +https://wg21.link/edit6302 + + + + +- +d:edit6303 +EDIT6303 + +open +[2023-06 LWG Motion 17] P1885R12 Naming Text Encodings to Demystify Them +https://wg21.link/edit6303 + + + + +- +d:edit6304 +EDIT6304 + +open +[2023-06 LWG Motion 18] P0792R14 function_ref: a type-erased callable reference +https://wg21.link/edit6304 + + + + +- +d:edit6305 +EDIT6305 + +open +[2023-06 LWG Motion 19] P2874R2 Mandating Annex D +https://wg21.link/edit6305 + + + + +- +d:edit6306 +EDIT6306 + +open +[2023-06 LWG Motion 20] P2757R3 Type checking format args +https://wg21.link/edit6306 + + + + +- +d:edit6307 +EDIT6307 + +open +[2023-06 LWG Motion 21] P2637R3 Member visit +https://wg21.link/edit6307 + + + + +- +d:edit6308 +EDIT6308 + +open +[2023-06 LWG Motion 22] P2641R4 Checking if a union alternative is active +https://wg21.link/edit6308 + + + + +- +d:edit6309 +EDIT6309 + +open +[2023-06 LWG Motion 23] P1759R6 Native handles and file streams +https://wg21.link/edit6309 + + + + +- +d:edit631 +EDIT631 + +closed +[lex] Remove spurious whitespace +https://wg21.link/edit631 + + + + +- +d:edit6310 +EDIT6310 + +open +[2023-06 LWG Motion 24] P2697R1 Interfacing bitset with string_view +https://wg21.link/edit6310 + + + + +- +d:edit6311 +EDIT6311 + +open +[2023-06 LWG Motion 25] P1383R2 More constexpr for cmath and complex +https://wg21.link/edit6311 + + + + +- +d:edit6312 +EDIT6312 + +open +[2023-06 LWG Motion 26] P2734R0 Adding the new 2022 SI prefixes +https://wg21.link/edit6312 + + + + +- +d:edit6313 +EDIT6313 + +open +[2023-06 LWG Motion 27] P2548R6 copyable_function +https://wg21.link/edit6313 + + + + +- +d:edit6314 +EDIT6314 + +open +[2023-06 LWG Motion 28] P2714R1 Bind front and back to NTTP callables +https://wg21.link/edit6314 + + + + +- +d:edit6315 +EDIT6315 + +open +[2023-06 LWG Motion 29] P2630R4 submdspan +https://wg21.link/edit6315 + + + + +- +d:edit6316 +EDIT6316 + +open +P2621R2 Undefined behavior in the lexer +https://wg21.link/edit6316 + + + + +- +d:edit6317 +EDIT6317 + +open +P1854R4 Making non-encodable string literals ill-formed +https://wg21.link/edit6317 + + + + +- +d:edit6318 +EDIT6318 + +open +P2361R6 Unevaluated strings +https://wg21.link/edit6318 + + + + +- +d:edit6319 +EDIT6319 + +open +P2558R2 Add @, $, and ` to the basic character set +https://wg21.link/edit6319 + + + + +- +d:edit632 +EDIT632 + +closed +[diff] Use \Cpp macro +https://wg21.link/edit632 + + + + +- +d:edit6320 +EDIT6320 + +open +P2738R1 constexpr cast from void*: towards constexpr type-erasure +https://wg21.link/edit6320 + + + + +- +d:edit6321 +EDIT6321 + +open +P2552R3 On the ignorability of standard attributes +https://wg21.link/edit6321 + + + + +- +d:edit6322 +EDIT6322 + +open +P2752R3 Static storage for braced initializers +https://wg21.link/edit6322 + + + + +- +d:edit6323 +EDIT6323 + +open +[README] Update Arch Linux instructions +https://wg21.link/edit6323 + + + + +- +d:edit6324 +EDIT6324 + +open +[string.view], [string.view.comparison] Refactor string_view comparis… +https://wg21.link/edit6324 + + + + +- +d:edit6325 +EDIT6325 + +open +P2741R3 User-generated static_assert messages +https://wg21.link/edit6325 + + + + +- +d:edit6326 +EDIT6326 + +open +P2169R4 A nice placeholder with no name +https://wg21.link/edit6326 + + + + +- +d:edit6327 +EDIT6327 + +open +P2874R2 Mandating Annex D +https://wg21.link/edit6327 + + + + +- +d:edit6328 +EDIT6328 + +open +[Motions 2023 06 cwg 1] P2922R0 Core Language Working Group "ready" Issues +https://wg21.link/edit6328 + + + + +- +d:edit6329 +EDIT6329 + +open +[Motion cwg 7] P2915R0 (Proposed resolution for CWG1223) +https://wg21.link/edit6329 + + + + +- +d:edit633 +EDIT633 + +closed +Replaced \note with \remark and \notes with \remarks. +https://wg21.link/edit633 + + + + +- +d:edit6330 +EDIT6330 + +open +P2497R0 Testing for success or failure of <charconv> functions +https://wg21.link/edit6330 + + + + +- +d:edit6331 +EDIT6331 + +open +P2587R3 to_string or not to_string +https://wg21.link/edit6331 + + + + +- +d:edit6332 +EDIT6332 + +open +P2592R3 Hashing support for std::chrono value classes +https://wg21.link/edit6332 + + + + +- +d:edit6333 +EDIT6333 + +closed +[lex.icon]p4 Note condition for ill-formedness off-by 1 bit/`u`-suffix +https://wg21.link/edit6333 + + + + +- +d:edit6334 +EDIT6334 + +open +Missing Licensing Information +https://wg21.link/edit6334 + + + + +- +d:edit6335 +EDIT6335 + +open +[Motion lwg 1] P2910R0 C++ Standard Library Issues +https://wg21.link/edit6335 + + + + +- +d:edit6336 +EDIT6336 + +open +[string.require]p3 Move note's contents +https://wg21.link/edit6336 + + + + +- +d:edit6337 +EDIT6337 + +closed +[expected.void.obs] Fix index for specialization +https://wg21.link/edit6337 + + + + +- +d:edit6338 +EDIT6338 + +open +[LWG 29] P2630R4 submdspan +https://wg21.link/edit6338 + + + + +- +d:edit6339 +EDIT6339 + +open +[LWG motion 28] P2714R1 Bind front and back to NTTP callables +https://wg21.link/edit6339 + + + + +- +d:edit634 +EDIT634 + +closed +[utilities] Add some hyphenation hints for long inline expressions +https://wg21.link/edit634 + + + + +- +d:edit6340 +EDIT6340 + +open +[LWG Motion 26] P2734R0 Adding the new 2022 SI prefixes +https://wg21.link/edit6340 + + + + +- +d:edit6341 +EDIT6341 + +open +P2562R1 constexpr Stable Sorting +https://wg21.link/edit6341 + + + + +- +d:edit6342 +EDIT6342 + +open +[LWG motion 27] P2548R6 copyable_function +https://wg21.link/edit6342 + + + + +- +d:edit6343 +EDIT6343 + +open +[LWG motion 25] P1383R2 More constexpr for cmath and complex +https://wg21.link/edit6343 + + + + +- +d:edit6344 +EDIT6344 + +open +P2545R4 Read-Copy Update (RCU) +https://wg21.link/edit6344 + + + + +- +d:edit6345 +EDIT6345 + +open +P2530R3 Hazard Pointers for C++26 +https://wg21.link/edit6345 + + + + +- +d:edit6346 +EDIT6346 + +open +[LWG motion 24] P2697R1 Interfacing bitset with string_view +https://wg21.link/edit6346 + + + + +- +d:edit6347 +EDIT6347 + +open +[LWG motion 23] P1759R6 Native handles and file streams +https://wg21.link/edit6347 + + + + +- +d:edit6348 +EDIT6348 + +open +[LWG motion 22] P2641R4 Checking if a union alternative is active +https://wg21.link/edit6348 + + + + +- +d:edit6349 +EDIT6349 + +open +P2538R1 ADL-proof std::projected +https://wg21.link/edit6349 + + + + +- +d:edit635 +EDIT635 + +closed +Travis CI support +https://wg21.link/edit635 + + + + +- +d:edit6350 +EDIT6350 + +open +[LWG motion 21] P2637R3 Member visit +https://wg21.link/edit6350 + + + + +- +d:edit6351 +EDIT6351 + +open +[LWG motion 20] P2757R3 Type checking format args +https://wg21.link/edit6351 + + + + +- +d:edit6352 +EDIT6352 + +open +P2495R3 Interfacing stringstreams with string_view +https://wg21.link/edit6352 + + + + +- +d:edit6353 +EDIT6353 + +open +[mdspan.submdspan] `full_extent_t` doesn't exist +https://wg21.link/edit6353 + + + + +- +d:edit6354 +EDIT6354 + +open +P2510R3 Formatting pointers +https://wg21.link/edit6354 + + + + +- +d:edit6355 +EDIT6355 + +open +P2198R7 Freestanding Feature-Test Macros and Implementation-Defined ... +https://wg21.link/edit6355 + + + + +- +d:edit6356 +EDIT6356 + +open +P2338R4 Freestanding Library: Character primitives and the C library +https://wg21.link/edit6356 + + + + +- +d:edit6357 +EDIT6357 + +open +[LWG motion 18] P0792R14 function_ref: a type-erased callable reference +https://wg21.link/edit6357 + + + + +- +d:edit6358 +EDIT6358 + +open +P2013R5 Freestanding Language: Optional ::operator new +https://wg21.link/edit6358 + + + + +- +d:edit6359 +EDIT6359 + +open +[LWG motion 17] P1885R12 Naming Text Encodings to Demystify Them +https://wg21.link/edit6359 + + + + +- +d:edit636 +EDIT636 + +closed +Improve consistency of complexity descriptions +https://wg21.link/edit636 + + + + +- +d:edit6360 +EDIT6360 + +open +P2363R5 Extending associative containers with the remaining heterogen… +https://wg21.link/edit6360 + + + + +- +d:edit6361 +EDIT6361 + +open +[LWG motion 16] P1901R2 Enabling the Use of weak_ptr as Keys in Unordered Associative… +https://wg21.link/edit6361 + + + + +- +d:edit6362 +EDIT6362 + +open +[func.wrap.ref.class, func.wrap.ref.deduct] Inconsistent parameter +https://wg21.link/edit6362 + + + + +- +d:edit6363 +EDIT6363 + +open +[meta.unary.prop.query, meta.trans.arr] Use `static_assert` instead of `assert` in example +https://wg21.link/edit6363 + + + + +- +d:edit6364 +EDIT6364 + +open +[basic.def.odr] lambda-expression example seemingly constradicts normative wording +https://wg21.link/edit6364 + + + + +- +d:edit6365 +EDIT6365 + +open +[mdspan.submdspan] Introduced `rank` should be _`rank`_ or dissolved +https://wg21.link/edit6365 + + + + +- +d:edit6366 +EDIT6366 + +closed +[expr.mul] Add missing commas after conditional and introductory phrases +https://wg21.link/edit6366 + + + + +- +d:edit6367 +EDIT6367 + +open +[namespace.std] Convert unconventional (a) and (b) notation to items +https://wg21.link/edit6367 + + + + +- +d:edit6368 +EDIT6368 + +open +[basic.def.odr] Add serial comma +https://wg21.link/edit6368 + + + + +- +d:edit6369 +EDIT6369 + +closed +[filebuf.virtuals] fix "if width if less than zero" typo +https://wg21.link/edit6369 + + + + +- +d:edit637 +EDIT637 + +closed +[re.alg.match] Fix typo "otherwis" +https://wg21.link/edit637 + + + + +- +d:edit6370 +EDIT6370 + +closed +[basic.fundamental] Wording implies existence of unique maximum value of floating-point types +https://wg21.link/edit6370 + + + + +- +d:edit6371 +EDIT6371 + +closed +[time.duration.general] Use code font for duration +https://wg21.link/edit6371 + + + + +- +d:edit6372 +EDIT6372 + +closed +[time.duration.cons] Fix redeclaration error in example +https://wg21.link/edit6372 + + + + +- +d:edit6373 +EDIT6373 + +closed +[flat.map.cons] etc.: zip_view should be views::zip +https://wg21.link/edit6373 + + + + +- +d:edit6374 +EDIT6374 + +open +[basic.life][class.dtor] Seemingly redundant normative specification for undefined behavior about double destruction +https://wg21.link/edit6374 + + + + +- +d:edit6375 +EDIT6375 + +open +[temp.point] Clarify ambiguous wording on point of instantiation +https://wg21.link/edit6375 + + + + +- +d:edit6376 +EDIT6376 + +open +[atomics.order] Clarify whether p11 makes demands towards loads, or just stores +https://wg21.link/edit6376 + + + + +- +d:edit6377 +EDIT6377 + +closed +[basic.scope.scope] Avoid hard-to-read except...unless construction. +https://wg21.link/edit6377 + + + + +- +d:edit6378 +EDIT6378 + +open +[dcl.fct.def.delete] p1 Improve the phrase for "implicitly defined as deleted" +https://wg21.link/edit6378 + + + + +- +d:edit6379 +EDIT6379 + +open +[expr.prim.id.general] p2 The first note in the rule is a bit misleading +https://wg21.link/edit6379 + + + + +- +d:edit638 +EDIT638 + +closed +[temp.variadic] Fix typo "evalutes" +https://wg21.link/edit638 + + + + +- +d:edit6380 +EDIT6380 + +open +[atomics.order] p11 - Make it recommended practice and rephrase +https://wg21.link/edit6380 + + + + +- +d:edit6381 +EDIT6381 + +closed +[dcl.enum] Fix double spaces in Example 4 +https://wg21.link/edit6381 + + + + +- +d:edit6382 +EDIT6382 + +closed +[dcl.init] Fix brace spacing inconsistencies +https://wg21.link/edit6382 + + + + +- +d:edit6383 +EDIT6383 + +open +[time.zone.leap.overview] Fix example +https://wg21.link/edit6383 + + + + +- +d:edit6384 +EDIT6384 + +open +[basic.def.odr] Make example 6 much less confusing +https://wg21.link/edit6384 + + + + +- +d:edit6385 +EDIT6385 + +closed +mdspan/layout_stride: fix missed rename in use of template argument name +https://wg21.link/edit6385 + + + + +- +d:edit6386 +EDIT6386 + +closed +[dcl.ambig.res] example has two declarations of 'y' +https://wg21.link/edit6386 + + + + +- +d:edit6387 +EDIT6387 + +closed +[dcl.ambig.res] fix double declaration of 'y' in example +https://wg21.link/edit6387 + + + + +- +d:edit6388 +EDIT6388 + +open +[priqueue.members] [queue.mod] [stack.mod] Harmonize push_range wording +https://wg21.link/edit6388 + + + + +- +d:edit6389 +EDIT6389 + +open +[basic.life][class.dtor] Turn normatively redundant paragraphs for double destruction into notes +https://wg21.link/edit6389 + + + + +- +d:edit639 +EDIT639 + +closed +[macros] Make \Cpp work in PDF bookmarks again +https://wg21.link/edit639 + + + + +- +d:edit6390 +EDIT6390 + +closed +[version.syn] Fix header references. +https://wg21.link/edit6390 + + + + +- +d:edit6391 +EDIT6391 + +closed +[version.syn] Fix <cstdlib> header reference. +https://wg21.link/edit6391 + + + + +- +d:edit6392 +EDIT6392 + +closed +[over.call.func] Example 1 - Fix misleading indentation +https://wg21.link/edit6392 + + + + +- +d:edit6393 +EDIT6393 + +open +Text encodings/locales: missing normative association? +https://wg21.link/edit6393 + + + + +- +d:edit6394 +EDIT6394 + +closed +Replace cross-references from C++20 with cross-references from C++23. +https://wg21.link/edit6394 + + + + +- +d:edit6395 +EDIT6395 + +closed +[dcl.link] Clarify the intent of CWG2483 +https://wg21.link/edit6395 + + + + +- +d:edit6396 +EDIT6396 + +open +[intro.races] Drop a possibly misleading sentence in p20 +https://wg21.link/edit6396 + + + + +- +d:edit6397 +EDIT6397 + +open +Stray \mandates in submdspan +https://wg21.link/edit6397 + + + + +- +d:edit6398 +EDIT6398 + +closed +[func.wrap.ref.class] change deduction guide to match its detailed specifications +https://wg21.link/edit6398 + + + + +- +d:edit6399 +EDIT6399 + +open +[mdspan.submdspan.submdspan] p4.3 and p5.1 could be removed +https://wg21.link/edit6399 + + + + +- +d:edit64 +EDIT64 + +closed +type-specifier-seq should be decl-specifier-seq +https://wg21.link/edit64 + + + + +- +d:edit640 +EDIT640 + +closed +Add missing "*" in example. +https://wg21.link/edit640 + + + + +- +d:edit6400 +EDIT6400 + +closed +[mdspan.submdspan.extents] Factor out common result expression +https://wg21.link/edit6400 + + + + +- +d:edit6401 +EDIT6401 + +closed +[class.copy.assign] Remove note obsoleted by CWG2586 +https://wg21.link/edit6401 + + + + +- +d:edit6402 +EDIT6402 + +closed +[input.output] Fix non-compliance Effects: Equivalent to format +https://wg21.link/edit6402 + + + + +- +d:edit6403 +EDIT6403 + +closed +[dcl.fct.def.default] Highlight different references in defaulted assignments +https://wg21.link/edit6403 + + + + +- +d:edit6404 +EDIT6404 + +open +[flat.map][flat.multimap] Exposition-only formatting for `c`, `comp`, `compare`, and `key-equiv` +https://wg21.link/edit6404 + + + + +- +d:edit6405 +EDIT6405 + +open +[temp.point] Itemize some paragraphs +https://wg21.link/edit6405 + + + + +- +d:edit6406 +EDIT6406 + +open +[span.cons][range.slide.iterator][text.encoding.members] Simplify `\tcode{\exposid{name}}` to `\exposid{name}` +https://wg21.link/edit6406 + + + + +- +d:edit6407 +EDIT6407 + +open +[expr.const.cast] "Cast away constness" covers not only const-qualification +https://wg21.link/edit6407 + + + + +- +d:edit6408 +EDIT6408 + +closed +[assets] Move separate assets into "assets" subdirectory +https://wg21.link/edit6408 + + + + +- +d:edit6409 +EDIT6409 + +open +[expr.static.cast] +https://wg21.link/edit6409 + + + + +- +d:edit641 +EDIT641 + +closed +Fix wrong reference +https://wg21.link/edit641 + + + + +- +d:edit6410 +EDIT6410 + +closed +[basic.fundamental] Clarify that table of minimum integral type widths applies only to standard integral types +https://wg21.link/edit6410 + + + + +- +d:edit6411 +EDIT6411 + +open +[conv.ptr], [conv.mem] Remove redundant text on null pointer comparisons +https://wg21.link/edit6411 + + + + +- +d:edit6412 +EDIT6412 + +closed +[intro.object] Fix cross-references for implicit object creation in the library +https://wg21.link/edit6412 + + + + +- +d:edit6413 +EDIT6413 + +open +[over.call.object] Refer to the static type of the object expression +https://wg21.link/edit6413 + + + + +- +d:edit6414 +EDIT6414 + +open +[dcl.meaning.general] Use 'declarator-id' instead of 'name' +https://wg21.link/edit6414 + + + + +- +d:edit6415 +EDIT6415 + +open +Cherrypicks for the C++23 IS +https://wg21.link/edit6415 + + + + +- +d:edit6416 +EDIT6416 + +open +[optional.optional] Remove qualified destructor calls, refactor postconditions of `swap` +https://wg21.link/edit6416 + + + + +- +d:edit6417 +EDIT6417 + +open +[module.global.frag] Simplify wording +https://wg21.link/edit6417 + + + + +- +d:edit6418 +EDIT6418 + +open +Switch to lualatex and New Computer Modern +https://wg21.link/edit6418 + + + + +- +d:edit6419 +EDIT6419 + +open +Don't define typedef-names in the library wording +https://wg21.link/edit6419 + + + + +- +d:edit642 +EDIT642 + +closed +[gslice.array.comp.assign] Fix missing title +https://wg21.link/edit642 + + + + +- +d:edit6420 +EDIT6420 + +closed +typo fix appeartain -> appertain +https://wg21.link/edit6420 + + + + +- +d:edit6421 +EDIT6421 + +open + [version.syn] Bump value of __cpp_lib_constexpr_complex +https://wg21.link/edit6421 + + + + +- +d:edit6422 +EDIT6422 + +open +[intro.object] Make the storage in the example for storage providing properly aligned +https://wg21.link/edit6422 + + + + +- +d:edit6423 +EDIT6423 + +open +[ostream.formatted.print] Use \impldef macro. +https://wg21.link/edit6423 + + + + +- +d:edit6424 +EDIT6424 + +open +[basic.lookup.qual.general] Ignore top-level cv-qualifiers for the purpose of lookup context +https://wg21.link/edit6424 + + + + +- +d:edit6425 +EDIT6425 + +open +[class.compare.default] Say subobjects of an object instead of a class +https://wg21.link/edit6425 + + + + +- +d:edit6426 +EDIT6426 + +open +[cmp.categories] Exposition-only formatting for `value` and `is-ordered` +https://wg21.link/edit6426 + + + + +- +d:edit6427 +EDIT6427 + +open +Remove `friend class` from the library wording +https://wg21.link/edit6427 + + + + +- +d:edit6428 +EDIT6428 + +open +[dcl.inline] p2 - Make it recommended practice +https://wg21.link/edit6428 + + + + +- +d:edit6429 +EDIT6429 + +open +[intro.object] Example for p10 +https://wg21.link/edit6429 + + + + +- +d:edit643 +EDIT643 + +closed +[valarray.members] add missing \end{itemdescr} and \begin{itemdescr} +https://wg21.link/edit643 + + + + +- +d:edit6430 +EDIT6430 + +closed +[memory.syn][ranges.syn] Remove redundant `// freestanding` marks for freestanding class members +https://wg21.link/edit6430 + + + + +- +d:edit6431 +EDIT6431 + +closed +[intro.races] p13 - add missing serial comma between items +https://wg21.link/edit6431 + + + + +- +d:edit6432 +EDIT6432 + +open +[basic.compound] Clarify a pointer to a non-first element object of an array +https://wg21.link/edit6432 + + + + +- +d:edit6433 +EDIT6433 + +closed +[diagnostics] Exposition-only formatting for `val_`, `cat_`, and `frames_` +https://wg21.link/edit6433 + + + + +- +d:edit6434 +EDIT6434 + +open +[intro.execution] "Sequenced before" should be a strict partial order +https://wg21.link/edit6434 + + + + +- +d:edit6435 +EDIT6435 + +open +[basic][expr] Declare but not define typedef-names in standard headers +https://wg21.link/edit6435 + + + + +- +d:edit6436 +EDIT6436 + +closed +[meta.unary.prop] Itemize p10 more +https://wg21.link/edit6436 + + + + +- +d:edit6437 +EDIT6437 + +open +[conv.mem] Itemize p2 +https://wg21.link/edit6437 + + + + +- +d:edit6438 +EDIT6438 + +open +[basic.align] Fix non-mathematical wording of p7 +https://wg21.link/edit6438 + + + + +- +d:edit6439 +EDIT6439 + +open +[expr.cond] Itemize p4 +https://wg21.link/edit6439 + + + + +- +d:edit644 +EDIT644 + +closed +[strings] Formatting and whitespace harmonization +https://wg21.link/edit644 + + + + +- +d:edit6440 +EDIT6440 + +open +[dcl.meaning.general] Remove `extern` in one case to make example 3 more informative +https://wg21.link/edit6440 + + + + +- +d:edit6441 +EDIT6441 + +open +[basic.def.odr] Fix grammatical error in p17 +https://wg21.link/edit6441 + + + + +- +d:edit6442 +EDIT6442 + +open +[basic.link] fix unusual punctuation in p4 +https://wg21.link/edit6442 + + + + +- +d:edit6443 +EDIT6443 + +closed +[temp.over] Itemize p1 +https://wg21.link/edit6443 + + + + +- +d:edit6444 +EDIT6444 + +open +[class.static.data] Fix - classes have no subobjects +https://wg21.link/edit6444 + + + + +- +d:edit6445 +EDIT6445 + +open +[class.cdtor] p2 needs changes/notes to clarify intent and limitations +https://wg21.link/edit6445 + + + + +- +d:edit6446 +EDIT6446 + +closed +[except.terminate] Fix missing introductory comma +https://wg21.link/edit6446 + + + + +- +d:edit6447 +EDIT6447 + +closed +[algorithms.parallel.defns] Insert new paragraph number for example +https://wg21.link/edit6447 + + + + +- +d:edit6448 +EDIT6448 + +closed +[depr.static.constexpr] Cross-reference core clauses +https://wg21.link/edit6448 + + + + +- +d:edit6449 +EDIT6449 + +open +[dcl.ptr] p3 - Entire normative paragraph dedicated to "See also" +https://wg21.link/edit6449 + + + + +- +d:edit645 +EDIT645 + +closed +(may be wrong) [tuple.apply] Use existing std::invoke function rather than magic INVOKE +https://wg21.link/edit645 + + + + +- +d:edit6450 +EDIT6450 + +open +[dlc.init.general] Fix wording of direct-initialization +https://wg21.link/edit6450 + + + + +- +d:edit6451 +EDIT6451 + +open +[coro.generator.class] Name the generator's second template parameter Val? +https://wg21.link/edit6451 + + + + +- +d:edit6452 +EDIT6452 + +open +[allocator.requirements.general] Fix the misuse of `launder` +https://wg21.link/edit6452 + + + + +- +d:edit6453 +EDIT6453 + +closed +[over.ics.list] Fix missing std:: in example 5 +https://wg21.link/edit6453 + + + + +- +d:edit6454 +EDIT6454 + +open +[over.ics.list] expand example 5, fix inconsistent spacing +https://wg21.link/edit6454 + + + + +- +d:edit6455 +EDIT6455 + +open +[expr.type] p1 should possibly be a note +https://wg21.link/edit6455 + + + + +- +d:edit6456 +EDIT6456 + +closed +[lib] Avoid redundant \tcode{\exposid{...}} and add a check +https://wg21.link/edit6456 + + + + +- +d:edit6457 +EDIT6457 + +open +[intro.races] Remove unclear uses of "shall" +https://wg21.link/edit6457 + + + + +- +d:edit6458 +EDIT6458 + +closed +[stdfloat.syn] Add typedefs to library index +https://wg21.link/edit6458 + + + + +- +d:edit6459 +EDIT6459 + +closed +Various editorial fixes in [time] +https://wg21.link/edit6459 + + + + +- +d:edit646 +EDIT646 + +closed +Move removal of bool++ from C++14 compatibility annex to C++17 annex +https://wg21.link/edit646 + + + + +- +d:edit6460 +EDIT6460 + +closed +[iterator.concept.readable] Add missing \expos for `indirectly-readable-impl` concept +https://wg21.link/edit6460 + + + + +- +d:edit6461 +EDIT6461 + +open +[mdspan.extents.cons] Fix typo (`dynamic_rank` => `rank_dynamic`) +https://wg21.link/edit6461 + + + + +- +d:edit6462 +EDIT6462 + +open +[defns.projection] The example isn't demonstrating the effects of customized projection +https://wg21.link/edit6462 + + + + +- +d:edit6463 +EDIT6463 + +open +[bit.cast] simplify "unsigned ordinary character type" to `unsigned char` +https://wg21.link/edit6463 + + + + +- +d:edit6464 +EDIT6464 + +closed +[basic.fundamental] Itemize p13 +https://wg21.link/edit6464 + + + + +- +d:edit6465 +EDIT6465 + +open +[basic.fundamental] Itemize uses of `void` expressions +https://wg21.link/edit6465 + + + + +- +d:edit6466 +EDIT6466 + +open +[basic.fundamental] Turn normative wording for `void` return types into a note +https://wg21.link/edit6466 + + + + +- +d:edit6467 +EDIT6467 + +open +[expr.sizeof] Turn identifier into a grammarterm +https://wg21.link/edit6467 + + + + +- +d:edit6468 +EDIT6468 + +open +[expr.sizeof] Use constexpr member in example +https://wg21.link/edit6468 + + + + +- +d:edit6469 +EDIT6469 + +open +[stmt.expr] use grammarterm for expression +https://wg21.link/edit6469 + + + + +- +d:edit647 +EDIT647 + +closed +References to tables in Clause 28 should use "Table" not "table" +https://wg21.link/edit647 + + + + +- +d:edit6470 +EDIT6470 + +open +[lex.icon] Itemize extended integer choice +https://wg21.link/edit6470 + + + + +- +d:edit6471 +EDIT6471 + +closed +[dcl.attr.noreturn] Remove redundant note +https://wg21.link/edit6471 + + + + +- +d:edit6472 +EDIT6472 + +open +[dcl.attr.nodiscard] Add example of nodiscard with message +https://wg21.link/edit6472 + + + + +- +d:edit6473 +EDIT6473 + +open +[dcl.attr.unused] Add static keyword to function in example +https://wg21.link/edit6473 + + + + +- +d:edit6474 +EDIT6474 + +open +[format.string.std]/4: sC example doesn't have enough clowns +https://wg21.link/edit6474 + + + + +- +d:edit6475 +EDIT6475 + +open +[intro.memory] Remove stray bit definitions +https://wg21.link/edit6475 + + + + +- +d:edit6476 +EDIT6476 + +open +[temp.spec.general] Instantiated definitions +https://wg21.link/edit6476 + + + + +- +d:edit6477 +EDIT6477 + +open +[dcl.stc] rearrange wording, turn typedef restriction into note +https://wg21.link/edit6477 + + + + +- +d:edit6478 +EDIT6478 + +closed +[tuple.swap] change weird 'call x with y' wording +https://wg21.link/edit6478 + + + + +- +d:edit6479 +EDIT6479 + +open +[mem.res.pool.options] Replace `field` with `member` +https://wg21.link/edit6479 + + + + +- +d:edit648 +EDIT648 + +closed +Filesystem library should be mentioned in 17.1 [library.general] +https://wg21.link/edit648 + + + + +- +d:edit6480 +EDIT6480 + +open +[intro.memory] Replace `fields` with `members` +https://wg21.link/edit6480 + + + + +- +d:edit6481 +EDIT6481 + +closed +[diff.cpp20.utilities] Hyphenate bit-fields +https://wg21.link/edit6481 + + + + +- +d:edit6482 +EDIT6482 + +open +[diff.dcl] Replace `field initializers` with `member initializers` +https://wg21.link/edit6482 + + + + +- +d:edit6483 +EDIT6483 + +open +[basic.def.odr] Greatly expand example 6 +https://wg21.link/edit6483 + + + + +- +d:edit6484 +EDIT6484 + +open +[dcl.constexpr] Modernize example of constexpr-usable functions +https://wg21.link/edit6484 + + + + +- +d:edit6485 +EDIT6485 + +closed +[lex.phases] Add iref to [cpp.include] +https://wg21.link/edit6485 + + + + +- +d:edit6486 +EDIT6486 + +open +[gram.key] Is it in a C++98 state, or is it intentional? +https://wg21.link/edit6486 + + + + +- +d:edit6487 +EDIT6487 + +open +[lex.phases],[forward.list.ops],[list.ops],[alg.unique] Hyphenate non-empty +https://wg21.link/edit6487 + + + + +- +d:edit6488 +EDIT6488 + +open +[dcl.init.string] Reword character array initialization +https://wg21.link/edit6488 + + + + +- +d:edit6489 +EDIT6489 + +open +[dcl.init.string] Shorten example string +https://wg21.link/edit6489 + + + + +- +d:edit649 +EDIT649 + +closed +[enum.copy_options] refers to "Filesystem library" +https://wg21.link/edit649 + + + + +- +d:edit6490 +EDIT6490 + +open +[dcl.init.general],[dcl.init.list],[over.ics.list] Array of characters isn't defined +https://wg21.link/edit6490 + + + + +- +d:edit6491 +EDIT6491 + +open +[basic.scope] What is type equivalence? +https://wg21.link/edit6491 + + + + +- +d:edit6492 +EDIT6492 + +open +[stmt.do] Needs some work +https://wg21.link/edit6492 + + + + +- +d:edit6493 +EDIT6493 + +open +[stmt.while] Should include grammar +https://wg21.link/edit6493 + + + + +- +d:edit6494 +EDIT6494 + +open +[stmt.while] Add grammar +https://wg21.link/edit6494 + + + + +- +d:edit6495 +EDIT6495 + +open +[stmt.do] Add grammar equivalence and reorder paragraphs +https://wg21.link/edit6495 + + + + +- +d:edit6496 +EDIT6496 + +open +[class.conv.fct] Can p8 be a note? +https://wg21.link/edit6496 + + + + +- +d:edit6497 +EDIT6497 + +open +[class.conv.ctor] Fix missing space +https://wg21.link/edit6497 + + + + +- +d:edit6498 +EDIT6498 + +open +[class.copy.assign] Definition and hyphenation issues +https://wg21.link/edit6498 + + + + +- +d:edit6499 +EDIT6499 + +open +[utility.intcmp] Simplify equivalences +https://wg21.link/edit6499 + + + + +- +d:edit65 +EDIT65 + +closed +[thread.thread.class] missing declaration of swap(thread&,thread&) +https://wg21.link/edit65 + + + + +- +d:edit650 +EDIT650 + +closed +[dcl.attr] Fix wrong source encoding +https://wg21.link/edit650 + + + + +- +d:edit6500 +EDIT6500 + +closed +[expected.object.monadic][LWG 3938] Use **this may cause compile fail +https://wg21.link/edit6500 + + + + +- +d:edit6501 +EDIT6501 + +open +[intro.races] Make reading atomic objects nondeterministic +https://wg21.link/edit6501 + + + + +- +d:edit6502 +EDIT6502 + +open +[atomics] Make notify_one nondeterministic +https://wg21.link/edit6502 + + + + +- +d:edit6503 +EDIT6503 + +open +[intro.multithread.general] Do not access functions +https://wg21.link/edit6503 + + + + +- +d:edit6504 +EDIT6504 + +closed +Broken or unsightly iref links after line breaks after #5151 +https://wg21.link/edit6504 + + + + +- +d:edit6505 +EDIT6505 + +open +[class.conv.ctor] Turn last paragraph into a note +https://wg21.link/edit6505 + + + + +- +d:edit6506 +EDIT6506 + +open +[basic.def.odr],[res.on.arguments],[futures] Fix hyphenation of "assignment operator" +https://wg21.link/edit6506 + + + + +- +d:edit6507 +EDIT6507 + +open +[stmt.return] format operand as `\term` +https://wg21.link/edit6507 + + + + +- +d:edit6508 +EDIT6508 + +open +[stmt.dcl] Add example of static/thread_local block variable initialization +https://wg21.link/edit6508 + + + + +- +d:edit6509 +EDIT6509 + +closed +tools: Use grep -F instead of fgrep +https://wg21.link/edit6509 + + + + +- +d:edit651 +EDIT651 + +closed +[dcl.init.aggr] Fix an example in extended init. +https://wg21.link/edit651 + + + + +- +d:edit6510 +EDIT6510 + +open +Section headings should use \hypertarget +https://wg21.link/edit6510 + + + + +- +d:edit6511 +EDIT6511 + +closed +[atomics.types.operations] p7 What if the supplied arguments does not denote any enumerator? +https://wg21.link/edit6511 + + + + +- +d:edit6512 +EDIT6512 + +closed +[dcl.attr.assume] Contradictory wording around contextual conversion +https://wg21.link/edit6512 + + + + +- +d:edit6513 +EDIT6513 + +closed +[rand.device] Weird text style in comment +https://wg21.link/edit6513 + + + + +- +d:edit6514 +EDIT6514 + +closed +[rand.device] Remove stray \textit. +https://wg21.link/edit6514 + + + + +- +d:edit6515 +EDIT6515 + +open +[meta.unary.op] Expand note for has_unique_object_representations +https://wg21.link/edit6515 + + + + +- +d:edit6516 +EDIT6516 + +open +Add \hypertarget to enable url links into xrefs +https://wg21.link/edit6516 + + + + +- +d:edit6517 +EDIT6517 + +closed +[check] Use single quotes for grep argument +https://wg21.link/edit6517 + + + + +- +d:edit6518 +EDIT6518 + +closed +[atomics.ref.ops], [atomics.types.operations], [util.smartptr.atomic.… +https://wg21.link/edit6518 + + + + +- +d:edit6519 +EDIT6519 + +closed +[atomics] Reword preconditions on memory_order values in a positive form +https://wg21.link/edit6519 + + + + +- +d:edit652 +EDIT652 + +closed +[defns.const.subexpr] Place defintition in alphabetical order +https://wg21.link/edit652 + + + + +- +d:edit6520 +EDIT6520 + +open +[temp.expl.spec] Turn paragraph into note +https://wg21.link/edit6520 + + + + +- +d:edit6521 +EDIT6521 + +open +[basic.link],[dcl.constexpr] "constexpr variable" is not defined +https://wg21.link/edit6521 + + + + +- +d:edit6522 +EDIT6522 + +open +[temp.expl.spec] Is p13 too limited or is it intentional? +https://wg21.link/edit6522 + + + + +- +d:edit6523 +EDIT6523 + +open +[dcl.constinit] p1 "Declaration of a variable" is broken wording +https://wg21.link/edit6523 + + + + +- +d:edit6524 +EDIT6524 + +open +[cpp] "identifier" should be `\grammarterm{identifier}` in more cases +https://wg21.link/edit6524 + + + + +- +d:edit6525 +EDIT6525 + +closed +Can we do something about "constant-initialized" vs "constant initialization" +https://wg21.link/edit6525 + + + + +- +d:edit6526 +EDIT6526 + +closed +[vector.data],[array.members] Clarify C++ boolean expression +https://wg21.link/edit6526 + + + + +- +d:edit6527 +EDIT6527 + +closed +[expr.call] Add further forward references +https://wg21.link/edit6527 + + + + +- +d:edit6528 +EDIT6528 + +open +[expr.call] Turn recursive call wording into note +https://wg21.link/edit6528 + + + + +- +d:edit6529 +EDIT6529 + +open +[cpp] `\grammarterm` overhaul +https://wg21.link/edit6529 + + + + +- +d:edit653 +EDIT653 + +closed +"ith" should be consistently formatted +https://wg21.link/edit653 + + + + +- +d:edit6530 +EDIT6530 + +closed +[mdspan.submdspan.extents] Format equations as math. +https://wg21.link/edit6530 + + + + +- +d:edit6531 +EDIT6531 + +closed +[format.string.std] Fix example +https://wg21.link/edit6531 + + + + +- +d:edit6532 +EDIT6532 + +closed +[class.access.general] Fix improper `\keyword{private}` +https://wg21.link/edit6532 + + + + +- +d:edit6533 +EDIT6533 + +closed +[lex.string] Format narrow string literals as definition +https://wg21.link/edit6533 + + + + +- +d:edit6534 +EDIT6534 + +open +[input.output] Fix missing `is \keyword{true}` or `is \keyword{false}` +https://wg21.link/edit6534 + + + + +- +d:edit6535 +EDIT6535 + +closed +[fs.path.member],[fs.path.modifier],[fs.filesystem.error.members] Fix equals postconditions involving `empty()` +https://wg21.link/edit6535 + + + + +- +d:edit6536 +EDIT6536 + +open +p2579r0 vs. https://eel.is/c++draft/basic.scope#block-2 +https://wg21.link/edit6536 + + + + +- +d:edit6537 +EDIT6537 + +open +Confusion about formatting of Cpp17 iterator requirements +https://wg21.link/edit6537 + + + + +- +d:edit6538 +EDIT6538 + +closed +Draft +https://wg21.link/edit6538 + + + + +- +d:edit6539 +EDIT6539 + +open +[expr.unary.noexcept] Replace informative wording +https://wg21.link/edit6539 + + + + +- +d:edit654 +EDIT654 + +closed +[expr.new] Terminate a parenthetical +https://wg21.link/edit654 + + + + +- +d:edit6540 +EDIT6540 + +closed +[c.math] Is there a reason why math functions such as `sqrt` are not indexed? +https://wg21.link/edit6540 + + + + +- +d:edit6541 +EDIT6541 + +closed +[temp.deduct.type] Remove excessive spacing in example +https://wg21.link/edit6541 + + + + +- +d:edit6542 +EDIT6542 + +open +[cmath.syn] Fix misaligned parameter lists +https://wg21.link/edit6542 + + + + +- +d:edit6543 +EDIT6543 + +open +[cmath.syn] Align function declarations +https://wg21.link/edit6543 + + + + +- +d:edit6544 +EDIT6544 + +open +[intro.progress],[atomics.order] Significant overlap between paragraphs +https://wg21.link/edit6544 + + + + +- +d:edit6545 +EDIT6545 + +closed +[class.local] Add comma after introductory clause +https://wg21.link/edit6545 + + + + +- +d:edit6546 +EDIT6546 + +open +[class.copy.elision] Improve reference and replace informal term +https://wg21.link/edit6546 + + + + +- +d:edit6547 +EDIT6547 + +open +[res.on.exception.handling] Use `\grammarterm` instead of informal term +https://wg21.link/edit6547 + + + + +- +d:edit6548 +EDIT6548 + +closed +Add a `ranges::to_container(T container)` which accepts a reusable container +https://wg21.link/edit6548 + + + + +- +d:edit6549 +EDIT6549 + +open +[basic.scope.scope] add reference for equivalence to [temp.over.link] +https://wg21.link/edit6549 + + + + +- +d:edit655 +EDIT655 + +closed +[class.conv.fct] add \tcode{} around `*` +https://wg21.link/edit655 + + + + +- +d:edit6550 +EDIT6550 + +closed +[diff.cpp20.thread] Fixed typo "ill formed" -> "ill-formed" +https://wg21.link/edit6550 + + + + +- +d:edit6551 +EDIT6551 + +open +[intro.races] It is slightly unclear whether a data race can occur if no bits are changed +https://wg21.link/edit6551 + + + + +- +d:edit6552 +EDIT6552 + +open +[allocator.traits.other] uses "above" to reference something 14 pages before it +https://wg21.link/edit6552 + + + + +- +d:edit6553 +EDIT6553 + +open +[temp.dep.expr] Weird circumventing of nested bullets +https://wg21.link/edit6553 + + + + +- +d:edit6554 +EDIT6554 + +closed +[basic.types.general] Apply Oxford comma consistently +https://wg21.link/edit6554 + + + + +- +d:edit6555 +EDIT6555 + +open +[expr.unary.op] Clarify through note whether indirection of a prvalue array is possible CWG2548 +https://wg21.link/edit6555 + + + + +- +d:edit6556 +EDIT6556 + +closed +[tab:headers.cpp] Rebalance table columns +https://wg21.link/edit6556 + + + + +- +d:edit6557 +EDIT6557 + +open +[temp.dep.expr] Introduce nested bullets for clarity +https://wg21.link/edit6557 + + + + +- +d:edit6558 +EDIT6558 + +open +[dcl.fct.default] Incorrect note on `this` in default arguments +https://wg21.link/edit6558 + + + + +- +d:edit6559 +EDIT6559 + +open +[conv.general] Note misuses «destination type» +https://wg21.link/edit6559 + + + + +- +d:edit656 +EDIT656 + +closed +[expr.prim.lambda] Replace EM-SPACE(U+2003) with space(U+0020) +https://wg21.link/edit656 + + + + +- +d:edit6560 +EDIT6560 + +open +Added missing template argument +https://wg21.link/edit6560 + + + + +- +d:edit6561 +EDIT6561 + +closed +[mdspan] require conversion results to be nonnegative +https://wg21.link/edit6561 + + + + +- +d:edit6562 +EDIT6562 + +open +[class.temporary] Clarify wording for lifetime of temporaries. +https://wg21.link/edit6562 + + + + +- +d:edit6563 +EDIT6563 + +open +[basic.start.main] Clarify what it means to "use" `main` +https://wg21.link/edit6563 + + + + +- +d:edit6564 +EDIT6564 + +closed +[preprocessor] [version.syn] Add index entries for "feature-test macro" in the two places they're defined +https://wg21.link/edit6564 + + + + +- +d:edit6565 +EDIT6565 + +closed +[mdspan.layout.stride.cons] Fix cross-reference +https://wg21.link/edit6565 + + + + +- +d:edit6566 +EDIT6566 + +closed +[mdspan.mdspan.overview] Don't use "requires(" for non-requires-expressions +https://wg21.link/edit6566 + + + + +- +d:edit6567 +EDIT6567 + +open +[atomics.order] Memory operations should be definitions +https://wg21.link/edit6567 + + + + +- +d:edit6568 +EDIT6568 + +open +[range.utility.conv.to] Add terminating condition for first bullet +https://wg21.link/edit6568 + + + + +- +d:edit6569 +EDIT6569 + +open +[expected.object.cons, expected.un.cons] Should we simplify `is_constructible_v<unexpected<E>, expected<U, G>&>` and its friends? +https://wg21.link/edit6569 + + + + +- +d:edit657 +EDIT657 + +closed +[class.mem] Convert nonstatic to non-static since the hyphenated use … +https://wg21.link/edit657 + + + + +- +d:edit6570 +EDIT6570 + +open +[version.syn] Put feature test macros in alphabetical order +https://wg21.link/edit6570 + + + + +- +d:edit6571 +EDIT6571 + +open +Remove section 2 from [sequence.reqmts] +https://wg21.link/edit6571 + + + + +- +d:edit6572 +EDIT6572 + +open +[class.temporary] "Temporary object" is not defined +https://wg21.link/edit6572 + + + + +- +d:edit6573 +EDIT6573 + +open +[expr.ref] p1 should use the term "sequenced" +https://wg21.link/edit6573 + + + + +- +d:edit6574 +EDIT6574 + +open +[expr.log.and],[expr.log.or] improve wording symmetry and quality +https://wg21.link/edit6574 + + + + +- +d:edit6575 +EDIT6575 + +open +[dcl.fct] It is unclear whether zero-size arrays in function parameters are allowed +https://wg21.link/edit6575 + + + + +- +d:edit6576 +EDIT6576 + +open +[over.over] p2 function type vs. pointer to function type +https://wg21.link/edit6576 + + + + +- +d:edit6577 +EDIT6577 + +open +[temp.res.general] Fix misleading example related to syntax errors +https://wg21.link/edit6577 + + + + +- +d:edit6578 +EDIT6578 + +open +[func.not.fn], [func.bind.partial] Use {term.xxx} as reference for perfect forwarding call wrapper +https://wg21.link/edit6578 + + + + +- +d:edit6579 +EDIT6579 + +open +Add memory order for atomic_flag_test_and_set and atomic_flag_clear. +https://wg21.link/edit6579 + + + + +- +d:edit658 +EDIT658 + +closed +[class.mem, class.mfct.non-static] Convert nonstatic to non-static si… +https://wg21.link/edit658 + + + + +- +d:edit6580 +EDIT6580 + +closed +[temp.over.link] Fix cross-reference introduced by P1787R6 +https://wg21.link/edit6580 + + + + +- +d:edit6581 +EDIT6581 + +closed +[const.iterators.ops] Add missing \pnum and replace returns with effects +https://wg21.link/edit6581 + + + + +- +d:edit6582 +EDIT6582 + +open +[func.wrap.func] Drop Lvalue-Callable? +https://wg21.link/edit6582 + + + + +- +d:edit6583 +EDIT6583 + +closed +[fs.filesystem.syn] Remove redundant inline +https://wg21.link/edit6583 + + + + +- +d:edit6584 +EDIT6584 + +closed +[common.iter.const] Add missing periods for Returns +https://wg21.link/edit6584 + + + + +- +d:edit6585 +EDIT6585 + +closed +[tab:headers.cpp] `<hazard_pointer>` is hazardously missing +https://wg21.link/edit6585 + + + + +- +d:edit6586 +EDIT6586 + +closed +[tab:headers.cpp] Add <hazard_pointer> +https://wg21.link/edit6586 + + + + +- +d:edit6587 +EDIT6587 + +closed +[string.cons] Remove erroneous paragraph break +https://wg21.link/edit6587 + + + + +- +d:edit6588 +EDIT6588 + +closed +[thread.lock.guard] Does not take into account storage reuse +https://wg21.link/edit6588 + + + + +- +d:edit6589 +EDIT6589 + +open +[expr.const] "Constant expression" is defined twice +https://wg21.link/edit6589 + + + + +- +d:edit659 +EDIT659 + +closed +[algorithms] Use \Cpp macro +https://wg21.link/edit659 + + + + +- +d:edit6590 +EDIT6590 + +open +[mdspan.mdspan.overview] Rename parameter ptr to p +https://wg21.link/edit6590 + + + + +- +d:edit6591 +EDIT6591 + +open +[basic.types.general] Create a term for implicit-lifetime type +https://wg21.link/edit6591 + + + + +- +d:edit6592 +EDIT6592 + +closed +Dehyphenate trivially-copyable +https://wg21.link/edit6592 + + + + +- +d:edit6593 +EDIT6593 + +open +[temp.param] Introduce term to xref structural type +https://wg21.link/edit6593 + + + + +- +d:edit6594 +EDIT6594 + +closed +[expr.prim.lambda.closure] insert an extra pnum +https://wg21.link/edit6594 + + + + +- +d:edit6595 +EDIT6595 + +closed +DIS **-011: remove unused definitions +https://wg21.link/edit6595 + + + + +- +d:edit6596 +EDIT6596 + +closed +[annex] Fix table numbering in annexes +https://wg21.link/edit6596 + + + + +- +d:edit6597 +EDIT6597 + +closed +[unique.ptr.runtime.modifiers] Fix placement of 'constexpr' +https://wg21.link/edit6597 + + + + +- +d:edit6598 +EDIT6598 + +closed +[util.smartptr.shared.cmp] Fix missing right parenthesis +https://wg21.link/edit6598 + + + + +- +d:edit6599 +EDIT6599 + +closed +[lex.name] Add cross-reference to Annex E +https://wg21.link/edit6599 + + + + +- +d:edit66 +EDIT66 + +closed +[thread.threads] Namespace indentation +https://wg21.link/edit66 + + + + +- +d:edit660 +EDIT660 + +closed +[inclusive.scan] Add missing template parameter. +https://wg21.link/edit660 + + + + +- +d:edit6600 +EDIT6600 + +closed +[intro.refs] Fix title of ISO/IEC 9899:2018 +https://wg21.link/edit6600 + + + + +- +d:edit6601 +EDIT6601 + +closed +[time.format] Make reference to ISO 8601 more precise +https://wg21.link/edit6601 + + + + +- +d:edit6602 +EDIT6602 + +open +[mdspan.layout.left] Add missing `noexcept` +https://wg21.link/edit6602 + + + + +- +d:edit6603 +EDIT6603 + +closed +[intro.scope] Clarify 'they' +https://wg21.link/edit6603 + + + + +- +d:edit6604 +EDIT6604 + +closed +[expr.const] Amend comments in example +https://wg21.link/edit6604 + + + + +- +d:edit6605 +EDIT6605 + +closed +[expr.prim.lambda.general] Add example for parsing ambiguity +https://wg21.link/edit6605 + + + + +- +d:edit6606 +EDIT6606 + +closed +[defns.component] Remove unwarranted italics +https://wg21.link/edit6606 + + + + +- +d:edit6607 +EDIT6607 + +closed +[std] "modeled" should be spelled "modelled" +https://wg21.link/edit6607 + + + + +- +d:edit6608 +EDIT6608 + +closed +[lex.charset] Clarify normative reference to Unicode for UTF-x +https://wg21.link/edit6608 + + + + +- +d:edit6609 +EDIT6609 + +closed +[type.traits] Add references to tables +https://wg21.link/edit6609 + + + + +- +d:edit661 +EDIT661 + +closed +[tools] simplify makegram +https://wg21.link/edit661 + + + + +- +d:edit6610 +EDIT6610 + +open +Avoid 'must' +https://wg21.link/edit6610 + + + + +- +d:edit6611 +EDIT6611 + +closed +Notes with requirements +https://wg21.link/edit6611 + + + + +- +d:edit6612 +EDIT6612 + +open +[forward.iterators] Consistently use Cpp17 requirements +https://wg21.link/edit6612 + + + + +- +d:edit6613 +EDIT6613 + +open +[iterator.requirements.general] Clarify non-forward iterator +https://wg21.link/edit6613 + + + + +- +d:edit6614 +EDIT6614 + +closed +[defns.{impl.limits,iostream.templates}] Use singular +https://wg21.link/edit6614 + + + + +- +d:edit6615 +EDIT6615 + +closed +Replace "C Standard" with "ISO/IEC 9899:2018" and define "C standard library" +https://wg21.link/edit6615 + + + + +- +d:edit6616 +EDIT6616 + +closed +[stmt.return] p5 "which" is ambiguous in the sentence +https://wg21.link/edit6616 + + + + +- +d:edit6617 +EDIT6617 + +open +[basic.scope.block] et al. - Ambiguous definition of "local variable" +https://wg21.link/edit6617 + + + + +- +d:edit6618 +EDIT6618 + +closed +[basic.lval] Turn reference paragraph into note +https://wg21.link/edit6618 + + + + +- +d:edit6619 +EDIT6619 + +closed +[class.copy.assign] Remove a superfluous note. +https://wg21.link/edit6619 + + + + +- +d:edit662 +EDIT662 + +closed +[intro.object] For object names, don't refer to 'name' grammar rule, … +https://wg21.link/edit662 + + + + +- +d:edit6620 +EDIT6620 + +open +Various minor editorial cleanups +https://wg21.link/edit6620 + + + + +- +d:edit6621 +EDIT6621 + +open +Fix a few small bugs in submdspan +https://wg21.link/edit6621 + + + + +- +d:edit6622 +EDIT6622 + +open +[mdspan.accessor.reqmts] Name type `A` to `ACC`? +https://wg21.link/edit6622 + + + + +- +d:edit6623 +EDIT6623 + +closed +[intro.defs, dcl.init.list] Move definition of direct-non-list-init +https://wg21.link/edit6623 + + + + +- +d:edit6624 +EDIT6624 + +closed +[xrefdelta] Remove mention of removals that are now already in C++23 +https://wg21.link/edit6624 + + + + +- +d:edit6625 +EDIT6625 + +open +[expr.prim.lambda.general] Added missing definition for the term "lambda". +https://wg21.link/edit6625 + + + + +- +d:edit6626 +EDIT6626 + +open +[stmt.if] Add an example for the value-dependence of the condition after instantiation +https://wg21.link/edit6626 + + + + +- +d:edit6627 +EDIT6627 + +closed +[lex.phases] Whitespace characters should be kept for the sake of the stringize operator +https://wg21.link/edit6627 + + + + +- +d:edit6628 +EDIT6628 + +closed +[basic.pre] Eliminate the redundant block-declaration +https://wg21.link/edit6628 + + + + +- +d:edit6629 +EDIT6629 + +closed +[streambuf.general] `std::basic_streambuf` is not an abstract class +https://wg21.link/edit6629 + + + + +- +d:edit663 +EDIT663 + +closed +[cstdint] Fix macro name patterns +https://wg21.link/edit663 + + + + +- +d:edit6630 +EDIT6630 + +closed +[streambuf.general] Strike "abstract" from "basic_streambuf serves as an abstract base class" +https://wg21.link/edit6630 + + + + +- +d:edit6631 +EDIT6631 + +closed +[std] Use more \defnadj +https://wg21.link/edit6631 + + + + +- +d:edit6632 +EDIT6632 + +closed +[span.cons] Add `std::` for `data(arr)` +https://wg21.link/edit6632 + + + + +- +d:edit6633 +EDIT6633 + +open +[ranges] Reuse `bidirectional-common` concept? +https://wg21.link/edit6633 + + + + +- +d:edit6634 +EDIT6634 + +closed +code example in [expr.await] +https://wg21.link/edit6634 + + + + +- +d:edit6635 +EDIT6635 + +closed +[stack.syn, queue.syn] Show `formatter` specializations in the synopses +https://wg21.link/edit6635 + + + + +- +d:edit6636 +EDIT6636 + +closed +[format.formatter.spec] Add missing include to example +https://wg21.link/edit6636 + + + + +- +d:edit6637 +EDIT6637 + +open +[expr.prim.lambda.closure] Improve some parallel grammar +https://wg21.link/edit6637 + + + + +- +d:edit6638 +EDIT6638 + +closed +Teste +https://wg21.link/edit6638 + + + + +- +d:edit6639 +EDIT6639 + +closed +[intro.refs] Move nicknames for standards to relevant subclauses +https://wg21.link/edit6639 + + + + +- +d:edit664 +EDIT664 + +closed +Whitespace in index +https://wg21.link/edit664 + + + + +- +d:edit6640 +EDIT6640 + +closed +[func.require] Unclear use of "shall" LWG4007 +https://wg21.link/edit6640 + + + + +- +d:edit6641 +EDIT6641 + +open +[flat.map.capacity]: Where are the other `flat_meow`'s correspondences about this? +https://wg21.link/edit6641 + + + + +- +d:edit6642 +EDIT6642 + +closed +[class.conv.fct] Fix reference to 'ref-qualifier-seq' +https://wg21.link/edit6642 + + + + +- +d:edit6643 +EDIT6643 + +closed +[mdspan.submdspan] Add missing definitions for full_extent_t and full_extent +https://wg21.link/edit6643 + + + + +- +d:edit6644 +EDIT6644 + +closed +[defns.character.container] Improve note +https://wg21.link/edit6644 + + + + +- +d:edit6645 +EDIT6645 + +closed +[string.capacity] Remove parentheses from "reserve()" +https://wg21.link/edit6645 + + + + +- +d:edit6646 +EDIT6646 + +open +[conv.general, expr.static.cast] Remove inappropriate "temporary" +https://wg21.link/edit6646 + + + + +- +d:edit6647 +EDIT6647 + +open +[diff] Annex C missing some header additions +https://wg21.link/edit6647 + + + + +- +d:edit6648 +EDIT6648 + +open +[diff.cpp23.library] Note new headers in C++26 +https://wg21.link/edit6648 + + + + +- +d:edit6649 +EDIT6649 + +open +[diff.cpp03.library] Two entries for <typeinfo> in the index of library headers +https://wg21.link/edit6649 + + + + +- +d:edit665 +EDIT665 + +closed +Index entries for [hardware.interference] +https://wg21.link/edit665 + + + + +- +d:edit6650 +EDIT6650 + +closed +[dcl.init.ref] Clarify "related type" +https://wg21.link/edit6650 + + + + +- +d:edit6651 +EDIT6651 + +open +Should we stop talking about related types? +https://wg21.link/edit6651 + + + + +- +d:edit6652 +EDIT6652 + +closed +Change floating point wording from mantissa to significand +https://wg21.link/edit6652 + + + + +- +d:edit6653 +EDIT6653 + +closed +[algorithms] Change stable tag 'mismatch' to alg.mismatch, so that it is consistent with similar labels in the same section +https://wg21.link/edit6653 + + + + +- +d:edit6654 +EDIT6654 + +open +[ranges] Introduce `bidirectional-common` and `random-access-sized` to simplify concept spelling +https://wg21.link/edit6654 + + + + +- +d:edit6655 +EDIT6655 + +open +[2023-11 CWG Motion 1] Core Language Working Group "ready" Issues for the November, 2023 meeting +https://wg21.link/edit6655 + + + + +- +d:edit6656 +EDIT6656 + +open +[2023-11 CWG Motion 2] Template parameter initialization +https://wg21.link/edit6656 + + + + +- +d:edit6657 +EDIT6657 + +open +[2023-11 CWG Motion 3] Pack Indexing +https://wg21.link/edit6657 + + + + +- +d:edit6658 +EDIT6658 + +open +[2023-11 CWG Motion 4] Remove Deprecated Arithmetic Conversion on Enumerations From C++26 +https://wg21.link/edit6658 + + + + +- +d:edit6659 +EDIT6659 + +open +[2023-11 LWG Motion 1] C++ Standard Library Issues to be moved in Kona, Nov. 2023 +https://wg21.link/edit6659 + + + + +- +d:edit666 +EDIT666 + +closed +[cpp.replace] Remove a bogus grammar term +https://wg21.link/edit666 + + + + +- +d:edit6660 +EDIT6660 + +open +[2023-11 LWG Motion 2] Saturation arithmetic +https://wg21.link/edit6660 + + + + +- +d:edit6661 +EDIT6661 + +open +[2023-11 LWG Motion 3] Freestanding Library: Partial Classes +https://wg21.link/edit6661 + + + + +- +d:edit6662 +EDIT6662 + +open +[2023-11 LWG Motion 4] Debugging Support +https://wg21.link/edit6662 + + + + +- +d:edit6663 +EDIT6663 + +open +[2023-11 LWG Motion 5] Runtime format strings +https://wg21.link/edit6663 + + + + +- +d:edit6664 +EDIT6664 + +open +[2023-11 LWG Motion 6] Runtime format strings II +https://wg21.link/edit6664 + + + + +- +d:edit6665 +EDIT6665 + +open +[2023-11 LWG Motion 7] Fix formatting of code units as integers +https://wg21.link/edit6665 + + + + +- +d:edit6666 +EDIT6666 + +open +[2023-11 LWG Motion 8] A new specification for std::generate_canonical +https://wg21.link/edit6666 + + + + +- +d:edit6667 +EDIT6667 + +open +[2023-11 LWG Motion 9] std::span over an initializer list +https://wg21.link/edit6667 + + + + +- +d:edit6668 +EDIT6668 + +open +[2023-11 LWG Motion 10] span.at() +https://wg21.link/edit6668 + + + + +- +d:edit6669 +EDIT6669 + +open +[2023-11 LWG Motion 11] Remove Deprecated std::allocator Typedef From C++26 +https://wg21.link/edit6669 + + + + +- +d:edit667 +EDIT667 + +closed +[c.limits] Remove an incorrect note about type of constant macros +https://wg21.link/edit667 + + + + +- +d:edit6670 +EDIT6670 + +open +[2023-11 LWG Motion 12] Remove basic_string::reserve() From C++26 +https://wg21.link/edit6670 + + + + +- +d:edit6671 +EDIT6671 + +open +[2023-11 LWG Motion 13] Remove Deprecated Unicode Conversion Facets from C++26 +https://wg21.link/edit6671 + + + + +- +d:edit6672 +EDIT6672 + +open +[2023-11 LWG Motion 14] Add tuple protocol to complex +https://wg21.link/edit6672 + + + + +- +d:edit6673 +EDIT6673 + +open +[2023-11 LWG Motion 15] Freestanding: Remove strtok +https://wg21.link/edit6673 + + + + +- +d:edit6674 +EDIT6674 + +open +[2023-11 LWG Motion 16] Freestanding Library: inout expected span +https://wg21.link/edit6674 + + + + +- +d:edit6675 +EDIT6675 + +open +[2023-11 LWG Motion 17] std::basic_const_iterator should follow its underlying type’s convertibility +https://wg21.link/edit6675 + + + + +- +d:edit6676 +EDIT6676 + +open +[2023-11 LWG Motion 18] Make assert() macro user friendly for C and C++ +https://wg21.link/edit6676 + + + + +- +d:edit6677 +EDIT6677 + +open +[2023-11 LWG Motion 19] A free function linear algebra interface based on the BLAS +https://wg21.link/edit6677 + + + + +- +d:edit6678 +EDIT6678 + +closed +Initial text for P2546, debugging support. +https://wg21.link/edit6678 + + + + +- +d:edit6679 +EDIT6679 + +open +[Motions 2023 11 cwg 3] P2662R3 Pack Indexing +https://wg21.link/edit6679 + + + + +- +d:edit668 +EDIT668 + +closed +[sf.cmath] Use \indextext and \indexlibrary instead of \index. +https://wg21.link/edit668 + + + + +- +d:edit6680 +EDIT6680 + +open +[support.initlist] Teletype font for `initializer_list` +https://wg21.link/edit6680 + + + + +- +d:edit6681 +EDIT6681 + +open +[LWG motion 4] P2546R5 Debugging Support +https://wg21.link/edit6681 + + + + +- +d:edit6682 +EDIT6682 + +closed +[intro.defs, macros] Add cross-references among definitions +https://wg21.link/edit6682 + + + + +- +d:edit6683 +EDIT6683 + +open +[Motions 2023 11 cwg 4] P2864R2 Remove deprecated arithmetic conversions +https://wg21.link/edit6683 + + + + +- +d:edit6684 +EDIT6684 + +open +[Motions 2023 11 cwg 1] P3046R0 Core Language Working Group "ready" Issues +https://wg21.link/edit6684 + + + + +- +d:edit6685 +EDIT6685 + +open +[Motions 2023 11 lwg 1] P3040R0 C++ Standard Library Issues +https://wg21.link/edit6685 + + + + +- +d:edit6686 +EDIT6686 + +open +[LWG motion 2] P0543R3 Saturation arithmetic +https://wg21.link/edit6686 + + + + +- +d:edit6687 +EDIT6687 + +open +[LWG 5] P2905R2 Runtime format strings +https://wg21.link/edit6687 + + + + +- +d:edit6688 +EDIT6688 + +open +[LWG 6] P2918R2 Runtime format strings II +https://wg21.link/edit6688 + + + + +- +d:edit6689 +EDIT6689 + +open +[LWG 7] P2909R4 Fix formatting of code units as integers (Dude, where’s my char?) +https://wg21.link/edit6689 + + + + +- +d:edit669 +EDIT669 + +closed +[error.reporting] references in [filesystems] should be to [fs.err.report] instead +https://wg21.link/edit669 + + + + +- +d:edit6690 +EDIT6690 + +open +[LWG 8] P0952R2 A new specification for std::generate_canonical +https://wg21.link/edit6690 + + + + +- +d:edit6691 +EDIT6691 + +open +[LWG 9] P2447R6 std::span over an initializer list +https://wg21.link/edit6691 + + + + +- +d:edit6692 +EDIT6692 + +open +[LWG 11] P2821R5 span.at() +https://wg21.link/edit6692 + + + + +- +d:edit6693 +EDIT6693 + +open +[LWG 14] P2819R2 Add tuple protocol to complex +https://wg21.link/edit6693 + + + + +- +d:edit6694 +EDIT6694 + +open +[LWG 15] P2937R0 Freestanding: Remove strtok +https://wg21.link/edit6694 + + + + +- +d:edit6695 +EDIT6695 + +closed +Fix typo in [allocator.requirements.general] wording for `a.construct(c, args)` +https://wg21.link/edit6695 + + + + +- +d:edit6696 +EDIT6696 + +open +[Motions 2023 11 cwg 2] P2308R1 Template parameter initialization +https://wg21.link/edit6696 + + + + +- +d:edit6697 +EDIT6697 + +closed +[basic.def.odr] The set should be the potential results of E_2 +https://wg21.link/edit6697 + + + + +- +d:edit6698 +EDIT6698 + +closed +[stacktrace.format], [stacktrace.basic.hash] change rSec3 to rSec2 +https://wg21.link/edit6698 + + + + +- +d:edit6699 +EDIT6699 + +open +P2836R1 std::basic_const_iterator should follow its underlying type's convertibility +https://wg21.link/edit6699 + + + + +- +d:edit67 +EDIT67 + +closed +[ratio.ratio] Order of ratio members +https://wg21.link/edit67 + + + + +- +d:edit670 +EDIT670 + +closed +[numerics] Use simpler table for header content +https://wg21.link/edit670 + + + + +- +d:edit6700 +EDIT6700 + +open +[array,localization] Fix order of indexed `get` members +https://wg21.link/edit6700 + + + + +- +d:edit6701 +EDIT6701 + +open +[LWG 18] P2264R7 Make assert() macro user friendly for C and C++ +https://wg21.link/edit6701 + + + + +- +d:edit6702 +EDIT6702 + +open +[LWG 3] P2407R5 Freestanding Library: Partial Classes +https://wg21.link/edit6702 + + + + +- +d:edit6703 +EDIT6703 + +open +[LWG 16] P2833R2 Freestanding Library: inout expected span +https://wg21.link/edit6703 + + + + +- +d:edit6704 +EDIT6704 + +open +[LWG 19] P1673R13 A free function linear algebra interface based on the BLAS +https://wg21.link/edit6704 + + + + +- +d:edit6705 +EDIT6705 + +open +\indexlibrary-global or -member? +https://wg21.link/edit6705 + + + + +- +d:edit6706 +EDIT6706 + +closed +Updated templates.tex to make program ill formed when the set of func… +https://wg21.link/edit6706 + + + + +- +d:edit6707 +EDIT6707 + +closed +Fix indentation in [algorithms.parallel.defns] paragraph 5 example +https://wg21.link/edit6707 + + + + +- +d:edit6708 +EDIT6708 + +closed +[LWG 11] P2868 Remove deprecated typedef from std::allocator +https://wg21.link/edit6708 + + + + +- +d:edit6709 +EDIT6709 + +closed +[LWG 12] P2870R3 Remove deprecated basic_string::reserve() with no parameters +https://wg21.link/edit6709 + + + + +- +d:edit671 +EDIT671 + +closed +Consider changing title of [fs.err.report] +https://wg21.link/edit671 + + + + +- +d:edit6710 +EDIT6710 + +closed +[LWG 13] P2871R3 Remove deprecated <codecvt> header +https://wg21.link/edit6710 + + + + +- +d:edit6711 +EDIT6711 + +closed +[class.eq] Fix the return value of a defaulted == operator function +https://wg21.link/edit6711 + + + + +- +d:edit6712 +EDIT6712 + +open +[time.parse,diff.cpp17.temp] Argument-dependent lookup is spelled without a hyphen +https://wg21.link/edit6712 + + + + +- +d:edit6713 +EDIT6713 + +open +[dcl.init.ref, over.ics.ref, over.ics.rank] Avoid saying function lvalue +https://wg21.link/edit6713 + + + + +- +d:edit6714 +EDIT6714 + +open +[expected.general] Contradictory description of expected<T, E>. +https://wg21.link/edit6714 + + + + +- +d:edit6715 +EDIT6715 + +closed +[expected.general] Fix description of expected<T, E> (issue #6714.) +https://wg21.link/edit6715 + + + + +- +d:edit6716 +EDIT6716 + +open + Undefined control sequence M@currentTitle +https://wg21.link/edit6716 + + + + +- +d:edit6717 +EDIT6717 + +closed +[range.repeat.iterator] \exposid{current_} does not display italics on the web +https://wg21.link/edit6717 + + + + +- +d:edit6718 +EDIT6718 + +open +Cleanups after CWG2672 +https://wg21.link/edit6718 + + + + +- +d:edit6719 +EDIT6719 + +open +[dcl.init.list] Construction of an `initializer_list` object from a pair of pointers +https://wg21.link/edit6719 + + + + +- +d:edit672 +EDIT672 + +closed +Restore links in filesystem synopses +https://wg21.link/edit672 + + + + +- +d:edit6720 +EDIT6720 + +closed +[std] Update references from ISO 8601:2004 to ISO 8601-1:2019 +https://wg21.link/edit6720 + + + + +- +d:edit6721 +EDIT6721 + +closed +[basic.scope.pdecl] Add missing \grammarterm markup +https://wg21.link/edit6721 + + + + +- +d:edit6722 +EDIT6722 + +closed +[syntax] Change "italic" to "italic, sans-serif" +https://wg21.link/edit6722 + + + + +- +d:edit6723 +EDIT6723 + +closed +[introduction] A minimal "Introduction" clause +https://wg21.link/edit6723 + + + + +- +d:edit6724 +EDIT6724 + +closed +[intro.abstract] Actually use the phrase 'unspecified/undefined behavior' +https://wg21.link/edit6724 + + + + +- +d:edit6725 +EDIT6725 + +open +[func.wrap.ref.class] Redundant description of exposition-only data members +https://wg21.link/edit6725 + + + + +- +d:edit6726 +EDIT6726 + +closed +[intro.defs] Remove mention of symbols from ISO 80000-2 +https://wg21.link/edit6726 + + + + +- +d:edit6727 +EDIT6727 + +closed +[basic.life] Fix indentation in example +https://wg21.link/edit6727 + + + + +- +d:edit6728 +EDIT6728 + +open +[sf.cmath] contains superfluous "Effects:"-clauses +https://wg21.link/edit6728 + + + + +- +d:edit6729 +EDIT6729 + +closed +C++ +https://wg21.link/edit6729 + + + + +- +d:edit673 +EDIT673 + +closed +[string.view, alg.random.sample, numerics] Use \bigoh. +https://wg21.link/edit673 + + + + +- +d:edit6730 +EDIT6730 + +open +[charconv.from.chars] Ambiguous specification of floating-point rounding +https://wg21.link/edit6730 + + + + +- +d:edit6731 +EDIT6731 + +open +[16.4.6.10] missing dereference +https://wg21.link/edit6731 + + + + +- +d:edit6732 +EDIT6732 + +closed +[range.access.general] Use consistent "In addition to being available" form +https://wg21.link/edit6732 + + + + +- +d:edit6733 +EDIT6733 + +open +[vector.cons.10] complexity in term of copy constructor calls but T does not need to have constructors +https://wg21.link/edit6733 + + + + +- +d:edit6734 +EDIT6734 + +open +[algorithm.syn] refactors _`indirectly-binary-left-foldable`_ +https://wg21.link/edit6734 + + + + +- +d:edit6735 +EDIT6735 + +open +[algorithms] reorders the fold family +https://wg21.link/edit6735 + + + + +- +d:edit6736 +EDIT6736 + +closed +[class.friend] Fix a mistakenly monospaced "`friend` declaration" +https://wg21.link/edit6736 + + + + +- +d:edit6737 +EDIT6737 + +open +[std] Rephrase notes containing 'must' +https://wg21.link/edit6737 + + + + +- +d:edit6738 +EDIT6738 + +closed +[version.syn] New feature test macro __cpp_lib_freestanding_numeric +https://wg21.link/edit6738 + + + + +- +d:edit6739 +EDIT6739 + +open +[basic.def.odr] "Lambda scope" should be included as a possible "intervening scope" in definition of "odr-usable" +https://wg21.link/edit6739 + + + + +- +d:edit674 +EDIT674 + +closed +Why do we name `fail` in [iostate.flags]? +https://wg21.link/edit674 + + + + +- +d:edit6740 +EDIT6740 + +open +[linalg.syn] Add header index entry +https://wg21.link/edit6740 + + + + +- +d:edit6741 +EDIT6741 + +open +[basic.def] Replace \normalfont \itshape with \textnormal and \textit +https://wg21.link/edit6741 + + + + +- +d:edit6742 +EDIT6742 + +closed +Grammar railroad diagram +https://wg21.link/edit6742 + + + + +- +d:edit6743 +EDIT6743 + +open +Abolish the term "converting constructor" +https://wg21.link/edit6743 + + + + +- +d:edit6744 +EDIT6744 + +open +Abolish the term "converting constructor" +https://wg21.link/edit6744 + + + + +- +d:edit6745 +EDIT6745 + +open +[linalg] Add indexing +https://wg21.link/edit6745 + + + + +- +d:edit6746 +EDIT6746 + +open +[func.wrap.func.cons] [any.assign] Harmonize operator= wording +https://wg21.link/edit6746 + + + + +- +d:edit6747 +EDIT6747 + +open +Replace "smaller" with "lower" and "larger" with "greater"? +https://wg21.link/edit6747 + + + + +- +d:edit6748 +EDIT6748 + +open +Replace some improper occurences of `this` +https://wg21.link/edit6748 + + + + +- +d:edit6749 +EDIT6749 + +open +[expr] Missing definition of "operand" (other than "unevaluated operand") +https://wg21.link/edit6749 + + + + +- +d:edit675 +EDIT675 + +closed +Overlong line in [new.delete.array] +https://wg21.link/edit675 + + + + +- +d:edit6750 +EDIT6750 + +open +[basic.pre] 'variable' is not an entity +https://wg21.link/edit6750 + + + + +- +d:edit6751 +EDIT6751 + +closed +[basics.pre] `opaque-enum-declaration` is not a declaration +https://wg21.link/edit6751 + + + + +- +d:edit6752 +EDIT6752 + +open +[alg.min.max] Replace small/large terminology with less/greater +https://wg21.link/edit6752 + + + + +- +d:edit6753 +EDIT6753 + +open +[basic.pre] unintended re-definition of `declaration` +https://wg21.link/edit6753 + + + + +- +d:edit6754 +EDIT6754 + +closed +[linalg.syn] Add header index entry. +https://wg21.link/edit6754 + + + + +- +d:edit6755 +EDIT6755 + +open +[dcl.init.general] p20 contradicts the wording of parenthesized aggregate-initialization +https://wg21.link/edit6755 + + + + +- +d:edit6756 +EDIT6756 + +closed +[basic.scope.pdecl], [basic.types.general] Remove unnecessary whitespace +https://wg21.link/edit6756 + + + + +- +d:edit6757 +EDIT6757 + +open +[range.istream.view] Remove constexpr-ness? +https://wg21.link/edit6757 + + + + +- +d:edit6758 +EDIT6758 + +closed +[std] Remove problematic phrases from notes +https://wg21.link/edit6758 + + + + +- +d:edit6759 +EDIT6759 + +closed +[basic.scope.param] Add missing grammarterm for requires-expression +https://wg21.link/edit6759 + + + + +- +d:edit676 +EDIT676 + +closed +Overlong line in [syserr.errcode.nonmembers] +https://wg21.link/edit676 + + + + +- +d:edit6760 +EDIT6760 + +closed +[stringbuf.cons] Rename const Allocator &a to const Allocator& a +https://wg21.link/edit6760 + + + + +- +d:edit6761 +EDIT6761 + +open +[expr.new] "is required to provide" could be just "provides" +https://wg21.link/edit6761 + + + + +- +d:edit6762 +EDIT6762 + +open +[containers] contains dangling references to requirement tables +https://wg21.link/edit6762 + + + + +- +d:edit6763 +EDIT6763 + +closed +cerrno, system_error and charconv +https://wg21.link/edit6763 + + + + +- +d:edit6764 +EDIT6764 + +open +[strings] Consistently use shorter forms of return types +https://wg21.link/edit6764 + + + + +- +d:edit6765 +EDIT6765 + +open +[depr.c.macros] Missing description of `__alignof_is_defined` LWG4036 +https://wg21.link/edit6765 + + + + +- +d:edit6766 +EDIT6766 + +closed +[basic.def] Replace . with , +https://wg21.link/edit6766 + + + + +- +d:edit6767 +EDIT6767 + +open +[locale.categories] Promote remaining static const data members to `constexpr` +https://wg21.link/edit6767 + + + + +- +d:edit6768 +EDIT6768 + +closed +[text.encoding.overview] Use same parameter names as detailed description +https://wg21.link/edit6768 + + + + +- +d:edit6769 +EDIT6769 + +closed +[text.encoding.aliases] Use code font for class name in heading +https://wg21.link/edit6769 + + + + +- +d:edit677 +EDIT677 + +closed +[cpp.predefined] Use \xname in index entry for __cplusplus. +https://wg21.link/edit677 + + + + +- +d:edit6770 +EDIT6770 + +open +[std] Reword "cannot" in notes to not sound like negative permission +https://wg21.link/edit6770 + + + + +- +d:edit6771 +EDIT6771 + +open +[structure.specifications] clarify description of Results element +https://wg21.link/edit6771 + + + + +- +d:edit6772 +EDIT6772 + +closed +[exception] Paragraph two is no longer universally true +https://wg21.link/edit6772 + + + + +- +d:edit6773 +EDIT6773 + +open +[alg.ends.with]: drop_view should be views::drop +https://wg21.link/edit6773 + + + + +- +d:edit6774 +EDIT6774 + +closed +[zombie.names] Fix punctuation +https://wg21.link/edit6774 + + + + +- +d:edit6775 +EDIT6775 + +open +[thread.sema] `std::binary_semaphore` is not indexed +https://wg21.link/edit6775 + + + + +- +d:edit6776 +EDIT6776 + +open +[alg.min.max] Reword min/max/minmax in modern style +https://wg21.link/edit6776 + + + + +- +d:edit6777 +EDIT6777 + +closed +[tuple.helper] paragraph one not universally true +https://wg21.link/edit6777 + + + + +- +d:edit6778 +EDIT6778 + +closed +[class.mem.general,class.mfct.non.static] End note with . +https://wg21.link/edit6778 + + + + +- +d:edit6779 +EDIT6779 + +open +P2582R1 CTAD from inherited constructors is missing a feature-test macro bump +https://wg21.link/edit6779 + + + + +- +d:edit678 +EDIT678 + +closed +Two index entries for ~ +https://wg21.link/edit678 + + + + +- +d:edit6780 +EDIT6780 + +closed +P0493R4 atomic_fetch_max / atomic_fetch_min rejected? +https://wg21.link/edit6780 + + + + +- +d:edit6781 +EDIT6781 + +open +[semaphore.syn] add binary_semaphore to index +https://wg21.link/edit6781 + + + + +- +d:edit6782 +EDIT6782 + +open +[array.zero] p3 looks normatively redundant +https://wg21.link/edit6782 + + + + +- +d:edit6783 +EDIT6783 + +closed +[numeric.special] Fix indentation +https://wg21.link/edit6783 + + + + +- +d:edit6784 +EDIT6784 + +closed +[locale.ctype.members] Add missing parameter name +https://wg21.link/edit6784 + + + + +- +d:edit6785 +EDIT6785 + +closed +[tuple.cnstr] Do not use code font for cardinal number 1 +https://wg21.link/edit6785 + + + + +- +d:edit6786 +EDIT6786 + +closed +Fix CI +https://wg21.link/edit6786 + + + + +- +d:edit6787 +EDIT6787 + +closed +[container.alloc.reqmts] End note with . +https://wg21.link/edit6787 + + + + +- +d:edit6788 +EDIT6788 + +open +[range.drop.overview] Remove redundant \iref for subrange +https://wg21.link/edit6788 + + + + +- +d:edit6789 +EDIT6789 + +open +[headers] has incorrect name for subclause xref +https://wg21.link/edit6789 + + + + +- +d:edit679 +EDIT679 + +closed +"Equivalent to return foo();" vs. "Equivalent to foo()". +https://wg21.link/edit679 + + + + +- +d:edit6790 +EDIT6790 + +open +"truncation towards zero" could be "truncation" +https://wg21.link/edit6790 + + + + +- +d:edit6791 +EDIT6791 + +open +ISO C structs with different tags are incompatible +https://wg21.link/edit6791 + + + + +- +d:edit6792 +EDIT6792 + +open +Clarify that "constexpr iterator" is a requirement to be met +https://wg21.link/edit6792 + + + + +- +d:edit6793 +EDIT6793 + +open +[iterator.requirements.general] Clarify that "constexpr iterator" is … +https://wg21.link/edit6793 + + + + +- +d:edit6794 +EDIT6794 + +closed +[rand.dist.samp.plinear] Fix copy & paste error in Mandates +https://wg21.link/edit6794 + + + + +- +d:edit6795 +EDIT6795 + +closed +[string.view.synop,string.syn] Fix indentation +https://wg21.link/edit6795 + + + + +- +d:edit6796 +EDIT6796 + +closed +[temp.res.general] Grammatical parallelism: remove a stray "a" +https://wg21.link/edit6796 + + + + +- +d:edit6797 +EDIT6797 + +open +[dcl.type.elab] Don't start a paragraph with a note +https://wg21.link/edit6797 + + + + +- +d:edit6798 +EDIT6798 + +open +12.5 [over.built] 11, 12 +https://wg21.link/edit6798 + + + + +- +d:edit6799 +EDIT6799 + +open +[expr.dynamic.cast] The phrase "runtime check" is not quite correct +https://wg21.link/edit6799 + + + + +- +d:edit68 +EDIT68 + +closed +"conditionally supported" -> "conditionally-supported" +https://wg21.link/edit68 + + + + +- +d:edit680 +EDIT680 + +closed +Need Annex C entry for hexfloat +https://wg21.link/edit680 + + + + +- +d:edit6800 +EDIT6800 + +closed +[iterator.concept.winc] Fix typo +https://wg21.link/edit6800 + + + + +- +d:edit6801 +EDIT6801 + +closed +[format.parse.ctx] Paragraph 14 is hard to read +https://wg21.link/edit6801 + + + + +- +d:edit6802 +EDIT6802 + +closed +[mem.res.private, mem.res.monotonic.buffer.mem, re.traits] Use `*this` instead of improper `this` in the library wording +https://wg21.link/edit6802 + + + + +- +d:edit6803 +EDIT6803 + +open +[expr.call] Say "implicit object parameter" instead of "`this` parameter" +https://wg21.link/edit6803 + + + + +- +d:edit6804 +EDIT6804 + +open +[temp.arg.template] Clean up wording for template template argument matching +https://wg21.link/edit6804 + + + + +- +d:edit6805 +EDIT6805 + +closed +C++ Increment and Decrement Operators +https://wg21.link/edit6805 + + + + +- +d:edit6806 +EDIT6806 + +closed +[basic.def] Define (i++)+(++i) +https://wg21.link/edit6806 + + + + +- +d:edit6807 +EDIT6807 + +open +[array.zero] Fix triple comparison and improve wording consistency +https://wg21.link/edit6807 + + + + +- +d:edit6808 +EDIT6808 + +open +[temp.func.order] Specify to only add extra first argument if needed +https://wg21.link/edit6808 + + + + +- +d:edit6809 +EDIT6809 + +closed +[temp.deduct.general] Some cases in the example in p9 don't seem correct after CWG2672 +https://wg21.link/edit6809 + + + + +- +d:edit681 +EDIT681 + +closed +[meta.unary.prop] add missing \ in is_swappable. +https://wg21.link/edit681 + + + + +- +d:edit6810 +EDIT6810 + +closed +[thread.once.callonce] INVOKE is evaluated, not called +https://wg21.link/edit6810 + + + + +- +d:edit6811 +EDIT6811 + +open +[rand.adapt.ibits,rand.dist.pois.poisson] Add namespace std in class … +https://wg21.link/edit6811 + + + + +- +d:edit6812 +EDIT6812 + +closed +[temp.constr.order] Move index entry to correct paragraph +https://wg21.link/edit6812 + + + + +- +d:edit6813 +EDIT6813 + +closed +[format.syn] Remove obsolete index entry +https://wg21.link/edit6813 + + + + +- +d:edit6814 +EDIT6814 + +closed +[temp.pre] Add comma after introductory clause +https://wg21.link/edit6814 + + + + +- +d:edit6815 +EDIT6815 + +closed +[format.parse.ctx] improve readability of paragraphs 12 and 14 +https://wg21.link/edit6815 + + + + +- +d:edit6816 +EDIT6816 + +closed +[format.parse.ctx] add comma before 'which' +https://wg21.link/edit6816 + + + + +- +d:edit6817 +EDIT6817 + +closed +[format.parse.ctx] add comma before consisting +https://wg21.link/edit6817 + + + + +- +d:edit6818 +EDIT6818 + +closed +[string.view.ops] convert Effects to Returns paragraphs +https://wg21.link/edit6818 + + + + +- +d:edit6819 +EDIT6819 + +open +[expr.unary.op] remove redundant value category wording +https://wg21.link/edit6819 + + + + +- +d:edit682 +EDIT682 + +closed +[intseq] consolidate <utility> docs +https://wg21.link/edit682 + + + + +- +d:edit6820 +EDIT6820 + +closed +[bit.pow.two] Remove redundant Remarks specification +https://wg21.link/edit6820 + + + + +- +d:edit6821 +EDIT6821 + +closed +[format.syn] Bad index entry for format_args_t +https://wg21.link/edit6821 + + + + +- +d:edit6822 +EDIT6822 + +closed +[iterator.operations] `std::distance` may be missing a precondition +https://wg21.link/edit6822 + + + + +- +d:edit6823 +EDIT6823 + +open +[container.reqmts] Fix stray semicolon in description of expression +https://wg21.link/edit6823 + + + + +- +d:edit6824 +EDIT6824 + +open +[container.requirements] Fix malformed Result specifications +https://wg21.link/edit6824 + + + + +- +d:edit6825 +EDIT6825 + +open +[basic.fundamental] Should we remove Note 1 on `int` having the "natural width"? +https://wg21.link/edit6825 + + + + +- +d:edit6826 +EDIT6826 + +closed +[container.reqmts] Avoid dependency of `size`/`max_size` on `distance(begin(), end())` +https://wg21.link/edit6826 + + + + +- +d:edit6827 +EDIT6827 + +closed +P0732R2 Add `__cpp_nontype_template_parameter_class` +https://wg21.link/edit6827 + + + + +- +d:edit6828 +EDIT6828 + +closed +[stmt.while], [stmt.do] Add commas after introductory phrases +https://wg21.link/edit6828 + + + + +- +d:edit6829 +EDIT6829 + +closed +[stmt.jump] Add reference to [stmt.dcl] +https://wg21.link/edit6829 + + + + +- +d:edit683 +EDIT683 + +closed +[allocator.adaptor] consolidate memory utilities +https://wg21.link/edit683 + + + + +- +d:edit6830 +EDIT6830 + +closed +[expr.dynamic.cast] Add comma after conditional clause +https://wg21.link/edit6830 + + + + +- +d:edit6831 +EDIT6831 + +closed +Update link to secure connection +https://wg21.link/edit6831 + + + + +- +d:edit6832 +EDIT6832 + +closed +[headers] Strike 'C standard library headers' and turn paragraph into note +https://wg21.link/edit6832 + + + + +- +d:edit6833 +EDIT6833 + +open +[charconv.from.chars] Clarify effect of from_chars +https://wg21.link/edit6833 + + + + +- +d:edit6834 +EDIT6834 + +closed +[time.parse], [diff.cpp17.temp] Hyphenate argument-dependent lookup +https://wg21.link/edit6834 + + + + +- +d:edit6835 +EDIT6835 + +open +[expr.mul] Reword 'truncation towards zero' in footnote +https://wg21.link/edit6835 + + + + +- +d:edit6836 +EDIT6836 + +open +[dcl.fct.default] Correct note on 'this' in default arguments +https://wg21.link/edit6836 + + + + +- +d:edit6837 +EDIT6837 + +open +[gram.key] Replace 'context-dependent keywords' with 'names' +https://wg21.link/edit6837 + + + + +- +d:edit6838 +EDIT6838 + +closed +[format.arg] Remove exposition-only friend class +https://wg21.link/edit6838 + + + + +- +d:edit6839 +EDIT6839 + +open +[rand.req.seedeq], [rand.req.dist], [char.traits.require] Eliminate "compile-time" complexity +https://wg21.link/edit6839 + + + + +- +d:edit684 +EDIT684 + +closed +[meta.unary.prop] Consistent formatting for 'void' +https://wg21.link/edit684 + + + + +- +d:edit6840 +EDIT6840 + +open +[std.iterator.tags] Reword iterator tag description +https://wg21.link/edit6840 + + + + +- +d:edit6841 +EDIT6841 + +open +[type.traits] Strike 'at compile time' +https://wg21.link/edit6841 + + + + +- +d:edit6842 +EDIT6842 + +open +[meta.trans.other] Normative paragraph starting with "Note A:" +https://wg21.link/edit6842 + + + + +- +d:edit6843 +EDIT6843 + +open +[lex] `\indextext{separate translation|see{compilation, separate}}` ? +https://wg21.link/edit6843 + + + + +- +d:edit6844 +EDIT6844 + +open +[lex.pptoken] import-keyword, module-keyword, export-keyword are not indexed +https://wg21.link/edit6844 + + + + +- +d:edit6845 +EDIT6845 + +closed +[handler.functions] Add reference to [intro.races] +https://wg21.link/edit6845 + + + + +- +d:edit6846 +EDIT6846 + +open +[charconv.to.chars] Itemize mapping of `chars_format` onto conversion specifiers +https://wg21.link/edit6846 + + + + +- +d:edit6847 +EDIT6847 + +open +[charconv.syn] Clarify what types match integer-type +https://wg21.link/edit6847 + + + + +- +d:edit6848 +EDIT6848 + +open +[charconv.from.chars] Clarify the role of a `0x` prefix in `from_chars` +https://wg21.link/edit6848 + + + + +- +d:edit6849 +EDIT6849 + +closed +[pairs.pair] Replace `std::forward` with `std::move` where equivalent +https://wg21.link/edit6849 + + + + +- +d:edit685 +EDIT685 + +closed +[unique.ptr.special] prefer use of common_type_t +https://wg21.link/edit685 + + + + +- +d:edit6850 +EDIT6850 + +open +[handler.functions], [mem.res.global] Replace 'shall synchronize with' with 'synchronizes with' +https://wg21.link/edit6850 + + + + +- +d:edit6851 +EDIT6851 + +open +[class.member.lookup,basic.lookup.argdep,basic.life] Remove extra whi… +https://wg21.link/edit6851 + + + + +- +d:edit6852 +EDIT6852 + +closed +[atomics.order] Make out-of-thin-air prevention Recommended practice +https://wg21.link/edit6852 + + + + +- +d:edit6853 +EDIT6853 + +open +[expr.const] Clarify example on when evaluation takes place +https://wg21.link/edit6853 + + + + +- +d:edit6854 +EDIT6854 + +closed +[lex.phases] Clarify the state of forming logical-lines when partially composing a comment +https://wg21.link/edit6854 + + + + +- +d:edit6855 +EDIT6855 + +open +[expr.prim.this] Clarify that `this` can appear within a lambda with an explicit object parameter +https://wg21.link/edit6855 + + + + +- +d:edit6856 +EDIT6856 + +open +coroutine_traits is not in the index +https://wg21.link/edit6856 + + + + +- +d:edit6857 +EDIT6857 + +open +[utilities.swap] Replace unusual "stored in two locations" wording +https://wg21.link/edit6857 + + + + +- +d:edit6858 +EDIT6858 + +closed +Containers refer to exploded tables as though they still exist +https://wg21.link/edit6858 + + + + +- +d:edit6859 +EDIT6859 + +open +[coroutine.traits.primary] Index `coroutine_traits` +https://wg21.link/edit6859 + + + + +- +d:edit686 +EDIT686 + +closed +[tuple.helper] prefer to use tuple_element_t +https://wg21.link/edit686 + + + + +- +d:edit6860 +EDIT6860 + +open +[stdfloat.syn] Which part is implementation-defined? +https://wg21.link/edit6860 + + + + +- +d:edit6861 +EDIT6861 + +open +[diff.cpp03.expr] Should we list the behavioral change of `typeid` in C++11 due to N3055? +https://wg21.link/edit6861 + + + + +- +d:edit6862 +EDIT6862 + +closed +[time.hash] Fix spelling of 'Cpp17Hash' +https://wg21.link/edit6862 + + + + +- +d:edit6863 +EDIT6863 + +open +[2024-03 CWG Motion 1] Core Language Working Group "ready" Issues +https://wg21.link/edit6863 + + + + +- +d:edit6864 +EDIT6864 + +open +[2024-03 CWG Motion 2] Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/edit6864 + + + + +- +d:edit6865 +EDIT6865 + +open +[2024-03 CWG Motion 4] Attributes for Structured Bindings +https://wg21.link/edit6865 + + + + +- +d:edit6866 +EDIT6866 + +open +[2024-03 CWG Motion 3] Clarifying rules for brace elision in aggregate initialization +https://wg21.link/edit6866 + + + + +- +d:edit6867 +EDIT6867 + +open +[2024-03 CWG Motion 5] Module Declarations Shouldn’t be Macros +https://wg21.link/edit6867 + + + + +- +d:edit6868 +EDIT6868 + +open + [2024-03 CWG Motion 6] Trivial infinite loops are not Undefined Behavior +https://wg21.link/edit6868 + + + + +- +d:edit6869 +EDIT6869 + +open +[2024-03 CWG Motion 7] Erroneous behaviour for uninitialized reads +https://wg21.link/edit6869 + + + + +- +d:edit687 +EDIT687 + +closed +implementation-defined vs. implementation defined vs. impldef +https://wg21.link/edit687 + + + + +- +d:edit6870 +EDIT6870 + +open +[2024-03 CWG Motion 9] = delete("should have a reason"); +https://wg21.link/edit6870 + + + + +- +d:edit6871 +EDIT6871 + +open +[2024-03 CWG Motion 10] Variadic friends +https://wg21.link/edit6871 + + + + +- +d:edit6872 +EDIT6872 + +open +[2024-03 LWG Motion 1] C++ Standard Library Ready Issues +https://wg21.link/edit6872 + + + + +- +d:edit6873 +EDIT6873 + +open +[2024-03 LWG Motion 2] Undeprecate polymorphic_allocator::destroy for C++26 +https://wg21.link/edit6873 + + + + +- +d:edit6874 +EDIT6874 + +open +[2024-03 LWG Motion 3] Remove Deprecated strstreams From C++26 +https://wg21.link/edit6874 + + + + +- +d:edit6875 +EDIT6875 + +open +[2024-03 LWG Motion 4] Remove Deprecated shared_ptr Atomic Access APIs from C++26 +https://wg21.link/edit6875 + + + + +- +d:edit6876 +EDIT6876 + +open +[2024-03 LWG Motion 5] Remove wstring_convert From C++26 +https://wg21.link/edit6876 + + + + +- +d:edit6877 +EDIT6877 + +open +[2024-03 LWG Motion 6] Permit an efficient implementation of std::print +https://wg21.link/edit6877 + + + + +- +d:edit6878 +EDIT6878 + +open +[2024-03 LWG Motion 7] Printing Blank Lines with println +https://wg21.link/edit6878 + + + + +- +d:edit6879 +EDIT6879 + +open +[2024-03 LWG Motion 8] Formatting of std::filesystem::path +https://wg21.link/edit6879 + + + + +- +d:edit688 +EDIT688 + +closed +Formatting of "Type/Name(s)" Tables is confusing +https://wg21.link/edit688 + + + + +- +d:edit6880 +EDIT6880 + +open +[2024-03 LWG Motion 9] Atomic minimum/maximu +https://wg21.link/edit6880 + + + + +- +d:edit6881 +EDIT6881 + +open +[2024-03 LWG Motion 10] views::concat +https://wg21.link/edit6881 + + + + +- +d:edit6882 +EDIT6882 + +open +[2024-03 LWG Motion 11] Concatenation of strings and string views +https://wg21.link/edit6882 + + + + +- +d:edit6883 +EDIT6883 + +open +[2024-03 LWG Motion 12] Enabling list-initialization for algorithms +https://wg21.link/edit6883 + + + + +- +d:edit6884 +EDIT6884 + +open +[2024-03 LWG Motion 13] is_debugger_present is_replaceable +https://wg21.link/edit6884 + + + + +- +d:edit6885 +EDIT6885 + +open +[2024-03 LWG Motion 14] Vector API for random number generation +https://wg21.link/edit6885 + + + + +- +d:edit6886 +EDIT6886 + +open +[2024-03 LWG Motion 16] Comparisons for reference_wrapper +https://wg21.link/edit6886 + + + + +- +d:edit6887 +EDIT6887 + +open +[2024-03 LWG Motion 17] Padded mdspan layouts +https://wg21.link/edit6887 + + + + +- +d:edit6888 +EDIT6888 + +open + [2024-03 LWG Motion 18] Better mdspan's CTAD +https://wg21.link/edit6888 + + + + +- +d:edit6889 +EDIT6889 + +open +CWG motion 2: P2748R5 Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/edit6889 + + + + +- +d:edit689 +EDIT689 + +closed +How to interpret Table 152 "Header <cinttypes> synopsis"? +https://wg21.link/edit689 + + + + +- +d:edit6890 +EDIT6890 + +closed +[macros] Fix LaTeX build on MacOS with newer memoir class +https://wg21.link/edit6890 + + + + +- +d:edit6891 +EDIT6891 + +open +P0609R3 Attributes for Structured Bindings +https://wg21.link/edit6891 + + + + +- +d:edit6892 +EDIT6892 + +open +P3106R1 Clarifying rules for brace elision in aggregate initialization +https://wg21.link/edit6892 + + + + +- +d:edit6893 +EDIT6893 + +open +P3034R1 Module Declarations Shouldn’t be Macros +https://wg21.link/edit6893 + + + + +- +d:edit6894 +EDIT6894 + +closed +P2809R3 Trivial infinite loops are not Undefined Behavior +https://wg21.link/edit6894 + + + + +- +d:edit6895 +EDIT6895 + +closed +P2573R2 = delete("should have a reason"); +https://wg21.link/edit6895 + + + + +- +d:edit6896 +EDIT6896 + +closed +P2893R3 Variadic friends +https://wg21.link/edit6896 + + + + +- +d:edit6897 +EDIT6897 + +closed +P2795R5 Erroneous behaviour for uninitialized reads +https://wg21.link/edit6897 + + + + +- +d:edit6898 +EDIT6898 + +open +Refactor list of zombie names as a table +https://wg21.link/edit6898 + + + + +- +d:edit6899 +EDIT6899 + +closed +P2867R2 Remove deprecated strstreams from C++26 +https://wg21.link/edit6899 + + + + +- +d:edit69 +EDIT69 + +closed +index: formatting issues +https://wg21.link/edit69 + + + + +- +d:edit690 +EDIT690 + +closed +inconsistency in library type requirements +https://wg21.link/edit690 + + + + +- +d:edit6900 +EDIT6900 + +closed +P2875R4 Undeprecate polymorphic_allocator::destroy +https://wg21.link/edit6900 + + + + +- +d:edit6901 +EDIT6901 + +open +Annex C wording should not claim old code will "fail to compile" +https://wg21.link/edit6901 + + + + +- +d:edit6902 +EDIT6902 + +closed +P2869R4 Remove deprecated atomic free function API for shared_ptr +https://wg21.link/edit6902 + + + + +- +d:edit6903 +EDIT6903 + +closed +P2872R3 Remove wstring_convert from C++26 +https://wg21.link/edit6903 + + + + +- +d:edit6904 +EDIT6904 + +closed +P1068R11 Vector API for random number generation +https://wg21.link/edit6904 + + + + +- +d:edit6905 +EDIT6905 + +closed +[variant.relops] Fix \exposid in \codeblock +https://wg21.link/edit6905 + + + + +- +d:edit6906 +EDIT6906 + +closed +[Motions 2024 03 cwg 1] P3196R0 (Core Language Working Group "ready" Issues) +https://wg21.link/edit6906 + + + + +- +d:edit6907 +EDIT6907 + +closed +[LWG motion 18] P3029R1 Better mdspan's CTAD +https://wg21.link/edit6907 + + + + +- +d:edit6908 +EDIT6908 + +closed +[LWG motion 6] P3107R5 Permit an efficient implementation of std::print +https://wg21.link/edit6908 + + + + +- +d:edit6909 +EDIT6909 + +closed +[LWG motion 7] P3142R0 Printing Blank Lines with println +https://wg21.link/edit6909 + + + + +- +d:edit691 +EDIT691 + +closed +is_swappable is damaged in [meta.unary.prop] +https://wg21.link/edit691 + + + + +- +d:edit6910 +EDIT6910 + +closed +[LWG motion 8] P2845R8 Formatting of std::filesystem::path +https://wg21.link/edit6910 + + + + +- +d:edit6911 +EDIT6911 + +closed +P2248R8 Enabling list-initialization for algorithms +https://wg21.link/edit6911 + + + + +- +d:edit6912 +EDIT6912 + +closed +P2810R4 is_debugger_present is_replaceable +https://wg21.link/edit6912 + + + + +- +d:edit6913 +EDIT6913 + +closed +P2944R3 Comparisons for reference_wrapper +https://wg21.link/edit6913 + + + + +- +d:edit6914 +EDIT6914 + +closed +P2591R5 Concatenation of strings and string views +https://wg21.link/edit6914 + + + + +- +d:edit6915 +EDIT6915 + +closed +[LWG motion 1] P3180R0 C++ Standard Library Issues to be moved in Tokyo, Mar. 2024 +https://wg21.link/edit6915 + + + + +- +d:edit6916 +EDIT6916 + +open +Consistently uses “a program may specialize” +https://wg21.link/edit6916 + + + + +- +d:edit6917 +EDIT6917 + +closed +[LWG motion 10] P2542R8 views::concat +https://wg21.link/edit6917 + + + + +- +d:edit6918 +EDIT6918 + +closed +P0493R5 Atomic minimum/maximum +https://wg21.link/edit6918 + + + + +- +d:edit6919 +EDIT6919 + +closed +P2642R6 Padded mdspan layouts +https://wg21.link/edit6919 + + + + +- +d:edit692 +EDIT692 + +closed +[tuple.cnstr] fix the position of \end{itemdescr} +https://wg21.link/edit692 + + + + +- +d:edit6920 +EDIT6920 + +closed +[check] Fix overly aggressive 'constexpr static' check +https://wg21.link/edit6920 + + + + +- +d:edit6921 +EDIT6921 + +closed +[LWG motions 2--5] Consolidates P2867R2, P2869R4, P2872R3, and P2875R4 +https://wg21.link/edit6921 + + + + +- +d:edit6922 +EDIT6922 + +closed +[time.zone.db.access] Definition of std::chrono::current_zone() unclear +https://wg21.link/edit6922 + + + + +- +d:edit6923 +EDIT6923 + +open +Correctly render packages installs +https://wg21.link/edit6923 + + + + +- +d:edit6924 +EDIT6924 + +closed +[expos.only.entity] Add missing \expos for two exposition-only names +https://wg21.link/edit6924 + + + + +- +d:edit6925 +EDIT6925 + +closed +[zombie.names] Turn lists of zombie names into tables +https://wg21.link/edit6925 + + + + +- +d:edit6926 +EDIT6926 + +closed +[basic.life] Reflow text defining transparently replaceable +https://wg21.link/edit6926 + + + + +- +d:edit6927 +EDIT6927 + +closed +[tab:headers.cpp.fs] Move debugging library to correct position +https://wg21.link/edit6927 + + + + +- +d:edit6928 +EDIT6928 + +closed +[range.concat.iterator] Add missing \tcode block +https://wg21.link/edit6928 + + + + +- +d:edit6929 +EDIT6929 + +closed +[range.concat.view] Formatting code to match the current style +https://wg21.link/edit6929 + + + + +- +d:edit693 +EDIT693 + +closed +"Underfull" and "Overfull" warnings emitted from Latex. +https://wg21.link/edit693 + + + + +- +d:edit6930 +EDIT6930 + +open +[range.concat.view] Use \exposid for `is-const` +https://wg21.link/edit6930 + + + + +- +d:edit6931 +EDIT6931 + +closed +[range.concat.overview] Remove unnecessary `std::` prefix from example +https://wg21.link/edit6931 + + + + +- +d:edit6932 +EDIT6932 + +closed +[range.utility.conv.general] Fix typo +https://wg21.link/edit6932 + + + + +- +d:edit6933 +EDIT6933 + +closed +[range.concat.view] Add missing \exposid to `make-unsigned-like-t` +https://wg21.link/edit6933 + + + + +- +d:edit6934 +EDIT6934 + +closed +[range.concat.iterator] Remove @ in \exposid +https://wg21.link/edit6934 + + + + +- +d:edit6935 +EDIT6935 + +closed +[range.concat.iterator] Formatting constraints of `operator==` +https://wg21.link/edit6935 + + + + +- +d:edit6936 +EDIT6936 + +closed +LWG3031 Fix missing code-formatting of const +https://wg21.link/edit6936 + + + + +- +d:edit6937 +EDIT6937 + +closed +[range.concat.iterator] Fix indentation +https://wg21.link/edit6937 + + + + +- +d:edit6938 +EDIT6938 + +closed +Revert "LWG3031 Fix missing code-formatting of const" +https://wg21.link/edit6938 + + + + +- +d:edit6939 +EDIT6939 + +open +[range.access] Clarify notes on SFINAE for CPOs +https://wg21.link/edit6939 + + + + +- +d:edit694 +EDIT694 + +closed +Formatting in "Effects: Equivalent to" is confusing +https://wg21.link/edit694 + + + + +- +d:edit6940 +EDIT6940 + +closed +[index] Add missing entries for Cpp17 _oldconcepts_ +https://wg21.link/edit6940 + + + + +- +d:edit6941 +EDIT6941 + +open +[utility.arg.requirements] Break down requirement tables +https://wg21.link/edit6941 + + + + +- +d:edit6942 +EDIT6942 + +open +[range.concat.iterator] Remove redundant \expos +https://wg21.link/edit6942 + + + + +- +d:edit6943 +EDIT6943 + +closed +[range.concat.iterator] Add missing \tcode for `difference_type` +https://wg21.link/edit6943 + + + + +- +d:edit6944 +EDIT6944 + +closed +[mdspan.layout.leftpad.obs] Remove extra \item +https://wg21.link/edit6944 + + + + +- +d:edit6945 +EDIT6945 + +closed +[intro.execution] Add comma after conditional clause +https://wg21.link/edit6945 + + + + +- +d:edit6946 +EDIT6946 + +open +Clarify functions, member functions, and constructors +https://wg21.link/edit6946 + + + + +- +d:edit6947 +EDIT6947 + +closed +[mdspan.layout.rightpad.obs] Line break between \expects and \returns +https://wg21.link/edit6947 + + + + +- +d:edit6948 +EDIT6948 + +closed +[intro.progress] "Trivially empty iteration statement" or "Trivial infinite loop"? +https://wg21.link/edit6948 + + + + +- +d:edit6949 +EDIT6949 + +open +P2248R8 did not modify the non-range replace_copy overloads +https://wg21.link/edit6949 + + + + +- +d:edit695 +EDIT695 + +closed +What is "it" in [memory.resource.prot]/7? +https://wg21.link/edit695 + + + + +- +d:edit6950 +EDIT6950 + +open +[alg.replace] Fix misapplication of P2248R8 to `std::replace_copy` +https://wg21.link/edit6950 + + + + +- +d:edit6951 +EDIT6951 + +closed +[range.concat.view] Add missing \exposid for `tuple-transform` +https://wg21.link/edit6951 + + + + +- +d:edit6952 +EDIT6952 + +open +[cmath.syn] Remove extra whitespace +https://wg21.link/edit6952 + + + + +- +d:edit6953 +EDIT6953 + +closed +[range.concat.iterator] Add missing \libconcept for `swappable_with` and `indirectly_swappable` +https://wg21.link/edit6953 + + + + +- +d:edit6954 +EDIT6954 + +closed +James Bond in index +https://wg21.link/edit6954 + + + + +- +d:edit6955 +EDIT6955 + +closed +[alg.rand.generate] Use \libconcept for `sized_range` +https://wg21.link/edit6955 + + + + +- +d:edit6956 +EDIT6956 + +closed +[alg.rand.generate] Remove redundant `}` +https://wg21.link/edit6956 + + + + +- +d:edit6957 +EDIT6957 + +closed +[algorithm.syn, alg.fill] Fix typo in constraints +https://wg21.link/edit6957 + + + + +- +d:edit6958 +EDIT6958 + +closed +[mdspan.layout.leftpad.overview] Add missing \tcode for `0zu` +https://wg21.link/edit6958 + + + + +- +d:edit6959 +EDIT6959 + +closed +[print.syn] Correctly order println overloads +https://wg21.link/edit6959 + + + + +- +d:edit696 +EDIT696 + +closed +cross-references needed to library types and their requirements +https://wg21.link/edit696 + + + + +- +d:edit6960 +EDIT6960 + +closed +[range.concat.iterator] Remove the unnecessary period +https://wg21.link/edit6960 + + + + +- +d:edit6961 +EDIT6961 + +closed +[mdspan.layout] Fix `explicit(see below)` format +https://wg21.link/edit6961 + + + + +- +d:edit6962 +EDIT6962 + +closed +[linalg] formatting `for` loop in example +https://wg21.link/edit6962 + + + + +- +d:edit6963 +EDIT6963 + +open +[alg.fold] Spelling the actual`ranges::fold_meow`'s return type in function signature? +https://wg21.link/edit6963 + + + + +- +d:edit6964 +EDIT6964 + +open +[memory.syn][specialized.algorithms] Prefer trailing returns on complex signatures +https://wg21.link/edit6964 + + + + +- +d:edit6965 +EDIT6965 + +open +[memory.syn] Move specification macros to appropriate subclause +https://wg21.link/edit6965 + + + + +- +d:edit6966 +EDIT6966 + +closed +[range.reverse.overview] Replace 'equivalent to' with 'then' +https://wg21.link/edit6966 + + + + +- +d:edit6967 +EDIT6967 + +open +No index entry for customization point object +https://wg21.link/edit6967 + + + + +- +d:edit6968 +EDIT6968 + +open +[range.common.overview] Removing redundant requirement of `views​::​all(E)` to be well-formed +https://wg21.link/edit6968 + + + + +- +d:edit6969 +EDIT6969 + +closed +[class.derived.general] Restore accidental reversal of P2662R3 change +https://wg21.link/edit6969 + + + + +- +d:edit697 +EDIT697 + +closed +cross-references needed at uses of "writable to" in the library +https://wg21.link/edit697 + + + + +- +d:edit6970 +EDIT6970 + +closed +[format.context] Fix incorrect example +https://wg21.link/edit6970 + + + + +- +d:edit6971 +EDIT6971 + +open +[print.syn] Show `locking` functions in the synopsis of `<print>` +https://wg21.link/edit6971 + + + + +- +d:edit6972 +EDIT6972 + +open +[meta.const.eval] Fix `is_within_lifetime` example +https://wg21.link/edit6972 + + + + +- +d:edit6973 +EDIT6973 + +open +[over.oper.general] Clarify operator functions being inherited from base classes +https://wg21.link/edit6973 + + + + +- +d:edit6974 +EDIT6974 + +open +[over.oper.general] Remove paragraph 8 and make [over.xxx] more self-contained +https://wg21.link/edit6974 + + + + +- +d:edit6975 +EDIT6975 + +open +[ISO/CS C++2023] Remove hanging paragraphs +https://wg21.link/edit6975 + + + + +- +d:edit6976 +EDIT6976 + +open +[ISO/CS C++2023] Remove the word "subclause" +https://wg21.link/edit6976 + + + + +- +d:edit6977 +EDIT6977 + +open +[std] Avoid hanging paragraphs by introducing "General" subclauses +https://wg21.link/edit6977 + + + + +- +d:edit6978 +EDIT6978 + +open +[ISO/CS C++2023] Re-paginate to avoid lone "Example" or "Note" introducers +https://wg21.link/edit6978 + + + + +- +d:edit6979 +EDIT6979 + +open +[ISO/CS C++2023] Use square brackets around round parentheses +https://wg21.link/edit6979 + + + + +- +d:edit698 +EDIT698 + +closed +Fix the definition of "writable to" +https://wg21.link/edit698 + + + + +- +d:edit6980 +EDIT6980 + +open +[ISO/CS C++2023] Replace forbidden words in notes and examples +https://wg21.link/edit6980 + + + + +- +d:edit6981 +EDIT6981 + +open +[ISO/CS C++2023] Bad use of italics and bold +https://wg21.link/edit6981 + + + + +- +d:edit6982 +EDIT6982 + +open +[std] Remove mid-sentence 'subclause' introducer +https://wg21.link/edit6982 + + + + +- +d:edit6983 +EDIT6983 + +open +[ISO/CS C++2023] Fix punctuation details +https://wg21.link/edit6983 + + + + +- +d:edit6984 +EDIT6984 + +open +[ISO/CS C++2023] Specification unclarity around "ISO weeks" +https://wg21.link/edit6984 + + + + +- +d:edit6985 +EDIT6985 + +open +Fix punctuation details +https://wg21.link/edit6985 + + + + +- +d:edit6986 +EDIT6986 + +open +[time.format,time.parse] Fix references to ISO week calendar +https://wg21.link/edit6986 + + + + +- +d:edit6987 +EDIT6987 + +open +[ISO/CS C++2023] Make table headings bold +https://wg21.link/edit6987 + + + + +- +d:edit6988 +EDIT6988 + +open +Fix table formatting +https://wg21.link/edit6988 + + + + +- +d:edit6989 +EDIT6989 + +open +[macros] Prefer page break above 'note' or 'example' introducers +https://wg21.link/edit6989 + + + + +- +d:edit699 +EDIT699 + +closed +Reference comments missing from [memory.polymorphic.allocator.class] synopsis +https://wg21.link/edit699 + + + + +- +d:edit6990 +EDIT6990 + +open +[ISO/CS C++2023] Format examples in Annex C with proper "example" markers +https://wg21.link/edit6990 + + + + +- +d:edit6991 +EDIT6991 + +open +[util.smartptr.weak.general] Clarify when a `weak_ptr` is empty +https://wg21.link/edit6991 + + + + +- +d:edit6992 +EDIT6992 + +open +[diff] Mark examples as such +https://wg21.link/edit6992 + + + + +- +d:edit6993 +EDIT6993 + +open +[ISO/CS C++2023] Adjust presentation of bibliography +https://wg21.link/edit6993 + + + + +- +d:edit6994 +EDIT6994 + +open +[numeric.limits.members,bibliography] Remove LIA-1 abbreviation for ISO 10967 +https://wg21.link/edit6994 + + + + +- +d:edit6995 +EDIT6995 + +open +[macros] Remove italics and boldface +https://wg21.link/edit6995 + + + + +- +d:edit6996 +EDIT6996 + +closed +[styles] Redesign Annex titles per Rice Model Standard +https://wg21.link/edit6996 + + + + +- +d:edit6997 +EDIT6997 + +open +[meta.unary.prop] [class.default.ctor] [class.dtor] Indexing and xrefs for the word "trivial" +https://wg21.link/edit6997 + + + + +- +d:edit6998 +EDIT6998 + +open +[rand.req] Replace 'that Table' with a precise reference +https://wg21.link/edit6998 + + + + +- +d:edit6999 +EDIT6999 + +open +[ISO/CS C++2023] Colons before bulleted lists +https://wg21.link/edit6999 + + + + +- +d:edit7 +EDIT7 + +closed +[storage.iterator] Remove redundant template argument lists. +https://wg21.link/edit7 + + + + +- +d:edit70 +EDIT70 + +closed +[pairs.pair] "Requires Requires" requires fewer Requires +https://wg21.link/edit70 + + + + +- +d:edit700 +EDIT700 + +closed +[dcl.enum] This is not where layout-compatible is defined +https://wg21.link/edit700 + + + + +- +d:edit7000 +EDIT7000 + +open +[std] Fix colons in front of bulleted lists +https://wg21.link/edit7000 + + + + +- +d:edit7001 +EDIT7001 + +open +[ISO/CS C++2023] Change 'through' to 'to' +https://wg21.link/edit7001 + + + + +- +d:edit7002 +EDIT7002 + +open +[std] Replace 'through' with 'to' for clause ranges +https://wg21.link/edit7002 + + + + +- +d:edit7003 +EDIT7003 + +open +[ISO/CS C++2023] Move Unicode trademark footnote +https://wg21.link/edit7003 + + + + +- +d:edit7004 +EDIT7004 + +open +[intro.memory] Move footnote about Unicode trademark to [lex.phases] +https://wg21.link/edit7004 + + + + +- +d:edit7005 +EDIT7005 + +open +[input.output] Add cross-references to header synopses +https://wg21.link/edit7005 + + + + +- +d:edit7006 +EDIT7006 + +open +[ISO/CS C++2023] Move titles of old C++ standards to the bibliography +https://wg21.link/edit7006 + + + + +- +d:edit7007 +EDIT7007 + +open +[diff,bibliography] Move details of old C++ standards to the bibliography +https://wg21.link/edit7007 + + + + +- +d:edit7008 +EDIT7008 + +open +[ISO/CS C++2023] Do not use "C++ 20xx" or "ISO C++ 20xx" +https://wg21.link/edit7008 + + + + +- +d:edit7009 +EDIT7009 + +closed +[unique.ptr.create] `std::make_unique<int&>` may not be rejected properly +https://wg21.link/edit7009 + + + + +- +d:edit701 +EDIT701 + +closed +grammar terms aren't \grammarterm'd +https://wg21.link/edit701 + + + + +- +d:edit7010 +EDIT7010 + +closed +[macros,diff] Replace '(ISO) C++ 20xx' with the full document identifier +https://wg21.link/edit7010 + + + + +- +d:edit7011 +EDIT7011 + +open +[ISO/CS C++2023] Avoid "ISO C" +https://wg21.link/edit7011 + + + + +- +d:edit7012 +EDIT7012 + +open +[basic.fundamental,cstdarg.syn] Use full reference for ISO C sections +https://wg21.link/edit7012 + + + + +- +d:edit7013 +EDIT7013 + +open +[std] Remove ISO from any mention of 'C' +https://wg21.link/edit7013 + + + + +- +d:edit7014 +EDIT7014 + +open +[cpp.predefined,namespace.future,version.syn] Replace 'C++' with 'this document' +https://wg21.link/edit7014 + + + + +- +d:edit7015 +EDIT7015 + +open +[unique.ptr.general] Intro wording is misleadingly restrictive +https://wg21.link/edit7015 + + + + +- +d:edit7016 +EDIT7016 + +open +[format.string.std] Add (R) symbol after Windows +https://wg21.link/edit7016 + + + + +- +d:edit7017 +EDIT7017 + +open +[namespace.future] Replace 'this International Standard' with 'this document' +https://wg21.link/edit7017 + + + + +- +d:edit7018 +EDIT7018 + +open +[macros,diff] Replace '(ISO) C++ 20xx' with the full document identifier +https://wg21.link/edit7018 + + + + +- +d:edit7019 +EDIT7019 + +open +[class.copy.ctor] Remove reference to non-existing example +https://wg21.link/edit7019 + + + + +- +d:edit702 +EDIT702 + +closed +cross-references to hard-coded paragraph numbers +https://wg21.link/edit702 + + + + +- +d:edit7020 +EDIT7020 + +open +[class.conv.general] Remove vague reference to unhelpful examples +https://wg21.link/edit7020 + + + + +- +d:edit7021 +EDIT7021 + +open +[lex.ccon,expr.prim.lambda.capture] Excise 'ISO' prefix +https://wg21.link/edit7021 + + + + +- +d:edit7022 +EDIT7022 + +open +[execpol.general] Use 'this document', not 'this standard' +https://wg21.link/edit7022 + + + + +- +d:edit7023 +EDIT7023 + +open +[std] Rename 'In general' headings to 'General' for consistency +https://wg21.link/edit7023 + + + + +- +d:edit7024 +EDIT7024 + +open +[macros] Avoid small caps for cross-references to C. +https://wg21.link/edit7024 + + + + +- +d:edit7025 +EDIT7025 + +open +[fs.class.path.general] Defuse cross-reference to POSIX +https://wg21.link/edit7025 + + + + +- +d:edit7026 +EDIT7026 + +open +[macros,numerics] Add and use numbered 'formula' environment +https://wg21.link/edit7026 + + + + +- +d:edit7027 +EDIT7027 + +open +[futures.state] Turn note into example +https://wg21.link/edit7027 + + + + +- +d:edit7028 +EDIT7028 + +open +[diff] Replace 'this revision of C++' with 'this document' +https://wg21.link/edit7028 + + + + +- +d:edit7029 +EDIT7029 + +open +[std] Replace 'this standard' with 'this document' +https://wg21.link/edit7029 + + + + +- +d:edit703 +EDIT703 + +closed +[support.runtime] Clarify va_start requirements +https://wg21.link/edit703 + + + + +- +d:edit7030 +EDIT7030 + +open +[uaxid.general] Replace 'C++' with 'this document' +https://wg21.link/edit7030 + + + + +- +d:edit7031 +EDIT7031 + +open +[uaxid] Replace 'this requirement' with a specific reference +https://wg21.link/edit7031 + + + + +- +d:edit7032 +EDIT7032 + +open +[implimits] Rephrase introductory sentence for list of quantities +https://wg21.link/edit7032 + + + + +- +d:edit7033 +EDIT7033 + +open +[lib] Excise Note A, Note B, etc. designations +https://wg21.link/edit7033 + + + + +- +d:edit7034 +EDIT7034 + +open +[intro.compliance.general] Refer to Annex B normatively +https://wg21.link/edit7034 + + + + +- +d:edit7035 +EDIT7035 + +closed +[util.smartptr.shared.cast] "Will eventually" is so sure +https://wg21.link/edit7035 + + + + +- +d:edit7036 +EDIT7036 + +open +Harmonize the phrasing of "X models foo_of<Y>" +https://wg21.link/edit7036 + + + + +- +d:edit7037 +EDIT7037 + +closed +[util.smartptr.shared.cast] Properly describe a bad outcome in notes +https://wg21.link/edit7037 + + + + +- +d:edit7038 +EDIT7038 + +open +[variant.visit] `as-variant` are not a `constexpr` unction templates +https://wg21.link/edit7038 + + + + +- +d:edit7039 +EDIT7039 + +open +Fix forbidden words in notes and examples +https://wg21.link/edit7039 + + + + +- +d:edit704 +EDIT704 + +closed +[18-30] Replace typedefs with alias +https://wg21.link/edit704 + + + + +- +d:edit7040 +EDIT7040 + +open +[intro.scope] "free store" is undefined and used only once +https://wg21.link/edit7040 + + + + +- +d:edit7041 +EDIT7041 + +open +[intro.scope], [expr.new], [class.free] Remove remaining "free store" +https://wg21.link/edit7041 + + + + +- +d:edit7042 +EDIT7042 + +open +[defns.undefined] Incorrect/incomplete note referencing [expr.const] +https://wg21.link/edit7042 + + + + +- +d:edit7043 +EDIT7043 + +closed +[defns.erroneous] Erroneous behavior is not indexed in `/generalindex` +https://wg21.link/edit7043 + + + + +- +d:edit7044 +EDIT7044 + +closed +[defns.erroneous], [basic.indet] Index 'erroneous behavior' and 'erroneous value' +https://wg21.link/edit7044 + + + + +- +d:edit7045 +EDIT7045 + +open +[conv.lval], [basic.indet] Circular cross-referencing for "erroneous value" +https://wg21.link/edit7045 + + + + +- +d:edit7046 +EDIT7046 + +open +[basic.indet] Convert reference to [conv.lval] into note +https://wg21.link/edit7046 + + + + +- +d:edit7047 +EDIT7047 + +open +[conv.lval] Add example of indeterminate values that are not valid for the type CWG2899 +https://wg21.link/edit7047 + + + + +- +d:edit7048 +EDIT7048 + +open +[expr.static.cast], [basic.type.qualifier] "More cv-qualified" vs "greater cv-qualification" +https://wg21.link/edit7048 + + + + +- +d:edit7049 +EDIT7049 + +open +[conv.lval] Add example of erroneous 'trap representation' being read +https://wg21.link/edit7049 + + + + +- +d:edit705 +EDIT705 + +closed +[alg.random.sample] reword and add cross-reference +https://wg21.link/edit705 + + + + +- +d:edit7050 +EDIT7050 + +open +[expr.static.cast], [over.call.object] Replace 'greater cv-qualification' with 'more cv-qualified' +https://wg21.link/edit7050 + + + + +- +d:edit7051 +EDIT7051 + +open +[conv.lval] Make note and generalize comment on UB CWG2899 +https://wg21.link/edit7051 + + + + +- +d:edit7052 +EDIT7052 + +closed +[dcl.array] Subscript for arrays no longer performs array-to-pointer conversion +https://wg21.link/edit7052 + + + + +- +d:edit7053 +EDIT7053 + +closed +[dcl.array] No longer explain array subscript in terms of array-to-pointer conversion +https://wg21.link/edit7053 + + + + +- +d:edit7054 +EDIT7054 + +open +[array.cons] Fix various wording issues +https://wg21.link/edit7054 + + + + +- +d:edit7055 +EDIT7055 + +open +[expr.new] Extend example for new-expressions with zero size arrays +https://wg21.link/edit7055 + + + + +- +d:edit7056 +EDIT7056 + +closed +Add hypertarget before table captions +https://wg21.link/edit7056 + + + + +- +d:edit7057 +EDIT7057 + +closed +Enable hyperlinks to tables +https://wg21.link/edit7057 + + + + +- +d:edit7058 +EDIT7058 + +closed +[res.on.exception.handling] Add cross-reference to [except.spec] +https://wg21.link/edit7058 + + + + +- +d:edit7059 +EDIT7059 + +closed +[flat.set.defn] Fix indentation +https://wg21.link/edit7059 + + + + +- +d:edit706 +EDIT706 + +closed +[algorithms] [numeric.ops] Crossref "writable" +https://wg21.link/edit706 + + + + +- +d:edit7060 +EDIT7060 + +closed +[stmt.pre] Cross-reference [intro.execution] +https://wg21.link/edit7060 + + + + +- +d:edit7061 +EDIT7061 + +closed +[stmt.if] Add missing comma after conditional clause +https://wg21.link/edit7061 + + + + +- +d:edit7062 +EDIT7062 + +closed +[class.virtual] Add commas +https://wg21.link/edit7062 + + + + +- +d:edit7063 +EDIT7063 + +open +[expr.type], [expr.call] Draw connection between type adjustment paragraphs +https://wg21.link/edit7063 + + + + +- +d:edit7064 +EDIT7064 + +open +[expr.static.cast] "Cast" vs. "converted" vs. "explicitly converted" +https://wg21.link/edit7064 + + + + +- +d:edit7065 +EDIT7065 + +open +`non-type template parameter` should be `non-type \grammarterm{template-parameter}` more consistently +https://wg21.link/edit7065 + + + + +- +d:edit7066 +EDIT7066 + +open +[implimits] Reorder Annex B by clause number +https://wg21.link/edit7066 + + + + +- +d:edit7067 +EDIT7067 + +open +[lex.charset] Extract universal-character-name grammar to new subclause +https://wg21.link/edit7067 + + + + +- +d:edit7068 +EDIT7068 + +open +[cpp.pre] define, index, and consistently use the term 'logical source line' +https://wg21.link/edit7068 + + + + +- +d:edit7069 +EDIT7069 + +closed +Fix typo in containers.tex +https://wg21.link/edit7069 + + + + +- +d:edit707 +EDIT707 + +closed +"deallocation function" is \term'd +https://wg21.link/edit707 + + + + +- +d:edit7070 +EDIT7070 + +closed +[meta.unary.prop] is_nothrow_* traits should be explicitly allowed to have strengthened results +https://wg21.link/edit7070 + + + + +- +d:edit7071 +EDIT7071 + +closed +[func.require] Add missing formatting of variable index +https://wg21.link/edit7071 + + + + +- +d:edit7072 +EDIT7072 + +closed +[class.union.general] Add comma +https://wg21.link/edit7072 + + + + +- +d:edit7073 +EDIT7073 + +open +LWG 4075: Thread stability requirement on constructors and destructors +https://wg21.link/edit7073 + + + + +- +d:edit7074 +EDIT7074 + +open +Lock tag types are defined twice, once incorrectly +https://wg21.link/edit7074 + + + + +- +d:edit7075 +EDIT7075 + +closed +[default.allocator.general] Fix indentation +https://wg21.link/edit7075 + + + + +- +d:edit7076 +EDIT7076 + +open +[intro.structure] should mention Annex E +https://wg21.link/edit7076 + + + + +- +d:edit7077 +EDIT7077 + +open +2024-06 CWG-5 P3144 Deleting a pointer to incomplete type is illformed +https://wg21.link/edit7077 + + + + +- +d:edit7078 +EDIT7078 + +open +[2024-06 CWG Motion 1] P3345R0 Ready issues as DR +https://wg21.link/edit7078 + + + + +- +d:edit7079 +EDIT7079 + +open +[2024-06 CWG Motion 2] P3345R0 Ready issues as non-DR +https://wg21.link/edit7079 + + + + +- +d:edit708 +EDIT708 + +closed +Fix uses of "value-initialize"/"value initialize" +https://wg21.link/edit708 + + + + +- +d:edit7080 +EDIT7080 + +open +[2024-06 CWG Motion 3] P2747R2 constexpr placement new +https://wg21.link/edit7080 + + + + +- +d:edit7081 +EDIT7081 + +open +[2024-06 CWG Motion 5] P3144R2 Deleting a Pointer to an Incomplete Type Should be Ill-formed +https://wg21.link/edit7081 + + + + +- +d:edit7082 +EDIT7082 + +open +[2024-06 CWG Motion 6] P2963R3 Ordering of constraints involving fold expressions +https://wg21.link/edit7082 + + + + +- +d:edit7083 +EDIT7083 + +open +[2024-06 CWG Motion 7] P0963R3 Structured binding declaration as a condition +https://wg21.link/edit7083 + + + + +- +d:edit7084 +EDIT7084 + +open +[2024-06 LWG Motion 1] P3341R0 C++ Standard Library Ready Issues to be moved in St. Louis, Jun. 2024 +https://wg21.link/edit7084 + + + + +- +d:edit7085 +EDIT7085 + +open +[2024-06 LWG Motion 2] P2997R1 Removing the common reference requirement from the indirectly invocable concepts +https://wg21.link/edit7085 + + + + +- +d:edit7086 +EDIT7086 + +open +[2024-06 LWG Motion 3] P2389R2 dextents Index Type Parameter +https://wg21.link/edit7086 + + + + +- +d:edit7087 +EDIT7087 + +open +[2024-06 LWG Motion 4] P3168R2 Give std::optional Range Support +https://wg21.link/edit7087 + + + + +- +d:edit7088 +EDIT7088 + +open +[2024-06 LWG Motion 5] P3217R0 Adjoints to "Enabling list-initialization for algorithms": find_last +https://wg21.link/edit7088 + + + + +- +d:edit7089 +EDIT7089 + +open +[2024-06 LWG Motion 6] P2985R0 A type trait for detecting virtual base classes +https://wg21.link/edit7089 + + + + +- +d:edit709 +EDIT709 + +closed +[meta.rel] New 'is_callable' entries overflow the middle cell of table +https://wg21.link/edit709 + + + + +- +d:edit7090 +EDIT7090 + +open +[2024-06 LWG Motion 7] P0843R14 inplace_vector +https://wg21.link/edit7090 + + + + +- +d:edit7091 +EDIT7091 + +open +[2024-06 LWG Motion 8] P3235R3 std::print more types faster with less memory +https://wg21.link/edit7091 + + + + +- +d:edit7092 +EDIT7092 + +open +[2024-06 LWG Motion 9] P2968R2 Make std::ignore a first-class object +https://wg21.link/edit7092 + + + + +- +d:edit7093 +EDIT7093 + +open +[2024-06 LWG Motion 10] P2075R6 Philox as an extension of the C++ RNG engines +https://wg21.link/edit7093 + + + + +- +d:edit7094 +EDIT7094 + +open +[2024-06 LWG Motion 11] P2422R1 Remove nodiscard annotations from the standard library specification +https://wg21.link/edit7094 + + + + +- +d:edit7095 +EDIT7095 + +open +[2024-06 LWG Motion 12] P2300R10 std::execution +https://wg21.link/edit7095 + + + + +- +d:edit7096 +EDIT7096 + +closed +2024-06 CWG-1 P2747R2 constexpr placement new +https://wg21.link/edit7096 + + + + +- +d:edit7097 +EDIT7097 + +open +P2747R2 constexpr placement new +https://wg21.link/edit7097 + + + + +- +d:edit7098 +EDIT7098 + +closed +P2963R3 Ordering of constraints involving fold expressions +https://wg21.link/edit7098 + + + + +- +d:edit7099 +EDIT7099 + +open +[CWG motion 1 2024-06] P3345R0 all issues except 2819, 2858, and 2876 +https://wg21.link/edit7099 + + + + +- +d:edit71 +EDIT71 + +closed +make_shared missing in synopsis for <memory> +https://wg21.link/edit71 + + + + +- +d:edit710 +EDIT710 closed -[allocator.adaptor] consolidate memory utilities -https://wg21.link/edit683 +[meta.rel] Fix for for INVOKE in table 54 +https://wg21.link/edit710 + + + + +- +d:edit7100 +EDIT7100 + +open +[CWG motion 2 2024-06] issues 2819, 2858, and 2876 in P3345R0 (Core Language Working Group "ready" Issues) +https://wg21.link/edit7100 + + + + +- +d:edit7101 +EDIT7101 + +closed +[optional.observe] Duplicate constexpr function description? +https://wg21.link/edit7101 + + + + +- +d:edit7102 +EDIT7102 + +open +[LWG motion 1 2024-06] Ready and Tentatively Ready issues in P3341R0 (C++ Standard Library Ready Issues) +https://wg21.link/edit7102 + + + + +- +d:edit7103 +EDIT7103 + +open +[LWG motion 8 2024-06] P3235R3 std::print more types faster with less memory +https://wg21.link/edit7103 + + + + +- +d:edit7104 +EDIT7104 + +closed +[LWG motion 2 2024-06] P2997R1 Removing the common reference requirement from the indirectly… +https://wg21.link/edit7104 + + + + +- +d:edit7105 +EDIT7105 + +closed +[LWG motion 3 2024-06] P2389R2 dextents Index Type Parameter +https://wg21.link/edit7105 + + + + +- +d:edit7106 +EDIT7106 + +closed +[LWG motion 4 2024-06] P3168R2 Give std::optional Range Support +https://wg21.link/edit7106 + + + + +- +d:edit7107 +EDIT7107 + +closed +[LWG motion 5 2024-06] P3217R0 Adjoints to "Enabling list-initialization for algorithms": find_last +https://wg21.link/edit7107 + + + + +- +d:edit7108 +EDIT7108 + +closed +[LWG motion 6 2024-06] P2985R0 A type trait for detecting virtual base classes +https://wg21.link/edit7108 + + + + +- +d:edit7109 +EDIT7109 + +closed +[LWG motion 9 2024-06] P2968R2 Make std::ignore a first-class object +https://wg21.link/edit7109 + + + + +- +d:edit711 +EDIT711 + +closed +Add name "high" to locale::narrow in [category.ctype] +https://wg21.link/edit711 + + + + +- +d:edit7110 +EDIT7110 + +open +[LWG motion 11 2024-06] P2422R1 Remove nodiscard annotations from the standard library specification +https://wg21.link/edit7110 + + + + +- +d:edit7111 +EDIT7111 + +closed +P0963R3 Structured binding declaration as a condition +https://wg21.link/edit7111 + + + + +- +d:edit7112 +EDIT7112 + +closed +[CWG motion 7 2024-06] P0963R3 Structured binding declaration as a condition +https://wg21.link/edit7112 + + + + +- +d:edit7113 +EDIT7113 + +closed +[CWG Motion 6 2024-06] P2963R3 Ordering of constraints involving fold expressions +https://wg21.link/edit7113 + + + + +- +d:edit7114 +EDIT7114 + +open + [LWG motion 12 2024-06] P2300R10 std::execution +https://wg21.link/edit7114 + + + + +- +d:edit7115 +EDIT7115 + +closed +[LWG 7 2024-06] P0843R14 inplace_vector +https://wg21.link/edit7115 + + + + +- +d:edit7116 +EDIT7116 + +closed +[depr.c.macros] Fix "macro" singular when referring to two macros +https://wg21.link/edit7116 + + + + +- +d:edit7117 +EDIT7117 + +closed +[istream.unformatted] add missing semi-colon to list item +https://wg21.link/edit7117 + + + + +- +d:edit7118 +EDIT7118 + +closed +[except.throw] Add comma +https://wg21.link/edit7118 + + + + +- +d:edit7119 +EDIT7119 + +open +[namespace.std] Exact meaning of "the behavior of a C++ program is unspecified (possibly ill-formed)" +https://wg21.link/edit7119 + + + + +- +d:edit712 +EDIT712 + +closed +class.copy rules for overloading as rvalue +https://wg21.link/edit712 + + + + +- +d:edit7120 +EDIT7120 + +closed +[version.syn] Remove redundant <version> in __cpp_lib_ranges_enumerate +https://wg21.link/edit7120 + + + + +- +d:edit7121 +EDIT7121 + +closed +[basic.start.main] a NTMBS -> an NTMBS +https://wg21.link/edit7121 + + + + +- +d:edit7122 +EDIT7122 + +open +[basic.pre] Defragment specification of names and entities +https://wg21.link/edit7122 + + + + +- +d:edit7123 +EDIT7123 + +closed +[LWG motion 10] P2075R6 Philox as an extension of the C++ RNG engines +https://wg21.link/edit7123 + + + + +- +d:edit7124 +EDIT7124 + +closed +[temp.inst] Fix definite article +https://wg21.link/edit7124 + + + + +- +d:edit7125 +EDIT7125 + +closed +[classes] Turn ad-hoc examples into proper examples +https://wg21.link/edit7125 + + + + +- +d:edit7126 +EDIT7126 + +open +\placeholder should be \exposid on \expos entities +https://wg21.link/edit7126 + + + + +- +d:edit7127 +EDIT7127 + +open +"Relevant clauses" in [basic.pre] is too vague +https://wg21.link/edit7127 + + + + +- +d:edit7128 +EDIT7128 + +open +[variant.visit] Add `constexpr` to `as-variant` +https://wg21.link/edit7128 + + + + +- +d:edit7129 +EDIT7129 + +open +[coro.generator] Rename the `generator`'s template parameter `V` to `Val` +https://wg21.link/edit7129 + + + + +- +d:edit713 +EDIT713 + +closed +[compatibility] Add compatibility notices for pp-number +https://wg21.link/edit713 + + + + +- +d:edit7130 +EDIT7130 + +open +[variant.visit] C-style casting in `visit` member +https://wg21.link/edit7130 + + + + +- +d:edit7131 +EDIT7131 + +open +[range.join.with.iterator] Fix typo +https://wg21.link/edit7131 + + + + +- +d:edit7132 +EDIT7132 + +open +[container.adaptors.general,flat.map.defn,flat.multimap.defn,mdspan.layout.right.cons] Fix indentation +https://wg21.link/edit7132 + + + + +- +d:edit7133 +EDIT7133 + +open +Bad phrasing "FooInsertable into *this" +https://wg21.link/edit7133 + + + + +- +d:edit7134 +EDIT7134 + +open +[diff.cpp23.expr] Remove superfluous that +https://wg21.link/edit7134 + + + + +- +d:edit7135 +EDIT7135 + +open +[temp.constr.normal] Remove superfluous the +https://wg21.link/edit7135 + + + + +- +d:edit7136 +EDIT7136 + +open +[deque, forward.list, list, vector] Fix instances of "FooInsertable into *this" +https://wg21.link/edit7136 + + + + +- +d:edit7137 +EDIT7137 + +closed +[tab:headers.cpp.fs] Use a more appropriate subclause for inplace_vector +https://wg21.link/edit7137 + + + + +- +d:edit7138 +EDIT7138 + +open +[inplace.vector.overview] Constexpr iterator requirements +https://wg21.link/edit7138 + + + + +- +d:edit7139 +EDIT7139 + +open +[list] [vector] [inplace.vector] Consistent comma in "If X, there are no effects" +https://wg21.link/edit7139 + + + + +- +d:edit714 +EDIT714 + +closed +Fix typo and bad formatting +https://wg21.link/edit714 + + + + +- +d:edit7140 +EDIT7140 + +open +[alg.search] Replace "the following corresponding conditions" +https://wg21.link/edit7140 + + + + +- +d:edit7141 +EDIT7141 + +closed +[basic.indet] Fix "errorneous" typo +https://wg21.link/edit7141 + + + + +- +d:edit7142 +EDIT7142 + +closed +Added three more examples in basic.tex +https://wg21.link/edit7142 + + + + +- +d:edit7143 +EDIT7143 + +open +Use `\range` where appropriate +https://wg21.link/edit7143 + + + + +- +d:edit7144 +EDIT7144 + +closed +[stmt.ambig] Make references more precise +https://wg21.link/edit7144 + + + + +- +d:edit7145 +EDIT7145 + +open +[diff.cpp03.library] Use a new macro to avoid `\-` in index reference +https://wg21.link/edit7145 + + + + +- +d:edit7146 +EDIT7146 + +open +Replace more non-`codeblock`s with `outputblock`s +https://wg21.link/edit7146 + + + + +- +d:edit7147 +EDIT7147 + +closed +[bibliography] Footer suggests the bibliography is in a section it isn't in +https://wg21.link/edit7147 + + + + +- +d:edit7148 +EDIT7148 + +closed +[inplace.vector.modifiers] Fix typo +https://wg21.link/edit7148 + + + + +- +d:edit7149 +EDIT7149 + +closed +[inplace.vector.syn] Missing default template argument for `erase` +https://wg21.link/edit7149 + + + + +- +d:edit715 +EDIT715 + +closed +Incorrect section references in filesystems subclause +https://wg21.link/edit715 + + + + +- +d:edit7150 +EDIT7150 + +closed +[inplace.vector.erasure] Added missing return statement +https://wg21.link/edit7150 + + + + +- +d:edit7151 +EDIT7151 + +closed +[inplace.vector.syn] Add missing default template argument for `erase` +https://wg21.link/edit7151 + + + + +- +d:edit7152 +EDIT7152 + +open +[rand.eng.philox] Make the round states explicit. +https://wg21.link/edit7152 + + + + +- +d:edit7153 +EDIT7153 + +open +[DO NOT MERGE] Reorder core basics +https://wg21.link/edit7153 + + + + +- +d:edit7154 +EDIT7154 + +closed +[depr.c.macros] Cross-reference the C headers for deprecated macros +https://wg21.link/edit7154 + + + + +- +d:edit7155 +EDIT7155 + +open +[containers] Consistently xref header synopses from General clauses +https://wg21.link/edit7155 + + + + +- +d:edit7156 +EDIT7156 + +closed +[locale.ctype.general] Better cross-ref standard headers +https://wg21.link/edit7156 + + + + +- +d:edit7157 +EDIT7157 + +open +[char.traits] Better cross-reference several headers +https://wg21.link/edit7157 + + + + +- +d:edit7158 +EDIT7158 + +closed +[iterator.synopsis] Add \ref for `indirect-value-t` +https://wg21.link/edit7158 + + + + +- +d:edit7159 +EDIT7159 + +open +[basic.scope.scope] Replaced the term top-level reference with just reference +https://wg21.link/edit7159 + + + + +- +d:edit716 +EDIT716 + +closed +Clean up apparent stray HTML formatting +https://wg21.link/edit716 + + + + +- +d:edit7160 +EDIT7160 + +closed +[func.search.bm] Remove superfluous the +https://wg21.link/edit7160 + + + + +- +d:edit7161 +EDIT7161 + +closed +[exec.snd.general] Remove disconnected and obsolete paragraph. +https://wg21.link/edit7161 - -d:edit684 -EDIT684 +d:edit7162 +EDIT7162 closed -[meta.unary.prop] Consistent formatting for 'void' -https://wg21.link/edit684 +[stoptoken.general, stopsource.general] Remove DMI from stop-state member +https://wg21.link/edit7162 - -d:edit685 -EDIT685 +d:edit7163 +EDIT7163 closed -[unique.ptr.special] prefer use of common_type_t -https://wg21.link/edit685 +[exec.async.ops] Fix bad use of \defnadj +https://wg21.link/edit7163 - -d:edit686 -EDIT686 +d:edit7164 +EDIT7164 closed -[tuple.helper] prefer to use tuple_element_t -https://wg21.link/edit686 +[stoptoken.inplace.general] Add missing \tcode +https://wg21.link/edit7164 - -d:edit687 -EDIT687 +d:edit7165 +EDIT7165 closed -implementation-defined vs. implementation defined vs. impldef -https://wg21.link/edit687 +Fix some issues in comments of xrefdelta.tex +https://wg21.link/edit7165 - -d:edit688 -EDIT688 +d:edit7166 +EDIT7166 closed -Formatting of "Type/Name(s)" Tables is confusing -https://wg21.link/edit688 +[exec.util.cmplsig.trans] add missing \exposid +https://wg21.link/edit7166 - -d:edit689 -EDIT689 +d:edit7167 +EDIT7167 closed -How to interpret Table 152 "Header <cinttypes> synopsis"? -https://wg21.link/edit689 +[exec.util.cmplsig.trans] add missing \tcode in title +https://wg21.link/edit7167 - -d:edit69 -EDIT69 +d:edit7168 +EDIT7168 closed -index: formatting issues -https://wg21.link/edit69 +[print.syn] Update `locking` to `buffered` +https://wg21.link/edit7168 - -d:edit690 -EDIT690 +d:edit7169 +EDIT7169 closed -inconsistency in library type requirements -https://wg21.link/edit690 +[execution.syn] Declare read_env with the right name +https://wg21.link/edit7169 - -d:edit691 -EDIT691 +d:edit717 +EDIT717 closed -is_swappable is damaged in [meta.unary.prop] -https://wg21.link/edit691 +[ext.manip] fix typo in put_money description +https://wg21.link/edit717 - -d:edit692 -EDIT692 +d:edit7170 +EDIT7170 closed -[tuple.cnstr] fix the position of \end{itemdescr} -https://wg21.link/edit692 +[exec] Add missing \exposid +https://wg21.link/edit7170 - -d:edit693 -EDIT693 +d:edit7171 +EDIT7171 closed -"Underfull" and "Overfull" warnings emitted from Latex. -https://wg21.link/edit693 +[range.concat.iterator] Remove stray hyphen +https://wg21.link/edit7171 - -d:edit694 -EDIT694 +d:edit7172 +EDIT7172 closed -Formatting in "Effects: Equivalent to" is confusing -https://wg21.link/edit694 +[exec.snd.general] Add missing full stop +https://wg21.link/edit7172 - -d:edit695 -EDIT695 +d:edit7173 +EDIT7173 closed -What is "it" in [memory.resource.prot]/7? -https://wg21.link/edit695 +[out.ptr.t] Fix bullet placement for item that starts with codeblock. +https://wg21.link/edit7173 - -d:edit696 -EDIT696 +d:edit7174 +EDIT7174 closed -cross-references needed to library types and their requirements -https://wg21.link/edit696 +[time.traits.specializations] Fix index entry for common_type specialization +https://wg21.link/edit7174 - -d:edit697 -EDIT697 +d:edit7175 +EDIT7175 -closed -cross-references needed at uses of "writable to" in the library -https://wg21.link/edit697 +open +Reuse `class-type`? +https://wg21.link/edit7175 - -d:edit698 -EDIT698 +d:edit7176 +EDIT7176 closed -Fix the definition of "writable to" -https://wg21.link/edit698 +[execution.syn] Add \libconcept for `sender` and `scheduler` +https://wg21.link/edit7176 - -d:edit699 -EDIT699 +d:edit7177 +EDIT7177 closed -Reference comments missing from [memory.polymorphic.allocator.class] synopsis -https://wg21.link/edit699 +[time.duration.nonmember] Fix operator index entries. +https://wg21.link/edit7177 - -d:edit7 -EDIT7 +d:edit7178 +EDIT7178 -closed -[storage.iterator] Remove redundant template argument lists. -https://wg21.link/edit7 +open +[exec] Index many library names. +https://wg21.link/edit7178 - -d:edit70 -EDIT70 +d:edit7179 +EDIT7179 -closed -[pairs.pair] "Requires Requires" requires fewer Requires -https://wg21.link/edit70 +open +[dcl.dcl][stmt.stmt] Remove tautonyms from top level stable labels +https://wg21.link/edit7179 - -d:edit700 -EDIT700 +d:edit718 +EDIT718 closed -[dcl.enum] This is not where layout-compatible is defined -https://wg21.link/edit700 +Remove the semicolon in "Returns: expr;" +https://wg21.link/edit718 - -d:edit701 -EDIT701 +d:edit7180 +EDIT7180 -closed -grammar terms aren't \grammarterm'd -https://wg21.link/edit701 +open +[lex.separate][module.unit] move definitions of program and translation unit +https://wg21.link/edit7180 - -d:edit702 -EDIT702 +d:edit7181 +EDIT7181 closed -cross-references to hard-coded paragraph numbers -https://wg21.link/edit702 +[execution.syn] Add missing \exposid +https://wg21.link/edit7181 - -d:edit703 -EDIT703 +d:edit7182 +EDIT7182 closed -[support.runtime] Clarify va_start requirements -https://wg21.link/edit703 +[execution.syn] Add \libconcept for `sender_in` +https://wg21.link/edit7182 - -d:edit704 -EDIT704 +d:edit7183 +EDIT7183 closed -[18-30] Replace typedefs with alias -https://wg21.link/edit704 +[exec] Add \exposid for `decayed-tuple` +https://wg21.link/edit7183 - -d:edit705 -EDIT705 +d:edit7184 +EDIT7184 closed -[alg.random.sample] reword and add cross-reference -https://wg21.link/edit705 +[exec.run.loop.types] Add \libconcept for `receiver_of` +https://wg21.link/edit7184 - -d:edit706 -EDIT706 +d:edit7185 +EDIT7185 -closed -[algorithms] [numeric.ops] Crossref "writable" -https://wg21.link/edit706 +open +[iterators, ranges] Consider changing default member initializers of form `= T()` to `{}`? +https://wg21.link/edit7185 - -d:edit707 -EDIT707 +d:edit7186 +EDIT7186 closed -"deallocation function" is \term'd -https://wg21.link/edit707 +[exec.stopped.opt] Fix indefinite article +https://wg21.link/edit7186 - -d:edit708 -EDIT708 +d:edit7187 +EDIT7187 closed -Fix uses of "value-initialize"/"value initialize" -https://wg21.link/edit708 +[exec.just, exec.then] Add \exposconcept for movable-value +https://wg21.link/edit7187 - -d:edit709 -EDIT709 +d:edit7188 +EDIT7188 closed -[meta.rel] New 'is_callable' entries overflow the middle cell of table -https://wg21.link/edit709 +[exec.util.cmplsig.trans] Fix grammar +https://wg21.link/edit7188 - -d:edit71 -EDIT71 +d:edit7189 +EDIT7189 closed -make_shared missing in synopsis for <memory> -https://wg21.link/edit71 +[exec.snd.expos] Replace \exposconcept for nothrow-callable +https://wg21.link/edit7189 - -d:edit710 -EDIT710 +d:edit719 +EDIT719 closed -[meta.rel] Fix for for INVOKE in table 54 -https://wg21.link/edit710 +[deque.overview] deque should not reference vector +https://wg21.link/edit719 - -d:edit711 -EDIT711 +d:edit7190 +EDIT7190 closed -Add name "high" to locale::narrow in [category.ctype] -https://wg21.link/edit711 +[exec.split] Add \libconcept for copyable +https://wg21.link/edit7190 - -d:edit712 -EDIT712 +d:edit7191 +EDIT7191 -closed -class.copy rules for overloading as rvalue -https://wg21.link/edit712 +open +[config.tex] Create and apply macros denoting first and last core chapters +https://wg21.link/edit7191 - -d:edit713 -EDIT713 +d:edit7192 +EDIT7192 -closed -[compatibility] Add compatibility notices for pp-number -https://wg21.link/edit713 +open +[lex.phases] replace term 'input file' with 'source file' in phase 1 +https://wg21.link/edit7192 - -d:edit714 -EDIT714 +d:edit7193 +EDIT7193 -closed -Fix typo and bad formatting -https://wg21.link/edit714 +open +[lex] Reorganize contents to follow grammar and phases of translation +https://wg21.link/edit7193 - -d:edit715 -EDIT715 +d:edit7194 +EDIT7194 closed -Incorrect section references in filesystems subclause -https://wg21.link/edit715 +[lex.pptoken] Consistent use of preprocessing vs processing +https://wg21.link/edit7194 - -d:edit716 -EDIT716 +d:edit7195 +EDIT7195 closed -Clean up apparent stray HTML formatting -https://wg21.link/edit716 +[ios.syn] Fix typo'd xref to [fpos] introduced in 4b3f32ae +https://wg21.link/edit7195 - -d:edit717 -EDIT717 +d:edit7196 +EDIT7196 closed -[ext.manip] fix typo in put_money description -https://wg21.link/edit717 +[dcl.fct] Fix obsolete phrasing when defining 'function type' +https://wg21.link/edit7196 - -d:edit718 -EDIT718 +d:edit7197 +EDIT7197 -closed -Remove the semicolon in "Returns: expr;" -https://wg21.link/edit718 +open +[locale.time.put.members] It doesn't seem correct now that "the C programming language defines no modifiers" (for `strftime`) +https://wg21.link/edit7197 - -d:edit719 -EDIT719 +d:edit7198 +EDIT7198 + +open +[std.manip, ext.manip] Better titles for "Standard"/"Extended" manipulators +https://wg21.link/edit7198 + + + + +- +d:edit7199 +EDIT7199 closed -[deque.overview] deque should not reference vector -https://wg21.link/edit719 +[temp.constr.order] Reflect fold expanded constraints in footnotes +https://wg21.link/edit7199 @@ -63161,6 +75652,116 @@ https://wg21.link/edit720 +- +d:edit7200 +EDIT7200 + +closed +[macros,diff] Rework header indexing to avoid hyphenation hints +https://wg21.link/edit7200 + + + + +- +d:edit7201 +EDIT7201 + +closed +[snd.expos] Fix typo in definition of SCHED-ENV exposition-only helper +https://wg21.link/edit7201 + + + + +- +d:edit7202 +EDIT7202 + +closed +[mdspan.layout.leftpad.cons] Add \exposid for static-padding-stride +https://wg21.link/edit7202 + + + + +- +d:edit7203 +EDIT7203 + +closed +[exec.sync.wait] Added missing \exposid and \libcecpt for two alias templates +https://wg21.link/edit7203 + + + + +- +d:edit7204 +EDIT7204 + +open +[func.wrap.func] Drop Lvalue-Callable +https://wg21.link/edit7204 + + + + +- +d:edit7205 +EDIT7205 + +open +[range.adaptor.object][exec.adapt.obj] Consider specifying piping only once +https://wg21.link/edit7205 + + + + +- +d:edit7206 +EDIT7206 + +open +[defns.undefined] Fix the note on undefined behavior in constant evaluation +https://wg21.link/edit7206 + + + + +- +d:edit7207 +EDIT7207 + +open +[containers] Tentative P/R for [LWG4123] "Container effects use..." +https://wg21.link/edit7207 + + + + +- +d:edit7208 +EDIT7208 + +open +[input.output] Use `\exposid` for exposition-only names +https://wg21.link/edit7208 + + + + +- +d:edit7209 +EDIT7209 + +closed +[exec.when.all] Add italics for expression `e` +https://wg21.link/edit7209 + + + + - d:edit721 EDIT721 @@ -63172,6 +75773,116 @@ https://wg21.link/edit721 +- +d:edit7210 +EDIT7210 + +open +[exec.snd.apply, exec.schedule.from] Add @\ for see below +https://wg21.link/edit7210 + + + + +- +d:edit7211 +EDIT7211 + +open +[stmt.for] Missing curly brackets in for-statement translation +https://wg21.link/edit7211 + + + + +- +d:edit7212 +EDIT7212 + +open +[stmt.for] Fix scope issue in for-statement translation. +https://wg21.link/edit7212 + + + + +- +d:edit7213 +EDIT7213 + +open +[cpp.predefined] Sort prefined macros +https://wg21.link/edit7213 + + + + +- +d:edit7214 +EDIT7214 + +open +[linalg] specification glitches +https://wg21.link/edit7214 + + + + +- +d:edit7215 +EDIT7215 + +closed +Correctly mark state.error as an exposition-only identifier in [exec.sync.wait] p9 +https://wg21.link/edit7215 + + + + +- +d:edit7216 +EDIT7216 + +open +Fix markup of product-type constructor call in [exec.just] +https://wg21.link/edit7216 + + + + +- +d:edit7217 +EDIT7217 + +closed +[exec.snd.concepts] Replace \libconcept for copy_constructible +https://wg21.link/edit7217 + + + + +- +d:edit7218 +EDIT7218 + +closed +[exec.recv.concepts] Add \libconcept for receiver +https://wg21.link/edit7218 + + + + +- +d:edit7219 +EDIT7219 + +closed +[exec.fwd.env] Add \libconcept for derived_from +https://wg21.link/edit7219 + + + + - d:edit722 EDIT722 @@ -63183,6 +75894,116 @@ https://wg21.link/edit722 +- +d:edit7220 +EDIT7220 + +closed +[exec.getcomplsigs] Use \libconcept for is-awaitable +https://wg21.link/edit7220 + + + + +- +d:edit7221 +EDIT7221 + +closed +[exec.when.all] Add \libconcept for sender +https://wg21.link/edit7221 + + + + +- +d:edit7222 +EDIT7222 + +open +[exec] Cast the return value of the comma expression to `void`? +https://wg21.link/edit7222 + + + + +- +d:edit7223 +EDIT7223 + +closed +[dcl.init.list] Add comma +https://wg21.link/edit7223 + + + + +- +d:edit7224 +EDIT7224 + +closed +[exec.split] Add \exposid for local-state +https://wg21.link/edit7224 + + + + +- +d:edit7225 +EDIT7225 + +closed +[exec.snd.expos] Add \exposid for COMPL-DOMAIN +https://wg21.link/edit7225 + + + + +- +d:edit7226 +EDIT7226 + +closed +[exec.general] Add \exposid for MATCHING-SIG +https://wg21.link/edit7226 + + + + +- +d:edit7227 +EDIT7227 + +closed +[exec.fwd.env] Add \tcode for true +https://wg21.link/edit7227 + + + + +- +d:edit7228 +EDIT7228 + +closed +[exec.adapt.obj] Add \tcode for sender_adaptor_closure +https://wg21.link/edit7228 + + + + +- +d:edit7229 +EDIT7229 + +closed +[mdspan.layout.rightpad.expo] Add \exposid for LEAST-MULTIPLE-AT-LEAST +https://wg21.link/edit7229 + + + + - d:edit723 EDIT723 @@ -63194,6 +76015,116 @@ https://wg21.link/edit723 +- +d:edit7230 +EDIT7230 + +closed +[set.modifiers] Add \tcode for true +https://wg21.link/edit7230 + + + + +- +d:edit7231 +EDIT7231 + +closed +[flat.set.modifiers, mdspan.layout.leftpad.cons] Add \tcode for true +https://wg21.link/edit7231 + + + + +- +d:edit7232 +EDIT7232 + +closed +[exec.snd.expos] Use \tcode for false +https://wg21.link/edit7232 + + + + +- +d:edit7233 +EDIT7233 + +closed +[exec.async.ops] Add \tcode for true +https://wg21.link/edit7233 + + + + +- +d:edit7234 +EDIT7234 + +closed +[meta.const.eval] make the example compilable +https://wg21.link/edit7234 + + + + +- +d:edit7235 +EDIT7235 + +open +"valarray<complex>" +https://wg21.link/edit7235 + + + + +- +d:edit7236 +EDIT7236 + +closed +[basic.pre] ``pack`` should be ``parameter pack`` +https://wg21.link/edit7236 + + + + +- +d:edit7237 +EDIT7237 + +open +[text.encoding.aliases] Add note about what isn't required +https://wg21.link/edit7237 + + + + +- +d:edit7238 +EDIT7238 + +open +[basic.scope.scope] Fix a note about declarations that do not bind names +https://wg21.link/edit7238 + + + + +- +d:edit7239 +EDIT7239 + +closed +[expr.prim.lambda.capture] Incorporate ellipsis into "captured by copy" definition +https://wg21.link/edit7239 + + + + - d:edit724 EDIT724 @@ -63205,6 +76136,61 @@ https://wg21.link/edit724 +- +d:edit7240 +EDIT7240 + +open +(library-wide) Remove `inline` from variable templates +https://wg21.link/edit7240 + + + + +- +d:edit7241 +EDIT7241 + +closed +[dcl.type.elab] Remove normative duplication about name binding +https://wg21.link/edit7241 + + + + +- +d:edit7242 +EDIT7242 + +closed +[dcl.type.elab] Remove redundant full stop +https://wg21.link/edit7242 + + + + +- +d:edit7243 +EDIT7243 + +open +[inplace.vector] Fix some spelling/grammar issues +https://wg21.link/edit7243 + + + + +- +d:edit7244 +EDIT7244 + +closed +[numerics] correct typo Bessell -> Bessel +https://wg21.link/edit7244 + + + + - d:edit725 EDIT725 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-el.data b/bikeshed/spec-data/readonly/biblio/biblio-el.data index a037a114ec..efaecf066a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-el.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-el.data @@ -1,3 +1,14 @@ +d:element-capture +ELEMENT-CAPTURE + +Draft Community Group Report +Element Capture +https://screen-share.github.io/element-capture/ + + + + +- d:element-timing ELEMENT-TIMING @@ -191,8 +202,8 @@ Richard Ishida - d:elreq-gap elreq-gap -24 May 2021 -WD +9 July 2024 +NOTE Ethiopic Layout Gap Analysis https://www.w3.org/TR/elreq-gap/ https://w3c.github.io/elreq/gap-analysis/ @@ -235,5 +246,65 @@ https://www.w3.org/TR/2021/WD-elreq-gap-20210524/ +Richard Ishida +- +d:elreq-gap-20230614 +elreq-gap-20230614 +14 June 2023 +NOTE +Ethiopic Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-elreq-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-elreq-gap-20230614/ + + + +Richard Ishida +- +d:elreq-gap-20231004 +elreq-gap-20231004 +4 October 2023 +NOTE +Ethiopic Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-elreq-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-elreq-gap-20231004/ + + + +Richard Ishida +- +d:elreq-gap-20240701 +elreq-gap-20240701 +1 July 2024 +NOTE +Ethiopic Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-elreq-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-elreq-gap-20240701/ + + + +Richard Ishida +- +d:elreq-gap-20240704 +elreq-gap-20240704 +4 July 2024 +NOTE +Ethiopic Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-elreq-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-elreq-gap-20240704/ + + + +Richard Ishida +- +d:elreq-gap-20240709 +elreq-gap-20240709 +9 July 2024 +NOTE +Ethiopic Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-elreq-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-elreq-gap-20240709/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-em.data b/bikeshed/spec-data/readonly/biblio/biblio-em.data index b61f316499..bb25a0cb53 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-em.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-em.data @@ -2,9 +2,22 @@ a:email EMAIL RFC5322 - +d:eme-hdcp-version-registry +eme-hdcp-version-registry +27 April 2024 +NOTE +Encrypted Media Extensions HDCP Version Registry +https://www.w3.org/TR/eme-hdcp-version-registry/ +https://w3c.github.io/encrypted-media/hdcp-version-registry.html + + + +Joey Parrish +Greg Freedman +- d:eme-initdata-cenc eme-initdata-cenc -15 September 2016 +18 July 2024 NOTE "cenc" Initialization Data Format https://www.w3.org/TR/eme-initdata-cenc/ @@ -12,10 +25,8 @@ https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman - d:eme-initdata-cenc-20160510 eme-initdata-cenc-20160510 @@ -42,10 +53,8 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160831/ -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman - d:eme-initdata-cenc-20160907 eme-initdata-cenc-20160907 @@ -57,10 +66,8 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160907/ -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman - d:eme-initdata-cenc-20160915 eme-initdata-cenc-20160915 @@ -72,14 +79,25 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160915/ -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman +- +d:eme-initdata-cenc-20240718 +eme-initdata-cenc-20240718 +18 July 2024 +NOTE +"cenc" Initialization Data Format +https://www.w3.org/TR/2024/NOTE-eme-initdata-cenc-20240718/ +https://www.w3.org/TR/2024/NOTE-eme-initdata-cenc-20240718/ + + + +Joey Parrish +Greg Freedman - d:eme-initdata-keyids eme-initdata-keyids -15 September 2016 +20 August 2024 NOTE "keyids" Initialization Data Format https://www.w3.org/TR/eme-initdata-keyids/ @@ -87,9 +105,8 @@ https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-initdata-keyids-20160510 eme-initdata-keyids-20160510 @@ -115,9 +132,8 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160831/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-initdata-keyids-20160907 eme-initdata-keyids-20160907 @@ -129,9 +145,8 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160907/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-initdata-keyids-20160915 eme-initdata-keyids-20160915 @@ -143,9 +158,34 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160915/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman +- +d:eme-initdata-keyids-20240718 +eme-initdata-keyids-20240718 +18 July 2024 +NOTE +"keyids" Initialization Data Format +https://www.w3.org/TR/2024/NOTE-eme-initdata-keyids-20240718/ +https://www.w3.org/TR/2024/NOTE-eme-initdata-keyids-20240718/ + + + +Joey Parrish +Greg Freedman +- +d:eme-initdata-keyids-20240820 +eme-initdata-keyids-20240820 +20 August 2024 +NOTE +"keyids" Initialization Data Format +https://www.w3.org/TR/2024/NOTE-eme-initdata-keyids-20240820/ +https://www.w3.org/TR/2024/NOTE-eme-initdata-keyids-20240820/ + + + +Joey Parrish +Greg Freedman - d:eme-initdata-registry eme-initdata-registry @@ -219,7 +259,7 @@ Mark Watson - d:eme-initdata-webm eme-initdata-webm -15 September 2016 +18 July 2024 NOTE "webm" Initialization Data Format https://www.w3.org/TR/eme-initdata-webm/ @@ -227,9 +267,8 @@ https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-initdata-webm-20160510 eme-initdata-webm-20160510 @@ -255,9 +294,8 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160831/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-initdata-webm-20160907 eme-initdata-webm-20160907 @@ -269,9 +307,8 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160907/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-initdata-webm-20160915 eme-initdata-webm-20160915 @@ -283,24 +320,34 @@ https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160915/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman +- +d:eme-initdata-webm-20240718 +eme-initdata-webm-20240718 +18 July 2024 +NOTE +"webm" Initialization Data Format +https://www.w3.org/TR/2024/NOTE-eme-initdata-webm-20240718/ +https://www.w3.org/TR/2024/NOTE-eme-initdata-webm-20240718/ + + + +Joey Parrish +Greg Freedman - d:eme-stream-mp4 eme-stream-mp4 -15 September 2016 +18 July 2024 NOTE -ISO Common Encryption ('cenc') Protection Scheme for ISO Base Media File Format Stream Format +ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format https://www.w3.org/TR/eme-stream-mp4/ https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman - d:eme-stream-mp4-20160510 eme-stream-mp4-20160510 @@ -327,10 +374,8 @@ https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160831/ -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman - d:eme-stream-mp4-20160907 eme-stream-mp4-20160907 @@ -342,10 +387,8 @@ https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160907/ -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman - d:eme-stream-mp4-20160915 eme-stream-mp4-20160915 @@ -357,10 +400,21 @@ https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160915/ -David Dorwin -Adrian Bateman -Mark Watson -Jerry Smith +Joey Parrish +Greg Freedman +- +d:eme-stream-mp4-20240718 +eme-stream-mp4-20240718 +18 July 2024 +NOTE +ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format +https://www.w3.org/TR/2024/NOTE-eme-stream-mp4-20240718/ +https://www.w3.org/TR/2024/NOTE-eme-stream-mp4-20240718/ + + + +Joey Parrish +Greg Freedman - d:eme-stream-registry eme-stream-registry @@ -434,7 +488,7 @@ Mark Watson - d:eme-stream-webm eme-stream-webm -15 September 2016 +18 July 2024 NOTE WebM Stream Format https://www.w3.org/TR/eme-stream-webm/ @@ -442,9 +496,8 @@ https://w3c.github.io/encrypted-media/format-registry/stream/webm.html -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-stream-webm-20160510 eme-stream-webm-20160510 @@ -470,9 +523,8 @@ https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160831/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-stream-webm-20160907 eme-stream-webm-20160907 @@ -484,9 +536,8 @@ https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160907/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman - d:eme-stream-webm-20160915 eme-stream-webm-20160915 @@ -498,9 +549,21 @@ https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160915/ -David Dorwin -Adrian Bateman -Mark Watson +Joey Parrish +Greg Freedman +- +d:eme-stream-webm-20240718 +eme-stream-webm-20240718 +18 July 2024 +NOTE +WebM Stream Format +https://www.w3.org/TR/2024/NOTE-eme-stream-webm-20240718/ +https://www.w3.org/TR/2024/NOTE-eme-stream-webm-20240718/ + + + +Joey Parrish +Greg Freedman - d:emma emma diff --git a/bikeshed/spec-data/readonly/biblio/biblio-en.data b/bikeshed/spec-data/readonly/biblio/biblio-en.data index 7c842ae0a6..f55d5e0c9c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-en.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-en.data @@ -94,12 +94,16 @@ Anne van Kesteren Joshua Bell Addison Phillips - -d:encrypted-media +a:encrypted-media encrypted-media +encrypted-media-2 +- +d:encrypted-media-1 +encrypted-media-1 18 September 2017 REC Encrypted Media Extensions -https://www.w3.org/TR/encrypted-media/ +https://www.w3.org/TR/encrypted-media-1/ https://w3c.github.io/encrypted-media/ @@ -109,8 +113,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20130510 -encrypted-media-20130510 +d:encrypted-media-1-20130510 +encrypted-media-1-20130510 10 May 2013 WD Encrypted Media Extensions @@ -123,8 +127,8 @@ David Dorwin Adrian Bateman Mark Watson - -d:encrypted-media-20131022 -encrypted-media-20131022 +d:encrypted-media-1-20131022 +encrypted-media-1-20131022 22 October 2013 WD Encrypted Media Extensions @@ -137,8 +141,8 @@ David Dorwin Adrian Bateman Mark Watson - -d:encrypted-media-20140218 -encrypted-media-20140218 +d:encrypted-media-1-20140218 +encrypted-media-1-20140218 18 February 2014 WD Encrypted Media Extensions @@ -151,8 +155,8 @@ David Dorwin Adrian Bateman Mark Watson - -d:encrypted-media-20140828 -encrypted-media-20140828 +d:encrypted-media-1-20140828 +encrypted-media-1-20140828 28 August 2014 WD Encrypted Media Extensions @@ -166,8 +170,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20150331 -encrypted-media-20150331 +d:encrypted-media-1-20150331 +encrypted-media-1-20150331 31 March 2015 WD Encrypted Media Extensions @@ -181,8 +185,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20150928 -encrypted-media-20150928 +d:encrypted-media-1-20150928 +encrypted-media-1-20150928 28 September 2015 WD Encrypted Media Extensions @@ -196,8 +200,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20151010 -encrypted-media-20151010 +d:encrypted-media-1-20151010 +encrypted-media-1-20151010 10 October 2015 WD Encrypted Media Extensions @@ -211,8 +215,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20151019 -encrypted-media-20151019 +d:encrypted-media-1-20151019 +encrypted-media-1-20151019 19 October 2015 WD Encrypted Media Extensions @@ -226,8 +230,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20151027 -encrypted-media-20151027 +d:encrypted-media-1-20151027 +encrypted-media-1-20151027 27 October 2015 WD Encrypted Media Extensions @@ -241,8 +245,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20151116 -encrypted-media-20151116 +d:encrypted-media-1-20151116 +encrypted-media-1-20151116 16 November 2015 WD Encrypted Media Extensions @@ -256,8 +260,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20151120 -encrypted-media-20151120 +d:encrypted-media-1-20151120 +encrypted-media-1-20151120 20 November 2015 WD Encrypted Media Extensions @@ -271,8 +275,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20151130 -encrypted-media-20151130 +d:encrypted-media-1-20151130 +encrypted-media-1-20151130 30 November 2015 WD Encrypted Media Extensions @@ -286,8 +290,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160122 -encrypted-media-20160122 +d:encrypted-media-1-20160122 +encrypted-media-1-20160122 22 January 2016 WD Encrypted Media Extensions @@ -301,8 +305,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160202 -encrypted-media-20160202 +d:encrypted-media-1-20160202 +encrypted-media-1-20160202 2 February 2016 WD Encrypted Media Extensions @@ -316,8 +320,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160204 -encrypted-media-20160204 +d:encrypted-media-1-20160204 +encrypted-media-1-20160204 4 February 2016 WD Encrypted Media Extensions @@ -331,8 +335,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160208 -encrypted-media-20160208 +d:encrypted-media-1-20160208 +encrypted-media-1-20160208 8 February 2016 WD Encrypted Media Extensions @@ -346,8 +350,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160209 -encrypted-media-20160209 +d:encrypted-media-1-20160209 +encrypted-media-1-20160209 9 February 2016 WD Encrypted Media Extensions @@ -361,8 +365,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160216 -encrypted-media-20160216 +d:encrypted-media-1-20160216 +encrypted-media-1-20160216 16 February 2016 WD Encrypted Media Extensions @@ -376,8 +380,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160218 -encrypted-media-20160218 +d:encrypted-media-1-20160218 +encrypted-media-1-20160218 18 February 2016 WD Encrypted Media Extensions @@ -391,8 +395,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160225 -encrypted-media-20160225 +d:encrypted-media-1-20160225 +encrypted-media-1-20160225 25 February 2016 WD Encrypted Media Extensions @@ -406,8 +410,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160227 -encrypted-media-20160227 +d:encrypted-media-1-20160227 +encrypted-media-1-20160227 27 February 2016 WD Encrypted Media Extensions @@ -421,8 +425,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160325 -encrypted-media-20160325 +d:encrypted-media-1-20160325 +encrypted-media-1-20160325 25 March 2016 WD Encrypted Media Extensions @@ -436,8 +440,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160328 -encrypted-media-20160328 +d:encrypted-media-1-20160328 +encrypted-media-1-20160328 28 March 2016 WD Encrypted Media Extensions @@ -451,8 +455,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160329 -encrypted-media-20160329 +d:encrypted-media-1-20160329 +encrypted-media-1-20160329 29 March 2016 WD Encrypted Media Extensions @@ -466,8 +470,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160330 -encrypted-media-20160330 +d:encrypted-media-1-20160330 +encrypted-media-1-20160330 30 March 2016 WD Encrypted Media Extensions @@ -481,8 +485,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160404 -encrypted-media-20160404 +d:encrypted-media-1-20160404 +encrypted-media-1-20160404 4 April 2016 WD Encrypted Media Extensions @@ -496,8 +500,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160412 -encrypted-media-20160412 +d:encrypted-media-1-20160412 +encrypted-media-1-20160412 12 April 2016 WD Encrypted Media Extensions @@ -511,8 +515,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160414 -encrypted-media-20160414 +d:encrypted-media-1-20160414 +encrypted-media-1-20160414 14 April 2016 WD Encrypted Media Extensions @@ -526,8 +530,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160416 -encrypted-media-20160416 +d:encrypted-media-1-20160416 +encrypted-media-1-20160416 16 April 2016 WD Encrypted Media Extensions @@ -541,8 +545,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160421 -encrypted-media-20160421 +d:encrypted-media-1-20160421 +encrypted-media-1-20160421 21 April 2016 WD Encrypted Media Extensions @@ -556,8 +560,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160426 -encrypted-media-20160426 +d:encrypted-media-1-20160426 +encrypted-media-1-20160426 26 April 2016 WD Encrypted Media Extensions @@ -571,8 +575,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160428 -encrypted-media-20160428 +d:encrypted-media-1-20160428 +encrypted-media-1-20160428 28 April 2016 WD Encrypted Media Extensions @@ -586,8 +590,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160429 -encrypted-media-20160429 +d:encrypted-media-1-20160429 +encrypted-media-1-20160429 29 April 2016 WD Encrypted Media Extensions @@ -601,8 +605,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160514 -encrypted-media-20160514 +d:encrypted-media-1-20160514 +encrypted-media-1-20160514 14 May 2016 WD Encrypted Media Extensions @@ -616,8 +620,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160517 -encrypted-media-20160517 +d:encrypted-media-1-20160517 +encrypted-media-1-20160517 17 May 2016 WD Encrypted Media Extensions @@ -631,8 +635,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160518 -encrypted-media-20160518 +d:encrypted-media-1-20160518 +encrypted-media-1-20160518 18 May 2016 WD Encrypted Media Extensions @@ -646,8 +650,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160520 -encrypted-media-20160520 +d:encrypted-media-1-20160520 +encrypted-media-1-20160520 20 May 2016 WD Encrypted Media Extensions @@ -661,8 +665,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160527 -encrypted-media-20160527 +d:encrypted-media-1-20160527 +encrypted-media-1-20160527 27 May 2016 WD Encrypted Media Extensions @@ -676,8 +680,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160531 -encrypted-media-20160531 +d:encrypted-media-1-20160531 +encrypted-media-1-20160531 31 May 2016 WD Encrypted Media Extensions @@ -691,8 +695,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160601 -encrypted-media-20160601 +d:encrypted-media-1-20160601 +encrypted-media-1-20160601 1 June 2016 WD Encrypted Media Extensions @@ -706,8 +710,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160602 -encrypted-media-20160602 +d:encrypted-media-1-20160602 +encrypted-media-1-20160602 2 June 2016 WD Encrypted Media Extensions @@ -721,8 +725,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160603 -encrypted-media-20160603 +d:encrypted-media-1-20160603 +encrypted-media-1-20160603 3 June 2016 WD Encrypted Media Extensions @@ -736,8 +740,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160609 -encrypted-media-20160609 +d:encrypted-media-1-20160609 +encrypted-media-1-20160609 9 June 2016 WD Encrypted Media Extensions @@ -751,8 +755,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160610 -encrypted-media-20160610 +d:encrypted-media-1-20160610 +encrypted-media-1-20160610 10 June 2016 WD Encrypted Media Extensions @@ -766,8 +770,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20160705 -encrypted-media-20160705 +d:encrypted-media-1-20160705 +encrypted-media-1-20160705 5 July 2016 CR Encrypted Media Extensions @@ -781,8 +785,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20170316 -encrypted-media-20170316 +d:encrypted-media-1-20170316 +encrypted-media-1-20170316 16 March 2017 PR Encrypted Media Extensions @@ -796,8 +800,8 @@ Jerry Smith Mark Watson Adrian Bateman - -d:encrypted-media-20170918 -encrypted-media-20170918 +d:encrypted-media-1-20170918 +encrypted-media-1-20170918 18 September 2017 REC Encrypted Media Extensions @@ -811,6 +815,241 @@ Jerry Smith Mark Watson Adrian Bateman - +d:encrypted-media-2 +encrypted-media-2 +7 August 2024 +WD +Encrypted Media Extensions +https://www.w3.org/TR/encrypted-media-2/ +https://w3c.github.io/encrypted-media/ + + + +Joey Parrish +Greg Freedman +- +d:encrypted-media-2-20240718 +encrypted-media-2-20240718 +18 July 2024 +WD +Encrypted Media Extensions +https://www.w3.org/TR/2024/WD-encrypted-media-2-20240718/ +https://www.w3.org/TR/2024/WD-encrypted-media-2-20240718/ + + + +Joey Parrish +Greg Freedman +- +d:encrypted-media-2-20240807 +encrypted-media-2-20240807 +7 August 2024 +WD +Encrypted Media Extensions +https://www.w3.org/TR/2024/WD-encrypted-media-2-20240807/ +https://www.w3.org/TR/2024/WD-encrypted-media-2-20240807/ + + + +Joey Parrish +Greg Freedman +- +a:encrypted-media-20130510 +encrypted-media-20130510 +encrypted-media-1-20130510 +- +a:encrypted-media-20131022 +encrypted-media-20131022 +encrypted-media-1-20131022 +- +a:encrypted-media-20140218 +encrypted-media-20140218 +encrypted-media-1-20140218 +- +a:encrypted-media-20140828 +encrypted-media-20140828 +encrypted-media-1-20140828 +- +a:encrypted-media-20150331 +encrypted-media-20150331 +encrypted-media-1-20150331 +- +a:encrypted-media-20150928 +encrypted-media-20150928 +encrypted-media-1-20150928 +- +a:encrypted-media-20151010 +encrypted-media-20151010 +encrypted-media-1-20151010 +- +a:encrypted-media-20151019 +encrypted-media-20151019 +encrypted-media-1-20151019 +- +a:encrypted-media-20151027 +encrypted-media-20151027 +encrypted-media-1-20151027 +- +a:encrypted-media-20151116 +encrypted-media-20151116 +encrypted-media-1-20151116 +- +a:encrypted-media-20151120 +encrypted-media-20151120 +encrypted-media-1-20151120 +- +a:encrypted-media-20151130 +encrypted-media-20151130 +encrypted-media-1-20151130 +- +a:encrypted-media-20160122 +encrypted-media-20160122 +encrypted-media-1-20160122 +- +a:encrypted-media-20160202 +encrypted-media-20160202 +encrypted-media-1-20160202 +- +a:encrypted-media-20160204 +encrypted-media-20160204 +encrypted-media-1-20160204 +- +a:encrypted-media-20160208 +encrypted-media-20160208 +encrypted-media-1-20160208 +- +a:encrypted-media-20160209 +encrypted-media-20160209 +encrypted-media-1-20160209 +- +a:encrypted-media-20160216 +encrypted-media-20160216 +encrypted-media-1-20160216 +- +a:encrypted-media-20160218 +encrypted-media-20160218 +encrypted-media-1-20160218 +- +a:encrypted-media-20160225 +encrypted-media-20160225 +encrypted-media-1-20160225 +- +a:encrypted-media-20160227 +encrypted-media-20160227 +encrypted-media-1-20160227 +- +a:encrypted-media-20160325 +encrypted-media-20160325 +encrypted-media-1-20160325 +- +a:encrypted-media-20160328 +encrypted-media-20160328 +encrypted-media-1-20160328 +- +a:encrypted-media-20160329 +encrypted-media-20160329 +encrypted-media-1-20160329 +- +a:encrypted-media-20160330 +encrypted-media-20160330 +encrypted-media-1-20160330 +- +a:encrypted-media-20160404 +encrypted-media-20160404 +encrypted-media-1-20160404 +- +a:encrypted-media-20160412 +encrypted-media-20160412 +encrypted-media-1-20160412 +- +a:encrypted-media-20160414 +encrypted-media-20160414 +encrypted-media-1-20160414 +- +a:encrypted-media-20160416 +encrypted-media-20160416 +encrypted-media-1-20160416 +- +a:encrypted-media-20160421 +encrypted-media-20160421 +encrypted-media-1-20160421 +- +a:encrypted-media-20160426 +encrypted-media-20160426 +encrypted-media-1-20160426 +- +a:encrypted-media-20160428 +encrypted-media-20160428 +encrypted-media-1-20160428 +- +a:encrypted-media-20160429 +encrypted-media-20160429 +encrypted-media-1-20160429 +- +a:encrypted-media-20160514 +encrypted-media-20160514 +encrypted-media-1-20160514 +- +a:encrypted-media-20160517 +encrypted-media-20160517 +encrypted-media-1-20160517 +- +a:encrypted-media-20160518 +encrypted-media-20160518 +encrypted-media-1-20160518 +- +a:encrypted-media-20160520 +encrypted-media-20160520 +encrypted-media-1-20160520 +- +a:encrypted-media-20160527 +encrypted-media-20160527 +encrypted-media-1-20160527 +- +a:encrypted-media-20160531 +encrypted-media-20160531 +encrypted-media-1-20160531 +- +a:encrypted-media-20160601 +encrypted-media-20160601 +encrypted-media-1-20160601 +- +a:encrypted-media-20160602 +encrypted-media-20160602 +encrypted-media-1-20160602 +- +a:encrypted-media-20160603 +encrypted-media-20160603 +encrypted-media-1-20160603 +- +a:encrypted-media-20160609 +encrypted-media-20160609 +encrypted-media-1-20160609 +- +a:encrypted-media-20160610 +encrypted-media-20160610 +encrypted-media-1-20160610 +- +a:encrypted-media-20160705 +encrypted-media-20160705 +encrypted-media-1-20160705 +- +a:encrypted-media-20170316 +encrypted-media-20170316 +encrypted-media-1-20170316 +- +a:encrypted-media-20170918 +encrypted-media-20170918 +encrypted-media-1-20170918 +- +a:encrypted-media-20240718 +encrypted-media-20240718 +encrypted-media-2-20240718 +- +a:encrypted-media-20240807 +encrypted-media-20240807 +encrypted-media-2-20240807 +- d:entries-api ENTRIES-API diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ep.data b/bikeshed/spec-data/readonly/biblio/biblio-ep.data index b637417024..4e3f58b465 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ep.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ep.data @@ -37,16 +37,16 @@ Mike West - d:epub-33 epub-33 -19 January 2023 -CR +25 May 2023 +REC EPUB 3.3 https://www.w3.org/TR/epub-33/ https://w3c.github.io/epub-specs/epub33/core/ -Matt Garrish Ivan Herman +Matt Garrish Dave Cramer - d:epub-33-20210112 @@ -1807,21 +1807,91 @@ Matt Garrish Ivan Herman Dave Cramer - +d:epub-33-20230203 +epub-33-20230203 +3 February 2023 +CR +EPUB 3.3 +https://www.w3.org/TR/2023/CRD-epub-33-20230203/ +https://www.w3.org/TR/2023/CRD-epub-33-20230203/ + + + +Matt Garrish +Ivan Herman +Dave Cramer +- +d:epub-33-20230209 +epub-33-20230209 +9 February 2023 +CR +EPUB 3.3 +https://www.w3.org/TR/2023/CRD-epub-33-20230209/ +https://www.w3.org/TR/2023/CRD-epub-33-20230209/ + + + +Matt Garrish +Ivan Herman +Dave Cramer +- +d:epub-33-20230221 +epub-33-20230221 +21 February 2023 +CR +EPUB 3.3 +https://www.w3.org/TR/2023/CR-epub-33-20230221/ +https://www.w3.org/TR/2023/CR-epub-33-20230221/ + + + +Ivan Herman +Matt Garrish +Dave Cramer +- +d:epub-33-20230413 +epub-33-20230413 +13 April 2023 +PR +EPUB 3.3 +https://www.w3.org/TR/2023/PR-epub-33-20230413/ +https://www.w3.org/TR/2023/PR-epub-33-20230413/ + + + +Ivan Herman +Matt Garrish +Dave Cramer +- +d:epub-33-20230525 +epub-33-20230525 +25 May 2023 +REC +EPUB 3.3 +https://www.w3.org/TR/2023/REC-epub-33-20230525/ +https://www.w3.org/TR/2023/REC-epub-33-20230525/ + + + +Ivan Herman +Matt Garrish +Dave Cramer +- d:epub-a11y-11 epub-a11y-11 -23 January 2023 -CR +25 May 2023 +REC EPUB Accessibility 1.1 https://www.w3.org/TR/epub-a11y-11/ https://w3c.github.io/epub-specs/epub33/a11y/ -Matt Garrish George Kerscher +Matt Garrish Charles LaPierre -Gregorio Pellegrino Avneesh Singh +Gregorio Pellegrino - d:epub-a11y-11-20210223 epub-a11y-11-20210223 @@ -2671,9 +2741,105 @@ Charles LaPierre Gregorio Pellegrino Avneesh Singh - +d:epub-a11y-11-20230203 +epub-a11y-11-20230203 +3 February 2023 +CR +EPUB Accessibility 1.1 +https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230203/ +https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230203/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-11-20230204 +epub-a11y-11-20230204 +4 February 2023 +CR +EPUB Accessibility 1.1 +https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230204/ +https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230204/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-11-20230209 +epub-a11y-11-20230209 +9 February 2023 +CR +EPUB Accessibility 1.1 +https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230209/ +https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230209/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-11-20230221 +epub-a11y-11-20230221 +21 February 2023 +CR +EPUB Accessibility 1.1 +https://www.w3.org/TR/2023/CR-epub-a11y-11-20230221/ +https://www.w3.org/TR/2023/CR-epub-a11y-11-20230221/ + + + +George Kerscher +Matt Garrish +Charles LaPierre +Avneesh Singh +Gregorio Pellegrino +- +d:epub-a11y-11-20230413 +epub-a11y-11-20230413 +13 April 2023 +PR +EPUB Accessibility 1.1 +https://www.w3.org/TR/2023/PR-epub-a11y-11-20230413/ +https://www.w3.org/TR/2023/PR-epub-a11y-11-20230413/ + + + +George Kerscher +Matt Garrish +Charles LaPierre +Avneesh Singh +Gregorio Pellegrino +- +d:epub-a11y-11-20230525 +epub-a11y-11-20230525 +25 May 2023 +REC +EPUB Accessibility 1.1 +https://www.w3.org/TR/2023/REC-epub-a11y-11-20230525/ +https://www.w3.org/TR/2023/REC-epub-a11y-11-20230525/ + + + +George Kerscher +Matt Garrish +Charles LaPierre +Avneesh Singh +Gregorio Pellegrino +- d:epub-a11y-eaa-mapping epub-a11y-eaa-mapping -13 January 2023 +30 April 2024 NOTE EPUB Accessibility - EU Accessibility Act Mapping https://www.w3.org/TR/epub-a11y-eaa-mapping/ @@ -2682,7 +2848,6 @@ https://w3c.github.io/epub-specs/epub33/epub-a11y-eaa-mapping/ Cristina Mussinelli -Luc Audrain Gregorio Pellegrino - d:epub-a11y-eaa-mapping-20210629 @@ -2979,9 +3144,170 @@ Cristina Mussinelli Luc Audrain Gregorio Pellegrino - +d:epub-a11y-eaa-mapping-20230329 +epub-a11y-eaa-mapping-20230329 +29 March 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230329/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230329/ + + + +Cristina Mussinelli +Luc Audrain +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20230330 +epub-a11y-eaa-mapping-20230330 +30 March 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230330/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230330/ + + + +Cristina Mussinelli +Luc Audrain +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20230402 +epub-a11y-eaa-mapping-20230402 +2 April 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230402/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230402/ + + + +Cristina Mussinelli +Luc Audrain +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20230510 +epub-a11y-eaa-mapping-20230510 +10 May 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230510/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230510/ + + + +Cristina Mussinelli +Luc Audrain +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20230519 +epub-a11y-eaa-mapping-20230519 +19 May 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230519/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230519/ + + + +Cristina Mussinelli +Luc Audrain +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20231221 +epub-a11y-eaa-mapping-20231221 +21 December 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20231221/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20231221/ + + + +Cristina Mussinelli +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20231227 +epub-a11y-eaa-mapping-20231227 +27 December 2023 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20231227/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20231227/ + + + +Cristina Mussinelli +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20240320 +epub-a11y-eaa-mapping-20240320 +20 March 2024 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2024/NOTE-epub-a11y-eaa-mapping-20240320/ +https://www.w3.org/TR/2024/NOTE-epub-a11y-eaa-mapping-20240320/ + + + +Cristina Mussinelli +Gregorio Pellegrino +- +d:epub-a11y-eaa-mapping-20240430 +epub-a11y-eaa-mapping-20240430 +30 April 2024 +NOTE +EPUB Accessibility - EU Accessibility Act Mapping +https://www.w3.org/TR/2024/NOTE-epub-a11y-eaa-mapping-20240430/ +https://www.w3.org/TR/2024/NOTE-epub-a11y-eaa-mapping-20240430/ + + + +Cristina Mussinelli +Gregorio Pellegrino +- +d:epub-a11y-exemption +epub-a11y-exemption +15 December 2023 +NOTE +The EPUB Accessibility exemption property +https://www.w3.org/TR/epub-a11y-exemption/ +https://w3c.github.io/epub-specs/epub33/a11y-exemption/ + + + +Matt Garrish +Gregorio Pellegrino +- +d:epub-a11y-exemption-20231003 +epub-a11y-exemption-20231003 +3 October 2023 +NOTE +The EPUB Accessibility exemption property +https://www.w3.org/TR/2023/NOTE-epub-a11y-exemption-20231003/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-exemption-20231003/ + + + +Matt Garrish +Gregorio Pellegrino +- +d:epub-a11y-exemption-20231215 +epub-a11y-exemption-20231215 +15 December 2023 +NOTE +The EPUB Accessibility exemption property +https://www.w3.org/TR/2023/NOTE-epub-a11y-exemption-20231215/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-exemption-20231215/ + + + +Matt Garrish +Gregorio Pellegrino +- d:epub-a11y-tech-11 epub-a11y-tech-11 -13 January 2023 +4 July 2024 NOTE EPUB Accessibility Techniques 1.1 https://www.w3.org/TR/epub-a11y-tech-11/ @@ -3555,48 +3881,256 @@ Charles LaPierre Gregorio Pellegrino Avneesh Singh - -d:epub-multi-rend-11 -epub-multi-rend-11 -13 January 2023 +d:epub-a11y-tech-11-20230201 +epub-a11y-tech-11-20230201 +1 February 2023 NOTE -EPUB 3 Multiple-Rendition Publications 1.1 -https://www.w3.org/TR/epub-multi-rend-11/ -https://w3c.github.io/epub-specs/epub33/multi-rend/ +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230201/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230201/ Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh - -d:epub-multi-rend-11-20210112 -epub-multi-rend-11-20210112 -12 January 2021 +d:epub-a11y-tech-11-20230222 +epub-a11y-tech-11-20230222 +22 February 2023 NOTE -EPUB Multiple-Rendition Publications 1.1 -https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210112/ -https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210112/ +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230222/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230222/ Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh - -d:epub-multi-rend-11-20210525 -epub-multi-rend-11-20210525 -25 May 2021 +d:epub-a11y-tech-11-20230330 +epub-a11y-tech-11-20230330 +30 March 2023 NOTE -EPUB Multiple-Rendition Publications 1.1 -https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210525/ -https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210525/ +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230330/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230330/ Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh - -d:epub-multi-rend-11-20210825 -epub-multi-rend-11-20210825 -25 August 2021 +d:epub-a11y-tech-11-20230402 +epub-a11y-tech-11-20230402 +2 April 2023 NOTE -EPUB 3 Multiple-Rendition Publications 1.1 -https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210825/ +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230402/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230402/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-tech-11-20230404 +epub-a11y-tech-11-20230404 +4 April 2023 +NOTE +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230404/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230404/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-tech-11-20230510 +epub-a11y-tech-11-20230510 +10 May 2023 +NOTE +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230510/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230510/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-tech-11-20230519 +epub-a11y-tech-11-20230519 +19 May 2023 +NOTE +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230519/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230519/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-tech-11-20231221 +epub-a11y-tech-11-20231221 +21 December 2023 +NOTE +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20231221/ +https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20231221/ + + + +George Kerscher +Matt Garrish +Charles LaPierre +Avneesh Singh +Gregorio Pellegrino +- +d:epub-a11y-tech-11-20240412 +epub-a11y-tech-11-20240412 +12 April 2024 +NOTE +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2024/NOTE-epub-a11y-tech-11-20240412/ +https://www.w3.org/TR/2024/NOTE-epub-a11y-tech-11-20240412/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-a11y-tech-11-20240704 +epub-a11y-tech-11-20240704 +4 July 2024 +NOTE +EPUB Accessibility Techniques 1.1 +https://www.w3.org/TR/2024/NOTE-epub-a11y-tech-11-20240704/ +https://www.w3.org/TR/2024/NOTE-epub-a11y-tech-11-20240704/ + + + +Matt Garrish +George Kerscher +Charles LaPierre +Gregorio Pellegrino +Avneesh Singh +- +d:epub-aria-authoring-11 +epub-aria-authoring-11 +14 March 2023 +NOTE +EPUB Type to ARIA Role Authoring Guide 1.1 +https://www.w3.org/TR/epub-aria-authoring-11/ +https://w3c.github.io/epub-specs/epub33/epub-aria-authoring/ + + + +Matt Garrish +- +d:epub-aria-authoring-11-20230314 +epub-aria-authoring-11-20230314 +14 March 2023 +NOTE +EPUB Type to ARIA Role Authoring Guide 1.1 +https://www.w3.org/TR/2023/NOTE-epub-aria-authoring-11-20230314/ +https://www.w3.org/TR/2023/NOTE-epub-aria-authoring-11-20230314/ + + + +Matt Garrish +- +d:epub-fxl-a11y +epub-fxl-a11y +30 May 2024 +NOTE +EPUB Fixed Layout Accessibility +https://www.w3.org/TR/epub-fxl-a11y/ +https://w3c.github.io/epub-specs/epub33/fxl-a11y/ + + + +Wendy Reid +- +d:epub-fxl-a11y-20240530 +epub-fxl-a11y-20240530 +30 May 2024 +NOTE +EPUB Fixed Layout Accessibility +https://www.w3.org/TR/2024/NOTE-epub-fxl-a11y-20240530/ +https://www.w3.org/TR/2024/NOTE-epub-fxl-a11y-20240530/ + + + +Wendy Reid +- +d:epub-multi-rend-11 +epub-multi-rend-11 +21 December 2023 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/epub-multi-rend-11/ +https://w3c.github.io/epub-specs/epub33/multi-rend/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20210112 +epub-multi-rend-11-20210112 +12 January 2021 +NOTE +EPUB Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210112/ +https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210112/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20210525 +epub-multi-rend-11-20210525 +25 May 2021 +NOTE +EPUB Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210525/ +https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210525/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20210825 +epub-multi-rend-11-20210825 +25 August 2021 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210825/ https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210825/ @@ -3829,11 +4363,71 @@ https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230113/ +Matt Garrish +- +d:epub-multi-rend-11-20230330 +epub-multi-rend-11-20230330 +30 March 2023 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230330/ +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230330/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20230402 +epub-multi-rend-11-20230402 +2 April 2023 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230402/ +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230402/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20230510 +epub-multi-rend-11-20230510 +10 May 2023 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230510/ +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230510/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20230519 +epub-multi-rend-11-20230519 +19 May 2023 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230519/ +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230519/ + + + +Matt Garrish +- +d:epub-multi-rend-11-20231221 +epub-multi-rend-11-20231221 +21 December 2023 +NOTE +EPUB 3 Multiple-Rendition Publications 1.1 +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20231221/ +https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20231221/ + + + Matt Garrish - d:epub-overview-33 epub-overview-33 -13 January 2023 +21 December 2023 NOTE EPUB 3 Overview https://www.w3.org/TR/epub-overview-33/ @@ -3841,8 +4435,8 @@ https://w3c.github.io/epub-specs/epub33/overview/ -Matt Garrish Ivan Herman +Matt Garrish - d:epub-overview-33-20210112 epub-overview-33-20210112 @@ -4202,18 +4796,96 @@ https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230113/ Matt Garrish Ivan Herman - +d:epub-overview-33-20230330 +epub-overview-33-20230330 +30 March 2023 +NOTE +EPUB 3 Overview +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230330/ +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230330/ + + + +Matt Garrish +Ivan Herman +- +d:epub-overview-33-20230402 +epub-overview-33-20230402 +2 April 2023 +NOTE +EPUB 3 Overview +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230402/ +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230402/ + + + +Matt Garrish +Ivan Herman +- +d:epub-overview-33-20230510 +epub-overview-33-20230510 +10 May 2023 +NOTE +EPUB 3 Overview +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230510/ +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230510/ + + + +Matt Garrish +Ivan Herman +- +d:epub-overview-33-20230518 +epub-overview-33-20230518 +18 May 2023 +NOTE +EPUB 3 Overview +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230518/ +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230518/ + + + +Matt Garrish +Ivan Herman +- +d:epub-overview-33-20230519 +epub-overview-33-20230519 +19 May 2023 +NOTE +EPUB 3 Overview +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230519/ +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230519/ + + + +Matt Garrish +Ivan Herman +- +d:epub-overview-33-20231221 +epub-overview-33-20231221 +21 December 2023 +NOTE +EPUB 3 Overview +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20231221/ +https://www.w3.org/TR/2023/NOTE-epub-overview-33-20231221/ + + + +Ivan Herman +Matt Garrish +- d:epub-rs-33 epub-rs-33 -18 January 2023 -CR +25 May 2023 +REC EPUB Reading Systems 3.3 https://www.w3.org/TR/epub-rs-33/ https://w3c.github.io/epub-specs/epub33/rs/ -Matt Garrish Ivan Herman +Matt Garrish Dave Cramer - d:epub-rs-33-20210112 @@ -5733,6 +6405,90 @@ Matt Garrish Ivan Herman Dave Cramer - +d:epub-rs-33-20230201 +epub-rs-33-20230201 +1 February 2023 +CR +EPUB Reading Systems 3.3 +https://www.w3.org/TR/2023/CRD-epub-rs-33-20230201/ +https://www.w3.org/TR/2023/CRD-epub-rs-33-20230201/ + + + +Matt Garrish +Ivan Herman +Dave Cramer +- +d:epub-rs-33-20230203 +epub-rs-33-20230203 +3 February 2023 +CR +EPUB Reading Systems 3.3 +https://www.w3.org/TR/2023/CRD-epub-rs-33-20230203/ +https://www.w3.org/TR/2023/CRD-epub-rs-33-20230203/ + + + +Matt Garrish +Ivan Herman +Dave Cramer +- +d:epub-rs-33-20230209 +epub-rs-33-20230209 +9 February 2023 +CR +EPUB Reading Systems 3.3 +https://www.w3.org/TR/2023/CRD-epub-rs-33-20230209/ +https://www.w3.org/TR/2023/CRD-epub-rs-33-20230209/ + + + +Matt Garrish +Ivan Herman +Dave Cramer +- +d:epub-rs-33-20230221 +epub-rs-33-20230221 +21 February 2023 +CR +EPUB Reading Systems 3.3 +https://www.w3.org/TR/2023/CR-epub-rs-33-20230221/ +https://www.w3.org/TR/2023/CR-epub-rs-33-20230221/ + + + +Ivan Herman +Matt Garrish +Dave Cramer +- +d:epub-rs-33-20230413 +epub-rs-33-20230413 +13 April 2023 +PR +EPUB Reading Systems 3.3 +https://www.w3.org/TR/2023/PR-epub-rs-33-20230413/ +https://www.w3.org/TR/2023/PR-epub-rs-33-20230413/ + + + +Ivan Herman +Matt Garrish +Dave Cramer +- +d:epub-rs-33-20230525 +epub-rs-33-20230525 +25 May 2023 +REC +EPUB Reading Systems 3.3 +https://www.w3.org/TR/2023/REC-epub-rs-33-20230525/ +https://www.w3.org/TR/2023/REC-epub-rs-33-20230525/ + + + +Ivan Herman +Matt Garrish +Dave Cramer +- d:epub-ssv EPUB-SSV @@ -5746,7 +6502,7 @@ http://www.idpf.org/epub/vocab/structure/ - d:epub-ssv-11 epub-ssv-11 -13 January 2023 +21 December 2023 NOTE EPUB 3 Structural Semantics Vocabulary 1.1 https://www.w3.org/TR/epub-ssv-11/ @@ -5923,12 +6679,77 @@ https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230113/ +Ivan Herman +Matt Garrish +- +d:epub-ssv-11-20230330 +epub-ssv-11-20230330 +30 March 2023 +NOTE +EPUB 3 Structural Semantics Vocabulary 1.1 +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230330/ +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230330/ + + + +Ivan Herman +Matt Garrish +- +d:epub-ssv-11-20230402 +epub-ssv-11-20230402 +2 April 2023 +NOTE +EPUB 3 Structural Semantics Vocabulary 1.1 +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230402/ +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230402/ + + + +Ivan Herman +Matt Garrish +- +d:epub-ssv-11-20230510 +epub-ssv-11-20230510 +10 May 2023 +NOTE +EPUB 3 Structural Semantics Vocabulary 1.1 +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230510/ +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230510/ + + + +Ivan Herman +Matt Garrish +- +d:epub-ssv-11-20230519 +epub-ssv-11-20230519 +19 May 2023 +NOTE +EPUB 3 Structural Semantics Vocabulary 1.1 +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230519/ +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230519/ + + + +Ivan Herman +Matt Garrish +- +d:epub-ssv-11-20231221 +epub-ssv-11-20231221 +21 December 2023 +NOTE +EPUB 3 Structural Semantics Vocabulary 1.1 +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20231221/ +https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20231221/ + + + Ivan Herman Matt Garrish - d:epub-tts-10 epub-tts-10 -13 January 2023 +21 December 2023 NOTE EPUB 3 Text-to-Speech Enhancements 1.0 https://www.w3.org/TR/epub-tts-10/ @@ -6176,5 +6997,65 @@ https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230113/ +Matt Garrish +- +d:epub-tts-10-20230330 +epub-tts-10-20230330 +30 March 2023 +NOTE +EPUB 3 Text-to-Speech Enhancements 1.0 +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230330/ +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230330/ + + + +Matt Garrish +- +d:epub-tts-10-20230402 +epub-tts-10-20230402 +2 April 2023 +NOTE +EPUB 3 Text-to-Speech Enhancements 1.0 +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230402/ +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230402/ + + + +Matt Garrish +- +d:epub-tts-10-20230510 +epub-tts-10-20230510 +10 May 2023 +NOTE +EPUB 3 Text-to-Speech Enhancements 1.0 +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230510/ +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230510/ + + + +Matt Garrish +- +d:epub-tts-10-20230519 +epub-tts-10-20230519 +19 May 2023 +NOTE +EPUB 3 Text-to-Speech Enhancements 1.0 +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230519/ +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230519/ + + + +Matt Garrish +- +d:epub-tts-10-20231221 +epub-tts-10-20231221 +21 December 2023 +NOTE +EPUB 3 Text-to-Speech Enhancements 1.0 +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20231221/ +https://www.w3.org/TR/2023/NOTE-epub-tts-10-20231221/ + + + Matt Garrish - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-es.data b/bikeshed/spec-data/readonly/biblio/biblio-es.data index 08ef156340..b8ad6a1c92 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-es.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-es.data @@ -45,4 +45,15 @@ https://www.w3.org/TR/2001/NOTE-esi-lang-20010804 +- +d:essl +ESSL + +Editor's Draft +The OpenGL ES® Shading Language, Version 3.20.8 +https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-et.data b/bikeshed/spec-data/readonly/biblio/biblio-et.data index a2bbc13067..4e419bd6fc 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-et.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-et.data @@ -1,3 +1,39 @@ +d:ethi-lreq +ethi-lreq +15 August 2024 +NOTE +Ethiopic Script Resources +https://www.w3.org/TR/ethi-lreq/ +https://w3c.github.io/elreq/ethi/ + + + +Richard Ishida +- +d:ethi-lreq-20240808 +ethi-lreq-20240808 +8 August 2024 +NOTE +Ethiopic Script Resources +https://www.w3.org/TR/2024/DNOTE-ethi-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-ethi-lreq-20240808/ + + + +Richard Ishida +- +d:ethi-lreq-20240815 +ethi-lreq-20240815 +15 August 2024 +NOTE +Ethiopic Script Resources +https://www.w3.org/TR/2024/DNOTE-ethi-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-ethi-lreq-20240815/ + + + +Richard Ishida +- d:ethical-web ETHICAL-WEB 27 October 2020 @@ -13,9 +49,9 @@ Hadley Beeman - d:ethical-web-principles ethical-web-principles -7 December 2022 +13 August 2024 NOTE -W3C TAG Ethical Web Principles +Ethical Web Principles https://www.w3.org/TR/ethical-web-principles/ https://w3ctag.github.io/ethical-web-principles/ @@ -49,6 +85,104 @@ https://www.w3.org/TR/2022/DNOTE-ethical-web-principles-20221207/ +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20230906 +ethical-web-principles-20230906 +6 September 2023 +NOTE +W3C TAG Ethical Web Principles +https://www.w3.org/TR/2023/DNOTE-ethical-web-principles-20230906/ +https://www.w3.org/TR/2023/DNOTE-ethical-web-principles-20230906/ + + + +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20231107 +ethical-web-principles-20231107 +7 November 2023 +NOTE +W3C TAG Ethical Web Principles +https://www.w3.org/TR/2023/DNOTE-ethical-web-principles-20231107/ +https://www.w3.org/TR/2023/DNOTE-ethical-web-principles-20231107/ + + + +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20240319 +ethical-web-principles-20240319 +19 March 2024 +NOTE +Ethical Web Principles +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240319/ +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240319/ + + + +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20240531 +ethical-web-principles-20240531 +31 May 2024 +NOTE +Ethical Web Principles +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240531/ +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240531/ + + + +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20240610 +ethical-web-principles-20240610 +10 June 2024 +NOTE +Ethical Web Principles +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240610/ +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240610/ + + + +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20240718 +ethical-web-principles-20240718 +18 July 2024 +NOTE +Ethical Web Principles +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240718/ +https://www.w3.org/TR/2024/DNOTE-ethical-web-principles-20240718/ + + + +Daniel Appelquist +Hadley Beeman +Amy Guy +- +d:ethical-web-principles-20240813 +ethical-web-principles-20240813 +13 August 2024 +NOTE +Ethical Web Principles +https://www.w3.org/TR/2024/NOTE-ethical-web-principles-20240813/ +https://www.w3.org/TR/2024/NOTE-ethical-web-principles-20240813/ + + + Daniel Appelquist Hadley Beeman Amy Guy @@ -371,6 +505,17 @@ http://www.etsi.org/deliver/etsi_eg/201100_201199/201147/01.01.02_60/eg_201147v0 +- +d:etsi-eg-201-148 +etsi-eg-201-148 +March 1998 +Published +ETSI EG 201 148 V1.1.2 (1998-03): Methods for Testing and Specification (MTS); Guide for the use of the second edition of TTCN +http://www.etsi.org/deliver/etsi_eg/201100_201199/201148/01.01.02_60/eg_201148v010102p.pdf + + + + - d:etsi-eg-201-151 etsi-eg-201-151 @@ -448,6 +593,17 @@ http://www.etsi.org/deliver/etsi_eg/201200_201299/201219/01.03.01_60/eg_201219v0 +- +d:etsi-eg-201-220 +etsi-eg-201-220 +September 1999 +Published +ETSI EG 201 220 V1.4.0 (1999-09): Integrated Circuit Cards (ICC); ETSI numbering system for telecommunication; Application providers (AID) +http://www.etsi.org/deliver/etsi_eg/201200_201299/201220/01.04.00_50/eg_201220v010400m.pdf + + + + - d:etsi-eg-201-227 etsi-eg-201-227 @@ -800,6 +956,17 @@ http://www.etsi.org/deliver/etsi_eg/201700_201799/20173801/01.01.01_60/eg_201738 +- +d:etsi-eg-201-752 +etsi-eg-201-752 +December 2001 +Published +ETSI EG 201 752 V1.2.1 (2001-12): Fixed Radio Systems; Point-to-Point and Point-to-Multipoint Equipment and Antennas; Identification of European standards (EN), applicable to fixed radio systems, for the essential requirements under the article 3.1 of the 1999/5/EC Directive +http://www.etsi.org/deliver/etsi_eg/201700_201799/201752/01.02.01_60/eg_201752v010201p.pdf + + + + - d:etsi-eg-201-766 etsi-eg-201-766 @@ -2211,10 +2378,10 @@ http://www.etsi.org/deliver/etsi_en/300001_300099/3000190205/02.01.02_60/en_3000 - d:etsi-en-300-019-2-6 etsi-en-300-019-2-6 -December 2002 +September 2001 Published -ETSI EN 300 019-2-6 V3.0.0 (2002-12): Environmental Engineering (EE); Environmental conditions and environmental tests for telecommunications equipment; Part 2-6: Specification of environmental tests; Ship environments -http://www.etsi.org/deliver/etsi_en/300001_300099/3000190206/03.00.00_60/en_3000190206v030000p.pdf +ETSI EN 300 019-2-6 V2.1.2 (2001-09): Environmental Engineering (EE); Environmental conditions and environmental tests for telecommunications equipment; Part 2-6: Specification of environmental tests; Ship environments +http://www.etsi.org/deliver/etsi_en/300001_300099/3000190206/02.01.02_60/en_3000190206v020102p.pdf @@ -2222,10 +2389,10 @@ http://www.etsi.org/deliver/etsi_en/300001_300099/3000190206/03.00.00_60/en_3000 - d:etsi-en-300-019-2-7 etsi-en-300-019-2-7 -April 2003 +September 2001 Published -ETSI EN 300 019-2-7 V3.0.1 (2003-04): Environmental Engineering (EE); Environmental conditions and environmental tests for telecommunications equipment; Part 2-7: Specification of environmental tests; Portable and non-stationary use -http://www.etsi.org/deliver/etsi_en/300001_300099/3000190207/03.00.01_60/en_3000190207v030001p.pdf +ETSI EN 300 019-2-7 V2.1.2 (2001-09): Environmental Engineering (EE); Environmental conditions and environmental tests for telecommunications equipment; Part 2-7: Specification of environmental tests; Portable and non-stationary use +http://www.etsi.org/deliver/etsi_en/300001_300099/3000190207/02.01.02_60/en_3000190207v020102p.pdf @@ -3187,6 +3354,28 @@ http://www.etsi.org/deliver/etsi_en/300100_300199/3001320301/02.01.01_60/en_3001 +- +d:etsi-en-300-135-1 +etsi-en-300-135-1 +February 2008 +Published +ETSI EN 300 135-1 V1.2.1 (2008-02): Electromagnetic compatibility and Radio spectrum Matters (ERM); Land Mobile Service; Citizens' Band (CB) radio equipment; Angle-modulated Citizens' Band radio equipment (PR 27 Radio Equipment); Part 1: Technical characteristics and methods of measurement +http://www.etsi.org/deliver/etsi_en/300100_300199/30013501/01.02.01_60/en_30013501v010201p.pdf + + + + +- +d:etsi-en-300-135-2 +etsi-en-300-135-2 +February 2008 +Published +ETSI EN 300 135-2 V1.2.1 (2008-02): Electromagnetic compatibility and Radio spectrum Matters (ERM); Land Mobile Service; Citizens' Band (CB) radio equipment; Angle-modulated Citizens' Band radio equipment (PR 27 Radio Equipment); Part 2: Harmonized EN covering essential requirements of article 3.2 of the R&TTE Directive +http://www.etsi.org/deliver/etsi_en/300100_300199/30013502/01.02.01_60/en_30013502v010201p.pdf + + + + - d:etsi-en-300-138-1 etsi-en-300-138-1 @@ -3553,10 +3742,10 @@ http://www.etsi.org/deliver/etsi_en/300100_300199/30017508/01.09.01_60/en_300175 - d:etsi-en-300-176-1 etsi-en-300-176-1 -January 2018 +October 2003 Published -ETSI EN 300 176-1 V2.3.1 (2018-01): Digital Enhanced Cordless Telecommunications (DECT); Test specification; Part 1: Radio -http://www.etsi.org/deliver/etsi_en/300100_300199/30017601/02.03.01_60/en_30017601v020301p.pdf +ETSI EN 300 176-1 V1.5.1 (2003-10): Digital Enhanced Cordless Telecommunications (DECT); Test specification; Part 1: Radio +http://www.etsi.org/deliver/etsi_en/300100_300199/30017601/01.05.01_60/en_30017601v010501p.pdf @@ -4136,10 +4325,10 @@ http://www.etsi.org/deliver/etsi_en/300200_300299/30022001/03.01.01_60/en_300220 - d:etsi-en-300-220-2 etsi-en-300-220-2 -June 2018 +May 2012 Published -ETSI EN 300 220-2 V3.2.1 (2018-06): Short Range Devices (SRD) operating in the frequency range 25 MHz to 1 000 MHz; Part 2: Harmonised Standard for access to radio spectrum for non specific radio equipment -http://www.etsi.org/deliver/etsi_en/300200_300299/30022002/03.02.01_60/en_30022002v030201p.pdf +ETSI EN 300 220-2 V2.4.1 (2012-05): Electromagnetic compatibility and Radio spectrum Matters (ERM); Short Range Devices (SRD); Radio equipment to be used in the 25 MHz to 1 000 MHz frequency range with power levels ranging up to 500 mW; Part 2: Harmonized EN covering essential requirements under article 3.2 of the R&TTE Directive +http://www.etsi.org/deliver/etsi_en/300200_300299/30022002/02.04.01_60/en_30022002v020401p.pdf @@ -6270,10 +6459,10 @@ http://www.etsi.org/deliver/etsi_en/300300_300399/30039205/01.03.01_60/en_300392 - d:etsi-en-300-392-7 etsi-en-300-392-7 -March 2019 -On Approval -ETSI EN 300 392-7 V3.5.0 (2019-03): Terrestrial Trunked Radio (TETRA); Voice plus Data (V+D); Part 7: Security -http://www.etsi.org/deliver/etsi_en/300300_300399/30039207/03.05.00_20/en_30039207v030500a.pdf +June 2006 +Published +ETSI EN 300 392-7 V2.3.1 (2006-06): Terrestrial Trunked Radio (TETRA); Voice plus Data (V+D); Part 7: Security +http://www.etsi.org/deliver/etsi_en/300300_300399/30039207/02.03.01_60/en_30039207v020301p.pdf @@ -8588,6 +8777,28 @@ http://www.etsi.org/deliver/etsi_en/300700_300799/30077106/01.01.02_60/en_300771 +- +d:etsi-en-300-778-1 +etsi-en-300-778-1 +May 2001 +Published +ETSI EN 300 778-1 V1.2.1 (2001-05): Access and Terminals (AT); Analogue access to the Public Switched Telephone Network (PSTN); Protocol over the local loop for display and related services; Terminal Equipment requirements; Part 1: On-hook data transmission +http://www.etsi.org/deliver/etsi_en/300700_300799/30077801/01.02.01_60/en_30077801v010201p.pdf + + + + +- +d:etsi-en-300-778-2 +etsi-en-300-778-2 +May 2001 +Published +ETSI EN 300 778-2 V1.2.1 (2001-05): Access and Terminals (AT); Analogue access to the Public Switched Telephone Network (PSTN); Protocol over the local loop for display and related services; Terminal Equipment requirements; Part 2: Off-hook data transmission +http://www.etsi.org/deliver/etsi_en/300700_300799/30077802/01.02.01_60/en_30077802v010201p.pdf + + + + - d:etsi-en-300-786 etsi-en-300-786 @@ -13618,10 +13829,10 @@ http://www.etsi.org/deliver/etsi_en/301500_301599/30154502/01.02.01_60/en_301545 - d:etsi-en-301-549 etsi-en-301-549 -August 2018 +March 2021 Published -ETSI EN 301 549 V2.1.2 (2018-08): Accessibility requirements for ICT products and services -http://www.etsi.org/deliver/etsi_en/301500_301599/301549/02.01.02_60/en_301549v020102p.pdf +ETSI EN 301 549 V3.2.1 (2021-03): Accessibility requirements for ICT products and services +https://www.etsi.org/deliver/etsi_en/301500_301599/301549/03.02.01_60/en_301549v030201p.pdf @@ -14671,6 +14882,28 @@ http://www.etsi.org/deliver/etsi_en/301800_301899/30183902/01.03.01_60/en_301839 +- +d:etsi-en-301-840-1 +etsi-en-301-840-1 +June 2001 +Published +ETSI EN 301 840-1 V1.1.1 (2001-06): ElectroMagnetic Compatibility and Radio Spectrum Matters (ERM); Digital radio microphones operating in the CEPT Harmonized band 1 785 MHz to 1 800 MHz; Part 1: Technical characteristics and methods of measurement +http://www.etsi.org/deliver/etsi_en/301800_301899/30184001/01.01.01_60/en_30184001v010101p.pdf + + + + +- +d:etsi-en-301-840-2 +etsi-en-301-840-2 +June 2001 +Published +ETSI EN 301 840-2 V1.1.1 (2001-06): Electromagnetic compatibility and Radio Spectrum Matters (ERM); Digital radio microphones operating in the CEPT Harmonized band 1 785 MHz to 1 800 MHz; Part 2: Harmonized EN under article 3.2 of the R&TTE Directive +http://www.etsi.org/deliver/etsi_en/301800_301899/30184002/01.01.01_60/en_30184002v010101p.pdf + + + + - d:etsi-en-301-841-1 etsi-en-301-841-1 @@ -14861,10 +15094,10 @@ http://www.etsi.org/deliver/etsi_en/301800_301899/30185001/01.01.01_60/en_301850 - d:etsi-en-301-893 etsi-en-301-893 -May 2017 +March 2015 Published -ETSI EN 301 893 V2.1.1 (2017-05): 5 GHz RLAN; Harmonised Standard covering the essential requirements of article 3.2 of Directive 2014/53/EU -http://www.etsi.org/deliver/etsi_en/301800_301899/301893/02.01.01_60/en_301893v020101p.pdf +ETSI EN 301 893 V1.8.1 (2015-03): Broadband Radio Access Networks (BRAN); 5 GHz high performance RLAN; Harmonized EN covering the essential requirements of article 3.2 of the R&TTE Directive +http://www.etsi.org/deliver/etsi_en/301800_301899/301893/01.08.01_60/en_301893v010801p.pdf @@ -16819,10 +17052,10 @@ http://www.etsi.org/deliver/etsi_en/302500_302599/30250002/02.01.01_60/en_302500 - d:etsi-en-302-502 etsi-en-302-502 -July 2008 +March 2017 Published -ETSI EN 302 502 V1.2.1 (2008-07): Broadband Radio Access Networks (BRAN); 5,8 GHz fixed broadband data transmitting systems; Harmonized EN covering the essential requirements of article 3.2 of the R&TTE Directive -http://www.etsi.org/deliver/etsi_en/302500_302599/302502/01.02.01_60/en_302502v010201p.pdf +ETSI EN 302 502 V2.1.1 (2017-03): Wireless Access Systems (WAS); 5,8 GHz fixed broadband data transmitting systems; Harmonised Standard covering the essential requirements of article 3.2 of Directive 2014/53/EU +http://www.etsi.org/deliver/etsi_en/302500_302599/302502/02.01.01_60/en_302502v020101p.pdf @@ -18722,10 +18955,21 @@ http://www.etsi.org/deliver/etsi_en/319400_319499/31941101/01.02.02_60/en_319411 - d:etsi-en-319-411-2 etsi-en-319-411-2 -April 2018 +January 2013 Published -ETSI EN 319 411-2 V2.2.2 (2018-04): Electronic Signatures and Infrastructures (ESI); Policy and security requirements for Trust Service Providers issuing certificates; Part 2: Requirements for trust service providers issuing EU qualified certificates -http://www.etsi.org/deliver/etsi_en/319400_319499/31941102/02.02.02_60/en_31941102v020202p.pdf +ETSI EN 319 411-2 V1.1.1 (2013-01): Electronic Signatures and Infrastructures (ESI); Policy and security requirements for Trust Service Providers issuing certificates; Part 2: Policy requirements for certification authorities issuing qualified certificates +http://www.etsi.org/deliver/etsi_en/319400_319499/31941102/01.01.01_60/en_31941102v010101p.pdf + + + + +- +d:etsi-en-319-411-3 +etsi-en-319-411-3 +January 2013 +Published +ETSI EN 319 411-3 V1.1.1 (2013-01): Electronic Signatures and Infrastructures (ESI); Policy and security requirements for Trust Service Providers issuing certificates; Part 3: Policy requirements for Certification Authorities issuing public key certificates +http://www.etsi.org/deliver/etsi_en/319400_319499/31941103/01.01.01_60/en_31941103v010101p.pdf @@ -18777,10 +19021,10 @@ http://www.etsi.org/deliver/etsi_en/319400_319499/31941204/01.01.01_60/en_319412 - d:etsi-en-319-412-5 etsi-en-319-412-5 -November 2017 +January 2013 Published -ETSI EN 319 412-5 V2.2.1 (2017-11): Electronic Signatures and Infrastructures (ESI); Certificate Profiles; Part 5: QCStatements -http://www.etsi.org/deliver/etsi_en/319400_319499/31941205/02.02.01_60/en_31941205v020201p.pdf +ETSI EN 319 412-5 V1.1.1 (2013-01): Electronic Signatures and Infrastructures (ESI); Profiles for Trust Service Providers issuing certificates; Part 5: Extension for Qualified Certificate profile +http://www.etsi.org/deliver/etsi_en/319400_319499/31941205/01.01.01_60/en_31941205v010101p.pdf @@ -19170,6 +19414,17 @@ http://www.etsi.org/deliver/etsi_es/201000_201099/20109701/01.01.01_60/es_201097 +- +d:etsi-es-201-104 +etsi-es-201-104 +January 1998 +Published +ETSI ES 201 104 V1.1.1 (1998-01): Human Factors (HF); Human factors requirements for a European Telephony Numbering Space (ETNS) +http://www.etsi.org/deliver/etsi_es/201100_201199/201104/01.01.01_60/es_201104v010101p.pdf + + + + - d:etsi-es-201-108 etsi-es-201-108 @@ -23130,6 +23385,17 @@ http://www.etsi.org/deliver/etsi_etr/001_099/006/01_60/etr_006e01p.pdf +- +d:etsi-etr-008 +etsi-etr-008 +December 1990 +Published +ETSI ETR 008 ed.1 (1990-12): Network Aspects (NA); The method for the characterisation of the machine-machine interfaces utilised by a Telecommunication Management Network (TMN) +http://www.etsi.org/deliver/etsi_etr/001_099/008/01_60/etr_008e01p.pdf + + + + - d:etsi-etr-010 etsi-etr-010 @@ -23152,6 +23418,17 @@ http://www.etsi.org/deliver/etsi_etr/001_099/011/01_60/etr_011e01p.pdf +- +d:etsi-etr-012 +etsi-etr-012 +April 1992 +Published +ETSI ETR 012 ed.1 (1992-04): Terminal Equipment (TE); Safety categories and protection levels at various interfaces for telecommunication equipment in customer premises +http://www.etsi.org/deliver/etsi_etr/001_099/012/01_60/etr_012e01p.pdf + + + + - d:etsi-etr-015 etsi-etr-015 @@ -23416,6 +23693,17 @@ http://www.etsi.org/deliver/etsi_etr/001_099/039/01_60/etr_039e01p.pdf +- +d:etsi-etr-040 +etsi-etr-040 +June 1992 +Published +ETSI ETR 040 ed.1 (1992-06): Advanced Testing Methods (ATM); Profile test specifications and conformance test reports +http://www.etsi.org/deliver/etsi_etr/001_099/040/01_60/etr_040e01p.pdf + + + + - d:etsi-etr-041 etsi-etr-041 @@ -23515,6 +23803,17 @@ http://www.etsi.org/deliver/etsi_etr/001_099/049/01_60/etr_049e01p.pdf +- +d:etsi-etr-050 +etsi-etr-050 +August 1993 +Published +ETSI ETR 050 ed.2 (1993-08): Paging Systems (PS); European Radio Message System (ERMES) +http://www.etsi.org/deliver/etsi_etr/001_099/050/02_60/etr_050e02p.pdf + + + + - d:etsi-etr-051 etsi-etr-051 @@ -23955,6 +24254,17 @@ http://www.etsi.org/deliver/etsi_etr/001_099/078/01_60/etr_078e01p.pdf +- +d:etsi-etr-079 +etsi-etr-079 +May 1993 +Published +ETSI ETR 079 ed.1 (1993-05): Private Telecommunication Network (PTN); Supplementary services and additional network features +http://www.etsi.org/deliver/etsi_etr/001_099/079/01_60/etr_079e01p.pdf + + + + - d:etsi-etr-080 etsi-etr-080 @@ -24560,6 +24870,17 @@ http://www.etsi.org/deliver/etsi_etr/100_199/132/01_60/etr_132e01p.pdf +- +d:etsi-etr-133 +etsi-etr-133 +July 1994 +Published +ETSI ETR 133 ed.1 (1994-07): Radio Equipment and Systems (RES); HIgh PErformance Radio Local Area Networks (HIPERLAN); System definition +http://www.etsi.org/deliver/etsi_etr/100_199/133/01_60/etr_133e01p.pdf + + + + - d:etsi-etr-134 etsi-etr-134 @@ -24692,6 +25013,17 @@ http://www.etsi.org/deliver/etsi_etr/100_199/145/01_60/etr_145e01p.pdf +- +d:etsi-etr-146 +etsi-etr-146 +November 1994 +Published +ETSI ETR 146 ed.1 (1994-11): Private Telecommunication Network (PTN); Private Telecommunication Network Exchange (PTNX) functions for the utilization of intervening networks in the provision of overlay scenarios (transparent approach); General requirements +http://www.etsi.org/deliver/etsi_etr/100_199/146/01_60/etr_146e01p.pdf + + + + - d:etsi-etr-147 etsi-etr-147 @@ -24769,6 +25101,17 @@ http://www.etsi.org/deliver/etsi_etr/100_199/153/01_60/etr_153e01p.pdf +- +d:etsi-etr-154 +etsi-etr-154 +September 1997 +Published +ETSI ETR 154 ed.3 (1997-09): Digital Video Broadcasting (DVB); Implementation guidelines for the use of MPEG-2 Systems, Video and Audio in satellite, cable and terrestrial broadcasting applications +http://www.etsi.org/deliver/etsi_etr/100_199/154/03_60/etr_154e03p.pdf + + + + - d:etsi-etr-155 etsi-etr-155 @@ -25154,6 +25497,17 @@ http://www.etsi.org/deliver/etsi_etr/100_199/188/01_60/etr_188e01p.pdf +- +d:etsi-etr-189 +etsi-etr-189 +June 1995 +Published +ETSI ETR 189 ed.1 (1995-06): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1) protocol; Master list of codepoints and operation values +http://www.etsi.org/deliver/etsi_etr/100_199/189/01_60/etr_189e01p.pdf + + + + - d:etsi-etr-190 etsi-etr-190 @@ -25682,6 +26036,17 @@ http://www.etsi.org/deliver/etsi_etr/200_299/237/01_60/etr_237e01p.pdf +- +d:etsi-etr-238 +etsi-etr-238 +October 1995 +Published +ETSI ETR 238 ed.1 (1995-10): ETSI/CENELEC standardization programme for the development of Harmonized Standards related to Electro-Magnetic Compatibility (EMC) in the field of telecommunications +http://www.etsi.org/deliver/etsi_etr/200_299/238/01_60/etr_238e01p.pdf + + + + - d:etsi-etr-239 etsi-etr-239 @@ -25726,6 +26091,17 @@ http://www.etsi.org/deliver/etsi_etr/200_299/242/01_60/etr_242e01p.pdf +- +d:etsi-etr-243 +etsi-etr-243 +November 1995 +Published +ETSI ETR 243 ed.1 (1995-11): European digital cellular telecommunications system (Phase 2); Interface protocols for the connection of Short Message Service Centres (SMSCs) to Short Message Entities (SMEs) (GSM 03.39) +http://www.etsi.org/deliver/etsi_etr/200_299/243/01_60/etr_243e01p.pdf + + + + - d:etsi-etr-244 etsi-etr-244 @@ -26089,6 +26465,17 @@ http://www.etsi.org/deliver/etsi_etr/200_299/270/01_60/etr_270e01p.pdf +- +d:etsi-etr-271 +etsi-etr-271 +February 1996 +Published +ETSI ETR 271 ed.1 (1996-02): Special Mobile Group (SMG); Universal Mobile Telecommunications System (UMTS); Objectives and overview (UMTS 01.01) +http://www.etsi.org/deliver/etsi_etr/200_299/271/01_60/etr_271e01p.pdf + + + + - d:etsi-etr-272 etsi-etr-272 @@ -26375,6 +26762,17 @@ http://www.etsi.org/deliver/etsi_etr/200_299/290/01_60/etr_290e01p.pdf +- +d:etsi-etr-291 +etsi-etr-291 +May 1996 +Published +ETSI ETR 291 ed.1 (1996-05): Special Mobile Group (SMG); Universal Mobile Telecommunications System (UMTS); System Requirements (UMTS 01.03) +http://www.etsi.org/deliver/etsi_etr/200_299/291/01_60/etr_291e01p.pdf + + + + - d:etsi-etr-292 etsi-etr-292 @@ -26628,6 +27026,17 @@ http://www.etsi.org/deliver/etsi_etr/300_399/308/01_60/etr_308e01p.pdf +- +d:etsi-etr-309 +etsi-etr-309 +August 1996 +Published +ETSI ETR 309 ed.1 (1996-08): Special Mobile Group (SMG); Vocabulary for the Universal Mobile Telecommunications System (UMTS) (UMTS 01.02) +http://www.etsi.org/deliver/etsi_etr/300_399/309/01_60/etr_309e01p.pdf + + + + - d:etsi-etr-310 etsi-etr-310 @@ -26661,6 +27070,17 @@ http://www.etsi.org/deliver/etsi_etr/300_399/311/01_60/etr_311e01p.pdf +- +d:etsi-etr-312 +etsi-etr-312 +August 1996 +Published +ETSI ETR 312 ed.1 (1996-08): Special Mobile Group (SMG); Scenarios and considerations for the introduction of the Universal Mobile Telecommunications System (UMTS) (UMTS 01.04) +http://www.etsi.org/deliver/etsi_etr/300_399/312/01_60/etr_312e01p.pdf + + + + - d:etsi-etr-313 etsi-etr-313 @@ -26672,6 +27092,17 @@ http://www.etsi.org/deliver/etsi_etr/300_399/313/01_60/etr_313e01p.pdf +- +d:etsi-etr-314 +etsi-etr-314 +July 1997 +Published +ETSI ETR 314 ed.2 (1997-07): Intellectual Property Rights (IPRs); Essential, or potentially Essential, IPRs notified to ETSI in respect of ETSI standards +http://www.etsi.org/deliver/etsi_etr/300_399/314/02_60/etr_314e02p.pdf + + + + - d:etsi-etr-315 etsi-etr-315 @@ -26826,6 +27257,17 @@ http://www.etsi.org/deliver/etsi_etr/300_399/330/01_60/etr_330e01p.pdf +- +d:etsi-etr-331 +etsi-etr-331 +December 1996 +Published +ETSI ETR 331 ed.1 (1996-12): Security Techniques Advisory Group (STAG); Definition of user requirements for lawful interception of telecommunications; Requirements of the law enforcement agencies +http://www.etsi.org/deliver/etsi_etr/300_399/331/01_60/etr_331e01p.pdf + + + + - d:etsi-etr-332 etsi-etr-332 @@ -27090,6 +27532,28 @@ http://www.etsi.org/deliver/etsi_etr/300_399/360/01_60/etr_360e01p.pdf +- +d:etsi-etr-361 +etsi-etr-361 +December 1996 +Published +ETSI ETR 361 ed.1 (1996-12): Digital cellular telecommunications system; Recommended infrastructure measures to overcome specific Phase 1 Mobile Station (MS) faults (GSM 09.94 version 5.0.0) +http://www.etsi.org/deliver/etsi_etr/300_399/361/01_60/etr_361e01p.pdf + + + + +- +d:etsi-etr-363 +etsi-etr-363 +January 1997 +Published +ETSI ETR 363 ed.1 (1997-01): Digital cellular telecommunications system; Lawful interception requirements for GSM (GSM 10.20 version 5.0.1) +http://www.etsi.org/deliver/etsi_etr/300_399/363/01_60/etr_363e01p.pdf + + + + - d:etsi-etr-364 etsi-etr-364 @@ -27101,6 +27565,17 @@ http://www.etsi.org/deliver/etsi_etr/300_399/364/01_60/etr_364e01p.pdf +- +d:etsi-etr-365 +etsi-etr-365 +November 1996 +Published +ETSI ETR 365 ed.1 (1996-11): Digital cellular telecommunications system; Interface protocols for the connection of Short Message Service Centres (SMSCs) to Short Message Entities (SMEs) (GSM 03.39 version 5.0.0) +http://www.etsi.org/deliver/etsi_etr/300_399/365/01_60/etr_365e01p.pdf + + + + - d:etsi-etr-366 etsi-etr-366 @@ -27442,6 +27917,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300012/01_60/ets_300012e01p +- +d:etsi-ets-300-012-c1 +etsi-ets-300-012-c1 +August 1993 +Published +ETSI ETS 300 012/C1 ed.1 (1993-08): Integrated Services Digital Network (ISDN); Basic user-network interface Layer 1 specification and test principles +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300012/01_60/ets_300012e01p_c1p.pdf + + + + - d:etsi-ets-300-015 etsi-ets-300-015 @@ -27717,6 +28203,116 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/3000190208/01_60/ets_300019 +- +d:etsi-ets-300-046-1 +etsi-ets-300-046-1 +August 1992 +Published +ETSI ETS 300 046-1 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Primary rate access - safety and protection; Part 1 : General +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004601/01_60/ets_30004601e01p.pdf + + + + +- +d:etsi-ets-300-046-2 +etsi-ets-300-046-2 +August 1992 +Published +ETSI ETS 300 046-2 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Primary rate access - safety and protection; Part 2 : Interface Ia - safety +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004602/01_60/ets_30004602e01p.pdf + + + + +- +d:etsi-ets-300-046-3 +etsi-ets-300-046-3 +August 1992 +Published +ETSI ETS 300 046-3 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Primary rate access - safety and protection; Part 3 : Interface Ia - protection +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004603/01_60/ets_30004603e01p.pdf + + + + +- +d:etsi-ets-300-046-4 +etsi-ets-300-046-4 +August 1992 +Published +ETSI ETS 300 046-4 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Primary rate access - safety and protection; Part 4 : Interface Ib - safety +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004604/01_60/ets_30004604e01p.pdf + + + + +- +d:etsi-ets-300-046-5 +etsi-ets-300-046-5 +August 1992 +Published +ETSI ETS 300 046-5 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Primary rate access - safety and protection; Part 5 : Interface Ib - protection +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004605/01_60/ets_30004605e01p.pdf + + + + +- +d:etsi-ets-300-047-1 +etsi-ets-300-047-1 +August 1992 +Published +ETSI ETS 300 047-1 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Basic access - safety and protection; Part 1: General +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004701/01_60/ets_30004701e01p.pdf + + + + +- +d:etsi-ets-300-047-2 +etsi-ets-300-047-2 +August 1992 +Published +ETSI ETS 300 047-2 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Basic access - safety and protection; Part 2: Interface Ia - safety +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004702/01_60/ets_30004702e01p.pdf + + + + +- +d:etsi-ets-300-047-3 +etsi-ets-300-047-3 +August 1992 +Published +ETSI ETS 300 047-3 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Basic access - safety and protection; Part 3: Interface Ia - protection +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004703/01_60/ets_30004703e01p.pdf + + + + +- +d:etsi-ets-300-047-4 +etsi-ets-300-047-4 +August 1992 +Published +ETSI ETS 300 047-4 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Basic access - safety and protection; Part 4: Interface Ib - safety +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004704/01_60/ets_30004704e01p.pdf + + + + +- +d:etsi-ets-300-047-5 +etsi-ets-300-047-5 +August 1992 +Published +ETSI ETS 300 047-5 ed.1 (1992-08): Integrated Services Digital Network (ISDN); Basic access - safety and protection; Part 5: Interface Ib - protection +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004705/01_60/ets_30004705e01p.pdf + + + + - d:etsi-ets-300-048 etsi-ets-300-048 @@ -27772,6 +28368,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005201/01_60/ets_30005201 +- +d:etsi-ets-300-052-1-c1 +etsi-ets-300-052-1-c1 +April 1994 +Published +ETSI ETS 300 052-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Multiple Subscriber Number (MSN) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol Specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005201/01_60/ets_30005201e01p_c1p.pdf + + + + - d:etsi-ets-300-052-2 etsi-ets-300-052-2 @@ -27860,6 +28467,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005501/01_60/ets_30005501 +- +d:etsi-ets-300-055-1-c1 +etsi-ets-300-055-1-c1 +April 1994 +Published +ETSI ETS 300 055-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Terminal Portability (TP) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol Specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005501/01_60/ets_30005501e01p_c1p.pdf + + + + +- +d:etsi-ets-300-055-1-c2 +etsi-ets-300-055-1-c2 +January 1996 +Published +ETSI ETS 300 055-1/C2 ed.1 (1996-01): Integrated Services Digital Network (ISDN); Terminal Portability (TP) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol Specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005501/01_60/ets_30005501e01p_c2p.pdf + + + + - d:etsi-ets-300-055-2 etsi-ets-300-055-2 @@ -27915,6 +28544,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005801/01_60/ets_30005801 +- +d:etsi-ets-300-058-1-c1 +etsi-ets-300-058-1-c1 +April 1994 +Published +ETSI ETS 300 058-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Call Waiting (CW) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol Specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30005801/01_60/ets_30005801e01p_c1p.pdf + + + + - d:etsi-ets-300-058-2 etsi-ets-300-058-2 @@ -28003,6 +28643,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30006101/01_60/ets_30006101 +- +d:etsi-ets-300-061-1-c1 +etsi-ets-300-061-1-c1 +April 1994 +Published +ETSI ETS 300 061-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Subaddressing (SUB) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30006101/01_60/ets_30006101e01p_c1p.pdf + + + + - d:etsi-ets-300-061-2 etsi-ets-300-061-2 @@ -28091,6 +28742,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30006401/02_60/ets_30006401 +- +d:etsi-ets-300-064-1-c1 +etsi-ets-300-064-1-c1 +April 1994 +Published +ETSI ETS 300 064-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Direct Dialling In (DDI) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30006401/01_60/ets_30006401e01p_c1p.pdf + + + + - d:etsi-ets-300-064-2 etsi-ets-300-064-2 @@ -28454,6 +29116,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009201/01_60/ets_30009201 +- +d:etsi-ets-300-092-1-a1-c1 +etsi-ets-300-092-1-a1-c1 +April 1994 +Published +ETSI ETS 300 092-1/A1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Calling Line Identification Presentation (CLIP) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009201/01_60/ets_30009201e01p_a1p_c1p.pdf + + + + - d:etsi-ets-300-092-1-a2 etsi-ets-300-092-1-a2 @@ -28465,6 +29138,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009201/01_60/ets_30009201 +- +d:etsi-ets-300-092-1-c1 +etsi-ets-300-092-1-c1 +April 1994 +Published +ETSI ETS 300 092-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Calling Line Identification Presentation (CLIP) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009201/01_60/ets_30009201e01p_c1p.pdf + + + + - d:etsi-ets-300-092-2 etsi-ets-300-092-2 @@ -28531,6 +29215,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009301/01_60/ets_30009301 +- +d:etsi-ets-300-093-1-c1 +etsi-ets-300-093-1-c1 +April 1994 +Published +ETSI ETS 300 093-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Calling Line Identification Restriction (CLIR) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009301/01_60/ets_30009301e01p_c1p.pdf + + + + - d:etsi-ets-300-093-2 etsi-ets-300-093-2 @@ -28641,6 +29336,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009701/01_60/ets_30009701 +- +d:etsi-ets-300-097-1-c1 +etsi-ets-300-097-1-c1 +April 1994 +Published +ETSI ETS 300 097-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Connected Line Identification Presentation (COLP) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009701/01_60/ets_30009701e01p_c1p.pdf + + + + - d:etsi-ets-300-097-2 etsi-ets-300-097-2 @@ -28707,6 +29413,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009801/01_60/ets_30009801 +- +d:etsi-ets-300-098-1-c1 +etsi-ets-300-098-1-c1 +April 1994 +Published +ETSI ETS 300 098-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Connected Line Identification Restriction (COLR) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30009801/01_60/ets_30009801e01p_c1p.pdf + + + + - d:etsi-ets-300-098-2 etsi-ets-300-098-2 @@ -29103,6 +29820,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30012201/01_60/ets_30012201 +- +d:etsi-ets-300-122-1-c1 +etsi-ets-300-122-1-c1 +April 1994 +Published +ETSI ETS 300 122-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Generic keypad protocol for the support of supplementary services; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30012201/01_60/ets_30012201e01p_c1p.pdf + + + + - d:etsi-ets-300-122-2 etsi-ets-300-122-2 @@ -29202,6 +29930,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30013001/01_60/ets_30013001 +- +d:etsi-ets-300-130-1-c1 +etsi-ets-300-130-1-c1 +April 1994 +Published +ETSI ETS 300 130-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Malicious Call Identification (MCID) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30013001/01_60/ets_30013001e01p_c1p.pdf + + + + - d:etsi-ets-300-130-2 etsi-ets-300-130-2 @@ -29433,6 +30172,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300134/01_60/ets_300134e01p +- +d:etsi-ets-300-135 +etsi-ets-300-135 +June 1991 +Published +ETSI ETS 300 135 ed.1 (1991-06): Radio Equipment and Systems (RES); Angle-modulated Citizens Band radio equipment (CEPT PR 27 Radio Equipment); Technical characteristics and methods of measurement +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300135/01_60/ets_300135e01p.pdf + + + + +- +d:etsi-ets-300-135-a1 +etsi-ets-300-135-a1 +March 1997 +Published +ETSI ETS 300 135/A1 ed.1 (1997-03): Radio Equipment and Systems (RES); Angle-modulated Citizens Band radio equipment (CEPT PR 27 Radio Equipment); Technical characteristics and methods of measurement +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300135/01_60/ets_300135e01p_a1p.pdf + + + + - d:etsi-ets-300-136 etsi-ets-300-136 @@ -29477,6 +30238,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30013801/01_60/ets_30013801 +- +d:etsi-ets-300-138-1-c1 +etsi-ets-300-138-1-c1 +April 1994 +Published +ETSI ETS 300 138-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Closed User Group (CUG) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30013801/01_60/ets_30013801e01p_c1p.pdf + + + + - d:etsi-ets-300-138-2 etsi-ets-300-138-2 @@ -29565,6 +30337,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30014101/01_60/ets_30014101 +- +d:etsi-ets-300-141-1-c1 +etsi-ets-300-141-1-c1 +August 1993 +Published +ETSI ETS 300 141-1/C1 ed.1 (1993-08): Integrated Services Digital Network (ISDN); Call Hold (HOLD) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30014101/01_60/ets_30014101e01p_c1p.pdf + + + + +- +d:etsi-ets-300-141-1-c2 +etsi-ets-300-141-1-c2 +April 1994 +Published +ETSI ETS 300 141-1/C2 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Call Hold (HOLD) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30014101/01_60/ets_30014101e01p_c2p.pdf + + + + - d:etsi-ets-300-141-2 etsi-ets-300-141-2 @@ -29719,6 +30513,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300152/01_60/ets_300152e01p +- +d:etsi-ets-300-153 +etsi-ets-300-153 +September 1992 +Published +ETSI ETS 300 153 ed.1 (1992-09): Integrated Services Digital Network (ISDN); Attachment requirements for terminal equipment to connect to an ISDN using ISDN basic access (Candidate NET 3 Part 1) +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300153/01_60/ets_300153e01p.pdf + + + + +- +d:etsi-ets-300-153-a1 +etsi-ets-300-153-a1 +January 1995 +Published +ETSI ETS 300 153/A1 ed.1 (1995-01): Integrated Services Digital Network (ISDN); Attachment requirements for terminal equipment to connect to an ISDN using ISDN basic access (Candidate NET 3 Part 1) +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300153/01_60/ets_300153e01p_a1p.pdf + + + + - d:etsi-ets-300-154 etsi-ets-300-154 @@ -29741,6 +30557,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300155/01_60/ets_300155e01p +- +d:etsi-ets-300-156 +etsi-ets-300-156 +September 1992 +Published +ETSI ETS 300 156 ed.1 (1992-09): Integrated Services Digital Network (ISDN); Attachment requirements for terminal equipment to connect to an ISDN using ISDN primary rate access (Candidate NET 5) +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300156/01_60/ets_300156e01p.pdf + + + + +- +d:etsi-ets-300-156-a1 +etsi-ets-300-156-a1 +March 1995 +Published +ETSI ETS 300 156/A1 ed.1 (1995-03): Integrated Services Digital Network (ISDN); Attachment requirements for terminal equipment to connect to an ISDN using ISDN primary rate access (Candidate NET 5) +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300156/01_60/ets_300156e01p_a1p.pdf + + + + - d:etsi-ets-300-157 etsi-ets-300-157 @@ -30115,6 +30953,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018201/01_60/ets_30018201 +- +d:etsi-ets-300-182-1-c1 +etsi-ets-300-182-1-c1 +September 1993 +Published +ETSI ETS 300 182-1/C1 ed.1 (1993-09): Integrated Services Digital Network (ISDN); Advice of Charge (AOC) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018201/01_60/ets_30018201e01p_c1p.pdf + + + + +- +d:etsi-ets-300-182-1-c2 +etsi-ets-300-182-1-c2 +April 1994 +Published +ETSI ETS 300 182-1/C2 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Advice of Charge (AOC) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018201/01_60/ets_30018201e01p_c2p.pdf + + + + - d:etsi-ets-300-182-2 etsi-ets-300-182-2 @@ -30236,6 +31096,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018501/01_60/ets_30018501 +- +d:etsi-ets-300-185-1-c1 +etsi-ets-300-185-1-c1 +September 1993 +Published +ETSI ETS 300 185-1/C1 ed.1 (1993-09): Integrated Services Digital Network (ISDN); Conference call, add-on (CONF) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018501/01_60/ets_30018501e01p_c1p.pdf + + + + +- +d:etsi-ets-300-185-1-c2 +etsi-ets-300-185-1-c2 +April 1994 +Published +ETSI ETS 300 185-1/C2 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Conference call, add-on (CONF) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018501/01_60/ets_30018501e01p_c2p.pdf + + + + - d:etsi-ets-300-185-2 etsi-ets-300-185-2 @@ -30335,6 +31217,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018801/01_60/ets_30018801 +- +d:etsi-ets-300-188-1-c1 +etsi-ets-300-188-1-c1 +April 1994 +Published +ETSI ETS 300 188-1/C1 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Three-Party (3PTY) supplementary service; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30018801/01_60/ets_30018801e01p_c1p.pdf + + + + - d:etsi-ets-300-188-2 etsi-ets-300-188-2 @@ -30544,6 +31437,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30019601/01_60/ets_30019601 +- +d:etsi-ets-300-196-1-c1 +etsi-ets-300-196-1-c1 +January 1994 +Published +ETSI ETS 300 196-1/C1 ed.1 (1994-01): Integrated Services Digital Network (ISDN); Generic functional protocol for the support of supplementary services; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30019601/01_60/ets_30019601e01p_c1p.pdf + + + + +- +d:etsi-ets-300-196-1-c2 +etsi-ets-300-196-1-c2 +April 1994 +Published +ETSI ETS 300 196-1/C2 ed.1 (1994-04): Integrated Services Digital Network (ISDN); Generic functional protocol for the support of supplementary services; Digital Subscriber Signalling System No. one (DSS1) protocol; Part 1: Protocol specification +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/30019601/01_60/ets_30019601e01p_c2p.pdf + + + + - d:etsi-ets-300-196-2 etsi-ets-300-196-2 @@ -31270,6 +32185,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300200_300299/30024302/01_60/ets_30024302 +- +d:etsi-ets-300-246 +etsi-ets-300-246 +October 1993 +Published +ETSI ETS 300 246 ed.1 (1993-10): Business Telecommunications (BT); Open Network Provision (ONP) technical requirements; 2 048 kbit/s digital unstructured leased line (D2048U) Network interface presentation +http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300246/01_60/ets_300246e01p.pdf + + + + - d:etsi-ets-300-247 etsi-ets-300-247 @@ -32084,6 +33010,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300303/01_60/ets_300303e01p +- +d:etsi-ets-300-303-c1 +etsi-ets-300-303-c1 +June 1995 +Published +ETSI ETS 300 303/C1 ed.1 (1995-06): Integrated Services Digital Network (ISDN); ISDN - Global System for Mobile communications (GSM) Public Land Mobile Network (PLMN) signalling interface +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300303/01_60/ets_300303e01p_c1p.pdf + + + + - d:etsi-ets-300-303-c2 etsi-ets-300-303-c2 @@ -32777,6 +33714,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300350/01_60/ets_300350e01p +- +d:etsi-ets-300-351 +etsi-ets-300-351 +October 1994 +Published +ETSI ETS 300 351 ed.1 (1994-10): ETSI object identifier tree; Rules and registration procedures +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300351/01_60/ets_300351e01p.pdf + + + + - d:etsi-ets-300-352 etsi-ets-300-352 @@ -35120,6 +36068,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300400_300499/300413/01_60/ets_300413e01p +- +d:etsi-ets-300-414 +etsi-ets-300-414 +December 1995 +Published +ETSI ETS 300 414 ed.1 (1995-12): Methods for Testing and Specification (MTS); Use of SDL in European Telecommunication Standards; Rules for testability and facilitating validation +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/300414/01_60/ets_300414e01p.pdf + + + + - d:etsi-ets-300-415 etsi-ets-300-415 @@ -35318,6 +36277,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300400_300499/300426/01_60/ets_300426e01p +- +d:etsi-ets-300-427 +etsi-ets-300-427 +September 1995 +Published +ETSI ETS 300 427 ed.1 (1995-09): Private Telecommunication Network (PTN); Inter-exchange signalling protocol Supplementary service interactions; ECMA-QSIG-IA +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/300427/01_60/ets_300427e01p.pdf + + + + - d:etsi-ets-300-428 etsi-ets-300-428 @@ -35505,6 +36475,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300400_300499/30043802/01_60/ets_30043802 +- +d:etsi-ets-300-439 +etsi-ets-300-439 +December 1996 +Published +ETSI ETS 300 439 ed.1 (1996-12): Business TeleCommunications (BTC); Transmission characteristics of digital Private Branch eXchanges (PBXs) +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/300439/01_60/ets_300439e01p.pdf + + + + - d:etsi-ets-300-441 etsi-ets-300-441 @@ -35802,6 +36783,50 @@ http://www.etsi.org/deliver/etsi_i_ets/300400_300499/30046102/01_60/ets_30046102 +- +d:etsi-ets-300-462-1 +etsi-ets-300-462-1 +April 1997 +Published +ETSI ETS 300 462-1 ed.1 (1997-04): Transmission and Multiplexing (TM); Generic requirements for synchronization networks; Part 1: Definitions and terminology for synchronization networks +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/30046201/01_60/ets_30046201e01p.pdf + + + + +- +d:etsi-ets-300-462-2 +etsi-ets-300-462-2 +September 1996 +Published +ETSI ETS 300 462-2 ed.1 (1996-09): Transmission and Multiplexing (TM); Generic requirements for synchronization networks; Part 2: Synchronization network architecture +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/30046202/01_60/ets_30046202e01p.pdf + + + + +- +d:etsi-ets-300-462-3 +etsi-ets-300-462-3 +January 1997 +Published +ETSI ETS 300 462-3 ed.1 (1997-01): Transmission and Multiplexing (TM); Generic requirements for synchronization networks; Part 3: The control of jitter and wander within synchronization networks +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/30046203/01_60/ets_30046203e01p.pdf + + + + +- +d:etsi-ets-300-462-5 +etsi-ets-300-462-5 +September 1996 +Published +ETSI ETS 300 462-5 ed.1 (1996-09): Transmission and Multiplexing (TM); Generic requirements for synchronization networks; Part 5: Timing characteristics of slave clocks suitable for operation in Synchronous Digital Hierarchy (SDH) equipment +http://www.etsi.org/deliver/etsi_i_ets/300400_300499/30046205/01_60/ets_30046205e01p.pdf + + + + - d:etsi-ets-300-463 etsi-ets-300-463 @@ -37375,6 +38400,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300500_300599/300577/15_60/ets_300577e15p +- +d:etsi-ets-300-577-c1 +etsi-ets-300-577-c1 +November 1994 +Published +ETSI ETS 300 577/C1 ed.1 (1994-11): European digital cellular telecommunications system (Phase 2); Radio transmission and reception (GSM 05.05) +http://www.etsi.org/deliver/etsi_i_ets/300500_300599/300577/01_60/ets_300577e01p_c1p.pdf + + + + - d:etsi-ets-300-578 etsi-ets-300-578 @@ -38431,6 +39467,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300600_300699/300658/01_60/ets_300658e01p +- +d:etsi-ets-300-659-1 +etsi-ets-300-659-1 +February 1997 +Published +ETSI ETS 300 659-1 ed.1 (1997-02): Public Switched Telephone Network (PSTN); Subscriber line protocol over the local loop for display (and related) services; Part 1: On hook data transmission +http://www.etsi.org/deliver/etsi_i_ets/300600_300699/30065901/01_60/ets_30065901e01p.pdf + + + + +- +d:etsi-ets-300-659-2 +etsi-ets-300-659-2 +September 1997 +Published +ETSI ETS 300 659-2 ed.1 (1997-09): Public Switched Telephone Network (PSTN); Subscriber line protocol over the local loop for display (and related) services; Part 2: Off-hook data transmission +http://www.etsi.org/deliver/etsi_i_ets/300600_300699/30065902/01_60/ets_30065902e01p.pdf + + + + - d:etsi-ets-300-660 etsi-ets-300-660 @@ -39828,6 +40886,28 @@ http://www.etsi.org/deliver/etsi_i_ets/300700_300799/30077704/01_60/ets_30077704 +- +d:etsi-ets-300-778-1 +etsi-ets-300-778-1 +September 1997 +Published +ETSI ETS 300 778-1 ed.1 (1997-09): Public Switched Telephone Network (PSTN); Protocol over the local loop for display and related services; Terminal Equipment requirements; Part 1: Off-line data transmission +http://www.etsi.org/deliver/etsi_i_ets/300700_300799/30077801/01_60/ets_30077801e01p.pdf + + + + +- +d:etsi-ets-300-778-2 +etsi-ets-300-778-2 +January 1998 +Published +ETSI ETS 300 778-2 ed.1 (1998-01): Public Switched Telephone Network (PSTN); Protocol over the local loop for display and related services; Terminal Equipment requirements; Part 2: On-line data transmission +http://www.etsi.org/deliver/etsi_i_ets/300700_300799/30077802/01_60/ets_30077802e01p.pdf + + + + - d:etsi-ets-300-779 etsi-ets-300-779 @@ -43276,7 +44356,7 @@ d:etsi-gs-ngp-001 etsi-gs-ngp-001 January 2019 Published -ETSI GS NGP 001 V1.3.1 (2019-01): Next Generation Protocols (NGP); Scenario Definitions +ETSI GS NGP 001 V1.3.1 (2019-01): <empty> http://www.etsi.org/deliver/etsi_gs/NGP/001_099/001/01.03.01_60/gs_NGP001v010301p.pdf @@ -43513,6 +44593,17 @@ http://www.etsi.org/deliver/etsi_gs/qkd/001_099/002/01.01.01_60/gs_qkd002v010101 +- +d:etsi-gs-qkd-003 +etsi-gs-qkd-003 +December 2010 +Published +ETSI GS QKD 003 V1.1.1 (2010-12): Quantum Key Distribution (QKD); Components and Internal Interfaces +http://www.etsi.org/deliver/etsi_gs/QKD/001_099/003/01.01.01_60/gs_QKD003v010101p.pdf + + + + - d:etsi-gs-qkd-004 etsi-gs-qkd-004 @@ -45009,6 +46100,17 @@ http://www.etsi.org/deliver/etsi_gts/02/0230/05.03.00_60/gsmts_0230v050300p.pdf +- +d:etsi-gts-gsm-02.33 +etsi-gts-gsm-02.33 +January 1997 +Published +ETSI GTS GSM 02.33 V5.0.0 (1997-01): Digital cellular telecommunications system (Phase 2+) (GSM); Lawful interception; Stage 1 (GSM 02.33) +http://www.etsi.org/deliver/etsi_gts/02/0233/05.00.00_60/gsmts_0233v050000p.pdf + + + + - d:etsi-gts-gsm-02.34 etsi-gts-gsm-02.34 @@ -45097,6 +46199,17 @@ http://www.etsi.org/deliver/etsi_gts/02/0269/05.01.00_60/gsmts_0269v050100p.pdf +- +d:etsi-gts-gsm-02.72 +etsi-gts-gsm-02.72 +July 1996 +Published +ETSI GTS GSM 02.72 V5.0.0 (1996-07): Digital cellular telecommunications system (Phase 2+) (GSM); Call Deflection; Service description, Stage 1 (GSM 02.72) +http://www.etsi.org/deliver/etsi_gts/02/0272/05.00.00_60/gsmts_0272v050000p.pdf + + + + - d:etsi-gts-gsm-02.78 etsi-gts-gsm-02.78 @@ -45185,6 +46298,17 @@ http://www.etsi.org/deliver/etsi_gts/02/0286/05.00.00_60/gsmts_0286v050000p.pdf +- +d:etsi-gts-gsm-02.87 +etsi-gts-gsm-02.87 +November 1997 +Published +ETSI GTS GSM 02.87 V5.2.1 (1997-11): Digital cellular telecommunications system (Phase 2+) (GSM); User-to-User Signalling (UUS); Service description, Stage 1 (GSM 02.87 version 5.2.1) +http://www.etsi.org/deliver/etsi_gts/02/0287/05.02.01_60/gsmts_0287v050201p.pdf + + + + - d:etsi-gts-gsm-02.88 etsi-gts-gsm-02.88 @@ -45218,6 +46342,17 @@ http://www.etsi.org/deliver/etsi_gts/02/0291/05.01.01_60/gsmts_0291v050101p.pdf +- +d:etsi-gts-gsm-02.93 +etsi-gts-gsm-02.93 +January 1998 +Published +ETSI GTS GSM 02.93 V5.5.0 (1998-01): Digital cellular telecommunications system (Phase 2+) (GSM); Completion of Calls to Busy Subscriber (CCBS); Service description, Stage 1 (GSM 02.93 version 5.5.0) +http://www.etsi.org/deliver/etsi_gts/02/0293/05.05.00_60/gsmts_0293v050500p.pdf + + + + - d:etsi-gts-gsm-02.95 etsi-gts-gsm-02.95 @@ -45229,6 +46364,17 @@ http://www.etsi.org/deliver/etsi_gts/02/0295/05.02.00_60/gsmts_0295v050200p.pdf +- +d:etsi-gts-gsm-02.97 +etsi-gts-gsm-02.97 +November 1997 +Published +ETSI GTS GSM 02.97 V5.2.0 (1997-11): Digital cellular telecommunications system (Phase 2+) (GSM); Multiple Subscriber Profile (MSP); Service description, Stage 1 (GSM 02.97 version 5.2.0) +http://www.etsi.org/deliver/etsi_gts/02/0297/05.02.00_60/gsmts_0297v050200p.pdf + + + + - d:etsi-gts-gsm-03.01 etsi-gts-gsm-03.01 @@ -46098,6 +47244,50 @@ http://www.etsi.org/deliver/etsi_gts/11/1114/05.09.00_60/gsmts_1114v050900p.pdf +- +d:etsi-i-ets-300-003 +etsi-i-ets-300-003 +August 1991 +Published +ETSI I-ETS 300 003 ed.1 (1991-08): Business Telecommunications (BT); Transmission characteristics of digital Private Automatic Branch Exchanges (PABXs) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300003/01_60/iets_300003e01p.pdf + + + + +- +d:etsi-i-ets-300-004 +etsi-i-ets-300-004 +August 1991 +Published +ETSI I-ETS 300 004 ed.1 (1991-08): Business Telecommunications (BT); Transmission characteristics at 2-wire analogue interfaces of a digital Private Automatic Branch Exchange (PABX) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300004/01_60/iets_300004e01p.pdf + + + + +- +d:etsi-i-ets-300-005 +etsi-i-ets-300-005 +August 1991 +Published +ETSI I-ETS 300 005 ed.1 (1991-08): Business Telecommunications (BT); Transmission characteristics at 4-wire analogue interfaces of a digital Private Automatic Branch Exchange (PABX) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300005/01_60/iets_300005e01p.pdf + + + + +- +d:etsi-i-ets-300-006 +etsi-i-ets-300-006 +August 1991 +Published +ETSI I-ETS 300 006 ed.1 (1991-08): Business Telecommunications (BT); Transmission characteristics at digital interfaces of a digital Private Automatic Branch Exchange (PABX) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300006/01_60/iets_300006e01p.pdf + + + + - d:etsi-i-ets-300-020-1 etsi-i-ets-300-020-1 @@ -46494,6 +47684,39 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300043/02_60/iets_300043e02 +- +d:etsi-i-ets-300-044-1 +etsi-i-ets-300-044-1 +February 1992 +Published +ETSI I-ETS 300 044-1 ed.1 (1992-02): European digital cellular telecommunications system (Phase 1); Mobile application part specification; Part 1: Generic (GSM 09.02) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004401/01_60/iets_30004401e01p.pdf + + + + +- +d:etsi-i-ets-300-044-1-a1 +etsi-i-ets-300-044-1-a1 +November 1994 +Published +ETSI I-ETS 300 044-1/A1 ed.1 (1994-11): European digital cellular telecommunications system (Phase 1); Mobile Application Part (MAP); Part 1: Generic (GSM 09.02) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004401/01_60/iets_30004401e01p_a1p.pdf + + + + +- +d:etsi-i-ets-300-044-1-a2 +etsi-i-ets-300-044-1-a2 +November 1995 +Published +ETSI I-ETS 300 044-1/A2 ed.1 (1995-11): European digital cellular telecommunications system (Phase 1); Mobile Application Part (MAP); Part 1: Generic (GSM 09.02) +http://www.etsi.org/deliver/etsi_i_ets/300001_300099/30004401/01_60/iets_30004401e01p_a2p.pdf + + + + - d:etsi-i-ets-300-044-2 etsi-i-ets-300-044-2 @@ -46615,6 +47838,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300001_300099/300078/01_60/iets_300078e01 +- +d:etsi-i-ets-300-101 +etsi-i-ets-300-101 +February 1993 +Published +ETSI I-ETS 300 101 ed.1 (1993-02): Integrated Services Digital Network (ISDN); International digital audiographic teleconference +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300101/01_60/iets_300101e01p.pdf + + + + - d:etsi-i-ets-300-113 etsi-i-ets-300-113 @@ -46637,6 +47871,50 @@ http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300131/02_60/iets_300131e02 +- +d:etsi-i-ets-300-151 +etsi-i-ets-300-151 +January 1992 +Published +ETSI I-ETS 300 151 ed.1 (1992-01): Radio Equipment and Systems (RES); 9 GHz radar transponders for use in search and rescue operations Technical characteristics and methods of measurement +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300151/01_60/iets_300151e01p.pdf + + + + +- +d:etsi-i-ets-300-168 +etsi-i-ets-300-168 +February 1993 +Published +ETSI I-ETS 300 168 ed.1 (1993-02): Radio Equipment and Systems (RES); Digital Short Range Radio (DSRR) +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300168/01_60/iets_300168e01p.pdf + + + + +- +d:etsi-i-ets-300-169 +etsi-i-ets-300-169 +December 1992 +Published +ETSI I-ETS 300 169 ed.1 (1992-12): Private Telecommunication Network (PTN); Signalling at the S-reference point; Data link layer protocol +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300169/01_60/iets_300169e01p.pdf + + + + +- +d:etsi-i-ets-300-170 +etsi-i-ets-300-170 +December 1992 +Published +ETSI I-ETS 300 170 ed.1 (1992-12): Private Telecommunication Network (PTN); Inter-exchange signalling protocol; Data link layer protocol +http://www.etsi.org/deliver/etsi_i_ets/300100_300199/300170/01_60/iets_300170e01p.pdf + + + + - d:etsi-i-ets-300-176 etsi-i-ets-300-176 @@ -46692,6 +47970,50 @@ http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300225/01_60/iets_300225e01 +- +d:etsi-i-ets-300-226 +etsi-i-ets-300-226 +June 1993 +Published +ETSI I-ETS 300 226 ed.1 (1993-06): Transmission and Multiplexing (TM); Single-mode optical fibre cables to be used in ducts and for directly buried application +http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300226/01_60/iets_300226e01p.pdf + + + + +- +d:etsi-i-ets-300-227 +etsi-i-ets-300-227 +June 1993 +Published +ETSI I-ETS 300 227 ed.1 (1993-06): Transmission and Multiplexing (TM); ITU-T Recommendation G.652-type single-mode optical fibre +http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300227/01_60/iets_300227e01p.pdf + + + + +- +d:etsi-i-ets-300-228 +etsi-i-ets-300-228 +June 1993 +Published +ETSI I-ETS 300 228 ed.1 (1993-06): Transmission and Multiplexing (TM); ITU-T Recommendation G.653-type dispersion shifted single-mode optical fibre +http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300228/01_60/iets_300228e01p.pdf + + + + +- +d:etsi-i-ets-300-229 +etsi-i-ets-300-229 +June 1993 +Published +ETSI I-ETS 300 229 ed.1 (1993-06): Transmission and Multiplexing (TM); Single-mode optical fibre cables to be used for aerial application +http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300229/01_60/iets_300229e01p.pdf + + + + - d:etsi-i-ets-300-230 etsi-i-ets-300-230 @@ -46901,6 +48223,204 @@ http://www.etsi.org/deliver/etsi_i_ets/300300_300399/30030204/01_60/iets_3003020 +- +d:etsi-i-ets-300-305 +etsi-i-ets-300-305 +December 1994 +Published +ETSI I-ETS 300 305 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for data link layer protocol for general application (basic access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300305/01_60/iets_300305e01p.pdf + + + + +- +d:etsi-i-ets-300-306 +etsi-i-ets-300-306 +December 1994 +Published +ETSI I-ETS 300 306 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for data link layer protocol for general application (primary rate access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300306/01_60/iets_300306e01p.pdf + + + + +- +d:etsi-i-ets-300-307 +etsi-i-ets-300-307 +December 1994 +Published +ETSI I-ETS 300 307 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for data link layer protocol for general application (basic access, network) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300307/01_60/iets_300307e01p.pdf + + + + +- +d:etsi-i-ets-300-308 +etsi-i-ets-300-308 +December 1994 +Published +ETSI I-ETS 300 308 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for data link layer protocol for general application (primary rate access, network) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300308/01_60/iets_300308e01p.pdf + + + + +- +d:etsi-i-ets-300-309 +etsi-i-ets-300-309 +May 1995 +Published +ETSI I-ETS 300 309 ed.1 (1995-05): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Partial Protocol Implementation eXtra Information for Testing (PIXIT) proforma specification for data link layer protocol for general application (basic access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300309/01_60/iets_300309e01p.pdf + + + + +- +d:etsi-i-ets-300-310 +etsi-i-ets-300-310 +May 1995 +Published +ETSI I-ETS 300 310 ed.1 (1995-05): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Partial Protocol Implementation eXtra Information for Testing (PIXIT) proforma specification for data link layer protocol for general application (primary rate access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300310/01_60/iets_300310e01p.pdf + + + + +- +d:etsi-i-ets-300-313 +etsi-i-ets-300-313 +May 1995 +Published +ETSI I-ETS 300 313 ed.1 (1995-05): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Abstract Test Suite (ATS) specification for data link layer protocol for general application (user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300313/01_60/iets_300313e01p.pdf + + + + +- +d:etsi-i-ets-300-314 +etsi-i-ets-300-314 +December 1994 +Published +ETSI I-ETS 300 314 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (basic access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300314/01_60/iets_300314e01p.pdf + + + + +- +d:etsi-i-ets-300-314-a1 +etsi-i-ets-300-314-a1 +June 1996 +Published +ETSI I-ETS 300 314/A1 ed.1 (1996-06): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (basic access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300314/01_60/iets_300314e01p_a1p.pdf + + + + +- +d:etsi-i-ets-300-315 +etsi-i-ets-300-315 +December 1994 +Published +ETSI I-ETS 300 315 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (primary rate access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300315/01_60/iets_300315e01p.pdf + + + + +- +d:etsi-i-ets-300-315-a1 +etsi-i-ets-300-315-a1 +June 1996 +Published +ETSI I-ETS 300 315/A1 ed.1 (1996-06): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (primary rate access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300315/01_60/iets_300315e01p_a1p.pdf + + + + +- +d:etsi-i-ets-300-316 +etsi-i-ets-300-316 +December 1994 +Published +ETSI I-ETS 300 316 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (basic access, network) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300316/01_60/iets_300316e01p.pdf + + + + +- +d:etsi-i-ets-300-316-a1 +etsi-i-ets-300-316-a1 +June 1996 +Published +ETSI I-ETS 300 316/A1 ed.1 (1996-06): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (basic access, network) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300316/01_60/iets_300316e01p_a1p.pdf + + + + +- +d:etsi-i-ets-300-317 +etsi-i-ets-300-317 +December 1994 +Published +ETSI I-ETS 300 317 ed.1 (1994-12): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (primary rate access, network) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300317/01_60/iets_300317e01p.pdf + + + + +- +d:etsi-i-ets-300-317-a1 +etsi-i-ets-300-317-a1 +June 1996 +Published +ETSI I-ETS 300 317/A1 ed.1 (1996-06): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Protocol Implementation Conformance Statement (PICS) proforma specification for signalling network layer protocol for circuit-mode basic call control (primary rate access, network) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300317/01_60/iets_300317e01p_a1p.pdf + + + + +- +d:etsi-i-ets-300-318 +etsi-i-ets-300-318 +May 1995 +Published +ETSI I-ETS 300 318 ed.1 (1995-05): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Partial Protocol Implementation eXtra Information for Testing (PIXIT) proforma specification for signalling network layer protocol for circuit-mode basic call control (basic access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300318/01_60/iets_300318e01p.pdf + + + + +- +d:etsi-i-ets-300-319 +etsi-i-ets-300-319 +May 1995 +Published +ETSI I-ETS 300 319 ed.1 (1995-05): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Partial Protocol Implementation eXtra Information for Testing (PIXIT) proforma specification for signalling network layer protocol for circuit-mode basic call control (primary rate access, user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300319/01_60/iets_300319e01p.pdf + + + + +- +d:etsi-i-ets-300-322 +etsi-i-ets-300-322 +May 1995 +Published +ETSI I-ETS 300 322 ed.1 (1995-05): Integrated Services Digital Network (ISDN); Digital Subscriber Signalling System No. one (DSS1); Abstract Test Suite (ATS) specification for signalling network layer protocol for circuit-mode basic call control (user) +http://www.etsi.org/deliver/etsi_i_ets/300300_300399/300322/01_60/iets_300322e01p.pdf + + + + - d:etsi-i-ets-300-330 etsi-i-ets-300-330 @@ -47220,6 +48740,17 @@ http://www.etsi.org/deliver/etsi_i_ets/300600_300699/300671/01_60/iets_300671e01 +- +d:etsi-i-ets-300-677 +etsi-i-ets-300-677 +November 1996 +Published +ETSI I-ETS 300 677 ed.1 (1996-11): Public Switched Telephone Network (PSTN); Requirements for handset telephony +http://www.etsi.org/deliver/etsi_i_ets/300600_300699/300677/01_60/iets_300677e01p.pdf + + + + - d:etsi-i-ets-300-697-1 etsi-i-ets-300-697-1 @@ -47487,10 +49018,32 @@ http://www.etsi.org/deliver/etsi_net/001_099/005/02_60/net_005e02p.pdf - d:etsi-sr-000-314 etsi-sr-000-314 -March 2019 +November 2005 Published -ETSI SR 000 314 V2.25.1 (2019-03): Intellectual Property Rights (IPRs); Essential, or potentially Essential, IPRs notified to ETSI in respect of ETSI standards -http://www.etsi.org/deliver/etsi_sr/000300_000399/000314/02.25.01_60/sr_000314v022501p.pdf +ETSI SR 000 314 V1.15.1 (2005-11): Intellectual Property Rights (IPRs); Essential, or potentially Essential, IPRs notified to ETSI in respect of ETSI standards +http://www.etsi.org/deliver/etsi_sr/000300_000399/000314/01.15.01_60/sr_000314v011501p.pdf + + + + +- +d:etsi-sr-001-262 +etsi-sr-001-262 +July 2004 +Published +ETSI SR 001 262 V2.0.0 (2004-07): ETSI drafting rules +http://www.etsi.org/deliver/etsi_sr/001200_001299/001262/02.00.00_60/sr_001262v020000p.pdf + + + + +- +d:etsi-sr-001-470 +etsi-sr-001-470 +November 2001 +Published +ETSI SR 001 470 V1.1.6 (2001-11): Guidance to the production of candidate Harmonized Standards for application under the R&TTE Directive (1999/5/EC); Pro-forma candidate Harmonized Standard +http://www.etsi.org/deliver/etsi_sr/001400_001499/001470/01.01.06_60/sr_001470v010106p.pdf @@ -48496,6 +50049,17 @@ http://www.etsi.org/deliver/etsi_tcrtr/001_099/008/01_60/tcrtr_008e01p.pdf +- +d:etsi-tcrtr-009 +etsi-tcrtr-009 +August 1993 +Published +ETSI TCRTR 009 ed.1 (1993-08): Network Aspects (NA); Security Techniques Advisory Group (STAG) Work Programme +http://www.etsi.org/deliver/etsi_tcrtr/001_099/009/01_60/tcrtr_009e01p.pdf + + + + - d:etsi-tcrtr-010 etsi-tcrtr-010 @@ -48551,6 +50115,17 @@ http://www.etsi.org/deliver/etsi_tcrtr/001_099/014/02_60/tcrtr_014e02p.pdf +- +d:etsi-tcrtr-015 +etsi-tcrtr-015 +October 1994 +Published +ETSI TCRTR 015 ed.1 (1994-10): Special Mobile Group (SMG); Work programme for the standardization of the Universal Mobile Telecommunications System (UMTS) +http://www.etsi.org/deliver/etsi_tcrtr/001_099/015/01_60/tcrtr_015e01p.pdf + + + + - d:etsi-tcrtr-016 etsi-tcrtr-016 @@ -48573,6 +50148,17 @@ http://www.etsi.org/deliver/etsi_tcrtr/001_099/017/01_60/tcrtr_017e01p.pdf +- +d:etsi-tcrtr-018 +etsi-tcrtr-018 +April 1994 +Published +ETSI TCRTR 018 ed.1 (1994-04): Private Telecommunication Network (PTN); General principles and service aspects +http://www.etsi.org/deliver/etsi_tcrtr/001_099/018/01_60/tcrtr_018e01p.pdf + + + + - d:etsi-tcrtr-019 etsi-tcrtr-019 @@ -48804,6 +50390,17 @@ http://www.etsi.org/deliver/etsi_tcrtr/001_099/040/01_60/tcrtr_040e01p.pdf +- +d:etsi-tcrtr-041 +etsi-tcrtr-041 +September 1995 +Published +ETSI TCRTR 041 ed.1 (1995-09): Business TeleCommunications (BTC); Corporate Telecommunications Networks (CN); Project plan +http://www.etsi.org/deliver/etsi_tcrtr/001_099/041/01_60/tcrtr_041e01p.pdf + + + + - d:etsi-tcrtr-042 etsi-tcrtr-042 @@ -49772,6 +51369,28 @@ http://www.etsi.org/deliver/etsi_tr/101100_101199/101183/01.01.01_60/tr_101183v0 +- +d:etsi-tr-101-184 +etsi-tr-101-184 +July 1998 +Published +ETSI TR 101 184 V1.1.1 (1998-07): 2-wire analogue voice band interfaces; Multiple line terminal equipment specific characteristics +http://www.etsi.org/deliver/etsi_tr/101100_101199/101184/01.01.01_60/tr_101184v010101p.pdf + + + + +- +d:etsi-tr-101-185 +etsi-tr-101-185 +December 1998 +Published +ETSI TR 101 185 V1.1.1 (1998-12): Terminal support interface for harmonized analogue PSTN terminals +http://www.etsi.org/deliver/etsi_tr/101100_101199/101185/01.01.01_60/tr_101185v010101p.pdf + + + + - d:etsi-tr-101-186 etsi-tr-101-186 @@ -49783,6 +51402,17 @@ http://www.etsi.org/deliver/etsi_tr/101100_101199/101186/06.00.00_60/tr_101186v0 +- +d:etsi-tr-101-188 +etsi-tr-101-188 +March 1999 +Published +ETSI TR 101 188 V1.1.1 (1999-03): Public Switched Telephone Network (PSTN); Network Termination Point (NTP) analogue interface; Specification of physical and electrical characteristics at a 2-wire analogue presented NTP for short to medium length loop applications +http://www.etsi.org/deliver/etsi_tr/101100_101199/101188/01.01.01_60/tr_101188v010101p.pdf + + + + - d:etsi-tr-101-190 etsi-tr-101-190 @@ -49882,6 +51512,17 @@ http://www.etsi.org/deliver/etsi_tr/101200_101299/101211/01.09.01_60/tr_101211v0 +- +d:etsi-tr-101-220 +etsi-tr-101-220 +July 1997 +Published +ETSI TR 101 220 V1.1.1 (1997-07): Integrated Circuit Cards (ICC); ETSI numbering system for telecommunication; Application providers (AID) +http://www.etsi.org/deliver/etsi_tr/101200_101299/101220/01.01.01_60/tr_101220v010101p.pdf + + + + - d:etsi-tr-101-221 etsi-tr-101-221 @@ -49904,6 +51545,17 @@ http://www.etsi.org/deliver/etsi_tr/101200_101299/101223/01.01.01_60/tr_101223v0 +- +d:etsi-tr-101-227 +etsi-tr-101-227 +July 1997 +Published +ETSI TR 101 227 V1.1.1 (1997-07): Integrated Circuit Cards (ICC); ETSI numbering system for telecommunication; ALgorithm IDentifiers (ALID) +http://www.etsi.org/deliver/etsi_tr/101200_101299/101227/01.01.01_60/tr_101227v010101p.pdf + + + + - d:etsi-tr-101-231 etsi-tr-101-231 @@ -49926,6 +51578,17 @@ http://www.etsi.org/deliver/etsi_tr/101200_101299/101233/01.01.01_60/tr_101233v0 +- +d:etsi-tr-101-262 +etsi-tr-101-262 +April 1998 +Published +ETSI TR 101 262 V1.1.1 (1998-04): ETSI drafting rules +http://www.etsi.org/deliver/etsi_tr/101200_101299/101262/01.01.01_60/tr_101262v010101p.pdf + + + + - d:etsi-tr-101-266 etsi-tr-101-266 @@ -51059,6 +52722,17 @@ http://www.etsi.org/deliver/etsi_tr/101600_101699/101631/08.00.00_60/tr_101631v0 +- +d:etsi-tr-101-632 +etsi-tr-101-632 +June 2000 +Published +ETSI TR 101 632 V7.0.0 (2000-06): Digital cellular telecommunications system (Phase 2+) (GSM); Interface protocols for the connection of Short Message Service Centres (SMSCs) to Short Message Entities (SMEs) (GSM 03.39 version 7.0.0 Release 1998) +http://www.etsi.org/deliver/etsi_tr/101600_101699/101632/07.00.00_60/tr_101632v070000p.pdf + + + + - d:etsi-tr-101-633 etsi-tr-101-633 @@ -51730,6 +53404,17 @@ http://www.etsi.org/deliver/etsi_tr/101800_101899/101844/01.01.01_60/tr_101844v0 +- +d:etsi-tr-101-845 +etsi-tr-101-845 +September 2000 +Published +ETSI TR 101 845 V1.1.1 (2000-09): Fixed Radio Systems; Technical Information on RF Interfaces applied by Fixed Service Systems including Fixed Wireless Access (FWA) in the light of the R&TTE Directive (Article 4.2) +http://www.etsi.org/deliver/etsi_tr/101800_101899/101845/01.01.01_60/tr_101845v010101p.pdf + + + + - d:etsi-tr-101-853 etsi-tr-101-853 @@ -51862,6 +53547,17 @@ http://www.etsi.org/deliver/etsi_tr/101800_101899/101874/01.01.01_60/tr_101874v0 +- +d:etsi-tr-101-876 +etsi-tr-101-876 +January 2001 +Published +ETSI TR 101 876 V1.1.1 (2001-01): Telecommunications security; Lawful Interception (LI); Description of GPRS HI3 +http://www.etsi.org/deliver/etsi_tr/101800_101899/101876/01.01.01_60/tr_101876v010101p.pdf + + + + - d:etsi-tr-101-877 etsi-tr-101-877 @@ -51994,6 +53690,17 @@ http://www.etsi.org/deliver/etsi_tr/101900_101999/101943/02.02.01_60/tr_101943v0 +- +d:etsi-tr-101-944 +etsi-tr-101-944 +December 2001 +Published +ETSI TR 101 944 V1.1.2 (2001-12): Telecommunications security; Lawful Interception (LI); Issues on IP Interception +http://www.etsi.org/deliver/etsi_tr/101900_101999/101944/01.01.02_60/tr_101944v010102p.pdf + + + + - d:etsi-tr-101-949 etsi-tr-101-949 @@ -52621,6 +54328,17 @@ http://www.etsi.org/deliver/etsi_tr/102000_102099/10203103/01.01.01_60/tr_102031 +- +d:etsi-tr-102-033 +etsi-tr-102-033 +April 2002 +Published +ETSI TR 102 033 V1.1.1 (2002-04): Digital Video Broadcasting (DVB); Architectural framework for the delivery of DVB-services over IP-based networks +http://www.etsi.org/deliver/etsi_tr/102000_102099/102033/01.01.01_60/tr_102033v010101p.pdf + + + + - d:etsi-tr-102-035 etsi-tr-102-035 @@ -53204,6 +54922,17 @@ http://www.etsi.org/deliver/etsi_tr/102100_102199/102180/01.05.01_60/tr_102180v0 +- +d:etsi-tr-102-182 +etsi-tr-102-182 +March 2006 +Published +ETSI TR 102 182 V1.1.1 (2006-03): Emergency Communications (EMTEL); Requirements for communications from authorities/organisations to the citizens during emergencies +http://www.etsi.org/deliver/etsi_tr/102100_102199/102182/01.01.01_60/tr_102182v010101p.pdf + + + + - d:etsi-tr-102-183 etsi-tr-102-183 @@ -55442,7 +57171,7 @@ d:etsi-tr-102-638 etsi-tr-102-638 June 2009 Published -ETSI TR 102 638 V1.1.1 (2009-06): Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Release 2 +ETSI TR 102 638 V1.1.1 (2009-06): Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Definitions http://www.etsi.org/deliver/etsi_tr/102600_102699/102638/01.01.01_60/tr_102638v010101p.pdf @@ -56955,6 +58684,28 @@ http://www.etsi.org/deliver/etsi_tr/103000_103099/1030000301/01.01.01_60/tr_1030 +- +d:etsi-tr-103-000-3-2 +etsi-tr-103-000-3-2 +August 2001 +Published +ETSI TR 103 000-3-2 V1.1.1 (2001-08): Access and Terminals (AT); Analogue Access to Public Telephone Networks; Advisory Notes to Standards Harmonizing Terminal Interface; Part 3: Country Specific Advisory Notes: Sub-Part 2: ATAAB Advisory Note AN019 for the Czech Republic Network; DTMF signalling: tone and pause duration +http://www.etsi.org/deliver/etsi_tr/103000_103099/1030000302/01.01.01_60/tr_1030000302v010101p.pdf + + + + +- +d:etsi-tr-103-000-3-3 +etsi-tr-103-000-3-3 +August 2001 +Published +ETSI TR 103 000-3-3 V1.1.1 (2001-08): Access and Terminals (AT); Analogue Access to Public Telephone Networks; Advisory Notes to Standards Harmonizing Terminal Interface; Part 3: Country Specific Advisory Notes; Sub-Part 3: ATAAB Advisory Note AN020 for the Czech Republic Network; Loop current characteristics (seizing the line) +http://www.etsi.org/deliver/etsi_tr/103000_103099/1030000303/01.01.01_60/tr_1030000303v010101p.pdf + + + + - d:etsi-tr-103-000-4-1 etsi-tr-103-000-4-1 @@ -59609,10 +61360,10 @@ http://www.etsi.org/deliver/etsi_tr/121900_121999/121904/03.05.00_60/tr_121904v0 - d:etsi-tr-121-905 etsi-tr-121-905 -March 2019 +July 2017 Published -ETSI TR 121 905 V15.1.0 (2019-03): Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); LTE; Vocabulary for 3GPP Specifications (3GPP TR 21.905 version 15.1.0 Release 15) -http://www.etsi.org/deliver/etsi_tr/121900_121999/121905/15.01.00_60/tr_121905v150100p.pdf +ETSI TR 121 905 V14.1.1 (2017-07): Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); LTE; Vocabulary for 3GPP Specifications (3GPP TR 21.905 version 14.1.1 Release 14) +http://www.etsi.org/deliver/etsi_tr/121900_121999/121905/14.01.01_60/tr_121905v140101p.pdf @@ -60464,6 +62215,17 @@ http://www.etsi.org/deliver/etsi_tr/125900_125999/125925/03.05.00_60/tr_125925v0 +- +d:etsi-tr-125-926 +etsi-tr-125-926 +September 2000 +Published +ETSI TR 125 926 V3.2.0 (2000-09): Universal Mobile Telecommunications System (UMTS); UE Radio Access Capabilities (3GPP TR 25.926 version 3.2.0 Release 1999) +http://www.etsi.org/deliver/etsi_tr/125900_125999/125926/03.02.00_60/tr_125926v030200p.pdf + + + + - d:etsi-tr-125-927 etsi-tr-125-927 @@ -61333,6 +63095,17 @@ http://www.etsi.org/deliver/etsi_tr/127900_127999/127903/04.00.00_60/tr_127903v0 +- +d:etsi-tr-128-820 +etsi-tr-128-820 +October 2014 +Published +ETSI TR 128 820 V12.0.0 (2014-10): Universal Mobile Telecommunications System (UMTS); LTE; Telecommunication management; Fixed Mobile Convergence (FMC) Federated Network Operation Model (FNOM) Umbrella Operation Model (UOM) (3GPP TR 28.820 version 12.0.0 Release 12) +http://www.etsi.org/deliver/etsi_tr/128800_128899/128820/12.00.00_60/tr_128820v120000p.pdf + + + + - d:etsi-tr-129-903 etsi-tr-129-903 @@ -61553,6 +63326,17 @@ http://www.etsi.org/deliver/etsi_tr/131900_131999/131970/15.00.00_60/tr_131970v1 +- +d:etsi-tr-132-800 +etsi-tr-132-800 +July 2001 +Published +ETSI TR 132 800 V4.0.0 (2001-07): Universal Mobile Telecommunications System (UMTS); Management level procedures and interaction with UTRAN (3GPP TR 32.800 version 4.0.0 Release 4) +http://www.etsi.org/deliver/etsi_tr/132800_132899/132800/04.00.00_60/tr_132800v040000p.pdf + + + + - d:etsi-tr-132-816 etsi-tr-132-816 @@ -61732,10 +63516,10 @@ http://www.etsi.org/deliver/etsi_tr/133900_133999/133969/15.00.00_60/tr_133969v1 - d:etsi-tr-133-978 etsi-tr-133-978 -June 2007 +February 2009 Published -ETSI TR 133 978 V7.0.0 (2007-06): Universal Mobile Telecommunications System (UMTS); Security aspects of early IP Multimedia Subsystem (IMS) (3GPP TR 33.978 version 7.0.0 Release 7) -http://www.etsi.org/deliver/etsi_tr/133900_133999/133978/07.00.00_60/tr_133978v070000p.pdf +ETSI TR 133 978 V8.0.0 (2009-02): Universal Mobile Telecommunications System (UMTS); LTE; Security aspects of early IP Multimedia Subsystem (IMS) (3GPP TR 33.978 version 8.0.0 Release 8) +http://www.etsi.org/deliver/etsi_tr/133900_133999/133978/08.00.00_60/tr_133978v080000p.pdf @@ -62227,10 +64011,10 @@ http://www.etsi.org/deliver/etsi_tr/143000_143099/143030/15.00.00_60/tr_143030v1 - d:etsi-tr-143-055 etsi-tr-143-055 -July 2001 +August 2003 Published -ETSI TR 143 055 V4.0.0 (2001-07): Digital cellular telecommunications system (Phase 2+); Dual Transfer Mode (DTM); Stage 2 (3GPP TR 43.055 version 4.0.0 Release 4) -http://www.etsi.org/deliver/etsi_tr/143000_143099/143055/04.00.00_60/tr_143055v040000p.pdf +ETSI TR 143 055 V8.1.0 (2003-08): Digital cellular telecommunications system (Phase 2+); Dual Transfer Mode (DTM); Stage 2 (3GPP TR 03.55 version 8.1.0 Release 1999) +http://www.etsi.org/deliver/etsi_tr/143000_143099/143055/08.01.00_60/tr_143055v080100p.pdf @@ -62455,6 +64239,17 @@ http://www.etsi.org/deliver/etsi_tr/149900_149999/149995/15.00.00_60/tr_149995v1 +- +d:etsi-tr-150-059 +etsi-tr-150-059 +August 2001 +Published +ETSI TR 150 059 V4.0.1 (2001-08): Digital cellular telecommunications system (Phase 2+); Enhanced Data rates for GSM Evolution (EDGE); Project scheduling and open issues (3GPP TR 50.059 version 4.0.1 Release 4) +http://www.etsi.org/deliver/etsi_tr/150000_150099/150059/04.00.01_60/tr_150059v040001p.pdf + + + + - d:etsi-tr-155-919 etsi-tr-155-919 @@ -63225,6 +65020,17 @@ http://www.etsi.org/deliver/etsi_ts/100300_100399/10039216/01.02.01_60/ts_100392 +- +d:etsi-ts-100-392-17 +etsi-ts-100-392-17 +May 2001 +Published +ETSI TS 100 392-17 V1.1.1 (2001-05): Terrestrial Trunked Radio (TETRA); Voice plus Data (V+D); Part 17: TETRA V+D and DMO Release 1.1 specifications +http://www.etsi.org/deliver/etsi_ts/100300_100399/10039217/01.01.01_60/ts_10039217v010101p.pdf + + + + - d:etsi-ts-100-392-18-1 etsi-ts-100-392-18-1 @@ -65216,6 +67022,17 @@ http://www.etsi.org/deliver/etsi_ts/101000_101099/10106402/01.01.01_60/ts_101064 +- +d:etsi-ts-101-071 +etsi-ts-101-071 +July 1998 +Published +ETSI TS 101 071 V1.1.2 (1998-07): Public Switched Telephone Network (PSTN); Protocol over the local loop for display services; Server Display and Script Services (SDSS) +http://www.etsi.org/deliver/etsi_ts/101000_101099/101071/01.01.02_60/ts_101071v010102p.pdf + + + + - d:etsi-ts-101-086 etsi-ts-101-086 @@ -65263,10 +67080,10 @@ http://www.etsi.org/deliver/etsi_ts/101100_101199/101106/08.00.00_60/ts_101106v0 - d:etsi-ts-101-107 etsi-ts-101-107 -August 1999 +June 2001 Published -ETSI TS 101 107 V7.1.1 (1999-08): Digital cellular telecommunications system (Phase 2+) (GSM); Fraud Information Gathering System (FIGS); Service description - Stage 1 (GSM 02.31 version 7.1.1 Release 1998) -http://www.etsi.org/deliver/etsi_ts/101100_101199/101107/07.01.01_60/ts_101107v070101p.pdf +ETSI TS 101 107 V8.0.1 (2001-06): Digital cellular telecommunications system (Phase 2+); Fraud Information Gathering System (FIGS); Service description - Stage 1 (GSM 02.31 version 8.0.1 Release 1999) +http://www.etsi.org/deliver/etsi_ts/101100_101199/101107/08.00.01_60/ts_101107v080001p.pdf @@ -65359,6 +67176,17 @@ http://www.etsi.org/deliver/etsi_ts/101100_101199/101154/01.11.01_60/ts_101154v0 +- +d:etsi-ts-101-157 +etsi-ts-101-157 +January 1998 +Published +ETSI TS 101 157 V6.0.0 (1998-01): Digital cellular telecommunications system (Phase 2+) (GSM); Physical layer on the radio path; General description (GSM 05.01 version 6.0.0) +http://www.etsi.org/deliver/etsi_ts/101100_101199/101157/06.00.00_60/ts_101157v060000p.pdf + + + + - d:etsi-ts-101-158 etsi-ts-101-158 @@ -65403,6 +67231,17 @@ http://www.etsi.org/deliver/etsi_ts/101100_101199/101181/08.09.00_60/ts_101181v0 +- +d:etsi-ts-101-187 +etsi-ts-101-187 +December 1998 +Published +ETSI TS 101 187 V1.1.1 (1998-12): 2-wire analogue voice band interfaces; Loop Disconnect Signalling Specific Requirements +http://www.etsi.org/deliver/etsi_ts/101100_101199/101187/01.01.01_60/ts_101187v010101p.pdf + + + + - d:etsi-ts-101-191 etsi-ts-101-191 @@ -65414,6 +67253,17 @@ http://www.etsi.org/deliver/etsi_ts/101100_101199/101191/01.04.01_60/ts_101191v0 +- +d:etsi-ts-101-192 +etsi-ts-101-192 +December 1997 +Published +ETSI TS 101 192 V1.2.1 (1997-12): Digital Video Broadcasting (DVB); DVB specification for data broadcasting +http://www.etsi.org/deliver/etsi_ts/101100_101199/101192/01.02.01_60/ts_101192v010201p.pdf + + + + - d:etsi-ts-101-197 etsi-ts-101-197 @@ -65634,6 +67484,50 @@ http://www.etsi.org/deliver/etsi_ts/101200_101299/101231/01.03.01_60/ts_101231v0 +- +d:etsi-ts-101-235-1 +etsi-ts-101-235-1 +May 2000 +Published +ETSI TS 101 235-1 V1.1.1 (2000-05): Specification of Dual Tone Multi-Frequency (DTMF) Transmitters and Receivers; Part 1: General +http://www.etsi.org/deliver/etsi_ts/101200_101299/10123501/01.01.01_60/ts_10123501v010101p.pdf + + + + +- +d:etsi-ts-101-235-2 +etsi-ts-101-235-2 +May 2000 +Published +ETSI TS 101 235-2 V1.1.1 (2000-05): Specification of Dual Tone Multi-Frequency (DTMF) Transmitters and Receivers; Part 2: Transmitters +http://www.etsi.org/deliver/etsi_ts/101200_101299/10123502/01.01.01_60/ts_10123502v010101p.pdf + + + + +- +d:etsi-ts-101-235-3 +etsi-ts-101-235-3 +May 2000 +Published +ETSI TS 101 235-3 V1.1.1 (2000-05): Specification of Dual Tone Multi-Frequency (DTMF) Transmitters and Receivers; Part 3: Receivers +http://www.etsi.org/deliver/etsi_ts/101200_101299/10123503/01.01.01_60/ts_10123503v010101p.pdf + + + + +- +d:etsi-ts-101-235-4 +etsi-ts-101-235-4 +May 2000 +Published +ETSI TS 101 235-4 V1.1.1 (2000-05): Specification of Dual Tone Multi-Frequency (DTMF) Transmitters and Receivers; Part 4: Receivers for use in Terminal Equipment for end-to-end signalling +http://www.etsi.org/deliver/etsi_ts/101200_101299/10123504/01.01.01_60/ts_10123504v010101p.pdf + + + + - d:etsi-ts-101-243 etsi-ts-101-243 @@ -67694,10 +69588,10 @@ http://www.etsi.org/deliver/etsi_ts/101400_101499/10149803/02.01.01_60/ts_101498 - d:etsi-ts-101-499 etsi-ts-101-499 -January 2015 +May 2013 Published -ETSI TS 101 499 V3.1.1 (2015-01): Hybrid Digital Radio (DAB, DRM, RadioDNS); SlideShow; User Application Specification -http://www.etsi.org/deliver/etsi_ts/101400_101499/101499/03.01.01_60/ts_101499v030101p.pdf +ETSI TS 101 499 V2.3.1 (2013-05): Digital Audio Broadcasting (DAB); MOT SlideShow; User Application Specification +http://www.etsi.org/deliver/etsi_ts/101400_101499/101499/02.03.01_60/ts_101499v020301p.pdf @@ -68948,10 +70842,10 @@ http://www.etsi.org/deliver/etsi_ts/101700_101799/101741/07.01.00_60/ts_101741v0 - d:etsi-ts-101-745 etsi-ts-101-745 -August 1999 +April 2000 Published -ETSI TS 101 745 V7.2.1 (1999-08): Digital cellular telecommunications system (Phase 2+) (GSM); Call Deflection Service description, Stage 1 (GSM 02.72 version 7.2.1 Release 1998) -http://www.etsi.org/deliver/etsi_ts/101700_101799/101745/07.02.01_60/ts_101745v070201p.pdf +ETSI TS 101 745 V8.0.0 (2000-04): Digital cellular telecommunications system (Phase 2+) (GSM); Noise suppression for the AMR codec; Service description; Stage 1 (GSM 02.76 version 8.0.0 Release 1999) +http://www.etsi.org/deliver/etsi_ts/101700_101799/101745/08.00.00_60/ts_101745v080000p.pdf @@ -69011,6 +70905,17 @@ http://www.etsi.org/deliver/etsi_ts/101700_101799/101757/01.01.01_60/ts_101757v0 +- +d:etsi-ts-101-758 +etsi-ts-101-758 +July 2000 +Published +ETSI TS 101 758 V1.1.1 (2000-07): Digital Audio Broadcasting (DAB); Signal strengths and receiver parameters; Targets for typical operation +http://www.etsi.org/deliver/etsi_ts/101700_101799/101758/01.01.01_60/ts_101758v010101p.pdf + + + + - d:etsi-ts-101-759 etsi-ts-101-759 @@ -70485,6 +72390,17 @@ http://www.etsi.org/deliver/etsi_ts/101900_101999/10190912/01.01.01_60/ts_101909 +- +d:etsi-ts-101-909-13 +etsi-ts-101-909-13 +September 2001 +Published +ETSI TS 101 909-13 V1.1.1 (2001-09): Access and Terminals (AT); Digital Broadband Cable Access to the Public Telecommunications Network; IP Multimedia Time Critical Services; Part 13: Trunking Gateway Control Protocol +http://www.etsi.org/deliver/etsi_ts/101900_101999/10190913/01.01.01_60/ts_10190913v010101p.pdf + + + + - d:etsi-ts-101-909-13-1 etsi-ts-101-909-13-1 @@ -70826,6 +72742,61 @@ http://www.etsi.org/deliver/etsi_ts/101900_101999/10195201/01.01.01_60/ts_101952 +- +d:etsi-ts-101-952-1-1 +etsi-ts-101-952-1-1 +December 2004 +Published +ETSI TS 101 952-1-1 V1.2.1 (2004-12): Access network xDSL transmission filters; Part 1: ADSL splitters for European deployment; Sub-part 1: Generic specification of the low pass part of DSL over POTS splitters including dedicated annexes for specific xDSL variants +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520101/01.02.01_60/ts_1019520101v010201p.pdf + + + + +- +d:etsi-ts-101-952-1-2 +etsi-ts-101-952-1-2 +May 2002 +Published +ETSI TS 101 952-1-2 V1.1.1 (2002-05): Access network xDSL transmission filters; Part 1: ADSL splitters for European deployment; Sub-part 2: Specification of the high pass part of ADSL/POTS splitters +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520102/01.01.01_60/ts_1019520102v010101p.pdf + + + + +- +d:etsi-ts-101-952-1-3 +etsi-ts-101-952-1-3 +May 2002 +Published +ETSI TS 101 952-1-3 V1.1.1 (2002-05): Access network xDSL transmission filters; Part 1: ADSL splitters for European deployment; Sub-part 3: Specification of ADSL/ISDN splitters +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520103/01.01.01_60/ts_1019520103v010101p.pdf + + + + +- +d:etsi-ts-101-952-1-4 +etsi-ts-101-952-1-4 +November 2002 +Published +ETSI TS 101 952-1-4 V1.1.1 (2002-11): Access network xDSL transmission filters; Part 1: ADSL splitters for European deployment; Sub-part 4: Specification of ADSL over "ISDN or POTS" universal splitters +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520104/01.01.01_60/ts_1019520104v010101p.pdf + + + + +- +d:etsi-ts-101-952-1-5 +etsi-ts-101-952-1-5 +October 2006 +Published +ETSI TS 101 952-1-5 V1.2.1 (2006-10): Access network xDSL transmission filters; Part 1: ADSL splitters for European deployment; Sub-part 5: Specification for ADSL over POTS distributed filters +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520105/01.02.01_60/ts_1019520105v010201p.pdf + + + + - d:etsi-ts-101-952-2 etsi-ts-101-952-2 @@ -70837,6 +72808,39 @@ http://www.etsi.org/deliver/etsi_ts/101900_101999/10195202/01.01.01_60/ts_101952 +- +d:etsi-ts-101-952-2-1 +etsi-ts-101-952-2-1 +November 2002 +Published +ETSI TS 101 952-2-1 V1.1.1 (2002-11): Access network xDSL transmission filters; Part 2: ADSL splitters for European deployment; Sub-part 1: Generic specification of the low pass part of DSL over POTS splitters including dedicated annexes for specific xDSL variants +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520201/01.01.01_60/ts_1019520201v010101p.pdf + + + + +- +d:etsi-ts-101-952-2-2 +etsi-ts-101-952-2-2 +March 2003 +Published +ETSI TS 101 952-2-2 V1.1.1 (2003-03): Access network xDSL transmission filters; Part 2: VDSL splitters for European deployment; Sub-part 2: Specification of the high pass part of VDSL/POTS splitters for use at the Local Exchange (LE) and the user side near the Network Terminaltion Point (NTP) +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520202/01.01.01_60/ts_1019520202v010101p.pdf + + + + +- +d:etsi-ts-101-952-2-3 +etsi-ts-101-952-2-3 +March 2003 +Published +ETSI TS 101 952-2-3 V1.1.1 (2003-03): Access network xDSL trasmission filters; Part 2: VDSL splitters for European deployment; Sub-part3: Specification of VDSL/ISDN splitters for use at the Local Exchange (LE) and the user side near the Network Termination Point (NTP) +http://www.etsi.org/deliver/etsi_ts/101900_101999/1019520203/01.01.01_60/ts_1019520203v010101p.pdf + + + + - d:etsi-ts-101-952-3 etsi-ts-101-952-3 @@ -70925,6 +72929,17 @@ http://www.etsi.org/deliver/etsi_ts/101900_101999/101968/01.03.01_60/ts_101968v0 +- +d:etsi-ts-101-969 +etsi-ts-101-969 +May 2001 +Published +ETSI TS 101 969 V1.1.1 (2001-05): Methods for Testing and Specification (MTS); Abstract Syntax Notation One (ASN.1) encoding rules; Specification of Encoding Control Notation (ECN) [Draft ITU-T Recommendation X.692] +http://www.etsi.org/deliver/etsi_ts/101900_101999/101969/01.01.01_60/ts_101969v010101p.pdf + + + + - d:etsi-ts-101-974 etsi-ts-101-974 @@ -71079,6 +73094,17 @@ http://www.etsi.org/deliver/etsi_ts/102000_102099/102006/01.04.01_60/ts_102006v0 +- +d:etsi-ts-102-006-1 +etsi-ts-102-006-1 +December 2001 +Published +ETSI TS 102 006-1 V1.1.1 (2001-12): Digital Video Broadcasting (DVB); DVB Data Download Specification; Part 1: Simple Profile +http://www.etsi.org/deliver/etsi_ts/102000_102099/10200601/01.01.01_60/ts_10200601v010101p.pdf + + + + - d:etsi-ts-102-011-1 etsi-ts-102-011-1 @@ -72091,6 +74117,17 @@ http://www.etsi.org/deliver/etsi_ts/102100_102199/10219202/01.01.01_60/ts_102192 +- +d:etsi-ts-102-201 +etsi-ts-102-201 +January 2005 +Published +ETSI TS 102 201 V1.2.1 (2005-01): Digital Video Broadcasting (DVB); Interfaces for DVB Integrated Receiver Decoder (DVB-IRD) +http://www.etsi.org/deliver/etsi_ts/102200_102299/102201/01.02.01_60/ts_102201v010201p.pdf + + + + - d:etsi-ts-102-204 etsi-ts-102-204 @@ -72347,10 +74384,10 @@ http://www.etsi.org/deliver/etsi_ts/102200_102299/10223203/02.03.01_60/ts_102232 - d:etsi-ts-102-232-4 etsi-ts-102-232-4 -August 2017 -Published -ETSI TS 102 232-4 V3.4.1 (2017-08): Lawful Interception (LI); Handover Interface and Service-Specific Details (SSD) for IP delivery; Part 4: Service-specific details for Layer 2 services -http://www.etsi.org/deliver/etsi_ts/102200_102299/10223204/03.04.01_60/ts_10223204v030401p.pdf +August 2010 +Historical +ETSI TS 102 232-4 V2.3.1 (2010-08): Lawful Interception (LI); Handover Interface and Service-Specific Details (SSD) for IP delivery; Part 4: Service-specific details for Layer 2 services +http://www.etsi.org/deliver/etsi_ts/102200_102299/10223204/02.03.01_60/ts_10223204v020301p.pdf @@ -72369,10 +74406,10 @@ http://www.etsi.org/deliver/etsi_ts/102200_102299/10223205/02.05.01_60/ts_102232 - d:etsi-ts-102-232-6 etsi-ts-102-232-6 -March 2014 -Published -ETSI TS 102 232-6 V3.3.1 (2014-03): Lawful Interception (LI); Handover Interface and Service-Specific Details (SSD) for IP delivery; Part 6: Service-specific details for PSTN/ISDN services -http://www.etsi.org/deliver/etsi_ts/102200_102299/10223206/03.03.01_60/ts_10223206v030301p.pdf +August 2008 +Historical +ETSI TS 102 232-6 V2.3.1 (2008-08): Lawful Interception (LI); Handover Interface and Service-Specific Details (SSD) for IP delivery; Part 6: Service-specific details for PSTN/ISDN services +http://www.etsi.org/deliver/etsi_ts/102200_102299/10223206/02.03.01_60/ts_10223206v020301p.pdf @@ -72872,6 +74909,17 @@ http://www.etsi.org/deliver/etsi_ts/102300_102399/102323/01.05.01_60/ts_102323v0 +- +d:etsi-ts-102-329 +etsi-ts-102-329 +June 2007 +Published +ETSI TS 102 329 V1.2.1 (2007-06): Fixed Radio Systems; Point-to-Point equipment; Radio equipment and antennas for use in Point-to-Point High Density applications in the Fixed Services (HDFS) frequency band 64 GHz to 66 GHz +http://www.etsi.org/deliver/etsi_ts/102300_102399/102329/01.02.01_60/ts_102329v010201p.pdf + + + + - d:etsi-ts-102-330 etsi-ts-102-330 @@ -73128,10 +75176,10 @@ http://www.etsi.org/deliver/etsi_ts/102300_102399/102359/01.02.01_60/ts_102359v0 - d:etsi-ts-102-361-1 etsi-ts-102-361-1 -October 2017 +December 2007 Published -ETSI TS 102 361-1 V2.5.1 (2017-10): Electromagnetic compatibility and Radio spectrum Matters (ERM); Digital Mobile Radio (DMR) Systems; Part 1: DMR Air Interface (AI) protocol -http://www.etsi.org/deliver/etsi_ts/102300_102399/10236101/02.05.01_60/ts_10236101v020501p.pdf +ETSI TS 102 361-1 V1.4.5 (2007-12): Electromagnetic compatibility and Radio spectrum Matters (ERM); Digital Mobile Radio (DMR) Systems; Part 1: DMR Air Interface (AI) protocol +http://www.etsi.org/deliver/etsi_ts/102300_102399/10236101/01.04.05_60/ts_10236101v010405p.pdf @@ -73139,10 +75187,10 @@ http://www.etsi.org/deliver/etsi_ts/102300_102399/10236101/02.05.01_60/ts_102361 - d:etsi-ts-102-361-2 etsi-ts-102-361-2 -October 2017 +December 2007 Published -ETSI TS 102 361-2 V2.4.1 (2017-10): Electromagnetic compatibility and Radio spectrum Matters (ERM); Digital Mobile Radio (DMR) Systems; Part 2: DMR voice and generic services and facilities -http://www.etsi.org/deliver/etsi_ts/102300_102399/10236102/02.04.01_60/ts_10236102v020401p.pdf +ETSI TS 102 361-2 V1.2.6 (2007-12): Electromagnetic compatibility and Radio spectrum Matters (ERM); Digital Mobile Radio (DMR) Systems; Part 2: DMR voice and generic services and facilities +http://www.etsi.org/deliver/etsi_ts/102300_102399/10236102/01.02.06_60/ts_10236102v010206p.pdf @@ -73260,10 +75308,10 @@ http://www.etsi.org/deliver/etsi_ts/102300_102399/102369/01.01.01_60/ts_102369v0 - d:etsi-ts-102-371 etsi-ts-102-371 -May 2016 +July 2008 Published -ETSI TS 102 371 V3.2.1 (2016-05): Digital Audio Broadcasting (DAB); Digital Radio Mondiale (DRM); Transportation and Binary Encoding Specification for Service and Programme Information (SPI) -http://www.etsi.org/deliver/etsi_ts/102300_102399/102371/03.02.01_60/ts_102371v030201p.pdf +ETSI TS 102 371 V1.3.1 (2008-07): Digital Audio Broadcasting (DAB); Digital Radio Mondiale (DRM); Transportation and Binary Encoding Specification for Electronic Programme Guide (EPG) +http://www.etsi.org/deliver/etsi_ts/102300_102399/102371/01.03.01_60/ts_102371v010301p.pdf @@ -74038,6 +76086,17 @@ http://www.etsi.org/deliver/etsi_ts/102500_102599/102523/01.01.01_60/ts_102523v0 +- +d:etsi-ts-102-524 +etsi-ts-102-524 +July 2006 +Published +ETSI TS 102 524 V1.1.1 (2006-07): Fixed Radio Systems; Point-to-Point equipment; Radio equipment and antennas for use in Point-to-Point Millimetre wave applications in the Fixed Services (mmwFS) frequency bands 71 GHz to 76 GHz and 81 GHz to 86 GHz +http://www.etsi.org/deliver/etsi_ts/102500_102599/102524/01.01.01_60/ts_102524v010101p.pdf + + + + - d:etsi-ts-102-527-1 etsi-ts-102-527-1 @@ -74313,6 +76372,17 @@ http://www.etsi.org/deliver/etsi_ts/102500_102599/102559/01.01.01_60/ts_102559v0 +- +d:etsi-ts-102-562 +etsi-ts-102-562 +March 2007 +Published +ETSI TS 102 562 V1.1.1 (2007-03): Electromagnetic compatibility and Radio spectrum Matters (ERM); Improved spectrum efficiency for RFID in the UHF Band +http://www.etsi.org/deliver/etsi_ts/102500_102599/102562/01.01.01_60/ts_102562v010101p.pdf + + + + - d:etsi-ts-102-563 etsi-ts-102-563 @@ -75611,6 +77681,28 @@ http://www.etsi.org/deliver/etsi_ts/102700_102799/10272106/01.02.01_60/ts_102721 +- +d:etsi-ts-102-722-1 +etsi-ts-102-722-1 +March 2010 +Published +ETSI TS 102 722-1 V2.1.1 (2010-03): Technical Committee for IMS Network Testing (INT); Originating Identification Presentation (OIP) and Originating Identification Restriction (OIR); Part 1: Protocol Implementation Conformance Statement (PICS) +http://www.etsi.org/deliver/etsi_ts/102700_102799/10272201/02.01.01_60/ts_10272201v020101p.pdf + + + + +- +d:etsi-ts-102-722-2 +etsi-ts-102-722-2 +March 2010 +Published +ETSI TS 102 722-2 V2.1.1 (2010-03): Technical Committee for IMS Network Testing (INT); Originating Identification Presentation (OIP) and Originating Identification Restriction (OIR); Part 2: Test Suite Structure and Test Purposes (TSS&TP) +http://www.etsi.org/deliver/etsi_ts/102700_102799/10272202/02.01.01_60/ts_10272202v020101p.pdf + + + + - d:etsi-ts-102-723-1 etsi-ts-102-723-1 @@ -76117,6 +78209,17 @@ http://www.etsi.org/deliver/etsi_ts/102700_102799/102773/01.04.01_60/ts_102773v0 +- +d:etsi-ts-102-778 +etsi-ts-102-778 +April 2009 +Published +ETSI TS 102 778 V1.1.1 (2009-04): Electronic Signatures and Infrastructures (ESI); PDF Advanced Electronic Signature Profiles; CMS Profile based on ISO 32000-1 +http://www.etsi.org/deliver/etsi_ts/102700_102799/102778/01.01.01_60/ts_102778v010101p.pdf + + + + - d:etsi-ts-102-778-1 etsi-ts-102-778-1 @@ -77052,6 +79155,17 @@ http://www.etsi.org/deliver/etsi_ts/102800_102899/102866/01.01.01_60/ts_102866v0 +- +d:etsi-ts-102-867 +etsi-ts-102-867 +June 2012 +Published +ETSI TS 102 867 V1.1.1 (2012-06): Intelligent Transport Systems (ITS); Security; Stage 3 mapping for IEEE 1609.2 +http://www.etsi.org/deliver/etsi_ts/102800_102899/102867/01.01.01_60/ts_102867v010101p.pdf + + + + - d:etsi-ts-102-868-1 etsi-ts-102-868-1 @@ -77437,6 +79551,17 @@ http://www.etsi.org/deliver/etsi_ts/102900_102999/102905/02.01.01_60/ts_102905v0 +- +d:etsi-ts-102-913 +etsi-ts-102-913 +November 2002 +Published +ETSI TS 102 913 V1.1.1 (2002-11): Access and Terminals (AT); POTS requirements applicable to ADSL modems when connected to an analogue presented PSTN line +http://www.etsi.org/deliver/etsi_ts/102900_102999/102913/01.01.01_60/ts_102913v010101p.pdf + + + + - d:etsi-ts-102-916-1 etsi-ts-102-916-1 @@ -77932,6 +80057,39 @@ http://www.etsi.org/deliver/etsi_ts/102900_102999/102995/01.01.01_60/ts_102995v0 +- +d:etsi-ts-103-021-1 +etsi-ts-103-021-1 +May 2004 +Published +ETSI TS 103 021-1 V1.2.1 (2004-05): Access and Terminals (AT); Harmonized basic attachment requirements for Terminals for connection to analogue interfaces of the Telephone Networks; Update of the technical contents of TBR 021, EN 301 437, TBR 015, TBR 017; Part 1: General aspects +http://www.etsi.org/deliver/etsi_ts/103000_103099/10302101/01.02.01_60/ts_10302101v010201p.pdf + + + + +- +d:etsi-ts-103-021-2 +etsi-ts-103-021-2 +November 2004 +Published +ETSI TS 103 021-2 V1.2.2 (2004-11): Access and Terminals (AT); Harmonized basic attachment requirements for Terminals for connection to analogue interfaces of the Telephone Networks; Update of the technical contents of TBR 021, EN 301 437, TBR 015, TBR 017; Part 2: Basic transmission and protection of the network from harm +http://www.etsi.org/deliver/etsi_ts/103000_103099/10302102/01.02.02_60/ts_10302102v010202p.pdf + + + + +- +d:etsi-ts-103-021-3 +etsi-ts-103-021-3 +September 2003 +Published +ETSI TS 103 021-3 V1.1.2 (2003-09): Access and Terminals (AT); Harmonized basic attachment requirements for Terminals for connection to analogue interfaces of the Telephone Networks; Update of the technical contents of TBR 21, EN 301 437, TBR 15, TBR 17; Part 3: Basic Interworking with the Public Telephone Network +http://www.etsi.org/deliver/etsi_ts/103000_103099/10302103/01.01.02_60/ts_10302103v010102p.pdf + + + + - d:etsi-ts-103-029 etsi-ts-103-029 @@ -77998,6 +80156,17 @@ http://www.etsi.org/deliver/etsi_ts/103000_103099/103085/01.01.01_60/ts_103085v0 +- +d:etsi-ts-103-090 +etsi-ts-103-090 +April 2012 +Published +ETSI TS 103 090 V1.1.1 (2012-04): Electronic Signatures and Infrastructures (ESI); Conformity Assessment for Trust Service Providers issuing Extended Validation Certificates +http://www.etsi.org/deliver/etsi_ts/103000_103099/103090/01.01.01_60/ts_103090v010101p.pdf + + + + - d:etsi-ts-103-092 etsi-ts-103-092 @@ -80368,7 +82537,7 @@ d:etsi-ts-103-500 etsi-ts-103-500 December 2018 Published -ETSI TS 103 500 V14.0.0 (2018-12): Smart Cards; Embedded UICC; Profile Package (Release 14) +ETSI TS 103 500 V14.0.0 (2018-12): <empty> http://www.etsi.org/deliver/etsi_ts/103500_103599/103500/14.00.00_60/ts_103500v140000p.pdf @@ -81529,6 +83698,28 @@ http://www.etsi.org/deliver/etsi_ts/119100_119199/11910202/01.02.01_60/ts_119102 +- +d:etsi-ts-119-122-1 +etsi-ts-119-122-1 +July 2015 +Published +ETSI TS 119 122-1 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); CAdES digital signatures; Part 1: Building blocks and CAdES baseline signatures +http://www.etsi.org/deliver/etsi_ts/119100_119199/11912201/01.00.01_60/ts_11912201v010001p.pdf + + + + +- +d:etsi-ts-119-122-2 +etsi-ts-119-122-2 +July 2015 +Published +ETSI TS 119 122-2 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); CAdES digital signatures; Part 2: Extended CAdES signatures +http://www.etsi.org/deliver/etsi_ts/119100_119199/11912202/01.00.01_60/ts_11912202v010001p.pdf + + + + - d:etsi-ts-119-122-3 etsi-ts-119-122-3 @@ -81584,6 +83775,28 @@ http://www.etsi.org/deliver/etsi_ts/119100_119199/11912405/01.01.01_60/ts_119124 +- +d:etsi-ts-119-132-1 +etsi-ts-119-132-1 +July 2015 +Published +ETSI TS 119 132-1 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); XAdES digital signatures; Part 1: Building blocks and XAdES baseline signatures +http://www.etsi.org/deliver/etsi_ts/119100_119199/11913201/01.00.01_60/ts_11913201v010001p.pdf + + + + +- +d:etsi-ts-119-132-2 +etsi-ts-119-132-2 +July 2015 +Published +ETSI TS 119 132-2 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); XAdES digital signatures; Part 2: Extended XAdES signatures +http://www.etsi.org/deliver/etsi_ts/119100_119199/11913202/01.00.01_60/ts_11913202v010001p.pdf + + + + - d:etsi-ts-119-134-2 etsi-ts-119-134-2 @@ -81628,6 +83841,28 @@ http://www.etsi.org/deliver/etsi_ts/119100_119199/11913405/02.01.01_60/ts_119134 +- +d:etsi-ts-119-142-1 +etsi-ts-119-142-1 +July 2015 +Published +ETSI TS 119 142-1 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); PAdES digital signatures; Part 1: Building blocks and PAdES baseline signatures +http://www.etsi.org/deliver/etsi_ts/119100_119199/11914201/01.00.01_60/ts_11914201v010001p.pdf + + + + +- +d:etsi-ts-119-142-2 +etsi-ts-119-142-2 +July 2015 +Published +ETSI TS 119 142-2 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); PAdES digital signatures; Part 2: Additional PAdES signatures profiles +http://www.etsi.org/deliver/etsi_ts/119100_119199/11914202/01.00.01_60/ts_11914202v010001p.pdf + + + + - d:etsi-ts-119-142-3 etsi-ts-119-142-3 @@ -81683,6 +83918,28 @@ http://www.etsi.org/deliver/etsi_ts/119100_119199/11914405/01.01.01_60/ts_119144 +- +d:etsi-ts-119-162-1 +etsi-ts-119-162-1 +August 2015 +Published +ETSI TS 119 162-1 V1.0.1 (2015-08): Electronic Signatures and Infrastructures (ESI); Associated Signature Containers (ASiC); Part 1: Building blocks and ASiC baseline containers +http://www.etsi.org/deliver/etsi_ts/119100_119199/11916201/01.00.01_60/ts_11916201v010001p.pdf + + + + +- +d:etsi-ts-119-162-2 +etsi-ts-119-162-2 +August 2015 +Published +ETSI TS 119 162-2 V1.0.1 (2015-08): Electronic Signatures and Infrastructures (ESI); Associated Signature Containers (ASiC); Part 2: Additional ASiC containers +http://www.etsi.org/deliver/etsi_ts/119100_119199/11916202/01.00.01_60/ts_11916202v010001p.pdf + + + + - d:etsi-ts-119-164-2 etsi-ts-119-164-2 @@ -81749,6 +84006,28 @@ http://www.etsi.org/deliver/etsi_ts/119300_119399/119312/01.03.01_60/ts_119312v0 +- +d:etsi-ts-119-401 +etsi-ts-119-401 +July 2015 +Published +ETSI TS 119 401 V2.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); General Policy Requirements for Trust Service Providers +http://www.etsi.org/deliver/etsi_ts/119400_119499/119401/02.00.01_60/ts_119401v020001p.pdf + + + + +- +d:etsi-ts-119-403 +etsi-ts-119-403 +August 2015 +Published +ETSI TS 119 403 V2.2.1 (2015-08): Electronic Signatures and Infrastructures (ESI); Trust Service Provider Conformity Assessment - Requirements for conformity assessment bodies assessing Trust Service Providers +http://www.etsi.org/deliver/etsi_ts/119400_119499/119403/02.02.01_60/ts_119403v020201p.pdf + + + + - d:etsi-ts-119-403-2 etsi-ts-119-403-2 @@ -81771,6 +84050,28 @@ http://www.etsi.org/deliver/etsi_ts/119400_119499/11940303/01.01.01_60/ts_119403 +- +d:etsi-ts-119-411-1 +etsi-ts-119-411-1 +July 2015 +Published +ETSI TS 119 411-1 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); Policy and security requirements for Trust Service Providers issuing certificates; Part 1: General requirements +http://www.etsi.org/deliver/etsi_ts/119400_119499/11941101/01.00.01_60/ts_11941101v010001p.pdf + + + + +- +d:etsi-ts-119-411-2 +etsi-ts-119-411-2 +July 2015 +Published +ETSI TS 119 411-2 V2.0.7 (2015-07): Electronic Signatures and Infrastructures (ESI); Policy and security requirements for Trust Service Providers issuing certificates; Part 2: Requirements for trust service providers issuing EU qualified certificates +http://www.etsi.org/deliver/etsi_ts/119400_119499/11941102/02.00.07_60/ts_11941102v020007p.pdf + + + + - d:etsi-ts-119-412-1 etsi-ts-119-412-1 @@ -81782,6 +84083,72 @@ http://www.etsi.org/deliver/etsi_ts/119400_119499/11941201/01.02.01_60/ts_119412 +- +d:etsi-ts-119-412-2 +etsi-ts-119-412-2 +July 2015 +Published +ETSI TS 119 412-2 V2.0.16 (2015-07): Electronic Signatures and Infrastructures (ESI); Certificate Profiles; Part 2: Certificate profile for certificates issued to natural persons +http://www.etsi.org/deliver/etsi_ts/119400_119499/11941202/02.00.16_60/ts_11941202v020016p.pdf + + + + +- +d:etsi-ts-119-412-3 +etsi-ts-119-412-3 +July 2015 +Published +ETSI TS 119 412-3 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); Certificate Profiles; Part 3: Certificate profile for certificates issued to legal persons +http://www.etsi.org/deliver/etsi_ts/119400_119499/11941203/01.00.01_60/ts_11941203v010001p.pdf + + + + +- +d:etsi-ts-119-412-4 +etsi-ts-119-412-4 +July 2015 +Published +ETSI TS 119 412-4 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); Certificate Profiles; Part 4: Certificate profile for web site certificates issued to organizations +http://www.etsi.org/deliver/etsi_ts/119400_119499/11941204/01.00.01_60/ts_11941204v010001p.pdf + + + + +- +d:etsi-ts-119-412-5 +etsi-ts-119-412-5 +July 2015 +Published +ETSI TS 119 412-5 V2.0.13 (2015-07): Electronic Signatures and Infrastructures (ESI); Certificate Profiles; Part 5: QCStatements +http://www.etsi.org/deliver/etsi_ts/119400_119499/11941205/02.00.13_60/ts_11941205v020013p.pdf + + + + +- +d:etsi-ts-119-421 +etsi-ts-119-421 +July 2015 +Published +ETSI TS 119 421 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); Policy and Security Requirements for Trust Service Providers issuing Time-Stamps +http://www.etsi.org/deliver/etsi_ts/119400_119499/119421/01.00.01_60/ts_119421v010001p.pdf + + + + +- +d:etsi-ts-119-422 +etsi-ts-119-422 +July 2015 +Published +ETSI TS 119 422 V1.0.1 (2015-07): Electronic Signatures and Infrastructures (ESI); Time-stamping protocol and time-stamp profiles +http://www.etsi.org/deliver/etsi_ts/119400_119499/119422/01.00.01_60/ts_119422v010001p.pdf + + + + - d:etsi-ts-119-431-1 etsi-ts-119-431-1 @@ -81917,10 +84284,10 @@ http://www.etsi.org/deliver/etsi_ts/119600_119699/11961401/01.01.01_60/ts_119614 - d:etsi-ts-121-101 etsi-ts-121-101 -June 2018 +January 2017 Published -ETSI TS 121 101 V15.0.0 (2018-06): Universal Mobile Telecommunications System (UMTS); Technical Specifications and Technical Reports for a UTRAN-based 3GPP system (3GPP TS 21.101 version 15.0.0 Release 15) -http://www.etsi.org/deliver/etsi_ts/121100_121199/121101/15.00.00_60/ts_121101v150000p.pdf +ETSI TS 121 101 V13.0.0 (2017-01): Universal Mobile Telecommunications System (UMTS); Technical Specifications and Technical Reports for a UTRAN-based 3GPP system (3GPP TS 21.101 version 13.0.0 Release 13) +http://www.etsi.org/deliver/etsi_ts/121100_121199/121101/13.00.00_60/ts_121101v130000p.pdf @@ -81972,10 +84339,10 @@ http://www.etsi.org/deliver/etsi_ts/121100_121199/121133/04.01.00_60/ts_121133v0 - d:etsi-ts-121-201 etsi-ts-121-201 -June 2018 +January 2017 Published -ETSI TS 121 201 V15.0.0 (2018-06): LTE; Technical Specifications and Technical Reports for an Evolved Packet System (EPS) based 3GPP system (3GPP TS 21.201 version 15.0.0 Release 15) -http://www.etsi.org/deliver/etsi_ts/121200_121299/121201/15.00.00_60/ts_121201v150000p.pdf +ETSI TS 121 201 V13.0.0 (2017-01): LTE; Technical Specifications and Technical Reports for an Evolved Packet System (EPS) based 3GPP system (3GPP TS 21.201 version 13.0.0 Release 13) +http://www.etsi.org/deliver/etsi_ts/121200_121299/121201/13.00.00_60/ts_121201v130000p.pdf @@ -84488,6 +86855,17 @@ http://www.etsi.org/deliver/etsi_ts/124000_124099/124030/15.00.00_60/ts_124030v1 +- +d:etsi-ts-124-065 +etsi-ts-124-065 +January 2000 +Published +ETSI TS 124 065 V3.1.0 (2000-01): Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); General Packet Radio Service (GPRS); Mobile Station (MS) - Serving GPRS Support Node (SGSN); Subnetwork Dependent Convergence Protocol (SNDCP) (3G TS 24.065 version 3.1.0 Release 1999) +http://www.etsi.org/deliver/etsi_ts/124000_124099/124065/03.01.00_60/ts_124065v030100p.pdf + + + + - d:etsi-ts-124-067 etsi-ts-124-067 @@ -88121,10 +90499,10 @@ http://www.etsi.org/deliver/etsi_ts/128400_128499/128403/15.00.00_60/ts_128403v1 - d:etsi-ts-128-500 etsi-ts-128-500 -July 2018 +April 2017 Published -ETSI TS 128 500 V15.0.0 (2018-07): LTE; Telecommunication management; Management concept, architecture and requirements for mobile networks that include virtualized network functions (3GPP TS 28.500 version 15.0.0 Release 15) -http://www.etsi.org/deliver/etsi_ts/128500_128599/128500/15.00.00_60/ts_128500v150000p.pdf +ETSI TS 128 500 V14.1.0 (2017-04): LTE; Telecommunication management; Management concept, architecture and requirements for mobile networks that include virtualized network functions (3GPP TS 28.500 version 14.1.0 Release 14) +http://www.etsi.org/deliver/etsi_ts/128500_128599/128500/14.01.00_60/ts_128500v140100p.pdf @@ -91355,10 +93733,21 @@ http://www.etsi.org/deliver/etsi_ts/132100_132199/132103/14.01.00_60/ts_132103v1 - d:etsi-ts-132-104 etsi-ts-132-104 -September 2004 +March 2001 +Published +ETSI TS 132 104 V4.0.0 (2001-03): Universal Mobile Telecommunications System (UMTS); Telecommunication Management; 3G Performance Management (PM) (3GPP TS 32.104 version 4.0.0 Release 4) +http://www.etsi.org/deliver/etsi_ts/132100_132199/132104/04.00.00_60/ts_132104v040000p.pdf + + + + +- +d:etsi-ts-132-106 +etsi-ts-132-106 +March 2000 Published -ETSI TS 132 104 V3.9.0 (2004-09): Universal Mobile Telecommunications System (UMTS); Telecommunication management; 3G Performance Management (3GPP TS 32.104 version 3.9.0 Release 1999) -http://www.etsi.org/deliver/etsi_ts/132100_132199/132104/03.09.00_60/ts_132104v030900p.pdf +ETSI TS 132 106 V3.0.1 (2000-03): Universal Mobile Telecommunications System (UMTS); 3G Configuration Management (3G TS 32.106 version 3.0.1 Release 1999) +http://www.etsi.org/deliver/etsi_ts/132100_132199/132106/03.00.01_60/ts_132106v030001p.pdf @@ -91443,10 +93832,10 @@ http://www.etsi.org/deliver/etsi_ts/132100_132199/13210607/03.03.00_60/ts_132106 - d:etsi-ts-132-106-8 etsi-ts-132-106-8 -July 2001 +March 2001 Published -ETSI TS 132 106-8 V3.2.0 (2001-07): Universal Mobile Telecommunications System (UMTS); Telecommunication Management; Configuration Management; Part 8: Name convention for Managed Objects (3G TS 32.106-8 version 3.2.0 Release 1999) -http://www.etsi.org/deliver/etsi_ts/132100_132199/13210608/03.02.00_60/ts_13210608v030200p.pdf +ETSI TS 132 106-8 V4.0.0 (2001-03): Universal Mobile Telecommunications System (UMTS); Telecommunication Management; Configuration Management; Part 8: Name convention for Managed Objects (3GPP TS 32.106-8 version 4.0.0 Release 4) +http://www.etsi.org/deliver/etsi_ts/132100_132199/13210608/04.00.00_60/ts_13210608v040000p.pdf @@ -91462,6 +93851,17 @@ http://www.etsi.org/deliver/etsi_ts/132100_132199/132107/11.01.01_60/ts_132107v1 +- +d:etsi-ts-132-111 +etsi-ts-132-111 +March 2000 +Published +ETSI TS 132 111 V3.0.1 (2000-03): Universal Mobile Telecommunications System (UMTS); 3G Fault Management (3G TS 32.111 version 3.0.1 Release 1999) +http://www.etsi.org/deliver/etsi_ts/132100_132199/132111/03.00.01_60/ts_132111v030001p.pdf + + + + - d:etsi-ts-132-111-1 etsi-ts-132-111-1 @@ -93973,10 +96373,10 @@ http://www.etsi.org/deliver/etsi_ts/132600_132699/132645/09.03.00_60/ts_132645v0 - d:etsi-ts-132-646 etsi-ts-132-646 -February 2013 +October 2014 Published -ETSI TS 132 646 V11.2.0 (2013-02): Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); LTE; Telecommunication management; Configuration Management (CM); UTRAN network resources Integration Reference Point (IRP); Solution Set (SS) definitions (3GPP TS 32.646 version 11.2.0 Release 11) -http://www.etsi.org/deliver/etsi_ts/132600_132699/132646/11.02.00_60/ts_132646v110200p.pdf +ETSI TS 132 646 V12.0.0 (2014-10): Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); LTE; Telecommunication management; Configuration Management (CM); UTRAN network resources Integration Reference Point (IRP); Solution Set (SS) definitions (3GPP TS 32.646 version 12.0.0 Release 12) +http://www.etsi.org/deliver/etsi_ts/132600_132699/132646/12.00.00_60/ts_132646v120000p.pdf @@ -96272,10 +98672,10 @@ http://www.etsi.org/deliver/etsi_ts/136500_136599/136508/14.05.00_60/ts_136508v1 - d:etsi-ts-136-509 etsi-ts-136-509 -December 2018 +August 2016 Published -ETSI TS 136 509 V13.8.0 (2018-12): LTE; Evolved Universal Terrestrial Radio Access (E-UTRA) and Evolved Packet Core (EPC); Special conformance testing functions for User Equipment (UE) (3GPP TS 36.509 version 13.8.0 Release 13) -http://www.etsi.org/deliver/etsi_ts/136500_136599/136509/13.08.00_60/ts_136509v130800p.pdf +ETSI TS 136 509 V12.4.0 (2016-08): LTE; Evolved Universal Terrestrial Radio Access (E-UTRA) and Evolved Packet Core (EPC); Special conformance testing functions for User Equipment (UE) (3GPP TS 36.509 version 12.4.0 Release 12) +http://www.etsi.org/deliver/etsi_ts/136500_136599/136509/12.04.00_60/ts_136509v120400p.pdf @@ -97325,6 +99725,17 @@ http://www.etsi.org/deliver/etsi_ts/142000_142099/142019/05.01.00_60/ts_142019v0 +- +d:etsi-ts-142-031 +etsi-ts-142-031 +June 2002 +Published +ETSI TS 142 031 V5.0.0 (2002-06): Digital cellular telecommunications system (Phase 2+); Fraud Information Gathering System (FIGS); Service description; Stage 1 (3GPP TS 42.031 version 5.0.0 Release 5) +http://www.etsi.org/deliver/etsi_ts/142000_142099/142031/05.00.00_60/ts_142031v050000p.pdf + + + + - d:etsi-ts-142-032 etsi-ts-142-032 @@ -97438,10 +99849,10 @@ http://www.etsi.org/deliver/etsi_ts/143000_143099/143013/15.00.00_60/ts_143013v1 - d:etsi-ts-143-019 etsi-ts-143-019 -March 2003 +December 2004 Published -ETSI TS 143 019 V5.6.0 (2003-03): Digital cellular telecommunications system (Phase 2+); Subscriber Identity Module Application Programming Interface (SIM API) for Java Card; Stage 2 (3GPP TS 43.019 version 5.6.0 Release 5) -http://www.etsi.org/deliver/etsi_ts/143000_143099/143019/05.06.00_60/ts_143019v050600p.pdf +ETSI TS 143 019 V6.0.0 (2004-12): Digital cellular telecommunications system (Phase 2+); Subscriber Identity Module Application Programming Interface (SIM API) for Java Card; Stage 2 (3GPP TS 43.019 version 6.0.0 Release 6) +http://www.etsi.org/deliver/etsi_ts/143000_143099/143019/06.00.00_60/ts_143019v060000p.pdf @@ -97449,10 +99860,10 @@ http://www.etsi.org/deliver/etsi_ts/143000_143099/143019/05.06.00_60/ts_143019v0 - d:etsi-ts-143-020 etsi-ts-143-020 -July 2014 +July 2008 Published -ETSI TS 143 020 V10.2.0 (2014-07): Digital cellular telecommunications system (Phase 2+); Security related network functions (3GPP TS 43.020 version 10.2.0 Release 10) -http://www.etsi.org/deliver/etsi_ts/143000_143099/143020/10.02.00_60/ts_143020v100200p.pdf +ETSI TS 143 020 V7.3.1 (2008-07): Digital cellular telecommunications system (Phase 2+); Security-related network functions (3GPP TS 43.020 version 7.3.1 Release 7) +http://www.etsi.org/deliver/etsi_ts/143000_143099/143020/07.03.01_60/ts_143020v070301p.pdf @@ -97468,6 +99879,17 @@ http://www.etsi.org/deliver/etsi_ts/143000_143099/143022/15.00.00_60/ts_143022v1 +- +d:etsi-ts-143-031 +etsi-ts-143-031 +June 2002 +Published +ETSI TS 143 031 V5.0.0 (2002-06): Digital cellular telecommunications system (Phase 2+); Fraud Information Gathering System (FIGS); Service description; Stage 2 (3GPP TS 43.031 version 5.0.0 Release 5) +http://www.etsi.org/deliver/etsi_ts/143000_143099/143031/05.00.00_60/ts_143031v050000p.pdf + + + + - d:etsi-ts-143-033 etsi-ts-143-033 @@ -97501,6 +99923,17 @@ http://www.etsi.org/deliver/etsi_ts/143000_143099/143045/15.00.00_60/ts_143045v1 +- +d:etsi-ts-143-048 +etsi-ts-143-048 +March 2001 +Published +ETSI TS 143 048 V4.0.0 (2001-03): Digital cellular telecommunications system (Phase 2+); Security Mechanisms for the SIM application toolkit; Stage 2 (3GPP TS 43.048 version 4.0.0 Release 4) +http://www.etsi.org/deliver/etsi_ts/143000_143099/143048/04.00.00_60/ts_143048v040000p.pdf + + + + - d:etsi-ts-143-050 etsi-ts-143-050 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ev.data b/bikeshed/spec-data/readonly/biblio/biblio-ev.data index 02e7258bb1..5bd355a9f2 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ev.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ev.data @@ -1,10 +1,10 @@ d:event-timing event-timing -24 May 2022 +19 August 2024 WD Event Timing API https://www.w3.org/TR/event-timing/ -https://w3c.github.io/event-timing +https://w3c.github.io/event-timing/ @@ -21,6 +21,32 @@ https://www.w3.org/TR/2022/WD-event-timing-20220524/ +Nicolas Pena Moreno +Tim Dresser +- +d:event-timing-20230703 +event-timing-20230703 +3 July 2023 +WD +Event Timing API +https://www.w3.org/TR/2023/WD-event-timing-20230703/ +https://www.w3.org/TR/2023/WD-event-timing-20230703/ + + + +Nicolas Pena Moreno +Tim Dresser +- +d:event-timing-20240819 +event-timing-20240819 +19 August 2024 +WD +Event Timing API +https://www.w3.org/TR/2024/WD-event-timing-20240819/ +https://www.w3.org/TR/2024/WD-event-timing-20240819/ + + + Nicolas Pena Moreno Tim Dresser - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ew.data b/bikeshed/spec-data/readonly/biblio/biblio-ew.data index af86655356..e04184891b 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ew.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ew.data @@ -1982,7 +1982,7 @@ d:ewg78 EWG78 New -N3820 Working Draft, Technical Specification -- Array Extensions, N3810 Alternatives for Array Extensions +N3820 Working Draft, Technical Specification — Array Extensions, N3810 Alternatives for Array Extensions https://wg21.link/ewg78 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ex.data b/bikeshed/spec-data/readonly/biblio/biblio-ex.data index efa3759e4d..7e8144b7d3 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ex.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ex.data @@ -610,6 +610,149 @@ https://www.w3.org/TR/NOTE-expamaya-971028 +- +d:ext_blend_minmax +EXT_BLEND_MINMAX + +Editor's Draft +WebGL EXT_blend_minmax Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_blend_minmax/ + + + + +- +d:ext_color_buffer_float +EXT_COLOR_BUFFER_FLOAT + +Editor's Draft +WebGL EXT_color_buffer_float Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_color_buffer_float/ + + + + +- +d:ext_color_buffer_half_float +EXT_COLOR_BUFFER_HALF_FLOAT + +Editor's Draft +WebGL EXT_color_buffer_half_float Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_color_buffer_half_float/ + + + + +- +d:ext_disjoint_timer_query +EXT_DISJOINT_TIMER_QUERY + +Editor's Draft +WebGL EXT_disjoint_timer_query Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_disjoint_timer_query/ + + + + +- +d:ext_disjoint_timer_query_webgl2 +EXT_DISJOINT_TIMER_QUERY_WEBGL2 + +Editor's Draft +WebGL EXT_disjoint_timer_query_webgl2 Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_disjoint_timer_query_webgl2/ + + + + +- +d:ext_float_blend +EXT_FLOAT_BLEND + +Editor's Draft +WebGL EXT_float_blend Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_float_blend/ + + + + +- +d:ext_frag_depth +EXT_FRAG_DEPTH + +Editor's Draft +WebGL EXT_frag_depth Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_frag_depth/ + + + + +- +d:ext_shader_texture_lod +EXT_SHADER_TEXTURE_LOD + +Editor's Draft +WebGL EXT_shader_texture_lod Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_shader_texture_lod/ + + + + +- +d:ext_srgb +EXT_SRGB + +Editor's Draft +WebGL EXT_sRGB Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_sRGB/ + + + + +- +d:ext_texture_compression_bptc +EXT_TEXTURE_COMPRESSION_BPTC + +Editor's Draft +WebGL EXT_texture_compression_bptc Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_texture_compression_bptc/ + + + + +- +d:ext_texture_compression_rgtc +EXT_TEXTURE_COMPRESSION_RGTC + +Editor's Draft +WebGL EXT_texture_compression_rgtc Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_texture_compression_rgtc/ + + + + +- +d:ext_texture_filter_anisotropic +EXT_TEXTURE_FILTER_ANISOTROPIC + +Editor's Draft +WebGL EXT_texture_filter_anisotropic Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_texture_filter_anisotropic/ + + + + +- +d:ext_texture_norm16 +EXT_TEXTURE_NORM16 + +Editor's Draft +WebGL EXT_texture_norm16 Extension Specification +https://registry.khronos.org/webgl/extensions/EXT_texture_norm16/ + + + + - a:extennnnsible EXTENNNNSIBLE diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ey.data b/bikeshed/spec-data/readonly/biblio/biblio-ey.data new file mode 100644 index 0000000000..8c793a0bc7 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-ey.data @@ -0,0 +1,11 @@ +d:eyedropper-api +EYEDROPPER-API + +Draft Community Group Report +EyeDropper API +https://wicg.github.io/eyedropper-api/ + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-fe.data b/bikeshed/spec-data/readonly/biblio/biblio-fe.data index 17654ee35a..e048729663 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-fe.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-fe.data @@ -22,6 +22,78 @@ a:feature-policy-1-20230123 feature-policy-1-20230123 permissions-policy-1-20230123 - +a:feature-policy-1-20230217 +feature-policy-1-20230217 +permissions-policy-1-20230217 +- +a:feature-policy-1-20230222 +feature-policy-1-20230222 +permissions-policy-1-20230222 +- +a:feature-policy-1-20230322 +feature-policy-1-20230322 +permissions-policy-1-20230322 +- +a:feature-policy-1-20230607 +feature-policy-1-20230607 +permissions-policy-1-20230607 +- +a:feature-policy-1-20230630 +feature-policy-1-20230630 +permissions-policy-1-20230630 +- +a:feature-policy-1-20230705 +feature-policy-1-20230705 +permissions-policy-1-20230705 +- +a:feature-policy-1-20230717 +feature-policy-1-20230717 +permissions-policy-1-20230717 +- +a:feature-policy-1-20230911 +feature-policy-1-20230911 +permissions-policy-1-20230911 +- +a:feature-policy-1-20230912 +feature-policy-1-20230912 +permissions-policy-1-20230912 +- +a:feature-policy-1-20231013 +feature-policy-1-20231013 +permissions-policy-1-20231013 +- +a:feature-policy-1-20231016 +feature-policy-1-20231016 +permissions-policy-1-20231016 +- +a:feature-policy-1-20231017 +feature-policy-1-20231017 +permissions-policy-1-20231017 +- +a:feature-policy-1-20231218 +feature-policy-1-20231218 +permissions-policy-1-20231218 +- +a:feature-policy-1-20240619 +feature-policy-1-20240619 +permissions-policy-1-20240619 +- +a:feature-policy-1-20240626 +feature-policy-1-20240626 +permissions-policy-1-20240626 +- +a:feature-policy-1-20240627 +feature-policy-1-20240627 +permissions-policy-1-20240627 +- +a:feature-policy-1-20240628 +feature-policy-1-20240628 +permissions-policy-1-20240628 +- +a:feature-policy-1-20240724 +feature-policy-1-20240724 +permissions-policy-1-20240724 +- a:feature-policy-20190416 feature-policy-20190416 permissions-policy-1-20190416 @@ -37,6 +109,124 @@ permissions-policy-1-20221207 a:feature-policy-20230123 feature-policy-20230123 permissions-policy-1-20230123 +- +a:feature-policy-20230217 +feature-policy-20230217 +permissions-policy-1-20230217 +- +a:feature-policy-20230222 +feature-policy-20230222 +permissions-policy-1-20230222 +- +a:feature-policy-20230322 +feature-policy-20230322 +permissions-policy-1-20230322 +- +a:feature-policy-20230607 +feature-policy-20230607 +permissions-policy-1-20230607 +- +a:feature-policy-20230630 +feature-policy-20230630 +permissions-policy-1-20230630 +- +a:feature-policy-20230705 +feature-policy-20230705 +permissions-policy-1-20230705 +- +a:feature-policy-20230717 +feature-policy-20230717 +permissions-policy-1-20230717 +- +a:feature-policy-20230911 +feature-policy-20230911 +permissions-policy-1-20230911 +- +a:feature-policy-20230912 +feature-policy-20230912 +permissions-policy-1-20230912 +- +a:feature-policy-20231013 +feature-policy-20231013 +permissions-policy-1-20231013 +- +a:feature-policy-20231016 +feature-policy-20231016 +permissions-policy-1-20231016 +- +a:feature-policy-20231017 +feature-policy-20231017 +permissions-policy-1-20231017 +- +a:feature-policy-20231218 +feature-policy-20231218 +permissions-policy-1-20231218 +- +a:feature-policy-20240619 +feature-policy-20240619 +permissions-policy-1-20240619 +- +a:feature-policy-20240626 +feature-policy-20240626 +permissions-policy-1-20240626 +- +a:feature-policy-20240627 +feature-policy-20240627 +permissions-policy-1-20240627 +- +a:feature-policy-20240628 +feature-policy-20240628 +permissions-policy-1-20240628 +- +a:feature-policy-20240724 +feature-policy-20240724 +permissions-policy-1-20240724 +- +d:fedcm +FEDCM + +Draft Community Group Report +Federated Credential Management API +https://fedidcg.github.io/FedCM/ + + + + +- +d:fedcm-1 +fedcm-1 +20 August 2024 +WD +Federated Credential Management API +https://www.w3.org/TR/fedcm-1/ +https://w3c-fedid.github.io/FedCM/ + + + +Nicolas Pena Moreno +- +d:fedcm-1-20240820 +fedcm-1-20240820 +20 August 2024 +WD +Federated Credential Management API +https://www.w3.org/TR/2024/WD-fedcm-1-20240820/ +https://www.w3.org/TR/2024/WD-fedcm-1-20240820/ + + + +Nicolas Pena Moreno +- +d:fenced-frame +FENCED-FRAME + +Draft Community Group Report +Fenced Frame +https://wicg.github.io/fenced-frame/ + + + + - d:fetch FETCH @@ -52,7 +242,7 @@ Anne van Kesteren - d:fetch-metadata fetch-metadata -20 July 2021 +31 October 2023 WD Fetch Metadata Request Headers https://www.w3.org/TR/fetch-metadata/ @@ -144,5 +334,17 @@ https://www.w3.org/TR/2021/WD-fetch-metadata-20210720/ +Mike West +- +d:fetch-metadata-20231031 +fetch-metadata-20231031 +31 October 2023 +WD +Fetch Metadata Request Headers +https://www.w3.org/TR/2023/WD-fetch-metadata-20231031/ +https://www.w3.org/TR/2023/WD-fetch-metadata-20231031/ + + + Mike West - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-fi.data b/bikeshed/spec-data/readonly/biblio/biblio-fi.data index 87e5ea376c..e85107762c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-fi.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-fi.data @@ -8,6 +8,17 @@ https://fidoalliance.org/specs/fido-appid-and-facets-ps-20150514.pdf +- +d:fido-v2.1 +FIDO-V2.1 + +Editor's Draft +Client to Authenticator Protocol (CTAP) +https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html + + + + - d:figures FIGURES @@ -105,6 +116,14 @@ a:file-api-20221130 FILE-API-20221130 FileAPI-20221130 - +a:file-api-20230206 +FILE-API-20230206 +FileAPI-20230206 +- +a:file-api-20240524 +FILE-API-20240524 +FileAPI-20240524 +- a:file-system FILE-SYSTEM file-system-api @@ -280,6 +299,14 @@ a:file-upload-20221130 file-upload-20221130 FileAPI-20221130 - +a:file-upload-20230206 +file-upload-20230206 +FileAPI-20230206 +- +a:file-upload-20240524 +file-upload-20240524 +FileAPI-20240524 +- a:file-writer FILE-WRITER file-writer-api @@ -378,7 +405,7 @@ Eric Uhrhane - d:fileapi FileAPI -30 November 2022 +24 May 2024 WD File API https://www.w3.org/TR/FileAPI/ @@ -635,6 +662,30 @@ https://www.w3.org/TR/2022/WD-FileAPI-20221130/ +Marijn Kruisselbrink +- +d:fileapi-20230206 +FileAPI-20230206 +6 February 2023 +WD +File API +https://www.w3.org/TR/2023/WD-FileAPI-20230206/ +https://www.w3.org/TR/2023/WD-FileAPI-20230206/ + + + +Marijn Kruisselbrink +- +d:fileapi-20240524 +FileAPI-20240524 +24 May 2024 +WD +File API +https://www.w3.org/TR/2024/WD-FileAPI-20240524/ +https://www.w3.org/TR/2024/WD-FileAPI-20240524/ + + + Marijn Kruisselbrink - d:fill-stroke-3 @@ -762,6 +813,17 @@ https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/ Dirk Schulze Dean Jackson +- +d:filter-effects-2 +FILTER-EFFECTS-2 + +Editor's Draft +Filter Effects Module Level 2 +https://drafts.fxtf.org/filter-effects-2/ + + + + - a:filter-effects-20121025 filter-effects-20121025 @@ -787,9 +849,16 @@ a:filter-effects-20181218 filter-effects-20181218 filter-effects-1-20181218 - -s:fin-priv-notice +d:fin-priv-notice FIN-PRIV-NOTICE -Kleimann Communications Group, Inc. <a href='http://www.ftc.gov/privacy/privacyinitiatives/ftcfinalreport060228.pdf'><cite>Evolution of a Prototype Financial Privacy Notice </cite></a> 28 February 2006. URL: http://www.ftc.gov/privacy/privacyinitiatives/ftcfinalreport060228.pdf +28 February 2006 + +Evolution of a Prototype Financial Privacy Notice +http://www.ftc.gov/privacy/privacyinitiatives/ftcfinalreport060228.pdf + + + + - d:findtext findtext @@ -863,28 +932,72 @@ https://www.w3.org/TR/2019/NOTE-fingerprinting-guidance-20190328/ Nick Doty - -s:fips-180-3 +d:fips-180-3 FIPS-180-3 -<a href="https://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf"><cite>FIPS PUB 180-3 Secure Hash Standard</cite></a>. U.S. Department of Commerce/National Institute of Standards and Technology. URL: <a href="https://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf">https://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf</a> +October 2008 +National Standard +FIPS PUB 180-3: Secure Hash Standard (SHS) +https://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf + + + + - d:fips-180-4 FIPS-180-4 - - -FIPS PUB 180-4 Secure Hash Standard +August 2015 +National Standard +FIPS PUB 180-4: Secure Hash Standard (SHS) https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf - -s:fips-186-3 +d:fips-186-3 FIPS-186-3 -<a href="https://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf"><cite>FIPS PUB 186-3: Digital Signature Standard (DSS)</cite></a>. June 2009. U.S. Department of Commerce/National Institute of Standards and Technology. URL: <a href="https://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf">https://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf</a> +June 2009 +National Standard +FIPS PUB 186-3: Digital Signature Standard (DSS) +https://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf + + + + +- +d:fips-186-4 +FIPS-186-4 +July 2013 +National Standard +FIPS PUB 186-4: Digital Signature Standard (DSS) +https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf + + + + - -s:fir +d:fips-186-5 +FIPS-186-5 +3 February 2023 +National Standard +FIPS PUB 186-5: Digital Signature Standard (DSS) +https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf + + + + +- +d:fir FIR -Joe Clark. <a href="http://www.alistapart.com/articles/fir">&ldquo;Facts and Opinion About Fahrner Image Replacement&rdquo;</a> in: <cite>A List Apart.</cite> Issue No. 160. 20 October 2003. URL: <a href="http://www.alistapart.com/articles/fir">http://www.alistapart.com/articles/fir</a> +20 October 2003 + +Facts and Opinion About Fahrner Image Replacement +http://www.alistapart.com/articles/fir + + + + +Joe Clark - d:firesheep FIRESHEEP @@ -897,4 +1010,15 @@ http://codebutler.com/firesheep Eric Butler +- +d:first-party-sets +FIRST-PARTY-SETS + +Draft Community Group Report +User Agent Interaction with Related Website Sets +https://wicg.github.io/first-party-sets/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-fl.data b/bikeshed/spec-data/readonly/biblio/biblio-fl.data index deb78c5173..bfc8eba79d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-fl.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-fl.data @@ -1,6 +1,13 @@ -s:flex +d:flex FLEX -<cite>Flex: The Lexical Scanner Generator.</cite> Version 2.3.7, ISBN 1882114213 + + +Flex: The Lexical Scanner Generator (Version 2.3.7) + + + + + - a:flexbox FLEXBOX diff --git a/bikeshed/spec-data/readonly/biblio/biblio-fo.data b/bikeshed/spec-data/readonly/biblio/biblio-fo.data index c428ed6be8..3a420fca2a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-fo.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-fo.data @@ -142,6 +142,17 @@ Robert Stevahn Steve Zilles Brad Chase Chris Lilley +- +d:font-metrics-api-1 +FONT-METRICS-API-1 + +A Collection of Interesting Ideas +Font Metrics API Level 1 +https://drafts.css-houdini.org/font-metrics-api-1/ + + + + - d:font-rationale font-rationale diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ga.data b/bikeshed/spec-data/readonly/biblio/biblio-ga.data index d7707a624a..530267c295 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ga.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ga.data @@ -39,7 +39,7 @@ Wonsuk Lee - d:gamepad gamepad -9 December 2022 +9 August 2024 WD Gamepad https://www.w3.org/TR/gamepad/ @@ -48,7 +48,6 @@ https://w3c.github.io/gamepad/ Steve Agoston -James Hollyer Matthew Reynolds - d:gamepad-20120529 @@ -153,7 +152,6 @@ https://www.w3.org/TR/2016/WD-gamepad-20160920/ Steve Agoston -James Hollyer Matthew Reynolds - d:gamepad-20161011 @@ -167,7 +165,6 @@ https://www.w3.org/TR/2016/WD-gamepad-20161011/ Steve Agoston -James Hollyer Matthew Reynolds - d:gamepad-20161031 @@ -181,7 +178,6 @@ https://www.w3.org/TR/2016/WD-gamepad-20161031/ Steve Agoston -James Hollyer Matthew Reynolds - d:gamepad-20161202 @@ -195,7 +191,6 @@ https://www.w3.org/TR/2016/WD-gamepad-20161202/ Steve Agoston -James Hollyer Matthew Reynolds - d:gamepad-20170125 @@ -889,4 +884,133 @@ https://www.w3.org/TR/2022/WD-gamepad-20221209/ Steve Agoston James Hollyer Matthew Reynolds +- +d:gamepad-20230210 +gamepad-20230210 +10 February 2023 +WD +Gamepad +https://www.w3.org/TR/2023/WD-gamepad-20230210/ +https://www.w3.org/TR/2023/WD-gamepad-20230210/ + + + +Steve Agoston +James Hollyer +Matthew Reynolds +- +d:gamepad-20230310 +gamepad-20230310 +10 March 2023 +WD +Gamepad +https://www.w3.org/TR/2023/WD-gamepad-20230310/ +https://www.w3.org/TR/2023/WD-gamepad-20230310/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20230413 +gamepad-20230413 +13 April 2023 +WD +Gamepad +https://www.w3.org/TR/2023/WD-gamepad-20230413/ +https://www.w3.org/TR/2023/WD-gamepad-20230413/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20231005 +gamepad-20231005 +5 October 2023 +WD +Gamepad +https://www.w3.org/TR/2023/WD-gamepad-20231005/ +https://www.w3.org/TR/2023/WD-gamepad-20231005/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20240124 +gamepad-20240124 +24 January 2024 +WD +Gamepad +https://www.w3.org/TR/2024/WD-gamepad-20240124/ +https://www.w3.org/TR/2024/WD-gamepad-20240124/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20240222 +gamepad-20240222 +22 February 2024 +WD +Gamepad +https://www.w3.org/TR/2024/WD-gamepad-20240222/ +https://www.w3.org/TR/2024/WD-gamepad-20240222/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20240329 +gamepad-20240329 +29 March 2024 +WD +Gamepad +https://www.w3.org/TR/2024/WD-gamepad-20240329/ +https://www.w3.org/TR/2024/WD-gamepad-20240329/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20240401 +gamepad-20240401 +1 April 2024 +WD +Gamepad +https://www.w3.org/TR/2024/WD-gamepad-20240401/ +https://www.w3.org/TR/2024/WD-gamepad-20240401/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-20240809 +gamepad-20240809 +9 August 2024 +WD +Gamepad +https://www.w3.org/TR/2024/WD-gamepad-20240809/ +https://www.w3.org/TR/2024/WD-gamepad-20240809/ + + + +Steve Agoston +Matthew Reynolds +- +d:gamepad-extensions +GAMEPAD-EXTENSIONS + +Editor's Draft +Gamepad Extensions +https://w3c.github.io/gamepad/extensions.html + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ge.data b/bikeshed/spec-data/readonly/biblio/biblio-ge.data index 87012ab577..deb7c60439 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ge.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ge.data @@ -1,6 +1,6 @@ d:generic-sensor generic-sensor -27 January 2023 +22 February 2024 CR Generic Sensor API https://www.w3.org/TR/generic-sensor/ @@ -432,6 +432,150 @@ https://www.w3.org/TR/2023/CRD-generic-sensor-20230127/ +Rick Waldron +- +d:generic-sensor-20230706 +generic-sensor-20230706 +6 July 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230706/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230706/ + + + +Rick Waldron +- +d:generic-sensor-20230707 +generic-sensor-20230707 +7 July 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230707/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230707/ + + + +Rick Waldron +- +d:generic-sensor-20230725 +generic-sensor-20230725 +25 July 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230725/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230725/ + + + +Rick Waldron +- +d:generic-sensor-20230726 +generic-sensor-20230726 +26 July 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230726/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230726/ + + + +Rick Waldron +- +d:generic-sensor-20230801 +generic-sensor-20230801 +1 August 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230801/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230801/ + + + +Rick Waldron +- +d:generic-sensor-20230808 +generic-sensor-20230808 +8 August 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230808/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230808/ + + + +Rick Waldron +- +d:generic-sensor-20230810 +generic-sensor-20230810 +10 August 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20230810/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20230810/ + + + +Rick Waldron +- +d:generic-sensor-20231006 +generic-sensor-20231006 +6 October 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20231006/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20231006/ + + + +Rick Waldron +- +d:generic-sensor-20231026 +generic-sensor-20231026 +26 October 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20231026/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20231026/ + + + +Rick Waldron +- +d:generic-sensor-20231122 +generic-sensor-20231122 +22 November 2023 +CR +Generic Sensor API +https://www.w3.org/TR/2023/CRD-generic-sensor-20231122/ +https://www.w3.org/TR/2023/CRD-generic-sensor-20231122/ + + + +Rick Waldron +- +d:generic-sensor-20240125 +generic-sensor-20240125 +25 January 2024 +CR +Generic Sensor API +https://www.w3.org/TR/2024/CRD-generic-sensor-20240125/ +https://www.w3.org/TR/2024/CRD-generic-sensor-20240125/ + + + +Rick Waldron +- +d:generic-sensor-20240222 +generic-sensor-20240222 +22 February 2024 +CR +Generic Sensor API +https://www.w3.org/TR/2024/CRD-generic-sensor-20240222/ +https://www.w3.org/TR/2024/CRD-generic-sensor-20240222/ + + + Rick Waldron - d:geodcat-ap @@ -516,11 +660,11 @@ Marijn Kruisselbrink - d:geolocation geolocation -1 September 2022 +15 August 2024 REC -Geolocation API +Geolocation https://www.w3.org/TR/geolocation/ -https://w3c.github.io/geolocation-api/ +https://w3c.github.io/geolocation/ @@ -848,6 +992,110 @@ https://www.w3.org/TR/2022/REC-geolocation-20220901/ +Marcos Caceres +Reilly Grant +- +d:geolocation-20240613 +geolocation-20240613 +13 June 2024 +REC +Geolocation API +https://www.w3.org/TR/2024/REC-geolocation-20240613/ +https://www.w3.org/TR/2024/REC-geolocation-20240613/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240614 +geolocation-20240614 +14 June 2024 +REC +Geolocation API +https://www.w3.org/TR/2024/REC-geolocation-20240614/ +https://www.w3.org/TR/2024/REC-geolocation-20240614/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240615 +geolocation-20240615 +15 June 2024 +REC +Geolocation +https://www.w3.org/TR/2024/REC-geolocation-20240615/ +https://www.w3.org/TR/2024/REC-geolocation-20240615/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240619 +geolocation-20240619 +19 June 2024 +REC +Geolocation +https://www.w3.org/TR/2024/REC-geolocation-20240619/ +https://www.w3.org/TR/2024/REC-geolocation-20240619/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240702 +geolocation-20240702 +2 July 2024 +REC +Geolocation +https://www.w3.org/TR/2024/REC-geolocation-20240702/ +https://www.w3.org/TR/2024/REC-geolocation-20240702/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240809 +geolocation-20240809 +9 August 2024 +REC +Geolocation +https://www.w3.org/TR/2024/REC-geolocation-20240809/ +https://www.w3.org/TR/2024/REC-geolocation-20240809/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240814 +geolocation-20240814 +14 August 2024 +REC +Geolocation +https://www.w3.org/TR/2024/REC-geolocation-20240814/ +https://www.w3.org/TR/2024/REC-geolocation-20240814/ + + + +Marcos Caceres +Reilly Grant +- +d:geolocation-20240815 +geolocation-20240815 +15 August 2024 +REC +Geolocation +https://www.w3.org/TR/2024/REC-geolocation-20240815/ +https://www.w3.org/TR/2024/REC-geolocation-20240815/ + + + Marcos Caceres Reilly Grant - @@ -858,7 +1106,7 @@ REC Geolocation API Specification 2nd Edition https://www.w3.org/TR/geolocation-API/ https://w3c.github.io/geolocation-api/ - +geolocation Andrei Popescu @@ -870,7 +1118,7 @@ WD Geolocation API Specification 2nd Edition https://www.w3.org/TR/2008/WD-geolocation-API-20081222/ https://www.w3.org/TR/2008/WD-geolocation-API-20081222/ - +geolocation Andrei Popescu @@ -882,7 +1130,7 @@ WD Geolocation API Specification 2nd Edition https://www.w3.org/TR/2009/WD-geolocation-API-20090707/ https://www.w3.org/TR/2009/WD-geolocation-API-20090707/ - +geolocation Andrei Popescu @@ -894,7 +1142,7 @@ CR Geolocation API Specification 2nd Edition https://www.w3.org/TR/2010/CR-geolocation-API-20100907/ https://www.w3.org/TR/2010/CR-geolocation-API-20100907/ - +geolocation Andrei Popescu @@ -906,7 +1154,7 @@ PR Geolocation API Specification https://www.w3.org/TR/2012/PR-geolocation-API-20120510/ https://www.w3.org/TR/2012/PR-geolocation-API-20120510/ - +geolocation Andrei Popescu @@ -918,7 +1166,7 @@ REC Geolocation API Specification https://www.w3.org/TR/2013/REC-geolocation-API-20131024/ https://www.w3.org/TR/2013/REC-geolocation-API-20131024/ - +geolocation Andrei Popescu @@ -930,7 +1178,7 @@ PER Geolocation API Specification https://www.w3.org/TR/2015/PER-geolocation-API-20150528/ https://www.w3.org/TR/2015/PER-geolocation-API-20150528/ - +geolocation Andrei Popescu @@ -942,7 +1190,7 @@ REC Geolocation API Specification 2nd Edition https://www.w3.org/TR/2016/REC-geolocation-API-20161108/ https://www.w3.org/TR/2016/REC-geolocation-API-20161108/ - +geolocation Andrei Popescu @@ -954,7 +1202,7 @@ NOTE Geolocation API Specification Level 2 https://www.w3.org/TR/geolocation-API-v2/ https://dev.w3.org/geo/api/spec-source-v2.html - +geolocation Andrei Popescu @@ -967,7 +1215,7 @@ LCWD Geolocation API Specification Level 2 https://www.w3.org/TR/2011/WD-geolocation-API-v2-20111201/ https://www.w3.org/TR/2011/WD-geolocation-API-v2-20111201/ - +geolocation Andrei Popescu @@ -980,7 +1228,7 @@ NOTE Geolocation API Specification Level 2 https://www.w3.org/TR/2017/NOTE-geolocation-API-v2-20170706/ https://www.w3.org/TR/2017/NOTE-geolocation-API-v2-20170706/ - +geolocation Andrei Popescu @@ -1000,7 +1248,7 @@ Marcos Cáceres - d:geolocation-sensor geolocation-sensor -16 March 2022 +17 June 2024 WD Geolocation Sensor https://www.w3.org/TR/geolocation-sensor/ @@ -1089,6 +1337,62 @@ https://www.w3.org/TR/2022/WD-geolocation-sensor-20220316/ +Anssi Kostiainen +Thomas Steiner +Marijn Kruisselbrink +- +d:geolocation-sensor-20231026 +geolocation-sensor-20231026 +26 October 2023 +WD +Geolocation Sensor +https://www.w3.org/TR/2023/WD-geolocation-sensor-20231026/ +https://www.w3.org/TR/2023/WD-geolocation-sensor-20231026/ + + + +Anssi Kostiainen +Thomas Steiner +Marijn Kruisselbrink +- +d:geolocation-sensor-20231127 +geolocation-sensor-20231127 +27 November 2023 +WD +Geolocation Sensor +https://www.w3.org/TR/2023/WD-geolocation-sensor-20231127/ +https://www.w3.org/TR/2023/WD-geolocation-sensor-20231127/ + + + +Anssi Kostiainen +Thomas Steiner +Marijn Kruisselbrink +- +d:geolocation-sensor-20240105 +geolocation-sensor-20240105 +5 January 2024 +WD +Geolocation Sensor +https://www.w3.org/TR/2024/WD-geolocation-sensor-20240105/ +https://www.w3.org/TR/2024/WD-geolocation-sensor-20240105/ + + + +Anssi Kostiainen +Thomas Steiner +Marijn Kruisselbrink +- +d:geolocation-sensor-20240617 +geolocation-sensor-20240617 +17 June 2024 +WD +Geolocation Sensor +https://www.w3.org/TR/2024/WD-geolocation-sensor-20240617/ +https://www.w3.org/TR/2024/WD-geolocation-sensor-20240617/ + + + Anssi Kostiainen Thomas Steiner Marijn Kruisselbrink @@ -1175,13 +1479,26 @@ https://www.w3.org/TR/2018/CR-geometry-1-20181204/ Simon Pieters Chris Harrelson - -s:geopriv-arch +d:geopriv-arch GEOPRIV-ARCH -Barnes, R. Lepinski, M. Cooper, A. Morris, J. Tschofenig, H. Schulzrinne, H. <a href = 'https://tools.ietf.org/html/draft-ietf-geopriv-arch-01'><cite>An Architecture for Location and Location Privacy in Internet Applications</cite></a> 29 October 2009. URL: <a href="https://tools.ietf.org/html/draft-ietf-geopriv-arch-01">https://tools.ietf.org/html/draft-ietf-geopriv-arch-01</a> +29 October 2009 + +An Architecture for Location and Location Privacy in Internet Applications +https://tools.ietf.org/html/draft-ietf-geopriv-arch-01 + + + + +Barnes, R +Lepinski, M +Cooper, A +Morris, J +Tschofenig, H +Schulzrinne, H - d:geor-gap geor-gap -25 March 2022 +10 July 2024 NOTE Georgian Gap Analysis https://www.w3.org/TR/geor-gap/ @@ -1297,6 +1614,66 @@ https://www.w3.org/TR/2022/DNOTE-geor-gap-20220325/ +Richard Ishida +- +d:geor-gap-20230614 +geor-gap-20230614 +14 June 2023 +NOTE +Georgian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-geor-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-geor-gap-20230614/ + + + +Richard Ishida +- +d:geor-gap-20240704 +geor-gap-20240704 +4 July 2024 +NOTE +Georgian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-geor-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-geor-gap-20240704/ + + + +Richard Ishida +- +d:geor-gap-20240710 +geor-gap-20240710 +10 July 2024 +NOTE +Georgian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-geor-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-geor-gap-20240710/ + + + +Richard Ishida +- +d:geor-lreq +geor-lreq +8 August 2024 +NOTE +Georgian Script Resources +https://www.w3.org/TR/geor-lreq/ +https://w3c.github.io/eurlreq/geor/ + + + +Richard Ishida +- +d:geor-lreq-20240808 +geor-lreq-20240808 +8 August 2024 +NOTE +Georgian Script Resources +https://www.w3.org/TR/2024/DNOTE-geor-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-geor-lreq-20240808/ + + + Richard Ishida - d:georss @@ -1313,18 +1690,53 @@ Joshua Lieberman Raj Singh Chris Goad - -d:geosparql +a:geosparql geosparql +geosparql-v1.1 +- +d:geosparql-v1.0 +geosparql-v1.0 10 September 2012 +OGC Standard +OGC GeoSPARQL - A Geographic Query Language for RDF Data +https://portal.ogc.org/files/?artifact_id=47664 -GeoSPARQL - A Geographic Query Language for RDF Data -http://www.opengeospatial.org/standards/geosparql +geosparql-v1.1 +Matthew Perry +John Herring +- +d:geosparql-v1.1 +geosparql-v1.1 +29 January 2024 +OGC Standard +OGC GeoSPARQL - A Geographic Query Language for RDF Data +https://docs.ogc.org/is/22-047r1/22-047r1.html + + +Nicholas J. Car +Timo Homburg Matthew Perry -John Herring +Frans Knibbe +Simon J.D. Cox +Joseph Abhayaratna +Mathias Bonduel +Paul J. Cripps +Krzysztof Janowicz +- +d:get-installed-related-apps +GET-INSTALLED-RELATED-APPS + +Draft Community Group Report +Get Installed Related Apps API +https://wicg.github.io/get-installed-related-apps/spec/ + + + + - a:getusermedia GETUSERMEDIA @@ -1530,3 +1942,67 @@ a:getusermedia-20230112 GETUSERMEDIA-20230112 mediacapture-streams-20230112 - +a:getusermedia-20230202 +GETUSERMEDIA-20230202 +mediacapture-streams-20230202 +- +a:getusermedia-20230323 +GETUSERMEDIA-20230323 +mediacapture-streams-20230323 +- +a:getusermedia-20230406 +GETUSERMEDIA-20230406 +mediacapture-streams-20230406 +- +a:getusermedia-20230413 +GETUSERMEDIA-20230413 +mediacapture-streams-20230413 +- +a:getusermedia-20230427 +GETUSERMEDIA-20230427 +mediacapture-streams-20230427 +- +a:getusermedia-20230504 +GETUSERMEDIA-20230504 +mediacapture-streams-20230504 +- +a:getusermedia-20230619 +GETUSERMEDIA-20230619 +mediacapture-streams-20230619 +- +a:getusermedia-20230817 +GETUSERMEDIA-20230817 +mediacapture-streams-20230817 +- +a:getusermedia-20230921 +GETUSERMEDIA-20230921 +mediacapture-streams-20230921 +- +a:getusermedia-20231120 +GETUSERMEDIA-20231120 +mediacapture-streams-20231120 +- +a:getusermedia-20240307 +GETUSERMEDIA-20240307 +mediacapture-streams-20240307 +- +a:getusermedia-20240425 +GETUSERMEDIA-20240425 +mediacapture-streams-20240425 +- +a:getusermedia-20240502 +GETUSERMEDIA-20240502 +mediacapture-streams-20240502 +- +a:getusermedia-20240530 +GETUSERMEDIA-20240530 +mediacapture-streams-20240530 +- +a:getusermedia-20240620 +GETUSERMEDIA-20240620 +mediacapture-streams-20240620 +- +a:getusermedia-20240627 +GETUSERMEDIA-20240627 +mediacapture-streams-20240627 +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-gl.data b/bikeshed/spec-data/readonly/biblio/biblio-gl.data new file mode 100644 index 0000000000..3faed2e1fe --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-gl.data @@ -0,0 +1,11 @@ +d:gltf +GLTF + +Editor's Draft +glTF™ 2.0 Specification +https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-gp.data b/bikeshed/spec-data/readonly/biblio/biblio-gp.data new file mode 100644 index 0000000000..625666f8af --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-gp.data @@ -0,0 +1,11 @@ +d:gpc-spec +GPC-SPEC + +Unofficial Proposal Draft +Global Privacy Control (GPC) +https://privacycg.github.io/gpc-spec/ + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-gr.data b/bikeshed/spec-data/readonly/biblio/biblio-gr.data index 7683082b30..7f539a8cef 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-gr.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-gr.data @@ -1,6 +1,18 @@ -s:graphics +d:graphics GRAPHICS -<cite>Computer Graphics: Principles and Practice in C</cite>, Second Edition, J. Foley, A. van Dam, S. Feiner, J. Hughes. Addison-Wesley. ISBN 0-201-84840-6. + + +Computer Graphics: Principles and Practice in C (Second Edition) + + + + + +J. Foley +A. van Dam +S. Feiner +J. Hughes +Addison-Wesley - d:graphics-aam-1.0 graphics-aam-1.0 @@ -442,13 +454,22 @@ https://www.w3.org/TR/2007/REC-grddl-tests-20070911/ Chimezie Ogbuji - -s:gregorian +d:gregorian GREGORIAN -<cite>Inter Gravissimas</cite>, A. Lilius, C. Clavius. Gregory XIII Papal Bull, February 1582. +February 1582 + +Inter Gravissimas + + + + + +A. Lilius +C. Clavius - d:grek-gap grek-gap -16 March 2022 +4 July 2024 NOTE Modern Greek Gap Analysis https://www.w3.org/TR/grek-gap/ @@ -528,5 +549,77 @@ https://www.w3.org/TR/2022/DNOTE-grek-gap-20220316/ +Richard Ishida +- +d:grek-gap-20230614 +grek-gap-20230614 +14 June 2023 +NOTE +Modern Greek Gap Analysis +https://www.w3.org/TR/2023/DNOTE-grek-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-grek-gap-20230614/ + + + +Richard Ishida +- +d:grek-gap-20231004 +grek-gap-20231004 +4 October 2023 +NOTE +Modern Greek Gap Analysis +https://www.w3.org/TR/2023/DNOTE-grek-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-grek-gap-20231004/ + + + +Richard Ishida +- +d:grek-gap-20240704 +grek-gap-20240704 +4 July 2024 +NOTE +Modern Greek Gap Analysis +https://www.w3.org/TR/2024/DNOTE-grek-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-grek-gap-20240704/ + + + +Richard Ishida +- +d:grek-lreq +grek-lreq +15 August 2024 +NOTE +Greek Script Resources +https://www.w3.org/TR/grek-lreq/ +https://w3c.github.io/eurlreq/grek/ + + + +Richard Ishida +- +d:grek-lreq-20240808 +grek-lreq-20240808 +8 August 2024 +NOTE +Greek Script Resources +https://www.w3.org/TR/2024/DNOTE-grek-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-grek-lreq-20240808/ + + + +Richard Ishida +- +d:grek-lreq-20240815 +grek-lreq-20240815 +15 August 2024 +NOTE +Greek Script Resources +https://www.w3.org/TR/2024/DNOTE-grek-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-grek-lreq-20240815/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-gu.data b/bikeshed/spec-data/readonly/biblio/biblio-gu.data index 4ec597a08e..7ae664edce 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-gu.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-gu.data @@ -1,6 +1,6 @@ d:gujr-gap gujr-gap -19 January 2022 +10 July 2024 NOTE Gujarati Gap Analysis https://www.w3.org/TR/gujr-gap/ @@ -8,7 +8,6 @@ https://w3c.github.io/iip/gap-analysis/gujr-gap -Neha Gupta Richard Ishida - d:gujr-gap-20200616 @@ -74,19 +73,104 @@ https://www.w3.org/TR/2022/DNOTE-gujr-gap-20220119/ Neha Gupta +Richard Ishida +- +d:gujr-gap-20230614 +gujr-gap-20230614 +14 June 2023 +NOTE +Gujarati Gap Analysis +https://www.w3.org/TR/2023/DNOTE-gujr-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-gujr-gap-20230614/ + + + +Neha Gupta +Richard Ishida +- +d:gujr-gap-20231004 +gujr-gap-20231004 +4 October 2023 +NOTE +Gujarati Gap Analysis +https://www.w3.org/TR/2023/DNOTE-gujr-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-gujr-gap-20231004/ + + + +Neha Gupta +Richard Ishida +- +d:gujr-gap-20240702 +gujr-gap-20240702 +2 July 2024 +NOTE +Gujarati Gap Analysis +https://www.w3.org/TR/2024/DNOTE-gujr-gap-20240702/ +https://www.w3.org/TR/2024/DNOTE-gujr-gap-20240702/ + + + +Richard Ishida +- +d:gujr-gap-20240704 +gujr-gap-20240704 +4 July 2024 +NOTE +Gujarati Gap Analysis +https://www.w3.org/TR/2024/DNOTE-gujr-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-gujr-gap-20240704/ + + + +Richard Ishida +- +d:gujr-gap-20240710 +gujr-gap-20240710 +10 July 2024 +NOTE +Gujarati Gap Analysis +https://www.w3.org/TR/2024/DNOTE-gujr-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-gujr-gap-20240710/ + + + +Richard Ishida +- +d:gujr-lreq +gujr-lreq +8 August 2024 +NOTE +Gujarati Script Resources +https://www.w3.org/TR/gujr-lreq/ +https://w3c.github.io/iip/gujr/ + + + +Richard Ishida +- +d:gujr-lreq-20240808 +gujr-lreq-20240808 +8 August 2024 +NOTE +Gujarati Script Resources +https://www.w3.org/TR/2024/DNOTE-gujr-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-gujr-lreq-20240808/ + + + Richard Ishida - d:guru-gap guru-gap -25 May 2021 -WD +10 July 2024 +NOTE Gurmukhi Gap Analysis https://www.w3.org/TR/guru-gap/ https://w3c.github.io/iip/gap-analysis/guru-gap -Akshat Joshi Richard Ishida - d:guru-gap-20200616 @@ -113,5 +197,115 @@ https://www.w3.org/TR/2021/WD-guru-gap-20210525/ Akshat Joshi +Richard Ishida +- +d:guru-gap-20230614 +guru-gap-20230614 +14 June 2023 +NOTE +Gurmukhi Gap Analysis +https://www.w3.org/TR/2023/DNOTE-guru-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-guru-gap-20230614/ + + + +Akshat Joshi +Richard Ishida +- +d:guru-gap-20230830 +guru-gap-20230830 +30 August 2023 +NOTE +Gurmukhi Gap Analysis +https://www.w3.org/TR/2023/DNOTE-guru-gap-20230830/ +https://www.w3.org/TR/2023/DNOTE-guru-gap-20230830/ + + + +Akshat Joshi +Richard Ishida +- +d:guru-gap-20240702 +guru-gap-20240702 +2 July 2024 +NOTE +Gurmukhi Gap Analysis +https://www.w3.org/TR/2024/DNOTE-guru-gap-20240702/ +https://www.w3.org/TR/2024/DNOTE-guru-gap-20240702/ + + + +Richard Ishida +- +d:guru-gap-20240704 +guru-gap-20240704 +4 July 2024 +NOTE +Gurmukhi Gap Analysis +https://www.w3.org/TR/2024/DNOTE-guru-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-guru-gap-20240704/ + + + +Richard Ishida +- +d:guru-gap-20240710 +guru-gap-20240710 +10 July 2024 +NOTE +Gurmukhi Gap Analysis +https://www.w3.org/TR/2024/DNOTE-guru-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-guru-gap-20240710/ + + + +Richard Ishida +- +d:guru-lreq +guru-lreq +8 August 2024 +NOTE +Gurmukhi Script Resources +https://www.w3.org/TR/guru-lreq/ +https://w3c.github.io/iip/guru/ + + + +Richard Ishida +- +d:guru-lreq-20230214 +guru-lreq-20230214 +14 February 2023 +NOTE +Gurmukhi Layout Requirements +https://www.w3.org/TR/2023/DNOTE-guru-lreq-20230214/ +https://www.w3.org/TR/2023/DNOTE-guru-lreq-20230214/ + + + +Richard Ishida +- +d:guru-lreq-20240719 +guru-lreq-20240719 +19 July 2024 +NOTE +Gurmukhi Script Resources +https://www.w3.org/TR/2024/DNOTE-guru-lreq-20240719/ +https://www.w3.org/TR/2024/DNOTE-guru-lreq-20240719/ + + + +Richard Ishida +- +d:guru-lreq-20240808 +guru-lreq-20240808 +8 August 2024 +NOTE +Gurmukhi Script Resources +https://www.w3.org/TR/2024/DNOTE-guru-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-guru-lreq-20240808/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-gy.data b/bikeshed/spec-data/readonly/biblio/biblio-gy.data index d3ff5919f1..2ca177a8ce 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-gy.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-gy.data @@ -1,6 +1,6 @@ d:gyroscope gyroscope -7 December 2021 +8 January 2024 CR Gyroscope https://www.w3.org/TR/gyroscope/ @@ -160,5 +160,101 @@ https://www.w3.org/TR/2021/CRD-gyroscope-20211207/ +Anssi Kostiainen +- +d:gyroscope-20230130 +gyroscope-20230130 +30 January 2023 +CR +Gyroscope +https://www.w3.org/TR/2023/CRD-gyroscope-20230130/ +https://www.w3.org/TR/2023/CRD-gyroscope-20230130/ + + + +Anssi Kostiainen +- +d:gyroscope-20231018 +gyroscope-20231018 +18 October 2023 +CR +Gyroscope +https://www.w3.org/TR/2023/CRD-gyroscope-20231018/ +https://www.w3.org/TR/2023/CRD-gyroscope-20231018/ + + + +Anssi Kostiainen +- +d:gyroscope-20231020 +gyroscope-20231020 +20 October 2023 +CR +Gyroscope +https://www.w3.org/TR/2023/CRD-gyroscope-20231020/ +https://www.w3.org/TR/2023/CRD-gyroscope-20231020/ + + + +Anssi Kostiainen +- +d:gyroscope-20231025 +gyroscope-20231025 +25 October 2023 +CR +Gyroscope +https://www.w3.org/TR/2023/CRD-gyroscope-20231025/ +https://www.w3.org/TR/2023/CRD-gyroscope-20231025/ + + + +Anssi Kostiainen +- +d:gyroscope-20231207 +gyroscope-20231207 +7 December 2023 +CR +Gyroscope +https://www.w3.org/TR/2023/CRD-gyroscope-20231207/ +https://www.w3.org/TR/2023/CRD-gyroscope-20231207/ + + + +Anssi Kostiainen +- +d:gyroscope-20240104 +gyroscope-20240104 +4 January 2024 +CR +Gyroscope +https://www.w3.org/TR/2024/CRD-gyroscope-20240104/ +https://www.w3.org/TR/2024/CRD-gyroscope-20240104/ + + + +Anssi Kostiainen +- +d:gyroscope-20240105 +gyroscope-20240105 +5 January 2024 +CR +Gyroscope +https://www.w3.org/TR/2024/CRD-gyroscope-20240105/ +https://www.w3.org/TR/2024/CRD-gyroscope-20240105/ + + + +Anssi Kostiainen +- +d:gyroscope-20240108 +gyroscope-20240108 +8 January 2024 +CR +Gyroscope +https://www.w3.org/TR/2024/CRD-gyroscope-20240108/ +https://www.w3.org/TR/2024/CRD-gyroscope-20240108/ + + + Anssi Kostiainen - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ha.data b/bikeshed/spec-data/readonly/biblio/biblio-ha.data index 03dfc23e66..dc7d1e22ed 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ha.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ha.data @@ -1,3 +1,50 @@ +d:handwriting-recognition +HANDWRITING-RECOGNITION + +Draft Community Group Report +Handwriting Recognition API +https://wicg.github.io/handwriting-recognition/ + + + + +- +d:hani-lreq +hani-lreq +8 August 2024 +NOTE +Chinese Script Resources +https://www.w3.org/TR/hani-lreq/ +https://www.w3.org/International/clreq/resources/ + + + +Richard Ishida +- +d:hani-lreq-20240716 +hani-lreq-20240716 +16 July 2024 +NOTE +Chinese Script Resources +https://www.w3.org/TR/2024/DNOTE-hani-lreq-20240716/ +https://www.w3.org/TR/2024/DNOTE-hani-lreq-20240716/ + + + +Richard Ishida +- +d:hani-lreq-20240808 +hani-lreq-20240808 +8 August 2024 +NOTE +Chinese Script Resources +https://www.w3.org/TR/2024/DNOTE-hani-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-hani-lreq-20240808/ + + + +Richard Ishida +- d:hash-in-uri hash-in-uri 9 February 2012 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-he.data b/bikeshed/spec-data/readonly/biblio/biblio-he.data index ffd9ed4da4..8426ce5b5a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-he.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-he.data @@ -1,6 +1,6 @@ d:hebr-gap hebr-gap -13 July 2022 +4 July 2024 NOTE Hebrew Gap Analysis https://www.w3.org/TR/hebr-gap/ @@ -44,5 +44,89 @@ https://www.w3.org/TR/2022/DNOTE-hebr-gap-20220713/ +Richard Ishida +- +d:hebr-gap-20230807 +hebr-gap-20230807 +7 August 2023 +NOTE +Hebrew Gap Analysis +https://www.w3.org/TR/2023/DNOTE-hebr-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-hebr-gap-20230807/ + + + +Richard Ishida +- +d:hebr-gap-20240701 +hebr-gap-20240701 +1 July 2024 +NOTE +Hebrew Gap Analysis +https://www.w3.org/TR/2024/DNOTE-hebr-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-hebr-gap-20240701/ + + + +Richard Ishida +- +d:hebr-gap-20240704 +hebr-gap-20240704 +4 July 2024 +NOTE +Hebrew Gap Analysis +https://www.w3.org/TR/2024/DNOTE-hebr-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-hebr-gap-20240704/ + + + +Richard Ishida +- +d:hebr-lreq +hebr-lreq +15 August 2024 +NOTE +Hebrew Script Resources +https://www.w3.org/TR/hebr-lreq/ +https://w3c.github.io/hlreq/hebr/ + + + +Richard Ishida +- +d:hebr-lreq-20240716 +hebr-lreq-20240716 +16 July 2024 +NOTE +Hebrew Script Resources +https://www.w3.org/TR/2024/DNOTE-hebr-lreq-20240716/ +https://www.w3.org/TR/2024/DNOTE-hebr-lreq-20240716/ + + + +Richard Ishida +- +d:hebr-lreq-20240808 +hebr-lreq-20240808 +8 August 2024 +NOTE +Hebrew Script Resources +https://www.w3.org/TR/2024/DNOTE-hebr-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-hebr-lreq-20240808/ + + + +Richard Ishida +- +d:hebr-lreq-20240815 +hebr-lreq-20240815 +15 August 2024 +NOTE +Hebrew Script Resources +https://www.w3.org/TR/2024/DNOTE-hebr-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-hebr-lreq-20240815/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-hi.data b/bikeshed/spec-data/readonly/biblio/biblio-hi.data index 2a0a21ec07..846454c0c7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-hi.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-hi.data @@ -162,3 +162,31 @@ a:highres-time-20230116 HIGHRES-TIME-20230116 hr-time-3-20230116 - +a:highres-time-20230209 +HIGHRES-TIME-20230209 +hr-time-3-20230209 +- +a:highres-time-20230216 +HIGHRES-TIME-20230216 +hr-time-3-20230216 +- +a:highres-time-20230321 +HIGHRES-TIME-20230321 +hr-time-3-20230321 +- +a:highres-time-20230322 +HIGHRES-TIME-20230322 +hr-time-3-20230322 +- +a:highres-time-20230411 +HIGHRES-TIME-20230411 +hr-time-3-20230411 +- +a:highres-time-20230425 +HIGHRES-TIME-20230425 +hr-time-3-20230425 +- +a:highres-time-20230719 +HIGHRES-TIME-20230719 +hr-time-3-20230719 +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-hm.data b/bikeshed/spec-data/readonly/biblio/biblio-hm.data index 164e385b9e..f344100300 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-hm.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-hm.data @@ -2,11 +2,27 @@ a:hmac HMAC RFC2104 - -s:hmac-security -HMAC-Security -C. Rechberger, V. Rijmen. <a href="http://www.jucs.org/jucs_14_3/new_results_on_nmac/jucs_14_3_0347_0376_rechberger.pdf"><cite>New Results on NMAC/HMAC when Instantiated with Popular Hash Functions</cite></a>. 2 January 2008. Journal of Universal Computer Science, vol. 14, no. 3 (2008), 347-376. URL: <a href="http://www.jucs.org/jucs_14_3/new_results_on_nmac/jucs_14_3_0347_0376_rechberger.pdf">http://www.jucs.org/jucs_14_3/new_results_on_nmac/jucs_14_3_0347_0376_rechberger.pdf</a> +d:hmac-security +HMAC-SECURITY +2 January 2008 + +New Results on NMAC/HMAC when Instantiated with Popular Hash Functions +http://www.jucs.org/jucs_14_3/new_results_on_nmac/jucs_14_3_0347_0376_rechberger.pdf + + + + +C. Rechberger +V. Rijmen - -s:hmrmc +d:hmrmc HMRMC -<a href="http://www.hmrc.gov.uk/softwaredevelopers/index.htm"><cite>HM Revenue and customs</cite></a> Her Majesty's Revenue and Customs. URL: <a href="http://www.hmrc.gov.uk/softwaredevelopers/index.htm">http://www.hmrc.gov.uk/softwaredevelopers/index.htm</a> <br> Sample response message with XML signature: <a href="http://www.hmrc.gov.uk/ebu/responsemessages.pdf">http://www.hmrc.gov.uk/ebu/responsemessages.pdf</a> + + +HM Revenue and customs +http://www.hmrc.gov.uk/softwaredevelopers/index.htm + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-hr.data b/bikeshed/spec-data/readonly/biblio/biblio-hr.data index 974b236fb0..6fc191bf6d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-hr.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-hr.data @@ -596,9 +596,37 @@ a:hr-time-20230116 hr-time-20230116 hr-time-3-20230116 - +a:hr-time-20230209 +hr-time-20230209 +hr-time-3-20230209 +- +a:hr-time-20230216 +hr-time-20230216 +hr-time-3-20230216 +- +a:hr-time-20230321 +hr-time-20230321 +hr-time-3-20230321 +- +a:hr-time-20230322 +hr-time-20230322 +hr-time-3-20230322 +- +a:hr-time-20230411 +hr-time-20230411 +hr-time-3-20230411 +- +a:hr-time-20230425 +hr-time-20230425 +hr-time-3-20230425 +- +a:hr-time-20230719 +hr-time-20230719 +hr-time-3-20230719 +- d:hr-time-3 hr-time-3 -16 January 2023 +19 July 2023 WD High Resolution Time https://www.w3.org/TR/hr-time-3/ @@ -826,5 +854,89 @@ https://www.w3.org/TR/2023/WD-hr-time-3-20230116/ +Yoav Weiss +- +d:hr-time-3-20230209 +hr-time-3-20230209 +9 February 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230209/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230209/ + + + +Yoav Weiss +- +d:hr-time-3-20230216 +hr-time-3-20230216 +16 February 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230216/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230216/ + + + +Yoav Weiss +- +d:hr-time-3-20230321 +hr-time-3-20230321 +21 March 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230321/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230321/ + + + +Yoav Weiss +- +d:hr-time-3-20230322 +hr-time-3-20230322 +22 March 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230322/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230322/ + + + +Yoav Weiss +- +d:hr-time-3-20230411 +hr-time-3-20230411 +11 April 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230411/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230411/ + + + +Yoav Weiss +- +d:hr-time-3-20230425 +hr-time-3-20230425 +25 April 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230425/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230425/ + + + +Yoav Weiss +- +d:hr-time-3-20230719 +hr-time-3-20230719 +19 July 2023 +WD +High Resolution Time +https://www.w3.org/TR/2023/WD-hr-time-3-20230719/ +https://www.w3.org/TR/2023/WD-hr-time-3-20230719/ + + + Yoav Weiss - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-hs.data b/bikeshed/spec-data/readonly/biblio/biblio-hs.data index 03f48d9cc2..da42b9cc29 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-hs.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-hs.data @@ -1,4 +1,12 @@ -s:hsl +d:hsl HSL -Steven Pemberton. <a href="http://www.cwi.nl/~steven/css/hsl.html"><cite>HSL: light vs saturation.</cite></a> 19 November 1998. URL: <a href="http://www.cwi.nl/~steven/css/hsl.html">http://www.cwi.nl/~steven/css/hsl.html</a> +19 November 2009 + +HSL: light vs saturation +http://www.cwi.nl/~steven/css/hsl.html + + + + +Steven Pemberton - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ht.data b/bikeshed/spec-data/readonly/biblio/biblio-ht.data index c7133247c0..1d68eb05cc 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ht.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ht.data @@ -40,7 +40,7 @@ html5-20140617 - d:html-aam-1.0 html-aam-1.0 -12 December 2022 +19 August 2024 WD HTML Accessibility API Mappings 1.0 https://www.w3.org/TR/html-aam-1.0/ @@ -48,7 +48,6 @@ https://w3c.github.io/html-aam/ -Steve Faulkner Scott O'Hara - d:html-aam-1.0-20150407 @@ -106,7 +105,6 @@ https://www.w3.org/TR/2016/WD-html-aam-1.0-20161211/ -Steve Faulkner Scott O'Hara - d:html-aam-1.0-20161212 @@ -119,7 +117,6 @@ https://www.w3.org/TR/2016/WD-html-aam-1.0-20161212/ -Steve Faulkner Scott O'Hara - d:html-aam-1.0-20161214 @@ -1566,1085 +1563,1921 @@ https://www.w3.org/TR/2022/WD-html-aam-1.0-20221212/ Steve Faulkner Scott O'Hara - -d:html-aapi -html-aapi -29 September 2015 -NOTE -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/html-aapi/ -http://rawgithub.com/w3c/html-api-map/master/index.html +d:html-aam-1.0-20230131 +html-aam-1.0-20230131 +31 January 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230131/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230131/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-aapi-20110414 -html-aapi-20110414 -14 April 2011 +d:html-aam-1.0-20230202 +html-aam-1.0-20230202 +2 February 2023 WD -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2011/WD-html-aapi-20110414/ -https://www.w3.org/TR/2011/WD-html-aapi-20110414/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230202/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230202/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-aapi-20110525 -html-aapi-20110525 -25 May 2011 +d:html-aam-1.0-20230308 +html-aam-1.0-20230308 +8 March 2023 WD -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2011/WD-html-aapi-20110525/ -https://www.w3.org/TR/2011/WD-html-aapi-20110525/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230308/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230308/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-aapi-20120329 -html-aapi-20120329 -29 March 2012 +d:html-aam-1.0-20230322 +html-aam-1.0-20230322 +22 March 2023 WD -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2012/WD-html-aapi-20120329/ -https://www.w3.org/TR/2012/WD-html-aapi-20120329/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230322/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230322/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-aapi-20121025 -html-aapi-20121025 -25 October 2012 +d:html-aam-1.0-20230324 +html-aam-1.0-20230324 +24 March 2023 WD -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2012/WD-html-aapi-20121025/ -https://www.w3.org/TR/2012/WD-html-aapi-20121025/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230324/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230324/ Steve Faulkner -Cynthia Shelly -Jason Kiss +Scott O'Hara - -d:html-aapi-20130910 -html-aapi-20130910 -10 September 2013 +d:html-aam-1.0-20230328 +html-aam-1.0-20230328 +28 March 2023 WD -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2013/WD-html-aapi-20130910/ -https://www.w3.org/TR/2013/WD-html-aapi-20130910/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230328/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230328/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-aapi-20131001 -html-aapi-20131001 -1 October 2013 +d:html-aam-1.0-20230411 +html-aam-1.0-20230411 +11 April 2023 WD -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2013/WD-html-aapi-20131001/ -https://www.w3.org/TR/2013/WD-html-aapi-20131001/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230411/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230411/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-aapi-20150929 -html-aapi-20150929 -29 September 2015 -NOTE -HTML to Platform Accessibility APIs Implementation Guide -https://www.w3.org/TR/2015/NOTE-html-aapi-20150929/ -https://www.w3.org/TR/2015/NOTE-html-aapi-20150929/ +d:html-aam-1.0-20230427 +html-aam-1.0-20230427 +27 April 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230427/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230427/ Steve Faulkner -Cynthia Shelly -Jason Kiss -Alexander Surkov +Scott O'Hara - -d:html-alt-techniques -html-alt-techniques -21 May 2015 -NOTE -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/html-alt-techniques/ -https://w3c.github.io/alt-techniques/ +d:html-aam-1.0-20230503 +html-aam-1.0-20230503 +3 May 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230503/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230503/ -Shane McCarron -Liam Quin Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20100624 -html-alt-techniques-20100624 -24 June 2010 +d:html-aam-1.0-20230509 +html-aam-1.0-20230509 +9 May 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2010/WD-html-alt-techniques-20100624/ -https://www.w3.org/TR/2010/WD-html-alt-techniques-20100624/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230509/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230509/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20101019 -html-alt-techniques-20101019 -19 October 2010 +d:html-aam-1.0-20230510 +html-aam-1.0-20230510 +10 May 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2010/WD-html-alt-techniques-20101019/ -https://www.w3.org/TR/2010/WD-html-alt-techniques-20101019/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230510/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230510/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20110113 -html-alt-techniques-20110113 -13 January 2011 +d:html-aam-1.0-20230515 +html-aam-1.0-20230515 +15 May 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2011/WD-html-alt-techniques-20110113/ -https://www.w3.org/TR/2011/WD-html-alt-techniques-20110113/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230515/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230515/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20110405 -html-alt-techniques-20110405 -5 April 2011 +d:html-aam-1.0-20230519 +html-aam-1.0-20230519 +19 May 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2011/WD-html-alt-techniques-20110405/ -https://www.w3.org/TR/2011/WD-html-alt-techniques-20110405/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230519/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230519/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20110525 -html-alt-techniques-20110525 -25 May 2011 +d:html-aam-1.0-20230609 +html-aam-1.0-20230609 +9 June 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2011/WD-html-alt-techniques-20110525/ -https://www.w3.org/TR/2011/WD-html-alt-techniques-20110525/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230609/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230609/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20120329 -html-alt-techniques-20120329 -29 March 2012 +d:html-aam-1.0-20230617 +html-aam-1.0-20230617 +17 June 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2012/WD-html-alt-techniques-20120329/ -https://www.w3.org/TR/2012/WD-html-alt-techniques-20120329/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230617/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230617/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20121025 -html-alt-techniques-20121025 -25 October 2012 +d:html-aam-1.0-20230627 +html-aam-1.0-20230627 +27 June 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2012/WD-html-alt-techniques-20121025/ -https://www.w3.org/TR/2012/WD-html-alt-techniques-20121025/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230627/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230627/ -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20141023 -html-alt-techniques-20141023 -23 October 2014 +d:html-aam-1.0-20230705 +html-aam-1.0-20230705 +5 July 2023 WD -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2014/WD-html-alt-techniques-20141023/ -https://www.w3.org/TR/2014/WD-html-alt-techniques-20141023/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230705/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230705/ -Steve Faulkner +Scott O'Hara - -d:html-alt-techniques-20150521 -html-alt-techniques-20150521 -21 May 2015 -NOTE -HTML5: Techniques for providing useful text alternatives -https://www.w3.org/TR/2015/NOTE-html-alt-techniques-20150521/ -https://www.w3.org/TR/2015/NOTE-html-alt-techniques-20150521/ +d:html-aam-1.0-20230728 +html-aam-1.0-20230728 +28 July 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230728/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230728/ -Shane McCarron -Liam Quin -Steve Faulkner +Scott O'Hara - -d:html-aria -html-aria -21 December 2022 -REC -ARIA in HTML -https://www.w3.org/TR/html-aria/ -https://w3c.github.io/html-aria/ +d:html-aam-1.0-20230818 +html-aam-1.0-20230818 +18 August 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230818/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230818/ -Steve Faulkner Scott O'Hara -Patrick Lauke - -d:html-aria-20150414 -html-aria-20150414 -14 April 2015 +d:html-aam-1.0-20230825 +html-aam-1.0-20230825 +25 August 2023 WD -ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20150414/ -https://www.w3.org/TR/2015/WD-html-aria-20150414/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230825/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230825/ -Steve Faulkner +Scott O'Hara - -d:html-aria-20150514 -html-aria-20150514 -14 May 2015 +d:html-aam-1.0-20230902 +html-aam-1.0-20230902 +2 September 2023 WD -ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20150514/ -https://www.w3.org/TR/2015/WD-html-aria-20150514/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230902/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230902/ -Steve Faulkner +Scott O'Hara - -d:html-aria-20150902 -html-aria-20150902 -2 September 2015 +d:html-aam-1.0-20230925 +html-aam-1.0-20230925 +25 September 2023 WD -ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20150902/ -https://www.w3.org/TR/2015/WD-html-aria-20150902/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230925/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20230925/ -Steve Faulkner +Scott O'Hara - -d:html-aria-20151010 -html-aria-20151010 -10 October 2015 +d:html-aam-1.0-20231003 +html-aam-1.0-20231003 +3 October 2023 WD -ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20151010/ -https://www.w3.org/TR/2015/WD-html-aria-20151010/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231003/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231003/ -Steve Faulkner +Scott O'Hara - -d:html-aria-20151210 -html-aria-20151210 -10 December 2015 +d:html-aam-1.0-20231009 +html-aam-1.0-20231009 +9 October 2023 WD -ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20151210/ +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231009/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231009/ + + + +Scott O'Hara +- +d:html-aam-1.0-20231016 +html-aam-1.0-20231016 +16 October 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231016/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231016/ + + + +Scott O'Hara +- +d:html-aam-1.0-20231102 +html-aam-1.0-20231102 +2 November 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231102/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231102/ + + + +Scott O'Hara +- +d:html-aam-1.0-20231204 +html-aam-1.0-20231204 +4 December 2023 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231204/ +https://www.w3.org/TR/2023/WD-html-aam-1.0-20231204/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240206 +html-aam-1.0-20240206 +6 February 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240206/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240206/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240226 +html-aam-1.0-20240226 +26 February 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240226/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240226/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240408 +html-aam-1.0-20240408 +8 April 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240408/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240408/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240418 +html-aam-1.0-20240418 +18 April 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240418/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240418/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240621 +html-aam-1.0-20240621 +21 June 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240621/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240621/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240626 +html-aam-1.0-20240626 +26 June 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240626/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240626/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240711 +html-aam-1.0-20240711 +11 July 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240711/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240711/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240716 +html-aam-1.0-20240716 +16 July 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240716/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240716/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240815 +html-aam-1.0-20240815 +15 August 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240815/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240815/ + + + +Scott O'Hara +- +d:html-aam-1.0-20240819 +html-aam-1.0-20240819 +19 August 2024 +WD +HTML Accessibility API Mappings 1.0 +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240819/ +https://www.w3.org/TR/2024/WD-html-aam-1.0-20240819/ + + + +Scott O'Hara +- +d:html-aapi +html-aapi +29 September 2015 +NOTE +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/html-aapi/ +http://rawgithub.com/w3c/html-api-map/master/index.html + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-aapi-20110414 +html-aapi-20110414 +14 April 2011 +WD +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2011/WD-html-aapi-20110414/ +https://www.w3.org/TR/2011/WD-html-aapi-20110414/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-aapi-20110525 +html-aapi-20110525 +25 May 2011 +WD +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2011/WD-html-aapi-20110525/ +https://www.w3.org/TR/2011/WD-html-aapi-20110525/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-aapi-20120329 +html-aapi-20120329 +29 March 2012 +WD +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2012/WD-html-aapi-20120329/ +https://www.w3.org/TR/2012/WD-html-aapi-20120329/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-aapi-20121025 +html-aapi-20121025 +25 October 2012 +WD +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2012/WD-html-aapi-20121025/ +https://www.w3.org/TR/2012/WD-html-aapi-20121025/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +- +d:html-aapi-20130910 +html-aapi-20130910 +10 September 2013 +WD +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2013/WD-html-aapi-20130910/ +https://www.w3.org/TR/2013/WD-html-aapi-20130910/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-aapi-20131001 +html-aapi-20131001 +1 October 2013 +WD +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2013/WD-html-aapi-20131001/ +https://www.w3.org/TR/2013/WD-html-aapi-20131001/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-aapi-20150929 +html-aapi-20150929 +29 September 2015 +NOTE +HTML to Platform Accessibility APIs Implementation Guide +https://www.w3.org/TR/2015/NOTE-html-aapi-20150929/ +https://www.w3.org/TR/2015/NOTE-html-aapi-20150929/ + + + +Steve Faulkner +Cynthia Shelly +Jason Kiss +Alexander Surkov +- +d:html-alt-techniques +html-alt-techniques +21 May 2015 +NOTE +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/html-alt-techniques/ +https://w3c.github.io/alt-techniques/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20100624 +html-alt-techniques-20100624 +24 June 2010 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2010/WD-html-alt-techniques-20100624/ +https://www.w3.org/TR/2010/WD-html-alt-techniques-20100624/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20101019 +html-alt-techniques-20101019 +19 October 2010 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2010/WD-html-alt-techniques-20101019/ +https://www.w3.org/TR/2010/WD-html-alt-techniques-20101019/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20110113 +html-alt-techniques-20110113 +13 January 2011 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2011/WD-html-alt-techniques-20110113/ +https://www.w3.org/TR/2011/WD-html-alt-techniques-20110113/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20110405 +html-alt-techniques-20110405 +5 April 2011 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2011/WD-html-alt-techniques-20110405/ +https://www.w3.org/TR/2011/WD-html-alt-techniques-20110405/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20110525 +html-alt-techniques-20110525 +25 May 2011 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2011/WD-html-alt-techniques-20110525/ +https://www.w3.org/TR/2011/WD-html-alt-techniques-20110525/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20120329 +html-alt-techniques-20120329 +29 March 2012 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2012/WD-html-alt-techniques-20120329/ +https://www.w3.org/TR/2012/WD-html-alt-techniques-20120329/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-alt-techniques-20121025 +html-alt-techniques-20121025 +25 October 2012 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2012/WD-html-alt-techniques-20121025/ +https://www.w3.org/TR/2012/WD-html-alt-techniques-20121025/ + + + +Steve Faulkner +- +d:html-alt-techniques-20141023 +html-alt-techniques-20141023 +23 October 2014 +WD +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2014/WD-html-alt-techniques-20141023/ +https://www.w3.org/TR/2014/WD-html-alt-techniques-20141023/ + + + +Steve Faulkner +- +d:html-alt-techniques-20150521 +html-alt-techniques-20150521 +21 May 2015 +NOTE +HTML5: Techniques for providing useful text alternatives +https://www.w3.org/TR/2015/NOTE-html-alt-techniques-20150521/ +https://www.w3.org/TR/2015/NOTE-html-alt-techniques-20150521/ + + + +Shane McCarron +Liam Quin +Steve Faulkner +- +d:html-aria +html-aria +7 May 2024 +REC +ARIA in HTML +https://www.w3.org/TR/html-aria/ +https://w3c.github.io/html-aria/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20150414 +html-aria-20150414 +14 April 2015 +WD +ARIA in HTML +https://www.w3.org/TR/2015/WD-html-aria-20150414/ +https://www.w3.org/TR/2015/WD-html-aria-20150414/ + + + +Steve Faulkner +- +d:html-aria-20150514 +html-aria-20150514 +14 May 2015 +WD +ARIA in HTML +https://www.w3.org/TR/2015/WD-html-aria-20150514/ +https://www.w3.org/TR/2015/WD-html-aria-20150514/ + + + +Steve Faulkner +- +d:html-aria-20150902 +html-aria-20150902 +2 September 2015 +WD +ARIA in HTML +https://www.w3.org/TR/2015/WD-html-aria-20150902/ +https://www.w3.org/TR/2015/WD-html-aria-20150902/ + + + +Steve Faulkner +- +d:html-aria-20151010 +html-aria-20151010 +10 October 2015 +WD +ARIA in HTML +https://www.w3.org/TR/2015/WD-html-aria-20151010/ +https://www.w3.org/TR/2015/WD-html-aria-20151010/ + + + +Steve Faulkner +- +d:html-aria-20151210 +html-aria-20151210 +10 December 2015 +WD +ARIA in HTML https://www.w3.org/TR/2015/WD-html-aria-20151210/ +https://www.w3.org/TR/2015/WD-html-aria-20151210/ + + + +Steve Faulkner +- +d:html-aria-20151214 +html-aria-20151214 +14 December 2015 +WD +ARIA in HTML +https://www.w3.org/TR/2015/WD-html-aria-20151214/ +https://www.w3.org/TR/2015/WD-html-aria-20151214/ + + + +Steve Faulkner +- +d:html-aria-20151216 +html-aria-20151216 +16 December 2015 +WD +ARIA in HTML +https://www.w3.org/TR/2015/WD-html-aria-20151216/ +https://www.w3.org/TR/2015/WD-html-aria-20151216/ + + + +Steve Faulkner +- +d:html-aria-20160115 +html-aria-20160115 +15 January 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20160115/ +https://www.w3.org/TR/2016/WD-html-aria-20160115/ + + + +Steve Faulkner +- +d:html-aria-20160310 +html-aria-20160310 +10 March 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20160310/ +https://www.w3.org/TR/2016/WD-html-aria-20160310/ + + + +Steve Faulkner +- +d:html-aria-20160511 +html-aria-20160511 +11 May 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20160511/ +https://www.w3.org/TR/2016/WD-html-aria-20160511/ + + + +Steve Faulkner +- +d:html-aria-20160525 +html-aria-20160525 +25 May 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20160525/ +https://www.w3.org/TR/2016/WD-html-aria-20160525/ + + + +Steve Faulkner +- +d:html-aria-20160902 +html-aria-20160902 +2 September 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20160902/ +https://www.w3.org/TR/2016/WD-html-aria-20160902/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20160919 +html-aria-20160919 +19 September 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20160919/ +https://www.w3.org/TR/2016/WD-html-aria-20160919/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20161005 +html-aria-20161005 +5 October 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20161005/ +https://www.w3.org/TR/2016/WD-html-aria-20161005/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20161030 +html-aria-20161030 +30 October 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20161030/ +https://www.w3.org/TR/2016/WD-html-aria-20161030/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20161108 +html-aria-20161108 +8 November 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20161108/ +https://www.w3.org/TR/2016/WD-html-aria-20161108/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20161110 +html-aria-20161110 +10 November 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20161110/ +https://www.w3.org/TR/2016/WD-html-aria-20161110/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20161116 +html-aria-20161116 +16 November 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20161116/ +https://www.w3.org/TR/2016/WD-html-aria-20161116/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20161121 +html-aria-20161121 +21 November 2016 +WD +ARIA in HTML +https://www.w3.org/TR/2016/WD-html-aria-20161121/ +https://www.w3.org/TR/2016/WD-html-aria-20161121/ + + + +Scott O'Hara +Patrick Lauke +- +d:html-aria-20170103 +html-aria-20170103 +3 January 2017 +WD +ARIA in HTML +https://www.w3.org/TR/2017/WD-html-aria-20170103/ +https://www.w3.org/TR/2017/WD-html-aria-20170103/ Steve Faulkner - -d:html-aria-20151214 -html-aria-20151214 -14 December 2015 +d:html-aria-20170313 +html-aria-20170313 +13 March 2017 WD ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20151214/ -https://www.w3.org/TR/2015/WD-html-aria-20151214/ +https://www.w3.org/TR/2017/WD-html-aria-20170313/ +https://www.w3.org/TR/2017/WD-html-aria-20170313/ Steve Faulkner - -d:html-aria-20151216 -html-aria-20151216 -16 December 2015 +d:html-aria-20170323 +html-aria-20170323 +23 March 2017 WD ARIA in HTML -https://www.w3.org/TR/2015/WD-html-aria-20151216/ -https://www.w3.org/TR/2015/WD-html-aria-20151216/ +https://www.w3.org/TR/2017/WD-html-aria-20170323/ +https://www.w3.org/TR/2017/WD-html-aria-20170323/ Steve Faulkner - -d:html-aria-20160115 -html-aria-20160115 -15 January 2016 +d:html-aria-20170829 +html-aria-20170829 +29 August 2017 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20160115/ -https://www.w3.org/TR/2016/WD-html-aria-20160115/ +https://www.w3.org/TR/2017/WD-html-aria-20170829/ +https://www.w3.org/TR/2017/WD-html-aria-20170829/ + + + +Steve Faulkner +- +d:html-aria-20170908 +html-aria-20170908 +8 September 2017 +WD +ARIA in HTML +https://www.w3.org/TR/2017/WD-html-aria-20170908/ +https://www.w3.org/TR/2017/WD-html-aria-20170908/ + + + +Steve Faulkner +- +d:html-aria-20170909 +html-aria-20170909 +9 September 2017 +WD +ARIA in HTML +https://www.w3.org/TR/2017/WD-html-aria-20170909/ +https://www.w3.org/TR/2017/WD-html-aria-20170909/ + + + +Steve Faulkner +- +d:html-aria-20170926 +html-aria-20170926 +26 September 2017 +WD +ARIA in HTML +https://www.w3.org/TR/2017/WD-html-aria-20170926/ +https://www.w3.org/TR/2017/WD-html-aria-20170926/ + + + +Steve Faulkner +- +d:html-aria-20170929 +html-aria-20170929 +29 September 2017 +WD +ARIA in HTML +https://www.w3.org/TR/2017/WD-html-aria-20170929/ +https://www.w3.org/TR/2017/WD-html-aria-20170929/ + + + +Steve Faulkner +- +d:html-aria-20171013 +html-aria-20171013 +13 October 2017 +WD +ARIA in HTML +https://www.w3.org/TR/2017/WD-html-aria-20171013/ +https://www.w3.org/TR/2017/WD-html-aria-20171013/ + + + +Steve Faulkner +- +d:html-aria-20180131 +html-aria-20180131 +31 January 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180131/ +https://www.w3.org/TR/2018/WD-html-aria-20180131/ + + + +Steve Faulkner +- +d:html-aria-20180221 +html-aria-20180221 +21 February 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180221/ +https://www.w3.org/TR/2018/WD-html-aria-20180221/ + + + +Steve Faulkner +- +d:html-aria-20180226 +html-aria-20180226 +26 February 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180226/ +https://www.w3.org/TR/2018/WD-html-aria-20180226/ + + + +Steve Faulkner +- +d:html-aria-20180310 +html-aria-20180310 +10 March 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180310/ +https://www.w3.org/TR/2018/WD-html-aria-20180310/ + + + +Steve Faulkner +- +d:html-aria-20180414 +html-aria-20180414 +14 April 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180414/ +https://www.w3.org/TR/2018/WD-html-aria-20180414/ + + + +Steve Faulkner +- +d:html-aria-20180423 +html-aria-20180423 +23 April 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180423/ +https://www.w3.org/TR/2018/WD-html-aria-20180423/ + + + +Steve Faulkner +- +d:html-aria-20180519 +html-aria-20180519 +19 May 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180519/ +https://www.w3.org/TR/2018/WD-html-aria-20180519/ + + + +Steve Faulkner +- +d:html-aria-20180701 +html-aria-20180701 +1 July 2018 +WD +ARIA in HTML +https://www.w3.org/TR/2018/WD-html-aria-20180701/ +https://www.w3.org/TR/2018/WD-html-aria-20180701/ Steve Faulkner - -d:html-aria-20160310 -html-aria-20160310 -10 March 2016 +d:html-aria-20180708 +html-aria-20180708 +8 July 2018 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20160310/ -https://www.w3.org/TR/2016/WD-html-aria-20160310/ +https://www.w3.org/TR/2018/WD-html-aria-20180708/ +https://www.w3.org/TR/2018/WD-html-aria-20180708/ Steve Faulkner - -d:html-aria-20160511 -html-aria-20160511 -11 May 2016 +d:html-aria-20180926 +html-aria-20180926 +26 September 2018 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20160511/ -https://www.w3.org/TR/2016/WD-html-aria-20160511/ +https://www.w3.org/TR/2018/WD-html-aria-20180926/ +https://www.w3.org/TR/2018/WD-html-aria-20180926/ Steve Faulkner - -d:html-aria-20160525 -html-aria-20160525 -25 May 2016 +d:html-aria-20181018 +html-aria-20181018 +18 October 2018 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20160525/ -https://www.w3.org/TR/2016/WD-html-aria-20160525/ +https://www.w3.org/TR/2018/WD-html-aria-20181018/ +https://www.w3.org/TR/2018/WD-html-aria-20181018/ Steve Faulkner - -d:html-aria-20160902 -html-aria-20160902 -2 September 2016 +d:html-aria-20181214 +html-aria-20181214 +14 December 2018 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20160902/ -https://www.w3.org/TR/2016/WD-html-aria-20160902/ +https://www.w3.org/TR/2018/WD-html-aria-20181214/ +https://www.w3.org/TR/2018/WD-html-aria-20181214/ Steve Faulkner -Scott O'Hara -Patrick Lauke - -d:html-aria-20160919 -html-aria-20160919 -19 September 2016 +d:html-aria-20190530 +html-aria-20190530 +30 May 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20160919/ -https://www.w3.org/TR/2016/WD-html-aria-20160919/ +https://www.w3.org/TR/2019/WD-html-aria-20190530/ +https://www.w3.org/TR/2019/WD-html-aria-20190530/ Steve Faulkner -Scott O'Hara -Patrick Lauke - -d:html-aria-20161005 -html-aria-20161005 -5 October 2016 +d:html-aria-20190531 +html-aria-20190531 +31 May 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20161005/ -https://www.w3.org/TR/2016/WD-html-aria-20161005/ +https://www.w3.org/TR/2019/WD-html-aria-20190531/ +https://www.w3.org/TR/2019/WD-html-aria-20190531/ Steve Faulkner -Scott O'Hara -Patrick Lauke - -d:html-aria-20161030 -html-aria-20161030 -30 October 2016 +d:html-aria-20190701 +html-aria-20190701 +1 July 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20161030/ -https://www.w3.org/TR/2016/WD-html-aria-20161030/ +https://www.w3.org/TR/2019/WD-html-aria-20190701/ +https://www.w3.org/TR/2019/WD-html-aria-20190701/ Steve Faulkner -Scott O'Hara -Patrick Lauke - -d:html-aria-20161108 -html-aria-20161108 -8 November 2016 +d:html-aria-20190705 +html-aria-20190705 +5 July 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20161108/ -https://www.w3.org/TR/2016/WD-html-aria-20161108/ +https://www.w3.org/TR/2019/WD-html-aria-20190705/ +https://www.w3.org/TR/2019/WD-html-aria-20190705/ Steve Faulkner -Scott O'Hara -Patrick Lauke - -d:html-aria-20161110 -html-aria-20161110 -10 November 2016 +d:html-aria-20190925 +html-aria-20190925 +25 September 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20161110/ -https://www.w3.org/TR/2016/WD-html-aria-20161110/ +https://www.w3.org/TR/2019/WD-html-aria-20190925/ +https://www.w3.org/TR/2019/WD-html-aria-20190925/ Steve Faulkner -Scott O'Hara -Patrick Lauke - -d:html-aria-20161116 -html-aria-20161116 -16 November 2016 +d:html-aria-20190928 +html-aria-20190928 +28 September 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20161116/ -https://www.w3.org/TR/2016/WD-html-aria-20161116/ +https://www.w3.org/TR/2019/WD-html-aria-20190928/ +https://www.w3.org/TR/2019/WD-html-aria-20190928/ Steve Faulkner Scott O'Hara -Patrick Lauke - -d:html-aria-20161121 -html-aria-20161121 -21 November 2016 +d:html-aria-20190929 +html-aria-20190929 +29 September 2019 WD ARIA in HTML -https://www.w3.org/TR/2016/WD-html-aria-20161121/ -https://www.w3.org/TR/2016/WD-html-aria-20161121/ +https://www.w3.org/TR/2019/WD-html-aria-20190929/ +https://www.w3.org/TR/2019/WD-html-aria-20190929/ Steve Faulkner Scott O'Hara -Patrick Lauke - -d:html-aria-20170103 -html-aria-20170103 -3 January 2017 +d:html-aria-20191001 +html-aria-20191001 +1 October 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170103/ -https://www.w3.org/TR/2017/WD-html-aria-20170103/ +https://www.w3.org/TR/2019/WD-html-aria-20191001/ +https://www.w3.org/TR/2019/WD-html-aria-20191001/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170313 -html-aria-20170313 -13 March 2017 +d:html-aria-20191002 +html-aria-20191002 +2 October 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170313/ -https://www.w3.org/TR/2017/WD-html-aria-20170313/ +https://www.w3.org/TR/2019/WD-html-aria-20191002/ +https://www.w3.org/TR/2019/WD-html-aria-20191002/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170323 -html-aria-20170323 -23 March 2017 +d:html-aria-20191007 +html-aria-20191007 +7 October 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170323/ -https://www.w3.org/TR/2017/WD-html-aria-20170323/ +https://www.w3.org/TR/2019/WD-html-aria-20191007/ +https://www.w3.org/TR/2019/WD-html-aria-20191007/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170829 -html-aria-20170829 -29 August 2017 +d:html-aria-20191008 +html-aria-20191008 +8 October 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170829/ -https://www.w3.org/TR/2017/WD-html-aria-20170829/ +https://www.w3.org/TR/2019/WD-html-aria-20191008/ +https://www.w3.org/TR/2019/WD-html-aria-20191008/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170908 -html-aria-20170908 -8 September 2017 +d:html-aria-20191018 +html-aria-20191018 +18 October 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170908/ -https://www.w3.org/TR/2017/WD-html-aria-20170908/ +https://www.w3.org/TR/2019/WD-html-aria-20191018/ +https://www.w3.org/TR/2019/WD-html-aria-20191018/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170909 -html-aria-20170909 -9 September 2017 +d:html-aria-20191119 +html-aria-20191119 +19 November 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170909/ -https://www.w3.org/TR/2017/WD-html-aria-20170909/ +https://www.w3.org/TR/2019/WD-html-aria-20191119/ +https://www.w3.org/TR/2019/WD-html-aria-20191119/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170926 -html-aria-20170926 -26 September 2017 +d:html-aria-20191122 +html-aria-20191122 +22 November 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170926/ -https://www.w3.org/TR/2017/WD-html-aria-20170926/ +https://www.w3.org/TR/2019/WD-html-aria-20191122/ +https://www.w3.org/TR/2019/WD-html-aria-20191122/ Steve Faulkner +Scott O'Hara - -d:html-aria-20170929 -html-aria-20170929 -29 September 2017 +d:html-aria-20191203 +html-aria-20191203 +3 December 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20170929/ -https://www.w3.org/TR/2017/WD-html-aria-20170929/ +https://www.w3.org/TR/2019/WD-html-aria-20191203/ +https://www.w3.org/TR/2019/WD-html-aria-20191203/ Steve Faulkner +Scott O'Hara - -d:html-aria-20171013 -html-aria-20171013 -13 October 2017 +d:html-aria-20191206 +html-aria-20191206 +6 December 2019 WD ARIA in HTML -https://www.w3.org/TR/2017/WD-html-aria-20171013/ -https://www.w3.org/TR/2017/WD-html-aria-20171013/ +https://www.w3.org/TR/2019/WD-html-aria-20191206/ +https://www.w3.org/TR/2019/WD-html-aria-20191206/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180131 -html-aria-20180131 -31 January 2018 +d:html-aria-20200203 +html-aria-20200203 +3 February 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180131/ -https://www.w3.org/TR/2018/WD-html-aria-20180131/ +https://www.w3.org/TR/2020/WD-html-aria-20200203/ +https://www.w3.org/TR/2020/WD-html-aria-20200203/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180221 -html-aria-20180221 -21 February 2018 +d:html-aria-20200215 +html-aria-20200215 +15 February 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180221/ -https://www.w3.org/TR/2018/WD-html-aria-20180221/ +https://www.w3.org/TR/2020/WD-html-aria-20200215/ +https://www.w3.org/TR/2020/WD-html-aria-20200215/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180226 -html-aria-20180226 -26 February 2018 +d:html-aria-20200520 +html-aria-20200520 +20 May 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180226/ -https://www.w3.org/TR/2018/WD-html-aria-20180226/ +https://www.w3.org/TR/2020/WD-html-aria-20200520/ +https://www.w3.org/TR/2020/WD-html-aria-20200520/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180310 -html-aria-20180310 -10 March 2018 +d:html-aria-20200714 +html-aria-20200714 +14 July 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180310/ -https://www.w3.org/TR/2018/WD-html-aria-20180310/ +https://www.w3.org/TR/2020/WD-html-aria-20200714/ +https://www.w3.org/TR/2020/WD-html-aria-20200714/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180414 -html-aria-20180414 -14 April 2018 +d:html-aria-20200806 +html-aria-20200806 +6 August 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180414/ -https://www.w3.org/TR/2018/WD-html-aria-20180414/ +https://www.w3.org/TR/2020/WD-html-aria-20200806/ +https://www.w3.org/TR/2020/WD-html-aria-20200806/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180423 -html-aria-20180423 -23 April 2018 +d:html-aria-20200810 +html-aria-20200810 +10 August 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180423/ -https://www.w3.org/TR/2018/WD-html-aria-20180423/ +https://www.w3.org/TR/2020/WD-html-aria-20200810/ +https://www.w3.org/TR/2020/WD-html-aria-20200810/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180519 -html-aria-20180519 -19 May 2018 +d:html-aria-20200811 +html-aria-20200811 +11 August 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180519/ -https://www.w3.org/TR/2018/WD-html-aria-20180519/ +https://www.w3.org/TR/2020/WD-html-aria-20200811/ +https://www.w3.org/TR/2020/WD-html-aria-20200811/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180701 -html-aria-20180701 -1 July 2018 +d:html-aria-20200813 +html-aria-20200813 +13 August 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180701/ -https://www.w3.org/TR/2018/WD-html-aria-20180701/ +https://www.w3.org/TR/2020/WD-html-aria-20200813/ +https://www.w3.org/TR/2020/WD-html-aria-20200813/ Steve Faulkner +Scott O'Hara - -d:html-aria-20180708 -html-aria-20180708 -8 July 2018 +d:html-aria-20200814 +html-aria-20200814 +14 August 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180708/ -https://www.w3.org/TR/2018/WD-html-aria-20180708/ +https://www.w3.org/TR/2020/WD-html-aria-20200814/ +https://www.w3.org/TR/2020/WD-html-aria-20200814/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20180926 -html-aria-20180926 -26 September 2018 +d:html-aria-20201006 +html-aria-20201006 +6 October 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20180926/ -https://www.w3.org/TR/2018/WD-html-aria-20180926/ +https://www.w3.org/TR/2020/WD-html-aria-20201006/ +https://www.w3.org/TR/2020/WD-html-aria-20201006/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20181018 -html-aria-20181018 -18 October 2018 +d:html-aria-20201007 +html-aria-20201007 +7 October 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20181018/ -https://www.w3.org/TR/2018/WD-html-aria-20181018/ +https://www.w3.org/TR/2020/WD-html-aria-20201007/ +https://www.w3.org/TR/2020/WD-html-aria-20201007/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20181214 -html-aria-20181214 -14 December 2018 +d:html-aria-20201020 +html-aria-20201020 +20 October 2020 WD ARIA in HTML -https://www.w3.org/TR/2018/WD-html-aria-20181214/ -https://www.w3.org/TR/2018/WD-html-aria-20181214/ +https://www.w3.org/TR/2020/WD-html-aria-20201020/ +https://www.w3.org/TR/2020/WD-html-aria-20201020/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20190530 -html-aria-20190530 -30 May 2019 +d:html-aria-20201214 +html-aria-20201214 +14 December 2020 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190530/ -https://www.w3.org/TR/2019/WD-html-aria-20190530/ +https://www.w3.org/TR/2020/WD-html-aria-20201214/ +https://www.w3.org/TR/2020/WD-html-aria-20201214/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20190531 -html-aria-20190531 -31 May 2019 +d:html-aria-20210115 +html-aria-20210115 +15 January 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190531/ -https://www.w3.org/TR/2019/WD-html-aria-20190531/ +https://www.w3.org/TR/2021/WD-html-aria-20210115/ +https://www.w3.org/TR/2021/WD-html-aria-20210115/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20190701 -html-aria-20190701 -1 July 2019 +d:html-aria-20210213 +html-aria-20210213 +13 February 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190701/ -https://www.w3.org/TR/2019/WD-html-aria-20190701/ +https://www.w3.org/TR/2021/WD-html-aria-20210213/ +https://www.w3.org/TR/2021/WD-html-aria-20210213/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20190705 -html-aria-20190705 -5 July 2019 +d:html-aria-20210214 +html-aria-20210214 +14 February 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190705/ -https://www.w3.org/TR/2019/WD-html-aria-20190705/ +https://www.w3.org/TR/2021/WD-html-aria-20210214/ +https://www.w3.org/TR/2021/WD-html-aria-20210214/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20190925 -html-aria-20190925 -25 September 2019 +d:html-aria-20210219 +html-aria-20210219 +19 February 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190925/ -https://www.w3.org/TR/2019/WD-html-aria-20190925/ +https://www.w3.org/TR/2021/WD-html-aria-20210219/ +https://www.w3.org/TR/2021/WD-html-aria-20210219/ Steve Faulkner +Scott O'Hara +Patrick Lauke - -d:html-aria-20190928 -html-aria-20190928 -28 September 2019 +d:html-aria-20210220 +html-aria-20210220 +20 February 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190928/ -https://www.w3.org/TR/2019/WD-html-aria-20190928/ +https://www.w3.org/TR/2021/WD-html-aria-20210220/ +https://www.w3.org/TR/2021/WD-html-aria-20210220/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20190929 -html-aria-20190929 -29 September 2019 +d:html-aria-20210301 +html-aria-20210301 +1 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20190929/ -https://www.w3.org/TR/2019/WD-html-aria-20190929/ +https://www.w3.org/TR/2021/WD-html-aria-20210301/ +https://www.w3.org/TR/2021/WD-html-aria-20210301/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191001 -html-aria-20191001 -1 October 2019 +d:html-aria-20210306 +html-aria-20210306 +6 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191001/ -https://www.w3.org/TR/2019/WD-html-aria-20191001/ +https://www.w3.org/TR/2021/WD-html-aria-20210306/ +https://www.w3.org/TR/2021/WD-html-aria-20210306/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191002 -html-aria-20191002 -2 October 2019 +d:html-aria-20210307 +html-aria-20210307 +7 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191002/ -https://www.w3.org/TR/2019/WD-html-aria-20191002/ +https://www.w3.org/TR/2021/WD-html-aria-20210307/ +https://www.w3.org/TR/2021/WD-html-aria-20210307/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191007 -html-aria-20191007 -7 October 2019 +d:html-aria-20210308 +html-aria-20210308 +8 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191007/ -https://www.w3.org/TR/2019/WD-html-aria-20191007/ +https://www.w3.org/TR/2021/WD-html-aria-20210308/ +https://www.w3.org/TR/2021/WD-html-aria-20210308/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191008 -html-aria-20191008 -8 October 2019 +d:html-aria-20210309 +html-aria-20210309 +9 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191008/ -https://www.w3.org/TR/2019/WD-html-aria-20191008/ +https://www.w3.org/TR/2021/WD-html-aria-20210309/ +https://www.w3.org/TR/2021/WD-html-aria-20210309/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191018 -html-aria-20191018 -18 October 2019 +d:html-aria-20210310 +html-aria-20210310 +10 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191018/ -https://www.w3.org/TR/2019/WD-html-aria-20191018/ +https://www.w3.org/TR/2021/WD-html-aria-20210310/ +https://www.w3.org/TR/2021/WD-html-aria-20210310/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191119 -html-aria-20191119 -19 November 2019 +d:html-aria-20210313 +html-aria-20210313 +13 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191119/ -https://www.w3.org/TR/2019/WD-html-aria-20191119/ +https://www.w3.org/TR/2021/WD-html-aria-20210313/ +https://www.w3.org/TR/2021/WD-html-aria-20210313/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191122 -html-aria-20191122 -22 November 2019 +d:html-aria-20210314 +html-aria-20210314 +14 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191122/ -https://www.w3.org/TR/2019/WD-html-aria-20191122/ +https://www.w3.org/TR/2021/WD-html-aria-20210314/ +https://www.w3.org/TR/2021/WD-html-aria-20210314/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191203 -html-aria-20191203 -3 December 2019 +d:html-aria-20210315 +html-aria-20210315 +15 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191203/ -https://www.w3.org/TR/2019/WD-html-aria-20191203/ +https://www.w3.org/TR/2021/WD-html-aria-20210315/ +https://www.w3.org/TR/2021/WD-html-aria-20210315/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20191206 -html-aria-20191206 -6 December 2019 +d:html-aria-20210321 +html-aria-20210321 +21 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2019/WD-html-aria-20191206/ -https://www.w3.org/TR/2019/WD-html-aria-20191206/ +https://www.w3.org/TR/2021/WD-html-aria-20210321/ +https://www.w3.org/TR/2021/WD-html-aria-20210321/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200203 -html-aria-20200203 -3 February 2020 +d:html-aria-20210322 +html-aria-20210322 +22 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200203/ -https://www.w3.org/TR/2020/WD-html-aria-20200203/ +https://www.w3.org/TR/2021/WD-html-aria-20210322/ +https://www.w3.org/TR/2021/WD-html-aria-20210322/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200215 -html-aria-20200215 -15 February 2020 +d:html-aria-20210325 +html-aria-20210325 +25 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200215/ -https://www.w3.org/TR/2020/WD-html-aria-20200215/ +https://www.w3.org/TR/2021/WD-html-aria-20210325/ +https://www.w3.org/TR/2021/WD-html-aria-20210325/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200520 -html-aria-20200520 -20 May 2020 +d:html-aria-20210326 +html-aria-20210326 +26 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200520/ -https://www.w3.org/TR/2020/WD-html-aria-20200520/ +https://www.w3.org/TR/2021/WD-html-aria-20210326/ +https://www.w3.org/TR/2021/WD-html-aria-20210326/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200714 -html-aria-20200714 -14 July 2020 +d:html-aria-20210327 +html-aria-20210327 +27 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200714/ -https://www.w3.org/TR/2020/WD-html-aria-20200714/ +https://www.w3.org/TR/2021/WD-html-aria-20210327/ +https://www.w3.org/TR/2021/WD-html-aria-20210327/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200806 -html-aria-20200806 -6 August 2020 +d:html-aria-20210328 +html-aria-20210328 +28 March 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200806/ -https://www.w3.org/TR/2020/WD-html-aria-20200806/ +https://www.w3.org/TR/2021/WD-html-aria-20210328/ +https://www.w3.org/TR/2021/WD-html-aria-20210328/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200810 -html-aria-20200810 -10 August 2020 +d:html-aria-20210407 +html-aria-20210407 +7 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200810/ -https://www.w3.org/TR/2020/WD-html-aria-20200810/ +https://www.w3.org/TR/2021/WD-html-aria-20210407/ +https://www.w3.org/TR/2021/WD-html-aria-20210407/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200811 -html-aria-20200811 -11 August 2020 +d:html-aria-20210408 +html-aria-20210408 +8 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200811/ -https://www.w3.org/TR/2020/WD-html-aria-20200811/ +https://www.w3.org/TR/2021/WD-html-aria-20210408/ +https://www.w3.org/TR/2021/WD-html-aria-20210408/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200813 -html-aria-20200813 -13 August 2020 +d:html-aria-20210414 +html-aria-20210414 +14 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200813/ -https://www.w3.org/TR/2020/WD-html-aria-20200813/ +https://www.w3.org/TR/2021/WD-html-aria-20210414/ +https://www.w3.org/TR/2021/WD-html-aria-20210414/ Steve Faulkner Scott O'Hara +Patrick Lauke - -d:html-aria-20200814 -html-aria-20200814 -14 August 2020 +d:html-aria-20210415 +html-aria-20210415 +15 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20200814/ -https://www.w3.org/TR/2020/WD-html-aria-20200814/ +https://www.w3.org/TR/2021/WD-html-aria-20210415/ +https://www.w3.org/TR/2021/WD-html-aria-20210415/ @@ -2652,13 +3485,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20201006 -html-aria-20201006 -6 October 2020 +d:html-aria-20210416 +html-aria-20210416 +16 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20201006/ -https://www.w3.org/TR/2020/WD-html-aria-20201006/ +https://www.w3.org/TR/2021/WD-html-aria-20210416/ +https://www.w3.org/TR/2021/WD-html-aria-20210416/ @@ -2666,13 +3499,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20201007 -html-aria-20201007 -7 October 2020 +d:html-aria-20210419 +html-aria-20210419 +19 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20201007/ -https://www.w3.org/TR/2020/WD-html-aria-20201007/ +https://www.w3.org/TR/2021/WD-html-aria-20210419/ +https://www.w3.org/TR/2021/WD-html-aria-20210419/ @@ -2680,13 +3513,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20201020 -html-aria-20201020 -20 October 2020 +d:html-aria-20210420 +html-aria-20210420 +20 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20201020/ -https://www.w3.org/TR/2020/WD-html-aria-20201020/ +https://www.w3.org/TR/2021/WD-html-aria-20210420/ +https://www.w3.org/TR/2021/WD-html-aria-20210420/ @@ -2694,13 +3527,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20201214 -html-aria-20201214 -14 December 2020 +d:html-aria-20210428 +html-aria-20210428 +28 April 2021 WD ARIA in HTML -https://www.w3.org/TR/2020/WD-html-aria-20201214/ -https://www.w3.org/TR/2020/WD-html-aria-20201214/ +https://www.w3.org/TR/2021/WD-html-aria-20210428/ +https://www.w3.org/TR/2021/WD-html-aria-20210428/ @@ -2708,13 +3541,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210115 -html-aria-20210115 -15 January 2021 +d:html-aria-20210501 +html-aria-20210501 +1 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210115/ -https://www.w3.org/TR/2021/WD-html-aria-20210115/ +https://www.w3.org/TR/2021/WD-html-aria-20210501/ +https://www.w3.org/TR/2021/WD-html-aria-20210501/ @@ -2722,13 +3555,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210213 -html-aria-20210213 -13 February 2021 +d:html-aria-20210513 +html-aria-20210513 +13 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210213/ -https://www.w3.org/TR/2021/WD-html-aria-20210213/ +https://www.w3.org/TR/2021/WD-html-aria-20210513/ +https://www.w3.org/TR/2021/WD-html-aria-20210513/ @@ -2736,13 +3569,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210214 -html-aria-20210214 -14 February 2021 +d:html-aria-20210515 +html-aria-20210515 +15 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210214/ -https://www.w3.org/TR/2021/WD-html-aria-20210214/ +https://www.w3.org/TR/2021/WD-html-aria-20210515/ +https://www.w3.org/TR/2021/WD-html-aria-20210515/ @@ -2750,13 +3583,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210219 -html-aria-20210219 -19 February 2021 +d:html-aria-20210516 +html-aria-20210516 +16 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210219/ -https://www.w3.org/TR/2021/WD-html-aria-20210219/ +https://www.w3.org/TR/2021/WD-html-aria-20210516/ +https://www.w3.org/TR/2021/WD-html-aria-20210516/ @@ -2764,13 +3597,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210220 -html-aria-20210220 -20 February 2021 +d:html-aria-20210517 +html-aria-20210517 +17 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210220/ -https://www.w3.org/TR/2021/WD-html-aria-20210220/ +https://www.w3.org/TR/2021/WD-html-aria-20210517/ +https://www.w3.org/TR/2021/WD-html-aria-20210517/ @@ -2778,13 +3611,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210301 -html-aria-20210301 -1 March 2021 +d:html-aria-20210525 +html-aria-20210525 +25 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210301/ -https://www.w3.org/TR/2021/WD-html-aria-20210301/ +https://www.w3.org/TR/2021/WD-html-aria-20210525/ +https://www.w3.org/TR/2021/WD-html-aria-20210525/ @@ -2792,13 +3625,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210306 -html-aria-20210306 -6 March 2021 +d:html-aria-20210526 +html-aria-20210526 +26 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210306/ -https://www.w3.org/TR/2021/WD-html-aria-20210306/ +https://www.w3.org/TR/2021/WD-html-aria-20210526/ +https://www.w3.org/TR/2021/WD-html-aria-20210526/ @@ -2806,13 +3639,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210307 -html-aria-20210307 -7 March 2021 +d:html-aria-20210530 +html-aria-20210530 +30 May 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210307/ -https://www.w3.org/TR/2021/WD-html-aria-20210307/ +https://www.w3.org/TR/2021/WD-html-aria-20210530/ +https://www.w3.org/TR/2021/WD-html-aria-20210530/ @@ -2820,13 +3653,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210308 -html-aria-20210308 -8 March 2021 +d:html-aria-20210611 +html-aria-20210611 +11 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210308/ -https://www.w3.org/TR/2021/WD-html-aria-20210308/ +https://www.w3.org/TR/2021/WD-html-aria-20210611/ +https://www.w3.org/TR/2021/WD-html-aria-20210611/ @@ -2834,13 +3667,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210309 -html-aria-20210309 -9 March 2021 +d:html-aria-20210618 +html-aria-20210618 +18 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210309/ -https://www.w3.org/TR/2021/WD-html-aria-20210309/ +https://www.w3.org/TR/2021/WD-html-aria-20210618/ +https://www.w3.org/TR/2021/WD-html-aria-20210618/ @@ -2848,13 +3681,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210310 -html-aria-20210310 -10 March 2021 +d:html-aria-20210623 +html-aria-20210623 +23 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210310/ -https://www.w3.org/TR/2021/WD-html-aria-20210310/ +https://www.w3.org/TR/2021/WD-html-aria-20210623/ +https://www.w3.org/TR/2021/WD-html-aria-20210623/ @@ -2862,13 +3695,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210313 -html-aria-20210313 -13 March 2021 +d:html-aria-20210624 +html-aria-20210624 +24 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210313/ -https://www.w3.org/TR/2021/WD-html-aria-20210313/ +https://www.w3.org/TR/2021/WD-html-aria-20210624/ +https://www.w3.org/TR/2021/WD-html-aria-20210624/ @@ -2876,13 +3709,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210314 -html-aria-20210314 -14 March 2021 +d:html-aria-20210625 +html-aria-20210625 +25 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210314/ -https://www.w3.org/TR/2021/WD-html-aria-20210314/ +https://www.w3.org/TR/2021/WD-html-aria-20210625/ +https://www.w3.org/TR/2021/WD-html-aria-20210625/ @@ -2890,13 +3723,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210315 -html-aria-20210315 -15 March 2021 +d:html-aria-20210626 +html-aria-20210626 +26 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210315/ -https://www.w3.org/TR/2021/WD-html-aria-20210315/ +https://www.w3.org/TR/2021/WD-html-aria-20210626/ +https://www.w3.org/TR/2021/WD-html-aria-20210626/ @@ -2904,13 +3737,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210321 -html-aria-20210321 -21 March 2021 +d:html-aria-20210627 +html-aria-20210627 +27 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210321/ -https://www.w3.org/TR/2021/WD-html-aria-20210321/ +https://www.w3.org/TR/2021/WD-html-aria-20210627/ +https://www.w3.org/TR/2021/WD-html-aria-20210627/ @@ -2918,13 +3751,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210322 -html-aria-20210322 -22 March 2021 +d:html-aria-20210628 +html-aria-20210628 +28 June 2021 WD ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210322/ -https://www.w3.org/TR/2021/WD-html-aria-20210322/ +https://www.w3.org/TR/2021/WD-html-aria-20210628/ +https://www.w3.org/TR/2021/WD-html-aria-20210628/ @@ -2932,13 +3765,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210325 -html-aria-20210325 -25 March 2021 -WD +d:html-aria-20210706 +html-aria-20210706 +6 July 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210325/ -https://www.w3.org/TR/2021/WD-html-aria-20210325/ +https://www.w3.org/TR/2021/CR-html-aria-20210706/ +https://www.w3.org/TR/2021/CR-html-aria-20210706/ @@ -2946,13 +3779,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210326 -html-aria-20210326 -26 March 2021 -WD +d:html-aria-20210707 +html-aria-20210707 +7 July 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210326/ -https://www.w3.org/TR/2021/WD-html-aria-20210326/ +https://www.w3.org/TR/2021/CRD-html-aria-20210707/ +https://www.w3.org/TR/2021/CRD-html-aria-20210707/ @@ -2960,13 +3793,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210327 -html-aria-20210327 -27 March 2021 -WD +d:html-aria-20210716 +html-aria-20210716 +16 July 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210327/ -https://www.w3.org/TR/2021/WD-html-aria-20210327/ +https://www.w3.org/TR/2021/CRD-html-aria-20210716/ +https://www.w3.org/TR/2021/CRD-html-aria-20210716/ @@ -2974,13 +3807,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210328 -html-aria-20210328 -28 March 2021 -WD +d:html-aria-20210717 +html-aria-20210717 +17 July 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210328/ -https://www.w3.org/TR/2021/WD-html-aria-20210328/ +https://www.w3.org/TR/2021/CRD-html-aria-20210717/ +https://www.w3.org/TR/2021/CRD-html-aria-20210717/ @@ -2988,13 +3821,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210407 -html-aria-20210407 -7 April 2021 -WD +d:html-aria-20210727 +html-aria-20210727 +27 July 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210407/ -https://www.w3.org/TR/2021/WD-html-aria-20210407/ +https://www.w3.org/TR/2021/CRD-html-aria-20210727/ +https://www.w3.org/TR/2021/CRD-html-aria-20210727/ @@ -3002,13 +3835,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210408 -html-aria-20210408 -8 April 2021 -WD +d:html-aria-20210804 +html-aria-20210804 +4 August 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210408/ -https://www.w3.org/TR/2021/WD-html-aria-20210408/ +https://www.w3.org/TR/2021/CRD-html-aria-20210804/ +https://www.w3.org/TR/2021/CRD-html-aria-20210804/ @@ -3016,13 +3849,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210414 -html-aria-20210414 -14 April 2021 -WD +d:html-aria-20210823 +html-aria-20210823 +23 August 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210414/ -https://www.w3.org/TR/2021/WD-html-aria-20210414/ +https://www.w3.org/TR/2021/CRD-html-aria-20210823/ +https://www.w3.org/TR/2021/CRD-html-aria-20210823/ @@ -3030,13 +3863,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210415 -html-aria-20210415 -15 April 2021 -WD +d:html-aria-20210831 +html-aria-20210831 +31 August 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210415/ -https://www.w3.org/TR/2021/WD-html-aria-20210415/ +https://www.w3.org/TR/2021/CRD-html-aria-20210831/ +https://www.w3.org/TR/2021/CRD-html-aria-20210831/ @@ -3044,13 +3877,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210416 -html-aria-20210416 -16 April 2021 -WD +d:html-aria-20210905 +html-aria-20210905 +5 September 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210416/ -https://www.w3.org/TR/2021/WD-html-aria-20210416/ +https://www.w3.org/TR/2021/CRD-html-aria-20210905/ +https://www.w3.org/TR/2021/CRD-html-aria-20210905/ @@ -3058,13 +3891,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210419 -html-aria-20210419 -19 April 2021 -WD +d:html-aria-20210924 +html-aria-20210924 +24 September 2021 +CR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210419/ -https://www.w3.org/TR/2021/WD-html-aria-20210419/ +https://www.w3.org/TR/2021/CRD-html-aria-20210924/ +https://www.w3.org/TR/2021/CRD-html-aria-20210924/ @@ -3072,13 +3905,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210420 -html-aria-20210420 -20 April 2021 -WD +d:html-aria-20210930 +html-aria-20210930 +30 September 2021 +PR ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210420/ -https://www.w3.org/TR/2021/WD-html-aria-20210420/ +https://www.w3.org/TR/2021/PR-html-aria-20210930/ +https://www.w3.org/TR/2021/PR-html-aria-20210930/ @@ -3086,13 +3919,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210428 -html-aria-20210428 -28 April 2021 -WD +d:html-aria-20211209 +html-aria-20211209 +9 December 2021 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210428/ -https://www.w3.org/TR/2021/WD-html-aria-20210428/ +https://www.w3.org/TR/2021/REC-html-aria-20211209/ +https://www.w3.org/TR/2021/REC-html-aria-20211209/ @@ -3100,13 +3933,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210501 -html-aria-20210501 -1 May 2021 -WD +d:html-aria-20220927 +html-aria-20220927 +27 September 2022 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210501/ -https://www.w3.org/TR/2021/WD-html-aria-20210501/ +https://www.w3.org/TR/2022/REC-html-aria-20220927/ +https://www.w3.org/TR/2022/REC-html-aria-20220927/ @@ -3114,13 +3947,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210513 -html-aria-20210513 -13 May 2021 -WD +d:html-aria-20221221 +html-aria-20221221 +21 December 2022 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210513/ -https://www.w3.org/TR/2021/WD-html-aria-20210513/ +https://www.w3.org/TR/2022/REC-html-aria-20221221/ +https://www.w3.org/TR/2022/REC-html-aria-20221221/ @@ -3128,13 +3961,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210515 -html-aria-20210515 -15 May 2021 -WD +d:html-aria-20230202 +html-aria-20230202 +2 February 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210515/ -https://www.w3.org/TR/2021/WD-html-aria-20210515/ +https://www.w3.org/TR/2023/REC-html-aria-20230202/ +https://www.w3.org/TR/2023/REC-html-aria-20230202/ @@ -3142,13 +3975,27 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210516 -html-aria-20210516 -16 May 2021 -WD +d:html-aria-20230203 +html-aria-20230203 +3 February 2023 +REC +ARIA in HTML +https://www.w3.org/TR/2023/REC-html-aria-20230203/ +https://www.w3.org/TR/2023/REC-html-aria-20230203/ + + + +Steve Faulkner +Scott O'Hara +Patrick Lauke +- +d:html-aria-20230207 +html-aria-20230207 +7 February 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210516/ -https://www.w3.org/TR/2021/WD-html-aria-20210516/ +https://www.w3.org/TR/2023/REC-html-aria-20230207/ +https://www.w3.org/TR/2023/REC-html-aria-20230207/ @@ -3156,13 +4003,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210517 -html-aria-20210517 -17 May 2021 -WD +d:html-aria-20230213 +html-aria-20230213 +13 February 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210517/ -https://www.w3.org/TR/2021/WD-html-aria-20210517/ +https://www.w3.org/TR/2023/REC-html-aria-20230213/ +https://www.w3.org/TR/2023/REC-html-aria-20230213/ @@ -3170,13 +4017,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210525 -html-aria-20210525 -25 May 2021 -WD +d:html-aria-20230215 +html-aria-20230215 +15 February 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210525/ -https://www.w3.org/TR/2021/WD-html-aria-20210525/ +https://www.w3.org/TR/2023/REC-html-aria-20230215/ +https://www.w3.org/TR/2023/REC-html-aria-20230215/ @@ -3184,13 +4031,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210526 -html-aria-20210526 -26 May 2021 -WD +d:html-aria-20230304 +html-aria-20230304 +4 March 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210526/ -https://www.w3.org/TR/2021/WD-html-aria-20210526/ +https://www.w3.org/TR/2023/REC-html-aria-20230304/ +https://www.w3.org/TR/2023/REC-html-aria-20230304/ @@ -3198,13 +4045,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210530 -html-aria-20210530 -30 May 2021 -WD +d:html-aria-20230306 +html-aria-20230306 +6 March 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210530/ -https://www.w3.org/TR/2021/WD-html-aria-20210530/ +https://www.w3.org/TR/2023/REC-html-aria-20230306/ +https://www.w3.org/TR/2023/REC-html-aria-20230306/ @@ -3212,13 +4059,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210611 -html-aria-20210611 -11 June 2021 -WD +d:html-aria-20230324 +html-aria-20230324 +24 March 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210611/ -https://www.w3.org/TR/2021/WD-html-aria-20210611/ +https://www.w3.org/TR/2023/REC-html-aria-20230324/ +https://www.w3.org/TR/2023/REC-html-aria-20230324/ @@ -3226,13 +4073,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210618 -html-aria-20210618 -18 June 2021 -WD +d:html-aria-20230515 +html-aria-20230515 +15 May 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210618/ -https://www.w3.org/TR/2021/WD-html-aria-20210618/ +https://www.w3.org/TR/2023/REC-html-aria-20230515/ +https://www.w3.org/TR/2023/REC-html-aria-20230515/ @@ -3240,13 +4087,13 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210623 -html-aria-20210623 -23 June 2021 -WD +d:html-aria-20230531 +html-aria-20230531 +31 May 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210623/ -https://www.w3.org/TR/2021/WD-html-aria-20210623/ +https://www.w3.org/TR/2023/REC-html-aria-20230531/ +https://www.w3.org/TR/2023/REC-html-aria-20230531/ @@ -3254,269 +4101,250 @@ Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210624 -html-aria-20210624 -24 June 2021 -WD +d:html-aria-20230612 +html-aria-20230612 +12 June 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210624/ -https://www.w3.org/TR/2021/WD-html-aria-20210624/ +https://www.w3.org/TR/2023/REC-html-aria-20230612/ +https://www.w3.org/TR/2023/REC-html-aria-20230612/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210625 -html-aria-20210625 -25 June 2021 -WD +d:html-aria-20230614 +html-aria-20230614 +14 June 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210625/ -https://www.w3.org/TR/2021/WD-html-aria-20210625/ +https://www.w3.org/TR/2023/REC-html-aria-20230614/ +https://www.w3.org/TR/2023/REC-html-aria-20230614/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210626 -html-aria-20210626 -26 June 2021 -WD +d:html-aria-20230626 +html-aria-20230626 +26 June 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210626/ -https://www.w3.org/TR/2021/WD-html-aria-20210626/ +https://www.w3.org/TR/2023/REC-html-aria-20230626/ +https://www.w3.org/TR/2023/REC-html-aria-20230626/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210627 -html-aria-20210627 -27 June 2021 -WD +d:html-aria-20230629 +html-aria-20230629 +29 June 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210627/ -https://www.w3.org/TR/2021/WD-html-aria-20210627/ +https://www.w3.org/TR/2023/REC-html-aria-20230629/ +https://www.w3.org/TR/2023/REC-html-aria-20230629/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210628 -html-aria-20210628 -28 June 2021 -WD +d:html-aria-20230705 +html-aria-20230705 +5 July 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/WD-html-aria-20210628/ -https://www.w3.org/TR/2021/WD-html-aria-20210628/ +https://www.w3.org/TR/2023/REC-html-aria-20230705/ +https://www.w3.org/TR/2023/REC-html-aria-20230705/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210706 -html-aria-20210706 -6 July 2021 -CR +d:html-aria-20230709 +html-aria-20230709 +9 July 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CR-html-aria-20210706/ -https://www.w3.org/TR/2021/CR-html-aria-20210706/ +https://www.w3.org/TR/2023/REC-html-aria-20230709/ +https://www.w3.org/TR/2023/REC-html-aria-20230709/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210707 -html-aria-20210707 -7 July 2021 -CR +d:html-aria-20230712 +html-aria-20230712 +12 July 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210707/ -https://www.w3.org/TR/2021/CRD-html-aria-20210707/ +https://www.w3.org/TR/2023/REC-html-aria-20230712/ +https://www.w3.org/TR/2023/REC-html-aria-20230712/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210716 -html-aria-20210716 -16 July 2021 -CR +d:html-aria-20230821 +html-aria-20230821 +21 August 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210716/ -https://www.w3.org/TR/2021/CRD-html-aria-20210716/ +https://www.w3.org/TR/2023/REC-html-aria-20230821/ +https://www.w3.org/TR/2023/REC-html-aria-20230821/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210717 -html-aria-20210717 -17 July 2021 -CR +d:html-aria-20230827 +html-aria-20230827 +27 August 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210717/ -https://www.w3.org/TR/2021/CRD-html-aria-20210717/ +https://www.w3.org/TR/2023/REC-html-aria-20230827/ +https://www.w3.org/TR/2023/REC-html-aria-20230827/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210727 -html-aria-20210727 -27 July 2021 -CR +d:html-aria-20231003 +html-aria-20231003 +3 October 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210727/ -https://www.w3.org/TR/2021/CRD-html-aria-20210727/ +https://www.w3.org/TR/2023/REC-html-aria-20231003/ +https://www.w3.org/TR/2023/REC-html-aria-20231003/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210804 -html-aria-20210804 -4 August 2021 -CR +d:html-aria-20231004 +html-aria-20231004 +4 October 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210804/ -https://www.w3.org/TR/2021/CRD-html-aria-20210804/ +https://www.w3.org/TR/2023/REC-html-aria-20231004/ +https://www.w3.org/TR/2023/REC-html-aria-20231004/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210823 -html-aria-20210823 -23 August 2021 -CR +d:html-aria-20231103 +html-aria-20231103 +3 November 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210823/ -https://www.w3.org/TR/2021/CRD-html-aria-20210823/ +https://www.w3.org/TR/2023/REC-html-aria-20231103/ +https://www.w3.org/TR/2023/REC-html-aria-20231103/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210831 -html-aria-20210831 -31 August 2021 -CR +d:html-aria-20231213 +html-aria-20231213 +13 December 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210831/ -https://www.w3.org/TR/2021/CRD-html-aria-20210831/ +https://www.w3.org/TR/2023/REC-html-aria-20231213/ +https://www.w3.org/TR/2023/REC-html-aria-20231213/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210905 -html-aria-20210905 -5 September 2021 -CR +d:html-aria-20231221 +html-aria-20231221 +21 December 2023 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210905/ -https://www.w3.org/TR/2021/CRD-html-aria-20210905/ +https://www.w3.org/TR/2023/REC-html-aria-20231221/ +https://www.w3.org/TR/2023/REC-html-aria-20231221/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210924 -html-aria-20210924 -24 September 2021 -CR +d:html-aria-20240216 +html-aria-20240216 +16 February 2024 +REC ARIA in HTML -https://www.w3.org/TR/2021/CRD-html-aria-20210924/ -https://www.w3.org/TR/2021/CRD-html-aria-20210924/ +https://www.w3.org/TR/2024/REC-html-aria-20240216/ +https://www.w3.org/TR/2024/REC-html-aria-20240216/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20210930 -html-aria-20210930 -30 September 2021 -PR +d:html-aria-20240409 +html-aria-20240409 +9 April 2024 +REC ARIA in HTML -https://www.w3.org/TR/2021/PR-html-aria-20210930/ -https://www.w3.org/TR/2021/PR-html-aria-20210930/ +https://www.w3.org/TR/2024/REC-html-aria-20240409/ +https://www.w3.org/TR/2024/REC-html-aria-20240409/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20211209 -html-aria-20211209 -9 December 2021 +d:html-aria-20240415 +html-aria-20240415 +15 April 2024 REC ARIA in HTML -https://www.w3.org/TR/2021/REC-html-aria-20211209/ -https://www.w3.org/TR/2021/REC-html-aria-20211209/ +https://www.w3.org/TR/2024/REC-html-aria-20240415/ +https://www.w3.org/TR/2024/REC-html-aria-20240415/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20220927 -html-aria-20220927 -27 September 2022 +d:html-aria-20240430 +html-aria-20240430 +30 April 2024 REC ARIA in HTML -https://www.w3.org/TR/2022/REC-html-aria-20220927/ -https://www.w3.org/TR/2022/REC-html-aria-20220927/ +https://www.w3.org/TR/2024/REC-html-aria-20240430/ +https://www.w3.org/TR/2024/REC-html-aria-20240430/ -Steve Faulkner Scott O'Hara Patrick Lauke - -d:html-aria-20221221 -html-aria-20221221 -21 December 2022 +d:html-aria-20240507 +html-aria-20240507 +7 May 2024 REC ARIA in HTML -https://www.w3.org/TR/2022/REC-html-aria-20221221/ -https://www.w3.org/TR/2022/REC-html-aria-20221221/ +https://www.w3.org/TR/2024/REC-html-aria-20240507/ +https://www.w3.org/TR/2024/REC-html-aria-20240507/ -Steve Faulkner Scott O'Hara Patrick Lauke - @@ -3646,11 +4474,11 @@ Léonie Watson - d:html-imports html-imports -25 February 2016 +15 June 2023 WD HTML Imports https://www.w3.org/TR/html-imports/ -https://w3c.github.io/webcomponents/spec/imports/ +https://wicg.github.io/webcomponents/spec/imports/ @@ -3692,6 +4520,19 @@ https://www.w3.org/TR/2016/WD-html-imports-20160225/ +Dimitri Glazkov +Hajime Morita +- +d:html-imports-20230615 +html-imports-20230615 +15 June 2023 +WD +HTML Imports +https://www.w3.org/TR/2023/DISC-html-imports-20230615/ +https://www.w3.org/TR/2023/DISC-html-imports-20230615/ + + + Dimitri Glazkov Hajime Morita - @@ -3889,7 +4730,7 @@ https://www.w3.org/TR/html-markup/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20100304 html-markup-20100304 @@ -3901,7 +4742,7 @@ https://www.w3.org/TR/2010/WD-html-markup-20100304/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20100624 html-markup-20100624 @@ -3913,7 +4754,7 @@ https://www.w3.org/TR/2010/WD-html-markup-20100624/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20101019 html-markup-20101019 @@ -3925,7 +4766,7 @@ https://www.w3.org/TR/2010/WD-html-markup-20101019/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20110113 html-markup-20110113 @@ -3937,7 +4778,7 @@ https://www.w3.org/TR/2011/WD-html-markup-20110113/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20110405 html-markup-20110405 @@ -3949,7 +4790,7 @@ https://www.w3.org/TR/2011/WD-html-markup-20110405/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20110525 html-markup-20110525 @@ -3961,7 +4802,7 @@ https://www.w3.org/TR/2011/WD-html-markup-20110525/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20120329 html-markup-20120329 @@ -3973,7 +4814,7 @@ https://www.w3.org/TR/2012/WD-html-markup-20120329/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-markup-20121025 html-markup-20121025 @@ -3997,7 +4838,7 @@ https://www.w3.org/TR/2013/NOTE-html-markup-20130528/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html-media-capture html-media-capture @@ -4619,15 +5460,15 @@ Manu Sporny - d:html-ruby-extensions html-ruby-extensions -4 February 2014 -NOTE -W3C HTML Ruby Markup Extensions +27 June 2024 +WD +HTML Ruby Markup Extensions https://www.w3.org/TR/html-ruby-extensions/ -https://darobin.github.com/html-ruby/ +https://w3c.github.io/html-ruby/ -Robin Berjon +Florian Rivoal - d:html-ruby-extensions-20131022 html-ruby-extensions-20131022 @@ -4653,6 +5494,90 @@ https://www.w3.org/TR/2014/NOTE-html-ruby-extensions-20140204/ Robin Berjon - +d:html-ruby-extensions-20240507 +html-ruby-extensions-20240507 +7 May 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240507/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240507/ + + + +Florian Rivoal +- +d:html-ruby-extensions-20240523 +html-ruby-extensions-20240523 +23 May 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240523/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240523/ + + + +Florian Rivoal +- +d:html-ruby-extensions-20240529 +html-ruby-extensions-20240529 +29 May 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240529/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240529/ + + + +Florian Rivoal +- +d:html-ruby-extensions-20240618 +html-ruby-extensions-20240618 +18 June 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240618/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240618/ + + + +Florian Rivoal +- +d:html-ruby-extensions-20240619 +html-ruby-extensions-20240619 +19 June 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240619/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240619/ + + + +Florian Rivoal +- +d:html-ruby-extensions-20240624 +html-ruby-extensions-20240624 +24 June 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240624/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240624/ + + + +Florian Rivoal +- +d:html-ruby-extensions-20240627 +html-ruby-extensions-20240627 +27 June 2024 +WD +HTML Ruby Markup Extensions +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240627/ +https://www.w3.org/TR/2024/WD-html-ruby-extensions-20240627/ + + + +Florian Rivoal +- d:html-srcset html-srcset 19 August 2014 @@ -5715,7 +6640,7 @@ https://www.w3.org/TR/html5-pubnotes/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html5-pubnotes-20080610 html5-pubnotes-20080610 @@ -5727,7 +6652,7 @@ https://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) - d:html51 html51 @@ -6785,9 +7710,17 @@ https://www.w3.org/TR/1998/NOTE-HTMLComponents-19981023 - -s:htmliccprof +d:htmliccprof HTMLICCPROF -Apple Computer with input from Microsoft Corporation. <a href="http://www.apple.com/colorsync/benefits/web/icc-profiles.html"><cite>Proposal for HTML support of ICC profiles.</cite></a> URL: <a href="http://www.apple.com/colorsync/benefits/web/icc-profiles.html">http://www.apple.com/colorsync/benefits/web/icc-profiles.html</a> + + +Proposal for HTML support of ICC profiles +http://www.apple.com/colorsync/benefits/web/icc-profiles.html + + + + +Apple Computer with input from Microsoft Corporation - a:htmlmediacapture HTMLMEDIACAPTURE diff --git a/bikeshed/spec-data/readonly/biblio/biblio-hu.data b/bikeshed/spec-data/readonly/biblio/biblio-hu.data index d420a65ff5..f4dd73b751 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-hu.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-hu.data @@ -1,4 +1,13 @@ -s:hunterzhan +d:hunterzhan HunterZhan -Hunter, Jane; Zhan, Zhimin. <a href="http://archive.dstc.edu.au/RDU/staff/jane-hunter/PNG/paper.html">&ldquo;An Indexing and Querying System for Online Images Based on the PNG Format and Embedded Metadata&rdquo;</a> in: <cite>ARLIS/ANZ Conference.</cite> Sep 1999. Brisbane, Australia. URL: <a href="http://archive.dstc.edu.au/RDU/staff/jane-hunter/PNG/paper.html">http://archive.dstc.edu.au/RDU/staff/jane-hunter/PNG/paper.html</a> +September 1999 + +An Indexing and Querying System for Online Images Based on the PNG Format and Embedded Metadata +http://archive.dstc.edu.au/RDU/staff/jane-hunter/PNG/paper.html + + + + +Hunter, Jane +Zhan, Zhimin - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-i1.data b/bikeshed/spec-data/readonly/biblio/biblio-i1.data index f387aa069c..ea42dc07c5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-i1.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-i1.data @@ -1,6 +1,6 @@ d:i18n-glossary i18n-glossary -11 February 2022 +22 April 2024 NOTE Internationalization Glossary https://www.w3.org/TR/i18n-glossary/ @@ -70,6 +70,136 @@ https://www.w3.org/TR/2022/DNOTE-i18n-glossary-20220211/ +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20230424 +i18n-glossary-20230424 +24 April 2023 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230424/ +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230424/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20230927 +i18n-glossary-20230927 +27 September 2023 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230927/ +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230927/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20230929 +i18n-glossary-20230929 +29 September 2023 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230929/ +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230929/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20231006 +i18n-glossary-20231006 +6 October 2023 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231006/ +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231006/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20231014 +i18n-glossary-20231014 +14 October 2023 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231014/ +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231014/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20231206 +i18n-glossary-20231206 +6 December 2023 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231206/ +https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231206/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20240118 +i18n-glossary-20240118 +18 January 2024 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240118/ +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240118/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20240123 +i18n-glossary-20240123 +23 January 2024 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240123/ +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240123/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20240321 +i18n-glossary-20240321 +21 March 2024 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240321/ +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240321/ + + + +Richard Ishida +Addison Phillips +- +d:i18n-glossary-20240422 +i18n-glossary-20240422 +22 April 2024 +NOTE +Internationalization Glossary +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240422/ +https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240422/ + + + Richard Ishida Addison Phillips - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ia.data b/bikeshed/spec-data/readonly/biblio/biblio-ia.data index 73e2d920ea..4e612a804f 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ia.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ia.data @@ -42,6 +42,28 @@ https://www.iana.org/assignments/srtp-protection/srtp-protection.xhtml +- +d:iana-http-authschemes +IANA-HTTP-AUTHSCHEMES + + +Hypertext Transfer Protocol (HTTP) Authentication Scheme Registry +https://www.iana.org/assignments/http-authschemes/ + + + + +- +d:iana-http-status-codes +IANA-HTTP-STATUS-CODES + + +Hypertext Transfer Protocol (HTTP) Status Code Registry +https://www.iana.org/assignments/http-status-codes/ + + + + - d:iana-media-types IANA-MEDIA-TYPES @@ -124,6 +146,17 @@ https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml +- +d:iana-urn-namespaces +IANA-URN-NAMESPACES + + +Uniform Resource Names (URN) Namespaces +https://www.iana.org/assignments/urn-namespaces/ + + + + - s:ianapermheaders IANAPERMHEADERS diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ic.data b/bikeshed/spec-data/readonly/biblio/biblio-ic.data index ef7d8ddfa2..a864f2890f 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ic.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ic.data @@ -1,9 +1,9 @@ d:icc ICC -December 2010 +May 2022 -ICC.1:2010 (Profile version 4.3.0.0) -http://www.color.org/specification/ICC1v43_2010-12.pdf +ICC.1:2022 (Profile version 4.4.0.0) +http://www.color.org/specification/ICC.1-2022-05.pdf diff --git a/bikeshed/spec-data/readonly/biblio/biblio-if.data b/bikeshed/spec-data/readonly/biblio/biblio-if.data index 4dba38a406..24c65b04e3 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-if.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-if.data @@ -1,6 +1,6 @@ d:ift IFT -28 June 2022 +9 July 2024 WD Incremental Font Transfer https://www.w3.org/TR/IFT/ @@ -9,8 +9,8 @@ https://w3c.github.io/IFT/Overview.html Chris Lilley -Myles Maxfield Garret Rieger +Skef Iterum - d:ift-20210907 IFT-20210907 @@ -40,3 +40,31 @@ Chris Lilley Myles Maxfield Garret Rieger - +d:ift-20230530 +IFT-20230530 +30 May 2023 +WD +Incremental Font Transfer +https://www.w3.org/TR/2023/WD-IFT-20230530/ +https://www.w3.org/TR/2023/WD-IFT-20230530/ + + + +Chris Lilley +Garret Rieger +Myles Maxfield +- +d:ift-20240709 +IFT-20240709 +9 July 2024 +WD +Incremental Font Transfer +https://www.w3.org/TR/2024/WD-IFT-20240709/ +https://www.w3.org/TR/2024/WD-IFT-20240709/ + + + +Chris Lilley +Garret Rieger +Skef Iterum +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-il.data b/bikeshed/spec-data/readonly/biblio/biblio-il.data index 81c841faf0..795e93a45e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-il.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-il.data @@ -65,8 +65,8 @@ Swaran Lata - d:ilreq-taml ilreq-taml -16 June 2020 -WD +24 July 2024 +NOTE Tamil Layout Requirements https://www.w3.org/TR/ilreq-taml/ https://w3c.github.io/iip/tamil/ @@ -85,6 +85,42 @@ https://www.w3.org/TR/2020/WD-ilreq-taml-20200616/ +Richard Ishida +- +d:ilreq-taml-20240515 +ilreq-taml-20240515 +15 May 2024 +NOTE +Tamil Layout Requirements +https://www.w3.org/TR/2024/DNOTE-ilreq-taml-20240515/ +https://www.w3.org/TR/2024/DNOTE-ilreq-taml-20240515/ + + + +Richard Ishida +- +d:ilreq-taml-20240702 +ilreq-taml-20240702 +2 July 2024 +NOTE +Tamil Layout Requirements +https://www.w3.org/TR/2024/DNOTE-ilreq-taml-20240702/ +https://www.w3.org/TR/2024/DNOTE-ilreq-taml-20240702/ + + + +Richard Ishida +- +d:ilreq-taml-20240724 +ilreq-taml-20240724 +24 July 2024 +NOTE +Tamil Layout Requirements +https://www.w3.org/TR/2024/DNOTE-ilreq-taml-20240724/ +https://www.w3.org/TR/2024/DNOTE-ilreq-taml-20240724/ + + + Richard Ishida - d:ilu-requestor diff --git a/bikeshed/spec-data/readonly/biblio/biblio-im.data b/bikeshed/spec-data/readonly/biblio/biblio-im.data index bbaca263dd..b5982bf34d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-im.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-im.data @@ -1,6 +1,6 @@ d:image-capture image-capture -8 December 2022 +26 October 2023 WD MediaStream Image Capture https://www.w3.org/TR/image-capture/ @@ -477,6 +477,71 @@ https://www.w3.org/TR/2022/WD-image-capture-20221208/ +Miguel Casas-sanchez +Rijubrata Bhaumik +- +d:image-capture-20230222 +image-capture-20230222 +22 February 2023 +WD +MediaStream Image Capture +https://www.w3.org/TR/2023/WD-image-capture-20230222/ +https://www.w3.org/TR/2023/WD-image-capture-20230222/ + + + +Miguel Casas-sanchez +Rijubrata Bhaumik +- +d:image-capture-20230224 +image-capture-20230224 +24 February 2023 +WD +MediaStream Image Capture +https://www.w3.org/TR/2023/WD-image-capture-20230224/ +https://www.w3.org/TR/2023/WD-image-capture-20230224/ + + + +Miguel Casas-sanchez +Rijubrata Bhaumik +- +d:image-capture-20230316 +image-capture-20230316 +16 March 2023 +WD +MediaStream Image Capture +https://www.w3.org/TR/2023/WD-image-capture-20230316/ +https://www.w3.org/TR/2023/WD-image-capture-20230316/ + + + +Miguel Casas-sanchez +Rijubrata Bhaumik +- +d:image-capture-20231010 +image-capture-20231010 +10 October 2023 +WD +MediaStream Image Capture +https://www.w3.org/TR/2023/WD-image-capture-20231010/ +https://www.w3.org/TR/2023/WD-image-capture-20231010/ + + + +Miguel Casas-sanchez +Rijubrata Bhaumik +- +d:image-capture-20231026 +image-capture-20231026 +26 October 2023 +WD +MediaStream Image Capture +https://www.w3.org/TR/2023/WD-image-capture-20231026/ +https://www.w3.org/TR/2023/WD-image-capture-20231026/ + + + Miguel Casas-sanchez Rijubrata Bhaumik - @@ -1082,8 +1147,8 @@ Pierre-Anthony Lemieux - d:imsc-hrm imsc-hrm -7 November 2022 -WD +25 April 2024 +REC IMSC Hypothetical Render Model https://www.w3.org/TR/imsc-hrm/ https://w3c.github.io/imsc-hrm/spec/imsc-hrm.html @@ -1246,5 +1311,137 @@ https://www.w3.org/TR/2022/WD-imsc-hrm-20221107/ +Pierre-Anthony Lemieux +- +d:imsc-hrm-20230202 +imsc-hrm-20230202 +2 February 2023 +WD +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/WD-imsc-hrm-20230202/ +https://www.w3.org/TR/2023/WD-imsc-hrm-20230202/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20230227 +imsc-hrm-20230227 +27 February 2023 +WD +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/WD-imsc-hrm-20230227/ +https://www.w3.org/TR/2023/WD-imsc-hrm-20230227/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20230619 +imsc-hrm-20230619 +19 June 2023 +WD +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/WD-imsc-hrm-20230619/ +https://www.w3.org/TR/2023/WD-imsc-hrm-20230619/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20230620 +imsc-hrm-20230620 +20 June 2023 +WD +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/WD-imsc-hrm-20230620/ +https://www.w3.org/TR/2023/WD-imsc-hrm-20230620/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20230622 +imsc-hrm-20230622 +22 June 2023 +CR +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/CR-imsc-hrm-20230622/ +https://www.w3.org/TR/2023/CR-imsc-hrm-20230622/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20231123 +imsc-hrm-20231123 +23 November 2023 +CR +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/CRD-imsc-hrm-20231123/ +https://www.w3.org/TR/2023/CRD-imsc-hrm-20231123/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20231220 +imsc-hrm-20231220 +20 December 2023 +CR +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/CRD-imsc-hrm-20231220/ +https://www.w3.org/TR/2023/CRD-imsc-hrm-20231220/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20231228 +imsc-hrm-20231228 +28 December 2023 +CR +IMSC Hypothetical Render Model +https://www.w3.org/TR/2023/CRD-imsc-hrm-20231228/ +https://www.w3.org/TR/2023/CRD-imsc-hrm-20231228/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20240111 +imsc-hrm-20240111 +11 January 2024 +CR +IMSC Hypothetical Render Model +https://www.w3.org/TR/2024/CRD-imsc-hrm-20240111/ +https://www.w3.org/TR/2024/CRD-imsc-hrm-20240111/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20240229 +imsc-hrm-20240229 +29 February 2024 +PR +IMSC Hypothetical Render Model +https://www.w3.org/TR/2024/PR-imsc-hrm-20240229/ +https://www.w3.org/TR/2024/PR-imsc-hrm-20240229/ + + + +Pierre-Anthony Lemieux +- +d:imsc-hrm-20240425 +imsc-hrm-20240425 +25 April 2024 +REC +IMSC Hypothetical Render Model +https://www.w3.org/TR/2024/REC-imsc-hrm-20240425/ +https://www.w3.org/TR/2024/REC-imsc-hrm-20240425/ + + + Pierre-Anthony Lemieux - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-in.data b/bikeshed/spec-data/readonly/biblio/biblio-in.data index 82d47757e9..936cf63c7b 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-in.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-in.data @@ -308,7 +308,7 @@ Joshua Bell - d:indexeddb-3 IndexedDB-3 -15 September 2022 +12 December 2023 WD Indexed Database API 3.0 https://www.w3.org/TR/IndexedDB-3/ @@ -316,7 +316,6 @@ https://w3c.github.io/IndexedDB/ -Ali Alabbas Joshua Bell - d:indexeddb-3-20210311 @@ -408,6 +407,108 @@ https://www.w3.org/TR/2022/WD-IndexedDB-3-20220915/ Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230210 +IndexedDB-3-20230210 +10 February 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230210/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230210/ + + + +Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230303 +IndexedDB-3-20230303 +3 March 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230303/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230303/ + + + +Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230413 +IndexedDB-3-20230413 +13 April 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230413/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230413/ + + + +Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230613 +IndexedDB-3-20230613 +13 June 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230613/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230613/ + + + +Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230803 +IndexedDB-3-20230803 +3 August 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230803/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230803/ + + + +Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230804 +IndexedDB-3-20230804 +4 August 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230804/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230804/ + + + +Ali Alabbas +Joshua Bell +- +d:indexeddb-3-20230808 +IndexedDB-3-20230808 +8 August 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230808/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20230808/ + + + +Joshua Bell +- +d:indexeddb-3-20231212 +IndexedDB-3-20231212 +12 December 2023 +WD +Indexed Database API 3.0 +https://www.w3.org/TR/2023/WD-IndexedDB-3-20231212/ +https://www.w3.org/TR/2023/WD-IndexedDB-3-20231212/ + + + Joshua Bell - d:indie-ui-context @@ -587,6 +688,17 @@ https://infra.spec.whatwg.org/ Anne van Kesteren Domenic Denicola +- +d:ink-enhancement +INK-ENHANCEMENT + +Draft Community Group Report +Ink API +https://wicg.github.io/ink-enhancement/ + + + + - d:inkml InkML @@ -748,16 +860,15 @@ input-events-1 - d:input-events-1 input-events-1 -30 May 2019 +28 September 2023 WD Input Events Level 1 https://www.w3.org/TR/input-events-1/ -https://cdn.staticaly.com/gh/w3c/input-events/v1/index.html +https://w3c.github.io/input-events/ Johannes Wilm -Ben Peters - d:input-events-1-20160830 input-events-1-20160830 @@ -783,7 +894,6 @@ https://www.w3.org/TR/2016/WD-input-events-20160922/ Johannes Wilm -Ben Peters - d:input-events-1-20160928 input-events-1-20160928 @@ -796,7 +906,6 @@ https://www.w3.org/TR/2016/WD-input-events-20160928/ Johannes Wilm -Ben Peters - d:input-events-1-20161011 input-events-1-20161011 @@ -809,7 +918,6 @@ https://www.w3.org/TR/2016/WD-input-events-20161011/ Johannes Wilm -Ben Peters - d:input-events-1-20161018 input-events-1-20161018 @@ -822,7 +930,6 @@ https://www.w3.org/TR/2016/WD-input-events-20161018/ Johannes Wilm -Ben Peters - d:input-events-1-20161205 input-events-1-20161205 @@ -835,7 +942,6 @@ https://www.w3.org/TR/2016/WD-input-events-20161205/ Johannes Wilm -Ben Peters - d:input-events-1-20161216 input-events-1-20161216 @@ -971,9 +1077,21 @@ https://www.w3.org/TR/2019/WD-input-events-1-20190530/ Johannes Wilm Ben Peters - +d:input-events-1-20230928 +input-events-1-20230928 +28 September 2023 +WD +Input Events Level 1 +https://www.w3.org/TR/2023/DISC-input-events-1-20230928/ +https://www.w3.org/TR/2023/DISC-input-events-1-20230928/ + + + +Johannes Wilm +- d:input-events-2 input-events-2 -30 May 2019 +24 June 2024 WD Input Events Level 2 https://www.w3.org/TR/input-events-2/ @@ -1066,6 +1184,66 @@ https://www.w3.org/TR/2019/WD-input-events-2-20190530/ +Johannes Wilm +- +d:input-events-2-20230516 +input-events-2-20230516 +16 May 2023 +WD +Input Events Level 2 +https://www.w3.org/TR/2023/WD-input-events-2-20230516/ +https://www.w3.org/TR/2023/WD-input-events-2-20230516/ + + + +Johannes Wilm +- +d:input-events-2-20231215 +input-events-2-20231215 +15 December 2023 +WD +Input Events Level 2 +https://www.w3.org/TR/2023/WD-input-events-2-20231215/ +https://www.w3.org/TR/2023/WD-input-events-2-20231215/ + + + +Johannes Wilm +- +d:input-events-2-20240109 +input-events-2-20240109 +9 January 2024 +WD +Input Events Level 2 +https://www.w3.org/TR/2024/WD-input-events-2-20240109/ +https://www.w3.org/TR/2024/WD-input-events-2-20240109/ + + + +Johannes Wilm +- +d:input-events-2-20240619 +input-events-2-20240619 +19 June 2024 +WD +Input Events Level 2 +https://www.w3.org/TR/2024/WD-input-events-2-20240619/ +https://www.w3.org/TR/2024/WD-input-events-2-20240619/ + + + +Johannes Wilm +- +d:input-events-2-20240624 +input-events-2-20240624 +24 June 2024 +WD +Input Events Level 2 +https://www.w3.org/TR/2024/WD-input-events-2-20240624/ +https://www.w3.org/TR/2024/WD-input-events-2-20240624/ + + + Johannes Wilm - a:input-events-20160830 @@ -1136,11 +1314,15 @@ a:input-events-20190530 input-events-20190530 input-events-1-20190530 - +a:input-events-20230928 +input-events-20230928 +input-events-1-20230928 +- d:inspire-md inspire-md -2 March 2017 +31 July 2023 -Technical Guidance for the implementation of INSPIRE dataset and service metadata based on ISO/TS 19139:2007. Version 2.0.1 +Technical Guidance for the implementation of INSPIRE dataset and service metadata based on ISO/TS 19139:2007. Version 2.1.3 https://inspire.ec.europa.eu/id/document/tg/metadata-iso19139 @@ -1201,6 +1383,17 @@ https://inspire.ec.europa.eu/id/document/tg/metadata-iso19139/2.0.1 +- +d:inspire-md-20230731 +inspire-md-20230731 +31 July 2023 + +Technical Guidance for the implementation of INSPIRE dataset and service metadata based on ISO/TS 19139:2007. Version 2.1.3 +https://inspire-mif.github.io/technical-guidelines/metadata/metadata-iso19139/ +https://inspire-mif.github.io/technical-guidelines/metadata/metadata-iso19139/ + + + - d:interledger-addresses interledger-addresses @@ -1226,7 +1419,7 @@ https://interledger.org/rfcs/0003-interledger-protocol/ - d:international-specs international-specs -23 September 2022 +21 March 2024 NOTE Internationalization Best Practices for Spec Developers https://www.w3.org/TR/international-specs/ @@ -1349,12 +1542,116 @@ https://www.w3.org/TR/2022/DNOTE-international-specs-20220923/ +Richard Ishida +Addison Phillips +- +d:international-specs-20230424 +international-specs-20230424 +24 April 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20230424/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20230424/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20230427 +international-specs-20230427 +27 April 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20230427/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20230427/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20230725 +international-specs-20230725 +25 July 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20230725/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20230725/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20230928 +international-specs-20230928 +28 September 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20230928/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20230928/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20231019 +international-specs-20231019 +19 October 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20231019/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20231019/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20231110 +international-specs-20231110 +10 November 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20231110/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20231110/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20231221 +international-specs-20231221 +21 December 2023 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2023/DNOTE-international-specs-20231221/ +https://www.w3.org/TR/2023/DNOTE-international-specs-20231221/ + + + +Richard Ishida +Addison Phillips +- +d:international-specs-20240321 +international-specs-20240321 +21 March 2024 +NOTE +Internationalization Best Practices for Spec Developers +https://www.w3.org/TR/2024/DNOTE-international-specs-20240321/ +https://www.w3.org/TR/2024/DNOTE-international-specs-20240321/ + + + Richard Ishida Addison Phillips - d:intersection-observer intersection-observer -6 July 2022 +18 October 2023 WD Intersection Observer https://www.w3.org/TR/intersection-observer/ @@ -1364,6 +1661,7 @@ https://w3c.github.io/IntersectionObserver/ Stefan Zager Emilio Cobos Álvarez +Traian Captan - d:intersection-observer-20170914 intersection-observer-20170914 @@ -1549,4 +1847,97 @@ https://www.w3.org/TR/2022/WD-intersection-observer-20220706/ Stefan Zager Emilio Cobos Álvarez +- +d:intersection-observer-20230909 +intersection-observer-20230909 +9 September 2023 +WD +Intersection Observer +https://www.w3.org/TR/2023/WD-intersection-observer-20230909/ +https://www.w3.org/TR/2023/WD-intersection-observer-20230909/ + + + +Stefan Zager +Emilio Cobos Álvarez +- +d:intersection-observer-20230911 +intersection-observer-20230911 +11 September 2023 +WD +Intersection Observer +https://www.w3.org/TR/2023/WD-intersection-observer-20230911/ +https://www.w3.org/TR/2023/WD-intersection-observer-20230911/ + + + +Stefan Zager +Emilio Cobos Álvarez +- +d:intersection-observer-20230914 +intersection-observer-20230914 +14 September 2023 +WD +Intersection Observer +https://www.w3.org/TR/2023/WD-intersection-observer-20230914/ +https://www.w3.org/TR/2023/WD-intersection-observer-20230914/ + + + +Stefan Zager +Emilio Cobos Álvarez +Traian Captan +- +d:intersection-observer-20230929 +intersection-observer-20230929 +29 September 2023 +WD +Intersection Observer +https://www.w3.org/TR/2023/WD-intersection-observer-20230929/ +https://www.w3.org/TR/2023/WD-intersection-observer-20230929/ + + + +Stefan Zager +Emilio Cobos Álvarez +Traian Captan +- +d:intersection-observer-20231003 +intersection-observer-20231003 +3 October 2023 +WD +Intersection Observer +https://www.w3.org/TR/2023/WD-intersection-observer-20231003/ +https://www.w3.org/TR/2023/WD-intersection-observer-20231003/ + + + +Stefan Zager +Emilio Cobos Álvarez +Traian Captan +- +d:intersection-observer-20231018 +intersection-observer-20231018 +18 October 2023 +WD +Intersection Observer +https://www.w3.org/TR/2023/WD-intersection-observer-20231018/ +https://www.w3.org/TR/2023/WD-intersection-observer-20231018/ + + + +Stefan Zager +Emilio Cobos Álvarez +Traian Captan +- +d:intervention-reporting +INTERVENTION-REPORTING + +Draft Community Group Report +Intervention Reporting +https://wicg.github.io/intervention-reporting/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-is.data b/bikeshed/spec-data/readonly/biblio/biblio-is.data index 9cfd7e8591..a54aaa9c79 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-is.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-is.data @@ -1,3 +1,14 @@ +d:is-input-pending +IS-INPUT-PENDING + +Editor's Draft +Early detection of input events +https://wicg.github.io/is-input-pending/ + + + + +- d:isdb ISDB @@ -323,7 +334,31 @@ ISO/TC 211 - a:iso-19136 iso-19136 -iso-19136-2007 +iso-19136-1-2020 +- +d:iso-19136-1-2020 +iso-19136-1-2020 +2020 +International Standard +Geographic information -- Geography Markup Language (GML) - Part 1: Fundamentals +https://www.iso.org/standard/75676.html + + + + +ISO/TC 211 +- +d:iso-19136-2-2015 +iso-19136-2-2015 +2015 +International Standard +Geographic information -- Geography Markup Language (GML) - Part 2: Extended schemas and encoding rules +https://www.iso.org/standard/61585.html + + + + +ISO/TC 211 - d:iso-19136-2007 iso-19136-2007 @@ -403,7 +438,7 @@ ISO/TC 211 - a:iso-19156 iso-19156 -iso-19156-2011 +iso-19156-2023 - d:iso-19156-2011 iso-19156-2011 @@ -412,6 +447,18 @@ International Standard Geographic information -- Observations and measurements https://www.iso.org/standard/32574.html +iso-19156-2023 + + +ISO/TC 211 +- +d:iso-19156-2023 +iso-19156-2023 +2023 +International Standard +Geographic information -- Observations, measurements and samples +https://www.iso.org/standard/82463.html + @@ -606,10 +653,10 @@ https://www.iso.org/standard/30961.html - d:iso10918-4 iso10918-4 -August 1999 +May 2024 Published -Information technology — Digital compression and coding of continuous-tone still images: Registration of JPEG profiles, SPIFF profiles, SPIFF tags, SPIFF colour spaces, APPn markers, SPIFF compression types and Registration Authorities (REGAUT) — Part 4: -https://www.iso.org/standard/25431.html +Information technology — Digital compression and coding of continuous-tone still images — Part 4: APPn markers +https://www.iso.org/standard/85634.html @@ -618,11 +665,11 @@ https://www.iso.org/standard/25431.html d:iso10918-4-1999-amd1-2013 iso10918-4-1999-amd1-2013 May 2013 -Published +Withdrawn Information technology — Digital compression and coding of continuous-tone still images: Registration of JPEG profiles, SPIFF profiles, SPIFF tags, SPIFF colour spaces, APPn markers, SPIFF compression types and Registration Authorities (REGAUT) — Part 4: — Amendment 1: Application specific marker list https://www.iso.org/standard/59454.html - +iso10918-4 - @@ -650,10 +697,10 @@ https://www.iso.org/standard/59634.html - d:iso10918-7 iso10918-7 -September 2021 +November 2023 Published Information technology — Digital compression and coding of continuous-tone still images — Part 7: Reference software -https://www.iso.org/standard/80896.html +https://www.iso.org/standard/85635.html @@ -871,7 +918,7 @@ https://www.iso.org/standard/25030.html d:iso13522-4 iso13522-4 November 1996 -Published +Withdrawn Information technology — Coding of multimedia and hypermedia information — Part 4: MHEG registration procedure https://www.iso.org/standard/25411.html @@ -936,10 +983,10 @@ https://www.iso.org/standard/33158.html - d:iso13818-1 iso13818-1 -December 2021 -Under development +December 2023 +Published Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems -https://www.iso.org/standard/83239.html +https://www.iso.org/standard/87619.html @@ -952,7 +999,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Amendment 1: Procedure for "copyright identifier" https://www.iso.org/standard/25423.html - +iso13818-1 - @@ -963,7 +1010,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Amendment 2: Registration procedure for "format identifier" https://www.iso.org/standard/25424.html - +iso13818-1 - @@ -974,7 +1021,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Amendment 3: Private data identification https://www.iso.org/standard/28552.html - +iso13818-1 - @@ -985,7 +1032,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Amendment 4 https://www.iso.org/standard/28878.html - +iso13818-1 - @@ -996,7 +1043,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Amendment 5 https://www.iso.org/standard/29510.html - +iso13818-1 - @@ -1007,7 +1054,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Amendment 6 https://www.iso.org/standard/31086.html - +iso13818-1 - @@ -1018,7 +1065,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Technical Corrigendum 1 https://www.iso.org/standard/29008.html - +iso13818-1 - @@ -1029,7 +1076,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 1: Carriage of metadata over ISO/IEC 13818-1 streams https://www.iso.org/standard/35456.html - +iso13818-1 - @@ -1040,7 +1087,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 2: Support of IPMP on MPEG-2 systems https://www.iso.org/standard/37679.html - +iso13818-1 - @@ -1051,7 +1098,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 3: Transport of AVC video data over ITU-T Rec H.222.0 | ISO/IEC 13818-1 streams https://www.iso.org/standard/38548.html - +iso13818-1 - @@ -1062,7 +1109,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 4: ISAN and V-ISAN use in the content labelling descriptor https://www.iso.org/standard/40525.html - +iso13818-1 - @@ -1073,7 +1120,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 5: New audio profile and level signalling and change to audio_type table entry https://www.iso.org/standard/40477.html - +iso13818-1 - @@ -1084,7 +1131,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 1 https://www.iso.org/standard/35427.html - +iso13818-1 - @@ -1095,7 +1142,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 2 https://www.iso.org/standard/36593.html - +iso13818-1 - @@ -1106,7 +1153,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 3 https://www.iso.org/standard/41507.html - +iso13818-1 - @@ -1117,7 +1164,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 4 https://www.iso.org/standard/42489.html - +iso13818-1 - @@ -1128,7 +1175,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 1: Transport of MPEG-4 streaming text and MPEG-4 lossless audio over MPEG-2 systems https://www.iso.org/standard/44170.html - +iso13818-1 - @@ -1139,7 +1186,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 2: Carriage of auxiliary video data https://www.iso.org/standard/44355.html - +iso13818-1 - @@ -1150,7 +1197,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 3: Transport of scalable video over Rec. ITU-T H.222.0 | ISO/IEC 13818-1 https://www.iso.org/standard/50876.html - +iso13818-1 - @@ -1161,7 +1208,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 3: Transport of scalable video over Rec. ITU-T H.222.0 | ISO/IEC 13818-1 — Technical Corrigendum 1 https://www.iso.org/standard/55586.html - +iso13818-1 - @@ -1172,7 +1219,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 4: Transport of multiview video over Rec. ITU-T H.222.0 | ISO/IEC 13818-1 https://www.iso.org/standard/52880.html - +iso13818-1 - @@ -1183,7 +1230,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 5: Transport of JPEG 2000 Part 1 (ITU-T Rec T.800 | ISO/IEC 15444-1) video over ITU-T Rec H.222.0 | ISO/IEC 13818-1 https://www.iso.org/standard/55694.html - +iso13818-1 - @@ -1194,7 +1241,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Amendment 6: Extension to AVC video descriptor and signalling of operation points for MVC https://www.iso.org/standard/55687.html - +iso13818-1 - @@ -1205,7 +1252,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 1 https://www.iso.org/standard/46284.html - +iso13818-1 - @@ -1216,7 +1263,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 2 https://www.iso.org/standard/52945.html - +iso13818-1 - @@ -1227,7 +1274,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information: Systems — Part 1: — Technical Corrigendum 3: Corrections concerning VBV buffer size, semantics of splice_type and removal rate from transport buffer for ITU-T H.264 ISO/IEC 14496-10 advanced video coding https://www.iso.org/standard/54837.html - +iso13818-1 - @@ -1238,7 +1285,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Extensions for simplified carriage of MPEG-4 over MPEG-2 https://www.iso.org/standard/63704.html - +iso13818-1 - @@ -1249,7 +1296,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 2: Signalling of transport files, signalling MVC view association to eye and MIME type registration https://www.iso.org/standard/62128.html - +iso13818-1 - @@ -1260,7 +1307,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 3: Transport of HEVC video over MPEG-2 systems https://www.iso.org/standard/62129.html - +iso13818-1 - @@ -1271,7 +1318,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 4: Support for event signalling in Transport Stream in MPEG-2 systems https://www.iso.org/standard/63003.html - +iso13818-1 - @@ -1282,18 +1329,18 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Delivery of timeline for external data https://www.iso.org/standard/67734.html - +iso13818-1 - d:iso13818-1-2015-amd1-2015-cor1-2016 iso13818-1-2015-amd1-2015-cor1-2016 -July 2015 +July 2016 Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Delivery of timeline for external data — Technical Corrigendum 1 https://www.iso.org/standard/68646.html - +iso13818-1 - @@ -1304,7 +1351,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Delivery of timeline for external data — Technical Corrigendum 2 https://www.iso.org/standard/70193.html - +iso13818-1 - @@ -1315,7 +1362,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 2: Carriage of layered HEVC https://www.iso.org/standard/69386.html - +iso13818-1 - @@ -1326,7 +1373,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 3: Carriage of green metadata in MPEG2 systems https://www.iso.org/standard/69388.html - +iso13818-1 - @@ -1337,7 +1384,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 3: Carriage of green metadata in MPEG2 systems — Technical Corrigendum 1 https://www.iso.org/standard/73583.html - +iso13818-1 - @@ -1348,7 +1395,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 4: New profiles and levels for MPEG4 audio descriptor https://www.iso.org/standard/69387.html - +iso13818-1 - @@ -1359,7 +1406,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 5: Carriage of MPEGH 3D audio over MPEG2 systems https://www.iso.org/standard/69389.html - +iso13818-1 - @@ -1370,7 +1417,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 6: Carriage of Quality Metadata in MPEG-2 Systems https://www.iso.org/standard/67338.html - +iso13818-1 - @@ -1381,7 +1428,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Technical Corrigendum 1 https://www.iso.org/standard/69558.html - +iso13818-1 - @@ -1392,7 +1439,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Technical Corrigendum 2 https://www.iso.org/standard/69663.html - +iso13818-1 - @@ -1436,7 +1483,7 @@ Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Ultra-low latency and 4k and higher resolution support for transport of JPEG 2000 video https://www.iso.org/standard/75706.html - +iso13818-1 - @@ -1465,11 +1512,11 @@ iso13818-1 d:iso13818-1-2019-amd1-2020 iso13818-1-2019-amd1-2020 January 2020 -Published +Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Carriage of JPEG XS in MPEG-2 TS https://www.iso.org/standard/76595.html - +iso13818-1 - @@ -1503,11 +1550,11 @@ iso13818-1-2019-cor1-2020 d:iso13818-1-2019-cor1-2020 iso13818-1-2019-cor1-2020 October 2020 -Published +Withdrawn Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Technical Corrigendum 1 https://www.iso.org/standard/80196.html - +iso13818-1 - @@ -1545,20 +1592,61 @@ a:iso13818-1-2019-wdamd3 iso13818-1-2019-wdamd3 iso13818-1-2019-damd3 - -a:iso13818-1-cdamd1 -iso13818-1-cdamd1 -iso13818-1-damd1 +d:iso13818-1-2022-amd1-2023 +iso13818-1-2022-amd1-2023 +April 2023 +Withdrawn +Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Carriage of LCEVC and other improvements +https://www.iso.org/standard/83253.html + +iso13818-1 + + - -d:iso13818-1-damd1 -iso13818-1-damd1 +d:iso13818-1-2022-cdcor2 +iso13818-1-2022-cdcor2 + +Deleted +Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Technical Corrigendum 2 +https://www.iso.org/standard/86481.html + +iso13818-1 + + +- +d:iso13818-1-2022-cor1-2023 +iso13818-1-2022-cor1-2023 +April 2023 +Withdrawn +Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Technical Corrigendum 1: Adding missing field compatibleProfileSetsPresent +https://www.iso.org/standard/84998.html + +iso13818-1 + + +- +a:iso13818-1-2023-awiamd1 +iso13818-1-2023-awiamd1 +iso13818-1-2023-cdamd1 +- +d:iso13818-1-2023-cdamd1 +iso13818-1-2023-cdamd1 Under development -Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Carriage of LCEVC in MPEG-2 TS and other improvements -https://www.iso.org/standard/83253.html +Information technology — Generic coding of moving pictures and associated audio information — Part 1: Systems — Amendment 1: Codec parameter clarifications and other improvements +https://www.iso.org/standard/89042.html +- +a:iso13818-1-cdamd1 +iso13818-1-cdamd1 +iso13818-1-damd1 +- +a:iso13818-1-damd1 +iso13818-1-damd1 +iso13818-1-2022-amd1-2023 - d:iso13818-10 iso13818-10 @@ -2211,10 +2299,10 @@ https://www.iso.org/standard/37700.html - d:iso14496-1 iso14496-1 -June 2010 -Published + +Under development Information technology — Coding of audio-visual objects — Part 1: Systems -https://www.iso.org/standard/55688.html +https://www.iso.org/standard/85595.html @@ -2227,7 +2315,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 1: Extended BIFS https://www.iso.org/standard/34415.html -iso14496-1 + - @@ -2238,7 +2326,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 3: Intellectual Property Management and Protection (IPMP) extensions https://www.iso.org/standard/39111.html -iso14496-1 + - @@ -2249,7 +2337,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 4: SL extensions and AFX streams https://www.iso.org/standard/38567.html -iso14496-1 + - @@ -2260,7 +2348,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 7: Use of AVC (Advanced Video Coding) in MPEG-4 systems https://www.iso.org/standard/38572.html -iso14496-1 + - @@ -2271,7 +2359,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 8: New ObjectTypeIndication code points https://www.iso.org/standard/40400.html -iso14496-1 + - @@ -2282,7 +2370,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 1: Text profile and level indication https://www.iso.org/standard/41482.html -iso14496-1 + - @@ -2293,7 +2381,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 2: 3D compression profile and level indication https://www.iso.org/standard/43175.html -iso14496-1 + - @@ -2304,7 +2392,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Amendment 3: JPEG 2000 support in MPEG-4 https://www.iso.org/standard/44356.html -iso14496-1 + - @@ -2315,7 +2403,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Technical Corrigendum 1 https://www.iso.org/standard/43565.html -iso14496-1 + - @@ -2326,7 +2414,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 1: Systems — Technical Corrigendum 2 https://www.iso.org/standard/45430.html -iso14496-1 + - @@ -2357,7 +2445,7 @@ iso14496-10 Under development Information technology — Coding of audio-visual objects — Part 10: Advanced video coding -https://www.iso.org/standard/83529.html +https://www.iso.org/standard/87574.html @@ -2578,10 +2666,10 @@ iso14496-11 - d:iso14496-12 iso14496-12 -January 2022 -Published + +Under development Information technology — Coding of audio-visual objects — Part 12: ISO base media file format -https://www.iso.org/standard/83102.html +https://www.iso.org/standard/85596.html @@ -2594,7 +2682,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 1: Support for timed metadata, non-square pixels and improved sample groups https://www.iso.org/standard/43689.html -iso14496-12 + - @@ -2605,7 +2693,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 2: Hint track format for ALC/LCT and FLUTE transmission and multiple meta box support https://www.iso.org/standard/45534.html -iso14496-12 + - @@ -2616,7 +2704,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 1 https://www.iso.org/standard/42292.html -iso14496-12 + - @@ -2627,7 +2715,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 2 https://www.iso.org/standard/43226.html -iso14496-12 + - @@ -2638,7 +2726,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 3 https://www.iso.org/standard/46300.html -iso14496-12 + - @@ -2649,7 +2737,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 1: General improvements including hint tracks, metadata support and sample groups https://www.iso.org/standard/52356.html -iso14496-12 + - @@ -2660,7 +2748,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 1 https://www.iso.org/standard/52970.html -iso14496-12 + - @@ -2671,7 +2759,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 2 https://www.iso.org/standard/52971.html -iso14496-12 + - @@ -2682,7 +2770,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 3 https://www.iso.org/standard/53746.html -iso14496-12 + - @@ -2693,7 +2781,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 4 https://www.iso.org/standard/59324.html -iso14496-12 + - @@ -2704,7 +2792,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 1: Various enhancements including support for large metadata https://www.iso.org/standard/63187.html -iso14496-12 + - @@ -2715,7 +2803,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 2: Carriage of timed text and other visual overlays https://www.iso.org/standard/63188.html -iso14496-12 + - @@ -2726,7 +2814,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 3: Font streams and other improvements to file format https://www.iso.org/standard/65272.html -iso14496-12 + - @@ -2737,7 +2825,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 1 https://www.iso.org/standard/63525.html -iso14496-12 + - @@ -2748,7 +2836,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 2 https://www.iso.org/standard/65349.html -iso14496-12 + - @@ -2759,7 +2847,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 3 https://www.iso.org/standard/67080.html -iso14496-12 + - @@ -2770,7 +2858,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Technical Corrigendum 4 https://www.iso.org/standard/67946.html -iso14496-12 + - @@ -2781,7 +2869,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 1: DRC Extensions https://www.iso.org/standard/70430.html -iso14496-12 + - @@ -2792,7 +2880,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 2: Support for image file format https://www.iso.org/standard/71851.html -iso14496-12 + - @@ -2821,7 +2909,7 @@ iso14496-12 d:iso14496-12-2022-cdamd1 iso14496-12-2022-cdamd1 -Under development +Deleted Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 1: Improved brand documentation and other improvements https://www.iso.org/standard/83658.html @@ -2835,7 +2923,7 @@ iso14496-12-2022-cdamd1 - a:iso14496-12-cdamd1 iso14496-12-cdamd1 -iso14496-12-2022-wdamd1 +iso14496-12.2-cdamd1 - a:iso14496-12-cdamd4 iso14496-12-cdamd4 @@ -2885,6 +2973,32 @@ iso14496-12-cdamd4 a:iso14496-12-wdamd1 iso14496-12-wdamd1 iso14496-12-cdamd1 +- +d:iso14496-12.2-awiamd2 +iso14496-12.2-awiamd2 + +Under development +Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 2: Tools for enhanced CMAF and DASH integration +https://www.iso.org/standard/90190.html + + + + +- +a:iso14496-12.2-cdamd1 +iso14496-12.2-cdamd1 +iso14496-12.2-damd1 +- +d:iso14496-12.2-damd1 +iso14496-12.2-damd1 + +Under development +Information technology — Coding of audio-visual objects — Part 12: ISO base media file format — Amendment 1: Support for T.35, original sample duration and other improvements +https://www.iso.org/standard/86519.html + + + + - d:iso14496-13 iso14496-13 @@ -2935,7 +3049,7 @@ iso14496-15 Under development Information technology — Coding of audio-visual objects — Part 15: Carriage of network abstraction layer (NAL) unit structured video in the ISO base media file format -https://www.iso.org/standard/83336.html +https://www.iso.org/standard/89118.html @@ -3069,7 +3183,7 @@ iso14496-15-2019-amd1-2020 d:iso14496-15-2019-amd1-2020 iso14496-15-2019-amd1-2020 December 2020 -Published +Withdrawn Information technology — Coding of audio-visual objects — Part 15: Carriage of network abstraction layer (NAL) unit structured video in the ISO base media file format — Amendment 1: Improved support for tiling and layering https://www.iso.org/standard/79146.html @@ -3123,16 +3237,54 @@ a:iso14496-15-2019-wdamd3 iso14496-15-2019-wdamd3 iso14496-15-2019-cdamd3 - -d:iso14496-15-damd1 -iso14496-15-damd1 - -Under development -Information technology — Coding of audio-visual objects — Part 15: Carriage of network abstraction layer (NAL) unit structured video in the ISO base media file format — Amendment 1: Support for LCEVC +a:iso14496-15-2022-amd1 +iso14496-15-2022-amd1 +iso14496-15-2022-amd1-2023 +- +d:iso14496-15-2022-amd1-2023 +iso14496-15-2022-amd1-2023 +October 2023 +Published +Information technology — Coding of audio-visual objects — Part 15: Carriage of network abstraction layer (NAL) unit structured video in the ISO base media file format — Amendment 1: Support for LCEVC https://www.iso.org/standard/83337.html +- +a:iso14496-15-2022-cdamd3 +iso14496-15-2022-cdamd3 +iso14496-15-2022-damd3 +- +d:iso14496-15-2022-damd2 +iso14496-15-2022-damd2 + +Deleted +Information technology — Coding of audio-visual objects — Part 15: Carriage of network abstraction layer (NAL) unit structured video in the ISO base media file format — Amendment 2: Picture-in-picture support and other extensions +https://www.iso.org/standard/85548.html + + + + +- +d:iso14496-15-2022-damd3 +iso14496-15-2022-damd3 + +Under development +Information technology — Coding of audio-visual objects — Part 15: Carriage of network abstraction layer (NAL) unit structured video in the ISO base media file format — Amendment 3: Support for neural-network post-filter supplemental enhancement information and other improvements +https://www.iso.org/standard/86520.html + + + + +- +a:iso14496-15-2022-fdamd1 +iso14496-15-2022-fdamd1 +iso14496-15-2022-amd1 +- +a:iso14496-15-damd1 +iso14496-15-damd1 +iso14496-15-2022-fdamd1 - a:iso14496-15-pdam1 iso14496-15-pdam1 @@ -3144,10 +3296,10 @@ iso14496-15-pdam1 - d:iso14496-16 iso14496-16 - -Deleted +November 2011 +Published Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) -https://www.iso.org/standard/75483.html +https://www.iso.org/standard/57367.html @@ -3160,7 +3312,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Amendment 1: Morphing and textures https://www.iso.org/standard/41691.html - +iso14496-16 - @@ -3171,7 +3323,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Technical Corrigendum 1 https://www.iso.org/standard/42073.html - +iso14496-16 - @@ -3182,7 +3334,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Technical Corrigendum 2 https://www.iso.org/standard/42491.html - +iso14496-16 - @@ -3193,7 +3345,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Amendment 1: Geometry and shadow https://www.iso.org/standard/44362.html - +iso14496-16 - @@ -3204,7 +3356,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Amendment 1: Geometry and shadow — Technical Corrigendum 1 https://www.iso.org/standard/51716.html - +iso14496-16 - @@ -3215,7 +3367,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Amendment 1: Geometry and shadow — Technical Corrigendum 2 https://www.iso.org/standard/52358.html - +iso14496-16 - @@ -3226,7 +3378,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Amendment 2: Frame-based Animated Mesh Compression (FAMC) https://www.iso.org/standard/50471.html - +iso14496-16 - @@ -3237,7 +3389,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 16: Animation Framework eXtension (AFX) — Amendment 3: 3D Multiresolution profile https://www.iso.org/standard/50548.html - +iso14496-16 - @@ -3520,7 +3672,7 @@ d:iso14496-2-2004-cor3-2008 iso14496-2-2004-cor3-2008 November 2008 Published -Information technology — Coding of audio-visual objects — Part 2: Visual — Technical Corrigendum 3: . +Information technology — Coding of audio-visual objects — Part 2: Visual — Technical Corrigendum 3 https://www.iso.org/standard/50995.html @@ -3661,10 +3813,10 @@ https://www.iso.org/standard/46302.html - d:iso14496-22 iso14496-22 -January 2019 -Published + +Under development Information technology — Coding of audio-visual objects — Part 22: Open Font Format -https://www.iso.org/standard/74461.html +https://www.iso.org/standard/87621.html @@ -3677,7 +3829,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Amendment 1: Support for many-to-one range mappings https://www.iso.org/standard/54376.html -iso14496-22 + - @@ -3688,7 +3840,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Amendment 2: Additional script and language tags https://www.iso.org/standard/59663.html -iso14496-22 + - @@ -3699,7 +3851,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Technical Corrigendum 1 https://www.iso.org/standard/55971.html -iso14496-22 + - @@ -3710,7 +3862,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Amendment 1: Updates for font collections functionality https://www.iso.org/standard/69450.html -iso14496-22 + - @@ -3721,7 +3873,7 @@ Withdrawn Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Amendment 2: Updated text layout features and implementations https://www.iso.org/standard/70994.html -iso14496-22 + - @@ -3739,6 +3891,17 @@ https://www.iso.org/standard/78865.html +- +d:iso14496-22-2019-amd2-2023 +iso14496-22-2019-amd2-2023 +January 2023 +Published +Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Amendment 2: Extending colour font functionality and other updates +https://www.iso.org/standard/82487.html + + + + - a:iso14496-22-2019-awiamd2 iso14496-22-2019-awiamd2 @@ -3752,16 +3915,9 @@ a:iso14496-22-2019-damd1 iso14496-22-2019-damd1 iso14496-22-2019-fdamd1 - -d:iso14496-22-2019-damd2 +a:iso14496-22-2019-damd2 iso14496-22-2019-damd2 - -Under development -Information technology — Coding of audio-visual objects — Part 22: Open Font Format — Amendment 2: Extending colour font functionality and other updates -https://www.iso.org/standard/82487.html - - - - +iso14496-22-2019-amd2-2023 - a:iso14496-22-2019-fdamd1 iso14496-22-2019-fdamd1 @@ -3806,10 +3962,10 @@ https://www.iso.org/standard/57755.html - d:iso14496-26 iso14496-26 -May 2010 -Published + +Under development Information technology — Coding of audio-visual objects — Part 26: Audio conformance -https://www.iso.org/standard/53750.html +https://www.iso.org/standard/86376.html @@ -3949,10 +4105,10 @@ iso14496-26 - d:iso14496-27 iso14496-27 - -Deleted +December 2009 +Published Information technology — Coding of audio-visual objects — Part 27: 3D Graphics conformance -https://www.iso.org/standard/75486.html +https://www.iso.org/standard/53751.html @@ -4584,6 +4740,17 @@ https://www.iso.org/standard/71977.html iso14496-30 +- +d:iso14496-30-2018-amd1-2022 +iso14496-30-2018-amd1-2022 +June 2022 +Published +Information technology — Coding of audio-visual objects — Part 30: Timed text and other visual overlays in ISO base media file format — Amendment 1: Timing improvements +https://www.iso.org/standard/82615.html + + + + - a:iso14496-30-2018-cdamd1 iso14496-30-2018-cdamd1 @@ -4593,16 +4760,9 @@ a:iso14496-30-2018-damd1 iso14496-30-2018-damd1 iso14496-30-2018-fdamd1 - -d:iso14496-30-2018-fdamd1 +a:iso14496-30-2018-fdamd1 iso14496-30-2018-fdamd1 - -Under development -Information technology — Coding of audio-visual objects — Part 30: Timed text and other visual overlays in ISO base media file format — Amendment 1: Timing improvements -https://www.iso.org/standard/82615.html - - - - +iso14496-30-2018-amd1-2022 - a:iso14496-30-2018-wdamd1 iso14496-30-2018-wdamd1 @@ -4621,10 +4781,10 @@ https://www.iso.org/standard/66062.html - d:iso14496-32 iso14496-32 -January 2021 -Published + +Under development Information technology — Coding of audio-visual objects — Part 32: File format reference software and conformance -https://www.iso.org/standard/75398.html +https://www.iso.org/standard/87573.html @@ -4640,6 +4800,17 @@ https://www.iso.org/standard/69714.html +- +d:iso14496-34 +iso14496-34 + +Under development +Information technology — Coding of audio-visual objects — Part 34: Syntactic description language +https://www.iso.org/standard/85598.html + + + + - d:iso14496-4 iso14496-4 @@ -6059,10 +6230,10 @@ https://www.iso.org/standard/52073.html - d:iso15444-1 iso15444-1 -October 2019 -Published + +Under development Information technology — JPEG 2000 image coding system — Part 1: Core coding system -https://www.iso.org/standard/78321.html +https://www.iso.org/standard/87632.html @@ -6075,7 +6246,7 @@ Withdrawn Information technology — JPEG 2000 image coding system — Part 1: Core coding system — Amendment 1: Codestream restrictions https://www.iso.org/standard/35307.html -iso15444-1 + - @@ -6086,7 +6257,7 @@ Withdrawn Information technology — JPEG 2000 image coding system — Part 1: Core coding system — Technical Corrigendum 1 https://www.iso.org/standard/36046.html -iso15444-1 + - @@ -6097,7 +6268,7 @@ Withdrawn Information technology — JPEG 2000 image coding system — Part 1: Core coding system — Technical Corrigendum 2 https://www.iso.org/standard/36628.html -iso15444-1 + - @@ -6108,7 +6279,7 @@ Withdrawn Information technology — JPEG 2000 image coding system — Part 1: Core coding system — Technical Corrigendum 3 https://www.iso.org/standard/37039.html -iso15444-1 + - @@ -6119,7 +6290,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 1: Profiles for digital cinema applications https://www.iso.org/standard/41719.html -iso15444-1 + - @@ -6130,7 +6301,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 2: Extended profiles for cinema and video production and archival applications https://www.iso.org/standard/52174.html -iso15444-1 + - @@ -6141,7 +6312,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 3: Profiles for broadcast applications https://www.iso.org/standard/53333.html -iso15444-1 + - @@ -6152,7 +6323,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 4: Guidelines for digital cinema applications https://www.iso.org/standard/52176.html -iso15444-1 + - @@ -6163,7 +6334,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 5: Enhancements for digital cinema and archive profiles (additional frame rates) https://www.iso.org/standard/55503.html -iso15444-1 + - @@ -6174,7 +6345,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 6: Updated ICC profile support, bit depth and resolution clarifications https://www.iso.org/standard/59863.html -iso15444-1 + - @@ -6185,7 +6356,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 7: Profiles for an interoperable master format (IMF) https://www.iso.org/standard/69390.html -iso15444-1 + - @@ -6196,7 +6367,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Amendment 8: Profiles for an interoperable master format IMF https://www.iso.org/standard/65352.html -iso15444-1 + - @@ -6207,7 +6378,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Technical Corrigendum 1 https://www.iso.org/standard/44343.html -iso15444-1 + - @@ -6218,7 +6389,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Technical Corrigendum 2: Clarification on determination of maximum file size https://www.iso.org/standard/46472.html -iso15444-1 + - @@ -6229,7 +6400,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Technical Corrigendum 3 https://www.iso.org/standard/66389.html -iso15444-1 + - @@ -6240,7 +6411,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Core coding system — Part 1: — Technical Corrigendum 4 https://www.iso.org/standard/67166.html -iso15444-1 + - @@ -6521,10 +6692,10 @@ https://www.iso.org/standard/76621.html - d:iso15444-16 iso15444-16 -September 2021 -Published + +Under development Information technology — JPEG 2000 image coding system — Part 16: Encapsulation of JPEG 2000 images into ISO/IEC 23008-12 -https://www.iso.org/standard/80620.html +https://www.iso.org/standard/88910.html @@ -6532,8 +6703,8 @@ https://www.iso.org/standard/80620.html - d:iso15444-17 iso15444-17 - -Under development +June 2023 +Published Information technology — JPEG 2000 image coding system — Part 17: Extensions for coding of discontinuous media https://www.iso.org/standard/79987.html @@ -6543,8 +6714,8 @@ https://www.iso.org/standard/79987.html - d:iso15444-2 iso15444-2 - -Under development +November 2023 +Published Information technology — JPEG 2000 image coding system — Part 2: Extensions https://www.iso.org/standard/84573.html @@ -6559,7 +6730,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Extensions — Part 2: — Amendment 2: Extended capabilities marker segment https://www.iso.org/standard/39476.html - +iso15444-2 - @@ -6570,7 +6741,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Extensions — Part 2: — Amendment 3: Box-based file format for JPEG XR, extended ROI boxes, XML boxing, compressed channel definition boxes, and representation of floating point https://www.iso.org/standard/55504.html - +iso15444-2 - @@ -6581,7 +6752,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Extensions — Part 2: — Amendment 4: Block coder extension https://www.iso.org/standard/59455.html - +iso15444-2 - @@ -6592,7 +6763,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Extensions — Part 2: — Technical Corrigendum 3 https://www.iso.org/standard/40827.html - +iso15444-2 - @@ -6603,7 +6774,7 @@ Withdrawn Information technology — JPEG 2000 image coding system: Extensions — Part 2: — Technical Corrigendum 4 https://www.iso.org/standard/43745.html - +iso15444-2 - @@ -6642,10 +6813,10 @@ https://www.iso.org/standard/52879.html - d:iso15444-4 iso15444-4 -October 2021 +May 2024 Published -Information technology — JPEG 2000 image coding system — Part 4: Conformance Testing -https://www.iso.org/standard/81574.html +Information technology — JPEG 2000 image coding system — Part 4: Conformance testing +https://www.iso.org/standard/85636.html @@ -6765,8 +6936,8 @@ iso15444-6 - d:iso15444-8 iso15444-8 - -Under development +October 2023 +Published Information technology — JPEG 2000 image coding system — Part 8: Secure JPEG 2000 https://www.iso.org/standard/82566.html @@ -6777,18 +6948,18 @@ https://www.iso.org/standard/82566.html d:iso15444-8-2007-amd1-2008 iso15444-8-2007-amd1-2008 December 2008 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Secure JPEG 2000 — Part 8: — Amendment 1: File format security https://www.iso.org/standard/46592.html - +iso15444-8 - d:iso15444-9 iso15444-9 - -Under development +May 2023 +Published Information technology — JPEG 2000 image coding system — Part 9: Interactivity tools, APIs and protocols https://www.iso.org/standard/82567.html @@ -6799,88 +6970,88 @@ https://www.iso.org/standard/82567.html d:iso15444-9-2005-amd1-2006 iso15444-9-2005-amd1-2006 December 2006 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Amendment 1: APIs, metadata, and editing https://www.iso.org/standard/41720.html - +iso15444-9 - d:iso15444-9-2005-amd2-2008 iso15444-9-2005-amd2-2008 May 2008 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Amendment 2: JPIP extensions https://www.iso.org/standard/45532.html - +iso15444-9 - d:iso15444-9-2005-amd3-2008 iso15444-9-2005-amd3-2008 December 2008 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Amendment 3: JPIP extensions to 3D data https://www.iso.org/standard/50407.html - +iso15444-9 - d:iso15444-9-2005-amd4-2010 iso15444-9-2005-amd4-2010 December 2010 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Amendment 4: JPIP server and client profiles https://www.iso.org/standard/50948.html - +iso15444-9 - d:iso15444-9-2005-amd5-2014 iso15444-9-2005-amd5-2014 February 2014 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Amendment 5: UDP transport and additional enhancements to JPIP https://www.iso.org/standard/55505.html - +iso15444-9 - d:iso15444-9-2005-cor1-2007 iso15444-9-2005-cor1-2007 August 2007 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Technical Corrigendum 1 https://www.iso.org/standard/43688.html - +iso15444-9 - d:iso15444-9-2005-cor2-2008 iso15444-9-2005-cor2-2008 December 2008 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Technical Corrigendum 2 https://www.iso.org/standard/51549.html - +iso15444-9 - d:iso15444-9-2005-cor3-2011 iso15444-9-2005-cor3-2011 December 2011 -Published +Withdrawn Information technology — JPEG 2000 image coding system: Interactivity tools, APIs and protocols — Part 9: — Technical Corrigendum 3 https://www.iso.org/standard/57130.html - +iso15444-9 - @@ -7099,10 +7270,10 @@ https://www.iso.org/standard/77232.html - d:iso15938-17 iso15938-17 - -Under development +January 2024 +Published Information technology — Multimedia content description interface — Part 17: Compression of neural networks for multimedia content description and analysis -https://www.iso.org/standard/78480.html +https://www.iso.org/standard/85545.html @@ -7113,7 +7284,7 @@ iso15938-18 Under development Information technology — Multimedia content description interface — Part 18: Conformance and reference software for compression of neural networks -https://www.iso.org/standard/82726.html +https://www.iso.org/standard/87634.html @@ -7723,6 +7894,18 @@ https://www.iso.org/standard/30373.html +- +d:iso18013-5 +ISO18013-5 +September 2021 + +ISO/IEC 18013-5:2021 ISO-compliant driving licence, Part 5: Mobile driving licence (mDL) application +https://www.iso.org/standard/69084.html + + + + +ISO/IEC JTC 1/SC 17 - s:iso18033-2 ISO18033-2 @@ -7734,25 +7917,29 @@ iso18181-1 - d:iso18181-1 iso18181-1 -March 2022 +July 2024 Published Information technology — JPEG XL image coding system — Part 1: Core coding system -https://www.iso.org/standard/77977.html +https://www.iso.org/standard/85066.html - -d:iso18181-1-2022-prfamd1 -iso18181-1-2022-prfamd1 -May 2022 -Under development +d:iso18181-1-2022-amd1-2022 +iso18181-1-2022-amd1-2022 +June 2022 +Withdrawn Information technology — JPEG XL image coding system — Part 1: Core coding system — Amendment 1: Profiles and levels for JPEG XL image coding system https://www.iso.org/standard/81554.html - +iso18181-1 +- +a:iso18181-1-2022-prfamd1 +iso18181-1-2022-prfamd1 +iso18181-1-2022-amd1-2022 - a:iso18181-1-cdamd1 iso18181-1-cdamd1 @@ -7768,10 +7955,10 @@ iso18181-1-2022-prfamd1 - d:iso18181-2 iso18181-2 -October 2021 +June 2024 Published Information technology — JPEG XL image coding system — Part 2: File format -https://www.iso.org/standard/80617.html +https://www.iso.org/standard/85253.html @@ -7781,8 +7968,8 @@ d:iso18181-3 iso18181-3 Under development -Information technology — JPEG XL Image Coding System — Part 3: Conformance testing -https://www.iso.org/standard/80618.html +Information technology — JPEG XL image coding system — Part 3: Conformance testing +https://www.iso.org/standard/87633.html @@ -7790,8 +7977,8 @@ https://www.iso.org/standard/80618.html - d:iso18181-4 iso18181-4 - -Under development +August 2022 +Published Information technology — JPEG XL image coding system — Part 4: Reference software https://www.iso.org/standard/80619.html @@ -7801,10 +7988,10 @@ https://www.iso.org/standard/80619.html - d:iso18477-1 iso18477-1 -May 2020 +May 2024 Published Information technology — Scalable compression and coding of continuous-tone still images — Part 1: Core coding system specification -https://www.iso.org/standard/79103.html +https://www.iso.org/standard/86515.html @@ -7834,10 +8021,10 @@ https://www.iso.org/standard/66070.html - d:iso18477-3 iso18477-3 -December 2015 +December 2023 Published Information technology — Scalable compression and coding of continuous-tone still images — Part 3: Box file format -https://www.iso.org/standard/66071.html +https://www.iso.org/standard/85637.html @@ -7853,6 +8040,17 @@ https://www.iso.org/standard/66072.html +- +d:iso18477-4-2017-cor1-2023 +iso18477-4-2017-cor1-2023 +February 2023 +Published +Information technology — Scalable compression and coding of continuous-tone still images — Part 4: Conformance testing — Technical Corrigendum 1 +https://www.iso.org/standard/86313.html + + + + - d:iso18477-5 iso18477-5 @@ -7930,6 +8128,32 @@ https://www.iso.org/standard/65348.html +- +d:iso19566-10 +iso19566-10 + +Under development +Information technology — JPEG Systems — Part 10: Reference Software +https://www.iso.org/standard/85251.html + + + + +- +a:iso19566-10-awiamd1 +iso19566-10-awiamd1 +iso19566-10-cdamd1 +- +d:iso19566-10-cdamd1 +iso19566-10-cdamd1 + +Under development +Information technology — JPEG Systems — Part 10: Reference Software — Amendment 1: Additional reference software implementations +https://www.iso.org/standard/89041.html + + + + - d:iso19566-2 iso19566-2 @@ -7955,8 +8179,8 @@ https://www.iso.org/standard/73607.html - d:iso19566-5 iso19566-5 - -Under development +June 2023 +Published Information technologies — JPEG systems — Part 5: JPEG universal metadata box format (JUMBF) https://www.iso.org/standard/84635.html @@ -7971,11 +8195,11 @@ iso19566-5-2019-amd1-2021 d:iso19566-5-2019-amd1-2021 iso19566-5-2019-amd1-2021 June 2021 -Published +Withdrawn Information technologies — JPEG systems — Part 5: JPEG universal metadata box format (JUMBF) — Amendment 1: Support for embedding mixed codestreams https://www.iso.org/standard/78467.html - +iso19566-5 - @@ -8009,6 +8233,21 @@ https://www.iso.org/standard/83655.html +- +a:iso19566-5-2023-cdamd1 +iso19566-5-2023-cdamd1 +iso19566-5-2023-damd1 +- +d:iso19566-5-2023-damd1 +iso19566-5-2023-damd1 + +Under development +Information technologies — JPEG systems — Part 5: JPEG universal metadata box format (JUMBF) — Amendment 1: JUMBF box compression and standalone JUMBF files +https://www.iso.org/standard/88913.html + + + + - a:iso19566-5-awiamd1 iso19566-5-awiamd1 @@ -8048,9 +8287,24 @@ a:iso19566-6-2019-cdamd1 iso19566-6-2019-cdamd1 iso19566-6-2019-damd1 - +a:iso19566-6-2019-cdamd2 +iso19566-6-2019-cdamd2 +iso19566-6-2019-damd2 +- a:iso19566-6-2019-damd1 iso19566-6-2019-damd1 iso19566-6-2019-prfamd1 +- +d:iso19566-6-2019-damd2 +iso19566-6-2019-damd2 + +Under development +Information technologies — JPEG systems — Part 6: JPEG 360 — Amendment 2: Revision to the equirectangular projection constraints +https://www.iso.org/standard/88914.html + + + + - a:iso19566-6-2019-prfamd1 iso19566-6-2019-prfamd1 @@ -8062,8 +8316,8 @@ iso19566-6-2019-awiamd1 - d:iso19566-7 iso19566-7 - -Under development +October 2022 +Published Information technologies — JPEG systems — Part 7: JPEG linked media format (JLINK) https://www.iso.org/standard/78466.html @@ -8071,10 +8325,25 @@ https://www.iso.org/standard/78466.html - -d:iso19566-8 -iso19566-8 +a:iso19566-7-2022-cdamd1 +iso19566-7-2022-cdamd1 +iso19566-7-2022-damd1 +- +d:iso19566-7-2022-damd1 +iso19566-7-2022-damd1 Under development +Information technologies — JPEG systems — Part 7: JPEG linked media format (JLINK) — Amendment 1: Revision to the JLINK XMP expressions +https://www.iso.org/standard/88915.html + + + + +- +d:iso19566-8 +iso19566-8 +February 2023 +Published Information technologies — JPEG systems — Part 8: JPEG Snack https://www.iso.org/standard/81643.html @@ -8082,10 +8351,29 @@ https://www.iso.org/standard/81643.html - -d:iso19566-9 -iso19566-9 +a:iso19566-8-2023-awiamd1 +iso19566-8-2023-awiamd1 +iso19566-8-2023-cdamd1 +- +a:iso19566-8-2023-cdamd1 +iso19566-8-2023-cdamd1 +iso19566-8-2023-damd1 +- +d:iso19566-8-2023-damd1 +iso19566-8-2023-damd1 Under development +Information technologies — JPEG systems — Part 8: JPEG Snack — Amendment 1: Revision of JPEG Snack content boxes +https://www.iso.org/standard/89040.html + + + + +- +d:iso19566-9 +iso19566-9 +August 2024 +Published Information technology — JPEG Systems — Part 9: JPEG extensions mechanisms to facilitate forwards and backwards compatibility https://www.iso.org/standard/84575.html @@ -8315,9 +8603,9 @@ iso21000-21 - d:iso21000-22 iso21000-22 - -Under development -Information technology — Multimedia framework (MPEG-21) — Part 22: User Description +September 2022 +Published +Information technology — Multimedia framework (MPEG-21) — Part 22: User description https://www.iso.org/standard/81582.html @@ -8331,14 +8619,14 @@ Withdrawn Information technology — Multimedia framework (MPEG-21) — Part 22: User Description — Amendment 1: Reference software for MPEG-21 user description https://www.iso.org/standard/71289.html - +iso21000-22 - d:iso21000-23 iso21000-23 - -Under development +November 2022 +Published Information technology — Multimedia framework (MPEG-21) — Part 23: Smart Contracts for Media https://www.iso.org/standard/82527.html @@ -8348,10 +8636,10 @@ https://www.iso.org/standard/82527.html - d:iso21000-3 iso21000-3 -April 2003 -Published + +Under development Information technology — Multimedia framework (MPEG-21) — Part 3: Digital Item Identification -https://www.iso.org/standard/35367.html +https://www.iso.org/standard/89735.html @@ -8645,10 +8933,10 @@ https://www.iso.org/standard/50551.html - d:iso21122-1 iso21122-1 -March 2022 +July 2024 Published Information technology — JPEG XS low-latency lightweight image coding system — Part 1: Core coding system -https://www.iso.org/standard/81551.html +https://www.iso.org/standard/85247.html @@ -8682,10 +8970,10 @@ iso21122-1 - d:iso21122-2 iso21122-2 -March 2022 +August 2024 Published Information technology — JPEG XS low-latency lightweight image coding system — Part 2: Profiles and buffer models -https://www.iso.org/standard/81552.html +https://www.iso.org/standard/85250.html @@ -8701,6 +8989,17 @@ https://www.iso.org/standard/78470.html +- +d:iso21122-2-2022-amd1-2022 +iso21122-2-2022-amd1-2022 +November 2022 +Withdrawn +Information technology — JPEG XS low-latency lightweight image coding system — Part 2: Profiles and buffer models — Amendment 1: Profile and sublevel for 4:2:0 content +https://www.iso.org/standard/84584.html + +iso21122-2 + + - a:iso21122-2-awiamd1 iso21122-2-awiamd1 @@ -8710,23 +9009,16 @@ a:iso21122-2-cdamd1 iso21122-2-cdamd1 iso21122-2-damd1 - -d:iso21122-2-damd1 +a:iso21122-2-damd1 iso21122-2-damd1 - -Under development -Information technology — JPEG XS low-latency lightweight image coding system — Part 2: Profiles and buffer models — Amendment 1: Profile and sublevel for 4:2:0 content -https://www.iso.org/standard/84584.html - - - - +iso21122-2-2022-amd1-2022 - d:iso21122-3 iso21122-3 -March 2022 -Published +August 2024 +Under development Information technology — JPEG XS low-latency lightweight image coding system — Part 3: Transport and container formats -https://www.iso.org/standard/81553.html +https://www.iso.org/standard/86420.html @@ -8752,7 +9044,7 @@ iso21122-4 Under development Information technology — JPEG XS low-latency lightweight image coding system — Part 4: Conformance testing -https://www.iso.org/standard/82568.html +https://www.iso.org/standard/88912.html @@ -8763,7 +9055,29 @@ iso21122-5 Under development Information technology — JPEG XS low-latency lightweight image coding system — Part 5: Reference software -https://www.iso.org/standard/82569.html +https://www.iso.org/standard/89031.html + + + + +- +d:iso21617-1 +iso21617-1 + +Under development +Information technology — JPEG Trust — Part 1: Core Foundation +https://www.iso.org/standard/86831.html + + + + +- +d:iso21617-2 +iso21617-2 + +Under development +Information technology — JPEG Trust — Part 2: Trust profiles catalogue +https://www.iso.org/standard/89038.html @@ -8835,8 +9149,8 @@ https://www.iso.org/standard/74533.html - d:iso21794-4 iso21794-4 -March 2022 -Under development +May 2022 +Published Information technology — Plenoptic image coding system (JPEG Pleno) — Part 4: Reference software https://www.iso.org/standard/74534.html @@ -8854,6 +9168,17 @@ https://www.iso.org/standard/84576.html +- +d:iso21794-6 +iso21794-6 + +Under development +Information technology — Plenoptic image coding system (JPEG Pleno) — Part 6: Learning-based point cloud coding +https://www.iso.org/standard/85640.html + + + + - d:iso23000-1 iso23000-1 @@ -9099,10 +9424,10 @@ https://www.iso.org/standard/70442.html - d:iso23000-19 iso23000-19 -March 2020 +February 2024 Published Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media -https://www.iso.org/standard/79106.html +https://www.iso.org/standard/85623.html @@ -9148,11 +9473,11 @@ iso23000-19-2020-amd1-2021 d:iso23000-19-2020-amd1-2021 iso23000-19-2020-amd1-2021 May 2021 -Published +Withdrawn Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media — Amendment 1: Additional CMAF HEVC media profiles https://www.iso.org/standard/80756.html - +iso23000-19 - @@ -9171,6 +9496,17 @@ iso23000-19-2020-damd2 a:iso23000-19-2020-cdamd3 iso23000-19-2020-cdamd3 iso23000-19-2020-damd3 +- +d:iso23000-19-2020-cdamd4 +iso23000-19-2020-cdamd4 + +Deleted +Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media — Amendment 1: LCEVC and other technologies +https://www.iso.org/standard/84799.html + + + + - a:iso23000-19-2020-damd1 iso23000-19-2020-damd1 @@ -9190,7 +9526,7 @@ https://www.iso.org/standard/82530.html d:iso23000-19-2020-damd3 iso23000-19-2020-damd3 -Under development +Deleted Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media — Amendment 3: 8K HEVC, 4K HFR HEVC and Chroma Location for CMAF https://www.iso.org/standard/83528.html @@ -9202,16 +9538,43 @@ a:iso23000-19-2020-fdamd1 iso23000-19-2020-fdamd1 iso23000-19-2020-amd1 - -d:iso23000-19-2020-wdamd4 +a:iso23000-19-2020-wdamd4 iso23000-19-2020-wdamd4 +iso23000-19-2020-cdamd4 +- +a:iso23000-19-2024-amd1 +iso23000-19-2024-amd1 +iso23000-19-2024-amd1-2024 +- +d:iso23000-19-2024-amd1-2024 +iso23000-19-2024-amd1-2024 +July 2024 +Published +Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media — Amendment 1: Low complexity enhancement video Coding (LCEVC) and other technologies +https://www.iso.org/standard/85642.html + + + + +- +d:iso23000-19-2024-awiamd2 +iso23000-19-2024-awiamd2 Under development -Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media — Amendment 4: LCEVC and other technologies -https://www.iso.org/standard/84799.html +Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media — Amendment 2: Additional structural CMAF brand profile +https://www.iso.org/standard/89043.html +- +a:iso23000-19-2024-damd1 +iso23000-19-2024-damd1 +iso23000-19-2024-prfamd1 +- +a:iso23000-19-2024-prfamd1 +iso23000-19-2024-prfamd1 +iso23000-19-2024-amd1 - a:iso23000-19-awiamd1 iso23000-19-awiamd1 @@ -9221,6 +9584,10 @@ a:iso23000-19-cdamd1 iso23000-19-cdamd1 iso23000-19-2020-cdamd1 - +a:iso23000-19-damd1 +iso23000-19-damd1 +iso23000-19-2024-damd1 +- d:iso23000-2 iso23000-2 January 2008 @@ -9276,10 +9643,10 @@ iso23000-21-2019-cdamd1 - d:iso23000-22 iso23000-22 -June 2019 -Published + +Under development Information technology — Multimedia application format (MPEG-A) — Part 22: Multi-image application format (MIAF) -https://www.iso.org/standard/74417.html +https://www.iso.org/standard/87576.html @@ -9322,6 +9689,17 @@ iso23000-22-2019-damd1 a:iso23000-22-2019-cdamd2 iso23000-22-2019-cdamd2 iso23000-22-2019-damd2 +- +d:iso23000-22-2019-cdamd3 +iso23000-22-2019-cdamd3 + +Deleted +Information technology — Multimedia application format (MPEG-A) — Part 22: Multi-image application format (MIAF) — Amendment 3: Chroma Subsampling and others for MIAF +https://www.iso.org/standard/85588.html + + + + - a:iso23000-22-2019-damd1 iso23000-22-2019-damd1 @@ -9338,6 +9716,28 @@ iso23000-22-2019-amd1 a:iso23000-22-2019-fdamd2 iso23000-22-2019-fdamd2 iso23000-22-2019-amd2-2021 +- +d:iso23000-23 +iso23000-23 + +Under development +Information technology — Multimedia application format (MPEG-A) — Part 23: Decentralized media rights application format +https://www.iso.org/standard/86437.html + + + + +- +d:iso23000-24 +iso23000-24 + +Under development +Information technology — Multimedia application format (MPEG-A) — Part 24: Messaging media application format (MeMAF) +https://www.iso.org/standard/89039.html + + + + - d:iso23000-3 iso23000-3 @@ -9650,6 +10050,17 @@ https://www.iso.org/standard/80758.html a:iso23001-10-2020-cdamd1 iso23001-10-2020-cdamd1 iso23001-10-2020-damd1 +- +d:iso23001-10-2020-cdamd2 +iso23001-10-2020-cdamd2 + +Under development +Information technology — MPEG systems technologies — Part 10: Carriage of timed metadata metrics of media in ISO base media file format — Amendment 2: Support for Attenuation Maps +https://www.iso.org/standard/89119.html + + + + - a:iso23001-10-2020-damd1 iso23001-10-2020-damd1 @@ -9669,8 +10080,8 @@ iso23001-10-2020-cdamd1 - d:iso23001-11 iso23001-11 - -Under development +February 2023 +Published Information technology — MPEG systems technologies — Part 11: Energy-efficient media consumption (green metadata) https://www.iso.org/standard/83674.html @@ -9685,7 +10096,7 @@ Withdrawn Information technology — MPEG systems technologies — Part 11: Energy-efficient media consumption (green metadata) — Amendment 1: Carriage of green metadata in an HEVC SEI message https://www.iso.org/standard/68657.html - +iso23001-11 - @@ -9696,7 +10107,7 @@ Withdrawn Information technology — MPEG systems technologies — Part 11: Energy-efficient media consumption (green metadata) — Amendment 2: Conformance and reference software https://www.iso.org/standard/70995.html - +iso23001-11 - @@ -9710,6 +10121,44 @@ https://www.iso.org/standard/73308.html iso23001-11 +- +a:iso23001-11-2023-amd1 +iso23001-11-2023-amd1 +iso23001-11-2023-amd1-2024 +- +d:iso23001-11-2023-amd1-2024 +iso23001-11-2023-amd1-2024 +July 2024 +Published +Information technology — MPEG systems technologies — Part 11: Energy-efficient media consumption (green metadata) — Amendment 1: Energy-efficient media consumption (green metadata) for EVC +https://www.iso.org/standard/85589.html + + + + +- +a:iso23001-11-2023-cdamd2 +iso23001-11-2023-cdamd2 +iso23001-11-2023-damd2 +- +a:iso23001-11-2023-damd1 +iso23001-11-2023-damd1 +iso23001-11-2023-prfamd1 +- +d:iso23001-11-2023-damd2 +iso23001-11-2023-damd2 + +Under development +Information technology — MPEG systems technologies — Part 11: Energy-efficient media consumption (green metadata) — Amendment 2: Energy-efficient media consumption for new display power reduction metadata +https://www.iso.org/standard/87622.html + + + + +- +a:iso23001-11-2023-prfamd1 +iso23001-11-2023-prfamd1 +iso23001-11-2023-amd1 - d:iso23001-12 iso23001-12 @@ -9795,19 +10244,45 @@ https://www.iso.org/standard/81590.html - d:iso23001-17 iso23001-17 +February 2024 +Published +Information technology — MPEG systems technologies — Part 17: Carriage of uncompressed video and images in ISO base media file format +https://www.iso.org/standard/82528.html + + + + +- +d:iso23001-17-2024-cdamd2 +iso23001-17-2024-cdamd2 Under development -Information technology — MPEG systems technologies — Part 17: Carriage of uncompressed video in the ISO base media file format -https://www.iso.org/standard/82528.html +Information technology — MPEG systems technologies — Part 17: Carriage of uncompressed video and images in ISO base media file format — Amendment 2: Agnostically compressed media +https://www.iso.org/standard/89120.html - -d:iso23001-18 -iso23001-18 +d:iso23001-17-2024-damd1 +iso23001-17-2024-damd1 Under development +Information technology — MPEG systems technologies — Part 17: Carriage of uncompressed video and images in ISO base media file format — Amendment 1: High precision timing tagging +https://www.iso.org/standard/87580.html + + + + +- +a:iso23001-17-cdamd1 +iso23001-17-cdamd1 +iso23001-17-2024-damd1 +- +d:iso23001-18 +iso23001-18 +June 2022 +Published Information technology — MPEG systems technologies — Part 18: Event message track format for the ISO base media file format https://www.iso.org/standard/82529.html @@ -9861,8 +10336,8 @@ https://www.iso.org/standard/50094.html - d:iso23001-7 iso23001-7 - -Under development +August 2023 +Published Information technology — MPEG systems technologies — Part 7: Common encryption in ISO base media file format files https://www.iso.org/standard/84637.html @@ -9877,7 +10352,7 @@ Withdrawn Information technology — MPEG systems technologies — Part 7: Common encryption in ISO base media file format files — Amendment 1: AES-CBC-128 and key rotation https://www.iso.org/standard/60398.html - +iso23001-7 - @@ -9888,11 +10363,11 @@ iso23001-7-2016-amd1-2019 d:iso23001-7-2016-amd1-2019 iso23001-7-2016-amd1-2019 September 2019 -Published +Withdrawn Information technology — MPEG systems technologies — Part 7: Common encryption in ISO base media file format files — Amendment 1: AES-CBC-128 and key rotation https://www.iso.org/standard/76597.html - +iso23001-7 - @@ -10148,7 +10623,7 @@ iso23002-7 Under development Information technology — MPEG video technologies — Part 7: Versatile supplemental enhancement information messages for coded video bitstreams -https://www.iso.org/standard/83530.html +https://www.iso.org/standard/87644.html @@ -10168,6 +10643,28 @@ https://www.iso.org/standard/82536.html +- +d:iso23002-7-2022-damd1 +iso23002-7-2022-damd1 + +Deleted +Information technology — MPEG video technologies — Part 7: Versatile supplemental enhancement information messages for coded video bitstreams — Amendment 1: Additional SEI messages +https://www.iso.org/standard/85292.html + + + + +- +d:iso23002-7-awiamd1 +iso23002-7-awiamd1 + +Under development +Information technology — MPEG video technologies — Part 7: Versatile supplemental enhancement information messages for coded video bitstreams — Amendment 1: Additional SEI +https://www.iso.org/standard/90186.html + + + + - d:iso23002-8 iso23002-8 @@ -10182,9 +10679,9 @@ https://www.iso.org/standard/81591.html - d:iso23002-9 iso23002-9 - -Under development -Information technology — MPEG video technologies — Part 9: Film grain synthesis technologies for video applications +July 2024 +Published +Information technology — MPEG video technologies — Part 9: Film grain synthesis technology for video applications https://www.iso.org/standard/84712.html @@ -10601,10 +11098,10 @@ iso23003-3-2020-amd1-2021 - d:iso23003-4 iso23003-4 -June 2020 -Published + +Under development Information technology — MPEG audio technologies — Part 4: Dynamic range control -https://www.iso.org/standard/75930.html +https://www.iso.org/standard/89036.html @@ -10617,7 +11114,7 @@ Withdrawn Information technology — MPEG audio technologies — Part 4: Dynamic Range Control — Amendment 1: Parametric DRC, gain mapping and equalization tools https://www.iso.org/standard/70437.html -iso23003-4 + - @@ -10628,7 +11125,7 @@ Withdrawn Information technology — MPEG audio technologies — Part 4: Dynamic Range Control — Amendment 2: Reference software https://www.iso.org/standard/71074.html -iso23003-4 + - @@ -10654,18 +11151,10 @@ iso23003-4 - -a:iso23003-4-2020-cdamd1 -iso23003-4-2020-cdamd1 -iso23003-4-2020-damd1 -- -a:iso23003-4-2020-damd1 -iso23003-4-2020-damd1 -iso23003-4-2020-prfamd1 -- -d:iso23003-4-2020-prfamd1 -iso23003-4-2020-prfamd1 - -Under development +d:iso23003-4-2020-amd1-2022 +iso23003-4-2020-amd1-2022 +July 2022 +Published Information technology — MPEG audio technologies — Part 4: Dynamic range control — Amendment 1: Side chain normalization https://www.iso.org/standard/82732.html @@ -10673,25 +11162,56 @@ https://www.iso.org/standard/82732.html - -a:iso23003-4-2020-wdamd1 -iso23003-4-2020-wdamd1 -iso23003-4-2020-cdamd1 +a:iso23003-4-2020-amd2 +iso23003-4-2020-amd2 +iso23003-4-2020-amd2-2023 - -d:iso23003-5 -iso23003-5 -January 2020 +d:iso23003-4-2020-amd2-2023 +iso23003-4-2020-amd2-2023 +October 2023 Published -Information technology — MPEG audio technologies — Part 5: Uncompressed audio in MPEG-4 file format -https://www.iso.org/standard/77752.html +Information technology — MPEG audio technologies — Part 4: Dynamic range control — Amendment 2: Loudness leveling +https://www.iso.org/standard/85290.html - -d:iso23003-6 -iso23003-6 - -Under development +a:iso23003-4-2020-cdamd1 +iso23003-4-2020-cdamd1 +iso23003-4-2020-damd1 +- +a:iso23003-4-2020-damd1 +iso23003-4-2020-damd1 +iso23003-4-2020-prfamd1 +- +a:iso23003-4-2020-fdamd2 +iso23003-4-2020-fdamd2 +iso23003-4-2020-amd2 +- +a:iso23003-4-2020-prfamd1 +iso23003-4-2020-prfamd1 +iso23003-4-2020-amd1-2022 +- +a:iso23003-4-2020-wdamd1 +iso23003-4-2020-wdamd1 +iso23003-4-2020-cdamd1 +- +d:iso23003-5 +iso23003-5 +January 2020 +Published +Information technology — MPEG audio technologies — Part 5: Uncompressed audio in MPEG-4 file format +https://www.iso.org/standard/77752.html + + + + +- +d:iso23003-6 +iso23003-6 +August 2022 +Published Information technology — MPEG audio technologies — Part 6: Unified speech and audio coding reference software https://www.iso.org/standard/82613.html @@ -10702,7 +11222,7 @@ https://www.iso.org/standard/82613.html d:iso23003-7 iso23003-7 April 2022 -Under development +Published Information technology — MPEG audio technologies — Part 7: Unified speech and audio coding conformance testing https://www.iso.org/standard/82532.html @@ -11020,8 +11540,8 @@ https://www.iso.org/standard/62119.html - d:iso23008-1 iso23008-1 - -Under development +January 2023 +Published Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) https://www.iso.org/standard/76386.html @@ -11036,7 +11556,7 @@ Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) — Amendment 1: Additional technologies for MPEG Media Transport (MMT) https://www.iso.org/standard/65270.html - +iso23008-1 - @@ -11047,18 +11567,18 @@ Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) — Technical Corrigendum 1 https://www.iso.org/standard/66653.html - +iso23008-1 - d:iso23008-1-2017-amd1-2017 iso23008-1-2017-amd1-2017 September 2017 -Published +Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) — Amendment 1: Use of MMT Data in MPEG-H 3D Audio https://www.iso.org/standard/70426.html - +iso23008-1 - @@ -11083,6 +11603,32 @@ https://www.iso.org/standard/74426.html +- +a:iso23008-1-2023-cdamd1 +iso23008-1-2023-cdamd1 +iso23008-1-2023-damd1 +- +d:iso23008-1-2023-damd1 +iso23008-1-2023-damd1 + +Under development +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) — Amendment 1: Signalling of adaptive FEC scheme +https://www.iso.org/standard/87623.html + + + + +- +d:iso23008-1-2023-wdamd1 +iso23008-1-2023-wdamd1 + +Deleted +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) — Amendment 1: Improvement of MMT message transaction +https://www.iso.org/standard/82727.html + +iso23008-1 + + - a:iso23008-1-cdamd1 iso23008-1-cdamd1 @@ -11114,16 +11660,9 @@ https://www.iso.org/standard/81605.html - -d:iso23008-1-wdamd1 +a:iso23008-1-wdamd1 iso23008-1-wdamd1 - -Under development -Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 1: MPEG media transport (MMT) — Amendment 1: Improvement of MMT message transaction -https://www.iso.org/standard/82727.html - - - - +iso23008-1-2023-wdamd1 - a:iso23008-1-wdamd2 iso23008-1-wdamd2 @@ -11208,8 +11747,8 @@ d:iso23008-12 iso23008-12 Under development -Information technology — MPEG systems technologies — Part 12: Image File Format -https://www.iso.org/standard/83650.html +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 12: Image File Format +https://www.iso.org/standard/89035.html @@ -11222,7 +11761,7 @@ iso23008-12-2017-amd1-2020 d:iso23008-12-2017-amd1-2020 iso23008-12-2017-amd1-2020 November 2020 -Published +Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 12: Image File Format — Amendment 1: Support for predictive image coding, bursts, bracketing and other improvements https://www.iso.org/standard/79153.html @@ -11245,7 +11784,7 @@ iso23008-12-2017-cor1-2020 d:iso23008-12-2017-cor1-2020 iso23008-12-2017-cor1-2020 January 2020 -Published +Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 12: Image File Format — Technical Corrigendum 1 https://www.iso.org/standard/80239.html @@ -11280,16 +11819,50 @@ a:iso23008-12-2017-wdamd3 iso23008-12-2017-wdamd3 iso23008-12-2017-wdamd2 - -d:iso23008-12-wdamd1 -iso23008-12-wdamd1 +a:iso23008-12-2022-cdamd2 +iso23008-12-2022-cdamd2 +iso23008-12-2022-damd2 +- +d:iso23008-12-2022-damd1 +iso23008-12-2022-damd1 -Under development -Information technology — MPEG systems technologies — Part 12: Image File Format — Amendment 1: Support for progressive rendering signalling and other improvements +Deleted +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 12: Image File Format — Amendment 1: Support for progressive rendering signalling and other improvements https://www.iso.org/standard/84767.html +- +d:iso23008-12-2022-damd2 +iso23008-12-2022-damd2 + +Under development +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 12: Image File Format — Amendment 2: Renderable text items and other improvements +https://www.iso.org/standard/86521.html + + + + +- +a:iso23008-12-awiamd2 +iso23008-12-awiamd2 +iso23008-12-cdamd2 +- +d:iso23008-12-cdamd2 +iso23008-12-cdamd2 + +Under development +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 12: Image File Format — Amendment 2: Support for tone map derivation and other technologies +https://www.iso.org/standard/89044.html + + + + +- +a:iso23008-12-wdamd1 +iso23008-12-wdamd1 +iso23008-12-2022-damd1 - d:iso23008-13 iso23008-13 @@ -11326,10 +11899,10 @@ https://www.iso.org/standard/72656.html - d:iso23008-2 iso23008-2 -August 2020 +October 2023 Published Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 2: High efficiency video coding -https://www.iso.org/standard/75484.html +https://www.iso.org/standard/85457.html @@ -11386,11 +11959,11 @@ iso23008-2-2020-amd1-2021 d:iso23008-2-2020-amd1-2021 iso23008-2-2020-amd1-2021 July 2021 -Published +Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 2: High efficiency video coding — Amendment 1: Shutter interval information SEI message https://www.iso.org/standard/80759.html - +iso23008-2 - @@ -11420,11 +11993,26 @@ iso23008-2-2020-amd1 a:iso23008-2-2020-wdamd2 iso23008-2-2020-wdamd2 iso23008-2-2020-cdamd2 +- +d:iso23008-2-2023-damd1 +iso23008-2-2023-damd1 + +Under development +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 2: High efficiency video coding — Amendment 1: New profiles, colour descriptors, and SEI messages +https://www.iso.org/standard/87588.html + + + + - a:iso23008-2-awiamd2 iso23008-2-awiamd2 iso23008-2-cdamd2 - +a:iso23008-2-cdamd1 +iso23008-2-cdamd1 +iso23008-2-2023-damd1 +- a:iso23008-2-cdamd2 iso23008-2-cdamd2 iso23008-2-damd2 @@ -11450,8 +12038,8 @@ iso23008-2-damd1 - d:iso23008-3 iso23008-3 - -Under development +August 2022 +Published Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio https://www.iso.org/standard/83525.html @@ -11466,7 +12054,7 @@ Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio — Amendment 1: MPEG-H, 3D audio profile and levels https://www.iso.org/standard/67953.html - +iso23008-3 - @@ -11477,7 +12065,7 @@ Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio — Amendment 2: MPEG-H 3D Audio File Format Support https://www.iso.org/standard/68592.html - +iso23008-3 - @@ -11488,7 +12076,7 @@ Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio — Amendment 3: MPEG-H 3D Audio Phase 2 https://www.iso.org/standard/69561.html - +iso23008-3 - @@ -11499,7 +12087,7 @@ Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio — Amendment 4: Carriage of system data https://www.iso.org/standard/69453.html - +iso23008-3 - @@ -11521,11 +12109,11 @@ iso23008-3-2019-amd1-2019 d:iso23008-3-2019-amd1-2019 iso23008-3-2019-amd1-2019 June 2019 -Published +Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio — Amendment 1: Audio metadata enhancements https://www.iso.org/standard/77254.html - +iso23008-3 - @@ -11536,11 +12124,11 @@ iso23008-3-2019-amd2-2020 d:iso23008-3-2019-amd2-2020 iso23008-3-2019-amd2-2020 November 2020 -Published +Withdrawn Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 3: 3D audio — Amendment 2: 3D Audio baseline profile, corrections and improvements https://www.iso.org/standard/79147.html - +iso23008-3 - @@ -11575,16 +12163,20 @@ https://www.iso.org/standard/68662.html - -d:iso23008-4-2020-cdamd2 -iso23008-4-2020-cdamd2 +d:iso23008-4-2020-cdamd1 +iso23008-4-2020-cdamd1 -Under development -Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 4: MMT reference software — Amendment 2: Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 4: MMT reference and conformance software — Amendment 2: Support for MMTP extensions +Deleted +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 4: MMT reference software — Amendment 1: Support for MMTP extensions https://www.iso.org/standard/79325.html +iso23008-4 - +- +a:iso23008-4-2020-cdamd2 +iso23008-4-2020-cdamd2 +iso23008-4-2020-cdamd1 - a:iso23008-4-cdamd2 iso23008-4-cdamd2 @@ -11659,6 +12251,29 @@ https://www.iso.org/standard/81583.html +- +a:iso23008-6-2021-amd1 +iso23008-6-2021-amd1 +iso23008-6-2021-amd1-2024 +- +d:iso23008-6-2021-amd1-2024 +iso23008-6-2021-amd1-2024 +April 2024 +Published +Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 6: 3D audio reference software — Amendment 1: Corrections for closest loudspeaker playout and increased software resilience +https://www.iso.org/standard/86435.html + + + + +- +a:iso23008-6-2021-damd1 +iso23008-6-2021-damd1 +iso23008-6-2021-fdamd1 +- +a:iso23008-6-2021-fdamd1 +iso23008-6-2021-fdamd1 +iso23008-6-2021-amd1 - d:iso23008-7 iso23008-7 @@ -11707,25 +12322,29 @@ iso23008-8-2018-amd1 - d:iso23008-9 iso23008-9 -March 2022 +May 2023 Published Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 9: 3D Audio conformance testing -https://www.iso.org/standard/81584.html +https://www.iso.org/standard/86274.html - -d:iso23008-9-cdamd1 -iso23008-9-cdamd1 +d:iso23008-9-2022-damd1 +iso23008-9-2022-damd1 -Under development +Deleted Information technology — High efficiency coding and media delivery in heterogeneous environments — Part 9: 3D Audio conformance testing — Amendment 1: Sample rate conversion https://www.iso.org/standard/84403.html +iso23008-9 - +- +a:iso23008-9-cdamd1 +iso23008-9-cdamd1 +iso23008-9-2022-damd1 - a:iso23008-9-wdamd1 iso23008-9-wdamd1 @@ -11736,7 +12355,7 @@ iso23009-1 Under development Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats -https://www.iso.org/standard/83314.html +https://www.iso.org/standard/89027.html @@ -11860,35 +12479,54 @@ a:iso23009-1-2019-wdamd2 iso23009-1-2019-wdamd2 iso23009-1-2019-cdamd2 - -a:iso23009-1-cdamd1 -iso23009-1-cdamd1 -iso23009-1-damd1 +d:iso23009-1-2022-cdamd2 +iso23009-1-2022-cdamd2 + +Deleted +Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats — Amendment 2: EDRAP streaming, content steering and other extensions +https://www.iso.org/standard/84629.html + + + + - -d:iso23009-1-damd1 -iso23009-1-damd1 +d:iso23009-1-2022-cdamd3 +iso23009-1-2022-cdamd3 -Under development -Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats — Amendment 1: Preroll, nonlinear playback and other extensions +Deleted +Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats — Amendment 3: Segment sequences for random access and switching +https://www.iso.org/standard/87583.html + + + + +- +d:iso23009-1-2022-damd1 +iso23009-1-2022-damd1 + +Deleted +Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats — Amendment 1: Media presentation insertion event, nonlinear playback and other extensions https://www.iso.org/standard/83315.html +- +a:iso23009-1-cdamd1 +iso23009-1-cdamd1 +iso23009-1-damd1 +- +a:iso23009-1-damd1 +iso23009-1-damd1 +iso23009-1-2022-damd1 - a:iso23009-1-wdamd1 iso23009-1-wdamd1 iso23009-1-cdamd1 - -d:iso23009-1-wdamd2 +a:iso23009-1-wdamd2 iso23009-1-wdamd2 - -Under development -Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats — Amendment 2: EDRAP streaming and other extensions -https://www.iso.org/standard/84629.html - - - - +iso23009-1-2022-cdamd2 - d:iso23009-2 iso23009-2 @@ -11914,10 +12552,10 @@ https://www.iso.org/standard/76623.html - d:iso23009-3 iso23009-3 - -Under development +October 2015 +Published Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 3: Implementation guidelines -https://www.iso.org/standard/75482.html +https://www.iso.org/standard/63562.html @@ -12003,10 +12641,10 @@ https://www.iso.org/standard/80541.html - d:iso23009-8 iso23009-8 -February 2022 -Published + +Under development Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 8: Session-based DASH operations -https://www.iso.org/standard/80898.html +https://www.iso.org/standard/85455.html @@ -12030,12 +12668,23 @@ https://www.iso.org/standard/82728.html a:iso23009-8-wdamd1 iso23009-8-wdamd1 iso23009-8-cdamd1 +- +d:iso23009-9 +iso23009-9 + +Under development +Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 9: Redundant encoding and packaging for segmented live media (REaP) +https://www.iso.org/standard/85639.html + + + + - d:iso23090-1 iso23090-1 Under development -Information technology - Coded representation of immersive media — Part 1: Immersive media +Information technology — Coded representation of immersive media — Part 1: Architectures for immersive media https://www.iso.org/standard/57793.html @@ -12044,8 +12693,8 @@ https://www.iso.org/standard/57793.html - d:iso23090-10 iso23090-10 - -Under development +May 2022 +Published Information technology — Coded representation of immersive media — Part 10: Carriage of visual volumetric video-based coding data https://www.iso.org/standard/78991.html @@ -12053,20 +12702,50 @@ https://www.iso.org/standard/78991.html - -a:iso23090-10-cdamd1 -iso23090-10-cdamd1 -iso23090-10-damd1 +d:iso23090-10-2022-amd1-2022 +iso23090-10-2022-amd1-2022 +November 2022 +Published +Information technology — Coded representation of immersive media — Part 10: Carriage of visual volumetric video-based coding data — Amendment 1: Support of packed video data +https://www.iso.org/standard/82730.html + + + + - -d:iso23090-10-damd1 -iso23090-10-damd1 +a:iso23090-10-2022-cdamd2 +iso23090-10-2022-cdamd2 +iso23090-10-2022-damd2 +- +d:iso23090-10-2022-cor1-2023 +iso23090-10-2022-cor1-2023 +May 2023 +Published +Information technology — Coded representation of immersive media — Part 10: Carriage of visual volumetric video-based coding data — Technical Corrigendum 1 +https://www.iso.org/standard/85612.html + + + + +- +d:iso23090-10-2022-damd2 +iso23090-10-2022-damd2 Under development -Information technology — Coded representation of immersive media — Part 10: Carriage of visual volumetric video-based coding data — Amendment 1: Support of packed video data -https://www.iso.org/standard/82730.html +Information technology — Coded representation of immersive media — Part 10: Carriage of visual volumetric video-based coding data — Amendment 2: Clarification on brands and other improvements +https://www.iso.org/standard/87625.html +- +a:iso23090-10-cdamd1 +iso23090-10-cdamd1 +iso23090-10-damd1 +- +a:iso23090-10-damd1 +iso23090-10-damd1 +iso23090-10-2022-amd1-2022 - a:iso23090-10-wdamd1 iso23090-10-wdamd1 @@ -12087,8 +12766,19 @@ d:iso23090-12 iso23090-12 Under development -Information technology — Coded representation of immersive media — Part 12: MPEG Immersive video -https://www.iso.org/standard/79113.html +Information technology — Coded representation of immersive media — Part 12: MPEG immersive video +https://www.iso.org/standard/87643.html + + + + +- +d:iso23090-12-2023-damd1 +iso23090-12-2023-damd1 + +Deleted +Information technology — Coded representation of immersive media — Part 12: MPEG immersive video — Amendment 1: V3C extension mechanism +https://www.iso.org/standard/85137.html @@ -12099,62 +12789,104 @@ iso23090-13 Under development Information technology — Coded representation of immersive media — Part 13: Video decoding interface for immersive media -https://www.iso.org/standard/80899.html +https://www.iso.org/standard/89032.html - -d:iso23090-14 -iso23090-14 +d:iso23090-13-2024-cdamd1 +iso23090-13-2024-cdamd1 -Under development -Information technology — Coded representation of immersive media — Part 14: Scene description for MPEG media -https://www.iso.org/standard/80900.html +Deleted +Information technology — Coded representation of immersive media — Part 13: Video decoding interface for immersive media — Amendment 1: Multi-decoder profiles and other improvements +https://www.iso.org/standard/87626.html - -d:iso23090-14-wdamd1 -iso23090-14-wdamd1 +a:iso23090-13-cdamd1 +iso23090-13-cdamd1 +iso23090-13-2024-cdamd1 +- +d:iso23090-14 +iso23090-14 Under development -Information technology — Coded representation of immersive media — Part 14: Scene description for MPEG media — Amendment 1: Support for immersive media codecs in scene description -https://www.iso.org/standard/84769.html +Information technology — Coded representation of immersive media — Part 14: Scene description +https://www.iso.org/standard/90191.html - -d:iso23090-15 -iso23090-15 - -Under development -Information technology — Coded representation of immersive media — Part 15: Conformance testing for versatile video coding -https://www.iso.org/standard/82082.html +d:iso23090-14-2023-amd1-2023 +iso23090-14-2023-amd1-2023 +November 2023 +Published +Information technology — Coded representation of immersive media — Part 14: Scene description — Amendment 1: Support for immersive media codecs in scene description +https://www.iso.org/standard/84769.html - -d:iso23090-15-cdamd1 -iso23090-15-cdamd1 +a:iso23090-14-2023-cdamd2 +iso23090-14-2023-cdamd2 +iso23090-14-2023-damd2 +- +d:iso23090-14-2023-damd2 +iso23090-14-2023-damd2 -Under development -Information technology — Coded representation of immersive media — Part 15: Conformance testing for versatile video coding — Amendment 1: Operation range extensions -https://www.iso.org/standard/84174.html +Deleted +Information technology — Coded representation of immersive media — Part 14: Scene description — Amendment 2: Support for haptics, augmented reality, avatars, interactivity, MPEG-I audio, and lighting +https://www.iso.org/standard/86439.html - -d:iso23090-16 -iso23090-16 +a:iso23090-14-2023-fdamd1 +iso23090-14-2023-fdamd1 +iso23090-14-2023-amd1-2023 +- +a:iso23090-14-wdamd1 +iso23090-14-wdamd1 +iso23090-14-2023-fdamd1 +- +d:iso23090-15 +iso23090-15 +July 2024 +Published +Information technology — Coded representation of immersive media — Part 15: Conformance testing for versatile video coding +https://www.iso.org/standard/86517.html + + + + +- +d:iso23090-15-2022-damd1 +iso23090-15-2022-damd1 + +Deleted +Information technology — Coded representation of immersive media — Part 15: Conformance testing for versatile video coding — Amendment 1: Operation range extensions +https://www.iso.org/standard/84174.html + + + + +- +a:iso23090-15-cdamd1 +iso23090-15-cdamd1 +iso23090-15-2022-damd1 +- +d:iso23090-16 +iso23090-16 Under development Information technology — Coded representation of immersive media — Part 16: Reference software for versatile video coding -https://www.iso.org/standard/82083.html +https://www.iso.org/standard/90189.html @@ -12173,8 +12905,8 @@ https://www.iso.org/standard/80760.html - d:iso23090-18 iso23090-18 - -Under development +January 2024 +Published Information technology — Coded representation of immersive media — Part 18: Carriage of geometry-based point cloud compression data https://www.iso.org/standard/80901.html @@ -12182,8 +12914,23 @@ https://www.iso.org/standard/80901.html - -d:iso23090-18-cdamd1 -iso23090-18-cdamd1 +d:iso23090-18-2024-cdamd2 +iso23090-18-2024-cdamd2 + +Under development +Information technology — Coded representation of immersive media — Part 18: Carriage of geometry-based point cloud compression data — Amendment 2: Point reliability indication and other improvements +https://www.iso.org/standard/87627.html + + + + +- +a:iso23090-18-2024-damd1 +iso23090-18-2024-damd1 +iso23090-18-2024-fdamd1 +- +d:iso23090-18-2024-fdamd1 +iso23090-18-2024-fdamd1 Under development Information technology — Coded representation of immersive media — Part 18: Carriage of geometry-based point cloud compression data — Amendment 1: Support for temporal scalability @@ -12192,6 +12939,18 @@ https://www.iso.org/standard/84570.html +- +a:iso23090-18-cdamd1 +iso23090-18-cdamd1 +iso23090-18-damd1 +- +a:iso23090-18-cdamd2 +iso23090-18-cdamd2 +iso23090-18-2024-cdamd2 +- +a:iso23090-18-damd1 +iso23090-18-damd1 +iso23090-18-2024-damd1 - a:iso23090-18-wdamd1 iso23090-18-wdamd1 @@ -12202,7 +12961,18 @@ iso23090-19 Under development Information technology — Coded representation of immersive media — Part 19: Reference Software for V-PCC -https://www.iso.org/standard/82089.html +https://www.iso.org/standard/90178.html + + + + +- +d:iso23090-19-2023-cdamd1 +iso23090-19-2023-cdamd1 + +Deleted +Information technology — Coded representation of immersive media — Part 19: Reference Software for V-PCC — Amendment 1: Additional V3C bitstreams +https://www.iso.org/standard/86434.html @@ -12210,8 +12980,8 @@ https://www.iso.org/standard/82089.html - d:iso23090-2 iso23090-2 - -Under development +June 2023 +Published Information technology — Coded representation of immersive media — Part 2: Omnidirectional media format https://www.iso.org/standard/84636.html @@ -12230,11 +13000,22 @@ https://www.iso.org/standard/83661.html - -d:iso23090-20 -iso23090-20 +d:iso23090-2-2023-cdamd1 +iso23090-2-2023-cdamd1 Under development -Information technology — Coded representation of immersive media — Part 20: Conformance for V-PCC +Information technology — Coded representation of immersive media — Part 2: Omnidirectional media format — Amendment 1: Server-side dynamic adaptation +https://www.iso.org/standard/87624.html + + + + +- +d:iso23090-20 +iso23090-20 +December 2023 +Published +Information technology — Coded representation of immersive media — Part 20: Conformance testing for visual volumetric video-based coding (V3C) with video-based point cloud compression (V-PCC) https://www.iso.org/standard/82090.html @@ -12243,9 +13024,9 @@ https://www.iso.org/standard/82090.html - d:iso23090-21 iso23090-21 - -Under development -Information technology — Coded representation of immersive media — Part 21: Reference Software for G-PCC +March 2024 +Published +Information technology — Coded representation of immersive media — Part 21: Reference software for Geometry-based Point Cloud Compression (G-PCC) https://www.iso.org/standard/81601.html @@ -12265,8 +13046,8 @@ https://www.iso.org/standard/81603.html - d:iso23090-23 iso23090-23 - -Under development +October 2023 +Published Information technology — Coded representation of immersive media — Part 23: Conformance and reference software for MPEG immersive video https://www.iso.org/standard/83695.html @@ -12278,12 +13059,23 @@ d:iso23090-24 iso23090-24 Under development -Information technology — Coded representation of immersive media — Part 24: Conformance and reference software for scene description for MPEG media +Information technology — Coded representation of immersive media — Part 24: Conformance and reference software for scene description https://www.iso.org/standard/83696.html +- +d:iso23090-24-awiamd1 +iso23090-24-awiamd1 + +Under development +Information technology — Coded representation of immersive media — Part 24: Conformance and reference software for scene description — Amendment 1: Conformance and reference software for scene description on haptics, augmented reality, avatars, interactivity and lighting +https://www.iso.org/standard/87584.html + + + + - d:iso23090-25 iso23090-25 @@ -12311,7 +13103,7 @@ d:iso23090-27 iso23090-27 Under development -Information technology — Coded representation of immersive media — Part 27: Media, renderers, and game engines for render-based systems and applications +Information technology — Coded representation of immersive media — Part 27: Media and architectures for render-based systems and applications https://www.iso.org/standard/84568.html @@ -12322,19 +13114,30 @@ d:iso23090-28 iso23090-28 Under development -Information technology — Coded representation of immersive media — Part 28: Efficient 3D graphics media representation for render-based systems and applications +Information technology — Coded representation of immersive media — Part 28: Interchangeable scene-based media representations https://www.iso.org/standard/84571.html - -d:iso23090-3 -iso23090-3 +d:iso23090-29 +iso23090-29 Under development +Information technology — Coded representation of immersive media — Part 29: Video-based dynamic mesh coding (V-DMC) +https://www.iso.org/standard/85254.html + + + + +- +d:iso23090-3 +iso23090-3 +July 2024 +Published Information technology — Coded representation of immersive media — Part 3: Versatile video coding -https://www.iso.org/standard/83531.html +https://www.iso.org/standard/86516.html @@ -12354,17 +13157,109 @@ https://www.iso.org/standard/82537.html +- +d:iso23090-3-2022-damd1 +iso23090-3-2022-damd1 + +Deleted +Information technology — Coded representation of immersive media — Part 3: Versatile video coding — Amendment 1: New level and systems-related supplemental enhancement information +https://www.iso.org/standard/84770.html + + + + +- +d:iso23090-3-2024-awiamd1 +iso23090-3-2024-awiamd1 + +Under development +Information technology — Coded representation of immersive media — Part 3: Versatile video coding — Amendment 1: Additions and corrections +https://www.iso.org/standard/90187.html + + + + - a:iso23090-3-awiamd1 iso23090-3-awiamd1 iso23090-3-2021-awiamd1 - -d:iso23090-3-wdamd1 +a:iso23090-3-wdamd1 iso23090-3-wdamd1 +iso23090-3-2022-damd1 +- +d:iso23090-30 +iso23090-30 Under development -Information technology — Coded representation of immersive media — Part 3: Versatile video coding — Amendment 1: New level and systems-related supplemental enhancement information -https://www.iso.org/standard/84770.html +Information technology — Coded representation of immersive media — Part 30: Low latency, low complexity LiDAR coding +https://www.iso.org/standard/85255.html + + + + +- +d:iso23090-31 +iso23090-31 + +Under development +Information technology — Coded representation of immersive media — Part 31: Haptics coding +https://www.iso.org/standard/86122.html + + + + +- +d:iso23090-32 +iso23090-32 + +Under development +Information technology — Coded representation of immersive media — Part 32: Carriage of haptics data +https://www.iso.org/standard/86443.html + + + + +- +d:iso23090-33 +iso23090-33 + +Under development +Information technology — Coded representation of immersive media — Part 33: Conformance and reference software for haptics coding +https://www.iso.org/standard/86518.html + + + + +- +d:iso23090-34 +iso23090-34 + +Under development +Information technology — Coded representation of immersive media — Part 34: Immersive audio reference software +https://www.iso.org/standard/89037.html + + + + +- +d:iso23090-35 +iso23090-35 + +Under development +Information technology — Coded representation of immersive media — Part 35: Conformance and reference software for Low latency, low complexity LiDAR coding +https://www.iso.org/standard/90183.html + + + + +- +d:iso23090-36 +iso23090-36 + +Under development +Information technology — Coded representation of immersive media — Part 36: Conformance and Reference Software for V-DMC +https://www.iso.org/standard/90184.html @@ -12386,11 +13281,26 @@ iso23090-5 Under development Information technology — Coded representation of immersive media — Part 5: Visual volumetric video-based coding (V3C) and video-based point cloud compression (V-PCC) -https://www.iso.org/standard/83535.html +https://www.iso.org/standard/89030.html +- +d:iso23090-5-2023-damd1 +iso23090-5-2023-damd1 + +Deleted +Information technology — Coded representation of immersive media — Part 5: Visual volumetric video-based coding (V3C) and video-based point cloud compression (V-PCC) — Amendment 1: V3C extension mechanism and payload type +https://www.iso.org/standard/85139.html + +iso23090-5 + + +- +a:iso23090-5-damd1 +iso23090-5-damd1 +iso23090-5-2023-damd1 - d:iso23090-6 iso23090-6 @@ -12402,21 +13312,48 @@ https://www.iso.org/standard/78988.html +- +a:iso23090-6-2021-amd1 +iso23090-6-2021-amd1 +iso23090-6-2021-amd1-2024 +- +d:iso23090-6-2021-amd1-2024 +iso23090-6-2021-amd1-2024 +January 2024 +Published +Information technology — Coded representation of immersive media — Part 6: Immersive media metrics — Amendment 1: Immersive media metrics for V3C Data and OMAF +https://www.iso.org/standard/81606.html + + + + - a:iso23090-6-2021-cdamd1 iso23090-6-2021-cdamd1 iso23090-6-2021-damd1 - -d:iso23090-6-2021-damd1 +a:iso23090-6-2021-cdamd2 +iso23090-6-2021-cdamd2 +iso23090-6-2021-damd2 +- +a:iso23090-6-2021-damd1 iso23090-6-2021-damd1 +iso23090-6-2021-fdamd1 +- +d:iso23090-6-2021-damd2 +iso23090-6-2021-damd2 Under development -Information technology — Coded representation of immersive media — Part 6: Immersive media metrics — Amendment 1: Immersive media metrics for V3C Data and OMAF -https://www.iso.org/standard/81606.html +Information technology — Coded representation of immersive media — Part 6: Immersive media metrics — Amendment 2: Additional latencies and other improvements +https://www.iso.org/standard/86522.html +- +a:iso23090-6-2021-fdamd1 +iso23090-6-2021-fdamd1 +iso23090-6-2021-amd1 - a:iso23090-6-cdamd1 iso23090-6-cdamd1 @@ -12428,8 +13365,8 @@ iso23090-6-cdamd1 - d:iso23090-7 iso23090-7 - -Under development +November 2022 +Published Information technology — Coded representation of immersive media — Part 7: Immersive media metadata https://www.iso.org/standard/78989.html @@ -12437,8 +13374,12 @@ https://www.iso.org/standard/78989.html - -d:iso23090-7-wdamd1 -iso23090-7-wdamd1 +a:iso23090-7-2022-cdamd1.2 +iso23090-7-2022-cdamd1.2 +iso23090-7-2022-damd1 +- +d:iso23090-7-2022-damd1 +iso23090-7-2022-damd1 Under development Information technology — Coded representation of immersive media — Part 7: Immersive media metadata — Amendment 1: Common metadata for immersive media @@ -12447,6 +13388,10 @@ https://www.iso.org/standard/84569.html +- +a:iso23090-7-wdamd1 +iso23090-7-wdamd1 +iso23090-7-2022-cdamd1.2 - d:iso23090-8 iso23090-8 @@ -12499,8 +13444,8 @@ iso23090-8-cdamd1 - d:iso23090-9 iso23090-9 - -Under development +March 2023 +Published Information technology — Coded representation of immersive media — Part 9: Geometry-based point cloud compression https://www.iso.org/standard/78990.html @@ -12521,10 +13466,10 @@ https://www.iso.org/standard/57794.html - d:iso23091-2 iso23091-2 -October 2021 -Published + +Under development Information technology — Coding-independent code points — Part 2: Video -https://www.iso.org/standard/81546.html +https://www.iso.org/standard/85291.html @@ -12597,7 +13542,7 @@ https://www.iso.org/standard/83526.html d:iso23092-1-2020-cdamd1 iso23092-1-2020-cdamd1 -Under development +Deleted Information technology — Genomic information representation — Part 1: Transport and storage of genomic information — Amendment 1: Support for Part 6 https://www.iso.org/standard/82733.html @@ -12611,8 +13556,8 @@ iso23092-1-2020-cdamd1 - d:iso23092-2 iso23092-2 - -Under development +March 2024 +Published Information technology — Genomic information representation — Part 2: Coding of genomic information https://www.iso.org/standard/83527.html @@ -12640,7 +13585,7 @@ iso23092-3 Under development Information technology — Genomic information representation — Part 3: Metadata and application programming interfaces (APIs) -https://www.iso.org/standard/82725.html +https://www.iso.org/standard/87575.html @@ -12660,11 +13605,11 @@ https://www.iso.org/standard/75859.html d:iso23092-4-2020-cdamd1 iso23092-4-2020-cdamd1 -Under development +Deleted Information technology — Genomic information representation — Part 4: Reference software — Amendment 1: Version 2 and Part 6 https://www.iso.org/standard/82735.html - +iso23092-4 - @@ -12683,8 +13628,8 @@ https://www.iso.org/standard/73668.html - -d:iso23092-5-2020-wdamd1 -iso23092-5-2020-wdamd1 +d:iso23092-5-2020-cdamd1 +iso23092-5-2020-cdamd1 Under development Information technology — Genomic information representation — Part 5: Conformance — Amendment 1: Version 2 and Part 6 support @@ -12693,11 +13638,15 @@ https://www.iso.org/standard/84771.html +- +a:iso23092-5-2020-wdamd1 +iso23092-5-2020-wdamd1 +iso23092-5-2020-cdamd1 - d:iso23092-6 iso23092-6 - -Under development +November 2023 +Published Information technology — Genomic information representation — Part 6: Coding of genomic annotations https://www.iso.org/standard/78478.html @@ -12707,10 +13656,10 @@ https://www.iso.org/standard/78478.html - d:iso23093-1 iso23093-1 -March 2022 -Published + +Under development Information technology — Internet of media things — Part 1: Architecture -https://www.iso.org/standard/81586.html +https://www.iso.org/standard/86429.html @@ -12718,10 +13667,10 @@ https://www.iso.org/standard/81586.html - d:iso23093-2 iso23093-2 -March 2022 -Published + +Under development Information technology — Internet of media things — Part 2: Discovery and communication API -https://www.iso.org/standard/81587.html +https://www.iso.org/standard/86430.html @@ -12732,7 +13681,7 @@ iso23093-3 Under development Information technology — Internet of media things — Part 3: Media data formats and APIs -https://www.iso.org/standard/81589.html +https://www.iso.org/standard/86431.html @@ -12740,8 +13689,8 @@ https://www.iso.org/standard/81589.html - d:iso23093-4 iso23093-4 - -Under development +November 2023 +Published Information technology — Internet of media things — Part 4: Reference software and conformance https://www.iso.org/standard/84239.html @@ -12759,6 +13708,17 @@ https://www.iso.org/standard/84572.html +- +d:iso23093-6 +iso23093-6 + +Under development +Information technology — Internet of media things — Part 6: IoMT Media data formats and API for distributed AI processing +https://www.iso.org/standard/86433.html + + + + - a:iso23094 iso23094 @@ -12774,6 +13734,17 @@ https://www.iso.org/standard/57797.html +- +d:iso23094-1-2020-amd1-2023 +iso23094-1-2020-amd1-2023 +August 2023 +Published +Information technology — General video coding — Part 1: Essential video coding — Amendment 1: Green metadata supplemental enhancement information +https://www.iso.org/standard/85138.html + + + + - d:iso23094-2 iso23094-2 @@ -12785,17 +13756,63 @@ https://www.iso.org/standard/79143.html +- +a:iso23094-2-2021-amd1 +iso23094-2-2021-amd1 +iso23094-2-2021-amd1-2024 +- +d:iso23094-2-2021-amd1-2024 +iso23094-2-2021-amd1-2024 +January 2024 +Published +Information technology – General video coding — Part 2: Low complexity enhancement video coding — Amendment 1: Additional levels +https://www.iso.org/standard/86436.html + + + + +- +a:iso23094-2-2021-damd1 +iso23094-2-2021-damd1 +iso23094-2-2021-fdamd1 +- +a:iso23094-2-2021-fdamd1 +iso23094-2-2021-fdamd1 +iso23094-2-2021-amd1 - d:iso23094-3 iso23094-3 - -Under development +September 2022 +Published Information technology — General video coding — Part 3: Conformance and reference software for low complexity enhancement video coding https://www.iso.org/standard/80902.html +- +d:iso23094-3-2022-amd1 +iso23094-3-2022-amd1 + +Under development +Information technology — General video coding — Part 3: Conformance and reference software for low complexity enhancement video coding — Amendment 1: Updated conformance data and reference software +https://www.iso.org/standard/87585.html + + + + +- +a:iso23094-3-2022-cdamd1 +iso23094-3-2022-cdamd1 +iso23094-3-2022-damd1 +- +a:iso23094-3-2022-damd1 +iso23094-3-2022-damd1 +iso23094-3-2022-fdamd1 +- +a:iso23094-3-2022-fdamd1 +iso23094-3-2022-fdamd1 +iso23094-3-2022-amd1 - d:iso23094-4 iso23094-4 @@ -12807,6 +13824,54 @@ https://www.iso.org/standard/81633.html +- +a:iso23094-4-2022-cdamd1 +iso23094-4-2022-cdamd1 +iso23094-4-2022-damd1 +- +d:iso23094-4-2022-damd1 +iso23094-4-2022-damd1 + +Under development +Information technology — General video coding — Part 4: Conformance and reference software for essential video coding — Amendment 1: Green metadata supplemental enhancement information +https://www.iso.org/standard/87587.html + + + + +- +d:iso23888-1 +iso23888-1 + +Under development +Information technology — Artificial intelligence for multimedia — Part 1: Vision and scenarios +https://www.iso.org/standard/87589.html + + + + +- +d:iso23888-2 +iso23888-2 + +Under development +Information technology — Artificial intelligence for multimedia — Part 2: Video coding for machines +https://www.iso.org/standard/88879.html + + + + +- +d:iso23888-3 +iso23888-3 + +Under development +Information technology — Artificial intelligence for multimedia — Part 3: Optimization of encoders and receiving systems for machine analysis of coded video content +https://www.iso.org/standard/89045.html + + + + - d:iso24800-1 iso24800-1 @@ -13143,12 +14208,60 @@ http://www.iso.org/iso/home/standards/currency_codes.htm - -d:iso6048 +a:iso6048 iso6048 +iso6048-1 +- +d:iso6048-1 +iso6048-1 + +Under development +Information technology — JPEG AI learning-based image coding system — Part 1: Core coding system +https://www.iso.org/standard/88911.html + + + + +- +d:iso6048-2 +iso6048-2 + +Under development +Information technology — JPEG AI learning-based image coding system — Part 2: Profiling +https://www.iso.org/standard/87577.html + + + + +- +d:iso6048-3 +iso6048-3 Under development -Information technology — JPEG AI learning-based Image coding system -https://www.iso.org/standard/81984.html +Information technology — JPEG AI learning-based image coding system — Part 3: Reference software +https://www.iso.org/standard/87578.html + + + + +- +d:iso6048-4 +iso6048-4 + +Under development +Information technology — JPEG AI learning-based image coding system — Part 4: Conformance +https://www.iso.org/standard/87579.html + + + + +- +d:iso6048-5 +iso6048-5 + +Under development +Information technology — JPEG AI learning-based image coding system — Part 5: File Format +https://www.iso.org/standard/90193.html @@ -13164,6 +14277,17 @@ https://www.iso.org/standard/4777.html +- +d:iso7186-3 +ISO7186-3 +1 November 2006 +Published +Identification cards - Integrated circuit cards; Part 3: Cards with contacts - Electrical interface and transmission protocols +https://www.iso.org/standard/38770.html + + + + - d:iso7812-1 ISO7812-1 @@ -13220,7 +14344,7 @@ ISO9070 d:iso9281-1 iso9281-1 August 1990 -Published +Withdrawn Information technology — Picture coding methods — Part 1: Identification https://www.iso.org/standard/16933.html @@ -13231,7 +14355,7 @@ https://www.iso.org/standard/16933.html d:iso9281-2 iso9281-2 August 1990 -Published +Withdrawn Information technology — Picture coding methods — Part 2: Procedure for registration https://www.iso.org/standard/16934.html @@ -13261,12 +14385,16 @@ https://www.iso.org/standard/16936.html - -d:isobmff +a:isobmff ISOBMFF -December 2015 -International Standard -Information technology — Coding of audio-visual objects — Part 12: ISO Base Media File Format -http://standards.iso.org/ittf/PubliclyAvailableStandards/c068960_ISO_IEC_14496-12_2015.zip +iso14496-12 +- +d:isolated-contexts +ISOLATED-CONTEXTS + +cg-draft +Isolated Contexts +https://wicg.github.io/isolated-web-apps/isolated-contexts diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ja.data b/bikeshed/spec-data/readonly/biblio/biblio-ja.data index 2882e2ac42..446f7cba0d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ja.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ja.data @@ -33,7 +33,7 @@ http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140174.html - d:java-gap java-gap -19 January 2022 +16 August 2024 NOTE Javanese Script Gap Analysis https://www.w3.org/TR/java-gap/ @@ -77,6 +77,102 @@ https://www.w3.org/TR/2022/DNOTE-java-gap-20220119/ +Richard Ishida +- +d:java-gap-20230615 +java-gap-20230615 +15 June 2023 +NOTE +Javanese Script Gap Analysis +https://www.w3.org/TR/2023/DNOTE-java-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-java-gap-20230615/ + + + +Richard Ishida +- +d:java-gap-20230807 +java-gap-20230807 +7 August 2023 +NOTE +Javanese Script Gap Analysis +https://www.w3.org/TR/2023/DNOTE-java-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-java-gap-20230807/ + + + +Richard Ishida +- +d:java-gap-20240705 +java-gap-20240705 +5 July 2024 +NOTE +Javanese Script Gap Analysis +https://www.w3.org/TR/2024/DNOTE-java-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-java-gap-20240705/ + + + +Richard Ishida +- +d:java-gap-20240710 +java-gap-20240710 +10 July 2024 +NOTE +Javanese Script Gap Analysis +https://www.w3.org/TR/2024/DNOTE-java-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-java-gap-20240710/ + + + +Richard Ishida +- +d:java-gap-20240816 +java-gap-20240816 +16 August 2024 +NOTE +Javanese Script Gap Analysis +https://www.w3.org/TR/2024/DNOTE-java-gap-20240816/ +https://www.w3.org/TR/2024/DNOTE-java-gap-20240816/ + + + +Richard Ishida +- +d:java-lreq +java-lreq +9 August 2024 +NOTE +Javanese Script Resources +https://www.w3.org/TR/java-lreq/ +https://w3c.github.io/sealreq/java/ + + + +Richard Ishida +- +d:java-lreq-20240730 +java-lreq-20240730 +30 July 2024 +NOTE +Javanese Script Resources +https://www.w3.org/TR/2024/DNOTE-java-lreq-20240730/ +https://www.w3.org/TR/2024/DNOTE-java-lreq-20240730/ + + + +Richard Ishida +- +d:java-lreq-20240809 +java-lreq-20240809 +9 August 2024 +NOTE +Javanese Script Resources +https://www.w3.org/TR/2024/DNOTE-java-lreq-20240809/ +https://www.w3.org/TR/2024/DNOTE-java-lreq-20240809/ + + + Richard Ishida - d:javascript diff --git a/bikeshed/spec-data/readonly/biblio/biblio-jp.data b/bikeshed/spec-data/readonly/biblio/biblio-jp.data index 7c0d0fe752..8da55c3cae 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-jp.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-jp.data @@ -1,6 +1,6 @@ d:jpan-gap jpan-gap -23 September 2022 +10 July 2024 NOTE Japanese Gap Analysis https://www.w3.org/TR/jpan-gap/ @@ -80,6 +80,126 @@ https://www.w3.org/TR/2022/DNOTE-jpan-gap-20220923/ +Richard Ishida +- +d:jpan-gap-20230615 +jpan-gap-20230615 +15 June 2023 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230615/ + + + +Richard Ishida +- +d:jpan-gap-20230617 +jpan-gap-20230617 +17 June 2023 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230617/ +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230617/ + + + +Richard Ishida +- +d:jpan-gap-20230720 +jpan-gap-20230720 +20 July 2023 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230720/ +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230720/ + + + +Richard Ishida +- +d:jpan-gap-20230721 +jpan-gap-20230721 +21 July 2023 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230721/ +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230721/ + + + +Richard Ishida +- +d:jpan-gap-20231004 +jpan-gap-20231004 +4 October 2023 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-jpan-gap-20231004/ + + + +Richard Ishida +- +d:jpan-gap-20240705 +jpan-gap-20240705 +5 July 2024 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2024/DNOTE-jpan-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-jpan-gap-20240705/ + + + +Richard Ishida +- +d:jpan-gap-20240710 +jpan-gap-20240710 +10 July 2024 +NOTE +Japanese Gap Analysis +https://www.w3.org/TR/2024/DNOTE-jpan-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-jpan-gap-20240710/ + + + +Richard Ishida +- +d:jpan-lreq +jpan-lreq +15 August 2024 +NOTE +Japanese Script Resources +https://www.w3.org/TR/jpan-lreq/ +https://w3c.github.io/jlreq/jpan/ + + + +Richard Ishida +- +d:jpan-lreq-20240808 +jpan-lreq-20240808 +8 August 2024 +NOTE +Japanese Script Resources +https://www.w3.org/TR/2024/DNOTE-jpan-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-jpan-lreq-20240808/ + + + +Richard Ishida +- +d:jpan-lreq-20240815 +jpan-lreq-20240815 +15 August 2024 +NOTE +Japanese Script Resources +https://www.w3.org/TR/2024/DNOTE-jpan-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-jpan-lreq-20240815/ + + + Richard Ishida - d:jpeg diff --git a/bikeshed/spec-data/readonly/biblio/biblio-js.data b/bikeshed/spec-data/readonly/biblio/biblio-js.data index 5dd6098896..e598ba79e6 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-js.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-js.data @@ -267,6 +267,38 @@ Markus Lanthaler Gregg Kellogg Manu Sporny - +a:json-ld-api1 +json-ld-api1 +json-ld-api +- +a:json-ld-api1-20120712 +json-ld-api1-20120712 +json-ld-api-20120712 +- +a:json-ld-api1-20130411 +json-ld-api1-20130411 +json-ld-api-20130411 +- +a:json-ld-api1-20130516 +json-ld-api1-20130516 +json-ld-api-20130516 +- +a:json-ld-api1-20130910 +json-ld-api1-20130910 +json-ld-api-20130910 +- +a:json-ld-api1-20131105 +json-ld-api1-20131105 +json-ld-api-20131105 +- +a:json-ld-api1-20140116 +json-ld-api1-20140116 +json-ld-api-20140116 +- +a:json-ld-api1-20201103 +json-ld-api1-20201103 +json-ld-api-20201103 +- a:json-ld-syntax json-ld-syntax json-ld @@ -307,6 +339,34 @@ https://www.w3.org/2013/json-ld-tests/ RDF Working Group - +a:json-ld1 +json-ld1 +json-ld +- +a:json-ld1-20120712 +json-ld1-20120712 +json-ld-20120712 +- +a:json-ld1-20130411 +json-ld1-20130411 +json-ld-20130411 +- +a:json-ld1-20130910 +json-ld1-20130910 +json-ld-20130910 +- +a:json-ld1-20131105 +json-ld1-20131105 +json-ld-20131105 +- +a:json-ld1-20140116 +json-ld1-20140116 +json-ld-20140116 +- +a:json-ld1-20201103 +json-ld1-20201103 +json-ld-20201103 +- d:json-ld11 json-ld11 16 July 2020 @@ -1009,6 +1069,19 @@ a:json-patch-20130401 json-patch-20130401 rfc6902 - +d:json-reference +json-reference +16 September 2012 +Internet-Draft +JSON Reference +https://datatracker.ietf.org/doc/html/draft-pbryan-zyp-json-ref-03 + + + + +Paul Bryan +Kris Zyp +- d:json-rpc JSON-RPC 4 January 2013 @@ -1023,7 +1096,7 @@ JSON-RPC Working Group - d:json-schema json-schema -8 December 2020 +10 June 2022 Internet-Draft JSON Schema: A Media Type for Describing JSON Documents https://datatracker.ietf.org/doc/html/draft-bhutton-json-schema @@ -1050,6 +1123,18 @@ Kris Zyp Francis Galiegue Gary Court - +d:json-schema-05 +json-schema-05 +13 October 2016 +Internet-Draft +JSON Schema: A Media Type for Describing JSON Documents. Draft 5 +https://datatracker.ietf.org/doc/html/draft-wright-json-schema-00 +https://datatracker.ietf.org/doc/html/draft-wright-json-schema-00 + + + +Austin Wright +- d:json-schema-2020-12 json-schema-2020-12 8 December 2020 @@ -1065,6 +1150,61 @@ Henry Andrews Ben Hutton Greg Dennis - +d:json-schema-validation +json-schema-validation +10 June 2022 +Internet-Draft +JSON Schema Validation: A Vocabulary for Structural Validation of JSON +https://datatracker.ietf.org/doc/html/draft-bhutton-json-schema-validation + + + + +Austin Wright +Henry Andrews +Ben Hutton +- +d:json-schema-validation-04 +json-schema-validation-04 +1 February 2013 +Internet-Draft +JSON Schema: interactive and non interactive validation. Draft 4 +https://datatracker.ietf.org/doc/html/draft-fge-json-schema-validation-00 +https://datatracker.ietf.org/doc/html/draft-fge-json-schema-validation-00 + + + +Kris Zyp +Francis Galiegue +Gary Court +- +d:json-schema-validation-05 +json-schema-validation-05 +13 October 2016 +Internet-Draft +JSON Schema Validation: A Vocabulary for Structural Validation of JSON. Draft 5 +https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00 +https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00 + + + +Austin Wright +G. Luff +- +d:json-schema-validation-2020-12 +json-schema-validation-2020-12 +8 December 2020 +Internet-Draft +JSON Schema Validation: A Vocabulary for Structural Validation of JSON. Draft 2020-12 +https://datatracker.ietf.org/doc/html/draft-bhutton-json-schema-validation-00 +https://datatracker.ietf.org/doc/html/draft-bhutton-json-schema-validation-00 + + + +Austin Wright +Henry Andrews +Ben Hutton +- a:jsonl JSONL JSON-LINES diff --git a/bikeshed/spec-data/readonly/biblio/biblio-kh.data b/bikeshed/spec-data/readonly/biblio/biblio-kh.data index f182c60964..bf8426c325 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-kh.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-kh.data @@ -1,6 +1,6 @@ d:khmr-gap khmr-gap -19 January 2022 +10 July 2024 NOTE Khmer Gap Analysis https://www.w3.org/TR/khmr-gap/ @@ -45,4 +45,171 @@ https://www.w3.org/TR/2022/DNOTE-khmr-gap-20220119/ Richard Ishida +- +d:khmr-gap-20230615 +khmr-gap-20230615 +15 June 2023 +NOTE +Khmer Gap Analysis +https://www.w3.org/TR/2023/DNOTE-khmr-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-khmr-gap-20230615/ + + + +Richard Ishida +- +d:khmr-gap-20240314 +khmr-gap-20240314 +14 March 2024 +NOTE +Khmer Gap Analysis +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240314/ +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240314/ + + + +Richard Ishida +- +d:khmr-gap-20240630 +khmr-gap-20240630 +30 June 2024 +NOTE +Khmer Gap Analysis +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240630/ +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240630/ + + + +Richard Ishida +- +d:khmr-gap-20240705 +khmr-gap-20240705 +5 July 2024 +NOTE +Khmer Gap Analysis +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240705/ + + + +Richard Ishida +- +d:khmr-gap-20240710 +khmr-gap-20240710 +10 July 2024 +NOTE +Khmer Gap Analysis +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-khmr-gap-20240710/ + + + +Richard Ishida +- +d:khmr-lreq +khmr-lreq +9 August 2024 +NOTE +Khmer Script Resources +https://www.w3.org/TR/khmr-lreq/ +https://w3c.github.io/sealreq/khmer/ + + + +Richard Ishida +- +d:khmr-lreq-20240411 +khmr-lreq-20240411 +11 April 2024 +NOTE +Khmer Layout Requirements (Draft) +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240411/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240411/ + + + +Richard Ishida +- +d:khmr-lreq-20240419 +khmr-lreq-20240419 +19 April 2024 +NOTE +Khmer Layout Requirements (Draft) +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240419/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240419/ + + + +Richard Ishida +- +d:khmr-lreq-20240515 +khmr-lreq-20240515 +15 May 2024 +NOTE +Khmer Layout Requirements (Draft) +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240515/ + + + +Richard Ishida +- +d:khmr-lreq-20240630 +khmr-lreq-20240630 +30 June 2024 +NOTE +Khmer Layout Requirements (Draft) +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240630/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240630/ + + + +Richard Ishida +- +d:khmr-lreq-20240705 +khmr-lreq-20240705 +5 July 2024 +NOTE +Khmer Layout Requirements (Draft) +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240705/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240705/ + + + +Richard Ishida +- +d:khmr-lreq-20240710 +khmr-lreq-20240710 +10 July 2024 +NOTE +Khmer Script Resources +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240710/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240710/ + + + +Richard Ishida +- +d:khmr-lreq-20240809 +khmr-lreq-20240809 +9 August 2024 +NOTE +Khmer Script Resources +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240809/ +https://www.w3.org/TR/2024/DNOTE-khmr-lreq-20240809/ + + + +Richard Ishida +- +d:khr_parallel_shader_compile +KHR_PARALLEL_SHADER_COMPILE + +Editor's Draft +WebGL KHR_parallel_shader_compile Extension Specification +https://registry.khronos.org/webgl/extensions/KHR_parallel_shader_compile/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ko.data b/bikeshed/spec-data/readonly/biblio/biblio-ko.data new file mode 100644 index 0000000000..7b5108e680 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-ko.data @@ -0,0 +1,89 @@ +d:kore-gap +kore-gap +10 July 2024 +NOTE +Korean Layout Gap Analysis +https://www.w3.org/TR/kore-gap/ +https://w3c.github.io/klreq/gap-analysis/ + + + +Fuqiao Xue +Richard Ishida +- +d:kore-gap-20230711 +kore-gap-20230711 +11 July 2023 +NOTE +Korean Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-kore-gap-20230711/ +https://www.w3.org/TR/2023/DNOTE-kore-gap-20230711/ + + + +Richard Ishida +Fuqiao Xue +- +d:kore-gap-20230720 +kore-gap-20230720 +20 July 2023 +NOTE +Korean Layout Gap Analysis +https://www.w3.org/TR/2023/DNOTE-kore-gap-20230720/ +https://www.w3.org/TR/2023/DNOTE-kore-gap-20230720/ + + + +Fuqiao Xue +Richard Ishida +- +d:kore-gap-20240705 +kore-gap-20240705 +5 July 2024 +NOTE +Korean Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-kore-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-kore-gap-20240705/ + + + +Fuqiao Xue +Richard Ishida +- +d:kore-gap-20240710 +kore-gap-20240710 +10 July 2024 +NOTE +Korean Layout Gap Analysis +https://www.w3.org/TR/2024/DNOTE-kore-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-kore-gap-20240710/ + + + +Fuqiao Xue +Richard Ishida +- +d:kore-lreq +kore-lreq +8 August 2024 +NOTE +Korean Script Resources +https://www.w3.org/TR/kore-lreq/ +https://w3c.github.io/klreq/kore/ + + + +Richard Ishida +- +d:kore-lreq-20240808 +kore-lreq-20240808 +8 August 2024 +NOTE +Korean Script Resources +https://www.w3.org/TR/2024/DNOTE-kore-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-kore-lreq-20240808/ + + + +Richard Ishida +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-la.data b/bikeshed/spec-data/readonly/biblio/biblio-la.data index 8de793c50a..8a83209542 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-la.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-la.data @@ -15,7 +15,7 @@ John D. Berry, Ed. <cite>Language Culture Type.</cite> Graphis. 2001. ISBN 1-932 - d:laoo-gap laoo-gap -19 January 2022 +10 July 2024 NOTE Lao Gap Analysis https://www.w3.org/TR/laoo-gap/ @@ -71,11 +71,143 @@ https://www.w3.org/TR/2022/DNOTE-laoo-gap-20220119/ +Richard Ishida +- +d:laoo-gap-20230615 +laoo-gap-20230615 +15 June 2023 +NOTE +Lao Gap Analysis +https://www.w3.org/TR/2023/DNOTE-laoo-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-laoo-gap-20230615/ + + + +Richard Ishida +- +d:laoo-gap-20240630 +laoo-gap-20240630 +30 June 2024 +NOTE +Lao Gap Analysis +https://www.w3.org/TR/2024/DNOTE-laoo-gap-20240630/ +https://www.w3.org/TR/2024/DNOTE-laoo-gap-20240630/ + + + +Richard Ishida +- +d:laoo-gap-20240705 +laoo-gap-20240705 +5 July 2024 +NOTE +Lao Gap Analysis +https://www.w3.org/TR/2024/DNOTE-laoo-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-laoo-gap-20240705/ + + + +Richard Ishida +- +d:laoo-gap-20240710 +laoo-gap-20240710 +10 July 2024 +NOTE +Lao Gap Analysis +https://www.w3.org/TR/2024/DNOTE-laoo-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-laoo-gap-20240710/ + + + +Richard Ishida +- +d:laoo-lreq +laoo-lreq +9 August 2024 +NOTE +Lao Script Resources +https://www.w3.org/TR/laoo-lreq/ +https://w3c.github.io/sealreq/lao/ + + + +Richard Ishida +- +d:laoo-lreq-20240430 +laoo-lreq-20240430 +30 April 2024 +NOTE +Lao Layout Requirements +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240430/ +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240430/ + + + +Richard Ishida +- +d:laoo-lreq-20240515 +laoo-lreq-20240515 +15 May 2024 +NOTE +Lao Layout Requirements +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240515/ + + + +Richard Ishida +- +d:laoo-lreq-20240630 +laoo-lreq-20240630 +30 June 2024 +NOTE +Lao Layout Requirements +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240630/ +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240630/ + + + +Richard Ishida +- +d:laoo-lreq-20240705 +laoo-lreq-20240705 +5 July 2024 +NOTE +Lao Layout Requirements +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240705/ +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240705/ + + + +Richard Ishida +- +d:laoo-lreq-20240710 +laoo-lreq-20240710 +10 July 2024 +NOTE +Lao Script Resources +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240710/ +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240710/ + + + +Richard Ishida +- +d:laoo-lreq-20240809 +laoo-lreq-20240809 +9 August 2024 +NOTE +Lao Script Resources +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240809/ +https://www.w3.org/TR/2024/DNOTE-laoo-lreq-20240809/ + + + Richard Ishida - d:largest-contentful-paint largest-contentful-paint -24 May 2022 +15 January 2024 WD Largest Contentful Paint https://www.w3.org/TR/largest-contentful-paint/ @@ -99,9 +231,84 @@ https://www.w3.org/TR/2022/WD-largest-contentful-paint-20220524/ Yoav Weiss Nicolas Pena Moreno - +d:largest-contentful-paint-20230901 +largest-contentful-paint-20230901 +1 September 2023 +WD +Largest Contentful Paint +https://www.w3.org/TR/2023/WD-largest-contentful-paint-20230901/ +https://www.w3.org/TR/2023/WD-largest-contentful-paint-20230901/ + + + +Yoav Weiss +Nicolas Pena Moreno +- +d:largest-contentful-paint-20230906 +largest-contentful-paint-20230906 +6 September 2023 +WD +Largest Contentful Paint +https://www.w3.org/TR/2023/WD-largest-contentful-paint-20230906/ +https://www.w3.org/TR/2023/WD-largest-contentful-paint-20230906/ + + + +Yoav Weiss +Nicolas Pena Moreno +- +d:largest-contentful-paint-20240115 +largest-contentful-paint-20240115 +15 January 2024 +WD +Largest Contentful Paint +https://www.w3.org/TR/2024/WD-largest-contentful-paint-20240115/ +https://www.w3.org/TR/2024/WD-largest-contentful-paint-20240115/ + + + +Yoav Weiss +Nicolas Pena Moreno +- +d:latn-ca-gap +latn-ca-gap +24 July 2024 +NOTE +Catalan Gap Analysis +https://www.w3.org/TR/latn-ca-gap/ +https://w3c.github.io/eurlreq/gap-analysis/latn-ca-gap + + + +Richard Ishida +- +d:latn-ca-gap-20230822 +latn-ca-gap-20230822 +22 August 2023 +NOTE +Catalan Gap Analysis +https://www.w3.org/TR/2023/DNOTE-latn-ca-gap-20230822/ +https://www.w3.org/TR/2023/DNOTE-latn-ca-gap-20230822/ + + + +Richard Ishida +- +d:latn-ca-gap-20240724 +latn-ca-gap-20240724 +24 July 2024 +NOTE +Catalan Gap Analysis +https://www.w3.org/TR/2024/DNOTE-latn-ca-gap-20240724/ +https://www.w3.org/TR/2024/DNOTE-latn-ca-gap-20240724/ + + + +Richard Ishida +- d:latn-de-gap latn-de-gap -19 January 2022 +24 July 2024 NOTE German Gap Analysis https://www.w3.org/TR/latn-de-gap/ @@ -145,11 +352,35 @@ https://www.w3.org/TR/2022/DNOTE-latn-de-gap-20220119/ +Richard Ishida +- +d:latn-de-gap-20230614 +latn-de-gap-20230614 +14 June 2023 +NOTE +German Gap Analysis +https://www.w3.org/TR/2023/DNOTE-latn-de-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-latn-de-gap-20230614/ + + + +Richard Ishida +- +d:latn-de-gap-20240724 +latn-de-gap-20240724 +24 July 2024 +NOTE +German Gap Analysis +https://www.w3.org/TR/2024/DNOTE-latn-de-gap-20240724/ +https://www.w3.org/TR/2024/DNOTE-latn-de-gap-20240724/ + + + Richard Ishida - d:latn-fr-gap latn-fr-gap -19 January 2022 +24 July 2024 NOTE French Gap Analysis https://www.w3.org/TR/latn-fr-gap/ @@ -193,11 +424,59 @@ https://www.w3.org/TR/2022/DNOTE-latn-fr-gap-20220119/ +Richard Ishida +- +d:latn-fr-gap-20230614 +latn-fr-gap-20230614 +14 June 2023 +NOTE +French Gap Analysis +https://www.w3.org/TR/2023/DNOTE-latn-fr-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-latn-fr-gap-20230614/ + + + +Richard Ishida +- +d:latn-fr-gap-20240724 +latn-fr-gap-20240724 +24 July 2024 +NOTE +French Gap Analysis +https://www.w3.org/TR/2024/DNOTE-latn-fr-gap-20240724/ +https://www.w3.org/TR/2024/DNOTE-latn-fr-gap-20240724/ + + + +Richard Ishida +- +d:latn-gap +latn-gap +16 July 2024 +NOTE +Latin Script Gap Analysis +https://www.w3.org/TR/latn-gap/ +https://w3c.github.io/eurlreq/gap-analysis/latn-gap + + + +Richard Ishida +- +d:latn-gap-20240716 +latn-gap-20240716 +16 July 2024 +NOTE +Latin Script Gap Analysis +https://www.w3.org/TR/2024/DNOTE-latn-gap-20240716/ +https://www.w3.org/TR/2024/DNOTE-latn-gap-20240716/ + + + Richard Ishida - d:latn-hu-gap latn-hu-gap -19 January 2022 +24 July 2024 NOTE Hungarian Gap Analysis https://www.w3.org/TR/latn-hu-gap/ @@ -205,7 +484,6 @@ https://w3c.github.io/eurlreq/gap-analysis/latn-hu-gap -Ivan Herman Richard Ishida - d:latn-hu-gap-20200611 @@ -269,11 +547,84 @@ https://www.w3.org/TR/2022/DNOTE-latn-hu-gap-20220119/ Ivan Herman +Richard Ishida +- +d:latn-hu-gap-20230614 +latn-hu-gap-20230614 +14 June 2023 +NOTE +Hungarian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-latn-hu-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-latn-hu-gap-20230614/ + + + +Ivan Herman +Richard Ishida +- +d:latn-hu-gap-20240724 +latn-hu-gap-20240724 +24 July 2024 +NOTE +Hungarian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-latn-hu-gap-20240724/ +https://www.w3.org/TR/2024/DNOTE-latn-hu-gap-20240724/ + + + +Richard Ishida +- +d:latn-lreq +latn-lreq +15 August 2024 +NOTE +Latin Script Resources +https://www.w3.org/TR/latn-lreq/ +https://w3c.github.io/eurlreq/latn/ + + + +Richard Ishida +- +d:latn-lreq-20240716 +latn-lreq-20240716 +16 July 2024 +NOTE +Latin Script Resources +https://www.w3.org/TR/2024/DNOTE-latn-lreq-20240716/ +https://www.w3.org/TR/2024/DNOTE-latn-lreq-20240716/ + + + +Richard Ishida +- +d:latn-lreq-20240808 +latn-lreq-20240808 +8 August 2024 +NOTE +Latin Script Resources +https://www.w3.org/TR/2024/DNOTE-latn-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-latn-lreq-20240808/ + + + +Richard Ishida +- +d:latn-lreq-20240815 +latn-lreq-20240815 +15 August 2024 +NOTE +Latin Script Resources +https://www.w3.org/TR/2024/DNOTE-latn-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-latn-lreq-20240815/ + + + Richard Ishida - d:latn-nl-gap latn-nl-gap -26 January 2022 +24 July 2024 NOTE Dutch Gap Analysis https://www.w3.org/TR/latn-nl-gap/ @@ -370,6 +721,45 @@ https://www.w3.org/TR/2022/DNOTE-latn-nl-gap-20220126/ +Bert Bos +Richard Ishida +- +d:latn-nl-gap-20230530 +latn-nl-gap-20230530 +30 May 2023 +NOTE +Dutch Gap Analysis +https://www.w3.org/TR/2023/DNOTE-latn-nl-gap-20230530/ +https://www.w3.org/TR/2023/DNOTE-latn-nl-gap-20230530/ + + + +Bert Bos +Richard Ishida +- +d:latn-nl-gap-20230614 +latn-nl-gap-20230614 +14 June 2023 +NOTE +Dutch Gap Analysis +https://www.w3.org/TR/2023/DNOTE-latn-nl-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-latn-nl-gap-20230614/ + + + +Bert Bos +Richard Ishida +- +d:latn-nl-gap-20240724 +latn-nl-gap-20240724 +24 July 2024 +NOTE +Dutch Gap Analysis +https://www.w3.org/TR/2024/DNOTE-latn-nl-gap-20240724/ +https://www.w3.org/TR/2024/DNOTE-latn-nl-gap-20240724/ + + + Bert Bos Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-lo.data b/bikeshed/spec-data/readonly/biblio/biblio-lo.data index 1d5a50c309..903b31175c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-lo.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-lo.data @@ -22,8 +22,8 @@ https://wicg.github.io/local-font-access/ - d:localizable-manifests localizable-manifests -24 August 2021 -WD +6 December 2023 +NOTE Developing Localizable Manifests https://www.w3.org/TR/localizable-manifests/ https://w3c.github.io/localizable-manifests @@ -42,6 +42,18 @@ https://www.w3.org/TR/2021/WD-localizable-manifests-20210824/ +Addison Phillips +- +d:localizable-manifests-20231206 +localizable-manifests-20231206 +6 December 2023 +NOTE +Developing Localizable Manifests +https://www.w3.org/TR/2023/DNOTE-localizable-manifests-20231206/ +https://www.w3.org/TR/2023/DNOTE-localizable-manifests-20231206/ + + + Addison Phillips - d:locn @@ -92,20 +104,29 @@ https://www.w3.org/TR/WD-logfile-960221 +- +d:long-animation-frames +LONG-ANIMATION-FRAMES + +Editor's Draft +Long Animation Frames API +https://w3c.github.io/long-animation-frames/ + + + + - d:longtasks-1 longtasks-1 -7 September 2017 +24 May 2024 WD -Long Tasks API 1 +Long Tasks API https://www.w3.org/TR/longtasks-1/ https://w3c.github.io/longtasks/ -Shubhie Panicker -Ilya Grigorik -Domenic Denicola +Noam Rosenthal - d:longtasks-1-20170907 longtasks-1-20170907 @@ -121,6 +142,138 @@ Shubhie Panicker Ilya Grigorik Domenic Denicola - +d:longtasks-1-20230703 +longtasks-1-20230703 +3 July 2023 +WD +Long Tasks API +https://www.w3.org/TR/2023/WD-longtasks-1-20230703/ +https://www.w3.org/TR/2023/WD-longtasks-1-20230703/ + + + +Noam Rosenthal +- +d:longtasks-1-20230712 +longtasks-1-20230712 +12 July 2023 +WD +Long Tasks API +https://www.w3.org/TR/2023/WD-longtasks-1-20230712/ +https://www.w3.org/TR/2023/WD-longtasks-1-20230712/ + + + +Noam Rosenthal +- +d:longtasks-1-20230719 +longtasks-1-20230719 +19 July 2023 +WD +Long Tasks API +https://www.w3.org/TR/2023/WD-longtasks-1-20230719/ +https://www.w3.org/TR/2023/WD-longtasks-1-20230719/ + + + +Noam Rosenthal +- +d:longtasks-1-20231024 +longtasks-1-20231024 +24 October 2023 +WD +Long Tasks API +https://www.w3.org/TR/2023/WD-longtasks-1-20231024/ +https://www.w3.org/TR/2023/WD-longtasks-1-20231024/ + + + +Noam Rosenthal +- +d:longtasks-1-20231126 +longtasks-1-20231126 +26 November 2023 +WD +Long Tasks API +https://www.w3.org/TR/2023/WD-longtasks-1-20231126/ +https://www.w3.org/TR/2023/WD-longtasks-1-20231126/ + + + +Noam Rosenthal +- +d:longtasks-1-20240108 +longtasks-1-20240108 +8 January 2024 +WD +Long Tasks API +https://www.w3.org/TR/2024/WD-longtasks-1-20240108/ +https://www.w3.org/TR/2024/WD-longtasks-1-20240108/ + + + +Noam Rosenthal +- +d:longtasks-1-20240112 +longtasks-1-20240112 +12 January 2024 +WD +Long Tasks API +https://www.w3.org/TR/2024/WD-longtasks-1-20240112/ +https://www.w3.org/TR/2024/WD-longtasks-1-20240112/ + + + +Noam Rosenthal +- +d:longtasks-1-20240115 +longtasks-1-20240115 +15 January 2024 +WD +Long Tasks API +https://www.w3.org/TR/2024/WD-longtasks-1-20240115/ +https://www.w3.org/TR/2024/WD-longtasks-1-20240115/ + + + +Noam Rosenthal +- +d:longtasks-1-20240131 +longtasks-1-20240131 +31 January 2024 +WD +Long Tasks API +https://www.w3.org/TR/2024/WD-longtasks-1-20240131/ +https://www.w3.org/TR/2024/WD-longtasks-1-20240131/ + + + +Noam Rosenthal +- +d:longtasks-1-20240311 +longtasks-1-20240311 +11 March 2024 +WD +Long Tasks API +https://www.w3.org/TR/2024/WD-longtasks-1-20240311/ +https://www.w3.org/TR/2024/WD-longtasks-1-20240311/ + + + +Noam Rosenthal +- +d:longtasks-1-20240524 +longtasks-1-20240524 +24 May 2024 +WD +Long Tasks API +https://www.w3.org/TR/2024/WD-longtasks-1-20240524/ +https://www.w3.org/TR/2024/WD-longtasks-1-20240524/ + + + +Noam Rosenthal +- d:low-vision-needs low-vision-needs 17 March 2016 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-lw.data b/bikeshed/spec-data/readonly/biblio/biblio-lw.data index 8ab6509ed6..53e455c37d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-lw.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-lw.data @@ -10177,7 +10177,7 @@ Hans Boehm d:lwg2191 LWG2191 -WP +C++23 Incorrect specification of match_results(match_results&&) https://wg21.link/lwg2191 @@ -10225,7 +10225,7 @@ Sebastian Mach d:lwg2195 LWG2195 -Ready +C++23 Missing constructors for match_results https://wg21.link/lwg2195 @@ -11557,7 +11557,7 @@ Pete Becker d:lwg2295 LWG2295 -Ready +C++23 Locale name when the provided Facet is a nullptr https://wg21.link/lwg2295 @@ -12709,7 +12709,7 @@ Richard Smith d:lwg2381 LWG2381 -WP +C++23 Inconsistency in parsing floating point numbers https://wg21.link/lwg2381 @@ -12853,7 +12853,7 @@ Michael Bradshaw d:lwg2392 LWG2392 -New +WP "character type" is used but not defined https://wg21.link/lwg2392 @@ -13141,7 +13141,7 @@ Jonathan Wakely d:lwg2413 LWG2413 -New +NAD assert macro is overconstrained https://wg21.link/lwg2413 @@ -13717,7 +13717,7 @@ Richard Smith d:lwg2457 LWG2457 -New +Tentatively NAD std::begin() and std::end() do not support multi-dimensional arrays correctly https://wg21.link/lwg2457 @@ -16897,7 +16897,7 @@ Joe Gottman d:lwg2697 LWG2697 -WP +C++23 [concurr.ts] Behavior of future/shared_future unwrapping constructor when given an invalid future https://wg21.link/lwg2697 @@ -17365,7 +17365,7 @@ Richard Smith d:lwg2731 LWG2731 -WP +C++23 Existence of lock_guard<MutexTypes...>::mutex_type typedef unclear https://wg21.link/lwg2731 @@ -17521,7 +17521,7 @@ Richard Smith d:lwg2743 LWG2743 -WP +C++23 p0083r3 node_handle private members missing "exposition only" comment https://wg21.link/lwg2743 @@ -17773,7 +17773,7 @@ Ville Voutilainen d:lwg2762 LWG2762 -WP +C++23 unique_ptr operator*() should be noexcept https://wg21.link/lwg2762 @@ -17929,7 +17929,7 @@ Vincent Reverdy d:lwg2774 LWG2774 -WP +C++23 std::function construction vs assignment https://wg21.link/lwg2774 @@ -17989,7 +17989,7 @@ Billy Robert O'Neal III d:lwg2779 LWG2779 -WP +C++23 [networking.ts] Relax requirements on buffer sequence iterators https://wg21.link/lwg2779 @@ -18517,7 +18517,7 @@ Marshall Clow d:lwg2818 LWG2818 -WP +C++23 "::std::" everywhere rule needs tweaking https://wg21.link/lwg2818 @@ -18553,7 +18553,7 @@ Howard Hinnant d:lwg2820 LWG2820 -WP +C++23 Clarify <cstdint> macros https://wg21.link/lwg2820 @@ -18793,7 +18793,7 @@ Tim Song d:lwg2839 LWG2839 -WP +C++23 Self-move-assignment of library types, again https://wg21.link/lwg2839 @@ -20413,7 +20413,7 @@ Martin Sebor d:lwg2960 LWG2960 -WP +C++23 [fund.ts.v3] nonesuch is insufficiently useless https://wg21.link/lwg2960 @@ -20857,7 +20857,7 @@ Tim Song d:lwg2994 LWG2994 -Open +WP Needless UB for basic_string and basic_string_view https://wg21.link/lwg2994 @@ -20893,7 +20893,7 @@ Geoffrey Romer d:lwg2997 LWG2997 -WP +C++23 LWG 491 and the specification of {forward_,}list::unique https://wg21.link/lwg2997 @@ -20989,7 +20989,7 @@ Stephan T. Lavavej d:lwg3002 LWG3002 -WP +C++23 [networking.ts] basic_socket_acceptor::is_open() isn't noexcept https://wg21.link/lwg3002 @@ -21097,7 +21097,7 @@ Martin Sebor d:lwg3010 LWG3010 -WP +C++23 [networking.ts] uses_executor says "if a type T::executor_type exists" https://wg21.link/lwg3010 @@ -21229,7 +21229,7 @@ Gregory Bumgardner d:lwg3020 LWG3020 -WP +C++23 [networking.ts] Remove spurious nested value_type buffer sequence requirement https://wg21.link/lwg3020 @@ -21325,7 +21325,7 @@ Vinnie Falco d:lwg3028 LWG3028 -WP +C++23 Container requirements tables should distinguish const and non-const variables https://wg21.link/lwg3028 @@ -21385,7 +21385,7 @@ Jonathan Wakely d:lwg3032 LWG3032 -Ready +C++23 ValueSwappable requirement missing for push_heap and make_heap https://wg21.link/lwg3032 @@ -21433,7 +21433,7 @@ Geoffrey Romer d:lwg3036 LWG3036 -WP +C++23 polymorphic_allocator::destroy is extraneous https://wg21.link/lwg3036 @@ -21901,7 +21901,7 @@ Billy O'Neal III d:lwg3071 LWG3071 -WP +C++23 [networking.ts] read_until still refers to "input sequence" https://wg21.link/lwg3071 @@ -22081,7 +22081,7 @@ JF Bastien d:lwg3085 LWG3085 -Ready +C++23 char_traits::copy precondition too weak https://wg21.link/lwg3085 @@ -22117,7 +22117,7 @@ Tim Song d:lwg3088 LWG3088 -WP +C++23 forward_list::merge behavior unclear when passed *this https://wg21.link/lwg3088 @@ -22513,7 +22513,7 @@ Tim Song d:lwg3117 LWG3117 -WP +C++23 Missing packaged_task deduction guides https://wg21.link/lwg3117 @@ -22525,7 +22525,7 @@ Marc Mutz d:lwg3118 LWG3118 -WP +C++23 fpos equality comparison unspecified https://wg21.link/lwg3118 @@ -22561,7 +22561,7 @@ Martin Sebor d:lwg3120 LWG3120 -WP +C++23 Unclear behavior of monotonic_buffer_resource::release() https://wg21.link/lwg3120 @@ -22573,7 +22573,7 @@ Arthur O'Dwyer d:lwg3121 LWG3121 -WP +C++23 tuple constructor constraints for UTypes&&... overloads https://wg21.link/lwg3121 @@ -22597,7 +22597,7 @@ Stephan T. Lavavej d:lwg3123 LWG3123 -WP +C++23 duration constructor from representation shouldn't be effectively non-throwing https://wg21.link/lwg3123 @@ -22765,7 +22765,7 @@ Thomas Köppe d:lwg3136 LWG3136 -WP +C++23 [fund.ts.v3] LFTSv3 awkward wording in propagate_const requirements https://wg21.link/lwg3136 @@ -22861,7 +22861,7 @@ Casey Carter d:lwg3143 LWG3143 -WP +C++23 monotonic_buffer_resource growth policy is unclear https://wg21.link/lwg3143 @@ -22897,7 +22897,7 @@ Billy Robert O'Neal III d:lwg3146 LWG3146 -WP +C++23 Excessive unwrapping in std::ref/cref https://wg21.link/lwg3146 @@ -22981,7 +22981,7 @@ Casey Carter d:lwg3152 LWG3152 -WP +C++23 common_type and common_reference have flaws in common https://wg21.link/lwg3152 @@ -23221,7 +23221,7 @@ Martin Sebor d:lwg3170 LWG3170 -WP +C++23 is_always_equal added to std::allocator makes the standard library treat derived types as always equal https://wg21.link/lwg3170 @@ -23233,7 +23233,7 @@ Billy O'Neal III d:lwg3171 LWG3171 -WP +C++23 LWG 2989 breaks directory_entry stream insertion https://wg21.link/lwg3171 @@ -23305,7 +23305,7 @@ S. B. Tam d:lwg3177 LWG3177 -WP +C++23 Limit permission to specialize variable templates to program-defined types https://wg21.link/lwg3177 @@ -23545,7 +23545,7 @@ Hubert Tong d:lwg3195 LWG3195 -WP +C++23 What is the stored pointer value of an empty weak_ptr? https://wg21.link/lwg3195 @@ -23665,7 +23665,7 @@ Jonathan Wakely d:lwg3203 LWG3203 -New +WP span element access invalidation https://wg21.link/lwg3203 @@ -23677,7 +23677,7 @@ Johel Ernesto Guerrero Peña d:lwg3204 LWG3204 -Tentatively Ready +C++23 sub_match::swap only swaps the base class https://wg21.link/lwg3204 @@ -23773,7 +23773,7 @@ Billy O'Neal III d:lwg3211 LWG3211 -WP +C++23 std::tuple<> should be trivially constructible https://wg21.link/lwg3211 @@ -23929,7 +23929,7 @@ Jonathan Wakely d:lwg3223 LWG3223 -New +Resolved lerp should not add the "sufficient additional overloads" https://wg21.link/lwg3223 @@ -24073,7 +24073,7 @@ Casey Carter d:lwg3234 LWG3234 -New +Resolved Sufficient Additional Special Math Overloads https://wg21.link/lwg3234 @@ -24097,7 +24097,7 @@ Tomasz Kamiński d:lwg3236 LWG3236 -WP +C++23 Random access iterator requirements lack limiting relational operators domain to comparing those from the same range https://wg21.link/lwg3236 @@ -24265,7 +24265,7 @@ Richard Smith d:lwg3249 LWG3249 -WP +C++23 There are no 'pointers' in §[atomics.lockfree] https://wg21.link/lwg3249 @@ -24481,7 +24481,7 @@ Casey Carter d:lwg3265 LWG3265 -WP +C++23 move_iterator's conversions are more broken after P1207 https://wg21.link/lwg3265 @@ -24853,7 +24853,7 @@ Barry Revzin d:lwg3293 LWG3293 -WP +C++23 move_iterator operator+() has incorrect constraints https://wg21.link/lwg3293 @@ -25021,7 +25021,7 @@ Hiroaki Ando d:lwg3305 LWG3305 -Open +WP any_cast<void> https://wg21.link/lwg3305 @@ -25033,7 +25033,7 @@ John Shaw d:lwg3306 LWG3306 -WP +C++23 ranges::advance violates its preconditions https://wg21.link/lwg3306 @@ -25525,7 +25525,7 @@ Richard Smith d:lwg3343 LWG3343 -New +Open Ordering of calls to unlock() and notify_all() in Effects element of notify_all_at_thread_exit() should be reversed https://wg21.link/lwg3343 @@ -25765,7 +25765,7 @@ Casey Carter d:lwg3361 LWG3361 -WP +C++23 safe_range<SomeRange&> case https://wg21.link/lwg3361 @@ -26161,7 +26161,7 @@ Patrick Palka d:lwg3391 LWG3391 -WP +C++23 Problems with counted_iterator/move_iterator::base() const & https://wg21.link/lwg3391 @@ -26173,7 +26173,7 @@ Patrick Palka d:lwg3392 LWG3392 -WP +C++23 ranges::distance() cannot be used on a move-only iterator with a sized sentinel https://wg21.link/lwg3392 @@ -26329,7 +26329,7 @@ Ahti Leppänen d:lwg3403 LWG3403 -WP +C++23 Domain of ranges::ssize(E) doesn't match ranges::size(E) https://wg21.link/lwg3403 @@ -26341,7 +26341,7 @@ Jonathan Wakely d:lwg3404 LWG3404 -WP +C++23 Finish removing subrange's conversions from pair-like https://wg21.link/lwg3404 @@ -26353,7 +26353,7 @@ Casey Carter d:lwg3405 LWG3405 -WP +C++23 common_view's converting constructor is bad, too https://wg21.link/lwg3405 @@ -26365,7 +26365,7 @@ Casey Carter d:lwg3406 LWG3406 -WP +C++23 elements_view::begin() and elements_view::end() have incompatible constraints https://wg21.link/lwg3406 @@ -26377,7 +26377,7 @@ Patrick Palka d:lwg3407 LWG3407 -WP +C++23 Some problems with the wording changes of P1739R4 https://wg21.link/lwg3407 @@ -26425,7 +26425,7 @@ Anthony Williams d:lwg3410 LWG3410 -WP +C++23 lexicographical_compare_three_way is overspecified https://wg21.link/lwg3410 @@ -26437,7 +26437,7 @@ Casey Carter d:lwg3411 LWG3411 -WP +C++23 [fund.ts.v3] Contradictory namespace rules in the Library Fundamentals TS https://wg21.link/lwg3411 @@ -26449,7 +26449,7 @@ Thomas Köppe d:lwg3412 LWG3412 -New +Resolved §[format.string.std] references to "Unicode encoding" unclear https://wg21.link/lwg3412 @@ -26461,7 +26461,7 @@ Hubert Tong d:lwg3413 LWG3413 -WP +C++23 [fund.ts.v3] propagate_const's swap's noexcept specification needs to be constrained and use a trait https://wg21.link/lwg3413 @@ -26473,7 +26473,7 @@ Thomas Köppe d:lwg3414 LWG3414 -WP +C++23 [networking.ts] service_already_exists has no usable constructors https://wg21.link/lwg3414 @@ -26533,7 +26533,7 @@ Alisdair Meredith d:lwg3419 LWG3419 -WP +C++23 §[algorithms.requirements]/15 doesn't reserve as many rights as it intends to https://wg21.link/lwg3419 @@ -26557,7 +26557,7 @@ Howard Hinnant d:lwg3420 LWG3420 -WP +C++23 cpp17-iterator should check that the type looks like an iterator first https://wg21.link/lwg3420 @@ -26569,7 +26569,7 @@ Tim Song d:lwg3421 LWG3421 -WP +C++23 Imperfect ADL emulation for boolean-testable https://wg21.link/lwg3421 @@ -26581,7 +26581,7 @@ Davis Herring d:lwg3422 LWG3422 -WP +C++23 Issues of seed_seq's constructors https://wg21.link/lwg3422 @@ -26617,7 +26617,7 @@ Casey Carter d:lwg3425 LWG3425 -WP +C++23 condition_variable_any fails to constrain its Lock parameters https://wg21.link/lwg3425 @@ -26629,7 +26629,7 @@ Casey Carter d:lwg3426 LWG3426 -WP +C++23 operator<=>(const unique_ptr<T, D>&, nullptr_t) can't get no satisfaction https://wg21.link/lwg3426 @@ -26641,7 +26641,7 @@ Jonathan Wakely d:lwg3427 LWG3427 -WP +C++23 operator<=>(const shared_ptr<T>&, nullptr_t) definition ill-formed https://wg21.link/lwg3427 @@ -26653,7 +26653,7 @@ Daniel Krügler d:lwg3428 LWG3428 -WP +C++23 single_view's in place constructor should be explicit https://wg21.link/lwg3428 @@ -26689,7 +26689,7 @@ Martin Sebor d:lwg3430 LWG3430 -WP +C++23 std::fstream & co. should be constructible from string_view https://wg21.link/lwg3430 @@ -26701,7 +26701,7 @@ Jonathan Wakely d:lwg3431 LWG3431 -New +WP <=> for containers should require three_way_comparable<T> instead of <=> https://wg21.link/lwg3431 @@ -26713,7 +26713,7 @@ Jonathan Wakely d:lwg3432 LWG3432 -WP +C++23 Missing requirement for comparison_category https://wg21.link/lwg3432 @@ -26725,7 +26725,7 @@ Jonathan Wakely d:lwg3433 LWG3433 -WP +C++23 subrange::advance(n) has UB when n < 0 https://wg21.link/lwg3433 @@ -26737,7 +26737,7 @@ Casey Carter d:lwg3434 LWG3434 -WP +C++23 ios_base never reclaims memory for iarray and parray https://wg21.link/lwg3434 @@ -26749,7 +26749,7 @@ Alisdair Meredith d:lwg3435 LWG3435 -WP +C++23 three_way_comparable_with<reverse_iterator<int*>, reverse_iterator<const int*>> https://wg21.link/lwg3435 @@ -26773,7 +26773,7 @@ Jonathan Wakely d:lwg3437 LWG3437 -WP +C++23 __cpp_lib_polymorphic_allocator is in the wrong header https://wg21.link/lwg3437 @@ -26833,7 +26833,7 @@ Ville Voutilainen d:lwg3441 LWG3441 -Open +C++23 Misleading note about calls to customization points https://wg21.link/lwg3441 @@ -26845,7 +26845,7 @@ Michael Park d:lwg3442 LWG3442 -Open +Resolved Unsatisfiable suggested implementation of customization points https://wg21.link/lwg3442 @@ -26857,7 +26857,7 @@ Michael Park d:lwg3443 LWG3443 -WP +C++23 [networking.ts] net::basic_socket_iostream should use addressof https://wg21.link/lwg3443 @@ -26893,7 +26893,7 @@ Jonathan Wakely d:lwg3446 LWG3446 -WP +C++23 indirectly_readable_traits ambiguity for types with both value_type and element_type https://wg21.link/lwg3446 @@ -26905,7 +26905,7 @@ Casey Carter d:lwg3447 LWG3447 -WP +C++23 Deduction guides for take_view and drop_view have different constraints https://wg21.link/lwg3447 @@ -26917,7 +26917,7 @@ Jens Maurer d:lwg3448 LWG3448 -WP +C++23 transform_view's sentinel<false> not comparable with iterator<true> https://wg21.link/lwg3448 @@ -26929,7 +26929,7 @@ Jonathan Wakely d:lwg3449 LWG3449 -WP +C++23 take_view and take_while_view's sentinel<false> not comparable with their const iterator https://wg21.link/lwg3449 @@ -26953,7 +26953,7 @@ Clark Nelson d:lwg3450 LWG3450 -WP +C++23 The const overloads of take_while_view::begin/end are underconstrained https://wg21.link/lwg3450 @@ -26989,7 +26989,7 @@ Mathias Stearn d:lwg3453 LWG3453 -WP +C++23 Generic code cannot call ranges::advance(i, s) https://wg21.link/lwg3453 @@ -27013,7 +27013,7 @@ Alisdair Meredith d:lwg3455 LWG3455 -WP +C++23 Incorrect Postconditions on unique_ptr move assignment https://wg21.link/lwg3455 @@ -27085,7 +27085,7 @@ Jeremy Siek d:lwg3460 LWG3460 -WP +C++23 Unimplementable noop_coroutine_handle guarantees https://wg21.link/lwg3460 @@ -27097,7 +27097,7 @@ Casey Carter d:lwg3461 LWG3461 -WP +C++23 convertible_to's description mishandles cv-qualified void https://wg21.link/lwg3461 @@ -27109,7 +27109,7 @@ Tim Song d:lwg3462 LWG3462 -WP +C++23 §[formatter.requirements]: Formatter requirements forbid use of fc.arg() https://wg21.link/lwg3462 @@ -27133,7 +27133,7 @@ Agustín K-ballo Bergé d:lwg3464 LWG3464 -WP +C++23 istream::gcount() can overflow https://wg21.link/lwg3464 @@ -27145,7 +27145,7 @@ Jonathan Wakely d:lwg3465 LWG3465 -WP +C++23 compare_partial_order_fallback requires F < E https://wg21.link/lwg3465 @@ -27157,7 +27157,7 @@ Stephan T. Lavavej d:lwg3466 LWG3466 -WP +C++23 Specify the requirements for promise/future/shared_future consistently https://wg21.link/lwg3466 @@ -27169,7 +27169,7 @@ Tomasz Kamiński d:lwg3467 LWG3467 -WP +C++23 bool can't be an integer-like type https://wg21.link/lwg3467 @@ -27217,7 +27217,7 @@ P.J. Plauger, Nathan Myers d:lwg3470 LWG3470 -WP +C++23 convertible-to-non-slicing seems to reject valid case https://wg21.link/lwg3470 @@ -27229,7 +27229,7 @@ S. B. Tam d:lwg3471 LWG3471 -WP +C++23 polymorphic_allocator::allocate does not satisfy Cpp17Allocator requirements https://wg21.link/lwg3471 @@ -27241,7 +27241,7 @@ Alisdair Meredith d:lwg3472 LWG3472 -WP +C++23 counted_iterator is missing preconditions https://wg21.link/lwg3472 @@ -27253,7 +27253,7 @@ Michael Schellenberger Costa d:lwg3473 LWG3473 -WP +C++23 Normative encouragement in non-normative note https://wg21.link/lwg3473 @@ -27265,7 +27265,7 @@ Jonathan Wakely d:lwg3474 LWG3474 -WP +C++23 Nesting join_views is broken because of CTAD https://wg21.link/lwg3474 @@ -27289,7 +27289,7 @@ Billy O'Neal III d:lwg3476 LWG3476 -WP +C++23 thread and jthread constructors require that the parameters be move-constructible but never move construct the parameters https://wg21.link/lwg3476 @@ -27301,7 +27301,7 @@ Billy O'Neal III d:lwg3477 LWG3477 -WP +C++23 Simplify constraints for semiregular-box https://wg21.link/lwg3477 @@ -27349,7 +27349,7 @@ Andy Sawyer d:lwg3480 LWG3480 -WP +C++23 directory_iterator and recursive_directory_iterator are not C++20 ranges https://wg21.link/lwg3480 @@ -27361,7 +27361,7 @@ Barry Revzin d:lwg3481 LWG3481 -WP +C++23 viewable_range mishandles lvalue move-only views https://wg21.link/lwg3481 @@ -27373,7 +27373,7 @@ Casey Carter d:lwg3482 LWG3482 -WP +C++23 drop_view's const begin should additionally require sized_range https://wg21.link/lwg3482 @@ -27385,7 +27385,7 @@ Casey Carter d:lwg3483 LWG3483 -WP +C++23 transform_view::iterator's difference is overconstrained https://wg21.link/lwg3483 @@ -27481,7 +27481,7 @@ Andy Sawyer d:lwg3490 LWG3490 -WP +C++23 ranges::drop_while_view::begin() is missing a precondition https://wg21.link/lwg3490 @@ -27505,7 +27505,7 @@ Alisdair Meredith d:lwg3492 LWG3492 -WP +C++23 Minimal improvements to elements_view::iterator https://wg21.link/lwg3492 @@ -27529,7 +27529,7 @@ Ville Voutilainen d:lwg3494 LWG3494 -WP +C++23 Allow ranges to be conditionally borrowed https://wg21.link/lwg3494 @@ -27541,7 +27541,7 @@ Barry Revzin d:lwg3495 LWG3495 -WP +C++23 constexpr launder makes pointers to inactive members of unions usable https://wg21.link/lwg3495 @@ -27577,7 +27577,7 @@ Jonathan Wakely d:lwg3498 LWG3498 -WP +C++23 Inconsistent noexcept-specifiers for basic_syncbuf https://wg21.link/lwg3498 @@ -27625,7 +27625,7 @@ Nathan Myers d:lwg3500 LWG3500 -WP +C++23 join_view::iterator::operator->() is bogus https://wg21.link/lwg3500 @@ -27649,7 +27649,7 @@ Jonathan Wakely d:lwg3502 LWG3502 -WP +C++23 elements_view should not be allowed to return dangling references https://wg21.link/lwg3502 @@ -27685,7 +27685,7 @@ Jonathan Wakely d:lwg3505 LWG3505 -WP +C++23 split_view::outer-iterator::operator++ misspecified https://wg21.link/lwg3505 @@ -27697,7 +27697,7 @@ Tim Song d:lwg3506 LWG3506 -WP +C++23 Missing allocator-extended constructors for priority_queue https://wg21.link/lwg3506 @@ -27817,7 +27817,7 @@ Hiroaki Ando d:lwg3515 LWG3515 -WP +C++23 §[stacktrace.basic.nonmem]: operator<< should be less templatized https://wg21.link/lwg3515 @@ -27841,7 +27841,7 @@ Casey Carter d:lwg3517 LWG3517 -WP +C++23 join_view::iterator's iter_swap is underconstrained https://wg21.link/lwg3517 @@ -27853,7 +27853,7 @@ Casey Carter d:lwg3518 LWG3518 -WP +C++23 Exception requirements on char trait operations unclear https://wg21.link/lwg3518 @@ -27865,7 +27865,7 @@ Zoe Carver d:lwg3519 LWG3519 -WP +C++23 Incomplete synopses for <random> classes https://wg21.link/lwg3519 @@ -27889,7 +27889,7 @@ Martin Sebor d:lwg3520 LWG3520 -WP +C++23 iter_move and iter_swap are inconsistent for transform_view::iterator https://wg21.link/lwg3520 @@ -27901,7 +27901,7 @@ Tim Song d:lwg3521 LWG3521 -WP +C++23 Overly strict requirements on qsort and bsearch https://wg21.link/lwg3521 @@ -27913,7 +27913,7 @@ Richard Smith d:lwg3522 LWG3522 -WP +C++23 Missing requirement on InputIterator template parameter for priority_queue constructors https://wg21.link/lwg3522 @@ -27925,7 +27925,7 @@ Tim Song d:lwg3523 LWG3523 -WP +C++23 iota_view::sentinel is not always iota_view's sentinel https://wg21.link/lwg3523 @@ -27949,7 +27949,7 @@ Tim Song d:lwg3525 LWG3525 -WP +C++23 uses_allocator_construction_args fails to handle types convertible to pair https://wg21.link/lwg3525 @@ -27961,7 +27961,7 @@ Tim Song d:lwg3526 LWG3526 -WP +C++23 Return types of uses_allocator_construction_args unspecified https://wg21.link/lwg3526 @@ -27973,7 +27973,7 @@ Casey Carter d:lwg3527 LWG3527 -WP +C++23 uses_allocator_construction_args handles rvalue pairs of rvalue references incorrectly https://wg21.link/lwg3527 @@ -27985,7 +27985,7 @@ Tim Song d:lwg3528 LWG3528 -WP +C++23 make_from_tuple can perform (the equivalent of) a C-style cast https://wg21.link/lwg3528 @@ -27997,7 +27997,7 @@ Tim Song d:lwg3529 LWG3529 -WP +C++23 priority_queue(first, last) should construct c with (first, last) https://wg21.link/lwg3529 @@ -28021,7 +28021,7 @@ Martin Sebor d:lwg3530 LWG3530 -WP +C++23 BUILTIN-PTR-MEOW should not opt the type out of syntactic checks https://wg21.link/lwg3530 @@ -28045,7 +28045,7 @@ Mike Spertus d:lwg3532 LWG3532 -WP +C++23 split_view<V, P>::inner-iterator<true>::operator++(int) should depend on Base https://wg21.link/lwg3532 @@ -28057,7 +28057,7 @@ Casey Carter d:lwg3533 LWG3533 -WP +C++23 Make base() const & consistent across iterator wrappers that supports input_iterators https://wg21.link/lwg3533 @@ -28081,7 +28081,7 @@ Alexander Bessonov d:lwg3535 LWG3535 -WP +C++23 join_view::iterator::iterator_category and ::iterator_concept lie https://wg21.link/lwg3535 @@ -28093,7 +28093,7 @@ Casey Carter d:lwg3536 LWG3536 -WP +C++23 Should chrono::from_stream() assign zero to duration for failure? https://wg21.link/lwg3536 @@ -28129,7 +28129,7 @@ Jiang An d:lwg3539 LWG3539 -WP +C++23 format_to must not copy models of output_iterator<const charT&> https://wg21.link/lwg3539 @@ -28153,7 +28153,7 @@ Hans Aberg d:lwg3540 LWG3540 -WP +C++23 §[format.arg] There should be no const in basic_format_arg(const T* p) https://wg21.link/lwg3540 @@ -28165,7 +28165,7 @@ S. B. Tam d:lwg3541 LWG3541 -WP +C++23 indirectly_readable_traits should be SFINAE-friendly for all types https://wg21.link/lwg3541 @@ -28177,7 +28177,7 @@ Christopher Di Bella d:lwg3542 LWG3542 -WP +C++23 basic_format_arg mis-handles basic_string_view with custom traits https://wg21.link/lwg3542 @@ -28189,7 +28189,7 @@ Casey Carter d:lwg3543 LWG3543 -WP +C++23 Definition of when counted_iterators refer to the same sequence isn't quite right https://wg21.link/lwg3543 @@ -28201,7 +28201,7 @@ Tim Song d:lwg3544 LWG3544 -WP +C++23 format-arg-store::args is unintentionally not exposition-only https://wg21.link/lwg3544 @@ -28213,7 +28213,7 @@ Casey Carter d:lwg3545 LWG3545 -WP +C++23 std::pointer_traits should be SFINAE-friendly https://wg21.link/lwg3545 @@ -28225,7 +28225,7 @@ Glen Joseph Fernandes d:lwg3546 LWG3546 -WP +C++23 common_iterator's postfix-proxy is not quite right https://wg21.link/lwg3546 @@ -28249,7 +28249,7 @@ Corentin Jabot d:lwg3548 LWG3548 -WP +C++23 shared_ptr construction from unique_ptr should move (not copy) the deleter https://wg21.link/lwg3548 @@ -28261,7 +28261,7 @@ Thomas Köppe d:lwg3549 LWG3549 -WP +C++23 view_interface is overspecified to derive from view_base https://wg21.link/lwg3549 @@ -28297,7 +28297,7 @@ Hubert Tong d:lwg3551 LWG3551 -WP +C++23 borrowed_{iterator,subrange}_t are overspecified https://wg21.link/lwg3551 @@ -28309,7 +28309,7 @@ Tim Song d:lwg3552 LWG3552 -WP +C++23 Parallel specialized memory algorithms should require forward iterators https://wg21.link/lwg3552 @@ -28321,7 +28321,7 @@ Tim Song d:lwg3553 LWG3553 -WP +C++23 Useless constraint in split_view::outer-iterator::value_type::begin() https://wg21.link/lwg3553 @@ -28333,7 +28333,7 @@ Hewill Kang d:lwg3554 LWG3554 -WP +C++23 chrono::parse needs const charT* and basic_string_view<charT> overloads https://wg21.link/lwg3554 @@ -28345,7 +28345,7 @@ Howard Hinnant d:lwg3555 LWG3555 -WP +C++23 {transform,elements}_view::iterator::iterator_concept should consider const-qualification of the underlying range https://wg21.link/lwg3555 @@ -28369,7 +28369,7 @@ Tim Song d:lwg3557 LWG3557 -WP +C++23 The static_cast expression in convertible_to has the wrong operand https://wg21.link/lwg3557 @@ -28393,7 +28393,7 @@ Hewill Kang d:lwg3559 LWG3559 -WP +C++23 Semantic requirements of sized_range is circular https://wg21.link/lwg3559 @@ -28417,7 +28417,7 @@ Matt Austern d:lwg3560 LWG3560 -WP +C++23 ranges::equal and ranges::is_permutation should short-circuit for sized_ranges https://wg21.link/lwg3560 @@ -28429,7 +28429,7 @@ Tim Song d:lwg3561 LWG3561 -WP +C++23 Issue with internal counter in discard_block_engine https://wg21.link/lwg3561 @@ -28453,7 +28453,7 @@ David Friberg d:lwg3563 LWG3563 -WP +C++23 keys_view example is broken https://wg21.link/lwg3563 @@ -28465,7 +28465,7 @@ Barry Revzin d:lwg3564 LWG3564 -WP +C++23 transform_view::iterator<true>::value_type and iterator_category should use const F& https://wg21.link/lwg3564 @@ -28477,7 +28477,7 @@ Tim Song d:lwg3565 LWG3565 -SG16 +Resolved Handling of encodings in localized formatting of chrono types is underspecified https://wg21.link/lwg3565 @@ -28489,7 +28489,7 @@ Victor Zverovich d:lwg3566 LWG3566 -WP +C++23 Constraint recursion for operator<=>(optional<T>, U) https://wg21.link/lwg3566 @@ -28501,7 +28501,7 @@ Casey Carter d:lwg3567 LWG3567 -WP +C++23 Formatting move-only iterators take two https://wg21.link/lwg3567 @@ -28513,7 +28513,7 @@ Casey Carter d:lwg3568 LWG3568 -WP +C++23 basic_istream_view needs to initialize value_ https://wg21.link/lwg3568 @@ -28525,7 +28525,7 @@ Casey Carter d:lwg3569 LWG3569 -WP +C++23 join_view fails to support ranges of ranges with non-default_initializable iterators https://wg21.link/lwg3569 @@ -28549,7 +28549,7 @@ Ray Lischner d:lwg3570 LWG3570 -WP +C++23 basic_osyncstream::emit should be an unformatted output function https://wg21.link/lwg3570 @@ -28561,7 +28561,7 @@ Tim Song d:lwg3571 LWG3571 -WP +C++23 flush_emit should set badbit if the emit call fails https://wg21.link/lwg3571 @@ -28573,7 +28573,7 @@ Tim Song d:lwg3572 LWG3572 -WP +C++23 copyable-box should be fully constexpr https://wg21.link/lwg3572 @@ -28585,7 +28585,7 @@ Tim Song d:lwg3573 LWG3573 -WP +C++23 Missing Throws element for basic_string_view(It begin, End end) https://wg21.link/lwg3573 @@ -28597,7 +28597,7 @@ Hewill Kang d:lwg3574 LWG3574 -WP +C++23 common_iterator should be completely constexpr-able https://wg21.link/lwg3574 @@ -28621,7 +28621,7 @@ Jiang An d:lwg3576 LWG3576 -SG16 +Resolved Clarifying fill character in std::format https://wg21.link/lwg3576 @@ -28681,7 +28681,7 @@ Martin Sebor d:lwg3580 LWG3580 -WP +C++23 iota_view's iterator's binary operator+ should be improved https://wg21.link/lwg3580 @@ -28693,7 +28693,7 @@ Zoe Carver d:lwg3581 LWG3581 -WP +C++23 The range constructor makes basic_string_view not trivially move constructible https://wg21.link/lwg3581 @@ -28741,7 +28741,7 @@ Peter Brett d:lwg3585 LWG3585 -WP +C++23 Variant converting assignment with immovable alternative https://wg21.link/lwg3585 @@ -28789,7 +28789,7 @@ Johel Ernesto Guerrero Peña d:lwg3589 LWG3589 -WP +C++23 The const lvalue reference overload of get for subrange does not constrain I to be copyable when N == 0 https://wg21.link/lwg3589 @@ -28813,7 +28813,7 @@ Martin Sebor d:lwg3590 LWG3590 -WP +C++23 split_view::base() const & is overconstrained https://wg21.link/lwg3590 @@ -28825,7 +28825,7 @@ Tim Song d:lwg3591 LWG3591 -WP +C++23 lazy_split_view<input_view>::inner-iterator::base() && invalidates outer iterators https://wg21.link/lwg3591 @@ -28837,7 +28837,7 @@ Tim Song d:lwg3592 LWG3592 -WP +C++23 lazy_split_view needs to check the simpleness of Pattern https://wg21.link/lwg3592 @@ -28849,7 +28849,7 @@ Tim Song d:lwg3593 LWG3593 -WP +C++23 Several iterators' base() const & and lazy_split_view::outer-iterator::value_type::end() missing noexcept https://wg21.link/lwg3593 @@ -28861,7 +28861,7 @@ Hewill Kang d:lwg3594 LWG3594 -WP +C++23 inout_ptr — inconsistent release() in destructor https://wg21.link/lwg3594 @@ -28873,7 +28873,7 @@ JeanHeyd Meneide d:lwg3595 LWG3595 -WP +C++23 Exposition-only classes proxy and postfix-proxy for common_iterator should be fully constexpr https://wg21.link/lwg3595 @@ -28897,7 +28897,7 @@ Michael Schellenberger Costa d:lwg3597 LWG3597 -WP +C++23 Unsigned integer types don't model advanceable https://wg21.link/lwg3597 @@ -28909,7 +28909,7 @@ Jiang An d:lwg3598 LWG3598 -WP +C++23 system_category().default_error_condition(0) is underspecified https://wg21.link/lwg3598 @@ -28957,7 +28957,7 @@ Martin Sebor d:lwg3600 LWG3600 -WP +C++23 Making istream_iterator copy constructor trivial is an ABI break https://wg21.link/lwg3600 @@ -28969,7 +28969,7 @@ Jonathan Wakely d:lwg3601 LWG3601 -WP +C++23 common_iterator's postfix-proxy needs indirectly_readable https://wg21.link/lwg3601 @@ -29041,7 +29041,7 @@ Jonathan Wakely d:lwg3607 LWG3607 -WP +C++23 contiguous_iterator should not be allowed to have custom iter_move and iter_swap behavior https://wg21.link/lwg3607 @@ -29089,7 +29089,7 @@ Martin Sebor d:lwg3610 LWG3610 -WP +C++23 iota_view::size sometimes rejects integer-class types https://wg21.link/lwg3610 @@ -29113,7 +29113,7 @@ Jonathan Wakely d:lwg3612 LWG3612 -WP +C++23 Inconsistent pointer alignment in std::format https://wg21.link/lwg3612 @@ -29161,7 +29161,7 @@ Hewill Kang d:lwg3616 LWG3616 -WP +C++23 LWG 3498 seems to miss the non-member swap for basic_syncbuf https://wg21.link/lwg3616 @@ -29173,7 +29173,7 @@ S. B. Tam d:lwg3617 LWG3617 -WP +C++23 function/packaged_task deduction guides and deducing this https://wg21.link/lwg3617 @@ -29185,7 +29185,7 @@ Barry Revzin d:lwg3618 LWG3618 -WP +C++23 Unnecessary iter_move for transform_view::iterator https://wg21.link/lwg3618 @@ -29197,7 +29197,7 @@ Barry Revzin d:lwg3619 LWG3619 -WP +C++23 Specification of vformat_to contains ill-formed formatted_size calls https://wg21.link/lwg3619 @@ -29233,7 +29233,7 @@ Dawn Perchik d:lwg3621 LWG3621 -WP +C++23 Remove feature-test macro __cpp_lib_monadic_optional https://wg21.link/lwg3621 @@ -29245,7 +29245,7 @@ Jens Maurer d:lwg3622 LWG3622 -New +C++23 Misspecified transitivity of equivalence in §[unord.req.general] https://wg21.link/lwg3622 @@ -29329,7 +29329,7 @@ Jiang An d:lwg3629 LWG3629 -WP +C++23 make_error_code and make_error_condition are customization points https://wg21.link/lwg3629 @@ -29365,7 +29365,7 @@ Jonathan Wakely d:lwg3631 LWG3631 -New +C++23 basic_format_arg(T&&) should use remove_cvref_t<T> throughout https://wg21.link/lwg3631 @@ -29377,7 +29377,7 @@ Tim Song d:lwg3632 LWG3632 -WP +C++23 unique_ptr "Mandates: This constructor is not selected by class template argument deduction" https://wg21.link/lwg3632 @@ -29413,7 +29413,7 @@ Jiang An d:lwg3635 LWG3635 -New +Tentatively NAD Add __cpp_lib_deduction_guides to feature test macros https://wg21.link/lwg3635 @@ -29425,7 +29425,7 @@ Konstantin Varlamov d:lwg3636 LWG3636 -WP +C++23 formatter<T>::format should be const-qualified https://wg21.link/lwg3636 @@ -29461,7 +29461,7 @@ Jonathan Wakely d:lwg3639 LWG3639 -SG16 +Resolved Handling of fill character width is underspecified in std::format https://wg21.link/lwg3639 @@ -29521,7 +29521,7 @@ Alexander Guteniev d:lwg3643 LWG3643 -WP +C++23 Missing constexpr in std::counted_iterator https://wg21.link/lwg3643 @@ -29545,7 +29545,7 @@ Charlie Barto d:lwg3645 LWG3645 -New +C++23 resize_and_overwrite is overspecified to call its callback with lvalues https://wg21.link/lwg3645 @@ -29557,7 +29557,7 @@ Arthur O'Dwyer d:lwg3646 LWG3646 -WP +C++23 std::ranges::view_interface::size returns a signed type https://wg21.link/lwg3646 @@ -29581,7 +29581,7 @@ Konstantin Varlamov d:lwg3648 LWG3648 -WP +C++23 format should not print bool with 'c' https://wg21.link/lwg3648 @@ -29617,7 +29617,7 @@ Walter Brown, Marc Paterno d:lwg3650 LWG3650 -WP +C++23 Are std::basic_string's iterator and const_iterator constexpr iterators? https://wg21.link/lwg3650 @@ -29665,7 +29665,7 @@ Jonathan Wakely d:lwg3654 LWG3654 -WP +C++23 basic_format_context::arg(size_t) should be noexcept https://wg21.link/lwg3654 @@ -29677,7 +29677,7 @@ Hewill Kang d:lwg3655 LWG3655 -New +C++23 The INVOKE operation and union types https://wg21.link/lwg3655 @@ -29689,7 +29689,7 @@ Jiang An d:lwg3656 LWG3656 -WP +C++23 Inconsistent bit operations returning a count https://wg21.link/lwg3656 @@ -29701,7 +29701,7 @@ Nicolai Josuttis d:lwg3657 LWG3657 -WP +C++23 std::hash<std::filesystem::path> is not enabled https://wg21.link/lwg3657 @@ -29725,7 +29725,7 @@ Jonathan Wakely d:lwg3659 LWG3659 -WP +C++23 Consider ATOMIC_FLAG_INIT undeprecation https://wg21.link/lwg3659 @@ -29749,7 +29749,7 @@ Walter Brown, Marc Paterno d:lwg3660 LWG3660 -WP +C++23 iterator_traits<common_iterator>::pointer should conform to §[iterator.traits] https://wg21.link/lwg3660 @@ -29761,7 +29761,7 @@ Casey Carter d:lwg3661 LWG3661 -WP +C++23 constinit atomic<shared_ptr<T>> a(nullptr); should work https://wg21.link/lwg3661 @@ -29797,7 +29797,7 @@ Jonathan Wakely d:lwg3664 LWG3664 -Ready +C++23 LWG 3392 broke std::ranges::distance(a, a+3) https://wg21.link/lwg3664 @@ -29881,7 +29881,7 @@ Anthony Williams d:lwg3670 LWG3670 -WP +C++23 Cpp17InputIterators don't have integer-class difference types https://wg21.link/lwg3670 @@ -29893,7 +29893,7 @@ Casey Carter d:lwg3671 LWG3671 -WP +C++23 atomic_fetch_xor missing from stdatomic.h https://wg21.link/lwg3671 @@ -29905,7 +29905,7 @@ Hubert Tong d:lwg3672 LWG3672 -WP +C++23 common_iterator::operator->() should return by value https://wg21.link/lwg3672 @@ -29917,7 +29917,7 @@ Jonathan Wakely d:lwg3673 LWG3673 -New +Resolved §[locale.cons] Ambiguous argument in Throws for locale+name+category constructor https://wg21.link/lwg3673 @@ -29953,7 +29953,7 @@ Jiang An d:lwg3676 LWG3676 -New +Resolved Name of locale composed using std::locale::none https://wg21.link/lwg3676 @@ -29965,7 +29965,7 @@ Hubert Tong d:lwg3677 LWG3677 -WP +C++23 Is a cv-qualified pair specially handled in uses-allocator construction? https://wg21.link/lwg3677 @@ -30049,7 +30049,7 @@ Jiang An d:lwg3683 LWG3683 -WP +C++23 operator== for polymorphic_allocator cannot deduce template argument in common cases https://wg21.link/lwg3683 @@ -30097,7 +30097,7 @@ Konstantin Varlamov d:lwg3687 LWG3687 -WP +C++23 expected<cv void, E> move constructor should move https://wg21.link/lwg3687 @@ -30169,7 +30169,7 @@ Jens Maurer d:lwg3692 LWG3692 -WP +C++23 zip_view::iterator's operator<=> is overconstrained https://wg21.link/lwg3692 @@ -30241,7 +30241,7 @@ Jiang An d:lwg3698 LWG3698 -Open +Resolved regex_iterator and join_view don't work together very well https://wg21.link/lwg3698 @@ -30289,7 +30289,7 @@ Ray Lischner d:lwg3700 LWG3700 -New +Resolved The const begin of the join_view family does not require InnerRng to be a range https://wg21.link/lwg3700 @@ -30301,7 +30301,7 @@ Hewill Kang d:lwg3701 LWG3701 -WP +C++23 Make formatter<remove_cvref_t<const charT[N]>, charT> requirement explicit https://wg21.link/lwg3701 @@ -30313,7 +30313,7 @@ Mark de Wever d:lwg3702 LWG3702 -WP +C++23 Should zip_transform_view::iterator remove operator<? https://wg21.link/lwg3702 @@ -30325,7 +30325,7 @@ Hewill Kang d:lwg3703 LWG3703 -WP +C++23 Missing requirements for expected<T, E> requires is_void<T> https://wg21.link/lwg3703 @@ -30337,7 +30337,7 @@ Casey Carter d:lwg3704 LWG3704 -WP +C++23 LWG 2059 added overloads that might be ill-formed for sets https://wg21.link/lwg3704 @@ -30349,7 +30349,7 @@ Jonathan Wakely d:lwg3705 LWG3705 -WP +C++23 Hashability shouldn't depend on basic_string's allocator https://wg21.link/lwg3705 @@ -30373,7 +30373,7 @@ S. B. Tam d:lwg3707 LWG3707 -WP +C++23 chunk_view::outer-iterator::value_type::size should return unsigned type https://wg21.link/lwg3707 @@ -30385,7 +30385,7 @@ Hewill Kang d:lwg3708 LWG3708 -WP +C++23 take_while_view::sentinel's conversion constructor should move https://wg21.link/lwg3708 @@ -30397,7 +30397,7 @@ Hewill Kang d:lwg3709 LWG3709 -WP +C++23 LWG-3703 was underly ambitious https://wg21.link/lwg3709 @@ -30421,7 +30421,7 @@ Frank Compagner d:lwg3710 LWG3710 -WP +C++23 The end of chunk_view for input ranges can be const https://wg21.link/lwg3710 @@ -30433,7 +30433,7 @@ Hewill Kang d:lwg3711 LWG3711 -WP +C++23 Missing preconditions for slide_view constructor https://wg21.link/lwg3711 @@ -30445,7 +30445,7 @@ Hewill Kang d:lwg3712 LWG3712 -WP +C++23 chunk_view and slide_view should not be default_initializable https://wg21.link/lwg3712 @@ -30457,7 +30457,7 @@ Hewill Kang d:lwg3713 LWG3713 -WP +C++23 Sorted with respect to comparator (only) https://wg21.link/lwg3713 @@ -30481,7 +30481,7 @@ Hewill Kang d:lwg3715 LWG3715 -WP +C++23 view_interface::empty is overconstrained https://wg21.link/lwg3715 @@ -30505,7 +30505,7 @@ Jiang An d:lwg3717 LWG3717 -WP +C++23 common_view::end should improve random_access_range case https://wg21.link/lwg3717 @@ -30517,7 +30517,7 @@ Hewill Kang d:lwg3718 LWG3718 -New +Resolved P2418R2 broke the overload resolution for std::basic_format_arg https://wg21.link/lwg3718 @@ -30529,7 +30529,7 @@ Jiang An d:lwg3719 LWG3719 -WP +C++23 Directory iterators should be usable with default sentinel https://wg21.link/lwg3719 @@ -30553,7 +30553,7 @@ Randy Maddox d:lwg3720 LWG3720 -Ready +C++23 Restrict the valid types of arg-id for width and precision in std-format-spec https://wg21.link/lwg3720 @@ -30565,7 +30565,7 @@ Mark de Wever d:lwg3721 LWG3721 -WP +C++23 Allow an arg-id with a value of zero for width in std-format-spec https://wg21.link/lwg3721 @@ -30589,7 +30589,7 @@ Hewill Kang d:lwg3723 LWG3723 -New +C++23 priority_queue::push_range needs to append_range https://wg21.link/lwg3723 @@ -30601,7 +30601,7 @@ Casey Carter d:lwg3724 LWG3724 -WP +C++23 decay-copy should be constrained https://wg21.link/lwg3724 @@ -30709,7 +30709,7 @@ Hewill Kang d:lwg3732 LWG3732 -WP +C++23 prepend_range and append_range can't be amortized constant time https://wg21.link/lwg3732 @@ -30721,7 +30721,7 @@ Tim Song d:lwg3733 LWG3733 -Tentatively Ready +C++23 ranges::to misuses cpp17-input-iterator https://wg21.link/lwg3733 @@ -30733,7 +30733,7 @@ S. B. Tam d:lwg3734 LWG3734 -New +C++23 Inconsistency in inout_ptr and out_ptr for empty case https://wg21.link/lwg3734 @@ -30757,7 +30757,7 @@ Hewill Kang d:lwg3736 LWG3736 -WP +C++23 move_iterator missing disable_sized_sentinel_for specialization https://wg21.link/lwg3736 @@ -30769,7 +30769,7 @@ Hewill Kang d:lwg3737 LWG3737 -WP +C++23 take_view::sentinel should provide operator- https://wg21.link/lwg3737 @@ -30781,7 +30781,7 @@ Hewill Kang d:lwg3738 LWG3738 -WP +C++23 Missing preconditions for take_view constructor https://wg21.link/lwg3738 @@ -30841,7 +30841,7 @@ Charlie Barto d:lwg3742 LWG3742 -Tentatively Ready +C++23 deque::prepend_range needs to permute https://wg21.link/lwg3742 @@ -30853,7 +30853,7 @@ Casey Carter d:lwg3743 LWG3743 -WP +C++23 ranges::to's reserve may be ill-formed https://wg21.link/lwg3743 @@ -30877,7 +30877,7 @@ Nicole Mazzuca d:lwg3745 LWG3745 -WP +C++23 std::atomic_wait and its friends lack noexcept https://wg21.link/lwg3745 @@ -30889,7 +30889,7 @@ Jiang An d:lwg3746 LWG3746 -WP +C++23 optional's spaceship with U with a type derived from optional causes infinite constraint meta-recursion https://wg21.link/lwg3746 @@ -30901,7 +30901,7 @@ Ville Voutilainen d:lwg3747 LWG3747 -WP +C++23 ranges::uninitialized_copy_n, ranges::uninitialized_move_n, and ranges::destroy_n should use std::move https://wg21.link/lwg3747 @@ -30925,7 +30925,7 @@ Hewill Kang d:lwg3749 LWG3749 -New +WP common_iterator should handle integer-class difference types https://wg21.link/lwg3749 @@ -30949,7 +30949,7 @@ Ray Lischner d:lwg3750 LWG3750 -WP +C++23 Too many papers bump __cpp_lib_format https://wg21.link/lwg3750 @@ -30961,7 +30961,7 @@ Barry Revzin d:lwg3751 LWG3751 -WP +C++23 Missing feature macro for flat_set https://wg21.link/lwg3751 @@ -30985,7 +30985,7 @@ Igor Zhukov d:lwg3753 LWG3753 -WP +C++23 Clarify entity vs. freestanding entity https://wg21.link/lwg3753 @@ -30997,7 +30997,7 @@ Ben Craig d:lwg3754 LWG3754 -WP +C++23 Class template expected synopsis contains declarations that do not match the detailed description https://wg21.link/lwg3754 @@ -31009,7 +31009,7 @@ S. B. Tam d:lwg3755 LWG3755 -WP +C++23 tuple-for-each can call user-defined operator, https://wg21.link/lwg3755 @@ -31021,7 +31021,7 @@ Nicole Mazzuca d:lwg3756 LWG3756 -Ready +C++23 Is the std::atomic_flag class signal-safe? https://wg21.link/lwg3756 @@ -31033,7 +31033,7 @@ Ruslan Baratov d:lwg3757 LWG3757 -WP +C++23 What's the effect of std::forward_like<void>(x)? https://wg21.link/lwg3757 @@ -31057,7 +31057,7 @@ Jiang An d:lwg3759 LWG3759 -WP +C++23 ranges::rotate_copy should use std::move https://wg21.link/lwg3759 @@ -31081,7 +31081,7 @@ Ray Lischner d:lwg3760 LWG3760 -WP +C++23 cartesian_product_view::iterator's parent_ is never valid https://wg21.link/lwg3760 @@ -31093,7 +31093,7 @@ Hewill Kang d:lwg3761 LWG3761 -WP +C++23 cartesian_product_view::iterator::operator- should pass by reference https://wg21.link/lwg3761 @@ -31105,7 +31105,7 @@ Hewill Kang d:lwg3762 LWG3762 -WP +C++23 generator::iterator::operator== should pass by reference https://wg21.link/lwg3762 @@ -31129,7 +31129,7 @@ Hewill Kang d:lwg3764 LWG3764 -WP +C++23 reference_wrapper::operator() should propagate noexcept https://wg21.link/lwg3764 @@ -31141,7 +31141,7 @@ Zhihao Yuan d:lwg3765 LWG3765 -WP +C++23 const_sentinel should be constrained https://wg21.link/lwg3765 @@ -31153,7 +31153,7 @@ Hewill Kang d:lwg3766 LWG3766 -WP +C++23 view_interface::cbegin is underconstrained https://wg21.link/lwg3766 @@ -31165,7 +31165,7 @@ Hewill Kang d:lwg3767 LWG3767 -SG16 +Ready codecvt<charN_t, char8_t, mbstate_t> incorrectly added to locale https://wg21.link/lwg3767 @@ -31189,7 +31189,7 @@ Hewill Kang d:lwg3769 LWG3769 -Ready +C++23 basic_const_iterator::operator== causes infinite constraint recursion https://wg21.link/lwg3769 @@ -31213,7 +31213,7 @@ Ray Lischner d:lwg3770 LWG3770 -WP +C++23 const_sentinel_t is missing https://wg21.link/lwg3770 @@ -31225,7 +31225,7 @@ Hewill Kang d:lwg3771 LWG3771 -WP +C++23 [fund.ts.v3] remove binders typedefs from function https://wg21.link/lwg3771 @@ -31237,7 +31237,7 @@ Alisdair Meredith d:lwg3772 LWG3772 -New +C++23 repeat_view's piecewise constructor is missing Postconditions https://wg21.link/lwg3772 @@ -31249,7 +31249,7 @@ Hewill Kang d:lwg3773 LWG3773 -WP +C++23 views::zip_transform still requires F to be copy_constructible when empty pack https://wg21.link/lwg3773 @@ -31261,7 +31261,7 @@ Hewill Kang d:lwg3774 LWG3774 -WP +C++23 <flat_set> should include <compare> https://wg21.link/lwg3774 @@ -31273,7 +31273,7 @@ Jiang An d:lwg3775 LWG3775 -WP +C++23 Broken dependencies in the Cpp17Allocator requirements https://wg21.link/lwg3775 @@ -31285,7 +31285,7 @@ Alisdair Meredith d:lwg3776 LWG3776 -LEWG +NAD Avoid parsing format-spec if it is not present or empty https://wg21.link/lwg3776 @@ -31309,7 +31309,7 @@ Tomasz Kamiński d:lwg3778 LWG3778 -WP +C++23 vector<bool> missing exception specifications https://wg21.link/lwg3778 @@ -31345,7 +31345,7 @@ Martin Sebor d:lwg3780 LWG3780 -SG16 +Resolved format's width estimation is too approximate and not forward compatible https://wg21.link/lwg3780 @@ -31357,7 +31357,7 @@ Corentin Jabot d:lwg3781 LWG3781 -WP +C++23 The exposition-only alias templates cont-key-type and cont-mapped-type should be removed https://wg21.link/lwg3781 @@ -31369,7 +31369,7 @@ Hewill Kang d:lwg3782 LWG3782 -WP +C++23 Should <math.h> declare ::lerp? https://wg21.link/lwg3782 @@ -31393,7 +31393,7 @@ Hewill Kang d:lwg3784 LWG3784 -WP +C++23 std.compat should not provide ::byte and its friends https://wg21.link/lwg3784 @@ -31405,7 +31405,7 @@ Jiang An d:lwg3785 LWG3785 -WP +C++23 ranges::to is over-constrained on the destination type being a range https://wg21.link/lwg3785 @@ -31417,7 +31417,7 @@ Barry Revzin d:lwg3786 LWG3786 -Open +C++23 Flat maps' deduction guide needs to default Allocator to be useful https://wg21.link/lwg3786 @@ -31429,7 +31429,7 @@ Johel Ernesto Guerrero Peña d:lwg3787 LWG3787 -New +Resolved ranges::to's template parameter C should not be a reference type https://wg21.link/lwg3787 @@ -31441,7 +31441,7 @@ Hewill Kang d:lwg3788 LWG3788 -WP +C++23 jthread::operator=(jthread&&) postconditions are unimplementable under self-assignment https://wg21.link/lwg3788 @@ -31477,7 +31477,7 @@ Martin Sebor d:lwg3790 LWG3790 -Tentatively Ready +C++23 P1467 accidentally changed nexttoward's signature https://wg21.link/lwg3790 @@ -31489,7 +31489,7 @@ David Olsen d:lwg3791 LWG3791 -New +Resolved join_view::iterator::operator-- may be ill-formed https://wg21.link/lwg3791 @@ -31501,7 +31501,7 @@ Hewill Kang d:lwg3792 LWG3792 -WP +C++23 __cpp_lib_constexpr_algorithms should also be defined in <utility> https://wg21.link/lwg3792 @@ -31537,7 +31537,7 @@ Jiang An d:lwg3795 LWG3795 -WP +C++23 Self-move-assignment of std::future and std::shared_future have unimplementable postconditions https://wg21.link/lwg3795 @@ -31549,7 +31549,7 @@ Jiang An d:lwg3796 LWG3796 -WP +C++23 movable-box as member should use default-initialization instead of copy-initialization https://wg21.link/lwg3796 @@ -31573,7 +31573,7 @@ Hui Xie d:lwg3798 LWG3798 -WP +C++23 Rvalue reference and iterator_category https://wg21.link/lwg3798 @@ -31633,7 +31633,7 @@ Jonathan Wakely d:lwg3801 LWG3801 -WP +C++23 cartesian_product_view::iterator::distance-from ignores the size of last underlying range https://wg21.link/lwg3801 @@ -31657,7 +31657,7 @@ Arthur O'Dwyer d:lwg3803 LWG3803 -New +C++23 flat_foo constructors taking KeyContainer lack KeyCompare parameter https://wg21.link/lwg3803 @@ -31705,7 +31705,7 @@ Jonathan Wakely d:lwg3807 LWG3807 -Ready +C++23 The feature test macro for ranges::find_last should be renamed https://wg21.link/lwg3807 @@ -31729,7 +31729,7 @@ Daniel Marshall d:lwg3809 LWG3809 -New +WP Is std::subtract_with_carry_engine<uint16_t> supposed to work? https://wg21.link/lwg3809 @@ -31753,7 +31753,7 @@ Martin Sebor d:lwg3810 LWG3810 -LEWG +C++23 CTAD for std::basic_format_args https://wg21.link/lwg3810 @@ -31765,7 +31765,7 @@ Jonathan Wakely d:lwg3811 LWG3811 -Ready +C++23 views::as_const on ref_view<T> should return ref_view<const T> https://wg21.link/lwg3811 @@ -31801,7 +31801,7 @@ Jiang An d:lwg3814 LWG3814 -WP +C++23 Add freestanding items requested by NB comments https://wg21.link/lwg3814 @@ -31825,7 +31825,7 @@ Ben Craig d:lwg3816 LWG3816 -WP +C++23 flat_map and flat_multimap should impose sequence container requirements https://wg21.link/lwg3816 @@ -31837,7 +31837,7 @@ Tomasz Kamiński d:lwg3817 LWG3817 -WP +C++23 Missing preconditions on forward_list modifiers https://wg21.link/lwg3817 @@ -31849,7 +31849,7 @@ Tomasz Kamiński d:lwg3818 LWG3818 -WP +C++23 Exposition-only concepts are not described in library intro https://wg21.link/lwg3818 @@ -31861,7 +31861,7 @@ Tim Song d:lwg3819 LWG3819 -Tentatively Ready +C++23 reference_meows_from_temporary should not use is_meowible https://wg21.link/lwg3819 @@ -31885,7 +31885,7 @@ Martin Sebor d:lwg3820 LWG3820 -Ready +C++23 cartesian_product_view::iterator::prev is not quite right https://wg21.link/lwg3820 @@ -31897,7 +31897,7 @@ Hewill Kang d:lwg3821 LWG3821 -Tentatively Ready +C++23 uses_allocator_construction_args should have overload for pair-like https://wg21.link/lwg3821 @@ -31909,7 +31909,7 @@ Tim Song d:lwg3822 LWG3822 -WP +C++23 Avoiding normalization in filesystem::weakly_canonical https://wg21.link/lwg3822 @@ -31921,7 +31921,7 @@ US d:lwg3823 LWG3823 -WP +C++23 Unnecessary precondition for is_aggregate https://wg21.link/lwg3823 @@ -31933,7 +31933,7 @@ Tomasz Kamiński d:lwg3824 LWG3824 -WP +C++23 Number of bind placeholders is underspecified https://wg21.link/lwg3824 @@ -31945,7 +31945,7 @@ Tomasz Kamiński d:lwg3825 LWG3825 -Ready +C++23 Missing compile-time argument id check in basic_format_parse_context::next_arg_id https://wg21.link/lwg3825 @@ -31957,7 +31957,7 @@ Victor Zverovich d:lwg3826 LWG3826 -WP +C++23 Redundant specification [for overload of yield_value] https://wg21.link/lwg3826 @@ -31969,8 +31969,8 @@ US d:lwg3827 LWG3827 -LEWG -Deprecate <stdalign.h> and <stdalign.h> macros +C++23 +Deprecate <stdalign.h> and <stdbool.h> macros https://wg21.link/lwg3827 @@ -31981,7 +31981,7 @@ GB d:lwg3828 LWG3828 -LEWG +C++23 Sync intmax_t and uintmax_t with C2x https://wg21.link/lwg3828 @@ -32053,7 +32053,7 @@ Jiang An d:lwg3833 LWG3833 -New +C++23 Remove specialization template<size_t N> struct formatter<const charT[N], charT> https://wg21.link/lwg3833 @@ -32065,7 +32065,7 @@ Mark de Wever d:lwg3834 LWG3834 -Tentatively Ready +C++23 Missing constexpr for std::intmax_t math functions in <cinttypes> https://wg21.link/lwg3834 @@ -32089,7 +32089,7 @@ Xie He d:lwg3836 LWG3836 -New +C++23 std::expected<bool, E1> conversion constructor expected(const expected<U, G>&) should take precedence over expected(U&&) with operator bool https://wg21.link/lwg3836 @@ -32125,7 +32125,7 @@ Hewill Kang d:lwg3839 LWG3839 -Tentatively Ready +C++23 range_formatter's set_separator, set_brackets, and underlying functions should be noexcept https://wg21.link/lwg3839 @@ -32149,7 +32149,7 @@ Hans Bos d:lwg3840 LWG3840 -LEWG +Open filesystem::u8path should be undeprecated https://wg21.link/lwg3840 @@ -32161,7 +32161,7 @@ Daniel Krügler d:lwg3841 LWG3841 -Tentatively Ready +C++23 <version> should not be "all freestanding" https://wg21.link/lwg3841 @@ -32173,7 +32173,7 @@ Jonathan Wakely d:lwg3842 LWG3842 -Tentatively Ready +C++23 Unclear wording for precision in chrono-format-spec https://wg21.link/lwg3842 @@ -32185,7 +32185,7 @@ Jonathan Wakely d:lwg3843 LWG3843 -New +C++23 std::expected<T,E>::value() & assumes E is copy constructible https://wg21.link/lwg3843 @@ -32197,7 +32197,7 @@ Jonathan Wakely d:lwg3844 LWG3844 -New +Open Non-numeric formats for negative durations https://wg21.link/lwg3844 @@ -32233,7 +32233,7 @@ Hewill Kang d:lwg3847 LWG3847 -New +C++23 ranges::to can still return views https://wg21.link/lwg3847 @@ -32242,401 +32242,2705 @@ https://wg21.link/lwg3847 Hewill Kang - -d:lwg3848 -LWG3848 +d:lwg3848 +LWG3848 + +C++23 +adjacent_view, adjacent_transform_view and slide_view missing base accessor +https://wg21.link/lwg3848 + + + + +Hewill Kang +- +d:lwg3849 +LWG3849 + +C++23 +cartesian_product_view::iterator's default constructor is overconstrained +https://wg21.link/lwg3849 + + + + +Hewill Kang +- +d:lwg385 +LWG385 + +NAD +Does call by value imply the CopyConstructible requirement? +https://wg21.link/lwg385 + + + + +Matt Austern +- +d:lwg3850 +LWG3850 + +C++23 +views::as_const on empty_view<T> should return empty_view<const T> +https://wg21.link/lwg3850 + + + + +Hewill Kang +- +d:lwg3851 +LWG3851 + +C++23 +chunk_view::inner-iterator missing custom iter_move and iter_swap +https://wg21.link/lwg3851 + + + + +Hewill Kang +- +d:lwg3852 +LWG3852 + +New +join_with_view::iterator's iter_move and iter_swap should be conditionally noexcept +https://wg21.link/lwg3852 + + + + +Hewill Kang +- +d:lwg3853 +LWG3853 + +C++23 +basic_const_iterator<volatile int*>::operator-> is ill-formed +https://wg21.link/lwg3853 + + + + +Hewill Kang +- +d:lwg3854 +LWG3854 + +New +§[res.on.exception.handling]/3 should not be applied to all standard library types +https://wg21.link/lwg3854 + + + + +Jiang An +- +d:lwg3855 +LWG3855 + +New +tiny-range is not quite right +https://wg21.link/lwg3855 + + + + +Hewill Kang +- +d:lwg3856 +LWG3856 + +New +Unclear which conversion specifiers are valid for each chrono type +https://wg21.link/lwg3856 + + + + +Tam S. B. +- +d:lwg3857 +LWG3857 + +C++23 +basic_string_view should allow explicit conversion when only traits vary +https://wg21.link/lwg3857 + + + + +Casey Carter +- +d:lwg3858 +LWG3858 + +NAD +basic_const_iterator is too strict to provide iterator_category +https://wg21.link/lwg3858 + + + + +Hewill Kang +- +d:lwg3859 +LWG3859 + +Resolved +std::projected cannot handle proxy iterator +https://wg21.link/lwg3859 + + + + +Hewill Kang +- +d:lwg386 +LWG386 + +CD1 +Reverse iterator's operator[] has impossible return type +https://wg21.link/lwg386 + + + + +Matt Austern +- +d:lwg3860 +LWG3860 + +C++23 +range_common_reference_t is missing +https://wg21.link/lwg3860 + + + + +Hewill Kang +- +d:lwg3861 +LWG3861 + +Resolved +mdspan layout_stride::mapping default constructor problem +https://wg21.link/lwg3861 + + + + +Christian Robert Trott +- +d:lwg3862 +LWG3862 + +C++23 +basic_const_iterator's common_type specialization is underconstrained +https://wg21.link/lwg3862 + + + + +Hewill Kang +- +d:lwg3863 +LWG3863 + +New +Is input_iterator guaranteed to have iter_const_reference_t? +https://wg21.link/lwg3863 + + + + +Hewill Kang +- +d:lwg3864 +LWG3864 + +New +zip over range of reference to an abstract type +https://wg21.link/lwg3864 + + + + +Barry Revzin +- +d:lwg3865 +LWG3865 + +C++23 +Sorting a range of pairs +https://wg21.link/lwg3865 + + + + +Barry Revzin +- +d:lwg3866 +LWG3866 + +C++23 +Bad Mandates for expected::transform_error overloads +https://wg21.link/lwg3866 + + + + +Casey Carter +- +d:lwg3867 +LWG3867 + +C++23 +Should std::basic_osyncstream's move assignment operator be noexcept? +https://wg21.link/lwg3867 + + + + +Jiang An +- +d:lwg3868 +LWG3868 + +LEWG +Constrained algorithms should not require output_iterator +https://wg21.link/lwg3868 + + + + +Hewill Kang +- +d:lwg3869 +LWG3869 + +C++23 +Deprecate std::errc constants related to UNIX STREAMS +https://wg21.link/lwg3869 + + + + +Jonathan Wakely +- +d:lwg387 +LWG387 + +CD1 +std::complex over-encapsulated +https://wg21.link/lwg387 + + + + +Gabriel Dos Reis +- +d:lwg3870 +LWG3870 + +C++23 +Remove voidify +https://wg21.link/lwg3870 + + + + +Jonathan Wakely +- +d:lwg3871 +LWG3871 + +C++23 +Adjust note about terminate +https://wg21.link/lwg3871 + + + + +CA +- +d:lwg3872 +LWG3872 + +C++23 +basic_const_iterator should have custom iter_move +https://wg21.link/lwg3872 + + + + +Hewill Kang +- +d:lwg3873 +LWG3873 + +New +join_with_view's const begin is underconstrained +https://wg21.link/lwg3873 + + + + +Hewill Kang +- +d:lwg3874 +LWG3874 + +NAD +Rename __cpp_lib_ranges_to_container to __cpp_lib_ranges_to +https://wg21.link/lwg3874 + + + + +Hewill Kang +- +d:lwg3875 +LWG3875 + +C++23 +std::ranges::repeat_view<T, IntegerClass>::iterator may be ill-formed +https://wg21.link/lwg3875 + + + + +Jiang An +- +d:lwg3876 +LWG3876 + +C++23 +Default constructor of std::layout_XX::mapping misses precondition +https://wg21.link/lwg3876 + + + + +Christian Trott +- +d:lwg3877 +LWG3877 + +C++23 +Incorrect constraints on const-qualified monadic overloads for std::expected +https://wg21.link/lwg3877 + + + + +Sy Brand +- +d:lwg3878 +LWG3878 + +C++23 +import std; should guarantee initialization of standard iostreams objects +https://wg21.link/lwg3878 + + + + +Tim Song +- +d:lwg3879 +LWG3879 + +C++23 +erase_if for flat_{,multi}set is incorrectly specified +https://wg21.link/lwg3879 + + + + +Tim Song +- +d:lwg388 +LWG388 + +NAD +Use of complex as a key in associative containers +https://wg21.link/lwg388 + + + + +Gabriel Dos Reis +- +d:lwg3880 +LWG3880 + +C++23 +Clarify operator+= complexity for {chunk,stride}_view::iterator +https://wg21.link/lwg3880 + + + + +Tim Song +- +d:lwg3881 +LWG3881 + +C++23 +Incorrect formatting of container adapters backed by std::string +https://wg21.link/lwg3881 + + + + +Victor Zverovich +- +d:lwg3882 +LWG3882 + +New +tuple relational operators have confused friendships +https://wg21.link/lwg3882 + + + + +Corentin Jabot +- +d:lwg3883 +LWG3883 + +New +§[support.c.headers.other] Ambiguity in the requirements for includes +https://wg21.link/lwg3883 + + + + +Alex Mills +- +d:lwg3884 +LWG3884 + +WP +flat_foo is missing allocator-extended copy/move constructors +https://wg21.link/lwg3884 + + + + +Arthur O'Dwyer +- +d:lwg3885 +LWG3885 + +WP +'op' should be in [zombie.names] +https://wg21.link/lwg3885 + + + + +Jonathan Wakely +- +d:lwg3886 +LWG3886 + +New +Monad mo' problems +https://wg21.link/lwg3886 + + + + +Casey Carter +- +d:lwg3887 +LWG3887 + +WP +Version macro for allocate_at_least +https://wg21.link/lwg3887 + + + + +Alisdair Meredith +- +d:lwg3888 +LWG3888 + +New +Most ranges uninitialized memory algorithms are underconstrained +https://wg21.link/lwg3888 + + + + +Jiang An +- +d:lwg3889 +LWG3889 + +New +std::(ranges::)destroy_at should destroy array elements in the decreasing index order +https://wg21.link/lwg3889 + + + + +Jiang An +- +d:lwg389 +LWG389 + +CD1 +Const overload of valarray::operator[] returns by value +https://wg21.link/lwg389 + + + + +Gabriel Dos Reis +- +d:lwg3890 +LWG3890 + +New +ABI issue for integer-class types +https://wg21.link/lwg3890 + + + + +Jiang An +- +d:lwg3891 +LWG3891 + +New +LWG 3870 breaks std::expected<cv T, E> +https://wg21.link/lwg3891 + + + + +Jiang An +- +d:lwg3892 +LWG3892 + +WP +Incorrect formatting of nested ranges and tuples +https://wg21.link/lwg3892 + + + + +Victor Zverovich +- +d:lwg3893 +LWG3893 + +WP +LWG 3661 broke atomic<shared_ptr<T>> a; a = nullptr; +https://wg21.link/lwg3893 + + + + +Zachary Wassall +- +d:lwg3894 +LWG3894 + +WP +generator::promise_type::yield_value(ranges::elements_of<Rng, Alloc>) should not be noexcept +https://wg21.link/lwg3894 + + + + +Tim Song +- +d:lwg3895 +LWG3895 + +New +Various relation concepts are missing default values of the second template parameters +https://wg21.link/lwg3895 + + + + +blacktea hamburger +- +d:lwg3896 +LWG3896 + +New +The definition of viewable_range is not quite right +https://wg21.link/lwg3896 + + + + +Hewill Kang +- +d:lwg3897 +LWG3897 + +WP +inout_ptr will not update raw pointer to 0 +https://wg21.link/lwg3897 + + + + +Doug Cook +- +d:lwg3898 +LWG3898 + +New +Possibly unintended preconditions for completion functions of std::barrier +https://wg21.link/lwg3898 + + + + +Jiang An +- +d:lwg3899 +LWG3899 + +New +co_yielding elements of an lvalue generator is unnecessarily inefficient +https://wg21.link/lwg3899 + + + + +Tim Song +- +d:lwg39 +LWG39 + +TC1 +istreambuf_iterator<>::operator++(int) definition garbled +https://wg21.link/lwg39 + + + + +Nathan Myers +- +d:lwg390 +LWG390 + +NAD Editorial +CopyConstructible requirements too strict +https://wg21.link/lwg390 + + + + +Doug Gregor +- +d:lwg3900 +LWG3900 + +New +The allocator_arg_t overloads of generator::promise_type::operator new should not be constrained +https://wg21.link/lwg3900 + + + + +Tim Song +- +d:lwg3901 +LWG3901 + +Tentatively NAD +Is uses-allocator construction of a cv-qualified object type still well-formed after LWG 3870? +https://wg21.link/lwg3901 + + + + +Jiang An +- +d:lwg3902 +LWG3902 + +New +Return type of std::declval<cv void> should be (cv-unqualified) void +https://wg21.link/lwg3902 + + + + +Jiang An +- +d:lwg3903 +LWG3903 + +WP +span destructor is redundantly noexcept +https://wg21.link/lwg3903 + + + + +Ben Craig +- +d:lwg3904 +LWG3904 + +WP +lazy_split_view::outer-iterator's const-converting constructor isn't setting trailing_empty_ +https://wg21.link/lwg3904 + + + + +Patrick Palka +- +d:lwg3905 +LWG3905 + +WP +Type of std::fexcept_t +https://wg21.link/lwg3905 + + + + +Sam Elliott +- +d:lwg3906 +LWG3906 + +New +"Undefined address" is undefined +https://wg21.link/lwg3906 + + + + +Jiang An +- +d:lwg3907 +LWG3907 + +New +Can iterator types of range adaptors and range factories be SCARY? +https://wg21.link/lwg3907 + + + + +Jiang An +- +d:lwg3908 +LWG3908 + +Tentatively NAD +enumerate_view::iterator constructor is explicit +https://wg21.link/lwg3908 + + + + +Jonathan Wakely +- +d:lwg3909 +LWG3909 + +Tentatively NAD +Issues about viewable_range +https://wg21.link/lwg3909 + + + + +Jiang An +- +d:lwg391 +LWG391 + +CD1 +non-member functions specified as const +https://wg21.link/lwg391 + + + + +James Kanze +- +d:lwg3910 +LWG3910 + +New +The effects of including <iostream> on initialization are not yet precisely specified +https://wg21.link/lwg3910 + + + + +Jiang An +- +d:lwg3911 +LWG3911 + +New +unique_ptr's operator* is missing a mandate +https://wg21.link/lwg3911 + + + + +Brian Bi +- +d:lwg3912 +LWG3912 + +WP +enumerate_view::iterator::operator- should be noexcept +https://wg21.link/lwg3912 + + + + +Hewill Kang +- +d:lwg3913 +LWG3913 + +NAD +ranges::const_iterator_t<range R> fails to accept arrays of unknown bound +https://wg21.link/lwg3913 + + + + +Arthur O'Dwyer +- +d:lwg3914 +LWG3914 + +WP +Inconsistent template-head of ranges::enumerate_view +https://wg21.link/lwg3914 + + + + +Johel Ernesto Guerrero Peña +- +d:lwg3915 +LWG3915 + +WP +Redundant paragraph about expression variations +https://wg21.link/lwg3915 + + + + +Johel Ernesto Guerrero Peña +- +d:lwg3916 +LWG3916 + +New +allocator, polymorphic_allocator, and containers should forbid cv-qualified types +https://wg21.link/lwg3916 + + + + +Stephan T. Lavavej +- +d:lwg3917 +LWG3917 + +New +Validity of allocator<void> and possibly polymorphic_allocator<void> should be clarified +https://wg21.link/lwg3917 + + + + +Daniel Krügler +- +d:lwg3918 +LWG3918 + +LEWG +std::uninitialized_move/_n and guaranteed copy elision +https://wg21.link/lwg3918 + + + + +Jiang An +- +d:lwg3919 +LWG3919 + +Ready +enumerate_view may invoke UB for sized common non-forward underlying ranges +https://wg21.link/lwg3919 + + + + +Patrick Palka +- +d:lwg392 +LWG392 + +NAD +'equivalence' for input iterators +https://wg21.link/lwg392 + + + + +Corwin Joy +- +d:lwg3920 +LWG3920 + +New +Bad footnotes claiming external linkage for entities defined as macros +https://wg21.link/lwg3920 + + + + +Alisdair Meredith +- +d:lwg3921 +LWG3921 + +New +Is std::chrono::duration<std::int64_t, std::ratio<INT64_MAX - 1, INT64_MAX>>{40} required to be correctly formatted? +https://wg21.link/lwg3921 + + + + +Jiang An +- +d:lwg3922 +LWG3922 + +New +It's unclear whether numeric_limits can be specialized by users +https://wg21.link/lwg3922 + + + + +Christopher Di Bella +- +d:lwg3923 +LWG3923 + +New +The specification of numeric_limits doesn't clearly distinguish between implementation requirements and user requirements +https://wg21.link/lwg3923 + + + + +Daniel Krügler +- +d:lwg3924 +LWG3924 + +New +Stop token data race avoidance requirements unclear +https://wg21.link/lwg3924 + + + + +Brian Bi +- +d:lwg3925 +LWG3925 + +WP +Concept formattable's definition is incorrect +https://wg21.link/lwg3925 + + + + +Mark de Wever +- +d:lwg3926 +LWG3926 + +New +Which namespace std is the mentioned one? +https://wg21.link/lwg3926 + + + + +jim x +- +d:lwg3927 +LWG3927 + +WP +Unclear preconditions for operator[] for sequence containers +https://wg21.link/lwg3927 + + + + +Ville Voutilainen +- +d:lwg3928 +LWG3928 + +New +Non-top-level namespace posix shouldn't be reserved +https://wg21.link/lwg3928 + + + + +Jiang An +- +d:lwg3929 +LWG3929 + +New +Preconditions for type traits should be Mandates +https://wg21.link/lwg3929 + + + + +Alisdair Meredith +- +d:lwg393 +LWG393 + +NAD Editorial +do_in/do_out operation on state unclear +https://wg21.link/lwg393 + + + + +Alberto Barbati +- +d:lwg3930 +LWG3930 + +Tentatively NAD +Simplify type trait wording +https://wg21.link/lwg3930 + + + + +Alisdair Meredith +- +d:lwg3931 +LWG3931 + +New +Too many paper bump __cpp_lib_ranges +https://wg21.link/lwg3931 + + + + +Jiang An +- +d:lwg3932 +LWG3932 + +New +Expression-equivalence is sometimes unimplementable when passing prvalue expressions to comparison CPOs +https://wg21.link/lwg3932 + + + + +Jiang An +- +d:lwg3933 +LWG3933 + +New +P1467R9 accidentally changed the signatures of certain constructors of std::complex +https://wg21.link/lwg3933 + + + + +Jiang An +- +d:lwg3934 +LWG3934 + +New +std::complex<T>::operator=(const T&) has no specification +https://wg21.link/lwg3934 + + + + +Daniel Krügler +- +d:lwg3935 +LWG3935 + +WP +template<class X> constexpr complex& operator=(const complex<X>&) has no specification +https://wg21.link/lwg3935 + + + + +Daniel Krügler +- +d:lwg3936 +LWG3936 + +Tentatively NAD +Are implementations allowed to deprecate components not in [depr]? +https://wg21.link/lwg3936 + + + + +Jiang An +- +d:lwg3937 +LWG3937 + +New +I/O manipulators should be specified in terms of base classes +https://wg21.link/lwg3937 + + + + +Jonathan Wakely +- +d:lwg3938 +LWG3938 + +WP +Cannot use std::expected monadic ops with move-only error_type +https://wg21.link/lwg3938 + + + + +Jonathan Wakely +- +d:lwg3939 +LWG3939 + +New +§[format.string.std] char is not formatted as a character when charT is wchar_t +https://wg21.link/lwg3939 + + + + +S. B. Tam +- +d:lwg394 +LWG394 + +NAD +behavior of formatted output on failure +https://wg21.link/lwg394 + + + + +Martin Sebor +- +d:lwg3940 +LWG3940 + +WP +std::expected<void, E>::value() also needs E to be copy constructible +https://wg21.link/lwg3940 + + + + +Jiang An +- +d:lwg3941 +LWG3941 + +SG1 +§[atomics.order] inadvertently prohibits widespread implementation techniques +https://wg21.link/lwg3941 + + + + +Hans Boehm +- +d:lwg3942 +LWG3942 + +New +Inconsistent use of const char_type& in standard specializations of std::char_traits +https://wg21.link/lwg3942 + + + + +Jiang An +- +d:lwg3943 +LWG3943 + +New +Clarify lifetime requirements of BasicFormatter and Formatter +https://wg21.link/lwg3943 + + + + +Mark de Wever +- +d:lwg3944 +LWG3944 + +SG16 +Formatters converting sequences of char to sequences of wchar_t +https://wg21.link/lwg3944 + + + + +Mark de Wever +- +d:lwg3945 +LWG3945 + +New +§[cstdarg.syn] 'Compatible types' are undefined +https://wg21.link/lwg3945 + + + + +Lukas Barth +- +d:lwg3946 +LWG3946 + +WP +The definition of const_iterator_t should be reworked +https://wg21.link/lwg3946 + + + + +Christopher Di Bella +- +d:lwg3947 +LWG3947 + +WP +Unexpected constraints on adjacent_transform_view::base() +https://wg21.link/lwg3947 + + + + +Bo Persson +- +d:lwg3948 +LWG3948 + +WP +possibly-const-range and as-const-pointer should be noexcept +https://wg21.link/lwg3948 + + + + +Jiang An +- +d:lwg3949 +LWG3949 + +WP +std::atomic<bool>'s trivial destructor dropped in C++17 spec wording +https://wg21.link/lwg3949 + + + + +Jeremy Hurwitz +- +d:lwg395 +LWG395 + +CD1 +inconsistencies in the definitions of rand() and random_shuffle() +https://wg21.link/lwg395 + + + + +James Kanze +- +d:lwg3950 +LWG3950 + +Ready +std::basic_string_view comparison operators are overspecified +https://wg21.link/lwg3950 + + + + +Giuseppe D'Angelo +- +d:lwg3951 +LWG3951 + +WP +§[expected.object.swap]: Using value() instead of has_value() +https://wg21.link/lwg3951 + + + + +Ben Craig +- +d:lwg3952 +LWG3952 + +New +iter_common_reference_t does not conform to the definition of indirectly_readable +https://wg21.link/lwg3952 + + + + +Hewill Kang +- +d:lwg3953 +LWG3953 + +WP +iter_move for common_iterator and counted_iterator should return decltype(auto) +https://wg21.link/lwg3953 + + + + +Hewill Kang +- +d:lwg3954 +LWG3954 + +New +Feature-test macros in C headers (<stddef.h> etc.) +https://wg21.link/lwg3954 + + + + +Jiang An +- +d:lwg3955 +LWG3955 + +New +Add noexcept to several repeat_view[::iterator] member functions +https://wg21.link/lwg3955 + + + + +Hewill Kang +- +d:lwg3956 +LWG3956 + +New +chrono::parse uses from_stream as a customization point +https://wg21.link/lwg3956 + + + + +Jonathan Wakely +- +d:lwg3957 +LWG3957 + +WP +§[container.alloc.reqmts] The value category of v should be claimed +https://wg21.link/lwg3957 + + + + +jim x +- +d:lwg3958 +LWG3958 + +Tentatively NAD +ranges::to should prioritize the "reserve" branch +https://wg21.link/lwg3958 + + + + +Hewill Kang +- +d:lwg3959 +LWG3959 + +New +Should the comparator of std::flat_map/std::flat_multimap be copied twice in some operations? +https://wg21.link/lwg3959 + + + + +Jiang An +- +d:lwg396 +LWG396 + +CD1 +what are characters zero and one +https://wg21.link/lwg396 + + + + +Martin Sebor +- +d:lwg3960 +LWG3960 + +New +How does chrono::parse handle duplicated data? +https://wg21.link/lwg3960 + + + + +Jonathan Wakely +- +d:lwg3961 +LWG3961 + +New +Does chrono::parse check format strings? +https://wg21.link/lwg3961 + + + + +Jonathan Wakely +- +d:lwg3962 +LWG3962 + +New +What is the "decimal precision of the input"? +https://wg21.link/lwg3962 + + + + +Jonathan Wakely +- +d:lwg3963 +LWG3963 + +New +Different std::flat_map/std::flat_multimap specializations should be able to share same nested classes +https://wg21.link/lwg3963 + + + + +Jiang An +- +d:lwg3964 +LWG3964 + +New +std::atan2 and std::pow overloads that take two std::valarray parameters should require the arguments to have the same length +https://wg21.link/lwg3964 + + + + +Jiang An +- +d:lwg3965 +LWG3965 + +WP +Incorrect example in [format.string.escaped] p3 for formatting of combining characters +https://wg21.link/lwg3965 + + + + +Tom Honermann +- +d:lwg3966 +LWG3966 + +New +The value_type and reference members of std::flat_(multi)map::(const_)iterator are unclear +https://wg21.link/lwg3966 + + + + +Jiang An +- +d:lwg3967 +LWG3967 + +New +The specification for std::is_nothrow_* traits may be ambiguous in some cases involving noexcept(false) +https://wg21.link/lwg3967 + + + + +Jiang An +- +d:lwg3968 +LWG3968 + +New +std::endian::native value should be more specific about object representations +https://wg21.link/lwg3968 + + + + +Brian Bi +- +d:lwg3969 +LWG3969 + +New +std::ranges::fold_left_first_with_iter should be more ADL-proof +https://wg21.link/lwg3969 + + + + +Jiang An +- +d:lwg397 +LWG397 + +NAD Editorial +ostream::sentry dtor throws exceptions +https://wg21.link/lwg397 + + + + +Martin Sebor +- +d:lwg3970 +LWG3970 + +WP +§[mdspan.syn] Missing definition of full_extent_t and full_extent +https://wg21.link/lwg3970 + + + + +S. B. Tam +- +d:lwg3971 +LWG3971 + +SG9 +Join ranges of rvalue references with ranges of prvalues +https://wg21.link/lwg3971 + + + + +Hewill Kang +- +d:lwg3972 +LWG3972 + +New +Issues with join_with_view::iterator's iter_swap +https://wg21.link/lwg3972 + + + + +Hewill Kang +- +d:lwg3973 +LWG3973 + +WP +Monadic operations should be ADL-proof +https://wg21.link/lwg3973 + + + + +Jiang An +- +d:lwg3974 +LWG3974 + +WP +mdspan::operator[] should not copy OtherIndexTypes +https://wg21.link/lwg3974 + + + + +Casey Carter +- +d:lwg3975 +LWG3975 + +Ready +Specializations of basic_format_context should not be permitted +https://wg21.link/lwg3975 + + + + +Brian Bi +- +d:lwg3976 +LWG3976 + +New +What does it mean for a type to be "allocator aware"? +https://wg21.link/lwg3976 + + + + +Alisdair Meredith +- +d:lwg3977 +LWG3977 + +New +constexpr and noexcept for operators for bitmask types +https://wg21.link/lwg3977 + + + + +Jiang An +- +d:lwg3978 +LWG3978 + +New +The "no effect" requirement for std::ignore is unimplementable for volatile bit-fields +https://wg21.link/lwg3978 + + + + +Jiang An +- +d:lwg3979 +LWG3979 + +New +Should we reject std::bind_front<42>() and its friends? +https://wg21.link/lwg3979 + + + + +Jiang An +- +d:lwg398 +LWG398 + +NAD +effects of end-of-file on unformatted input functions +https://wg21.link/lwg398 + + + + +Martin Sebor +- +d:lwg3980 +LWG3980 + +Tentatively NAD +The read exclusive ownership of an atomic read-modify-write operation and whether its read and write are two operations are unclear +https://wg21.link/lwg3980 + + + + +jim x +- +d:lwg3981 +LWG3981 + +Tentatively NAD +Range adaptor closure object is underspecified for its return type +https://wg21.link/lwg3981 + + + + +Hewill Kang +- +d:lwg3982 +LWG3982 + +Tentatively NAD +is-derived-from-view-interface should require that T is derived from view_interface<T> +https://wg21.link/lwg3982 + + + + +Hewill Kang +- +d:lwg3983 +LWG3983 + +New +ranges::to adaptors are underconstrained +https://wg21.link/lwg3983 + + + + +Hewill Kang +- +d:lwg3984 +LWG3984 + +Ready +ranges::to's recursion branch may be ill-formed +https://wg21.link/lwg3984 + + + + +Hewill Kang +- +d:lwg3985 +LWG3985 + +New +ranges::to should Mandates C not to be view +https://wg21.link/lwg3985 + + + + +Hewill Kang +- +d:lwg3986 +LWG3986 + +New +basic_const_iterator doesn't work with optional +https://wg21.link/lwg3986 + + + + +Hewill Kang +- +d:lwg3987 +LWG3987 + +WP +Including <flat_foo> doesn't provide std::begin/end +https://wg21.link/lwg3987 + + + + +Hewill Kang +- +d:lwg3988 +LWG3988 + +Ready +Should as_const_view and basic_const_iterator provide base()? +https://wg21.link/lwg3988 + + + + +Hewill Kang +- +d:lwg3989 +LWG3989 + +New +The whole range for an iterator obtained from a std::span or std::basic_string_view is not clear +https://wg21.link/lwg3989 + + + + +Jiang An +- +d:lwg399 +LWG399 + +NAD +volations of unformatted input function requirements +https://wg21.link/lwg399 + + + + +Martin Sebor +- +d:lwg3990 +LWG3990 + +WP +Program-defined specializations of std::tuple and std::variant can't be properly supported +https://wg21.link/lwg3990 + + + + +Jiang An +- +d:lwg3991 +LWG3991 + +New +variant's move assignment should not be guaranteed to produce a valueless by exception state +https://wg21.link/lwg3991 + + + + +Brian Bi +- +d:lwg3992 +LWG3992 + +New +basic_stringbuf::str()&& should enforce 𝒪(1) +https://wg21.link/lwg3992 + + + + +Peter Sommerlad +- +d:lwg3993 +LWG3993 + +New +The parse function of a BasicFormatter type needs to be constexpr +https://wg21.link/lwg3993 + + + + +Jiang An +- +d:lwg3994 +LWG3994 + +New +adaptor(args...)(r) is not equivalent to std::bind_back(adaptor, args...)(r) +https://wg21.link/lwg3994 + + + + +Hewill Kang +- +d:lwg3995 +LWG3995 + +New +Issue with custom index conversion in <mdspan> +https://wg21.link/lwg3995 + + + + +Hewill Kang +- +d:lwg3996 +LWG3996 + +Tentatively NAD +projected<I, identity> should just be I +https://wg21.link/lwg3996 + + + + +Hewill Kang +- +d:lwg3997 +LWG3997 + +New +std::formatter specializations should be consistently restricted to supported character types +https://wg21.link/lwg3997 + + + + +Jiang An +- +d:lwg3998 +LWG3998 + +New +Constants in std::regex_constants should be allowed to be enumerators +https://wg21.link/lwg3998 + + + + +Jiang An +- +d:lwg3999 +LWG3999 + +New +P0439R0 changed the value category of memory order constants +https://wg21.link/lwg3999 + + + + +Jiang An +- +d:lwg4 +LWG4 + +NAD +basic_string size_type and difference_type should be implementation defined +https://wg21.link/lwg4 + + + + +Beman Dawes +- +d:lwg40 +LWG40 + +TC1 +Meaningless normative paragraph in examples +https://wg21.link/lwg40 + + + + +Nathan Myers +- +d:lwg400 +LWG400 + +CD1 +redundant type cast in lib.allocator.members +https://wg21.link/lwg400 + + + + +Markus Mauhart +- +d:lwg4000 +LWG4000 + +New +flat_map::insert_range's Effects is not quite right +https://wg21.link/lwg4000 + + + + +Hewill Kang +- +d:lwg4001 +LWG4001 + +WP +iota_view should provide empty +https://wg21.link/lwg4001 + + + + +Hewill Kang +- +d:lwg4002 +LWG4002 + +New +The definition of iota_view::iterator::iterator_concept should be improved +https://wg21.link/lwg4002 + + + + +Hewill Kang +- +d:lwg4003 +LWG4003 + +Tentatively NAD +view_interface::back is overconstrained +https://wg21.link/lwg4003 + + + + +Hewill Kang +- +d:lwg4004 +LWG4004 + +New +The load and store operation in §[atomics.order] p1 is ambiguous +https://wg21.link/lwg4004 + + + + +jim x +- +d:lwg4005 +LWG4005 + +New +"Required behavior" too narrowly defined +https://wg21.link/lwg4005 + + + + +Eric Niebler +- +d:lwg4006 +LWG4006 + +New +chunk_view::outer-iterator::value_type should provide empty +https://wg21.link/lwg4006 + + + + +Hewill Kang +- +d:lwg4007 +LWG4007 + +New +Mystic prohibition of calling a volatile-qualified perfect forwarding call wrapper +https://wg21.link/lwg4007 + + + + +Jiang An +- +d:lwg4008 +LWG4008 + +New +§[range.utility.conv.to] ranges::to may cause infinite recursion if range_value_t<C> is a non-move-constructible range +https://wg21.link/lwg4008 + + + + +S. B. Tam +- +d:lwg4009 +LWG4009 + +New +drop_view::begin const may have 𝒪(n) complexity +https://wg21.link/lwg4009 + + + + +Hewill Kang +- +d:lwg401 +LWG401 + +CD1 +incorrect type casts in table 32 in lib.allocator.requirements +https://wg21.link/lwg401 + + + + +Markus Mauhart +- +d:lwg4010 +LWG4010 + +New +subrange::advance should be improved +https://wg21.link/lwg4010 + + + + +Hewill Kang +- +d:lwg4011 +LWG4011 + +New +"Effects: Equivalent to return" in [span.elem] +https://wg21.link/lwg4011 + + + + +Arthur O'Dwyer +- +d:lwg4012 +LWG4012 + +New +common_view::begin/end are missing the simple-view check +https://wg21.link/lwg4012 + + + + +Hewill Kang +- +d:lwg4013 +LWG4013 + +New +lazy_split_view::outer-iterator::value_type should not provide default constructor +https://wg21.link/lwg4013 + + + + +Hewill Kang +- +d:lwg4014 +LWG4014 + +New +LWG 3809 changes behavior of some existing std::subtract_with_carry_engine code +https://wg21.link/lwg4014 + + + + +Matt Stephanson +- +d:lwg4015 +LWG4015 + +New +LWG 3973 broke const overloads of std::optional monadic operations +https://wg21.link/lwg4015 + + + + +Jonathan Wakely +- +d:lwg4016 +LWG4016 + +New +container-insertable checks do not match what container-inserter does +https://wg21.link/lwg4016 + + + + +Jonathan Wakely +- +d:lwg4017 +LWG4017 + +New +Behavior of std::views::split on an empty range +https://wg21.link/lwg4017 + + + + +David Stone +- +d:lwg4018 +LWG4018 + +New +ranges::to's copy branch is underconstrained +https://wg21.link/lwg4018 + + + + +Hewill Kang +- +d:lwg4019 +LWG4019 + +New +Reversing an infinite range leads to an infinite loop +https://wg21.link/lwg4019 + + + + +Barry Revzin +- +d:lwg402 +LWG402 -New -adjacent_view, adjacent_transform_view and slide_view missing base accessor -https://wg21.link/lwg3848 +CD1 +wrong new expression in [some_]allocator::construct +https://wg21.link/lwg402 -Hewill Kang +Markus Mauhart - -d:lwg3849 -LWG3849 +d:lwg4020 +LWG4020 New -cartesian_product_view::iterator's default constructor is overconstrained -https://wg21.link/lwg3849 +extents::index-cast weirdness +https://wg21.link/lwg4020 -Hewill Kang +Casey Carter - -d:lwg385 -LWG385 +d:lwg4021 +LWG4021 -NAD -Does call by value imply the CopyConstructible requirement? -https://wg21.link/lwg385 +New +mdspan::is_always_meow() should be noexcept +https://wg21.link/lwg4021 -Matt Austern +Stephan T. Lavavej - -d:lwg3850 -LWG3850 +d:lwg4022 +LWG4022 New -views::as_const on empty_view<T> should return empty_view<const T> -https://wg21.link/lwg3850 +Ambiguity in the formatting of negative years with format specifier %C +https://wg21.link/lwg4022 -Hewill Kang +Jiang An - -d:lwg3851 -LWG3851 +d:lwg4023 +LWG4023 New -chunk_view::inner-iterator missing custom iter_move and iter_swap -https://wg21.link/lwg3851 +Preconditions of std::basic_streambuf::setg/setp +https://wg21.link/lwg4023 -Hewill Kang +Jiang An - -d:lwg3852 -LWG3852 +d:lwg4024 +LWG4024 New -join_with_view::iterator's iter_move and iter_swap should be conditionally noexcept -https://wg21.link/lwg3852 +Underspecified destruction of objects created in std::make_shared_for_overwrite/std::allocate_shared_for_overwrite +https://wg21.link/lwg4024 -Hewill Kang +Jiang An - -d:lwg3853 -LWG3853 +d:lwg4025 +LWG4025 New -basic_const_iterator<volatile int*>::operator-> is ill-formed -https://wg21.link/lwg3853 +Move assignment operator of std::expected<cv void, E> should not be conditionally deleted +https://wg21.link/lwg4025 -Hewill Kang +Jiang An - -d:lwg3854 -LWG3854 +d:lwg4026 +LWG4026 New -§[res.on.exception.handling]/3 should not be applied to all standard library types -https://wg21.link/lwg3854 +Assignment operators of std::expected should propagate triviality +https://wg21.link/lwg4026 Jiang An - -d:lwg3855 -LWG3855 +d:lwg4027 +LWG4027 New -tiny-range is not quite right -https://wg21.link/lwg3855 +possibly-const-range should prefer returning const R& +https://wg21.link/lwg4027 Hewill Kang - -d:lwg3856 -LWG3856 +d:lwg4028 +LWG4028 New -Unclear which conversion specifiers are valid for each chrono type -https://wg21.link/lwg3856 +std::is_(nothrow_)convertible should be reworded to avoid dependence on the return statement +https://wg21.link/lwg4028 -Tam S. B. +Jiang An - -d:lwg3857 -LWG3857 +d:lwg4029 +LWG4029 New -basic_string_view should allow explicit conversion when only traits vary -https://wg21.link/lwg3857 +basic_string accidentally fails to meet the reversible container requirements +https://wg21.link/lwg4029 -Casey Carter +Jan Schultke - -d:lwg386 -LWG386 +d:lwg403 +LWG403 CD1 -Reverse iterator's operator[] has impossible return type -https://wg21.link/lwg386 +basic_string::swap should not throw exceptions +https://wg21.link/lwg403 -Matt Austern +Beman Dawes - -d:lwg387 -LWG387 +d:lwg4030 +LWG4030 -CD1 -std::complex over-encapsulated -https://wg21.link/lwg387 +New +Clarify whether arithmetic expressions in [numeric.sat.func] are mathematical or C++ +https://wg21.link/lwg4030 -Gabriel Dos Reis +Thomas Köppe - -d:lwg388 -LWG388 +d:lwg4031 +LWG4031 -NAD -Use of complex as a key in associative containers -https://wg21.link/lwg388 +New +bad_expected_access<void> member functions should be noexcept +https://wg21.link/lwg4031 -Gabriel Dos Reis +Cassio Neri - -d:lwg389 -LWG389 +d:lwg4032 +LWG4032 -CD1 -Const overload of valarray::operator[] returns by value -https://wg21.link/lwg389 +New +Possibly invalid types in the constraints of constructors of std::shared_ptr +https://wg21.link/lwg4032 -Gabriel Dos Reis +Jiang An - -d:lwg39 -LWG39 +d:lwg4033 +LWG4033 -TC1 -istreambuf_iterator<>::operator++(int) definition garbled -https://wg21.link/lwg39 +New +§[macro.names] defining macros after importing the standard library +https://wg21.link/lwg4033 -Nathan Myers +Alisdair Meredith - -d:lwg390 -LWG390 +d:lwg4034 +LWG4034 -NAD Editorial -CopyConstructible requirements too strict -https://wg21.link/lwg390 +New +Clarify specification of std::min and std::max +https://wg21.link/lwg4034 -Doug Gregor +Jan Schultke - -d:lwg391 -LWG391 +d:lwg4035 +LWG4035 -CD1 -non-member functions specified as const -https://wg21.link/lwg391 +New +single_view should provide empty +https://wg21.link/lwg4035 -James Kanze +Hewill Kang - -d:lwg392 -LWG392 +d:lwg4036 +LWG4036 -NAD -'equivalence' for input iterators -https://wg21.link/lwg392 +New +__alignof_is_defined is only implicitly specified in C++ and not yet deprecated +https://wg21.link/lwg4036 -Corwin Joy +Jiang An - -d:lwg393 -LWG393 +d:lwg4037 +LWG4037 -NAD Editorial -do_in/do_out operation on state unclear -https://wg21.link/lwg393 +New +Static data members of ctype_base are not yet required to be usable in constant expressions +https://wg21.link/lwg4037 -Alberto Barbati +Jiang An - -d:lwg394 -LWG394 +d:lwg4038 +LWG4038 -NAD -behavior of formatted output on failure -https://wg21.link/lwg394 +New +std::text_encoding::aliases_view should have constexpr iterators +https://wg21.link/lwg4038 -Martin Sebor +Jonathan Wakely - -d:lwg395 -LWG395 +d:lwg4039 +LWG4039 -CD1 -inconsistencies in the definitions of rand() and random_shuffle() -https://wg21.link/lwg395 +New +§[ostream.formatted.print]: Inappropriate usage of badbit in definition of vprint_unicode/vprint_nonunicode +https://wg21.link/lwg4039 -James Kanze +Jan Kokemüller - -d:lwg396 -LWG396 +d:lwg404 +LWG404 CD1 -what are characters zero and one -https://wg21.link/lwg396 +May a replacement allocation function be declared inline? +https://wg21.link/lwg404 -Martin Sebor +Matt Austern - -d:lwg397 -LWG397 +d:lwg4040 +LWG4040 -NAD Editorial -ostream::sentry dtor throws exceptions -https://wg21.link/lwg397 +New +Contradictory specification of std::tuple_size +https://wg21.link/lwg4040 -Martin Sebor +Jiang An - -d:lwg398 -LWG398 +d:lwg4041 +LWG4041 -NAD -effects of end-of-file on unformatted input functions -https://wg21.link/lwg398 +New +The requirements on literal type in [concept.swappable] should be removed +https://wg21.link/lwg4041 -Martin Sebor +Jiang An - -d:lwg399 -LWG399 +d:lwg4042 +LWG4042 -NAD -volations of unformatted input function requirements -https://wg21.link/lwg399 +New +std::print should permit an efficient implementation +https://wg21.link/lwg4042 -Martin Sebor +Victor Zverovich - -d:lwg4 -LWG4 +d:lwg4043 +LWG4043 -NAD -basic_string size_type and difference_type should be implementation defined -https://wg21.link/lwg4 +New +"ASCII" is not a registered character encoding +https://wg21.link/lwg4043 -Beman Dawes +Jonathan Wakely - -d:lwg40 -LWG40 +d:lwg4044 +LWG4044 -TC1 -Meaningless normative paragraph in examples -https://wg21.link/lwg40 +New +Confusing requirements for std::print on POSIX platforms +https://wg21.link/lwg4044 -Nathan Myers +Jonathan Wakely - -d:lwg400 -LWG400 +d:lwg4045 +LWG4045 -CD1 -redundant type cast in lib.allocator.members -https://wg21.link/lwg400 +New +tuple can create dangling references from tuple-like +https://wg21.link/lwg4045 -Markus Mauhart +Jonathan Wakely - -d:lwg401 -LWG401 +d:lwg4046 +LWG4046 -CD1 -incorrect type casts in table 32 in lib.allocator.requirements -https://wg21.link/lwg401 +New +Effects of inserting into or erasing from flat container adaptors when an exception is thrown need to be more permissive +https://wg21.link/lwg4046 -Markus Mauhart +Jiang An - -d:lwg402 -LWG402 +d:lwg4047 +LWG4047 -CD1 -wrong new expression in [some_]allocator::construct -https://wg21.link/lwg402 +New +Explicitly specifying template arguments for std::swap should not be supported +https://wg21.link/lwg4047 -Markus Mauhart +Jiang An - -d:lwg403 -LWG403 +d:lwg4048 +LWG4048 -CD1 -basic_string::swap should not throw exceptions -https://wg21.link/lwg403 +New +Inconsistent preconditions for transparent insertion of std::flat_map/std::flat_set +https://wg21.link/lwg4048 -Beman Dawes +Jiang An - -d:lwg404 -LWG404 +d:lwg4049 +LWG4049 -CD1 -May a replacement allocation function be declared inline? -https://wg21.link/lwg404 +New +C <foo.h> headers not in freestanding +https://wg21.link/lwg4049 -Matt Austern +Ben Craig - d:lwg405 LWG405 @@ -32650,6 +34954,18 @@ https://wg21.link/lwg405 Ray Lischner - +d:lwg4050 +LWG4050 + +New +Should views::iota(0) | views::take(5) be views::iota(0, 5)? +https://wg21.link/lwg4050 + + + + +Hewill Kang +- d:lwg406 LWG406 @@ -37232,8 +39548,7 @@ https://wg21.link/lwg75 -Matt -Austern +Matt Austern - d:lwg750 LWG750 @@ -37875,7 +40190,7 @@ d:lwg799 LWG799 NAD -[tr1] [tr.rand.eng.mers] and [rand.eng.mers] +Mersenne twister equality overspecified https://wg21.link/lwg799 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ma.data b/bikeshed/spec-data/readonly/biblio/biblio-ma.data index 44382c013b..26b3960366 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ma.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ma.data @@ -1,6 +1,6 @@ d:magnetometer magnetometer -7 December 2021 +15 May 2024 WD Magnetometer https://www.w3.org/TR/magnetometer/ @@ -153,10 +153,112 @@ https://www.w3.org/TR/2021/WD-magnetometer-20211207/ Anssi Kostiainen Rijubrata Bhaumik +- +d:magnetometer-20230130 +magnetometer-20230130 +30 January 2023 +WD +Magnetometer +https://www.w3.org/TR/2023/WD-magnetometer-20230130/ +https://www.w3.org/TR/2023/WD-magnetometer-20230130/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:magnetometer-20231024 +magnetometer-20231024 +24 October 2023 +WD +Magnetometer +https://www.w3.org/TR/2023/WD-magnetometer-20231024/ +https://www.w3.org/TR/2023/WD-magnetometer-20231024/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:magnetometer-20231025 +magnetometer-20231025 +25 October 2023 +WD +Magnetometer +https://www.w3.org/TR/2023/WD-magnetometer-20231025/ +https://www.w3.org/TR/2023/WD-magnetometer-20231025/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:magnetometer-20231026 +magnetometer-20231026 +26 October 2023 +WD +Magnetometer +https://www.w3.org/TR/2023/WD-magnetometer-20231026/ +https://www.w3.org/TR/2023/WD-magnetometer-20231026/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:magnetometer-20231127 +magnetometer-20231127 +27 November 2023 +WD +Magnetometer +https://www.w3.org/TR/2023/WD-magnetometer-20231127/ +https://www.w3.org/TR/2023/WD-magnetometer-20231127/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:magnetometer-20240105 +magnetometer-20240105 +5 January 2024 +WD +Magnetometer +https://www.w3.org/TR/2024/WD-magnetometer-20240105/ +https://www.w3.org/TR/2024/WD-magnetometer-20240105/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:magnetometer-20240515 +magnetometer-20240515 +15 May 2024 +WD +Magnetometer +https://www.w3.org/TR/2024/WD-magnetometer-20240515/ +https://www.w3.org/TR/2024/WD-magnetometer-20240515/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:managed-configuration +MANAGED-CONFIGURATION + +Draft Community Group Report +Managed Configuration API +https://wicg.github.io/WebApiDevice/managed_config/ + + + + - d:manifest-app-info manifest-app-info -25 October 2022 +21 August 2023 NOTE Web App Manifest - Application Information https://www.w3.org/TR/manifest-app-info/ @@ -260,6 +362,30 @@ https://www.w3.org/TR/2022/NOTE-manifest-app-info-20221025/ +Aaron Gustafson +- +d:manifest-app-info-20230420 +manifest-app-info-20230420 +20 April 2023 +NOTE +Web App Manifest - Application Information +https://www.w3.org/TR/2023/NOTE-manifest-app-info-20230420/ +https://www.w3.org/TR/2023/NOTE-manifest-app-info-20230420/ + + + +Aaron Gustafson +- +d:manifest-app-info-20230821 +manifest-app-info-20230821 +21 August 2023 +NOTE +Web App Manifest - Application Information +https://www.w3.org/TR/2023/NOTE-manifest-app-info-20230821/ +https://www.w3.org/TR/2023/NOTE-manifest-app-info-20230821/ + + + Aaron Gustafson - d:manifest-incubations @@ -289,9 +415,9 @@ Joan Masó - d:mathml MathML -7 July 1999 +7 March 2023 REC -Mathematical Markup Language (MathML) 1.01 Specification +Mathematical Markup Language (MathML™) 1.01 Specification https://www.w3.org/TR/REC-MathML/ @@ -304,7 +430,7 @@ d:mathml-19970515 MathML-19970515 15 May 1997 WD -Mathematical Markup Language (MathML) 1.01 Specification +Mathematical Markup Language (MathML™) 1.01 Specification https://www.w3.org/pub/WWW/TR/WD-math-970515 https://www.w3.org/pub/WWW/TR/WD-math-970515 @@ -317,7 +443,7 @@ d:mathml-19970710 MathML-19970710 10 July 1997 WD -Mathematical Markup Language (MathML) 1.01 Specification +Mathematical Markup Language (MathML™) 1.01 Specification https://www.w3.org/TR/WD-math-970710 https://www.w3.org/TR/WD-math-970710 @@ -330,7 +456,7 @@ d:mathml-19980106 MathML-19980106 6 January 1998 WD -Mathematical Markup Language (MathML) 1.01 Specification +Mathematical Markup Language (MathML™) 1.01 Specification https://www.w3.org/TR/WD-math-980106 https://www.w3.org/TR/WD-math-980106 @@ -343,7 +469,7 @@ d:mathml-19980224 MathML-19980224 24 February 1998 PR -Mathematical Markup Language (MathML) 1.01 Specification +Mathematical Markup Language (MathML™) 1.01 Specification https://www.w3.org/TR/1998/PR-math-19980224 https://www.w3.org/TR/1998/PR-math-19980224 @@ -377,6 +503,30 @@ https://www.w3.org/1999/07/REC-MathML-19990707/ Patrick D F Ion Robert R Miner +- +d:mathml-20230307 +MathML-20230307 +7 March 2023 +REC +Mathematical Markup Language (MathML™) 1.01 Specification +https://www.w3.org/TR/2023/SPSD-MathML-20230307/ +https://www.w3.org/TR/2023/SPSD-MathML-20230307/ + + + +Patrick D F Ion +Robert R Miner +- +d:mathml-aam +MATHML-AAM + +Editor's Draft +MathML Accessibility API Mappings 1.0 +https://w3c.github.io/mathml-aam/ + + + + - d:mathml-bvar mathml-bvar @@ -406,7 +556,7 @@ Michael Kohlhase - d:mathml-core mathml-core -4 May 2022 +27 November 2023 WD MathML Core https://www.w3.org/TR/mathml-core/ @@ -440,6 +590,19 @@ https://www.w3.org/TR/2022/WD-mathml-core-20220504/ +David Carlisle +Frédéric Wang +- +d:mathml-core-20231127 +mathml-core-20231127 +27 November 2023 +WD +MathML Core +https://www.w3.org/TR/2023/WD-mathml-core-20231127/ +https://www.w3.org/TR/2023/WD-mathml-core-20231127/ + + + David Carlisle Frédéric Wang - @@ -667,7 +830,7 @@ Stan Devitt - d:mathml2 MathML2 -21 October 2003 +7 March 2023 REC Mathematical Markup Language (MathML) Version 2.0 (Second Edition) https://www.w3.org/TR/MathML2/ @@ -839,6 +1002,21 @@ https://www.w3.org/TR/2003/REC-MathML2-20031021/ https://www.w3.org/TR/2003/REC-MathML2-20031021/ +1 +David Carlisle +Patrick D F Ion +Robert R Miner +Nico Poppelier +- +d:mathml2-20230307 +MathML2-20230307 +7 March 2023 +REC +Mathematical Markup Language (MathML) Version 2.0 (Second Edition) +https://www.w3.org/TR/2023/SPSD-MathML2-20230307/ +https://www.w3.org/TR/2023/SPSD-MathML2-20230307/ + + 1 David Carlisle Patrick D F Ion @@ -1117,18 +1295,17 @@ https://matroska.org/technical/specs/index.html - d:maturity-model maturity-model -6 September 2022 +18 June 2024 NOTE -W3C Accessibility Maturity Model +Accessibility Maturity Model https://www.w3.org/TR/maturity-model/ https://w3c.github.io/maturity-model/ -Sheri Byrne-Haber David Fazio +Charles LaPierre Janina Sajka -Ruoxi Ran - d:maturity-model-20220906 maturity-model-20220906 @@ -1145,3 +1322,46 @@ David Fazio Janina Sajka Ruoxi Ran - +d:maturity-model-20230824 +maturity-model-20230824 +24 August 2023 +NOTE +W3C Accessibility Maturity Model +https://www.w3.org/TR/2023/DNOTE-maturity-model-20230824/ +https://www.w3.org/TR/2023/DNOTE-maturity-model-20230824/ + + + +Sheri Byrne-Haber +David Fazio +Charles LaPierre +Janina Sajka +- +d:maturity-model-20231215 +maturity-model-20231215 +15 December 2023 +NOTE +Accessibility Maturity Model +https://www.w3.org/TR/2023/DNOTE-maturity-model-20231215/ +https://www.w3.org/TR/2023/DNOTE-maturity-model-20231215/ + + + +David Fazio +Charles LaPierre +Janina Sajka +- +d:maturity-model-20240618 +maturity-model-20240618 +18 June 2024 +NOTE +Accessibility Maturity Model +https://www.w3.org/TR/2024/DNOTE-maturity-model-20240618/ +https://www.w3.org/TR/2024/DNOTE-maturity-model-20240618/ + + + +David Fazio +Charles LaPierre +Janina Sajka +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-me.data b/bikeshed/spec-data/readonly/biblio/biblio-me.data index 03c59d7f9f..51201ba444 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-me.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-me.data @@ -115,7 +115,7 @@ Véronique Malaisé - d:media-capabilities media-capabilities -17 November 2022 +8 August 2024 WD Media Capabilities https://www.w3.org/TR/media-capabilities/ @@ -124,7 +124,6 @@ https://w3c.github.io/media-capabilities/ Jean-Yves Avenard -Will Cassella - d:media-capabilities-20200130 media-capabilities-20200130 @@ -223,6 +222,66 @@ https://www.w3.org/TR/2022/WD-media-capabilities-20221117/ Jean-Yves Avenard Will Cassella - +d:media-capabilities-20240212 +media-capabilities-20240212 +12 February 2024 +WD +Media Capabilities +https://www.w3.org/TR/2024/WD-media-capabilities-20240212/ +https://www.w3.org/TR/2024/WD-media-capabilities-20240212/ + + + +Jean-Yves Avenard +- +d:media-capabilities-20240704 +media-capabilities-20240704 +4 July 2024 +WD +Media Capabilities +https://www.w3.org/TR/2024/WD-media-capabilities-20240704/ +https://www.w3.org/TR/2024/WD-media-capabilities-20240704/ + + + +Jean-Yves Avenard +- +d:media-capabilities-20240711 +media-capabilities-20240711 +11 July 2024 +WD +Media Capabilities +https://www.w3.org/TR/2024/WD-media-capabilities-20240711/ +https://www.w3.org/TR/2024/WD-media-capabilities-20240711/ + + + +Jean-Yves Avenard +- +d:media-capabilities-20240718 +media-capabilities-20240718 +18 July 2024 +WD +Media Capabilities +https://www.w3.org/TR/2024/WD-media-capabilities-20240718/ +https://www.w3.org/TR/2024/WD-media-capabilities-20240718/ + + + +Jean-Yves Avenard +- +d:media-capabilities-20240808 +media-capabilities-20240808 +8 August 2024 +WD +Media Capabilities +https://www.w3.org/TR/2024/WD-media-capabilities-20240808/ +https://www.w3.org/TR/2024/WD-media-capabilities-20240808/ + + + +Jean-Yves Avenard +- d:media-capture-api media-capture-api 22 March 2012 @@ -264,6 +323,17 @@ https://www.w3.org/TR/2012/NOTE-media-capture-api-20120322/ Dzung Tran Ilkka Oksanen Ingmar Kliche +- +d:media-feeds +MEDIA-FEEDS + +Editor's Draft +Media Feeds +https://wicg.github.io/media-feeds/ + + + + - a:media-fragment MEDIA-FRAGMENT @@ -542,16 +612,186 @@ https://w3c.github.io/media-playback-quality/ Mounir Lamouri - -d:media-source +a:media-source media-source +media-source-2 +- +d:media-source-1 +media-source-1 17 November 2016 REC Media Source Extensions™ -https://www.w3.org/TR/media-source/ +https://www.w3.org/TR/media-source-1/ https://w3c.github.io/media-source/ +Matthew Wolenetz +Jerry Smith +Mark Watson +Aaron Colwell +Adrian Bateman +- +d:media-source-1-20130129 +media-source-1-20130129 +29 January 2013 +WD +Media Source Extensions™ +https://www.w3.org/TR/2013/WD-media-source-20130129/ +https://www.w3.org/TR/2013/WD-media-source-20130129/ + + + +Matthew Wolenetz +Jerry Smith +Mark Watson +Aaron Colwell +Adrian Bateman +- +d:media-source-1-20130415 +media-source-1-20130415 +15 April 2013 +WD +Media Source Extensions +https://www.w3.org/TR/2013/WD-media-source-20130415/ +https://www.w3.org/TR/2013/WD-media-source-20130415/ + + + +Aaron Colwell +Adrian Bateman +Mark Watson +- +d:media-source-1-20130905 +media-source-1-20130905 +5 September 2013 +LCWD +Media Source Extensions +https://www.w3.org/TR/2013/WD-media-source-20130905/ +https://www.w3.org/TR/2013/WD-media-source-20130905/ + + + +Aaron Colwell +Adrian Bateman +Mark Watson +- +d:media-source-1-20140109 +media-source-1-20140109 +9 January 2014 +CR +Media Source Extensions +https://www.w3.org/TR/2014/CR-media-source-20140109/ +https://www.w3.org/TR/2014/CR-media-source-20140109/ + + + +Aaron Colwell +Adrian Bateman +Mark Watson +- +d:media-source-1-20140717 +media-source-1-20140717 +17 July 2014 +CR +Media Source Extensions +https://www.w3.org/TR/2014/CR-media-source-20140717/ +https://www.w3.org/TR/2014/CR-media-source-20140717/ + + + +Aaron Colwell +Adrian Bateman +Mark Watson +- +d:media-source-1-20150331 +media-source-1-20150331 +31 March 2015 +CR +Media Source Extensions +https://www.w3.org/TR/2015/CR-media-source-20150331/ +https://www.w3.org/TR/2015/CR-media-source-20150331/ + + + +Aaron Colwell +Adrian Bateman +Mark Watson +- +d:media-source-1-20151112 +media-source-1-20151112 +12 November 2015 +CR +Media Source Extensions +https://www.w3.org/TR/2015/CR-media-source-20151112/ +https://www.w3.org/TR/2015/CR-media-source-20151112/ + + + +Matthew Wolenetz +Jerry Smith +Mark Watson +Aaron Colwell +Adrian Bateman +- +d:media-source-1-20160503 +media-source-1-20160503 +3 May 2016 +CR +Media Source Extensions +https://www.w3.org/TR/2016/CR-media-source-20160503/ +https://www.w3.org/TR/2016/CR-media-source-20160503/ + + + +Matthew Wolenetz +Jerry Smith +Mark Watson +Aaron Colwell +Adrian Bateman +- +d:media-source-1-20160705 +media-source-1-20160705 +5 July 2016 +CR +Media Source Extensions +https://www.w3.org/TR/2016/CR-media-source-20160705/ +https://www.w3.org/TR/2016/CR-media-source-20160705/ + + + +Matthew Wolenetz +Jerry Smith +Mark Watson +Aaron Colwell +Adrian Bateman +- +d:media-source-1-20161004 +media-source-1-20161004 +4 October 2016 +PR +Media Source Extensions™ +https://www.w3.org/TR/2016/PR-media-source-20161004/ +https://www.w3.org/TR/2016/PR-media-source-20161004/ + + + +Matthew Wolenetz +Jerry Smith +Mark Watson +Aaron Colwell +Adrian Bateman +- +d:media-source-1-20161117 +media-source-1-20161117 +17 November 2016 +REC +Media Source Extensions™ +https://www.w3.org/TR/2016/REC-media-source-20161117/ +https://www.w3.org/TR/2016/REC-media-source-20161117/ + + + Matthew Wolenetz Jerry Smith Mark Watson @@ -560,7 +800,7 @@ Adrian Bateman - d:media-source-2 media-source-2 -21 September 2022 +4 July 2024 WD Media Source Extensions™ https://www.w3.org/TR/media-source-2/ @@ -568,7 +808,7 @@ https://w3c.github.io/media-source/ -Matthew Wolenetz +Jean-Yves Avenard Mark Watson - d:media-source-2-20210930 @@ -701,171 +941,302 @@ https://www.w3.org/TR/2022/WD-media-source-2-20220921/ Matthew Wolenetz Mark Watson - -d:media-source-20130129 -media-source-20130129 -29 January 2013 +d:media-source-2-20231010 +media-source-2-20231010 +10 October 2023 WD Media Source Extensions™ -https://www.w3.org/TR/2013/WD-media-source-20130129/ -https://www.w3.org/TR/2013/WD-media-source-20130129/ +https://www.w3.org/TR/2023/WD-media-source-2-20231010/ +https://www.w3.org/TR/2023/WD-media-source-2-20231010/ -Matthew Wolenetz -Jerry Smith +Jean-Yves Avenard Mark Watson -Aaron Colwell -Adrian Bateman +Matthew Wolenetz - -d:media-source-20130415 -media-source-20130415 -15 April 2013 +d:media-source-2-20231023 +media-source-2-20231023 +23 October 2023 WD -Media Source Extensions -https://www.w3.org/TR/2013/WD-media-source-20130415/ -https://www.w3.org/TR/2013/WD-media-source-20130415/ +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231023/ +https://www.w3.org/TR/2023/WD-media-source-2-20231023/ -Aaron Colwell -Adrian Bateman +Jean-Yves Avenard Mark Watson +Matthew Wolenetz - -d:media-source-20130905 -media-source-20130905 -5 September 2013 -LCWD -Media Source Extensions -https://www.w3.org/TR/2013/WD-media-source-20130905/ -https://www.w3.org/TR/2013/WD-media-source-20130905/ +d:media-source-2-20231025 +media-source-2-20231025 +25 October 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231025/ +https://www.w3.org/TR/2023/WD-media-source-2-20231025/ -Aaron Colwell -Adrian Bateman +Jean-Yves Avenard Mark Watson +Matthew Wolenetz - -d:media-source-20140109 -media-source-20140109 -9 January 2014 -CR -Media Source Extensions -https://www.w3.org/TR/2014/CR-media-source-20140109/ -https://www.w3.org/TR/2014/CR-media-source-20140109/ +d:media-source-2-20231102 +media-source-2-20231102 +2 November 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231102/ +https://www.w3.org/TR/2023/WD-media-source-2-20231102/ -Aaron Colwell -Adrian Bateman +Jean-Yves Avenard Mark Watson +Matthew Wolenetz - -d:media-source-20140717 -media-source-20140717 -17 July 2014 -CR -Media Source Extensions -https://www.w3.org/TR/2014/CR-media-source-20140717/ -https://www.w3.org/TR/2014/CR-media-source-20140717/ +d:media-source-2-20231114 +media-source-2-20231114 +14 November 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231114/ +https://www.w3.org/TR/2023/WD-media-source-2-20231114/ -Aaron Colwell -Adrian Bateman +Jean-Yves Avenard Mark Watson +Matthew Wolenetz - -d:media-source-20150331 -media-source-20150331 -31 March 2015 -CR -Media Source Extensions -https://www.w3.org/TR/2015/CR-media-source-20150331/ -https://www.w3.org/TR/2015/CR-media-source-20150331/ +d:media-source-2-20231204 +media-source-2-20231204 +4 December 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231204/ +https://www.w3.org/TR/2023/WD-media-source-2-20231204/ -Aaron Colwell -Adrian Bateman +Jean-Yves Avenard Mark Watson +Matthew Wolenetz - -d:media-source-20151112 -media-source-20151112 -12 November 2015 -CR -Media Source Extensions -https://www.w3.org/TR/2015/CR-media-source-20151112/ -https://www.w3.org/TR/2015/CR-media-source-20151112/ +d:media-source-2-20231206 +media-source-2-20231206 +6 December 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231206/ +https://www.w3.org/TR/2023/WD-media-source-2-20231206/ -Matthew Wolenetz -Jerry Smith +Jean-Yves Avenard Mark Watson -Aaron Colwell -Adrian Bateman +Matthew Wolenetz - -d:media-source-20160503 -media-source-20160503 -3 May 2016 -CR -Media Source Extensions -https://www.w3.org/TR/2016/CR-media-source-20160503/ -https://www.w3.org/TR/2016/CR-media-source-20160503/ +d:media-source-2-20231218 +media-source-2-20231218 +18 December 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231218/ +https://www.w3.org/TR/2023/WD-media-source-2-20231218/ -Matthew Wolenetz -Jerry Smith +Jean-Yves Avenard Mark Watson -Aaron Colwell -Adrian Bateman +Matthew Wolenetz - -d:media-source-20160705 -media-source-20160705 -5 July 2016 -CR -Media Source Extensions -https://www.w3.org/TR/2016/CR-media-source-20160705/ -https://www.w3.org/TR/2016/CR-media-source-20160705/ +d:media-source-2-20231221 +media-source-2-20231221 +21 December 2023 +WD +Media Source Extensions™ +https://www.w3.org/TR/2023/WD-media-source-2-20231221/ +https://www.w3.org/TR/2023/WD-media-source-2-20231221/ +Jean-Yves Avenard +Mark Watson Matthew Wolenetz -Jerry Smith +- +d:media-source-2-20240321 +media-source-2-20240321 +21 March 2024 +WD +Media Source Extensions™ +https://www.w3.org/TR/2024/WD-media-source-2-20240321/ +https://www.w3.org/TR/2024/WD-media-source-2-20240321/ + + + +Jean-Yves Avenard Mark Watson -Aaron Colwell -Adrian Bateman - -d:media-source-20161004 -media-source-20161004 -4 October 2016 -PR +d:media-source-2-20240401 +media-source-2-20240401 +1 April 2024 +WD Media Source Extensions™ -https://www.w3.org/TR/2016/PR-media-source-20161004/ -https://www.w3.org/TR/2016/PR-media-source-20161004/ +https://www.w3.org/TR/2024/WD-media-source-2-20240401/ +https://www.w3.org/TR/2024/WD-media-source-2-20240401/ -Matthew Wolenetz -Jerry Smith +Jean-Yves Avenard Mark Watson -Aaron Colwell -Adrian Bateman - -d:media-source-20161117 -media-source-20161117 -17 November 2016 -REC +d:media-source-2-20240704 +media-source-2-20240704 +4 July 2024 +WD Media Source Extensions™ -https://www.w3.org/TR/2016/REC-media-source-20161117/ -https://www.w3.org/TR/2016/REC-media-source-20161117/ +https://www.w3.org/TR/2024/WD-media-source-2-20240704/ +https://www.w3.org/TR/2024/WD-media-source-2-20240704/ -Matthew Wolenetz -Jerry Smith +Jean-Yves Avenard Mark Watson -Aaron Colwell -Adrian Bateman +- +a:media-source-20130129 +media-source-20130129 +media-source-1-20130129 +- +a:media-source-20130415 +media-source-20130415 +media-source-1-20130415 +- +a:media-source-20130905 +media-source-20130905 +media-source-1-20130905 +- +a:media-source-20140109 +media-source-20140109 +media-source-1-20140109 +- +a:media-source-20140717 +media-source-20140717 +media-source-1-20140717 +- +a:media-source-20150331 +media-source-20150331 +media-source-1-20150331 +- +a:media-source-20151112 +media-source-20151112 +media-source-1-20151112 +- +a:media-source-20160503 +media-source-20160503 +media-source-1-20160503 +- +a:media-source-20160705 +media-source-20160705 +media-source-1-20160705 +- +a:media-source-20161004 +media-source-20161004 +media-source-1-20161004 +- +a:media-source-20161117 +media-source-20161117 +media-source-1-20161117 +- +a:media-source-20210930 +media-source-20210930 +media-source-2-20210930 +- +a:media-source-20220217 +media-source-20220217 +media-source-2-20220217 +- +a:media-source-20220318 +media-source-20220318 +media-source-2-20220318 +- +a:media-source-20220330 +media-source-20220330 +media-source-2-20220330 +- +a:media-source-20220505 +media-source-20220505 +media-source-2-20220505 +- +a:media-source-20220510 +media-source-20220510 +media-source-2-20220510 +- +a:media-source-20220518 +media-source-20220518 +media-source-2-20220518 +- +a:media-source-20220519 +media-source-20220519 +media-source-2-20220519 +- +a:media-source-20220726 +media-source-20220726 +media-source-2-20220726 +- +a:media-source-20220921 +media-source-20220921 +media-source-2-20220921 +- +a:media-source-20231010 +media-source-20231010 +media-source-2-20231010 +- +a:media-source-20231023 +media-source-20231023 +media-source-2-20231023 +- +a:media-source-20231025 +media-source-20231025 +media-source-2-20231025 +- +a:media-source-20231102 +media-source-20231102 +media-source-2-20231102 +- +a:media-source-20231114 +media-source-20231114 +media-source-2-20231114 +- +a:media-source-20231204 +media-source-20231204 +media-source-2-20231204 +- +a:media-source-20231206 +media-source-20231206 +media-source-2-20231206 +- +a:media-source-20231218 +media-source-20231218 +media-source-2-20231218 +- +a:media-source-20231221 +media-source-20231221 +media-source-2-20231221 +- +a:media-source-20240321 +media-source-20240321 +media-source-2-20240321 +- +a:media-source-20240401 +media-source-20240401 +media-source-2-20240401 +- +a:media-source-20240704 +media-source-20240704 +media-source-2-20240704 - d:media-timed-events media-timed-events @@ -955,6 +1326,17 @@ mediacapture-streams Dzung D Tran Ilkka Oksanen Ingmar Kliche +- +d:mediacapture-automation +MEDIACAPTURE-AUTOMATION + +Editor's Draft +Media Capture Automation +https://w3c.github.io/mediacapture-automation/ + + + + - d:mediacapture-depth mediacapture-depth @@ -1173,7 +1555,7 @@ Rob Manson - d:mediacapture-fromelement mediacapture-fromelement -15 November 2021 +12 December 2023 WD Media Capture from DOM Elements https://www.w3.org/TR/mediacapture-fromelement/ @@ -1350,10 +1732,35 @@ https://www.w3.org/TR/2021/WD-mediacapture-fromelement-20211115/ Martin Thomson Miguel Casas-sanchez Emircan Uysaler +- +d:mediacapture-fromelement-20231212 +mediacapture-fromelement-20231212 +12 December 2023 +WD +Media Capture from DOM Elements +https://www.w3.org/TR/2023/WD-mediacapture-fromelement-20231212/ +https://www.w3.org/TR/2023/WD-mediacapture-fromelement-20231212/ + + + +Martin Thomson +Miguel Casas-sanchez +Emircan Uysaler +- +d:mediacapture-handle-actions +MEDIACAPTURE-HANDLE-ACTIONS + +Editor's Draft +The Capture-Handle Actions Mechanism +https://w3c.github.io/mediacapture-handle/actions/ + + + + - d:mediacapture-region mediacapture-region -20 October 2022 +12 July 2023 WD Region Capture https://www.w3.org/TR/mediacapture-region/ @@ -1433,11 +1840,35 @@ https://www.w3.org/TR/2022/WD-mediacapture-region-20221020/ +Elad Alon +- +d:mediacapture-region-20230308 +mediacapture-region-20230308 +8 March 2023 +WD +Region Capture +https://www.w3.org/TR/2023/WD-mediacapture-region-20230308/ +https://www.w3.org/TR/2023/WD-mediacapture-region-20230308/ + + + +Elad Alon +- +d:mediacapture-region-20230712 +mediacapture-region-20230712 +12 July 2023 +WD +Region Capture +https://www.w3.org/TR/2023/WD-mediacapture-region-20230712/ +https://www.w3.org/TR/2023/WD-mediacapture-region-20230712/ + + + Elad Alon - d:mediacapture-streams mediacapture-streams -12 January 2023 +27 June 2024 CR Media Capture and Streams https://www.w3.org/TR/mediacapture-streams/ @@ -1994,8 +2425,267 @@ mediacapture-streams-20211021 21 October 2021 CR Media Capture and Streams -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211021/ -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211021/ +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211021/ +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211021/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +Daniel Burnett +Adam Bergkvist +Anant Narayanan +- +d:mediacapture-streams-20211203 +mediacapture-streams-20211203 +3 December 2021 +CR +Media Capture and Streams +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211203/ +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211203/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20211209 +mediacapture-streams-20211209 +9 December 2021 +CR +Media Capture and Streams +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211209/ +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211209/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20211215 +mediacapture-streams-20211215 +15 December 2021 +CR +Media Capture and Streams +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211215/ +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211215/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20211216 +mediacapture-streams-20211216 +16 December 2021 +CR +Media Capture and Streams +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211216/ +https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211216/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220103 +mediacapture-streams-20220103 +3 January 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220103/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220103/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220106 +mediacapture-streams-20220106 +6 January 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220106/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220106/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220120 +mediacapture-streams-20220120 +20 January 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220120/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220120/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220210 +mediacapture-streams-20220210 +10 February 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220210/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220210/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220307 +mediacapture-streams-20220307 +7 March 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220307/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220307/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220310 +mediacapture-streams-20220310 +10 March 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220310/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220310/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220505 +mediacapture-streams-20220505 +5 May 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220505/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220505/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220610 +mediacapture-streams-20220610 +10 June 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220610/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220610/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220616 +mediacapture-streams-20220616 +16 June 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220616/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220616/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220630 +mediacapture-streams-20220630 +30 June 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220630/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220630/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220818 +mediacapture-streams-20220818 +18 August 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220818/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220818/ + + + +Cullen Jennings +Bernard Aboba +Jan-Ivar Bruaroey +Henrik Boström +youenn fablet +- +d:mediacapture-streams-20220922 +mediacapture-streams-20220922 +22 September 2022 +CR +Media Capture and Streams +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220922/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220922/ @@ -2004,17 +2694,14 @@ Bernard Aboba Jan-Ivar Bruaroey Henrik Boström youenn fablet -Daniel Burnett -Adam Bergkvist -Anant Narayanan - -d:mediacapture-streams-20211203 -mediacapture-streams-20211203 -3 December 2021 +d:mediacapture-streams-20221013 +mediacapture-streams-20221013 +13 October 2022 CR Media Capture and Streams -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211203/ -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211203/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221013/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221013/ @@ -2024,13 +2711,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20211209 -mediacapture-streams-20211209 -9 December 2021 +d:mediacapture-streams-20221215 +mediacapture-streams-20221215 +15 December 2022 CR Media Capture and Streams -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211209/ -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211209/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221215/ +https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221215/ @@ -2040,13 +2727,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20211215 -mediacapture-streams-20211215 -15 December 2021 +d:mediacapture-streams-20230112 +mediacapture-streams-20230112 +12 January 2023 CR Media Capture and Streams -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211215/ -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211215/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230112/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230112/ @@ -2056,13 +2743,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20211216 -mediacapture-streams-20211216 -16 December 2021 +d:mediacapture-streams-20230202 +mediacapture-streams-20230202 +2 February 2023 CR Media Capture and Streams -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211216/ -https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211216/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230202/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230202/ @@ -2072,13 +2759,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220103 -mediacapture-streams-20220103 -3 January 2022 +d:mediacapture-streams-20230323 +mediacapture-streams-20230323 +23 March 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220103/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220103/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230323/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230323/ @@ -2088,13 +2775,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220106 -mediacapture-streams-20220106 -6 January 2022 +d:mediacapture-streams-20230406 +mediacapture-streams-20230406 +6 April 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220106/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220106/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230406/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230406/ @@ -2104,13 +2791,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220120 -mediacapture-streams-20220120 -20 January 2022 +d:mediacapture-streams-20230413 +mediacapture-streams-20230413 +13 April 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220120/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220120/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230413/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230413/ @@ -2120,13 +2807,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220210 -mediacapture-streams-20220210 -10 February 2022 +d:mediacapture-streams-20230427 +mediacapture-streams-20230427 +27 April 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220210/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220210/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230427/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230427/ @@ -2136,13 +2823,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220307 -mediacapture-streams-20220307 -7 March 2022 +d:mediacapture-streams-20230504 +mediacapture-streams-20230504 +4 May 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220307/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220307/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230504/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230504/ @@ -2152,13 +2839,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220310 -mediacapture-streams-20220310 -10 March 2022 +d:mediacapture-streams-20230619 +mediacapture-streams-20230619 +19 June 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220310/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220310/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230619/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230619/ @@ -2168,13 +2855,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220505 -mediacapture-streams-20220505 -5 May 2022 +d:mediacapture-streams-20230817 +mediacapture-streams-20230817 +17 August 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220505/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220505/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230817/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230817/ @@ -2184,13 +2871,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220610 -mediacapture-streams-20220610 -10 June 2022 +d:mediacapture-streams-20230921 +mediacapture-streams-20230921 +21 September 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220610/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220610/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230921/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230921/ @@ -2200,13 +2887,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220616 -mediacapture-streams-20220616 -16 June 2022 +d:mediacapture-streams-20231120 +mediacapture-streams-20231120 +20 November 2023 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220616/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220616/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20231120/ +https://www.w3.org/TR/2023/CRD-mediacapture-streams-20231120/ @@ -2216,13 +2903,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220630 -mediacapture-streams-20220630 -30 June 2022 +d:mediacapture-streams-20240307 +mediacapture-streams-20240307 +7 March 2024 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220630/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220630/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240307/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240307/ @@ -2232,13 +2919,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220818 -mediacapture-streams-20220818 -18 August 2022 +d:mediacapture-streams-20240425 +mediacapture-streams-20240425 +25 April 2024 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220818/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220818/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240425/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240425/ @@ -2248,13 +2935,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20220922 -mediacapture-streams-20220922 -22 September 2022 +d:mediacapture-streams-20240502 +mediacapture-streams-20240502 +2 May 2024 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220922/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220922/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240502/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240502/ @@ -2264,13 +2951,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20221013 -mediacapture-streams-20221013 -13 October 2022 +d:mediacapture-streams-20240530 +mediacapture-streams-20240530 +30 May 2024 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221013/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221013/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240530/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240530/ @@ -2280,13 +2967,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20221215 -mediacapture-streams-20221215 -15 December 2022 +d:mediacapture-streams-20240620 +mediacapture-streams-20240620 +20 June 2024 CR Media Capture and Streams -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221215/ -https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221215/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240620/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240620/ @@ -2296,13 +2983,13 @@ Jan-Ivar Bruaroey Henrik Boström youenn fablet - -d:mediacapture-streams-20230112 -mediacapture-streams-20230112 -12 January 2023 +d:mediacapture-streams-20240627 +mediacapture-streams-20240627 +27 June 2024 CR Media Capture and Streams -https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230112/ -https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230112/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240627/ +https://www.w3.org/TR/2024/CRD-mediacapture-streams-20240627/ @@ -2314,7 +3001,7 @@ youenn fablet - d:mediacapture-transform mediacapture-transform -20 October 2022 +31 May 2024 WD MediaStreamTrack Insertable Media Processing using Streams https://www.w3.org/TR/mediacapture-transform/ @@ -2348,6 +3035,19 @@ https://www.w3.org/TR/2022/WD-mediacapture-transform-20221020/ +Harald Alvestrand +Guido Urdaneta +- +d:mediacapture-transform-20240531 +mediacapture-transform-20240531 +31 May 2024 +WD +MediaStreamTrack Insertable Media Processing using Streams +https://www.w3.org/TR/2024/WD-mediacapture-transform-20240531/ +https://www.w3.org/TR/2024/WD-mediacapture-transform-20240531/ + + + Harald Alvestrand Guido Urdaneta - @@ -2888,7 +3588,7 @@ mediaqueries-4-20211225 - d:mediaqueries-3 mediaqueries-3 -5 April 2022 +21 May 2024 REC Media Queries Level 3 https://www.w3.org/TR/mediaqueries-3/ @@ -3040,6 +3740,18 @@ https://www.w3.org/TR/2022/REC-mediaqueries-3-20220405/ +Florian Rivoal +- +d:mediaqueries-3-20240521 +mediaqueries-3-20240521 +21 May 2024 +REC +Media Queries Level 3 +https://www.w3.org/TR/2024/REC-mediaqueries-3-20240521/ +https://www.w3.org/TR/2024/REC-mediaqueries-3-20240521/ + + + Florian Rivoal - d:mediaqueries-4 @@ -3234,9 +3946,9 @@ Daniel Libby - d:mediasession mediasession -20 September 2022 +18 July 2024 WD -Media Session Standard +Media Session https://www.w3.org/TR/mediasession/ https://w3c.github.io/mediasession/ @@ -3333,12 +4045,194 @@ https://www.w3.org/TR/2022/WD-mediasession-20220920/ +Thomas Steimel +youenn fablet +- +d:mediasession-20230912 +mediasession-20230912 +12 September 2023 +WD +Media Session +https://www.w3.org/TR/2023/WD-mediasession-20230912/ +https://www.w3.org/TR/2023/WD-mediasession-20230912/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20230915 +mediasession-20230915 +15 September 2023 +WD +Media Session +https://www.w3.org/TR/2023/WD-mediasession-20230915/ +https://www.w3.org/TR/2023/WD-mediasession-20230915/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20230918 +mediasession-20230918 +18 September 2023 +WD +Media Session +https://www.w3.org/TR/2023/WD-mediasession-20230918/ +https://www.w3.org/TR/2023/WD-mediasession-20230918/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20231011 +mediasession-20231011 +11 October 2023 +WD +Media Session +https://www.w3.org/TR/2023/WD-mediasession-20231011/ +https://www.w3.org/TR/2023/WD-mediasession-20231011/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240119 +mediasession-20240119 +19 January 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240119/ +https://www.w3.org/TR/2024/WD-mediasession-20240119/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240122 +mediasession-20240122 +22 January 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240122/ +https://www.w3.org/TR/2024/WD-mediasession-20240122/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240216 +mediasession-20240216 +16 February 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240216/ +https://www.w3.org/TR/2024/WD-mediasession-20240216/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240410 +mediasession-20240410 +10 April 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240410/ +https://www.w3.org/TR/2024/WD-mediasession-20240410/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240414 +mediasession-20240414 +14 April 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240414/ +https://www.w3.org/TR/2024/WD-mediasession-20240414/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240509 +mediasession-20240509 +9 May 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240509/ +https://www.w3.org/TR/2024/WD-mediasession-20240509/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240513 +mediasession-20240513 +13 May 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240513/ +https://www.w3.org/TR/2024/WD-mediasession-20240513/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240531 +mediasession-20240531 +31 May 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240531/ +https://www.w3.org/TR/2024/WD-mediasession-20240531/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240704 +mediasession-20240704 +4 July 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240704/ +https://www.w3.org/TR/2024/WD-mediasession-20240704/ + + + +Thomas Steimel +youenn fablet +- +d:mediasession-20240718 +mediasession-20240718 +18 July 2024 +WD +Media Session +https://www.w3.org/TR/2024/WD-mediasession-20240718/ +https://www.w3.org/TR/2024/WD-mediasession-20240718/ + + + Thomas Steimel youenn fablet - d:mediastream-recording mediastream-recording -7 June 2022 +11 May 2023 WD MediaStream Recording https://www.w3.org/TR/mediastream-recording/ @@ -3662,6 +4556,42 @@ https://www.w3.org/TR/2022/WD-mediastream-recording-20220607/ +Miguel Casas-sanchez +- +d:mediastream-recording-20230414 +mediastream-recording-20230414 +14 April 2023 +WD +MediaStream Recording +https://www.w3.org/TR/2023/WD-mediastream-recording-20230414/ +https://www.w3.org/TR/2023/WD-mediastream-recording-20230414/ + + + +Miguel Casas-sanchez +- +d:mediastream-recording-20230420 +mediastream-recording-20230420 +20 April 2023 +WD +MediaStream Recording +https://www.w3.org/TR/2023/WD-mediastream-recording-20230420/ +https://www.w3.org/TR/2023/WD-mediastream-recording-20230420/ + + + +Miguel Casas-sanchez +- +d:mediastream-recording-20230511 +mediastream-recording-20230511 +11 May 2023 +WD +MediaStream Recording +https://www.w3.org/TR/2023/WD-mediastream-recording-20230511/ +https://www.w3.org/TR/2023/WD-mediastream-recording-20230511/ + + + Miguel Casas-sanchez - d:merchant-validation diff --git a/bikeshed/spec-data/readonly/biblio/biblio-mi.data b/bikeshed/spec-data/readonly/biblio/biblio-mi.data index 181157515a..9a611d94bb 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-mi.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-mi.data @@ -700,7 +700,7 @@ Fuqiao Xue - d:miniapp-addressing miniapp-addressing -27 June 2022 +25 June 2024 NOTE MiniApp Addressing https://www.w3.org/TR/miniapp-addressing/ @@ -753,6 +753,36 @@ https://www.w3.org/TR/2022/DNOTE-miniapp-addressing-20220627/ +Dan Zhou +Qian Liu +shuo wang +Tengyuan Zhang +- +d:miniapp-addressing-20240131 +miniapp-addressing-20240131 +31 January 2024 +WD +MiniApp Addressing +https://www.w3.org/TR/2024/WD-miniapp-addressing-20240131/ +https://www.w3.org/TR/2024/WD-miniapp-addressing-20240131/ + + + +Dan Zhou +Tengyuan Zhang +shuo wang +Qian Liu +- +d:miniapp-addressing-20240625 +miniapp-addressing-20240625 +25 June 2024 +NOTE +MiniApp Addressing +https://www.w3.org/TR/2024/DNOTE-miniapp-addressing-20240625/ +https://www.w3.org/TR/2024/DNOTE-miniapp-addressing-20240625/ + + + Dan Zhou Qian Liu shuo wang @@ -760,7 +790,7 @@ Tengyuan Zhang - d:miniapp-lifecycle miniapp-lifecycle -24 November 2022 +29 May 2023 WD MiniApp Lifecycle https://www.w3.org/TR/miniapp-lifecycle/ @@ -963,12 +993,25 @@ https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20221124/ +Qing An +Haoyang Xu +- +d:miniapp-lifecycle-20230529 +miniapp-lifecycle-20230529 +29 May 2023 +WD +MiniApp Lifecycle +https://www.w3.org/TR/2023/WD-miniapp-lifecycle-20230529/ +https://www.w3.org/TR/2023/WD-miniapp-lifecycle-20230529/ + + + Qing An Haoyang Xu - d:miniapp-manifest miniapp-manifest -25 November 2022 +30 May 2023 WD MiniApp Manifest https://www.w3.org/TR/miniapp-manifest/ @@ -1218,12 +1261,51 @@ https://www.w3.org/TR/2022/WD-miniapp-manifest-20221125/ +Martin Alvarez-Espinar +Yongjing ZHANG +- +d:miniapp-manifest-20230220 +miniapp-manifest-20230220 +20 February 2023 +WD +MiniApp Manifest +https://www.w3.org/TR/2023/WD-miniapp-manifest-20230220/ +https://www.w3.org/TR/2023/WD-miniapp-manifest-20230220/ + + + +Martin Alvarez-Espinar +Yongjing ZHANG +- +d:miniapp-manifest-20230228 +miniapp-manifest-20230228 +28 February 2023 +WD +MiniApp Manifest +https://www.w3.org/TR/2023/WD-miniapp-manifest-20230228/ +https://www.w3.org/TR/2023/WD-miniapp-manifest-20230228/ + + + +Martin Alvarez-Espinar +Yongjing ZHANG +- +d:miniapp-manifest-20230530 +miniapp-manifest-20230530 +30 May 2023 +WD +MiniApp Manifest +https://www.w3.org/TR/2023/WD-miniapp-manifest-20230530/ +https://www.w3.org/TR/2023/WD-miniapp-manifest-20230530/ + + + Martin Alvarez-Espinar Yongjing ZHANG - d:miniapp-packaging miniapp-packaging -27 October 2022 +23 October 2023 WD MiniApp Packaging https://www.w3.org/TR/miniapp-packaging/ @@ -1359,6 +1441,54 @@ https://www.w3.org/TR/2022/WD-miniapp-packaging-20221027/ +Martin Alvarez-Espinar +Qing An +Tengyuan Zhang +Yongjing ZHANG +Dan Zhou +- +d:miniapp-packaging-20230220 +miniapp-packaging-20230220 +20 February 2023 +WD +MiniApp Packaging +https://www.w3.org/TR/2023/WD-miniapp-packaging-20230220/ +https://www.w3.org/TR/2023/WD-miniapp-packaging-20230220/ + + + +Martin Alvarez-Espinar +Qing An +Tengyuan Zhang +Yongjing ZHANG +Dan Zhou +- +d:miniapp-packaging-20230530 +miniapp-packaging-20230530 +30 May 2023 +WD +MiniApp Packaging +https://www.w3.org/TR/2023/WD-miniapp-packaging-20230530/ +https://www.w3.org/TR/2023/WD-miniapp-packaging-20230530/ + + + +Martin Alvarez-Espinar +Qing An +Tengyuan Zhang +Yongjing ZHANG +Dan Zhou +- +d:miniapp-packaging-20231023 +miniapp-packaging-20231023 +23 October 2023 +WD +MiniApp Packaging +https://www.w3.org/TR/2023/WD-miniapp-packaging-20231023/ +https://www.w3.org/TR/2023/WD-miniapp-packaging-20231023/ + + + Martin Alvarez-Espinar Qing An Tengyuan Zhang @@ -1454,9 +1584,13 @@ a:mix-20211004 MIX-20211004 mixed-content-20211004 - +a:mix-20230223 +MIX-20230223 +mixed-content-20230223 +- d:mixed-content mixed-content -4 October 2021 +23 February 2023 CR Mixed Content https://www.w3.org/TR/mixed-content/ @@ -1594,6 +1728,20 @@ https://www.w3.org/TR/2021/CRD-mixed-content-20211004/ +Emily Stark +Mike West +Carlos IbarraLopez +- +d:mixed-content-20230223 +mixed-content-20230223 +23 February 2023 +CR +Mixed Content +https://www.w3.org/TR/2023/CRD-mixed-content-20230223/ +https://www.w3.org/TR/2023/CRD-mixed-content-20230223/ + + + Emily Stark Mike West Carlos IbarraLopez diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ml.data b/bikeshed/spec-data/readonly/biblio/biblio-ml.data index 760a82f854..14d61273c7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ml.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ml.data @@ -1,7 +1,7 @@ d:mlreq mlreq -16 June 2020 -WD +9 July 2024 +NOTE Mongolian Layout Requirements https://www.w3.org/TR/mlreq/ https://w3c.github.io/mlreq/ @@ -20,6 +20,78 @@ https://www.w3.org/TR/2020/WD-mlreq-20200616/ +Richard Ishida +- +d:mlreq-20231124 +mlreq-20231124 +24 November 2023 +NOTE +Mongolian Layout Requirements +https://www.w3.org/TR/2023/DNOTE-mlreq-20231124/ +https://www.w3.org/TR/2023/DNOTE-mlreq-20231124/ + + + +Richard Ishida +- +d:mlreq-20240501 +mlreq-20240501 +1 May 2024 +NOTE +Mongolian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-mlreq-20240501/ +https://www.w3.org/TR/2024/DNOTE-mlreq-20240501/ + + + +Richard Ishida +- +d:mlreq-20240515 +mlreq-20240515 +15 May 2024 +NOTE +Mongolian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-mlreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-mlreq-20240515/ + + + +Richard Ishida +- +d:mlreq-20240630 +mlreq-20240630 +30 June 2024 +NOTE +Mongolian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-mlreq-20240630/ +https://www.w3.org/TR/2024/DNOTE-mlreq-20240630/ + + + +Richard Ishida +- +d:mlreq-20240705 +mlreq-20240705 +5 July 2024 +NOTE +Mongolian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-mlreq-20240705/ +https://www.w3.org/TR/2024/DNOTE-mlreq-20240705/ + + + +Richard Ishida +- +d:mlreq-20240709 +mlreq-20240709 +9 July 2024 +NOTE +Mongolian Layout Requirements +https://www.w3.org/TR/2024/DNOTE-mlreq-20240709/ +https://www.w3.org/TR/2024/DNOTE-mlreq-20240709/ + + + Richard Ishida - d:mlw-metadata-us-impl diff --git a/bikeshed/spec-data/readonly/biblio/biblio-mo.data b/bikeshed/spec-data/readonly/biblio/biblio-mo.data index db6ca5941d..d213caedfd 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-mo.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-mo.data @@ -439,10 +439,21 @@ https://www.w3.org/TR/2004/NOTE-modality-interface-20040510/ Brandon Porter +- +d:model-element +MODEL-ELEMENT + +Draft Community Group Report +The <model> element +https://immersive-web.github.io/model-element/ + + + + - d:mong-gap mong-gap -25 January 2022 +10 July 2024 NOTE Mongolian Gap Analysis https://www.w3.org/TR/mong-gap/ @@ -510,6 +521,90 @@ https://www.w3.org/TR/2022/DNOTE-mong-gap-20220125/ +Richard Ishida +- +d:mong-gap-20230614 +mong-gap-20230614 +14 June 2023 +NOTE +Mongolian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-mong-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-mong-gap-20230614/ + + + +Richard Ishida +- +d:mong-gap-20230720 +mong-gap-20230720 +20 July 2023 +NOTE +Mongolian Gap Analysis +https://www.w3.org/TR/2023/DNOTE-mong-gap-20230720/ +https://www.w3.org/TR/2023/DNOTE-mong-gap-20230720/ + + + +Richard Ishida +- +d:mong-gap-20240630 +mong-gap-20240630 +30 June 2024 +NOTE +Mongolian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-mong-gap-20240630/ +https://www.w3.org/TR/2024/DNOTE-mong-gap-20240630/ + + + +Richard Ishida +- +d:mong-gap-20240705 +mong-gap-20240705 +5 July 2024 +NOTE +Mongolian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-mong-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-mong-gap-20240705/ + + + +Richard Ishida +- +d:mong-gap-20240710 +mong-gap-20240710 +10 July 2024 +NOTE +Mongolian Gap Analysis +https://www.w3.org/TR/2024/DNOTE-mong-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-mong-gap-20240710/ + + + +Richard Ishida +- +d:mong-lreq +mong-lreq +8 August 2024 +NOTE +Mongolian Script Resources +https://www.w3.org/TR/mong-lreq/ +https://w3c.github.io/mlreq/mong/ + + + +Richard Ishida +- +d:mong-lreq-20240808 +mong-lreq-20240808 +8 August 2024 +NOTE +Mongolian Script Resources +https://www.w3.org/TR/2024/DNOTE-mong-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-mong-lreq-20240808/ + + + Richard Ishida - d:motion-1 @@ -623,5 +718,5 @@ Alexander Shalamov - s:moz-icons MOZ-ICONS -Martin, J. Raskin, A. Gelman, L. Rood, D. Surman, M. Hadfield, G. Greant, Z. <a href = 'https://wiki.mozilla.org/Drumbeat/Challenges/Privacy_Icons'<cite>Privacy Icons</cite></a> 6 March 2010. Mozilla Wiki. URL: https://wiki.mozilla.org/Drumbeat/Challenges/Privacy_Icons +Martin, J. Raskin, A. Gelman, L. Rood, D. Surman, M. Hadfield, G. Greant, Z. <a href="https://wiki.mozilla.org/Drumbeat/Challenges/Privacy_Icons"><cite>Privacy Icons</cite></a> 6 March 2010. Mozilla Wiki. URL: https://wiki.mozilla.org/Drumbeat/Challenges/Privacy_Icons - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-mq.data b/bikeshed/spec-data/readonly/biblio/biblio-mq.data new file mode 100644 index 0000000000..c756413f31 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-mq.data @@ -0,0 +1,11 @@ +d:mqtt +MQTT +March 2019 +5.0 +Message Queuing Telemetry Transport (MQTT) +https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ms.data b/bikeshed/spec-data/readonly/biblio/biblio-ms.data index 864c279ac1..52e4fdd5a7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ms.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ms.data @@ -26,63 +26,147 @@ media-source - a:mse-20130129 MSE-20130129 -media-source-20130129 +media-source-1-20130129 - a:mse-20130415 MSE-20130415 -media-source-20130415 +media-source-1-20130415 - a:mse-20130905 MSE-20130905 -media-source-20130905 +media-source-1-20130905 - a:mse-20140109 MSE-20140109 -media-source-20140109 +media-source-1-20140109 - a:mse-20140717 MSE-20140717 -media-source-20140717 +media-source-1-20140717 - a:mse-20150331 MSE-20150331 -media-source-20150331 +media-source-1-20150331 - a:mse-20151112 MSE-20151112 -media-source-20151112 +media-source-1-20151112 - a:mse-20160503 MSE-20160503 -media-source-20160503 +media-source-1-20160503 - a:mse-20160705 MSE-20160705 -media-source-20160705 +media-source-1-20160705 - a:mse-20161004 MSE-20161004 -media-source-20161004 +media-source-1-20161004 - a:mse-20161117 MSE-20161117 -media-source-20161117 +media-source-1-20161117 +- +a:mse-20210930 +MSE-20210930 +media-source-2-20210930 +- +a:mse-20220217 +MSE-20220217 +media-source-2-20220217 +- +a:mse-20220318 +MSE-20220318 +media-source-2-20220318 +- +a:mse-20220330 +MSE-20220330 +media-source-2-20220330 +- +a:mse-20220505 +MSE-20220505 +media-source-2-20220505 +- +a:mse-20220510 +MSE-20220510 +media-source-2-20220510 +- +a:mse-20220518 +MSE-20220518 +media-source-2-20220518 +- +a:mse-20220519 +MSE-20220519 +media-source-2-20220519 +- +a:mse-20220726 +MSE-20220726 +media-source-2-20220726 +- +a:mse-20220921 +MSE-20220921 +media-source-2-20220921 +- +a:mse-20231010 +MSE-20231010 +media-source-2-20231010 +- +a:mse-20231023 +MSE-20231023 +media-source-2-20231023 +- +a:mse-20231025 +MSE-20231025 +media-source-2-20231025 +- +a:mse-20231102 +MSE-20231102 +media-source-2-20231102 +- +a:mse-20231114 +MSE-20231114 +media-source-2-20231114 +- +a:mse-20231204 +MSE-20231204 +media-source-2-20231204 +- +a:mse-20231206 +MSE-20231206 +media-source-2-20231206 +- +a:mse-20231218 +MSE-20231218 +media-source-2-20231218 +- +a:mse-20231221 +MSE-20231221 +media-source-2-20231221 +- +a:mse-20240321 +MSE-20240321 +media-source-2-20240321 +- +a:mse-20240401 +MSE-20240401 +media-source-2-20240401 +- +a:mse-20240704 +MSE-20240704 +media-source-2-20240704 - d:mse-byte-stream-format-isobmff mse-byte-stream-format-isobmff -4 October 2016 +23 July 2024 NOTE ISO BMFF Byte Stream Format https://www.w3.org/TR/mse-byte-stream-format-isobmff/ -https://w3c.github.io/media-source/isobmff-byte-stream-format.html +https://w3c.github.io/mse-byte-stream-format-isobmff/ -Matthew Wolenetz -Jerry Smith Mark Watson -Aaron Colwell -Adrian Bateman - d:mse-byte-stream-format-isobmff-20161004 mse-byte-stream-format-isobmff-20161004 @@ -100,21 +184,41 @@ Mark Watson Aaron Colwell Adrian Bateman - +d:mse-byte-stream-format-isobmff-20240718 +mse-byte-stream-format-isobmff-20240718 +18 July 2024 +NOTE +ISO BMFF Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-isobmff-20240718/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-isobmff-20240718/ + + + +Mark Watson +- +d:mse-byte-stream-format-isobmff-20240723 +mse-byte-stream-format-isobmff-20240723 +23 July 2024 +NOTE +ISO BMFF Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-isobmff-20240723/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-isobmff-20240723/ + + + +Mark Watson +- d:mse-byte-stream-format-mp2t mse-byte-stream-format-mp2t -4 October 2016 +23 July 2024 NOTE MPEG-2 TS Byte Stream Format https://www.w3.org/TR/mse-byte-stream-format-mp2t/ -https://w3c.github.io/media-source/mp2t-byte-stream-format.html +https://w3c.github.io/mse-byte-stream-format-mp2t/ -Matthew Wolenetz -Jerry Smith Mark Watson -Aaron Colwell -Adrian Bateman - d:mse-byte-stream-format-mp2t-20161004 mse-byte-stream-format-mp2t-20161004 @@ -132,18 +236,41 @@ Mark Watson Aaron Colwell Adrian Bateman - +d:mse-byte-stream-format-mp2t-20240718 +mse-byte-stream-format-mp2t-20240718 +18 July 2024 +NOTE +MPEG-2 TS Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mp2t-20240718/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mp2t-20240718/ + + + +Mark Watson +- +d:mse-byte-stream-format-mp2t-20240723 +mse-byte-stream-format-mp2t-20240723 +23 July 2024 +NOTE +MPEG-2 TS Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mp2t-20240723/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mp2t-20240723/ + + + +Mark Watson +- d:mse-byte-stream-format-mpeg-audio mse-byte-stream-format-mpeg-audio -4 October 2016 +23 July 2024 NOTE MPEG Audio Byte Stream Format https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/ -https://w3c.github.io/media-source/mpeg-audio-byte-stream-format.html +https://w3c.github.io/mse-byte-stream-format-mpeg-audio/ -Matthew Wolenetz -Aaron Colwell +Dale Curtis - d:mse-byte-stream-format-mpeg-audio-20161004 mse-byte-stream-format-mpeg-audio-20161004 @@ -158,6 +285,30 @@ https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-mpeg-audio-20161004/ Matthew Wolenetz Aaron Colwell - +d:mse-byte-stream-format-mpeg-audio-20240718 +mse-byte-stream-format-mpeg-audio-20240718 +18 July 2024 +NOTE +MPEG Audio Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mpeg-audio-20240718/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mpeg-audio-20240718/ + + + +Dale Curtis +- +d:mse-byte-stream-format-mpeg-audio-20240723 +mse-byte-stream-format-mpeg-audio-20240723 +23 July 2024 +NOTE +MPEG Audio Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mpeg-audio-20240723/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-mpeg-audio-20240723/ + + + +Dale Curtis +- d:mse-byte-stream-format-registry mse-byte-stream-format-registry 4 October 2016 @@ -188,17 +339,15 @@ Aaron Colwell - d:mse-byte-stream-format-webm mse-byte-stream-format-webm -4 October 2016 +23 July 2024 NOTE WebM Byte Stream Format https://www.w3.org/TR/mse-byte-stream-format-webm/ -https://w3c.github.io/media-source/webm-byte-stream-format.html +https://w3c.github.io/mse-byte-stream-format-webm/ -Matthew Wolenetz -Jerry Smith -Aaron Colwell +Chris Needham - d:mse-byte-stream-format-webm-20161004 mse-byte-stream-format-webm-20161004 @@ -214,9 +363,33 @@ Matthew Wolenetz Jerry Smith Aaron Colwell - +d:mse-byte-stream-format-webm-20240718 +mse-byte-stream-format-webm-20240718 +18 July 2024 +NOTE +WebM Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-webm-20240718/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-webm-20240718/ + + + +Chris Needham +- +d:mse-byte-stream-format-webm-20240723 +mse-byte-stream-format-webm-20240723 +23 July 2024 +NOTE +WebM Byte Stream Format +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-webm-20240723/ +https://www.w3.org/TR/2024/NOTE-mse-byte-stream-format-webm-20240723/ + + + +Chris Needham +- d:mst-content-hint mst-content-hint -22 July 2021 +1 August 2024 WD MediaStreamTrack Content Hints https://www.w3.org/TR/mst-content-hint/ @@ -308,5 +481,17 @@ https://www.w3.org/TR/2021/WD-mst-content-hint-20210722/ +Harald Alvestrand +- +d:mst-content-hint-20240801 +mst-content-hint-20240801 +1 August 2024 +WD +MediaStreamTrack Content Hints +https://www.w3.org/TR/2024/WD-mst-content-hint-20240801/ +https://www.w3.org/TR/2024/WD-mst-content-hint-20240801/ + + + Harald Alvestrand - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-n-.data b/bikeshed/spec-data/readonly/biblio/biblio-n-.data index f71bfb6fca..cc75c16850 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-n-.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-n-.data @@ -4,7 +4,7 @@ n-quads REC RDF 1.1 N-Quads https://www.w3.org/TR/n-quads/ - +https://w3c.github.io/rdf-n-quads/spec/ @@ -76,7 +76,7 @@ n-triples REC RDF 1.1 N-Triples https://www.w3.org/TR/n-triples/ - +https://w3c.github.io/rdf-n-triples/spec/ diff --git a/bikeshed/spec-data/readonly/biblio/biblio-n1.data b/bikeshed/spec-data/readonly/biblio/biblio-n1.data index 79e88a105c..2539a2a420 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-n1.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-n1.data @@ -458,7 +458,7 @@ d:n1249 N1249 -Drafting from Tokyo Meeting -- Revision 2 +Drafting from Tokyo Meeting — Revision 2 https://wg21.link/n1249 @@ -518,7 +518,7 @@ d:n1254 N1254 -Member Access Control -- Proposed Revisions +Member Access Control — Proposed Revisions https://wg21.link/n1254 @@ -4574,7 +4574,7 @@ d:n1615 N1615 9 April 2004 -C++ Properties -- a Library Solution +C++ Properties — a Library Solution https://wg21.link/n1615 @@ -4622,7 +4622,7 @@ d:n1619 N1619 12 April 2004 -Library Extension Technical Report -- Issues List +Library Extension Technical Report — Issues List https://wg21.link/n1619 @@ -4946,7 +4946,7 @@ d:n1650 N1650 15 April 2004 -C++ Evolution Working Group -- Active Proposals, Revision 1 +C++ Evolution Working Group — Active Proposals, Revision 1 https://wg21.link/n1650 @@ -5522,7 +5522,7 @@ d:n1700 N1700 9 September 2004 -C++ Evolution Working Group -- Active Proposals, Revision 1b +C++ Evolution Working Group — Active Proposals, Revision 1b https://wg21.link/n1700 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-n2.data b/bikeshed/spec-data/readonly/biblio/biblio-n2.data index 56ab21b5d0..2cb78b857a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-n2.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-n2.data @@ -3062,7 +3062,7 @@ d:n2271 N2271 27 April 2007 -EASTL -- Electronic Arts Standard Template Library +EASTL — Electronic Arts Standard Template Library https://wg21.link/n2271 @@ -8570,7 +8570,7 @@ d:n2772 N2772 17 September 2008 -Variadic functions: Variadic templates or initializer lists? -- Revision 1 +Variadic functions: Variadic templates or initializer lists? — Revision 1 https://wg21.link/n2772 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-n3.data b/bikeshed/spec-data/readonly/biblio/biblio-n3.data index 8a3b311100..d542149ab6 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-n3.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-n3.data @@ -3363,7 +3363,7 @@ d:n3290 N3290 11 April 2011 -Programming Languages -- C++ +Programming Languages — C++ https://wg21.link/n3290 @@ -5715,7 +5715,7 @@ d:n3496 N3496 2 January 2013 -AGENDA, PL22.16 Meeting No. 60, WG21 Meeting No. 55, April 15-20, 2013 -- Bristol, UK +AGENDA, PL22.16 Meeting No. 60, WG21 Meeting No. 55, April 15-20, 2013 — Bristol, UK https://wg21.link/n3496 @@ -8031,7 +8031,7 @@ d:n3693 N3693 28 June 2013 -Working Draft, Technical Specification -- File System +Working Draft, Technical Specification — File System https://wg21.link/n3693 @@ -9195,7 +9195,7 @@ d:n3790 N3790 27 September 2013 -Working Draft, Technical Specification -- File System +Working Draft, Technical Specification — File System https://wg21.link/n3790 @@ -9351,7 +9351,7 @@ d:n3803 N3803 5 October 2013 -Programming Languages -- C++ Standard Library -- File System Technical Specification +Programming Languages — C++ Standard Library — File System Technical Specification https://wg21.link/n3803 @@ -9543,7 +9543,7 @@ d:n3820 N3820 10 October 2013 -Working Draft, Technical Specification -- Array Extensions +Working Draft, Technical Specification — Array Extensions https://wg21.link/n3820 @@ -11331,7 +11331,7 @@ d:n3979 N3979 12 May 2014 -AGENDA, PL22.16 Meeting No. 63, WG21 Meeting No. 58, June 16-21, 2014 -- Rapperswil, Switzerland +AGENDA, PL22.16 Meeting No. 63, WG21 Meeting No. 58, June 16-21, 2014 — Rapperswil, Switzerland https://wg21.link/n3979 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-n4.data b/bikeshed/spec-data/readonly/biblio/biblio-n4.data index fd8dc6106b..eeaae13a41 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-n4.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-n4.data @@ -1646,7 +1646,7 @@ d:n4138 N4138 7 October 2014 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4138 @@ -1658,7 +1658,7 @@ d:n4139 N4139 7 October 2014 -Editor's Report -- Programming Languages -- C++ +Editor's Report — Programming Languages — C++ https://wg21.link/n4139 @@ -3410,7 +3410,7 @@ d:n4297 N4297 19 November 2014 -Editor's Report -- Programming Languages -- C++ +Editor's Report — Programming Languages — C++ https://wg21.link/n4297 @@ -3506,7 +3506,7 @@ d:n4307 N4307 12 November 2014 -National Body Comment -- ISO/IEC PDTS 19568 -- Technical Specification: C++ Extensions for Library Fundamentals +National Body Comment — ISO/IEC PDTS 19568 — Technical Specification: C++ Extensions for Library Fundamentals https://wg21.link/n4307 @@ -3518,7 +3518,7 @@ d:n4308 N4308 12 November 2014 -National Body Comment -- ISO/IEC PDTS 19570 -- Technical Specification: C++ Extensions for Parallelism +National Body Comment — ISO/IEC PDTS 19570 — Technical Specification: C++ Extensions for Parallelism https://wg21.link/n4308 @@ -3566,7 +3566,7 @@ d:n4312 N4312 21 November 2014 -Programming Languages -- Technical Specification for C++ Extensions for Parallelism +Programming Languages — Technical Specification for C++ Extensions for Parallelism https://wg21.link/n4312 @@ -4634,7 +4634,7 @@ d:n4409 N4409 10 April 2015 -Programming Languages -- Technical Specification for C++ Extensions for Parallelism +Programming Languages — Technical Specification for C++ Extensions for Parallelism https://wg21.link/n4409 @@ -4898,7 +4898,7 @@ d:n4432 N4432 10 April 2015 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4432 @@ -5462,7 +5462,7 @@ d:n4480 N4480 7 April 2015 -Programming Languages -- C++ Extensions for Library Fundamentals DTS +Programming Languages — C++ Extensions for Library Fundamentals DTS https://wg21.link/n4480 @@ -5978,7 +5978,7 @@ d:n4528 N4528 22 May 2015 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4528 @@ -6230,7 +6230,7 @@ d:n4549 N4549 27 July 2015 -Programming Languages -- C++ Extensions for Concepts +Programming Languages — C++ Extensions for Concepts https://wg21.link/n4549 @@ -6434,7 +6434,7 @@ d:n4566 N4566 9 November 2015 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4566 @@ -6626,7 +6626,7 @@ d:n4583 N4583 18 March 2016 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4583 @@ -6746,7 +6746,7 @@ d:n4593 N4593 20160530 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4593 @@ -6866,7 +6866,7 @@ d:n4603 N4603 12 July 2016 -Editor's Report -- Committee Draft, Standard for Programming Language C++ +Editor's Report — Committee Draft, Standard for Programming Language C++ https://wg21.link/n4603 @@ -7022,7 +7022,7 @@ d:n4617 N4617 28 November 2016 -Programming Languages -- C++ Extensions for Library Fundamentals, Version 2 DTS +Programming Languages — C++ Extensions for Library Fundamentals, Version 2 DTS https://wg21.link/n4617 @@ -7046,7 +7046,7 @@ d:n4619 N4619 28 November 2016 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4619 @@ -7082,7 +7082,7 @@ d:n4622 N4622 27 November 2016 -Programming Languages -- C++ Extensions for Ranges PDTS +Programming Languages — C++ Extensions for Ranges PDTS https://wg21.link/n4622 @@ -7118,7 +7118,7 @@ d:n4625 N4625 28 November 2016 -Programming Languages -- C++ Extensions for Networking PDTS +Programming Languages — C++ Extensions for Networking PDTS https://wg21.link/n4625 @@ -7286,7 +7286,7 @@ d:n4639 N4639 6 February 2017 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4639 @@ -7538,7 +7538,7 @@ d:n4661 N4661 21 March 2017 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4661 @@ -7862,7 +7862,7 @@ d:n4688 N4688 20170730 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4688 @@ -7994,7 +7994,7 @@ d:n4701 N4701 16 October 2017 -Editor's Report -- Working Draft, Standard for Programming Language C++ +Editor's Report — Working Draft, Standard for Programming Language C++ https://wg21.link/n4701 @@ -8126,7 +8126,7 @@ d:n4714 N4714 27 November 2017 -Editors' Report -- Programming Languages -- C++ +Editors' Report — Programming Languages — C++ https://wg21.link/n4714 @@ -8294,7 +8294,7 @@ d:n4728 N4728 12 February 2018 -Editors' Report -- Programming Languages – C++ +Editors' Report — Programming Languages – C++ https://wg21.link/n4728 @@ -10732,5 +10732,545 @@ https://wg21.link/n4939 +Thomas Köppe +- +d:n4940 +N4940 +23 January 2023 + +WG21 2022-11 Kona Minutes of Meeting V2 +https://wg21.link/n4940 + + + + +Nina Ranns +- +d:n4941 +N4941 +21 January 2023 + +INCITS C++/WG21 Agenda: 6-11 February 2023, Issaquah, WA USA +https://wg21.link/n4941 + + + + +John Spicer +- +d:n4942 +N4942 +2 February 2023 + +WG21 2023-01 Admin telecon minutes +https://wg21.link/n4942 + + + + +Nina Ranns +- +d:n4943 +N4943 +6 March 2023 + +WG21 February 2023 Issaquah Minutes of Meeting +https://wg21.link/n4943 + + + + +Nina Ranns +- +d:n4944 +N4944 +22 March 2023 + +Working Draft, Standard for Programming Language C++ +https://wg21.link/n4944 + + + + +Thomas Köppe +- +d:n4945 +N4945 +23 March 2023 + +Editors' Report - Programming Languages - C++ +https://wg21.link/n4945 + + + + +Thomas Köppe +- +d:n4946 +N4946 +14 April 2023 + +2024-03 Tokyo meeting information +https://wg21.link/n4946 + + + + +JF Bastien +- +d:n4947 +N4947 +2 May 2023 + +INCITS C++/WG21 agenda: 12-17 June 2023, Varna, Bulgaria +https://wg21.link/n4947 + + + + +John Spicer +- +d:n4948 +N4948 +8 May 2023 + +Working Draft, C++ Extensions for Library Fundamentals, Version 3 +https://wg21.link/n4948 + + + + +Thomas Köppe +- +d:n4949 +N4949 +8 May 2023 + +Editor's Report: C++ Extensions for Library Fundamentals, Version 3 +https://wg21.link/n4949 + + + + +Thomas Köppe +- +d:n4950 +N4950 +10 May 2023 + +Working Draft, Standard for Programming Language C++ +https://wg21.link/n4950 + + + + +Thomas Köppe +- +d:n4951 +N4951 +10 May 2023 + +Editors' Report - Programming Languages - C++ +https://wg21.link/n4951 + + + + +Thomas Köppe +- +d:n4953 +N4953 +15 May 2023 + +Concurrency TS2 +https://wg21.link/n4953 + + + + +Michael Wong +- +d:n4954 +N4954 +18 May 2023 + +2023 WG21 admin telecon meetings, rev. 1 +https://wg21.link/n4954 + + + + +Herb Sutter +- +d:n4955 +N4955 +5 June 2023 + +WG21 2023-06 Admin telecon minutes +https://wg21.link/n4955 + + + + +Nina Ranns +- +d:n4956 +N4956 +15 August 2023 + +Concurrency TS2 PDTS +https://wg21.link/n4956 + + + + +Michael Wong +- +d:n4957 +N4957 +28 June 2023 + +WG21 June 2023 Varna Minutes of Meeting +https://wg21.link/n4957 + + + + +Nina Ranns +- +d:n4958 +N4958 +14 August 2023 + +Working Draft, Programming Languages — C++ +https://wg21.link/n4958 + + + + +Thomas Köppe +- +d:n4959 +N4959 +14 August 2023 + +Editors' Report, Programming Languages — C++ +https://wg21.link/n4959 + + + + +Thomas Köppe +- +d:n4960 +N4960 +9 August 2023 + +Business Plan and Convener's Report: ISO/IEC JTC1/SC22/WG21 (C++) +https://wg21.link/n4960 + + + + +Herb Sutter +- +d:n4961 +N4961 +2 October 2023 + +2024-03 Tokyo meeting information +https://wg21.link/n4961 + + + + +JF Bastien +- +d:n4962 +N4962 +7 October 2023 + +WG21 agenda: 6-11 November 2023, Kona, HI +https://wg21.link/n4962 + + + + +John Spicer +- +d:n4963 +N4963 +1 October 2023 + +2023 WG21 admin telecon meetings, rev. 2 +https://wg21.link/n4963 + + + + +Herb Sutter +- +d:n4964 +N4964 +15 October 2023 + +Working Draft, Programming Languages — C++ +https://wg21.link/n4964 + + + + +Thomas Köppe +- +d:n4965 +N4965 +15 October 2023 + +Editors' Report, Programming Languages — C++ +https://wg21.link/n4965 + + + + +Thomas Köppe +- +d:n4966 +N4966 +19 October 2023 + +St. Louis Meeting Invitation and Information +https://wg21.link/n4966 + + + + +Bill Seymour +- +d:n4967 +N4967 +20231030 + +WG21 2023-10 Admin telecon minutes +https://wg21.link/n4967 + + + + +Nina Ranns +- +d:n4970 +N4970 +29 November 2023 + +WG21 2023-11 Kona Minutes of Meeting +https://wg21.link/n4970 + + + + +Nina Ranns +- +d:n4971 +N4971 +18 December 2023 + +Working Draft, Programming Languages — C++ +https://wg21.link/n4971 + + + + +Thomas Köppe +- +d:n4972 +N4972 +18 December 2023 + +Editors' Report, Programming Languages — C++ +https://wg21.link/n4972 + + + + +Thomas Köppe +- +d:n4974 +N4974 +18 March 2024 + +2024-11 Wroclaw meeting information +https://wg21.link/n4974 + + + + +Herb Sutter +- +d:n4975 +N4975 +21 February 2024 + +2024 WG21 admin telecon meetings +https://wg21.link/n4975 + + + + +Herb Sutter +- +d:n4976 +N4976 +26 February 2024 + +WG21 agenda: 18-23 March 2024, Tokyo, Japan +https://wg21.link/n4976 + + + + +John Spicer +- +d:n4978 +N4978 +11 March 2024 + +WG21 2024-03 Admin telecon minutes +https://wg21.link/n4978 + + + + +Nina Ranns +- +d:n4979 +N4979 +22 March 2024 + +Hagenberg Meeting Invitation and Information +https://wg21.link/n4979 + + + + +Peter Kulczycki, Michael Hava +- +d:n4980 +N4980 +5 April 2024 + +WG21 2024-03 Tokyo Minutes of Meeting +https://wg21.link/n4980 + + + + +Nina Ranns +- +d:n4981 +N4981 +16 April 2024 + +Working Draft, Programming Languages — C++ +https://wg21.link/n4981 + + + + +Thomas Köppe +- +d:n4982 +N4982 +16 April 2024 + +Editors' Report, Programming Languages — C++ +https://wg21.link/n4982 + + + + +Thomas Köppe +- +d:n4983 +N4983 +19 May 2024 + +WG21 agenda: 24-29 June 2024, St. Louis, MO, USA +https://wg21.link/n4983 + + + + +John Spicer +- +d:n4984 +N4984 +17 June 2024 + +WG21 June 2024 Admin Minutes of Meeting +https://wg21.link/n4984 + + + + +Nina Ranns +- +d:n4985 +N4985 +11 July 2024 + +WG21 2024-06 St Louis Minutes of Meeting +https://wg21.link/n4985 + + + + +Nina Ranns +- +d:n4986 +N4986 +16 July 2024 + +Working Draft, Programming Languages — C++ +https://wg21.link/n4986 + + + + +Thomas Köppe +- +d:n4987 +N4987 +16 July 2024 + +Editors' Report, Programming Languages — C++ +https://wg21.link/n4987 + + + + +Thomas Köppe +- +d:n4988 +N4988 +5 August 2024 + +Working Draft, Programming Languages — C++ +https://wg21.link/n4988 + + + + +Thomas Köppe +- +d:n4989 +N4989 +5 August 2024 + +Editors' Report, Programming Languages — C++ +https://wg21.link/n4989 + + + + Thomas Köppe - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-na.data b/bikeshed/spec-data/readonly/biblio/biblio-na.data index 3092b6edb6..1f1383d18e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-na.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-na.data @@ -115,54 +115,81 @@ https://www.w3.org/TR/2022/DNOTE-naur-20220903/ Jason White Joshue O'Connor +- +d:nav-tracking-mitigations +NAV-TRACKING-MITIGATIONS + +Editor's Draft +Navigational-Tracking Mitigations +https://privacycg.github.io/nav-tracking-mitigations/ + + + + - a:navigation-error-logging navigation-error-logging -network-error-logging-1 +network-error-logging - a:navigation-error-logging-20140211 navigation-error-logging-20140211 -network-error-logging-1-20140211 +network-error-logging-20140211 - a:navigation-error-logging-20150305 navigation-error-logging-20150305 -network-error-logging-1-20150305 +network-error-logging-20150305 - a:navigation-error-logging-20150423 navigation-error-logging-20150423 -network-error-logging-1-20150423 +network-error-logging-20150423 - a:navigation-error-logging-20150916 navigation-error-logging-20150916 -network-error-logging-1-20150916 +network-error-logging-20150916 - a:navigation-error-logging-20150929 navigation-error-logging-20150929 -network-error-logging-1-20150929 +network-error-logging-20150929 - a:navigation-error-logging-20151027 navigation-error-logging-20151027 -network-error-logging-1-20151027 +network-error-logging-20151027 - a:navigation-error-logging-20160204 navigation-error-logging-20160204 -network-error-logging-1-20160204 +network-error-logging-20160204 - a:navigation-error-logging-20160225 navigation-error-logging-20160225 -network-error-logging-1-20160225 +network-error-logging-20160225 - a:navigation-error-logging-20160524 navigation-error-logging-20160524 -network-error-logging-1-20160524 +network-error-logging-20160524 - a:navigation-error-logging-20160720 navigation-error-logging-20160720 -network-error-logging-1-20160720 +network-error-logging-20160720 - a:navigation-error-logging-20180925 navigation-error-logging-20180925 -network-error-logging-1-20180925 +network-error-logging-20180925 +- +a:navigation-error-logging-20230927 +navigation-error-logging-20230927 +network-error-logging-20230927 +- +a:navigation-error-logging-20230929 +navigation-error-logging-20230929 +network-error-logging-20230929 +- +a:navigation-error-logging-20231003 +navigation-error-logging-20231003 +network-error-logging-20231003 +- +a:navigation-error-logging-20231005 +navigation-error-logging-20231005 +network-error-logging-20231005 - d:navigation-timing navigation-timing @@ -178,7 +205,7 @@ Zhiheng Wang - d:navigation-timing-2 navigation-timing-2 -7 September 2022 +29 July 2024 WD Navigation Timing Level 2 https://www.w3.org/TR/navigation-timing-2/ @@ -996,6 +1023,84 @@ https://www.w3.org/TR/2022/WD-navigation-timing-2-20220907/ +Yoav Weiss +Noam Rosenthal +- +d:navigation-timing-2-20230206 +navigation-timing-2-20230206 +6 February 2023 +WD +Navigation Timing Level 2 +https://www.w3.org/TR/2023/WD-navigation-timing-2-20230206/ +https://www.w3.org/TR/2023/WD-navigation-timing-2-20230206/ + + + +Yoav Weiss +Noam Rosenthal +- +d:navigation-timing-2-20230607 +navigation-timing-2-20230607 +7 June 2023 +WD +Navigation Timing Level 2 +https://www.w3.org/TR/2023/WD-navigation-timing-2-20230607/ +https://www.w3.org/TR/2023/WD-navigation-timing-2-20230607/ + + + +Yoav Weiss +Noam Rosenthal +- +d:navigation-timing-2-20231024 +navigation-timing-2-20231024 +24 October 2023 +WD +Navigation Timing Level 2 +https://www.w3.org/TR/2023/WD-navigation-timing-2-20231024/ +https://www.w3.org/TR/2023/WD-navigation-timing-2-20231024/ + + + +Yoav Weiss +Noam Rosenthal +- +d:navigation-timing-2-20240201 +navigation-timing-2-20240201 +1 February 2024 +WD +Navigation Timing Level 2 +https://www.w3.org/TR/2024/WD-navigation-timing-2-20240201/ +https://www.w3.org/TR/2024/WD-navigation-timing-2-20240201/ + + + +Yoav Weiss +Noam Rosenthal +- +d:navigation-timing-2-20240307 +navigation-timing-2-20240307 +7 March 2024 +WD +Navigation Timing Level 2 +https://www.w3.org/TR/2024/WD-navigation-timing-2-20240307/ +https://www.w3.org/TR/2024/WD-navigation-timing-2-20240307/ + + + +Yoav Weiss +Noam Rosenthal +- +d:navigation-timing-2-20240729 +navigation-timing-2-20240729 +29 July 2024 +WD +Navigation Timing Level 2 +https://www.w3.org/TR/2024/WD-navigation-timing-2-20240729/ +https://www.w3.org/TR/2024/WD-navigation-timing-2-20240729/ + + + Yoav Weiss Noam Rosenthal - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ne.data b/bikeshed/spec-data/readonly/biblio/biblio-ne.data index 05a33baf98..a5b3501a16 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ne.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ne.data @@ -85,29 +85,85 @@ Marcos Caceres Fernando Jiménez Moreno Ernesto Jimenez - -a:network-error-logging +d:network-error-logging network-error-logging -network-error-logging-1 -- -d:network-error-logging-1 -network-error-logging-1 -25 September 2018 +5 October 2023 WD Network Error Logging -https://www.w3.org/TR/network-error-logging-1/ +https://www.w3.org/TR/network-error-logging/ https://w3c.github.io/network-error-logging/ Douglas Creager -Ilya Grigorik -Julia Tuttle -Alois Reitbauer -Arvind Jain -Jatinder Mann +Ian Clelland - -d:network-error-logging-1-20140211 +a:network-error-logging-1 +network-error-logging-1 +network-error-logging +- +a:network-error-logging-1-20140211 network-error-logging-1-20140211 +network-error-logging-20140211 +- +a:network-error-logging-1-20150305 +network-error-logging-1-20150305 +network-error-logging-20150305 +- +a:network-error-logging-1-20150423 +network-error-logging-1-20150423 +network-error-logging-20150423 +- +a:network-error-logging-1-20150916 +network-error-logging-1-20150916 +network-error-logging-20150916 +- +a:network-error-logging-1-20150929 +network-error-logging-1-20150929 +network-error-logging-20150929 +- +a:network-error-logging-1-20151027 +network-error-logging-1-20151027 +network-error-logging-20151027 +- +a:network-error-logging-1-20160204 +network-error-logging-1-20160204 +network-error-logging-20160204 +- +a:network-error-logging-1-20160225 +network-error-logging-1-20160225 +network-error-logging-20160225 +- +a:network-error-logging-1-20160524 +network-error-logging-1-20160524 +network-error-logging-20160524 +- +a:network-error-logging-1-20160720 +network-error-logging-1-20160720 +network-error-logging-20160720 +- +a:network-error-logging-1-20180925 +network-error-logging-1-20180925 +network-error-logging-20180925 +- +a:network-error-logging-1-20230927 +network-error-logging-1-20230927 +network-error-logging-20230927 +- +a:network-error-logging-1-20230929 +network-error-logging-1-20230929 +network-error-logging-20230929 +- +a:network-error-logging-1-20231003 +network-error-logging-1-20231003 +network-error-logging-20231003 +- +a:network-error-logging-1-20231005 +network-error-logging-1-20231005 +network-error-logging-20231005 +- +d:network-error-logging-20140211 +network-error-logging-20140211 11 February 2014 WD Navigation Error Logging @@ -120,8 +176,8 @@ Arvind Jain Jatinder Mann Alois Reitbauer - -d:network-error-logging-1-20150305 -network-error-logging-1-20150305 +d:network-error-logging-20150305 +network-error-logging-20150305 5 March 2015 WD Network Error Logging @@ -134,8 +190,8 @@ Ilya Grigorik Arvind Jain Jatinder Mann - -d:network-error-logging-1-20150423 -network-error-logging-1-20150423 +d:network-error-logging-20150423 +network-error-logging-20150423 23 April 2015 WD Network Error Logging @@ -149,8 +205,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20150916 -network-error-logging-1-20150916 +d:network-error-logging-20150916 +network-error-logging-20150916 16 September 2015 WD Network Error Logging @@ -164,8 +220,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20150929 -network-error-logging-1-20150929 +d:network-error-logging-20150929 +network-error-logging-20150929 29 September 2015 WD Network Error Logging @@ -179,8 +235,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20151027 -network-error-logging-1-20151027 +d:network-error-logging-20151027 +network-error-logging-20151027 27 October 2015 WD Network Error Logging @@ -194,8 +250,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20160204 -network-error-logging-1-20160204 +d:network-error-logging-20160204 +network-error-logging-20160204 4 February 2016 WD Network Error Logging @@ -209,8 +265,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20160225 -network-error-logging-1-20160225 +d:network-error-logging-20160225 +network-error-logging-20160225 25 February 2016 WD Network Error Logging @@ -224,8 +280,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20160524 -network-error-logging-1-20160524 +d:network-error-logging-20160524 +network-error-logging-20160524 24 May 2016 NOTE Network Error Logging @@ -239,8 +295,8 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -d:network-error-logging-1-20160720 -network-error-logging-1-20160720 +d:network-error-logging-20160720 +network-error-logging-20160720 20 July 2016 NOTE Network Error Logging @@ -250,14 +306,10 @@ https://www.w3.org/TR/2016/NOTE-network-error-logging-20160720/ Douglas Creager -Ilya Grigorik -Julia Tuttle -Alois Reitbauer -Arvind Jain -Jatinder Mann +Ian Clelland - -d:network-error-logging-1-20180925 -network-error-logging-1-20180925 +d:network-error-logging-20180925 +network-error-logging-20180925 25 September 2018 WD Network Error Logging @@ -273,49 +325,68 @@ Alois Reitbauer Arvind Jain Jatinder Mann - -a:network-error-logging-20140211 -network-error-logging-20140211 -network-error-logging-1-20140211 -- -a:network-error-logging-20150305 -network-error-logging-20150305 -network-error-logging-1-20150305 -- -a:network-error-logging-20150423 -network-error-logging-20150423 -network-error-logging-1-20150423 -- -a:network-error-logging-20150916 -network-error-logging-20150916 -network-error-logging-1-20150916 -- -a:network-error-logging-20150929 -network-error-logging-20150929 -network-error-logging-1-20150929 -- -a:network-error-logging-20151027 -network-error-logging-20151027 -network-error-logging-1-20151027 -- -a:network-error-logging-20160204 -network-error-logging-20160204 -network-error-logging-1-20160204 +d:network-error-logging-20230927 +network-error-logging-20230927 +27 September 2023 +WD +Network Error Logging +https://www.w3.org/TR/2023/WD-network-error-logging-1-20230927/ +https://www.w3.org/TR/2023/WD-network-error-logging-1-20230927/ + + + +Douglas Creager +Ian Clelland - -a:network-error-logging-20160225 -network-error-logging-20160225 -network-error-logging-1-20160225 +d:network-error-logging-20230929 +network-error-logging-20230929 +29 September 2023 +WD +Network Error Logging +https://www.w3.org/TR/2023/WD-network-error-logging-1-20230929/ +https://www.w3.org/TR/2023/WD-network-error-logging-1-20230929/ + + + +Douglas Creager +Ian Clelland - -a:network-error-logging-20160524 -network-error-logging-20160524 -network-error-logging-1-20160524 +d:network-error-logging-20231003 +network-error-logging-20231003 +3 October 2023 +WD +Network Error Logging +https://www.w3.org/TR/2023/WD-network-error-logging-20231003/ +https://www.w3.org/TR/2023/WD-network-error-logging-20231003/ + + + +Ian Clelland +Douglas Creager - -a:network-error-logging-20160720 -network-error-logging-20160720 -network-error-logging-1-20160720 +d:network-error-logging-20231005 +network-error-logging-20231005 +5 October 2023 +WD +Network Error Logging +https://www.w3.org/TR/2023/WD-network-error-logging-20231005/ +https://www.w3.org/TR/2023/WD-network-error-logging-20231005/ + + + +Douglas Creager +Ian Clelland - -a:network-error-logging-20180925 -network-error-logging-20180925 -network-error-logging-1-20180925 +d:network-reporting +NETWORK-REPORTING + +Editor's Draft +Network Reporting API +https://w3c.github.io/reporting/network-reporting.html + + + + - d:newline newline diff --git a/bikeshed/spec-data/readonly/biblio/biblio-nk.data b/bikeshed/spec-data/readonly/biblio/biblio-nk.data index b0b93d1f6b..a3d801393c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-nk.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-nk.data @@ -1,6 +1,6 @@ d:nkoo-gap nkoo-gap -12 July 2022 +9 July 2024 NOTE N’Ko Gap Analysis https://www.w3.org/TR/nkoo-gap/ @@ -104,5 +104,221 @@ https://www.w3.org/TR/2022/DNOTE-nkoo-gap-20220712/ +Richard Ishida +- +d:nkoo-gap-20230608 +nkoo-gap-20230608 +8 June 2023 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230608/ +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230608/ + + + +Richard Ishida +- +d:nkoo-gap-20230615 +nkoo-gap-20230615 +15 June 2023 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230615/ + + + +Richard Ishida +- +d:nkoo-gap-20230627 +nkoo-gap-20230627 +27 June 2023 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230627/ +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230627/ + + + +Richard Ishida +- +d:nkoo-gap-20230727 +nkoo-gap-20230727 +27 July 2023 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230727/ +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230727/ + + + +Richard Ishida +- +d:nkoo-gap-20230807 +nkoo-gap-20230807 +7 August 2023 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230807/ +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230807/ + + + +Richard Ishida +- +d:nkoo-gap-20231004 +nkoo-gap-20231004 +4 October 2023 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20231004/ + + + +Richard Ishida +- +d:nkoo-gap-20240701 +nkoo-gap-20240701 +1 July 2024 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2024/DNOTE-nkoo-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-nkoo-gap-20240701/ + + + +Richard Ishida +- +d:nkoo-gap-20240704 +nkoo-gap-20240704 +4 July 2024 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2024/DNOTE-nkoo-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-nkoo-gap-20240704/ + + + +Richard Ishida +- +d:nkoo-gap-20240709 +nkoo-gap-20240709 +9 July 2024 +NOTE +N’Ko Gap Analysis +https://www.w3.org/TR/2024/DNOTE-nkoo-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-nkoo-gap-20240709/ + + + +Richard Ishida +- +d:nkoo-lreq +nkoo-lreq +15 August 2024 +NOTE +N’Ko Script Resources +https://www.w3.org/TR/nkoo-lreq/ +https://w3c.github.io/afrlreq/nko/ + + + +Richard Ishida +- +d:nkoo-lreq-20230613 +nkoo-lreq-20230613 +13 June 2023 +NOTE +N'Ko Layout Requirements +https://www.w3.org/TR/2023/DNOTE-nkoo-lreq-20230613/ +https://www.w3.org/TR/2023/DNOTE-nkoo-lreq-20230613/ + + + +Richard Ishida +- +d:nkoo-lreq-20240510 +nkoo-lreq-20240510 +10 May 2024 +NOTE +N’Ko Layout Requirements +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240510/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240510/ + + + +Richard Ishida +- +d:nkoo-lreq-20240515 +nkoo-lreq-20240515 +15 May 2024 +NOTE +N’Ko Layout Requirements +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240515/ + + + +Richard Ishida +- +d:nkoo-lreq-20240701 +nkoo-lreq-20240701 +1 July 2024 +NOTE +N’Ko Layout Requirements +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240701/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240701/ + + + +Richard Ishida +- +d:nkoo-lreq-20240704 +nkoo-lreq-20240704 +4 July 2024 +NOTE +N’Ko Layout Requirements +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240704/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240704/ + + + +Richard Ishida +- +d:nkoo-lreq-20240709 +nkoo-lreq-20240709 +9 July 2024 +NOTE +N’Ko Script Resources +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240709/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240709/ + + + +Richard Ishida +- +d:nkoo-lreq-20240802 +nkoo-lreq-20240802 +2 August 2024 +NOTE +N’Ko Script Resources +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240802/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240802/ + + + +Richard Ishida +- +d:nkoo-lreq-20240815 +nkoo-lreq-20240815 +15 August 2024 +NOTE +N’Ko Script Resources +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-nkoo-lreq-20240815/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-no.data b/bikeshed/spec-data/readonly/biblio/biblio-no.data index d8ea4bf9c1..ee8fd3bbf5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-no.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-no.data @@ -1,3 +1,14 @@ +d:no-vary-search +NO-VARY-SEARCH + +Draft Community Group Report +No-Vary-Search +https://wicg.github.io/nav-speculation/no-vary-search.html + + + + +- d:note-ccpp NOTE-CCPP 27 July 1999 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-oa.data b/bikeshed/spec-data/readonly/biblio/biblio-oa.data index f5ce2cfb5c..bfcb768a2f 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-oa.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-oa.data @@ -164,6 +164,18 @@ Herbert Van de Sompel Michael Nelson Simeon Warner - +d:oandm +OandM +2011 +OGC Abstract Specification Topic 20 +Observations and Measurements (O&M) v2 +https://portal.ogc.org/files/?artifact_id=41579 + +oms + + +Simon Cox +- s:oasis-tag OASIS-TAG Stephen D. Green, Dmitry Kostovarov. <a href="http://docs.oasis-open.org/tag/guidelines/v1.0/testassertionsguidelines.html"><cite>Test Assertions Guidelines</cite></a>. OASIS Committee Draft (Work in progress) .URL: <a href="http://docs.oasis-open.org/tag/guidelines/v1.0/testassertionsguidelines.html">http://docs.oasis-open.org/tag/guidelines/v1.0/testassertionsguidelines.html</a> diff --git a/bikeshed/spec-data/readonly/biblio/biblio-oe.data b/bikeshed/spec-data/readonly/biblio/biblio-oe.data index 2418a0d0f7..a29cd30d31 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-oe.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-oe.data @@ -1,4 +1,103 @@ s:oeb101 OEB101 <a href="http://www.openebook.org/oebps/oebps1.0.1/download/oeb101-xhtml.htm"><cite>Open eBook(tm) Publication Structure 1.0.1.</cite></a> Open eBook Forum(tm). 02 July 2001. URL: <a href="http://www.openebook.org/oebps/oebps1.0.1/download/oeb101-xhtml.htm">http://www.openebook.org/oebps/oebps1.0.1/download/oeb101-xhtml.htm</a> +- +d:oes_draw_buffers_indexed +OES_DRAW_BUFFERS_INDEXED + +Editor's Draft +WebGL OES_draw_buffers_indexed Extension Specification +https://registry.khronos.org/webgl/extensions/OES_draw_buffers_indexed/ + + + + +- +d:oes_element_index_uint +OES_ELEMENT_INDEX_UINT + +Editor's Draft +WebGL OES_element_index_uint Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_element_index_uint/ + + + + +- +d:oes_fbo_render_mipmap +OES_FBO_RENDER_MIPMAP + +Editor's Draft +WebGL OES_fbo_render_mipmap Extension Specification +https://registry.khronos.org/webgl/extensions/OES_fbo_render_mipmap/ + + + + +- +d:oes_standard_derivatives +OES_STANDARD_DERIVATIVES + +Editor's Draft +WebGL OES_standard_derivatives Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_standard_derivatives/ + + + + +- +d:oes_texture_float +OES_TEXTURE_FLOAT + +Editor's Draft +WebGL OES_texture_float Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_texture_float/ + + + + +- +d:oes_texture_float_linear +OES_TEXTURE_FLOAT_LINEAR + +Editor's Draft +WebGL OES_texture_float_linear Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_texture_float_linear/ + + + + +- +d:oes_texture_half_float +OES_TEXTURE_HALF_FLOAT + +Editor's Draft +WebGL OES_texture_half_float Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_texture_half_float/ + + + + +- +d:oes_texture_half_float_linear +OES_TEXTURE_HALF_FLOAT_LINEAR + +Editor's Draft +WebGL OES_texture_half_float_linear Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_texture_half_float_linear/ + + + + +- +d:oes_vertex_array_object +OES_VERTEX_ARRAY_OBJECT + +Editor's Draft +WebGL OES_vertex_array_object Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/OES_vertex_array_object/ + + + + - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-om.data b/bikeshed/spec-data/readonly/biblio/biblio-om.data index d041dbe8d9..2decdc1344 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-om.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-om.data @@ -31,4 +31,29 @@ http://www.omg.org/cgi-bin/doc?formal/08-01-04.pdf +- +d:oms +OMS +2023 +OGC Abstract Specification Topic 20 +Observations, measurements and samples (OMS) +https://docs.ogc.org/as/20-082r4/20-082r4.html + + + + +Katharina Schleidt +Ilkka Rinne +- +d:omxml +OMXML +2010 +OGC Encoding Standard +Observations and Measurements - XML Implementation +http://portal.opengeospatial.org/files/41510 + + + + +S.J.D. Cox - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-op.data b/bikeshed/spec-data/readonly/biblio/biblio-op.data index cc73860c21..2fc44ab37c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-op.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-op.data @@ -17,6 +17,14 @@ a:openapi-2.0 OPENAPI-2.0 OPENAPIS-2.0 - +a:openapi-3.0.0 +OPENAPI-3.0.0 +OPENAPIS-3.0.0 +- +a:openapi-3.0.1 +OPENAPI-3.0.1 +OPENAPIS-3.0.1 +- a:openapi-3.0.2 OPENAPI-3.0.2 OPENAPIS-3.0.2 @@ -28,6 +36,28 @@ OPENAPIS-3.0.3 a:openapi-3.1.0 OPENAPI-3.1.0 OPENAPIS-3.1.0 +- +d:openapi-learn +OPENAPI-LEARN + + +OpenAPI - Getting started, and the specification explained +https://learn.openapis.org/ + + + + +- +d:openapi-registry +OPENAPI-REGISTRY + + +OpenAPI Initiative Registry +https://spec.openapis.org/registry/index.html + + + + - d:openapis OPENAPIS @@ -40,38 +70,67 @@ https://www.openapis.org/ Darrell Miller +Jason Harmon Jeremy Whitlock Marsh Gardiner Mike Ralphson Ron Ratovsky -Uri Sarid Tony Tam -Jason Harmon +Uri Sarid - d:openapis-2.0 OPENAPIS-2.0 8 September 2014 OpenAPI Specification - version 2.0 -http://spec.openapis.org/oas/v2.0 -http://spec.openapis.org/oas/v2.0 +https://spec.openapis.org/oas/v2.0.html +https://spec.openapis.org/oas/v2.0.html + + + +Jeremy Whitlock +Marsh Gardiner +Ron Ratovsky +Tony Tam +- +d:openapis-3.0.0 +OPENAPIS-3.0.0 +26 July 2017 + +OpenAPI Specification - version 3.0.0 +https://spec.openapis.org/oas/v3.0.0 +https://spec.openapis.org/oas/v3.0.0 -Darrell Miller -Jason Harmon Jeremy Whitlock Marsh Gardiner Ron Ratovsky Tony Tam - +d:openapis-3.0.1 +OPENAPIS-3.0.1 +6 December 2017 + +OpenAPI Specification - version 3.0.1 +https://spec.openapis.org/oas/v3.0.1 +https://spec.openapis.org/oas/v3.0.1 + + + +Darrell Miller +Jeremy Whitlock +Marsh Gardiner +Mike Ralphson +Ron Ratovsky +- d:openapis-3.0.2 OPENAPIS-3.0.2 8 October 2018 OpenAPI Specification - version 3.0.2 -http://spec.openapis.org/oas/v3.0.2 -http://spec.openapis.org/oas/v3.0.2 +https://spec.openapis.org/oas/v3.0.2 +https://spec.openapis.org/oas/v3.0.2 @@ -87,8 +146,8 @@ OPENAPIS-3.0.3 20 February 2020 OpenAPI Specification - version 3.0.3 -http://spec.openapis.org/oas/v3.0.3 -http://spec.openapis.org/oas/v3.0.3 +https://spec.openapis.org/oas/v3.0.3 +https://spec.openapis.org/oas/v3.0.3 @@ -104,8 +163,8 @@ OPENAPIS-3.1.0 15 February 2021 OpenAPI Specification - version 3.1.0 -http://spec.openapis.org/oas/v3.1.0 -http://spec.openapis.org/oas/v3.1.0 +https://spec.openapis.org/oas/v3.1.0 +https://spec.openapis.org/oas/v3.1.0 @@ -116,9 +175,40 @@ Mike Ralphson Ron Ratovsky Uri Sarid - +d:openid-connect-core +OPENID-CONNECT-CORE +15 December 2023 +Final +OpenID Connect Core 1.0 incorporating errata set 2 +https://openid.net/specs/openid-connect-core-1_0.html + + + + +N. Sakimura +J. Bradley +M. Jones +B. de Medeiros +C. Mortimore +- +d:openid-connect-discovery +OPENID-CONNECT-DISCOVERY +15 December 2023 +Final +OpenID Connect Discovery 1.0 incorporating errata set 2 +https://openid.net/specs/openid-connect-discovery-1_0.html + + + + +N. Sakimura +J. Bradley +M. Jones +E. Jay +- d:openscreenprotocol openscreenprotocol -12 December 2022 +1 August 2024 WD Open Screen Protocol https://www.w3.org/TR/openscreenprotocol/ @@ -234,6 +324,162 @@ https://www.w3.org/TR/2022/WD-openscreenprotocol-20221212/ +Mark Foltz +- +d:openscreenprotocol-20230305 +openscreenprotocol-20230305 +5 March 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20230305/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20230305/ + + + +Mark Foltz +- +d:openscreenprotocol-20230908 +openscreenprotocol-20230908 +8 September 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20230908/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20230908/ + + + +Mark Foltz +- +d:openscreenprotocol-20230911 +openscreenprotocol-20230911 +11 September 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20230911/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20230911/ + + + +Mark Foltz +- +d:openscreenprotocol-20231004 +openscreenprotocol-20231004 +4 October 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231004/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231004/ + + + +Mark Foltz +- +d:openscreenprotocol-20231012 +openscreenprotocol-20231012 +12 October 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231012/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231012/ + + + +Mark Foltz +- +d:openscreenprotocol-20231013 +openscreenprotocol-20231013 +13 October 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231013/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231013/ + + + +Mark Foltz +- +d:openscreenprotocol-20231016 +openscreenprotocol-20231016 +16 October 2023 +WD +Open Screen Protocol +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231016/ +https://www.w3.org/TR/2023/WD-openscreenprotocol-20231016/ + + + +Mark Foltz +- +d:openscreenprotocol-20240122 +openscreenprotocol-20240122 +22 January 2024 +WD +Open Screen Protocol +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240122/ +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240122/ + + + +Mark Foltz +- +d:openscreenprotocol-20240228 +openscreenprotocol-20240228 +28 February 2024 +WD +Open Screen Protocol +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240228/ +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240228/ + + + +Mark Foltz +- +d:openscreenprotocol-20240425 +openscreenprotocol-20240425 +25 April 2024 +WD +Open Screen Protocol +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240425/ +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240425/ + + + +Mark Foltz +- +d:openscreenprotocol-20240531 +openscreenprotocol-20240531 +31 May 2024 +WD +Open Screen Protocol +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240531/ +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240531/ + + + +Mark Foltz +- +d:openscreenprotocol-20240603 +openscreenprotocol-20240603 +3 June 2024 +WD +Open Screen Protocol +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240603/ +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240603/ + + + +Mark Foltz +- +d:openscreenprotocol-20240801 +openscreenprotocol-20240801 +1 August 2024 +WD +Open Screen Protocol +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240801/ +https://www.w3.org/TR/2024/WD-openscreenprotocol-20240801/ + + + Mark Foltz - s:opensearch diff --git a/bikeshed/spec-data/readonly/biblio/biblio-or.data b/bikeshed/spec-data/readonly/biblio/biblio-or.data index 5a0e6aa1b4..0fd41772da 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-or.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-or.data @@ -1,32 +1,30 @@ d:orientation-event orientation-event -9 January 2023 +14 May 2024 WD -DeviceOrientation Event Specification +Device Orientation and Motion https://www.w3.org/TR/orientation-event/ https://w3c.github.io/deviceorientation/ -Rich Tibbett -Tim Volodine -Stephen Block -Andrei Popescu +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres - d:orientation-event-20110628 orientation-event-20110628 28 June 2011 WD -DeviceOrientation Event Specification +Device Orientation and Motion https://www.w3.org/TR/2011/WD-orientation-event-20110628/ https://www.w3.org/TR/2011/WD-orientation-event-20110628/ -Rich Tibbett -Tim Volodine -Stephen Block -Andrei Popescu +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres - d:orientation-event-20111201 orientation-event-20111201 @@ -96,10 +94,9 @@ https://www.w3.org/TR/2022/WD-orientation-event-20220610/ -Rich Tibbett -Tim Volodine -Stephen Block -Andrei Popescu +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres - d:orientation-event-20220919 orientation-event-20220919 @@ -111,10 +108,9 @@ https://www.w3.org/TR/2022/WD-orientation-event-20220919/ -Rich Tibbett -Tim Volodine -Stephen Block -Andrei Popescu +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres - d:orientation-event-20230109 orientation-event-20230109 @@ -126,14 +122,311 @@ https://www.w3.org/TR/2023/WD-orientation-event-20230109/ -Rich Tibbett -Tim Volodine -Stephen Block -Andrei Popescu +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20230130 +orientation-event-20230130 +30 January 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20230130/ +https://www.w3.org/TR/2023/WD-orientation-event-20230130/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20230322 +orientation-event-20230322 +22 March 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20230322/ +https://www.w3.org/TR/2023/WD-orientation-event-20230322/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20230403 +orientation-event-20230403 +3 April 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20230403/ +https://www.w3.org/TR/2023/WD-orientation-event-20230403/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20230412 +orientation-event-20230412 +12 April 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20230412/ +https://www.w3.org/TR/2023/WD-orientation-event-20230412/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20230421 +orientation-event-20230421 +21 April 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20230421/ +https://www.w3.org/TR/2023/WD-orientation-event-20230421/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20231113 +orientation-event-20231113 +13 November 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20231113/ +https://www.w3.org/TR/2023/WD-orientation-event-20231113/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20231204 +orientation-event-20231204 +4 December 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20231204/ +https://www.w3.org/TR/2023/WD-orientation-event-20231204/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20231205 +orientation-event-20231205 +5 December 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20231205/ +https://www.w3.org/TR/2023/WD-orientation-event-20231205/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20231211 +orientation-event-20231211 +11 December 2023 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2023/WD-orientation-event-20231211/ +https://www.w3.org/TR/2023/WD-orientation-event-20231211/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240104 +orientation-event-20240104 +4 January 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240104/ +https://www.w3.org/TR/2024/WD-orientation-event-20240104/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240105 +orientation-event-20240105 +5 January 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240105/ +https://www.w3.org/TR/2024/WD-orientation-event-20240105/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240122 +orientation-event-20240122 +22 January 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240122/ +https://www.w3.org/TR/2024/WD-orientation-event-20240122/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240202 +orientation-event-20240202 +2 February 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240202/ +https://www.w3.org/TR/2024/WD-orientation-event-20240202/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240311 +orientation-event-20240311 +11 March 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240311/ +https://www.w3.org/TR/2024/WD-orientation-event-20240311/ + + + +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240411 +orientation-event-20240411 +11 April 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240411/ +https://www.w3.org/TR/2024/WD-orientation-event-20240411/ + + + +Marcos Caceres +Reilly Grant +Raphael Kubo da Costa +- +d:orientation-event-20240502 +orientation-event-20240502 +2 May 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240502/ +https://www.w3.org/TR/2024/WD-orientation-event-20240502/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20240503 +orientation-event-20240503 +3 May 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240503/ +https://www.w3.org/TR/2024/WD-orientation-event-20240503/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20240504 +orientation-event-20240504 +4 May 2024 +WD +DeviceOrientation Event Specification +https://www.w3.org/TR/2024/WD-orientation-event-20240504/ +https://www.w3.org/TR/2024/WD-orientation-event-20240504/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20240507 +orientation-event-20240507 +7 May 2024 +WD +Device Orientation and Motion +https://www.w3.org/TR/2024/WD-orientation-event-20240507/ +https://www.w3.org/TR/2024/WD-orientation-event-20240507/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20240508 +orientation-event-20240508 +8 May 2024 +WD +Device Orientation and Motion +https://www.w3.org/TR/2024/WD-orientation-event-20240508/ +https://www.w3.org/TR/2024/WD-orientation-event-20240508/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20240509 +orientation-event-20240509 +9 May 2024 +WD +Device Orientation and Motion +https://www.w3.org/TR/2024/WD-orientation-event-20240509/ +https://www.w3.org/TR/2024/WD-orientation-event-20240509/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres +- +d:orientation-event-20240514 +orientation-event-20240514 +14 May 2024 +WD +Device Orientation and Motion +https://www.w3.org/TR/2024/WD-orientation-event-20240514/ +https://www.w3.org/TR/2024/WD-orientation-event-20240514/ + + + +Reilly Grant +Raphael Kubo da Costa +Marcos Caceres - d:orientation-sensor orientation-sensor -2 September 2021 +10 January 2024 WD Orientation Sensor https://www.w3.org/TR/orientation-sensor/ @@ -143,8 +436,6 @@ https://w3c.github.io/orientation-sensor/ Kenneth Christiansen Anssi Kostiainen -Mikhail Pozdnyakov -Alexander Shalamov - d:orientation-sensor-20170511 orientation-sensor-20170511 @@ -290,6 +581,97 @@ Anssi Kostiainen Mikhail Pozdnyakov Alexander Shalamov - +d:orientation-sensor-20230801 +orientation-sensor-20230801 +1 August 2023 +WD +Orientation Sensor +https://www.w3.org/TR/2023/WD-orientation-sensor-20230801/ +https://www.w3.org/TR/2023/WD-orientation-sensor-20230801/ + + + +Kenneth Christiansen +Anssi Kostiainen +- +d:orientation-sensor-20231024 +orientation-sensor-20231024 +24 October 2023 +WD +Orientation Sensor +https://www.w3.org/TR/2023/WD-orientation-sensor-20231024/ +https://www.w3.org/TR/2023/WD-orientation-sensor-20231024/ + + + +Kenneth Christiansen +Anssi Kostiainen +- +d:orientation-sensor-20231025 +orientation-sensor-20231025 +25 October 2023 +WD +Orientation Sensor +https://www.w3.org/TR/2023/WD-orientation-sensor-20231025/ +https://www.w3.org/TR/2023/WD-orientation-sensor-20231025/ + + + +Kenneth Christiansen +Anssi Kostiainen +- +d:orientation-sensor-20231103 +orientation-sensor-20231103 +3 November 2023 +WD +Orientation Sensor +https://www.w3.org/TR/2023/WD-orientation-sensor-20231103/ +https://www.w3.org/TR/2023/WD-orientation-sensor-20231103/ + + + +Kenneth Christiansen +Anssi Kostiainen +- +d:orientation-sensor-20231128 +orientation-sensor-20231128 +28 November 2023 +WD +Orientation Sensor +https://www.w3.org/TR/2023/WD-orientation-sensor-20231128/ +https://www.w3.org/TR/2023/WD-orientation-sensor-20231128/ + + + +Kenneth Christiansen +Anssi Kostiainen +- +d:orientation-sensor-20240105 +orientation-sensor-20240105 +5 January 2024 +WD +Orientation Sensor +https://www.w3.org/TR/2024/WD-orientation-sensor-20240105/ +https://www.w3.org/TR/2024/WD-orientation-sensor-20240105/ + + + +Kenneth Christiansen +Anssi Kostiainen +- +d:orientation-sensor-20240110 +orientation-sensor-20240110 +10 January 2024 +WD +Orientation Sensor +https://www.w3.org/TR/2024/WD-orientation-sensor-20240110/ +https://www.w3.org/TR/2024/WD-orientation-sensor-20240110/ + + + +Kenneth Christiansen +Anssi Kostiainen +- a:origin ORIGIN RFC6454 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-os.data b/bikeshed/spec-data/readonly/biblio/biblio-os.data index 44051f0b77..3980e6b617 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-os.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-os.data @@ -1,7 +1,31 @@ +d:osge-lreq +osge-lreq +8 August 2024 +NOTE +Osage Script Resources +https://www.w3.org/TR/osge-lreq/ +https://w3c.github.io/amlreq/osge/ + + + +Richard Ishida +- +d:osge-lreq-20240808 +osge-lreq-20240808 +8 August 2024 +NOTE +Osage Script Resources +https://www.w3.org/TR/2024/DNOTE-osge-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-osge-lreq-20240808/ + + + +Richard Ishida +- d:osge-osa-gap osge-osa-gap -24 May 2021 -WD +9 July 2024 +NOTE Osage Gap Analysis https://www.w3.org/TR/osge-osa-gap/ https://w3c.github.io/amlreq/gap-analysis/osge-osa-gap @@ -32,5 +56,53 @@ https://www.w3.org/TR/2021/WD-osge-osa-gap-20210524/ +Richard Ishida +- +d:osge-osa-gap-20230614 +osge-osa-gap-20230614 +14 June 2023 +NOTE +Osage Gap Analysis +https://www.w3.org/TR/2023/DNOTE-osge-osa-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-osge-osa-gap-20230614/ + + + +Richard Ishida +- +d:osge-osa-gap-20240701 +osge-osa-gap-20240701 +1 July 2024 +NOTE +Osage Gap Analysis +https://www.w3.org/TR/2024/DNOTE-osge-osa-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-osge-osa-gap-20240701/ + + + +Richard Ishida +- +d:osge-osa-gap-20240704 +osge-osa-gap-20240704 +4 July 2024 +NOTE +Osage Gap Analysis +https://www.w3.org/TR/2024/DNOTE-osge-osa-gap-20240704/ +https://www.w3.org/TR/2024/DNOTE-osge-osa-gap-20240704/ + + + +Richard Ishida +- +d:osge-osa-gap-20240709 +osge-osa-gap-20240709 +9 July 2024 +NOTE +Osage Gap Analysis +https://www.w3.org/TR/2024/DNOTE-osge-osa-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-osge-osa-gap-20240709/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ov.data b/bikeshed/spec-data/readonly/biblio/biblio-ov.data new file mode 100644 index 0000000000..9f8ab1f45d --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-ov.data @@ -0,0 +1,22 @@ +d:overscroll-scrollend-events +OVERSCROLL-SCROLLEND-EVENTS + +Draft Community Group Report +overscroll and scrollend events +https://wicg.github.io/overscroll-scrollend-events/ + + + + +- +d:ovr_multiview2 +OVR_MULTIVIEW2 + +Editor's Draft +WebGL OVR_multiview2 Extension Specification +https://registry.khronos.org/webgl/extensions/OVR_multiview2/ + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ow.data b/bikeshed/spec-data/readonly/biblio/biblio-ow.data index 5152ddeec7..4c4dbec524 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ow.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ow.data @@ -867,7 +867,7 @@ https://www.w3.org/TR/owl2-conformance/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -882,7 +882,7 @@ https://www.w3.org/TR/2008/WD-owl2-test-20081008/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -897,7 +897,7 @@ https://www.w3.org/TR/2008/WD-owl2-test-20081202/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -912,7 +912,7 @@ https://www.w3.org/TR/2009/WD-owl2-test-20090421/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -927,7 +927,7 @@ https://www.w3.org/TR/2009/CR-owl2-conformance-20090611/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -942,7 +942,7 @@ https://www.w3.org/TR/2009/PR-owl2-conformance-20090922/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -957,7 +957,7 @@ https://www.w3.org/TR/2009/REC-owl2-conformance-20091027/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -972,7 +972,7 @@ https://www.w3.org/TR/2012/PER-owl2-conformance-20121018/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm @@ -987,7 +987,7 @@ https://www.w3.org/TR/2012/REC-owl2-conformance-20121211/ -Michael[tm] Smith +Michael[tm] Smith (sideshowbarker) Ian Horrocks Markus Krötzsch Birte Glimm diff --git a/bikeshed/spec-data/readonly/biblio/biblio-p0.data b/bikeshed/spec-data/readonly/biblio/biblio-p0.data index 77703e1ae7..e5f3ec6f7f 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-p0.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-p0.data @@ -3660,7 +3660,7 @@ Paul McKenney, Ulrich Weigand, Andrea Parri, Boqun Feng - d:p0124r7 P0124R7 -1 March 2020 +23 August 2023 Linux-Kernel Memory Model https://wg21.link/p0124r7 @@ -3668,7 +3668,19 @@ https://wg21.link/p0124r7 -Paul E. McKenney, Ulrich Weigand, Andrea Parri, Boqun Feng, and Alan Stern +Paul E. McKenney, Ulrich Weigand, Andrea Parri, Boqun Feng +- +d:p0124r8 +P0124R8 +23 August 2023 + +Linux-Kernel Memory Model +https://wg21.link/p0124r8 + + + + +Paul E. McKenney, Ulrich Weigand, Andrea Parri, Boqun Feng - d:p0125r0 P0125R0 @@ -6766,6 +6778,18 @@ https://wg21.link/p0260r1 Lawrence Crowl - +d:p0260r10 +P0260R10 +27 June 2024 + +C++ Concurrent Queues +https://wg21.link/p0260r10 + + + + +Detlef Vollmann, Lawrence Crowl, Chris Mysen, Gor Nishanov +- d:p0260r2 P0260R2 15 October 2017 @@ -6814,6 +6838,54 @@ https://wg21.link/p0260r5 Lawrence Crowl, Chris Mysen, Detlef Vollmann - +d:p0260r6 +P0260R6 +16 June 2023 + +C++ Concurrent Queues +https://wg21.link/p0260r6 + + + + +Detlef Vollmann, Lawrence Crowl, Chris Mysen, Gor Nishanov +- +d:p0260r7 +P0260R7 +13 July 2023 + +C++ Concurrent Queues +https://wg21.link/p0260r7 + + + + +Detlef Vollmann, Lawrence Crowl, Chris Mysen, Gor Nishanov +- +d:p0260r8 +P0260R8 +9 March 2024 + +C++ Concurrent Queues +https://wg21.link/p0260r8 + + + + +Detlef Vollmann, Lawrence Crowl, Chris Mysen, Gor Nishanov +- +d:p0260r9 +P0260R9 +22 May 2024 + +C++ Concurrent Queues +https://wg21.link/p0260r9 + + + + +Detlef Vollmann, Lawrence Crowl, Chris Mysen, Gor Nishanov +- d:p0261r0 P0261R0 14 February 2016 @@ -7652,6 +7724,30 @@ https://wg21.link/p0290r2 +Anthony Williams +- +d:p0290r3 +P0290R3 +17 January 2023 + +apply() for synchronized_value +https://wg21.link/p0290r3 + + + + +Anthony Williams +- +d:p0290r4 +P0290R4 +16 February 2023 + +apply() for synchronized_value +https://wg21.link/p0290r4 + + + + Anthony Williams - d:p0292r0 @@ -9106,6 +9202,18 @@ https://wg21.link/p0342r1 Mike Spertus - +d:p0342r2 +P0342R2 +17 May 2023 + +pessimize_hint +https://wg21.link/p0342r2 + + + + +Gonzalo Brito Gadeschi, Mike Spertus +- d:p0343r0 P0343R0 24 May 2016 @@ -11599,6 +11707,78 @@ https://wg21.link/p0447r20 +Matt Bentley +- +d:p0447r21 +P0447R21 +12 February 2023 + +Introduction of std::hive to the standard library +https://wg21.link/p0447r21 + + + + +Matt Bentley +- +d:p0447r22 +P0447R22 +17 May 2023 + +Introduction of std::hive to the standard library +https://wg21.link/p0447r22 + + + + +Matt Bentley +- +d:p0447r23 +P0447R23 +15 October 2023 + +Introduction of std::hive to the standard library +https://wg21.link/p0447r23 + + + + +Matt Bentley +- +d:p0447r24 +P0447R24 +26 October 2023 + +Introduction of std::hive to the standard library +https://wg21.link/p0447r24 + + + + +Matt Bentley +- +d:p0447r25 +P0447R25 +3 December 2023 + +Introduction of std::hive to the standard library +https://wg21.link/p0447r25 + + + + +Matt Bentley +- +d:p0447r26 +P0447R26 +17 December 2023 + +Introduction of std::hive to the standard library +https://wg21.link/p0447r26 + + + + Matt Bentley - d:p0447r3 @@ -12153,6 +12333,18 @@ https://wg21.link/p0472r0 David Sankel - +d:p0472r1 +P0472R1 +5 June 2024 + +Put std::monostate in <utility> +https://wg21.link/p0472r1 + + + + +David Sankel, Andrei Zissu +- d:p0473r0 P0473R0 13 October 2016 @@ -12657,6 +12849,30 @@ https://wg21.link/p0493r3 Al Grant, Bronek Kozicki, Tim Northover - +d:p0493r4 +P0493R4 +15 February 2023 + +Atomic maximum/minimum +https://wg21.link/p0493r4 + + + + +Al Grant, Al Grant, Bronek Kozicki, Tim Northover +- +d:p0493r5 +P0493R5 +12 February 2024 + +Atomic maximum/minimum +https://wg21.link/p0493r5 + + + + +Al Grant, Al Grant, Bronek Kozicki, Tim Northover +- d:p0494r0 P0494R0 5 November 2016 @@ -13699,6 +13915,18 @@ https://wg21.link/p0543r2 +Jens Maurer +- +d:p0543r3 +P0543R3 +19 July 2023 + +Saturation arithmetic +https://wg21.link/p0543r3 + + + + Jens Maurer - d:p0544r0 @@ -14311,6 +14539,30 @@ https://wg21.link/p0562r0 +Alan Talbot +- +d:p0562r1 +P0562R1 +22 March 2024 + +Initialization List Symmetry +https://wg21.link/p0562r1 + + + + +Alan Talbot +- +d:p0562r2 +P0562R2 +15 April 2024 + +Trailing Commas in Base-clauses and Ctor-initializers +https://wg21.link/p0562r2 + + + + Alan Talbot - d:p0563r0 @@ -15450,6 +15702,30 @@ https://wg21.link/p0609r1 +Aaron Ballman +- +d:p0609r2 +P0609R2 +27 November 2023 + +Attributes for Structured Bindings +https://wg21.link/p0609r2 + + + + +Aaron Ballman +- +d:p0609r3 +P0609R3 +21 March 2024 + +Attributes for Structured Bindings +https://wg21.link/p0609r3 + + + + Aaron Ballman - d:p0610r0 @@ -19386,6 +19662,30 @@ https://wg21.link/p0792r12 +Vittorio Romeo, Zhihao Yuan, Jarrad Waterloo +- +d:p0792r13 +P0792R13 +9 February 2023 + +function_ref: a non-owning reference to a Callable +https://wg21.link/p0792r13 + + + + +Vittorio Romeo, Zhihao Yuan, Jarrad Waterloo +- +d:p0792r14 +P0792R14 +9 February 2023 + +function_ref: a non-owning reference to a Callable +https://wg21.link/p0792r14 + + + + Vittorio Romeo, Zhihao Yuan, Jarrad Waterloo - d:p0792r2 @@ -20504,6 +20804,66 @@ https://wg21.link/p0843r1 Gonzalo Brito Gadeschi - +d:p0843r10 +P0843R10 +12 February 2024 + +inplace_vector +https://wg21.link/p0843r10 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- +d:p0843r11 +P0843R11 +22 March 2024 + +inplace_vector +https://wg21.link/p0843r11 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- +d:p0843r12 +P0843R12 +21 May 2024 + +inplace_vector +https://wg21.link/p0843r12 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- +d:p0843r13 +P0843R13 +17 June 2024 + +inplace_vector +https://wg21.link/p0843r13 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- +d:p0843r14 +P0843R14 +26 June 2024 + +inplace_vector +https://wg21.link/p0843r14 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- d:p0843r2 P0843R2 25 June 2018 @@ -20552,6 +20912,54 @@ https://wg21.link/p0843r5 Gonzalo Brito Gadeschi - +d:p0843r6 +P0843R6 +18 May 2023 + +static_vector +https://wg21.link/p0843r6 + + + + +Gonzalo Brito Gadeschi +- +d:p0843r7 +P0843R7 +16 June 2023 + +inplace_vector +https://wg21.link/p0843r7 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- +d:p0843r8 +P0843R8 +16 June 2023 + +inplace_vector +https://wg21.link/p0843r8 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- +d:p0843r9 +P0843R9 +14 September 2023 + +inplace_vector +https://wg21.link/p0843r9 + + + + +Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber, David Sankel +- d:p0844r0 P0844R0 26 February 2018 @@ -21066,6 +21474,18 @@ https://wg21.link/p0870r4 +Giuseppe D'Angelo +- +d:p0870r5 +P0870R5 +15 February 2023 + +A proposal for a type trait to detect narrowing conversions +https://wg21.link/p0870r5 + + + + Giuseppe D'Angelo - d:p0872r0 @@ -21162,6 +21582,78 @@ https://wg21.link/p0876r11 +Oliver Kowalke, Nat Goodspeed +- +d:p0876r12 +P0876R12 +9 February 2023 + +fiber_context - fibers without scheduler +https://wg21.link/p0876r12 + + + + +Oliver Kowalke, Nat Goodspeed +- +d:p0876r13 +P0876R13 +2 March 2023 + +fiber_context - fibers without scheduler +https://wg21.link/p0876r13 + + + + +Oliver Kowalke, Nat Goodspeed +- +d:p0876r14 +P0876R14 +13 October 2023 + +fiber_context - fibers without scheduler +https://wg21.link/p0876r14 + + + + +Oliver Kowalke, Nat Goodspeed +- +d:p0876r15 +P0876R15 +14 February 2024 + +fiber_context - fibers without scheduler +https://wg21.link/p0876r15 + + + + +Oliver Kowalke, Nat Goodspeed +- +d:p0876r16 +P0876R16 +22 March 2024 + +fiber_context - fibers without scheduler +https://wg21.link/p0876r16 + + + + +Oliver Kowalke, Nat Goodspeed +- +d:p0876r17 +P0876R17 +3 July 2024 + +fiber_context - fibers without scheduler +https://wg21.link/p0876r17 + + + + Oliver Kowalke, Nat Goodspeed - d:p0876r2 @@ -21860,6 +22352,18 @@ https://wg21.link/p0901r10 Chris Kennelly, Andrew Hunter, Thomas Köppe - +d:p0901r11 +P0901R11 +20 June 2023 + +Size feedback in operator new +https://wg21.link/p0901r11 + + + + +Thomas Köppe, Andrew Hunter, Chris Kennelly +- d:p0901r2 P0901R2 25 November 2018 @@ -23130,6 +23634,30 @@ https://wg21.link/p0952r0 +Thomas Köppe, Davis Herring +- +d:p0952r1 +P0952R1 +20 September 2023 + +A new specification for std::generate_canonical +https://wg21.link/p0952r1 + + + + +Thomas Koeppe, Davis Herring +- +d:p0952r2 +P0952R2 +18 December 2023 + +A new specification for std::generate_canonical +https://wg21.link/p0952r2 + + + + Thomas Köppe, Davis Herring - d:p0953r0 @@ -23514,6 +24042,42 @@ https://wg21.link/p0963r0 +Zhihao Yuan +- +d:p0963r1 +P0963R1 +15 August 2023 + +Structured binding declaration as a condition +https://wg21.link/p0963r1 + + + + +Zhihao Yuan +- +d:p0963r2 +P0963R2 +14 May 2024 + +Structured binding declaration as a condition +https://wg21.link/p0963r2 + + + + +Zhihao Yuan +- +d:p0963r3 +P0963R3 +28 June 2024 + +Structured binding declaration as a condition +https://wg21.link/p0963r3 + + + + Zhihao Yuan - d:p0964r0 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-p1.data b/bikeshed/spec-data/readonly/biblio/biblio-p1.data index a7e2fd3e70..e935c39736 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-p1.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-p1.data @@ -56,6 +56,30 @@ https://wg21.link/p1000r4 +Herb Sutter +- +d:p1000r5 +P1000R5 +10 May 2023 + +C++ IS schedule +https://wg21.link/p1000r5 + + + + +Herb Sutter +- +d:p1000r6 +P1000R6 +19 May 2024 + +C++ IS schedule +https://wg21.link/p1000r6 + + + + Herb Sutter - d:p1001r0 @@ -1016,6 +1040,30 @@ https://wg21.link/p1028r4 +Niall Douglas +- +d:p1028r5 +P1028R5 +11 May 2023 + +SG14 status_code and standard error object +https://wg21.link/p1028r5 + + + + +Niall Douglas +- +d:p1028r6 +P1028R6 +11 December 2023 + +SG14 status_code and standard error object +https://wg21.link/p1028r6 + + + + Niall Douglas - d:p1029r0 @@ -1136,6 +1184,18 @@ https://wg21.link/p1030r5 +Niall Douglas +- +d:p1030r6 +P1030R6 +16 June 2023 + +std::filesystem::path_view +https://wg21.link/p1030r6 + + + + Niall Douglas - d:p1031r0 @@ -1784,6 +1844,66 @@ https://wg21.link/p1061r3 +Barry Revzin, Jonathan Wakely +- +d:p1061r4 +P1061R4 +15 February 2023 + +Structured Bindings can introduce a Pack +https://wg21.link/p1061r4 + + + + +Barry Revzin, Jonathan Wakely +- +d:p1061r5 +P1061R5 +18 May 2023 + +Structured Bindings can introduce a Pack +https://wg21.link/p1061r5 + + + + +Barry Revzin, Jonathan Wakely +- +d:p1061r6 +P1061R6 +10 December 2023 + +Structured Bindings can introduce a Pack +https://wg21.link/p1061r6 + + + + +Barry Revzin, Jonathan Wakely +- +d:p1061r7 +P1061R7 +15 February 2024 + +Structured Bindings can introduce a Pack +https://wg21.link/p1061r7 + + + + +Barry Revzin, Jonathan Wakely +- +d:p1061r8 +P1061R8 +14 April 2024 + +Structured Bindings can introduce a Pack +https://wg21.link/p1061r8 + + + + Barry Revzin, Jonathan Wakely - d:p1062r0 @@ -1942,6 +2062,30 @@ https://wg21.link/p1068r1 Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev - +d:p1068r10 +P1068R10 +9 December 2023 + +Vector API for random number generation +https://wg21.link/p1068r10 + + + + +Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova +- +d:p1068r11 +P1068R11 +2 April 2024 + +Vector API for random number generation +https://wg21.link/p1068r11 + + + + +Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova +- d:p1068r2 P1068R2 7 October 2019 @@ -2000,6 +2144,42 @@ https://wg21.link/p1068r6 +Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova +- +d:p1068r7 +P1068R7 +17 May 2023 + +Vector API for random number generation +https://wg21.link/p1068r7 + + + + +Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova +- +d:p1068r8 +P1068R8 +8 August 2023 + +Vector API for random number generation +https://wg21.link/p1068r8 + + + + +Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova +- +d:p1068r9 +P1068R9 +14 September 2023 + +Vector API for random number generation +https://wg21.link/p1068r9 + + + + Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova - d:p1069r0 @@ -2420,6 +2600,18 @@ https://wg21.link/p1083r7 +Pablo Halpern +- +d:p1083r8 +P1083R8 +22 May 2024 + +Move resource_adaptor from Library TS to the C++ WP +https://wg21.link/p1083r8 + + + + Pablo Halpern - d:p1084r0 @@ -3056,6 +3248,30 @@ https://wg21.link/p1112r3 +Pal Balog +- +d:p1112r4 +P1112R4 +19 May 2023 + +Language support for class layout control +https://wg21.link/p1112r4 + + + + +Pal Balog +- +d:p1112r5 +P1112R5 +21 May 2024 + +Language support for class layout control +https://wg21.link/p1112r5 + + + + Pal Balog - d:p1113r0 @@ -3740,6 +3956,30 @@ https://wg21.link/p1144r1 +Arthur O'Dwyer +- +d:p1144r10 +P1144R10 +15 February 2024 + +std::is_trivially_relocatable +https://wg21.link/p1144r10 + + + + +Arthur O'Dwyer +- +d:p1144r11 +P1144R11 +15 May 2024 + +std::is_trivially_relocatable +https://wg21.link/p1144r11 + + + + Arthur O'Dwyer - d:p1144r2 @@ -3800,6 +4040,42 @@ https://wg21.link/p1144r6 +Arthur O'Dwyer +- +d:p1144r7 +P1144R7 +10 March 2023 + +std::is_trivially_relocatable +https://wg21.link/p1144r7 + + + + +Arthur O'Dwyer +- +d:p1144r8 +P1144R8 +14 May 2023 + +std::is_trivially_relocatable +https://wg21.link/p1144r8 + + + + +Arthur O'Dwyer +- +d:p1144r9 +P1144R9 +12 October 2023 + +std::is_trivially_relocatable +https://wg21.link/p1144r9 + + + + Arthur O'Dwyer - d:p1145r0 @@ -6006,6 +6282,54 @@ https://wg21.link/p1255r1 +Steve Downey +- +d:p1255r10 +P1255R10 +15 September 2023 + +A view of 0 or 1 elements: views::maybe +https://wg21.link/p1255r10 + + + + +Steve Downey +- +d:p1255r11 +P1255R11 +12 January 2024 + +A view of 0 or 1 elements: views::maybe +https://wg21.link/p1255r11 + + + + +Steve Downey +- +d:p1255r12 +P1255R12 +16 January 2024 + +A view of 0 or 1 elements: views::maybe +https://wg21.link/p1255r12 + + + + +Steve Downey +- +d:p1255r13 +P1255R13 +22 May 2024 + +A view of 0 or 1 elements: views::nullable And a concept to constrain maybes +https://wg21.link/p1255r13 + + + + Steve Downey - d:p1255r2 @@ -6977,6 +7301,18 @@ https://wg21.link/p1306r1 Andrew Sutton, Sam Goodrick, Daveed Vandevoorde - +d:p1306r2 +P1306R2 +7 May 2024 + +Expansion statements +https://wg21.link/p1306r2 + + + + +Dan Katz, Andrew Sutton, Sam Goodrick, Daveed Vandevoorde +- d:p1307r0 P1307R0 8 October 2018 @@ -7181,6 +7517,18 @@ https://wg21.link/p1317r0 Aaryaman Sagar - +d:p1317r1 +P1317R1 +4 April 2024 + +Remove return type deduction in std::apply +https://wg21.link/p1317r1 + + + + +Aaryaman Sagar, Eric Niebler +- d:p1318r0 P1318R0 8 October 2018 @@ -7347,6 +7695,18 @@ https://wg21.link/p1324r0 +Mihail Naydenov +- +d:p1324r1 +P1324R1 +6 July 2023 + +RE: Yet another approach for constrained declarations +https://wg21.link/p1324r1 + + + + Mihail Naydenov - d:p1327r0 @@ -8256,6 +8616,18 @@ https://wg21.link/p1383r1 +Oliver Rosten +- +d:p1383r2 +P1383R2 +15 June 2023 + +More constexpr for cmath and complex +https://wg21.link/p1383r2 + + + + Oliver Rosten - d:p1385r0 @@ -10391,6 +10763,18 @@ https://wg21.link/p1494r2 +S. Davis Herring +- +d:p1494r3 +P1494R3 +22 May 2024 + +Partial program correctness +https://wg21.link/p1494r3 + + + + S. Davis Herring - d:p1496r0 @@ -12047,6 +12431,30 @@ https://wg21.link/p1673r11 +Mark Hoemmen, Daisy Hollman,Christian Trott,Daniel Sunderland,Nevin Liber,Alicia KlinvexLi-Ta Lo,Damien Lebrun-Grandie,Graham Lopez,Peter Caday,Sarah Knepper,Piotr Luszczek,Timothy Costa +- +d:p1673r12 +P1673R12 +15 March 2023 + +A free function linear algebra interface based on the BLAS +https://wg21.link/p1673r12 + + + + +Mark Hoemmen, Daisy Hollman,Christian Trott,Daniel Sunderland,Nevin Liber,Alicia KlinvexLi-Ta Lo,Damien Lebrun-Grandie,Graham Lopez,Peter Caday,Sarah Knepper,Piotr Luszczek,Timothy Costa +- +d:p1673r13 +P1673R13 +18 December 2023 + +A free function linear algebra interface based on the BLAS +https://wg21.link/p1673r13 + + + + Mark Hoemmen, Daisy Hollman,Christian Trott,Daniel Sunderland,Nevin Liber,Alicia KlinvexLi-Ta Lo,Damien Lebrun-Grandie,Graham Lopez,Peter Caday,Sarah Knepper,Piotr Luszczek,Timothy Costa - d:p1673r2 @@ -12491,6 +12899,18 @@ https://wg21.link/p1684r4 +Christian Trott, D. S. Hollman,Mark Hoemmen,Daniel Sunderland,Damien Lebrun-Grandie +- +d:p1684r5 +P1684R5 +19 May 2023 + +mdarray: An Owning Multidimensional Array Analog of mdspan +https://wg21.link/p1684r5 + + + + Christian Trott, D. S. Hollman,Mark Hoemmen,Daniel Sunderland,Damien Lebrun-Grandie - d:p1685r0 @@ -12949,6 +13369,30 @@ https://wg21.link/p1708r6 Richard Dosselman, Micheal Chiu, Richard Dosselmann, Eric Niebler, Phillip Ratzlof, Vincent Reverdy, Jens Maurer - +d:p1708r7 +P1708R7 +6 February 2023 + +Basic Statistics +https://wg21.link/p1708r7 + + + + +Richard Dosselmann +- +d:p1708r8 +P1708R8 +18 December 2023 + +Basic Statistics +https://wg21.link/p1708r8 + + + + +Richard Dosselmann +- d:p1709r0 P1709R0 17 June 2019 @@ -12995,6 +13439,30 @@ https://wg21.link/p1709r3 +Phillip Ratzloff, Andrew Lumsdaine, Richard Dosselmann, Michael Wong, Matthew Galati, Jens Maurer, Domagoj Saric, Jesun Firoz, Kevin Deweese +- +d:p1709r4 +P1709R4 +18 December 2023 + +Graph Library +https://wg21.link/p1709r4 + + + + +Phillip Ratzloff, Andrew Lumsdaine, Richard Dosselmann, Michael Wong, Matthew Galati, Jens Maurer, Domagoj Saric, Jesun Firoz, Kevin Deweese +- +d:p1709r5 +P1709R5 +15 January 2024 + +Graph Library +https://wg21.link/p1709r5 + + + + Phillip Ratzloff, Andrew Lumsdaine, Richard Dosselmann, Michael Wong, Matthew Galati, Jens Maurer, Domagoj Saric, Jesun Firoz, Kevin Deweese - d:p1710r0 @@ -13067,6 +13535,18 @@ https://wg21.link/p1715r0 +Jorg Brown +- +d:p1715r1 +P1715R1 +6 February 2023 + +Loosen restrictions on "_t" typedefs and "_v" values. +https://wg21.link/p1715r1 + + + + Jorg Brown - d:p1716r0 @@ -13469,7 +13949,7 @@ d:p1728r0 P1728R0 17 June 2019 -Preconditions, axiom-level contracts and assumptions -- an in depth study +Preconditions, axiom-level contracts and assumptions — an in depth study https://wg21.link/p1728r0 @@ -13501,6 +13981,42 @@ https://wg21.link/p1729r1 Victor Zverovich , Elias Kosunen - +d:p1729r2 +P1729R2 +7 July 2023 + +Text Parsing +https://wg21.link/p1729r2 + + + + +Elias Kosunen, Victor Zverovich +- +d:p1729r3 +P1729R3 +12 October 2023 + +Text Parsing +https://wg21.link/p1729r3 + + + + +Elias Kosunen, Victor Zverovich +- +d:p1729r4 +P1729R4 +11 February 2024 + +Text Parsing +https://wg21.link/p1729r4 + + + + +Elias Kosunen, Victor Zverovich +- d:p1730r0 P1730R0 14 June 2019 @@ -13979,6 +14495,30 @@ https://wg21.link/p1759r4 +Elias Kosunen +- +d:p1759r5 +P1759R5 +12 February 2023 + +Native handles and file streams +https://wg21.link/p1759r5 + + + + +Elias Kosunen +- +d:p1759r6 +P1759R6 +17 May 2023 + +Native handles and file streams +https://wg21.link/p1759r6 + + + + Elias Kosunen - d:p1760r0 @@ -15275,6 +15815,18 @@ https://wg21.link/p1854r3 +Corentin Jabot +- +d:p1854r4 +P1854R4 +8 February 2023 + +Making non-encodable string literals ill-formed +https://wg21.link/p1854r4 + + + + Corentin Jabot - d:p1855r0 @@ -15923,6 +16475,30 @@ https://wg21.link/p1885r10 +Corentin Jabot, Peter Brett +- +d:p1885r11 +P1885R11 +22 March 2023 + +Naming Text Encodings to Demystify Them +https://wg21.link/p1885r11 + + + + +Corentin Jabot, Peter Brett +- +d:p1885r12 +P1885R12 +5 April 2023 + +Naming Text Encodings to Demystify Them +https://wg21.link/p1885r12 + + + + Corentin Jabot, Peter Brett - d:p1885r2 @@ -16343,6 +16919,18 @@ https://wg21.link/p1901r1 +Daryl Haresign +- +d:p1901r2 +P1901R2 +5 April 2023 + +Enabling the Use of weak_ptr as Keys in Unordered Associative Containers +https://wg21.link/p1901r2 + + + + Daryl Haresign - d:p1902r0 @@ -16739,6 +17327,30 @@ https://wg21.link/p1928r1 +Matthias Kretz +- +d:p1928r10 +P1928R10 +28 June 2024 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r10 + + + + +Matthias Kretz +- +d:p1928r11 +P1928R11 +16 July 2024 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r11 + + + + Matthias Kretz - d:p1928r2 @@ -16751,6 +17363,90 @@ https://wg21.link/p1928r2 +Matthias Kretz +- +d:p1928r3 +P1928R3 +3 February 2023 + +Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r3 + + + + +Matthias Kretz +- +d:p1928r4 +P1928R4 +19 May 2023 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r4 + + + + +Matthias Kretz +- +d:p1928r5 +P1928R5 +19 June 2023 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r5 + + + + +Matthias Kretz +- +d:p1928r6 +P1928R6 +19 June 2023 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r6 + + + + +Matthias Kretz +- +d:p1928r7 +P1928R7 +15 October 2023 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r7 + + + + +Matthias Kretz +- +d:p1928r8 +P1928R8 +9 November 2023 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r8 + + + + +Matthias Kretz +- +d:p1928r9 +P1928R9 +22 May 2024 + +std::simd - Merge data-parallel types from the Parallelism TS 2 +https://wg21.link/p1928r9 + + + + Matthias Kretz - d:p1929r0 @@ -17435,6 +18131,30 @@ https://wg21.link/p1967r10 +JeanHeyd Meneide +- +d:p1967r11 +P1967R11 +22 August 2023 + +#embed - a simple, scannable preprocessor-based resource acquisition method +https://wg21.link/p1967r11 + + + + +JeanHeyd Meneide +- +d:p1967r12 +P1967R12 +9 December 2023 + +#embed - a simple, scannable preprocessor-based resource acquisition method +https://wg21.link/p1967r12 + + + + JeanHeyd Meneide - d:p1967r2 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-p2.data b/bikeshed/spec-data/readonly/biblio/biblio-p2.data index d263e27438..f3621dfb56 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-p2.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-p2.data @@ -404,6 +404,54 @@ https://wg21.link/p2019r2 +Corentin Jabot +- +d:p2019r3 +P2019R3 +18 May 2023 + +Thread attributes +https://wg21.link/p2019r3 + + + + +Corentin Jabot +- +d:p2019r4 +P2019R4 +15 October 2023 + +Thread attributes +https://wg21.link/p2019r4 + + + + +Corentin Jabot +- +d:p2019r5 +P2019R5 +13 January 2024 + +Thread attributes +https://wg21.link/p2019r5 + + + + +Corentin Jabot +- +d:p2019r6 +P2019R6 +22 May 2024 + +Thread attributes +https://wg21.link/p2019r6 + + + + Corentin Jabot - d:p2020r0 @@ -430,6 +478,54 @@ https://wg21.link/p2021r0 Victor Zverovich - +d:p2022r0 +P2022R0 +6 February 2023 + +Rangified version of lexicographical_compare_three_way +https://wg21.link/p2022r0 + + + + +Ran Regev +- +d:p2022r1 +P2022R1 +11 March 2023 + +Rangified version of lexicographical_compare_three_way +https://wg21.link/p2022r1 + + + + +Ran Regev +- +d:p2022r2 +P2022R2 +10 May 2023 + +Rangified version of lexicographical_compare_three_way +https://wg21.link/p2022r2 + + + + +Ran Regev +- +d:p2022r3 +P2022R3 +17 December 2023 + +Rangified version of lexicographical_compare_three_way +https://wg21.link/p2022r3 + + + + +Ran Regev, Alex Dathskovsky +- d:p2024r0 P2024R0 13 January 2020 @@ -658,6 +754,30 @@ https://wg21.link/p2034r2 Ryan McDougall, Patrick McMichael - +d:p2034r3 +P2034R3 +20 March 2024 + +Partially Mutable Lambda Captures +https://wg21.link/p2034r3 + + + + +Ryan McDougall, Nestor Subiron Montoro +- +d:p2034r4 +P2034R4 +22 April 2024 + +Partially Mutable Lambda Captures +https://wg21.link/p2034r4 + + + + +Ryan McDougall, Nestor Subiron Montoro +- d:p2035r0 P2035R0 13 January 2020 @@ -968,6 +1088,30 @@ https://wg21.link/p2047r5 +Nina Ranns, Pablo Halpern Ville Voutilainen +- +d:p2047r6 +P2047R6 +2 February 2023 + +An allocator-aware optional type +https://wg21.link/p2047r6 + + + + +Nina Ranns, Pablo Halpern Ville Voutilainen +- +d:p2047r7 +P2047R7 +15 February 2024 + +An allocator-aware optional type +https://wg21.link/p2047r7 + + + + Nina Ranns, Pablo Halpern Ville Voutilainen - d:p2048r0 @@ -1486,6 +1630,54 @@ https://wg21.link/p2075r2 Pavel Dyakov, Ilya Burylov; Ruslan Arutyunyan; Andrey Nikolaev; John Salmon - +d:p2075r3 +P2075R3 +13 October 2023 + +Philox as an extension of the C++ RNG engines +https://wg21.link/p2075r3 + + + + +Ilya Burylov, Ruslan Arutyunyan; Andrey Nikolaev; Alina Elizarova; Pavel Dyakov; John Salmon +- +d:p2075r4 +P2075R4 +14 February 2024 + +Philox as an extension of the C++ RNG engines +https://wg21.link/p2075r4 + + + + +Ilya Burylov, Ruslan Arutyunyan; Andrey Nikolaev; Alina Elizarova; Pavel Dyakov; John Salmon +- +d:p2075r5 +P2075R5 +1 April 2024 + +Philox as an extension of the C++ RNG engines +https://wg21.link/p2075r5 + + + + +Ilya Burylov, Ruslan Arutyunyan; Andrey Nikolaev; Alina Elizarova; Pavel Dyakov; John Salmon +- +d:p2075r6 +P2075R6 +28 June 2024 + +Philox as an extension of the C++ RNG engines +https://wg21.link/p2075r6 + + + + +Ilya Burylov, Ruslan Arutyunyan; Andrey Nikolaev; Alina Elizarova; Pavel Dyakov; John Salmon +- d:p2076r0 P2076R0 13 January 2020 @@ -1606,6 +1798,18 @@ https://wg21.link/p2079r3 Lee Howes, Ruslan Arutyunyan, Michael Voss - +d:p2079r4 +P2079R4 +22 May 2024 + +System execution context +https://wg21.link/p2079r4 + + + + +Lee Howes, Ruslan Arutyunyan, Michael Voss, Lucian Radu Teodorescu +- d:p2080r0 P2080R0 13 January 2020 @@ -2216,6 +2420,18 @@ https://wg21.link/p2126r0 +Pablo Halpern, John Lakos +- +d:p2127r0 +P2127R0 +12 March 2024 + +Making C++ Software Allocator Aware +https://wg21.link/p2127r0 + + + + Pablo Halpern, John Lakos - d:p2128r0 @@ -2362,6 +2578,18 @@ https://wg21.link/p2134r0 Pal Balog - +d:p2135r1 +P2135R1 +10 April 2024 + +P2055R1: A Relaxed Guide to memory_order_relaxed +https://wg21.link/p2135r1 + + + + +Paul E. McKenney, Hans Boehm and David Goldblatt +- d:p2136r0 P2136R0 2 March 2020 @@ -2528,6 +2756,30 @@ https://wg21.link/p2141r0 +Antony Polukhin +- +d:p2141r1 +P2141R1 +3 May 2023 + +Aggregates are named tuples +https://wg21.link/p2141r1 + + + + +Antony Polukhin +- +d:p2141r2 +P2141R2 +6 March 2024 + +Aggregates are named tuples +https://wg21.link/p2141r2 + + + + Antony Polukhin - d:p2142r1 @@ -2708,6 +2960,18 @@ https://wg21.link/p2159r0 +Bill Seymour +- +d:p2159r1 +P2159R1 +6 February 2023 + +A Big Decimal Type +https://wg21.link/p2159r1 + + + + Bill Seymour - d:p2160r0 @@ -3164,6 +3428,18 @@ https://wg21.link/p2169r3 +Corentin Jabot, Michael Park +- +d:p2169r4 +P2169R4 +16 June 2023 + +A Nice Placeholder With No Name +https://wg21.link/p2169r4 + + + + Corentin Jabot, Michael Park - d:p2170r0 @@ -4616,6 +4892,18 @@ https://wg21.link/p2248r7 +Giuseppe D'Angelo +- +d:p2248r8 +P2248R8 +20 March 2024 + +Enabling list-initialization for algorithms +https://wg21.link/p2248r8 + + + + Giuseppe D'Angelo - d:p2249r0 @@ -4676,6 +4964,30 @@ https://wg21.link/p2249r4 +Giuseppe D'Angelo +- +d:p2249r5 +P2249R5 +15 February 2024 + +Mixed comparisons for smart pointers +https://wg21.link/p2249r5 + + + + +Giuseppe D'Angelo +- +d:p2249r6 +P2249R6 +15 February 2024 + +Mixed comparisons for smart pointers +https://wg21.link/p2249r6 + + + + Giuseppe D'Angelo - d:p2250r0 @@ -4916,6 +5228,42 @@ https://wg21.link/p2264r4 +Peter Sommerlad +- +d:p2264r5 +P2264R5 +13 September 2023 + +Make assert() macro user friendly for C and C++ +https://wg21.link/p2264r5 + + + + +Peter Sommerlad +- +d:p2264r6 +P2264R6 +11 November 2023 + +Make assert() macro user friendly for C and C++ +https://wg21.link/p2264r6 + + + + +Peter Sommerlad +- +d:p2264r7 +P2264R7 +18 December 2023 + +Make assert() macro user friendly for C and C++ +https://wg21.link/p2264r7 + + + + Peter Sommerlad - d:p2265r0 @@ -4990,6 +5338,30 @@ https://wg21.link/p2266r3 Arthur O'Dwyer - +d:p2267r0 +P2267R0 +15 October 2023 + +Library Evolution Policies +https://wg21.link/p2267r0 + + + + +Inbal Levi, Ben Craig, Fabio Fracassi +- +d:p2267r1 +P2267R1 +23 November 2023 + +Library Evolution Policies +https://wg21.link/p2267r1 + + + + +Inbal Levi, Ben Craig, Fabio Fracassi +- d:p2268r0 P2268R0 10 December 2020 @@ -5444,6 +5816,18 @@ https://wg21.link/p2287r1 +Barry Revzin +- +d:p2287r2 +P2287R2 +12 March 2023 + +Designated-initializers for base classes +https://wg21.link/p2287r2 + + + + Barry Revzin - d:p2289r0 @@ -5696,6 +6080,18 @@ https://wg21.link/p2299r3 +Bryce Adelstein Lelbach +- +d:p2299r4 +P2299R4 +15 February 2024 + +`mdspan`s of All Dynamic Extents +https://wg21.link/p2299r4 + + + + Bryce Adelstein Lelbach - d:p2300r0 @@ -5722,6 +6118,18 @@ https://wg21.link/p2300r1 Michał Dominiak, Lewis Baker, Lee Howes, Kirk Shoop, Michael Garland, Eric Niebler, Bryce Adelstein Lelbach - +d:p2300r10 +P2300R10 +28 June 2024 + +`std::execution` +https://wg21.link/p2300r10 + + + + +Eric Niebler, Michał Dominiak, Georgy Evtushenko, Lewis Baker, Lucian Radu Teodorescu, Lee Howes, Kirk Shoop, Michael Garland, Bryce Adelstein Lelbach +- d:p2300r2 P2300R2 4 October 2021 @@ -5770,23 +6178,71 @@ https://wg21.link/p2300r5 Michał Dominiak, Georgy Evtushenko, Lewis Baker, Lucian Radu Teodorescu, Lee Howes, Kirk Shoop, Michael Garland, Eric Niebler, Bryce Adelstein Lelbach - -d:p2301r0 -P2301R0 -15 February 2021 +d:p2300r6 +P2300R6 +19 January 2023 -Add a pmr alias for std::stacktrace -https://wg21.link/p2301r0 +`std::execution` +https://wg21.link/p2300r6 -Steve Downey +Michał Dominiak, Georgy Evtushenko, Lewis Baker, Lucian Radu Teodorescu, Lee Howes, Kirk Shoop, Michael Garland, Eric Niebler, Bryce Adelstein Lelbach - -d:p2301r1 -P2301R1 -14 June 2021 +d:p2300r7 +P2300R7 +21 April 2023 -Add a pmr alias for std::stacktrace +`std::execution` +https://wg21.link/p2300r7 + + + + +Eric Niebler, Michał Dominiak, Georgy Evtushenko, Lewis Baker, Lucian Radu Teodorescu, Lee Howes, Kirk Shoop, Michael Garland, Bryce Adelstein Lelbach +- +d:p2300r8 +P2300R8 +2 April 2024 + +`std::execution` +https://wg21.link/p2300r8 + + + + +Eric Niebler, Michał Dominiak, Georgy Evtushenko, Lewis Baker, Lucian Radu Teodorescu, Lee Howes, Kirk Shoop, Michael Garland, Bryce Adelstein Lelbach +- +d:p2300r9 +P2300R9 +2 April 2024 + +`std::execution` +https://wg21.link/p2300r9 + + + + +Eric Niebler, Michał Dominiak, Georgy Evtushenko, Lewis Baker, Lucian Radu Teodorescu, Lee Howes, Kirk Shoop, Michael Garland, Bryce Adelstein Lelbach +- +d:p2301r0 +P2301R0 +15 February 2021 + +Add a pmr alias for std::stacktrace +https://wg21.link/p2301r0 + + + + +Steve Downey +- +d:p2301r1 +P2301R1 +14 June 2021 + +Add a pmr alias for std::stacktrace https://wg21.link/p2301r1 @@ -6118,6 +6574,30 @@ https://wg21.link/p2307r2 Jens Gustedt - +d:p2308r0 +P2308R0 +13 February 2023 + +Template parameter initialization +https://wg21.link/p2308r0 + + + + +S. Davis Herring +- +d:p2308r1 +P2308R1 +18 December 2023 + +Template parameter initialization +https://wg21.link/p2308r1 + + + + +S. Davis Herring +- d:p2309r0 P2309R0 11 February 2021 @@ -6370,6 +6850,18 @@ https://wg21.link/p2318r1 Jens Gustedt, Peter Sewell, Kayvan Memarian, Victor B. F. Gomes, Martin Uecker - +d:p2319r0 +P2319R0 +6 July 2024 + +Prevent path presentation problems +https://wg21.link/p2319r0 + + + + +Victor Zverovich +- d:p2320r0 P2320R0 15 February 2021 @@ -6788,6 +7280,18 @@ https://wg21.link/p2338r3 +Ben Craig +- +d:p2338r4 +P2338R4 +9 February 2023 + +Freestanding Library: Character primitives and the C library +https://wg21.link/p2338r4 + + + + Ben Craig - d:p2339r0 @@ -7016,6 +7520,30 @@ https://wg21.link/p2355r0 +S. Davis Herring +- +d:p2355r1 +P2355R1 +13 February 2023 + +Postfix fold expressions +https://wg21.link/p2355r1 + + + + +S. Davis Herring +- +d:p2355r2 +P2355R2 +21 March 2024 + +Postfix fold expressions +https://wg21.link/p2355r2 + + + + S. Davis Herring - d:p2356r0 @@ -7124,6 +7652,18 @@ https://wg21.link/p2361r5 +Corentin Jabot, Aaron Ballman +- +d:p2361r6 +P2361R6 +12 February 2023 + +Unevaluated strings +https://wg21.link/p2361r6 + + + + Corentin Jabot, Aaron Ballman - d:p2362r0 @@ -7232,6 +7772,18 @@ https://wg21.link/p2363r4 +Konstantin Boyarinov, Sergey Vinogradov, Ruslan Arutyunyan +- +d:p2363r5 +P2363R5 +10 February 2023 + +Extending associative containers with the remaining heterogeneous overloads +https://wg21.link/p2363r5 + + + + Konstantin Boyarinov, Sergey Vinogradov, Ruslan Arutyunyan - d:p2367r0 @@ -7690,6 +8242,42 @@ https://wg21.link/p2388r4 Andrzej Krzemieński, Gašper Ažman - +d:p2389r0 +P2389R0 +15 February 2024 + +`dextents` Index Type Parameter +https://wg21.link/p2389r0 + + + + +Bryce Adelstein Lelbach +- +d:p2389r1 +P2389R1 +12 April 2024 + +`dextents` Index Type Parameter +https://wg21.link/p2389r1 + + + + +Bryce Adelstein Lelbach, Mark Hoemmen +- +d:p2389r2 +P2389R2 +24 June 2024 + +`dextents` Index Type Parameter +https://wg21.link/p2389r2 + + + + +Bryce Adelstein Lelbach, Mark Hoemmen +- d:p2390r0 P2390R0 7 June 2021 @@ -8024,6 +8612,42 @@ https://wg21.link/p2406r2 +Yehezkel Bernat, Yehuda Bernat +- +d:p2406r3 +P2406R3 +6 February 2023 + +Add lazy_counted_iterator +https://wg21.link/p2406r3 + + + + +Yehezkel Bernat, Yehuda Bernat +- +d:p2406r4 +P2406R4 +7 February 2023 + +Add lazy_counted_iterator +https://wg21.link/p2406r4 + + + + +Yehezkel Bernat, Yehuda Bernat +- +d:p2406r5 +P2406R5 +8 February 2023 + +Add lazy_counted_iterator +https://wg21.link/p2406r5 + + + + Yehezkel Bernat, Yehuda Bernat - d:p2407r0 @@ -8062,6 +8686,42 @@ https://wg21.link/p2407r2 Emil Meissner, Ben Craig - +d:p2407r3 +P2407R3 +5 March 2023 + +Freestanding Library: Partial Classes +https://wg21.link/p2407r3 + + + + +Emil Meissner, Ben Craig +- +d:p2407r4 +P2407R4 +28 June 2023 + +Freestanding Library: Partial Classes +https://wg21.link/p2407r4 + + + + +Emil Meissner, Ben Craig +- +d:p2407r5 +P2407R5 +26 July 2023 + +Freestanding Library: Partial Classes +https://wg21.link/p2407r5 + + + + +Ben Craig, Emil Meissner +- d:p2408r0 P2408R0 15 July 2021 @@ -8192,6 +8852,18 @@ https://wg21.link/p2413r0 +Lénárd Szolnoki +- +d:p2413r1 +P2413R1 +22 May 2024 + +Remove unsafe conversions of unique_ptr +https://wg21.link/p2413r1 + + + + Lénárd Szolnoki - d:p2414r0 @@ -8218,6 +8890,42 @@ https://wg21.link/p2414r1 Paul E. McKenney, Maged Michael, Jens Maurer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Thomas Rodgers, Will Deacon, Michael Wong, David Goldblatt, Kostya Serebryany, and Anthony Williams. - +d:p2414r2 +P2414R2 +17 December 2023 + +Pointer lifetime-end zap proposed solutions +https://wg21.link/p2414r2 + + + + +Paul E. McKenney, Maged Michael, Jens Maurer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Thomas Rodgers, Will Deacon, Michael Wong, David Goldblatt, Kostya Serebryany, and Anthony Williams. +- +d:p2414r3 +P2414R3 +8 April 2024 + +Pointer lifetime-end zap proposed solutions +https://wg21.link/p2414r3 + + + + +Paul E. McKenney, Maged Michael, Jens Maurer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Thomas Rodgers, Will Deacon, Michael Wong, David Goldblatt, Kostya Serebryany, Anthony Williams, Tom Scogland, and JF Bastien +- +d:p2414r4 +P2414R4 +12 August 2024 + +Pointer lifetime-end zap proposed solutions +https://wg21.link/p2414r4 + + + + +Paul E. McKenney, Maged Michael, Jens Maurer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Thomas Rodgers, Will Deacon, Michael Wong, David Goldblatt, Kostya Serebryany, Anthony Williams, Tom Scogland, and JF Bastien +- d:p2415r0 P2415R0 15 July 2021 @@ -8410,6 +9118,30 @@ https://wg21.link/p2420r0 Bryce Adelstein Lelbach - +d:p2422r0 +P2422R0 +9 February 2024 + +Remove nodiscard annotations from the standard library specification +https://wg21.link/p2422r0 + + + + +Ville Voutilainen +- +d:p2422r1 +P2422R1 +28 June 2024 + +Remove nodiscard annotations from the standard library specification +https://wg21.link/p2422r1 + + + + +Ville Voutilainen +- d:p2423r0 P2423R0 4 August 2021 @@ -8528,6 +9260,18 @@ https://wg21.link/p2434r0 +S. Davis Herring +- +d:p2434r1 +P2434R1 +22 May 2024 + +Nondeterministic pointer provenance +https://wg21.link/p2434r1 + + + + S. Davis Herring - d:p2435r0 @@ -8854,6 +9598,54 @@ https://wg21.link/p2447r2 Federico Kircheis - +d:p2447r3 +P2447R3 +15 March 2023 + +std::span over an initializer list +https://wg21.link/p2447r3 + + + + +Arthur O'Dwyer, Federico Kircheis +- +d:p2447r4 +P2447R4 +14 May 2023 + +std::span over an initializer list +https://wg21.link/p2447r4 + + + + +Arthur O'Dwyer, Federico Kircheis +- +d:p2447r5 +P2447R5 +11 October 2023 + +std::span over an initializer list +https://wg21.link/p2447r5 + + + + +Arthur O'Dwyer, Federico Kircheis +- +d:p2447r6 +P2447R6 +18 December 2023 + +std::span over an initializer list +https://wg21.link/p2447r6 + + + + +Arthur O'Dwyer, Federico Kircheis +- d:p2448r0 P2448R0 14 October 2021 @@ -9512,6 +10304,18 @@ https://wg21.link/p2481r1 +Barry Revzin +- +d:p2481r2 +P2481R2 +16 December 2023 + +Forwarding reference to specific type/template +https://wg21.link/p2481r2 + + + + Barry Revzin - d:p2483r0 @@ -9584,6 +10388,18 @@ https://wg21.link/p2487r0 +Andrzej Krzemieński +- +d:p2487r1 +P2487R1 +11 June 2023 + +Is attribute-like syntax adequate for contract annotations? +https://wg21.link/p2487r1 + + + + Andrzej Krzemieński - d:p2489r0 @@ -9718,7 +10534,43 @@ https://wg21.link/p2495r1 Michael Hava - -d:p2498r0 +d:p2495r2 +P2495R2 +14 February 2023 + +Interfacing stringstreams with string_view +https://wg21.link/p2495r2 + + + + +Michael Hava +- +d:p2495r3 +P2495R3 +19 April 2023 + +Interfacing stringstreams with string_view +https://wg21.link/p2495r3 + + + + +Michael Hava +- +d:p2497r0 +P2497R0 +25 January 2023 + +Testing for success or failure of charconv functions +https://wg21.link/p2497r0 + + + + +Jonathan Wakely +- +d:p2498r0 P2498R0 13 December 2021 @@ -9766,6 +10618,30 @@ https://wg21.link/p2500r0 Ruslan Arutyunyan - +d:p2500r1 +P2500R1 +17 May 2023 + +C++ parallel algorithms and P2300 +https://wg21.link/p2500r1 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- +d:p2500r2 +P2500R2 +15 October 2023 + +C++ parallel algorithms and P2300 +https://wg21.link/p2500r2 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- d:p2501r0 P2501R0 14 December 2021 @@ -10214,7 +11090,7 @@ d:p2521r0 P2521R0 17 January 2022 -Contract support -- Working Paper +Contract support — Working Paper https://wg21.link/p2521r0 @@ -10226,7 +11102,7 @@ d:p2521r1 P2521R1 15 February 2022 -Contract support -- Working Paper +Contract support — Working Paper https://wg21.link/p2521r1 @@ -10246,6 +11122,42 @@ https://wg21.link/p2521r2 Andrzej Krzemieński, Gašper Ažman, Joshua Berne, Bronek Kozicki, Ryan McDougall, Caleb Sunstrum - +d:p2521r3 +P2521R3 +10 February 2023 + +Contract support — Record of SG21 consensus +https://wg21.link/p2521r3 + + + + +Andrzej Krzemieński, Gašper Ažman, Joshua Berne, Bronek Kozicki, Ryan McDougall, Caleb Sunstrum +- +d:p2521r4 +P2521R4 +15 June 2023 + +Contract support — Record of SG21 consensus +https://wg21.link/p2521r4 + + + + +Andrzej Krzemieński +- +d:p2521r5 +P2521R5 +15 August 2023 + +Contract support — Record of SG21 consensus +https://wg21.link/p2521r5 + + + + +Andrzej Krzemieński +- d:p2523r0 P2523R0 14 January 2022 @@ -10304,6 +11216,30 @@ https://wg21.link/p2527r1 +Alex Christensen +- +d:p2527r2 +P2527R2 +27 January 2023 + +std::variant_alternative_index and std::tuple_element_index +https://wg21.link/p2527r2 + + + + +Alex Christensen +- +d:p2527r3 +P2527R3 +2 January 2024 + +std::variant_alternative_index and std::tuple_element_index +https://wg21.link/p2527r3 + + + + Alex Christensen - d:p2528r0 @@ -10364,6 +11300,18 @@ https://wg21.link/p2530r2 +Maged Michael, Maged M. Michael, Michael Wong, Paul McKenney, Andrew Hunter, Daisy S. Hollman, JF Bastien, Hans Boehm, David Goldblatt, Frank Birbacher, Mathias Stearn +- +d:p2530r3 +P2530R3 +2 March 2023 + +Hazard Pointers for C++26 +https://wg21.link/p2530r3 + + + + Maged Michael, Maged M. Michael, Michael Wong, Paul McKenney, Andrew Hunter, Daisy S. Hollman, JF Bastien, Hans Boehm, David Goldblatt, Frank Birbacher, Mathias Stearn - d:p2531r0 @@ -10628,6 +11576,78 @@ https://wg21.link/p2542r2 +Hui Xie, S. Levent Yilmaz +- +d:p2542r3 +P2542R3 +9 June 2023 + +views::concat +https://wg21.link/p2542r3 + + + + +Hui Xie, S. Levent Yilmaz +- +d:p2542r4 +P2542R4 +11 September 2023 + +views::concat +https://wg21.link/p2542r4 + + + + +Hui Xie, S. Levent Yilmaz +- +d:p2542r5 +P2542R5 +13 September 2023 + +views::concat +https://wg21.link/p2542r5 + + + + +Hui Xie, S. Levent Yilmaz +- +d:p2542r6 +P2542R6 +1 October 2023 + +views::concat +https://wg21.link/p2542r6 + + + + +Hui Xie, S. Levent Yilmaz +- +d:p2542r7 +P2542R7 +2 December 2023 + +views::concat +https://wg21.link/p2542r7 + + + + +Hui Xie, S. Levent Yilmaz +- +d:p2542r8 +P2542R8 +20 March 2024 + +views::concat +https://wg21.link/p2542r8 + + + + Hui Xie, S. Levent Yilmaz - d:p2544r0 @@ -10676,6 +11696,30 @@ https://wg21.link/p2545r2 +Paul E. McKenney, Michael Wong, Maged M. Michael, Geoffrey Romer, Andrew Hunter, Arthur O’Dwyer, Daisy Hollman, JF Bastien, Hans Boehm, David Goldblatt, Frank Birbacher, Erik Rigtorp, Tomasz Kamiński, Jens Maurer +- +d:p2545r3 +P2545R3 +15 February 2023 + +Why RCU Should be in C++26 +https://wg21.link/p2545r3 + + + + +Paul E. McKenney, Michael Wong, Maged M. Michael, Geoffrey Romer, Andrew Hunter, Arthur O’Dwyer, Daisy Hollman, JF Bastien, Hans Boehm, David Goldblatt, Frank Birbacher, Erik Rigtorp, Tomasz Kamiński, Jens Maurer +- +d:p2545r4 +P2545R4 +8 March 2023 + +Read-Copy Update (RCU) +https://wg21.link/p2545r4 + + + + Paul E. McKenney, Michael Wong, Maged M. Michael, Geoffrey Romer, Andrew Hunter, Arthur O’Dwyer, Daisy Hollman, JF Bastien, Hans Boehm, David Goldblatt, Frank Birbacher, Erik Rigtorp, Tomasz Kamiński, Jens Maurer - d:p2546r0 @@ -10724,6 +11768,30 @@ https://wg21.link/p2546r3 +René Ferdinand Rivera Morell +- +d:p2546r4 +P2546R4 +21 May 2023 + +Debugging Support +https://wg21.link/p2546r4 + + + + +René Ferdinand Rivera Morell +- +d:p2546r5 +P2546R5 +5 July 2023 + +Debugging Support +https://wg21.link/p2546r5 + + + + René Ferdinand Rivera Morell - d:p2547r0 @@ -10808,6 +11876,30 @@ https://wg21.link/p2548r4 +Michael Florian Hava +- +d:p2548r5 +P2548R5 +3 April 2023 + +copyable_function +https://wg21.link/p2548r5 + + + + +Michael Florian Hava +- +d:p2548r6 +P2548R6 +15 June 2023 + +copyable_function +https://wg21.link/p2548r6 + + + + Michael Florian Hava - d:p2549r0 @@ -10904,6 +11996,30 @@ https://wg21.link/p2552r1 +Timur Doumler +- +d:p2552r2 +P2552R2 +19 May 2023 + +On the ignorability of standard attributes +https://wg21.link/p2552r2 + + + + +Timur Doumler +- +d:p2552r3 +P2552R3 +14 June 2023 + +On the ignorability of standard attributes +https://wg21.link/p2552r3 + + + + Timur Doumler - d:p2553r0 @@ -11000,6 +12116,18 @@ https://wg21.link/p2558r1 +Steve Downey +- +d:p2558r2 +P2558R2 +8 February 2023 + +Add @, $, and ` to the basic character set +https://wg21.link/p2558r2 + + + + Steve Downey - d:p2559r0 @@ -11060,6 +12188,18 @@ https://wg21.link/p2561r1 +Barry Revzin +- +d:p2561r2 +P2561R2 +18 May 2023 + +A control flow operator +https://wg21.link/p2561r2 + + + + Barry Revzin - d:p2562r0 @@ -11216,6 +12356,18 @@ https://wg21.link/p2572r0 +Tom Honermann +- +d:p2572r1 +P2572R1 +8 February 2023 + +std::format() fill character allowances +https://wg21.link/p2572r1 + + + + Tom Honermann - d:p2573r0 @@ -11228,6 +12380,30 @@ https://wg21.link/p2573r0 +Yihe Li +- +d:p2573r1 +P2573R1 +11 November 2023 + += delete("should have a reason"); +https://wg21.link/p2573r1 + + + + +Yihe Li +- +d:p2573r2 +P2573R2 +22 March 2024 + += delete("should have a reason"); +https://wg21.link/p2573r2 + + + + Yihe Li - d:p2574r0 @@ -11516,6 +12692,18 @@ https://wg21.link/p2588r2 +Gonzalo Brito, Eric A Niebler, Anthony Williams, Thomas Rodgers +- +d:p2588r3 +P2588R3 +7 February 2023 + +Relax std::barrier phase completion step guarantees +https://wg21.link/p2588r3 + + + + Gonzalo Brito, Eric A Niebler, Anthony Williams, Thomas Rodgers - d:p2589r0 @@ -11614,40 +12802,88 @@ https://wg21.link/p2591r2 Giuseppe D'Angelo - -d:p2592r0 -P2592R0 -20 May 2022 +d:p2591r3 +P2591R3 +20230130 -Hashing support for std::chrono value classes -https://wg21.link/p2592r0 +Concatenation of strings and string views +https://wg21.link/p2591r3 Giuseppe D'Angelo - -d:p2592r1 -P2592R1 -20220630 +d:p2591r4 +P2591R4 +11 July 2023 -Hashing support for std::chrono value classes -https://wg21.link/p2592r1 +Concatenation of strings and string views +https://wg21.link/p2591r4 Giuseppe D'Angelo - -d:p2592r2 -P2592R2 -26 September 2022 +d:p2591r5 +P2591R5 +20 March 2024 -Hashing support for std::chrono value classes +Concatenation of strings and string views +https://wg21.link/p2591r5 + + + + +Giuseppe D'Angelo +- +d:p2592r0 +P2592R0 +20 May 2022 + +Hashing support for std::chrono value classes +https://wg21.link/p2592r0 + + + + +Giuseppe D'Angelo +- +d:p2592r1 +P2592R1 +20220630 + +Hashing support for std::chrono value classes +https://wg21.link/p2592r1 + + + + +Giuseppe D'Angelo +- +d:p2592r2 +P2592R2 +26 September 2022 + +Hashing support for std::chrono value classes https://wg21.link/p2592r2 +Giuseppe D'Angelo +- +d:p2592r3 +P2592R3 +10 February 2023 + +Hashing support for std::chrono value classes +https://wg21.link/p2592r3 + + + + Giuseppe D'Angelo - d:p2593r0 @@ -11660,6 +12896,18 @@ https://wg21.link/p2593r0 +Barry Revzin +- +d:p2593r1 +P2593R1 +20 January 2023 + +Allowing static_assert(false) +https://wg21.link/p2593r1 + + + + Barry Revzin - d:p2594r0 @@ -11672,6 +12920,18 @@ https://wg21.link/p2594r0 +Chuanqi Xu +- +d:p2594r1 +P2594R1 +7 February 2023 + +Slides: Allow programmer to control coroutine elision (P2477R3 Presentation)) +https://wg21.link/p2594r1 + + + + Chuanqi Xu - d:p2596r0 @@ -11900,6 +13160,30 @@ https://wg21.link/p2609r1 +John Eivind Helset +- +d:p2609r2 +P2609R2 +22 January 2023 + +Relaxing Ranges Just A Smidge +https://wg21.link/p2609r2 + + + + +John Eivind Helset +- +d:p2609r3 +P2609R3 +10 February 2023 + +Relaxing Ranges Just A Smidge +https://wg21.link/p2609r3 + + + + John Eivind Helset - d:p2610r0 @@ -12056,6 +13340,18 @@ https://wg21.link/p2616r3 +Lewis Baker +- +d:p2616r4 +P2616R4 +16 February 2023 + +Making std::atomic notification/wait operations usable in more situations +https://wg21.link/p2616r4 + + + + Lewis Baker - d:p2617r0 @@ -12140,6 +13436,30 @@ https://wg21.link/p2621r1 +Corentin Jabot +- +d:p2621r2 +P2621R2 +8 February 2023 + +UB? In my Lexer? +https://wg21.link/p2621r2 + + + + +Corentin Jabot +- +d:p2621r3 +P2621R3 +18 May 2023 + +UB? In my Lexer? +https://wg21.link/p2621r3 + + + + Corentin Jabot - d:p2622r0 @@ -12296,6 +13616,30 @@ https://wg21.link/p2630r2 +Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie, Nevin Liber +- +d:p2630r3 +P2630R3 +15 March 2023 + +Submdspan +https://wg21.link/p2630r3 + + + + +Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie, Nevin Liber +- +d:p2630r4 +P2630R4 +22 June 2023 + +Submdspan +https://wg21.link/p2630r4 + + + + Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie, Nevin Liber - d:p2631r0 @@ -12416,6 +13760,30 @@ https://wg21.link/p2637r1 +Barry Revzin +- +d:p2637r2 +P2637R2 +16 May 2023 + +Member visit +https://wg21.link/p2637r2 + + + + +Barry Revzin +- +d:p2637r3 +P2637R3 +15 June 2023 + +Member visit +https://wg21.link/p2637r3 + + + + Barry Revzin - d:p2638r0 @@ -12500,6 +13868,42 @@ https://wg21.link/p2641r1 +Barry Revzin +- +d:p2641r2 +P2641R2 +7 February 2023 + +Checking if a union alternative is active +https://wg21.link/p2641r2 + + + + +Barry Revzin +- +d:p2641r3 +P2641R3 +16 May 2023 + +Checking if a union alternative is active +https://wg21.link/p2641r3 + + + + +Barry Revzin +- +d:p2641r4 +P2641R4 +15 June 2023 + +Checking if a union alternative is active +https://wg21.link/p2641r4 + + + + Barry Revzin - d:p2642r0 @@ -12538,6 +13942,54 @@ https://wg21.link/p2642r2 Mark Hoemmen, Christian Trott,Damien Lebrun-Grandie,Malte Förster,Jiaming Yuan - +d:p2642r3 +P2642R3 +14 July 2023 + +Padded mdspan layouts +https://wg21.link/p2642r3 + + + + +Mark Hoemmen, Christian Trott,Damien Lebrun-Grandie,Nicolas Morales,Malte Förster,Jiaming Yuan +- +d:p2642r4 +P2642R4 +15 October 2023 + +Padded mdspan layouts +https://wg21.link/p2642r4 + + + + +Christian Trott, Mark Hoemmen,Damien Lebrun-Grandie,Nicolas Morales,Malte Förster,Jiaming Yuan +- +d:p2642r5 +P2642R5 +5 December 2023 + +Padded mdspan layouts +https://wg21.link/p2642r5 + + + + +Christian Trott, Mark Hoemmen,Damien Lebrun-Grandie,Nicolas Morales,Malte Förster,Jiaming Yuan +- +d:p2642r6 +P2642R6 +18 June 2024 + +Padded mdspan layouts +https://wg21.link/p2642r6 + + + + +Christian Trott, Mark Hoemmen,Damien Lebrun-Grandie,Nicolas Morales,Malte Förster,Jiaming Yuan +- d:p2643r0 P2643R0 15 September 2022 @@ -12548,6 +14000,30 @@ https://wg21.link/p2643r0 +Gonzalo Brito Gadeschi, Olivier Giroux, Thomas Rodgers +- +d:p2643r1 +P2643R1 +18 May 2023 + +Improving C++ concurrency features +https://wg21.link/p2643r1 + + + + +Gonzalo Brito Gadeschi, Olivier Giroux, Thomas Rodgers +- +d:p2643r2 +P2643R2 +20240131 + +Improving C++ concurrency features +https://wg21.link/p2643r2 + + + + Gonzalo Brito Gadeschi, Olivier Giroux, Thomas Rodgers - d:p2644r0 @@ -12668,6 +14144,18 @@ https://wg21.link/p2652r1 +Pablo Halpern +- +d:p2652r2 +P2652R2 +9 February 2023 + +Disallow user specialization of allocator_traits +https://wg21.link/p2652r2 + + + + Pablo Halpern - d:p2653r0 @@ -12694,6 +14182,18 @@ https://wg21.link/p2653r1 Steve Downey - +d:p2654r0 +P2654R0 +19 May 2023 + +Modules and Macros +https://wg21.link/p2654r0 + + + + +Alisdair Meredith +- d:p2655r0 P2655R0 20220930 @@ -12718,6 +14218,30 @@ https://wg21.link/p2655r1 Hui Xie, S. Levent Yilmaz - +d:p2655r2 +P2655R2 +6 February 2023 + +common_reference_t of reference_wrapper Should Be a Reference Type +https://wg21.link/p2655r2 + + + + +Hui Xie, S. Levent Yilmaz, Tim Song +- +d:p2655r3 +P2655R3 +7 February 2023 + +common_reference_t of reference_wrapper Should Be a Reference Type +https://wg21.link/p2655r3 + + + + +Hui Xie, S. Levent Yilmaz, Tim Song +- d:p2656r0 P2656R0 14 October 2022 @@ -12740,6 +14264,30 @@ https://wg21.link/p2656r1 +René Ferdinand Rivera Morell, Ben Craig +- +d:p2656r2 +P2656R2 +15 February 2023 + +C++ Ecosystem International Standard +https://wg21.link/p2656r2 + + + + +René Ferdinand Rivera Morell, Ben Craig +- +d:p2656r3 +P2656R3 +11 July 2024 + +C++ Ecosystem International Standard +https://wg21.link/p2656r3 + + + + René Ferdinand Rivera Morell, Ben Craig - d:p2657r0 @@ -12862,30 +14410,210 @@ https://wg21.link/p2662r0 Corentin Jabot, Pablo Halpern, John Lakos, Alisdair Meredith, Joshua Berne - -d:p2663r0 -P2663R0 -10 October 2022 +d:p2662r1 +P2662R1 +18 May 2023 -Proposal to support interleaved complex values in std::simd -https://wg21.link/p2663r0 +Pack Indexing +https://wg21.link/p2662r1 -Daniel Towner +Corentin Jabot, Pablo Halpern - -d:p2664r0 -P2664R0 -21 October 2022 +d:p2662r2 +P2662R2 +15 July 2023 -Proposal to extend std::simd with permutation API -https://wg21.link/p2664r0 +Pack Indexing +https://wg21.link/p2662r2 + + + + +Corentin Jabot, Pablo Halpern +- +d:p2662r3 +P2662R3 +18 December 2023 + +Pack Indexing +https://wg21.link/p2662r3 + + + + +Corentin Jabot, Pablo Halpern +- +d:p2663r0 +P2663R0 +10 October 2022 + +Proposal to support interleaved complex values in std::simd +https://wg21.link/p2663r0 + + + + +Daniel Towner +- +d:p2663r1 +P2663R1 +25 January 2023 + +Proposal to support interleaved complex values in std::simd +https://wg21.link/p2663r1 + + + + +Daniel Towner +- +d:p2663r2 +P2663R2 +28 April 2023 + +Proposal to support interleaved complex values in std::simd +https://wg21.link/p2663r2 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2663r3 +P2663R3 +17 May 2023 + +Proposal to support interleaved complex values in std::simd +https://wg21.link/p2663r3 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2663r4 +P2663R4 +13 October 2023 + +Proposal to support interleaved complex values in std::simd +https://wg21.link/p2663r4 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2663r5 +P2663R5 +8 December 2023 + +Proposal to support interleaved complex values in std::simd +https://wg21.link/p2663r5 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2664r0 +P2664R0 +21 October 2022 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r0 + + + + +Daniel Towner +- +d:p2664r1 +P2664R1 +25 January 2023 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r1 Daniel Towner - +d:p2664r2 +P2664R2 +28 April 2023 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r2 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2664r3 +P2664R3 +17 May 2023 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r3 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2664r4 +P2664R4 +13 October 2023 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r4 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2664r5 +P2664R5 +25 October 2023 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r5 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2664r6 +P2664R6 +16 January 2024 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r6 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2664r7 +P2664R7 +25 June 2024 + +Proposal to extend std::simd with permutation API +https://wg21.link/p2664r7 + + + + +Daniel Towner, Ruslan Arutyunyan +- d:p2665r0 P2665R0 15 October 2022 @@ -12956,6 +14684,18 @@ https://wg21.link/p2670r0 +Barry Revzin +- +d:p2670r1 +P2670R1 +3 February 2023 + +Non-transient constexpr allocation +https://wg21.link/p2670r1 + + + + Barry Revzin - d:p2671r0 @@ -13112,6 +14852,18 @@ https://wg21.link/p2679r1 +Timur Doumler, Arthur O'Dwyer, Richard Smith, Alisdair Meredith, Robert Leahy +- +d:p2679r2 +P2679R2 +14 February 2023 + +Fixing std::start_lifetime_as and std::start_lifetime_as_array +https://wg21.link/p2679r2 + + + + Timur Doumler, Arthur O'Dwyer, Richard Smith, Alisdair Meredith, Robert Leahy - d:p2680r0 @@ -13150,6 +14902,18 @@ https://wg21.link/p2681r0 Richard Dosselmann, Michael Wong - +d:p2681r1 +P2681R1 +6 February 2023 + +More Basic Statistics +https://wg21.link/p2681r1 + + + + +Richard Dosselmann +- d:p2682r0 P2682R0 14 October 2022 @@ -13196,6 +14960,18 @@ https://wg21.link/p2685r0 +Alisdair Meredith, Joshua Berne +- +d:p2685r1 +P2685R1 +19 May 2023 + +Language Support For Scoped Objects +https://wg21.link/p2685r1 + + + + Alisdair Meredith, Joshua Berne - d:p2686r0 @@ -13210,6 +14986,54 @@ https://wg21.link/p2686r0 Corentin Jabot - +d:p2686r1 +P2686R1 +18 May 2023 + +constexpr structured bindings and references to constexpr variables +https://wg21.link/p2686r1 + + + + +Corentin Jabot, Brian Bi +- +d:p2686r2 +P2686R2 +14 September 2023 + +constexpr structured bindings and references to constexpr variables +https://wg21.link/p2686r2 + + + + +Corentin Jabot, Brian Bi +- +d:p2686r3 +P2686R3 +15 February 2024 + +constexpr structured bindings and references to constexpr variables +https://wg21.link/p2686r3 + + + + +Corentin Jabot, Brian Bi +- +d:p2686r4 +P2686R4 +5 July 2024 + +constexpr structured bindings and references to constexpr variables +https://wg21.link/p2686r4 + + + + +Corentin Jabot, Brian Bi +- d:p2687r0 P2687R0 15 October 2022 @@ -13232,6 +15056,18 @@ https://wg21.link/p2688r0 +Michael Park +- +d:p2688r1 +P2688R1 +15 February 2024 + +Pattern Matching: `match` Expression +https://wg21.link/p2688r1 + + + + Michael Park - d:p2689r0 @@ -13256,6 +15092,30 @@ https://wg21.link/p2689r1 +Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie, Dan Sunderland, Nevin Liber +- +d:p2689r2 +P2689R2 +20 July 2023 + +atomic_accessor +https://wg21.link/p2689r2 + + + + +Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie, Dan Sunderland, Nevin Liber +- +d:p2689r3 +P2689R3 +20240430 + +Atomic Refs Bound to Memory Orderings & Atomic Accessors +https://wg21.link/p2689r3 + + + + Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie, Dan Sunderland, Nevin Liber - d:p2690r0 @@ -13268,6 +15128,18 @@ https://wg21.link/p2690r0 +Ruslan Arutyunyan +- +d:p2690r1 +P2690R1 +16 March 2023 + +Presentation for C++17 parallel algorithms and P2300 +https://wg21.link/p2690r1 + + + + Ruslan Arutyunyan - d:p2691r0 @@ -13304,6 +15176,18 @@ https://wg21.link/p2693r0 +Corentin Jabot, Victor Zverovich +- +d:p2693r1 +P2693R1 +9 February 2023 + +Formatting thread::id and stacktrace +https://wg21.link/p2693r1 + + + + Corentin Jabot, Victor Zverovich - d:p2695r0 @@ -13316,6 +15200,18 @@ https://wg21.link/p2695r0 +Timur Doumler, John Spicer +- +d:p2695r1 +P2695R1 +9 February 2023 + +A proposed plan for contracts in C++ +https://wg21.link/p2695r1 + + + + Timur Doumler, John Spicer - d:p2696r0 @@ -13340,6 +15236,18 @@ https://wg21.link/p2697r0 +Michael Florian Hava +- +d:p2697r1 +P2697R1 +15 June 2023 + +Interfacing bitset with string_view +https://wg21.link/p2697r1 + + + + Michael Florian Hava - d:p2698r0 @@ -13568,6 +15476,18 @@ https://wg21.link/p2714r0 +Zhihao Yuan, Tomasz Kamiński +- +d:p2714r1 +P2714R1 +16 June 2023 + +Bind front and back to NTTP callables +https://wg21.link/p2714r1 + + + + Zhihao Yuan, Tomasz Kamiński - d:p2717r0 @@ -13582,43 +15502,127 @@ https://wg21.link/p2717r0 René Ferdinand Rivera Morell - -d:p2718r0 -P2718R0 -11 November 2022 +d:p2717r1 +P2717R1 +17 May 2023 -Wording for P2644R1 Fix for Range-based for Loop -https://wg21.link/p2718r0 +Tool Introspection +https://wg21.link/p2717r1 -Joshua Berne, Nicolai Josuttis +René Ferdinand Rivera Morell - -d:p2722r0 -P2722R0 -12 November 2022 +d:p2717r2 +P2717R2 +16 June 2023 -Slides: Beyond operator() (P2511R2 presentation) -https://wg21.link/p2722r0 +Tool Introspection +https://wg21.link/p2717r2 -Zhihao Yuan +René Ferdinand Rivera Morell - -d:p2723r0 -P2723R0 -16 November 2022 +d:p2717r3 +P2717R3 +14 October 2023 -Zero-initialize objects of automatic storage duration -https://wg21.link/p2723r0 +Tool Introspection +https://wg21.link/p2717r3 -JF Bastien +René Ferdinand Rivera Morell - -d:p2723r1 +d:p2717r4 +P2717R4 +9 November 2023 + +Tool Introspection +https://wg21.link/p2717r4 + + + + +René Ferdinand Rivera Morell +- +d:p2717r5 +P2717R5 +10 November 2023 + +Tool Introspection +https://wg21.link/p2717r5 + + + + +René Ferdinand Rivera Morell +- +d:p2718r0 +P2718R0 +11 November 2022 + +Wording for P2644R1 Fix for Range-based for Loop +https://wg21.link/p2718r0 + + + + +Joshua Berne, Nicolai Josuttis +- +d:p2719r0 +P2719R0 +18 May 2024 + +Type-aware allocation and deallocation functions +https://wg21.link/p2719r0 + + + + +Louis Dionne, Oliver Hunt +- +d:p2721r0 +P2721R0 +14 February 2024 + +Deprecating function +https://wg21.link/p2721r0 + + + + +Michael Florian Hava +- +d:p2722r0 +P2722R0 +12 November 2022 + +Slides: Beyond operator() (P2511R2 presentation) +https://wg21.link/p2722r0 + + + + +Zhihao Yuan +- +d:p2723r0 +P2723R0 +16 November 2022 + +Zero-initialize objects of automatic storage duration +https://wg21.link/p2723r0 + + + + +JF Bastien +- +d:p2723r1 P2723R1 15 January 2023 @@ -13640,6 +15644,18 @@ https://wg21.link/p2724r0 +Jarrad J. Waterloo +- +d:p2724r1 +P2724R1 +14 February 2023 + +constant dangling +https://wg21.link/p2724r1 + + + + Jarrad J. Waterloo - d:p2725r0 @@ -13688,6 +15704,54 @@ https://wg21.link/p2727r0 +Zach Laine +- +d:p2727r1 +P2727R1 +1 February 2023 + +std::iterator_interface +https://wg21.link/p2727r1 + + + + +Zach Laine +- +d:p2727r2 +P2727R2 +3 May 2023 + +std::iterator_interface +https://wg21.link/p2727r2 + + + + +Zach Laine +- +d:p2727r3 +P2727R3 +14 June 2023 + +std::iterator_interface +https://wg21.link/p2727r3 + + + + +Zach Laine +- +d:p2727r4 +P2727R4 +5 February 2024 + +std::iterator_interface +https://wg21.link/p2727r4 + + + + Zach Laine - d:p2728r0 @@ -13700,6 +15764,78 @@ https://wg21.link/p2728r0 +Zach Laine +- +d:p2728r1 +P2728R1 +5 May 2023 + +Unicode in the Library, Part 1: UTF Transcoding +https://wg21.link/p2728r1 + + + + +Zach Laine +- +d:p2728r2 +P2728R2 +10 May 2023 + +Unicode in the Library, Part 1: UTF Transcoding +https://wg21.link/p2728r2 + + + + +Zach Laine +- +d:p2728r3 +P2728R3 +10 May 2023 + +Unicode in the Library, Part 1: UTF Transcoding +https://wg21.link/p2728r3 + + + + +Zach Laine +- +d:p2728r4 +P2728R4 +19 June 2023 + +Unicode in the Library, Part 1: UTF Transcoding +https://wg21.link/p2728r4 + + + + +Zach Laine +- +d:p2728r5 +P2728R5 +11 July 2023 + +Unicode in the Library, Part 1: UTF Transcoding +https://wg21.link/p2728r5 + + + + +Zach Laine +- +d:p2728r6 +P2728R6 +14 August 2023 + +Unicode in the Library, Part 1: UTF Transcoding +https://wg21.link/p2728r6 + + + + Zach Laine - d:p2729r0 @@ -13724,6 +15860,18 @@ https://wg21.link/p2730r0 +Jarrad J. Waterloo +- +d:p2730r1 +P2730R1 +15 February 2023 + +variable scope +https://wg21.link/p2730r1 + + + + Jarrad J. Waterloo - d:p2732r0 @@ -13748,6 +15896,42 @@ https://wg21.link/p2733r0 +Victor Zverovich +- +d:p2733r1 +P2733R1 +6 February 2023 + +Fix handling of empty specifiers in std::format +https://wg21.link/p2733r1 + + + + +Victor Zverovich +- +d:p2733r2 +P2733R2 +9 February 2023 + +Fix handling of empty specifiers in std::format +https://wg21.link/p2733r2 + + + + +Victor Zverovich +- +d:p2733r3 +P2733R3 +10 February 2023 + +Fix handling of empty specifiers in std::format +https://wg21.link/p2733r3 + + + + Victor Zverovich - d:p2734r0 @@ -13784,6 +15968,18 @@ https://wg21.link/p2736r0 +Corentin Jabot +- +d:p2736r2 +P2736R2 +9 February 2023 + +Referencing the Unicode Standard +https://wg21.link/p2736r2 + + + + Corentin Jabot - d:p2737r0 @@ -13808,6 +16004,18 @@ https://wg21.link/p2738r0 +Corentin Jabot, David Ledger +- +d:p2738r1 +P2738R1 +13 February 2023 + +constexpr cast from void*: towards constexpr type-erasure +https://wg21.link/p2738r1 + + + + Corentin Jabot, David Ledger - d:p2739r0 @@ -13834,231 +16042,5727 @@ https://wg21.link/p2740r0 Jarrad J. Waterloo - -d:p2741r0 -P2741R0 -9 December 2022 +d:p2740r1 +P2740R1 +16 January 2023 -user-generated static_assert messages -https://wg21.link/p2741r0 +Simpler implicit dangling resolution +https://wg21.link/p2740r1 -Corentin Jabot +Jarrad J. Waterloo - -d:p2742r0 -P2742R0 -12 December 2022 +d:p2740r2 +P2740R2 +14 February 2023 -indirect dangling identification -https://wg21.link/p2742r0 +Simpler implicit dangling resolution +https://wg21.link/p2740r2 Jarrad J. Waterloo - -d:p2743r0 -P2743R0 -13 December 2022 +d:p2741r0 +P2741R0 +9 December 2022 -Contracts for C++: Prioritizing Safety - Presentation slides of P2680R0 -https://wg21.link/p2743r0 +user-generated static_assert messages +https://wg21.link/p2741r0 -Gabriel Dos Reis +Corentin Jabot - -d:p2746r0 -P2746R0 -15 December 2022 +d:p2741r1 +P2741R1 +12 February 2023 -Deprecate and Replace Fenv Rounding Modes -https://wg21.link/p2746r0 +user-generated static_assert messages +https://wg21.link/p2741r1 -Hans Boehm +Corentin Jabot - -d:p2747r0 -P2747R0 -17 December 2022 +d:p2741r2 +P2741R2 +11 May 2023 -Limited support for constexpr void* -https://wg21.link/p2747r0 +user-generated static_assert messages +https://wg21.link/p2741r2 -Barry Revzin +Corentin Jabot - -d:p2748r0 -P2748R0 -13 January 2023 +d:p2741r3 +P2741R3 +16 June 2023 -Disallow Binding a Returned glvalue to a Temporary -https://wg21.link/p2748r0 +user-generated static_assert messages +https://wg21.link/p2741r3 -Brian Bi +Corentin Jabot - -d:p2750r0 -P2750R0 -19 December 2022 - -C Dangling Reduction -https://wg21.link/p2750r0 +d:p2742r0 +P2742R0 +12 December 2022 + +indirect dangling identification +https://wg21.link/p2742r0 Jarrad J. Waterloo - -d:p2751r0 -P2751R0 -14 January 2023 +d:p2742r1 +P2742R1 +16 January 2023 -Evaluation of Checked Contracts -https://wg21.link/p2751r0 +indirect dangling identification +https://wg21.link/p2742r1 -Joshua Berne +Jarrad J. Waterloo - -d:p2752r0 -P2752R0 -9 January 2023 +d:p2742r2 +P2742R2 +14 February 2023 -Static storage for braced initializers -https://wg21.link/p2752r0 +indirect dangling identification +https://wg21.link/p2742r2 -Arthur O'Dwyer +Jarrad J. Waterloo - -d:p2756r0 -P2756R0 -9 January 2023 +d:p2743r0 +P2743R0 +13 December 2022 -Proposal of Simple Contract Side Effect Semantics -https://wg21.link/p2756r0 +Contracts for C++: Prioritizing Safety - Presentation slides of P2680R0 +https://wg21.link/p2743r0 -Andrew Tomazos +Gabriel Dos Reis - -d:p2757r0 -P2757R0 -8 January 2023 +d:p2746r0 +P2746R0 +15 December 2022 + +Deprecate and Replace Fenv Rounding Modes +https://wg21.link/p2746r0 + + + + +Hans Boehm +- +d:p2746r1 +P2746R1 +15 March 2023 + +Deprecate and Replace Fenv Rounding Modes +https://wg21.link/p2746r1 + + + + +Hans Boehm +- +d:p2746r2 +P2746R2 +15 May 2023 + +Deprecate and Replace Fenv Rounding Modes +https://wg21.link/p2746r2 + -Type checking format args -https://wg21.link/p2757r0 + + +Hans Boehm +- +d:p2746r3 +P2746R3 +15 August 2023 + +Deprecate and Replace Fenv Rounding Modes +https://wg21.link/p2746r3 + + + + +Hans Boehm +- +d:p2746r4 +P2746R4 +15 February 2024 + +Deprecate and Replace Fenv Rounding Modes +https://wg21.link/p2746r4 + + + + +Hans Boehm +- +d:p2746r5 +P2746R5 +16 April 2024 + +Deprecate and Replace Fenv Rounding Modes +https://wg21.link/p2746r5 + + + + +Hans Boehm +- +d:p2747r0 +P2747R0 +17 December 2022 + +Limited support for constexpr void* +https://wg21.link/p2747r0 Barry Revzin - -d:p2758r0 -P2758R0 -13 January 2023 +d:p2747r1 +P2747R1 +10 December 2023 -Emitting messages at compile time -https://wg21.link/p2758r0 +constexpr placement new +https://wg21.link/p2747r1 Barry Revzin - -d:p2759r0 -P2759R0 -15 January 2023 +d:p2747r2 +P2747R2 +19 March 2024 -DG Opinion on Safety for ISO C++ -https://wg21.link/p2759r0 +constexpr placement new +https://wg21.link/p2747r2 -Michael Wong, H. Hinnant, R. Orr, B. Stroustrup, D. Vandevoorde +Barry Revzin - -d:p2762r0 -P2762R0 +d:p2748r0 +P2748R0 13 January 2023 -Sender/Receiver Interface For Networking -https://wg21.link/p2762r0 +Disallow Binding a Returned glvalue to a Temporary +https://wg21.link/p2748r0 -Dietmar Kühl +Brian Bi - -d:p2763r0 -P2763R0 -13 January 2023 +d:p2748r1 +P2748R1 +15 May 2023 -`layout_stride` static extents default constructor fix -https://wg21.link/p2763r0 +Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/p2748r1 -Christian Trott, Damien Lebrun-Grandie, Mark Hoemmen, Nevin Liber +Brian Bi - -d:p2764r0 -P2764R0 -14 January 2023 +d:p2748r2 +P2748R2 +14 September 2023 -SG14: Low Latency/Games/Embedded/Finance/Simulation virtual meeting minutes 2023/01/11 -https://wg21.link/p2764r0 +Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/p2748r2 -Michael Wong +Brian Bi - -d:p2765r0 -P2765R0 +d:p2748r3 +P2748R3 +8 January 2024 + +Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/p2748r3 + + + + +Brian Bi +- +d:p2748r4 +P2748R4 +8 January 2024 + +Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/p2748r4 + + + + +Brian Bi +- +d:p2748r5 +P2748R5 +23 March 2024 + +Disallow Binding a Returned Glvalue to a Temporary +https://wg21.link/p2748r5 + + + + +Brian Bi +- +d:p2749r0 +P2749R0 +12 February 2023 + +Down with "character" +https://wg21.link/p2749r0 + + + + +Corentin Jabot +- +d:p2750r0 +P2750R0 +19 December 2022 + +C Dangling Reduction +https://wg21.link/p2750r0 + + + + +Jarrad J. Waterloo +- +d:p2750r1 +P2750R1 +16 January 2023 + +C Dangling Reduction +https://wg21.link/p2750r1 + + + + +Jarrad J. Waterloo +- +d:p2750r2 +P2750R2 +14 February 2023 + +C Dangling Reduction +https://wg21.link/p2750r2 + + + + +Jarrad J. Waterloo +- +d:p2751r0 +P2751R0 14 January 2023 -SG19: Machine Learning Virtual Meeting Minutes 2022/12/08-2023/01/12 -https://wg21.link/p2765r0 +Evaluation of Checked Contracts +https://wg21.link/p2751r0 -Michael Wong +Joshua Berne - -d:p2766r0 -P2766R0 -15 January 2023 +d:p2751r1 +P2751R1 +14 February 2023 -SG16: Unicode meeting summaries 2022-10-12 through 2022-12-14 -https://wg21.link/p2766r0 +Evaluation of Checked Contracts +https://wg21.link/p2751r1 -Tom Honermann +Joshua Berne - -d:p2769r0 -P2769R0 -15 January 2023 +d:p2752r0 +P2752R0 +9 January 2023 -get_element customization point object -https://wg21.link/p2769r0 +Static storage for braced initializers +https://wg21.link/p2752r0 -Ruslan Arutyunyan, Alexey Kukanov +Arthur O'Dwyer +- +d:p2752r1 +P2752R1 +10 March 2023 + +Static storage for braced initializers +https://wg21.link/p2752r1 + + + + +Arthur O'Dwyer +- +d:p2752r2 +P2752R2 +14 May 2023 + +Static storage for braced initializers +https://wg21.link/p2752r2 + + + + +Arthur O'Dwyer +- +d:p2752r3 +P2752R3 +14 June 2023 + +Static storage for braced initializers +https://wg21.link/p2752r3 + + + + +Arthur O'Dwyer +- +d:p2754r0 +P2754R0 +24 January 2023 + +Deconstructing Avoiding Uninitialized Reads of Auto Variables +https://wg21.link/p2754r0 + + + + +Jake Fevold +- +d:p2755r0 +P2755R0 +13 September 2023 + +A Bold Plan for a Complete Contracts Facility +https://wg21.link/p2755r0 + + + + +Joshua Berne, Jake Fevold, John Lakos +- +d:p2755r1 +P2755R1 +11 April 2024 + +A Bold Plan for a Complete Contracts Facility +https://wg21.link/p2755r1 + + + + +Joshua Berne, Jake Fevold, John Lakos +- +d:p2756r0 +P2756R0 +9 January 2023 + +Proposal of Simple Contract Side Effect Semantics +https://wg21.link/p2756r0 + + + + +Andrew Tomazos +- +d:p2757r0 +P2757R0 +8 January 2023 + +Type checking format args +https://wg21.link/p2757r0 + + + + +Barry Revzin +- +d:p2757r1 +P2757R1 +14 March 2023 + +Type checking format args +https://wg21.link/p2757r1 + + + + +Barry Revzin +- +d:p2757r2 +P2757R2 +16 May 2023 + +Type checking format args +https://wg21.link/p2757r2 + + + + +Barry Revzin +- +d:p2757r3 +P2757R3 +15 June 2023 + +Type checking format args +https://wg21.link/p2757r3 + + + + +Barry Revzin +- +d:p2758r0 +P2758R0 +13 January 2023 + +Emitting messages at compile time +https://wg21.link/p2758r0 + + + + +Barry Revzin +- +d:p2758r1 +P2758R1 +9 December 2023 + +Emitting messages at compile time +https://wg21.link/p2758r1 + + + + +Barry Revzin +- +d:p2758r2 +P2758R2 +15 February 2024 + +Emitting messages at compile time +https://wg21.link/p2758r2 + + + + +Barry Revzin +- +d:p2758r3 +P2758R3 +19 May 2024 + +Emitting messages at compile time +https://wg21.link/p2758r3 + + + + +Barry Revzin +- +d:p2759r0 +P2759R0 +15 January 2023 + +DG Opinion on Safety for ISO C++ +https://wg21.link/p2759r0 + + + + +Michael Wong, H. Hinnant, R. Orr, B. Stroustrup, D. Vandevoorde +- +d:p2759r1 +P2759R1 +23 January 2023 + +DG Opinion on Safety for ISO C++ +https://wg21.link/p2759r1 + + + + +Michael Wong, H. Hinnant, R. Orr, B. Stroustrup, D. Vandevoorde +- +d:p2760r0 +P2760R0 +17 September 2023 + +A Plan for C++26 Ranges +https://wg21.link/p2760r0 + + + + +Barry Revzin +- +d:p2760r1 +P2760R1 +15 December 2023 + +A Plan for C++26 Ranges +https://wg21.link/p2760r1 + + + + +Barry Revzin +- +d:p2761r0 +P2761R0 +8 November 2023 + +Slides: If structured binding (P0963R1 presentation) +https://wg21.link/p2761r0 + + + + +Zhihao Yuan +- +d:p2761r1 +P2761R1 +2 May 2024 + +Slides: If structured binding (P0963R1 presentation) +https://wg21.link/p2761r1 + + + + +Zhihao Yuan +- +d:p2761r2 +P2761R2 +13 June 2024 + +Slides: Evaluating structured binding as a condition (P0963R2 presentation) +https://wg21.link/p2761r2 + + + + +Zhihao Yuan +- +d:p2761r3 +P2761R3 +27 June 2024 + +Slides: Structured binding declaration as a condition (P0963R2 presentation) +https://wg21.link/p2761r3 + + + + +Zhihao Yuan +- +d:p2762r0 +P2762R0 +13 January 2023 + +Sender/Receiver Interface For Networking +https://wg21.link/p2762r0 + + + + +Dietmar Kühl +- +d:p2762r1 +P2762R1 +15 September 2023 + +Sender/Receiver Interface For Networking +https://wg21.link/p2762r1 + + + + +Dietmar Kuhl +- +d:p2762r2 +P2762R2 +12 October 2023 + +Sender/Receiver Interface For Networking +https://wg21.link/p2762r2 + + + + +Dietmar Kuhl +- +d:p2763r0 +P2763R0 +13 January 2023 + +`layout_stride` static extents default constructor fix +https://wg21.link/p2763r0 + + + + +Christian Trott, Damien Lebrun-Grandie, Mark Hoemmen, Nevin Liber +- +d:p2763r1 +P2763R1 +7 February 2023 + +`layout_stride` static extents default constructor fix +https://wg21.link/p2763r1 + + + + +Christian Trott, Damien Lebrun-Grandie, Mark Hoemmen, Nevin Liber +- +d:p2764r0 +P2764R0 +14 January 2023 + +SG14: Low Latency/Games/Embedded/Finance/Simulation virtual meeting minutes 2023/01/11 +https://wg21.link/p2764r0 + + + + +Michael Wong +- +d:p2765r0 +P2765R0 +14 January 2023 + +SG19: Machine Learning Virtual Meeting Minutes 2022/12/08-2023/01/12 +https://wg21.link/p2765r0 + + + + +Michael Wong +- +d:p2766r0 +P2766R0 +15 January 2023 + +SG16: Unicode meeting summaries 2022-10-12 through 2022-12-14 +https://wg21.link/p2766r0 + + + + +Tom Honermann +- +d:p2767r0 +P2767R0 +15 May 2023 + +flat_map/flat_set omnibus +https://wg21.link/p2767r0 + + + + +Arthur O'Dwyer +- +d:p2767r1 +P2767R1 +14 July 2023 + +flat_map/flat_set omnibus +https://wg21.link/p2767r1 + + + + +Arthur O'Dwyer +- +d:p2767r2 +P2767R2 +9 December 2023 + +flat_map/flat_set omnibus +https://wg21.link/p2767r2 + + + + +Arthur O'Dwyer +- +d:p2769r0 +P2769R0 +15 January 2023 + +get_element customization point object +https://wg21.link/p2769r0 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- +d:p2769r1 +P2769R1 +17 May 2023 + +get_element customization point object +https://wg21.link/p2769r1 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- +d:p2769r2 +P2769R2 +26 June 2024 + +get_element customization point object +https://wg21.link/p2769r2 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- +d:p2770r0 +P2770R0 +1 February 2023 + +Stashing stashing iterators for proper flattening +https://wg21.link/p2770r0 + + + + +Tim Song +- +d:p2771r0 +P2771R0 +17 January 2023 + +Towards memory safety in C++ +https://wg21.link/p2771r0 + + + + +Thomas Neumann +- +d:p2771r1 +P2771R1 +17 May 2023 + +Towards memory safety in C++ +https://wg21.link/p2771r1 + + + + +Thomas Neumann +- +d:p2772r0 +P2772R0 +17 January 2023 + +std::integral_constant literals do not suffice - constexpr_t? +https://wg21.link/p2772r0 + + + + +Matthias Kretz +- +d:p2773r0 +P2773R0 +16 February 2023 + +Considerations for Unicode algorithms +https://wg21.link/p2773r0 + + + + +Corentin Jabot +- +d:p2774r0 +P2774R0 +10 May 2023 + +Scoped thread-local storage +https://wg21.link/p2774r0 + + + + +Michael Florian Hava +- +d:p2774r1 +P2774R1 +20230930 + +Concurrent object pool (was: Scoped thread-local storage) +https://wg21.link/p2774r1 + + + + +Michael Florian Hava +- +d:p2775r0 +P2775R0 +25 May 2023 + +2023-05 Library Evolution Polls +https://wg21.link/p2775r0 + + + + +Bryce Adelstein Lelbach, Fabio Fracassi, Ben Craig +- +d:p2776r0 +P2776R0 +16 June 2023 + +2023-05 Library Evolution Poll Outcomes +https://wg21.link/p2776r0 + + + + +Bryce Adelstein Lelbach, Fabio Fracassi, Ben Craig +- +d:p2779r0 +P2779R0 +2 February 2023 + +Make basic_string_view's range construction conditionally explicit +https://wg21.link/p2779r0 + + + + +Giuseppe D'Angelo +- +d:p2779r1 +P2779R1 +11 July 2023 + +Make basic_string_view's range construction conditionally explicit +https://wg21.link/p2779r1 + + + + +Giuseppe D'Angelo +- +d:p2780r0 +P2780R0 +2 March 2023 + +Caller-side precondition checking, and Eval_and_throw +https://wg21.link/p2780r0 + + + + +Ville Voutilainen +- +d:p2781r1 +P2781R1 +4 May 2023 + +std::constexpr_v +https://wg21.link/p2781r1 + + + + +Zach Laine, Matthias Kretz +- +d:p2781r2 +P2781R2 +22 May 2023 + +std::constexpr_v +https://wg21.link/p2781r2 + + + + +Zach Laine, Matthias Kretz +- +d:p2781r3 +P2781R3 +12 June 2023 + +std::constexpr_v +https://wg21.link/p2781r3 + + + + +Zach Laine, Matthias Kretz +- +d:p2781r4 +P2781R4 +11 February 2024 + +std::constexpr_wrapper +https://wg21.link/p2781r4 + + + + +Zach Laine, Matthias Kretz +- +d:p2782r0 +P2782R0 +13 February 2023 + +A proposal for a type trait to detect if value initialization can be achieved by zero-filling +https://wg21.link/p2782r0 + + + + +Giuseppe D'Angelo +- +d:p2784r0 +P2784R0 +9 February 2023 + +Not halting the program after detected contract violation +https://wg21.link/p2784r0 + + + + +Andrzej Krzemieński +- +d:p2785r0 +P2785R0 +12 June 2023 + +Relocating prvalues +https://wg21.link/p2785r0 + + + + +Sébastien Bini, Ed Catmur +- +d:p2785r1 +P2785R1 +12 June 2023 + +Relocating prvalues +https://wg21.link/p2785r1 + + + + +Sébastien Bini, Ed Catmur +- +d:p2785r2 +P2785R2 +14 June 2023 + +Relocating prvalues +https://wg21.link/p2785r2 + + + + +Sébastien Bini, Ed Catmur +- +d:p2785r3 +P2785R3 +14 June 2023 + +Relocating prvalues +https://wg21.link/p2785r3 + + + + +Sébastien Bini, Ed Catmur +- +d:p2786r0 +P2786R0 +11 February 2023 + +Trivial relocatability options +https://wg21.link/p2786r0 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2786r1 +P2786R1 +19 May 2023 + +Trivial relocatability options +https://wg21.link/p2786r1 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2786r2 +P2786R2 +16 June 2023 + +Trivial relocatability options +https://wg21.link/p2786r2 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2786r3 +P2786R3 +14 October 2023 + +Trivial Relocatability For C++26 +https://wg21.link/p2786r3 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2786r4 +P2786R4 +9 February 2024 + +Trivial Relocatability For C++26 +https://wg21.link/p2786r4 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2786r5 +P2786R5 +9 April 2024 + +Trivial Relocatability For C++26 +https://wg21.link/p2786r5 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2786r6 +P2786R6 +21 May 2024 + +Trivial Relocatability For C++26 +https://wg21.link/p2786r6 + + + + +Mungo Gill, Alisdair Meredith +- +d:p2787r0 +P2787R0 +6 February 2023 + +pmr::generator - Promise Types are not Values +https://wg21.link/p2787r0 + + + + +Steve Downey +- +d:p2787r1 +P2787R1 +8 February 2023 + +pmr::generator - Promise Types are not Values +https://wg21.link/p2787r1 + + + + +Steve Downey +- +d:p2788r0 +P2788R0 +11 February 2023 + +Linkage for modular constants +https://wg21.link/p2788r0 + + + + +S. Davis Herring +- +d:p2789r0 +P2789R0 +13 February 2023 + +C++ Standard Library Ready Issues to be moved in Issaquah, Feb. 2023 +https://wg21.link/p2789r0 + + + + +Jonathan Wakely +- +d:p2790r0 +P2790R0 +13 February 2023 + +C++ Standard Library Immediate Issues to be moved in Issaquah, Feb. 2023 +https://wg21.link/p2790r0 + + + + +Jonathan Wakely +- +d:p2791r0 +P2791R0 +8 February 2023 + +mandate concepts for new features +https://wg21.link/p2791r0 + + + + +Ran Regev +- +d:p2795r0 +P2795R0 +13 June 2023 + +Correct and incorrect code, and &quot;erroneous behaviour&quot; +https://wg21.link/p2795r0 + + + + +Thomas Köppe +- +d:p2795r1 +P2795R1 +15 June 2023 + +Erroneous behaviour for uninitialized reads +https://wg21.link/p2795r1 + + + + +Thomas Köppe +- +d:p2795r2 +P2795R2 +16 June 2023 + +Erroneous behaviour for uninitialized reads +https://wg21.link/p2795r2 + + + + +Thomas Köppe +- +d:p2795r3 +P2795R3 +29 July 2023 + +Erroneous behaviour for uninitialized reads +https://wg21.link/p2795r3 + + + + +Thomas Köppe +- +d:p2795r4 +P2795R4 +10 November 2023 + +Erroneous behaviour for uninitialized reads +https://wg21.link/p2795r4 + + + + +Thomas Köppe +- +d:p2795r5 +P2795R5 +22 March 2024 + +Erroneous behaviour for uninitialized reads +https://wg21.link/p2795r5 + + + + +Thomas Köppe +- +d:p2796r0 +P2796R0 +12 February 2023 + +Core Language Working Group "ready" Issues for the February, 2023 meeting +https://wg21.link/p2796r0 + + + + +Jens Maurer +- +d:p2797r0 +P2797R0 +11 February 2023 + +Proposed resolution for CWG2692 Static and explicit object member functions with the same par +https://wg21.link/p2797r0 + + + + +Gašper Ažman +- +d:p2798r0 +P2798R0 +9 February 2023 + +Fix layout mappings all static extent default constructor +https://wg21.link/p2798r0 + + + + +Christian Trott, Damien Lebrun-Grandie, Mark Hoemmen +- +d:p2799r0 +P2799R0 +14 February 2023 + +Closed ranges may be a problem; breaking counted_iterator is not the solution +https://wg21.link/p2799r0 + + + + +Tim Song +- +d:p2800r0 +P2800R0 +20 September 2023 + +Dependency flag soup needs some fiber +https://wg21.link/p2800r0 + + + + +Ben Boeckel +- +d:p2802r0 +P2802R0 +9 February 2023 + +Presentation of P1385R7 to LEWG at Issaquah 2023 +https://wg21.link/p2802r0 + + + + +Guy Davidson +- +d:p2803r0 +P2803R0 +9 February 2023 + +std::simd Intro slides +https://wg21.link/p2803r0 + + + + +Matthias Kretz +- +d:p2805r0 +P2805R0 +10 February 2023 + +fiber_context: fibers without scheduler - LEWG slides +https://wg21.link/p2805r0 + + + + +Nat Goodspeed +- +d:p2806r0 +P2806R0 +14 February 2023 + +do expressions +https://wg21.link/p2806r0 + + + + +Barry Revzin, Bruno Cardoso Lopez, Zach Laine, Michael Park +- +d:p2806r1 +P2806R1 +12 March 2023 + +do expressions +https://wg21.link/p2806r1 + + + + +Barry Revzin, Bruno Cardoso Lopez, Zach Laine, Michael Park +- +d:p2806r2 +P2806R2 +16 November 2023 + +do expressions +https://wg21.link/p2806r2 + + + + +Barry Revzin, Bruno Cardoso Lopez, Zach Laine, Michael Park +- +d:p2807r0 +P2807R0 +10 February 2023 + +Issaquah Slides for Intel response to std::simd +https://wg21.link/p2807r0 + + + + +Daniel Towner +- +d:p2808r0 +P2808R0 +13 February 2023 + +Internal linkage in the global module +https://wg21.link/p2808r0 + + + + +S. Davis Herring, Michael Spencer +- +d:p2809r0 +P2809R0 +15 March 2023 + +Trivial infinite loops are not Undefined Behavior +https://wg21.link/p2809r0 + + + + +JF Bastien +- +d:p2809r1 +P2809R1 +18 June 2023 + +Trivial infinite loops are not Undefined Behavior +https://wg21.link/p2809r1 + + + + +JF Bastien +- +d:p2809r2 +P2809R2 +14 October 2023 + +Trivial infinite loops are not Undefined Behavior +https://wg21.link/p2809r2 + + + + +JF Bastien +- +d:p2809r3 +P2809R3 +21 March 2024 + +Trivial infinite loops are not Undefined Behavior +https://wg21.link/p2809r3 + + + + +JF Bastien +- +d:p2810r0 +P2810R0 +15 February 2023 + +is_debugger_present is_replaceable +https://wg21.link/p2810r0 + + + + +René Ferdinand Rivera Morell, Ben Craig +- +d:p2810r1 +P2810R1 +6 July 2023 + +is_debugger_present is_replaceable +https://wg21.link/p2810r1 + + + + +René Ferdinand Rivera Morell, Ben Craig +- +d:p2810r2 +P2810R2 +3 December 2023 + +is_debugger_present is_replaceable +https://wg21.link/p2810r2 + + + + +René Ferdinand Rivera Morell, Ben Craig +- +d:p2810r3 +P2810R3 +4 December 2023 + +is_debugger_present is_replaceable +https://wg21.link/p2810r3 + + + + +René Ferdinand Rivera Morell, Ben Craig +- +d:p2810r4 +P2810R4 +21 March 2024 + +is_debugger_present is_replaceable +https://wg21.link/p2810r4 + + + + +René Ferdinand Rivera Morell, Ben Craig +- +d:p2811r0 +P2811R0 +20 March 2023 + +Contract Violation Handlers +https://wg21.link/p2811r0 + + + + +Joshua Berne +- +d:p2811r1 +P2811R1 +20 March 2023 + +Contract Violation Handlers +https://wg21.link/p2811r1 + + + + +Joshua Berne +- +d:p2811r2 +P2811R2 +20 April 2023 + +Contract Violation Handlers +https://wg21.link/p2811r2 + + + + +Joshua Berne +- +d:p2811r3 +P2811R3 +4 May 2023 + +Contract Violation Handlers +https://wg21.link/p2811r3 + + + + +Joshua Berne +- +d:p2811r4 +P2811R4 +15 May 2023 + +Contract Violation Handlers +https://wg21.link/p2811r4 + + + + +Joshua Berne +- +d:p2811r5 +P2811R5 +28 June 2023 + +Contract-Violation Handlers +https://wg21.link/p2811r5 + + + + +Joshua Berne +- +d:p2811r6 +P2811R6 +28 June 2023 + +Contract-Violation Handlers +https://wg21.link/p2811r6 + + + + +Joshua Berne +- +d:p2811r7 +P2811R7 +13 July 2023 + +Contract-Violation Handlers +https://wg21.link/p2811r7 + + + + +Joshua Berne +- +d:p2812r0 +P2812R0 +14 February 2023 + +P1673R11 LEWG presentation +https://wg21.link/p2812r0 + + + + +Mark Hoemmen, Christian Trott,Damien Lebrun-Grandie,Nevin Liber +- +d:p2814r0 +P2814R0 +19 May 2023 + +Trivial Relocatability --- Comparing P1144 with P2786 +https://wg21.link/p2814r0 + + + + +Mungo Gill, Alisdair Meredith; Arthur O`Dwyer +- +d:p2814r1 +P2814R1 +16 June 2023 + +Trivial Relocatability --- Comparing P1144 with P2786 +https://wg21.link/p2814r1 + + + + +Mungo Gill, Alisdair Meredith; Arthur O`Dwyer +- +d:p2815r0 +P2815R0 +16 February 2023 + +Slides for presentation on P2188R1 +https://wg21.link/p2815r0 + + + + +Anthony Williams +- +d:p2816r0 +P2816R0 +16 February 2023 + +Safety Profiles: Type-and-resource Safe programming in ISO Standard C++ +https://wg21.link/p2816r0 + + + + +Bjarne Stroustrup, Gabriel Dos Reis +- +d:p2817r0 +P2817R0 +5 March 2023 + +The idea behind the contracts MVP +https://wg21.link/p2817r0 + + + + +Andrzej Krzemieński +- +d:p2818r0 +P2818R0 +15 March 2023 + +Uniform Call Syntax for explicit-object member functions +https://wg21.link/p2818r0 + + + + +Gašper Ažman +- +d:p2819r0 +P2819R0 +23 February 2023 + +Add tuple protocol to complex +https://wg21.link/p2819r0 + + + + +Michael Florian Hava, Christoph Hofer +- +d:p2819r1 +P2819R1 +14 July 2023 + +Add tuple protocol to complex +https://wg21.link/p2819r1 + + + + +Michael Florian Hava, Christoph Hofer +- +d:p2819r2 +P2819R2 +18 December 2023 + +Add tuple protocol to complex +https://wg21.link/p2819r2 + + + + +Michael Florian Hava, Christoph Hofer +- +d:p2821r0 +P2821R0 +21 February 2023 + +span.at() +https://wg21.link/p2821r0 + + + + +Jarrad J. Waterloo +- +d:p2821r1 +P2821R1 +13 April 2023 + +span.at() +https://wg21.link/p2821r1 + + + + +Jarrad J. Waterloo +- +d:p2821r2 +P2821R2 +26 May 2023 + +span.at() +https://wg21.link/p2821r2 + + + + +Jarrad J. Waterloo +- +d:p2821r3 +P2821R3 +12 June 2023 + +span.at() +https://wg21.link/p2821r3 + + + + +Jarrad J. Waterloo +- +d:p2821r4 +P2821R4 +26 July 2023 + +span.at() +https://wg21.link/p2821r4 + + + + +Jarrad J. Waterloo +- +d:p2821r5 +P2821R5 +18 December 2023 + +span.at() +https://wg21.link/p2821r5 + + + + +Jarrad J. Waterloo +- +d:p2822r0 +P2822R0 +15 February 2024 + +Providing user control of associated entities of class types +https://wg21.link/p2822r0 + + + + +Lewis Baker +- +d:p2822r1 +P2822R1 +9 May 2024 + +Providing user control of associated entities of class types +https://wg21.link/p2822r1 + + + + +Lewis Baker +- +d:p2822r2 +P2822R2 +8 August 2024 + +Providing user control of associated entities of class types +https://wg21.link/p2822r2 + + + + +Lewis Baker +- +d:p2824r0 +P2824R0 +6 March 2023 + +WG21 February 2023 Issaquah meeting Record of Discussion +https://wg21.link/p2824r0 + + + + +Nina Ranns +- +d:p2825r0 +P2825R0 +15 March 2023 + +calltarget(unevaluated-call-expression) +https://wg21.link/p2825r0 + + + + +Gašper Ažman +- +d:p2825r1 +P2825R1 +21 March 2024 + +Overload Resolution hook: declcall(unevaluated-postfix-expression) +https://wg21.link/p2825r1 + + + + +Gašper Ažman +- +d:p2825r2 +P2825R2 +16 April 2024 + +Overload Resolution hook: declcall(unevaluated-postfix-expression) +https://wg21.link/p2825r2 + + + + +Gašper Ažman +- +d:p2826r0 +P2826R0 +15 March 2023 + +Replacement functions +https://wg21.link/p2826r0 + + + + +Gašper Ažman +- +d:p2826r1 +P2826R1 +5 November 2023 + +Replacement functions +https://wg21.link/p2826r1 + + + + +Gašper Ažman +- +d:p2826r2 +P2826R2 +18 March 2024 + +Replacement functions +https://wg21.link/p2826r2 + + + + +Gašper Ažman +- +d:p2827r0 +P2827R0 +14 March 2023 + +Floating-point overflow and underflow in from_chars (LWG 3081) +https://wg21.link/p2827r0 + + + + +Zhihao Yuan +- +d:p2827r1 +P2827R1 +20 November 2023 + +Floating-point overflow and underflow in from_chars (LWG 3081) +https://wg21.link/p2827r1 + + + + +Zhihao Yuan +- +d:p2828r0 +P2828R0 +13 March 2023 + +Copy elision for direct-initialization with a conversion function (Core issue 2327) +https://wg21.link/p2828r0 + + + + +Brian Bi +- +d:p2828r1 +P2828R1 +12 May 2023 + +Copy elision for direct-initialization with a conversion function (Core issue 2327) +https://wg21.link/p2828r1 + + + + +Brian Bi +- +d:p2828r2 +P2828R2 +12 June 2023 + +Copy elision for direct-initialization with a conversion function (Core issue 2327) +https://wg21.link/p2828r2 + + + + +Brian Bi +- +d:p2829r0 +P2829R0 +13 April 2023 + +Proposal of Contracts Supporting Const-On-Definition Style +https://wg21.link/p2829r0 + + + + +Andrew Tomazos +- +d:p2830r0 +P2830R0 +16 March 2023 + +constexpr type comparison +https://wg21.link/p2830r0 + + + + +Gašper Ažman, Nathan Nichols +- +d:p2830r1 +P2830R1 +5 November 2023 + +constexpr type comparison +https://wg21.link/p2830r1 + + + + +Gašper Ažman, Nathan Nichols +- +d:p2830r2 +P2830R2 +18 March 2024 + +Standardized Constexpr Type Ordering +https://wg21.link/p2830r2 + + + + +Gašper Ažman, Nathan Nichols +- +d:p2830r3 +P2830R3 +16 April 2024 + +Standardized Constexpr Type Ordering +https://wg21.link/p2830r3 + + + + +Gašper Ažman, Nathan Nichols +- +d:p2830r4 +P2830R4 +21 May 2024 + +Standardized Constexpr Type Ordering +https://wg21.link/p2830r4 + + + + +Gašper Ažman, Nathan Nichols +- +d:p2831r0 +P2831R0 +16 May 2023 + +Functions having a narrow contract should not be noexcept +https://wg21.link/p2831r0 + + + + +Timur Doumler, Ed Catmur +- +d:p2833r0 +P2833R0 +13 March 2023 + +Freestanding Library: inout expected span +https://wg21.link/p2833r0 + + + + +Ben Craig +- +d:p2833r1 +P2833R1 +19 August 2023 + +Freestanding Library: inout expected span +https://wg21.link/p2833r1 + + + + +Ben Craig +- +d:p2833r2 +P2833R2 +14 September 2023 + +Freestanding Library: inout expected span +https://wg21.link/p2833r2 + + + + +Ben Craig +- +d:p2834r0 +P2834R0 +15 May 2023 + +Semantic Stability Across Contract-Checking Build Modes +https://wg21.link/p2834r0 + + + + +Joshua Berne, John Lakos +- +d:p2834r1 +P2834R1 +8 June 2023 + +Semantic Stability Across Contract-Checking Build Modes +https://wg21.link/p2834r1 + + + + +Joshua Berne, John Lakos +- +d:p2835r0 +P2835R0 +18 May 2023 + +Expose std::atomic_ref's object address +https://wg21.link/p2835r0 + + + + +Gonzalo Brito Gadeschi +- +d:p2835r1 +P2835R1 +26 June 2023 + +Expose std::atomic_ref's object address +https://wg21.link/p2835r1 + + + + +Gonzalo Brito Gadeschi +- +d:p2835r2 +P2835R2 +10 January 2024 + +Expose std::atomic_ref's object address +https://wg21.link/p2835r2 + + + + +Gonzalo Brito Gadeschi +- +d:p2835r3 +P2835R3 +20240131 + +Expose std::atomic_ref's object address +https://wg21.link/p2835r3 + + + + +Gonzalo Brito Gadeschi +- +d:p2835r4 +P2835R4 +21 May 2024 + +Expose std::atomic_ref's object address +https://wg21.link/p2835r4 + + + + +Gonzalo Brito Gadeschi +- +d:p2836r0 +P2836R0 +21 March 2023 + +std::const_iterator often produces an unexpected type +https://wg21.link/p2836r0 + + + + +Christopher Di Bella +- +d:p2836r1 +P2836R1 +11 July 2023 + +std::basic_const_iterator should follow its underlying type's convertibility +https://wg21.link/p2836r1 + + + + +Christopher Di Bella +- +d:p2837r0 +P2837R0 +19 May 2023 + +Planning to Revisit the Lakos Rule +https://wg21.link/p2837r0 + + + + +Alisdair Meredith, Harry Bott +- +d:p2838r0 +P2838R0 +22 March 2023 + +Unconditional contract violation handling of any kind is a serious problem +https://wg21.link/p2838r0 + + + + +Ville Voutilainen +- +d:p2839r0 +P2839R0 +15 May 2023 + +Nontrivial relocation via a new "owning reference" type +https://wg21.link/p2839r0 + + + + +Brian Bi, Joshua Berne +- +d:p2841r0 +P2841R0 +18 May 2023 + +Concept Template Parameters +https://wg21.link/p2841r0 + + + + +Corentin Jabot, Gašper Ažman +- +d:p2841r1 +P2841R1 +14 October 2023 + +Concept Template Parameters +https://wg21.link/p2841r1 + + + + +Corentin Jabot, Gašper Ažman +- +d:p2841r2 +P2841R2 +22 February 2024 + +Concept and variable-template template-parameters +https://wg21.link/p2841r2 + + + + +Corentin Jabot, Gašper Ažman +- +d:p2841r3 +P2841R3 +22 May 2024 + +Concept and variable-template template-parameters +https://wg21.link/p2841r3 + + + + +Corentin Jabot, Gašper Ažman, James Touton +- +d:p2842r0 +P2842R0 +19 May 2023 + +Destructor Semantics Do Not Affect Constructible Traits +https://wg21.link/p2842r0 + + + + +Alisdair Meredith, Harry Bott +- +d:p2843r0 +P2843R0 +19 May 2023 + +Preprocessing is never undefined +https://wg21.link/p2843r0 + + + + +Alisdair Meredith +- +d:p2845r0 +P2845R0 +7 May 2023 + +Formatting of std::filesystem::path +https://wg21.link/p2845r0 + + + + +Victor Zverovich +- +d:p2845r1 +P2845R1 +8 June 2023 + +Formatting of std::filesystem::path +https://wg21.link/p2845r1 + + + + +Victor Zverovich +- +d:p2845r2 +P2845R2 +23 July 2023 + +Formatting of std::filesystem::path +https://wg21.link/p2845r2 + + + + +Victor Zverovich +- +d:p2845r3 +P2845R3 +1 October 2023 + +Formatting of std::filesystem::path +https://wg21.link/p2845r3 + + + + +Victor Zverovich +- +d:p2845r4 +P2845R4 +7 October 2023 + +Formatting of std::filesystem::path +https://wg21.link/p2845r4 + + + + +Victor Zverovich +- +d:p2845r5 +P2845R5 +24 November 2023 + +Formatting of std::filesystem::path +https://wg21.link/p2845r5 + + + + +Victor Zverovich +- +d:p2845r6 +P2845R6 +27 January 2024 + +Formatting of std::filesystem::path +https://wg21.link/p2845r6 + + + + +Victor Zverovich +- +d:p2845r7 +P2845R7 +10 March 2024 + +Formatting of std::filesystem::path +https://wg21.link/p2845r7 + + + + +Victor Zverovich +- +d:p2845r8 +P2845R8 +21 March 2024 + +Formatting of std::filesystem::path +https://wg21.link/p2845r8 + + + + +Victor Zverovich +- +d:p2846r0 +P2846R0 +11 May 2023 + +size_hint: Eagerly reserving memory for not-quite-sized lazy ranges +https://wg21.link/p2846r0 + + + + +Corentin Jabot +- +d:p2846r1 +P2846R1 +15 September 2023 + +size_hint: Eagerly reserving memory for not-quite-sized lazy ranges +https://wg21.link/p2846r1 + + + + +Corentin Jabot +- +d:p2846r2 +P2846R2 +22 May 2024 + +reserve_hint: Eagerly reserving memory for not-quite-sized lazy ranges +https://wg21.link/p2846r2 + + + + +Corentin Jabot +- +d:p2848r0 +P2848R0 +24 April 2023 + +std::is_uniqued +https://wg21.link/p2848r0 + + + + +Arthur O'Dwyer, Enrico Mauro +- +d:p2848r1 +P2848R1 +14 July 2024 + +std::is_uniqued +https://wg21.link/p2848r1 + + + + +Arthur O'Dwyer, Enrico Mauro +- +d:p2849r0 +P2849R0 +21 May 2024 + +async-object - aka async-RAII objects +https://wg21.link/p2849r0 + + + + +Kirk Shoop +- +d:p2850r0 +P2850R0 +15 May 2023 + +Minimal Compiler Preserved Dependencies +https://wg21.link/p2850r0 + + + + +Mark Batty, Simon Cooksey +- +d:p2852r0 +P2852R0 +24 April 2023 + +Contract violation handling semantics for the contracts MVP +https://wg21.link/p2852r0 + + + + +Tom Honermann +- +d:p2853r0 +P2853R0 +10 May 2023 + +Proposal of std::contract_violation +https://wg21.link/p2853r0 + + + + +Andrew Tomazos +- +d:p2855r0 +P2855R0 +18 May 2023 + +Member customization points for Senders and Receivers +https://wg21.link/p2855r0 + + + + +Ville Voutilainen +- +d:p2855r1 +P2855R1 +22 February 2024 + +Member customization points for Senders and Receivers +https://wg21.link/p2855r1 + + + + +Ville Voutilainen +- +d:p2857r0 +P2857R0 +28 April 2023 + +P2596R0 Critique +https://wg21.link/p2857r0 + + + + +Matt Bentley +- +d:p2858r0 +P2858R0 +12 May 2023 + +Noexcept vs contract violations +https://wg21.link/p2858r0 + + + + +Andrzej Krzemieński +- +d:p2861r0 +P2861R0 +19 May 2023 + +The Lakos Rule: Narrow Contracts And `noexcept` Are Inherently Incompatible +https://wg21.link/p2861r0 + + + + +John Lakos +- +d:p2862r0 +P2862R0 +9 May 2023 + +text_encoding::name() should never return null values +https://wg21.link/p2862r0 + + + + +Daniel Krügler +- +d:p2862r1 +P2862R1 +24 September 2023 + +text_encoding::name() should never return null values +https://wg21.link/p2862r1 + + + + +Daniel Krügler +- +d:p2863r0 +P2863R0 +19 May 2023 + +Review Annex D for C++26 +https://wg21.link/p2863r0 + + + + +Alisdair Meredith +- +d:p2863r1 +P2863R1 +15 August 2023 + +Review Annex D for C++26 +https://wg21.link/p2863r1 + + + + +Alisdair Meredith +- +d:p2863r2 +P2863R2 +15 October 2023 + +Review Annex D for C++26 +https://wg21.link/p2863r2 + + + + +Alisdair Meredith +- +d:p2863r3 +P2863R3 +18 December 2023 + +Review Annex D for C++26 +https://wg21.link/p2863r3 + + + + +Alisdair Meredith +- +d:p2863r4 +P2863R4 +15 February 2024 + +Review Annex D for C++26 +https://wg21.link/p2863r4 + + + + +Alisdair Meredith +- +d:p2863r5 +P2863R5 +16 April 2024 + +Review Annex D for C++26 +https://wg21.link/p2863r5 + + + + +Alisdair Meredith +- +d:p2863r6 +P2863R6 +24 June 2024 + +Review Annex D for C++26 +https://wg21.link/p2863r6 + + + + +Alisdair Meredith +- +d:p2863r7 +P2863R7 +9 July 2024 + +Review Annex D for C++26 +https://wg21.link/p2863r7 + + + + +Alisdair Meredith +- +d:p2864r0 +P2864R0 +19 May 2023 + +Remove Deprecated Arithmetic Conversion on Enumerations From C++26 +https://wg21.link/p2864r0 + + + + +Alisdair Meredith +- +d:p2864r1 +P2864R1 +16 August 2023 + +Remove Deprecated Arithmetic Conversion on Enumerations From C++26 +https://wg21.link/p2864r1 + + + + +Alisdair Meredith +- +d:p2864r2 +P2864R2 +18 December 2023 + +Remove Deprecated Arithmetic Conversion on Enumerations From C++26 +https://wg21.link/p2864r2 + + + + +Alisdair Meredith +- +d:p2865r0 +P2865R0 +19 May 2023 + +Remove Deprecated Array Comparisons from C++26 +https://wg21.link/p2865r0 + + + + +Alisdair Meredith +- +d:p2865r1 +P2865R1 +16 June 2023 + +Remove Deprecated Array Comparisons from C++26 +https://wg21.link/p2865r1 + + + + +Alisdair Meredith +- +d:p2865r2 +P2865R2 +16 August 2023 + +Remove Deprecated Array Comparisons from C++26 +https://wg21.link/p2865r2 + + + + +Alisdair Meredith +- +d:p2865r3 +P2865R3 +14 September 2023 + +Remove Deprecated Array Comparisons from C++26 +https://wg21.link/p2865r3 + + + + +Alisdair Meredith +- +d:p2865r4 +P2865R4 +12 November 2023 + +Remove Deprecated Array Comparisons from C++26 +https://wg21.link/p2865r4 + + + + +Alisdair Meredith +- +d:p2865r5 +P2865R5 +9 July 2024 + +Remove Deprecated Array Comparisons from C++26 +https://wg21.link/p2865r5 + + + + +Alisdair Meredith +- +d:p2866r0 +P2866R0 +19 May 2023 + +Remove Deprecated Volatile Features From C++26 +https://wg21.link/p2866r0 + + + + +Alisdair Meredith +- +d:p2866r1 +P2866R1 +16 September 2023 + +Remove Deprecated Volatile Features From C++26 +https://wg21.link/p2866r1 + + + + +Alisdair Meredith +- +d:p2866r2 +P2866R2 +16 April 2024 + +Remove Deprecated Volatile Features From C++26 +https://wg21.link/p2866r2 + + + + +Alisdair Meredith +- +d:p2866r3 +P2866R3 +28 June 2024 + +Remove Deprecated Volatile Features From C++26 +https://wg21.link/p2866r3 + + + + +Alisdair Meredith +- +d:p2866r4 +P2866R4 +15 July 2024 + +Remove Deprecated Volatile Features From C++26 +https://wg21.link/p2866r4 + + + + +Alisdair Meredith +- +d:p2867r0 +P2867R0 +19 May 2023 + +Remove Deprecated strstreams From C++26 +https://wg21.link/p2867r0 + + + + +Alisdair Meredith +- +d:p2867r1 +P2867R1 +16 September 2023 + +Remove Deprecated strstreams From C++26 +https://wg21.link/p2867r1 + + + + +Alisdair Meredith +- +d:p2867r2 +P2867R2 +20 March 2024 + +Remove Deprecated strstreams From C++26 +https://wg21.link/p2867r2 + + + + +Alisdair Meredith +- +d:p2868r0 +P2868R0 +19 May 2023 + +Remove Deprecated `std::allocator` Typedef From C++26 +https://wg21.link/p2868r0 + + + + +Alisdair Meredith +- +d:p2868r1 +P2868R1 +15 August 2023 + +Remove Deprecated `std::allocator` Typedef From C++26 +https://wg21.link/p2868r1 + + + + +Alisdair Meredith +- +d:p2868r2 +P2868R2 +14 September 2023 + +Remove Deprecated `std::allocator` Typedef From C++26 +https://wg21.link/p2868r2 + + + + +Alisdair Meredith +- +d:p2868r3 +P2868R3 +18 December 2023 + +Remove Deprecated `std::allocator` Typedef From C++26 +https://wg21.link/p2868r3 + + + + +Alisdair Meredith +- +d:p2869r0 +P2869R0 +19 May 2023 + +Remove Deprecated `shared_ptr` Atomic Access APIs From C++26 +https://wg21.link/p2869r0 + + + + +Alisdair Meredith +- +d:p2869r1 +P2869R1 +16 August 2023 + +Remove Deprecated `shared_ptr` Atomic Access APIs From C++26 +https://wg21.link/p2869r1 + + + + +Alisdair Meredith +- +d:p2869r2 +P2869R2 +16 September 2023 + +Remove Deprecated `shared_ptr` Atomic Access APIs From C++26 +https://wg21.link/p2869r2 + + + + +Alisdair Meredith +- +d:p2869r3 +P2869R3 +3 December 2023 + +Remove Deprecated `shared_ptr` Atomic Access APIs From C++26 +https://wg21.link/p2869r3 + + + + +Alisdair Meredith +- +d:p2869r4 +P2869R4 +21 March 2024 + +Remove Deprecated `shared_ptr` Atomic Access APIs From C++26 +https://wg21.link/p2869r4 + + + + +Alisdair Meredith +- +d:p2870r0 +P2870R0 +19 May 2023 + +Remove `basic_string::reserve()` From C++26 +https://wg21.link/p2870r0 + + + + +Alisdair Meredith +- +d:p2870r1 +P2870R1 +16 August 2023 + +Remove `basic_string::reserve()` From C++26 +https://wg21.link/p2870r1 + + + + +Alisdair Meredith +- +d:p2870r2 +P2870R2 +15 September 2023 + +Remove `basic_string::reserve()` From C++26 +https://wg21.link/p2870r2 + + + + +Alisdair Meredith +- +d:p2870r3 +P2870R3 +18 December 2023 + +Remove `basic_string::reserve()` From C++26 +https://wg21.link/p2870r3 + + + + +Alisdair Meredith +- +d:p2871r0 +P2871R0 +19 May 2023 + +Remove Deprecated Unicode Conversion Facets From C++26 +https://wg21.link/p2871r0 + + + + +Alisdair Meredith +- +d:p2871r1 +P2871R1 +8 August 2023 + +Remove Deprecated Unicode Conversion Facets From C++26 +https://wg21.link/p2871r1 + + + + +Alisdair Meredith +- +d:p2871r2 +P2871R2 +15 September 2023 + +Remove Deprecated Unicode Conversion Facets From C++26 +https://wg21.link/p2871r2 + + + + +Alisdair Meredith +- +d:p2871r3 +P2871R3 +18 December 2023 + +Remove Deprecated Unicode Conversion Facets From C++26 +https://wg21.link/p2871r3 + + + + +Alisdair Meredith +- +d:p2872r0 +P2872R0 +19 May 2023 + +Remove `wstring_convert` From C++26 +https://wg21.link/p2872r0 + + + + +Alisdair Meredith +- +d:p2872r1 +P2872R1 +7 June 2023 + +Remove `wstring_convert` From C++26 +https://wg21.link/p2872r1 + + + + +Alisdair Meredith +- +d:p2872r2 +P2872R2 +14 September 2023 + +Remove `wstring_convert` From C++26 +https://wg21.link/p2872r2 + + + + +Alisdair Meredith +- +d:p2872r3 +P2872R3 +20 March 2024 + +Remove `wstring_convert` From C++26 +https://wg21.link/p2872r3 + + + + +Alisdair Meredith +- +d:p2873r0 +P2873R0 +19 May 2023 + +Remove Deprecated locale category facets for Unicode from C++26 +https://wg21.link/p2873r0 + + + + +Alisdair Meredith +- +d:p2873r1 +P2873R1 +8 April 2024 + +Remove Deprecated locale category facets for Unicode from C++26 +https://wg21.link/p2873r1 + + + + +Alisdair Meredith, Tom Honermann +- +d:p2873r2 +P2873R2 +6 July 2024 + +Remove Deprecated locale category facets for Unicode from C++26 +https://wg21.link/p2873r2 + + + + +Alisdair Meredith, Tom Honermann +- +d:p2874r0 +P2874R0 +19 May 2023 + +Mandating Annex D +https://wg21.link/p2874r0 + + + + +Alisdair Meredith +- +d:p2874r1 +P2874R1 +12 June 2023 + +Mandating Annex D +https://wg21.link/p2874r1 + + + + +Alisdair Meredith +- +d:p2874r2 +P2874R2 +12 June 2023 + +Mandating Annex D +https://wg21.link/p2874r2 + + + + +Alisdair Meredith +- +d:p2875r0 +P2875R0 +19 May 2023 + +Undeprecate `polymorphic_allocator::destroy` For C++26 +https://wg21.link/p2875r0 + + + + +Alisdair Meredith +- +d:p2875r1 +P2875R1 +15 August 2023 + +Undeprecate `polymorphic_allocator::destroy` For C++26 +https://wg21.link/p2875r1 + + + + +Alisdair Meredith +- +d:p2875r2 +P2875R2 +15 September 2023 + +Undeprecate `polymorphic_allocator::destroy` For C++26 +https://wg21.link/p2875r2 + + + + +Alisdair Meredith +- +d:p2875r3 +P2875R3 +15 February 2024 + +Undeprecate `polymorphic_allocator::destroy` For C++26 +https://wg21.link/p2875r3 + + + + +Alisdair Meredith +- +d:p2875r4 +P2875R4 +21 March 2024 + +Undeprecate `polymorphic_allocator::destroy` For C++26 +https://wg21.link/p2875r4 + + + + +Alisdair Meredith +- +d:p2876r0 +P2876R0 +18 May 2023 + +Proposal to extend std::simd with more constructors and accessors +https://wg21.link/p2876r0 + + + + +Daniel Towner, Matthias Kretz +- +d:p2876r1 +P2876R1 +22 May 2024 + +Proposal to extend std::simd with more constructors and accessors +https://wg21.link/p2876r1 + + + + +Daniel Towner, Matthias Kretz +- +d:p2877r0 +P2877R0 +13 July 2023 + +Contract Build Modes and Semantics +https://wg21.link/p2877r0 + + + + +Joshua Berne, Tom Honermann +- +d:p2878r0 +P2878R0 +11 May 2023 + +Reference checking +https://wg21.link/p2878r0 + + + + +Jarrad J. Waterloo +- +d:p2878r1 +P2878R1 +18 May 2023 + +Reference checking +https://wg21.link/p2878r1 + + + + +Jarrad J. Waterloo +- +d:p2878r2 +P2878R2 +10 June 2023 + +Reference checking +https://wg21.link/p2878r2 + + + + +Jarrad J. Waterloo +- +d:p2878r3 +P2878R3 +23 June 2023 + +Reference checking +https://wg21.link/p2878r3 + + + + +Jarrad J. Waterloo +- +d:p2878r4 +P2878R4 +8 July 2023 + +Reference checking +https://wg21.link/p2878r4 + + + + +Jarrad J. Waterloo +- +d:p2878r5 +P2878R5 +10 August 2023 + +Reference checking +https://wg21.link/p2878r5 + + + + +Jarrad J. Waterloo +- +d:p2878r6 +P2878R6 +14 November 2023 + +Reference checking +https://wg21.link/p2878r6 + + + + +Jarrad J. Waterloo +- +d:p2880r0 +P2880R0 +18 May 2023 + +Algorithm-like vs std::simd based RNG API +https://wg21.link/p2880r0 + + + + +Ilya Burylov, Pavel Dyakov, Ruslan Arutyunyan, Andrey Nikolaev, Alina Elizarova +- +d:p2881r0 +P2881R0 +18 May 2023 + +Generator-based for loop +https://wg21.link/p2881r0 + + + + +Jonathan Müller, Barry Revzin +- +d:p2882r0 +P2882R0 +11 May 2023 + +An Event Model for C++ Executors +https://wg21.link/p2882r0 + + + + +Detlef Vollmann +- +d:p2883r0 +P2883R0 +19 May 2023 + +`offsetof` Should Be A Keyword In C++26 +https://wg21.link/p2883r0 + + + + +Alisdair Meredith +- +d:p2884r0 +P2884R0 +19 May 2023 + +`assert` Should Be A Keyword In C++26 +https://wg21.link/p2884r0 + + + + +Alisdair Meredith +- +d:p2885r0 +P2885R0 +16 July 2023 + +Requirements for a Contracts syntax +https://wg21.link/p2885r0 + + + + +Timur Doumler, Joshua Berne, Gašper Ažman, Andrzej Krzemieński, Ville Voutilainen +- +d:p2885r1 +P2885R1 +15 August 2023 + +Requirements for a Contracts syntax +https://wg21.link/p2885r1 + + + + +Timur Doumler, Joshua Berne, Gašper Ažman, Andrzej Krzemieński, Ville Voutilainen, Tom Honermann +- +d:p2885r2 +P2885R2 +29 August 2023 + +Requirements for a Contracts syntax +https://wg21.link/p2885r2 + + + + +Timur Doumler, Joshua Berne, Gašper Ažman, Andrzej Krzemieński, Ville Voutilainen, Tom Honermann +- +d:p2885r3 +P2885R3 +5 October 2023 + +Requirements for a Contracts syntax +https://wg21.link/p2885r3 + + + + +Timur Doumler, Joshua Berne, Gašper Ažman, Andrzej Krzemieński, Ville Voutilainen, Tom Honermann +- +d:p2886r0 +P2886R0 +15 May 2023 + +Concurrency TS2 Editor's report +https://wg21.link/p2886r0 + + + + +Michael Wong +- +d:p2887r0 +P2887R0 +15 May 2023 + +SG14: Low Latency/Games/Embedded/Finance/Simulation virtual meeting minutes to 2023/05/11 +https://wg21.link/p2887r0 + + + + +Michael Wong +- +d:p2888r0 +P2888R0 +15 May 2023 + +SG19: Machine Learning Virtual Meeting Minutes to 2023/05/12 +https://wg21.link/p2888r0 + + + + +Michael Wong +- +d:p2889r0 +P2889R0 +15 May 2023 + +Distributed Arrays +https://wg21.link/p2889r0 + + + + +Lauri Vasama +- +d:p2890r0 +P2890R0 +17 August 2023 + +Contracts on lambdas +https://wg21.link/p2890r0 + + + + +Timur Doumler +- +d:p2890r1 +P2890R1 +7 December 2023 + +Contracts on lambdas +https://wg21.link/p2890r1 + + + + +Timur Doumler +- +d:p2890r2 +P2890R2 +13 December 2023 + +Contracts on lambdas +https://wg21.link/p2890r2 + + + + +Timur Doumler +- +d:p2891r0 +P2891R0 +16 May 2023 + +SG16: Unicode meeting summaries 2023-01-11 through 2023-05-10 +https://wg21.link/p2891r0 + + + + +Tom Honermann +- +d:p2892r0 +P2892R0 +19 May 2023 + +std::simd Types Should be Regular +https://wg21.link/p2892r0 + + + + +David Sankel, Joe Jevnik +- +d:p2893r0 +P2893R0 +19 May 2023 + +Variadic Friends +https://wg21.link/p2893r0 + + + + +Jody Hagins +- +d:p2893r1 +P2893R1 +9 October 2023 + +Variadic Friends +https://wg21.link/p2893r1 + + + + +Jody Hagins +- +d:p2893r2 +P2893R2 +12 February 2024 + +Variadic Friends +https://wg21.link/p2893r2 + + + + +Jody Hagins, Arthur O'Dwyer +- +d:p2893r3 +P2893R3 +22 March 2024 + +Variadic Friends +https://wg21.link/p2893r3 + + + + +Jody Hagins, Arthur O'Dwyer +- +d:p2894r0 +P2894R0 +22 August 2023 + +Constant evaluation of Contracts +https://wg21.link/p2894r0 + + + + +Timur Doumler +- +d:p2894r1 +P2894R1 +7 December 2023 + +Constant evaluation of Contracts +https://wg21.link/p2894r1 + + + + +Timur Doumler +- +d:p2894r2 +P2894R2 +11 January 2024 + +Constant evaluation of Contracts +https://wg21.link/p2894r2 + + + + +Timur Doumler +- +d:p2895r0 +P2895R0 +17 May 2023 + +noncopyable and nonmoveable utility classes +https://wg21.link/p2895r0 + + + + +Sebastian Theophil, Jonathan Müller +- +d:p2896r0 +P2896R0 +22 August 2023 + +Outstanding design questions for the Contracts MVP +https://wg21.link/p2896r0 + + + + +Timur Doumler +- +d:p2897r0 +P2897R0 +19 May 2023 + +aligned_accessor: An mdspan accessor expressing pointer overalignment +https://wg21.link/p2897r0 + + + + +Mark Hoemmen, Damien Lebrun-Grandie, Nicolas Manual Morales, Christian Trott +- +d:p2897r1 +P2897R1 +13 October 2023 + +aligned_accessor: An mdspan accessor expressing pointer overalignment +https://wg21.link/p2897r1 + + + + +Mark Hoemmen, Damien Lebrun-Grandie, Nicolas Manual Morales, Christian Trott +- +d:p2897r2 +P2897R2 +12 July 2024 + +aligned_accessor: An mdspan accessor expressing pointer overalignment +https://wg21.link/p2897r2 + + + + +Mark Hoemmen, Damien Lebrun-Grandie, Nicolas Manual Morales, Christian Trott +- +d:p2897r3 +P2897R3 +15 July 2024 + +aligned_accessor: An mdspan accessor expressing pointer overalignment +https://wg21.link/p2897r3 + + + + +Mark Hoemmen, Damien Lebrun-Grandie, Nicolas Manual Morales, Christian Trott +- +d:p2897r4 +P2897R4 +24 July 2024 + +aligned_accessor: An mdspan accessor expressing pointer overalignment +https://wg21.link/p2897r4 + + + + +Mark Hoemmen, Damien Lebrun-Grandie, Nicolas Manual Morales, Christian Trott +- +d:p2897r5 +P2897R5 +12 August 2024 + +aligned_accessor: An mdspan accessor expressing pointer overalignment +https://wg21.link/p2897r5 + + + + +Mark Hoemmen, Damien Lebrun-Grandie, Nicolas Manual Morales, Christian Trott +- +d:p2898r0 +P2898R0 +18 May 2023 + +Importable Headers are Not Universally Implementable +https://wg21.link/p2898r0 + + + + +Daniel Ruoso +- +d:p2898r1 +P2898R1 +12 June 2023 + +Build System Requirements for Importable Headers +https://wg21.link/p2898r1 + + + + +Daniel Ruoso +- +d:p2900r0 +P2900R0 +27 September 2023 + +Contracts for C++ +https://wg21.link/p2900r0 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r1 +P2900R1 +9 October 2023 + +Contracts for C++ +https://wg21.link/p2900r1 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r2 +P2900R2 +11 November 2023 + +Contracts for C++ +https://wg21.link/p2900r2 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r3 +P2900R3 +17 December 2023 + +Contracts for C++ +https://wg21.link/p2900r3 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r4 +P2900R4 +16 January 2024 + +Contracts for C++ +https://wg21.link/p2900r4 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r5 +P2900R5 +15 February 2024 + +Contracts for C++ +https://wg21.link/p2900r5 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r6 +P2900R6 +29 February 2024 + +Contracts for C++ +https://wg21.link/p2900r6 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r7 +P2900R7 +22 May 2024 + +Contracts for C++ +https://wg21.link/p2900r7 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2900r8 +P2900R8 +27 July 2024 + +Contracts for C++ +https://wg21.link/p2900r8 + + + + +Joshua Berne, Timur Doumler, Andrzej Krzemieński +- +d:p2901r0 +P2901R0 +19 May 2023 + +Extending linear algebra support to batched operations +https://wg21.link/p2901r0 + + + + +Mark Hoemmen, Kim Liegeois, Christian Trott +- +d:p2902r0 +P2902R0 +17 June 2023 + +constexpr 'Parallel' Algorithms +https://wg21.link/p2902r0 + + + + +Oliver Rosten +- +d:p2904r0 +P2904R0 +13 June 2023 + +Removing exception in precedence rule(s) when using member pointer syntax +https://wg21.link/p2904r0 + + + + +Annop Rana +- +d:p2905r0 +P2905R0 +15 July 2023 + +Runtime format strings +https://wg21.link/p2905r0 + + + + +Victor Zverovich +- +d:p2905r1 +P2905R1 +15 July 2023 + +Runtime format strings +https://wg21.link/p2905r1 + + + + +Victor Zverovich +- +d:p2905r2 +P2905R2 +23 July 2023 + +Runtime format strings +https://wg21.link/p2905r2 + + + + +Victor Zverovich +- +d:p2906r0 +P2906R0 +29 May 2023 + +Structured bindings for std::extents +https://wg21.link/p2906r0 + + + + +Bernhard Manfred Gruber +- +d:p2909r0 +P2909R0 +13 August 2023 + +Dude, where's my char? +https://wg21.link/p2909r0 + + + + +Victor Zverovich +- +d:p2909r1 +P2909R1 +5 September 2023 + +Fix formatting of code units as integers (Dude, where's my char?) +https://wg21.link/p2909r1 + + + + +Victor Zverovich +- +d:p2909r2 +P2909R2 +16 September 2023 + +Fix formatting of code units as integers (Dude, where's my char?) +https://wg21.link/p2909r2 + + + + +Victor Zverovich +- +d:p2909r3 +P2909R3 +7 November 2023 + +Fix formatting of code units as integers (Dude, where's my char?) +https://wg21.link/p2909r3 + + + + +Victor Zverovich +- +d:p2909r4 +P2909R4 +18 December 2023 + +Fix formatting of code units as integers (Dude, where's my char?) +https://wg21.link/p2909r4 + + + + +Victor Zverovich +- +d:p2910r0 +P2910R0 +9 June 2023 + +C++ Standard Library Ready Issues to be moved in Varna, Jun. 2023 +https://wg21.link/p2910r0 + + + + +Jonathan Wakely +- +d:p2911r0 +P2911R0 +10 July 2023 + +Python Bindings with Value-Based Reflection +https://wg21.link/p2911r0 + + + + +Adam Lach, Jagrut Dave +- +d:p2911r1 +P2911R1 +13 October 2023 + +Python Bindings with Value-Based Reflection +https://wg21.link/p2911r1 + + + + +Adam Lach, Jagrut Dave +- +d:p2912r0 +P2912R0 +5 July 2023 + +Concurrent queues and sender/receivers +https://wg21.link/p2912r0 + + + + +Gor Nishanov +- +d:p2915r0 +P2915R0 +13 June 2023 + +Proposed resolution to CWG1223 +https://wg21.link/p2915r0 + + + + +Corentin Jabot +- +d:p2917r0 +P2917R0 +14 June 2023 + +An in-line defaulted destructor should keep the copy- and move-operations +https://wg21.link/p2917r0 + + + + +Andreas Fertig +- +d:p2917r1 +P2917R1 +5 July 2023 + +An in-line defaulted destructor should keep the copy- and move-operations +https://wg21.link/p2917r1 + + + + +Andreas Fertig +- +d:p2918r0 +P2918R0 +15 July 2023 + +Runtime format strings II +https://wg21.link/p2918r0 + + + + +Victor Zverovich +- +d:p2918r1 +P2918R1 +15 July 2023 + +Runtime format strings II +https://wg21.link/p2918r1 + + + + +Victor Zverovich +- +d:p2918r2 +P2918R2 +18 December 2023 + +Runtime format strings II +https://wg21.link/p2918r2 + + + + +Victor Zverovich +- +d:p2920r0 +P2920R0 +16 June 2023 + +Library Evolution Leadership's Understanding of the Noexcept Policy History +https://wg21.link/p2920r0 + + + + +Nevin Liber, Bryce Adelstein Lelbach, Robert Leahy, Ben Craig, Fabio Fracassi, Guy Davidson +- +d:p2921r0 +P2921R0 +5 July 2023 + +Exploring std::expected based API alternatives for buffer_queue +https://wg21.link/p2921r0 + + + + +Gor Nishanov, Detlef Vollmann +- +d:p2922r0 +P2922R0 +16 June 2023 + +Core Language Working Group "ready" Issues for the June, 2023 meeting +https://wg21.link/p2922r0 + + + + +Jens Maurer +- +d:p2925r0 +P2925R0 +19 June 2023 + +inplace_vector - D0843R7 LEWG presentation +https://wg21.link/p2925r0 + + + + +David Sankel, Gonzalo Brito Gadeschi, Timur Doumler, Nevin Liber +- +d:p2926r0 +P2926R0 +19 June 2023 + +std::simd types should be regular - P2892R0 LEWG presentation +https://wg21.link/p2926r0 + + + + +David Sankel, Joe Jevnik +- +d:p2927r0 +P2927R0 +15 October 2023 + +Observing exceptions stored in exception_ptr +https://wg21.link/p2927r0 + + + + +Gor Nishanov +- +d:p2927r1 +P2927R1 +15 February 2024 + +Observing exceptions stored in exception_ptr +https://wg21.link/p2927r1 + + + + +Gor Nishanov, Arthur O'Dwyer +- +d:p2927r2 +P2927R2 +16 April 2024 + +Observing exceptions stored in exception_ptr +https://wg21.link/p2927r2 + + + + +Gor Nishanov, Arthur O'Dwyer +- +d:p2929r0 +P2929R0 +19 July 2023 + +simd_invoke +https://wg21.link/p2929r0 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2930r0 +P2930R0 +15 July 2023 + +Formatter specializations for the standard library +https://wg21.link/p2930r0 + + + + +Mark de Wever +- +d:p2931r0 +P2931R0 +28 June 2023 + +WG21 June 2023 Varna Meeting Record of Discussion +https://wg21.link/p2931r0 + + + + +Nina Ranns +- +d:p2932r0 +P2932R0 +13 September 2023 + +A Principled Approach to Open Design Questions for Contracts +https://wg21.link/p2932r0 + + + + +Joshua Berne +- +d:p2932r1 +P2932R1 +4 October 2023 + +A Principled Approach to Open Design Questions for Contracts +https://wg21.link/p2932r1 + + + + +Joshua Berne +- +d:p2932r2 +P2932R2 +14 November 2023 + +A Principled Approach to Open Design Questions for Contracts +https://wg21.link/p2932r2 + + + + +Joshua Berne +- +d:p2932r3 +P2932R3 +16 January 2024 + +A Principled Approach to Open Design Questions for Contracts +https://wg21.link/p2932r3 + + + + +Joshua Berne +- +d:p2933r0 +P2933R0 +1 August 2023 + +std::simd overloads for <bit> header +https://wg21.link/p2933r0 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2933r1 +P2933R1 +8 December 2023 + +std::simd overloads for <bit> header +https://wg21.link/p2933r1 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2935r0 +P2935R0 +15 August 2023 + +An Attribute-Like Syntax for Contracts +https://wg21.link/p2935r0 + + + + +Joshua Berne +- +d:p2935r1 +P2935R1 +15 September 2023 + +An Attribute-Like Syntax for Contracts +https://wg21.link/p2935r1 + + + + +Joshua Berne +- +d:p2935r2 +P2935R2 +15 September 2023 + +An Attribute-Like Syntax for Contracts +https://wg21.link/p2935r2 + + + + +Joshua Berne +- +d:p2935r3 +P2935R3 +5 October 2023 + +An Attribute-Like Syntax for Contracts +https://wg21.link/p2935r3 + + + + +Joshua Berne +- +d:p2935r4 +P2935R4 +5 November 2023 + +An Attribute-Like Syntax for Contracts +https://wg21.link/p2935r4 + + + + +Joshua Berne +- +d:p2937r0 +P2937R0 +2 July 2023 + +Freestanding: Remove strtok +https://wg21.link/p2937r0 + + + + +Ben Craig +- +d:p2940r0 +P2940R0 +6 July 2023 + +switch for Pattern Matching +https://wg21.link/p2940r0 + + + + +Mihail Naydenov +- +d:p2941r0 +P2941R0 +6 July 2023 + +Identifiers for Pattern Matching +https://wg21.link/p2941r0 + + + + +Mihail Naydenov +- +d:p2944r0 +P2944R0 +9 July 2023 + +Comparisons for reference_wrapper +https://wg21.link/p2944r0 + + + + +Barry Revzin +- +d:p2944r1 +P2944R1 +17 August 2023 + +Comparisons for reference_wrapper +https://wg21.link/p2944r1 + + + + +Barry Revzin +- +d:p2944r2 +P2944R2 +17 September 2023 + +Comparisons for reference_wrapper +https://wg21.link/p2944r2 + + + + +Barry Revzin +- +d:p2944r3 +P2944R3 +21 March 2024 + +Comparisons for reference_wrapper +https://wg21.link/p2944r3 + + + + +Barry Revzin +- +d:p2945r0 +P2945R0 +14 July 2023 + +Additional format specifiers for time_point +https://wg21.link/p2945r0 + + + + +Barry Revzin +- +d:p2946r0 +P2946R0 +19 July 2023 + +A flexible solution to the problems of `noexcept` +https://wg21.link/p2946r0 + + + + +Pablo Halpern +- +d:p2946r1 +P2946R1 +16 January 2024 + +A flexible solution to the problems of `noexcept` +https://wg21.link/p2946r1 + + + + +Pablo Halpern +- +d:p2947r0 +P2947R0 +20 July 2023 + +Contracts must avoid disclosing sensitive information +https://wg21.link/p2947r0 + + + + +Andrei Zissu, Ran Regev, Gal Zaban, Inbal Levi +- +d:p2949r0 +P2949R0 +14 July 2023 + +Slides for P2861R0: Narrow Contracts and `noexcept` are Inherently Incompatable +https://wg21.link/p2949r0 + + + + +John Lakos +- +d:p2950r0 +P2950R0 +11 July 2023 + +Slides for P2836R1: std::basic_const_iterator should follow its underlying type's convertibility +https://wg21.link/p2950r0 + + + + +Tomasz Kamiński +- +d:p2951r0 +P2951R0 +15 July 2023 + +Shadowing is good for safety +https://wg21.link/p2951r0 + + + + +Jarrad J. Waterloo +- +d:p2951r1 +P2951R1 +16 July 2023 + +Shadowing is good for safety +https://wg21.link/p2951r1 + + + + +Jarrad J. Waterloo +- +d:p2951r2 +P2951R2 +10 August 2023 + +Shadowing is good for safety +https://wg21.link/p2951r2 + + + + +Jarrad J. Waterloo +- +d:p2951r3 +P2951R3 +2 September 2023 + +Shadowing is good for safety +https://wg21.link/p2951r3 + + + + +Jarrad J. Waterloo +- +d:p2952r0 +P2952R0 +11 August 2023 + +auto& operator=(X&&) = default +https://wg21.link/p2952r0 + + + + +Arthur O'Dwyer, Matthew Taylor +- +d:p2952r1 +P2952R1 +9 December 2023 + +auto& operator=(X&&) = default +https://wg21.link/p2952r1 + + + + +Arthur O'Dwyer, Matthew Taylor +- +d:p2953r0 +P2953R0 +11 August 2023 + +Forbid defaulting operator=(X&&) && +https://wg21.link/p2953r0 + + + + +Arthur O'Dwyer +- +d:p2954r0 +P2954R0 +3 August 2023 + +Contracts and virtual functions for the Contracts MVP +https://wg21.link/p2954r0 + + + + +Ville Voutilainen +- +d:p2955r0 +P2955R0 +10 August 2023 + +Safer Range Access +https://wg21.link/p2955r0 + + + + +Jarrad J. Waterloo +- +d:p2955r1 +P2955R1 +2 September 2023 + +Safer Range Access +https://wg21.link/p2955r1 + + + + +Jarrad J. Waterloo +- +d:p2956r0 +P2956R0 +1 August 2023 + +Add saturating library support to std::simd +https://wg21.link/p2956r0 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2957r0 +P2957R0 +15 August 2023 + +Contracts and coroutines +https://wg21.link/p2957r0 + + + + +Andrzej Krzemieński, Iain Sandoe +- +d:p2957r1 +P2957R1 +13 January 2024 + +Contracts and coroutines +https://wg21.link/p2957r1 + + + + +Andrzej Krzemieński, Iain Sandoe +- +d:p2958r0 +P2958R0 +21 August 2023 + +typeof and typeof_unqual +https://wg21.link/p2958r0 + + + + +JeanHeyd Meneide +- +d:p2959r0 +P2959R0 +15 October 2023 + +Container Relocation +https://wg21.link/p2959r0 + + + + +Alisdair Meredith +- +d:p2960r0 +P2960R0 +17 August 2023 + +Concurrency TS Editor's report for N4956 +https://wg21.link/p2960r0 + + + + +Michael Wong +- +d:p2961r0 +P2961R0 +17 September 2023 + +A natural syntax for Contracts +https://wg21.link/p2961r0 + + + + +Jens Maurer, Timur Doumler +- +d:p2961r1 +P2961R1 +12 October 2023 + +A natural syntax for Contracts +https://wg21.link/p2961r1 + + + + +Timur Doumler, Jens Maurer +- +d:p2961r2 +P2961R2 +8 November 2023 + +A natural syntax for Contracts +https://wg21.link/p2961r2 + + + + +Timur Doumler, Jens Maurer +- +d:p2962r0 +P2962R0 +13 October 2023 + +Communicating the Baseline Compile Command for C++ Modules support +https://wg21.link/p2962r0 + + + + +Daniel Ruoso +- +d:p2963r0 +P2963R0 +15 September 2023 + +Ordering of constraints involving fold expressions +https://wg21.link/p2963r0 + + + + +Corentin Jabot +- +d:p2963r1 +P2963R1 +13 January 2024 + +Ordering of constraints involving fold expressions +https://wg21.link/p2963r1 + + + + +Corentin Jabot +- +d:p2963r2 +P2963R2 +22 May 2024 + +Ordering of constraints involving fold expressions +https://wg21.link/p2963r2 + + + + +Corentin Jabot +- +d:p2963r3 +P2963R3 +28 June 2024 + +Ordering of constraints involving fold expressions +https://wg21.link/p2963r3 + + + + +Corentin Jabot +- +d:p2964r0 +P2964R0 +9 February 2024 + +Allowing user-defined types in std::simd +https://wg21.link/p2964r0 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2964r1 +P2964R1 +22 May 2024 + +Allowing user-defined types in std::simd +https://wg21.link/p2964r1 + + + + +Daniel Towner, Ruslan Arutyunyan +- +d:p2966r0 +P2966R0 +6 September 2023 + +Making C++ Better for Game Developers — Progress Report +https://wg21.link/p2966r0 + + + + +Patrice Roy, various SG14 contibutors including Nicolas Fleury (Ubisoft), Gabriel Morin (EIDOS), Arthur O’Dwyer, Matt Bentley, Staffan Tjernstrom, Matt Bentley and others +- +d:p2966r1 +P2966R1 +13 September 2023 + +Making C++ Better for Game Developers — Progress Report +https://wg21.link/p2966r1 + + + + +Patrice Roy, various SG14 contibutors including Nicolas Fleury (Ubisoft), Gabriel Morin (EIDOS), Arthur O’Dwyer, Matt Bentley, Staffan Tjernstrom, Matt Bentley and others +- +d:p2967r0 +P2967R0 +15 October 2023 + +Relocation Is A Library Interface +https://wg21.link/p2967r0 + + + + +Alisdair Meredith +- +d:p2967r1 +P2967R1 +22 May 2024 + +Relocation Is A Library Interface +https://wg21.link/p2967r1 + + + + +Alisdair Meredith +- +d:p2968r0 +P2968R0 +7 September 2023 + +Make std::ignore a first-class object +https://wg21.link/p2968r0 + + + + +Peter Sommerlad +- +d:p2968r1 +P2968R1 +12 December 2023 + +Make std::ignore a first-class object +https://wg21.link/p2968r1 + + + + +Peter Sommerlad +- +d:p2968r2 +P2968R2 +13 December 2023 + +Make std::ignore a first-class object +https://wg21.link/p2968r2 + + + + +Peter Sommerlad +- +d:p2969r0 +P2969R0 +5 December 2023 + +Contract annotations are potentially-throwing +https://wg21.link/p2969r0 + + + + +Timur Doumler, Ville Voutilainen, Tom Honermann +- +d:p2971r0 +P2971R0 +14 September 2023 + +Implication for C++ +https://wg21.link/p2971r0 + + + + +Walter E Brown +- +d:p2971r1 +P2971R1 +14 October 2023 + +Implication for C++ +https://wg21.link/p2971r1 + + + + +Walter E Brown +- +d:p2971r2 +P2971R2 +21 May 2024 + +Implication for C++ +https://wg21.link/p2971r2 + + + + +Walter E Brown +- +d:p2972r0 +P2972R0 +18 September 2023 + +2023-09 Library Evolution Polls +https://wg21.link/p2972r0 + + + + +Inbal Levi, Ben Craig, Fabio Fracassi, Corentin Jabot, Nevin Liber, Billy Baker +- +d:p2973r0 +P2973R0 +15 September 2023 + +Erroneous behaviour for missing return from assignment +https://wg21.link/p2973r0 + + + + +Thomas Köppe, Jonathan Wakely +- +d:p2976r0 +P2976R0 +17 September 2023 + +Freestanding Library: algorithm, numeric, and random +https://wg21.link/p2976r0 + + + + +Ben Craig +- +d:p2976r1 +P2976R1 +5 May 2024 + +Freestanding Library: algorithm, numeric, and random +https://wg21.link/p2976r1 + + + + +Ben Craig +- +d:p2977r0 +P2977R0 +14 November 2023 + +Module commands database format +https://wg21.link/p2977r0 + + + + +Ben Boeckel +- +d:p2977r1 +P2977R1 +25 March 2024 + +Build database files +https://wg21.link/p2977r1 + + + + +Ben Boeckel, Daniel Ruoso +- +d:p2978r0 +P2978R0 +26 September 2023 + +A New Approach For Compiling C++ +https://wg21.link/p2978r0 + + + + +Hassan Sajjad +- +d:p2979r0 +P2979R0 +13 October 2023 + +The Need for Design Policies in WG21 +https://wg21.link/p2979r0 + + + + +Alisdair Meredith, Harold Bott, John Lakos +- +d:p2980r0 +P2980R0 +15 October 2023 + +A motivation, scope, and plan for a physical quantities and units library +https://wg21.link/p2980r0 + + + + +Mateusz Pusz, Dominik Berner, Johel Ernesto Guerrero Peña, Charles Hogg, Nicolas Holthaus, Roth Michaels, Vincent Reverdy +- +d:p2980r1 +P2980R1 +28 November 2023 + +A motivation, scope, and plan for a quantities and units library +https://wg21.link/p2980r1 + + + + +Mateusz Pusz, Dominik Berner, Johel Ernesto Guerrero Peña, Charles Hogg, Nicolas Holthaus, Roth Michaels, Vincent Reverdy +- +d:p2981r0 +P2981R0 +15 October 2023 + +Improving our safety with a physical quantities and units library +https://wg21.link/p2981r0 + + + + +Mateusz Pusz, Dominik Berner, Johel Ernesto Guerrero Peña +- +d:p2981r1 +P2981R1 +9 November 2023 + +Improving our safety with a physical quantities and units library +https://wg21.link/p2981r1 + + + + +Mateusz Pusz, Dominik Berner, Johel Ernesto Guerrero Peña +- +d:p2982r0 +P2982R0 +15 October 2023 + +`std::quantity` as a numeric type +https://wg21.link/p2982r0 + + + + +Mateusz Pusz, Chip Hogg +- +d:p2982r1 +P2982R1 +9 November 2023 + +`std::quantity` as a numeric type +https://wg21.link/p2982r1 + + + + +Mateusz Pusz, Chip Hogg +- +d:p2984r0 +P2984R0 +15 October 2023 + +Reconsider Redeclaring static constexpr Data Members +https://wg21.link/p2984r0 + + + + +Alisdair Meredith +- +d:p2984r1 +P2984R1 +12 November 2023 + +Reconsider Redeclaring static constexpr Data Members +https://wg21.link/p2984r1 + + + + +Alisdair Meredith +- +d:p2985r0 +P2985R0 +9 October 2023 + +A type trait for detecting virtual base classes +https://wg21.link/p2985r0 + + + + +Giuseppe D'Angelo +- +d:p2986r0 +P2986R0 +14 October 2023 + +Generic Function Pointer +https://wg21.link/p2986r0 + + + + +Lauri Vasama +- +d:p2988r0 +P2988R0 +15 October 2023 + +std::optional<T&> +https://wg21.link/p2988r0 + + + + +Steve Downey +- +d:p2988r1 +P2988R1 +5 January 2024 + +std::optional<T&> +https://wg21.link/p2988r1 + + + + +Steve Downey, Peter Sommerlad +- +d:p2988r2 +P2988R2 +15 February 2024 + +std::optional\ +https://wg21.link/p2988r2 + + + + +Steve Downey, Peter Sommerlad +- +d:p2988r3 +P2988R3 +15 February 2024 + +std::optional<T&> +https://wg21.link/p2988r3 + + + + +Steve Downey, Peter Sommerlad +- +d:p2988r4 +P2988R4 +16 April 2024 + +std::optional<T&> +https://wg21.link/p2988r4 + + + + +Steve Downey, Peter Sommerlad +- +d:p2988r5 +P2988R5 +22 May 2024 + +std::optional<T&> +https://wg21.link/p2988r5 + + + + +Steve Downey, Peter Sommerlad +- +d:p2988r6 +P2988R6 +15 August 2024 + +std::optional<T&> +https://wg21.link/p2988r6 + + + + +Steve Downey, Peter Sommerlad +- +d:p2989r0 +P2989R0 +14 October 2023 + +A Simple Approach to Universal Template Parameters +https://wg21.link/p2989r0 + + + + +Corentin Jabot, Gašper Ažman +- +d:p2989r1 +P2989R1 +15 February 2024 + +A Simple Approach to Universal Template Parameters +https://wg21.link/p2989r1 + + + + +Corentin Jabot, Gašper Ažman +- +d:p2989r2 +P2989R2 +16 June 2024 + +A Simple Approach to Universal Template Parameters +https://wg21.link/p2989r2 + + + + +Corentin Jabot, Gašper Ažman +- +d:p2990r0 +P2990R0 +14 October 2023 + +C++ Modules Roadmap +https://wg21.link/p2990r0 + + + + +Daniel Ruoso +- +d:p2991r0 +P2991R0 +11 October 2023 + +Stop Forcing std::move to Pessimize +https://wg21.link/p2991r0 + + + + +Brian Bi +- +d:p2992r0 +P2992R0 +10 October 2023 + +Attribute [[discard]] and attributes on expressions +https://wg21.link/p2992r0 + + + + +Giuseppe D'Angelo +- +d:p2992r1 +P2992R1 +2 February 2024 + +Attribute [[discard("reason")]] +https://wg21.link/p2992r1 + + + + +Giuseppe D'Angelo +- +d:p2993r0 +P2993R0 +21 March 2024 + +Constrained Numbers +https://wg21.link/p2993r0 + + + + +Luke Valenty +- +d:p2994r0 +P2994R0 +14 October 2023 + +On the Naming of Packs +https://wg21.link/p2994r0 + + + + +Barry Revzin +- +d:p2994r1 +P2994R1 +14 February 2024 + +On the Naming of Packs +https://wg21.link/p2994r1 + + + + +Barry Revzin +- +d:p2995r0 +P2995R0 +8 October 2023 + +SG16: Unicode meeting summaries 2023-05-24 through 2023-09-27 +https://wg21.link/p2995r0 + + + + +Tom Honermann +- +d:p2996r0 +P2996R0 +15 October 2023 + +Reflection for C++26 +https://wg21.link/p2996r0 + + + + +Barry Revzin, Wyatt Childers, Peter Dimov, Andrew Sutton, Faisal Vali, Daveed Vandevoorde +- +d:p2996r1 +P2996R1 +18 December 2023 + +Reflection for C++26 +https://wg21.link/p2996r1 + + + + +Barry Revzin, Wyatt Childers, Peter Dimov, Andrew Sutton, Faisal Vali, Daveed Vandevoorde +- +d:p2996r2 +P2996R2 +15 February 2024 + +Reflection for C++26 +https://wg21.link/p2996r2 + + + + +Barry Revzin, Wyatt Childers, Peter Dimov, Andrew Sutton, Faisal Vali, Daveed Vandevoorde, Dan Katz +- +d:p2996r3 +P2996R3 +22 May 2024 + +Reflection for C++26 +https://wg21.link/p2996r3 + + + + +Barry Revzin, Wyatt Childers, Peter Dimov, Andrew Sutton, Faisal Vali, Daveed Vandevoorde, Dan Katz +- +d:p2996r4 +P2996R4 +26 June 2024 + +Reflection for C++26 +https://wg21.link/p2996r4 + + + + +Barry Revzin, Wyatt Childers, Peter Dimov, Andrew Sutton, Faisal Vali, Daveed Vandevoorde, Dan Katz +- +d:p2996r5 +P2996R5 +14 August 2024 + +Reflection for C++26 +https://wg21.link/p2996r5 + + + + +Barry Revzin, Wyatt Childers, Peter Dimov, Andrew Sutton, Faisal Vali, Daveed Vandevoorde, Dan Katz +- +d:p2997r0 +P2997R0 +14 October 2023 + +Removing the common reference requirement from the indirectly invocable concepts +https://wg21.link/p2997r0 + + + + +Barry Revzin, Tim Song +- +d:p2997r1 +P2997R1 +22 March 2024 + +Removing the common reference requirement from the indirectly invocable concepts +https://wg21.link/p2997r1 + + + + +Barry Revzin, Tim Song +- +d:p2999r0 +P2999R0 +14 October 2023 + +Sender Algorithm Customization +https://wg21.link/p2999r0 + + + + +Eric Niebler +- +d:p2999r1 +P2999R1 +9 November 2023 + +Sender Algorithm Customization +https://wg21.link/p2999r1 + + + + +Eric Niebler +- +d:p2999r2 +P2999R2 +13 December 2023 + +Sender Algorithm Customization +https://wg21.link/p2999r2 + + + + +Eric Niebler +- +d:p2999r3 +P2999R3 +13 December 2023 + +Sender Algorithm Customization +https://wg21.link/p2999r3 + + + + +Eric Niebler - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-p3.data b/bikeshed/spec-data/readonly/biblio/biblio-p3.data index ad1b0b5b9a..1910754db1 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-p3.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-p3.data @@ -1,14 +1,5413 @@ +d:p3001r0 +P3001R0 +15 October 2023 + +std::hive and containers like it are not a good fit for the standard library +https://wg21.link/p3001r0 + + + + +Jonathan Müller, Zach Laine, Bryce Adelstein Lelbach, David Sankel +- +d:p3002r0 +P3002R0 +15 October 2023 + +Guidelines for allocators in new library classes +https://wg21.link/p3002r0 + + + + +Pablo Halpern +- +d:p3002r1 +P3002R1 +15 February 2024 + +Policies for Using Allocators in New Library Classes +https://wg21.link/p3002r1 + + + + +Pablo Halpern +- +d:p3003r0 +P3003R0 +14 October 2023 + +The design of a library of number concepts +https://wg21.link/p3003r0 + + + + +Johel Ernesto Guerrero Peña +- +d:p3004r0 +P3004R0 +15 February 2024 + +Principled Design for WG21 +https://wg21.link/p3004r0 + + + + +John Lakos, Harold Bott, Mungo Gill, Lori Hughes, Alisdair Meredith, Bill Chapman, Mike Giroux, Oleg Subbotin +- +d:p3005r0 +P3005R0 +14 February 2024 + +Memorializing Principled-Design Policies for WG21 +https://wg21.link/p3005r0 + + + + +John Lakos, Harold Bott, Bill Chapman, Mungo Gill, Mike Giroux, Alisdair Meredith, Oleg Subbotin +- +d:p3006r0 +P3006R0 +19 October 2023 + +Launder less +https://wg21.link/p3006r0 + + + + +Antony Polukhin +- +d:p3006r1 +P3006R1 +11 July 2024 + +Launder less +https://wg21.link/p3006r1 + + + + +Antony Polukhin +- +d:p3007r0 +P3007R0 +11 December 2023 + +Return object semantics in postconditions +https://wg21.link/p3007r0 + + + + +Timur Doumler, Andrzej Krzemieński, Joshua Berne +- +d:p3008r0 +P3008R0 +15 October 2023 + +Atomic floating-point min/max +https://wg21.link/p3008r0 + + + + +Gonzalo Brito Gadeschi, David Sankel +- +d:p3008r1 +P3008R1 +20240131 + +Atomic floating-point min/max +https://wg21.link/p3008r1 + + + + +Gonzalo Brito Gadeschi, David Sankel +- +d:p3008r2 +P3008R2 +19 March 2024 + +Atomic floating-point min/max +https://wg21.link/p3008r2 + + + + +Gonzalo Brito Gadeschi, David Sankel +- +d:p3009r0 +P3009R0 +12 October 2023 + +Injected class name in the base specifier list +https://wg21.link/p3009r0 + + + + +Joe Jevnik +- +d:p3010r0 +P3010R0 +13 October 2023 + +Using Reflection to Replace a Metalanguage for Generating JS Bindings +https://wg21.link/p3010r0 + + + + +Dan Katz +- +d:p3011r0 +P3011R0 +15 October 2023 + +Supporting document for Hive proposal #1: outreach for evidence of container-style use in industry +https://wg21.link/p3011r0 + + + + +Matt Bentley +- +d:p3012r0 +P3012R0 +14 October 2023 + +Supporting document for Hive proposal #2: use of std::list in open source codebases +https://wg21.link/p3012r0 + + + + +Matt Bentley +- +d:p3014r0 +P3014R0 +14 October 2023 + +Customizing std::expected's exception +https://wg21.link/p3014r0 + + + + +Jonathan Müller +- +d:p3015r0 +P3015R0 +13 October 2023 + +Rebuttal to Additional format specifiers for time_point +https://wg21.link/p3015r0 + + + + +Howard Hinnant +- +d:p3016r0 +P3016R0 +15 October 2023 + +Resolve inconsistencies in begin/end for valarray and braced initializer lists +https://wg21.link/p3016r0 + + + + +Arthur O'Dwyer +- +d:p3016r1 +P3016R1 +9 December 2023 + +Resolve inconsistencies in begin/end for valarray and braced initializer lists +https://wg21.link/p3016r1 + + + + +Arthur O'Dwyer +- +d:p3016r2 +P3016R2 +12 February 2024 + +Resolve inconsistencies in begin/end for valarray and braced initializer lists +https://wg21.link/p3016r2 + + + + +Arthur O'Dwyer +- +d:p3016r3 +P3016R3 +22 March 2024 + +Resolve inconsistencies in begin/end for valarray and braced initializer lists +https://wg21.link/p3016r3 + + + + +Arthur O'Dwyer +- +d:p3018r0 +P3018R0 +15 October 2023 + +Low-Level Integer Arithmetic +https://wg21.link/p3018r0 + + + + +Andreas Weis +- +d:p3019r0 +P3019R0 +14 October 2023 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r0 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r1 +P3019R1 +9 November 2023 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r1 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r2 +P3019R2 +10 November 2023 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r2 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r3 +P3019R3 +20 November 2023 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r3 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r4 +P3019R4 +5 February 2024 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r4 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r5 +P3019R5 +7 February 2024 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r5 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r6 +P3019R6 +11 February 2024 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r6 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r7 +P3019R7 +19 March 2024 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r7 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3019r8 +P3019R8 +22 March 2024 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3019r8 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3020r0 +P3020R0 +15 October 2023 + +2023-09 Library Evolution Poll Outcomes +https://wg21.link/p3020r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Billy Baker, Nevin Liber, Corentin Jabot +- +d:p3021r0 +P3021R0 +14 October 2023 + +Unified function call syntax (UFCS) +https://wg21.link/p3021r0 + + + + +Herb Sutter +- +d:p3022r0 +P3022R0 +14 October 2023 + +A Boring Thread Attributes Interface +https://wg21.link/p3022r0 + + + + +David Sankel, Darius Neațu +- +d:p3022r1 +P3022R1 +28 November 2023 + +A Boring Thread Attributes Interface +https://wg21.link/p3022r1 + + + + +David Sankel, Darius Neațu +- +d:p3023r0 +P3023R0 +15 October 2023 + +C++ Should Be C++ +https://wg21.link/p3023r0 + + + + +David Sankel +- +d:p3023r1 +P3023R1 +27 November 2023 + +C++ Should Be C++ +https://wg21.link/p3023r1 + + + + +David Sankel +- +d:p3024r0 +P3024R0 +20231130 + +Interface Directions for std::simd +https://wg21.link/p3024r0 + + + + +David Sankel, Jeff Garland, Matthias Kretz, Ruslan Arutyunyan +- +d:p3025r0 +P3025R0 +15 October 2023 + +SG14: Low Latency/Games/Embedded/Financial trading/Simulation virtual Minutes to 2023/09/12 +https://wg21.link/p3025r0 + + + + +Michael Wong +- +d:p3026r0 +P3026R0 +15 October 2023 + +SG19: Machine Learning virtual Meeting Minutes to 2023/07/13 +https://wg21.link/p3026r0 + + + + +Michael Wong +- +d:p3027r0 +P3027R0 +26 October 2023 + +UFCS is a breaking change, of the absolutely worst kind +https://wg21.link/p3027r0 + + + + +Ville Voutilainen +- +d:p3028r0 +P3028R0 +5 November 2023 + +An Overview of Syntax Choices for Contracts +https://wg21.link/p3028r0 + + + + +Joshua Berne, Gašper Ažman, Rostislav Khlebnikov, Timur Doumler +- +d:p3029r0 +P3029R0 +24 October 2023 + +Better mdspan's CTAD +https://wg21.link/p3029r0 + + + + +Hewill Kang +- +d:p3029r1 +P3029R1 +21 March 2024 + +Better mdspan's CTAD +https://wg21.link/p3029r1 + + + + +Hewill Kang +- +d:p3031r0 +P3031R0 +13 November 2023 + +Resolve CWG2561: conversion function for lambda with explicit object parameter +https://wg21.link/p3031r0 + + + + +Arthur O'Dwyer +- +d:p3032r0 +P3032R0 +13 February 2024 + +Less transient constexpr allocation +https://wg21.link/p3032r0 + + + + +Barry Revzin +- +d:p3032r1 +P3032R1 +22 March 2024 + +Less transient constexpr allocation +https://wg21.link/p3032r1 + + + + +Barry Revzin +- +d:p3032r2 +P3032R2 +16 April 2024 + +Less transient constexpr allocation +https://wg21.link/p3032r2 + + + + +Barry Revzin +- +d:p3033r0 +P3033R0 +1 November 2023 + +Should we import function bodies to get the better optimizations? +https://wg21.link/p3033r0 + + + + +Chuanqi Xu +- +d:p3034r0 +P3034R0 +10 November 2023 + +Module Declarations Shouldn't be Macros +https://wg21.link/p3034r0 + + + + +Michael Spencer +- +d:p3034r1 +P3034R1 +21 March 2024 + +Module Declarations Shouldn't be Macros +https://wg21.link/p3034r1 + + + + +Michael Spencer +- +d:p3037r0 +P3037R0 +6 November 2023 + +constexpr std::shared_ptr +https://wg21.link/p3037r0 + + + + +Paul Keir +- +d:p3037r1 +P3037R1 +5 March 2024 + +constexpr std::shared_ptr +https://wg21.link/p3037r1 + + + + +Paul Keir +- +d:p3037r2 +P3037R2 +24 May 2024 + +constexpr std::shared_ptr +https://wg21.link/p3037r2 + + + + +Paul Keir +- +d:p3038r0 +P3038R0 +16 December 2023 + +Concrete suggestions for initial Profiles +https://wg21.link/p3038r0 + + + + +Bjarne Stroustrup +- +d:p3039r0 +P3039R0 +7 November 2023 + +Automatically Generate `operator->` +https://wg21.link/p3039r0 + + + + +David Stone +- +d:p3040r0 +P3040R0 +18 December 2023 + +C++ Standard Library Ready Issues to be moved in Kona, Nov. 2023 +https://wg21.link/p3040r0 + + + + +Jonathan Wakely +- +d:p3041r0 +P3041R0 +16 November 2023 + +Transitioning from "#include" World to Modules +https://wg21.link/p3041r0 + + + + +Gabriel Dos Reis +- +d:p3042r0 +P3042R0 +9 November 2023 + +Vocabulary Types for Composite Class Design +https://wg21.link/p3042r0 + + + + +Jonathan Coe, Antony Peacock, Sean Parent +- +d:p3043r0 +P3043R0 +11 December 2023 + +Slides: Using variable template template without meta programming +https://wg21.link/p3043r0 + + + + +Zhihao Yuan +- +d:p3044r0 +P3044R0 +16 January 2024 + +sub-string_view from string +https://wg21.link/p3044r0 + + + + +Michael Florian Hava +- +d:p3044r1 +P3044R1 +15 July 2024 + +sub-string_view from string +https://wg21.link/p3044r1 + + + + +Michael Florian Hava +- +d:p3045r0 +P3045R0 +15 February 2024 + +Quantities and units library +https://wg21.link/p3045r0 + + + + +Mateusz Pusz, Dominik Berner, Johel Ernesto Guerrero Peña, Charles Hogg, Nicolas Holthaus, Roth Michaels, Vincent Reverdy +- +d:p3045r1 +P3045R1 +22 May 2024 + +Quantities and units library +https://wg21.link/p3045r1 + + + + +Mateusz Pusz, Dominik Berner, Johel Ernesto Guerrero Peña, Charles Hogg, Nicolas Holthaus, Roth Michaels, Vincent Reverdy +- +d:p3046r0 +P3046R0 +18 December 2023 + +Core Language Working Group "ready" Issues for the November, 2023 meeting +https://wg21.link/p3046r0 + + + + +Jens Maurer +- +d:p3047r0 +P3047R0 +15 February 2024 + +Remove deprecated namespace `relops` from C++26 +https://wg21.link/p3047r0 + + + + +Alisdair Meredith +- +d:p3049r0 +P3049R0 +3 April 2024 + +node-handles for lists +https://wg21.link/p3049r0 + + + + +Michael Florian Hava +- +d:p3050r0 +P3050R0 +15 November 2023 + +Optimize linalg::conjugated for noncomplex value types +https://wg21.link/p3050r0 + + + + +Mark Hoemmen +- +d:p3050r1 +P3050R1 +8 April 2024 + +Fix C++26 by optimizing linalg::conjugated for noncomplex value types +https://wg21.link/p3050r1 + + + + +Mark Hoemmen +- +d:p3050r2 +P3050R2 +13 August 2024 + +Fix C++26 by optimizing linalg::conjugated for noncomplex value types +https://wg21.link/p3050r2 + + + + +Mark Hoemmen +- +d:p3051r0 +P3051R0 +12 December 2023 + +Structured Response Files +https://wg21.link/p3051r0 + + + + +René Ferdinand Rivera Morell +- +d:p3051r1 +P3051R1 +20 May 2024 + +Structured Response Files +https://wg21.link/p3051r1 + + + + +René Ferdinand Rivera Morell +- +d:p3051r2 +P3051R2 +11 July 2024 + +Structured Response Files +https://wg21.link/p3051r2 + + + + +René Ferdinand Rivera Morell +- +d:p3052r0 +P3052R0 +16 November 2023 + +view_interface::at() +https://wg21.link/p3052r0 + + + + +Hewill Kang +- +d:p3052r1 +P3052R1 +20240130 + +view_interface::at() +https://wg21.link/p3052r1 + + + + +Hewill Kang +- +d:p3053r0 +P3053R0 +15 December 2023 + +2023-12 Library Evolution Polls +https://wg21.link/p3053r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Nevin Liber, Billy Baker, Corentin Jabot +- +d:p3054r0 +P3054R0 +13 January 2024 + +2023-12 Library Evolution Poll Outcomes +https://wg21.link/p3054r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Billy Baker, Nevin Liber, Corentin Jabot +- +d:p3055r0 +P3055R0 +17 December 2023 + +Relax wording to permit relocation optimizations in the STL +https://wg21.link/p3055r0 + + + + +Arthur O'Dwyer +- +d:p3055r1 +P3055R1 +12 February 2024 + +Relax wording to permit relocation optimizations in the STL +https://wg21.link/p3055r1 + + + + +Arthur O'Dwyer +- +d:p3056r0 +P3056R0 +21 November 2023 + +what ostream exception +https://wg21.link/p3056r0 + + + + +Jarrad J. Waterloo +- +d:p3057r0 +P3057R0 +21 November 2023 + +Two finer-grained compilation model for named modules +https://wg21.link/p3057r0 + + + + +Chuanqi Xu +- +d:p3059r0 +P3059R0 +20231130 + +Making user-defined constructors of view iterators/sentinels private +https://wg21.link/p3059r0 + + + + +Hewill Kang +- +d:p3059r1 +P3059R1 +17 May 2024 + +Making user-defined constructors of view iterators/sentinels private +https://wg21.link/p3059r1 + + + + +Hewill Kang +- +d:p3060r0 +P3060R0 +22 November 2023 + +Add std::ranges::upto(n) +https://wg21.link/p3060r0 + + + + +Weile Wei +- +d:p3060r1 +P3060R1 +15 February 2024 + +Add std::views::upto(n) +https://wg21.link/p3060r1 + + + + +Weile Wei, Zhihao Yuan +- +d:p3061r0 +P3061R0 +29 November 2023 + +WG21 2023-11 Kona Record of Discussion +https://wg21.link/p3061r0 + + + + +Nina Ranns +- +d:p3062r0 +P3062R0 +27 November 2023 + +C++ Should Be C++ - Presentation +https://wg21.link/p3062r0 + + + + +David Sankel +- +d:p3064r0 +P3064R0 +5 April 2024 + +How to Avoid OOTA Without Really Trying +https://wg21.link/p3064r0 + + + + +Paul E. McKenney, Alan Stern, Michael Wong, and Maged Michael +- +d:p3064r1 +P3064R1 +14 May 2024 + +How to Avoid OOTA Without Really Trying +https://wg21.link/p3064r1 + + + + +Paul E. McKenney, Alan Stern, Michael Wong, and Maged Michael +- +d:p3064r2 +P3064R2 +12 July 2024 + +How to Avoid OOTA Without Really Trying +https://wg21.link/p3064r2 + + + + +Paul E. McKenney, Alan Stern, Michael Wong, and Maged Michael +- +d:p3066r0 +P3066R0 +4 December 2023 + +Allow repeating contract annotations on non-first declarations +https://wg21.link/p3066r0 + + + + +Timur Doumler +- +d:p3067r0 +P3067R0 +22 May 2024 + +Provide predefined simd permute generator functions for common operations +https://wg21.link/p3067r0 + + + + +Daniel Towner +- +d:p3068r0 +P3068R0 +11 February 2024 + +Allowing exception throwing in constant-evaluation. +https://wg21.link/p3068r0 + + + + +Hana Dusíková +- +d:p3068r1 +P3068R1 +20240330 + +Allowing exception throwing in constant-evaluation. +https://wg21.link/p3068r1 + + + + +Hana Dusíková +- +d:p3068r2 +P3068R2 +22 May 2024 + +Allowing exception throwing in constant-evaluation +https://wg21.link/p3068r2 + + + + +Hana Dusíková +- +d:p3068r3 +P3068R3 +27 June 2024 + +Allowing exception throwing in constant-evaluation +https://wg21.link/p3068r3 + + + + +Hana Dusíková +- +d:p3068r4 +P3068R4 +15 August 2024 + +Allowing exception throwing in constant-evaluation +https://wg21.link/p3068r4 + + + + +Hana Dusíková +- +d:p3070r0 +P3070R0 +14 December 2023 + +Formatting enums +https://wg21.link/p3070r0 + + + + +Victor Zverovich +- +d:p3071r0 +P3071R0 +10 December 2023 + +Protection against modifications in contracts +https://wg21.link/p3071r0 + + + + +Jens Maurer +- +d:p3071r1 +P3071R1 +17 December 2023 + +Protection against modifications in contracts +https://wg21.link/p3071r1 + + + + +Jens Maurer +- +d:p3072r0 +P3072R0 +17 December 2023 + +Hassle-free thread attributes +https://wg21.link/p3072r0 + + + + +Zhihao Yuan +- +d:p3072r1 +P3072R1 +15 February 2024 + +Hassle-free thread attributes +https://wg21.link/p3072r1 + + + + +Zhihao Yuan +- +d:p3072r2 +P3072R2 +18 March 2024 + +Hassle-free thread attributes +https://wg21.link/p3072r2 + + + + +Zhihao Yuan +- +d:p3073r0 +P3073R0 +27 January 2024 + +Remove evaluation_undefined_behavior and will_continue from the Contracts MVP +https://wg21.link/p3073r0 + + + + +Timur Doumler, Ville Voutilainen +- +d:p3074r0 +P3074R0 +15 December 2023 + +constexpr union lifetime +https://wg21.link/p3074r0 + + + + +Barry Revzin +- +d:p3074r1 +P3074R1 +20240130 + +std::uninitialized<T> +https://wg21.link/p3074r1 + + + + +Barry Revzin +- +d:p3074r2 +P3074R2 +13 February 2024 + +std::uninitialized<T> +https://wg21.link/p3074r2 + + + + +Barry Revzin +- +d:p3074r3 +P3074R3 +14 April 2024 + +trivial union (was std::uninitialized<T>) +https://wg21.link/p3074r3 + + + + +Barry Revzin +- +d:p3075r0 +P3075R0 +16 December 2023 + +Adding an Undefined Behavior and IFNDR Annex +https://wg21.link/p3075r0 + + + + +Shafik Yaghmour +- +d:p3079r0 +P3079R0 +11 January 2024 + +Should ignore and observe exist for constant evaluation of contracts? +https://wg21.link/p3079r0 + + + + +Oliver Rosten +- +d:p3084r0 +P3084R0 +12 January 2024 + +Slides for LEWG views::maybe 20240109 +https://wg21.link/p3084r0 + + + + +Steve Downey +- +d:p3085r0 +P3085R0 +10 February 2024 + +`noexcept` policy for SD-9 (throws nothing) +https://wg21.link/p3085r0 + + + + +Ben Craig +- +d:p3085r1 +P3085R1 +17 March 2024 + +`noexcept` policy for SD-9 (throws nothing) +https://wg21.link/p3085r1 + + + + +Ben Craig +- +d:p3085r2 +P3085R2 +19 May 2024 + +`noexcept` policy for SD-9 (throws nothing) +https://wg21.link/p3085r2 + + + + +Ben Craig +- +d:p3085r3 +P3085R3 +4 July 2024 + +`noexcept` policy for SD-9 (throws nothing) +https://wg21.link/p3085r3 + + + + +Ben Craig +- +d:p3086r0 +P3086R0 +16 January 2024 + +Proxy: A Pointer-Semantics-Based Polymorphism Library +https://wg21.link/p3086r0 + + + + +Mingxin Wang +- +d:p3086r1 +P3086R1 +18 March 2024 + +Proxy: A Pointer-Semantics-Based Polymorphism Library +https://wg21.link/p3086r1 + + + + +Mingxin Wang +- +d:p3086r2 +P3086R2 +16 April 2024 + +Proxy: A Pointer-Semantics-Based Polymorphism Library +https://wg21.link/p3086r2 + + + + +Mingxin Wang +- +d:p3087r0 +P3087R0 +16 January 2024 + +Make direct-initialization for enumeration types at least as permissive as direct-list-initialization +https://wg21.link/p3087r0 + + + + +Jan Schultke +- +d:p3087r1 +P3087R1 +29 May 2024 + +Make direct-initialization for enumeration types at least as permissive as direct-list-initializatio +https://wg21.link/p3087r1 + + + + +Jan Schultke +- +d:p3088r0 +P3088R0 +12 February 2024 + +Attributes for contract assertions +https://wg21.link/p3088r0 + + + + +Timur Doumler, Joshua Berne +- +d:p3088r1 +P3088R1 +13 February 2024 + +Attributes for contract assertions +https://wg21.link/p3088r1 + + + + +Timur Doumler, Joshua Berne +- +d:p3090r0 +P3090R0 +14 February 2024 + +std::execution Introduction +https://wg21.link/p3090r0 + + + + +Inbal Levi, Eric Niebler +- +d:p3091r0 +P3091R0 +6 February 2024 + +Better lookups for `map` and `unordered_map` +https://wg21.link/p3091r0 + + + + +Pablo Halpern +- +d:p3091r1 +P3091R1 +22 March 2024 + +Better lookups for `map` and `unordered_map` +https://wg21.link/p3091r1 + + + + +Pablo Halpern +- +d:p3091r2 +P3091R2 +22 May 2024 + +Better lookups for `map` and `unordered_map` +https://wg21.link/p3091r2 + + + + +Pablo Halpern +- +d:p3092r0 +P3092R0 +29 January 2024 + +Modules ABI requirement +https://wg21.link/p3092r0 + + + + +Chuanqi Xu +- +d:p3093r0 +P3093R0 +2 February 2024 + +Attributes on expressions +https://wg21.link/p3093r0 + + + + +Giuseppe D'Angelo +- +d:p3094r0 +P3094R0 +5 February 2024 + +std::basic_fixed_string +https://wg21.link/p3094r0 + + + + +Mateusz Pusz +- +d:p3094r1 +P3094R1 +20 March 2024 + +std::basic_fixed_string +https://wg21.link/p3094r1 + + + + +Mateusz Pusz +- +d:p3094r2 +P3094R2 +22 May 2024 + +std::basic_fixed_string +https://wg21.link/p3094r2 + + + + +Mateusz Pusz +- +d:p3094r3 +P3094R3 +20240630 + +std::basic_fixed_string +https://wg21.link/p3094r3 + + + + +Mateusz Pusz +- +d:p3095r0 +P3095R0 +15 February 2024 + +ABI comparison with reflection +https://wg21.link/p3095r0 + + + + +Saksham Sharma +- +d:p3096r0 +P3096R0 +14 February 2024 + +Function Parameter Reflection in Reflection for C++26 +https://wg21.link/p3096r0 + + + + +Adam Lach, Walter Genovese +- +d:p3096r1 +P3096R1 +15 May 2024 + +Function Parameter Reflection in Reflection for C++26 +https://wg21.link/p3096r1 + + + + +Adam Lach, Walter Genovese +- +d:p3096r2 +P3096R2 +16 July 2024 + +Function Parameter Reflection in Reflection for C++26 +https://wg21.link/p3096r2 + + + + +Adam Lach, Walter Genovese +- +d:p3097r0 +P3097R0 +15 April 2024 + +Contracts for C++: Support for virtual functions +https://wg21.link/p3097r0 + + + + +Timur Doumler, Joshua Berne, Gašper Ažman +- +d:p3100r0 +P3100R0 +21 May 2024 + +Undefined and erroneous behaviour are contract violations +https://wg21.link/p3100r0 + + + + +Timur Doumler, Gašper Ažman, Joshua Berne +- +d:p3101r0 +P3101R0 +22 January 2024 + +Differentiating potentially throwing and nonthrowing violation handlers +https://wg21.link/p3101r0 + + + + +Ran Regev, Gašper Ažman +- +d:p3102r0 +P3102R0 +6 February 2024 + +Refining Contract Violation Detection Modes +https://wg21.link/p3102r0 + + + + +Joshua Berne +- +d:p3103r0 +P3103R0 +25 January 2024 + +More bitset operations +https://wg21.link/p3103r0 + + + + +Jan Schultke +- +d:p3103r1 +P3103R1 +7 March 2024 + +More bitset operations +https://wg21.link/p3103r1 + + + + +Jan Schultke +- +d:p3103r2 +P3103R2 +22 May 2024 + +More bitset operations +https://wg21.link/p3103r2 + + + + +Jan Schultke +- +d:p3104r0 +P3104R0 +26 January 2024 + +Bit permutations +https://wg21.link/p3104r0 + + + + +Jan Schultke +- +d:p3104r1 +P3104R1 +7 March 2024 + +Bit permutations +https://wg21.link/p3104r1 + + + + +Jan Schultke +- +d:p3104r2 +P3104R2 +5 April 2024 + +Bit permutations +https://wg21.link/p3104r2 + + + + +Jan Schultke +- +d:p3105r0 +P3105R0 +26 January 2024 + +constexpr std::uncaught_exceptions() +https://wg21.link/p3105r0 + + + + +Jan Schultke +- +d:p3105r1 +P3105R1 +7 March 2024 + +constexpr std::uncaught_exceptions() +https://wg21.link/p3105r1 + + + + +Jan Schultke +- +d:p3105r2 +P3105R2 +5 April 2024 + +constexpr std::uncaught_exceptions() +https://wg21.link/p3105r2 + + + + +Jan Schultke +- +d:p3106r0 +P3106R0 +3 February 2024 + +Clarifying rules for brace elision in aggregate initialization +https://wg21.link/p3106r0 + + + + +James Touton +- +d:p3106r1 +P3106R1 +21 March 2024 + +Clarifying rules for brace elision in aggregate initialization +https://wg21.link/p3106r1 + + + + +James Touton +- +d:p3107r0 +P3107R0 +3 February 2024 + +Permit an efficient implementation of std::print +https://wg21.link/p3107r0 + + + + +Victor Zverovich +- +d:p3107r1 +P3107R1 +25 February 2024 + +Permit an efficient implementation of std::print +https://wg21.link/p3107r1 + + + + +Victor Zverovich +- +d:p3107r2 +P3107R2 +17 March 2024 + +Permit an efficient implementation of std::print +https://wg21.link/p3107r2 + + + + +Victor Zverovich +- +d:p3107r3 +P3107R3 +18 March 2024 + +Permit an efficient implementation of std::print +https://wg21.link/p3107r3 + + + + +Victor Zverovich +- +d:p3107r4 +P3107R4 +20 March 2024 + +Permit an efficient implementation of std::print +https://wg21.link/p3107r4 + + + + +Victor Zverovich +- +d:p3107r5 +P3107R5 +21 March 2024 + +Permit an efficient implementation of std::print +https://wg21.link/p3107r5 + + + + +Victor Zverovich +- +d:p3109r0 +P3109R0 +12 February 2024 + +A plan for std::execution for C++26 +https://wg21.link/p3109r0 + + + + +Lewis Baker, Eric Niebler, Kirk Shoop, Lucian Radu +- +d:p3110r0 +P3110R0 +5 February 2024 + +Array element initialization via pattern expansion +https://wg21.link/p3110r0 + + + + +James Touton +- +d:p3111r0 +P3111R0 +22 May 2024 + +Atomic Reduction Operations +https://wg21.link/p3111r0 + + + + +Gonzalo Brito Gadeschi, Simon Cooksey, Daniel Lustig +- +d:p3112r0 +P3112R0 +14 February 2024 + +Specify Constructor of std::nullopt_t +https://wg21.link/p3112r0 + + + + +Brian Bi +- +d:p3113r0 +P3113R0 +2 February 2024 + +Slides: Contract assertions, the noexcept operator, and deduced exception specifications +https://wg21.link/p3113r0 + + + + +Timur Doumler +- +d:p3114r0 +P3114R0 +2 February 2024 + +noexcept(contract_assert(_)) — slides +https://wg21.link/p3114r0 + + + + +Andrzej Krzemieński +- +d:p3115r0 +P3115R0 +15 February 2024 + +Data Member, Variable and Alias Declarations Can Introduce A Pack +https://wg21.link/p3115r0 + + + + +Corentin Jabot +- +d:p3116r0 +P3116R0 +8 February 2024 + +Policy for explicit +https://wg21.link/p3116r0 + + + + +Zach Laine +- +d:p3117r0 +P3117R0 +15 February 2024 + +Extending Conditionally Borrowed +https://wg21.link/p3117r0 + + + + +Zach Laine, Barry Revzin +- +d:p3119r0 +P3119R0 +4 April 2024 + +Tokyo Technical Fixes to Contracts +https://wg21.link/p3119r0 + + + + +Joshua Berne +- +d:p3119r1 +P3119R1 +9 May 2024 + +Tokyo Technical Fixes to Contracts +https://wg21.link/p3119r1 + + + + +Joshua Berne +- +d:p3122r0 +P3122R0 +15 February 2024 + +[[nodiscard]] should be Recommended Practice +https://wg21.link/p3122r0 + + + + +Jonathan Wakely +- +d:p3122r1 +P3122R1 +12 March 2024 + +[[nodiscard]] should be Recommended Practice +https://wg21.link/p3122r1 + + + + +Jonathan Wakely +- +d:p3123r0 +P3123R0 +15 February 2024 + +2024-02 Library Evolution Polls +https://wg21.link/p3123r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Nevin Liber, Billy Baker, Corentin Jabot +- +d:p3124r0 +P3124R0 +14 June 2024 + +2024-02 Library Evolution Poll Outcomes +https://wg21.link/p3124r0 + + + + +- +d:p3125r0 +P3125R0 +22 May 2024 + +Pointer tagging +https://wg21.link/p3125r0 + + + + +Hana Dusíková +- +d:p3126r0 +P3126R0 +12 February 2024 + +Graph Library: Overview +https://wg21.link/p3126r0 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3126r1 +P3126R1 +20 May 2024 + +Graph Library: Overview +https://wg21.link/p3126r1 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3126r2 +P3126R2 +5 August 2024 + +Graph Library: Overview +https://wg21.link/p3126r2 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3127r0 +P3127R0 +12 February 2024 + +Graph Library: Background and Terminology +https://wg21.link/p3127r0 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3128r0 +P3128R0 +12 February 2024 + +Graph Library: Algorithms +https://wg21.link/p3128r0 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3129r0 +P3129R0 +12 February 2024 + +Graph Library: Views +https://wg21.link/p3129r0 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3130r0 +P3130R0 +12 February 2024 + +Graph Library: Graph Container Interface +https://wg21.link/p3130r0 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3130r1 +P3130R1 +20 May 2024 + +Graph Library: Graph Container Interface +https://wg21.link/p3130r1 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3130r2 +P3130R2 +5 August 2024 + +Graph Library: Graph Container Interface +https://wg21.link/p3130r2 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3131r0 +P3131R0 +12 February 2024 + +Graph Library: Graph Containers +https://wg21.link/p3131r0 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3131r1 +P3131R1 +20 May 2024 + +Graph Library: Containers +https://wg21.link/p3131r1 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3131r2 +P3131R2 +5 August 2024 + +Graph Library: Graph Containers +https://wg21.link/p3131r2 + + + + +Phil Ratzloff, Andrew Lumsdaine +- +d:p3133r0 +P3133R0 +14 February 2024 + +Fast first-factor finding function +https://wg21.link/p3133r0 + + + + +Chip Hogg +- +d:p3135r0 +P3135R0 +11 February 2024 + +Hazard Pointer Extensions +https://wg21.link/p3135r0 + + + + +Maged Michael, Michael Wong, Paul McKenney +- +d:p3135r1 +P3135R1 +12 April 2024 + +Hazard Pointer Extensions +https://wg21.link/p3135r1 + + + + +Maged Michael, Michael Wong, Paul McKenney +- +d:p3136r0 +P3136R0 +15 February 2024 + +Retiring niebloids +https://wg21.link/p3136r0 + + + + +Tim Song +- +d:p3137r0 +P3137R0 +15 February 2024 + +views::to_input +https://wg21.link/p3137r0 + + + + +Tim Song +- +d:p3137r1 +P3137R1 +21 May 2024 + +views::to_input +https://wg21.link/p3137r1 + + + + +Tim Song +- +d:p3137r2 +P3137R2 +16 July 2024 + +views::to_input +https://wg21.link/p3137r2 + + + + +Tim Song +- +d:p3138r0 +P3138R0 +15 February 2024 + +views::cache_last +https://wg21.link/p3138r0 + + + + +Tim Song +- +d:p3138r1 +P3138R1 +21 May 2024 + +views::cache_last +https://wg21.link/p3138r1 + + + + +Tim Song +- +d:p3138r2 +P3138R2 +16 July 2024 + +views::cache_last +https://wg21.link/p3138r2 + + + + +Tim Song +- +d:p3139r0 +P3139R0 +20 May 2024 + +Pointer cast for unique_ptr +https://wg21.link/p3139r0 + + + + +Zhihao Yuan, Jordan Saxonberg +- +d:p3140r0 +P3140R0 +14 February 2024 + +std::int_least128_t +https://wg21.link/p3140r0 + + + + +Jan Schultke +- d:p3141 P3141 -std::terminates() -https://wg21.link/p3141 +std::terminates() +https://wg21.link/p3141 + + + + +Hal T. Ng, Professor, C.S., LLVM.edu +- +d:p3142r0 +P3142R0 +12 February 2024 + +Printing Blank Lines with println +https://wg21.link/p3142r0 + + + + +Alan Talbot +- +d:p3143r0 +P3143R0 +13 February 2024 + +An in-depth walk through of the example in P3090R0 +https://wg21.link/p3143r0 + + + + +Lewis Baker +- +d:p3144r0 +P3144R0 +15 February 2024 + +Deprecate Delete of Incomplete Class Type +https://wg21.link/p3144r0 + + + + +Alisdair Meredith, Mingo Gill, John Lakos +- +d:p3144r1 +P3144R1 +24 May 2024 + +Deprecate Delete of Incomplete Class Type +https://wg21.link/p3144r1 + + + + +Alisdair Meredith, Mingo Gill, John Lakos +- +d:p3144r2 +P3144R2 +25 June 2024 + +Deleting a Pointer to an Incomplete Type Should be Ill-formed +https://wg21.link/p3144r2 + + + + +Alisdair Meredith, Mingo Gill, John Lakos +- +d:p3146r0 +P3146R0 +13 February 2024 + +Clarifying std::variant converting construction +https://wg21.link/p3146r0 + + + + +Giuseppe D'Angelo +- +d:p3146r1 +P3146R1 +20 February 2024 + +Clarifying std::variant converting construction +https://wg21.link/p3146r1 + + + + +Giuseppe D'Angelo +- +d:p3147r0 +P3147R0 +14 February 2024 + +A Direction for Vector +https://wg21.link/p3147r0 + + + + +Alan Talbot +- +d:p3147r1 +P3147R1 +18 March 2024 + +A Direction for Vector +https://wg21.link/p3147r1 + + + + +Alan Talbot +- +d:p3148r0 +P3148R0 +14 February 2024 + +Formatting of chrono Time Values +https://wg21.link/p3148r0 + + + + +Alan Talbot +- +d:p3149r0 +P3149R0 +15 February 2024 + +async_scope — Creating scopes for non-sequential concurrency +https://wg21.link/p3149r0 + + + + +Ian Petersen, Ján Ondrušek; Jessica Wong; Kirk Shoop; Lee Howes; Lucian Radu Teodorescu; +- +d:p3149r1 +P3149R1 +13 March 2024 + +async_scope — Creating scopes for non-sequential concurrency +https://wg21.link/p3149r1 + + + + +Ian Petersen, Ján Ondrušek; Jessica Wong; Kirk Shoop; Lee Howes; Lucian Radu Teodorescu; +- +d:p3149r2 +P3149R2 +20 March 2024 + +async_scope — Creating scopes for non-sequential concurrency +https://wg21.link/p3149r2 + + + + +Ian Petersen, Ján Ondrušek; Jessica Wong; Kirk Shoop; Lee Howes; Lucian Radu Teodorescu; +- +d:p3149r3 +P3149R3 +22 May 2024 + +async_scope — Creating scopes for non-sequential concurrency +https://wg21.link/p3149r3 + + + + +Ian Petersen, Ján Ondrušek; Jessica Wong; Kirk Shoop; Lee Howes; Lucian Radu Teodorescu; +- +d:p3149r4 +P3149R4 +24 June 2024 + +async_scope — Creating scopes for non-sequential concurrency +https://wg21.link/p3149r4 + + + + +Ian Petersen, Ján Ondrušek; Jessica Wong; Kirk Shoop; Lee Howes; Lucian Radu Teodorescu; +- +d:p3149r5 +P3149R5 +26 June 2024 + +async_scope — Creating scopes for non-sequential concurrency +https://wg21.link/p3149r5 + + + + +Ian Petersen, Ján Ondrušek; Jessica Wong; Kirk Shoop; Lee Howes; Lucian Radu Teodorescu; +- +d:p3150r0 +P3150R0 +15 February 2024 + +SG14: Low Latency/Games/Embedded/Financial Trading virtual Meeting Minutes 2023/12/13-2024/2/14 +https://wg21.link/p3150r0 + + + + +Michael Wong +- +d:p3151r0 +P3151R0 +15 February 2024 + +SG19: Machine Learning virtual Meeting Minutes to 2023/12/14-2024/02/8 +https://wg21.link/p3151r0 + + + + +Michael Wong +- +d:p3153r0 +P3153R0 +15 February 2024 + +An allocator-aware variant type +https://wg21.link/p3153r0 + + + + +Nina Ranns, Pablo Halpern, Ville Voutilainen +- +d:p3154r0 +P3154R0 +15 February 2024 + +Deprecating signed character types in iostreams +https://wg21.link/p3154r0 + + + + +Elias Kosunen +- +d:p3154r1 +P3154R1 +20 May 2024 + +Deprecating signed character types in iostreams +https://wg21.link/p3154r1 + + + + +Elias Kosunen +- +d:p3155r0 +P3155R0 +15 February 2024 + +noexcept policy for SD-9 (The Lakos Rule) +https://wg21.link/p3155r0 + + + + +Timur Doumler, John Lakos +- +d:p3156r0 +P3156R0 +15 February 2024 + +empty_checkable_range +https://wg21.link/p3156r0 + + + + +Hewill Kang +- +d:p3157r0 +P3157R0 +15 February 2024 + +Generative Extensions for Reflection +https://wg21.link/p3157r0 + + + + +Andrei Alexandrescu, Bryce Lelbach, Michael Garland +- +d:p3157r1 +P3157R1 +22 May 2024 + +Generative Extensions for Reflection +https://wg21.link/p3157r1 + + + + +Andrei Alexandrescu, Barry Revzin, Bryce Lelbach, Michael Garland +- +d:p3158r0 +P3158R0 +15 February 2024 + +Headless Template Template Parameters +https://wg21.link/p3158r0 + + + + +James Touton +- +d:p3159r0 +P3159R0 +18 March 2024 + +C++ Range Adaptors and Parallel Algorithms +https://wg21.link/p3159r0 + + + + +Bryce Adelstein Lelbach +- +d:p3160r0 +P3160R0 +15 February 2024 + +An allocator-aware `inplace_vector` +https://wg21.link/p3160r0 + + + + +Pablo Halpern +- +d:p3160r1 +P3160R1 +9 March 2024 + +An allocator-aware `inplace_vector` +https://wg21.link/p3160r1 + + + + +Pablo Halpern +- +d:p3161r0 +P3161R0 +17 February 2024 + +Unified integer overflow arithmetic +https://wg21.link/p3161r0 + + + + +Tiago Freire +- +d:p3161r1 +P3161R1 +13 March 2024 + +Unified integer overflow arithmetic +https://wg21.link/p3161r1 + + + + +Tiago Freire +- +d:p3161r2 +P3161R2 +15 July 2024 + +Unified integer overflow arithmetic +https://wg21.link/p3161r2 + + + + +Tiago Freire +- +d:p3162r0 +P3162R0 +22 February 2024 + +LEWG [[nodiscard]] policy +https://wg21.link/p3162r0 + + + + +Darius Neațu, David Sankel +- +d:p3164r0 +P3164R0 +1 March 2024 + +Improving diagnostics for sender expressions +https://wg21.link/p3164r0 + + + + +Eric Niebler +- +d:p3164r1 +P3164R1 +16 June 2024 + +Improving diagnostics for sender expressions +https://wg21.link/p3164r1 + + + + +Eric Niebler +- +d:p3164r2 +P3164R2 +25 June 2024 + +Improving diagnostics for sender expressions +https://wg21.link/p3164r2 + + + + +Eric Niebler +- +d:p3165r0 +P3165R0 +27 February 2024 + +Contracts on virtual functions for the Contracts MVP +https://wg21.link/p3165r0 + + + + +Ville Voutilainen +- +d:p3166r0 +P3166R0 +16 March 2024 + +Static Exception Specifications +https://wg21.link/p3166r0 + + + + +Lewis Baker +- +d:p3167r0 +P3167R0 +28 February 2024 + +Attributes for the result name in a postcondition assertion +https://wg21.link/p3167r0 + + + + +Tom Honermann +- +d:p3168r0 +P3168R0 +28 February 2024 + +Give std::optional Range Support +https://wg21.link/p3168r0 + + + + +David Sankel, Marco Foco, Darius Neațu, Barry Revzin +- +d:p3168r1 +P3168R1 +11 April 2024 + +Give std::optional Range Support +https://wg21.link/p3168r1 + + + + +David Sankel, Marco Foco, Darius Neațu, Barry Revzin +- +d:p3168r2 +P3168R2 +25 June 2024 + +Give std::optional Range Support +https://wg21.link/p3168r2 + + + + +David Sankel, Marco Foco, Darius Neațu, Barry Revzin +- +d:p3169r0 +P3169R0 +14 April 2024 + +Inherited contracts +https://wg21.link/p3169r0 + + + + +Jonas Persson +- +d:p3170r0 +P3170R0 +29 February 2024 + +sinkable exception error message +https://wg21.link/p3170r0 + + + + +Jarrad J Waterloo +- +d:p3171r0 +P3171R0 +4 March 2024 + +Adding functionality to placeholder types +https://wg21.link/p3171r0 + + + + +Barry Revzin, Peter Dimov +- +d:p3172r0 +P3172R0 +8 March 2024 + +Using `this` in constructor preconditions +https://wg21.link/p3172r0 + + + + +Andrzej Krzemieński +- +d:p3173r0 +P3173R0 +15 March 2024 + +P2900R6 may be minimimal, but it is not viable +https://wg21.link/p3173r0 + + + + +Gabriel Dos Reis +- +d:p3174r0 +P3174R0 +9 March 2024 + +SG16: Unicode meeting summaries 2023-10-11 through 2024-02-21 +https://wg21.link/p3174r0 + + + + +Tom Honermann +- +d:p3175r0 +P3175R0 +14 March 2024 + +Reconsidering the `std::execution::on` algorithm +https://wg21.link/p3175r0 + + + + +Eric Niebler +- +d:p3175r1 +P3175R1 +15 May 2024 + +Reconsidering the `std::execution::on` algorithm +https://wg21.link/p3175r1 + + + + +Eric Niebler +- +d:p3175r2 +P3175R2 +22 May 2024 + +Reconsidering the `std::execution::on` algorithm +https://wg21.link/p3175r2 + + + + +Eric Niebler +- +d:p3175r3 +P3175R3 +25 June 2024 + +Reconsidering the `std::execution::on` algorithm +https://wg21.link/p3175r3 + + + + +Eric Niebler +- +d:p3176r0 +P3176R0 +7 March 2024 + +The Oxford variadic comma +https://wg21.link/p3176r0 + + + + +Jan Schultke +- +d:p3177r0 +P3177R0 +18 March 2024 + +const prvalues in the conditional operator +https://wg21.link/p3177r0 + + + + +Barry Revzin +- +d:p3178r0 +P3178R0 +23 May 2024 + +Retrieval of Exception Information +https://wg21.link/p3178r0 + + + + +TPK Healy +- +d:p3178r1 +P3178R1 +20240531 + +Retrieval of Exception Information +https://wg21.link/p3178r1 + + + + +TPK Healy +- +d:p3179r0 +P3179R0 +15 March 2024 + +C++ parallel range algorithms +https://wg21.link/p3179r0 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- +d:p3179r1 +P3179R1 +22 May 2024 + +C++ parallel range algorithms +https://wg21.link/p3179r1 + + + + +Ruslan Arutyunyan, Alexey Kukanov +- +d:p3179r2 +P3179R2 +25 June 2024 + +C++ parallel range algorithms +https://wg21.link/p3179r2 + + + + +Ruslan Arutyunyan, Alexey Kukanov, Bryce Adelstein Lelbach +- +d:p3180r0 +P3180R0 +15 March 2024 + +C++ Standard Library Ready Issues to be moved in Tokyo, Mar. 2024 +https://wg21.link/p3180r0 + + + + +Jonathan Wakely +- +d:p3181r0 +P3181R0 +16 April 2024 + +Atomic stores and object lifetimes +https://wg21.link/p3181r0 + + + + +Hans Boehm, Dave Claussen, David Goldblatt +- +d:p3182r0 +P3182R0 +16 April 2024 + +Add pop_value methods to container adaptors +https://wg21.link/p3182r0 + + + + +Brian Bi +- +d:p3182r1 +P3182R1 +16 July 2024 + +Add container pop methods that return the popped value +https://wg21.link/p3182r1 + + + + +Brian Bi, Add container pop methods that return the popped value +- +d:p3183r0 +P3183R0 +15 April 2024 + +Contract testing support +https://wg21.link/p3183r0 + + + + +Bengt Gustafsson +- +d:p3183r1 +P3183R1 +22 May 2024 + +Contract testing support +https://wg21.link/p3183r1 + + + + +Bengt Gustafsson +- +d:p3187r1 +P3187R1 +21 March 2024 + +remove ensure_started and start_detached from P2300 +https://wg21.link/p3187r1 + + + + +Kirk Shoop, Lewis Baker +- +d:p3188r0 +P3188R0 +16 April 2024 + +Proxy: A Pointer-Semantics-Based Polymorphism Library - Presentation slides for P3086R1 +https://wg21.link/p3188r0 + + + + +Mingxin Wang +- +d:p3189r0 +P3189R0 +19 March 2024 + +Slides for LEWG presentation of P2900R6: Contracts for C++ +https://wg21.link/p3189r0 + + + + +Timur Doumler, Joshua Berne, Andrzej Krzemieński +- +d:p3190r0 +P3190R0 +20 March 2024 + +Slides for EWG presentation of D2900R7: Contracts for C++ +https://wg21.link/p3190r0 + + + + +Timur Doumler, Joshua Berne, Andrzej Krzemieński +- +d:p3191r0 +P3191R0 +21 March 2024 + +Feedback on the scalability of contract violation handlers in P2900 +https://wg21.link/p3191r0 + + + + +Louis Dionne, Yeoul Na, Konstantin Varlamov +- +d:p3192r0 +P3192R0 +19 March 2024 + +LEWGI/SG18 Presentation of P3104R1 Bit Permutations +https://wg21.link/p3192r0 + + + + +Jan Schultke +- +d:p3194r0 +P3194R0 +19 March 2024 + +LEWGI/SG18 Presentation of P3105R1 constexpr std::uncaught_exceptions() +https://wg21.link/p3194r0 + + + + +Jan Schultke +- +d:p3196r0 +P3196R0 +23 March 2024 + +Core Language Working Group "ready" Issues for the March, 2024 meeting +https://wg21.link/p3196r0 + + + + +Jens Maurer +- +d:p3197r0 +P3197R0 +12 April 2024 + +A response to the Tokyo EWG polls on the Contracts MVP (P2900R6) +https://wg21.link/p3197r0 + + + + +Timur Doumler, John Spicer +- +d:p3198r0 +P3198R0 +29 March 2024 + +A takeaway from the Tokyo LEWG meeting on Contracts MVP +https://wg21.link/p3198r0 + + + + +Andrzej Krzemieński +- +d:p3199r0 +P3199R0 +22 March 2024 + +Choices for make_optional and value() +https://wg21.link/p3199r0 + + + + +Steve Downey +- +d:p3201r0 +P3201R0 +22 March 2024 + +LEWG [[nodiscard]] policy +https://wg21.link/p3201r0 + + + + +Jonathan Wakely, David Sankel, Darius Neațu +- +d:p3201r1 +P3201R1 +22 March 2024 + +LEWG [[nodiscard]] policy +https://wg21.link/p3201r1 + + + + +Jonathan Wakely, David Sankel, Darius Neațu +- +d:p3203r0 +P3203R0 +22 March 2024 + +Implementation defined coroutine extensions +https://wg21.link/p3203r0 + + + + +Klemens Morgenstern +- +d:p3205r0 +P3205R0 +15 April 2024 + +Throwing from a `noexcept` function should be a contract violation. +https://wg21.link/p3205r0 + + + + +Gašper Ažman, Jeff Snyder, Andrei Zissu, Ben Craig +- +d:p3207r0 +P3207R0 +24 March 2024 + +More & like +https://wg21.link/p3207r0 + + + + +Jarrad J Waterloo +- +d:p3208r0 +P3208R0 +16 April 2024 + +import std; and stream macros +https://wg21.link/p3208r0 + + + + +Sunghyun Min +- +d:p3210r0 +P3210R0 +28 March 2024 + +A Postcondition *is* a Pattern Match +https://wg21.link/p3210r0 + + + + +Andrew Tomazos +- +d:p3210r1 +P3210R1 +20 April 2024 + +A Postcondition *is* a Pattern Match +https://wg21.link/p3210r1 + + + + +Andrew Tomazos +- +d:p3211r0 +P3211R0 +7 April 2024 + +views::transform_join +https://wg21.link/p3211r0 + + + + +Hewill Kang +- +d:p3212r0 +P3212R0 +3 July 2024 + +The contract of sort() +https://wg21.link/p3212r0 + + + + +Andrzej Krzemieński +- +d:p3213r0 +P3213R0 +16 April 2024 + +2024-04 Library Evolution Polls +https://wg21.link/p3213r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Nevin Liber, Billy Baker, Corentin Jabot +- +d:p3214r0 +P3214R0 +22 May 2024 + +2024-04 Library Evolution Poll Outcomes +https://wg21.link/p3214r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Nevin Liber, Billy Baker, Corentin Jabot +- +d:p3215r0 +P3215R0 +29 March 2024 + +Slides: Thread Attributes as Designators (P3072R2 presentation) +https://wg21.link/p3215r0 + + + + +Zhihao Yuan +- +d:p3216r0 +P3216R0 +7 April 2024 + +views::slice +https://wg21.link/p3216r0 + + + + +Hewill Kang +- +d:p3217r0 +P3217R0 +20240331 + +Adjoints to "Enabling list-initialization for algorithms": find_last +https://wg21.link/p3217r0 + + + + +Giuseppe D'Angelo +- +d:p3218r0 +P3218R0 +9 April 2024 + +const references to constexpr variables +https://wg21.link/p3218r0 + + + + +Jarrad J Waterloo +- +d:p3220r0 +P3220R0 +16 April 2024 + +views::delimit +https://wg21.link/p3220r0 + + + + +Hewill Kang +- +d:p3221r0 +P3221R0 +15 April 2024 + +Disable pointers to contracted functions +https://wg21.link/p3221r0 + + + + +Jonas Persson +- +d:p3222r0 +P3222R0 +8 April 2024 + +Fix C++26 by adding transposed special cases for P2642 layouts +https://wg21.link/p3222r0 + + + + +Mark Hoemmen +- +d:p3223r0 +P3223R0 +12 April 2024 + +Making std::basic_istream::ignore less surprising +https://wg21.link/p3223r0 + + + + +Jonathan Wakely +- +d:p3223r1 +P3223R1 +3 July 2024 + +Making std::istream::ignore less surprising +https://wg21.link/p3223r1 + + + + +Jonathan Wakely +- +d:p3224r0 +P3224R0 +5 April 2024 + +Slides for P3087 - Make direct-initialization for enumeration types at least as permissive as direct +https://wg21.link/p3224r0 + + + + +Jan Schultke +- +d:p3225r0 +P3225R0 +5 April 2024 + +Slides for P3140 std::int_least128_t +https://wg21.link/p3225r0 + + + + +Jan Schultke +- +d:p3226r0 +P3226R0 +12 April 2024 + +Contracts for C++: Naming the "Louis semantic" +https://wg21.link/p3226r0 + + + + +Timur Doumler +- +d:p3228r0 +P3228R0 +16 April 2024 + +Contracts for C++: Revisiting contract check elision and duplication +https://wg21.link/p3228r0 + + + + +Timur Doumler +- +d:p3228r1 +P3228R1 +21 May 2024 + +Contracts for C++: Revisiting contract check elision and duplication +https://wg21.link/p3228r1 + + + + +Timur Doumler +- +d:p3230r0 +P3230R0 +8 April 2024 + +views::(take|drop)_exactly +https://wg21.link/p3230r0 + + + + +Hewill Kang +- +d:p3232r0 +P3232R0 +16 April 2024 + +User-defined erroneous behaviour +https://wg21.link/p3232r0 + + + + +Thomas Köppe +- +d:p3233r0 +P3233R0 +16 April 2024 + +Issues with P2786 (Trivial Relocatability For C++26) +https://wg21.link/p3233r0 + + + + +Giuseppe D'Angelo +- +d:p3234r0 +P3234R0 +16 April 2024 + +Utility to check if a pointer is in a given range +https://wg21.link/p3234r0 + + + + +Glen Joseph Fernandes +- +d:p3234r1 +P3234R1 +29 April 2024 + +Utility to check if a pointer is in a given range +https://wg21.link/p3234r1 + + + + +Glen Joseph Fernandes +- +d:p3235r0 +P3235R0 +11 May 2024 + +std::print more types faster with less memory +https://wg21.link/p3235r0 + + + + +Victor Zverovich +- +d:p3235r1 +P3235R1 +15 June 2024 + +std::print more types faster with less memory +https://wg21.link/p3235r1 + + + + +Victor Zverovich +- +d:p3235r2 +P3235R2 +26 June 2024 + +std::print more types faster with less memory +https://wg21.link/p3235r2 + + + + +Victor Zverovich +- +d:p3235r3 +P3235R3 +26 June 2024 + +std::print more types faster with less memory +https://wg21.link/p3235r3 + + + + +Victor Zverovich +- +d:p3236r0 +P3236R0 +14 April 2024 + +Please reject P2786 and adopt P1144 +https://wg21.link/p3236r0 + + + + +Alan de Freitas, Daniel Liam Anderson, Giuseppe D'Angelo, Hans Goudey, Hartmut Kaiser, Isidoros Tsaousis, Jacques Lucke, Krystian Stasiowski, Shreyas Atre, Stéphane Janel, Thiago Maciera +- +d:p3236r1 +P3236R1 +21 May 2024 + +Please reject P2786 and adopt P1144 +https://wg21.link/p3236r1 + + + + +Alan de Freitas, Daniel Liam Anderson, Giuseppe D'Angelo, Hans Goudey, Jacques Lucke, Krystian Stasiowski, Stéphane Janel, Thiago Maciera +- +d:p3237r0 +P3237R0 +15 April 2024 + +Matrix Representation of Contract Semantics +https://wg21.link/p3237r0 + + + + +Andrei Zissu +- +d:p3238r0 +P3238R0 +6 May 2024 + +An alternate proposal for naming contract semantics +https://wg21.link/p3238r0 + + + + +Ville Voutilainen +- +d:p3239r0 +P3239R0 +22 May 2024 + +A Relocating Swap +https://wg21.link/p3239r0 + + + + +Alisdair Meredith +- +d:p3240r0 +P3240R0 +16 April 2024 + +Slides for EWGI presentation on allocators, Tokyo 2024 +https://wg21.link/p3240r0 + + + + +Alisdair Meredith +- +d:p3241r0 +P3241R0 +16 April 2024 + +Slides for LEWG presentation on trivial relocation, April 2024 +https://wg21.link/p3241r0 + + + + +Alisdair Meredith +- +d:p3242r0 +P3242R0 +16 April 2024 + +Copy and fill for mdspan +https://wg21.link/p3242r0 + + + + +Nicolas Morales, Christian Trott, Mark Hoemmen, Damien Lebrun-Grandie +- +d:p3243r0 +P3243R0 +15 April 2024 + +Give std::optional Range Support - Presentation, Tokyo 2024 +https://wg21.link/p3243r0 + + + + +David Sankel, Marco Foco, Darius Neațu, Barry Revzin +- +d:p3244r0 +P3244R0 +15 April 2024 + +[[nodiscard]] Policy - Presentation, Tokyo 2024 +https://wg21.link/p3244r0 + + + + +David Sankel, Darius Neațu +- +d:p3245r0 +P3245R0 +16 April 2024 + +Allow `[[nodiscard]]` in type alias declarations +https://wg21.link/p3245r0 + + + + +Xavier Bonaventura +- +d:p3245r1 +P3245R1 +15 July 2024 + +Allow `[[nodiscard]]` in type alias declarations +https://wg21.link/p3245r1 + + + + +Xavier Bonaventura +- +d:p3247r0 +P3247R0 +16 April 2024 + +Deprecate the notion of trivial types +https://wg21.link/p3247r0 + + + + +Jens Maurer +- +d:p3247r1 +P3247R1 +19 May 2024 + +Deprecate the notion of trivial types +https://wg21.link/p3247r1 + + + + +Jens Maurer +- +d:p3248r0 +P3248R0 +20 May 2024 + +Require [u]intptr_t +https://wg21.link/p3248r0 + + + + +Gonzalo Brito Gadeschi +- +d:p3248r1 +P3248R1 +16 June 2024 + +Require [u]intptr_t +https://wg21.link/p3248r1 + + + + +Gonzalo Brito Gadeschi +- +d:p3249r0 +P3249R0 +22 April 2024 + +A unified syntax for Pattern Matching and Contracts when introducing a new name +https://wg21.link/p3249r0 + + + + +Ran Regev +- +d:p3250r0 +P3250R0 +7 May 2024 + +C++ contracts with regards to function pointers +https://wg21.link/p3250r0 + + + + +Peter Bindels +- +d:p3251r0 +P3251R0 +7 May 2024 + +C++ contracts and coroutines +https://wg21.link/p3251r0 + + + + +Peter Bindels +- +d:p3253r0 +P3253R0 +22 May 2024 + +Distinguishing between member and free coroutines +https://wg21.link/p3253r0 + + + + +Brian Bi +- +d:p3254r0 +P3254R0 +22 May 2024 + +Reserve identifiers preceded by @ for non-ignorable annotation tokens +https://wg21.link/p3254r0 + + + + +Brian Bi +- +d:p3255r0 +P3255R0 +22 May 2024 + +Expose whether atomic notifying operations are lock-free +https://wg21.link/p3255r0 + + + + +Brian Bi +- +d:p3255r1 +P3255R1 +16 July 2024 + +Expose whether atomic notifying operations are lock-free +https://wg21.link/p3255r1 + + + + +Brian Bi +- +d:p3257r0 +P3257R0 +26 April 2024 + +Make the predicate of contract_assert more regular +https://wg21.link/p3257r0 + + + + +Jens Maurer +- +d:p3258r0 +P3258R0 +22 May 2024 + +Formatting charN_t +https://wg21.link/p3258r0 + + + + +Corentin Jabot +- +d:p3259r0 +P3259R0 +9 May 2024 + +const by default +https://wg21.link/p3259r0 + + + + +Jarrad J Waterloo +- +d:p3263r0 +P3263R0 +3 May 2024 + +Encoded annotated char +https://wg21.link/p3263r0 + + + + +Tiago Freire +- +d:p3264r0 +P3264R0 +17 May 2024 + +Double-evaluation of preconditions +https://wg21.link/p3264r0 + + + + +Ville Voutilainen +- +d:p3264r1 +P3264R1 +17 May 2024 + +Double-evaluation of preconditions +https://wg21.link/p3264r1 + + + + +Ville Voutilainen +- +d:p3265r0 +P3265R0 +7 May 2024 + +Ship Contracts in a TS +https://wg21.link/p3265r0 + + + + +Ville Voutilainen +- +d:p3265r1 +P3265R1 +22 May 2024 + +Ship Contracts in a TS +https://wg21.link/p3265r1 + + + + +Ville Voutilainen +- +d:p3265r2 +P3265R2 +27 May 2024 + +Ship Contracts in a TS +https://wg21.link/p3265r2 + + + + +Ville Voutilainen +- +d:p3265r3 +P3265R3 +28 May 2024 + +Ship Contracts in a TS +https://wg21.link/p3265r3 + + + + +Ville Voutilainen +- +d:p3266r0 +P3266R0 +5 May 2024 + +non referenceable types +https://wg21.link/p3266r0 + + + + +Jarrad J Waterloo +- +d:p3267r0 +P3267R0 +16 May 2024 + +C++ contracts implementation strategies +https://wg21.link/p3267r0 + + + + +Peter Bindels +- +d:p3267r1 +P3267R1 +22 May 2024 + +Approaches to C++ Contracts +https://wg21.link/p3267r1 + + + + +Peter Bindels, Tom Honermann +- +d:p3268r0 +P3268R0 +7 May 2024 + +C++ Contracts Constification Challenges Concerning Current Code +https://wg21.link/p3268r0 + + + + +Peter Bindels +- +d:p3269r0 +P3269R0 +21 May 2024 + +Do Not Ship Contracts as a TS +https://wg21.link/p3269r0 + + + + +Timur Doumler, John Spicer +- +d:p3270r0 +P3270R0 +22 May 2024 + +Repetition, Elision, and Constification w.r.t. contract_assert +https://wg21.link/p3270r0 + + + + +John Lakos, Joshua Berne +- +d:p3271r0 +P3271R0 +20 May 2024 + +Function Usage Types (Contracts for Function Pointers) +https://wg21.link/p3271r0 + + + + +Lisa Lippincott +- +d:p3273r0 +P3273R0 +22 May 2024 + +Introspection of Closure Types +https://wg21.link/p3273r0 + + + + +Andrei Alexandrescu, Daveed Vandevoorde, David Olsen, Michael Garland +- +d:p3274r0 +P3274R0 +10 May 2024 + +A framework for Profiles development +https://wg21.link/p3274r0 + + + + +Bjarne Stroustrup +- +d:p3275r0 +P3275R0 +22 May 2024 + +Replace simd operator[] with getter and setter functions - or not +https://wg21.link/p3275r0 + + + + +Matthias Kretz +- +d:p3276r0 +P3276R0 +18 May 2024 + +P2900 Is Superior to a Contracts TS +https://wg21.link/p3276r0 + + + + +Joshua Berne, Steve Downey, Jake Fevold, Mungo Gill, Rostislav Khlebnikov, John Lakos, and Alisdair Meredith +- +d:p3278r0 +P3278R0 +22 May 2024 + +Analysis of interaction between relocation, assignment, and swap +https://wg21.link/p3278r0 + + + + +Nina Ranns +- +d:p3279r0 +P3279R0 +15 May 2024 + +CWG2463: What 'trivially fooable' should mean +https://wg21.link/p3279r0 + + + + +Arthur O'Dwyer +- +d:p3281r0 +P3281R0 +15 May 2024 + +Contact checks should be regular C++ +https://wg21.link/p3281r0 + + + + +John Spicer +- +d:p3282r0 +P3282R0 +19 May 2024 + +Static Storage for C++ Concurrent bounded_queue +https://wg21.link/p3282r0 + + + + +Detlef Vollmann +- +d:p3283r0 +P3283R0 +16 May 2024 + +Adding .first() and .last() to strings +https://wg21.link/p3283r0 + + + + +Rhidian De Wit +- +d:p3284r0 +P3284R0 +16 May 2024 + +`finally`, `write_env`, and `unstoppable` Sender Adaptors +https://wg21.link/p3284r0 + + + + +Eric Niebler +- +d:p3284r1 +P3284R1 +16 July 2024 + +`finally`, `write_env`, and `unstoppable` Sender Adaptors +https://wg21.link/p3284r1 + + + + +Eric Niebler +- +d:p3285r0 +P3285R0 +15 May 2024 + +Contracts: Protecting The Protector +https://wg21.link/p3285r0 + + + + +Gabriel Dos Reis +- +d:p3286r0 +P3286R0 +22 May 2024 + +Module Metadata Format for Distribution with Pre-Built Libraries +https://wg21.link/p3286r0 + + + + +Daniel Ruoso +- +d:p3287r0 +P3287R0 +22 May 2024 + +Exploration of namespaces for std::simd +https://wg21.link/p3287r0 + + + + +Matthias Kretz +- +d:p3288r0 +P3288R0 +22 May 2024 + +std::elide +https://wg21.link/p3288r0 + + + + +Thomas P. K. Healy +- +d:p3288r1 +P3288R1 +28 May 2024 + +std::elide +https://wg21.link/p3288r1 + + + + +Thomas P. K. Healy +- +d:p3288r2 +P3288R2 +29 May 2024 + +std::elide +https://wg21.link/p3288r2 + + + + +Thomas P. K. Healy +- +d:p3288r3 +P3288R3 +27 June 2024 + +std::elide +https://wg21.link/p3288r3 + + + + +Thomas P. K. Healy +- +d:p3289r0 +P3289R0 +21 May 2024 + +Consteval blocks +https://wg21.link/p3289r0 + + + + +Daveed Vandevoorde, Wyatt Childers, Barry Revzin +- +d:p3290r0 +P3290R0 +22 May 2024 + +Integrating Existing Assertions With Contracts +https://wg21.link/p3290r0 + + + + +Joshua Berne, Timur Doumler, John Lakos +- +d:p3290r1 +P3290R1 +12 July 2024 + +Integrating Existing Assertions With Contracts +https://wg21.link/p3290r1 + + + + +Joshua Berne, Timur Doumler, John Lakos +- +d:p3292r0 +P3292R0 +18 May 2024 + +Provenance and Concurrency +https://wg21.link/p3292r0 + + + + +David Goldblatt +- +d:p3293r0 +P3293R0 +20 May 2024 + +Splicing a base class subobject +https://wg21.link/p3293r0 + + + + +Barry Revzin, Peter Dimov, Dan Katz, Daveed Vandevoorde +- +d:p3294r0 +P3294R0 +22 May 2024 + +Code Injection with Token Sequences +https://wg21.link/p3294r0 + + + + +Barry Revzin, Andrei Alexandrescu, Daveed Vandevoorde +- +d:p3294r1 +P3294R1 +16 July 2024 + +Code Injection with Token Sequences +https://wg21.link/p3294r1 + + + + +Barry Revzin, Andrei Alexandrescu, Daveed Vandevoorde +- +d:p3295r0 +P3295R0 +21 May 2024 + +Freestanding constexpr containers and constexpr exception types +https://wg21.link/p3295r0 + + + + +Ben Craig +- +d:p3296r0 +P3296R0 +22 May 2024 + +let_with_async_scope +https://wg21.link/p3296r0 + + + + +Anthony Williams +- +d:p3296r1 +P3296R1 +24 June 2024 + +let_with_async_scope +https://wg21.link/p3296r1 + + + + +Anthony Williams +- +d:p3297r0 +P3297R0 +20 May 2024 + +C++26 Needs Contract Checking +https://wg21.link/p3297r0 + + + + +Ryan McDougall, Jean-Francois Campeau, Christian Eltzschig, Mathias Kraus, Pez Zarifian +- +d:p3297r1 +P3297R1 +21 June 2024 + +C++26 Needs Contract Checking +https://wg21.link/p3297r1 + + + + +Ryan McDougall, Jean-Francois Campeau, Christian Eltzschig, Mathias Kraus, Pez Zarifian +- +d:p3298r0 +P3298R0 +22 May 2024 + +Implicit user-defined conversion functions as operator.() +https://wg21.link/p3298r0 + + + + +Bengt Gustafsson +- +d:p3299r0 +P3299R0 +22 May 2024 + +Range constructors for std::simd +https://wg21.link/p3299r0 + + + + +Daniel Towner, Matthias Kretz +- +d:p3300r0 +P3300R0 +15 February 2024 + +C++ Asynchronous Parallel Algorithms +https://wg21.link/p3300r0 + + + + +Bryce Adelstein Lelbach +- +d:p3301r0 +P3301R0 +21 May 2024 + +inplace_stoppable_base +https://wg21.link/p3301r0 + + + + +Lauri Vasama +- +d:p3302r0 +P3302R0 +21 May 2024 + +SG16: Unicode meeting summaries 2024-03-13 through 2024-05-08 +https://wg21.link/p3302r0 + + + + +Tom Honermann +- +d:p3303r0 +P3303R0 +22 May 2024 + +Fixing Lazy Sender Algorithm Customization +https://wg21.link/p3303r0 + + + + +Eric Niebler +- +d:p3303r1 +P3303R1 +25 June 2024 + +Fixing Lazy Sender Algorithm Customization +https://wg21.link/p3303r1 + + + + +Eric Niebler +- +d:p3304r0 +P3304R0 +21 May 2024 + +SG14: Low Latency/Games/Embedded/Financial Trading virtual Meeting Minutes 2024/04/10 +https://wg21.link/p3304r0 + + + + +Michael Wong +- +d:p3305r0 +P3305R0 +21 May 2024 + +SG19: Machine Learning virtual Meeting Minutes to 2024/04/11-2024/05/09 +https://wg21.link/p3305r0 + + + + +Michael Wong +- +d:p3306r0 +P3306R0 +22 May 2024 + +Atomic Read-Modify-Write Improvements +https://wg21.link/p3306r0 + + + + +Gonzalo Brito Gadeschi, Damien Lebrun-Grandie +- +d:p3307r0 +P3307R0 +22 May 2024 + +Floating-Point Maximum/Minimum Function Objects +https://wg21.link/p3307r0 + + + + +Gonzalo Brito Gadeschi +- +d:p3308r0 +P3308R0 +22 May 2024 + +mdarray design questions and answers +https://wg21.link/p3308r0 + + + + +Mark Hoemmen, Christian Trott +- +d:p3309r0 +P3309R0 +22 May 2024 + +constexpr atomic and atomic_ref +https://wg21.link/p3309r0 + + + + +Hana Dusíková +- +d:p3309r1 +P3309R1 +14 July 2024 + +constexpr atomic and atomic_ref +https://wg21.link/p3309r1 + + + + +Hana Dusíková +- +d:p3310r0 +P3310R0 +22 May 2024 + +Solving partial ordering issues introduced by P0522R0 +https://wg21.link/p3310r0 + + + + +Matheus Izvekov +- +d:p3310r1 +P3310R1 +21 June 2024 + +Solving partial ordering issues introduced by P0522R0 +https://wg21.link/p3310r1 + + + + +Matheus Izvekov +- +d:p3310r2 +P3310R2 +22 June 2024 + +Solving partial ordering issues introduced by P0522R0 +https://wg21.link/p3310r2 + + + + +Matheus Izvekov +- +d:p3311r0 +P3311R0 +22 May 2024 + +An opt-in approach for integration of traditional assert facilities in C++ contracts +https://wg21.link/p3311r0 + + + + +Tom Honermann +- +d:p3312r0 +P3312R0 +22 May 2024 + +Overload Set Types +https://wg21.link/p3312r0 + + + + +Bengt Gustafsson +- +d:p3313r0 +P3313R0 +22 May 2024 + +Impacts of noexept on ARM table based exception metadata +https://wg21.link/p3313r0 + + + + +Khalil Estell +- +d:p3314r0 +P3314R0 +16 July 2024 + +2024-07 Library Evolution Polls +https://wg21.link/p3314r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Nevin Liber, Billy Baker, Corentin Jabot +- +d:p3315r0 +P3315R0 +15 August 2024 + +2024-07 Library Evolution Poll Outcomes +https://wg21.link/p3315r0 + + + + +Inbal Levi, Fabio Fracassi, Ben Craig, Nevin Liber, Billy Baker, Corentin Jabot +- +d:p3316r0 +P3316R0 +22 May 2024 + +A more predictable unchecked semantic +https://wg21.link/p3316r0 + + + + +Jonas Persson +- +d:p3317r0 +P3317R0 +22 May 2024 + +Compile time resolved contracts +https://wg21.link/p3317r0 + + + + +Jonas Persson +- +d:p3318r0 +P3318R0 +22 May 2024 + +Throwing violation handlers, from an application programming perspective +https://wg21.link/p3318r0 + + + + +Ville Voutilainen +- +d:p3319r0 +P3319R0 +22 May 2024 + +Add an iota object for simd (and more) +https://wg21.link/p3319r0 + + + + +Matthias Kretz +- +d:p3319r1 +P3319R1 +28 June 2024 + +Add an iota object for simd (and more) +https://wg21.link/p3319r1 + + + + +Matthias Kretz +- +d:p3320r0 +P3320R0 +22 May 2024 + +EWG slides for P3144 "Delete if Incomplete" +https://wg21.link/p3320r0 + + + + +Alisdair Meredith +- +d:p3321r0 +P3321R0 +12 July 2024 + +Contracts Interaction With Tooling +https://wg21.link/p3321r0 -Hal T. Ng, Professor, C.S., LLVM.edu +Joshua Berne +- +d:p3323r0 +P3323R0 +16 June 2024 + +cv-qualified types in atomic and atomic_ref +https://wg21.link/p3323r0 + + + + +Gonzalo Brito Gadeschi +- +d:p3325r0 +P3325R0 +14 June 2024 + +A Utility for Creating Execution Environments +https://wg21.link/p3325r0 + + + + +Eric Niebler +- +d:p3325r1 +P3325R1 +14 July 2024 + +A Utility for Creating Execution Environments +https://wg21.link/p3325r1 + + + + +Eric Niebler +- +d:p3325r2 +P3325R2 +16 July 2024 + +A Utility for Creating Execution Environments +https://wg21.link/p3325r2 + + + + +Eric Niebler +- +d:p3325r3 +P3325R3 +23 July 2024 + +A Utility for Creating Execution Environments +https://wg21.link/p3325r3 + + + + +Eric Niebler +- +d:p3326r0 +P3326R0 +13 June 2024 + +favor ease of use +https://wg21.link/p3326r0 + + + + +Jarrad J. Waterloo +- +d:p3328r0 +P3328R0 +14 June 2024 + +Observable Checkpoints During Contract Evaluation +https://wg21.link/p3328r0 + + + + +Joshua Berne +- +d:p3330r0 +P3330R0 +17 June 2024 + +User-defined Atomic Read-Modify-Write Operations +https://wg21.link/p3330r0 + + + + +Gonzalo Brito, Damien Lebrun-Grandie +- +d:p3331r0 +P3331R0 +18 June 2024 + +Accessing The First and Last Elements in Associative Containers +https://wg21.link/p3331r0 + + + + +Nikita Sakharin +- +d:p3332r0 +P3332R0 +18 June 2024 + +A simpler notation for PM +https://wg21.link/p3332r0 + + + + +Bjarne Stroustrup +- +d:p3335r0 +P3335R0 +12 July 2024 + +Structured Core Options +https://wg21.link/p3335r0 + + + + +René Ferdinand Rivera Morell +- +d:p3336r0 +P3336R0 +24 June 2024 + +Usage Experience for Contracts with BDE +https://wg21.link/p3336r0 + + + + +Joshua Berne +- +d:p3338r0 +P3338R0 +23 June 2024 + +Observe and ignore semantics in constant evaluation +https://wg21.link/p3338r0 + + + + +Ville Voutilainen +- +d:p3339r0 +P3339R0 +24 June 2024 + +C++ Ecosystem IS Open License +https://wg21.link/p3339r0 + + + + +René Ferdinand Rivera Morell, Jayesh Badwaik +- +d:p3340r0 +P3340R0 +24 June 2024 + +A Consistent Grammar for Sequences +https://wg21.link/p3340r0 + + + + +Alisdair Meredith +- +d:p3341r0 +P3341R0 +24 June 2024 + +C++ Standard Library Ready Issues to be moved in St Louis, Jun. 2024 +https://wg21.link/p3341r0 + + + + +Jonathan Wakely +- +d:p3342r0 +P3342R0 +11 July 2024 + +Working Draft, Standard for C++ Ecosystem +https://wg21.link/p3342r0 + + + + +René Ferdinand Rivera Morell +- +d:p3343r0 +P3343R0 +25 June 2024 + +Contracts - What are we doing here (EWG Presentation) +https://wg21.link/p3343r0 + + + + +Joshua Berne +- +d:p3344r0 +P3344R0 +28 June 2024 + +Virtual Functions on Contracts (EWG - Presentation for P3097) +https://wg21.link/p3344r0 + + + + +Joshua Berne, Timur Doumler, Lisa Lippincott +- +d:p3345r0 +P3345R0 +28 June 2024 + +Core Language Working Group "ready" Issues for the June, 2024 meeting +https://wg21.link/p3345r0 + + + + +Jens Maurer +- +d:p3347r0 +P3347R0 +9 August 2024 + +Invalid/Prospective Pointer Operations +https://wg21.link/p3347r0 + + + + +Paul E. McKenney, Maged Michael, Jens Maurer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Thomas Rodgers, Will Deacon, Michael Wong, David Goldblatt, Kostya Serebryany, Anthony Williams, Tom Scogland, and JF Bastien +- +d:p3348r0 +P3348R0 +2 August 2024 + +C++26 should refer to C23 not C17 +https://wg21.link/p3348r0 + + + + +Jonathan Wakely +- +d:p3351r0 +P3351R0 +8 July 2024 + +views::scan +https://wg21.link/p3351r0 + + + + +Yihe Li +- +d:p3354r0 +P3354R0 +9 July 2024 + +Slides for P3233R0 +https://wg21.link/p3354r0 + + + + +Giuseppe D'Angelo +- +d:p3355r0 +P3355R0 +15 July 2024 + +Fix submdspan for C++26 +https://wg21.link/p3355r0 + + + + +Mark Hoemmen +- +d:p3356r0 +P3356R0 +13 July 2024 + +non_invalidating_vector +https://wg21.link/p3356r0 + + + + +Jarrad J Waterloo +- +d:p3357r0 +P3357R0 +15 July 2024 + +NRVO with factory and after_factory +https://wg21.link/p3357r0 + + + + +TPK Healy +- +d:p3358r0 +P3358R0 +16 July 2024 + +SARIF for Structured Diagnostics +https://wg21.link/p3358r0 + + + + +Sy Brand +- +d:p3359r0 +P3359R0 +16 July 2024 + +Slides for P3298R0 - Implicit conversion functions +https://wg21.link/p3359r0 + + + + +Bengt Gustafsson +- +d:p3360r0 +P3360R0 +16 July 2024 + +Slides for P3312R0 - Overload Set Types +https://wg21.link/p3360r0 + + + + +Bengt Gustafsson +- +d:p3361r0 +P3361R0 +18 July 2024 + +Class invariants and contract checking philosophy +https://wg21.link/p3361r0 + + + + +Esa Pulkkinen +- +d:p3361r1 +P3361R1 +23 July 2024 + +Class invariants and contract checking philosophy +https://wg21.link/p3361r1 + + + + +Esa Pulkkinen +- +d:p3362r0 +P3362R0 +13 August 2024 + +Static analysis and 'safety' of Contracts, P2900 vs. P2680/P3285 +https://wg21.link/p3362r0 + + + + +Ville Voutilainen +- +d:p3364r0 +P3364R0 +15 August 2024 + +Remove Deprecated u8path overloads From C++26 +https://wg21.link/p3364r0 + + + + +Alisdair Meredith +- +d:p3365r0 +P3365R0 +15 August 2024 + +Remove the Deprecated iterator Class Template from C++26 +https://wg21.link/p3365r0 + + + + +Alisdair Meredith +- +d:p3366r0 +P3366R0 +15 August 2024 + +Remove Deprecated Atomic Initialization API from C++26 +https://wg21.link/p3366r0 + + + + +Alisdair Meredith +- +d:p3369r0 +P3369R0 +28 July 2024 + +constexpr for uninitialized_default_construct +https://wg21.link/p3369r0 + + + + +Giuseppe D'Angelo +- +d:p3370r0 +P3370R0 +15 August 2024 + +Add new library headers from C23 +https://wg21.link/p3370r0 + + + + +Jens Maurer +- +d:p3371r0 +P3371R0 +12 August 2024 + +Fix C++26 by making the symmetric and Hermitian rank-k and rank-2k updates consistent with the BLAS +https://wg21.link/p3371r0 + + + + +Mark Hoemmen +- +d:p3372r0 +P3372R0 +15 August 2024 + +constexpr containers and adapters +https://wg21.link/p3372r0 + + + + +Hana Dusíková +- +d:p3373r0 +P3373R0 +15 August 2024 + +Of Operation States and Their Lifetimes +https://wg21.link/p3373r0 + + + + +Robert Leahy +- +d:p3374r0 +P3374R0 +14 August 2024 + +Adding formatter for fpos +https://wg21.link/p3374r0 + + + + +Liang Jiaming - d:p3p P3P diff --git a/bikeshed/spec-data/readonly/biblio/biblio-p4.data b/bikeshed/spec-data/readonly/biblio/biblio-p4.data new file mode 100644 index 0000000000..e962bba236 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-p4.data @@ -0,0 +1,12 @@ +d:p4000r0 +P4000R0 +22 May 2024 + +To TS or not to TS: that is the question +https://wg21.link/p4000r0 + + + + +Michael Wong, H. Hinnant, R. Orr, B. Stroustrup, D. Vandevoorde +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pa.data b/bikeshed/spec-data/readonly/biblio/biblio-pa.data index b2598a7fbd..a1b67f241a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-pa.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-pa.data @@ -210,15 +210,16 @@ Arvind Jain - d:paint-timing paint-timing -7 September 2017 +12 January 2024 WD -Paint Timing 1 +Paint Timing https://www.w3.org/TR/paint-timing/ https://w3c.github.io/paint-timing/ -Shubhie Panicker +Ian Clelland +Noam Rosenthal - d:paint-timing-20170907 paint-timing-20170907 @@ -231,6 +232,80 @@ https://www.w3.org/TR/2017/WD-paint-timing-20170907/ Shubhie Panicker +- +d:paint-timing-20230703 +paint-timing-20230703 +3 July 2023 +WD +Paint Timing +https://www.w3.org/TR/2023/WD-paint-timing-20230703/ +https://www.w3.org/TR/2023/WD-paint-timing-20230703/ + + + +Nicolas Pena Moreno +Noam Rosenthal +- +d:paint-timing-20231122 +paint-timing-20231122 +22 November 2023 +WD +Paint Timing +https://www.w3.org/TR/2023/WD-paint-timing-20231122/ +https://www.w3.org/TR/2023/WD-paint-timing-20231122/ + + + +Nicolas Pena Moreno +Noam Rosenthal +- +d:paint-timing-20240110 +paint-timing-20240110 +10 January 2024 +WD +Paint Timing +https://www.w3.org/TR/2024/WD-paint-timing-20240110/ +https://www.w3.org/TR/2024/WD-paint-timing-20240110/ + + + +Nicolas Pena Moreno +Noam Rosenthal +- +d:paint-timing-20240112 +paint-timing-20240112 +12 January 2024 +WD +Paint Timing +https://www.w3.org/TR/2024/WD-paint-timing-20240112/ +https://www.w3.org/TR/2024/WD-paint-timing-20240112/ + + + +Ian Clelland +Noam Rosenthal +- +d:partitioned-cookies +PARTITIONED-COOKIES + +Editor's Draft +Cookies Having Independent Partitioned State specification +https://datatracker.ietf.org/doc/html/draft-cutler-httpbis-partitioned-cookies + + + + +- +d:passkey-endpoints +PASSKEY-ENDPOINTS + +Editor's Draft +A Well-Known URL for Passkey Endpoints +https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html + + + + - d:patent-practice patent-practice @@ -1734,8 +1809,8 @@ https://interledger.org/rfcs/0026-payment-pointers/ - d:payment-request payment-request -8 September 2022 -REC +14 August 2024 +CR Payment Request API https://www.w3.org/TR/payment-request/ https://w3c.github.io/payment-request/ @@ -1748,12 +1823,12 @@ Ian Jacobs - d:payment-request-1.1 payment-request-1.1 -26 July 2022 +5 February 2024 WD Payment Request API 1.1 https://www.w3.org/TR/payment-request-1.1/ https://w3c.github.io/payment-request/ - +payment-request Marcos Caceres @@ -1767,7 +1842,77 @@ WD Payment Request API 1.1 https://www.w3.org/TR/2022/WD-payment-request-1.1-20220726/ https://www.w3.org/TR/2022/WD-payment-request-1.1-20220726/ +payment-request + +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-1.1-20230627 +payment-request-1.1-20230627 +27 June 2023 +WD +Payment Request API 1.1 +https://www.w3.org/TR/2023/WD-payment-request-1.1-20230627/ +https://www.w3.org/TR/2023/WD-payment-request-1.1-20230627/ +payment-request + + +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-1.1-20230628 +payment-request-1.1-20230628 +28 June 2023 +WD +Payment Request API 1.1 +https://www.w3.org/TR/2023/WD-payment-request-1.1-20230628/ +https://www.w3.org/TR/2023/WD-payment-request-1.1-20230628/ +payment-request + + +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-1.1-20240116 +payment-request-1.1-20240116 +16 January 2024 +WD +Payment Request API 1.1 +https://www.w3.org/TR/2024/WD-payment-request-1.1-20240116/ +https://www.w3.org/TR/2024/WD-payment-request-1.1-20240116/ +payment-request + + +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-1.1-20240118 +payment-request-1.1-20240118 +18 January 2024 +WD +Payment Request API 1.1 +https://www.w3.org/TR/2024/WD-payment-request-1.1-20240118/ +https://www.w3.org/TR/2024/WD-payment-request-1.1-20240118/ +payment-request + + +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-1.1-20240205 +payment-request-1.1-20240205 +5 February 2024 +WD +Payment Request API 1.1 +https://www.w3.org/TR/2024/WD-payment-request-1.1-20240205/ +https://www.w3.org/TR/2024/WD-payment-request-1.1-20240205/ +payment-request Marcos Caceres @@ -2897,6 +3042,48 @@ https://www.w3.org/TR/2022/REC-payment-request-20220908/ +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-20240807 +payment-request-20240807 +7 August 2024 +CR +Payment Request API +https://www.w3.org/TR/2024/CRD-payment-request-20240807/ +https://www.w3.org/TR/2024/CRD-payment-request-20240807/ + + + +Ian Jacobs +Marcos Caceres +Rouslan Solomakhin +- +d:payment-request-20240813 +payment-request-20240813 +13 August 2024 +CR +Payment Request API +https://www.w3.org/TR/2024/CRD-payment-request-20240813/ +https://www.w3.org/TR/2024/CRD-payment-request-20240813/ + + + +Marcos Caceres +Rouslan Solomakhin +Ian Jacobs +- +d:payment-request-20240814 +payment-request-20240814 +14 August 2024 +CR +Payment Request API +https://www.w3.org/TR/2024/CRD-payment-request-20240814/ +https://www.w3.org/TR/2024/CRD-payment-request-20240814/ + + + Marcos Caceres Rouslan Solomakhin Ian Jacobs diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pc.data b/bikeshed/spec-data/readonly/biblio/biblio-pc.data new file mode 100644 index 0000000000..eef0aa7d54 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-pc.data @@ -0,0 +1,11 @@ +d:pcsc5 +PCSC5 +30 September 2005 +Published +Interoperability Specification for ICCs and Personal Computer Systems; Part 5. ICC Resource Manager Definition +https://pcscworkgroup.com/Download/Specifications/pcsc5_v2.01.01.pdf + + + + +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pe.data b/bikeshed/spec-data/readonly/biblio/biblio-pe.data index e714b9191b..f5d3a96612 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-pe.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-pe.data @@ -1,6 +1,17 @@ +d:performance-measure-memory +PERFORMANCE-MEASURE-MEMORY + +Draft Community Group Report +Measure Memory API +https://wicg.github.io/performance-measure-memory/ + + + + +- d:performance-timeline performance-timeline -15 November 2022 +16 February 2024 CR Performance Timeline https://www.w3.org/TR/performance-timeline/ @@ -190,6 +201,18 @@ a:performance-timeline-2-20221115 performance-timeline-2-20221115 performance-timeline-20221115 - +a:performance-timeline-2-20231011 +performance-timeline-2-20231011 +performance-timeline-20231011 +- +a:performance-timeline-2-20240202 +performance-timeline-2-20240202 +performance-timeline-20240202 +- +a:performance-timeline-2-20240216 +performance-timeline-2-20240216 +performance-timeline-20240216 +- d:performance-timeline-20110811 performance-timeline-20110811 11 August 2011 @@ -725,6 +748,42 @@ https://www.w3.org/TR/2022/CRD-performance-timeline-20221115/ +Nicolas Pena Moreno +- +d:performance-timeline-20231011 +performance-timeline-20231011 +11 October 2023 +CR +Performance Timeline +https://www.w3.org/TR/2023/CRD-performance-timeline-20231011/ +https://www.w3.org/TR/2023/CRD-performance-timeline-20231011/ + + + +Nicolas Pena Moreno +- +d:performance-timeline-20240202 +performance-timeline-20240202 +2 February 2024 +CR +Performance Timeline +https://www.w3.org/TR/2024/CRD-performance-timeline-20240202/ +https://www.w3.org/TR/2024/CRD-performance-timeline-20240202/ + + + +Nicolas Pena Moreno +- +d:performance-timeline-20240216 +performance-timeline-20240216 +16 February 2024 +CR +Performance Timeline +https://www.w3.org/TR/2024/CRD-performance-timeline-20240216/ +https://www.w3.org/TR/2024/CRD-performance-timeline-20240216/ + + + Nicolas Pena Moreno - d:periodic-background-sync @@ -763,7 +822,7 @@ Robert McMillan - d:permissions permissions -20 December 2022 +19 March 2024 WD Permissions https://www.w3.org/TR/permissions/ @@ -1400,6 +1459,84 @@ https://www.w3.org/TR/2022/WD-permissions-20221220/ +Marcos Caceres +Mike Taylor +- +d:permissions-20230613 +permissions-20230613 +13 June 2023 +WD +Permissions +https://www.w3.org/TR/2023/WD-permissions-20230613/ +https://www.w3.org/TR/2023/WD-permissions-20230613/ + + + +Marcos Caceres +Mike Taylor +- +d:permissions-20231122 +permissions-20231122 +22 November 2023 +WD +Permissions +https://www.w3.org/TR/2023/WD-permissions-20231122/ +https://www.w3.org/TR/2023/WD-permissions-20231122/ + + + +Marcos Caceres +Mike Taylor +- +d:permissions-20231201 +permissions-20231201 +1 December 2023 +WD +Permissions +https://www.w3.org/TR/2023/WD-permissions-20231201/ +https://www.w3.org/TR/2023/WD-permissions-20231201/ + + + +Marcos Caceres +Mike Taylor +- +d:permissions-20240112 +permissions-20240112 +12 January 2024 +WD +Permissions +https://www.w3.org/TR/2024/WD-permissions-20240112/ +https://www.w3.org/TR/2024/WD-permissions-20240112/ + + + +Marcos Caceres +Mike Taylor +- +d:permissions-20240116 +permissions-20240116 +16 January 2024 +WD +Permissions +https://www.w3.org/TR/2024/WD-permissions-20240116/ +https://www.w3.org/TR/2024/WD-permissions-20240116/ + + + +Marcos Caceres +Mike Taylor +- +d:permissions-20240319 +permissions-20240319 +19 March 2024 +WD +Permissions +https://www.w3.org/TR/2024/WD-permissions-20240319/ +https://www.w3.org/TR/2024/WD-permissions-20240319/ + + + Marcos Caceres Mike Taylor - @@ -1409,7 +1546,7 @@ permissions-policy-1 - d:permissions-policy-1 permissions-policy-1 -23 January 2023 +24 July 2024 WD Permissions Policy https://www.w3.org/TR/permissions-policy-1/ @@ -1465,6 +1602,222 @@ https://www.w3.org/TR/2023/WD-permissions-policy-1-20230123/ +Ian Clelland +- +d:permissions-policy-1-20230217 +permissions-policy-1-20230217 +17 February 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230217/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230217/ + + + +Ian Clelland +- +d:permissions-policy-1-20230222 +permissions-policy-1-20230222 +22 February 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230222/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230222/ + + + +Ian Clelland +- +d:permissions-policy-1-20230322 +permissions-policy-1-20230322 +22 March 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230322/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230322/ + + + +Ian Clelland +- +d:permissions-policy-1-20230607 +permissions-policy-1-20230607 +7 June 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230607/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230607/ + + + +Ian Clelland +- +d:permissions-policy-1-20230630 +permissions-policy-1-20230630 +30 June 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230630/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230630/ + + + +Ian Clelland +- +d:permissions-policy-1-20230705 +permissions-policy-1-20230705 +5 July 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230705/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230705/ + + + +Ian Clelland +- +d:permissions-policy-1-20230717 +permissions-policy-1-20230717 +17 July 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230717/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230717/ + + + +Ian Clelland +- +d:permissions-policy-1-20230911 +permissions-policy-1-20230911 +11 September 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230911/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230911/ + + + +Ian Clelland +- +d:permissions-policy-1-20230912 +permissions-policy-1-20230912 +12 September 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230912/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20230912/ + + + +Ian Clelland +- +d:permissions-policy-1-20231013 +permissions-policy-1-20231013 +13 October 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231013/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231013/ + + + +Ian Clelland +- +d:permissions-policy-1-20231016 +permissions-policy-1-20231016 +16 October 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231016/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231016/ + + + +Ian Clelland +- +d:permissions-policy-1-20231017 +permissions-policy-1-20231017 +17 October 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231017/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231017/ + + + +Ian Clelland +- +d:permissions-policy-1-20231218 +permissions-policy-1-20231218 +18 December 2023 +WD +Permissions Policy +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231218/ +https://www.w3.org/TR/2023/WD-permissions-policy-1-20231218/ + + + +Ian Clelland +- +d:permissions-policy-1-20240619 +permissions-policy-1-20240619 +19 June 2024 +WD +Permissions Policy +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240619/ +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240619/ + + + +Ian Clelland +- +d:permissions-policy-1-20240626 +permissions-policy-1-20240626 +26 June 2024 +WD +Permissions Policy +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240626/ +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240626/ + + + +Ian Clelland +- +d:permissions-policy-1-20240627 +permissions-policy-1-20240627 +27 June 2024 +WD +Permissions Policy +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240627/ +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240627/ + + + +Ian Clelland +- +d:permissions-policy-1-20240628 +permissions-policy-1-20240628 +28 June 2024 +WD +Permissions Policy +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240628/ +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240628/ + + + +Ian Clelland +- +d:permissions-policy-1-20240724 +permissions-policy-1-20240724 +24 July 2024 +WD +Permissions Policy +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240724/ +https://www.w3.org/TR/2024/WD-permissions-policy-1-20240724/ + + + Ian Clelland - a:permissions-policy-20190416 @@ -1482,6 +1835,89 @@ permissions-policy-1-20221207 a:permissions-policy-20230123 permissions-policy-20230123 permissions-policy-1-20230123 +- +a:permissions-policy-20230217 +permissions-policy-20230217 +permissions-policy-1-20230217 +- +a:permissions-policy-20230222 +permissions-policy-20230222 +permissions-policy-1-20230222 +- +a:permissions-policy-20230322 +permissions-policy-20230322 +permissions-policy-1-20230322 +- +a:permissions-policy-20230607 +permissions-policy-20230607 +permissions-policy-1-20230607 +- +a:permissions-policy-20230630 +permissions-policy-20230630 +permissions-policy-1-20230630 +- +a:permissions-policy-20230705 +permissions-policy-20230705 +permissions-policy-1-20230705 +- +a:permissions-policy-20230717 +permissions-policy-20230717 +permissions-policy-1-20230717 +- +a:permissions-policy-20230911 +permissions-policy-20230911 +permissions-policy-1-20230911 +- +a:permissions-policy-20230912 +permissions-policy-20230912 +permissions-policy-1-20230912 +- +a:permissions-policy-20231013 +permissions-policy-20231013 +permissions-policy-1-20231013 +- +a:permissions-policy-20231016 +permissions-policy-20231016 +permissions-policy-1-20231016 +- +a:permissions-policy-20231017 +permissions-policy-20231017 +permissions-policy-1-20231017 +- +a:permissions-policy-20231218 +permissions-policy-20231218 +permissions-policy-1-20231218 +- +a:permissions-policy-20240619 +permissions-policy-20240619 +permissions-policy-1-20240619 +- +a:permissions-policy-20240626 +permissions-policy-20240626 +permissions-policy-1-20240626 +- +a:permissions-policy-20240627 +permissions-policy-20240627 +permissions-policy-1-20240627 +- +a:permissions-policy-20240628 +permissions-policy-20240628 +permissions-policy-1-20240628 +- +a:permissions-policy-20240724 +permissions-policy-20240724 +permissions-policy-1-20240724 +- +d:permissions-registry +PERMISSIONS-REGISTRY + +Draft Registry +Permissions Registry +https://w3c.github.io/permissions-registry/ + + + + - d:permissions-request PERMISSIONS-REQUEST diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pi.data b/bikeshed/spec-data/readonly/biblio/biblio-pi.data index 3f7ae3a734..29e89abda4 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-pi.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-pi.data @@ -213,7 +213,7 @@ Paul Resnick - d:picture-in-picture picture-in-picture -19 December 2022 +4 July 2024 WD Picture-in-Picture https://www.w3.org/TR/picture-in-picture/ @@ -346,6 +346,30 @@ https://www.w3.org/TR/2022/WD-picture-in-picture-20221219/ +Francois Beaufort +- +d:picture-in-picture-20240502 +picture-in-picture-20240502 +2 May 2024 +WD +Picture-in-Picture +https://www.w3.org/TR/2024/WD-picture-in-picture-20240502/ +https://www.w3.org/TR/2024/WD-picture-in-picture-20240502/ + + + +Francois Beaufort +- +d:picture-in-picture-20240704 +picture-in-picture-20240704 +4 July 2024 +WD +Picture-in-Picture +https://www.w3.org/TR/2024/WD-picture-in-picture-20240704/ +https://www.w3.org/TR/2024/WD-picture-in-picture-20240704/ + + + Francois Beaufort - d:pidl diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pn.data b/bikeshed/spec-data/readonly/biblio/biblio-pn.data index 5df41d64b2..eaa7b1080e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-pn.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-pn.data @@ -1,5 +1,9 @@ -d:png +a:png PNG +png-3 +- +d:png-1 +PNG-1 10 November 2003 REC Portable Network Graphics (PNG) Specification (Second Edition) @@ -10,8 +14,8 @@ https://w3c.github.io/PNG-spec/ Tom Lane - -d:png-19961001 -PNG-19961001 +d:png-1-19961001 +PNG-1-19961001 1 October 1996 REC PNG (Portable Network Graphics) Specification @@ -22,8 +26,8 @@ https://www.w3.org/TR/REC-png-961001 Tom Lane - -d:png-20030520 -PNG-20030520 +d:png-1-20030520 +PNG-1-20030520 20 May 2003 PR Portable Network Graphics (PNG) Specification (Second Edition) @@ -34,8 +38,8 @@ https://www.w3.org/TR/2003/PR-PNG-20030520/ Tom Lane - -d:png-20031110 -PNG-20031110 +d:png-1-20031110 +PNG-1-20031110 10 November 2003 REC Portable Network Graphics (PNG) Specification (Second Edition) @@ -46,21 +50,49 @@ https://www.w3.org/TR/2003/REC-PNG-20031110/ David Duce - +a:png-19961001 +PNG-19961001 +PNG-1-19961001 +- +a:png-20030520 +PNG-20030520 +PNG-1-20030520 +- +a:png-20031110 +PNG-20031110 +PNG-1-20031110 +- +a:png-20221025 +PNG-20221025 +png-3-20221025 +- +a:png-20230720 +PNG-20230720 +png-3-20230720 +- +a:png-20230921 +PNG-20230921 +png-3-20230921 +- +a:png-20240718 +PNG-20240718 +png-3-20240718 +- d:png-3 png-3 -25 October 2022 -WD +18 July 2024 +CR Portable Network Graphics (PNG) Specification (Third Edition) https://www.w3.org/TR/png-3/ -https://w3c.github.io/PNG-spec +https://w3c.github.io/png/ -Chris Blume -Pierre-Anthony Lemieux Chris Lilley Leonard Rosenthol -Jen Williams +Pierre-Anthony Lemieux +Chris Seeger +Chris Blume - d:png-3-20221025 png-3-20221025 @@ -76,7 +108,55 @@ Chris Blume Pierre-Anthony Lemieux Chris Lilley Leonard Rosenthol -Jen Williams +Chris Seeger +- +d:png-3-20230720 +png-3-20230720 +20 July 2023 +WD +Portable Network Graphics (PNG) Specification (Third Edition) +https://www.w3.org/TR/2023/WD-png-3-20230720/ +https://www.w3.org/TR/2023/WD-png-3-20230720/ + + + +Chris Lilley +Leonard Rosenthol +Pierre-Anthony Lemieux +Chris Seeger +Chris Blume +- +d:png-3-20230921 +png-3-20230921 +21 September 2023 +CR +Portable Network Graphics (PNG) Specification (Third Edition) +https://www.w3.org/TR/2023/CR-png-3-20230921/ +https://www.w3.org/TR/2023/CR-png-3-20230921/ + + + +Chris Lilley +Leonard Rosenthol +Pierre-Anthony Lemieux +Chris Seeger +Chris Blume +- +d:png-3-20240718 +png-3-20240718 +18 July 2024 +CR +Portable Network Graphics (PNG) Specification (Third Edition) +https://www.w3.org/TR/2024/CRD-png-3-20240718/ +https://www.w3.org/TR/2024/CRD-png-3-20240718/ + + + +Chris Lilley +Leonard Rosenthol +Pierre-Anthony Lemieux +Chris Seeger +Chris Blume - d:png-hdr-pq png-hdr-pq @@ -128,17 +208,17 @@ Pierre-Anthony Lemieux - a:png2e PNG2e -PNG +PNG-1 - a:png2e-19961001 PNG2e-19961001 -PNG-19961001 +PNG-1-19961001 - a:png2e-20030520 PNG2e-20030520 -PNG-20030520 +PNG-1-20030520 - a:png2e-20031110 PNG2e-20031110 -PNG-20031110 +PNG-1-20031110 - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-po.data b/bikeshed/spec-data/readonly/biblio/biblio-po.data index 9c51959499..2083e36159 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-po.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-po.data @@ -369,7 +369,7 @@ Navid Zolghadr - d:pointerevents3 pointerevents3 -23 December 2022 +14 August 2024 WD Pointer Events https://www.w3.org/TR/pointerevents3/ @@ -378,7 +378,7 @@ https://w3c.github.io/pointerevents/ Patrick Lauke -Navid Zolghadr +Robert Flack - d:pointerevents3-20191212 pointerevents3-20191212 @@ -1097,6 +1097,148 @@ https://www.w3.org/TR/2022/WD-pointerevents3-20221223/ Patrick Lauke Navid Zolghadr - +d:pointerevents3-20230301 +pointerevents3-20230301 +1 March 2023 +WD +Pointer Events +https://www.w3.org/TR/2023/WD-pointerevents3-20230301/ +https://www.w3.org/TR/2023/WD-pointerevents3-20230301/ + + + +Patrick Lauke +Navid Zolghadr +- +d:pointerevents3-20230302 +pointerevents3-20230302 +2 March 2023 +WD +Pointer Events +https://www.w3.org/TR/2023/WD-pointerevents3-20230302/ +https://www.w3.org/TR/2023/WD-pointerevents3-20230302/ + + + +Patrick Lauke +Navid Zolghadr +- +d:pointerevents3-20230831 +pointerevents3-20230831 +31 August 2023 +WD +Pointer Events +https://www.w3.org/TR/2023/WD-pointerevents3-20230831/ +https://www.w3.org/TR/2023/WD-pointerevents3-20230831/ + + + +Patrick Lauke +Navid Zolghadr +- +d:pointerevents3-20231002 +pointerevents3-20231002 +2 October 2023 +WD +Pointer Events +https://www.w3.org/TR/2023/WD-pointerevents3-20231002/ +https://www.w3.org/TR/2023/WD-pointerevents3-20231002/ + + + +Patrick Lauke +- +d:pointerevents3-20231025 +pointerevents3-20231025 +25 October 2023 +WD +Pointer Events +https://www.w3.org/TR/2023/WD-pointerevents3-20231025/ +https://www.w3.org/TR/2023/WD-pointerevents3-20231025/ + + + +Patrick Lauke +Robert Flack +- +d:pointerevents3-20231122 +pointerevents3-20231122 +22 November 2023 +WD +Pointer Events +https://www.w3.org/TR/2023/WD-pointerevents3-20231122/ +https://www.w3.org/TR/2023/WD-pointerevents3-20231122/ + + + +Patrick Lauke +Robert Flack +- +d:pointerevents3-20240121 +pointerevents3-20240121 +21 January 2024 +WD +Pointer Events +https://www.w3.org/TR/2024/WD-pointerevents3-20240121/ +https://www.w3.org/TR/2024/WD-pointerevents3-20240121/ + + + +Patrick Lauke +Robert Flack +- +d:pointerevents3-20240201 +pointerevents3-20240201 +1 February 2024 +WD +Pointer Events +https://www.w3.org/TR/2024/WD-pointerevents3-20240201/ +https://www.w3.org/TR/2024/WD-pointerevents3-20240201/ + + + +Patrick Lauke +Robert Flack +- +d:pointerevents3-20240318 +pointerevents3-20240318 +18 March 2024 +WD +Pointer Events +https://www.w3.org/TR/2024/WD-pointerevents3-20240318/ +https://www.w3.org/TR/2024/WD-pointerevents3-20240318/ + + + +Patrick Lauke +Robert Flack +- +d:pointerevents3-20240326 +pointerevents3-20240326 +26 March 2024 +WD +Pointer Events +https://www.w3.org/TR/2024/WD-pointerevents3-20240326/ +https://www.w3.org/TR/2024/WD-pointerevents3-20240326/ + + + +Patrick Lauke +Robert Flack +- +d:pointerevents3-20240814 +pointerevents3-20240814 +14 August 2024 +WD +Pointer Events +https://www.w3.org/TR/2024/WD-pointerevents3-20240814/ +https://www.w3.org/TR/2024/WD-pointerevents3-20240814/ + + + +Patrick Lauke +Robert Flack +- d:pointerlock pointerlock 27 October 2016 @@ -1111,7 +1253,7 @@ Vincent Scheib - d:pointerlock-2 pointerlock-2 -8 July 2022 +17 June 2024 WD Pointer Lock 2.0 https://www.w3.org/TR/pointerlock-2/ @@ -1119,8 +1261,8 @@ https://w3c.github.io/pointerlock/ -Navid Zolghadr Mustaq Ahmed +Vincent Scheib - d:pointerlock-2-20161122 pointerlock-2-20161122 @@ -1235,6 +1377,45 @@ https://www.w3.org/TR/2022/WD-pointerlock-2-20220708/ Navid Zolghadr Mustaq Ahmed - +d:pointerlock-2-20240508 +pointerlock-2-20240508 +8 May 2024 +WD +Pointer Lock 2.0 +https://www.w3.org/TR/2024/WD-pointerlock-2-20240508/ +https://www.w3.org/TR/2024/WD-pointerlock-2-20240508/ + + + +Mustaq Ahmed +Vincent Scheib +- +d:pointerlock-2-20240516 +pointerlock-2-20240516 +16 May 2024 +WD +Pointer Lock 2.0 +https://www.w3.org/TR/2024/WD-pointerlock-2-20240516/ +https://www.w3.org/TR/2024/WD-pointerlock-2-20240516/ + + + +Mustaq Ahmed +Vincent Scheib +- +d:pointerlock-2-20240617 +pointerlock-2-20240617 +17 June 2024 +WD +Pointer Lock 2.0 +https://www.w3.org/TR/2024/WD-pointerlock-2-20240617/ +https://www.w3.org/TR/2024/WD-pointerlock-2-20240617/ + + + +Mustaq Ahmed +Vincent Scheib +- d:pointerlock-20120529 pointerlock-20120529 29 May 2012 @@ -1440,6 +1621,17 @@ https://www.w3.org/2001/tag/doc/polyfills/ Andrew Betts +- +d:portals +PORTALS + +Draft Community Group Report +Portals +https://wicg.github.io/portals/ + + + + - d:porterduff PORTERDUFF @@ -2280,3 +2472,7 @@ a:powerful-features-20210918 powerful-features-20210918 secure-contexts-20210918 - +a:powerful-features-20231110 +powerful-features-20231110 +secure-contexts-20231110 +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pr.data b/bikeshed/spec-data/readonly/biblio/biblio-pr.data index 89d59ef007..91577ec5da 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-pr.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-pr.data @@ -76,7 +76,7 @@ rdf-syntax-grammar-20140225 - d:predefined-counter-styles predefined-counter-styles -9 June 2021 +15 August 2024 NOTE Ready-made Counter Styles https://www.w3.org/TR/predefined-counter-styles/ @@ -168,6 +168,54 @@ https://www.w3.org/TR/2021/NOTE-predefined-counter-styles-20210609/ +Richard Ishida +- +d:predefined-counter-styles-20230619 +predefined-counter-styles-20230619 +19 June 2023 +NOTE +Ready-made Counter Styles +https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230619/ +https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230619/ + + + +Richard Ishida +- +d:predefined-counter-styles-20230620 +predefined-counter-styles-20230620 +20 June 2023 +NOTE +Ready-made Counter Styles +https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230620/ +https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230620/ + + + +Richard Ishida +- +d:predefined-counter-styles-20230630 +predefined-counter-styles-20230630 +30 June 2023 +NOTE +Ready-made Counter Styles +https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230630/ +https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230630/ + + + +Richard Ishida +- +d:predefined-counter-styles-20240815 +predefined-counter-styles-20240815 +15 August 2024 +NOTE +Ready-made Counter Styles +https://www.w3.org/TR/2024/NOTE-predefined-counter-styles-20240815/ +https://www.w3.org/TR/2024/NOTE-predefined-counter-styles-20240815/ + + + Richard Ishida - d:prefer-current-tab @@ -180,6 +228,17 @@ https://wicg.github.io/prefer-current-tab/ +- +d:prefetch +PREFETCH + +Draft Community Group Report +Prefetch +https://wicg.github.io/nav-speculation/prefetch.html + + + + - d:preload preload @@ -607,10 +666,21 @@ https://www.w3.org/TR/2022/DISC-preload-20220331/ Yoav Weiss +- +d:prerendering-revamped +PRERENDERING-REVAMPED + +Draft Community Group Report +Prerendering Revamped +https://wicg.github.io/nav-speculation/prerendering.html + + + + - d:presentation-api presentation-api -23 January 2023 +23 August 2024 CR Presentation API https://www.w3.org/TR/presentation-api/ @@ -619,7 +689,6 @@ https://w3c.github.io/presentation-api/ Mark Foltz -Dominik Röttsches - d:presentation-api-20150217 presentation-api-20150217 @@ -776,6 +845,44 @@ https://www.w3.org/TR/2023/CRD-presentation-api-20230123/ Mark Foltz Dominik Röttsches - +d:presentation-api-20231012 +presentation-api-20231012 +12 October 2023 +CR +Presentation API +https://www.w3.org/TR/2023/CRD-presentation-api-20231012/ +https://www.w3.org/TR/2023/CRD-presentation-api-20231012/ + + + +Mark Foltz +Dominik Röttsches +- +d:presentation-api-20231016 +presentation-api-20231016 +16 October 2023 +CR +Presentation API +https://www.w3.org/TR/2023/CRD-presentation-api-20231016/ +https://www.w3.org/TR/2023/CRD-presentation-api-20231016/ + + + +Mark Foltz +Dominik Röttsches +- +d:presentation-api-20240823 +presentation-api-20240823 +23 August 2024 +CR +Presentation API +https://www.w3.org/TR/2024/CRD-presentation-api-20240823/ +https://www.w3.org/TR/2024/CRD-presentation-api-20240823/ + + + +Mark Foltz +- d:print print 2 September 1999 @@ -846,7 +953,7 @@ Nick Doty, Deirdre K. Mulligan, Erik Wilde. <a href='http://escholarship.org/uc/ - d:privacy-principles privacy-principles -14 December 2022 +13 August 2024 NOTE Privacy Principles https://www.w3.org/TR/privacy-principles/ @@ -855,7 +962,7 @@ https://w3ctag.github.io/privacy-principles/ Robin Berjon -Tonya Lee Tonya Dickard +Jeffrey Yasskin - d:privacy-principles-20220512 privacy-principles-20220512 @@ -883,9 +990,133 @@ https://www.w3.org/TR/2022/DNOTE-privacy-principles-20221214/ Robin Berjon Tonya Lee Tonya Dickard - +d:privacy-principles-20230223 +privacy-principles-20230223 +23 February 2023 +NOTE +Privacy Principles +https://www.w3.org/TR/2023/DNOTE-privacy-principles-20230223/ +https://www.w3.org/TR/2023/DNOTE-privacy-principles-20230223/ + + + +Robin Berjon +Tonya Lee Tonya Dickard +- +d:privacy-principles-20230906 +privacy-principles-20230906 +6 September 2023 +NOTE +Privacy Principles +https://www.w3.org/TR/2023/DNOTE-privacy-principles-20230906/ +https://www.w3.org/TR/2023/DNOTE-privacy-principles-20230906/ + + + +Robin Berjon +Jeffrey Yasskin +- +d:privacy-principles-20240118 +privacy-principles-20240118 +18 January 2024 +NOTE +Privacy Principles +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240118/ +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240118/ + + + +Robin Berjon +Jeffrey Yasskin +- +d:privacy-principles-20240226 +privacy-principles-20240226 +26 February 2024 +NOTE +Privacy Principles +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240226/ +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240226/ + + + +Robin Berjon +Jeffrey Yasskin +- +d:privacy-principles-20240511 +privacy-principles-20240511 +11 May 2024 +NOTE +Privacy Principles +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240511/ +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240511/ + + + +Robin Berjon +Jeffrey Yasskin +- +d:privacy-principles-20240706 +privacy-principles-20240706 +6 July 2024 +NOTE +Privacy Principles +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240706/ +https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240706/ + + + +Robin Berjon +Jeffrey Yasskin +- +d:privacy-principles-20240813 +privacy-principles-20240813 +13 August 2024 +NOTE +Privacy Principles +https://www.w3.org/TR/2024/NOTE-privacy-principles-20240813/ +https://www.w3.org/TR/2024/NOTE-privacy-principles-20240813/ + + + +Robin Berjon +Jeffrey Yasskin +- s:privacy-terminology PRIVACY-TERMINOLOGY A. Pfitzmann, M. Hansen, H Tschofenig. <a href="https://tools.ietf.org/id/draft-hansen-privacy-terminology-00.html"><cite>Terminology for Talking about Privacy by Data Minimization: Anonymity, Unlinkability, Undetectability, Unobservability, Pseudonymity, and Identity Management</cite></a> IETF Internet Draft. URL: <a href="https://tools.ietf.org/id/draft-hansen-privacy-terminology-00.html">https://tools.ietf.org/id/draft-hansen-privacy-terminology-00.html</a> +- +d:private-aggregation-api +PRIVATE-AGGREGATION-API + +Unofficial Proposal Draft +Private Aggregation API +https://patcg-individual-drafts.github.io/private-aggregation-api/ + + + + +- +d:private-click-measurement +PRIVATE-CLICK-MEASUREMENT + +Editor's Draft +Private Click Measurement +https://privacycg.github.io/private-click-measurement/ + + + + +- +d:private-network-access +PRIVATE-NETWORK-ACCESS + +Draft Community Group Report +Private Network Access +https://wicg.github.io/private-network-access/ + + + + - d:proc-model-req proc-model-req @@ -2215,7 +2446,7 @@ Stephan Zednik - d:proximity proximity -3 September 2021 +27 November 2023 WD Proximity Sensor https://www.w3.org/TR/proximity/ @@ -2379,6 +2610,45 @@ https://www.w3.org/TR/2021/WD-proximity-20210903/ +Anssi Kostiainen +Rijubrata Bhaumik +- +d:proximity-20230130 +proximity-20230130 +30 January 2023 +WD +Proximity Sensor +https://www.w3.org/TR/2023/WD-proximity-20230130/ +https://www.w3.org/TR/2023/WD-proximity-20230130/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:proximity-20231026 +proximity-20231026 +26 October 2023 +WD +Proximity Sensor +https://www.w3.org/TR/2023/WD-proximity-20231026/ +https://www.w3.org/TR/2023/WD-proximity-20231026/ + + + +Anssi Kostiainen +Rijubrata Bhaumik +- +d:proximity-20231127 +proximity-20231127 +27 November 2023 +WD +Proximity Sensor +https://www.w3.org/TR/2023/WD-proximity-20231127/ +https://www.w3.org/TR/2023/WD-proximity-20231127/ + + + Anssi Kostiainen Rijubrata Bhaumik - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-pu.data b/bikeshed/spec-data/readonly/biblio/biblio-pu.data index 57759feec4..9eede1dfc5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-pu.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-pu.data @@ -240,7 +240,7 @@ websub-20180123 - d:push-api push-api -30 June 2022 +10 July 2024 WD Push API https://www.w3.org/TR/push-api/ @@ -882,6 +882,76 @@ https://www.w3.org/TR/2022/WD-push-api-20220630/ +Peter Beverloo +Martin Thomson +Marcos Caceres +- +d:push-api-20231010 +push-api-20231010 +10 October 2023 +WD +Push API +https://www.w3.org/TR/2023/WD-push-api-20231010/ +https://www.w3.org/TR/2023/WD-push-api-20231010/ + + + +Peter Beverloo +Martin Thomson +Marcos Caceres +- +d:push-api-20231211 +push-api-20231211 +11 December 2023 +WD +Push API +https://www.w3.org/TR/2023/WD-push-api-20231211/ +https://www.w3.org/TR/2023/WD-push-api-20231211/ + + + +Peter Beverloo +Martin Thomson +Marcos Caceres +- +d:push-api-20240530 +push-api-20240530 +30 May 2024 +WD +Push API +https://www.w3.org/TR/2024/WD-push-api-20240530/ +https://www.w3.org/TR/2024/WD-push-api-20240530/ + + + +Peter Beverloo +Martin Thomson +Marcos Caceres +- +d:push-api-20240708 +push-api-20240708 +8 July 2024 +WD +Push API +https://www.w3.org/TR/2024/WD-push-api-20240708/ +https://www.w3.org/TR/2024/WD-push-api-20240708/ + + + +Peter Beverloo +Martin Thomson +Marcos Caceres +- +d:push-api-20240710 +push-api-20240710 +10 July 2024 +WD +Push API +https://www.w3.org/TR/2024/WD-push-api-20240710/ +https://www.w3.org/TR/2024/WD-push-api-20240710/ + + + Peter Beverloo Martin Thomson Marcos Caceres diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ra.data b/bikeshed/spec-data/readonly/biblio/biblio-ra.data index 2fb17fc3ce..40b22983e1 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ra.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ra.data @@ -4,17 +4,17 @@ rfc4086 - d:rangerequest RangeRequest -25 January 2022 +30 May 2023 WD -Incremental Font Transfer via Range Request +Range Request Incremental Font Transfer https://www.w3.org/TR/RangeRequest/ https://w3c.github.io/IFT/RangeRequest.html ift Chris Lilley -Myles Maxfield Garret Rieger +Myles Maxfield - d:rangerequest-20220125 RangeRequest-20220125 @@ -30,6 +30,20 @@ Chris Lilley Myles Maxfield Garret Rieger - +d:rangerequest-20230530 +RangeRequest-20230530 +30 May 2023 +WD +Range Request Incremental Font Transfer +https://www.w3.org/TR/2023/WD-RangeRequest-20230530/ +https://www.w3.org/TR/2023/WD-RangeRequest-20230530/ +ift + + +Chris Lilley +Garret Rieger +Myles Maxfield +- d:raster-tragedy RASTER-TRAGEDY 7 December 2011 @@ -101,6 +115,17 @@ Joshue O'Connor Janina Sajka Jason White Michael Cooper +- +d:raw-camera-access +RAW-CAMERA-ACCESS + +Draft Community Group Report +WebXR Raw Camera Access Module +https://immersive-web.github.io/raw-camera-access/ + + + + - a:raw-sockets raw-sockets diff --git a/bikeshed/spec-data/readonly/biblio/biblio-rc.data b/bikeshed/spec-data/readonly/biblio/biblio-rc.data new file mode 100644 index 0000000000..f98639b257 --- /dev/null +++ b/bikeshed/spec-data/readonly/biblio/biblio-rc.data @@ -0,0 +1,24 @@ +d:rch-explainer +rch-explainer +19 October 2023 +NOTE +RDF Dataset Canonicalization and Hash Working Group — Explainer and Use Cases +https://www.w3.org/TR/rch-explainer/ +https://w3c.github.io/rch-explainer/ + + + +Phil Archer +- +d:rch-explainer-20231019 +rch-explainer-20231019 +19 October 2023 +NOTE +RDF Dataset Canonicalization and Hash Working Group — Explainer and Use Cases +https://www.w3.org/TR/2023/NOTE-rch-explainer-20231019/ +https://www.w3.org/TR/2023/NOTE-rch-explainer-20231019/ + + + +Phil Archer +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-rd.data b/bikeshed/spec-data/readonly/biblio/biblio-rd.data index 28a9fd6fec..723dee3003 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-rd.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-rd.data @@ -234,16 +234,16 @@ Benjamin Adrian - d:rdf-canon rdf-canon -25 January 2023 -WD +21 May 2024 +REC RDF Dataset Canonicalization https://www.w3.org/TR/rdf-canon/ https://w3c.github.io/rdf-canon/spec/ -Dave Longley Gregg Kellogg +Dave Longley Dan Yamamoto - d:rdf-canon-20221124 @@ -316,2395 +316,4176 @@ Dave Longley Gregg Kellogg Dan Yamamoto - -d:rdf-concepts -rdf-concepts -10 February 2004 -REC -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/rdf-concepts/ - +d:rdf-canon-20230202 +rdf-canon-20230202 +2 February 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230202/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230202/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20020829 -rdf-concepts-20020829 -29 August 2002 +d:rdf-canon-20230205 +rdf-canon-20230205 +5 February 2023 WD -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2002/WD-rdf-concepts-20020829/ -https://www.w3.org/TR/2002/WD-rdf-concepts-20020829/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230205/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230205/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20021108 -rdf-concepts-20021108 -8 November 2002 +d:rdf-canon-20230310 +rdf-canon-20230310 +10 March 2023 WD -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2002/WD-rdf-concepts-20021108/ -https://www.w3.org/TR/2002/WD-rdf-concepts-20021108/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230310/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230310/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20030123 -rdf-concepts-20030123 -23 January 2003 +d:rdf-canon-20230315 +rdf-canon-20230315 +15 March 2023 WD -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2003/WD-rdf-concepts-20030123/ -https://www.w3.org/TR/2003/WD-rdf-concepts-20030123/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230315/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230315/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20030905 -rdf-concepts-20030905 -5 September 2003 +d:rdf-canon-20230405 +rdf-canon-20230405 +5 April 2023 WD -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2003/WD-rdf-concepts-20030905/ -https://www.w3.org/TR/2003/WD-rdf-concepts-20030905/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230405/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230405/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20031010 -rdf-concepts-20031010 -10 October 2003 +d:rdf-canon-20230410 +rdf-canon-20230410 +10 April 2023 WD -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2003/WD-rdf-concepts-20031010/ -https://www.w3.org/TR/2003/WD-rdf-concepts-20031010/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230410/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230410/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20031215 -rdf-concepts-20031215 -15 December 2003 -PR -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2003/PR-rdf-concepts-20031215/ -https://www.w3.org/TR/2003/PR-rdf-concepts-20031215/ +d:rdf-canon-20230412 +rdf-canon-20230412 +12 April 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230412/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230412/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-concepts-20040210 -rdf-concepts-20040210 -10 February 2004 -REC -Resource Description Framework (RDF): Concepts and Abstract Syntax -https://www.w3.org/TR/2004/REC-rdf-concepts-20040210/ -https://www.w3.org/TR/2004/REC-rdf-concepts-20040210/ +d:rdf-canon-20230415 +rdf-canon-20230415 +15 April 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230415/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230415/ -Graham Klyne -Jeremy Carroll +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-dawg-uc -rdf-dawg-uc -25 March 2005 +d:rdf-canon-20230505 +rdf-canon-20230505 +5 May 2023 WD -RDF Data Access Use Cases and Requirements -https://www.w3.org/TR/rdf-dawg-uc/ - +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230505/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230505/ -Kendall Clark +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-dawg-uc-20040602 -rdf-dawg-uc-20040602 -2 June 2004 +d:rdf-canon-20230522 +rdf-canon-20230522 +22 May 2023 WD -RDF Data Access Use Cases and Requirements -https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040602/ -https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040602/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230522/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230522/ -Kendall Clark +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-dawg-uc-20040802 -rdf-dawg-uc-20040802 -2 August 2004 +d:rdf-canon-20230524 +rdf-canon-20230524 +24 May 2023 WD -RDF Data Access Use Cases and Requirements -https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040802/ -https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040802/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230524/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230524/ -Kendall Clark +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-dawg-uc-20041012 -rdf-dawg-uc-20041012 -12 October 2004 +d:rdf-canon-20230609 +rdf-canon-20230609 +9 June 2023 WD -RDF Data Access Use Cases and Requirements -https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20041012/ -https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20041012/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230609/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230609/ -Kendall Clark +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-dawg-uc-20050325 -rdf-dawg-uc-20050325 -25 March 2005 +d:rdf-canon-20230614 +rdf-canon-20230614 +14 June 2023 WD -RDF Data Access Use Cases and Requirements -https://www.w3.org/TR/2005/WD-rdf-dawg-uc-20050325/ -https://www.w3.org/TR/2005/WD-rdf-dawg-uc-20050325/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230614/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230614/ -Kendall Clark +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-interfaces -rdf-interfaces -5 July 2012 -NOTE -RDF Interfaces -https://www.w3.org/TR/rdf-interfaces/ - +d:rdf-canon-20230619 +rdf-canon-20230619 +19 June 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230619/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230619/ -Nathan Rixham -Manu Sporny -Benjamin Adrian +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-interfaces-20110510 -rdf-interfaces-20110510 -10 May 2011 +d:rdf-canon-20230630 +rdf-canon-20230630 +30 June 2023 WD -RDF Interfaces -https://www.w3.org/TR/2011/WD-rdf-interfaces-20110510/ -https://www.w3.org/TR/2011/WD-rdf-interfaces-20110510/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230630/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230630/ -Nathan Rixham -Manu Sporny -Benjamin Adrian +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-interfaces-20120705 -rdf-interfaces-20120705 -5 July 2012 -NOTE -RDF Interfaces -https://www.w3.org/TR/2012/NOTE-rdf-interfaces-20120705/ -https://www.w3.org/TR/2012/NOTE-rdf-interfaces-20120705/ +d:rdf-canon-20230712 +rdf-canon-20230712 +12 July 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230712/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230712/ -Nathan Rixham -Manu Sporny -Benjamin Adrian +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-json -rdf-json -7 November 2013 -NOTE -RDF 1.1 JSON Alternate Serialization (RDF/JSON) -https://www.w3.org/TR/rdf-json/ - +d:rdf-canon-20230715 +rdf-canon-20230715 +15 July 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230715/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230715/ -Ian Davis -Thomas Steiner -Arnaud Le Hors +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-json-20131107 -rdf-json-20131107 -7 November 2013 -NOTE -RDF 1.1 JSON Alternate Serialization (RDF/JSON) -https://www.w3.org/TR/2013/NOTE-rdf-json-20131107/ -https://www.w3.org/TR/2013/NOTE-rdf-json-20131107/ +d:rdf-canon-20230720 +rdf-canon-20230720 +20 July 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230720/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230720/ -Ian Davis -Thomas Steiner -Arnaud Le Hors +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt -rdf-mt -10 February 2004 -REC -RDF Semantics -https://www.w3.org/TR/rdf-mt/ - +d:rdf-canon-20230721 +rdf-canon-20230721 +21 July 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230721/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230721/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20010925 -rdf-mt-20010925 -25 September 2001 +d:rdf-canon-20230725 +rdf-canon-20230725 +25 July 2023 WD -RDF Semantics -https://www.w3.org/TR/2001/WD-rdf-mt-20010925/ -https://www.w3.org/TR/2001/WD-rdf-mt-20010925/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230725/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230725/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20020214 -rdf-mt-20020214 -14 February 2002 +d:rdf-canon-20230726 +rdf-canon-20230726 +26 July 2023 WD -RDF Semantics -https://www.w3.org/TR/2002/WD-rdf-mt-20020214/ -https://www.w3.org/TR/2002/WD-rdf-mt-20020214/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230726/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230726/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20020429 -rdf-mt-20020429 -29 April 2002 +d:rdf-canon-20230727 +rdf-canon-20230727 +27 July 2023 WD -RDF Semantics -https://www.w3.org/TR/2002/WD-rdf-mt-20020429/ -https://www.w3.org/TR/2002/WD-rdf-mt-20020429/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230727/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230727/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20021112 -rdf-mt-20021112 -12 November 2002 +d:rdf-canon-20230728 +rdf-canon-20230728 +28 July 2023 WD -RDF Semantics -https://www.w3.org/TR/2002/WD-rdf-mt-20021112/ -https://www.w3.org/TR/2002/WD-rdf-mt-20021112/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230728/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230728/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20030123 -rdf-mt-20030123 -23 January 2003 +d:rdf-canon-20230731 +rdf-canon-20230731 +31 July 2023 WD -RDF Semantics -https://www.w3.org/TR/2003/WD-rdf-mt-20030123/ -https://www.w3.org/TR/2003/WD-rdf-mt-20030123/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230731/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230731/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20030905 -rdf-mt-20030905 -5 September 2003 +d:rdf-canon-20230810 +rdf-canon-20230810 +10 August 2023 WD -RDF Semantics -https://www.w3.org/TR/2003/WD-rdf-mt-20030905/ -https://www.w3.org/TR/2003/WD-rdf-mt-20030905/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230810/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230810/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20031010 -rdf-mt-20031010 -10 October 2003 +d:rdf-canon-20230816 +rdf-canon-20230816 +16 August 2023 WD -RDF Semantics -https://www.w3.org/TR/2003/WD-rdf-mt-20031010/ -https://www.w3.org/TR/2003/WD-rdf-mt-20031010/ +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230816/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230816/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20031215 -rdf-mt-20031215 -15 December 2003 -PR -RDF Semantics -https://www.w3.org/TR/2003/PR-rdf-mt-20031215/ -https://www.w3.org/TR/2003/PR-rdf-mt-20031215/ +d:rdf-canon-20230818 +rdf-canon-20230818 +18 August 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230818/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230818/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-mt-20040210 -rdf-mt-20040210 -10 February 2004 -REC -RDF Semantics -https://www.w3.org/TR/2004/REC-rdf-mt-20040210/ -https://www.w3.org/TR/2004/REC-rdf-mt-20040210/ +d:rdf-canon-20230829 +rdf-canon-20230829 +29 August 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230829/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230829/ -Patrick Hayes +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-not -RDF-NOT -17 September 1998 -W3C-Internal Document -What the Semantic Web can represent -https://www.w3.org/DesignIssues/RDFnot.html - +d:rdf-canon-20230901 +rdf-canon-20230901 +1 September 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230901/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230901/ -Tim Berners-Lee +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-pics -rdf-pics -27 March 2000 -NOTE -PICS Rating Vocabularies in XML/RDF -https://www.w3.org/TR/rdf-pics - +d:rdf-canon-20230911 +rdf-canon-20230911 +11 September 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20230911/ +https://www.w3.org/TR/2023/WD-rdf-canon-20230911/ +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-pics-20000327 -rdf-pics-20000327 -27 March 2000 -NOTE -PICS Rating Vocabularies in XML/RDF -https://www.w3.org/TR/2000/NOTE-rdf-pics-20000327 -https://www.w3.org/TR/2000/NOTE-rdf-pics-20000327 +d:rdf-canon-20231004 +rdf-canon-20231004 +4 October 2023 +WD +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/WD-rdf-canon-20231004/ +https://www.w3.org/TR/2023/WD-rdf-canon-20231004/ +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-plain-literal -rdf-plain-literal -11 December 2012 -REC -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/rdf-plain-literal/ - +d:rdf-canon-20231031 +rdf-canon-20231031 +31 October 2023 +CR +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/CR-rdf-canon-20231031/ +https://www.w3.org/TR/2023/CR-rdf-canon-20231031/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Gregg Kellogg +Dave Longley +Dan Yamamoto - -d:rdf-plain-literal-20081202 -rdf-plain-literal-20081202 -2 December 2008 -WD -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/2008/WD-rdf-text-20081202/ -https://www.w3.org/TR/2008/WD-rdf-text-20081202/ +d:rdf-canon-20231130 +rdf-canon-20231130 +30 November 2023 +CR +RDF Dataset Canonicalization +https://www.w3.org/TR/2023/CRD-rdf-canon-20231130/ +https://www.w3.org/TR/2023/CRD-rdf-canon-20231130/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-plain-literal-20090421 -rdf-plain-literal-20090421 -21 April 2009 -WD -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/2009/WD-rdf-text-20090421/ -https://www.w3.org/TR/2009/WD-rdf-text-20090421/ +d:rdf-canon-20240311 +rdf-canon-20240311 +11 March 2024 +CR +RDF Dataset Canonicalization +https://www.w3.org/TR/2024/CRD-rdf-canon-20240311/ +https://www.w3.org/TR/2024/CRD-rdf-canon-20240311/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Dave Longley +Gregg Kellogg +Dan Yamamoto - -d:rdf-plain-literal-20090611 -rdf-plain-literal-20090611 -11 June 2009 -CR -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/2009/CR-rdf-plain-literal-20090611/ -https://www.w3.org/TR/2009/CR-rdf-plain-literal-20090611/ +d:rdf-canon-20240326 +rdf-canon-20240326 +26 March 2024 +PR +RDF Dataset Canonicalization +https://www.w3.org/TR/2024/PR-rdf-canon-20240326/ +https://www.w3.org/TR/2024/PR-rdf-canon-20240326/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Gregg Kellogg +Dave Longley +Dan Yamamoto - -d:rdf-plain-literal-20090922 -rdf-plain-literal-20090922 -22 September 2009 -PR -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/2009/PR-rdf-plain-literal-20090922/ -https://www.w3.org/TR/2009/PR-rdf-plain-literal-20090922/ +d:rdf-canon-20240521 +rdf-canon-20240521 +21 May 2024 +REC +RDF Dataset Canonicalization +https://www.w3.org/TR/2024/REC-rdf-canon-20240521/ +https://www.w3.org/TR/2024/REC-rdf-canon-20240521/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Gregg Kellogg +Dave Longley +Dan Yamamoto - -d:rdf-plain-literal-20091027 -rdf-plain-literal-20091027 -27 October 2009 +d:rdf-concepts +rdf-concepts +10 February 2004 REC -rdf:PlainLiteral: A Datatype for RDF Plain Literals -https://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/ -https://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/rdf-concepts/ +https://w3c.github.io/rdf-concepts/spec/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Graham Klyne +Jeremy Carroll - -d:rdf-plain-literal-20121018 -rdf-plain-literal-20121018 -18 October 2012 -PER -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/2012/PER-rdf-plain-literal-20121018/ -https://www.w3.org/TR/2012/PER-rdf-plain-literal-20121018/ +d:rdf-concepts-20020829 +rdf-concepts-20020829 +29 August 2002 +WD +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2002/WD-rdf-concepts-20020829/ +https://www.w3.org/TR/2002/WD-rdf-concepts-20020829/ -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres +Graham Klyne +Jeremy Carroll - -d:rdf-plain-literal-20121211 -rdf-plain-literal-20121211 -11 December 2012 -REC -rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) -https://www.w3.org/TR/2012/REC-rdf-plain-literal-20121211/ -https://www.w3.org/TR/2012/REC-rdf-plain-literal-20121211/ - - - -Jie Bao -Sandro Hawke -Boris Motik -Peter Patel-Schneider -Axel Polleres -- -d:rdf-primer -rdf-primer -10 February 2004 -REC -RDF Primer -https://www.w3.org/TR/rdf-primer/ - - - - -Frank Manola -Eric Miller -- -d:rdf-primer-20020319 -rdf-primer-20020319 -19 March 2002 -WD -RDF Primer -https://www.w3.org/TR/2002/WD-rdf-primer-20020319/ -https://www.w3.org/TR/2002/WD-rdf-primer-20020319/ - - - -Frank Manola -Eric Miller -- -d:rdf-primer-20020426 -rdf-primer-20020426 -26 April 2002 -WD -RDF Primer -https://www.w3.org/TR/2002/WD-rdf-primer-20020426/ -https://www.w3.org/TR/2002/WD-rdf-primer-20020426/ - - - -Frank Manola -Eric Miller -- -d:rdf-primer-20021111 -rdf-primer-20021111 -11 November 2002 +d:rdf-concepts-20021108 +rdf-concepts-20021108 +8 November 2002 WD -RDF Primer -https://www.w3.org/TR/2002/WD-rdf-primer-20021111/ -https://www.w3.org/TR/2002/WD-rdf-primer-20021111/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2002/WD-rdf-concepts-20021108/ +https://www.w3.org/TR/2002/WD-rdf-concepts-20021108/ -Frank Manola -Eric Miller +Graham Klyne +Jeremy Carroll - -d:rdf-primer-20030123 -rdf-primer-20030123 +d:rdf-concepts-20030123 +rdf-concepts-20030123 23 January 2003 WD -RDF Primer -https://www.w3.org/TR/2003/WD-rdf-primer-20030123/ -https://www.w3.org/TR/2003/WD-rdf-primer-20030123/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2003/WD-rdf-concepts-20030123/ +https://www.w3.org/TR/2003/WD-rdf-concepts-20030123/ -Frank Manola -Eric Miller +Graham Klyne +Jeremy Carroll - -d:rdf-primer-20030905 -rdf-primer-20030905 +d:rdf-concepts-20030905 +rdf-concepts-20030905 5 September 2003 WD -RDF Primer -https://www.w3.org/TR/2003/WD-rdf-primer-20030905/ -https://www.w3.org/TR/2003/WD-rdf-primer-20030905/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2003/WD-rdf-concepts-20030905/ +https://www.w3.org/TR/2003/WD-rdf-concepts-20030905/ -Frank Manola -Eric Miller +Graham Klyne +Jeremy Carroll - -d:rdf-primer-20031010 -rdf-primer-20031010 +d:rdf-concepts-20031010 +rdf-concepts-20031010 10 October 2003 WD -RDF Primer -https://www.w3.org/TR/2003/WD-rdf-primer-20031010/ -https://www.w3.org/TR/2003/WD-rdf-primer-20031010/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2003/WD-rdf-concepts-20031010/ +https://www.w3.org/TR/2003/WD-rdf-concepts-20031010/ -Frank Manola -Eric Miller +Graham Klyne +Jeremy Carroll - -d:rdf-primer-20031215 -rdf-primer-20031215 +d:rdf-concepts-20031215 +rdf-concepts-20031215 15 December 2003 PR -RDF Primer -https://www.w3.org/TR/2003/PR-rdf-primer-20031215/ -https://www.w3.org/TR/2003/PR-rdf-primer-20031215/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2003/PR-rdf-concepts-20031215/ +https://www.w3.org/TR/2003/PR-rdf-concepts-20031215/ -Frank Manola -Eric Miller +Graham Klyne +Jeremy Carroll - -d:rdf-primer-20040210 -rdf-primer-20040210 +d:rdf-concepts-20040210 +rdf-concepts-20040210 10 February 2004 REC -RDF Primer -https://www.w3.org/TR/2004/REC-rdf-primer-20040210/ -https://www.w3.org/TR/2004/REC-rdf-primer-20040210/ +Resource Description Framework (RDF): Concepts and Abstract Syntax +https://www.w3.org/TR/2004/REC-rdf-concepts-20040210/ +https://www.w3.org/TR/2004/REC-rdf-concepts-20040210/ -Frank Manola -Eric Miller +Graham Klyne +Jeremy Carroll - -d:rdf-schema -rdf-schema -25 February 2014 -REC -RDF Schema 1.1 -https://www.w3.org/TR/rdf-schema/ +d:rdf-dawg-uc +rdf-dawg-uc +25 March 2005 +WD +RDF Data Access Use Cases and Requirements +https://www.w3.org/TR/rdf-dawg-uc/ -Dan Brickley -Ramanathan Guha +Kendall Clark - -d:rdf-schema-19980409 -rdf-schema-19980409 -9 April 1998 +d:rdf-dawg-uc-20040602 +rdf-dawg-uc-20040602 +2 June 2004 WD -RDF Schema 1.1 -https://www.w3.org/TR/1998/WD-rdf-schema-19980409/ -https://www.w3.org/TR/1998/WD-rdf-schema-19980409/ +RDF Data Access Use Cases and Requirements +https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040602/ +https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040602/ -Dan Brickley -Ramanathan Guha +Kendall Clark - -d:rdf-schema-19980814 -rdf-schema-19980814 -14 August 1998 +d:rdf-dawg-uc-20040802 +rdf-dawg-uc-20040802 +2 August 2004 WD -RDF Schema 1.1 -https://www.w3.org/TR/1998/WD-rdf-schema-19980814/ -https://www.w3.org/TR/1998/WD-rdf-schema-19980814/ +RDF Data Access Use Cases and Requirements +https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040802/ +https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040802/ -Dan Brickley -Ramanathan Guha +Kendall Clark - -d:rdf-schema-19981030 -rdf-schema-19981030 -30 October 1998 +d:rdf-dawg-uc-20041012 +rdf-dawg-uc-20041012 +12 October 2004 WD -RDF Schema 1.1 -https://www.w3.org/TR/1998/WD-rdf-schema-19981030/ -https://www.w3.org/TR/1998/WD-rdf-schema-19981030/ +RDF Data Access Use Cases and Requirements +https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20041012/ +https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20041012/ -Dan Brickley -Ramanathan Guha +Kendall Clark - -d:rdf-schema-19990303 -rdf-schema-19990303 -3 March 1999 -PR -RDF Schema 1.1 -https://www.w3.org/TR/1999/PR-rdf-schema-19990303 -https://www.w3.org/TR/1999/PR-rdf-schema-19990303 +d:rdf-dawg-uc-20050325 +rdf-dawg-uc-20050325 +25 March 2005 +WD +RDF Data Access Use Cases and Requirements +https://www.w3.org/TR/2005/WD-rdf-dawg-uc-20050325/ +https://www.w3.org/TR/2005/WD-rdf-dawg-uc-20050325/ -Dan Brickley -Ramanathan Guha +Kendall Clark - -d:rdf-schema-20000327 -rdf-schema-20000327 -27 March 2000 -CR -RDF Schema 1.1 -https://www.w3.org/TR/2000/CR-rdf-schema-20000327 -https://www.w3.org/TR/2000/CR-rdf-schema-20000327 +d:rdf-interfaces +rdf-interfaces +5 July 2012 +NOTE +RDF Interfaces +https://www.w3.org/TR/rdf-interfaces/ -Dan Brickley -Ramanathan Guha + +Nathan Rixham +Manu Sporny +Benjamin Adrian - -d:rdf-schema-20020430 -rdf-schema-20020430 -30 April 2002 +d:rdf-interfaces-20110510 +rdf-interfaces-20110510 +10 May 2011 WD -RDF Schema 1.1 -https://www.w3.org/TR/2002/WD-rdf-schema-20020430/ -https://www.w3.org/TR/2002/WD-rdf-schema-20020430/ +RDF Interfaces +https://www.w3.org/TR/2011/WD-rdf-interfaces-20110510/ +https://www.w3.org/TR/2011/WD-rdf-interfaces-20110510/ -Dan Brickley -Ramanathan Guha +Nathan Rixham +Manu Sporny +Benjamin Adrian - -d:rdf-schema-20021112 -rdf-schema-20021112 -12 November 2002 -WD -RDF Schema 1.1 -https://www.w3.org/TR/2002/WD-rdf-schema-20021112/ -https://www.w3.org/TR/2002/WD-rdf-schema-20021112/ +d:rdf-interfaces-20120705 +rdf-interfaces-20120705 +5 July 2012 +NOTE +RDF Interfaces +https://www.w3.org/TR/2012/NOTE-rdf-interfaces-20120705/ +https://www.w3.org/TR/2012/NOTE-rdf-interfaces-20120705/ -Dan Brickley -Ramanathan Guha +Nathan Rixham +Manu Sporny +Benjamin Adrian - -d:rdf-schema-20030123 -rdf-schema-20030123 -23 January 2003 -WD -RDF Schema 1.1 -https://www.w3.org/TR/2003/WD-rdf-schema-20030123/ -https://www.w3.org/TR/2003/WD-rdf-schema-20030123/ +d:rdf-json +rdf-json +7 November 2013 +NOTE +RDF 1.1 JSON Alternate Serialization (RDF/JSON) +https://www.w3.org/TR/rdf-json/ -Dan Brickley -Ramanathan Guha + +Ian Davis +Thomas Steiner +Arnaud Le Hors - -d:rdf-schema-20030905 -rdf-schema-20030905 -5 September 2003 +d:rdf-json-20131107 +rdf-json-20131107 +7 November 2013 +NOTE +RDF 1.1 JSON Alternate Serialization (RDF/JSON) +https://www.w3.org/TR/2013/NOTE-rdf-json-20131107/ +https://www.w3.org/TR/2013/NOTE-rdf-json-20131107/ + + + +Ian Davis +Thomas Steiner +Arnaud Le Hors +- +d:rdf-mt +rdf-mt +10 February 2004 +REC +RDF Semantics +https://www.w3.org/TR/rdf-mt/ +https://w3c.github.io/rdf-semantics/spec/ + + + +Patrick Hayes +- +d:rdf-mt-20010925 +rdf-mt-20010925 +25 September 2001 WD -RDF Schema 1.1 -https://www.w3.org/TR/2003/WD-rdf-schema-20030905/ -https://www.w3.org/TR/2003/WD-rdf-schema-20030905/ +RDF Semantics +https://www.w3.org/TR/2001/WD-rdf-mt-20010925/ +https://www.w3.org/TR/2001/WD-rdf-mt-20010925/ -Dan Brickley -Ramanathan Guha +Patrick Hayes - -d:rdf-schema-20031010 -rdf-schema-20031010 -10 October 2003 +d:rdf-mt-20020214 +rdf-mt-20020214 +14 February 2002 WD -RDF Schema 1.1 -https://www.w3.org/TR/2003/WD-rdf-schema-20031010/ -https://www.w3.org/TR/2003/WD-rdf-schema-20031010/ +RDF Semantics +https://www.w3.org/TR/2002/WD-rdf-mt-20020214/ +https://www.w3.org/TR/2002/WD-rdf-mt-20020214/ -Dan Brickley -Ramanathan Guha +Patrick Hayes - -d:rdf-schema-20031215 -rdf-schema-20031215 -15 December 2003 -PR -RDF Schema 1.1 -https://www.w3.org/TR/2003/PR-rdf-schema-20031215/ -https://www.w3.org/TR/2003/PR-rdf-schema-20031215/ +d:rdf-mt-20020429 +rdf-mt-20020429 +29 April 2002 +WD +RDF Semantics +https://www.w3.org/TR/2002/WD-rdf-mt-20020429/ +https://www.w3.org/TR/2002/WD-rdf-mt-20020429/ -Dan Brickley -Ramanathan Guha +Patrick Hayes - -d:rdf-schema-20040210 -rdf-schema-20040210 -10 February 2004 -REC -RDF Vocabulary Description Language 1.0: RDF Schema -https://www.w3.org/TR/2004/REC-rdf-schema-20040210/ -https://www.w3.org/TR/2004/REC-rdf-schema-20040210/ +d:rdf-mt-20021112 +rdf-mt-20021112 +12 November 2002 +WD +RDF Semantics +https://www.w3.org/TR/2002/WD-rdf-mt-20021112/ +https://www.w3.org/TR/2002/WD-rdf-mt-20021112/ -Dan Brickley -Ramanathan Guha +Patrick Hayes - -d:rdf-schema-20140109 -rdf-schema-20140109 -9 January 2014 -PER -RDF Schema 1.1 -https://www.w3.org/TR/2014/PER-rdf-schema-20140109/ -https://www.w3.org/TR/2014/PER-rdf-schema-20140109/ +d:rdf-mt-20030123 +rdf-mt-20030123 +23 January 2003 +WD +RDF Semantics +https://www.w3.org/TR/2003/WD-rdf-mt-20030123/ +https://www.w3.org/TR/2003/WD-rdf-mt-20030123/ -Dan Brickley -Ramanathan Guha +Patrick Hayes - -d:rdf-schema-20140225 -rdf-schema-20140225 -25 February 2014 -REC -RDF Schema 1.1 -https://www.w3.org/TR/2014/REC-rdf-schema-20140225/ -https://www.w3.org/TR/2014/REC-rdf-schema-20140225/ +d:rdf-mt-20030905 +rdf-mt-20030905 +5 September 2003 +WD +RDF Semantics +https://www.w3.org/TR/2003/WD-rdf-mt-20030905/ +https://www.w3.org/TR/2003/WD-rdf-mt-20030905/ -Dan Brickley -Ramanathan Guha +Patrick Hayes - -d:rdf-simple-intro -rdf-simple-intro -13 November 1997 -NOTE -Introduction to RDF Metadata -https://www.w3.org/TR/NOTE-rdf-simple-intro +d:rdf-mt-20031010 +rdf-mt-20031010 +10 October 2003 +WD +RDF Semantics +https://www.w3.org/TR/2003/WD-rdf-mt-20031010/ +https://www.w3.org/TR/2003/WD-rdf-mt-20031010/ +Patrick Hayes +- +d:rdf-mt-20031215 +rdf-mt-20031215 +15 December 2003 +PR +RDF Semantics +https://www.w3.org/TR/2003/PR-rdf-mt-20031215/ +https://www.w3.org/TR/2003/PR-rdf-mt-20031215/ + + +Patrick Hayes - -d:rdf-simple-intro-19971113 -rdf-simple-intro-19971113 -13 November 1997 -NOTE -Introduction to RDF Metadata -https://www.w3.org/TR/NOTE-rdf-simple-intro-971113 -https://www.w3.org/TR/NOTE-rdf-simple-intro-971113 +d:rdf-mt-20040210 +rdf-mt-20040210 +10 February 2004 +REC +RDF Semantics +https://www.w3.org/TR/2004/REC-rdf-mt-20040210/ +https://www.w3.org/TR/2004/REC-rdf-mt-20040210/ +Patrick Hayes - -d:rdf-sparql-json-res -rdf-sparql-json-res -18 June 2007 -NOTE -Serializing SPARQL Query Results in JSON -https://www.w3.org/TR/rdf-sparql-json-res/ +d:rdf-not +RDF-NOT +17 September 1998 +W3C-Internal Document +What the Semantic Web can represent +https://www.w3.org/DesignIssues/RDFnot.html -Kendall Clark -Lee Feigenbaum -Elias Torres +Tim Berners-Lee - -d:rdf-sparql-json-res-20061004 -rdf-sparql-json-res-20061004 -4 October 2006 +d:rdf-pics +rdf-pics +27 March 2000 NOTE -Serializing SPARQL Query Results in JSON -https://www.w3.org/TR/2006/NOTE-rdf-sparql-json-res-20061004/ -https://www.w3.org/TR/2006/NOTE-rdf-sparql-json-res-20061004/ +PICS Rating Vocabularies in XML/RDF +https://www.w3.org/TR/rdf-pics + -Kendall Clark -Lee Feigenbaum -Elias Torres - -d:rdf-sparql-json-res-20070618 -rdf-sparql-json-res-20070618 -18 June 2007 +d:rdf-pics-20000327 +rdf-pics-20000327 +27 March 2000 NOTE -Serializing SPARQL Query Results in JSON -https://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/ -https://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/ +PICS Rating Vocabularies in XML/RDF +https://www.w3.org/TR/2000/NOTE-rdf-pics-20000327 +https://www.w3.org/TR/2000/NOTE-rdf-pics-20000327 -Kendall Clark -Lee Feigenbaum -Elias Torres - -d:rdf-sparql-protocol -rdf-sparql-protocol -15 January 2008 +d:rdf-plain-literal +rdf-plain-literal +11 December 2012 REC -SPARQL Protocol for RDF -https://www.w3.org/TR/rdf-sparql-protocol/ +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/rdf-plain-literal/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20050114 -rdf-sparql-protocol-20050114 -14 January 2005 +d:rdf-plain-literal-20081202 +rdf-plain-literal-20081202 +2 December 2008 WD -SPARQL Protocol for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050114/ -https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050114/ +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/2008/WD-rdf-text-20081202/ +https://www.w3.org/TR/2008/WD-rdf-text-20081202/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20050527 -rdf-sparql-protocol-20050527 -27 May 2005 +d:rdf-plain-literal-20090421 +rdf-plain-literal-20090421 +21 April 2009 WD -SPARQL Protocol for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050527/ -https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050527/ +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/2009/WD-rdf-text-20090421/ +https://www.w3.org/TR/2009/WD-rdf-text-20090421/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20050914 -rdf-sparql-protocol-20050914 -14 September 2005 -WD -SPARQL Protocol for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050914/ -https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050914/ +d:rdf-plain-literal-20090611 +rdf-plain-literal-20090611 +11 June 2009 +CR +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/2009/CR-rdf-plain-literal-20090611/ +https://www.w3.org/TR/2009/CR-rdf-plain-literal-20090611/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20060125 -rdf-sparql-protocol-20060125 -25 January 2006 -WD -SPARQL Protocol for RDF -https://www.w3.org/TR/2006/WD-rdf-sparql-protocol-20060125/ -https://www.w3.org/TR/2006/WD-rdf-sparql-protocol-20060125/ +d:rdf-plain-literal-20090922 +rdf-plain-literal-20090922 +22 September 2009 +PR +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/2009/PR-rdf-plain-literal-20090922/ +https://www.w3.org/TR/2009/PR-rdf-plain-literal-20090922/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20060406 -rdf-sparql-protocol-20060406 -6 April 2006 -CR -SPARQL Protocol for RDF -https://www.w3.org/TR/2006/CR-rdf-sparql-protocol-20060406/ -https://www.w3.org/TR/2006/CR-rdf-sparql-protocol-20060406/ +d:rdf-plain-literal-20091027 +rdf-plain-literal-20091027 +27 October 2009 +REC +rdf:PlainLiteral: A Datatype for RDF Plain Literals +https://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/ +https://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20071112 -rdf-sparql-protocol-20071112 -12 November 2007 -PR -SPARQL Protocol for RDF -https://www.w3.org/TR/2007/PR-rdf-sparql-protocol-20071112/ -https://www.w3.org/TR/2007/PR-rdf-sparql-protocol-20071112/ +d:rdf-plain-literal-20121018 +rdf-plain-literal-20121018 +18 October 2012 +PER +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/2012/PER-rdf-plain-literal-20121018/ +https://www.w3.org/TR/2012/PER-rdf-plain-literal-20121018/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-protocol-20080115 -rdf-sparql-protocol-20080115 -15 January 2008 +d:rdf-plain-literal-20121211 +rdf-plain-literal-20121211 +11 December 2012 REC -SPARQL Protocol for RDF -https://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/ -https://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/ +rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition) +https://www.w3.org/TR/2012/REC-rdf-plain-literal-20121211/ +https://www.w3.org/TR/2012/REC-rdf-plain-literal-20121211/ -Kendall Clark -Lee Feigenbaum -Elias Torres +Jie Bao +Sandro Hawke +Boris Motik +Peter Patel-Schneider +Axel Polleres - -d:rdf-sparql-query -rdf-sparql-query -15 January 2008 +d:rdf-primer +rdf-primer +10 February 2004 REC -SPARQL Query Language for RDF -https://www.w3.org/TR/rdf-sparql-query/ - +RDF Primer +https://www.w3.org/TR/rdf-primer/ +https://w3c.github.io/rdf-primer/spec/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20041012 -rdf-sparql-query-20041012 -12 October 2004 +d:rdf-primer-20020319 +rdf-primer-20020319 +19 March 2002 WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2004/WD-rdf-sparql-query-20041012/ -https://www.w3.org/TR/2004/WD-rdf-sparql-query-20041012/ +RDF Primer +https://www.w3.org/TR/2002/WD-rdf-primer-20020319/ +https://www.w3.org/TR/2002/WD-rdf-primer-20020319/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20050217 -rdf-sparql-query-20050217 -17 February 2005 +d:rdf-primer-20020426 +rdf-primer-20020426 +26 April 2002 WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050217/ -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050217/ +RDF Primer +https://www.w3.org/TR/2002/WD-rdf-primer-20020426/ +https://www.w3.org/TR/2002/WD-rdf-primer-20020426/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20050419 -rdf-sparql-query-20050419 -19 April 2005 +d:rdf-primer-20021111 +rdf-primer-20021111 +11 November 2002 WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050419/ -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050419/ +RDF Primer +https://www.w3.org/TR/2002/WD-rdf-primer-20021111/ +https://www.w3.org/TR/2002/WD-rdf-primer-20021111/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20050721 -rdf-sparql-query-20050721 -21 July 2005 +d:rdf-primer-20030123 +rdf-primer-20030123 +23 January 2003 WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/ -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/ +RDF Primer +https://www.w3.org/TR/2003/WD-rdf-primer-20030123/ +https://www.w3.org/TR/2003/WD-rdf-primer-20030123/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20051123 -rdf-sparql-query-20051123 -23 November 2005 +d:rdf-primer-20030905 +rdf-primer-20030905 +5 September 2003 WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20051123/ -https://www.w3.org/TR/2005/WD-rdf-sparql-query-20051123/ +RDF Primer +https://www.w3.org/TR/2003/WD-rdf-primer-20030905/ +https://www.w3.org/TR/2003/WD-rdf-primer-20030905/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20060220 -rdf-sparql-query-20060220 -20 February 2006 +d:rdf-primer-20031010 +rdf-primer-20031010 +10 October 2003 WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2006/WD-rdf-sparql-query-20060220/ -https://www.w3.org/TR/2006/WD-rdf-sparql-query-20060220/ +RDF Primer +https://www.w3.org/TR/2003/WD-rdf-primer-20031010/ +https://www.w3.org/TR/2003/WD-rdf-primer-20031010/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20060406 -rdf-sparql-query-20060406 -6 April 2006 -CR -SPARQL Query Language for RDF -https://www.w3.org/TR/2006/CR-rdf-sparql-query-20060406/ -https://www.w3.org/TR/2006/CR-rdf-sparql-query-20060406/ +d:rdf-primer-20031215 +rdf-primer-20031215 +15 December 2003 +PR +RDF Primer +https://www.w3.org/TR/2003/PR-rdf-primer-20031215/ +https://www.w3.org/TR/2003/PR-rdf-primer-20031215/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20061004 -rdf-sparql-query-20061004 -4 October 2006 -WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2006/WD-rdf-sparql-query-20061004/ -https://www.w3.org/TR/2006/WD-rdf-sparql-query-20061004/ +d:rdf-primer-20040210 +rdf-primer-20040210 +10 February 2004 +REC +RDF Primer +https://www.w3.org/TR/2004/REC-rdf-primer-20040210/ +https://www.w3.org/TR/2004/REC-rdf-primer-20040210/ -Eric Prud'hommeaux -Andy Seaborne +Frank Manola +Eric Miller - -d:rdf-sparql-query-20070326 -rdf-sparql-query-20070326 -26 March 2007 -WD -SPARQL Query Language for RDF -https://www.w3.org/TR/2007/WD-rdf-sparql-query-20070326/ -https://www.w3.org/TR/2007/WD-rdf-sparql-query-20070326/ +d:rdf-schema +rdf-schema +25 February 2014 +REC +RDF Schema 1.1 +https://www.w3.org/TR/rdf-schema/ +https://w3c.github.io/rdf-schema/spec/ -Eric Prud'hommeaux -Andy Seaborne +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-query-20070614 -rdf-sparql-query-20070614 -14 June 2007 -CR -SPARQL Query Language for RDF -https://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/ -https://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/ +d:rdf-schema-19980409 +rdf-schema-19980409 +9 April 1998 +WD +RDF Schema 1.1 +https://www.w3.org/TR/1998/WD-rdf-schema-19980409/ +https://www.w3.org/TR/1998/WD-rdf-schema-19980409/ -Eric Prud'hommeaux -Andy Seaborne +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-query-20071112 -rdf-sparql-query-20071112 -12 November 2007 -PR -SPARQL Query Language for RDF -https://www.w3.org/TR/2007/PR-rdf-sparql-query-20071112/ -https://www.w3.org/TR/2007/PR-rdf-sparql-query-20071112/ +d:rdf-schema-19980814 +rdf-schema-19980814 +14 August 1998 +WD +RDF Schema 1.1 +https://www.w3.org/TR/1998/WD-rdf-schema-19980814/ +https://www.w3.org/TR/1998/WD-rdf-schema-19980814/ -Eric Prud'hommeaux -Andy Seaborne +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-query-20080115 -rdf-sparql-query-20080115 -15 January 2008 -REC -SPARQL Query Language for RDF -https://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/ -https://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/ +d:rdf-schema-19981030 +rdf-schema-19981030 +30 October 1998 +WD +RDF Schema 1.1 +https://www.w3.org/TR/1998/WD-rdf-schema-19981030/ +https://www.w3.org/TR/1998/WD-rdf-schema-19981030/ -Eric Prud'hommeaux -Andy Seaborne -- -a:rdf-sparql-update -RDF-SPARQL-UPDATE -sparql11-update -- -a:rdf-sparql-update-20091022 -RDF-SPARQL-UPDATE-20091022 -sparql11-update-20091022 -- -a:rdf-sparql-update-20100126 -RDF-SPARQL-UPDATE-20100126 -sparql11-update-20100126 -- -a:rdf-sparql-update-20100601 -RDF-SPARQL-UPDATE-20100601 -sparql11-update-20100601 -- -a:rdf-sparql-update-20101014 -RDF-SPARQL-UPDATE-20101014 -sparql11-update-20101014 -- -a:rdf-sparql-update-20110512 -RDF-SPARQL-UPDATE-20110512 -sparql11-update-20110512 -- -a:rdf-sparql-update-20120105 -RDF-SPARQL-UPDATE-20120105 -sparql11-update-20120105 -- -a:rdf-sparql-update-20121108 -RDF-SPARQL-UPDATE-20121108 -sparql11-update-20121108 -- -a:rdf-sparql-update-20130321 -RDF-SPARQL-UPDATE-20130321 -sparql11-update-20130321 +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres -rdf-sparql-XMLres -21 March 2013 -REC -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/rdf-sparql-XMLres/ - +d:rdf-schema-19990303 +rdf-schema-19990303 +3 March 1999 +PR +RDF Schema 1.1 +https://www.w3.org/TR/1999/PR-rdf-schema-19990303 +https://www.w3.org/TR/1999/PR-rdf-schema-19990303 -Dave Beckett -Jeen Broekstra +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres-20041221 -rdf-sparql-XMLres-20041221 -21 December 2004 -WD -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2004/WD-rdf-sparql-XMLres-20041221/ -https://www.w3.org/TR/2004/WD-rdf-sparql-XMLres-20041221/ +d:rdf-schema-20000327 +rdf-schema-20000327 +27 March 2000 +CR +RDF Schema 1.1 +https://www.w3.org/TR/2000/CR-rdf-schema-20000327 +https://www.w3.org/TR/2000/CR-rdf-schema-20000327 -Dave Beckett -Jeen Broekstra +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres-20050527 -rdf-sparql-XMLres-20050527 -27 May 2005 +d:rdf-schema-20020430 +rdf-schema-20020430 +30 April 2002 WD -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050527/ -https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050527/ +RDF Schema 1.1 +https://www.w3.org/TR/2002/WD-rdf-schema-20020430/ +https://www.w3.org/TR/2002/WD-rdf-schema-20020430/ -Dave Beckett -Jeen Broekstra +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres-20050801 -rdf-sparql-XMLres-20050801 -1 August 2005 +d:rdf-schema-20021112 +rdf-schema-20021112 +12 November 2002 WD -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050801/ -https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050801/ +RDF Schema 1.1 +https://www.w3.org/TR/2002/WD-rdf-schema-20021112/ +https://www.w3.org/TR/2002/WD-rdf-schema-20021112/ -Dave Beckett -Jeen Broekstra +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres-20060125 -rdf-sparql-XMLres-20060125 -25 January 2006 +d:rdf-schema-20030123 +rdf-schema-20030123 +23 January 2003 WD -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2006/WD-rdf-sparql-XMLres-20060125/ -https://www.w3.org/TR/2006/WD-rdf-sparql-XMLres-20060125/ +RDF Schema 1.1 +https://www.w3.org/TR/2003/WD-rdf-schema-20030123/ +https://www.w3.org/TR/2003/WD-rdf-schema-20030123/ -Dave Beckett -Jeen Broekstra +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres-20060406 -rdf-sparql-XMLres-20060406 -6 April 2006 -CR -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2006/CR-rdf-sparql-XMLres-20060406/ -https://www.w3.org/TR/2006/CR-rdf-sparql-XMLres-20060406/ +d:rdf-schema-20030905 +rdf-schema-20030905 +5 September 2003 +WD +RDF Schema 1.1 +https://www.w3.org/TR/2003/WD-rdf-schema-20030905/ +https://www.w3.org/TR/2003/WD-rdf-schema-20030905/ -Dave Beckett -Jeen Broekstra +Dan Brickley +Ramanathan Guha - -d:rdf-sparql-xmlres-20070614 +d:rdf-schema-20031010 +rdf-schema-20031010 +10 October 2003 +WD +RDF Schema 1.1 +https://www.w3.org/TR/2003/WD-rdf-schema-20031010/ +https://www.w3.org/TR/2003/WD-rdf-schema-20031010/ + + + +Dan Brickley +Ramanathan Guha +- +d:rdf-schema-20031215 +rdf-schema-20031215 +15 December 2003 +PR +RDF Schema 1.1 +https://www.w3.org/TR/2003/PR-rdf-schema-20031215/ +https://www.w3.org/TR/2003/PR-rdf-schema-20031215/ + + + +Dan Brickley +Ramanathan Guha +- +d:rdf-schema-20040210 +rdf-schema-20040210 +10 February 2004 +REC +RDF Vocabulary Description Language 1.0: RDF Schema +https://www.w3.org/TR/2004/REC-rdf-schema-20040210/ +https://www.w3.org/TR/2004/REC-rdf-schema-20040210/ + + + +Dan Brickley +Ramanathan Guha +- +d:rdf-schema-20140109 +rdf-schema-20140109 +9 January 2014 +PER +RDF Schema 1.1 +https://www.w3.org/TR/2014/PER-rdf-schema-20140109/ +https://www.w3.org/TR/2014/PER-rdf-schema-20140109/ + + + +Dan Brickley +Ramanathan Guha +- +d:rdf-schema-20140225 +rdf-schema-20140225 +25 February 2014 +REC +RDF Schema 1.1 +https://www.w3.org/TR/2014/REC-rdf-schema-20140225/ +https://www.w3.org/TR/2014/REC-rdf-schema-20140225/ + + + +Dan Brickley +Ramanathan Guha +- +d:rdf-simple-intro +rdf-simple-intro +13 November 1997 +NOTE +Introduction to RDF Metadata +https://www.w3.org/TR/NOTE-rdf-simple-intro + + + + +- +d:rdf-simple-intro-19971113 +rdf-simple-intro-19971113 +13 November 1997 +NOTE +Introduction to RDF Metadata +https://www.w3.org/TR/NOTE-rdf-simple-intro-971113 +https://www.w3.org/TR/NOTE-rdf-simple-intro-971113 + + + +- +d:rdf-sparql-json-res +rdf-sparql-json-res +18 June 2007 +NOTE +Serializing SPARQL Query Results in JSON +https://www.w3.org/TR/rdf-sparql-json-res/ + + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-json-res-20061004 +rdf-sparql-json-res-20061004 +4 October 2006 +NOTE +Serializing SPARQL Query Results in JSON +https://www.w3.org/TR/2006/NOTE-rdf-sparql-json-res-20061004/ +https://www.w3.org/TR/2006/NOTE-rdf-sparql-json-res-20061004/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-json-res-20070618 +rdf-sparql-json-res-20070618 +18 June 2007 +NOTE +Serializing SPARQL Query Results in JSON +https://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/ +https://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol +rdf-sparql-protocol +15 January 2008 +REC +SPARQL Protocol for RDF +https://www.w3.org/TR/rdf-sparql-protocol/ +https://w3c.github.io/sparql-protocol/spec/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20050114 +rdf-sparql-protocol-20050114 +14 January 2005 +WD +SPARQL Protocol for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050114/ +https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050114/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20050527 +rdf-sparql-protocol-20050527 +27 May 2005 +WD +SPARQL Protocol for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050527/ +https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050527/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20050914 +rdf-sparql-protocol-20050914 +14 September 2005 +WD +SPARQL Protocol for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050914/ +https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050914/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20060125 +rdf-sparql-protocol-20060125 +25 January 2006 +WD +SPARQL Protocol for RDF +https://www.w3.org/TR/2006/WD-rdf-sparql-protocol-20060125/ +https://www.w3.org/TR/2006/WD-rdf-sparql-protocol-20060125/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20060406 +rdf-sparql-protocol-20060406 +6 April 2006 +CR +SPARQL Protocol for RDF +https://www.w3.org/TR/2006/CR-rdf-sparql-protocol-20060406/ +https://www.w3.org/TR/2006/CR-rdf-sparql-protocol-20060406/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20071112 +rdf-sparql-protocol-20071112 +12 November 2007 +PR +SPARQL Protocol for RDF +https://www.w3.org/TR/2007/PR-rdf-sparql-protocol-20071112/ +https://www.w3.org/TR/2007/PR-rdf-sparql-protocol-20071112/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-protocol-20080115 +rdf-sparql-protocol-20080115 +15 January 2008 +REC +SPARQL Protocol for RDF +https://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/ +https://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/ + + + +Kendall Clark +Lee Feigenbaum +Elias Torres +- +d:rdf-sparql-query +rdf-sparql-query +15 January 2008 +REC +SPARQL Query Language for RDF +https://www.w3.org/TR/rdf-sparql-query/ +https://w3c.github.io/sparql-query/spec/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20041012 +rdf-sparql-query-20041012 +12 October 2004 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2004/WD-rdf-sparql-query-20041012/ +https://www.w3.org/TR/2004/WD-rdf-sparql-query-20041012/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20050217 +rdf-sparql-query-20050217 +17 February 2005 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050217/ +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050217/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20050419 +rdf-sparql-query-20050419 +19 April 2005 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050419/ +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050419/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20050721 +rdf-sparql-query-20050721 +21 July 2005 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/ +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20051123 +rdf-sparql-query-20051123 +23 November 2005 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20051123/ +https://www.w3.org/TR/2005/WD-rdf-sparql-query-20051123/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20060220 +rdf-sparql-query-20060220 +20 February 2006 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2006/WD-rdf-sparql-query-20060220/ +https://www.w3.org/TR/2006/WD-rdf-sparql-query-20060220/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20060406 +rdf-sparql-query-20060406 +6 April 2006 +CR +SPARQL Query Language for RDF +https://www.w3.org/TR/2006/CR-rdf-sparql-query-20060406/ +https://www.w3.org/TR/2006/CR-rdf-sparql-query-20060406/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20061004 +rdf-sparql-query-20061004 +4 October 2006 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2006/WD-rdf-sparql-query-20061004/ +https://www.w3.org/TR/2006/WD-rdf-sparql-query-20061004/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20070326 +rdf-sparql-query-20070326 +26 March 2007 +WD +SPARQL Query Language for RDF +https://www.w3.org/TR/2007/WD-rdf-sparql-query-20070326/ +https://www.w3.org/TR/2007/WD-rdf-sparql-query-20070326/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20070614 +rdf-sparql-query-20070614 +14 June 2007 +CR +SPARQL Query Language for RDF +https://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/ +https://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20071112 +rdf-sparql-query-20071112 +12 November 2007 +PR +SPARQL Query Language for RDF +https://www.w3.org/TR/2007/PR-rdf-sparql-query-20071112/ +https://www.w3.org/TR/2007/PR-rdf-sparql-query-20071112/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +d:rdf-sparql-query-20080115 +rdf-sparql-query-20080115 +15 January 2008 +REC +SPARQL Query Language for RDF +https://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/ +https://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/ + + + +Eric Prud'hommeaux +Andy Seaborne +- +a:rdf-sparql-update +RDF-SPARQL-UPDATE +sparql11-update +- +a:rdf-sparql-update-20091022 +RDF-SPARQL-UPDATE-20091022 +sparql11-update-20091022 +- +a:rdf-sparql-update-20100126 +RDF-SPARQL-UPDATE-20100126 +sparql11-update-20100126 +- +a:rdf-sparql-update-20100601 +RDF-SPARQL-UPDATE-20100601 +sparql11-update-20100601 +- +a:rdf-sparql-update-20101014 +RDF-SPARQL-UPDATE-20101014 +sparql11-update-20101014 +- +a:rdf-sparql-update-20110512 +RDF-SPARQL-UPDATE-20110512 +sparql11-update-20110512 +- +a:rdf-sparql-update-20120105 +RDF-SPARQL-UPDATE-20120105 +sparql11-update-20120105 +- +a:rdf-sparql-update-20121108 +RDF-SPARQL-UPDATE-20121108 +sparql11-update-20121108 +- +a:rdf-sparql-update-20130321 +RDF-SPARQL-UPDATE-20130321 +sparql11-update-20130321 +- +d:rdf-sparql-xmlres +rdf-sparql-XMLres +21 March 2013 +REC +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/rdf-sparql-XMLres/ +https://w3c.github.io/sparql-results-xml/spec/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20041221 +rdf-sparql-XMLres-20041221 +21 December 2004 +WD +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2004/WD-rdf-sparql-XMLres-20041221/ +https://www.w3.org/TR/2004/WD-rdf-sparql-XMLres-20041221/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20050527 +rdf-sparql-XMLres-20050527 +27 May 2005 +WD +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050527/ +https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050527/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20050801 +rdf-sparql-XMLres-20050801 +1 August 2005 +WD +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050801/ +https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050801/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20060125 +rdf-sparql-XMLres-20060125 +25 January 2006 +WD +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2006/WD-rdf-sparql-XMLres-20060125/ +https://www.w3.org/TR/2006/WD-rdf-sparql-XMLres-20060125/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20060406 +rdf-sparql-XMLres-20060406 +6 April 2006 +CR +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2006/CR-rdf-sparql-XMLres-20060406/ +https://www.w3.org/TR/2006/CR-rdf-sparql-XMLres-20060406/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20070614 rdf-sparql-XMLres-20070614 14 June 2007 WD -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2007/WD-rdf-sparql-XMLres-20070614/ -https://www.w3.org/TR/2007/WD-rdf-sparql-XMLres-20070614/ +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2007/WD-rdf-sparql-XMLres-20070614/ +https://www.w3.org/TR/2007/WD-rdf-sparql-XMLres-20070614/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20070925 +rdf-sparql-XMLres-20070925 +25 September 2007 +CR +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/ +https://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20071112 +rdf-sparql-XMLres-20071112 +12 November 2007 +PR +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2007/PR-rdf-sparql-XMLres-20071112/ +https://www.w3.org/TR/2007/PR-rdf-sparql-XMLres-20071112/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20080115 +rdf-sparql-XMLres-20080115 +15 January 2008 +REC +SPARQL Query Results XML Format +https://www.w3.org/TR/2008/REC-rdf-sparql-XMLres-20080115/ +https://www.w3.org/TR/2008/REC-rdf-sparql-XMLres-20080115/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20121108 +rdf-sparql-XMLres-20121108 +8 November 2012 +PER +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2012/PER-rdf-sparql-XMLres-20121108/ +https://www.w3.org/TR/2012/PER-rdf-sparql-XMLres-20121108/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-sparql-xmlres-20130321 +rdf-sparql-XMLres-20130321 +21 March 2013 +REC +SPARQL Query Results XML Format (Second Edition) +https://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/ +https://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/ + + + +Dave Beckett +Jeen Broekstra +- +d:rdf-star-foundation +RDF-STAR-FOUNDATION +June 2017 + +Foundations of RDF* and SPARQL* - An Alternative Approach to Statement-Level Metadata in RDF. +http://ceur-ws.org/Vol-1912/paper12.pdf + + + + +Olaf Hartig +- +a:rdf-syntax +RDF-SYNTAX +rdf-concepts +- +a:rdf-syntax-20020829 +RDF-SYNTAX-20020829 +rdf-concepts-20020829 +- +a:rdf-syntax-20021108 +RDF-SYNTAX-20021108 +rdf-concepts-20021108 +- +a:rdf-syntax-20030123 +RDF-SYNTAX-20030123 +rdf-concepts-20030123 +- +a:rdf-syntax-20030905 +RDF-SYNTAX-20030905 +rdf-concepts-20030905 +- +a:rdf-syntax-20031010 +RDF-SYNTAX-20031010 +rdf-concepts-20031010 +- +a:rdf-syntax-20031215 +RDF-SYNTAX-20031215 +rdf-concepts-20031215 +- +a:rdf-syntax-20040210 +RDF-SYNTAX-20040210 +rdf-concepts-20040210 +- +d:rdf-syntax-grammar +rdf-syntax-grammar +25 February 2014 +REC +RDF 1.1 XML Syntax +https://www.w3.org/TR/rdf-syntax-grammar/ +https://w3c.github.io/rdf-xml/spec/ +rdf-testcases + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19971002 +rdf-syntax-grammar-19971002 +2 October 1997 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/WD-rdf-syntax-971002 +https://www.w3.org/TR/WD-rdf-syntax-971002 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19980216 +rdf-syntax-grammar-19980216 +16 February 1998 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/1998/WD-rdf-syntax-19980216 +https://www.w3.org/TR/1998/WD-rdf-syntax-19980216 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19980720 +rdf-syntax-grammar-19980720 +20 July 1998 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/1998/WD-rdf-syntax-19980720 +https://www.w3.org/TR/1998/WD-rdf-syntax-19980720 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19980819 +rdf-syntax-grammar-19980819 +19 August 1998 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/1998/WD-rdf-syntax-19980819 +https://www.w3.org/TR/1998/WD-rdf-syntax-19980819 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19981008 +rdf-syntax-grammar-19981008 +8 October 1998 +WD +RDF 1.1 XML Syntax +https://www.w3.org/1998/10/WD-rdf-syntax-19981008 +https://www.w3.org/1998/10/WD-rdf-syntax-19981008 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19990105 +rdf-syntax-grammar-19990105 +5 January 1999 +PR +RDF 1.1 XML Syntax +https://www.w3.org/TR/1999/PR-rdf-syntax-19990105 +https://www.w3.org/TR/1999/PR-rdf-syntax-19990105 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-19990222 +rdf-syntax-grammar-19990222 +22 February 1999 +REC +Resource Description Framework (RDF) Model and Syntax Specification +https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/ +https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/ +rdf-primer + + +Ora Lassila +- +d:rdf-syntax-grammar-20010906 +rdf-syntax-grammar-20010906 +6 September 2001 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20010906 +https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20010906 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20011218 +rdf-syntax-grammar-20011218 +18 December 2001 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20011218 +https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20011218 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20020325 +rdf-syntax-grammar-20020325 +25 March 2002 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20020325 +https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20020325 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20021108 +rdf-syntax-grammar-20021108 +8 November 2002 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20021108 +https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20021108 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20030123 +rdf-syntax-grammar-20030123 +23 January 2003 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030123 +https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030123 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20030905 +rdf-syntax-grammar-20030905 +5 September 2003 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030905 +https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030905 +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20031010 +rdf-syntax-grammar-20031010 +10 October 2003 +WD +RDF 1.1 XML Syntax +https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20031010/ +https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20031010/ +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20031215 +rdf-syntax-grammar-20031215 +15 December 2003 +PR +RDF 1.1 XML Syntax +https://www.w3.org/TR/2003/PR-rdf-syntax-grammar-20031215/ +https://www.w3.org/TR/2003/PR-rdf-syntax-grammar-20031215/ +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20040210 +rdf-syntax-grammar-20040210 +10 February 2004 +REC +RDF/XML Syntax Specification (Revised) +https://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ +https://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ +rdf-primer + + +Dave Beckett +- +d:rdf-syntax-grammar-20140109 +rdf-syntax-grammar-20140109 +9 January 2014 +PER +RDF 1.1 XML Syntax +https://www.w3.org/TR/2014/PER-rdf-syntax-grammar-20140109/ +https://www.w3.org/TR/2014/PER-rdf-syntax-grammar-20140109/ +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-syntax-grammar-20140225 +rdf-syntax-grammar-20140225 +25 February 2014 +REC +RDF 1.1 XML Syntax +https://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/ +https://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/ +rdf-primer + + +Fabien Gandon +Guus Schreiber +- +d:rdf-testcases +rdf-testcases +10 February 2004 +REC +RDF Test Cases +https://www.w3.org/TR/rdf-testcases/ + + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20010912 +rdf-testcases-20010912 +12 September 2001 +WD +RDF Test Cases +https://www.w3.org/TR/2001/WD-rdf-testcases-20010912/ +https://www.w3.org/TR/2001/WD-rdf-testcases-20010912/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20011115 +rdf-testcases-20011115 +15 November 2001 +WD +RDF Test Cases +https://www.w3.org/TR/2001/WD-rdf-testcases-20011115/ +https://www.w3.org/TR/2001/WD-rdf-testcases-20011115/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20020429 +rdf-testcases-20020429 +29 April 2002 +WD +RDF Test Cases +https://www.w3.org/TR/2002/WD-rdf-testcases-20020429 +https://www.w3.org/TR/2002/WD-rdf-testcases-20020429 + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20021112 +rdf-testcases-20021112 +12 November 2002 +WD +RDF Test Cases +https://www.w3.org/TR/2002/WD-rdf-testcases-20021112/ +https://www.w3.org/TR/2002/WD-rdf-testcases-20021112/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20030123 +rdf-testcases-20030123 +23 January 2003 +WD +RDF Test Cases +https://www.w3.org/TR/2003/WD-rdf-testcases-20030123/ +https://www.w3.org/TR/2003/WD-rdf-testcases-20030123/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20030905 +rdf-testcases-20030905 +5 September 2003 +WD +RDF Test Cases +https://www.w3.org/TR/2003/WD-rdf-testcases-20030905/ +https://www.w3.org/TR/2003/WD-rdf-testcases-20030905/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20031010 +rdf-testcases-20031010 +10 October 2003 +WD +RDF Test Cases +https://www.w3.org/TR/2003/WD-rdf-testcases-20031010/ +https://www.w3.org/TR/2003/WD-rdf-testcases-20031010/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20031215 +rdf-testcases-20031215 +15 December 2003 +PR +RDF Test Cases +https://www.w3.org/TR/2003/PR-rdf-testcases-20031215/ +https://www.w3.org/TR/2003/PR-rdf-testcases-20031215/ + + + +jan grant +Dave Beckett +- +d:rdf-testcases-20040210 +rdf-testcases-20040210 +10 February 2004 +REC +RDF Test Cases +https://www.w3.org/TR/2004/REC-rdf-testcases-20040210/ +https://www.w3.org/TR/2004/REC-rdf-testcases-20040210/ + + + +jan grant +Dave Beckett +- +a:rdf-text +rdf-text +rdf-plain-literal +- +a:rdf-text-20081202 +rdf-text-20081202 +rdf-plain-literal-20081202 +- +a:rdf-text-20090421 +rdf-text-20090421 +rdf-plain-literal-20090421 +- +a:rdf-text-20090611 +rdf-text-20090611 +rdf-plain-literal-20090611 +- +a:rdf-text-20090922 +rdf-text-20090922 +rdf-plain-literal-20090922 +- +a:rdf-text-20091027 +rdf-text-20091027 +rdf-plain-literal-20091027 +- +a:rdf-text-20121018 +rdf-text-20121018 +rdf-plain-literal-20121018 +- +a:rdf-text-20121211 +rdf-text-20121211 +rdf-plain-literal-20121211 +- +d:rdf-uml +rdf-uml +4 August 1998 +NOTE +A Discussion of the Relationship Between RDF-Schema and UML +https://www.w3.org/TR/NOTE-rdf-uml/ + + + + +Walter W. Chang +- +d:rdf-uml-19980804 +rdf-uml-19980804 +4 August 1998 +NOTE +A Discussion of the Relationship Between RDF-Schema and UML +https://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/ +https://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/ + + + +Walter W. Chang +- +a:rdf-xml +RDF-XML +rdf-syntax-grammar +- +a:rdf-xml-19971002 +RDF-XML-19971002 +rdf-syntax-grammar-19971002 +- +a:rdf-xml-19980216 +RDF-XML-19980216 +rdf-syntax-grammar-19980216 +- +a:rdf-xml-19980720 +RDF-XML-19980720 +rdf-syntax-grammar-19980720 +- +a:rdf-xml-19980819 +RDF-XML-19980819 +rdf-syntax-grammar-19980819 +- +a:rdf-xml-19981008 +RDF-XML-19981008 +rdf-syntax-grammar-19981008 +- +a:rdf-xml-19990105 +RDF-XML-19990105 +rdf-syntax-grammar-19990105 +- +a:rdf-xml-19990222 +RDF-XML-19990222 +rdf-syntax-grammar-19990222 +- +a:rdf-xml-20010906 +RDF-XML-20010906 +rdf-syntax-grammar-20010906 +- +a:rdf-xml-20011218 +RDF-XML-20011218 +rdf-syntax-grammar-20011218 +- +a:rdf-xml-20020325 +RDF-XML-20020325 +rdf-syntax-grammar-20020325 +- +a:rdf-xml-20021108 +RDF-XML-20021108 +rdf-syntax-grammar-20021108 +- +a:rdf-xml-20030123 +RDF-XML-20030123 +rdf-syntax-grammar-20030123 +- +a:rdf-xml-20030905 +RDF-XML-20030905 +rdf-syntax-grammar-20030905 +- +a:rdf-xml-20031010 +RDF-XML-20031010 +rdf-syntax-grammar-20031010 +- +a:rdf-xml-20031215 +RDF-XML-20031215 +rdf-syntax-grammar-20031215 +- +a:rdf-xml-20040210 +RDF-XML-20040210 +rdf-syntax-grammar-20040210 +- +a:rdf-xml-20140109 +RDF-XML-20140109 +rdf-syntax-grammar-20140109 +- +a:rdf-xml-20140225 +RDF-XML-20140225 +rdf-syntax-grammar-20140225 +- +d:rdf11-concepts +rdf11-concepts +25 February 2014 +REC +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/rdf11-concepts/ +https://w3c.github.io/rdf-concepts/spec/ + + + +Richard Cyganiak +David Wood +Markus Lanthaler +- +d:rdf11-concepts-20110830 +rdf11-concepts-20110830 +30 August 2011 +WD +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2011/WD-rdf11-concepts-20110830/ +https://www.w3.org/TR/2011/WD-rdf11-concepts-20110830/ + + + +Richard Cyganiak +David Wood +Markus Lanthaler +- +d:rdf11-concepts-20120605 +rdf11-concepts-20120605 +5 June 2012 +WD +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2012/WD-rdf11-concepts-20120605/ +https://www.w3.org/TR/2012/WD-rdf11-concepts-20120605/ + + + +Richard Cyganiak +David Wood +Markus Lanthaler +- +d:rdf11-concepts-20130115 +rdf11-concepts-20130115 +15 January 2013 +WD +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2013/WD-rdf11-concepts-20130115/ +https://www.w3.org/TR/2013/WD-rdf11-concepts-20130115/ + + + +Richard Cyganiak +David Wood +- +d:rdf11-concepts-20130723 +rdf11-concepts-20130723 +23 July 2013 +LCWD +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/ +https://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/ + + + +Richard Cyganiak +David Wood +- +d:rdf11-concepts-20131105 +rdf11-concepts-20131105 +5 November 2013 +CR +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2013/CR-rdf11-concepts-20131105/ +https://www.w3.org/TR/2013/CR-rdf11-concepts-20131105/ + + + +Richard Cyganiak +David Wood +Markus Lanthaler +- +d:rdf11-concepts-20140109 +rdf11-concepts-20140109 +9 January 2014 +PR +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2014/PR-rdf11-concepts-20140109/ +https://www.w3.org/TR/2014/PR-rdf11-concepts-20140109/ + + + +Richard Cyganiak +David Wood +Markus Lanthaler +- +d:rdf11-concepts-20140225 +rdf11-concepts-20140225 +25 February 2014 +REC +RDF 1.1 Concepts and Abstract Syntax +https://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/ +https://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/ + + + +Richard Cyganiak +David Wood +Markus Lanthaler +- +d:rdf11-datasets +rdf11-datasets +25 February 2014 +NOTE +RDF 1.1: On Semantics of RDF Datasets +https://www.w3.org/TR/rdf11-datasets/ + + + + +Antoine Zimmermann +- +d:rdf11-datasets-20131217 +rdf11-datasets-20131217 +17 December 2013 +WD +RDF 1.1: On Semantics of RDF Datasets +https://www.w3.org/TR/2013/WD-rdf11-datasets-20131217/ +https://www.w3.org/TR/2013/WD-rdf11-datasets-20131217/ + + + +Antoine Zimmermann +- +d:rdf11-datasets-20140225 +rdf11-datasets-20140225 +25 February 2014 +NOTE +RDF 1.1: On Semantics of RDF Datasets +https://www.w3.org/TR/2014/NOTE-rdf11-datasets-20140225/ +https://www.w3.org/TR/2014/NOTE-rdf11-datasets-20140225/ + + + +Antoine Zimmermann +- +d:rdf11-mt +rdf11-mt +25 February 2014 +REC +RDF 1.1 Semantics +https://www.w3.org/TR/rdf11-mt/ +https://w3c.github.io/rdf-semantics/spec/ + + + +Patrick Hayes +Peter Patel-Schneider +- +d:rdf11-mt-20130409 +rdf11-mt-20130409 +9 April 2013 +WD +RDF 1.1 Semantics +https://www.w3.org/TR/2013/WD-rdf11-mt-20130409/ +https://www.w3.org/TR/2013/WD-rdf11-mt-20130409/ + + + +Patrick Hayes +Peter Patel-Schneider +- +d:rdf11-mt-20130723 +rdf11-mt-20130723 +23 July 2013 +LCWD +RDF 1.1 Semantics +https://www.w3.org/TR/2013/WD-rdf11-mt-20130723/ +https://www.w3.org/TR/2013/WD-rdf11-mt-20130723/ + + + +Patrick Hayes +Peter Patel-Schneider +- +d:rdf11-mt-20131105 +rdf11-mt-20131105 +5 November 2013 +CR +RDF 1.1 Semantics +https://www.w3.org/TR/2013/CR-rdf11-mt-20131105/ +https://www.w3.org/TR/2013/CR-rdf11-mt-20131105/ + + + +Patrick Hayes +Peter Patel-Schneider +- +d:rdf11-mt-20140109 +rdf11-mt-20140109 +9 January 2014 +PR +RDF 1.1 Semantics +https://www.w3.org/TR/2014/PR-rdf11-mt-20140109/ +https://www.w3.org/TR/2014/PR-rdf11-mt-20140109/ + + + +Patrick Hayes +Peter Patel-Schneider +- +d:rdf11-mt-20140225 +rdf11-mt-20140225 +25 February 2014 +REC +RDF 1.1 Semantics +https://www.w3.org/TR/2014/REC-rdf11-mt-20140225/ +https://www.w3.org/TR/2014/REC-rdf11-mt-20140225/ + + + +Patrick Hayes +Peter Patel-Schneider +- +d:rdf11-new +rdf11-new +25 February 2014 +NOTE +What’s New in RDF 1.1 +https://www.w3.org/TR/rdf11-new/ + + + + +David Wood +- +d:rdf11-new-20131217 +rdf11-new-20131217 +17 December 2013 +WD +What’s New in RDF 1.1 +https://www.w3.org/TR/2013/WD-rdf11-new-20131217/ +https://www.w3.org/TR/2013/WD-rdf11-new-20131217/ + + + +David Wood +- +d:rdf11-new-20140225 +rdf11-new-20140225 +25 February 2014 +NOTE +What’s New in RDF 1.1 +https://www.w3.org/TR/2014/NOTE-rdf11-new-20140225/ +https://www.w3.org/TR/2014/NOTE-rdf11-new-20140225/ + + + +David Wood +- +d:rdf11-primer +rdf11-primer +24 June 2014 +NOTE +RDF 1.1 Primer +https://www.w3.org/TR/rdf11-primer/ + + + + +Guus Schreiber +Yves Raimond +- +d:rdf11-primer-20131217 +rdf11-primer-20131217 +17 December 2013 +WD +RDF 1.1 Primer +https://www.w3.org/TR/2013/WD-rdf11-primer-20131217/ +https://www.w3.org/TR/2013/WD-rdf11-primer-20131217/ + + + +Guus Schreiber +Yves Raimond +- +d:rdf11-primer-20140225 +rdf11-primer-20140225 +25 February 2014 +NOTE +RDF 1.1 Primer +https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140225/ +https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140225/ + + + +Guus Schreiber +Yves Raimond +- +d:rdf11-primer-20140624 +rdf11-primer-20140624 +24 June 2014 +NOTE +RDF 1.1 Primer +https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/ +https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/ + + + +Guus Schreiber +Yves Raimond +- +a:rdf11-schema +rdf11-schema +rdf-schema +- +a:rdf11-schema-19980409 +rdf11-schema-19980409 +rdf-schema-19980409 +- +a:rdf11-schema-19980814 +rdf11-schema-19980814 +rdf-schema-19980814 +- +a:rdf11-schema-19981030 +rdf11-schema-19981030 +rdf-schema-19981030 +- +a:rdf11-schema-19990303 +rdf11-schema-19990303 +rdf-schema-19990303 +- +a:rdf11-schema-20000327 +rdf11-schema-20000327 +rdf-schema-20000327 +- +a:rdf11-schema-20020430 +rdf11-schema-20020430 +rdf-schema-20020430 +- +a:rdf11-schema-20021112 +rdf11-schema-20021112 +rdf-schema-20021112 +- +a:rdf11-schema-20030123 +rdf11-schema-20030123 +rdf-schema-20030123 +- +a:rdf11-schema-20030905 +rdf11-schema-20030905 +rdf-schema-20030905 +- +a:rdf11-schema-20031010 +rdf11-schema-20031010 +rdf-schema-20031010 +- +a:rdf11-schema-20031215 +rdf11-schema-20031215 +rdf-schema-20031215 +- +a:rdf11-schema-20040210 +rdf11-schema-20040210 +rdf-schema-20040210 +- +a:rdf11-schema-20140109 +rdf11-schema-20140109 +rdf-schema-20140109 +- +a:rdf11-schema-20140225 +rdf11-schema-20140225 +rdf-schema-20140225 +- +d:rdf11-testcases +rdf11-testcases +25 February 2014 +NOTE +RDF 1.1 Test Cases +https://www.w3.org/TR/rdf11-testcases/ + + + + +Gregg Kellogg +Markus Lanthaler +- +d:rdf11-testcases-20140225 +rdf11-testcases-20140225 +25 February 2014 +NOTE +RDF 1.1 Test Cases +https://www.w3.org/TR/2014/NOTE-rdf11-testcases-20140225/ +https://www.w3.org/TR/2014/NOTE-rdf11-testcases-20140225/ + + + +Gregg Kellogg +Markus Lanthaler +- +a:rdf11-xml +RDF11-XML +rdf-syntax-grammar +- +a:rdf11-xml-19971002 +RDF11-XML-19971002 +rdf-syntax-grammar-19971002 +- +a:rdf11-xml-19980216 +RDF11-XML-19980216 +rdf-syntax-grammar-19980216 +- +a:rdf11-xml-19980720 +RDF11-XML-19980720 +rdf-syntax-grammar-19980720 +- +a:rdf11-xml-19980819 +RDF11-XML-19980819 +rdf-syntax-grammar-19980819 +- +a:rdf11-xml-19981008 +RDF11-XML-19981008 +rdf-syntax-grammar-19981008 +- +a:rdf11-xml-19990105 +RDF11-XML-19990105 +rdf-syntax-grammar-19990105 +- +a:rdf11-xml-19990222 +RDF11-XML-19990222 +rdf-syntax-grammar-19990222 +- +a:rdf11-xml-20010906 +RDF11-XML-20010906 +rdf-syntax-grammar-20010906 +- +a:rdf11-xml-20011218 +RDF11-XML-20011218 +rdf-syntax-grammar-20011218 +- +a:rdf11-xml-20020325 +RDF11-XML-20020325 +rdf-syntax-grammar-20020325 +- +a:rdf11-xml-20021108 +RDF11-XML-20021108 +rdf-syntax-grammar-20021108 +- +a:rdf11-xml-20030123 +RDF11-XML-20030123 +rdf-syntax-grammar-20030123 +- +a:rdf11-xml-20030905 +RDF11-XML-20030905 +rdf-syntax-grammar-20030905 +- +a:rdf11-xml-20031010 +RDF11-XML-20031010 +rdf-syntax-grammar-20031010 +- +a:rdf11-xml-20031215 +RDF11-XML-20031215 +rdf-syntax-grammar-20031215 +- +a:rdf11-xml-20040210 +RDF11-XML-20040210 +rdf-syntax-grammar-20040210 +- +a:rdf11-xml-20140109 +RDF11-XML-20140109 +rdf-syntax-grammar-20140109 +- +a:rdf11-xml-20140225 +RDF11-XML-20140225 +rdf-syntax-grammar-20140225 +- +d:rdf12-concepts +rdf12-concepts +22 August 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/rdf12-concepts/ +https://w3c.github.io/rdf-concepts/spec/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne +- +d:rdf12-concepts-20230516 +rdf12-concepts-20230516 +16 May 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230516/ + + + +Gregg Kellogg +Olaf Hartig +Pierre-Antoine Champin +- +d:rdf12-concepts-20230612 +rdf12-concepts-20230612 +12 June 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230612/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230612/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230615 +rdf12-concepts-20230615 +15 June 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230615/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230629 +rdf12-concepts-20230629 +29 June 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230629/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230629/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230727 +rdf12-concepts-20230727 +27 July 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230727/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230727/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230817 +rdf12-concepts-20230817 +17 August 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230817/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230817/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230831 +rdf12-concepts-20230831 +31 August 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230831/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230831/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230916 +rdf12-concepts-20230916 +16 September 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230916/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230916/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20230922 +rdf12-concepts-20230922 +22 September 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230922/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20230922/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20231012 +rdf12-concepts-20231012 +12 October 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20231012/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20231012/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20231013 +rdf12-concepts-20231013 +13 October 2023 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2023/WD-rdf12-concepts-20231013/ +https://www.w3.org/TR/2023/WD-rdf12-concepts-20231013/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20240112 +rdf12-concepts-20240112 +12 January 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240112/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240112/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +- +d:rdf12-concepts-20240121 +rdf12-concepts-20240121 +21 January 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240121/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240121/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne +- +d:rdf12-concepts-20240307 +rdf12-concepts-20240307 +7 March 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240307/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240307/ + + + +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne +- +d:rdf12-concepts-20240416 +rdf12-concepts-20240416 +16 April 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240416/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240416/ -Dave Beckett -Jeen Broekstra +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne - -d:rdf-sparql-xmlres-20070925 -rdf-sparql-XMLres-20070925 -25 September 2007 -CR -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/ -https://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/ +d:rdf12-concepts-20240502 +rdf12-concepts-20240502 +2 May 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240502/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240502/ -Dave Beckett -Jeen Broekstra +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne - -d:rdf-sparql-xmlres-20071112 -rdf-sparql-XMLres-20071112 -12 November 2007 -PR -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2007/PR-rdf-sparql-XMLres-20071112/ -https://www.w3.org/TR/2007/PR-rdf-sparql-XMLres-20071112/ +d:rdf12-concepts-20240627 +rdf12-concepts-20240627 +27 June 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240627/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240627/ -Dave Beckett -Jeen Broekstra +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne - -d:rdf-sparql-xmlres-20080115 -rdf-sparql-XMLres-20080115 -15 January 2008 -REC -SPARQL Query Results XML Format -https://www.w3.org/TR/2008/REC-rdf-sparql-XMLres-20080115/ -https://www.w3.org/TR/2008/REC-rdf-sparql-XMLres-20080115/ +d:rdf12-concepts-20240704 +rdf12-concepts-20240704 +4 July 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240704/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240704/ -Dave Beckett -Jeen Broekstra +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne - -d:rdf-sparql-xmlres-20121108 -rdf-sparql-XMLres-20121108 -8 November 2012 -PER -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2012/PER-rdf-sparql-XMLres-20121108/ -https://www.w3.org/TR/2012/PER-rdf-sparql-XMLres-20121108/ +d:rdf12-concepts-20240801 +rdf12-concepts-20240801 +1 August 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240801/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240801/ -Dave Beckett -Jeen Broekstra +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne - -d:rdf-sparql-xmlres-20130321 -rdf-sparql-XMLres-20130321 -21 March 2013 -REC -SPARQL Query Results XML Format (Second Edition) -https://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/ -https://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/ +d:rdf12-concepts-20240822 +rdf12-concepts-20240822 +22 August 2024 +WD +RDF 1.2 Concepts and Abstract Syntax +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240822/ +https://www.w3.org/TR/2024/WD-rdf12-concepts-20240822/ -Dave Beckett -Jeen Broekstra +Olaf Hartig +Pierre-Antoine Champin +Gregg Kellogg +Andy Seaborne - -d:rdf-star-foundation -RDF-STAR-FOUNDATION -June 2017 +d:rdf12-n-quads +rdf12-n-quads +8 August 2024 +WD +RDF 1.2 N-Quads +https://www.w3.org/TR/rdf12-n-quads/ +https://w3c.github.io/rdf-n-quads/spec/ -Foundations of RDF* and SPARQL* - An Alternative Approach to Statement-Level Metadata in RDF. -http://ceur-ws.org/Vol-1912/paper12.pdf +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-n-quads-20230516 +rdf12-n-quads-20230516 +16 May 2023 +WD +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230516/ -Olaf Hartig -- -a:rdf-syntax -RDF-SYNTAX -rdf-concepts -- -a:rdf-syntax-20020829 -RDF-SYNTAX-20020829 -rdf-concepts-20020829 -- -a:rdf-syntax-20021108 -RDF-SYNTAX-20021108 -rdf-concepts-20021108 -- -a:rdf-syntax-20030123 -RDF-SYNTAX-20030123 -rdf-concepts-20030123 -- -a:rdf-syntax-20030905 -RDF-SYNTAX-20030905 -rdf-concepts-20030905 -- -a:rdf-syntax-20031010 -RDF-SYNTAX-20031010 -rdf-concepts-20031010 -- -a:rdf-syntax-20031215 -RDF-SYNTAX-20031215 -rdf-concepts-20031215 -- -a:rdf-syntax-20040210 -RDF-SYNTAX-20040210 -rdf-concepts-20040210 + +Dominik Tomaszuk +Gregg Kellogg - -d:rdf-syntax-grammar -rdf-syntax-grammar -25 February 2014 -REC -RDF 1.1 XML Syntax -https://www.w3.org/TR/rdf-syntax-grammar/ +d:rdf12-n-quads-20230615 +rdf12-n-quads-20230615 +15 June 2023 +WD +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230615/ -rdf-testcases -Fabien Gandon -Guus Schreiber +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19971002 -rdf-syntax-grammar-19971002 -2 October 1997 +d:rdf12-n-quads-20230727 +rdf12-n-quads-20230727 +27 July 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/WD-rdf-syntax-971002 -https://www.w3.org/TR/WD-rdf-syntax-971002 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230727/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230727/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19980216 -rdf-syntax-grammar-19980216 -16 February 1998 +d:rdf12-n-quads-20230831 +rdf12-n-quads-20230831 +31 August 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/1998/WD-rdf-syntax-19980216 -https://www.w3.org/TR/1998/WD-rdf-syntax-19980216 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230831/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230831/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19980720 -rdf-syntax-grammar-19980720 -20 July 1998 +d:rdf12-n-quads-20230921 +rdf12-n-quads-20230921 +21 September 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/1998/WD-rdf-syntax-19980720 -https://www.w3.org/TR/1998/WD-rdf-syntax-19980720 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230921/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230921/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19980819 -rdf-syntax-grammar-19980819 -19 August 1998 +d:rdf12-n-quads-20230928 +rdf12-n-quads-20230928 +28 September 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/1998/WD-rdf-syntax-19980819 -https://www.w3.org/TR/1998/WD-rdf-syntax-19980819 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230928/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230928/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19981008 -rdf-syntax-grammar-19981008 -8 October 1998 +d:rdf12-n-quads-20230929 +rdf12-n-quads-20230929 +29 September 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/1998/10/WD-rdf-syntax-19981008 -https://www.w3.org/1998/10/WD-rdf-syntax-19981008 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230929/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230929/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19990105 -rdf-syntax-grammar-19990105 -5 January 1999 -PR -RDF 1.1 XML Syntax -https://www.w3.org/TR/1999/PR-rdf-syntax-19990105 -https://www.w3.org/TR/1999/PR-rdf-syntax-19990105 -rdf-primer +d:rdf12-n-quads-20231012 +rdf12-n-quads-20231012 +12 October 2023 +WD +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231012/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231012/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-19990222 -rdf-syntax-grammar-19990222 -22 February 1999 -REC -Resource Description Framework (RDF) Model and Syntax Specification -https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/ -https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/ -rdf-primer +d:rdf12-n-quads-20231013 +rdf12-n-quads-20231013 +13 October 2023 +WD +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231013/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231013/ -Ora Lassila + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20010906 -rdf-syntax-grammar-20010906 -6 September 2001 +d:rdf12-n-quads-20231019 +rdf12-n-quads-20231019 +19 October 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20010906 -https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20010906 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231019/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231019/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20011218 -rdf-syntax-grammar-20011218 -18 December 2001 +d:rdf12-n-quads-20231221 +rdf12-n-quads-20231221 +21 December 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20011218 -https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20011218 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231221/ +https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231221/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20020325 -rdf-syntax-grammar-20020325 -25 March 2002 +d:rdf12-n-quads-20240321 +rdf12-n-quads-20240321 +21 March 2024 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20020325 -https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20020325 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2024/WD-rdf12-n-quads-20240321/ +https://www.w3.org/TR/2024/WD-rdf12-n-quads-20240321/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20021108 -rdf-syntax-grammar-20021108 -8 November 2002 +d:rdf12-n-quads-20240418 +rdf12-n-quads-20240418 +18 April 2024 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20021108 -https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20021108 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2024/WD-rdf12-n-quads-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-n-quads-20240418/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20030123 -rdf-syntax-grammar-20030123 -23 January 2003 +d:rdf12-n-quads-20240808 +rdf12-n-quads-20240808 +8 August 2024 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030123 -https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030123 -rdf-primer +RDF 1.2 N-Quads +https://www.w3.org/TR/2024/WD-rdf12-n-quads-20240808/ +https://www.w3.org/TR/2024/WD-rdf12-n-quads-20240808/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20030905 -rdf-syntax-grammar-20030905 -5 September 2003 +d:rdf12-n-triples +rdf12-n-triples +8 August 2024 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030905 -https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030905 -rdf-primer +RDF 1.2 N-Triples +https://www.w3.org/TR/rdf12-n-triples/ +https://w3c.github.io/rdf-n-triples/spec/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20031010 -rdf-syntax-grammar-20031010 -10 October 2003 +d:rdf12-n-triples-20230516 +rdf12-n-triples-20230516 +16 May 2023 WD -RDF 1.1 XML Syntax -https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20031010/ -https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20031010/ -rdf-primer +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230516/ -Fabien Gandon -Guus Schreiber + +Dominik Tomaszuk +Gregg Kellogg - -d:rdf-syntax-grammar-20031215 -rdf-syntax-grammar-20031215 -15 December 2003 -PR -RDF 1.1 XML Syntax -https://www.w3.org/TR/2003/PR-rdf-syntax-grammar-20031215/ -https://www.w3.org/TR/2003/PR-rdf-syntax-grammar-20031215/ -rdf-primer +d:rdf12-n-triples-20230615 +rdf12-n-triples-20230615 +15 June 2023 +WD +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230615/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20040210 -rdf-syntax-grammar-20040210 -10 February 2004 -REC -RDF/XML Syntax Specification (Revised) -https://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ -https://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ -rdf-primer +d:rdf12-n-triples-20230727 +rdf12-n-triples-20230727 +27 July 2023 +WD +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230727/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230727/ -Dave Beckett + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20140109 -rdf-syntax-grammar-20140109 -9 January 2014 -PER -RDF 1.1 XML Syntax -https://www.w3.org/TR/2014/PER-rdf-syntax-grammar-20140109/ -https://www.w3.org/TR/2014/PER-rdf-syntax-grammar-20140109/ -rdf-primer +d:rdf12-n-triples-20230831 +rdf12-n-triples-20230831 +31 August 2023 +WD +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230831/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230831/ -Fabien Gandon -Guus Schreiber + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-syntax-grammar-20140225 -rdf-syntax-grammar-20140225 -25 February 2014 -REC -RDF 1.1 XML Syntax -https://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/ -https://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/ -rdf-primer +d:rdf12-n-triples-20231013 +rdf12-n-triples-20231013 +13 October 2023 +WD +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231013/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231013/ -Fabien Gandon -Guus Schreiber -- -d:rdf-testcases -rdf-testcases -10 February 2004 -REC -RDF Test Cases -https://www.w3.org/TR/rdf-testcases/ +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-n-triples-20231019 +rdf12-n-triples-20231019 +19 October 2023 +WD +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231019/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231019/ -jan grant -Dave Beckett +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-testcases-20010912 -rdf-testcases-20010912 -12 September 2001 +d:rdf12-n-triples-20231104 +rdf12-n-triples-20231104 +4 November 2023 WD -RDF Test Cases -https://www.w3.org/TR/2001/WD-rdf-testcases-20010912/ -https://www.w3.org/TR/2001/WD-rdf-testcases-20010912/ +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231104/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231104/ -jan grant -Dave Beckett +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-testcases-20011115 -rdf-testcases-20011115 -15 November 2001 +d:rdf12-n-triples-20231221 +rdf12-n-triples-20231221 +21 December 2023 WD -RDF Test Cases -https://www.w3.org/TR/2001/WD-rdf-testcases-20011115/ -https://www.w3.org/TR/2001/WD-rdf-testcases-20011115/ +RDF 1.2 N-Triples +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231221/ +https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231221/ -jan grant -Dave Beckett +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-testcases-20020429 -rdf-testcases-20020429 -29 April 2002 +d:rdf12-n-triples-20240321 +rdf12-n-triples-20240321 +21 March 2024 WD -RDF Test Cases -https://www.w3.org/TR/2002/WD-rdf-testcases-20020429 -https://www.w3.org/TR/2002/WD-rdf-testcases-20020429 +RDF 1.2 N-Triples +https://www.w3.org/TR/2024/WD-rdf12-n-triples-20240321/ +https://www.w3.org/TR/2024/WD-rdf12-n-triples-20240321/ -jan grant -Dave Beckett +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-testcases-20021112 -rdf-testcases-20021112 -12 November 2002 +d:rdf12-n-triples-20240418 +rdf12-n-triples-20240418 +18 April 2024 WD -RDF Test Cases -https://www.w3.org/TR/2002/WD-rdf-testcases-20021112/ -https://www.w3.org/TR/2002/WD-rdf-testcases-20021112/ +RDF 1.2 N-Triples +https://www.w3.org/TR/2024/WD-rdf12-n-triples-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-n-triples-20240418/ -jan grant -Dave Beckett +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-testcases-20030123 -rdf-testcases-20030123 -23 January 2003 +d:rdf12-n-triples-20240808 +rdf12-n-triples-20240808 +8 August 2024 WD -RDF Test Cases -https://www.w3.org/TR/2003/WD-rdf-testcases-20030123/ -https://www.w3.org/TR/2003/WD-rdf-testcases-20030123/ +RDF 1.2 N-Triples +https://www.w3.org/TR/2024/WD-rdf12-n-triples-20240808/ +https://www.w3.org/TR/2024/WD-rdf12-n-triples-20240808/ -jan grant -Dave Beckett +Gregg Kellogg +Dominik Tomaszuk - -d:rdf-testcases-20030905 -rdf-testcases-20030905 -5 September 2003 +d:rdf12-schema +rdf12-schema +18 April 2024 WD -RDF Test Cases -https://www.w3.org/TR/2003/WD-rdf-testcases-20030905/ -https://www.w3.org/TR/2003/WD-rdf-testcases-20030905/ +RDF 1.2 Schema +https://www.w3.org/TR/rdf12-schema/ +https://w3c.github.io/rdf-schema/spec/ -jan grant -Dave Beckett +Dominik Tomaszuk +Timothée Haudebourg - -d:rdf-testcases-20031010 -rdf-testcases-20031010 -10 October 2003 +d:rdf12-schema-20230516 +rdf12-schema-20230516 +16 May 2023 WD -RDF Test Cases -https://www.w3.org/TR/2003/WD-rdf-testcases-20031010/ -https://www.w3.org/TR/2003/WD-rdf-testcases-20031010/ +RDF 1.2 Schema +https://www.w3.org/TR/2023/WD-rdf12-schema-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-schema-20230516/ -jan grant -Dave Beckett +Dominik Tomaszuk +Timothée Haudebourg - -d:rdf-testcases-20031215 -rdf-testcases-20031215 -15 December 2003 -PR -RDF Test Cases -https://www.w3.org/TR/2003/PR-rdf-testcases-20031215/ -https://www.w3.org/TR/2003/PR-rdf-testcases-20031215/ +d:rdf12-schema-20230615 +rdf12-schema-20230615 +15 June 2023 +WD +RDF 1.2 Schema +https://www.w3.org/TR/2023/WD-rdf12-schema-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-schema-20230615/ -jan grant -Dave Beckett +Dominik Tomaszuk +Timothée Haudebourg - -d:rdf-testcases-20040210 -rdf-testcases-20040210 -10 February 2004 -REC -RDF Test Cases -https://www.w3.org/TR/2004/REC-rdf-testcases-20040210/ -https://www.w3.org/TR/2004/REC-rdf-testcases-20040210/ +d:rdf12-schema-20230928 +rdf12-schema-20230928 +28 September 2023 +WD +RDF 1.2 Schema +https://www.w3.org/TR/2023/WD-rdf12-schema-20230928/ +https://www.w3.org/TR/2023/WD-rdf12-schema-20230928/ -jan grant -Dave Beckett -- -a:rdf-text -rdf-text -rdf-plain-literal -- -a:rdf-text-20081202 -rdf-text-20081202 -rdf-plain-literal-20081202 -- -a:rdf-text-20090421 -rdf-text-20090421 -rdf-plain-literal-20090421 -- -a:rdf-text-20090611 -rdf-text-20090611 -rdf-plain-literal-20090611 -- -a:rdf-text-20090922 -rdf-text-20090922 -rdf-plain-literal-20090922 -- -a:rdf-text-20091027 -rdf-text-20091027 -rdf-plain-literal-20091027 -- -a:rdf-text-20121018 -rdf-text-20121018 -rdf-plain-literal-20121018 -- -a:rdf-text-20121211 -rdf-text-20121211 -rdf-plain-literal-20121211 +Dominik Tomaszuk +Timothée Haudebourg - -d:rdf-uml -rdf-uml -4 August 1998 -NOTE -A Discussion of the Relationship Between RDF-Schema and UML -https://www.w3.org/TR/NOTE-rdf-uml/ - +d:rdf12-schema-20240418 +rdf12-schema-20240418 +18 April 2024 +WD +RDF 1.2 Schema +https://www.w3.org/TR/2024/WD-rdf12-schema-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-schema-20240418/ -Walter W. Chang +Dominik Tomaszuk +Timothée Haudebourg - -d:rdf-uml-19980804 -rdf-uml-19980804 -4 August 1998 -NOTE -A Discussion of the Relationship Between RDF-Schema and UML -https://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/ -https://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/ +d:rdf12-semantics +rdf12-semantics +27 June 2024 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/rdf12-semantics/ +https://w3c.github.io/rdf-semantics/spec/ -Walter W. Chang -- -a:rdf-xml -RDF-XML -rdf-syntax-grammar -- -a:rdf-xml-19971002 -RDF-XML-19971002 -rdf-syntax-grammar-19971002 -- -a:rdf-xml-19980216 -RDF-XML-19980216 -rdf-syntax-grammar-19980216 -- -a:rdf-xml-19980720 -RDF-XML-19980720 -rdf-syntax-grammar-19980720 -- -a:rdf-xml-19980819 -RDF-XML-19980819 -rdf-syntax-grammar-19980819 -- -a:rdf-xml-19981008 -RDF-XML-19981008 -rdf-syntax-grammar-19981008 -- -a:rdf-xml-19990105 -RDF-XML-19990105 -rdf-syntax-grammar-19990105 -- -a:rdf-xml-19990222 -RDF-XML-19990222 -rdf-syntax-grammar-19990222 -- -a:rdf-xml-20010906 -RDF-XML-20010906 -rdf-syntax-grammar-20010906 +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20011218 -RDF-XML-20011218 -rdf-syntax-grammar-20011218 +d:rdf12-semantics-20230606 +rdf12-semantics-20230606 +6 June 2023 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/2023/WD-rdf12-semantics-20230606/ +https://www.w3.org/TR/2023/WD-rdf12-semantics-20230606/ + + + +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20020325 -RDF-XML-20020325 -rdf-syntax-grammar-20020325 +d:rdf12-semantics-20230615 +rdf12-semantics-20230615 +15 June 2023 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/2023/WD-rdf12-semantics-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-semantics-20230615/ + + + +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20021108 -RDF-XML-20021108 -rdf-syntax-grammar-20021108 +d:rdf12-semantics-20230922 +rdf12-semantics-20230922 +22 September 2023 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/2023/WD-rdf12-semantics-20230922/ +https://www.w3.org/TR/2023/WD-rdf12-semantics-20230922/ + + + +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20030123 -RDF-XML-20030123 -rdf-syntax-grammar-20030123 +d:rdf12-semantics-20240125 +rdf12-semantics-20240125 +25 January 2024 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/2024/WD-rdf12-semantics-20240125/ +https://www.w3.org/TR/2024/WD-rdf12-semantics-20240125/ + + + +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20030905 -RDF-XML-20030905 -rdf-syntax-grammar-20030905 +d:rdf12-semantics-20240418 +rdf12-semantics-20240418 +18 April 2024 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/2024/WD-rdf12-semantics-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-semantics-20240418/ + + + +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20031010 -RDF-XML-20031010 -rdf-syntax-grammar-20031010 +d:rdf12-semantics-20240627 +rdf12-semantics-20240627 +27 June 2024 +WD +RDF 1.2 Semantics +https://www.w3.org/TR/2024/WD-rdf12-semantics-20240627/ +https://www.w3.org/TR/2024/WD-rdf12-semantics-20240627/ + + + +Peter Patel-Schneider +Dörthe Arndt +Timothée Haudebourg - -a:rdf-xml-20031215 -RDF-XML-20031215 -rdf-syntax-grammar-20031215 +d:rdf12-trig +rdf12-trig +13 June 2024 +WD +RDF 1.2 TriG +https://www.w3.org/TR/rdf12-trig/ +https://w3c.github.io/rdf-trig/spec/ + + + +Gregg Kellogg +Dominik Tomaszuk - -a:rdf-xml-20040210 -RDF-XML-20040210 -rdf-syntax-grammar-20040210 +d:rdf12-trig-20230516 +rdf12-trig-20230516 +16 May 2023 +WD +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20230516/ + + + +Dominik Tomaszuk +Gregg Kellogg - -a:rdf-xml-20140109 -RDF-XML-20140109 -rdf-syntax-grammar-20140109 +d:rdf12-trig-20230628 +rdf12-trig-20230628 +28 June 2023 +WD +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20230628/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20230628/ + + + +Gregg Kellogg +Dominik Tomaszuk - -a:rdf-xml-20140225 -RDF-XML-20140225 -rdf-syntax-grammar-20140225 +d:rdf12-trig-20230727 +rdf12-trig-20230727 +27 July 2023 +WD +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20230727/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20230727/ + + + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts -rdf11-concepts -25 February 2014 -REC -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/rdf11-concepts/ +d:rdf12-trig-20230921 +rdf12-trig-20230921 +21 September 2023 +WD +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20230921/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20230921/ + +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-trig-20231013 +rdf12-trig-20231013 +13 October 2023 +WD +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20231013/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20231013/ -Richard Cyganiak -David Wood -Markus Lanthaler + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts-20110830 -rdf11-concepts-20110830 -30 August 2011 +d:rdf12-trig-20231103 +rdf12-trig-20231103 +3 November 2023 WD -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2011/WD-rdf11-concepts-20110830/ -https://www.w3.org/TR/2011/WD-rdf11-concepts-20110830/ +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20231103/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20231103/ -Richard Cyganiak -David Wood -Markus Lanthaler +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts-20120605 -rdf11-concepts-20120605 -5 June 2012 +d:rdf12-trig-20231104 +rdf12-trig-20231104 +4 November 2023 WD -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2012/WD-rdf11-concepts-20120605/ -https://www.w3.org/TR/2012/WD-rdf11-concepts-20120605/ +RDF 1.2 TriG +https://www.w3.org/TR/2023/WD-rdf12-trig-20231104/ +https://www.w3.org/TR/2023/WD-rdf12-trig-20231104/ -Richard Cyganiak -David Wood -Markus Lanthaler +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts-20130115 -rdf11-concepts-20130115 -15 January 2013 +d:rdf12-trig-20240418 +rdf12-trig-20240418 +18 April 2024 WD -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2013/WD-rdf11-concepts-20130115/ -https://www.w3.org/TR/2013/WD-rdf11-concepts-20130115/ +RDF 1.2 TriG +https://www.w3.org/TR/2024/WD-rdf12-trig-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-trig-20240418/ -Richard Cyganiak -David Wood +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts-20130723 -rdf11-concepts-20130723 -23 July 2013 -LCWD -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/ -https://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/ +d:rdf12-trig-20240613 +rdf12-trig-20240613 +13 June 2024 +WD +RDF 1.2 TriG +https://www.w3.org/TR/2024/WD-rdf12-trig-20240613/ +https://www.w3.org/TR/2024/WD-rdf12-trig-20240613/ -Richard Cyganiak -David Wood +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts-20131105 -rdf11-concepts-20131105 -5 November 2013 -CR -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2013/CR-rdf11-concepts-20131105/ -https://www.w3.org/TR/2013/CR-rdf11-concepts-20131105/ +d:rdf12-turtle +rdf12-turtle +22 August 2024 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/rdf12-turtle/ +https://w3c.github.io/rdf-turtle/spec/ -Richard Cyganiak -David Wood -Markus Lanthaler +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-concepts-20140109 -rdf11-concepts-20140109 -9 January 2014 -PR -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2014/PR-rdf11-concepts-20140109/ -https://www.w3.org/TR/2014/PR-rdf11-concepts-20140109/ +d:rdf12-turtle-20230516 +rdf12-turtle-20230516 +16 May 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230516/ -Richard Cyganiak -David Wood -Markus Lanthaler +Dominik Tomaszuk +Gregg Kellogg - -d:rdf11-concepts-20140225 -rdf11-concepts-20140225 -25 February 2014 -REC -RDF 1.1 Concepts and Abstract Syntax -https://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/ -https://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/ +d:rdf12-turtle-20230615 +rdf12-turtle-20230615 +15 June 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230615/ -Richard Cyganiak -David Wood -Markus Lanthaler +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-datasets -rdf11-datasets -25 February 2014 -NOTE -RDF 1.1: On Semantics of RDF Datasets -https://www.w3.org/TR/rdf11-datasets/ +d:rdf12-turtle-20230727 +rdf12-turtle-20230727 +27 July 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230727/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230727/ + +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-turtle-20230831 +rdf12-turtle-20230831 +31 August 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230831/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230831/ -Antoine Zimmermann + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-datasets-20131217 -rdf11-datasets-20131217 -17 December 2013 +d:rdf12-turtle-20230925 +rdf12-turtle-20230925 +25 September 2023 WD -RDF 1.1: On Semantics of RDF Datasets -https://www.w3.org/TR/2013/WD-rdf11-datasets-20131217/ -https://www.w3.org/TR/2013/WD-rdf11-datasets-20131217/ +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230925/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230925/ -Antoine Zimmermann +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-datasets-20140225 -rdf11-datasets-20140225 -25 February 2014 -NOTE -RDF 1.1: On Semantics of RDF Datasets -https://www.w3.org/TR/2014/NOTE-rdf11-datasets-20140225/ -https://www.w3.org/TR/2014/NOTE-rdf11-datasets-20140225/ +d:rdf12-turtle-20230928 +rdf12-turtle-20230928 +28 September 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230928/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20230928/ -Antoine Zimmermann +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-mt -rdf11-mt -25 February 2014 -REC -RDF 1.1 Semantics -https://www.w3.org/TR/rdf11-mt/ +d:rdf12-turtle-20231005 +rdf12-turtle-20231005 +5 October 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231005/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231005/ +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-turtle-20231012 +rdf12-turtle-20231012 +12 October 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231012/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231012/ -Patrick Hayes -Peter Patel-Schneider + + +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-mt-20130409 -rdf11-mt-20130409 -9 April 2013 +d:rdf12-turtle-20231013 +rdf12-turtle-20231013 +13 October 2023 WD -RDF 1.1 Semantics -https://www.w3.org/TR/2013/WD-rdf11-mt-20130409/ -https://www.w3.org/TR/2013/WD-rdf11-mt-20130409/ +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231013/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231013/ -Patrick Hayes -Peter Patel-Schneider +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-mt-20130723 -rdf11-mt-20130723 -23 July 2013 -LCWD -RDF 1.1 Semantics -https://www.w3.org/TR/2013/WD-rdf11-mt-20130723/ -https://www.w3.org/TR/2013/WD-rdf11-mt-20130723/ +d:rdf12-turtle-20231103 +rdf12-turtle-20231103 +3 November 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231103/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231103/ -Patrick Hayes -Peter Patel-Schneider +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-mt-20131105 -rdf11-mt-20131105 -5 November 2013 -CR -RDF 1.1 Semantics -https://www.w3.org/TR/2013/CR-rdf11-mt-20131105/ -https://www.w3.org/TR/2013/CR-rdf11-mt-20131105/ +d:rdf12-turtle-20231104 +rdf12-turtle-20231104 +4 November 2023 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231104/ +https://www.w3.org/TR/2023/WD-rdf12-turtle-20231104/ + + + +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-turtle-20240208 +rdf12-turtle-20240208 +8 February 2024 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240208/ +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240208/ + + + +Gregg Kellogg +Dominik Tomaszuk +- +d:rdf12-turtle-20240418 +rdf12-turtle-20240418 +18 April 2024 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240418/ -Patrick Hayes -Peter Patel-Schneider +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-mt-20140109 -rdf11-mt-20140109 -9 January 2014 -PR -RDF 1.1 Semantics -https://www.w3.org/TR/2014/PR-rdf11-mt-20140109/ -https://www.w3.org/TR/2014/PR-rdf11-mt-20140109/ +d:rdf12-turtle-20240613 +rdf12-turtle-20240613 +13 June 2024 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240613/ +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240613/ -Patrick Hayes -Peter Patel-Schneider +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-mt-20140225 -rdf11-mt-20140225 -25 February 2014 -REC -RDF 1.1 Semantics -https://www.w3.org/TR/2014/REC-rdf11-mt-20140225/ -https://www.w3.org/TR/2014/REC-rdf11-mt-20140225/ +d:rdf12-turtle-20240808 +rdf12-turtle-20240808 +8 August 2024 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240808/ +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240808/ -Patrick Hayes -Peter Patel-Schneider +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-new -rdf11-new -25 February 2014 -NOTE -What’s New in RDF 1.1 -https://www.w3.org/TR/rdf11-new/ - +d:rdf12-turtle-20240815 +rdf12-turtle-20240815 +15 August 2024 +WD +RDF 1.2 Turtle +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240815/ +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240815/ -David Wood +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-new-20131217 -rdf11-new-20131217 -17 December 2013 +d:rdf12-turtle-20240822 +rdf12-turtle-20240822 +22 August 2024 WD -What’s New in RDF 1.1 -https://www.w3.org/TR/2013/WD-rdf11-new-20131217/ -https://www.w3.org/TR/2013/WD-rdf11-new-20131217/ +RDF 1.2 Turtle +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240822/ +https://www.w3.org/TR/2024/WD-rdf12-turtle-20240822/ -David Wood +Gregg Kellogg +Dominik Tomaszuk - -d:rdf11-new-20140225 -rdf11-new-20140225 -25 February 2014 -NOTE -What’s New in RDF 1.1 -https://www.w3.org/TR/2014/NOTE-rdf11-new-20140225/ -https://www.w3.org/TR/2014/NOTE-rdf11-new-20140225/ +d:rdf12-xml +rdf12-xml +18 April 2024 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/rdf12-xml/ +https://w3c.github.io/rdf-xml/spec/ -David Wood +Gregg Kellogg - -d:rdf11-primer -rdf11-primer -24 June 2014 -NOTE -RDF 1.1 Primer -https://www.w3.org/TR/rdf11-primer/ - +d:rdf12-xml-20230516 +rdf12-xml-20230516 +16 May 2023 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/2023/WD-rdf12-xml-20230516/ +https://www.w3.org/TR/2023/WD-rdf12-xml-20230516/ -Guus Schreiber -Yves Raimond +Gregg Kellogg - -d:rdf11-primer-20131217 -rdf11-primer-20131217 -17 December 2013 +d:rdf12-xml-20230615 +rdf12-xml-20230615 +15 June 2023 WD -RDF 1.1 Primer -https://www.w3.org/TR/2013/WD-rdf11-primer-20131217/ -https://www.w3.org/TR/2013/WD-rdf11-primer-20131217/ +RDF 1.2 XML Syntax +https://www.w3.org/TR/2023/WD-rdf12-xml-20230615/ +https://www.w3.org/TR/2023/WD-rdf12-xml-20230615/ -Guus Schreiber -Yves Raimond +Gregg Kellogg - -d:rdf11-primer-20140225 -rdf11-primer-20140225 -25 February 2014 -NOTE -RDF 1.1 Primer -https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140225/ -https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140225/ +d:rdf12-xml-20230807 +rdf12-xml-20230807 +7 August 2023 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/2023/WD-rdf12-xml-20230807/ +https://www.w3.org/TR/2023/WD-rdf12-xml-20230807/ -Guus Schreiber -Yves Raimond +Gregg Kellogg - -d:rdf11-primer-20140624 -rdf11-primer-20140624 -24 June 2014 -NOTE -RDF 1.1 Primer -https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/ -https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/ +d:rdf12-xml-20230810 +rdf12-xml-20230810 +10 August 2023 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/2023/WD-rdf12-xml-20230810/ +https://www.w3.org/TR/2023/WD-rdf12-xml-20230810/ -Guus Schreiber -Yves Raimond -- -a:rdf11-schema -rdf11-schema -rdf-schema -- -a:rdf11-schema-19980409 -rdf11-schema-19980409 -rdf-schema-19980409 -- -a:rdf11-schema-19980814 -rdf11-schema-19980814 -rdf-schema-19980814 -- -a:rdf11-schema-19981030 -rdf11-schema-19981030 -rdf-schema-19981030 -- -a:rdf11-schema-19990303 -rdf11-schema-19990303 -rdf-schema-19990303 -- -a:rdf11-schema-20000327 -rdf11-schema-20000327 -rdf-schema-20000327 -- -a:rdf11-schema-20020430 -rdf11-schema-20020430 -rdf-schema-20020430 -- -a:rdf11-schema-20021112 -rdf11-schema-20021112 -rdf-schema-20021112 -- -a:rdf11-schema-20030123 -rdf11-schema-20030123 -rdf-schema-20030123 -- -a:rdf11-schema-20030905 -rdf11-schema-20030905 -rdf-schema-20030905 -- -a:rdf11-schema-20031010 -rdf11-schema-20031010 -rdf-schema-20031010 -- -a:rdf11-schema-20031215 -rdf11-schema-20031215 -rdf-schema-20031215 -- -a:rdf11-schema-20040210 -rdf11-schema-20040210 -rdf-schema-20040210 -- -a:rdf11-schema-20140109 -rdf11-schema-20140109 -rdf-schema-20140109 -- -a:rdf11-schema-20140225 -rdf11-schema-20140225 -rdf-schema-20140225 +Gregg Kellogg - -d:rdf11-testcases -rdf11-testcases -25 February 2014 -NOTE -RDF 1.1 Test Cases -https://www.w3.org/TR/rdf11-testcases/ - +d:rdf12-xml-20230831 +rdf12-xml-20230831 +31 August 2023 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/2023/WD-rdf12-xml-20230831/ +https://www.w3.org/TR/2023/WD-rdf12-xml-20230831/ Gregg Kellogg -Markus Lanthaler - -d:rdf11-testcases-20140225 -rdf11-testcases-20140225 -25 February 2014 -NOTE -RDF 1.1 Test Cases -https://www.w3.org/TR/2014/NOTE-rdf11-testcases-20140225/ -https://www.w3.org/TR/2014/NOTE-rdf11-testcases-20140225/ +d:rdf12-xml-20230921 +rdf12-xml-20230921 +21 September 2023 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/2023/WD-rdf12-xml-20230921/ +https://www.w3.org/TR/2023/WD-rdf12-xml-20230921/ Gregg Kellogg -Markus Lanthaler -- -a:rdf11-xml -RDF11-XML -rdf-syntax-grammar -- -a:rdf11-xml-19971002 -RDF11-XML-19971002 -rdf-syntax-grammar-19971002 -- -a:rdf11-xml-19980216 -RDF11-XML-19980216 -rdf-syntax-grammar-19980216 -- -a:rdf11-xml-19980720 -RDF11-XML-19980720 -rdf-syntax-grammar-19980720 - -a:rdf11-xml-19980819 -RDF11-XML-19980819 -rdf-syntax-grammar-19980819 -- -a:rdf11-xml-19981008 -RDF11-XML-19981008 -rdf-syntax-grammar-19981008 -- -a:rdf11-xml-19990105 -RDF11-XML-19990105 -rdf-syntax-grammar-19990105 -- -a:rdf11-xml-19990222 -RDF11-XML-19990222 -rdf-syntax-grammar-19990222 -- -a:rdf11-xml-20010906 -RDF11-XML-20010906 -rdf-syntax-grammar-20010906 -- -a:rdf11-xml-20011218 -RDF11-XML-20011218 -rdf-syntax-grammar-20011218 -- -a:rdf11-xml-20020325 -RDF11-XML-20020325 -rdf-syntax-grammar-20020325 -- -a:rdf11-xml-20021108 -RDF11-XML-20021108 -rdf-syntax-grammar-20021108 -- -a:rdf11-xml-20030123 -RDF11-XML-20030123 -rdf-syntax-grammar-20030123 -- -a:rdf11-xml-20030905 -RDF11-XML-20030905 -rdf-syntax-grammar-20030905 -- -a:rdf11-xml-20031010 -RDF11-XML-20031010 -rdf-syntax-grammar-20031010 -- -a:rdf11-xml-20031215 -RDF11-XML-20031215 -rdf-syntax-grammar-20031215 -- -a:rdf11-xml-20040210 -RDF11-XML-20040210 -rdf-syntax-grammar-20040210 -- -a:rdf11-xml-20140109 -RDF11-XML-20140109 -rdf-syntax-grammar-20140109 -- -a:rdf11-xml-20140225 -RDF11-XML-20140225 -rdf-syntax-grammar-20140225 +d:rdf12-xml-20240418 +rdf12-xml-20240418 +18 April 2024 +WD +RDF 1.2 XML Syntax +https://www.w3.org/TR/2024/WD-rdf12-xml-20240418/ +https://www.w3.org/TR/2024/WD-rdf12-xml-20240418/ + + + +Gregg Kellogg - d:rdfa-api rdfa-api diff --git a/bikeshed/spec-data/readonly/biblio/biblio-re.data b/bikeshed/spec-data/readonly/biblio/biblio-re.data index 03fb190796..870fa96eca 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-re.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-re.data @@ -9,6 +9,17 @@ https://doi.org/10.2312/re3.008 1 Jessika Rücknagel +- +d:real-world-meshing +REAL-WORLD-MESHING + +Draft Community Group Report +WebXR Mesh Detection Module +https://immersive-web.github.io/real-world-meshing/ + + + + - a:rec-css1 REC-CSS1 @@ -515,7 +526,7 @@ Steve Noble - d:remote-playback remote-playback -29 September 2022 +30 April 2024 CR Remote Playback API https://www.w3.org/TR/remote-playback/ @@ -611,6 +622,42 @@ https://www.w3.org/TR/2022/CRD-remote-playback-20220929/ +Mark Foltz +- +d:remote-playback-20240322 +remote-playback-20240322 +22 March 2024 +CR +Remote Playback API +https://www.w3.org/TR/2024/CRD-remote-playback-20240322/ +https://www.w3.org/TR/2024/CRD-remote-playback-20240322/ + + + +Mark Foltz +- +d:remote-playback-20240415 +remote-playback-20240415 +15 April 2024 +CR +Remote Playback API +https://www.w3.org/TR/2024/CRD-remote-playback-20240415/ +https://www.w3.org/TR/2024/CRD-remote-playback-20240415/ + + + +Mark Foltz +- +d:remote-playback-20240430 +remote-playback-20240430 +30 April 2024 +CR +Remote Playback API +https://www.w3.org/TR/2024/CRD-remote-playback-20240430/ +https://www.w3.org/TR/2024/CRD-remote-playback-20240430/ + + + Mark Foltz - a:reporting @@ -619,7 +666,7 @@ reporting-1 - d:reporting-1 reporting-1 -17 September 2022 +13 August 2024 WD Reporting API https://www.w3.org/TR/reporting-1/ @@ -724,6 +771,62 @@ https://www.w3.org/TR/2022/WD-reporting-1-20220917/ +Douglas Creager +Ian Clelland +Mike West +- +d:reporting-1-20230512 +reporting-1-20230512 +12 May 2023 +WD +Reporting API +https://www.w3.org/TR/2023/WD-reporting-1-20230512/ +https://www.w3.org/TR/2023/WD-reporting-1-20230512/ + + + +Douglas Creager +Ian Clelland +Mike West +- +d:reporting-1-20231110 +reporting-1-20231110 +10 November 2023 +WD +Reporting API +https://www.w3.org/TR/2023/WD-reporting-1-20231110/ +https://www.w3.org/TR/2023/WD-reporting-1-20231110/ + + + +Douglas Creager +Ian Clelland +Mike West +- +d:reporting-1-20240809 +reporting-1-20240809 +9 August 2024 +WD +Reporting API +https://www.w3.org/TR/2024/WD-reporting-1-20240809/ +https://www.w3.org/TR/2024/WD-reporting-1-20240809/ + + + +Douglas Creager +Ian Clelland +Mike West +- +d:reporting-1-20240813 +reporting-1-20240813 +13 August 2024 +WD +Reporting API +https://www.w3.org/TR/2024/WD-reporting-1-20240813/ +https://www.w3.org/TR/2024/WD-reporting-1-20240813/ + + + Douglas Creager Ian Clelland Mike West @@ -756,6 +859,22 @@ a:reporting-20220917 reporting-20220917 reporting-1-20220917 - +a:reporting-20230512 +reporting-20230512 +reporting-1-20230512 +- +a:reporting-20231110 +reporting-20231110 +reporting-1-20231110 +- +a:reporting-20240809 +reporting-20240809 +reporting-1-20240809 +- +a:reporting-20240813 +reporting-20240813 +reporting-1-20240813 +- d:requestidlecallback requestidlecallback 28 June 2022 @@ -966,6 +1085,17 @@ https://www.w3.org/TR/2022/WD-requestidlecallback-20220628/ Ross McIlroy Ilya Grigorik +- +d:requeststorageaccessfor +REQUESTSTORAGEACCESSFOR + +Editor's Draft +requestStorageAccessFor API +https://privacycg.github.io/requestStorageAccessFor/ + + + + - d:resize-observer RESIZE-OBSERVER @@ -1006,7 +1136,7 @@ Greg Whitworth - d:resource-hints resource-hints -5 October 2020 +14 March 2023 WD Resource Hints https://www.w3.org/TR/resource-hints/ @@ -1314,6 +1444,18 @@ https://www.w3.org/TR/2020/WD-resource-hints-20201005/ +Ilya Grigorik +- +d:resource-hints-20230314 +resource-hints-20230314 +14 March 2023 +WD +Resource Hints +https://www.w3.org/TR/2023/DISC-resource-hints-20230314/ +https://www.w3.org/TR/2023/DISC-resource-hints-20230314/ + + + Ilya Grigorik - d:resource-priorities @@ -1357,9 +1499,18 @@ Tobin Titus James Simonsen Jatinder Mann - -a:resource-timing +d:resource-timing resource-timing -resource-timing-2 +24 May 2024 +CR +Resource Timing +https://www.w3.org/TR/resource-timing/ +https://w3c.github.io/resource-timing/ + + + +Yoav Weiss +Noam Rosenthal - a:resource-timing-1 resource-timing-1 @@ -1367,316 +1518,631 @@ resource-timing - a:resource-timing-1-20110524 resource-timing-1-20110524 -resource-timing-2-20110524 +resource-timing-20110524 - a:resource-timing-1-20110811 resource-timing-1-20110811 -resource-timing-2-20110811 +resource-timing-20110811 - a:resource-timing-1-20120522 resource-timing-1-20120522 -resource-timing-2-20120522 +resource-timing-20120522 - a:resource-timing-1-20140325 resource-timing-1-20140325 -resource-timing-2-20140325 +resource-timing-20140325 - a:resource-timing-1-20140624 resource-timing-1-20140624 -resource-timing-2-20140624 +resource-timing-20140624 - a:resource-timing-1-20141216 resource-timing-1-20141216 -resource-timing-2-20141216 +resource-timing-20141216 - a:resource-timing-1-20150422 resource-timing-1-20150422 -resource-timing-2-20150422 +resource-timing-20150422 - a:resource-timing-1-20150506 resource-timing-1-20150506 -resource-timing-2-20150506 +resource-timing-20150506 - a:resource-timing-1-20150604 resource-timing-1-20150604 -resource-timing-2-20150604 +resource-timing-20150604 - a:resource-timing-1-20150721 resource-timing-1-20150721 -resource-timing-2-20150721 +resource-timing-20150721 - a:resource-timing-1-20150916 resource-timing-1-20150916 -resource-timing-2-20150916 +resource-timing-20150916 - a:resource-timing-1-20150918 resource-timing-1-20150918 -resource-timing-2-20150918 +resource-timing-20150918 - a:resource-timing-1-20150921 resource-timing-1-20150921 -resource-timing-2-20150921 +resource-timing-20150921 - a:resource-timing-1-20150923 resource-timing-1-20150923 -resource-timing-2-20150923 +resource-timing-20150923 - a:resource-timing-1-20150924 resource-timing-1-20150924 -resource-timing-2-20150924 +resource-timing-20150924 - a:resource-timing-1-20150925 resource-timing-1-20150925 -resource-timing-2-20150925 +resource-timing-20150925 - a:resource-timing-1-20150928 resource-timing-1-20150928 -resource-timing-2-20150928 +resource-timing-20150928 - a:resource-timing-1-20151014 resource-timing-1-20151014 -resource-timing-2-20151014 +resource-timing-20151014 - a:resource-timing-1-20151020 resource-timing-1-20151020 -resource-timing-2-20151020 +resource-timing-20151020 - a:resource-timing-1-20151021 resource-timing-1-20151021 -resource-timing-2-20151021 +resource-timing-20151021 - a:resource-timing-1-20151023 resource-timing-1-20151023 -resource-timing-2-20151023 +resource-timing-20151023 - a:resource-timing-1-20151025 resource-timing-1-20151025 -resource-timing-2-20151025 +resource-timing-20151025 - a:resource-timing-1-20151026 resource-timing-1-20151026 -resource-timing-2-20151026 +resource-timing-20151026 - a:resource-timing-1-20151027 resource-timing-1-20151027 -resource-timing-2-20151027 +resource-timing-20151027 - a:resource-timing-1-20151029 resource-timing-1-20151029 -resource-timing-2-20151029 +resource-timing-20151029 - a:resource-timing-1-20151125 resource-timing-1-20151125 -resource-timing-2-20151125 +resource-timing-20151125 - a:resource-timing-1-20160113 resource-timing-1-20160113 -resource-timing-2-20160113 +resource-timing-20160113 - a:resource-timing-1-20160204 resource-timing-1-20160204 -resource-timing-2-20160204 +resource-timing-20160204 - a:resource-timing-1-20160225 resource-timing-1-20160225 -resource-timing-2-20160225 +resource-timing-20160225 - a:resource-timing-1-20160421 resource-timing-1-20160421 -resource-timing-2-20160421 +resource-timing-20160421 - a:resource-timing-1-20160426 resource-timing-1-20160426 -resource-timing-2-20160426 +resource-timing-20160426 - a:resource-timing-1-20160428 resource-timing-1-20160428 -resource-timing-2-20160428 +resource-timing-20160428 - a:resource-timing-1-20160721 resource-timing-1-20160721 -resource-timing-2-20160721 +resource-timing-20160721 - a:resource-timing-1-20161103 resource-timing-1-20161103 -resource-timing-2-20161103 +resource-timing-20161103 - a:resource-timing-1-20170328 resource-timing-1-20170328 -resource-timing-2-20170328 +resource-timing-20170328 - a:resource-timing-1-20170329 resource-timing-1-20170329 -resource-timing-2-20170329 +resource-timing-20170329 - a:resource-timing-1-20170330 resource-timing-1-20170330 -resource-timing-2-20170330 +resource-timing-20170330 - a:resource-timing-1-20180419 resource-timing-1-20180419 -resource-timing-2-20180419 +resource-timing-20180419 - a:resource-timing-1-20180422 resource-timing-1-20180422 -resource-timing-2-20180422 +resource-timing-20180422 - a:resource-timing-1-20180516 resource-timing-1-20180516 -resource-timing-2-20180516 +resource-timing-20180516 - a:resource-timing-1-20180517 resource-timing-1-20180517 -resource-timing-2-20180517 +resource-timing-20180517 - a:resource-timing-1-20180518 resource-timing-1-20180518 -resource-timing-2-20180518 +resource-timing-20180518 - a:resource-timing-1-20181011 resource-timing-1-20181011 -resource-timing-2-20181011 +resource-timing-20181011 - a:resource-timing-1-20181017 resource-timing-1-20181017 -resource-timing-2-20181017 +resource-timing-20181017 - a:resource-timing-1-20181105 resource-timing-1-20181105 -resource-timing-2-20181105 +resource-timing-20181105 - a:resource-timing-1-20190307 resource-timing-1-20190307 -resource-timing-2-20190307 +resource-timing-20190307 - a:resource-timing-1-20190424 resource-timing-1-20190424 -resource-timing-2-20190424 +resource-timing-20190424 - a:resource-timing-1-20190516 resource-timing-1-20190516 -resource-timing-2-20190516 +resource-timing-20190516 - a:resource-timing-1-20190619 resource-timing-1-20190619 -resource-timing-2-20190619 +resource-timing-20190619 - a:resource-timing-1-20190626 resource-timing-1-20190626 -resource-timing-2-20190626 +resource-timing-20190626 - a:resource-timing-1-20190923 resource-timing-1-20190923 -resource-timing-2-20190923 +resource-timing-20190923 - a:resource-timing-1-20191128 resource-timing-1-20191128 -resource-timing-2-20191128 +resource-timing-20191128 - a:resource-timing-1-20200123 resource-timing-1-20200123 -resource-timing-2-20200123 +resource-timing-20200123 - a:resource-timing-1-20200218 resource-timing-1-20200218 -resource-timing-2-20200218 +resource-timing-20200218 - a:resource-timing-1-20200818 resource-timing-1-20200818 -resource-timing-2-20200818 +resource-timing-20200818 - a:resource-timing-1-20210301 resource-timing-1-20210301 -resource-timing-2-20210301 +resource-timing-20210301 - a:resource-timing-1-20210414 resource-timing-1-20210414 -resource-timing-2-20210414 +resource-timing-20210414 - a:resource-timing-1-20220114 resource-timing-1-20220114 -resource-timing-2-20220114 +resource-timing-20220114 - a:resource-timing-1-20220126 resource-timing-1-20220126 -resource-timing-2-20220126 +resource-timing-20220126 - a:resource-timing-1-20220127 resource-timing-1-20220127 -resource-timing-2-20220127 +resource-timing-20220127 - a:resource-timing-1-20220413 resource-timing-1-20220413 -resource-timing-2-20220413 +resource-timing-20220413 - a:resource-timing-1-20220617 resource-timing-1-20220617 -resource-timing-2-20220617 +resource-timing-20220617 - a:resource-timing-1-20220706 resource-timing-1-20220706 -resource-timing-2-20220706 +resource-timing-20220706 - a:resource-timing-1-20220707 resource-timing-1-20220707 -resource-timing-2-20220707 +resource-timing-20220707 - a:resource-timing-1-20220719 resource-timing-1-20220719 -resource-timing-2-20220719 +resource-timing-20220719 - a:resource-timing-1-20220831 resource-timing-1-20220831 -resource-timing-2-20220831 +resource-timing-20220831 - a:resource-timing-1-20220908 resource-timing-1-20220908 -resource-timing-2-20220908 +resource-timing-20220908 - a:resource-timing-1-20220926 resource-timing-1-20220926 -resource-timing-2-20220926 +resource-timing-20220926 - a:resource-timing-1-20220927 resource-timing-1-20220927 -resource-timing-2-20220927 +resource-timing-20220927 - a:resource-timing-1-20220929 resource-timing-1-20220929 -resource-timing-2-20220929 +resource-timing-20220929 - a:resource-timing-1-20221004 resource-timing-1-20221004 -resource-timing-2-20221004 +resource-timing-20221004 +- +a:resource-timing-1-20230511 +resource-timing-1-20230511 +resource-timing-20230511 +- +a:resource-timing-1-20240208 +resource-timing-1-20240208 +resource-timing-20240208 - -d:resource-timing-2 +a:resource-timing-1-20240426 +resource-timing-1-20240426 +resource-timing-20240426 +- +a:resource-timing-1-20240427 +resource-timing-1-20240427 +resource-timing-20240427 +- +a:resource-timing-1-20240524 +resource-timing-1-20240524 +resource-timing-20240524 +- +a:resource-timing-2 resource-timing-2 -4 October 2022 -CR -Resource Timing -https://www.w3.org/TR/resource-timing-2/ -https://w3c.github.io/resource-timing/ - - - -Yoav Weiss -Noam Rosenthal +resource-timing - -d:resource-timing-2-20110524 +a:resource-timing-2-20110524 resource-timing-2-20110524 -24 May 2011 -WD -Resource Timing -https://www.w3.org/TR/2011/WD-resource-timing-20110524/ -https://www.w3.org/TR/2011/WD-resource-timing-20110524/ - - +resource-timing-20110524 +- +a:resource-timing-2-20110811 +resource-timing-2-20110811 +resource-timing-20110811 +- +a:resource-timing-2-20120522 +resource-timing-2-20120522 +resource-timing-20120522 +- +a:resource-timing-2-20140325 +resource-timing-2-20140325 +resource-timing-20140325 +- +a:resource-timing-2-20140624 +resource-timing-2-20140624 +resource-timing-20140624 +- +a:resource-timing-2-20141216 +resource-timing-2-20141216 +resource-timing-20141216 +- +a:resource-timing-2-20150422 +resource-timing-2-20150422 +resource-timing-20150422 +- +a:resource-timing-2-20150506 +resource-timing-2-20150506 +resource-timing-20150506 +- +a:resource-timing-2-20150604 +resource-timing-2-20150604 +resource-timing-20150604 +- +a:resource-timing-2-20150721 +resource-timing-2-20150721 +resource-timing-20150721 +- +a:resource-timing-2-20150916 +resource-timing-2-20150916 +resource-timing-20150916 +- +a:resource-timing-2-20150918 +resource-timing-2-20150918 +resource-timing-20150918 +- +a:resource-timing-2-20150921 +resource-timing-2-20150921 +resource-timing-20150921 +- +a:resource-timing-2-20150923 +resource-timing-2-20150923 +resource-timing-20150923 +- +a:resource-timing-2-20150924 +resource-timing-2-20150924 +resource-timing-20150924 +- +a:resource-timing-2-20150925 +resource-timing-2-20150925 +resource-timing-20150925 +- +a:resource-timing-2-20150928 +resource-timing-2-20150928 +resource-timing-20150928 +- +a:resource-timing-2-20151014 +resource-timing-2-20151014 +resource-timing-20151014 +- +a:resource-timing-2-20151020 +resource-timing-2-20151020 +resource-timing-20151020 +- +a:resource-timing-2-20151021 +resource-timing-2-20151021 +resource-timing-20151021 +- +a:resource-timing-2-20151023 +resource-timing-2-20151023 +resource-timing-20151023 +- +a:resource-timing-2-20151025 +resource-timing-2-20151025 +resource-timing-20151025 +- +a:resource-timing-2-20151026 +resource-timing-2-20151026 +resource-timing-20151026 +- +a:resource-timing-2-20151027 +resource-timing-2-20151027 +resource-timing-20151027 +- +a:resource-timing-2-20151029 +resource-timing-2-20151029 +resource-timing-20151029 +- +a:resource-timing-2-20151125 +resource-timing-2-20151125 +resource-timing-20151125 +- +a:resource-timing-2-20160113 +resource-timing-2-20160113 +resource-timing-20160113 +- +a:resource-timing-2-20160204 +resource-timing-2-20160204 +resource-timing-20160204 +- +a:resource-timing-2-20160225 +resource-timing-2-20160225 +resource-timing-20160225 +- +a:resource-timing-2-20160421 +resource-timing-2-20160421 +resource-timing-20160421 +- +a:resource-timing-2-20160426 +resource-timing-2-20160426 +resource-timing-20160426 +- +a:resource-timing-2-20160428 +resource-timing-2-20160428 +resource-timing-20160428 +- +a:resource-timing-2-20160721 +resource-timing-2-20160721 +resource-timing-20160721 +- +a:resource-timing-2-20161103 +resource-timing-2-20161103 +resource-timing-20161103 +- +a:resource-timing-2-20170328 +resource-timing-2-20170328 +resource-timing-20170328 +- +a:resource-timing-2-20170329 +resource-timing-2-20170329 +resource-timing-20170329 +- +a:resource-timing-2-20170330 +resource-timing-2-20170330 +resource-timing-20170330 +- +a:resource-timing-2-20180419 +resource-timing-2-20180419 +resource-timing-20180419 +- +a:resource-timing-2-20180422 +resource-timing-2-20180422 +resource-timing-20180422 +- +a:resource-timing-2-20180516 +resource-timing-2-20180516 +resource-timing-20180516 +- +a:resource-timing-2-20180517 +resource-timing-2-20180517 +resource-timing-20180517 +- +a:resource-timing-2-20180518 +resource-timing-2-20180518 +resource-timing-20180518 +- +a:resource-timing-2-20181011 +resource-timing-2-20181011 +resource-timing-20181011 +- +a:resource-timing-2-20181017 +resource-timing-2-20181017 +resource-timing-20181017 +- +a:resource-timing-2-20181105 +resource-timing-2-20181105 +resource-timing-20181105 +- +a:resource-timing-2-20190307 +resource-timing-2-20190307 +resource-timing-20190307 +- +a:resource-timing-2-20190424 +resource-timing-2-20190424 +resource-timing-20190424 +- +a:resource-timing-2-20190516 +resource-timing-2-20190516 +resource-timing-20190516 +- +a:resource-timing-2-20190619 +resource-timing-2-20190619 +resource-timing-20190619 +- +a:resource-timing-2-20190626 +resource-timing-2-20190626 +resource-timing-20190626 +- +a:resource-timing-2-20190923 +resource-timing-2-20190923 +resource-timing-20190923 +- +a:resource-timing-2-20191128 +resource-timing-2-20191128 +resource-timing-20191128 +- +a:resource-timing-2-20200123 +resource-timing-2-20200123 +resource-timing-20200123 +- +a:resource-timing-2-20200218 +resource-timing-2-20200218 +resource-timing-20200218 +- +a:resource-timing-2-20200818 +resource-timing-2-20200818 +resource-timing-20200818 +- +a:resource-timing-2-20210301 +resource-timing-2-20210301 +resource-timing-20210301 +- +a:resource-timing-2-20210414 +resource-timing-2-20210414 +resource-timing-20210414 +- +a:resource-timing-2-20220114 +resource-timing-2-20220114 +resource-timing-20220114 +- +a:resource-timing-2-20220126 +resource-timing-2-20220126 +resource-timing-20220126 +- +a:resource-timing-2-20220127 +resource-timing-2-20220127 +resource-timing-20220127 +- +a:resource-timing-2-20220413 +resource-timing-2-20220413 +resource-timing-20220413 +- +a:resource-timing-2-20220617 +resource-timing-2-20220617 +resource-timing-20220617 +- +a:resource-timing-2-20220706 +resource-timing-2-20220706 +resource-timing-20220706 +- +a:resource-timing-2-20220707 +resource-timing-2-20220707 +resource-timing-20220707 +- +a:resource-timing-2-20220719 +resource-timing-2-20220719 +resource-timing-20220719 +- +a:resource-timing-2-20220831 +resource-timing-2-20220831 +resource-timing-20220831 +- +a:resource-timing-2-20220908 +resource-timing-2-20220908 +resource-timing-20220908 +- +a:resource-timing-2-20220926 +resource-timing-2-20220926 +resource-timing-20220926 +- +a:resource-timing-2-20220927 +resource-timing-2-20220927 +resource-timing-20220927 +- +a:resource-timing-2-20220929 +resource-timing-2-20220929 +resource-timing-20220929 +- +a:resource-timing-2-20221004 +resource-timing-2-20221004 +resource-timing-20221004 +- +a:resource-timing-2-20230511 +resource-timing-2-20230511 +resource-timing-20230511 +- +a:resource-timing-2-20240208 +resource-timing-2-20240208 +resource-timing-20240208 +- +a:resource-timing-2-20240426 +resource-timing-2-20240426 +resource-timing-20240426 +- +a:resource-timing-2-20240427 +resource-timing-2-20240427 +resource-timing-20240427 +- +a:resource-timing-2-20240524 +resource-timing-2-20240524 +resource-timing-20240524 +- +d:resource-timing-20110524 +resource-timing-20110524 +24 May 2011 +WD +Resource Timing +https://www.w3.org/TR/2011/WD-resource-timing-20110524/ +https://www.w3.org/TR/2011/WD-resource-timing-20110524/ + + Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20110811 -resource-timing-2-20110811 +d:resource-timing-20110811 +resource-timing-20110811 11 August 2011 WD Resource Timing @@ -1688,8 +2154,8 @@ https://www.w3.org/TR/2011/WD-resource-timing-20110811/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20120522 -resource-timing-2-20120522 +d:resource-timing-20120522 +resource-timing-20120522 22 May 2012 CR Resource Timing @@ -1702,8 +2168,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20140325 -resource-timing-2-20140325 +d:resource-timing-20140325 +resource-timing-20140325 25 March 2014 CR Resource Timing @@ -1717,8 +2183,8 @@ Arvind Jain Zhiheng Wang Anderson Quach - -d:resource-timing-2-20140624 -resource-timing-2-20140624 +d:resource-timing-20140624 +resource-timing-20140624 24 June 2014 CR Resource Timing @@ -1732,8 +2198,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20141216 -resource-timing-2-20141216 +d:resource-timing-20141216 +resource-timing-20141216 16 December 2014 WD Resource Timing @@ -1747,8 +2213,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150422 -resource-timing-2-20150422 +d:resource-timing-20150422 +resource-timing-20150422 22 April 2015 WD Resource Timing @@ -1762,8 +2228,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150506 -resource-timing-2-20150506 +d:resource-timing-20150506 +resource-timing-20150506 6 May 2015 WD Resource Timing @@ -1777,8 +2243,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150604 -resource-timing-2-20150604 +d:resource-timing-20150604 +resource-timing-20150604 4 June 2015 WD Resource Timing @@ -1793,8 +2259,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150721 -resource-timing-2-20150721 +d:resource-timing-20150721 +resource-timing-20150721 21 July 2015 WD Resource Timing @@ -1809,8 +2275,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150916 -resource-timing-2-20150916 +d:resource-timing-20150916 +resource-timing-20150916 16 September 2015 WD Resource Timing @@ -1825,8 +2291,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150918 -resource-timing-2-20150918 +d:resource-timing-20150918 +resource-timing-20150918 18 September 2015 WD Resource Timing @@ -1841,8 +2307,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150921 -resource-timing-2-20150921 +d:resource-timing-20150921 +resource-timing-20150921 21 September 2015 WD Resource Timing @@ -1857,8 +2323,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150923 -resource-timing-2-20150923 +d:resource-timing-20150923 +resource-timing-20150923 23 September 2015 WD Resource Timing @@ -1873,8 +2339,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150924 -resource-timing-2-20150924 +d:resource-timing-20150924 +resource-timing-20150924 24 September 2015 WD Resource Timing @@ -1889,8 +2355,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150925 -resource-timing-2-20150925 +d:resource-timing-20150925 +resource-timing-20150925 25 September 2015 WD Resource Timing @@ -1905,8 +2371,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20150928 -resource-timing-2-20150928 +d:resource-timing-20150928 +resource-timing-20150928 28 September 2015 WD Resource Timing @@ -1921,8 +2387,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151014 -resource-timing-2-20151014 +d:resource-timing-20151014 +resource-timing-20151014 14 October 2015 WD Resource Timing @@ -1937,8 +2403,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151020 -resource-timing-2-20151020 +d:resource-timing-20151020 +resource-timing-20151020 20 October 2015 WD Resource Timing @@ -1953,8 +2419,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151021 -resource-timing-2-20151021 +d:resource-timing-20151021 +resource-timing-20151021 21 October 2015 WD Resource Timing @@ -1969,8 +2435,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151023 -resource-timing-2-20151023 +d:resource-timing-20151023 +resource-timing-20151023 23 October 2015 WD Resource Timing @@ -1985,8 +2451,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151025 -resource-timing-2-20151025 +d:resource-timing-20151025 +resource-timing-20151025 25 October 2015 WD Resource Timing @@ -2001,8 +2467,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151026 -resource-timing-2-20151026 +d:resource-timing-20151026 +resource-timing-20151026 26 October 2015 WD Resource Timing @@ -2017,8 +2483,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151027 -resource-timing-2-20151027 +d:resource-timing-20151027 +resource-timing-20151027 27 October 2015 WD Resource Timing @@ -2033,8 +2499,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151029 -resource-timing-2-20151029 +d:resource-timing-20151029 +resource-timing-20151029 29 October 2015 WD Resource Timing @@ -2049,8 +2515,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20151125 -resource-timing-2-20151125 +d:resource-timing-20151125 +resource-timing-20151125 25 November 2015 WD Resource Timing @@ -2065,8 +2531,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160113 -resource-timing-2-20160113 +d:resource-timing-20160113 +resource-timing-20160113 13 January 2016 WD Resource Timing @@ -2081,8 +2547,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160204 -resource-timing-2-20160204 +d:resource-timing-20160204 +resource-timing-20160204 4 February 2016 WD Resource Timing @@ -2097,8 +2563,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160225 -resource-timing-2-20160225 +d:resource-timing-20160225 +resource-timing-20160225 25 February 2016 WD Resource Timing @@ -2113,8 +2579,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160421 -resource-timing-2-20160421 +d:resource-timing-20160421 +resource-timing-20160421 21 April 2016 WD Resource Timing @@ -2129,8 +2595,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160426 -resource-timing-2-20160426 +d:resource-timing-20160426 +resource-timing-20160426 26 April 2016 WD Resource Timing Level 1 @@ -2145,8 +2611,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160428 -resource-timing-2-20160428 +d:resource-timing-20160428 +resource-timing-20160428 28 April 2016 WD Resource Timing Level 1 @@ -2161,8 +2627,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20160721 -resource-timing-2-20160721 +d:resource-timing-20160721 +resource-timing-20160721 21 July 2016 CR Resource Timing Level 1 @@ -2177,8 +2643,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20161103 -resource-timing-2-20161103 +d:resource-timing-20161103 +resource-timing-20161103 3 November 2016 WD Resource Timing Level 2 @@ -2194,8 +2660,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20170328 -resource-timing-2-20170328 +d:resource-timing-20170328 +resource-timing-20170328 28 March 2017 WD Resource Timing Level 2 @@ -2211,8 +2677,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20170329 -resource-timing-2-20170329 +d:resource-timing-20170329 +resource-timing-20170329 29 March 2017 WD Resource Timing Level 2 @@ -2228,8 +2694,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20170330 -resource-timing-2-20170330 +d:resource-timing-20170330 +resource-timing-20170330 30 March 2017 CR Resource Timing Level 1 @@ -2244,8 +2710,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20180419 -resource-timing-2-20180419 +d:resource-timing-20180419 +resource-timing-20180419 19 April 2018 WD Resource Timing Level 2 @@ -2261,8 +2727,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20180422 -resource-timing-2-20180422 +d:resource-timing-20180422 +resource-timing-20180422 22 April 2018 WD Resource Timing Level 2 @@ -2278,8 +2744,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20180516 -resource-timing-2-20180516 +d:resource-timing-20180516 +resource-timing-20180516 16 May 2018 WD Resource Timing Level 2 @@ -2295,8 +2761,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20180517 -resource-timing-2-20180517 +d:resource-timing-20180517 +resource-timing-20180517 17 May 2018 WD Resource Timing Level 2 @@ -2312,8 +2778,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20180518 -resource-timing-2-20180518 +d:resource-timing-20180518 +resource-timing-20180518 18 May 2018 WD Resource Timing Level 2 @@ -2329,8 +2795,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20181011 -resource-timing-2-20181011 +d:resource-timing-20181011 +resource-timing-20181011 11 October 2018 WD Resource Timing Level 2 @@ -2346,8 +2812,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20181017 -resource-timing-2-20181017 +d:resource-timing-20181017 +resource-timing-20181017 17 October 2018 WD Resource Timing Level 2 @@ -2363,8 +2829,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20181105 -resource-timing-2-20181105 +d:resource-timing-20181105 +resource-timing-20181105 5 November 2018 WD Resource Timing Level 2 @@ -2380,8 +2846,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20190307 -resource-timing-2-20190307 +d:resource-timing-20190307 +resource-timing-20190307 7 March 2019 WD Resource Timing Level 2 @@ -2398,8 +2864,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20190424 -resource-timing-2-20190424 +d:resource-timing-20190424 +resource-timing-20190424 24 April 2019 WD Resource Timing Level 2 @@ -2416,8 +2882,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20190516 -resource-timing-2-20190516 +d:resource-timing-20190516 +resource-timing-20190516 16 May 2019 WD Resource Timing Level 2 @@ -2434,8 +2900,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20190619 -resource-timing-2-20190619 +d:resource-timing-20190619 +resource-timing-20190619 19 June 2019 WD Resource Timing Level 2 @@ -2452,8 +2918,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20190626 -resource-timing-2-20190626 +d:resource-timing-20190626 +resource-timing-20190626 26 June 2019 WD Resource Timing Level 2 @@ -2470,8 +2936,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20190923 -resource-timing-2-20190923 +d:resource-timing-20190923 +resource-timing-20190923 23 September 2019 WD Resource Timing Level 2 @@ -2488,8 +2954,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20191128 -resource-timing-2-20191128 +d:resource-timing-20191128 +resource-timing-20191128 28 November 2019 WD Resource Timing Level 2 @@ -2506,8 +2972,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20200123 -resource-timing-2-20200123 +d:resource-timing-20200123 +resource-timing-20200123 23 January 2020 WD Resource Timing Level 2 @@ -2524,8 +2990,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20200218 -resource-timing-2-20200218 +d:resource-timing-20200218 +resource-timing-20200218 18 February 2020 WD Resource Timing Level 2 @@ -2542,8 +3008,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20200818 -resource-timing-2-20200818 +d:resource-timing-20200818 +resource-timing-20200818 18 August 2020 WD Resource Timing Level 2 @@ -2560,8 +3026,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20210301 -resource-timing-2-20210301 +d:resource-timing-20210301 +resource-timing-20210301 1 March 2021 WD Resource Timing Level 2 @@ -2578,8 +3044,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20210414 -resource-timing-2-20210414 +d:resource-timing-20210414 +resource-timing-20210414 14 April 2021 WD Resource Timing Level 2 @@ -2597,8 +3063,8 @@ Jatinder Mann Zhiheng Wang Anderson Quach - -d:resource-timing-2-20220114 -resource-timing-2-20220114 +d:resource-timing-20220114 +resource-timing-20220114 14 January 2022 WD Resource Timing Level 2 @@ -2610,8 +3076,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220114/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220126 -resource-timing-2-20220126 +d:resource-timing-20220126 +resource-timing-20220126 26 January 2022 WD Resource Timing Level 2 @@ -2623,8 +3089,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220126/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220127 -resource-timing-2-20220127 +d:resource-timing-20220127 +resource-timing-20220127 27 January 2022 WD Resource Timing Level 2 @@ -2636,8 +3102,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220127/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220413 -resource-timing-2-20220413 +d:resource-timing-20220413 +resource-timing-20220413 13 April 2022 WD Resource Timing Level 2 @@ -2649,8 +3115,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220413/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220617 -resource-timing-2-20220617 +d:resource-timing-20220617 +resource-timing-20220617 17 June 2022 WD Resource Timing Level 2 @@ -2662,8 +3128,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220617/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220706 -resource-timing-2-20220706 +d:resource-timing-20220706 +resource-timing-20220706 6 July 2022 WD Resource Timing Level 2 @@ -2675,8 +3141,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220706/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220707 -resource-timing-2-20220707 +d:resource-timing-20220707 +resource-timing-20220707 7 July 2022 WD Resource Timing Level 2 @@ -2688,8 +3154,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220707/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220719 -resource-timing-2-20220719 +d:resource-timing-20220719 +resource-timing-20220719 19 July 2022 WD Resource Timing Level 2 @@ -2701,8 +3167,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220719/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220831 -resource-timing-2-20220831 +d:resource-timing-20220831 +resource-timing-20220831 31 August 2022 WD Resource Timing Level 2 @@ -2714,8 +3180,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220831/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220908 -resource-timing-2-20220908 +d:resource-timing-20220908 +resource-timing-20220908 8 September 2022 WD Resource Timing Level 2 @@ -2727,8 +3193,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220908/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220926 -resource-timing-2-20220926 +d:resource-timing-20220926 +resource-timing-20220926 26 September 2022 WD Resource Timing Level 2 @@ -2740,8 +3206,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220926/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220927 -resource-timing-2-20220927 +d:resource-timing-20220927 +resource-timing-20220927 27 September 2022 WD Resource Timing Level 2 @@ -2753,8 +3219,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220927/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20220929 -resource-timing-2-20220929 +d:resource-timing-20220929 +resource-timing-20220929 29 September 2022 WD Resource Timing Level 2 @@ -2766,8 +3232,8 @@ https://www.w3.org/TR/2022/WD-resource-timing-2-20220929/ Yoav Weiss Noam Rosenthal - -d:resource-timing-2-20221004 -resource-timing-2-20221004 +d:resource-timing-20221004 +resource-timing-20221004 4 October 2022 CR Resource Timing @@ -2779,289 +3245,70 @@ https://www.w3.org/TR/2022/CR-resource-timing-20221004/ Yoav Weiss Noam Rosenthal - -a:resource-timing-20110524 -resource-timing-20110524 -resource-timing-2-20110524 -- -a:resource-timing-20110811 -resource-timing-20110811 -resource-timing-2-20110811 -- -a:resource-timing-20120522 -resource-timing-20120522 -resource-timing-2-20120522 -- -a:resource-timing-20140325 -resource-timing-20140325 -resource-timing-2-20140325 -- -a:resource-timing-20140624 -resource-timing-20140624 -resource-timing-2-20140624 -- -a:resource-timing-20141216 -resource-timing-20141216 -resource-timing-2-20141216 -- -a:resource-timing-20150422 -resource-timing-20150422 -resource-timing-2-20150422 -- -a:resource-timing-20150506 -resource-timing-20150506 -resource-timing-2-20150506 -- -a:resource-timing-20150604 -resource-timing-20150604 -resource-timing-2-20150604 -- -a:resource-timing-20150721 -resource-timing-20150721 -resource-timing-2-20150721 -- -a:resource-timing-20150916 -resource-timing-20150916 -resource-timing-2-20150916 -- -a:resource-timing-20150918 -resource-timing-20150918 -resource-timing-2-20150918 -- -a:resource-timing-20150921 -resource-timing-20150921 -resource-timing-2-20150921 -- -a:resource-timing-20150923 -resource-timing-20150923 -resource-timing-2-20150923 -- -a:resource-timing-20150924 -resource-timing-20150924 -resource-timing-2-20150924 -- -a:resource-timing-20150925 -resource-timing-20150925 -resource-timing-2-20150925 -- -a:resource-timing-20150928 -resource-timing-20150928 -resource-timing-2-20150928 -- -a:resource-timing-20151014 -resource-timing-20151014 -resource-timing-2-20151014 -- -a:resource-timing-20151020 -resource-timing-20151020 -resource-timing-2-20151020 -- -a:resource-timing-20151021 -resource-timing-20151021 -resource-timing-2-20151021 -- -a:resource-timing-20151023 -resource-timing-20151023 -resource-timing-2-20151023 -- -a:resource-timing-20151025 -resource-timing-20151025 -resource-timing-2-20151025 -- -a:resource-timing-20151026 -resource-timing-20151026 -resource-timing-2-20151026 -- -a:resource-timing-20151027 -resource-timing-20151027 -resource-timing-2-20151027 -- -a:resource-timing-20151029 -resource-timing-20151029 -resource-timing-2-20151029 -- -a:resource-timing-20151125 -resource-timing-20151125 -resource-timing-2-20151125 -- -a:resource-timing-20160113 -resource-timing-20160113 -resource-timing-2-20160113 -- -a:resource-timing-20160204 -resource-timing-20160204 -resource-timing-2-20160204 -- -a:resource-timing-20160225 -resource-timing-20160225 -resource-timing-2-20160225 -- -a:resource-timing-20160421 -resource-timing-20160421 -resource-timing-2-20160421 -- -a:resource-timing-20160426 -resource-timing-20160426 -resource-timing-2-20160426 -- -a:resource-timing-20160428 -resource-timing-20160428 -resource-timing-2-20160428 -- -a:resource-timing-20160721 -resource-timing-20160721 -resource-timing-2-20160721 -- -a:resource-timing-20161103 -resource-timing-20161103 -resource-timing-2-20161103 -- -a:resource-timing-20170328 -resource-timing-20170328 -resource-timing-2-20170328 -- -a:resource-timing-20170329 -resource-timing-20170329 -resource-timing-2-20170329 -- -a:resource-timing-20170330 -resource-timing-20170330 -resource-timing-2-20170330 -- -a:resource-timing-20180419 -resource-timing-20180419 -resource-timing-2-20180419 -- -a:resource-timing-20180422 -resource-timing-20180422 -resource-timing-2-20180422 -- -a:resource-timing-20180516 -resource-timing-20180516 -resource-timing-2-20180516 -- -a:resource-timing-20180517 -resource-timing-20180517 -resource-timing-2-20180517 -- -a:resource-timing-20180518 -resource-timing-20180518 -resource-timing-2-20180518 -- -a:resource-timing-20181011 -resource-timing-20181011 -resource-timing-2-20181011 -- -a:resource-timing-20181017 -resource-timing-20181017 -resource-timing-2-20181017 -- -a:resource-timing-20181105 -resource-timing-20181105 -resource-timing-2-20181105 -- -a:resource-timing-20190307 -resource-timing-20190307 -resource-timing-2-20190307 -- -a:resource-timing-20190424 -resource-timing-20190424 -resource-timing-2-20190424 -- -a:resource-timing-20190516 -resource-timing-20190516 -resource-timing-2-20190516 -- -a:resource-timing-20190619 -resource-timing-20190619 -resource-timing-2-20190619 -- -a:resource-timing-20190626 -resource-timing-20190626 -resource-timing-2-20190626 -- -a:resource-timing-20190923 -resource-timing-20190923 -resource-timing-2-20190923 -- -a:resource-timing-20191128 -resource-timing-20191128 -resource-timing-2-20191128 -- -a:resource-timing-20200123 -resource-timing-20200123 -resource-timing-2-20200123 -- -a:resource-timing-20200218 -resource-timing-20200218 -resource-timing-2-20200218 -- -a:resource-timing-20200818 -resource-timing-20200818 -resource-timing-2-20200818 -- -a:resource-timing-20210301 -resource-timing-20210301 -resource-timing-2-20210301 -- -a:resource-timing-20210414 -resource-timing-20210414 -resource-timing-2-20210414 -- -a:resource-timing-20220114 -resource-timing-20220114 -resource-timing-2-20220114 -- -a:resource-timing-20220126 -resource-timing-20220126 -resource-timing-2-20220126 -- -a:resource-timing-20220127 -resource-timing-20220127 -resource-timing-2-20220127 -- -a:resource-timing-20220413 -resource-timing-20220413 -resource-timing-2-20220413 -- -a:resource-timing-20220617 -resource-timing-20220617 -resource-timing-2-20220617 -- -a:resource-timing-20220706 -resource-timing-20220706 -resource-timing-2-20220706 -- -a:resource-timing-20220707 -resource-timing-20220707 -resource-timing-2-20220707 -- -a:resource-timing-20220719 -resource-timing-20220719 -resource-timing-2-20220719 -- -a:resource-timing-20220831 -resource-timing-20220831 -resource-timing-2-20220831 -- -a:resource-timing-20220908 -resource-timing-20220908 -resource-timing-2-20220908 +d:resource-timing-20230511 +resource-timing-20230511 +11 May 2023 +CR +Resource Timing +https://www.w3.org/TR/2023/CRD-resource-timing-20230511/ +https://www.w3.org/TR/2023/CRD-resource-timing-20230511/ + + + +Yoav Weiss +Noam Rosenthal - -a:resource-timing-20220926 -resource-timing-20220926 -resource-timing-2-20220926 +d:resource-timing-20240208 +resource-timing-20240208 +8 February 2024 +CR +Resource Timing +https://www.w3.org/TR/2024/CRD-resource-timing-20240208/ +https://www.w3.org/TR/2024/CRD-resource-timing-20240208/ + + + +Yoav Weiss +Noam Rosenthal - -a:resource-timing-20220927 -resource-timing-20220927 -resource-timing-2-20220927 +d:resource-timing-20240426 +resource-timing-20240426 +26 April 2024 +CR +Resource Timing +https://www.w3.org/TR/2024/CRD-resource-timing-20240426/ +https://www.w3.org/TR/2024/CRD-resource-timing-20240426/ + + + +Yoav Weiss +Noam Rosenthal - -a:resource-timing-20220929 -resource-timing-20220929 -resource-timing-2-20220929 +d:resource-timing-20240427 +resource-timing-20240427 +27 April 2024 +CR +Resource Timing +https://www.w3.org/TR/2024/CRD-resource-timing-20240427/ +https://www.w3.org/TR/2024/CRD-resource-timing-20240427/ + + + +Yoav Weiss +Noam Rosenthal - -a:resource-timing-20221004 -resource-timing-20221004 -resource-timing-2-20221004 +d:resource-timing-20240524 +resource-timing-20240524 +24 May 2024 +CR +Resource Timing +https://www.w3.org/TR/2024/CRD-resource-timing-20240524/ +https://www.w3.org/TR/2024/CRD-resource-timing-20240524/ + + + +Yoav Weiss +Noam Rosenthal - d:respimg-usecases respimg-usecases @@ -3145,6 +3392,17 @@ https://www.w3.org/TR/2021/NOTE-responsible-use-spatial-20210527/ JOSEPH ABHAYARATNA Ed Parsons +- +d:responsive-image-client-hints +RESPONSIVE-IMAGE-CLIENT-HINTS + +Draft Community Group Report +Responsive Image Client Hints +https://wicg.github.io/responsive-image-client-hints/ + + + + - d:reusable-dialog-reqs reusable-dialog-reqs diff --git a/bikeshed/spec-data/readonly/biblio/biblio-rf.data b/bikeshed/spec-data/readonly/biblio/biblio-rf.data index 0ea6ad4cbb..fdfca6c5d2 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-rf.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-rf.data @@ -18388,11 +18388,11 @@ G. Cook d:rfc1528 rfc1528 October 1993 -Experimental +Historic Principles of Operation for the TPC.INT Subdomain: Remote Printing -- Technical Procedures https://www.rfc-editor.org/rfc/rfc1528 - +rfc9121 C. Malamud @@ -20746,7 +20746,7 @@ D. Ficarella d:rfc1706 rfc1706 October 1994 -Informational +Historic DNS NSAP Resource Records https://www.rfc-editor.org/rfc/rfc1706 @@ -30192,7 +30192,7 @@ R. Atkinson d:rfc2407 rfc2407 November 1998 -Proposed Standard +Historic The Internet IP Security Domain of Interpretation for ISAKMP https://www.rfc-editor.org/rfc/rfc2407 @@ -30204,7 +30204,7 @@ D. Piper d:rfc2408 rfc2408 November 1998 -Proposed Standard +Historic Internet Security Association and Key Management Protocol (ISAKMP) https://www.rfc-editor.org/rfc/rfc2408 @@ -30219,7 +30219,7 @@ J. Turner d:rfc2409 rfc2409 November 1998 -Proposed Standard +Historic The Internet Key Exchange (IKE) https://www.rfc-editor.org/rfc/rfc2409 @@ -41644,7 +41644,7 @@ Proposed Standard Instance Digests in HTTP https://www.rfc-editor.org/rfc/rfc3230 - +rfc9530 J. Mogul @@ -42214,7 +42214,7 @@ https://www.rfc-editor.org/rfc/rfc3270 -F. Le Faucheur +F. Le Faucheur, Ed. L. Wu B. Davie S. Davari @@ -42242,7 +42242,7 @@ Informational Overview and Principles of Internet Traffic Engineering https://www.rfc-editor.org/rfc/rfc3272 - +rfc9522 D. Awduche @@ -45492,7 +45492,7 @@ Informational Benchmarking Methodology for Firewall Performance https://www.rfc-editor.org/rfc/rfc3511 - +rfc9411 B. Hickman @@ -48191,7 +48191,7 @@ Proposed Standard Internet X.509 Public Key Infrastructure: Logotypes in X.509 Certificates https://www.rfc-editor.org/rfc/rfc3709 - +rfc9399 S. Santesson @@ -53708,7 +53708,7 @@ Proposed Standard A Universally Unique IDentifier (UUID) URN Namespace https://www.rfc-editor.org/rfc/rfc4122 - +rfc9562 P. Leach @@ -63848,7 +63848,7 @@ Proposed Standard OpenPGP Message Format https://www.rfc-editor.org/rfc/rfc4880 - +rfc9580 J. Callas @@ -69660,7 +69660,7 @@ Proposed Standard ISIS Extensions in Support of Inter-Autonomous System (AS) MPLS and GMPLS Traffic Engineering https://www.rfc-editor.org/rfc/rfc5316 - +rfc9346 M. Chen @@ -73286,7 +73286,7 @@ Informational The Camellia Cipher in OpenPGP https://www.rfc-editor.org/rfc/rfc5581 - +rfc9580 D. Shaw @@ -76235,7 +76235,7 @@ Proposed Standard Virtual Router Redundancy Protocol (VRRP) Version 3 for IPv4 and IPv6 https://www.rfc-editor.org/rfc/rfc5798 - +rfc9568 S. Nadas, Ed. @@ -79434,7 +79434,7 @@ Informational Emerging Service Provider Scenarios for IPv6 Deployment https://www.rfc-editor.org/rfc/rfc6036 - +rfc9386 B. Carpenter @@ -80621,7 +80621,7 @@ Proposed Standard Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS) https://www.rfc-editor.org/rfc/rfc6125 - +rfc9525 P. Saint-Andre @@ -81246,7 +81246,7 @@ Proposed Standard Internet X.509 Public Key Infrastructure -- Certificate Image https://www.rfc-editor.org/rfc/rfc6170 - +rfc9399 S. Santesson @@ -82542,6 +82542,17 @@ https://httpwg.org/specs/rfc6265.html A. Barth +- +d:rfc6265bis +RFC6265BIS + +Editor's Draft +Cookies: HTTP State Management Mechanism +https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis + + + + - d:rfc6266 rfc6266 @@ -85530,7 +85541,7 @@ Proposed Standard A Profile for Route Origin Authorizations (ROAs) https://www.rfc-editor.org/rfc/rfc6482 - +rfc9582 M. Lepinski @@ -87626,7 +87637,7 @@ Proposed Standard Elliptic Curve Cryptography (ECC) in OpenPGP https://www.rfc-editor.org/rfc/rfc6637 - +rfc9580 A. Jivsov @@ -88774,7 +88785,7 @@ Informational Publishing the "Tao of the IETF" as a Web Page https://www.rfc-editor.org/rfc/rfc6722 - +rfc9592 P. Hoffman, Ed. @@ -93245,7 +93256,7 @@ Best Current Practice IANA Considerations and IETF Protocol and Documentation Usage for IEEE 802 Parameters https://www.rfc-editor.org/rfc/rfc7042 - +rfc9542 D. Eastlake 3rd @@ -94392,7 +94403,7 @@ Informational Revision of the tcpControlBits IP Flow Information Export (IPFIX) Information Element https://www.rfc-editor.org/rfc/rfc7125 - +rfc9565 B. Trammell @@ -103419,7 +103430,7 @@ Proposed Standard North-Bound Distribution of Link-State and Traffic Engineering (TE) Information Using BGP https://www.rfc-editor.org/rfc/rfc7752 - +rfc9552 H. Gredler, Ed. @@ -104218,7 +104229,7 @@ Proposed Standard Problem Details for HTTP APIs https://www.rfc-editor.org/rfc/rfc7807 - +rfc9457 M. Nottingham @@ -106354,7 +106365,7 @@ M. Douglass d:rfc7954 rfc7954 September 2016 -Experimental +Historic Locator/ID Separation Protocol (LISP) Endpoint Identifier (EID) Block https://www.rfc-editor.org/rfc/rfc7954 @@ -106369,7 +106380,7 @@ V. Fuller d:rfc7955 rfc7955 September 2016 -Informational +Historic Management Guidelines for the Locator/ID Separation Protocol (LISP) Endpoint Identifier (EID) Block https://www.rfc-editor.org/rfc/rfc7955 @@ -111485,7 +111496,7 @@ Informational CUBIC for Fast Long-Distance Networks https://www.rfc-editor.org/rfc/rfc8312 - +rfc9438 I. Rhee @@ -112777,7 +112788,7 @@ Proposed Standard Internationalized Email Addresses in X.509 Certificates https://www.rfc-editor.org/rfc/rfc8398 - +rfc9598 A. Melnikov, Ed. @@ -112790,7 +112801,7 @@ Proposed Standard Internationalization Updates to RFC 5280 https://www.rfc-editor.org/rfc/rfc8399 - +rfc9549 R. Housley @@ -114232,7 +114243,7 @@ Best Current Practice DNS Terminology https://www.rfc-editor.org/rfc/rfc8499 - +rfc9499 P. Hoffman @@ -117555,7 +117566,7 @@ Proposed Standard PIM Message Type Space Extension and Reserved Bits https://www.rfc-editor.org/rfc/rfc8736 - +rfc9436 S. Venaas @@ -118285,7 +118296,7 @@ Best Current Practice Eligibility for the 2020-2021 Nominating Committee https://www.rfc-editor.org/rfc/rfc8788 - +rfc9389 B. Leiba @@ -118877,7 +118888,7 @@ Proposed Standard JavaScript Session Establishment Protocol (JSEP) https://www.rfc-editor.org/rfc/rfc8829 - +rfc9429 J. Uberti @@ -120180,7 +120191,7 @@ Proposed Standard IS-IS Application-Specific Link Attributes https://www.rfc-editor.org/rfc/rfc8919 - +rfc9479 L. Ginsberg @@ -120200,7 +120211,7 @@ Proposed Standard OSPF Application-Specific Link Attributes https://www.rfc-editor.org/rfc/rfc8920 - +rfc9492 P. Psenak, Ed. @@ -120512,7 +120523,7 @@ rfc8941 February 2021 Proposed Standard Structured Field Values for HTTP -https://www.rfc-editor.org/rfc/rfc8941 +https://httpwg.org/specs/rfc8941.html @@ -121188,7 +121199,7 @@ Experimental Additional Criteria for Nominating Committee Eligibility https://www.rfc-editor.org/rfc/rfc8989 - +rfc9389 B. Carpenter @@ -121781,7 +121792,7 @@ Proposed Standard Updates to the Allocation Policy for the Border Gateway Protocol - Link State (BGP-LS) Parameters Registries https://www.rfc-editor.org/rfc/rfc9029 - +rfc9552 A. Farrel @@ -122674,7 +122685,7 @@ Proposed Standard Finding and Using Geofeed Data https://www.rfc-editor.org/rfc/rfc9092 - +rfc9632 R. Bush @@ -122953,7 +122964,7 @@ rfc9110 June 2022 Internet Standard HTTP Semantics -https://www.rfc-editor.org/rfc/rfc9110 +https://httpwg.org/specs/rfc9110.html @@ -122967,7 +122978,7 @@ rfc9111 June 2022 Internet Standard HTTP Caching -https://www.rfc-editor.org/rfc/rfc9111 +https://httpwg.org/specs/rfc9111.html @@ -122981,7 +122992,7 @@ rfc9112 June 2022 Internet Standard HTTP/1.1 -https://www.rfc-editor.org/rfc/rfc9112 +https://httpwg.org/specs/rfc9112.html @@ -122995,7 +123006,7 @@ rfc9113 June 2022 Proposed Standard HTTP/2 -https://www.rfc-editor.org/rfc/rfc9113 +https://httpwg.org/specs/rfc9113.html @@ -123008,7 +123019,7 @@ rfc9114 June 2022 Proposed Standard HTTP/3 -https://www.rfc-editor.org/rfc/rfc9114 +https://httpwg.org/specs/rfc9114.html @@ -123104,6 +123115,32 @@ https://www.rfc-editor.org/rfc/rfc9120 K. Davies J. Arkko - +d:rfc9121 +rfc9121 +April 2023 +Informational +Deprecating Infrastructure "int" Domains +https://www.rfc-editor.org/rfc/rfc9121 + + + + +K. Davies +A. Baber +- +d:rfc9122 +rfc9122 +June 2023 +Proposed Standard +IANA Registry for Sieve Actions +https://www.rfc-editor.org/rfc/rfc9122 + + + + +A. Melnikov +K. Murchison +- d:rfc9124 rfc9124 January 2022 @@ -124269,7 +124306,7 @@ rfc9204 June 2022 Proposed Standard QPACK: Field Compression for HTTP/3 -https://www.rfc-editor.org/rfc/rfc9204 +https://httpwg.org/specs/rfc9204.html @@ -124283,7 +124320,7 @@ rfc9205 June 2022 Best Current Practice Building Protocols with HTTP -https://www.rfc-editor.org/rfc/rfc9205 +https://httpwg.org/specs/rfc9205.html @@ -124333,7 +124370,7 @@ rfc9209 June 2022 Proposed Standard The Proxy-Status HTTP Response Header Field -https://www.rfc-editor.org/rfc/rfc9209 +https://httpwg.org/specs/rfc9209.html @@ -124363,7 +124400,7 @@ rfc9211 June 2022 Proposed Standard The Cache-Status HTTP Response Header Field -https://www.rfc-editor.org/rfc/rfc9211 +https://httpwg.org/specs/rfc9211.html @@ -124388,7 +124425,7 @@ rfc9213 June 2022 Proposed Standard Targeted HTTP Cache Control -https://www.rfc-editor.org/rfc/rfc9213 +https://httpwg.org/specs/rfc9213.html @@ -124454,7 +124491,7 @@ rfc9218 June 2022 Proposed Standard Extensible Prioritization Scheme for HTTP -https://www.rfc-editor.org/rfc/rfc9218 +https://httpwg.org/specs/rfc9218.html @@ -124483,7 +124520,7 @@ rfc9220 June 2022 Proposed Standard Bootstrapping WebSockets with HTTP/3 -https://www.rfc-editor.org/rfc/rfc9220 +https://httpwg.org/specs/rfc9220.html @@ -126216,6 +126253,24 @@ a:rfc934 rfc934 rfc0934 - +d:rfc9340 +rfc9340 +March 2023 +Informational +Architectural Principles for a Quantum Internet +https://www.rfc-editor.org/rfc/rfc9340 + + + + +W. Kozlowski +S. Wehner +R. Van Meter +B. Rijsman +A. S. Cacciapuoti +M. Caleffi +S. Nagayama +- d:rfc9341 rfc9341 December 2022 @@ -126264,10 +126319,139 @@ M. Cociglio F. Qin R. Pang - +d:rfc9344 +rfc9344 +February 2023 +Experimental +CCNinfo: Discovering Content and Network Information in Content-Centric Networks +https://www.rfc-editor.org/rfc/rfc9344 + + + + +H. Asaeda +A. Ooka +X. Shao +- +d:rfc9345 +rfc9345 +July 2023 +Proposed Standard +Delegated Credentials for TLS and DTLS +https://www.rfc-editor.org/rfc/rfc9345 + + + + +R. Barnes +S. Iyengar +N. Sullivan +E. Rescorla +- +d:rfc9346 +rfc9346 +February 2023 +Proposed Standard +IS-IS Extensions in Support of Inter-Autonomous System (AS) MPLS and GMPLS Traffic Engineering +https://www.rfc-editor.org/rfc/rfc9346 + + + + +M. Chen +L. Ginsberg +S. Previdi +D. Xiaodong +- +d:rfc9347 +rfc9347 +January 2023 +Proposed Standard +Aggregation and Fragmentation Mode for Encapsulating Security Payload (ESP) and Its Use for IP Traffic Flow Security (IP-TFS) +https://www.rfc-editor.org/rfc/rfc9347 + + + + +C. Hopps +- +d:rfc9348 +rfc9348 +January 2023 +Proposed Standard +A YANG Data Model for IP Traffic Flow Security +https://www.rfc-editor.org/rfc/rfc9348 + + + + +D. Fedyk +C. Hopps +- +d:rfc9349 +rfc9349 +January 2023 +Proposed Standard +Definitions of Managed Objects for IP Traffic Flow Security +https://www.rfc-editor.org/rfc/rfc9349 + + + + +D. Fedyk +E. Kinzie +- a:rfc935 rfc935 rfc0935 - +d:rfc9350 +rfc9350 +February 2023 +Proposed Standard +IGP Flexible Algorithm +https://www.rfc-editor.org/rfc/rfc9350 + + + + +P. Psenak, Ed. +S. Hegde +C. Filsfils +K. Talaulikar +A. Gulko +- +d:rfc9351 +rfc9351 +February 2023 +Proposed Standard +Border Gateway Protocol - Link State (BGP-LS) Extensions for Flexible Algorithm Advertisement +https://www.rfc-editor.org/rfc/rfc9351 + + + + +K. Talaulikar, Ed. +P. Psenak +S. Zandi +G. Dawra +- +d:rfc9352 +rfc9352 +February 2023 +Proposed Standard +IS-IS Extensions to Support Segment Routing over the IPv6 Data Plane +https://www.rfc-editor.org/rfc/rfc9352 + + + + +P. Psenak, Ed. +C. Filsfils +A. Bashandy +B. Decraene +Z. Hu +- d:rfc9353 rfc9353 January 2023 @@ -126300,6 +126484,21 @@ Y-G. Hong X. Tang C. Perkins - +d:rfc9355 +rfc9355 +February 2023 +Proposed Standard +OSPF Bidirectional Forwarding Detection (BFD) Strict-Mode +https://www.rfc-editor.org/rfc/rfc9355 + + + + +K. Talaulikar, Ed. +P. Psenak +A. Fu +M. Rajesh +- d:rfc9356 rfc9356 January 2023 @@ -126313,129 +126512,3650 @@ https://www.rfc-editor.org/rfc/rfc9356 K. Talaulikar, Ed. P. Psenak - +d:rfc9357 +rfc9357 +February 2023 +Proposed Standard +Label Switched Path (LSP) Object Flag Extension for Stateful PCE +https://www.rfc-editor.org/rfc/rfc9357 + + + + +Q. Xiong +- +d:rfc9358 +rfc9358 +February 2023 +Proposed Standard +Path Computation Element Communication Protocol (PCEP) Extensions for Establishing Relationships between Sets of Label Switched Paths and Virtual Networks +https://www.rfc-editor.org/rfc/rfc9358 + + + + +Y. Lee +H. Zheng +D. Ceccarelli +- +d:rfc9359 +rfc9359 +April 2023 +Proposed Standard +Echo Request/Reply for Enabled In Situ OAM (IOAM) Capabilities +https://www.rfc-editor.org/rfc/rfc9359 + + + + +X. Min +G. Mirsky +L. Bo +- a:rfc936 rfc936 rfc0936 - -a:rfc937 -rfc937 -rfc0937 +d:rfc9360 +rfc9360 +February 2023 +Proposed Standard +CBOR Object Signing and Encryption (COSE): Header Parameters for Carrying and Referencing X.509 Certificates +https://www.rfc-editor.org/rfc/rfc9360 + + + + +J. Schaad - -a:rfc938 -rfc938 -rfc0938 +d:rfc9361 +rfc9361 +March 2023 +Informational +ICANN Trademark Clearinghouse (TMCH) Functional Specifications +https://www.rfc-editor.org/rfc/rfc9361 + + + + +G. Lozano - -a:rfc939 -rfc939 -rfc0939 +d:rfc9362 +rfc9362 +February 2023 +Proposed Standard +Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel Configuration Attributes for Robust Block Transmission +https://www.rfc-editor.org/rfc/rfc9362 + + + + +M. Boucadair +J. Shallow - -a:rfc94 -rfc94 -rfc0094 +d:rfc9363 +rfc9363 +March 2023 +Proposed Standard +A YANG Data Model for Static Context Header Compression (SCHC) +https://www.rfc-editor.org/rfc/rfc9363 + + + + +A. Minaburo +L. Toutain - -a:rfc940 -rfc940 -rfc0940 +d:rfc9364 +rfc9364 +February 2023 +Best Current Practice +DNS Security Extensions (DNSSEC) +https://www.rfc-editor.org/rfc/rfc9364 + + + + +P. Hoffman - -a:rfc941 -rfc941 -rfc0941 +d:rfc9365 +rfc9365 +March 2023 +Informational +IPv6 Wireless Access in Vehicular Environments (IPWAVE): Problem Statement and Use Cases +https://www.rfc-editor.org/rfc/rfc9365 + + + + +J. Jeong, Ed. - -a:rfc942 -rfc942 -rfc0942 +d:rfc9366 +rfc9366 +March 2023 +Proposed Standard +Multiple SIP Reason Header Field Values +https://www.rfc-editor.org/rfc/rfc9366 + + + + +R. Sparks - -a:rfc943 -rfc943 -rfc0943 +d:rfc9367 +rfc9367 +February 2023 +Informational +GOST Cipher Suites for Transport Layer Security (TLS) Protocol Version 1.3 +https://www.rfc-editor.org/rfc/rfc9367 + + + + +S. Smyshlyaev, Ed. +E. Alekseev +E. Griboedova +A. Babueva +L. Nikiforova - -a:rfc944 -rfc944 -rfc0944 +d:rfc9368 +rfc9368 +May 2023 +Proposed Standard +Compatible Version Negotiation for QUIC +https://www.rfc-editor.org/rfc/rfc9368 + + + + +D. Schinazi +E. Rescorla - -a:rfc945 -rfc945 -rfc0945 +d:rfc9369 +rfc9369 +May 2023 +Proposed Standard +QUIC Version 2 +https://www.rfc-editor.org/rfc/rfc9369 + + + + +M. Duke - -a:rfc946 -rfc946 -rfc0946 +a:rfc937 +rfc937 +rfc0937 - -a:rfc947 -rfc947 -rfc0947 +d:rfc9370 +rfc9370 +May 2023 +Proposed Standard +Multiple Key Exchanges in the Internet Key Exchange Protocol Version 2 (IKEv2) +https://www.rfc-editor.org/rfc/rfc9370 + + + + +CJ. Tjhai +M. Tomlinson +G. Bartlett +S. Fluhrer +D. Van Geest +O. Garcia-Morchon +V. Smyslov - -a:rfc948 -rfc948 -rfc0948 +d:rfc9371 +rfc9371 +March 2023 +Informational +Registration Procedures for Private Enterprise Numbers (PENs) +https://www.rfc-editor.org/rfc/rfc9371 + + + + +A. Baber +P. Hoffman - -a:rfc949 -rfc949 -rfc0949 +d:rfc9372 +rfc9372 +March 2023 +Informational +L-Band Digital Aeronautical Communications System (LDACS) +https://www.rfc-editor.org/rfc/rfc9372 + + + + +N. Mäurer, Ed. +T. Gräupl, Ed. +C. Schmitt, Ed. - -a:rfc95 -rfc95 -rfc0095 +d:rfc9373 +rfc9373 +March 2023 +Proposed Standard +EdDSA Value for IPSECKEY +https://www.rfc-editor.org/rfc/rfc9373 + + + + +R. Moskowitz +T. Kivinen +M. Richardson - -a:rfc950 -rfc950 -rfc0950 +d:rfc9374 +rfc9374 +March 2023 +Proposed Standard +DRIP Entity Tag (DET) for Unmanned Aircraft System Remote ID (UAS RID) +https://www.rfc-editor.org/rfc/rfc9374 + + + + +R. Moskowitz +S. Card +A. Wiethuechter +A. Gurtov - -a:rfc951 -rfc951 -rfc0951 +d:rfc9375 +rfc9375 +April 2023 +Proposed Standard +A YANG Data Model for Network and VPN Service Performance Monitoring +https://www.rfc-editor.org/rfc/rfc9375 + + + + +B. Wu, Ed. +Q. Wu, Ed. +M. Boucadair, Ed. +O. Gonzalez de Dios +B. Wen - -a:rfc952 -rfc952 -rfc0952 +d:rfc9376 +rfc9376 +March 2023 +Informational +Applicability of GMPLS for beyond 100 Gbit/s Optical Transport Network +https://www.rfc-editor.org/rfc/rfc9376 + + + + +Q. Wang, Ed. +R. Valiveti, Ed. +H. Zheng, Ed. +H. van Helvoort +S. Belotti - -a:rfc953 -rfc953 -rfc0953 +d:rfc9377 +rfc9377 +April 2023 +Experimental +IS-IS Flood Reflection +https://www.rfc-editor.org/rfc/rfc9377 + + + + +T. Przygienda, Ed. +C. Bowers +Y. Lee +A. Sharma +R. White - -a:rfc954 -rfc954 -rfc0954 +d:rfc9378 +rfc9378 +April 2023 +Informational +In Situ Operations, Administration, and Maintenance (IOAM) Deployment +https://www.rfc-editor.org/rfc/rfc9378 + + + + +F. Brockners, Ed. +S. Bhandari, Ed. +D. Bernier +T. Mizrahi, Ed. - -a:rfc955 -rfc955 -rfc0955 +a:rfc938 +rfc938 +rfc0938 - -a:rfc956 -rfc956 -rfc0956 +d:rfc9380 +rfc9380 +August 2023 +Informational +Hashing to Elliptic Curves +https://www.rfc-editor.org/rfc/rfc9380 + + + + +A. Faz-Hernandez +S. Scott +N. Sullivan +R. S. Wahby +C. A. Wood - -a:rfc957 -rfc957 -rfc0957 +d:rfc9381 +rfc9381 +August 2023 +Informational +Verifiable Random Functions (VRFs) +https://www.rfc-editor.org/rfc/rfc9381 + + + + +S. Goldberg +L. Reyzin +D. Papadopoulos +J. Včelák - -a:rfc958 -rfc958 -rfc0958 +d:rfc9382 +rfc9382 +September 2023 +Informational +SPAKE2, a Password-Authenticated Key Exchange +https://www.rfc-editor.org/rfc/rfc9382 + + + + +W. Ladd - -a:rfc959 -rfc959 -rfc0959 +d:rfc9383 +rfc9383 +September 2023 +Informational +SPAKE2+, an Augmented Password-Authenticated Key Exchange (PAKE) Protocol +https://www.rfc-editor.org/rfc/rfc9383 + + + + +T. Taubert +C. A. Wood - -a:rfc96 -rfc96 -rfc0096 +d:rfc9384 +rfc9384 +March 2023 +Proposed Standard +A BGP Cease NOTIFICATION Subcode for Bidirectional Forwarding Detection (BFD) +https://www.rfc-editor.org/rfc/rfc9384 + + + + +J. Haas - -a:rfc960 -rfc960 -rfc0960 +d:rfc9385 +rfc9385 +May 2023 +Informational +Using GOST Cryptographic Algorithms in the Internet Key Exchange Protocol Version 2 (IKEv2) +https://www.rfc-editor.org/rfc/rfc9385 + + + + +V. Smyslov - -a:rfc961 -rfc961 -rfc0961 +d:rfc9386 +rfc9386 +April 2023 +Informational +IPv6 Deployment Status +https://www.rfc-editor.org/rfc/rfc9386 + + + + +G. Fioccola +P. Volpato +J. Palet Martinez +G. Mishra +C. Xie - -a:rfc962 -rfc962 -rfc0962 +d:rfc9387 +rfc9387 +April 2023 +Informational +Use Cases for DDoS Open Threat Signaling (DOTS) Telemetry +https://www.rfc-editor.org/rfc/rfc9387 + + + + +Y. Hayashi +M. Chen +L. Su - -a:rfc963 -rfc963 -rfc0963 +d:rfc9388 +rfc9388 +July 2023 +Proposed Standard +Content Delivery Network Interconnection (CDNI) Footprint Types: Country Subdivision Code and Footprint Union +https://www.rfc-editor.org/rfc/rfc9388 + + + + +N. Sopher +S. Mishra +- +d:rfc9389 +rfc9389 +April 2023 +Best Current Practice +Nominating Committee Eligibility +https://www.rfc-editor.org/rfc/rfc9389 + + + + +M. Duke +- +a:rfc939 +rfc939 +rfc0939 +- +d:rfc9390 +rfc9390 +April 2023 +Proposed Standard +Diameter Group Signaling +https://www.rfc-editor.org/rfc/rfc9390 + + + + +M. Jones +M. Liebsch +L. Morand +- +d:rfc9391 +rfc9391 +April 2023 +Proposed Standard +Static Context Header Compression over Narrowband Internet of Things +https://www.rfc-editor.org/rfc/rfc9391 + + + + +E. Ramos +A. Minaburo +- +d:rfc9392 +rfc9392 +April 2023 +Informational +Sending RTP Control Protocol (RTCP) Feedback for Congestion Control in Interactive Multimedia Conferences +https://www.rfc-editor.org/rfc/rfc9392 + + + + +C. Perkins +- +d:rfc9393 +rfc9393 +June 2023 +Proposed Standard +Concise Software Identification Tags +https://www.rfc-editor.org/rfc/rfc9393 + + + + +H. Birkholz +J. Fitzgerald-McKay +C. Schmidt +D. Waltermire +- +d:rfc9394 +rfc9394 +June 2023 +Proposed Standard +IMAP PARTIAL Extension for Paged SEARCH and FETCH +https://www.rfc-editor.org/rfc/rfc9394 + + + + +A. Melnikov +A. P. Achuthan +V. Nagulakonda +L. Alves +- +d:rfc9395 +rfc9395 +April 2023 +Proposed Standard +Deprecation of the Internet Key Exchange Version 1 (IKEv1) Protocol and Obsoleted Algorithms +https://www.rfc-editor.org/rfc/rfc9395 + + + + +P. Wouters, Ed. +- +d:rfc9396 +rfc9396 +May 2023 +Proposed Standard +OAuth 2.0 Rich Authorization Requests +https://www.rfc-editor.org/rfc/rfc9396 + + + + +T. Lodderstedt +J. Richer +B. Campbell +- +d:rfc9397 +rfc9397 +July 2023 +Informational +Trusted Execution Environment Provisioning (TEEP) Architecture +https://www.rfc-editor.org/rfc/rfc9397 + + + + +M. Pei +H. Tschofenig +D. Thaler +D. Wheeler +- +d:rfc9398 +rfc9398 +May 2023 +Proposed Standard +A YANG Data Model for Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) Proxy Devices +https://www.rfc-editor.org/rfc/rfc9398 + + + + +H. Zhao +X. Liu +Y. Liu +M. Panchanathan +M. Sivakumar +- +d:rfc9399 +rfc9399 +May 2023 +Proposed Standard +Internet X.509 Public Key Infrastructure: Logotypes in X.509 Certificates +https://www.rfc-editor.org/rfc/rfc9399 + + + + +S. Santesson +R. Housley +T. Freeman +L. Rosenthol +- +a:rfc94 +rfc94 +rfc0094 +- +a:rfc940 +rfc940 +rfc0940 +- +d:rfc9400 +rfc9400 +June 2023 +Informational +Guidelines for the Organization of Fully Online Meetings +https://www.rfc-editor.org/rfc/rfc9400 + + + + +M. Kühlewind +M. Duke +- +d:rfc9401 +rfc9401 +1 April 2023 +Informational +The Addition of the Death (DTH) Flag to TCP +https://www.rfc-editor.org/rfc/rfc9401 + + + + +S. Toyosawa +- +d:rfc9402 +rfc9402 +1 April 2023 +Informational +Concat Notation +https://www.rfc-editor.org/rfc/rfc9402 + + + + +M. Basaglia +J. Bernards +J. Maas +- +d:rfc9403 +rfc9403 +November 2023 +Proposed Standard +A YANG Data Model for RIB Extensions +https://www.rfc-editor.org/rfc/rfc9403 + + + + +A. Lindem +Y. Qu +- +d:rfc9404 +rfc9404 +August 2023 +Proposed Standard +JSON Meta Application Protocol (JMAP) Blob Management Extension +https://www.rfc-editor.org/rfc/rfc9404 + + + + +B. Gondwana, Ed. +- +d:rfc9405 +rfc9405 +1 April 2023 +Informational +AI Sarcasm Detection: Insult Your AI without Offending It +https://www.rfc-editor.org/rfc/rfc9405 + + + + +C. GPT +R. L. Barnes, Ed. +- +d:rfc9406 +rfc9406 +May 2023 +Proposed Standard +HyStart++: Modified Slow Start for TCP +https://www.rfc-editor.org/rfc/rfc9406 + + + + +P. Balasubramanian +Y. Huang +M. Olson +- +d:rfc9407 +rfc9407 +June 2023 +Experimental +Tetrys: An On-the-Fly Network Coding Protocol +https://www.rfc-editor.org/rfc/rfc9407 + + + + +J. Detchart +E. Lochin +J. Lacan +V. Roca +- +d:rfc9408 +rfc9408 +June 2023 +Proposed Standard +A YANG Network Data Model for Service Attachment Points (SAPs) +https://www.rfc-editor.org/rfc/rfc9408 + + + + +M. Boucadair, Ed. +O. Gonzalez de Dios +S. Barguil +Q. Wu +V. Lopez +- +d:rfc9409 +rfc9409 +July 2023 +Informational +The 'sip-trunking-capability' Link Relation Type +https://www.rfc-editor.org/rfc/rfc9409 + + + + +K. Inamdar +S. Narayanan +D. Engi +G. Salgueiro +- +a:rfc941 +rfc941 +rfc0941 +- +d:rfc9410 +rfc9410 +July 2023 +Proposed Standard +Handling of Identity Header Errors for Secure Telephone Identity Revisited (STIR) +https://www.rfc-editor.org/rfc/rfc9410 + + + + +C. Wendt +- +d:rfc9411 +rfc9411 +March 2023 +Informational +Benchmarking Methodology for Network Security Device Performance +https://www.rfc-editor.org/rfc/rfc9411 + + + + +B. Balarajah +C. Rossenhoevel +B. Monkman +- +d:rfc9412 +rfc9412 +June 2023 +Proposed Standard +The ORIGIN Extension in HTTP/3 +https://httpwg.org/specs/rfc9412.html + + + + +M. Bishop +- +d:rfc9413 +rfc9413 +June 2023 +Informational +Maintaining Robust Protocols +https://www.rfc-editor.org/rfc/rfc9413 + + + + +M. Thomson +D. Schinazi +- +d:rfc9414 +rfc9414 +July 2023 +Informational +Unfortunate History of Transient Numeric Identifiers +https://www.rfc-editor.org/rfc/rfc9414 + + + + +F. Gont +I. Arce +- +d:rfc9415 +rfc9415 +July 2023 +Informational +On the Generation of Transient Numeric Identifiers +https://www.rfc-editor.org/rfc/rfc9415 + + + + +F. Gont +I. Arce +- +d:rfc9416 +rfc9416 +July 2023 +Best Current Practice +Security Considerations for Transient Numeric Identifiers Employed in Network Protocols +https://www.rfc-editor.org/rfc/rfc9416 + + + + +F. Gont +I. Arce +- +d:rfc9417 +rfc9417 +July 2023 +Informational +Service Assurance for Intent-Based Networking Architecture +https://www.rfc-editor.org/rfc/rfc9417 + + + + +B. Claise +J. Quilbeuf +D. Lopez +D. Voyer +T. Arumugam +- +d:rfc9418 +rfc9418 +July 2023 +Proposed Standard +A YANG Data Model for Service Assurance +https://www.rfc-editor.org/rfc/rfc9418 + + + + +B. Claise +J. Quilbeuf +P. Lucente +P. Fasano +T. Arumugam +- +d:rfc9419 +rfc9419 +July 2023 +Informational +Considerations on Application - Network Collaboration Using Path Signals +https://www.rfc-editor.org/rfc/rfc9419 + + + + +J. Arkko +T. Hardie +T. Pauly +M. Kühlewind +- +a:rfc942 +rfc942 +rfc0942 +- +d:rfc9420 +rfc9420 +July 2023 +Proposed Standard +The Messaging Layer Security (MLS) Protocol +https://www.rfc-editor.org/rfc/rfc9420 + + + + +R. Barnes +B. Beurdouche +R. Robert +J. Millican +E. Omara +K. Cohn-Gordon +- +d:rfc9421 +rfc9421 +February 2024 +Proposed Standard +HTTP Message Signatures +https://www.rfc-editor.org/rfc/rfc9421 + + + + +A. Backman, Ed. +J. Richer, Ed. +M. Sporny +- +d:rfc9422 +rfc9422 +February 2024 +Proposed Standard +The LIMITS SMTP Service Extension +https://www.rfc-editor.org/rfc/rfc9422 + + + + +N. Freed +J. Klensin +- +d:rfc9423 +rfc9423 +April 2024 +Informational +Constrained RESTful Environments (CoRE) Target Attributes Registry +https://www.rfc-editor.org/rfc/rfc9423 + + + + +C. Bormann +- +d:rfc9424 +rfc9424 +August 2023 +Informational +Indicators of Compromise (IoCs) and Their Role in Attack Defence +https://www.rfc-editor.org/rfc/rfc9424 + + + + +K. Paine +O. Whitehouse +J. Sellwood +A. Shaw +- +d:rfc9425 +rfc9425 +June 2023 +Proposed Standard +JSON Meta Application Protocol (JMAP) for Quotas +https://www.rfc-editor.org/rfc/rfc9425 + + + + +R. Cordier, Ed. +- +d:rfc9426 +rfc9426 +July 2023 +Informational +BATched Sparse (BATS) Coding Scheme for Multi-hop Data Transport +https://www.rfc-editor.org/rfc/rfc9426 + + + + +S. Yang +X. Huang +R. Yeung +J. Zao +- +d:rfc9427 +rfc9427 +June 2023 +Proposed Standard +TLS-Based Extensible Authentication Protocol (EAP) Types for Use with TLS 1.3 +https://www.rfc-editor.org/rfc/rfc9427 + + + + +A. DeKok +- +d:rfc9428 +rfc9428 +July 2023 +Proposed Standard +Transmission of IPv6 Packets over Near Field Communication +https://www.rfc-editor.org/rfc/rfc9428 + + + + +Y. Choi, Ed. +Y-G. Hong +J-S. Youn +- +d:rfc9429 +rfc9429 +April 2024 +Proposed Standard +JavaScript Session Establishment Protocol (JSEP) +https://www.rfc-editor.org/rfc/rfc9429 + + + + +J. Uberti +C. Jennings +E. Rescorla, Ed. +- +a:rfc943 +rfc943 +rfc0943 +- +d:rfc9430 +rfc9430 +July 2023 +Proposed Standard +Extension of the Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE) to Transport Layer Security (TLS) +https://www.rfc-editor.org/rfc/rfc9430 + + + + +O. Bergmann +J. Preuß Mattsson +G. Selander +- +d:rfc9431 +rfc9431 +July 2023 +Proposed Standard +Message Queuing Telemetry Transport (MQTT) and Transport Layer Security (TLS) Profile of Authentication and Authorization for Constrained Environments (ACE) Framework +https://www.rfc-editor.org/rfc/rfc9431 + + + + +C. Sengul +A. Kirby +- +d:rfc9432 +rfc9432 +July 2023 +Proposed Standard +DNS Catalog Zones +https://www.rfc-editor.org/rfc/rfc9432 + + + + +P. van Dijk +L. Peltan +O. Surý +W. Toorop +C.R. Monshouwer +P. Thomassen +A. Sargsyan +- +d:rfc9433 +rfc9433 +July 2023 +Informational +Segment Routing over IPv6 for the Mobile User Plane +https://www.rfc-editor.org/rfc/rfc9433 + + + + +S. Matsushima, Ed. +C. Filsfils +M. Kohno +P. Camarillo, Ed. +D. Voyer +- +d:rfc9434 +rfc9434 +July 2023 +Informational +Drone Remote Identification Protocol (DRIP) Architecture +https://www.rfc-editor.org/rfc/rfc9434 + + + + +S. Card +A. Wiethuechter +R. Moskowitz +S. Zhao, Ed. +A. Gurtov +- +d:rfc9435 +rfc9435 +July 2023 +Informational +Considerations for Assigning a New Recommended Differentiated Services Code Point (DSCP) +https://www.rfc-editor.org/rfc/rfc9435 + + + + +A. Custura +G. Fairhurst +R. Secchi +- +d:rfc9436 +rfc9436 +August 2023 +Proposed Standard +PIM Message Type Space Extension and Reserved Bits +https://www.rfc-editor.org/rfc/rfc9436 + + + + +S. Venaas +A. Retana +- +d:rfc9437 +rfc9437 +August 2023 +Proposed Standard +Publish/Subscribe Functionality for the Locator/ID Separation Protocol (LISP) +https://www.rfc-editor.org/rfc/rfc9437 + + + + +A. Rodriguez-Natal +V. Ermagan +A. Cabellos +S. Barkai +M. Boucadair +- +d:rfc9438 +rfc9438 +August 2023 +Proposed Standard +CUBIC for Fast and Long-Distance Networks +https://www.rfc-editor.org/rfc/rfc9438 + + + + +L. Xu +S. Ha +I. Rhee +V. Goel +L. Eggert, Ed. +- +d:rfc9439 +rfc9439 +August 2023 +Proposed Standard +Application-Layer Traffic Optimization (ALTO) Performance Cost Metrics +https://www.rfc-editor.org/rfc/rfc9439 + + + + +Q. Wu +Y. Yang +Y. Lee +D. Dhody +S. Randriamasy +L. Contreras +- +a:rfc944 +rfc944 +rfc0944 +- +d:rfc9440 +rfc9440 +July 2023 +Informational +Client-Cert HTTP Header Field +https://httpwg.org/specs/rfc9440.html + + + + +B. Campbell +M. Bishop +- +d:rfc9441 +rfc9441 +July 2023 +Proposed Standard +Static Context Header Compression (SCHC) Compound Acknowledgement (ACK) +https://www.rfc-editor.org/rfc/rfc9441 + + + + +J. Zúñiga +C. Gomez +S. Aguilar +L. Toutain +S. Céspedes +D. Wistuba +- +d:rfc9442 +rfc9442 +July 2023 +Proposed Standard +Static Context Header Compression (SCHC) over Sigfox Low-Power Wide Area Network (LPWAN) +https://www.rfc-editor.org/rfc/rfc9442 + + + + +J. Zúñiga +C. Gomez +S. Aguilar +L. Toutain +S. Céspedes +D. Wistuba +J. Boite +- +d:rfc9443 +rfc9443 +July 2023 +Proposed Standard +Multiplexing Scheme Updates for QUIC +https://www.rfc-editor.org/rfc/rfc9443 + + + + +B. Aboba +G. Salgueiro +C. Perkins +- +d:rfc9444 +rfc9444 +August 2023 +Proposed Standard +Automated Certificate Management Environment (ACME) for Subdomains +https://www.rfc-editor.org/rfc/rfc9444 + + + + +O. Friel +R. Barnes +T. Hollebeek +M. Richardson +- +d:rfc9445 +rfc9445 +August 2023 +Proposed Standard +RADIUS Extensions for DHCP-Configured Services +https://www.rfc-editor.org/rfc/rfc9445 + + + + +M. Boucadair +T. Reddy.K +A. DeKok +- +d:rfc9446 +rfc9446 +July 2023 +Informational +Reflections on Ten Years Past the Snowden Revelations +https://www.rfc-editor.org/rfc/rfc9446 + + + + +S. Farrell +F. Badii +B. Schneier +S. M. Bellovin +- +d:rfc9447 +rfc9447 +September 2023 +Proposed Standard +Automated Certificate Management Environment (ACME) Challenges Using an Authority Token +https://www.rfc-editor.org/rfc/rfc9447 + + + + +J. Peterson +M. Barnes +D. Hancock +C. Wendt +- +d:rfc9448 +rfc9448 +September 2023 +Proposed Standard +TNAuthList Profile of Automated Certificate Management Environment (ACME) Authority Token +https://www.rfc-editor.org/rfc/rfc9448 + + + + +C. Wendt +D. Hancock +M. Barnes +J. Peterson +- +d:rfc9449 +rfc9449 +September 2023 +Proposed Standard +OAuth 2.0 Demonstrating Proof of Possession (DPoP) +https://www.rfc-editor.org/rfc/rfc9449 + + + + +D. Fett +B. Campbell +J. Bradley +T. Lodderstedt +M. Jones +D. Waite +- +a:rfc945 +rfc945 +rfc0945 +- +d:rfc9450 +rfc9450 +August 2023 +Informational +Reliable and Available Wireless (RAW) Use Cases +https://www.rfc-editor.org/rfc/rfc9450 + + + + +CJ. Bernardos, Ed. +G. Papadopoulos +P. Thubert +F. Theoleyre +- +d:rfc9451 +rfc9451 +August 2023 +Proposed Standard +Operations, Administration, and Maintenance (OAM) Packet and Behavior in the Network Service Header (NSH) +https://www.rfc-editor.org/rfc/rfc9451 + + + + +M. Boucadair +- +d:rfc9452 +rfc9452 +August 2023 +Proposed Standard +Network Service Header (NSH) Encapsulation for In Situ OAM (IOAM) Data +https://www.rfc-editor.org/rfc/rfc9452 + + + + +F. Brockners, Ed. +S. Bhandari, Ed. +- +d:rfc9453 +rfc9453 +September 2023 +Informational +Applicability and Use Cases for IPv6 over Networks of Resource-constrained Nodes (6lo) +https://www.rfc-editor.org/rfc/rfc9453 + + + + +Y. Hong +C. Gomez +Y. Choi +A. Sangi +S. Chakrabarti +- +d:rfc9454 +rfc9454 +August 2023 +Proposed Standard +Update to OSPF Terminology +https://www.rfc-editor.org/rfc/rfc9454 + + + + +M. Fox +A. Lindem +A. Retana +- +d:rfc9455 +rfc9455 +August 2023 +Best Current Practice +Avoiding Route Origin Authorizations (ROAs) Containing Multiple IP Prefixes +https://www.rfc-editor.org/rfc/rfc9455 + + + + +Z. Yan +R. Bush +G. Geng +T. de Kock +J. Yao +- +d:rfc9456 +rfc9456 +November 2023 +Proposed Standard +Updates to the TLS Transport Model for SNMP +https://www.rfc-editor.org/rfc/rfc9456 + + + + +K. Vaughn, Ed. +- +d:rfc9457 +rfc9457 +July 2023 +Proposed Standard +Problem Details for HTTP APIs +https://www.rfc-editor.org/rfc/rfc9457 + + + + +M. Nottingham +E. Wilde +S. Dalal +- +d:rfc9458 +rfc9458 +January 2024 +Proposed Standard +Oblivious HTTP +https://www.rfc-editor.org/rfc/rfc9458 + + + + +M. Thomson +C. A. Wood +- +d:rfc9459 +rfc9459 +September 2023 +Proposed Standard +CBOR Object Signing and Encryption (COSE): AES-CTR and AES-CBC +https://www.rfc-editor.org/rfc/rfc9459 + + + + +R. Housley +H. Tschofenig +- +a:rfc946 +rfc946 +rfc0946 +- +d:rfc9460 +rfc9460 +November 2023 +Proposed Standard +Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records) +https://www.rfc-editor.org/rfc/rfc9460 + + + + +B. Schwartz +M. Bishop +E. Nygren +- +d:rfc9461 +rfc9461 +November 2023 +Proposed Standard +Service Binding Mapping for DNS Servers +https://www.rfc-editor.org/rfc/rfc9461 + + + + +B. Schwartz +- +d:rfc9462 +rfc9462 +November 2023 +Proposed Standard +Discovery of Designated Resolvers +https://www.rfc-editor.org/rfc/rfc9462 + + + + +T. Pauly +E. Kinnear +C. A. Wood +P. McManus +T. Jensen +- +d:rfc9463 +rfc9463 +November 2023 +Proposed Standard +DHCP and Router Advertisement Options for the Discovery of Network-designated Resolvers (DNR) +https://www.rfc-editor.org/rfc/rfc9463 + + + + +M. Boucadair, Ed. +T. Reddy.K, Ed. +D. Wing +N. Cook +T. Jensen +- +d:rfc9464 +rfc9464 +November 2023 +Proposed Standard +Internet Key Exchange Protocol Version 2 (IKEv2) Configuration for Encrypted DNS +https://www.rfc-editor.org/rfc/rfc9464 + + + + +M. Boucadair +T. Reddy.K +D. Wing +V. Smyslov +- +d:rfc9465 +rfc9465 +September 2023 +Proposed Standard +PIM Null-Register Packing +https://www.rfc-editor.org/rfc/rfc9465 + + + + +V. Kamath +R. Chokkanathapuram Sundaram +R. Banthia +A. Gopal +- +d:rfc9466 +rfc9466 +October 2023 +Proposed Standard +PIM Assert Message Packing +https://www.rfc-editor.org/rfc/rfc9466 + + + + +Y. Liu, Ed. +T. Eckert, Ed. +M. McBride +Z. Zhang +- +d:rfc9467 +rfc9467 +January 2024 +Proposed Standard +Relaxed Packet Counter Verification for Babel MAC Authentication +https://www.rfc-editor.org/rfc/rfc9467 + + + + +J. Chroboczek +T. Høiland-Jørgensen +- +d:rfc9468 +rfc9468 +August 2023 +Proposed Standard +Unsolicited Bidirectional Forwarding Detection (BFD) for Sessionless Applications +https://www.rfc-editor.org/rfc/rfc9468 + + + + +E. Chen +N. Shen +R. Raszuk +R. Rahman +- +d:rfc9469 +rfc9469 +September 2023 +Informational +Applicability of Ethernet Virtual Private Network (EVPN) to Network Virtualization over Layer 3 (NVO3) Networks +https://www.rfc-editor.org/rfc/rfc9469 + + + + +J. Rabadan, Ed. +M. Bocci +S. Boutros +A. Sajassi +- +a:rfc947 +rfc947 +rfc0947 +- +d:rfc9470 +rfc9470 +September 2023 +Proposed Standard +OAuth 2.0 Step Up Authentication Challenge Protocol +https://www.rfc-editor.org/rfc/rfc9470 + + + + +V. Bertocci +B. Campbell +- +d:rfc9471 +rfc9471 +September 2023 +Proposed Standard +DNS Glue Requirements in Referral Responses +https://www.rfc-editor.org/rfc/rfc9471 + + + + +M. Andrews +S. Huque +P. Wouters +D. Wessels +- +d:rfc9472 +rfc9472 +October 2023 +Proposed Standard +A YANG Data Model for Reporting Software Bills of Materials (SBOMs) and Vulnerability Information +https://www.rfc-editor.org/rfc/rfc9472 + + + + +E. Lear +S. Rose +- +d:rfc9473 +rfc9473 +September 2023 +Informational +A Vocabulary of Path Properties +https://www.rfc-editor.org/rfc/rfc9473 + + + + +R. Enghardt +C. Krähenbühl +- +d:rfc9474 +rfc9474 +October 2023 +Informational +RSA Blind Signatures +https://www.rfc-editor.org/rfc/rfc9474 + + + + +F. Denis +F. Jacobs +C. A. Wood +- +d:rfc9475 +rfc9475 +December 2023 +Proposed Standard +Messaging Use Cases and Extensions for Secure Telephone Identity Revisited (STIR) +https://www.rfc-editor.org/rfc/rfc9475 + + + + +J. Peterson +C. Wendt +- +d:rfc9476 +rfc9476 +September 2023 +Proposed Standard +The .alt Special-Use Top-Level Domain +https://www.rfc-editor.org/rfc/rfc9476 + + + + +W. Kumari +P. Hoffman +- +d:rfc9477 +rfc9477 +September 2023 +Experimental +Complaint Feedback Loop Address Header +https://www.rfc-editor.org/rfc/rfc9477 + + + + +J. Benecke +- +d:rfc9478 +rfc9478 +October 2023 +Proposed Standard +Labeled IPsec Traffic Selector Support for the Internet Key Exchange Protocol Version 2 (IKEv2) +https://www.rfc-editor.org/rfc/rfc9478 + + + + +P. Wouters +S. Prasad +- +d:rfc9479 +rfc9479 +October 2023 +Proposed Standard +IS-IS Application-Specific Link Attributes +https://www.rfc-editor.org/rfc/rfc9479 + + + + +L. Ginsberg +P. Psenak +S. Previdi +W. Henderickx +J. Drake +- +a:rfc948 +rfc948 +rfc0948 +- +d:rfc9480 +rfc9480 +November 2023 +Proposed Standard +Certificate Management Protocol (CMP) Updates +https://www.rfc-editor.org/rfc/rfc9480 + + + + +H. Brockhaus +D. von Oheimb +J. Gray +- +d:rfc9481 +rfc9481 +November 2023 +Proposed Standard +Certificate Management Protocol (CMP) Algorithms +https://www.rfc-editor.org/rfc/rfc9481 + + + + +H. Brockhaus +H. Aschauer +M. Ounsworth +J. Gray +- +d:rfc9482 +rfc9482 +November 2023 +Proposed Standard +Constrained Application Protocol (CoAP) Transfer for the Certificate Management Protocol +https://www.rfc-editor.org/rfc/rfc9482 + + + + +M. Sahni, Ed. +S. Tripathi, Ed. +- +d:rfc9483 +rfc9483 +November 2023 +Proposed Standard +Lightweight Certificate Management Protocol (CMP) Profile +https://www.rfc-editor.org/rfc/rfc9483 + + + + +H. Brockhaus +D. von Oheimb +S. Fries +- +d:rfc9484 +rfc9484 +October 2023 +Proposed Standard +Proxying IP in HTTP +https://www.rfc-editor.org/rfc/rfc9484 + + + + +T. Pauly, Ed. +D. Schinazi +A. Chernyakhovsky +M. Kühlewind +M. Westerlund +- +d:rfc9485 +rfc9485 +October 2023 +Proposed Standard +I-Regexp: An Interoperable Regular Expression Format +https://www.rfc-editor.org/rfc/rfc9485 + + + + +C. Bormann +T. Bray +- +d:rfc9486 +rfc9486 +September 2023 +Proposed Standard +IPv6 Options for In Situ Operations, Administration, and Maintenance (IOAM) +https://www.rfc-editor.org/rfc/rfc9486 + + + + +S. Bhandari, Ed. +F. Brockners, Ed. +- +d:rfc9487 +rfc9487 +November 2023 +Proposed Standard +Export of Segment Routing over IPv6 Information in IP Flow Information Export (IPFIX) +https://www.rfc-editor.org/rfc/rfc9487 + + + + +T. Graf +B. Claise +P. Francois +- +d:rfc9488 +rfc9488 +October 2023 +Proposed Standard +Local Protection Enforcement in the Path Computation Element Communication Protocol (PCEP) +https://www.rfc-editor.org/rfc/rfc9488 + + + + +A. Stone +M. Aissaoui +S. Sidor +S. Sivabalan +- +d:rfc9489 +rfc9489 +November 2023 +Proposed Standard +Label Switched Path (LSP) Ping Mechanisms for EVPN and Provider Backbone Bridging EVPN (PBB-EVPN) +https://www.rfc-editor.org/rfc/rfc9489 + + + + +P. Jain +A. Sajassi +S. Salam +S. Boutros +G. Mirsky +- +a:rfc949 +rfc949 +rfc0949 +- +d:rfc9490 +rfc9490 +January 2024 +Informational +Report from the IAB Workshop on Management Techniques in Encrypted Networks (M-TEN) +https://www.rfc-editor.org/rfc/rfc9490 + + + + +M. Knodel +W. Hardaker +T. Pauly +- +d:rfc9491 +rfc9491 +November 2023 +Proposed Standard +Integration of the Network Service Header (NSH) and Segment Routing for Service Function Chaining (SFC) +https://www.rfc-editor.org/rfc/rfc9491 + + + + +J. Guichard, Ed. +J. Tantsura, Ed. +- +d:rfc9492 +rfc9492 +October 2023 +Proposed Standard +OSPF Application-Specific Link Attributes +https://www.rfc-editor.org/rfc/rfc9492 + + + + +P. Psenak, Ed. +L. Ginsberg +W. Henderickx +J. Tantsura +J. Drake +- +d:rfc9493 +rfc9493 +December 2023 +Proposed Standard +Subject Identifiers for Security Event Tokens +https://www.rfc-editor.org/rfc/rfc9493 + + + + +A. Backman, Ed. +M. Scurtescu +P. Jain +- +d:rfc9494 +rfc9494 +November 2023 +Proposed Standard +Long-Lived Graceful Restart for BGP +https://www.rfc-editor.org/rfc/rfc9494 + + + + +J. Uttaro +E. Chen +B. Decraene +J. Scudder +- +d:rfc9495 +rfc9495 +October 2023 +Proposed Standard +Certification Authority Authorization (CAA) Processing for Email Addresses +https://www.rfc-editor.org/rfc/rfc9495 + + + + +C. Bonnell +- +d:rfc9496 +rfc9496 +December 2023 +Informational +The ristretto255 and decaf448 Groups +https://www.rfc-editor.org/rfc/rfc9496 + + + + +H. de Valence +J. Grigg +M. Hamburg +I. Lovecruft +G. Tankersley +F. Valsorda +- +d:rfc9497 +rfc9497 +December 2023 +Informational +Oblivious Pseudorandom Functions (OPRFs) Using Prime-Order Groups +https://www.rfc-editor.org/rfc/rfc9497 + + + + +A. Davidson +A. Faz-Hernandez +N. Sullivan +C. A. Wood +- +d:rfc9498 +rfc9498 +November 2023 +Informational +The GNU Name System +https://www.rfc-editor.org/rfc/rfc9498 + + + + +M. Schanzenbach +C. Grothoff +B. Fix +- +d:rfc9499 +rfc9499 +March 2024 +Best Current Practice +DNS Terminology +https://www.rfc-editor.org/rfc/rfc9499 + + + + +P. Hoffman +K. Fujiwara +- +a:rfc95 +rfc95 +rfc0095 +- +a:rfc950 +rfc950 +rfc0950 +- +d:rfc9500 +rfc9500 +December 2023 +Informational +Standard Public Key Cryptography (PKC) Test Keys +https://www.rfc-editor.org/rfc/rfc9500 + + + + +P. Gutmann +C. Bonnell +- +d:rfc9501 +rfc9501 +December 2023 +Best Current Practice +Open Participation Principle regarding Remote Registration Fee +https://www.rfc-editor.org/rfc/rfc9501 + + + + +M. Kühlewind +J. Reed +R. Salz +- +d:rfc9502 +rfc9502 +November 2023 +Proposed Standard +IGP Flexible Algorithm in IP Networks +https://www.rfc-editor.org/rfc/rfc9502 + + + + +W. Britto +S. Hegde +P. Kaneriya +R. Shetty +R. Bonica +P. Psenak +- +d:rfc9503 +rfc9503 +October 2023 +Proposed Standard +Simple Two-Way Active Measurement Protocol (STAMP) Extensions for Segment Routing Networks +https://www.rfc-editor.org/rfc/rfc9503 + + + + +R. Gandhi, Ed. +C. Filsfils +M. Chen +B. Janssens +R. Foote +- +d:rfc9504 +rfc9504 +December 2023 +Proposed Standard +Path Computation Element Communication Protocol (PCEP) Extensions for Stateful PCE Usage in GMPLS-Controlled Networks +https://www.rfc-editor.org/rfc/rfc9504 + + + + +Y. Lee +H. Zheng +O. Gonzalez de Dios +V. Lopez +Z. Ali +- +d:rfc9505 +rfc9505 +November 2023 +Informational +A Survey of Worldwide Censorship Techniques +https://www.rfc-editor.org/rfc/rfc9505 + + + + +J. L. Hall +M. D. Aaron +A. Andersdotter +B. Jones +N. Feamster +M. Knodel +- +d:rfc9506 +rfc9506 +October 2023 +Informational +Explicit Host-to-Network Flow Measurements Techniques +https://www.rfc-editor.org/rfc/rfc9506 + + + + +M. Cociglio +A. Ferrieux +G. Fioccola +I. Lubashev +F. Bulgarella +M. Nilo +I. Hamchaoui +R. Sisto +- +d:rfc9507 +rfc9507 +March 2024 +Experimental +Information-Centric Networking (ICN) Traceroute Protocol Specification +https://www.rfc-editor.org/rfc/rfc9507 + + + + +S. Mastorakis +D. Oran +I. Moiseenko +J. Gibson +R. Droms +- +d:rfc9508 +rfc9508 +March 2024 +Experimental +Information-Centric Networking (ICN) Ping Protocol Specification +https://www.rfc-editor.org/rfc/rfc9508 + + + + +S. Mastorakis +D. Oran +J. Gibson +I. Moiseenko +R. Droms +- +d:rfc9509 +rfc9509 +March 2024 +Proposed Standard +X.509 Certificate Extended Key Usage (EKU) for 5G Network Functions +https://www.rfc-editor.org/rfc/rfc9509 + + + + +T. Reddy.K +J. Ekman +D. Migault +- +a:rfc951 +rfc951 +rfc0951 +- +d:rfc9510 +rfc9510 +February 2024 +Experimental +Alternative Delta Time Encoding for Content-Centric Networking (CCNx) Using Compact Floating-Point Arithmetic +https://www.rfc-editor.org/rfc/rfc9510 + + + + +C. Gündoğan +T. Schmidt +D. Oran +M. Wählisch +- +d:rfc9511 +rfc9511 +November 2023 +Informational +Attribution of Internet Probes +https://www.rfc-editor.org/rfc/rfc9511 + + + + +É. Vyncke +B. Donnet +J. Iurman +- +d:rfc9512 +rfc9512 +February 2024 +Informational +YAML Media Type +https://www.rfc-editor.org/rfc/rfc9512 + + + + +R. Polli +E. Wilde +E. Aro +- +d:rfc9513 +rfc9513 +December 2023 +Proposed Standard +OSPFv3 Extensions for Segment Routing over IPv6 (SRv6) +https://www.rfc-editor.org/rfc/rfc9513 + + + + +Z. Li +Z. Hu +K. Talaulikar, Ed. +P. Psenak +- +d:rfc9514 +rfc9514 +December 2023 +Proposed Standard +Border Gateway Protocol - Link State (BGP-LS) Extensions for Segment Routing over IPv6 (SRv6) +https://www.rfc-editor.org/rfc/rfc9514 + + + + +G. Dawra +C. Filsfils +K. Talaulikar, Ed. +M. Chen +D. Bernier +B. Decraene +- +d:rfc9515 +rfc9515 +December 2023 +Proposed Standard +Revision to Registration Procedures for Multiple BMP Registries +https://www.rfc-editor.org/rfc/rfc9515 + + + + +J. Scudder +- +d:rfc9516 +rfc9516 +November 2023 +Proposed Standard +Active Operations, Administration, and Maintenance (OAM) for Service Function Chaining (SFC) +https://www.rfc-editor.org/rfc/rfc9516 + + + + +G. Mirsky +W. Meng +T. Ao +B. Khasnabish +K. Leung +G. Mishra +- +d:rfc9517 +rfc9517 +January 2024 +Informational +A URN Namespace for the Data Documentation Initiative (DDI) +https://www.rfc-editor.org/rfc/rfc9517 + + + + +J. Wackerow +- +d:rfc9518 +rfc9518 +December 2023 +Informational +Centralization, Decentralization, and Internet Standards +https://www.rfc-editor.org/rfc/rfc9518 + + + + +M. Nottingham +- +d:rfc9519 +rfc9519 +January 2024 +Proposed Standard +Update to the IANA SSH Protocol Parameters Registry Requirements +https://www.rfc-editor.org/rfc/rfc9519 + + + + +P. Yee +- +a:rfc952 +rfc952 +rfc0952 +- +d:rfc9520 +rfc9520 +December 2023 +Proposed Standard +Negative Caching of DNS Resolution Failures +https://www.rfc-editor.org/rfc/rfc9520 + + + + +D. Wessels +W. Carroll +M. Thomas +- +d:rfc9521 +rfc9521 +January 2024 +Proposed Standard +Bidirectional Forwarding Detection (BFD) for Generic Network Virtualization Encapsulation (Geneve) +https://www.rfc-editor.org/rfc/rfc9521 + + + + +X. Min +G. Mirsky +S. Pallagatti +J. Tantsura +S. Aldrin +- +d:rfc9522 +rfc9522 +January 2024 +Informational +Overview and Principles of Internet Traffic Engineering +https://www.rfc-editor.org/rfc/rfc9522 + + + + +A. Farrel, Ed. +- +d:rfc9523 +rfc9523 +February 2024 +Informational +A Secure Selection and Filtering Mechanism for the Network Time Protocol with Khronos +https://www.rfc-editor.org/rfc/rfc9523 + + + + +N. Rozen-Schiff +D. Dolev +T. Mizrahi +M. Schapira +- +d:rfc9524 +rfc9524 +February 2024 +Proposed Standard +Segment Routing Replication for Multipoint Service Delivery +https://www.rfc-editor.org/rfc/rfc9524 + + + + +D. Voyer, Ed. +C. Filsfils +R. Parekh +H. Bidgoli +Z. Zhang +- +d:rfc9525 +rfc9525 +November 2023 +Proposed Standard +Service Identity in TLS +https://www.rfc-editor.org/rfc/rfc9525 + + + + +P. Saint-Andre +R. Salz +- +d:rfc9526 +rfc9526 +January 2024 +Experimental +Simple Provisioning of Public Names for Residential Networks +https://www.rfc-editor.org/rfc/rfc9526 + + + + +D. Migault +R. Weber +M. Richardson +R. Hunter +- +d:rfc9527 +rfc9527 +January 2024 +Proposed Standard +DHCPv6 Options for the Homenet Naming Authority +https://www.rfc-editor.org/rfc/rfc9527 + + + + +D. Migault +R. Weber +T. Mrugalski +- +d:rfc9528 +rfc9528 +March 2024 +Proposed Standard +Ephemeral Diffie-Hellman Over COSE (EDHOC) +https://www.rfc-editor.org/rfc/rfc9528 + + + + +G. Selander +J. Preuß Mattsson +F. Palombini +- +d:rfc9529 +rfc9529 +March 2024 +Informational +Traces of Ephemeral Diffie-Hellman Over COSE (EDHOC) +https://www.rfc-editor.org/rfc/rfc9529 + + + + +G. Selander +J. Preuß Mattsson +M. Serafin +M. Tiloca +M. Vučinić +- +a:rfc953 +rfc953 +rfc0953 +- +d:rfc9530 +rfc9530 +February 2024 +Proposed Standard +Digest Fields +https://www.rfc-editor.org/rfc/rfc9530 + + + + +R. Polli +L. Pardue +- +d:rfc9531 +rfc9531 +March 2024 +Experimental +Path Steering in Content-Centric Networking (CCNx) and Named Data Networking (NDN) +https://www.rfc-editor.org/rfc/rfc9531 + + + + +I. Moiseenko +D. Oran +- +d:rfc9532 +rfc9532 +January 2024 +Proposed Standard +HTTP Proxy-Status Parameter for Next-Hop Aliases +https://www.rfc-editor.org/rfc/rfc9532 + + + + +T. Pauly +- +d:rfc9533 +rfc9533 +January 2024 +Proposed Standard +One-Way and Two-Way Active Measurement Protocol Extensions for Performance Measurement on a Link Aggregation Group +https://www.rfc-editor.org/rfc/rfc9533 + + + + +Z. Li +T. Zhou +J. Guo +G. Mirsky +R. Gandhi +- +d:rfc9534 +rfc9534 +January 2024 +Proposed Standard +Simple Two-Way Active Measurement Protocol Extensions for Performance Measurement on a Link Aggregation Group +https://www.rfc-editor.org/rfc/rfc9534 + + + + +Z. Li +T. Zhou +J. Guo +G. Mirsky +R. Gandhi +- +d:rfc9535 +rfc9535 +February 2024 +Proposed Standard +JSONPath: Query Expressions for JSON +https://www.rfc-editor.org/rfc/rfc9535 + + + + +S. Gössner, Ed. +G. Normington, Ed. +C. Bormann, Ed. +- +d:rfc9536 +rfc9536 +April 2024 +Proposed Standard +Registration Data Access Protocol (RDAP) Reverse Search +https://www.rfc-editor.org/rfc/rfc9536 + + + + +M. Loffredo +M. Martinelli +- +d:rfc9537 +rfc9537 +March 2024 +Proposed Standard +Redacted Fields in the Registration Data Access Protocol (RDAP) Response +https://www.rfc-editor.org/rfc/rfc9537 + + + + +J. Gould +D. Smith +J. Kolker +R. Carney +- +d:rfc9538 +rfc9538 +February 2024 +Proposed Standard +Content Delivery Network Interconnection (CDNI) Delegation Using the Automated Certificate Management Environment +https://www.rfc-editor.org/rfc/rfc9538 + + + + +F. Fieau, Ed. +E. Stephan +S. Mishra +- +d:rfc9539 +rfc9539 +February 2024 +Experimental +Unilateral Opportunistic Deployment of Encrypted Recursive-to-Authoritative DNS +https://www.rfc-editor.org/rfc/rfc9539 + + + + +D. K. Gillmor, Ed. +J. Salazar, Ed. +P. Hoffman, Ed. +- +a:rfc954 +rfc954 +rfc0954 +- +d:rfc9540 +rfc9540 +February 2024 +Proposed Standard +Discovery of Oblivious Services via Service Binding Records +https://www.rfc-editor.org/rfc/rfc9540 + + + + +T. Pauly +T. Reddy.K +- +d:rfc9541 +rfc9541 +March 2024 +Proposed Standard +Flush Mechanism for Customer MAC Addresses Based on Service Instance Identifier (I-SID) in Provider Backbone Bridging EVPN (PBB-EVPN) +https://www.rfc-editor.org/rfc/rfc9541 + + + + +J. Rabadan, Ed. +S. Sathappan +K. Nagaraj +M. Miyake +T. Matsuda +- +d:rfc9542 +rfc9542 +April 2024 +Best Current Practice +IANA Considerations and IETF Protocol and Documentation Usage for IEEE 802 Parameters +https://www.rfc-editor.org/rfc/rfc9542 + + + + +D. Eastlake 3rd +J. Abley +Y. Li +- +d:rfc9543 +rfc9543 +March 2024 +Informational +A Framework for Network Slices in Networks Built from IETF Technologies +https://www.rfc-editor.org/rfc/rfc9543 + + + + +A. Farrel, Ed. +J. Drake, Ed. +R. Rokui +S. Homma +K. Makhijani +L. Contreras +J. Tantsura +- +d:rfc9544 +rfc9544 +March 2024 +Informational +Precision Availability Metrics (PAMs) for Services Governed by Service Level Objectives (SLOs) +https://www.rfc-editor.org/rfc/rfc9544 + + + + +G. Mirsky +J. Halpern +X. Min +A. Clemm +J. Strassner +J. François +- +d:rfc9545 +rfc9545 +February 2024 +Proposed Standard +Path Segment Identifier in MPLS-Based Segment Routing Networks +https://www.rfc-editor.org/rfc/rfc9545 + + + + +W. Cheng, Ed. +H. Li +C. Li, Ed. +R. Gandhi +R. Zigler +- +d:rfc9546 +rfc9546 +February 2024 +Proposed Standard +Operations, Administration, and Maintenance (OAM) for Deterministic Networking (DetNet) with the MPLS Data Plane +https://www.rfc-editor.org/rfc/rfc9546 + + + + +G. Mirsky +M. Chen +B. Varga +- +d:rfc9547 +rfc9547 +February 2024 +Informational +Report from the IAB Workshop on Environmental Impact of Internet Applications and Systems, 2022 +https://www.rfc-editor.org/rfc/rfc9547 + + + + +J. Arkko +C. S. Perkins +S. Krishnan +- +d:rfc9548 +rfc9548 +May 2024 +Informational +Generating Transport Key Containers (PFX) Using the GOST Algorithms +https://www.rfc-editor.org/rfc/rfc9548 + + + + +E. Karelina, Ed. +- +d:rfc9549 +rfc9549 +March 2024 +Proposed Standard +Internationalization Updates to RFC 5280 +https://www.rfc-editor.org/rfc/rfc9549 + + + + +R. Housley +- +a:rfc955 +rfc955 +rfc0955 +- +d:rfc9550 +rfc9550 +March 2024 +Informational +Deterministic Networking (DetNet): Packet Ordering Function +https://www.rfc-editor.org/rfc/rfc9550 + + + + +B. Varga, Ed. +J. Farkas +S. Kehrer +T. Heer +- +d:rfc9551 +rfc9551 +March 2024 +Informational +Framework of Operations, Administration, and Maintenance (OAM) for Deterministic Networking (DetNet) +https://www.rfc-editor.org/rfc/rfc9551 + + + + +G. Mirsky +F. Theoleyre +G. Papadopoulos +CJ. Bernardos +B. Varga +J. Farkas +- +d:rfc9552 +rfc9552 +December 2023 +Proposed Standard +Distribution of Link-State and Traffic Engineering Information Using BGP +https://www.rfc-editor.org/rfc/rfc9552 + + + + +K. Talaulikar, Ed. +- +d:rfc9553 +rfc9553 +May 2024 +Proposed Standard +JSContact: A JSON Representation of Contact Data +https://www.rfc-editor.org/rfc/rfc9553 + + + + +R. Stepanek +M. Loffredo +- +d:rfc9554 +rfc9554 +May 2024 +Proposed Standard +vCard Format Extensions for JSContact +https://www.rfc-editor.org/rfc/rfc9554 + + + + +R. Stepanek +M. Loffredo +- +d:rfc9555 +rfc9555 +May 2024 +Proposed Standard +JSContact: Converting from and to vCard +https://www.rfc-editor.org/rfc/rfc9555 + + + + +M. Loffredo +R. Stepanek +- +d:rfc9556 +rfc9556 +April 2024 +Informational +Internet of Things (IoT) Edge Challenges and Functions +https://www.rfc-editor.org/rfc/rfc9556 + + + + +J. Hong +Y-G. Hong +X. de Foy +M. Kovatsch +E. Schooler +D. Kutscher +- +d:rfc9557 +rfc9557 +April 2024 +Proposed Standard +Date and Time on the Internet: Timestamps with Additional Information +https://www.rfc-editor.org/rfc/rfc9557 + + + + +U. Sharma +C. Bormann +- +d:rfc9558 +rfc9558 +April 2024 +Informational +Use of GOST 2012 Signature Algorithms in DNSKEY and RRSIG Resource Records for DNSSEC +https://www.rfc-editor.org/rfc/rfc9558 + + + + +B. Makarenko +V. Dolmatov, Ed. +- +a:rfc956 +rfc956 +rfc0956 +- +d:rfc9560 +rfc9560 +April 2024 +Proposed Standard +Federated Authentication for the Registration Data Access Protocol (RDAP) Using OpenID Connect +https://www.rfc-editor.org/rfc/rfc9560 + + + + +S. Hollenbeck +- +d:rfc9561 +rfc9561 +April 2024 +Proposed Standard +Using the Parallel NFS (pNFS) SCSI Layout to Access Non-Volatile Memory Express (NVMe) Storage Devices +https://www.rfc-editor.org/rfc/rfc9561 + + + + +C. Hellwig, Ed. +C. Lever +S. Faibish +D. Black +- +d:rfc9562 +rfc9562 +May 2024 +Proposed Standard +Universally Unique IDentifiers (UUIDs) +https://www.rfc-editor.org/rfc/rfc9562 + + + + +K. Davis +B. Peabody +P. Leach +- +d:rfc9564 +rfc9564 +1 April 2024 +Informational +Faster Than Light Speed Protocol (FLIP) +https://www.rfc-editor.org/rfc/rfc9564 + + + + +M. Blanchet +- +d:rfc9565 +rfc9565 +March 2024 +Proposed Standard +An Update to the tcpControlBits IP Flow Information Export (IPFIX) Information Element +https://www.rfc-editor.org/rfc/rfc9565 + + + + +M. Boucadair +- +d:rfc9566 +rfc9566 +April 2024 +Informational +Deterministic Networking (DetNet) Packet Replication, Elimination, and Ordering Functions (PREOF) via MPLS over UDP/IP +https://www.rfc-editor.org/rfc/rfc9566 + + + + +B. Varga +J. Farkas +A. Malis +- +d:rfc9567 +rfc9567 +April 2024 +Proposed Standard +DNS Error Reporting +https://www.rfc-editor.org/rfc/rfc9567 + + + + +R. Arends +M. Larson +- +d:rfc9568 +rfc9568 +April 2024 +Proposed Standard +Virtual Router Redundancy Protocol (VRRP) Version 3 for IPv4 and IPv6 +https://www.rfc-editor.org/rfc/rfc9568 + + + + +A. Lindem +A. Dogra +- +a:rfc957 +rfc957 +rfc0957 +- +d:rfc9570 +rfc9570 +May 2024 +Proposed Standard +Deprecating the Use of Router Alert in LSP Ping +https://www.rfc-editor.org/rfc/rfc9570 + + + + +K. Kompella +R. Bonica +G. Mirsky, Ed. +- +d:rfc9571 +rfc9571 +May 2024 +Proposed Standard +Extension of RFC 6374-Based Performance Measurement Using Synonymous Flow Labels +https://www.rfc-editor.org/rfc/rfc9571 + + + + +S. Bryant, Ed. +G. Swallow +M. Chen +G. Fioccola +G. Mirsky +- +d:rfc9572 +rfc9572 +May 2024 +Proposed Standard +Updates to EVPN Broadcast, Unknown Unicast, or Multicast (BUM) Procedures +https://www.rfc-editor.org/rfc/rfc9572 + + + + +Z. Zhang +W. Lin +J. Rabadan +K. Patel +A. Sajassi +- +d:rfc9573 +rfc9573 +May 2024 +Proposed Standard +MVPN/EVPN Tunnel Aggregation with Common Labels +https://www.rfc-editor.org/rfc/rfc9573 + + + + +Z. Zhang +E. Rosen +W. Lin +Z. Li +IJ. Wijnands +- +d:rfc9574 +rfc9574 +May 2024 +Proposed Standard +Optimized Ingress Replication Solution for Ethernet VPNs (EVPNs) +https://www.rfc-editor.org/rfc/rfc9574 + + + + +J. Rabadan, Ed. +S. Sathappan +W. Lin +M. Katiyar +A. Sajassi +- +d:rfc9575 +rfc9575 +June 2024 +Proposed Standard +DRIP Entity Tag (DET) Authentication Formats and Protocols for Broadcast Remote Identification (RID) +https://www.rfc-editor.org/rfc/rfc9575 + + + + +A. Wiethuechter, Ed. +S. Card +R. Moskowitz +- +d:rfc9576 +rfc9576 +June 2024 +Informational +The Privacy Pass Architecture +https://www.rfc-editor.org/rfc/rfc9576 + + + + +A. Davidson +J. Iyengar +C. A. Wood +- +d:rfc9577 +rfc9577 +June 2024 +Proposed Standard +The Privacy Pass HTTP Authentication Scheme +https://www.rfc-editor.org/rfc/rfc9577 + + + + +T. Pauly +S. Valdez +C. A. Wood +- +d:rfc9578 +rfc9578 +June 2024 +Proposed Standard +Privacy Pass Issuance Protocols +https://www.rfc-editor.org/rfc/rfc9578 + + + + +S. Celi +A. Davidson +S. Valdez +C. A. Wood +- +d:rfc9579 +rfc9579 +May 2024 +Informational +Use of Password-Based Message Authentication Code 1 (PBMAC1) in PKCS #12 Syntax +https://www.rfc-editor.org/rfc/rfc9579 + + + + +H. Kario +- +a:rfc958 +rfc958 +rfc0958 +- +d:rfc9580 +rfc9580 +July 2024 +Proposed Standard +OpenPGP +https://www.rfc-editor.org/rfc/rfc9580 + + + + +P. Wouters, Ed. +D. Huigens +J. Winter +Y. Niibe +- +d:rfc9581 +rfc9581 +August 2024 +Proposed Standard +Concise Binary Object Representation (CBOR) Tags for Time, Duration, and Period +https://www.rfc-editor.org/rfc/rfc9581 + + + + +C. Bormann +B. Gamari +H. Birkholz +- +d:rfc9582 +rfc9582 +May 2024 +Proposed Standard +A Profile for Route Origin Authorizations (ROAs) +https://www.rfc-editor.org/rfc/rfc9582 + + + + +J. Snijders +B. Maddison +M. Lepinski +D. Kong +S. Kent +- +d:rfc9583 +rfc9583 +June 2024 +Informational +Application Scenarios for the Quantum Internet +https://www.rfc-editor.org/rfc/rfc9583 + + + + +C. Wang +A. Rahman +R. Li +M. Aelmans +K. Chakraborty +- +d:rfc9584 +rfc9584 +June 2024 +Proposed Standard +RTP Payload Format for Essential Video Coding (EVC) +https://www.rfc-editor.org/rfc/rfc9584 + + + + +S. Zhao +S. Wenger +Y. Lim +- +d:rfc9585 +rfc9585 +May 2024 +Proposed Standard +IMAP Response Code for Command Progress Notifications +https://www.rfc-editor.org/rfc/rfc9585 + + + + +M. Bettini +- +d:rfc9586 +rfc9586 +May 2024 +Experimental +IMAP Extension for Using and Returning Unique Identifiers (UIDs) Only +https://www.rfc-editor.org/rfc/rfc9586 + + + + +A. Melnikov +A. P. Achuthan +V. Nagulakonda +A. Singh +L. Alves +- +d:rfc9587 +rfc9587 +June 2024 +Proposed Standard +YANG Data Model for OSPFv3 Extended Link State Advertisements (LSAs) +https://www.rfc-editor.org/rfc/rfc9587 + + + + +A. Lindem +S. Palani +Y. Qu +- +d:rfc9589 +rfc9589 +May 2024 +Proposed Standard +On the Use of the Cryptographic Message Syntax (CMS) Signing-Time Attribute in Resource Public Key Infrastructure (RPKI) Signed Objects +https://www.rfc-editor.org/rfc/rfc9589 + + + + +J. Snijders +T. Harrison +- +a:rfc959 +rfc959 +rfc0959 +- +d:rfc9590 +rfc9590 +May 2024 +Proposed Standard +IMAP Extension for Returning Mailbox METADATA in Extended LIS +https://www.rfc-editor.org/rfc/rfc9590 + + + + +K. Murchison +B. Gondwana +- +d:rfc9591 +rfc9591 +June 2024 +Informational +The Flexible Round-Optimized Schnorr Threshold (FROST) Protocol for Two-Round Schnorr Signatures +https://www.rfc-editor.org/rfc/rfc9591 + + + + +D. Connolly +C. Komlo +I. Goldberg +C. A. Wood +- +d:rfc9592 +rfc9592 +June 2024 +Informational +Retiring the Tao of the IETF +https://www.rfc-editor.org/rfc/rfc9592 + + + + +N. ten Oever +G. Wood +- +d:rfc9593 +rfc9593 +July 2024 +Proposed Standard +Announcing Supported Authentication Methods in the Internet Key Exchange Protocol Version 2 (IKEv2) +https://www.rfc-editor.org/rfc/rfc9593 + + + + +V. Smyslov +- +d:rfc9595 +rfc9595 +July 2024 +Proposed Standard +YANG Schema Item iDentifier (YANG SID) +https://www.rfc-editor.org/rfc/rfc9595 + + + + +M. Veillette, Ed. +A. Pelov, Ed. +I. Petrov, Ed. +C. Bormann +M. Richardson +- +d:rfc9596 +rfc9596 +June 2024 +Proposed Standard +CBOR Object Signing and Encryption (COSE) "typ" (type) Header Parameter +https://www.rfc-editor.org/rfc/rfc9596 + + + + +M.B. Jones +O. Steele +- +d:rfc9597 +rfc9597 +June 2024 +Proposed Standard +CBOR Web Token (CWT) Claims in COSE Headers +https://www.rfc-editor.org/rfc/rfc9597 + + + + +T. Looker +M.B. Jones +- +d:rfc9598 +rfc9598 +May 2024 +Proposed Standard +Internationalized Email Addresses in X.509 Certificates +https://www.rfc-editor.org/rfc/rfc9598 + + + + +A. Melnikov +W. Chuang +C. Bonnell +- +a:rfc96 +rfc96 +rfc0096 +- +a:rfc960 +rfc960 +rfc0960 +- +d:rfc9603 +rfc9603 +July 2024 +Proposed Standard +Path Computation Element Communication Protocol (PCEP) Extensions for IPv6 Segment Routing +https://www.rfc-editor.org/rfc/rfc9603 + + + + +C. Li, Ed. +P. Kaladharan +S. Sivabalan +M. Koldychev +Y. Zhu +- +d:rfc9604 +rfc9604 +August 2024 +Proposed Standard +Carrying Binding Label/SID in PCE-Based Networks +https://www.rfc-editor.org/rfc/rfc9604 + + + + +S. Sivabalan +C. Filsfils +J. Tantsura +S. Previdi +C. Li, Ed. +- +d:rfc9606 +rfc9606 +June 2024 +Proposed Standard +DNS Resolver Information +https://www.rfc-editor.org/rfc/rfc9606 + + + + +T. Reddy.K +M. Boucadair +- +d:rfc9607 +rfc9607 +July 2024 +Proposed Standard +RTP Payload Format for the Secure Communication Interoperability Protocol (SCIP) Codec +https://www.rfc-editor.org/rfc/rfc9607 + + + + +D. Hanson +M. Faller +K. Maver +- +d:rfc9608 +rfc9608 +June 2024 +Proposed Standard +No Revocation Available for X.509 Public Key Certificates +https://www.rfc-editor.org/rfc/rfc9608 + + + + +R. Housley +T. Okubo +J. Mandel +- +a:rfc961 +rfc961 +rfc0961 +- +d:rfc9611 +rfc9611 +July 2024 +Proposed Standard +Internet Key Exchange Protocol Version 2 (IKEv2) Support for Per-Resource Child Security Associations (SAs) +https://www.rfc-editor.org/rfc/rfc9611 + + + + +A. Antony +T. Brunner +S. Klassert +P. Wouters +- +d:rfc9612 +rfc9612 +July 2024 +Experimental +Bidirectional Forwarding Detection (BFD) Reverse Path for MPLS Label Switched Paths (LSPs) +https://www.rfc-editor.org/rfc/rfc9612 + + + + +G. Mirsky +J. Tantsura +I. Varlashkin +M. Chen +- +d:rfc9614 +rfc9614 +July 2024 +Informational +Partitioning as an Architecture for Privacy +https://www.rfc-editor.org/rfc/rfc9614 + + + + +M. Kühlewind +T. Pauly +C. A. Wood +- +d:rfc9615 +rfc9615 +July 2024 +Proposed Standard +Automatic DNSSEC Bootstrapping Using Authenticated Signals from the Zone's Operator +https://www.rfc-editor.org/rfc/rfc9615 + + + + +P. Thomassen +N. Wisiol +- +d:rfc9619 +rfc9619 +July 2024 +Proposed Standard +In the DNS, QDCOUNT Is (Usually) One +https://www.rfc-editor.org/rfc/rfc9619 + + + + +R. Bellis +J. Abley +- +a:rfc962 +rfc962 +rfc0962 +- +d:rfc9629 +rfc9629 +August 2024 +Proposed Standard +Using Key Encapsulation Mechanism (KEM) Algorithms in the Cryptographic Message Syntax (CMS) +https://www.rfc-editor.org/rfc/rfc9629 + + + + +R. Housley +J. Gray +T. Okubo +- +a:rfc963 +rfc963 +rfc0963 +- +d:rfc9632 +rfc9632 +August 2024 +Proposed Standard +Finding and Using Geofeed Data +https://www.rfc-editor.org/rfc/rfc9632 + + + + +R. Bush +M. Candela +W. Kumari +R. Housley - a:rfc964 rfc964 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-sa.data b/bikeshed/spec-data/readonly/biblio/biblio-sa.data index 770becbb7b..15b5ff696a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-sa.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-sa.data @@ -1,3 +1,14 @@ +d:saa-non-cookie-storage +SAA-NON-COOKIE-STORAGE + +Editor's Draft +Extending Storage Access API (SAA) to non-cookie storage +https://privacycg.github.io/saa-non-cookie-storage/ + + + + +- d:sac SAC 28 July 2000 @@ -23,10 +34,21 @@ https://www.w3.org/TR/2000/NOTE-SAC-20000728 s:saml2-core SAML2-CORE Scott Cantor; John Kemp; Rob Philpott; Eve Maler. <a href="http://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf"><cite>Assertions and Protocols for SAML V2.0</cite></a> 15 March 2005. URL: <a href="http://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf">http://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf</a> +- +d:sanitizer-api +SANITIZER-API + +Draft Community Group Report +HTML Sanitizer API +https://wicg.github.io/sanitizer-api/ + + + + - d:saur saur -5 July 2022 +28 June 2023 NOTE Synchronization Accessibility User Requirements https://www.w3.org/TR/saur/ @@ -87,6 +109,33 @@ Jason White Scott Hollier Janina Sajka Joshue O'Connor +- +d:saur-20230628 +saur-20230628 +28 June 2023 +NOTE +Synchronization Accessibility User Requirements +https://www.w3.org/TR/2023/NOTE-saur-20230628/ +https://www.w3.org/TR/2023/NOTE-saur-20230628/ + + + +Steve Noble +Jason White +Scott Hollier +Janina Sajka +Joshue O'Connor +- +d:savedata +SAVEDATA + +Editor's Draft +Save Data API +https://wicg.github.io/savedata/ + + + + - d:sawsdl sawsdl diff --git a/bikeshed/spec-data/readonly/biblio/biblio-sc.data b/bikeshed/spec-data/readonly/biblio/biblio-sc.data index 94a478bc63..d59ebc24db 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-sc.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-sc.data @@ -47,7 +47,7 @@ W3C Schema.org Community Group - d:screen-capture screen-capture -12 January 2023 +27 June 2024 WD Screen Capture https://www.w3.org/TR/screen-capture/ @@ -457,6 +457,110 @@ https://www.w3.org/TR/2023/WD-screen-capture-20230112/ +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20230413 +screen-capture-20230413 +13 April 2023 +WD +Screen Capture +https://www.w3.org/TR/2023/WD-screen-capture-20230413/ +https://www.w3.org/TR/2023/WD-screen-capture-20230413/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20230629 +screen-capture-20230629 +29 June 2023 +WD +Screen Capture +https://www.w3.org/TR/2023/WD-screen-capture-20230629/ +https://www.w3.org/TR/2023/WD-screen-capture-20230629/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20230706 +screen-capture-20230706 +6 July 2023 +WD +Screen Capture +https://www.w3.org/TR/2023/WD-screen-capture-20230706/ +https://www.w3.org/TR/2023/WD-screen-capture-20230706/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20230831 +screen-capture-20230831 +31 August 2023 +WD +Screen Capture +https://www.w3.org/TR/2023/WD-screen-capture-20230831/ +https://www.w3.org/TR/2023/WD-screen-capture-20230831/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20231026 +screen-capture-20231026 +26 October 2023 +WD +Screen Capture +https://www.w3.org/TR/2023/WD-screen-capture-20231026/ +https://www.w3.org/TR/2023/WD-screen-capture-20231026/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20231214 +screen-capture-20231214 +14 December 2023 +WD +Screen Capture +https://www.w3.org/TR/2023/WD-screen-capture-20231214/ +https://www.w3.org/TR/2023/WD-screen-capture-20231214/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20240208 +screen-capture-20240208 +8 February 2024 +WD +Screen Capture +https://www.w3.org/TR/2024/WD-screen-capture-20240208/ +https://www.w3.org/TR/2024/WD-screen-capture-20240208/ + + + +Jan-Ivar Bruaroey +Elad Alon +- +d:screen-capture-20240627 +screen-capture-20240627 +27 June 2024 +WD +Screen Capture +https://www.w3.org/TR/2024/WD-screen-capture-20240627/ +https://www.w3.org/TR/2024/WD-screen-capture-20240627/ + + + Jan-Ivar Bruaroey Elad Alon - @@ -492,9 +596,53 @@ a:screen-fold-20211104 screen-fold-20211104 device-posture-20211104 - +a:screen-fold-20230403 +screen-fold-20230403 +device-posture-20230403 +- +a:screen-fold-20230404 +screen-fold-20230404 +device-posture-20230404 +- +a:screen-fold-20240108 +screen-fold-20240108 +device-posture-20240108 +- +a:screen-fold-20240315 +screen-fold-20240315 +device-posture-20240315 +- +a:screen-fold-20240322 +screen-fold-20240322 +device-posture-20240322 +- +a:screen-fold-20240325 +screen-fold-20240325 +device-posture-20240325 +- +a:screen-fold-20240408 +screen-fold-20240408 +device-posture-20240408 +- +a:screen-fold-20240528 +screen-fold-20240528 +device-posture-20240528 +- +a:screen-fold-20240605 +screen-fold-20240605 +device-posture-20240605 +- +a:screen-fold-20240722 +screen-fold-20240722 +device-posture-20240722 +- +a:screen-fold-20240723 +screen-fold-20240723 +device-posture-20240723 +- d:screen-orientation screen-orientation -16 December 2022 +9 August 2023 WD Screen Orientation https://www.w3.org/TR/screen-orientation/ @@ -1498,11 +1646,119 @@ https://www.w3.org/TR/2022/WD-screen-orientation-20221216/ +Marcos Caceres +- +d:screen-orientation-20230215 +screen-orientation-20230215 +15 February 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230215/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230215/ + + + +Marcos Caceres +- +d:screen-orientation-20230321 +screen-orientation-20230321 +21 March 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230321/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230321/ + + + +Marcos Caceres +- +d:screen-orientation-20230403 +screen-orientation-20230403 +3 April 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230403/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230403/ + + + +Marcos Caceres +- +d:screen-orientation-20230413 +screen-orientation-20230413 +13 April 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230413/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230413/ + + + +Marcos Caceres +- +d:screen-orientation-20230414 +screen-orientation-20230414 +14 April 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230414/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230414/ + + + +Marcos Caceres +- +d:screen-orientation-20230502 +screen-orientation-20230502 +2 May 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230502/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230502/ + + + +Marcos Caceres +- +d:screen-orientation-20230504 +screen-orientation-20230504 +4 May 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230504/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230504/ + + + +Marcos Caceres +- +d:screen-orientation-20230803 +screen-orientation-20230803 +3 August 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230803/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230803/ + + + +Marcos Caceres +- +d:screen-orientation-20230809 +screen-orientation-20230809 +9 August 2023 +WD +Screen Orientation +https://www.w3.org/TR/2023/WD-screen-orientation-20230809/ +https://www.w3.org/TR/2023/WD-screen-orientation-20230809/ + + + Marcos Caceres - d:screen-wake-lock screen-wake-lock -23 November 2022 +27 May 2024 WD Screen Wake Lock API https://www.w3.org/TR/screen-wake-lock/ @@ -1512,6 +1768,7 @@ https://w3c.github.io/screen-wake-lock/ Kenneth Christiansen Raphael Kubo da Costa +Marcos Caceres - d:screen-wake-lock-20150212 screen-wake-lock-20150212 @@ -1581,6 +1838,7 @@ https://www.w3.org/TR/2016/WD-wake-lock-20160603/ Kenneth Christiansen Raphael Kubo da Costa +Marcos Caceres - d:screen-wake-lock-20160617 screen-wake-lock-20160617 @@ -1594,6 +1852,7 @@ https://www.w3.org/TR/2016/WD-wake-lock-20160617/ Kenneth Christiansen Raphael Kubo da Costa +Marcos Caceres - d:screen-wake-lock-20160620 screen-wake-lock-20160620 @@ -1607,6 +1866,7 @@ https://www.w3.org/TR/2016/WD-wake-lock-20160620/ Kenneth Christiansen Raphael Kubo da Costa +Marcos Caceres - d:screen-wake-lock-20160714 screen-wake-lock-20160714 @@ -1620,6 +1880,7 @@ https://www.w3.org/TR/2016/WD-wake-lock-20160714/ Kenneth Christiansen Raphael Kubo da Costa +Marcos Caceres - d:screen-wake-lock-20160803 screen-wake-lock-20160803 @@ -1633,6 +1894,7 @@ https://www.w3.org/TR/2016/WD-wake-lock-20160803/ Kenneth Christiansen Raphael Kubo da Costa +Marcos Caceres - d:screen-wake-lock-20161220 screen-wake-lock-20161220 @@ -2014,6 +2276,86 @@ https://www.w3.org/TR/2022/WD-screen-wake-lock-20221123/ Kenneth Christiansen Raphael Kubo da Costa - +d:screen-wake-lock-20230406 +screen-wake-lock-20230406 +6 April 2023 +WD +Screen Wake Lock API +https://www.w3.org/TR/2023/WD-screen-wake-lock-20230406/ +https://www.w3.org/TR/2023/WD-screen-wake-lock-20230406/ + + + +Kenneth Christiansen +Raphael Kubo da Costa +- +d:screen-wake-lock-20230714 +screen-wake-lock-20230714 +14 July 2023 +WD +Screen Wake Lock API +https://www.w3.org/TR/2023/WD-screen-wake-lock-20230714/ +https://www.w3.org/TR/2023/WD-screen-wake-lock-20230714/ + + + +Kenneth Christiansen +Raphael Kubo da Costa +- +d:screen-wake-lock-20230719 +screen-wake-lock-20230719 +19 July 2023 +WD +Screen Wake Lock API +https://www.w3.org/TR/2023/WD-screen-wake-lock-20230719/ +https://www.w3.org/TR/2023/WD-screen-wake-lock-20230719/ + + + +Kenneth Christiansen +Raphael Kubo da Costa +- +d:screen-wake-lock-20231107 +screen-wake-lock-20231107 +7 November 2023 +WD +Screen Wake Lock API +https://www.w3.org/TR/2023/WD-screen-wake-lock-20231107/ +https://www.w3.org/TR/2023/WD-screen-wake-lock-20231107/ + + + +Kenneth Christiansen +Raphael Kubo da Costa +- +d:screen-wake-lock-20240411 +screen-wake-lock-20240411 +11 April 2024 +WD +Screen Wake Lock API +https://www.w3.org/TR/2024/WD-screen-wake-lock-20240411/ +https://www.w3.org/TR/2024/WD-screen-wake-lock-20240411/ + + + +Marcos Caceres +Kenneth Christiansen +Raphael Kubo da Costa +- +d:screen-wake-lock-20240527 +screen-wake-lock-20240527 +27 May 2024 +WD +Screen Wake Lock API +https://www.w3.org/TR/2024/WD-screen-wake-lock-20240527/ +https://www.w3.org/TR/2024/WD-screen-wake-lock-20240527/ + + + +Kenneth Christiansen +Raphael Kubo da Costa +Marcos Caceres +- d:scroll-animations SCROLL-ANIMATIONS @@ -2027,9 +2369,9 @@ https://wicg.github.io/scroll-animations/ - d:scroll-animations-1 scroll-animations-1 -8 December 2022 +6 June 2023 WD -Scroll-linked Animations +Scroll-driven Animations https://www.w3.org/TR/scroll-animations-1/ https://drafts.csswg.org/scroll-animations-1/ @@ -2075,6 +2417,68 @@ Antoine Quint Olga Gerchikov Elika Etemad Robert Flack +- +d:scroll-animations-1-20230406 +scroll-animations-1-20230406 +6 April 2023 +WD +Scroll-driven Animations +https://www.w3.org/TR/2023/WD-scroll-animations-1-20230406/ +https://www.w3.org/TR/2023/WD-scroll-animations-1-20230406/ + + + +Brian Birtles +Botond Ballo +Antoine Quint +Olga Gerchikov +Elika Etemad +Robert Flack +- +d:scroll-animations-1-20230428 +scroll-animations-1-20230428 +28 April 2023 +WD +Scroll-driven Animations +https://www.w3.org/TR/2023/WD-scroll-animations-1-20230428/ +https://www.w3.org/TR/2023/WD-scroll-animations-1-20230428/ + + + +Brian Birtles +Botond Ballo +Antoine Quint +Olga Gerchikov +Elika Etemad +Robert Flack +- +d:scroll-animations-1-20230606 +scroll-animations-1-20230606 +6 June 2023 +WD +Scroll-driven Animations +https://www.w3.org/TR/2023/WD-scroll-animations-1-20230606/ +https://www.w3.org/TR/2023/WD-scroll-animations-1-20230606/ + + + +Brian Birtles +Botond Ballo +Antoine Quint +Olga Gerchikov +Elika Etemad +Robert Flack +- +d:scroll-to-text-fragment +SCROLL-TO-TEXT-FRAGMENT + +Draft Community Group Report +URL Fragment Text Directives +https://wicg.github.io/scroll-to-text-fragment/ + + + + - s:scsu SCSU diff --git a/bikeshed/spec-data/readonly/biblio/biblio-sd.data b/bikeshed/spec-data/readonly/biblio/biblio-sd.data index 65dba72fda..bd6185a2b7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-sd.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-sd.data @@ -74,6 +74,17 @@ https://wg21.link/sd8 +- +d:sd9 +SD9 + + +Library Evolution Policies +https://wg21.link/sd9 + + + + - d:sdml SDML @@ -111,7 +122,7 @@ rfc4574 - d:sdw-bp sdw-bp -28 September 2017 +19 September 2023 NOTE Spatial Data on the Web Best Practices https://www.w3.org/TR/sdw-bp/ @@ -119,9 +130,10 @@ https://w3c.github.io/sdw/bp/ +Payam Barnaghi Jeremy Tandy Linda van den Brink -Payam Barnaghi +Timo Homburg - d:sdw-bp-20160119 sdw-bp-20160119 @@ -221,6 +233,21 @@ Jeremy Tandy Linda van den Brink Payam Barnaghi - +d:sdw-bp-20230919 +sdw-bp-20230919 +19 September 2023 +NOTE +Spatial Data on the Web Best Practices +https://www.w3.org/TR/2023/DNOTE-sdw-bp-20230919/ +https://www.w3.org/TR/2023/DNOTE-sdw-bp-20230919/ + + + +Payam Barnaghi +Jeremy Tandy +Linda van den Brink +Timo Homburg +- d:sdw-ucr sdw-ucr 25 October 2016 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-se.data b/bikeshed/spec-data/readonly/biblio/biblio-se.data index c3f106b383..7f5f853b82 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-se.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-se.data @@ -4,7 +4,7 @@ SECG1 - d:secure-contexts secure-contexts -18 September 2021 +10 November 2023 CR Secure Contexts https://www.w3.org/TR/secure-contexts/ @@ -133,12 +133,24 @@ https://www.w3.org/TR/2021/CRD-secure-contexts-20210918/ +Mike West +- +d:secure-contexts-20231110 +secure-contexts-20231110 +10 November 2023 +CR +Secure Contexts +https://www.w3.org/TR/2023/CRD-secure-contexts-20231110/ +https://www.w3.org/TR/2023/CRD-secure-contexts-20231110/ + + + Mike West - d:secure-payment-confirmation secure-payment-confirmation -11 January 2023 -WD +13 August 2024 +CR Secure Payment Confirmation https://www.w3.org/TR/secure-payment-confirmation/ https://w3c.github.io/secure-payment-confirmation/ @@ -314,6 +326,240 @@ https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230111/ +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230130 +secure-payment-confirmation-20230130 +30 January 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230130/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230130/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230308 +secure-payment-confirmation-20230308 +8 March 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230308/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230308/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230323 +secure-payment-confirmation-20230323 +23 March 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230323/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230323/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230413 +secure-payment-confirmation-20230413 +13 April 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230413/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230413/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230414 +secure-payment-confirmation-20230414 +14 April 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230414/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230414/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230417 +secure-payment-confirmation-20230417 +17 April 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230417/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230417/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230422 +secure-payment-confirmation-20230422 +22 April 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230422/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230422/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230424 +secure-payment-confirmation-20230424 +24 April 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230424/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230424/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230510 +secure-payment-confirmation-20230510 +10 May 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230510/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230510/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230523 +secure-payment-confirmation-20230523 +23 May 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230523/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230523/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230530 +secure-payment-confirmation-20230530 +30 May 2023 +WD +Secure Payment Confirmation +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230530/ +https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230530/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230615 +secure-payment-confirmation-20230615 +15 June 2023 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2023/CR-secure-payment-confirmation-20230615/ +https://www.w3.org/TR/2023/CR-secure-payment-confirmation-20230615/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230621 +secure-payment-confirmation-20230621 +21 June 2023 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230621/ +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230621/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230731 +secure-payment-confirmation-20230731 +31 July 2023 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230731/ +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230731/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20230822 +secure-payment-confirmation-20230822 +22 August 2023 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230822/ +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230822/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20231018 +secure-payment-confirmation-20231018 +18 October 2023 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20231018/ +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20231018/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20231213 +secure-payment-confirmation-20231213 +13 December 2023 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20231213/ +https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20231213/ + + + +Rouslan Solomakhin +Stephen McGruer +- +d:secure-payment-confirmation-20240813 +secure-payment-confirmation-20240813 +13 August 2024 +CR +Secure Payment Confirmation +https://www.w3.org/TR/2024/CRD-secure-payment-confirmation-20240813/ +https://www.w3.org/TR/2024/CRD-secure-payment-confirmation-20240813/ + + + Rouslan Solomakhin Stephen McGruer - @@ -486,7 +732,7 @@ selectors-3-20181106 - d:selection-api selection-api -17 December 2022 +16 May 2023 WD Selection API https://www.w3.org/TR/selection-api/ @@ -926,6 +1172,78 @@ https://www.w3.org/TR/2022/WD-selection-api-20221217/ +Ryosuke Niwa +- +d:selection-api-20230209 +selection-api-20230209 +9 February 2023 +WD +Selection API +https://www.w3.org/TR/2023/WD-selection-api-20230209/ +https://www.w3.org/TR/2023/WD-selection-api-20230209/ + + + +Ryosuke Niwa +- +d:selection-api-20230213 +selection-api-20230213 +13 February 2023 +WD +Selection API +https://www.w3.org/TR/2023/WD-selection-api-20230213/ +https://www.w3.org/TR/2023/WD-selection-api-20230213/ + + + +Ryosuke Niwa +- +d:selection-api-20230321 +selection-api-20230321 +21 March 2023 +WD +Selection API +https://www.w3.org/TR/2023/WD-selection-api-20230321/ +https://www.w3.org/TR/2023/WD-selection-api-20230321/ + + + +Ryosuke Niwa +- +d:selection-api-20230404 +selection-api-20230404 +4 April 2023 +WD +Selection API +https://www.w3.org/TR/2023/WD-selection-api-20230404/ +https://www.w3.org/TR/2023/WD-selection-api-20230404/ + + + +Ryosuke Niwa +- +d:selection-api-20230422 +selection-api-20230422 +22 April 2023 +WD +Selection API +https://www.w3.org/TR/2023/WD-selection-api-20230422/ +https://www.w3.org/TR/2023/WD-selection-api-20230422/ + + + +Ryosuke Niwa +- +d:selection-api-20230516 +selection-api-20230516 +16 May 2023 +WD +Selection API +https://www.w3.org/TR/2023/WD-selection-api-20230516/ +https://www.w3.org/TR/2023/WD-selection-api-20230516/ + + + Ryosuke Niwa - d:selectors-3 @@ -1252,6 +1570,17 @@ https://www.w3.org/TR/2022/WD-selectors-4-20221111/ Elika Etemad Tab Atkins Jr. +- +d:selectors-5 +SELECTORS-5 + +Editor's Draft +Selectors Level 5 +https://drafts.csswg.org/selectors-5/ + + + + - d:selectors-api selectors-api @@ -1700,10 +2029,34 @@ https://www.w3.org/TR/2007/REC-semantic-interpretation-20070405/ Luc Van Tichelen David Burke +- +d:sensorml +SensorML +2014 +OGC Encoding Standard +SensorML: Model and XML Encoding Standard 2.0 +http://portal.opengeospatial.org/files/55939 + + + + +Mike Botts +Alex Robin +- +d:serial +SERIAL + +Editor's Draft +Web Serial API +https://wicg.github.io/serial/ + + + + - d:server-timing server-timing -21 April 2022 +11 April 2023 WD Server Timing https://www.w3.org/TR/server-timing/ @@ -2084,6 +2437,45 @@ https://www.w3.org/TR/2022/WD-server-timing-20220421/ +Charles Vazac +Ilya Grigorik +- +d:server-timing-20230303 +server-timing-20230303 +3 March 2023 +WD +Server Timing +https://www.w3.org/TR/2023/WD-server-timing-20230303/ +https://www.w3.org/TR/2023/WD-server-timing-20230303/ + + + +Charles Vazac +Ilya Grigorik +- +d:server-timing-20230317 +server-timing-20230317 +17 March 2023 +WD +Server Timing +https://www.w3.org/TR/2023/WD-server-timing-20230317/ +https://www.w3.org/TR/2023/WD-server-timing-20230317/ + + + +Charles Vazac +Ilya Grigorik +- +d:server-timing-20230411 +server-timing-20230411 +11 April 2023 +WD +Server Timing +https://www.w3.org/TR/2023/WD-server-timing-20230411/ +https://www.w3.org/TR/2023/WD-server-timing-20230411/ + + + Charles Vazac Ilya Grigorik - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-sh.data b/bikeshed/spec-data/readonly/biblio/biblio-sh.data index b95320b6fa..29761e5b3d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-sh.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-sh.data @@ -535,6 +535,17 @@ https://wicg.github.io/shape-detection-api/ +- +d:shared-storage +SHARED-STORAGE + +Draft Community Group Report +Shared Storage API +https://wicg.github.io/shared-storage/ + + + + - d:shoplogfileformat shoplogfileformat diff --git a/bikeshed/spec-data/readonly/biblio/biblio-so.data b/bikeshed/spec-data/readonly/biblio/biblio-so.data index 8febaac0f8..eb47d8595a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-so.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-so.data @@ -1276,6 +1276,17 @@ https://www.w3.org/TR/2017/NOTE-social-web-protocols-20171225/ Amy Guy +- +d:soft-navigations +SOFT-NAVIGATIONS + +Draft Community Group Report +Soft Navigations +https://wicg.github.io/soft-navigations/ + + + + - d:solidwebac SOLIDWEBAC @@ -1301,6 +1312,17 @@ http://www.opengeospatial.org/standards/sos Arne Bröring Christoph Stasch Johannes Echterhoff +- +d:sourcemap +SOURCEMAP + +Editor's Draft +Source Map +https://tc39.es/source-map/ + + + + - d:sox SOX diff --git a/bikeshed/spec-data/readonly/biblio/biblio-sp.data b/bikeshed/spec-data/readonly/biblio/biblio-sp.data index 4ee4d0a904..8698cf9652 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-sp.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-sp.data @@ -138,7 +138,7 @@ sparql11-entailment REC SPARQL 1.1 Entailment Regimes https://www.w3.org/TR/sparql11-entailment/ - +https://w3c.github.io/sparql-entailment/spec/ @@ -268,7 +268,7 @@ sparql11-federated-query REC SPARQL 1.1 Federated Query https://www.w3.org/TR/sparql11-federated-query/ - +https://w3c.github.io/sparql-federated-query/spec/ @@ -333,7 +333,7 @@ sparql11-http-rdf-update REC SPARQL 1.1 Graph Store HTTP Protocol https://www.w3.org/TR/sparql11-http-rdf-update/ - +https://w3c.github.io/sparql-graph-store-protocol/spec/ @@ -537,7 +537,7 @@ sparql11-protocol REC SPARQL 1.1 Protocol https://www.w3.org/TR/sparql11-protocol/ - +https://w3c.github.io/sparql-protocol/spec/ @@ -642,7 +642,7 @@ sparql11-query REC SPARQL 1.1 Query Language https://www.w3.org/TR/sparql11-query/ - +https://w3c.github.io/sparql-query/spec/ @@ -772,7 +772,7 @@ sparql11-results-csv-tsv REC SPARQL 1.1 Query Results CSV and TSV Formats https://www.w3.org/TR/sparql11-results-csv-tsv/ - +https://w3c.github.io/sparql-results-csv-tsv/spec/ @@ -832,7 +832,7 @@ sparql11-results-json REC SPARQL 1.1 Query Results JSON Format https://www.w3.org/TR/sparql11-results-json/ - +https://w3c.github.io/sparql-results-json/spec/ @@ -880,7 +880,7 @@ sparql11-service-description REC SPARQL 1.1 Service Description https://www.w3.org/TR/sparql11-service-description/ - +https://w3c.github.io/sparql-service-description/spec/ @@ -988,7 +988,7 @@ sparql11-update REC SPARQL 1.1 Update https://www.w3.org/TR/sparql11-update/ - +https://w3c.github.io/sparql-update/spec/ @@ -1108,93 +1108,1258 @@ Paula Gearon Alexandre Passant Axel Polleres - -d:spec-variability -spec-variability -31 August 2005 -NOTE -Variability in Specifications -https://www.w3.org/TR/spec-variability/ +d:sparql12-concepts +SPARQL12-CONCEPTS + +Editor's Draft +SPARQL 1.2 Overview +https://w3c.github.io/sparql-concepts/spec/ -Dominique Hazaël-Massieux -Lynne Rosenthal - -d:spec-variability-20040830 -spec-variability-20040830 -30 August 2004 +d:sparql12-entailment +sparql12-entailment +18 April 2024 WD -Variability in Specifications -https://www.w3.org/TR/2004/WD-spec-variability-20040830/ -https://www.w3.org/TR/2004/WD-spec-variability-20040830/ +SPARQL 1.2 Entailment Regimes +https://www.w3.org/TR/sparql12-entailment/ +https://w3c.github.io/sparql-entailment/spec/ -Dominique Hazaël-Massieux -Lynne Rosenthal +Peter Patel-Schneider - -d:spec-variability-20050428 -spec-variability-20050428 -28 April 2005 +d:sparql12-entailment-20230606 +sparql12-entailment-20230606 +6 June 2023 WD -Variability in Specifications -https://www.w3.org/TR/2005/WD-spec-variability-20050428/ -https://www.w3.org/TR/2005/WD-spec-variability-20050428/ +SPARQL 1.2 Entailment Regimes +https://www.w3.org/TR/2023/WD-sparql12-entailment-20230606/ +https://www.w3.org/TR/2023/WD-sparql12-entailment-20230606/ -Dominique Hazaël-Massieux -Lynne Rosenthal +Peter Patel-Schneider - -d:spec-variability-20050629 -spec-variability-20050629 -29 June 2005 +d:sparql12-entailment-20230615 +sparql12-entailment-20230615 +15 June 2023 WD -Variability in Specifications -https://www.w3.org/TR/2005/WD-spec-variability-20050629/ -https://www.w3.org/TR/2005/WD-spec-variability-20050629/ +SPARQL 1.2 Entailment Regimes +https://www.w3.org/TR/2023/WD-sparql12-entailment-20230615/ +https://www.w3.org/TR/2023/WD-sparql12-entailment-20230615/ -Dominique Hazaël-Massieux -Lynne Rosenthal +Peter Patel-Schneider - -d:spec-variability-20050831 -spec-variability-20050831 -31 August 2005 -NOTE -Variability in Specifications -https://www.w3.org/TR/2005/NOTE-spec-variability-20050831/ -https://www.w3.org/TR/2005/NOTE-spec-variability-20050831/ +d:sparql12-entailment-20240418 +sparql12-entailment-20240418 +18 April 2024 +WD +SPARQL 1.2 Entailment Regimes +https://www.w3.org/TR/2024/WD-sparql12-entailment-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-entailment-20240418/ -Dominique Hazaël-Massieux -Lynne Rosenthal +Peter Patel-Schneider - -d:spectre -SPECTRE -January 2018 +d:sparql12-federated-query +sparql12-federated-query +18 April 2024 +WD +SPARQL 1.2 Federated Query +https://www.w3.org/TR/sparql12-federated-query/ +https://w3c.github.io/sparql-federated-query/spec/ -Spectre Attacks: Exploiting Speculative Execution -https://spectreattack.com/spectre.pdf + + +Ruben Taelman +Gregory Williams +- +d:sparql12-federated-query-20230516 +sparql12-federated-query-20230516 +16 May 2023 +WD +SPARQL 1.2 Federated Query +https://www.w3.org/TR/2023/WD-sparql12-federated-query-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-federated-query-20230516/ + + + +Gregory Williams +Ruben Taelman +- +d:sparql12-federated-query-20230616 +sparql12-federated-query-20230616 +16 June 2023 +WD +SPARQL 1.2 Federated Query +https://www.w3.org/TR/2023/WD-sparql12-federated-query-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-federated-query-20230616/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-federated-query-20240321 +sparql12-federated-query-20240321 +21 March 2024 +WD +SPARQL 1.2 Federated Query +https://www.w3.org/TR/2024/WD-sparql12-federated-query-20240321/ +https://www.w3.org/TR/2024/WD-sparql12-federated-query-20240321/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-federated-query-20240418 +sparql12-federated-query-20240418 +18 April 2024 +WD +SPARQL 1.2 Federated Query +https://www.w3.org/TR/2024/WD-sparql12-federated-query-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-federated-query-20240418/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-graph-store-protocol +sparql12-graph-store-protocol +18 April 2024 +WD +SPARQL 1.2 Graph Store Protocol +https://www.w3.org/TR/sparql12-graph-store-protocol/ +https://w3c.github.io/sparql-graph-store-protocol/spec/ + + + +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-graph-store-protocol-20230516 +sparql12-graph-store-protocol-20230516 +16 May 2023 +WD +SPARQL 1.2 Graph Store Protocol +https://www.w3.org/TR/2023/WD-sparql12-graph-store-protocol-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-graph-store-protocol-20230516/ + + + +Andy Seaborne +- +d:sparql12-graph-store-protocol-20230616 +sparql12-graph-store-protocol-20230616 +16 June 2023 +WD +SPARQL 1.2 Graph Store Protocol +https://www.w3.org/TR/2023/WD-sparql12-graph-store-protocol-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-graph-store-protocol-20230616/ + + + +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-graph-store-protocol-20240418 +sparql12-graph-store-protocol-20240418 +18 April 2024 +WD +SPARQL 1.2 Graph Store Protocol +https://www.w3.org/TR/2024/WD-sparql12-graph-store-protocol-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-graph-store-protocol-20240418/ + + + +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-protocol +sparql12-protocol +2 May 2024 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/sparql12-protocol/ +https://w3c.github.io/sparql-protocol/spec/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-protocol-20230516 +sparql12-protocol-20230516 +16 May 2023 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/2023/WD-sparql12-protocol-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-protocol-20230516/ + + + +Andy Seaborne +Gregory Williams +Ruben Taelman +- +d:sparql12-protocol-20230616 +sparql12-protocol-20230616 +16 June 2023 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/2023/WD-sparql12-protocol-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-protocol-20230616/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-protocol-20231102 +sparql12-protocol-20231102 +2 November 2023 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/2023/WD-sparql12-protocol-20231102/ +https://www.w3.org/TR/2023/WD-sparql12-protocol-20231102/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-protocol-20231214 +sparql12-protocol-20231214 +14 December 2023 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/2023/WD-sparql12-protocol-20231214/ +https://www.w3.org/TR/2023/WD-sparql12-protocol-20231214/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-protocol-20240418 +sparql12-protocol-20240418 +18 April 2024 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/2024/WD-sparql12-protocol-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-protocol-20240418/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-protocol-20240502 +sparql12-protocol-20240502 +2 May 2024 +WD +SPARQL 1.2 Protocol +https://www.w3.org/TR/2024/WD-sparql12-protocol-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-protocol-20240502/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query +sparql12-query +2 May 2024 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/sparql12-query/ +https://w3c.github.io/sparql-query/spec/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230516 +sparql12-query-20230516 +16 May 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230516/ + + + +Andy Seaborne +Gregory Williams +Ruben Taelman +Olaf Hartig +- +d:sparql12-query-20230616 +sparql12-query-20230616 +16 June 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230616/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230629 +sparql12-query-20230629 +29 June 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230629/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230629/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230703 +sparql12-query-20230703 +3 July 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230703/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230703/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230706 +sparql12-query-20230706 +6 July 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230706/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230706/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230727 +sparql12-query-20230727 +27 July 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230727/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230727/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230817 +sparql12-query-20230817 +17 August 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230817/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230817/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230818 +sparql12-query-20230818 +18 August 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230818/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230818/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230928 +sparql12-query-20230928 +28 September 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230928/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230928/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20230929 +sparql12-query-20230929 +29 September 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20230929/ +https://www.w3.org/TR/2023/WD-sparql12-query-20230929/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20231005 +sparql12-query-20231005 +5 October 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20231005/ +https://www.w3.org/TR/2023/WD-sparql12-query-20231005/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20231010 +sparql12-query-20231010 +10 October 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20231010/ +https://www.w3.org/TR/2023/WD-sparql12-query-20231010/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20231013 +sparql12-query-20231013 +13 October 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20231013/ +https://www.w3.org/TR/2023/WD-sparql12-query-20231013/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20231020 +sparql12-query-20231020 +20 October 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20231020/ +https://www.w3.org/TR/2023/WD-sparql12-query-20231020/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20231208 +sparql12-query-20231208 +8 December 2023 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2023/WD-sparql12-query-20231208/ +https://www.w3.org/TR/2023/WD-sparql12-query-20231208/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20240118 +sparql12-query-20240118 +18 January 2024 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2024/WD-sparql12-query-20240118/ +https://www.w3.org/TR/2024/WD-sparql12-query-20240118/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20240321 +sparql12-query-20240321 +21 March 2024 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2024/WD-sparql12-query-20240321/ +https://www.w3.org/TR/2024/WD-sparql12-query-20240321/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20240418 +sparql12-query-20240418 +18 April 2024 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2024/WD-sparql12-query-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-query-20240418/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-query-20240502 +sparql12-query-20240502 +2 May 2024 +WD +SPARQL 1.2 Query Language +https://www.w3.org/TR/2024/WD-sparql12-query-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-query-20240502/ + + + +Olaf Hartig +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-csv-tsv +sparql12-results-csv-tsv +2 May 2024 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/sparql12-results-csv-tsv/ +https://w3c.github.io/sparql-results-csv-tsv/spec/ + + + +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-csv-tsv-20230516 +sparql12-results-csv-tsv-20230516 +16 May 2023 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230516/ + + + +Gregory Williams +Ruben Taelman +- +d:sparql12-results-csv-tsv-20230616 +sparql12-results-csv-tsv-20230616 +16 June 2023 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230616/ + + + +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-csv-tsv-20230629 +sparql12-results-csv-tsv-20230629 +29 June 2023 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230629/ +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230629/ + + + +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-csv-tsv-20231110 +sparql12-results-csv-tsv-20231110 +10 November 2023 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20231110/ +https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20231110/ + + + +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-csv-tsv-20240418 +sparql12-results-csv-tsv-20240418 +18 April 2024 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/2024/WD-sparql12-results-csv-tsv-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-results-csv-tsv-20240418/ + + + +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-csv-tsv-20240502 +sparql12-results-csv-tsv-20240502 +2 May 2024 +WD +SPARQL 1.2 Query Results CSV and TSV Formats +https://www.w3.org/TR/2024/WD-sparql12-results-csv-tsv-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-results-csv-tsv-20240502/ + + + +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json +sparql12-results-json +2 May 2024 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/sparql12-results-json/ +https://w3c.github.io/sparql-results-json/spec/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20230516 +sparql12-results-json-20230516 +16 May 2023 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230516/ + + + +Andy Seaborne +Gregory Williams +Ruben Taelman +- +d:sparql12-results-json-20230616 +sparql12-results-json-20230616 +16 June 2023 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230616/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20230727 +sparql12-results-json-20230727 +27 July 2023 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230727/ +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230727/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20230728 +sparql12-results-json-20230728 +28 July 2023 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230728/ +https://www.w3.org/TR/2023/WD-sparql12-results-json-20230728/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20231130 +sparql12-results-json-20231130 +30 November 2023 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2023/WD-sparql12-results-json-20231130/ +https://www.w3.org/TR/2023/WD-sparql12-results-json-20231130/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20240208 +sparql12-results-json-20240208 +8 February 2024 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2024/WD-sparql12-results-json-20240208/ +https://www.w3.org/TR/2024/WD-sparql12-results-json-20240208/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20240418 +sparql12-results-json-20240418 +18 April 2024 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2024/WD-sparql12-results-json-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-results-json-20240418/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-json-20240502 +sparql12-results-json-20240502 +2 May 2024 +WD +SPARQL 1.2 Query Results JSON Format +https://www.w3.org/TR/2024/WD-sparql12-results-json-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-results-json-20240502/ + + + +Andy Seaborne +Ruben Taelman +Gregory Williams +Thomas Pellissier Tanon +- +d:sparql12-results-xml +sparql12-results-xml +2 May 2024 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/sparql12-results-xml/ +https://w3c.github.io/sparql-results-xml/spec/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-results-xml-20230516 +sparql12-results-xml-20230516 +16 May 2023 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230516/ + + + +Dominik Tomaszuk +Ruben Taelman +- +d:sparql12-results-xml-20230616 +sparql12-results-xml-20230616 +16 June 2023 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230616/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-results-xml-20230727 +sparql12-results-xml-20230727 +27 July 2023 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230727/ +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230727/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-results-xml-20230728 +sparql12-results-xml-20230728 +28 July 2023 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230728/ +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230728/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-results-xml-20231130 +sparql12-results-xml-20231130 +30 November 2023 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20231130/ +https://www.w3.org/TR/2023/WD-sparql12-results-xml-20231130/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-results-xml-20240418 +sparql12-results-xml-20240418 +18 April 2024 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2024/WD-sparql12-results-xml-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-results-xml-20240418/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-results-xml-20240502 +sparql12-results-xml-20240502 +2 May 2024 +WD +SPARQL 1.2 Query Results XML Format +https://www.w3.org/TR/2024/WD-sparql12-results-xml-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-results-xml-20240502/ + + + +Ruben Taelman +Dominik Tomaszuk +Thomas Pellissier Tanon +- +d:sparql12-service-description +sparql12-service-description +2 May 2024 +WD +SPARQL 1.2 Service Description +https://www.w3.org/TR/sparql12-service-description/ +https://w3c.github.io/sparql-service-description/spec/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-service-description-20230516 +sparql12-service-description-20230516 +16 May 2023 +WD +SPARQL 1.2 Service Description +https://www.w3.org/TR/2023/WD-sparql12-service-description-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-service-description-20230516/ + + + +Gregory Williams +Ruben Taelman +- +d:sparql12-service-description-20230616 +sparql12-service-description-20230616 +16 June 2023 +WD +SPARQL 1.2 Service Description +https://www.w3.org/TR/2023/WD-sparql12-service-description-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-service-description-20230616/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-service-description-20231214 +sparql12-service-description-20231214 +14 December 2023 +WD +SPARQL 1.2 Service Description +https://www.w3.org/TR/2023/WD-sparql12-service-description-20231214/ +https://www.w3.org/TR/2023/WD-sparql12-service-description-20231214/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-service-description-20240418 +sparql12-service-description-20240418 +18 April 2024 +WD +SPARQL 1.2 Service Description +https://www.w3.org/TR/2024/WD-sparql12-service-description-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-service-description-20240418/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-service-description-20240502 +sparql12-service-description-20240502 +2 May 2024 +WD +SPARQL 1.2 Service Description +https://www.w3.org/TR/2024/WD-sparql12-service-description-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-service-description-20240502/ + + + +Ruben Taelman +Gregory Williams +- +d:sparql12-update +sparql12-update +2 May 2024 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/sparql12-update/ +https://w3c.github.io/sparql-update/spec/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20230516 +sparql12-update-20230516 +16 May 2023 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2023/WD-sparql12-update-20230516/ +https://www.w3.org/TR/2023/WD-sparql12-update-20230516/ + + + +Andy Seaborne +Ruben Taelman +- +d:sparql12-update-20230616 +sparql12-update-20230616 +16 June 2023 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2023/WD-sparql12-update-20230616/ +https://www.w3.org/TR/2023/WD-sparql12-update-20230616/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20230706 +sparql12-update-20230706 +6 July 2023 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2023/WD-sparql12-update-20230706/ +https://www.w3.org/TR/2023/WD-sparql12-update-20230706/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20230714 +sparql12-update-20230714 +14 July 2023 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2023/WD-sparql12-update-20230714/ +https://www.w3.org/TR/2023/WD-sparql12-update-20230714/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20230922 +sparql12-update-20230922 +22 September 2023 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2023/WD-sparql12-update-20230922/ +https://www.w3.org/TR/2023/WD-sparql12-update-20230922/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20230928 +sparql12-update-20230928 +28 September 2023 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2023/WD-sparql12-update-20230928/ +https://www.w3.org/TR/2023/WD-sparql12-update-20230928/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20240418 +sparql12-update-20240418 +18 April 2024 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2024/WD-sparql12-update-20240418/ +https://www.w3.org/TR/2024/WD-sparql12-update-20240418/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:sparql12-update-20240502 +sparql12-update-20240502 +2 May 2024 +WD +SPARQL 1.2 Update +https://www.w3.org/TR/2024/WD-sparql12-update-20240502/ +https://www.w3.org/TR/2024/WD-sparql12-update-20240502/ + + + +Ruben Taelman +Andy Seaborne +Thomas Pellissier Tanon +- +d:spdx-licenses +SPDX-LICENSES + + +SPDX License List +https://spdx.org/licenses/ + + + + +- +d:spec-variability +spec-variability +31 August 2005 +NOTE +Variability in Specifications +https://www.w3.org/TR/spec-variability/ + + + + +Dominique Hazaël-Massieux +Lynne Rosenthal +- +d:spec-variability-20040830 +spec-variability-20040830 +30 August 2004 +WD +Variability in Specifications +https://www.w3.org/TR/2004/WD-spec-variability-20040830/ +https://www.w3.org/TR/2004/WD-spec-variability-20040830/ + + + +Dominique Hazaël-Massieux +Lynne Rosenthal +- +d:spec-variability-20050428 +spec-variability-20050428 +28 April 2005 +WD +Variability in Specifications +https://www.w3.org/TR/2005/WD-spec-variability-20050428/ +https://www.w3.org/TR/2005/WD-spec-variability-20050428/ + + + +Dominique Hazaël-Massieux +Lynne Rosenthal +- +d:spec-variability-20050629 +spec-variability-20050629 +29 June 2005 +WD +Variability in Specifications +https://www.w3.org/TR/2005/WD-spec-variability-20050629/ +https://www.w3.org/TR/2005/WD-spec-variability-20050629/ + + + +Dominique Hazaël-Massieux +Lynne Rosenthal +- +d:spec-variability-20050831 +spec-variability-20050831 +31 August 2005 +NOTE +Variability in Specifications +https://www.w3.org/TR/2005/NOTE-spec-variability-20050831/ +https://www.w3.org/TR/2005/NOTE-spec-variability-20050831/ + + + +Dominique Hazaël-Massieux +Lynne Rosenthal +- +d:spectre +SPECTRE +January 2018 + +Spectre Attacks: Exploiting Speculative Execution +https://spectreattack.com/spectre.pdf + + + + +Paul Kocher +Jann Horn +Anders Fogh +Daniel Genkin +Daniel Gruss +Werner Haas +Mike Hamburg +Moritz Lipp +Stefan Mangard +Thomas Prescher +Michael Schwarz +Yuval Yarom +- +d:speculation-rules +SPECULATION-RULES + +Draft Community Group Report +Speculation Rules +https://wicg.github.io/nav-speculation/speculation-rules.html -Paul Kocher -Jann Horn -Anders Fogh -Daniel Genkin -Daniel Gruss -Werner Haas -Mike Hamburg -Moritz Lipp -Stefan Mangard -Thomas Prescher -Michael Schwarz -Yuval Yarom - d:speech-api SPEECH-API diff --git a/bikeshed/spec-data/readonly/biblio/biblio-st.data b/bikeshed/spec-data/readonly/biblio/biblio-st.data index 2d9945940c..1cddfe75d8 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-st.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-st.data @@ -57,6 +57,28 @@ https://storage.spec.whatwg.org/ Anne van Kesteren +- +d:storage-access +STORAGE-ACCESS + +Editor's Draft +The Storage Access API +https://privacycg.github.io/storage-access/ + + + + +- +d:storage-buckets +STORAGE-BUCKETS + +Draft Community Group Report +Storage Buckets API +https://wicg.github.io/storage-buckets/ + + + + - d:streamproc streamproc @@ -175,7 +197,7 @@ Takeshi Yoshino - d:string-meta string-meta -4 August 2022 +18 July 2024 NOTE Strings on the Web: Language and Direction Metadata https://www.w3.org/TR/string-meta/ @@ -235,6 +257,71 @@ https://www.w3.org/TR/2022/DNOTE-string-meta-20220804/ +Richard Ishida +Addison Phillips +- +d:string-meta-20230720 +string-meta-20230720 +20 July 2023 +NOTE +Strings on the Web: Language and Direction Metadata +https://www.w3.org/TR/2023/DNOTE-string-meta-20230720/ +https://www.w3.org/TR/2023/DNOTE-string-meta-20230720/ + + + +Richard Ishida +Addison Phillips +- +d:string-meta-20240122 +string-meta-20240122 +22 January 2024 +NOTE +Strings on the Web: Language and Direction Metadata +https://www.w3.org/TR/2024/DNOTE-string-meta-20240122/ +https://www.w3.org/TR/2024/DNOTE-string-meta-20240122/ + + + +Richard Ishida +Addison Phillips +- +d:string-meta-20240321 +string-meta-20240321 +21 March 2024 +NOTE +Strings on the Web: Language and Direction Metadata +https://www.w3.org/TR/2024/DNOTE-string-meta-20240321/ +https://www.w3.org/TR/2024/DNOTE-string-meta-20240321/ + + + +Richard Ishida +Addison Phillips +- +d:string-meta-20240418 +string-meta-20240418 +18 April 2024 +NOTE +Strings on the Web: Language and Direction Metadata +https://www.w3.org/TR/2024/DNOTE-string-meta-20240418/ +https://www.w3.org/TR/2024/DNOTE-string-meta-20240418/ + + + +Richard Ishida +Addison Phillips +- +d:string-meta-20240718 +string-meta-20240718 +18 July 2024 +NOTE +Strings on the Web: Language and Direction Metadata +https://www.w3.org/TR/2024/DNOTE-string-meta-20240718/ +https://www.w3.org/TR/2024/DNOTE-string-meta-20240718/ + + + Richard Ishida Addison Phillips - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-sv.data b/bikeshed/spec-data/readonly/biblio/biblio-sv.data index da04a6ce62..3c1835a98c 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-sv.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-sv.data @@ -251,6 +251,17 @@ https://www.w3.org/TR/2000/NOTE-SVG-access-20000807 +- +d:svg-animations +SVG-ANIMATIONS + +Editor's Draft +SVG Animations Level 2 +https://svgwg.org/specs/animations/ + + + + - d:svg-integration svg-integration diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ta.data b/bikeshed/spec-data/readonly/biblio/biblio-ta.data index 0a637a7477..522b433f97 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ta.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ta.data @@ -231,7 +231,7 @@ Ian Jacobs (Scribe) - d:taml-gap taml-gap -21 January 2022 +9 July 2024 NOTE Tamil Gap Analysis https://www.w3.org/TR/taml-gap/ @@ -347,6 +347,90 @@ https://www.w3.org/TR/2022/DNOTE-taml-gap-20220121/ +Richard Ishida +- +d:taml-gap-20230614 +taml-gap-20230614 +14 June 2023 +NOTE +Tamil Gap Analysis +https://www.w3.org/TR/2023/DNOTE-taml-gap-20230614/ +https://www.w3.org/TR/2023/DNOTE-taml-gap-20230614/ + + + +Richard Ishida +- +d:taml-gap-20231004 +taml-gap-20231004 +4 October 2023 +NOTE +Tamil Gap Analysis +https://www.w3.org/TR/2023/DNOTE-taml-gap-20231004/ +https://www.w3.org/TR/2023/DNOTE-taml-gap-20231004/ + + + +Richard Ishida +- +d:taml-gap-20240701 +taml-gap-20240701 +1 July 2024 +NOTE +Tamil Gap Analysis +https://www.w3.org/TR/2024/DNOTE-taml-gap-20240701/ +https://www.w3.org/TR/2024/DNOTE-taml-gap-20240701/ + + + +Richard Ishida +- +d:taml-gap-20240705 +taml-gap-20240705 +5 July 2024 +NOTE +Tamil Gap Analysis +https://www.w3.org/TR/2024/DNOTE-taml-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-taml-gap-20240705/ + + + +Richard Ishida +- +d:taml-gap-20240709 +taml-gap-20240709 +9 July 2024 +NOTE +Tamil Gap Analysis +https://www.w3.org/TR/2024/DNOTE-taml-gap-20240709/ +https://www.w3.org/TR/2024/DNOTE-taml-gap-20240709/ + + + +Richard Ishida +- +d:taml-lreq +taml-lreq +8 August 2024 +NOTE +Tamil Script Resources +https://www.w3.org/TR/taml-lreq/ +https://w3c.github.io/iip/taml/ + + + +Richard Ishida +- +d:taml-lreq-20240808 +taml-lreq-20240808 +8 August 2024 +NOTE +Tamil Script Resources +https://www.w3.org/TR/2024/DNOTE-taml-lreq-20240808/ +https://www.w3.org/TR/2024/DNOTE-taml-lreq-20240808/ + + + Richard Ishida - d:task-models diff --git a/bikeshed/spec-data/readonly/biblio/biblio-tc.data b/bikeshed/spec-data/readonly/biblio/biblio-tc.data index 3c3b2b78f6..84dbc22113 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-tc.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-tc.data @@ -1,3 +1,399 @@ +d:tc39-array-find-from-last +TC39-ARRAY-FIND-FROM-LAST + +Editor's Draft +Proposal-array-find-from-last +https://tc39.es/proposal-array-find-from-last/ + +ecmascript + + +- +d:tc39-array-from-async +TC39-ARRAY-FROM-ASYNC + +Editor's Draft +ES Array.fromAsync (2022) +https://tc39.es/proposal-array-from-async/ + + + + +- +d:tc39-array-grouping +TC39-ARRAY-GROUPING + +Editor's Draft +Array Grouping +https://tc39.es/proposal-array-grouping/ + + + + +- +d:tc39-arraybuffer-base64 +TC39-ARRAYBUFFER-BASE64 + +Editor's Draft +Uint8Array to/from base64 +https://tc39.es/proposal-arraybuffer-base64/spec/ + + + + +- +d:tc39-arraybuffer-transfer +TC39-ARRAYBUFFER-TRANSFER + +Editor's Draft +ArrayBuffer transfer +https://tc39.es/proposal-arraybuffer-transfer/ + + + + +- +d:tc39-async-explicit-resource-management +TC39-ASYNC-EXPLICIT-RESOURCE-MANAGEMENT + +Editor's Draft +ECMAScript Async Explicit Resource Management +https://tc39.es/proposal-async-explicit-resource-management/ + + + + +- +d:tc39-atomics-wait-async +TC39-ATOMICS-WAIT-ASYNC + +Editor's Draft +Atomics.waitAsync +https://tc39.es/proposal-atomics-wait-async/ + +ecmascript + + +- +d:tc39-canonical-tz +TC39-CANONICAL-TZ + +Editor's Draft +Time Zone Canonicalization proposal +https://tc39.es/proposal-canonical-tz/ + + + + +- +d:tc39-change-array-by-copy +TC39-CHANGE-ARRAY-BY-COPY + +Editor's Draft +Change Array by copy +https://tc39.es/proposal-change-array-by-copy/ + +ecmascript + + +- +d:tc39-decorators +TC39-DECORATORS + +Editor's Draft +Decorators proposal +https://tc39.es/proposal-decorators/ + + + + +- +d:tc39-dynamic-code-brand-checks +TC39-DYNAMIC-CODE-BRAND-CHECKS + +Editor's Draft +Dynamic Code Brand Checks +https://tc39.es/proposal-dynamic-code-brand-checks/ + + + + +- +d:tc39-explicit-resource-management +TC39-EXPLICIT-RESOURCE-MANAGEMENT + +Editor's Draft +ECMAScript Explicit Resource Management +https://tc39.es/proposal-explicit-resource-management/ + + + + +- +d:tc39-float16array +TC39-FLOAT16ARRAY + +Editor's Draft +Float16Array +https://tc39.es/proposal-float16array/ + + + + +- +d:tc39-import-attributes +TC39-IMPORT-ATTRIBUTES + +Editor's Draft +Import Attributes +https://tc39.es/proposal-import-attributes/ + + + + +- +d:tc39-intl-annexes +TC39-INTL-ANNEXES + +Editor's Draft +Intl Annexes +https://tc39.es/proposal-intl-numberformat-v3/out/annexes/proposed.html + +ecma-402 + + +- +d:tc39-intl-duration-format +TC39-INTL-DURATION-FORMAT + +Editor's Draft +Intl.DurationFormat +https://tc39.es/proposal-intl-duration-format/ + + + + +- +d:tc39-intl-enumeration +TC39-INTL-ENUMERATION + +Editor's Draft +Intl Enumeration API Specification +https://tc39.es/proposal-intl-enumeration/ + +ecma-402 + + +- +d:tc39-intl-extend-timezonename +TC39-INTL-EXTEND-TIMEZONENAME + +Editor's Draft +Extend TimeZoneName Option Proposal +https://tc39.es/proposal-intl-extend-timezonename/ + +ecma-402 + + +- +d:tc39-intl-locale-info +TC39-INTL-LOCALE-INFO + +Editor's Draft +Intl Locale Info Proposal +https://tc39.es/proposal-intl-locale-info/ + + + + +- +d:tc39-intl-negotiation +TC39-INTL-NEGOTIATION + +Editor's Draft +Intl Parameter Resolution +https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html + +ecma-402 + + +- +d:tc39-intl-numberformat +TC39-INTL-NUMBERFORMAT + +Editor's Draft +Intl.NumberFormat +https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html + +ecma-402 + + +- +d:tc39-intl-pluralrules +TC39-INTL-PLURALRULES + +Editor's Draft +Intl.PluralRules +https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html + +ecma-402 + + +- +d:tc39-is-usv-string +TC39-IS-USV-STRING + +Editor's Draft +Well-Formed Unicode Strings +https://tc39.es/proposal-is-usv-string/ + +ecmascript + + +- +d:tc39-iterator-helpers +TC39-ITERATOR-HELPERS + +Editor's Draft +Iterator Helpers +https://tc39.es/proposal-iterator-helpers/ + + + + +- +d:tc39-json-modules +TC39-JSON-MODULES + +Editor's Draft +JSON modules +https://tc39.es/proposal-json-modules/ + + + + +- +d:tc39-json-parse-with-source +TC39-JSON-PARSE-WITH-SOURCE + +Editor's Draft +JSON.parse source text access +https://tc39.es/proposal-json-parse-with-source/ + + + + +- +d:tc39-promise-try +TC39-PROMISE-TRY + +Editor's Draft +Promise.try +https://tc39.es/proposal-promise-try/ + + + + +- +d:tc39-promise-with-resolvers +TC39-PROMISE-WITH-RESOLVERS + +Editor's Draft +ES Promise.withResolvers (2023) +https://tc39.es/proposal-promise-with-resolvers/ + + + + +- +d:tc39-regex-escaping +TC39-REGEX-ESCAPING + +Editor's Draft +RegExp.escape +https://tc39.es/proposal-regex-escaping/ + + + + +- +d:tc39-regexp-modifiers +TC39-REGEXP-MODIFIERS + +Editor's Draft +Regular Expression Pattern Modifiers for ECMAScript +https://tc39.es/proposal-regexp-modifiers/ + + + + +- +d:tc39-resizablearraybuffer +TC39-RESIZABLEARRAYBUFFER + +Editor's Draft +Resizable ArrayBuffer and growable SharedArrayBuffer +https://tc39.es/proposal-resizablearraybuffer/ + +ecmascript + + +- +d:tc39-set-methods +TC39-SET-METHODS + +Editor's Draft +Set methods +https://tc39.es/proposal-set-methods/ + + + + +- +d:tc39-shadowrealm +TC39-SHADOWREALM + +Editor's Draft +ShadowRealm API +https://tc39.es/proposal-shadowrealm/ + + + + +- +d:tc39-source-phase-imports +TC39-SOURCE-PHASE-IMPORTS + +Editor's Draft +Source Phase Imports +https://tc39.es/proposal-source-phase-imports/ + + + + +- +d:tc39-symbols-as-weakmap-keys +TC39-SYMBOLS-AS-WEAKMAP-KEYS + +Editor's Draft +Symbol as WeakMap Keys Proposal +https://tc39.es/proposal-symbols-as-weakmap-keys/ + +ecmascript + + +- +d:tc39-temporal +TC39-TEMPORAL + +Editor's Draft +Temporal proposal +https://tc39.es/proposal-temporal/ + + + + +- d:tcg-cmcprofile-aikcertenroll TCG-CMCProfile-AIKCertEnroll 24 March 2011 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-th.data b/bikeshed/spec-data/readonly/biblio/biblio-th.data index 972a7bf2e7..1670b13a60 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-th.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-th.data @@ -1,6 +1,6 @@ d:thai-gap thai-gap -19 January 2022 +10 July 2024 NOTE Thai Gap Analysis https://www.w3.org/TR/thai-gap/ @@ -80,6 +80,150 @@ https://www.w3.org/TR/2022/DNOTE-thai-gap-20220119/ +Richard Ishida +- +d:thai-gap-20230615 +thai-gap-20230615 +15 June 2023 +NOTE +Thai Gap Analysis +https://www.w3.org/TR/2023/DNOTE-thai-gap-20230615/ +https://www.w3.org/TR/2023/DNOTE-thai-gap-20230615/ + + + +Richard Ishida +- +d:thai-gap-20240630 +thai-gap-20240630 +30 June 2024 +NOTE +Thai Gap Analysis +https://www.w3.org/TR/2024/DNOTE-thai-gap-20240630/ +https://www.w3.org/TR/2024/DNOTE-thai-gap-20240630/ + + + +Richard Ishida +- +d:thai-gap-20240705 +thai-gap-20240705 +5 July 2024 +NOTE +Thai Gap Analysis +https://www.w3.org/TR/2024/DNOTE-thai-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-thai-gap-20240705/ + + + +Richard Ishida +- +d:thai-gap-20240710 +thai-gap-20240710 +10 July 2024 +NOTE +Thai Gap Analysis +https://www.w3.org/TR/2024/DNOTE-thai-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-thai-gap-20240710/ + + + +Richard Ishida +- +d:thai-lreq +thai-lreq +15 August 2024 +NOTE +Thai Script Resources +https://www.w3.org/TR/thai-lreq/ +https://w3c.github.io/sealreq/thai/ + + + +Richard Ishida +- +d:thai-lreq-20240430 +thai-lreq-20240430 +30 April 2024 +NOTE +Thai Layout Requirements +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240430/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240430/ + + + +Richard Ishida +- +d:thai-lreq-20240515 +thai-lreq-20240515 +15 May 2024 +NOTE +Thai Layout Requirements +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240515/ + + + +Richard Ishida +- +d:thai-lreq-20240630 +thai-lreq-20240630 +30 June 2024 +NOTE +Thai Layout Requirements +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240630/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240630/ + + + +Richard Ishida +- +d:thai-lreq-20240705 +thai-lreq-20240705 +5 July 2024 +NOTE +Thai Layout Requirements +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240705/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240705/ + + + +Richard Ishida +- +d:thai-lreq-20240710 +thai-lreq-20240710 +10 July 2024 +NOTE +Thai Script Resources +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240710/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240710/ + + + +Richard Ishida +- +d:thai-lreq-20240809 +thai-lreq-20240809 +9 August 2024 +NOTE +Thai Script Resources +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240809/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240809/ + + + +Richard Ishida +- +d:thai-lreq-20240815 +thai-lreq-20240815 +15 August 2024 +NOTE +Thai Script Resources +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240815/ +https://www.w3.org/TR/2024/DNOTE-thai-lreq-20240815/ + + + Richard Ishida - s:thegrid diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ti.data b/bikeshed/spec-data/readonly/biblio/biblio-ti.data index 7edb1a5608..15007398f8 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ti.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ti.data @@ -1,6 +1,6 @@ d:tibt-gap tibt-gap -19 January 2022 +10 July 2024 NOTE Tibetan Gap Analysis https://www.w3.org/TR/tibt-gap/ @@ -44,6 +44,66 @@ https://www.w3.org/TR/2022/DNOTE-tibt-gap-20220119/ +Richard Ishida +- +d:tibt-gap-20240705 +tibt-gap-20240705 +5 July 2024 +NOTE +Tibetan Gap Analysis +https://www.w3.org/TR/2024/DNOTE-tibt-gap-20240705/ +https://www.w3.org/TR/2024/DNOTE-tibt-gap-20240705/ + + + +Richard Ishida +- +d:tibt-gap-20240710 +tibt-gap-20240710 +10 July 2024 +NOTE +Tibetan Gap Analysis +https://www.w3.org/TR/2024/DNOTE-tibt-gap-20240710/ +https://www.w3.org/TR/2024/DNOTE-tibt-gap-20240710/ + + + +Richard Ishida +- +d:tibt-lreq +tibt-lreq +9 August 2024 +NOTE +Tibetan Script Resources +https://www.w3.org/TR/tibt-lreq/ +https://w3c.github.io/tlreq/tibt/ + + + +Richard Ishida +- +d:tibt-lreq-20240730 +tibt-lreq-20240730 +30 July 2024 +NOTE +Tibetan Script Resources +https://www.w3.org/TR/2024/DNOTE-tibt-lreq-20240730/ +https://www.w3.org/TR/2024/DNOTE-tibt-lreq-20240730/ + + + +Richard Ishida +- +d:tibt-lreq-20240809 +tibt-lreq-20240809 +9 August 2024 +NOTE +Tibetan Script Resources +https://www.w3.org/TR/2024/DNOTE-tibt-lreq-20240809/ +https://www.w3.org/TR/2024/DNOTE-tibt-lreq-20240809/ + + + Richard Ishida - d:timesheets diff --git a/bikeshed/spec-data/readonly/biblio/biblio-tl.data b/bikeshed/spec-data/readonly/biblio/biblio-tl.data index 75e070a175..39cf7a9329 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-tl.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-tl.data @@ -1,15 +1,14 @@ d:tlreq tlreq -16 June 2020 -WD -Requirements for Tibetan Text Layout and Typography +30 July 2024 +NOTE +Tibetan Layout Requirements https://www.w3.org/TR/tlreq/ https://w3c.github.io/tlreq/ Richard Ishida -Chunming Hu - d:tlreq-20200616 tlreq-20200616 @@ -24,6 +23,66 @@ https://www.w3.org/TR/2020/WD-tlreq-20200616/ Richard Ishida Chunming Hu - +d:tlreq-20240402 +tlreq-20240402 +2 April 2024 +NOTE +Requirements for Tibetan Text Layout and Typography +https://www.w3.org/TR/2024/DNOTE-tlreq-20240402/ +https://www.w3.org/TR/2024/DNOTE-tlreq-20240402/ + + + +Richard Ishida +- +d:tlreq-20240419 +tlreq-20240419 +19 April 2024 +NOTE +Requirements for Tibetan Text Layout and Typography +https://www.w3.org/TR/2024/DNOTE-tlreq-20240419/ +https://www.w3.org/TR/2024/DNOTE-tlreq-20240419/ + + + +Richard Ishida +- +d:tlreq-20240515 +tlreq-20240515 +15 May 2024 +NOTE +Requirements for Tibetan Text Layout and Typography +https://www.w3.org/TR/2024/DNOTE-tlreq-20240515/ +https://www.w3.org/TR/2024/DNOTE-tlreq-20240515/ + + + +Richard Ishida +- +d:tlreq-20240705 +tlreq-20240705 +5 July 2024 +NOTE +Tibetan script Layout Requirements +https://www.w3.org/TR/2024/DNOTE-tlreq-20240705/ +https://www.w3.org/TR/2024/DNOTE-tlreq-20240705/ + + + +Richard Ishida +- +d:tlreq-20240730 +tlreq-20240730 +30 July 2024 +NOTE +Tibetan Layout Requirements +https://www.w3.org/TR/2024/DNOTE-tlreq-20240730/ +https://www.w3.org/TR/2024/DNOTE-tlreq-20240730/ + + + +Richard Ishida +- a:tls TLS rfc5246 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-to.data b/bikeshed/spec-data/readonly/biblio/biblio-to.data index 4350c7eafa..b0186e052e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-to.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-to.data @@ -1,6 +1,17 @@ s:tobin Tobin R. Tobin. <a href="https://lists.w3.org/Archives/Member/w3c-xml-core-wg/2000OctDec/0054"><cite>Infoset for external entities.</cite></a> 2000. URL: <a href="https://lists.w3.org/Archives/Member/w3c-xml-core-wg/2000OctDec/0054">https://lists.w3.org/Archives/Member/w3c-xml-core-wg/2000OctDec/0054</a> [XML Core mailing list, <a href="http://cgi.w3.org/MemberAccess/AccessRequest">W3C Member Only</a>]. +- +d:topics +TOPICS + +Unofficial Proposal Draft +Topics API +https://patcg-individual-drafts.github.io/topics/ + + + + - s:tor TOR diff --git a/bikeshed/spec-data/readonly/biblio/biblio-tr.data b/bikeshed/spec-data/readonly/biblio/biblio-tr.data index d9255fe54a..d672fa4413 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-tr.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-tr.data @@ -134,8 +134,8 @@ Yuri Shkuro - d:trace-context-2 trace-context-2 -29 September 2022 -WD +28 March 2024 +CR Trace Context Level 2 https://www.w3.org/TR/trace-context-2/ https://w3c.github.io/trace-context/ @@ -145,6 +145,8 @@ https://w3c.github.io/trace-context/ Sergey Kanzhelev Daniel Dyla Yuri Shkuro +J. Kalyana Sundaram +Bastian Krol - d:trace-context-2-20220929 trace-context-2-20220929 @@ -160,6 +162,50 @@ Sergey Kanzhelev Daniel Dyla Yuri Shkuro - +d:trace-context-2-20230406 +trace-context-2-20230406 +6 April 2023 +WD +Trace Context Level 2 +https://www.w3.org/TR/2023/WD-trace-context-2-20230406/ +https://www.w3.org/TR/2023/WD-trace-context-2-20230406/ + + + +Sergey Kanzhelev +Daniel Dyla +Yuri Shkuro +- +d:trace-context-2-20230418 +trace-context-2-20230418 +18 April 2023 +CR +Trace Context Level 2 +https://www.w3.org/TR/2023/CR-trace-context-2-20230418/ +https://www.w3.org/TR/2023/CR-trace-context-2-20230418/ + + + +Sergey Kanzhelev +Yuri Shkuro +Daniel Dyla +- +d:trace-context-2-20240328 +trace-context-2-20240328 +28 March 2024 +CR +Trace Context Level 2 +https://www.w3.org/TR/2024/CRD-trace-context-2-20240328/ +https://www.w3.org/TR/2024/CRD-trace-context-2-20240328/ + + + +Sergey Kanzhelev +Daniel Dyla +Yuri Shkuro +J. Kalyana Sundaram +Bastian Krol +- a:trace-context-20181106 trace-context-20181106 trace-context-1-20181106 @@ -604,7 +650,7 @@ trig REC RDF 1.1 TriG https://www.w3.org/TR/trig/ - +https://w3c.github.io/rdf-trig/spec/ @@ -689,10 +735,21 @@ https://developer.apple.com/fonts/TrueType-Reference-Manual/ +- +d:trust-token-api +TRUST-TOKEN-API + +Draft Community Group Report +Private State Token API +https://wicg.github.io/trust-token-api/ + + + + - d:trusted-types trusted-types -27 September 2022 +18 July 2024 WD Trusted Types https://www.w3.org/TR/trusted-types/ @@ -712,5 +769,41 @@ https://www.w3.org/TR/2022/WD-trusted-types-20220927/ +Krzysztof Kotowicz +- +d:trusted-types-20240531 +trusted-types-20240531 +31 May 2024 +WD +Trusted Types +https://www.w3.org/TR/2024/WD-trusted-types-20240531/ +https://www.w3.org/TR/2024/WD-trusted-types-20240531/ + + + +Krzysztof Kotowicz +- +d:trusted-types-20240619 +trusted-types-20240619 +19 June 2024 +WD +Trusted Types +https://www.w3.org/TR/2024/WD-trusted-types-20240619/ +https://www.w3.org/TR/2024/WD-trusted-types-20240619/ + + + +Krzysztof Kotowicz +- +d:trusted-types-20240718 +trusted-types-20240718 +18 July 2024 +WD +Trusted Types +https://www.w3.org/TR/2024/WD-trusted-types-20240718/ +https://www.w3.org/TR/2024/WD-trusted-types-20240718/ + + + Krzysztof Kotowicz - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-tu.data b/bikeshed/spec-data/readonly/biblio/biblio-tu.data index 167f030e9a..ac978c1cd6 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-tu.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-tu.data @@ -166,7 +166,7 @@ turtle REC RDF 1.1 Turtle https://www.w3.org/TR/turtle/ - +https://w3c.github.io/rdf-turtle/spec/ @@ -237,6 +237,17 @@ https://www.w3.org/TR/2014/REC-turtle-20140225/ Eric Prud'hommeaux Gavin Carothers +- +d:turtledove +TURTLEDOVE + +Draft Community Group Report +Protected Audience (formerly FLEDGE) +https://wicg.github.io/turtledove/ + + + + - s:tussle TUSSLE diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ty.data b/bikeshed/spec-data/readonly/biblio/biblio-ty.data index 305a379689..a0710bbaa5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ty.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ty.data @@ -17,7 +17,7 @@ Kenneth Russell - d:typography typography -1 November 2022 +15 August 2024 NOTE Language enablement index https://www.w3.org/TR/typography/ @@ -85,5 +85,65 @@ https://www.w3.org/TR/2022/DNOTE-typography-20221101/ +Richard Ishida +- +d:typography-20240125 +typography-20240125 +25 January 2024 +NOTE +Language enablement index +https://www.w3.org/TR/2024/DNOTE-typography-20240125/ +https://www.w3.org/TR/2024/DNOTE-typography-20240125/ + + + +Richard Ishida +- +d:typography-20240321 +typography-20240321 +21 March 2024 +NOTE +Language enablement index +https://www.w3.org/TR/2024/DNOTE-typography-20240321/ +https://www.w3.org/TR/2024/DNOTE-typography-20240321/ + + + +Richard Ishida +- +d:typography-20240322 +typography-20240322 +22 March 2024 +NOTE +Language enablement index +https://www.w3.org/TR/2024/DNOTE-typography-20240322/ +https://www.w3.org/TR/2024/DNOTE-typography-20240322/ + + + +Richard Ishida +- +d:typography-20240705 +typography-20240705 +5 July 2024 +NOTE +Language enablement index +https://www.w3.org/TR/2024/DNOTE-typography-20240705/ +https://www.w3.org/TR/2024/DNOTE-typography-20240705/ + + + +Richard Ishida +- +d:typography-20240815 +typography-20240815 +15 August 2024 +NOTE +Language enablement index +https://www.w3.org/TR/2024/DNOTE-typography-20240815/ +https://www.w3.org/TR/2024/DNOTE-typography-20240815/ + + + Richard Ishida - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ua.data b/bikeshed/spec-data/readonly/biblio/biblio-ua.data index c841364092..23f6cc13e5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ua.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ua.data @@ -1,3 +1,14 @@ +d:ua-client-hints +UA-CLIENT-HINTS + +Draft Community Group Report +User-Agent Client Hints +https://wicg.github.io/ua-client-hints/ + + + + +- d:uaag10 UAAG10 17 December 2002 @@ -776,10 +787,10 @@ Jan Richards - d:uax11 UAX11 -16 August 2022 +17 July 2023 Unicode Standard Annex #11 East Asian Width -https://www.unicode.org/reports/tr11/tr11-40.html +https://www.unicode.org/reports/tr11/tr11-41.html @@ -788,22 +799,22 @@ Ken Lunde 小林劍󠄁 - d:uax14 UAX14 -16 August 2022 +15 August 2023 Unicode Standard Annex #14 Unicode Line Breaking Algorithm -https://www.unicode.org/reports/tr14/tr14-49.html +https://www.unicode.org/reports/tr14/tr14-51.html -Christopher Chapman +Robin Leroy - d:uax15 UAX15 -17 August 2022 +12 August 2023 Unicode Standard Annex #15 Unicode Normalization Forms -https://www.unicode.org/reports/tr15/tr15-53.html +https://www.unicode.org/reports/tr15/tr15-54.html @@ -824,10 +835,10 @@ Mark Davis - d:uax24 UAX24 -25 August 2022 +14 August 2023 Unicode Standard Annex #24 Unicode Script Property -https://www.unicode.org/reports/tr24/tr24-34.html +https://www.unicode.org/reports/tr24/tr24-36.html @@ -851,22 +862,22 @@ John H. Jenkins - d:uax29 UAX29 -26 August 2022 +16 August 2023 Unicode Standard Annex #29 Unicode Text Segmentation -https://www.unicode.org/reports/tr29/tr29-41.html +https://www.unicode.org/reports/tr29/tr29-43.html -Christopher Chapman +Josh Hadley - d:uax31 UAX31 -31 August 2022 +1 September 2023 Unicode Standard Annex #31 -Unicode Identifier and Pattern Syntax -https://www.unicode.org/reports/tr31/tr31-37.html +Unicode Identifiers and Syntax +https://www.unicode.org/reports/tr31/tr31-39.html @@ -876,10 +887,10 @@ Robin Leroy - d:uax34 UAX34 -25 August 2022 +14 August 2023 Unicode Standard Annex #34 Unicode Named Character Sequences -https://www.unicode.org/reports/tr34/tr34-29.html +https://www.unicode.org/reports/tr34/tr34-30.html @@ -892,24 +903,23 @@ UTS35 - d:uax38 UAX38 -12 September 2022 +1 September 2023 Unicode Standard Annex #38 Unicode Han Database (Unihan) -https://www.unicode.org/reports/tr38/tr38-33.html +https://www.unicode.org/reports/tr38/tr38-35.html -John H. Jenkins 井作恆 -Richard Cook 曲理查 Ken Lunde 小林劍󠄁 +Richard Cook 曲理查 - d:uax41 UAX41 -18 August 2022 +31 August 2023 Unicode Standard Annex #41 Common References for Unicode Standard Annexes -https://www.unicode.org/reports/tr41/tr41-30.html +https://www.unicode.org/reports/tr41/tr41-32.html @@ -919,10 +929,10 @@ Rick McGowan - d:uax42 UAX42 -29 August 2022 +27 August 2023 Unicode Standard Annex #42 Unicode Character Database in XML -https://www.unicode.org/reports/tr42/tr42-32.html +https://www.unicode.org/reports/tr42/tr42-34.html @@ -932,10 +942,10 @@ Laurențiu Iancu - d:uax44 UAX44 -2 September 2022 +6 September 2023 Unicode Standard Annex #44 Unicode Character Database -https://www.unicode.org/reports/tr44/tr44-30.html +https://www.unicode.org/reports/tr44/tr44-32.html @@ -944,22 +954,22 @@ Ken Whistler - d:uax45 UAX45 -30 August 2022 +17 July 2023 Unicode Standard Annex #45 U-source Ideographs -https://www.unicode.org/reports/tr45/tr45-27.html +https://www.unicode.org/reports/tr45/tr45-29.html -John H. Jenkins 井作恆 +Ken Lunde 小林劍󠄁 - d:uax50 UAX50 -16 August 2022 +17 July 2023 Unicode Standard Annex #50 Unicode Vertical Text Layout -https://www.unicode.org/reports/tr50/tr50-28.html +https://www.unicode.org/reports/tr50/tr50-29.html @@ -967,16 +977,28 @@ https://www.unicode.org/reports/tr50/tr50-28.html Ken Lunde 小林劍󠄁 Koji Ishii 石井宏治 - +d:uax57 +UAX57 +6 February 2024 +Draft Unicode Standard Annex #57 +Unicode Egyptian Hieroglyph Database (Unikemet) +https://www.unicode.org/reports/tr57/tr57-2.html + + + + +Michel Suignard +- d:uax9 UAX9 -16 August 2022 +15 August 2023 Unicode Standard Annex #9 Unicode Bidirectional Algorithm -https://www.unicode.org/reports/tr9/tr9-46.html +https://www.unicode.org/reports/tr9/tr9-48.html -Mark Davis -Ken Whistler +Manish Goregaokar मनीष गोरेगांवकर +Robin Leroy - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ui.data b/bikeshed/spec-data/readonly/biblio/biblio-ui.data index 019759d329..b5a25be6e2 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ui.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ui.data @@ -145,6 +145,38 @@ a:ui-events-20220913 UI-EVENTS-20220913 uievents-20220913 - +a:ui-events-20230509 +UI-EVENTS-20230509 +uievents-20230509 +- +a:ui-events-20230627 +UI-EVENTS-20230627 +uievents-20230627 +- +a:ui-events-20230823 +UI-EVENTS-20230823 +uievents-20230823 +- +a:ui-events-20230915 +UI-EVENTS-20230915 +uievents-20230915 +- +a:ui-events-20231204 +UI-EVENTS-20231204 +uievents-20231204 +- +a:ui-events-20240221 +UI-EVENTS-20240221 +uievents-20240221 +- +a:ui-events-20240613 +UI-EVENTS-20240613 +uievents-20240613 +- +a:ui-events-20240622 +UI-EVENTS-20240622 +uievents-20240622 +- d:uia-express UIA-EXPRESS @@ -158,7 +190,7 @@ https://docs.microsoft.com/en-us/windows/win32/winauto/iaccessibleex - d:uievents uievents -13 September 2022 +22 June 2024 WD UI Events https://www.w3.org/TR/uievents/ @@ -616,12 +648,116 @@ https://www.w3.org/TR/2022/WD-uievents-20220913/ +Gary Kacmarcik +Travis Leithead +- +d:uievents-20230509 +uievents-20230509 +9 May 2023 +WD +UI Events +https://www.w3.org/TR/2023/WD-uievents-20230509/ +https://www.w3.org/TR/2023/WD-uievents-20230509/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20230627 +uievents-20230627 +27 June 2023 +WD +UI Events +https://www.w3.org/TR/2023/WD-uievents-20230627/ +https://www.w3.org/TR/2023/WD-uievents-20230627/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20230823 +uievents-20230823 +23 August 2023 +WD +UI Events +https://www.w3.org/TR/2023/WD-uievents-20230823/ +https://www.w3.org/TR/2023/WD-uievents-20230823/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20230915 +uievents-20230915 +15 September 2023 +WD +UI Events +https://www.w3.org/TR/2023/WD-uievents-20230915/ +https://www.w3.org/TR/2023/WD-uievents-20230915/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20231204 +uievents-20231204 +4 December 2023 +WD +UI Events +https://www.w3.org/TR/2023/WD-uievents-20231204/ +https://www.w3.org/TR/2023/WD-uievents-20231204/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20240221 +uievents-20240221 +21 February 2024 +WD +UI Events +https://www.w3.org/TR/2024/WD-uievents-20240221/ +https://www.w3.org/TR/2024/WD-uievents-20240221/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20240613 +uievents-20240613 +13 June 2024 +WD +UI Events +https://www.w3.org/TR/2024/WD-uievents-20240613/ +https://www.w3.org/TR/2024/WD-uievents-20240613/ + + + +Gary Kacmarcik +Travis Leithead +- +d:uievents-20240622 +uievents-20240622 +22 June 2024 +WD +UI Events +https://www.w3.org/TR/2024/WD-uievents-20240622/ +https://www.w3.org/TR/2024/WD-uievents-20240622/ + + + Gary Kacmarcik Travis Leithead - d:uievents-code uievents-code -1 June 2017 +30 May 2023 CR UI Events KeyboardEvent code Values https://www.w3.org/TR/uievents-code/ @@ -629,8 +765,8 @@ https://w3c.github.io/uievents-code/ -Gary Kacmarcik Travis Leithead +Gary Kacmarcik - d:uievents-code-20140612 uievents-code-20140612 @@ -681,8 +817,8 @@ https://www.w3.org/TR/2016/WD-uievents-code-20161024/ -Gary Kacmarcik Travis Leithead +Gary Kacmarcik - d:uievents-code-20170601 uievents-code-20170601 @@ -697,9 +833,22 @@ https://www.w3.org/TR/2017/CR-uievents-code-20170601/ Gary Kacmarcik Travis Leithead - +d:uievents-code-20230530 +uievents-code-20230530 +30 May 2023 +CR +UI Events KeyboardEvent code Values +https://www.w3.org/TR/2023/CR-uievents-code-20230530/ +https://www.w3.org/TR/2023/CR-uievents-code-20230530/ + + + +Travis Leithead +Gary Kacmarcik +- d:uievents-key uievents-key -1 June 2017 +30 May 2023 CR UI Events KeyboardEvent key Values https://www.w3.org/TR/uievents-key/ @@ -707,8 +856,8 @@ https://w3c.github.io/uievents-key/ -Gary Kacmarcik Travis Leithead +Gary Kacmarcik - d:uievents-key-20140612 uievents-key-20140612 @@ -759,8 +908,8 @@ https://www.w3.org/TR/2016/WD-uievents-key-20161024/ -Gary Kacmarcik Travis Leithead +Gary Kacmarcik - d:uievents-key-20170601 uievents-key-20170601 @@ -775,6 +924,19 @@ https://www.w3.org/TR/2017/CR-uievents-key-20170601/ Gary Kacmarcik Travis Leithead - +d:uievents-key-20230530 +uievents-key-20230530 +30 May 2023 +CR +UI Events KeyboardEvent key Values +https://www.w3.org/TR/2023/CR-uievents-key-20230530/ +https://www.w3.org/TR/2023/CR-uievents-key-20230530/ + + + +Travis Leithead +Gary Kacmarcik +- a:uisafety UISafety UISecurity diff --git a/bikeshed/spec-data/readonly/biblio/biblio-un.data b/bikeshed/spec-data/readonly/biblio/biblio-un.data index 0fc8de87c4..a110d77072 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-un.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-un.data @@ -12,7 +12,7 @@ United Nations Economic Commission for Europe - d:understanding-wcag20 UNDERSTANDING-WCAG20 -7 October 2016 +21 September 2023 NOTE Understanding WCAG 2.0 https://www.w3.org/TR/UNDERSTANDING-WCAG20/ @@ -245,6 +245,20 @@ https://www.w3.org/TR/2016/NOTE-UNDERSTANDING-WCAG20-20161007/ https://www.w3.org/TR/2016/NOTE-UNDERSTANDING-WCAG20-20161007/ +1 +Michael Cooper +Andrew Kirkpatrick +Joshue O'Connor +- +d:understanding-wcag20-20230921 +UNDERSTANDING-WCAG20-20230921 +21 September 2023 +NOTE +Understanding WCAG 2.0 +https://www.w3.org/TR/2023/NOTE-UNDERSTANDING-WCAG20-20230921/ +https://www.w3.org/TR/2023/NOTE-UNDERSTANDING-WCAG20-20230921/ + + 1 Michael Cooper Andrew Kirkpatrick diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ur.data b/bikeshed/spec-data/readonly/biblio/biblio-ur.data index a6b76a8fab..a36a6368a3 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ur.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ur.data @@ -128,6 +128,20 @@ a:url-20161206 url-20161206 url-1-20161206 - +d:urlpattern +URLPATTERN + +Living Standard +URL Pattern Standard +https://urlpattern.spec.whatwg.org/ + + + + +Ben Kelly +Jeremy Roman +宍戸俊哉 (Shunya Shishido) +- d:urls-in-data urls-in-data 4 June 2013 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-us.data b/bikeshed/spec-data/readonly/biblio/biblio-us.data index f0049ca346..c0ee22dcc5 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-us.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-us.data @@ -1,6 +1,17 @@ +d:user-preference-media-features-headers +USER-PREFERENCE-MEDIA-FEATURES-HEADERS + +Draft Community Group Report +User Preference Media Features Client Hints Headers +https://wicg.github.io/user-preference-media-features-headers/ + + + + +- d:user-timing user-timing -3 August 2022 +14 November 2023 CR User Timing Level 3 https://www.w3.org/TR/user-timing/ @@ -50,6 +61,18 @@ a:user-timing-1-20220803 user-timing-1-20220803 user-timing-20220803 - +a:user-timing-1-20230426 +user-timing-1-20230426 +user-timing-20230426 +- +a:user-timing-1-20231106 +user-timing-1-20231106 +user-timing-20231106 +- +a:user-timing-1-20231114 +user-timing-1-20231114 +user-timing-20231114 +- d:user-timing-2 user-timing-2 26 February 2019 @@ -305,6 +328,42 @@ https://www.w3.org/TR/2022/CRD-user-timing-20220803/ +Nicolas Pena Moreno +- +d:user-timing-20230426 +user-timing-20230426 +26 April 2023 +CR +User Timing Level 3 +https://www.w3.org/TR/2023/CRD-user-timing-20230426/ +https://www.w3.org/TR/2023/CRD-user-timing-20230426/ + + + +Nicolas Pena Moreno +- +d:user-timing-20231106 +user-timing-20231106 +6 November 2023 +CR +User Timing Level 3 +https://www.w3.org/TR/2023/CRD-user-timing-20231106/ +https://www.w3.org/TR/2023/CRD-user-timing-20231106/ + + + +Nicolas Pena Moreno +- +d:user-timing-20231114 +user-timing-20231114 +14 November 2023 +CR +User Timing Level 3 +https://www.w3.org/TR/2023/CRD-user-timing-20231114/ +https://www.w3.org/TR/2023/CRD-user-timing-20231114/ + + + Nicolas Pena Moreno - d:user-timing-3 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-ut.data b/bikeshed/spec-data/readonly/biblio/biblio-ut.data index 9632d75a9c..457632e2cd 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-ut.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-ut.data @@ -131,10 +131,10 @@ UTS51 - d:utr53 UTR53 -8 December 2021 +7 November 2023 Unicode Technical Report #53 Unicode Arabic Mark Rendering -https://www.unicode.org/reports/tr53/tr53-6.html +https://www.unicode.org/reports/tr53/tr53-8.html @@ -155,12 +155,24 @@ https://www.unicode.org/reports/tr54/tr54-3.pdf Ken Whistler - +d:utr56 +UTR56 +26 April 2024 +Unicode Technical Report #56 +Unicode Cuneiform Sign Lists +https://www.unicode.org/reports/tr56/tr56-3.html + + + + +Robin Leroy 𒉭 +- d:uts10 UTS10 -26 August 2022 +5 September 2023 Unicode Technical Standard #10 Unicode Collation Algorithm -https://www.unicode.org/reports/tr10/tr10-47.html +https://www.unicode.org/reports/tr10/tr10-49.html @@ -221,10 +233,10 @@ John H. Jenkins 井作恆 - d:uts39 UTS39 -26 August 2022 +5 September 2023 Unicode Technical Standard #39 Unicode Security Mechanisms -https://www.unicode.org/reports/tr39/tr39-26.html +https://www.unicode.org/reports/tr39/tr39-28.html @@ -234,10 +246,10 @@ Michel Suignard - d:uts46 UTS46 -26 August 2022 +5 September 2023 Unicode Technical Standard #46 Unicode IDNA Compatibility Processing -https://www.unicode.org/reports/tr46/tr46-29.html +https://www.unicode.org/reports/tr46/tr46-31.html @@ -247,10 +259,10 @@ Michel Suignard - d:uts51 UTS51 -31 August 2022 +5 September 2023 Unicode Technical Standard #51 Unicode Emoji -https://www.unicode.org/reports/tr51/tr51-23.html +https://www.unicode.org/reports/tr51/tr51-25.html @@ -258,3 +270,16 @@ https://www.unicode.org/reports/tr51/tr51-23.html Mark Davis Ned Holbrook - +d:uts55 +UTS55 +29 January 2024 +Unicode Technical Standard #55 +Unicode Source Code Handling +https://www.unicode.org/reports/tr55/tr55-5.html + + + + +Robin Leroy +Mark Davis +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-vc.data b/bikeshed/spec-data/readonly/biblio/biblio-vc.data index 786ec6e863..339c5267d7 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-vc.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-vc.data @@ -1,481 +1,5465 @@ -d:vc-data-integrity -vc-data-integrity -10 November 2022 -WD -Verifiable Credential Data Integrity 1.0 -https://www.w3.org/TR/vc-data-integrity/ -https://w3c.github.io/vc-data-integrity/ +d:vc-bitstring-status-list +vc-bitstring-status-list +10 June 2024 +CR +Bitstring Status List v1.0 +https://www.w3.org/TR/vc-bitstring-status-list/ +https://w3c.github.io/vc-bitstring-status-list/ Manu Sporny Dave Longley Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-integrity-20221110 -vc-data-integrity-20221110 -10 November 2022 +d:vc-bitstring-status-list-20230427 +vc-bitstring-status-list-20230427 +27 April 2023 WD -Verifiable Credential Data Integrity 1.0 -https://www.w3.org/TR/2022/WD-vc-data-integrity-20221110/ -https://www.w3.org/TR/2022/WD-vc-data-integrity-20221110/ +Verifiable Credentials Status List v2021 +https://www.w3.org/TR/2023/WD-vc-status-list-20230427/ +https://www.w3.org/TR/2023/WD-vc-status-list-20230427/ Manu Sporny Dave Longley +Orie Steele +Mahmoud Alkhraishi Michael Prorock - -d:vc-data-model -vc-data-model -3 March 2022 -REC -Verifiable Credentials Data Model v1.1 -https://www.w3.org/TR/vc-data-model/ -https://w3c.github.io/vc-data-model/ +d:vc-bitstring-status-list-20231123 +vc-bitstring-status-list-20231123 +23 November 2023 +WD +Bitstring Status List v1.0 +https://www.w3.org/TR/2023/WD-vc-bitstring-status-list-20231123/ +https://www.w3.org/TR/2023/WD-vc-bitstring-status-list-20231123/ Manu Sporny -Grant Noble Dave Longley -Daniel Burnett -Brent Zundel -Kyle Den Hartog +Orie Steele +Mahmoud Alkhraishi +Michael Prorock - -d:vc-data-model-2.0 -vc-data-model-2.0 -19 January 2023 +d:vc-bitstring-status-list-20240107 +vc-bitstring-status-list-20240107 +7 January 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/vc-data-model-2.0/ -https://w3c.github.io/vc-data-model/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240107/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240107/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20220811 -vc-data-model-2.0-20220811 -11 August 2022 +d:vc-bitstring-status-list-20240204 +vc-bitstring-status-list-20240204 +4 February 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220811/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220811/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240204/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240204/ Manu Sporny -Grant Noble Dave Longley -Daniel Burnett -Brent Zundel -Kyle Den Hartog -Orie Steele -Michael Jones -Gabe Cohen +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20220824 -vc-data-model-2.0-20220824 -24 August 2022 +d:vc-bitstring-status-list-20240303 +vc-bitstring-status-list-20240303 +3 March 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220824/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220824/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240303/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240303/ Manu Sporny -Grant Noble Dave Longley -Daniel Burnett -Brent Zundel -Kyle Den Hartog -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20220903 -vc-data-model-2.0-20220903 -3 September 2022 +d:vc-bitstring-status-list-20240330 +vc-bitstring-status-list-20240330 +30 March 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220903/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220903/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240330/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240330/ Manu Sporny -Grant Noble Dave Longley -Daniel Burnett -Brent Zundel -Kyle Den Hartog -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20220910 -vc-data-model-2.0-20220910 -10 September 2022 +d:vc-bitstring-status-list-20240406 +vc-bitstring-status-list-20240406 +6 April 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220910/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220910/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240406/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240406/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20220916 -vc-data-model-2.0-20220916 -16 September 2022 +d:vc-bitstring-status-list-20240416 +vc-bitstring-status-list-20240416 +16 April 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220916/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220916/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240416/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240416/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221006 -vc-data-model-2.0-20221006 -6 October 2022 +d:vc-bitstring-status-list-20240419 +vc-bitstring-status-list-20240419 +19 April 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221006/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221006/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240419/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240419/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221023 -vc-data-model-2.0-20221023 -23 October 2022 +d:vc-bitstring-status-list-20240420 +vc-bitstring-status-list-20240420 +20 April 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221023/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221023/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240420/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240420/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221027 -vc-data-model-2.0-20221027 -27 October 2022 +d:vc-bitstring-status-list-20240504 +vc-bitstring-status-list-20240504 +4 May 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221027/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221027/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240504/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240504/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221028 -vc-data-model-2.0-20221028 -28 October 2022 +d:vc-bitstring-status-list-20240511 +vc-bitstring-status-list-20240511 +11 May 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221028/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221028/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240511/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240511/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221105 -vc-data-model-2.0-20221105 -5 November 2022 +d:vc-bitstring-status-list-20240514 +vc-bitstring-status-list-20240514 +14 May 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221105/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221105/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240514/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240514/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221121 -vc-data-model-2.0-20221121 -21 November 2022 +d:vc-bitstring-status-list-20240516 +vc-bitstring-status-list-20240516 +16 May 2024 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221121/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221121/ +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240516/ +https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240516/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221130 -vc-data-model-2.0-20221130 -30 November 2022 -WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221130/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221130/ +d:vc-bitstring-status-list-20240521 +vc-bitstring-status-list-20240521 +21 May 2024 +CR +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/CR-vc-bitstring-status-list-20240521/ +https://www.w3.org/TR/2024/CR-vc-bitstring-status-list-20240521/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Mahmoud Alkhraishi +Michael Prorock - -d:vc-data-model-2.0-20221211 -vc-data-model-2.0-20221211 -11 December 2022 -WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221211/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221211/ +d:vc-bitstring-status-list-20240610 +vc-bitstring-status-list-20240610 +10 June 2024 +CR +Bitstring Status List v1.0 +https://www.w3.org/TR/2024/CRD-vc-bitstring-status-list-20240610/ +https://www.w3.org/TR/2024/CRD-vc-bitstring-status-list-20240610/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock +Mahmoud Alkhraishi - -d:vc-data-model-2.0-20221218 -vc-data-model-2.0-20221218 -18 December 2022 -WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221218/ -https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221218/ +d:vc-data-integrity +vc-data-integrity +3 August 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/vc-data-integrity/ +https://w3c.github.io/vc-data-integrity/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane - -d:vc-data-model-2.0-20230119 -vc-data-model-2.0-20230119 -19 January 2023 +d:vc-data-integrity-20221110 +vc-data-integrity-20221110 +10 November 2022 WD -Verifiable Credentials Data Model v2.0 -https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230119/ -https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230119/ +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2022/WD-vc-data-integrity-20221110/ +https://www.w3.org/TR/2022/WD-vc-data-integrity-20221110/ Manu Sporny -Orie Steele -Michael Jones -Gabe Cohen -Oliver Terbu +Dave Longley +Michael Prorock - -d:vc-data-model-20170803 -vc-data-model-20170803 -3 August 2017 +d:vc-data-integrity-20230128 +vc-data-integrity-20230128 +28 January 2023 WD -Verifiable Claims Data Model and Representations -https://www.w3.org/TR/2017/WD-verifiable-claims-data-model-20170803/ -https://www.w3.org/TR/2017/WD-verifiable-claims-data-model-20170803/ +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230128/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230128/ -Daniel Burnett Manu Sporny Dave Longley -Gregg Kellogg +Michael Prorock - -d:vc-data-model-20190208 +d:vc-data-integrity-20230211 +vc-data-integrity-20230211 +11 February 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230211/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230211/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230225 +vc-data-integrity-20230225 +25 February 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230225/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230225/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230226 +vc-data-integrity-20230226 +26 February 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230226/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230226/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230304 +vc-data-integrity-20230304 +4 March 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230304/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230304/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230305 +vc-data-integrity-20230305 +5 March 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230305/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230305/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230317 +vc-data-integrity-20230317 +17 March 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230317/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230317/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230408 +vc-data-integrity-20230408 +8 April 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230408/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230408/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230420 +vc-data-integrity-20230420 +20 April 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230420/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230420/ + + + +Manu Sporny +Dave Longley +Michael Prorock +- +d:vc-data-integrity-20230428 +vc-data-integrity-20230428 +28 April 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230428/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230428/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230515 +vc-data-integrity-20230515 +15 May 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230515/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230515/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230528 +vc-data-integrity-20230528 +28 May 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230528/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230528/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230630 +vc-data-integrity-20230630 +30 June 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230630/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230630/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230704 +vc-data-integrity-20230704 +4 July 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230704/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230704/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230705 +vc-data-integrity-20230705 +5 July 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230705/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230705/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230709 +vc-data-integrity-20230709 +9 July 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230709/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230709/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230713 +vc-data-integrity-20230713 +13 July 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230713/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230713/ + + + +Manu Sporny +Dave Longley +- +d:vc-data-integrity-20230731 +vc-data-integrity-20230731 +31 July 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230731/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230731/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Sebastian Crane +- +d:vc-data-integrity-20230805 +vc-data-integrity-20230805 +5 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230805/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230805/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Sebastian Crane +- +d:vc-data-integrity-20230806 +vc-data-integrity-20230806 +6 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230806/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230806/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Sebastian Crane +- +d:vc-data-integrity-20230810 +vc-data-integrity-20230810 +10 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230810/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230810/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230812 +vc-data-integrity-20230812 +12 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230812/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230812/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230818 +vc-data-integrity-20230818 +18 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230818/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230818/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230819 +vc-data-integrity-20230819 +19 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230819/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230819/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230824 +vc-data-integrity-20230824 +24 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230824/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230824/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230826 +vc-data-integrity-20230826 +26 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230826/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230826/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230831 +vc-data-integrity-20230831 +31 August 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230831/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230831/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230902 +vc-data-integrity-20230902 +2 September 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230902/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230902/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230918 +vc-data-integrity-20230918 +18 September 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230918/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230918/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20230925 +vc-data-integrity-20230925 +25 September 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230925/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20230925/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20231012 +vc-data-integrity-20231012 +12 October 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231012/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231012/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20231013 +vc-data-integrity-20231013 +13 October 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231013/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231013/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20231017 +vc-data-integrity-20231017 +17 October 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231017/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231017/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20231021 +vc-data-integrity-20231021 +21 October 2023 +WD +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231021/ +https://www.w3.org/TR/2023/WD-vc-data-integrity-20231021/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20231121 +vc-data-integrity-20231121 +21 November 2023 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/CR-vc-data-integrity-20231121/ +https://www.w3.org/TR/2023/CR-vc-data-integrity-20231121/ + + + +Manu Sporny +Dave Longley +Dmitri Zagidulin +Sebastian Crane +Greg Bernstein +- +d:vc-data-integrity-20231210 +vc-data-integrity-20231210 +10 December 2023 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2023/CRD-vc-data-integrity-20231210/ +https://www.w3.org/TR/2023/CRD-vc-data-integrity-20231210/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240315 +vc-data-integrity-20240315 +15 March 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240315/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240315/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240428 +vc-data-integrity-20240428 +28 April 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240428/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240428/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240605 +vc-data-integrity-20240605 +5 June 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240605/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240605/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240614 +vc-data-integrity-20240614 +14 June 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240614/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240614/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240620 +vc-data-integrity-20240620 +20 June 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240620/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240620/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240709 +vc-data-integrity-20240709 +9 July 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240709/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240709/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240721 +vc-data-integrity-20240721 +21 July 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240721/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240721/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-integrity-20240803 +vc-data-integrity-20240803 +3 August 2024 +CR +Verifiable Credential Data Integrity 1.0 +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240803/ +https://www.w3.org/TR/2024/CRD-vc-data-integrity-20240803/ + + + +Manu Sporny +Dave Longley +Greg Bernstein +Dmitri Zagidulin +Sebastian Crane +- +d:vc-data-model +vc-data-model +3 March 2022 +REC +Verifiable Credentials Data Model v1.1 +https://www.w3.org/TR/vc-data-model/ +https://w3c.github.io/vc-data-model/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +Kyle Den Hartog +- +d:vc-data-model-2.0 +vc-data-model-2.0 +23 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/vc-data-model-2.0/ +https://w3c.github.io/vc-data-model/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20220811 +vc-data-model-2.0-20220811 +11 August 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220811/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220811/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +Kyle Den Hartog +Orie Steele +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20220824 +vc-data-model-2.0-20220824 +24 August 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220824/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220824/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +Kyle Den Hartog +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20220903 +vc-data-model-2.0-20220903 +3 September 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220903/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220903/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +Kyle Den Hartog +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20220910 +vc-data-model-2.0-20220910 +10 September 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220910/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220910/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20220916 +vc-data-model-2.0-20220916 +16 September 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220916/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220916/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221006 +vc-data-model-2.0-20221006 +6 October 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221006/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221006/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221023 +vc-data-model-2.0-20221023 +23 October 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221023/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221023/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221027 +vc-data-model-2.0-20221027 +27 October 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221027/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221027/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221028 +vc-data-model-2.0-20221028 +28 October 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221028/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221028/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221105 +vc-data-model-2.0-20221105 +5 November 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221105/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221105/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221121 +vc-data-model-2.0-20221121 +21 November 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221121/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221121/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221130 +vc-data-model-2.0-20221130 +30 November 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221130/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221130/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221211 +vc-data-model-2.0-20221211 +11 December 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221211/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221211/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20221218 +vc-data-model-2.0-20221218 +18 December 2022 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221218/ +https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221218/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230119 +vc-data-model-2.0-20230119 +19 January 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230119/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230119/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230128 +vc-data-model-2.0-20230128 +28 January 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230128/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230128/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230212 +vc-data-model-2.0-20230212 +12 February 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230212/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230212/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230222 +vc-data-model-2.0-20230222 +22 February 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230222/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230222/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230304 +vc-data-model-2.0-20230304 +4 March 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230304/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230304/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230306 +vc-data-model-2.0-20230306 +6 March 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230306/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230306/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230307 +vc-data-model-2.0-20230307 +7 March 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230307/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230307/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230315 +vc-data-model-2.0-20230315 +15 March 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230315/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230315/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230316 +vc-data-model-2.0-20230316 +16 March 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230316/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230316/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230323 +vc-data-model-2.0-20230323 +23 March 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230323/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230323/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230403 +vc-data-model-2.0-20230403 +3 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230403/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230403/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230410 +vc-data-model-2.0-20230410 +10 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230410/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230410/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230414 +vc-data-model-2.0-20230414 +14 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230414/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230414/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230419 +vc-data-model-2.0-20230419 +19 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230419/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230419/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230422 +vc-data-model-2.0-20230422 +22 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230422/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230422/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230424 +vc-data-model-2.0-20230424 +24 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230424/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230424/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230427 +vc-data-model-2.0-20230427 +27 April 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230427/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230427/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230504 +vc-data-model-2.0-20230504 +4 May 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230504/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230504/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230507 +vc-data-model-2.0-20230507 +7 May 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230507/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230507/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230509 +vc-data-model-2.0-20230509 +9 May 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230509/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230509/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230510 +vc-data-model-2.0-20230510 +10 May 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230510/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230510/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230513 +vc-data-model-2.0-20230513 +13 May 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230513/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230513/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230520 +vc-data-model-2.0-20230520 +20 May 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230520/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230520/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230611 +vc-data-model-2.0-20230611 +11 June 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230611/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230611/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230612 +vc-data-model-2.0-20230612 +12 June 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230612/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230612/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230617 +vc-data-model-2.0-20230617 +17 June 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230617/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230617/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230627 +vc-data-model-2.0-20230627 +27 June 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230627/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230627/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230630 +vc-data-model-2.0-20230630 +30 June 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230630/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230630/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230702 +vc-data-model-2.0-20230702 +2 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230702/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230702/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230704 +vc-data-model-2.0-20230704 +4 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230704/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230704/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230708 +vc-data-model-2.0-20230708 +8 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230708/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230708/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230709 +vc-data-model-2.0-20230709 +9 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230709/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230709/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230711 +vc-data-model-2.0-20230711 +11 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230711/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230711/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230712 +vc-data-model-2.0-20230712 +12 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230712/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230712/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230714 +vc-data-model-2.0-20230714 +14 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230714/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230714/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230718 +vc-data-model-2.0-20230718 +18 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230718/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230718/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230719 +vc-data-model-2.0-20230719 +19 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230719/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230719/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230723 +vc-data-model-2.0-20230723 +23 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230723/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230723/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230725 +vc-data-model-2.0-20230725 +25 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230725/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230725/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230727 +vc-data-model-2.0-20230727 +27 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230727/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230727/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230728 +vc-data-model-2.0-20230728 +28 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230728/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230728/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230730 +vc-data-model-2.0-20230730 +30 July 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230730/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230730/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230802 +vc-data-model-2.0-20230802 +2 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230802/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230802/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230803 +vc-data-model-2.0-20230803 +3 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230803/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230803/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230809 +vc-data-model-2.0-20230809 +9 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230809/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230809/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230811 +vc-data-model-2.0-20230811 +11 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230811/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230811/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230814 +vc-data-model-2.0-20230814 +14 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230814/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230814/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230815 +vc-data-model-2.0-20230815 +15 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230815/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230815/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230820 +vc-data-model-2.0-20230820 +20 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230820/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230820/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230822 +vc-data-model-2.0-20230822 +22 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230822/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230822/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230823 +vc-data-model-2.0-20230823 +23 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230823/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230823/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230824 +vc-data-model-2.0-20230824 +24 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230824/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230824/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230827 +vc-data-model-2.0-20230827 +27 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230827/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230827/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230829 +vc-data-model-2.0-20230829 +29 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230829/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230829/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230831 +vc-data-model-2.0-20230831 +31 August 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230831/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230831/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230909 +vc-data-model-2.0-20230909 +9 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230909/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230909/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230910 +vc-data-model-2.0-20230910 +10 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230910/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230910/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230911 +vc-data-model-2.0-20230911 +11 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230911/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230911/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230913 +vc-data-model-2.0-20230913 +13 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230913/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230913/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230914 +vc-data-model-2.0-20230914 +14 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230914/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230914/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230926 +vc-data-model-2.0-20230926 +26 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230926/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230926/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20230929 +vc-data-model-2.0-20230929 +29 September 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230929/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230929/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231012 +vc-data-model-2.0-20231012 +12 October 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231012/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231012/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231013 +vc-data-model-2.0-20231013 +13 October 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231013/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231013/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231016 +vc-data-model-2.0-20231016 +16 October 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231016/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231016/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231021 +vc-data-model-2.0-20231021 +21 October 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231021/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231021/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231031 +vc-data-model-2.0-20231031 +31 October 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231031/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231031/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231101 +vc-data-model-2.0-20231101 +1 November 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231101/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231101/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231104 +vc-data-model-2.0-20231104 +4 November 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231104/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231104/ + + + +Manu Sporny +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231202 +vc-data-model-2.0-20231202 +2 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231202/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231202/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231206 +vc-data-model-2.0-20231206 +6 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231206/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231206/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Orie Steele +Michael Jones +Gabe Cohen +Oliver Terbu +- +d:vc-data-model-2.0-20231215 +vc-data-model-2.0-20231215 +15 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231215/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231215/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20231216 +vc-data-model-2.0-20231216 +16 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231216/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231216/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20231217 +vc-data-model-2.0-20231217 +17 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231217/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231217/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20231226 +vc-data-model-2.0-20231226 +26 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231226/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231226/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20231227 +vc-data-model-2.0-20231227 +27 December 2023 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231227/ +https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231227/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240106 +vc-data-model-2.0-20240106 +6 January 2024 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240106/ +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240106/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240110 +vc-data-model-2.0-20240110 +10 January 2024 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240110/ +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240110/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240112 +vc-data-model-2.0-20240112 +12 January 2024 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240112/ +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240112/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240113 +vc-data-model-2.0-20240113 +13 January 2024 +WD +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240113/ +https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240113/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240205 +vc-data-model-2.0-20240205 +5 February 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240205/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240205/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240207 +vc-data-model-2.0-20240207 +7 February 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240207/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240207/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240313 +vc-data-model-2.0-20240313 +13 March 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240313/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240313/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240323 +vc-data-model-2.0-20240323 +23 March 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240323/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240323/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240402 +vc-data-model-2.0-20240402 +2 April 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240402/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240402/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240416 +vc-data-model-2.0-20240416 +16 April 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240416/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240416/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240505 +vc-data-model-2.0-20240505 +5 May 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240505/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240505/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240507 +vc-data-model-2.0-20240507 +7 May 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240507/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240507/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240513 +vc-data-model-2.0-20240513 +13 May 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240513/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240513/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240601 +vc-data-model-2.0-20240601 +1 June 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240601/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240601/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240618 +vc-data-model-2.0-20240618 +18 June 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240618/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240618/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240626 +vc-data-model-2.0-20240626 +26 June 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240626/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240626/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240703 +vc-data-model-2.0-20240703 +3 July 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240703/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240703/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240706 +vc-data-model-2.0-20240706 +6 July 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240706/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240706/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240709 +vc-data-model-2.0-20240709 +9 July 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240709/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240709/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240717 +vc-data-model-2.0-20240717 +17 July 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240717/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240717/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240720 +vc-data-model-2.0-20240720 +20 July 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240720/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240720/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240721 +vc-data-model-2.0-20240721 +21 July 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240721/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240721/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240808 +vc-data-model-2.0-20240808 +8 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240808/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240808/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240809 +vc-data-model-2.0-20240809 +9 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240809/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240809/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240818 +vc-data-model-2.0-20240818 +18 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240818/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240818/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240819 +vc-data-model-2.0-20240819 +19 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240819/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240819/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240821 +vc-data-model-2.0-20240821 +21 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240821/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240821/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240822 +vc-data-model-2.0-20240822 +22 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240822/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240822/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-2.0-20240823 +vc-data-model-2.0-20240823 +23 August 2024 +CR +Verifiable Credentials Data Model v2.0 +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240823/ +https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240823/ + + + +Manu Sporny +Ted Thibodeau Jr +Ivan Herman +Michael Jones +Gabe Cohen +- +d:vc-data-model-20170803 +vc-data-model-20170803 +3 August 2017 +WD +Verifiable Claims Data Model and Representations +https://www.w3.org/TR/2017/WD-verifiable-claims-data-model-20170803/ +https://www.w3.org/TR/2017/WD-verifiable-claims-data-model-20170803/ + + + +Daniel Burnett +Manu Sporny +Dave Longley +Gregg Kellogg +- +d:vc-data-model-20190208 vc-data-model-20190208 8 February 2019 WD -Verifiable Credentials Data Model 1.0 -https://www.w3.org/TR/2019/WD-verifiable-claims-data-model-20190208/ -https://www.w3.org/TR/2019/WD-verifiable-claims-data-model-20190208/ +Verifiable Credentials Data Model 1.0 +https://www.w3.org/TR/2019/WD-verifiable-claims-data-model-20190208/ +https://www.w3.org/TR/2019/WD-verifiable-claims-data-model-20190208/ + + + +Manu Sporny +Daniel Burnett +Dave Longley +Gregg Kellogg +- +d:vc-data-model-20190328 +vc-data-model-20190328 +28 March 2019 +CR +Verifiable Credentials Data Model 1.0 +https://www.w3.org/TR/2019/CR-verifiable-claims-data-model-20190328/ +https://www.w3.org/TR/2019/CR-verifiable-claims-data-model-20190328/ + + + +Manu Sporny +Grant Noble +Daniel Burnett +Dave Longley +- +d:vc-data-model-20190725 +vc-data-model-20190725 +25 July 2019 +CR +Verifiable Credentials Data Model 1.0 +https://www.w3.org/TR/2019/CR-vc-data-model-20190725/ +https://www.w3.org/TR/2019/CR-vc-data-model-20190725/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +- +d:vc-data-model-20190905 +vc-data-model-20190905 +5 September 2019 +PR +Verifiable Credentials Data Model 1.0 +https://www.w3.org/TR/2019/PR-vc-data-model-20190905/ +https://www.w3.org/TR/2019/PR-vc-data-model-20190905/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +- +d:vc-data-model-20191119 +vc-data-model-20191119 +19 November 2019 +REC +Verifiable Credentials Data Model 1.0 +https://www.w3.org/TR/2019/REC-vc-data-model-20191119/ +https://www.w3.org/TR/2019/REC-vc-data-model-20191119/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +- +d:vc-data-model-20211109 +vc-data-model-20211109 +9 November 2021 +REC +Verifiable Credentials Data Model v1.1 +https://www.w3.org/TR/2021/REC-vc-data-model-20211109/ +https://www.w3.org/TR/2021/REC-vc-data-model-20211109/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +Kyle Den Hartog +- +d:vc-data-model-20220303 +vc-data-model-20220303 +3 March 2022 +REC +Verifiable Credentials Data Model v1.1 +https://www.w3.org/TR/2022/REC-vc-data-model-20220303/ +https://www.w3.org/TR/2022/REC-vc-data-model-20220303/ + + + +Manu Sporny +Grant Noble +Dave Longley +Daniel Burnett +Brent Zundel +Kyle Den Hartog +- +d:vc-di-bbs +vc-di-bbs +19 August 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/vc-di-bbs/ +https://w3c.github.io/vc-di-bbs/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20230518 +vc-di-bbs-20230518 +18 May 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20230518/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20230518/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20230524 +vc-di-bbs-20230524 +24 May 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20230524/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20230524/ + + + +Orie Steele +- +d:vc-di-bbs-20231016 +vc-di-bbs-20231016 +16 October 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231016/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231016/ + + + +Orie Steele +- +d:vc-di-bbs-20231025 +vc-di-bbs-20231025 +25 October 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231025/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231025/ + + + +Orie Steele +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20231104 +vc-di-bbs-20231104 +4 November 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231104/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231104/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20231214 +vc-di-bbs-20231214 +14 December 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231214/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231214/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20231218 +vc-di-bbs-20231218 +18 December 2023 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231218/ +https://www.w3.org/TR/2023/WD-vc-di-bbs-20231218/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240202 +vc-di-bbs-20240202 +2 February 2024 +WD +BBS Cryptosuite v2023 +https://www.w3.org/TR/2024/WD-vc-di-bbs-20240202/ +https://www.w3.org/TR/2024/WD-vc-di-bbs-20240202/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240318 +vc-di-bbs-20240318 +18 March 2024 +WD +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/WD-vc-di-bbs-20240318/ +https://www.w3.org/TR/2024/WD-vc-di-bbs-20240318/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240401 +vc-di-bbs-20240401 +1 April 2024 +WD +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/WD-vc-di-bbs-20240401/ +https://www.w3.org/TR/2024/WD-vc-di-bbs-20240401/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240404 +vc-di-bbs-20240404 +4 April 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/CR-vc-di-bbs-20240404/ +https://www.w3.org/TR/2024/CR-vc-di-bbs-20240404/ + + + +Manu Sporny +Greg Bernstein +- +d:vc-di-bbs-20240428 +vc-di-bbs-20240428 +28 April 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240428/ +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240428/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240617 +vc-di-bbs-20240617 +17 June 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240617/ +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240617/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240626 +vc-di-bbs-20240626 +26 June 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240626/ +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240626/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240630 +vc-di-bbs-20240630 +30 June 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240630/ +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240630/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-bbs-20240819 +vc-di-bbs-20240819 +19 August 2024 +CR +Data Integrity BBS Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240819/ +https://www.w3.org/TR/2024/CRD-vc-di-bbs-20240819/ + + + +Greg Bernstein +Manu Sporny +- +d:vc-di-ecdsa +vc-di-ecdsa +18 August 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/vc-di-ecdsa/ +https://w3c.github.io/vc-di-ecdsa/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230418 +vc-di-ecdsa-20230418 +18 April 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230418/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230418/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230420 +vc-di-ecdsa-20230420 +20 April 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230420/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230420/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230518 +vc-di-ecdsa-20230518 +18 May 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230518/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230518/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230603 +vc-di-ecdsa-20230603 +3 June 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230603/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230603/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230616 +vc-di-ecdsa-20230616 +16 June 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230616/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230616/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230626 +vc-di-ecdsa-20230626 +26 June 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230626/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230626/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230706 +vc-di-ecdsa-20230706 +6 July 2023 +WD +ECDSA Cryptosuite v2019 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230706/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230706/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230709 +vc-di-ecdsa-20230709 +9 July 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230709/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230709/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230713 +vc-di-ecdsa-20230713 +13 July 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230713/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230713/ + + + +Manu Sporny +Martin Reed +- +d:vc-di-ecdsa-20230723 +vc-di-ecdsa-20230723 +23 July 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230723/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230723/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230806 +vc-di-ecdsa-20230806 +6 August 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230806/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230806/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230810 +vc-di-ecdsa-20230810 +10 August 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230810/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230810/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230817 +vc-di-ecdsa-20230817 +17 August 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230817/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230817/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230819 +vc-di-ecdsa-20230819 +19 August 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230819/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230819/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230822 +vc-di-ecdsa-20230822 +22 August 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230822/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230822/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230826 +vc-di-ecdsa-20230826 +26 August 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230826/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230826/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230902 +vc-di-ecdsa-20230902 +2 September 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230902/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230902/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20230928 +vc-di-ecdsa-20230928 +28 September 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230928/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230928/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231002 +vc-di-ecdsa-20231002 +2 October 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231002/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231002/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231006 +vc-di-ecdsa-20231006 +6 October 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231006/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231006/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231012 +vc-di-ecdsa-20231012 +12 October 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231012/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231012/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231013 +vc-di-ecdsa-20231013 +13 October 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231013/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231013/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231017 +vc-di-ecdsa-20231017 +17 October 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231017/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231017/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231021 +vc-di-ecdsa-20231021 +21 October 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231021/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231021/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231101 +vc-di-ecdsa-20231101 +1 November 2023 +WD +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231101/ +https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231101/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231121 +vc-di-ecdsa-20231121 +21 November 2023 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/CR-vc-di-ecdsa-20231121/ +https://www.w3.org/TR/2023/CR-vc-di-ecdsa-20231121/ + + + +Manu Sporny +Martin Reed +Sebastian Crane +Greg Bernstein +- +d:vc-di-ecdsa-20231210 +vc-di-ecdsa-20231210 +10 December 2023 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/CRD-vc-di-ecdsa-20231210/ +https://www.w3.org/TR/2023/CRD-vc-di-ecdsa-20231210/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20231227 +vc-di-ecdsa-20231227 +27 December 2023 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/CRD-vc-di-ecdsa-20231227/ +https://www.w3.org/TR/2023/CRD-vc-di-ecdsa-20231227/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240206 +vc-di-ecdsa-20240206 +6 February 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240206/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240206/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240305 +vc-di-ecdsa-20240305 +5 March 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240305/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240305/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240331 +vc-di-ecdsa-20240331 +31 March 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240331/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240331/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240428 +vc-di-ecdsa-20240428 +28 April 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240428/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240428/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240609 +vc-di-ecdsa-20240609 +9 June 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240609/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240609/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240621 +vc-di-ecdsa-20240621 +21 June 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240621/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240621/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240630 +vc-di-ecdsa-20240630 +30 June 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240630/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240630/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240710 +vc-di-ecdsa-20240710 +10 July 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240710/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240710/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240805 +vc-di-ecdsa-20240805 +5 August 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240805/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240805/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-ecdsa-20240818 +vc-di-ecdsa-20240818 +18 August 2024 +CR +Data Integrity ECDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240818/ +https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240818/ + + + +Manu Sporny +Martin Reed +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa +vc-di-eddsa +16 August 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/vc-di-eddsa/ +https://w3c.github.io/vc-di-eddsa/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20230418 +vc-di-eddsa-20230418 +18 April 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230418/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230418/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230420 +vc-di-eddsa-20230420 +20 April 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230420/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230420/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230421 +vc-di-eddsa-20230421 +21 April 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230421/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230421/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230503 +vc-di-eddsa-20230503 +3 May 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230503/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230503/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230515 +vc-di-eddsa-20230515 +15 May 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230515/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230515/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230518 +vc-di-eddsa-20230518 +18 May 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230518/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230518/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230603 +vc-di-eddsa-20230603 +3 June 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230603/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230603/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230706 +vc-di-eddsa-20230706 +6 July 2023 +WD +EdDSA Cryptosuite v2022 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230706/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230706/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230709 +vc-di-eddsa-20230709 +9 July 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230709/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230709/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230713 +vc-di-eddsa-20230713 +13 July 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230713/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230713/ + + + +Manu Sporny +Dmitri Zagidulin +- +d:vc-di-eddsa-20230714 +vc-di-eddsa-20230714 +14 July 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230714/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230714/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20230810 +vc-di-eddsa-20230810 +10 August 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230810/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230810/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20230817 +vc-di-eddsa-20230817 +17 August 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230817/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230817/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20230826 +vc-di-eddsa-20230826 +26 August 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230826/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230826/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20230902 +vc-di-eddsa-20230902 +2 September 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230902/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230902/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231012 +vc-di-eddsa-20231012 +12 October 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231012/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231012/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231013 +vc-di-eddsa-20231013 +13 October 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231013/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231013/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231017 +vc-di-eddsa-20231017 +17 October 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231017/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231017/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231021 +vc-di-eddsa-20231021 +21 October 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231021/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231021/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231101 +vc-di-eddsa-20231101 +1 November 2023 +WD +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231101/ +https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231101/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231121 +vc-di-eddsa-20231121 +21 November 2023 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/CR-vc-di-eddsa-20231121/ +https://www.w3.org/TR/2023/CR-vc-di-eddsa-20231121/ + + + +Manu Sporny +Dmitri Zagidulin +Sebastian Crane +Greg Bernstein +- +d:vc-di-eddsa-20231210 +vc-di-eddsa-20231210 +10 December 2023 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/CRD-vc-di-eddsa-20231210/ +https://www.w3.org/TR/2023/CRD-vc-di-eddsa-20231210/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20231227 +vc-di-eddsa-20231227 +27 December 2023 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2023/CRD-vc-di-eddsa-20231227/ +https://www.w3.org/TR/2023/CRD-vc-di-eddsa-20231227/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20240303 +vc-di-eddsa-20240303 +3 March 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240303/ +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240303/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20240609 +vc-di-eddsa-20240609 +9 June 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240609/ +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240609/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20240621 +vc-di-eddsa-20240621 +21 June 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240621/ +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240621/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20240630 +vc-di-eddsa-20240630 +30 June 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240630/ +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240630/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20240805 +vc-di-eddsa-20240805 +5 August 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240805/ +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240805/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-di-eddsa-20240816 +vc-di-eddsa-20240816 +16 August 2024 +CR +Data Integrity EdDSA Cryptosuites v1.0 +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240816/ +https://www.w3.org/TR/2024/CRD-vc-di-eddsa-20240816/ + + + +Manu Sporny +Dmitri Zagidulin +Greg Bernstein +Sebastian Crane +- +d:vc-imp-guide +vc-imp-guide +24 September 2019 +NOTE +Verifiable Credentials Implementation Guidelines 1.0 +https://www.w3.org/TR/vc-imp-guide/ +https://w3c.github.io/vc-imp-guide/ + + + +Andrei Sambra +- +d:vc-imp-guide-20190924 +vc-imp-guide-20190924 +24 September 2019 +NOTE +Verifiable Credentials Implementation Guidelines 1.0 +https://www.w3.org/TR/2019/NOTE-vc-imp-guide-20190924/ +https://www.w3.org/TR/2019/NOTE-vc-imp-guide-20190924/ + + + +Andrei Sambra +- +d:vc-jose-cose +vc-jose-cose +13 August 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/vc-jose-cose/ +https://w3c.github.io/vc-jose-cose/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20230427 +vc-jose-cose-20230427 +27 April 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230427/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230427/ + + + +Michael Jones +Orie Steele +Michael Prorock +- +d:vc-jose-cose-20230501 +vc-jose-cose-20230501 +1 May 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230501/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230501/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230515 +vc-jose-cose-20230515 +15 May 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230515/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230515/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230525 +vc-jose-cose-20230525 +25 May 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230525/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230525/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230601 +vc-jose-cose-20230601 +1 June 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230601/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230601/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230607 +vc-jose-cose-20230607 +7 June 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230607/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230607/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230614 +vc-jose-cose-20230614 +14 June 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230614/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230614/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230615 +vc-jose-cose-20230615 +15 June 2023 +WD +Securing Verifiable Credentials using JSON Web Tokens +https://www.w3.org/TR/2023/WD-vc-jwt-20230615/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230615/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230629 +vc-jose-cose-20230629 +29 June 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jwt-20230629/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230629/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230630 +vc-jose-cose-20230630 +30 June 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jwt-20230630/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230630/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230710 +vc-jose-cose-20230710 +10 July 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jwt-20230710/ +https://www.w3.org/TR/2023/WD-vc-jwt-20230710/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230720 +vc-jose-cose-20230720 +20 July 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230720/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230720/ + + + +Michael Jones +Orie Steele +Michael Prorock +- +d:vc-jose-cose-20230721 +vc-jose-cose-20230721 +21 July 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230721/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230721/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230811 +vc-jose-cose-20230811 +11 August 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230811/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230811/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230815 +vc-jose-cose-20230815 +15 August 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230815/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230815/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230816 +vc-jose-cose-20230816 +16 August 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230816/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230816/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230823 +vc-jose-cose-20230823 +23 August 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230823/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230823/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230824 +vc-jose-cose-20230824 +24 August 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230824/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230824/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230908 +vc-jose-cose-20230908 +8 September 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230908/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230908/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230912 +vc-jose-cose-20230912 +12 September 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230912/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230912/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230913 +vc-jose-cose-20230913 +13 September 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230913/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230913/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230914 +vc-jose-cose-20230914 +14 September 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230914/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230914/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230921 +vc-jose-cose-20230921 +21 September 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230921/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230921/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20230927 +vc-jose-cose-20230927 +27 September 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230927/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20230927/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20231006 +vc-jose-cose-20231006 +6 October 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231006/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231006/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20231010 +vc-jose-cose-20231010 +10 October 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231010/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231010/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20231014 +vc-jose-cose-20231014 +14 October 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231014/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231014/ + + + +Orie Steele +Michael Jones +Michael Prorock +- +d:vc-jose-cose-20231016 +vc-jose-cose-20231016 +16 October 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231016/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231016/ + + + +Orie Steele +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20231024 +vc-jose-cose-20231024 +24 October 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231024/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231024/ + + + +Orie Steele +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20231027 +vc-jose-cose-20231027 +27 October 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231027/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231027/ + + + +Orie Steele +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20231117 +vc-jose-cose-20231117 +17 November 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231117/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231117/ + + + +Orie Steele +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20231204 +vc-jose-cose-20231204 +4 December 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231204/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231204/ + + + +Orie Steele +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20231215 +vc-jose-cose-20231215 +15 December 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231215/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231215/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20231221 +vc-jose-cose-20231221 +21 December 2023 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231221/ +https://www.w3.org/TR/2023/WD-vc-jose-cose-20231221/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240101 +vc-jose-cose-20240101 +1 January 2024 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240101/ +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240101/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240126 +vc-jose-cose-20240126 +26 January 2024 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240126/ +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240126/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240207 +vc-jose-cose-20240207 +7 February 2024 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240207/ +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240207/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240308 +vc-jose-cose-20240308 +8 March 2024 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240308/ +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240308/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240329 +vc-jose-cose-20240329 +29 March 2024 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240329/ +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240329/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240403 +vc-jose-cose-20240403 +3 April 2024 +WD +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240403/ +https://www.w3.org/TR/2024/WD-vc-jose-cose-20240403/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240425 +vc-jose-cose-20240425 +25 April 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240425/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240425/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240521 +vc-jose-cose-20240521 +21 May 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240521/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240521/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240620 +vc-jose-cose-20240620 +20 June 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240620/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240620/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240626 +vc-jose-cose-20240626 +26 June 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240626/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240626/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240628 +vc-jose-cose-20240628 +28 June 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240628/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240628/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240705 +vc-jose-cose-20240705 +5 July 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240705/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240705/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240808 +vc-jose-cose-20240808 +8 August 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240808/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240808/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240812 +vc-jose-cose-20240812 +12 August 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240812/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240812/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-jose-cose-20240813 +vc-jose-cose-20240813 +13 August 2024 +CR +Securing Verifiable Credentials using JOSE and COSE +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240813/ +https://www.w3.org/TR/2024/CRD-vc-jose-cose-20240813/ + + + +Michael Jones +Michael Prorock +Gabe Cohen +- +d:vc-json-schema +vc-json-schema +18 December 2023 +CR +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/vc-json-schema/ +https://w3c.github.io/vc-json-schema/ + + + +Gabe Cohen +Michael Prorock +Andres Uribe +- +d:vc-json-schema-20230523 +vc-json-schema-20230523 +23 May 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230523/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230523/ + + + +Orie Steele +Gabe Cohen +Andres Uribe +- +d:vc-json-schema-20230524 +vc-json-schema-20230524 +24 May 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230524/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230524/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230530 +vc-json-schema-20230530 +30 May 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230530/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230530/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230612 +vc-json-schema-20230612 +12 June 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230612/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230612/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230613 +vc-json-schema-20230613 +13 June 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230613/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230613/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230706 +vc-json-schema-20230706 +6 July 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230706/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230706/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230712 +vc-json-schema-20230712 +12 July 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230712/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230712/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230717 +vc-json-schema-20230717 +17 July 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230717/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230717/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230725 +vc-json-schema-20230725 +25 July 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230725/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230725/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230726 +vc-json-schema-20230726 +26 July 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230726/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230726/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230731 +vc-json-schema-20230731 +31 July 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230731/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230731/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230801 +vc-json-schema-20230801 +1 August 2023 +WD +Verifiable Credentials JSON Schema Specification 2023 +https://www.w3.org/TR/2023/WD-vc-json-schema-20230801/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230801/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230802 +vc-json-schema-20230802 +2 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230802/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230802/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230803 +vc-json-schema-20230803 +3 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230803/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230803/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230807 +vc-json-schema-20230807 +7 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230807/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230807/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230809 +vc-json-schema-20230809 +9 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230809/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230809/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230814 +vc-json-schema-20230814 +14 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230814/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230814/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230815 +vc-json-schema-20230815 +15 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230815/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230815/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230817 +vc-json-schema-20230817 +17 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230817/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230817/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230821 +vc-json-schema-20230821 +21 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230821/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230821/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230828 +vc-json-schema-20230828 +28 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230828/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230828/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230829 +vc-json-schema-20230829 +29 August 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230829/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230829/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230903 +vc-json-schema-20230903 +3 September 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230903/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230903/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230907 +vc-json-schema-20230907 +7 September 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230907/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230907/ + + + +Gabe Cohen +Orie Steele +Andres Uribe +- +d:vc-json-schema-20230912 +vc-json-schema-20230912 +12 September 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230912/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230912/ -Manu Sporny -Daniel Burnett -Dave Longley -Gregg Kellogg +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-data-model-20190328 -vc-data-model-20190328 -28 March 2019 -CR -Verifiable Credentials Data Model 1.0 -https://www.w3.org/TR/2019/CR-verifiable-claims-data-model-20190328/ -https://www.w3.org/TR/2019/CR-verifiable-claims-data-model-20190328/ +d:vc-json-schema-20230915 +vc-json-schema-20230915 +15 September 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230915/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230915/ -Manu Sporny -Grant Noble -Daniel Burnett -Dave Longley +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-data-model-20190725 -vc-data-model-20190725 -25 July 2019 -CR -Verifiable Credentials Data Model 1.0 -https://www.w3.org/TR/2019/CR-vc-data-model-20190725/ -https://www.w3.org/TR/2019/CR-vc-data-model-20190725/ +d:vc-json-schema-20230926 +vc-json-schema-20230926 +26 September 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20230926/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20230926/ -Manu Sporny -Grant Noble -Dave Longley -Daniel Burnett -Brent Zundel +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-data-model-20190905 -vc-data-model-20190905 -5 September 2019 -PR -Verifiable Credentials Data Model 1.0 -https://www.w3.org/TR/2019/PR-vc-data-model-20190905/ -https://www.w3.org/TR/2019/PR-vc-data-model-20190905/ +d:vc-json-schema-20231002 +vc-json-schema-20231002 +2 October 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20231002/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20231002/ -Manu Sporny -Grant Noble -Dave Longley -Daniel Burnett -Brent Zundel +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-data-model-20191119 -vc-data-model-20191119 -19 November 2019 -REC -Verifiable Credentials Data Model 1.0 -https://www.w3.org/TR/2019/REC-vc-data-model-20191119/ -https://www.w3.org/TR/2019/REC-vc-data-model-20191119/ +d:vc-json-schema-20231014 +vc-json-schema-20231014 +14 October 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20231014/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20231014/ -Manu Sporny -Grant Noble -Dave Longley -Daniel Burnett -Brent Zundel +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-data-model-20211109 -vc-data-model-20211109 -9 November 2021 -REC -Verifiable Credentials Data Model v1.1 -https://www.w3.org/TR/2021/REC-vc-data-model-20211109/ -https://www.w3.org/TR/2021/REC-vc-data-model-20211109/ +d:vc-json-schema-20231022 +vc-json-schema-20231022 +22 October 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20231022/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20231022/ -Manu Sporny -Grant Noble -Dave Longley -Daniel Burnett -Brent Zundel -Kyle Den Hartog +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-data-model-20220303 -vc-data-model-20220303 -3 March 2022 -REC -Verifiable Credentials Data Model v1.1 -https://www.w3.org/TR/2022/REC-vc-data-model-20220303/ -https://www.w3.org/TR/2022/REC-vc-data-model-20220303/ +d:vc-json-schema-20231031 +vc-json-schema-20231031 +31 October 2023 +WD +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/WD-vc-json-schema-20231031/ +https://www.w3.org/TR/2023/WD-vc-json-schema-20231031/ -Manu Sporny -Grant Noble -Dave Longley -Daniel Burnett -Brent Zundel -Kyle Den Hartog +Gabe Cohen +Orie Steele +Andres Uribe - -d:vc-imp-guide -vc-imp-guide -24 September 2019 -NOTE -Verifiable Credentials Implementation Guidelines 1.0 -https://www.w3.org/TR/vc-imp-guide/ -https://w3c.github.io/vc-imp-guide/ +d:vc-json-schema-20231121 +vc-json-schema-20231121 +21 November 2023 +CR +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/CR-vc-json-schema-20231121/ +https://www.w3.org/TR/2023/CR-vc-json-schema-20231121/ -Andrei Sambra +Orie Steele +Gabe Cohen +Andres Uribe - -d:vc-imp-guide-20190924 -vc-imp-guide-20190924 -24 September 2019 -NOTE -Verifiable Credentials Implementation Guidelines 1.0 -https://www.w3.org/TR/2019/NOTE-vc-imp-guide-20190924/ -https://www.w3.org/TR/2019/NOTE-vc-imp-guide-20190924/ +d:vc-json-schema-20231218 +vc-json-schema-20231218 +18 December 2023 +CR +Verifiable Credentials JSON Schema Specification +https://www.w3.org/TR/2023/CRD-vc-json-schema-20231218/ +https://www.w3.org/TR/2023/CRD-vc-json-schema-20231218/ -Andrei Sambra +Gabe Cohen +Michael Prorock +Andres Uribe - d:vc-jws-2020 vc-jws-2020 -11 January 2023 +2 July 2024 WD -JSON Web Signature 2020 +JSON Web Signatures for Data Integrity Proofs https://www.w3.org/TR/vc-jws-2020/ https://w3c.github.io/vc-jws-2020/ -Orie Steele Michael Jones +Orie Steele - d:vc-jws-2020-20221208 vc-jws-2020-20221208 @@ -503,6 +5487,397 @@ https://www.w3.org/TR/2023/WD-vc-jws-2020-20230111/ Orie Steele Michael Jones - +d:vc-jws-2020-20230127 +vc-jws-2020-20230127 +27 January 2023 +WD +JSON Web Signatures for Data Integrity Proofs +https://www.w3.org/TR/2023/WD-vc-jws-2020-20230127/ +https://www.w3.org/TR/2023/WD-vc-jws-2020-20230127/ + + + +Orie Steele +Michael Jones +- +d:vc-jws-2020-20230629 +vc-jws-2020-20230629 +29 June 2023 +WD +JSON Web Signatures for Data Integrity Proofs +https://www.w3.org/TR/2023/WD-vc-jws-2020-20230629/ +https://www.w3.org/TR/2023/WD-vc-jws-2020-20230629/ + + + +Orie Steele +Michael Jones +- +d:vc-jws-2020-20240702 +vc-jws-2020-20240702 +2 July 2024 +WD +JSON Web Signatures for Data Integrity Proofs +https://www.w3.org/TR/2024/DISC-vc-jws-2020-20240702/ +https://www.w3.org/TR/2024/DISC-vc-jws-2020-20240702/ + + + +Michael Jones +Orie Steele +- +a:vc-jwt +vc-jwt +vc-jose-cose +- +a:vc-jwt-20230427 +vc-jwt-20230427 +vc-jose-cose-20230427 +- +a:vc-jwt-20230501 +vc-jwt-20230501 +vc-jose-cose-20230501 +- +a:vc-jwt-20230515 +vc-jwt-20230515 +vc-jose-cose-20230515 +- +a:vc-jwt-20230525 +vc-jwt-20230525 +vc-jose-cose-20230525 +- +a:vc-jwt-20230601 +vc-jwt-20230601 +vc-jose-cose-20230601 +- +a:vc-jwt-20230607 +vc-jwt-20230607 +vc-jose-cose-20230607 +- +a:vc-jwt-20230614 +vc-jwt-20230614 +vc-jose-cose-20230614 +- +a:vc-jwt-20230615 +vc-jwt-20230615 +vc-jose-cose-20230615 +- +a:vc-jwt-20230629 +vc-jwt-20230629 +vc-jose-cose-20230629 +- +a:vc-jwt-20230630 +vc-jwt-20230630 +vc-jose-cose-20230630 +- +a:vc-jwt-20230710 +vc-jwt-20230710 +vc-jose-cose-20230710 +- +a:vc-jwt-20230720 +vc-jwt-20230720 +vc-jose-cose-20230720 +- +a:vc-jwt-20230721 +vc-jwt-20230721 +vc-jose-cose-20230721 +- +a:vc-jwt-20230811 +vc-jwt-20230811 +vc-jose-cose-20230811 +- +a:vc-jwt-20230815 +vc-jwt-20230815 +vc-jose-cose-20230815 +- +a:vc-jwt-20230816 +vc-jwt-20230816 +vc-jose-cose-20230816 +- +a:vc-jwt-20230823 +vc-jwt-20230823 +vc-jose-cose-20230823 +- +a:vc-jwt-20230824 +vc-jwt-20230824 +vc-jose-cose-20230824 +- +a:vc-jwt-20230908 +vc-jwt-20230908 +vc-jose-cose-20230908 +- +a:vc-jwt-20230912 +vc-jwt-20230912 +vc-jose-cose-20230912 +- +a:vc-jwt-20230913 +vc-jwt-20230913 +vc-jose-cose-20230913 +- +a:vc-jwt-20230914 +vc-jwt-20230914 +vc-jose-cose-20230914 +- +a:vc-jwt-20230921 +vc-jwt-20230921 +vc-jose-cose-20230921 +- +a:vc-jwt-20230927 +vc-jwt-20230927 +vc-jose-cose-20230927 +- +a:vc-jwt-20231006 +vc-jwt-20231006 +vc-jose-cose-20231006 +- +a:vc-jwt-20231010 +vc-jwt-20231010 +vc-jose-cose-20231010 +- +a:vc-jwt-20231014 +vc-jwt-20231014 +vc-jose-cose-20231014 +- +a:vc-jwt-20231016 +vc-jwt-20231016 +vc-jose-cose-20231016 +- +a:vc-jwt-20231024 +vc-jwt-20231024 +vc-jose-cose-20231024 +- +a:vc-jwt-20231027 +vc-jwt-20231027 +vc-jose-cose-20231027 +- +a:vc-jwt-20231117 +vc-jwt-20231117 +vc-jose-cose-20231117 +- +a:vc-jwt-20231204 +vc-jwt-20231204 +vc-jose-cose-20231204 +- +a:vc-jwt-20231215 +vc-jwt-20231215 +vc-jose-cose-20231215 +- +a:vc-jwt-20231221 +vc-jwt-20231221 +vc-jose-cose-20231221 +- +a:vc-jwt-20240101 +vc-jwt-20240101 +vc-jose-cose-20240101 +- +a:vc-jwt-20240126 +vc-jwt-20240126 +vc-jose-cose-20240126 +- +a:vc-jwt-20240207 +vc-jwt-20240207 +vc-jose-cose-20240207 +- +a:vc-jwt-20240308 +vc-jwt-20240308 +vc-jose-cose-20240308 +- +a:vc-jwt-20240329 +vc-jwt-20240329 +vc-jose-cose-20240329 +- +a:vc-jwt-20240403 +vc-jwt-20240403 +vc-jose-cose-20240403 +- +a:vc-jwt-20240425 +vc-jwt-20240425 +vc-jose-cose-20240425 +- +a:vc-jwt-20240521 +vc-jwt-20240521 +vc-jose-cose-20240521 +- +a:vc-jwt-20240620 +vc-jwt-20240620 +vc-jose-cose-20240620 +- +a:vc-jwt-20240626 +vc-jwt-20240626 +vc-jose-cose-20240626 +- +a:vc-jwt-20240628 +vc-jwt-20240628 +vc-jose-cose-20240628 +- +a:vc-jwt-20240705 +vc-jwt-20240705 +vc-jose-cose-20240705 +- +a:vc-jwt-20240808 +vc-jwt-20240808 +vc-jose-cose-20240808 +- +a:vc-jwt-20240812 +vc-jwt-20240812 +vc-jose-cose-20240812 +- +a:vc-jwt-20240813 +vc-jwt-20240813 +vc-jose-cose-20240813 +- +d:vc-overview +vc-overview +6 July 2024 +NOTE +Verifiable Credentials Overview +https://www.w3.org/TR/vc-overview/ +https://w3c.github.io/vc-overview/ + + + +Ivan Herman +- +d:vc-overview-20240613 +vc-overview-20240613 +13 June 2024 +NOTE +Verifiable Credentials Overview +https://www.w3.org/TR/2024/NOTE-vc-overview-20240613/ +https://www.w3.org/TR/2024/NOTE-vc-overview-20240613/ + + + +Ivan Herman +- +d:vc-overview-20240706 +vc-overview-20240706 +6 July 2024 +NOTE +Verifiable Credentials Overview +https://www.w3.org/TR/2024/NOTE-vc-overview-20240706/ +https://www.w3.org/TR/2024/NOTE-vc-overview-20240706/ + + + +Ivan Herman +- +d:vc-specs-dir +vc-specs-dir +1 June 2024 +NOTE +VC Specifications Directory +https://www.w3.org/TR/vc-specs-dir/ +https://w3c.github.io/vc-specs-dir/ + + + +Manu Sporny +- +d:vc-specs-dir-20240201 +vc-specs-dir-20240201 +1 February 2024 +NOTE +VC Specifications Directory +https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240201/ +https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240201/ + + + +Manu Sporny +- +d:vc-specs-dir-20240527 +vc-specs-dir-20240527 +27 May 2024 +NOTE +VC Specifications Directory +https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240527/ +https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240527/ + + + +Manu Sporny +- +d:vc-specs-dir-20240601 +vc-specs-dir-20240601 +1 June 2024 +NOTE +VC Specifications Directory +https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240601/ +https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240601/ + + + +Manu Sporny +- +a:vc-status-list +vc-status-list +vc-bitstring-status-list +- +a:vc-status-list-20230427 +vc-status-list-20230427 +vc-bitstring-status-list-20230427 +- +a:vc-status-list-20231123 +vc-status-list-20231123 +vc-bitstring-status-list-20231123 +- +a:vc-status-list-20240107 +vc-status-list-20240107 +vc-bitstring-status-list-20240107 +- +a:vc-status-list-20240204 +vc-status-list-20240204 +vc-bitstring-status-list-20240204 +- +a:vc-status-list-20240303 +vc-status-list-20240303 +vc-bitstring-status-list-20240303 +- +a:vc-status-list-20240330 +vc-status-list-20240330 +vc-bitstring-status-list-20240330 +- +a:vc-status-list-20240406 +vc-status-list-20240406 +vc-bitstring-status-list-20240406 +- +a:vc-status-list-20240416 +vc-status-list-20240416 +vc-bitstring-status-list-20240416 +- +a:vc-status-list-20240419 +vc-status-list-20240419 +vc-bitstring-status-list-20240419 +- +a:vc-status-list-20240420 +vc-status-list-20240420 +vc-bitstring-status-list-20240420 +- +a:vc-status-list-20240504 +vc-status-list-20240504 +vc-bitstring-status-list-20240504 +- +a:vc-status-list-20240511 +vc-status-list-20240511 +vc-bitstring-status-list-20240511 +- +a:vc-status-list-20240514 +vc-status-list-20240514 +vc-bitstring-status-list-20240514 +- +a:vc-status-list-20240516 +vc-status-list-20240516 +vc-bitstring-status-list-20240516 +- +a:vc-status-list-20240521 +vc-status-list-20240521 +vc-bitstring-status-list-20240521 +- +a:vc-status-list-20240610 +vc-status-list-20240610 +vc-bitstring-status-list-20240610 +- d:vc-use-cases vc-use-cases 24 September 2019 @@ -518,7 +5893,7 @@ Joe Andrieu Matt Stone Tzviya Siegman Gregg Kellogg -Ted Thibodeau +Ted Thibodeau Jr - d:vc-use-cases-20170608 vc-use-cases-20170608 @@ -551,7 +5926,7 @@ Joe Andrieu Matt Stone Tzviya Siegman Gregg Kellogg -Ted Thibodeau +Ted Thibodeau Jr - d:vcard-rdf vcard-rdf diff --git a/bikeshed/spec-data/readonly/biblio/biblio-vi.data b/bikeshed/spec-data/readonly/biblio/biblio-vi.data index 55636a96d5..62c19b22e0 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-vi.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-vi.data @@ -153,6 +153,17 @@ https://www.w3.org/TR/2016/REC-vibration-20161018/ Anssi Kostiainen +- +d:video-rvfc +VIDEO-RVFC + +Draft Community Group Report +HTMLVideoElement.requestVideoFrameCallback() +https://wicg.github.io/video-rvfc/ + + + + - d:view-mode view-mode @@ -296,7 +307,7 @@ Anupam Snigdha - d:viss2-core viss2-core -17 January 2023 +21 February 2024 WD VISS version 2 - Core https://www.w3.org/TR/viss2-core/ @@ -304,9 +315,9 @@ https://github.com/w3c/automotive/blob/gh-pages/spec/VISSv2_Core.html +Wonsuk Lee Ulf Bjorkengren Isaac Agudo -Wonsuk Lee - d:viss2-core-20210729 viss2-core-20210729 @@ -405,9 +416,93 @@ Ulf Bjorkengren Isaac Agudo Wonsuk Lee - +d:viss2-core-20230331 +viss2-core-20230331 +31 March 2023 +WD +VISS version 2 - Core +https://www.w3.org/TR/2023/WD-viss2-core-20230331/ +https://www.w3.org/TR/2023/WD-viss2-core-20230331/ + + + +Ulf Bjorkengren +Isaac Agudo +Wonsuk Lee +- +d:viss2-core-20230418 +viss2-core-20230418 +18 April 2023 +WD +VISS version 2 - Core +https://www.w3.org/TR/2023/WD-viss2-core-20230418/ +https://www.w3.org/TR/2023/WD-viss2-core-20230418/ + + + +Ulf Bjorkengren +Isaac Agudo +Wonsuk Lee +- +d:viss2-core-20230908 +viss2-core-20230908 +8 September 2023 +WD +VISS version 2 - Core +https://www.w3.org/TR/2023/WD-viss2-core-20230908/ +https://www.w3.org/TR/2023/WD-viss2-core-20230908/ + + + +Ulf Bjorkengren +Isaac Agudo +Wonsuk Lee +- +d:viss2-core-20230927 +viss2-core-20230927 +27 September 2023 +WD +VISS version 2 - Core +https://www.w3.org/TR/2023/WD-viss2-core-20230927/ +https://www.w3.org/TR/2023/WD-viss2-core-20230927/ + + + +Ulf Bjorkengren +Isaac Agudo +Wonsuk Lee +- +d:viss2-core-20231114 +viss2-core-20231114 +14 November 2023 +WD +VISS version 2 - Core +https://www.w3.org/TR/2023/WD-viss2-core-20231114/ +https://www.w3.org/TR/2023/WD-viss2-core-20231114/ + + + +Ulf Bjorkengren +Isaac Agudo +Wonsuk Lee +- +d:viss2-core-20240221 +viss2-core-20240221 +21 February 2024 +WD +VISS version 2 - Core +https://www.w3.org/TR/2024/DISC-viss2-core-20240221/ +https://www.w3.org/TR/2024/DISC-viss2-core-20240221/ + + + +Wonsuk Lee +Ulf Bjorkengren +Isaac Agudo +- d:viss2-transport viss2-transport -17 January 2023 +21 February 2024 WD VISS version 2-Transport https://www.w3.org/TR/viss2-transport/ @@ -415,8 +510,8 @@ https://github.com/w3c/automotive/blob/gh-pages/spec/VISSv2_Transport.html -Ulf Bjorkengren Wonsuk Lee +Ulf Bjorkengren - d:viss2-transport-20210729 viss2-transport-20210729 @@ -509,6 +604,84 @@ https://www.w3.org/TR/2023/WD-viss2-transport-20230117/ Ulf Bjorkengren Wonsuk Lee - +d:viss2-transport-20230321 +viss2-transport-20230321 +21 March 2023 +WD +VISS version 2-Transport +https://www.w3.org/TR/2023/WD-viss2-transport-20230321/ +https://www.w3.org/TR/2023/WD-viss2-transport-20230321/ + + + +Ulf Bjorkengren +Wonsuk Lee +- +d:viss2-transport-20230331 +viss2-transport-20230331 +31 March 2023 +WD +VISS version 2-Transport +https://www.w3.org/TR/2023/WD-viss2-transport-20230331/ +https://www.w3.org/TR/2023/WD-viss2-transport-20230331/ + + + +Ulf Bjorkengren +Wonsuk Lee +- +d:viss2-transport-20230418 +viss2-transport-20230418 +18 April 2023 +WD +VISS version 2-Transport +https://www.w3.org/TR/2023/WD-viss2-transport-20230418/ +https://www.w3.org/TR/2023/WD-viss2-transport-20230418/ + + + +Ulf Bjorkengren +Wonsuk Lee +- +d:viss2-transport-20230908 +viss2-transport-20230908 +8 September 2023 +WD +VISS version 2-Transport +https://www.w3.org/TR/2023/WD-viss2-transport-20230908/ +https://www.w3.org/TR/2023/WD-viss2-transport-20230908/ + + + +Ulf Bjorkengren +Wonsuk Lee +- +d:viss2-transport-20231114 +viss2-transport-20231114 +14 November 2023 +WD +VISS version 2-Transport +https://www.w3.org/TR/2023/WD-viss2-transport-20231114/ +https://www.w3.org/TR/2023/WD-viss2-transport-20231114/ + + + +Ulf Bjorkengren +Wonsuk Lee +- +d:viss2-transport-20240221 +viss2-transport-20240221 +21 February 2024 +WD +VISS version 2-Transport +https://www.w3.org/TR/2024/DISC-viss2-transport-20240221/ +https://www.w3.org/TR/2024/DISC-viss2-transport-20240221/ + + + +Wonsuk Lee +Ulf Bjorkengren +- d:visual-marks visual-marks 21 February 2001 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-vo.data b/bikeshed/spec-data/readonly/biblio/biblio-vo.data index d5d98b0097..e19c30f5ae 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-vo.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-vo.data @@ -468,20 +468,20 @@ John Erickson - d:vocab-dcat-3 vocab-dcat-3 -10 May 2022 -WD +22 August 2024 +REC Data Catalog Vocabulary (DCAT) - Version 3 https://www.w3.org/TR/vocab-dcat-3/ https://w3c.github.io/dxwg/dcat/ -Riccardo Albertoni -David Browning Simon Cox -Alejandra Gonzalez Beltran Andrea Perego +Alejandra Gonzalez Beltran Peter Winstanley +Riccardo Albertoni +David Browning - d:vocab-dcat-3-20201217 vocab-dcat-3-20201217 @@ -551,6 +551,74 @@ Alejandra Gonzalez Beltran Andrea Perego Peter Winstanley - +d:vocab-dcat-3-20230307 +vocab-dcat-3-20230307 +7 March 2023 +WD +Data Catalog Vocabulary (DCAT) - Version 3 +https://www.w3.org/TR/2023/WD-vocab-dcat-3-20230307/ +https://www.w3.org/TR/2023/WD-vocab-dcat-3-20230307/ + + + +Simon Cox +Andrea Perego +Alejandra Gonzalez Beltran +Peter Winstanley +Riccardo Albertoni +David Browning +- +d:vocab-dcat-3-20240118 +vocab-dcat-3-20240118 +18 January 2024 +CR +Data Catalog Vocabulary (DCAT) - Version 3 +https://www.w3.org/TR/2024/CR-vocab-dcat-3-20240118/ +https://www.w3.org/TR/2024/CR-vocab-dcat-3-20240118/ + + + +Simon Cox +Andrea Perego +Alejandra Gonzalez Beltran +Peter Winstanley +Riccardo Albertoni +David Browning +- +d:vocab-dcat-3-20240613 +vocab-dcat-3-20240613 +13 June 2024 +PR +Data Catalog Vocabulary (DCAT) - Version 3 +https://www.w3.org/TR/2024/PR-vocab-dcat-3-20240613/ +https://www.w3.org/TR/2024/PR-vocab-dcat-3-20240613/ + + + +Simon Cox +Andrea Perego +Alejandra Gonzalez Beltran +Peter Winstanley +Riccardo Albertoni +David Browning +- +d:vocab-dcat-3-20240822 +vocab-dcat-3-20240822 +22 August 2024 +REC +Data Catalog Vocabulary (DCAT) - Version 3 +https://www.w3.org/TR/2024/REC-vocab-dcat-3-20240822/ +https://www.w3.org/TR/2024/REC-vocab-dcat-3-20240822/ + + + +Simon Cox +Andrea Perego +Alejandra Gonzalez Beltran +Peter Winstanley +Riccardo Albertoni +David Browning +- d:vocab-dqv vocab-dqv 15 December 2016 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-vs.data b/bikeshed/spec-data/readonly/biblio/biblio-vs.data index 0701598084..a56ea1473d 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-vs.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-vs.data @@ -1,9 +1,9 @@ d:vss VSS -February 2021 -2.0 +May 2023 +4.0 Vehicle Signal Specification -https://github.com/GENIVI/vehicle_signal_specification +https://github.com/COVESA/vehicle_signal_specification @@ -11,7 +11,7 @@ https://github.com/GENIVI/vehicle_signal_specification - d:vsso vsso -3 March 2022 +22 February 2024 WD VSSo: Vehicle Signal Specification Ontology https://www.w3.org/TR/vsso/ @@ -19,8 +19,8 @@ https://w3c.github.io/vsso/ -Benjamin Klotz Raphaël Troncy +Benjamin Klotz Daniel Wilms - d:vsso-20220303 @@ -37,9 +37,23 @@ Benjamin Klotz Raphaël Troncy Daniel Wilms - +d:vsso-20240222 +vsso-20240222 +22 February 2024 +WD +VSSo: Vehicle Signal Specification Ontology +https://www.w3.org/TR/2024/DISC-vsso-20240222/ +https://www.w3.org/TR/2024/DISC-vsso-20240222/ + + + +Raphaël Troncy +Benjamin Klotz +Daniel Wilms +- d:vsso-core vsso-core -3 March 2022 +22 February 2024 WD VSSo Core: Vehicle Signal Specification Core Ontology https://www.w3.org/TR/vsso-core/ @@ -47,8 +61,8 @@ https://w3c.github.io/vsso/ -Benjamin Klotz Raphaël Troncy +Benjamin Klotz Daniel Wilms - d:vsso-core-20220303 @@ -65,3 +79,17 @@ Benjamin Klotz Raphaël Troncy Daniel Wilms - +d:vsso-core-20240222 +vsso-core-20240222 +22 February 2024 +WD +VSSo Core: Vehicle Signal Specification Core Ontology +https://www.w3.org/TR/2024/DISC-vsso-core-20240222/ +https://www.w3.org/TR/2024/DISC-vsso-core-20240222/ + + + +Raphaël Troncy +Benjamin Klotz +Daniel Wilms +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-w3.data b/bikeshed/spec-data/readonly/biblio/biblio-w3.data index d5c8526082..7d04057226 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-w3.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-w3.data @@ -79,3 +79,51 @@ https://www.w3.org/Consortium/Process/ Elika J. Etemad (fantasai) Florian Rivoal - +d:w3c-vision +w3c-vision +3 April 2024 +NOTE +Vision for W3C +https://www.w3.org/TR/w3c-vision/ +https://w3c.github.io/AB-public/Vision + + + +Chris Wilson +- +d:w3c-vision-20230725 +w3c-vision-20230725 +25 July 2023 +NOTE +Vision for W3C +https://www.w3.org/TR/2023/DNOTE-w3c-vision-20230725/ +https://www.w3.org/TR/2023/DNOTE-w3c-vision-20230725/ + + + +Chris Wilson +- +d:w3c-vision-20231026 +w3c-vision-20231026 +26 October 2023 +NOTE +Vision for W3C +https://www.w3.org/TR/2023/DNOTE-w3c-vision-20231026/ +https://www.w3.org/TR/2023/DNOTE-w3c-vision-20231026/ + + + +Chris Wilson +- +d:w3c-vision-20240403 +w3c-vision-20240403 +3 April 2024 +NOTE +Vision for W3C +https://www.w3.org/TR/2024/NOTE-w3c-vision-20240403/ +https://www.w3.org/TR/2024/NOTE-w3c-vision-20240403/ + + + +Chris Wilson +- diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wa.data b/bikeshed/spec-data/readonly/biblio/biblio-wa.data index 59e32c9bc7..2ae010439e 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wa.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wa.data @@ -335,8 +335,8 @@ James Craig - d:wai-aria-1.2 wai-aria-1.2 -8 December 2021 -CR +6 June 2023 +REC Accessible Rich Internet Applications (WAI-ARIA) 1.2 https://www.w3.org/TR/wai-aria-1.2/ https://w3c.github.io/aria/ @@ -346,6 +346,7 @@ https://w3c.github.io/aria/ Joanmarie Diggs James Nurthen Michael Cooper +Carolyn MacLeod - d:wai-aria-1.2-20180719 wai-aria-1.2-20180719 @@ -423,6 +424,62 @@ Joanmarie Diggs James Nurthen Michael Cooper - +d:wai-aria-1.2-20230328 +wai-aria-1.2-20230328 +28 March 2023 +PR +Accessible Rich Internet Applications (WAI-ARIA) 1.2 +https://www.w3.org/TR/2023/PR-wai-aria-1.2-20230328/ +https://www.w3.org/TR/2023/PR-wai-aria-1.2-20230328/ + + + +Michael Cooper +James Nurthen +Joanmarie Diggs +Carolyn MacLeod +- +d:wai-aria-1.2-20230606 +wai-aria-1.2-20230606 +6 June 2023 +REC +Accessible Rich Internet Applications (WAI-ARIA) 1.2 +https://www.w3.org/TR/2023/REC-wai-aria-1.2-20230606/ +https://www.w3.org/TR/2023/REC-wai-aria-1.2-20230606/ + + + +Joanmarie Diggs +James Nurthen +Michael Cooper +Carolyn MacLeod +- +d:wai-aria-1.3 +wai-aria-1.3 +23 January 2024 +WD +Accessible Rich Internet Applications (WAI-ARIA) 1.3 +https://www.w3.org/TR/wai-aria-1.3/ +https://w3c.github.io/aria/ + + + +James Nurthen +Peter Krautzberger +- +d:wai-aria-1.3-20240123 +wai-aria-1.3-20240123 +23 January 2024 +WD +Accessible Rich Internet Applications (WAI-ARIA) 1.3 +https://www.w3.org/TR/2024/WD-wai-aria-1.3-20240123/ +https://www.w3.org/TR/2024/WD-wai-aria-1.3-20240123/ + + + +James Nurthen +Peter Krautzberger +- a:wai-aria-10 wai-aria-10 wai-aria @@ -1588,6 +1645,30 @@ a:wake-lock-20221123 wake-lock-20221123 screen-wake-lock-20221123 - +a:wake-lock-20230406 +wake-lock-20230406 +screen-wake-lock-20230406 +- +a:wake-lock-20230714 +wake-lock-20230714 +screen-wake-lock-20230714 +- +a:wake-lock-20230719 +wake-lock-20230719 +screen-wake-lock-20230719 +- +a:wake-lock-20231107 +wake-lock-20231107 +screen-wake-lock-20231107 +- +a:wake-lock-20240411 +wake-lock-20240411 +screen-wake-lock-20240411 +- +a:wake-lock-20240527 +wake-lock-20240527 +screen-wake-lock-20240527 +- d:wake-lock-use-cases wake-lock-use-cases 14 August 2014 @@ -1765,13 +1846,17 @@ https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/ Andreas Rossberg - +a:wasm-core-1-fork-gc +WASM-CORE-1-FORK-GC +WASM-CORE-2-FORK-GC +- d:wasm-core-2 wasm-core-2 -19 April 2022 +22 August 2024 WD WebAssembly Core Specification https://www.w3.org/TR/wasm-core-2/ -https://webassembly.github.io/spec/core/ +https://webassembly.github.io/spec/core/bikeshed/ @@ -1788,6 +1873,250 @@ https://www.w3.org/TR/2022/WD-wasm-core-2-20220419/ Andreas Rossberg +- +d:wasm-core-2-20240305 +wasm-core-2-20240305 +5 March 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240305/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240305/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240403 +wasm-core-2-20240403 +3 April 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240403/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240403/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240410 +wasm-core-2-20240410 +10 April 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240410/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240410/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240412 +wasm-core-2-20240412 +12 April 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240412/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240412/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240428 +wasm-core-2-20240428 +28 April 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240428/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240428/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240626 +wasm-core-2-20240626 +26 June 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240626/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240626/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240702 +wasm-core-2-20240702 +2 July 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240702/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240702/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240718 +wasm-core-2-20240718 +18 July 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240718/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240718/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240809 +wasm-core-2-20240809 +9 August 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240809/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240809/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240811 +wasm-core-2-20240811 +11 August 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240811/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240811/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240816 +wasm-core-2-20240816 +16 August 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240816/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240816/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240821 +wasm-core-2-20240821 +21 August 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240821/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240821/ + + + +Andreas Rossberg +- +d:wasm-core-2-20240822 +wasm-core-2-20240822 +22 August 2024 +WD +WebAssembly Core Specification +https://www.w3.org/TR/2024/WD-wasm-core-2-20240822/ +https://www.w3.org/TR/2024/WD-wasm-core-2-20240822/ + + + +Andreas Rossberg +- +d:wasm-core-2-fork-branch-hinting +WASM-CORE-2-FORK-BRANCH-HINTING + +Editor's Draft +WebAssembly Core: Branch Hinting +https://webassembly.github.io/branch-hinting/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-extended-const +WASM-CORE-2-FORK-EXTENDED-CONST + +Editor's Draft +WebAssembly Core: Extended Const Expressions +https://webassembly.github.io/extended-const/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-function-references +WASM-CORE-2-FORK-FUNCTION-REFERENCES + +Editor's Draft +WebAssembly Core: Function Reference Types +https://webassembly.github.io/function-references/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-gc +WASM-CORE-2-FORK-GC + +Editor's Draft +WebAssembly Core: Garbage Collection +https://webassembly.github.io/gc/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-memory64 +WASM-CORE-2-FORK-MEMORY64 + +Editor's Draft +WebAssembly Core: Memory64 +https://webassembly.github.io/memory64/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-multi-memory +WASM-CORE-2-FORK-MULTI-MEMORY + +Editor's Draft +WebAssembly Core: Multi Memory +https://webassembly.github.io/multi-memory/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-tail-call +WASM-CORE-2-FORK-TAIL-CALL + +Editor's Draft +WebAssembly Core: Tail Call +https://webassembly.github.io/tail-call/core/bikeshed/ + + + + +- +d:wasm-core-2-fork-threads +WASM-CORE-2-FORK-THREADS + +Editor's Draft +WebAssembly Core: Threading +https://webassembly.github.io/threads/core/bikeshed/ + + + + - d:wasm-js-api-1 wasm-js-api-1 @@ -1863,7 +2192,7 @@ Daniel Ehrenberg - d:wasm-js-api-2 wasm-js-api-2 -19 April 2022 +22 August 2024 WD WebAssembly JavaScript Interface https://www.w3.org/TR/wasm-js-api-2/ @@ -1884,6 +2213,143 @@ https://www.w3.org/TR/2022/WD-wasm-js-api-2-20220419/ . Ms2ger +- +d:wasm-js-api-2-20240305 +wasm-js-api-2-20240305 +5 March 2024 +WD +WebAssembly JavaScript Interface +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240305/ +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240305/ + + + +. Ms2ger +- +d:wasm-js-api-2-20240402 +wasm-js-api-2-20240402 +2 April 2024 +WD +WebAssembly JavaScript Interface +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240402/ +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240402/ + + + +. Ms2ger +- +d:wasm-js-api-2-20240626 +wasm-js-api-2-20240626 +26 June 2024 +WD +WebAssembly JavaScript Interface +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240626/ +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240626/ + + + +. Ms2ger +- +d:wasm-js-api-2-20240821 +wasm-js-api-2-20240821 +21 August 2024 +WD +WebAssembly JavaScript Interface +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240821/ +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240821/ + + + +. Ms2ger +- +d:wasm-js-api-2-20240822 +wasm-js-api-2-20240822 +22 August 2024 +WD +WebAssembly JavaScript Interface +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240822/ +https://www.w3.org/TR/2024/WD-wasm-js-api-2-20240822/ + + + +. Ms2ger +- +d:wasm-js-api-2-fork-content-security-policy +WASM-JS-API-2-FORK-CONTENT-SECURITY-POLICY + +Editor's Draft +WebAssembly JavaScript Interface: Content Security Policy +https://webassembly.github.io/content-security-policy/js-api/ + + + + +- +d:wasm-js-api-2-fork-esm-integration +WASM-JS-API-2-FORK-ESM-INTEGRATION + +Editor's Draft +WebAssembly JavaScript Interface: ESM Integration +https://webassembly.github.io/esm-integration/js-api/ + + + + +- +d:wasm-js-api-2-fork-exception-handling +WASM-JS-API-2-FORK-EXCEPTION-HANDLING + +Editor's Draft +WebAssembly JavaScript Interface: Exception Handling +https://webassembly.github.io/exception-handling/js-api/ + + + + +- +d:wasm-js-api-2-fork-js-promise-integration +WASM-JS-API-2-FORK-JS-PROMISE-INTEGRATION + +Editor's Draft +WebAssembly JavaScript Interface: Promise Integration +https://webassembly.github.io/js-promise-integration/js-api/ + + + + +- +d:wasm-js-api-2-fork-js-string-builtins +WASM-JS-API-2-FORK-JS-STRING-BUILTINS + +Editor's Draft +WebAssembly JavaScript Interface: JS String Builtins +https://webassembly.github.io/js-string-builtins/js-api/ + + + + +- +d:wasm-js-api-2-fork-js-types +WASM-JS-API-2-FORK-JS-TYPES + +Editor's Draft +WebAssembly JavaScript Interface: Type Reflection +https://webassembly.github.io/js-types/js-api/ + + + + +- +d:wasm-js-api-2-fork-threads +WASM-JS-API-2-FORK-THREADS + +Editor's Draft +WebAssembly JavaScript Interface: Threading +https://webassembly.github.io/threads/js-api/ + + + + - d:wasm-web-api-1 wasm-web-api-1 @@ -1959,7 +2425,7 @@ Daniel Ehrenberg - d:wasm-web-api-2 wasm-web-api-2 -19 April 2022 +22 August 2024 WD WebAssembly Web API https://www.w3.org/TR/wasm-web-api-2/ @@ -1979,5 +2445,161 @@ https://www.w3.org/TR/2022/WD-wasm-web-api-2-20220419/ +. Ms2ger +- +d:wasm-web-api-2-20240305 +wasm-web-api-2-20240305 +5 March 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240305/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240305/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240403 +wasm-web-api-2-20240403 +3 April 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240403/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240403/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240410 +wasm-web-api-2-20240410 +10 April 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240410/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240410/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240412 +wasm-web-api-2-20240412 +12 April 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240412/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240412/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240428 +wasm-web-api-2-20240428 +28 April 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240428/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240428/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240626 +wasm-web-api-2-20240626 +26 June 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240626/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240626/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240702 +wasm-web-api-2-20240702 +2 July 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240702/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240702/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240718 +wasm-web-api-2-20240718 +18 July 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240718/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240718/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240809 +wasm-web-api-2-20240809 +9 August 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240809/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240809/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240811 +wasm-web-api-2-20240811 +11 August 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240811/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240811/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240816 +wasm-web-api-2-20240816 +16 August 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240816/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240816/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240821 +wasm-web-api-2-20240821 +21 August 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240821/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240821/ + + + +. Ms2ger +- +d:wasm-web-api-2-20240822 +wasm-web-api-2-20240822 +22 August 2024 +WD +WebAssembly Web API +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240822/ +https://www.w3.org/TR/2024/WD-wasm-web-api-2-20240822/ + + + . Ms2ger - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wc.data b/bikeshed/spec-data/readonly/biblio/biblio-wc.data index 088e40ff11..76560c7e47 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wc.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wc.data @@ -94,18 +94,19 @@ WAI-WEBCONTENT-19990505 - d:wcag-3.0 wcag-3.0 -7 December 2021 +28 May 2024 WD W3C Accessibility Guidelines (WCAG) 3.0 https://www.w3.org/TR/wcag-3.0/ -https://w3c.github.io/silver/guidelines/ +https://w3c.github.io/wcag3/guidelines/ Jeanne F Spellman +Alastair Campbell +Kevin White Rachael Bradley Montgomery -Shawn Lauriat -Michael Cooper +Charles Adams - d:wcag-3.0-20210121 wcag-3.0-20210121 @@ -152,6 +153,53 @@ Rachael Bradley Montgomery Shawn Lauriat Michael Cooper - +d:wcag-3.0-20230724 +wcag-3.0-20230724 +24 July 2023 +WD +W3C Accessibility Guidelines (WCAG) 3.0 +https://www.w3.org/TR/2023/WD-wcag-3.0-20230724/ +https://www.w3.org/TR/2023/WD-wcag-3.0-20230724/ + + + +Jeanne F Spellman +Rachael Bradley Montgomery +Michael Cooper +Shawn Lauriat +- +d:wcag-3.0-20240516 +wcag-3.0-20240516 +16 May 2024 +WD +W3C Accessibility Guidelines (WCAG) 3.0 +https://www.w3.org/TR/2024/WD-wcag-3.0-20240516/ +https://www.w3.org/TR/2024/WD-wcag-3.0-20240516/ + + + +Jeanne F Spellman +Alastair Campbell +Kevin White +Rachael Bradley Montgomery +Charles Adams +- +d:wcag-3.0-20240528 +wcag-3.0-20240528 +28 May 2024 +WD +W3C Accessibility Guidelines (WCAG) 3.0 +https://www.w3.org/TR/2024/WD-wcag-3.0-20240528/ +https://www.w3.org/TR/2024/WD-wcag-3.0-20240528/ + + + +Jeanne F Spellman +Alastair Campbell +Kevin White +Rachael Bradley Montgomery +Charles Adams +- d:wcag-3.0-explainer wcag-3.0-explainer 7 December 2021 @@ -1403,18 +1451,18 @@ Joshue O'Connor - d:wcag21 WCAG21 -5 June 2018 +21 September 2023 REC Web Content Accessibility Guidelines (WCAG) 2.1 https://www.w3.org/TR/WCAG21/ -https://w3c.github.io/wcag/21/guidelines/ +https://w3c.github.io/wcag/guidelines/22/ +Michael Cooper Andrew Kirkpatrick Joshue O'Connor Alastair Campbell -Michael Cooper - d:wcag21-20170228 WCAG21-20170228 @@ -1563,21 +1611,36 @@ Joshue O'Connor Alastair Campbell Michael Cooper - +d:wcag21-20230921 +WCAG21-20230921 +21 September 2023 +REC +Web Content Accessibility Guidelines (WCAG) 2.1 +https://www.w3.org/TR/2023/REC-WCAG21-20230921/ +https://www.w3.org/TR/2023/REC-WCAG21-20230921/ + + + +Michael Cooper +Andrew Kirkpatrick +Joshue O'Connor +Alastair Campbell +- d:wcag22 WCAG22 -25 January 2023 -CR +5 October 2023 +REC Web Content Accessibility Guidelines (WCAG) 2.2 https://www.w3.org/TR/WCAG22/ https://w3c.github.io/wcag/guidelines/22/ -Charles Adams -Alastair Campbell -Rachael Bradley Montgomery Michael Cooper Andrew Kirkpatrick +Alastair Campbell +Rachael Bradley Montgomery +Charles Adams - d:wcag22-20200227 WCAG22-20200227 @@ -1673,13 +1736,61 @@ Rachael Bradley Montgomery Michael Cooper Andrew Kirkpatrick - +d:wcag22-20230517 +WCAG22-20230517 +17 May 2023 +CR +Web Content Accessibility Guidelines (WCAG) 2.2 +https://www.w3.org/TR/2023/CRD-WCAG22-20230517/ +https://www.w3.org/TR/2023/CRD-WCAG22-20230517/ + + + +Charles Adams +Alastair Campbell +Rachael Bradley Montgomery +Michael Cooper +Andrew Kirkpatrick +- +d:wcag22-20230720 +WCAG22-20230720 +20 July 2023 +PR +Web Content Accessibility Guidelines (WCAG) 2.2 +https://www.w3.org/TR/2023/PR-WCAG22-20230720/ +https://www.w3.org/TR/2023/PR-WCAG22-20230720/ + + + +Michael Cooper +Andrew Kirkpatrick +Alastair Campbell +Rachael Bradley Montgomery +Charles Adams +- +d:wcag22-20231005 +WCAG22-20231005 +5 October 2023 +REC +Web Content Accessibility Guidelines (WCAG) 2.2 +https://www.w3.org/TR/2023/REC-WCAG22-20231005/ +https://www.w3.org/TR/2023/REC-WCAG22-20231005/ + + + +Michael Cooper +Andrew Kirkpatrick +Alastair Campbell +Rachael Bradley Montgomery +Charles Adams +- d:wcag2ict wcag2ict 5 September 2013 NOTE Guidance on Applying WCAG 2.0 to Non-Web Information and Communications Technologies (WCAG2ICT) https://www.w3.org/TR/wcag2ict/ -https://www.w3.org/WAI/GL/wcag2ict/ +https://w3c.github.io/wcag2ict/ @@ -1745,6 +1856,52 @@ Peter Korn Andi Snow-Weaver Gregg Vanderheiden - +a:wcag2ict-20230815 +wcag2ict-20230815 +wcag2ict-22-20230815 +- +d:wcag2ict-22 +wcag2ict-22 +2 July 2024 +NOTE +Guidance on Applying WCAG 2 to Non-Web Information and Communications Technologies (WCAG2ICT) +https://www.w3.org/TR/wcag2ict-22/ +https://w3c.github.io/wcag2ict/ + + + +Mary Jo Mueller +Chris Loiselle +Phil Day +- +d:wcag2ict-22-20230815 +wcag2ict-22-20230815 +15 August 2023 +NOTE +Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT) +https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/ +https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/ + + + +Mary Jo Mueller +Chris Loiselle +Phil Day +- +d:wcag2ict-22-20240702 +wcag2ict-22-20240702 +2 July 2024 +NOTE +Guidance on Applying WCAG 2 to Non-Web Information and Communications Technologies (WCAG2ICT) +https://www.w3.org/TR/2024/DNOTE-wcag2ict-22-20240702/ +https://www.w3.org/TR/2024/DNOTE-wcag2ict-22-20240702/ + + + +Mary Jo Mueller +Chris Loiselle +Phil Day +- s:wcss11 WCSS11 Open Mobile Alliance. <a href="http://www.openmobilealliance.org/technical/release_program/docs/Browsing/V2_3-20080331-A/OMA-WAP-WCSS-V1_1-20061020-A.pdf"><cite>Wireless CSS Specification.</cite></a> October 2006. Approved Version 1.1. URL: <a href="http://www.openmobilealliance.org/technical/release_program/docs/Browsing/V2_3-20080331-A/OMA-WAP-WCSS-V1_1-20061020-A.pdf">http://www.openmobilealliance.org/technical/release_program/docs/Browsing/V2_3-20080331-A/OMA-WAP-WCSS-V1_1-20061020-A.pdf</a> diff --git a/bikeshed/spec-data/readonly/biblio/biblio-we.data b/bikeshed/spec-data/readonly/biblio/biblio-we.data index 0bc4b8603c..9a1b802721 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-we.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-we.data @@ -20,7 +20,7 @@ web-animations-1 - d:web-animations-1 web-animations-1 -8 September 2022 +5 June 2023 WD Web Animations https://www.w3.org/TR/web-animations-1/ @@ -142,6 +142,47 @@ Robert Flack Stephen McGruer Antoine Quint - +d:web-animations-1-20230605 +web-animations-1-20230605 +5 June 2023 +WD +Web Animations +https://www.w3.org/TR/2023/WD-web-animations-1-20230605/ +https://www.w3.org/TR/2023/WD-web-animations-1-20230605/ + + + +Brian Birtles +Robert Flack +Stephen McGruer +Antoine Quint +- +d:web-animations-2 +web-animations-2 +21 February 2023 +WD +Web Animations Level 2 +https://www.w3.org/TR/web-animations-2/ +https://drafts.csswg.org/web-animations-2/ + + + +Brian Birtles +Robert Flack +- +d:web-animations-2-20230221 +web-animations-2-20230221 +21 February 2023 +WD +Web Animations Level 2 +https://www.w3.org/TR/2023/WD-web-animations-2-20230221/ +https://www.w3.org/TR/2023/WD-web-animations-2-20230221/ + + + +Brian Birtles +Robert Flack +- a:web-animations-20130625 web-animations-20130625 web-animations-1-20130625 @@ -170,6 +211,10 @@ a:web-animations-20220908 web-animations-20220908 web-animations-1-20220908 - +a:web-animations-20230605 +web-animations-20230605 +web-animations-1-20230605 +- d:web-app-launch WEB-APP-LAUNCH @@ -203,6 +248,17 @@ https://webbluetoothcg.github.io/web-bluetooth/ Jeffrey Yasskin +- +d:web-bluetooth-scanning +WEB-BLUETOOTH-SCANNING + +Draft Community Group Report +Web Bluetooth Scanning +https://webbluetoothcg.github.io/web-bluetooth/scanning.html + + + + - d:web-forms-2 web-forms-2 @@ -318,6 +374,17 @@ https://w3c.github.io/web-nfc/ +- +d:web-otp +WEB-OTP + +Draft Community Group Report +WebOTP API +https://wicg.github.io/web-otp/ + + + + - d:web-packaging web-packaging @@ -418,11 +485,22 @@ https://www.w3.org/TR/2018/NOTE-web-payments-use-cases-20180719/ Manu Sporny Ian Jacobs +- +d:web-preferences-api +WEB-PREFERENCES-API + +Unofficial Proposal Draft +Web Preferences API +https://wicg.github.io/web-preferences-api/ + + + + - d:web-share web-share -15 December 2022 -PR +30 May 2023 +REC Web Share API https://www.w3.org/TR/web-share/ https://w3c.github.io/web-share/ @@ -867,6 +945,20 @@ Matt Giuca Eric Willigers Marcos Caceres - +d:web-share-20230530 +web-share-20230530 +30 May 2023 +REC +Web Share API +https://www.w3.org/TR/2023/REC-web-share-20230530/ +https://www.w3.org/TR/2023/REC-web-share-20230530/ + + + +Marcos Caceres +Eric Willigers +Matt Giuca +- d:web-share-target WEB-SHARE-TARGET @@ -879,6 +971,17 @@ https://w3c.github.io/web-share-target/ Matt Giuca Eric Willigers +- +d:web-smart-card +WEB-SMART-CARD + +Unofficial Proposal Draft +Web Smart Card API +https://wicg.github.io/web-smart-card/ + + + + - a:web-sql WEB-SQL @@ -918,8 +1021,8 @@ d:webac WEBAC -Web Access Control Ontology -https://www.w3.org/ns/auth/acl +Basic Access Control ontology +http://www.w3.org/ns/auth/acl @@ -1641,6 +1744,62 @@ a:webapps-manifest-api-20230125 WEBAPPS-MANIFEST-API-20230125 appmanifest-20230125 - +a:webapps-manifest-api-20230329 +WEBAPPS-MANIFEST-API-20230329 +appmanifest-20230329 +- +a:webapps-manifest-api-20230426 +WEBAPPS-MANIFEST-API-20230426 +appmanifest-20230426 +- +a:webapps-manifest-api-20230502 +WEBAPPS-MANIFEST-API-20230502 +appmanifest-20230502 +- +a:webapps-manifest-api-20231006 +WEBAPPS-MANIFEST-API-20231006 +appmanifest-20231006 +- +a:webapps-manifest-api-20231012 +WEBAPPS-MANIFEST-API-20231012 +appmanifest-20231012 +- +a:webapps-manifest-api-20231028 +WEBAPPS-MANIFEST-API-20231028 +appmanifest-20231028 +- +a:webapps-manifest-api-20231115 +WEBAPPS-MANIFEST-API-20231115 +appmanifest-20231115 +- +a:webapps-manifest-api-20231129 +WEBAPPS-MANIFEST-API-20231129 +appmanifest-20231129 +- +a:webapps-manifest-api-20240410 +WEBAPPS-MANIFEST-API-20240410 +appmanifest-20240410 +- +a:webapps-manifest-api-20240501 +WEBAPPS-MANIFEST-API-20240501 +appmanifest-20240501 +- +a:webapps-manifest-api-20240502 +WEBAPPS-MANIFEST-API-20240502 +appmanifest-20240502 +- +a:webapps-manifest-api-20240517 +WEBAPPS-MANIFEST-API-20240517 +appmanifest-20240517 +- +a:webapps-manifest-api-20240612 +WEBAPPS-MANIFEST-API-20240612 +appmanifest-20240612 +- +a:webapps-manifest-api-20240702 +WEBAPPS-MANIFEST-API-20240702 +appmanifest-20240702 +- d:webarch webarch 15 December 2004 @@ -2535,7 +2694,7 @@ webauthn-1-20190304 - d:webauthn-3 webauthn-3 -27 April 2021 +27 September 2023 WD Web Authentication: An API for accessing Public Key Credentials - Level 3 https://www.w3.org/TR/webauthn-3/ @@ -2543,8 +2702,6 @@ https://w3c.github.io/webauthn/ -Jeff Hodges -J.C. Jones Michael Jones Akshay Kumar Emil Lundberg @@ -2561,6 +2718,20 @@ https://www.w3.org/TR/2021/WD-webauthn-3-20210427/ Jeff Hodges J.C. Jones +Michael Jones +Akshay Kumar +Emil Lundberg +- +d:webauthn-3-20230927 +webauthn-3-20230927 +27 September 2023 +WD +Web Authentication: An API for accessing Public Key Credentials - Level 3 +https://www.w3.org/TR/2023/WD-webauthn-3-20230927/ +https://www.w3.org/TR/2023/WD-webauthn-3-20230927/ + + + Michael Jones Akshay Kumar Emil Lundberg @@ -2837,7 +3008,7 @@ Lofton Henderson - d:webcodecs webcodecs -25 January 2023 +17 July 2024 WD WebCodecs https://www.w3.org/TR/webcodecs/ @@ -2847,6 +3018,7 @@ https://w3c.github.io/webcodecs/ Paul Adenot Bernard Aboba +Eugene Zemtsov - d:webcodecs-20210408 webcodecs-20210408 @@ -3880,595 +4052,626 @@ https://www.w3.org/TR/2023/WD-webcodecs-20230125/ Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration -webcodecs-aac-codec-registration -25 January 2023 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/webcodecs-aac-codec-registration/ -https://w3c.github.io/webcodecs/aac_codec_registration.html +d:webcodecs-20230130 +webcodecs-20230130 +30 January 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230130/ +https://www.w3.org/TR/2023/WD-webcodecs-20230130/ Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20211216 -webcodecs-aac-codec-registration-20211216 -16 December 2021 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-aac-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-aac-codec-registration-20211216/ +d:webcodecs-20230201 +webcodecs-20230201 +1 February 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230201/ +https://www.w3.org/TR/2023/WD-webcodecs-20230201/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220126 -webcodecs-aac-codec-registration-20220126 -26 January 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220126/ +d:webcodecs-20230202 +webcodecs-20230202 +2 February 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230202/ +https://www.w3.org/TR/2023/WD-webcodecs-20230202/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220209 -webcodecs-aac-codec-registration-20220209 -9 February 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220209/ +d:webcodecs-20230208 +webcodecs-20230208 +8 February 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230208/ +https://www.w3.org/TR/2023/WD-webcodecs-20230208/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220216 -webcodecs-aac-codec-registration-20220216 -16 February 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220216/ +d:webcodecs-20230209 +webcodecs-20230209 +9 February 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230209/ +https://www.w3.org/TR/2023/WD-webcodecs-20230209/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220321 -webcodecs-aac-codec-registration-20220321 -21 March 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220321/ +d:webcodecs-20230310 +webcodecs-20230310 +10 March 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230310/ +https://www.w3.org/TR/2023/WD-webcodecs-20230310/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220504 -webcodecs-aac-codec-registration-20220504 -4 May 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220504/ +d:webcodecs-20230313 +webcodecs-20230313 +13 March 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230313/ +https://www.w3.org/TR/2023/WD-webcodecs-20230313/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220524 -webcodecs-aac-codec-registration-20220524 -24 May 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220524/ +d:webcodecs-20230317 +webcodecs-20230317 +17 March 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230317/ +https://www.w3.org/TR/2023/WD-webcodecs-20230317/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220802 -webcodecs-aac-codec-registration-20220802 -2 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220802/ +d:webcodecs-20230403 +webcodecs-20230403 +3 April 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230403/ +https://www.w3.org/TR/2023/WD-webcodecs-20230403/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220808 -webcodecs-aac-codec-registration-20220808 -8 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220808/ +d:webcodecs-20230419 +webcodecs-20230419 +19 April 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230419/ +https://www.w3.org/TR/2023/WD-webcodecs-20230419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220809 -webcodecs-aac-codec-registration-20220809 -9 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220809/ +d:webcodecs-20230427 +webcodecs-20230427 +27 April 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230427/ +https://www.w3.org/TR/2023/WD-webcodecs-20230427/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220810 -webcodecs-aac-codec-registration-20220810 -10 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220810/ +d:webcodecs-20230511 +webcodecs-20230511 +11 May 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230511/ +https://www.w3.org/TR/2023/WD-webcodecs-20230511/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220816 -webcodecs-aac-codec-registration-20220816 -16 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220816/ +d:webcodecs-20230628 +webcodecs-20230628 +28 June 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230628/ +https://www.w3.org/TR/2023/WD-webcodecs-20230628/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220817 -webcodecs-aac-codec-registration-20220817 -17 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220817/ +d:webcodecs-20230705 +webcodecs-20230705 +5 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230705/ +https://www.w3.org/TR/2023/WD-webcodecs-20230705/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220818 -webcodecs-aac-codec-registration-20220818 -18 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220818/ +d:webcodecs-20230706 +webcodecs-20230706 +6 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230706/ +https://www.w3.org/TR/2023/WD-webcodecs-20230706/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220819 -webcodecs-aac-codec-registration-20220819 -19 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220819/ +d:webcodecs-20230707 +webcodecs-20230707 +7 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230707/ +https://www.w3.org/TR/2023/WD-webcodecs-20230707/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-aac-codec-registration-20220823 -webcodecs-aac-codec-registration-20220823 -23 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220823/ +d:webcodecs-20230708 +webcodecs-20230708 +8 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230708/ +https://www.w3.org/TR/2023/WD-webcodecs-20230708/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220829 -webcodecs-aac-codec-registration-20220829 -29 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220829/ +d:webcodecs-20230719 +webcodecs-20230719 +19 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230719/ +https://www.w3.org/TR/2023/WD-webcodecs-20230719/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220831 -webcodecs-aac-codec-registration-20220831 -31 August 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220831/ +d:webcodecs-20230720 +webcodecs-20230720 +20 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230720/ +https://www.w3.org/TR/2023/WD-webcodecs-20230720/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220903 -webcodecs-aac-codec-registration-20220903 -3 September 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220903/ +d:webcodecs-20230726 +webcodecs-20230726 +26 July 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230726/ +https://www.w3.org/TR/2023/WD-webcodecs-20230726/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220906 -webcodecs-aac-codec-registration-20220906 -6 September 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220906/ +d:webcodecs-20230817 +webcodecs-20230817 +17 August 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230817/ +https://www.w3.org/TR/2023/WD-webcodecs-20230817/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220907 -webcodecs-aac-codec-registration-20220907 -7 September 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220907/ +d:webcodecs-20230821 +webcodecs-20230821 +21 August 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230821/ +https://www.w3.org/TR/2023/WD-webcodecs-20230821/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220920 -webcodecs-aac-codec-registration-20220920 -20 September 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220920/ +d:webcodecs-20230825 +webcodecs-20230825 +25 August 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230825/ +https://www.w3.org/TR/2023/WD-webcodecs-20230825/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20220928 -webcodecs-aac-codec-registration-20220928 -28 September 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220928/ +d:webcodecs-20230826 +webcodecs-20230826 +26 August 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230826/ +https://www.w3.org/TR/2023/WD-webcodecs-20230826/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221003 -webcodecs-aac-codec-registration-20221003 -3 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221003/ +d:webcodecs-20230928 +webcodecs-20230928 +28 September 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230928/ +https://www.w3.org/TR/2023/WD-webcodecs-20230928/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221006 -webcodecs-aac-codec-registration-20221006 -6 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221006/ +d:webcodecs-20230930 +webcodecs-20230930 +30 September 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20230930/ +https://www.w3.org/TR/2023/WD-webcodecs-20230930/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221010 -webcodecs-aac-codec-registration-20221010 -10 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221010/ +d:webcodecs-20231012 +webcodecs-20231012 +12 October 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20231012/ +https://www.w3.org/TR/2023/WD-webcodecs-20231012/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221014 -webcodecs-aac-codec-registration-20221014 -14 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221014/ +d:webcodecs-20231026 +webcodecs-20231026 +26 October 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20231026/ +https://www.w3.org/TR/2023/WD-webcodecs-20231026/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221017 -webcodecs-aac-codec-registration-20221017 -17 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221017/ +d:webcodecs-20231028 +webcodecs-20231028 +28 October 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20231028/ +https://www.w3.org/TR/2023/WD-webcodecs-20231028/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221018 -webcodecs-aac-codec-registration-20221018 -18 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221018/ +d:webcodecs-20231101 +webcodecs-20231101 +1 November 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20231101/ +https://www.w3.org/TR/2023/WD-webcodecs-20231101/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221019 -webcodecs-aac-codec-registration-20221019 -19 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221019/ +d:webcodecs-20231103 +webcodecs-20231103 +3 November 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20231103/ +https://www.w3.org/TR/2023/WD-webcodecs-20231103/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221020 -webcodecs-aac-codec-registration-20221020 -20 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221020/ +d:webcodecs-20231123 +webcodecs-20231123 +23 November 2023 +WD +WebCodecs +https://www.w3.org/TR/2023/WD-webcodecs-20231123/ +https://www.w3.org/TR/2023/WD-webcodecs-20231123/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221021 -webcodecs-aac-codec-registration-20221021 -21 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221021/ +d:webcodecs-20240108 +webcodecs-20240108 +8 January 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240108/ +https://www.w3.org/TR/2024/WD-webcodecs-20240108/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221027 -webcodecs-aac-codec-registration-20221027 -27 October 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221027/ +d:webcodecs-20240206 +webcodecs-20240206 +6 February 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240206/ +https://www.w3.org/TR/2024/WD-webcodecs-20240206/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221101 -webcodecs-aac-codec-registration-20221101 -1 November 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221101/ +d:webcodecs-20240319 +webcodecs-20240319 +19 March 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240319/ +https://www.w3.org/TR/2024/WD-webcodecs-20240319/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221122 -webcodecs-aac-codec-registration-20221122 -22 November 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221122/ +d:webcodecs-20240408 +webcodecs-20240408 +8 April 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240408/ +https://www.w3.org/TR/2024/WD-webcodecs-20240408/ Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20221212 -webcodecs-aac-codec-registration-20221212 -12 December 2022 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221212/ +d:webcodecs-20240419 +webcodecs-20240419 +19 April 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240419/ +https://www.w3.org/TR/2024/WD-webcodecs-20240419/ Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20230104 -webcodecs-aac-codec-registration-20230104 -4 January 2023 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230104/ +d:webcodecs-20240503 +webcodecs-20240503 +3 May 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240503/ +https://www.w3.org/TR/2024/WD-webcodecs-20240503/ Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-aac-codec-registration-20230125 -webcodecs-aac-codec-registration-20230125 -25 January 2023 -NOTE -AAC WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230125/ +d:webcodecs-20240508 +webcodecs-20240508 +8 May 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240508/ +https://www.w3.org/TR/2024/WD-webcodecs-20240508/ Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-alaw-codec-registration -webcodecs-alaw-codec-registration -25 January 2023 -NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/webcodecs-alaw-codec-registration/ -https://w3c.github.io/webcodecs/alaw_codec_registration.html +d:webcodecs-20240520 +webcodecs-20240520 +20 May 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240520/ +https://www.w3.org/TR/2024/WD-webcodecs-20240520/ Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-alaw-codec-registration-20211216 -webcodecs-alaw-codec-registration-20211216 -16 December 2021 -NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-alaw-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-alaw-codec-registration-20211216/ +d:webcodecs-20240614 +webcodecs-20240614 +14 June 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240614/ +https://www.w3.org/TR/2024/WD-webcodecs-20240614/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-alaw-codec-registration-20220126 -webcodecs-alaw-codec-registration-20220126 -26 January 2022 -NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220126/ +d:webcodecs-20240704 +webcodecs-20240704 +4 July 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240704/ +https://www.w3.org/TR/2024/WD-webcodecs-20240704/ -Chris Cunningham Paul Adenot Bernard Aboba +Eugene Zemtsov - -d:webcodecs-alaw-codec-registration-20220209 -webcodecs-alaw-codec-registration-20220209 -9 February 2022 -NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220209/ +d:webcodecs-20240711 +webcodecs-20240711 +11 July 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240711/ +https://www.w3.org/TR/2024/WD-webcodecs-20240711/ + + + +Paul Adenot +Bernard Aboba +Eugene Zemtsov +- +d:webcodecs-20240717 +webcodecs-20240717 +17 July 2024 +WD +WebCodecs +https://www.w3.org/TR/2024/WD-webcodecs-20240717/ +https://www.w3.org/TR/2024/WD-webcodecs-20240717/ + + + +Paul Adenot +Bernard Aboba +Eugene Zemtsov +- +d:webcodecs-aac-codec-registration +webcodecs-aac-codec-registration +17 July 2024 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/webcodecs-aac-codec-registration/ +https://w3c.github.io/webcodecs/aac_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-aac-codec-registration-20211216 +webcodecs-aac-codec-registration-20211216 +16 December 2021 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-aac-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-aac-codec-registration-20211216/ @@ -4476,13 +4679,41 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220216 -webcodecs-alaw-codec-registration-20220216 +d:webcodecs-aac-codec-registration-20220126 +webcodecs-aac-codec-registration-20220126 +26 January 2022 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-aac-codec-registration-20220209 +webcodecs-aac-codec-registration-20220209 +9 February 2022 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-aac-codec-registration-20220216 +webcodecs-aac-codec-registration-20220216 16 February 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220216/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220216/ @@ -4490,13 +4721,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220321 -webcodecs-alaw-codec-registration-20220321 +d:webcodecs-aac-codec-registration-20220321 +webcodecs-aac-codec-registration-20220321 21 March 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220321/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220321/ @@ -4504,13 +4735,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220504 -webcodecs-alaw-codec-registration-20220504 +d:webcodecs-aac-codec-registration-20220504 +webcodecs-aac-codec-registration-20220504 4 May 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220504/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220504/ @@ -4518,13 +4749,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220524 -webcodecs-alaw-codec-registration-20220524 +d:webcodecs-aac-codec-registration-20220524 +webcodecs-aac-codec-registration-20220524 24 May 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220524/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220524/ @@ -4532,13 +4763,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220802 -webcodecs-alaw-codec-registration-20220802 +d:webcodecs-aac-codec-registration-20220802 +webcodecs-aac-codec-registration-20220802 2 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220802/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220802/ @@ -4546,13 +4777,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220808 -webcodecs-alaw-codec-registration-20220808 +d:webcodecs-aac-codec-registration-20220808 +webcodecs-aac-codec-registration-20220808 8 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220808/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220808/ @@ -4560,13 +4791,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220809 -webcodecs-alaw-codec-registration-20220809 +d:webcodecs-aac-codec-registration-20220809 +webcodecs-aac-codec-registration-20220809 9 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220809/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220809/ @@ -4574,13 +4805,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220810 -webcodecs-alaw-codec-registration-20220810 +d:webcodecs-aac-codec-registration-20220810 +webcodecs-aac-codec-registration-20220810 10 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220810/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220810/ @@ -4588,13 +4819,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220816 -webcodecs-alaw-codec-registration-20220816 +d:webcodecs-aac-codec-registration-20220816 +webcodecs-aac-codec-registration-20220816 16 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220816/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220816/ @@ -4602,13 +4833,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220817 -webcodecs-alaw-codec-registration-20220817 +d:webcodecs-aac-codec-registration-20220817 +webcodecs-aac-codec-registration-20220817 17 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220817/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220817/ @@ -4616,13 +4847,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220818 -webcodecs-alaw-codec-registration-20220818 +d:webcodecs-aac-codec-registration-20220818 +webcodecs-aac-codec-registration-20220818 18 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220818/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220818/ @@ -4630,13 +4861,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220819 -webcodecs-alaw-codec-registration-20220819 +d:webcodecs-aac-codec-registration-20220819 +webcodecs-aac-codec-registration-20220819 19 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220819/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220819/ @@ -4644,13 +4875,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220823 -webcodecs-alaw-codec-registration-20220823 +d:webcodecs-aac-codec-registration-20220823 +webcodecs-aac-codec-registration-20220823 23 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220823/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220823/ @@ -4658,13 +4889,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220829 -webcodecs-alaw-codec-registration-20220829 +d:webcodecs-aac-codec-registration-20220829 +webcodecs-aac-codec-registration-20220829 29 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220829/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220829/ @@ -4672,13 +4903,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220831 -webcodecs-alaw-codec-registration-20220831 +d:webcodecs-aac-codec-registration-20220831 +webcodecs-aac-codec-registration-20220831 31 August 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220831/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220831/ @@ -4686,13 +4917,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220903 -webcodecs-alaw-codec-registration-20220903 +d:webcodecs-aac-codec-registration-20220903 +webcodecs-aac-codec-registration-20220903 3 September 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220903/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220903/ @@ -4700,13 +4931,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220906 -webcodecs-alaw-codec-registration-20220906 +d:webcodecs-aac-codec-registration-20220906 +webcodecs-aac-codec-registration-20220906 6 September 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220906/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220906/ @@ -4714,13 +4945,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220907 -webcodecs-alaw-codec-registration-20220907 +d:webcodecs-aac-codec-registration-20220907 +webcodecs-aac-codec-registration-20220907 7 September 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220907/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220907/ @@ -4728,13 +4959,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220920 -webcodecs-alaw-codec-registration-20220920 +d:webcodecs-aac-codec-registration-20220920 +webcodecs-aac-codec-registration-20220920 20 September 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220920/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220920/ @@ -4742,13 +4973,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20220928 -webcodecs-alaw-codec-registration-20220928 -28 September 2022 +d:webcodecs-aac-codec-registration-20220928 +webcodecs-aac-codec-registration-20220928 +28 September 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220928/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220928/ @@ -4756,13 +4987,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221003 -webcodecs-alaw-codec-registration-20221003 +d:webcodecs-aac-codec-registration-20221003 +webcodecs-aac-codec-registration-20221003 3 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221003/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221003/ @@ -4770,13 +5001,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221006 -webcodecs-alaw-codec-registration-20221006 +d:webcodecs-aac-codec-registration-20221006 +webcodecs-aac-codec-registration-20221006 6 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221006/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221006/ @@ -4784,13 +5015,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221010 -webcodecs-alaw-codec-registration-20221010 +d:webcodecs-aac-codec-registration-20221010 +webcodecs-aac-codec-registration-20221010 10 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221010/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221010/ @@ -4798,13 +5029,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221014 -webcodecs-alaw-codec-registration-20221014 +d:webcodecs-aac-codec-registration-20221014 +webcodecs-aac-codec-registration-20221014 14 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221014/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221014/ @@ -4812,13 +5043,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221017 -webcodecs-alaw-codec-registration-20221017 +d:webcodecs-aac-codec-registration-20221017 +webcodecs-aac-codec-registration-20221017 17 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221017/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221017/ @@ -4826,13 +5057,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221018 -webcodecs-alaw-codec-registration-20221018 +d:webcodecs-aac-codec-registration-20221018 +webcodecs-aac-codec-registration-20221018 18 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221018/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221018/ @@ -4840,13 +5071,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221019 -webcodecs-alaw-codec-registration-20221019 +d:webcodecs-aac-codec-registration-20221019 +webcodecs-aac-codec-registration-20221019 19 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221019/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221019/ @@ -4854,13 +5085,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221020 -webcodecs-alaw-codec-registration-20221020 +d:webcodecs-aac-codec-registration-20221020 +webcodecs-aac-codec-registration-20221020 20 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221020/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221020/ @@ -4868,13 +5099,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221021 -webcodecs-alaw-codec-registration-20221021 +d:webcodecs-aac-codec-registration-20221021 +webcodecs-aac-codec-registration-20221021 21 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221021/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221021/ @@ -4882,13 +5113,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221027 -webcodecs-alaw-codec-registration-20221027 +d:webcodecs-aac-codec-registration-20221027 +webcodecs-aac-codec-registration-20221027 27 October 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221027/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221027/ @@ -4896,13 +5127,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221101 -webcodecs-alaw-codec-registration-20221101 +d:webcodecs-aac-codec-registration-20221101 +webcodecs-aac-codec-registration-20221101 1 November 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221101/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221101/ @@ -4910,703 +5141,663 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221122 -webcodecs-alaw-codec-registration-20221122 +d:webcodecs-aac-codec-registration-20221122 +webcodecs-aac-codec-registration-20221122 22 November 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221122/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221122/ Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20221212 -webcodecs-alaw-codec-registration-20221212 +d:webcodecs-aac-codec-registration-20221212 +webcodecs-aac-codec-registration-20221212 12 December 2022 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221212/ +AAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221212/ Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20230104 -webcodecs-alaw-codec-registration-20230104 +d:webcodecs-aac-codec-registration-20230104 +webcodecs-aac-codec-registration-20230104 4 January 2023 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230104/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230104/ Paul Adenot Bernard Aboba - -d:webcodecs-alaw-codec-registration-20230125 -webcodecs-alaw-codec-registration-20230125 +d:webcodecs-aac-codec-registration-20230125 +webcodecs-aac-codec-registration-20230125 25 January 2023 NOTE -A-law PCM WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230125/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230125/ Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration -webcodecs-av1-codec-registration -25 January 2023 +d:webcodecs-aac-codec-registration-20230130 +webcodecs-aac-codec-registration-20230130 +30 January 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/webcodecs-av1-codec-registration/ -https://w3c.github.io/webcodecs/av1_codec_registration.html +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230130/ Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20211216 -webcodecs-av1-codec-registration-20211216 -16 December 2021 +d:webcodecs-aac-codec-registration-20230201 +webcodecs-aac-codec-registration-20230201 +1 February 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-av1-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-av1-codec-registration-20211216/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230201/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220126 -webcodecs-av1-codec-registration-20220126 -26 January 2022 +d:webcodecs-aac-codec-registration-20230202 +webcodecs-aac-codec-registration-20230202 +2 February 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220126/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230202/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220209 -webcodecs-av1-codec-registration-20220209 -9 February 2022 +d:webcodecs-aac-codec-registration-20230208 +webcodecs-aac-codec-registration-20230208 +8 February 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220209/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230208/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220216 -webcodecs-av1-codec-registration-20220216 -16 February 2022 +d:webcodecs-aac-codec-registration-20230209 +webcodecs-aac-codec-registration-20230209 +9 February 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220216/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230209/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220321 -webcodecs-av1-codec-registration-20220321 -21 March 2022 +d:webcodecs-aac-codec-registration-20230310 +webcodecs-aac-codec-registration-20230310 +10 March 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220321/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230310/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220504 -webcodecs-av1-codec-registration-20220504 -4 May 2022 +d:webcodecs-aac-codec-registration-20230313 +webcodecs-aac-codec-registration-20230313 +13 March 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220504/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230313/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220524 -webcodecs-av1-codec-registration-20220524 -24 May 2022 +d:webcodecs-aac-codec-registration-20230317 +webcodecs-aac-codec-registration-20230317 +17 March 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220524/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230317/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220802 -webcodecs-av1-codec-registration-20220802 -2 August 2022 +d:webcodecs-aac-codec-registration-20230403 +webcodecs-aac-codec-registration-20230403 +3 April 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220802/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230403/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220808 -webcodecs-av1-codec-registration-20220808 -8 August 2022 +d:webcodecs-aac-codec-registration-20230419 +webcodecs-aac-codec-registration-20230419 +19 April 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220808/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220809 -webcodecs-av1-codec-registration-20220809 -9 August 2022 +d:webcodecs-aac-codec-registration-20230427 +webcodecs-aac-codec-registration-20230427 +27 April 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220809/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230427/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220810 -webcodecs-av1-codec-registration-20220810 -10 August 2022 +d:webcodecs-aac-codec-registration-20230511 +webcodecs-aac-codec-registration-20230511 +11 May 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220810/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230511/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220816 -webcodecs-av1-codec-registration-20220816 -16 August 2022 +d:webcodecs-aac-codec-registration-20230628 +webcodecs-aac-codec-registration-20230628 +28 June 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220816/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230628/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220817 -webcodecs-av1-codec-registration-20220817 -17 August 2022 +d:webcodecs-aac-codec-registration-20230705 +webcodecs-aac-codec-registration-20230705 +5 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220817/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230705/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220818 -webcodecs-av1-codec-registration-20220818 -18 August 2022 +d:webcodecs-aac-codec-registration-20230706 +webcodecs-aac-codec-registration-20230706 +6 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220818/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230706/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220819 -webcodecs-av1-codec-registration-20220819 -19 August 2022 +d:webcodecs-aac-codec-registration-20230707 +webcodecs-aac-codec-registration-20230707 +7 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220819/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230707/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220823 -webcodecs-av1-codec-registration-20220823 -23 August 2022 +d:webcodecs-aac-codec-registration-20230708 +webcodecs-aac-codec-registration-20230708 +8 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220823/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230708/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220829 -webcodecs-av1-codec-registration-20220829 -29 August 2022 +d:webcodecs-aac-codec-registration-20230719 +webcodecs-aac-codec-registration-20230719 +19 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220829/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230719/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220831 -webcodecs-av1-codec-registration-20220831 -31 August 2022 +d:webcodecs-aac-codec-registration-20230720 +webcodecs-aac-codec-registration-20230720 +20 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220831/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230720/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220903 -webcodecs-av1-codec-registration-20220903 -3 September 2022 +d:webcodecs-aac-codec-registration-20230726 +webcodecs-aac-codec-registration-20230726 +26 July 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220903/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230726/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220906 -webcodecs-av1-codec-registration-20220906 -6 September 2022 +d:webcodecs-aac-codec-registration-20230817 +webcodecs-aac-codec-registration-20230817 +17 August 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220906/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230817/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220907 -webcodecs-av1-codec-registration-20220907 -7 September 2022 +d:webcodecs-aac-codec-registration-20230821 +webcodecs-aac-codec-registration-20230821 +21 August 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220907/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230821/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220920 -webcodecs-av1-codec-registration-20220920 -20 September 2022 +d:webcodecs-aac-codec-registration-20230825 +webcodecs-aac-codec-registration-20230825 +25 August 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220920/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230825/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20220928 -webcodecs-av1-codec-registration-20220928 -28 September 2022 +d:webcodecs-aac-codec-registration-20230826 +webcodecs-aac-codec-registration-20230826 +26 August 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220928/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230826/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221003 -webcodecs-av1-codec-registration-20221003 -3 October 2022 +d:webcodecs-aac-codec-registration-20230928 +webcodecs-aac-codec-registration-20230928 +28 September 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221003/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230928/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221006 -webcodecs-av1-codec-registration-20221006 -6 October 2022 +d:webcodecs-aac-codec-registration-20230930 +webcodecs-aac-codec-registration-20230930 +30 September 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221006/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230930/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221010 -webcodecs-av1-codec-registration-20221010 -10 October 2022 +d:webcodecs-aac-codec-registration-20231012 +webcodecs-aac-codec-registration-20231012 +12 October 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221010/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231012/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221014 -webcodecs-av1-codec-registration-20221014 -14 October 2022 +d:webcodecs-aac-codec-registration-20231026 +webcodecs-aac-codec-registration-20231026 +26 October 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221014/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231026/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221017 -webcodecs-av1-codec-registration-20221017 -17 October 2022 +d:webcodecs-aac-codec-registration-20231028 +webcodecs-aac-codec-registration-20231028 +28 October 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221017/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231028/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221018 -webcodecs-av1-codec-registration-20221018 -18 October 2022 +d:webcodecs-aac-codec-registration-20231101 +webcodecs-aac-codec-registration-20231101 +1 November 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221018/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231101/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221019 -webcodecs-av1-codec-registration-20221019 -19 October 2022 +d:webcodecs-aac-codec-registration-20231102 +webcodecs-aac-codec-registration-20231102 +2 November 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221019/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231102/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221020 -webcodecs-av1-codec-registration-20221020 -20 October 2022 +d:webcodecs-aac-codec-registration-20231103 +webcodecs-aac-codec-registration-20231103 +3 November 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221020/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231103/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221021 -webcodecs-av1-codec-registration-20221021 -21 October 2022 +d:webcodecs-aac-codec-registration-20231123 +webcodecs-aac-codec-registration-20231123 +23 November 2023 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221021/ +AAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231123/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221027 -webcodecs-av1-codec-registration-20221027 -27 October 2022 +d:webcodecs-aac-codec-registration-20240108 +webcodecs-aac-codec-registration-20240108 +8 January 2024 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221027/ +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240108/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221101 -webcodecs-av1-codec-registration-20221101 -1 November 2022 +d:webcodecs-aac-codec-registration-20240206 +webcodecs-aac-codec-registration-20240206 +6 February 2024 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221101/ +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240206/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221122 -webcodecs-av1-codec-registration-20221122 -22 November 2022 +d:webcodecs-aac-codec-registration-20240319 +webcodecs-aac-codec-registration-20240319 +19 March 2024 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221122/ +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240319/ Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20221212 -webcodecs-av1-codec-registration-20221212 -12 December 2022 +d:webcodecs-aac-codec-registration-20240408 +webcodecs-aac-codec-registration-20240408 +8 April 2024 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221212/ +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240408/ Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20230104 -webcodecs-av1-codec-registration-20230104 -4 January 2023 +d:webcodecs-aac-codec-registration-20240419 +webcodecs-aac-codec-registration-20240419 +19 April 2024 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230104/ +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240419/ Paul Adenot Bernard Aboba - -d:webcodecs-av1-codec-registration-20230125 -webcodecs-av1-codec-registration-20230125 -25 January 2023 +d:webcodecs-aac-codec-registration-20240503 +webcodecs-aac-codec-registration-20240503 +3 May 2024 NOTE -AV1 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230125/ +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240503/ Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration -webcodecs-avc-codec-registration -25 January 2023 +d:webcodecs-aac-codec-registration-20240508 +webcodecs-aac-codec-registration-20240508 +8 May 2024 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/webcodecs-avc-codec-registration/ -https://w3c.github.io/webcodecs/avc_codec_registration.html +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240508/ Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210408 -webcodecs-avc-codec-registration-20210408 -8 April 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210408/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210408/ +d:webcodecs-aac-codec-registration-20240520 +webcodecs-aac-codec-registration-20240520 +20 May 2024 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240520/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210513 -webcodecs-avc-codec-registration-20210513 -13 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210513/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210513/ +d:webcodecs-aac-codec-registration-20240614 +webcodecs-aac-codec-registration-20240614 +14 June 2024 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240614/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210514 -webcodecs-avc-codec-registration-20210514 -14 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210514/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210514/ +d:webcodecs-aac-codec-registration-20240704 +webcodecs-aac-codec-registration-20240704 +4 July 2024 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240704/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210518 -webcodecs-avc-codec-registration-20210518 -18 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210518/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210518/ +d:webcodecs-aac-codec-registration-20240711 +webcodecs-aac-codec-registration-20240711 +11 July 2024 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240711/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210520 -webcodecs-avc-codec-registration-20210520 -20 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210520/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210520/ +d:webcodecs-aac-codec-registration-20240717 +webcodecs-aac-codec-registration-20240717 +17 July 2024 +NOTE +AAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240717/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210521 -webcodecs-avc-codec-registration-20210521 -21 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210521/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210521/ +d:webcodecs-alaw-codec-registration +webcodecs-alaw-codec-registration +17 July 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/webcodecs-alaw-codec-registration/ +https://w3c.github.io/webcodecs/alaw_codec_registration.html -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210526 -webcodecs-avc-codec-registration-20210526 -26 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210526/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210526/ +d:webcodecs-alaw-codec-registration-20211216 +webcodecs-alaw-codec-registration-20211216 +16 December 2021 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-alaw-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-alaw-codec-registration-20211216/ @@ -5614,13 +5805,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210527 -webcodecs-avc-codec-registration-20210527 -27 May 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210527/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210527/ +d:webcodecs-alaw-codec-registration-20220126 +webcodecs-alaw-codec-registration-20220126 +26 January 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220126/ @@ -5628,13 +5819,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210603 -webcodecs-avc-codec-registration-20210603 -3 June 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210603/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210603/ +d:webcodecs-alaw-codec-registration-20220209 +webcodecs-alaw-codec-registration-20220209 +9 February 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220209/ @@ -5642,13 +5833,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210604 -webcodecs-avc-codec-registration-20210604 -4 June 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210604/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210604/ +d:webcodecs-alaw-codec-registration-20220216 +webcodecs-alaw-codec-registration-20220216 +16 February 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220216/ @@ -5656,13 +5847,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210608 -webcodecs-avc-codec-registration-20210608 -8 June 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210608/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210608/ +d:webcodecs-alaw-codec-registration-20220321 +webcodecs-alaw-codec-registration-20220321 +21 March 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220321/ @@ -5670,13 +5861,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210611 -webcodecs-avc-codec-registration-20210611 -11 June 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210611/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210611/ +d:webcodecs-alaw-codec-registration-20220504 +webcodecs-alaw-codec-registration-20220504 +4 May 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220504/ @@ -5684,13 +5875,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210617 -webcodecs-avc-codec-registration-20210617 -17 June 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210617/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210617/ +d:webcodecs-alaw-codec-registration-20220524 +webcodecs-alaw-codec-registration-20220524 +24 May 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220524/ @@ -5698,13 +5889,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210817 -webcodecs-avc-codec-registration-20210817 -17 August 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210817/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210817/ +d:webcodecs-alaw-codec-registration-20220802 +webcodecs-alaw-codec-registration-20220802 +2 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220802/ @@ -5712,13 +5903,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210818 -webcodecs-avc-codec-registration-20210818 -18 August 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210818/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210818/ +d:webcodecs-alaw-codec-registration-20220808 +webcodecs-alaw-codec-registration-20220808 +8 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220808/ @@ -5726,13 +5917,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210820 -webcodecs-avc-codec-registration-20210820 -20 August 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210820/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210820/ +d:webcodecs-alaw-codec-registration-20220809 +webcodecs-alaw-codec-registration-20220809 +9 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220809/ @@ -5740,13 +5931,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210823 -webcodecs-avc-codec-registration-20210823 -23 August 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210823/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210823/ +d:webcodecs-alaw-codec-registration-20220810 +webcodecs-alaw-codec-registration-20220810 +10 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220810/ @@ -5754,13 +5945,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210906 -webcodecs-avc-codec-registration-20210906 -6 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210906/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210906/ +d:webcodecs-alaw-codec-registration-20220816 +webcodecs-alaw-codec-registration-20220816 +16 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220816/ @@ -5768,13 +5959,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210908 -webcodecs-avc-codec-registration-20210908 -8 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210908/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210908/ +d:webcodecs-alaw-codec-registration-20220817 +webcodecs-alaw-codec-registration-20220817 +17 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220817/ @@ -5782,13 +5973,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210921 -webcodecs-avc-codec-registration-20210921 -21 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210921/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210921/ +d:webcodecs-alaw-codec-registration-20220818 +webcodecs-alaw-codec-registration-20220818 +18 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220818/ @@ -5796,13 +5987,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210923 -webcodecs-avc-codec-registration-20210923 -23 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210923/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210923/ +d:webcodecs-alaw-codec-registration-20220819 +webcodecs-alaw-codec-registration-20220819 +19 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220819/ @@ -5810,13 +6001,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210924 -webcodecs-avc-codec-registration-20210924 -24 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210924/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210924/ +d:webcodecs-alaw-codec-registration-20220823 +webcodecs-alaw-codec-registration-20220823 +23 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220823/ @@ -5824,13 +6015,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210928 -webcodecs-avc-codec-registration-20210928 -28 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210928/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210928/ +d:webcodecs-alaw-codec-registration-20220829 +webcodecs-alaw-codec-registration-20220829 +29 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220829/ @@ -5838,13 +6029,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20210930 -webcodecs-avc-codec-registration-20210930 -30 September 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210930/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210930/ +d:webcodecs-alaw-codec-registration-20220831 +webcodecs-alaw-codec-registration-20220831 +31 August 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220831/ @@ -5852,13 +6043,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20211006 -webcodecs-avc-codec-registration-20211006 -6 October 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211006/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211006/ +d:webcodecs-alaw-codec-registration-20220903 +webcodecs-alaw-codec-registration-20220903 +3 September 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220903/ @@ -5866,13 +6057,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20211020 -webcodecs-avc-codec-registration-20211020 -20 October 2021 -WD -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211020/ -https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211020/ +d:webcodecs-alaw-codec-registration-20220906 +webcodecs-alaw-codec-registration-20220906 +6 September 2022 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220906/ @@ -5880,13 +6071,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20211216 -webcodecs-avc-codec-registration-20211216 -16 December 2021 +d:webcodecs-alaw-codec-registration-20220907 +webcodecs-alaw-codec-registration-20220907 +7 September 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-avc-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-avc-codec-registration-20211216/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220907/ @@ -5894,13 +6085,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220125 -webcodecs-avc-codec-registration-20220125 -25 January 2022 +d:webcodecs-alaw-codec-registration-20220920 +webcodecs-alaw-codec-registration-20220920 +20 September 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220125/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220125/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220920/ @@ -5908,13 +6099,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220126 -webcodecs-avc-codec-registration-20220126 -26 January 2022 +d:webcodecs-alaw-codec-registration-20220928 +webcodecs-alaw-codec-registration-20220928 +28 September 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220126/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220928/ @@ -5922,13 +6113,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220209 -webcodecs-avc-codec-registration-20220209 -9 February 2022 +d:webcodecs-alaw-codec-registration-20221003 +webcodecs-alaw-codec-registration-20221003 +3 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220209/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221003/ @@ -5936,13 +6127,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220216 -webcodecs-avc-codec-registration-20220216 -16 February 2022 +d:webcodecs-alaw-codec-registration-20221006 +webcodecs-alaw-codec-registration-20221006 +6 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220216/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221006/ @@ -5950,13 +6141,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220321 -webcodecs-avc-codec-registration-20220321 -21 March 2022 +d:webcodecs-alaw-codec-registration-20221010 +webcodecs-alaw-codec-registration-20221010 +10 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220321/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221010/ @@ -5964,13 +6155,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220504 -webcodecs-avc-codec-registration-20220504 -4 May 2022 +d:webcodecs-alaw-codec-registration-20221014 +webcodecs-alaw-codec-registration-20221014 +14 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220504/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221014/ @@ -5978,13 +6169,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220524 -webcodecs-avc-codec-registration-20220524 -24 May 2022 +d:webcodecs-alaw-codec-registration-20221017 +webcodecs-alaw-codec-registration-20221017 +17 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220524/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221017/ @@ -5992,13 +6183,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220802 -webcodecs-avc-codec-registration-20220802 -2 August 2022 +d:webcodecs-alaw-codec-registration-20221018 +webcodecs-alaw-codec-registration-20221018 +18 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220802/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221018/ @@ -6006,13 +6197,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220808 -webcodecs-avc-codec-registration-20220808 -8 August 2022 +d:webcodecs-alaw-codec-registration-20221019 +webcodecs-alaw-codec-registration-20221019 +19 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220808/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221019/ @@ -6020,13 +6211,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220809 -webcodecs-avc-codec-registration-20220809 -9 August 2022 +d:webcodecs-alaw-codec-registration-20221020 +webcodecs-alaw-codec-registration-20221020 +20 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220809/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221020/ @@ -6034,13 +6225,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220810 -webcodecs-avc-codec-registration-20220810 -10 August 2022 +d:webcodecs-alaw-codec-registration-20221021 +webcodecs-alaw-codec-registration-20221021 +21 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220810/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221021/ @@ -6048,13 +6239,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220816 -webcodecs-avc-codec-registration-20220816 -16 August 2022 +d:webcodecs-alaw-codec-registration-20221027 +webcodecs-alaw-codec-registration-20221027 +27 October 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220816/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221027/ @@ -6062,13 +6253,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220817 -webcodecs-avc-codec-registration-20220817 -17 August 2022 +d:webcodecs-alaw-codec-registration-20221101 +webcodecs-alaw-codec-registration-20221101 +1 November 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220817/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221101/ @@ -6076,709 +6267,663 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220818 -webcodecs-avc-codec-registration-20220818 -18 August 2022 +d:webcodecs-alaw-codec-registration-20221122 +webcodecs-alaw-codec-registration-20221122 +22 November 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220818/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221122/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220819 -webcodecs-avc-codec-registration-20220819 -19 August 2022 +d:webcodecs-alaw-codec-registration-20221212 +webcodecs-alaw-codec-registration-20221212 +12 December 2022 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220819/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221212/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220823 -webcodecs-avc-codec-registration-20220823 -23 August 2022 +d:webcodecs-alaw-codec-registration-20230104 +webcodecs-alaw-codec-registration-20230104 +4 January 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220823/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230104/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220829 -webcodecs-avc-codec-registration-20220829 -29 August 2022 +d:webcodecs-alaw-codec-registration-20230125 +webcodecs-alaw-codec-registration-20230125 +25 January 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220829/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230125/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220831 -webcodecs-avc-codec-registration-20220831 -31 August 2022 +d:webcodecs-alaw-codec-registration-20230130 +webcodecs-alaw-codec-registration-20230130 +30 January 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220831/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230130/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220903 -webcodecs-avc-codec-registration-20220903 -3 September 2022 +d:webcodecs-alaw-codec-registration-20230201 +webcodecs-alaw-codec-registration-20230201 +1 February 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220903/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230201/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220906 -webcodecs-avc-codec-registration-20220906 -6 September 2022 +d:webcodecs-alaw-codec-registration-20230202 +webcodecs-alaw-codec-registration-20230202 +2 February 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220906/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230202/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220907 -webcodecs-avc-codec-registration-20220907 -7 September 2022 +d:webcodecs-alaw-codec-registration-20230208 +webcodecs-alaw-codec-registration-20230208 +8 February 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220907/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230208/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220919 -webcodecs-avc-codec-registration-20220919 -19 September 2022 +d:webcodecs-alaw-codec-registration-20230209 +webcodecs-alaw-codec-registration-20230209 +9 February 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220919/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220919/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230209/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20220928 -webcodecs-avc-codec-registration-20220928 -28 September 2022 +d:webcodecs-alaw-codec-registration-20230310 +webcodecs-alaw-codec-registration-20230310 +10 March 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220928/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230310/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221003 -webcodecs-avc-codec-registration-20221003 -3 October 2022 +d:webcodecs-alaw-codec-registration-20230313 +webcodecs-alaw-codec-registration-20230313 +13 March 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221003/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230313/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221006 -webcodecs-avc-codec-registration-20221006 -6 October 2022 +d:webcodecs-alaw-codec-registration-20230317 +webcodecs-alaw-codec-registration-20230317 +17 March 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221006/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230317/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221010 -webcodecs-avc-codec-registration-20221010 -10 October 2022 +d:webcodecs-alaw-codec-registration-20230403 +webcodecs-alaw-codec-registration-20230403 +3 April 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221010/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230403/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221014 -webcodecs-avc-codec-registration-20221014 -14 October 2022 +d:webcodecs-alaw-codec-registration-20230419 +webcodecs-alaw-codec-registration-20230419 +19 April 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221014/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221017 -webcodecs-avc-codec-registration-20221017 -17 October 2022 +d:webcodecs-alaw-codec-registration-20230427 +webcodecs-alaw-codec-registration-20230427 +27 April 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221017/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230427/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221018 -webcodecs-avc-codec-registration-20221018 -18 October 2022 +d:webcodecs-alaw-codec-registration-20230511 +webcodecs-alaw-codec-registration-20230511 +11 May 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221018/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230511/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221019 -webcodecs-avc-codec-registration-20221019 -19 October 2022 +d:webcodecs-alaw-codec-registration-20230628 +webcodecs-alaw-codec-registration-20230628 +28 June 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221019/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230628/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221020 -webcodecs-avc-codec-registration-20221020 -20 October 2022 +d:webcodecs-alaw-codec-registration-20230705 +webcodecs-alaw-codec-registration-20230705 +5 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221020/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230705/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221021 -webcodecs-avc-codec-registration-20221021 -21 October 2022 +d:webcodecs-alaw-codec-registration-20230706 +webcodecs-alaw-codec-registration-20230706 +6 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221021/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230706/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221027 -webcodecs-avc-codec-registration-20221027 -27 October 2022 +d:webcodecs-alaw-codec-registration-20230707 +webcodecs-alaw-codec-registration-20230707 +7 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221027/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230707/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221101 -webcodecs-avc-codec-registration-20221101 -1 November 2022 +d:webcodecs-alaw-codec-registration-20230708 +webcodecs-alaw-codec-registration-20230708 +8 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221101/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230708/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221122 -webcodecs-avc-codec-registration-20221122 -22 November 2022 +d:webcodecs-alaw-codec-registration-20230719 +webcodecs-alaw-codec-registration-20230719 +19 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221122/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230719/ Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20221212 -webcodecs-avc-codec-registration-20221212 -12 December 2022 +d:webcodecs-alaw-codec-registration-20230720 +webcodecs-alaw-codec-registration-20230720 +20 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221212/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230720/ Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20230104 -webcodecs-avc-codec-registration-20230104 -4 January 2023 +d:webcodecs-alaw-codec-registration-20230726 +webcodecs-alaw-codec-registration-20230726 +26 July 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230104/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230726/ Paul Adenot Bernard Aboba - -d:webcodecs-avc-codec-registration-20230125 -webcodecs-avc-codec-registration-20230125 -25 January 2023 +d:webcodecs-alaw-codec-registration-20230817 +webcodecs-alaw-codec-registration-20230817 +17 August 2023 NOTE -AVC (H.264) WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230125/ +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230817/ Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry -webcodecs-codec-registry -10 October 2022 +d:webcodecs-alaw-codec-registration-20230821 +webcodecs-alaw-codec-registration-20230821 +21 August 2023 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/webcodecs-codec-registry/ -https://w3c.github.io/webcodecs/codec_registry.html +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230821/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210408 -webcodecs-codec-registry-20210408 -8 April 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210408/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210408/ +d:webcodecs-alaw-codec-registration-20230825 +webcodecs-alaw-codec-registration-20230825 +25 August 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230825/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210513 -webcodecs-codec-registry-20210513 -13 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210513/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210513/ +d:webcodecs-alaw-codec-registration-20230826 +webcodecs-alaw-codec-registration-20230826 +26 August 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230826/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210514 -webcodecs-codec-registry-20210514 -14 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210514/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210514/ +d:webcodecs-alaw-codec-registration-20230928 +webcodecs-alaw-codec-registration-20230928 +28 September 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230928/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210518 -webcodecs-codec-registry-20210518 -18 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210518/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210518/ +d:webcodecs-alaw-codec-registration-20230930 +webcodecs-alaw-codec-registration-20230930 +30 September 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230930/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210520 -webcodecs-codec-registry-20210520 -20 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210520/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210520/ +d:webcodecs-alaw-codec-registration-20231012 +webcodecs-alaw-codec-registration-20231012 +12 October 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231012/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210521 -webcodecs-codec-registry-20210521 -21 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210521/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210521/ +d:webcodecs-alaw-codec-registration-20231026 +webcodecs-alaw-codec-registration-20231026 +26 October 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231026/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210526 -webcodecs-codec-registry-20210526 -26 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210526/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210526/ +d:webcodecs-alaw-codec-registration-20231028 +webcodecs-alaw-codec-registration-20231028 +28 October 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231028/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210527 -webcodecs-codec-registry-20210527 -27 May 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210527/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210527/ +d:webcodecs-alaw-codec-registration-20231101 +webcodecs-alaw-codec-registration-20231101 +1 November 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231101/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210603 -webcodecs-codec-registry-20210603 -3 June 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210603/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210603/ +d:webcodecs-alaw-codec-registration-20231102 +webcodecs-alaw-codec-registration-20231102 +2 November 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231102/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210604 -webcodecs-codec-registry-20210604 -4 June 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210604/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210604/ +d:webcodecs-alaw-codec-registration-20231103 +webcodecs-alaw-codec-registration-20231103 +3 November 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231103/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210608 -webcodecs-codec-registry-20210608 -8 June 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210608/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210608/ +d:webcodecs-alaw-codec-registration-20231123 +webcodecs-alaw-codec-registration-20231123 +23 November 2023 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231123/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210611 -webcodecs-codec-registry-20210611 -11 June 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210611/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210611/ +d:webcodecs-alaw-codec-registration-20240108 +webcodecs-alaw-codec-registration-20240108 +8 January 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240108/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210617 -webcodecs-codec-registry-20210617 -17 June 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210617/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210617/ +d:webcodecs-alaw-codec-registration-20240206 +webcodecs-alaw-codec-registration-20240206 +6 February 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240206/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210817 -webcodecs-codec-registry-20210817 -17 August 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210817/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210817/ +d:webcodecs-alaw-codec-registration-20240319 +webcodecs-alaw-codec-registration-20240319 +19 March 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240319/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210818 -webcodecs-codec-registry-20210818 -18 August 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210818/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210818/ +d:webcodecs-alaw-codec-registration-20240408 +webcodecs-alaw-codec-registration-20240408 +8 April 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240408/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210820 -webcodecs-codec-registry-20210820 -20 August 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210820/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210820/ +d:webcodecs-alaw-codec-registration-20240419 +webcodecs-alaw-codec-registration-20240419 +19 April 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210823 -webcodecs-codec-registry-20210823 -23 August 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210823/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210823/ +d:webcodecs-alaw-codec-registration-20240503 +webcodecs-alaw-codec-registration-20240503 +3 May 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240503/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210906 -webcodecs-codec-registry-20210906 -6 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210906/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210906/ +d:webcodecs-alaw-codec-registration-20240508 +webcodecs-alaw-codec-registration-20240508 +8 May 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240508/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210908 -webcodecs-codec-registry-20210908 -8 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210908/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210908/ +d:webcodecs-alaw-codec-registration-20240520 +webcodecs-alaw-codec-registration-20240520 +20 May 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240520/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210921 -webcodecs-codec-registry-20210921 -21 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210921/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210921/ +d:webcodecs-alaw-codec-registration-20240614 +webcodecs-alaw-codec-registration-20240614 +14 June 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240614/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210923 -webcodecs-codec-registry-20210923 -23 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210923/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210923/ +d:webcodecs-alaw-codec-registration-20240704 +webcodecs-alaw-codec-registration-20240704 +4 July 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240704/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210924 -webcodecs-codec-registry-20210924 -24 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210924/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210924/ +d:webcodecs-alaw-codec-registration-20240711 +webcodecs-alaw-codec-registration-20240711 +11 July 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240711/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210928 -webcodecs-codec-registry-20210928 -28 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210928/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210928/ +d:webcodecs-alaw-codec-registration-20240717 +webcodecs-alaw-codec-registration-20240717 +17 July 2024 +NOTE +A-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240717/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20210930 -webcodecs-codec-registry-20210930 -30 September 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210930/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210930/ +d:webcodecs-av1-codec-registration +webcodecs-av1-codec-registration +17 July 2024 +NOTE +AV1 WebCodecs Registration +https://www.w3.org/TR/webcodecs-av1-codec-registration/ +https://w3c.github.io/webcodecs/av1_codec_registration.html -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20211006 -webcodecs-codec-registry-20211006 -6 October 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211006/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211006/ +d:webcodecs-av1-codec-registration-20211216 +webcodecs-av1-codec-registration-20211216 +16 December 2021 +NOTE +AV1 WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-av1-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-av1-codec-registration-20211216/ @@ -6786,13 +6931,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20211020 -webcodecs-codec-registry-20211020 -20 October 2021 -WD -WebCodecs Codec Registry -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211020/ -https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211020/ +d:webcodecs-av1-codec-registration-20220126 +webcodecs-av1-codec-registration-20220126 +26 January 2022 +NOTE +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220126/ @@ -6800,13 +6945,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20211216 -webcodecs-codec-registry-20211216 -16 December 2021 +d:webcodecs-av1-codec-registration-20220209 +webcodecs-av1-codec-registration-20220209 +9 February 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2021/DNOTE-webcodecs-codec-registry-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-codec-registry-20211216/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220209/ @@ -6814,13 +6959,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220125 -webcodecs-codec-registry-20220125 -25 January 2022 +d:webcodecs-av1-codec-registration-20220216 +webcodecs-av1-codec-registration-20220216 +16 February 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220125/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220125/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220216/ @@ -6828,13 +6973,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220126 -webcodecs-codec-registry-20220126 -26 January 2022 +d:webcodecs-av1-codec-registration-20220321 +webcodecs-av1-codec-registration-20220321 +21 March 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220126/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220321/ @@ -6842,13 +6987,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220209 -webcodecs-codec-registry-20220209 -9 February 2022 +d:webcodecs-av1-codec-registration-20220504 +webcodecs-av1-codec-registration-20220504 +4 May 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220209/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220504/ @@ -6856,55 +7001,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220216 -webcodecs-codec-registry-20220216 -16 February 2022 +d:webcodecs-av1-codec-registration-20220524 +webcodecs-av1-codec-registration-20220524 +24 May 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220216/ - - - -Chris Cunningham -Paul Adenot -Bernard Aboba -- -d:webcodecs-codec-registry-20220321 -webcodecs-codec-registry-20220321 -21 March 2022 -NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220321/ - - - -Chris Cunningham -Paul Adenot -Bernard Aboba -- -d:webcodecs-codec-registry-20220504 -webcodecs-codec-registry-20220504 -4 May 2022 -NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220504/ - - - -Chris Cunningham -Paul Adenot -Bernard Aboba -- -d:webcodecs-codec-registry-20220524 -webcodecs-codec-registry-20220524 -24 May 2022 -NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220524/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220524/ @@ -6912,13 +7015,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220802 -webcodecs-codec-registry-20220802 +d:webcodecs-av1-codec-registration-20220802 +webcodecs-av1-codec-registration-20220802 2 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220802/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220802/ @@ -6926,13 +7029,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220808 -webcodecs-codec-registry-20220808 +d:webcodecs-av1-codec-registration-20220808 +webcodecs-av1-codec-registration-20220808 8 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220808/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220808/ @@ -6940,13 +7043,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220809 -webcodecs-codec-registry-20220809 +d:webcodecs-av1-codec-registration-20220809 +webcodecs-av1-codec-registration-20220809 9 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220809/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220809/ @@ -6954,13 +7057,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220810 -webcodecs-codec-registry-20220810 +d:webcodecs-av1-codec-registration-20220810 +webcodecs-av1-codec-registration-20220810 10 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220810/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220810/ @@ -6968,13 +7071,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220816 -webcodecs-codec-registry-20220816 +d:webcodecs-av1-codec-registration-20220816 +webcodecs-av1-codec-registration-20220816 16 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220816/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220816/ @@ -6982,13 +7085,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220817 -webcodecs-codec-registry-20220817 +d:webcodecs-av1-codec-registration-20220817 +webcodecs-av1-codec-registration-20220817 17 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220817/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220817/ @@ -6996,13 +7099,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220818 -webcodecs-codec-registry-20220818 +d:webcodecs-av1-codec-registration-20220818 +webcodecs-av1-codec-registration-20220818 18 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220818/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220818/ @@ -7010,13 +7113,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220819 -webcodecs-codec-registry-20220819 +d:webcodecs-av1-codec-registration-20220819 +webcodecs-av1-codec-registration-20220819 19 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220819/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220819/ @@ -7024,13 +7127,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220823 -webcodecs-codec-registry-20220823 +d:webcodecs-av1-codec-registration-20220823 +webcodecs-av1-codec-registration-20220823 23 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220823/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220823/ @@ -7038,13 +7141,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220829 -webcodecs-codec-registry-20220829 +d:webcodecs-av1-codec-registration-20220829 +webcodecs-av1-codec-registration-20220829 29 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220829/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220829/ @@ -7052,13 +7155,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220831 -webcodecs-codec-registry-20220831 +d:webcodecs-av1-codec-registration-20220831 +webcodecs-av1-codec-registration-20220831 31 August 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220831/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220831/ @@ -7066,13 +7169,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220903 -webcodecs-codec-registry-20220903 +d:webcodecs-av1-codec-registration-20220903 +webcodecs-av1-codec-registration-20220903 3 September 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220903/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220903/ @@ -7080,13 +7183,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220906 -webcodecs-codec-registry-20220906 +d:webcodecs-av1-codec-registration-20220906 +webcodecs-av1-codec-registration-20220906 6 September 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220906/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220906/ @@ -7094,13 +7197,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220907 -webcodecs-codec-registry-20220907 +d:webcodecs-av1-codec-registration-20220907 +webcodecs-av1-codec-registration-20220907 7 September 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220907/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220907/ @@ -7108,13 +7211,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220919 -webcodecs-codec-registry-20220919 -19 September 2022 +d:webcodecs-av1-codec-registration-20220920 +webcodecs-av1-codec-registration-20220920 +20 September 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220919/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220919/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220920/ @@ -7122,13 +7225,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20220928 -webcodecs-codec-registry-20220928 +d:webcodecs-av1-codec-registration-20220928 +webcodecs-av1-codec-registration-20220928 28 September 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220928/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220928/ @@ -7136,13 +7239,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20221003 -webcodecs-codec-registry-20221003 +d:webcodecs-av1-codec-registration-20221003 +webcodecs-av1-codec-registration-20221003 3 October 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221003/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221003/ @@ -7150,13 +7253,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20221006 -webcodecs-codec-registry-20221006 +d:webcodecs-av1-codec-registration-20221006 +webcodecs-av1-codec-registration-20221006 6 October 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221006/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221006/ @@ -7164,13 +7267,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-codec-registry-20221010 -webcodecs-codec-registry-20221010 +d:webcodecs-av1-codec-registration-20221010 +webcodecs-av1-codec-registration-20221010 10 October 2022 NOTE -WebCodecs Codec Registry -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221010/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221010/ @@ -7178,26 +7281,27 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration -webcodecs-flac-codec-registration -25 January 2023 +d:webcodecs-av1-codec-registration-20221014 +webcodecs-av1-codec-registration-20221014 +14 October 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/webcodecs-flac-codec-registration/ -https://w3c.github.io/webcodecs/flac_codec_registration.html +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221014/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20211216 -webcodecs-flac-codec-registration-20211216 -16 December 2021 -NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-flac-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-flac-codec-registration-20211216/ +d:webcodecs-av1-codec-registration-20221017 +webcodecs-av1-codec-registration-20221017 +17 October 2022 +NOTE +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221017/ @@ -7205,13 +7309,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220126 -webcodecs-flac-codec-registration-20220126 -26 January 2022 +d:webcodecs-av1-codec-registration-20221018 +webcodecs-av1-codec-registration-20221018 +18 October 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220126/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221018/ @@ -7219,13 +7323,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220209 -webcodecs-flac-codec-registration-20220209 -9 February 2022 +d:webcodecs-av1-codec-registration-20221019 +webcodecs-av1-codec-registration-20221019 +19 October 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220209/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221019/ @@ -7233,13 +7337,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220216 -webcodecs-flac-codec-registration-20220216 -16 February 2022 +d:webcodecs-av1-codec-registration-20221020 +webcodecs-av1-codec-registration-20221020 +20 October 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220216/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221020/ @@ -7247,13 +7351,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220321 -webcodecs-flac-codec-registration-20220321 -21 March 2022 +d:webcodecs-av1-codec-registration-20221021 +webcodecs-av1-codec-registration-20221021 +21 October 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220321/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221021/ @@ -7261,13 +7365,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220504 -webcodecs-flac-codec-registration-20220504 -4 May 2022 +d:webcodecs-av1-codec-registration-20221027 +webcodecs-av1-codec-registration-20221027 +27 October 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220504/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221027/ @@ -7275,13 +7379,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220524 -webcodecs-flac-codec-registration-20220524 -24 May 2022 +d:webcodecs-av1-codec-registration-20221101 +webcodecs-av1-codec-registration-20221101 +1 November 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220524/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221101/ @@ -7289,703 +7393,663 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220802 -webcodecs-flac-codec-registration-20220802 -2 August 2022 +d:webcodecs-av1-codec-registration-20221122 +webcodecs-av1-codec-registration-20221122 +22 November 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220802/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221122/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220808 -webcodecs-flac-codec-registration-20220808 -8 August 2022 +d:webcodecs-av1-codec-registration-20221212 +webcodecs-av1-codec-registration-20221212 +12 December 2022 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220808/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221212/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220809 -webcodecs-flac-codec-registration-20220809 -9 August 2022 +d:webcodecs-av1-codec-registration-20230104 +webcodecs-av1-codec-registration-20230104 +4 January 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220809/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230104/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220810 -webcodecs-flac-codec-registration-20220810 -10 August 2022 +d:webcodecs-av1-codec-registration-20230125 +webcodecs-av1-codec-registration-20230125 +25 January 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220810/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230125/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220816 -webcodecs-flac-codec-registration-20220816 -16 August 2022 +d:webcodecs-av1-codec-registration-20230130 +webcodecs-av1-codec-registration-20230130 +30 January 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220816/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230130/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220817 -webcodecs-flac-codec-registration-20220817 -17 August 2022 +d:webcodecs-av1-codec-registration-20230201 +webcodecs-av1-codec-registration-20230201 +1 February 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220817/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230201/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220818 -webcodecs-flac-codec-registration-20220818 -18 August 2022 +d:webcodecs-av1-codec-registration-20230202 +webcodecs-av1-codec-registration-20230202 +2 February 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220818/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230202/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220819 -webcodecs-flac-codec-registration-20220819 -19 August 2022 +d:webcodecs-av1-codec-registration-20230208 +webcodecs-av1-codec-registration-20230208 +8 February 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220819/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230208/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220823 -webcodecs-flac-codec-registration-20220823 -23 August 2022 +d:webcodecs-av1-codec-registration-20230209 +webcodecs-av1-codec-registration-20230209 +9 February 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220823/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230209/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220829 -webcodecs-flac-codec-registration-20220829 -29 August 2022 +d:webcodecs-av1-codec-registration-20230310 +webcodecs-av1-codec-registration-20230310 +10 March 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220829/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230310/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220831 -webcodecs-flac-codec-registration-20220831 -31 August 2022 +d:webcodecs-av1-codec-registration-20230313 +webcodecs-av1-codec-registration-20230313 +13 March 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220831/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230313/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220903 -webcodecs-flac-codec-registration-20220903 -3 September 2022 +d:webcodecs-av1-codec-registration-20230317 +webcodecs-av1-codec-registration-20230317 +17 March 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220903/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230317/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220906 -webcodecs-flac-codec-registration-20220906 -6 September 2022 +d:webcodecs-av1-codec-registration-20230403 +webcodecs-av1-codec-registration-20230403 +3 April 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220906/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230403/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220907 -webcodecs-flac-codec-registration-20220907 -7 September 2022 +d:webcodecs-av1-codec-registration-20230419 +webcodecs-av1-codec-registration-20230419 +19 April 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220907/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220920 -webcodecs-flac-codec-registration-20220920 -20 September 2022 +d:webcodecs-av1-codec-registration-20230427 +webcodecs-av1-codec-registration-20230427 +27 April 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220920/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230427/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20220928 -webcodecs-flac-codec-registration-20220928 -28 September 2022 +d:webcodecs-av1-codec-registration-20230511 +webcodecs-av1-codec-registration-20230511 +11 May 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220928/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230511/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221003 -webcodecs-flac-codec-registration-20221003 -3 October 2022 +d:webcodecs-av1-codec-registration-20230628 +webcodecs-av1-codec-registration-20230628 +28 June 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221003/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230628/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221006 -webcodecs-flac-codec-registration-20221006 -6 October 2022 +d:webcodecs-av1-codec-registration-20230705 +webcodecs-av1-codec-registration-20230705 +5 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221006/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230705/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221010 -webcodecs-flac-codec-registration-20221010 -10 October 2022 +d:webcodecs-av1-codec-registration-20230706 +webcodecs-av1-codec-registration-20230706 +6 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221010/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230706/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221014 -webcodecs-flac-codec-registration-20221014 -14 October 2022 +d:webcodecs-av1-codec-registration-20230707 +webcodecs-av1-codec-registration-20230707 +7 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221014/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230707/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221017 -webcodecs-flac-codec-registration-20221017 -17 October 2022 +d:webcodecs-av1-codec-registration-20230708 +webcodecs-av1-codec-registration-20230708 +8 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221017/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230708/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221018 -webcodecs-flac-codec-registration-20221018 -18 October 2022 +d:webcodecs-av1-codec-registration-20230719 +webcodecs-av1-codec-registration-20230719 +19 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221018/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230719/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221019 -webcodecs-flac-codec-registration-20221019 -19 October 2022 +d:webcodecs-av1-codec-registration-20230720 +webcodecs-av1-codec-registration-20230720 +20 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221019/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230720/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221020 -webcodecs-flac-codec-registration-20221020 -20 October 2022 +d:webcodecs-av1-codec-registration-20230726 +webcodecs-av1-codec-registration-20230726 +26 July 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221020/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230726/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221021 -webcodecs-flac-codec-registration-20221021 -21 October 2022 +d:webcodecs-av1-codec-registration-20230817 +webcodecs-av1-codec-registration-20230817 +17 August 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221021/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230817/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221027 -webcodecs-flac-codec-registration-20221027 -27 October 2022 +d:webcodecs-av1-codec-registration-20230821 +webcodecs-av1-codec-registration-20230821 +21 August 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221027/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230821/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221101 -webcodecs-flac-codec-registration-20221101 -1 November 2022 +d:webcodecs-av1-codec-registration-20230825 +webcodecs-av1-codec-registration-20230825 +25 August 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221101/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230825/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221122 -webcodecs-flac-codec-registration-20221122 -22 November 2022 +d:webcodecs-av1-codec-registration-20230826 +webcodecs-av1-codec-registration-20230826 +26 August 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221122/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230826/ Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20221212 -webcodecs-flac-codec-registration-20221212 -12 December 2022 +d:webcodecs-av1-codec-registration-20230928 +webcodecs-av1-codec-registration-20230928 +28 September 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221212/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230928/ Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20230104 -webcodecs-flac-codec-registration-20230104 -4 January 2023 +d:webcodecs-av1-codec-registration-20230930 +webcodecs-av1-codec-registration-20230930 +30 September 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230104/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230930/ Paul Adenot Bernard Aboba - -d:webcodecs-flac-codec-registration-20230125 -webcodecs-flac-codec-registration-20230125 -25 January 2023 +d:webcodecs-av1-codec-registration-20231012 +webcodecs-av1-codec-registration-20231012 +12 October 2023 NOTE -FLAC WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230125/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231012/ Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration -webcodecs-hevc-codec-registration -25 January 2023 +d:webcodecs-av1-codec-registration-20231026 +webcodecs-av1-codec-registration-20231026 +26 October 2023 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/webcodecs-hevc-codec-registration/ -https://w3c.github.io/webcodecs/hevc_codec_registration.html +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231026/ Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20220927 -webcodecs-hevc-codec-registration-20220927 -27 September 2022 +d:webcodecs-av1-codec-registration-20231028 +webcodecs-av1-codec-registration-20231028 +28 October 2023 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20220927/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20220927/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231028/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221003 -webcodecs-hevc-codec-registration-20221003 -3 October 2022 +d:webcodecs-av1-codec-registration-20231101 +webcodecs-av1-codec-registration-20231101 +1 November 2023 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221003/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231101/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221006 -webcodecs-hevc-codec-registration-20221006 -6 October 2022 +d:webcodecs-av1-codec-registration-20231102 +webcodecs-av1-codec-registration-20231102 +2 November 2023 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221006/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231102/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221010 -webcodecs-hevc-codec-registration-20221010 -10 October 2022 +d:webcodecs-av1-codec-registration-20231103 +webcodecs-av1-codec-registration-20231103 +3 November 2023 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221010/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231103/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221014 -webcodecs-hevc-codec-registration-20221014 -14 October 2022 +d:webcodecs-av1-codec-registration-20231123 +webcodecs-av1-codec-registration-20231123 +23 November 2023 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221014/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231123/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221017 -webcodecs-hevc-codec-registration-20221017 -17 October 2022 +d:webcodecs-av1-codec-registration-20240108 +webcodecs-av1-codec-registration-20240108 +8 January 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221017/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240108/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221018 -webcodecs-hevc-codec-registration-20221018 -18 October 2022 +d:webcodecs-av1-codec-registration-20240206 +webcodecs-av1-codec-registration-20240206 +6 February 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221018/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240206/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221019 -webcodecs-hevc-codec-registration-20221019 -19 October 2022 +d:webcodecs-av1-codec-registration-20240319 +webcodecs-av1-codec-registration-20240319 +19 March 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221019/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240319/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221020 -webcodecs-hevc-codec-registration-20221020 -20 October 2022 +d:webcodecs-av1-codec-registration-20240408 +webcodecs-av1-codec-registration-20240408 +8 April 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221020/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240408/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221021 -webcodecs-hevc-codec-registration-20221021 -21 October 2022 +d:webcodecs-av1-codec-registration-20240419 +webcodecs-av1-codec-registration-20240419 +19 April 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221021/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221027 -webcodecs-hevc-codec-registration-20221027 -27 October 2022 +d:webcodecs-av1-codec-registration-20240503 +webcodecs-av1-codec-registration-20240503 +3 May 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221027/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240503/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221101 -webcodecs-hevc-codec-registration-20221101 -1 November 2022 +d:webcodecs-av1-codec-registration-20240508 +webcodecs-av1-codec-registration-20240508 +8 May 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221101/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240508/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221122 -webcodecs-hevc-codec-registration-20221122 -22 November 2022 +d:webcodecs-av1-codec-registration-20240520 +webcodecs-av1-codec-registration-20240520 +20 May 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221122/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240520/ Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20221212 -webcodecs-hevc-codec-registration-20221212 -12 December 2022 +d:webcodecs-av1-codec-registration-20240614 +webcodecs-av1-codec-registration-20240614 +14 June 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221212/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240614/ Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20230104 -webcodecs-hevc-codec-registration-20230104 -4 January 2023 +d:webcodecs-av1-codec-registration-20240704 +webcodecs-av1-codec-registration-20240704 +4 July 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230104/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240704/ Paul Adenot Bernard Aboba - -d:webcodecs-hevc-codec-registration-20230125 -webcodecs-hevc-codec-registration-20230125 -25 January 2023 +d:webcodecs-av1-codec-registration-20240711 +webcodecs-av1-codec-registration-20240711 +11 July 2024 NOTE -HEVC (H.265) WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230125/ +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240711/ Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration -webcodecs-mp3-codec-registration -25 January 2023 +d:webcodecs-av1-codec-registration-20240717 +webcodecs-av1-codec-registration-20240717 +17 July 2024 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/webcodecs-mp3-codec-registration/ -https://w3c.github.io/webcodecs/mp3_codec_registration.html +AV1 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240717/ Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20211216 -webcodecs-mp3-codec-registration-20211216 -16 December 2021 +d:webcodecs-avc-codec-registration +webcodecs-avc-codec-registration +17 July 2024 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-mp3-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-mp3-codec-registration-20211216/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/webcodecs-avc-codec-registration/ +https://w3c.github.io/webcodecs/avc_codec_registration.html -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220126 -webcodecs-mp3-codec-registration-20220126 -26 January 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220126/ +d:webcodecs-avc-codec-registration-20210408 +webcodecs-avc-codec-registration-20210408 +8 April 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210408/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210408/ @@ -7993,13 +8057,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220209 -webcodecs-mp3-codec-registration-20220209 -9 February 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220209/ +d:webcodecs-avc-codec-registration-20210513 +webcodecs-avc-codec-registration-20210513 +13 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210513/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210513/ @@ -8007,13 +8071,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220216 -webcodecs-mp3-codec-registration-20220216 -16 February 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220216/ +d:webcodecs-avc-codec-registration-20210514 +webcodecs-avc-codec-registration-20210514 +14 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210514/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210514/ @@ -8021,13 +8085,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220321 -webcodecs-mp3-codec-registration-20220321 -21 March 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220321/ +d:webcodecs-avc-codec-registration-20210518 +webcodecs-avc-codec-registration-20210518 +18 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210518/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210518/ @@ -8035,13 +8099,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220504 -webcodecs-mp3-codec-registration-20220504 -4 May 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220504/ +d:webcodecs-avc-codec-registration-20210520 +webcodecs-avc-codec-registration-20210520 +20 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210520/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210520/ @@ -8049,13 +8113,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220524 -webcodecs-mp3-codec-registration-20220524 -24 May 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220524/ +d:webcodecs-avc-codec-registration-20210521 +webcodecs-avc-codec-registration-20210521 +21 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210521/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210521/ @@ -8063,13 +8127,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220802 -webcodecs-mp3-codec-registration-20220802 -2 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220802/ +d:webcodecs-avc-codec-registration-20210526 +webcodecs-avc-codec-registration-20210526 +26 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210526/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210526/ @@ -8077,13 +8141,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220808 -webcodecs-mp3-codec-registration-20220808 -8 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220808/ +d:webcodecs-avc-codec-registration-20210527 +webcodecs-avc-codec-registration-20210527 +27 May 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210527/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210527/ @@ -8091,13 +8155,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220809 -webcodecs-mp3-codec-registration-20220809 -9 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220809/ +d:webcodecs-avc-codec-registration-20210603 +webcodecs-avc-codec-registration-20210603 +3 June 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210603/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210603/ @@ -8105,13 +8169,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220810 -webcodecs-mp3-codec-registration-20220810 -10 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220810/ +d:webcodecs-avc-codec-registration-20210604 +webcodecs-avc-codec-registration-20210604 +4 June 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210604/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210604/ @@ -8119,13 +8183,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220816 -webcodecs-mp3-codec-registration-20220816 -16 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220816/ +d:webcodecs-avc-codec-registration-20210608 +webcodecs-avc-codec-registration-20210608 +8 June 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210608/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210608/ @@ -8133,13 +8197,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220817 -webcodecs-mp3-codec-registration-20220817 -17 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220817/ +d:webcodecs-avc-codec-registration-20210611 +webcodecs-avc-codec-registration-20210611 +11 June 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210611/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210611/ @@ -8147,13 +8211,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220818 -webcodecs-mp3-codec-registration-20220818 -18 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220818/ +d:webcodecs-avc-codec-registration-20210617 +webcodecs-avc-codec-registration-20210617 +17 June 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210617/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210617/ @@ -8161,13 +8225,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220819 -webcodecs-mp3-codec-registration-20220819 -19 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220819/ +d:webcodecs-avc-codec-registration-20210817 +webcodecs-avc-codec-registration-20210817 +17 August 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210817/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210817/ @@ -8175,13 +8239,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220823 -webcodecs-mp3-codec-registration-20220823 -23 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220823/ +d:webcodecs-avc-codec-registration-20210818 +webcodecs-avc-codec-registration-20210818 +18 August 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210818/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210818/ @@ -8189,13 +8253,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220829 -webcodecs-mp3-codec-registration-20220829 -29 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220829/ +d:webcodecs-avc-codec-registration-20210820 +webcodecs-avc-codec-registration-20210820 +20 August 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210820/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210820/ @@ -8203,13 +8267,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220831 -webcodecs-mp3-codec-registration-20220831 -31 August 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220831/ +d:webcodecs-avc-codec-registration-20210823 +webcodecs-avc-codec-registration-20210823 +23 August 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210823/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210823/ @@ -8217,13 +8281,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220903 -webcodecs-mp3-codec-registration-20220903 -3 September 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220903/ +d:webcodecs-avc-codec-registration-20210906 +webcodecs-avc-codec-registration-20210906 +6 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210906/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210906/ @@ -8231,13 +8295,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220906 -webcodecs-mp3-codec-registration-20220906 -6 September 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220906/ +d:webcodecs-avc-codec-registration-20210908 +webcodecs-avc-codec-registration-20210908 +8 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210908/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210908/ @@ -8245,13 +8309,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220907 -webcodecs-mp3-codec-registration-20220907 -7 September 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220907/ +d:webcodecs-avc-codec-registration-20210921 +webcodecs-avc-codec-registration-20210921 +21 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210921/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210921/ @@ -8259,13 +8323,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220919 -webcodecs-mp3-codec-registration-20220919 -19 September 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220919/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220919/ +d:webcodecs-avc-codec-registration-20210923 +webcodecs-avc-codec-registration-20210923 +23 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210923/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210923/ @@ -8273,13 +8337,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20220928 -webcodecs-mp3-codec-registration-20220928 -28 September 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220928/ +d:webcodecs-avc-codec-registration-20210924 +webcodecs-avc-codec-registration-20210924 +24 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210924/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210924/ @@ -8287,13 +8351,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221003 -webcodecs-mp3-codec-registration-20221003 -3 October 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221003/ +d:webcodecs-avc-codec-registration-20210928 +webcodecs-avc-codec-registration-20210928 +28 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210928/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210928/ @@ -8301,13 +8365,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221006 -webcodecs-mp3-codec-registration-20221006 -6 October 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221006/ +d:webcodecs-avc-codec-registration-20210930 +webcodecs-avc-codec-registration-20210930 +30 September 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210930/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210930/ @@ -8315,13 +8379,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221010 -webcodecs-mp3-codec-registration-20221010 -10 October 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221010/ +d:webcodecs-avc-codec-registration-20211006 +webcodecs-avc-codec-registration-20211006 +6 October 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211006/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211006/ @@ -8329,13 +8393,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221014 -webcodecs-mp3-codec-registration-20221014 -14 October 2022 -NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221014/ +d:webcodecs-avc-codec-registration-20211020 +webcodecs-avc-codec-registration-20211020 +20 October 2021 +WD +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211020/ +https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211020/ @@ -8343,13 +8407,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221017 -webcodecs-mp3-codec-registration-20221017 -17 October 2022 +d:webcodecs-avc-codec-registration-20211216 +webcodecs-avc-codec-registration-20211216 +16 December 2021 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221017/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-avc-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-avc-codec-registration-20211216/ @@ -8357,13 +8421,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221018 -webcodecs-mp3-codec-registration-20221018 -18 October 2022 +d:webcodecs-avc-codec-registration-20220125 +webcodecs-avc-codec-registration-20220125 +25 January 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221018/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220125/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220125/ @@ -8371,13 +8435,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221019 -webcodecs-mp3-codec-registration-20221019 -19 October 2022 +d:webcodecs-avc-codec-registration-20220126 +webcodecs-avc-codec-registration-20220126 +26 January 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221019/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220126/ @@ -8385,13 +8449,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221020 -webcodecs-mp3-codec-registration-20221020 -20 October 2022 +d:webcodecs-avc-codec-registration-20220209 +webcodecs-avc-codec-registration-20220209 +9 February 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221020/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220209/ @@ -8399,13 +8463,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221021 -webcodecs-mp3-codec-registration-20221021 -21 October 2022 +d:webcodecs-avc-codec-registration-20220216 +webcodecs-avc-codec-registration-20220216 +16 February 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221021/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220216/ @@ -8413,13 +8477,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221027 -webcodecs-mp3-codec-registration-20221027 -27 October 2022 +d:webcodecs-avc-codec-registration-20220321 +webcodecs-avc-codec-registration-20220321 +21 March 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221027/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220321/ @@ -8427,13 +8491,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221101 -webcodecs-mp3-codec-registration-20221101 -1 November 2022 +d:webcodecs-avc-codec-registration-20220504 +webcodecs-avc-codec-registration-20220504 +4 May 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221101/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220504/ @@ -8441,78 +8505,83 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221122 -webcodecs-mp3-codec-registration-20221122 -22 November 2022 +d:webcodecs-avc-codec-registration-20220524 +webcodecs-avc-codec-registration-20220524 +24 May 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221122/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220524/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20221212 -webcodecs-mp3-codec-registration-20221212 -12 December 2022 +d:webcodecs-avc-codec-registration-20220802 +webcodecs-avc-codec-registration-20220802 +2 August 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221212/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220802/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20230104 -webcodecs-mp3-codec-registration-20230104 -4 January 2023 +d:webcodecs-avc-codec-registration-20220808 +webcodecs-avc-codec-registration-20220808 +8 August 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230104/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220808/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-mp3-codec-registration-20230125 -webcodecs-mp3-codec-registration-20230125 -25 January 2023 +d:webcodecs-avc-codec-registration-20220809 +webcodecs-avc-codec-registration-20220809 +9 August 2022 NOTE -MP3 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230125/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220809/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration -webcodecs-opus-codec-registration -25 January 2023 +d:webcodecs-avc-codec-registration-20220810 +webcodecs-avc-codec-registration-20220810 +10 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/webcodecs-opus-codec-registration/ -https://w3c.github.io/webcodecs/opus_codec_registration.html +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220810/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20211216 -webcodecs-opus-codec-registration-20211216 -16 December 2021 +d:webcodecs-avc-codec-registration-20220816 +webcodecs-avc-codec-registration-20220816 +16 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-opus-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-opus-codec-registration-20211216/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220816/ @@ -8520,13 +8589,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220126 -webcodecs-opus-codec-registration-20220126 -26 January 2022 +d:webcodecs-avc-codec-registration-20220817 +webcodecs-avc-codec-registration-20220817 +17 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220126/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220817/ @@ -8534,13 +8603,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220209 -webcodecs-opus-codec-registration-20220209 -9 February 2022 +d:webcodecs-avc-codec-registration-20220818 +webcodecs-avc-codec-registration-20220818 +18 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220209/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220818/ @@ -8548,13 +8617,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220216 -webcodecs-opus-codec-registration-20220216 -16 February 2022 +d:webcodecs-avc-codec-registration-20220819 +webcodecs-avc-codec-registration-20220819 +19 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220216/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220819/ @@ -8562,13 +8631,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220321 -webcodecs-opus-codec-registration-20220321 -21 March 2022 +d:webcodecs-avc-codec-registration-20220823 +webcodecs-avc-codec-registration-20220823 +23 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220321/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220823/ @@ -8576,13 +8645,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220504 -webcodecs-opus-codec-registration-20220504 -4 May 2022 +d:webcodecs-avc-codec-registration-20220829 +webcodecs-avc-codec-registration-20220829 +29 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220504/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220829/ @@ -8590,13 +8659,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220524 -webcodecs-opus-codec-registration-20220524 -24 May 2022 +d:webcodecs-avc-codec-registration-20220831 +webcodecs-avc-codec-registration-20220831 +31 August 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220524/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220831/ @@ -8604,13 +8673,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220802 -webcodecs-opus-codec-registration-20220802 -2 August 2022 +d:webcodecs-avc-codec-registration-20220903 +webcodecs-avc-codec-registration-20220903 +3 September 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220802/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220903/ @@ -8618,13 +8687,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220808 -webcodecs-opus-codec-registration-20220808 -8 August 2022 +d:webcodecs-avc-codec-registration-20220906 +webcodecs-avc-codec-registration-20220906 +6 September 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220808/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220906/ @@ -8632,13 +8701,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220809 -webcodecs-opus-codec-registration-20220809 -9 August 2022 +d:webcodecs-avc-codec-registration-20220907 +webcodecs-avc-codec-registration-20220907 +7 September 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220809/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220907/ @@ -8646,13 +8715,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220810 -webcodecs-opus-codec-registration-20220810 -10 August 2022 +d:webcodecs-avc-codec-registration-20220919 +webcodecs-avc-codec-registration-20220919 +19 September 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220810/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220919/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220919/ @@ -8660,13 +8729,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220816 -webcodecs-opus-codec-registration-20220816 -16 August 2022 +d:webcodecs-avc-codec-registration-20220928 +webcodecs-avc-codec-registration-20220928 +28 September 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220816/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220928/ @@ -8674,13 +8743,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220817 -webcodecs-opus-codec-registration-20220817 -17 August 2022 +d:webcodecs-avc-codec-registration-20221003 +webcodecs-avc-codec-registration-20221003 +3 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220817/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221003/ @@ -8688,13 +8757,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220818 -webcodecs-opus-codec-registration-20220818 -18 August 2022 +d:webcodecs-avc-codec-registration-20221006 +webcodecs-avc-codec-registration-20221006 +6 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220818/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221006/ @@ -8702,13 +8771,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220819 -webcodecs-opus-codec-registration-20220819 -19 August 2022 +d:webcodecs-avc-codec-registration-20221010 +webcodecs-avc-codec-registration-20221010 +10 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220819/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221010/ @@ -8716,13 +8785,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220823 -webcodecs-opus-codec-registration-20220823 -23 August 2022 +d:webcodecs-avc-codec-registration-20221014 +webcodecs-avc-codec-registration-20221014 +14 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220823/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221014/ @@ -8730,13 +8799,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220829 -webcodecs-opus-codec-registration-20220829 -29 August 2022 +d:webcodecs-avc-codec-registration-20221017 +webcodecs-avc-codec-registration-20221017 +17 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220829/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221017/ @@ -8744,13 +8813,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220831 -webcodecs-opus-codec-registration-20220831 -31 August 2022 +d:webcodecs-avc-codec-registration-20221018 +webcodecs-avc-codec-registration-20221018 +18 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220831/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221018/ @@ -8758,13 +8827,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220903 -webcodecs-opus-codec-registration-20220903 -3 September 2022 +d:webcodecs-avc-codec-registration-20221019 +webcodecs-avc-codec-registration-20221019 +19 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220903/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221019/ @@ -8772,13 +8841,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220906 -webcodecs-opus-codec-registration-20220906 -6 September 2022 +d:webcodecs-avc-codec-registration-20221020 +webcodecs-avc-codec-registration-20221020 +20 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220906/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221020/ @@ -8786,13 +8855,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220907 -webcodecs-opus-codec-registration-20220907 -7 September 2022 +d:webcodecs-avc-codec-registration-20221021 +webcodecs-avc-codec-registration-20221021 +21 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220907/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221021/ @@ -8800,13 +8869,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220920 -webcodecs-opus-codec-registration-20220920 -20 September 2022 +d:webcodecs-avc-codec-registration-20221027 +webcodecs-avc-codec-registration-20221027 +27 October 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220920/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221027/ @@ -8814,13 +8883,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20220928 -webcodecs-opus-codec-registration-20220928 -28 September 2022 +d:webcodecs-avc-codec-registration-20221101 +webcodecs-avc-codec-registration-20221101 +1 November 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220928/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221101/ @@ -8828,694 +8897,650 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221003 -webcodecs-opus-codec-registration-20221003 -3 October 2022 +d:webcodecs-avc-codec-registration-20221122 +webcodecs-avc-codec-registration-20221122 +22 November 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221003/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221122/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221006 -webcodecs-opus-codec-registration-20221006 -6 October 2022 +d:webcodecs-avc-codec-registration-20221212 +webcodecs-avc-codec-registration-20221212 +12 December 2022 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221006/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221212/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221010 -webcodecs-opus-codec-registration-20221010 -10 October 2022 +d:webcodecs-avc-codec-registration-20230104 +webcodecs-avc-codec-registration-20230104 +4 January 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221010/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230104/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221014 -webcodecs-opus-codec-registration-20221014 -14 October 2022 +d:webcodecs-avc-codec-registration-20230125 +webcodecs-avc-codec-registration-20230125 +25 January 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221014/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230125/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221017 -webcodecs-opus-codec-registration-20221017 -17 October 2022 +d:webcodecs-avc-codec-registration-20230130 +webcodecs-avc-codec-registration-20230130 +30 January 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221017/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230130/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221018 -webcodecs-opus-codec-registration-20221018 -18 October 2022 +d:webcodecs-avc-codec-registration-20230201 +webcodecs-avc-codec-registration-20230201 +1 February 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221018/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230201/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221019 -webcodecs-opus-codec-registration-20221019 -19 October 2022 +d:webcodecs-avc-codec-registration-20230202 +webcodecs-avc-codec-registration-20230202 +2 February 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221019/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230202/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221020 -webcodecs-opus-codec-registration-20221020 -20 October 2022 +d:webcodecs-avc-codec-registration-20230208 +webcodecs-avc-codec-registration-20230208 +8 February 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221020/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230208/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221021 -webcodecs-opus-codec-registration-20221021 -21 October 2022 +d:webcodecs-avc-codec-registration-20230209 +webcodecs-avc-codec-registration-20230209 +9 February 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221021/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230209/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221027 -webcodecs-opus-codec-registration-20221027 -27 October 2022 +d:webcodecs-avc-codec-registration-20230310 +webcodecs-avc-codec-registration-20230310 +10 March 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221027/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230310/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221101 -webcodecs-opus-codec-registration-20221101 -1 November 2022 +d:webcodecs-avc-codec-registration-20230313 +webcodecs-avc-codec-registration-20230313 +13 March 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221101/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230313/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221122 -webcodecs-opus-codec-registration-20221122 -22 November 2022 +d:webcodecs-avc-codec-registration-20230317 +webcodecs-avc-codec-registration-20230317 +17 March 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221122/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230317/ Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20221212 -webcodecs-opus-codec-registration-20221212 -12 December 2022 +d:webcodecs-avc-codec-registration-20230403 +webcodecs-avc-codec-registration-20230403 +3 April 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221212/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230403/ Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20230104 -webcodecs-opus-codec-registration-20230104 -4 January 2023 +d:webcodecs-avc-codec-registration-20230419 +webcodecs-avc-codec-registration-20230419 +19 April 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230104/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230419/ Paul Adenot Bernard Aboba - -d:webcodecs-opus-codec-registration-20230125 -webcodecs-opus-codec-registration-20230125 -25 January 2023 +d:webcodecs-avc-codec-registration-20230427 +webcodecs-avc-codec-registration-20230427 +27 April 2023 NOTE -Opus WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230125/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230427/ Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration -webcodecs-pcm-codec-registration -25 January 2023 +d:webcodecs-avc-codec-registration-20230511 +webcodecs-avc-codec-registration-20230511 +11 May 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/webcodecs-pcm-codec-registration/ -https://w3c.github.io/webcodecs/pcm_codec_registration.html +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230511/ Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20211216 -webcodecs-pcm-codec-registration-20211216 -16 December 2021 +d:webcodecs-avc-codec-registration-20230628 +webcodecs-avc-codec-registration-20230628 +28 June 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-pcm-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-pcm-codec-registration-20211216/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230628/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220126 -webcodecs-pcm-codec-registration-20220126 -26 January 2022 +d:webcodecs-avc-codec-registration-20230705 +webcodecs-avc-codec-registration-20230705 +5 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220126/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230705/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220209 -webcodecs-pcm-codec-registration-20220209 -9 February 2022 +d:webcodecs-avc-codec-registration-20230706 +webcodecs-avc-codec-registration-20230706 +6 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220209/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230706/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220216 -webcodecs-pcm-codec-registration-20220216 -16 February 2022 +d:webcodecs-avc-codec-registration-20230707 +webcodecs-avc-codec-registration-20230707 +7 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220216/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230707/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220321 -webcodecs-pcm-codec-registration-20220321 -21 March 2022 +d:webcodecs-avc-codec-registration-20230708 +webcodecs-avc-codec-registration-20230708 +8 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220321/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230708/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220504 -webcodecs-pcm-codec-registration-20220504 -4 May 2022 +d:webcodecs-avc-codec-registration-20230719 +webcodecs-avc-codec-registration-20230719 +19 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220504/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230719/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220524 -webcodecs-pcm-codec-registration-20220524 -24 May 2022 +d:webcodecs-avc-codec-registration-20230720 +webcodecs-avc-codec-registration-20230720 +20 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220524/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230720/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220802 -webcodecs-pcm-codec-registration-20220802 -2 August 2022 +d:webcodecs-avc-codec-registration-20230726 +webcodecs-avc-codec-registration-20230726 +26 July 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220802/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230726/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220808 -webcodecs-pcm-codec-registration-20220808 -8 August 2022 +d:webcodecs-avc-codec-registration-20230817 +webcodecs-avc-codec-registration-20230817 +17 August 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220808/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230817/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220809 -webcodecs-pcm-codec-registration-20220809 -9 August 2022 +d:webcodecs-avc-codec-registration-20230821 +webcodecs-avc-codec-registration-20230821 +21 August 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220809/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230821/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220810 -webcodecs-pcm-codec-registration-20220810 -10 August 2022 +d:webcodecs-avc-codec-registration-20230825 +webcodecs-avc-codec-registration-20230825 +25 August 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220810/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230825/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220816 -webcodecs-pcm-codec-registration-20220816 -16 August 2022 +d:webcodecs-avc-codec-registration-20230826 +webcodecs-avc-codec-registration-20230826 +26 August 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220816/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230826/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220817 -webcodecs-pcm-codec-registration-20220817 -17 August 2022 +d:webcodecs-avc-codec-registration-20230928 +webcodecs-avc-codec-registration-20230928 +28 September 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220817/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230928/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220818 -webcodecs-pcm-codec-registration-20220818 -18 August 2022 +d:webcodecs-avc-codec-registration-20230930 +webcodecs-avc-codec-registration-20230930 +30 September 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220818/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230930/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220819 -webcodecs-pcm-codec-registration-20220819 -19 August 2022 +d:webcodecs-avc-codec-registration-20231012 +webcodecs-avc-codec-registration-20231012 +12 October 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220819/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231012/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220823 -webcodecs-pcm-codec-registration-20220823 -23 August 2022 +d:webcodecs-avc-codec-registration-20231026 +webcodecs-avc-codec-registration-20231026 +26 October 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220823/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231026/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220829 -webcodecs-pcm-codec-registration-20220829 -29 August 2022 +d:webcodecs-avc-codec-registration-20231028 +webcodecs-avc-codec-registration-20231028 +28 October 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220829/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231028/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220831 -webcodecs-pcm-codec-registration-20220831 -31 August 2022 +d:webcodecs-avc-codec-registration-20231101 +webcodecs-avc-codec-registration-20231101 +1 November 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220831/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231101/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220903 -webcodecs-pcm-codec-registration-20220903 -3 September 2022 +d:webcodecs-avc-codec-registration-20231102 +webcodecs-avc-codec-registration-20231102 +2 November 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220903/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231102/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220906 -webcodecs-pcm-codec-registration-20220906 -6 September 2022 +d:webcodecs-avc-codec-registration-20231103 +webcodecs-avc-codec-registration-20231103 +3 November 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220906/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231103/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220907 -webcodecs-pcm-codec-registration-20220907 -7 September 2022 +d:webcodecs-avc-codec-registration-20231123 +webcodecs-avc-codec-registration-20231123 +23 November 2023 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220907/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231123/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220920 -webcodecs-pcm-codec-registration-20220920 -20 September 2022 +d:webcodecs-avc-codec-registration-20240108 +webcodecs-avc-codec-registration-20240108 +8 January 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220920/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240108/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20220928 -webcodecs-pcm-codec-registration-20220928 -28 September 2022 +d:webcodecs-avc-codec-registration-20240206 +webcodecs-avc-codec-registration-20240206 +6 February 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220928/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240206/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221003 -webcodecs-pcm-codec-registration-20221003 -3 October 2022 +d:webcodecs-avc-codec-registration-20240319 +webcodecs-avc-codec-registration-20240319 +19 March 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221003/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240319/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221006 -webcodecs-pcm-codec-registration-20221006 -6 October 2022 +d:webcodecs-avc-codec-registration-20240408 +webcodecs-avc-codec-registration-20240408 +8 April 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221006/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240408/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221010 -webcodecs-pcm-codec-registration-20221010 -10 October 2022 +d:webcodecs-avc-codec-registration-20240419 +webcodecs-avc-codec-registration-20240419 +19 April 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221010/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221014 -webcodecs-pcm-codec-registration-20221014 -14 October 2022 +d:webcodecs-avc-codec-registration-20240503 +webcodecs-avc-codec-registration-20240503 +3 May 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221014/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240503/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221017 -webcodecs-pcm-codec-registration-20221017 -17 October 2022 +d:webcodecs-avc-codec-registration-20240508 +webcodecs-avc-codec-registration-20240508 +8 May 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221017/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240508/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221018 -webcodecs-pcm-codec-registration-20221018 -18 October 2022 +d:webcodecs-avc-codec-registration-20240520 +webcodecs-avc-codec-registration-20240520 +20 May 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221018/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240520/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221019 -webcodecs-pcm-codec-registration-20221019 -19 October 2022 +d:webcodecs-avc-codec-registration-20240614 +webcodecs-avc-codec-registration-20240614 +14 June 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221019/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240614/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221020 -webcodecs-pcm-codec-registration-20221020 -20 October 2022 +d:webcodecs-avc-codec-registration-20240704 +webcodecs-avc-codec-registration-20240704 +4 July 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221020/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240704/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221021 -webcodecs-pcm-codec-registration-20221021 -21 October 2022 +d:webcodecs-avc-codec-registration-20240711 +webcodecs-avc-codec-registration-20240711 +11 July 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221021/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240711/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221027 -webcodecs-pcm-codec-registration-20221027 -27 October 2022 +d:webcodecs-avc-codec-registration-20240717 +webcodecs-avc-codec-registration-20240717 +17 July 2024 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221027/ +AVC (H.264) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240717/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221101 -webcodecs-pcm-codec-registration-20221101 -1 November 2022 +d:webcodecs-codec-registry +webcodecs-codec-registry +10 October 2022 NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221101/ +WebCodecs Codec Registry +https://www.w3.org/TR/webcodecs-codec-registry/ +https://w3c.github.io/webcodecs/codec_registry.html @@ -9523,78 +9548,69 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20221122 -webcodecs-pcm-codec-registration-20221122 -22 November 2022 -NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221122/ - - - -Paul Adenot -Bernard Aboba -- -d:webcodecs-pcm-codec-registration-20221212 -webcodecs-pcm-codec-registration-20221212 -12 December 2022 -NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221212/ +d:webcodecs-codec-registry-20210408 +webcodecs-codec-registry-20210408 +8 April 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210408/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210408/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20230104 -webcodecs-pcm-codec-registration-20230104 -4 January 2023 -NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230104/ +d:webcodecs-codec-registry-20210513 +webcodecs-codec-registry-20210513 +13 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210513/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210513/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-pcm-codec-registration-20230125 -webcodecs-pcm-codec-registration-20230125 -25 January 2023 -NOTE -Linear PCM WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230125/ +d:webcodecs-codec-registry-20210514 +webcodecs-codec-registry-20210514 +14 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210514/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210514/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration -webcodecs-ulaw-codec-registration -25 January 2023 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/webcodecs-ulaw-codec-registration/ -https://w3c.github.io/webcodecs/ulaw_codec_registration.html +d:webcodecs-codec-registry-20210518 +webcodecs-codec-registry-20210518 +18 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210518/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210518/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20211216 -webcodecs-ulaw-codec-registration-20211216 -16 December 2021 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-ulaw-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-ulaw-codec-registration-20211216/ +d:webcodecs-codec-registry-20210520 +webcodecs-codec-registry-20210520 +20 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210520/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210520/ @@ -9602,13 +9618,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220126 -webcodecs-ulaw-codec-registration-20220126 -26 January 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220126/ +d:webcodecs-codec-registry-20210521 +webcodecs-codec-registry-20210521 +21 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210521/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210521/ @@ -9616,13 +9632,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220209 -webcodecs-ulaw-codec-registration-20220209 -9 February 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220209/ +d:webcodecs-codec-registry-20210526 +webcodecs-codec-registry-20210526 +26 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210526/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210526/ @@ -9630,13 +9646,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220216 -webcodecs-ulaw-codec-registration-20220216 -16 February 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220216/ +d:webcodecs-codec-registry-20210527 +webcodecs-codec-registry-20210527 +27 May 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210527/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210527/ @@ -9644,13 +9660,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220321 -webcodecs-ulaw-codec-registration-20220321 -21 March 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220321/ +d:webcodecs-codec-registry-20210603 +webcodecs-codec-registry-20210603 +3 June 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210603/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210603/ @@ -9658,13 +9674,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220504 -webcodecs-ulaw-codec-registration-20220504 -4 May 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220504/ +d:webcodecs-codec-registry-20210604 +webcodecs-codec-registry-20210604 +4 June 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210604/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210604/ @@ -9672,13 +9688,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220524 -webcodecs-ulaw-codec-registration-20220524 -24 May 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220524/ +d:webcodecs-codec-registry-20210608 +webcodecs-codec-registry-20210608 +8 June 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210608/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210608/ @@ -9686,13 +9702,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220802 -webcodecs-ulaw-codec-registration-20220802 -2 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220802/ +d:webcodecs-codec-registry-20210611 +webcodecs-codec-registry-20210611 +11 June 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210611/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210611/ @@ -9700,13 +9716,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220808 -webcodecs-ulaw-codec-registration-20220808 -8 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220808/ +d:webcodecs-codec-registry-20210617 +webcodecs-codec-registry-20210617 +17 June 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210617/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210617/ @@ -9714,13 +9730,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220809 -webcodecs-ulaw-codec-registration-20220809 -9 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220809/ +d:webcodecs-codec-registry-20210817 +webcodecs-codec-registry-20210817 +17 August 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210817/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210817/ @@ -9728,13 +9744,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220810 -webcodecs-ulaw-codec-registration-20220810 -10 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220810/ +d:webcodecs-codec-registry-20210818 +webcodecs-codec-registry-20210818 +18 August 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210818/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210818/ @@ -9742,13 +9758,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220816 -webcodecs-ulaw-codec-registration-20220816 -16 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220816/ +d:webcodecs-codec-registry-20210820 +webcodecs-codec-registry-20210820 +20 August 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210820/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210820/ @@ -9756,13 +9772,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220817 -webcodecs-ulaw-codec-registration-20220817 -17 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220817/ +d:webcodecs-codec-registry-20210823 +webcodecs-codec-registry-20210823 +23 August 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210823/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210823/ @@ -9770,13 +9786,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220818 -webcodecs-ulaw-codec-registration-20220818 -18 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220818/ +d:webcodecs-codec-registry-20210906 +webcodecs-codec-registry-20210906 +6 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210906/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210906/ @@ -9784,13 +9800,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220819 -webcodecs-ulaw-codec-registration-20220819 -19 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220819/ +d:webcodecs-codec-registry-20210908 +webcodecs-codec-registry-20210908 +8 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210908/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210908/ @@ -9798,13 +9814,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220823 -webcodecs-ulaw-codec-registration-20220823 -23 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220823/ +d:webcodecs-codec-registry-20210921 +webcodecs-codec-registry-20210921 +21 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210921/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210921/ @@ -9812,13 +9828,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220829 -webcodecs-ulaw-codec-registration-20220829 -29 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220829/ +d:webcodecs-codec-registry-20210923 +webcodecs-codec-registry-20210923 +23 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210923/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210923/ @@ -9826,13 +9842,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220831 -webcodecs-ulaw-codec-registration-20220831 -31 August 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220831/ +d:webcodecs-codec-registry-20210924 +webcodecs-codec-registry-20210924 +24 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210924/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210924/ @@ -9840,13 +9856,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220903 -webcodecs-ulaw-codec-registration-20220903 -3 September 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220903/ +d:webcodecs-codec-registry-20210928 +webcodecs-codec-registry-20210928 +28 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210928/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210928/ @@ -9854,13 +9870,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220906 -webcodecs-ulaw-codec-registration-20220906 -6 September 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220906/ +d:webcodecs-codec-registry-20210930 +webcodecs-codec-registry-20210930 +30 September 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210930/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210930/ @@ -9868,13 +9884,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220907 -webcodecs-ulaw-codec-registration-20220907 -7 September 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220907/ +d:webcodecs-codec-registry-20211006 +webcodecs-codec-registry-20211006 +6 October 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211006/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211006/ @@ -9882,13 +9898,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220920 -webcodecs-ulaw-codec-registration-20220920 -20 September 2022 -NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220920/ +d:webcodecs-codec-registry-20211020 +webcodecs-codec-registry-20211020 +20 October 2021 +WD +WebCodecs Codec Registry +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211020/ +https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211020/ @@ -9896,13 +9912,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20220928 -webcodecs-ulaw-codec-registration-20220928 -28 September 2022 +d:webcodecs-codec-registry-20211216 +webcodecs-codec-registry-20211216 +16 December 2021 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220928/ +WebCodecs Codec Registry +https://www.w3.org/TR/2021/DNOTE-webcodecs-codec-registry-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-codec-registry-20211216/ @@ -9910,13 +9926,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221003 -webcodecs-ulaw-codec-registration-20221003 -3 October 2022 +d:webcodecs-codec-registry-20220125 +webcodecs-codec-registry-20220125 +25 January 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221003/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220125/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220125/ @@ -9924,13 +9940,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221006 -webcodecs-ulaw-codec-registration-20221006 -6 October 2022 +d:webcodecs-codec-registry-20220126 +webcodecs-codec-registry-20220126 +26 January 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221006/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220126/ @@ -9938,13 +9954,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221010 -webcodecs-ulaw-codec-registration-20221010 -10 October 2022 +d:webcodecs-codec-registry-20220209 +webcodecs-codec-registry-20220209 +9 February 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221010/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220209/ @@ -9952,13 +9968,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221014 -webcodecs-ulaw-codec-registration-20221014 -14 October 2022 +d:webcodecs-codec-registry-20220216 +webcodecs-codec-registry-20220216 +16 February 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221014/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220216/ @@ -9966,13 +9982,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221017 -webcodecs-ulaw-codec-registration-20221017 -17 October 2022 +d:webcodecs-codec-registry-20220321 +webcodecs-codec-registry-20220321 +21 March 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221017/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220321/ @@ -9980,13 +9996,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221018 -webcodecs-ulaw-codec-registration-20221018 -18 October 2022 +d:webcodecs-codec-registry-20220504 +webcodecs-codec-registry-20220504 +4 May 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221018/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220504/ @@ -9994,13 +10010,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221019 -webcodecs-ulaw-codec-registration-20221019 -19 October 2022 +d:webcodecs-codec-registry-20220524 +webcodecs-codec-registry-20220524 +24 May 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221019/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220524/ @@ -10008,13 +10024,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221020 -webcodecs-ulaw-codec-registration-20221020 -20 October 2022 +d:webcodecs-codec-registry-20220802 +webcodecs-codec-registry-20220802 +2 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221020/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220802/ @@ -10022,13 +10038,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221021 -webcodecs-ulaw-codec-registration-20221021 -21 October 2022 +d:webcodecs-codec-registry-20220808 +webcodecs-codec-registry-20220808 +8 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221021/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220808/ @@ -10036,13 +10052,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221027 -webcodecs-ulaw-codec-registration-20221027 -27 October 2022 +d:webcodecs-codec-registry-20220809 +webcodecs-codec-registry-20220809 +9 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221027/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220809/ @@ -10050,13 +10066,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221101 -webcodecs-ulaw-codec-registration-20221101 -1 November 2022 +d:webcodecs-codec-registry-20220810 +webcodecs-codec-registry-20220810 +10 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221101/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220810/ @@ -10064,92 +10080,97 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221122 -webcodecs-ulaw-codec-registration-20221122 -22 November 2022 +d:webcodecs-codec-registry-20220816 +webcodecs-codec-registry-20220816 +16 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221122/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220816/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20221212 -webcodecs-ulaw-codec-registration-20221212 -12 December 2022 +d:webcodecs-codec-registry-20220817 +webcodecs-codec-registry-20220817 +17 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221212/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220817/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20230104 -webcodecs-ulaw-codec-registration-20230104 -4 January 2023 +d:webcodecs-codec-registry-20220818 +webcodecs-codec-registry-20220818 +18 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230104/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220818/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-ulaw-codec-registration-20230125 -webcodecs-ulaw-codec-registration-20230125 -25 January 2023 +d:webcodecs-codec-registry-20220819 +webcodecs-codec-registry-20220819 +19 August 2022 NOTE -u-law PCM WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230125/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220819/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration -webcodecs-vorbis-codec-registration -25 January 2023 +d:webcodecs-codec-registry-20220823 +webcodecs-codec-registry-20220823 +23 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/webcodecs-vorbis-codec-registration/ -https://w3c.github.io/webcodecs/vorbis_codec_registration.html +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220823/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20211216 -webcodecs-vorbis-codec-registration-20211216 -16 December 2021 +d:webcodecs-codec-registry-20220829 +webcodecs-codec-registry-20220829 +29 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-vorbis-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-vorbis-codec-registration-20211216/ - +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220829/ + Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220126 -webcodecs-vorbis-codec-registration-20220126 -26 January 2022 +d:webcodecs-codec-registry-20220831 +webcodecs-codec-registry-20220831 +31 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220126/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220831/ @@ -10157,13 +10178,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220209 -webcodecs-vorbis-codec-registration-20220209 -9 February 2022 +d:webcodecs-codec-registry-20220903 +webcodecs-codec-registry-20220903 +3 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220209/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220903/ @@ -10171,13 +10192,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220216 -webcodecs-vorbis-codec-registration-20220216 -16 February 2022 +d:webcodecs-codec-registry-20220906 +webcodecs-codec-registry-20220906 +6 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220216/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220906/ @@ -10185,13 +10206,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220321 -webcodecs-vorbis-codec-registration-20220321 -21 March 2022 +d:webcodecs-codec-registry-20220907 +webcodecs-codec-registry-20220907 +7 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220321/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220907/ @@ -10199,13 +10220,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220504 -webcodecs-vorbis-codec-registration-20220504 -4 May 2022 +d:webcodecs-codec-registry-20220919 +webcodecs-codec-registry-20220919 +19 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220504/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220919/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220919/ @@ -10213,13 +10234,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220524 -webcodecs-vorbis-codec-registration-20220524 -24 May 2022 +d:webcodecs-codec-registry-20220928 +webcodecs-codec-registry-20220928 +28 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220524/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220928/ @@ -10227,13 +10248,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220802 -webcodecs-vorbis-codec-registration-20220802 -2 August 2022 +d:webcodecs-codec-registry-20221003 +webcodecs-codec-registry-20221003 +3 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220802/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221003/ @@ -10241,13 +10262,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220808 -webcodecs-vorbis-codec-registration-20220808 -8 August 2022 +d:webcodecs-codec-registry-20221006 +webcodecs-codec-registry-20221006 +6 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220808/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221006/ @@ -10255,13 +10276,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220809 -webcodecs-vorbis-codec-registration-20220809 -9 August 2022 +d:webcodecs-codec-registry-20221010 +webcodecs-codec-registry-20221010 +10 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220809/ +WebCodecs Codec Registry +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221010/ @@ -10269,27 +10290,26 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220810 -webcodecs-vorbis-codec-registration-20220810 -10 August 2022 +d:webcodecs-flac-codec-registration +webcodecs-flac-codec-registration +17 July 2024 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220810/ +FLAC WebCodecs Registration +https://www.w3.org/TR/webcodecs-flac-codec-registration/ +https://w3c.github.io/webcodecs/flac_codec_registration.html -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220816 -webcodecs-vorbis-codec-registration-20220816 -16 August 2022 +d:webcodecs-flac-codec-registration-20211216 +webcodecs-flac-codec-registration-20211216 +16 December 2021 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220816/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-flac-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-flac-codec-registration-20211216/ @@ -10297,13 +10317,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220817 -webcodecs-vorbis-codec-registration-20220817 -17 August 2022 +d:webcodecs-flac-codec-registration-20220126 +webcodecs-flac-codec-registration-20220126 +26 January 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220817/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220126/ @@ -10311,13 +10331,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220818 -webcodecs-vorbis-codec-registration-20220818 -18 August 2022 +d:webcodecs-flac-codec-registration-20220209 +webcodecs-flac-codec-registration-20220209 +9 February 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220818/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220209/ @@ -10325,13 +10345,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220819 -webcodecs-vorbis-codec-registration-20220819 -19 August 2022 +d:webcodecs-flac-codec-registration-20220216 +webcodecs-flac-codec-registration-20220216 +16 February 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220819/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220216/ @@ -10339,13 +10359,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220823 -webcodecs-vorbis-codec-registration-20220823 -23 August 2022 +d:webcodecs-flac-codec-registration-20220321 +webcodecs-flac-codec-registration-20220321 +21 March 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220823/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220321/ @@ -10353,13 +10373,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220829 -webcodecs-vorbis-codec-registration-20220829 -29 August 2022 +d:webcodecs-flac-codec-registration-20220504 +webcodecs-flac-codec-registration-20220504 +4 May 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220829/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220504/ @@ -10367,13 +10387,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220831 -webcodecs-vorbis-codec-registration-20220831 -31 August 2022 +d:webcodecs-flac-codec-registration-20220524 +webcodecs-flac-codec-registration-20220524 +24 May 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220831/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220524/ @@ -10381,13 +10401,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220903 -webcodecs-vorbis-codec-registration-20220903 -3 September 2022 +d:webcodecs-flac-codec-registration-20220802 +webcodecs-flac-codec-registration-20220802 +2 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220903/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220802/ @@ -10395,13 +10415,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220906 -webcodecs-vorbis-codec-registration-20220906 -6 September 2022 +d:webcodecs-flac-codec-registration-20220808 +webcodecs-flac-codec-registration-20220808 +8 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220906/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220808/ @@ -10409,13 +10429,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220907 -webcodecs-vorbis-codec-registration-20220907 -7 September 2022 +d:webcodecs-flac-codec-registration-20220809 +webcodecs-flac-codec-registration-20220809 +9 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220907/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220809/ @@ -10423,13 +10443,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220919 -webcodecs-vorbis-codec-registration-20220919 -19 September 2022 +d:webcodecs-flac-codec-registration-20220810 +webcodecs-flac-codec-registration-20220810 +10 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220919/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220919/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220810/ @@ -10437,13 +10457,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20220928 -webcodecs-vorbis-codec-registration-20220928 -28 September 2022 +d:webcodecs-flac-codec-registration-20220816 +webcodecs-flac-codec-registration-20220816 +16 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220928/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220816/ @@ -10451,13 +10471,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221003 -webcodecs-vorbis-codec-registration-20221003 -3 October 2022 +d:webcodecs-flac-codec-registration-20220817 +webcodecs-flac-codec-registration-20220817 +17 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221003/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220817/ @@ -10465,13 +10485,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221006 -webcodecs-vorbis-codec-registration-20221006 -6 October 2022 +d:webcodecs-flac-codec-registration-20220818 +webcodecs-flac-codec-registration-20220818 +18 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221006/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220818/ @@ -10479,13 +10499,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221010 -webcodecs-vorbis-codec-registration-20221010 -10 October 2022 +d:webcodecs-flac-codec-registration-20220819 +webcodecs-flac-codec-registration-20220819 +19 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221010/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220819/ @@ -10493,13 +10513,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221014 -webcodecs-vorbis-codec-registration-20221014 -14 October 2022 +d:webcodecs-flac-codec-registration-20220823 +webcodecs-flac-codec-registration-20220823 +23 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221014/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220823/ @@ -10507,13 +10527,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221017 -webcodecs-vorbis-codec-registration-20221017 -17 October 2022 +d:webcodecs-flac-codec-registration-20220829 +webcodecs-flac-codec-registration-20220829 +29 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221017/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220829/ @@ -10521,13 +10541,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221018 -webcodecs-vorbis-codec-registration-20221018 -18 October 2022 +d:webcodecs-flac-codec-registration-20220831 +webcodecs-flac-codec-registration-20220831 +31 August 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221018/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220831/ @@ -10535,13 +10555,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221019 -webcodecs-vorbis-codec-registration-20221019 -19 October 2022 +d:webcodecs-flac-codec-registration-20220903 +webcodecs-flac-codec-registration-20220903 +3 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221019/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220903/ @@ -10549,13 +10569,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221020 -webcodecs-vorbis-codec-registration-20221020 -20 October 2022 +d:webcodecs-flac-codec-registration-20220906 +webcodecs-flac-codec-registration-20220906 +6 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221020/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220906/ @@ -10563,13 +10583,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221021 -webcodecs-vorbis-codec-registration-20221021 -21 October 2022 +d:webcodecs-flac-codec-registration-20220907 +webcodecs-flac-codec-registration-20220907 +7 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221021/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220907/ @@ -10577,13 +10597,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221027 -webcodecs-vorbis-codec-registration-20221027 -27 October 2022 +d:webcodecs-flac-codec-registration-20220920 +webcodecs-flac-codec-registration-20220920 +20 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221027/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220920/ @@ -10591,13 +10611,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221101 -webcodecs-vorbis-codec-registration-20221101 -1 November 2022 +d:webcodecs-flac-codec-registration-20220928 +webcodecs-flac-codec-registration-20220928 +28 September 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221101/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220928/ @@ -10605,78 +10625,83 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221122 -webcodecs-vorbis-codec-registration-20221122 -22 November 2022 +d:webcodecs-flac-codec-registration-20221003 +webcodecs-flac-codec-registration-20221003 +3 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221122/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221003/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20221212 -webcodecs-vorbis-codec-registration-20221212 -12 December 2022 +d:webcodecs-flac-codec-registration-20221006 +webcodecs-flac-codec-registration-20221006 +6 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221212/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221006/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20230104 -webcodecs-vorbis-codec-registration-20230104 -4 January 2023 +d:webcodecs-flac-codec-registration-20221010 +webcodecs-flac-codec-registration-20221010 +10 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230104/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221010/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vorbis-codec-registration-20230125 -webcodecs-vorbis-codec-registration-20230125 -25 January 2023 +d:webcodecs-flac-codec-registration-20221014 +webcodecs-flac-codec-registration-20221014 +14 October 2022 NOTE -Vorbis WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230125/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221014/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration -webcodecs-vp8-codec-registration -25 January 2023 +d:webcodecs-flac-codec-registration-20221017 +webcodecs-flac-codec-registration-20221017 +17 October 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/webcodecs-vp8-codec-registration/ -https://w3c.github.io/webcodecs/vp8_codec_registration.html +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221017/ +Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20211216 -webcodecs-vp8-codec-registration-20211216 -16 December 2021 +d:webcodecs-flac-codec-registration-20221018 +webcodecs-flac-codec-registration-20221018 +18 October 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-vp8-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-vp8-codec-registration-20211216/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221018/ @@ -10684,13 +10709,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220126 -webcodecs-vp8-codec-registration-20220126 -26 January 2022 +d:webcodecs-flac-codec-registration-20221019 +webcodecs-flac-codec-registration-20221019 +19 October 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220126/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221019/ @@ -10698,13 +10723,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220209 -webcodecs-vp8-codec-registration-20220209 -9 February 2022 +d:webcodecs-flac-codec-registration-20221020 +webcodecs-flac-codec-registration-20221020 +20 October 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220209/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221020/ @@ -10712,27 +10737,27 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220216 -webcodecs-vp8-codec-registration-20220216 -16 February 2022 +d:webcodecs-flac-codec-registration-20221021 +webcodecs-flac-codec-registration-20221021 +21 October 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220216/ - - +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221021/ + + Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220321 -webcodecs-vp8-codec-registration-20220321 -21 March 2022 +d:webcodecs-flac-codec-registration-20221027 +webcodecs-flac-codec-registration-20221027 +27 October 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220321/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221027/ @@ -10740,13 +10765,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220504 -webcodecs-vp8-codec-registration-20220504 -4 May 2022 +d:webcodecs-flac-codec-registration-20221101 +webcodecs-flac-codec-registration-20221101 +1 November 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220504/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221101/ @@ -10754,708 +10779,663 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220524 -webcodecs-vp8-codec-registration-20220524 -24 May 2022 +d:webcodecs-flac-codec-registration-20221122 +webcodecs-flac-codec-registration-20221122 +22 November 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220524/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221122/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220802 -webcodecs-vp8-codec-registration-20220802 -2 August 2022 +d:webcodecs-flac-codec-registration-20221212 +webcodecs-flac-codec-registration-20221212 +12 December 2022 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220802/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221212/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220808 -webcodecs-vp8-codec-registration-20220808 -8 August 2022 +d:webcodecs-flac-codec-registration-20230104 +webcodecs-flac-codec-registration-20230104 +4 January 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220808/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230104/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220809 -webcodecs-vp8-codec-registration-20220809 -9 August 2022 +d:webcodecs-flac-codec-registration-20230125 +webcodecs-flac-codec-registration-20230125 +25 January 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220809/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220809/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230125/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220810 -webcodecs-vp8-codec-registration-20220810 -10 August 2022 +d:webcodecs-flac-codec-registration-20230130 +webcodecs-flac-codec-registration-20230130 +30 January 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220810/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230130/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220816 -webcodecs-vp8-codec-registration-20220816 -16 August 2022 +d:webcodecs-flac-codec-registration-20230201 +webcodecs-flac-codec-registration-20230201 +1 February 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220816/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230201/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220817 -webcodecs-vp8-codec-registration-20220817 -17 August 2022 +d:webcodecs-flac-codec-registration-20230202 +webcodecs-flac-codec-registration-20230202 +2 February 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220817/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230202/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220818 -webcodecs-vp8-codec-registration-20220818 -18 August 2022 +d:webcodecs-flac-codec-registration-20230208 +webcodecs-flac-codec-registration-20230208 +8 February 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220818/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230208/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220819 -webcodecs-vp8-codec-registration-20220819 -19 August 2022 +d:webcodecs-flac-codec-registration-20230209 +webcodecs-flac-codec-registration-20230209 +9 February 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220819/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230209/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220823 -webcodecs-vp8-codec-registration-20220823 -23 August 2022 +d:webcodecs-flac-codec-registration-20230310 +webcodecs-flac-codec-registration-20230310 +10 March 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220823/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230310/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220829 -webcodecs-vp8-codec-registration-20220829 -29 August 2022 +d:webcodecs-flac-codec-registration-20230313 +webcodecs-flac-codec-registration-20230313 +13 March 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220829/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230313/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220831 -webcodecs-vp8-codec-registration-20220831 -31 August 2022 +d:webcodecs-flac-codec-registration-20230317 +webcodecs-flac-codec-registration-20230317 +17 March 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220831/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230317/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220903 -webcodecs-vp8-codec-registration-20220903 -3 September 2022 +d:webcodecs-flac-codec-registration-20230403 +webcodecs-flac-codec-registration-20230403 +3 April 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220903/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230403/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220906 -webcodecs-vp8-codec-registration-20220906 -6 September 2022 +d:webcodecs-flac-codec-registration-20230419 +webcodecs-flac-codec-registration-20230419 +19 April 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220906/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220907 -webcodecs-vp8-codec-registration-20220907 -7 September 2022 +d:webcodecs-flac-codec-registration-20230427 +webcodecs-flac-codec-registration-20230427 +27 April 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220907/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230427/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220920 -webcodecs-vp8-codec-registration-20220920 -20 September 2022 +d:webcodecs-flac-codec-registration-20230511 +webcodecs-flac-codec-registration-20230511 +11 May 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220920/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230511/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20220928 -webcodecs-vp8-codec-registration-20220928 -28 September 2022 +d:webcodecs-flac-codec-registration-20230628 +webcodecs-flac-codec-registration-20230628 +28 June 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220928/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230628/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221003 -webcodecs-vp8-codec-registration-20221003 -3 October 2022 +d:webcodecs-flac-codec-registration-20230705 +webcodecs-flac-codec-registration-20230705 +5 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221003/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230705/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221006 -webcodecs-vp8-codec-registration-20221006 -6 October 2022 +d:webcodecs-flac-codec-registration-20230706 +webcodecs-flac-codec-registration-20230706 +6 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221006/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230706/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221010 -webcodecs-vp8-codec-registration-20221010 -10 October 2022 +d:webcodecs-flac-codec-registration-20230707 +webcodecs-flac-codec-registration-20230707 +7 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221010/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230707/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221014 -webcodecs-vp8-codec-registration-20221014 -14 October 2022 +d:webcodecs-flac-codec-registration-20230708 +webcodecs-flac-codec-registration-20230708 +8 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221014/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230708/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221017 -webcodecs-vp8-codec-registration-20221017 -17 October 2022 +d:webcodecs-flac-codec-registration-20230719 +webcodecs-flac-codec-registration-20230719 +19 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221017/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230719/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221018 -webcodecs-vp8-codec-registration-20221018 -18 October 2022 +d:webcodecs-flac-codec-registration-20230720 +webcodecs-flac-codec-registration-20230720 +20 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221018/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230720/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221019 -webcodecs-vp8-codec-registration-20221019 -19 October 2022 +d:webcodecs-flac-codec-registration-20230726 +webcodecs-flac-codec-registration-20230726 +26 July 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221019/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230726/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221020 -webcodecs-vp8-codec-registration-20221020 -20 October 2022 +d:webcodecs-flac-codec-registration-20230817 +webcodecs-flac-codec-registration-20230817 +17 August 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221020/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230817/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221021 -webcodecs-vp8-codec-registration-20221021 -21 October 2022 +d:webcodecs-flac-codec-registration-20230821 +webcodecs-flac-codec-registration-20230821 +21 August 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221021/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230821/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221027 -webcodecs-vp8-codec-registration-20221027 -27 October 2022 +d:webcodecs-flac-codec-registration-20230825 +webcodecs-flac-codec-registration-20230825 +25 August 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221027/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230825/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221101 -webcodecs-vp8-codec-registration-20221101 -1 November 2022 +d:webcodecs-flac-codec-registration-20230826 +webcodecs-flac-codec-registration-20230826 +26 August 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221101/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230826/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221122 -webcodecs-vp8-codec-registration-20221122 -22 November 2022 +d:webcodecs-flac-codec-registration-20230928 +webcodecs-flac-codec-registration-20230928 +28 September 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221122/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230928/ Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20221212 -webcodecs-vp8-codec-registration-20221212 -12 December 2022 +d:webcodecs-flac-codec-registration-20230930 +webcodecs-flac-codec-registration-20230930 +30 September 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221212/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230930/ Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20230104 -webcodecs-vp8-codec-registration-20230104 -4 January 2023 +d:webcodecs-flac-codec-registration-20231012 +webcodecs-flac-codec-registration-20231012 +12 October 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230104/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231012/ Paul Adenot Bernard Aboba - -d:webcodecs-vp8-codec-registration-20230125 -webcodecs-vp8-codec-registration-20230125 -25 January 2023 +d:webcodecs-flac-codec-registration-20231026 +webcodecs-flac-codec-registration-20231026 +26 October 2023 NOTE -VP8 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230125/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231026/ Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration -webcodecs-vp9-codec-registration -25 January 2023 +d:webcodecs-flac-codec-registration-20231028 +webcodecs-flac-codec-registration-20231028 +28 October 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/webcodecs-vp9-codec-registration/ -https://w3c.github.io/webcodecs/vp9_codec_registration.html +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231028/ Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20211216 -webcodecs-vp9-codec-registration-20211216 -16 December 2021 +d:webcodecs-flac-codec-registration-20231101 +webcodecs-flac-codec-registration-20231101 +1 November 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2021/DNOTE-webcodecs-vp9-codec-registration-20211216/ -https://www.w3.org/TR/2021/DNOTE-webcodecs-vp9-codec-registration-20211216/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231101/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220126 -webcodecs-vp9-codec-registration-20220126 -26 January 2022 +d:webcodecs-flac-codec-registration-20231102 +webcodecs-flac-codec-registration-20231102 +2 November 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220126/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220126/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231102/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220209 -webcodecs-vp9-codec-registration-20220209 -9 February 2022 +d:webcodecs-flac-codec-registration-20231103 +webcodecs-flac-codec-registration-20231103 +3 November 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220209/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220209/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231103/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220216 -webcodecs-vp9-codec-registration-20220216 -16 February 2022 +d:webcodecs-flac-codec-registration-20231123 +webcodecs-flac-codec-registration-20231123 +23 November 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220216/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220216/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231123/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220321 -webcodecs-vp9-codec-registration-20220321 -21 March 2022 +d:webcodecs-flac-codec-registration-20240108 +webcodecs-flac-codec-registration-20240108 +8 January 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220321/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220321/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240108/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220504 -webcodecs-vp9-codec-registration-20220504 -4 May 2022 +d:webcodecs-flac-codec-registration-20240206 +webcodecs-flac-codec-registration-20240206 +6 February 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220504/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220504/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240206/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220524 -webcodecs-vp9-codec-registration-20220524 -24 May 2022 +d:webcodecs-flac-codec-registration-20240319 +webcodecs-flac-codec-registration-20240319 +19 March 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220524/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220524/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240319/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220802 -webcodecs-vp9-codec-registration-20220802 -2 August 2022 +d:webcodecs-flac-codec-registration-20240408 +webcodecs-flac-codec-registration-20240408 +8 April 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220802/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220802/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240408/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220808 -webcodecs-vp9-codec-registration-20220808 -8 August 2022 +d:webcodecs-flac-codec-registration-20240419 +webcodecs-flac-codec-registration-20240419 +19 April 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220808/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220808/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240419/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220810 -webcodecs-vp9-codec-registration-20220810 -10 August 2022 +d:webcodecs-flac-codec-registration-20240503 +webcodecs-flac-codec-registration-20240503 +3 May 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220810/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220810/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240503/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220816 -webcodecs-vp9-codec-registration-20220816 -16 August 2022 +d:webcodecs-flac-codec-registration-20240508 +webcodecs-flac-codec-registration-20240508 +8 May 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220816/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220816/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240508/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220817 -webcodecs-vp9-codec-registration-20220817 -17 August 2022 +d:webcodecs-flac-codec-registration-20240520 +webcodecs-flac-codec-registration-20240520 +20 May 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220817/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220817/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240520/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220818 -webcodecs-vp9-codec-registration-20220818 -18 August 2022 +d:webcodecs-flac-codec-registration-20240614 +webcodecs-flac-codec-registration-20240614 +14 June 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220818/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220818/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240614/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220819 -webcodecs-vp9-codec-registration-20220819 -19 August 2022 +d:webcodecs-flac-codec-registration-20240704 +webcodecs-flac-codec-registration-20240704 +4 July 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220819/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220819/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240704/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220823 -webcodecs-vp9-codec-registration-20220823 -23 August 2022 +d:webcodecs-flac-codec-registration-20240711 +webcodecs-flac-codec-registration-20240711 +11 July 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220823/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220823/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240711/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220829 -webcodecs-vp9-codec-registration-20220829 -29 August 2022 +d:webcodecs-flac-codec-registration-20240717 +webcodecs-flac-codec-registration-20240717 +17 July 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220829/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220829/ +FLAC WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240717/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220831 -webcodecs-vp9-codec-registration-20220831 -31 August 2022 +d:webcodecs-hevc-codec-registration +webcodecs-hevc-codec-registration +17 July 2024 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220831/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220831/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/webcodecs-hevc-codec-registration/ +https://w3c.github.io/webcodecs/hevc_codec_registration.html -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220903 -webcodecs-vp9-codec-registration-20220903 -3 September 2022 +d:webcodecs-hevc-codec-registration-20220927 +webcodecs-hevc-codec-registration-20220927 +27 September 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220903/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220903/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20220927/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20220927/ @@ -11463,13 +11443,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220906 -webcodecs-vp9-codec-registration-20220906 -6 September 2022 +d:webcodecs-hevc-codec-registration-20221003 +webcodecs-hevc-codec-registration-20221003 +3 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220906/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220906/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221003/ @@ -11477,13 +11457,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220907 -webcodecs-vp9-codec-registration-20220907 -7 September 2022 +d:webcodecs-hevc-codec-registration-20221006 +webcodecs-hevc-codec-registration-20221006 +6 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220907/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220907/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221006/ @@ -11491,13 +11471,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220920 -webcodecs-vp9-codec-registration-20220920 -20 September 2022 +d:webcodecs-hevc-codec-registration-20221010 +webcodecs-hevc-codec-registration-20221010 +10 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220920/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220920/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221010/ @@ -11505,13 +11485,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20220928 -webcodecs-vp9-codec-registration-20220928 -28 September 2022 +d:webcodecs-hevc-codec-registration-20221014 +webcodecs-hevc-codec-registration-20221014 +14 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220928/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220928/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221014/ @@ -11519,13 +11499,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221003 -webcodecs-vp9-codec-registration-20221003 -3 October 2022 -NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221003/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221003/ +d:webcodecs-hevc-codec-registration-20221017 +webcodecs-hevc-codec-registration-20221017 +17 October 2022 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221017/ @@ -11533,13 +11513,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221006 -webcodecs-vp9-codec-registration-20221006 -6 October 2022 +d:webcodecs-hevc-codec-registration-20221018 +webcodecs-hevc-codec-registration-20221018 +18 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221006/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221006/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221018/ @@ -11547,13 +11527,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221010 -webcodecs-vp9-codec-registration-20221010 -10 October 2022 +d:webcodecs-hevc-codec-registration-20221019 +webcodecs-hevc-codec-registration-20221019 +19 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221010/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221010/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221019/ @@ -11561,13 +11541,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221014 -webcodecs-vp9-codec-registration-20221014 -14 October 2022 +d:webcodecs-hevc-codec-registration-20221020 +webcodecs-hevc-codec-registration-20221020 +20 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221014/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221014/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221020/ @@ -11575,13 +11555,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221017 -webcodecs-vp9-codec-registration-20221017 -17 October 2022 +d:webcodecs-hevc-codec-registration-20221021 +webcodecs-hevc-codec-registration-20221021 +21 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221017/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221017/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221021/ @@ -11589,13 +11569,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221018 -webcodecs-vp9-codec-registration-20221018 -18 October 2022 +d:webcodecs-hevc-codec-registration-20221027 +webcodecs-hevc-codec-registration-20221027 +27 October 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221018/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221018/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221027/ @@ -11603,13 +11583,13 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221019 -webcodecs-vp9-codec-registration-20221019 -19 October 2022 +d:webcodecs-hevc-codec-registration-20221101 +webcodecs-hevc-codec-registration-20221101 +1 November 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221019/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221019/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221101/ @@ -11617,6085 +11597,17317 @@ Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221020 -webcodecs-vp9-codec-registration-20221020 -20 October 2022 +d:webcodecs-hevc-codec-registration-20221122 +webcodecs-hevc-codec-registration-20221122 +22 November 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221020/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221020/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221122/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221021 -webcodecs-vp9-codec-registration-20221021 -21 October 2022 +d:webcodecs-hevc-codec-registration-20221212 +webcodecs-hevc-codec-registration-20221212 +12 December 2022 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221021/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221021/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221212/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221027 -webcodecs-vp9-codec-registration-20221027 -27 October 2022 +d:webcodecs-hevc-codec-registration-20230104 +webcodecs-hevc-codec-registration-20230104 +4 January 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221027/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221027/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230104/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221101 -webcodecs-vp9-codec-registration-20221101 -1 November 2022 +d:webcodecs-hevc-codec-registration-20230125 +webcodecs-hevc-codec-registration-20230125 +25 January 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221101/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221101/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230125/ -Chris Cunningham Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221122 -webcodecs-vp9-codec-registration-20221122 -22 November 2022 +d:webcodecs-hevc-codec-registration-20230130 +webcodecs-hevc-codec-registration-20230130 +30 January 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221122/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221122/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230130/ Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20221212 -webcodecs-vp9-codec-registration-20221212 -12 December 2022 +d:webcodecs-hevc-codec-registration-20230201 +webcodecs-hevc-codec-registration-20230201 +1 February 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221212/ -https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221212/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230201/ Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20230104 -webcodecs-vp9-codec-registration-20230104 -4 January 2023 +d:webcodecs-hevc-codec-registration-20230202 +webcodecs-hevc-codec-registration-20230202 +2 February 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230104/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230104/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230202/ Paul Adenot Bernard Aboba - -d:webcodecs-vp9-codec-registration-20230125 -webcodecs-vp9-codec-registration-20230125 -25 January 2023 +d:webcodecs-hevc-codec-registration-20230208 +webcodecs-hevc-codec-registration-20230208 +8 February 2023 NOTE -VP9 WebCodecs Registration -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230125/ -https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230125/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230208/ Paul Adenot Bernard Aboba - -a:webcontent -WEBCONTENT -WCAG -- -a:webcontent-0203 -WEBCONTENT-0203 -WAI-WEBCONTENT-0203 -- -a:webcontent-0414 -WEBCONTENT-0414 -WAI-WEBCONTENT-0414 -- -a:webcontent-19980203 -WEBCONTENT-19980203 -WAI-WEBCONTENT-19980203 -- -a:webcontent-19980414 -WEBCONTENT-19980414 -WAI-WEBCONTENT-19980414 -- -a:webcontent-19980918 -WEBCONTENT-19980918 -WAI-WEBCONTENT-19980918 -- -a:webcontent-19990115 -WEBCONTENT-19990115 -WAI-WEBCONTENT-19990115 -- -a:webcontent-19990217 -WEBCONTENT-19990217 -WAI-WEBCONTENT-19990217 -- -a:webcontent-19990226 -WEBCONTENT-19990226 -WAI-WEBCONTENT-19990226 -- -a:webcontent-19990324 -WEBCONTENT-19990324 -WAI-WEBCONTENT-19990324 -- -a:webcontent-19990505 -WEBCONTENT-19990505 -WAI-WEBCONTENT-19990505 -- -d:webcrypto-key-discovery -webcrypto-key-discovery -29 March 2016 +d:webcodecs-hevc-codec-registration-20230209 +webcodecs-hevc-codec-registration-20230209 +9 February 2023 NOTE -WebCrypto Key Discovery -https://www.w3.org/TR/webcrypto-key-discovery/ -https://dvcs.w3.org/hg/webcrypto-keydiscovery/raw-file/tip/Overview.html +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230209/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcrypto-key-discovery-20130108 -webcrypto-key-discovery-20130108 -8 January 2013 -WD -WebCrypto Key Discovery -https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130108/ -https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130108/ +d:webcodecs-hevc-codec-registration-20230310 +webcodecs-hevc-codec-registration-20230310 +10 March 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230310/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcrypto-key-discovery-20130822 -webcrypto-key-discovery-20130822 -22 August 2013 -WD -WebCrypto Key Discovery -https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130822/ -https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130822/ +d:webcodecs-hevc-codec-registration-20230313 +webcodecs-hevc-codec-registration-20230313 +13 March 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230313/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcrypto-key-discovery-20160329 -webcrypto-key-discovery-20160329 -29 March 2016 +d:webcodecs-hevc-codec-registration-20230317 +webcodecs-hevc-codec-registration-20230317 +17 March 2023 NOTE -WebCrypto Key Discovery -https://www.w3.org/TR/2016/NOTE-webcrypto-key-discovery-20160329/ -https://www.w3.org/TR/2016/NOTE-webcrypto-key-discovery-20160329/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230317/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcrypto-usecases -webcrypto-usecases -10 September 2013 +d:webcodecs-hevc-codec-registration-20230403 +webcodecs-hevc-codec-registration-20230403 +3 April 2023 NOTE -Web Cryptography API Use Cases -https://www.w3.org/TR/webcrypto-usecases/ -https://dvcs.w3.org/hg/webcrypto-usecases/raw-file/tip/Overview.html +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230403/ -Arun Ranganathan +Paul Adenot +Bernard Aboba - -d:webcrypto-usecases-20130108 -webcrypto-usecases-20130108 -8 January 2013 -WD -Web Cryptography API Use Cases -https://www.w3.org/TR/2013/WD-webcrypto-usecases-20130108/ -https://www.w3.org/TR/2013/WD-webcrypto-usecases-20130108/ +d:webcodecs-hevc-codec-registration-20230419 +webcodecs-hevc-codec-registration-20230419 +19 April 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230419/ -Arun Ranganathan +Paul Adenot +Bernard Aboba - -d:webcrypto-usecases-20130910 -webcrypto-usecases-20130910 -10 September 2013 +d:webcodecs-hevc-codec-registration-20230427 +webcodecs-hevc-codec-registration-20230427 +27 April 2023 NOTE -Web Cryptography API Use Cases -https://www.w3.org/TR/2013/NOTE-webcrypto-usecases-20130910/ -https://www.w3.org/TR/2013/NOTE-webcrypto-usecases-20130910/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230427/ -Arun Ranganathan +Paul Adenot +Bernard Aboba - -d:webcryptoapi -WebCryptoAPI -26 January 2017 -REC -Web Cryptography API -https://www.w3.org/TR/WebCryptoAPI/ -https://w3c.github.io/webcrypto/ +d:webcodecs-hevc-codec-registration-20230511 +webcodecs-hevc-codec-registration-20230511 +11 May 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230511/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20120913 -WebCryptoAPI-20120913 -13 September 2012 -WD -Web Cryptography API -https://www.w3.org/TR/2012/WD-WebCryptoAPI-20120913/ -https://www.w3.org/TR/2012/WD-WebCryptoAPI-20120913/ +d:webcodecs-hevc-codec-registration-20230628 +webcodecs-hevc-codec-registration-20230628 +28 June 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230628/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20130108 -WebCryptoAPI-20130108 -8 January 2013 -WD -Web Cryptography API -https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130108/ -https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130108/ +d:webcodecs-hevc-codec-registration-20230705 +webcodecs-hevc-codec-registration-20230705 +5 July 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230705/ -David Dahl -Ryan Sleevi +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20130625 -WebCryptoAPI-20130625 -25 June 2013 -WD -Web Cryptography API -https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130625/ -https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130625/ +d:webcodecs-hevc-codec-registration-20230706 +webcodecs-hevc-codec-registration-20230706 +6 July 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230706/ -David Dahl -Ryan Sleevi +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20140325 -WebCryptoAPI-20140325 -25 March 2014 -LCWD -Web Cryptography API -https://www.w3.org/TR/2014/WD-WebCryptoAPI-20140325/ -https://www.w3.org/TR/2014/WD-WebCryptoAPI-20140325/ +d:webcodecs-hevc-codec-registration-20230707 +webcodecs-hevc-codec-registration-20230707 +7 July 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230707/ -Ryan Sleevi -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20141211 -WebCryptoAPI-20141211 -11 December 2014 -CR -Web Cryptography API -https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/ -https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/ +d:webcodecs-hevc-codec-registration-20230708 +webcodecs-hevc-codec-registration-20230708 +8 July 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230708/ -Ryan Sleevi -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20161215 -WebCryptoAPI-20161215 -15 December 2016 -PR -Web Cryptography API -https://www.w3.org/TR/2016/PR-WebCryptoAPI-20161215/ -https://www.w3.org/TR/2016/PR-WebCryptoAPI-20161215/ +d:webcodecs-hevc-codec-registration-20230719 +webcodecs-hevc-codec-registration-20230719 +19 July 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230719/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webcryptoapi-20170126 -WebCryptoAPI-20170126 -26 January 2017 -REC -Web Cryptography API -https://www.w3.org/TR/2017/REC-WebCryptoAPI-20170126/ -https://www.w3.org/TR/2017/REC-WebCryptoAPI-20170126/ +d:webcodecs-hevc-codec-registration-20230720 +webcodecs-hevc-codec-registration-20230720 +20 July 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230720/ -Mark Watson +Paul Adenot +Bernard Aboba - -d:webdatabase -webdatabase -18 November 2010 +d:webcodecs-hevc-codec-registration-20230726 +webcodecs-hevc-codec-registration-20230726 +26 July 2023 NOTE -Web SQL Database -https://www.w3.org/TR/webdatabase/ - +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230726/ -Ian Hickson +Paul Adenot +Bernard Aboba - -d:webdatabase-20090910 -webdatabase-20090910 -10 September 2009 -WD -Web SQL Database -https://www.w3.org/TR/2009/WD-webdatabase-20090910/ -https://www.w3.org/TR/2009/WD-webdatabase-20090910/ +d:webcodecs-hevc-codec-registration-20230817 +webcodecs-hevc-codec-registration-20230817 +17 August 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230817/ -Ian Hickson +Paul Adenot +Bernard Aboba - -d:webdatabase-20091029 -webdatabase-20091029 -29 October 2009 -WD -Web SQL Database -https://www.w3.org/TR/2009/WD-webdatabase-20091029/ -https://www.w3.org/TR/2009/WD-webdatabase-20091029/ +d:webcodecs-hevc-codec-registration-20230821 +webcodecs-hevc-codec-registration-20230821 +21 August 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230821/ -Ian Hickson +Paul Adenot +Bernard Aboba - -d:webdatabase-20091222 -webdatabase-20091222 -22 December 2009 -WD -Web SQL Database -https://www.w3.org/TR/2009/WD-webdatabase-20091222/ -https://www.w3.org/TR/2009/WD-webdatabase-20091222/ +d:webcodecs-hevc-codec-registration-20230825 +webcodecs-hevc-codec-registration-20230825 +25 August 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230825/ -Ian Hickson +Paul Adenot +Bernard Aboba - -d:webdatabase-20101118 -webdatabase-20101118 -18 November 2010 +d:webcodecs-hevc-codec-registration-20230826 +webcodecs-hevc-codec-registration-20230826 +26 August 2023 NOTE -Web SQL Database -https://www.w3.org/TR/2010/NOTE-webdatabase-20101118/ -https://www.w3.org/TR/2010/NOTE-webdatabase-20101118/ +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230826/ -Ian Hickson -- -a:webdriver -webdriver -webdriver1 +Paul Adenot +Bernard Aboba - -a:webdriver-20120710 -webdriver-20120710 -webdriver1-20120710 +d:webcodecs-hevc-codec-registration-20230928 +webcodecs-hevc-codec-registration-20230928 +28 September 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20130117 -webdriver-20130117 -webdriver1-20130117 +d:webcodecs-hevc-codec-registration-20230930 +webcodecs-hevc-codec-registration-20230930 +30 September 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20130312 -webdriver-20130312 -webdriver1-20130312 +d:webcodecs-hevc-codec-registration-20231012 +webcodecs-hevc-codec-registration-20231012 +12 October 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150803 -webdriver-20150803 -webdriver1-20150803 +d:webcodecs-hevc-codec-registration-20231026 +webcodecs-hevc-codec-registration-20231026 +26 October 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150808 -webdriver-20150808 -webdriver1-20150808 +d:webcodecs-hevc-codec-registration-20231028 +webcodecs-hevc-codec-registration-20231028 +28 October 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150827 -webdriver-20150827 -webdriver1-20150827 +d:webcodecs-hevc-codec-registration-20231101 +webcodecs-hevc-codec-registration-20231101 +1 November 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150902 -webdriver-20150902 -webdriver1-20150902 +d:webcodecs-hevc-codec-registration-20231102 +webcodecs-hevc-codec-registration-20231102 +2 November 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150909 -webdriver-20150909 -webdriver1-20150909 -- -a:webdriver-20150915 -webdriver-20150915 -webdriver1-20150915 +d:webcodecs-hevc-codec-registration-20231103 +webcodecs-hevc-codec-registration-20231103 +3 November 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150918 -webdriver-20150918 -webdriver1-20150918 +d:webcodecs-hevc-codec-registration-20231123 +webcodecs-hevc-codec-registration-20231123 +23 November 2023 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20150921 -webdriver-20150921 -webdriver1-20150921 +d:webcodecs-hevc-codec-registration-20240108 +webcodecs-hevc-codec-registration-20240108 +8 January 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20151025 -webdriver-20151025 -webdriver1-20151025 +d:webcodecs-hevc-codec-registration-20240206 +webcodecs-hevc-codec-registration-20240206 +6 February 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20151109 -webdriver-20151109 -webdriver1-20151109 +d:webcodecs-hevc-codec-registration-20240319 +webcodecs-hevc-codec-registration-20240319 +19 March 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20160120 -webdriver-20160120 -webdriver1-20160120 +d:webcodecs-hevc-codec-registration-20240408 +webcodecs-hevc-codec-registration-20240408 +8 April 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20160406 -webdriver-20160406 -webdriver1-20160406 +d:webcodecs-hevc-codec-registration-20240419 +webcodecs-hevc-codec-registration-20240419 +19 April 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20160426 -webdriver-20160426 -webdriver1-20160426 +d:webcodecs-hevc-codec-registration-20240503 +webcodecs-hevc-codec-registration-20240503 +3 May 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20160523 -webdriver-20160523 -webdriver1-20160523 +d:webcodecs-hevc-codec-registration-20240508 +webcodecs-hevc-codec-registration-20240508 +8 May 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20160830 -webdriver-20160830 -webdriver1-20160830 +d:webcodecs-hevc-codec-registration-20240520 +webcodecs-hevc-codec-registration-20240520 +20 May 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20161013 -webdriver-20161013 -webdriver1-20161013 +d:webcodecs-hevc-codec-registration-20240614 +webcodecs-hevc-codec-registration-20240614 +14 June 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20161019 -webdriver-20161019 -webdriver1-20161019 +d:webcodecs-hevc-codec-registration-20240704 +webcodecs-hevc-codec-registration-20240704 +4 July 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20161021 -webdriver-20161021 -webdriver1-20161021 +d:webcodecs-hevc-codec-registration-20240711 +webcodecs-hevc-codec-registration-20240711 +11 July 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20161025 -webdriver-20161025 -webdriver1-20161025 +d:webcodecs-hevc-codec-registration-20240717 +webcodecs-hevc-codec-registration-20240717 +17 July 2024 +NOTE +HEVC (H.265) WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20161031 -webdriver-20161031 -webdriver1-20161031 +d:webcodecs-mp3-codec-registration +webcodecs-mp3-codec-registration +17 July 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/webcodecs-mp3-codec-registration/ +https://w3c.github.io/webcodecs/mp3_codec_registration.html + + + +Paul Adenot +Bernard Aboba - -a:webdriver-20161116 -webdriver-20161116 -webdriver1-20161116 +d:webcodecs-mp3-codec-registration-20211216 +webcodecs-mp3-codec-registration-20211216 +16 December 2021 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-mp3-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-mp3-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba - -a:webdriver-20161129 -webdriver-20161129 -webdriver1-20161129 +d:webcodecs-mp3-codec-registration-20220126 +webcodecs-mp3-codec-registration-20220126 +26 January 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba - -a:webdriver-20170105 -webdriver-20170105 -webdriver1-20170105 +d:webcodecs-mp3-codec-registration-20220209 +webcodecs-mp3-codec-registration-20220209 +9 February 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba - -a:webdriver-20170110 -webdriver-20170110 -webdriver1-20170110 +d:webcodecs-mp3-codec-registration-20220216 +webcodecs-mp3-codec-registration-20220216 +16 February 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba - -a:webdriver-20170111 -webdriver-20170111 -webdriver1-20170111 +d:webcodecs-mp3-codec-registration-20220321 +webcodecs-mp3-codec-registration-20220321 +21 March 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba - -a:webdriver-20170112 -webdriver-20170112 -webdriver1-20170112 +d:webcodecs-mp3-codec-registration-20220504 +webcodecs-mp3-codec-registration-20220504 +4 May 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba - -a:webdriver-20170113 -webdriver-20170113 +d:webcodecs-mp3-codec-registration-20220524 +webcodecs-mp3-codec-registration-20220524 +24 May 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220802 +webcodecs-mp3-codec-registration-20220802 +2 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220808 +webcodecs-mp3-codec-registration-20220808 +8 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220809 +webcodecs-mp3-codec-registration-20220809 +9 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220809/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220810 +webcodecs-mp3-codec-registration-20220810 +10 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220816 +webcodecs-mp3-codec-registration-20220816 +16 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220817 +webcodecs-mp3-codec-registration-20220817 +17 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220818 +webcodecs-mp3-codec-registration-20220818 +18 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220819 +webcodecs-mp3-codec-registration-20220819 +19 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220823 +webcodecs-mp3-codec-registration-20220823 +23 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220829 +webcodecs-mp3-codec-registration-20220829 +29 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220831 +webcodecs-mp3-codec-registration-20220831 +31 August 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220903 +webcodecs-mp3-codec-registration-20220903 +3 September 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220906 +webcodecs-mp3-codec-registration-20220906 +6 September 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220907 +webcodecs-mp3-codec-registration-20220907 +7 September 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220919 +webcodecs-mp3-codec-registration-20220919 +19 September 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220919/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220919/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20220928 +webcodecs-mp3-codec-registration-20220928 +28 September 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221003 +webcodecs-mp3-codec-registration-20221003 +3 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221006 +webcodecs-mp3-codec-registration-20221006 +6 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221010 +webcodecs-mp3-codec-registration-20221010 +10 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221014 +webcodecs-mp3-codec-registration-20221014 +14 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221017 +webcodecs-mp3-codec-registration-20221017 +17 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221018 +webcodecs-mp3-codec-registration-20221018 +18 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221019 +webcodecs-mp3-codec-registration-20221019 +19 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221020 +webcodecs-mp3-codec-registration-20221020 +20 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221021 +webcodecs-mp3-codec-registration-20221021 +21 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221027 +webcodecs-mp3-codec-registration-20221027 +27 October 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221101 +webcodecs-mp3-codec-registration-20221101 +1 November 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221122 +webcodecs-mp3-codec-registration-20221122 +22 November 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20221212 +webcodecs-mp3-codec-registration-20221212 +12 December 2022 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230104 +webcodecs-mp3-codec-registration-20230104 +4 January 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230125 +webcodecs-mp3-codec-registration-20230125 +25 January 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230130 +webcodecs-mp3-codec-registration-20230130 +30 January 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230201 +webcodecs-mp3-codec-registration-20230201 +1 February 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230202 +webcodecs-mp3-codec-registration-20230202 +2 February 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230208 +webcodecs-mp3-codec-registration-20230208 +8 February 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230209 +webcodecs-mp3-codec-registration-20230209 +9 February 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230310 +webcodecs-mp3-codec-registration-20230310 +10 March 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230313 +webcodecs-mp3-codec-registration-20230313 +13 March 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230317 +webcodecs-mp3-codec-registration-20230317 +17 March 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230403 +webcodecs-mp3-codec-registration-20230403 +3 April 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230419 +webcodecs-mp3-codec-registration-20230419 +19 April 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230427 +webcodecs-mp3-codec-registration-20230427 +27 April 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230511 +webcodecs-mp3-codec-registration-20230511 +11 May 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230628 +webcodecs-mp3-codec-registration-20230628 +28 June 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230705 +webcodecs-mp3-codec-registration-20230705 +5 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230706 +webcodecs-mp3-codec-registration-20230706 +6 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230707 +webcodecs-mp3-codec-registration-20230707 +7 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230708 +webcodecs-mp3-codec-registration-20230708 +8 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230719 +webcodecs-mp3-codec-registration-20230719 +19 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230720 +webcodecs-mp3-codec-registration-20230720 +20 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230726 +webcodecs-mp3-codec-registration-20230726 +26 July 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230817 +webcodecs-mp3-codec-registration-20230817 +17 August 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230821 +webcodecs-mp3-codec-registration-20230821 +21 August 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230825 +webcodecs-mp3-codec-registration-20230825 +25 August 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230826 +webcodecs-mp3-codec-registration-20230826 +26 August 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230928 +webcodecs-mp3-codec-registration-20230928 +28 September 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20230930 +webcodecs-mp3-codec-registration-20230930 +30 September 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231012 +webcodecs-mp3-codec-registration-20231012 +12 October 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231026 +webcodecs-mp3-codec-registration-20231026 +26 October 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231028 +webcodecs-mp3-codec-registration-20231028 +28 October 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231101 +webcodecs-mp3-codec-registration-20231101 +1 November 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231102 +webcodecs-mp3-codec-registration-20231102 +2 November 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231103 +webcodecs-mp3-codec-registration-20231103 +3 November 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20231123 +webcodecs-mp3-codec-registration-20231123 +23 November 2023 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240108 +webcodecs-mp3-codec-registration-20240108 +8 January 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240206 +webcodecs-mp3-codec-registration-20240206 +6 February 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240319 +webcodecs-mp3-codec-registration-20240319 +19 March 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240408 +webcodecs-mp3-codec-registration-20240408 +8 April 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240419 +webcodecs-mp3-codec-registration-20240419 +19 April 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240503 +webcodecs-mp3-codec-registration-20240503 +3 May 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240508 +webcodecs-mp3-codec-registration-20240508 +8 May 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240520 +webcodecs-mp3-codec-registration-20240520 +20 May 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240614 +webcodecs-mp3-codec-registration-20240614 +14 June 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240704 +webcodecs-mp3-codec-registration-20240704 +4 July 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240711 +webcodecs-mp3-codec-registration-20240711 +11 July 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-mp3-codec-registration-20240717 +webcodecs-mp3-codec-registration-20240717 +17 July 2024 +NOTE +MP3 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration +webcodecs-opus-codec-registration +17 July 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/webcodecs-opus-codec-registration/ +https://w3c.github.io/webcodecs/opus_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20211216 +webcodecs-opus-codec-registration-20211216 +16 December 2021 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-opus-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-opus-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220126 +webcodecs-opus-codec-registration-20220126 +26 January 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220209 +webcodecs-opus-codec-registration-20220209 +9 February 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220216 +webcodecs-opus-codec-registration-20220216 +16 February 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220321 +webcodecs-opus-codec-registration-20220321 +21 March 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220504 +webcodecs-opus-codec-registration-20220504 +4 May 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220524 +webcodecs-opus-codec-registration-20220524 +24 May 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220802 +webcodecs-opus-codec-registration-20220802 +2 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220808 +webcodecs-opus-codec-registration-20220808 +8 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220809 +webcodecs-opus-codec-registration-20220809 +9 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220809/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220810 +webcodecs-opus-codec-registration-20220810 +10 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220816 +webcodecs-opus-codec-registration-20220816 +16 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220817 +webcodecs-opus-codec-registration-20220817 +17 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220818 +webcodecs-opus-codec-registration-20220818 +18 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220819 +webcodecs-opus-codec-registration-20220819 +19 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220823 +webcodecs-opus-codec-registration-20220823 +23 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220829 +webcodecs-opus-codec-registration-20220829 +29 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220831 +webcodecs-opus-codec-registration-20220831 +31 August 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220903 +webcodecs-opus-codec-registration-20220903 +3 September 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220906 +webcodecs-opus-codec-registration-20220906 +6 September 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220907 +webcodecs-opus-codec-registration-20220907 +7 September 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220920 +webcodecs-opus-codec-registration-20220920 +20 September 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220920/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20220928 +webcodecs-opus-codec-registration-20220928 +28 September 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221003 +webcodecs-opus-codec-registration-20221003 +3 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221006 +webcodecs-opus-codec-registration-20221006 +6 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221010 +webcodecs-opus-codec-registration-20221010 +10 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221014 +webcodecs-opus-codec-registration-20221014 +14 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221017 +webcodecs-opus-codec-registration-20221017 +17 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221018 +webcodecs-opus-codec-registration-20221018 +18 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221019 +webcodecs-opus-codec-registration-20221019 +19 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221020 +webcodecs-opus-codec-registration-20221020 +20 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221021 +webcodecs-opus-codec-registration-20221021 +21 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221027 +webcodecs-opus-codec-registration-20221027 +27 October 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221101 +webcodecs-opus-codec-registration-20221101 +1 November 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221122 +webcodecs-opus-codec-registration-20221122 +22 November 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20221212 +webcodecs-opus-codec-registration-20221212 +12 December 2022 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230104 +webcodecs-opus-codec-registration-20230104 +4 January 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230125 +webcodecs-opus-codec-registration-20230125 +25 January 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230130 +webcodecs-opus-codec-registration-20230130 +30 January 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230201 +webcodecs-opus-codec-registration-20230201 +1 February 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230202 +webcodecs-opus-codec-registration-20230202 +2 February 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230208 +webcodecs-opus-codec-registration-20230208 +8 February 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230209 +webcodecs-opus-codec-registration-20230209 +9 February 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230310 +webcodecs-opus-codec-registration-20230310 +10 March 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230313 +webcodecs-opus-codec-registration-20230313 +13 March 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230317 +webcodecs-opus-codec-registration-20230317 +17 March 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230403 +webcodecs-opus-codec-registration-20230403 +3 April 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230419 +webcodecs-opus-codec-registration-20230419 +19 April 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230427 +webcodecs-opus-codec-registration-20230427 +27 April 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230511 +webcodecs-opus-codec-registration-20230511 +11 May 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230628 +webcodecs-opus-codec-registration-20230628 +28 June 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230705 +webcodecs-opus-codec-registration-20230705 +5 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230706 +webcodecs-opus-codec-registration-20230706 +6 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230707 +webcodecs-opus-codec-registration-20230707 +7 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230708 +webcodecs-opus-codec-registration-20230708 +8 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230719 +webcodecs-opus-codec-registration-20230719 +19 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230720 +webcodecs-opus-codec-registration-20230720 +20 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230726 +webcodecs-opus-codec-registration-20230726 +26 July 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230817 +webcodecs-opus-codec-registration-20230817 +17 August 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230821 +webcodecs-opus-codec-registration-20230821 +21 August 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230825 +webcodecs-opus-codec-registration-20230825 +25 August 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230826 +webcodecs-opus-codec-registration-20230826 +26 August 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230928 +webcodecs-opus-codec-registration-20230928 +28 September 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20230930 +webcodecs-opus-codec-registration-20230930 +30 September 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231012 +webcodecs-opus-codec-registration-20231012 +12 October 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231026 +webcodecs-opus-codec-registration-20231026 +26 October 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231028 +webcodecs-opus-codec-registration-20231028 +28 October 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231101 +webcodecs-opus-codec-registration-20231101 +1 November 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231102 +webcodecs-opus-codec-registration-20231102 +2 November 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231103 +webcodecs-opus-codec-registration-20231103 +3 November 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20231123 +webcodecs-opus-codec-registration-20231123 +23 November 2023 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240108 +webcodecs-opus-codec-registration-20240108 +8 January 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240206 +webcodecs-opus-codec-registration-20240206 +6 February 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240319 +webcodecs-opus-codec-registration-20240319 +19 March 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240408 +webcodecs-opus-codec-registration-20240408 +8 April 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240419 +webcodecs-opus-codec-registration-20240419 +19 April 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240503 +webcodecs-opus-codec-registration-20240503 +3 May 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240508 +webcodecs-opus-codec-registration-20240508 +8 May 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240520 +webcodecs-opus-codec-registration-20240520 +20 May 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240614 +webcodecs-opus-codec-registration-20240614 +14 June 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240704 +webcodecs-opus-codec-registration-20240704 +4 July 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-opus-codec-registration-20240717 +webcodecs-opus-codec-registration-20240717 +17 July 2024 +NOTE +Opus WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration +webcodecs-pcm-codec-registration +17 July 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/webcodecs-pcm-codec-registration/ +https://w3c.github.io/webcodecs/pcm_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20211216 +webcodecs-pcm-codec-registration-20211216 +16 December 2021 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-pcm-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-pcm-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220126 +webcodecs-pcm-codec-registration-20220126 +26 January 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220209 +webcodecs-pcm-codec-registration-20220209 +9 February 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220216 +webcodecs-pcm-codec-registration-20220216 +16 February 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220321 +webcodecs-pcm-codec-registration-20220321 +21 March 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220504 +webcodecs-pcm-codec-registration-20220504 +4 May 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220524 +webcodecs-pcm-codec-registration-20220524 +24 May 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220802 +webcodecs-pcm-codec-registration-20220802 +2 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220808 +webcodecs-pcm-codec-registration-20220808 +8 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220809 +webcodecs-pcm-codec-registration-20220809 +9 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220809/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220810 +webcodecs-pcm-codec-registration-20220810 +10 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220816 +webcodecs-pcm-codec-registration-20220816 +16 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220817 +webcodecs-pcm-codec-registration-20220817 +17 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220818 +webcodecs-pcm-codec-registration-20220818 +18 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220819 +webcodecs-pcm-codec-registration-20220819 +19 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220823 +webcodecs-pcm-codec-registration-20220823 +23 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220829 +webcodecs-pcm-codec-registration-20220829 +29 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220831 +webcodecs-pcm-codec-registration-20220831 +31 August 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220903 +webcodecs-pcm-codec-registration-20220903 +3 September 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220906 +webcodecs-pcm-codec-registration-20220906 +6 September 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220907 +webcodecs-pcm-codec-registration-20220907 +7 September 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220920 +webcodecs-pcm-codec-registration-20220920 +20 September 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220920/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20220928 +webcodecs-pcm-codec-registration-20220928 +28 September 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221003 +webcodecs-pcm-codec-registration-20221003 +3 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221006 +webcodecs-pcm-codec-registration-20221006 +6 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221010 +webcodecs-pcm-codec-registration-20221010 +10 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221014 +webcodecs-pcm-codec-registration-20221014 +14 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221017 +webcodecs-pcm-codec-registration-20221017 +17 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221018 +webcodecs-pcm-codec-registration-20221018 +18 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221019 +webcodecs-pcm-codec-registration-20221019 +19 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221020 +webcodecs-pcm-codec-registration-20221020 +20 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221021 +webcodecs-pcm-codec-registration-20221021 +21 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221027 +webcodecs-pcm-codec-registration-20221027 +27 October 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221101 +webcodecs-pcm-codec-registration-20221101 +1 November 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221122 +webcodecs-pcm-codec-registration-20221122 +22 November 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20221212 +webcodecs-pcm-codec-registration-20221212 +12 December 2022 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230104 +webcodecs-pcm-codec-registration-20230104 +4 January 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230125 +webcodecs-pcm-codec-registration-20230125 +25 January 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230130 +webcodecs-pcm-codec-registration-20230130 +30 January 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230201 +webcodecs-pcm-codec-registration-20230201 +1 February 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230202 +webcodecs-pcm-codec-registration-20230202 +2 February 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230208 +webcodecs-pcm-codec-registration-20230208 +8 February 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230209 +webcodecs-pcm-codec-registration-20230209 +9 February 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230310 +webcodecs-pcm-codec-registration-20230310 +10 March 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230313 +webcodecs-pcm-codec-registration-20230313 +13 March 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230317 +webcodecs-pcm-codec-registration-20230317 +17 March 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230403 +webcodecs-pcm-codec-registration-20230403 +3 April 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230419 +webcodecs-pcm-codec-registration-20230419 +19 April 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230427 +webcodecs-pcm-codec-registration-20230427 +27 April 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230511 +webcodecs-pcm-codec-registration-20230511 +11 May 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230628 +webcodecs-pcm-codec-registration-20230628 +28 June 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230705 +webcodecs-pcm-codec-registration-20230705 +5 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230706 +webcodecs-pcm-codec-registration-20230706 +6 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230707 +webcodecs-pcm-codec-registration-20230707 +7 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230708 +webcodecs-pcm-codec-registration-20230708 +8 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230719 +webcodecs-pcm-codec-registration-20230719 +19 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230720 +webcodecs-pcm-codec-registration-20230720 +20 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230726 +webcodecs-pcm-codec-registration-20230726 +26 July 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230817 +webcodecs-pcm-codec-registration-20230817 +17 August 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230821 +webcodecs-pcm-codec-registration-20230821 +21 August 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230825 +webcodecs-pcm-codec-registration-20230825 +25 August 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230826 +webcodecs-pcm-codec-registration-20230826 +26 August 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230928 +webcodecs-pcm-codec-registration-20230928 +28 September 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20230930 +webcodecs-pcm-codec-registration-20230930 +30 September 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231012 +webcodecs-pcm-codec-registration-20231012 +12 October 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231026 +webcodecs-pcm-codec-registration-20231026 +26 October 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231028 +webcodecs-pcm-codec-registration-20231028 +28 October 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231101 +webcodecs-pcm-codec-registration-20231101 +1 November 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231102 +webcodecs-pcm-codec-registration-20231102 +2 November 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231103 +webcodecs-pcm-codec-registration-20231103 +3 November 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20231123 +webcodecs-pcm-codec-registration-20231123 +23 November 2023 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240108 +webcodecs-pcm-codec-registration-20240108 +8 January 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240206 +webcodecs-pcm-codec-registration-20240206 +6 February 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240319 +webcodecs-pcm-codec-registration-20240319 +19 March 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240408 +webcodecs-pcm-codec-registration-20240408 +8 April 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240419 +webcodecs-pcm-codec-registration-20240419 +19 April 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240503 +webcodecs-pcm-codec-registration-20240503 +3 May 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240508 +webcodecs-pcm-codec-registration-20240508 +8 May 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240520 +webcodecs-pcm-codec-registration-20240520 +20 May 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240614 +webcodecs-pcm-codec-registration-20240614 +14 June 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240704 +webcodecs-pcm-codec-registration-20240704 +4 July 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240711 +webcodecs-pcm-codec-registration-20240711 +11 July 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-pcm-codec-registration-20240717 +webcodecs-pcm-codec-registration-20240717 +17 July 2024 +NOTE +Linear PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration +webcodecs-ulaw-codec-registration +17 July 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/webcodecs-ulaw-codec-registration/ +https://w3c.github.io/webcodecs/ulaw_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20211216 +webcodecs-ulaw-codec-registration-20211216 +16 December 2021 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-ulaw-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-ulaw-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220126 +webcodecs-ulaw-codec-registration-20220126 +26 January 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220209 +webcodecs-ulaw-codec-registration-20220209 +9 February 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220216 +webcodecs-ulaw-codec-registration-20220216 +16 February 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220321 +webcodecs-ulaw-codec-registration-20220321 +21 March 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220504 +webcodecs-ulaw-codec-registration-20220504 +4 May 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220524 +webcodecs-ulaw-codec-registration-20220524 +24 May 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220802 +webcodecs-ulaw-codec-registration-20220802 +2 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220808 +webcodecs-ulaw-codec-registration-20220808 +8 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220809 +webcodecs-ulaw-codec-registration-20220809 +9 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220809/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220810 +webcodecs-ulaw-codec-registration-20220810 +10 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220816 +webcodecs-ulaw-codec-registration-20220816 +16 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220817 +webcodecs-ulaw-codec-registration-20220817 +17 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220818 +webcodecs-ulaw-codec-registration-20220818 +18 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220819 +webcodecs-ulaw-codec-registration-20220819 +19 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220823 +webcodecs-ulaw-codec-registration-20220823 +23 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220829 +webcodecs-ulaw-codec-registration-20220829 +29 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220831 +webcodecs-ulaw-codec-registration-20220831 +31 August 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220903 +webcodecs-ulaw-codec-registration-20220903 +3 September 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220906 +webcodecs-ulaw-codec-registration-20220906 +6 September 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220907 +webcodecs-ulaw-codec-registration-20220907 +7 September 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220920 +webcodecs-ulaw-codec-registration-20220920 +20 September 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220920/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20220928 +webcodecs-ulaw-codec-registration-20220928 +28 September 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221003 +webcodecs-ulaw-codec-registration-20221003 +3 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221006 +webcodecs-ulaw-codec-registration-20221006 +6 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221010 +webcodecs-ulaw-codec-registration-20221010 +10 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221014 +webcodecs-ulaw-codec-registration-20221014 +14 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221017 +webcodecs-ulaw-codec-registration-20221017 +17 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221018 +webcodecs-ulaw-codec-registration-20221018 +18 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221019 +webcodecs-ulaw-codec-registration-20221019 +19 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221020 +webcodecs-ulaw-codec-registration-20221020 +20 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221021 +webcodecs-ulaw-codec-registration-20221021 +21 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221027 +webcodecs-ulaw-codec-registration-20221027 +27 October 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221101 +webcodecs-ulaw-codec-registration-20221101 +1 November 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221122 +webcodecs-ulaw-codec-registration-20221122 +22 November 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20221212 +webcodecs-ulaw-codec-registration-20221212 +12 December 2022 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230104 +webcodecs-ulaw-codec-registration-20230104 +4 January 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230125 +webcodecs-ulaw-codec-registration-20230125 +25 January 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230130 +webcodecs-ulaw-codec-registration-20230130 +30 January 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230201 +webcodecs-ulaw-codec-registration-20230201 +1 February 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230202 +webcodecs-ulaw-codec-registration-20230202 +2 February 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230208 +webcodecs-ulaw-codec-registration-20230208 +8 February 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230209 +webcodecs-ulaw-codec-registration-20230209 +9 February 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230310 +webcodecs-ulaw-codec-registration-20230310 +10 March 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230313 +webcodecs-ulaw-codec-registration-20230313 +13 March 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230317 +webcodecs-ulaw-codec-registration-20230317 +17 March 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230403 +webcodecs-ulaw-codec-registration-20230403 +3 April 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230419 +webcodecs-ulaw-codec-registration-20230419 +19 April 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230427 +webcodecs-ulaw-codec-registration-20230427 +27 April 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230511 +webcodecs-ulaw-codec-registration-20230511 +11 May 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230628 +webcodecs-ulaw-codec-registration-20230628 +28 June 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230705 +webcodecs-ulaw-codec-registration-20230705 +5 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230706 +webcodecs-ulaw-codec-registration-20230706 +6 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230707 +webcodecs-ulaw-codec-registration-20230707 +7 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230708 +webcodecs-ulaw-codec-registration-20230708 +8 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230719 +webcodecs-ulaw-codec-registration-20230719 +19 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230720 +webcodecs-ulaw-codec-registration-20230720 +20 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230726 +webcodecs-ulaw-codec-registration-20230726 +26 July 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230817 +webcodecs-ulaw-codec-registration-20230817 +17 August 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230821 +webcodecs-ulaw-codec-registration-20230821 +21 August 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230825 +webcodecs-ulaw-codec-registration-20230825 +25 August 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230826 +webcodecs-ulaw-codec-registration-20230826 +26 August 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230928 +webcodecs-ulaw-codec-registration-20230928 +28 September 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20230930 +webcodecs-ulaw-codec-registration-20230930 +30 September 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231012 +webcodecs-ulaw-codec-registration-20231012 +12 October 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231026 +webcodecs-ulaw-codec-registration-20231026 +26 October 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231028 +webcodecs-ulaw-codec-registration-20231028 +28 October 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231101 +webcodecs-ulaw-codec-registration-20231101 +1 November 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231102 +webcodecs-ulaw-codec-registration-20231102 +2 November 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231103 +webcodecs-ulaw-codec-registration-20231103 +3 November 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20231123 +webcodecs-ulaw-codec-registration-20231123 +23 November 2023 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240108 +webcodecs-ulaw-codec-registration-20240108 +8 January 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240206 +webcodecs-ulaw-codec-registration-20240206 +6 February 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240319 +webcodecs-ulaw-codec-registration-20240319 +19 March 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240408 +webcodecs-ulaw-codec-registration-20240408 +8 April 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240419 +webcodecs-ulaw-codec-registration-20240419 +19 April 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240503 +webcodecs-ulaw-codec-registration-20240503 +3 May 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240508 +webcodecs-ulaw-codec-registration-20240508 +8 May 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240520 +webcodecs-ulaw-codec-registration-20240520 +20 May 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240614 +webcodecs-ulaw-codec-registration-20240614 +14 June 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240704 +webcodecs-ulaw-codec-registration-20240704 +4 July 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240711 +webcodecs-ulaw-codec-registration-20240711 +11 July 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-ulaw-codec-registration-20240717 +webcodecs-ulaw-codec-registration-20240717 +17 July 2024 +NOTE +u-law PCM WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration +webcodecs-vorbis-codec-registration +17 July 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/webcodecs-vorbis-codec-registration/ +https://w3c.github.io/webcodecs/vorbis_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20211216 +webcodecs-vorbis-codec-registration-20211216 +16 December 2021 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-vorbis-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-vorbis-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220126 +webcodecs-vorbis-codec-registration-20220126 +26 January 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220209 +webcodecs-vorbis-codec-registration-20220209 +9 February 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220216 +webcodecs-vorbis-codec-registration-20220216 +16 February 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220321 +webcodecs-vorbis-codec-registration-20220321 +21 March 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220504 +webcodecs-vorbis-codec-registration-20220504 +4 May 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220524 +webcodecs-vorbis-codec-registration-20220524 +24 May 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220802 +webcodecs-vorbis-codec-registration-20220802 +2 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220808 +webcodecs-vorbis-codec-registration-20220808 +8 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220809 +webcodecs-vorbis-codec-registration-20220809 +9 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220809/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220810 +webcodecs-vorbis-codec-registration-20220810 +10 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220816 +webcodecs-vorbis-codec-registration-20220816 +16 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220817 +webcodecs-vorbis-codec-registration-20220817 +17 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220818 +webcodecs-vorbis-codec-registration-20220818 +18 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220819 +webcodecs-vorbis-codec-registration-20220819 +19 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220823 +webcodecs-vorbis-codec-registration-20220823 +23 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220829 +webcodecs-vorbis-codec-registration-20220829 +29 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220831 +webcodecs-vorbis-codec-registration-20220831 +31 August 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220903 +webcodecs-vorbis-codec-registration-20220903 +3 September 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220906 +webcodecs-vorbis-codec-registration-20220906 +6 September 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220907 +webcodecs-vorbis-codec-registration-20220907 +7 September 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220919 +webcodecs-vorbis-codec-registration-20220919 +19 September 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220919/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220919/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20220928 +webcodecs-vorbis-codec-registration-20220928 +28 September 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221003 +webcodecs-vorbis-codec-registration-20221003 +3 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221006 +webcodecs-vorbis-codec-registration-20221006 +6 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221010 +webcodecs-vorbis-codec-registration-20221010 +10 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221014 +webcodecs-vorbis-codec-registration-20221014 +14 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221017 +webcodecs-vorbis-codec-registration-20221017 +17 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221018 +webcodecs-vorbis-codec-registration-20221018 +18 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221019 +webcodecs-vorbis-codec-registration-20221019 +19 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221020 +webcodecs-vorbis-codec-registration-20221020 +20 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221021 +webcodecs-vorbis-codec-registration-20221021 +21 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221027 +webcodecs-vorbis-codec-registration-20221027 +27 October 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221101 +webcodecs-vorbis-codec-registration-20221101 +1 November 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221122 +webcodecs-vorbis-codec-registration-20221122 +22 November 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20221212 +webcodecs-vorbis-codec-registration-20221212 +12 December 2022 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230104 +webcodecs-vorbis-codec-registration-20230104 +4 January 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230125 +webcodecs-vorbis-codec-registration-20230125 +25 January 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230130 +webcodecs-vorbis-codec-registration-20230130 +30 January 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230201 +webcodecs-vorbis-codec-registration-20230201 +1 February 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230202 +webcodecs-vorbis-codec-registration-20230202 +2 February 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230208 +webcodecs-vorbis-codec-registration-20230208 +8 February 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230209 +webcodecs-vorbis-codec-registration-20230209 +9 February 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230310 +webcodecs-vorbis-codec-registration-20230310 +10 March 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230313 +webcodecs-vorbis-codec-registration-20230313 +13 March 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230317 +webcodecs-vorbis-codec-registration-20230317 +17 March 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230403 +webcodecs-vorbis-codec-registration-20230403 +3 April 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230419 +webcodecs-vorbis-codec-registration-20230419 +19 April 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230427 +webcodecs-vorbis-codec-registration-20230427 +27 April 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230511 +webcodecs-vorbis-codec-registration-20230511 +11 May 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230628 +webcodecs-vorbis-codec-registration-20230628 +28 June 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230705 +webcodecs-vorbis-codec-registration-20230705 +5 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230706 +webcodecs-vorbis-codec-registration-20230706 +6 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230707 +webcodecs-vorbis-codec-registration-20230707 +7 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230708 +webcodecs-vorbis-codec-registration-20230708 +8 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230719 +webcodecs-vorbis-codec-registration-20230719 +19 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230720 +webcodecs-vorbis-codec-registration-20230720 +20 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230726 +webcodecs-vorbis-codec-registration-20230726 +26 July 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230817 +webcodecs-vorbis-codec-registration-20230817 +17 August 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230821 +webcodecs-vorbis-codec-registration-20230821 +21 August 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230825 +webcodecs-vorbis-codec-registration-20230825 +25 August 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230826 +webcodecs-vorbis-codec-registration-20230826 +26 August 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230928 +webcodecs-vorbis-codec-registration-20230928 +28 September 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20230930 +webcodecs-vorbis-codec-registration-20230930 +30 September 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231012 +webcodecs-vorbis-codec-registration-20231012 +12 October 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231026 +webcodecs-vorbis-codec-registration-20231026 +26 October 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231028 +webcodecs-vorbis-codec-registration-20231028 +28 October 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231101 +webcodecs-vorbis-codec-registration-20231101 +1 November 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231102 +webcodecs-vorbis-codec-registration-20231102 +2 November 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231103 +webcodecs-vorbis-codec-registration-20231103 +3 November 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20231123 +webcodecs-vorbis-codec-registration-20231123 +23 November 2023 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240108 +webcodecs-vorbis-codec-registration-20240108 +8 January 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240206 +webcodecs-vorbis-codec-registration-20240206 +6 February 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240319 +webcodecs-vorbis-codec-registration-20240319 +19 March 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240408 +webcodecs-vorbis-codec-registration-20240408 +8 April 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240419 +webcodecs-vorbis-codec-registration-20240419 +19 April 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240503 +webcodecs-vorbis-codec-registration-20240503 +3 May 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240508 +webcodecs-vorbis-codec-registration-20240508 +8 May 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240520 +webcodecs-vorbis-codec-registration-20240520 +20 May 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240614 +webcodecs-vorbis-codec-registration-20240614 +14 June 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240704 +webcodecs-vorbis-codec-registration-20240704 +4 July 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240711 +webcodecs-vorbis-codec-registration-20240711 +11 July 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vorbis-codec-registration-20240717 +webcodecs-vorbis-codec-registration-20240717 +17 July 2024 +NOTE +Vorbis WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration +webcodecs-vp8-codec-registration +17 July 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/webcodecs-vp8-codec-registration/ +https://w3c.github.io/webcodecs/vp8_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20211216 +webcodecs-vp8-codec-registration-20211216 +16 December 2021 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-vp8-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-vp8-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220126 +webcodecs-vp8-codec-registration-20220126 +26 January 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220209 +webcodecs-vp8-codec-registration-20220209 +9 February 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220216 +webcodecs-vp8-codec-registration-20220216 +16 February 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220321 +webcodecs-vp8-codec-registration-20220321 +21 March 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220504 +webcodecs-vp8-codec-registration-20220504 +4 May 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220524 +webcodecs-vp8-codec-registration-20220524 +24 May 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220802 +webcodecs-vp8-codec-registration-20220802 +2 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220808 +webcodecs-vp8-codec-registration-20220808 +8 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220809 +webcodecs-vp8-codec-registration-20220809 +9 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220809/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220809/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220810 +webcodecs-vp8-codec-registration-20220810 +10 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220816 +webcodecs-vp8-codec-registration-20220816 +16 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220817 +webcodecs-vp8-codec-registration-20220817 +17 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220818 +webcodecs-vp8-codec-registration-20220818 +18 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220819 +webcodecs-vp8-codec-registration-20220819 +19 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220823 +webcodecs-vp8-codec-registration-20220823 +23 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220829 +webcodecs-vp8-codec-registration-20220829 +29 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220831 +webcodecs-vp8-codec-registration-20220831 +31 August 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220903 +webcodecs-vp8-codec-registration-20220903 +3 September 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220906 +webcodecs-vp8-codec-registration-20220906 +6 September 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220907 +webcodecs-vp8-codec-registration-20220907 +7 September 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220920 +webcodecs-vp8-codec-registration-20220920 +20 September 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220920/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20220928 +webcodecs-vp8-codec-registration-20220928 +28 September 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221003 +webcodecs-vp8-codec-registration-20221003 +3 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221006 +webcodecs-vp8-codec-registration-20221006 +6 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221010 +webcodecs-vp8-codec-registration-20221010 +10 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221014 +webcodecs-vp8-codec-registration-20221014 +14 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221017 +webcodecs-vp8-codec-registration-20221017 +17 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221018 +webcodecs-vp8-codec-registration-20221018 +18 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221019 +webcodecs-vp8-codec-registration-20221019 +19 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221020 +webcodecs-vp8-codec-registration-20221020 +20 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221021 +webcodecs-vp8-codec-registration-20221021 +21 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221027 +webcodecs-vp8-codec-registration-20221027 +27 October 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221101 +webcodecs-vp8-codec-registration-20221101 +1 November 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221122 +webcodecs-vp8-codec-registration-20221122 +22 November 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20221212 +webcodecs-vp8-codec-registration-20221212 +12 December 2022 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230104 +webcodecs-vp8-codec-registration-20230104 +4 January 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230125 +webcodecs-vp8-codec-registration-20230125 +25 January 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230130 +webcodecs-vp8-codec-registration-20230130 +30 January 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230201 +webcodecs-vp8-codec-registration-20230201 +1 February 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230202 +webcodecs-vp8-codec-registration-20230202 +2 February 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230208 +webcodecs-vp8-codec-registration-20230208 +8 February 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230209 +webcodecs-vp8-codec-registration-20230209 +9 February 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230310 +webcodecs-vp8-codec-registration-20230310 +10 March 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230313 +webcodecs-vp8-codec-registration-20230313 +13 March 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230317 +webcodecs-vp8-codec-registration-20230317 +17 March 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230403 +webcodecs-vp8-codec-registration-20230403 +3 April 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230419 +webcodecs-vp8-codec-registration-20230419 +19 April 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230427 +webcodecs-vp8-codec-registration-20230427 +27 April 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230511 +webcodecs-vp8-codec-registration-20230511 +11 May 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230628 +webcodecs-vp8-codec-registration-20230628 +28 June 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230705 +webcodecs-vp8-codec-registration-20230705 +5 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230706 +webcodecs-vp8-codec-registration-20230706 +6 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230707 +webcodecs-vp8-codec-registration-20230707 +7 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230708 +webcodecs-vp8-codec-registration-20230708 +8 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230719 +webcodecs-vp8-codec-registration-20230719 +19 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230720 +webcodecs-vp8-codec-registration-20230720 +20 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230726 +webcodecs-vp8-codec-registration-20230726 +26 July 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230817 +webcodecs-vp8-codec-registration-20230817 +17 August 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230821 +webcodecs-vp8-codec-registration-20230821 +21 August 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230825 +webcodecs-vp8-codec-registration-20230825 +25 August 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230826 +webcodecs-vp8-codec-registration-20230826 +26 August 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230928 +webcodecs-vp8-codec-registration-20230928 +28 September 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20230930 +webcodecs-vp8-codec-registration-20230930 +30 September 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231012 +webcodecs-vp8-codec-registration-20231012 +12 October 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231026 +webcodecs-vp8-codec-registration-20231026 +26 October 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231028 +webcodecs-vp8-codec-registration-20231028 +28 October 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231101 +webcodecs-vp8-codec-registration-20231101 +1 November 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231102 +webcodecs-vp8-codec-registration-20231102 +2 November 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231103 +webcodecs-vp8-codec-registration-20231103 +3 November 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20231123 +webcodecs-vp8-codec-registration-20231123 +23 November 2023 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240108 +webcodecs-vp8-codec-registration-20240108 +8 January 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240206 +webcodecs-vp8-codec-registration-20240206 +6 February 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240319 +webcodecs-vp8-codec-registration-20240319 +19 March 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240408 +webcodecs-vp8-codec-registration-20240408 +8 April 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240419 +webcodecs-vp8-codec-registration-20240419 +19 April 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240503 +webcodecs-vp8-codec-registration-20240503 +3 May 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240508 +webcodecs-vp8-codec-registration-20240508 +8 May 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240520 +webcodecs-vp8-codec-registration-20240520 +20 May 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240614 +webcodecs-vp8-codec-registration-20240614 +14 June 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240704 +webcodecs-vp8-codec-registration-20240704 +4 July 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240711 +webcodecs-vp8-codec-registration-20240711 +11 July 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp8-codec-registration-20240717 +webcodecs-vp8-codec-registration-20240717 +17 July 2024 +NOTE +VP8 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration +webcodecs-vp9-codec-registration +17 July 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/webcodecs-vp9-codec-registration/ +https://w3c.github.io/webcodecs/vp9_codec_registration.html + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20211216 +webcodecs-vp9-codec-registration-20211216 +16 December 2021 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2021/DNOTE-webcodecs-vp9-codec-registration-20211216/ +https://www.w3.org/TR/2021/DNOTE-webcodecs-vp9-codec-registration-20211216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220126 +webcodecs-vp9-codec-registration-20220126 +26 January 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220126/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220126/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220209 +webcodecs-vp9-codec-registration-20220209 +9 February 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220209/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220209/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220216 +webcodecs-vp9-codec-registration-20220216 +16 February 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220216/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220216/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220321 +webcodecs-vp9-codec-registration-20220321 +21 March 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220321/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220321/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220504 +webcodecs-vp9-codec-registration-20220504 +4 May 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220504/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220504/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220524 +webcodecs-vp9-codec-registration-20220524 +24 May 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220524/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220524/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220802 +webcodecs-vp9-codec-registration-20220802 +2 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220802/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220802/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220808 +webcodecs-vp9-codec-registration-20220808 +8 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220808/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220808/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220810 +webcodecs-vp9-codec-registration-20220810 +10 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220810/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220810/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220816 +webcodecs-vp9-codec-registration-20220816 +16 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220816/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220816/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220817 +webcodecs-vp9-codec-registration-20220817 +17 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220817/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220817/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220818 +webcodecs-vp9-codec-registration-20220818 +18 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220818/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220818/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220819 +webcodecs-vp9-codec-registration-20220819 +19 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220819/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220819/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220823 +webcodecs-vp9-codec-registration-20220823 +23 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220823/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220823/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220829 +webcodecs-vp9-codec-registration-20220829 +29 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220829/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220829/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220831 +webcodecs-vp9-codec-registration-20220831 +31 August 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220831/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220831/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220903 +webcodecs-vp9-codec-registration-20220903 +3 September 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220903/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220903/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220906 +webcodecs-vp9-codec-registration-20220906 +6 September 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220906/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220906/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220907 +webcodecs-vp9-codec-registration-20220907 +7 September 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220907/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220907/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220920 +webcodecs-vp9-codec-registration-20220920 +20 September 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220920/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220920/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20220928 +webcodecs-vp9-codec-registration-20220928 +28 September 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220928/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220928/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221003 +webcodecs-vp9-codec-registration-20221003 +3 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221003/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221003/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221006 +webcodecs-vp9-codec-registration-20221006 +6 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221006/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221006/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221010 +webcodecs-vp9-codec-registration-20221010 +10 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221010/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221010/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221014 +webcodecs-vp9-codec-registration-20221014 +14 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221014/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221014/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221017 +webcodecs-vp9-codec-registration-20221017 +17 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221017/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221017/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221018 +webcodecs-vp9-codec-registration-20221018 +18 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221018/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221018/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221019 +webcodecs-vp9-codec-registration-20221019 +19 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221019/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221019/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221020 +webcodecs-vp9-codec-registration-20221020 +20 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221020/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221020/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221021 +webcodecs-vp9-codec-registration-20221021 +21 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221021/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221021/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221027 +webcodecs-vp9-codec-registration-20221027 +27 October 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221027/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221027/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221101 +webcodecs-vp9-codec-registration-20221101 +1 November 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221101/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221101/ + + + +Chris Cunningham +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221122 +webcodecs-vp9-codec-registration-20221122 +22 November 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221122/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221122/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20221212 +webcodecs-vp9-codec-registration-20221212 +12 December 2022 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221212/ +https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221212/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230104 +webcodecs-vp9-codec-registration-20230104 +4 January 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230104/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230104/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230125 +webcodecs-vp9-codec-registration-20230125 +25 January 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230125/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230125/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230130 +webcodecs-vp9-codec-registration-20230130 +30 January 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230130/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230130/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230201 +webcodecs-vp9-codec-registration-20230201 +1 February 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230201/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230201/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230202 +webcodecs-vp9-codec-registration-20230202 +2 February 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230202/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230202/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230208 +webcodecs-vp9-codec-registration-20230208 +8 February 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230208/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230208/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230209 +webcodecs-vp9-codec-registration-20230209 +9 February 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230209/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230209/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230310 +webcodecs-vp9-codec-registration-20230310 +10 March 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230310/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230310/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230313 +webcodecs-vp9-codec-registration-20230313 +13 March 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230313/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230313/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230317 +webcodecs-vp9-codec-registration-20230317 +17 March 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230317/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230317/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230403 +webcodecs-vp9-codec-registration-20230403 +3 April 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230403/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230403/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230419 +webcodecs-vp9-codec-registration-20230419 +19 April 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230419/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230427 +webcodecs-vp9-codec-registration-20230427 +27 April 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230427/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230427/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230511 +webcodecs-vp9-codec-registration-20230511 +11 May 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230511/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230511/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230628 +webcodecs-vp9-codec-registration-20230628 +28 June 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230628/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230628/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230705 +webcodecs-vp9-codec-registration-20230705 +5 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230705/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230705/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230706 +webcodecs-vp9-codec-registration-20230706 +6 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230706/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230706/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230707 +webcodecs-vp9-codec-registration-20230707 +7 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230707/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230707/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230708 +webcodecs-vp9-codec-registration-20230708 +8 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230708/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230708/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230719 +webcodecs-vp9-codec-registration-20230719 +19 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230719/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230719/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230720 +webcodecs-vp9-codec-registration-20230720 +20 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230720/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230720/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230726 +webcodecs-vp9-codec-registration-20230726 +26 July 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230726/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230726/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230817 +webcodecs-vp9-codec-registration-20230817 +17 August 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230817/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230817/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230821 +webcodecs-vp9-codec-registration-20230821 +21 August 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230821/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230821/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230825 +webcodecs-vp9-codec-registration-20230825 +25 August 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230825/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230825/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230826 +webcodecs-vp9-codec-registration-20230826 +26 August 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230826/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230826/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230928 +webcodecs-vp9-codec-registration-20230928 +28 September 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230928/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230928/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20230930 +webcodecs-vp9-codec-registration-20230930 +30 September 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230930/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230930/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231012 +webcodecs-vp9-codec-registration-20231012 +12 October 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231012/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231012/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231026 +webcodecs-vp9-codec-registration-20231026 +26 October 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231026/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231026/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231028 +webcodecs-vp9-codec-registration-20231028 +28 October 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231028/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231028/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231101 +webcodecs-vp9-codec-registration-20231101 +1 November 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231101/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231101/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231102 +webcodecs-vp9-codec-registration-20231102 +2 November 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231102/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231102/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231103 +webcodecs-vp9-codec-registration-20231103 +3 November 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231103/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231103/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20231123 +webcodecs-vp9-codec-registration-20231123 +23 November 2023 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231123/ +https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231123/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240108 +webcodecs-vp9-codec-registration-20240108 +8 January 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240108/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240108/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240206 +webcodecs-vp9-codec-registration-20240206 +6 February 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240206/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240206/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240319 +webcodecs-vp9-codec-registration-20240319 +19 March 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240319/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240319/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240408 +webcodecs-vp9-codec-registration-20240408 +8 April 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240408/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240408/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240419 +webcodecs-vp9-codec-registration-20240419 +19 April 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240419/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240419/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240503 +webcodecs-vp9-codec-registration-20240503 +3 May 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240503/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240503/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240508 +webcodecs-vp9-codec-registration-20240508 +8 May 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240508/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240508/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240520 +webcodecs-vp9-codec-registration-20240520 +20 May 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240520/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240520/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240614 +webcodecs-vp9-codec-registration-20240614 +14 June 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240614/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240614/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240704 +webcodecs-vp9-codec-registration-20240704 +4 July 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240704/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240704/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240711 +webcodecs-vp9-codec-registration-20240711 +11 July 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240711/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240711/ + + + +Paul Adenot +Bernard Aboba +- +d:webcodecs-vp9-codec-registration-20240717 +webcodecs-vp9-codec-registration-20240717 +17 July 2024 +NOTE +VP9 WebCodecs Registration +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240717/ +https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240717/ + + + +Paul Adenot +Bernard Aboba +- +a:webcontent +WEBCONTENT +WCAG +- +a:webcontent-0203 +WEBCONTENT-0203 +WAI-WEBCONTENT-0203 +- +a:webcontent-0414 +WEBCONTENT-0414 +WAI-WEBCONTENT-0414 +- +a:webcontent-19980203 +WEBCONTENT-19980203 +WAI-WEBCONTENT-19980203 +- +a:webcontent-19980414 +WEBCONTENT-19980414 +WAI-WEBCONTENT-19980414 +- +a:webcontent-19980918 +WEBCONTENT-19980918 +WAI-WEBCONTENT-19980918 +- +a:webcontent-19990115 +WEBCONTENT-19990115 +WAI-WEBCONTENT-19990115 +- +a:webcontent-19990217 +WEBCONTENT-19990217 +WAI-WEBCONTENT-19990217 +- +a:webcontent-19990226 +WEBCONTENT-19990226 +WAI-WEBCONTENT-19990226 +- +a:webcontent-19990324 +WEBCONTENT-19990324 +WAI-WEBCONTENT-19990324 +- +a:webcontent-19990505 +WEBCONTENT-19990505 +WAI-WEBCONTENT-19990505 +- +d:webcrypto-key-discovery +webcrypto-key-discovery +29 March 2016 +NOTE +WebCrypto Key Discovery +https://www.w3.org/TR/webcrypto-key-discovery/ +https://dvcs.w3.org/hg/webcrypto-keydiscovery/raw-file/tip/Overview.html + + + +Mark Watson +- +d:webcrypto-key-discovery-20130108 +webcrypto-key-discovery-20130108 +8 January 2013 +WD +WebCrypto Key Discovery +https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130108/ +https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130108/ + + + +Mark Watson +- +d:webcrypto-key-discovery-20130822 +webcrypto-key-discovery-20130822 +22 August 2013 +WD +WebCrypto Key Discovery +https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130822/ +https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130822/ + + + +Mark Watson +- +d:webcrypto-key-discovery-20160329 +webcrypto-key-discovery-20160329 +29 March 2016 +NOTE +WebCrypto Key Discovery +https://www.w3.org/TR/2016/NOTE-webcrypto-key-discovery-20160329/ +https://www.w3.org/TR/2016/NOTE-webcrypto-key-discovery-20160329/ + + + +Mark Watson +- +d:webcrypto-secure-curves +WEBCRYPTO-SECURE-CURVES + +Draft Community Group Report +Secure Curves in the Web Cryptography API +https://wicg.github.io/webcrypto-secure-curves/ + + + + +- +d:webcrypto-usecases +webcrypto-usecases +10 September 2013 +NOTE +Web Cryptography API Use Cases +https://www.w3.org/TR/webcrypto-usecases/ +https://dvcs.w3.org/hg/webcrypto-usecases/raw-file/tip/Overview.html + + + +Arun Ranganathan +- +d:webcrypto-usecases-20130108 +webcrypto-usecases-20130108 +8 January 2013 +WD +Web Cryptography API Use Cases +https://www.w3.org/TR/2013/WD-webcrypto-usecases-20130108/ +https://www.w3.org/TR/2013/WD-webcrypto-usecases-20130108/ + + + +Arun Ranganathan +- +d:webcrypto-usecases-20130910 +webcrypto-usecases-20130910 +10 September 2013 +NOTE +Web Cryptography API Use Cases +https://www.w3.org/TR/2013/NOTE-webcrypto-usecases-20130910/ +https://www.w3.org/TR/2013/NOTE-webcrypto-usecases-20130910/ + + + +Arun Ranganathan +- +d:webcryptoapi +WebCryptoAPI +26 January 2017 +REC +Web Cryptography API +https://www.w3.org/TR/WebCryptoAPI/ +https://w3c.github.io/webcrypto/ + + + +Mark Watson +- +d:webcryptoapi-20120913 +WebCryptoAPI-20120913 +13 September 2012 +WD +Web Cryptography API +https://www.w3.org/TR/2012/WD-WebCryptoAPI-20120913/ +https://www.w3.org/TR/2012/WD-WebCryptoAPI-20120913/ + + + +Mark Watson +- +d:webcryptoapi-20130108 +WebCryptoAPI-20130108 +8 January 2013 +WD +Web Cryptography API +https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130108/ +https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130108/ + + + +David Dahl +Ryan Sleevi +- +d:webcryptoapi-20130625 +WebCryptoAPI-20130625 +25 June 2013 +WD +Web Cryptography API +https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130625/ +https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130625/ + + + +David Dahl +Ryan Sleevi +- +d:webcryptoapi-20140325 +WebCryptoAPI-20140325 +25 March 2014 +LCWD +Web Cryptography API +https://www.w3.org/TR/2014/WD-WebCryptoAPI-20140325/ +https://www.w3.org/TR/2014/WD-WebCryptoAPI-20140325/ + + + +Ryan Sleevi +Mark Watson +- +d:webcryptoapi-20141211 +WebCryptoAPI-20141211 +11 December 2014 +CR +Web Cryptography API +https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/ +https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/ + + + +Ryan Sleevi +Mark Watson +- +d:webcryptoapi-20161215 +WebCryptoAPI-20161215 +15 December 2016 +PR +Web Cryptography API +https://www.w3.org/TR/2016/PR-WebCryptoAPI-20161215/ +https://www.w3.org/TR/2016/PR-WebCryptoAPI-20161215/ + + + +Mark Watson +- +d:webcryptoapi-20170126 +WebCryptoAPI-20170126 +26 January 2017 +REC +Web Cryptography API +https://www.w3.org/TR/2017/REC-WebCryptoAPI-20170126/ +https://www.w3.org/TR/2017/REC-WebCryptoAPI-20170126/ + + + +Mark Watson +- +d:webdatabase +webdatabase +18 November 2010 +NOTE +Web SQL Database +https://www.w3.org/TR/webdatabase/ + + + + +Ian Hickson +- +d:webdatabase-20090910 +webdatabase-20090910 +10 September 2009 +WD +Web SQL Database +https://www.w3.org/TR/2009/WD-webdatabase-20090910/ +https://www.w3.org/TR/2009/WD-webdatabase-20090910/ + + + +Ian Hickson +- +d:webdatabase-20091029 +webdatabase-20091029 +29 October 2009 +WD +Web SQL Database +https://www.w3.org/TR/2009/WD-webdatabase-20091029/ +https://www.w3.org/TR/2009/WD-webdatabase-20091029/ + + + +Ian Hickson +- +d:webdatabase-20091222 +webdatabase-20091222 +22 December 2009 +WD +Web SQL Database +https://www.w3.org/TR/2009/WD-webdatabase-20091222/ +https://www.w3.org/TR/2009/WD-webdatabase-20091222/ + + + +Ian Hickson +- +d:webdatabase-20101118 +webdatabase-20101118 +18 November 2010 +NOTE +Web SQL Database +https://www.w3.org/TR/2010/NOTE-webdatabase-20101118/ +https://www.w3.org/TR/2010/NOTE-webdatabase-20101118/ + + + +Ian Hickson +- +a:webdriver +webdriver +webdriver1 +- +a:webdriver-20120710 +webdriver-20120710 +webdriver1-20120710 +- +a:webdriver-20130117 +webdriver-20130117 +webdriver1-20130117 +- +a:webdriver-20130312 +webdriver-20130312 +webdriver1-20130312 +- +a:webdriver-20150803 +webdriver-20150803 +webdriver1-20150803 +- +a:webdriver-20150808 +webdriver-20150808 +webdriver1-20150808 +- +a:webdriver-20150827 +webdriver-20150827 +webdriver1-20150827 +- +a:webdriver-20150902 +webdriver-20150902 +webdriver1-20150902 +- +a:webdriver-20150909 +webdriver-20150909 +webdriver1-20150909 +- +a:webdriver-20150915 +webdriver-20150915 +webdriver1-20150915 +- +a:webdriver-20150918 +webdriver-20150918 +webdriver1-20150918 +- +a:webdriver-20150921 +webdriver-20150921 +webdriver1-20150921 +- +a:webdriver-20151025 +webdriver-20151025 +webdriver1-20151025 +- +a:webdriver-20151109 +webdriver-20151109 +webdriver1-20151109 +- +a:webdriver-20160120 +webdriver-20160120 +webdriver1-20160120 +- +a:webdriver-20160406 +webdriver-20160406 +webdriver1-20160406 +- +a:webdriver-20160426 +webdriver-20160426 +webdriver1-20160426 +- +a:webdriver-20160523 +webdriver-20160523 +webdriver1-20160523 +- +a:webdriver-20160830 +webdriver-20160830 +webdriver1-20160830 +- +a:webdriver-20161013 +webdriver-20161013 +webdriver1-20161013 +- +a:webdriver-20161019 +webdriver-20161019 +webdriver1-20161019 +- +a:webdriver-20161021 +webdriver-20161021 +webdriver1-20161021 +- +a:webdriver-20161025 +webdriver-20161025 +webdriver1-20161025 +- +a:webdriver-20161031 +webdriver-20161031 +webdriver1-20161031 +- +a:webdriver-20161116 +webdriver-20161116 +webdriver1-20161116 +- +a:webdriver-20161129 +webdriver-20161129 +webdriver1-20161129 +- +a:webdriver-20170105 +webdriver-20170105 +webdriver1-20170105 +- +a:webdriver-20170110 +webdriver-20170110 +webdriver1-20170110 +- +a:webdriver-20170111 +webdriver-20170111 +webdriver1-20170111 +- +a:webdriver-20170112 +webdriver-20170112 +webdriver1-20170112 +- +a:webdriver-20170113 +webdriver-20170113 +webdriver1-20170113 +- +a:webdriver-20170116 +webdriver-20170116 +webdriver1-20170116 +- +a:webdriver-20170117 +webdriver-20170117 +webdriver1-20170117 +- +a:webdriver-20170118 +webdriver-20170118 +webdriver1-20170118 +- +a:webdriver-20170119 +webdriver-20170119 +webdriver1-20170119 +- +a:webdriver-20170120 +webdriver-20170120 +webdriver1-20170120 +- +a:webdriver-20170222 +webdriver-20170222 +webdriver1-20170222 +- +a:webdriver-20170223 +webdriver-20170223 +webdriver1-20170223 +- +a:webdriver-20170224 +webdriver-20170224 +webdriver1-20170224 +- +a:webdriver-20170228 +webdriver-20170228 +webdriver1-20170228 +- +a:webdriver-20170301 +webdriver-20170301 +webdriver1-20170301 +- +a:webdriver-20170302 +webdriver-20170302 +webdriver1-20170302 +- +a:webdriver-20170306 +webdriver-20170306 +webdriver1-20170306 +- +a:webdriver-20170307 +webdriver-20170307 +webdriver1-20170307 +- +a:webdriver-20170308 +webdriver-20170308 +webdriver1-20170308 +- +a:webdriver-20170312 +webdriver-20170312 +webdriver1-20170312 +- +a:webdriver-20170316 +webdriver-20170316 +webdriver1-20170316 +- +a:webdriver-20170320 +webdriver-20170320 +webdriver1-20170320 +- +a:webdriver-20170322 +webdriver-20170322 +webdriver1-20170322 +- +a:webdriver-20170324 +webdriver-20170324 +webdriver1-20170324 +- +a:webdriver-20170329 +webdriver-20170329 +webdriver1-20170329 +- +a:webdriver-20170330 +webdriver-20170330 +webdriver1-20170330 +- +a:webdriver-20180426 +webdriver-20180426 +webdriver1-20180426 +- +a:webdriver-20180605 +webdriver-20180605 +webdriver1-20180605 +- +d:webdriver-bidi +webdriver-bidi + +Editor's Draft +WebDriver BiDi +https://w3c.github.io/webdriver-bidi/ + + + + +- +d:webdriver1 +webdriver1 +5 June 2018 +REC +WebDriver +https://www.w3.org/TR/webdriver1/ +https://w3c.github.io/webdriver/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20120710 +webdriver1-20120710 +10 July 2012 +WD +WebDriver +https://www.w3.org/TR/2012/WD-webdriver-20120710/ +https://www.w3.org/TR/2012/WD-webdriver-20120710/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20130117 +webdriver1-20130117 +17 January 2013 +WD +WebDriver +https://www.w3.org/TR/2013/WD-webdriver-20130117/ +https://www.w3.org/TR/2013/WD-webdriver-20130117/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20130312 +webdriver1-20130312 +12 March 2013 +WD +WebDriver +https://www.w3.org/TR/2013/WD-webdriver-20130312/ +https://www.w3.org/TR/2013/WD-webdriver-20130312/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150803 +webdriver1-20150803 +3 August 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150803/ +https://www.w3.org/TR/2015/WD-webdriver-20150803/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150808 +webdriver1-20150808 +8 August 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150808/ +https://www.w3.org/TR/2015/WD-webdriver-20150808/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150827 +webdriver1-20150827 +27 August 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150827/ +https://www.w3.org/TR/2015/WD-webdriver-20150827/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150902 +webdriver1-20150902 +2 September 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150902/ +https://www.w3.org/TR/2015/WD-webdriver-20150902/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150909 +webdriver1-20150909 +9 September 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150909/ +https://www.w3.org/TR/2015/WD-webdriver-20150909/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150915 +webdriver1-20150915 +15 September 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150915/ +https://www.w3.org/TR/2015/WD-webdriver-20150915/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150918 +webdriver1-20150918 +18 September 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150918/ +https://www.w3.org/TR/2015/WD-webdriver-20150918/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20150921 +webdriver1-20150921 +21 September 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20150921/ +https://www.w3.org/TR/2015/WD-webdriver-20150921/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20151025 +webdriver1-20151025 +25 October 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20151025/ +https://www.w3.org/TR/2015/WD-webdriver-20151025/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20151109 +webdriver1-20151109 +9 November 2015 +WD +WebDriver +https://www.w3.org/TR/2015/WD-webdriver-20151109/ +https://www.w3.org/TR/2015/WD-webdriver-20151109/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20160120 +webdriver1-20160120 +20 January 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20160120/ +https://www.w3.org/TR/2016/WD-webdriver-20160120/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20160406 +webdriver1-20160406 +6 April 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20160406/ +https://www.w3.org/TR/2016/WD-webdriver-20160406/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20160426 +webdriver1-20160426 +26 April 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20160426/ +https://www.w3.org/TR/2016/WD-webdriver-20160426/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20160523 +webdriver1-20160523 +23 May 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20160523/ +https://www.w3.org/TR/2016/WD-webdriver-20160523/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20160830 +webdriver1-20160830 +30 August 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20160830/ +https://www.w3.org/TR/2016/WD-webdriver-20160830/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161013 +webdriver1-20161013 +13 October 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161013/ +https://www.w3.org/TR/2016/WD-webdriver-20161013/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161019 +webdriver1-20161019 +19 October 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161019/ +https://www.w3.org/TR/2016/WD-webdriver-20161019/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161021 +webdriver1-20161021 +21 October 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161021/ +https://www.w3.org/TR/2016/WD-webdriver-20161021/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161025 +webdriver1-20161025 +25 October 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161025/ +https://www.w3.org/TR/2016/WD-webdriver-20161025/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161031 +webdriver1-20161031 +31 October 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161031/ +https://www.w3.org/TR/2016/WD-webdriver-20161031/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161116 +webdriver1-20161116 +16 November 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161116/ +https://www.w3.org/TR/2016/WD-webdriver-20161116/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20161129 +webdriver1-20161129 +29 November 2016 +WD +WebDriver +https://www.w3.org/TR/2016/WD-webdriver-20161129/ +https://www.w3.org/TR/2016/WD-webdriver-20161129/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170105 +webdriver1-20170105 +5 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170105/ +https://www.w3.org/TR/2017/WD-webdriver-20170105/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170110 +webdriver1-20170110 +10 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170110/ +https://www.w3.org/TR/2017/WD-webdriver-20170110/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170111 +webdriver1-20170111 +11 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170111/ +https://www.w3.org/TR/2017/WD-webdriver-20170111/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170112 +webdriver1-20170112 +12 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170112/ +https://www.w3.org/TR/2017/WD-webdriver-20170112/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170113 webdriver1-20170113 +13 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170113/ +https://www.w3.org/TR/2017/WD-webdriver-20170113/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170116 +webdriver1-20170116 +16 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170116/ +https://www.w3.org/TR/2017/WD-webdriver-20170116/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170117 +webdriver1-20170117 +17 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170117/ +https://www.w3.org/TR/2017/WD-webdriver-20170117/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170118 +webdriver1-20170118 +18 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170118/ +https://www.w3.org/TR/2017/WD-webdriver-20170118/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170119 +webdriver1-20170119 +19 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170119/ +https://www.w3.org/TR/2017/WD-webdriver-20170119/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170120 +webdriver1-20170120 +20 January 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170120/ +https://www.w3.org/TR/2017/WD-webdriver-20170120/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170222 +webdriver1-20170222 +22 February 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170222/ +https://www.w3.org/TR/2017/WD-webdriver-20170222/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170223 +webdriver1-20170223 +23 February 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170223/ +https://www.w3.org/TR/2017/WD-webdriver-20170223/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170224 +webdriver1-20170224 +24 February 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170224/ +https://www.w3.org/TR/2017/WD-webdriver-20170224/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170228 +webdriver1-20170228 +28 February 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170228/ +https://www.w3.org/TR/2017/WD-webdriver-20170228/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170301 +webdriver1-20170301 +1 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170301/ +https://www.w3.org/TR/2017/WD-webdriver-20170301/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170302 +webdriver1-20170302 +2 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170302/ +https://www.w3.org/TR/2017/WD-webdriver-20170302/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170306 +webdriver1-20170306 +6 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170306/ +https://www.w3.org/TR/2017/WD-webdriver-20170306/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170307 +webdriver1-20170307 +7 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170307/ +https://www.w3.org/TR/2017/WD-webdriver-20170307/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170308 +webdriver1-20170308 +8 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170308/ +https://www.w3.org/TR/2017/WD-webdriver-20170308/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170312 +webdriver1-20170312 +12 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170312/ +https://www.w3.org/TR/2017/WD-webdriver-20170312/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170316 +webdriver1-20170316 +16 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170316/ +https://www.w3.org/TR/2017/WD-webdriver-20170316/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170320 +webdriver1-20170320 +20 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170320/ +https://www.w3.org/TR/2017/WD-webdriver-20170320/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170322 +webdriver1-20170322 +22 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170322/ +https://www.w3.org/TR/2017/WD-webdriver-20170322/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170324 +webdriver1-20170324 +24 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170324/ +https://www.w3.org/TR/2017/WD-webdriver-20170324/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170329 +webdriver1-20170329 +29 March 2017 +WD +WebDriver +https://www.w3.org/TR/2017/WD-webdriver-20170329/ +https://www.w3.org/TR/2017/WD-webdriver-20170329/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20170330 +webdriver1-20170330 +30 March 2017 +CR +WebDriver +https://www.w3.org/TR/2017/CR-webdriver-20170330/ +https://www.w3.org/TR/2017/CR-webdriver-20170330/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20180426 +webdriver1-20180426 +26 April 2018 +PR +WebDriver +https://www.w3.org/TR/2018/PR-webdriver1-20180426/ +https://www.w3.org/TR/2018/PR-webdriver1-20180426/ + + + +Simon Stewart +David Burns +- +d:webdriver1-20180605 +webdriver1-20180605 +5 June 2018 +REC +WebDriver +https://www.w3.org/TR/2018/REC-webdriver1-20180605/ +https://www.w3.org/TR/2018/REC-webdriver1-20180605/ + + + +Simon Stewart +David Burns +- +d:webdriver2 +webdriver2 +23 July 2024 +WD +WebDriver +https://www.w3.org/TR/webdriver2/ +https://w3c.github.io/webdriver/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20190912 +webdriver2-20190912 +12 September 2019 +WD +WebDriver +https://www.w3.org/TR/2019/WD-webdriver2-20190912/ +https://www.w3.org/TR/2019/WD-webdriver2-20190912/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20191124 +webdriver2-20191124 +24 November 2019 +WD +WebDriver - Level 2 +https://www.w3.org/TR/2019/WD-webdriver2-20191124/ +https://www.w3.org/TR/2019/WD-webdriver2-20191124/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200327 +webdriver2-20200327 +27 March 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200327/ +https://www.w3.org/TR/2020/WD-webdriver2-20200327/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200519 +webdriver2-20200519 +19 May 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200519/ +https://www.w3.org/TR/2020/WD-webdriver2-20200519/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200521 +webdriver2-20200521 +21 May 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200521/ +https://www.w3.org/TR/2020/WD-webdriver2-20200521/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200528 +webdriver2-20200528 +28 May 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200528/ +https://www.w3.org/TR/2020/WD-webdriver2-20200528/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200529 +webdriver2-20200529 +29 May 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200529/ +https://www.w3.org/TR/2020/WD-webdriver2-20200529/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200604 +webdriver2-20200604 +4 June 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200604/ +https://www.w3.org/TR/2020/WD-webdriver2-20200604/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200610 +webdriver2-20200610 +10 June 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200610/ +https://www.w3.org/TR/2020/WD-webdriver2-20200610/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200717 +webdriver2-20200717 +17 July 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200717/ +https://www.w3.org/TR/2020/WD-webdriver2-20200717/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20200824 +webdriver2-20200824 +24 August 2020 +WD +WebDriver +https://www.w3.org/TR/2020/WD-webdriver2-20200824/ +https://www.w3.org/TR/2020/WD-webdriver2-20200824/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20210921 +webdriver2-20210921 +21 September 2021 +WD +WebDriver +https://www.w3.org/TR/2021/WD-webdriver2-20210921/ +https://www.w3.org/TR/2021/WD-webdriver2-20210921/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20211013 +webdriver2-20211013 +13 October 2021 +WD +WebDriver +https://www.w3.org/TR/2021/WD-webdriver2-20211013/ +https://www.w3.org/TR/2021/WD-webdriver2-20211013/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20211122 +webdriver2-20211122 +22 November 2021 +WD +WebDriver +https://www.w3.org/TR/2021/WD-webdriver2-20211122/ +https://www.w3.org/TR/2021/WD-webdriver2-20211122/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220214 +webdriver2-20220214 +14 February 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220214/ +https://www.w3.org/TR/2022/WD-webdriver2-20220214/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220315 +webdriver2-20220315 +15 March 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220315/ +https://www.w3.org/TR/2022/WD-webdriver2-20220315/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220401 +webdriver2-20220401 +1 April 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220401/ +https://www.w3.org/TR/2022/WD-webdriver2-20220401/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220525 +webdriver2-20220525 +25 May 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220525/ +https://www.w3.org/TR/2022/WD-webdriver2-20220525/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220615 +webdriver2-20220615 +15 June 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220615/ +https://www.w3.org/TR/2022/WD-webdriver2-20220615/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220624 +webdriver2-20220624 +24 June 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220624/ +https://www.w3.org/TR/2022/WD-webdriver2-20220624/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220825 +webdriver2-20220825 +25 August 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220825/ +https://www.w3.org/TR/2022/WD-webdriver2-20220825/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20220921 +webdriver2-20220921 +21 September 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20220921/ +https://www.w3.org/TR/2022/WD-webdriver2-20220921/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20221013 +webdriver2-20221013 +13 October 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20221013/ +https://www.w3.org/TR/2022/WD-webdriver2-20221013/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20221019 +webdriver2-20221019 +19 October 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20221019/ +https://www.w3.org/TR/2022/WD-webdriver2-20221019/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20221025 +webdriver2-20221025 +25 October 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20221025/ +https://www.w3.org/TR/2022/WD-webdriver2-20221025/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20221216 +webdriver2-20221216 +16 December 2022 +WD +WebDriver +https://www.w3.org/TR/2022/WD-webdriver2-20221216/ +https://www.w3.org/TR/2022/WD-webdriver2-20221216/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230119 +webdriver2-20230119 +19 January 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230119/ +https://www.w3.org/TR/2023/WD-webdriver2-20230119/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230222 +webdriver2-20230222 +22 February 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230222/ +https://www.w3.org/TR/2023/WD-webdriver2-20230222/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230303 +webdriver2-20230303 +3 March 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230303/ +https://www.w3.org/TR/2023/WD-webdriver2-20230303/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230321 +webdriver2-20230321 +21 March 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230321/ +https://www.w3.org/TR/2023/WD-webdriver2-20230321/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230607 +webdriver2-20230607 +7 June 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230607/ +https://www.w3.org/TR/2023/WD-webdriver2-20230607/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230804 +webdriver2-20230804 +4 August 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230804/ +https://www.w3.org/TR/2023/WD-webdriver2-20230804/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20230807 +webdriver2-20230807 +7 August 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20230807/ +https://www.w3.org/TR/2023/WD-webdriver2-20230807/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20231114 +webdriver2-20231114 +14 November 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20231114/ +https://www.w3.org/TR/2023/WD-webdriver2-20231114/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20231213 +webdriver2-20231213 +13 December 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20231213/ +https://www.w3.org/TR/2023/WD-webdriver2-20231213/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20231215 +webdriver2-20231215 +15 December 2023 +WD +WebDriver +https://www.w3.org/TR/2023/WD-webdriver2-20231215/ +https://www.w3.org/TR/2023/WD-webdriver2-20231215/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240104 +webdriver2-20240104 +4 January 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240104/ +https://www.w3.org/TR/2024/WD-webdriver2-20240104/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240115 +webdriver2-20240115 +15 January 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240115/ +https://www.w3.org/TR/2024/WD-webdriver2-20240115/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240123 +webdriver2-20240123 +23 January 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240123/ +https://www.w3.org/TR/2024/WD-webdriver2-20240123/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240226 +webdriver2-20240226 +26 February 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240226/ +https://www.w3.org/TR/2024/WD-webdriver2-20240226/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240521 +webdriver2-20240521 +21 May 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240521/ +https://www.w3.org/TR/2024/WD-webdriver2-20240521/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240618 +webdriver2-20240618 +18 June 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240618/ +https://www.w3.org/TR/2024/WD-webdriver2-20240618/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240628 +webdriver2-20240628 +28 June 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240628/ +https://www.w3.org/TR/2024/WD-webdriver2-20240628/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240717 +webdriver2-20240717 +17 July 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240717/ +https://www.w3.org/TR/2024/WD-webdriver2-20240717/ + + + +Simon Stewart +David Burns +- +d:webdriver2-20240723 +webdriver2-20240723 +23 July 2024 +WD +WebDriver +https://www.w3.org/TR/2024/WD-webdriver2-20240723/ +https://www.w3.org/TR/2024/WD-webdriver2-20240723/ + + + +Simon Stewart +David Burns +- +a:webgl +WEBGL +WEBGL-2 +- +d:webgl-1 +WEBGL-1 +9 August 2017 + +WebGL Specification, Version 1.0 +https://www.khronos.org/registry/webgl/specs/latest/1.0/ + + + + +Dean Jackson +Jeff Gilbert +- +d:webgl-1-20141027 +WEBGL-1-20141027 +27 October 2014 + +WebGL Specification +https://www.khronos.org/registry/webgl/specs/1.0.3/ +https://www.khronos.org/registry/webgl/specs/1.0.3/ + + + +Dean Jackson +- +a:webgl-103 +WEBGL-103 +WEBGL-1-20141027 +- +d:webgl-2 +WEBGL-2 +12 August 2017 + +WebGL 2.0 Specification +https://www.khronos.org/registry/webgl/specs/latest/2.0/ + + + + +Dean Jackson +Jeff Gilbert +- +d:webgl1 +WEBGL1 + +Editor's Draft +WebGL Specification +https://registry.khronos.org/webgl/specs/latest/1.0/ + + + + +- +d:webgl2 +WEBGL2 + +Editor's Draft +WebGL 2.0 Specification +https://registry.khronos.org/webgl/specs/latest/2.0/ + + + + +- +d:webgl_blend_equation_advanced_coherent +WEBGL_BLEND_EQUATION_ADVANCED_COHERENT + +Editor's Draft +WebGL WEBGL_blend_equation_advanced_coherent Extension Draft Specification +https://registry.khronos.org/webgl/extensions/WEBGL_blend_equation_advanced_coherent/ + + + + +- +d:webgl_clip_cull_distance +WEBGL_CLIP_CULL_DISTANCE + +Editor's Draft +WebGL WEBGL_clip_cull_distance Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_clip_cull_distance/ + + + + +- +d:webgl_color_buffer_float +WEBGL_COLOR_BUFFER_FLOAT + +Editor's Draft +WebGL WEBGL_color_buffer_float Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_color_buffer_float/ + + + + +- +d:webgl_compressed_texture_astc +WEBGL_COMPRESSED_TEXTURE_ASTC + +Editor's Draft +WebGL WEBGL_compressed_texture_astc Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_astc/ + + + + +- +d:webgl_compressed_texture_etc +WEBGL_COMPRESSED_TEXTURE_ETC + +Editor's Draft +WebGL WEBGL_compressed_texture_etc Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_etc/ + + + + +- +d:webgl_compressed_texture_etc1 +WEBGL_COMPRESSED_TEXTURE_ETC1 + +Editor's Draft +WebGL WEBGL_compressed_texture_etc1 Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_etc1/ + + + + +- +d:webgl_compressed_texture_pvrtc +WEBGL_COMPRESSED_TEXTURE_PVRTC + +Editor's Draft +WebGL WEBGL_compressed_texture_pvrtc Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_pvrtc/ + + + + +- +d:webgl_compressed_texture_s3tc +WEBGL_COMPRESSED_TEXTURE_S3TC + +Editor's Draft +WebGL WEBGL_compressed_texture_s3tc Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_s3tc/ + + + + +- +d:webgl_compressed_texture_s3tc_srgb +WEBGL_COMPRESSED_TEXTURE_S3TC_SRGB + +Editor's Draft +WebGL WEBGL_compressed_texture_s3tc_srgb Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_s3tc_srgb/ + + + + +- +d:webgl_debug_renderer_info +WEBGL_DEBUG_RENDERER_INFO + +Editor's Draft +WebGL WEBGL_debug_renderer_info Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_debug_renderer_info/ + + + + +- +d:webgl_debug_shaders +WEBGL_DEBUG_SHADERS + +Editor's Draft +WebGL WEBGL_debug_shaders Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_debug_shaders/ + + + + +- +d:webgl_depth_texture +WEBGL_DEPTH_TEXTURE + +Editor's Draft +WebGL WEBGL_depth_texture Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_depth_texture/ + + + + +- +d:webgl_draw_buffers +WEBGL_DRAW_BUFFERS + +Editor's Draft +WebGL WEBGL_draw_buffers Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_draw_buffers/ + + + + +- +d:webgl_draw_instanced_base_vertex_base_instance +WEBGL_DRAW_INSTANCED_BASE_VERTEX_BASE_INSTANCE + +Editor's Draft +WebGL WEBGL_draw_instanced_base_vertex_base_instance Extension Draft Specification +https://registry.khronos.org/webgl/extensions/WEBGL_draw_instanced_base_vertex_base_instance/ + + + + +- +d:webgl_lose_context +WEBGL_LOSE_CONTEXT + +Editor's Draft +WebGL WEBGL_lose_context Khronos Ratified Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_lose_context/ + + + + +- +d:webgl_multi_draw +WEBGL_MULTI_DRAW + +Editor's Draft +WebGL WEBGL_multi_draw Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_multi_draw/ + + + + +- +d:webgl_multi_draw_instanced_base_vertex_base_instance +WEBGL_MULTI_DRAW_INSTANCED_BASE_VERTEX_BASE_INSTANCE + +Editor's Draft +WebGL WEBGL_multi_draw_instanced_base_vertex_base_instance Extension Draft Specification +https://registry.khronos.org/webgl/extensions/WEBGL_multi_draw_instanced_base_vertex_base_instance/ + + + + +- +d:webgl_provoking_vertex +WEBGL_PROVOKING_VERTEX + +Editor's Draft +WebGL WEBGL_provoking_vertex Extension Specification +https://registry.khronos.org/webgl/extensions/WEBGL_provoking_vertex/ + + + + +- +d:webgpu +webgpu +21 August 2024 +WD +WebGPU +https://www.w3.org/TR/webgpu/ +https://gpuweb.github.io/gpuweb/ + + + +Kai Ninomiya +Brandon Jones +Jim Blandy +- +d:webgpu-20210518 +webgpu-20210518 +18 May 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210518/ +https://www.w3.org/TR/2021/WD-webgpu-20210518/ + + + +Dzmitry Malyshau +Kai Ninomiya +- +d:webgpu-20210526 +webgpu-20210526 +26 May 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210526/ +https://www.w3.org/TR/2021/WD-webgpu-20210526/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210527 +webgpu-20210527 +27 May 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210527/ +https://www.w3.org/TR/2021/WD-webgpu-20210527/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210528 +webgpu-20210528 +28 May 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210528/ +https://www.w3.org/TR/2021/WD-webgpu-20210528/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210531 +webgpu-20210531 +31 May 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210531/ +https://www.w3.org/TR/2021/WD-webgpu-20210531/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210601 +webgpu-20210601 +1 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210601/ +https://www.w3.org/TR/2021/WD-webgpu-20210601/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210602 +webgpu-20210602 +2 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210602/ +https://www.w3.org/TR/2021/WD-webgpu-20210602/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210603 +webgpu-20210603 +3 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210603/ +https://www.w3.org/TR/2021/WD-webgpu-20210603/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210604 +webgpu-20210604 +4 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210604/ +https://www.w3.org/TR/2021/WD-webgpu-20210604/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210608 +webgpu-20210608 +8 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210608/ +https://www.w3.org/TR/2021/WD-webgpu-20210608/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210609 +webgpu-20210609 +9 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210609/ +https://www.w3.org/TR/2021/WD-webgpu-20210609/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210610 +webgpu-20210610 +10 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210610/ +https://www.w3.org/TR/2021/WD-webgpu-20210610/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210614 +webgpu-20210614 +14 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210614/ +https://www.w3.org/TR/2021/WD-webgpu-20210614/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210615 +webgpu-20210615 +15 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210615/ +https://www.w3.org/TR/2021/WD-webgpu-20210615/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210616 +webgpu-20210616 +16 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210616/ +https://www.w3.org/TR/2021/WD-webgpu-20210616/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210617 +webgpu-20210617 +17 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210617/ +https://www.w3.org/TR/2021/WD-webgpu-20210617/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210618 +webgpu-20210618 +18 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210618/ +https://www.w3.org/TR/2021/WD-webgpu-20210618/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210620 +webgpu-20210620 +20 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210620/ +https://www.w3.org/TR/2021/WD-webgpu-20210620/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210622 +webgpu-20210622 +22 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210622/ +https://www.w3.org/TR/2021/WD-webgpu-20210622/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210623 +webgpu-20210623 +23 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210623/ +https://www.w3.org/TR/2021/WD-webgpu-20210623/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210624 +webgpu-20210624 +24 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210624/ +https://www.w3.org/TR/2021/WD-webgpu-20210624/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210628 +webgpu-20210628 +28 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210628/ +https://www.w3.org/TR/2021/WD-webgpu-20210628/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210629 +webgpu-20210629 +29 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210629/ +https://www.w3.org/TR/2021/WD-webgpu-20210629/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210630 +webgpu-20210630 +30 June 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210630/ +https://www.w3.org/TR/2021/WD-webgpu-20210630/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210706 +webgpu-20210706 +6 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210706/ +https://www.w3.org/TR/2021/WD-webgpu-20210706/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210707 +webgpu-20210707 +7 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210707/ +https://www.w3.org/TR/2021/WD-webgpu-20210707/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210708 +webgpu-20210708 +8 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210708/ +https://www.w3.org/TR/2021/WD-webgpu-20210708/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210711 +webgpu-20210711 +11 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210711/ +https://www.w3.org/TR/2021/WD-webgpu-20210711/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210712 +webgpu-20210712 +12 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210712/ +https://www.w3.org/TR/2021/WD-webgpu-20210712/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210713 +webgpu-20210713 +13 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210713/ +https://www.w3.org/TR/2021/WD-webgpu-20210713/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210714 +webgpu-20210714 +14 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210714/ +https://www.w3.org/TR/2021/WD-webgpu-20210714/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210715 +webgpu-20210715 +15 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210715/ +https://www.w3.org/TR/2021/WD-webgpu-20210715/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210716 +webgpu-20210716 +16 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210716/ +https://www.w3.org/TR/2021/WD-webgpu-20210716/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210717 +webgpu-20210717 +17 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210717/ +https://www.w3.org/TR/2021/WD-webgpu-20210717/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210719 +webgpu-20210719 +19 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210719/ +https://www.w3.org/TR/2021/WD-webgpu-20210719/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210720 +webgpu-20210720 +20 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210720/ +https://www.w3.org/TR/2021/WD-webgpu-20210720/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210721 +webgpu-20210721 +21 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210721/ +https://www.w3.org/TR/2021/WD-webgpu-20210721/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210722 +webgpu-20210722 +22 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210722/ +https://www.w3.org/TR/2021/WD-webgpu-20210722/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210723 +webgpu-20210723 +23 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210723/ +https://www.w3.org/TR/2021/WD-webgpu-20210723/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210726 +webgpu-20210726 +26 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210726/ +https://www.w3.org/TR/2021/WD-webgpu-20210726/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210727 +webgpu-20210727 +27 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210727/ +https://www.w3.org/TR/2021/WD-webgpu-20210727/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210728 +webgpu-20210728 +28 July 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210728/ +https://www.w3.org/TR/2021/WD-webgpu-20210728/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210803 +webgpu-20210803 +3 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210803/ +https://www.w3.org/TR/2021/WD-webgpu-20210803/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210804 +webgpu-20210804 +4 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210804/ +https://www.w3.org/TR/2021/WD-webgpu-20210804/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210806 +webgpu-20210806 +6 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210806/ +https://www.w3.org/TR/2021/WD-webgpu-20210806/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210818 +webgpu-20210818 +18 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210818/ +https://www.w3.org/TR/2021/WD-webgpu-20210818/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210823 +webgpu-20210823 +23 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210823/ +https://www.w3.org/TR/2021/WD-webgpu-20210823/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210824 +webgpu-20210824 +24 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210824/ +https://www.w3.org/TR/2021/WD-webgpu-20210824/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210825 +webgpu-20210825 +25 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210825/ +https://www.w3.org/TR/2021/WD-webgpu-20210825/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20210826 +webgpu-20210826 +26 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210826/ +https://www.w3.org/TR/2021/WD-webgpu-20210826/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170116 -webdriver-20170116 -webdriver1-20170116 +d:webgpu-20210831 +webgpu-20210831 +31 August 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210831/ +https://www.w3.org/TR/2021/WD-webgpu-20210831/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170117 -webdriver-20170117 -webdriver1-20170117 +d:webgpu-20210908 +webgpu-20210908 +8 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210908/ +https://www.w3.org/TR/2021/WD-webgpu-20210908/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170118 -webdriver-20170118 -webdriver1-20170118 +d:webgpu-20210910 +webgpu-20210910 +10 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210910/ +https://www.w3.org/TR/2021/WD-webgpu-20210910/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170119 -webdriver-20170119 -webdriver1-20170119 +d:webgpu-20210915 +webgpu-20210915 +15 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210915/ +https://www.w3.org/TR/2021/WD-webgpu-20210915/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170120 -webdriver-20170120 -webdriver1-20170120 +d:webgpu-20210917 +webgpu-20210917 +17 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210917/ +https://www.w3.org/TR/2021/WD-webgpu-20210917/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170222 -webdriver-20170222 -webdriver1-20170222 +d:webgpu-20210920 +webgpu-20210920 +20 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210920/ +https://www.w3.org/TR/2021/WD-webgpu-20210920/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170223 -webdriver-20170223 -webdriver1-20170223 +d:webgpu-20210921 +webgpu-20210921 +21 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210921/ +https://www.w3.org/TR/2021/WD-webgpu-20210921/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170224 -webdriver-20170224 -webdriver1-20170224 +d:webgpu-20210928 +webgpu-20210928 +28 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210928/ +https://www.w3.org/TR/2021/WD-webgpu-20210928/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170228 -webdriver-20170228 -webdriver1-20170228 +d:webgpu-20210929 +webgpu-20210929 +29 September 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20210929/ +https://www.w3.org/TR/2021/WD-webgpu-20210929/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170301 -webdriver-20170301 -webdriver1-20170301 +d:webgpu-20211004 +webgpu-20211004 +4 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211004/ +https://www.w3.org/TR/2021/WD-webgpu-20211004/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170302 -webdriver-20170302 -webdriver1-20170302 +d:webgpu-20211006 +webgpu-20211006 +6 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211006/ +https://www.w3.org/TR/2021/WD-webgpu-20211006/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170306 -webdriver-20170306 -webdriver1-20170306 +d:webgpu-20211012 +webgpu-20211012 +12 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211012/ +https://www.w3.org/TR/2021/WD-webgpu-20211012/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20211013 +webgpu-20211013 +13 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211013/ +https://www.w3.org/TR/2021/WD-webgpu-20211013/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20211014 +webgpu-20211014 +14 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211014/ +https://www.w3.org/TR/2021/WD-webgpu-20211014/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20211015 +webgpu-20211015 +15 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211015/ +https://www.w3.org/TR/2021/WD-webgpu-20211015/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20211018 +webgpu-20211018 +18 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211018/ +https://www.w3.org/TR/2021/WD-webgpu-20211018/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan +- +d:webgpu-20211019 +webgpu-20211019 +19 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211019/ +https://www.w3.org/TR/2021/WD-webgpu-20211019/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170307 -webdriver-20170307 -webdriver1-20170307 +d:webgpu-20211022 +webgpu-20211022 +22 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211022/ +https://www.w3.org/TR/2021/WD-webgpu-20211022/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170308 -webdriver-20170308 -webdriver1-20170308 +d:webgpu-20211025 +webgpu-20211025 +25 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211025/ +https://www.w3.org/TR/2021/WD-webgpu-20211025/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170312 -webdriver-20170312 -webdriver1-20170312 +d:webgpu-20211026 +webgpu-20211026 +26 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211026/ +https://www.w3.org/TR/2021/WD-webgpu-20211026/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170316 -webdriver-20170316 -webdriver1-20170316 +d:webgpu-20211028 +webgpu-20211028 +28 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211028/ +https://www.w3.org/TR/2021/WD-webgpu-20211028/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170320 -webdriver-20170320 -webdriver1-20170320 +d:webgpu-20211029 +webgpu-20211029 +29 October 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211029/ +https://www.w3.org/TR/2021/WD-webgpu-20211029/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170322 -webdriver-20170322 -webdriver1-20170322 +d:webgpu-20211101 +webgpu-20211101 +1 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211101/ +https://www.w3.org/TR/2021/WD-webgpu-20211101/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170324 -webdriver-20170324 -webdriver1-20170324 +d:webgpu-20211102 +webgpu-20211102 +2 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211102/ +https://www.w3.org/TR/2021/WD-webgpu-20211102/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170329 -webdriver-20170329 -webdriver1-20170329 +d:webgpu-20211112 +webgpu-20211112 +12 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211112/ +https://www.w3.org/TR/2021/WD-webgpu-20211112/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20170330 -webdriver-20170330 -webdriver1-20170330 +d:webgpu-20211113 +webgpu-20211113 +13 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211113/ +https://www.w3.org/TR/2021/WD-webgpu-20211113/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20180426 -webdriver-20180426 -webdriver1-20180426 +d:webgpu-20211116 +webgpu-20211116 +16 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211116/ +https://www.w3.org/TR/2021/WD-webgpu-20211116/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -a:webdriver-20180605 -webdriver-20180605 -webdriver1-20180605 +d:webgpu-20211117 +webgpu-20211117 +17 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211117/ +https://www.w3.org/TR/2021/WD-webgpu-20211117/ + + + +Dzmitry Malyshau +Kai Ninomiya +Justin Fan - -d:webdriver1 -webdriver1 -5 June 2018 -REC -WebDriver -https://www.w3.org/TR/webdriver1/ -https://w3c.github.io/webdriver/ +d:webgpu-20211118 +webgpu-20211118 +18 November 2021 +WD +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211118/ +https://www.w3.org/TR/2021/WD-webgpu-20211118/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20120710 -webdriver1-20120710 -10 July 2012 +d:webgpu-20211119 +webgpu-20211119 +19 November 2021 WD -WebDriver -https://www.w3.org/TR/2012/WD-webdriver-20120710/ -https://www.w3.org/TR/2012/WD-webdriver-20120710/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211119/ +https://www.w3.org/TR/2021/WD-webgpu-20211119/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20130117 -webdriver1-20130117 -17 January 2013 +d:webgpu-20211123 +webgpu-20211123 +23 November 2021 WD -WebDriver -https://www.w3.org/TR/2013/WD-webdriver-20130117/ -https://www.w3.org/TR/2013/WD-webdriver-20130117/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211123/ +https://www.w3.org/TR/2021/WD-webgpu-20211123/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20130312 -webdriver1-20130312 -12 March 2013 +d:webgpu-20211124 +webgpu-20211124 +24 November 2021 WD -WebDriver -https://www.w3.org/TR/2013/WD-webdriver-20130312/ -https://www.w3.org/TR/2013/WD-webdriver-20130312/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211124/ +https://www.w3.org/TR/2021/WD-webgpu-20211124/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150803 -webdriver1-20150803 -3 August 2015 +d:webgpu-20211125 +webgpu-20211125 +25 November 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150803/ -https://www.w3.org/TR/2015/WD-webdriver-20150803/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211125/ +https://www.w3.org/TR/2021/WD-webgpu-20211125/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150808 -webdriver1-20150808 -8 August 2015 +d:webgpu-20211129 +webgpu-20211129 +29 November 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150808/ -https://www.w3.org/TR/2015/WD-webdriver-20150808/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211129/ +https://www.w3.org/TR/2021/WD-webgpu-20211129/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150827 -webdriver1-20150827 -27 August 2015 +d:webgpu-20211130 +webgpu-20211130 +30 November 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150827/ -https://www.w3.org/TR/2015/WD-webdriver-20150827/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211130/ +https://www.w3.org/TR/2021/WD-webgpu-20211130/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150902 -webdriver1-20150902 -2 September 2015 +d:webgpu-20211201 +webgpu-20211201 +1 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150902/ -https://www.w3.org/TR/2015/WD-webdriver-20150902/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211201/ +https://www.w3.org/TR/2021/WD-webgpu-20211201/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150909 -webdriver1-20150909 -9 September 2015 +d:webgpu-20211202 +webgpu-20211202 +2 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150909/ -https://www.w3.org/TR/2015/WD-webdriver-20150909/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211202/ +https://www.w3.org/TR/2021/WD-webgpu-20211202/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150915 -webdriver1-20150915 -15 September 2015 +d:webgpu-20211203 +webgpu-20211203 +3 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150915/ -https://www.w3.org/TR/2015/WD-webdriver-20150915/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211203/ +https://www.w3.org/TR/2021/WD-webgpu-20211203/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150918 -webdriver1-20150918 -18 September 2015 +d:webgpu-20211205 +webgpu-20211205 +5 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150918/ -https://www.w3.org/TR/2015/WD-webdriver-20150918/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211205/ +https://www.w3.org/TR/2021/WD-webgpu-20211205/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20150921 -webdriver1-20150921 -21 September 2015 +d:webgpu-20211206 +webgpu-20211206 +6 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20150921/ -https://www.w3.org/TR/2015/WD-webdriver-20150921/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211206/ +https://www.w3.org/TR/2021/WD-webgpu-20211206/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20151025 -webdriver1-20151025 -25 October 2015 +d:webgpu-20211207 +webgpu-20211207 +7 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20151025/ -https://www.w3.org/TR/2015/WD-webdriver-20151025/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211207/ +https://www.w3.org/TR/2021/WD-webgpu-20211207/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20151109 -webdriver1-20151109 -9 November 2015 +d:webgpu-20211208 +webgpu-20211208 +8 December 2021 WD -WebDriver -https://www.w3.org/TR/2015/WD-webdriver-20151109/ -https://www.w3.org/TR/2015/WD-webdriver-20151109/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211208/ +https://www.w3.org/TR/2021/WD-webgpu-20211208/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20160120 -webdriver1-20160120 -20 January 2016 +d:webgpu-20211210 +webgpu-20211210 +10 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20160120/ -https://www.w3.org/TR/2016/WD-webdriver-20160120/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211210/ +https://www.w3.org/TR/2021/WD-webgpu-20211210/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20160406 -webdriver1-20160406 -6 April 2016 +d:webgpu-20211214 +webgpu-20211214 +14 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20160406/ -https://www.w3.org/TR/2016/WD-webdriver-20160406/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211214/ +https://www.w3.org/TR/2021/WD-webgpu-20211214/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20160426 -webdriver1-20160426 -26 April 2016 +d:webgpu-20211215 +webgpu-20211215 +15 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20160426/ -https://www.w3.org/TR/2016/WD-webdriver-20160426/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211215/ +https://www.w3.org/TR/2021/WD-webgpu-20211215/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20160523 -webdriver1-20160523 -23 May 2016 +d:webgpu-20211216 +webgpu-20211216 +16 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20160523/ -https://www.w3.org/TR/2016/WD-webdriver-20160523/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211216/ +https://www.w3.org/TR/2021/WD-webgpu-20211216/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20160830 -webdriver1-20160830 -30 August 2016 +d:webgpu-20211220 +webgpu-20211220 +20 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20160830/ -https://www.w3.org/TR/2016/WD-webdriver-20160830/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211220/ +https://www.w3.org/TR/2021/WD-webgpu-20211220/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161013 -webdriver1-20161013 -13 October 2016 +d:webgpu-20211221 +webgpu-20211221 +21 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161013/ -https://www.w3.org/TR/2016/WD-webdriver-20161013/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211221/ +https://www.w3.org/TR/2021/WD-webgpu-20211221/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161019 -webdriver1-20161019 -19 October 2016 +d:webgpu-20211222 +webgpu-20211222 +22 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161019/ -https://www.w3.org/TR/2016/WD-webdriver-20161019/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211222/ +https://www.w3.org/TR/2021/WD-webgpu-20211222/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161021 -webdriver1-20161021 -21 October 2016 +d:webgpu-20211223 +webgpu-20211223 +23 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161021/ -https://www.w3.org/TR/2016/WD-webdriver-20161021/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211223/ +https://www.w3.org/TR/2021/WD-webgpu-20211223/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161025 -webdriver1-20161025 -25 October 2016 +d:webgpu-20211224 +webgpu-20211224 +24 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161025/ -https://www.w3.org/TR/2016/WD-webdriver-20161025/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211224/ +https://www.w3.org/TR/2021/WD-webgpu-20211224/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161031 -webdriver1-20161031 -31 October 2016 +d:webgpu-20211228 +webgpu-20211228 +28 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161031/ -https://www.w3.org/TR/2016/WD-webdriver-20161031/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211228/ +https://www.w3.org/TR/2021/WD-webgpu-20211228/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161116 -webdriver1-20161116 -16 November 2016 +d:webgpu-20211229 +webgpu-20211229 +29 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161116/ -https://www.w3.org/TR/2016/WD-webdriver-20161116/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211229/ +https://www.w3.org/TR/2021/WD-webgpu-20211229/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20161129 -webdriver1-20161129 -29 November 2016 +d:webgpu-20211230 +webgpu-20211230 +30 December 2021 WD -WebDriver -https://www.w3.org/TR/2016/WD-webdriver-20161129/ -https://www.w3.org/TR/2016/WD-webdriver-20161129/ +WebGPU +https://www.w3.org/TR/2021/WD-webgpu-20211230/ +https://www.w3.org/TR/2021/WD-webgpu-20211230/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20170105 -webdriver1-20170105 -5 January 2017 +d:webgpu-20220104 +webgpu-20220104 +4 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170105/ -https://www.w3.org/TR/2017/WD-webdriver-20170105/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220104/ +https://www.w3.org/TR/2022/WD-webgpu-20220104/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20170110 -webdriver1-20170110 -10 January 2017 +d:webgpu-20220105 +webgpu-20220105 +5 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170110/ -https://www.w3.org/TR/2017/WD-webdriver-20170110/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220105/ +https://www.w3.org/TR/2022/WD-webgpu-20220105/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20170111 -webdriver1-20170111 -11 January 2017 +d:webgpu-20220106 +webgpu-20220106 +6 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170111/ -https://www.w3.org/TR/2017/WD-webdriver-20170111/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220106/ +https://www.w3.org/TR/2022/WD-webgpu-20220106/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20170112 -webdriver1-20170112 -12 January 2017 +d:webgpu-20220107 +webgpu-20220107 +7 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170112/ -https://www.w3.org/TR/2017/WD-webdriver-20170112/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220107/ +https://www.w3.org/TR/2022/WD-webgpu-20220107/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya - -d:webdriver1-20170113 -webdriver1-20170113 -13 January 2017 +d:webgpu-20220110 +webgpu-20220110 +10 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170113/ -https://www.w3.org/TR/2017/WD-webdriver-20170113/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220110/ +https://www.w3.org/TR/2022/WD-webgpu-20220110/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170116 -webdriver1-20170116 -16 January 2017 +d:webgpu-20220111 +webgpu-20220111 +11 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170116/ -https://www.w3.org/TR/2017/WD-webdriver-20170116/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220111/ +https://www.w3.org/TR/2022/WD-webgpu-20220111/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170117 -webdriver1-20170117 -17 January 2017 +d:webgpu-20220112 +webgpu-20220112 +12 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170117/ -https://www.w3.org/TR/2017/WD-webdriver-20170117/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220112/ +https://www.w3.org/TR/2022/WD-webgpu-20220112/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170118 -webdriver1-20170118 -18 January 2017 +d:webgpu-20220113 +webgpu-20220113 +13 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170118/ -https://www.w3.org/TR/2017/WD-webdriver-20170118/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220113/ +https://www.w3.org/TR/2022/WD-webgpu-20220113/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170119 -webdriver1-20170119 -19 January 2017 +d:webgpu-20220117 +webgpu-20220117 +17 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170119/ -https://www.w3.org/TR/2017/WD-webdriver-20170119/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220117/ +https://www.w3.org/TR/2022/WD-webgpu-20220117/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170120 -webdriver1-20170120 -20 January 2017 +d:webgpu-20220118 +webgpu-20220118 +18 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170120/ -https://www.w3.org/TR/2017/WD-webdriver-20170120/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220118/ +https://www.w3.org/TR/2022/WD-webgpu-20220118/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170222 -webdriver1-20170222 -22 February 2017 +d:webgpu-20220119 +webgpu-20220119 +19 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170222/ -https://www.w3.org/TR/2017/WD-webdriver-20170222/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220119/ +https://www.w3.org/TR/2022/WD-webgpu-20220119/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170223 -webdriver1-20170223 -23 February 2017 +d:webgpu-20220125 +webgpu-20220125 +25 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170223/ -https://www.w3.org/TR/2017/WD-webdriver-20170223/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220125/ +https://www.w3.org/TR/2022/WD-webgpu-20220125/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170224 -webdriver1-20170224 -24 February 2017 +d:webgpu-20220126 +webgpu-20220126 +26 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170224/ -https://www.w3.org/TR/2017/WD-webdriver-20170224/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220126/ +https://www.w3.org/TR/2022/WD-webgpu-20220126/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170228 -webdriver1-20170228 -28 February 2017 +d:webgpu-20220127 +webgpu-20220127 +27 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170228/ -https://www.w3.org/TR/2017/WD-webdriver-20170228/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220127/ +https://www.w3.org/TR/2022/WD-webgpu-20220127/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170301 -webdriver1-20170301 -1 March 2017 +d:webgpu-20220128 +webgpu-20220128 +28 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170301/ -https://www.w3.org/TR/2017/WD-webdriver-20170301/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220128/ +https://www.w3.org/TR/2022/WD-webgpu-20220128/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170302 -webdriver1-20170302 -2 March 2017 +d:webgpu-20220131 +webgpu-20220131 +31 January 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170302/ -https://www.w3.org/TR/2017/WD-webdriver-20170302/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220131/ +https://www.w3.org/TR/2022/WD-webgpu-20220131/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170306 -webdriver1-20170306 -6 March 2017 +d:webgpu-20220202 +webgpu-20220202 +2 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170306/ -https://www.w3.org/TR/2017/WD-webdriver-20170306/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220202/ +https://www.w3.org/TR/2022/WD-webgpu-20220202/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170307 -webdriver1-20170307 -7 March 2017 +d:webgpu-20220203 +webgpu-20220203 +3 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170307/ -https://www.w3.org/TR/2017/WD-webdriver-20170307/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220203/ +https://www.w3.org/TR/2022/WD-webgpu-20220203/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170308 -webdriver1-20170308 -8 March 2017 +d:webgpu-20220204 +webgpu-20220204 +4 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170308/ -https://www.w3.org/TR/2017/WD-webdriver-20170308/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220204/ +https://www.w3.org/TR/2022/WD-webgpu-20220204/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170312 -webdriver1-20170312 -12 March 2017 +d:webgpu-20220205 +webgpu-20220205 +5 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170312/ -https://www.w3.org/TR/2017/WD-webdriver-20170312/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220205/ +https://www.w3.org/TR/2022/WD-webgpu-20220205/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170316 -webdriver1-20170316 -16 March 2017 +d:webgpu-20220207 +webgpu-20220207 +7 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170316/ -https://www.w3.org/TR/2017/WD-webdriver-20170316/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220207/ +https://www.w3.org/TR/2022/WD-webgpu-20220207/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170320 -webdriver1-20170320 -20 March 2017 +d:webgpu-20220208 +webgpu-20220208 +8 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170320/ -https://www.w3.org/TR/2017/WD-webdriver-20170320/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220208/ +https://www.w3.org/TR/2022/WD-webgpu-20220208/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170322 -webdriver1-20170322 -22 March 2017 +d:webgpu-20220209 +webgpu-20220209 +9 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170322/ -https://www.w3.org/TR/2017/WD-webdriver-20170322/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220209/ +https://www.w3.org/TR/2022/WD-webgpu-20220209/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170324 -webdriver1-20170324 -24 March 2017 +d:webgpu-20220210 +webgpu-20220210 +10 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170324/ -https://www.w3.org/TR/2017/WD-webdriver-20170324/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220210/ +https://www.w3.org/TR/2022/WD-webgpu-20220210/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170329 -webdriver1-20170329 -29 March 2017 +d:webgpu-20220211 +webgpu-20220211 +11 February 2022 WD -WebDriver -https://www.w3.org/TR/2017/WD-webdriver-20170329/ -https://www.w3.org/TR/2017/WD-webdriver-20170329/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220211/ +https://www.w3.org/TR/2022/WD-webgpu-20220211/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20170330 -webdriver1-20170330 -30 March 2017 -CR -WebDriver -https://www.w3.org/TR/2017/CR-webdriver-20170330/ -https://www.w3.org/TR/2017/CR-webdriver-20170330/ +d:webgpu-20220214 +webgpu-20220214 +14 February 2022 +WD +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220214/ +https://www.w3.org/TR/2022/WD-webgpu-20220214/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20180426 -webdriver1-20180426 -26 April 2018 -PR -WebDriver -https://www.w3.org/TR/2018/PR-webdriver1-20180426/ -https://www.w3.org/TR/2018/PR-webdriver1-20180426/ +d:webgpu-20220215 +webgpu-20220215 +15 February 2022 +WD +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220215/ +https://www.w3.org/TR/2022/WD-webgpu-20220215/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver1-20180605 -webdriver1-20180605 -5 June 2018 -REC -WebDriver -https://www.w3.org/TR/2018/REC-webdriver1-20180605/ -https://www.w3.org/TR/2018/REC-webdriver1-20180605/ +d:webgpu-20220217 +webgpu-20220217 +17 February 2022 +WD +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220217/ +https://www.w3.org/TR/2022/WD-webgpu-20220217/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2 -webdriver2 -19 January 2023 +d:webgpu-20220218 +webgpu-20220218 +18 February 2022 WD -WebDriver -https://www.w3.org/TR/webdriver2/ -https://w3c.github.io/webdriver/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220218/ +https://www.w3.org/TR/2022/WD-webgpu-20220218/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20190912 -webdriver2-20190912 -12 September 2019 +d:webgpu-20220222 +webgpu-20220222 +22 February 2022 WD -WebDriver -https://www.w3.org/TR/2019/WD-webdriver2-20190912/ -https://www.w3.org/TR/2019/WD-webdriver2-20190912/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220222/ +https://www.w3.org/TR/2022/WD-webgpu-20220222/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20191124 -webdriver2-20191124 -24 November 2019 +d:webgpu-20220223 +webgpu-20220223 +23 February 2022 WD -WebDriver - Level 2 -https://www.w3.org/TR/2019/WD-webdriver2-20191124/ -https://www.w3.org/TR/2019/WD-webdriver2-20191124/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220223/ +https://www.w3.org/TR/2022/WD-webgpu-20220223/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200327 -webdriver2-20200327 -27 March 2020 +d:webgpu-20220224 +webgpu-20220224 +24 February 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200327/ -https://www.w3.org/TR/2020/WD-webdriver2-20200327/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220224/ +https://www.w3.org/TR/2022/WD-webgpu-20220224/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200519 -webdriver2-20200519 -19 May 2020 +d:webgpu-20220225 +webgpu-20220225 +25 February 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200519/ -https://www.w3.org/TR/2020/WD-webdriver2-20200519/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220225/ +https://www.w3.org/TR/2022/WD-webgpu-20220225/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200521 -webdriver2-20200521 -21 May 2020 +d:webgpu-20220302 +webgpu-20220302 +2 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200521/ -https://www.w3.org/TR/2020/WD-webdriver2-20200521/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220302/ +https://www.w3.org/TR/2022/WD-webgpu-20220302/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200528 -webdriver2-20200528 -28 May 2020 +d:webgpu-20220303 +webgpu-20220303 +3 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200528/ -https://www.w3.org/TR/2020/WD-webdriver2-20200528/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220303/ +https://www.w3.org/TR/2022/WD-webgpu-20220303/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200529 -webdriver2-20200529 -29 May 2020 +d:webgpu-20220310 +webgpu-20220310 +10 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200529/ -https://www.w3.org/TR/2020/WD-webdriver2-20200529/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220310/ +https://www.w3.org/TR/2022/WD-webgpu-20220310/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200604 -webdriver2-20200604 -4 June 2020 +d:webgpu-20220315 +webgpu-20220315 +15 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200604/ -https://www.w3.org/TR/2020/WD-webdriver2-20200604/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220315/ +https://www.w3.org/TR/2022/WD-webgpu-20220315/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200610 -webdriver2-20200610 -10 June 2020 +d:webgpu-20220316 +webgpu-20220316 +16 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200610/ -https://www.w3.org/TR/2020/WD-webdriver2-20200610/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220316/ +https://www.w3.org/TR/2022/WD-webgpu-20220316/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200717 -webdriver2-20200717 -17 July 2020 +d:webgpu-20220319 +webgpu-20220319 +19 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200717/ -https://www.w3.org/TR/2020/WD-webdriver2-20200717/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220319/ +https://www.w3.org/TR/2022/WD-webgpu-20220319/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20200824 -webdriver2-20200824 -24 August 2020 +d:webgpu-20220321 +webgpu-20220321 +21 March 2022 WD -WebDriver -https://www.w3.org/TR/2020/WD-webdriver2-20200824/ -https://www.w3.org/TR/2020/WD-webdriver2-20200824/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220321/ +https://www.w3.org/TR/2022/WD-webgpu-20220321/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20210921 -webdriver2-20210921 -21 September 2021 +d:webgpu-20220323 +webgpu-20220323 +23 March 2022 WD -WebDriver -https://www.w3.org/TR/2021/WD-webdriver2-20210921/ -https://www.w3.org/TR/2021/WD-webdriver2-20210921/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220323/ +https://www.w3.org/TR/2022/WD-webgpu-20220323/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20211013 -webdriver2-20211013 -13 October 2021 +d:webgpu-20220324 +webgpu-20220324 +24 March 2022 WD -WebDriver -https://www.w3.org/TR/2021/WD-webdriver2-20211013/ -https://www.w3.org/TR/2021/WD-webdriver2-20211013/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220324/ +https://www.w3.org/TR/2022/WD-webgpu-20220324/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20211122 -webdriver2-20211122 -22 November 2021 +d:webgpu-20220325 +webgpu-20220325 +25 March 2022 WD -WebDriver -https://www.w3.org/TR/2021/WD-webdriver2-20211122/ -https://www.w3.org/TR/2021/WD-webdriver2-20211122/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220325/ +https://www.w3.org/TR/2022/WD-webgpu-20220325/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220214 -webdriver2-20220214 -14 February 2022 +d:webgpu-20220326 +webgpu-20220326 +26 March 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220214/ -https://www.w3.org/TR/2022/WD-webdriver2-20220214/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220326/ +https://www.w3.org/TR/2022/WD-webgpu-20220326/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220315 -webdriver2-20220315 -15 March 2022 +d:webgpu-20220328 +webgpu-20220328 +28 March 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220315/ -https://www.w3.org/TR/2022/WD-webdriver2-20220315/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220328/ +https://www.w3.org/TR/2022/WD-webgpu-20220328/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220401 -webdriver2-20220401 -1 April 2022 +d:webgpu-20220329 +webgpu-20220329 +29 March 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220401/ -https://www.w3.org/TR/2022/WD-webdriver2-20220401/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220329/ +https://www.w3.org/TR/2022/WD-webgpu-20220329/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220525 -webdriver2-20220525 -25 May 2022 +d:webgpu-20220331 +webgpu-20220331 +31 March 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220525/ -https://www.w3.org/TR/2022/WD-webdriver2-20220525/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220331/ +https://www.w3.org/TR/2022/WD-webgpu-20220331/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220615 -webdriver2-20220615 -15 June 2022 +d:webgpu-20220403 +webgpu-20220403 +3 April 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220615/ -https://www.w3.org/TR/2022/WD-webdriver2-20220615/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220403/ +https://www.w3.org/TR/2022/WD-webgpu-20220403/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220624 -webdriver2-20220624 -24 June 2022 +d:webgpu-20220404 +webgpu-20220404 +4 April 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220624/ -https://www.w3.org/TR/2022/WD-webdriver2-20220624/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220404/ +https://www.w3.org/TR/2022/WD-webgpu-20220404/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220825 -webdriver2-20220825 -25 August 2022 +d:webgpu-20220506 +webgpu-20220506 +6 May 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220825/ -https://www.w3.org/TR/2022/WD-webdriver2-20220825/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220506/ +https://www.w3.org/TR/2022/WD-webgpu-20220506/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20220921 -webdriver2-20220921 -21 September 2022 +d:webgpu-20220509 +webgpu-20220509 +9 May 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20220921/ -https://www.w3.org/TR/2022/WD-webdriver2-20220921/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220509/ +https://www.w3.org/TR/2022/WD-webgpu-20220509/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20221013 -webdriver2-20221013 -13 October 2022 +d:webgpu-20220510 +webgpu-20220510 +10 May 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20221013/ -https://www.w3.org/TR/2022/WD-webdriver2-20221013/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220510/ +https://www.w3.org/TR/2022/WD-webgpu-20220510/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20221019 -webdriver2-20221019 -19 October 2022 +d:webgpu-20220511 +webgpu-20220511 +11 May 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20221019/ -https://www.w3.org/TR/2022/WD-webdriver2-20221019/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220511/ +https://www.w3.org/TR/2022/WD-webgpu-20220511/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20221025 -webdriver2-20221025 -25 October 2022 +d:webgpu-20220512 +webgpu-20220512 +12 May 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20221025/ -https://www.w3.org/TR/2022/WD-webdriver2-20221025/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220512/ +https://www.w3.org/TR/2022/WD-webgpu-20220512/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20221216 -webdriver2-20221216 -16 December 2022 +d:webgpu-20220513 +webgpu-20220513 +13 May 2022 WD -WebDriver -https://www.w3.org/TR/2022/WD-webdriver2-20221216/ -https://www.w3.org/TR/2022/WD-webdriver2-20221216/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220513/ +https://www.w3.org/TR/2022/WD-webgpu-20220513/ -Simon Stewart -David Burns +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webdriver2-20230119 -webdriver2-20230119 -19 January 2023 +d:webgpu-20220516 +webgpu-20220516 +16 May 2022 WD -WebDriver -https://www.w3.org/TR/2023/WD-webdriver2-20230119/ -https://www.w3.org/TR/2023/WD-webdriver2-20230119/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220516/ +https://www.w3.org/TR/2022/WD-webgpu-20220516/ -Simon Stewart -David Burns -- -a:webgl -WEBGL -WEBGL-2 +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webgl-1 -WEBGL-1 -9 August 2017 - -WebGL Specification, Version 1.0 -https://www.khronos.org/registry/webgl/specs/latest/1.0/ - +d:webgpu-20220517 +webgpu-20220517 +17 May 2022 +WD +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220517/ +https://www.w3.org/TR/2022/WD-webgpu-20220517/ -Dean Jackson -Jeff Gilbert +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webgl-1-20141027 -WEBGL-1-20141027 -27 October 2014 - -WebGL Specification -https://www.khronos.org/registry/webgl/specs/1.0.3/ -https://www.khronos.org/registry/webgl/specs/1.0.3/ +d:webgpu-20220518 +webgpu-20220518 +18 May 2022 +WD +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220518/ +https://www.w3.org/TR/2022/WD-webgpu-20220518/ -Dean Jackson -- -a:webgl-103 -WEBGL-103 -WEBGL-1-20141027 +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webgl-2 -WEBGL-2 -12 August 2017 - -WebGL 2.0 Specification -https://www.khronos.org/registry/webgl/specs/latest/2.0/ - +d:webgpu-20220520 +webgpu-20220520 +20 May 2022 +WD +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20220520/ +https://www.w3.org/TR/2022/WD-webgpu-20220520/ -Dean Jackson -Jeff Gilbert +Dzmitry Malyshau +Kai Ninomiya +Brandon Jones - -d:webgpu -webgpu -18 January 2023 +d:webgpu-20220521 +webgpu-20220521 +21 May 2022 WD WebGPU -https://www.w3.org/TR/webgpu/ -https://gpuweb.github.io/gpuweb/ +https://www.w3.org/TR/2022/WD-webgpu-20220521/ +https://www.w3.org/TR/2022/WD-webgpu-20220521/ +Dzmitry Malyshau Kai Ninomiya Brandon Jones -Myles Maxfield - -d:webgpu-20210518 -webgpu-20210518 -18 May 2021 +d:webgpu-20220603 +webgpu-20220603 +3 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210518/ -https://www.w3.org/TR/2021/WD-webgpu-20210518/ +https://www.w3.org/TR/2022/WD-webgpu-20220603/ +https://www.w3.org/TR/2022/WD-webgpu-20220603/ Dzmitry Malyshau Kai Ninomiya +Brandon Jones - -d:webgpu-20210526 -webgpu-20210526 -26 May 2021 +d:webgpu-20220606 +webgpu-20220606 +6 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210526/ -https://www.w3.org/TR/2021/WD-webgpu-20210526/ +https://www.w3.org/TR/2022/WD-webgpu-20220606/ +https://www.w3.org/TR/2022/WD-webgpu-20220606/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210527 -webgpu-20210527 -27 May 2021 +d:webgpu-20220607 +webgpu-20220607 +7 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210527/ -https://www.w3.org/TR/2021/WD-webgpu-20210527/ +https://www.w3.org/TR/2022/WD-webgpu-20220607/ +https://www.w3.org/TR/2022/WD-webgpu-20220607/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210528 -webgpu-20210528 -28 May 2021 +d:webgpu-20220608 +webgpu-20220608 +8 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210528/ -https://www.w3.org/TR/2021/WD-webgpu-20210528/ +https://www.w3.org/TR/2022/WD-webgpu-20220608/ +https://www.w3.org/TR/2022/WD-webgpu-20220608/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210531 -webgpu-20210531 -31 May 2021 +d:webgpu-20220609 +webgpu-20220609 +9 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210531/ -https://www.w3.org/TR/2021/WD-webgpu-20210531/ +https://www.w3.org/TR/2022/WD-webgpu-20220609/ +https://www.w3.org/TR/2022/WD-webgpu-20220609/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210601 -webgpu-20210601 -1 June 2021 +d:webgpu-20220610 +webgpu-20220610 +10 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210601/ -https://www.w3.org/TR/2021/WD-webgpu-20210601/ +https://www.w3.org/TR/2022/WD-webgpu-20220610/ +https://www.w3.org/TR/2022/WD-webgpu-20220610/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210602 -webgpu-20210602 -2 June 2021 +d:webgpu-20220611 +webgpu-20220611 +11 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210602/ -https://www.w3.org/TR/2021/WD-webgpu-20210602/ +https://www.w3.org/TR/2022/WD-webgpu-20220611/ +https://www.w3.org/TR/2022/WD-webgpu-20220611/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210603 -webgpu-20210603 -3 June 2021 +d:webgpu-20220613 +webgpu-20220613 +13 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210603/ -https://www.w3.org/TR/2021/WD-webgpu-20210603/ +https://www.w3.org/TR/2022/WD-webgpu-20220613/ +https://www.w3.org/TR/2022/WD-webgpu-20220613/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210604 -webgpu-20210604 -4 June 2021 +d:webgpu-20220614 +webgpu-20220614 +14 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210604/ -https://www.w3.org/TR/2021/WD-webgpu-20210604/ +https://www.w3.org/TR/2022/WD-webgpu-20220614/ +https://www.w3.org/TR/2022/WD-webgpu-20220614/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210608 -webgpu-20210608 -8 June 2021 +d:webgpu-20220616 +webgpu-20220616 +16 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210608/ -https://www.w3.org/TR/2021/WD-webgpu-20210608/ +https://www.w3.org/TR/2022/WD-webgpu-20220616/ +https://www.w3.org/TR/2022/WD-webgpu-20220616/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210609 -webgpu-20210609 -9 June 2021 +d:webgpu-20220617 +webgpu-20220617 +17 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210609/ -https://www.w3.org/TR/2021/WD-webgpu-20210609/ +https://www.w3.org/TR/2022/WD-webgpu-20220617/ +https://www.w3.org/TR/2022/WD-webgpu-20220617/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210610 -webgpu-20210610 -10 June 2021 +d:webgpu-20220623 +webgpu-20220623 +23 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210610/ -https://www.w3.org/TR/2021/WD-webgpu-20210610/ +https://www.w3.org/TR/2022/WD-webgpu-20220623/ +https://www.w3.org/TR/2022/WD-webgpu-20220623/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210614 -webgpu-20210614 -14 June 2021 +d:webgpu-20220624 +webgpu-20220624 +24 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210614/ -https://www.w3.org/TR/2021/WD-webgpu-20210614/ +https://www.w3.org/TR/2022/WD-webgpu-20220624/ +https://www.w3.org/TR/2022/WD-webgpu-20220624/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210615 -webgpu-20210615 -15 June 2021 +d:webgpu-20220627 +webgpu-20220627 +27 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210615/ -https://www.w3.org/TR/2021/WD-webgpu-20210615/ +https://www.w3.org/TR/2022/WD-webgpu-20220627/ +https://www.w3.org/TR/2022/WD-webgpu-20220627/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210616 -webgpu-20210616 -16 June 2021 +d:webgpu-20220628 +webgpu-20220628 +28 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210616/ -https://www.w3.org/TR/2021/WD-webgpu-20210616/ +https://www.w3.org/TR/2022/WD-webgpu-20220628/ +https://www.w3.org/TR/2022/WD-webgpu-20220628/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210617 -webgpu-20210617 -17 June 2021 +d:webgpu-20220629 +webgpu-20220629 +29 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210617/ -https://www.w3.org/TR/2021/WD-webgpu-20210617/ +https://www.w3.org/TR/2022/WD-webgpu-20220629/ +https://www.w3.org/TR/2022/WD-webgpu-20220629/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210618 -webgpu-20210618 -18 June 2021 +d:webgpu-20220630 +webgpu-20220630 +30 June 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210618/ -https://www.w3.org/TR/2021/WD-webgpu-20210618/ +https://www.w3.org/TR/2022/WD-webgpu-20220630/ +https://www.w3.org/TR/2022/WD-webgpu-20220630/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210620 -webgpu-20210620 -20 June 2021 +d:webgpu-20220706 +webgpu-20220706 +6 July 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210620/ -https://www.w3.org/TR/2021/WD-webgpu-20210620/ +https://www.w3.org/TR/2022/WD-webgpu-20220706/ +https://www.w3.org/TR/2022/WD-webgpu-20220706/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210622 -webgpu-20210622 -22 June 2021 +d:webgpu-20220707 +webgpu-20220707 +7 July 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210622/ -https://www.w3.org/TR/2021/WD-webgpu-20210622/ +https://www.w3.org/TR/2022/WD-webgpu-20220707/ +https://www.w3.org/TR/2022/WD-webgpu-20220707/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210623 -webgpu-20210623 -23 June 2021 +d:webgpu-20220708 +webgpu-20220708 +8 July 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210623/ -https://www.w3.org/TR/2021/WD-webgpu-20210623/ +https://www.w3.org/TR/2022/WD-webgpu-20220708/ +https://www.w3.org/TR/2022/WD-webgpu-20220708/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210624 -webgpu-20210624 -24 June 2021 +d:webgpu-20220803 +webgpu-20220803 +3 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210624/ -https://www.w3.org/TR/2021/WD-webgpu-20210624/ +https://www.w3.org/TR/2022/WD-webgpu-20220803/ +https://www.w3.org/TR/2022/WD-webgpu-20220803/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210628 -webgpu-20210628 -28 June 2021 +d:webgpu-20220805 +webgpu-20220805 +5 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210628/ -https://www.w3.org/TR/2021/WD-webgpu-20210628/ +https://www.w3.org/TR/2022/WD-webgpu-20220805/ +https://www.w3.org/TR/2022/WD-webgpu-20220805/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210629 -webgpu-20210629 -29 June 2021 +d:webgpu-20220812 +webgpu-20220812 +12 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210629/ -https://www.w3.org/TR/2021/WD-webgpu-20210629/ +https://www.w3.org/TR/2022/WD-webgpu-20220812/ +https://www.w3.org/TR/2022/WD-webgpu-20220812/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210630 -webgpu-20210630 -30 June 2021 +d:webgpu-20220815 +webgpu-20220815 +15 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210630/ -https://www.w3.org/TR/2021/WD-webgpu-20210630/ +https://www.w3.org/TR/2022/WD-webgpu-20220815/ +https://www.w3.org/TR/2022/WD-webgpu-20220815/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210706 -webgpu-20210706 -6 July 2021 +d:webgpu-20220816 +webgpu-20220816 +16 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210706/ -https://www.w3.org/TR/2021/WD-webgpu-20210706/ +https://www.w3.org/TR/2022/WD-webgpu-20220816/ +https://www.w3.org/TR/2022/WD-webgpu-20220816/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210707 -webgpu-20210707 -7 July 2021 +d:webgpu-20220817 +webgpu-20220817 +17 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210707/ -https://www.w3.org/TR/2021/WD-webgpu-20210707/ +https://www.w3.org/TR/2022/WD-webgpu-20220817/ +https://www.w3.org/TR/2022/WD-webgpu-20220817/ Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones - -d:webgpu-20210708 -webgpu-20210708 -8 July 2021 +d:webgpu-20220819 +webgpu-20220819 +19 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210708/ -https://www.w3.org/TR/2021/WD-webgpu-20210708/ +https://www.w3.org/TR/2022/WD-webgpu-20220819/ +https://www.w3.org/TR/2022/WD-webgpu-20220819/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210711 -webgpu-20210711 -11 July 2021 +d:webgpu-20220822 +webgpu-20220822 +22 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210711/ -https://www.w3.org/TR/2021/WD-webgpu-20210711/ +https://www.w3.org/TR/2022/WD-webgpu-20220822/ +https://www.w3.org/TR/2022/WD-webgpu-20220822/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210712 -webgpu-20210712 -12 July 2021 +d:webgpu-20220824 +webgpu-20220824 +24 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210712/ -https://www.w3.org/TR/2021/WD-webgpu-20210712/ +https://www.w3.org/TR/2022/WD-webgpu-20220824/ +https://www.w3.org/TR/2022/WD-webgpu-20220824/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210713 -webgpu-20210713 -13 July 2021 +d:webgpu-20220825 +webgpu-20220825 +25 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210713/ -https://www.w3.org/TR/2021/WD-webgpu-20210713/ +https://www.w3.org/TR/2022/WD-webgpu-20220825/ +https://www.w3.org/TR/2022/WD-webgpu-20220825/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210714 -webgpu-20210714 -14 July 2021 +d:webgpu-20220826 +webgpu-20220826 +26 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210714/ -https://www.w3.org/TR/2021/WD-webgpu-20210714/ +https://www.w3.org/TR/2022/WD-webgpu-20220826/ +https://www.w3.org/TR/2022/WD-webgpu-20220826/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210715 -webgpu-20210715 -15 July 2021 +d:webgpu-20220827 +webgpu-20220827 +27 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210715/ -https://www.w3.org/TR/2021/WD-webgpu-20210715/ +https://www.w3.org/TR/2022/WD-webgpu-20220827/ +https://www.w3.org/TR/2022/WD-webgpu-20220827/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210716 -webgpu-20210716 -16 July 2021 +d:webgpu-20220829 +webgpu-20220829 +29 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210716/ -https://www.w3.org/TR/2021/WD-webgpu-20210716/ +https://www.w3.org/TR/2022/WD-webgpu-20220829/ +https://www.w3.org/TR/2022/WD-webgpu-20220829/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210717 -webgpu-20210717 -17 July 2021 +d:webgpu-20220830 +webgpu-20220830 +30 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210717/ -https://www.w3.org/TR/2021/WD-webgpu-20210717/ +https://www.w3.org/TR/2022/WD-webgpu-20220830/ +https://www.w3.org/TR/2022/WD-webgpu-20220830/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210719 -webgpu-20210719 -19 July 2021 +d:webgpu-20220831 +webgpu-20220831 +31 August 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210719/ -https://www.w3.org/TR/2021/WD-webgpu-20210719/ +https://www.w3.org/TR/2022/WD-webgpu-20220831/ +https://www.w3.org/TR/2022/WD-webgpu-20220831/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210720 -webgpu-20210720 -20 July 2021 +d:webgpu-20220908 +webgpu-20220908 +8 September 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210720/ -https://www.w3.org/TR/2021/WD-webgpu-20210720/ +https://www.w3.org/TR/2022/WD-webgpu-20220908/ +https://www.w3.org/TR/2022/WD-webgpu-20220908/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210721 -webgpu-20210721 -21 July 2021 +d:webgpu-20220913 +webgpu-20220913 +13 September 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210721/ -https://www.w3.org/TR/2021/WD-webgpu-20210721/ +https://www.w3.org/TR/2022/WD-webgpu-20220913/ +https://www.w3.org/TR/2022/WD-webgpu-20220913/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210722 -webgpu-20210722 -22 July 2021 +d:webgpu-20220917 +webgpu-20220917 +17 September 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210722/ -https://www.w3.org/TR/2021/WD-webgpu-20210722/ +https://www.w3.org/TR/2022/WD-webgpu-20220917/ +https://www.w3.org/TR/2022/WD-webgpu-20220917/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210723 -webgpu-20210723 -23 July 2021 +d:webgpu-20220930 +webgpu-20220930 +30 September 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210723/ -https://www.w3.org/TR/2021/WD-webgpu-20210723/ +https://www.w3.org/TR/2022/WD-webgpu-20220930/ +https://www.w3.org/TR/2022/WD-webgpu-20220930/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210726 -webgpu-20210726 -26 July 2021 +d:webgpu-20221003 +webgpu-20221003 +3 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210726/ -https://www.w3.org/TR/2021/WD-webgpu-20210726/ +https://www.w3.org/TR/2022/WD-webgpu-20221003/ +https://www.w3.org/TR/2022/WD-webgpu-20221003/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210727 -webgpu-20210727 -27 July 2021 +d:webgpu-20221004 +webgpu-20221004 +4 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210727/ -https://www.w3.org/TR/2021/WD-webgpu-20210727/ +https://www.w3.org/TR/2022/WD-webgpu-20221004/ +https://www.w3.org/TR/2022/WD-webgpu-20221004/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210728 -webgpu-20210728 -28 July 2021 +d:webgpu-20221005 +webgpu-20221005 +5 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210728/ -https://www.w3.org/TR/2021/WD-webgpu-20210728/ +https://www.w3.org/TR/2022/WD-webgpu-20221005/ +https://www.w3.org/TR/2022/WD-webgpu-20221005/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210803 -webgpu-20210803 -3 August 2021 +d:webgpu-20221006 +webgpu-20221006 +6 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210803/ -https://www.w3.org/TR/2021/WD-webgpu-20210803/ +https://www.w3.org/TR/2022/WD-webgpu-20221006/ +https://www.w3.org/TR/2022/WD-webgpu-20221006/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210804 -webgpu-20210804 -4 August 2021 +d:webgpu-20221007 +webgpu-20221007 +7 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210804/ -https://www.w3.org/TR/2021/WD-webgpu-20210804/ +https://www.w3.org/TR/2022/WD-webgpu-20221007/ +https://www.w3.org/TR/2022/WD-webgpu-20221007/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210806 -webgpu-20210806 -6 August 2021 +d:webgpu-20221011 +webgpu-20221011 +11 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210806/ -https://www.w3.org/TR/2021/WD-webgpu-20210806/ +https://www.w3.org/TR/2022/WD-webgpu-20221011/ +https://www.w3.org/TR/2022/WD-webgpu-20221011/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210818 -webgpu-20210818 -18 August 2021 +d:webgpu-20221017 +webgpu-20221017 +17 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210818/ -https://www.w3.org/TR/2021/WD-webgpu-20210818/ +https://www.w3.org/TR/2022/WD-webgpu-20221017/ +https://www.w3.org/TR/2022/WD-webgpu-20221017/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210823 -webgpu-20210823 -23 August 2021 +d:webgpu-20221026 +webgpu-20221026 +26 October 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210823/ -https://www.w3.org/TR/2021/WD-webgpu-20210823/ +https://www.w3.org/TR/2022/WD-webgpu-20221026/ +https://www.w3.org/TR/2022/WD-webgpu-20221026/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210824 -webgpu-20210824 -24 August 2021 +d:webgpu-20221117 +webgpu-20221117 +17 November 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210824/ -https://www.w3.org/TR/2021/WD-webgpu-20210824/ +https://www.w3.org/TR/2022/WD-webgpu-20221117/ +https://www.w3.org/TR/2022/WD-webgpu-20221117/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210825 -webgpu-20210825 -25 August 2021 +d:webgpu-20221129 +webgpu-20221129 +29 November 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210825/ -https://www.w3.org/TR/2021/WD-webgpu-20210825/ +https://www.w3.org/TR/2022/WD-webgpu-20221129/ +https://www.w3.org/TR/2022/WD-webgpu-20221129/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210826 -webgpu-20210826 -26 August 2021 +d:webgpu-20221130 +webgpu-20221130 +30 November 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210826/ -https://www.w3.org/TR/2021/WD-webgpu-20210826/ +https://www.w3.org/TR/2022/WD-webgpu-20221130/ +https://www.w3.org/TR/2022/WD-webgpu-20221130/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210831 -webgpu-20210831 -31 August 2021 +d:webgpu-20221207 +webgpu-20221207 +7 December 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210831/ -https://www.w3.org/TR/2021/WD-webgpu-20210831/ +https://www.w3.org/TR/2022/WD-webgpu-20221207/ +https://www.w3.org/TR/2022/WD-webgpu-20221207/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210908 -webgpu-20210908 -8 September 2021 +d:webgpu-20221208 +webgpu-20221208 +8 December 2022 WD -WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210908/ -https://www.w3.org/TR/2021/WD-webgpu-20210908/ +WebGPU +https://www.w3.org/TR/2022/WD-webgpu-20221208/ +https://www.w3.org/TR/2022/WD-webgpu-20221208/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210910 -webgpu-20210910 -10 September 2021 +d:webgpu-20221209 +webgpu-20221209 +9 December 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210910/ -https://www.w3.org/TR/2021/WD-webgpu-20210910/ +https://www.w3.org/TR/2022/WD-webgpu-20221209/ +https://www.w3.org/TR/2022/WD-webgpu-20221209/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210915 -webgpu-20210915 -15 September 2021 +d:webgpu-20221223 +webgpu-20221223 +23 December 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210915/ -https://www.w3.org/TR/2021/WD-webgpu-20210915/ +https://www.w3.org/TR/2022/WD-webgpu-20221223/ +https://www.w3.org/TR/2022/WD-webgpu-20221223/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210917 -webgpu-20210917 -17 September 2021 +d:webgpu-20221230 +webgpu-20221230 +30 December 2022 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210917/ -https://www.w3.org/TR/2021/WD-webgpu-20210917/ +https://www.w3.org/TR/2022/WD-webgpu-20221230/ +https://www.w3.org/TR/2022/WD-webgpu-20221230/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210920 -webgpu-20210920 -20 September 2021 +d:webgpu-20230104 +webgpu-20230104 +4 January 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210920/ -https://www.w3.org/TR/2021/WD-webgpu-20210920/ +https://www.w3.org/TR/2023/WD-webgpu-20230104/ +https://www.w3.org/TR/2023/WD-webgpu-20230104/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210921 -webgpu-20210921 -21 September 2021 +d:webgpu-20230118 +webgpu-20230118 +18 January 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210921/ -https://www.w3.org/TR/2021/WD-webgpu-20210921/ +https://www.w3.org/TR/2023/WD-webgpu-20230118/ +https://www.w3.org/TR/2023/WD-webgpu-20230118/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210928 -webgpu-20210928 -28 September 2021 +d:webgpu-20230202 +webgpu-20230202 +2 February 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210928/ -https://www.w3.org/TR/2021/WD-webgpu-20210928/ +https://www.w3.org/TR/2023/WD-webgpu-20230202/ +https://www.w3.org/TR/2023/WD-webgpu-20230202/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20210929 -webgpu-20210929 -29 September 2021 +d:webgpu-20230214 +webgpu-20230214 +14 February 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20210929/ -https://www.w3.org/TR/2021/WD-webgpu-20210929/ +https://www.w3.org/TR/2023/WD-webgpu-20230214/ +https://www.w3.org/TR/2023/WD-webgpu-20230214/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211004 -webgpu-20211004 -4 October 2021 +d:webgpu-20230222 +webgpu-20230222 +22 February 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211004/ -https://www.w3.org/TR/2021/WD-webgpu-20211004/ +https://www.w3.org/TR/2023/WD-webgpu-20230222/ +https://www.w3.org/TR/2023/WD-webgpu-20230222/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211006 -webgpu-20211006 -6 October 2021 +d:webgpu-20230224 +webgpu-20230224 +24 February 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211006/ -https://www.w3.org/TR/2021/WD-webgpu-20211006/ +https://www.w3.org/TR/2023/WD-webgpu-20230224/ +https://www.w3.org/TR/2023/WD-webgpu-20230224/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211012 -webgpu-20211012 -12 October 2021 +d:webgpu-20230227 +webgpu-20230227 +27 February 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211012/ -https://www.w3.org/TR/2021/WD-webgpu-20211012/ +https://www.w3.org/TR/2023/WD-webgpu-20230227/ +https://www.w3.org/TR/2023/WD-webgpu-20230227/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211013 -webgpu-20211013 -13 October 2021 +d:webgpu-20230228 +webgpu-20230228 +28 February 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211013/ -https://www.w3.org/TR/2021/WD-webgpu-20211013/ +https://www.w3.org/TR/2023/WD-webgpu-20230228/ +https://www.w3.org/TR/2023/WD-webgpu-20230228/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211014 -webgpu-20211014 -14 October 2021 +d:webgpu-20230301 +webgpu-20230301 +1 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211014/ -https://www.w3.org/TR/2021/WD-webgpu-20211014/ +https://www.w3.org/TR/2023/WD-webgpu-20230301/ +https://www.w3.org/TR/2023/WD-webgpu-20230301/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211015 -webgpu-20211015 -15 October 2021 +d:webgpu-20230302 +webgpu-20230302 +2 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211015/ -https://www.w3.org/TR/2021/WD-webgpu-20211015/ +https://www.w3.org/TR/2023/WD-webgpu-20230302/ +https://www.w3.org/TR/2023/WD-webgpu-20230302/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211018 -webgpu-20211018 -18 October 2021 +d:webgpu-20230303 +webgpu-20230303 +3 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211018/ -https://www.w3.org/TR/2021/WD-webgpu-20211018/ +https://www.w3.org/TR/2023/WD-webgpu-20230303/ +https://www.w3.org/TR/2023/WD-webgpu-20230303/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211019 -webgpu-20211019 -19 October 2021 +d:webgpu-20230307 +webgpu-20230307 +7 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211019/ -https://www.w3.org/TR/2021/WD-webgpu-20211019/ +https://www.w3.org/TR/2023/WD-webgpu-20230307/ +https://www.w3.org/TR/2023/WD-webgpu-20230307/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211022 -webgpu-20211022 -22 October 2021 +d:webgpu-20230308 +webgpu-20230308 +8 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211022/ -https://www.w3.org/TR/2021/WD-webgpu-20211022/ +https://www.w3.org/TR/2023/WD-webgpu-20230308/ +https://www.w3.org/TR/2023/WD-webgpu-20230308/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211025 -webgpu-20211025 -25 October 2021 +d:webgpu-20230309 +webgpu-20230309 +9 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211025/ -https://www.w3.org/TR/2021/WD-webgpu-20211025/ +https://www.w3.org/TR/2023/WD-webgpu-20230309/ +https://www.w3.org/TR/2023/WD-webgpu-20230309/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211026 -webgpu-20211026 -26 October 2021 +d:webgpu-20230314 +webgpu-20230314 +14 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211026/ -https://www.w3.org/TR/2021/WD-webgpu-20211026/ +https://www.w3.org/TR/2023/WD-webgpu-20230314/ +https://www.w3.org/TR/2023/WD-webgpu-20230314/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211028 -webgpu-20211028 -28 October 2021 +d:webgpu-20230315 +webgpu-20230315 +15 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211028/ -https://www.w3.org/TR/2021/WD-webgpu-20211028/ +https://www.w3.org/TR/2023/WD-webgpu-20230315/ +https://www.w3.org/TR/2023/WD-webgpu-20230315/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211029 -webgpu-20211029 -29 October 2021 +d:webgpu-20230317 +webgpu-20230317 +17 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211029/ -https://www.w3.org/TR/2021/WD-webgpu-20211029/ +https://www.w3.org/TR/2023/WD-webgpu-20230317/ +https://www.w3.org/TR/2023/WD-webgpu-20230317/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211101 -webgpu-20211101 -1 November 2021 +d:webgpu-20230322 +webgpu-20230322 +22 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211101/ -https://www.w3.org/TR/2021/WD-webgpu-20211101/ +https://www.w3.org/TR/2023/WD-webgpu-20230322/ +https://www.w3.org/TR/2023/WD-webgpu-20230322/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211102 -webgpu-20211102 -2 November 2021 +d:webgpu-20230324 +webgpu-20230324 +24 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211102/ -https://www.w3.org/TR/2021/WD-webgpu-20211102/ +https://www.w3.org/TR/2023/WD-webgpu-20230324/ +https://www.w3.org/TR/2023/WD-webgpu-20230324/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211112 -webgpu-20211112 -12 November 2021 +d:webgpu-20230328 +webgpu-20230328 +28 March 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211112/ -https://www.w3.org/TR/2021/WD-webgpu-20211112/ +https://www.w3.org/TR/2023/WD-webgpu-20230328/ +https://www.w3.org/TR/2023/WD-webgpu-20230328/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211113 -webgpu-20211113 -13 November 2021 +d:webgpu-20230406 +webgpu-20230406 +6 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211113/ -https://www.w3.org/TR/2021/WD-webgpu-20211113/ +https://www.w3.org/TR/2023/WD-webgpu-20230406/ +https://www.w3.org/TR/2023/WD-webgpu-20230406/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211116 -webgpu-20211116 -16 November 2021 +d:webgpu-20230413 +webgpu-20230413 +13 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211116/ -https://www.w3.org/TR/2021/WD-webgpu-20211116/ +https://www.w3.org/TR/2023/WD-webgpu-20230413/ +https://www.w3.org/TR/2023/WD-webgpu-20230413/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211117 -webgpu-20211117 -17 November 2021 +d:webgpu-20230418 +webgpu-20230418 +18 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211117/ -https://www.w3.org/TR/2021/WD-webgpu-20211117/ +https://www.w3.org/TR/2023/WD-webgpu-20230418/ +https://www.w3.org/TR/2023/WD-webgpu-20230418/ -Dzmitry Malyshau Kai Ninomiya -Justin Fan +Brandon Jones +Myles Maxfield - -d:webgpu-20211118 -webgpu-20211118 -18 November 2021 +d:webgpu-20230419 +webgpu-20230419 +19 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211118/ -https://www.w3.org/TR/2021/WD-webgpu-20211118/ +https://www.w3.org/TR/2023/WD-webgpu-20230419/ +https://www.w3.org/TR/2023/WD-webgpu-20230419/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211119 -webgpu-20211119 -19 November 2021 +d:webgpu-20230421 +webgpu-20230421 +21 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211119/ -https://www.w3.org/TR/2021/WD-webgpu-20211119/ +https://www.w3.org/TR/2023/WD-webgpu-20230421/ +https://www.w3.org/TR/2023/WD-webgpu-20230421/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211123 -webgpu-20211123 -23 November 2021 +d:webgpu-20230424 +webgpu-20230424 +24 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211123/ -https://www.w3.org/TR/2021/WD-webgpu-20211123/ +https://www.w3.org/TR/2023/WD-webgpu-20230424/ +https://www.w3.org/TR/2023/WD-webgpu-20230424/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211124 -webgpu-20211124 -24 November 2021 +d:webgpu-20230425 +webgpu-20230425 +25 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211124/ -https://www.w3.org/TR/2021/WD-webgpu-20211124/ +https://www.w3.org/TR/2023/WD-webgpu-20230425/ +https://www.w3.org/TR/2023/WD-webgpu-20230425/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211125 -webgpu-20211125 -25 November 2021 +d:webgpu-20230426 +webgpu-20230426 +26 April 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211125/ -https://www.w3.org/TR/2021/WD-webgpu-20211125/ +https://www.w3.org/TR/2023/WD-webgpu-20230426/ +https://www.w3.org/TR/2023/WD-webgpu-20230426/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211129 -webgpu-20211129 -29 November 2021 +d:webgpu-20230501 +webgpu-20230501 +1 May 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211129/ -https://www.w3.org/TR/2021/WD-webgpu-20211129/ +https://www.w3.org/TR/2023/WD-webgpu-20230501/ +https://www.w3.org/TR/2023/WD-webgpu-20230501/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211130 -webgpu-20211130 -30 November 2021 +d:webgpu-20230505 +webgpu-20230505 +5 May 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211130/ -https://www.w3.org/TR/2021/WD-webgpu-20211130/ +https://www.w3.org/TR/2023/WD-webgpu-20230505/ +https://www.w3.org/TR/2023/WD-webgpu-20230505/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211201 -webgpu-20211201 -1 December 2021 +d:webgpu-20230508 +webgpu-20230508 +8 May 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211201/ -https://www.w3.org/TR/2021/WD-webgpu-20211201/ +https://www.w3.org/TR/2023/WD-webgpu-20230508/ +https://www.w3.org/TR/2023/WD-webgpu-20230508/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211202 -webgpu-20211202 -2 December 2021 +d:webgpu-20230510 +webgpu-20230510 +10 May 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211202/ -https://www.w3.org/TR/2021/WD-webgpu-20211202/ +https://www.w3.org/TR/2023/WD-webgpu-20230510/ +https://www.w3.org/TR/2023/WD-webgpu-20230510/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211203 -webgpu-20211203 -3 December 2021 +d:webgpu-20230519 +webgpu-20230519 +19 May 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211203/ -https://www.w3.org/TR/2021/WD-webgpu-20211203/ +https://www.w3.org/TR/2023/WD-webgpu-20230519/ +https://www.w3.org/TR/2023/WD-webgpu-20230519/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211205 -webgpu-20211205 -5 December 2021 +d:webgpu-20230529 +webgpu-20230529 +29 May 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211205/ -https://www.w3.org/TR/2021/WD-webgpu-20211205/ +https://www.w3.org/TR/2023/WD-webgpu-20230529/ +https://www.w3.org/TR/2023/WD-webgpu-20230529/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211206 -webgpu-20211206 -6 December 2021 +d:webgpu-20230601 +webgpu-20230601 +1 June 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211206/ -https://www.w3.org/TR/2021/WD-webgpu-20211206/ +https://www.w3.org/TR/2023/WD-webgpu-20230601/ +https://www.w3.org/TR/2023/WD-webgpu-20230601/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211207 -webgpu-20211207 -7 December 2021 +d:webgpu-20230606 +webgpu-20230606 +6 June 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211207/ -https://www.w3.org/TR/2021/WD-webgpu-20211207/ +https://www.w3.org/TR/2023/WD-webgpu-20230606/ +https://www.w3.org/TR/2023/WD-webgpu-20230606/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211208 -webgpu-20211208 -8 December 2021 +d:webgpu-20230614 +webgpu-20230614 +14 June 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211208/ -https://www.w3.org/TR/2021/WD-webgpu-20211208/ +https://www.w3.org/TR/2023/WD-webgpu-20230614/ +https://www.w3.org/TR/2023/WD-webgpu-20230614/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211210 -webgpu-20211210 -10 December 2021 +d:webgpu-20230621 +webgpu-20230621 +21 June 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211210/ -https://www.w3.org/TR/2021/WD-webgpu-20211210/ +https://www.w3.org/TR/2023/WD-webgpu-20230621/ +https://www.w3.org/TR/2023/WD-webgpu-20230621/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211214 -webgpu-20211214 -14 December 2021 +d:webgpu-20230626 +webgpu-20230626 +26 June 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211214/ -https://www.w3.org/TR/2021/WD-webgpu-20211214/ +https://www.w3.org/TR/2023/WD-webgpu-20230626/ +https://www.w3.org/TR/2023/WD-webgpu-20230626/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211215 -webgpu-20211215 -15 December 2021 +d:webgpu-20230712 +webgpu-20230712 +12 July 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211215/ -https://www.w3.org/TR/2021/WD-webgpu-20211215/ +https://www.w3.org/TR/2023/WD-webgpu-20230712/ +https://www.w3.org/TR/2023/WD-webgpu-20230712/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211216 -webgpu-20211216 -16 December 2021 +d:webgpu-20230717 +webgpu-20230717 +17 July 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211216/ -https://www.w3.org/TR/2021/WD-webgpu-20211216/ +https://www.w3.org/TR/2023/WD-webgpu-20230717/ +https://www.w3.org/TR/2023/WD-webgpu-20230717/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211220 -webgpu-20211220 -20 December 2021 +d:webgpu-20230721 +webgpu-20230721 +21 July 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211220/ -https://www.w3.org/TR/2021/WD-webgpu-20211220/ +https://www.w3.org/TR/2023/WD-webgpu-20230721/ +https://www.w3.org/TR/2023/WD-webgpu-20230721/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211221 -webgpu-20211221 -21 December 2021 +d:webgpu-20230726 +webgpu-20230726 +26 July 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211221/ -https://www.w3.org/TR/2021/WD-webgpu-20211221/ +https://www.w3.org/TR/2023/WD-webgpu-20230726/ +https://www.w3.org/TR/2023/WD-webgpu-20230726/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211222 -webgpu-20211222 -22 December 2021 +d:webgpu-20230912 +webgpu-20230912 +12 September 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211222/ -https://www.w3.org/TR/2021/WD-webgpu-20211222/ +https://www.w3.org/TR/2023/WD-webgpu-20230912/ +https://www.w3.org/TR/2023/WD-webgpu-20230912/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211223 -webgpu-20211223 -23 December 2021 +d:webgpu-20231002 +webgpu-20231002 +2 October 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211223/ -https://www.w3.org/TR/2021/WD-webgpu-20211223/ +https://www.w3.org/TR/2023/WD-webgpu-20231002/ +https://www.w3.org/TR/2023/WD-webgpu-20231002/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211224 -webgpu-20211224 -24 December 2021 +d:webgpu-20231009 +webgpu-20231009 +9 October 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211224/ -https://www.w3.org/TR/2021/WD-webgpu-20211224/ +https://www.w3.org/TR/2023/WD-webgpu-20231009/ +https://www.w3.org/TR/2023/WD-webgpu-20231009/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211228 -webgpu-20211228 -28 December 2021 +d:webgpu-20231010 +webgpu-20231010 +10 October 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211228/ -https://www.w3.org/TR/2021/WD-webgpu-20211228/ +https://www.w3.org/TR/2023/WD-webgpu-20231010/ +https://www.w3.org/TR/2023/WD-webgpu-20231010/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211229 -webgpu-20211229 -29 December 2021 +d:webgpu-20231011 +webgpu-20231011 +11 October 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211229/ -https://www.w3.org/TR/2021/WD-webgpu-20211229/ +https://www.w3.org/TR/2023/WD-webgpu-20231011/ +https://www.w3.org/TR/2023/WD-webgpu-20231011/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20211230 -webgpu-20211230 -30 December 2021 +d:webgpu-20231012 +webgpu-20231012 +12 October 2023 WD WebGPU -https://www.w3.org/TR/2021/WD-webgpu-20211230/ -https://www.w3.org/TR/2021/WD-webgpu-20211230/ +https://www.w3.org/TR/2023/WD-webgpu-20231012/ +https://www.w3.org/TR/2023/WD-webgpu-20231012/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20220104 -webgpu-20220104 -4 January 2022 +d:webgpu-20231013 +webgpu-20231013 +13 October 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220104/ -https://www.w3.org/TR/2022/WD-webgpu-20220104/ +https://www.w3.org/TR/2023/WD-webgpu-20231013/ +https://www.w3.org/TR/2023/WD-webgpu-20231013/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20220105 -webgpu-20220105 -5 January 2022 +d:webgpu-20231018 +webgpu-20231018 +18 October 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220105/ -https://www.w3.org/TR/2022/WD-webgpu-20220105/ +https://www.w3.org/TR/2023/WD-webgpu-20231018/ +https://www.w3.org/TR/2023/WD-webgpu-20231018/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20220106 -webgpu-20220106 -6 January 2022 +d:webgpu-20231019 +webgpu-20231019 +19 October 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220106/ -https://www.w3.org/TR/2022/WD-webgpu-20220106/ +https://www.w3.org/TR/2023/WD-webgpu-20231019/ +https://www.w3.org/TR/2023/WD-webgpu-20231019/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20220107 -webgpu-20220107 -7 January 2022 +d:webgpu-20231020 +webgpu-20231020 +20 October 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220107/ -https://www.w3.org/TR/2022/WD-webgpu-20220107/ +https://www.w3.org/TR/2023/WD-webgpu-20231020/ +https://www.w3.org/TR/2023/WD-webgpu-20231020/ -Dzmitry Malyshau Kai Ninomiya +Brandon Jones +Myles Maxfield - -d:webgpu-20220110 -webgpu-20220110 -10 January 2022 +d:webgpu-20231023 +webgpu-20231023 +23 October 2023 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220110/ -https://www.w3.org/TR/2022/WD-webgpu-20220110/ +WebGPU +https://www.w3.org/TR/2023/WD-webgpu-20231023/ +https://www.w3.org/TR/2023/WD-webgpu-20231023/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Myles Maxfield - -d:webgpu-20220111 -webgpu-20220111 -11 January 2022 +d:webgpu-20231031 +webgpu-20231031 +31 October 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220111/ -https://www.w3.org/TR/2022/WD-webgpu-20220111/ +https://www.w3.org/TR/2023/WD-webgpu-20231031/ +https://www.w3.org/TR/2023/WD-webgpu-20231031/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Myles Maxfield - -d:webgpu-20220112 -webgpu-20220112 -12 January 2022 +d:webgpu-20231103 +webgpu-20231103 +3 November 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220112/ -https://www.w3.org/TR/2022/WD-webgpu-20220112/ +https://www.w3.org/TR/2023/WD-webgpu-20231103/ +https://www.w3.org/TR/2023/WD-webgpu-20231103/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Myles Maxfield - -d:webgpu-20220113 -webgpu-20220113 -13 January 2022 +d:webgpu-20231120 +webgpu-20231120 +20 November 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220113/ -https://www.w3.org/TR/2022/WD-webgpu-20220113/ +https://www.w3.org/TR/2023/WD-webgpu-20231120/ +https://www.w3.org/TR/2023/WD-webgpu-20231120/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220117 -webgpu-20220117 -17 January 2022 +d:webgpu-20231204 +webgpu-20231204 +4 December 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220117/ -https://www.w3.org/TR/2022/WD-webgpu-20220117/ +https://www.w3.org/TR/2023/WD-webgpu-20231204/ +https://www.w3.org/TR/2023/WD-webgpu-20231204/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220118 -webgpu-20220118 -18 January 2022 +d:webgpu-20231206 +webgpu-20231206 +6 December 2023 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220118/ -https://www.w3.org/TR/2022/WD-webgpu-20220118/ +https://www.w3.org/TR/2023/WD-webgpu-20231206/ +https://www.w3.org/TR/2023/WD-webgpu-20231206/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220119 -webgpu-20220119 -19 January 2022 +d:webgpu-20240104 +webgpu-20240104 +4 January 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220119/ -https://www.w3.org/TR/2022/WD-webgpu-20220119/ +https://www.w3.org/TR/2024/WD-webgpu-20240104/ +https://www.w3.org/TR/2024/WD-webgpu-20240104/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220125 -webgpu-20220125 -25 January 2022 +d:webgpu-20240108 +webgpu-20240108 +8 January 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220125/ -https://www.w3.org/TR/2022/WD-webgpu-20220125/ +https://www.w3.org/TR/2024/WD-webgpu-20240108/ +https://www.w3.org/TR/2024/WD-webgpu-20240108/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220126 -webgpu-20220126 -26 January 2022 +d:webgpu-20240120 +webgpu-20240120 +20 January 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220126/ -https://www.w3.org/TR/2022/WD-webgpu-20220126/ +https://www.w3.org/TR/2024/WD-webgpu-20240120/ +https://www.w3.org/TR/2024/WD-webgpu-20240120/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220127 -webgpu-20220127 -27 January 2022 +d:webgpu-20240124 +webgpu-20240124 +24 January 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220127/ -https://www.w3.org/TR/2022/WD-webgpu-20220127/ +https://www.w3.org/TR/2024/WD-webgpu-20240124/ +https://www.w3.org/TR/2024/WD-webgpu-20240124/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220128 -webgpu-20220128 -28 January 2022 +d:webgpu-20240125 +webgpu-20240125 +25 January 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220128/ -https://www.w3.org/TR/2022/WD-webgpu-20220128/ +https://www.w3.org/TR/2024/WD-webgpu-20240125/ +https://www.w3.org/TR/2024/WD-webgpu-20240125/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220131 -webgpu-20220131 -31 January 2022 +d:webgpu-20240205 +webgpu-20240205 +5 February 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220131/ -https://www.w3.org/TR/2022/WD-webgpu-20220131/ +https://www.w3.org/TR/2024/WD-webgpu-20240205/ +https://www.w3.org/TR/2024/WD-webgpu-20240205/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220202 -webgpu-20220202 -2 February 2022 +d:webgpu-20240313 +webgpu-20240313 +13 March 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220202/ -https://www.w3.org/TR/2022/WD-webgpu-20220202/ +https://www.w3.org/TR/2024/WD-webgpu-20240313/ +https://www.w3.org/TR/2024/WD-webgpu-20240313/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220203 -webgpu-20220203 -3 February 2022 +d:webgpu-20240323 +webgpu-20240323 +23 March 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220203/ -https://www.w3.org/TR/2022/WD-webgpu-20220203/ +https://www.w3.org/TR/2024/WD-webgpu-20240323/ +https://www.w3.org/TR/2024/WD-webgpu-20240323/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220204 -webgpu-20220204 -4 February 2022 +d:webgpu-20240402 +webgpu-20240402 +2 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220204/ -https://www.w3.org/TR/2022/WD-webgpu-20220204/ +https://www.w3.org/TR/2024/WD-webgpu-20240402/ +https://www.w3.org/TR/2024/WD-webgpu-20240402/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220205 -webgpu-20220205 -5 February 2022 +d:webgpu-20240409 +webgpu-20240409 +9 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220205/ -https://www.w3.org/TR/2022/WD-webgpu-20220205/ +https://www.w3.org/TR/2024/WD-webgpu-20240409/ +https://www.w3.org/TR/2024/WD-webgpu-20240409/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220207 -webgpu-20220207 -7 February 2022 +d:webgpu-20240416 +webgpu-20240416 +16 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220207/ -https://www.w3.org/TR/2022/WD-webgpu-20220207/ +https://www.w3.org/TR/2024/WD-webgpu-20240416/ +https://www.w3.org/TR/2024/WD-webgpu-20240416/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220208 -webgpu-20220208 -8 February 2022 +d:webgpu-20240417 +webgpu-20240417 +17 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220208/ -https://www.w3.org/TR/2022/WD-webgpu-20220208/ +https://www.w3.org/TR/2024/WD-webgpu-20240417/ +https://www.w3.org/TR/2024/WD-webgpu-20240417/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220209 -webgpu-20220209 -9 February 2022 +d:webgpu-20240418 +webgpu-20240418 +18 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220209/ -https://www.w3.org/TR/2022/WD-webgpu-20220209/ +https://www.w3.org/TR/2024/WD-webgpu-20240418/ +https://www.w3.org/TR/2024/WD-webgpu-20240418/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220210 -webgpu-20220210 -10 February 2022 +d:webgpu-20240424 +webgpu-20240424 +24 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220210/ -https://www.w3.org/TR/2022/WD-webgpu-20220210/ +https://www.w3.org/TR/2024/WD-webgpu-20240424/ +https://www.w3.org/TR/2024/WD-webgpu-20240424/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220211 -webgpu-20220211 -11 February 2022 +d:webgpu-20240425 +webgpu-20240425 +25 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220211/ -https://www.w3.org/TR/2022/WD-webgpu-20220211/ +https://www.w3.org/TR/2024/WD-webgpu-20240425/ +https://www.w3.org/TR/2024/WD-webgpu-20240425/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220214 -webgpu-20220214 -14 February 2022 +d:webgpu-20240427 +webgpu-20240427 +27 April 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220214/ -https://www.w3.org/TR/2022/WD-webgpu-20220214/ +https://www.w3.org/TR/2024/WD-webgpu-20240427/ +https://www.w3.org/TR/2024/WD-webgpu-20240427/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220215 -webgpu-20220215 -15 February 2022 +d:webgpu-20240501 +webgpu-20240501 +1 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220215/ -https://www.w3.org/TR/2022/WD-webgpu-20220215/ +https://www.w3.org/TR/2024/WD-webgpu-20240501/ +https://www.w3.org/TR/2024/WD-webgpu-20240501/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220217 -webgpu-20220217 -17 February 2022 +d:webgpu-20240502 +webgpu-20240502 +2 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220217/ -https://www.w3.org/TR/2022/WD-webgpu-20220217/ +https://www.w3.org/TR/2024/WD-webgpu-20240502/ +https://www.w3.org/TR/2024/WD-webgpu-20240502/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220218 -webgpu-20220218 -18 February 2022 +d:webgpu-20240507 +webgpu-20240507 +7 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220218/ -https://www.w3.org/TR/2022/WD-webgpu-20220218/ +https://www.w3.org/TR/2024/WD-webgpu-20240507/ +https://www.w3.org/TR/2024/WD-webgpu-20240507/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220222 -webgpu-20220222 -22 February 2022 +d:webgpu-20240508 +webgpu-20240508 +8 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220222/ -https://www.w3.org/TR/2022/WD-webgpu-20220222/ +https://www.w3.org/TR/2024/WD-webgpu-20240508/ +https://www.w3.org/TR/2024/WD-webgpu-20240508/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220223 -webgpu-20220223 -23 February 2022 +d:webgpu-20240514 +webgpu-20240514 +14 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220223/ -https://www.w3.org/TR/2022/WD-webgpu-20220223/ +https://www.w3.org/TR/2024/WD-webgpu-20240514/ +https://www.w3.org/TR/2024/WD-webgpu-20240514/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220224 -webgpu-20220224 -24 February 2022 +d:webgpu-20240515 +webgpu-20240515 +15 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220224/ -https://www.w3.org/TR/2022/WD-webgpu-20220224/ +https://www.w3.org/TR/2024/WD-webgpu-20240515/ +https://www.w3.org/TR/2024/WD-webgpu-20240515/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220225 -webgpu-20220225 -25 February 2022 +d:webgpu-20240518 +webgpu-20240518 +18 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220225/ -https://www.w3.org/TR/2022/WD-webgpu-20220225/ +https://www.w3.org/TR/2024/WD-webgpu-20240518/ +https://www.w3.org/TR/2024/WD-webgpu-20240518/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220302 -webgpu-20220302 -2 March 2022 +d:webgpu-20240521 +webgpu-20240521 +21 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220302/ -https://www.w3.org/TR/2022/WD-webgpu-20220302/ +https://www.w3.org/TR/2024/WD-webgpu-20240521/ +https://www.w3.org/TR/2024/WD-webgpu-20240521/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220303 -webgpu-20220303 -3 March 2022 +d:webgpu-20240524 +webgpu-20240524 +24 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220303/ -https://www.w3.org/TR/2022/WD-webgpu-20220303/ +https://www.w3.org/TR/2024/WD-webgpu-20240524/ +https://www.w3.org/TR/2024/WD-webgpu-20240524/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220310 -webgpu-20220310 -10 March 2022 +d:webgpu-20240528 +webgpu-20240528 +28 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220310/ -https://www.w3.org/TR/2022/WD-webgpu-20220310/ +https://www.w3.org/TR/2024/WD-webgpu-20240528/ +https://www.w3.org/TR/2024/WD-webgpu-20240528/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220315 -webgpu-20220315 -15 March 2022 +d:webgpu-20240530 +webgpu-20240530 +30 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220315/ -https://www.w3.org/TR/2022/WD-webgpu-20220315/ +https://www.w3.org/TR/2024/WD-webgpu-20240530/ +https://www.w3.org/TR/2024/WD-webgpu-20240530/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220316 -webgpu-20220316 -16 March 2022 +d:webgpu-20240531 +webgpu-20240531 +31 May 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220316/ -https://www.w3.org/TR/2022/WD-webgpu-20220316/ +https://www.w3.org/TR/2024/WD-webgpu-20240531/ +https://www.w3.org/TR/2024/WD-webgpu-20240531/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220319 -webgpu-20220319 -19 March 2022 +d:webgpu-20240604 +webgpu-20240604 +4 June 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220319/ -https://www.w3.org/TR/2022/WD-webgpu-20220319/ +https://www.w3.org/TR/2024/WD-webgpu-20240604/ +https://www.w3.org/TR/2024/WD-webgpu-20240604/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220321 -webgpu-20220321 -21 March 2022 +d:webgpu-20240618 +webgpu-20240618 +18 June 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220321/ -https://www.w3.org/TR/2022/WD-webgpu-20220321/ +https://www.w3.org/TR/2024/WD-webgpu-20240618/ +https://www.w3.org/TR/2024/WD-webgpu-20240618/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220323 -webgpu-20220323 -23 March 2022 +d:webgpu-20240620 +webgpu-20240620 +20 June 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220323/ -https://www.w3.org/TR/2022/WD-webgpu-20220323/ +https://www.w3.org/TR/2024/WD-webgpu-20240620/ +https://www.w3.org/TR/2024/WD-webgpu-20240620/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220324 -webgpu-20220324 -24 March 2022 +d:webgpu-20240621 +webgpu-20240621 +21 June 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220324/ -https://www.w3.org/TR/2022/WD-webgpu-20220324/ +https://www.w3.org/TR/2024/WD-webgpu-20240621/ +https://www.w3.org/TR/2024/WD-webgpu-20240621/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220325 -webgpu-20220325 -25 March 2022 +d:webgpu-20240626 +webgpu-20240626 +26 June 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220325/ -https://www.w3.org/TR/2022/WD-webgpu-20220325/ +https://www.w3.org/TR/2024/WD-webgpu-20240626/ +https://www.w3.org/TR/2024/WD-webgpu-20240626/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220326 -webgpu-20220326 -26 March 2022 +d:webgpu-20240627 +webgpu-20240627 +27 June 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220326/ -https://www.w3.org/TR/2022/WD-webgpu-20220326/ +https://www.w3.org/TR/2024/WD-webgpu-20240627/ +https://www.w3.org/TR/2024/WD-webgpu-20240627/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220328 -webgpu-20220328 -28 March 2022 +d:webgpu-20240701 +webgpu-20240701 +1 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220328/ -https://www.w3.org/TR/2022/WD-webgpu-20220328/ +https://www.w3.org/TR/2024/WD-webgpu-20240701/ +https://www.w3.org/TR/2024/WD-webgpu-20240701/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220329 -webgpu-20220329 -29 March 2022 +d:webgpu-20240703 +webgpu-20240703 +3 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220329/ -https://www.w3.org/TR/2022/WD-webgpu-20220329/ +https://www.w3.org/TR/2024/WD-webgpu-20240703/ +https://www.w3.org/TR/2024/WD-webgpu-20240703/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220331 -webgpu-20220331 -31 March 2022 +d:webgpu-20240708 +webgpu-20240708 +8 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220331/ -https://www.w3.org/TR/2022/WD-webgpu-20220331/ +https://www.w3.org/TR/2024/WD-webgpu-20240708/ +https://www.w3.org/TR/2024/WD-webgpu-20240708/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220403 -webgpu-20220403 -3 April 2022 +d:webgpu-20240709 +webgpu-20240709 +9 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220403/ -https://www.w3.org/TR/2022/WD-webgpu-20220403/ +https://www.w3.org/TR/2024/WD-webgpu-20240709/ +https://www.w3.org/TR/2024/WD-webgpu-20240709/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220404 -webgpu-20220404 -4 April 2022 +d:webgpu-20240710 +webgpu-20240710 +10 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220404/ -https://www.w3.org/TR/2022/WD-webgpu-20220404/ +https://www.w3.org/TR/2024/WD-webgpu-20240710/ +https://www.w3.org/TR/2024/WD-webgpu-20240710/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220506 -webgpu-20220506 -6 May 2022 +d:webgpu-20240712 +webgpu-20240712 +12 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220506/ -https://www.w3.org/TR/2022/WD-webgpu-20220506/ +https://www.w3.org/TR/2024/WD-webgpu-20240712/ +https://www.w3.org/TR/2024/WD-webgpu-20240712/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220509 -webgpu-20220509 -9 May 2022 +d:webgpu-20240717 +webgpu-20240717 +17 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220509/ -https://www.w3.org/TR/2022/WD-webgpu-20220509/ +https://www.w3.org/TR/2024/WD-webgpu-20240717/ +https://www.w3.org/TR/2024/WD-webgpu-20240717/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220510 -webgpu-20220510 -10 May 2022 +d:webgpu-20240718 +webgpu-20240718 +18 July 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220510/ -https://www.w3.org/TR/2022/WD-webgpu-20220510/ +https://www.w3.org/TR/2024/WD-webgpu-20240718/ +https://www.w3.org/TR/2024/WD-webgpu-20240718/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220511 -webgpu-20220511 -11 May 2022 +d:webgpu-20240805 +webgpu-20240805 +5 August 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220511/ -https://www.w3.org/TR/2022/WD-webgpu-20220511/ +https://www.w3.org/TR/2024/WD-webgpu-20240805/ +https://www.w3.org/TR/2024/WD-webgpu-20240805/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220512 -webgpu-20220512 -12 May 2022 +d:webgpu-20240813 +webgpu-20240813 +13 August 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220512/ -https://www.w3.org/TR/2022/WD-webgpu-20220512/ +https://www.w3.org/TR/2024/WD-webgpu-20240813/ +https://www.w3.org/TR/2024/WD-webgpu-20240813/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220513 -webgpu-20220513 -13 May 2022 +d:webgpu-20240821 +webgpu-20240821 +21 August 2024 WD WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220513/ -https://www.w3.org/TR/2022/WD-webgpu-20220513/ +https://www.w3.org/TR/2024/WD-webgpu-20240821/ +https://www.w3.org/TR/2024/WD-webgpu-20240821/ -Dzmitry Malyshau Kai Ninomiya Brandon Jones +Jim Blandy - -d:webgpu-20220516 -webgpu-20220516 -16 May 2022 +d:webhid +WEBHID + +Draft Community Group Report +WebHID API +https://wicg.github.io/webhid/ + + + + +- +d:webidl +WEBIDL + +Living Standard +Web IDL Standard +https://webidl.spec.whatwg.org/ + + + + +Edgar Chen +Timothy Gu +- +a:webidl-1 +WebIDL-1 +WEBIDL +- +a:webidl-1-20071017 +WebIDL-1-20071017 +WebIDL-20071017 +- +a:webidl-1-20080410 +WebIDL-1-20080410 +WebIDL-20080410 +- +a:webidl-1-20080829 +WebIDL-1-20080829 +WebIDL-20080829 +- +a:webidl-1-20081219 +WebIDL-1-20081219 +WebIDL-20081219 +- +a:webidl-1-20101021 +WebIDL-1-20101021 +WebIDL-20101021 +- +a:webidl-1-20110712 +WebIDL-1-20110712 +WebIDL-20110712 +- +a:webidl-1-20110927 +WebIDL-1-20110927 +WebIDL-20110927 +- +a:webidl-1-20120207 +WebIDL-1-20120207 +WebIDL-20120207 +- +a:webidl-1-20120419 +WebIDL-1-20120419 +WebIDL-20120419 +- +a:webidl-1-20150804 +WebIDL-1-20150804 +WebIDL-20150804 +- +a:webidl-1-20160308 +WebIDL-1-20160308 +WebIDL-20160308 +- +a:webidl-1-20160915 +WebIDL-1-20160915 +WebIDL-20160915 +- +a:webidl-1-20161215 +WebIDL-1-20161215 +WebIDL-20161215 +- +a:webidl-2 +WebIDL-2 +WEBIDL +- +a:webidl-2-20071017 +WebIDL-2-20071017 +WebIDL-20071017 +- +a:webidl-2-20080410 +WebIDL-2-20080410 +WebIDL-20080410 +- +a:webidl-2-20080829 +WebIDL-2-20080829 +WebIDL-20080829 +- +a:webidl-2-20081219 +WebIDL-2-20081219 +WebIDL-20081219 +- +a:webidl-2-20101021 +WebIDL-2-20101021 +WebIDL-20101021 +- +a:webidl-2-20110712 +WebIDL-2-20110712 +WebIDL-20110712 +- +a:webidl-2-20110927 +WebIDL-2-20110927 +WebIDL-20110927 +- +a:webidl-2-20120207 +WebIDL-2-20120207 +WebIDL-20120207 +- +a:webidl-2-20120419 +WebIDL-2-20120419 +WebIDL-20120419 +- +a:webidl-2-20150804 +WebIDL-2-20150804 +WebIDL-20150804 +- +a:webidl-2-20160308 +WebIDL-2-20160308 +WebIDL-20160308 +- +a:webidl-2-20160915 +WebIDL-2-20160915 +WebIDL-20160915 +- +a:webidl-2-20161215 +WebIDL-2-20161215 +WebIDL-20161215 +- +d:webidl-20071017 +WEBIDL-20071017 +17 October 2007 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220516/ -https://www.w3.org/TR/2022/WD-webgpu-20220516/ +Web IDL Standard +https://www.w3.org/TR/2007/WD-DOM-Bindings-20071017/ +https://www.w3.org/TR/2007/WD-DOM-Bindings-20071017/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220517 -webgpu-20220517 -17 May 2022 +d:webidl-20080410 +WEBIDL-20080410 +10 April 2008 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220517/ -https://www.w3.org/TR/2022/WD-webgpu-20220517/ +Web IDL Standard +https://www.w3.org/TR/2008/WD-DOM-Bindings-20080410/ +https://www.w3.org/TR/2008/WD-DOM-Bindings-20080410/ + + + +Cameron McCormack +- +d:webidl-20080829 +WEBIDL-20080829 +29 August 2008 +WD +Web IDL Standard +https://www.w3.org/TR/2008/WD-WebIDL-20080829/ +https://www.w3.org/TR/2008/WD-WebIDL-20080829/ + + + +Cameron McCormack +- +d:webidl-20081219 +WEBIDL-20081219 +19 December 2008 +WD +Web IDL Standard +https://www.w3.org/TR/2008/WD-WebIDL-20081219/ +https://www.w3.org/TR/2008/WD-WebIDL-20081219/ + + + +Cameron McCormack +- +d:webidl-20101021 +WEBIDL-20101021 +21 October 2010 +WD +Web IDL Standard +https://www.w3.org/TR/2010/WD-WebIDL-20101021/ +https://www.w3.org/TR/2010/WD-WebIDL-20101021/ + + + +Cameron McCormack +- +d:webidl-20110712 +WEBIDL-20110712 +12 July 2011 +WD +Web IDL Standard +https://www.w3.org/TR/2011/WD-WebIDL-20110712/ +https://www.w3.org/TR/2011/WD-WebIDL-20110712/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220518 -webgpu-20220518 -18 May 2022 +d:webidl-20110927 +WEBIDL-20110927 +27 September 2011 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220518/ -https://www.w3.org/TR/2022/WD-webgpu-20220518/ +Web IDL Standard +https://www.w3.org/TR/2011/WD-WebIDL-20110927/ +https://www.w3.org/TR/2011/WD-WebIDL-20110927/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220520 -webgpu-20220520 -20 May 2022 +d:webidl-20120207 +WEBIDL-20120207 +7 February 2012 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220520/ -https://www.w3.org/TR/2022/WD-webgpu-20220520/ +Web IDL Standard +https://www.w3.org/TR/2012/WD-WebIDL-20120207/ +https://www.w3.org/TR/2012/WD-WebIDL-20120207/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220521 -webgpu-20220521 -21 May 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220521/ -https://www.w3.org/TR/2022/WD-webgpu-20220521/ +d:webidl-20120419 +WEBIDL-20120419 +19 April 2012 +CR +Web IDL +https://www.w3.org/TR/2012/CR-WebIDL-20120419/ +https://www.w3.org/TR/2012/CR-WebIDL-20120419/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220603 -webgpu-20220603 -3 June 2022 +d:webidl-20150804 +WEBIDL-20150804 +4 August 2015 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220603/ -https://www.w3.org/TR/2022/WD-webgpu-20220603/ +WebIDL Level 1 +https://www.w3.org/TR/2015/WD-WebIDL-1-20150804/ +https://www.w3.org/TR/2015/WD-WebIDL-1-20150804/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack +Boris Zbarsky - -d:webgpu-20220606 -webgpu-20220606 -6 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220606/ -https://www.w3.org/TR/2022/WD-webgpu-20220606/ +d:webidl-20160308 +WEBIDL-20160308 +8 March 2016 +CR +WebIDL Level 1 +https://www.w3.org/TR/2016/CR-WebIDL-1-20160308/ +https://www.w3.org/TR/2016/CR-WebIDL-1-20160308/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack +Boris Zbarsky - -d:webgpu-20220607 -webgpu-20220607 -7 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220607/ -https://www.w3.org/TR/2022/WD-webgpu-20220607/ +d:webidl-20160915 +WEBIDL-20160915 +15 September 2016 +PR +WebIDL Level 1 +https://www.w3.org/TR/2016/PR-WebIDL-1-20160915/ +https://www.w3.org/TR/2016/PR-WebIDL-1-20160915/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack +Boris Zbarsky - -d:webgpu-20220608 -webgpu-20220608 -8 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220608/ -https://www.w3.org/TR/2022/WD-webgpu-20220608/ +d:webidl-20161215 +WEBIDL-20161215 +15 December 2016 +REC +WebIDL Level 1 +https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/ +https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220609 -webgpu-20220609 -9 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220609/ -https://www.w3.org/TR/2022/WD-webgpu-20220609/ +d:webidl-java +WebIDL-Java +14 May 2013 +NOTE +Java language binding for Web IDL +https://www.w3.org/TR/WebIDL-Java/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones + +Cameron McCormack - -d:webgpu-20220610 -webgpu-20220610 -10 June 2022 +d:webidl-java-20120207 +WebIDL-Java-20120207 +7 February 2012 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220610/ -https://www.w3.org/TR/2022/WD-webgpu-20220610/ +Java language binding for Web IDL +https://www.w3.org/TR/2012/WD-WebIDL-Java-20120207/ +https://www.w3.org/TR/2012/WD-WebIDL-Java-20120207/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220611 -webgpu-20220611 -11 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220611/ -https://www.w3.org/TR/2022/WD-webgpu-20220611/ +d:webidl-java-20130514 +WebIDL-Java-20130514 +14 May 2013 +NOTE +Java language binding for Web IDL +https://www.w3.org/TR/2013/NOTE-WebIDL-Java-20130514/ +https://www.w3.org/TR/2013/NOTE-WebIDL-Java-20130514/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Cameron McCormack - -d:webgpu-20220613 -webgpu-20220613 -13 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220613/ -https://www.w3.org/TR/2022/WD-webgpu-20220613/ +a:webidl-ls +WebIDL-LS +WEBIDL +- +a:webidl-ls-20071017 +WebIDL-LS-20071017 +WebIDL-20071017 +- +a:webidl-ls-20080410 +WebIDL-LS-20080410 +WebIDL-20080410 +- +a:webidl-ls-20080829 +WebIDL-LS-20080829 +WebIDL-20080829 +- +a:webidl-ls-20081219 +WebIDL-LS-20081219 +WebIDL-20081219 +- +a:webidl-ls-20101021 +WebIDL-LS-20101021 +WebIDL-20101021 +- +a:webidl-ls-20110712 +WebIDL-LS-20110712 +WebIDL-20110712 +- +a:webidl-ls-20110927 +WebIDL-LS-20110927 +WebIDL-20110927 +- +a:webidl-ls-20120207 +WebIDL-LS-20120207 +WebIDL-20120207 +- +a:webidl-ls-20120419 +WebIDL-LS-20120419 +WebIDL-20120419 +- +a:webidl-ls-20150804 +WebIDL-LS-20150804 +WebIDL-20150804 +- +a:webidl-ls-20160308 +WebIDL-LS-20160308 +WebIDL-20160308 +- +a:webidl-ls-20160915 +WebIDL-LS-20160915 +WebIDL-20160915 +- +a:webidl-ls-20161215 +WebIDL-LS-20161215 +WebIDL-20161215 +- +d:webintents +WEBINTENTS + +ED +Web Intents +https://dvcs.w3.org/hg/web-intents/raw-file/tip/spec/Overview.html + + + + +Greg Billock +James Hawkins +Paul Kinlan +- +d:webintents-local-services +webintents-local-services +14 January 2014 +NOTE +Web Intents Addendum - Local Services +https://www.w3.org/TR/webintents-local-services/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones + +Claes Nilsson +Norifumi Kikkawa - -d:webgpu-20220614 -webgpu-20220614 -14 June 2022 +d:webintents-local-services-20121004 +webintents-local-services-20121004 +4 October 2012 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220614/ -https://www.w3.org/TR/2022/WD-webgpu-20220614/ +Web Intents Addendum - Local Services +https://www.w3.org/TR/2012/WD-webintents-local-services-20121004/ +https://www.w3.org/TR/2012/WD-webintents-local-services-20121004/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Claes Nilsson +Norifumi Kikkawa - -d:webgpu-20220616 -webgpu-20220616 -16 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220616/ -https://www.w3.org/TR/2022/WD-webgpu-20220616/ +d:webintents-local-services-20140114 +webintents-local-services-20140114 +14 January 2014 +NOTE +Web Intents Addendum - Local Services +https://www.w3.org/TR/2014/NOTE-webintents-local-services-20140114/ +https://www.w3.org/TR/2014/NOTE-webintents-local-services-20140114/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Claes Nilsson +Norifumi Kikkawa - -d:webgpu-20220617 -webgpu-20220617 -17 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220617/ -https://www.w3.org/TR/2022/WD-webgpu-20220617/ - +d:webm +WebM +26 April 2016 +WebM Container Guidelines +https://www.webmproject.org/docs/container/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones -- -d:webgpu-20220623 -webgpu-20220623 -23 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220623/ -https://www.w3.org/TR/2022/WD-webgpu-20220623/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones - -d:webgpu-20220624 -webgpu-20220624 -24 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220624/ -https://www.w3.org/TR/2022/WD-webgpu-20220624/ +d:webmachinelearning-ethics +webmachinelearning-ethics +8 January 2024 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/webmachinelearning-ethics/ +https://webmachinelearning.github.io/webmachinelearning-ethics/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Anssi Kostiainen - -d:webgpu-20220627 -webgpu-20220627 -27 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220627/ -https://www.w3.org/TR/2022/WD-webgpu-20220627/ +d:webmachinelearning-ethics-20220628 +webmachinelearning-ethics-20220628 +28 June 2022 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20220628/ +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20220628/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +James Fletcher +Anssi Kostiainen - -d:webgpu-20220628 -webgpu-20220628 -28 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220628/ -https://www.w3.org/TR/2022/WD-webgpu-20220628/ +d:webmachinelearning-ethics-20221125 +webmachinelearning-ethics-20221125 +25 November 2022 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221125/ +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221125/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +James Fletcher +Anssi Kostiainen - -d:webgpu-20220629 -webgpu-20220629 -29 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220629/ -https://www.w3.org/TR/2022/WD-webgpu-20220629/ +d:webmachinelearning-ethics-20221128 +webmachinelearning-ethics-20221128 +28 November 2022 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221128/ +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221128/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +James Fletcher +Anssi Kostiainen - -d:webgpu-20220630 -webgpu-20220630 -30 June 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220630/ -https://www.w3.org/TR/2022/WD-webgpu-20220630/ +d:webmachinelearning-ethics-20221129 +webmachinelearning-ethics-20221129 +29 November 2022 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221129/ +https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221129/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +James Fletcher +Anssi Kostiainen - -d:webgpu-20220706 -webgpu-20220706 -6 July 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220706/ -https://www.w3.org/TR/2022/WD-webgpu-20220706/ +d:webmachinelearning-ethics-20230811 +webmachinelearning-ethics-20230811 +11 August 2023 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/2023/DNOTE-webmachinelearning-ethics-20230811/ +https://www.w3.org/TR/2023/DNOTE-webmachinelearning-ethics-20230811/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Anssi Kostiainen - -d:webgpu-20220707 -webgpu-20220707 -7 July 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220707/ -https://www.w3.org/TR/2022/WD-webgpu-20220707/ +d:webmachinelearning-ethics-20240108 +webmachinelearning-ethics-20240108 +8 January 2024 +NOTE +Ethical Principles for Web Machine Learning +https://www.w3.org/TR/2024/DNOTE-webmachinelearning-ethics-20240108/ +https://www.w3.org/TR/2024/DNOTE-webmachinelearning-ethics-20240108/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Anssi Kostiainen - -d:webgpu-20220708 -webgpu-20220708 -8 July 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220708/ -https://www.w3.org/TR/2022/WD-webgpu-20220708/ +d:webmention +webmention +12 January 2017 +REC +Webmention +https://www.w3.org/TR/webmention/ +https://webmention.net/draft/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220803 -webgpu-20220803 -3 August 2022 +d:webmention-20160112 +webmention-20160112 +12 January 2016 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220803/ -https://www.w3.org/TR/2022/WD-webgpu-20220803/ +Webmention +https://www.w3.org/TR/2016/WD-webmention-20160112/ +https://www.w3.org/TR/2016/WD-webmention-20160112/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220805 -webgpu-20220805 -5 August 2022 +d:webmention-20160301 +webmention-20160301 +1 March 2016 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220805/ -https://www.w3.org/TR/2022/WD-webgpu-20220805/ +Webmention +https://www.w3.org/TR/2016/WD-webmention-20160301/ +https://www.w3.org/TR/2016/WD-webmention-20160301/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220812 -webgpu-20220812 -12 August 2022 +d:webmention-20160329 +webmention-20160329 +29 March 2016 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220812/ -https://www.w3.org/TR/2022/WD-webgpu-20220812/ +Webmention +https://www.w3.org/TR/2016/WD-webmention-20160329/ +https://www.w3.org/TR/2016/WD-webmention-20160329/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220815 -webgpu-20220815 -15 August 2022 +d:webmention-20160420 +webmention-20160420 +20 April 2016 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220815/ -https://www.w3.org/TR/2022/WD-webgpu-20220815/ +Webmention +https://www.w3.org/TR/2016/WD-webmention-20160420/ +https://www.w3.org/TR/2016/WD-webmention-20160420/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220816 -webgpu-20220816 -16 August 2022 +d:webmention-20160429 +webmention-20160429 +29 April 2016 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220816/ -https://www.w3.org/TR/2022/WD-webgpu-20220816/ +Webmention +https://www.w3.org/TR/2016/WD-webmention-20160429/ +https://www.w3.org/TR/2016/WD-webmention-20160429/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220817 -webgpu-20220817 -17 August 2022 +d:webmention-20160517 +webmention-20160517 +17 May 2016 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220817/ -https://www.w3.org/TR/2022/WD-webgpu-20220817/ +Webmention +https://www.w3.org/TR/2016/WD-webmention-20160517/ +https://www.w3.org/TR/2016/WD-webmention-20160517/ -Dzmitry Malyshau -Kai Ninomiya -Brandon Jones +Aaron Parecki - -d:webgpu-20220819 -webgpu-20220819 -19 August 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220819/ -https://www.w3.org/TR/2022/WD-webgpu-20220819/ +d:webmention-20160524 +webmention-20160524 +24 May 2016 +CR +Webmention +https://www.w3.org/TR/2016/CR-webmention-20160524/ +https://www.w3.org/TR/2016/CR-webmention-20160524/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Aaron Parecki - -d:webgpu-20220822 -webgpu-20220822 -22 August 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220822/ -https://www.w3.org/TR/2022/WD-webgpu-20220822/ +d:webmention-20161101 +webmention-20161101 +1 November 2016 +PR +Webmention +https://www.w3.org/TR/2016/PR-webmention-20161101/ +https://www.w3.org/TR/2016/PR-webmention-20161101/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Aaron Parecki - -d:webgpu-20220824 -webgpu-20220824 -24 August 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220824/ -https://www.w3.org/TR/2022/WD-webgpu-20220824/ +d:webmention-20170112 +webmention-20170112 +12 January 2017 +REC +Webmention +https://www.w3.org/TR/2017/REC-webmention-20170112/ +https://www.w3.org/TR/2017/REC-webmention-20170112/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Aaron Parecki - -d:webgpu-20220825 -webgpu-20220825 -25 August 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220825/ -https://www.w3.org/TR/2022/WD-webgpu-20220825/ +d:webmessaging +webmessaging +28 January 2021 +REC +HTML5 Web Messaging +https://www.w3.org/TR/webmessaging/ +https://html.spec.whatwg.org/multipage/web-messaging.html -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220826 -webgpu-20220826 -26 August 2022 +d:webmessaging-20101118 +webmessaging-20101118 +18 November 2010 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220826/ -https://www.w3.org/TR/2022/WD-webgpu-20220826/ +HTML5 Web Messaging +https://www.w3.org/TR/2010/WD-webmessaging-20101118/ +https://www.w3.org/TR/2010/WD-webmessaging-20101118/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220827 -webgpu-20220827 -27 August 2022 +d:webmessaging-20110317 +webmessaging-20110317 +17 March 2011 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220827/ -https://www.w3.org/TR/2022/WD-webgpu-20220827/ +HTML5 Web Messaging +https://www.w3.org/TR/2011/WD-webmessaging-20110317/ +https://www.w3.org/TR/2011/WD-webmessaging-20110317/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220829 -webgpu-20220829 -29 August 2022 +d:webmessaging-20111020 +webmessaging-20111020 +20 October 2011 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220829/ -https://www.w3.org/TR/2022/WD-webgpu-20220829/ +HTML5 Web Messaging +https://www.w3.org/TR/2011/WD-webmessaging-20111020/ +https://www.w3.org/TR/2011/WD-webmessaging-20111020/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220830 -webgpu-20220830 -30 August 2022 +d:webmessaging-20120313 +webmessaging-20120313 +13 March 2012 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220830/ -https://www.w3.org/TR/2022/WD-webgpu-20220830/ +HTML5 Web Messaging +https://www.w3.org/TR/2012/WD-webmessaging-20120313/ +https://www.w3.org/TR/2012/WD-webmessaging-20120313/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220831 -webgpu-20220831 -31 August 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220831/ -https://www.w3.org/TR/2022/WD-webgpu-20220831/ +d:webmessaging-20120501 +webmessaging-20120501 +1 May 2012 +CR +HTML5 Web Messaging +https://www.w3.org/TR/2012/CR-webmessaging-20120501/ +https://www.w3.org/TR/2012/CR-webmessaging-20120501/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220908 -webgpu-20220908 -8 September 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220908/ -https://www.w3.org/TR/2022/WD-webgpu-20220908/ +d:webmessaging-20150407 +webmessaging-20150407 +7 April 2015 +PR +HTML5 Web Messaging +https://www.w3.org/TR/2015/PR-webmessaging-20150407/ +https://www.w3.org/TR/2015/PR-webmessaging-20150407/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220913 -webgpu-20220913 -13 September 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220913/ -https://www.w3.org/TR/2022/WD-webgpu-20220913/ +d:webmessaging-20150519 +webmessaging-20150519 +19 May 2015 +REC +HTML5 Web Messaging +https://www.w3.org/TR/2015/REC-webmessaging-20150519/ +https://www.w3.org/TR/2015/REC-webmessaging-20150519/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220917 -webgpu-20220917 -17 September 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220917/ -https://www.w3.org/TR/2022/WD-webgpu-20220917/ +d:webmessaging-20210128 +webmessaging-20210128 +28 January 2021 +REC +HTML5 Web Messaging +https://www.w3.org/TR/2021/SPSD-webmessaging-20210128/ +https://www.w3.org/TR/2021/SPSD-webmessaging-20210128/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ian Hickson - -d:webgpu-20220930 -webgpu-20220930 -30 September 2022 +d:webmidi +webmidi +12 July 2024 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20220930/ -https://www.w3.org/TR/2022/WD-webgpu-20220930/ +Web MIDI API +https://www.w3.org/TR/webmidi/ +https://webaudio.github.io/web-midi-api/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Chris Wilson +Michael Wilson - -d:webgpu-20221003 -webgpu-20221003 -3 October 2022 +d:webmidi-20121025 +webmidi-20121025 +25 October 2012 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221003/ -https://www.w3.org/TR/2022/WD-webgpu-20221003/ +Web MIDI API +https://www.w3.org/TR/2012/WD-webmidi-20121025/ +https://www.w3.org/TR/2012/WD-webmidi-20121025/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Chris Wilson +Michael Wilson - -d:webgpu-20221004 -webgpu-20221004 -4 October 2022 +d:webmidi-20121213 +webmidi-20121213 +13 December 2012 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221004/ -https://www.w3.org/TR/2022/WD-webgpu-20221004/ +Web MIDI API +https://www.w3.org/TR/2012/WD-webmidi-20121213/ +https://www.w3.org/TR/2012/WD-webmidi-20121213/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Jussi Kalliokoski +Chris Wilson - -d:webgpu-20221005 -webgpu-20221005 -5 October 2022 +d:webmidi-20131126 +webmidi-20131126 +26 November 2013 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221005/ -https://www.w3.org/TR/2022/WD-webgpu-20221005/ +Web MIDI API +https://www.w3.org/TR/2013/WD-webmidi-20131126/ +https://www.w3.org/TR/2013/WD-webmidi-20131126/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Jussi Kalliokoski +Chris Wilson - -d:webgpu-20221006 -webgpu-20221006 -6 October 2022 +d:webmidi-20150317 +webmidi-20150317 +17 March 2015 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221006/ -https://www.w3.org/TR/2022/WD-webgpu-20221006/ +Web MIDI API +https://www.w3.org/TR/2015/WD-webmidi-20150317/ +https://www.w3.org/TR/2015/WD-webmidi-20150317/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Chris Wilson +Jussi Kalliokoski - -d:webgpu-20221007 -webgpu-20221007 -7 October 2022 +d:webmidi-20240706 +webmidi-20240706 +6 July 2024 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221007/ -https://www.w3.org/TR/2022/WD-webgpu-20221007/ +Web MIDI API +https://www.w3.org/TR/2024/WD-webmidi-20240706/ +https://www.w3.org/TR/2024/WD-webmidi-20240706/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Chris Wilson +Michael Wilson - -d:webgpu-20221011 -webgpu-20221011 -11 October 2022 +d:webmidi-20240712 +webmidi-20240712 +12 July 2024 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221011/ -https://www.w3.org/TR/2022/WD-webgpu-20221011/ +Web MIDI API +https://www.w3.org/TR/2024/WD-webmidi-20240712/ +https://www.w3.org/TR/2024/WD-webmidi-20240712/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Chris Wilson +Michael Wilson - -d:webgpu-20221017 -webgpu-20221017 -17 October 2022 -WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221017/ -https://www.w3.org/TR/2022/WD-webgpu-20221017/ +d:webnn +webnn +22 August 2024 +CR +Web Neural Network API +https://www.w3.org/TR/webnn/ +https://webmachinelearning.github.io/webnn/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Dwayne Robinson - -d:webgpu-20221026 -webgpu-20221026 -26 October 2022 +d:webnn-20210622 +webnn-20210622 +22 June 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221026/ -https://www.w3.org/TR/2022/WD-webgpu-20221026/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210622/ +https://www.w3.org/TR/2021/WD-webnn-20210622/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221117 -webgpu-20221117 -17 November 2022 +d:webnn-20210722 +webnn-20210722 +22 July 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221117/ -https://www.w3.org/TR/2022/WD-webgpu-20221117/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210722/ +https://www.w3.org/TR/2021/WD-webnn-20210722/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221129 -webgpu-20221129 -29 November 2022 +d:webnn-20210810 +webnn-20210810 +10 August 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221129/ -https://www.w3.org/TR/2022/WD-webgpu-20221129/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210810/ +https://www.w3.org/TR/2021/WD-webnn-20210810/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221130 -webgpu-20221130 -30 November 2022 +d:webnn-20210903 +webnn-20210903 +3 September 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221130/ -https://www.w3.org/TR/2022/WD-webgpu-20221130/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210903/ +https://www.w3.org/TR/2021/WD-webnn-20210903/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221207 -webgpu-20221207 -7 December 2022 +d:webnn-20210908 +webnn-20210908 +8 September 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221207/ -https://www.w3.org/TR/2022/WD-webgpu-20221207/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210908/ +https://www.w3.org/TR/2021/WD-webnn-20210908/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221208 -webgpu-20221208 -8 December 2022 +d:webnn-20210920 +webnn-20210920 +20 September 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221208/ -https://www.w3.org/TR/2022/WD-webgpu-20221208/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210920/ +https://www.w3.org/TR/2021/WD-webnn-20210920/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221209 -webgpu-20221209 -9 December 2022 +d:webnn-20210922 +webnn-20210922 +22 September 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221209/ -https://www.w3.org/TR/2022/WD-webgpu-20221209/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210922/ +https://www.w3.org/TR/2021/WD-webnn-20210922/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221223 -webgpu-20221223 -23 December 2022 +d:webnn-20210930 +webnn-20210930 +30 September 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221223/ -https://www.w3.org/TR/2022/WD-webgpu-20221223/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20210930/ +https://www.w3.org/TR/2021/WD-webnn-20210930/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20221230 -webgpu-20221230 -30 December 2022 +d:webnn-20211116 +webnn-20211116 +16 November 2021 WD -WebGPU -https://www.w3.org/TR/2022/WD-webgpu-20221230/ -https://www.w3.org/TR/2022/WD-webgpu-20221230/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20211116/ +https://www.w3.org/TR/2021/WD-webnn-20211116/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20230104 -webgpu-20230104 -4 January 2023 +d:webnn-20211125 +webnn-20211125 +25 November 2021 WD -WebGPU -https://www.w3.org/TR/2023/WD-webgpu-20230104/ -https://www.w3.org/TR/2023/WD-webgpu-20230104/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20211125/ +https://www.w3.org/TR/2021/WD-webnn-20211125/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webgpu-20230118 -webgpu-20230118 -18 January 2023 +d:webnn-20211215 +webnn-20211215 +15 December 2021 WD -WebGPU -https://www.w3.org/TR/2023/WD-webgpu-20230118/ -https://www.w3.org/TR/2023/WD-webgpu-20230118/ +Web Neural Network API +https://www.w3.org/TR/2021/WD-webnn-20211215/ +https://www.w3.org/TR/2021/WD-webnn-20211215/ -Kai Ninomiya -Brandon Jones -Myles Maxfield +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl -WEBIDL +d:webnn-20220115 +webnn-20220115 +15 January 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220115/ +https://www.w3.org/TR/2022/WD-webnn-20220115/ -Living Standard -Web IDL Standard -https://webidl.spec.whatwg.org/ +Ningxin Hu +Chai Chaoweeraprasit +- +d:webnn-20220127 +webnn-20220127 +27 January 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220127/ +https://www.w3.org/TR/2022/WD-webnn-20220127/ -Edgar Chen -Timothy Gu -- -a:webidl-1 -WebIDL-1 -WEBIDL -- -a:webidl-1-20071017 -WebIDL-1-20071017 -WebIDL-20071017 -- -a:webidl-1-20080410 -WebIDL-1-20080410 -WebIDL-20080410 -- -a:webidl-1-20080829 -WebIDL-1-20080829 -WebIDL-20080829 -- -a:webidl-1-20081219 -WebIDL-1-20081219 -WebIDL-20081219 -- -a:webidl-1-20101021 -WebIDL-1-20101021 -WebIDL-20101021 -- -a:webidl-1-20110712 -WebIDL-1-20110712 -WebIDL-20110712 -- -a:webidl-1-20110927 -WebIDL-1-20110927 -WebIDL-20110927 -- -a:webidl-1-20120207 -WebIDL-1-20120207 -WebIDL-20120207 -- -a:webidl-1-20120419 -WebIDL-1-20120419 -WebIDL-20120419 -- -a:webidl-1-20150804 -WebIDL-1-20150804 -WebIDL-20150804 -- -a:webidl-1-20160308 -WebIDL-1-20160308 -WebIDL-20160308 -- -a:webidl-1-20160915 -WebIDL-1-20160915 -WebIDL-20160915 -- -a:webidl-1-20161215 -WebIDL-1-20161215 -WebIDL-20161215 -- -a:webidl-2 -WebIDL-2 -WEBIDL -- -a:webidl-2-20071017 -WebIDL-2-20071017 -WebIDL-20071017 -- -a:webidl-2-20080410 -WebIDL-2-20080410 -WebIDL-20080410 -- -a:webidl-2-20080829 -WebIDL-2-20080829 -WebIDL-20080829 -- -a:webidl-2-20081219 -WebIDL-2-20081219 -WebIDL-20081219 -- -a:webidl-2-20101021 -WebIDL-2-20101021 -WebIDL-20101021 -- -a:webidl-2-20110712 -WebIDL-2-20110712 -WebIDL-20110712 -- -a:webidl-2-20110927 -WebIDL-2-20110927 -WebIDL-20110927 -- -a:webidl-2-20120207 -WebIDL-2-20120207 -WebIDL-20120207 -- -a:webidl-2-20120419 -WebIDL-2-20120419 -WebIDL-20120419 -- -a:webidl-2-20150804 -WebIDL-2-20150804 -WebIDL-20150804 -- -a:webidl-2-20160308 -WebIDL-2-20160308 -WebIDL-20160308 -- -a:webidl-2-20160915 -WebIDL-2-20160915 -WebIDL-20160915 -- -a:webidl-2-20161215 -WebIDL-2-20161215 -WebIDL-20161215 + +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20071017 -WEBIDL-20071017 -17 October 2007 +d:webnn-20220214 +webnn-20220214 +14 February 2022 WD -Web IDL Standard -https://www.w3.org/TR/2007/WD-DOM-Bindings-20071017/ -https://www.w3.org/TR/2007/WD-DOM-Bindings-20071017/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220214/ +https://www.w3.org/TR/2022/WD-webnn-20220214/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20080410 -WEBIDL-20080410 -10 April 2008 +d:webnn-20220215 +webnn-20220215 +15 February 2022 WD -Web IDL Standard -https://www.w3.org/TR/2008/WD-DOM-Bindings-20080410/ -https://www.w3.org/TR/2008/WD-DOM-Bindings-20080410/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220215/ +https://www.w3.org/TR/2022/WD-webnn-20220215/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20080829 -WEBIDL-20080829 -29 August 2008 +d:webnn-20220223 +webnn-20220223 +23 February 2022 WD -Web IDL Standard -https://www.w3.org/TR/2008/WD-WebIDL-20080829/ -https://www.w3.org/TR/2008/WD-WebIDL-20080829/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220223/ +https://www.w3.org/TR/2022/WD-webnn-20220223/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20081219 -WEBIDL-20081219 -19 December 2008 +d:webnn-20220322 +webnn-20220322 +22 March 2022 WD -Web IDL Standard -https://www.w3.org/TR/2008/WD-WebIDL-20081219/ -https://www.w3.org/TR/2008/WD-WebIDL-20081219/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220322/ +https://www.w3.org/TR/2022/WD-webnn-20220322/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20101021 -WEBIDL-20101021 -21 October 2010 +d:webnn-20220324 +webnn-20220324 +24 March 2022 WD -Web IDL Standard -https://www.w3.org/TR/2010/WD-WebIDL-20101021/ -https://www.w3.org/TR/2010/WD-WebIDL-20101021/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220324/ +https://www.w3.org/TR/2022/WD-webnn-20220324/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20110712 -WEBIDL-20110712 -12 July 2011 +d:webnn-20220430 +webnn-20220430 +30 April 2022 WD -Web IDL Standard -https://www.w3.org/TR/2011/WD-WebIDL-20110712/ -https://www.w3.org/TR/2011/WD-WebIDL-20110712/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220430/ +https://www.w3.org/TR/2022/WD-webnn-20220430/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20110927 -WEBIDL-20110927 -27 September 2011 +d:webnn-20220520 +webnn-20220520 +20 May 2022 WD -Web IDL Standard -https://www.w3.org/TR/2011/WD-WebIDL-20110927/ -https://www.w3.org/TR/2011/WD-WebIDL-20110927/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220520/ +https://www.w3.org/TR/2022/WD-webnn-20220520/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20120207 -WEBIDL-20120207 -7 February 2012 +d:webnn-20220617 +webnn-20220617 +17 June 2022 WD -Web IDL Standard -https://www.w3.org/TR/2012/WD-WebIDL-20120207/ -https://www.w3.org/TR/2012/WD-WebIDL-20120207/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220617/ +https://www.w3.org/TR/2022/WD-webnn-20220617/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20120419 -WEBIDL-20120419 -19 April 2012 -CR -Web IDL -https://www.w3.org/TR/2012/CR-WebIDL-20120419/ -https://www.w3.org/TR/2012/CR-WebIDL-20120419/ +d:webnn-20220628 +webnn-20220628 +28 June 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220628/ +https://www.w3.org/TR/2022/WD-webnn-20220628/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20150804 -WEBIDL-20150804 -4 August 2015 +d:webnn-20220630 +webnn-20220630 +30 June 2022 WD -WebIDL Level 1 -https://www.w3.org/TR/2015/WD-WebIDL-1-20150804/ -https://www.w3.org/TR/2015/WD-WebIDL-1-20150804/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220630/ +https://www.w3.org/TR/2022/WD-webnn-20220630/ -Cameron McCormack -Boris Zbarsky +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20160308 -WEBIDL-20160308 -8 March 2016 -CR -WebIDL Level 1 -https://www.w3.org/TR/2016/CR-WebIDL-1-20160308/ -https://www.w3.org/TR/2016/CR-WebIDL-1-20160308/ +d:webnn-20220825 +webnn-20220825 +25 August 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220825/ +https://www.w3.org/TR/2022/WD-webnn-20220825/ -Cameron McCormack -Boris Zbarsky +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20160915 -WEBIDL-20160915 -15 September 2016 -PR -WebIDL Level 1 -https://www.w3.org/TR/2016/PR-WebIDL-1-20160915/ -https://www.w3.org/TR/2016/PR-WebIDL-1-20160915/ +d:webnn-20220831 +webnn-20220831 +31 August 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220831/ +https://www.w3.org/TR/2022/WD-webnn-20220831/ -Cameron McCormack -Boris Zbarsky +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-20161215 -WEBIDL-20161215 -15 December 2016 -REC -WebIDL Level 1 -https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/ -https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/ +d:webnn-20220901 +webnn-20220901 +1 September 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220901/ +https://www.w3.org/TR/2022/WD-webnn-20220901/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-java -WebIDL-Java -14 May 2013 -NOTE -Java language binding for Web IDL -https://www.w3.org/TR/WebIDL-Java/ - +d:webnn-20220929 +webnn-20220929 +29 September 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20220929/ +https://www.w3.org/TR/2022/WD-webnn-20220929/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-java-20120207 -WebIDL-Java-20120207 -7 February 2012 +d:webnn-20221024 +webnn-20221024 +24 October 2022 WD -Java language binding for Web IDL -https://www.w3.org/TR/2012/WD-WebIDL-Java-20120207/ -https://www.w3.org/TR/2012/WD-WebIDL-Java-20120207/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221024/ +https://www.w3.org/TR/2022/WD-webnn-20221024/ -Cameron McCormack +Ningxin Hu +Chai Chaoweeraprasit - -d:webidl-java-20130514 -WebIDL-Java-20130514 -14 May 2013 -NOTE -Java language binding for Web IDL -https://www.w3.org/TR/2013/NOTE-WebIDL-Java-20130514/ -https://www.w3.org/TR/2013/NOTE-WebIDL-Java-20130514/ +d:webnn-20221104 +webnn-20221104 +4 November 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221104/ +https://www.w3.org/TR/2022/WD-webnn-20221104/ -Cameron McCormack -- -a:webidl-ls -WebIDL-LS -WEBIDL -- -a:webidl-ls-20071017 -WebIDL-LS-20071017 -WebIDL-20071017 -- -a:webidl-ls-20080410 -WebIDL-LS-20080410 -WebIDL-20080410 -- -a:webidl-ls-20080829 -WebIDL-LS-20080829 -WebIDL-20080829 -- -a:webidl-ls-20081219 -WebIDL-LS-20081219 -WebIDL-20081219 -- -a:webidl-ls-20101021 -WebIDL-LS-20101021 -WebIDL-20101021 -- -a:webidl-ls-20110712 -WebIDL-LS-20110712 -WebIDL-20110712 -- -a:webidl-ls-20110927 -WebIDL-LS-20110927 -WebIDL-20110927 -- -a:webidl-ls-20120207 -WebIDL-LS-20120207 -WebIDL-20120207 -- -a:webidl-ls-20120419 -WebIDL-LS-20120419 -WebIDL-20120419 -- -a:webidl-ls-20150804 -WebIDL-LS-20150804 -WebIDL-20150804 -- -a:webidl-ls-20160308 -WebIDL-LS-20160308 -WebIDL-20160308 -- -a:webidl-ls-20160915 -WebIDL-LS-20160915 -WebIDL-20160915 -- -a:webidl-ls-20161215 -WebIDL-LS-20161215 -WebIDL-20161215 +Ningxin Hu +Chai Chaoweeraprasit - -d:webintents -WEBINTENTS +d:webnn-20221205 +webnn-20221205 +5 December 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221205/ +https://www.w3.org/TR/2022/WD-webnn-20221205/ + -ED -Web Intents -https://dvcs.w3.org/hg/web-intents/raw-file/tip/spec/Overview.html +Ningxin Hu +Chai Chaoweeraprasit +- +d:webnn-20221207 +webnn-20221207 +7 December 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221207/ +https://www.w3.org/TR/2022/WD-webnn-20221207/ -Greg Billock -James Hawkins -Paul Kinlan +Ningxin Hu +Chai Chaoweeraprasit - -d:webintents-local-services -webintents-local-services -14 January 2014 -NOTE -Web Intents Addendum - Local Services -https://www.w3.org/TR/webintents-local-services/ +d:webnn-20221208 +webnn-20221208 +8 December 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221208/ +https://www.w3.org/TR/2022/WD-webnn-20221208/ +Ningxin Hu +Chai Chaoweeraprasit +- +d:webnn-20221209 +webnn-20221209 +9 December 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221209/ +https://www.w3.org/TR/2022/WD-webnn-20221209/ -Claes Nilsson -Norifumi Kikkawa + + +Ningxin Hu +Chai Chaoweeraprasit - -d:webintents-local-services-20121004 -webintents-local-services-20121004 -4 October 2012 +d:webnn-20221213 +webnn-20221213 +13 December 2022 WD -Web Intents Addendum - Local Services -https://www.w3.org/TR/2012/WD-webintents-local-services-20121004/ -https://www.w3.org/TR/2012/WD-webintents-local-services-20121004/ +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221213/ +https://www.w3.org/TR/2022/WD-webnn-20221213/ -Claes Nilsson -Norifumi Kikkawa +Ningxin Hu +Chai Chaoweeraprasit - -d:webintents-local-services-20140114 -webintents-local-services-20140114 -14 January 2014 -NOTE -Web Intents Addendum - Local Services -https://www.w3.org/TR/2014/NOTE-webintents-local-services-20140114/ -https://www.w3.org/TR/2014/NOTE-webintents-local-services-20140114/ +d:webnn-20221220 +webnn-20221220 +20 December 2022 +WD +Web Neural Network API +https://www.w3.org/TR/2022/WD-webnn-20221220/ +https://www.w3.org/TR/2022/WD-webnn-20221220/ -Claes Nilsson -Norifumi Kikkawa +Ningxin Hu +Chai Chaoweeraprasit - -d:webm -WebM -26 April 2016 +d:webnn-20230124 +webnn-20230124 +24 January 2023 +WD +Web Neural Network API +https://www.w3.org/TR/2023/WD-webnn-20230124/ +https://www.w3.org/TR/2023/WD-webnn-20230124/ -WebM Container Guidelines -https://www.webmproject.org/docs/container/ +Ningxin Hu +Chai Chaoweeraprasit +- +d:webnn-20230308 +webnn-20230308 +8 March 2023 +WD +Web Neural Network API +https://www.w3.org/TR/2023/WD-webnn-20230308/ +https://www.w3.org/TR/2023/WD-webnn-20230308/ + +Ningxin Hu +Chai Chaoweeraprasit - -d:webmachinelearning-ethics -webmachinelearning-ethics -29 November 2022 -NOTE -Ethical Principles for Web Machine Learning -https://www.w3.org/TR/webmachinelearning-ethics/ -https://webmachinelearning.github.io/webmachinelearning-ethics/ +d:webnn-20230309 +webnn-20230309 +9 March 2023 +WD +Web Neural Network API +https://www.w3.org/TR/2023/WD-webnn-20230309/ +https://www.w3.org/TR/2023/WD-webnn-20230309/ -James Fletcher -Anssi Kostiainen +Ningxin Hu +Chai Chaoweeraprasit - -d:webmachinelearning-ethics-20220628 -webmachinelearning-ethics-20220628 -28 June 2022 -NOTE -Ethical Principles for Web Machine Learning -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20220628/ -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20220628/ +d:webnn-20230330 +webnn-20230330 +30 March 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CR-webnn-20230330/ +https://www.w3.org/TR/2023/CR-webnn-20230330/ -James Fletcher -Anssi Kostiainen +Ningxin Hu +Chai Chaoweeraprasit - -d:webmachinelearning-ethics-20221125 -webmachinelearning-ethics-20221125 -25 November 2022 -NOTE -Ethical Principles for Web Machine Learning -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221125/ -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221125/ +d:webnn-20230414 +webnn-20230414 +14 April 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230414/ +https://www.w3.org/TR/2023/CRD-webnn-20230414/ -James Fletcher -Anssi Kostiainen +Ningxin Hu +Chai Chaoweeraprasit - -d:webmachinelearning-ethics-20221128 -webmachinelearning-ethics-20221128 -28 November 2022 -NOTE -Ethical Principles for Web Machine Learning -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221128/ -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221128/ +d:webnn-20230515 +webnn-20230515 +15 May 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230515/ +https://www.w3.org/TR/2023/CRD-webnn-20230515/ -James Fletcher -Anssi Kostiainen +Ningxin Hu +Chai Chaoweeraprasit - -d:webmachinelearning-ethics-20221129 -webmachinelearning-ethics-20221129 -29 November 2022 -NOTE -Ethical Principles for Web Machine Learning -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221129/ -https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221129/ +d:webnn-20230516 +webnn-20230516 +16 May 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230516/ +https://www.w3.org/TR/2023/CRD-webnn-20230516/ -James Fletcher -Anssi Kostiainen +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention -webmention -12 January 2017 -REC -Webmention -https://www.w3.org/TR/webmention/ -https://webmention.net/draft/ +d:webnn-20230519 +webnn-20230519 +19 May 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230519/ +https://www.w3.org/TR/2023/CRD-webnn-20230519/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160112 -webmention-20160112 -12 January 2016 -WD -Webmention -https://www.w3.org/TR/2016/WD-webmention-20160112/ -https://www.w3.org/TR/2016/WD-webmention-20160112/ +d:webnn-20230606 +webnn-20230606 +6 June 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230606/ +https://www.w3.org/TR/2023/CRD-webnn-20230606/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160301 -webmention-20160301 -1 March 2016 -WD -Webmention -https://www.w3.org/TR/2016/WD-webmention-20160301/ -https://www.w3.org/TR/2016/WD-webmention-20160301/ +d:webnn-20230620 +webnn-20230620 +20 June 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230620/ +https://www.w3.org/TR/2023/CRD-webnn-20230620/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160329 -webmention-20160329 -29 March 2016 -WD -Webmention -https://www.w3.org/TR/2016/WD-webmention-20160329/ -https://www.w3.org/TR/2016/WD-webmention-20160329/ +d:webnn-20230810 +webnn-20230810 +10 August 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230810/ +https://www.w3.org/TR/2023/CRD-webnn-20230810/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160420 -webmention-20160420 -20 April 2016 -WD -Webmention -https://www.w3.org/TR/2016/WD-webmention-20160420/ -https://www.w3.org/TR/2016/WD-webmention-20160420/ +d:webnn-20230830 +webnn-20230830 +30 August 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20230830/ +https://www.w3.org/TR/2023/CRD-webnn-20230830/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160429 -webmention-20160429 -29 April 2016 -WD -Webmention -https://www.w3.org/TR/2016/WD-webmention-20160429/ -https://www.w3.org/TR/2016/WD-webmention-20160429/ +d:webnn-20231026 +webnn-20231026 +26 October 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20231026/ +https://www.w3.org/TR/2023/CRD-webnn-20231026/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160517 -webmention-20160517 -17 May 2016 -WD -Webmention -https://www.w3.org/TR/2016/WD-webmention-20160517/ -https://www.w3.org/TR/2016/WD-webmention-20160517/ +d:webnn-20231211 +webnn-20231211 +11 December 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20231211/ +https://www.w3.org/TR/2023/CRD-webnn-20231211/ + + + +Ningxin Hu +Chai Chaoweeraprasit +- +d:webnn-20231216 +webnn-20231216 +16 December 2023 +CR +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20231216/ +https://www.w3.org/TR/2023/CRD-webnn-20231216/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20160524 -webmention-20160524 -24 May 2016 +d:webnn-20231219 +webnn-20231219 +19 December 2023 CR -Webmention -https://www.w3.org/TR/2016/CR-webmention-20160524/ -https://www.w3.org/TR/2016/CR-webmention-20160524/ +Web Neural Network API +https://www.w3.org/TR/2023/CRD-webnn-20231219/ +https://www.w3.org/TR/2023/CRD-webnn-20231219/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20161101 -webmention-20161101 -1 November 2016 -PR -Webmention -https://www.w3.org/TR/2016/PR-webmention-20161101/ -https://www.w3.org/TR/2016/PR-webmention-20161101/ +d:webnn-20240117 +webnn-20240117 +17 January 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240117/ +https://www.w3.org/TR/2024/CRD-webnn-20240117/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmention-20170112 -webmention-20170112 -12 January 2017 -REC -Webmention -https://www.w3.org/TR/2017/REC-webmention-20170112/ -https://www.w3.org/TR/2017/REC-webmention-20170112/ +d:webnn-20240118 +webnn-20240118 +18 January 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240118/ +https://www.w3.org/TR/2024/CRD-webnn-20240118/ -Aaron Parecki +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging -webmessaging -28 January 2021 -REC -HTML5 Web Messaging -https://www.w3.org/TR/webmessaging/ -https://html.spec.whatwg.org/multipage/web-messaging.html +d:webnn-20240120 +webnn-20240120 +20 January 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240120/ +https://www.w3.org/TR/2024/CRD-webnn-20240120/ -Ian Hickson +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging-20101118 -webmessaging-20101118 -18 November 2010 -WD -HTML5 Web Messaging -https://www.w3.org/TR/2010/WD-webmessaging-20101118/ -https://www.w3.org/TR/2010/WD-webmessaging-20101118/ +d:webnn-20240122 +webnn-20240122 +22 January 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240122/ +https://www.w3.org/TR/2024/CRD-webnn-20240122/ -Ian Hickson +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging-20110317 -webmessaging-20110317 -17 March 2011 -WD -HTML5 Web Messaging -https://www.w3.org/TR/2011/WD-webmessaging-20110317/ -https://www.w3.org/TR/2011/WD-webmessaging-20110317/ +d:webnn-20240123 +webnn-20240123 +23 January 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240123/ +https://www.w3.org/TR/2024/CRD-webnn-20240123/ -Ian Hickson +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging-20111020 -webmessaging-20111020 -20 October 2011 -WD -HTML5 Web Messaging -https://www.w3.org/TR/2011/WD-webmessaging-20111020/ -https://www.w3.org/TR/2011/WD-webmessaging-20111020/ +d:webnn-20240125 +webnn-20240125 +25 January 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240125/ +https://www.w3.org/TR/2024/CRD-webnn-20240125/ -Ian Hickson +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging-20120313 -webmessaging-20120313 -13 March 2012 -WD -HTML5 Web Messaging -https://www.w3.org/TR/2012/WD-webmessaging-20120313/ -https://www.w3.org/TR/2012/WD-webmessaging-20120313/ +d:webnn-20240206 +webnn-20240206 +6 February 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240206/ +https://www.w3.org/TR/2024/CRD-webnn-20240206/ -Ian Hickson +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging-20120501 -webmessaging-20120501 -1 May 2012 +d:webnn-20240207 +webnn-20240207 +7 February 2024 CR -HTML5 Web Messaging -https://www.w3.org/TR/2012/CR-webmessaging-20120501/ -https://www.w3.org/TR/2012/CR-webmessaging-20120501/ +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240207/ +https://www.w3.org/TR/2024/CRD-webnn-20240207/ -Ian Hickson +Ningxin Hu +Chai Chaoweeraprasit - -d:webmessaging-20150407 -webmessaging-20150407 -7 April 2015 -PR -HTML5 Web Messaging -https://www.w3.org/TR/2015/PR-webmessaging-20150407/ -https://www.w3.org/TR/2015/PR-webmessaging-20150407/ +d:webnn-20240321 +webnn-20240321 +21 March 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240321/ +https://www.w3.org/TR/2024/CRD-webnn-20240321/ -Ian Hickson +Ningxin Hu +Dwayne Robinson - -d:webmessaging-20150519 -webmessaging-20150519 -19 May 2015 -REC -HTML5 Web Messaging -https://www.w3.org/TR/2015/REC-webmessaging-20150519/ -https://www.w3.org/TR/2015/REC-webmessaging-20150519/ +d:webnn-20240322 +webnn-20240322 +22 March 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240322/ +https://www.w3.org/TR/2024/CRD-webnn-20240322/ -Ian Hickson +Ningxin Hu +Dwayne Robinson - -d:webmessaging-20210128 -webmessaging-20210128 -28 January 2021 -REC -HTML5 Web Messaging -https://www.w3.org/TR/2021/SPSD-webmessaging-20210128/ -https://www.w3.org/TR/2021/SPSD-webmessaging-20210128/ +d:webnn-20240325 +webnn-20240325 +25 March 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240325/ +https://www.w3.org/TR/2024/CRD-webnn-20240325/ -Ian Hickson +Ningxin Hu +Dwayne Robinson - -d:webmidi -webmidi -17 March 2015 -WD -Web MIDI API -https://www.w3.org/TR/webmidi/ -https://webaudio.github.io/web-midi-api/ +d:webnn-20240328 +webnn-20240328 +28 March 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240328/ +https://www.w3.org/TR/2024/CRD-webnn-20240328/ -Chris Wilson -Jussi Kalliokoski +Ningxin Hu +Dwayne Robinson - -d:webmidi-20121025 -webmidi-20121025 -25 October 2012 -WD -Web MIDI API -https://www.w3.org/TR/2012/WD-webmidi-20121025/ -https://www.w3.org/TR/2012/WD-webmidi-20121025/ +d:webnn-20240403 +webnn-20240403 +3 April 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240403/ +https://www.w3.org/TR/2024/CRD-webnn-20240403/ -Chris Wilson -Jussi Kalliokoski +Ningxin Hu +Dwayne Robinson - -d:webmidi-20121213 -webmidi-20121213 -13 December 2012 -WD -Web MIDI API -https://www.w3.org/TR/2012/WD-webmidi-20121213/ -https://www.w3.org/TR/2012/WD-webmidi-20121213/ +d:webnn-20240404 +webnn-20240404 +4 April 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240404/ +https://www.w3.org/TR/2024/CRD-webnn-20240404/ -Jussi Kalliokoski -Chris Wilson +Ningxin Hu +Dwayne Robinson - -d:webmidi-20131126 -webmidi-20131126 -26 November 2013 -WD -Web MIDI API -https://www.w3.org/TR/2013/WD-webmidi-20131126/ -https://www.w3.org/TR/2013/WD-webmidi-20131126/ +d:webnn-20240411 +webnn-20240411 +11 April 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CR-webnn-20240411/ +https://www.w3.org/TR/2024/CR-webnn-20240411/ -Jussi Kalliokoski -Chris Wilson +Ningxin Hu +Dwayne Robinson - -d:webmidi-20150317 -webmidi-20150317 -17 March 2015 -WD -Web MIDI API -https://www.w3.org/TR/2015/WD-webmidi-20150317/ -https://www.w3.org/TR/2015/WD-webmidi-20150317/ +d:webnn-20240415 +webnn-20240415 +15 April 2024 +CR +Web Neural Network API +https://www.w3.org/TR/2024/CRD-webnn-20240415/ +https://www.w3.org/TR/2024/CRD-webnn-20240415/ -Chris Wilson -Jussi Kalliokoski +Ningxin Hu +Dwayne Robinson - -d:webnn -webnn -24 January 2023 -WD +d:webnn-20240416 +webnn-20240416 +16 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/webnn/ -https://webmachinelearning.github.io/webnn/ +https://www.w3.org/TR/2024/CRD-webnn-20240416/ +https://www.w3.org/TR/2024/CRD-webnn-20240416/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210622 -webnn-20210622 -22 June 2021 -WD +d:webnn-20240418 +webnn-20240418 +18 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210622/ -https://www.w3.org/TR/2021/WD-webnn-20210622/ +https://www.w3.org/TR/2024/CRD-webnn-20240418/ +https://www.w3.org/TR/2024/CRD-webnn-20240418/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210722 -webnn-20210722 -22 July 2021 -WD +d:webnn-20240419 +webnn-20240419 +19 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210722/ -https://www.w3.org/TR/2021/WD-webnn-20210722/ +https://www.w3.org/TR/2024/CRD-webnn-20240419/ +https://www.w3.org/TR/2024/CRD-webnn-20240419/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210810 -webnn-20210810 -10 August 2021 -WD +d:webnn-20240424 +webnn-20240424 +24 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210810/ -https://www.w3.org/TR/2021/WD-webnn-20210810/ +https://www.w3.org/TR/2024/CRD-webnn-20240424/ +https://www.w3.org/TR/2024/CRD-webnn-20240424/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210903 -webnn-20210903 -3 September 2021 -WD +d:webnn-20240425 +webnn-20240425 +25 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210903/ -https://www.w3.org/TR/2021/WD-webnn-20210903/ +https://www.w3.org/TR/2024/CRD-webnn-20240425/ +https://www.w3.org/TR/2024/CRD-webnn-20240425/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210908 -webnn-20210908 -8 September 2021 -WD +d:webnn-20240426 +webnn-20240426 +26 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210908/ -https://www.w3.org/TR/2021/WD-webnn-20210908/ +https://www.w3.org/TR/2024/CRD-webnn-20240426/ +https://www.w3.org/TR/2024/CRD-webnn-20240426/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210920 -webnn-20210920 -20 September 2021 -WD +d:webnn-20240427 +webnn-20240427 +27 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210920/ -https://www.w3.org/TR/2021/WD-webnn-20210920/ +https://www.w3.org/TR/2024/CRD-webnn-20240427/ +https://www.w3.org/TR/2024/CRD-webnn-20240427/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210922 -webnn-20210922 -22 September 2021 -WD +d:webnn-20240429 +webnn-20240429 +29 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210922/ -https://www.w3.org/TR/2021/WD-webnn-20210922/ +https://www.w3.org/TR/2024/CRD-webnn-20240429/ +https://www.w3.org/TR/2024/CRD-webnn-20240429/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20210930 -webnn-20210930 -30 September 2021 -WD +d:webnn-20240430 +webnn-20240430 +30 April 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20210930/ -https://www.w3.org/TR/2021/WD-webnn-20210930/ +https://www.w3.org/TR/2024/CRD-webnn-20240430/ +https://www.w3.org/TR/2024/CRD-webnn-20240430/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20211116 -webnn-20211116 -16 November 2021 -WD +d:webnn-20240501 +webnn-20240501 +1 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20211116/ -https://www.w3.org/TR/2021/WD-webnn-20211116/ +https://www.w3.org/TR/2024/CRD-webnn-20240501/ +https://www.w3.org/TR/2024/CRD-webnn-20240501/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20211125 -webnn-20211125 -25 November 2021 -WD +d:webnn-20240502 +webnn-20240502 +2 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20211125/ -https://www.w3.org/TR/2021/WD-webnn-20211125/ +https://www.w3.org/TR/2024/CRD-webnn-20240502/ +https://www.w3.org/TR/2024/CRD-webnn-20240502/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20211215 -webnn-20211215 -15 December 2021 -WD +d:webnn-20240503 +webnn-20240503 +3 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2021/WD-webnn-20211215/ -https://www.w3.org/TR/2021/WD-webnn-20211215/ +https://www.w3.org/TR/2024/CRD-webnn-20240503/ +https://www.w3.org/TR/2024/CRD-webnn-20240503/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220115 -webnn-20220115 -15 January 2022 -WD +d:webnn-20240505 +webnn-20240505 +5 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220115/ -https://www.w3.org/TR/2022/WD-webnn-20220115/ +https://www.w3.org/TR/2024/CRD-webnn-20240505/ +https://www.w3.org/TR/2024/CRD-webnn-20240505/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220127 -webnn-20220127 -27 January 2022 -WD +d:webnn-20240507 +webnn-20240507 +7 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220127/ -https://www.w3.org/TR/2022/WD-webnn-20220127/ +https://www.w3.org/TR/2024/CRD-webnn-20240507/ +https://www.w3.org/TR/2024/CRD-webnn-20240507/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220214 -webnn-20220214 -14 February 2022 -WD +d:webnn-20240509 +webnn-20240509 +9 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220214/ -https://www.w3.org/TR/2022/WD-webnn-20220214/ +https://www.w3.org/TR/2024/CRD-webnn-20240509/ +https://www.w3.org/TR/2024/CRD-webnn-20240509/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220215 -webnn-20220215 -15 February 2022 -WD +d:webnn-20240510 +webnn-20240510 +10 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220215/ -https://www.w3.org/TR/2022/WD-webnn-20220215/ +https://www.w3.org/TR/2024/CRD-webnn-20240510/ +https://www.w3.org/TR/2024/CRD-webnn-20240510/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220223 -webnn-20220223 -23 February 2022 -WD +d:webnn-20240511 +webnn-20240511 +11 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220223/ -https://www.w3.org/TR/2022/WD-webnn-20220223/ +https://www.w3.org/TR/2024/CRD-webnn-20240511/ +https://www.w3.org/TR/2024/CRD-webnn-20240511/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220322 -webnn-20220322 -22 March 2022 -WD +d:webnn-20240514 +webnn-20240514 +14 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220322/ -https://www.w3.org/TR/2022/WD-webnn-20220322/ +https://www.w3.org/TR/2024/CRD-webnn-20240514/ +https://www.w3.org/TR/2024/CRD-webnn-20240514/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220324 -webnn-20220324 -24 March 2022 -WD +d:webnn-20240515 +webnn-20240515 +15 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220324/ -https://www.w3.org/TR/2022/WD-webnn-20220324/ +https://www.w3.org/TR/2024/CRD-webnn-20240515/ +https://www.w3.org/TR/2024/CRD-webnn-20240515/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220430 -webnn-20220430 -30 April 2022 -WD +d:webnn-20240523 +webnn-20240523 +23 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220430/ -https://www.w3.org/TR/2022/WD-webnn-20220430/ +https://www.w3.org/TR/2024/CRD-webnn-20240523/ +https://www.w3.org/TR/2024/CRD-webnn-20240523/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220520 -webnn-20220520 -20 May 2022 -WD +d:webnn-20240530 +webnn-20240530 +30 May 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220520/ -https://www.w3.org/TR/2022/WD-webnn-20220520/ +https://www.w3.org/TR/2024/CRD-webnn-20240530/ +https://www.w3.org/TR/2024/CRD-webnn-20240530/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220617 -webnn-20220617 -17 June 2022 -WD +d:webnn-20240601 +webnn-20240601 +1 June 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220617/ -https://www.w3.org/TR/2022/WD-webnn-20220617/ +https://www.w3.org/TR/2024/CRD-webnn-20240601/ +https://www.w3.org/TR/2024/CRD-webnn-20240601/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220628 -webnn-20220628 -28 June 2022 -WD +d:webnn-20240604 +webnn-20240604 +4 June 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220628/ -https://www.w3.org/TR/2022/WD-webnn-20220628/ +https://www.w3.org/TR/2024/CRD-webnn-20240604/ +https://www.w3.org/TR/2024/CRD-webnn-20240604/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220630 -webnn-20220630 -30 June 2022 -WD +d:webnn-20240618 +webnn-20240618 +18 June 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220630/ -https://www.w3.org/TR/2022/WD-webnn-20220630/ +https://www.w3.org/TR/2024/CRD-webnn-20240618/ +https://www.w3.org/TR/2024/CRD-webnn-20240618/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220825 -webnn-20220825 -25 August 2022 -WD +d:webnn-20240625 +webnn-20240625 +25 June 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220825/ -https://www.w3.org/TR/2022/WD-webnn-20220825/ +https://www.w3.org/TR/2024/CRD-webnn-20240625/ +https://www.w3.org/TR/2024/CRD-webnn-20240625/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220831 -webnn-20220831 -31 August 2022 -WD +d:webnn-20240626 +webnn-20240626 +26 June 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220831/ -https://www.w3.org/TR/2022/WD-webnn-20220831/ +https://www.w3.org/TR/2024/CRD-webnn-20240626/ +https://www.w3.org/TR/2024/CRD-webnn-20240626/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220901 -webnn-20220901 -1 September 2022 -WD +d:webnn-20240627 +webnn-20240627 +27 June 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220901/ -https://www.w3.org/TR/2022/WD-webnn-20220901/ +https://www.w3.org/TR/2024/CRD-webnn-20240627/ +https://www.w3.org/TR/2024/CRD-webnn-20240627/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20220929 -webnn-20220929 -29 September 2022 -WD +d:webnn-20240705 +webnn-20240705 +5 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20220929/ -https://www.w3.org/TR/2022/WD-webnn-20220929/ +https://www.w3.org/TR/2024/CRD-webnn-20240705/ +https://www.w3.org/TR/2024/CRD-webnn-20240705/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221024 -webnn-20221024 -24 October 2022 -WD +d:webnn-20240711 +webnn-20240711 +11 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221024/ -https://www.w3.org/TR/2022/WD-webnn-20221024/ +https://www.w3.org/TR/2024/CRD-webnn-20240711/ +https://www.w3.org/TR/2024/CRD-webnn-20240711/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221104 -webnn-20221104 -4 November 2022 -WD +d:webnn-20240712 +webnn-20240712 +12 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221104/ -https://www.w3.org/TR/2022/WD-webnn-20221104/ +https://www.w3.org/TR/2024/CRD-webnn-20240712/ +https://www.w3.org/TR/2024/CRD-webnn-20240712/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221205 -webnn-20221205 -5 December 2022 -WD +d:webnn-20240717 +webnn-20240717 +17 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221205/ -https://www.w3.org/TR/2022/WD-webnn-20221205/ +https://www.w3.org/TR/2024/CRD-webnn-20240717/ +https://www.w3.org/TR/2024/CRD-webnn-20240717/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221207 -webnn-20221207 -7 December 2022 -WD +d:webnn-20240718 +webnn-20240718 +18 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221207/ -https://www.w3.org/TR/2022/WD-webnn-20221207/ +https://www.w3.org/TR/2024/CRD-webnn-20240718/ +https://www.w3.org/TR/2024/CRD-webnn-20240718/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221208 -webnn-20221208 -8 December 2022 -WD +d:webnn-20240719 +webnn-20240719 +19 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221208/ -https://www.w3.org/TR/2022/WD-webnn-20221208/ +https://www.w3.org/TR/2024/CRD-webnn-20240719/ +https://www.w3.org/TR/2024/CRD-webnn-20240719/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221209 -webnn-20221209 -9 December 2022 -WD +d:webnn-20240722 +webnn-20240722 +22 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221209/ -https://www.w3.org/TR/2022/WD-webnn-20221209/ +https://www.w3.org/TR/2024/CRD-webnn-20240722/ +https://www.w3.org/TR/2024/CRD-webnn-20240722/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221213 -webnn-20221213 -13 December 2022 -WD +d:webnn-20240723 +webnn-20240723 +23 July 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221213/ -https://www.w3.org/TR/2022/WD-webnn-20221213/ +https://www.w3.org/TR/2024/CRD-webnn-20240723/ +https://www.w3.org/TR/2024/CRD-webnn-20240723/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20221220 -webnn-20221220 -20 December 2022 -WD +d:webnn-20240805 +webnn-20240805 +5 August 2024 +CR Web Neural Network API -https://www.w3.org/TR/2022/WD-webnn-20221220/ -https://www.w3.org/TR/2022/WD-webnn-20221220/ +https://www.w3.org/TR/2024/CRD-webnn-20240805/ +https://www.w3.org/TR/2024/CRD-webnn-20240805/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - -d:webnn-20230124 -webnn-20230124 -24 January 2023 -WD +d:webnn-20240822 +webnn-20240822 +22 August 2024 +CR Web Neural Network API -https://www.w3.org/TR/2023/WD-webnn-20230124/ -https://www.w3.org/TR/2023/WD-webnn-20230124/ +https://www.w3.org/TR/2024/CRD-webnn-20240822/ +https://www.w3.org/TR/2024/CRD-webnn-20240822/ Ningxin Hu -Chai Chaoweeraprasit +Dwayne Robinson - d:webont-req webont-req @@ -17791,7 +29003,29 @@ https://www.w3.org/TR/2004/REC-webont-req-20040210/ -Jeff Heflin +Jeff Heflin +- +d:webp +WEBP + +Editor's Draft +WebP Image Format +https://datatracker.ietf.org/doc/html/draft-zern-webp/ + + + + +- +d:webpackage +WEBPACKAGE + +Draft Community Group Report +Loading Signed Exchanges +https://wicg.github.io/webpackage/loading.html + + + + - d:webpayments-http-api webpayments-http-api @@ -17905,15 +29139,16 @@ Dapeng(Max) Liu - d:webrtc webrtc -26 January 2021 +6 March 2023 REC -WebRTC 1.0: Real-Time Communication Between Browsers +WebRTC: Real-Time Communication in Browsers https://www.w3.org/TR/webrtc/ https://w3c.github.io/webrtc-pc/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -17921,13 +29156,14 @@ d:webrtc-20111027 webrtc-20111027 27 October 2011 WD -WebRTC 1.0: Real-Time Communication Between Browsers +WebRTC: Real-Time Communication in Browsers https://www.w3.org/TR/2011/WD-webrtc-20111027/ https://www.w3.org/TR/2011/WD-webrtc-20111027/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -17935,13 +29171,14 @@ d:webrtc-20120209 webrtc-20120209 9 February 2012 WD -WebRTC 1.0: Real-Time Communication Between Browsers +WebRTC: Real-Time Communication in Browsers https://www.w3.org/TR/2012/WD-webrtc-20120209/ https://www.w3.org/TR/2012/WD-webrtc-20120209/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -18017,6 +29254,7 @@ https://www.w3.org/TR/2016/WD-webrtc-20160531/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -18031,6 +29269,7 @@ https://www.w3.org/TR/2016/WD-webrtc-20160803/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -18045,6 +29284,7 @@ https://www.w3.org/TR/2016/WD-webrtc-20160913/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -18059,6 +29299,7 @@ https://www.w3.org/TR/2016/WD-webrtc-20161123/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -18073,6 +29314,7 @@ https://www.w3.org/TR/2016/WD-webrtc-20161124/ Cullen Jennings +Florent Castelli Henrik Boström Jan-Ivar Bruaroey - @@ -18393,6 +29635,36 @@ Cullen Jennings Henrik Boström Jan-Ivar Bruaroey - +d:webrtc-20230301 +webrtc-20230301 +1 March 2023 +REC +WebRTC: Real-Time Communication in Browsers +https://www.w3.org/TR/2023/REC-webrtc-20230301/ +https://www.w3.org/TR/2023/REC-webrtc-20230301/ + + + +Cullen Jennings +Florent Castelli +Henrik Boström +Jan-Ivar Bruaroey +- +d:webrtc-20230306 +webrtc-20230306 +6 March 2023 +REC +WebRTC: Real-Time Communication in Browsers +https://www.w3.org/TR/2023/REC-webrtc-20230306/ +https://www.w3.org/TR/2023/REC-webrtc-20230306/ + + + +Cullen Jennings +Florent Castelli +Henrik Boström +Jan-Ivar Bruaroey +- a:webrtc-dscp webrtc-dscp webrtc-priority @@ -18415,7 +29687,7 @@ webrtc-priority-20210318 - d:webrtc-encoded-transform webrtc-encoded-transform -8 December 2022 +19 April 2024 WD WebRTC Encoded Transform https://www.w3.org/TR/webrtc-encoded-transform/ @@ -18552,6 +29824,213 @@ https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20221208/ Harald Alvestrand Guido Urdaneta youenn fablet +- +d:webrtc-encoded-transform-20230131 +webrtc-encoded-transform-20230131 +31 January 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230131/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230131/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230427 +webrtc-encoded-transform-20230427 +27 April 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230427/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230427/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230428 +webrtc-encoded-transform-20230428 +28 April 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230428/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230428/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230602 +webrtc-encoded-transform-20230602 +2 June 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230602/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230602/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230629 +webrtc-encoded-transform-20230629 +29 June 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230629/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230629/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230713 +webrtc-encoded-transform-20230713 +13 July 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230713/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230713/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230727 +webrtc-encoded-transform-20230727 +27 July 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230727/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230727/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20230922 +webrtc-encoded-transform-20230922 +22 September 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230922/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230922/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20231004 +webrtc-encoded-transform-20231004 +4 October 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231004/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231004/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20231009 +webrtc-encoded-transform-20231009 +9 October 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231009/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231009/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20231012 +webrtc-encoded-transform-20231012 +12 October 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231012/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231012/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20231207 +webrtc-encoded-transform-20231207 +7 December 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231207/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231207/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20231212 +webrtc-encoded-transform-20231212 +12 December 2023 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231212/ +https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231212/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-encoded-transform-20240419 +webrtc-encoded-transform-20240419 +19 April 2024 +WD +WebRTC Encoded Transform +https://www.w3.org/TR/2024/WD-webrtc-encoded-transform-20240419/ +https://www.w3.org/TR/2024/WD-webrtc-encoded-transform-20240419/ + + + +Harald Alvestrand +Guido Urdaneta +youenn fablet +- +d:webrtc-ice +WEBRTC-ICE + +Editor's Draft +IceTransport Extensions for WebRTC +https://w3c.github.io/webrtc-ice/ + + + + - d:webrtc-identity webrtc-identity @@ -18594,9 +30073,9 @@ Guido Urdaneta - d:webrtc-nv-use-cases webrtc-nv-use-cases -13 January 2023 +14 December 2023 NOTE -WebRTC Next Version Use Cases +WebRTC Extended Use Cases https://www.w3.org/TR/webrtc-nv-use-cases/ https://w3c.github.io/webrtc-nv-use-cases/ @@ -18728,33 +30207,201 @@ d:webrtc-nv-use-cases-20221202 webrtc-nv-use-cases-20221202 2 December 2022 NOTE -WebRTC Next Version Use Cases -https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221202/ -https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221202/ +WebRTC Next Version Use Cases +https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221202/ +https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221202/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20221206 +webrtc-nv-use-cases-20221206 +6 December 2022 +NOTE +WebRTC Next Version Use Cases +https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221206/ +https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221206/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230113 +webrtc-nv-use-cases-20230113 +13 January 2023 +NOTE +WebRTC Next Version Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230113/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230113/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230127 +webrtc-nv-use-cases-20230127 +27 January 2023 +NOTE +WebRTC Next Version Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230127/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230127/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230405 +webrtc-nv-use-cases-20230405 +5 April 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230405/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230405/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230606 +webrtc-nv-use-cases-20230606 +6 June 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230606/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230606/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230627 +webrtc-nv-use-cases-20230627 +27 June 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230627/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230627/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230629 +webrtc-nv-use-cases-20230629 +29 June 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230629/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230629/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230706 +webrtc-nv-use-cases-20230706 +6 July 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230706/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230706/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230722 +webrtc-nv-use-cases-20230722 +22 July 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230722/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230722/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230727 +webrtc-nv-use-cases-20230727 +27 July 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230727/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230727/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230808 +webrtc-nv-use-cases-20230808 +8 August 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230808/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230808/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20230823 +webrtc-nv-use-cases-20230823 +23 August 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230823/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230823/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20231019 +webrtc-nv-use-cases-20231019 +19 October 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231019/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231019/ + + + +Bernard Aboba +- +d:webrtc-nv-use-cases-20231026 +webrtc-nv-use-cases-20231026 +26 October 2023 +NOTE +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231026/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231026/ Bernard Aboba - -d:webrtc-nv-use-cases-20221206 -webrtc-nv-use-cases-20221206 -6 December 2022 +d:webrtc-nv-use-cases-20231208 +webrtc-nv-use-cases-20231208 +8 December 2023 NOTE -WebRTC Next Version Use Cases -https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221206/ -https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221206/ +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231208/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231208/ Bernard Aboba - -d:webrtc-nv-use-cases-20230113 -webrtc-nv-use-cases-20230113 -13 January 2023 +d:webrtc-nv-use-cases-20231214 +webrtc-nv-use-cases-20231214 +14 December 2023 NOTE -WebRTC Next Version Use Cases -https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230113/ -https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230113/ +WebRTC Extended Use Cases +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231214/ +https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231214/ @@ -18822,7 +30469,7 @@ Harald Alvestrand - d:webrtc-stats webrtc-stats -25 January 2023 +18 July 2024 CR Identifiers for WebRTC's Statistics API https://www.w3.org/TR/webrtc-stats/ @@ -19222,13 +30869,251 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220609 -webrtc-stats-20220609 -9 June 2022 +d:webrtc-stats-20220609 +webrtc-stats-20220609 +9 June 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220609/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220609/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220614 +webrtc-stats-20220614 +14 June 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220614/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220614/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220629 +webrtc-stats-20220629 +29 June 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220629/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220629/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220630 +webrtc-stats-20220630 +30 June 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220630/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220630/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220726 +webrtc-stats-20220726 +26 July 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220726/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220726/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220920 +webrtc-stats-20220920 +20 September 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220920/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220920/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220921 +webrtc-stats-20220921 +21 September 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220921/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220921/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220926 +webrtc-stats-20220926 +26 September 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220926/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220926/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220927 +webrtc-stats-20220927 +27 September 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220927/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220927/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20220928 +webrtc-stats-20220928 +28 September 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220928/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20220928/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20221011 +webrtc-stats-20221011 +11 October 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221011/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221011/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20221129 +webrtc-stats-20221129 +29 November 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221129/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221129/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20221207 +webrtc-stats-20221207 +7 December 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221207/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221207/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20221214 +webrtc-stats-20221214 +14 December 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221214/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221214/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20221216 +webrtc-stats-20221216 +16 December 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221216/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221216/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20221225 +webrtc-stats-20221225 +25 December 2022 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221225/ +https://www.w3.org/TR/2022/CRD-webrtc-stats-20221225/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20230125 +webrtc-stats-20230125 +25 January 2023 +CR +Identifiers for WebRTC's Statistics API +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230125/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230125/ + + + +Harald Alvestrand +Varun Singh +Henrik Boström +- +d:webrtc-stats-20230224 +webrtc-stats-20230224 +24 February 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220609/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220609/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230224/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230224/ @@ -19236,13 +31121,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220614 -webrtc-stats-20220614 -14 June 2022 +d:webrtc-stats-20230303 +webrtc-stats-20230303 +3 March 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220614/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220614/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230303/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230303/ @@ -19250,13 +31135,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220629 -webrtc-stats-20220629 -29 June 2022 +d:webrtc-stats-20230307 +webrtc-stats-20230307 +7 March 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220629/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220629/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230307/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230307/ @@ -19264,13 +31149,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220630 -webrtc-stats-20220630 -30 June 2022 +d:webrtc-stats-20230309 +webrtc-stats-20230309 +9 March 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220630/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220630/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230309/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230309/ @@ -19278,13 +31163,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220726 -webrtc-stats-20220726 -26 July 2022 +d:webrtc-stats-20230321 +webrtc-stats-20230321 +21 March 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220726/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220726/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230321/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230321/ @@ -19292,13 +31177,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220920 -webrtc-stats-20220920 -20 September 2022 +d:webrtc-stats-20230330 +webrtc-stats-20230330 +30 March 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220920/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220920/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230330/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230330/ @@ -19306,13 +31191,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220921 -webrtc-stats-20220921 -21 September 2022 +d:webrtc-stats-20230421 +webrtc-stats-20230421 +21 April 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220921/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220921/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230421/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230421/ @@ -19320,13 +31205,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220926 -webrtc-stats-20220926 -26 September 2022 +d:webrtc-stats-20230427 +webrtc-stats-20230427 +27 April 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220926/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220926/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230427/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230427/ @@ -19334,13 +31219,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220927 -webrtc-stats-20220927 -27 September 2022 +d:webrtc-stats-20230511 +webrtc-stats-20230511 +11 May 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220927/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220927/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230511/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230511/ @@ -19348,13 +31233,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20220928 -webrtc-stats-20220928 -28 September 2022 +d:webrtc-stats-20230615 +webrtc-stats-20230615 +15 June 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220928/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20220928/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230615/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230615/ @@ -19362,13 +31247,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20221011 -webrtc-stats-20221011 -11 October 2022 +d:webrtc-stats-20230720 +webrtc-stats-20230720 +20 July 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221011/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221011/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230720/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230720/ @@ -19376,13 +31261,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20221129 -webrtc-stats-20221129 -29 November 2022 +d:webrtc-stats-20230803 +webrtc-stats-20230803 +3 August 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221129/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221129/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230803/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230803/ @@ -19390,13 +31275,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20221207 -webrtc-stats-20221207 -7 December 2022 +d:webrtc-stats-20230804 +webrtc-stats-20230804 +4 August 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221207/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221207/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230804/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20230804/ @@ -19404,13 +31289,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20221214 -webrtc-stats-20221214 -14 December 2022 +d:webrtc-stats-20231214 +webrtc-stats-20231214 +14 December 2023 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221214/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221214/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20231214/ +https://www.w3.org/TR/2023/CRD-webrtc-stats-20231214/ @@ -19418,13 +31303,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20221216 -webrtc-stats-20221216 -16 December 2022 +d:webrtc-stats-20240111 +webrtc-stats-20240111 +11 January 2024 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221216/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221216/ +https://www.w3.org/TR/2024/CRD-webrtc-stats-20240111/ +https://www.w3.org/TR/2024/CRD-webrtc-stats-20240111/ @@ -19432,13 +31317,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20221225 -webrtc-stats-20221225 -25 December 2022 +d:webrtc-stats-20240125 +webrtc-stats-20240125 +25 January 2024 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221225/ -https://www.w3.org/TR/2022/CRD-webrtc-stats-20221225/ +https://www.w3.org/TR/2024/CRD-webrtc-stats-20240125/ +https://www.w3.org/TR/2024/CRD-webrtc-stats-20240125/ @@ -19446,13 +31331,13 @@ Harald Alvestrand Varun Singh Henrik Boström - -d:webrtc-stats-20230125 -webrtc-stats-20230125 -25 January 2023 +d:webrtc-stats-20240718 +webrtc-stats-20240718 +18 July 2024 CR Identifiers for WebRTC's Statistics API -https://www.w3.org/TR/2023/CRD-webrtc-stats-20230125/ -https://www.w3.org/TR/2023/CRD-webrtc-stats-20230125/ +https://www.w3.org/TR/2024/CRD-webrtc-stats-20240718/ +https://www.w3.org/TR/2024/CRD-webrtc-stats-20240718/ @@ -19462,7 +31347,7 @@ Henrik Boström - d:webrtc-svc webrtc-svc -26 January 2023 +17 August 2024 WD Scalable Video Coding (SVC) Extension for WebRTC https://www.w3.org/TR/webrtc-svc/ @@ -19723,73 +31608,313 @@ https://www.w3.org/TR/2022/WD-webrtc-svc-20220221/ Bernard Aboba - -d:webrtc-svc-20220223 -webrtc-svc-20220223 -23 February 2022 +d:webrtc-svc-20220223 +webrtc-svc-20220223 +23 February 2022 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2022/WD-webrtc-svc-20220223/ +https://www.w3.org/TR/2022/WD-webrtc-svc-20220223/ + + + +Bernard Aboba +- +d:webrtc-svc-20220224 +webrtc-svc-20220224 +24 February 2022 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2022/WD-webrtc-svc-20220224/ +https://www.w3.org/TR/2022/WD-webrtc-svc-20220224/ + + + +Bernard Aboba +- +d:webrtc-svc-20220225 +webrtc-svc-20220225 +25 February 2022 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2022/WD-webrtc-svc-20220225/ +https://www.w3.org/TR/2022/WD-webrtc-svc-20220225/ + + + +Bernard Aboba +- +d:webrtc-svc-20220303 +webrtc-svc-20220303 +3 March 2022 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2022/WD-webrtc-svc-20220303/ +https://www.w3.org/TR/2022/WD-webrtc-svc-20220303/ + + + +Bernard Aboba +- +d:webrtc-svc-20220829 +webrtc-svc-20220829 +29 August 2022 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2022/WD-webrtc-svc-20220829/ +https://www.w3.org/TR/2022/WD-webrtc-svc-20220829/ + + + +Bernard Aboba +- +d:webrtc-svc-20230126 +webrtc-svc-20230126 +26 January 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230126/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230126/ + + + +Bernard Aboba +- +d:webrtc-svc-20230209 +webrtc-svc-20230209 +9 February 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230209/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230209/ + + + +Bernard Aboba +- +d:webrtc-svc-20230210 +webrtc-svc-20230210 +10 February 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230210/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230210/ + + + +Bernard Aboba +- +d:webrtc-svc-20230213 +webrtc-svc-20230213 +13 February 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230213/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230213/ + + + +Bernard Aboba +- +d:webrtc-svc-20230221 +webrtc-svc-20230221 +21 February 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230221/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230221/ + + + +Bernard Aboba +- +d:webrtc-svc-20230329 +webrtc-svc-20230329 +29 March 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230329/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230329/ + + + +Bernard Aboba +- +d:webrtc-svc-20230412 +webrtc-svc-20230412 +12 April 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230412/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230412/ + + + +Bernard Aboba +- +d:webrtc-svc-20230414 +webrtc-svc-20230414 +14 April 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230414/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230414/ + + + +Bernard Aboba +- +d:webrtc-svc-20230415 +webrtc-svc-20230415 +15 April 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230415/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230415/ + + + +Bernard Aboba +- +d:webrtc-svc-20230417 +webrtc-svc-20230417 +17 April 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20230417/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20230417/ + + + +Bernard Aboba +- +d:webrtc-svc-20231102 +webrtc-svc-20231102 +2 November 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20231102/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20231102/ + + + +Bernard Aboba +- +d:webrtc-svc-20231115 +webrtc-svc-20231115 +15 November 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20231115/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20231115/ + + + +Bernard Aboba +- +d:webrtc-svc-20231212 +webrtc-svc-20231212 +12 December 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20231212/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20231212/ + + + +Bernard Aboba +- +d:webrtc-svc-20231216 +webrtc-svc-20231216 +16 December 2023 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2023/WD-webrtc-svc-20231216/ +https://www.w3.org/TR/2023/WD-webrtc-svc-20231216/ + + + +Bernard Aboba +- +d:webrtc-svc-20240124 +webrtc-svc-20240124 +24 January 2024 +WD +Scalable Video Coding (SVC) Extension for WebRTC +https://www.w3.org/TR/2024/WD-webrtc-svc-20240124/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240124/ + + + +Bernard Aboba +- +d:webrtc-svc-20240205 +webrtc-svc-20240205 +5 February 2024 WD Scalable Video Coding (SVC) Extension for WebRTC -https://www.w3.org/TR/2022/WD-webrtc-svc-20220223/ -https://www.w3.org/TR/2022/WD-webrtc-svc-20220223/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240205/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240205/ Bernard Aboba - -d:webrtc-svc-20220224 -webrtc-svc-20220224 -24 February 2022 +d:webrtc-svc-20240222 +webrtc-svc-20240222 +22 February 2024 WD Scalable Video Coding (SVC) Extension for WebRTC -https://www.w3.org/TR/2022/WD-webrtc-svc-20220224/ -https://www.w3.org/TR/2022/WD-webrtc-svc-20220224/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240222/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240222/ Bernard Aboba - -d:webrtc-svc-20220225 -webrtc-svc-20220225 -25 February 2022 +d:webrtc-svc-20240508 +webrtc-svc-20240508 +8 May 2024 WD Scalable Video Coding (SVC) Extension for WebRTC -https://www.w3.org/TR/2022/WD-webrtc-svc-20220225/ -https://www.w3.org/TR/2022/WD-webrtc-svc-20220225/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240508/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240508/ Bernard Aboba - -d:webrtc-svc-20220303 -webrtc-svc-20220303 -3 March 2022 +d:webrtc-svc-20240509 +webrtc-svc-20240509 +9 May 2024 WD Scalable Video Coding (SVC) Extension for WebRTC -https://www.w3.org/TR/2022/WD-webrtc-svc-20220303/ -https://www.w3.org/TR/2022/WD-webrtc-svc-20220303/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240509/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240509/ Bernard Aboba - -d:webrtc-svc-20220829 -webrtc-svc-20220829 -29 August 2022 +d:webrtc-svc-20240516 +webrtc-svc-20240516 +16 May 2024 WD Scalable Video Coding (SVC) Extension for WebRTC -https://www.w3.org/TR/2022/WD-webrtc-svc-20220829/ -https://www.w3.org/TR/2022/WD-webrtc-svc-20220829/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240516/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240516/ Bernard Aboba - -d:webrtc-svc-20230126 -webrtc-svc-20230126 -26 January 2023 +d:webrtc-svc-20240817 +webrtc-svc-20240817 +17 August 2024 WD Scalable Video Coding (SVC) Extension for WebRTC -https://www.w3.org/TR/2023/WD-webrtc-svc-20230126/ -https://www.w3.org/TR/2023/WD-webrtc-svc-20230126/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240817/ +https://www.w3.org/TR/2024/WD-webrtc-svc-20240817/ @@ -19915,6 +32040,14 @@ a:webrtc10-20210126 WEBRTC10-20210126 webrtc-20210126 - +a:webrtc10-20230301 +WEBRTC10-20230301 +webrtc-20230301 +- +a:webrtc10-20230306 +WEBRTC10-20230306 +webrtc-20230306 +- a:websimpledb WebSimpleDB IndexedDB @@ -20398,7 +32531,7 @@ Aaron Parecki - d:webtransport webtransport -18 January 2023 +31 May 2024 WD WebTransport https://www.w3.org/TR/webtransport/ @@ -20407,8 +32540,8 @@ https://w3c.github.io/webtransport/ Bernard Aboba +Nidhi Jaju Victor Vasiliev -Yutaka Hirano - d:webtransport-20210504 webtransport-20210504 @@ -20480,6 +32613,62 @@ Bernard Aboba Victor Vasiliev Yutaka Hirano - +d:webtransport-20230405 +webtransport-20230405 +5 April 2023 +WD +WebTransport +https://www.w3.org/TR/2023/WD-webtransport-20230405/ +https://www.w3.org/TR/2023/WD-webtransport-20230405/ + + + +Bernard Aboba +Nidhi Jaju +Victor Vasiliev +- +d:webtransport-20230712 +webtransport-20230712 +12 July 2023 +WD +WebTransport +https://www.w3.org/TR/2023/WD-webtransport-20230712/ +https://www.w3.org/TR/2023/WD-webtransport-20230712/ + + + +Bernard Aboba +Nidhi Jaju +Victor Vasiliev +- +d:webtransport-20231220 +webtransport-20231220 +20 December 2023 +WD +WebTransport +https://www.w3.org/TR/2023/WD-webtransport-20231220/ +https://www.w3.org/TR/2023/WD-webtransport-20231220/ + + + +Bernard Aboba +Nidhi Jaju +Victor Vasiliev +- +d:webtransport-20240531 +webtransport-20240531 +31 May 2024 +WD +WebTransport +https://www.w3.org/TR/2024/WD-webtransport-20240531/ +https://www.w3.org/TR/2024/WD-webtransport-20240531/ + + + +Bernard Aboba +Nidhi Jaju +Victor Vasiliev +- d:webusb WEBUSB @@ -20492,14 +32681,26 @@ https://wicg.github.io/webusb/ - d:webvmt -WEBVMT -29 January 2019 -ED +webvmt +19 September 2023 +NOTE WebVMT: The Web Video Map Tracks Format +https://www.w3.org/TR/webvmt/ https://w3c.github.io/sdw/proposals/geotagging/webvmt/ +Rob Smith +- +d:webvmt-20230919 +webvmt-20230919 +19 September 2023 +NOTE +WebVMT: The Web Video Map Tracks Format +https://www.w3.org/TR/2023/NOTE-webvmt-20230919/ +https://www.w3.org/TR/2023/NOTE-webvmt-20230919/ + + Rob Smith - @@ -20687,7 +32888,7 @@ workers-20210128 - d:webxr webxr -24 August 2022 +21 August 2024 CR WebXR Device API https://www.w3.org/TR/webxr/ @@ -20976,6 +33177,146 @@ https://www.w3.org/TR/2022/CRD-webxr-20220824/ +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20230303 +webxr-20230303 +3 March 2023 +CR +WebXR Device API +https://www.w3.org/TR/2023/CRD-webxr-20230303/ +https://www.w3.org/TR/2023/CRD-webxr-20230303/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20230621 +webxr-20230621 +21 June 2023 +CR +WebXR Device API +https://www.w3.org/TR/2023/CRD-webxr-20230621/ +https://www.w3.org/TR/2023/CRD-webxr-20230621/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20230901 +webxr-20230901 +1 September 2023 +CR +WebXR Device API +https://www.w3.org/TR/2023/CRD-webxr-20230901/ +https://www.w3.org/TR/2023/CRD-webxr-20230901/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20231005 +webxr-20231005 +5 October 2023 +CR +WebXR Device API +https://www.w3.org/TR/2023/CRD-webxr-20231005/ +https://www.w3.org/TR/2023/CRD-webxr-20231005/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20240210 +webxr-20240210 +10 February 2024 +CR +WebXR Device API +https://www.w3.org/TR/2024/CRD-webxr-20240210/ +https://www.w3.org/TR/2024/CRD-webxr-20240210/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20240410 +webxr-20240410 +10 April 2024 +CR +WebXR Device API +https://www.w3.org/TR/2024/CRD-webxr-20240410/ +https://www.w3.org/TR/2024/CRD-webxr-20240410/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20240416 +webxr-20240416 +16 April 2024 +CR +WebXR Device API +https://www.w3.org/TR/2024/CRD-webxr-20240416/ +https://www.w3.org/TR/2024/CRD-webxr-20240416/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20240701 +webxr-20240701 +1 July 2024 +CR +WebXR Device API +https://www.w3.org/TR/2024/CRD-webxr-20240701/ +https://www.w3.org/TR/2024/CRD-webxr-20240701/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20240805 +webxr-20240805 +5 August 2024 +CR +WebXR Device API +https://www.w3.org/TR/2024/CRD-webxr-20240805/ +https://www.w3.org/TR/2024/CRD-webxr-20240805/ + + + +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-20240821 +webxr-20240821 +21 August 2024 +CR +WebXR Device API +https://www.w3.org/TR/2024/CRD-webxr-20240821/ +https://www.w3.org/TR/2024/CRD-webxr-20240821/ + + + Brandon Jones Manish Goregaokar Rik Cabanier @@ -21123,7 +33464,7 @@ Rik Cabanier - d:webxr-depth-sensing-1 webxr-depth-sensing-1 -19 April 2022 +31 May 2024 WD WebXR Depth Sensing Module https://www.w3.org/TR/webxr-depth-sensing-1/ @@ -21179,6 +33520,30 @@ https://www.w3.org/TR/2022/WD-webxr-depth-sensing-1-20220419/ +Piotr Bialecki +- +d:webxr-depth-sensing-1-20240528 +webxr-depth-sensing-1-20240528 +28 May 2024 +WD +WebXR Depth Sensing Module +https://www.w3.org/TR/2024/WD-webxr-depth-sensing-1-20240528/ +https://www.w3.org/TR/2024/WD-webxr-depth-sensing-1-20240528/ + + + +Piotr Bialecki +- +d:webxr-depth-sensing-1-20240531 +webxr-depth-sensing-1-20240531 +31 May 2024 +WD +WebXR Depth Sensing Module +https://www.w3.org/TR/2024/WD-webxr-depth-sensing-1-20240531/ +https://www.w3.org/TR/2024/WD-webxr-depth-sensing-1-20240531/ + + + Piotr Bialecki - d:webxr-dom-overlays-1 @@ -21235,7 +33600,7 @@ webxr-gamepads-module-1 - d:webxr-gamepads-module-1 webxr-gamepads-module-1 -26 April 2022 +9 April 2024 WD WebXR Gamepads Module - Level 1 https://www.w3.org/TR/webxr-gamepads-module-1/ @@ -21355,6 +33720,20 @@ https://www.w3.org/TR/2022/WD-webxr-gamepads-module-1-20220426/ +Brandon Jones +Manish Goregaokar +Rik Cabanier +- +d:webxr-gamepads-module-1-20240409 +webxr-gamepads-module-1-20240409 +9 April 2024 +WD +WebXR Gamepads Module - Level 1 +https://www.w3.org/TR/2024/WD-webxr-gamepads-module-1-20240409/ +https://www.w3.org/TR/2024/WD-webxr-gamepads-module-1-20240409/ + + + Brandon Jones Manish Goregaokar Rik Cabanier @@ -21391,9 +33770,13 @@ a:webxr-gamepads-module-20220426 WEBXR-GAMEPADS-MODULE-20220426 webxr-gamepads-module-1-20220426 - +a:webxr-gamepads-module-20240409 +WEBXR-GAMEPADS-MODULE-20240409 +webxr-gamepads-module-1-20240409 +- d:webxr-hand-input-1 webxr-hand-input-1 -19 April 2022 +5 June 2024 WD WebXR Hand Input Module - Level 1 https://www.w3.org/TR/webxr-hand-input-1/ @@ -21461,11 +33844,35 @@ https://www.w3.org/TR/2022/WD-webxr-hand-input-1-20220419/ +Manish Goregaokar +- +d:webxr-hand-input-1-20240207 +webxr-hand-input-1-20240207 +7 February 2024 +WD +WebXR Hand Input Module - Level 1 +https://www.w3.org/TR/2024/WD-webxr-hand-input-1-20240207/ +https://www.w3.org/TR/2024/WD-webxr-hand-input-1-20240207/ + + + +Manish Goregaokar +- +d:webxr-hand-input-1-20240605 +webxr-hand-input-1-20240605 +5 June 2024 +WD +WebXR Hand Input Module - Level 1 +https://www.w3.org/TR/2024/WD-webxr-hand-input-1-20240605/ +https://www.w3.org/TR/2024/WD-webxr-hand-input-1-20240605/ + + + Manish Goregaokar - d:webxr-hit-test-1 webxr-hit-test-1 -19 April 2022 +11 June 2024 WD WebXR Hit Test Module https://www.w3.org/TR/webxr-hit-test-1/ @@ -21497,6 +33904,18 @@ https://www.w3.org/TR/2022/WD-webxr-hit-test-1-20220419/ +Piotr Bialecki +- +d:webxr-hit-test-1-20240611 +webxr-hit-test-1-20240611 +11 June 2024 +WD +WebXR Hit Test Module +https://www.w3.org/TR/2024/WD-webxr-hit-test-1-20240611/ +https://www.w3.org/TR/2024/WD-webxr-hit-test-1-20240611/ + + + Piotr Bialecki - d:webxr-lighting-estimation-1 @@ -21534,10 +33953,32 @@ https://www.w3.org/TR/2022/WD-webxr-lighting-estimation-1-20220603/ Brandon Jones +- +d:webxr-meshing +WEBXR-MESHING + +A Collection of Interesting Ideas +WebXR Meshing API Level 1 +https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html + + + + +- +d:webxr-plane-detection +WEBXR-PLANE-DETECTION + +Draft Community Group Report +WebXR Plane Detection Module +https://immersive-web.github.io/real-world-geometry/plane-detection.html + + + + - d:webxrlayers-1 webxrlayers-1 -25 January 2023 +10 May 2024 WD WebXR Layers API Level 1 https://www.w3.org/TR/webxrlayers-1/ @@ -21677,5 +34118,53 @@ https://www.w3.org/TR/2023/WD-webxrlayers-1-20230125/ +Rik Cabanier +- +d:webxrlayers-1-20230502 +webxrlayers-1-20230502 +2 May 2023 +WD +WebXR Layers API Level 1 +https://www.w3.org/TR/2023/WD-webxrlayers-1-20230502/ +https://www.w3.org/TR/2023/WD-webxrlayers-1-20230502/ + + + +Rik Cabanier +- +d:webxrlayers-1-20240210 +webxrlayers-1-20240210 +10 February 2024 +WD +WebXR Layers API Level 1 +https://www.w3.org/TR/2024/WD-webxrlayers-1-20240210/ +https://www.w3.org/TR/2024/WD-webxrlayers-1-20240210/ + + + +Rik Cabanier +- +d:webxrlayers-1-20240422 +webxrlayers-1-20240422 +22 April 2024 +WD +WebXR Layers API Level 1 +https://www.w3.org/TR/2024/WD-webxrlayers-1-20240422/ +https://www.w3.org/TR/2024/WD-webxrlayers-1-20240422/ + + + +Rik Cabanier +- +d:webxrlayers-1-20240510 +webxrlayers-1-20240510 +10 May 2024 +WD +WebXR Layers API Level 1 +https://www.w3.org/TR/2024/WD-webxrlayers-1-20240510/ +https://www.w3.org/TR/2024/WD-webxrlayers-1-20240510/ + + + Rik Cabanier - diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wg.data b/bikeshed/spec-data/readonly/biblio/biblio-wg.data index 3ad1ceb7bc..22b7e2e05b 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wg.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wg.data @@ -7358,22 +7358,202 @@ a:wg21-cwg2654 WG21-CWG2654 CWG2654 - +a:wg21-cwg2655 +WG21-CWG2655 +CWG2655 +- +a:wg21-cwg2656 +WG21-CWG2656 +CWG2656 +- +a:wg21-cwg2657 +WG21-CWG2657 +CWG2657 +- +a:wg21-cwg2658 +WG21-CWG2658 +CWG2658 +- +a:wg21-cwg2659 +WG21-CWG2659 +CWG2659 +- a:wg21-cwg266 WG21-CWG266 CWG266 - +a:wg21-cwg2660 +WG21-CWG2660 +CWG2660 +- +a:wg21-cwg2661 +WG21-CWG2661 +CWG2661 +- +a:wg21-cwg2662 +WG21-CWG2662 +CWG2662 +- +a:wg21-cwg2663 +WG21-CWG2663 +CWG2663 +- +a:wg21-cwg2664 +WG21-CWG2664 +CWG2664 +- +a:wg21-cwg2665 +WG21-CWG2665 +CWG2665 +- +a:wg21-cwg2666 +WG21-CWG2666 +CWG2666 +- +a:wg21-cwg2667 +WG21-CWG2667 +CWG2667 +- +a:wg21-cwg2668 +WG21-CWG2668 +CWG2668 +- +a:wg21-cwg2669 +WG21-CWG2669 +CWG2669 +- a:wg21-cwg267 WG21-CWG267 CWG267 - +a:wg21-cwg2670 +WG21-CWG2670 +CWG2670 +- +a:wg21-cwg2671 +WG21-CWG2671 +CWG2671 +- +a:wg21-cwg2672 +WG21-CWG2672 +CWG2672 +- +a:wg21-cwg2673 +WG21-CWG2673 +CWG2673 +- +a:wg21-cwg2674 +WG21-CWG2674 +CWG2674 +- +a:wg21-cwg2675 +WG21-CWG2675 +CWG2675 +- +a:wg21-cwg2676 +WG21-CWG2676 +CWG2676 +- +a:wg21-cwg2677 +WG21-CWG2677 +CWG2677 +- +a:wg21-cwg2678 +WG21-CWG2678 +CWG2678 +- +a:wg21-cwg2679 +WG21-CWG2679 +CWG2679 +- a:wg21-cwg268 WG21-CWG268 CWG268 - +a:wg21-cwg2680 +WG21-CWG2680 +CWG2680 +- +a:wg21-cwg2681 +WG21-CWG2681 +CWG2681 +- +a:wg21-cwg2682 +WG21-CWG2682 +CWG2682 +- +a:wg21-cwg2683 +WG21-CWG2683 +CWG2683 +- +a:wg21-cwg2684 +WG21-CWG2684 +CWG2684 +- +a:wg21-cwg2685 +WG21-CWG2685 +CWG2685 +- +a:wg21-cwg2686 +WG21-CWG2686 +CWG2686 +- +a:wg21-cwg2687 +WG21-CWG2687 +CWG2687 +- +a:wg21-cwg2688 +WG21-CWG2688 +CWG2688 +- +a:wg21-cwg2689 +WG21-CWG2689 +CWG2689 +- a:wg21-cwg269 WG21-CWG269 CWG269 - +a:wg21-cwg2690 +WG21-CWG2690 +CWG2690 +- +a:wg21-cwg2691 +WG21-CWG2691 +CWG2691 +- +a:wg21-cwg2692 +WG21-CWG2692 +CWG2692 +- +a:wg21-cwg2693 +WG21-CWG2693 +CWG2693 +- +a:wg21-cwg2694 +WG21-CWG2694 +CWG2694 +- +a:wg21-cwg2695 +WG21-CWG2695 +CWG2695 +- +a:wg21-cwg2696 +WG21-CWG2696 +CWG2696 +- +a:wg21-cwg2697 +WG21-CWG2697 +CWG2697 +- +a:wg21-cwg2698 +WG21-CWG2698 +CWG2698 +- +a:wg21-cwg2699 +WG21-CWG2699 +CWG2699 +- a:wg21-cwg27 WG21-CWG27 CWG27 @@ -7382,42 +7562,442 @@ a:wg21-cwg270 WG21-CWG270 CWG270 - +a:wg21-cwg2700 +WG21-CWG2700 +CWG2700 +- +a:wg21-cwg2701 +WG21-CWG2701 +CWG2701 +- +a:wg21-cwg2702 +WG21-CWG2702 +CWG2702 +- +a:wg21-cwg2703 +WG21-CWG2703 +CWG2703 +- +a:wg21-cwg2704 +WG21-CWG2704 +CWG2704 +- +a:wg21-cwg2705 +WG21-CWG2705 +CWG2705 +- +a:wg21-cwg2706 +WG21-CWG2706 +CWG2706 +- +a:wg21-cwg2707 +WG21-CWG2707 +CWG2707 +- +a:wg21-cwg2708 +WG21-CWG2708 +CWG2708 +- +a:wg21-cwg2709 +WG21-CWG2709 +CWG2709 +- a:wg21-cwg271 WG21-CWG271 CWG271 - +a:wg21-cwg2710 +WG21-CWG2710 +CWG2710 +- +a:wg21-cwg2711 +WG21-CWG2711 +CWG2711 +- +a:wg21-cwg2712 +WG21-CWG2712 +CWG2712 +- +a:wg21-cwg2713 +WG21-CWG2713 +CWG2713 +- +a:wg21-cwg2714 +WG21-CWG2714 +CWG2714 +- +a:wg21-cwg2715 +WG21-CWG2715 +CWG2715 +- +a:wg21-cwg2716 +WG21-CWG2716 +CWG2716 +- +a:wg21-cwg2717 +WG21-CWG2717 +CWG2717 +- +a:wg21-cwg2718 +WG21-CWG2718 +CWG2718 +- +a:wg21-cwg2719 +WG21-CWG2719 +CWG2719 +- a:wg21-cwg272 WG21-CWG272 CWG272 - +a:wg21-cwg2720 +WG21-CWG2720 +CWG2720 +- +a:wg21-cwg2721 +WG21-CWG2721 +CWG2721 +- +a:wg21-cwg2722 +WG21-CWG2722 +CWG2722 +- +a:wg21-cwg2723 +WG21-CWG2723 +CWG2723 +- +a:wg21-cwg2724 +WG21-CWG2724 +CWG2724 +- +a:wg21-cwg2725 +WG21-CWG2725 +CWG2725 +- +a:wg21-cwg2726 +WG21-CWG2726 +CWG2726 +- +a:wg21-cwg2727 +WG21-CWG2727 +CWG2727 +- +a:wg21-cwg2728 +WG21-CWG2728 +CWG2728 +- +a:wg21-cwg2729 +WG21-CWG2729 +CWG2729 +- a:wg21-cwg273 WG21-CWG273 CWG273 - +a:wg21-cwg2730 +WG21-CWG2730 +CWG2730 +- +a:wg21-cwg2731 +WG21-CWG2731 +CWG2731 +- +a:wg21-cwg2732 +WG21-CWG2732 +CWG2732 +- +a:wg21-cwg2733 +WG21-CWG2733 +CWG2733 +- +a:wg21-cwg2734 +WG21-CWG2734 +CWG2734 +- +a:wg21-cwg2735 +WG21-CWG2735 +CWG2735 +- +a:wg21-cwg2736 +WG21-CWG2736 +CWG2736 +- +a:wg21-cwg2737 +WG21-CWG2737 +CWG2737 +- +a:wg21-cwg2738 +WG21-CWG2738 +CWG2738 +- +a:wg21-cwg2739 +WG21-CWG2739 +CWG2739 +- a:wg21-cwg274 WG21-CWG274 CWG274 - +a:wg21-cwg2740 +WG21-CWG2740 +CWG2740 +- +a:wg21-cwg2741 +WG21-CWG2741 +CWG2741 +- +a:wg21-cwg2742 +WG21-CWG2742 +CWG2742 +- +a:wg21-cwg2743 +WG21-CWG2743 +CWG2743 +- +a:wg21-cwg2744 +WG21-CWG2744 +CWG2744 +- +a:wg21-cwg2745 +WG21-CWG2745 +CWG2745 +- +a:wg21-cwg2746 +WG21-CWG2746 +CWG2746 +- +a:wg21-cwg2747 +WG21-CWG2747 +CWG2747 +- +a:wg21-cwg2748 +WG21-CWG2748 +CWG2748 +- +a:wg21-cwg2749 +WG21-CWG2749 +CWG2749 +- a:wg21-cwg275 WG21-CWG275 CWG275 - +a:wg21-cwg2750 +WG21-CWG2750 +CWG2750 +- +a:wg21-cwg2751 +WG21-CWG2751 +CWG2751 +- +a:wg21-cwg2752 +WG21-CWG2752 +CWG2752 +- +a:wg21-cwg2753 +WG21-CWG2753 +CWG2753 +- +a:wg21-cwg2754 +WG21-CWG2754 +CWG2754 +- +a:wg21-cwg2755 +WG21-CWG2755 +CWG2755 +- +a:wg21-cwg2756 +WG21-CWG2756 +CWG2756 +- +a:wg21-cwg2757 +WG21-CWG2757 +CWG2757 +- +a:wg21-cwg2758 +WG21-CWG2758 +CWG2758 +- +a:wg21-cwg2759 +WG21-CWG2759 +CWG2759 +- a:wg21-cwg276 WG21-CWG276 CWG276 - +a:wg21-cwg2760 +WG21-CWG2760 +CWG2760 +- +a:wg21-cwg2761 +WG21-CWG2761 +CWG2761 +- +a:wg21-cwg2762 +WG21-CWG2762 +CWG2762 +- +a:wg21-cwg2763 +WG21-CWG2763 +CWG2763 +- +a:wg21-cwg2764 +WG21-CWG2764 +CWG2764 +- +a:wg21-cwg2765 +WG21-CWG2765 +CWG2765 +- +a:wg21-cwg2766 +WG21-CWG2766 +CWG2766 +- +a:wg21-cwg2767 +WG21-CWG2767 +CWG2767 +- +a:wg21-cwg2768 +WG21-CWG2768 +CWG2768 +- +a:wg21-cwg2769 +WG21-CWG2769 +CWG2769 +- a:wg21-cwg277 WG21-CWG277 CWG277 - +a:wg21-cwg2770 +WG21-CWG2770 +CWG2770 +- +a:wg21-cwg2771 +WG21-CWG2771 +CWG2771 +- +a:wg21-cwg2772 +WG21-CWG2772 +CWG2772 +- +a:wg21-cwg2773 +WG21-CWG2773 +CWG2773 +- +a:wg21-cwg2774 +WG21-CWG2774 +CWG2774 +- +a:wg21-cwg2775 +WG21-CWG2775 +CWG2775 +- +a:wg21-cwg2776 +WG21-CWG2776 +CWG2776 +- +a:wg21-cwg2777 +WG21-CWG2777 +CWG2777 +- +a:wg21-cwg2778 +WG21-CWG2778 +CWG2778 +- +a:wg21-cwg2779 +WG21-CWG2779 +CWG2779 +- a:wg21-cwg278 WG21-CWG278 CWG278 - +a:wg21-cwg2780 +WG21-CWG2780 +CWG2780 +- +a:wg21-cwg2781 +WG21-CWG2781 +CWG2781 +- +a:wg21-cwg2782 +WG21-CWG2782 +CWG2782 +- +a:wg21-cwg2783 +WG21-CWG2783 +CWG2783 +- +a:wg21-cwg2784 +WG21-CWG2784 +CWG2784 +- +a:wg21-cwg2785 +WG21-CWG2785 +CWG2785 +- +a:wg21-cwg2786 +WG21-CWG2786 +CWG2786 +- +a:wg21-cwg2787 +WG21-CWG2787 +CWG2787 +- +a:wg21-cwg2788 +WG21-CWG2788 +CWG2788 +- +a:wg21-cwg2789 +WG21-CWG2789 +CWG2789 +- a:wg21-cwg279 WG21-CWG279 CWG279 - +a:wg21-cwg2790 +WG21-CWG2790 +CWG2790 +- +a:wg21-cwg2791 +WG21-CWG2791 +CWG2791 +- +a:wg21-cwg2792 +WG21-CWG2792 +CWG2792 +- +a:wg21-cwg2793 +WG21-CWG2793 +CWG2793 +- +a:wg21-cwg2794 +WG21-CWG2794 +CWG2794 +- +a:wg21-cwg2795 +WG21-CWG2795 +CWG2795 +- +a:wg21-cwg2796 +WG21-CWG2796 +CWG2796 +- +a:wg21-cwg2797 +WG21-CWG2797 +CWG2797 +- +a:wg21-cwg2798 +WG21-CWG2798 +CWG2798 +- +a:wg21-cwg2799 +WG21-CWG2799 +CWG2799 +- a:wg21-cwg28 WG21-CWG28 CWG28 @@ -7426,42 +8006,442 @@ a:wg21-cwg280 WG21-CWG280 CWG280 - +a:wg21-cwg2800 +WG21-CWG2800 +CWG2800 +- +a:wg21-cwg2801 +WG21-CWG2801 +CWG2801 +- +a:wg21-cwg2802 +WG21-CWG2802 +CWG2802 +- +a:wg21-cwg2803 +WG21-CWG2803 +CWG2803 +- +a:wg21-cwg2804 +WG21-CWG2804 +CWG2804 +- +a:wg21-cwg2805 +WG21-CWG2805 +CWG2805 +- +a:wg21-cwg2806 +WG21-CWG2806 +CWG2806 +- +a:wg21-cwg2807 +WG21-CWG2807 +CWG2807 +- +a:wg21-cwg2808 +WG21-CWG2808 +CWG2808 +- +a:wg21-cwg2809 +WG21-CWG2809 +CWG2809 +- a:wg21-cwg281 WG21-CWG281 CWG281 - +a:wg21-cwg2810 +WG21-CWG2810 +CWG2810 +- +a:wg21-cwg2811 +WG21-CWG2811 +CWG2811 +- +a:wg21-cwg2812 +WG21-CWG2812 +CWG2812 +- +a:wg21-cwg2813 +WG21-CWG2813 +CWG2813 +- +a:wg21-cwg2814 +WG21-CWG2814 +CWG2814 +- +a:wg21-cwg2815 +WG21-CWG2815 +CWG2815 +- +a:wg21-cwg2816 +WG21-CWG2816 +CWG2816 +- +a:wg21-cwg2817 +WG21-CWG2817 +CWG2817 +- +a:wg21-cwg2818 +WG21-CWG2818 +CWG2818 +- +a:wg21-cwg2819 +WG21-CWG2819 +CWG2819 +- a:wg21-cwg282 WG21-CWG282 CWG282 - +a:wg21-cwg2820 +WG21-CWG2820 +CWG2820 +- +a:wg21-cwg2821 +WG21-CWG2821 +CWG2821 +- +a:wg21-cwg2822 +WG21-CWG2822 +CWG2822 +- +a:wg21-cwg2823 +WG21-CWG2823 +CWG2823 +- +a:wg21-cwg2824 +WG21-CWG2824 +CWG2824 +- +a:wg21-cwg2825 +WG21-CWG2825 +CWG2825 +- +a:wg21-cwg2826 +WG21-CWG2826 +CWG2826 +- +a:wg21-cwg2827 +WG21-CWG2827 +CWG2827 +- +a:wg21-cwg2828 +WG21-CWG2828 +CWG2828 +- +a:wg21-cwg2829 +WG21-CWG2829 +CWG2829 +- a:wg21-cwg283 WG21-CWG283 CWG283 - +a:wg21-cwg2830 +WG21-CWG2830 +CWG2830 +- +a:wg21-cwg2831 +WG21-CWG2831 +CWG2831 +- +a:wg21-cwg2832 +WG21-CWG2832 +CWG2832 +- +a:wg21-cwg2833 +WG21-CWG2833 +CWG2833 +- +a:wg21-cwg2834 +WG21-CWG2834 +CWG2834 +- +a:wg21-cwg2835 +WG21-CWG2835 +CWG2835 +- +a:wg21-cwg2836 +WG21-CWG2836 +CWG2836 +- +a:wg21-cwg2837 +WG21-CWG2837 +CWG2837 +- +a:wg21-cwg2838 +WG21-CWG2838 +CWG2838 +- +a:wg21-cwg2839 +WG21-CWG2839 +CWG2839 +- a:wg21-cwg284 WG21-CWG284 CWG284 - +a:wg21-cwg2840 +WG21-CWG2840 +CWG2840 +- +a:wg21-cwg2841 +WG21-CWG2841 +CWG2841 +- +a:wg21-cwg2842 +WG21-CWG2842 +CWG2842 +- +a:wg21-cwg2843 +WG21-CWG2843 +CWG2843 +- +a:wg21-cwg2844 +WG21-CWG2844 +CWG2844 +- +a:wg21-cwg2845 +WG21-CWG2845 +CWG2845 +- +a:wg21-cwg2846 +WG21-CWG2846 +CWG2846 +- +a:wg21-cwg2847 +WG21-CWG2847 +CWG2847 +- +a:wg21-cwg2848 +WG21-CWG2848 +CWG2848 +- +a:wg21-cwg2849 +WG21-CWG2849 +CWG2849 +- a:wg21-cwg285 WG21-CWG285 CWG285 - +a:wg21-cwg2850 +WG21-CWG2850 +CWG2850 +- +a:wg21-cwg2851 +WG21-CWG2851 +CWG2851 +- +a:wg21-cwg2852 +WG21-CWG2852 +CWG2852 +- +a:wg21-cwg2853 +WG21-CWG2853 +CWG2853 +- +a:wg21-cwg2854 +WG21-CWG2854 +CWG2854 +- +a:wg21-cwg2855 +WG21-CWG2855 +CWG2855 +- +a:wg21-cwg2856 +WG21-CWG2856 +CWG2856 +- +a:wg21-cwg2857 +WG21-CWG2857 +CWG2857 +- +a:wg21-cwg2858 +WG21-CWG2858 +CWG2858 +- +a:wg21-cwg2859 +WG21-CWG2859 +CWG2859 +- a:wg21-cwg286 WG21-CWG286 CWG286 - +a:wg21-cwg2860 +WG21-CWG2860 +CWG2860 +- +a:wg21-cwg2861 +WG21-CWG2861 +CWG2861 +- +a:wg21-cwg2862 +WG21-CWG2862 +CWG2862 +- +a:wg21-cwg2863 +WG21-CWG2863 +CWG2863 +- +a:wg21-cwg2864 +WG21-CWG2864 +CWG2864 +- +a:wg21-cwg2865 +WG21-CWG2865 +CWG2865 +- +a:wg21-cwg2866 +WG21-CWG2866 +CWG2866 +- +a:wg21-cwg2867 +WG21-CWG2867 +CWG2867 +- +a:wg21-cwg2868 +WG21-CWG2868 +CWG2868 +- +a:wg21-cwg2869 +WG21-CWG2869 +CWG2869 +- a:wg21-cwg287 WG21-CWG287 CWG287 - +a:wg21-cwg2870 +WG21-CWG2870 +CWG2870 +- +a:wg21-cwg2871 +WG21-CWG2871 +CWG2871 +- +a:wg21-cwg2872 +WG21-CWG2872 +CWG2872 +- +a:wg21-cwg2873 +WG21-CWG2873 +CWG2873 +- +a:wg21-cwg2874 +WG21-CWG2874 +CWG2874 +- +a:wg21-cwg2875 +WG21-CWG2875 +CWG2875 +- +a:wg21-cwg2876 +WG21-CWG2876 +CWG2876 +- +a:wg21-cwg2877 +WG21-CWG2877 +CWG2877 +- +a:wg21-cwg2878 +WG21-CWG2878 +CWG2878 +- +a:wg21-cwg2879 +WG21-CWG2879 +CWG2879 +- a:wg21-cwg288 WG21-CWG288 CWG288 - +a:wg21-cwg2880 +WG21-CWG2880 +CWG2880 +- +a:wg21-cwg2881 +WG21-CWG2881 +CWG2881 +- +a:wg21-cwg2882 +WG21-CWG2882 +CWG2882 +- +a:wg21-cwg2883 +WG21-CWG2883 +CWG2883 +- +a:wg21-cwg2884 +WG21-CWG2884 +CWG2884 +- +a:wg21-cwg2885 +WG21-CWG2885 +CWG2885 +- +a:wg21-cwg2886 +WG21-CWG2886 +CWG2886 +- +a:wg21-cwg2887 +WG21-CWG2887 +CWG2887 +- +a:wg21-cwg2888 +WG21-CWG2888 +CWG2888 +- +a:wg21-cwg2889 +WG21-CWG2889 +CWG2889 +- a:wg21-cwg289 WG21-CWG289 CWG289 - +a:wg21-cwg2890 +WG21-CWG2890 +CWG2890 +- +a:wg21-cwg2891 +WG21-CWG2891 +CWG2891 +- +a:wg21-cwg2892 +WG21-CWG2892 +CWG2892 +- +a:wg21-cwg2893 +WG21-CWG2893 +CWG2893 +- +a:wg21-cwg2894 +WG21-CWG2894 +CWG2894 +- +a:wg21-cwg2895 +WG21-CWG2895 +CWG2895 +- +a:wg21-cwg2896 +WG21-CWG2896 +CWG2896 +- +a:wg21-cwg2897 +WG21-CWG2897 +CWG2897 +- +a:wg21-cwg2898 +WG21-CWG2898 +CWG2898 +- +a:wg21-cwg2899 +WG21-CWG2899 +CWG2899 +- a:wg21-cwg29 WG21-CWG29 CWG29 @@ -7470,10 +8450,62 @@ a:wg21-cwg290 WG21-CWG290 CWG290 - +a:wg21-cwg2900 +WG21-CWG2900 +CWG2900 +- +a:wg21-cwg2901 +WG21-CWG2901 +CWG2901 +- +a:wg21-cwg2902 +WG21-CWG2902 +CWG2902 +- +a:wg21-cwg2903 +WG21-CWG2903 +CWG2903 +- +a:wg21-cwg2904 +WG21-CWG2904 +CWG2904 +- +a:wg21-cwg2905 +WG21-CWG2905 +CWG2905 +- +a:wg21-cwg2906 +WG21-CWG2906 +CWG2906 +- +a:wg21-cwg2907 +WG21-CWG2907 +CWG2907 +- +a:wg21-cwg2908 +WG21-CWG2908 +CWG2908 +- +a:wg21-cwg2909 +WG21-CWG2909 +CWG2909 +- a:wg21-cwg291 WG21-CWG291 CWG291 - +a:wg21-cwg2910 +WG21-CWG2910 +CWG2910 +- +a:wg21-cwg2911 +WG21-CWG2911 +CWG2911 +- +a:wg21-cwg2912 +WG21-CWG2912 +CWG2912 +- a:wg21-cwg292 WG21-CWG292 CWG292 @@ -10694,6 +11726,10 @@ a:wg21-d0260r1 WG21-D0260R1 D0260R1 - +a:wg21-d0260r6 +WG21-D0260R6 +D0260R6 +- a:wg21-d0270r2 WG21-D0270R2 D0270R2 @@ -10718,6 +11754,10 @@ a:wg21-d0290r2 WG21-D0290R2 D0290R2 - +a:wg21-d0290r4 +WG21-D0290R4 +D0290R4 +- a:wg21-d0298r2 WG21-D0298R2 D0298R2 @@ -10882,6 +11922,10 @@ a:wg21-d0492r2 WG21-D0492R2 D0492R2 - +a:wg21-d0493r4 +WG21-D0493R4 +D0493R4 +- a:wg21-d0495r0 WG21-D0495R0 D0495R0 @@ -11278,6 +12322,10 @@ a:wg21-d0876r1 WG21-D0876R1 D0876R1 - +a:wg21-d0876r12 +WG21-D0876R12 +D0876R12 +- a:wg21-d0876r3 WG21-D0876R3 D0876R3 @@ -11566,6 +12614,10 @@ a:wg21-d1045r1 WG21-D1045R1 D1045R1 - +a:wg21-d1061r4 +WG21-D1061R4 +D1061R4 +- a:wg21-d1063r1 WG21-D1063R1 D1063R1 @@ -12306,6 +13358,10 @@ a:wg21-d1847r3 WG21-D1847R3 D1847R3 - +a:wg21-d1854 +WG21-D1854 +D1854 +- a:wg21-d1856r1 WG21-D1856R1 D1856R1 @@ -12510,6 +13566,10 @@ a:wg21-d2014r1 WG21-D2014R1 D2014R1 - +a:wg21-d2014r2 +WG21-D2014R2 +D2014R2 +- a:wg21-d2029r1 WG21-D2029R1 D2029R1 @@ -12594,10 +13654,18 @@ a:wg21-d2116r0 WG21-D2116R0 D2116R0 - +a:wg21-d2308r0 +WG21-D2308R0 +D2308R0 +- a:wg21-d2314r4 WG21-D2314R4 D2314R4 - +a:wg21-d2361 +WG21-D2361 +D2361 +- a:wg21-d2415r2 WG21-D2415R2 D2415R2 @@ -12614,10 +13682,90 @@ a:wg21-d2450r0 WG21-D2450R0 D2450R0 - +a:wg21-d2460 +WG21-D2460 +D2460 +- a:wg21-d2462r0 WG21-D2462R0 D2462R0 - +a:wg21-d2530r3 +WG21-D2530R3 +D2530R3 +- +a:wg21-d2572r1 +WG21-D2572R1 +D2572R1 +- +a:wg21-d2609r3 +WG21-D2609R3 +D2609R3 +- +a:wg21-d2616r4 +WG21-D2616R4 +D2616R4 +- +a:wg21-d2621 +WG21-D2621 +D2621 +- +a:wg21-d2652r2 +WG21-D2652R2 +D2652R2 +- +a:wg21-d2674r1 +WG21-D2674R1 +D2674R1 +- +a:wg21-d2679r2 +WG21-D2679R2 +D2679R2 +- +a:wg21-d2693r1 +WG21-D2693R1 +D2693R1 +- +a:wg21-d2736r2 +WG21-D2736R2 +D2736R2 +- +a:wg21-d2770r0 +WG21-D2770R0 +D2770R0 +- +a:wg21-d2786r0 +WG21-D2786R0 +D2786R0 +- +a:wg21-d2787r1 +WG21-D2787R1 +D2787R1 +- +a:wg21-d2788r0 +WG21-D2788R0 +D2788R0 +- +a:wg21-d2789r0 +WG21-D2789R0 +D2789R0 +- +a:wg21-d2790r0 +WG21-D2790R0 +D2790R0 +- +a:wg21-d2796r0 +WG21-D2796R0 +D2796R0 +- +a:wg21-d2797r0 +WG21-D2797R0 +D2797R0 +- +a:wg21-d2808r0 +WG21-D2808R0 +D2808R0 +- a:wg21-d4752 WG21-D4752 D4752 @@ -35066,18 +36214,150 @@ a:wg21-edit6066 WG21-EDIT6066 EDIT6066 - +a:wg21-edit6067 +WG21-EDIT6067 +EDIT6067 +- +a:wg21-edit6068 +WG21-EDIT6068 +EDIT6068 +- +a:wg21-edit6069 +WG21-EDIT6069 +EDIT6069 +- a:wg21-edit607 WG21-EDIT607 EDIT607 - +a:wg21-edit6070 +WG21-EDIT6070 +EDIT6070 +- +a:wg21-edit6071 +WG21-EDIT6071 +EDIT6071 +- +a:wg21-edit6072 +WG21-EDIT6072 +EDIT6072 +- +a:wg21-edit6073 +WG21-EDIT6073 +EDIT6073 +- +a:wg21-edit6074 +WG21-EDIT6074 +EDIT6074 +- +a:wg21-edit6075 +WG21-EDIT6075 +EDIT6075 +- +a:wg21-edit6076 +WG21-EDIT6076 +EDIT6076 +- +a:wg21-edit6077 +WG21-EDIT6077 +EDIT6077 +- +a:wg21-edit6078 +WG21-EDIT6078 +EDIT6078 +- +a:wg21-edit6079 +WG21-EDIT6079 +EDIT6079 +- a:wg21-edit608 WG21-EDIT608 EDIT608 - +a:wg21-edit6080 +WG21-EDIT6080 +EDIT6080 +- +a:wg21-edit6081 +WG21-EDIT6081 +EDIT6081 +- +a:wg21-edit6082 +WG21-EDIT6082 +EDIT6082 +- +a:wg21-edit6083 +WG21-EDIT6083 +EDIT6083 +- +a:wg21-edit6084 +WG21-EDIT6084 +EDIT6084 +- +a:wg21-edit6085 +WG21-EDIT6085 +EDIT6085 +- +a:wg21-edit6086 +WG21-EDIT6086 +EDIT6086 +- +a:wg21-edit6087 +WG21-EDIT6087 +EDIT6087 +- +a:wg21-edit6088 +WG21-EDIT6088 +EDIT6088 +- +a:wg21-edit6089 +WG21-EDIT6089 +EDIT6089 +- a:wg21-edit609 WG21-EDIT609 EDIT609 - +a:wg21-edit6090 +WG21-EDIT6090 +EDIT6090 +- +a:wg21-edit6091 +WG21-EDIT6091 +EDIT6091 +- +a:wg21-edit6092 +WG21-EDIT6092 +EDIT6092 +- +a:wg21-edit6093 +WG21-EDIT6093 +EDIT6093 +- +a:wg21-edit6094 +WG21-EDIT6094 +EDIT6094 +- +a:wg21-edit6095 +WG21-EDIT6095 +EDIT6095 +- +a:wg21-edit6096 +WG21-EDIT6096 +EDIT6096 +- +a:wg21-edit6097 +WG21-EDIT6097 +EDIT6097 +- +a:wg21-edit6098 +WG21-EDIT6098 +EDIT6098 +- +a:wg21-edit6099 +WG21-EDIT6099 +EDIT6099 +- a:wg21-edit61 WG21-EDIT61 EDIT61 @@ -35086,42 +36366,442 @@ a:wg21-edit610 WG21-EDIT610 EDIT610 - +a:wg21-edit6100 +WG21-EDIT6100 +EDIT6100 +- +a:wg21-edit6101 +WG21-EDIT6101 +EDIT6101 +- +a:wg21-edit6102 +WG21-EDIT6102 +EDIT6102 +- +a:wg21-edit6103 +WG21-EDIT6103 +EDIT6103 +- +a:wg21-edit6104 +WG21-EDIT6104 +EDIT6104 +- +a:wg21-edit6105 +WG21-EDIT6105 +EDIT6105 +- +a:wg21-edit6106 +WG21-EDIT6106 +EDIT6106 +- +a:wg21-edit6107 +WG21-EDIT6107 +EDIT6107 +- +a:wg21-edit6108 +WG21-EDIT6108 +EDIT6108 +- +a:wg21-edit6109 +WG21-EDIT6109 +EDIT6109 +- a:wg21-edit611 WG21-EDIT611 EDIT611 - +a:wg21-edit6110 +WG21-EDIT6110 +EDIT6110 +- +a:wg21-edit6111 +WG21-EDIT6111 +EDIT6111 +- +a:wg21-edit6112 +WG21-EDIT6112 +EDIT6112 +- +a:wg21-edit6113 +WG21-EDIT6113 +EDIT6113 +- +a:wg21-edit6114 +WG21-EDIT6114 +EDIT6114 +- +a:wg21-edit6115 +WG21-EDIT6115 +EDIT6115 +- +a:wg21-edit6116 +WG21-EDIT6116 +EDIT6116 +- +a:wg21-edit6117 +WG21-EDIT6117 +EDIT6117 +- +a:wg21-edit6118 +WG21-EDIT6118 +EDIT6118 +- +a:wg21-edit6119 +WG21-EDIT6119 +EDIT6119 +- a:wg21-edit612 WG21-EDIT612 EDIT612 - +a:wg21-edit6120 +WG21-EDIT6120 +EDIT6120 +- +a:wg21-edit6121 +WG21-EDIT6121 +EDIT6121 +- +a:wg21-edit6122 +WG21-EDIT6122 +EDIT6122 +- +a:wg21-edit6123 +WG21-EDIT6123 +EDIT6123 +- +a:wg21-edit6124 +WG21-EDIT6124 +EDIT6124 +- +a:wg21-edit6125 +WG21-EDIT6125 +EDIT6125 +- +a:wg21-edit6126 +WG21-EDIT6126 +EDIT6126 +- +a:wg21-edit6127 +WG21-EDIT6127 +EDIT6127 +- +a:wg21-edit6128 +WG21-EDIT6128 +EDIT6128 +- +a:wg21-edit6129 +WG21-EDIT6129 +EDIT6129 +- a:wg21-edit613 WG21-EDIT613 EDIT613 - +a:wg21-edit6130 +WG21-EDIT6130 +EDIT6130 +- +a:wg21-edit6131 +WG21-EDIT6131 +EDIT6131 +- +a:wg21-edit6132 +WG21-EDIT6132 +EDIT6132 +- +a:wg21-edit6133 +WG21-EDIT6133 +EDIT6133 +- +a:wg21-edit6134 +WG21-EDIT6134 +EDIT6134 +- +a:wg21-edit6135 +WG21-EDIT6135 +EDIT6135 +- +a:wg21-edit6136 +WG21-EDIT6136 +EDIT6136 +- +a:wg21-edit6137 +WG21-EDIT6137 +EDIT6137 +- +a:wg21-edit6138 +WG21-EDIT6138 +EDIT6138 +- +a:wg21-edit6139 +WG21-EDIT6139 +EDIT6139 +- a:wg21-edit614 WG21-EDIT614 EDIT614 - +a:wg21-edit6140 +WG21-EDIT6140 +EDIT6140 +- +a:wg21-edit6141 +WG21-EDIT6141 +EDIT6141 +- +a:wg21-edit6142 +WG21-EDIT6142 +EDIT6142 +- +a:wg21-edit6143 +WG21-EDIT6143 +EDIT6143 +- +a:wg21-edit6144 +WG21-EDIT6144 +EDIT6144 +- +a:wg21-edit6145 +WG21-EDIT6145 +EDIT6145 +- +a:wg21-edit6146 +WG21-EDIT6146 +EDIT6146 +- +a:wg21-edit6147 +WG21-EDIT6147 +EDIT6147 +- +a:wg21-edit6148 +WG21-EDIT6148 +EDIT6148 +- +a:wg21-edit6149 +WG21-EDIT6149 +EDIT6149 +- a:wg21-edit615 WG21-EDIT615 EDIT615 - +a:wg21-edit6150 +WG21-EDIT6150 +EDIT6150 +- +a:wg21-edit6151 +WG21-EDIT6151 +EDIT6151 +- +a:wg21-edit6152 +WG21-EDIT6152 +EDIT6152 +- +a:wg21-edit6153 +WG21-EDIT6153 +EDIT6153 +- +a:wg21-edit6154 +WG21-EDIT6154 +EDIT6154 +- +a:wg21-edit6155 +WG21-EDIT6155 +EDIT6155 +- +a:wg21-edit6156 +WG21-EDIT6156 +EDIT6156 +- +a:wg21-edit6157 +WG21-EDIT6157 +EDIT6157 +- +a:wg21-edit6158 +WG21-EDIT6158 +EDIT6158 +- +a:wg21-edit6159 +WG21-EDIT6159 +EDIT6159 +- a:wg21-edit616 WG21-EDIT616 EDIT616 - +a:wg21-edit6160 +WG21-EDIT6160 +EDIT6160 +- +a:wg21-edit6161 +WG21-EDIT6161 +EDIT6161 +- +a:wg21-edit6162 +WG21-EDIT6162 +EDIT6162 +- +a:wg21-edit6163 +WG21-EDIT6163 +EDIT6163 +- +a:wg21-edit6164 +WG21-EDIT6164 +EDIT6164 +- +a:wg21-edit6165 +WG21-EDIT6165 +EDIT6165 +- +a:wg21-edit6166 +WG21-EDIT6166 +EDIT6166 +- +a:wg21-edit6167 +WG21-EDIT6167 +EDIT6167 +- +a:wg21-edit6168 +WG21-EDIT6168 +EDIT6168 +- +a:wg21-edit6169 +WG21-EDIT6169 +EDIT6169 +- a:wg21-edit617 WG21-EDIT617 EDIT617 - +a:wg21-edit6170 +WG21-EDIT6170 +EDIT6170 +- +a:wg21-edit6171 +WG21-EDIT6171 +EDIT6171 +- +a:wg21-edit6172 +WG21-EDIT6172 +EDIT6172 +- +a:wg21-edit6173 +WG21-EDIT6173 +EDIT6173 +- +a:wg21-edit6174 +WG21-EDIT6174 +EDIT6174 +- +a:wg21-edit6175 +WG21-EDIT6175 +EDIT6175 +- +a:wg21-edit6176 +WG21-EDIT6176 +EDIT6176 +- +a:wg21-edit6177 +WG21-EDIT6177 +EDIT6177 +- +a:wg21-edit6178 +WG21-EDIT6178 +EDIT6178 +- +a:wg21-edit6179 +WG21-EDIT6179 +EDIT6179 +- a:wg21-edit618 WG21-EDIT618 EDIT618 - +a:wg21-edit6180 +WG21-EDIT6180 +EDIT6180 +- +a:wg21-edit6181 +WG21-EDIT6181 +EDIT6181 +- +a:wg21-edit6182 +WG21-EDIT6182 +EDIT6182 +- +a:wg21-edit6183 +WG21-EDIT6183 +EDIT6183 +- +a:wg21-edit6184 +WG21-EDIT6184 +EDIT6184 +- +a:wg21-edit6185 +WG21-EDIT6185 +EDIT6185 +- +a:wg21-edit6186 +WG21-EDIT6186 +EDIT6186 +- +a:wg21-edit6187 +WG21-EDIT6187 +EDIT6187 +- +a:wg21-edit6188 +WG21-EDIT6188 +EDIT6188 +- +a:wg21-edit6189 +WG21-EDIT6189 +EDIT6189 +- a:wg21-edit619 WG21-EDIT619 EDIT619 - +a:wg21-edit6190 +WG21-EDIT6190 +EDIT6190 +- +a:wg21-edit6191 +WG21-EDIT6191 +EDIT6191 +- +a:wg21-edit6192 +WG21-EDIT6192 +EDIT6192 +- +a:wg21-edit6193 +WG21-EDIT6193 +EDIT6193 +- +a:wg21-edit6194 +WG21-EDIT6194 +EDIT6194 +- +a:wg21-edit6195 +WG21-EDIT6195 +EDIT6195 +- +a:wg21-edit6196 +WG21-EDIT6196 +EDIT6196 +- +a:wg21-edit6197 +WG21-EDIT6197 +EDIT6197 +- +a:wg21-edit6198 +WG21-EDIT6198 +EDIT6198 +- +a:wg21-edit6199 +WG21-EDIT6199 +EDIT6199 +- a:wg21-edit62 WG21-EDIT62 EDIT62 @@ -35130,42 +36810,442 @@ a:wg21-edit620 WG21-EDIT620 EDIT620 - +a:wg21-edit6200 +WG21-EDIT6200 +EDIT6200 +- +a:wg21-edit6201 +WG21-EDIT6201 +EDIT6201 +- +a:wg21-edit6202 +WG21-EDIT6202 +EDIT6202 +- +a:wg21-edit6203 +WG21-EDIT6203 +EDIT6203 +- +a:wg21-edit6204 +WG21-EDIT6204 +EDIT6204 +- +a:wg21-edit6205 +WG21-EDIT6205 +EDIT6205 +- +a:wg21-edit6206 +WG21-EDIT6206 +EDIT6206 +- +a:wg21-edit6207 +WG21-EDIT6207 +EDIT6207 +- +a:wg21-edit6208 +WG21-EDIT6208 +EDIT6208 +- +a:wg21-edit6209 +WG21-EDIT6209 +EDIT6209 +- a:wg21-edit621 WG21-EDIT621 EDIT621 - +a:wg21-edit6210 +WG21-EDIT6210 +EDIT6210 +- +a:wg21-edit6211 +WG21-EDIT6211 +EDIT6211 +- +a:wg21-edit6212 +WG21-EDIT6212 +EDIT6212 +- +a:wg21-edit6213 +WG21-EDIT6213 +EDIT6213 +- +a:wg21-edit6214 +WG21-EDIT6214 +EDIT6214 +- +a:wg21-edit6215 +WG21-EDIT6215 +EDIT6215 +- +a:wg21-edit6216 +WG21-EDIT6216 +EDIT6216 +- +a:wg21-edit6217 +WG21-EDIT6217 +EDIT6217 +- +a:wg21-edit6218 +WG21-EDIT6218 +EDIT6218 +- +a:wg21-edit6219 +WG21-EDIT6219 +EDIT6219 +- a:wg21-edit622 WG21-EDIT622 EDIT622 - +a:wg21-edit6220 +WG21-EDIT6220 +EDIT6220 +- +a:wg21-edit6221 +WG21-EDIT6221 +EDIT6221 +- +a:wg21-edit6222 +WG21-EDIT6222 +EDIT6222 +- +a:wg21-edit6223 +WG21-EDIT6223 +EDIT6223 +- +a:wg21-edit6224 +WG21-EDIT6224 +EDIT6224 +- +a:wg21-edit6225 +WG21-EDIT6225 +EDIT6225 +- +a:wg21-edit6226 +WG21-EDIT6226 +EDIT6226 +- +a:wg21-edit6227 +WG21-EDIT6227 +EDIT6227 +- +a:wg21-edit6228 +WG21-EDIT6228 +EDIT6228 +- +a:wg21-edit6229 +WG21-EDIT6229 +EDIT6229 +- a:wg21-edit623 WG21-EDIT623 EDIT623 - +a:wg21-edit6230 +WG21-EDIT6230 +EDIT6230 +- +a:wg21-edit6231 +WG21-EDIT6231 +EDIT6231 +- +a:wg21-edit6232 +WG21-EDIT6232 +EDIT6232 +- +a:wg21-edit6233 +WG21-EDIT6233 +EDIT6233 +- +a:wg21-edit6234 +WG21-EDIT6234 +EDIT6234 +- +a:wg21-edit6235 +WG21-EDIT6235 +EDIT6235 +- +a:wg21-edit6236 +WG21-EDIT6236 +EDIT6236 +- +a:wg21-edit6237 +WG21-EDIT6237 +EDIT6237 +- +a:wg21-edit6238 +WG21-EDIT6238 +EDIT6238 +- +a:wg21-edit6239 +WG21-EDIT6239 +EDIT6239 +- a:wg21-edit624 WG21-EDIT624 EDIT624 - +a:wg21-edit6240 +WG21-EDIT6240 +EDIT6240 +- +a:wg21-edit6241 +WG21-EDIT6241 +EDIT6241 +- +a:wg21-edit6242 +WG21-EDIT6242 +EDIT6242 +- +a:wg21-edit6243 +WG21-EDIT6243 +EDIT6243 +- +a:wg21-edit6244 +WG21-EDIT6244 +EDIT6244 +- +a:wg21-edit6245 +WG21-EDIT6245 +EDIT6245 +- +a:wg21-edit6246 +WG21-EDIT6246 +EDIT6246 +- +a:wg21-edit6247 +WG21-EDIT6247 +EDIT6247 +- +a:wg21-edit6248 +WG21-EDIT6248 +EDIT6248 +- +a:wg21-edit6249 +WG21-EDIT6249 +EDIT6249 +- a:wg21-edit625 WG21-EDIT625 EDIT625 - +a:wg21-edit6250 +WG21-EDIT6250 +EDIT6250 +- +a:wg21-edit6251 +WG21-EDIT6251 +EDIT6251 +- +a:wg21-edit6252 +WG21-EDIT6252 +EDIT6252 +- +a:wg21-edit6253 +WG21-EDIT6253 +EDIT6253 +- +a:wg21-edit6254 +WG21-EDIT6254 +EDIT6254 +- +a:wg21-edit6255 +WG21-EDIT6255 +EDIT6255 +- +a:wg21-edit6256 +WG21-EDIT6256 +EDIT6256 +- +a:wg21-edit6257 +WG21-EDIT6257 +EDIT6257 +- +a:wg21-edit6258 +WG21-EDIT6258 +EDIT6258 +- +a:wg21-edit6259 +WG21-EDIT6259 +EDIT6259 +- a:wg21-edit626 WG21-EDIT626 EDIT626 - +a:wg21-edit6260 +WG21-EDIT6260 +EDIT6260 +- +a:wg21-edit6261 +WG21-EDIT6261 +EDIT6261 +- +a:wg21-edit6262 +WG21-EDIT6262 +EDIT6262 +- +a:wg21-edit6263 +WG21-EDIT6263 +EDIT6263 +- +a:wg21-edit6264 +WG21-EDIT6264 +EDIT6264 +- +a:wg21-edit6265 +WG21-EDIT6265 +EDIT6265 +- +a:wg21-edit6266 +WG21-EDIT6266 +EDIT6266 +- +a:wg21-edit6267 +WG21-EDIT6267 +EDIT6267 +- +a:wg21-edit6268 +WG21-EDIT6268 +EDIT6268 +- +a:wg21-edit6269 +WG21-EDIT6269 +EDIT6269 +- a:wg21-edit627 WG21-EDIT627 EDIT627 - +a:wg21-edit6270 +WG21-EDIT6270 +EDIT6270 +- +a:wg21-edit6271 +WG21-EDIT6271 +EDIT6271 +- +a:wg21-edit6272 +WG21-EDIT6272 +EDIT6272 +- +a:wg21-edit6273 +WG21-EDIT6273 +EDIT6273 +- +a:wg21-edit6274 +WG21-EDIT6274 +EDIT6274 +- +a:wg21-edit6275 +WG21-EDIT6275 +EDIT6275 +- +a:wg21-edit6276 +WG21-EDIT6276 +EDIT6276 +- +a:wg21-edit6277 +WG21-EDIT6277 +EDIT6277 +- +a:wg21-edit6278 +WG21-EDIT6278 +EDIT6278 +- +a:wg21-edit6279 +WG21-EDIT6279 +EDIT6279 +- a:wg21-edit628 WG21-EDIT628 EDIT628 - +a:wg21-edit6280 +WG21-EDIT6280 +EDIT6280 +- +a:wg21-edit6281 +WG21-EDIT6281 +EDIT6281 +- +a:wg21-edit6282 +WG21-EDIT6282 +EDIT6282 +- +a:wg21-edit6283 +WG21-EDIT6283 +EDIT6283 +- +a:wg21-edit6284 +WG21-EDIT6284 +EDIT6284 +- +a:wg21-edit6285 +WG21-EDIT6285 +EDIT6285 +- +a:wg21-edit6286 +WG21-EDIT6286 +EDIT6286 +- +a:wg21-edit6287 +WG21-EDIT6287 +EDIT6287 +- +a:wg21-edit6288 +WG21-EDIT6288 +EDIT6288 +- +a:wg21-edit6289 +WG21-EDIT6289 +EDIT6289 +- a:wg21-edit629 WG21-EDIT629 EDIT629 - +a:wg21-edit6290 +WG21-EDIT6290 +EDIT6290 +- +a:wg21-edit6291 +WG21-EDIT6291 +EDIT6291 +- +a:wg21-edit6292 +WG21-EDIT6292 +EDIT6292 +- +a:wg21-edit6293 +WG21-EDIT6293 +EDIT6293 +- +a:wg21-edit6294 +WG21-EDIT6294 +EDIT6294 +- +a:wg21-edit6295 +WG21-EDIT6295 +EDIT6295 +- +a:wg21-edit6296 +WG21-EDIT6296 +EDIT6296 +- +a:wg21-edit6297 +WG21-EDIT6297 +EDIT6297 +- +a:wg21-edit6298 +WG21-EDIT6298 +EDIT6298 +- +a:wg21-edit6299 +WG21-EDIT6299 +EDIT6299 +- a:wg21-edit63 WG21-EDIT63 EDIT63 @@ -35174,42 +37254,442 @@ a:wg21-edit630 WG21-EDIT630 EDIT630 - +a:wg21-edit6300 +WG21-EDIT6300 +EDIT6300 +- +a:wg21-edit6301 +WG21-EDIT6301 +EDIT6301 +- +a:wg21-edit6302 +WG21-EDIT6302 +EDIT6302 +- +a:wg21-edit6303 +WG21-EDIT6303 +EDIT6303 +- +a:wg21-edit6304 +WG21-EDIT6304 +EDIT6304 +- +a:wg21-edit6305 +WG21-EDIT6305 +EDIT6305 +- +a:wg21-edit6306 +WG21-EDIT6306 +EDIT6306 +- +a:wg21-edit6307 +WG21-EDIT6307 +EDIT6307 +- +a:wg21-edit6308 +WG21-EDIT6308 +EDIT6308 +- +a:wg21-edit6309 +WG21-EDIT6309 +EDIT6309 +- a:wg21-edit631 WG21-EDIT631 EDIT631 - +a:wg21-edit6310 +WG21-EDIT6310 +EDIT6310 +- +a:wg21-edit6311 +WG21-EDIT6311 +EDIT6311 +- +a:wg21-edit6312 +WG21-EDIT6312 +EDIT6312 +- +a:wg21-edit6313 +WG21-EDIT6313 +EDIT6313 +- +a:wg21-edit6314 +WG21-EDIT6314 +EDIT6314 +- +a:wg21-edit6315 +WG21-EDIT6315 +EDIT6315 +- +a:wg21-edit6316 +WG21-EDIT6316 +EDIT6316 +- +a:wg21-edit6317 +WG21-EDIT6317 +EDIT6317 +- +a:wg21-edit6318 +WG21-EDIT6318 +EDIT6318 +- +a:wg21-edit6319 +WG21-EDIT6319 +EDIT6319 +- a:wg21-edit632 WG21-EDIT632 EDIT632 - +a:wg21-edit6320 +WG21-EDIT6320 +EDIT6320 +- +a:wg21-edit6321 +WG21-EDIT6321 +EDIT6321 +- +a:wg21-edit6322 +WG21-EDIT6322 +EDIT6322 +- +a:wg21-edit6323 +WG21-EDIT6323 +EDIT6323 +- +a:wg21-edit6324 +WG21-EDIT6324 +EDIT6324 +- +a:wg21-edit6325 +WG21-EDIT6325 +EDIT6325 +- +a:wg21-edit6326 +WG21-EDIT6326 +EDIT6326 +- +a:wg21-edit6327 +WG21-EDIT6327 +EDIT6327 +- +a:wg21-edit6328 +WG21-EDIT6328 +EDIT6328 +- +a:wg21-edit6329 +WG21-EDIT6329 +EDIT6329 +- a:wg21-edit633 WG21-EDIT633 EDIT633 - +a:wg21-edit6330 +WG21-EDIT6330 +EDIT6330 +- +a:wg21-edit6331 +WG21-EDIT6331 +EDIT6331 +- +a:wg21-edit6332 +WG21-EDIT6332 +EDIT6332 +- +a:wg21-edit6333 +WG21-EDIT6333 +EDIT6333 +- +a:wg21-edit6334 +WG21-EDIT6334 +EDIT6334 +- +a:wg21-edit6335 +WG21-EDIT6335 +EDIT6335 +- +a:wg21-edit6336 +WG21-EDIT6336 +EDIT6336 +- +a:wg21-edit6337 +WG21-EDIT6337 +EDIT6337 +- +a:wg21-edit6338 +WG21-EDIT6338 +EDIT6338 +- +a:wg21-edit6339 +WG21-EDIT6339 +EDIT6339 +- a:wg21-edit634 WG21-EDIT634 EDIT634 - +a:wg21-edit6340 +WG21-EDIT6340 +EDIT6340 +- +a:wg21-edit6341 +WG21-EDIT6341 +EDIT6341 +- +a:wg21-edit6342 +WG21-EDIT6342 +EDIT6342 +- +a:wg21-edit6343 +WG21-EDIT6343 +EDIT6343 +- +a:wg21-edit6344 +WG21-EDIT6344 +EDIT6344 +- +a:wg21-edit6345 +WG21-EDIT6345 +EDIT6345 +- +a:wg21-edit6346 +WG21-EDIT6346 +EDIT6346 +- +a:wg21-edit6347 +WG21-EDIT6347 +EDIT6347 +- +a:wg21-edit6348 +WG21-EDIT6348 +EDIT6348 +- +a:wg21-edit6349 +WG21-EDIT6349 +EDIT6349 +- a:wg21-edit635 WG21-EDIT635 EDIT635 - +a:wg21-edit6350 +WG21-EDIT6350 +EDIT6350 +- +a:wg21-edit6351 +WG21-EDIT6351 +EDIT6351 +- +a:wg21-edit6352 +WG21-EDIT6352 +EDIT6352 +- +a:wg21-edit6353 +WG21-EDIT6353 +EDIT6353 +- +a:wg21-edit6354 +WG21-EDIT6354 +EDIT6354 +- +a:wg21-edit6355 +WG21-EDIT6355 +EDIT6355 +- +a:wg21-edit6356 +WG21-EDIT6356 +EDIT6356 +- +a:wg21-edit6357 +WG21-EDIT6357 +EDIT6357 +- +a:wg21-edit6358 +WG21-EDIT6358 +EDIT6358 +- +a:wg21-edit6359 +WG21-EDIT6359 +EDIT6359 +- a:wg21-edit636 WG21-EDIT636 EDIT636 - +a:wg21-edit6360 +WG21-EDIT6360 +EDIT6360 +- +a:wg21-edit6361 +WG21-EDIT6361 +EDIT6361 +- +a:wg21-edit6362 +WG21-EDIT6362 +EDIT6362 +- +a:wg21-edit6363 +WG21-EDIT6363 +EDIT6363 +- +a:wg21-edit6364 +WG21-EDIT6364 +EDIT6364 +- +a:wg21-edit6365 +WG21-EDIT6365 +EDIT6365 +- +a:wg21-edit6366 +WG21-EDIT6366 +EDIT6366 +- +a:wg21-edit6367 +WG21-EDIT6367 +EDIT6367 +- +a:wg21-edit6368 +WG21-EDIT6368 +EDIT6368 +- +a:wg21-edit6369 +WG21-EDIT6369 +EDIT6369 +- a:wg21-edit637 WG21-EDIT637 EDIT637 - +a:wg21-edit6370 +WG21-EDIT6370 +EDIT6370 +- +a:wg21-edit6371 +WG21-EDIT6371 +EDIT6371 +- +a:wg21-edit6372 +WG21-EDIT6372 +EDIT6372 +- +a:wg21-edit6373 +WG21-EDIT6373 +EDIT6373 +- +a:wg21-edit6374 +WG21-EDIT6374 +EDIT6374 +- +a:wg21-edit6375 +WG21-EDIT6375 +EDIT6375 +- +a:wg21-edit6376 +WG21-EDIT6376 +EDIT6376 +- +a:wg21-edit6377 +WG21-EDIT6377 +EDIT6377 +- +a:wg21-edit6378 +WG21-EDIT6378 +EDIT6378 +- +a:wg21-edit6379 +WG21-EDIT6379 +EDIT6379 +- a:wg21-edit638 WG21-EDIT638 EDIT638 - +a:wg21-edit6380 +WG21-EDIT6380 +EDIT6380 +- +a:wg21-edit6381 +WG21-EDIT6381 +EDIT6381 +- +a:wg21-edit6382 +WG21-EDIT6382 +EDIT6382 +- +a:wg21-edit6383 +WG21-EDIT6383 +EDIT6383 +- +a:wg21-edit6384 +WG21-EDIT6384 +EDIT6384 +- +a:wg21-edit6385 +WG21-EDIT6385 +EDIT6385 +- +a:wg21-edit6386 +WG21-EDIT6386 +EDIT6386 +- +a:wg21-edit6387 +WG21-EDIT6387 +EDIT6387 +- +a:wg21-edit6388 +WG21-EDIT6388 +EDIT6388 +- +a:wg21-edit6389 +WG21-EDIT6389 +EDIT6389 +- a:wg21-edit639 WG21-EDIT639 EDIT639 - +a:wg21-edit6390 +WG21-EDIT6390 +EDIT6390 +- +a:wg21-edit6391 +WG21-EDIT6391 +EDIT6391 +- +a:wg21-edit6392 +WG21-EDIT6392 +EDIT6392 +- +a:wg21-edit6393 +WG21-EDIT6393 +EDIT6393 +- +a:wg21-edit6394 +WG21-EDIT6394 +EDIT6394 +- +a:wg21-edit6395 +WG21-EDIT6395 +EDIT6395 +- +a:wg21-edit6396 +WG21-EDIT6396 +EDIT6396 +- +a:wg21-edit6397 +WG21-EDIT6397 +EDIT6397 +- +a:wg21-edit6398 +WG21-EDIT6398 +EDIT6398 +- +a:wg21-edit6399 +WG21-EDIT6399 +EDIT6399 +- a:wg21-edit64 WG21-EDIT64 EDIT64 @@ -35218,42 +37698,442 @@ a:wg21-edit640 WG21-EDIT640 EDIT640 - +a:wg21-edit6400 +WG21-EDIT6400 +EDIT6400 +- +a:wg21-edit6401 +WG21-EDIT6401 +EDIT6401 +- +a:wg21-edit6402 +WG21-EDIT6402 +EDIT6402 +- +a:wg21-edit6403 +WG21-EDIT6403 +EDIT6403 +- +a:wg21-edit6404 +WG21-EDIT6404 +EDIT6404 +- +a:wg21-edit6405 +WG21-EDIT6405 +EDIT6405 +- +a:wg21-edit6406 +WG21-EDIT6406 +EDIT6406 +- +a:wg21-edit6407 +WG21-EDIT6407 +EDIT6407 +- +a:wg21-edit6408 +WG21-EDIT6408 +EDIT6408 +- +a:wg21-edit6409 +WG21-EDIT6409 +EDIT6409 +- a:wg21-edit641 WG21-EDIT641 EDIT641 - +a:wg21-edit6410 +WG21-EDIT6410 +EDIT6410 +- +a:wg21-edit6411 +WG21-EDIT6411 +EDIT6411 +- +a:wg21-edit6412 +WG21-EDIT6412 +EDIT6412 +- +a:wg21-edit6413 +WG21-EDIT6413 +EDIT6413 +- +a:wg21-edit6414 +WG21-EDIT6414 +EDIT6414 +- +a:wg21-edit6415 +WG21-EDIT6415 +EDIT6415 +- +a:wg21-edit6416 +WG21-EDIT6416 +EDIT6416 +- +a:wg21-edit6417 +WG21-EDIT6417 +EDIT6417 +- +a:wg21-edit6418 +WG21-EDIT6418 +EDIT6418 +- +a:wg21-edit6419 +WG21-EDIT6419 +EDIT6419 +- a:wg21-edit642 WG21-EDIT642 EDIT642 - +a:wg21-edit6420 +WG21-EDIT6420 +EDIT6420 +- +a:wg21-edit6421 +WG21-EDIT6421 +EDIT6421 +- +a:wg21-edit6422 +WG21-EDIT6422 +EDIT6422 +- +a:wg21-edit6423 +WG21-EDIT6423 +EDIT6423 +- +a:wg21-edit6424 +WG21-EDIT6424 +EDIT6424 +- +a:wg21-edit6425 +WG21-EDIT6425 +EDIT6425 +- +a:wg21-edit6426 +WG21-EDIT6426 +EDIT6426 +- +a:wg21-edit6427 +WG21-EDIT6427 +EDIT6427 +- +a:wg21-edit6428 +WG21-EDIT6428 +EDIT6428 +- +a:wg21-edit6429 +WG21-EDIT6429 +EDIT6429 +- a:wg21-edit643 WG21-EDIT643 EDIT643 - +a:wg21-edit6430 +WG21-EDIT6430 +EDIT6430 +- +a:wg21-edit6431 +WG21-EDIT6431 +EDIT6431 +- +a:wg21-edit6432 +WG21-EDIT6432 +EDIT6432 +- +a:wg21-edit6433 +WG21-EDIT6433 +EDIT6433 +- +a:wg21-edit6434 +WG21-EDIT6434 +EDIT6434 +- +a:wg21-edit6435 +WG21-EDIT6435 +EDIT6435 +- +a:wg21-edit6436 +WG21-EDIT6436 +EDIT6436 +- +a:wg21-edit6437 +WG21-EDIT6437 +EDIT6437 +- +a:wg21-edit6438 +WG21-EDIT6438 +EDIT6438 +- +a:wg21-edit6439 +WG21-EDIT6439 +EDIT6439 +- a:wg21-edit644 WG21-EDIT644 EDIT644 - +a:wg21-edit6440 +WG21-EDIT6440 +EDIT6440 +- +a:wg21-edit6441 +WG21-EDIT6441 +EDIT6441 +- +a:wg21-edit6442 +WG21-EDIT6442 +EDIT6442 +- +a:wg21-edit6443 +WG21-EDIT6443 +EDIT6443 +- +a:wg21-edit6444 +WG21-EDIT6444 +EDIT6444 +- +a:wg21-edit6445 +WG21-EDIT6445 +EDIT6445 +- +a:wg21-edit6446 +WG21-EDIT6446 +EDIT6446 +- +a:wg21-edit6447 +WG21-EDIT6447 +EDIT6447 +- +a:wg21-edit6448 +WG21-EDIT6448 +EDIT6448 +- +a:wg21-edit6449 +WG21-EDIT6449 +EDIT6449 +- a:wg21-edit645 WG21-EDIT645 EDIT645 - +a:wg21-edit6450 +WG21-EDIT6450 +EDIT6450 +- +a:wg21-edit6451 +WG21-EDIT6451 +EDIT6451 +- +a:wg21-edit6452 +WG21-EDIT6452 +EDIT6452 +- +a:wg21-edit6453 +WG21-EDIT6453 +EDIT6453 +- +a:wg21-edit6454 +WG21-EDIT6454 +EDIT6454 +- +a:wg21-edit6455 +WG21-EDIT6455 +EDIT6455 +- +a:wg21-edit6456 +WG21-EDIT6456 +EDIT6456 +- +a:wg21-edit6457 +WG21-EDIT6457 +EDIT6457 +- +a:wg21-edit6458 +WG21-EDIT6458 +EDIT6458 +- +a:wg21-edit6459 +WG21-EDIT6459 +EDIT6459 +- a:wg21-edit646 WG21-EDIT646 EDIT646 - +a:wg21-edit6460 +WG21-EDIT6460 +EDIT6460 +- +a:wg21-edit6461 +WG21-EDIT6461 +EDIT6461 +- +a:wg21-edit6462 +WG21-EDIT6462 +EDIT6462 +- +a:wg21-edit6463 +WG21-EDIT6463 +EDIT6463 +- +a:wg21-edit6464 +WG21-EDIT6464 +EDIT6464 +- +a:wg21-edit6465 +WG21-EDIT6465 +EDIT6465 +- +a:wg21-edit6466 +WG21-EDIT6466 +EDIT6466 +- +a:wg21-edit6467 +WG21-EDIT6467 +EDIT6467 +- +a:wg21-edit6468 +WG21-EDIT6468 +EDIT6468 +- +a:wg21-edit6469 +WG21-EDIT6469 +EDIT6469 +- a:wg21-edit647 WG21-EDIT647 EDIT647 - +a:wg21-edit6470 +WG21-EDIT6470 +EDIT6470 +- +a:wg21-edit6471 +WG21-EDIT6471 +EDIT6471 +- +a:wg21-edit6472 +WG21-EDIT6472 +EDIT6472 +- +a:wg21-edit6473 +WG21-EDIT6473 +EDIT6473 +- +a:wg21-edit6474 +WG21-EDIT6474 +EDIT6474 +- +a:wg21-edit6475 +WG21-EDIT6475 +EDIT6475 +- +a:wg21-edit6476 +WG21-EDIT6476 +EDIT6476 +- +a:wg21-edit6477 +WG21-EDIT6477 +EDIT6477 +- +a:wg21-edit6478 +WG21-EDIT6478 +EDIT6478 +- +a:wg21-edit6479 +WG21-EDIT6479 +EDIT6479 +- a:wg21-edit648 WG21-EDIT648 EDIT648 - +a:wg21-edit6480 +WG21-EDIT6480 +EDIT6480 +- +a:wg21-edit6481 +WG21-EDIT6481 +EDIT6481 +- +a:wg21-edit6482 +WG21-EDIT6482 +EDIT6482 +- +a:wg21-edit6483 +WG21-EDIT6483 +EDIT6483 +- +a:wg21-edit6484 +WG21-EDIT6484 +EDIT6484 +- +a:wg21-edit6485 +WG21-EDIT6485 +EDIT6485 +- +a:wg21-edit6486 +WG21-EDIT6486 +EDIT6486 +- +a:wg21-edit6487 +WG21-EDIT6487 +EDIT6487 +- +a:wg21-edit6488 +WG21-EDIT6488 +EDIT6488 +- +a:wg21-edit6489 +WG21-EDIT6489 +EDIT6489 +- a:wg21-edit649 WG21-EDIT649 EDIT649 - +a:wg21-edit6490 +WG21-EDIT6490 +EDIT6490 +- +a:wg21-edit6491 +WG21-EDIT6491 +EDIT6491 +- +a:wg21-edit6492 +WG21-EDIT6492 +EDIT6492 +- +a:wg21-edit6493 +WG21-EDIT6493 +EDIT6493 +- +a:wg21-edit6494 +WG21-EDIT6494 +EDIT6494 +- +a:wg21-edit6495 +WG21-EDIT6495 +EDIT6495 +- +a:wg21-edit6496 +WG21-EDIT6496 +EDIT6496 +- +a:wg21-edit6497 +WG21-EDIT6497 +EDIT6497 +- +a:wg21-edit6498 +WG21-EDIT6498 +EDIT6498 +- +a:wg21-edit6499 +WG21-EDIT6499 +EDIT6499 +- a:wg21-edit65 WG21-EDIT65 EDIT65 @@ -35262,42 +38142,442 @@ a:wg21-edit650 WG21-EDIT650 EDIT650 - +a:wg21-edit6500 +WG21-EDIT6500 +EDIT6500 +- +a:wg21-edit6501 +WG21-EDIT6501 +EDIT6501 +- +a:wg21-edit6502 +WG21-EDIT6502 +EDIT6502 +- +a:wg21-edit6503 +WG21-EDIT6503 +EDIT6503 +- +a:wg21-edit6504 +WG21-EDIT6504 +EDIT6504 +- +a:wg21-edit6505 +WG21-EDIT6505 +EDIT6505 +- +a:wg21-edit6506 +WG21-EDIT6506 +EDIT6506 +- +a:wg21-edit6507 +WG21-EDIT6507 +EDIT6507 +- +a:wg21-edit6508 +WG21-EDIT6508 +EDIT6508 +- +a:wg21-edit6509 +WG21-EDIT6509 +EDIT6509 +- a:wg21-edit651 WG21-EDIT651 EDIT651 - +a:wg21-edit6510 +WG21-EDIT6510 +EDIT6510 +- +a:wg21-edit6511 +WG21-EDIT6511 +EDIT6511 +- +a:wg21-edit6512 +WG21-EDIT6512 +EDIT6512 +- +a:wg21-edit6513 +WG21-EDIT6513 +EDIT6513 +- +a:wg21-edit6514 +WG21-EDIT6514 +EDIT6514 +- +a:wg21-edit6515 +WG21-EDIT6515 +EDIT6515 +- +a:wg21-edit6516 +WG21-EDIT6516 +EDIT6516 +- +a:wg21-edit6517 +WG21-EDIT6517 +EDIT6517 +- +a:wg21-edit6518 +WG21-EDIT6518 +EDIT6518 +- +a:wg21-edit6519 +WG21-EDIT6519 +EDIT6519 +- a:wg21-edit652 WG21-EDIT652 EDIT652 - +a:wg21-edit6520 +WG21-EDIT6520 +EDIT6520 +- +a:wg21-edit6521 +WG21-EDIT6521 +EDIT6521 +- +a:wg21-edit6522 +WG21-EDIT6522 +EDIT6522 +- +a:wg21-edit6523 +WG21-EDIT6523 +EDIT6523 +- +a:wg21-edit6524 +WG21-EDIT6524 +EDIT6524 +- +a:wg21-edit6525 +WG21-EDIT6525 +EDIT6525 +- +a:wg21-edit6526 +WG21-EDIT6526 +EDIT6526 +- +a:wg21-edit6527 +WG21-EDIT6527 +EDIT6527 +- +a:wg21-edit6528 +WG21-EDIT6528 +EDIT6528 +- +a:wg21-edit6529 +WG21-EDIT6529 +EDIT6529 +- a:wg21-edit653 WG21-EDIT653 EDIT653 - +a:wg21-edit6530 +WG21-EDIT6530 +EDIT6530 +- +a:wg21-edit6531 +WG21-EDIT6531 +EDIT6531 +- +a:wg21-edit6532 +WG21-EDIT6532 +EDIT6532 +- +a:wg21-edit6533 +WG21-EDIT6533 +EDIT6533 +- +a:wg21-edit6534 +WG21-EDIT6534 +EDIT6534 +- +a:wg21-edit6535 +WG21-EDIT6535 +EDIT6535 +- +a:wg21-edit6536 +WG21-EDIT6536 +EDIT6536 +- +a:wg21-edit6537 +WG21-EDIT6537 +EDIT6537 +- +a:wg21-edit6538 +WG21-EDIT6538 +EDIT6538 +- +a:wg21-edit6539 +WG21-EDIT6539 +EDIT6539 +- a:wg21-edit654 WG21-EDIT654 EDIT654 - +a:wg21-edit6540 +WG21-EDIT6540 +EDIT6540 +- +a:wg21-edit6541 +WG21-EDIT6541 +EDIT6541 +- +a:wg21-edit6542 +WG21-EDIT6542 +EDIT6542 +- +a:wg21-edit6543 +WG21-EDIT6543 +EDIT6543 +- +a:wg21-edit6544 +WG21-EDIT6544 +EDIT6544 +- +a:wg21-edit6545 +WG21-EDIT6545 +EDIT6545 +- +a:wg21-edit6546 +WG21-EDIT6546 +EDIT6546 +- +a:wg21-edit6547 +WG21-EDIT6547 +EDIT6547 +- +a:wg21-edit6548 +WG21-EDIT6548 +EDIT6548 +- +a:wg21-edit6549 +WG21-EDIT6549 +EDIT6549 +- a:wg21-edit655 WG21-EDIT655 EDIT655 - +a:wg21-edit6550 +WG21-EDIT6550 +EDIT6550 +- +a:wg21-edit6551 +WG21-EDIT6551 +EDIT6551 +- +a:wg21-edit6552 +WG21-EDIT6552 +EDIT6552 +- +a:wg21-edit6553 +WG21-EDIT6553 +EDIT6553 +- +a:wg21-edit6554 +WG21-EDIT6554 +EDIT6554 +- +a:wg21-edit6555 +WG21-EDIT6555 +EDIT6555 +- +a:wg21-edit6556 +WG21-EDIT6556 +EDIT6556 +- +a:wg21-edit6557 +WG21-EDIT6557 +EDIT6557 +- +a:wg21-edit6558 +WG21-EDIT6558 +EDIT6558 +- +a:wg21-edit6559 +WG21-EDIT6559 +EDIT6559 +- a:wg21-edit656 WG21-EDIT656 EDIT656 - +a:wg21-edit6560 +WG21-EDIT6560 +EDIT6560 +- +a:wg21-edit6561 +WG21-EDIT6561 +EDIT6561 +- +a:wg21-edit6562 +WG21-EDIT6562 +EDIT6562 +- +a:wg21-edit6563 +WG21-EDIT6563 +EDIT6563 +- +a:wg21-edit6564 +WG21-EDIT6564 +EDIT6564 +- +a:wg21-edit6565 +WG21-EDIT6565 +EDIT6565 +- +a:wg21-edit6566 +WG21-EDIT6566 +EDIT6566 +- +a:wg21-edit6567 +WG21-EDIT6567 +EDIT6567 +- +a:wg21-edit6568 +WG21-EDIT6568 +EDIT6568 +- +a:wg21-edit6569 +WG21-EDIT6569 +EDIT6569 +- a:wg21-edit657 WG21-EDIT657 EDIT657 - +a:wg21-edit6570 +WG21-EDIT6570 +EDIT6570 +- +a:wg21-edit6571 +WG21-EDIT6571 +EDIT6571 +- +a:wg21-edit6572 +WG21-EDIT6572 +EDIT6572 +- +a:wg21-edit6573 +WG21-EDIT6573 +EDIT6573 +- +a:wg21-edit6574 +WG21-EDIT6574 +EDIT6574 +- +a:wg21-edit6575 +WG21-EDIT6575 +EDIT6575 +- +a:wg21-edit6576 +WG21-EDIT6576 +EDIT6576 +- +a:wg21-edit6577 +WG21-EDIT6577 +EDIT6577 +- +a:wg21-edit6578 +WG21-EDIT6578 +EDIT6578 +- +a:wg21-edit6579 +WG21-EDIT6579 +EDIT6579 +- a:wg21-edit658 WG21-EDIT658 EDIT658 - +a:wg21-edit6580 +WG21-EDIT6580 +EDIT6580 +- +a:wg21-edit6581 +WG21-EDIT6581 +EDIT6581 +- +a:wg21-edit6582 +WG21-EDIT6582 +EDIT6582 +- +a:wg21-edit6583 +WG21-EDIT6583 +EDIT6583 +- +a:wg21-edit6584 +WG21-EDIT6584 +EDIT6584 +- +a:wg21-edit6585 +WG21-EDIT6585 +EDIT6585 +- +a:wg21-edit6586 +WG21-EDIT6586 +EDIT6586 +- +a:wg21-edit6587 +WG21-EDIT6587 +EDIT6587 +- +a:wg21-edit6588 +WG21-EDIT6588 +EDIT6588 +- +a:wg21-edit6589 +WG21-EDIT6589 +EDIT6589 +- a:wg21-edit659 WG21-EDIT659 EDIT659 - +a:wg21-edit6590 +WG21-EDIT6590 +EDIT6590 +- +a:wg21-edit6591 +WG21-EDIT6591 +EDIT6591 +- +a:wg21-edit6592 +WG21-EDIT6592 +EDIT6592 +- +a:wg21-edit6593 +WG21-EDIT6593 +EDIT6593 +- +a:wg21-edit6594 +WG21-EDIT6594 +EDIT6594 +- +a:wg21-edit6595 +WG21-EDIT6595 +EDIT6595 +- +a:wg21-edit6596 +WG21-EDIT6596 +EDIT6596 +- +a:wg21-edit6597 +WG21-EDIT6597 +EDIT6597 +- +a:wg21-edit6598 +WG21-EDIT6598 +EDIT6598 +- +a:wg21-edit6599 +WG21-EDIT6599 +EDIT6599 +- a:wg21-edit66 WG21-EDIT66 EDIT66 @@ -35306,42 +38586,442 @@ a:wg21-edit660 WG21-EDIT660 EDIT660 - +a:wg21-edit6600 +WG21-EDIT6600 +EDIT6600 +- +a:wg21-edit6601 +WG21-EDIT6601 +EDIT6601 +- +a:wg21-edit6602 +WG21-EDIT6602 +EDIT6602 +- +a:wg21-edit6603 +WG21-EDIT6603 +EDIT6603 +- +a:wg21-edit6604 +WG21-EDIT6604 +EDIT6604 +- +a:wg21-edit6605 +WG21-EDIT6605 +EDIT6605 +- +a:wg21-edit6606 +WG21-EDIT6606 +EDIT6606 +- +a:wg21-edit6607 +WG21-EDIT6607 +EDIT6607 +- +a:wg21-edit6608 +WG21-EDIT6608 +EDIT6608 +- +a:wg21-edit6609 +WG21-EDIT6609 +EDIT6609 +- a:wg21-edit661 WG21-EDIT661 EDIT661 - +a:wg21-edit6610 +WG21-EDIT6610 +EDIT6610 +- +a:wg21-edit6611 +WG21-EDIT6611 +EDIT6611 +- +a:wg21-edit6612 +WG21-EDIT6612 +EDIT6612 +- +a:wg21-edit6613 +WG21-EDIT6613 +EDIT6613 +- +a:wg21-edit6614 +WG21-EDIT6614 +EDIT6614 +- +a:wg21-edit6615 +WG21-EDIT6615 +EDIT6615 +- +a:wg21-edit6616 +WG21-EDIT6616 +EDIT6616 +- +a:wg21-edit6617 +WG21-EDIT6617 +EDIT6617 +- +a:wg21-edit6618 +WG21-EDIT6618 +EDIT6618 +- +a:wg21-edit6619 +WG21-EDIT6619 +EDIT6619 +- a:wg21-edit662 WG21-EDIT662 EDIT662 - +a:wg21-edit6620 +WG21-EDIT6620 +EDIT6620 +- +a:wg21-edit6621 +WG21-EDIT6621 +EDIT6621 +- +a:wg21-edit6622 +WG21-EDIT6622 +EDIT6622 +- +a:wg21-edit6623 +WG21-EDIT6623 +EDIT6623 +- +a:wg21-edit6624 +WG21-EDIT6624 +EDIT6624 +- +a:wg21-edit6625 +WG21-EDIT6625 +EDIT6625 +- +a:wg21-edit6626 +WG21-EDIT6626 +EDIT6626 +- +a:wg21-edit6627 +WG21-EDIT6627 +EDIT6627 +- +a:wg21-edit6628 +WG21-EDIT6628 +EDIT6628 +- +a:wg21-edit6629 +WG21-EDIT6629 +EDIT6629 +- a:wg21-edit663 WG21-EDIT663 EDIT663 - +a:wg21-edit6630 +WG21-EDIT6630 +EDIT6630 +- +a:wg21-edit6631 +WG21-EDIT6631 +EDIT6631 +- +a:wg21-edit6632 +WG21-EDIT6632 +EDIT6632 +- +a:wg21-edit6633 +WG21-EDIT6633 +EDIT6633 +- +a:wg21-edit6634 +WG21-EDIT6634 +EDIT6634 +- +a:wg21-edit6635 +WG21-EDIT6635 +EDIT6635 +- +a:wg21-edit6636 +WG21-EDIT6636 +EDIT6636 +- +a:wg21-edit6637 +WG21-EDIT6637 +EDIT6637 +- +a:wg21-edit6638 +WG21-EDIT6638 +EDIT6638 +- +a:wg21-edit6639 +WG21-EDIT6639 +EDIT6639 +- a:wg21-edit664 WG21-EDIT664 EDIT664 - +a:wg21-edit6640 +WG21-EDIT6640 +EDIT6640 +- +a:wg21-edit6641 +WG21-EDIT6641 +EDIT6641 +- +a:wg21-edit6642 +WG21-EDIT6642 +EDIT6642 +- +a:wg21-edit6643 +WG21-EDIT6643 +EDIT6643 +- +a:wg21-edit6644 +WG21-EDIT6644 +EDIT6644 +- +a:wg21-edit6645 +WG21-EDIT6645 +EDIT6645 +- +a:wg21-edit6646 +WG21-EDIT6646 +EDIT6646 +- +a:wg21-edit6647 +WG21-EDIT6647 +EDIT6647 +- +a:wg21-edit6648 +WG21-EDIT6648 +EDIT6648 +- +a:wg21-edit6649 +WG21-EDIT6649 +EDIT6649 +- a:wg21-edit665 WG21-EDIT665 EDIT665 - +a:wg21-edit6650 +WG21-EDIT6650 +EDIT6650 +- +a:wg21-edit6651 +WG21-EDIT6651 +EDIT6651 +- +a:wg21-edit6652 +WG21-EDIT6652 +EDIT6652 +- +a:wg21-edit6653 +WG21-EDIT6653 +EDIT6653 +- +a:wg21-edit6654 +WG21-EDIT6654 +EDIT6654 +- +a:wg21-edit6655 +WG21-EDIT6655 +EDIT6655 +- +a:wg21-edit6656 +WG21-EDIT6656 +EDIT6656 +- +a:wg21-edit6657 +WG21-EDIT6657 +EDIT6657 +- +a:wg21-edit6658 +WG21-EDIT6658 +EDIT6658 +- +a:wg21-edit6659 +WG21-EDIT6659 +EDIT6659 +- a:wg21-edit666 WG21-EDIT666 EDIT666 - +a:wg21-edit6660 +WG21-EDIT6660 +EDIT6660 +- +a:wg21-edit6661 +WG21-EDIT6661 +EDIT6661 +- +a:wg21-edit6662 +WG21-EDIT6662 +EDIT6662 +- +a:wg21-edit6663 +WG21-EDIT6663 +EDIT6663 +- +a:wg21-edit6664 +WG21-EDIT6664 +EDIT6664 +- +a:wg21-edit6665 +WG21-EDIT6665 +EDIT6665 +- +a:wg21-edit6666 +WG21-EDIT6666 +EDIT6666 +- +a:wg21-edit6667 +WG21-EDIT6667 +EDIT6667 +- +a:wg21-edit6668 +WG21-EDIT6668 +EDIT6668 +- +a:wg21-edit6669 +WG21-EDIT6669 +EDIT6669 +- a:wg21-edit667 WG21-EDIT667 EDIT667 - +a:wg21-edit6670 +WG21-EDIT6670 +EDIT6670 +- +a:wg21-edit6671 +WG21-EDIT6671 +EDIT6671 +- +a:wg21-edit6672 +WG21-EDIT6672 +EDIT6672 +- +a:wg21-edit6673 +WG21-EDIT6673 +EDIT6673 +- +a:wg21-edit6674 +WG21-EDIT6674 +EDIT6674 +- +a:wg21-edit6675 +WG21-EDIT6675 +EDIT6675 +- +a:wg21-edit6676 +WG21-EDIT6676 +EDIT6676 +- +a:wg21-edit6677 +WG21-EDIT6677 +EDIT6677 +- +a:wg21-edit6678 +WG21-EDIT6678 +EDIT6678 +- +a:wg21-edit6679 +WG21-EDIT6679 +EDIT6679 +- a:wg21-edit668 WG21-EDIT668 EDIT668 - +a:wg21-edit6680 +WG21-EDIT6680 +EDIT6680 +- +a:wg21-edit6681 +WG21-EDIT6681 +EDIT6681 +- +a:wg21-edit6682 +WG21-EDIT6682 +EDIT6682 +- +a:wg21-edit6683 +WG21-EDIT6683 +EDIT6683 +- +a:wg21-edit6684 +WG21-EDIT6684 +EDIT6684 +- +a:wg21-edit6685 +WG21-EDIT6685 +EDIT6685 +- +a:wg21-edit6686 +WG21-EDIT6686 +EDIT6686 +- +a:wg21-edit6687 +WG21-EDIT6687 +EDIT6687 +- +a:wg21-edit6688 +WG21-EDIT6688 +EDIT6688 +- +a:wg21-edit6689 +WG21-EDIT6689 +EDIT6689 +- a:wg21-edit669 WG21-EDIT669 EDIT669 - +a:wg21-edit6690 +WG21-EDIT6690 +EDIT6690 +- +a:wg21-edit6691 +WG21-EDIT6691 +EDIT6691 +- +a:wg21-edit6692 +WG21-EDIT6692 +EDIT6692 +- +a:wg21-edit6693 +WG21-EDIT6693 +EDIT6693 +- +a:wg21-edit6694 +WG21-EDIT6694 +EDIT6694 +- +a:wg21-edit6695 +WG21-EDIT6695 +EDIT6695 +- +a:wg21-edit6696 +WG21-EDIT6696 +EDIT6696 +- +a:wg21-edit6697 +WG21-EDIT6697 +EDIT6697 +- +a:wg21-edit6698 +WG21-EDIT6698 +EDIT6698 +- +a:wg21-edit6699 +WG21-EDIT6699 +EDIT6699 +- a:wg21-edit67 WG21-EDIT67 EDIT67 @@ -35350,42 +39030,442 @@ a:wg21-edit670 WG21-EDIT670 EDIT670 - +a:wg21-edit6700 +WG21-EDIT6700 +EDIT6700 +- +a:wg21-edit6701 +WG21-EDIT6701 +EDIT6701 +- +a:wg21-edit6702 +WG21-EDIT6702 +EDIT6702 +- +a:wg21-edit6703 +WG21-EDIT6703 +EDIT6703 +- +a:wg21-edit6704 +WG21-EDIT6704 +EDIT6704 +- +a:wg21-edit6705 +WG21-EDIT6705 +EDIT6705 +- +a:wg21-edit6706 +WG21-EDIT6706 +EDIT6706 +- +a:wg21-edit6707 +WG21-EDIT6707 +EDIT6707 +- +a:wg21-edit6708 +WG21-EDIT6708 +EDIT6708 +- +a:wg21-edit6709 +WG21-EDIT6709 +EDIT6709 +- a:wg21-edit671 WG21-EDIT671 EDIT671 - +a:wg21-edit6710 +WG21-EDIT6710 +EDIT6710 +- +a:wg21-edit6711 +WG21-EDIT6711 +EDIT6711 +- +a:wg21-edit6712 +WG21-EDIT6712 +EDIT6712 +- +a:wg21-edit6713 +WG21-EDIT6713 +EDIT6713 +- +a:wg21-edit6714 +WG21-EDIT6714 +EDIT6714 +- +a:wg21-edit6715 +WG21-EDIT6715 +EDIT6715 +- +a:wg21-edit6716 +WG21-EDIT6716 +EDIT6716 +- +a:wg21-edit6717 +WG21-EDIT6717 +EDIT6717 +- +a:wg21-edit6718 +WG21-EDIT6718 +EDIT6718 +- +a:wg21-edit6719 +WG21-EDIT6719 +EDIT6719 +- a:wg21-edit672 WG21-EDIT672 EDIT672 - +a:wg21-edit6720 +WG21-EDIT6720 +EDIT6720 +- +a:wg21-edit6721 +WG21-EDIT6721 +EDIT6721 +- +a:wg21-edit6722 +WG21-EDIT6722 +EDIT6722 +- +a:wg21-edit6723 +WG21-EDIT6723 +EDIT6723 +- +a:wg21-edit6724 +WG21-EDIT6724 +EDIT6724 +- +a:wg21-edit6725 +WG21-EDIT6725 +EDIT6725 +- +a:wg21-edit6726 +WG21-EDIT6726 +EDIT6726 +- +a:wg21-edit6727 +WG21-EDIT6727 +EDIT6727 +- +a:wg21-edit6728 +WG21-EDIT6728 +EDIT6728 +- +a:wg21-edit6729 +WG21-EDIT6729 +EDIT6729 +- a:wg21-edit673 WG21-EDIT673 EDIT673 - +a:wg21-edit6730 +WG21-EDIT6730 +EDIT6730 +- +a:wg21-edit6731 +WG21-EDIT6731 +EDIT6731 +- +a:wg21-edit6732 +WG21-EDIT6732 +EDIT6732 +- +a:wg21-edit6733 +WG21-EDIT6733 +EDIT6733 +- +a:wg21-edit6734 +WG21-EDIT6734 +EDIT6734 +- +a:wg21-edit6735 +WG21-EDIT6735 +EDIT6735 +- +a:wg21-edit6736 +WG21-EDIT6736 +EDIT6736 +- +a:wg21-edit6737 +WG21-EDIT6737 +EDIT6737 +- +a:wg21-edit6738 +WG21-EDIT6738 +EDIT6738 +- +a:wg21-edit6739 +WG21-EDIT6739 +EDIT6739 +- a:wg21-edit674 WG21-EDIT674 EDIT674 - +a:wg21-edit6740 +WG21-EDIT6740 +EDIT6740 +- +a:wg21-edit6741 +WG21-EDIT6741 +EDIT6741 +- +a:wg21-edit6742 +WG21-EDIT6742 +EDIT6742 +- +a:wg21-edit6743 +WG21-EDIT6743 +EDIT6743 +- +a:wg21-edit6744 +WG21-EDIT6744 +EDIT6744 +- +a:wg21-edit6745 +WG21-EDIT6745 +EDIT6745 +- +a:wg21-edit6746 +WG21-EDIT6746 +EDIT6746 +- +a:wg21-edit6747 +WG21-EDIT6747 +EDIT6747 +- +a:wg21-edit6748 +WG21-EDIT6748 +EDIT6748 +- +a:wg21-edit6749 +WG21-EDIT6749 +EDIT6749 +- a:wg21-edit675 WG21-EDIT675 EDIT675 - +a:wg21-edit6750 +WG21-EDIT6750 +EDIT6750 +- +a:wg21-edit6751 +WG21-EDIT6751 +EDIT6751 +- +a:wg21-edit6752 +WG21-EDIT6752 +EDIT6752 +- +a:wg21-edit6753 +WG21-EDIT6753 +EDIT6753 +- +a:wg21-edit6754 +WG21-EDIT6754 +EDIT6754 +- +a:wg21-edit6755 +WG21-EDIT6755 +EDIT6755 +- +a:wg21-edit6756 +WG21-EDIT6756 +EDIT6756 +- +a:wg21-edit6757 +WG21-EDIT6757 +EDIT6757 +- +a:wg21-edit6758 +WG21-EDIT6758 +EDIT6758 +- +a:wg21-edit6759 +WG21-EDIT6759 +EDIT6759 +- a:wg21-edit676 WG21-EDIT676 EDIT676 - +a:wg21-edit6760 +WG21-EDIT6760 +EDIT6760 +- +a:wg21-edit6761 +WG21-EDIT6761 +EDIT6761 +- +a:wg21-edit6762 +WG21-EDIT6762 +EDIT6762 +- +a:wg21-edit6763 +WG21-EDIT6763 +EDIT6763 +- +a:wg21-edit6764 +WG21-EDIT6764 +EDIT6764 +- +a:wg21-edit6765 +WG21-EDIT6765 +EDIT6765 +- +a:wg21-edit6766 +WG21-EDIT6766 +EDIT6766 +- +a:wg21-edit6767 +WG21-EDIT6767 +EDIT6767 +- +a:wg21-edit6768 +WG21-EDIT6768 +EDIT6768 +- +a:wg21-edit6769 +WG21-EDIT6769 +EDIT6769 +- a:wg21-edit677 WG21-EDIT677 EDIT677 - +a:wg21-edit6770 +WG21-EDIT6770 +EDIT6770 +- +a:wg21-edit6771 +WG21-EDIT6771 +EDIT6771 +- +a:wg21-edit6772 +WG21-EDIT6772 +EDIT6772 +- +a:wg21-edit6773 +WG21-EDIT6773 +EDIT6773 +- +a:wg21-edit6774 +WG21-EDIT6774 +EDIT6774 +- +a:wg21-edit6775 +WG21-EDIT6775 +EDIT6775 +- +a:wg21-edit6776 +WG21-EDIT6776 +EDIT6776 +- +a:wg21-edit6777 +WG21-EDIT6777 +EDIT6777 +- +a:wg21-edit6778 +WG21-EDIT6778 +EDIT6778 +- +a:wg21-edit6779 +WG21-EDIT6779 +EDIT6779 +- a:wg21-edit678 WG21-EDIT678 EDIT678 - +a:wg21-edit6780 +WG21-EDIT6780 +EDIT6780 +- +a:wg21-edit6781 +WG21-EDIT6781 +EDIT6781 +- +a:wg21-edit6782 +WG21-EDIT6782 +EDIT6782 +- +a:wg21-edit6783 +WG21-EDIT6783 +EDIT6783 +- +a:wg21-edit6784 +WG21-EDIT6784 +EDIT6784 +- +a:wg21-edit6785 +WG21-EDIT6785 +EDIT6785 +- +a:wg21-edit6786 +WG21-EDIT6786 +EDIT6786 +- +a:wg21-edit6787 +WG21-EDIT6787 +EDIT6787 +- +a:wg21-edit6788 +WG21-EDIT6788 +EDIT6788 +- +a:wg21-edit6789 +WG21-EDIT6789 +EDIT6789 +- a:wg21-edit679 WG21-EDIT679 EDIT679 - +a:wg21-edit6790 +WG21-EDIT6790 +EDIT6790 +- +a:wg21-edit6791 +WG21-EDIT6791 +EDIT6791 +- +a:wg21-edit6792 +WG21-EDIT6792 +EDIT6792 +- +a:wg21-edit6793 +WG21-EDIT6793 +EDIT6793 +- +a:wg21-edit6794 +WG21-EDIT6794 +EDIT6794 +- +a:wg21-edit6795 +WG21-EDIT6795 +EDIT6795 +- +a:wg21-edit6796 +WG21-EDIT6796 +EDIT6796 +- +a:wg21-edit6797 +WG21-EDIT6797 +EDIT6797 +- +a:wg21-edit6798 +WG21-EDIT6798 +EDIT6798 +- +a:wg21-edit6799 +WG21-EDIT6799 +EDIT6799 +- a:wg21-edit68 WG21-EDIT68 EDIT68 @@ -35394,42 +39474,442 @@ a:wg21-edit680 WG21-EDIT680 EDIT680 - +a:wg21-edit6800 +WG21-EDIT6800 +EDIT6800 +- +a:wg21-edit6801 +WG21-EDIT6801 +EDIT6801 +- +a:wg21-edit6802 +WG21-EDIT6802 +EDIT6802 +- +a:wg21-edit6803 +WG21-EDIT6803 +EDIT6803 +- +a:wg21-edit6804 +WG21-EDIT6804 +EDIT6804 +- +a:wg21-edit6805 +WG21-EDIT6805 +EDIT6805 +- +a:wg21-edit6806 +WG21-EDIT6806 +EDIT6806 +- +a:wg21-edit6807 +WG21-EDIT6807 +EDIT6807 +- +a:wg21-edit6808 +WG21-EDIT6808 +EDIT6808 +- +a:wg21-edit6809 +WG21-EDIT6809 +EDIT6809 +- a:wg21-edit681 WG21-EDIT681 EDIT681 - +a:wg21-edit6810 +WG21-EDIT6810 +EDIT6810 +- +a:wg21-edit6811 +WG21-EDIT6811 +EDIT6811 +- +a:wg21-edit6812 +WG21-EDIT6812 +EDIT6812 +- +a:wg21-edit6813 +WG21-EDIT6813 +EDIT6813 +- +a:wg21-edit6814 +WG21-EDIT6814 +EDIT6814 +- +a:wg21-edit6815 +WG21-EDIT6815 +EDIT6815 +- +a:wg21-edit6816 +WG21-EDIT6816 +EDIT6816 +- +a:wg21-edit6817 +WG21-EDIT6817 +EDIT6817 +- +a:wg21-edit6818 +WG21-EDIT6818 +EDIT6818 +- +a:wg21-edit6819 +WG21-EDIT6819 +EDIT6819 +- a:wg21-edit682 WG21-EDIT682 EDIT682 - +a:wg21-edit6820 +WG21-EDIT6820 +EDIT6820 +- +a:wg21-edit6821 +WG21-EDIT6821 +EDIT6821 +- +a:wg21-edit6822 +WG21-EDIT6822 +EDIT6822 +- +a:wg21-edit6823 +WG21-EDIT6823 +EDIT6823 +- +a:wg21-edit6824 +WG21-EDIT6824 +EDIT6824 +- +a:wg21-edit6825 +WG21-EDIT6825 +EDIT6825 +- +a:wg21-edit6826 +WG21-EDIT6826 +EDIT6826 +- +a:wg21-edit6827 +WG21-EDIT6827 +EDIT6827 +- +a:wg21-edit6828 +WG21-EDIT6828 +EDIT6828 +- +a:wg21-edit6829 +WG21-EDIT6829 +EDIT6829 +- a:wg21-edit683 WG21-EDIT683 EDIT683 - +a:wg21-edit6830 +WG21-EDIT6830 +EDIT6830 +- +a:wg21-edit6831 +WG21-EDIT6831 +EDIT6831 +- +a:wg21-edit6832 +WG21-EDIT6832 +EDIT6832 +- +a:wg21-edit6833 +WG21-EDIT6833 +EDIT6833 +- +a:wg21-edit6834 +WG21-EDIT6834 +EDIT6834 +- +a:wg21-edit6835 +WG21-EDIT6835 +EDIT6835 +- +a:wg21-edit6836 +WG21-EDIT6836 +EDIT6836 +- +a:wg21-edit6837 +WG21-EDIT6837 +EDIT6837 +- +a:wg21-edit6838 +WG21-EDIT6838 +EDIT6838 +- +a:wg21-edit6839 +WG21-EDIT6839 +EDIT6839 +- a:wg21-edit684 WG21-EDIT684 EDIT684 - +a:wg21-edit6840 +WG21-EDIT6840 +EDIT6840 +- +a:wg21-edit6841 +WG21-EDIT6841 +EDIT6841 +- +a:wg21-edit6842 +WG21-EDIT6842 +EDIT6842 +- +a:wg21-edit6843 +WG21-EDIT6843 +EDIT6843 +- +a:wg21-edit6844 +WG21-EDIT6844 +EDIT6844 +- +a:wg21-edit6845 +WG21-EDIT6845 +EDIT6845 +- +a:wg21-edit6846 +WG21-EDIT6846 +EDIT6846 +- +a:wg21-edit6847 +WG21-EDIT6847 +EDIT6847 +- +a:wg21-edit6848 +WG21-EDIT6848 +EDIT6848 +- +a:wg21-edit6849 +WG21-EDIT6849 +EDIT6849 +- a:wg21-edit685 WG21-EDIT685 EDIT685 - +a:wg21-edit6850 +WG21-EDIT6850 +EDIT6850 +- +a:wg21-edit6851 +WG21-EDIT6851 +EDIT6851 +- +a:wg21-edit6852 +WG21-EDIT6852 +EDIT6852 +- +a:wg21-edit6853 +WG21-EDIT6853 +EDIT6853 +- +a:wg21-edit6854 +WG21-EDIT6854 +EDIT6854 +- +a:wg21-edit6855 +WG21-EDIT6855 +EDIT6855 +- +a:wg21-edit6856 +WG21-EDIT6856 +EDIT6856 +- +a:wg21-edit6857 +WG21-EDIT6857 +EDIT6857 +- +a:wg21-edit6858 +WG21-EDIT6858 +EDIT6858 +- +a:wg21-edit6859 +WG21-EDIT6859 +EDIT6859 +- a:wg21-edit686 WG21-EDIT686 EDIT686 - +a:wg21-edit6860 +WG21-EDIT6860 +EDIT6860 +- +a:wg21-edit6861 +WG21-EDIT6861 +EDIT6861 +- +a:wg21-edit6862 +WG21-EDIT6862 +EDIT6862 +- +a:wg21-edit6863 +WG21-EDIT6863 +EDIT6863 +- +a:wg21-edit6864 +WG21-EDIT6864 +EDIT6864 +- +a:wg21-edit6865 +WG21-EDIT6865 +EDIT6865 +- +a:wg21-edit6866 +WG21-EDIT6866 +EDIT6866 +- +a:wg21-edit6867 +WG21-EDIT6867 +EDIT6867 +- +a:wg21-edit6868 +WG21-EDIT6868 +EDIT6868 +- +a:wg21-edit6869 +WG21-EDIT6869 +EDIT6869 +- a:wg21-edit687 WG21-EDIT687 EDIT687 - +a:wg21-edit6870 +WG21-EDIT6870 +EDIT6870 +- +a:wg21-edit6871 +WG21-EDIT6871 +EDIT6871 +- +a:wg21-edit6872 +WG21-EDIT6872 +EDIT6872 +- +a:wg21-edit6873 +WG21-EDIT6873 +EDIT6873 +- +a:wg21-edit6874 +WG21-EDIT6874 +EDIT6874 +- +a:wg21-edit6875 +WG21-EDIT6875 +EDIT6875 +- +a:wg21-edit6876 +WG21-EDIT6876 +EDIT6876 +- +a:wg21-edit6877 +WG21-EDIT6877 +EDIT6877 +- +a:wg21-edit6878 +WG21-EDIT6878 +EDIT6878 +- +a:wg21-edit6879 +WG21-EDIT6879 +EDIT6879 +- a:wg21-edit688 WG21-EDIT688 EDIT688 - +a:wg21-edit6880 +WG21-EDIT6880 +EDIT6880 +- +a:wg21-edit6881 +WG21-EDIT6881 +EDIT6881 +- +a:wg21-edit6882 +WG21-EDIT6882 +EDIT6882 +- +a:wg21-edit6883 +WG21-EDIT6883 +EDIT6883 +- +a:wg21-edit6884 +WG21-EDIT6884 +EDIT6884 +- +a:wg21-edit6885 +WG21-EDIT6885 +EDIT6885 +- +a:wg21-edit6886 +WG21-EDIT6886 +EDIT6886 +- +a:wg21-edit6887 +WG21-EDIT6887 +EDIT6887 +- +a:wg21-edit6888 +WG21-EDIT6888 +EDIT6888 +- +a:wg21-edit6889 +WG21-EDIT6889 +EDIT6889 +- a:wg21-edit689 WG21-EDIT689 EDIT689 - +a:wg21-edit6890 +WG21-EDIT6890 +EDIT6890 +- +a:wg21-edit6891 +WG21-EDIT6891 +EDIT6891 +- +a:wg21-edit6892 +WG21-EDIT6892 +EDIT6892 +- +a:wg21-edit6893 +WG21-EDIT6893 +EDIT6893 +- +a:wg21-edit6894 +WG21-EDIT6894 +EDIT6894 +- +a:wg21-edit6895 +WG21-EDIT6895 +EDIT6895 +- +a:wg21-edit6896 +WG21-EDIT6896 +EDIT6896 +- +a:wg21-edit6897 +WG21-EDIT6897 +EDIT6897 +- +a:wg21-edit6898 +WG21-EDIT6898 +EDIT6898 +- +a:wg21-edit6899 +WG21-EDIT6899 +EDIT6899 +- a:wg21-edit69 WG21-EDIT69 EDIT69 @@ -35438,42 +39918,442 @@ a:wg21-edit690 WG21-EDIT690 EDIT690 - +a:wg21-edit6900 +WG21-EDIT6900 +EDIT6900 +- +a:wg21-edit6901 +WG21-EDIT6901 +EDIT6901 +- +a:wg21-edit6902 +WG21-EDIT6902 +EDIT6902 +- +a:wg21-edit6903 +WG21-EDIT6903 +EDIT6903 +- +a:wg21-edit6904 +WG21-EDIT6904 +EDIT6904 +- +a:wg21-edit6905 +WG21-EDIT6905 +EDIT6905 +- +a:wg21-edit6906 +WG21-EDIT6906 +EDIT6906 +- +a:wg21-edit6907 +WG21-EDIT6907 +EDIT6907 +- +a:wg21-edit6908 +WG21-EDIT6908 +EDIT6908 +- +a:wg21-edit6909 +WG21-EDIT6909 +EDIT6909 +- a:wg21-edit691 WG21-EDIT691 EDIT691 - +a:wg21-edit6910 +WG21-EDIT6910 +EDIT6910 +- +a:wg21-edit6911 +WG21-EDIT6911 +EDIT6911 +- +a:wg21-edit6912 +WG21-EDIT6912 +EDIT6912 +- +a:wg21-edit6913 +WG21-EDIT6913 +EDIT6913 +- +a:wg21-edit6914 +WG21-EDIT6914 +EDIT6914 +- +a:wg21-edit6915 +WG21-EDIT6915 +EDIT6915 +- +a:wg21-edit6916 +WG21-EDIT6916 +EDIT6916 +- +a:wg21-edit6917 +WG21-EDIT6917 +EDIT6917 +- +a:wg21-edit6918 +WG21-EDIT6918 +EDIT6918 +- +a:wg21-edit6919 +WG21-EDIT6919 +EDIT6919 +- a:wg21-edit692 WG21-EDIT692 EDIT692 - +a:wg21-edit6920 +WG21-EDIT6920 +EDIT6920 +- +a:wg21-edit6921 +WG21-EDIT6921 +EDIT6921 +- +a:wg21-edit6922 +WG21-EDIT6922 +EDIT6922 +- +a:wg21-edit6923 +WG21-EDIT6923 +EDIT6923 +- +a:wg21-edit6924 +WG21-EDIT6924 +EDIT6924 +- +a:wg21-edit6925 +WG21-EDIT6925 +EDIT6925 +- +a:wg21-edit6926 +WG21-EDIT6926 +EDIT6926 +- +a:wg21-edit6927 +WG21-EDIT6927 +EDIT6927 +- +a:wg21-edit6928 +WG21-EDIT6928 +EDIT6928 +- +a:wg21-edit6929 +WG21-EDIT6929 +EDIT6929 +- a:wg21-edit693 WG21-EDIT693 EDIT693 - +a:wg21-edit6930 +WG21-EDIT6930 +EDIT6930 +- +a:wg21-edit6931 +WG21-EDIT6931 +EDIT6931 +- +a:wg21-edit6932 +WG21-EDIT6932 +EDIT6932 +- +a:wg21-edit6933 +WG21-EDIT6933 +EDIT6933 +- +a:wg21-edit6934 +WG21-EDIT6934 +EDIT6934 +- +a:wg21-edit6935 +WG21-EDIT6935 +EDIT6935 +- +a:wg21-edit6936 +WG21-EDIT6936 +EDIT6936 +- +a:wg21-edit6937 +WG21-EDIT6937 +EDIT6937 +- +a:wg21-edit6938 +WG21-EDIT6938 +EDIT6938 +- +a:wg21-edit6939 +WG21-EDIT6939 +EDIT6939 +- a:wg21-edit694 WG21-EDIT694 EDIT694 - +a:wg21-edit6940 +WG21-EDIT6940 +EDIT6940 +- +a:wg21-edit6941 +WG21-EDIT6941 +EDIT6941 +- +a:wg21-edit6942 +WG21-EDIT6942 +EDIT6942 +- +a:wg21-edit6943 +WG21-EDIT6943 +EDIT6943 +- +a:wg21-edit6944 +WG21-EDIT6944 +EDIT6944 +- +a:wg21-edit6945 +WG21-EDIT6945 +EDIT6945 +- +a:wg21-edit6946 +WG21-EDIT6946 +EDIT6946 +- +a:wg21-edit6947 +WG21-EDIT6947 +EDIT6947 +- +a:wg21-edit6948 +WG21-EDIT6948 +EDIT6948 +- +a:wg21-edit6949 +WG21-EDIT6949 +EDIT6949 +- a:wg21-edit695 WG21-EDIT695 EDIT695 - +a:wg21-edit6950 +WG21-EDIT6950 +EDIT6950 +- +a:wg21-edit6951 +WG21-EDIT6951 +EDIT6951 +- +a:wg21-edit6952 +WG21-EDIT6952 +EDIT6952 +- +a:wg21-edit6953 +WG21-EDIT6953 +EDIT6953 +- +a:wg21-edit6954 +WG21-EDIT6954 +EDIT6954 +- +a:wg21-edit6955 +WG21-EDIT6955 +EDIT6955 +- +a:wg21-edit6956 +WG21-EDIT6956 +EDIT6956 +- +a:wg21-edit6957 +WG21-EDIT6957 +EDIT6957 +- +a:wg21-edit6958 +WG21-EDIT6958 +EDIT6958 +- +a:wg21-edit6959 +WG21-EDIT6959 +EDIT6959 +- a:wg21-edit696 WG21-EDIT696 EDIT696 - +a:wg21-edit6960 +WG21-EDIT6960 +EDIT6960 +- +a:wg21-edit6961 +WG21-EDIT6961 +EDIT6961 +- +a:wg21-edit6962 +WG21-EDIT6962 +EDIT6962 +- +a:wg21-edit6963 +WG21-EDIT6963 +EDIT6963 +- +a:wg21-edit6964 +WG21-EDIT6964 +EDIT6964 +- +a:wg21-edit6965 +WG21-EDIT6965 +EDIT6965 +- +a:wg21-edit6966 +WG21-EDIT6966 +EDIT6966 +- +a:wg21-edit6967 +WG21-EDIT6967 +EDIT6967 +- +a:wg21-edit6968 +WG21-EDIT6968 +EDIT6968 +- +a:wg21-edit6969 +WG21-EDIT6969 +EDIT6969 +- a:wg21-edit697 WG21-EDIT697 EDIT697 - +a:wg21-edit6970 +WG21-EDIT6970 +EDIT6970 +- +a:wg21-edit6971 +WG21-EDIT6971 +EDIT6971 +- +a:wg21-edit6972 +WG21-EDIT6972 +EDIT6972 +- +a:wg21-edit6973 +WG21-EDIT6973 +EDIT6973 +- +a:wg21-edit6974 +WG21-EDIT6974 +EDIT6974 +- +a:wg21-edit6975 +WG21-EDIT6975 +EDIT6975 +- +a:wg21-edit6976 +WG21-EDIT6976 +EDIT6976 +- +a:wg21-edit6977 +WG21-EDIT6977 +EDIT6977 +- +a:wg21-edit6978 +WG21-EDIT6978 +EDIT6978 +- +a:wg21-edit6979 +WG21-EDIT6979 +EDIT6979 +- a:wg21-edit698 WG21-EDIT698 EDIT698 - +a:wg21-edit6980 +WG21-EDIT6980 +EDIT6980 +- +a:wg21-edit6981 +WG21-EDIT6981 +EDIT6981 +- +a:wg21-edit6982 +WG21-EDIT6982 +EDIT6982 +- +a:wg21-edit6983 +WG21-EDIT6983 +EDIT6983 +- +a:wg21-edit6984 +WG21-EDIT6984 +EDIT6984 +- +a:wg21-edit6985 +WG21-EDIT6985 +EDIT6985 +- +a:wg21-edit6986 +WG21-EDIT6986 +EDIT6986 +- +a:wg21-edit6987 +WG21-EDIT6987 +EDIT6987 +- +a:wg21-edit6988 +WG21-EDIT6988 +EDIT6988 +- +a:wg21-edit6989 +WG21-EDIT6989 +EDIT6989 +- a:wg21-edit699 WG21-EDIT699 EDIT699 - +a:wg21-edit6990 +WG21-EDIT6990 +EDIT6990 +- +a:wg21-edit6991 +WG21-EDIT6991 +EDIT6991 +- +a:wg21-edit6992 +WG21-EDIT6992 +EDIT6992 +- +a:wg21-edit6993 +WG21-EDIT6993 +EDIT6993 +- +a:wg21-edit6994 +WG21-EDIT6994 +EDIT6994 +- +a:wg21-edit6995 +WG21-EDIT6995 +EDIT6995 +- +a:wg21-edit6996 +WG21-EDIT6996 +EDIT6996 +- +a:wg21-edit6997 +WG21-EDIT6997 +EDIT6997 +- +a:wg21-edit6998 +WG21-EDIT6998 +EDIT6998 +- +a:wg21-edit6999 +WG21-EDIT6999 +EDIT6999 +- a:wg21-edit7 WG21-EDIT7 EDIT7 @@ -35486,41 +40366,441 @@ a:wg21-edit700 WG21-EDIT700 EDIT700 - +a:wg21-edit7000 +WG21-EDIT7000 +EDIT7000 +- +a:wg21-edit7001 +WG21-EDIT7001 +EDIT7001 +- +a:wg21-edit7002 +WG21-EDIT7002 +EDIT7002 +- +a:wg21-edit7003 +WG21-EDIT7003 +EDIT7003 +- +a:wg21-edit7004 +WG21-EDIT7004 +EDIT7004 +- +a:wg21-edit7005 +WG21-EDIT7005 +EDIT7005 +- +a:wg21-edit7006 +WG21-EDIT7006 +EDIT7006 +- +a:wg21-edit7007 +WG21-EDIT7007 +EDIT7007 +- +a:wg21-edit7008 +WG21-EDIT7008 +EDIT7008 +- +a:wg21-edit7009 +WG21-EDIT7009 +EDIT7009 +- a:wg21-edit701 WG21-EDIT701 EDIT701 - +a:wg21-edit7010 +WG21-EDIT7010 +EDIT7010 +- +a:wg21-edit7011 +WG21-EDIT7011 +EDIT7011 +- +a:wg21-edit7012 +WG21-EDIT7012 +EDIT7012 +- +a:wg21-edit7013 +WG21-EDIT7013 +EDIT7013 +- +a:wg21-edit7014 +WG21-EDIT7014 +EDIT7014 +- +a:wg21-edit7015 +WG21-EDIT7015 +EDIT7015 +- +a:wg21-edit7016 +WG21-EDIT7016 +EDIT7016 +- +a:wg21-edit7017 +WG21-EDIT7017 +EDIT7017 +- +a:wg21-edit7018 +WG21-EDIT7018 +EDIT7018 +- +a:wg21-edit7019 +WG21-EDIT7019 +EDIT7019 +- a:wg21-edit702 WG21-EDIT702 EDIT702 - +a:wg21-edit7020 +WG21-EDIT7020 +EDIT7020 +- +a:wg21-edit7021 +WG21-EDIT7021 +EDIT7021 +- +a:wg21-edit7022 +WG21-EDIT7022 +EDIT7022 +- +a:wg21-edit7023 +WG21-EDIT7023 +EDIT7023 +- +a:wg21-edit7024 +WG21-EDIT7024 +EDIT7024 +- +a:wg21-edit7025 +WG21-EDIT7025 +EDIT7025 +- +a:wg21-edit7026 +WG21-EDIT7026 +EDIT7026 +- +a:wg21-edit7027 +WG21-EDIT7027 +EDIT7027 +- +a:wg21-edit7028 +WG21-EDIT7028 +EDIT7028 +- +a:wg21-edit7029 +WG21-EDIT7029 +EDIT7029 +- a:wg21-edit703 WG21-EDIT703 EDIT703 - +a:wg21-edit7030 +WG21-EDIT7030 +EDIT7030 +- +a:wg21-edit7031 +WG21-EDIT7031 +EDIT7031 +- +a:wg21-edit7032 +WG21-EDIT7032 +EDIT7032 +- +a:wg21-edit7033 +WG21-EDIT7033 +EDIT7033 +- +a:wg21-edit7034 +WG21-EDIT7034 +EDIT7034 +- +a:wg21-edit7035 +WG21-EDIT7035 +EDIT7035 +- +a:wg21-edit7036 +WG21-EDIT7036 +EDIT7036 +- +a:wg21-edit7037 +WG21-EDIT7037 +EDIT7037 +- +a:wg21-edit7038 +WG21-EDIT7038 +EDIT7038 +- +a:wg21-edit7039 +WG21-EDIT7039 +EDIT7039 +- a:wg21-edit704 WG21-EDIT704 EDIT704 - +a:wg21-edit7040 +WG21-EDIT7040 +EDIT7040 +- +a:wg21-edit7041 +WG21-EDIT7041 +EDIT7041 +- +a:wg21-edit7042 +WG21-EDIT7042 +EDIT7042 +- +a:wg21-edit7043 +WG21-EDIT7043 +EDIT7043 +- +a:wg21-edit7044 +WG21-EDIT7044 +EDIT7044 +- +a:wg21-edit7045 +WG21-EDIT7045 +EDIT7045 +- +a:wg21-edit7046 +WG21-EDIT7046 +EDIT7046 +- +a:wg21-edit7047 +WG21-EDIT7047 +EDIT7047 +- +a:wg21-edit7048 +WG21-EDIT7048 +EDIT7048 +- +a:wg21-edit7049 +WG21-EDIT7049 +EDIT7049 +- a:wg21-edit705 WG21-EDIT705 EDIT705 - -a:wg21-edit706 -WG21-EDIT706 -EDIT706 +a:wg21-edit7050 +WG21-EDIT7050 +EDIT7050 - -a:wg21-edit707 -WG21-EDIT707 -EDIT707 +a:wg21-edit7051 +WG21-EDIT7051 +EDIT7051 - -a:wg21-edit708 -WG21-EDIT708 -EDIT708 +a:wg21-edit7052 +WG21-EDIT7052 +EDIT7052 - -a:wg21-edit709 -WG21-EDIT709 -EDIT709 +a:wg21-edit7053 +WG21-EDIT7053 +EDIT7053 +- +a:wg21-edit7054 +WG21-EDIT7054 +EDIT7054 +- +a:wg21-edit7055 +WG21-EDIT7055 +EDIT7055 +- +a:wg21-edit7056 +WG21-EDIT7056 +EDIT7056 +- +a:wg21-edit7057 +WG21-EDIT7057 +EDIT7057 +- +a:wg21-edit7058 +WG21-EDIT7058 +EDIT7058 +- +a:wg21-edit7059 +WG21-EDIT7059 +EDIT7059 +- +a:wg21-edit706 +WG21-EDIT706 +EDIT706 +- +a:wg21-edit7060 +WG21-EDIT7060 +EDIT7060 +- +a:wg21-edit7061 +WG21-EDIT7061 +EDIT7061 +- +a:wg21-edit7062 +WG21-EDIT7062 +EDIT7062 +- +a:wg21-edit7063 +WG21-EDIT7063 +EDIT7063 +- +a:wg21-edit7064 +WG21-EDIT7064 +EDIT7064 +- +a:wg21-edit7065 +WG21-EDIT7065 +EDIT7065 +- +a:wg21-edit7066 +WG21-EDIT7066 +EDIT7066 +- +a:wg21-edit7067 +WG21-EDIT7067 +EDIT7067 +- +a:wg21-edit7068 +WG21-EDIT7068 +EDIT7068 +- +a:wg21-edit7069 +WG21-EDIT7069 +EDIT7069 +- +a:wg21-edit707 +WG21-EDIT707 +EDIT707 +- +a:wg21-edit7070 +WG21-EDIT7070 +EDIT7070 +- +a:wg21-edit7071 +WG21-EDIT7071 +EDIT7071 +- +a:wg21-edit7072 +WG21-EDIT7072 +EDIT7072 +- +a:wg21-edit7073 +WG21-EDIT7073 +EDIT7073 +- +a:wg21-edit7074 +WG21-EDIT7074 +EDIT7074 +- +a:wg21-edit7075 +WG21-EDIT7075 +EDIT7075 +- +a:wg21-edit7076 +WG21-EDIT7076 +EDIT7076 +- +a:wg21-edit7077 +WG21-EDIT7077 +EDIT7077 +- +a:wg21-edit7078 +WG21-EDIT7078 +EDIT7078 +- +a:wg21-edit7079 +WG21-EDIT7079 +EDIT7079 +- +a:wg21-edit708 +WG21-EDIT708 +EDIT708 +- +a:wg21-edit7080 +WG21-EDIT7080 +EDIT7080 +- +a:wg21-edit7081 +WG21-EDIT7081 +EDIT7081 +- +a:wg21-edit7082 +WG21-EDIT7082 +EDIT7082 +- +a:wg21-edit7083 +WG21-EDIT7083 +EDIT7083 +- +a:wg21-edit7084 +WG21-EDIT7084 +EDIT7084 +- +a:wg21-edit7085 +WG21-EDIT7085 +EDIT7085 +- +a:wg21-edit7086 +WG21-EDIT7086 +EDIT7086 +- +a:wg21-edit7087 +WG21-EDIT7087 +EDIT7087 +- +a:wg21-edit7088 +WG21-EDIT7088 +EDIT7088 +- +a:wg21-edit7089 +WG21-EDIT7089 +EDIT7089 +- +a:wg21-edit709 +WG21-EDIT709 +EDIT709 +- +a:wg21-edit7090 +WG21-EDIT7090 +EDIT7090 +- +a:wg21-edit7091 +WG21-EDIT7091 +EDIT7091 +- +a:wg21-edit7092 +WG21-EDIT7092 +EDIT7092 +- +a:wg21-edit7093 +WG21-EDIT7093 +EDIT7093 +- +a:wg21-edit7094 +WG21-EDIT7094 +EDIT7094 +- +a:wg21-edit7095 +WG21-EDIT7095 +EDIT7095 +- +a:wg21-edit7096 +WG21-EDIT7096 +EDIT7096 +- +a:wg21-edit7097 +WG21-EDIT7097 +EDIT7097 +- +a:wg21-edit7098 +WG21-EDIT7098 +EDIT7098 +- +a:wg21-edit7099 +WG21-EDIT7099 +EDIT7099 - a:wg21-edit71 WG21-EDIT71 @@ -35530,42 +40810,442 @@ a:wg21-edit710 WG21-EDIT710 EDIT710 - +a:wg21-edit7100 +WG21-EDIT7100 +EDIT7100 +- +a:wg21-edit7101 +WG21-EDIT7101 +EDIT7101 +- +a:wg21-edit7102 +WG21-EDIT7102 +EDIT7102 +- +a:wg21-edit7103 +WG21-EDIT7103 +EDIT7103 +- +a:wg21-edit7104 +WG21-EDIT7104 +EDIT7104 +- +a:wg21-edit7105 +WG21-EDIT7105 +EDIT7105 +- +a:wg21-edit7106 +WG21-EDIT7106 +EDIT7106 +- +a:wg21-edit7107 +WG21-EDIT7107 +EDIT7107 +- +a:wg21-edit7108 +WG21-EDIT7108 +EDIT7108 +- +a:wg21-edit7109 +WG21-EDIT7109 +EDIT7109 +- a:wg21-edit711 WG21-EDIT711 EDIT711 - +a:wg21-edit7110 +WG21-EDIT7110 +EDIT7110 +- +a:wg21-edit7111 +WG21-EDIT7111 +EDIT7111 +- +a:wg21-edit7112 +WG21-EDIT7112 +EDIT7112 +- +a:wg21-edit7113 +WG21-EDIT7113 +EDIT7113 +- +a:wg21-edit7114 +WG21-EDIT7114 +EDIT7114 +- +a:wg21-edit7115 +WG21-EDIT7115 +EDIT7115 +- +a:wg21-edit7116 +WG21-EDIT7116 +EDIT7116 +- +a:wg21-edit7117 +WG21-EDIT7117 +EDIT7117 +- +a:wg21-edit7118 +WG21-EDIT7118 +EDIT7118 +- +a:wg21-edit7119 +WG21-EDIT7119 +EDIT7119 +- a:wg21-edit712 WG21-EDIT712 EDIT712 - +a:wg21-edit7120 +WG21-EDIT7120 +EDIT7120 +- +a:wg21-edit7121 +WG21-EDIT7121 +EDIT7121 +- +a:wg21-edit7122 +WG21-EDIT7122 +EDIT7122 +- +a:wg21-edit7123 +WG21-EDIT7123 +EDIT7123 +- +a:wg21-edit7124 +WG21-EDIT7124 +EDIT7124 +- +a:wg21-edit7125 +WG21-EDIT7125 +EDIT7125 +- +a:wg21-edit7126 +WG21-EDIT7126 +EDIT7126 +- +a:wg21-edit7127 +WG21-EDIT7127 +EDIT7127 +- +a:wg21-edit7128 +WG21-EDIT7128 +EDIT7128 +- +a:wg21-edit7129 +WG21-EDIT7129 +EDIT7129 +- a:wg21-edit713 WG21-EDIT713 EDIT713 - +a:wg21-edit7130 +WG21-EDIT7130 +EDIT7130 +- +a:wg21-edit7131 +WG21-EDIT7131 +EDIT7131 +- +a:wg21-edit7132 +WG21-EDIT7132 +EDIT7132 +- +a:wg21-edit7133 +WG21-EDIT7133 +EDIT7133 +- +a:wg21-edit7134 +WG21-EDIT7134 +EDIT7134 +- +a:wg21-edit7135 +WG21-EDIT7135 +EDIT7135 +- +a:wg21-edit7136 +WG21-EDIT7136 +EDIT7136 +- +a:wg21-edit7137 +WG21-EDIT7137 +EDIT7137 +- +a:wg21-edit7138 +WG21-EDIT7138 +EDIT7138 +- +a:wg21-edit7139 +WG21-EDIT7139 +EDIT7139 +- a:wg21-edit714 WG21-EDIT714 EDIT714 - +a:wg21-edit7140 +WG21-EDIT7140 +EDIT7140 +- +a:wg21-edit7141 +WG21-EDIT7141 +EDIT7141 +- +a:wg21-edit7142 +WG21-EDIT7142 +EDIT7142 +- +a:wg21-edit7143 +WG21-EDIT7143 +EDIT7143 +- +a:wg21-edit7144 +WG21-EDIT7144 +EDIT7144 +- +a:wg21-edit7145 +WG21-EDIT7145 +EDIT7145 +- +a:wg21-edit7146 +WG21-EDIT7146 +EDIT7146 +- +a:wg21-edit7147 +WG21-EDIT7147 +EDIT7147 +- +a:wg21-edit7148 +WG21-EDIT7148 +EDIT7148 +- +a:wg21-edit7149 +WG21-EDIT7149 +EDIT7149 +- a:wg21-edit715 WG21-EDIT715 EDIT715 - +a:wg21-edit7150 +WG21-EDIT7150 +EDIT7150 +- +a:wg21-edit7151 +WG21-EDIT7151 +EDIT7151 +- +a:wg21-edit7152 +WG21-EDIT7152 +EDIT7152 +- +a:wg21-edit7153 +WG21-EDIT7153 +EDIT7153 +- +a:wg21-edit7154 +WG21-EDIT7154 +EDIT7154 +- +a:wg21-edit7155 +WG21-EDIT7155 +EDIT7155 +- +a:wg21-edit7156 +WG21-EDIT7156 +EDIT7156 +- +a:wg21-edit7157 +WG21-EDIT7157 +EDIT7157 +- +a:wg21-edit7158 +WG21-EDIT7158 +EDIT7158 +- +a:wg21-edit7159 +WG21-EDIT7159 +EDIT7159 +- a:wg21-edit716 WG21-EDIT716 EDIT716 - +a:wg21-edit7160 +WG21-EDIT7160 +EDIT7160 +- +a:wg21-edit7161 +WG21-EDIT7161 +EDIT7161 +- +a:wg21-edit7162 +WG21-EDIT7162 +EDIT7162 +- +a:wg21-edit7163 +WG21-EDIT7163 +EDIT7163 +- +a:wg21-edit7164 +WG21-EDIT7164 +EDIT7164 +- +a:wg21-edit7165 +WG21-EDIT7165 +EDIT7165 +- +a:wg21-edit7166 +WG21-EDIT7166 +EDIT7166 +- +a:wg21-edit7167 +WG21-EDIT7167 +EDIT7167 +- +a:wg21-edit7168 +WG21-EDIT7168 +EDIT7168 +- +a:wg21-edit7169 +WG21-EDIT7169 +EDIT7169 +- a:wg21-edit717 WG21-EDIT717 EDIT717 - +a:wg21-edit7170 +WG21-EDIT7170 +EDIT7170 +- +a:wg21-edit7171 +WG21-EDIT7171 +EDIT7171 +- +a:wg21-edit7172 +WG21-EDIT7172 +EDIT7172 +- +a:wg21-edit7173 +WG21-EDIT7173 +EDIT7173 +- +a:wg21-edit7174 +WG21-EDIT7174 +EDIT7174 +- +a:wg21-edit7175 +WG21-EDIT7175 +EDIT7175 +- +a:wg21-edit7176 +WG21-EDIT7176 +EDIT7176 +- +a:wg21-edit7177 +WG21-EDIT7177 +EDIT7177 +- +a:wg21-edit7178 +WG21-EDIT7178 +EDIT7178 +- +a:wg21-edit7179 +WG21-EDIT7179 +EDIT7179 +- a:wg21-edit718 WG21-EDIT718 EDIT718 - +a:wg21-edit7180 +WG21-EDIT7180 +EDIT7180 +- +a:wg21-edit7181 +WG21-EDIT7181 +EDIT7181 +- +a:wg21-edit7182 +WG21-EDIT7182 +EDIT7182 +- +a:wg21-edit7183 +WG21-EDIT7183 +EDIT7183 +- +a:wg21-edit7184 +WG21-EDIT7184 +EDIT7184 +- +a:wg21-edit7185 +WG21-EDIT7185 +EDIT7185 +- +a:wg21-edit7186 +WG21-EDIT7186 +EDIT7186 +- +a:wg21-edit7187 +WG21-EDIT7187 +EDIT7187 +- +a:wg21-edit7188 +WG21-EDIT7188 +EDIT7188 +- +a:wg21-edit7189 +WG21-EDIT7189 +EDIT7189 +- a:wg21-edit719 WG21-EDIT719 EDIT719 - +a:wg21-edit7190 +WG21-EDIT7190 +EDIT7190 +- +a:wg21-edit7191 +WG21-EDIT7191 +EDIT7191 +- +a:wg21-edit7192 +WG21-EDIT7192 +EDIT7192 +- +a:wg21-edit7193 +WG21-EDIT7193 +EDIT7193 +- +a:wg21-edit7194 +WG21-EDIT7194 +EDIT7194 +- +a:wg21-edit7195 +WG21-EDIT7195 +EDIT7195 +- +a:wg21-edit7196 +WG21-EDIT7196 +EDIT7196 +- +a:wg21-edit7197 +WG21-EDIT7197 +EDIT7197 +- +a:wg21-edit7198 +WG21-EDIT7198 +EDIT7198 +- +a:wg21-edit7199 +WG21-EDIT7199 +EDIT7199 +- a:wg21-edit72 WG21-EDIT72 EDIT72 @@ -35574,22 +41254,202 @@ a:wg21-edit720 WG21-EDIT720 EDIT720 - +a:wg21-edit7200 +WG21-EDIT7200 +EDIT7200 +- +a:wg21-edit7201 +WG21-EDIT7201 +EDIT7201 +- +a:wg21-edit7202 +WG21-EDIT7202 +EDIT7202 +- +a:wg21-edit7203 +WG21-EDIT7203 +EDIT7203 +- +a:wg21-edit7204 +WG21-EDIT7204 +EDIT7204 +- +a:wg21-edit7205 +WG21-EDIT7205 +EDIT7205 +- +a:wg21-edit7206 +WG21-EDIT7206 +EDIT7206 +- +a:wg21-edit7207 +WG21-EDIT7207 +EDIT7207 +- +a:wg21-edit7208 +WG21-EDIT7208 +EDIT7208 +- +a:wg21-edit7209 +WG21-EDIT7209 +EDIT7209 +- a:wg21-edit721 WG21-EDIT721 EDIT721 - +a:wg21-edit7210 +WG21-EDIT7210 +EDIT7210 +- +a:wg21-edit7211 +WG21-EDIT7211 +EDIT7211 +- +a:wg21-edit7212 +WG21-EDIT7212 +EDIT7212 +- +a:wg21-edit7213 +WG21-EDIT7213 +EDIT7213 +- +a:wg21-edit7214 +WG21-EDIT7214 +EDIT7214 +- +a:wg21-edit7215 +WG21-EDIT7215 +EDIT7215 +- +a:wg21-edit7216 +WG21-EDIT7216 +EDIT7216 +- +a:wg21-edit7217 +WG21-EDIT7217 +EDIT7217 +- +a:wg21-edit7218 +WG21-EDIT7218 +EDIT7218 +- +a:wg21-edit7219 +WG21-EDIT7219 +EDIT7219 +- a:wg21-edit722 WG21-EDIT722 EDIT722 - +a:wg21-edit7220 +WG21-EDIT7220 +EDIT7220 +- +a:wg21-edit7221 +WG21-EDIT7221 +EDIT7221 +- +a:wg21-edit7222 +WG21-EDIT7222 +EDIT7222 +- +a:wg21-edit7223 +WG21-EDIT7223 +EDIT7223 +- +a:wg21-edit7224 +WG21-EDIT7224 +EDIT7224 +- +a:wg21-edit7225 +WG21-EDIT7225 +EDIT7225 +- +a:wg21-edit7226 +WG21-EDIT7226 +EDIT7226 +- +a:wg21-edit7227 +WG21-EDIT7227 +EDIT7227 +- +a:wg21-edit7228 +WG21-EDIT7228 +EDIT7228 +- +a:wg21-edit7229 +WG21-EDIT7229 +EDIT7229 +- a:wg21-edit723 WG21-EDIT723 EDIT723 - +a:wg21-edit7230 +WG21-EDIT7230 +EDIT7230 +- +a:wg21-edit7231 +WG21-EDIT7231 +EDIT7231 +- +a:wg21-edit7232 +WG21-EDIT7232 +EDIT7232 +- +a:wg21-edit7233 +WG21-EDIT7233 +EDIT7233 +- +a:wg21-edit7234 +WG21-EDIT7234 +EDIT7234 +- +a:wg21-edit7235 +WG21-EDIT7235 +EDIT7235 +- +a:wg21-edit7236 +WG21-EDIT7236 +EDIT7236 +- +a:wg21-edit7237 +WG21-EDIT7237 +EDIT7237 +- +a:wg21-edit7238 +WG21-EDIT7238 +EDIT7238 +- +a:wg21-edit7239 +WG21-EDIT7239 +EDIT7239 +- a:wg21-edit724 WG21-EDIT724 EDIT724 - +a:wg21-edit7240 +WG21-EDIT7240 +EDIT7240 +- +a:wg21-edit7241 +WG21-EDIT7241 +EDIT7241 +- +a:wg21-edit7242 +WG21-EDIT7242 +EDIT7242 +- +a:wg21-edit7243 +WG21-EDIT7243 +EDIT7243 +- +a:wg21-edit7244 +WG21-EDIT7244 +EDIT7244 +- a:wg21-edit725 WG21-EDIT725 EDIT725 @@ -50762,22 +56622,190 @@ a:wg21-lwg3857 WG21-LWG3857 LWG3857 - +a:wg21-lwg3858 +WG21-LWG3858 +LWG3858 +- +a:wg21-lwg3859 +WG21-LWG3859 +LWG3859 +- a:wg21-lwg386 WG21-LWG386 LWG386 - +a:wg21-lwg3860 +WG21-LWG3860 +LWG3860 +- +a:wg21-lwg3861 +WG21-LWG3861 +LWG3861 +- +a:wg21-lwg3862 +WG21-LWG3862 +LWG3862 +- +a:wg21-lwg3863 +WG21-LWG3863 +LWG3863 +- +a:wg21-lwg3864 +WG21-LWG3864 +LWG3864 +- +a:wg21-lwg3865 +WG21-LWG3865 +LWG3865 +- +a:wg21-lwg3866 +WG21-LWG3866 +LWG3866 +- +a:wg21-lwg3867 +WG21-LWG3867 +LWG3867 +- +a:wg21-lwg3868 +WG21-LWG3868 +LWG3868 +- +a:wg21-lwg3869 +WG21-LWG3869 +LWG3869 +- a:wg21-lwg387 WG21-LWG387 LWG387 - +a:wg21-lwg3870 +WG21-LWG3870 +LWG3870 +- +a:wg21-lwg3871 +WG21-LWG3871 +LWG3871 +- +a:wg21-lwg3872 +WG21-LWG3872 +LWG3872 +- +a:wg21-lwg3873 +WG21-LWG3873 +LWG3873 +- +a:wg21-lwg3874 +WG21-LWG3874 +LWG3874 +- +a:wg21-lwg3875 +WG21-LWG3875 +LWG3875 +- +a:wg21-lwg3876 +WG21-LWG3876 +LWG3876 +- +a:wg21-lwg3877 +WG21-LWG3877 +LWG3877 +- +a:wg21-lwg3878 +WG21-LWG3878 +LWG3878 +- +a:wg21-lwg3879 +WG21-LWG3879 +LWG3879 +- a:wg21-lwg388 WG21-LWG388 LWG388 - +a:wg21-lwg3880 +WG21-LWG3880 +LWG3880 +- +a:wg21-lwg3881 +WG21-LWG3881 +LWG3881 +- +a:wg21-lwg3882 +WG21-LWG3882 +LWG3882 +- +a:wg21-lwg3883 +WG21-LWG3883 +LWG3883 +- +a:wg21-lwg3884 +WG21-LWG3884 +LWG3884 +- +a:wg21-lwg3885 +WG21-LWG3885 +LWG3885 +- +a:wg21-lwg3886 +WG21-LWG3886 +LWG3886 +- +a:wg21-lwg3887 +WG21-LWG3887 +LWG3887 +- +a:wg21-lwg3888 +WG21-LWG3888 +LWG3888 +- +a:wg21-lwg3889 +WG21-LWG3889 +LWG3889 +- a:wg21-lwg389 WG21-LWG389 LWG389 - +a:wg21-lwg3890 +WG21-LWG3890 +LWG3890 +- +a:wg21-lwg3891 +WG21-LWG3891 +LWG3891 +- +a:wg21-lwg3892 +WG21-LWG3892 +LWG3892 +- +a:wg21-lwg3893 +WG21-LWG3893 +LWG3893 +- +a:wg21-lwg3894 +WG21-LWG3894 +LWG3894 +- +a:wg21-lwg3895 +WG21-LWG3895 +LWG3895 +- +a:wg21-lwg3896 +WG21-LWG3896 +LWG3896 +- +a:wg21-lwg3897 +WG21-LWG3897 +LWG3897 +- +a:wg21-lwg3898 +WG21-LWG3898 +LWG3898 +- +a:wg21-lwg3899 +WG21-LWG3899 +LWG3899 +- a:wg21-lwg39 WG21-LWG39 LWG39 @@ -50786,42 +56814,442 @@ a:wg21-lwg390 WG21-LWG390 LWG390 - +a:wg21-lwg3900 +WG21-LWG3900 +LWG3900 +- +a:wg21-lwg3901 +WG21-LWG3901 +LWG3901 +- +a:wg21-lwg3902 +WG21-LWG3902 +LWG3902 +- +a:wg21-lwg3903 +WG21-LWG3903 +LWG3903 +- +a:wg21-lwg3904 +WG21-LWG3904 +LWG3904 +- +a:wg21-lwg3905 +WG21-LWG3905 +LWG3905 +- +a:wg21-lwg3906 +WG21-LWG3906 +LWG3906 +- +a:wg21-lwg3907 +WG21-LWG3907 +LWG3907 +- +a:wg21-lwg3908 +WG21-LWG3908 +LWG3908 +- +a:wg21-lwg3909 +WG21-LWG3909 +LWG3909 +- a:wg21-lwg391 WG21-LWG391 LWG391 - +a:wg21-lwg3910 +WG21-LWG3910 +LWG3910 +- +a:wg21-lwg3911 +WG21-LWG3911 +LWG3911 +- +a:wg21-lwg3912 +WG21-LWG3912 +LWG3912 +- +a:wg21-lwg3913 +WG21-LWG3913 +LWG3913 +- +a:wg21-lwg3914 +WG21-LWG3914 +LWG3914 +- +a:wg21-lwg3915 +WG21-LWG3915 +LWG3915 +- +a:wg21-lwg3916 +WG21-LWG3916 +LWG3916 +- +a:wg21-lwg3917 +WG21-LWG3917 +LWG3917 +- +a:wg21-lwg3918 +WG21-LWG3918 +LWG3918 +- +a:wg21-lwg3919 +WG21-LWG3919 +LWG3919 +- a:wg21-lwg392 WG21-LWG392 LWG392 - +a:wg21-lwg3920 +WG21-LWG3920 +LWG3920 +- +a:wg21-lwg3921 +WG21-LWG3921 +LWG3921 +- +a:wg21-lwg3922 +WG21-LWG3922 +LWG3922 +- +a:wg21-lwg3923 +WG21-LWG3923 +LWG3923 +- +a:wg21-lwg3924 +WG21-LWG3924 +LWG3924 +- +a:wg21-lwg3925 +WG21-LWG3925 +LWG3925 +- +a:wg21-lwg3926 +WG21-LWG3926 +LWG3926 +- +a:wg21-lwg3927 +WG21-LWG3927 +LWG3927 +- +a:wg21-lwg3928 +WG21-LWG3928 +LWG3928 +- +a:wg21-lwg3929 +WG21-LWG3929 +LWG3929 +- a:wg21-lwg393 WG21-LWG393 LWG393 - +a:wg21-lwg3930 +WG21-LWG3930 +LWG3930 +- +a:wg21-lwg3931 +WG21-LWG3931 +LWG3931 +- +a:wg21-lwg3932 +WG21-LWG3932 +LWG3932 +- +a:wg21-lwg3933 +WG21-LWG3933 +LWG3933 +- +a:wg21-lwg3934 +WG21-LWG3934 +LWG3934 +- +a:wg21-lwg3935 +WG21-LWG3935 +LWG3935 +- +a:wg21-lwg3936 +WG21-LWG3936 +LWG3936 +- +a:wg21-lwg3937 +WG21-LWG3937 +LWG3937 +- +a:wg21-lwg3938 +WG21-LWG3938 +LWG3938 +- +a:wg21-lwg3939 +WG21-LWG3939 +LWG3939 +- a:wg21-lwg394 WG21-LWG394 LWG394 - +a:wg21-lwg3940 +WG21-LWG3940 +LWG3940 +- +a:wg21-lwg3941 +WG21-LWG3941 +LWG3941 +- +a:wg21-lwg3942 +WG21-LWG3942 +LWG3942 +- +a:wg21-lwg3943 +WG21-LWG3943 +LWG3943 +- +a:wg21-lwg3944 +WG21-LWG3944 +LWG3944 +- +a:wg21-lwg3945 +WG21-LWG3945 +LWG3945 +- +a:wg21-lwg3946 +WG21-LWG3946 +LWG3946 +- +a:wg21-lwg3947 +WG21-LWG3947 +LWG3947 +- +a:wg21-lwg3948 +WG21-LWG3948 +LWG3948 +- +a:wg21-lwg3949 +WG21-LWG3949 +LWG3949 +- a:wg21-lwg395 WG21-LWG395 LWG395 - +a:wg21-lwg3950 +WG21-LWG3950 +LWG3950 +- +a:wg21-lwg3951 +WG21-LWG3951 +LWG3951 +- +a:wg21-lwg3952 +WG21-LWG3952 +LWG3952 +- +a:wg21-lwg3953 +WG21-LWG3953 +LWG3953 +- +a:wg21-lwg3954 +WG21-LWG3954 +LWG3954 +- +a:wg21-lwg3955 +WG21-LWG3955 +LWG3955 +- +a:wg21-lwg3956 +WG21-LWG3956 +LWG3956 +- +a:wg21-lwg3957 +WG21-LWG3957 +LWG3957 +- +a:wg21-lwg3958 +WG21-LWG3958 +LWG3958 +- +a:wg21-lwg3959 +WG21-LWG3959 +LWG3959 +- a:wg21-lwg396 WG21-LWG396 LWG396 - +a:wg21-lwg3960 +WG21-LWG3960 +LWG3960 +- +a:wg21-lwg3961 +WG21-LWG3961 +LWG3961 +- +a:wg21-lwg3962 +WG21-LWG3962 +LWG3962 +- +a:wg21-lwg3963 +WG21-LWG3963 +LWG3963 +- +a:wg21-lwg3964 +WG21-LWG3964 +LWG3964 +- +a:wg21-lwg3965 +WG21-LWG3965 +LWG3965 +- +a:wg21-lwg3966 +WG21-LWG3966 +LWG3966 +- +a:wg21-lwg3967 +WG21-LWG3967 +LWG3967 +- +a:wg21-lwg3968 +WG21-LWG3968 +LWG3968 +- +a:wg21-lwg3969 +WG21-LWG3969 +LWG3969 +- a:wg21-lwg397 WG21-LWG397 LWG397 - +a:wg21-lwg3970 +WG21-LWG3970 +LWG3970 +- +a:wg21-lwg3971 +WG21-LWG3971 +LWG3971 +- +a:wg21-lwg3972 +WG21-LWG3972 +LWG3972 +- +a:wg21-lwg3973 +WG21-LWG3973 +LWG3973 +- +a:wg21-lwg3974 +WG21-LWG3974 +LWG3974 +- +a:wg21-lwg3975 +WG21-LWG3975 +LWG3975 +- +a:wg21-lwg3976 +WG21-LWG3976 +LWG3976 +- +a:wg21-lwg3977 +WG21-LWG3977 +LWG3977 +- +a:wg21-lwg3978 +WG21-LWG3978 +LWG3978 +- +a:wg21-lwg3979 +WG21-LWG3979 +LWG3979 +- a:wg21-lwg398 WG21-LWG398 LWG398 - +a:wg21-lwg3980 +WG21-LWG3980 +LWG3980 +- +a:wg21-lwg3981 +WG21-LWG3981 +LWG3981 +- +a:wg21-lwg3982 +WG21-LWG3982 +LWG3982 +- +a:wg21-lwg3983 +WG21-LWG3983 +LWG3983 +- +a:wg21-lwg3984 +WG21-LWG3984 +LWG3984 +- +a:wg21-lwg3985 +WG21-LWG3985 +LWG3985 +- +a:wg21-lwg3986 +WG21-LWG3986 +LWG3986 +- +a:wg21-lwg3987 +WG21-LWG3987 +LWG3987 +- +a:wg21-lwg3988 +WG21-LWG3988 +LWG3988 +- +a:wg21-lwg3989 +WG21-LWG3989 +LWG3989 +- a:wg21-lwg399 WG21-LWG399 LWG399 - +a:wg21-lwg3990 +WG21-LWG3990 +LWG3990 +- +a:wg21-lwg3991 +WG21-LWG3991 +LWG3991 +- +a:wg21-lwg3992 +WG21-LWG3992 +LWG3992 +- +a:wg21-lwg3993 +WG21-LWG3993 +LWG3993 +- +a:wg21-lwg3994 +WG21-LWG3994 +LWG3994 +- +a:wg21-lwg3995 +WG21-LWG3995 +LWG3995 +- +a:wg21-lwg3996 +WG21-LWG3996 +LWG3996 +- +a:wg21-lwg3997 +WG21-LWG3997 +LWG3997 +- +a:wg21-lwg3998 +WG21-LWG3998 +LWG3998 +- +a:wg21-lwg3999 +WG21-LWG3999 +LWG3999 +- a:wg21-lwg4 WG21-LWG4 LWG4 @@ -50834,26 +57262,230 @@ a:wg21-lwg400 WG21-LWG400 LWG400 - +a:wg21-lwg4000 +WG21-LWG4000 +LWG4000 +- +a:wg21-lwg4001 +WG21-LWG4001 +LWG4001 +- +a:wg21-lwg4002 +WG21-LWG4002 +LWG4002 +- +a:wg21-lwg4003 +WG21-LWG4003 +LWG4003 +- +a:wg21-lwg4004 +WG21-LWG4004 +LWG4004 +- +a:wg21-lwg4005 +WG21-LWG4005 +LWG4005 +- +a:wg21-lwg4006 +WG21-LWG4006 +LWG4006 +- +a:wg21-lwg4007 +WG21-LWG4007 +LWG4007 +- +a:wg21-lwg4008 +WG21-LWG4008 +LWG4008 +- +a:wg21-lwg4009 +WG21-LWG4009 +LWG4009 +- a:wg21-lwg401 WG21-LWG401 LWG401 - +a:wg21-lwg4010 +WG21-LWG4010 +LWG4010 +- +a:wg21-lwg4011 +WG21-LWG4011 +LWG4011 +- +a:wg21-lwg4012 +WG21-LWG4012 +LWG4012 +- +a:wg21-lwg4013 +WG21-LWG4013 +LWG4013 +- +a:wg21-lwg4014 +WG21-LWG4014 +LWG4014 +- +a:wg21-lwg4015 +WG21-LWG4015 +LWG4015 +- +a:wg21-lwg4016 +WG21-LWG4016 +LWG4016 +- +a:wg21-lwg4017 +WG21-LWG4017 +LWG4017 +- +a:wg21-lwg4018 +WG21-LWG4018 +LWG4018 +- +a:wg21-lwg4019 +WG21-LWG4019 +LWG4019 +- a:wg21-lwg402 WG21-LWG402 LWG402 - +a:wg21-lwg4020 +WG21-LWG4020 +LWG4020 +- +a:wg21-lwg4021 +WG21-LWG4021 +LWG4021 +- +a:wg21-lwg4022 +WG21-LWG4022 +LWG4022 +- +a:wg21-lwg4023 +WG21-LWG4023 +LWG4023 +- +a:wg21-lwg4024 +WG21-LWG4024 +LWG4024 +- +a:wg21-lwg4025 +WG21-LWG4025 +LWG4025 +- +a:wg21-lwg4026 +WG21-LWG4026 +LWG4026 +- +a:wg21-lwg4027 +WG21-LWG4027 +LWG4027 +- +a:wg21-lwg4028 +WG21-LWG4028 +LWG4028 +- +a:wg21-lwg4029 +WG21-LWG4029 +LWG4029 +- a:wg21-lwg403 WG21-LWG403 LWG403 - +a:wg21-lwg4030 +WG21-LWG4030 +LWG4030 +- +a:wg21-lwg4031 +WG21-LWG4031 +LWG4031 +- +a:wg21-lwg4032 +WG21-LWG4032 +LWG4032 +- +a:wg21-lwg4033 +WG21-LWG4033 +LWG4033 +- +a:wg21-lwg4034 +WG21-LWG4034 +LWG4034 +- +a:wg21-lwg4035 +WG21-LWG4035 +LWG4035 +- +a:wg21-lwg4036 +WG21-LWG4036 +LWG4036 +- +a:wg21-lwg4037 +WG21-LWG4037 +LWG4037 +- +a:wg21-lwg4038 +WG21-LWG4038 +LWG4038 +- +a:wg21-lwg4039 +WG21-LWG4039 +LWG4039 +- a:wg21-lwg404 WG21-LWG404 LWG404 - +a:wg21-lwg4040 +WG21-LWG4040 +LWG4040 +- +a:wg21-lwg4041 +WG21-LWG4041 +LWG4041 +- +a:wg21-lwg4042 +WG21-LWG4042 +LWG4042 +- +a:wg21-lwg4043 +WG21-LWG4043 +LWG4043 +- +a:wg21-lwg4044 +WG21-LWG4044 +LWG4044 +- +a:wg21-lwg4045 +WG21-LWG4045 +LWG4045 +- +a:wg21-lwg4046 +WG21-LWG4046 +LWG4046 +- +a:wg21-lwg4047 +WG21-LWG4047 +LWG4047 +- +a:wg21-lwg4048 +WG21-LWG4048 +LWG4048 +- +a:wg21-lwg4049 +WG21-LWG4049 +LWG4049 +- a:wg21-lwg405 WG21-LWG405 LWG405 - +a:wg21-lwg4050 +WG21-LWG4050 +LWG4050 +- a:wg21-lwg406 WG21-LWG406 LWG406 @@ -67562,6 +74194,186 @@ a:wg21-n4939 WG21-N4939 N4939 - +a:wg21-n4940 +WG21-N4940 +N4940 +- +a:wg21-n4941 +WG21-N4941 +N4941 +- +a:wg21-n4942 +WG21-N4942 +N4942 +- +a:wg21-n4943 +WG21-N4943 +N4943 +- +a:wg21-n4944 +WG21-N4944 +N4944 +- +a:wg21-n4945 +WG21-N4945 +N4945 +- +a:wg21-n4946 +WG21-N4946 +N4946 +- +a:wg21-n4947 +WG21-N4947 +N4947 +- +a:wg21-n4948 +WG21-N4948 +N4948 +- +a:wg21-n4949 +WG21-N4949 +N4949 +- +a:wg21-n4950 +WG21-N4950 +N4950 +- +a:wg21-n4951 +WG21-N4951 +N4951 +- +a:wg21-n4953 +WG21-N4953 +N4953 +- +a:wg21-n4954 +WG21-N4954 +N4954 +- +a:wg21-n4955 +WG21-N4955 +N4955 +- +a:wg21-n4956 +WG21-N4956 +N4956 +- +a:wg21-n4957 +WG21-N4957 +N4957 +- +a:wg21-n4958 +WG21-N4958 +N4958 +- +a:wg21-n4959 +WG21-N4959 +N4959 +- +a:wg21-n4960 +WG21-N4960 +N4960 +- +a:wg21-n4961 +WG21-N4961 +N4961 +- +a:wg21-n4962 +WG21-N4962 +N4962 +- +a:wg21-n4963 +WG21-N4963 +N4963 +- +a:wg21-n4964 +WG21-N4964 +N4964 +- +a:wg21-n4965 +WG21-N4965 +N4965 +- +a:wg21-n4966 +WG21-N4966 +N4966 +- +a:wg21-n4967 +WG21-N4967 +N4967 +- +a:wg21-n4970 +WG21-N4970 +N4970 +- +a:wg21-n4971 +WG21-N4971 +N4971 +- +a:wg21-n4972 +WG21-N4972 +N4972 +- +a:wg21-n4974 +WG21-N4974 +N4974 +- +a:wg21-n4975 +WG21-N4975 +N4975 +- +a:wg21-n4976 +WG21-N4976 +N4976 +- +a:wg21-n4978 +WG21-N4978 +N4978 +- +a:wg21-n4979 +WG21-N4979 +N4979 +- +a:wg21-n4980 +WG21-N4980 +N4980 +- +a:wg21-n4981 +WG21-N4981 +N4981 +- +a:wg21-n4982 +WG21-N4982 +N4982 +- +a:wg21-n4983 +WG21-N4983 +N4983 +- +a:wg21-n4984 +WG21-N4984 +N4984 +- +a:wg21-n4985 +WG21-N4985 +N4985 +- +a:wg21-n4986 +WG21-N4986 +N4986 +- +a:wg21-n4987 +WG21-N4987 +N4987 +- +a:wg21-n4988 +WG21-N4988 +N4988 +- +a:wg21-n4989 +WG21-N4989 +N4989 +- a:wg21-p0001r0 WG21-P0001R0 P0001R0 @@ -68786,6 +75598,10 @@ a:wg21-p0124r7 WG21-P0124R7 P0124R7 - +a:wg21-p0124r8 +WG21-P0124R8 +P0124R8 +- a:wg21-p0125r0 WG21-P0125R0 P0125R0 @@ -69818,6 +76634,10 @@ a:wg21-p0260r1 WG21-P0260R1 P0260R1 - +a:wg21-p0260r10 +WG21-P0260R10 +P0260R10 +- a:wg21-p0260r2 WG21-P0260R2 P0260R2 @@ -69834,6 +76654,22 @@ a:wg21-p0260r5 WG21-P0260R5 P0260R5 - +a:wg21-p0260r6 +WG21-P0260R6 +P0260R6 +- +a:wg21-p0260r7 +WG21-P0260R7 +P0260R7 +- +a:wg21-p0260r8 +WG21-P0260R8 +P0260R8 +- +a:wg21-p0260r9 +WG21-P0260R9 +P0260R9 +- a:wg21-p0261r0 WG21-P0261R0 P0261R0 @@ -70114,6 +76950,14 @@ a:wg21-p0290r2 WG21-P0290R2 P0290R2 - +a:wg21-p0290r3 +WG21-P0290R3 +P0290R3 +- +a:wg21-p0290r4 +WG21-P0290R4 +P0290R4 +- a:wg21-p0292r0 WG21-P0292R0 P0292R0 @@ -70598,6 +77442,10 @@ a:wg21-p0342r1 WG21-P0342R1 P0342R1 - +a:wg21-p0342r2 +WG21-P0342R2 +P0342R2 +- a:wg21-p0343r0 WG21-P0343R0 P0343R0 @@ -71430,6 +78278,30 @@ a:wg21-p0447r20 WG21-P0447R20 P0447R20 - +a:wg21-p0447r21 +WG21-P0447R21 +P0447R21 +- +a:wg21-p0447r22 +WG21-P0447R22 +P0447R22 +- +a:wg21-p0447r23 +WG21-P0447R23 +P0447R23 +- +a:wg21-p0447r24 +WG21-P0447R24 +P0447R24 +- +a:wg21-p0447r25 +WG21-P0447R25 +P0447R25 +- +a:wg21-p0447r26 +WG21-P0447R26 +P0447R26 +- a:wg21-p0447r3 WG21-P0447R3 P0447R3 @@ -71614,6 +78486,10 @@ a:wg21-p0472r0 WG21-P0472R0 P0472R0 - +a:wg21-p0472r1 +WG21-P0472R1 +P0472R1 +- a:wg21-p0473r0 WG21-P0473R0 P0473R0 @@ -71782,6 +78658,14 @@ a:wg21-p0493r3 WG21-P0493R3 P0493R3 - +a:wg21-p0493r4 +WG21-P0493R4 +P0493R4 +- +a:wg21-p0493r5 +WG21-P0493R5 +P0493R5 +- a:wg21-p0494r0 WG21-P0494R0 P0494R0 @@ -72130,6 +79014,10 @@ a:wg21-p0543r2 WG21-P0543R2 P0543R2 - +a:wg21-p0543r3 +WG21-P0543R3 +P0543R3 +- a:wg21-p0544r0 WG21-P0544R0 P0544R0 @@ -72334,6 +79222,14 @@ a:wg21-p0562r0 WG21-P0562R0 P0562R0 - +a:wg21-p0562r1 +WG21-P0562R1 +P0562R1 +- +a:wg21-p0562r2 +WG21-P0562R2 +P0562R2 +- a:wg21-p0563r0 WG21-P0563R0 P0563R0 @@ -72714,6 +79610,14 @@ a:wg21-p0609r1 WG21-P0609R1 P0609R1 - +a:wg21-p0609r2 +WG21-P0609R2 +P0609R2 +- +a:wg21-p0609r3 +WG21-P0609R3 +P0609R3 +- a:wg21-p0610r0 WG21-P0610R0 P0610R0 @@ -74026,6 +80930,14 @@ a:wg21-p0792r12 WG21-P0792R12 P0792R12 - +a:wg21-p0792r13 +WG21-P0792R13 +P0792R13 +- +a:wg21-p0792r14 +WG21-P0792R14 +P0792R14 +- a:wg21-p0792r2 WG21-P0792R2 P0792R2 @@ -74398,6 +81310,26 @@ a:wg21-p0843r1 WG21-P0843R1 P0843R1 - +a:wg21-p0843r10 +WG21-P0843R10 +P0843R10 +- +a:wg21-p0843r11 +WG21-P0843R11 +P0843R11 +- +a:wg21-p0843r12 +WG21-P0843R12 +P0843R12 +- +a:wg21-p0843r13 +WG21-P0843R13 +P0843R13 +- +a:wg21-p0843r14 +WG21-P0843R14 +P0843R14 +- a:wg21-p0843r2 WG21-P0843R2 P0843R2 @@ -74414,6 +81346,22 @@ a:wg21-p0843r5 WG21-P0843R5 P0843R5 - +a:wg21-p0843r6 +WG21-P0843R6 +P0843R6 +- +a:wg21-p0843r7 +WG21-P0843R7 +P0843R7 +- +a:wg21-p0843r8 +WG21-P0843R8 +P0843R8 +- +a:wg21-p0843r9 +WG21-P0843R9 +P0843R9 +- a:wg21-p0844r0 WG21-P0844R0 P0844R0 @@ -74586,6 +81534,10 @@ a:wg21-p0870r4 WG21-P0870R4 P0870R4 - +a:wg21-p0870r5 +WG21-P0870R5 +P0870R5 +- a:wg21-p0872r0 WG21-P0872R0 P0872R0 @@ -74618,6 +81570,30 @@ a:wg21-p0876r11 WG21-P0876R11 P0876R11 - +a:wg21-p0876r12 +WG21-P0876R12 +P0876R12 +- +a:wg21-p0876r13 +WG21-P0876R13 +P0876R13 +- +a:wg21-p0876r14 +WG21-P0876R14 +P0876R14 +- +a:wg21-p0876r15 +WG21-P0876R15 +P0876R15 +- +a:wg21-p0876r16 +WG21-P0876R16 +P0876R16 +- +a:wg21-p0876r17 +WG21-P0876R17 +P0876R17 +- a:wg21-p0876r2 WG21-P0876R2 P0876R2 @@ -74850,6 +81826,10 @@ a:wg21-p0901r10 WG21-P0901R10 P0901R10 - +a:wg21-p0901r11 +WG21-P0901R11 +P0901R11 +- a:wg21-p0901r2 WG21-P0901R2 P0901R2 @@ -75274,6 +82254,14 @@ a:wg21-p0952r0 WG21-P0952R0 P0952R0 - +a:wg21-p0952r1 +WG21-P0952R1 +P0952R1 +- +a:wg21-p0952r2 +WG21-P0952R2 +P0952R2 +- a:wg21-p0953r0 WG21-P0953R0 P0953R0 @@ -75402,6 +82390,18 @@ a:wg21-p0963r0 WG21-P0963R0 P0963R0 - +a:wg21-p0963r1 +WG21-P0963R1 +P0963R1 +- +a:wg21-p0963r2 +WG21-P0963R2 +P0963R2 +- +a:wg21-p0963r3 +WG21-P0963R3 +P0963R3 +- a:wg21-p0964r0 WG21-P0964R0 P0964R0 @@ -75610,6 +82610,14 @@ a:wg21-p1000r4 WG21-P1000R4 P1000R4 - +a:wg21-p1000r5 +WG21-P1000R5 +P1000R5 +- +a:wg21-p1000r6 +WG21-P1000R6 +P1000R6 +- a:wg21-p1001r0 WG21-P1001R0 P1001R0 @@ -75930,6 +82938,14 @@ a:wg21-p1028r4 WG21-P1028R4 P1028R4 - +a:wg21-p1028r5 +WG21-P1028R5 +P1028R5 +- +a:wg21-p1028r6 +WG21-P1028R6 +P1028R6 +- a:wg21-p1029r0 WG21-P1029R0 P1029R0 @@ -75970,6 +82986,10 @@ a:wg21-p1030r5 WG21-P1030R5 P1030R5 - +a:wg21-p1030r6 +WG21-P1030R6 +P1030R6 +- a:wg21-p1031r0 WG21-P1031R0 P1031R0 @@ -76186,6 +83206,26 @@ a:wg21-p1061r3 WG21-P1061R3 P1061R3 - +a:wg21-p1061r4 +WG21-P1061R4 +P1061R4 +- +a:wg21-p1061r5 +WG21-P1061R5 +P1061R5 +- +a:wg21-p1061r6 +WG21-P1061R6 +P1061R6 +- +a:wg21-p1061r7 +WG21-P1061R7 +P1061R7 +- +a:wg21-p1061r8 +WG21-P1061R8 +P1061R8 +- a:wg21-p1062r0 WG21-P1062R0 P1062R0 @@ -76238,6 +83278,14 @@ a:wg21-p1068r1 WG21-P1068R1 P1068R1 - +a:wg21-p1068r10 +WG21-P1068R10 +P1068R10 +- +a:wg21-p1068r11 +WG21-P1068R11 +P1068R11 +- a:wg21-p1068r2 WG21-P1068R2 P1068R2 @@ -76258,6 +83306,18 @@ a:wg21-p1068r6 WG21-P1068R6 P1068R6 - +a:wg21-p1068r7 +WG21-P1068R7 +P1068R7 +- +a:wg21-p1068r8 +WG21-P1068R8 +P1068R8 +- +a:wg21-p1068r9 +WG21-P1068R9 +P1068R9 +- a:wg21-p1069r0 WG21-P1069R0 P1069R0 @@ -76398,6 +83458,10 @@ a:wg21-p1083r7 WG21-P1083R7 P1083R7 - +a:wg21-p1083r8 +WG21-P1083R8 +P1083R8 +- a:wg21-p1084r0 WG21-P1084R0 P1084R0 @@ -76610,6 +83674,14 @@ a:wg21-p1112r3 WG21-P1112R3 P1112R3 - +a:wg21-p1112r4 +WG21-P1112R4 +P1112R4 +- +a:wg21-p1112r5 +WG21-P1112R5 +P1112R5 +- a:wg21-p1113r0 WG21-P1113R0 P1113R0 @@ -76838,6 +83910,14 @@ a:wg21-p1144r1 WG21-P1144R1 P1144R1 - +a:wg21-p1144r10 +WG21-P1144R10 +P1144R10 +- +a:wg21-p1144r11 +WG21-P1144R11 +P1144R11 +- a:wg21-p1144r2 WG21-P1144R2 P1144R2 @@ -76858,6 +83938,18 @@ a:wg21-p1144r6 WG21-P1144R6 P1144R6 - +a:wg21-p1144r7 +WG21-P1144R7 +P1144R7 +- +a:wg21-p1144r8 +WG21-P1144R8 +P1144R8 +- +a:wg21-p1144r9 +WG21-P1144R9 +P1144R9 +- a:wg21-p1145r0 WG21-P1145R0 P1145R0 @@ -77594,6 +84686,22 @@ a:wg21-p1255r1 WG21-P1255R1 P1255R1 - +a:wg21-p1255r10 +WG21-P1255R10 +P1255R10 +- +a:wg21-p1255r11 +WG21-P1255R11 +P1255R11 +- +a:wg21-p1255r12 +WG21-P1255R12 +P1255R12 +- +a:wg21-p1255r13 +WG21-P1255R13 +P1255R13 +- a:wg21-p1255r2 WG21-P1255R2 P1255R2 @@ -77918,6 +85026,10 @@ a:wg21-p1306r1 WG21-P1306R1 P1306R1 - +a:wg21-p1306r2 +WG21-P1306R2 +P1306R2 +- a:wg21-p1307r0 WG21-P1307R0 P1307R0 @@ -77986,6 +85098,10 @@ a:wg21-p1317r0 WG21-P1317R0 P1317R0 - +a:wg21-p1317r1 +WG21-P1317R1 +P1317R1 +- a:wg21-p1318r0 WG21-P1318R0 P1318R0 @@ -78042,6 +85158,10 @@ a:wg21-p1324r0 WG21-P1324R0 P1324R0 - +a:wg21-p1324r1 +WG21-P1324R1 +P1324R1 +- a:wg21-p1327r0 WG21-P1327R0 P1327R0 @@ -78346,6 +85466,10 @@ a:wg21-p1383r1 WG21-P1383R1 P1383R1 - +a:wg21-p1383r2 +WG21-P1383R2 +P1383R2 +- a:wg21-p1385r0 WG21-P1385R0 P1385R0 @@ -79058,6 +86182,10 @@ a:wg21-p1494r2 WG21-P1494R2 P1494R2 - +a:wg21-p1494r3 +WG21-P1494R3 +P1494R3 +- a:wg21-p1496r0 WG21-P1496R0 P1496R0 @@ -79610,6 +86738,14 @@ a:wg21-p1673r11 WG21-P1673R11 P1673R11 - +a:wg21-p1673r12 +WG21-P1673R12 +P1673R12 +- +a:wg21-p1673r13 +WG21-P1673R13 +P1673R13 +- a:wg21-p1673r2 WG21-P1673R2 P1673R2 @@ -79758,6 +86894,10 @@ a:wg21-p1684r4 WG21-P1684R4 P1684R4 - +a:wg21-p1684r5 +WG21-P1684R5 +P1684R5 +- a:wg21-p1685r0 WG21-P1685R0 P1685R0 @@ -79910,6 +87050,14 @@ a:wg21-p1708r6 WG21-P1708R6 P1708R6 - +a:wg21-p1708r7 +WG21-P1708R7 +P1708R7 +- +a:wg21-p1708r8 +WG21-P1708R8 +P1708R8 +- a:wg21-p1709r0 WG21-P1709R0 P1709R0 @@ -79926,6 +87074,14 @@ a:wg21-p1709r3 WG21-P1709R3 P1709R3 - +a:wg21-p1709r4 +WG21-P1709R4 +P1709R4 +- +a:wg21-p1709r5 +WG21-P1709R5 +P1709R5 +- a:wg21-p1710r0 WG21-P1710R0 P1710R0 @@ -79950,6 +87106,10 @@ a:wg21-p1715r0 WG21-P1715R0 P1715R0 - +a:wg21-p1715r1 +WG21-P1715R1 +P1715R1 +- a:wg21-p1716r0 WG21-P1716R0 P1716R0 @@ -80094,6 +87254,18 @@ a:wg21-p1729r1 WG21-P1729R1 P1729R1 - +a:wg21-p1729r2 +WG21-P1729R2 +P1729R2 +- +a:wg21-p1729r3 +WG21-P1729R3 +P1729R3 +- +a:wg21-p1729r4 +WG21-P1729R4 +P1729R4 +- a:wg21-p1730r0 WG21-P1730R0 P1730R0 @@ -80254,6 +87426,14 @@ a:wg21-p1759r4 WG21-P1759R4 P1759R4 - +a:wg21-p1759r5 +WG21-P1759R5 +P1759R5 +- +a:wg21-p1759r6 +WG21-P1759R6 +P1759R6 +- a:wg21-p1760r0 WG21-P1760R0 P1760R0 @@ -80686,6 +87866,10 @@ a:wg21-p1854r3 WG21-P1854R3 P1854R3 - +a:wg21-p1854r4 +WG21-P1854R4 +P1854R4 +- a:wg21-p1855r0 WG21-P1855R0 P1855R0 @@ -80902,6 +88086,14 @@ a:wg21-p1885r10 WG21-P1885R10 P1885R10 - +a:wg21-p1885r11 +WG21-P1885R11 +P1885R11 +- +a:wg21-p1885r12 +WG21-P1885R12 +P1885R12 +- a:wg21-p1885r2 WG21-P1885R2 P1885R2 @@ -81042,6 +88234,10 @@ a:wg21-p1901r1 WG21-P1901R1 P1901R1 - +a:wg21-p1901r2 +WG21-P1901R2 +P1901R2 +- a:wg21-p1902r0 WG21-P1902R0 P1902R0 @@ -81174,10 +88370,46 @@ a:wg21-p1928r1 WG21-P1928R1 P1928R1 - +a:wg21-p1928r10 +WG21-P1928R10 +P1928R10 +- +a:wg21-p1928r11 +WG21-P1928R11 +P1928R11 +- a:wg21-p1928r2 WG21-P1928R2 P1928R2 - +a:wg21-p1928r3 +WG21-P1928R3 +P1928R3 +- +a:wg21-p1928r4 +WG21-P1928R4 +P1928R4 +- +a:wg21-p1928r5 +WG21-P1928R5 +P1928R5 +- +a:wg21-p1928r6 +WG21-P1928R6 +P1928R6 +- +a:wg21-p1928r7 +WG21-P1928R7 +P1928R7 +- +a:wg21-p1928r8 +WG21-P1928R8 +P1928R8 +- +a:wg21-p1928r9 +WG21-P1928R9 +P1928R9 +- a:wg21-p1929r0 WG21-P1929R0 P1929R0 @@ -81406,6 +88638,14 @@ a:wg21-p1967r10 WG21-P1967R10 P1967R10 - +a:wg21-p1967r11 +WG21-P1967R11 +P1967R11 +- +a:wg21-p1967r12 +WG21-P1967R12 +P1967R12 +- a:wg21-p1967r2 WG21-P1967R2 P1967R2 @@ -81746,6 +88986,22 @@ a:wg21-p2019r2 WG21-P2019R2 P2019R2 - +a:wg21-p2019r3 +WG21-P2019R3 +P2019R3 +- +a:wg21-p2019r4 +WG21-P2019R4 +P2019R4 +- +a:wg21-p2019r5 +WG21-P2019R5 +P2019R5 +- +a:wg21-p2019r6 +WG21-P2019R6 +P2019R6 +- a:wg21-p2020r0 WG21-P2020R0 P2020R0 @@ -81754,6 +89010,22 @@ a:wg21-p2021r0 WG21-P2021R0 P2021R0 - +a:wg21-p2022r0 +WG21-P2022R0 +P2022R0 +- +a:wg21-p2022r1 +WG21-P2022R1 +P2022R1 +- +a:wg21-p2022r2 +WG21-P2022R2 +P2022R2 +- +a:wg21-p2022r3 +WG21-P2022R3 +P2022R3 +- a:wg21-p2024r0 WG21-P2024R0 P2024R0 @@ -81830,6 +89102,14 @@ a:wg21-p2034r2 WG21-P2034R2 P2034R2 - +a:wg21-p2034r3 +WG21-P2034R3 +P2034R3 +- +a:wg21-p2034r4 +WG21-P2034R4 +P2034R4 +- a:wg21-p2035r0 WG21-P2035R0 P2035R0 @@ -81934,6 +89214,14 @@ a:wg21-p2047r5 WG21-P2047R5 P2047R5 - +a:wg21-p2047r6 +WG21-P2047R6 +P2047R6 +- +a:wg21-p2047r7 +WG21-P2047R7 +P2047R7 +- a:wg21-p2048r0 WG21-P2048R0 P2048R0 @@ -82106,6 +89394,22 @@ a:wg21-p2075r2 WG21-P2075R2 P2075R2 - +a:wg21-p2075r3 +WG21-P2075R3 +P2075R3 +- +a:wg21-p2075r4 +WG21-P2075R4 +P2075R4 +- +a:wg21-p2075r5 +WG21-P2075R5 +P2075R5 +- +a:wg21-p2075r6 +WG21-P2075R6 +P2075R6 +- a:wg21-p2076r0 WG21-P2076R0 P2076R0 @@ -82146,6 +89450,10 @@ a:wg21-p2079r3 WG21-P2079R3 P2079R3 - +a:wg21-p2079r4 +WG21-P2079R4 +P2079R4 +- a:wg21-p2080r0 WG21-P2080R0 P2080R0 @@ -82350,6 +89658,10 @@ a:wg21-p2126r0 WG21-P2126R0 P2126R0 - +a:wg21-p2127r0 +WG21-P2127R0 +P2127R0 +- a:wg21-p2128r0 WG21-P2128R0 P2128R0 @@ -82398,6 +89710,10 @@ a:wg21-p2134r0 WG21-P2134R0 P2134R0 - +a:wg21-p2135r1 +WG21-P2135R1 +P2135R1 +- a:wg21-p2136r0 WG21-P2136R0 P2136R0 @@ -82454,6 +89770,14 @@ a:wg21-p2141r0 WG21-P2141R0 P2141R0 - +a:wg21-p2141r1 +WG21-P2141R1 +P2141R1 +- +a:wg21-p2141r2 +WG21-P2141R2 +P2141R2 +- a:wg21-p2142r1 WG21-P2142R1 P2142R1 @@ -82514,6 +89838,10 @@ a:wg21-p2159r0 WG21-P2159R0 P2159R0 - +a:wg21-p2159r1 +WG21-P2159R1 +P2159R1 +- a:wg21-p2160r0 WG21-P2160R0 P2160R0 @@ -82666,6 +89994,10 @@ a:wg21-p2169r3 WG21-P2169R3 P2169R3 - +a:wg21-p2169r4 +WG21-P2169R4 +P2169R4 +- a:wg21-p2170r0 WG21-P2170R0 P2170R0 @@ -83150,6 +90482,10 @@ a:wg21-p2248r7 WG21-P2248R7 P2248R7 - +a:wg21-p2248r8 +WG21-P2248R8 +P2248R8 +- a:wg21-p2249r0 WG21-P2249R0 P2249R0 @@ -83170,6 +90506,14 @@ a:wg21-p2249r4 WG21-P2249R4 P2249R4 - +a:wg21-p2249r5 +WG21-P2249R5 +P2249R5 +- +a:wg21-p2249r6 +WG21-P2249R6 +P2249R6 +- a:wg21-p2250r0 WG21-P2250R0 P2250R0 @@ -83250,6 +90594,18 @@ a:wg21-p2264r4 WG21-P2264R4 P2264R4 - +a:wg21-p2264r5 +WG21-P2264R5 +P2264R5 +- +a:wg21-p2264r6 +WG21-P2264R6 +P2264R6 +- +a:wg21-p2264r7 +WG21-P2264R7 +P2264R7 +- a:wg21-p2265r0 WG21-P2265R0 P2265R0 @@ -83274,6 +90630,14 @@ a:wg21-p2266r3 WG21-P2266R3 P2266R3 - +a:wg21-p2267r0 +WG21-P2267R0 +P2267R0 +- +a:wg21-p2267r1 +WG21-P2267R1 +P2267R1 +- a:wg21-p2268r0 WG21-P2268R0 P2268R0 @@ -83426,6 +90790,10 @@ a:wg21-p2287r1 WG21-P2287R1 P2287R1 - +a:wg21-p2287r2 +WG21-P2287R2 +P2287R2 +- a:wg21-p2289r0 WG21-P2289R0 P2289R0 @@ -83510,6 +90878,10 @@ a:wg21-p2299r3 WG21-P2299R3 P2299R3 - +a:wg21-p2299r4 +WG21-P2299R4 +P2299R4 +- a:wg21-p2300r0 WG21-P2300R0 P2300R0 @@ -83518,6 +90890,10 @@ a:wg21-p2300r1 WG21-P2300R1 P2300R1 - +a:wg21-p2300r10 +WG21-P2300R10 +P2300R10 +- a:wg21-p2300r2 WG21-P2300R2 P2300R2 @@ -83534,6 +90910,22 @@ a:wg21-p2300r5 WG21-P2300R5 P2300R5 - +a:wg21-p2300r6 +WG21-P2300R6 +P2300R6 +- +a:wg21-p2300r7 +WG21-P2300R7 +P2300R7 +- +a:wg21-p2300r8 +WG21-P2300R8 +P2300R8 +- +a:wg21-p2300r9 +WG21-P2300R9 +P2300R9 +- a:wg21-p2301r0 WG21-P2301R0 P2301R0 @@ -83650,6 +91042,14 @@ a:wg21-p2307r2 WG21-P2307R2 P2307R2 - +a:wg21-p2308r0 +WG21-P2308R0 +P2308R0 +- +a:wg21-p2308r1 +WG21-P2308R1 +P2308R1 +- a:wg21-p2309r0 WG21-P2309R0 P2309R0 @@ -83734,6 +91134,10 @@ a:wg21-p2318r1 WG21-P2318R1 P2318R1 - +a:wg21-p2319r0 +WG21-P2319R0 +P2319R0 +- a:wg21-p2320r0 WG21-P2320R0 P2320R0 @@ -83874,6 +91278,10 @@ a:wg21-p2338r3 WG21-P2338R3 P2338R3 - +a:wg21-p2338r4 +WG21-P2338R4 +P2338R4 +- a:wg21-p2339r0 WG21-P2339R0 P2339R0 @@ -83950,6 +91358,14 @@ a:wg21-p2355r0 WG21-P2355R0 P2355R0 - +a:wg21-p2355r1 +WG21-P2355R1 +P2355R1 +- +a:wg21-p2355r2 +WG21-P2355R2 +P2355R2 +- a:wg21-p2356r0 WG21-P2356R0 P2356R0 @@ -83986,6 +91402,10 @@ a:wg21-p2361r5 WG21-P2361R5 P2361R5 - +a:wg21-p2361r6 +WG21-P2361R6 +P2361R6 +- a:wg21-p2362r0 WG21-P2362R0 P2362R0 @@ -84022,6 +91442,10 @@ a:wg21-p2363r4 WG21-P2363R4 P2363R4 - +a:wg21-p2363r5 +WG21-P2363R5 +P2363R5 +- a:wg21-p2367r0 WG21-P2367R0 P2367R0 @@ -84174,6 +91598,18 @@ a:wg21-p2388r4 WG21-P2388R4 P2388R4 - +a:wg21-p2389r0 +WG21-P2389R0 +P2389R0 +- +a:wg21-p2389r1 +WG21-P2389R1 +P2389R1 +- +a:wg21-p2389r2 +WG21-P2389R2 +P2389R2 +- a:wg21-p2390r0 WG21-P2390R0 P2390R0 @@ -84286,6 +91722,18 @@ a:wg21-p2406r2 WG21-P2406R2 P2406R2 - +a:wg21-p2406r3 +WG21-P2406R3 +P2406R3 +- +a:wg21-p2406r4 +WG21-P2406R4 +P2406R4 +- +a:wg21-p2406r5 +WG21-P2406R5 +P2406R5 +- a:wg21-p2407r0 WG21-P2407R0 P2407R0 @@ -84298,6 +91746,18 @@ a:wg21-p2407r2 WG21-P2407R2 P2407R2 - +a:wg21-p2407r3 +WG21-P2407R3 +P2407R3 +- +a:wg21-p2407r4 +WG21-P2407R4 +P2407R4 +- +a:wg21-p2407r5 +WG21-P2407R5 +P2407R5 +- a:wg21-p2408r0 WG21-P2408R0 P2408R0 @@ -84342,6 +91802,10 @@ a:wg21-p2413r0 WG21-P2413R0 P2413R0 - +a:wg21-p2413r1 +WG21-P2413R1 +P2413R1 +- a:wg21-p2414r0 WG21-P2414R0 P2414R0 @@ -84350,6 +91814,18 @@ a:wg21-p2414r1 WG21-P2414R1 P2414R1 - +a:wg21-p2414r2 +WG21-P2414R2 +P2414R2 +- +a:wg21-p2414r3 +WG21-P2414R3 +P2414R3 +- +a:wg21-p2414r4 +WG21-P2414R4 +P2414R4 +- a:wg21-p2415r0 WG21-P2415R0 P2415R0 @@ -84414,6 +91890,14 @@ a:wg21-p2420r0 WG21-P2420R0 P2420R0 - +a:wg21-p2422r0 +WG21-P2422R0 +P2422R0 +- +a:wg21-p2422r1 +WG21-P2422R1 +P2422R1 +- a:wg21-p2423r0 WG21-P2423R0 P2423R0 @@ -84454,6 +91938,10 @@ a:wg21-p2434r0 WG21-P2434R0 P2434R0 - +a:wg21-p2434r1 +WG21-P2434R1 +P2434R1 +- a:wg21-p2435r0 WG21-P2435R0 P2435R0 @@ -84562,6 +92050,22 @@ a:wg21-p2447r2 WG21-P2447R2 P2447R2 - +a:wg21-p2447r3 +WG21-P2447R3 +P2447R3 +- +a:wg21-p2447r4 +WG21-P2447R4 +P2447R4 +- +a:wg21-p2447r5 +WG21-P2447R5 +P2447R5 +- +a:wg21-p2447r6 +WG21-P2447R6 +P2447R6 +- a:wg21-p2448r0 WG21-P2448R0 P2448R0 @@ -84782,6 +92286,10 @@ a:wg21-p2481r1 WG21-P2481R1 P2481R1 - +a:wg21-p2481r2 +WG21-P2481R2 +P2481R2 +- a:wg21-p2483r0 WG21-P2483R0 P2483R0 @@ -84806,6 +92314,10 @@ a:wg21-p2487r0 WG21-P2487R0 P2487R0 - +a:wg21-p2487r1 +WG21-P2487R1 +P2487R1 +- a:wg21-p2489r0 WG21-P2489R0 P2489R0 @@ -84850,6 +92362,18 @@ a:wg21-p2495r1 WG21-P2495R1 P2495R1 - +a:wg21-p2495r2 +WG21-P2495R2 +P2495R2 +- +a:wg21-p2495r3 +WG21-P2495R3 +P2495R3 +- +a:wg21-p2497r0 +WG21-P2497R0 +P2497R0 +- a:wg21-p2498r0 WG21-P2498R0 P2498R0 @@ -84866,6 +92390,14 @@ a:wg21-p2500r0 WG21-P2500R0 P2500R0 - +a:wg21-p2500r1 +WG21-P2500R1 +P2500R1 +- +a:wg21-p2500r2 +WG21-P2500R2 +P2500R2 +- a:wg21-p2501r0 WG21-P2501R0 P2501R0 @@ -85026,6 +92558,18 @@ a:wg21-p2521r2 WG21-P2521R2 P2521R2 - +a:wg21-p2521r3 +WG21-P2521R3 +P2521R3 +- +a:wg21-p2521r4 +WG21-P2521R4 +P2521R4 +- +a:wg21-p2521r5 +WG21-P2521R5 +P2521R5 +- a:wg21-p2523r0 WG21-P2523R0 P2523R0 @@ -85046,6 +92590,14 @@ a:wg21-p2527r1 WG21-P2527R1 P2527R1 - +a:wg21-p2527r2 +WG21-P2527R2 +P2527R2 +- +a:wg21-p2527r3 +WG21-P2527R3 +P2527R3 +- a:wg21-p2528r0 WG21-P2528R0 P2528R0 @@ -85066,6 +92618,10 @@ a:wg21-p2530r2 WG21-P2530R2 P2530R2 - +a:wg21-p2530r3 +WG21-P2530R3 +P2530R3 +- a:wg21-p2531r0 WG21-P2531R0 P2531R0 @@ -85154,6 +92710,30 @@ a:wg21-p2542r2 WG21-P2542R2 P2542R2 - +a:wg21-p2542r3 +WG21-P2542R3 +P2542R3 +- +a:wg21-p2542r4 +WG21-P2542R4 +P2542R4 +- +a:wg21-p2542r5 +WG21-P2542R5 +P2542R5 +- +a:wg21-p2542r6 +WG21-P2542R6 +P2542R6 +- +a:wg21-p2542r7 +WG21-P2542R7 +P2542R7 +- +a:wg21-p2542r8 +WG21-P2542R8 +P2542R8 +- a:wg21-p2544r0 WG21-P2544R0 P2544R0 @@ -85170,6 +92750,14 @@ a:wg21-p2545r2 WG21-P2545R2 P2545R2 - +a:wg21-p2545r3 +WG21-P2545R3 +P2545R3 +- +a:wg21-p2545r4 +WG21-P2545R4 +P2545R4 +- a:wg21-p2546r0 WG21-P2546R0 P2546R0 @@ -85186,6 +92774,14 @@ a:wg21-p2546r3 WG21-P2546R3 P2546R3 - +a:wg21-p2546r4 +WG21-P2546R4 +P2546R4 +- +a:wg21-p2546r5 +WG21-P2546R5 +P2546R5 +- a:wg21-p2547r0 WG21-P2547R0 P2547R0 @@ -85214,6 +92810,14 @@ a:wg21-p2548r4 WG21-P2548R4 P2548R4 - +a:wg21-p2548r5 +WG21-P2548R5 +P2548R5 +- +a:wg21-p2548r6 +WG21-P2548R6 +P2548R6 +- a:wg21-p2549r0 WG21-P2549R0 P2549R0 @@ -85246,6 +92850,14 @@ a:wg21-p2552r1 WG21-P2552R1 P2552R1 - +a:wg21-p2552r2 +WG21-P2552R2 +P2552R2 +- +a:wg21-p2552r3 +WG21-P2552R3 +P2552R3 +- a:wg21-p2553r0 WG21-P2553R0 P2553R0 @@ -85278,6 +92890,10 @@ a:wg21-p2558r1 WG21-P2558R1 P2558R1 - +a:wg21-p2558r2 +WG21-P2558R2 +P2558R2 +- a:wg21-p2559r0 WG21-P2559R0 P2559R0 @@ -85298,6 +92914,10 @@ a:wg21-p2561r1 WG21-P2561R1 P2561R1 - +a:wg21-p2561r2 +WG21-P2561R2 +P2561R2 +- a:wg21-p2562r0 WG21-P2562R0 P2562R0 @@ -85350,10 +92970,22 @@ a:wg21-p2572r0 WG21-P2572R0 P2572R0 - +a:wg21-p2572r1 +WG21-P2572R1 +P2572R1 +- a:wg21-p2573r0 WG21-P2573R0 P2573R0 - +a:wg21-p2573r1 +WG21-P2573R1 +P2573R1 +- +a:wg21-p2573r2 +WG21-P2573R2 +P2573R2 +- a:wg21-p2574r0 WG21-P2574R0 P2574R0 @@ -85450,6 +93082,10 @@ a:wg21-p2588r2 WG21-P2588R2 P2588R2 - +a:wg21-p2588r3 +WG21-P2588R3 +P2588R3 +- a:wg21-p2589r0 WG21-P2589R0 P2589R0 @@ -85482,6 +93118,18 @@ a:wg21-p2591r2 WG21-P2591R2 P2591R2 - +a:wg21-p2591r3 +WG21-P2591R3 +P2591R3 +- +a:wg21-p2591r4 +WG21-P2591R4 +P2591R4 +- +a:wg21-p2591r5 +WG21-P2591R5 +P2591R5 +- a:wg21-p2592r0 WG21-P2592R0 P2592R0 @@ -85494,14 +93142,26 @@ a:wg21-p2592r2 WG21-P2592R2 P2592R2 - +a:wg21-p2592r3 +WG21-P2592R3 +P2592R3 +- a:wg21-p2593r0 WG21-P2593R0 P2593R0 - +a:wg21-p2593r1 +WG21-P2593R1 +P2593R1 +- a:wg21-p2594r0 WG21-P2594R0 P2594R0 - +a:wg21-p2594r1 +WG21-P2594R1 +P2594R1 +- a:wg21-p2596r0 WG21-P2596R0 P2596R0 @@ -85578,6 +93238,14 @@ a:wg21-p2609r1 WG21-P2609R1 P2609R1 - +a:wg21-p2609r2 +WG21-P2609R2 +P2609R2 +- +a:wg21-p2609r3 +WG21-P2609R3 +P2609R3 +- a:wg21-p2610r0 WG21-P2610R0 P2610R0 @@ -85630,6 +93298,10 @@ a:wg21-p2616r3 WG21-P2616R3 P2616R3 - +a:wg21-p2616r4 +WG21-P2616R4 +P2616R4 +- a:wg21-p2617r0 WG21-P2617R0 P2617R0 @@ -85658,6 +93330,14 @@ a:wg21-p2621r1 WG21-P2621R1 P2621R1 - +a:wg21-p2621r2 +WG21-P2621R2 +P2621R2 +- +a:wg21-p2621r3 +WG21-P2621R3 +P2621R3 +- a:wg21-p2622r0 WG21-P2622R0 P2622R0 @@ -85710,6 +93390,14 @@ a:wg21-p2630r2 WG21-P2630R2 P2630R2 - +a:wg21-p2630r3 +WG21-P2630R3 +P2630R3 +- +a:wg21-p2630r4 +WG21-P2630R4 +P2630R4 +- a:wg21-p2631r0 WG21-P2631R0 P2631R0 @@ -85750,6 +93438,14 @@ a:wg21-p2637r1 WG21-P2637R1 P2637R1 - +a:wg21-p2637r2 +WG21-P2637R2 +P2637R2 +- +a:wg21-p2637r3 +WG21-P2637R3 +P2637R3 +- a:wg21-p2638r0 WG21-P2638R0 P2638R0 @@ -85778,6 +93474,18 @@ a:wg21-p2641r1 WG21-P2641R1 P2641R1 - +a:wg21-p2641r2 +WG21-P2641R2 +P2641R2 +- +a:wg21-p2641r3 +WG21-P2641R3 +P2641R3 +- +a:wg21-p2641r4 +WG21-P2641R4 +P2641R4 +- a:wg21-p2642r0 WG21-P2642R0 P2642R0 @@ -85790,10 +93498,34 @@ a:wg21-p2642r2 WG21-P2642R2 P2642R2 - +a:wg21-p2642r3 +WG21-P2642R3 +P2642R3 +- +a:wg21-p2642r4 +WG21-P2642R4 +P2642R4 +- +a:wg21-p2642r5 +WG21-P2642R5 +P2642R5 +- +a:wg21-p2642r6 +WG21-P2642R6 +P2642R6 +- a:wg21-p2643r0 WG21-P2643R0 P2643R0 - +a:wg21-p2643r1 +WG21-P2643R1 +P2643R1 +- +a:wg21-p2643r2 +WG21-P2643R2 +P2643R2 +- a:wg21-p2644r0 WG21-P2644R0 P2644R0 @@ -85834,6 +93566,10 @@ a:wg21-p2652r1 WG21-P2652R1 P2652R1 - +a:wg21-p2652r2 +WG21-P2652R2 +P2652R2 +- a:wg21-p2653r0 WG21-P2653R0 P2653R0 @@ -85842,6 +93578,10 @@ a:wg21-p2653r1 WG21-P2653R1 P2653R1 - +a:wg21-p2654r0 +WG21-P2654R0 +P2654R0 +- a:wg21-p2655r0 WG21-P2655R0 P2655R0 @@ -85850,6 +93590,14 @@ a:wg21-p2655r1 WG21-P2655R1 P2655R1 - +a:wg21-p2655r2 +WG21-P2655R2 +P2655R2 +- +a:wg21-p2655r3 +WG21-P2655R3 +P2655R3 +- a:wg21-p2656r0 WG21-P2656R0 P2656R0 @@ -85858,6 +93606,14 @@ a:wg21-p2656r1 WG21-P2656R1 P2656R1 - +a:wg21-p2656r2 +WG21-P2656R2 +P2656R2 +- +a:wg21-p2656r3 +WG21-P2656R3 +P2656R3 +- a:wg21-p2657r0 WG21-P2657R0 P2657R0 @@ -85898,14 +93654,74 @@ a:wg21-p2662r0 WG21-P2662R0 P2662R0 - +a:wg21-p2662r1 +WG21-P2662R1 +P2662R1 +- +a:wg21-p2662r2 +WG21-P2662R2 +P2662R2 +- +a:wg21-p2662r3 +WG21-P2662R3 +P2662R3 +- a:wg21-p2663r0 WG21-P2663R0 P2663R0 - +a:wg21-p2663r1 +WG21-P2663R1 +P2663R1 +- +a:wg21-p2663r2 +WG21-P2663R2 +P2663R2 +- +a:wg21-p2663r3 +WG21-P2663R3 +P2663R3 +- +a:wg21-p2663r4 +WG21-P2663R4 +P2663R4 +- +a:wg21-p2663r5 +WG21-P2663R5 +P2663R5 +- a:wg21-p2664r0 WG21-P2664R0 P2664R0 - +a:wg21-p2664r1 +WG21-P2664R1 +P2664R1 +- +a:wg21-p2664r2 +WG21-P2664R2 +P2664R2 +- +a:wg21-p2664r3 +WG21-P2664R3 +P2664R3 +- +a:wg21-p2664r4 +WG21-P2664R4 +P2664R4 +- +a:wg21-p2664r5 +WG21-P2664R5 +P2664R5 +- +a:wg21-p2664r6 +WG21-P2664R6 +P2664R6 +- +a:wg21-p2664r7 +WG21-P2664R7 +P2664R7 +- a:wg21-p2665r0 WG21-P2665R0 P2665R0 @@ -85930,6 +93746,10 @@ a:wg21-p2670r0 WG21-P2670R0 P2670R0 - +a:wg21-p2670r1 +WG21-P2670R1 +P2670R1 +- a:wg21-p2671r0 WG21-P2671R0 P2671R0 @@ -85982,6 +93802,10 @@ a:wg21-p2679r1 WG21-P2679R1 P2679R1 - +a:wg21-p2679r2 +WG21-P2679R2 +P2679R2 +- a:wg21-p2680r0 WG21-P2680R0 P2680R0 @@ -85994,6 +93818,10 @@ a:wg21-p2681r0 WG21-P2681R0 P2681R0 - +a:wg21-p2681r1 +WG21-P2681R1 +P2681R1 +- a:wg21-p2682r0 WG21-P2682R0 P2682R0 @@ -86010,10 +93838,30 @@ a:wg21-p2685r0 WG21-P2685R0 P2685R0 - +a:wg21-p2685r1 +WG21-P2685R1 +P2685R1 +- a:wg21-p2686r0 WG21-P2686R0 P2686R0 - +a:wg21-p2686r1 +WG21-P2686R1 +P2686R1 +- +a:wg21-p2686r2 +WG21-P2686R2 +P2686R2 +- +a:wg21-p2686r3 +WG21-P2686R3 +P2686R3 +- +a:wg21-p2686r4 +WG21-P2686R4 +P2686R4 +- a:wg21-p2687r0 WG21-P2687R0 P2687R0 @@ -86022,6 +93870,10 @@ a:wg21-p2688r0 WG21-P2688R0 P2688R0 - +a:wg21-p2688r1 +WG21-P2688R1 +P2688R1 +- a:wg21-p2689r0 WG21-P2689R0 P2689R0 @@ -86030,10 +93882,22 @@ a:wg21-p2689r1 WG21-P2689R1 P2689R1 - +a:wg21-p2689r2 +WG21-P2689R2 +P2689R2 +- +a:wg21-p2689r3 +WG21-P2689R3 +P2689R3 +- a:wg21-p2690r0 WG21-P2690R0 P2690R0 - +a:wg21-p2690r1 +WG21-P2690R1 +P2690R1 +- a:wg21-p2691r0 WG21-P2691R0 P2691R0 @@ -86046,10 +93910,18 @@ a:wg21-p2693r0 WG21-P2693R0 P2693R0 - +a:wg21-p2693r1 +WG21-P2693R1 +P2693R1 +- a:wg21-p2695r0 WG21-P2695R0 P2695R0 - +a:wg21-p2695r1 +WG21-P2695R1 +P2695R1 +- a:wg21-p2696r0 WG21-P2696R0 P2696R0 @@ -86058,6 +93930,10 @@ a:wg21-p2697r0 WG21-P2697R0 P2697R0 - +a:wg21-p2697r1 +WG21-P2697R1 +P2697R1 +- a:wg21-p2698r0 WG21-P2698R0 P2698R0 @@ -86134,14 +94010,46 @@ a:wg21-p2714r0 WG21-P2714R0 P2714R0 - +a:wg21-p2714r1 +WG21-P2714R1 +P2714R1 +- a:wg21-p2717r0 WG21-P2717R0 P2717R0 - +a:wg21-p2717r1 +WG21-P2717R1 +P2717R1 +- +a:wg21-p2717r2 +WG21-P2717R2 +P2717R2 +- +a:wg21-p2717r3 +WG21-P2717R3 +P2717R3 +- +a:wg21-p2717r4 +WG21-P2717R4 +P2717R4 +- +a:wg21-p2717r5 +WG21-P2717R5 +P2717R5 +- a:wg21-p2718r0 WG21-P2718R0 P2718R0 - +a:wg21-p2719r0 +WG21-P2719R0 +P2719R0 +- +a:wg21-p2721r0 +WG21-P2721R0 +P2721R0 +- a:wg21-p2722r0 WG21-P2722R0 P2722R0 @@ -86158,6 +94066,10 @@ a:wg21-p2724r0 WG21-P2724R0 P2724R0 - +a:wg21-p2724r1 +WG21-P2724R1 +P2724R1 +- a:wg21-p2725r0 WG21-P2725R0 P2725R0 @@ -86174,10 +94086,50 @@ a:wg21-p2727r0 WG21-P2727R0 P2727R0 - +a:wg21-p2727r1 +WG21-P2727R1 +P2727R1 +- +a:wg21-p2727r2 +WG21-P2727R2 +P2727R2 +- +a:wg21-p2727r3 +WG21-P2727R3 +P2727R3 +- +a:wg21-p2727r4 +WG21-P2727R4 +P2727R4 +- a:wg21-p2728r0 WG21-P2728R0 P2728R0 - +a:wg21-p2728r1 +WG21-P2728R1 +P2728R1 +- +a:wg21-p2728r2 +WG21-P2728R2 +P2728R2 +- +a:wg21-p2728r3 +WG21-P2728R3 +P2728R3 +- +a:wg21-p2728r4 +WG21-P2728R4 +P2728R4 +- +a:wg21-p2728r5 +WG21-P2728R5 +P2728R5 +- +a:wg21-p2728r6 +WG21-P2728R6 +P2728R6 +- a:wg21-p2729r0 WG21-P2729R0 P2729R0 @@ -86186,6 +94138,10 @@ a:wg21-p2730r0 WG21-P2730R0 P2730R0 - +a:wg21-p2730r1 +WG21-P2730R1 +P2730R1 +- a:wg21-p2732r0 WG21-P2732R0 P2732R0 @@ -86194,6 +94150,18 @@ a:wg21-p2733r0 WG21-P2733R0 P2733R0 - +a:wg21-p2733r1 +WG21-P2733R1 +P2733R1 +- +a:wg21-p2733r2 +WG21-P2733R2 +P2733R2 +- +a:wg21-p2733r3 +WG21-P2733R3 +P2733R3 +- a:wg21-p2734r0 WG21-P2734R0 P2734R0 @@ -86206,6 +94174,10 @@ a:wg21-p2736r0 WG21-P2736R0 P2736R0 - +a:wg21-p2736r2 +WG21-P2736R2 +P2736R2 +- a:wg21-p2737r0 WG21-P2737R0 P2737R0 @@ -86214,6 +94186,10 @@ a:wg21-p2738r0 WG21-P2738R0 P2738R0 - +a:wg21-p2738r1 +WG21-P2738R1 +P2738R1 +- a:wg21-p2739r0 WG21-P2739R0 P2739R0 @@ -86222,14 +94198,42 @@ a:wg21-p2740r0 WG21-P2740R0 P2740R0 - +a:wg21-p2740r1 +WG21-P2740R1 +P2740R1 +- +a:wg21-p2740r2 +WG21-P2740R2 +P2740R2 +- a:wg21-p2741r0 WG21-P2741R0 P2741R0 - +a:wg21-p2741r1 +WG21-P2741R1 +P2741R1 +- +a:wg21-p2741r2 +WG21-P2741R2 +P2741R2 +- +a:wg21-p2741r3 +WG21-P2741R3 +P2741R3 +- a:wg21-p2742r0 WG21-P2742R0 P2742R0 - +a:wg21-p2742r1 +WG21-P2742R1 +P2742R1 +- +a:wg21-p2742r2 +WG21-P2742R2 +P2742R2 +- a:wg21-p2743r0 WG21-P2743R0 P2743R0 @@ -86238,26 +94242,114 @@ a:wg21-p2746r0 WG21-P2746R0 P2746R0 - +a:wg21-p2746r1 +WG21-P2746R1 +P2746R1 +- +a:wg21-p2746r2 +WG21-P2746R2 +P2746R2 +- +a:wg21-p2746r3 +WG21-P2746R3 +P2746R3 +- +a:wg21-p2746r4 +WG21-P2746R4 +P2746R4 +- +a:wg21-p2746r5 +WG21-P2746R5 +P2746R5 +- a:wg21-p2747r0 WG21-P2747R0 P2747R0 - +a:wg21-p2747r1 +WG21-P2747R1 +P2747R1 +- +a:wg21-p2747r2 +WG21-P2747R2 +P2747R2 +- a:wg21-p2748r0 WG21-P2748R0 P2748R0 - +a:wg21-p2748r1 +WG21-P2748R1 +P2748R1 +- +a:wg21-p2748r2 +WG21-P2748R2 +P2748R2 +- +a:wg21-p2748r3 +WG21-P2748R3 +P2748R3 +- +a:wg21-p2748r4 +WG21-P2748R4 +P2748R4 +- +a:wg21-p2748r5 +WG21-P2748R5 +P2748R5 +- +a:wg21-p2749r0 +WG21-P2749R0 +P2749R0 +- a:wg21-p2750r0 WG21-P2750R0 P2750R0 - +a:wg21-p2750r1 +WG21-P2750R1 +P2750R1 +- +a:wg21-p2750r2 +WG21-P2750R2 +P2750R2 +- a:wg21-p2751r0 WG21-P2751R0 P2751R0 - +a:wg21-p2751r1 +WG21-P2751R1 +P2751R1 +- a:wg21-p2752r0 WG21-P2752R0 P2752R0 - +a:wg21-p2752r1 +WG21-P2752R1 +P2752R1 +- +a:wg21-p2752r2 +WG21-P2752R2 +P2752R2 +- +a:wg21-p2752r3 +WG21-P2752R3 +P2752R3 +- +a:wg21-p2754r0 +WG21-P2754R0 +P2754R0 +- +a:wg21-p2755r0 +WG21-P2755R0 +P2755R0 +- +a:wg21-p2755r1 +WG21-P2755R1 +P2755R1 +- a:wg21-p2756r0 WG21-P2756R0 P2756R0 @@ -86266,22 +94358,86 @@ a:wg21-p2757r0 WG21-P2757R0 P2757R0 - +a:wg21-p2757r1 +WG21-P2757R1 +P2757R1 +- +a:wg21-p2757r2 +WG21-P2757R2 +P2757R2 +- +a:wg21-p2757r3 +WG21-P2757R3 +P2757R3 +- a:wg21-p2758r0 WG21-P2758R0 P2758R0 - +a:wg21-p2758r1 +WG21-P2758R1 +P2758R1 +- +a:wg21-p2758r2 +WG21-P2758R2 +P2758R2 +- +a:wg21-p2758r3 +WG21-P2758R3 +P2758R3 +- a:wg21-p2759r0 WG21-P2759R0 P2759R0 - +a:wg21-p2759r1 +WG21-P2759R1 +P2759R1 +- +a:wg21-p2760r0 +WG21-P2760R0 +P2760R0 +- +a:wg21-p2760r1 +WG21-P2760R1 +P2760R1 +- +a:wg21-p2761r0 +WG21-P2761R0 +P2761R0 +- +a:wg21-p2761r1 +WG21-P2761R1 +P2761R1 +- +a:wg21-p2761r2 +WG21-P2761R2 +P2761R2 +- +a:wg21-p2761r3 +WG21-P2761R3 +P2761R3 +- a:wg21-p2762r0 WG21-P2762R0 P2762R0 - +a:wg21-p2762r1 +WG21-P2762R1 +P2762R1 +- +a:wg21-p2762r2 +WG21-P2762R2 +P2762R2 +- a:wg21-p2763r0 WG21-P2763R0 P2763R0 - +a:wg21-p2763r1 +WG21-P2763R1 +P2763R1 +- a:wg21-p2764r0 WG21-P2764R0 P2764R0 @@ -86294,2479 +94450,7340 @@ a:wg21-p2766r0 WG21-P2766R0 P2766R0 - +a:wg21-p2767r0 +WG21-P2767R0 +P2767R0 +- +a:wg21-p2767r1 +WG21-P2767R1 +P2767R1 +- +a:wg21-p2767r2 +WG21-P2767R2 +P2767R2 +- a:wg21-p2769r0 WG21-P2769R0 P2769R0 - -a:wg21-p3141 -WG21-P3141 -P3141 +a:wg21-p2769r1 +WG21-P2769R1 +P2769R1 - -a:wg21-sd1 -WG21-SD1 -SD1 +a:wg21-p2769r2 +WG21-P2769R2 +P2769R2 - -a:wg21-sd3 -WG21-SD3 -SD3 +a:wg21-p2770r0 +WG21-P2770R0 +P2770R0 - -a:wg21-sd4 -WG21-SD4 -SD4 +a:wg21-p2771r0 +WG21-P2771R0 +P2771R0 - -a:wg21-sd5 -WG21-SD5 -SD5 +a:wg21-p2771r1 +WG21-P2771R1 +P2771R1 - -a:wg21-sd6 -WG21-SD6 -SD6 +a:wg21-p2772r0 +WG21-P2772R0 +P2772R0 - -a:wg21-sd7 -WG21-SD7 -SD7 +a:wg21-p2773r0 +WG21-P2773R0 +P2773R0 - -a:wg21-sd8 -WG21-SD8 -SD8 +a:wg21-p2774r0 +WG21-P2774R0 +P2774R0 - -d:wgs84 -WGS84 -3 January 2000 - -National Imagery and Mapping Agency Technical Report 8350.2, Third Edition - - - - - +a:wg21-p2774r1 +WG21-P2774R1 +P2774R1 - -d:wgsl -WGSL -26 January 2023 -WD -WebGPU Shading Language -https://www.w3.org/TR/WGSL/ -https://gpuweb.github.io/gpuweb/wgsl/ - - - -Alan Baker -Mehmet Oguz Derin -David Neto +a:wg21-p2775r0 +WG21-P2775R0 +P2775R0 - -d:wgsl-20210518 -WGSL-20210518 -18 May 2021 -WD -WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210518/ -https://www.w3.org/TR/2021/WD-WGSL-20210518/ - - - -David Neto -Myles Maxfield +a:wg21-p2776r0 +WG21-P2776R0 +P2776R0 - -d:wgsl-20210526 -WGSL-20210526 -26 May 2021 -WD -WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210526/ -https://www.w3.org/TR/2021/WD-WGSL-20210526/ - - - -David Neto -Myles Maxfield +a:wg21-p2779r0 +WG21-P2779R0 +P2779R0 - -d:wgsl-20210527 -WGSL-20210527 -27 May 2021 -WD -WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210527/ -https://www.w3.org/TR/2021/WD-WGSL-20210527/ - - - -David Neto -Myles Maxfield +a:wg21-p2779r1 +WG21-P2779R1 +P2779R1 - -d:wgsl-20210528 -WGSL-20210528 -28 May 2021 -WD -WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210528/ -https://www.w3.org/TR/2021/WD-WGSL-20210528/ - - - -David Neto -Myles Maxfield +a:wg21-p2780r0 +WG21-P2780R0 +P2780R0 - -d:wgsl-20210531 -WGSL-20210531 -31 May 2021 -WD -WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210531/ -https://www.w3.org/TR/2021/WD-WGSL-20210531/ +a:wg21-p2781r1 +WG21-P2781R1 +P2781R1 +- +a:wg21-p2781r2 +WG21-P2781R2 +P2781R2 +- +a:wg21-p2781r3 +WG21-P2781R3 +P2781R3 +- +a:wg21-p2781r4 +WG21-P2781R4 +P2781R4 +- +a:wg21-p2782r0 +WG21-P2782R0 +P2782R0 +- +a:wg21-p2784r0 +WG21-P2784R0 +P2784R0 +- +a:wg21-p2785r0 +WG21-P2785R0 +P2785R0 +- +a:wg21-p2785r1 +WG21-P2785R1 +P2785R1 +- +a:wg21-p2785r2 +WG21-P2785R2 +P2785R2 +- +a:wg21-p2785r3 +WG21-P2785R3 +P2785R3 +- +a:wg21-p2786r0 +WG21-P2786R0 +P2786R0 +- +a:wg21-p2786r1 +WG21-P2786R1 +P2786R1 +- +a:wg21-p2786r2 +WG21-P2786R2 +P2786R2 +- +a:wg21-p2786r3 +WG21-P2786R3 +P2786R3 +- +a:wg21-p2786r4 +WG21-P2786R4 +P2786R4 +- +a:wg21-p2786r5 +WG21-P2786R5 +P2786R5 +- +a:wg21-p2786r6 +WG21-P2786R6 +P2786R6 +- +a:wg21-p2787r0 +WG21-P2787R0 +P2787R0 +- +a:wg21-p2787r1 +WG21-P2787R1 +P2787R1 +- +a:wg21-p2788r0 +WG21-P2788R0 +P2788R0 +- +a:wg21-p2789r0 +WG21-P2789R0 +P2789R0 +- +a:wg21-p2790r0 +WG21-P2790R0 +P2790R0 +- +a:wg21-p2791r0 +WG21-P2791R0 +P2791R0 +- +a:wg21-p2795r0 +WG21-P2795R0 +P2795R0 +- +a:wg21-p2795r1 +WG21-P2795R1 +P2795R1 +- +a:wg21-p2795r2 +WG21-P2795R2 +P2795R2 +- +a:wg21-p2795r3 +WG21-P2795R3 +P2795R3 +- +a:wg21-p2795r4 +WG21-P2795R4 +P2795R4 +- +a:wg21-p2795r5 +WG21-P2795R5 +P2795R5 +- +a:wg21-p2796r0 +WG21-P2796R0 +P2796R0 +- +a:wg21-p2797r0 +WG21-P2797R0 +P2797R0 +- +a:wg21-p2798r0 +WG21-P2798R0 +P2798R0 +- +a:wg21-p2799r0 +WG21-P2799R0 +P2799R0 +- +a:wg21-p2800r0 +WG21-P2800R0 +P2800R0 +- +a:wg21-p2802r0 +WG21-P2802R0 +P2802R0 +- +a:wg21-p2803r0 +WG21-P2803R0 +P2803R0 +- +a:wg21-p2805r0 +WG21-P2805R0 +P2805R0 +- +a:wg21-p2806r0 +WG21-P2806R0 +P2806R0 +- +a:wg21-p2806r1 +WG21-P2806R1 +P2806R1 +- +a:wg21-p2806r2 +WG21-P2806R2 +P2806R2 +- +a:wg21-p2807r0 +WG21-P2807R0 +P2807R0 +- +a:wg21-p2808r0 +WG21-P2808R0 +P2808R0 +- +a:wg21-p2809r0 +WG21-P2809R0 +P2809R0 +- +a:wg21-p2809r1 +WG21-P2809R1 +P2809R1 +- +a:wg21-p2809r2 +WG21-P2809R2 +P2809R2 +- +a:wg21-p2809r3 +WG21-P2809R3 +P2809R3 +- +a:wg21-p2810r0 +WG21-P2810R0 +P2810R0 +- +a:wg21-p2810r1 +WG21-P2810R1 +P2810R1 +- +a:wg21-p2810r2 +WG21-P2810R2 +P2810R2 +- +a:wg21-p2810r3 +WG21-P2810R3 +P2810R3 +- +a:wg21-p2810r4 +WG21-P2810R4 +P2810R4 +- +a:wg21-p2811r0 +WG21-P2811R0 +P2811R0 +- +a:wg21-p2811r1 +WG21-P2811R1 +P2811R1 +- +a:wg21-p2811r2 +WG21-P2811R2 +P2811R2 +- +a:wg21-p2811r3 +WG21-P2811R3 +P2811R3 +- +a:wg21-p2811r4 +WG21-P2811R4 +P2811R4 +- +a:wg21-p2811r5 +WG21-P2811R5 +P2811R5 +- +a:wg21-p2811r6 +WG21-P2811R6 +P2811R6 +- +a:wg21-p2811r7 +WG21-P2811R7 +P2811R7 +- +a:wg21-p2812r0 +WG21-P2812R0 +P2812R0 +- +a:wg21-p2814r0 +WG21-P2814R0 +P2814R0 +- +a:wg21-p2814r1 +WG21-P2814R1 +P2814R1 +- +a:wg21-p2815r0 +WG21-P2815R0 +P2815R0 +- +a:wg21-p2816r0 +WG21-P2816R0 +P2816R0 +- +a:wg21-p2817r0 +WG21-P2817R0 +P2817R0 +- +a:wg21-p2818r0 +WG21-P2818R0 +P2818R0 +- +a:wg21-p2819r0 +WG21-P2819R0 +P2819R0 +- +a:wg21-p2819r1 +WG21-P2819R1 +P2819R1 +- +a:wg21-p2819r2 +WG21-P2819R2 +P2819R2 +- +a:wg21-p2821r0 +WG21-P2821R0 +P2821R0 +- +a:wg21-p2821r1 +WG21-P2821R1 +P2821R1 +- +a:wg21-p2821r2 +WG21-P2821R2 +P2821R2 +- +a:wg21-p2821r3 +WG21-P2821R3 +P2821R3 +- +a:wg21-p2821r4 +WG21-P2821R4 +P2821R4 +- +a:wg21-p2821r5 +WG21-P2821R5 +P2821R5 +- +a:wg21-p2822r0 +WG21-P2822R0 +P2822R0 +- +a:wg21-p2822r1 +WG21-P2822R1 +P2822R1 +- +a:wg21-p2822r2 +WG21-P2822R2 +P2822R2 +- +a:wg21-p2824r0 +WG21-P2824R0 +P2824R0 +- +a:wg21-p2825r0 +WG21-P2825R0 +P2825R0 +- +a:wg21-p2825r1 +WG21-P2825R1 +P2825R1 +- +a:wg21-p2825r2 +WG21-P2825R2 +P2825R2 +- +a:wg21-p2826r0 +WG21-P2826R0 +P2826R0 +- +a:wg21-p2826r1 +WG21-P2826R1 +P2826R1 +- +a:wg21-p2826r2 +WG21-P2826R2 +P2826R2 +- +a:wg21-p2827r0 +WG21-P2827R0 +P2827R0 +- +a:wg21-p2827r1 +WG21-P2827R1 +P2827R1 +- +a:wg21-p2828r0 +WG21-P2828R0 +P2828R0 +- +a:wg21-p2828r1 +WG21-P2828R1 +P2828R1 +- +a:wg21-p2828r2 +WG21-P2828R2 +P2828R2 +- +a:wg21-p2829r0 +WG21-P2829R0 +P2829R0 +- +a:wg21-p2830r0 +WG21-P2830R0 +P2830R0 +- +a:wg21-p2830r1 +WG21-P2830R1 +P2830R1 +- +a:wg21-p2830r2 +WG21-P2830R2 +P2830R2 +- +a:wg21-p2830r3 +WG21-P2830R3 +P2830R3 +- +a:wg21-p2830r4 +WG21-P2830R4 +P2830R4 +- +a:wg21-p2831r0 +WG21-P2831R0 +P2831R0 +- +a:wg21-p2833r0 +WG21-P2833R0 +P2833R0 +- +a:wg21-p2833r1 +WG21-P2833R1 +P2833R1 +- +a:wg21-p2833r2 +WG21-P2833R2 +P2833R2 +- +a:wg21-p2834r0 +WG21-P2834R0 +P2834R0 +- +a:wg21-p2834r1 +WG21-P2834R1 +P2834R1 +- +a:wg21-p2835r0 +WG21-P2835R0 +P2835R0 +- +a:wg21-p2835r1 +WG21-P2835R1 +P2835R1 +- +a:wg21-p2835r2 +WG21-P2835R2 +P2835R2 +- +a:wg21-p2835r3 +WG21-P2835R3 +P2835R3 +- +a:wg21-p2835r4 +WG21-P2835R4 +P2835R4 +- +a:wg21-p2836r0 +WG21-P2836R0 +P2836R0 +- +a:wg21-p2836r1 +WG21-P2836R1 +P2836R1 +- +a:wg21-p2837r0 +WG21-P2837R0 +P2837R0 +- +a:wg21-p2838r0 +WG21-P2838R0 +P2838R0 +- +a:wg21-p2839r0 +WG21-P2839R0 +P2839R0 +- +a:wg21-p2841r0 +WG21-P2841R0 +P2841R0 +- +a:wg21-p2841r1 +WG21-P2841R1 +P2841R1 +- +a:wg21-p2841r2 +WG21-P2841R2 +P2841R2 +- +a:wg21-p2841r3 +WG21-P2841R3 +P2841R3 +- +a:wg21-p2842r0 +WG21-P2842R0 +P2842R0 +- +a:wg21-p2843r0 +WG21-P2843R0 +P2843R0 +- +a:wg21-p2845r0 +WG21-P2845R0 +P2845R0 +- +a:wg21-p2845r1 +WG21-P2845R1 +P2845R1 +- +a:wg21-p2845r2 +WG21-P2845R2 +P2845R2 +- +a:wg21-p2845r3 +WG21-P2845R3 +P2845R3 +- +a:wg21-p2845r4 +WG21-P2845R4 +P2845R4 +- +a:wg21-p2845r5 +WG21-P2845R5 +P2845R5 +- +a:wg21-p2845r6 +WG21-P2845R6 +P2845R6 +- +a:wg21-p2845r7 +WG21-P2845R7 +P2845R7 +- +a:wg21-p2845r8 +WG21-P2845R8 +P2845R8 +- +a:wg21-p2846r0 +WG21-P2846R0 +P2846R0 +- +a:wg21-p2846r1 +WG21-P2846R1 +P2846R1 +- +a:wg21-p2846r2 +WG21-P2846R2 +P2846R2 +- +a:wg21-p2848r0 +WG21-P2848R0 +P2848R0 +- +a:wg21-p2848r1 +WG21-P2848R1 +P2848R1 +- +a:wg21-p2849r0 +WG21-P2849R0 +P2849R0 +- +a:wg21-p2850r0 +WG21-P2850R0 +P2850R0 +- +a:wg21-p2852r0 +WG21-P2852R0 +P2852R0 +- +a:wg21-p2853r0 +WG21-P2853R0 +P2853R0 +- +a:wg21-p2855r0 +WG21-P2855R0 +P2855R0 +- +a:wg21-p2855r1 +WG21-P2855R1 +P2855R1 +- +a:wg21-p2857r0 +WG21-P2857R0 +P2857R0 +- +a:wg21-p2858r0 +WG21-P2858R0 +P2858R0 +- +a:wg21-p2861r0 +WG21-P2861R0 +P2861R0 +- +a:wg21-p2862r0 +WG21-P2862R0 +P2862R0 +- +a:wg21-p2862r1 +WG21-P2862R1 +P2862R1 +- +a:wg21-p2863r0 +WG21-P2863R0 +P2863R0 +- +a:wg21-p2863r1 +WG21-P2863R1 +P2863R1 +- +a:wg21-p2863r2 +WG21-P2863R2 +P2863R2 +- +a:wg21-p2863r3 +WG21-P2863R3 +P2863R3 +- +a:wg21-p2863r4 +WG21-P2863R4 +P2863R4 +- +a:wg21-p2863r5 +WG21-P2863R5 +P2863R5 +- +a:wg21-p2863r6 +WG21-P2863R6 +P2863R6 +- +a:wg21-p2863r7 +WG21-P2863R7 +P2863R7 +- +a:wg21-p2864r0 +WG21-P2864R0 +P2864R0 +- +a:wg21-p2864r1 +WG21-P2864R1 +P2864R1 +- +a:wg21-p2864r2 +WG21-P2864R2 +P2864R2 +- +a:wg21-p2865r0 +WG21-P2865R0 +P2865R0 +- +a:wg21-p2865r1 +WG21-P2865R1 +P2865R1 +- +a:wg21-p2865r2 +WG21-P2865R2 +P2865R2 +- +a:wg21-p2865r3 +WG21-P2865R3 +P2865R3 +- +a:wg21-p2865r4 +WG21-P2865R4 +P2865R4 +- +a:wg21-p2865r5 +WG21-P2865R5 +P2865R5 +- +a:wg21-p2866r0 +WG21-P2866R0 +P2866R0 +- +a:wg21-p2866r1 +WG21-P2866R1 +P2866R1 +- +a:wg21-p2866r2 +WG21-P2866R2 +P2866R2 +- +a:wg21-p2866r3 +WG21-P2866R3 +P2866R3 +- +a:wg21-p2866r4 +WG21-P2866R4 +P2866R4 +- +a:wg21-p2867r0 +WG21-P2867R0 +P2867R0 +- +a:wg21-p2867r1 +WG21-P2867R1 +P2867R1 +- +a:wg21-p2867r2 +WG21-P2867R2 +P2867R2 +- +a:wg21-p2868r0 +WG21-P2868R0 +P2868R0 +- +a:wg21-p2868r1 +WG21-P2868R1 +P2868R1 +- +a:wg21-p2868r2 +WG21-P2868R2 +P2868R2 +- +a:wg21-p2868r3 +WG21-P2868R3 +P2868R3 +- +a:wg21-p2869r0 +WG21-P2869R0 +P2869R0 +- +a:wg21-p2869r1 +WG21-P2869R1 +P2869R1 +- +a:wg21-p2869r2 +WG21-P2869R2 +P2869R2 +- +a:wg21-p2869r3 +WG21-P2869R3 +P2869R3 +- +a:wg21-p2869r4 +WG21-P2869R4 +P2869R4 +- +a:wg21-p2870r0 +WG21-P2870R0 +P2870R0 +- +a:wg21-p2870r1 +WG21-P2870R1 +P2870R1 +- +a:wg21-p2870r2 +WG21-P2870R2 +P2870R2 +- +a:wg21-p2870r3 +WG21-P2870R3 +P2870R3 +- +a:wg21-p2871r0 +WG21-P2871R0 +P2871R0 +- +a:wg21-p2871r1 +WG21-P2871R1 +P2871R1 +- +a:wg21-p2871r2 +WG21-P2871R2 +P2871R2 +- +a:wg21-p2871r3 +WG21-P2871R3 +P2871R3 +- +a:wg21-p2872r0 +WG21-P2872R0 +P2872R0 +- +a:wg21-p2872r1 +WG21-P2872R1 +P2872R1 +- +a:wg21-p2872r2 +WG21-P2872R2 +P2872R2 +- +a:wg21-p2872r3 +WG21-P2872R3 +P2872R3 +- +a:wg21-p2873r0 +WG21-P2873R0 +P2873R0 +- +a:wg21-p2873r1 +WG21-P2873R1 +P2873R1 +- +a:wg21-p2873r2 +WG21-P2873R2 +P2873R2 +- +a:wg21-p2874r0 +WG21-P2874R0 +P2874R0 +- +a:wg21-p2874r1 +WG21-P2874R1 +P2874R1 +- +a:wg21-p2874r2 +WG21-P2874R2 +P2874R2 +- +a:wg21-p2875r0 +WG21-P2875R0 +P2875R0 +- +a:wg21-p2875r1 +WG21-P2875R1 +P2875R1 +- +a:wg21-p2875r2 +WG21-P2875R2 +P2875R2 +- +a:wg21-p2875r3 +WG21-P2875R3 +P2875R3 +- +a:wg21-p2875r4 +WG21-P2875R4 +P2875R4 +- +a:wg21-p2876r0 +WG21-P2876R0 +P2876R0 +- +a:wg21-p2876r1 +WG21-P2876R1 +P2876R1 +- +a:wg21-p2877r0 +WG21-P2877R0 +P2877R0 +- +a:wg21-p2878r0 +WG21-P2878R0 +P2878R0 +- +a:wg21-p2878r1 +WG21-P2878R1 +P2878R1 +- +a:wg21-p2878r2 +WG21-P2878R2 +P2878R2 +- +a:wg21-p2878r3 +WG21-P2878R3 +P2878R3 +- +a:wg21-p2878r4 +WG21-P2878R4 +P2878R4 +- +a:wg21-p2878r5 +WG21-P2878R5 +P2878R5 +- +a:wg21-p2878r6 +WG21-P2878R6 +P2878R6 +- +a:wg21-p2880r0 +WG21-P2880R0 +P2880R0 +- +a:wg21-p2881r0 +WG21-P2881R0 +P2881R0 +- +a:wg21-p2882r0 +WG21-P2882R0 +P2882R0 +- +a:wg21-p2883r0 +WG21-P2883R0 +P2883R0 +- +a:wg21-p2884r0 +WG21-P2884R0 +P2884R0 +- +a:wg21-p2885r0 +WG21-P2885R0 +P2885R0 +- +a:wg21-p2885r1 +WG21-P2885R1 +P2885R1 +- +a:wg21-p2885r2 +WG21-P2885R2 +P2885R2 +- +a:wg21-p2885r3 +WG21-P2885R3 +P2885R3 +- +a:wg21-p2886r0 +WG21-P2886R0 +P2886R0 +- +a:wg21-p2887r0 +WG21-P2887R0 +P2887R0 +- +a:wg21-p2888r0 +WG21-P2888R0 +P2888R0 +- +a:wg21-p2889r0 +WG21-P2889R0 +P2889R0 +- +a:wg21-p2890r0 +WG21-P2890R0 +P2890R0 +- +a:wg21-p2890r1 +WG21-P2890R1 +P2890R1 +- +a:wg21-p2890r2 +WG21-P2890R2 +P2890R2 +- +a:wg21-p2891r0 +WG21-P2891R0 +P2891R0 +- +a:wg21-p2892r0 +WG21-P2892R0 +P2892R0 +- +a:wg21-p2893r0 +WG21-P2893R0 +P2893R0 +- +a:wg21-p2893r1 +WG21-P2893R1 +P2893R1 +- +a:wg21-p2893r2 +WG21-P2893R2 +P2893R2 +- +a:wg21-p2893r3 +WG21-P2893R3 +P2893R3 +- +a:wg21-p2894r0 +WG21-P2894R0 +P2894R0 +- +a:wg21-p2894r1 +WG21-P2894R1 +P2894R1 +- +a:wg21-p2894r2 +WG21-P2894R2 +P2894R2 +- +a:wg21-p2895r0 +WG21-P2895R0 +P2895R0 +- +a:wg21-p2896r0 +WG21-P2896R0 +P2896R0 +- +a:wg21-p2897r0 +WG21-P2897R0 +P2897R0 +- +a:wg21-p2897r1 +WG21-P2897R1 +P2897R1 +- +a:wg21-p2897r2 +WG21-P2897R2 +P2897R2 +- +a:wg21-p2897r3 +WG21-P2897R3 +P2897R3 +- +a:wg21-p2897r4 +WG21-P2897R4 +P2897R4 +- +a:wg21-p2897r5 +WG21-P2897R5 +P2897R5 +- +a:wg21-p2898r0 +WG21-P2898R0 +P2898R0 +- +a:wg21-p2898r1 +WG21-P2898R1 +P2898R1 +- +a:wg21-p2900r0 +WG21-P2900R0 +P2900R0 +- +a:wg21-p2900r1 +WG21-P2900R1 +P2900R1 +- +a:wg21-p2900r2 +WG21-P2900R2 +P2900R2 +- +a:wg21-p2900r3 +WG21-P2900R3 +P2900R3 +- +a:wg21-p2900r4 +WG21-P2900R4 +P2900R4 +- +a:wg21-p2900r5 +WG21-P2900R5 +P2900R5 +- +a:wg21-p2900r6 +WG21-P2900R6 +P2900R6 +- +a:wg21-p2900r7 +WG21-P2900R7 +P2900R7 +- +a:wg21-p2900r8 +WG21-P2900R8 +P2900R8 +- +a:wg21-p2901r0 +WG21-P2901R0 +P2901R0 +- +a:wg21-p2902r0 +WG21-P2902R0 +P2902R0 +- +a:wg21-p2904r0 +WG21-P2904R0 +P2904R0 +- +a:wg21-p2905r0 +WG21-P2905R0 +P2905R0 +- +a:wg21-p2905r1 +WG21-P2905R1 +P2905R1 +- +a:wg21-p2905r2 +WG21-P2905R2 +P2905R2 +- +a:wg21-p2906r0 +WG21-P2906R0 +P2906R0 +- +a:wg21-p2909r0 +WG21-P2909R0 +P2909R0 +- +a:wg21-p2909r1 +WG21-P2909R1 +P2909R1 +- +a:wg21-p2909r2 +WG21-P2909R2 +P2909R2 +- +a:wg21-p2909r3 +WG21-P2909R3 +P2909R3 +- +a:wg21-p2909r4 +WG21-P2909R4 +P2909R4 +- +a:wg21-p2910r0 +WG21-P2910R0 +P2910R0 +- +a:wg21-p2911r0 +WG21-P2911R0 +P2911R0 +- +a:wg21-p2911r1 +WG21-P2911R1 +P2911R1 +- +a:wg21-p2912r0 +WG21-P2912R0 +P2912R0 +- +a:wg21-p2915r0 +WG21-P2915R0 +P2915R0 +- +a:wg21-p2917r0 +WG21-P2917R0 +P2917R0 +- +a:wg21-p2917r1 +WG21-P2917R1 +P2917R1 +- +a:wg21-p2918r0 +WG21-P2918R0 +P2918R0 +- +a:wg21-p2918r1 +WG21-P2918R1 +P2918R1 +- +a:wg21-p2918r2 +WG21-P2918R2 +P2918R2 +- +a:wg21-p2920r0 +WG21-P2920R0 +P2920R0 +- +a:wg21-p2921r0 +WG21-P2921R0 +P2921R0 +- +a:wg21-p2922r0 +WG21-P2922R0 +P2922R0 +- +a:wg21-p2925r0 +WG21-P2925R0 +P2925R0 +- +a:wg21-p2926r0 +WG21-P2926R0 +P2926R0 +- +a:wg21-p2927r0 +WG21-P2927R0 +P2927R0 +- +a:wg21-p2927r1 +WG21-P2927R1 +P2927R1 +- +a:wg21-p2927r2 +WG21-P2927R2 +P2927R2 +- +a:wg21-p2929r0 +WG21-P2929R0 +P2929R0 +- +a:wg21-p2930r0 +WG21-P2930R0 +P2930R0 +- +a:wg21-p2931r0 +WG21-P2931R0 +P2931R0 +- +a:wg21-p2932r0 +WG21-P2932R0 +P2932R0 +- +a:wg21-p2932r1 +WG21-P2932R1 +P2932R1 +- +a:wg21-p2932r2 +WG21-P2932R2 +P2932R2 +- +a:wg21-p2932r3 +WG21-P2932R3 +P2932R3 +- +a:wg21-p2933r0 +WG21-P2933R0 +P2933R0 +- +a:wg21-p2933r1 +WG21-P2933R1 +P2933R1 +- +a:wg21-p2935r0 +WG21-P2935R0 +P2935R0 +- +a:wg21-p2935r1 +WG21-P2935R1 +P2935R1 +- +a:wg21-p2935r2 +WG21-P2935R2 +P2935R2 +- +a:wg21-p2935r3 +WG21-P2935R3 +P2935R3 +- +a:wg21-p2935r4 +WG21-P2935R4 +P2935R4 +- +a:wg21-p2937r0 +WG21-P2937R0 +P2937R0 +- +a:wg21-p2940r0 +WG21-P2940R0 +P2940R0 +- +a:wg21-p2941r0 +WG21-P2941R0 +P2941R0 +- +a:wg21-p2944r0 +WG21-P2944R0 +P2944R0 +- +a:wg21-p2944r1 +WG21-P2944R1 +P2944R1 +- +a:wg21-p2944r2 +WG21-P2944R2 +P2944R2 +- +a:wg21-p2944r3 +WG21-P2944R3 +P2944R3 +- +a:wg21-p2945r0 +WG21-P2945R0 +P2945R0 +- +a:wg21-p2946r0 +WG21-P2946R0 +P2946R0 +- +a:wg21-p2946r1 +WG21-P2946R1 +P2946R1 +- +a:wg21-p2947r0 +WG21-P2947R0 +P2947R0 +- +a:wg21-p2949r0 +WG21-P2949R0 +P2949R0 +- +a:wg21-p2950r0 +WG21-P2950R0 +P2950R0 +- +a:wg21-p2951r0 +WG21-P2951R0 +P2951R0 +- +a:wg21-p2951r1 +WG21-P2951R1 +P2951R1 +- +a:wg21-p2951r2 +WG21-P2951R2 +P2951R2 +- +a:wg21-p2951r3 +WG21-P2951R3 +P2951R3 +- +a:wg21-p2952r0 +WG21-P2952R0 +P2952R0 +- +a:wg21-p2952r1 +WG21-P2952R1 +P2952R1 +- +a:wg21-p2953r0 +WG21-P2953R0 +P2953R0 +- +a:wg21-p2954r0 +WG21-P2954R0 +P2954R0 +- +a:wg21-p2955r0 +WG21-P2955R0 +P2955R0 +- +a:wg21-p2955r1 +WG21-P2955R1 +P2955R1 +- +a:wg21-p2956r0 +WG21-P2956R0 +P2956R0 +- +a:wg21-p2957r0 +WG21-P2957R0 +P2957R0 +- +a:wg21-p2957r1 +WG21-P2957R1 +P2957R1 +- +a:wg21-p2958r0 +WG21-P2958R0 +P2958R0 +- +a:wg21-p2959r0 +WG21-P2959R0 +P2959R0 +- +a:wg21-p2960r0 +WG21-P2960R0 +P2960R0 +- +a:wg21-p2961r0 +WG21-P2961R0 +P2961R0 +- +a:wg21-p2961r1 +WG21-P2961R1 +P2961R1 +- +a:wg21-p2961r2 +WG21-P2961R2 +P2961R2 +- +a:wg21-p2962r0 +WG21-P2962R0 +P2962R0 +- +a:wg21-p2963r0 +WG21-P2963R0 +P2963R0 +- +a:wg21-p2963r1 +WG21-P2963R1 +P2963R1 +- +a:wg21-p2963r2 +WG21-P2963R2 +P2963R2 +- +a:wg21-p2963r3 +WG21-P2963R3 +P2963R3 +- +a:wg21-p2964r0 +WG21-P2964R0 +P2964R0 +- +a:wg21-p2964r1 +WG21-P2964R1 +P2964R1 +- +a:wg21-p2966r0 +WG21-P2966R0 +P2966R0 +- +a:wg21-p2966r1 +WG21-P2966R1 +P2966R1 +- +a:wg21-p2967r0 +WG21-P2967R0 +P2967R0 +- +a:wg21-p2967r1 +WG21-P2967R1 +P2967R1 +- +a:wg21-p2968r0 +WG21-P2968R0 +P2968R0 +- +a:wg21-p2968r1 +WG21-P2968R1 +P2968R1 +- +a:wg21-p2968r2 +WG21-P2968R2 +P2968R2 +- +a:wg21-p2969r0 +WG21-P2969R0 +P2969R0 +- +a:wg21-p2971r0 +WG21-P2971R0 +P2971R0 +- +a:wg21-p2971r1 +WG21-P2971R1 +P2971R1 +- +a:wg21-p2971r2 +WG21-P2971R2 +P2971R2 +- +a:wg21-p2972r0 +WG21-P2972R0 +P2972R0 +- +a:wg21-p2973r0 +WG21-P2973R0 +P2973R0 +- +a:wg21-p2976r0 +WG21-P2976R0 +P2976R0 +- +a:wg21-p2976r1 +WG21-P2976R1 +P2976R1 +- +a:wg21-p2977r0 +WG21-P2977R0 +P2977R0 +- +a:wg21-p2977r1 +WG21-P2977R1 +P2977R1 +- +a:wg21-p2978r0 +WG21-P2978R0 +P2978R0 +- +a:wg21-p2979r0 +WG21-P2979R0 +P2979R0 +- +a:wg21-p2980r0 +WG21-P2980R0 +P2980R0 +- +a:wg21-p2980r1 +WG21-P2980R1 +P2980R1 +- +a:wg21-p2981r0 +WG21-P2981R0 +P2981R0 +- +a:wg21-p2981r1 +WG21-P2981R1 +P2981R1 +- +a:wg21-p2982r0 +WG21-P2982R0 +P2982R0 +- +a:wg21-p2982r1 +WG21-P2982R1 +P2982R1 +- +a:wg21-p2984r0 +WG21-P2984R0 +P2984R0 +- +a:wg21-p2984r1 +WG21-P2984R1 +P2984R1 +- +a:wg21-p2985r0 +WG21-P2985R0 +P2985R0 +- +a:wg21-p2986r0 +WG21-P2986R0 +P2986R0 +- +a:wg21-p2988r0 +WG21-P2988R0 +P2988R0 +- +a:wg21-p2988r1 +WG21-P2988R1 +P2988R1 +- +a:wg21-p2988r2 +WG21-P2988R2 +P2988R2 +- +a:wg21-p2988r3 +WG21-P2988R3 +P2988R3 +- +a:wg21-p2988r4 +WG21-P2988R4 +P2988R4 +- +a:wg21-p2988r5 +WG21-P2988R5 +P2988R5 +- +a:wg21-p2988r6 +WG21-P2988R6 +P2988R6 +- +a:wg21-p2989r0 +WG21-P2989R0 +P2989R0 +- +a:wg21-p2989r1 +WG21-P2989R1 +P2989R1 +- +a:wg21-p2989r2 +WG21-P2989R2 +P2989R2 +- +a:wg21-p2990r0 +WG21-P2990R0 +P2990R0 +- +a:wg21-p2991r0 +WG21-P2991R0 +P2991R0 +- +a:wg21-p2992r0 +WG21-P2992R0 +P2992R0 +- +a:wg21-p2992r1 +WG21-P2992R1 +P2992R1 +- +a:wg21-p2993r0 +WG21-P2993R0 +P2993R0 +- +a:wg21-p2994r0 +WG21-P2994R0 +P2994R0 +- +a:wg21-p2994r1 +WG21-P2994R1 +P2994R1 +- +a:wg21-p2995r0 +WG21-P2995R0 +P2995R0 +- +a:wg21-p2996r0 +WG21-P2996R0 +P2996R0 +- +a:wg21-p2996r1 +WG21-P2996R1 +P2996R1 +- +a:wg21-p2996r2 +WG21-P2996R2 +P2996R2 +- +a:wg21-p2996r3 +WG21-P2996R3 +P2996R3 +- +a:wg21-p2996r4 +WG21-P2996R4 +P2996R4 +- +a:wg21-p2996r5 +WG21-P2996R5 +P2996R5 +- +a:wg21-p2997r0 +WG21-P2997R0 +P2997R0 +- +a:wg21-p2997r1 +WG21-P2997R1 +P2997R1 +- +a:wg21-p2999r0 +WG21-P2999R0 +P2999R0 +- +a:wg21-p2999r1 +WG21-P2999R1 +P2999R1 +- +a:wg21-p2999r2 +WG21-P2999R2 +P2999R2 +- +a:wg21-p2999r3 +WG21-P2999R3 +P2999R3 +- +a:wg21-p3001r0 +WG21-P3001R0 +P3001R0 +- +a:wg21-p3002r0 +WG21-P3002R0 +P3002R0 +- +a:wg21-p3002r1 +WG21-P3002R1 +P3002R1 +- +a:wg21-p3003r0 +WG21-P3003R0 +P3003R0 +- +a:wg21-p3004r0 +WG21-P3004R0 +P3004R0 +- +a:wg21-p3005r0 +WG21-P3005R0 +P3005R0 +- +a:wg21-p3006r0 +WG21-P3006R0 +P3006R0 +- +a:wg21-p3006r1 +WG21-P3006R1 +P3006R1 +- +a:wg21-p3007r0 +WG21-P3007R0 +P3007R0 +- +a:wg21-p3008r0 +WG21-P3008R0 +P3008R0 +- +a:wg21-p3008r1 +WG21-P3008R1 +P3008R1 +- +a:wg21-p3008r2 +WG21-P3008R2 +P3008R2 +- +a:wg21-p3009r0 +WG21-P3009R0 +P3009R0 +- +a:wg21-p3010r0 +WG21-P3010R0 +P3010R0 +- +a:wg21-p3011r0 +WG21-P3011R0 +P3011R0 +- +a:wg21-p3012r0 +WG21-P3012R0 +P3012R0 +- +a:wg21-p3014r0 +WG21-P3014R0 +P3014R0 +- +a:wg21-p3015r0 +WG21-P3015R0 +P3015R0 +- +a:wg21-p3016r0 +WG21-P3016R0 +P3016R0 +- +a:wg21-p3016r1 +WG21-P3016R1 +P3016R1 +- +a:wg21-p3016r2 +WG21-P3016R2 +P3016R2 +- +a:wg21-p3016r3 +WG21-P3016R3 +P3016R3 +- +a:wg21-p3018r0 +WG21-P3018R0 +P3018R0 +- +a:wg21-p3019r0 +WG21-P3019R0 +P3019R0 +- +a:wg21-p3019r1 +WG21-P3019R1 +P3019R1 +- +a:wg21-p3019r2 +WG21-P3019R2 +P3019R2 +- +a:wg21-p3019r3 +WG21-P3019R3 +P3019R3 +- +a:wg21-p3019r4 +WG21-P3019R4 +P3019R4 +- +a:wg21-p3019r5 +WG21-P3019R5 +P3019R5 +- +a:wg21-p3019r6 +WG21-P3019R6 +P3019R6 +- +a:wg21-p3019r7 +WG21-P3019R7 +P3019R7 +- +a:wg21-p3019r8 +WG21-P3019R8 +P3019R8 +- +a:wg21-p3020r0 +WG21-P3020R0 +P3020R0 +- +a:wg21-p3021r0 +WG21-P3021R0 +P3021R0 +- +a:wg21-p3022r0 +WG21-P3022R0 +P3022R0 +- +a:wg21-p3022r1 +WG21-P3022R1 +P3022R1 +- +a:wg21-p3023r0 +WG21-P3023R0 +P3023R0 +- +a:wg21-p3023r1 +WG21-P3023R1 +P3023R1 +- +a:wg21-p3024r0 +WG21-P3024R0 +P3024R0 +- +a:wg21-p3025r0 +WG21-P3025R0 +P3025R0 +- +a:wg21-p3026r0 +WG21-P3026R0 +P3026R0 +- +a:wg21-p3027r0 +WG21-P3027R0 +P3027R0 +- +a:wg21-p3028r0 +WG21-P3028R0 +P3028R0 +- +a:wg21-p3029r0 +WG21-P3029R0 +P3029R0 +- +a:wg21-p3029r1 +WG21-P3029R1 +P3029R1 +- +a:wg21-p3031r0 +WG21-P3031R0 +P3031R0 +- +a:wg21-p3032r0 +WG21-P3032R0 +P3032R0 +- +a:wg21-p3032r1 +WG21-P3032R1 +P3032R1 +- +a:wg21-p3032r2 +WG21-P3032R2 +P3032R2 +- +a:wg21-p3033r0 +WG21-P3033R0 +P3033R0 +- +a:wg21-p3034r0 +WG21-P3034R0 +P3034R0 +- +a:wg21-p3034r1 +WG21-P3034R1 +P3034R1 +- +a:wg21-p3037r0 +WG21-P3037R0 +P3037R0 +- +a:wg21-p3037r1 +WG21-P3037R1 +P3037R1 +- +a:wg21-p3037r2 +WG21-P3037R2 +P3037R2 +- +a:wg21-p3038r0 +WG21-P3038R0 +P3038R0 +- +a:wg21-p3039r0 +WG21-P3039R0 +P3039R0 +- +a:wg21-p3040r0 +WG21-P3040R0 +P3040R0 +- +a:wg21-p3041r0 +WG21-P3041R0 +P3041R0 +- +a:wg21-p3042r0 +WG21-P3042R0 +P3042R0 +- +a:wg21-p3043r0 +WG21-P3043R0 +P3043R0 +- +a:wg21-p3044r0 +WG21-P3044R0 +P3044R0 +- +a:wg21-p3044r1 +WG21-P3044R1 +P3044R1 +- +a:wg21-p3045r0 +WG21-P3045R0 +P3045R0 +- +a:wg21-p3045r1 +WG21-P3045R1 +P3045R1 +- +a:wg21-p3046r0 +WG21-P3046R0 +P3046R0 +- +a:wg21-p3047r0 +WG21-P3047R0 +P3047R0 +- +a:wg21-p3049r0 +WG21-P3049R0 +P3049R0 +- +a:wg21-p3050r0 +WG21-P3050R0 +P3050R0 +- +a:wg21-p3050r1 +WG21-P3050R1 +P3050R1 +- +a:wg21-p3050r2 +WG21-P3050R2 +P3050R2 +- +a:wg21-p3051r0 +WG21-P3051R0 +P3051R0 +- +a:wg21-p3051r1 +WG21-P3051R1 +P3051R1 +- +a:wg21-p3051r2 +WG21-P3051R2 +P3051R2 +- +a:wg21-p3052r0 +WG21-P3052R0 +P3052R0 +- +a:wg21-p3052r1 +WG21-P3052R1 +P3052R1 +- +a:wg21-p3053r0 +WG21-P3053R0 +P3053R0 +- +a:wg21-p3054r0 +WG21-P3054R0 +P3054R0 +- +a:wg21-p3055r0 +WG21-P3055R0 +P3055R0 +- +a:wg21-p3055r1 +WG21-P3055R1 +P3055R1 +- +a:wg21-p3056r0 +WG21-P3056R0 +P3056R0 +- +a:wg21-p3057r0 +WG21-P3057R0 +P3057R0 +- +a:wg21-p3059r0 +WG21-P3059R0 +P3059R0 +- +a:wg21-p3059r1 +WG21-P3059R1 +P3059R1 +- +a:wg21-p3060r0 +WG21-P3060R0 +P3060R0 +- +a:wg21-p3060r1 +WG21-P3060R1 +P3060R1 +- +a:wg21-p3061r0 +WG21-P3061R0 +P3061R0 +- +a:wg21-p3062r0 +WG21-P3062R0 +P3062R0 +- +a:wg21-p3064r0 +WG21-P3064R0 +P3064R0 +- +a:wg21-p3064r1 +WG21-P3064R1 +P3064R1 +- +a:wg21-p3064r2 +WG21-P3064R2 +P3064R2 +- +a:wg21-p3066r0 +WG21-P3066R0 +P3066R0 +- +a:wg21-p3067r0 +WG21-P3067R0 +P3067R0 +- +a:wg21-p3068r0 +WG21-P3068R0 +P3068R0 +- +a:wg21-p3068r1 +WG21-P3068R1 +P3068R1 +- +a:wg21-p3068r2 +WG21-P3068R2 +P3068R2 +- +a:wg21-p3068r3 +WG21-P3068R3 +P3068R3 +- +a:wg21-p3068r4 +WG21-P3068R4 +P3068R4 +- +a:wg21-p3070r0 +WG21-P3070R0 +P3070R0 +- +a:wg21-p3071r0 +WG21-P3071R0 +P3071R0 +- +a:wg21-p3071r1 +WG21-P3071R1 +P3071R1 +- +a:wg21-p3072r0 +WG21-P3072R0 +P3072R0 +- +a:wg21-p3072r1 +WG21-P3072R1 +P3072R1 +- +a:wg21-p3072r2 +WG21-P3072R2 +P3072R2 +- +a:wg21-p3073r0 +WG21-P3073R0 +P3073R0 +- +a:wg21-p3074r0 +WG21-P3074R0 +P3074R0 +- +a:wg21-p3074r1 +WG21-P3074R1 +P3074R1 +- +a:wg21-p3074r2 +WG21-P3074R2 +P3074R2 +- +a:wg21-p3074r3 +WG21-P3074R3 +P3074R3 +- +a:wg21-p3075r0 +WG21-P3075R0 +P3075R0 +- +a:wg21-p3079r0 +WG21-P3079R0 +P3079R0 +- +a:wg21-p3084r0 +WG21-P3084R0 +P3084R0 +- +a:wg21-p3085r0 +WG21-P3085R0 +P3085R0 +- +a:wg21-p3085r1 +WG21-P3085R1 +P3085R1 +- +a:wg21-p3085r2 +WG21-P3085R2 +P3085R2 +- +a:wg21-p3085r3 +WG21-P3085R3 +P3085R3 +- +a:wg21-p3086r0 +WG21-P3086R0 +P3086R0 +- +a:wg21-p3086r1 +WG21-P3086R1 +P3086R1 +- +a:wg21-p3086r2 +WG21-P3086R2 +P3086R2 +- +a:wg21-p3087r0 +WG21-P3087R0 +P3087R0 +- +a:wg21-p3087r1 +WG21-P3087R1 +P3087R1 +- +a:wg21-p3088r0 +WG21-P3088R0 +P3088R0 +- +a:wg21-p3088r1 +WG21-P3088R1 +P3088R1 +- +a:wg21-p3090r0 +WG21-P3090R0 +P3090R0 +- +a:wg21-p3091r0 +WG21-P3091R0 +P3091R0 +- +a:wg21-p3091r1 +WG21-P3091R1 +P3091R1 +- +a:wg21-p3091r2 +WG21-P3091R2 +P3091R2 +- +a:wg21-p3092r0 +WG21-P3092R0 +P3092R0 +- +a:wg21-p3093r0 +WG21-P3093R0 +P3093R0 +- +a:wg21-p3094r0 +WG21-P3094R0 +P3094R0 +- +a:wg21-p3094r1 +WG21-P3094R1 +P3094R1 +- +a:wg21-p3094r2 +WG21-P3094R2 +P3094R2 +- +a:wg21-p3094r3 +WG21-P3094R3 +P3094R3 +- +a:wg21-p3095r0 +WG21-P3095R0 +P3095R0 +- +a:wg21-p3096r0 +WG21-P3096R0 +P3096R0 +- +a:wg21-p3096r1 +WG21-P3096R1 +P3096R1 +- +a:wg21-p3096r2 +WG21-P3096R2 +P3096R2 +- +a:wg21-p3097r0 +WG21-P3097R0 +P3097R0 +- +a:wg21-p3100r0 +WG21-P3100R0 +P3100R0 +- +a:wg21-p3101r0 +WG21-P3101R0 +P3101R0 +- +a:wg21-p3102r0 +WG21-P3102R0 +P3102R0 +- +a:wg21-p3103r0 +WG21-P3103R0 +P3103R0 +- +a:wg21-p3103r1 +WG21-P3103R1 +P3103R1 +- +a:wg21-p3103r2 +WG21-P3103R2 +P3103R2 +- +a:wg21-p3104r0 +WG21-P3104R0 +P3104R0 +- +a:wg21-p3104r1 +WG21-P3104R1 +P3104R1 +- +a:wg21-p3104r2 +WG21-P3104R2 +P3104R2 +- +a:wg21-p3105r0 +WG21-P3105R0 +P3105R0 +- +a:wg21-p3105r1 +WG21-P3105R1 +P3105R1 +- +a:wg21-p3105r2 +WG21-P3105R2 +P3105R2 +- +a:wg21-p3106r0 +WG21-P3106R0 +P3106R0 +- +a:wg21-p3106r1 +WG21-P3106R1 +P3106R1 +- +a:wg21-p3107r0 +WG21-P3107R0 +P3107R0 +- +a:wg21-p3107r1 +WG21-P3107R1 +P3107R1 +- +a:wg21-p3107r2 +WG21-P3107R2 +P3107R2 +- +a:wg21-p3107r3 +WG21-P3107R3 +P3107R3 +- +a:wg21-p3107r4 +WG21-P3107R4 +P3107R4 +- +a:wg21-p3107r5 +WG21-P3107R5 +P3107R5 +- +a:wg21-p3109r0 +WG21-P3109R0 +P3109R0 +- +a:wg21-p3110r0 +WG21-P3110R0 +P3110R0 +- +a:wg21-p3111r0 +WG21-P3111R0 +P3111R0 +- +a:wg21-p3112r0 +WG21-P3112R0 +P3112R0 +- +a:wg21-p3113r0 +WG21-P3113R0 +P3113R0 +- +a:wg21-p3114r0 +WG21-P3114R0 +P3114R0 +- +a:wg21-p3115r0 +WG21-P3115R0 +P3115R0 +- +a:wg21-p3116r0 +WG21-P3116R0 +P3116R0 +- +a:wg21-p3117r0 +WG21-P3117R0 +P3117R0 +- +a:wg21-p3119r0 +WG21-P3119R0 +P3119R0 +- +a:wg21-p3119r1 +WG21-P3119R1 +P3119R1 +- +a:wg21-p3122r0 +WG21-P3122R0 +P3122R0 +- +a:wg21-p3122r1 +WG21-P3122R1 +P3122R1 +- +a:wg21-p3123r0 +WG21-P3123R0 +P3123R0 +- +a:wg21-p3124r0 +WG21-P3124R0 +P3124R0 +- +a:wg21-p3125r0 +WG21-P3125R0 +P3125R0 +- +a:wg21-p3126r0 +WG21-P3126R0 +P3126R0 +- +a:wg21-p3126r1 +WG21-P3126R1 +P3126R1 +- +a:wg21-p3126r2 +WG21-P3126R2 +P3126R2 +- +a:wg21-p3127r0 +WG21-P3127R0 +P3127R0 +- +a:wg21-p3128r0 +WG21-P3128R0 +P3128R0 +- +a:wg21-p3129r0 +WG21-P3129R0 +P3129R0 +- +a:wg21-p3130r0 +WG21-P3130R0 +P3130R0 +- +a:wg21-p3130r1 +WG21-P3130R1 +P3130R1 +- +a:wg21-p3130r2 +WG21-P3130R2 +P3130R2 +- +a:wg21-p3131r0 +WG21-P3131R0 +P3131R0 +- +a:wg21-p3131r1 +WG21-P3131R1 +P3131R1 +- +a:wg21-p3131r2 +WG21-P3131R2 +P3131R2 +- +a:wg21-p3133r0 +WG21-P3133R0 +P3133R0 +- +a:wg21-p3135r0 +WG21-P3135R0 +P3135R0 +- +a:wg21-p3135r1 +WG21-P3135R1 +P3135R1 +- +a:wg21-p3136r0 +WG21-P3136R0 +P3136R0 +- +a:wg21-p3137r0 +WG21-P3137R0 +P3137R0 +- +a:wg21-p3137r1 +WG21-P3137R1 +P3137R1 +- +a:wg21-p3137r2 +WG21-P3137R2 +P3137R2 +- +a:wg21-p3138r0 +WG21-P3138R0 +P3138R0 +- +a:wg21-p3138r1 +WG21-P3138R1 +P3138R1 +- +a:wg21-p3138r2 +WG21-P3138R2 +P3138R2 +- +a:wg21-p3139r0 +WG21-P3139R0 +P3139R0 +- +a:wg21-p3140r0 +WG21-P3140R0 +P3140R0 +- +a:wg21-p3141 +WG21-P3141 +P3141 +- +a:wg21-p3142r0 +WG21-P3142R0 +P3142R0 +- +a:wg21-p3143r0 +WG21-P3143R0 +P3143R0 +- +a:wg21-p3144r0 +WG21-P3144R0 +P3144R0 +- +a:wg21-p3144r1 +WG21-P3144R1 +P3144R1 +- +a:wg21-p3144r2 +WG21-P3144R2 +P3144R2 +- +a:wg21-p3146r0 +WG21-P3146R0 +P3146R0 +- +a:wg21-p3146r1 +WG21-P3146R1 +P3146R1 +- +a:wg21-p3147r0 +WG21-P3147R0 +P3147R0 +- +a:wg21-p3147r1 +WG21-P3147R1 +P3147R1 +- +a:wg21-p3148r0 +WG21-P3148R0 +P3148R0 +- +a:wg21-p3149r0 +WG21-P3149R0 +P3149R0 +- +a:wg21-p3149r1 +WG21-P3149R1 +P3149R1 +- +a:wg21-p3149r2 +WG21-P3149R2 +P3149R2 +- +a:wg21-p3149r3 +WG21-P3149R3 +P3149R3 +- +a:wg21-p3149r4 +WG21-P3149R4 +P3149R4 +- +a:wg21-p3149r5 +WG21-P3149R5 +P3149R5 +- +a:wg21-p3150r0 +WG21-P3150R0 +P3150R0 +- +a:wg21-p3151r0 +WG21-P3151R0 +P3151R0 +- +a:wg21-p3153r0 +WG21-P3153R0 +P3153R0 +- +a:wg21-p3154r0 +WG21-P3154R0 +P3154R0 +- +a:wg21-p3154r1 +WG21-P3154R1 +P3154R1 +- +a:wg21-p3155r0 +WG21-P3155R0 +P3155R0 +- +a:wg21-p3156r0 +WG21-P3156R0 +P3156R0 +- +a:wg21-p3157r0 +WG21-P3157R0 +P3157R0 +- +a:wg21-p3157r1 +WG21-P3157R1 +P3157R1 +- +a:wg21-p3158r0 +WG21-P3158R0 +P3158R0 +- +a:wg21-p3159r0 +WG21-P3159R0 +P3159R0 +- +a:wg21-p3160r0 +WG21-P3160R0 +P3160R0 +- +a:wg21-p3160r1 +WG21-P3160R1 +P3160R1 +- +a:wg21-p3161r0 +WG21-P3161R0 +P3161R0 +- +a:wg21-p3161r1 +WG21-P3161R1 +P3161R1 +- +a:wg21-p3161r2 +WG21-P3161R2 +P3161R2 +- +a:wg21-p3162r0 +WG21-P3162R0 +P3162R0 +- +a:wg21-p3164r0 +WG21-P3164R0 +P3164R0 +- +a:wg21-p3164r1 +WG21-P3164R1 +P3164R1 +- +a:wg21-p3164r2 +WG21-P3164R2 +P3164R2 +- +a:wg21-p3165r0 +WG21-P3165R0 +P3165R0 +- +a:wg21-p3166r0 +WG21-P3166R0 +P3166R0 +- +a:wg21-p3167r0 +WG21-P3167R0 +P3167R0 +- +a:wg21-p3168r0 +WG21-P3168R0 +P3168R0 +- +a:wg21-p3168r1 +WG21-P3168R1 +P3168R1 +- +a:wg21-p3168r2 +WG21-P3168R2 +P3168R2 +- +a:wg21-p3169r0 +WG21-P3169R0 +P3169R0 +- +a:wg21-p3170r0 +WG21-P3170R0 +P3170R0 +- +a:wg21-p3171r0 +WG21-P3171R0 +P3171R0 +- +a:wg21-p3172r0 +WG21-P3172R0 +P3172R0 +- +a:wg21-p3173r0 +WG21-P3173R0 +P3173R0 +- +a:wg21-p3174r0 +WG21-P3174R0 +P3174R0 +- +a:wg21-p3175r0 +WG21-P3175R0 +P3175R0 +- +a:wg21-p3175r1 +WG21-P3175R1 +P3175R1 +- +a:wg21-p3175r2 +WG21-P3175R2 +P3175R2 +- +a:wg21-p3175r3 +WG21-P3175R3 +P3175R3 +- +a:wg21-p3176r0 +WG21-P3176R0 +P3176R0 +- +a:wg21-p3177r0 +WG21-P3177R0 +P3177R0 +- +a:wg21-p3178r0 +WG21-P3178R0 +P3178R0 +- +a:wg21-p3178r1 +WG21-P3178R1 +P3178R1 +- +a:wg21-p3179r0 +WG21-P3179R0 +P3179R0 +- +a:wg21-p3179r1 +WG21-P3179R1 +P3179R1 +- +a:wg21-p3179r2 +WG21-P3179R2 +P3179R2 +- +a:wg21-p3180r0 +WG21-P3180R0 +P3180R0 +- +a:wg21-p3181r0 +WG21-P3181R0 +P3181R0 +- +a:wg21-p3182r0 +WG21-P3182R0 +P3182R0 +- +a:wg21-p3182r1 +WG21-P3182R1 +P3182R1 +- +a:wg21-p3183r0 +WG21-P3183R0 +P3183R0 +- +a:wg21-p3183r1 +WG21-P3183R1 +P3183R1 +- +a:wg21-p3187r1 +WG21-P3187R1 +P3187R1 +- +a:wg21-p3188r0 +WG21-P3188R0 +P3188R0 +- +a:wg21-p3189r0 +WG21-P3189R0 +P3189R0 +- +a:wg21-p3190r0 +WG21-P3190R0 +P3190R0 +- +a:wg21-p3191r0 +WG21-P3191R0 +P3191R0 +- +a:wg21-p3192r0 +WG21-P3192R0 +P3192R0 +- +a:wg21-p3194r0 +WG21-P3194R0 +P3194R0 +- +a:wg21-p3196r0 +WG21-P3196R0 +P3196R0 +- +a:wg21-p3197r0 +WG21-P3197R0 +P3197R0 +- +a:wg21-p3198r0 +WG21-P3198R0 +P3198R0 +- +a:wg21-p3199r0 +WG21-P3199R0 +P3199R0 +- +a:wg21-p3201r0 +WG21-P3201R0 +P3201R0 +- +a:wg21-p3201r1 +WG21-P3201R1 +P3201R1 +- +a:wg21-p3203r0 +WG21-P3203R0 +P3203R0 +- +a:wg21-p3205r0 +WG21-P3205R0 +P3205R0 +- +a:wg21-p3207r0 +WG21-P3207R0 +P3207R0 +- +a:wg21-p3208r0 +WG21-P3208R0 +P3208R0 +- +a:wg21-p3210r0 +WG21-P3210R0 +P3210R0 +- +a:wg21-p3210r1 +WG21-P3210R1 +P3210R1 +- +a:wg21-p3211r0 +WG21-P3211R0 +P3211R0 +- +a:wg21-p3212r0 +WG21-P3212R0 +P3212R0 +- +a:wg21-p3213r0 +WG21-P3213R0 +P3213R0 +- +a:wg21-p3214r0 +WG21-P3214R0 +P3214R0 +- +a:wg21-p3215r0 +WG21-P3215R0 +P3215R0 +- +a:wg21-p3216r0 +WG21-P3216R0 +P3216R0 +- +a:wg21-p3217r0 +WG21-P3217R0 +P3217R0 +- +a:wg21-p3218r0 +WG21-P3218R0 +P3218R0 +- +a:wg21-p3220r0 +WG21-P3220R0 +P3220R0 +- +a:wg21-p3221r0 +WG21-P3221R0 +P3221R0 +- +a:wg21-p3222r0 +WG21-P3222R0 +P3222R0 +- +a:wg21-p3223r0 +WG21-P3223R0 +P3223R0 +- +a:wg21-p3223r1 +WG21-P3223R1 +P3223R1 +- +a:wg21-p3224r0 +WG21-P3224R0 +P3224R0 +- +a:wg21-p3225r0 +WG21-P3225R0 +P3225R0 +- +a:wg21-p3226r0 +WG21-P3226R0 +P3226R0 +- +a:wg21-p3228r0 +WG21-P3228R0 +P3228R0 +- +a:wg21-p3228r1 +WG21-P3228R1 +P3228R1 +- +a:wg21-p3230r0 +WG21-P3230R0 +P3230R0 +- +a:wg21-p3232r0 +WG21-P3232R0 +P3232R0 +- +a:wg21-p3233r0 +WG21-P3233R0 +P3233R0 +- +a:wg21-p3234r0 +WG21-P3234R0 +P3234R0 +- +a:wg21-p3234r1 +WG21-P3234R1 +P3234R1 +- +a:wg21-p3235r0 +WG21-P3235R0 +P3235R0 +- +a:wg21-p3235r1 +WG21-P3235R1 +P3235R1 +- +a:wg21-p3235r2 +WG21-P3235R2 +P3235R2 +- +a:wg21-p3235r3 +WG21-P3235R3 +P3235R3 +- +a:wg21-p3236r0 +WG21-P3236R0 +P3236R0 +- +a:wg21-p3236r1 +WG21-P3236R1 +P3236R1 +- +a:wg21-p3237r0 +WG21-P3237R0 +P3237R0 +- +a:wg21-p3238r0 +WG21-P3238R0 +P3238R0 +- +a:wg21-p3239r0 +WG21-P3239R0 +P3239R0 +- +a:wg21-p3240r0 +WG21-P3240R0 +P3240R0 +- +a:wg21-p3241r0 +WG21-P3241R0 +P3241R0 +- +a:wg21-p3242r0 +WG21-P3242R0 +P3242R0 +- +a:wg21-p3243r0 +WG21-P3243R0 +P3243R0 +- +a:wg21-p3244r0 +WG21-P3244R0 +P3244R0 +- +a:wg21-p3245r0 +WG21-P3245R0 +P3245R0 +- +a:wg21-p3245r1 +WG21-P3245R1 +P3245R1 +- +a:wg21-p3247r0 +WG21-P3247R0 +P3247R0 +- +a:wg21-p3247r1 +WG21-P3247R1 +P3247R1 +- +a:wg21-p3248r0 +WG21-P3248R0 +P3248R0 +- +a:wg21-p3248r1 +WG21-P3248R1 +P3248R1 +- +a:wg21-p3249r0 +WG21-P3249R0 +P3249R0 +- +a:wg21-p3250r0 +WG21-P3250R0 +P3250R0 +- +a:wg21-p3251r0 +WG21-P3251R0 +P3251R0 +- +a:wg21-p3253r0 +WG21-P3253R0 +P3253R0 +- +a:wg21-p3254r0 +WG21-P3254R0 +P3254R0 +- +a:wg21-p3255r0 +WG21-P3255R0 +P3255R0 +- +a:wg21-p3255r1 +WG21-P3255R1 +P3255R1 +- +a:wg21-p3257r0 +WG21-P3257R0 +P3257R0 +- +a:wg21-p3258r0 +WG21-P3258R0 +P3258R0 +- +a:wg21-p3259r0 +WG21-P3259R0 +P3259R0 +- +a:wg21-p3263r0 +WG21-P3263R0 +P3263R0 +- +a:wg21-p3264r0 +WG21-P3264R0 +P3264R0 +- +a:wg21-p3264r1 +WG21-P3264R1 +P3264R1 +- +a:wg21-p3265r0 +WG21-P3265R0 +P3265R0 +- +a:wg21-p3265r1 +WG21-P3265R1 +P3265R1 +- +a:wg21-p3265r2 +WG21-P3265R2 +P3265R2 +- +a:wg21-p3265r3 +WG21-P3265R3 +P3265R3 +- +a:wg21-p3266r0 +WG21-P3266R0 +P3266R0 +- +a:wg21-p3267r0 +WG21-P3267R0 +P3267R0 +- +a:wg21-p3267r1 +WG21-P3267R1 +P3267R1 +- +a:wg21-p3268r0 +WG21-P3268R0 +P3268R0 +- +a:wg21-p3269r0 +WG21-P3269R0 +P3269R0 +- +a:wg21-p3270r0 +WG21-P3270R0 +P3270R0 +- +a:wg21-p3271r0 +WG21-P3271R0 +P3271R0 +- +a:wg21-p3273r0 +WG21-P3273R0 +P3273R0 +- +a:wg21-p3274r0 +WG21-P3274R0 +P3274R0 +- +a:wg21-p3275r0 +WG21-P3275R0 +P3275R0 +- +a:wg21-p3276r0 +WG21-P3276R0 +P3276R0 +- +a:wg21-p3278r0 +WG21-P3278R0 +P3278R0 +- +a:wg21-p3279r0 +WG21-P3279R0 +P3279R0 +- +a:wg21-p3281r0 +WG21-P3281R0 +P3281R0 +- +a:wg21-p3282r0 +WG21-P3282R0 +P3282R0 +- +a:wg21-p3283r0 +WG21-P3283R0 +P3283R0 +- +a:wg21-p3284r0 +WG21-P3284R0 +P3284R0 +- +a:wg21-p3284r1 +WG21-P3284R1 +P3284R1 +- +a:wg21-p3285r0 +WG21-P3285R0 +P3285R0 +- +a:wg21-p3286r0 +WG21-P3286R0 +P3286R0 +- +a:wg21-p3287r0 +WG21-P3287R0 +P3287R0 +- +a:wg21-p3288r0 +WG21-P3288R0 +P3288R0 +- +a:wg21-p3288r1 +WG21-P3288R1 +P3288R1 +- +a:wg21-p3288r2 +WG21-P3288R2 +P3288R2 +- +a:wg21-p3288r3 +WG21-P3288R3 +P3288R3 +- +a:wg21-p3289r0 +WG21-P3289R0 +P3289R0 +- +a:wg21-p3290r0 +WG21-P3290R0 +P3290R0 +- +a:wg21-p3290r1 +WG21-P3290R1 +P3290R1 +- +a:wg21-p3292r0 +WG21-P3292R0 +P3292R0 +- +a:wg21-p3293r0 +WG21-P3293R0 +P3293R0 +- +a:wg21-p3294r0 +WG21-P3294R0 +P3294R0 +- +a:wg21-p3294r1 +WG21-P3294R1 +P3294R1 +- +a:wg21-p3295r0 +WG21-P3295R0 +P3295R0 +- +a:wg21-p3296r0 +WG21-P3296R0 +P3296R0 +- +a:wg21-p3296r1 +WG21-P3296R1 +P3296R1 +- +a:wg21-p3297r0 +WG21-P3297R0 +P3297R0 +- +a:wg21-p3297r1 +WG21-P3297R1 +P3297R1 +- +a:wg21-p3298r0 +WG21-P3298R0 +P3298R0 +- +a:wg21-p3299r0 +WG21-P3299R0 +P3299R0 +- +a:wg21-p3300r0 +WG21-P3300R0 +P3300R0 +- +a:wg21-p3301r0 +WG21-P3301R0 +P3301R0 +- +a:wg21-p3302r0 +WG21-P3302R0 +P3302R0 +- +a:wg21-p3303r0 +WG21-P3303R0 +P3303R0 +- +a:wg21-p3303r1 +WG21-P3303R1 +P3303R1 +- +a:wg21-p3304r0 +WG21-P3304R0 +P3304R0 +- +a:wg21-p3305r0 +WG21-P3305R0 +P3305R0 +- +a:wg21-p3306r0 +WG21-P3306R0 +P3306R0 +- +a:wg21-p3307r0 +WG21-P3307R0 +P3307R0 +- +a:wg21-p3308r0 +WG21-P3308R0 +P3308R0 +- +a:wg21-p3309r0 +WG21-P3309R0 +P3309R0 +- +a:wg21-p3309r1 +WG21-P3309R1 +P3309R1 +- +a:wg21-p3310r0 +WG21-P3310R0 +P3310R0 +- +a:wg21-p3310r1 +WG21-P3310R1 +P3310R1 +- +a:wg21-p3310r2 +WG21-P3310R2 +P3310R2 +- +a:wg21-p3311r0 +WG21-P3311R0 +P3311R0 +- +a:wg21-p3312r0 +WG21-P3312R0 +P3312R0 +- +a:wg21-p3313r0 +WG21-P3313R0 +P3313R0 +- +a:wg21-p3314r0 +WG21-P3314R0 +P3314R0 +- +a:wg21-p3315r0 +WG21-P3315R0 +P3315R0 +- +a:wg21-p3316r0 +WG21-P3316R0 +P3316R0 +- +a:wg21-p3317r0 +WG21-P3317R0 +P3317R0 +- +a:wg21-p3318r0 +WG21-P3318R0 +P3318R0 +- +a:wg21-p3319r0 +WG21-P3319R0 +P3319R0 +- +a:wg21-p3319r1 +WG21-P3319R1 +P3319R1 +- +a:wg21-p3320r0 +WG21-P3320R0 +P3320R0 +- +a:wg21-p3321r0 +WG21-P3321R0 +P3321R0 +- +a:wg21-p3323r0 +WG21-P3323R0 +P3323R0 +- +a:wg21-p3325r0 +WG21-P3325R0 +P3325R0 +- +a:wg21-p3325r1 +WG21-P3325R1 +P3325R1 +- +a:wg21-p3325r2 +WG21-P3325R2 +P3325R2 +- +a:wg21-p3325r3 +WG21-P3325R3 +P3325R3 +- +a:wg21-p3326r0 +WG21-P3326R0 +P3326R0 +- +a:wg21-p3328r0 +WG21-P3328R0 +P3328R0 +- +a:wg21-p3330r0 +WG21-P3330R0 +P3330R0 +- +a:wg21-p3331r0 +WG21-P3331R0 +P3331R0 +- +a:wg21-p3332r0 +WG21-P3332R0 +P3332R0 +- +a:wg21-p3335r0 +WG21-P3335R0 +P3335R0 +- +a:wg21-p3336r0 +WG21-P3336R0 +P3336R0 +- +a:wg21-p3338r0 +WG21-P3338R0 +P3338R0 +- +a:wg21-p3339r0 +WG21-P3339R0 +P3339R0 +- +a:wg21-p3340r0 +WG21-P3340R0 +P3340R0 +- +a:wg21-p3341r0 +WG21-P3341R0 +P3341R0 +- +a:wg21-p3342r0 +WG21-P3342R0 +P3342R0 +- +a:wg21-p3343r0 +WG21-P3343R0 +P3343R0 +- +a:wg21-p3344r0 +WG21-P3344R0 +P3344R0 +- +a:wg21-p3345r0 +WG21-P3345R0 +P3345R0 +- +a:wg21-p3347r0 +WG21-P3347R0 +P3347R0 +- +a:wg21-p3348r0 +WG21-P3348R0 +P3348R0 +- +a:wg21-p3351r0 +WG21-P3351R0 +P3351R0 +- +a:wg21-p3354r0 +WG21-P3354R0 +P3354R0 +- +a:wg21-p3355r0 +WG21-P3355R0 +P3355R0 +- +a:wg21-p3356r0 +WG21-P3356R0 +P3356R0 +- +a:wg21-p3357r0 +WG21-P3357R0 +P3357R0 +- +a:wg21-p3358r0 +WG21-P3358R0 +P3358R0 +- +a:wg21-p3359r0 +WG21-P3359R0 +P3359R0 +- +a:wg21-p3360r0 +WG21-P3360R0 +P3360R0 +- +a:wg21-p3361r0 +WG21-P3361R0 +P3361R0 +- +a:wg21-p3361r1 +WG21-P3361R1 +P3361R1 +- +a:wg21-p3362r0 +WG21-P3362R0 +P3362R0 +- +a:wg21-p3364r0 +WG21-P3364R0 +P3364R0 +- +a:wg21-p3365r0 +WG21-P3365R0 +P3365R0 +- +a:wg21-p3366r0 +WG21-P3366R0 +P3366R0 +- +a:wg21-p3369r0 +WG21-P3369R0 +P3369R0 +- +a:wg21-p3370r0 +WG21-P3370R0 +P3370R0 +- +a:wg21-p3371r0 +WG21-P3371R0 +P3371R0 +- +a:wg21-p3372r0 +WG21-P3372R0 +P3372R0 +- +a:wg21-p3373r0 +WG21-P3373R0 +P3373R0 +- +a:wg21-p3374r0 +WG21-P3374R0 +P3374R0 +- +a:wg21-p4000r0 +WG21-P4000R0 +P4000R0 +- +a:wg21-sd1 +WG21-SD1 +SD1 +- +a:wg21-sd3 +WG21-SD3 +SD3 +- +a:wg21-sd4 +WG21-SD4 +SD4 +- +a:wg21-sd5 +WG21-SD5 +SD5 +- +a:wg21-sd6 +WG21-SD6 +SD6 +- +a:wg21-sd7 +WG21-SD7 +SD7 +- +a:wg21-sd8 +WG21-SD8 +SD8 +- +a:wg21-sd9 +WG21-SD9 +SD9 +- +a:wgs84 +WGS84 +WGS84-NGA +- +d:wgs84-nga +WGS84-NGA +2008 + +World Geodetic System 1984 (WGS 84) +https://earth-info.nga.mil/index.php?dir=wgs84&action=wgs84 + + + + +- +d:wgs84-nima +WGS84-NIMA +3 January 2000 + +Department of Defense - World Geodetic System 1984 - National Imagery and Mapping Agency Technical Report 8350.2, Third Edition +https://gis-lab.info/docs/nima-tr8350.2-wgs84fin.pdf + +wgs84-nga + + +- +d:wgsl +WGSL +21 August 2024 +WD +WebGPU Shading Language +https://www.w3.org/TR/WGSL/ +https://gpuweb.github.io/gpuweb/wgsl/ + + + +Alan Baker +Mehmet Oguz Derin +David Neto +- +d:wgsl-20210518 +WGSL-20210518 +18 May 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210518/ +https://www.w3.org/TR/2021/WD-WGSL-20210518/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210526 +WGSL-20210526 +26 May 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210526/ +https://www.w3.org/TR/2021/WD-WGSL-20210526/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210527 +WGSL-20210527 +27 May 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210527/ +https://www.w3.org/TR/2021/WD-WGSL-20210527/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210528 +WGSL-20210528 +28 May 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210528/ +https://www.w3.org/TR/2021/WD-WGSL-20210528/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210531 +WGSL-20210531 +31 May 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210531/ +https://www.w3.org/TR/2021/WD-WGSL-20210531/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210601 +WGSL-20210601 +1 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210601/ +https://www.w3.org/TR/2021/WD-WGSL-20210601/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210602 +WGSL-20210602 +2 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210602/ +https://www.w3.org/TR/2021/WD-WGSL-20210602/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210603 +WGSL-20210603 +3 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210603/ +https://www.w3.org/TR/2021/WD-WGSL-20210603/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210604 +WGSL-20210604 +4 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210604/ +https://www.w3.org/TR/2021/WD-WGSL-20210604/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210608 +WGSL-20210608 +8 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210608/ +https://www.w3.org/TR/2021/WD-WGSL-20210608/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210609 +WGSL-20210609 +9 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210609/ +https://www.w3.org/TR/2021/WD-WGSL-20210609/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210610 +WGSL-20210610 +10 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210610/ +https://www.w3.org/TR/2021/WD-WGSL-20210610/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210614 +WGSL-20210614 +14 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210614/ +https://www.w3.org/TR/2021/WD-WGSL-20210614/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210615 +WGSL-20210615 +15 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210615/ +https://www.w3.org/TR/2021/WD-WGSL-20210615/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210616 +WGSL-20210616 +16 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210616/ +https://www.w3.org/TR/2021/WD-WGSL-20210616/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210617 +WGSL-20210617 +17 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210617/ +https://www.w3.org/TR/2021/WD-WGSL-20210617/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210618 +WGSL-20210618 +18 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210618/ +https://www.w3.org/TR/2021/WD-WGSL-20210618/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210620 +WGSL-20210620 +20 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210620/ +https://www.w3.org/TR/2021/WD-WGSL-20210620/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210622 +WGSL-20210622 +22 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210622/ +https://www.w3.org/TR/2021/WD-WGSL-20210622/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210623 +WGSL-20210623 +23 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210623/ +https://www.w3.org/TR/2021/WD-WGSL-20210623/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210628 +WGSL-20210628 +28 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210628/ +https://www.w3.org/TR/2021/WD-WGSL-20210628/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210629 +WGSL-20210629 +29 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210629/ +https://www.w3.org/TR/2021/WD-WGSL-20210629/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210630 +WGSL-20210630 +30 June 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210630/ +https://www.w3.org/TR/2021/WD-WGSL-20210630/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210706 +WGSL-20210706 +6 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210706/ +https://www.w3.org/TR/2021/WD-WGSL-20210706/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210707 +WGSL-20210707 +7 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210707/ +https://www.w3.org/TR/2021/WD-WGSL-20210707/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210708 +WGSL-20210708 +8 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210708/ +https://www.w3.org/TR/2021/WD-WGSL-20210708/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210711 +WGSL-20210711 +11 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210711/ +https://www.w3.org/TR/2021/WD-WGSL-20210711/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210712 +WGSL-20210712 +12 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210712/ +https://www.w3.org/TR/2021/WD-WGSL-20210712/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210713 +WGSL-20210713 +13 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210713/ +https://www.w3.org/TR/2021/WD-WGSL-20210713/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210714 +WGSL-20210714 +14 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210714/ +https://www.w3.org/TR/2021/WD-WGSL-20210714/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210715 +WGSL-20210715 +15 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210715/ +https://www.w3.org/TR/2021/WD-WGSL-20210715/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210716 +WGSL-20210716 +16 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210716/ +https://www.w3.org/TR/2021/WD-WGSL-20210716/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210717 +WGSL-20210717 +17 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210717/ +https://www.w3.org/TR/2021/WD-WGSL-20210717/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210719 +WGSL-20210719 +19 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210719/ +https://www.w3.org/TR/2021/WD-WGSL-20210719/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210720 +WGSL-20210720 +20 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210720/ +https://www.w3.org/TR/2021/WD-WGSL-20210720/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210721 +WGSL-20210721 +21 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210721/ +https://www.w3.org/TR/2021/WD-WGSL-20210721/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210722 +WGSL-20210722 +22 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210722/ +https://www.w3.org/TR/2021/WD-WGSL-20210722/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210723 +WGSL-20210723 +23 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210723/ +https://www.w3.org/TR/2021/WD-WGSL-20210723/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210726 +WGSL-20210726 +26 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210726/ +https://www.w3.org/TR/2021/WD-WGSL-20210726/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210727 +WGSL-20210727 +27 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210727/ +https://www.w3.org/TR/2021/WD-WGSL-20210727/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210728 +WGSL-20210728 +28 July 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210728/ +https://www.w3.org/TR/2021/WD-WGSL-20210728/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210803 +WGSL-20210803 +3 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210803/ +https://www.w3.org/TR/2021/WD-WGSL-20210803/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210804 +WGSL-20210804 +4 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210804/ +https://www.w3.org/TR/2021/WD-WGSL-20210804/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210806 +WGSL-20210806 +6 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210806/ +https://www.w3.org/TR/2021/WD-WGSL-20210806/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210818 +WGSL-20210818 +18 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210818/ +https://www.w3.org/TR/2021/WD-WGSL-20210818/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210823 +WGSL-20210823 +23 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210823/ +https://www.w3.org/TR/2021/WD-WGSL-20210823/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210824 +WGSL-20210824 +24 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210824/ +https://www.w3.org/TR/2021/WD-WGSL-20210824/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210825 +WGSL-20210825 +25 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210825/ +https://www.w3.org/TR/2021/WD-WGSL-20210825/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210826 +WGSL-20210826 +26 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210826/ +https://www.w3.org/TR/2021/WD-WGSL-20210826/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210831 +WGSL-20210831 +31 August 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210831/ +https://www.w3.org/TR/2021/WD-WGSL-20210831/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210908 +WGSL-20210908 +8 September 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210908/ +https://www.w3.org/TR/2021/WD-WGSL-20210908/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210910 +WGSL-20210910 +10 September 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210910/ +https://www.w3.org/TR/2021/WD-WGSL-20210910/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210920 +WGSL-20210920 +20 September 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210920/ +https://www.w3.org/TR/2021/WD-WGSL-20210920/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210921 +WGSL-20210921 +21 September 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210921/ +https://www.w3.org/TR/2021/WD-WGSL-20210921/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210928 +WGSL-20210928 +28 September 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210928/ +https://www.w3.org/TR/2021/WD-WGSL-20210928/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20210929 +WGSL-20210929 +29 September 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20210929/ +https://www.w3.org/TR/2021/WD-WGSL-20210929/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211004 +WGSL-20211004 +4 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211004/ +https://www.w3.org/TR/2021/WD-WGSL-20211004/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211006 +WGSL-20211006 +6 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211006/ +https://www.w3.org/TR/2021/WD-WGSL-20211006/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211012 +WGSL-20211012 +12 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211012/ +https://www.w3.org/TR/2021/WD-WGSL-20211012/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211013 +WGSL-20211013 +13 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211013/ +https://www.w3.org/TR/2021/WD-WGSL-20211013/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211014 +WGSL-20211014 +14 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211014/ +https://www.w3.org/TR/2021/WD-WGSL-20211014/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211015 +WGSL-20211015 +15 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211015/ +https://www.w3.org/TR/2021/WD-WGSL-20211015/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211018 +WGSL-20211018 +18 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211018/ +https://www.w3.org/TR/2021/WD-WGSL-20211018/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211019 +WGSL-20211019 +19 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211019/ +https://www.w3.org/TR/2021/WD-WGSL-20211019/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211022 +WGSL-20211022 +22 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211022/ +https://www.w3.org/TR/2021/WD-WGSL-20211022/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211025 +WGSL-20211025 +25 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211025/ +https://www.w3.org/TR/2021/WD-WGSL-20211025/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211026 +WGSL-20211026 +26 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211026/ +https://www.w3.org/TR/2021/WD-WGSL-20211026/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211028 +WGSL-20211028 +28 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211028/ +https://www.w3.org/TR/2021/WD-WGSL-20211028/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211029 +WGSL-20211029 +29 October 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211029/ +https://www.w3.org/TR/2021/WD-WGSL-20211029/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211101 +WGSL-20211101 +1 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211101/ +https://www.w3.org/TR/2021/WD-WGSL-20211101/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211102 +WGSL-20211102 +2 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211102/ +https://www.w3.org/TR/2021/WD-WGSL-20211102/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211112 +WGSL-20211112 +12 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211112/ +https://www.w3.org/TR/2021/WD-WGSL-20211112/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211113 +WGSL-20211113 +13 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211113/ +https://www.w3.org/TR/2021/WD-WGSL-20211113/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211116 +WGSL-20211116 +16 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211116/ +https://www.w3.org/TR/2021/WD-WGSL-20211116/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211117 +WGSL-20211117 +17 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211117/ +https://www.w3.org/TR/2021/WD-WGSL-20211117/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211118 +WGSL-20211118 +18 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211118/ +https://www.w3.org/TR/2021/WD-WGSL-20211118/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211119 +WGSL-20211119 +19 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211119/ +https://www.w3.org/TR/2021/WD-WGSL-20211119/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211123 +WGSL-20211123 +23 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211123/ +https://www.w3.org/TR/2021/WD-WGSL-20211123/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211124 +WGSL-20211124 +24 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211124/ +https://www.w3.org/TR/2021/WD-WGSL-20211124/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211125 +WGSL-20211125 +25 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211125/ +https://www.w3.org/TR/2021/WD-WGSL-20211125/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211129 +WGSL-20211129 +29 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211129/ +https://www.w3.org/TR/2021/WD-WGSL-20211129/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211130 +WGSL-20211130 +30 November 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211130/ +https://www.w3.org/TR/2021/WD-WGSL-20211130/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211201 +WGSL-20211201 +1 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211201/ +https://www.w3.org/TR/2021/WD-WGSL-20211201/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211202 +WGSL-20211202 +2 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211202/ +https://www.w3.org/TR/2021/WD-WGSL-20211202/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211203 +WGSL-20211203 +3 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211203/ +https://www.w3.org/TR/2021/WD-WGSL-20211203/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211205 +WGSL-20211205 +5 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211205/ +https://www.w3.org/TR/2021/WD-WGSL-20211205/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211206 +WGSL-20211206 +6 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211206/ +https://www.w3.org/TR/2021/WD-WGSL-20211206/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211207 +WGSL-20211207 +7 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211207/ +https://www.w3.org/TR/2021/WD-WGSL-20211207/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211208 +WGSL-20211208 +8 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211208/ +https://www.w3.org/TR/2021/WD-WGSL-20211208/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211210 +WGSL-20211210 +10 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211210/ +https://www.w3.org/TR/2021/WD-WGSL-20211210/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211214 +WGSL-20211214 +14 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211214/ +https://www.w3.org/TR/2021/WD-WGSL-20211214/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211215 +WGSL-20211215 +15 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211215/ +https://www.w3.org/TR/2021/WD-WGSL-20211215/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211216 +WGSL-20211216 +16 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211216/ +https://www.w3.org/TR/2021/WD-WGSL-20211216/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211220 +WGSL-20211220 +20 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211220/ +https://www.w3.org/TR/2021/WD-WGSL-20211220/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211221 +WGSL-20211221 +21 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211221/ +https://www.w3.org/TR/2021/WD-WGSL-20211221/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211222 +WGSL-20211222 +22 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211222/ +https://www.w3.org/TR/2021/WD-WGSL-20211222/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211223 +WGSL-20211223 +23 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211223/ +https://www.w3.org/TR/2021/WD-WGSL-20211223/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211224 +WGSL-20211224 +24 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211224/ +https://www.w3.org/TR/2021/WD-WGSL-20211224/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211228 +WGSL-20211228 +28 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211228/ +https://www.w3.org/TR/2021/WD-WGSL-20211228/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211229 +WGSL-20211229 +29 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211229/ +https://www.w3.org/TR/2021/WD-WGSL-20211229/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20211230 +WGSL-20211230 +30 December 2021 +WD +WebGPU Shading Language +https://www.w3.org/TR/2021/WD-WGSL-20211230/ +https://www.w3.org/TR/2021/WD-WGSL-20211230/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20220104 +WGSL-20220104 +4 January 2022 +WD +WebGPU Shading Language +https://www.w3.org/TR/2022/WD-WGSL-20220104/ +https://www.w3.org/TR/2022/WD-WGSL-20220104/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20220105 +WGSL-20220105 +5 January 2022 +WD +WebGPU Shading Language +https://www.w3.org/TR/2022/WD-WGSL-20220105/ +https://www.w3.org/TR/2022/WD-WGSL-20220105/ + + + +David Neto +Myles Maxfield +- +d:wgsl-20220106 +WGSL-20220106 +6 January 2022 +WD +WebGPU Shading Language +https://www.w3.org/TR/2022/WD-WGSL-20220106/ +https://www.w3.org/TR/2022/WD-WGSL-20220106/ David Neto Myles Maxfield - -d:wgsl-20210601 -WGSL-20210601 -1 June 2021 +d:wgsl-20220107 +WGSL-20220107 +7 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210601/ -https://www.w3.org/TR/2021/WD-WGSL-20210601/ +https://www.w3.org/TR/2022/WD-WGSL-20220107/ +https://www.w3.org/TR/2022/WD-WGSL-20220107/ David Neto Myles Maxfield - -d:wgsl-20210602 -WGSL-20210602 -2 June 2021 +d:wgsl-20220110 +WGSL-20220110 +10 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210602/ -https://www.w3.org/TR/2021/WD-WGSL-20210602/ +https://www.w3.org/TR/2022/WD-WGSL-20220110/ +https://www.w3.org/TR/2022/WD-WGSL-20220110/ David Neto Myles Maxfield - -d:wgsl-20210603 -WGSL-20210603 -3 June 2021 +d:wgsl-20220111 +WGSL-20220111 +11 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210603/ -https://www.w3.org/TR/2021/WD-WGSL-20210603/ +https://www.w3.org/TR/2022/WD-WGSL-20220111/ +https://www.w3.org/TR/2022/WD-WGSL-20220111/ David Neto Myles Maxfield - -d:wgsl-20210604 -WGSL-20210604 -4 June 2021 +d:wgsl-20220112 +WGSL-20220112 +12 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210604/ -https://www.w3.org/TR/2021/WD-WGSL-20210604/ +https://www.w3.org/TR/2022/WD-WGSL-20220112/ +https://www.w3.org/TR/2022/WD-WGSL-20220112/ David Neto Myles Maxfield - -d:wgsl-20210608 -WGSL-20210608 -8 June 2021 +d:wgsl-20220113 +WGSL-20220113 +13 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210608/ -https://www.w3.org/TR/2021/WD-WGSL-20210608/ +https://www.w3.org/TR/2022/WD-WGSL-20220113/ +https://www.w3.org/TR/2022/WD-WGSL-20220113/ David Neto Myles Maxfield - -d:wgsl-20210609 -WGSL-20210609 -9 June 2021 +d:wgsl-20220117 +WGSL-20220117 +17 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210609/ -https://www.w3.org/TR/2021/WD-WGSL-20210609/ +https://www.w3.org/TR/2022/WD-WGSL-20220117/ +https://www.w3.org/TR/2022/WD-WGSL-20220117/ David Neto Myles Maxfield - -d:wgsl-20210610 -WGSL-20210610 -10 June 2021 +d:wgsl-20220118 +WGSL-20220118 +18 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210610/ -https://www.w3.org/TR/2021/WD-WGSL-20210610/ +https://www.w3.org/TR/2022/WD-WGSL-20220118/ +https://www.w3.org/TR/2022/WD-WGSL-20220118/ David Neto Myles Maxfield - -d:wgsl-20210614 -WGSL-20210614 -14 June 2021 +d:wgsl-20220119 +WGSL-20220119 +19 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210614/ -https://www.w3.org/TR/2021/WD-WGSL-20210614/ +https://www.w3.org/TR/2022/WD-WGSL-20220119/ +https://www.w3.org/TR/2022/WD-WGSL-20220119/ David Neto Myles Maxfield - -d:wgsl-20210615 -WGSL-20210615 -15 June 2021 +d:wgsl-20220125 +WGSL-20220125 +25 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210615/ -https://www.w3.org/TR/2021/WD-WGSL-20210615/ +https://www.w3.org/TR/2022/WD-WGSL-20220125/ +https://www.w3.org/TR/2022/WD-WGSL-20220125/ David Neto Myles Maxfield - -d:wgsl-20210616 -WGSL-20210616 -16 June 2021 +d:wgsl-20220126 +WGSL-20220126 +26 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210616/ -https://www.w3.org/TR/2021/WD-WGSL-20210616/ +https://www.w3.org/TR/2022/WD-WGSL-20220126/ +https://www.w3.org/TR/2022/WD-WGSL-20220126/ David Neto Myles Maxfield - -d:wgsl-20210617 -WGSL-20210617 -17 June 2021 +d:wgsl-20220127 +WGSL-20220127 +27 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210617/ -https://www.w3.org/TR/2021/WD-WGSL-20210617/ +https://www.w3.org/TR/2022/WD-WGSL-20220127/ +https://www.w3.org/TR/2022/WD-WGSL-20220127/ David Neto Myles Maxfield - -d:wgsl-20210618 -WGSL-20210618 -18 June 2021 +d:wgsl-20220128 +WGSL-20220128 +28 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210618/ -https://www.w3.org/TR/2021/WD-WGSL-20210618/ +https://www.w3.org/TR/2022/WD-WGSL-20220128/ +https://www.w3.org/TR/2022/WD-WGSL-20220128/ David Neto Myles Maxfield - -d:wgsl-20210620 -WGSL-20210620 -20 June 2021 +d:wgsl-20220131 +WGSL-20220131 +31 January 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210620/ -https://www.w3.org/TR/2021/WD-WGSL-20210620/ +https://www.w3.org/TR/2022/WD-WGSL-20220131/ +https://www.w3.org/TR/2022/WD-WGSL-20220131/ David Neto Myles Maxfield - -d:wgsl-20210622 -WGSL-20210622 -22 June 2021 +d:wgsl-20220202 +WGSL-20220202 +2 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210622/ -https://www.w3.org/TR/2021/WD-WGSL-20210622/ +https://www.w3.org/TR/2022/WD-WGSL-20220202/ +https://www.w3.org/TR/2022/WD-WGSL-20220202/ David Neto Myles Maxfield - -d:wgsl-20210623 -WGSL-20210623 -23 June 2021 +d:wgsl-20220203 +WGSL-20220203 +3 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210623/ -https://www.w3.org/TR/2021/WD-WGSL-20210623/ +https://www.w3.org/TR/2022/WD-WGSL-20220203/ +https://www.w3.org/TR/2022/WD-WGSL-20220203/ David Neto Myles Maxfield - -d:wgsl-20210628 -WGSL-20210628 -28 June 2021 +d:wgsl-20220204 +WGSL-20220204 +4 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210628/ -https://www.w3.org/TR/2021/WD-WGSL-20210628/ +https://www.w3.org/TR/2022/WD-WGSL-20220204/ +https://www.w3.org/TR/2022/WD-WGSL-20220204/ David Neto Myles Maxfield - -d:wgsl-20210629 -WGSL-20210629 -29 June 2021 +d:wgsl-20220205 +WGSL-20220205 +5 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210629/ -https://www.w3.org/TR/2021/WD-WGSL-20210629/ +https://www.w3.org/TR/2022/WD-WGSL-20220205/ +https://www.w3.org/TR/2022/WD-WGSL-20220205/ David Neto Myles Maxfield - -d:wgsl-20210630 -WGSL-20210630 -30 June 2021 +d:wgsl-20220207 +WGSL-20220207 +7 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210630/ -https://www.w3.org/TR/2021/WD-WGSL-20210630/ +https://www.w3.org/TR/2022/WD-WGSL-20220207/ +https://www.w3.org/TR/2022/WD-WGSL-20220207/ David Neto Myles Maxfield - -d:wgsl-20210706 -WGSL-20210706 -6 July 2021 +d:wgsl-20220208 +WGSL-20220208 +8 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210706/ -https://www.w3.org/TR/2021/WD-WGSL-20210706/ +https://www.w3.org/TR/2022/WD-WGSL-20220208/ +https://www.w3.org/TR/2022/WD-WGSL-20220208/ David Neto Myles Maxfield - -d:wgsl-20210707 -WGSL-20210707 -7 July 2021 +d:wgsl-20220209 +WGSL-20220209 +9 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210707/ -https://www.w3.org/TR/2021/WD-WGSL-20210707/ +https://www.w3.org/TR/2022/WD-WGSL-20220209/ +https://www.w3.org/TR/2022/WD-WGSL-20220209/ David Neto Myles Maxfield - -d:wgsl-20210708 -WGSL-20210708 -8 July 2021 +d:wgsl-20220210 +WGSL-20220210 +10 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210708/ -https://www.w3.org/TR/2021/WD-WGSL-20210708/ +https://www.w3.org/TR/2022/WD-WGSL-20220210/ +https://www.w3.org/TR/2022/WD-WGSL-20220210/ David Neto Myles Maxfield - -d:wgsl-20210711 -WGSL-20210711 -11 July 2021 +d:wgsl-20220211 +WGSL-20220211 +11 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210711/ -https://www.w3.org/TR/2021/WD-WGSL-20210711/ +https://www.w3.org/TR/2022/WD-WGSL-20220211/ +https://www.w3.org/TR/2022/WD-WGSL-20220211/ David Neto Myles Maxfield - -d:wgsl-20210712 -WGSL-20210712 -12 July 2021 +d:wgsl-20220214 +WGSL-20220214 +14 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210712/ -https://www.w3.org/TR/2021/WD-WGSL-20210712/ +https://www.w3.org/TR/2022/WD-WGSL-20220214/ +https://www.w3.org/TR/2022/WD-WGSL-20220214/ David Neto Myles Maxfield - -d:wgsl-20210713 -WGSL-20210713 -13 July 2021 +d:wgsl-20220215 +WGSL-20220215 +15 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210713/ -https://www.w3.org/TR/2021/WD-WGSL-20210713/ +https://www.w3.org/TR/2022/WD-WGSL-20220215/ +https://www.w3.org/TR/2022/WD-WGSL-20220215/ David Neto Myles Maxfield - -d:wgsl-20210714 -WGSL-20210714 -14 July 2021 +d:wgsl-20220217 +WGSL-20220217 +17 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210714/ -https://www.w3.org/TR/2021/WD-WGSL-20210714/ +https://www.w3.org/TR/2022/WD-WGSL-20220217/ +https://www.w3.org/TR/2022/WD-WGSL-20220217/ David Neto Myles Maxfield - -d:wgsl-20210715 -WGSL-20210715 -15 July 2021 +d:wgsl-20220218 +WGSL-20220218 +18 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210715/ -https://www.w3.org/TR/2021/WD-WGSL-20210715/ +https://www.w3.org/TR/2022/WD-WGSL-20220218/ +https://www.w3.org/TR/2022/WD-WGSL-20220218/ David Neto Myles Maxfield - -d:wgsl-20210716 -WGSL-20210716 -16 July 2021 +d:wgsl-20220222 +WGSL-20220222 +22 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210716/ -https://www.w3.org/TR/2021/WD-WGSL-20210716/ +https://www.w3.org/TR/2022/WD-WGSL-20220222/ +https://www.w3.org/TR/2022/WD-WGSL-20220222/ David Neto Myles Maxfield - -d:wgsl-20210717 -WGSL-20210717 -17 July 2021 +d:wgsl-20220223 +WGSL-20220223 +23 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210717/ -https://www.w3.org/TR/2021/WD-WGSL-20210717/ +https://www.w3.org/TR/2022/WD-WGSL-20220223/ +https://www.w3.org/TR/2022/WD-WGSL-20220223/ David Neto Myles Maxfield - -d:wgsl-20210719 -WGSL-20210719 -19 July 2021 +d:wgsl-20220224 +WGSL-20220224 +24 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210719/ -https://www.w3.org/TR/2021/WD-WGSL-20210719/ +https://www.w3.org/TR/2022/WD-WGSL-20220224/ +https://www.w3.org/TR/2022/WD-WGSL-20220224/ David Neto Myles Maxfield - -d:wgsl-20210720 -WGSL-20210720 -20 July 2021 +d:wgsl-20220225 +WGSL-20220225 +25 February 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210720/ -https://www.w3.org/TR/2021/WD-WGSL-20210720/ +https://www.w3.org/TR/2022/WD-WGSL-20220225/ +https://www.w3.org/TR/2022/WD-WGSL-20220225/ David Neto Myles Maxfield - -d:wgsl-20210721 -WGSL-20210721 -21 July 2021 +d:wgsl-20220302 +WGSL-20220302 +2 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210721/ -https://www.w3.org/TR/2021/WD-WGSL-20210721/ +https://www.w3.org/TR/2022/WD-WGSL-20220302/ +https://www.w3.org/TR/2022/WD-WGSL-20220302/ David Neto Myles Maxfield - -d:wgsl-20210722 -WGSL-20210722 -22 July 2021 +d:wgsl-20220303 +WGSL-20220303 +3 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210722/ -https://www.w3.org/TR/2021/WD-WGSL-20210722/ +https://www.w3.org/TR/2022/WD-WGSL-20220303/ +https://www.w3.org/TR/2022/WD-WGSL-20220303/ David Neto Myles Maxfield - -d:wgsl-20210723 -WGSL-20210723 -23 July 2021 +d:wgsl-20220310 +WGSL-20220310 +10 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210723/ -https://www.w3.org/TR/2021/WD-WGSL-20210723/ +https://www.w3.org/TR/2022/WD-WGSL-20220310/ +https://www.w3.org/TR/2022/WD-WGSL-20220310/ David Neto Myles Maxfield - -d:wgsl-20210726 -WGSL-20210726 -26 July 2021 +d:wgsl-20220315 +WGSL-20220315 +15 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210726/ -https://www.w3.org/TR/2021/WD-WGSL-20210726/ +https://www.w3.org/TR/2022/WD-WGSL-20220315/ +https://www.w3.org/TR/2022/WD-WGSL-20220315/ David Neto Myles Maxfield - -d:wgsl-20210727 -WGSL-20210727 -27 July 2021 +d:wgsl-20220316 +WGSL-20220316 +16 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210727/ -https://www.w3.org/TR/2021/WD-WGSL-20210727/ +https://www.w3.org/TR/2022/WD-WGSL-20220316/ +https://www.w3.org/TR/2022/WD-WGSL-20220316/ David Neto Myles Maxfield - -d:wgsl-20210728 -WGSL-20210728 -28 July 2021 +d:wgsl-20220319 +WGSL-20220319 +19 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210728/ -https://www.w3.org/TR/2021/WD-WGSL-20210728/ +https://www.w3.org/TR/2022/WD-WGSL-20220319/ +https://www.w3.org/TR/2022/WD-WGSL-20220319/ David Neto Myles Maxfield - -d:wgsl-20210803 -WGSL-20210803 -3 August 2021 +d:wgsl-20220321 +WGSL-20220321 +21 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210803/ -https://www.w3.org/TR/2021/WD-WGSL-20210803/ +https://www.w3.org/TR/2022/WD-WGSL-20220321/ +https://www.w3.org/TR/2022/WD-WGSL-20220321/ David Neto Myles Maxfield - -d:wgsl-20210804 -WGSL-20210804 -4 August 2021 +d:wgsl-20220323 +WGSL-20220323 +23 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210804/ -https://www.w3.org/TR/2021/WD-WGSL-20210804/ +https://www.w3.org/TR/2022/WD-WGSL-20220323/ +https://www.w3.org/TR/2022/WD-WGSL-20220323/ David Neto Myles Maxfield - -d:wgsl-20210806 -WGSL-20210806 -6 August 2021 +d:wgsl-20220324 +WGSL-20220324 +24 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210806/ -https://www.w3.org/TR/2021/WD-WGSL-20210806/ +https://www.w3.org/TR/2022/WD-WGSL-20220324/ +https://www.w3.org/TR/2022/WD-WGSL-20220324/ David Neto Myles Maxfield - -d:wgsl-20210818 -WGSL-20210818 -18 August 2021 +d:wgsl-20220325 +WGSL-20220325 +25 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210818/ -https://www.w3.org/TR/2021/WD-WGSL-20210818/ +https://www.w3.org/TR/2022/WD-WGSL-20220325/ +https://www.w3.org/TR/2022/WD-WGSL-20220325/ David Neto Myles Maxfield - -d:wgsl-20210823 -WGSL-20210823 -23 August 2021 +d:wgsl-20220326 +WGSL-20220326 +26 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210823/ -https://www.w3.org/TR/2021/WD-WGSL-20210823/ +https://www.w3.org/TR/2022/WD-WGSL-20220326/ +https://www.w3.org/TR/2022/WD-WGSL-20220326/ David Neto Myles Maxfield - -d:wgsl-20210824 -WGSL-20210824 -24 August 2021 +d:wgsl-20220328 +WGSL-20220328 +28 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210824/ -https://www.w3.org/TR/2021/WD-WGSL-20210824/ +https://www.w3.org/TR/2022/WD-WGSL-20220328/ +https://www.w3.org/TR/2022/WD-WGSL-20220328/ David Neto Myles Maxfield - -d:wgsl-20210825 -WGSL-20210825 -25 August 2021 +d:wgsl-20220329 +WGSL-20220329 +29 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210825/ -https://www.w3.org/TR/2021/WD-WGSL-20210825/ +https://www.w3.org/TR/2022/WD-WGSL-20220329/ +https://www.w3.org/TR/2022/WD-WGSL-20220329/ David Neto Myles Maxfield - -d:wgsl-20210826 -WGSL-20210826 -26 August 2021 +d:wgsl-20220331 +WGSL-20220331 +31 March 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210826/ -https://www.w3.org/TR/2021/WD-WGSL-20210826/ +https://www.w3.org/TR/2022/WD-WGSL-20220331/ +https://www.w3.org/TR/2022/WD-WGSL-20220331/ David Neto Myles Maxfield - -d:wgsl-20210831 -WGSL-20210831 -31 August 2021 +d:wgsl-20220403 +WGSL-20220403 +3 April 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210831/ -https://www.w3.org/TR/2021/WD-WGSL-20210831/ +https://www.w3.org/TR/2022/WD-WGSL-20220403/ +https://www.w3.org/TR/2022/WD-WGSL-20220403/ David Neto Myles Maxfield - -d:wgsl-20210908 -WGSL-20210908 -8 September 2021 +d:wgsl-20220404 +WGSL-20220404 +4 April 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210908/ -https://www.w3.org/TR/2021/WD-WGSL-20210908/ +https://www.w3.org/TR/2022/WD-WGSL-20220404/ +https://www.w3.org/TR/2022/WD-WGSL-20220404/ David Neto Myles Maxfield - -d:wgsl-20210910 -WGSL-20210910 -10 September 2021 +d:wgsl-20220506 +WGSL-20220506 +6 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210910/ -https://www.w3.org/TR/2021/WD-WGSL-20210910/ +https://www.w3.org/TR/2022/WD-WGSL-20220506/ +https://www.w3.org/TR/2022/WD-WGSL-20220506/ David Neto Myles Maxfield - -d:wgsl-20210920 -WGSL-20210920 -20 September 2021 +d:wgsl-20220509 +WGSL-20220509 +9 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210920/ -https://www.w3.org/TR/2021/WD-WGSL-20210920/ +https://www.w3.org/TR/2022/WD-WGSL-20220509/ +https://www.w3.org/TR/2022/WD-WGSL-20220509/ David Neto Myles Maxfield - -d:wgsl-20210921 -WGSL-20210921 -21 September 2021 +d:wgsl-20220510 +WGSL-20220510 +10 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210921/ -https://www.w3.org/TR/2021/WD-WGSL-20210921/ +https://www.w3.org/TR/2022/WD-WGSL-20220510/ +https://www.w3.org/TR/2022/WD-WGSL-20220510/ David Neto Myles Maxfield - -d:wgsl-20210928 -WGSL-20210928 -28 September 2021 +d:wgsl-20220511 +WGSL-20220511 +11 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210928/ -https://www.w3.org/TR/2021/WD-WGSL-20210928/ +https://www.w3.org/TR/2022/WD-WGSL-20220511/ +https://www.w3.org/TR/2022/WD-WGSL-20220511/ David Neto Myles Maxfield - -d:wgsl-20210929 -WGSL-20210929 -29 September 2021 +d:wgsl-20220512 +WGSL-20220512 +12 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20210929/ -https://www.w3.org/TR/2021/WD-WGSL-20210929/ +https://www.w3.org/TR/2022/WD-WGSL-20220512/ +https://www.w3.org/TR/2022/WD-WGSL-20220512/ David Neto Myles Maxfield - -d:wgsl-20211004 -WGSL-20211004 -4 October 2021 +d:wgsl-20220513 +WGSL-20220513 +13 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211004/ -https://www.w3.org/TR/2021/WD-WGSL-20211004/ +https://www.w3.org/TR/2022/WD-WGSL-20220513/ +https://www.w3.org/TR/2022/WD-WGSL-20220513/ David Neto Myles Maxfield - -d:wgsl-20211006 -WGSL-20211006 -6 October 2021 +d:wgsl-20220516 +WGSL-20220516 +16 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211006/ -https://www.w3.org/TR/2021/WD-WGSL-20211006/ +https://www.w3.org/TR/2022/WD-WGSL-20220516/ +https://www.w3.org/TR/2022/WD-WGSL-20220516/ David Neto Myles Maxfield - -d:wgsl-20211012 -WGSL-20211012 -12 October 2021 +d:wgsl-20220517 +WGSL-20220517 +17 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211012/ -https://www.w3.org/TR/2021/WD-WGSL-20211012/ +https://www.w3.org/TR/2022/WD-WGSL-20220517/ +https://www.w3.org/TR/2022/WD-WGSL-20220517/ David Neto Myles Maxfield - -d:wgsl-20211013 -WGSL-20211013 -13 October 2021 +d:wgsl-20220518 +WGSL-20220518 +18 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211013/ -https://www.w3.org/TR/2021/WD-WGSL-20211013/ +https://www.w3.org/TR/2022/WD-WGSL-20220518/ +https://www.w3.org/TR/2022/WD-WGSL-20220518/ David Neto Myles Maxfield - -d:wgsl-20211014 -WGSL-20211014 -14 October 2021 +d:wgsl-20220520 +WGSL-20220520 +20 May 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211014/ -https://www.w3.org/TR/2021/WD-WGSL-20211014/ +https://www.w3.org/TR/2022/WD-WGSL-20220520/ +https://www.w3.org/TR/2022/WD-WGSL-20220520/ David Neto Myles Maxfield - -d:wgsl-20211015 -WGSL-20211015 -15 October 2021 +d:wgsl-20220603 +WGSL-20220603 +3 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211015/ -https://www.w3.org/TR/2021/WD-WGSL-20211015/ +https://www.w3.org/TR/2022/WD-WGSL-20220603/ +https://www.w3.org/TR/2022/WD-WGSL-20220603/ David Neto Myles Maxfield - -d:wgsl-20211018 -WGSL-20211018 -18 October 2021 +d:wgsl-20220606 +WGSL-20220606 +6 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211018/ -https://www.w3.org/TR/2021/WD-WGSL-20211018/ +https://www.w3.org/TR/2022/WD-WGSL-20220606/ +https://www.w3.org/TR/2022/WD-WGSL-20220606/ David Neto Myles Maxfield - -d:wgsl-20211019 -WGSL-20211019 -19 October 2021 +d:wgsl-20220607 +WGSL-20220607 +7 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211019/ -https://www.w3.org/TR/2021/WD-WGSL-20211019/ +https://www.w3.org/TR/2022/WD-WGSL-20220607/ +https://www.w3.org/TR/2022/WD-WGSL-20220607/ David Neto Myles Maxfield - -d:wgsl-20211022 -WGSL-20211022 -22 October 2021 +d:wgsl-20220608 +WGSL-20220608 +8 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211022/ -https://www.w3.org/TR/2021/WD-WGSL-20211022/ +https://www.w3.org/TR/2022/WD-WGSL-20220608/ +https://www.w3.org/TR/2022/WD-WGSL-20220608/ David Neto Myles Maxfield - -d:wgsl-20211025 -WGSL-20211025 -25 October 2021 +d:wgsl-20220609 +WGSL-20220609 +9 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211025/ -https://www.w3.org/TR/2021/WD-WGSL-20211025/ +https://www.w3.org/TR/2022/WD-WGSL-20220609/ +https://www.w3.org/TR/2022/WD-WGSL-20220609/ David Neto Myles Maxfield - -d:wgsl-20211026 -WGSL-20211026 -26 October 2021 +d:wgsl-20220610 +WGSL-20220610 +10 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211026/ -https://www.w3.org/TR/2021/WD-WGSL-20211026/ +https://www.w3.org/TR/2022/WD-WGSL-20220610/ +https://www.w3.org/TR/2022/WD-WGSL-20220610/ David Neto Myles Maxfield - -d:wgsl-20211028 -WGSL-20211028 -28 October 2021 +d:wgsl-20220611 +WGSL-20220611 +11 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211028/ -https://www.w3.org/TR/2021/WD-WGSL-20211028/ +https://www.w3.org/TR/2022/WD-WGSL-20220611/ +https://www.w3.org/TR/2022/WD-WGSL-20220611/ David Neto Myles Maxfield - -d:wgsl-20211029 -WGSL-20211029 -29 October 2021 +d:wgsl-20220613 +WGSL-20220613 +13 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211029/ -https://www.w3.org/TR/2021/WD-WGSL-20211029/ +https://www.w3.org/TR/2022/WD-WGSL-20220613/ +https://www.w3.org/TR/2022/WD-WGSL-20220613/ David Neto Myles Maxfield - -d:wgsl-20211101 -WGSL-20211101 -1 November 2021 +d:wgsl-20220614 +WGSL-20220614 +14 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211101/ -https://www.w3.org/TR/2021/WD-WGSL-20211101/ +https://www.w3.org/TR/2022/WD-WGSL-20220614/ +https://www.w3.org/TR/2022/WD-WGSL-20220614/ David Neto Myles Maxfield - -d:wgsl-20211102 -WGSL-20211102 -2 November 2021 +d:wgsl-20220616 +WGSL-20220616 +16 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211102/ -https://www.w3.org/TR/2021/WD-WGSL-20211102/ +https://www.w3.org/TR/2022/WD-WGSL-20220616/ +https://www.w3.org/TR/2022/WD-WGSL-20220616/ David Neto Myles Maxfield - -d:wgsl-20211112 -WGSL-20211112 -12 November 2021 +d:wgsl-20220617 +WGSL-20220617 +17 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211112/ -https://www.w3.org/TR/2021/WD-WGSL-20211112/ +https://www.w3.org/TR/2022/WD-WGSL-20220617/ +https://www.w3.org/TR/2022/WD-WGSL-20220617/ David Neto Myles Maxfield - -d:wgsl-20211113 -WGSL-20211113 -13 November 2021 +d:wgsl-20220623 +WGSL-20220623 +23 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211113/ -https://www.w3.org/TR/2021/WD-WGSL-20211113/ +https://www.w3.org/TR/2022/WD-WGSL-20220623/ +https://www.w3.org/TR/2022/WD-WGSL-20220623/ David Neto Myles Maxfield - -d:wgsl-20211116 -WGSL-20211116 -16 November 2021 +d:wgsl-20220624 +WGSL-20220624 +24 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211116/ -https://www.w3.org/TR/2021/WD-WGSL-20211116/ +https://www.w3.org/TR/2022/WD-WGSL-20220624/ +https://www.w3.org/TR/2022/WD-WGSL-20220624/ David Neto Myles Maxfield - -d:wgsl-20211117 -WGSL-20211117 -17 November 2021 +d:wgsl-20220627 +WGSL-20220627 +27 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211117/ -https://www.w3.org/TR/2021/WD-WGSL-20211117/ +https://www.w3.org/TR/2022/WD-WGSL-20220627/ +https://www.w3.org/TR/2022/WD-WGSL-20220627/ David Neto Myles Maxfield - -d:wgsl-20211118 -WGSL-20211118 -18 November 2021 +d:wgsl-20220628 +WGSL-20220628 +28 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211118/ -https://www.w3.org/TR/2021/WD-WGSL-20211118/ +https://www.w3.org/TR/2022/WD-WGSL-20220628/ +https://www.w3.org/TR/2022/WD-WGSL-20220628/ David Neto Myles Maxfield - -d:wgsl-20211119 -WGSL-20211119 -19 November 2021 +d:wgsl-20220629 +WGSL-20220629 +29 June 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211119/ -https://www.w3.org/TR/2021/WD-WGSL-20211119/ +https://www.w3.org/TR/2022/WD-WGSL-20220629/ +https://www.w3.org/TR/2022/WD-WGSL-20220629/ David Neto Myles Maxfield - -d:wgsl-20211123 -WGSL-20211123 -23 November 2021 +d:wgsl-20220704 +WGSL-20220704 +4 July 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211123/ -https://www.w3.org/TR/2021/WD-WGSL-20211123/ +https://www.w3.org/TR/2022/WD-WGSL-20220704/ +https://www.w3.org/TR/2022/WD-WGSL-20220704/ David Neto Myles Maxfield - -d:wgsl-20211124 -WGSL-20211124 -24 November 2021 +d:wgsl-20220705 +WGSL-20220705 +5 July 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211124/ -https://www.w3.org/TR/2021/WD-WGSL-20211124/ +https://www.w3.org/TR/2022/WD-WGSL-20220705/ +https://www.w3.org/TR/2022/WD-WGSL-20220705/ David Neto Myles Maxfield - -d:wgsl-20211125 -WGSL-20211125 -25 November 2021 +d:wgsl-20220706 +WGSL-20220706 +6 July 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211125/ -https://www.w3.org/TR/2021/WD-WGSL-20211125/ +https://www.w3.org/TR/2022/WD-WGSL-20220706/ +https://www.w3.org/TR/2022/WD-WGSL-20220706/ David Neto Myles Maxfield - -d:wgsl-20211129 -WGSL-20211129 -29 November 2021 +d:wgsl-20220707 +WGSL-20220707 +7 July 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211129/ -https://www.w3.org/TR/2021/WD-WGSL-20211129/ +https://www.w3.org/TR/2022/WD-WGSL-20220707/ +https://www.w3.org/TR/2022/WD-WGSL-20220707/ David Neto Myles Maxfield - -d:wgsl-20211130 -WGSL-20211130 -30 November 2021 +d:wgsl-20220708 +WGSL-20220708 +8 July 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211130/ -https://www.w3.org/TR/2021/WD-WGSL-20211130/ +https://www.w3.org/TR/2022/WD-WGSL-20220708/ +https://www.w3.org/TR/2022/WD-WGSL-20220708/ David Neto Myles Maxfield - -d:wgsl-20211201 -WGSL-20211201 -1 December 2021 +d:wgsl-20220710 +WGSL-20220710 +10 July 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211201/ -https://www.w3.org/TR/2021/WD-WGSL-20211201/ +https://www.w3.org/TR/2022/WD-WGSL-20220710/ +https://www.w3.org/TR/2022/WD-WGSL-20220710/ David Neto Myles Maxfield - -d:wgsl-20211202 -WGSL-20211202 -2 December 2021 +d:wgsl-20220803 +WGSL-20220803 +3 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211202/ -https://www.w3.org/TR/2021/WD-WGSL-20211202/ +https://www.w3.org/TR/2022/WD-WGSL-20220803/ +https://www.w3.org/TR/2022/WD-WGSL-20220803/ David Neto Myles Maxfield - -d:wgsl-20211203 -WGSL-20211203 -3 December 2021 +d:wgsl-20220804 +WGSL-20220804 +4 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211203/ -https://www.w3.org/TR/2021/WD-WGSL-20211203/ +https://www.w3.org/TR/2022/WD-WGSL-20220804/ +https://www.w3.org/TR/2022/WD-WGSL-20220804/ David Neto Myles Maxfield - -d:wgsl-20211205 -WGSL-20211205 -5 December 2021 +d:wgsl-20220810 +WGSL-20220810 +10 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211205/ -https://www.w3.org/TR/2021/WD-WGSL-20211205/ +https://www.w3.org/TR/2022/WD-WGSL-20220810/ +https://www.w3.org/TR/2022/WD-WGSL-20220810/ David Neto Myles Maxfield - -d:wgsl-20211206 -WGSL-20211206 -6 December 2021 +d:wgsl-20220811 +WGSL-20220811 +11 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211206/ -https://www.w3.org/TR/2021/WD-WGSL-20211206/ +https://www.w3.org/TR/2022/WD-WGSL-20220811/ +https://www.w3.org/TR/2022/WD-WGSL-20220811/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211207 -WGSL-20211207 -7 December 2021 +d:wgsl-20220812 +WGSL-20220812 +12 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211207/ -https://www.w3.org/TR/2021/WD-WGSL-20211207/ +https://www.w3.org/TR/2022/WD-WGSL-20220812/ +https://www.w3.org/TR/2022/WD-WGSL-20220812/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211208 -WGSL-20211208 -8 December 2021 +d:wgsl-20220815 +WGSL-20220815 +15 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211208/ -https://www.w3.org/TR/2021/WD-WGSL-20211208/ +https://www.w3.org/TR/2022/WD-WGSL-20220815/ +https://www.w3.org/TR/2022/WD-WGSL-20220815/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211210 -WGSL-20211210 -10 December 2021 +d:wgsl-20220816 +WGSL-20220816 +16 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211210/ -https://www.w3.org/TR/2021/WD-WGSL-20211210/ +https://www.w3.org/TR/2022/WD-WGSL-20220816/ +https://www.w3.org/TR/2022/WD-WGSL-20220816/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211214 -WGSL-20211214 -14 December 2021 +d:wgsl-20220817 +WGSL-20220817 +17 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211214/ -https://www.w3.org/TR/2021/WD-WGSL-20211214/ +https://www.w3.org/TR/2022/WD-WGSL-20220817/ +https://www.w3.org/TR/2022/WD-WGSL-20220817/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211215 -WGSL-20211215 -15 December 2021 +d:wgsl-20220818 +WGSL-20220818 +18 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211215/ -https://www.w3.org/TR/2021/WD-WGSL-20211215/ +https://www.w3.org/TR/2022/WD-WGSL-20220818/ +https://www.w3.org/TR/2022/WD-WGSL-20220818/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211216 -WGSL-20211216 -16 December 2021 +d:wgsl-20220824 +WGSL-20220824 +24 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211216/ -https://www.w3.org/TR/2021/WD-WGSL-20211216/ +https://www.w3.org/TR/2022/WD-WGSL-20220824/ +https://www.w3.org/TR/2022/WD-WGSL-20220824/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211220 -WGSL-20211220 -20 December 2021 +d:wgsl-20220825 +WGSL-20220825 +25 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211220/ -https://www.w3.org/TR/2021/WD-WGSL-20211220/ +https://www.w3.org/TR/2022/WD-WGSL-20220825/ +https://www.w3.org/TR/2022/WD-WGSL-20220825/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211221 -WGSL-20211221 -21 December 2021 +d:wgsl-20220829 +WGSL-20220829 +29 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211221/ -https://www.w3.org/TR/2021/WD-WGSL-20211221/ +https://www.w3.org/TR/2022/WD-WGSL-20220829/ +https://www.w3.org/TR/2022/WD-WGSL-20220829/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211222 -WGSL-20211222 -22 December 2021 +d:wgsl-20220830 +WGSL-20220830 +30 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211222/ -https://www.w3.org/TR/2021/WD-WGSL-20211222/ +https://www.w3.org/TR/2022/WD-WGSL-20220830/ +https://www.w3.org/TR/2022/WD-WGSL-20220830/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211223 -WGSL-20211223 -23 December 2021 +d:wgsl-20220831 +WGSL-20220831 +31 August 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211223/ -https://www.w3.org/TR/2021/WD-WGSL-20211223/ +https://www.w3.org/TR/2022/WD-WGSL-20220831/ +https://www.w3.org/TR/2022/WD-WGSL-20220831/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211224 -WGSL-20211224 -24 December 2021 +d:wgsl-20220908 +WGSL-20220908 +8 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211224/ -https://www.w3.org/TR/2021/WD-WGSL-20211224/ +https://www.w3.org/TR/2022/WD-WGSL-20220908/ +https://www.w3.org/TR/2022/WD-WGSL-20220908/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211228 -WGSL-20211228 -28 December 2021 +d:wgsl-20220909 +WGSL-20220909 +9 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211228/ -https://www.w3.org/TR/2021/WD-WGSL-20211228/ +https://www.w3.org/TR/2022/WD-WGSL-20220909/ +https://www.w3.org/TR/2022/WD-WGSL-20220909/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211229 -WGSL-20211229 -29 December 2021 +d:wgsl-20220910 +WGSL-20220910 +10 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211229/ -https://www.w3.org/TR/2021/WD-WGSL-20211229/ +https://www.w3.org/TR/2022/WD-WGSL-20220910/ +https://www.w3.org/TR/2022/WD-WGSL-20220910/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20211230 -WGSL-20211230 -30 December 2021 +d:wgsl-20220912 +WGSL-20220912 +12 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2021/WD-WGSL-20211230/ -https://www.w3.org/TR/2021/WD-WGSL-20211230/ +https://www.w3.org/TR/2022/WD-WGSL-20220912/ +https://www.w3.org/TR/2022/WD-WGSL-20220912/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220104 -WGSL-20220104 -4 January 2022 +d:wgsl-20220913 +WGSL-20220913 +13 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220104/ -https://www.w3.org/TR/2022/WD-WGSL-20220104/ +https://www.w3.org/TR/2022/WD-WGSL-20220913/ +https://www.w3.org/TR/2022/WD-WGSL-20220913/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield -- -d:wgsl-20220105 -WGSL-20220105 -5 January 2022 +- +d:wgsl-20220915 +WGSL-20220915 +15 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220105/ -https://www.w3.org/TR/2022/WD-WGSL-20220105/ +https://www.w3.org/TR/2022/WD-WGSL-20220915/ +https://www.w3.org/TR/2022/WD-WGSL-20220915/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220106 -WGSL-20220106 -6 January 2022 +d:wgsl-20220916 +WGSL-20220916 +16 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220106/ -https://www.w3.org/TR/2022/WD-WGSL-20220106/ +https://www.w3.org/TR/2022/WD-WGSL-20220916/ +https://www.w3.org/TR/2022/WD-WGSL-20220916/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220107 -WGSL-20220107 -7 January 2022 +d:wgsl-20220919 +WGSL-20220919 +19 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220107/ -https://www.w3.org/TR/2022/WD-WGSL-20220107/ +https://www.w3.org/TR/2022/WD-WGSL-20220919/ +https://www.w3.org/TR/2022/WD-WGSL-20220919/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220110 -WGSL-20220110 -10 January 2022 +d:wgsl-20220920 +WGSL-20220920 +20 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220110/ -https://www.w3.org/TR/2022/WD-WGSL-20220110/ +https://www.w3.org/TR/2022/WD-WGSL-20220920/ +https://www.w3.org/TR/2022/WD-WGSL-20220920/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220111 -WGSL-20220111 -11 January 2022 +d:wgsl-20220921 +WGSL-20220921 +21 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220111/ -https://www.w3.org/TR/2022/WD-WGSL-20220111/ +https://www.w3.org/TR/2022/WD-WGSL-20220921/ +https://www.w3.org/TR/2022/WD-WGSL-20220921/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220112 -WGSL-20220112 -12 January 2022 +d:wgsl-20220922 +WGSL-20220922 +22 September 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220112/ -https://www.w3.org/TR/2022/WD-WGSL-20220112/ +https://www.w3.org/TR/2022/WD-WGSL-20220922/ +https://www.w3.org/TR/2022/WD-WGSL-20220922/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220113 -WGSL-20220113 -13 January 2022 +d:wgsl-20221003 +WGSL-20221003 +3 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220113/ -https://www.w3.org/TR/2022/WD-WGSL-20220113/ +https://www.w3.org/TR/2022/WD-WGSL-20221003/ +https://www.w3.org/TR/2022/WD-WGSL-20221003/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220117 -WGSL-20220117 -17 January 2022 +d:wgsl-20221004 +WGSL-20221004 +4 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220117/ -https://www.w3.org/TR/2022/WD-WGSL-20220117/ +https://www.w3.org/TR/2022/WD-WGSL-20221004/ +https://www.w3.org/TR/2022/WD-WGSL-20221004/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220118 -WGSL-20220118 -18 January 2022 +d:wgsl-20221005 +WGSL-20221005 +5 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220118/ -https://www.w3.org/TR/2022/WD-WGSL-20220118/ +https://www.w3.org/TR/2022/WD-WGSL-20221005/ +https://www.w3.org/TR/2022/WD-WGSL-20221005/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220119 -WGSL-20220119 -19 January 2022 +d:wgsl-20221007 +WGSL-20221007 +7 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220119/ -https://www.w3.org/TR/2022/WD-WGSL-20220119/ +https://www.w3.org/TR/2022/WD-WGSL-20221007/ +https://www.w3.org/TR/2022/WD-WGSL-20221007/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220125 -WGSL-20220125 -25 January 2022 +d:wgsl-20221011 +WGSL-20221011 +11 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220125/ -https://www.w3.org/TR/2022/WD-WGSL-20220125/ +https://www.w3.org/TR/2022/WD-WGSL-20221011/ +https://www.w3.org/TR/2022/WD-WGSL-20221011/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220126 -WGSL-20220126 -26 January 2022 +d:wgsl-20221014 +WGSL-20221014 +14 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220126/ -https://www.w3.org/TR/2022/WD-WGSL-20220126/ +https://www.w3.org/TR/2022/WD-WGSL-20221014/ +https://www.w3.org/TR/2022/WD-WGSL-20221014/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220127 -WGSL-20220127 -27 January 2022 +d:wgsl-20221018 +WGSL-20221018 +18 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220127/ -https://www.w3.org/TR/2022/WD-WGSL-20220127/ +https://www.w3.org/TR/2022/WD-WGSL-20221018/ +https://www.w3.org/TR/2022/WD-WGSL-20221018/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220128 -WGSL-20220128 -28 January 2022 +d:wgsl-20221027 +WGSL-20221027 +27 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220128/ -https://www.w3.org/TR/2022/WD-WGSL-20220128/ +https://www.w3.org/TR/2022/WD-WGSL-20221027/ +https://www.w3.org/TR/2022/WD-WGSL-20221027/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220131 -WGSL-20220131 -31 January 2022 +d:wgsl-20221031 +WGSL-20221031 +31 October 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220131/ -https://www.w3.org/TR/2022/WD-WGSL-20220131/ +https://www.w3.org/TR/2022/WD-WGSL-20221031/ +https://www.w3.org/TR/2022/WD-WGSL-20221031/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220202 -WGSL-20220202 -2 February 2022 +d:wgsl-20221101 +WGSL-20221101 +1 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220202/ -https://www.w3.org/TR/2022/WD-WGSL-20220202/ +https://www.w3.org/TR/2022/WD-WGSL-20221101/ +https://www.w3.org/TR/2022/WD-WGSL-20221101/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220203 -WGSL-20220203 -3 February 2022 +d:wgsl-20221102 +WGSL-20221102 +2 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220203/ -https://www.w3.org/TR/2022/WD-WGSL-20220203/ +https://www.w3.org/TR/2022/WD-WGSL-20221102/ +https://www.w3.org/TR/2022/WD-WGSL-20221102/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220204 -WGSL-20220204 -4 February 2022 +d:wgsl-20221107 +WGSL-20221107 +7 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220204/ -https://www.w3.org/TR/2022/WD-WGSL-20220204/ +https://www.w3.org/TR/2022/WD-WGSL-20221107/ +https://www.w3.org/TR/2022/WD-WGSL-20221107/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220205 -WGSL-20220205 -5 February 2022 +d:wgsl-20221109 +WGSL-20221109 +9 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220205/ -https://www.w3.org/TR/2022/WD-WGSL-20220205/ +https://www.w3.org/TR/2022/WD-WGSL-20221109/ +https://www.w3.org/TR/2022/WD-WGSL-20221109/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220207 -WGSL-20220207 -7 February 2022 +d:wgsl-20221125 +WGSL-20221125 +25 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220207/ -https://www.w3.org/TR/2022/WD-WGSL-20220207/ +https://www.w3.org/TR/2022/WD-WGSL-20221125/ +https://www.w3.org/TR/2022/WD-WGSL-20221125/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220208 -WGSL-20220208 -8 February 2022 +d:wgsl-20221128 +WGSL-20221128 +28 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220208/ -https://www.w3.org/TR/2022/WD-WGSL-20220208/ +https://www.w3.org/TR/2022/WD-WGSL-20221128/ +https://www.w3.org/TR/2022/WD-WGSL-20221128/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220209 -WGSL-20220209 -9 February 2022 +d:wgsl-20221130 +WGSL-20221130 +30 November 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220209/ -https://www.w3.org/TR/2022/WD-WGSL-20220209/ +https://www.w3.org/TR/2022/WD-WGSL-20221130/ +https://www.w3.org/TR/2022/WD-WGSL-20221130/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220210 -WGSL-20220210 -10 February 2022 +d:wgsl-20221207 +WGSL-20221207 +7 December 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220210/ -https://www.w3.org/TR/2022/WD-WGSL-20220210/ +https://www.w3.org/TR/2022/WD-WGSL-20221207/ +https://www.w3.org/TR/2022/WD-WGSL-20221207/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220211 -WGSL-20220211 -11 February 2022 +d:wgsl-20221208 +WGSL-20221208 +8 December 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220211/ -https://www.w3.org/TR/2022/WD-WGSL-20220211/ +https://www.w3.org/TR/2022/WD-WGSL-20221208/ +https://www.w3.org/TR/2022/WD-WGSL-20221208/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220214 -WGSL-20220214 -14 February 2022 +d:wgsl-20221223 +WGSL-20221223 +23 December 2022 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220214/ -https://www.w3.org/TR/2022/WD-WGSL-20220214/ +https://www.w3.org/TR/2022/WD-WGSL-20221223/ +https://www.w3.org/TR/2022/WD-WGSL-20221223/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220215 -WGSL-20220215 -15 February 2022 +d:wgsl-20230103 +WGSL-20230103 +3 January 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220215/ -https://www.w3.org/TR/2022/WD-WGSL-20220215/ +https://www.w3.org/TR/2023/WD-WGSL-20230103/ +https://www.w3.org/TR/2023/WD-WGSL-20230103/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220217 -WGSL-20220217 -17 February 2022 +d:wgsl-20230104 +WGSL-20230104 +4 January 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220217/ -https://www.w3.org/TR/2022/WD-WGSL-20220217/ +https://www.w3.org/TR/2023/WD-WGSL-20230104/ +https://www.w3.org/TR/2023/WD-WGSL-20230104/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220218 -WGSL-20220218 -18 February 2022 +d:wgsl-20230126 +WGSL-20230126 +26 January 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220218/ -https://www.w3.org/TR/2022/WD-WGSL-20220218/ +https://www.w3.org/TR/2023/WD-WGSL-20230126/ +https://www.w3.org/TR/2023/WD-WGSL-20230126/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220222 -WGSL-20220222 -22 February 2022 +d:wgsl-20230128 +WGSL-20230128 +28 January 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220222/ -https://www.w3.org/TR/2022/WD-WGSL-20220222/ +https://www.w3.org/TR/2023/WD-WGSL-20230128/ +https://www.w3.org/TR/2023/WD-WGSL-20230128/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220223 -WGSL-20220223 -23 February 2022 +d:wgsl-20230130 +WGSL-20230130 +30 January 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220223/ -https://www.w3.org/TR/2022/WD-WGSL-20220223/ +https://www.w3.org/TR/2023/WD-WGSL-20230130/ +https://www.w3.org/TR/2023/WD-WGSL-20230130/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220224 -WGSL-20220224 -24 February 2022 +d:wgsl-20230201 +WGSL-20230201 +1 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220224/ -https://www.w3.org/TR/2022/WD-WGSL-20220224/ +https://www.w3.org/TR/2023/WD-WGSL-20230201/ +https://www.w3.org/TR/2023/WD-WGSL-20230201/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220225 -WGSL-20220225 -25 February 2022 +d:wgsl-20230202 +WGSL-20230202 +2 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220225/ -https://www.w3.org/TR/2022/WD-WGSL-20220225/ +https://www.w3.org/TR/2023/WD-WGSL-20230202/ +https://www.w3.org/TR/2023/WD-WGSL-20230202/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220302 -WGSL-20220302 -2 March 2022 +d:wgsl-20230206 +WGSL-20230206 +6 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220302/ -https://www.w3.org/TR/2022/WD-WGSL-20220302/ +https://www.w3.org/TR/2023/WD-WGSL-20230206/ +https://www.w3.org/TR/2023/WD-WGSL-20230206/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220303 -WGSL-20220303 -3 March 2022 +d:wgsl-20230207 +WGSL-20230207 +7 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220303/ -https://www.w3.org/TR/2022/WD-WGSL-20220303/ +https://www.w3.org/TR/2023/WD-WGSL-20230207/ +https://www.w3.org/TR/2023/WD-WGSL-20230207/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220310 -WGSL-20220310 -10 March 2022 +d:wgsl-20230209 +WGSL-20230209 +9 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220310/ -https://www.w3.org/TR/2022/WD-WGSL-20220310/ +https://www.w3.org/TR/2023/WD-WGSL-20230209/ +https://www.w3.org/TR/2023/WD-WGSL-20230209/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220315 -WGSL-20220315 -15 March 2022 +d:wgsl-20230213 +WGSL-20230213 +13 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220315/ -https://www.w3.org/TR/2022/WD-WGSL-20220315/ +https://www.w3.org/TR/2023/WD-WGSL-20230213/ +https://www.w3.org/TR/2023/WD-WGSL-20230213/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220316 -WGSL-20220316 -16 March 2022 +d:wgsl-20230218 +WGSL-20230218 +18 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220316/ -https://www.w3.org/TR/2022/WD-WGSL-20220316/ +https://www.w3.org/TR/2023/WD-WGSL-20230218/ +https://www.w3.org/TR/2023/WD-WGSL-20230218/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220319 -WGSL-20220319 -19 March 2022 +d:wgsl-20230221 +WGSL-20230221 +21 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220319/ -https://www.w3.org/TR/2022/WD-WGSL-20220319/ +https://www.w3.org/TR/2023/WD-WGSL-20230221/ +https://www.w3.org/TR/2023/WD-WGSL-20230221/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220321 -WGSL-20220321 -21 March 2022 +d:wgsl-20230222 +WGSL-20230222 +22 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220321/ -https://www.w3.org/TR/2022/WD-WGSL-20220321/ +https://www.w3.org/TR/2023/WD-WGSL-20230222/ +https://www.w3.org/TR/2023/WD-WGSL-20230222/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220323 -WGSL-20220323 -23 March 2022 +d:wgsl-20230223 +WGSL-20230223 +23 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220323/ -https://www.w3.org/TR/2022/WD-WGSL-20220323/ +https://www.w3.org/TR/2023/WD-WGSL-20230223/ +https://www.w3.org/TR/2023/WD-WGSL-20230223/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220324 -WGSL-20220324 -24 March 2022 +d:wgsl-20230224 +WGSL-20230224 +24 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220324/ -https://www.w3.org/TR/2022/WD-WGSL-20220324/ +https://www.w3.org/TR/2023/WD-WGSL-20230224/ +https://www.w3.org/TR/2023/WD-WGSL-20230224/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220325 -WGSL-20220325 -25 March 2022 +d:wgsl-20230227 +WGSL-20230227 +27 February 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220325/ -https://www.w3.org/TR/2022/WD-WGSL-20220325/ +https://www.w3.org/TR/2023/WD-WGSL-20230227/ +https://www.w3.org/TR/2023/WD-WGSL-20230227/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220326 -WGSL-20220326 -26 March 2022 +d:wgsl-20230301 +WGSL-20230301 +1 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220326/ -https://www.w3.org/TR/2022/WD-WGSL-20220326/ +https://www.w3.org/TR/2023/WD-WGSL-20230301/ +https://www.w3.org/TR/2023/WD-WGSL-20230301/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220328 -WGSL-20220328 -28 March 2022 +d:wgsl-20230302 +WGSL-20230302 +2 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220328/ -https://www.w3.org/TR/2022/WD-WGSL-20220328/ +https://www.w3.org/TR/2023/WD-WGSL-20230302/ +https://www.w3.org/TR/2023/WD-WGSL-20230302/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220329 -WGSL-20220329 -29 March 2022 +d:wgsl-20230303 +WGSL-20230303 +3 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220329/ -https://www.w3.org/TR/2022/WD-WGSL-20220329/ +https://www.w3.org/TR/2023/WD-WGSL-20230303/ +https://www.w3.org/TR/2023/WD-WGSL-20230303/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220331 -WGSL-20220331 -31 March 2022 +d:wgsl-20230306 +WGSL-20230306 +6 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220331/ -https://www.w3.org/TR/2022/WD-WGSL-20220331/ +https://www.w3.org/TR/2023/WD-WGSL-20230306/ +https://www.w3.org/TR/2023/WD-WGSL-20230306/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220403 -WGSL-20220403 -3 April 2022 +d:wgsl-20230307 +WGSL-20230307 +7 March 2023 WD -WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220403/ -https://www.w3.org/TR/2022/WD-WGSL-20220403/ +WebGPU Shading Language +https://www.w3.org/TR/2023/WD-WGSL-20230307/ +https://www.w3.org/TR/2023/WD-WGSL-20230307/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220404 -WGSL-20220404 -4 April 2022 +d:wgsl-20230308 +WGSL-20230308 +8 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220404/ -https://www.w3.org/TR/2022/WD-WGSL-20220404/ +https://www.w3.org/TR/2023/WD-WGSL-20230308/ +https://www.w3.org/TR/2023/WD-WGSL-20230308/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220506 -WGSL-20220506 -6 May 2022 +d:wgsl-20230309 +WGSL-20230309 +9 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220506/ -https://www.w3.org/TR/2022/WD-WGSL-20220506/ +https://www.w3.org/TR/2023/WD-WGSL-20230309/ +https://www.w3.org/TR/2023/WD-WGSL-20230309/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220509 -WGSL-20220509 -9 May 2022 +d:wgsl-20230310 +WGSL-20230310 +10 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220509/ -https://www.w3.org/TR/2022/WD-WGSL-20220509/ +https://www.w3.org/TR/2023/WD-WGSL-20230310/ +https://www.w3.org/TR/2023/WD-WGSL-20230310/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220510 -WGSL-20220510 -10 May 2022 +d:wgsl-20230314 +WGSL-20230314 +14 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220510/ -https://www.w3.org/TR/2022/WD-WGSL-20220510/ +https://www.w3.org/TR/2023/WD-WGSL-20230314/ +https://www.w3.org/TR/2023/WD-WGSL-20230314/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220511 -WGSL-20220511 -11 May 2022 +d:wgsl-20230316 +WGSL-20230316 +16 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220511/ -https://www.w3.org/TR/2022/WD-WGSL-20220511/ +https://www.w3.org/TR/2023/WD-WGSL-20230316/ +https://www.w3.org/TR/2023/WD-WGSL-20230316/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220512 -WGSL-20220512 -12 May 2022 +d:wgsl-20230317 +WGSL-20230317 +17 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220512/ -https://www.w3.org/TR/2022/WD-WGSL-20220512/ +https://www.w3.org/TR/2023/WD-WGSL-20230317/ +https://www.w3.org/TR/2023/WD-WGSL-20230317/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220513 -WGSL-20220513 -13 May 2022 +d:wgsl-20230320 +WGSL-20230320 +20 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220513/ -https://www.w3.org/TR/2022/WD-WGSL-20220513/ +https://www.w3.org/TR/2023/WD-WGSL-20230320/ +https://www.w3.org/TR/2023/WD-WGSL-20230320/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220516 -WGSL-20220516 -16 May 2022 +d:wgsl-20230323 +WGSL-20230323 +23 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220516/ -https://www.w3.org/TR/2022/WD-WGSL-20220516/ +https://www.w3.org/TR/2023/WD-WGSL-20230323/ +https://www.w3.org/TR/2023/WD-WGSL-20230323/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220517 -WGSL-20220517 -17 May 2022 +d:wgsl-20230324 +WGSL-20230324 +24 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220517/ -https://www.w3.org/TR/2022/WD-WGSL-20220517/ +https://www.w3.org/TR/2023/WD-WGSL-20230324/ +https://www.w3.org/TR/2023/WD-WGSL-20230324/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220518 -WGSL-20220518 -18 May 2022 +d:wgsl-20230329 +WGSL-20230329 +29 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220518/ -https://www.w3.org/TR/2022/WD-WGSL-20220518/ +https://www.w3.org/TR/2023/WD-WGSL-20230329/ +https://www.w3.org/TR/2023/WD-WGSL-20230329/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220520 -WGSL-20220520 -20 May 2022 +d:wgsl-20230331 +WGSL-20230331 +31 March 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220520/ -https://www.w3.org/TR/2022/WD-WGSL-20220520/ +https://www.w3.org/TR/2023/WD-WGSL-20230331/ +https://www.w3.org/TR/2023/WD-WGSL-20230331/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220603 -WGSL-20220603 -3 June 2022 +d:wgsl-20230404 +WGSL-20230404 +4 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220603/ -https://www.w3.org/TR/2022/WD-WGSL-20220603/ +https://www.w3.org/TR/2023/WD-WGSL-20230404/ +https://www.w3.org/TR/2023/WD-WGSL-20230404/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220606 -WGSL-20220606 -6 June 2022 +d:wgsl-20230407 +WGSL-20230407 +7 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220606/ -https://www.w3.org/TR/2022/WD-WGSL-20220606/ +https://www.w3.org/TR/2023/WD-WGSL-20230407/ +https://www.w3.org/TR/2023/WD-WGSL-20230407/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220607 -WGSL-20220607 -7 June 2022 +d:wgsl-20230411 +WGSL-20230411 +11 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220607/ -https://www.w3.org/TR/2022/WD-WGSL-20220607/ +https://www.w3.org/TR/2023/WD-WGSL-20230411/ +https://www.w3.org/TR/2023/WD-WGSL-20230411/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220608 -WGSL-20220608 -8 June 2022 +d:wgsl-20230412 +WGSL-20230412 +12 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220608/ -https://www.w3.org/TR/2022/WD-WGSL-20220608/ +https://www.w3.org/TR/2023/WD-WGSL-20230412/ +https://www.w3.org/TR/2023/WD-WGSL-20230412/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220609 -WGSL-20220609 -9 June 2022 +d:wgsl-20230413 +WGSL-20230413 +13 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220609/ -https://www.w3.org/TR/2022/WD-WGSL-20220609/ +https://www.w3.org/TR/2023/WD-WGSL-20230413/ +https://www.w3.org/TR/2023/WD-WGSL-20230413/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220610 -WGSL-20220610 -10 June 2022 +d:wgsl-20230417 +WGSL-20230417 +17 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220610/ -https://www.w3.org/TR/2022/WD-WGSL-20220610/ +https://www.w3.org/TR/2023/WD-WGSL-20230417/ +https://www.w3.org/TR/2023/WD-WGSL-20230417/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220611 -WGSL-20220611 -11 June 2022 +d:wgsl-20230418 +WGSL-20230418 +18 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220611/ -https://www.w3.org/TR/2022/WD-WGSL-20220611/ +https://www.w3.org/TR/2023/WD-WGSL-20230418/ +https://www.w3.org/TR/2023/WD-WGSL-20230418/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220613 -WGSL-20220613 -13 June 2022 +d:wgsl-20230419 +WGSL-20230419 +19 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220613/ -https://www.w3.org/TR/2022/WD-WGSL-20220613/ +https://www.w3.org/TR/2023/WD-WGSL-20230419/ +https://www.w3.org/TR/2023/WD-WGSL-20230419/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220614 -WGSL-20220614 -14 June 2022 +d:wgsl-20230424 +WGSL-20230424 +24 April 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220614/ -https://www.w3.org/TR/2022/WD-WGSL-20220614/ +https://www.w3.org/TR/2023/WD-WGSL-20230424/ +https://www.w3.org/TR/2023/WD-WGSL-20230424/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220616 -WGSL-20220616 -16 June 2022 +d:wgsl-20230501 +WGSL-20230501 +1 May 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220616/ -https://www.w3.org/TR/2022/WD-WGSL-20220616/ +https://www.w3.org/TR/2023/WD-WGSL-20230501/ +https://www.w3.org/TR/2023/WD-WGSL-20230501/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220617 -WGSL-20220617 -17 June 2022 +d:wgsl-20230503 +WGSL-20230503 +3 May 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220617/ -https://www.w3.org/TR/2022/WD-WGSL-20220617/ +https://www.w3.org/TR/2023/WD-WGSL-20230503/ +https://www.w3.org/TR/2023/WD-WGSL-20230503/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220623 -WGSL-20220623 -23 June 2022 +d:wgsl-20230523 +WGSL-20230523 +23 May 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220623/ -https://www.w3.org/TR/2022/WD-WGSL-20220623/ +https://www.w3.org/TR/2023/WD-WGSL-20230523/ +https://www.w3.org/TR/2023/WD-WGSL-20230523/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220624 -WGSL-20220624 -24 June 2022 +d:wgsl-20230529 +WGSL-20230529 +29 May 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220624/ -https://www.w3.org/TR/2022/WD-WGSL-20220624/ +https://www.w3.org/TR/2023/WD-WGSL-20230529/ +https://www.w3.org/TR/2023/WD-WGSL-20230529/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220627 -WGSL-20220627 -27 June 2022 +d:wgsl-20230530 +WGSL-20230530 +30 May 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220627/ -https://www.w3.org/TR/2022/WD-WGSL-20220627/ +https://www.w3.org/TR/2023/WD-WGSL-20230530/ +https://www.w3.org/TR/2023/WD-WGSL-20230530/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220628 -WGSL-20220628 -28 June 2022 +d:wgsl-20230531 +WGSL-20230531 +31 May 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220628/ -https://www.w3.org/TR/2022/WD-WGSL-20220628/ +https://www.w3.org/TR/2023/WD-WGSL-20230531/ +https://www.w3.org/TR/2023/WD-WGSL-20230531/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220629 -WGSL-20220629 -29 June 2022 +d:wgsl-20230608 +WGSL-20230608 +8 June 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220629/ -https://www.w3.org/TR/2022/WD-WGSL-20220629/ +https://www.w3.org/TR/2023/WD-WGSL-20230608/ +https://www.w3.org/TR/2023/WD-WGSL-20230608/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220704 -WGSL-20220704 -4 July 2022 +d:wgsl-20230626 +WGSL-20230626 +26 June 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220704/ -https://www.w3.org/TR/2022/WD-WGSL-20220704/ +https://www.w3.org/TR/2023/WD-WGSL-20230626/ +https://www.w3.org/TR/2023/WD-WGSL-20230626/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220705 -WGSL-20220705 -5 July 2022 +d:wgsl-20230629 +WGSL-20230629 +29 June 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220705/ -https://www.w3.org/TR/2022/WD-WGSL-20220705/ +https://www.w3.org/TR/2023/WD-WGSL-20230629/ +https://www.w3.org/TR/2023/WD-WGSL-20230629/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220706 -WGSL-20220706 -6 July 2022 +d:wgsl-20230703 +WGSL-20230703 +3 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220706/ -https://www.w3.org/TR/2022/WD-WGSL-20220706/ +https://www.w3.org/TR/2023/WD-WGSL-20230703/ +https://www.w3.org/TR/2023/WD-WGSL-20230703/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220707 -WGSL-20220707 -7 July 2022 +d:wgsl-20230704 +WGSL-20230704 +4 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220707/ -https://www.w3.org/TR/2022/WD-WGSL-20220707/ +https://www.w3.org/TR/2023/WD-WGSL-20230704/ +https://www.w3.org/TR/2023/WD-WGSL-20230704/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220708 -WGSL-20220708 -8 July 2022 +d:wgsl-20230705 +WGSL-20230705 +5 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220708/ -https://www.w3.org/TR/2022/WD-WGSL-20220708/ +https://www.w3.org/TR/2023/WD-WGSL-20230705/ +https://www.w3.org/TR/2023/WD-WGSL-20230705/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220710 -WGSL-20220710 -10 July 2022 +d:wgsl-20230710 +WGSL-20230710 +10 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220710/ -https://www.w3.org/TR/2022/WD-WGSL-20220710/ +https://www.w3.org/TR/2023/WD-WGSL-20230710/ +https://www.w3.org/TR/2023/WD-WGSL-20230710/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220803 -WGSL-20220803 -3 August 2022 +d:wgsl-20230712 +WGSL-20230712 +12 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220803/ -https://www.w3.org/TR/2022/WD-WGSL-20220803/ +https://www.w3.org/TR/2023/WD-WGSL-20230712/ +https://www.w3.org/TR/2023/WD-WGSL-20230712/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220804 -WGSL-20220804 -4 August 2022 +d:wgsl-20230717 +WGSL-20230717 +17 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220804/ -https://www.w3.org/TR/2022/WD-WGSL-20220804/ +https://www.w3.org/TR/2023/WD-WGSL-20230717/ +https://www.w3.org/TR/2023/WD-WGSL-20230717/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220810 -WGSL-20220810 -10 August 2022 +d:wgsl-20230719 +WGSL-20230719 +19 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220810/ -https://www.w3.org/TR/2022/WD-WGSL-20220810/ +https://www.w3.org/TR/2023/WD-WGSL-20230719/ +https://www.w3.org/TR/2023/WD-WGSL-20230719/ +Alan Baker +Mehmet Oguz Derin David Neto -Myles Maxfield - -d:wgsl-20220811 -WGSL-20220811 -11 August 2022 +d:wgsl-20230721 +WGSL-20230721 +21 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220811/ -https://www.w3.org/TR/2022/WD-WGSL-20220811/ +https://www.w3.org/TR/2023/WD-WGSL-20230721/ +https://www.w3.org/TR/2023/WD-WGSL-20230721/ @@ -88774,13 +101791,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220812 -WGSL-20220812 -12 August 2022 +d:wgsl-20230726 +WGSL-20230726 +26 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220812/ -https://www.w3.org/TR/2022/WD-WGSL-20220812/ +https://www.w3.org/TR/2023/WD-WGSL-20230726/ +https://www.w3.org/TR/2023/WD-WGSL-20230726/ @@ -88788,13 +101805,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220815 -WGSL-20220815 -15 August 2022 +d:wgsl-20230731 +WGSL-20230731 +31 July 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220815/ -https://www.w3.org/TR/2022/WD-WGSL-20220815/ +https://www.w3.org/TR/2023/WD-WGSL-20230731/ +https://www.w3.org/TR/2023/WD-WGSL-20230731/ @@ -88802,13 +101819,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220816 -WGSL-20220816 -16 August 2022 +d:wgsl-20230801 +WGSL-20230801 +1 August 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220816/ -https://www.w3.org/TR/2022/WD-WGSL-20220816/ +https://www.w3.org/TR/2023/WD-WGSL-20230801/ +https://www.w3.org/TR/2023/WD-WGSL-20230801/ @@ -88816,13 +101833,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220817 -WGSL-20220817 -17 August 2022 +d:wgsl-20230802 +WGSL-20230802 +2 August 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220817/ -https://www.w3.org/TR/2022/WD-WGSL-20220817/ +https://www.w3.org/TR/2023/WD-WGSL-20230802/ +https://www.w3.org/TR/2023/WD-WGSL-20230802/ @@ -88830,13 +101847,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220818 -WGSL-20220818 -18 August 2022 +d:wgsl-20230906 +WGSL-20230906 +6 September 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220818/ -https://www.w3.org/TR/2022/WD-WGSL-20220818/ +https://www.w3.org/TR/2023/WD-WGSL-20230906/ +https://www.w3.org/TR/2023/WD-WGSL-20230906/ @@ -88844,13 +101861,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220824 -WGSL-20220824 -24 August 2022 +d:wgsl-20230926 +WGSL-20230926 +26 September 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220824/ -https://www.w3.org/TR/2022/WD-WGSL-20220824/ +https://www.w3.org/TR/2023/WD-WGSL-20230926/ +https://www.w3.org/TR/2023/WD-WGSL-20230926/ @@ -88858,13 +101875,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220825 -WGSL-20220825 -25 August 2022 +d:wgsl-20230927 +WGSL-20230927 +27 September 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220825/ -https://www.w3.org/TR/2022/WD-WGSL-20220825/ +https://www.w3.org/TR/2023/WD-WGSL-20230927/ +https://www.w3.org/TR/2023/WD-WGSL-20230927/ @@ -88872,13 +101889,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220829 -WGSL-20220829 -29 August 2022 +d:wgsl-20231004 +WGSL-20231004 +4 October 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220829/ -https://www.w3.org/TR/2022/WD-WGSL-20220829/ +https://www.w3.org/TR/2023/WD-WGSL-20231004/ +https://www.w3.org/TR/2023/WD-WGSL-20231004/ @@ -88886,13 +101903,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220830 -WGSL-20220830 -30 August 2022 +d:wgsl-20231006 +WGSL-20231006 +6 October 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220830/ -https://www.w3.org/TR/2022/WD-WGSL-20220830/ +https://www.w3.org/TR/2023/WD-WGSL-20231006/ +https://www.w3.org/TR/2023/WD-WGSL-20231006/ @@ -88900,13 +101917,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220831 -WGSL-20220831 -31 August 2022 +d:wgsl-20231011 +WGSL-20231011 +11 October 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220831/ -https://www.w3.org/TR/2022/WD-WGSL-20220831/ +https://www.w3.org/TR/2023/WD-WGSL-20231011/ +https://www.w3.org/TR/2023/WD-WGSL-20231011/ @@ -88914,13 +101931,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220908 -WGSL-20220908 -8 September 2022 +d:wgsl-20231012 +WGSL-20231012 +12 October 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220908/ -https://www.w3.org/TR/2022/WD-WGSL-20220908/ +https://www.w3.org/TR/2023/WD-WGSL-20231012/ +https://www.w3.org/TR/2023/WD-WGSL-20231012/ @@ -88928,13 +101945,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220909 -WGSL-20220909 -9 September 2022 +d:wgsl-20231020 +WGSL-20231020 +20 October 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220909/ -https://www.w3.org/TR/2022/WD-WGSL-20220909/ +https://www.w3.org/TR/2023/WD-WGSL-20231020/ +https://www.w3.org/TR/2023/WD-WGSL-20231020/ @@ -88942,13 +101959,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220910 -WGSL-20220910 -10 September 2022 +d:wgsl-20231031 +WGSL-20231031 +31 October 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220910/ -https://www.w3.org/TR/2022/WD-WGSL-20220910/ +https://www.w3.org/TR/2023/WD-WGSL-20231031/ +https://www.w3.org/TR/2023/WD-WGSL-20231031/ @@ -88956,13 +101973,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220912 -WGSL-20220912 -12 September 2022 +d:wgsl-20231120 +WGSL-20231120 +20 November 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220912/ -https://www.w3.org/TR/2022/WD-WGSL-20220912/ +https://www.w3.org/TR/2023/WD-WGSL-20231120/ +https://www.w3.org/TR/2023/WD-WGSL-20231120/ @@ -88970,13 +101987,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220913 -WGSL-20220913 -13 September 2022 +d:wgsl-20231123 +WGSL-20231123 +23 November 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220913/ -https://www.w3.org/TR/2022/WD-WGSL-20220913/ +https://www.w3.org/TR/2023/WD-WGSL-20231123/ +https://www.w3.org/TR/2023/WD-WGSL-20231123/ @@ -88984,13 +102001,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220915 -WGSL-20220915 -15 September 2022 +d:wgsl-20231204 +WGSL-20231204 +4 December 2023 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220915/ -https://www.w3.org/TR/2022/WD-WGSL-20220915/ +https://www.w3.org/TR/2023/WD-WGSL-20231204/ +https://www.w3.org/TR/2023/WD-WGSL-20231204/ @@ -88998,13 +102015,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220916 -WGSL-20220916 -16 September 2022 +d:wgsl-20240104 +WGSL-20240104 +4 January 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220916/ -https://www.w3.org/TR/2022/WD-WGSL-20220916/ +https://www.w3.org/TR/2024/WD-WGSL-20240104/ +https://www.w3.org/TR/2024/WD-WGSL-20240104/ @@ -89012,13 +102029,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220919 -WGSL-20220919 -19 September 2022 +d:wgsl-20240110 +WGSL-20240110 +10 January 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220919/ -https://www.w3.org/TR/2022/WD-WGSL-20220919/ +https://www.w3.org/TR/2024/WD-WGSL-20240110/ +https://www.w3.org/TR/2024/WD-WGSL-20240110/ @@ -89026,13 +102043,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220920 -WGSL-20220920 -20 September 2022 +d:wgsl-20240115 +WGSL-20240115 +15 January 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220920/ -https://www.w3.org/TR/2022/WD-WGSL-20220920/ +https://www.w3.org/TR/2024/WD-WGSL-20240115/ +https://www.w3.org/TR/2024/WD-WGSL-20240115/ @@ -89040,13 +102057,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220921 -WGSL-20220921 -21 September 2022 +d:wgsl-20240205 +WGSL-20240205 +5 February 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220921/ -https://www.w3.org/TR/2022/WD-WGSL-20220921/ +https://www.w3.org/TR/2024/WD-WGSL-20240205/ +https://www.w3.org/TR/2024/WD-WGSL-20240205/ @@ -89054,13 +102071,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20220922 -WGSL-20220922 -22 September 2022 +d:wgsl-20240317 +WGSL-20240317 +17 March 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20220922/ -https://www.w3.org/TR/2022/WD-WGSL-20220922/ +https://www.w3.org/TR/2024/WD-WGSL-20240317/ +https://www.w3.org/TR/2024/WD-WGSL-20240317/ @@ -89068,13 +102085,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221003 -WGSL-20221003 -3 October 2022 +d:wgsl-20240322 +WGSL-20240322 +22 March 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221003/ -https://www.w3.org/TR/2022/WD-WGSL-20221003/ +https://www.w3.org/TR/2024/WD-WGSL-20240322/ +https://www.w3.org/TR/2024/WD-WGSL-20240322/ @@ -89082,13 +102099,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221004 -WGSL-20221004 -4 October 2022 +d:wgsl-20240331 +WGSL-20240331 +31 March 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221004/ -https://www.w3.org/TR/2022/WD-WGSL-20221004/ +https://www.w3.org/TR/2024/WD-WGSL-20240331/ +https://www.w3.org/TR/2024/WD-WGSL-20240331/ @@ -89096,13 +102113,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221005 -WGSL-20221005 -5 October 2022 +d:wgsl-20240409 +WGSL-20240409 +9 April 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221005/ -https://www.w3.org/TR/2022/WD-WGSL-20221005/ +https://www.w3.org/TR/2024/WD-WGSL-20240409/ +https://www.w3.org/TR/2024/WD-WGSL-20240409/ @@ -89110,13 +102127,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221007 -WGSL-20221007 -7 October 2022 +d:wgsl-20240416 +WGSL-20240416 +16 April 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221007/ -https://www.w3.org/TR/2022/WD-WGSL-20221007/ +https://www.w3.org/TR/2024/WD-WGSL-20240416/ +https://www.w3.org/TR/2024/WD-WGSL-20240416/ @@ -89124,13 +102141,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221011 -WGSL-20221011 -11 October 2022 +d:wgsl-20240430 +WGSL-20240430 +30 April 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221011/ -https://www.w3.org/TR/2022/WD-WGSL-20221011/ +https://www.w3.org/TR/2024/WD-WGSL-20240430/ +https://www.w3.org/TR/2024/WD-WGSL-20240430/ @@ -89138,13 +102155,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221014 -WGSL-20221014 -14 October 2022 +d:wgsl-20240501 +WGSL-20240501 +1 May 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221014/ -https://www.w3.org/TR/2022/WD-WGSL-20221014/ +https://www.w3.org/TR/2024/WD-WGSL-20240501/ +https://www.w3.org/TR/2024/WD-WGSL-20240501/ @@ -89152,13 +102169,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221018 -WGSL-20221018 -18 October 2022 +d:wgsl-20240507 +WGSL-20240507 +7 May 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221018/ -https://www.w3.org/TR/2022/WD-WGSL-20221018/ +https://www.w3.org/TR/2024/WD-WGSL-20240507/ +https://www.w3.org/TR/2024/WD-WGSL-20240507/ @@ -89166,13 +102183,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221027 -WGSL-20221027 -27 October 2022 +d:wgsl-20240514 +WGSL-20240514 +14 May 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221027/ -https://www.w3.org/TR/2022/WD-WGSL-20221027/ +https://www.w3.org/TR/2024/WD-WGSL-20240514/ +https://www.w3.org/TR/2024/WD-WGSL-20240514/ @@ -89180,13 +102197,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221031 -WGSL-20221031 -31 October 2022 +d:wgsl-20240522 +WGSL-20240522 +22 May 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221031/ -https://www.w3.org/TR/2022/WD-WGSL-20221031/ +https://www.w3.org/TR/2024/WD-WGSL-20240522/ +https://www.w3.org/TR/2024/WD-WGSL-20240522/ @@ -89194,13 +102211,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221101 -WGSL-20221101 -1 November 2022 +d:wgsl-20240523 +WGSL-20240523 +23 May 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221101/ -https://www.w3.org/TR/2022/WD-WGSL-20221101/ +https://www.w3.org/TR/2024/WD-WGSL-20240523/ +https://www.w3.org/TR/2024/WD-WGSL-20240523/ @@ -89208,13 +102225,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221102 -WGSL-20221102 -2 November 2022 +d:wgsl-20240530 +WGSL-20240530 +30 May 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221102/ -https://www.w3.org/TR/2022/WD-WGSL-20221102/ +https://www.w3.org/TR/2024/WD-WGSL-20240530/ +https://www.w3.org/TR/2024/WD-WGSL-20240530/ @@ -89222,13 +102239,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221107 -WGSL-20221107 -7 November 2022 +d:wgsl-20240618 +WGSL-20240618 +18 June 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221107/ -https://www.w3.org/TR/2022/WD-WGSL-20221107/ +https://www.w3.org/TR/2024/WD-WGSL-20240618/ +https://www.w3.org/TR/2024/WD-WGSL-20240618/ @@ -89236,13 +102253,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221109 -WGSL-20221109 -9 November 2022 +d:wgsl-20240624 +WGSL-20240624 +24 June 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221109/ -https://www.w3.org/TR/2022/WD-WGSL-20221109/ +https://www.w3.org/TR/2024/WD-WGSL-20240624/ +https://www.w3.org/TR/2024/WD-WGSL-20240624/ @@ -89250,13 +102267,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221125 -WGSL-20221125 -25 November 2022 +d:wgsl-20240625 +WGSL-20240625 +25 June 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221125/ -https://www.w3.org/TR/2022/WD-WGSL-20221125/ +https://www.w3.org/TR/2024/WD-WGSL-20240625/ +https://www.w3.org/TR/2024/WD-WGSL-20240625/ @@ -89264,13 +102281,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221128 -WGSL-20221128 -28 November 2022 +d:wgsl-20240626 +WGSL-20240626 +26 June 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221128/ -https://www.w3.org/TR/2022/WD-WGSL-20221128/ +https://www.w3.org/TR/2024/WD-WGSL-20240626/ +https://www.w3.org/TR/2024/WD-WGSL-20240626/ @@ -89278,13 +102295,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221130 -WGSL-20221130 -30 November 2022 +d:wgsl-20240704 +WGSL-20240704 +4 July 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221130/ -https://www.w3.org/TR/2022/WD-WGSL-20221130/ +https://www.w3.org/TR/2024/WD-WGSL-20240704/ +https://www.w3.org/TR/2024/WD-WGSL-20240704/ @@ -89292,13 +102309,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221207 -WGSL-20221207 -7 December 2022 +d:wgsl-20240722 +WGSL-20240722 +22 July 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221207/ -https://www.w3.org/TR/2022/WD-WGSL-20221207/ +https://www.w3.org/TR/2024/WD-WGSL-20240722/ +https://www.w3.org/TR/2024/WD-WGSL-20240722/ @@ -89306,13 +102323,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221208 -WGSL-20221208 -8 December 2022 +d:wgsl-20240723 +WGSL-20240723 +23 July 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221208/ -https://www.w3.org/TR/2022/WD-WGSL-20221208/ +https://www.w3.org/TR/2024/WD-WGSL-20240723/ +https://www.w3.org/TR/2024/WD-WGSL-20240723/ @@ -89320,13 +102337,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20221223 -WGSL-20221223 -23 December 2022 +d:wgsl-20240731 +WGSL-20240731 +31 July 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2022/WD-WGSL-20221223/ -https://www.w3.org/TR/2022/WD-WGSL-20221223/ +https://www.w3.org/TR/2024/WD-WGSL-20240731/ +https://www.w3.org/TR/2024/WD-WGSL-20240731/ @@ -89334,13 +102351,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20230103 -WGSL-20230103 -3 January 2023 +d:wgsl-20240819 +WGSL-20240819 +19 August 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2023/WD-WGSL-20230103/ -https://www.w3.org/TR/2023/WD-WGSL-20230103/ +https://www.w3.org/TR/2024/WD-WGSL-20240819/ +https://www.w3.org/TR/2024/WD-WGSL-20240819/ @@ -89348,13 +102365,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20230104 -WGSL-20230104 -4 January 2023 +d:wgsl-20240820 +WGSL-20240820 +20 August 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2023/WD-WGSL-20230104/ -https://www.w3.org/TR/2023/WD-WGSL-20230104/ +https://www.w3.org/TR/2024/WD-WGSL-20240820/ +https://www.w3.org/TR/2024/WD-WGSL-20240820/ @@ -89362,13 +102379,13 @@ Alan Baker Mehmet Oguz Derin David Neto - -d:wgsl-20230126 -WGSL-20230126 -26 January 2023 +d:wgsl-20240821 +WGSL-20240821 +21 August 2024 WD WebGPU Shading Language -https://www.w3.org/TR/2023/WD-WGSL-20230126/ -https://www.w3.org/TR/2023/WD-WGSL-20230126/ +https://www.w3.org/TR/2024/WD-WGSL-20240821/ +https://www.w3.org/TR/2024/WD-WGSL-20240821/ diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wh.data b/bikeshed/spec-data/readonly/biblio/biblio-wh.data index b66d815178..d0454bde4a 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wh.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wh.data @@ -6,6 +6,10 @@ a:whatwg-compat WHATWG-COMPAT COMPAT - +a:whatwg-compression +WHATWG-COMPRESSION +COMPRESSION +- a:whatwg-console WHATWG-CONSOLE CONSOLE @@ -90,6 +94,10 @@ a:whatwg-url WHATWG-URL URL - +a:whatwg-urlpattern +WHATWG-URLPATTERN +URLPATTERN +- a:whatwg-webidl WHATWG-WEBIDL WEBIDL diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wi.data b/bikeshed/spec-data/readonly/biblio/biblio-wi.data index c2ba171f65..f93aa728c1 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wi.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wi.data @@ -419,6 +419,10 @@ a:wicg-css-scroll-boundary-behavior WICG-CSS-SCROLL-BOUNDARY-BEHAVIOR CSS-SCROLL-BOUNDARY-BEHAVIOR - +a:wicg-document-picture-in-picture +WICG-DOCUMENT-PICTURE-IN-PICTURE +DOCUMENT-PICTURE-IN-PICTURE +- a:wicg-document-policy WICG-DOCUMENT-POLICY DOCUMENT-POLICY @@ -482,6 +486,22 @@ a:wicg-geolocation-sensor-20220316 WICG-GEOLOCATION-SENSOR-20220316 geolocation-sensor-20220316 - +a:wicg-geolocation-sensor-20231026 +WICG-GEOLOCATION-SENSOR-20231026 +geolocation-sensor-20231026 +- +a:wicg-geolocation-sensor-20231127 +WICG-GEOLOCATION-SENSOR-20231127 +geolocation-sensor-20231127 +- +a:wicg-geolocation-sensor-20240105 +WICG-GEOLOCATION-SENSOR-20240105 +geolocation-sensor-20240105 +- +a:wicg-geolocation-sensor-20240617 +WICG-GEOLOCATION-SENSOR-20240617 +geolocation-sensor-20240617 +- a:wicg-idle-detection WICG-IDLE-DETECTION IDLE-DETECTION @@ -490,6 +510,10 @@ a:wicg-input-device-capabilities WICG-INPUT-DEVICE-CAPABILITIES INPUT-DEVICE-CAPABILITIES - +a:wicg-isolated-contexts +WICG-ISOLATED-CONTEXTS +ISOLATED-CONTEXTS +- a:wicg-js-self-profiling WICG-JS-SELF-PROFILING JS-SELF-PROFILING @@ -566,6 +590,10 @@ a:wicg-mst-content-hint-20210722 WICG-MST-CONTENT-HINT-20210722 mst-content-hint-20210722 - +a:wicg-mst-content-hint-20240801 +WICG-MST-CONTENT-HINT-20240801 +mst-content-hint-20240801 +- a:wicg-multicapture WICG-MULTICAPTURE MULTICAPTURE @@ -1745,21 +1773,21 @@ https://wicg.github.io/window-controls-overlay/ - -d:window-placement -window-placement -16 December 2022 +d:window-management +window-management +7 June 2024 WD -Multi-Screen Window Placement -https://www.w3.org/TR/window-placement/ -https://w3c.github.io/window-placement/ +Window Management +https://www.w3.org/TR/window-management/ +https://w3c.github.io/window-management/ Joshua Bell Mike Wasserman - -d:window-placement-20220630 -window-placement-20220630 +d:window-management-20220630 +window-management-20220630 30 June 2022 WD Multi-Screen Window Placement @@ -1771,8 +1799,8 @@ https://www.w3.org/TR/2022/WD-window-placement-20220630/ Joshua Bell Mike Wasserman - -d:window-placement-20220922 -window-placement-20220922 +d:window-management-20220922 +window-management-20220922 22 September 2022 WD Multi-Screen Window Placement @@ -1784,8 +1812,8 @@ https://www.w3.org/TR/2022/WD-window-placement-20220922/ Joshua Bell Mike Wasserman - -d:window-placement-20221101 -window-placement-20221101 +d:window-management-20221101 +window-management-20221101 1 November 2022 WD Multi-Screen Window Placement @@ -1797,8 +1825,8 @@ https://www.w3.org/TR/2022/WD-window-placement-20221101/ Joshua Bell Mike Wasserman - -d:window-placement-20221201 -window-placement-20221201 +d:window-management-20221201 +window-management-20221201 1 December 2022 WD Multi-Screen Window Placement @@ -1810,8 +1838,8 @@ https://www.w3.org/TR/2022/WD-window-placement-20221201/ Joshua Bell Mike Wasserman - -d:window-placement-20221216 -window-placement-20221216 +d:window-management-20221216 +window-management-20221216 16 December 2022 WD Multi-Screen Window Placement @@ -1823,6 +1851,217 @@ https://www.w3.org/TR/2022/WD-window-placement-20221216/ Joshua Bell Mike Wasserman - +d:window-management-20230206 +window-management-20230206 +6 February 2023 +WD +Multi-Screen Window Placement +https://www.w3.org/TR/2023/WD-window-placement-20230206/ +https://www.w3.org/TR/2023/WD-window-placement-20230206/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230303 +window-management-20230303 +3 March 2023 +WD +Multi-Screen Window Placement +https://www.w3.org/TR/2023/WD-window-placement-20230303/ +https://www.w3.org/TR/2023/WD-window-placement-20230303/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230307 +window-management-20230307 +7 March 2023 +WD +Multi-Screen Window Placement +https://www.w3.org/TR/2023/WD-window-placement-20230307/ +https://www.w3.org/TR/2023/WD-window-placement-20230307/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230330 +window-management-20230330 +30 March 2023 +WD +Multi-Screen Window Management +https://www.w3.org/TR/2023/WD-window-management-20230330/ +https://www.w3.org/TR/2023/WD-window-management-20230330/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230405 +window-management-20230405 +5 April 2023 +WD +Window Management +https://www.w3.org/TR/2023/WD-window-management-20230405/ +https://www.w3.org/TR/2023/WD-window-management-20230405/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230606 +window-management-20230606 +6 June 2023 +WD +Window Management +https://www.w3.org/TR/2023/WD-window-management-20230606/ +https://www.w3.org/TR/2023/WD-window-management-20230606/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230614 +window-management-20230614 +14 June 2023 +WD +Window Management +https://www.w3.org/TR/2023/WD-window-management-20230614/ +https://www.w3.org/TR/2023/WD-window-management-20230614/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230829 +window-management-20230829 +29 August 2023 +WD +Window Management +https://www.w3.org/TR/2023/WD-window-management-20230829/ +https://www.w3.org/TR/2023/WD-window-management-20230829/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20230906 +window-management-20230906 +6 September 2023 +WD +Window Management +https://www.w3.org/TR/2023/WD-window-management-20230906/ +https://www.w3.org/TR/2023/WD-window-management-20230906/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20240401 +window-management-20240401 +1 April 2024 +WD +Window Management +https://www.w3.org/TR/2024/WD-window-management-20240401/ +https://www.w3.org/TR/2024/WD-window-management-20240401/ + + + +Joshua Bell +Mike Wasserman +- +d:window-management-20240607 +window-management-20240607 +7 June 2024 +WD +Window Management +https://www.w3.org/TR/2024/WD-window-management-20240607/ +https://www.w3.org/TR/2024/WD-window-management-20240607/ + + + +Joshua Bell +Mike Wasserman +- +a:window-placement +window-placement +window-management +- +a:window-placement-20220630 +window-placement-20220630 +window-management-20220630 +- +a:window-placement-20220922 +window-placement-20220922 +window-management-20220922 +- +a:window-placement-20221101 +window-placement-20221101 +window-management-20221101 +- +a:window-placement-20221201 +window-placement-20221201 +window-management-20221201 +- +a:window-placement-20221216 +window-placement-20221216 +window-management-20221216 +- +a:window-placement-20230206 +window-placement-20230206 +window-management-20230206 +- +a:window-placement-20230303 +window-placement-20230303 +window-management-20230303 +- +a:window-placement-20230307 +window-placement-20230307 +window-management-20230307 +- +a:window-placement-20230330 +window-placement-20230330 +window-management-20230330 +- +a:window-placement-20230405 +window-placement-20230405 +window-management-20230405 +- +a:window-placement-20230606 +window-placement-20230606 +window-management-20230606 +- +a:window-placement-20230614 +window-placement-20230614 +window-management-20230614 +- +a:window-placement-20230829 +window-placement-20230829 +window-management-20230829 +- +a:window-placement-20230906 +window-placement-20230906 +window-management-20230906 +- +a:window-placement-20240401 +window-placement-20240401 +window-management-20240401 +- +a:window-placement-20240607 +window-placement-20240607 +window-management-20240607 +- d:windows-glyph-proc WINDOWS-GLYPH-PROC diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wm.data b/bikeshed/spec-data/readonly/biblio/biblio-wm.data index f94b26d73a..25a8890f78 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wm.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wm.data @@ -1,3 +1,31 @@ +a:wmas2017 +WMAS2017 +CTA-5000 +- +a:wmas2018 +WMAS2018 +CTA-5000-A +- +a:wmas2019 +WMAS2019 +CTA-5000-B +- +a:wmas2020 +WMAS2020 +CTA-5000-C +- +a:wmas2021 +WMAS2021 +CTA-5000-D +- +a:wmas2022 +WMAS2022 +CTA-5000-E +- +a:wmas2023 +WMAS2023 +CTA-5000-F +- d:wms wms 15 March 2006 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-wo.data b/bikeshed/spec-data/readonly/biblio/biblio-wo.data index 241032f0a9..4d6c1b2fca 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-wo.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-wo.data @@ -84,7 +84,7 @@ Erik van Blokland - d:woff2 WOFF2 -10 March 2022 +8 August 2024 REC WOFF File Format 2.0 https://www.w3.org/TR/WOFF2/ @@ -93,7 +93,6 @@ https://w3c.github.io/woff/woff2/ Vladimir Levantovsky -Raph Levien - d:woff2-20140508 WOFF2-20140508 @@ -186,6 +185,18 @@ https://www.w3.org/TR/2022/REC-WOFF2-20220310/ Vladimir Levantovsky Raph Levien - +d:woff2-20240808 +WOFF2-20240808 +8 August 2024 +REC +WOFF File Format 2.0 +https://www.w3.org/TR/2024/REC-WOFF2-20240808/ +https://www.w3.org/TR/2024/REC-WOFF2-20240808/ + + + +Vladimir Levantovsky +- d:woff20er WOFF20ER 15 March 2016 @@ -563,8 +574,8 @@ Kazuo Kajimoto - d:wot-architecture11 wot-architecture11 -19 January 2023 -CR +5 December 2023 +REC Web of Things (WoT) Architecture 1.1 https://www.w3.org/TR/wot-architecture11/ https://w3c.github.io/wot-architecture/ @@ -573,8 +584,8 @@ https://w3c.github.io/wot-architecture/ Michael Lagally Ryuichi Matsukura -Michael McCool Kunihiko Toumura +Michael McCool - d:wot-architecture11-20201124 wot-architecture11-20201124 @@ -621,9 +632,39 @@ Ryuichi Matsukura Michael McCool Kunihiko Toumura - +d:wot-architecture11-20230711 +wot-architecture11-20230711 +11 July 2023 +PR +Web of Things (WoT) Architecture 1.1 +https://www.w3.org/TR/2023/PR-wot-architecture11-20230711/ +https://www.w3.org/TR/2023/PR-wot-architecture11-20230711/ + + + +Michael Lagally +Ryuichi Matsukura +Kunihiko Toumura +Michael McCool +- +d:wot-architecture11-20231205 +wot-architecture11-20231205 +5 December 2023 +REC +Web of Things (WoT) Architecture 1.1 +https://www.w3.org/TR/2023/REC-wot-architecture11-20231205/ +https://www.w3.org/TR/2023/REC-wot-architecture11-20231205/ + + + +Michael Lagally +Ryuichi Matsukura +Kunihiko Toumura +Michael McCool +- d:wot-binding-templates wot-binding-templates -30 January 2020 +28 May 2024 NOTE Web of Things (WoT) Binding Templates https://www.w3.org/TR/wot-binding-templates/ @@ -656,23 +697,49 @@ https://www.w3.org/TR/2020/NOTE-wot-binding-templates-20200130/ +Michael Koster +Ege Korkan +- +d:wot-binding-templates-20230928 +wot-binding-templates-20230928 +28 September 2023 +NOTE +Web of Things (WoT) Binding Templates +https://www.w3.org/TR/2023/NOTE-wot-binding-templates-20230928/ +https://www.w3.org/TR/2023/NOTE-wot-binding-templates-20230928/ + + + +Michael Koster +Ege Korkan +- +d:wot-binding-templates-20240528 +wot-binding-templates-20240528 +28 May 2024 +NOTE +Web of Things (WoT) Binding Templates +https://www.w3.org/TR/2024/NOTE-wot-binding-templates-20240528/ +https://www.w3.org/TR/2024/NOTE-wot-binding-templates-20240528/ + + + Michael Koster Ege Korkan - d:wot-discovery wot-discovery -19 January 2023 -CR +5 December 2023 +REC Web of Things (WoT) Discovery https://www.w3.org/TR/wot-discovery/ https://w3c.github.io/wot-discovery/ -Andrea Cimmino +Kunihiko Toumura Michael McCool +Andrea Cimmino Farshid Tavakolizadeh -Kunihiko Toumura - d:wot-discovery-20201124 wot-discovery-20201124 @@ -734,6 +801,36 @@ Michael McCool Farshid Tavakolizadeh Kunihiko Toumura - +d:wot-discovery-20230711 +wot-discovery-20230711 +11 July 2023 +PR +Web of Things (WoT) Discovery +https://www.w3.org/TR/2023/PR-wot-discovery-20230711/ +https://www.w3.org/TR/2023/PR-wot-discovery-20230711/ + + + +Kunihiko Toumura +Michael McCool +Andrea Cimmino +Farshid Tavakolizadeh +- +d:wot-discovery-20231205 +wot-discovery-20231205 +5 December 2023 +REC +Web of Things (WoT) Discovery +https://www.w3.org/TR/2023/REC-wot-discovery-20231205/ +https://www.w3.org/TR/2023/REC-wot-discovery-20231205/ + + + +Kunihiko Toumura +Michael McCool +Andrea Cimmino +Farshid Tavakolizadeh +- d:wot-profile wot-profile 18 January 2023 @@ -786,7 +883,7 @@ Tomoaki Mizushima - d:wot-scripting-api wot-scripting-api -24 November 2020 +3 October 2023 NOTE Web of Things (WoT) Scripting API https://www.w3.org/TR/wot-scripting-api/ @@ -869,6 +966,22 @@ https://www.w3.org/TR/2020/NOTE-wot-scripting-api-20201124/ +Zoltan Kis +Daniel Peintner +Cristiano Aguzzi +Johannes Hund +Kazuaki Nimura +- +d:wot-scripting-api-20231003 +wot-scripting-api-20231003 +3 October 2023 +NOTE +Web of Things (WoT) Scripting API +https://www.w3.org/TR/2023/NOTE-wot-scripting-api-20231003/ +https://www.w3.org/TR/2023/NOTE-wot-scripting-api-20231003/ + + + Zoltan Kis Daniel Peintner Cristiano Aguzzi @@ -1067,8 +1180,8 @@ Matthias Kovatsch - d:wot-thing-description11 wot-thing-description11 -19 January 2023 -CR +5 December 2023 +REC Web of Things (WoT) Thing Description 1.1 https://www.w3.org/TR/wot-thing-description11/ https://w3c.github.io/wot-thing-description/ @@ -1149,6 +1262,34 @@ https://www.w3.org/TR/2023/CR-wot-thing-description11-20230119/ +Sebastian Käbisch +Michael McCool +Ege Korkan +- +d:wot-thing-description11-20230711 +wot-thing-description11-20230711 +11 July 2023 +PR +Web of Things (WoT) Thing Description 1.1 +https://www.w3.org/TR/2023/PR-wot-thing-description11-20230711/ +https://www.w3.org/TR/2023/PR-wot-thing-description11-20230711/ + + + +Sebastian Käbisch +Michael McCool +Ege Korkan +- +d:wot-thing-description11-20231205 +wot-thing-description11-20231205 +5 December 2023 +REC +Web of Things (WoT) Thing Description 1.1 +https://www.w3.org/TR/2023/REC-wot-thing-description11-20231205/ +https://www.w3.org/TR/2023/REC-wot-thing-description11-20231205/ + + + Sebastian Käbisch Michael McCool Ege Korkan diff --git a/bikeshed/spec-data/readonly/biblio/biblio-xm.data b/bikeshed/spec-data/readonly/biblio/biblio-xm.data index 96de957382..ebef67a68f 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-xm.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-xm.data @@ -732,68 +732,68 @@ Joseph Reagle - d:xml-entity-names xml-entity-names -10 April 2014 +7 March 2023 REC -XML Entity Definitions for Characters (2nd Edition) +XML Entity Definitions for Characters (3rd Edition) https://www.w3.org/TR/xml-entity-names/ -David Carlisle Patrick D F Ion +David Carlisle - d:xml-entity-names-20071214 xml-entity-names-20071214 14 December 2007 WD -XML Entity Definitions for Characters (2nd Edition) +XML Entity Definitions for Characters (3rd Edition) https://www.w3.org/TR/2007/WD-xml-entity-names-20071214/ https://www.w3.org/TR/2007/WD-xml-entity-names-20071214/ -David Carlisle Patrick D F Ion +David Carlisle - d:xml-entity-names-20080721 xml-entity-names-20080721 21 July 2008 WD -XML Entity Definitions for Characters (2nd Edition) +XML Entity Definitions for Characters (3rd Edition) https://www.w3.org/TR/2008/WD-xml-entity-names-20080721/ https://www.w3.org/TR/2008/WD-xml-entity-names-20080721/ -David Carlisle Patrick D F Ion +David Carlisle - d:xml-entity-names-20091117 xml-entity-names-20091117 17 November 2009 WD -XML Entity Definitions for Characters (2nd Edition) +XML Entity Definitions for Characters (3rd Edition) https://www.w3.org/TR/2009/WD-xml-entity-names-20091117/ https://www.w3.org/TR/2009/WD-xml-entity-names-20091117/ -David Carlisle Patrick D F Ion +David Carlisle - d:xml-entity-names-20100211 xml-entity-names-20100211 11 February 2010 PR -XML Entity Definitions for Characters (2nd Edition) +XML Entity Definitions for Characters (3rd Edition) https://www.w3.org/TR/2010/PR-xml-entity-names-20100211/ https://www.w3.org/TR/2010/PR-xml-entity-names-20100211/ -David Carlisle Patrick D F Ion +David Carlisle - d:xml-entity-names-20100401 xml-entity-names-20100401 @@ -834,6 +834,19 @@ https://www.w3.org/TR/2014/REC-xml-entity-names-20140410/ David Carlisle Patrick D F Ion - +d:xml-entity-names-20230307 +xml-entity-names-20230307 +7 March 2023 +REC +XML Entity Definitions for Characters (3rd Edition) +https://www.w3.org/TR/2023/REC-xml-entity-names-20230307/ +https://www.w3.org/TR/2023/REC-xml-entity-names-20230307/ + + + +Patrick D F Ion +David Carlisle +- a:xml-events xml-events xml-events2 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-xp.data b/bikeshed/spec-data/readonly/biblio/biblio-xp.data index 13229cbd0a..039e803162 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-xp.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-xp.data @@ -1,5 +1,9 @@ -d:xpath +a:xpath xpath +xpath-10 +- +d:xpath-10 +xpath-10 16 November 1999 REC XML Path Language (XPath) Version 1.0 @@ -11,8 +15,8 @@ https://www.w3.org/TR/xpath-10/ James Clark Steven DeRose - -d:xpath-19980818 -xpath-19980818 +d:xpath-10-19980818 +xpath-10-19980818 18 August 1998 WD XML Path Language (XPath) Version 1.0 @@ -24,8 +28,8 @@ https://www.w3.org/TR/1998/WD-xsl-19980818 James Clark Steven DeRose - -d:xpath-19981216 -xpath-19981216 +d:xpath-10-19981216 +xpath-10-19981216 16 December 1998 WD XML Path Language (XPath) Version 1.0 @@ -37,8 +41,8 @@ https://www.w3.org/TR/1998/WD-xsl-19981216 James Clark Steven DeRose - -d:xpath-19990421 -xpath-19990421 +d:xpath-10-19990421 +xpath-10-19990421 21 April 1999 WD XML Path Language (XPath) Version 1.0 @@ -50,8 +54,8 @@ https://www.w3.org/TR/1999/WD-xslt-19990421 James Clark Steven DeRose - -d:xpath-19990709 -xpath-19990709 +d:xpath-10-19990709 +xpath-10-19990709 9 July 1999 WD XML Path Language (XPath) Version 1.0 @@ -63,8 +67,8 @@ https://www.w3.org/1999/07/WD-xpath-19990709 James Clark Steven DeRose - -d:xpath-19990813 -xpath-19990813 +d:xpath-10-19990813 +xpath-10-19990813 13 August 1999 WD XML Path Language (XPath) Version 1.0 @@ -76,8 +80,8 @@ https://www.w3.org/1999/08/WD-xpath-19990813 James Clark Steven DeRose - -d:xpath-19991008 -xpath-19991008 +d:xpath-10-19991008 +xpath-10-19991008 8 October 1999 PR XML Path Language (XPath) Version 1.0 @@ -89,8 +93,8 @@ https://www.w3.org/TR/1999/PR-xpath-19991008 James Clark Steven DeRose - -d:xpath-19991116 -xpath-19991116 +d:xpath-10-19991116 +xpath-10-19991116 16 November 1999 REC XML Path Language (XPath) Version 1.0 @@ -102,6 +106,34 @@ https://www.w3.org/TR/1999/REC-xpath-19991116/ James Clark Steven DeRose - +a:xpath-19980818 +xpath-19980818 +xpath-10-19980818 +- +a:xpath-19981216 +xpath-19981216 +xpath-10-19981216 +- +a:xpath-19990421 +xpath-19990421 +xpath-10-19990421 +- +a:xpath-19990709 +xpath-19990709 +xpath-10-19990709 +- +a:xpath-19990813 +xpath-19990813 +xpath-10-19990813 +- +a:xpath-19991008 +xpath-19991008 +xpath-10-19991008 +- +a:xpath-19991116 +xpath-19991116 +xpath-10-19991116 +- a:xpath-21 xpath-21 xpath-30 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-xq.data b/bikeshed/spec-data/readonly/biblio/biblio-xq.data index 93aff942a0..f8dcb02e51 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-xq.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-xq.data @@ -1,13 +1,17 @@ -d:xquery +a:xquery xquery +xquery-10 +- +d:xquery-10 +xquery-10 14 December 2010 REC XQuery 1.0: An XML Query Language (Second Edition) -https://www.w3.org/TR/xquery/ +https://www.w3.org/TR/xquery-10/ + -1 Scott Boag Don Chamberlin Mary Fernandez @@ -15,108 +19,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -a:xquery-11 -xquery-11 -xquery-30 -- -a:xquery-11-20080711 -xquery-11-20080711 -xquery-30-20080711 -- -a:xquery-11-20081203 -xquery-11-20081203 -xquery-30-20081203 -- -a:xquery-11-20091215 -xquery-11-20091215 -xquery-30-20091215 -- -a:xquery-11-20101214 -xquery-11-20101214 -xquery-30-20101214 -- -a:xquery-11-20110614 -xquery-11-20110614 -xquery-30-20110614 -- -a:xquery-11-20111213 -xquery-11-20111213 -xquery-30-20111213 -- -a:xquery-11-20130108 -xquery-11-20130108 -xquery-30-20130108 -- -a:xquery-11-20130723 -xquery-11-20130723 -xquery-30-20130723 -- -a:xquery-11-20131022 -xquery-11-20131022 -xquery-30-20131022 -- -a:xquery-11-20140408 -xquery-11-20140408 -xquery-30-20140408 -- -a:xquery-11-requirements -xquery-11-requirements -xquery-30-requirements -- -a:xquery-11-requirements-20070323 -xquery-11-requirements-20070323 -xquery-30-requirements-20070323 -- -a:xquery-11-requirements-20091215 -xquery-11-requirements-20091215 -xquery-30-requirements-20091215 -- -a:xquery-11-requirements-20100916 -xquery-11-requirements-20100916 -xquery-30-requirements-20100916 -- -a:xquery-11-requirements-20130108 -xquery-11-requirements-20130108 -xquery-30-requirements-20130108 -- -a:xquery-11-requirements-20140408 -xquery-11-requirements-20140408 -xquery-30-requirements-20140408 -- -a:xquery-11-use-cases -xquery-11-use-cases -xquery-30-use-cases -- -a:xquery-11-use-cases-20080327 -xquery-11-use-cases-20080327 -xquery-30-use-cases-20080327 -- -a:xquery-11-use-cases-20080711 -xquery-11-use-cases-20080711 -xquery-30-use-cases-20080711 -- -a:xquery-11-use-cases-20081203 -xquery-11-use-cases-20081203 -xquery-30-use-cases-20081203 -- -a:xquery-11-use-cases-20101214 -xquery-11-use-cases-20101214 -xquery-30-use-cases-20101214 -- -a:xquery-11-use-cases-20120327 -xquery-11-use-cases-20120327 -xquery-30-use-cases-20120327 -- -a:xquery-11-use-cases-20130108 -xquery-11-use-cases-20130108 -xquery-30-use-cases-20130108 -- -a:xquery-11-use-cases-20140408 -xquery-11-use-cases-20140408 -xquery-30-use-cases-20140408 -- -d:xquery-20010215 -xquery-20010215 +d:xquery-10-20010215 +xquery-10-20010215 15 February 2001 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -124,7 +28,7 @@ https://www.w3.org/TR/2001/WD-xquery-20010215/ https://www.w3.org/TR/2001/WD-xquery-20010215/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -132,8 +36,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20010607 -xquery-20010607 +d:xquery-10-20010607 +xquery-10-20010607 7 June 2001 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -141,7 +45,7 @@ https://www.w3.org/TR/2001/WD-xquery-20010607 https://www.w3.org/TR/2001/WD-xquery-20010607 -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -149,8 +53,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20011220 -xquery-20011220 +d:xquery-10-20011220 +xquery-10-20011220 20 December 2001 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -158,7 +62,7 @@ https://www.w3.org/TR/2001/WD-xquery-20011220/ https://www.w3.org/TR/2001/WD-xquery-20011220/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -166,8 +70,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20020430 -xquery-20020430 +d:xquery-10-20020430 +xquery-10-20020430 30 April 2002 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -175,7 +79,7 @@ https://www.w3.org/TR/2002/WD-xquery-20020430 https://www.w3.org/TR/2002/WD-xquery-20020430 -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -183,8 +87,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20020816 -xquery-20020816 +d:xquery-10-20020816 +xquery-10-20020816 16 August 2002 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -192,7 +96,7 @@ https://www.w3.org/TR/2002/WD-xquery-20020816/ https://www.w3.org/TR/2002/WD-xquery-20020816/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -200,8 +104,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20021115 -xquery-20021115 +d:xquery-10-20021115 +xquery-10-20021115 15 November 2002 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -209,7 +113,7 @@ https://www.w3.org/TR/2002/WD-xquery-20021115/ https://www.w3.org/TR/2002/WD-xquery-20021115/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -217,8 +121,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20030502 -xquery-20030502 +d:xquery-10-20030502 +xquery-10-20030502 2 May 2003 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -226,7 +130,7 @@ https://www.w3.org/TR/2003/WD-xquery-20030502/ https://www.w3.org/TR/2003/WD-xquery-20030502/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -234,8 +138,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20030822 -xquery-20030822 +d:xquery-10-20030822 +xquery-10-20030822 22 August 2003 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -243,7 +147,7 @@ https://www.w3.org/TR/2003/WD-xquery-20030822/ https://www.w3.org/TR/2003/WD-xquery-20030822/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -251,8 +155,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20031112 -xquery-20031112 +d:xquery-10-20031112 +xquery-10-20031112 12 November 2003 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -260,7 +164,7 @@ https://www.w3.org/TR/2003/WD-xquery-20031112/ https://www.w3.org/TR/2003/WD-xquery-20031112/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -268,8 +172,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20040723 -xquery-20040723 +d:xquery-10-20040723 +xquery-10-20040723 23 July 2004 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -277,7 +181,7 @@ https://www.w3.org/TR/2004/WD-xquery-20040723/ https://www.w3.org/TR/2004/WD-xquery-20040723/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -285,8 +189,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20041029 -xquery-20041029 +d:xquery-10-20041029 +xquery-10-20041029 29 October 2004 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -294,7 +198,7 @@ https://www.w3.org/TR/2004/WD-xquery-20041029/ https://www.w3.org/TR/2004/WD-xquery-20041029/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -302,8 +206,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20050211 -xquery-20050211 +d:xquery-10-20050211 +xquery-10-20050211 11 February 2005 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -311,7 +215,7 @@ https://www.w3.org/TR/2005/WD-xquery-20050211/ https://www.w3.org/TR/2005/WD-xquery-20050211/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -319,8 +223,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20050404 -xquery-20050404 +d:xquery-10-20050404 +xquery-10-20050404 4 April 2005 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -328,7 +232,7 @@ https://www.w3.org/TR/2005/WD-xquery-20050404/ https://www.w3.org/TR/2005/WD-xquery-20050404/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -336,8 +240,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20050915 -xquery-20050915 +d:xquery-10-20050915 +xquery-10-20050915 15 September 2005 WD XQuery 1.0: An XML Query Language (Second Edition) @@ -345,7 +249,7 @@ https://www.w3.org/TR/2005/WD-xquery-20050915/ https://www.w3.org/TR/2005/WD-xquery-20050915/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -353,8 +257,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20051103 -xquery-20051103 +d:xquery-10-20051103 +xquery-10-20051103 3 November 2005 CR XQuery 1.0: An XML Query Language (Second Edition) @@ -362,7 +266,7 @@ https://www.w3.org/TR/2005/CR-xquery-20051103/ https://www.w3.org/TR/2005/CR-xquery-20051103/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -370,8 +274,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20060608 -xquery-20060608 +d:xquery-10-20060608 +xquery-10-20060608 8 June 2006 CR XQuery 1.0: An XML Query Language (Second Edition) @@ -379,7 +283,7 @@ https://www.w3.org/TR/2006/CR-xquery-20060608/ https://www.w3.org/TR/2006/CR-xquery-20060608/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -387,8 +291,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20061121 -xquery-20061121 +d:xquery-10-20061121 +xquery-10-20061121 21 November 2006 PR XQuery 1.0: An XML Query Language (Second Edition) @@ -396,7 +300,7 @@ https://www.w3.org/TR/2006/PR-xquery-20061121/ https://www.w3.org/TR/2006/PR-xquery-20061121/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -404,8 +308,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20070123 -xquery-20070123 +d:xquery-10-20070123 +xquery-10-20070123 23 January 2007 REC XQuery 1.0: An XML Query Language @@ -413,7 +317,7 @@ https://www.w3.org/TR/2007/REC-xquery-20070123/ https://www.w3.org/TR/2007/REC-xquery-20070123/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -421,8 +325,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20090421 -xquery-20090421 +d:xquery-10-20090421 +xquery-10-20090421 21 April 2009 PER XQuery 1.0: An XML Query Language (Second Edition) @@ -430,7 +334,7 @@ https://www.w3.org/TR/2009/PER-xquery-20090421/ https://www.w3.org/TR/2009/PER-xquery-20090421/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -438,8 +342,8 @@ Daniela Florescu Jonathan Robie Jerome Simeon - -d:xquery-20101214 -xquery-20101214 +d:xquery-10-20101214 +xquery-10-20101214 14 December 2010 REC XQuery 1.0: An XML Query Language (Second Edition) @@ -447,7 +351,7 @@ https://www.w3.org/TR/2010/REC-xquery-20101214/ https://www.w3.org/TR/2010/REC-xquery-20101214/ -1 + Scott Boag Don Chamberlin Mary Fernandez @@ -455,6 +359,186 @@ Daniela Florescu Jonathan Robie Jerome Simeon - +a:xquery-11 +xquery-11 +xquery-30 +- +a:xquery-11-20080711 +xquery-11-20080711 +xquery-30-20080711 +- +a:xquery-11-20081203 +xquery-11-20081203 +xquery-30-20081203 +- +a:xquery-11-20091215 +xquery-11-20091215 +xquery-30-20091215 +- +a:xquery-11-20101214 +xquery-11-20101214 +xquery-30-20101214 +- +a:xquery-11-20110614 +xquery-11-20110614 +xquery-30-20110614 +- +a:xquery-11-20111213 +xquery-11-20111213 +xquery-30-20111213 +- +a:xquery-11-20130108 +xquery-11-20130108 +xquery-30-20130108 +- +a:xquery-11-20130723 +xquery-11-20130723 +xquery-30-20130723 +- +a:xquery-11-20131022 +xquery-11-20131022 +xquery-30-20131022 +- +a:xquery-11-20140408 +xquery-11-20140408 +xquery-30-20140408 +- +a:xquery-11-requirements +xquery-11-requirements +xquery-30-requirements +- +a:xquery-11-requirements-20070323 +xquery-11-requirements-20070323 +xquery-30-requirements-20070323 +- +a:xquery-11-requirements-20091215 +xquery-11-requirements-20091215 +xquery-30-requirements-20091215 +- +a:xquery-11-requirements-20100916 +xquery-11-requirements-20100916 +xquery-30-requirements-20100916 +- +a:xquery-11-requirements-20130108 +xquery-11-requirements-20130108 +xquery-30-requirements-20130108 +- +a:xquery-11-requirements-20140408 +xquery-11-requirements-20140408 +xquery-30-requirements-20140408 +- +a:xquery-11-use-cases +xquery-11-use-cases +xquery-30-use-cases +- +a:xquery-11-use-cases-20080327 +xquery-11-use-cases-20080327 +xquery-30-use-cases-20080327 +- +a:xquery-11-use-cases-20080711 +xquery-11-use-cases-20080711 +xquery-30-use-cases-20080711 +- +a:xquery-11-use-cases-20081203 +xquery-11-use-cases-20081203 +xquery-30-use-cases-20081203 +- +a:xquery-11-use-cases-20101214 +xquery-11-use-cases-20101214 +xquery-30-use-cases-20101214 +- +a:xquery-11-use-cases-20120327 +xquery-11-use-cases-20120327 +xquery-30-use-cases-20120327 +- +a:xquery-11-use-cases-20130108 +xquery-11-use-cases-20130108 +xquery-30-use-cases-20130108 +- +a:xquery-11-use-cases-20140408 +xquery-11-use-cases-20140408 +xquery-30-use-cases-20140408 +- +a:xquery-20010215 +xquery-20010215 +xquery-10-20010215 +- +a:xquery-20010607 +xquery-20010607 +xquery-10-20010607 +- +a:xquery-20011220 +xquery-20011220 +xquery-10-20011220 +- +a:xquery-20020430 +xquery-20020430 +xquery-10-20020430 +- +a:xquery-20020816 +xquery-20020816 +xquery-10-20020816 +- +a:xquery-20021115 +xquery-20021115 +xquery-10-20021115 +- +a:xquery-20030502 +xquery-20030502 +xquery-10-20030502 +- +a:xquery-20030822 +xquery-20030822 +xquery-10-20030822 +- +a:xquery-20031112 +xquery-20031112 +xquery-10-20031112 +- +a:xquery-20040723 +xquery-20040723 +xquery-10-20040723 +- +a:xquery-20041029 +xquery-20041029 +xquery-10-20041029 +- +a:xquery-20050211 +xquery-20050211 +xquery-10-20050211 +- +a:xquery-20050404 +xquery-20050404 +xquery-10-20050404 +- +a:xquery-20050915 +xquery-20050915 +xquery-10-20050915 +- +a:xquery-20051103 +xquery-20051103 +xquery-10-20051103 +- +a:xquery-20060608 +xquery-20060608 +xquery-10-20060608 +- +a:xquery-20061121 +xquery-20061121 +xquery-10-20061121 +- +a:xquery-20070123 +xquery-20070123 +xquery-10-20070123 +- +a:xquery-20090421 +xquery-20090421 +xquery-10-20090421 +- +a:xquery-20101214 +xquery-20101214 +xquery-10-20101214 +- d:xquery-30 xquery-30 8 April 2014 diff --git a/bikeshed/spec-data/readonly/biblio/biblio-xs.data b/bikeshed/spec-data/readonly/biblio/biblio-xs.data index 28bbc2d255..cb000522dd 100644 --- a/bikeshed/spec-data/readonly/biblio/biblio-xs.data +++ b/bikeshed/spec-data/readonly/biblio/biblio-xs.data @@ -558,20 +558,24 @@ https://www.w3.org/TR/1998/WD-XSLReq-19980511 Norman Walsh - -d:xslt +a:xslt xslt +xslt-10 +- +d:xslt-10 +xslt-10 16 November 1999 REC XSL Transformations (XSLT) Version 1.0 -https://www.w3.org/TR/xslt/ +https://www.w3.org/TR/xslt-10/ James Clark - -d:xslt-19990709 -xslt-19990709 +d:xslt-10-19990709 +xslt-10-19990709 9 July 1999 WD XSL Transformations (XSLT) Version 1.0 @@ -582,8 +586,8 @@ https://www.w3.org/1999/07/WD-xslt-19990709 James Clark - -d:xslt-19990813 -xslt-19990813 +d:xslt-10-19990813 +xslt-10-19990813 13 August 1999 WD XSL Transformations (XSLT) Version 1.0 @@ -594,8 +598,8 @@ https://www.w3.org/1999/08/WD-xslt-19990813 James Clark - -d:xslt-19991008 -xslt-19991008 +d:xslt-10-19991008 +xslt-10-19991008 8 October 1999 PR XSL Transformations (XSLT) Version 1.0 @@ -606,8 +610,8 @@ https://www.w3.org/TR/1999/PR-xslt-19991008 James Clark - -d:xslt-19991116 -xslt-19991116 +d:xslt-10-19991116 +xslt-10-19991116 16 November 1999 REC XSL Transformations (XSLT) Version 1.0 @@ -618,6 +622,22 @@ https://www.w3.org/TR/1999/REC-xslt-19991116 James Clark - +a:xslt-19990709 +xslt-19990709 +xslt-10-19990709 +- +a:xslt-19990813 +xslt-19990813 +xslt-10-19990813 +- +a:xslt-19991008 +xslt-19991008 +xslt-10-19991008 +- +a:xslt-19991116 +xslt-19991116 +xslt-10-19991116 +- a:xslt-21 xslt-21 xslt-30 diff --git a/bikeshed/spec-data/readonly/bikeshed-version.txt b/bikeshed/spec-data/readonly/bikeshed-version.txt index 73c120e065..c11102f4d2 100644 --- a/bikeshed/spec-data/readonly/bikeshed-version.txt +++ b/bikeshed/spec-data/readonly/bikeshed-version.txt @@ -1 +1 @@ -Bikeshed version 6270e4735, updated Tue Aug 6 12:12:30 2024 -0700 \ No newline at end of file +Bikeshed version 5fcd28d6d, updated Tue May 30 13:12:11 2023 -0700 \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/boilerplate/ab/footer.include b/bikeshed/spec-data/readonly/boilerplate/ab/footer.include new file mode 100644 index 0000000000..57c21273a0 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/ab/footer.include @@ -0,0 +1,23 @@ +</main> +<div data-fill-with="conformance"> +<h3 id="w3c-conventions" class="no-ref no-num">Document Conventions</h3> + + <p>Examples in this document are introduced with the words “for example” + or are set apart from the normative text + with <code>class="example"</code>, + like this: + + <div class="example" id="w3c-example"> + <p>This is an example of an informative example. + </div> + + <p>Informative notes begin with the word “Note” + and are set apart from the normative text + with <code>class="note"</code>, + like this: + + <p class="note">Note, this is an informative note.</p> +</div> +</body> +<script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> +</html> diff --git a/bikeshed/spec-data/readonly/boilerplate/ab/status.include b/bikeshed/spec-data/readonly/boilerplate/ab/status.include new file mode 100644 index 0000000000..c074ec9775 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/ab/status.include @@ -0,0 +1,36 @@ +<p exclude-if="ED"><em>This section describes the status of this document at the time of its publication. + A list of current W3C publications + and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> + +<p include-if="ED"> + This is a public copy of the editors’ draft. + It is provided for discussion only and may change at any moment. + Its publication here does not imply endorsement of its contents by W3C. + Don’t cite this document other than as work in progress. + +<p include-if="NOTE" data-deliverer="7756"> + This document was published + by the <a href="https://www.w3.org/groups/other/ab/">Advisory Board</a> + as a Group Note + using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. + Group Notes are not endorsed by W3C nor its Members. + +<p include-if="NOTE-FPWD, NOTE-WD" data-deliverer="7756"> + This document was published + by the <a href="https://www.w3.org/groups/other/ab/">Advisory Board</a> + as a Group Draft Note + using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. + Group Draft Notes are not endorsed by W3C nor its Members. + This is a draft document + and may be updated, replaced + or obsoleted by other documents at any time. + It is inappropriate to cite this document as other than work in progress. + +<p>This document is governed by the + <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. + +<p>The <a href="https://www.w3.org/policies/patent-policy/20200915/">15 September 2020 W3C Patent Policy</a> + does not carry any licensing requirements or commitments on this document. + +<p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/act-rules-format/copyright.include b/bikeshed/spec-data/readonly/boilerplate/act-rules-format/copyright.include new file mode 100644 index 0000000000..63d722129e --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/act-rules-format/copyright.include @@ -0,0 +1 @@ +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © 2024 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/document-license/">document use</a> rules apply. \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status-ED.include deleted file mode 100644 index e5f55fbf44..0000000000 --- a/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status-ED.include +++ /dev/null @@ -1,14 +0,0 @@ -<p><em>This section describes the status of this document at the time of its publication. A list of current <abbr title="World Wide Web Consortium">W3C</abbr> publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/"><abbr title="World Wide Web Consortium">W3C</abbr> technical reports index</a> at https://www.w3.org/TR/.</em></p> - -<p>This is an Editor Draft of Accessibility Conformance Testing (ACT) Rules Format 1.0, prepared by the <a href="http://www.w3.org/wai/gl/task-forces/conformance-testing/">Accessibility Conformance Testing (ACT) Task Force</a> of the <a href="https://www.w3.org/WAI/GL/">Accessibility Guidelines Working Group (AGWG)</a>. This document is an Editor Draft and does not represent consensus of the <a href="https://www.w3.org/WAI/GL/">Accessibility Guidelines Working Group</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation after further review and refinement.</p> - -<p>This is an Editor Draft for review and refinement within ACT TF and AGWG. It is not ready for public comments. Before commenting, please first review the <a href="https://github.com/w3c/wcag-act/"><abbr title="World Wide Web Consortium">W3C</abbr> ACT TF GitHub repository</a> for related comments. New comments can be submitted as <a href="https://github.com/w3c/wcag-act/issues/new">new GitHub issues</a> or by email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Framework%201.0%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">pulic list archive</a>).</p> - -<p>Publication as an Editor Draft does not imply endorsement by - <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p> - -<p>This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy-20170801/" id="sotd_patent"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/35422/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>.</p> - -<p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. - -<p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status-WD.include deleted file mode 100644 index 76a59f5404..0000000000 --- a/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status-WD.include +++ /dev/null @@ -1,24 +0,0 @@ -<p><em>This section describes the status of this document at the time of its publication. A list of current <abbr title="World Wide Web Consortium">W3C</abbr> publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/"><abbr title="World Wide Web Consortium">W3C</abbr> technical reports index</a> at https://www.w3.org/TR/.</em></p> - -<p>This is a First Public Working Draft of Accessibility Conformance Testing Framework 1.0 (ACT Framework 1.0) by the <a href="https://www.w3.org/groups/wg/ag">Accessibility Guidelines Working Group</a>. ACT Framework 1.0 is a complete draft, addressing all of the <a href="https://w3c.github.io/wcag-act/act-fr-reqs.html">requirements</a> the ACT Task Force believes are important to cover when writing rules. The ACT Framework is based on rules developed by the <a href="https://auto-wcag.github.io/auto-wcag/">Auto-WCAG Community Group</a>.</p> - -<p>For this publication, the Accessibility Guidelines Working Group particularly seeks feedback on the following questions:</p> -<ul> - <li>Does the ACT Framework address all the topics that are critical to rule design?</li> - <li>Does the <a href="#structure-acc-supp">section on accessibility support</a> adequately address the topic?</li> - <li>Does the <a href="#quality-accuracy">section on Accuracy Benchmarking</a> adequately address the topic?</li> - <li>Are there improvements to better support developers of test rules to transpose their rules and adopt this framework?</li> -</ul> - -<p>To comment, <a href="https://github.com/w3c/wcag-act/issues/new">file an issue in the <abbr title="World Wide Web Consortium">W3C</abbr> ACT GitHub repository</a>. It is free to create a GitHub account to file issues. If filing issues in GitHub is not feasible, send email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Framework%201.0%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">comment archive</a>). Comments are requested by <strong>@@ April 2017</strong>. In-progress updates to the document may be viewed in the <a href="https://w3c.github.io/wcag-act/act-framework.html">publicly visible editors' draft</a>.</p> - -<p>This document was published by the <a href="https://www.w3.org/groups/wg/ag">Accessibility Guidelines Working Group</a> as a First Public Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation - track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation.</p> - -<p>Publication as a First Public Working Draft does not imply endorsement by - <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p> - -<p>This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy-20170801/" id="sotd_patent"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/35422/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>.</p> - -<p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. diff --git a/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status.include b/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status.include new file mode 100644 index 0000000000..31c2d274ff --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/act-rules-format/status.include @@ -0,0 +1,25 @@ +<p><em>This section describes the status of this document at the time of its publication. A list of current <abbr title="World Wide Web Consortium">W3C</abbr> publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/"><abbr title="World Wide Web Consortium">W3C</abbr> technical reports index</a> at https://www.w3.org/TR/.</em></p> + +<p include-if="ED">This is an Editor Draft of Accessibility Conformance Testing (ACT) Rules Format [LEVEL], prepared by the <a href="http://www.w3.org/wai/gl/task-forces/conformance-testing/">Accessibility Conformance Testing (ACT) Task Force</a> of the <a href="https://www.w3.org/WAI/GL/">Accessibility Guidelines Working Group (AGWG)</a>. This document is an Editor Draft and does not represent consensus of the <a href="https://www.w3.org/WAI/GL/">Accessibility Guidelines Working Group</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation after further review and refinement.</p> + +<p include-if="ED">This is an Editor Draft for review and refinement within ACT TF and AGWG. It is not ready for public comments. Before commenting, please first review the <a href="https://github.com/w3c/wcag-act/"><abbr title="World Wide Web Consortium">W3C</abbr> ACT TF GitHub repository</a> for related comments. New comments can be submitted as <a href="https://github.com/w3c/wcag-act/issues/new">new GitHub issues</a> or by email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Fomrmat%201.1%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">pullic list archive</a>).</p> + +<p include-if="ED">Publication as an Editor Draft does not imply endorsement by + <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p> + +<p include-if="FPWD">This is a First Public Working Draft of Accessibility Conformance Testing (ACT) Rules Format [LEVEL] by the <a href="https://www.w3.org/groups/wg/ag/">Accessibility Guidelines Working Group</a>. ACT-Rules Format [LEVEL] is a complete draft, addressing all of the <a href="https://w3c.github.io/wcag-act/act-fr-reqs.html">requirements</a> the ACT Task Force believes are important to cover when writing rules. The ACT-Rules Format is based on rules developed by the <a href="https://act-rules.github.io/">ACT-Rules Community Group</a>.</p> + +<p>[STATUSTEXT] + +<p>To comment, <a href="https://github.com/w3c/wcag-act/issues/new">file an issue in the <abbr title="World Wide Web Consortium">W3C</abbr> ACT GitHub repository</a>. It is free to create a GitHub account to file issues. If filing issues in GitHub is not feasible, send email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Format%201.1%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">comment archive</a>). Comments are requested by <strong>[DEADLINE]</strong>. In-progress updates to the document may be viewed in the <a href="https://w3c.github.io/wcag-act/act-rules-format.html">publicly visible editors' draft</a>.</p> + +<p include-if="FPWD">This document was published by the <a href="https://www.w3.org/groups/wg/ag/">Accessibility Guidelines Working Group</a> as a First Public Working Draft using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation.</p> + +<p include-if="FPWD">Publication as a First Public Working Draft does not imply endorsement by + <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p> + +<p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/ag/ipr/">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> + +<p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2023/Process-20231103/">03 November 2023 W3C Process Document</a>. diff --git a/bikeshed/spec-data/readonly/boilerplate/annotations.include b/bikeshed/spec-data/readonly/boilerplate/annotations.include deleted file mode 100644 index 72525d8837..0000000000 --- a/bikeshed/spec-data/readonly/boilerplate/annotations.include +++ /dev/null @@ -1,4 +0,0 @@ -<head> - <script defer - src="[ANNOTATIONS]#![TESTSUITE]/[VSHORTNAME]"></script> -</head> diff --git a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-CR.include index 1e56e4406c..2c66f43604 100644 --- a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-CR.include @@ -7,7 +7,7 @@ This document was produced by the <a href="https://www.w3.org/groups/wg/audio">Web Audio Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -22,24 +22,24 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p> A <a href="https://webaudio.github.io/web-audio-api/implementation-report.html">preliminary implementation report</a> is available. <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/audio/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> For changes since the last draft, diff --git a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-ED.include index 5358be777f..e45ebd3bda 100644 --- a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-ED.include @@ -19,16 +19,16 @@ <p> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/audio/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-FPWD.include index c3dff1122f..b95c939c83 100644 --- a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-FPWD.include @@ -10,7 +10,7 @@ This document was published by the the <a href="https://www.w3.org/groups/wg/audio">Web Audio Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -34,16 +34,16 @@ <p> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/audio/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-WD.include index 029922dacc..138e036363 100644 --- a/bikeshed/spec-data/readonly/boilerplate/audiowg/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/audiowg/status-WD.include @@ -10,7 +10,7 @@ This document was published by the the <a href="https://www.w3.org/groups/wg/audio">Web Audio Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -30,16 +30,16 @@ <p> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/audio/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-ED.include index d677b6962e..74c25b37c4 100644 --- a/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-ED.include @@ -23,7 +23,7 @@ must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-WD.include index 6c0ae6d02d..74274902f3 100644 --- a/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/browser-testing-tools/status-WD.include @@ -4,7 +4,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/browser-tools-testing">Browser Testing and Tools Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -22,7 +22,7 @@ </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/copyright.include b/bikeshed/spec-data/readonly/boilerplate/copyright.include index 4366dca648..ca503c2b84 100644 --- a/bikeshed/spec-data/readonly/boilerplate/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/copyright.include @@ -3,6 +3,6 @@ To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of [DATE], the editors have made this specification available under the -<a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. +<a href="https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, +which is available at https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. diff --git a/bikeshed/spec-data/readonly/boilerplate/csswg/abstract.include b/bikeshed/spec-data/readonly/boilerplate/csswg/abstract.include index 4b94859b9f..cb66b8897d 100644 --- a/bikeshed/spec-data/readonly/boilerplate/csswg/abstract.include +++ b/bikeshed/spec-data/readonly/boilerplate/csswg/abstract.include @@ -4,3 +4,12 @@ <a href='https://www.w3.org/TR/CSS/'>CSS</a> is a language for describing the rendering of structured documents (such as HTML and XML) on screen, on paper, etc. + +<script include-if="Text Macro: BUILTBYGITHUBCI"> +const githubPrefix = "https://w3c.github.io/csswg-drafts/"; +if(location.href.slice(0, githubPrefix.length) == githubPrefix) { + const suffix = location.href.slice(githubPrefix.length); + const draftUrl = "https://drafts.csswg.org/" + suffix; + window.location.replace(draftUrl); +} +</script> \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/boilerplate/csswg/copyright-DREAM.include b/bikeshed/spec-data/readonly/boilerplate/csswg/copyright-DREAM.include index 92b89e5ecc..68bbab35cd 100644 --- a/bikeshed/spec-data/readonly/boilerplate/csswg/copyright-DREAM.include +++ b/bikeshed/spec-data/readonly/boilerplate/csswg/copyright-DREAM.include @@ -3,6 +3,6 @@ To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of [DATE], the editors have made this specification available under the -<a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. +<a href="https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, +which is available at https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. diff --git a/bikeshed/spec-data/readonly/boilerplate/csswg/status.include b/bikeshed/spec-data/readonly/boilerplate/csswg/status.include index fe13e08422..19cc1796fe 100644 --- a/bikeshed/spec-data/readonly/boilerplate/csswg/status.include +++ b/bikeshed/spec-data/readonly/boilerplate/csswg/status.include @@ -13,18 +13,18 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a [LONGSTATUS] using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. A W3C Recommendation is a specification that, after extensive consensus-building, is endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p include-if="PR"> This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Proposed Recommendation</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Proposed Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -33,15 +33,15 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received - <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, + <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. This document is intended to become a W3C Recommendation; it will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> @@ -51,7 +51,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> @@ -64,7 +64,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Working Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -73,7 +73,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>First Public Working Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a First Public Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -82,7 +82,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a Group Note - using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Note track</a>. + using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. Group Notes are not endorsed by W3C nor its Members. <p include-if="WD, FPWD, CRD"> @@ -100,20 +100,20 @@ <a href="mailto:www-style@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. <p>This document is governed by the - <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p exclude-if="ED,NOTE">This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/css/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. -<p include-if="NOTE">The <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">15 September 2020 W3C Patent Policy</a> +<p include-if="NOTE">The <a href="https://www.w3.org/policies/patent-policy/20200915/">15 September 2020 W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/dap/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/dap/status-CR.include index 04e60a01fc..f8a13156f4 100644 --- a/bikeshed/spec-data/readonly/boilerplate/dap/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/dap/status-CR.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Candidate Recommendation Snapshot using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. </p> @@ -18,12 +18,12 @@ This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> and the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a Candidate Recommendation Snapshot using the <a - href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation track</a>. + href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. </p> -<p> +<p exclude-if="Text Macro: JOINTWEBAPPS"> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, @@ -35,46 +35,60 @@ All comments are welcome. </p> +<p include-if="Text Macro: JOINTWEBAPPS"> + If you wish to make comments regarding this document, please <a href="[REPOSITORYURL]/issues/new">file an issue on the specification repository</a>. +</p> + <p> Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, is intended to - gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to + gather implementation experience, and has commitments from Working Group<span include-if="Text Macro: JOINT">s</span> members to <a + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> The entrance criteria for this document to enter the Proposed Recommendation stage is to have a minimum of two independent and interoperable user agents that - implementation all the features of this specification, which will be determined by + implement all the features of this specification, which will be determined by passing the user agent tests defined in the test suite developed by the Working - Group. The Working Group will prepare an implementation report to track progress. + Group<span include-if="Text Macro: JOINT">s</span>. The Working Group<span include-if="Text Macro: JOINT">s</span> will prepare an implementation report to track progress. </p> <p exclude-if="Text Macro: JOINT"> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures (Devices and Sensors)</a> and a <a href="https://www.w3.org/groups/wg/webapps/ipr" rel="disclosure">public list of any patent disclosures (Web Applications)</a> made in connection with the deliverables of each group; these pages also include instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance - with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance + with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. +</p> + +<p include-if="Text Macro: JOINTWEBAPPS"> + For general working group announcements, administrivia, and non-technical matters + email either <a href="mailto:public-device-apis@w3.org">public-device-apis@w3.org</a> + (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>) + or <a href="mailto:public-webapps@w3.org">public-webapps@w3.org</a> + (<a href="mailto:public-webapps-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-webapps/">archives</a>). </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/dap/status-CRD.include b/bikeshed/spec-data/readonly/boilerplate/dap/status-CRD.include index 454be3056c..afb65a4468 100644 --- a/bikeshed/spec-data/readonly/boilerplate/dap/status-CRD.include +++ b/bikeshed/spec-data/readonly/boilerplate/dap/status-CRD.include @@ -10,17 +10,17 @@ This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Candidate Recommendation Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> and the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a Candidate Recommendation Draft using the - <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation track</a>. + <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> -<p> +<p exclude-if="Text Macro: JOINTWEBAPPS"> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, @@ -32,10 +32,14 @@ All comments are welcome. </p> +<p include-if="Text Macro: JOINTWEBAPPS"> + If you wish to make comments regarding this document, please <a href="[REPOSITORYURL]/issues/new">file an issue on the specification repository</a>. +</p> + <p> Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Draft integrates changes from the - previous Candidate Recommendation that the Working Group intends to include in + previous Candidate Recommendation that the Working Group<span include-if="Text Macro: JOINT">s</span> intend<span exclude-if="Text Macro: JOINT">s</span> to include in a subsequent Candidate Recommendation Snapshot. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. @@ -44,34 +48,44 @@ <p> The entrance criteria for this document to enter the Proposed Recommendation stage is to have a minimum of two independent and interoperable user agents that - implementation all the features of this specification, which will be determined by + implement all the features of this specification, which will be determined by passing the user agent tests defined in the test suite developed by the Working - Group. The Working Group will prepare an implementation report to track progress. + Group<span include-if="Text Macro: JOINT">s</span>. The Working Group<span include-if="Text Macro: JOINT">s</span> will prepare an implementation report to track progress. </p> <p exclude-if="Text Macro: JOINT"> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures (Devices and Sensors)</a> and a <a href="https://www.w3.org/groups/wg/webapps/ipr" rel="disclosure">public list of any patent disclosures (Web Applications)</a> made in connection with the deliverables of each group; these pages also include instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance - with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance + with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. +</p> + +<p include-if="Text Macro: JOINTWEBAPPS"> + For general working group announcements, administrivia, and non-technical matters + email either <a href="mailto:public-device-apis@w3.org">public-device-apis@w3.org</a> + (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>) + or <a href="mailto:public-webapps@w3.org">public-webapps@w3.org</a> + (<a href="mailto:public-webapps-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-webapps/">archives</a>). </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/dap/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/dap/status-ED.include index 555753f243..b457106d3c 100644 --- a/bikeshed/spec-data/readonly/boilerplate/dap/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/dap/status-ED.include @@ -5,7 +5,7 @@ Don’t cite this document other than as work in progress. </p> -<p> +<p exclude-if="Text Macro: JOINTWEBAPPS"> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, @@ -17,34 +17,52 @@ All comments are welcome. </p> -<p> - This document was produced by the +<p include-if="Text Macro: JOINTWEBAPPS"> + If you wish to make comments regarding this document, please <a href="[REPOSITORYURL]/issues/new">file an issue on the specification repository</a>. +</p> + +<p exclude-if="Text Macro: JOINT"> + This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> +<p include-if="Text Macro: JOINTWEBAPPS"> + This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> and + the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a>. +</p> <p exclude-if="Text Macro: JOINT"> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures (Devices and Sensors)</a> and a <a href="https://www.w3.org/groups/wg/webapps/ipr" rel="disclosure">public list of any patent disclosures (Web Applications)</a> made in connection with the deliverables of each group; these pages also include instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance - with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance + with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. +</p> + +<p include-if="Text Macro: JOINTWEBAPPS"> + For general working group announcements, administrivia, and non-technical matters + email either <a href="mailto:public-device-apis@w3.org">public-device-apis@w3.org</a> + (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>) + or <a href="mailto:public-webapps@w3.org">public-webapps@w3.org</a> + (<a href="mailto:public-webapps-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-webapps/">archives</a>). </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/dap/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/dap/status-FPWD.include index a9ae757293..74eb950ee9 100644 --- a/bikeshed/spec-data/readonly/boilerplate/dap/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/dap/status-FPWD.include @@ -10,17 +10,17 @@ This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a First Public Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> and the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a First Public Working Draft using the - <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation track</a>. + <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> -<p> +<p exclude-if="Text Macro: JOINTWEBAPPS"> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, @@ -32,6 +32,10 @@ All comments are welcome. </p> +<p include-if="Text Macro: JOINTWEBAPPS"> + If you wish to make comments regarding this document, please <a href="[REPOSITORYURL]/issues/new">file an issue on the specification repository</a>. +</p> + <p> This document is a <strong>First Public Working Draft</strong>. </p> @@ -45,27 +49,37 @@ <p exclude-if="Text Macro: JOINT"> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures (Devices and Sensors)</a> and a <a href="https://www.w3.org/groups/wg/webapps/ipr" rel="disclosure">public list of any patent disclosures (Web Applications)</a> made in connection with the deliverables of each group; these pages also include instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance - with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance + with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. +</p> + +<p include-if="Text Macro: JOINTWEBAPPS"> + For general working group announcements, administrivia, and non-technical matters + email either <a href="mailto:public-device-apis@w3.org">public-device-apis@w3.org</a> + (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>) + or <a href="mailto:public-webapps@w3.org">public-webapps@w3.org</a> + (<a href="mailto:public-webapps-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-webapps/">archives</a>). </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/dap/status-NOTE.include b/bikeshed/spec-data/readonly/boilerplate/dap/status-NOTE.include index 21f96034e0..829310970f 100644 --- a/bikeshed/spec-data/readonly/boilerplate/dap/status-NOTE.include +++ b/bikeshed/spec-data/readonly/boilerplate/dap/status-NOTE.include @@ -4,16 +4,16 @@ This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Note + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Note track</a>. </p> <p include-if="Text Macro: JOINTWEBAPPS" data-deliverer="43696, 114929"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> and the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a Group Note using the - <a href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Note track</a>. + <a href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Note track</a>. </p> -<p> +<p exclude-if="Text Macro: JOINTWEBAPPS"> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, @@ -25,17 +25,31 @@ All comments are welcome. </p> +<p include-if="Text Macro: JOINTWEBAPPS"> + If you wish to make comments regarding this document, please <a href="[REPOSITORYURL]/issues/new">file an issue on the specification repository</a>. +</p> + <p> Group Notes are not endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> nor its Members. </p> <p> - The <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. + The <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. +</p> + +<p include-if="Text Macro: JOINTWEBAPPS"> + For general working group announcements, administrivia, and non-technical matters + email either <a href="mailto:public-device-apis@w3.org">public-device-apis@w3.org</a> + (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>) + or <a href="mailto:public-webapps@w3.org">public-webapps@w3.org</a> + (<a href="mailto:public-webapps-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-webapps/">archives</a>). </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/dap/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/dap/status-WD.include index 11a931f3ad..55a210fdcc 100644 --- a/bikeshed/spec-data/readonly/boilerplate/dap/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/dap/status-WD.include @@ -10,17 +10,17 @@ This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> and the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a Working Draft using the - <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation track</a>. + <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> -<p> +<p exclude-if="Text Macro: JOINTWEBAPPS"> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, @@ -32,6 +32,10 @@ All comments are welcome. </p> +<p include-if="Text Macro: JOINTWEBAPPS"> + If you wish to make comments regarding this document, please <a href="[REPOSITORYURL]/issues/new">file an issue on the specification repository</a>. +</p> + <p> Publication as a Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or @@ -41,27 +45,37 @@ <p exclude-if="Text Macro: JOINT"> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p include-if="Text Macro: JOINTWEBAPPS"> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures (Devices and Sensors)</a> and a <a href="https://www.w3.org/groups/wg/webapps/ipr" rel="disclosure">public list of any patent disclosures (Web Applications)</a> made in connection with the deliverables of each group; these pages also include instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance - with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance + with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. +</p> + +<p include-if="Text Macro: JOINTWEBAPPS"> + For general working group announcements, administrivia, and non-technical matters + email either <a href="mailto:public-device-apis@w3.org">public-device-apis@w3.org</a> + (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>) + or <a href="mailto:public-webapps@w3.org">public-webapps@w3.org</a> + (<a href="mailto:public-webapps-request@w3.org?subject=subscribe">subscribe</a>, + <a href="https://lists.w3.org/Archives/Public/public-webapps/">archives</a>). </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/doctypes.kdl b/bikeshed/spec-data/readonly/boilerplate/doctypes.kdl new file mode 100644 index 0000000000..a87a4c4156 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/doctypes.kdl @@ -0,0 +1,363 @@ +/* +This is a KDL document listing all the Org/Group/Status "metadata" values. + +An "org" node defines an organization, which can have default boilerplates (overriding the bikeshed defaults) and its own set of Group and Status metadatas. +* Required: a string attribute, + giving the org name/abbreviation + (what you write in the Org metadata) +* Required: one or more "group" children +* Required: one or more "status" children + +"org" nodes must live at the top level. + + +A "group" node defines a group in the org, which can have its own boilerplates (overriding the org defaults) +* Required: a string attribute, + giving the group name/abbreviation + (what you write in the Group metadata) +* Optional: a "priv-sec" property with a boolean value, + indicating whether the group requires privacy/security consideration sections. +* Optional: a "type" property with a string value, + giving an org-specific "type" for the group, + which can restrict what statuses the group is allowed to use. + (If omitted, this group can use any status in the org.) +* Optional: a "requires" child node, + containing string attributes listing metadatas that are required for documents in this group. + +"group" nodes can only exist underneath an org. + + +A "status" node defines a document status, which can also have its own boilerplates (overriding the non-status-specialized version). +* Required: a string attribute, + giving the status name/abbreviation + (what you write in the Status metadata) +* Required: a string attribute, + giving the human-readable status name + (what's stored in the `[LONGSTATUS]` macro) +* Optional: a "requires" child node, + identical to the one in "group" nodes + (the two lists are merged if a doc knows both its Group and Status). +* Optional: a "group-types" child node, + containing string attributes listing the group types allowed to use this status. + (If omitted, the status is usable by any group in the org.) + +Status nodes can exist underneath an org, +but can also live at the top level, +indicating statuses usable regardless of your org. + +Note: casing of the org/group/status shortnames is not relevant; +they're canonically uppercased by Bikeshed, +and any casing can be used in the metadata. +For any other data, casing is preserved. + +*/ + +org "bikeshed" { + group "test" + group "byos" + status "TEST" "Bikeshed Test File" + status "TEST-2" "Another Status Just For Testing Purposes" +} +org "bikeshed-2" { + status "TEST" "Another Status Just For Testing Purposes" +} + +status "DREAM" "A Collection of Interesting Ideas" +status "LS" "Living Standard" +status "LS-COMMIT" "Commit Snapshot" +status "LS-BRANCH" "Branch Snapshot" +status "LS-PR" "PR Preview" +status "LD" "Living Document" +status "DRAFT-FINDING" "Draft Finding" +status "FINDING" "Finding" + +org "whatwg" { + group "whatwg" priv-sec=false + status "RD" "Review Draft" { + requires "Date" + } +} + +org "w3c" { + + /* + Any group in this org has a secondary default + for its boilerplate - + if its personal boilerplate folder is missing a file, + it will look in the `w3c` folder first, + before falling back to the global files. + */ + + /* + Every group in this org must have a `type` attribute, + containing "wg", "ig", "cg", or "tag"; + this matches with the `group-types` children of the statuses + (and might have some formatting effects, too). + If a group should be able to use anything + (or it's a weirdo one-off that's not worth codifying), + use `type=null`. + */ + + group "ab" type=null + group "act-framework" type="wg" + group "act-rules-format" type="wg" + group "audiowg" type="wg" priv-sec=true + group "browser-testing-tools" type="wg" + group "csswg" type="wg" priv-sec=true { + requires "Work Status" + } + group "dap" type="wg" priv-sec=true + group "fedid" type="wg" priv-sec=true + group "fedidcg" type="cg" + group "fxtf" type="wg" priv-sec=true + group "geolocation" type="wg" priv-sec=true + group "gpuwg" + group "houdini" type="wg" priv-sec=true + group "html" type="wg" priv-sec=true + group "htmlwg" type="wg" + group "httpslocal" type="cg" + group "i18n" type="wg" + group "immersivewebcg" type="cg" + group "immersivewebwg" type="wg" + group "mediacapture" type="wg" priv-sec=true + group "mediawg" type="wg" priv-sec=true + group "patcg" type="cg" + group "patcg-id" type="cg" + group "ping" type="ig" + group "pngwg" type="wg" + group "privacycg" type="cg" + group "processcg" type="cg" + group "ricg" type="cg" priv-sec=true + group "sacg" type="cg" + group "secondscreencg" type="cg" + group "secondscreenwg" type="wg" + group "serviceworkers" type="wg" + group "solidcg" type="cg" + group "svg" type="wg" priv-sec=true + group "tag" type="tag" + group "texttracks" type="cg" priv-sec=true + group "uievents" type="wg" priv-sec=true + group "w3t" type=null + group "wasm" type="wg" + group "web-bluetooth-cg" type="cg" priv-sec=true + group "web-payments" type="wg" + group "webapps" type="wg" + group "webappsec" type="wg" priv-sec=true + group "webauthn" type="wg" + group "webediting" type="wg" + group "webfontswg" type="wg" priv-sec=true + group "webgpu" type="cg" + group "webml" type="cg" + group "webmlwg" type="wg" + group "webperf" type="wg" + group "webplatform" type="wg" priv-sec=true + group "webrtc" type="wg" + group "webspecs" type="wg" priv-sec=true + group "webtransport" type="wg" + group "webvr" type="wg" + group "wecg" type="cg" + group "wicg" type="cg" + group "wintercg" type="cg" + + /* + Every status in w3c needs a `group-types` child, + with attributes that are any of "ig" "wg" "cg" and/or "tag" + */ + + status "LS" "Living Standard" { + requires "ED" + group-types "wg" + } + status "ED" "Editor's Draft" { + requires "Level" "ED" + group-types "ig" "wg" "tag" + } + status "WD" "W3C Working Draft" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" + group-types "wg" + } + status "FPWD" "W3C First Public Working Draft" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" + group-types "wg" + } + status "LCWD" "W3C Last Call Working Draft" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" "Deadline" + group-types "wg" + } + status "CR" "W3C Candidate Recommendation Snapshot" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" + group-types "wg" + } + status "CRD" "W3C Candidate Recommendation Draft" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" "Deadline" + group-types "wg" + } + status "PR" "W3C Proposed Recommendation" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" "Deadline" + group-types "wg" + } + status "REC" "W3C Recommendation" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" + group-types "wg" + } + status "PER" "W3C Proposed Edited Recommendation" { + requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" "Deadline" + group-types "wg" + } + status "WG-NOTE" "W3C Group Note" { + requires "TR" "Issue Tracking" "Date" + group-types "wg" "tag" + } + status "IG-NOTE" "W3C Group Note" { + requires "TR" "Issue Tracking" "Date" + group-types "ig" + } + status "NOTE" "W3C Group Note" { + requires "TR" "Issue Tracking" "Date" + group-types "wg" "ig" "tag" + } + status "NOTE-ED" "Editor's Draft" { + requires "ED" + group-types "wg" "ig" "tag" + } + status "NOTE-WD" "W3C Working Draft" { + requires "ED" "TR" "Issue Tracking" "Date" + group-types "wg" "ig" "tag" + } + status "NOTE-FPWD" "W3C First Public Working Draft" { + requires "ED" "TR" "Issue Tracking" "Date" + group-types "wg" "ig" "tag" + } + status "DRY" "W3C Draft Registry" { + requires "TR" "Date" + group-types "wg" + } + status "CRYD" "W3C Candidate Registry Draft" { + requires "TR" "Date" + group-types "wg" + } + status "CRY" "W3C Candidate Registry" { + requires "TR" "Date" + group-types "wg" + } + status "RY" "W3C Registry" { + requires "TR" "Date" + group-types "wg" + } + status "MO" "W3C Member-only Draft" { + requires "TR" "Issue Tracking" "Date" + group-types "wg" + } + status "UD" "Unofficial Proposal Draft" { + requires "ED" + group-types "wg" "ig" "tag" "cg" + } + status "CG-DRAFT" "Draft Community Group Report" { + requires "Level" "ED" + group-types "cg" + } + status "CG-FINAL" "Final Community Group Report" { + requires "Level" "ED" "TR" "Issue Tracking" + group-types "cg" + } + status "DRAFT-FINDING" "Draft Finding" { + requires "ED" + group-types "wg" "tag" + } + status "FINDING" "Finding" { + requires "TR" + group-types "wg" "tag" + } +} + +org "tc39" { + group "tc39" + + status "STAGE0" "Stage 0: Strawman" + status "STAGE1" "Stage 1: Proposal" + status "STAGE2" "Stage 2: Draft" + status "STAGE3" "Stage 3: Candidate" + status "STAGE4" "Stage 4: Finished" +} + +org "iso" { + group "wg14" + group "wg21" { + requires "Audience" + } + + status "I" "Issue" + status "DR" "Defect Report" + status "D" "Draft Proposal" + status "P" "Published Proposal" + status "MEET" "Meeting Announcements" + status "RESP" "Records of Response" + status "MIN" "Minutes" + status "ER" "Editor's Report" + status "SD" "Standing Document" + status "PWI" "Preliminary Work Item" + status "NP" "New Proposal" + status "NWIP" "New Work Item Proposal" + status "WD" "Working Draft" + status "CD" "Committee Draft" + status "FCD" "Final Committee Draft" + status "DIS" "Draft International Standard" + status "FDIS" "Final Draft International Standard" + status "PRF" "Proof of a new International Standard" + status "IS" "International Standard" + status "TR" "Technical Report" + status "DTR" "Draft Technical Report" + status "TS" "Technical Specification" + status "DTS" "Draft Technical Specification" + status "PAS" "Publicly Available Specification" + status "TTA" "Technology Trends Assessment" + status "IWA" "International Workshop Agreement" + status "COR" "Technical Corrigendum" + status "GUIDE" "Guidance to Technical Committees" + status "NP-AMD" "New Proposal Amendment" + status "AWI-AMD" "Approved new Work Item Amendment" + status "WD-AMD" "Working Draft Amendment" + status "CD-AMD" "Committee Draft Amendment" + status "PD-AMD" "Proposed Draft Amendment" + status "FPD-AMD" "Final Proposed Draft Amendment" + status "D-AMD" "Draft Amendment" + status "FD-AMD" "Final Draft Amendment" + status "PRF-AMD" "Proof Amendment" + status "AMD" "Amendment" +} + +org "fido" { + group "fido" + + status "ED" "Editor's Draft" + status "WD" "Working Draft" { + requires "ED" + } + status "RD" "Review Draft" { + requires "ED" + } + status "ID" "Implementation Draft" { + requires "ED" + } + status "PS" "Proposed Standard" { + requires "ED" + } + status "FD" "Final Document" { + requires "ED" + } +} + +org "khronos" { + group "webgl" + + status "ED" "Editor's Draft" +} + +org "aom" { + group "aom" + + status "PD" "Pre-Draft" + status "WGD" "AOM Working Group Draft" + status "WGA" "AOM Working Group Approved Draft" + status "FD" "AOM Final Deliverable" +} diff --git a/bikeshed/spec-data/readonly/boilerplate/fedid/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/fedid/status-ED.include new file mode 100644 index 0000000000..35623425f8 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/fedid/status-ED.include @@ -0,0 +1,38 @@ +<p> + This is a public copy of the editors’ draft. + It is provided for discussion only and may change at any moment. + Its publication here does not imply endorsement of its contents by W3C. + Don’t cite this document other than as work in progress. + +<p> + <strong>Changes to this document may be tracked at + <a href="https://github.com/w3c-fedid/">https://github.com/w3c-fedid/</a>.</strong> + +<p> + The (<a href="https://lists.w3.org/Archives/Public/public-fedid-wg/">archived</a>) public mailing list + <a href="mailto:public-fedid-wg@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-fedid-wg@w3.org</a> + (see <a href="https://www.w3.org/Mail/Request">instructions</a>) + is preferred for discussion of this specification. + When sending e-mail, + please put the text “[SHORTNAME]” in the subject, + preferably like this: + “[<!---->[SHORTNAME]] <em>…summary of comment…</em>” + +<p> + This document was produced by the + <a href="https://www.w3.org/groups/wg/fedid">Federated Identity Working Group</a>. + +<p> + This document was produced by a group operating under + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. + W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> + made in connection with the deliverables of the group; + that page also includes instructions for disclosing a patent. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + +<p> + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. + +<p> + [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/fedid/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/fedid/status-FPWD.include new file mode 100644 index 0000000000..f7bc619b65 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/fedid/status-FPWD.include @@ -0,0 +1,51 @@ +<p> + <em>This section describes the status of this document at the time of + its publication. A list of + current W3C publications and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports + index at https://www.w3.org/TR/.</a></em> + +<p> + This document was published by the + <a href="https://www.w3.org/groups/wg/fedid/">Federated Identity Working Group</a> + as a First Public Working Draft using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. This document is intended to become a W3C Recommendation. + +<p> + The (<a href="https://lists.w3.org/Archives/Public/public-fedid-wg/">archived</a>) public mailing list + <a href="mailto:public-fedid-wg@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-fedid-wg@w3.org</a> + (see <a href="https://www.w3.org/Mail/Request">instructions</a>) + is preferred for discussion of this specification. + When sending e-mail, + please put the text “[SHORTNAME]” in the subject, + preferably like this: + “[<!---->[SHORTNAME]] <em>…summary of comment…</em>” + +<p> + This document is a <strong>First Public Working Draft</strong>. + +<p> + Publication as a First Public Working Draft does not imply endorsement by + <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or + obsoleted by other documents at any time. It is inappropriate to cite this + document as other than work in progress. + +<p> + This document was produced by the + <a href="https://www.w3.org/groups/wg/fedid/">Federated Identity Working Group</a>. + +<p> + This document was produced by a group operating under + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. + W3C maintains a <a href="https://www.w3.org/groups/wg/fedid/ipr/" rel=disclosure>public list of any patent disclosures</a> + made in connection with the deliverables of the group; + that page also includes instructions for disclosing a patent. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + +<p> + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. + +<p> + [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/fedidcg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/fedidcg/copyright.include index ba0da7356e..c9f5c8d139 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fedidcg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/fedidcg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/fed-id/">Federated Identity Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/fed-id/">Federated Identity Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/fedidcg/header.include b/bikeshed/spec-data/readonly/boilerplate/fedidcg/header.include index 8f7dbc2407..5d0ff2148e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fedidcg/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/fedidcg/header.include @@ -5,7 +5,7 @@ <title>[TITLE]</title> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> + </head> <body class="h-entry"> <div class="head"> <p data-fill-with="logo"></p> diff --git a/bikeshed/spec-data/readonly/boilerplate/fxtf/header.include b/bikeshed/spec-data/readonly/boilerplate/fxtf/header.include deleted file mode 100644 index e33a633611..0000000000 --- a/bikeshed/spec-data/readonly/boilerplate/fxtf/header.include +++ /dev/null @@ -1,36 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <title>[TITLE]</title> - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - <meta name="csswg-work-status" content="[WORKSTATUS]"> - <meta name="w3c-status" content="[STATUS]"> - <meta name="abstract" content="[ABSTRACTATTR]"> - <link href="../default.css" rel=stylesheet> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> - <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> -<body class="h-entry"> -<div class="head"> - <p data-fill-with="logo"></p> - <h1 id="title" class="p-name no-ref">[TITLE]</h1> - <p id='w3c-state'><a href='[W3C-STATUS-URL]'>[LONGSTATUS]</a>, - <time class="dt-updated" datetime="[ISODATE]">[DATE]</time></p> - <details open> - <summary>More details about this document</summary> - <div data-fill-with="spec-metadata"></div> - </details> - <div data-fill-with="warning"></div> - <p class='copyright' data-fill-with='copyright'></p> - <hr title="Separator for header"> -</div> - -<div class="p-summary" data-fill-with="abstract"></div> - -<h2 class='no-num no-toc no-ref' id='status'>Status of this document</h2> -<div data-fill-with="status"></div> -<div data-fill-with="at-risk"></div> - -<nav data-fill-with="table-of-contents" id="toc"></nav> -<main> diff --git a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-CR.include index e16aac002e..563a3ecf21 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-CR.include @@ -7,7 +7,7 @@ This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -24,21 +24,21 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> For changes since the last draft, diff --git a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-ED.include index 1d4f4ddfe5..104f6b5af5 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-ED.include @@ -18,15 +18,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-FPWD.include index 2d4b37dabc..33083e8117 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-FPWD.include @@ -22,18 +22,18 @@ href="https://www.w3.org/groups/wg/css">CSS Working Group</a>. <p>This document was produced by a group operating under the <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/"> + href="https://www.w3.org/policies/patent-policy/20200915/"> W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential + href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section + href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>.</p> + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>.</p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-LCWD.include b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-LCWD.include index b4475e67c9..6a557a5195 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-LCWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-LCWD.include @@ -21,16 +21,16 @@ the <a href="https://www.w3.org/Style/">Style Activity</a>). <p>This document was produced by a group operating under the <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/"> + href="https://www.w3.org/policies/patent-policy/20200915/"> W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential + href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section + href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> <p>This specification is a <strong>Last Call Working Draft</strong>. All @@ -39,6 +39,6 @@ mailing list</strong> as described above. The <strong>deadline for comments</strong> is <strong><time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time></strong>. - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-WD.include index c12fee20a9..2694024740 100644 --- a/bikeshed/spec-data/readonly/boilerplate/fxtf/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/fxtf/status-WD.include @@ -21,17 +21,17 @@ the <a href="https://www.w3.org/Style/">Style Activity</a>). <p>This document was produced by a group operating under the <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential + href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a - href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section + href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>.</p> + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>.</p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/geolocation/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/geolocation/status-ED.include index 0f7d7ba40c..707999761d 100644 --- a/bikeshed/spec-data/readonly/boilerplate/geolocation/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/geolocation/status-ED.include @@ -26,7 +26,7 @@ must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/gpuwg/status.include b/bikeshed/spec-data/readonly/boilerplate/gpuwg/status.include index 548e7c306e..48bb0ae528 100644 --- a/bikeshed/spec-data/readonly/boilerplate/gpuwg/status.include +++ b/bikeshed/spec-data/readonly/boilerplate/gpuwg/status.include @@ -18,14 +18,14 @@ <p include-if="FPWD,WD"> This document was published by the <a href="https://www.w3.org/groups/wg/gpu">GPU for the Web Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p include-if="CR"> This document was published by the <a href="https://www.w3.org/groups/wg/gpu">GPU for the Web Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> in order to ensure the opportunity for wide review. @@ -57,13 +57,13 @@ <p> - This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. - <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/gpu/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. + <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/gpu/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/houdini/status.include b/bikeshed/spec-data/readonly/boilerplate/houdini/status.include index f3c951a016..42cac85bad 100644 --- a/bikeshed/spec-data/readonly/boilerplate/houdini/status.include +++ b/bikeshed/spec-data/readonly/boilerplate/houdini/status.include @@ -13,18 +13,18 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a [LONGSTATUS] using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. A W3C Recommendation is a specification that, after extensive consensus-building, is endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p include-if="PR"> This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Proposed Recommendation</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Proposed Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -33,15 +33,15 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received - <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, + <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. This document is intended to become a W3C Recommendation; it will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> @@ -51,7 +51,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> @@ -64,7 +64,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Working Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -73,7 +73,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>First Public Working Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -93,17 +93,17 @@ <a href="mailto:www-style@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. <p>This document is governed by the - <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p exclude-if="ED">This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/css/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/html/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/html/status-CR.include index 72fd98f368..96aeb815cf 100644 --- a/bikeshed/spec-data/readonly/boilerplate/html/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/html/status-CR.include @@ -9,7 +9,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webplatform">Web Platform Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. Feedback and comments on this specification are welcome. Please use @@ -26,9 +26,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> This document was produced by a group operating under the @@ -45,7 +45,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/html/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/html/status-ED.include index 43abf6cecd..841a990aac 100644 --- a/bikeshed/spec-data/readonly/boilerplate/html/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/html/status-ED.include @@ -36,7 +36,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/html/status-LCWD.include b/bikeshed/spec-data/readonly/boilerplate/html/status-LCWD.include index 3c776c58c5..15b73b534e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/html/status-LCWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/html/status-LCWD.include @@ -9,7 +9,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webplatform">Web Platform Working Group</a> as a Last Call Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. Feedback and comments on this specification are welcome. Please use @@ -44,7 +44,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/html/status-PR.include b/bikeshed/spec-data/readonly/boilerplate/html/status-PR.include index 324a99e221..d9c9f31318 100644 --- a/bikeshed/spec-data/readonly/boilerplate/html/status-PR.include +++ b/bikeshed/spec-data/readonly/boilerplate/html/status-PR.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webplatform">Web Platform Working Group</a> as a Proposed Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. Feedback and comments on this specification are welcome. Please use @@ -47,7 +47,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/html/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/html/status-WD.include index 76ed5d942f..171dfc98c7 100644 --- a/bikeshed/spec-data/readonly/boilerplate/html/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/html/status-WD.include @@ -8,7 +8,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webplatform">Web Platform Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. Feedback and comments on this specification are welcome. Please use @@ -37,7 +37,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/htmlwg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/htmlwg/copyright.include new file mode 100644 index 0000000000..2e6a30187e --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/htmlwg/copyright.include @@ -0,0 +1,2 @@ +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] <a href="https://www.w3.org/">World Wide Web Consortium</a> and WHATWG (Apple, Google, Mozilla, Microsoft). <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, and <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> rules apply. This work is licensed under a <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. + diff --git a/bikeshed/spec-data/readonly/boilerplate/htmlwg/status.include b/bikeshed/spec-data/readonly/boilerplate/htmlwg/status.include new file mode 100644 index 0000000000..cfdbdf1bda --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/htmlwg/status.include @@ -0,0 +1,119 @@ +<p exclude-if="ED,UD"><em>This section describes the status of this document at the time of its publication. + A list of current W3C publications + and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> + +<p include-if="UD"> + This document an early unofficial draft. + It is intended to become a deliverable of the <a href="https://www.w3.org/groups/wg/htmlwg/">W3C HTML Working Group</a>, + but has not yet been taken up by that Working Group. + It is provided for discussion only and may change at any moment. + Its publication here does not imply endorsement of its contents by W3C. + Don’t cite this document other than as work in progress. + +<p include-if="ED"> + This is a public copy of the editors’ draft. + It is provided for discussion only and may change at any moment. + Its publication here does not imply endorsement of its contents by W3C. + Don’t cite this document other than as work in progress. + +<p include-if="REC"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg/">HTML Working Group</a> + as a [LONGSTATUS] using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + A W3C Recommendation is a specification that, after extensive consensus-building, is endorsed by + <abbr title="World Wide Web Consortium">W3C</abbr> and its Members, + and has commitments from Working Group members to <a + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. + +<p include-if="PR"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg">HTML Working Group</a> + as a <strong>Proposed Recommendation</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + Publication as a Proposed Recommendation + does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. + +<p include-if="CR"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg">HTML Working Group</a> + as a <strong>Candidate Recommendation Snapshot</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + Publication as a Candidate Recommendation + does not imply endorsement by + <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. + A Candidate Recommendation Snapshot has received + <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, + is intended to gather implementation experience, and has commitments from Working Group members to <a + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. + This document is intended to become a W3C Recommendation; + it will remain a Candidate Recommendation at least until + <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> + to gather additional feedback. + +<p include-if="CRD"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg">HTML Working Group</a> + as a <strong>Candidate Recommendation Draft</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + Publication as a Candidate Recommendation + does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> + and its Members. + A Candidate Recommendation Draft + integrates changes from the previous Candidate Recommendation + that the Working Group intends to include in a subsequent Candidate Recommendation Snapshot. + +<p include-if="WD"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg">HTML Working Group</a> + as a <strong>Working Draft</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + Publication as a Working Draft + does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. + +<p include-if="FPWD"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg">HTML Working Group</a> + as a <strong>First Public Working Draft</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + Publication as a First Public Working Draft + does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. + +<p include-if="NOTE" data-deliverer="115520"> + This document was published + by the <a href="https://www.w3.org/groups/wg/htmlwg">HTML Working Group</a> + as a Group Note + using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. + Group Notes are not endorsed by W3C nor its Members. + +<p include-if="WD, FPWD, CRD"> + This is a draft document + and may be updated, replaced + or obsoleted by other documents at any time. + It is inappropriate to cite this document as other than work in progress. + +<p exclude-if="UD">This document is governed by the + <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. + +<p exclude-if="ED,UD,NOTE">This document was produced by a group operating under the + <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. + W3C maintains a + <a rel="disclosure" href="https://www.w3.org/groups/wg/htmlwg/ipr">public list of any patent disclosures</a> + made in connection with the deliverables of the group; + that page also includes instructions for disclosing a patent. + An individual who has actual knowledge of a patent which the individual believes + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with + <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + +<p include-if="NOTE">The <a href="https://www.w3.org/policies/patent-policy/20200915/">15 September 2020 W3C Patent Policy</a> + does not carry any licensing requirements or commitments on this document. + +<p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/httpslocal/copyright.include b/bikeshed/spec-data/readonly/boilerplate/httpslocal/copyright.include index 52f2621c76..8c60ea52b8 100644 --- a/bikeshed/spec-data/readonly/boilerplate/httpslocal/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/httpslocal/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/httpslocal/">HTTPS in Local Network Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/httpslocal/">HTTPS in Local Network Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/i18n/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/i18n/status-CR.include index f2ba53acc0..71ad9468b1 100644 --- a/bikeshed/spec-data/readonly/boilerplate/i18n/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/i18n/status-CR.include @@ -6,7 +6,7 @@ <p> This document was produced by the <a href="https://www.w3.org/groups/wg/i18n-core">Internationalization Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> @@ -23,9 +23,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/">W3C Patent Policy</a>. @@ -35,7 +35,7 @@ An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. -<p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. </p> +<p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> For changes since the last draft, diff --git a/bikeshed/spec-data/readonly/boilerplate/i18n/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/i18n/status-ED.include index 78e42e99c8..3a84df2e70 100644 --- a/bikeshed/spec-data/readonly/boilerplate/i18n/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/i18n/status-ED.include @@ -21,7 +21,7 @@ must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/i18n/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/i18n/status-FPWD.include index f0ad2553d0..ec30d30f75 100644 --- a/bikeshed/spec-data/readonly/boilerplate/i18n/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/i18n/status-FPWD.include @@ -30,6 +30,6 @@ href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/i18n/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/i18n/status-WD.include index 937fa14ffc..8132c0c73e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/i18n/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/i18n/status-WD.include @@ -28,6 +28,6 @@ href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CR.include index 70350ae44e..1bf32cec45 100644 --- a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CR.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/immersive-web">Immersive Web Working Group</a> as a Candidate Recommendation Snapshot using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. </p> @@ -18,8 +18,8 @@ <p> Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. - A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, is intended to - gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to + gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> The entrance criteria for this document to enter the Proposed Recommendation stage @@ -30,16 +30,16 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/immersive-web/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> For changes since the last draft, diff --git a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CRD.include b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CRD.include index 65dca1845f..d4986dcd6c 100644 --- a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CRD.include +++ b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-CRD.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/immersive-web">Immersive Web Working Group</a> as a Candidate Recommendation Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -30,16 +30,16 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/immersive-web/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> For changes since the last draft, diff --git a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-ED.include index d82ac2b18e..24c5ae1e27 100644 --- a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-ED.include @@ -22,16 +22,16 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/immersive-web/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-FPWD.include index d10025d04d..e4b8e59296 100644 --- a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-FPWD.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/immersive-web">Immersive Web Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -24,16 +24,16 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/immersive-web/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-WD.include index 1cf270f365..e4295f26fc 100644 --- a/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/immersivewebwg/status-WD.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/immersive-web">Immersive Web Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -20,16 +20,16 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/immersive-web/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-CR.include index d5ae265ec0..14682c7c6b 100644 --- a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-CR.include @@ -9,7 +9,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -26,9 +26,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> @@ -50,7 +50,7 @@ </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-ED.include index 4a450be90b..5b6bf10fd6 100644 --- a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-ED.include @@ -28,7 +28,7 @@ </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-FPWD.include index 5034b0211f..c3db60640e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-FPWD.include @@ -10,7 +10,7 @@ This document was published by the the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -43,7 +43,7 @@ </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-WD.include index 16b57464b4..2f61d4e5fd 100644 --- a/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/mediacapture/status-WD.include @@ -10,7 +10,7 @@ This document was published by the the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -39,7 +39,7 @@ </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/mediawg/status.include b/bikeshed/spec-data/readonly/boilerplate/mediawg/status.include index 9b29d6c61d..f48fbfb208 100644 --- a/bikeshed/spec-data/readonly/boilerplate/mediawg/status.include +++ b/bikeshed/spec-data/readonly/boilerplate/mediawg/status.include @@ -23,20 +23,20 @@ <p include-if="FPWD,WD"> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p include-if="NOTE-FPWD,NOTE-WD"> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Group Draft Note using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Note + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Note track</a>. </p> <p include-if="CR"> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> in order to ensure the opportunity for wide review. @@ -44,24 +44,24 @@ <p include-if="NOTE"> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Group Note using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Note + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Note track</a>. </p> <p include-if="DRY"> - This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Draft Registry using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Registry track</a>. + This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Draft Registry using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Registry track</a>. </p> <p include-if="CRY"> - This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Candidate Registry Snapshot using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Registry track</a>. + This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Candidate Registry Snapshot using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Registry track</a>. </p> <p include-if="CRYD"> - This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Candidate Registry Draft using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Registry track</a>. + This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Candidate Registry Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Registry track</a>. </p> <p include-if="RY"> - This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Registry using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Registry track</a>. + This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as a Registry using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Registry track</a>. </p> @@ -89,7 +89,7 @@ Publication as a Candidate Registry Snapshot does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Registry Snapshot has received - <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide + <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>. </p> @@ -111,9 +111,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p include-if="NOTE-FPWD,NOTE-WD"> @@ -134,17 +134,17 @@ <p exclude-if="NOTE,NOTE-FPWD,NOTE-WD,NOTE-ED"> - This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. - <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. + <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p include-if="NOTE,NOTE-FPWD,NOTE-WD,NOTE-ED,DRY,CRY,CRYD,RY" data-deliverer="115198"> - The <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. + The <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/patcg-id/copyright.include b/bikeshed/spec-data/readonly/boilerplate/patcg-id/copyright.include new file mode 100644 index 0000000000..516367d94a --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/patcg-id/copyright.include @@ -0,0 +1,5 @@ +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to “[TITLE]”. + +This document is licensed under the <a href="https://www.w3.org/copyright/software-license/">W3C Software License</a>. + +Contributions to this document are made under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. diff --git a/bikeshed/spec-data/readonly/boilerplate/patcg-id/status.include b/bikeshed/spec-data/readonly/boilerplate/patcg-id/status.include new file mode 100644 index 0000000000..8a1fd7b2bd --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/patcg-id/status.include @@ -0,0 +1,5 @@ +[STATUSTEXT] + +<p>This document is an individual draft proposal. It has not been adopted by the <a href="https://patcg.github.io/">Private Advertising Technology Community Group</a>, but it may be discussed in that CG's meetings. +Please note that under the <a href="http://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a> there is a limited opt-out and other conditions apply. +Learn more about <a href="http://www.w3.org/community/">W3C Community and Business Groups</a>.</p> diff --git a/bikeshed/spec-data/readonly/boilerplate/privacycg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/privacycg/copyright.include index 89c7985bc4..7419deb4fd 100644 --- a/bikeshed/spec-data/readonly/boilerplate/privacycg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/privacycg/copyright.include @@ -1,4 +1,4 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to “[TITLE]”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to “[TITLE]”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. This document is licensed under the [LICENSE]. diff --git a/bikeshed/spec-data/readonly/boilerplate/privacycg/header.include b/bikeshed/spec-data/readonly/boilerplate/privacycg/header.include index 56f04e47a4..799e2a9b63 100644 --- a/bikeshed/spec-data/readonly/boilerplate/privacycg/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/privacycg/header.include @@ -4,7 +4,7 @@ <title>[TITLE]</title> <meta name="viewport" content="width=device-width"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -<body> + <body> <header> <p data-fill-with="logo"></p> <h1 id=title class=no-ref>[TITLE]</h1> diff --git a/bikeshed/spec-data/readonly/boilerplate/sacg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/sacg/copyright.include index 6798f9c43e..18ae612d70 100644 --- a/bikeshed/spec-data/readonly/boilerplate/sacg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/sacg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="http://www.w3.org/community/speech-api/">Speech API Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="http://www.w3.org/community/speech-api/">Speech API Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/secondscreencg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/secondscreencg/copyright.include index 994be36938..4189619e3a 100644 --- a/bikeshed/spec-data/readonly/boilerplate/secondscreencg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/secondscreencg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/webscreens/">Second Screen Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/webscreens/">Second Screen Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-ED.include index a9131979ac..e58e688d34 100644 --- a/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-ED.include @@ -13,11 +13,11 @@ <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-FPWD.include index 8dc38dfd56..a33ba74979 100644 --- a/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-FPWD.include @@ -3,7 +3,7 @@ </p> <p> This document was published by the <a href="https://www.w3.org/groups/wg/secondscreen">Second Screen Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p> @@ -17,11 +17,11 @@ <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-WD.include index df7ac9ae0b..8f89d8c8d2 100644 --- a/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/secondscreenwg/status-WD.include @@ -3,7 +3,7 @@ </p> <p> This document was published by the <a href="https://www.w3.org/groups/wg/secondscreen">Second Screen Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p> @@ -14,11 +14,11 @@ <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a id="sotd_patent" property="w3p:patentRules" href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-CR.include index 8601428694..b7255ae6ec 100644 --- a/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-CR.include @@ -5,7 +5,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/service-workers">Service Workers Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -21,12 +21,12 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/101220/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-ED.include index 1dcebd6437..4da9b6f6f2 100644 --- a/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-ED.include @@ -22,5 +22,5 @@ <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/101220/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-WD.include index 2dc6e46b7f..f5b333e71c 100644 --- a/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/serviceworkers/status-WD.include @@ -5,7 +5,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/service-workers">Service Workers Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -22,5 +22,5 @@ <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/101220/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/solidcg/copyright-CG-DRAFT.include b/bikeshed/spec-data/readonly/boilerplate/solidcg/copyright-CG-DRAFT.include new file mode 100644 index 0000000000..786cd27198 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/solidcg/copyright-CG-DRAFT.include @@ -0,0 +1,6 @@ +<p> + Copyright © [YEAR] the Contributors to the [TITLE], + published by the <a href="https://www.w3.org/community/solid/">Solid Community Group</a> + under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. +</p> diff --git a/bikeshed/spec-data/readonly/boilerplate/solidcg/copyright-CG-FINAL.include b/bikeshed/spec-data/readonly/boilerplate/solidcg/copyright-CG-FINAL.include new file mode 100644 index 0000000000..0c152cc5c6 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/solidcg/copyright-CG-FINAL.include @@ -0,0 +1,6 @@ +<p> + Copyright © [YEAR] the Contributors to the [TITLE], + published by the <a href="https://www.w3.org/community/solid/">Solid Community Group</a> + under the <a href="https://www.w3.org/community/about/agreements/final/">W3C Community Final Specification Agreement (FSA)</a>. + A human-readable <a href="https://www.w3.org/community/about/agreements/fsa-deed/">summary</a> is available. +</p> diff --git a/bikeshed/spec-data/readonly/boilerplate/solidcg/status-CG-DRAFT.include b/bikeshed/spec-data/readonly/boilerplate/solidcg/status-CG-DRAFT.include new file mode 100644 index 0000000000..2b07dc5c46 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/solidcg/status-CG-DRAFT.include @@ -0,0 +1,11 @@ +<p> + This report was published by the <a href="https://www.w3.org/community/solid/">Solid Community Group</a>. + It is not a W3C Standard nor is it on the W3C Standards Track. + Please note that under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a> + there is a limited opt-out and other conditions apply. + Learn more about <a href="https://www.w3.org/community/">W3C Community and Business Groups</a>. +</p> + +<p> + [STATUSTEXT] +</p> diff --git a/bikeshed/spec-data/readonly/boilerplate/solidcg/status-CG-FINAL.include b/bikeshed/spec-data/readonly/boilerplate/solidcg/status-CG-FINAL.include new file mode 100644 index 0000000000..8466828b54 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/solidcg/status-CG-FINAL.include @@ -0,0 +1,11 @@ +<p> + This report was published by the <a href="https://www.w3.org/community/solid/">Solid Community Group</a>. + It is not a W3C Standard nor is it on the W3C Standards Track. + Please note that under the <a href="https://www.w3.org/community/about/agreements/final/">W3C Community Final Specification Agreement (FSA)</a> + other conditions apply. + Learn more about <a href="https://www.w3.org/community/">W3C Community and Business Groups</a>. +</p> + +<p> + [STATUSTEXT] +</p> diff --git a/bikeshed/spec-data/readonly/boilerplate/stylesheet.include b/bikeshed/spec-data/readonly/boilerplate/stylesheet.include index 251c87626f..58bccaa3a0 100644 --- a/bikeshed/spec-data/readonly/boilerplate/stylesheet.include +++ b/bikeshed/spec-data/readonly/boilerplate/stylesheet.include @@ -1233,14 +1233,15 @@ Possible extra rowspan handling grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; diff --git a/bikeshed/spec-data/readonly/boilerplate/tag/header-WG-NOTE.include b/bikeshed/spec-data/readonly/boilerplate/tag/header-WG-NOTE.include index 034d006447..5eb6093aa0 100644 --- a/bikeshed/spec-data/readonly/boilerplate/tag/header-WG-NOTE.include +++ b/bikeshed/spec-data/readonly/boilerplate/tag/header-WG-NOTE.include @@ -6,7 +6,7 @@ <title>[TITLE]</title> <meta name="w3c-status" content="[STATUS]"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> </head> <body class="h-entry"> <div class="head"> diff --git a/bikeshed/spec-data/readonly/boilerplate/tag/status-WG-NOTE.include b/bikeshed/spec-data/readonly/boilerplate/tag/status-WG-NOTE.include index 06ee8d8b99..bb9d065611 100644 --- a/bikeshed/spec-data/readonly/boilerplate/tag/status-WG-NOTE.include +++ b/bikeshed/spec-data/readonly/boilerplate/tag/status-WG-NOTE.include @@ -30,6 +30,6 @@ <p> This document is governed by the <a id="w3c_process_revision" - href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process + href="https://www.w3.org/policies/process/20231103/">12 June 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/test/header.include b/bikeshed/spec-data/readonly/boilerplate/test/header.include index a636e4ab80..cea0564386 100644 --- a/bikeshed/spec-data/readonly/boilerplate/test/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/test/header.include @@ -9,7 +9,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 id="title" class="p-name no-ref">[TITLE]</h1> - <p id='w3c-state'><a href='[W3C-STATUS-URL]'>[LONGSTATUS]</a>, + <p>[LONGSTATUS], <time class="dt-updated" datetime="[ISODATE]">[DATE]</time></p> <div data-fill-with="spec-metadata"></div> <div data-fill-with="warning"></div> diff --git a/bikeshed/spec-data/readonly/boilerplate/texttracks/copyright-CG-DRAFT.include b/bikeshed/spec-data/readonly/boilerplate/texttracks/copyright-CG-DRAFT.include index 9ea350cbc7..82b1b3c13b 100644 --- a/bikeshed/spec-data/readonly/boilerplate/texttracks/copyright-CG-DRAFT.include +++ b/bikeshed/spec-data/readonly/boilerplate/texttracks/copyright-CG-DRAFT.include @@ -1,4 +1,4 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> &copy; +<a href="https://www.w3.org/policies/#copyright">Copyright</a> &copy; 2011-[YEAR] the Contributors to the WebVTT: The Web Video Text Tracks Format Specification, published by the <a href="http://www.w3.org/community/texttracks/">Web Media Text Tracks Community Group</a> under the diff --git a/bikeshed/spec-data/readonly/boilerplate/texttracks/header-CG-DRAFT.include b/bikeshed/spec-data/readonly/boilerplate/texttracks/header-CG-DRAFT.include index f1e8c71d77..3378b4010e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/texttracks/header-CG-DRAFT.include +++ b/bikeshed/spec-data/readonly/boilerplate/texttracks/header-CG-DRAFT.include @@ -6,7 +6,7 @@ <title>[TITLE]</title> <link rel="icon" href="logo/64x64.png" type="image/png"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> + </head> <body class="h-entry"> <div class="head"> <p data-fill-with="logo"></p> diff --git a/bikeshed/spec-data/readonly/boilerplate/texttracks/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/texttracks/status-WD.include index 24bbb3e9d1..3606e91dbd 100644 --- a/bikeshed/spec-data/readonly/boilerplate/texttracks/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/texttracks/status-WD.include @@ -16,7 +16,7 @@ evolve. <p>This document was published by the <a href="https://www.w3.org/AudioVideo/TT/"><abbr title="World Wide Web Consortium">W3C</abbr> Timed Text Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. If you wish to make comments regarding this document, please send them to <a @@ -42,7 +42,7 @@ the start of your email's subject. All comments are welcome. must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/uievents/header.include b/bikeshed/spec-data/readonly/boilerplate/uievents/header.include deleted file mode 100644 index 53510a99c8..0000000000 --- a/bikeshed/spec-data/readonly/boilerplate/uievents/header.include +++ /dev/null @@ -1,37 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <title>[TITLE] [LEVEL]</title> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <meta name="w3c-status" content="[STATUS]"> - <link href="../default.css" rel=stylesheet> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> - <link href="styles.css" rel=stylesheet> - <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> -<body class="h-entry"> -<div class="head"> - <header> - <p data-fill-with="logo"></p> - <h1 id="title" class="p-name no-ref">[TITLE] [LEVEL]</h1> - <p id='w3c-state'><a href='[W3C-STATUS-URL]'>[LONGSTATUS]</a>, - <time class="dt-updated" datetime="[ISODATE]">[DATE]</time></p> - </header> - <details open> - <summary>More details about this document</summary> - <div data-fill-with="spec-metadata"></div> - </details> - <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"></p> - <hr title="Separator for header"> -</div> - -<div class="p-summary" data-fill-with="abstract"></div> - -<h2 class="no-num no-toc no-ref" id="status">Status of this document</h2> -<div data-fill-with="status"></div> -<div data-fill-with="at-risk"></div> - -<nav data-fill-with="table-of-contents" id="toc"></nav> -<main> diff --git a/bikeshed/spec-data/readonly/boilerplate/uievents/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/uievents/status-WD.include index 68a44522d0..062cf6d407 100644 --- a/bikeshed/spec-data/readonly/boilerplate/uievents/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/uievents/status-WD.include @@ -12,7 +12,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Feedback and comments on this specification are welcome. Please use @@ -41,7 +41,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/w3c/copyright.include b/bikeshed/spec-data/readonly/boilerplate/w3c/copyright.include index 8ccfcd0c9a..c2d8cff18a 100644 --- a/bikeshed/spec-data/readonly/boilerplate/w3c/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/w3c/copyright.include @@ -1 +1 @@ -<a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a rel="license" href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document">permissive document license</a> rules apply. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a rel="license" href="https://www.w3.org/copyright/software-license/" title="W3C Software and Document License">permissive document license</a> rules apply. diff --git a/bikeshed/spec-data/readonly/boilerplate/w3c/defaults.include b/bikeshed/spec-data/readonly/boilerplate/w3c/defaults.include new file mode 100644 index 0000000000..7696212e0c --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/w3c/defaults.include @@ -0,0 +1,3 @@ +{ + "Favicon": "https://www.w3.org/2008/site/images/favicon.ico" +} diff --git a/bikeshed/spec-data/readonly/boilerplate/w3c/footer.include b/bikeshed/spec-data/readonly/boilerplate/w3c/footer.include index bc0ad5d9b3..2d64e6ae5d 100644 --- a/bikeshed/spec-data/readonly/boilerplate/w3c/footer.include +++ b/bikeshed/spec-data/readonly/boilerplate/w3c/footer.include @@ -36,6 +36,8 @@ may be documented in “Tests” blocks like this one. Any such block is non-normative."></wpt> +<section include-if="w3c/ED, w3c/WD, w3c/FPWD, w3c/LCWD, w3c/CR, w3c/CRD, w3c/PR, w3c/REC, w3c/PER, text macro: ALGO-CONFORMANCE"> + <h3 id="w3c-conformant-algorithms" class="no-ref no-num">Conformant Algorithms</h3> <p>Requirements phrased in the imperative as part of algorithms @@ -52,6 +54,8 @@ are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. +</section> + </div> </body> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> diff --git a/bikeshed/spec-data/readonly/boilerplate/w3c/header.include b/bikeshed/spec-data/readonly/boilerplate/w3c/header.include index 679f107c7f..c3de8e6fac 100644 --- a/bikeshed/spec-data/readonly/boilerplate/w3c/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/w3c/header.include @@ -6,7 +6,6 @@ <title>[TITLE]</title> <meta name="w3c-status" content="[STATUS]"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> </head> <body class="h-entry"> <div class="head"> diff --git a/bikeshed/spec-data/readonly/boilerplate/svg/header.include b/bikeshed/spec-data/readonly/boilerplate/w3t/header.include similarity index 77% rename from bikeshed/spec-data/readonly/boilerplate/svg/header.include rename to bikeshed/spec-data/readonly/boilerplate/w3t/header.include index 9a56838ea5..022238e8ae 100644 --- a/bikeshed/spec-data/readonly/boilerplate/svg/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/w3t/header.include @@ -4,15 +4,14 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>[TITLE]</title> - <link href="../default.css" rel=stylesheet> + <meta name="w3c-status" content="[STATUS]"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> </head> <body class="h-entry"> <div class="head"> <p data-fill-with="logo"></p> <h1 id="title" class="p-name no-ref">[TITLE]</h1> - <p id='w3c-state'><a href='[W3C-STATUS-URL]'>[LONGSTATUS]</a>, - <time class="dt-updated" datetime="[ISODATE]">[DATE]</time></p> + <p id='w3c-state'><time class="dt-updated" datetime="[ISODATE]">[DATE]</time></p> <details open> <summary>More details about this document</summary> <div data-fill-with="spec-metadata"></div> @@ -24,7 +23,7 @@ <div class="p-summary" data-fill-with="abstract"></div> -<h2 class='no-num no-toc no-ref' id='status'>Status of this document</h2> +<h2 class='no-num no-toc no-ref' id='sotd'>Status of this document</h2> <div data-fill-with="status"></div> <div data-fill-with="at-risk"></div> diff --git a/bikeshed/spec-data/readonly/boilerplate/wasm/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/wasm/status-CR.include new file mode 100644 index 0000000000..882c3d0767 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/wasm/status-CR.include @@ -0,0 +1,30 @@ + <p><em>This section describes the status of this document at the time of + its publication. A list of + current W3C publications and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports + index at https://www.w3.org/TR/.</a></em> + + <p>This document was published by the <a href="https://www.w3.org/groups/wg/wasm/">WebAssembly Working Group</a> as a Candidate Recommendation Snapshot using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>.</p> + + <!-- There are a few parts missing according to https://www.w3.org/pubrules/doc/rules/?profile=CR --> + <!-- Missing: It must include a minimal duration (before which the group will not request the next transition). The duration must be expressed as an estimated date. Doesn't make sense? --> + <!-- Missing: It must identify any "features at risk" declared by the Working Group (as defined in section 6.4 of the W3C Process Document). --> + + + <p>Publication as a Candidate Recommendation does not imply endorsement by W3C and its Members. A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations.</p> + + <p> + <a href="https://github.com/WebAssembly/spec/issues">GitHub Issues</a> + are preferred for discussion of this specification. + All issues and comments are + <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&amp;q=is%3Aissue++">archived</a>. + </p> + + <!-- Missing: It must include a link to changes since the previous draft (e.g., a list of changes or a diff document or both; see the online HTML diff tool). --> + + <p>This document is maintained and updated at any time. Some parts of this document are work in progress.</p> + + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/wasm/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>.</p> + + <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/wasm/status-CRD.include b/bikeshed/spec-data/readonly/boilerplate/wasm/status-CRD.include new file mode 100644 index 0000000000..e36a3f40a8 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/wasm/status-CRD.include @@ -0,0 +1,30 @@ + <p><em>This section describes the status of this document at the time of + its publication. A list of + current W3C publications and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports + index at https://www.w3.org/TR/.</a></em> + + <p>This document was published by the <a href="https://www.w3.org/groups/wg/wasm/">WebAssembly Working Group</a> as a Candidate Recommendation Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>.</p> + + <!-- There are a few parts missing according to https://www.w3.org/pubrules/doc/rules/?profile=CRD --> + <!-- Missing: It must include a minimal duration (before which the group will not request the next transition). The duration must be expressed as an estimated date. Doesn't make sense? --> + <!-- Missing: It must identify any "features at risk" declared by the Working Group (as defined in section 6.4 of the W3C Process Document). --> + + + <p>Publication as a Candidate Recommendation does not imply endorsement by W3C and its Members. A Candidate Recommendation Draft integrates changes from the previous Candidate Recommendation that the Working Group intends to include in a subsequent Candidate Recommendation Snapshot.</p> + + <p> + <a href="https://github.com/WebAssembly/spec/issues">GitHub Issues</a> + are preferred for discussion of this specification. + All issues and comments are + <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&amp;q=is%3Aissue++">archived</a>. + </p> + + <!-- Missing: It must include a link to changes since the previous draft (e.g., a list of changes or a diff document or both; see the online HTML diff tool). --> + + <p>This document is maintained and updated at any time. Some parts of this document are work in progress.</p> + + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/wasm/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>.</p> + + <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/wasm/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/wasm/status-ED.include index 47e9ec4ff1..3ad7b6d6fd 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wasm/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/wasm/status-ED.include @@ -8,7 +8,7 @@ <a href="https://github.com/WebAssembly/spec/issues">GitHub Issues</a> are preferred for discussion of this specification. All issues and comments are - <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&q=is%3Aissue++">archived</a>. + <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&amp;q=is%3Aissue++">archived</a>. </p> <p> This document was produced by the @@ -25,7 +25,7 @@ must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/wasm/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/wasm/status-FPWD.include index 3752599c91..6d620c881e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wasm/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/wasm/status-FPWD.include @@ -16,7 +16,7 @@ <a href="https://github.com/WebAssembly/spec/issues">GitHub Issues</a> are preferred for discussion of this specification. All issues and comments are - <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&q=is%3Aissue++">archived</a>. + <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&amp;q=is%3Aissue++">archived</a>. </p> <p> This document was produced by the diff --git a/bikeshed/spec-data/readonly/boilerplate/wasm/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/wasm/status-WD.include index 51a345bbc6..3941a25a50 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wasm/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/wasm/status-WD.include @@ -16,30 +16,10 @@ <a href="https://github.com/WebAssembly/spec/issues">GitHub Issues</a> are preferred for discussion of this specification. All issues and comments are - <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&q=is%3Aissue++">archived</a>. - </p> - <p> - This document was produced by the - <a href="https://www.w3.org/groups/wg/wasm">WebAssembly Working Group</a>. - </p> - <p> - This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/"> - W3C Patent Policy</a>. - W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/101196/status" - rel="disclosure">public list of any patent disclosures</a> made in - connection with the deliverables of the group; that page also includes - instructions for disclosing a patent. An individual who has actual - knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential"> - Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure"> - section 6 of the W3C Patent Policy</a>. - </p> - - <p>This document is governed by the - <a href="https://www.w3.org/2019/Process-20190301/" - id="w3c_process_revision">1 March 2019 W3C Process Document</a>. + <a href="https://github.com/WebAssembly/spec/issues?utf8=%E2%9C%93&amp;q=is%3Aissue++">archived</a>. </p> + <p>This document was published by the <a href="https://www.w3.org/groups/wg/wasm/">WebAssembly Working Group</a> as a Working Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>.</p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/wasm/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>.</p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/web-bluetooth-cg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/web-bluetooth-cg/copyright.include index 19d285c4c8..a7bdd71bc7 100644 --- a/bikeshed/spec-data/readonly/boilerplate/web-bluetooth-cg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/web-bluetooth-cg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/web-payments/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/web-payments/status-FPWD.include index 027a7e54f0..bbbf5ad4e9 100644 --- a/bikeshed/spec-data/readonly/boilerplate/web-payments/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/web-payments/status-FPWD.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/payments">Web Payments Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -33,7 +33,7 @@ 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webapps/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webapps/status-ED.include index 5febacc903..f946e29964 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webapps/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webapps/status-ED.include @@ -26,7 +26,7 @@ this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webapps/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webapps/status-WD.include index 034a88af5b..19d81ec832 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webapps/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webapps/status-WD.include @@ -12,7 +12,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webapps">Web Applications Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Feedback and comments on this specification are welcome. Please use @@ -26,7 +26,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CR.include index 5100d760b4..7b5cfc8526 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CR.include @@ -9,7 +9,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -28,9 +28,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p> The entrance criteria for this document to enter the Proposed Recommendation stage @@ -41,15 +41,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CRD.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CRD.include index c0b4247a01..5338070f11 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CRD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-CRD.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Candidate Recommendation Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -44,15 +44,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-ED.include index b53d09ccea..4054ef6082 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-ED.include @@ -24,15 +24,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-FPWD.include index 4f97b63869..53717ca71e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-FPWD.include @@ -9,7 +9,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. <p> @@ -37,15 +37,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-LCWD.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-LCWD.include index 2ec6369cb1..25b017974c 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-LCWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-LCWD.include @@ -9,7 +9,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. <p> @@ -34,12 +34,12 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> This specification is a <strong>Last Call Working Draft</strong>. All @@ -49,7 +49,7 @@ comments</strong> is <strong><time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time></strong>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-PR.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-PR.include index 42f0bc85d5..2ac7a9c0f5 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-PR.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-PR.include @@ -9,7 +9,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Proposed Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. The W3C Membership and other interested parties are invited to review the document and send comments to <a href="mailto:public-webappsec@w3.org?Subject=%5B[SHORTNAME]%5D%20PUT%20SUBJECT%20HERE">public-webappsec@w3.org</a> @@ -27,15 +27,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-WD.include index 6a4743dec1..c5e99b07da 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webappsec/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webappsec/status-WD.include @@ -9,7 +9,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. <p> @@ -34,15 +34,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webauthn/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/webauthn/status-CR.include index 28ecd0fb79..a43df80223 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webauthn/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/webauthn/status-CR.include @@ -19,7 +19,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webauthn">Web Authentication Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. Feedback and comments on this specification are welcome. Please use @@ -31,9 +31,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> This document was produced by a group operating under the @@ -50,7 +50,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webauthn/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webauthn/status-ED.include index e4c6c1f2c2..f8583866ab 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webauthn/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webauthn/status-ED.include @@ -36,7 +36,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webauthn/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webauthn/status-WD.include index 38fa91c956..d2a6df23e6 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webauthn/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webauthn/status-WD.include @@ -9,7 +9,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webauthn">Web Authentication Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. Feedback and comments on this specification are welcome. Please use @@ -38,7 +38,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webediting/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webediting/status-ED.include index 8bba0fd447..5b03d7f316 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webediting/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webediting/status-ED.include @@ -26,7 +26,7 @@ this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webediting/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webediting/status-WD.include index 1e860b6ab2..28a920b22d 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webediting/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webediting/status-WD.include @@ -12,7 +12,7 @@ <p> This document was published by the <a href="https://w3c.github.io/editing/">Web Editing Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Feedback and comments on this specification are welcome. Please use @@ -26,7 +26,7 @@ <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> - This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <p>This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webfontswg/header-ED.include b/bikeshed/spec-data/readonly/boilerplate/webfontswg/header-ED.include index 085b4693e8..03df043528 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webfontswg/header-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webfontswg/header-ED.include @@ -6,7 +6,7 @@ <title>[TITLE]</title> <meta name="w3c-status" content="[STATUS]"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> + </head> <body class="h-entry"> <div class="head"> <p data-fill-with="logo"></p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-CR.include index 6f1a903725..a6cba8b8ea 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-CR.include @@ -7,7 +7,7 @@ This document was produced by the <a href="https://www.w3.org/groups/wg/webfonts">Web Fonts Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -19,24 +19,24 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p> A <a href="">preliminary implementation report</a> is available. <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/44556/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> For changes since the last draft, diff --git a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-ED.include index c7f34d383b..19909be2f8 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-ED.include @@ -14,17 +14,17 @@ </p> <p> - This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + This document was produced by a group operating under + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webfonts/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-FPWD.include index f74d3e8220..8d25ec7be7 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-FPWD.include @@ -9,7 +9,7 @@ <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webfonts">Web Fonts Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -29,17 +29,17 @@ </p> <p> - This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + This document was produced by a group operating under + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webfonts/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-WD.include index 7c6da63fbb..e9b000204a 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webfontswg/status-WD.include @@ -9,7 +9,7 @@ <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webfonts">Web Fonts Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -25,17 +25,17 @@ </p> <p> - This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + This document was produced by a group operating under + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webfonts/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webgpu/copyright.include b/bikeshed/spec-data/readonly/boilerplate/webgpu/copyright.include index 5532f52b84..8eb39d4b4b 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webgpu/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/webgpu/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="http://www.w3.org/community/gpu/">GPU for the Web Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="http://www.w3.org/community/gpu/">GPU for the Web Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/webml/copyright.include b/bikeshed/spec-data/readonly/boilerplate/webml/copyright.include index 70f2bf7843..a9e1f10e09 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webml/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/webml/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/webmachinelearning/">Web Machine Learning Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/webmachinelearning/">Web Machine Learning Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-CR.include new file mode 100644 index 0000000000..986f02e8f5 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-CR.include @@ -0,0 +1,38 @@ +<p><em>This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index</a> at https://www.w3.org/TR/.</em></p> +<p>This document was published + by the <a href="https://www.w3.org/groups/wg/webmachinelearning">Web Machine Learning Working Group</a> + as a <strong>Candidate Recommendation Snapshot</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + <p>Publication as a Candidate Recommendation does not imply endorsement by W3C and its Members. A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations.</p> + <p>This document is intended to become a W3C Recommendation; + it will remain a Candidate Recommendation at least until + <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> + to gather additional feedback. + + <p> + The Web Machine Learning Working Group maintains <a href="[REPOSITORYURL]/issues">a list of all bug + reports that the group has not yet addressed</a>. + Pull requests with proposed specification text for outstanding issues are strongly encouraged. + </p> + +<p> + This document was produced by a group operating under the + <a href="https://www.w3.org/policies/patent-policy/"> + <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + <abbr title="World Wide Web Consortium">W3C</abbr> maintains a + <a href="https://www.w3.org/groups/wg/webmachinelearning/ipr" rel="disclosure">public list of any + patent disclosures</a> made in connection with the deliverables of the group; that page also + includes instructions for disclosing a patent. An individual who has actual knowledge of a + patent which the individual believes contains + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the + <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + </p> + <p> + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. + </p> + + <p> + [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-CRD.include b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-CRD.include new file mode 100644 index 0000000000..e363671df7 --- /dev/null +++ b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-CRD.include @@ -0,0 +1,35 @@ +<p><em>This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index</a> at https://www.w3.org/TR/.</em></p> +<p>This document was published + by the <a href="https://www.w3.org/groups/wg/webmachinelearning">Web Machine Learning Working Group</a> + as a <strong>Candidate Recommendation Draft</strong> using the <a + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation + track</a>. + <p>Publication as a Candidate Recommendation does not imply endorsement by W3C and its Members. A Candidate Recommendation Draft integrates changes from the previous Candidate Recommendation that the Working Group intends to include in a subsequent Candidate Recommendation Snapshot.</p> + <p>This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p> + <p> + The Web Machine Learning Working Group maintains <a href="[REPOSITORYURL]/issues">a list of all bug + reports that the group has not yet addressed</a>. + Pull requests with proposed specification text for outstanding issues are strongly encouraged. + </p> + + + <p> + This document was produced by a group operating under the + <a href="https://www.w3.org/policies/patent-policy/"> + <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + <abbr title="World Wide Web Consortium">W3C</abbr> maintains a + <a href="https://www.w3.org/groups/wg/webmachinelearning/ipr" rel="disclosure">public list of any + patent disclosures</a> made in connection with the deliverables of the group; that page also + includes instructions for disclosing a patent. An individual who has actual knowledge of a + patent which the individual believes contains + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the + <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. + </p> + <p> + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. + </p> + + <p> + [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-ED.include index 77d3a32c27..2483516909 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-ED.include @@ -22,20 +22,20 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/"> + <a href="https://www.w3.org/policies/patent-policy/"> <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/webmachinelearning/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-FPWD.include index c1ab4f9141..174e61d091 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-FPWD.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webmachinelearning">Web Machine Learning Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -24,20 +24,20 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/"> + <a href="https://www.w3.org/policies/patent-policy/"> <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/webmachinelearning/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-WD.include index bf80ec4096..e861889dd6 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webmlwg/status-WD.include @@ -10,7 +10,7 @@ <p> This document was published by the <a href="https://www.w3.org/groups/wg/webmachinelearning">Web Machine Learning Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> @@ -20,20 +20,20 @@ </p> <p> This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/"> + <a href="https://www.w3.org/policies/patent-policy/"> <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/webmachinelearning/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains - <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential + <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webperf/status.include b/bikeshed/spec-data/readonly/boilerplate/webperf/status.include index 3951daaed1..3c7e271da1 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webperf/status.include +++ b/bikeshed/spec-data/readonly/boilerplate/webperf/status.include @@ -13,18 +13,18 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webperf">Web Performance Working Group</a> as a [LONGSTATUS] using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. A W3C Recommendation is a specification that, after extensive consensus-building, is endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. <p include-if="PR"> This document was published by the <a href="https://www.w3.org/groups/wg/webperf">Web Performance Working Group</a> as a <strong>Proposed Recommendation</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Proposed Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. @@ -33,15 +33,15 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webperf">Web Performance Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received - <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, + <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. This document is intended to become a W3C Recommendation; it will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE?]">[DEADLINE?]</time> @@ -51,7 +51,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webperf">Web Performance Working Group</a> as a <strong>Candidate Recommendation Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> @@ -64,7 +64,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webperf">Web Performance Working Group</a> as a <strong>Working Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a Working Draft does not imply endorsement by @@ -74,7 +74,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webperf">Web Performance Working Group</a> as a <strong>First Public Working Draft</strong> using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. Publication as a First Public Working Draft does not imply endorsement by @@ -89,17 +89,17 @@ <p><a href='https://github.com/[REPOSITORY]/issues'>GitHub Issues</a> are preferred for discussion of this specification. <p>This document is governed by the - <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p exclude-if="ED">This document was produced by a group operating under the - <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="https://www.w3.org/groups/wg/webperf/ipr">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> + contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with - <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p>[STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-CR.include index b9bf1f6011..b07e836457 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-CR.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -32,9 +32,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> @@ -47,15 +47,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-ED.include index f440557703..5dd53318a0 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-ED.include @@ -24,16 +24,16 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-FPWD.include index 7e0fac54c1..0af7916487 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-FPWD.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a> as a First Public Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -39,15 +39,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-WD.include index 28089e97bc..1ac806cd6b 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webrtc/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webrtc/status-WD.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -35,16 +35,16 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-CR.include b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-CR.include index f467ad0383..98988536e9 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-CR.include +++ b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-CR.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webtransport">WebTransport Working Group</a> as a Candidate Recommendation using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. This document will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="[ISODEADLINE]">[DEADLINE]</time> in order to ensure the opportunity for wide review. @@ -27,9 +27,9 @@ Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. A Candidate Recommendation Snapshot has received <a - href="https://www.w3.org/2021/Process-20210923/#dfn-wide-review">wide review</a>, is intended to + href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, is intended to gather implementation experience, and has commitments from Working Group members to <a - href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p> @@ -42,15 +42,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/125908/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-ED.include b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-ED.include index a7db07af70..cbd60bbfdb 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-ED.include +++ b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-ED.include @@ -19,16 +19,16 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/125908/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-FPWD.include b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-FPWD.include index 27aec92875..532a5b9f1f 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-FPWD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-FPWD.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webtransport">WebTransport Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -34,15 +34,15 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/125908/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. <p> [STATUSTEXT] diff --git a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-WD.include b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-WD.include index e0cc057399..79f53cef02 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webtransport/status-WD.include +++ b/bikeshed/spec-data/readonly/boilerplate/webtransport/status-WD.include @@ -10,7 +10,7 @@ This document was published by the <a href="https://www.w3.org/groups/wg/webtransport">WebTransport Working Group</a> as a Working Draft using the <a - href='https://www.w3.org/2021/Process-20211102/#recs-and-notes'>Recommendation + href='https://www.w3.org/policies/process/20231103/#recs-and-notes'>Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> @@ -30,16 +30,16 @@ <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/125908/status" rel=disclosure>public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> - must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> + must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p> - This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/2021/Process-20211102/">2 November 2021 W3C Process Document</a>. + This document is governed by the <a id="w3c_process_revision" href="https://www.w3.org/policies/process/20231103/">03 November 2023 W3C Process Document</a>. </p> <p> diff --git a/bikeshed/spec-data/readonly/boilerplate/webvr/copyright.include b/bikeshed/spec-data/readonly/boilerplate/webvr/copyright.include index 79e7a1c87c..8487f4562c 100644 --- a/bikeshed/spec-data/readonly/boilerplate/webvr/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/webvr/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the WebVR Specification, published by the <a href="https://www.w3.org/community/webvr/">WebVR Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the WebVR Specification, published by the <a href="https://www.w3.org/community/webvr/">WebVR Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/wecg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/wecg/copyright.include index c71839fc54..dd573f637b 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wecg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/wecg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/webextensions/">WebExtensions Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/webextensions/">WebExtensions Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/wg14/defaults.include b/bikeshed/spec-data/readonly/boilerplate/wg14/defaults.include index dba19b264f..1b414e65b6 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wg14/defaults.include +++ b/bikeshed/spec-data/readonly/boilerplate/wg14/defaults.include @@ -2,6 +2,6 @@ "Default Highlight": "c" , "Editor Term": "Author, Authors" , "Boilerplate": "repository-issue-tracking off" -, "!Project": "ISO/IEC JTC1/SC22/WG14 9899: Programming Language — C" +, "!Project": "ISO/IEC 9899 Programming Languages — C, ISO/IEC JTC1/SC22/WG14" , "Favicon": "https://isocpp.org/favicon.ico" } diff --git a/bikeshed/spec-data/readonly/boilerplate/wg21/defaults.include b/bikeshed/spec-data/readonly/boilerplate/wg21/defaults.include index 8da6798251..bddcd4e8b2 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wg21/defaults.include +++ b/bikeshed/spec-data/readonly/boilerplate/wg21/defaults.include @@ -2,6 +2,6 @@ "Default Highlight": "c++" , "Editor Term": "Author, Authors" , "Boilerplate": "repository-issue-tracking off" -, "!Project": "ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++" +, "!Project": "ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21" , "Favicon": "https://isocpp.org/favicon.ico" } diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-COMMIT.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-COMMIT.include index b6712beb9c..aea44a8b28 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-COMMIT.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-COMMIT.include @@ -2,15 +2,15 @@ "Title": "[SPECTITLE] Standard Commit [COMMIT-SHA] Snapshot", "Logo": "https://resources.whatwg.org/logo-[SHORTNAME]-snapshot.svg", "!Participate": [ - "<a href=https://github.com/whatwg/[SHORTNAME]>GitHub whatwg/[SHORTNAME]</a> (<a href=https://github.com/whatwg/[SHORTNAME]/issues/new>new issue</a>, <a href=https://github.com/whatwg/[SHORTNAME]/issues>open issues</a>)", - "<a href=https://whatwg.org/chat>Chat on Matrix</a>" + "<a href='https://github.com/whatwg/[SHORTNAME]'>GitHub whatwg/[SHORTNAME]</a> (<a href='https://github.com/whatwg/[SHORTNAME]/issues/new/choose'>new issue</a>, <a href='https://github.com/whatwg/[SHORTNAME]/issues'>open issues</a>)", + "<a href='https://whatwg.org/chat'>Chat on Matrix</a>" ], "!Commits": [ - "<a href=https://github.com/whatwg/[SHORTNAME]/commits>GitHub whatwg/[SHORTNAME]/commits</a>", - "<a href=https://[SHORTNAME].spec.whatwg.org/ id=commit-snapshot-link>Go to the living standard</a>", - "<a href=https://twitter.com/[TWITTER]>@[TWITTER]</a>" + "<a href='https://github.com/whatwg/[SHORTNAME]/commits'>GitHub whatwg/[SHORTNAME]/commits</a>", + "<a href='https://[SHORTNAME].spec.whatwg.org/' id=commit-snapshot-link>Go to the living standard</a>", + "<a href='https://twitter.com/[TWITTER]'>@[TWITTER]</a>" ], - "!Tests": "<a href=https://github.com/web-platform-tests/wpt/tree/master/[SHORTNAME]>web-platform-tests [SHORTNAME]/</a> (<a href=https://github.com/web-platform-tests/wpt/labels/[SHORTNAME]>ongoing work</a>)", + "!Tests": "<a href='https://github.com/web-platform-tests/wpt/tree/master/[SHORTNAME]'>web-platform-tests [SHORTNAME]/</a> (<a href='https://github.com/web-platform-tests/wpt/labels/[SHORTNAME]'>ongoing work</a>)", "Warning": "obsolete", - "Text Macro": "H1 [SPECTITLE] <small>(<a href=https://github.com/whatwg/[SHORTNAME]/commit/[COMMIT-SHA]>Commit [COMMIT-SHA]</a>)</small>" + "Text Macro": "H1 [SPECTITLE] <small>(<a href='https://github.com/whatwg/[SHORTNAME]/commit/[COMMIT-SHA]'>Commit [COMMIT-SHA]</a>)</small>" } diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-PR.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-PR.include index 3d72af71fc..4a21b4664b 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-PR.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata-LS-PR.include @@ -2,15 +2,15 @@ "Title": "[SPECTITLE] Standard Pull Request #[PR-NUMBER] Preview", "Logo": "https://resources.whatwg.org/logo-[SHORTNAME]-snapshot.svg", "!Participate": [ - "<a href=https://github.com/whatwg/[SHORTNAME]>GitHub whatwg/[SHORTNAME]</a> (<a href=https://github.com/whatwg/[SHORTNAME]/issues/new>new issue</a>, <a href=https://github.com/whatwg/[SHORTNAME]/issues>open issues</a>)", - "<a href=https://whatwg.org/chat>Chat on Matrix</a>" + "<a href='https://github.com/whatwg/[SHORTNAME]'>GitHub whatwg/[SHORTNAME]</a> (<a href='https://github.com/whatwg/[SHORTNAME]/issues/new/choose'>new issue</a>, <a href='https://github.com/whatwg/[SHORTNAME]/issues'>open issues</a>)", + "<a href='https://whatwg.org/chat'>Chat on Matrix</a>" ], "!Commits": [ - "<a href=https://github.com/whatwg/[SHORTNAME]/commits>GitHub whatwg/[SHORTNAME]/commits</a>", - "<a href=https://[SHORTNAME].spec.whatwg.org/ id=commit-snapshot-link>Go to the living standard</a>", - "<a href=https://twitter.com/[TWITTER]>@[TWITTER]</a>" + "<a href='https://github.com/whatwg/[SHORTNAME]/commits'>GitHub whatwg/[SHORTNAME]/commits</a>", + "<a href='https://[SHORTNAME].spec.whatwg.org/' id=commit-snapshot-link>Go to the living standard</a>", + "<a href='https://twitter.com/[TWITTER]'>@[TWITTER]</a>" ], - "!Tests": "<a href=https://github.com/web-platform-tests/wpt/tree/master/[SHORTNAME]>web-platform-tests [SHORTNAME]/</a> (<a href=https://github.com/web-platform-tests/wpt/labels/[SHORTNAME]>ongoing work</a>)", + "!Tests": "<a href='https://github.com/web-platform-tests/wpt/tree/master/[SHORTNAME]'>web-platform-tests [SHORTNAME]/</a> (<a href='https://github.com/web-platform-tests/wpt/labels/[SHORTNAME]'>ongoing work</a>)", "Warning": "custom", - "Text Macro": "H1 [SPECTITLE] <small>(<a href=https://github.com/whatwg/[SHORTNAME]/pull/[PR-NUMBER]>PR #[PR-NUMBER]</a>)</small>" + "Text Macro": "H1 [SPECTITLE] <small>(<a href='https://github.com/whatwg/[SHORTNAME]/pull/[PR-NUMBER]'>PR #[PR-NUMBER]</a>)</small>" } diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata.include index d81103bdc4..597148af90 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/computed-metadata.include @@ -2,14 +2,14 @@ "Title": "[SPECTITLE] Standard", "Logo": "https://resources.whatwg.org/logo-[SHORTNAME].svg", "!Participate": [ - "<a href=https://github.com/whatwg/[SHORTNAME]>GitHub whatwg/[SHORTNAME]</a> (<a href=https://github.com/whatwg/[SHORTNAME]/issues/new>new issue</a>, <a href=https://github.com/whatwg/[SHORTNAME]/issues>open issues</a>)", - "<a href=https://whatwg.org/chat>Chat on Matrix</a>" + "<a href='https://github.com/whatwg/[SHORTNAME]'>GitHub whatwg/[SHORTNAME]</a> (<a href='https://github.com/whatwg/[SHORTNAME]/issues/new/choose'>new issue</a>, <a href='https://github.com/whatwg/[SHORTNAME]/issues'>open issues</a>)", + "<a href='https://whatwg.org/chat'>Chat on Matrix</a>" ], "!Commits": [ - "<a href=https://github.com/whatwg/[SHORTNAME]/commits>GitHub whatwg/[SHORTNAME]/commits</a>", - "<a href=/commit-snapshots/[COMMIT-SHA]/ id=commit-snapshot-link>Snapshot as of this commit</a>", - "<a href=https://twitter.com/[TWITTER]>@[TWITTER]</a>" + "<a href='https://github.com/whatwg/[SHORTNAME]/commits'>GitHub whatwg/[SHORTNAME]/commits</a>", + "<a href='/commit-snapshots/[COMMIT-SHA]/' id=commit-snapshot-link>Snapshot as of this commit</a>", + "<a href='https://twitter.com/[TWITTER]'>@[TWITTER]</a>" ], - "!Tests": "<a href=https://github.com/web-platform-tests/wpt/tree/master/[SHORTNAME]>web-platform-tests [SHORTNAME]/</a> (<a href=https://github.com/web-platform-tests/wpt/labels/[SHORTNAME]>ongoing work</a>)", + "!Tests": "<a href='https://github.com/web-platform-tests/wpt/tree/master/[SHORTNAME]'>web-platform-tests [SHORTNAME]/</a> (<a href='https://github.com/web-platform-tests/wpt/labels/[SHORTNAME]'>ongoing work</a>)", "Text Macro": "H1 [SPECTITLE]" } diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults-RD.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults-RD.include index 40feeab037..c3f68c88b8 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults-RD.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults-RD.include @@ -3,9 +3,11 @@ "Issue Class": "XXX", "Use Dfn Panels": "no", "Force Crossorigin": "yes", + "Die On": "warning", "No Editor": "yes", - "Boilerplate": "style-md-lists off, style-autolinks off, style-selflinks off, style-counters off, style-syntax-highlighting off, feedback-header off, conformance off, issues-index off, style-mdn-anno off, script-mdn-anno off, style-colors off, style-darkmode off, style-dfn-panel off", + "Boilerplate": "style-md-lists off, style-autolinks off, style-selflinks off, style-counters off, style-syntax-highlighting off, style-issues off, feedback-header off, conformance off, issues-index off, script-mdn-anno off, style-colors off, script-dfn-panel off, script-ref-hints off", "Complain About": "missing-example-ids yes, accidental-2119 yes", + "Dark Mode": "off", "Informative Classes": "domintro", "Metadata Include": "Translations no", "Informative Classes": "domintro", diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults.include index 6a42f2d4c9..68690756a8 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/defaults.include @@ -3,9 +3,11 @@ "Issue Class": "XXX", "Use Dfn Panels": "yes", "Force Crossorigin": "yes", + "Die On": "warning", "Status": "LS", "No Editor": "yes", - "Boilerplate": "style-md-lists off, style-autolinks off, style-selflinks off, style-counters off, style-syntax-highlighting off, feedback-header off, conformance off, issues-index off, style-mdn-anno off, script-mdn-anno off, style-colors off, style-darkmode off, style-dfn-panel off", + "Boilerplate": "style-md-lists off, style-autolinks off, style-selflinks off, style-counters off, style-syntax-highlighting off, style-idl-highlighting off, style-colors off, style-issues off, feedback-header off, conformance off, issues-index off", + "Dark Mode": "on", "Include Mdn Panels": "if possible", "Complain About": "missing-example-ids yes, accidental-2119 yes", "Metadata Order": "Participate, Commits, Tests, *, !*", diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/header-RD.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/header-RD.include index 00aa3177fa..9152daefa8 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/header-RD.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/header-RD.include @@ -3,6 +3,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="theme-color" content="#3c790a"> +<meta name="color-scheme" content="light dark"> <title>[TITLE]</title> <link href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link href="https://resources.whatwg.org/review-draft.css" rel="stylesheet"> diff --git a/bikeshed/spec-data/readonly/boilerplate/whatwg/header.include b/bikeshed/spec-data/readonly/boilerplate/whatwg/header.include index 4a45cd0136..b957ba024a 100644 --- a/bikeshed/spec-data/readonly/boilerplate/whatwg/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/whatwg/header.include @@ -3,19 +3,18 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="theme-color" content="#3c790a"> +<meta name="color-scheme" content="light dark"> <title>[TITLE]</title> -<link href="https://resources.whatwg.org/spec.css" rel="stylesheet"> -<link href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> +<link href="https://resources.whatwg.org/standard.css" rel="stylesheet"> +<link href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link href="[LOGO]" rel="icon"> -<script src=https://resources.whatwg.org/file-issue.js async></script> -<script src=https://resources.whatwg.org/commit-snapshot-shortcut-key.js async></script> -<script src="https://resources.whatwg.org/standard-mdn-annos.js" defer></script> +<script src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js" defer></script> <body class="h-entry status-[STATUS]"> <div class="head"> <a href="https://whatwg.org/" class="logo"> - <img alt="WHATWG" height="100" src="[LOGO]"> + <img alt="WHATWG" height="100" src="[LOGO]" class="darkmode-aware"> </a> <hgroup> <h1 id="title" class="p-name no-ref">[H1]</h1> diff --git a/bikeshed/spec-data/readonly/boilerplate/wicg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/wicg/copyright.include index 1f94fff730..921c315536 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wicg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/wicg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/wicg/header.include b/bikeshed/spec-data/readonly/boilerplate/wicg/header.include index 8f7dbc2407..5d0ff2148e 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wicg/header.include +++ b/bikeshed/spec-data/readonly/boilerplate/wicg/header.include @@ -5,7 +5,7 @@ <title>[TITLE]</title> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> + </head> <body class="h-entry"> <div class="head"> <p data-fill-with="logo"></p> diff --git a/bikeshed/spec-data/readonly/boilerplate/wintercg/copyright.include b/bikeshed/spec-data/readonly/boilerplate/wintercg/copyright.include index 017e29e622..aedecb168d 100644 --- a/bikeshed/spec-data/readonly/boilerplate/wintercg/copyright.include +++ b/bikeshed/spec-data/readonly/boilerplate/wintercg/copyright.include @@ -1,2 +1,2 @@ -<a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/wintercg/">Web-interoperable Runtimes Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. +<a href="https://www.w3.org/policies/#copyright">Copyright</a> © [YEAR] the Contributors to the [TITLE] Specification, published by the <a href="https://www.w3.org/community/wintercg/">Web-interoperable Runtimes Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. diff --git a/bikeshed/spec-data/readonly/boilerplate/wintercg/header.include b/bikeshed/spec-data/readonly/boilerplate/wintercg/header.include deleted file mode 100644 index 8f7dbc2407..0000000000 --- a/bikeshed/spec-data/readonly/boilerplate/wintercg/header.include +++ /dev/null @@ -1,29 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <title>[TITLE]</title> - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - <link href="[W3C-STYLESHEET-URL]" rel=stylesheet> -</head> -<body class="h-entry"> -<div class="head"> - <p data-fill-with="logo"></p> - <h1 id="title" class="p-name no-ref">[TITLE]</h1> - <p id='w3c-state'><a href='[W3C-STATUS-URL]'>[LONGSTATUS]</a>, - <time class="dt-updated" datetime="[ISODATE]">[DATE]</time></p> - <div data-fill-with="spec-metadata"></div> - <div data-fill-with="warning"></div> - <p class='copyright' data-fill-with='copyright'></p> - <hr title="Separator for header"> -</div> - -<div class="p-summary" data-fill-with="abstract"></div> -<div data-fill-with="at-risk"></div> - -<h2 class='no-num no-toc no-ref' id='status'>Status of this document</h2> -<div data-fill-with="status"></div> -<div data-fill-with="at-risk"></div> - -<nav data-fill-with="table-of-contents" id="toc"></nav> -<main> diff --git a/bikeshed/spec-data/readonly/caniuse/data.json b/bikeshed/spec-data/readonly/caniuse/data.json index 8448c82d23..400f96f75e 100644 --- a/bikeshed/spec-data/readonly/caniuse/data.json +++ b/bikeshed/spec-data/readonly/caniuse/data.json @@ -44,7 +44,7 @@ "av1": "https://github.com/AOMediaCodec/av1-spec", "avif": "https://aomediacodec.github.io/av1-avif/", "background-attachment": "https://www.w3.org/TR/css3-background/#the-background-attachment", - "background-clip-text": "https://compat.spec.whatwg.org/#the-webkit-background-clip-property", + "background-clip-text": "https://drafts.csswg.org/css-backgrounds-4/#background-clip", "background-img-opts": "https://www.w3.org/TR/css3-background/#backgrounds", "background-position-x-y": "https://w3c.github.io/csswg-drafts/css-backgrounds-4/#background-position-longhands", "background-repeat-round-space": "https://www.w3.org/TR/css3-background/#the-background-repeat", @@ -86,6 +86,7 @@ "credential-management": "https://www.w3.org/TR/credential-management-1/", "cryptography": "https://www.w3.org/TR/WebCryptoAPI/", "css-all": "https://www.w3.org/TR/css-cascade-3/#all-shorthand", + "css-anchor-positioning": "https://www.w3.org/TR/css-anchor-position-1/", "css-animation": "https://www.w3.org/TR/css3-animations/", "css-any-link": "https://w3c.github.io/csswg-drafts/selectors-4/#the-any-link-pseudo", "css-appearance": "https://www.w3.org/TR/css-ui-4/#appearance-switching", @@ -98,12 +99,14 @@ "css-canvas": "https://webkit.org/blog/176/css-canvas-drawing/", "css-caret-color": "https://www.w3.org/TR/css-ui-3/#caret-color", "css-cascade-layers": "https://www.w3.org/TR/css-cascade-5/", + "css-cascade-scope": "https://drafts.csswg.org/css-cascade-6/#scoped-styles", "css-case-insensitive": "https://www.w3.org/TR/selectors-4/#attribute-case", "css-clip-path": "https://www.w3.org/TR/css-masking-1/#the-clip-path", "css-color-adjust": "https://w3c.github.io/csswg-drafts/css-color-adjust-1/#propdef-print-color-adjust", "css-color-function": "https://w3c.github.io/csswg-drafts/css-color/#color-function", "css-conic-gradients": "https://www.w3.org/TR/css-images-4/#conic-gradients", "css-container-queries": "https://www.w3.org/TR/css-contain-3/", + "css-container-queries-style": "https://www.w3.org/TR/css-contain-3/", "css-container-query-units": "https://www.w3.org/TR/css-contain-3/#container-lengths", "css-containment": "https://www.w3.org/TR/css-contain-1/#contain-property", "css-content-visibility": "https://www.w3.org/TR/css-contain-2/#content-visibility", @@ -164,7 +167,7 @@ "css-overflow": "https://www.w3.org/TR/css-overflow-3/", "css-overflow-anchor": "https://w3c.github.io/csswg-drafts/css-scroll-anchoring/", "css-overflow-overlay": "https://github.com/w3c/csswg-drafts/issues/92", - "css-overscroll-behavior": "https://w3c.github.io/csswg-drafts/css-overscroll-behavior-1/", + "css-overscroll-behavior": "https://drafts.csswg.org/css-overscroll/#overscroll-behavior-properties", "css-page-break": "https://www.w3.org/TR/CSS2/page.html#page-breaks", "css-paged-media": "https://w3c.github.io/csswg-drafts/css-page-3/", "css-paint-api": "https://drafts.css-houdini.org/css-paint-api/", @@ -174,6 +177,7 @@ "css-rebeccapurple": "https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple", "css-reflections": "https://webkit.org/blog/182/css-reflections/", "css-regions": "https://www.w3.org/TR/css3-regions/", + "css-relative-colors": "https://www.w3.org/TR/css-color-5/#relative-colors", "css-repeating-gradients": "https://www.w3.org/TR/css3-images/#repeating-gradients", "css-resize": "https://www.w3.org/TR/css3-ui/#resize", "css-revert-value": "https://www.w3.org/TR/css-cascade-4/#valdef-all-revert", @@ -191,9 +195,11 @@ "css-supports-api": "https://w3c.github.io/csswg-drafts/css-conditional/#the-css-interface", "css-table": "https://www.w3.org/TR/CSS21/tables.html", "css-text-align-last": "https://www.w3.org/TR/css3-text/#text-align-last-property", + "css-text-box-trim": "https://w3c.github.io/csswg-drafts/css-inline-3/#propdef-leading-trim", "css-text-indent": "https://w3c.github.io/csswg-drafts/css-text-3/#text-indent-property", "css-text-justify": "https://w3c.github.io/csswg-drafts/css-text-3/#text-justify-property", "css-text-orientation": "https://w3c.github.io/csswg-drafts/css-writing-modes-3/#text-orientation", + "css-text-wrap-balance": "https://www.w3.org/TR/css-text-4/#text-wrap", "css-textshadow": "https://www.w3.org/TR/css-text-decor-3/#text-shadow-property", "css-touch-action": "https://www.w3.org/TR/pointerevents/#the-touch-action-css-property", "css-transitions": "https://www.w3.org/TR/css3-transitions/", @@ -202,7 +208,7 @@ "css-when-else": "https://www.w3.org/TR/css-conditional-5/#when-rule", "css-widows-orphans": "https://w3c.github.io/csswg-drafts/css-break-3/#widows-orphans", "css-writing-mode": "https://w3c.github.io/csswg-drafts/css-writing-modes-3/#block-flow", - "css-zoom": "https://developer.mozilla.org/en-US/docs/Web/CSS/zoom", + "css-zoom": "https://drafts.csswg.org/css-viewport/#zoom-property", "css3-attr": "https://w3c.github.io/csswg-drafts/css-values-5/#attr-notation", "css3-boxsizing": "https://www.w3.org/TR/css-sizing/#box-sizing", "css3-colors": "https://www.w3.org/TR/css3-color/", @@ -218,7 +224,7 @@ "dataset": "https://html.spec.whatwg.org/multipage/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes", "datauri": "https://tools.ietf.org/html/rfc2397", "date-tolocaledatestring": "https://tc39.es/ecma402/#sup-date.prototype.tolocaledatestring", - "declarative-shadow-dom": "https://github.com/mfreed7/declarative-shadow-dom", + "declarative-shadow-dom": "https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootmode", "decorators": "https://github.com/tc39/proposal-decorators", "details": "https://html.spec.whatwg.org/multipage/forms.html#the-details-element", "deviceorientation": "https://www.w3.org/TR/orientation-event/", @@ -405,6 +411,7 @@ "page-transition-events": "https://html.spec.whatwg.org/multipage/indices.html#event-pageshow", "pagevisibility": "https://www.w3.org/TR/page-visibility/", "passive-event-listener": "https://dom.spec.whatwg.org/#dom-addeventlisteneroptions-passive", + "passkeys": "https://fidoalliance.org/multi-device-fido-credentials/", "path2d": "https://html.spec.whatwg.org/multipage/canvas.html#path2d-objects", "payment-request": "https://www.w3.org/TR/payment-request/", "pdf-viewer": "https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf", @@ -451,6 +458,7 @@ "scrollintoviewifneeded": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded", "sdch": "https://docs.google.com/viewer?a=v&pid=forums&srcid=MDIwOTgxNDMwMTgyMjkzMTI2ODcBMDQ2MzU5NDU2MDA0MTg5NDE1MTkBTDZmaENoSG9BZ0FKATAuMQEBdjI", "selection-api": "https://www.w3.org/TR/selection-api/", + "selectlist": "https://open-ui.org/components/selectlist/", "server-timing": "https://www.w3.org/TR/server-timing/", "serviceworkers": "https://w3c.github.io/ServiceWorker/", "setimmediate": "https://w3c.github.io/setImmediate/", @@ -514,15 +522,24 @@ "vibration": "https://www.w3.org/TR/vibration/", "video": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-video-element", "videotracks": "https://html.spec.whatwg.org/multipage/embedded-content.html#audiotracklist-and-videotracklist-objects", + "view-transitions": "https://www.w3.org/TR/css-view-transitions-1/", "viewport-unit-variants": "https://www.w3.org/TR/css-values-4/#viewport-variants", "viewport-units": "https://www.w3.org/TR/css3-values/#viewport-relative-lengths", "wai-aria": "https://www.w3.org/TR/wai-aria/", "wake-lock": "https://www.w3.org/TR/wake-lock/", "wasm": "https://github.com/WebAssembly/spec", + "wasm-bigint": "https://webassembly.github.io/spec/js-api/", + "wasm-bulk-memory": "https://webassembly.github.io/spec/core/", + "wasm-multi-value": "https://webassembly.github.io/spec/core/", + "wasm-mutable-globals": "https://webassembly.github.io/spec/core/", + "wasm-nontrapping-fptoint": "https://webassembly.github.io/spec/core/", + "wasm-reference-types": "https://webassembly.github.io/spec/core/", + "wasm-signext": "https://webassembly.github.io/spec/core/", + "wasm-simd": "https://webassembly.github.io/spec/core/", + "wasm-threads": "https://webassembly.github.io/spec/core/", "wav": "http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html", "wbr-element": "https://html.spec.whatwg.org/multipage/semantics.html#the-wbr-element", "web-animation": "https://w3c.github.io/csswg-drafts/web-animations/", - "web-app-manifest": "https://www.w3.org/TR/appmanifest/", "web-bluetooth": "https://webbluetoothcg.github.io/web-bluetooth/", "web-serial": "https://wicg.github.io/serial/", "web-share": "https://www.w3.org/TR/web-share/", @@ -553,7 +570,8 @@ "xhr2": "https://xhr.spec.whatwg.org/", "xhtml": "https://html.spec.whatwg.org/multipage/xhtml.html#the-xhtml-syntax", "xhtmlsmil": "https://www.w3.org/TR/XHTMLplusSMIL/", - "xml-serializer": "https://www.w3.org/TR/DOM-Parsing/" + "xml-serializer": "https://www.w3.org/TR/DOM-Parsing/", + "zstd": "https://datatracker.ietf.org/doc/html/rfc8878" }, - "updated": 1674803782 + "updated": 1724567502 } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-aac.json b/bikeshed/spec-data/readonly/caniuse/feature-aac.json index 432e572db6..9419b3740f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-aac.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-aac.json @@ -2,24 +2,24 @@ "notes": "Support refers to this format's use in the `audio` element, not other conditions.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 12", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "a 22", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "y 9", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "http://www.digitalpreservation.gov/formats/fdd/fdd000114.shtml" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-abortcontroller.json b/bikeshed/spec-data/readonly/caniuse/feature-abortcontroller.json index cc788b5c5a..063bc7698c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-abortcontroller.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-abortcontroller.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 66", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 57", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 53", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#abortsignal" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-accelerometer.json b/bikeshed/spec-data/readonly/caniuse/feature-accelerometer.json index 2ce0a93558..72958cbc64 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-accelerometer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-accelerometer.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 54", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/accelerometer/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-addeventlistener.json b/bikeshed/spec-data/readonly/caniuse/feature-addeventlistener.json index 77e182a0dc..9d14b70a5e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-addeventlistener.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-addeventlistener.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-eventtarget-addeventlistener" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ambient-light.json b/bikeshed/spec-data/readonly/caniuse/feature-ambient-light.json index c3b512918f..3d862959fb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ambient-light.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ambient-light.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "y 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", - "Opera": "n 92", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/ambient-light/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-apng.json b/bikeshed/spec-data/readonly/caniuse/feature-apng.json index 2e7861529a..c00d57ac0c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-apng.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-apng.json @@ -1,25 +1,25 @@ { "notes": "Where support for APNG is missing, only the first frame is displayed", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 59", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 46", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 8", "Safari on iOS": "y 8", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/png" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-array-find-index.json b/bikeshed/spec-data/readonly/caniuse/feature-array-find-index.json index a8730f5016..8843675310 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-array-find-index.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-array-find-index.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 7", "Chrome": "y 45", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 25", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 32", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7.1", "Safari on iOS": "y 8", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-array.prototype.findindex" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-array-find.json b/bikeshed/spec-data/readonly/caniuse/feature-array-find.json index 8ab9acf6d1..bf4e993b9b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-array-find.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-array-find.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 7", "Chrome": "y 45", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 25", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 32", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7.1", "Safari on iOS": "y 8", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-array.prototype.find" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-array-flat.json b/bikeshed/spec-data/readonly/caniuse/feature-array-flat.json index f53ca54908..24a916a9e6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-array-flat.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-array-flat.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 69", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 62", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 56", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12", "Safari on iOS": "y 12.0", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-array.prototype.flat" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-array-includes.json b/bikeshed/spec-data/readonly/caniuse/feature-array-includes.json index 6f8b63366d..71135934f0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-array-includes.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-array-includes.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 47", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 43", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 34", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-array.prototype.includes" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-arrow-functions.json b/bikeshed/spec-data/readonly/caniuse/feature-arrow-functions.json index 311062d5f8..2f4eb71afe 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-arrow-functions.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-arrow-functions.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 45", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 22", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 32", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-arrow-function-definitions" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-asmjs.json b/bikeshed/spec-data/readonly/caniuse/feature-asmjs.json index 557fa42090..cb46db2429 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-asmjs.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-asmjs.json @@ -1,25 +1,25 @@ { "notes": "asm.js is [mostly rendered obsolete](https://en.wikipedia.org/wiki/Asm.js#Deprecation) with the introduction of [WebAssembly](/wasm) and is therefore [no longer recommended](https://developer.mozilla.org/en-US/docs/Games/Tools/asm.js)", "support": { - "Android Browser": "a 109", - "Baidu Browser": "a 13.18", + "Android Browser": "a 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 28", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "y 22", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "a 5.0", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "http://asmjs.org/spec/latest/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-async-clipboard.json b/bikeshed/spec-data/readonly/caniuse/feature-async-clipboard.json index 19b4b1be21..ed08ea432f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-async-clipboard.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-async-clipboard.json @@ -1,25 +1,25 @@ { - "notes": "", + "notes": "Browsers differ on how they handle the security considerations for clipboard operations:\r\n\r\nChromium browsers require the `clipboard-write` permission to be granted before allowing clipboard reading & writing.\r\n\r\nSafari browsers will display a \"Paste\" option for users to select first before reading the clipboard.", "support": { - "Android Browser": "a 109", - "Baidu Browser": "y 13.18", + "Android Browser": "a 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", - "Chrome": "y 62", - "Chrome for Android": "y 109", + "Chrome": "y 66", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "a 63", - "Firefox for Android": "a 107", + "Firefox": "y 125", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "y 49", + "KaiOS Browser": "a 3.0", + "Opera": "y 53", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13.1", - "Safari on iOS": "a 14.0", - "Samsung Internet": "a 9.2", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "y 14.0", + "Samsung Internet": "y 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/clipboard-apis/#async-clipboard-api" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-async-functions.json b/bikeshed/spec-data/readonly/caniuse/feature-async-functions.json index 6b43760d44..2468e8f63a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-async-functions.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-async-functions.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 55", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-async-function-definitions" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-atob-btoa.json b/bikeshed/spec-data/readonly/caniuse/feature-atob-btoa.json index 0c517a7f40..576d204345 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-atob-btoa.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-atob-btoa.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/webappapis.html#atob" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-audio-api.json b/bikeshed/spec-data/readonly/caniuse/feature-audio-api.json index e8f5810d30..c14606f532 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-audio-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-audio-api.json @@ -1,25 +1,25 @@ { "notes": "Not all browsers with support for the Audio API also support media streams (e.g. microphone input). See the [getUserMedia/Streams API](/#feat=stream) data for support for that feature.\r\n\r\nFirefox versions < 25 support an alternative, deprecated audio API.\r\n\r\nChrome support [went through some changes](https://developers.google.com/web/updates/2014/07/Web-Audio-Changes-in-m36) as of version 36.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 34", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 25", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 22", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14.1", "Safari on iOS": "y 14.5", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/webaudio/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-audio.json b/bikeshed/spec-data/readonly/caniuse/feature-audio.json index 543ab87e73..2cf885ef72 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-audio.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-audio.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 20", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", - "Safari": "y 4", - "Safari on iOS": "y 4.0", + "QQ Browser": "y 14.9", + "Safari": "y 3.1", + "Safari on iOS": "a 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-audio-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-audiotracks.json b/bikeshed/spec-data/readonly/caniuse/feature-audiotracks.json index 97cd545166..96adb63c55 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-audiotracks.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-audiotracks.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 10", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#audiotracklist-and-videotracklist-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-autofocus.json b/bikeshed/spec-data/readonly/caniuse/feature-autofocus.json index 7a9d2e3c88..2933119631 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-autofocus.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-autofocus.json @@ -2,24 +2,24 @@ "notes": "While not supported in iOS Safari, it does work in iOS WebViews.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 9.5", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#autofocusing-a-form-control:-the-autofocus-attribute" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-auxclick.json b/bikeshed/spec-data/readonly/caniuse/feature-auxclick.json index d3e8aee948..1ed1eb1e16 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-auxclick.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-auxclick.json @@ -1,25 +1,25 @@ { "notes": "With introduction of this feature there will be no longer click event fired for non-primary buttons", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 55", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 53", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/uievents/#event-type-auxclick" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-av1.json b/bikeshed/spec-data/readonly/caniuse/feature-av1.json index 47e4ad6b8d..13c4665753 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-av1.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-av1.json @@ -1,25 +1,25 @@ { - "notes": "", + "notes": "Edge has stopped supporting AV1 completely at some point prior to version 116 (additional information required).", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 70", - "Chrome for Android": "y 109", - "Edge": "n 109", + "Chrome for Android": "y 127", + "Edge": "y 121", "Firefox": "y 67", - "Firefox for Android": "n 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 57", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "a 17.0", + "Safari on iOS": "a 17.0", "Samsung Internet": "y 12.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://github.com/AOMediaCodec/av1-spec" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-avif.json b/bikeshed/spec-data/readonly/caniuse/feature-avif.json index f4e6509c37..1276b0e12f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-avif.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-avif.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 85", - "Chrome for Android": "y 109", - "Edge": "n 109", + "Chrome for Android": "y 127", + "Edge": "y 121", "Firefox": "y 93", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 71", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "y TP", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.4", "Safari on iOS": "y 16.0", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://aomediacodec.github.io/av1-avif/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-background-attachment.json b/bikeshed/spec-data/readonly/caniuse/feature-background-attachment.json index 880a43b020..4df68a1b36 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-background-attachment.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-background-attachment.json @@ -1,25 +1,25 @@ { "notes": "Most mobile devices have a delay in updating the background position after scrolling a page with `fixed` backgrounds.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 25", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 15.4", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "a 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#the-background-attachment" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-background-clip-text.json b/bikeshed/spec-data/readonly/caniuse/feature-background-clip-text.json index 45d7d55449..2d36a31573 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-background-clip-text.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-background-clip-text.json @@ -1,25 +1,25 @@ { "notes": "Firefox and legacy Edge also support this property with the `-webkit-` prefix.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "a 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "a 120", + "Chrome for Android": "a 127", + "Edge": "a 120", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "Opera": "a 106", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "y 14", - "Safari on iOS": "y 14.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", + "Safari": "a 14", + "Safari on iOS": "a 14.0", + "Samsung Internet": "y 25", + "UC Browser for Android": "n 15.5" }, - "url": "https://compat.spec.whatwg.org/#the-webkit-background-clip-property" + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-clip" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-background-img-opts.json b/bikeshed/spec-data/readonly/caniuse/feature-background-img-opts.json index f13bf10971..5e4e8247c6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-background-img-opts.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-background-img-opts.json @@ -2,24 +2,24 @@ "notes": "Firefox, Chrome and Safari support the unofficial `-webkit-background-clip: text` (only with prefix). Safari does not support `-webkit-background-clip: text;` for `<button>` elements. But you can put `<span>` inside `<button>` to get the same result.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "a all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#backgrounds" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-background-position-x-y.json b/bikeshed/spec-data/readonly/caniuse/feature-background-position-x-y.json index 90e68b5c56..6ed0be33a5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-background-position-x-y.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-background-position-x-y.json @@ -2,24 +2,24 @@ "notes": "A workaround for the lack of support in Firefox 31 - Firefox 48 is to use [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables). See [this Stack Overflow answer](https://stackoverflow.com/a/29282573/94197) for an example.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 5.5", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-backgrounds-4/#background-position-longhands" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-background-repeat-round-space.json b/bikeshed/spec-data/readonly/caniuse/feature-background-repeat-round-space.json index d4624f02ce..c536f9c6ce 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-background-repeat-round-space.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-background-repeat-round-space.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 32", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 19", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#the-background-repeat" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-background-sync.json b/bikeshed/spec-data/readonly/caniuse/feature-background-sync.json index 93294438b6..7efe00bdc6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-background-sync.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-background-sync.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 109", - "Firefox for Android": "n 107", + "Firefox": "n 129", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://wicg.github.io/BackgroundSync/spec/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-battery-status.json b/bikeshed/spec-data/readonly/caniuse/feature-battery-status.json index d42272481b..e14dbfbed4 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-battery-status.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-battery-status.json @@ -1,25 +1,25 @@ { "notes": "Firefox 52+ [removed access to this API due to privacy concerns.](https://bugzilla.mozilla.org/show_bug.cgi?id=1313580)", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "y 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/battery-status/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-beacon.json b/bikeshed/spec-data/readonly/caniuse/feature-beacon.json index b72823bc3f..0b0dda7801 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-beacon.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-beacon.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 39", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 31", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 26", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/beacon/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-beforeafterprint.json b/bikeshed/spec-data/readonly/caniuse/feature-beforeafterprint.json index f027143cce..5f80e099e7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-beforeafterprint.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-beforeafterprint.json @@ -1,25 +1,25 @@ { "notes": "Due to its wider support, consider using `window.matchMedia('print')` where possible.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 63", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "u 11", "KaiOS Browser": "y 2.5", "Opera": "y 50", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13", "Safari on iOS": "y 13.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#printing" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-bigint.json b/bikeshed/spec-data/readonly/caniuse/feature-bigint.json index cb30a0e8c9..01758feecf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-bigint.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-bigint.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 68", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 54", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14", "Safari on iOS": "y 14.0", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-bigint-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-blobbuilder.json b/bikeshed/spec-data/readonly/caniuse/feature-blobbuilder.json index 06e8a554f6..6a2850bb09 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-blobbuilder.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-blobbuilder.json @@ -1,25 +1,25 @@ { "notes": "Partial support refers to only supporting the now deprecated BlobBuilder to create blobs.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 20", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 13", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/FileAPI/#constructorBlob" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-bloburls.json b/bikeshed/spec-data/readonly/caniuse/feature-bloburls.json index d01992c218..320e68af0f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-bloburls.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-bloburls.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 23", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/FileAPI/#url" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-border-image.json b/bikeshed/spec-data/readonly/caniuse/feature-border-image.json index 6612fcd241..ed04a5db0c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-border-image.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-border-image.json @@ -1,25 +1,25 @@ { "notes": "Note that both the `border-style` and `border-width` must be specified (not set to `none` or 0) for border-images to work.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 50", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 43", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#border-images" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-border-radius.json b/bikeshed/spec-data/readonly/caniuse/feature-border-radius.json index 7dedbc160e..a2f35a0e91 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-border-radius.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-border-radius.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#the-border-radius" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-broadcastchannel.json b/bikeshed/spec-data/readonly/caniuse/feature-broadcastchannel.json index 485baac589..8528a77e77 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-broadcastchannel.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-broadcastchannel.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 54", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 41", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/comms.html#broadcasting-to-other-browsing-contexts" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-brotli.json b/bikeshed/spec-data/readonly/caniuse/feature-brotli.json index c606c26792..9abf4601ec 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-brotli.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-brotli.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 50", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 38", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc7932" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-calc.json b/bikeshed/spec-data/readonly/caniuse/feature-calc.json index e8448730f7..efd2cf51e5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-calc.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-calc.json @@ -1,25 +1,25 @@ { "notes": "Support can be somewhat emulated in older versions of IE using the non-standard `expression()` syntax.\r\n\r\nDue to the way browsers handle [sub-pixel rounding](https://johnresig.com/blog/sub-pixel-problems-in-css/) differently, layouts using `calc()` expressions may have unexpected results.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-values-3/#calc-notation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-canvas-blending.json b/bikeshed/spec-data/readonly/caniuse/feature-canvas-blending.json index 336e7075c8..e34290794e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-canvas-blending.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-canvas-blending.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 30", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 20", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/compositing-1/#blending" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-canvas-text.json b/bikeshed/spec-data/readonly/caniuse/feature-canvas-text.json index 34f8dbdefc..d80f873707 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-canvas-text.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-canvas-text.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#drawing-text-to-the-bitmap" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-canvas.json b/bikeshed/spec-data/readonly/caniuse/feature-canvas.json index 7910320b7a..a93b73c0f7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-canvas.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-canvas.json @@ -2,24 +2,24 @@ "notes": "For screen readers, IE, Chrome & Firefox support the [accessible canvas element sub-DOM](http://www.paciellogroup.com/blog/2012/06/html5-canvas-accessibility-in-firefox-13/).\r\nFirefox & Chrome also support the drawfocus ring.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "a all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-canvas-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ch-unit.json b/bikeshed/spec-data/readonly/caniuse/feature-ch-unit.json index c401f4bb8e..138b06da55 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ch-unit.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ch-unit.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 27", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-values/#ch" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-chacha20-poly1305.json b/bikeshed/spec-data/readonly/caniuse/feature-chacha20-poly1305.json index 667abf073d..ff18296a60 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-chacha20-poly1305.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-chacha20-poly1305.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 33", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 47", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc7905" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-channel-messaging.json b/bikeshed/spec-data/readonly/caniuse/feature-channel-messaging.json index ae759537a0..d24726584e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-channel-messaging.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-channel-messaging.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 41", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/comms.html#channel-messaging" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-childnode-remove.json b/bikeshed/spec-data/readonly/caniuse/feature-childnode-remove.json index 61862b06b3..2bb10ddbe0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-childnode-remove.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-childnode-remove.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 24", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 23", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-childnode-remove" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-classlist.json b/bikeshed/spec-data/readonly/caniuse/feature-classlist.json index 401d763c23..a7bb8ee055 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-classlist.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-classlist.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 28", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 26", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-element-classlist" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-client-hints-dpr-width-viewport.json b/bikeshed/spec-data/readonly/caniuse/feature-client-hints-dpr-width-viewport.json index 2e25a6e9d0..d3e009127f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-client-hints-dpr-width-viewport.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-client-hints-dpr-width-viewport.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 46", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 33", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/draft-grigorik-http-client-hints" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-clipboard.json b/bikeshed/spec-data/readonly/caniuse/feature-clipboard.json index 2acfeadede..7b9659eb36 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-clipboard.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-clipboard.json @@ -2,24 +2,24 @@ "notes": "Internet Explorer will display a security prompt for access to the OS clipboard.\r\n\r\nChrome 42+, Opera 29+ and Firefox 41+ support clipboard reading/writing only when part of a user action (click, keydown, etc).", "support": { "Android Browser": "a 4.4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 10", "Chrome": "a 13", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "a 22", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 5.5", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "a 12.1", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "y 12", "Safari on iOS": "y 12.0", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/clipboard-apis/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-colr-v1.json b/bikeshed/spec-data/readonly/caniuse/feature-colr-v1.json index 4c23c71b94..303ac56338 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-colr-v1.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-colr-v1.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "u 10", "Chrome": "y 98", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 98", "Firefox": "y 107", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "u 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 86", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 18.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://docs.microsoft.com/en-us/typography/opentype/spec/colr" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-colr.json b/bikeshed/spec-data/readonly/caniuse/feature-colr.json index 5c3c705776..492d2774b1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-colr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-colr.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 71", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 32", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "u 11", "KaiOS Browser": "y 2.5", "Opera": "y 58", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y 11", - "Safari on iOS": "y 11.0", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 17.2", + "Safari on iOS": "y 17.2", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://docs.microsoft.com/en-us/typography/opentype/spec/colr" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-comparedocumentposition.json b/bikeshed/spec-data/readonly/caniuse/feature-comparedocumentposition.json index 1b687e4d99..19a0ad1511 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-comparedocumentposition.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-comparedocumentposition.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 30", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-node-comparedocumentposition" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-console-basic.json b/bikeshed/spec-data/readonly/caniuse/feature-console-basic.json index 0eebdcda62..4d7a354b44 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-console-basic.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-console-basic.json @@ -2,24 +2,24 @@ "notes": "The basic functions that this information refers to include `console.log`, `console.info`, `console.warn`, `console.error`.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "y all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://console.spec.whatwg.org/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-console-time.json b/bikeshed/spec-data/readonly/caniuse/feature-console-time.json index 3cf235edfb..be48d01c5f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-console-time.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-console-time.json @@ -2,24 +2,24 @@ "notes": "`console.time()` starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call `console.timeEnd()` with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started. These functions are not always available in `workers`. For example, in Firefox, they are available from version `38`. More on using the `console` on mobile devices, see [here](https://caniuse.com/#feat=console-basic). ", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 10", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 11.1", "Opera Mini": "y all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://console.spec.whatwg.org/#time" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-const.json b/bikeshed/spec-data/readonly/caniuse/feature-const.json index e0bf09aedc..13317cc9f9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-const.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-const.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-let-and-const-declarations" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-constraint-validation.json b/bikeshed/spec-data/readonly/caniuse/feature-constraint-validation.json index dd609d972e..e2b2646e32 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-constraint-validation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-constraint-validation.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 40", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 27", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/dev/form-control-infrastructure.html#the-constraint-validation-api" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-contenteditable.json b/bikeshed/spec-data/readonly/caniuse/feature-contenteditable.json index eca5ba13d5..9de6e6b9fc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-contenteditable.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-contenteditable.json @@ -2,24 +2,24 @@ "notes": "This support only refers to very basic editing capability, implementations vary significantly on how certain elements can be edited.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 5.5", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/interaction.html#contenteditable" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy.json b/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy.json index c198912870..cee32e645d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy.json @@ -2,24 +2,24 @@ "notes": "The standard HTTP header is `Content-Security-Policy` which is used unless otherwise noted.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 14", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/2012/CR-CSP-20121115/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy2.json b/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy2.json index 0cf5a8eb98..8f4bf68ac3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-contentsecuritypolicy2.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 40", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 45", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 27", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSP2/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-cookie-store-api.json b/bikeshed/spec-data/readonly/caniuse/feature-cookie-store-api.json index 3f28f50bd2..a88ebcadbe 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-cookie-store-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-cookie-store-api.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 87", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 87", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 74", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://wicg.github.io/cookie-store/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-cors.json b/bikeshed/spec-data/readonly/caniuse/feature-cors.json index c83e6c6c30..aae1ef5133 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-cors.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-cors.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 13", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 12", "Opera Mini": "n all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://fetch.spec.whatwg.org/#http-cors-protocol" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-createimagebitmap.json b/bikeshed/spec-data/readonly/caniuse/feature-createimagebitmap.json index b43fcc6827..c3f1f70153 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-createimagebitmap.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-createimagebitmap.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 59", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "a 42", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "y 46", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "a 15", "Safari on iOS": "a 15.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#dom-createimagebitmap" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-credential-management.json b/bikeshed/spec-data/readonly/caniuse/feature-credential-management.json index ff3aa01b63..d38ae1764e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-credential-management.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-credential-management.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 51", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 45", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", "Safari on iOS": "y 14.0", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/credential-management-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-cryptography.json b/bikeshed/spec-data/readonly/caniuse/feature-cryptography.json index b04a6b96d0..efbdbd9e55 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-cryptography.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-cryptography.json @@ -1,25 +1,25 @@ { "notes": "Many browsers support the `[crypto.getRandomValues()](#feat=getrandomvalues)` method, but not actual cryptography functionality under `crypto.subtle`.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/WebCryptoAPI/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-all.json b/bikeshed/spec-data/readonly/caniuse/feature-css-all.json index 128a9d559e..fca12d51e8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-all.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-all.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 27", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-cascade-3/#all-shorthand" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-anchor-positioning.json b/bikeshed/spec-data/readonly/caniuse/feature-css-anchor-positioning.json new file mode 100644 index 0000000000..32fac67272 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-anchor-positioning.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 125", + "Chrome for Android": "y 127", + "Edge": "y 125", + "Firefox": "n 132", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "y 111", + "Opera Mini": "n all", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" + }, + "url": "https://www.w3.org/TR/css-anchor-position-1/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-animation.json b/bikeshed/spec-data/readonly/caniuse/feature-css-animation.json index 00a4c58862..f6c4ede28e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-animation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-animation.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 43", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 30", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-animations/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-any-link.json b/bikeshed/spec-data/readonly/caniuse/feature-css-any-link.json index 4dcc02864f..fa2edf2e9b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-any-link.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-any-link.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 65", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 50", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-4/#the-any-link-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-appearance.json b/bikeshed/spec-data/readonly/caniuse/feature-css-appearance.json index 07b0fdcb21..eed45e1b29 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-appearance.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-appearance.json @@ -1,25 +1,25 @@ { "notes": "WebKit, Blink, and Gecko browsers also support additional vendor specific values.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 84", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 84", "Firefox": "y 80", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "a 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 73", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 14.0", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-ui-4/#appearance-switching" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-at-counter-style.json b/bikeshed/spec-data/readonly/caniuse/feature-css-at-counter-style.json index 2143824634..5a5b3dda0f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-at-counter-style.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-at-counter-style.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "a 109", - "Baidu Browser": "a 13.18", + "Android Browser": "a 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 91", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 91", "Firefox": "a 33", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "a 77", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", + "Safari": "a 17.0", + "Safari on iOS": "a 17.0", "Samsung Internet": "a 16.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-counter-styles/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-backdrop-filter.json b/bikeshed/spec-data/readonly/caniuse/feature-css-backdrop-filter.json index e6405f9402..5f933d399b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-backdrop-filter.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-backdrop-filter.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 76", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 103", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 18.0", + "Safari on iOS": "y 18.0", "Samsung Internet": "y 12.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-background-offsets.json b/bikeshed/spec-data/readonly/caniuse/feature-css-background-offsets.json index 479de95759..e0ca21cfa3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-background-offsets.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-background-offsets.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 13", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#background-position" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-backgroundblendmode.json b/bikeshed/spec-data/readonly/caniuse/feature-css-backgroundblendmode.json index aebbb234da..051f083fc6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-backgroundblendmode.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-backgroundblendmode.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 47", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 30", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 34", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/compositing-1/#propdef-background-blend-mode" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-boxdecorationbreak.json b/bikeshed/spec-data/readonly/caniuse/feature-css-boxdecorationbreak.json index 982ee3c6b9..41d947a09b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-boxdecorationbreak.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-boxdecorationbreak.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", "Firefox": "y 32", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "Opera": "n 111", "Opera Mini": "a all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css3-break/#break-decoration" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-boxshadow.json b/bikeshed/spec-data/readonly/caniuse/feature-css-boxshadow.json index b30013b9b3..4cd1036b02 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-boxshadow.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-boxshadow.json @@ -2,24 +2,24 @@ "notes": "Can be partially emulated in older IE versions using the non-standard \"shadow\" filter.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 10", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#box-shadow" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-canvas.json b/bikeshed/spec-data/readonly/caniuse/feature-css-canvas.json index 5fb7e508d9..ff3b887001 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-canvas.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-canvas.json @@ -1,25 +1,25 @@ { "notes": "A similar effect can be achieved in Firefox 4+ using the -moz-element() background property", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://webkit.org/blog/176/css-canvas-drawing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-caret-color.json b/bikeshed/spec-data/readonly/caniuse/feature-css-caret-color.json index 7a5a7dd1f9..e1ca886860 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-caret-color.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-caret-color.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 57", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 53", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 44", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-ui-3/#caret-color" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-layers.json b/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-layers.json index 0e33696b23..a55c8e5cf0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-layers.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-layers.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 99", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 99", "Firefox": "y 97", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 86", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 18.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-cascade-5/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-scope.json b/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-scope.json new file mode 100644 index 0000000000..5a473feb00 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-cascade-scope.json @@ -0,0 +1,25 @@ +{ + "notes": "This implementation replaces an older concept of [scoping CSS rules](https://caniuse.com/style-scoped).", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 118", + "Chrome for Android": "y 127", + "Edge": "y 118", + "Firefox": "n 132", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "y 106", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.4", + "Safari on iOS": "y 17.4", + "Samsung Internet": "y 25", + "UC Browser for Android": "n 15.5" + }, + "url": "https://drafts.csswg.org/css-cascade-6/#scoped-styles" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-case-insensitive.json b/bikeshed/spec-data/readonly/caniuse/feature-css-case-insensitive.json index 9db1a8c31f..9980d76d5c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-case-insensitive.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-case-insensitive.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 47", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors-4/#attribute-case" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-clip-path.json b/bikeshed/spec-data/readonly/caniuse/feature-css-clip-path.json index 5b63f7dcf8..5d18584243 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-clip-path.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-clip-path.json @@ -1,25 +1,25 @@ { "notes": "Support refers to the `clip-path` CSS property on HTML elements specifically. Support for `clip-path` in SVG is supported in all browsers with [basic SVG](#feat=svg) support.", "support": { - "Android Browser": "a 109", - "Baidu Browser": "a 13.18", + "Android Browser": "a 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 55", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "y 54", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "a 42", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 13.1", "Safari on iOS": "a 13.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "a 13.4" + "Samsung Internet": "a 6.2", + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/css-masking-1/#the-clip-path" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-color-adjust.json b/bikeshed/spec-data/readonly/caniuse/feature-css-color-adjust.json index 65d04fa990..eab0d9b3ba 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-color-adjust.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-color-adjust.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "u 13.18", + "Android Browser": "n 127", + "Baidu Browser": "u 13.52", "Blackberry Browser": "u 10", - "Chrome": "n 112", - "Chrome for Android": "u 109", - "Edge": "n 109", + "Chrome": "n 130", + "Chrome for Android": "u 127", + "Edge": "n 127", "Firefox": "y 48", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "u 11", "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", - "Samsung Internet": "u 19.0", - "UC Browser for Android": "u 13.4" + "Samsung Internet": "u 25", + "UC Browser for Android": "u 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-color-adjust-1/#propdef-print-color-adjust" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-color-function.json b/bikeshed/spec-data/readonly/caniuse/feature-css-color-function.json index 88a0f22205..e2f23a0e0a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-color-function.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-color-function.json @@ -1,25 +1,25 @@ { "notes": "For this function to work properly, the device screen and OS also needs to support the color space being used.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 111", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome for Android": "y 127", + "Edge": "y 111", + "Firefox": "y 113", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 98", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15", "Safari on iOS": "y 15.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 22", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-color/#color-function" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-conic-gradients.json b/bikeshed/spec-data/readonly/caniuse/feature-css-conic-gradients.json index f5a2cf358f..b66d58face 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-conic-gradients.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-conic-gradients.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 69", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 83", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "y 64", + "KaiOS Browser": "y 3.0", + "Opera": "y 56", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12.1", "Safari on iOS": "y 12.2", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-images-4/#conic-gradients" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries-style.json b/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries-style.json new file mode 100644 index 0000000000..c069798ab1 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries-style.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "a 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "a 111", + "Chrome for Android": "a 127", + "Edge": "a 111", + "Firefox": "n 132", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "a 98", + "Opera Mini": "n all", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", + "Safari": "a 18.0", + "Safari on iOS": "a 18.0", + "Samsung Internet": "a 22", + "UC Browser for Android": "n 15.5" + }, + "url": "https://www.w3.org/TR/css-contain-3/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries.json b/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries.json index 0710f388ac..bb1747dbaf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-container-queries.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 106", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 106", "Firefox": "y 110", - "Firefox for Android": "n 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "a 91", + "KaiOS Browser": "n 3.0", + "Opera": "y 94", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 20", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-contain-3/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-container-query-units.json b/bikeshed/spec-data/readonly/caniuse/feature-css-container-query-units.json index bed2ef8ed8..cf9bd0a998 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-container-query-units.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-container-query-units.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 105", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 105", "Firefox": "y 110", - "Firefox for Android": "n 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 91", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 20", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-contain-3/#container-lengths" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-containment.json b/bikeshed/spec-data/readonly/caniuse/feature-css-containment.json index cbfabc4460..6d9c21632d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-containment.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-containment.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 52", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 69", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 40", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-contain-1/#contain-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-content-visibility.json b/bikeshed/spec-data/readonly/caniuse/feature-css-content-visibility.json index 1b4bac961d..54a4ad4329 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-content-visibility.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-content-visibility.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 85", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 85", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 125", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 71", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 18.0", + "Safari on iOS": "y 18.0", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-contain-2/#content-visibility" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-counters.json b/bikeshed/spec-data/readonly/caniuse/feature-css-counters.json index 66489c694c..aa90983c4d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-counters.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-counters.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/generate.html#counters" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-crisp-edges.json b/bikeshed/spec-data/readonly/caniuse/feature-css-crisp-edges.json index 875c0e435f..9ebdbe43d4 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-crisp-edges.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-crisp-edges.json @@ -1,25 +1,25 @@ { "notes": "Note that prefixes apply to the value (e.g. `-moz-crisp-edges`), not the `image-rendering` property.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 65", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 28", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-images-3/#valdef-image-rendering-crisp-edges" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-cross-fade.json b/bikeshed/spec-data/readonly/caniuse/feature-css-cross-fade.json index b291336aba..7fde391276 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-cross-fade.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-cross-fade.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-images-4/#cross-fade-function" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-default-pseudo.json b/bikeshed/spec-data/readonly/caniuse/feature-css-default-pseudo.json index 4c0c10cc0f..8ea7d59ea4 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-default-pseudo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-default-pseudo.json @@ -1,25 +1,25 @@ { "notes": "Whether `<option selected>` matches `:default` (per the spec) was not tested since `<select>`s and `<option>`s are generally not styleable, which makes it hard to formulate a test for this.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 51", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 38", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-4/#the-default-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-descendant-gtgt.json b/bikeshed/spec-data/readonly/caniuse/feature-css-descendant-gtgt.json index 7fe650d064..0fa5bc79f8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-descendant-gtgt.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-descendant-gtgt.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-4/#descendant-combinators" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-deviceadaptation.json b/bikeshed/spec-data/readonly/caniuse/feature-css-deviceadaptation.json index 2020cb86d0..62bf53d973 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-deviceadaptation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-deviceadaptation.json @@ -1,25 +1,25 @@ { "notes": "Due to lack of implementation this specification [is slated to be retired](https://github.com/w3c/csswg-drafts/issues/4766).", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-device-adapt/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-dir-pseudo.json b/bikeshed/spec-data/readonly/caniuse/feature-css-dir-pseudo.json index 06e3d1e20f..392601336f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-dir-pseudo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-dir-pseudo.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "y 120", + "Chrome for Android": "y 127", + "Edge": "y 120", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "y 3.0", + "Opera": "y 106", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", + "Samsung Internet": "y 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/selectors4/#the-dir-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-display-contents.json b/bikeshed/spec-data/readonly/caniuse/feature-css-display-contents.json index 5ffcfaf927..db94d78264 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-display-contents.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-display-contents.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "a 109", - "Baidu Browser": "a 13.18", + "Android Browser": "a 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 65", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "a 37", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "a 52", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 11.1", - "Safari on iOS": "a 11.3", + "Safari on iOS": "y 17.0", "Samsung Internet": "a 9.2", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-display/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-element-function.json b/bikeshed/spec-data/readonly/caniuse/feature-css-element-function.json index ae348807df..c7f5e80f6a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-element-function.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-element-function.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css4-images/#element-notation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-env-function.json b/bikeshed/spec-data/readonly/caniuse/feature-css-env-function.json index 2a4a0fa904..b5522e9206 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-env-function.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-env-function.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 69", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 65", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 56", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-env-1/#env-function" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-exclusions.json b/bikeshed/spec-data/readonly/caniuse/feature-css-exclusions.json index 8be668fb2c..ea2187dbf1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-exclusions.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-exclusions.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css3-exclusions/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-featurequeries.json b/bikeshed/spec-data/readonly/caniuse/feature-css-featurequeries.json index 72ea7b6211..61aa00c228 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-featurequeries.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-featurequeries.json @@ -2,24 +2,24 @@ "notes": "See also the [CSS.supports() DOM API](css-supports-api)", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 28", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 22", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "y all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-conditional/#at-supports" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-filter-function.json b/bikeshed/spec-data/readonly/caniuse/feature-css-filter-function.json index db3cace394..fef24e2563 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-filter-function.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-filter-function.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 9.1", "Safari on iOS": "y 10.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/filter-effects/#FilterCSSImageValue" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-filters.json b/bikeshed/spec-data/readonly/caniuse/feature-css-filters.json index efc488ba59..bd0a15f039 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-filters.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-filters.json @@ -1,25 +1,25 @@ { "notes": "Note that this property is significantly different from and incompatible with Microsoft's [older \"filter\" property](http://msdn.microsoft.com/en-us/library/ie/ms530752%28v=vs.85%29.aspx).", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 53", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 35", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 40", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/filter-effects-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-first-letter.json b/bikeshed/spec-data/readonly/caniuse/feature-css-first-letter.json index e8bf94e741..ad825b63aa 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-first-letter.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-first-letter.json @@ -2,24 +2,24 @@ "notes": "The spec says that both letters of digraphs which are always capitalized together (such as \"IJ\" in Dutch) should be matched by ::first-letter, but no browser has ever implemented this.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 9", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-selectors/#first-letter" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-first-line.json b/bikeshed/spec-data/readonly/caniuse/feature-css-first-line.json index 79e488717e..117dacfa1f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-first-line.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-first-line.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-3/#first-line" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-fixed.json b/bikeshed/spec-data/readonly/caniuse/feature-css-fixed.json index 98b9958a27..3a0f8192eb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-fixed.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-fixed.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 7", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/visuren.html#fixed-positioning" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-focus-visible.json b/bikeshed/spec-data/readonly/caniuse/feature-css-focus-visible.json index f3dd225774..a91cbe5dce 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-focus-visible.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-focus-visible.json @@ -1,25 +1,25 @@ { "notes": "Previously drafted as `:focus-ring`", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 86", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 86", "Firefox": "y 85", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 72", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-4/#the-focus-visible-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-focus-within.json b/bikeshed/spec-data/readonly/caniuse/feature-css-focus-within.json index cdbd88af6e..d17d273ba3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-focus-within.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-focus-within.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 60", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 47", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-4/#the-focus-within-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-font-palette.json b/bikeshed/spec-data/readonly/caniuse/feature-css-font-palette.json index 9e645c0680..6879b142d0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-font-palette.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-font-palette.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 101", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 105", "Firefox": "y 107", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 87", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 19.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-fonts-4/#propdef-font-palette" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-font-rendering-controls.json b/bikeshed/spec-data/readonly/caniuse/feature-css-font-rendering-controls.json index 9ec7313c16..55fad6547c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-font-rendering-controls.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-font-rendering-controls.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 60", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 58", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 47", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-fonts-4/#font-display-desc" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-font-stretch.json b/bikeshed/spec-data/readonly/caniuse/feature-css-font-stretch.json index 9b616fd0f0..b54500334f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-font-stretch.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-font-stretch.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 48", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 9", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 35", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-fonts-3/#font-stretch-prop" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-gencontent.json b/bikeshed/spec-data/readonly/caniuse/feature-css-gencontent.json index 7f4ccf9429..dcb239318d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-gencontent.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-gencontent.json @@ -2,24 +2,24 @@ "notes": "For content to appear in pseudo-elements, the `content` property must be set (but may be an empty string).", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/generate.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-gradients.json b/bikeshed/spec-data/readonly/caniuse/feature-css-gradients.json index 7cbb5b0426..ff4818f9a5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-gradients.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-gradients.json @@ -2,24 +2,24 @@ "notes": "Syntax used by browsers with prefixed support may be incompatible with that for proper support.\r\n\r\nSupport can be somewhat emulated in older IE versions using the non-standard \"gradient\" filter. \r\n\r\nFirefox 10+, Opera 11.6+, Chrome 26+ and IE10+ also support the new \"to (side)\" syntax.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-images/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-grid.json b/bikeshed/spec-data/readonly/caniuse/feature-css-grid.json index 07609d836c..8e351fddbd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-grid.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-grid.json @@ -1,25 +1,25 @@ { "notes": "See also support for [subgrids](#feat=css-subgrid)", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 57", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 44", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-grid-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-hanging-punctuation.json b/bikeshed/spec-data/readonly/caniuse/feature-css-hanging-punctuation.json index 50ee634769..735774ca6e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-hanging-punctuation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-hanging-punctuation.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-text-3/#hanging-punctuation-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-has.json b/bikeshed/spec-data/readonly/caniuse/feature-css-has.json index 361f43779d..5269682bac 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-has.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-has.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 105", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 105", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 121", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 91", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 20", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors-4/#relational" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-hyphens.json b/bikeshed/spec-data/readonly/caniuse/feature-css-hyphens.json index 28805f1d19..2c944e7a42 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-hyphens.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-hyphens.json @@ -1,25 +1,25 @@ { "notes": "Chrome < 55 and Android 4.0 Browser support \"-webkit-hyphens: none\", but not the \"auto\" property. It is [advisable to set the @lang attribute](http://blog.adrianroselli.com/2015/01/on-use-of-lang-attribute.html) on the HTML element to enable hyphenation support and improve accessibility.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 88", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 105", "Firefox": "y 43", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 91", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-text/#hyphenation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-image-orientation.json b/bikeshed/spec-data/readonly/caniuse/feature-css-image-orientation.json index 8bdae0d906..d832088cca 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-image-orientation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-image-orientation.json @@ -1,25 +1,25 @@ { "notes": "Opening the image in a new tab in Chrome results in the image shown in the orientation according to the EXIF data.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 81", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 81", "Firefox": "y 26", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 68", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 13.1", "Safari on iOS": "y 14.0", "Samsung Internet": "y 13.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-images-3/#the-image-orientation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-image-set.json b/bikeshed/spec-data/readonly/caniuse/feature-css-image-set.json index 0d2a8a97f5..e3dfb15b30 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-image-set.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-image-set.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "a 110", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "y 113", + "Chrome for Android": "y 127", + "Edge": "y 113", "Firefox": "y 89", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 99", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "a 10", - "Safari on iOS": "a 10.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", + "Samsung Internet": "y 23", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-images-4/#image-set-notation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-in-out-of-range.json b/bikeshed/spec-data/readonly/caniuse/feature-css-in-out-of-range.json index b34e31f53f..bc5da0e578 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-in-out-of-range.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-in-out-of-range.json @@ -1,25 +1,25 @@ { "notes": "Note that `<input type=\"range\">` can never match `:out-of-range` because the user cannot input such a value, and if the initial value is outside the range, the browser immediately clamps it to the minimum or maximum (as appropriate) bound of the range.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 53", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 50", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 40", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors4/#range-pseudos" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-indeterminate-pseudo.json b/bikeshed/spec-data/readonly/caniuse/feature-css-indeterminate-pseudo.json index 62bac2af55..101b85faa5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-indeterminate-pseudo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-indeterminate-pseudo.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 39", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 26", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors-4/#indeterminate" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-initial-letter.json b/bikeshed/spec-data/readonly/caniuse/feature-css-initial-letter.json index be5be0ed3f..4d6e0ce843 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-initial-letter.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-initial-letter.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "a 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "a 110", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome for Android": "a 127", + "Edge": "a 110", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "a 98", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "a 21", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-inline/#initial-letter-styling" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-initial-value.json b/bikeshed/spec-data/readonly/caniuse/feature-css-initial-value.json index 20e8cd29f1..56d4065b77 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-initial-value.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-initial-value.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 19", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-values/#common-keywords" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-lch-lab.json b/bikeshed/spec-data/readonly/caniuse/feature-css-lch-lab.json index 8f8a5f5ad1..b09ed8648f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-lch-lab.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-lch-lab.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 111", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome for Android": "y 127", + "Edge": "y 111", + "Firefox": "y 113", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 98", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15", "Safari on iOS": "y 15.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 22", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-color-4/#specifying-lab-lch" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-letter-spacing.json b/bikeshed/spec-data/readonly/caniuse/feature-css-letter-spacing.json index 0d3e9fb103..8e52286471 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-letter-spacing.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-letter-spacing.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 30", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS2/text.html#propdef-letter-spacing" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-line-clamp.json b/bikeshed/spec-data/readonly/caniuse/feature-css-line-clamp.json index b908a2ea85..2c8895cc40 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-line-clamp.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-line-clamp.json @@ -1,25 +1,25 @@ { "notes": "Older (presto-based) versions of the Opera browser have also supported the same effect using the proprietary `-o-ellipsis-lastline;` value for `text-overflow`.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-overflow-3/#propdef--webkit-line-clamp" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-logical-props.json b/bikeshed/spec-data/readonly/caniuse/feature-css-logical-props.json index 6817cfdf12..e2f97aa5e8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-logical-props.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-logical-props.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 89", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 89", "Firefox": "y 66", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 76", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "y 15", "Safari on iOS": "y 15.0", "Samsung Internet": "y 15.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-logical-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-marker-pseudo.json b/bikeshed/spec-data/readonly/caniuse/feature-css-marker-pseudo.json index 616f910f3f..e2de39e5e1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-marker-pseudo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-marker-pseudo.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 86", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 86", "Firefox": "y 68", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 72", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-pseudo-4/#marker-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-masks.json b/bikeshed/spec-data/readonly/caniuse/feature-css-masks.json index 0a41828072..7528514c6c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-masks.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-masks.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "y 120", + "Chrome for Android": "y 127", + "Edge": "y 120", "Firefox": "y 53", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", - "Opera": "n 92", + "KaiOS Browser": "y 3.0", + "Opera": "y 106", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-masking-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-matches-pseudo.json b/bikeshed/spec-data/readonly/caniuse/feature-css-matches-pseudo.json index a177a0fc4b..9b23d385cd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-matches-pseudo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-matches-pseudo.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 88", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 88", "Firefox": "y 78", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 75", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 14", "Safari on iOS": "y 14.0", "Samsung Internet": "y 15.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors4/#matches" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-math-functions.json b/bikeshed/spec-data/readonly/caniuse/feature-css-math-functions.json index 65a28b79e9..8a97f2b8d7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-math-functions.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-math-functions.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 79", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 75", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 66", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 13.1", "Safari on iOS": "y 13.4", "Samsung Internet": "y 12.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-values-4/#math-function" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-media-interaction.json b/bikeshed/spec-data/readonly/caniuse/feature-css-media-interaction.json index b76c2881d5..2572aa798c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-media-interaction.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-media-interaction.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 64", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 28", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/mediaqueries-4/#mf-interaction" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-media-range-syntax.json b/bikeshed/spec-data/readonly/caniuse/feature-css-media-range-syntax.json index 038dc0c266..5c009cf2e1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-media-range-syntax.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-media-range-syntax.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 104", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 104", "Firefox": "y 63", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 91", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", + "Samsung Internet": "y 20", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/mediaqueries-4/#mq-range-context" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-media-resolution.json b/bikeshed/spec-data/readonly/caniuse/feature-css-media-resolution.json index e983ca9771..45654ee00d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-media-resolution.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-media-resolution.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 68", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 62", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 55", "Opera Mini": "a all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/mediaqueries-4/#resolution" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-mediaqueries.json b/bikeshed/spec-data/readonly/caniuse/feature-css-mediaqueries.json index d509c23f11..eaf29f0b75 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-mediaqueries.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-mediaqueries.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-mediaqueries/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-mixblendmode.json b/bikeshed/spec-data/readonly/caniuse/feature-css-mixblendmode.json index 4dfbac6b1b..b959c91405 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-mixblendmode.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-mixblendmode.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 32", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 29", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "a 7.1", "Safari on iOS": "a 8", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/compositing-1/#mix-blend-mode" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-motion-paths.json b/bikeshed/spec-data/readonly/caniuse/feature-css-motion-paths.json index d45445f966..ea064b337b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-motion-paths.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-motion-paths.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 46", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 72", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 33", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/motion-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-namespaces.json b/bikeshed/spec-data/readonly/caniuse/feature-css-namespaces.json index 6c1d7f0f1d..bd9e6e3d3c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-namespaces.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-namespaces.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-namespaces/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-nesting.json b/bikeshed/spec-data/readonly/caniuse/feature-css-nesting.json index 4d5854165c..7f18fe1d59 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-nesting.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-nesting.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "y 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "y 120", + "Chrome for Android": "y 127", + "Edge": "y 120", + "Firefox": "y 117", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 106", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.2", + "Safari on iOS": "y 17.2", + "Samsung Internet": "a 23", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-nesting/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-not-sel-list.json b/bikeshed/spec-data/readonly/caniuse/feature-css-not-sel-list.json index 6a0f47a973..a5222aee45 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-not-sel-list.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-not-sel-list.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 88", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 88", "Firefox": "y 84", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 75", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 15.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors4/#negation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-nth-child-of.json b/bikeshed/spec-data/readonly/caniuse/feature-css-nth-child-of.json index a9591aa95e..2832e7e7b6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-nth-child-of.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-nth-child-of.json @@ -1,25 +1,25 @@ { "notes": "For support information for just `:nth-child()` see [CSS3 selector support](#feat=css-sel3)", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 111", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome for Android": "y 127", + "Edge": "y 111", + "Firefox": "y 113", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 98", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 22", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/selectors/#the-nth-child-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-opacity.json b/bikeshed/spec-data/readonly/caniuse/feature-css-opacity.json index 3586b99206..9afef69906 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-opacity.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-opacity.json @@ -2,24 +2,24 @@ "notes": "Transparency for elements in IE8 and older can be achieved using the proprietary \"filter\" property and does not work well with PNG images using alpha transparency.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-color/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-optional-pseudo.json b/bikeshed/spec-data/readonly/caniuse/feature-css-optional-pseudo.json index bc52b6b57a..abec588690 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-optional-pseudo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-optional-pseudo.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors-4/#optional-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-anchor.json b/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-anchor.json index b554ca6f7e..499f6adc5d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-anchor.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-anchor.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 66", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 43", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-scroll-anchoring/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-overlay.json b/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-overlay.json index 49f2fc83e9..3fc4fe2c61 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-overlay.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-overflow-overlay.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", - "Chrome": "y 15", - "Chrome for Android": "y 109", - "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "y 15", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://github.com/w3c/csswg-drafts/issues/92" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-overflow.json b/bikeshed/spec-data/readonly/caniuse/feature-css-overflow.json index 89413a1def..7927e13c44 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-overflow.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-overflow.json @@ -1,25 +1,25 @@ { "notes": "Effectively all browsers support the CSS 2.1 definition for single-value `overflow` as well as `overflow-x` & `overflow-y` and values `visible`, `hidden`, `scroll` & `auto`", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 90", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 90", "Firefox": "y 81", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 5.5", "IE Mobile": "a 10", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 76", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 15.0", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/css-overflow-3/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-overscroll-behavior.json b/bikeshed/spec-data/readonly/caniuse/feature-css-overscroll-behavior.json index bb902869f4..8092d2a9f6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-overscroll-behavior.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-overscroll-behavior.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 65", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 59", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, - "url": "https://w3c.github.io/csswg-drafts/css-overscroll-behavior-1/" + "url": "https://drafts.csswg.org/css-overscroll/#overscroll-behavior-properties" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-page-break.json b/bikeshed/spec-data/readonly/caniuse/feature-css-page-break.json index 317a24074b..023d7047a4 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-page-break.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-page-break.json @@ -1,25 +1,25 @@ { "notes": "Not all mobile browsers offer print support; support listed for these is based on browser engine capability.", "support": { - "Android Browser": "a 2.1", - "Baidu Browser": "a 13.18", + "Android Browser": "y 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 7", - "Chrome": "a 4", - "Chrome for Android": "a 109", - "Edge": "a 12", + "Chrome": "y 108", + "Chrome for Android": "a 127", + "Edge": "y 108", "Firefox": "a 2", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 5.5", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", - "Opera": "a 15", + "Opera": "y 94", "Opera Mini": "y all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 10", + "QQ Browser": "a 14.9", "Safari": "a 3.1", "Safari on iOS": "a 3.2", - "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "Samsung Internet": "y 21", + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/CSS2/page.html#page-breaks" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-paged-media.json b/bikeshed/spec-data/readonly/caniuse/feature-css-paged-media.json index 1ea31c75a7..b6ae18e922 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-paged-media.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-paged-media.json @@ -1,25 +1,25 @@ { "notes": "Currently no browsers appear to support the `marks` & `bleed` properties from the latest version of the specification.\r\n\r\n", "support": { - "Android Browser": "u 109", - "Baidu Browser": "y 13.18", + "Android Browser": "u 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "a 19", - "Firefox for Android": "a 107", + "Firefox": "y 95", + "Firefox for Android": "y 127", "IE": "a 8", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "y 15", "Opera Mini": "u all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-page-3/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-paint-api.json b/bikeshed/spec-data/readonly/caniuse/feature-css-paint-api.json index a3519b8f9c..7f76ffad25 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-paint-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-paint-api.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 65", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "y 9.2", + "UC Browser for Android": "y 15.5" }, "url": "https://drafts.css-houdini.org/css-paint-api/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder-shown.json b/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder-shown.json index 0edc50f472..dfe31dd7a6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder-shown.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder-shown.json @@ -1,25 +1,25 @@ { "notes": "For support of styling the actual placeholder text itself, see [CSS ::placeholder](https://caniuse.com/#feat=css-placeholder)", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 47", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 34", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selectors4/#placeholder" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder.json b/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder.json index b1b63b4f7e..8641d34926 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-placeholder.json @@ -1,25 +1,25 @@ { "notes": "Partial support refers to using alternate names:\r\n`::-webkit-input-placeholder` for Chrome/Safari/Opera ([Chrome issue #623345](https://bugs.chromium.org/p/chromium/issues/detail?id=623345)) \r\n`::-ms-input-placeholder` for Edge (also supports webkit prefix)", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 57", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 44", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-pseudo-4/#placeholder-pseudo" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-read-only-write.json b/bikeshed/spec-data/readonly/caniuse/feature-css-read-only-write.json index 4e4894ff86..f86d4906cc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-read-only-write.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-read-only-write.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 78", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 23", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics-other.html#selector-read-only" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-rebeccapurple.json b/bikeshed/spec-data/readonly/caniuse/feature-css-rebeccapurple.json index e825ac6dde..6f8b8332f1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-rebeccapurple.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-rebeccapurple.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 33", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-reflections.json b/bikeshed/spec-data/readonly/caniuse/feature-css-reflections.json index 5345397f12..228b6d3739 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-reflections.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-reflections.json @@ -1,25 +1,25 @@ { "notes": "Similar effect can be achieved in Firefox 4+ using the -moz-element() background property", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://webkit.org/blog/182/css-reflections/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-regions.json b/bikeshed/spec-data/readonly/caniuse/feature-css-regions.json index 765da4a705..f1267acd3a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-regions.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-regions.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css3-regions/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-relative-colors.json b/bikeshed/spec-data/readonly/caniuse/feature-css-relative-colors.json new file mode 100644 index 0000000000..bc55876c7f --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-relative-colors.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "a 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "a 119", + "Chrome for Android": "a 127", + "Edge": "a 119", + "Firefox": "a 128", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "a 106", + "Opera Mini": "n all", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", + "Safari": "y 18.0", + "Safari on iOS": "y 18.0", + "Samsung Internet": "a 25", + "UC Browser for Android": "n 15.5" + }, + "url": "https://www.w3.org/TR/css-color-5/#relative-colors" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-repeating-gradients.json b/bikeshed/spec-data/readonly/caniuse/feature-css-repeating-gradients.json index 0c76bbe4f6..37ef2d8f76 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-repeating-gradients.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-repeating-gradients.json @@ -2,24 +2,24 @@ "notes": "Firefox 10+, Chrome 26+ and Opera 11.6+ also support the new \"to (side)\" syntax.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-images/#repeating-gradients" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-resize.json b/bikeshed/spec-data/readonly/caniuse/feature-css-resize.json index f5ead582df..c0266bcb47 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-resize.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-resize.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 4", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-ui/#resize" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-revert-value.json b/bikeshed/spec-data/readonly/caniuse/feature-css-revert-value.json index f2c0fbc028..c3e5b9750e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-revert-value.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-revert-value.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 84", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 84", "Firefox": "y 67", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 73", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-cascade-4/#valdef-all-revert" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-rrggbbaa.json b/bikeshed/spec-data/readonly/caniuse/feature-css-rrggbbaa.json index 664eb4cb90..7efe67a4c0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-rrggbbaa.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-rrggbbaa.json @@ -1,25 +1,25 @@ { "notes": "Only supported in Android WebViews in apps that target Android Pie, due to [this issue](https://bugs.chromium.org/p/chromium/issues/detail?id=618472)", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 62", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-color/#hex-notation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-behavior.json b/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-behavior.json index 6459ce9365..fffb99edfe 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-behavior.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-behavior.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-overflow-3/#smooth-scrolling" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-timeline.json b/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-timeline.json index 8ef0cab8af..96a9823dc5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-timeline.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-scroll-timeline.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/scroll-animations-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-scrollbar.json b/bikeshed/spec-data/readonly/caniuse/feature-css-scrollbar.json index 894f47ad82..3187c74871 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-scrollbar.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-scrollbar.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "a 64", - "Firefox for Android": "n 107", + "Chrome": "y 121", + "Chrome for Android": "y 127", + "Edge": "y 121", + "Firefox": "y 64", + "Firefox for Android": "y 127", "IE": "a 5.5", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 107", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "y 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-scrollbars-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-sel2.json b/bikeshed/spec-data/readonly/caniuse/feature-css-sel2.json index 36fd8fa8ed..87f767560c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-sel2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-sel2.json @@ -2,24 +2,24 @@ "notes": "Support for `:visited` styling [varies across browsers](https://www.webfx.com/blog/web-design/visited-pseudo-class-strange/) due to security concerns.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 7", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/selector.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-sel3.json b/bikeshed/spec-data/readonly/caniuse/feature-css-sel3.json index fbf8dec0c1..c95bcd2e21 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-sel3.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-sel3.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-selectors/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-selection.json b/bikeshed/spec-data/readonly/caniuse/feature-css-selection.json index 4b666a85bd..3aeb8f8b78 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-selection.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-selection.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 62", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 9.5", "Opera Mini": "n all", "Opera Mobile": "y 11.5", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-pseudo-4/#selectordef-selection" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-shapes.json b/bikeshed/spec-data/readonly/caniuse/feature-css-shapes.json index 60030c15e4..1801f8f902 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-shapes.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-shapes.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 62", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-shapes/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-snappoints.json b/bikeshed/spec-data/readonly/caniuse/feature-css-snappoints.json index c1d46515e3..e4a3982bff 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-snappoints.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-snappoints.json @@ -1,25 +1,25 @@ { "notes": "Works in the iOS WKWebView, but not UIWebView.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 69", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 68", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-scroll-snap-1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-sticky.json b/bikeshed/spec-data/readonly/caniuse/feature-css-sticky.json index d3534359e7..94632f86bd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-sticky.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-sticky.json @@ -1,25 +1,25 @@ { - "notes": "Any ancestor between the sticky element and its user-scrollable container with overflow computed as anything but `visible`/`clip` will effectively prevent sticking behavior.", + "notes": "`sticks` to its nearest ancestor that has a `scrolling mechanism` (created when overflow is hidden, scroll, auto, or overlay), even if that ancestor isn't the nearest actually scrolling ancestor", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 91", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 91", "Firefox": "y 59", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 78", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "y 13", "Safari on iOS": "y 13.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-position/#sticky-pos" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-subgrid.json b/bikeshed/spec-data/readonly/caniuse/feature-css-subgrid.json index 3fdb0e359c..f2ed32424d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-subgrid.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-subgrid.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "y 117", + "Chrome for Android": "y 127", + "Edge": "y 117", "Firefox": "y 71", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "y 3.0", + "Opera": "y 103", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 24", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-grid-2/#subgrids" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-supports-api.json b/bikeshed/spec-data/readonly/caniuse/feature-css-supports-api.json index 8166c5df76..d00cb55e2c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-supports-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-supports-api.json @@ -2,24 +2,24 @@ "notes": "See also [@supports in CSS](css-featurequeries)", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 55", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-conditional/#the-css-interface" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-table.json b/bikeshed/spec-data/readonly/caniuse/feature-css-table.json index 0a2da5f693..6cf21fb8d1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-table.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-table.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/tables.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-text-align-last.json b/bikeshed/spec-data/readonly/caniuse/feature-css-text-align-last.json index 31c8e839fb..7841c9d6e1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-text-align-last.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-text-align-last.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 47", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 5.5", "IE Mobile": "a 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 34", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-text/#text-align-last-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-text-box-trim.json b/bikeshed/spec-data/readonly/caniuse/feature-css-text-box-trim.json new file mode 100644 index 0000000000..3e0684e3c7 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-text-box-trim.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", + "Opera Mini": "n all", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "y TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" + }, + "url": "https://w3c.github.io/csswg-drafts/css-inline-3/#propdef-leading-trim" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-text-indent.json b/bikeshed/spec-data/readonly/caniuse/feature-css-text-indent.json index 0b89f70be3..6c83672857 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-text-indent.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-text-indent.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "a 2.1", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 7", "Chrome": "a 4", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", - "Firefox": "a 2", - "Firefox for Android": "a 107", + "Firefox": "y 121", + "Firefox for Android": "a 127", "IE": "a 5.5", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "a 9", "Opera Mini": "a all", "Opera Mobile": "a 10", - "QQ Browser": "a 13.1", + "QQ Browser": "a 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-text-3/#text-indent-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-text-justify.json b/bikeshed/spec-data/readonly/caniuse/feature-css-text-justify.json index 1e50752955..708a99efb0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-text-justify.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-text-justify.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", "Firefox": "y 55", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 8", "IE Mobile": "a 10", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "y 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-text-3/#text-justify-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-text-orientation.json b/bikeshed/spec-data/readonly/caniuse/feature-css-text-orientation.json index ea662a9396..5f587a86a5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-text-orientation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-text-orientation.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 48", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 41", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 35", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-writing-modes-3/#text-orientation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-text-wrap-balance.json b/bikeshed/spec-data/readonly/caniuse/feature-css-text-wrap-balance.json new file mode 100644 index 0000000000..d51b272973 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-text-wrap-balance.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "a 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "a 114", + "Chrome for Android": "a 127", + "Edge": "a 114", + "Firefox": "y 121", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "a 99", + "Opera Mini": "n all", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.5", + "Safari on iOS": "y 17.5", + "Samsung Internet": "a 23", + "UC Browser for Android": "n 15.5" + }, + "url": "https://www.w3.org/TR/css-text-4/#text-wrap" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-textshadow.json b/bikeshed/spec-data/readonly/caniuse/feature-css-textshadow.json index 0a89744ab2..ace26c143c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-textshadow.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-textshadow.json @@ -2,24 +2,24 @@ "notes": "Opera Mini ignores the blur-radius set, so no blur effect is visible. Text-shadow behavior can be somewhat emulated in older IE versions using the non-standard \"dropshadow\" or \"glow\" filters.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "a all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-text-decor-3/#text-shadow-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-touch-action.json b/bikeshed/spec-data/readonly/caniuse/feature-css-touch-action.json index e3e805b42e..f61770e7cd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-touch-action.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-touch-action.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 23", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", "Safari on iOS": "y 13.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/pointerevents/#the-touch-action-css-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-transitions.json b/bikeshed/spec-data/readonly/caniuse/feature-css-transitions.json index 5bb25e6c51..4e712a9605 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-transitions.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-transitions.json @@ -2,24 +2,24 @@ "notes": "Support listed is for `transition` properties as well as the `transitionend` event.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-transitions/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-unset-value.json b/bikeshed/spec-data/readonly/caniuse/feature-css-unset-value.json index 5177e32831..e5b28f29bf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-unset-value.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-unset-value.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 27", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 28", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-cascade-3/#inherit-initial" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-variables.json b/bikeshed/spec-data/readonly/caniuse/feature-css-variables.json index b530c1f762..1d1559a42c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-variables.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-variables.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 31", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-variables/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-when-else.json b/bikeshed/spec-data/readonly/caniuse/feature-css-when-else.json index 8716ea54f3..84b336ea99 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-when-else.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-when-else.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-conditional-5/#when-rule" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-widows-orphans.json b/bikeshed/spec-data/readonly/caniuse/feature-css-widows-orphans.json index 0d034da407..c8a71b1a28 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-widows-orphans.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-widows-orphans.json @@ -2,24 +2,24 @@ "notes": "Some older WebKit-based browsers recognize the properties, but do not appear to have actual support", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 8", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-break-3/#widows-orphans" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-writing-mode.json b/bikeshed/spec-data/readonly/caniuse/feature-css-writing-mode.json index 333f7f13b5..e5b1cce2db 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-writing-mode.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-writing-mode.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 48", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 41", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 5.5", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 35", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-writing-modes-3/#block-flow" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css-zoom.json b/bikeshed/spec-data/readonly/caniuse/feature-css-zoom.json index 74facc8a2d..878118a052 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css-zoom.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css-zoom.json @@ -1,25 +1,25 @@ { - "notes": "Originally implemented only in Internet Explorer. Although several other browsers support the property, using `transform: scale()` is the recommended solution to scale content. Note though that `transform: scale()` does not work the same as `zoom`. If e.g. `transform: scale(0.6)` is used on the `html` or `body` element then it resizes the entire page, showing a minified page with huge white margins around it, whereas `zoom: 0.6` scales the *elements* on the page, but not the page itself on which the elements are drawn.", + "notes": "Originally implemented only in Internet Explorer. Note that `transform: scale()` does not work the same as `zoom`. If e.g. `transform: scale(0.6)` is used on the `html` or `body` element then it resizes the entire page, showing a minified page with huge white margins around it, whereas `zoom: 0.6` scales the *elements* on the page, but not the page itself on which the elements are drawn.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 126", + "Firefox for Android": "y 127", "IE": "y 5.5", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, - "url": "https://developer.mozilla.org/en-US/docs/Web/CSS/zoom" + "url": "https://drafts.csswg.org/css-viewport/#zoom-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-attr.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-attr.json index 8d40ede946..d05b0fea1e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-attr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-attr.json @@ -1,25 +1,25 @@ { "notes": "See the [generated content](/css-gencontent) table for support for `attr()` for the `content` property.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-values-5/#attr-notation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-boxsizing.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-boxsizing.json index 3b1e95427d..cf8191e5a9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-boxsizing.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-boxsizing.json @@ -2,24 +2,24 @@ "notes": "Firefox versions before 57 also supported the `padding-box` value for `box-sizing`, though this value was been removed from the specification and later versions of the browser.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 10", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-sizing/#box-sizing" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-colors.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-colors.json index ba83c7845f..ef0d271c99 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-colors.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-colors.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-color/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-grab.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-grab.json index ac5e4a9397..714a80dd6c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-grab.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-grab.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 68", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 27", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 55", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-ui/#cursor" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-newer.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-newer.json index 7ce4752f19..f063fd7f38 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-newer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors-newer.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 24", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-ui/#cursor" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors.json index 9d376d80b3..024172a2da 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-cursors.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 4", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "y 9", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-ui/#cursor" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-css3-tabsize.json b/bikeshed/spec-data/readonly/caniuse/feature-css3-tabsize.json index a6b3f8bbc1..1f9e0be7d5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-css3-tabsize.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-css3-tabsize.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 42", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 91", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 29", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13.1", "Safari on iOS": "y 13.4", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-text/#tab-size" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-currentcolor.json b/bikeshed/spec-data/readonly/caniuse/feature-currentcolor.json index a773bf4f8f..4306891eb1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-currentcolor.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-currentcolor.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-color/#currentcolor" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-custom-elements.json b/bikeshed/spec-data/readonly/caniuse/feature-custom-elements.json index 1646ef0e21..3b82b4e3f3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-custom-elements.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-custom-elements.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/2016/WD-custom-elements-20160226/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-custom-elementsv1.json b/bikeshed/spec-data/readonly/caniuse/feature-custom-elementsv1.json index f82da20dbc..54fd9adebd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-custom-elementsv1.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-custom-elementsv1.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 63", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "a 10.1", "Safari on iOS": "a 10.3", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#custom-elements" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-customevent.json b/bikeshed/spec-data/readonly/caniuse/feature-customevent.json index 07574236cf..dd2dda37e0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-customevent.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-customevent.json @@ -2,24 +2,24 @@ "notes": "Not supported in some versions of Android's old WebKit-based WebView.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 11", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#interface-customevent" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-datalist.json b/bikeshed/spec-data/readonly/caniuse/feature-datalist.json index 6d09d3f3ed..a13e5bea0e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-datalist.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-datalist.json @@ -2,24 +2,24 @@ "notes": "While most commonly used on text fields, datalists can also be used on other input types. IE11 supports the element on `range` fields. Chrome and Opera also support datalists to suggest given values on `range`, `color` and date/time fields. ", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 69", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 110", - "Firefox for Android": "a 107", + "Firefox for Android": "n 127", "IE": "a 10", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 64", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 12.1", "Safari on iOS": "y 12.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-datalist-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dataset.json b/bikeshed/spec-data/readonly/caniuse/feature-dataset.json index 454e39e92c..843ee9962e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dataset.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dataset.json @@ -2,24 +2,24 @@ "notes": "Partial support refers to being able to use `data-*` attributes and access them using `getAttribute`. \r\n\r\n\"Supported\" refers to accessing the values using the `dataset` property. Current spec only refers to support on HTML elements, only some browsers also have support for SVG/MathML elements.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 7", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 11.1", "Opera Mini": "a all", "Opera Mobile": "y 11.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-datauri.json b/bikeshed/spec-data/readonly/caniuse/feature-datauri.json index 3e5a0d745d..975276df5c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-datauri.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-datauri.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 8", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc2397" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-date-tolocaledatestring.json b/bikeshed/spec-data/readonly/caniuse/feature-date-tolocaledatestring.json index 910ff6b2f7..6146df32ec 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-date-tolocaledatestring.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-date-tolocaledatestring.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 70", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 56", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 6", "IE Mobile": "a 10", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 57", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12", "Safari on iOS": "y 10.3", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma402/#sup-date.prototype.tolocaledatestring" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-declarative-shadow-dom.json b/bikeshed/spec-data/readonly/caniuse/feature-declarative-shadow-dom.json index 5bc7a65e45..99c847c4a0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-declarative-shadow-dom.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-declarative-shadow-dom.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", - "Chrome": "y 90", - "Chrome for Android": "y 109", - "Edge": "y 90", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "y 111", + "Chrome for Android": "y 127", + "Edge": "y 111", + "Firefox": "y 123", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "y 77", + "KaiOS Browser": "n 3.0", + "Opera": "y 97", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "n 16.3", - "Safari on iOS": "n 16.3", - "Samsung Internet": "y 15.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", + "Samsung Internet": "y 22", + "UC Browser for Android": "y 15.5" }, - "url": "https://github.com/mfreed7/declarative-shadow-dom" + "url": "https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootmode" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-decorators.json b/bikeshed/spec-data/readonly/caniuse/feature-decorators.json index 43504152bb..f1f6051587 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-decorators.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-decorators.json @@ -1,25 +1,25 @@ { "notes": "While not yet supported natively in browsers, decorators are supported by a number of transpiler tools. ", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://github.com/tc39/proposal-decorators" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-details.json b/bikeshed/spec-data/readonly/caniuse/feature-details.json index 296add2b7c..6babab5b4b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-details.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-details.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 12", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-details-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-deviceorientation.json b/bikeshed/spec-data/readonly/caniuse/feature-deviceorientation.json index 150dc9b7ac..339b497bd6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-deviceorientation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-deviceorientation.json @@ -2,24 +2,24 @@ "notes": "Partial support refers to the lack of compassneedscalibration event. Partial support also refers to the lack of devicemotion event support for Chrome 30- and Opera. Opera Mobile 14 lost the ondevicemotion event support. Firefox 3.6, 4 and 5 support the non-standard [MozOrientation](https://developer.mozilla.org/en/DOM/MozOrientation) event.", "support": { "Android Browser": "a 3", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 10", "Chrome": "a 7", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "a 6", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 11", "IE Mobile": "y 11", "KaiOS Browser": "a 2.5", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "n TP", "Safari on iOS": "a 4.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/orientation-event/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-devicepixelratio.json b/bikeshed/spec-data/readonly/caniuse/feature-devicepixelratio.json index 6139101178..031e865f23 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-devicepixelratio.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-devicepixelratio.json @@ -2,24 +2,24 @@ "notes": "As the page is zoomed in the number of device pixels that one CSS pixel covers increases, and therefore the value of devicePixelRatio will also increase.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 18", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-devicepixelratio" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dialog.json b/bikeshed/spec-data/readonly/caniuse/feature-dialog.json index a5153f510e..60a03065a8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dialog.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dialog.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 98", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-dialog-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dispatchevent.json b/bikeshed/spec-data/readonly/caniuse/feature-dispatchevent.json index 30c4fb2195..8a46b490ba 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dispatchevent.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dispatchevent.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-eventtarget-dispatchevent" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dnssec.json b/bikeshed/spec-data/readonly/caniuse/feature-dnssec.json index 053adc42ae..d7494bf04e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dnssec.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dnssec.json @@ -2,24 +2,24 @@ "notes": "Browsers have generally decided to not implement DNSSEC validation because the added complexity outweighs the improvements to the browser. DNSSEC is still useful as it is widely used to protect delivery of records between DNS servers, only failing to protect the delivery from the last DNS server to the browser.\r\n\r\n[Certificate transparency](https://developer.mozilla.org/en-US/docs/Web/Security/Certificate_Transparency) is widely used and tries to provide the same security as DNSSEC but by very different means.", "support": { "Android Browser": "a 2.1", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 7", "Chrome": "a 4", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "a 2", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 5.5", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "a 9", "Opera Mini": "a all", "Opera Mobile": "a 10", - "QQ Browser": "a 13.1", + "QQ Browser": "a 14.9", "Safari": "a 3.1", "Safari on iOS": "a 3.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://tools.ietf.org/html/rfc4033" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-do-not-track.json b/bikeshed/spec-data/readonly/caniuse/feature-do-not-track.json index d6418364cc..276ed4f153 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-do-not-track.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-do-not-track.json @@ -2,24 +2,24 @@ "notes": "Partial support refers to the doNotTrack field being misnamed, or being attached to an object other than `navigator` (e.g. `window`).", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 23", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 32", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "a 11", "KaiOS Browser": "y 2.5", "Opera": "y 12", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/tracking-dnt/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-document-currentscript.json b/bikeshed/spec-data/readonly/caniuse/feature-document-currentscript.json index 503449be43..39e0c7c989 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-document-currentscript.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-document-currentscript.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 29", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 16", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 8", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/dom.html#dom-document-currentscript" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-document-evaluate-xpath.json b/bikeshed/spec-data/readonly/caniuse/feature-document-evaluate-xpath.json index 387e2d0c4f..7a3c42bd0a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-document-evaluate-xpath.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-document-evaluate-xpath.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/DOM-Level-3-XPath/xpath.html#XPathEvaluator-evaluate" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-document-execcommand.json b/bikeshed/spec-data/readonly/caniuse/feature-document-execcommand.json index 37bc890ac2..c2da5c263c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-document-execcommand.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-document-execcommand.json @@ -2,24 +2,24 @@ "notes": "To determine what commands are supported, see `Document.queryCommandSupported()`", "support": { "Android Browser": "y 4.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 9", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 5.5", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/editing/execCommand.html#execcommand()" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-document-policy.json b/bikeshed/spec-data/readonly/caniuse/feature-document-policy.json index 93568d81f6..f1421a1931 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-document-policy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-document-policy.json @@ -1,25 +1,25 @@ { "notes": "Standard support includes the HTTP `Document-Policy` header and `policy` attribute on iframes.", "support": { - "Android Browser": "a 109", - "Baidu Browser": "a 13.18", + "Android Browser": "a 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 85", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 85", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "a 71", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/document-policy/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-document-scrollingelement.json b/bikeshed/spec-data/readonly/caniuse/feature-document-scrollingelement.json index 19f9ddfdfd..030358f080 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-document-scrollingelement.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-document-scrollingelement.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 44", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 48", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 31", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/cssom-view/#dom-document-scrollingelement" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-documenthead.json b/bikeshed/spec-data/readonly/caniuse/feature-documenthead.json index 3d4f1cbb41..8fb6f08435 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-documenthead.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-documenthead.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/#dom-document-head" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dom-manip-convenience.json b/bikeshed/spec-data/readonly/caniuse/feature-dom-manip-convenience.json index bf7f9189c1..0aeb5c1587 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dom-manip-convenience.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dom-manip-convenience.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 54", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 41", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#interface-childnode" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dom-range.json b/bikeshed/spec-data/readonly/caniuse/feature-dom-range.json index a7639b123d..07d3687a46 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dom-range.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dom-range.json @@ -2,24 +2,24 @@ "notes": "See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Range) for feature support details", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#ranges" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-domcontentloaded.json b/bikeshed/spec-data/readonly/caniuse/feature-domcontentloaded.json index 1217f61add..898009c538 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-domcontentloaded.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-domcontentloaded.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/syntax.html#stop-parsing" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dommatrix.json b/bikeshed/spec-data/readonly/caniuse/feature-dommatrix.json index bb01275784..45ebfbb082 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dommatrix.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dommatrix.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "a 4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 10", "Chrome": "a 8", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "a 33", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 10", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 5", "Safari on iOS": "a 5.0", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://drafts.fxtf.org/geometry/#dommatrix" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-download.json b/bikeshed/spec-data/readonly/caniuse/feature-download.json index 470b8a8666..4775999e9c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-download.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-download.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 14", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 20", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 13.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#downloading-resources" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-dragndrop.json b/bikeshed/spec-data/readonly/caniuse/feature-dragndrop.json index 2d459f02e5..b49edc9bcd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-dragndrop.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-dragndrop.json @@ -1,25 +1,25 @@ { "notes": "`dataTransfer.items` only supported by Chrome.\r\n\r\nCurrently no browser supports the `dropzone` attribute.\r\n\r\nFirefox supports any kind of DOM elements for `.setDragImage`. Chrome must have either an `HTMLImageElement` or any kind of DOM Element attached to the DOM _and within the viewport_ of the browser for `.setDragImage`.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 3.5", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "a 5.5", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 12", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 15.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/interaction.html#dnd" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-element-closest.json b/bikeshed/spec-data/readonly/caniuse/feature-element-closest.json index df24b7dac7..1db3d09410 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-element-closest.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-element-closest.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 35", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 28", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-element-closest" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-element-from-point.json b/bikeshed/spec-data/readonly/caniuse/feature-element-from-point.json index c5eb345dbd..b3e1b78e52 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-element-from-point.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-element-from-point.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/cssom-view-1/#dom-document-elementfrompoint" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-element-scroll-methods.json b/bikeshed/spec-data/readonly/caniuse/feature-element-scroll-methods.json index c8522ec32d..acb4f35041 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-element-scroll-methods.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-element-scroll-methods.json @@ -1,25 +1,25 @@ { "notes": "See also the support for the [`scrollIntoView` method](/#feat=scrollintoview).", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14", "Safari on iOS": "y 14.5", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/cssom-view-1/#extension-to-the-element-interface" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-eme.json b/bikeshed/spec-data/readonly/caniuse/feature-eme.json index e100d4aaad..140bb8eb4d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-eme.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-eme.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 42", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 29", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12", "Safari on iOS": "y 11.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/encrypted-media/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-eot.json b/bikeshed/spec-data/readonly/caniuse/feature-eot.json index 5fb4a5773b..5c487c8dfa 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-eot.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-eot.json @@ -1,25 +1,25 @@ { "notes": "Proposal by Microsoft, being considered for W3C standardization.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 6", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/Submission/EOT/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es5.json b/bikeshed/spec-data/readonly/caniuse/feature-es5.json index 0fe2d73155..40ec14b91c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es5.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es5.json @@ -1,25 +1,25 @@ { - "notes": "As the specification includes many JavaScript features, un-numbered partial support varies widely and is shown in detail on the [ECMAScript 5 compatibility tables](http://kangax.github.io/compat-table/es5/) by Kangax.", + "notes": "As the specification includes many JavaScript features, un-numbered partial support varies widely and is shown in detail on the [ECMAScript 5 compatibility tables](https://compat-table.github.io/compat-table/es5/) by Kangax.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 23", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 21", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.ecma-international.org/ecma-262/5.1/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6-class.json b/bikeshed/spec-data/readonly/caniuse/feature-es6-class.json index f021f7972a..687a3b4209 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6-class.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6-class.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 45", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-class-definitions" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6-generators.json b/bikeshed/spec-data/readonly/caniuse/feature-es6-generators.json index f479b28275..fa5988a104 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6-generators.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6-generators.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 39", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 26", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 26", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-generator-function-definitions" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6-module-dynamic-import.json b/bikeshed/spec-data/readonly/caniuse/feature-es6-module-dynamic-import.json index 06842c1613..62b1c85090 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6-module-dynamic-import.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6-module-dynamic-import.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 63", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 67", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 50", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-import-calls" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6-module.json b/bikeshed/spec-data/readonly/caniuse/feature-es6-module.json index 23f17a8a71..5d44a7d2dc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6-module.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6-module.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 60", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#attr-script-type" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6-number.json b/bikeshed/spec-data/readonly/caniuse/feature-es6-number.json index 55d9a261ce..c7a1b2bd77 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6-number.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6-number.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 34", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 32", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 21", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-number-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6-string-includes.json b/bikeshed/spec-data/readonly/caniuse/feature-es6-string-includes.json index b6e7152616..f9cde6fcea 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6-string-includes.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6-string-includes.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 40", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 28", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-string.prototype.includes" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-es6.json b/bikeshed/spec-data/readonly/caniuse/feature-es6.json index d0e93e8e8f..2ac0a9b8d8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-es6.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-es6.json @@ -1,25 +1,25 @@ { - "notes": "As ES6 refers to a huge specification and browsers have various levels of support, \"Supported\" means at least 95% of the spec is supported. \"Partial support\" refers to at least 10% of the spec being supported. For full details see the [Kangax ES6 support table](https://kangax.github.io/compat-table/es6/).", + "notes": "As ES6 refers to a huge specification and browsers have various levels of support, \"Supported\" means at least 95% of the spec is supported. \"Partial support\" refers to at least 10% of the spec being supported. For full details see the [Kangax ES6 support table](https://compat-table.github.io/compat-table/es6/).", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 51", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 54", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "a 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 38", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-eventsource.json b/bikeshed/spec-data/readonly/caniuse/feature-eventsource.json index 3caa248c85..61d5bfaa9e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-eventsource.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-eventsource.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 6", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "n all", "Opera Mobile": "y 11.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/comms.html#server-sent-events" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-extended-system-fonts.json b/bikeshed/spec-data/readonly/caniuse/feature-extended-system-fonts.json index bd313eb26f..956000467f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-extended-system-fonts.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-extended-system-fonts.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 13.1", "Safari on iOS": "y 13.4", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-fonts-4/#ui-serif-def" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-feature-policy.json b/bikeshed/spec-data/readonly/caniuse/feature-feature-policy.json index 6f2d11c169..5542693676 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-feature-policy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-feature-policy.json @@ -1,25 +1,25 @@ { "notes": "Standard support includes the HTTP `Feature-Policy` header, `allow` attribute on iframes and the `document.featurePolicy` JS API.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 74", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "a 74", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "a 3.0", "Opera": "y 62", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "a 11.1", "Safari on iOS": "a 11.3", "Samsung Internet": "y 11.1", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/2019/WD-feature-policy-1-20190416/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-fetch.json b/bikeshed/spec-data/readonly/caniuse/feature-fetch.json index 253e8a3710..2364875100 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-fetch.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-fetch.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 42", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 39", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 29", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://fetch.spec.whatwg.org/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-fieldset-disabled.json b/bikeshed/spec-data/readonly/caniuse/feature-fieldset-disabled.json index 0831839f98..f8273bf9d8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-fieldset-disabled.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-fieldset-disabled.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 20", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 6", "IE Mobile": "a 11", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "a all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attr-fieldset-disabled" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-fileapi.json b/bikeshed/spec-data/readonly/caniuse/feature-fileapi.json index 6da9f3a32a..c64addcdca 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-fileapi.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-fileapi.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 28", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/FileAPI/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-filereader.json b/bikeshed/spec-data/readonly/caniuse/feature-filereader.json index 440ce1d610..91e4c79fca 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-filereader.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-filereader.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 6", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.1", "Opera Mini": "n all", "Opera Mobile": "y 11.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/FileAPI/#dfn-filereader" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-filereadersync.json b/bikeshed/spec-data/readonly/caniuse/feature-filereadersync.json index 99c2ba719b..919a0010b0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-filereadersync.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-filereadersync.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 8", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "n all", "Opera Mobile": "y 11.5", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/FileAPI/#FileReaderSync" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-filesystem.json b/bikeshed/spec-data/readonly/caniuse/feature-filesystem.json index 70ccdce53c..f143296db2 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-filesystem.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-filesystem.json @@ -1,25 +1,25 @@ { "notes": "The File API: Directories and System specification is no longer being maintained and support may be dropped in future versions.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/file-system-api/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-flac.json b/bikeshed/spec-data/readonly/caniuse/feature-flac.json index 3f3df49fcf..a85fa68dc8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-flac.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-flac.json @@ -1,25 +1,25 @@ { "notes": "Support refers to this format's use in the `audio` element, not other conditions.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 42", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 13", "Safari on iOS": "y 11.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://xiph.org/flac/format.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-flexbox-gap.json b/bikeshed/spec-data/readonly/caniuse/feature-flexbox-gap.json index 70c83d9f0f..4be426e454 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-flexbox-gap.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-flexbox-gap.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 84", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 84", "Firefox": "y 63", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 70", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14.1", "Safari on iOS": "y 14.5", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-align-3/#gaps" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-flexbox.json b/bikeshed/spec-data/readonly/caniuse/feature-flexbox.json index 8a8d353349..adcfc27ef6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-flexbox.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-flexbox.json @@ -2,24 +2,24 @@ "notes": "Most partial support refers to supporting an [older version](https://www.w3.org/TR/2009/WD-css3-flexbox-20090723/) of the specification or an [older syntax](https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/).", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 29", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 28", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-flexbox/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-flow-root.json b/bikeshed/spec-data/readonly/caniuse/feature-flow-root.json index b3790c8016..84f92ff011 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-flow-root.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-flow-root.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 58", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 53", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 45", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13", "Safari on iOS": "y 13.0", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-display-3/#valdef-display-flow-root" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-focusin-focusout-events.json b/bikeshed/spec-data/readonly/caniuse/feature-focusin-focusout-events.json index 7835e119be..233c7a1df8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-focusin-focusout-events.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-focusin-focusout-events.json @@ -2,24 +2,24 @@ "notes": "In browsers that don't support these events, one alternative is to use a capture phase event listener for the `focus` and/or `blur` events.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 11.6", "Opera Mini": "n all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusin" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-family-system-ui.json b/bikeshed/spec-data/readonly/caniuse/feature-font-family-system-ui.json index 6868b3400a..23c9e93860 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-family-system-ui.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-family-system-ui.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 92", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "y 43", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-fonts-4/#system-ui-def" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-feature.json b/bikeshed/spec-data/readonly/caniuse/feature-font-feature.json index 415969397b..69eafbbdc3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-feature.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-feature.json @@ -1,25 +1,25 @@ { "notes": "Whenever possible, font-variant shorthand property or an associated longhand property, font-variant-ligatures, font-variant-caps, font-variant-east-asian, font-variant-alternates, font-variant-numeric or font-variant-position should be used. This property is a low-level feature designed to handle special cases where no other way to enable or access an OpenType font feature exists. In particular, this CSS property shouldn't be used to enable small caps.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 48", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 35", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3.org/TR/css3-fonts/#font-rend-props" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-kerning.json b/bikeshed/spec-data/readonly/caniuse/feature-font-kerning.json index e506805850..572b9075b6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-kerning.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-kerning.json @@ -2,24 +2,24 @@ "notes": "Browsers with support for [font feature settings](https://caniuse.com/#feat=font-feature) can also set kerning value.", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 33", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 20", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 12.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-fonts/#font-kerning-prop" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-loading.json b/bikeshed/spec-data/readonly/caniuse/feature-font-loading.json index c4b998a78b..11fb0308ad 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-loading.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-loading.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 35", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 41", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 22", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css-font-loading-3/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-size-adjust.json b/bikeshed/spec-data/readonly/caniuse/feature-font-size-adjust.json index 96aede1e85..065ab5f514 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-size-adjust.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-size-adjust.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "y 3", - "Firefox for Android": "y 107", + "Chrome": "y 127", + "Chrome for Android": "y 127", + "Edge": "y 127", + "Firefox": "y 118", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "a 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-smooth.json b/bikeshed/spec-data/readonly/caniuse/feature-font-smooth.json index d6ec391869..8283efb90f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-smooth.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-smooth.json @@ -1,25 +1,25 @@ { "notes": "Though present in early (2002) drafts of CSS3 Fonts, `font-smooth` has been removed from this specification and is currently not on the standard track.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/WD-font/#font-smooth" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-unicode-range.json b/bikeshed/spec-data/readonly/caniuse/feature-font-unicode-range.json index f335294eca..5ceb3259e3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-unicode-range.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-unicode-range.json @@ -1,25 +1,25 @@ { "notes": "Partial support indicates that unnecessary code-ranges are downloaded by the browser - see [browser test matrix](https://docs.google.com/a/chromium.org/spreadsheets/d/18h-1gaosu4-KYxH8JUNL6ZDuOsOKmWfauoai3CS3hPY/edit?pli=1#gid=0).", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 23", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-fonts/#unicode-range-desc" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-variant-alternates.json b/bikeshed/spec-data/readonly/caniuse/feature-font-variant-alternates.json index 3be6d12526..900ebe7db3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-variant-alternates.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-variant-alternates.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 111", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome for Android": "y 127", + "Edge": "y 111", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "Opera": "y 98", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 22", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-fonts-4/#propdef-font-variant-alternates" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-font-variant-numeric.json b/bikeshed/spec-data/readonly/caniuse/feature-font-variant-numeric.json index c6085726a0..899e860367 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-font-variant-numeric.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-font-variant-numeric.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 7", "Chrome": "y 52", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 39", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-fonts-3/#propdef-font-variant-numeric" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-fontface.json b/bikeshed/spec-data/readonly/caniuse/feature-fontface.json index 386e091f2a..04dee14dd8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-fontface.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-fontface.json @@ -2,24 +2,24 @@ "notes": "Not supported by IE Mobile 9 and below.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", - "Safari": "y 3.2", + "QQ Browser": "y 14.9", + "Safari": "y 3.1", "Safari on iOS": "y 4.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-webfonts/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-form-attribute.json b/bikeshed/spec-data/readonly/caniuse/feature-form-attribute.json index 43428a5e90..6f4cdc9776 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-form-attribute.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-form-attribute.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 10", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attr-fae-form" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-form-submit-attributes.json b/bikeshed/spec-data/readonly/caniuse/feature-form-submit-attributes.json index 645354fb3f..9aa9a7431f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-form-submit-attributes.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-form-submit-attributes.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attributes-for-form-submission" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-form-validation.json b/bikeshed/spec-data/readonly/caniuse/feature-form-validation.json index 1f7c4448b9..b25193cf3b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-form-validation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-form-validation.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 10", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "a 10", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 10.0", "Opera Mini": "a all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#client-side-form-validation" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-fullscreen.json b/bikeshed/spec-data/readonly/caniuse/feature-fullscreen.json index 8703597ff9..1d241303f7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-fullscreen.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-fullscreen.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 71", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 64", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y TP", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 16.4", "Safari on iOS": "a 12.0", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://fullscreen.spec.whatwg.org/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-gamepad.json b/bikeshed/spec-data/readonly/caniuse/feature-gamepad.json index dbce191ccc..0df16be785 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-gamepad.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-gamepad.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/gamepad/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-geolocation.json b/bikeshed/spec-data/readonly/caniuse/feature-geolocation.json index 094bf43644..62bdadbec3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-geolocation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-geolocation.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 16", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/geolocation-API/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-getboundingclientrect.json b/bikeshed/spec-data/readonly/caniuse/feature-getboundingclientrect.json index d96ef1ffa3..f28f0b317a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-getboundingclientrect.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-getboundingclientrect.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 12", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/cssom-view/#dom-element-getboundingclientrect" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-getcomputedstyle.json b/bikeshed/spec-data/readonly/caniuse/feature-getcomputedstyle.json index 3736110f88..3311ae3eae 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-getcomputedstyle.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-getcomputedstyle.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 11", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "a all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/cssom/#dom-window-getcomputedstyle" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-getelementsbyclassname.json b/bikeshed/spec-data/readonly/caniuse/feature-getelementsbyclassname.json index babdae22d2..a5eb14b004 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-getelementsbyclassname.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-getelementsbyclassname.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-document-getelementsbyclassname" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-getrandomvalues.json b/bikeshed/spec-data/readonly/caniuse/feature-getrandomvalues.json index 279f369643..9039799691 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-getrandomvalues.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-getrandomvalues.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 11", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 21", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/WebCryptoAPI/#Crypto-method-getRandomValues" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-gyroscope.json b/bikeshed/spec-data/readonly/caniuse/feature-gyroscope.json index fed9a44c83..5ef034e38a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-gyroscope.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-gyroscope.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 54", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/gyroscope/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-hardwareconcurrency.json b/bikeshed/spec-data/readonly/caniuse/feature-hardwareconcurrency.json index 81fb6cfa02..d88b3af85c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-hardwareconcurrency.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-hardwareconcurrency.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 48", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/workers.html#navigator.hardwareconcurrency" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-hashchange.json b/bikeshed/spec-data/readonly/caniuse/feature-hashchange.json index b7662696ff..ba4d70ea3a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-hashchange.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-hashchange.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/browsers.html#the-hashchangeevent-interface" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-heif.json b/bikeshed/spec-data/readonly/caniuse/feature-heif.json index fce637f578..1e52aafa70 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-heif.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-heif.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://nokiatech.github.io/heif/technical.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-hevc.json b/bikeshed/spec-data/readonly/caniuse/feature-hevc.json index 9c54075748..bc4849d7eb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-hevc.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-hevc.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "a 109", - "Baidu Browser": "y 13.18", + "Android Browser": "a 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "a 107", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "a 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "a 94", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 13", "Safari on iOS": "y 11.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 21", + "UC Browser for Android": "n 15.5" }, "url": "https://www.itu.int/rec/T-REC-H.265" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-hidden.json b/bikeshed/spec-data/readonly/caniuse/feature-hidden.json index 5f8e64cade..63f2d38085 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-hidden.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-hidden.json @@ -2,24 +2,24 @@ "notes": "The hidden state can be easily overridden with a CSS `display` property set to anything other than `none`.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 6", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 11.1", "Opera Mini": "y all", "Opera Mobile": "y 11.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-hidden-attribute" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-high-resolution-time.json b/bikeshed/spec-data/readonly/caniuse/feature-high-resolution-time.json index edd8452e16..91b2b87e01 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-high-resolution-time.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-high-resolution-time.json @@ -2,24 +2,24 @@ "notes": "The timestamp is not actually high-resolution. To mitigate security threats such as Spectre, browsers currently round the result to varying degrees.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 24", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 8", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/hr-time/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-history.json b/bikeshed/spec-data/readonly/caniuse/feature-history.json index 4fbf17e769..ea5879e234 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-history.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-history.json @@ -2,24 +2,24 @@ "notes": "Older iOS versions and Android 4.0.4 claim support, but implementation is too buggy to be useful.", "support": { "Android Browser": "y 4.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.5", "Opera Mini": "n all", "Opera Mobile": "y 11.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-history-pushstate" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-html-media-capture.json b/bikeshed/spec-data/readonly/caniuse/feature-html-media-capture.json index 7ba096deb1..a103723bc4 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-html-media-capture.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-html-media-capture.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", - "Chrome": "n 112", - "Chrome for Android": "y 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "y 107", + "Chrome": "n 130", + "Chrome for Android": "y 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "u 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", "Safari": "n TP", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://w3c.github.io/html-media-capture/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-html5semantic.json b/bikeshed/spec-data/readonly/caniuse/feature-html5semantic.json index 6828fa920a..e681ea2610 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-html5semantic.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-html5semantic.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 21", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#sections" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-http-live-streaming.json b/bikeshed/spec-data/readonly/caniuse/feature-http-live-streaming.json index a86c007c4f..6aea3ff630 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-http-live-streaming.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-http-live-streaming.json @@ -2,24 +2,24 @@ "notes": "HLS can be used with a JavaScript library in browsers that doesn't support it natively as long as they support [Media Source Extensions](/mediasource).", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", - "Chrome": "n 112", - "Chrome for Android": "y 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "y 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc8216" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-http2.json b/bikeshed/spec-data/readonly/caniuse/feature-http2.json index e6316c5a1a..2f23d1e635 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-http2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-http2.json @@ -1,25 +1,25 @@ { "notes": "HTTP/2 is only supported over TLS (HTTPS). See also the precursor of HTTP/2, [the SPDY protocol](https://caniuse.com/#feat=spdy), which has been deprecated and removed from most browsers, in favor of HTTP/2.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 28", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc7540" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-http3.json b/bikeshed/spec-data/readonly/caniuse/feature-http3.json index e12194f96c..198d2dc98f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-http3.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-http3.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 87", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 87", "Firefox": "y 88", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 74", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "a 16.4", + "Safari on iOS": "a 16.4", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://datatracker.ietf.org/doc/rfc9114/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-iframe-sandbox.json b/bikeshed/spec-data/readonly/caniuse/feature-iframe-sandbox.json index adde3fe36c..502ae40937 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-iframe-sandbox.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-iframe-sandbox.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", - "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome": "y 5", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 28", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", - "Safari on iOS": "y 4.2", + "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-sandbox" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-iframe-seamless.json b/bikeshed/spec-data/readonly/caniuse/feature-iframe-seamless.json index 08acea9624..0b963bc8bc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-iframe-seamless.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-iframe-seamless.json @@ -1,25 +1,25 @@ { "notes": "Chrome 20-26 had partial support behind a flag, though this was [later removed](https://bugs.chromium.org/p/chromium/issues/detail?id=229421).", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/2011/WD-html5-20110525/the-iframe-element.html#attr-iframe-seamless" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-iframe-srcdoc.json b/bikeshed/spec-data/readonly/caniuse/feature-iframe-srcdoc.json index 3d1dfc1cb2..f50fa0961d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-iframe-srcdoc.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-iframe-srcdoc.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 20", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 25", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-iframe-srcdoc" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-imagecapture.json b/bikeshed/spec-data/readonly/caniuse/feature-imagecapture.json index ab5466fc6e..471f1a19ad 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-imagecapture.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-imagecapture.json @@ -1,25 +1,25 @@ { "notes": "Firefox supports the `takePhoto()` method only (when flag is enabled).", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 59", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 46", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/mediacapture-image/#imagecaptureapi" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ime.json b/bikeshed/spec-data/readonly/caniuse/feature-ime.json index d7061f401e..d3e277d575 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ime.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ime.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/ime-api/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-img-naturalwidth-naturalheight.json b/bikeshed/spec-data/readonly/caniuse/feature-img-naturalwidth-naturalheight.json index 3885e85dc4..595b3151ae 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-img-naturalwidth-naturalheight.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-img-naturalwidth-naturalheight.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-naturalwidth" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-import-maps.json b/bikeshed/spec-data/readonly/caniuse/feature-import-maps.json index 3e637f001e..a759886801 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-import-maps.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-import-maps.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 89", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 89", "Firefox": "y 108", - "Firefox for Android": "n 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 76", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", "Samsung Internet": "y 15.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://wicg.github.io/import-maps/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-imports.json b/bikeshed/spec-data/readonly/caniuse/feature-imports.json index 77cf7e20c3..31b2d857de 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-imports.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-imports.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/html-imports/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-indeterminate-checkbox.json b/bikeshed/spec-data/readonly/caniuse/feature-indeterminate-checkbox.json index 8dde13d985..62cdc8b9c7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-indeterminate-checkbox.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-indeterminate-checkbox.json @@ -2,24 +2,24 @@ "notes": "Indeterminacy does not affect a checkbox's checkedness state. It merely affects how the checkbox is displayed.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 28", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 12.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/#dom-input-indeterminate" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-indexeddb.json b/bikeshed/spec-data/readonly/caniuse/feature-indexeddb.json index 119c9efe6a..a76a6f01dc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-indexeddb.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-indexeddb.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 24", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 15", "Safari on iOS": "y 15.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/IndexedDB/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-indexeddb2.json b/bikeshed/spec-data/readonly/caniuse/feature-indexeddb2.json index 69cdbe0e90..bb331dc2a3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-indexeddb2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-indexeddb2.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 58", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 45", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/IndexedDB-2/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-inline-block.json b/bikeshed/spec-data/readonly/caniuse/feature-inline-block.json index bb149af6ac..806140977c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-inline-block.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-inline-block.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/visuren.html#fixed-positioning" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-innertext.json b/bikeshed/spec-data/readonly/caniuse/feature-innertext.json index 197a420191..6a90e0415f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-innertext.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-innertext.json @@ -2,24 +2,24 @@ "notes": "This test only checks that the property exists and works correctly in a very simple case.\r\n[This blog post by kangax](http://perfectionkills.com/the-poor-misunderstood-innerText/) explains the history of this property, gives much more detailed cross-browser compatibility information, and gives a detailed strawman specification for the property.\r\n`HTMLElement.innerText` is similar to, but has some important differences from, the standard [`Node.textContent`](https://caniuse.com/#feat=textcontent) property.", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 45", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/dom.html#the-innertext-idl-attribute" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-autocomplete-onoff.json b/bikeshed/spec-data/readonly/caniuse/feature-input-autocomplete-onoff.json index f7e2b3a891..cc5e6a1e3c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-autocomplete-onoff.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-autocomplete-onoff.json @@ -2,24 +2,24 @@ "notes": "This support information does not include support for other `autocomplete` values.\r\n\r\nAs described in detail below, many modern browsers ignore the `off` value on certain fields in certain cases intentionally in order to give the user more control over autofilling fields. One example is the use of password managers.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "a 27", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "a 12", "Firefox": "a 30", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "a 13.1", + "QQ Browser": "a 14.9", "Safari": "a 7", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#autofill" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-color.json b/bikeshed/spec-data/readonly/caniuse/feature-input-color.json index 986ee13857..94ab8f6bd9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-color.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-color.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 20", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 17", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 12.1", "Safari on iOS": "y 12.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#color-state-(type=color)" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-datetime.json b/bikeshed/spec-data/readonly/caniuse/feature-input-datetime.json index e96ee3ba06..bae0dec2d2 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-datetime.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-datetime.json @@ -2,24 +2,24 @@ "notes": "There used to also be a `datetime` type, but it was [dropped from the HTML spec](https://github.com/whatwg/html/issues/336).", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "a 57", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "y 9", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "a 14.1", "Safari on iOS": "a 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#date-state-(type=date)" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-email-tel-url.json b/bikeshed/spec-data/readonly/caniuse/feature-input-email-tel-url.json index 36bf1b1f14..732ee4d558 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-email-tel-url.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-email-tel-url.json @@ -2,24 +2,24 @@ "notes": "Browsers without support for these types will fall back to using the \"text\" type.", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#telephone-state-(type=tel)" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-event.json b/bikeshed/spec-data/readonly/caniuse/feature-input-event.json index 618a1bf68a..ad3264dfc0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-event.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-event.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#event-input-input" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-file-accept.json b/bikeshed/spec-data/readonly/caniuse/feature-input-file-accept.json index 1b2cc78866..7f1b50a706 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-file-accept.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-file-accept.json @@ -1,25 +1,25 @@ { "notes": "Not supported means any file can be picked as if the `accept` attribute was not set, unless otherwise noted.\r\n\r\nOn Windows, files that do not apply are hidden. On OSX they are grayed out and disabled.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "a 13.18", + "Android Browser": "n 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 7", "Chrome": "y 26", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "y 79", "Firefox": "y 37", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "y 10", "IE Mobile": "a 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "a 14.9", "Safari": "y 11.1", "Safari on iOS": "a 8", "Samsung Internet": "a 4", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attr-input-accept" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-file-directory.json b/bikeshed/spec-data/readonly/caniuse/feature-input-file-directory.json index de4740df8d..d6219cc646 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-file-directory.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-file-directory.json @@ -1,25 +1,25 @@ { "notes": "Lack of support in mobile browsers may be due to the OS file picker not having support for selecting a directory.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 30", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 14", "Firefox": "y 50", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 17", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/entries-api/#dom-htmlinputelement-webkitdirectory" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-file-multiple.json b/bikeshed/spec-data/readonly/caniuse/feature-input-file-multiple.json index 48776cfc64..5bf6724f76 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-file-multiple.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-file-multiple.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "a 13.18", + "Android Browser": "n 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "y 5", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 10.6", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "y 4", "Safari on iOS": "y 6.0", "Samsung Internet": "a 5.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attr-input-multiple" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-inputmode.json b/bikeshed/spec-data/readonly/caniuse/feature-input-inputmode.json index f3c76712bb..c92bf6bb91 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-inputmode.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-inputmode.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 66", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 95", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 53", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", "Safari on iOS": "y 12.2", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#input-modalities:-the-inputmode-attribute" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-minlength.json b/bikeshed/spec-data/readonly/caniuse/feature-input-minlength.json index 1367586114..67fb654f71 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-minlength.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-minlength.json @@ -1,25 +1,25 @@ { "notes": "The [`pattern` attribute](https://caniuse.com/#feat=input-pattern) can be used [as an alternative](https://stackoverflow.com/a/10294291) solution for browsers without support.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 40", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 27", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-maxlength-and-minlength-attributes" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-number.json b/bikeshed/spec-data/readonly/caniuse/feature-input-number.json index 24a3a59325..2f21eb0a2a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-number.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-number.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "a 4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 10", "Chrome": "y 6", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "y 12", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "y 5", "Safari on iOS": "a 3.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#number-state-(type=number)" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-pattern.json b/bikeshed/spec-data/readonly/caniuse/feature-input-pattern.json index 17b687c5ee..cf5a021a1d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-pattern.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-pattern.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 10", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-pattern-attribute" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-placeholder.json b/bikeshed/spec-data/readonly/caniuse/feature-input-placeholder.json index 51747e1482..20bc2c5355 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-placeholder.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-placeholder.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.5", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attr-input-placeholder" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-range.json b/bikeshed/spec-data/readonly/caniuse/feature-input-range.json index 6cbf8db225..9cee890dda 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-range.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-range.json @@ -2,24 +2,24 @@ "notes": "Currently all Android browsers with partial support hide the slider input field by default. However, the element [can be styled](https://tiffanybbrown.com/2012/02/input-typerange-and-androids-stock-browser/) to be made visible and usable.", "support": { "Android Browser": "y 4.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 23", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#range-state-(type=range)" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-search.json b/bikeshed/spec-data/readonly/caniuse/feature-input-search.json index 0ceaeb5061..35d6143fc7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-search.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-search.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#text-(type=text)-state-and-search-state-(type=search)" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-input-selection.json b/bikeshed/spec-data/readonly/caniuse/feature-input-selection.json index a5c9353e79..577c65f37e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-input-selection.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-input-selection.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-setselectionrange" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-insert-adjacent.json b/bikeshed/spec-data/readonly/caniuse/feature-insert-adjacent.json index 0c5dca71ce..474a4d5273 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-insert-adjacent.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-insert-adjacent.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 48", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-element-insertadjacentelement" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-insertadjacenthtml.json b/bikeshed/spec-data/readonly/caniuse/feature-insertadjacenthtml.json index 2e7b703a26..9c9edb5437 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-insertadjacenthtml.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-insertadjacenthtml.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 8", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/DOM-Parsing/#widl-Element-insertAdjacentHTML-void-DOMString-position-DOMString-text" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-internationalization.json b/bikeshed/spec-data/readonly/caniuse/feature-internationalization.json index 48fed684a7..9ec33aa35f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-internationalization.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-internationalization.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 24", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma402/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver-v2.json b/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver-v2.json index 1439377a08..ccda0bab1a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver-v2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver-v2.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 74", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 62", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 11.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://szager-chromium.github.io/IntersectionObserver/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver.json b/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver.json index 66fdfe11be..8743747df8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-intersectionobserver.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 58", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 55", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 45", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12.1", "Safari on iOS": "y 12.2", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/intersection-observer/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-intl-pluralrules.json b/bikeshed/spec-data/readonly/caniuse/feature-intl-pluralrules.json index ebd79f6e7b..5fa881c9a8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-intl-pluralrules.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-intl-pluralrules.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 63", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 58", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 50", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13", "Safari on iOS": "y 13.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma402/#sec-intl-pluralrules-constructor" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-intrinsic-width.json b/bikeshed/spec-data/readonly/caniuse/feature-intrinsic-width.json index 382f328008..4020b05b16 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-intrinsic-width.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-intrinsic-width.json @@ -1,25 +1,25 @@ { "notes": "Prefixes are on the values, not the property names (e.g. -webkit-min-content)\r\n\r\nOlder webkit browsers also support the unofficial `intrinsic` value which acts the same as `max-content`.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 46", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "a 66", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "a 3.0", "Opera": "y 33", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-sizing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-jpeg2000.json b/bikeshed/spec-data/readonly/caniuse/feature-jpeg2000.json index 740a99a5ba..f33ac32966 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-jpeg2000.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-jpeg2000.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "y 5", - "Safari on iOS": "y 5.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.itu.int/rec/T-REC-T.800-200208-I" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-jpegxl.json b/bikeshed/spec-data/readonly/caniuse/feature-jpegxl.json index 87c07675a9..1e664954cb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-jpegxl.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-jpegxl.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://jpeg.org/jpegxl/documentation.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-jpegxr.json b/bikeshed/spec-data/readonly/caniuse/feature-jpegxr.json index 9272801cf1..6ea3c0676a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-jpegxr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-jpegxr.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 9", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.itu.int/rec/T-REC-T.832" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-js-regexp-lookbehind.json b/bikeshed/spec-data/readonly/caniuse/feature-js-regexp-lookbehind.json index 32c93f279c..5eb1488341 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-js-regexp-lookbehind.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-js-regexp-lookbehind.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 62", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 78", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 49", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-assertion" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-json.json b/bikeshed/spec-data/readonly/caniuse/feature-json.json index 42b6af5eb5..f414babe39 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-json.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-json.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.12" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-justify-content-space-evenly.json b/bikeshed/spec-data/readonly/caniuse/feature-justify-content-space-evenly.json index 034f33fd26..98c37ec2f5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-justify-content-space-evenly.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-justify-content-space-evenly.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 60", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 47", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-align-3/#valdef-align-content-space-evenly" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-kerning-pairs-ligatures.json b/bikeshed/spec-data/readonly/caniuse/feature-kerning-pairs-ligatures.json index 93df86a6eb..70f660098b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-kerning-pairs-ligatures.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-kerning-pairs-ligatures.json @@ -2,24 +2,24 @@ "notes": "The `text-rendering` property is specified in SVG, though behavior there is not related to kerning pairs & ligatures.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SVG2/painting.html#TextRendering" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-charcode.json b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-charcode.json index a561e51848..306a612fa8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-charcode.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-charcode.json @@ -2,24 +2,24 @@ "notes": "This property is legacy and deprecated.\n[\"Some key events, or their values, might be suppressed by the IME in use\"](https://www.w3.org/TR/2019/WD-uievents-20190530/#keys-IME). On mobile (virtual keyboard), all keys are reported as 0.", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "y 9", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/uievents/#dom-keyboardevent-charcode" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-code.json b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-code.json index c22beb1eaa..0bf12a70cb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-code.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-code.json @@ -1,25 +1,25 @@ { "notes": "[\"Some key events, or their values, might be suppressed by the IME in use\"](https://www.w3.org/TR/2019/WD-uievents-20190530/#keys-IME). On mobile (virtual keyboard), all keys are reported as empty (\"\").", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 48", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 79", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 35", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/uievents/#dom-keyboardevent-code" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-getmodifierstate.json b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-getmodifierstate.json index 7cc6d6f7b0..3b927832be 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-getmodifierstate.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-getmodifierstate.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 30", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/uievents/#dom-keyboardevent-getmodifierstate" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-key.json b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-key.json index cdbff945d5..43310720f1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-key.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-key.json @@ -1,25 +1,25 @@ { "notes": "[\"Some key events, or their values, might be suppressed by the IME in use\"](https://www.w3.org/TR/2019/WD-uievents-20190530/#keys-IME). On mobile (virtual keyboard), for every key Blink and WebKit based browsers report \"Unidentified\", Gecko reports \"Process\".", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 51", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 38", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/uievents/#dom-keyboardevent-key" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-location.json b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-location.json index bd59faaaf2..7bb3e9f43b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-location.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-location.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 30", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/uievents/#dom-keyboardevent-location" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-which.json b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-which.json index 7c7f894a0f..edec4044b5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-which.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-keyboardevent-which.json @@ -1,25 +1,25 @@ { "notes": "This property is legacy and deprecated.\n[\"Some key events, or their values, might be suppressed by the IME in use\"](https://www.w3.org/TR/2019/WD-uievents-20190530/#keys-IME). On mobile (virtual keyboard), all keys are reported as 229.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "a 13.18", + "Android Browser": "y 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "a 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/uievents/#dom-uievent-which" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-lazyload.json b/bikeshed/spec-data/readonly/caniuse/feature-lazyload.json index 16380c1ca8..d983522c3f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-lazyload.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-lazyload.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/web-performance/specs/ResourcePriorities/Overview.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-let.json b/bikeshed/spec-data/readonly/caniuse/feature-let.json index 2d8bbcd629..02fd054558 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-let.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-let.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-let-and-const-declarations" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-icon-png.json b/bikeshed/spec-data/readonly/caniuse/feature-link-icon-png.json index 00fb754075..54e2d32075 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-icon-png.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-icon-png.json @@ -2,24 +2,24 @@ "notes": "Favicon support is a complicated topic. See [this guide](https://dev.to/masakudamatsu/favicon-nightmare-how-to-maintain-sanity-3al7) for more information.\r\n\r\nSee also [SVG favicons](/link-icon-svg).", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 12.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#rel-icon" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-icon-svg.json b/bikeshed/spec-data/readonly/caniuse/feature-link-icon-svg.json index f4f8ac329c..55347c89b0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-icon-svg.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-icon-svg.json @@ -1,25 +1,25 @@ { "notes": "Favicon support is a complicated topic. See [this guide](https://dev.to/masakudamatsu/favicon-nightmare-how-to-maintain-sanity-3al7) for more information.\r\n\r\nSee also [PNG favicons](/link-icon-png).", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 80", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 80", "Firefox": "y 41", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 67", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 13.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#rel-icon" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-dns-prefetch.json b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-dns-prefetch.json index 031f627b9b..954f4533c5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-dns-prefetch.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-dns-prefetch.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "u 109", - "Baidu Browser": "y 13.18", + "Android Browser": "u 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", - "Firefox": "a 3.5", - "Firefox for Android": "y 107", + "Firefox": "y 127", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", - "Safari on iOS": "u 16.3", + "Safari on iOS": "u 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/resource-hints/#dns-prefetch" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-modulepreload.json b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-modulepreload.json index dfd1d70f5b..2fd1d20ec8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-modulepreload.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-modulepreload.json @@ -1,25 +1,25 @@ { "notes": "Unlike some other link relations, changing the relevant attributes (such as as, crossorigin, and referrerpolicy) of such a link does not trigger a new fetch. This is because the document's module map has already been populated by a previous fetch, and so re-fetching would be pointless.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 66", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 115", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 53", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-modulepreload" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preconnect.json b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preconnect.json index 026fe6b174..c7f4f7929b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preconnect.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preconnect.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 46", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "u 107", + "Firefox": "y 115", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 33", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/resource-hints/#preconnect" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prefetch.json b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prefetch.json index 2896424399..fbb4b60b5a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prefetch.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prefetch.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/resource-hints/#dfn-prefetch" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preload.json b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preload.json index d5bf781296..a7063c7b71 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preload.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-preload.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 50", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 85", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 37", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/preload/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prerender.json b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prerender.json index 8aa71c3586..3774085026 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prerender.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-link-rel-prerender.json @@ -1,25 +1,25 @@ { - "notes": "Chrome treats the prerender hint as a [NoState Prefetch](https://developers.google.com/web/updates/2018/07/nostate-prefetch) instead, and unlike a full prerender it wont execute JavaScript or render any part of the page in advance.", + "notes": "Chrome treats the prerender hint as a [NoState Prefetch](https://developers.google.com/web/updates/2018/07/nostate-prefetch) instead, and unlike a full prerender it won't execute JavaScript or render any part of the page in advance.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 13", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/resource-hints/#prerender" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-loading-lazy-attr.json b/bikeshed/spec-data/readonly/caniuse/feature-loading-lazy-attr.json index cd84a041f9..2c5ecec337 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-loading-lazy-attr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-loading-lazy-attr.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 77", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "a 75", - "Firefox for Android": "a 107", + "Firefox": "y 121", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "a 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", "Samsung Internet": "y 12.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#lazy-loading-attributes" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-localecompare.json b/bikeshed/spec-data/readonly/caniuse/feature-localecompare.json index 8f8d1a07bd..87cd9de2b3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-localecompare.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-localecompare.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 24", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma402/#sup-String.prototype.localeCompare" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-magnetometer.json b/bikeshed/spec-data/readonly/caniuse/feature-magnetometer.json index 9e78fafe9c..5e296db4e0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-magnetometer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-magnetometer.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 54", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/magnetometer/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-matchesselector.json b/bikeshed/spec-data/readonly/caniuse/feature-matchesselector.json index 9b6869e0f9..d2527141ab 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-matchesselector.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-matchesselector.json @@ -1,25 +1,25 @@ { "notes": "Partial support refers to supporting the older specification's \"matchesSelector\" name rather than just \"matches\".", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 34", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 21", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7.1", "Safari on iOS": "y 8", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-element-matches" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-matchmedia.json b/bikeshed/spec-data/readonly/caniuse/feature-matchmedia.json index 31a7f71843..a34187d895 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-matchmedia.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-matchmedia.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 9", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/cssom-view/#dom-window-matchmedia" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mathml.json b/bikeshed/spec-data/readonly/caniuse/feature-mathml.json index c8830367db..5bbdf2ee26 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mathml.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mathml.json @@ -1,25 +1,25 @@ { "notes": "Support was added in Chrome 24, but temporarily removed afterwards due to instability.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 10", "Chrome": "y 109", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 109", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "Opera": "y 95", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 10", "Safari on iOS": "y 5.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 21", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/MathML/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-maxlength.json b/bikeshed/spec-data/readonly/caniuse/feature-maxlength.json index c9353b1c7e..99336858f3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-maxlength.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-maxlength.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#attr-input-maxlength" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-media-fragments.json b/bikeshed/spec-data/readonly/caniuse/feature-media-fragments.json index e0a86bc722..711d806b0b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-media-fragments.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-media-fragments.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "a 4.4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 18", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "a 34", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 6", "Safari on iOS": "a 8", "Samsung Internet": "a 6.2", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/media-frags/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mediacapture-fromelement.json b/bikeshed/spec-data/readonly/caniuse/feature-mediacapture-fromelement.json index 2faba45a09..281ba0bb3f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mediacapture-fromelement.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mediacapture-fromelement.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 62", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "a 43", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "y 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "a 11", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/mediacapture-fromelement/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mediarecorder.json b/bikeshed/spec-data/readonly/caniuse/feature-mediarecorder.json index 68448c9f0c..c7a772ca65 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mediarecorder.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mediarecorder.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 29", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14.1", "Safari on iOS": "y 14.5", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/mediacapture-record/MediaRecorder.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mediasource.json b/bikeshed/spec-data/readonly/caniuse/feature-mediasource.json index 7eecdc5f49..a5bc5c85fd 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mediasource.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mediasource.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 31", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 42", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 8", "Safari on iOS": "a 13.0", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/media-source/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-menu.json b/bikeshed/spec-data/readonly/caniuse/feature-menu.json index b3af31cc50..270e843fd3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-menu.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-menu.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/2016/REC-html51-20161101/interactive-elements.html#context-menus" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-meta-theme-color.json b/bikeshed/spec-data/readonly/caniuse/feature-meta-theme-color.json index 58fcc0d305..08eb246502 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-meta-theme-color.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-meta-theme-color.json @@ -1,25 +1,25 @@ { "notes": "Vivaldi browser (Chromium based) supports this feature in both mobile and desktop version. Also supported in the (now discontinued) Firefox OS.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "a 73", - "Chrome for Android": "y 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome for Android": "y 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 15", "Safari on iOS": "y 15.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#meta-theme-color" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-meter.json b/bikeshed/spec-data/readonly/caniuse/feature-meter.json index b9a79d4017..961dcaf40e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-meter.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-meter.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-meter-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-midi.json b/bikeshed/spec-data/readonly/caniuse/feature-midi.json index 999df6aee8..a21a4bdd70 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-midi.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-midi.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 43", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 108", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 30", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://webaudio.github.io/web-midi-api/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-minmaxwh.json b/bikeshed/spec-data/readonly/caniuse/feature-minmaxwh.json index 9b25c43ae4..7584601a09 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-minmaxwh.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-minmaxwh.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 7", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/CSS21/visudet.html#min-max-widths" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mp3.json b/bikeshed/spec-data/readonly/caniuse/feature-mp3.json index cc2097825f..09d8ed8c5a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mp3.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mp3.json @@ -2,24 +2,24 @@ "notes": "Support refers to this format's use in the `audio` element, not other conditions.", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 22", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "http://mpgedit.org/mpgedit/mpeg_format/MP3Format.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mpeg-dash.json b/bikeshed/spec-data/readonly/caniuse/feature-mpeg-dash.json index d150c1bb97..0e9e1567a9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mpeg-dash.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mpeg-dash.json @@ -1,25 +1,25 @@ { "notes": "DASH can be used with a JavaScript library in browsers that doesn't support it natively as long as they support [Media Source Extensions](/mediasource).", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.iso.org/standard/65274.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mpeg4.json b/bikeshed/spec-data/readonly/caniuse/feature-mpeg4.json index 340c8a706e..b38a0f571d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mpeg4.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mpeg4.json @@ -1,25 +1,25 @@ { - "notes": "Firefox supports H.264 on Windows 7 and later since version 21. Firefox supports H.264 on Linux since version 26 if the appropriate gstreamer plug-ins are installed.\r\n\r\nPartial support for older Firefox versions refers to the lack of support in OS X & some non-Android Linux platforms.", + "notes": "Firefox supports H.264 on Windows 7 and later since version 21. Firefox supports H.264 on Linux since version 26 if the appropriate system libraries are installed.\r\n\r\nPartial support for older Firefox versions refers to the lack of support in OS X & some non-Android Linux platforms.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 35", - "Firefox for Android": "a 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "http://ip.hhi.de/imagecom_G1/assets/pdfs/csvt_overview_0305.pdf" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-multibackgrounds.json b/bikeshed/spec-data/readonly/caniuse/feature-multibackgrounds.json index 3d75f01991..66e04eb1ae 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-multibackgrounds.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-multibackgrounds.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-multicolumn.json b/bikeshed/spec-data/readonly/caniuse/feature-multicolumn.json index b0572b39e2..71603b2ed3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-multicolumn.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-multicolumn.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "a 109", - "Baidu Browser": "a 13.18", + "Android Browser": "a 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 50", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "a 52", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "y 10", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "a 37", "Opera Mini": "y all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", - "Samsung Internet": "y 5.0", - "UC Browser for Android": "a 13.4" + "Samsung Internet": "a 5.0", + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/css3-multicol/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mutation-events.json b/bikeshed/spec-data/readonly/caniuse/feature-mutation-events.json index b066f82ff9..78515d0af7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mutation-events.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mutation-events.json @@ -2,24 +2,24 @@ "notes": "See also support for [Mutation Observer](https://caniuse.com/#feat=mutationobserver), which replaces mutation events and does not have the same performance drawbacks.", "support": { "Android Browser": "a 2.3", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 7", "Chrome": "a 15", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "a 6", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 4", "Safari on iOS": "a 4.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/DOM-Level-3-Events/#legacy-mutationevent-events" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-mutationobserver.json b/bikeshed/spec-data/readonly/caniuse/feature-mutationobserver.json index d10746d258..2e7e899a29 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-mutationobserver.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-mutationobserver.json @@ -2,24 +2,24 @@ "notes": "When changing the `innerHTML` content of a node containing a single `CharacterData` node, resulting in a single-but-different `CharacterData` child node, WebKit browsers consider this a `characterData` mutation of the child `CharacterData` node, while other browsers consider it a `childList` mutation of the parent node.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 27", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 14", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#mutation-observers" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-namevalue-storage.json b/bikeshed/spec-data/readonly/caniuse/feature-namevalue-storage.json index 7f1bc33d96..a635b406c2 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-namevalue-storage.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-namevalue-storage.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 8", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/webstorage.html#storage" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-native-filesystem-api.json b/bikeshed/spec-data/readonly/caniuse/feature-native-filesystem-api.json index 5c824c4c55..30beaba28b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-native-filesystem-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-native-filesystem-api.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "a 86", - "Chrome for Android": "n 109", - "Edge": "a 86", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "y 105", + "Chrome for Android": "n 127", + "Edge": "y 105", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "a 72", + "KaiOS Browser": "n 3.0", + "Opera": "y 91", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "a 15.2", - "Safari on iOS": "a 15.2", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/file-system-access/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-nav-timing.json b/bikeshed/spec-data/readonly/caniuse/feature-nav-timing.json index 07a4588aed..b5c28ae314 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-nav-timing.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-nav-timing.json @@ -2,24 +2,24 @@ "notes": "Removed in iOS 8.1 due to poor performance.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 13", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 7", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 8", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/navigation-timing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-netinfo.json b/bikeshed/spec-data/readonly/caniuse/feature-netinfo.json index b2e1560e23..2e0faa6f09 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-netinfo.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-netinfo.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "a 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "a 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "n 3.0", "Opera": "a 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://wicg.github.io/netinfo/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-notifications.json b/bikeshed/spec-data/readonly/caniuse/feature-notifications.json index 3cbcc34f70..453312e5c1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-notifications.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-notifications.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 10", "Chrome": "y 22", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 22", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 6", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "a 16.4", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://notifications.spec.whatwg.org/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-object-entries.json b/bikeshed/spec-data/readonly/caniuse/feature-object-entries.json index d24e89d979..42a861308a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-object-entries.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-object-entries.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 7", "Chrome": "y 54", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 47", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 41", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-object.entries" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-object-fit.json b/bikeshed/spec-data/readonly/caniuse/feature-object-fit.json index 2507aeda2b..5ca9808dea 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-object-fit.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-object-fit.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 32", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 19", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-images/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-object-observe.json b/bikeshed/spec-data/readonly/caniuse/feature-object-observe.json index 8100029532..fb57ceb958 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-object-observe.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-object-observe.json @@ -1,25 +1,25 @@ { "notes": "Support in Blink-based browsers is expected to be removed in future versions.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "http://wiki.ecmascript.org/doku.php?id=harmony:observe" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-object-values.json b/bikeshed/spec-data/readonly/caniuse/feature-object-values.json index 78b4afb29d..f6a0b10c38 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-object-values.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-object-values.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 54", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 47", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 41", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-object.values" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-objectrtc.json b/bikeshed/spec-data/readonly/caniuse/feature-objectrtc.json index 65cf712ed8..396a7fbda2 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-objectrtc.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-objectrtc.json @@ -1,25 +1,25 @@ { "notes": "ORTC is often dubbed WebRTC 1.1. It is possible to make ORTC communicate with WebRTC 1.0 endpoints. See [WebRTC 1.0](https://caniuse.com/#feat=rtcpeerconnection) for support details for that API.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/community/ortc/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-offline-apps.json b/bikeshed/spec-data/readonly/caniuse/feature-offline-apps.json index c30f9eb671..c97b49acce 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-offline-apps.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-offline-apps.json @@ -1,25 +1,25 @@ { "notes": "This technology is being deprecated in favor of [Service Workers](https://caniuse.com/#feat=serviceworkers)", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 7", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 10", "IE Mobile": "y 10", - "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", - "Safari": "y 4", - "Safari on iOS": "y 3.2", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/2011/WD-html5-20110525/offline.html#offline" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-offscreencanvas.json b/bikeshed/spec-data/readonly/caniuse/feature-offscreencanvas.json index 0a85f0b0d3..701465ff5d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-offscreencanvas.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-offscreencanvas.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 69", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 105", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 17.0", + "Safari on iOS": "y 17.0", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/canvas.html#the-offscreencanvas-interface" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ogg-vorbis.json b/bikeshed/spec-data/readonly/caniuse/feature-ogg-vorbis.json index a8f8b0e4af..2ce80c06c8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ogg-vorbis.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ogg-vorbis.json @@ -2,24 +2,24 @@ "notes": "Support refers to this format's use in the `audio` element, not other conditions.", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "a 14.1", - "Safari on iOS": "n 16.3", + "Safari on iOS": "a 17.4", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.xiph.org/vorbis/doc/Vorbis_I_spec.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ogv.json b/bikeshed/spec-data/readonly/caniuse/feature-ogv.json index 26ee9ad58e..9815b97014 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ogv.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ogv.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "y 4", - "Chrome for Android": "n 109", - "Edge": "y 17", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", - "Opera": "y 10.5", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://theora.org/doc/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ol-reversed.json b/bikeshed/spec-data/readonly/caniuse/feature-ol-reversed.json index eb8742f71a..fbae74d7b7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ol-reversed.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ol-reversed.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 20", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 18", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "y all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#attr-ol-reversed" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-once-event-listener.json b/bikeshed/spec-data/readonly/caniuse/feature-once-event-listener.json index 99508b4e4e..d971b2d71c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-once-event-listener.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-once-event-listener.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 55", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 50", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-addeventlisteneroptions-once" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-online-status.json b/bikeshed/spec-data/readonly/caniuse/feature-online-status.json index 3e0cbd2a0e..5f7eb786d9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-online-status.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-online-status.json @@ -2,24 +2,24 @@ "notes": "\"online\" does not always mean connection to the internet, it can also just mean connection to some network.\r\n\r\nEarly versions of Chrome and Safari always reported \"true\" for `navigator.onLine`", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 14", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 41", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/browsers.html#browser-state" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-opus.json b/bikeshed/spec-data/readonly/caniuse/feature-opus.json index a6376fe721..f9e8f45435 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-opus.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-opus.json @@ -1,25 +1,25 @@ { "notes": "Support refers to this format's use in the `audio` element, not other conditions.\r\n\r\nFor Opera the Linux version may be able to play it when the GStreamer module is up to date and the served mime-type is 'audio/ogg'.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 33", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 20", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "a 11", "Safari on iOS": "a 11.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc6716" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-orientation-sensor.json b/bikeshed/spec-data/readonly/caniuse/feature-orientation-sensor.json index e98b56ecd1..99173adf15 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-orientation-sensor.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-orientation-sensor.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 54", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/orientation-sensor/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-outline.json b/bikeshed/spec-data/readonly/caniuse/feature-outline.json index 8bc35dd371..eb11f23da8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-outline.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-outline.json @@ -1,25 +1,25 @@ { - "notes": "Firefox also supports the non-standard `-moz-outline-radius` property that acts similar to `border-radius`.", + "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 8", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "n all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-ui/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-pad-start-end.json b/bikeshed/spec-data/readonly/caniuse/feature-pad-start-end.json index efd5adc1f7..7c8f3d0257 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-pad-start-end.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-pad-start-end.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 57", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 48", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 44", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-string.prototype.padend" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-page-transition-events.json b/bikeshed/spec-data/readonly/caniuse/feature-page-transition-events.json index 9df58a3e8b..ddc6c7f40f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-page-transition-events.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-page-transition-events.json @@ -2,24 +2,24 @@ "notes": "Whether or not a document was/will be cached by a back-forward cache is indicated by [`event.persisted` property](https://developer.mozilla.org/en-US/docs/Web/API/PageTransitionEvent/persisted) where developers can [opt to reload the page](https://web.dev/bfcache/) if needed.", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/indices.html#event-pageshow" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-pagevisibility.json b/bikeshed/spec-data/readonly/caniuse/feature-pagevisibility.json index e7df8a13d4..b86e60fecf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-pagevisibility.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-pagevisibility.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 33", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 18", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 20", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/page-visibility/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-passive-event-listener.json b/bikeshed/spec-data/readonly/caniuse/feature-passive-event-listener.json index dd229a1b37..8fc410eeec 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-passive-event-listener.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-passive-event-listener.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 51", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 38", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-addeventlisteneroptions-passive" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-passkeys.json b/bikeshed/spec-data/readonly/caniuse/feature-passkeys.json new file mode 100644 index 0000000000..5253e94dc9 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-passkeys.json @@ -0,0 +1,25 @@ +{ + "notes": "Support for various passkey features also depends on the device and OS used. See the [passkeys.dev site](https://passkeys.dev/device-support/) for details.\r\n\r\nBrowsers without Passkey support may still allow authentication at passkey logins via other types of security keys as long as they support [WebAuthn](/webauthn).", + "support": { + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 108", + "Chrome for Android": "y 127", + "Edge": "y 108", + "Firefox": "y 122", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "y 97", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.1", + "Safari on iOS": "y 16.0", + "Samsung Internet": "y 21", + "UC Browser for Android": "n 15.5" + }, + "url": "https://fidoalliance.org/multi-device-fido-credentials/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-path2d.json b/bikeshed/spec-data/readonly/caniuse/feature-path2d.json index 3a8a4cfa92..4f2a5559eb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-path2d.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-path2d.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 68", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 48", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 55", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.0", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/canvas.html#path2d-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-payment-request.json b/bikeshed/spec-data/readonly/caniuse/feature-payment-request.json index 5bc5cbcf6b..156496d40d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-payment-request.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-payment-request.json @@ -1,25 +1,25 @@ { "notes": "Apple provides an equivalent proprietary API called [Apple Pay JS](https://developer.apple.com/reference/applepayjs/). Google provides a [PaymentRequest wrapper for Apple Pay JS](https://github.com/GoogleChrome/appr-wrapper).", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 78", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 66", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "y 12.1", "Safari on iOS": "y 12.2", "Samsung Internet": "y 12.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/payment-request/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-pdf-viewer.json b/bikeshed/spec-data/readonly/caniuse/feature-pdf-viewer.json index 654b63492f..3a49afc700 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-pdf-viewer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-pdf-viewer.json @@ -1,25 +1,25 @@ { "notes": "When displaying PDFs inline rather than separately, iOS Safari will only display the first page of the document.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "u 10", "Chrome": "y 15", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 15", "Firefox": "y 19", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "a 11", "IE Mobile": "u 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 12", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-permissions-api.json b/bikeshed/spec-data/readonly/caniuse/feature-permissions-api.json index 932d8193fd..8217ca4ec5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-permissions-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-permissions-api.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 43", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 46", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 30", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/permissions/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-permissions-policy.json b/bikeshed/spec-data/readonly/caniuse/feature-permissions-policy.json index 6bca0290e3..68797d1480 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-permissions-policy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-permissions-policy.json @@ -1,25 +1,25 @@ { "notes": "Standard support includes the HTTP `Permissions-Policy` header, `allow` attribute on iframes and the `document.permissionsPolicy` JS API.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "a 13.18", + "Android Browser": "n 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 88", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 88", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "a 95", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/webappsec-permissions-policy/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-picture-in-picture.json b/bikeshed/spec-data/readonly/caniuse/feature-picture-in-picture.json index b534392e14..5fe6bee3b5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-picture-in-picture.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-picture-in-picture.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 70", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "y 79", "Firefox": "a 68", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 73", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 13.1", "Safari on iOS": "y 14.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/picture-in-picture/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-picture.json b/bikeshed/spec-data/readonly/caniuse/feature-picture.json index 9ede29708b..41f7a20c99 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-picture.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-picture.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ping.json b/bikeshed/spec-data/readonly/caniuse/feature-ping.json index f7b07146b8..220f050722 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ping.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ping.json @@ -2,24 +2,24 @@ "notes": "While still in the WHATWG specification, this feature was removed from the W3C HTML5 specification in 2010.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#ping" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-png-alpha.json b/bikeshed/spec-data/readonly/caniuse/feature-png-alpha.json index fceea88882..37795de074 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-png-alpha.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-png-alpha.json @@ -2,24 +2,24 @@ "notes": "IE6 does support full transparency in 8-bit PNGs, which can sometimes be an alternative to 24-bit PNGs.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 7", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/PNG/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-pointer-events.json b/bikeshed/spec-data/readonly/caniuse/feature-pointer-events.json index d3b5d66193..50e3a25fdc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-pointer-events.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-pointer-events.json @@ -2,24 +2,24 @@ "notes": "Already part of the SVG specification, and all SVG-supporting browsers appear to support the property on SVG elements.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://wiki.csswg.org/spec/css4-ui#pointer-events" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-pointer.json b/bikeshed/spec-data/readonly/caniuse/feature-pointer.json index 41727c7c5c..57a27a981d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-pointer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-pointer.json @@ -1,25 +1,25 @@ { "notes": "Firefox, starting with version 28, provides the 'dom.w3c_pointer_events.enabled' flag to support this specification.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 55", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 59", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13", "Safari on iOS": "y 13.2", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/pointerevents/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-pointerlock.json b/bikeshed/spec-data/readonly/caniuse/feature-pointerlock.json index 80ee037b86..7748ee344e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-pointerlock.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-pointerlock.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 37", - "Chrome for Android": "y 109", + "Chrome for Android": "n 127", "Edge": "y 13", - "Firefox": "y 41", - "Firefox for Android": "y 107", + "Firefox": "y 50", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 12.1", + "QQ Browser": "u 14.9", "Safari": "y 10.1", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "u 15.5" }, "url": "https://www.w3.org/TR/pointerlock/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-portals.json b/bikeshed/spec-data/readonly/caniuse/feature-portals.json index 510e0b1a0c..ca85b990d8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-portals.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-portals.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/portals/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-prefers-color-scheme.json b/bikeshed/spec-data/readonly/caniuse/feature-prefers-color-scheme.json index 54a8b6bee1..04eede138d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-prefers-color-scheme.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-prefers-color-scheme.json @@ -1,25 +1,25 @@ { "notes": "Support will also depend on whether or not the OS has support for a light/dark theme preference.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 76", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 67", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 62", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12.1", "Safari on iOS": "y 13.0", "Samsung Internet": "y 12.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/mediaqueries-5/#prefers-color-scheme" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-prefers-reduced-motion.json b/bikeshed/spec-data/readonly/caniuse/feature-prefers-reduced-motion.json index 3b64fcfe7b..05462059bf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-prefers-reduced-motion.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-prefers-reduced-motion.json @@ -1,25 +1,25 @@ { "notes": "prefers-reduced-motion media query also depends on the OS as to whether it is supported.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 74", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 63", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 11.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/mediaqueries-5/#prefers-reduced-motion" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-progress.json b/bikeshed/spec-data/readonly/caniuse/feature-progress.json index ea308e3f1c..d0bcfdf5de 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-progress.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-progress.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/forms.html#the-progress-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-promise-finally.json b/bikeshed/spec-data/readonly/caniuse/feature-promise-finally.json index 7c876c69d0..e386024302 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-promise-finally.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-promise-finally.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 63", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 58", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 50", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-promise.prototype.finally" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-promises.json b/bikeshed/spec-data/readonly/caniuse/feature-promises.json index 05f3704c5b..0afee5f01e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-promises.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-promises.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 33", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 20", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-promise-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-proximity.json b/bikeshed/spec-data/readonly/caniuse/feature-proximity.json index c2c6ecd63d..b4cb40f9d7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-proximity.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-proximity.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/proximity/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-proxy.json b/bikeshed/spec-data/readonly/caniuse/feature-proxy.json index 12f0ac92d5..378a7404a3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-proxy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-proxy.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 18", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-proxy-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-publickeypinning.json b/bikeshed/spec-data/readonly/caniuse/feature-publickeypinning.json index 032f47e24c..1c9342187e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-publickeypinning.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-publickeypinning.json @@ -1,25 +1,25 @@ { "notes": "All browsers have removed support. The header was too complicated to use, and when incorrectly implemented, could completely block websites for longer periods of time.\r\n\r\n[Certificate transparency](https://developer.mozilla.org/en-US/docs/Web/Security/Certificate_Transparency) is widely used and tries to provide the same security by very different means.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://tools.ietf.org/html/rfc7469" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-push-api.json b/bikeshed/spec-data/readonly/caniuse/feature-push-api.json index 655d4b71af..edca19df11 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-push-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-push-api.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 50", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "a 16.1", - "Safari on iOS": "n 16.3", + "Safari on iOS": "a 16.4", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/push-api/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-queryselector.json b/bikeshed/spec-data/readonly/caniuse/feature-queryselector.json index 9dc2f65d7b..edc96a07be 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-queryselector.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-queryselector.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-parentnode-queryselector" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-readonly-attr.json b/bikeshed/spec-data/readonly/caniuse/feature-readonly-attr.json index 84d94c1dfe..b90839d522 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-readonly-attr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-readonly-attr.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "y all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/input.html#the-readonly-attribute" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-referrer-policy.json b/bikeshed/spec-data/readonly/caniuse/feature-referrer-policy.json index 9839b3262f..4b1ac2c806 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-referrer-policy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-referrer-policy.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 12.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/referrer-policy/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-registerprotocolhandler.json b/bikeshed/spec-data/readonly/caniuse/feature-registerprotocolhandler.json index 6e2aa366d3..d7a6feca2a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-registerprotocolhandler.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-registerprotocolhandler.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 10", "Chrome": "y 13", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 79", "Firefox": "y 3", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 11.6", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/webappapis.html#custom-handlers" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-rel-noopener.json b/bikeshed/spec-data/readonly/caniuse/feature-rel-noopener.json index 3dbc0ecd51..21998ca1d4 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-rel-noopener.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-rel-noopener.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#link-type-noopener" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-rel-noreferrer.json b/bikeshed/spec-data/readonly/caniuse/feature-rel-noreferrer.json index 77467bcec3..a2d3d4c951 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-rel-noreferrer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-rel-noreferrer.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 16", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 33", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#link-type-noreferrer" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-rellist.json b/bikeshed/spec-data/readonly/caniuse/feature-rellist.json index 82c67a3276..565db904a8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-rellist.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-rellist.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 65", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 30", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#dom-a-rellist" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-rem.json b/bikeshed/spec-data/readonly/caniuse/feature-rem.json index 82e2ebeb54..c686bde055 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-rem.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-rem.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-values/#font-relative-lengths" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-requestanimationframe.json b/bikeshed/spec-data/readonly/caniuse/feature-requestanimationframe.json index 2602c8286f..500773b11c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-requestanimationframe.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-requestanimationframe.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 24", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 23", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/webappapis.html#animation-frames" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-requestidlecallback.json b/bikeshed/spec-data/readonly/caniuse/feature-requestidlecallback.json index 6ec92c39f9..57d78920e6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-requestidlecallback.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-requestidlecallback.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 47", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 55", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 34", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y TP", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/requestidlecallback/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-resizeobserver.json b/bikeshed/spec-data/readonly/caniuse/feature-resizeobserver.json index 41ea1924e6..d71a3dbe49 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-resizeobserver.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-resizeobserver.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 64", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 69", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13.1", "Safari on iOS": "y 13.4", "Samsung Internet": "y 9.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/resize-observer/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-resource-timing.json b/bikeshed/spec-data/readonly/caniuse/feature-resource-timing.json index 69966464fd..6d7e70099c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-resource-timing.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-resource-timing.json @@ -1,25 +1,25 @@ { - "notes": "", + "notes": "For newer Resource Timing APIs search for specific methods or see the sub-features under [PerformanceResourceTiming API](/mdn-api_performanceresourcetiming)", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 35", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/resource-timing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-rest-parameters.json b/bikeshed/spec-data/readonly/caniuse/feature-rest-parameters.json index 48905cbff4..9892a870ba 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-rest-parameters.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-rest-parameters.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 47", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 34", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 10.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-function-definitions" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-rtcpeerconnection.json b/bikeshed/spec-data/readonly/caniuse/feature-rtcpeerconnection.json index 58c85a44e7..d0d2565d33 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-rtcpeerconnection.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-rtcpeerconnection.json @@ -1,25 +1,25 @@ { "notes": "The legacy Edge browser also offers a compatible implementation known as [ObjectRTC](http://blogs.msdn.com/b/ie/archive/2014/10/27/bringing-interoperable-real-time-communications-to-the-web.aspx). See [Object RTC](https://caniuse.com/#feat=objectrtc) for support details for that API.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 43", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Samsung Internet": "y 6.2", + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/webrtc-pc/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ruby.json b/bikeshed/spec-data/readonly/caniuse/feature-ruby.json index b313757568..6241692fce 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ruby.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ruby.json @@ -2,24 +2,24 @@ "notes": "Browsers without native support can still simulate support using CSS. Partial support refers to only supporting basic ruby, may still be missing writing-mode, Complex ruby and CSS3 Ruby.", "support": { "Android Browser": "a 3", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 10", "Chrome": "a 5", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 5.5", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 5", "Safari on iOS": "a 5.0", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-ruby-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-run-in.json b/bikeshed/spec-data/readonly/caniuse/feature-run-in.json index 35fbc86d8e..4e10dbcbaf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-run-in.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-run-in.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 7", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 8", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "y all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-display-3/#valdef-display-run-in" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-same-site-cookie-attribute.json b/bikeshed/spec-data/readonly/caniuse/feature-same-site-cookie-attribute.json index d22b8bef37..03d0d6aa0d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-same-site-cookie-attribute.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-same-site-cookie-attribute.json @@ -1,25 +1,25 @@ { "notes": "This feature is backwards compatible. Browsers not supporting this feature will simply use the cookie as a regular cookie. There is no need to deliver different cookies to clients.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 51", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 60", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 39", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "u 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", "Safari": "y 15", "Safari on iOS": "y 13.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-07" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-screen-orientation.json b/bikeshed/spec-data/readonly/caniuse/feature-screen-orientation.json index 7725c0efae..26bba5a096 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-screen-orientation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-screen-orientation.json @@ -1,25 +1,25 @@ { "notes": "Partial support refers to an [older version](https://www.w3.org/TR/2014/WD-screen-orientation-20140220/) of the draft specification, and the spec has undergone significant changes since, for example renaming the `screen.lockOrientation` method to `screen.orientation.lock`.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/screen-orientation/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-script-async.json b/bikeshed/spec-data/readonly/caniuse/feature-script-async.json index 584939da94..eb48c2bf47 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-script-async.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-script-async.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#attr-script-async" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-script-defer.json b/bikeshed/spec-data/readonly/caniuse/feature-script-defer.json index 5b392f2874..98f74a0d3b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-script-defer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-script-defer.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#attr-script-defer" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-scrollintoview.json b/bikeshed/spec-data/readonly/caniuse/feature-scrollintoview.json index bfe56b454b..d2f3430e1e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-scrollintoview.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-scrollintoview.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 8", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", - "Samsung Internet": "a 4", - "UC Browser for Android": "y 13.4" + "Samsung Internet": "y 8.2", + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/cssom-view/#dom-element-scrollintoview" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-scrollintoviewifneeded.json b/bikeshed/spec-data/readonly/caniuse/feature-scrollintoviewifneeded.json index 8d99bba1e6..5616e46840 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-scrollintoviewifneeded.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-scrollintoviewifneeded.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-sdch.json b/bikeshed/spec-data/readonly/caniuse/feature-sdch.json index faa839f8ac..03e615065d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-sdch.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-sdch.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://docs.google.com/viewer?a=v&pid=forums&srcid=MDIwOTgxNDMwMTgyMjkzMTI2ODcBMDQ2MzU5NDU2MDA0MTg5NDE1MTkBTDZmaENoSG9BZ0FKATAuMQEBdjI" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-selection-api.json b/bikeshed/spec-data/readonly/caniuse/feature-selection-api.json index 52ca2b2220..1b23504490 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-selection-api.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-selection-api.json @@ -1,25 +1,25 @@ { - "notes": "See also support for the related [DOM range](https://caniuse.com/#feat=dom-range) ", + "notes": "See also support for the related [DOM range](https://caniuse.com/dom-range) ", "support": { "Android Browser": "y 4.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "a 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/selection-api/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-selectlist.json b/bikeshed/spec-data/readonly/caniuse/feature-selectlist.json new file mode 100644 index 0000000000..04cd61bef4 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-selectlist.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", + "Opera Mini": "n all", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" + }, + "url": "https://open-ui.org/components/selectlist/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-server-timing.json b/bikeshed/spec-data/readonly/caniuse/feature-server-timing.json index 1a9e8025ff..edc97b257b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-server-timing.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-server-timing.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 65", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 61", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 52", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "a 12.1", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", + "Samsung Internet": "n 25", + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/server-timing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-serviceworkers.json b/bikeshed/spec-data/readonly/caniuse/feature-serviceworkers.json index 112fedd3f6..2c6da039f1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-serviceworkers.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-serviceworkers.json @@ -1,25 +1,25 @@ { "notes": "Details on partial support can be found on [is ServiceWorker Ready?](https://jakearchibald.github.io/isserviceworkerready/)", "support": { - "Android Browser": "a 109", - "Baidu Browser": "y 13.18", + "Android Browser": "a 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 45", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 32", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/ServiceWorker/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-setimmediate.json b/bikeshed/spec-data/readonly/caniuse/feature-setimmediate.json index 6917e682b1..cac14faa51 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-setimmediate.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-setimmediate.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 10", "IE Mobile": "y 10", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/setImmediate/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-shadowdom.json b/bikeshed/spec-data/readonly/caniuse/feature-shadowdom.json index df2324a532..358223e8bf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-shadowdom.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-shadowdom.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "y 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/shadow-dom/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-shadowdomv1.json b/bikeshed/spec-data/readonly/caniuse/feature-shadowdomv1.json index 3e923e8b5b..24092017eb 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-shadowdomv1.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-shadowdomv1.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 53", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 63", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 40", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10", "Safari on iOS": "y 11.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/shadow-dom/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-sharedarraybuffer.json b/bikeshed/spec-data/readonly/caniuse/feature-sharedarraybuffer.json index c29e75740e..b37bee51a6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-sharedarraybuffer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-sharedarraybuffer.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 68", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 79", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.2", "Safari on iOS": "y 15.2", "Samsung Internet": "y 15.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-sharedarraybuffer-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-sharedworkers.json b/bikeshed/spec-data/readonly/caniuse/feature-sharedworkers.json index a89a09db04..24963de5cc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-sharedworkers.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-sharedworkers.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 79", "Firefox": "y 29", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 16.0", "Safari on iOS": "y 16.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/workers.html#shared-workers-introduction" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-sni.json b/bikeshed/spec-data/readonly/caniuse/feature-sni.json index 68f689c0ec..edf5a6af78 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-sni.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-sni.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 6", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc6066" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-spdy.json b/bikeshed/spec-data/readonly/caniuse/feature-spdy.json index 1851de6620..608a44ab1b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-spdy.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-spdy.json @@ -1,25 +1,25 @@ { "notes": "See also support for [HTTP2](https://caniuse.com/#feat=http2), successor of SPDY.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "y 11", "IE Mobile": "y 11", - "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 8", "Safari on iOS": "y 8", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.chromium.org/spdy/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-speech-recognition.json b/bikeshed/spec-data/readonly/caniuse/feature-speech-recognition.json index c9703cf875..a0c02f0763 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-speech-recognition.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-speech-recognition.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/speech-api/speechapi.html#speechreco-section" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-speech-synthesis.json b/bikeshed/spec-data/readonly/caniuse/feature-speech-synthesis.json index 8364bc5f46..da8ef96661 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-speech-synthesis.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-speech-synthesis.json @@ -1,25 +1,25 @@ { "notes": "Samsung Internet for GearVR: In Development, release based on Chromium m53 due Q1/2017", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 33", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 27", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/speech-api/speechapi.html#tts-section" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-spellcheck-attribute.json b/bikeshed/spec-data/readonly/caniuse/feature-spellcheck-attribute.json index 4dd2f73985..bb1ff9e831 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-spellcheck-attribute.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-spellcheck-attribute.json @@ -1,25 +1,25 @@ { - "notes": "The partial support in mobile browsers results from their OS generally having built-in spell checking instead of using the wavy underline to indicate misspelled words. `spellcheck=\"false\"` does not seem to have any effect in these browsers.\r\n\r\nBrowsers have different behavior in how they deal with spellchecking in combination with the the `lang` attribute. Generally spelling is based on the browser's language, not the language of the document.", + "notes": "The partial support in mobile browsers results from their OS generally having built-in spell checking instead of using the wavy underline to indicate misspelled words. `spellcheck=\"false\"` does not seem to have any effect in these browsers.\r\n\r\nBrowsers have different behavior in how they deal with spellchecking in combination with the `lang` attribute. Generally spelling is based on the browser's language, not the language of the document.", "support": { "Android Browser": "a 2.1", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "y 10", "Chrome": "y 9", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "y 10", "IE Mobile": "a 10", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 10.5", "Opera Mini": "a all", "Opera Mobile": "a 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "a 3.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://html.spec.whatwg.org/multipage/interaction.html#spelling-and-grammar-checking" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-sql-storage.json b/bikeshed/spec-data/readonly/caniuse/feature-sql-storage.json index 61b4b54cf9..020a27692e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-sql-storage.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-sql-storage.json @@ -1,25 +1,25 @@ { - "notes": "The Web SQL Database specification is no longer being maintained and support intended to be dropped in future versions. Migrate to e.g. [Web Storage](/namevalue-storage) or [IndexedDB](/?search=IndexedDB).", + "notes": "The Web SQL Database specification is no longer being maintained and support is intended to be dropped in future versions. Migrate to e.g. [Web Storage](/namevalue-storage) or [IndexedDB](/?search=IndexedDB).", "support": { - "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", - "Chrome": "y 4", - "Chrome for Android": "y 109", - "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "y 10.5", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/webdatabase/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-srcset.json b/bikeshed/spec-data/readonly/caniuse/feature-srcset.json index 0e79b674b3..1f9f90629c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-srcset.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-srcset.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y 9", - "Safari on iOS": "y 9.0", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "a 7.1", + "Safari on iOS": "a 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-stream.json b/bikeshed/spec-data/readonly/caniuse/feature-stream.json index ff1c698460..bb18f0090c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-stream.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-stream.json @@ -1,25 +1,25 @@ { "notes": "As of Chrome 47, the getUserMedia API cannot be called from insecure origins.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 53", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 40", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/mediacapture-streams/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-streams.json b/bikeshed/spec-data/readonly/caniuse/feature-streams.json index 2503968b6a..69c2439cf5 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-streams.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-streams.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 89", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 89", "Firefox": "y 102", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 76", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "a 10", "Safari on iOS": "a 10.3", "Samsung Internet": "y 15.0", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://streams.spec.whatwg.org/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-stricttransportsecurity.json b/bikeshed/spec-data/readonly/caniuse/feature-stricttransportsecurity.json index e54768d66e..d320ad9ccc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-stricttransportsecurity.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-stricttransportsecurity.json @@ -2,24 +2,24 @@ "notes": "The HTTP header is 'Strict-Transport-Security'.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 12", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc6797" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-style-scoped.json b/bikeshed/spec-data/readonly/caniuse/feature-style-scoped.json index d6978218c3..232ac9bfec 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-style-scoped.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-style-scoped.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "y 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/html51/document-metadata.html#element-attrdef-style-scoped" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-subresource-integrity.json b/bikeshed/spec-data/readonly/caniuse/feature-subresource-integrity.json index c3f99853d1..9ae86010f7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-subresource-integrity.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-subresource-integrity.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 45", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 43", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 32", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SRI/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-css.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-css.json index 0c7476f4fd..6f67653924 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-css.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-css.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 24", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5", "Safari on iOS": "y 4.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-background/#background-image" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-filters.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-filters.json index b43edf2a8a..377323b1b7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-filters.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-filters.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SVG11/filters.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-fonts.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-fonts.json index 90e83c4c24..f892ae11cf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-fonts.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-fonts.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "y 7", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 3.2", "Safari on iOS": "y 3.2", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/SVG11/fonts.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-fragment.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-fragment.json index 53060a6dbb..36a11c969f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-fragment.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-fragment.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 10", "Chrome": "y 50", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 37", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 11.1", "Safari on iOS": "y 11.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SVG/linking.html#SVGFragmentIdentifiers" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-html.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-html.json index ef06229e15..29720ece2f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-html.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-html.json @@ -2,24 +2,24 @@ "notes": "Partial support refers to lack of filter support or buggy result from effects. A [CSS Filter Effects](https://www.w3.org/TR/filter-effects/) specification is in the works that would replace this method.", "support": { "Android Browser": "a 4.4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "y 10", "Chrome": "a 4", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "a 9", "Opera Mini": "n all", "Opera Mobile": "a 10", - "QQ Browser": "a 13.1", + "QQ Browser": "a 14.9", "Safari": "a 4", "Safari on iOS": "a 3.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/SVG11/extend.html#ForeignObjectElement" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-html5.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-html5.json index 61ccdd9547..ee6c9034c9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-html5.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-html5.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 7", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#svg-0" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-img.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-img.json index 451e485327..0216994e64 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-img.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-img.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 28", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg-smil.json b/bikeshed/spec-data/readonly/caniuse/feature-svg-smil.json index 43894feb95..e691be37e3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg-smil.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg-smil.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SVG11/animate.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-svg.json b/bikeshed/spec-data/readonly/caniuse/feature-svg.json index 7171914ebf..bc5c7c7321 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-svg.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-svg.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SVG/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-sxg.json b/bikeshed/spec-data/readonly/caniuse/feature-sxg.json index a6176a0d9d..a1787eb225 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-sxg.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-sxg.json @@ -1,25 +1,25 @@ { "notes": "Note this requires the page to be delivered signed by a certificate with the CanSignHttpExchanges extension.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 73", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 64", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 11.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/draft-yasskin-http-origin-signed-responses" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-tabindex-attr.json b/bikeshed/spec-data/readonly/caniuse/feature-tabindex-attr.json index 2492980776..5b38ea2a46 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-tabindex-attr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-tabindex-attr.json @@ -1,25 +1,25 @@ { "notes": "Mac OS X \"Full Keyboard Access\" refers to setting Keyboard→Shortcuts→Full Keyboard Access to \"All controls\" in the System Preferences.\r\n\r\n\"Unknown\" support for mobile browsers is due to lacking a method of tabbing through fields.", "support": { - "Android Browser": "u 109", - "Baidu Browser": "y 13.18", + "Android Browser": "u 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 7", "IE Mobile": "u 11", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "u all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 3.2", - "Samsung Internet": "u 19.0", - "UC Browser for Android": "y 13.4" + "Samsung Internet": "u 25", + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-template-literals.json b/bikeshed/spec-data/readonly/caniuse/feature-template-literals.json index 904b565b3a..0f5845a83a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-template-literals.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-template-literals.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 41", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 13", "Firefox": "y 34", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 29", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-template-literals" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-template.json b/bikeshed/spec-data/readonly/caniuse/feature-template.json index 5aae0ca6e1..c2e6c0b226 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-template.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-template.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 35", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 15", "Firefox": "y 22", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 22", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-template-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-temporal.json b/bikeshed/spec-data/readonly/caniuse/feature-temporal.json index 3e8800be2a..0061f8ee70 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-temporal.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-temporal.json @@ -1,25 +1,25 @@ { "notes": "All browsers are working on implementing this.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://tc39.es/proposal-temporal/docs/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-text-decoration.json b/bikeshed/spec-data/readonly/caniuse/feature-text-decoration.json index d188c40147..188a15d1bf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-text-decoration.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-text-decoration.json @@ -1,25 +1,25 @@ { "notes": "All browsers support the CSS2 version of `text-decoration`, which matches only the `text-decoration-line` values (`underline`, etc.)", "support": { - "Android Browser": "y 109", - "Baidu Browser": "a 13.18", + "Android Browser": "y 127", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 57", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "a 36", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "a 2.5", "Opera": "a 44", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "a 14.9", "Safari": "a 12.1", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "a 7.2", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/css-text-decor-3/#line-decoration" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-text-emphasis.json b/bikeshed/spec-data/readonly/caniuse/feature-text-emphasis.json index 7db01d7a42..8ccb14117c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-text-emphasis.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-text-emphasis.json @@ -1,25 +1,25 @@ { "notes": "Some old WebKit browsers (like Chrome 24) support `-webkit-text-emphasis`, but does not support CJK languages and is therefore considered unsupported.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 99", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 99", "Firefox": "y 46", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 86", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 7.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 18.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-text-decor-3/#text-emphasis-property" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-text-overflow.json b/bikeshed/spec-data/readonly/caniuse/feature-text-overflow.json index b0e23fa107..9605e044ea 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-text-overflow.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-text-overflow.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 7", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 6", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-ui/#text-overflow" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-text-size-adjust.json b/bikeshed/spec-data/readonly/caniuse/feature-text-size-adjust.json index d710ba6cfa..d526b9d408 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-text-size-adjust.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-text-size-adjust.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 54", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 45", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-size-adjust/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-text-stroke.json b/bikeshed/spec-data/readonly/caniuse/feature-text-stroke.json index 7304d1b8ef..af4ee6717d 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-text-stroke.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-text-stroke.json @@ -1,25 +1,25 @@ { "notes": "Does not yet appear in any W3C specification. Was briefly included in a spec as the \"text-outline\" property, but this was removed.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://compat.spec.whatwg.org/#text-fill-and-stroking" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-textcontent.json b/bikeshed/spec-data/readonly/caniuse/feature-textcontent.json index e6bde9b60e..b6ff99ef0f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-textcontent.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-textcontent.json @@ -2,24 +2,24 @@ "notes": "`Node.textContent` is somewhat similar to, but has important differences from, [`HTMLElement.innerText`](https://caniuse.com/#feat=innertext).", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 4.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://dom.spec.whatwg.org/#dom-node-textcontent" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-textencoder.json b/bikeshed/spec-data/readonly/caniuse/feature-textencoder.json index 822a2620fe..084c876929 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-textencoder.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-textencoder.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 38", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 20", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 25", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://encoding.spec.whatwg.org/#api" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-tls1-1.json b/bikeshed/spec-data/readonly/caniuse/feature-tls1-1.json index 77a0e73f0d..fd1054810e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-tls1-1.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-tls1-1.json @@ -1,25 +1,25 @@ { "notes": "TLS 1.0 & 1.1 are deprecated in Chrome, Edge, Firefox, Internet Explorer 11, & Safari.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "a 85", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "a 78", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "a 73", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc4346" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-tls1-2.json b/bikeshed/spec-data/readonly/caniuse/feature-tls1-2.json index 02a9e52cf0..7d9652e6ed 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-tls1-2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-tls1-2.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 29", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 27", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 16", "Opera Mini": "y all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc5246" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-tls1-3.json b/bikeshed/spec-data/readonly/caniuse/feature-tls1-3.json index b913cad9cb..1a5606bb5c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-tls1-3.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-tls1-3.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 70", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 63", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 57", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 14", "Safari on iOS": "y 12.2", "Samsung Internet": "y 10.1", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tools.ietf.org/html/rfc8446" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-touch.json b/bikeshed/spec-data/readonly/caniuse/feature-touch.json index ef26d93182..24a2dd8b3b 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-touch.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-touch.json @@ -2,24 +2,24 @@ "notes": "Internet Explorer implements Pointer Events specification which supports more input devices than Touch Events one.\r\n\r\nThere is a library on GitHub that is working toward bringing W3C touch events to IE 10 and 11: https://github.com/CamHenlin/TouchPolyfill \r\n\r\nRemoved support in Firefox refers to desktop Firefox only.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 22", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "a 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 15", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "n TP", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/touch-events/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-transforms2d.json b/bikeshed/spec-data/readonly/caniuse/feature-transforms2d.json index 0cb1fe3627..65046d1d69 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-transforms2d.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-transforms2d.json @@ -1,25 +1,25 @@ { "notes": "The scale transform can be emulated in IE < 9 using Microsoft's \"zoom\" extension, others are (not easily) possible using the MS Matrix filter", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 23", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-2d-transforms/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-transforms3d.json b/bikeshed/spec-data/readonly/caniuse/feature-transforms3d.json index 4d0630197a..11f0fc9020 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-transforms3d.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-transforms3d.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 23", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-transforms-2/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-trusted-types.json b/bikeshed/spec-data/readonly/caniuse/feature-trusted-types.json index eb122435b4..669a2be337 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-trusted-types.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-trusted-types.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 83", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 83", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 69", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 13.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/webappsec-trusted-types/dist/spec/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-ttf.json b/bikeshed/spec-data/readonly/caniuse/feature-ttf.json index 4a143dec97..da01d7b8e6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-ttf.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-ttf.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.0", "Opera Mini": "n all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 4.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://developer.apple.com/fonts/TrueType-Reference-Manual" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-typedarrays.json b/bikeshed/spec-data/readonly/caniuse/feature-typedarrays.json index 0e2640bfa2..b08909b8df 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-typedarrays.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-typedarrays.json @@ -2,24 +2,24 @@ "notes": "Includes support for ArrayBuffer objects.", "support": { "Android Browser": "y 4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 7", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://tc39.es/ecma262/#sec-typedarray-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-u2f.json b/bikeshed/spec-data/readonly/caniuse/feature-u2f.json index e387fe05de..62e9a624b7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-u2f.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-u2f.json @@ -1,25 +1,25 @@ { "notes": "The U2F API is [being decommissioned](https://www.yubico.com/blog/google-chrome-u2f-api-decommission-what-the-change-means-for-your-users-and-how-to-prepare/) (only the API, not the U2F protocol) and superseded by [WebAuthn](/webauthn).", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "y 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 42", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 13", "Safari on iOS": "y 13.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://fidoalliance.org/specs/fido-u2f-v1.0-nfc-bt-amendment-20150514/fido-u2f-javascript-api.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-unhandledrejection.json b/bikeshed/spec-data/readonly/caniuse/feature-unhandledrejection.json index c45f54eedd..3f16daef93 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-unhandledrejection.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-unhandledrejection.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 69", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/webappapis.html#unhandled-promise-rejections:event-unhandledrejection" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-upgradeinsecurerequests.json b/bikeshed/spec-data/readonly/caniuse/feature-upgradeinsecurerequests.json index 3ab0b296c0..33abc36807 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-upgradeinsecurerequests.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-upgradeinsecurerequests.json @@ -1,25 +1,25 @@ { "notes": "The HTTP header is `Content-Security-Policy: upgrade-insecure-requests`. Alternatively, the HTML tag is `<meta http-equiv=\"Content-Security-Policy\" content=\"upgrade-insecure-requests\">`.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 43", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 42", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 30", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/upgrade-insecure-requests/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-url-scroll-to-text-fragment.json b/bikeshed/spec-data/readonly/caniuse/feature-url-scroll-to-text-fragment.json index b3c8d4f8aa..b9d660419c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-url-scroll-to-text-fragment.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-url-scroll-to-text-fragment.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 81", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 83", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 68", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 16.1", "Safari on iOS": "y 16.1", "Samsung Internet": "y 13.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/ScrollToTextFragment/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-url.json b/bikeshed/spec-data/readonly/caniuse/feature-url.json index 37363ed818..4f0d196755 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-url.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-url.json @@ -2,24 +2,24 @@ "notes": "See also [URLSearchParams](#feat=urlsearchparams).", "support": { "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 32", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 26", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 19", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://url.spec.whatwg.org/#api" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-urlsearchparams.json b/bikeshed/spec-data/readonly/caniuse/feature-urlsearchparams.json index c7c20f62c8..c5ea35d169 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-urlsearchparams.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-urlsearchparams.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 49", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 44", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 36", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 10.1", "Safari on iOS": "y 10.3", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://url.spec.whatwg.org/#urlsearchparams" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-use-strict.json b/bikeshed/spec-data/readonly/caniuse/feature-use-strict.json index e4aa7585a9..b4a9ca7be0 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-use-strict.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-use-strict.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 13", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 11.5", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-14.1" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-user-select-none.json b/bikeshed/spec-data/readonly/caniuse/feature-user-select-none.json index 205fd7d177..2c571f8da8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-user-select-none.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-user-select-none.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 54", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 69", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 41", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "y TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-ui-4/#valdef-user-select-none" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-user-timing.json b/bikeshed/spec-data/readonly/caniuse/feature-user-timing.json index 4bca62ed9d..2af8aec2e6 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-user-timing.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-user-timing.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 38", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/user-timing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-variable-fonts.json b/bikeshed/spec-data/readonly/caniuse/feature-variable-fonts.json index 427c87189f..533f1ee5ac 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-variable-fonts.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-variable-fonts.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 66", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 17", "Firefox": "y 62", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 53", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-fonts-4/#font-variation-settings-def" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-vector-effect.json b/bikeshed/spec-data/readonly/caniuse/feature-vector-effect.json index 61847704d9..98e044a8ba 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-vector-effect.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-vector-effect.json @@ -2,24 +2,24 @@ "notes": "Other values for the `vector-effect` attribute/property are currently at risk of being removed from the specification as they are not being developed by browser vendors.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "u 10", "Chrome": "y 15", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 11.6", "Opera Mini": "y all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/SVG2/coords.html#VectorEffectProperty" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-vibration.json b/bikeshed/spec-data/readonly/caniuse/feature-vibration.json index 7c653651bd..aab553ee2c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-vibration.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-vibration.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 30", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 16", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 17", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/vibration/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-video.json b/bikeshed/spec-data/readonly/caniuse/feature-video.json index 01759ce928..39bf23e092 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-video.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-video.json @@ -2,24 +2,24 @@ "notes": "Different browsers have support for different video formats, see sub-features for details.\r\n\r\n", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 20", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", - "Safari": "y 4", + "QQ Browser": "y 14.9", + "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-video-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-videotracks.json b/bikeshed/spec-data/readonly/caniuse/feature-videotracks.json index adc6f14ecf..1077d98b83 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-videotracks.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-videotracks.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#audiotracklist-and-videotracklist-objects" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-view-transitions.json b/bikeshed/spec-data/readonly/caniuse/feature-view-transitions.json new file mode 100644 index 0000000000..8509a9fef6 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-view-transitions.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 111", + "Chrome for Android": "y 127", + "Edge": "y 111", + "Firefox": "n 132", + "Firefox for Android": "n 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "y 97", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 18.0", + "Safari on iOS": "y 18.0", + "Samsung Internet": "y 23", + "UC Browser for Android": "n 15.5" + }, + "url": "https://www.w3.org/TR/css-view-transitions-1/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-viewport-unit-variants.json b/bikeshed/spec-data/readonly/caniuse/feature-viewport-unit-variants.json index 312d5bd7cc..12a64d9e3f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-viewport-unit-variants.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-viewport-unit-variants.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "n 13.18", + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 108", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 108", "Firefox": "y 101", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 94", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 15.4", "Safari on iOS": "y 15.4", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Samsung Internet": "y 21", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/css-values-4/#viewport-variants" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-viewport-units.json b/bikeshed/spec-data/readonly/caniuse/feature-viewport-units.json index 99f4bc8149..5ba5925887 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-viewport-units.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-viewport-units.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 26", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 19", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 9", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-values/#viewport-relative-lengths" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wai-aria.json b/bikeshed/spec-data/readonly/caniuse/feature-wai-aria.json index 7e5e3704cc..236039f769 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-wai-aria.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-wai-aria.json @@ -2,24 +2,24 @@ "notes": "Support for ARIA is rather complex and currently is not fully supported in any browser. For detailed information on partial support see the [ARIA 1.0 Implementation Report](https://www.w3.org/WAI/ARIA/1.0/CR/implementation-report)\r\n", "support": { "Android Browser": "a 4.4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "n 10", "Chrome": "a 4", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 12", "Firefox": "a 2", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "a 8", "IE Mobile": "a 10", "KaiOS Browser": "a 2.5", "Opera": "a 9.5", "Opera Mini": "a all", "Opera Mobile": "a 10", - "QQ Browser": "a 13.1", + "QQ Browser": "a 14.9", "Safari": "a 4", "Safari on iOS": "a 3.2", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://www.w3.org/TR/wai-aria/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wake-lock.json b/bikeshed/spec-data/readonly/caniuse/feature-wake-lock.json index ef9050610b..82c7baf90a 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-wake-lock.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-wake-lock.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 85", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 90", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 126", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 73", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "a TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", "Samsung Internet": "y 14.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/wake-lock/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-bigint.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-bigint.json new file mode 100644 index 0000000000..e4dc8b0465 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-bigint.json @@ -0,0 +1,25 @@ +{ + "notes": "Safari supported BigInt in version 14.1, but did not support BigInt64Array (which is also required for Emscripten's BigInt support) until version 15", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 85", + "Chrome for Android": "y 127", + "Edge": "y 85", + "Firefox": "y 78", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 71", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 14.1", + "Safari on iOS": "y 14.5", + "Samsung Internet": "y 14.0", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/js-api/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-bulk-memory.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-bulk-memory.json new file mode 100644 index 0000000000..5db1189a0f --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-bulk-memory.json @@ -0,0 +1,25 @@ +{ + "notes": "Passive data segments/conditional segment initialization was also included by browsers with the threads extension", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 75", + "Chrome for Android": "y 127", + "Edge": "y 79", + "Firefox": "y 79", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 62", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 15", + "Safari on iOS": "y 15.0", + "Samsung Internet": "y 11.1", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-multi-value.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-multi-value.json new file mode 100644 index 0000000000..6087516975 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-multi-value.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 85", + "Chrome for Android": "y 127", + "Edge": "y 85", + "Firefox": "y 78", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 71", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 13.1", + "Safari on iOS": "y 13.2", + "Samsung Internet": "y 14.0", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-mutable-globals.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-mutable-globals.json new file mode 100644 index 0000000000..77f74a3f22 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-mutable-globals.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 74", + "Chrome for Android": "y 127", + "Edge": "y 79", + "Firefox": "y 61", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 60", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 12", + "Safari on iOS": "y 12.0", + "Samsung Internet": "y 11.1", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-nontrapping-fptoint.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-nontrapping-fptoint.json new file mode 100644 index 0000000000..4e77150304 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-nontrapping-fptoint.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 75", + "Chrome for Android": "y 127", + "Edge": "y 79", + "Firefox": "y 64", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 62", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 15", + "Safari on iOS": "y 15.0", + "Samsung Internet": "y 11.1", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-reference-types.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-reference-types.json new file mode 100644 index 0000000000..6e95b31ca4 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-reference-types.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 96", + "Chrome for Android": "y 127", + "Edge": "y 96", + "Firefox": "y 79", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 82", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 15", + "Safari on iOS": "y 15.0", + "Samsung Internet": "y 17.0", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-signext.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-signext.json new file mode 100644 index 0000000000..9a8a07ea55 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-signext.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 74", + "Chrome for Android": "y 127", + "Edge": "y 79", + "Firefox": "y 62", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 62", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 14.1", + "Safari on iOS": "y 14.5", + "Samsung Internet": "y 11.1", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-simd.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-simd.json new file mode 100644 index 0000000000..ebb55e1252 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-simd.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 91", + "Chrome for Android": "y 127", + "Edge": "y 91", + "Firefox": "y 89", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 77", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 16.4", + "Safari on iOS": "y 16.4", + "Samsung Internet": "y 16.0", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm-threads.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm-threads.json new file mode 100644 index 0000000000..347f0ee444 --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm-threads.json @@ -0,0 +1,25 @@ +{ + "notes": "Threads support in browsers also includes passive data segments (from the bulk-memory extension)", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "u 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 74", + "Chrome for Android": "y 127", + "Edge": "y 79", + "Firefox": "y 79", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 2.5", + "Opera": "y 62", + "Opera Mini": "n all", + "Opera Mobile": "y 80", + "QQ Browser": "u 14.9", + "Safari": "y 14.1", + "Safari on iOS": "y 14.5", + "Samsung Internet": "y 11.1", + "UC Browser for Android": "y 15.5" + }, + "url": "https://webassembly.github.io/spec/core/" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wasm.json b/bikeshed/spec-data/readonly/caniuse/feature-wasm.json index d1205ffede..a9ce640d55 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-wasm.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-wasm.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 57", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 16", "Firefox": "y 52", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 44", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 11", "Safari on iOS": "y 11.0", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://github.com/WebAssembly/spec" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wav.json b/bikeshed/spec-data/readonly/caniuse/feature-wav.json index f16e133f30..bff91664b8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-wav.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-wav.json @@ -2,24 +2,24 @@ "notes": "Support refers to this format's use in the `audio` element, not other conditions.", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 10.5", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wbr-element.json b/bikeshed/spec-data/readonly/caniuse/feature-wbr-element.json index 06fff439e9..9fc98e2975 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-wbr-element.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-wbr-element.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.3", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.2", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-wbr-element" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-web-animation.json b/bikeshed/spec-data/readonly/caniuse/feature-web-animation.json index ead9ba087f..87876c57db 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-web-animation.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-web-animation.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 84", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 84", "Firefox": "y 75", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 71", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "a 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "a 14.9", "Safari": "y 13.1", "Safari on iOS": "y 13.4", - "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "Samsung Internet": "y 14.0", + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/web-animations/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-web-app-manifest.json b/bikeshed/spec-data/readonly/caniuse/feature-web-app-manifest.json deleted file mode 100644 index 1583b6093a..0000000000 --- a/bikeshed/spec-data/readonly/caniuse/feature-web-app-manifest.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "notes": "", - "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", - "Blackberry Browser": "n 10", - "Chrome": "y 39", - "Chrome for Android": "y 109", - "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "y 107", - "IE": "n 11", - "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", - "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", - "Safari": "n TP", - "Safari on iOS": "a 11.3", - "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" - }, - "url": "https://www.w3.org/TR/appmanifest/" -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-web-bluetooth.json b/bikeshed/spec-data/readonly/caniuse/feature-web-bluetooth.json index c91c2d12c1..e1f2e9a74e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-web-bluetooth.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-web-bluetooth.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 43", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 6.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://webbluetoothcg.github.io/web-bluetooth/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-web-serial.json b/bikeshed/spec-data/readonly/caniuse/feature-web-serial.json index 72934e73b7..9aba3c6c90 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-web-serial.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-web-serial.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 89", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 89", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 76", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/serial/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-web-share.json b/bikeshed/spec-data/readonly/caniuse/feature-web-share.json index db91aad377..44248fc187 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-web-share.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-web-share.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "a 89", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 95", - "Firefox": "n 111", - "Firefox for Android": "y 107", + "Firefox": "n 132", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "y 12.1", "Safari on iOS": "y 12.2", "Samsung Internet": "y 8.2", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/web-share/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webauthn.json b/bikeshed/spec-data/readonly/caniuse/feature-webauthn.json index 082077c61c..f35ac6636c 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webauthn.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webauthn.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 67", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "a 60", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 54", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 13", "Safari on iOS": "y 14.5", "Samsung Internet": "y 17.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/webauthn/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webcodecs.json b/bikeshed/spec-data/readonly/caniuse/feature-webcodecs.json index e910b37707..0b801dafe8 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webcodecs.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webcodecs.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 94", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 94", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 130", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 80", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", - "Safari": "a TP", - "Safari on iOS": "n 16.3", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "a 16.4", + "Safari on iOS": "a 16.4", "Samsung Internet": "y 17.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/webcodecs/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webgl.json b/bikeshed/spec-data/readonly/caniuse/feature-webgl.json index d065203945..b66c30fb8f 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webgl.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webgl.json @@ -1,25 +1,25 @@ { "notes": "WebGL support is dependent on GPU support and may not be available on older devices. This is due to the additional requirement for users to have [up to date video drivers](http://www.khronos.org/webgl/wiki/BlacklistsAndWhitelists).\r\n\r\nNote that WebGL is part of the [Khronos Group](http://www.khronos.org/webgl/), not the W3C.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 8", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 4", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 11", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 12", "Opera Mini": "n all", "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.khronos.org/registry/webgl/specs/1.0/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webgl2.json b/bikeshed/spec-data/readonly/caniuse/feature-webgl2.json index f4d303a0c5..875d1b06f2 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webgl2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webgl2.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 56", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 51", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 43", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 15", "Safari on iOS": "y 15.0", "Samsung Internet": "y 7.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webgpu.json b/bikeshed/spec-data/readonly/caniuse/feature-webgpu.json index c0277d9e80..0ced80b8ac 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webgpu.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webgpu.json @@ -1,25 +1,25 @@ { "notes": "All major browser engines are working on implementing this spec.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "y 113", + "Chrome for Android": "y 127", + "Edge": "y 113", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "y 99", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", - "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", + "Safari": "y TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "y 24", + "UC Browser for Android": "n 15.5" }, "url": "https://gpuweb.github.io/gpuweb/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webhid.json b/bikeshed/spec-data/readonly/caniuse/feature-webhid.json index 00a6fd3798..9865611ab9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webhid.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webhid.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "y 89", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "y 89", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 76", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://wicg.github.io/webhid/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webkit-user-drag.json b/bikeshed/spec-data/readonly/caniuse/feature-webkit-user-drag.json index 4e8cff7143..eb2eca8caf 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webkit-user-drag.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webkit-user-drag.json @@ -1,25 +1,25 @@ { "notes": "Webkit and blink-based mobile browsers recognize the property but it does not appear to have any effect.\r\n\r\nThere is currently no unprefixed `user-drag` or other version of the property implemented in browsers or on a standards track as the HTML [draggable](/mdn-api_htmlelement_draggable) attribute/property is the preferred solution.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "a 16", - "Chrome for Android": "n 109", + "Chrome for Android": "n 127", "Edge": "a 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "a 15", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", "Safari": "y 3.1", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-user-drag" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webm.json b/bikeshed/spec-data/readonly/caniuse/feature-webm.json index f30cabdd68..3cc1c2c681 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webm.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webm.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 25", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 28", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 16", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 16.0", - "Safari on iOS": "a 12.2", + "Safari on iOS": "y 17.4", "Samsung Internet": "y 5.0", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.webmproject.org" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webnfc.json b/bikeshed/spec-data/readonly/caniuse/feature-webnfc.json index f45445bfb2..85c7816936 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webnfc.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webnfc.json @@ -1,25 +1,25 @@ { "notes": "Many devices are not equipped with NFC readers. They won't return any data, even though an installed browser might support this API.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "y 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "y 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/web-nfc/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webp.json b/bikeshed/spec-data/readonly/caniuse/feature-webp.json index afb7f3467b..cb1f278a0e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webp.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webp.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.2", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 32", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 65", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 19", "Opera Mini": "y all", "Opera Mobile": "y 11.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 16.0", "Safari on iOS": "y 14.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://developers.google.com/speed/webp/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-websockets.json b/bikeshed/spec-data/readonly/caniuse/feature-websockets.json index 536257c949..973e7d07dc 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-websockets.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-websockets.json @@ -2,24 +2,24 @@ "notes": "Reported to be supported in some Android 4.x browsers, including Sony Xperia S, Sony TX and HTC.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 16", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 11", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 12.1", "Opera Mini": "n all", "Opera Mobile": "y 12.1", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 7", "Safari on iOS": "y 6.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/comms.html#network" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webtransport.json b/bikeshed/spec-data/readonly/caniuse/feature-webtransport.json index a2f595f8ea..7f2c21e327 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webtransport.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webtransport.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 97", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 98", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "y 114", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 83", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 18.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/webtransport/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webusb.json b/bikeshed/spec-data/readonly/caniuse/feature-webusb.json index c34806f9af..4adfe9a446 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webusb.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webusb.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "y 13.18", + "Android Browser": "n 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 61", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "y 48", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "y 8.2", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://wicg.github.io/webusb/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webvr.json b/bikeshed/spec-data/readonly/caniuse/feature-webvr.json index 777c95f928..37b4a10582 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webvr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webvr.json @@ -1,25 +1,25 @@ { "notes": "For a WebVR experience a head mounted display (VR HMD) is required.", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", "Firefox": "y 55", - "Firefox for Android": "n 107", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "a 5.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://w3c.github.io/webvr/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webvtt.json b/bikeshed/spec-data/readonly/caniuse/feature-webvtt.json index 1d9462b5ce..6517cfd438 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webvtt.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webvtt.json @@ -2,24 +2,24 @@ "notes": "WebVTT must be used with the [<track> element](/mdn-html_elements_track).", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", - "Chrome": "y 18", - "Chrome for Android": "y 109", + "Chrome": "y 23", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 31", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 11", "KaiOS Browser": "y 2.5", "Opera": "y 15", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/webvtt/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webworkers.json b/bikeshed/spec-data/readonly/caniuse/feature-webworkers.json index f40853dc27..29cc82bf66 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webworkers.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webworkers.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.5", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 10.6", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/workers.html" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-webxr.json b/bikeshed/spec-data/readonly/caniuse/feature-webxr.json index ca2c4e9426..eff662a299 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-webxr.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-webxr.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", "Chrome": "a 79", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", + "KaiOS Browser": "n 3.0", "Opera": "a 66", "Opera Mini": "n all", - "Opera Mobile": "a 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "a 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", + "Safari on iOS": "n 18.0", "Samsung Internet": "a 12.0", - "UC Browser for Android": "n 13.4" + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/webxr/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-will-change.json b/bikeshed/spec-data/readonly/caniuse/feature-will-change.json index 5551d75ccc..c3b8e95aea 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-will-change.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-will-change.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 79", "Firefox": "y 36", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 24", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9.1", "Safari on iOS": "y 9.3", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://w3c.github.io/csswg-drafts/css-will-change/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-woff.json b/bikeshed/spec-data/readonly/caniuse/feature-woff.json index 92d3b20115..b2d676d77e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-woff.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-woff.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 5", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3.6", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 11.1", "Opera Mini": "n all", "Opera Mobile": "y 11", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 5.1", "Safari on iOS": "y 5.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/WOFF/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-woff2.json b/bikeshed/spec-data/readonly/caniuse/feature-woff2.json index a5323bbf52..0a3b4b984e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-woff2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-woff2.json @@ -1,25 +1,25 @@ { "notes": "", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "n 10", "Chrome": "y 36", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 14", "Firefox": "y 39", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "n 11", "IE Mobile": "n 11", "KaiOS Browser": "y 2.5", "Opera": "y 23", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 12", "Safari on iOS": "y 10.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/WOFF2/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-word-break.json b/bikeshed/spec-data/readonly/caniuse/feature-word-break.json index ff2b87ba75..7b6b99e9b9 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-word-break.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-word-break.json @@ -1,25 +1,25 @@ { "notes": "Partial support refers to supporting the `break-all` value, but not the `keep-all` value.\r\n\r\nChrome, Safari and other WebKit/Blink browsers also support the unofficial `break-word` value which is treated like `word-wrap: break-word`.", "support": { - "Android Browser": "y 109", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 44", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 15", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 5.5", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 31", "Opera Mini": "n all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 9", "Safari on iOS": "y 9.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-text/#word-break" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-wordwrap.json b/bikeshed/spec-data/readonly/caniuse/feature-wordwrap.json index c51ccaa34c..83e775d484 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-wordwrap.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-wordwrap.json @@ -2,24 +2,24 @@ "notes": "Partial support refers to requiring the legacy name \"word-wrap\" (rather than \"overflow-wrap\") to work.", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 10", "Chrome": "y 23", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 18", "Firefox": "y 49", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 5.5", "IE Mobile": "a 10", - "KaiOS Browser": "a 2.5", + "KaiOS Browser": "y 3.0", "Opera": "y 12.1", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 6.1", "Safari on iOS": "y 7.0", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/css3-text/#overflow-wrap" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-x-doc-messaging.json b/bikeshed/spec-data/readonly/caniuse/feature-x-doc-messaging.json index a232e31aea..091fb658d1 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-x-doc-messaging.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-x-doc-messaging.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 3", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "a 8", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", "Opera": "y 9.5", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 4", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/comms.html#crossDocumentMessages" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-x-frame-options.json b/bikeshed/spec-data/readonly/caniuse/feature-x-frame-options.json index 434c2ba017..53d359a0a3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-x-frame-options.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-x-frame-options.json @@ -2,24 +2,24 @@ "notes": "Partial support refers to not supporting the `ALLOW-FROM` option.\r\nThe `X-Frame-Options` header has been obsoleted by [the `frame-ancestors` directive](https://www.w3.org/TR/CSP2/#directive-frame-ancestors) from Content Security Policy Level 2.", "support": { "Android Browser": "a 4", - "Baidu Browser": "a 13.18", + "Baidu Browser": "a 13.52", "Blackberry Browser": "a 7", "Chrome": "a 26", - "Chrome for Android": "a 109", + "Chrome for Android": "a 127", "Edge": "a 79", "Firefox": "a 70", - "Firefox for Android": "a 107", + "Firefox for Android": "a 127", "IE": "y 8", "IE Mobile": "y 10", - "KaiOS Browser": "y 2.5", + "KaiOS Browser": "a 3.0", "Opera": "a 11.6", "Opera Mini": "n all", "Opera Mobile": "a 12.1", - "QQ Browser": "a 13.1", + "QQ Browser": "a 14.9", "Safari": "a 5.1", "Safari on iOS": "a 7.0", "Samsung Internet": "a 4", - "UC Browser for Android": "a 13.4" + "UC Browser for Android": "a 15.5" }, "url": "https://tools.ietf.org/html/rfc7034" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-xhr2.json b/bikeshed/spec-data/readonly/caniuse/feature-xhr2.json index 480f95cbc8..67c6be5ea3 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-xhr2.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-xhr2.json @@ -1,25 +1,25 @@ { - "notes": "", + "notes": "See also support for the [FormData API](/mdn-api_formdata) and its sub-features, which received more updates since the original XHR Level 2 specification was released.", "support": { - "Android Browser": "y 4.4.3", - "Baidu Browser": "y 13.18", + "Android Browser": "y 127", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", - "Chrome": "y 31", - "Chrome for Android": "y 109", - "Edge": "y 12", - "Firefox": "y 12", - "Firefox for Android": "y 107", + "Chrome": "y 50", + "Chrome for Android": "y 127", + "Edge": "y 79", + "Firefox": "y 47", + "Firefox for Android": "y 127", "IE": "a 10", "IE Mobile": "a 10", "KaiOS Browser": "y 2.5", - "Opera": "y 18", + "Opera": "y 37", "Opera Mini": "n all", - "Opera Mobile": "y 12", - "QQ Browser": "y 13.1", - "Safari": "y 7.1", - "Safari on iOS": "y 8", - "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", + "Safari": "y 11.1", + "Safari on iOS": "y 11.0", + "Samsung Internet": "y 5.0", + "UC Browser for Android": "y 15.5" }, "url": "https://xhr.spec.whatwg.org/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-xhtml.json b/bikeshed/spec-data/readonly/caniuse/feature-xhtml.json index e0b4a84bc7..34bb71e9f7 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-xhtml.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-xhtml.json @@ -2,24 +2,24 @@ "notes": "The XHTML syntax is very close to HTML, and thus is almost always ([incorrectly](https://developer.mozilla.org/en-US/docs/XHTML#MIME_type_versus_DOCTYPE)) served as text/html on the web.", "support": { "Android Browser": "y 2.1", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "y 7", "Chrome": "y 4", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 2", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 9", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 9", "Opera Mini": "y all", "Opera Mobile": "y 10", - "QQ Browser": "y 13.1", + "QQ Browser": "y 14.9", "Safari": "y 3.1", "Safari on iOS": "y 3.2", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://html.spec.whatwg.org/multipage/xhtml.html#the-xhtml-syntax" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-xhtmlsmil.json b/bikeshed/spec-data/readonly/caniuse/feature-xhtmlsmil.json index 605ff7ce5c..85e2ce09f2 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-xhtmlsmil.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-xhtmlsmil.json @@ -1,25 +1,25 @@ { "notes": "Internet Explorer supports the W3C proposal HTML+TIME, which is largely the same as XHTML+SMIL", "support": { - "Android Browser": "n 109", - "Baidu Browser": "n 13.18", + "Android Browser": "n 127", + "Baidu Browser": "n 13.52", "Blackberry Browser": "n 10", - "Chrome": "n 112", - "Chrome for Android": "n 109", - "Edge": "n 109", - "Firefox": "n 111", - "Firefox for Android": "n 107", + "Chrome": "n 130", + "Chrome for Android": "n 127", + "Edge": "n 127", + "Firefox": "n 132", + "Firefox for Android": "n 127", "IE": "n 11", "IE Mobile": "n 11", - "KaiOS Browser": "n 2.5", - "Opera": "n 92", + "KaiOS Browser": "n 3.0", + "Opera": "n 111", "Opera Mini": "n all", - "Opera Mobile": "n 72", - "QQ Browser": "n 13.1", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", "Safari": "n TP", - "Safari on iOS": "n 16.3", - "Samsung Internet": "n 19.0", - "UC Browser for Android": "n 13.4" + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" }, "url": "https://www.w3.org/TR/XHTMLplusSMIL/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-xml-serializer.json b/bikeshed/spec-data/readonly/caniuse/feature-xml-serializer.json index f0d8c83066..acbdffb20e 100644 --- a/bikeshed/spec-data/readonly/caniuse/feature-xml-serializer.json +++ b/bikeshed/spec-data/readonly/caniuse/feature-xml-serializer.json @@ -2,24 +2,24 @@ "notes": "", "support": { "Android Browser": "y 4.4", - "Baidu Browser": "y 13.18", + "Baidu Browser": "y 13.52", "Blackberry Browser": "a 7", "Chrome": "y 31", - "Chrome for Android": "y 109", + "Chrome for Android": "y 127", "Edge": "y 12", "Firefox": "y 12", - "Firefox for Android": "y 107", + "Firefox for Android": "y 127", "IE": "y 10", "IE Mobile": "y 10", "KaiOS Browser": "y 2.5", "Opera": "y 18", "Opera Mini": "a all", - "Opera Mobile": "y 72", - "QQ Browser": "y 13.1", + "Opera Mobile": "y 80", + "QQ Browser": "y 14.9", "Safari": "y 7.1", "Safari on iOS": "y 8", "Samsung Internet": "y 4", - "UC Browser for Android": "y 13.4" + "UC Browser for Android": "y 15.5" }, "url": "https://www.w3.org/TR/DOM-Parsing/" } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/caniuse/feature-zstd.json b/bikeshed/spec-data/readonly/caniuse/feature-zstd.json new file mode 100644 index 0000000000..98924464ea --- /dev/null +++ b/bikeshed/spec-data/readonly/caniuse/feature-zstd.json @@ -0,0 +1,25 @@ +{ + "notes": "", + "support": { + "Android Browser": "y 127", + "Baidu Browser": "n 13.52", + "Blackberry Browser": "n 10", + "Chrome": "y 123", + "Chrome for Android": "y 127", + "Edge": "y 123", + "Firefox": "y 126", + "Firefox for Android": "y 127", + "IE": "n 11", + "IE Mobile": "n 11", + "KaiOS Browser": "n 3.0", + "Opera": "y 109", + "Opera Mini": "n all", + "Opera Mobile": "n 80", + "QQ Browser": "n 14.9", + "Safari": "n TP", + "Safari on iOS": "n 18.0", + "Samsung Internet": "n 25", + "UC Browser for Android": "n 15.5" + }, + "url": "https://datatracker.ietf.org/doc/html/rfc8878" +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/fors.json b/bikeshed/spec-data/readonly/fors.json index 6f64526390..4c51ea4613 100644 --- a/bikeshed/spec-data/readonly/fors.json +++ b/bikeshed/spec-data/readonly/fors.json @@ -1,4 +1,22 @@ { + "%AsyncGeneratorPrototype%.next ( value )": [ + "%AsyncGeneratorPrototype%.next(value)" + ], + "%AsyncGeneratorPrototype%.return ( value )": [ + "%AsyncGeneratorPrototype%.return(value)" + ], + "%AsyncGeneratorPrototype%.throw ( exception )": [ + "%AsyncGeneratorPrototype%.throw(exception)" + ], + "%GeneratorPrototype%.next ( value )": [ + "%GeneratorPrototype%.next(value)" + ], + "%GeneratorPrototype%.return ( value )": [ + "%GeneratorPrototype%.return(value)" + ], + "%GeneratorPrototype%.throw ( exception )": [ + "%GeneratorPrototype%.throw(exception)" + ], "%TypedArray%": [ "at(index)", "buffer", @@ -6,52 +24,65 @@ "byteOffset", "copyWithin(target, start, end)", "entries()", - "every(callbackfn, thisArg)", + "every(callback, thisArg)", "fill(value, start, end)", - "filter(callbackfn, thisArg)", + "filter(callback, thisArg)", "find(predicate, thisArg)", "findIndex(predicate, thisArg)", "findLast(predicate, thisArg)", "findLastIndex(predicate, thisArg)", - "forEach(callbackfn, thisArg)", + "forEach(callback, thisArg)", "includes(searchElement, fromIndex)", "indexOf(searchElement, fromIndex)", "join(separator)", "keys()", "lastIndexOf(searchElement, fromIndex)", "length", - "map(callbackfn, thisArg)", - "reduce(callbackfn, initialValue)", - "reduceRight(callbackfn, initialValue)", + "map(callback, thisArg)", + "reduce(callback, initialValue)", + "reduceRight(callback, initialValue)", "reverse()", "set(source, offset)", "slice(start, end)", - "some(callbackfn, thisArg)", - "sort(comparefn)", - "subarray(begin, end)", + "some(callback, thisArg)", + "sort(comparator)", + "subarray(start, end)", "toLocaleString(reserved1, reserved2)", + "toReversed()", + "toSorted(comparator)", "toString()", - "values()" + "values()", + "with(index, value)" + ], + "%TypedArray%.prototype [ %Symbol.iterator% ] ( )": [ + "%TypedArray%.prototype %Symbol.iterator% ()" + ], + "%TypedArray%.prototype [ %Symbol.toStringTag% ]": [ + "get %TypedArray%.prototype [ %Symbol.toStringTag% ]" ], "/": [ "", "!", "\"@charset\"", "\"absolute-url\"", + "\"accelerometer\"", "\"all\"-named elements", "\"audio\"", "\"bluetooth\"", "\"camera\"", + "\"cbcs\"", + "\"cenc\"", "\"coep\" report type", "\"detail\"", + "\"digital-credentials-get\"", "\"display-capture\"", - "\"dual-rumble\" actuator type", - "\"dual-rumble\" effect type", "\"empty\"", "\"english-linear\"", "\"english-rotation\"", + "\"flag\"", "\"gamepad\"", "\"geolocation\"", + "\"gyroscope\"", "\"idle-detection\"", "\"l1t1\"", "\"l1t2\"", @@ -77,6 +108,7 @@ "\"l3t3_key\"", "\"l3t3_key_shift\"", "\"l3t3h\"", + "\"magnetometer\"", "\"microphone\"", "\"midi\"", "\"mime\"", @@ -85,9 +117,11 @@ "\"no-referrer\"", "\"no-referrer-when-downgrade\"", "\"none\"", + "\"nothing\"", "\"origin\"", "\"origin-when-cross-origin\"", "\"payment\"", + "\"private-network-access\"", "\"push\"", "\"reserved\"", "\"s2t1\"", @@ -109,7 +143,6 @@ "\"speaker-selection\"", "\"speech\"", "\"speech-recognition\"", - "\"standard\"", "\"strict-origin\"", "\"strict-origin-when-cross-origin\"", "\"text\"", @@ -117,13 +150,11 @@ "\"unsafe-url\"", "\"url\"", "\"vendor-defined\"", - "\"vibration\" actuator type", "\"video\"", "\"viewport-capture\"", "\"web-share\"", "\"xr\"", "\"xr-session-supported\"", - "\"xr-standard\"", "\"xr-standard\" gamepad mapping", "#", "%AggregateError%", @@ -139,6 +170,7 @@ "%AsyncGeneratorFunction%", "%AsyncGeneratorFunction.prototype%", "%AsyncGeneratorFunction.prototype.prototype%", + "%AsyncGeneratorPrototype%", "%AsyncIteratorPrototype%", "%Atomics%", "%BigInt%", @@ -164,6 +196,7 @@ "%GeneratorFunction%", "%GeneratorFunction.prototype%", "%GeneratorFunction.prototype.prototype%", + "%GeneratorPrototype%", "%Int16Array%", "%Int32Array%", "%Int8Array%", @@ -195,7 +228,20 @@ "%String.prototype%", "%StringIteratorPrototype%", "%Symbol%", + "%Symbol.asyncIterator%", + "%Symbol.hasInstance%", + "%Symbol.isConcatSpreadable%", + "%Symbol.iterator%", + "%Symbol.match%", + "%Symbol.matchAll%", "%Symbol.prototype%", + "%Symbol.replace%", + "%Symbol.search%", + "%Symbol.species%", + "%Symbol.split%", + "%Symbol.toPrimitive%", + "%Symbol.toStringTag%", + "%Symbol.unscopables%", "%SyntaxError%", "%ThrowTypeError%", "%TypeError%", @@ -216,6 +262,10 @@ "%hh encoding", "%rangeerror.prototype%", "%referenceerror.prototype%", + "%symbol.hasinstance%", + "%symbol.isconcatspreadable%", + "%symbol.toprimitive%", + "%symbol.tostringtag%", "%syntaxerror.prototype%", "%typeerror.prototype%", "%urierror.prototype%", @@ -229,8 +279,11 @@ "'continuous' media group", "'false'", "'grid' media group", + "'inline-speculation-rules'", "'interactive media group", "'none'", + "'none'::as border style", + "'none'::as display value", "'paged' media group", "'report-sample'", "'self'", @@ -261,6 +314,7 @@ "-webkit-animation-name", "-webkit-animation-play-state", "-webkit-animation-timing-function", + "-webkit-app-region", "-webkit-appearance", "-webkit-backface-visibility", "-webkit-background-clip", @@ -329,25 +383,22 @@ "1-ua", "1-ua mode", "1d image", - "1st <length>", "2-ua", "2-ua mode", "24-bit depth", "2d", "2d context creation algorithm", "2d matrix", - "2nd <length>", "3.4.1. generate report of type with data", "3d matrix", "3d rendering context", "3d transform functions", "3d transformed element", "3dof", - "3rd <length [0,∞]>", - "4th <length>", "4x4 abstract matrix", "5.4 generate a network error report", "5.5 deliver a network report", + "64-bit integer", "6dof", ":-webkit-autofill", "::after", @@ -359,6 +410,7 @@ "::cue(selector)", "::cue-region", "::cue-region(selector)", + "::details-content", "::file-selector-button", "::first-letter", "::first-line", @@ -368,17 +420,21 @@ "::nth-fragment()", "::part()", "::placeholder", + "::scroll-marker", + "::scroll-marker-group", "::selection", "::shadow", "::slotted()", "::spelling-error", "::target-text", "::view-transition", - "::view-transition-group( <pt-name-selector> )", - "::view-transition-image-pair( <pt-name-selector> )", - "::view-transition-new( <pt-name-selector> )", - "::view-transition-old( <pt-name-selector> )", + "::view-transition-group()", + "::view-transition-image-pair()", + "::view-transition-new()", + "::view-transition-old()", ":active", + ":active-view-transition", + ":active-view-transition-type()", ":after", ":any-link", ":autofill", @@ -430,6 +486,7 @@ ":modal", ":muted", ":not()", + ":nth()", ":nth-child()", ":nth-col()", ":nth-last-child()", @@ -447,6 +504,7 @@ ":picture-in-picture", ":placeholder-shown", ":playing", + ":popover-open", ":read-only", ":read-write", ":required", @@ -461,6 +519,7 @@ ":snapped-y", ":stalled", ":start-of-page", + ":state()", ":target", ":target-within", ":user-invalid", @@ -474,30 +533,44 @@ "<)-token>", "<[-token>", "<]-token>", - "<absolute-color-base>", - "<absolute-color-function>", + "<abs/>", "<absolute-size>", - "<alpha-value>", "<alphavalue>", "<an+b>", "<anchor-element>", "<anchor-side>", "<anchor-size>", + "<and/>", "<angle-percentage>", "<angle>", "<angular-color-hint>", "<angular-color-stop-list>", "<angular-color-stop>", "<animateable-feature>", - "<annotation-xml>", - "<annotation>", "<antecedent>", "<any-value>", + "<apply>", + "<approx/>", + "<arccos/>", + "<arccosh/>", + "<arccot/>", + "<arccoth/>", + "<arccsc/>", + "<arccsch/>", + "<arcsec/>", + "<arcsech/>", + "<arcsin/>", + "<arcsinh/>", + "<arctan/>", + "<arctanh/>", + "<arg/>", "<at-keyword-token>", + "<at-rule-list>", "<atomic-condition>", "<attachment>", "<attr-matcher>", "<attr-modifier>", + "<attr-name>", "<attr-type>", "<attribute-selector>", "<auto-repeat>", @@ -514,27 +587,49 @@ "<bg-layer>", "<bg-position>", "<bg-size>", + "<bind>", "<blend-mode>", + "<block-contents>", + "<bool-and>", + "<bool-in-parens>", + "<bool-not>", + "<bool-or>", + "<bool-test>", "<boolean-constant>", + "<boolean-without-or>", + "<boolean>", "<border-style>", "<border-width>", "<bottom>", "<box>", - "<calc-constant>", + "<bvar>", + "<calc-keyword>", + "<calc-mix()>", "<calc-number-product>", "<calc-number-sum>", "<calc-number-value>", "<calc-product>", + "<calc-size-basis>", "<calc-sum>", "<calc-value>", + "<card/>", + "<cartesianproduct/>", + "<cbytes>", "<cdc-token>", "<cdo-token>", + "<ceiling/>", + "<cerror>", "<cf-image>", + "<ci>", "<class-selector>", "<clip-source>", "<cmyk-component>", + "<cn>", + "<codomain/>", "<colon-token>", + "<color-base>", "<color-font-tech>", + "<color-function>", "<color-interpolation-method>", "<color-space>", "<color-stop-angle>", @@ -554,26 +649,43 @@ "<complex-selector-list>", "<complex-selector-unit>", "<complex-selector>", + "<complexes/>", + "<compose/>", "<composite-mode>", "<compositing-operator>", "<compound-selector-list>", "<compound-selector>", "<condition-in-parens>", "<condition>", + "<conic-gradient-syntax>", + "<conjugate/>", "<consequent>", "<container-condition>", "<container-name>", + "<container-progress()>", "<container-query>", "<content-distribution>", + "<content-level>", + "<content-list>", "<content-position>", "<contextual-alt-values>", "<control-point>", "<coord-box>", + "<cos/>", + "<cosh/>", + "<cot/>", + "<coth/>", "<counter-name>", "<counter-style-name>", "<counter-style>", "<counter>", + "<cs>", + "<csc/>", + "<csch/>", + "<css-type>", + "<csymbol>", "<cubic-bezier-easing-function>", + "<curl/>", "<custom-arg>", "<custom-color-space>", "<custom-highlight-name>", @@ -582,12 +694,17 @@ "<custom-property-name>", "<custom-selector>", "<dasharray>", + "<dashed-function>", "<dashed-ident>", "<dashndashdigit-ident>", "<declaration-list>", + "<declaration-rule-list>", "<declaration-value>", + "<degree>", "<delim-token>", "<deprecated-color>", + "<determinant/>", + "<diff/>", "<dimension-token>", "<dimension-unit>", "<dimension>", @@ -598,40 +715,67 @@ "<display-legacy>", "<display-listitem>", "<display-outside>", + "<divergence/>", + "<divide/>", + "<domain/>", + "<domainofapplication>", "<easing-function>", "<east-asian-variant-values>", "<east-asian-width-values>", + "<emptyset/>", "<eof-token>", + "<eq/>", + "<equivalent/>", + "<eulergamma/>", + "<exists/>", + "<exp/>", "<explicit-track-list>", + "<exponentiale/>", "<extension-name>", - "<extent-keyword>", + "<factorial/>", + "<factorof/>", + "<false/>", "<family-name>", "<feature-value-name>", "<filter-function>", "<filter-value-list>", "<final-bg-layer>", + "<first-valid()>", "<fixed-breadth>", "<fixed-repeat>", "<fixed-size>", "<flex>", - "<font-feature-tech>", + "<floor/>", "<font-features-tech>", - "<font-format", "<font-format>", - "<font-stretch-css3>", + "<font-src-list>", + "<font-src>", "<font-tech>", "<font-variant-css2>", "<font-weight-absolute>", + "<font-width-css3>", + "<forall/>", "<forgiving-relative-selector-list>", "<forgiving-selector-list>", "<frequency-percentage>", "<frequency>", + "<function-dependency-list>", + "<function-name>", + "<function-parameter-list>", + "<function-parameter>", "<function-token>", + "<gcd/>", "<general-enclosed>", + "<generic-complete>", "<generic-family>", + "<generic-incomplete>", + "<generic-script-specific>", "<generic-voice>", "<geometry-box>", + "<geq/>", + "<grad/>", "<gradient>", + "<gt/>", "<hash-token>", "<hex-color>", "<historical-lig-values>", @@ -640,24 +784,41 @@ "<id-selector>", "<id>", "<ident-token>", + "<ident/>", "<ident>", "<identifier>", "<image-1d>", "<image-set-option>", "<image-src>", "<image-tags>", + "<image/>", "<image>", + "<imaginary/>", + "<imaginaryi/>", + "<implies/>", "<import-conditions>", + "<in/>", + "<infinity/>", "<inflexible-breadth>", + "<inset-area>", + "<int/>", "<integer>", + "<integers/>", + "<intersect/>", + "<intrinsic-size-keyword>", + "<inverse/>", "<isolation-mode>", "<keyframe-block>", "<keyframe-selector>", "<keyframes-name>", + "<lambda>", + "<laplacian/>", "<layer-name>", "<layout-box>", + "<lcm/>", "<leader-type>", "<left>", + "<legacy-device-cmyk-syntax>", "<legacy-hsl-syntax>", "<legacy-hsla-syntax>", "<legacy-pseudo-element-selector>", @@ -665,6 +826,8 @@ "<legacy-rgba-syntax>", "<length-percentage>", "<length>", + "<leq/>", + "<limit/>", "<line-name-list>", "<line-names>", "<line-style>", @@ -672,18 +835,27 @@ "<linear-color-hint>", "<linear-color-stop>", "<linear-easing-function>", + "<linear-gradient-syntax>", "<linear-stop-length>", "<linear-stop-list>", "<linear-stop>", "<link-param>", - "<maction>", + "<list>", + "<ln/>", + "<log/>", + "<logbase>", + "<lowlimit>", + "<lt/>", "<margin-width>", "<marker-ref>", "<mask-layer>", "<mask-reference>", "<mask-source>", "<masking-mode>", - "<math>", + "<matrix/>", + "<matrixrow/>", + "<max/>", + "<mean/>", "<media-and>", "<media-condition-without-or>", "<media-condition>", @@ -691,10 +863,11 @@ "<media-in-parens>", "<media-not>", "<media-or>", + "<media-progress()>", "<media-query-list>", "<media-query>", "<media-type>", - "<merror>", + "<median/>", "<mf-boolean>", "<mf-comparison>", "<mf-eq>", @@ -704,35 +877,17 @@ "<mf-plain>", "<mf-range>", "<mf-value>", - "<mfrac>", - "<mi>", - "<mmultiscripts>", - "<mn>", - "<mo>", + "<min/>", + "<mix()>", + "<mode/>", + "<modern-device-cmyk-syntax>", "<modern-hsl-syntax>", "<modern-hsla-syntax>", "<modern-rgb-syntax>", "<modern-rgba-syntax>", - "<mover>", - "<mpadded>", - "<mphantom>", - "<mprescripts>", + "<moment/>", + "<momentabout>", "<mq-boolean>", - "<mroot>", - "<mrow>", - "<ms>", - "<mspace>", - "<msqrt>", - "<mstyle>", - "<msub>", - "<msubsup>", - "<msup>", - "<mtable>", - "<mtd>", - "<mtext>", - "<mtr>", - "<munder>", - "<munderover>", "<n-dimension>", "<na-name>", "<na-prefix>", @@ -740,10 +895,16 @@ "<named-color>", "<namespace-attr>", "<namespace-prefix>", + "<naturalnumbers/>", "<ndash-dimension>", "<ndashdigit-dimension>", "<ndashdigit-ident>", - "<none>", + "<neq/>", + "<not/>", + "<notanumber/>", + "<notin/>", + "<notprsubset/>", + "<notsubset/>", "<ns-prefix>", "<number-optional-number>", "<number-token>", @@ -751,6 +912,11 @@ "<numeric-figure-values>", "<numeric-fraction-values>", "<numeric-spacing-values>", + "<offset-path>", + "<opentype-tag>", + "<or/>", + "<otherwise>", + "<outerproduct/>", "<outline-line-style>", "<overflow-position>", "<padding-width>", @@ -758,58 +924,92 @@ "<page-selector>", "<paint-box>", "<paint>", + "<partialdiff/>", "<percentage-token>", "<percentage>", + "<pi/>", + "<piece>", + "<piecewise>", + "<plus/>", "<points>", "<polar-color-space>", + "<position-area>", "<position>", + "<power/>", + "<predefined-polar-params>", + "<predefined-rectangular-params>", + "<predefined-rectangular>", "<predefined-rgb-params>", "<predefined-rgb>", + "<primes/>", + "<product/>", + "<progress()>", + "<progress>", + "<prsubset/>", "<pseudo-class-selector>", "<pseudo-compound-selector>", "<pseudo-element-selector>", "<pseudo-page>", + "<pt-class-selector>", + "<pt-name-and-class-selector>", "<pt-name-selector>", + "<qualified-rule-list>", "<query-in-parens>", "<quirky-color>", "<quirky-length>", "<quote>", + "<quotient/>", + "<radial-extent>", + "<radial-gradient-syntax>", + "<radial-shape>", + "<radial-size>", "<random-caching-options>", "<ratio>", + "<rationals/>", "<ray-size>", + "<real/>", + "<reals/>", "<rectangular-color-space>", "<relative-real-selector-list>", "<relative-real-selector>", "<relative-selector-list>", "<relative-selector>", "<relative-size>", + "<rem/>", "<repeat-style>", + "<repetition>", + "<request-url-modifier>", "<resolution>", "<reversed-counter-name>", - "<rg-ending-shape>", - "<rg-extent-keyword>", - "<rg-size>", "<right>", "<rounding-strategy>", "<rule-list>", + "<scalarproduct/>", "<scope-end>", "<scope-start>", "<scroller>", + "<sdev/>", + "<sec/>", + "<sech/>", "<selector-list>", - "<selector-scope>", + "<selector/>", "<self-position>", - "<semantics>", "<semicolon-token>", + "<sep/>", + "<set>", + "<setdiff/>", "<shadow>", "<shape-box>", "<shape-command>", "<shape-radius>", "<shape>", + "<share>", "<side-or-corner>", "<signed-integer>", "<signless-integer>", "<simple-selector-list>", "<simple-selector>", + "<sin/>", "<single-animation-composition>", "<single-animation-direction>", "<single-animation-fill-mode>", @@ -819,12 +1019,14 @@ "<single-animation>", "<single-transition-property>", "<single-transition>", + "<sinh/>", "<size-feature>", - "<size>", "<source-size-list>", "<source-size-value>", "<source-size>", "<spacing-trim>", + "<specific-voice>", + "<spread-shadow>", "<step-easing-function>", "<step-position>", "<string-token>", @@ -836,6 +1038,8 @@ "<style-query>", "<stylesheet>", "<subclass-selector>", + "<subset/>", + "<sum/>", "<supports-condition>", "<supports-decl>", "<supports-feature>", @@ -846,14 +1050,26 @@ "<svg-paint>", "<symbol>", "<symbols-type>", + "<syntax-combinator>", + "<syntax-component-name>", + "<syntax-component>", + "<syntax-multiplier>", + "<syntax-type>", + "<syntax>", "<system-color>", + "<system-family-name>", + "<tan/>", + "<tanh/>", "<target-contrast>", "<target-name>", "<target>", + "<tendsto/>", + "<text-edge>", "<time-percentage>", "<time>", "<timeline-range-name>", - "<toggle-value>", + "<times/>", + "<toggle()>", "<top>", "<track-breadth>", "<track-list>", @@ -861,43 +1077,40 @@ "<track-size>", "<transform-function>", "<transform-list>", + "<transform-mix()>", + "<transition-behavior-value>", + "<transpose/>", + "<true/>", + "<try-size>", + "<type()>", "<type-selector>", + "<unicode-range-token>", + "<union/>", + "<uplimit>", "<urange>", "<uri>", "<url-modifier>", "<url-token>", "<url>", + "<variance/>", + "<vector/>", + "<vectorproduct/>", "<visual-box>", "<wcag2>", "<whitespace-token>", + "<whole-value>", "<wq-name>", + "<xor/>", "<xyz-params>", "<xyz-space>", "<xyz>", "<zero>", "<{-token>", "<}-token>", + "=", ">", - ">n-quads parser", "?", "@-webkit-keyframes", - "@@asyncIterator", - "@@hasInstance", - "@@hasinstance", - "@@isConcatSpreadable", - "@@isconcatspreadable", - "@@iterator", - "@@match", - "@@matchAll", - "@@replace", - "@@search", - "@@species", - "@@split", - "@@toPrimitive", - "@@toStringTag", - "@@toprimitive", - "@@tostringtag", - "@@unscopables", "@bottom-center", "@bottom-left", "@bottom-left-corner", @@ -906,6 +1119,7 @@ "@charset", "@color-profile", "@container", + "@context", "@counter-style", "@custom-media", "@custom-selector", @@ -913,6 +1127,7 @@ "@font-face", "@font-feature-values", "@font-palette-values", + "@function", "@import", "@keyframes", "@layer", @@ -920,20 +1135,22 @@ "@left-middle", "@left-top", "@media", + "@namespace", "@page", - "@position-fallback", + "@position-try", "@property", "@right-bottom", "@right-middle", "@right-top", "@scope", + "@starting-style", "@supports", "@top-center", "@top-left", "@top-left-corner", "@top-right", "@top-right-corner", - "@try", + "@view-transition", "@when", "ARIAMixin", "AacBitstreamFormat", @@ -941,22 +1158,31 @@ "AbortController", "AbortError", "AbortSignal", - "AbsoluteOrientationReadingValues", "AbsoluteOrientationSensor", "AbstractRange", "AbstractWorker", "Accelerometer", "AccelerometerLocalCoordinateSystem", - "AccelerometerReadingValues", "AccelerometerSensorOptions", "AcquireReadableStreamBYOBReader", "AcquireReadableStreamDefaultReader", "AcquireWritableStreamDefaultWriter", + "AdAuctionData", + "AdAuctionDataConfig", + "AdRender", + "AddEntriesFromIterable", "AddEntriesFromIterable(target, iterable, adder)", "AddEventListenerOptions", + "AddRestrictedFunctionProperties", "AddRestrictedFunctionProperties(F, realm)", - "AddToKeptObjects(object)", - "AddWaiter(WL, W)", + "AddToKeptObjects", + "AddToKeptObjects(value)", + "AddValueToKeyedGroup", + "AddValueToKeyedGroup(groups, key, value)", + "AddWaiter", + "AddWaiter(WL, waiterRecord)", + "AddressErrors", + "AdvanceStringIndex", "AdvanceStringIndex(S, index, unicode)", "AesCbcParams", "AesCtrParams", @@ -964,22 +1190,30 @@ "AesGcmParams", "AesKeyAlgorithm", "AesKeyGenParams", + "AgentCanSuspend", "AgentCanSuspend()", + "AgentSignifier", "AgentSignifier()", "AggregateError", "Algorithm", "AlgorithmIdentifier", "AlignSetting", - "AllocateArrayBuffer(constructor, byteLength)", - "AllocateSharedArrayBuffer(constructor, byteLength)", + "AllCharacters", + "AllCharacters(rer)", + "AllocateArrayBuffer", + "AllocateArrayBuffer(constructor, byteLength, maxByteLength)", + "AllocateSharedArrayBuffer", + "AllocateSharedArrayBuffer(constructor, byteLength, maxByteLength)", + "AllocateTypedArray", "AllocateTypedArray(constructorName, newTarget, defaultProto, length)", + "AllocateTypedArrayBuffer", "AllocateTypedArrayBuffer(O, length)", "AllowResizable", "AllowShared", + "AllowSharedBufferSource", "AllowedBluetoothDevice", "AllowedUSBDevice", "AlphaOption", - "AmbientLightReadingValues", "AmbientLightSensor", "AnalyserNode", "AnalyserOptions", @@ -994,42 +1228,81 @@ "AnimationPlaybackEvent", "AnimationPlaybackEventInit", "AnimationReplaceState", + "AnimationTimeOptions", "AnimationTimeline", "AnimationWorkletGlobalScope", "AnimatorInstanceConstructor", "AppBannerPromptOutcome", "AppendMode", - "ApplyStringOrNumericBinaryOperator(lval, opText, rval)", + "Apply brotli patch", + "Apply glyph keyed patch", + "Apply per table brotli patch", + "ApplyConstraints algorithm", + "ApplyStringOrNumericBinaryOperator", + "ApplyStringOrNumericBinaryOperator(lVal, opText, rVal)", "Array", "ArrayBuffer", + "ArrayBufferByteLength", + "ArrayBufferByteLength(arrayBuffer, order)", + "ArrayBufferCopyAndDetach", + "ArrayBufferCopyAndDetach(arrayBuffer, newLength, preserveResizability)", "ArrayBufferView", + "ArrayCreate", "ArrayCreate(length, proto)", + "ArraySetLength", "ArraySetLength(A, Desc)", + "ArraySpeciesCreate", "ArraySpeciesCreate(originalArray, length)", "AssignedNodesOptions", + "AsyncBlockStart", "AsyncBlockStart(promiseCapability, asyncBody, asyncContext)", + "AsyncFromSyncIteratorContinuation", "AsyncFromSyncIteratorContinuation(result, promiseCapability)", "AsyncFunction", + "AsyncFunctionStart", "AsyncFunctionStart(promiseCapability, asyncFunctionBody)", "AsyncGenerator", + "AsyncGeneratorAwaitReturn", "AsyncGeneratorAwaitReturn(generator)", + "AsyncGeneratorCompleteStep", "AsyncGeneratorCompleteStep(generator, completion, done, realm)", + "AsyncGeneratorDrainQueue", "AsyncGeneratorDrainQueue(generator)", + "AsyncGeneratorEnqueue", "AsyncGeneratorEnqueue(generator, completion, promiseCapability)", "AsyncGeneratorFunction", + "AsyncGeneratorResume", "AsyncGeneratorResume(generator, completion)", + "AsyncGeneratorStart", "AsyncGeneratorStart(generator, generatorBody)", + "AsyncGeneratorUnwrapYieldResumption", "AsyncGeneratorUnwrapYieldResumption(resumptionValue)", + "AsyncGeneratorValidate", "AsyncGeneratorValidate(generator, generatorBrand)", + "AsyncGeneratorYield", "AsyncGeneratorYield(value)", + "AsyncIteratorClose", "AsyncIteratorClose(iteratorRecord, completion)", + "AsyncModuleExecutionFulfilled", "AsyncModuleExecutionFulfilled(module)", + "AsyncModuleExecutionRejected", "AsyncModuleExecutionRejected(module, error)", + "AtomicCompareExchangeInSharedBlock", + "AtomicCompareExchangeInSharedBlock(block, byteIndexInBuffer, elementSize, expectedBytes, replacementBytes)", + "AtomicReadModifyWrite", "AtomicReadModifyWrite(typedArray, index, value, op)", "Atomics", "AttestationConveyancePreference", "Attr", - "AttributeMatchList", + "AttributionReportingRequestOptions", + "AuctionAd", + "AuctionAdConfig", + "AuctionAdInterestGroup", + "AuctionAdInterestGroupKey", + "AuctionAdInterestGroupSize", + "AuctionRealTimeReportingConfig", + "AuctionReportBuyerDebugModeConfig", + "AuctionReportBuyersConfig", "AudioBuffer", "AudioBufferOptions", "AudioBufferSourceNode", @@ -1038,6 +1311,7 @@ "AudioContext", "AudioContextLatencyCategory", "AudioContextOptions", + "AudioContextRenderSizeCategory", "AudioContextState", "AudioData", "AudioDataCopyToOptions", @@ -1067,6 +1341,9 @@ "AudioRenderCapacityOptions", "AudioSampleFormat", "AudioScheduledSourceNode", + "AudioSession", + "AudioSessionState", + "AudioSessionType", "AudioSinkInfo", "AudioSinkOptions", "AudioSinkType", @@ -1106,8 +1383,11 @@ "AutomationRate", "AutoplayPolicy", "AutoplayPolicyMediaType", + "AvailableNamedTimeZoneIdentifiers", + "AvailableNamedTimeZoneIdentifiers()", "AvcBitstreamFormat", "AvcEncoderConfig", + "Await", "Await(value)", "BackgroundFetchEvent", "BackgroundFetchEventInit", @@ -1120,6 +1400,7 @@ "BackgroundFetchUIOptions", "BackgroundFetchUpdateUIEvent", "BackgroundSyncOptions", + "BackreferenceMatcher", "BackreferenceMatcher(rer, n, direction)", "BarProp", "BarcodeDetector", @@ -1134,15 +1415,20 @@ "BatteryManager", "BeforeInstallPromptEvent", "BeforeUnloadEvent", + "BiddingBrowserSignals", "BigInt", "BigInt64Array", + "BigIntBitwiseOp", "BigIntBitwiseOp(op, x, y)", "BigInteger", "BigUint64Array", + "BinaryAnd", "BinaryAnd(x, y)", "BinaryData", + "BinaryOr", "BinaryOr(x, y)", "BinaryType", + "BinaryXor", "BinaryXor(x, y)", "BiquadFilterNode", "BiquadFilterOptions", @@ -1154,6 +1440,7 @@ "BlobEventInit", "BlobPart", "BlobPropertyBag", + "BlockDeclarationInstantiation", "BlockDeclarationInstantiation(code, env)", "BlockFragmentationType", "Bluetooth", @@ -1161,11 +1448,18 @@ "BluetoothAdvertisingEventInit", "BluetoothCharacteristicProperties", "BluetoothCharacteristicUUID", + "BluetoothDataFilter", "BluetoothDataFilterInit", "BluetoothDescriptorUUID", "BluetoothDevice", "BluetoothDeviceEventHandlers", + "BluetoothLEScan", + "BluetoothLEScanFilter", "BluetoothLEScanFilterInit", + "BluetoothLEScanOptions", + "BluetoothLEScanPermissionDescriptor", + "BluetoothLEScanPermissionResult", + "BluetoothManufacturerDataFilter", "BluetoothManufacturerDataFilterInit", "BluetoothManufacturerDataMap", "BluetoothPermissionDescriptor", @@ -1175,6 +1469,7 @@ "BluetoothRemoteGATTDescriptor", "BluetoothRemoteGATTServer", "BluetoothRemoteGATTService", + "BluetoothServiceDataFilter", "BluetoothServiceDataFilterInit", "BluetoothServiceDataMap", "BluetoothServiceUUID", @@ -1182,6 +1477,7 @@ "Body", "BodyInit", "Boolean", + "BoundFunctionCreate", "BoundFunctionCreate(targetFunction, boundThis, boundArgs)", "BoxQuadOptions", "BreakToken", @@ -1189,9 +1485,17 @@ "BreakType", "BroadcastChannel", "BrowserCaptureMediaStreamTrack", + "BrowsingTopic", + "BrowsingTopicsOptions", "BufferSource", + "BufferedChangeEvent", + "BufferedChangeEventInit", + "BuiltinCallOrConstruct", + "BuiltinCallOrConstruct(F, thisArgument, argumentsList, newTarget)", "ByteLengthQueuingStrategy", + "ByteListBitwiseOp", "ByteListBitwiseOp(op, xBytes, yBytes)", + "ByteListEqual", "ByteListEqual(xBytes, yBytes)", "ByteString", "CDATASection", @@ -1211,12 +1515,12 @@ "CSSConditionRule", "CSSContainerRule", "CSSCounterStyleRule", - "CSSFontFaceLoadEvent", - "CSSFontFaceLoadEventInit", + "CSSFontFaceDescriptors", "CSSFontFaceRule", "CSSFontFeatureValuesMap", "CSSFontFeatureValuesRule", "CSSFontPaletteValuesRule", + "CSSFunctionRule", "CSSGroupingRule", "CSSHSL", "CSSHWB", @@ -1244,6 +1548,7 @@ "CSSMatrixComponentOptions", "CSSMediaRule", "CSSNamespaceRule", + "CSSNestedDeclarations", "CSSNumberish", "CSSNumericArray", "CSSNumericBaseType", @@ -1252,6 +1557,7 @@ "CSSOKLCH", "CSSOKLab", "CSSOMString", + "CSSPageDescriptors", "CSSPageRule", "CSSParserAtRule", "CSSParserBlock", @@ -1263,7 +1569,8 @@ "CSSParserValue", "CSSPerspective", "CSSPerspectiveValue", - "CSSPositionValue", + "CSSPositionTryDescriptors", + "CSSPositionTryRule", "CSSPropertyRule", "CSSPseudoElement", "CSSRGB", @@ -1275,8 +1582,10 @@ "CSSSkew", "CSSSkewX", "CSSSkewY", + "CSSStartingStyleRule", "CSSStringSource", "CSSStyleDeclaration", + "CSSStyleProperties", "CSSStyleRule", "CSSStyleSheet", "CSSStyleSheetInit", @@ -1291,19 +1600,25 @@ "CSSUnparsedSegment", "CSSUnparsedValue", "CSSVariableReferenceValue", + "CSSViewTransitionRule", "Cache", "CacheQueryOptions", "CacheStorage", "Calculating color attachment bytes per sample", + "Call", "Call(F, V, argumentsList)", "CameraDevicePermissionDescriptor", - "CanDeclareGlobalFunction(N)", - "CanDeclareGlobalVar(N)", + "CanBeHeldWeakly", + "CanBeHeldWeakly(v)", "CanMakePaymentEvent", "CanPlayTypeResult", "CanTransferArrayBuffer", + "CanonicalNumericIndexString", "CanonicalNumericIndexString(argument)", + "Canonicalize", "Canonicalize(rer, ch)", + "CanonicalizeKeyedCollectionKey", + "CanonicalizeKeyedCollectionKey(key)", "CanvasCaptureMediaStreamTrack", "CanvasCompositing", "CanvasDirection", @@ -1344,7 +1659,11 @@ "CaptureHandle", "CaptureHandleConfig", "CaptureStartFocusBehavior", + "CapturedMouseEvent", + "CapturedMouseEventInit", "CaretPosition", + "CaretPositionFromPointOptions", + "CaseClauseIsSelected", "CaseClauseIsSelected(C, input)", "ChannelCountMode", "ChannelInterpretation", @@ -1352,21 +1671,33 @@ "ChannelMergerOptions", "ChannelSplitterNode", "ChannelSplitterOptions", + "ChapterInformation", + "ChapterInformationInit", "CharacterBoundsUpdateEvent", "CharacterBoundsUpdateEventInit", + "CharacterComplement", + "CharacterComplement(rer, S)", "CharacterData", + "CharacterRange", "CharacterRange(A, B)", + "CharacterRangeOrUnion", "CharacterRangeOrUnion(rer, A, B)", + "CharacterSetMatcher", "CharacterSetMatcher(rer, A, invert, direction)", "CharacteristicEventHandlers", + "Check entry intersection", + "Check permissions policy", "CheckVisibilityOptions", "ChildBreakToken", "ChildDisplayType", "ChildNode", "Clamp", + "CleanupFinalizationRegistry", "CleanupFinalizationRegistry(finalizationRegistry)", + "ClearKeptObjects", "ClearKeptObjects()", "Client", + "ClientCapability", "ClientLifecycleState", "ClientQueryOptions", "ClientType", @@ -1376,11 +1707,11 @@ "ClipboardEventInit", "ClipboardItem", "ClipboardItemData", - "ClipboardItemDataType", - "ClipboardItemDelayedCallback", "ClipboardItemOptions", "ClipboardItems", "ClipboardPermissionDescriptor", + "ClipboardUnsanitizedFormats", + "CloneArrayBuffer", "CloneArrayBuffer(srcBuffer, srcByteOffset, srcLength)", "CloneAsUint8Array", "CloseEvent", @@ -1388,6 +1719,8 @@ "CloseWatcher", "CloseWatcherOptions", "CodecState", + "CollectSenders", + "CollectTransceivers", "CollectedClientAdditionalPaymentData", "CollectedClientData", "CollectedClientPaymentData", @@ -1396,13 +1729,20 @@ "ColorSelectionResult", "ColorSpaceConversion", "Comment", + "CompareArrayElements", + "CompareArrayElements(x, y, comparator)", + "CompareTypedArrayElements", + "CompareTypedArrayElements(x, y, comparator)", "CompileError", + "CompletePropertyDescriptor", "CompletePropertyDescriptor(Desc)", + "ComposeWriteEventBytes", "ComposeWriteEventBytes(execution, byteIndex, Ws)", "CompositeOperation", "CompositeOperationOrAuto", "CompositionEvent", "CompositionEventInit", + "CompressionFormat", "CompressionStream", "ComputedEffectTiming", "ConnectionType", @@ -1422,6 +1762,7 @@ "ConstraintError", "ConstraintSet", "Constraints", + "Construct", "Construct policy from dictionary and origin", "Construct(F, argumentsList, newTarget)", "ContactAddress", @@ -1438,7 +1779,9 @@ "ContentVisibilityAutoStateChangeEventInit", "ContentVisibilityAutoStateChangedEvent", "ContentVisibilityAutoStateChangedEventInit", + "ContinueDynamicImport", "ContinueDynamicImport(promiseCapability, moduleCompletion)", + "ContinueModuleLoading", "ContinueModuleLoading(state, moduleCompletion)", "ConvertCoordinateOptions", "ConvertToInt", @@ -1454,7 +1797,9 @@ "CookieStoreDeleteOptions", "CookieStoreGetOptions", "CookieStoreManager", + "CopyDataBlockBytes", "CopyDataBlockBytes(toBlock, toIndex, fromBlock, fromIndex, count)", + "CopyDataProperties", "CopyDataProperties(target, source, excludedItems)", "CountQueuingStrategy", "Create a Credential", @@ -1465,39 +1810,61 @@ "Create a Permissions Policy for a navigable from response", "Create a Trusted Type", "Create a Trusted Type Policy", - "Create a Trusted Type from literal", "Create a new device-bound key record", + "CreateArrayFromList", "CreateArrayFromList(elements)", + "CreateArrayIterator", "CreateArrayIterator(array, kind)", + "CreateAsyncFromSyncIterator", "CreateAsyncFromSyncIterator(syncIteratorRecord)", + "CreateAsyncIteratorFromClosure", "CreateAsyncIteratorFromClosure(closure, generatorBrand, generatorPrototype)", + "CreateBuiltinFunction", "CreateBuiltinFunction(behaviour, length, name, additionalInternalSlotsList, realm, prototype, prefix)", + "CreateByteDataBlock", "CreateByteDataBlock(size)", + "CreateDataProperty", "CreateDataProperty(O, P, V)", + "CreateDataPropertyOrThrow", "CreateDataPropertyOrThrow(O, P, V)", + "CreateDynamicFunction", "CreateDynamicFunction(constructor, newTarget, kind, parameterArgs, bodyArg)", + "CreateForInIterator", "CreateForInIterator(object)", + "CreateHTML", "CreateHTML(string, tag, attribute, value)", "CreateHTMLCallback", + "CreateIntrinsics", "CreateIntrinsics(realmRec)", - "CreateIterResultObject(value, done)", + "CreateIteratorFromClosure", "CreateIteratorFromClosure(closure, generatorBrand, generatorPrototype)", + "CreateIteratorResultObject", + "CreateIteratorResultObject(value, done)", + "CreateListFromArrayLike", "CreateListFromArrayLike(obj, elementTypes)", + "CreateListIteratorRecord", "CreateListIteratorRecord(list)", + "CreateMapIterator", "CreateMapIterator(map, kind)", + "CreateMappedArgumentsObject", "CreateMappedArgumentsObject(func, formals, argumentsList, env)", - "CreateMethodProperty(O, P, V)", + "CreateNonEnumerableDataPropertyOrThrow", "CreateNonEnumerableDataPropertyOrThrow(O, P, V)", + "CreatePerIterationEnvironment", "CreatePerIterationEnvironment(perIterationBindings)", "CreateReadableByteStream", "CreateReadableStream", - "CreateRealm()", + "CreateRegExpStringIterator", "CreateRegExpStringIterator(R, S, global, fullUnicode)", + "CreateResolvingFunctions", "CreateResolvingFunctions(promise)", "CreateScriptCallback", "CreateScriptURLCallback", + "CreateSetIterator", "CreateSetIterator(set, kind)", + "CreateSharedByteDataBlock", "CreateSharedByteDataBlock(size)", + "CreateUnmappedArgumentsObject", "CreateUnmappedArgumentsObject(argumentsList)", "CreateWritableStream", "Credential", @@ -1559,29 +1926,48 @@ "DataTransferItemList", "DataView", "Date", + "DateFromTime", + "DateFromTime(t)", + "DateString", "DateString(tv)", + "Day", + "Day(t)", + "DayFromYear", + "DayFromYear(y)", + "DayWithinYear", + "DayWithinYear(t)", + "DaysInYear", + "DaysInYear(y)", + "Decode", "Decode(string, preserveEscapeSet)", "DecodeErrorCallback", "DecodeErrorCallback()", "DecodeSuccessCallback", "DecodeSuccessCallback()", + "Decoding sparse bit set treeData", "DecompressionStream", "DedicatedWorkerGlobalScope", "Default", - "DefaultTimeZone()", "Define an inherited policy for feature in container at origin", + "DefineField", "DefineField(receiver, fieldRecord)", + "DefineMethodProperty", "DefineMethodProperty(homeObject, key, closure, enumerable)", + "DefinePropertyOrThrow", "DefinePropertyOrThrow(O, P, desc)", "DelayNode", "DelayOptions", + "DeletePropertyOrThrow", "DeletePropertyOrThrow(O, P)", "DeprecationReportBody", "DequeueValue", + "DetachArrayBuffer", "DetachArrayBuffer(arrayBuffer, key)", "DetectedBarcode", "DetectedFace", "DetectedText", + "DeviceChangeEvent", + "DeviceChangeEventInit", "DeviceMotionEvent", "DeviceMotionEventAcceleration", "DeviceMotionEventAccelerationInit", @@ -1590,24 +1976,36 @@ "DeviceMotionEventRotationRateInit", "DeviceOrientationEvent", "DeviceOrientationEventInit", - "DevicePermissionDescriptor", "DevicePosture", "DevicePostureType", + "DigitalCredential", + "DigitalCredentialRequestOptions", + "DigitalCredentialsProvider", "DigitalGoodsService", + "DirectFromSellerSignalsForBuyer", + "DirectFromSellerSignalsForSeller", "DirectionSetting", "DirectoryPickerOptions", + "DisconnectedAccount", "Dispatch error", "DisplayCaptureSurfaceType", "DisplayMediaStreamOptions", "DistanceModelType", + "DoWait", + "DoWait(mode, typedArray, index, value, timeout)", "Document", "DocumentFragment", "DocumentOrShadowRoot", + "DocumentPictureInPicture", + "DocumentPictureInPictureEvent", + "DocumentPictureInPictureEventInit", + "DocumentPictureInPictureOptions", "DocumentReadyState", "DocumentTimeline", "DocumentTimelineOptions", "DocumentType", "DocumentVisibilityState", + "Does sink type require trusted types?", "DoubleRange", "DragEvent", "DragEventInit", @@ -1630,6 +2028,9 @@ "ElementCreationOptions", "ElementDefinitionOptions", "ElementInternals", + "EmptyMatcher", + "EmptyMatcher()", + "Encode", "Encode(string, extraUnescaped)", "EncodedAudioChunk", "EncodedAudioChunkInit", @@ -1648,12 +2049,19 @@ "EnforceRange", "Enqueue a command", "Enqueue a render command", + "EnqueueAtomicsWaitAsyncTimeoutJob", + "EnqueueAtomicsWaitAsyncTimeoutJob(WL, waiterRecord)", + "EnqueueResolveInAgentJob", + "EnqueueResolveInAgentJob(agentSignifier, promiseCapability, resolution)", "EnqueueValueWithSize", "EnsureScriptingPolicyDoesNotBlockScriptExecution(callerRealm, calleeRealm, source)", + "EnterCriticalSection", "EnterCriticalSection(WL)", "Entity", "EntityReference", + "EnumerableOwnProperties", "EnumerableOwnProperties(O, kind)", + "EnumerateObjectProperties", "EnumerateObjectProperties(O)", "EpochTimeStamp", "EpubReadingSystem", @@ -1661,13 +2069,20 @@ "ErrorCallback", "ErrorEvent", "ErrorEventInit", + "EscapeRegExpPattern", "EscapeRegExpPattern(P, F)", + "EvalDeclarationInstantiation", "EvalDeclarationInstantiation(body, varEnv, lexEnv, privateEnv, strict)", "EvalError", + "EvaluateCall", "EvaluateCall(func, ref, arguments, tailPosition)", + "EvaluateNew", "EvaluateNew(constructExpr, arguments)", + "EvaluatePropertyAccessWithExpressionKey", "EvaluatePropertyAccessWithExpressionKey(baseValue, expression, strict)", + "EvaluatePropertyAccessWithIdentifierKey", "EvaluatePropertyAccessWithIdentifierKey(baseValue, identifierName, strict)", + "EvaluateStringOrNumericBinaryExpression", "EvaluateStringOrNumericBinaryExpression(leftOperand, opText, rightOperand)", "Event", "EventCounts", @@ -1677,13 +2092,17 @@ "EventListener", "EventListenerOptions", "EventModifierInit", + "EventSet", "EventSet(execution)", "EventSource", "EventSourceInit", "EventTarget", + "ExecuteAsyncModule", "ExecuteAsyncModule(module)", + "Expire", + "Expire the current texture", "Exposed", - "Extend the font subset", + "Extend an Incremental Font Subset", "ExtendableCookieChangeEvent", "ExtendableCookieChangeEventInit", "ExtendableEvent", @@ -1700,6 +2119,12 @@ "FederatedCredential", "FederatedCredentialInit", "FederatedCredentialRequestOptions", + "Fence", + "FenceEvent", + "FenceReportingDestination", + "FencedFrameConfig", + "FencedFrameConfigSize", + "FencedFrameConfigURL", "FetchEvent", "FetchEventInit", "File", @@ -1736,10 +2161,14 @@ "FillLightMode", "FillMode", "FinalizationRegistry", + "FindViaPredicate", "FindViaPredicate(O, len, direction, predicate, thisArg)", + "FinishLoadingImportedModule", "FinishLoadingImportedModule(referrer, specifier, payload, result)", "FlacEncoderConfig", + "FlattenIntoArray", "FlattenIntoArray(target, source, sourceLen, start, depth, mapperFunction, thisArg)", + "Float16Array", "Float32Array", "Float64Array", "FlowControlType", @@ -1764,7 +2193,9 @@ "FontFaceVariationAxis", "FontFaceVariations", "FontMetrics", + "ForBodyEvaluation", "ForBodyEvaluation(test, increment, stmt, perIterationBindings, labelSet)", + "ForDebuggingOnly", "FormData", "FormDataEntryValue", "FormDataEvent", @@ -1775,13 +2206,17 @@ "FragmentResultOptions", "FrameRequestCallback", "FrameType", + "FromPropertyDescriptor", "FromPropertyDescriptor(Desc)", "FrozenArray", "FrozenArray<T>", + "FulfillPromise", "FulfillPromise(promise, value)", "FullscreenNavigationUI", "FullscreenOptions", + "Fully Expand a Font Subset", "Function", + "FunctionDeclarationInstantiation", "FunctionDeclarationInstantiation(func, argumentsList)", "FunctionStringCallback", "GPU", @@ -1813,6 +2248,8 @@ "GPUCanvasAlphaMode", "GPUCanvasConfiguration", "GPUCanvasContext", + "GPUCanvasToneMapping", + "GPUCanvasToneMappingMode", "GPUColor", "GPUColorDict", "GPUColorTargetState", @@ -1829,8 +2266,6 @@ "GPUCompilationMessageType", "GPUComputePassDescriptor", "GPUComputePassEncoder", - "GPUComputePassTimestampLocation", - "GPUComputePassTimestampWrite", "GPUComputePassTimestampWrites", "GPUComputePipeline", "GPUComputePipelineDescriptor", @@ -1856,12 +2291,14 @@ "GPUFrontFace", "GPUImageCopyBuffer", "GPUImageCopyExternalImage", + "GPUImageCopyExternalImageSource", "GPUImageCopyTexture", "GPUImageCopyTextureTagged", "GPUImageDataLayout", "GPUIndex32", "GPUIndexFormat", "GPUIntegerCoordinate", + "GPUIntegerCoordinateOut", "GPUInternalError", "GPULoadOp", "GPUMapMode", @@ -1902,8 +2339,6 @@ "GPURenderPassDescriptor", "GPURenderPassEncoder", "GPURenderPassLayout", - "GPURenderPassTimestampLocation", - "GPURenderPassTimestampWrite", "GPURenderPassTimestampWrites", "GPURenderPipeline", "GPURenderPipelineDescriptor", @@ -1920,7 +2355,9 @@ "GPUShaderStageFlags", "GPUSignedOffset32", "GPUSize32", + "GPUSize32Out", "GPUSize64", + "GPUSize64Out", "GPUStencilFaceState", "GPUStencilOperation", "GPUStencilValue", @@ -1959,85 +2396,138 @@ "GamepadEventInit", "GamepadHand", "GamepadHapticActuator", - "GamepadHapticActuatorType", "GamepadHapticEffectType", "GamepadHapticsResult", "GamepadMappingType", "GamepadPose", "GamepadTouch", + "GatherAvailableAncestors", "GatherAvailableAncestors(module, execList)", "Generate a validation error", "Generate an internal error", "Generate an out-of-memory error", "Generate report for violation of permissions policy on settings", "GenerateAssertionCallback", + "GenerateBidInterestGroup", + "GenerateBidOutput", "GenerateTestReportParameters", "Generator", "GeneratorFunction", + "GeneratorResume", "GeneratorResume(generator, value, generatorBrand)", + "GeneratorResumeAbrupt", "GeneratorResumeAbrupt(generator, abruptCompletion, generatorBrand)", + "GeneratorStart", "GeneratorStart(generator, generatorBody)", + "GeneratorValidate", "GeneratorValidate(generator, generatorBrand)", - "GeneratorYield(iterNextObj)", + "GeneratorYield", + "GeneratorYield(iteratorResult)", "GenericTransformStream", "Geolocation", "GeolocationCoordinates", "GeolocationPosition", "GeolocationPositionError", - "GeolocationReadingValues", "GeolocationSensor", "GeolocationSensorOptions", "GeolocationSensorReading", "GeometryNode", "GeometryUtils", + "Get", "Get Trusted Type compliant string", + "Get Trusted Type data for attribute", + "Get Trusted Type policy value", + "Get feature value for origin", + "Get the reporting endpoint for a feature", "Get(O, P)", + "GetActiveScriptOrModule", "GetActiveScriptOrModule()", "GetAnimationsOptions", + "GetArrayBufferMaxByteLengthOption", + "GetArrayBufferMaxByteLengthOption(options)", + "GetFunctionRealm", "GetFunctionRealm(obj)", + "GetGeneratorKind", "GetGeneratorKind()", + "GetGlobalObject", "GetGlobalObject()", + "GetHTMLOptions", + "GetIdentifierReference", "GetIdentifierReference(env, name, strict)", + "GetImportedModule", "GetImportedModule(referrer, specifier)", - "GetIterator(obj, hint, method)", + "GetIterator", + "GetIterator(obj, kind)", + "GetIteratorFromMethod", + "GetIteratorFromMethod(obj, method)", + "GetMatchIndexPair", "GetMatchIndexPair(S, match)", + "GetMatchString", "GetMatchString(S, match)", + "GetMethod", "GetMethod(V, P)", - "GetModifySetValueInBuffer(arrayBuffer, byteIndex, type, value, op, isLittleEndian)", + "GetModifySetValueInBuffer", + "GetModifySetValueInBuffer(arrayBuffer, byteIndex, type, value, op)", + "GetModuleNamespace", "GetModuleNamespace(module)", + "GetNamedTimeZoneEpochNanoseconds", "GetNamedTimeZoneEpochNanoseconds(timeZoneIdentifier, year, month, day, hour, minute, second, millisecond, microsecond, nanosecond)", + "GetNamedTimeZoneOffsetNanoseconds", "GetNamedTimeZoneOffsetNanoseconds(timeZoneIdentifier, epochNanoseconds)", + "GetNewTarget", "GetNewTarget()", "GetNotificationOptions", + "GetOwnPropertyKeys", "GetOwnPropertyKeys(O, type)", + "GetPromiseResolve", "GetPromiseResolve(promiseConstructor)", + "GetPrototypeFromConstructor", "GetPrototypeFromConstructor(constructor, intrinsicDefaultProto)", + "GetRawBytesFromSharedBlock", + "GetRawBytesFromSharedBlock(block, byteIndex, type, isTypedArray, order)", "GetRootNodeOptions", "GetSVGDocument", + "GetSetRecord", + "GetSetRecord(obj)", + "GetStringIndex", "GetStringIndex(S, codePointIndex)", + "GetSubstitution", "GetSubstitution(matched, str, position, captures, namedCaptures, replacementTemplate)", + "GetSuperConstructor", "GetSuperConstructor()", + "GetTemplateObject", "GetTemplateObject(templateLiteral)", + "GetThisEnvironment", "GetThisEnvironment()", + "GetThisValue", "GetThisValue(V)", + "GetUTCEpochNanoseconds", "GetUTCEpochNanoseconds(year, month, day, hour, minute, second, millisecond, microsecond, nanosecond)", + "GetV", "GetV(V, P)", + "GetValue", "GetValue(V)", + "GetValueFromBuffer", "GetValueFromBuffer(arrayBuffer, byteIndex, type, isTypedArray, order, isLittleEndian)", + "GetViewByteLength", + "GetViewByteLength(viewRecord)", + "GetViewValue", "GetViewValue(view, requestIndex, isLittleEndian, type)", + "GetWaiterList", "GetWaiterList(block, i)", "Global", + "GlobalDeclarationInstantiation", "GlobalDeclarationInstantiation(script, env)", "GlobalDescriptor", "GlobalEventHandlers", "GlobalPrivacyControl", "GlobalState", - "GravityReadingValues", "GravitySensor", + "GroupBy", + "GroupBy(items, callback, keyCoercion)", "GroupEffect", "Gyroscope", "GyroscopeLocalCoordinateSystem", - "GyroscopeReadingValues", "GyroscopeSensorOptions", "HID", "HIDCollectionInfo", @@ -2074,6 +2564,7 @@ "HTMLDivElement", "HTMLElement", "HTMLEmbedElement", + "HTMLFencedFrameElement", "HTMLFieldSetElement", "HTMLFontElement", "HTMLFormControlsCollection", @@ -2118,10 +2609,10 @@ "HTMLQuoteElement", "HTMLScriptElement", "HTMLSelectElement", + "HTMLSharedStorageWritableElementUtils", "HTMLSlotElement", "HTMLSourceElement", "HTMLSpanElement", - "HTMLString", "HTMLStyleElement", "HTMLTableCaptionElement", "HTMLTableCellElement", @@ -2137,14 +2628,27 @@ "HTMLUListElement", "HTMLUnknownElement", "HTMLVideoElement", - "Handle failed font load", - "Handle server response", + "Handle errors", + "HandwritingDrawing", + "HandwritingDrawingSegment", + "HandwritingHints", + "HandwritingHintsQueryResult", + "HandwritingInputType", + "HandwritingModelConstraint", + "HandwritingPoint", + "HandwritingPrediction", + "HandwritingRecognitionType", + "HandwritingRecognizer", + "HandwritingRecognizerQueryResult", + "HandwritingSegment", + "HandwritingStroke", "HardwareAcceleration", - "HasLexicalDeclaration(N)", + "HasEitherUnicodeFlag", + "HasEitherUnicodeFlag(rer)", + "HasOwnProperty", "HasOwnProperty(O, P)", + "HasProperty", "HasProperty(O, P)", - "HasRestrictedGlobalProperty(N)", - "HasVarDeclaration(N)", "HashAlgorithmIdentifier", "HashChangeEvent", "HashChangeEventInit", @@ -2162,18 +2666,40 @@ "HmacImportParams", "HmacKeyAlgorithm", "HmacKeyGenParams", + "HostCallJobCallback", "HostCallJobCallback(jobCallback, V, argumentsList)", + "HostEnqueueFinalizationRegistryCleanupJob", "HostEnqueueFinalizationRegistryCleanupJob(finalizationRegistry)", + "HostEnqueueGenericJob", + "HostEnqueueGenericJob(job, realm)", + "HostEnqueuePromiseJob", "HostEnqueuePromiseJob(job, realm)", + "HostEnqueueTimeoutJob", + "HostEnqueueTimeoutJob(timeoutJob, realm, milliseconds)", + "HostEnsureCanAddPrivateElement", "HostEnsureCanAddPrivateElement(O)", - "HostEnsureCanCompileStrings(calleeRealm)", + "HostEnsureCanCompileStrings", + "HostEnsureCanCompileStrings(calleeRealm, parameterStrings, bodyString, direct)", + "HostEventSet", "HostEventSet(execution)", + "HostFinalizeImportMeta", "HostFinalizeImportMeta(importMeta, moduleRecord)", + "HostGetImportMetaProperties", "HostGetImportMetaProperties(moduleRecord)", + "HostGrowSharedArrayBuffer", + "HostGrowSharedArrayBuffer(buffer, newByteLength)", + "HostHasSourceTextAvailable", "HostHasSourceTextAvailable(func)", + "HostLoadImportedModule", "HostLoadImportedModule(referrer, specifier, hostDefined, payload)", + "HostMakeJobCallback", "HostMakeJobCallback(callback)", + "HostPromiseRejectionTracker", "HostPromiseRejectionTracker(promise, operation)", + "HostResizeArrayBuffer", + "HostResizeArrayBuffer(buffer, newByteLength)", + "HourFromTime", + "HourFromTime(t)", "IDBCursor", "IDBCursorDirection", "IDBCursorWithValue", @@ -2196,8 +2722,12 @@ "IDBVersionChangeEventInit", "IIRFilterNode", "IIRFilterOptions", + "IPAddressSpace", "IdentityCredential", + "IdentityCredentialDisconnectOptions", "IdentityCredentialRequestOptions", + "IdentityCredentialRequestOptionsContext", + "IdentityProvider", "IdentityProviderAPIConfig", "IdentityProviderAccount", "IdentityProviderAccountList", @@ -2205,14 +2735,18 @@ "IdentityProviderClientMetadata", "IdentityProviderConfig", "IdentityProviderIcon", + "IdentityProviderRequestOptions", "IdentityProviderToken", "IdentityProviderWellKnown", + "IdentityUserInfo", "IdleDeadline", "IdleDetector", "IdleOptions", "IdleRequestCallback", "IdleRequestOptions", + "IfAbruptCloseIterator", "IfAbruptCloseIterator(value, iteratorRecord)", + "IfAbruptRejectPromise", "IfAbruptRejectPromise(value, capability)", "ImageBitmap", "ImageBitmapOptions", @@ -2234,27 +2768,39 @@ "ImageTrack", "ImageTrackList", "ImportExportKind", + "InLeapYear", + "InLeapYear(t)", "InUseAttributeError", "Inactivate the recorder", "IndexSizeError", + "InitializeBoundName", "InitializeBoundName(name, value, environment)", + "InitializeHostDefinedRealm", "InitializeHostDefinedRealm()", + "InitializeInstanceElements", "InitializeInstanceElements(O, constructor)", "InitializeReadableStream", + "InitializeReferencedBinding", "InitializeReferencedBinding(V, W)", "InitializeTransformStream", + "InitializeTypedArrayFromArrayBuffer", "InitializeTypedArrayFromArrayBuffer(O, buffer, byteOffset, length)", + "InitializeTypedArrayFromArrayLike", "InitializeTypedArrayFromArrayLike(O, arrayLike)", + "InitializeTypedArrayFromList", "InitializeTypedArrayFromList(O, values)", + "InitializeTypedArrayFromTypedArray", "InitializeTypedArrayFromTypedArray(O, srcArray)", "InitializeWritableStream", "Ink", "InkPresenter", "InkPresenterParam", "InkTrailStyle", - "InnerHTML", + "InnerModuleEvaluation", "InnerModuleEvaluation(module, stack, index)", + "InnerModuleLinking", "InnerModuleLinking(module, stack, index)", + "InnerModuleLoading", "InnerModuleLoading(state, module)", "InputDeviceCapabilities", "InputDeviceCapabilitiesInit", @@ -2262,18 +2808,26 @@ "InputEvent", "InputEventInit", "InputObject", + "InstallErrorCause", "InstallErrorCause(O, options)", + "InstallEvent", "Instance", + "InstanceofOperator", "InstanceofOperator(V, target)", "Int16Array", "Int32Array", "Int8Array", - "IntegerIndexedElementGet(O, index)", - "IntegerIndexedElementSet(O, index, value)", - "IntegerIndexedObjectCreate(prototype)", "IntegerPart", - "InteractionCounts", + "InterestGroupBiddingAndScoringScriptRunnerGlobalScope", + "InterestGroupBiddingScriptRunnerGlobalScope", + "InterestGroupReportingScriptRunnerGlobalScope", + "InterestGroupScoringScriptRunnerGlobalScope", + "InterestGroupScriptRunnerGlobalScope", + "InternalizeJSONProperty", "InternalizeJSONProperty(holder, name, reviver)", + "Interpret Format 1 Patch Map", + "Interpret Format 2 Patch Map", + "Interpret Format 2 Patch Map Entry", "IntersectionObserver", "IntersectionObserverCallback", "IntersectionObserverEntry", @@ -2289,51 +2843,95 @@ "InvalidModificationError", "InvalidNodeTypeError", "InvalidStateError", + "Invalidate", + "Invoke", "Invoke(V, P, argumentsList)", "Is feature enabled in document for origin?", + "Is origin potentially trustworthy?", + "IsAccessorDescriptor", "IsAccessorDescriptor(Desc)", + "IsArray", "IsArray(argument)", + "IsArrayBufferViewOutOfBounds", + "IsArrayBufferViewOutOfBounds(O)", + "IsBigIntElementType", "IsBigIntElementType(type)", + "IsCallable", "IsCallable(argument)", + "IsCompatiblePropertyDescriptor", "IsCompatiblePropertyDescriptor(Extensible, Desc, Current)", + "IsConcatSpreadable", "IsConcatSpreadable(O)", + "IsConstructor", "IsConstructor(argument)", + "IsDataDescriptor", "IsDataDescriptor(Desc)", + "IsDetachedBuffer", "IsDetachedBuffer(arrayBuffer)", + "IsExtensible", "IsExtensible(O)", + "IsFixedLengthArrayBuffer", + "IsFixedLengthArrayBuffer(arrayBuffer)", + "IsGenericDescriptor", "IsGenericDescriptor(Desc)", "IsInputPendingOptions", - "IsIntegralNumber(argument)", + "IsLessThan", "IsLessThan(x, y, LeftFirst)", + "IsLooselyEqual", "IsLooselyEqual(x, y)", + "IsNoTearConfiguration", "IsNoTearConfiguration(type, order)", "IsNonNegativeNumber", + "IsPrivateReference", "IsPrivateReference(V)", + "IsPromise", "IsPromise(x)", - "IsPropertyKey(argument)", + "IsPropertyReference", "IsPropertyReference(V)", "IsReadableStreamLocked", + "IsRegExp", "IsRegExp(argument)", + "IsSharedArrayBuffer", "IsSharedArrayBuffer(obj)", + "IsStrictlyEqual", "IsStrictlyEqual(x, y)", + "IsSuperReference", "IsSuperReference(V)", + "IsTimeZoneOffsetString", "IsTimeZoneOffsetString(offsetString)", + "IsTypedArrayOutOfBounds", + "IsTypedArrayOutOfBounds(taRecord)", + "IsUnclampedIntegerElementType", "IsUnclampedIntegerElementType(type)", + "IsUnresolvableReference", "IsUnresolvableReference(V)", + "IsUnsignedElementType", "IsUnsignedElementType(type)", + "IsValidIntegerIndex", "IsValidIntegerIndex(O, index)", + "IsViewOutOfBounds", + "IsViewOutOfBounds(viewRecord)", + "IsWordChar", "IsWordChar(rer, Input, e)", "IsWritableStreamLocked", "ItemDetails", "ItemType", - "IterableToList(items, method)", "Iterate over each dynamic binding offset", "IterationCompositeOperation", + "IteratorClose", "IteratorClose(iteratorRecord, completion)", - "IteratorComplete(iterResult)", + "IteratorComplete", + "IteratorComplete(iteratorResult)", + "IteratorNext", "IteratorNext(iteratorRecord, value)", + "IteratorStep", "IteratorStep(iteratorRecord)", - "IteratorValue(iterResult)", + "IteratorStepValue", + "IteratorStepValue(iteratorRecord)", + "IteratorToList", + "IteratorToList(iteratorRecord)", + "IteratorValue", + "IteratorValue(iteratorResult)", "JSON", "JsonLd", "JsonLdContext", @@ -2347,8 +2945,12 @@ "JsonLdProcessor", "JsonLdRecord", "JsonWebKey", + "KAnonStatus", "KeyAlgorithm", + "KeyForSymbol", + "KeyForSymbol(sym)", "KeyFormat", + "KeyFrameRequestEvent", "KeySystemTrackConfiguration", "KeyType", "KeyUsage", @@ -2380,6 +2982,7 @@ "LayoutShiftAttribution", "LayoutSizingMode", "LayoutWorkletGlobalScope", + "LeaveCriticalSection", "LeaveCriticalSection(WL)", "LegacyFactoryFunction", "LegacyLenientSetter", @@ -2393,17 +2996,18 @@ "LegacyUnenumerableNamedProperties", "LegacyUnforgeable", "LegacyWindowAlias", + "LengthOfArrayLike", "LengthOfArrayLike(obj)", "LifecycleError", "LineAlignSetting", "LineAndPositionSetting", - "LinearAccelerationReadingValues", "LinearAccelerationSensor", "LinkError", "LinkStyle", - "Load a font with a HTTP Cache", + "Load patch file", "LoadDocumentCallback", "LoadDocumentOptions", + "LocalTime", "LocalTime(t)", "Location", "Lock", @@ -2415,6 +3019,8 @@ "LockOptions", "Logger", "Logical miplevel-specific texture extent", + "LoginStatus", + "LoopContinues", "LoopContinues(completion, labelSet)", "MIDIAccess", "MIDIConnectionEvent", @@ -2431,13 +3037,9 @@ "MIDIPortDeviceState", "MIDIPortType", "ML", - "MLActivation", - "MLAutoPad", + "MLArgMinMaxOptions", "MLBatchNormalizationOptions", - "MLBufferResourceView", - "MLBufferView", "MLClampOptions", - "MLCommandEncoder", "MLComputeResult", "MLContext", "MLContextOptions", @@ -2447,7 +3049,7 @@ "MLConvTranspose2dOptions", "MLDeviceType", "MLEluOptions", - "MLGPUResource", + "MLGatherOptions", "MLGemmOptions", "MLGraph", "MLGraphBuilder", @@ -2458,49 +3060,75 @@ "MLInputOperandLayout", "MLInstanceNormalizationOptions", "MLInterpolationMode", + "MLLayerNormalizationOptions", "MLLeakyReluOptions", "MLLinearOptions", "MLLstmCellOptions", "MLLstmOptions", "MLLstmWeightLayout", "MLNamedArrayBufferViews", - "MLNamedGPUResources", "MLNamedOperands", + "MLNumber", "MLOperand", + "MLOperandDataType", "MLOperandDescriptor", - "MLOperandType", + "MLOperatorOptions", "MLPadOptions", "MLPaddingMode", "MLPool2dOptions", "MLPowerPreference", + "MLRecurrentNetworkActivation", "MLRecurrentNetworkDirection", "MLReduceOptions", "MLResample2dOptions", "MLRoundingType", - "MLSliceOptions", - "MLSoftplusOptions", "MLSplitOptions", - "MLSqueezeOptions", "MLTransposeOptions", + "MLTriangularOptions", "Magnetometer", "MagnetometerLocalCoordinateSystem", - "MagnetometerReadingValues", "MagnetometerSensorOptions", + "MakeArgGetter", "MakeArgGetter(name, env)", + "MakeArgSetter", "MakeArgSetter(name, env)", + "MakeBasicObject", "MakeBasicObject(internalSlotsList)", + "MakeClassConstructor", "MakeClassConstructor(F)", + "MakeConstructor", "MakeConstructor(F, writablePrototype, prototype)", + "MakeDataViewWithBufferWitnessRecord", + "MakeDataViewWithBufferWitnessRecord(obj, order)", + "MakeDate", "MakeDate(day, time)", + "MakeDay", "MakeDay(year, month, date)", + "MakeFullYear", + "MakeFullYear(year)", + "MakeMatchIndicesIndexPairArray", "MakeMatchIndicesIndexPairArray(S, indices, groupNames, hasGroups)", + "MakeMethod", "MakeMethod(F, homeObject)", + "MakePrivateReference", "MakePrivateReference(baseValue, privateIdentifier)", + "MakeSuperPropertyReference", "MakeSuperPropertyReference(actualThis, propertyKey, strict)", + "MakeTime", "MakeTime(hour, min, sec, ms)", + "MakeTypedArrayWithBufferWitnessRecord", + "MakeTypedArrayWithBufferWitnessRecord(obj, order)", + "ManagedMediaSource", + "ManagedSourceBuffer", "Map", + "MatchSequence", + "MatchSequence(m1, m2, direction)", + "MatchTwoAlternatives", + "MatchTwoAlternatives(m1, m2)", "Math", "MathMLElement", + "MaybeSimpleCaseFolding", + "MaybeSimpleCaseFolding(rer, A)", "MediaCapabilities", "MediaCapabilitiesDecodingInfo", "MediaCapabilitiesEncodingInfo", @@ -2532,6 +3160,7 @@ "MediaKeySystemConfiguration", "MediaKeySystemMediaCapability", "MediaKeys", + "MediaKeysPolicy", "MediaKeysRequirement", "MediaList", "MediaMetadata", @@ -2547,7 +3176,10 @@ "MediaSessionAction", "MediaSessionActionDetails", "MediaSessionActionHandler", + "MediaSessionCaptureActionDetails", "MediaSessionPlaybackState", + "MediaSessionSeekActionDetails", + "MediaSessionSeekToActionDetails", "MediaSettingsRange", "MediaSource", "MediaSourceHandle", @@ -2582,19 +3214,23 @@ "MessagePort", "MeteringMode", "MidiPermissionDescriptor", + "MimeType", + "MimeTypeArray", + "MinFromTime", + "MinFromTime(t)", "MockCameraConfiguration", "MockCaptureDeviceConfiguration", "MockCapturePromptResult", "MockCapturePromptResultConfiguration", "MockMicrophoneConfiguration", - "MockSensor", - "MockSensorConfiguration", - "MockSensorReadingValues", - "MockSensorType", "Module", "ModuleExportDescriptor", "ModuleImportDescriptor", + "ModuleNamespaceCreate", "ModuleNamespaceCreate(module, exports)", + "MonitorTypeSurfacesEnum", + "MonthFromTime", + "MonthFromTime(t)", "MouseEvent", "MouseEventInit", "MultiCacheQueryOptions", @@ -2625,6 +3261,7 @@ "NavigateEvent", "NavigateEventInit", "Navigation", + "NavigationActivation", "NavigationCurrentEntryChangeEvent", "NavigationCurrentEntryChangeEventInit", "NavigationDestination", @@ -2657,10 +3294,14 @@ "NavigatorID", "NavigatorLanguage", "NavigatorLocks", + "NavigatorLogin", "NavigatorML", + "NavigatorManagedData", "NavigatorNetworkInformation", "NavigatorOnLine", + "NavigatorPlugins", "NavigatorStorage", + "NavigatorStorageBuckets", "NavigatorUA", "NavigatorUABrandVersion", "NavigatorUAData", @@ -2668,15 +3309,24 @@ "NavigatorUserMediaSuccessCallback", "NetworkError", "NetworkInformation", + "NewDeclarativeEnvironment", "NewDeclarativeEnvironment(E)", + "NewFunctionEnvironment", "NewFunctionEnvironment(F, newTarget)", + "NewGlobalEnvironment", "NewGlobalEnvironment(G, thisValue)", + "NewModuleEnvironment", "NewModuleEnvironment(E)", "NewObject", + "NewObjectEnvironment", "NewObjectEnvironment(O, W, E)", - "NewPrivateEnvironment(outerPrivEnv)", + "NewPrivateEnvironment", + "NewPrivateEnvironment(outerPrivateEnv)", + "NewPromiseCapability", "NewPromiseCapability(C)", + "NewPromiseReactionJob", "NewPromiseReactionJob(reaction, argument)", + "NewPromiseResolveThenableJob", "NewPromiseResolveThenableJob(promiseToResolve, thenable, then)", "NoModificationAllowedError", "Node", @@ -2685,10 +3335,13 @@ "NodeList", "NonDocumentTypeChildNode", "NonElementParentNode", + "NormalCompletion", "NormalCompletion(value)", "NotAllowedError", "NotFoundError", "NotReadableError", + "NotRestoredReasonDetails", + "NotRestoredReasons", "NotSupportedError", "Notation", "Notification", @@ -2699,15 +3352,20 @@ "NotificationOptions", "NotificationPermission", "NotificationPermissionCallback", - "NotifyWaiter(WL, W)", + "NotifyWaiter", + "NotifyWaiter(WL, waiterRecord)", "Number", + "NumberBitwiseOp", "NumberBitwiseOp(op, x, y)", + "NumberToBigInt", "NumberToBigInt(number)", + "NumericToRawBytes", "NumericToRawBytes(type, value, isLittleEndian)", "OTPCredential", "OTPCredentialRequestOptions", "OTPCredentialTransportType", "Object", + "ObjectDefineProperties", "ObjectDefineProperties(O, Properties)", "ObservableArray", "ObservableArray<T>", @@ -2723,30 +3381,53 @@ "OnBeforeUnloadEventHandlerNonNull", "OnErrorEventHandler", "OnErrorEventHandlerNonNull", + "OpaqueProperty", "OpenFilePickerOptions", "OperationError", + "OperationType", "OptOutError", "OptionalEffectTiming", + "OpusApplication", "OpusBitstreamFormat", "OpusEncoderConfig", + "OpusSignal", + "OrdinaryCallBindThis", "OrdinaryCallBindThis(F, calleeContext, thisArgument)", + "OrdinaryCallEvaluateBody", "OrdinaryCallEvaluateBody(F, argumentsList)", + "OrdinaryCreateFromConstructor", "OrdinaryCreateFromConstructor(constructor, intrinsicDefaultProto, internalSlotsList)", + "OrdinaryDefineOwnProperty", "OrdinaryDefineOwnProperty(O, P, Desc)", + "OrdinaryDelete", "OrdinaryDelete(O, P)", + "OrdinaryFunctionCreate", "OrdinaryFunctionCreate(functionPrototype, sourceText, ParameterList, Body, thisMode, env, privateEnv)", + "OrdinaryGet", "OrdinaryGet(O, P, Receiver)", + "OrdinaryGetOwnProperty", "OrdinaryGetOwnProperty(O, P)", + "OrdinaryGetPrototypeOf", "OrdinaryGetPrototypeOf(O)", + "OrdinaryHasInstance", "OrdinaryHasInstance(C, O)", + "OrdinaryHasProperty", "OrdinaryHasProperty(O, P)", + "OrdinaryIsExtensible", "OrdinaryIsExtensible(O)", + "OrdinaryObjectCreate", "OrdinaryObjectCreate(proto, additionalInternalSlotsList)", + "OrdinaryOwnPropertyKeys", "OrdinaryOwnPropertyKeys(O)", + "OrdinaryPreventExtensions", "OrdinaryPreventExtensions(O)", + "OrdinarySet", "OrdinarySet(O, P, V, Receiver)", + "OrdinarySetPrototypeOf", "OrdinarySetPrototypeOf(O, V)", + "OrdinarySetWithOwnDescriptor", "OrdinarySetWithOwnDescriptor(O, P, V, Receiver, ownDesc)", + "OrdinaryToPrimitive", "OrdinaryToPrimitive(O, hint)", "OrientationLockType", "OrientationSensor", @@ -2758,11 +3439,19 @@ "OscillatorType", "OverSampleType", "OverconstrainedError", + "PADebugModeOptions", + "PAExtendedHistogramContribution", + "PAHistogramContribution", + "PASignalValue", "PackAndPostMessage", "PackAndPostMessageHandlingError", "Page", "PageInputObject", + "PageRevealEvent", + "PageRevealEventInit", "PageState", + "PageSwapEvent", + "PageSwapEventInit", "PageTransitionEvent", "PageTransitionEventInit", "PaintRenderingContext2D", @@ -2775,13 +3464,19 @@ "ParentNode", "ParityType", "Parse policy directive", + "ParseHexOctet", + "ParseHexOctet(string, position)", + "ParseModule", "ParseModule(sourceText, realm, hostDefined)", + "ParseScript", "ParseScript(sourceText, realm, hostDefined)", + "ParseTimeZoneOffsetString", "ParseTimeZoneOffsetString(offsetString)", "PasswordCredential", "PasswordCredentialData", "PasswordCredentialInit", "Path2D", + "PayerErrors", "PaymentComplete", "PaymentCompleteDetails", "PaymentCredentialInstrument", @@ -2797,6 +3492,7 @@ "PaymentMethodChangeEvent", "PaymentMethodChangeEventInit", "PaymentMethodData", + "PaymentOptions", "PaymentRequest", "PaymentRequestDetailsUpdate", "PaymentRequestEvent", @@ -2804,20 +3500,29 @@ "PaymentRequestUpdateEvent", "PaymentRequestUpdateEventInit", "PaymentResponse", + "PaymentShippingOption", + "PaymentShippingType", "PaymentValidationErrors", "Pbkdf2Params", "PeekQueueValue", + "PerformEval", "PerformEval(x, strictCaller, direct)", + "PerformPromiseAll", "PerformPromiseAll(iteratorRecord, constructor, resultCapability, promiseResolve)", + "PerformPromiseAllSettled", "PerformPromiseAllSettled(iteratorRecord, constructor, resultCapability, promiseResolve)", + "PerformPromiseAny", "PerformPromiseAny(iteratorRecord, constructor, resultCapability, promiseResolve)", + "PerformPromiseRace", "PerformPromiseRace(iteratorRecord, constructor, resultCapability, promiseResolve)", + "PerformPromiseThen", "PerformPromiseThen(promise, onFulfilled, onRejected, resultCapability)", "Performance", "PerformanceElementTiming", "PerformanceEntry", "PerformanceEntryList", "PerformanceEventTiming", + "PerformanceLongAnimationFrameTiming", "PerformanceLongTaskTiming", "PerformanceMark", "PerformanceMarkOptions", @@ -2832,6 +3537,7 @@ "PerformanceObserverInit", "PerformancePaintTiming", "PerformanceResourceTiming", + "PerformanceScriptTiming", "PerformanceServerTiming", "PerformanceTiming", "PeriodicSyncEvent", @@ -2855,12 +3561,15 @@ "PictureInPictureWindow", "PlaneLayout", "PlaybackDirection", + "Plugin", + "PluginArray", "Point2D", "PointerEvent", "PointerEventInit", + "PointerLockOptions", "PopStateEvent", "PopStateEventInit", - "PopoverTargetElement", + "PopoverInvokerElement", "PortalActivateEvent", "PortalActivateEventInit", "PortalActivateOptions", @@ -2870,9 +3579,13 @@ "PositionErrorCallback", "PositionOptions", "PredefinedColorSpace", + "PreferenceManager", + "PreferenceObject", "PremultiplyAlpha", - "Prepare the script URL and text", + "Prepare the script text", + "PrepareForOrdinaryCall", "PrepareForOrdinaryCall(F, newTarget)", + "PrepareForTailCall", "PrepareForTailCall()", "Presentation", "PresentationAvailability", @@ -2887,7 +3600,6 @@ "PresentationReceiver", "PresentationRequest", "PresentationStyle", - "PressureFactor", "PressureObserver", "PressureObserverOptions", "PressureRecord", @@ -2895,12 +3607,21 @@ "PressureState", "PressureUpdateCallback", "Prevent Silent Access", + "PreviousWin", "Printer", + "PrivateAggregation", + "PrivateElementFind", "PrivateElementFind(O, P)", + "PrivateFieldAdd", "PrivateFieldAdd(O, P, value)", + "PrivateGet", "PrivateGet(O, P)", + "PrivateMethodOrAccessorAdd", "PrivateMethodOrAccessorAdd(O, method)", + "PrivateNetworkAccessPermissionDescriptor", + "PrivateSet", "PrivateSet(O, P, value)", + "PrivateToken", "Process permissions policy attributes", "Process response policy", "Process value with a default policy", @@ -2918,20 +3639,24 @@ "Promise<T>", "PromiseRejectionEvent", "PromiseRejectionEventInit", + "PromiseResolve", "PromiseResolve(C, x)", - "Promises", "PromptResponseObject", "PropertyDefinition", - "ProximityReadingValues", + "ProtectedAudience", + "ProtectedAudiencePrivateAggregationConfig", "ProximitySensor", "Proxy", + "ProxyCreate", "ProxyCreate(target, handler)", "PublicKeyCredential", + "PublicKeyCredentialClientCapabilities", "PublicKeyCredentialCreationOptions", "PublicKeyCredentialCreationOptionsJSON", "PublicKeyCredentialDescriptor", "PublicKeyCredentialDescriptorJSON", "PublicKeyCredentialEntity", + "PublicKeyCredentialHints", "PublicKeyCredentialJSON", "PublicKeyCredentialParameters", "PublicKeyCredentialRequestOptions", @@ -2955,12 +3680,14 @@ "PushSubscriptionOptions", "PushSubscriptionOptionsInit", "PutForwards", + "PutValue", "PutValue(V, W)", "QueryOptions", "QueuingStrategy", "QueuingStrategyInit", "QueuingStrategySize", "QuotaExceededError", + "QuoteJSONString", "QuoteJSONString(value)", "RTCAnswerOptions", "RTCAudioPlayoutStats", @@ -2987,8 +3714,10 @@ "RTCDtlsTransportState", "RTCEncodedAudioFrame", "RTCEncodedAudioFrameMetadata", + "RTCEncodedAudioFrameOptions", "RTCEncodedVideoFrame", "RTCEncodedVideoFrameMetadata", + "RTCEncodedVideoFrameOptions", "RTCEncodedVideoFrameType", "RTCError", "RTCErrorDetailType", @@ -3004,7 +3733,6 @@ "RTCIceCandidateType", "RTCIceComponent", "RTCIceConnectionState", - "RTCIceCredentialType", "RTCIceGatherOptions", "RTCIceGathererState", "RTCIceGatheringState", @@ -3028,8 +3756,6 @@ "RTCInboundRtpStreamStats", "RTCLocalSessionDescriptionInit", "RTCMediaSourceStats", - "RTCMediaStreamStats", - "RTCMediaStreamTrackStats", "RTCOfferAnswerOptions", "RTCOfferOptions", "RTCOutboundRtpStreamStats", @@ -3049,11 +3775,11 @@ "RTCRtcpMuxPolicy", "RTCRtcpParameters", "RTCRtpCapabilities", + "RTCRtpCodec", "RTCRtpCodecCapability", "RTCRtpCodecParameters", "RTCRtpCodingParameters", "RTCRtpContributingSource", - "RTCRtpDecodingParameters", "RTCRtpEncodingParameters", "RTCRtpHeaderExtensionCapability", "RTCRtpHeaderExtensionParameters", @@ -3077,6 +3803,7 @@ "RTCSessionDescription", "RTCSessionDescriptionCallback", "RTCSessionDescriptionInit", + "RTCSetParameterOptions", "RTCSignalingState", "RTCStats", "RTCStatsIceCandidatePairState", @@ -3091,6 +3818,7 @@ "Range", "RangeError", "RangeException", + "RawBytesToNumeric", "RawBytesToNumeric(type, rawBytes, isLittleEndian)", "RdfDataset", "RdfGraph", @@ -3134,6 +3862,7 @@ "ReadableStreamBYOBReader", "ReadableStreamBYOBReaderErrorReadIntoRequests", "ReadableStreamBYOBReaderRead", + "ReadableStreamBYOBReaderReadOptions", "ReadableStreamBYOBReaderRelease", "ReadableStreamBYOBRequest", "ReadableStreamCancel", @@ -3155,6 +3884,7 @@ "ReadableStreamDefaultReaderRelease", "ReadableStreamDefaultTee", "ReadableStreamError", + "ReadableStreamFromIterable", "ReadableStreamFulfillReadIntoRequest", "ReadableStreamFulfillReadRequest", "ReadableStreamGenericReader", @@ -3175,39 +3905,57 @@ "ReadableStreamType", "ReadableWritablePair", "ReadyState", + "RealTimeContribution", + "RealTimeReporting", "RecordingState", "RedEyeReduction", "ReferenceError", "ReferrerPolicy", "Reflect", + "RefreshPolicy", "RegExp", + "RegExpAlloc", "RegExpAlloc(newTarget)", + "RegExpBuiltinExec", "RegExpBuiltinExec(R, S)", + "RegExpCreate", "RegExpCreate(P, F)", + "RegExpExec", "RegExpExec(R, S)", + "RegExpHasFlag", "RegExpHasFlag(R, codeUnit)", + "RegExpInitialize", "RegExpInitialize(obj, pattern, flags)", "Region", "RegistrationOptions", "RegistrationResponseJSON", + "RejectPromise", "RejectPromise(promise, reason)", "RelatedApplication", - "RelativeOrientationReadingValues", "RelativeOrientationSensor", "RemoteDocument", "RemotePlayback", "RemotePlaybackAvailabilityCallback", "RemotePlaybackState", - "RemoveWaiter(WL, W)", + "Remove Entries from Format 1 Patch Map", + "Remove Entries from Format 2 Patch Map", + "RemoveWaiter", + "RemoveWaiter(WL, waiterRecord)", + "RemoveWaiters", "RemoveWaiters(WL, c)", "RenderBlockingStatusType", "RenderingContext", + "RepeatMatcher", "RepeatMatcher(m, min, max, greedy, x, c, parenIndex, parenCount)", "Replace the drawing buffer", "Replaceable", "Report", "ReportBody", + "ReportEventType", "ReportList", + "ReportResultBrowserSignals", + "ReportWinBrowserSignals", + "ReportingBrowserSignals", "ReportingObserver", "ReportingObserverCallback", "ReportingObserverOptions", @@ -3223,8 +3971,11 @@ "RequestMode", "RequestPriority", "RequestRedirect", + "RequireInternalSlot", "RequireInternalSlot(O, internalSlot)", + "RequireObjectCoercible", "RequireObjectCoercible(argument)", + "Reset the render pass binding state", "ResetQueue", "ResidentKeyRequirement", "ResizeObservation", @@ -3235,14 +3986,26 @@ "ResizeObserverOptions", "ResizeObserverSize", "ResizeQuality", + "ResolveBinding", "ResolveBinding(name, env)", - "ResolvePrivateIdentifier(privEnv, identifier)", + "ResolvePrivateIdentifier", + "ResolvePrivateIdentifier(privateEnv, identifier)", + "ResolveThisBinding", "ResolveThisBinding()", "Response", "ResponseInit", "ResponseType", + "RestrictionTarget", + "RevalidateAtomicAccess", + "RevalidateAtomicAccess(typedArray, byteIndexInBuffer)", "RotationMatrixType", + "RoundMVResult", "RoundMVResult(n)", + "RouterCondition", + "RouterRule", + "RouterSource", + "RouterSourceDict", + "RouterSourceEnum", "RsaHashedImportParams", "RsaHashedKeyAlgorithm", "RsaHashedKeyGenParams", @@ -3251,6 +4014,8 @@ "RsaOaepParams", "RsaOtherPrimesInfo", "RsaPssParams", + "RunFunctionForSharedStorageSelectURLOperation", + "RunningStatus", "RuntimeError", "SFrameTransform", "SFrameTransformErrorEvent", @@ -3360,27 +4125,40 @@ "SVGViewElement", "SVGZoomAndPan", "SameObject", + "SameSiteCookiesType", + "SameValue", "SameValue(x, y)", + "SameValueNonNumber", "SameValueNonNumber(x, y)", + "SameValueZero", "SameValueZero(x, y)", "SandboxProxy", "SandboxWindowProxy", "Sanitizer", + "SanitizerAttribute", + "SanitizerAttributeNamespace", "SanitizerConfig", + "SanitizerElement", + "SanitizerElementNamespace", + "SanitizerElementNamespaceWithAttributes", + "SanitizerElementWithAttributes", "SaveFilePickerOptions", "Scheduler", "SchedulerPostTaskCallback", "SchedulerPostTaskOptions", "Scheduling", + "ScoreAdOutput", + "ScoringBrowserSignals", "Screen", "ScreenDetailed", "ScreenDetails", "ScreenIdleState", "ScreenOrientation", + "ScriptEvaluation", "ScriptEvaluation(scriptRecord)", + "ScriptInvokerType", "ScriptProcessorNode", - "ScriptString", - "ScriptURLString", + "ScriptWindowAttribution", "ScriptingPolicyReportBody", "ScriptingPolicyViolationType", "ScrollAxis", @@ -3393,12 +4171,15 @@ "ScrollTimeline", "ScrollTimelineOptions", "ScrollToOptions", + "SecFromTime", + "SecFromTime(t)", "SecureContext", "SecurePaymentConfirmationRequest", "SecurityError", "SecurityPolicyViolationEvent", "SecurityPolicyViolationEventDisposition", "SecurityPolicyViolationEventInit", + "SelectSettings", "Selection", "SelectionMode", "SelfCapturePreferenceEnum", @@ -3416,8 +4197,11 @@ "SerialPortInfo", "SerialPortRequestOptions", "Serializable", + "SerializeJSONArray", "SerializeJSONArray(state, value)", + "SerializeJSONObject", "SerializeJSONObject(state, value)", + "SerializeJSONProperty", "SerializeJSONProperty(state, key, holder)", "ServiceEventHandlers", "ServiceWorker", @@ -3428,14 +4212,26 @@ "ServiceWorkerUpdateViaCache", "Set", "Set(O, P, V, Throw)", + "SetDataHas", + "SetDataHas(setData, value)", + "SetDataIndex", + "SetDataIndex(setData, value)", + "SetDataSize", + "SetDataSize(setData)", + "SetDefaultGlobalBindings", "SetDefaultGlobalBindings(realmRec)", + "SetFunctionLength", "SetFunctionLength(F, length)", + "SetFunctionName", "SetFunctionName(F, name, prefix)", "SetHTMLOptions", + "SetImmutablePrototype", "SetImmutablePrototype(O, V)", + "SetIntegrityLevel", "SetIntegrityLevel(O, level)", - "SetRealmGlobalObject(realmRec, globalObj, thisValue)", + "SetTypedArrayFromArrayLike", "SetTypedArrayFromArrayLike(target, targetOffset, source)", + "SetTypedArrayFromTypedArray", "SetTypedArrayFromTypedArray(target, targetOffset, source)", "SetUpCrossRealmTransformReadable", "SetUpCrossRealmTransformWritable", @@ -3450,7 +4246,9 @@ "SetUpWritableStreamDefaultController", "SetUpWritableStreamDefaultControllerFromUnderlyingSink", "SetUpWritableStreamDefaultWriter", + "SetValueInBuffer", "SetValueInBuffer(arrayBuffer, byteIndex, type, value, isTypedArray, order, isLittleEndian)", + "SetViewValue", "SetViewValue(view, requestIndex, isLittleEndian, type, value)", "Settings", "ShadowAnimation", @@ -3459,20 +4257,59 @@ "ShadowRootMode", "ShareData", "SharedArrayBuffer", + "SharedDataBlockEventSet", "SharedDataBlockEventSet(execution)", + "SharedStorage", + "SharedStorageDataOrigin", + "SharedStoragePrivateAggregationConfig", + "SharedStorageResponse", + "SharedStorageRunOperationMethodOptions", + "SharedStorageSetMethodOptions", + "SharedStorageUrlWithMetadata", + "SharedStorageWorklet", + "SharedStorageWorkletGlobalScope", + "SharedStorageWorkletOptions", "SharedWorker", "SharedWorkerGlobalScope", + "SharedWorkerOptions", "Should Trusted Type policy creation be blocked by Content Security Policy?", "Should request be allowed to use feature?", "Should sink type mismatch violation be blocked by Content Security Policy?", "SlotAssignmentMode", "Slottable", "SmallCryptoKeyID", - "SortIndexedProperties(obj, len, SortCompare)", + "SmartCardAccessMode", + "SmartCardConnectOptions", + "SmartCardConnectResult", + "SmartCardConnection", + "SmartCardConnectionState", + "SmartCardConnectionStatus", + "SmartCardContext", + "SmartCardDisposition", + "SmartCardError", + "SmartCardErrorOptions", + "SmartCardGetStatusChangeOptions", + "SmartCardProtocol", + "SmartCardReaderStateFlagsIn", + "SmartCardReaderStateFlagsOut", + "SmartCardReaderStateIn", + "SmartCardReaderStateOut", + "SmartCardResourceManager", + "SmartCardResponseCode", + "SmartCardTransactionCallback", + "SmartCardTransactionOptions", + "SmartCardTransmitOptions", + "SnapEvent", + "SnapEventInit", + "SocketDnsQueryType", + "SoftNavigationEntry", + "SortIndexedProperties", + "SortIndexedProperties(obj, len, SortCompare, holes)", "SourceBuffer", "SourceBufferList", "SpatialNavigationDirection", "SpatialNavigationSearchOptions", + "SpeciesConstructor", "SpeciesConstructor(O, defaultConstructor)", "SpeechGrammar", "SpeechGrammarList", @@ -3494,6 +4331,7 @@ "SpeechSynthesisUtterance", "SpeechSynthesisVoice", "StartInDirectory", + "StartViewTransitionOptions", "StatefulAnimator", "StatelessAnimator", "StaticRange", @@ -3501,6 +4339,11 @@ "StereoPannerNode", "StereoPannerOptions", "Storage", + "StorageAccessHandle", + "StorageAccessTypes", + "StorageBucket", + "StorageBucketManager", + "StorageBucketOptions", "StorageEstimate", "StorageEvent", "StorageEventInit", @@ -3508,12 +4351,21 @@ "Store a Credential", "StreamPipeOptions", "String", - "StringContext", + "StringCreate", "StringCreate(value, prototype)", + "StringGetOwnProperty", "StringGetOwnProperty(S, P)", + "StringIndexOf", "StringIndexOf(string, searchValue, fromIndex)", - "StringPad(O, maxLength, fillString, placement)", + "StringLastIndexOf", + "StringLastIndexOf(string, searchValue, fromIndex)", + "StringPad", + "StringPad(S, maxLength, fillString, placement)", + "StringPaddingBuiltinsImpl", + "StringPaddingBuiltinsImpl(O, maxLength, fillString, placement)", + "StringToBigInt", "StringToBigInt(str)", + "StringToNumber", "StringToNumber(str)", "StructuredClone", "StructuredDeserialize", @@ -3531,15 +4383,25 @@ "SubmitEventInit", "SubtleCrypto", "SurfaceSwitchingPreferenceEnum", - "SuspendAgent(WL, W, minimumTimeout)", + "SuspendThisAgent", + "SuspendThisAgent(WL, waiterRecord)", "SvcOutputMetadata", "Symbol", + "SymbolDescriptiveString", "SymbolDescriptiveString(sym)", "SyncEvent", "SyncEventInit", "SyncManager", "SyntaxError", "SystemAudioPreferenceEnum", + "SystemTimeZoneIdentifier", + "SystemTimeZoneIdentifier()", + "TCPServerSocket", + "TCPServerSocketOpenInfo", + "TCPServerSocketOptions", + "TCPSocket", + "TCPSocketOpenInfo", + "TCPSocketOptions", "Table", "TableDescriptor", "TableKind", @@ -3550,6 +4412,8 @@ "TaskPriorityChangeEvent", "TaskPriorityChangeEventInit", "TaskSignal", + "TaskSignalAnyInit", + "TestIntegrityLevel", "TestIntegrityLevel(O, level)", "TestUtils", "Text", @@ -3564,6 +4428,7 @@ "TextEncoderCommon", "TextEncoderEncodeIntoResult", "TextEncoderStream", + "TextEvent", "TextFormat", "TextFormatInit", "TextFormatUpdateEvent", @@ -3577,31 +4442,83 @@ "TextTrackMode", "TextUpdateEvent", "TextUpdateEventInit", + "ThisBigIntValue", + "ThisBigIntValue(value)", + "ThisBooleanValue", + "ThisBooleanValue(value)", + "ThisNumberValue", + "ThisNumberValue(value)", + "ThisStringValue", + "ThisStringValue(value)", + "ThisSymbolValue", + "ThisSymbolValue(value)", + "ThrowCompletion", "ThrowCompletion(value)", + "TimeClip", "TimeClip(time)", + "TimeFromYear", + "TimeFromYear(y)", "TimeRanges", + "TimeString", "TimeString(tv)", + "TimeWithinDay", + "TimeWithinDay(t)", + "TimeZoneString", "TimeZoneString(tv)", + "TimelineRangeOffset", "TimeoutError", "TimerHandler", + "ToBigInt", "ToBigInt(argument)", + "ToBigInt64", + "ToBigInt64(argument)", + "ToBigUint64", + "ToBigUint64(argument)", + "ToBoolean", "ToBoolean(argument)", + "ToDateString", "ToDateString(tv)", + "ToIndex", "ToIndex(value)", + "ToInt16", + "ToInt16(argument)", + "ToInt32", + "ToInt32(argument)", + "ToInt8", + "ToInt8(argument)", + "ToIntegerOrInfinity", "ToIntegerOrInfinity(argument)", + "ToLength", "ToLength(argument)", + "ToNumber", "ToNumber(argument)", + "ToNumeric", "ToNumeric(value)", + "ToObject", "ToObject(argument)", + "ToPrimitive", "ToPrimitive(input, preferredType)", + "ToPropertyDescriptor", "ToPropertyDescriptor(Obj)", + "ToPropertyKey", "ToPropertyKey(argument)", + "ToString", "ToString(argument)", + "ToUint16", + "ToUint16(argument)", + "ToUint32", + "ToUint32(argument)", + "ToUint8", + "ToUint8(argument)", + "ToUint8Clamp", + "ToUint8Clamp(argument)", + "ToZeroPaddedDecimalString", "ToZeroPaddedDecimalString(n, minLength)", "ToggleEvent", "ToggleEventInit", "TokenBinding", "TokenBindingStatus", + "TokenVersion", "TopLevelStorageAccessPermissionDescriptor", "Touch", "TouchEvent", @@ -3627,18 +4544,23 @@ "TransformStreamDefaultSinkAbortAlgorithm", "TransformStreamDefaultSinkCloseAlgorithm", "TransformStreamDefaultSinkWriteAlgorithm", + "TransformStreamDefaultSourceCancelAlgorithm", "TransformStreamDefaultSourcePullAlgorithm", "TransformStreamError", "TransformStreamErrorWritableAndUnblockWrite", "TransformStreamSetBackpressure", + "TransformStreamUnblockWrite", "Transformer", + "TransformerCancelCallback", "TransformerFlushCallback", "TransformerStartCallback", "TransformerTransformCallback", "TransitionEvent", "TransitionEventInit", "TreeWalker", + "TriggerPromiseReactions", "TriggerPromiseReactions(reactions, argument)", + "TrimString", "TrimString(string, where)", "TrustedHTML", "TrustedScript", @@ -3651,12 +4573,32 @@ "TypeInfo", "TypeMismatchError", "TypedArray", - "TypedArrayCreate(constructor, argumentList)", + "TypedArrayByteLength", + "TypedArrayByteLength(taRecord)", + "TypedArrayCreate", + "TypedArrayCreate(prototype)", + "TypedArrayCreateFromConstructor", + "TypedArrayCreateFromConstructor(constructor, argumentList)", + "TypedArrayCreateSameType", + "TypedArrayCreateSameType(exemplar, argumentList)", + "TypedArrayElementSize", "TypedArrayElementSize(O)", + "TypedArrayElementType", "TypedArrayElementType(O)", + "TypedArrayGetElement", + "TypedArrayGetElement(O, index)", + "TypedArrayLength", + "TypedArrayLength(taRecord)", + "TypedArraySetElement", + "TypedArraySetElement(O, index, value)", + "TypedArraySpeciesCreate", "TypedArraySpeciesCreate(exemplar, argumentList)", "UADataValues", "UALowEntropyJSON", + "UDPMessage", + "UDPSocket", + "UDPSocketOpenInfo", + "UDPSocketOptions", "UIEvent", "UIEventInit", "ULongRange", @@ -3664,6 +4606,7 @@ "URL", "URLMismatchError", "URLPattern", + "URLPatternCompatible", "URLPatternComponentResult", "URLPatternInit", "URLPatternInput", @@ -3672,6 +4615,7 @@ "URLSearchParams", "USB", "USBAlternateInterface", + "USBBlocklistEntry", "USBConfiguration", "USBConnectionEvent", "USBConnectionEventInit", @@ -3696,6 +4640,7 @@ "USBRequestType", "USBTransferStatus", "USVString", + "UTC", "UTC(t)", "UUID", "Uint16Array", @@ -3703,7 +4648,8 @@ "Uint8Array", "Uint8ClampedArray", "UncalibratedMagnetometer", - "UncalibratedMagnetometerReadingValues", + "UnderlineStyle", + "UnderlineThickness", "UnderlyingSink", "UnderlyingSinkAbortCallback", "UnderlyingSinkCloseCallback", @@ -3713,14 +4659,18 @@ "UnderlyingSourceCancelCallback", "UnderlyingSourcePullCallback", "UnderlyingSourceStartCallback", + "UnicodeEscape", "UnicodeEscape(C)", - "UnicodeMatchProperty(p)", + "UnicodeMatchProperty", + "UnicodeMatchProperty(rer, p)", + "UnicodeMatchPropertyValue", "UnicodeMatchPropertyValue(p, v)", "UnknownError", "Unscopable", "UpdateCallback", - "UpdateDOMCallback", + "UpdateEmpty", "UpdateEmpty(completionRecord, value)", + "UrnOrConfig", "UserActivation", "UserDataHandler", "UserIdleState", @@ -3732,18 +4682,27 @@ "Validate encoder bind groups", "Validate texture format required features", "Validate the encoder state", + "Validate timestampWrites", + "ValidateAndApplyPropertyDescriptor", "ValidateAndApplyPropertyDescriptor(O, P, extensible, Desc, current)", "ValidateAssertionCallback", - "ValidateAtomicAccess(typedArray, requestIndex)", + "ValidateAtomicAccess", + "ValidateAtomicAccess(taRecord, requestIndex)", + "ValidateAtomicAccessOnIntegerTypedArray", + "ValidateAtomicAccessOnIntegerTypedArray(typedArray, requestIndex, waitable)", + "ValidateIntegerTypedArray", "ValidateIntegerTypedArray(typedArray, waitable)", + "ValidateNonRevokedProxy", "ValidateNonRevokedProxy(proxy)", - "ValidateTypedArray(O)", + "ValidateTypedArray", + "ValidateTypedArray(O, order)", "Validating GPUFragmentState's color attachment bytes per sample", "Validating GPURenderPassDescriptor's color attachment bytes per sample", "ValidityState", "ValidityStateFlags", "ValueEvent", "ValueEventInit", + "ValueOfReadEvent", "ValueOfReadEvent(execution, R)", "ValueType", "VersionError", @@ -3757,8 +4716,13 @@ "VideoDecoderInit", "VideoDecoderSupport", "VideoEncoder", + "VideoEncoderBitrateMode", "VideoEncoderConfig", "VideoEncoderEncodeOptions", + "VideoEncoderEncodeOptionsForAv1", + "VideoEncoderEncodeOptionsForAvc", + "VideoEncoderEncodeOptionsForHevc", + "VideoEncoderEncodeOptionsForVp9", "VideoEncoderInit", "VideoEncoderSupport", "VideoFacingModeEnum", @@ -3781,9 +4745,15 @@ "ViewTimeline", "ViewTimelineOptions", "ViewTransition", + "ViewTransitionNavigation", + "ViewTransitionTypeSet", + "ViewTransitionUpdateCallback", + "Viewport", "VirtualKeyboard", + "VisibilityStateEntry", "VisualViewport", "VoidFunction", + "WGSLLanguageFeatures", "WakeLock", "WakeLockSentinel", "WakeLockType", @@ -3792,6 +4762,7 @@ "WaveShaperOptions", "WeakMap", "WeakRef", + "WeakRefDeref", "WeakRefDeref(weakRef)", "WeakSet", "WebAssembly", @@ -3825,22 +4796,24 @@ "WebTransportBidirectionalStream", "WebTransportCloseInfo", "WebTransportCongestionControl", + "WebTransportConnectionStats", "WebTransportDatagramDuplexStream", "WebTransportDatagramStats", "WebTransportError", - "WebTransportErrorInit", "WebTransportErrorOptions", "WebTransportErrorSource", "WebTransportHash", "WebTransportOptions", - "WebTransportRateControlFeedback", "WebTransportReceiveStream", "WebTransportReceiveStreamStats", "WebTransportReliabilityMode", + "WebTransportSendGroup", "WebTransportSendStream", "WebTransportSendStreamOptions", "WebTransportSendStreamStats", - "WebTransportStats", + "WebTransportWriter", + "WeekDay", + "WeekDay(t)", "WellKnownDirectory", "WheelEvent", "WheelEventInit", @@ -3855,6 +4828,7 @@ "WindowPostMessageOptions", "WindowProxy", "WindowSessionStorage", + "WordCharacters", "WordCharacters(rer)", "Worker", "WorkerGlobalScope", @@ -3965,6 +4939,7 @@ "XRLayerEventInit", "XRLayerInit", "XRLayerLayout", + "XRLayerQuality", "XRLightEstimate", "XRLightProbe", "XRLightProbeInit", @@ -3973,8 +4948,18 @@ "XRMediaEquirectLayerInit", "XRMediaLayerInit", "XRMediaQuadLayerInit", + "XRMesh", + "XRMeshBlock", + "XRMeshQuality", + "XRMeshSet", + "XRMetadata", + "XRNearMesh", + "XRNearMeshFeature", "XRPermissionDescriptor", "XRPermissionStatus", + "XRPlane", + "XRPlaneOrientation", + "XRPlaneSet", "XRPose", "XRProjectionLayer", "XRProjectionLayerInit", @@ -4014,74 +4999,14 @@ "XRWebGLLayerInit", "XRWebGLRenderingContext", "XRWebGLSubImage", + "XRWorldMesh", + "XRWorldMeshFeature", "XSLTProcessor", + "YearFromTime", + "YearFromTime(t)", + "Yield", "Yield(value)", "[DelayWhilePrerendering]", - "[[AssociatedMediaStreamIds]]", - "[[AssociatedRemoteMediaStreams]]", - "[[BufferedAmount]]", - "[[Certificate]]", - "[[Configuration]]", - "[[CurrentDirection]]", - "[[CurrentLocalDescription]]", - "[[CurrentRemoteDescription]]", - "[[DataChannelId]]", - "[[DataChannelLabel]]", - "[[DataChannelProtocol]]", - "[[Direction]]", - "[[DocumentOrigin]]", - "[[DtlsTransportState]]", - "[[Dtmf]]", - "[[Duration]]", - "[[EarlyCandidates]]", - "[[FiredDirection]]", - "[[IceGathererState]]", - "[[IceRole]]", - "[[IceTransportState]]", - "[[InterToneGap]]", - "[[IsClosed]]", - "[[JsepMid]]", - "[[KeyingMaterialHandle]]", - "[[LastCreatedAnswer]]", - "[[LastCreatedOffer]]", - "[[LastReturnedParameters]]", - "[[LastStableStateAssociatedRemoteMediaStreams]]", - "[[LastStableStateReceiveCodecs]]", - "[[LastStableStateReceiverTransport]]", - "[[LastStableStateSenderTransport]]", - "[[LocalIceCredentialsToReplace]]", - "[[MaxChannels]]", - "[[MaxMessageSize]]", - "[[MaxPacketLifeTime]]", - "[[MaxRetransmits]]", - "[[Mid]]", - "[[Negotiated]]", - "[[NegotiationNeeded]]", - "[[Operations]]", - "[[Ordered]]", - "[[Origin]]", - "[[PendingLocalDescription]]", - "[[PendingRemoteDescription]]", - "[[PreferredCodecs]]", - "[[ReadyState]]", - "[[ReceiveCodecs]]", - "[[ReceiverTrack]]", - "[[ReceiverTransport]]", - "[[Receiver]]", - "[[Receptive]]", - "[[RemoteCertificates]]", - "[[SctpTransportState]]", - "[[SctpTransport]]", - "[[SelectedCandidatePair]]", - "[[SendCodecs]]", - "[[SendEncodings]]", - "[[SenderTrack]]", - "[[SenderTransport]]", - "[[Sender]]", - "[[Stopped]]", - "[[Stopping]]", - "[[ToneBuffer]]", - "[[UpdateNegotiationNeededFlagOnEmptyChain]]", "[[codec implementation]]", "[[codec work queue]]", "[[constrainedbitspersecond]]", @@ -4091,6 +5016,8 @@ "[[datachannelpriority]]", "[[defaultproperties]]", "[[message queue blocked]]", + "[[videokeyframeintervalcount]]", + "[[videokeyframeintervalduration]]", "[[window]]", "_charset_", "`sec-purpose`", @@ -4122,8 +5049,10 @@ "ab note", "abbr", "abjad", + "able to retrieve and buffer data in an efficient way", "abnf", "abort", + "abort a document and its descendants", "abort a parser", "abort a pending make read-only operation", "abort a pending write operation", @@ -4132,8 +5061,10 @@ "abort a writable stream", "abort all active watchadvertisements", "abort an upgrade transaction", + "abort controller", "abort the fetch() call", "abort the image request", + "abort the ongoing navigation", "abort the request", "abort the running script", "abort the update", @@ -4141,6 +5072,7 @@ "abort watchadvertisements", "abort when", "aborted network error", + "about base url", "about-to-be-notified rejected promises list", "about:blank", "about:html-kind", @@ -4151,13 +5083,18 @@ "abrupt-doctype-system-identifier", "abs()", "absence-of-digits-in-numeric-character-reference", + "absolute color", "absolute length", "absolute length unit", + "absolute orientation", + "absolute orientation sensor", "absolute path", "absolute position", "absolute positioning containing block", "absolute positioning layout", "absolute positioning layout model", + "absolute-orientation virtual sensor type", + "absolute-position containing block", "absolute-url", "absolute-url record", "absolute-url string", @@ -4168,28 +5105,29 @@ "absolutely-positioned", "abstract dimensions", "abstract numeric types", + "abstract operation hostresizearraybuffer", "abstractfloat", "abstractint", + "abugida", "ac", "ac appeal", "ac representative", "ac review", "acceleration", + "acceleration with gravity", "accelerometer", - "accent", + "accelerometer virtual sensor type", "accent color", "accent-color", "accentbaseheight", - "accentunder", "accept", "accept alert", - "accept and notify state", + "accept insecure tls", "accept insecure tls certificates", - "accept state", "accept-ch cache", - "accept-language", "acceptable anchor element", "accepted", + "accepted @position-try properties", "accepting", "accepts", "access key", @@ -4206,7 +5144,12 @@ "access-control-request-private-network", "accessibility api", "accessibility apis", + "accessibility child", + "accessibility children", "accessibility considerations", + "accessibility descendant", + "accessibility descendants", + "accessibility parent", "accessibility subtree", "accessibility tree", "accessible description", @@ -4217,7 +5160,7 @@ "accessor is openee", "accessor is opener", "accessor-accessed relationship", - "accountstate", + "accounts endpoint", "accumulated 3d transformation matrix", "accumulation for one-based values", "accumulation procedure", @@ -4242,20 +5185,24 @@ "actions", "actions options", "actions queue", - "actiontype", "activate", "activate a content index entry", + "activate a navigable", "activate a portal browsing context", "activate a sensor object", "activate an event handler", + "activate data collection", "activate history entry", + "activate view transition", "activated reader objects", "activated sensor objects", + "activation", "activation behavior", "activation notification", "activation trigger", "activation triggering input event", "active", + "active (pseudo-class)", "active bidi sessions", "active buffer mapping", "active buttons state", @@ -4264,12 +5211,13 @@ "active credential types", "active document", "active duration", + "active editcontext", "active element", "active fingerprinting", "active flag", "active flag was set when the script started", - "active frame element", "active graph", + "active http sessions", "active immersive session", "active interval", "active listeners", @@ -4287,8 +5235,8 @@ "active reader", "active render state", "active replace state", + "active scanning", "active script", - "active session", "active session history entry", "active sessions", "active shadow tree", @@ -4296,6 +5244,8 @@ "active speculative html parser", "active subject", "active time", + "active time space", + "active timeline", "active touch point", "active track buffers", "active user consent", @@ -4312,34 +5262,45 @@ "actual values", "actual viewport", "actually disabled", + "ad descriptor", + "ad keyword replacement", + "ad size", "ad structure", + "ad-auction-additional-bid", + "ad-auction-allow-trusted-scoring-signals-from", + "ad-auction-allowed", + "ad-auction-signals", "adapter", "add", "add a css style sheet", + "add a flag", "add a part", "add a performanceresourcetiming entry", + "add a platform contribution", "add a token", "add a token with default length", "add a token with default position and length", "add a track", "add a vcard line", + "add an element to the top layer", "add an event listener", "add an icalendar line", "add an input source", + "add an upcoming traverse api method tracker", "add cookie", "add credential", + "add default values", "add device to storage", - "add mock camera", - "add mock microphone", "add or put", "add the track", - "add two types", + "add to the top layer", "add value", "add virtual authenticator", "add-ons", "added modules list", "adding a cookie", "addition procedure", + "additional bids", "additional capability deserialization algorithm", "additional webdriver capabilities", "additional webdriver capability", @@ -4359,10 +5320,12 @@ "adequate implementation experience", "adjoining", "adjoining margins", + "adjust bid list based on k-anonymity", "adjust foreign attributes", "adjust mathml attributes", "adjust svg attributes", "adjusted current node", + "adjusted pressure state", "adjustedradicalkernafterdegree", "adjustedradicalkernbeforedegree", "administratively prohibited", @@ -4391,6 +5354,8 @@ "aeskeyalgorithm", "aeskeygenparams", "affected by a base url change", + "affected range", + "after", "after after body", "after after frameset", "after attribute name state", @@ -4415,21 +5380,29 @@ "agent-info-response", "agent-status-request", "agent-status-response", + "aggregatable attribution report", + "aggregatable attribution report cache", "aggregatable contribution", + "aggregatable debug rate-limit cache", + "aggregatable debug rate-limit record", + "aggregatable debug rate-limit window", + "aggregatable debug report", + "aggregatable debug reporting config", "aggregatable dedup key", + "aggregatable key value", "aggregatable report", "aggregatable report cache", + "aggregatable source registration time configuration", "aggregatable trigger data", + "aggregatable values configuration", + "aggregatable-debug-reporting json key", "aggregation coordinator", - "agreement", - "agreements", - "alert", + "aggregation coordinator map", "alert steps", "algorithm", "algorithm for assigning header cells", "algorithm for determining the form of an embellished operator", "algorithm for determining the properties of an embellished operator", - "algorithm for determining the properties of an embellished operator tests: 1 mo-single-char-and-children ,,,", "algorithm for ending a row group", "algorithm for extracting a character encoding from a meta element", "algorithm for growing downward-growing cells", @@ -4440,14 +5413,12 @@ "algorithm normalization", "algorithm queue", "algorithm set", - "algorithm to close a midiport", "algorithm to convert a date object to a string", "algorithm to convert a number to a string", "algorithm to convert a string to a date object", "algorithm to convert a string to a number", "algorithm to determine the category of an operator", "algorithm to open a midiport", - "algorithm to request midi access", "algorithm to set the properties of an operator from its category", "algorithm_cached", "algorithmidentifier", @@ -4457,7 +5428,6 @@ "align-content", "align-items", "align-self", - "align-tracks", "aligned", "aligned subtree", "alignment", @@ -4471,6 +5441,7 @@ "alignofmember", "all", "all associated cookies", + "all fetch listeners are empty", "allocate color textures", "allocate color textures for projection layers", "allocate depth textures", @@ -4478,20 +5449,22 @@ "allocate motion vector textures for projection layers", "allocate the color textures for the secondary views", "allocate the depth textures for the secondary views", - "allow comments option", "allow new features", + "allow-cross-origin-event-reporting", "allow-csp-from", + "allow-fenced-frame-automatic-beacons", "allow-list", "allow-list-value", "allowed aggregatable budget per source", + "allowed aggregation coordinator set", "allowed buffer usages", "allowed by sandboxing to navigate", "allowed in the body", + "allowed number of groups", "allowed public key algorithms", "allowed required constraints for device selection", "allowed signed exchange link info", "allowed texture usages", - "allowed to download", "allowed to modify the clipboard", "allowed to navigate", "allowed to play", @@ -4504,7 +5477,9 @@ "allowlists", "allowpost", "allows adding render-blocking elements", + "allows auto-sizes", "allows downloading", + "alltypes", "alpha", "alpha channel", "alpha compaction", @@ -4513,11 +5488,13 @@ "alpha table", "alpha-blend environment blending", "alpha-to-coverage mask", + "alphabet", "alphabetic baseline", "alphanumeric section", "already constructed marker", "already started", "alt ac rep", + "alt flag", "alternate", "alternate ac representative", "alternate advisory committee representative", @@ -4526,15 +5503,16 @@ "alternate signed exchange link info", "alternate signed exchange preload info", "alternative", + "altgraph flag", "alwaysuv feature is disabled", "alwaysuv feature is enabled", "ambient light reading quantization algorithm", "ambient light sensor", "ambient light threshold check algorithm", + "ambient-light virtual sensor type", "ambient-light-sensor", "ambiguous ampersand", "ambiguous ampersand state", - "an early error result", "an end time", "an exception was thrown", "an identifier", @@ -4553,16 +5531,16 @@ "ancestor-source-list", "anchor", "anchor element", - "anchor function", + "anchor functions", "anchor name", "anchor node selection algorithm", "anchor point", - "anchor query", + "anchor positioning", + "anchor specifier", "anchor unit", "anchor()", - "anchor-default", "anchor-name", - "anchor-scroll", + "anchor-scope", "anchor-size()", "anchors", "ancillary chunk", @@ -4574,11 +5552,13 @@ "animate function", "animated image", "animated image document", + "animated png", "animatemotion", "animatetransform", "animation", "animation addition attributes", "animation animator name", + "animation attachment range", "animation class", "animation composite order", "animation direction", @@ -4589,6 +5569,7 @@ "animation events", "animation frame", "animation frame callback identifier", + "animation model", "animation origin", "animation playback events", "animation property name to idl attribute name", @@ -4601,8 +5582,6 @@ "animation worklet", "animation-composition", "animation-delay", - "animation-delay-end", - "animation-delay-start", "animation-direction", "animation-duration", "animation-fill-mode", @@ -4615,7 +5594,6 @@ "animation-tainted", "animation-timeline", "animation-timing-function", - "animationevent()", "animator", "animator current time", "animator definition", @@ -4628,12 +5606,17 @@ "animator serialized options", "animator timeline", "anniversary", + "annotated asset id", + "annotated location", "annotated types", "annotated unexpected alert open error", "annotation", "annotation box", "annotation level", + "annotation syntax", + "annotation-syntax", "annotation-xml", + "announce an RTCDataChannel as open", "announce an rtcdatachannel as open", "announce the connection", "announce the rtcdatachannel as open", @@ -4651,8 +5634,10 @@ "any role", "anystring", "anyuri", + "api url parser", "api value", - "apng", + "app-assisted individualization", + "app-region", "app_id", "appeal", "appearance", @@ -4660,11 +5645,18 @@ "append", "append a request `origin` header", "append an attribute", + "append an entry to the contribution cache", "append client hints to request", "append error", + "append or modify a request `sec-browsing-topics` header", + "append or modify a sec-shared-storage-writable request header", + "append private state token issue request headers", + "append private state token redemption record headers", + "append private state token redemption request headers", "append session history synchronous navigation steps", "append session history traversal steps", "append the Fetch metadata headers for a request", + "append to a bidding signals per-interest group data map", "append to an event path", "append window", "appid", @@ -4697,21 +5689,30 @@ "applies to", "apply", "apply a default", + "apply a position option", + "apply any component ads target to a bid", "apply any pending playback rate", + "apply interest groups limits to prioritized list", "apply link options from parsed header attributes", "apply orientation lock", - "apply pending history changes", + "apply rappor noise", + "apply request modifiers from url value", + "apply scroll margin to a scrollport", + "apply source location", "apply the history step", "apply the nominal frame rate", "apply the pending render state", "apply the percent hint", + "apply the push/replace history step", + "apply the reload history step", + "apply the traverse history step", "apply to", "apply webvtt cue settings", - "applyconstraints algorithm", "applyconstraints template method", "applying", "applying a blackman window", "applying a fourier transform", + "applying the restriction transformation", "appropriate end tag token", "appropriate network error", "appropriate place for inserting a node", @@ -4719,6 +5720,8 @@ "appworkspace", "aqua", "aquamarine", + "arbitrary substitution", + "arbitrary substitution function", "archive mime type", "archive type pattern matching algorithm", "arcs linejoin", @@ -4731,15 +5734,13 @@ "aria-*", "ariamixin getter steps", "ariamixin setter steps", + "armenian", "array", "array key", "array layer", "array layer count", - "array size", "arraybuffer", "arraybufferview", - "arrayed texture", - "arrayof", "arrow pad", "art direction", "article", @@ -4782,8 +5783,11 @@ "assemblyglyphcount", "assembysize", "assert", + "asserted", + "asserted triple", "assertion", "assertion signature", + "assertionmethod", "assign a slot", "assign slottables", "assign slottables for a tree", @@ -4796,9 +5800,10 @@ "associable", "associable by an entity", "associable by the application", + "associable value", "associate animator instance of worklet animation", + "associate the issuer", "associated", - "associated animation of an animation effect", "associated background image requests", "associated baseaudiocontext", "associated bone", @@ -4811,21 +5816,22 @@ "associated image request", "associated inert template document", "associated interface", + "associated mediadevices", "associated navigator", "associated node", "associated offscreencanvas object", "associated option object", "associated realm", "associated screenorientation", - "associated sensors", "associated session", + "associated storage partition", "associated store", + "associated user context", "associated useractivation", "associated video element", "associated with a timeline", "associated with an animation", "associated with connection", - "association steps", "async", "async pipeline creation", "asynchronous iterator initialization steps", @@ -4835,6 +5841,7 @@ "asynchronous waits", "asynchronously compile a webassembly module", "asynchronously execute a request", + "asynchronously finish reporting", "asynchronously instantiate a webassembly module", "asynchronously iterable declaration", "asynchronously wait", @@ -4851,22 +5858,30 @@ "atomic initial letter box", "atomic inline", "atomic inline box", + "atomic inline-level box", "atomic inline-level boxes", "atomic modification", "atomic type", "atomically", "att bearer", "attach", + "attach a shadow root", "attach a webvtt internal node object", "attached", "attached internals", "attaching to a media element", "attca", "attempt to create a non-fetch scheme document", + "attempt to decrypt", "attempt to deliver a debug report", "attempt to deliver a report", "attempt to deliver a verbose debug report", + "attempt to deliver an aggregatable debug report", + "attempt to disconnect", "attempt to populate the history entry's document", + "attempt to queue reports for sending", + "attempt to resume playback if necessary", + "attempt to send an automatic beacon", "attempting to access the depth buffer", "attestation", "attestation ca", @@ -4883,31 +5898,25 @@ "attestation trust path", "attestation type", "attested credential data", - "attestedcredentialdata", "attr localname", "attr()", + "attr-iframe-credentialless", "attr.localname", "attr.namespaceuri", "attr.prefix", "attr.value", "attribute", - "attribute allow list", "attribute caching", "attribute change steps", - "attribute drop list", "attribute getter", "attribute handle", - "attribute kind", "attribute list", - "attribute match list", - "attribute matches an attribute match list", "attribute name state", "attribute names", "attribute node selector", "attribute selector", "attribute setter", "attribute type", - "attribute validation steps", "attribute value (double-quoted) state", "attribute value (single-quoted) state", "attribute value (unquoted) state", @@ -4918,18 +5927,24 @@ "attributes for form submission", "attribution", "attribution caches", - "attribution debug data", - "attribution debug report", + "attribution debug info", "attribution destination website", "attribution rate-limit cache", "attribution rate-limit record", "attribution rate-limit window", "attribution report", + "attribution reporting eligibility", + "attribution scopes", "attribution source", "attribution source cache", "attribution source id", "attribution trigger", - "attribution-reporting", + "attribution-reporting-eligible", + "attribution-reporting-support", + "auction", + "auction config", + "auction nonce", + "auction report info", "audience segmentation", "audio", "audio buffer underrun", @@ -4968,6 +5983,7 @@ "audioworkletnodeoptions", "audioworkletprocessor", "audit", + "auditory icon", "augmented certificate", "augmented grid", "aural box model", @@ -4975,10 +5991,7 @@ "auth-initiation-token", "auth-spake2-confirmation", "auth-spake2-handshake", - "auth-spake2-need-psk", "auth-status", - "authdataextensions", - "authenticating", "authentication", "authentication assertion", "authentication ceremony", @@ -5017,20 +6030,25 @@ "authorization gesture", "authorization server", "auto", - "auto popover list", - "auto state", - "auto-accept", + "auto (direction)", + "auto base direction", + "auto direction", + "auto directionality", + "auto paragraph direction", "auto-column", + "auto-directionality form-associated elements", "auto-hidden", "auto-hide", "auto-placement", "auto-placement cursor", - "auto-reject", + "auto-reauthenticated", "auto-releasing wake locks", "auto_design_width", + "autoaccept", "autocapitalization hints", "autocapitalize-inheriting elements", "autofill anchor mantle", + "autofill and credentialless iframe", "autofill detail tokens", "autofill expectation mantle", "autofill field", @@ -5044,7 +6062,6 @@ "autogaincontrol", "automated install prompt", "automatic", - "automatic anchor positioning", "automatic block size", "automatic column position", "automatic column span", @@ -5062,13 +6079,38 @@ "automatic span", "automation event time", "automation events", + "automation local testing mode", + "automation local testing mode enabled", "automation method", "autonomous custom element", "autoplay", + "autoreject", "auxclick", "auxiliary action", "auxiliary browsing context", "auxiliary input source", + "av1 alpha image item", + "av1 alpha image sequence", + "av1 auxiliary image item", + "av1 auxiliary image sequence", + "av1 depth image item", + "av1 depth image sequence", + "av1 image file format", + "av1 image item", + "av1 image item data", + "av1 image sequence", + "av1 item configuration property", + "av1 sample", + "av1c", + "av1codecconfigurationbox", + "av1f", + "av1forwardkeyframesamplegroupentry", + "av1layeredimageindexingproperty", + "av1metadatasamplegroupentry", + "av1multiframesamplegroupentry", + "av1s", + "av1sampleentry", + "av1switchframesamplegroupentry", "availability", "availability sources set", "available", @@ -5077,6 +6119,7 @@ "available grid space", "available height", "available inline space", + "available locales list", "available presentation display", "available presentation displays", "available space", @@ -5086,11 +6129,10 @@ "await a navigation", "await a stable state", "awaits", + "axis", "axis value", "axis-lock", "axisheight", - "axisinterval", - "axisspace", "azimuth", "azure", "b", @@ -5104,11 +6146,14 @@ "backface-visibility", "background", "background codec", + "background color", "background fetch", "background fetch click", "background fetch record", "background fetch response", "background fetch task source", + "background image", + "background image layer", "background painting area", "background positioning area", "background suitability", @@ -5125,9 +6170,16 @@ "background-position-x", "background-position-y", "background-repeat", + "background-repeat-block", + "background-repeat-inline", + "background-repeat-x", + "background-repeat-y", "background-size", + "background-tbd", "background_text_style", + "backgroundblur", "backing observable array exotic object", + "backing struct", "backpressure", "backslash escapes", "backup element queue", @@ -5151,6 +6203,7 @@ "base url change steps", "base-uri", "base64 encoding", + "base64 vlq", "base64-value", "base64url encoding", "baseaudiocontext", @@ -5158,9 +6211,7 @@ "baseline", "baseline alignment", "baseline alignment preference", - "baseline attribute allow list", "baseline content-alignment", - "baseline element allow list", "baseline of a cell", "baseline of a table-root", "baseline of the row", @@ -5172,7 +6223,6 @@ "baseline-shift", "baseline-source", "baseline-table", - "baselines", "basic", "basic attestation", "basic filtered response", @@ -5183,6 +6233,8 @@ "basic url parser", "batch attestation", "batch cache operations", + "batch or fetch trusted bidding signals", + "batching scope", "battery status task source", "bd_addr", "bday", @@ -5190,11 +6242,15 @@ "bdo", "be", "be directionally scrolled", + "bearer credential", + "bearer credentials", "bearing angle", "become browsing-context connected", "become browsing-context disconnected", "become disconnected", "becomes connected", + "becomes lost", + "before", "before attribute name state", "before attribute value state", "before doctype name state", @@ -5203,6 +6259,7 @@ "before flag", "before head", "before html", + "before request sent map", "before-active boundary time", "before-change style", "beforeinput", @@ -5225,25 +6282,34 @@ "between doctype public and system identifiers state", "between zero and b", "bfc", + "bfcache blocking details", "bgsound", "bi-orientational", "bi-orientational transform", "bias value", "biased fragment depth", - "biaxial", + "bicameral", + "bid debug reporting info", + "bid with currency", + "bidding script failure bucket", + "bidding signals per interest group data", "bidi", "bidi algorithm", "bidi flag", "bidi formatting characters", + "bidi isolate", "bidi isolation", "bidi paragraph", "bidi session", "bidi text", "bidi-isolate", "bidi-isolated", + "bidirectional isolate", "bidirectional text", "bidirectionality", "bidirectionality (bidi)", + "bidirectionally broadcastable", + "bidirectionally broadcasting", "big", "big5", "big5 decoder", @@ -5251,6 +6317,7 @@ "big5 lead", "bigint", "biginteger", + "billing address", "binary data byte", "binary object store", "binding edge", @@ -5263,7 +6330,8 @@ "biquadfilternode", "biquadfilteroptions", "bisque", - "bit depth", + "bit debit", + "bit pack", "bitmap", "bitmap data", "bitmap mode", @@ -5280,12 +6348,15 @@ "blankspace", "bleed area", "blend technique", + "blendable", + "blendable format", "blink", "blob", "blob url", "blob url entry", "blob url store", "block", + "block (unicode)", "block access", "block at-rule", "block axis", @@ -5296,6 +6367,7 @@ "block container", "block container box", "block dimension", + "block direction", "block elements", "block end", "block flow direction", @@ -5305,7 +6377,6 @@ "block offset", "block overflow ellipsis", "block rendering", - "block row", "block scripts", "block size", "block start", @@ -5318,6 +6389,7 @@ "block-level box", "block-level boxes", "block-level content", + "block-level element", "block-level elements", "block-size", "block-start", @@ -5327,10 +6399,12 @@ "block-step-round", "block-step-size", "blockable mixed content", + "blocked bluetooth service class uuid", "blocked by a blocklist rule", "blocked by a modal dialog", "blocked media element", "blocked report", + "blocked request map", "blocked-on-parser", "blockification", "blockify", @@ -5340,14 +6414,18 @@ "blocklisted", "blocklisted for reads", "blocklisted for writes", + "blocklisted manufacturer data", + "blocklisted manufacturer data filter", "blockquote", "blue", "bluetooth device", "bluetooth device name", "blueviolet", "blur", - "blur radius", "bmp", + "board", + "board of directors", + "bod", "body", "body element", "body with type", @@ -5372,10 +6450,15 @@ "border (of a box)", "border area", "border box", + "border color", "border edge", + "border image", "border image area", + "border image region", "border properties", "border radius", + "border style", + "border width", "border-block", "border-block-color", "border-block-end", @@ -5451,26 +6534,49 @@ "border-top-style", "border-top-width", "border-width", + "border::of a box", "bottle map", "bottom", + "bounce tracking", + "bounce tracking activation lifetime", + "bounce tracking grace period", + "bounce tracking record", + "bounce tracking timer", + "bounce tracking timer period", + "bound", "bound credential", "boundary box", "boundary default action", "boundary point", "bounded reference spaces are supported", "bounding box", + "bounds", "box alignment properties", "box fragment", "box metrics of the radical glyph", "box-corner", "box-decoration-break", "box-shadow", + "box-shadow-blur", + "box-shadow-color", + "box-shadow-offset", + "box-shadow-position", + "box-shadow-spread", "box-sizing", "box-snap", + "box::border", + "box::content", + "box::content height", + "box::content width", + "box::margin", + "box::overflow", + "box::padding", "br", "br/edr bonding procedure", + "branch factor encoding", "branches of a readable stream tee", "break", + "break calibration", "break-after", "break-before", "break-inside", @@ -5479,8 +6585,10 @@ "broadcast active observations", "broadcast active resize observations", "broadcaster", + "broadcasting", "broadcasting to other browsing contexts", "broken", + "brotli patch", "brown", "browser", "browser chrome", @@ -5488,36 +6596,48 @@ "browser chrome elements", "browser fingerprinting", "browser initiated remote playback", - "browser name", - "browser version", "browsing context", "browsing context container", "browsing context group", "browsing context group node map", "browsing context group set", - "browsing context id", "browsing context input state map", "browsing context scope origin", "browsing context set", - "browsing context tree discarded", + "browsing profile", + "browsing topics task source", "browsing-context connected", + "browsing-topics", "bsize field", - "bubble phase", - "bubbling phase", + "bucket file system", "bucket map", "buffer a log event", "buffer append", - "buffer internals", "buffer source types", + "buffer types", + "buffer view types", "buffer-binding-aliasing", - "bufferedamountlow", + "bufferedchange", "buffersource", - "build the list of first-party sets", + "build a content range", + "build a url pattern from a web idl value", + "build a url pattern from an infra value", + "build a urlpattern object from a web idl value", + "build an interest group passed to generatebid", + "build bid generators map", + "build not restored reasons for a top-level traversable and its descendants", + "build not restored reasons for document state", + "build the list of related website sets", + "build trusted bidding signals url", + "build trusted scoring signals url", + "built-in default config", "built-in functions", "built-in input value", "built-in output value", "built-in user verification method", + "built-in value name-token", "built-in values", + "builtin functions that compute a derivative", "bulk transfers", "bundle", "bundle-only", @@ -5547,7 +6667,7 @@ "byte-serializing a request origin", "byte-size", "byte-uppercase", - "bytestring", + "bytes", "c", "c0 control", "c0 control or space", @@ -5560,16 +6680,28 @@ "cache mode", "cacheable", "cached attr-associated elements", + "cached attr-associated elements object", "cached ecmascript object", "cadetblue", "calc()", + "calc-mix()", + "calc-size basis", + "calc-size calculation", + "calc-size()", "calcmode", "calculate box size", "calculate depth for node", + "calculate dom path", "calculate linear easing output progress", + "calculate mouseevent button attribute", "calculate the absolute position", + "calculate the ad slot size query param", "calculate the aspect ratio", + "calculate the device posture information", + "calculate the epochs for caller", "calculate the part element map", + "calculate the topics for caller", + "calculate user topics", "calculation tree", "calibrated", "calibrated magnetic field", @@ -5581,7 +6713,6 @@ "call for review", "call site", "call site tag", - "call the dom update callback", "call the update callback", "callback context", "callback function", @@ -5595,11 +6726,11 @@ "callee", "caller", "calling function", + "calling site", "callsitenorestriction", - "callsiterequiredtobeuniform", + "callsiterequiredtobeuniform.s", "camera information can be exposed", "camera-access", - "camera-information-can-be-exposed", "can add resource timing entry", "can attribution rate-limit record be removed", "can autoplay flag", @@ -5611,11 +6742,15 @@ "can make digital goods service algorithm", "can make payment algorithm", "can't be displayed", + "cancel", "cancel a hit test source", "cancel a hit test source for transient input", "cancel a readable stream", + "cancel action", "cancel an animation", "cancel event", + "cancel the outstanding getstatuschange", + "cancelaction", "canceled", "canceled event", "candidate", @@ -5626,40 +6761,50 @@ "candidate for constraint validation", "candidate recommendation", "candidate recommendation draft", + "candidate recommendation review period", "candidate recommendation snapshot", "candidate registry", "candidate registry draft", "candidate registry snapshot", "candidate-attribute", + "canexcluderoot", "cannot be manually scrolled", "cannot be scrolled manually", "cannot be used together", "cannot have a username/password/port", "cannot navigate", "cannot show simple dialogs", + "canonical identifier", "canonical index", + "canonical indices", "canonical issuer", "canonical keyword", "canonical lexical form", "canonical locale", "canonical n-quads", + "canonical n-quads document", "canonical n-quads form", "canonical n-triples document", "canonical paymentcurrencyamount", "canonical tag", "canonical unicode locale identifier", "canonical unit", + "canonicalization function", "canonicalization state", + "canonicalize a configuration", "canonicalize a hash", "canonicalize a hostname", "canonicalize a password", "canonicalize a pathname", "canonicalize a port", "canonicalize a protocol", + "canonicalize a sanitizer element list", + "canonicalize a sanitizer name", "canonicalize a search", "canonicalize a username", "canonicalize an ipv6 hostname", "canonicalize an opaque pathname", + "canonicalized dataset", "canvas", "canvas background", "canvas blob serialization task source", @@ -5672,6 +6817,8 @@ "capabilities processing", "capability", "capability name", + "capabilitydelegation", + "capabilityinvocation", "capable of supporting", "caption", "caption width minimum (capmin)", @@ -5680,13 +6827,15 @@ "captiontext", "capture actions", "capture control type", - "capture phase", "capture rendering characteristics", "capture the image", "capture the new state", "capture the old state", "capture-session", + "captured additional bids headers", "captured element", + "captured in a view transition", + "capturedmousechange", "captures snap positions", "capturing the image", "caret", @@ -5694,8 +6843,10 @@ "caret offset", "caret position", "caret range", + "caret-animation", "caret-color", "caret-shape", + "carried forward", "cascade", "cascade layers", "cascade origin", @@ -5708,19 +6859,24 @@ "case folding", "case mapping", "case sensitive matching", + "case-folded", "case-insensitive", "case-sensitive", + "cast", "categories", "cbcs", "cbcs-1-9", "cbor", "ccdtostring", + "ccs", "cdata section bracket state", "cdata section end state", "cdata section state", "cdata sections", "cdata-in-html-content", "cddl", + "cdm", + "cdm unavailable", "ceiling expression", "cell", "cell intrinsic offsets", @@ -5731,8 +6887,10 @@ "central baseline", "ceo", "ceremony", - "certificate algorithms", "certificate chain", + "certificate serial number", + "certificate serial number base", + "certificate serial number counter", "cf field", "cf_after", "cf_i", @@ -5751,6 +6909,7 @@ "ch-ua", "ch-ua-arch", "ch-ua-bitness", + "ch-ua-form-factors", "ch-ua-full-version", "ch-ua-full-version-list", "ch-ua-mobile", @@ -5766,14 +6925,15 @@ "chain transform algorithm", "chaining", "chair", - "chair decision appeal", "chair decisions", + "challenge", "change", "change an attribute", "change in contributing factors is substantial", "change password url", "change payment details algorithm", "change payment method algorithm", + "change process", "change remote playback state", "change state", "change the encoding", @@ -5823,6 +6983,8 @@ "characterized", "characters", "characterstring", + "charge shared storage navigation budget", + "charge shared storage reporting budget", "chargingchange", "chargingtimechange", "charter", @@ -5830,9 +6992,12 @@ "chartered groups", "chartreuse", "charwidth", + "check a currency tag", "check a global object's embedder policy", "check a navigation response's adherence to `x-frame-options`", "check a navigation response's adherence to its embedder policy", + "check ancestor for task", + "check ancestor set for task", "check and canonicalize amount", "check and canonicalize total amount", "check clipboard read permission", @@ -5841,62 +7006,95 @@ "check created records", "check encrypted decoding support", "check if a popup window is requested", + "check if a scheme is suitable", + "check if a text directive can be scrolled", "check if a window feature is set", + "check if addmodule is allowed and update state", + "check if aggregatable debug reporting should be blocked by rate-limit", "check if an access between two browsing contexts should be reported", + "check if an aggregatable attribution report should be unconditionally sent", + "check if an attribution source and attribution trigger have matching attribution scopes", "check if an attribution source can create aggregatable contributions", - "check if an attribution source exceeds the unexpired destination limit", + "check if an attribution source exceeds the per day destination limits", + "check if an attribution source exceeds the time-based destination limits", + "check if an attribution source should be blocked by reporting-origin per site limit", + "check if an attribution trigger contains aggregatable data", "check if an origin is suitable", + "check if attribution debugging can be enabled", + "check if attribution should be blocked by attribution rate limit", + "check if attribution should be blocked by rate limits", "check if cookie-based debugging is allowed", "check if coop values require a browsing context group switch", - "check if debug reporting is allowed", "check if enforcing report-only coop would require a browsing context group switch", "check if hardware exposure is allowed", "check if negotiation is needed", + "check if required seller capabilities are permitted", + "check if source has compatible attribution scope fields", + "check if string-like", "check if the device is configured", "check if three code points would start a number", + "check if three code points would start a unicode-range", "check if three code points would start an ident sequence", "check if two code points are a valid escape", - "check if unloading is user-canceled", + "check if unloading is canceled", + "check if user preference setting allows access to shared storage", "check if we can run script", + "check interest group permissions", "check parsed records", "check permission", "check permissions for device", "check popover validity", "check sensor policy-controlled features", - "check templatedness", + "check soft navigation", + "check soft navigation contentful paint", + "check soft navigation same document commit", "check that a key could be injected into a value", "check the completion record", "check the layers state", "check the usability of the image argument", "check the validity of the control transfer parameters", + "check user prompt handler matches", "check validity steps", + "check whether a bit debit is expired", + "check whether a moment falls within a window", + "check whether a string is a valid currency tag", + "check whether negative targeted", "check-for-apache-bug flag", "checkedness", - "checkforusercancelation", "checking permission", "child", "child combinator", "child effect", + "child element", + "child elements", "child layout", "child navigable", "child selector", "child text content", "child-src", "children", + "children array", "children changed steps", "chocolate", "chorded button interactions", "chorded buttons", + "chroma_sample_position", + "chroma_subsampling_x", + "chroma_subsampling_y", "chromatic adaptation transform", "chromaticity", - "chromeplatform", "chunk", "chunked", "circ", "circle", "circled-lower-latin", "circular reference", + "circumgraph", "cite", + "cjk", + "claim", + "claim validation", + "claims", "clamp a grid area", "clamp and coarsen connection timing info", "clamp()", @@ -5906,13 +7104,20 @@ "class selector", "class string", "classes", + "classic conformance", + "classic history api state", "classic script", "classic scrollbars", + "classichistoryapistate", + "classify", "cldr", + "clean up", "clean up after running a callback", "clean up after running script", "clean up the disconnected device", "clean up the pending scan", + "cleanup remote end state", + "cleanup the session", "clear", "clear DOM-accessible storage for origin", "clear a content editable element", @@ -5920,22 +7125,29 @@ "clear algorithm", "clear an object store", "clear cache entries", + "clear cache for host", "clear cache for origin", + "clear cookies for host", "clear cookies for origin", + "clear data with buckets", + "clear excess interest groups", + "clear key", + "clear non-cookie storage for host", "clear registration", + "clear site data", "clear site data for response", "clear the forward session history", "clear the list of active formatting elements up to the last marker", "clear the modifier key state", "clear the negotiation-needed flag", + "clear the operationinprogress", "clear the stack back to a table body context", "clear the stack back to a table context", "clear the stack back to a table row context", "clear view transition", "clear-site-data", "clearance", - "cleared", - "clearing", + "clearance.", "click", "click focusable", "click in progress flag", @@ -5943,7 +7155,9 @@ "click source-attribute-on pair", "click, auxclick, and contextmenu events", "client", + "client bounce detection timer period", "client characteristic configuration", + "client coordinate system", "client data", "client device", "client extension", @@ -5954,15 +7168,17 @@ "client extension processing (registration)", "client hints set", "client hints token", + "client metadata endpoint", "client mode targets", "client platform", - "client state", "client-side", "client-side credential storage modality", "client-side discoverable credential", "client-side discoverable public key credential source", + "clienthints", "clip", "clip position", + "clip space coordinates", "clip steps", "clip volume", "clip-path", @@ -5970,8 +7186,8 @@ "clipboard item", "clipboard items", "clipboard task source", - "clipboardchange", "clippath", + "clipped by intervening elements", "clipping path", "clipping region", "clock", @@ -5991,34 +7207,41 @@ "close a presentation connection", "close a top-level traversable", "close a worker", + "close action", + "close any associated document picture-in-picture windows", + "close any existing picture-in-picture windows", "close audiodata", "close audiodecoder", "close audioencoder", + "close request", + "close request steps", "close sentinel", - "close signal", - "close signal steps", "close steps", "close the cell", "close the connection", "close the presentation connection", "close the session", + "close the websocket connections", + "close to the viewport", "close videodecoder", "close videoencoder", "close videoframe", "close watcher", - "close watcher stack", + "close watcher manager", "close window", "close window algorithm", + "close-quote", + "closeaction", "closed", "closed flag", "closed subpath", "closed-shadow-hidden", "closest-side", "closewritable", - "closing", "closing procedure", "clustered scripts", "cm", + "cmaf av1 track", "coalesced events", "coalesced events list", "coarsen time", @@ -6038,8 +7261,8 @@ "code unit substring by positions", "code unit substring to the end of the string", "code unit suffix", - "code units", "codec", + "codec dictionary match", "codec processing model", "codec string", "codec task source", @@ -6051,6 +7274,8 @@ "coded frame group", "coded frame processing", "coded frame removal", + "codepoint rects", + "codepoint rects start index", "coercion", "col", "colgroup", @@ -6067,12 +7292,17 @@ "colleague", "collect Credentials from the credential store", "collect a sequence of code points", + "collect a single fordebuggingonly report", "collect a webvtt block", "collect a webvtt timestamp", "collect an http quoted string", "collect attribute values", "collect attribute values of an inheritance stack", "collect documents to unfullscreen", + "collect fordebuggingonly reports", + "collect nodes using accessibility attributes", + "collect page topics calculation input data", + "collect topics caller domain", "collect webvtt cue timings and settings", "collect webvtt region settings", "collecting a sequence of code points", @@ -6095,17 +7325,17 @@ "color stop list", "color temperature", "color transition hint", + "color type", "color()", "color-adjust", "color-interpolation", "color-interpolation-filters", + "color-layers()", "color-mix()", "color-rendering", "color-scheme", "color_scheme", "colortextures", - "colour type", - "colspan", "column", "column box", "column break", @@ -6128,12 +7358,16 @@ "column-width", "columns", "columnspan", + "combinator", "combinators", "combine", "combined buffer layout", "combined depth-stencil format", "combining character", + "combining character sequence", + "combining mark", "combining shadow lists", + "comma-containing productions", "command", "commands", "comment", @@ -6152,9 +7386,11 @@ "commit a transaction", "commit computed styles", "commit early hints", - "commit the canvas texture", - "commit()", + "committed promise", + "committed-to entry", + "common key systems", "common locale data repository", + "common safety checks", "common writing system keys", "compact", "compact form", @@ -6166,7 +7402,9 @@ "compaction", "compacts", "compare media queries", + "compare topics based on priority and count", "compare two keys", + "compatibility character", "compatibility mapping with mouse events", "compatibility mouse events", "compatible baseline alignment preferences", @@ -6197,15 +7435,18 @@ "composite", "composite (verb)", "composite face", + "composite message", "composite operation", "composite operation accumulate", "composite operation add", "composite operation replace", - "composite reference component expression", + "composite vowel", "composited", "composited value", "compositeoperation", "composition", + "composition end", + "composition start", "compositionend", "compositionstart", "compositionupdate", @@ -6216,16 +7457,16 @@ "compress and enqueue a chunk", "compress flush and enqueue", "compressed format", - "compressedset", "compression", "compression context", "compression curve", + "compressorname", + "computational graph", "computationally independent", "compute", "compute a certificate hash", "compute a property value", "compute a speculative action referrer policy", - "compute account state", "compute all hit test results", "compute an mp3 frame size", "compute copy element count", @@ -6237,13 +7478,18 @@ "compute render extent", "compute shader grid", "compute shader stage", + "compute the channel capacity of a source", + "compute the connection status", "compute the effective overload set", - "compute the interest rectangle", "compute the intersection", + "compute the key hash of reporting id", + "compute the scopes channel capacity of a source", "compute the tick duration", "computed <image>", "computed color", "computed keyframe offset", + "computed keyframe offsets", + "computed keyframe order", "computed keyframes", "computed length", "computed mime type", @@ -6254,6 +7500,7 @@ "computed track size", "computed value", "computed values", + "computed writing suggestions value", "computedfrequency", "computednumberofchannels", "computedoscfrequency", @@ -6262,10 +7509,10 @@ "computing a block of audio", "computing device memory value", "computing the envelope rate", - "computing the interest rectangle", "computing the makeup gain", "computing the manifest url", "computing the tick duration", + "concept", "concept namespace", "concept-algorithm-exception", "concept-context-namespace", @@ -6274,6 +7521,7 @@ "concept-generated-prefix", "concept-namespace-localname-set", "concept-namespace-prefix-map", + "concept-or-literal", "concept-parse-fragment", "concept-record-namespace-info", "concept-serialize-attr-value", @@ -6297,32 +7545,41 @@ "conditionally hsts-safe origin", "confidence", "config", + "config file", + "configobus", "configuration descriptor", - "configuration dictionary", "configuration point", "configure the image decoder", - "confirm", + "confirm idp login dialog", + "conflicting credentials exist", "conformance", "conformant server", "conformant user agent", + "conforming cryptographic suite specification", "conforming document", "conforming documents", - "conforming ecmascript implementation", "conforming implementation", + "conforming issuer implementation", + "conforming javascript implementation", + "conforming processor", "conforming rdf/xml document", "conforming scripted web animations user agent", + "conforming secured document", "conforming set of idl fragments", "conforming user agent", + "conforming verifier implementation", "conforming-touch-behavior", "conforms to an element's touch-action", "conic-gradient()", + "conjunct", "connect", + "connect stream", "connect to sensor", "connect-src", "connected", + "connected accounts set", "connecting", "connection", - "connection flag", "connection pool", "connection queue", "connection state", @@ -6331,7 +7588,6 @@ "connection types", "connection-checking wrapper", "connectionavailable", - "connectionstatechange", "consecutive", "consensus", "consider speculation", @@ -6339,6 +7595,7 @@ "considered text", "console", "console steps", + "consonant cluster", "const-declaration", "const-expressions", "const-functions", @@ -6356,6 +7613,7 @@ "construct a geolocation sensor object", "construct a gyroscope object", "construct a magnetometer object", + "construct a pending fenced frame config", "construct a proximity sensor object", "construct a stack trace", "construct a webassembly module object", @@ -6365,18 +7623,20 @@ "construct an ambient light sensor object", "construct an orientation sensor object", "constructible", - "constructing a websocket resource name", - "constructing a websocket url", + "constructing a gamepadhapticactuator", "constructing entry list", "constructing the entry list", "construction stack", "constructor operations", "constructor steps", "constructor string parser", + "consume a block", + "consume a block's contents", "consume a component value", "consume a data type name", "consume a declaration", "consume a function", + "consume a list of component values", "consume a list of declarations", "consume a list of rules", "consume a number", @@ -6387,28 +7647,34 @@ "consume a simple block", "consume a string token", "consume a style block's contents", + "consume a stylesheet's contents", "consume a syntax component", "consume a syntax definition", "consume a token", + "consume a unicode-range token", "consume a url token", "consume an at-rule", "consume an escaped code point", "consume an html character reference", "consume an ident sequence", "consume an ident-like token", + "consume budget if permitted", "consume comments", + "consume history-action user activation", "consume text", "consume the next input token", + "consume the remnants of a bad declaration", "consume the remnants of a bad url", + "consume the value of a unicode-range descriptor", "consume user activation", "consumed as part of an attribute", "consumer", - "consumers", "contact", "contact geometry", "contact picker is showing flag", "contact picker task source", "contacts source", + "contagious invalidity", "contain", "contain constraint", "contain the nesting selector", @@ -6418,6 +7684,7 @@ "contain-intrinsic-inline-size", "contain-intrinsic-size", "contain-intrinsic-width", + "contained text auto directionality", "container", "container document", "container element", @@ -6427,15 +7694,18 @@ "container policy", "container query", "container query length", + "container query length unit", "container resource", "container root url", "container size query", "container style query", "container-name", + "container-progress()", "container-type", "containing block", "containing block chain", "containing block for all descendants", + "containing block::initial", "containing only", "containment", "contains", @@ -6447,6 +7717,7 @@ "content area", "content attributes", "content box", + "content decryption module (cdm)", "content display area", "content distribution", "content document", @@ -6479,18 +7750,20 @@ "content-distribution properties", "content-empty page", "content-encoding", - "content-list", "content-security-policy", "content-security-policy-report-only", - "content-timeline example definition", + "content-timeline example term", "content-type metadata", "content-visibility", + "content::of a box", + "content::rendered", "contenteditable=false element", "contentful", "contentful image", "contents", "contents of an arraybuffer", "context", + "context cleanup steps", "context definition", "context document", "context element", @@ -6501,6 +7774,7 @@ "context namespace", "context object", "context type", + "context validation result", "context-base-iri", "context-dependent name", "context-inverse", @@ -6521,8 +7795,12 @@ "contrast-color()", "contributes a script-blocking style sheet", "contributing factors", + "contribution cache", + "contribution cache entry", "control", "control barrier", + "control bounds", + "control flag", "control message", "control message queue", "control message steps", @@ -6534,15 +7812,16 @@ "control-character-reference", "controlled", "controller", + "controller document", "controlling", "controlling browsing context", "controlling browsing contexts", "controlling user agent", "controls", "controls of the window", - "conversion expression", "conversion to db", "conversionrank", + "convert", "convert a cssunitvalue", "convert a json-derived javascript value to an infra value", "convert a key to a value", @@ -6555,29 +7834,42 @@ "convert a value to a key", "convert a value to a key range", "convert a value to a multientry key", + "convert an ad render", + "convert an ad size to a map", + "convert an ad size to a string", "convert an infra value to a json-compatible javascript value", "convert artwork algorithm", "convert code unit to scalar value", "convert data to a format suitable for ingestion into the target", "convert fetch timestamp", "convert from native entity type", + "convert generatebidoutput to generated bid", "convert header names to a sorted-lowercase set", "convert line endings to native", "convert ndefrecord.data bytes", + "convert one or many generatebidoutputs to a list of generated bids", "convert to a list of name-value pairs", + "convert to a string sequence", + "convert to absolute url", + "convert to an auctionad sequence", + "converted to a javascript value", "converted to a numeric type or bigint", "converted to an ecmascript value", "converted to an idl value", "converted to ecmascript values", "converted to idl values", + "converted to javascript values", "converting a character width to pixels", "converting a color value from a non-premultiplied representation to a premultiplied one", "converting a color value from a premultiplied representation to a non-premultiplied one", "converting a json-derived javascript value to an infra value", + "converting a quaternion to rotation matrix", "converting an infra value to a json-compatible javascript value", "converting arguments for an asynchronous iterator method", "converting line endings to native", "converting nodes into a node", + "converttofloat", + "converttoint", "convolvernode", "convolveroptions", "cookie", @@ -6605,6 +7897,7 @@ "coordinating list property group", "copy", "copy a namespace prefix map", + "copy an mloperand", "copy prefetch cookies", "copy secondary buffer", "copy-compatible", @@ -6612,16 +7905,17 @@ "copylink", "copymove", "coral", + "core", "core attributes", "core media type resource", - "core operator", + "core properties", "corner diagonal", "corner-shape", "corners", "cornflowerblue", "cornsilk", - "corpus", "correctly rounded", + "correspond to", "corresponding animator instance", "corresponding effect", "corresponding element", @@ -6645,6 +7939,8 @@ "cors-unsafe request-header byte", "cors-unsafe request-header names", "cos()", + "council report", + "council team contact", "count map", "count queuing strategy size function", "count the records in a range", @@ -6660,24 +7956,31 @@ "counters", "counters()", "country-name", + "cover", "cover constraint", "cr", "crash reports", - "crc", + "crd", "create a 'webgpu' context on a canvas", "create a 2d matrix", "create a 3d matrix", + "create a MediaDevices", + "create a MediaStreamTrack", "create a bluetoothcharacteristicproperties instance from the characteristic", "create a bluetoothremotegattcharacteristic representing", "create a bluetoothremotegattdescriptor representing", "create a bluetoothremotegattservice representing", "create a brand-version list", + "create a cancelable mouseevent", + "create a channel", + "create a chapterinformation", "create a classic script", "create a clipboarditem object", - "create a close watcher", "create a component match result", "create a connection", + "create a connection between the rp and the idp account", "create a constructed cssstylesheet", + "create a context", "create a cookie", "create a cookielistitem", "create a cpu depth information instance", @@ -6688,7 +7991,8 @@ "create a cssunitvalue from a pair", "create a cssunitvalue from a sum value item", "create a date object", - "create a document fragment", + "create a dependent abort signal", + "create a dependent task signal", "create a dommatrix from the 2d dictionary", "create a dommatrix from the dictionary", "create a dommatrixreadonly from the 2d dictionary", @@ -6699,6 +8003,8 @@ "create a domquad from the domrectinit dictionary", "create a domrect from the dictionary", "create a domrectreadonly from the dictionary", + "create a fixed length memory buffer", + "create a fixed priority unabortable task signal", "create a fresh top-level traversable", "create a frozen array", "create a global object", @@ -6724,8 +8030,6 @@ "create a mediacapabilitiesencodinginfo", "create a mediaerror", "create a medialist object", - "create a mediastreamtrack", - "create a memory buffer", "create a memory object", "create a named properties object", "create a namespace object", @@ -6743,26 +8047,41 @@ "create a new memory attribution", "create a new memory breakdown entry", "create a new memory measurement", + "create a new nested traversable", "create a new realm", + "create a new script fetcher", + "create a new script runner agent", + "create a new script runner realm", "create a new signed exchange report", "create a new top-level browsing context and document", "create a new top-level traversable", + "create a non-cancelable mouseevent", "create a notification", + "create a notification with a settings object", + "create a notrestoredreasondetails object", + "create a notrestoredreasons object", "create a null input source", "create a paintrenderingcontext2d object", "create a permissionstatus", "create a pointer input source", + "create a pointerevent", "create a potential-cors request", "create a preload key", "create a push subscription", + "create a quaternion from euler angles", "create a receiving browsing context", "create a reference space", "create a report request", "create a reserved client", + "create a resizable memory buffer", + "create a restrictiontarget", "create a sandbox realm", - "create a sanitizer", "create a scheduler task queue", + "create a session", "create a set iterator", + "create a shared storage bucket", + "create a shared storage shelf", + "create a soft navigation entry", "create a sorted name list", "create a source set", "create a speculative mock element", @@ -6770,7 +8089,8 @@ "create a storage shelf", "create a sum value", "create a table object", - "create a type", + "create a task handle", + "create a task scope", "create a type from a unit map", "create a unified platform version string", "create a videoframe", @@ -6778,6 +8098,15 @@ "create a wheel input source", "create a worklet global scope", "create aggregatable contributions", + "create aggregatable contributions from aggregation keys and aggregatable values", + "create an RTCDTMFSender", + "create an RTCDataChannel", + "create an RTCIceCandidate", + "create an RTCIceCandidatePair", + "create an RTCRtpReceiver", + "create an RTCRtpSender", + "create an RTCRtpTransceiver", + "create an RTCSctpTransport", "create an agent", "create an anchor from frame", "create an anchor from hit test result", @@ -6799,6 +8128,8 @@ "create an interface prototype object", "create an internal representation", "create an intrinsic sizes object", + "create an mloperand", + "create an mloperanddescriptor", "create an offer", "create an opaque timing info", "create an rtcdatachannel", @@ -6808,24 +8139,27 @@ "create an rtcrtpsender", "create an rtcrtptransceiver", "create an rtcsctptransport", - "create an underlying value", "create and initialize a document object", "create and populate a resizeobserverentry", "create brands", "create camera instance", "create client", - "create context", + "create fetch event and dispatch", "create job", "create link options from element", - "create mock sensor", + "create mesh object", "create navigation params by fetching", "create navigation params from a prefetch record", "create navigation params from a srcdoc resource", "create ndef message", "create ndef record", + "create nested configs", "create new anchor object", "create or override the cached client hints set", + "create plane object", + "create pointerevent from mouseevent", "create record objects", + "create script entry point", "create the attribution", "create the navigation timing entry", "create window client", @@ -6835,7 +8169,11 @@ "createanswer", "created", "created on", + "createhandwritingrecognizer(constraint)", "createoffer", + "createproof", + "creating a child filesystemdirectoryhandle", + "creating a child filesystemfilehandle", "creating a cookie", "creating a device info object", "creating a frozen array", @@ -6844,16 +8182,17 @@ "creating a hid report item", "creating a list of device info objects", "creating a new browsing context", + "creating a new filesystemdirectoryhandle", + "creating a new filesystemfilehandle", "creating a new memory attribution", "creating a new memory breakdown entry", "creating a new memory measurement", "creating a new session", - "creating a notification", "creating a policy container from a fetch response", - "creating a scheduler task queue", "creating a sequence from an iterable", "creating a sum value", - "creating a type", + "creating an RTCIceCandidate", + "creating an RTCIceCandidatePair", "creating an answer", "creating an element", "creating an event", @@ -6864,11 +8203,9 @@ "creating an operation function", "creating an rtcicecandidate", "creating record objects", - "creating-a-device-info-object", - "creating-a-list-of-device-info-objects", "creation", "creation-fixed footprint", - "creator base url", + "creator", "credblob value", "credential", "credential chooser", @@ -6880,19 +8217,25 @@ "credential properties", "credential public key", "credential record", + "credential repositories", + "credential repository", "credential source", "credential storage modality", "credential store", + "credential type examples", + "credential verifier's", + "credential verifiers", "credentialid", - "credentialidlength", - "credentialpublickey", + "credentialless window", "credentials", "credentials mode", + "credentialsubject", "credprops", "credprotect value", "crimson", "critical chunk", "critical subresources", + "critical-ch restart time", "crop bitmap data to the source rectangle with formatting", "crop-session target", "crop-states", @@ -6901,6 +8244,7 @@ "croptarget production", "cross axis", "cross dimension", + "cross origin limitations", "cross size", "cross size property", "cross-axis", @@ -6930,7 +8274,6 @@ "cross-origin-referrer request", "cross-origin-resource-policy", "cross-origin-unreachable", - "cross-partition prefetch state", "cross-platform attachment", "cross-size", "cross-start", @@ -6941,17 +8284,23 @@ "crossoriginproperties", "crossoriginpropertyfallback", "crossoriginset", - "crt", + "crs", "crush", "crypto", + "cryptographic agility", + "cryptographic layering", "cryptographic nonce", "cryptographic nonce metadata", + "cryptographic suite", "cryptokey", "cryptokeypair", + "cryptosuite", + "cryptosuite instance", + "cryptosuite instantiation algorithm", + "cryptosuite verification result", "csp list", "csp violation report", "csp-derived sandboxing flags", - "cspnavigationtype", "css", "css bracketed range notation", "css color profile", @@ -6962,6 +8311,7 @@ "css gamut map", "css gamut mapped", "css gamut mapping algorithm", + "css grammar production block", "css ident sequence", "css layout box", "css level 1", @@ -6995,8 +8345,8 @@ "cue-after", "cue-before", "culprit browsing context container", - "culprit frame", "cumulative layout shift (cls) score", + "currency tag", "current", "current battery status information", "current browsing context", @@ -7008,11 +8358,13 @@ "current document readiness", "current drag operation", "current element queue", + "current entry", + "current entry index", "current error scope", - "current event target", "current filter", "current finished promise", "current focus chain of a top-level traversable", + "current frame timing info", "current frequency data", "current global object", "current high resolution time", @@ -7020,6 +8372,7 @@ "current input code point", "current input token", "current iteration", + "current iteration index", "current layout", "current light level", "current minimum pin length", @@ -7030,12 +8383,10 @@ "current playback position", "current posture", "current pressure state", + "current queue timestamp", "current ready promise", - "current realm", "current request", "current screen", - "current screen orientation", - "current session", "current session history entry", "current session history step", "current settings object", @@ -7052,6 +8403,7 @@ "current translate point object", "current user prompt", "current value", + "current wall time", "currentcolor", "currently defined authenticatorconfig subcommands", "currently focused area of a top-level traversable", @@ -7061,6 +8413,7 @@ "cursive", "cursive script", "cursor", + "cursor position", "custodian", "custom certificate requirements", "custom data attribute", @@ -7071,6 +8424,7 @@ "custom element reaction queue", "custom element reactions", "custom element reactions stack", + "custom function", "custom highlight", "custom highlight name", "custom highlight pseudo-element", @@ -7079,14 +8433,14 @@ "custom property name string", "custom property registration", "custom selector", - "custom state pseudo class", + "custom state pseudo-class", "custom validity error message", "customized built-in element", - "cut", "cx", "cy", "cyan", "cycle", + "cyclic module record", "cyclic percentage size", "cylindrical polar color", "d", @@ -7119,25 +8473,30 @@ "darkviolet", "dash list", "dash positions", + "dashed", "data", "data adjustment", "data block", - "data delivery", + "data collection", + "data integrity cryptographic suite instance", + "data integrity cryptographic suite instantiation algorithm", + "data integrity proof", "data model", "data stage", "data state", "data transport", "data type name", "data url", + "data validation", "data-", "data-*", "data-encoding-offer", "data-frame", + "data-version", "data: url processor", "data: url struct", "database", "database access task source", - "datachannel", "dataerror", "datafld", "dataformatas", @@ -7151,8 +8510,20 @@ "datatype map", "date", "date serialize", + "datetime connector record", + "datetime date range record", + "datetime format record", + "datetime range pattern format record", + "datetime range pattern part record", + "datetime range pattern record", + "datetime style range record", + "datetime style record", + "datetime styles record", + "datetime time range record", "datetime value", + "daylight saving", "daylight saving time", + "daylight savings time", "dblclick", "dc:contributor", "dc:creator", @@ -7164,24 +8535,35 @@ "dc:type", "dcterms:modified", "dd", + "de-percentify a calc-size calculation", "deactivate", + "deactivate a document for a cross-document navigation", "deactivate a sensor object", + "deactivate an editcontext", "deactivate an event handler", + "deactivate data collection", "deactivated", "dead key", "debug data type", + "debug details", + "debug report cooldown", + "debug report lockout until", + "debug scope", + "debug scope map", + "decentralized identifier", + "decentralized identifiers", "decibels to linear gain unit", "decimal", "decimal character reference start state", "decimal character reference state", "decimal floating point literal", + "decimal-leading-zero", "declaration", "declaration block", "declarative custom selector", "declare the direct manipulation behavior", "declared", "declared origin", - "declared permissions policy", "declared playback state", "declared policy", "declared stylepropertymap", @@ -7189,12 +8571,15 @@ "declaring direct manipulation behavior", "declination angle", "decode", + "decode an additional bid json", "decode and enqueue a chunk", "decode timestamp", "decode track metadata", + "decoded additional bid", "decoder", "decoding", "decompose", + "decomposed", "decompress and enqueue a chunk", "decompress flush and enqueue", "decorated bounding box", @@ -7202,6 +8587,7 @@ "decreasing", "decrement statement", "decrypt", + "decryption key id", "dedicated media source failure steps", "dedicated worker agent", "deep link", @@ -7210,33 +8596,39 @@ "default", "default `user-agent` value", "default action", + "default aggregation coordinator", + "default anchor element", "default anchor specifier", "default asynchronous iterator object", "default base direction", "default behavior", "default button", + "default cache behavior", "default classic script fetch options", "default clause", - "default configuration", "default control pipe", "default display mode", - "default document timeline", "default endpoint", + "default entry lifetime", + "default event-level attributions per source", "default face", "default fallback constant", "default features", "default fetch and process the linked resource", + "default filtering id max bytes", + "default filtering id value", "default graph", + "default index", "default initial value", "default inline xr device", "default iterator object", "default language", + "default max event states", "default maximum", "default method steps", "default microphone", "default minimum", "default mock microphone", - "default mock microphone device", "default namespace", "default object", "default object size", @@ -7251,11 +8643,11 @@ "default pipeline layout", "default playback start position", "default pointer parameters", - "default policy", "default port", "default powerful feature", "default presentation request", "default reader", + "default reading order", "default referrer policy", "default rule thickness", "default screen orientation", @@ -7266,13 +8658,19 @@ "default step base", "default style sheet", "default style state", + "default summary", "default theme color", "default tojson steps", + "default trigger data cardinality", "default unlock gesture", + "default url search variance", + "default user context", "default value", "default value override", + "default values for storage partition key attributes", + "default viewport-percentage units", "default-alone clause", - "default-context", + "default-policy-explanation", "default-src", "default/on", "defaultcolorspace", @@ -7303,7 +8701,6 @@ "definite row span", "definite size", "definite span", - "definitely process scroll behavior", "definition", "definition of keys and values", "definitions", @@ -7321,6 +8718,7 @@ "delaywriter", "delegate-ch", "delegated_capability_timestamps", + "delegating its rendering to its children", "delete a content index entry", "delete a cookie", "delete a database", @@ -7329,16 +8727,16 @@ "delete an existing named property", "delete cookie", "delete cookies", - "delete mock camera", - "delete mock capture device", - "delete mock sensor", + "delete expired sources", "delete records from an object store", "delete session", + "delete sources for unexpired destination limit", "delete the content attribute", "deleted", "deleter", "deliver resize loop error notification", "delivered image", + "delivery type", "delta", "delta traverse", "denies the wake lock", @@ -7347,9 +8745,10 @@ "denote", "denoted", "denotes", - "density-corrected intrinsic width and height", + "density-corrected natural width and height", "deny a wake lock", "deny wake lock", + "dependent vowel", "deprecate", "deprecated", "deprecates", @@ -7360,16 +8759,17 @@ "depth-or-stencil format", "depth-sensing", "depthstenciltextures", + "derive a permissions policy directly from a fenced frame config instance", "derive render targets layout from pass", "derive render targets layout from pipeline", "derive the accessible name", + "derive top 5 topics", "derivebits", "derivekey", "deriving the accessible name", "desc", "descendant", "descendant combinator", - "descendant script fetch options", "descendant text content", "descendant-selectors", "descent metric", @@ -7382,18 +8782,26 @@ "deserialize a serialized abort reason", "deserialize a shadow root", "deserialize a web element", + "deserialize a web frame", + "deserialize a web window", "deserialize arguments", "deserialize as a page load strategy", "deserialize as a proxy", "deserialize as an unhandled prompt behavior", + "deserialize as timeouts configuration", + "deserialize filter", + "deserialize header", "deserialize key-value list", "deserialize local value", "deserialize primitive protocol value", + "deserialize protocol bytes", + "deserialize protocol messages", "deserialize remote object reference", "deserialize remote reference", "deserialize shared reference", "deserialize value list", "design mode enabled", + "design space segment", "design_width", "designated resource", "designates", @@ -7403,30 +8811,50 @@ "desktop focus events", "destination", "destination browsing context", + "destination limit record", "destination node", + "destination rate-limit result", + "destination rate-limit window", "destination-atop", "destination-in", "destination-out", "destination-over", + "destinationshe", + "destinationurl", "destroy", "destroy a child navigable", + "destroy a document and its descendants", "destroy a top-level traversable", "desynchronized", "detached", "detached shadow root", "detaching from a media element", "details", + "details name group", "details notification task steps", "details of touch-action values", + "details toggle task tracker", + "detect phrase boundaries", + "detect word boundaries", + "detecting phrase boundaries", + "detecting word boundaries", "detector curve", "determine a field's category", + "determine a signal's numeric value", "determine eligibility for an associated site", + "determine if DTMF can be sent", "determine if a performance entry buffer is full", + "determine if a randomized null attribution report is generated", + "determine if a report should be sent deterministically", "determine if a request has top-level storage access", + "determine if an origin is an aggregation coordinator", "determine if dtmf can be sent", "determine navigation params policy container", "determine nosniff", + "determine remaining navigation budget", + "determine reporting budget to charge", "determine request's referrer", + "determine the active editcontext", "determine the creation sandboxing flags", "determine the device pixel ratio", "determine the fallback encoding", @@ -7438,8 +8866,11 @@ "determine the member type", "determine the network partition key", "determine the origin", + "determine the point on an ellipse steps", "determine the position fallback styles", + "determine the preflight mode", "determine the purpose of an image", + "determine the scroll-into-view position", "determine the start page", "determine the target of an event handler", "determine the type of a calculation", @@ -7448,37 +8879,43 @@ "determine the value of an indexed property", "determine whether a base element should be blocked by Scripting Policy", "determine whether a plugin element should be blocked by Scripting Policy", + "determine whether a request can currently use shared storage", "determine whether a script element should be blocked by Scripting Policy", "determine whether an event handler be blocked by Scripting Policy", + "determine whether associating an issuer would exceed the top-level limit", + "determine whether shared storage is allowed by context", + "determine whether the user agent explicitly allows unpartitioned cookie access", "determine-compatibility", "determines the set of origins on which the public key credential may be exercised", - "determining the matching applications", "determining the start page", + "deterministic operation timeout duration", "device", + "device address", + "device administrator", "device change notification steps", "device coordinate system", "device descriptor", "device discovery procedure", "device enumeration can proceed", "device information can be exposed", + "device motion and orientation task source", "device permission revocation algorithm", "device pixel", + "device pixel ratio overrides", + "device posture change steps", "device private key", + "device prompt", + "device prompt id", "device public key", "device public key attestation object", "device sensor", "device timeline", - "device timeline slot", - "device type", + "device timeline property", "device-bound key", "device-cmyk()", - "device-enumeration-can-proceed", - "device-information-can-be-exposed", "device-pixel-ratio", "device-posture", - "device-timeline example definition", - "device-type-cpu", - "device-type-gpu", + "device-timeline example term", "device_type", "devicechange", "devicecompat", @@ -7489,17 +8926,26 @@ "devolved", "devolved widget", "dfn", - "dial", + "diagnostic", + "diagnostic filter", + "diagnostic name-token", "dialog", "dialog focusing steps", "dice", "dictionary", "dictionary members", "dictionary types", + "did", "did-perform-automatic-track-selection", + "dids", "differs significantly", "digest", + "digestmultibase", "digit", + "digital credential", + "digital publication", + "digital publication's", + "digital publications", "digital signature", "digital signatures", "digitizer", @@ -7509,6 +8955,9 @@ "dimgray", "dimgrey", "dir", + "direct from seller signals", + "direct from seller signals key", + "direct individualization", "direct manipulation", "direct manipulation behavior", "directed progress", @@ -7521,21 +8970,24 @@ "direction-agnostic size", "directional embedding", "directional keyword", + "directional language-tagged string", "directional override", + "directionality", "directionality of an attribute", "directionality-capable attributes", "directionally scroll an element", "directionally scroll the element", "directionless", "directive", + "directive state", "directive-name", "directive-value", "directives", "directly associated with an animation", - "director", "directory", "directory entry", - "directory reader", + "directory id", + "directory locator", "dirtiness", "dirty checkedness", "dirty checkedness flag", @@ -7547,13 +8999,16 @@ "disabled state", "disallow further import maps", "disassociate animator instance of worklet animation", + "disc", "discard", + "discard tokens", "discarded", "dischargingtimechange", "disclosure", "disclosure requests", "disclosure requirement", "disconnect", + "disconnect endpoint", "disconnect from a remote playback device", "disconnected crop-session target", "discontinued draft", @@ -7566,10 +9021,10 @@ "discoverable mode", "discoverablecredentialmetadata", "discrete", + "disentangle", "dismiss", "dismiss alert", - "dismiss and notify state", - "dismiss state", + "dismissal", "dismissed", "dismisses", "dispatch", @@ -7586,11 +9041,14 @@ "dispatch actions", "dispatch actions for a string", "dispatch actions inner", + "dispatch character bounds update event", "dispatch command", "dispatch error", "dispatch nfc content", "dispatch pending event timing entries", "dispatch size", + "dispatch text format update event", + "dispatch text update event", "dispatch the event", "dispatch the events for a typeable string", "dispatch tick actions", @@ -7604,7 +9062,6 @@ "display modes list", "display name", "display no plugin", - "display property", "display size", "display state", "display surface", @@ -7616,11 +9073,17 @@ "displayoperatorminheight", "displaystyle", "displaysurface", + "disregarding", "dissent", "distance", "distance along the ray", "distance fraction", + "distinctive", + "distinctive identifier", + "distinctive identifier(s)", "distinctive permanent identifier", + "distinctive permanent identifier(s)", + "distinctive value", "distinguishable", "distinguishing argument index", "distribute extra space", @@ -7631,8 +9094,8 @@ "distribution list", "div", "dl", + "dn-unfenced", "dns resolution", - "dns-prefetch", "dnt", "dnt:0", "dnt:1", @@ -7658,6 +9121,7 @@ "document character set", "document cumulative layout shift (dcls) score", "document element", + "document has implicit focus", "document language", "document layout definition", "document layout definitions", @@ -7667,6 +9131,7 @@ "document order", "document paint definition", "document paint definitions", + "document picture-in-picture support", "document policy", "document policy directive", "document rule conjunction", @@ -7676,6 +9141,7 @@ "document rule predicate", "document rule url pattern predicate", "document state", + "document time space", "document timeline", "document tree", "document unload timing info", @@ -7685,17 +9151,16 @@ "document's body element", "document-policy", "document-policy-report-only", + "document-scoped view transition name", "document-tree child navigable target name property set", "document-tree child navigables", - "documentresource", "dodgerblue", "does filter data match", "does not contain background fetch", + "does url match expression in origin with redirect count?", "doesn't match the stored exchange", "dom anchor", - "dom application", "dom interface", - "dom level 0", "dom manipulation task source", "dom tree accessors", "dom-domparser", @@ -7716,8 +9181,8 @@ "domain-to-unicode", "domattrmodified", "domcharacterdatamodified", - "domerror", "domexception", + "domexception names table", "domfocusin", "domfocusout", "dominant baseline", @@ -7728,15 +9193,13 @@ "domnoderemovedfromdocument", "domstring", "domsubtreemodified", - "done flag", + "dotted", "double", "double-dot url path segment", "down", "down-mixing", "downlinkmax for an available interface", "download the hyperlink", - "downstream", - "downstream node", "draft note", "draft registry", "drag and drop", @@ -7747,9 +9210,13 @@ "drag data store hot spot coordinate", "drag data store item list", "drag data store mode", + "draggable region", + "draggable regions", "draw a bounding box from the framebuffer", "draw a paint image", "draw command", + "draw focus if needed", + "drawing", "drawing model", "drawing states", "dropped entries count", @@ -7758,6 +9225,7 @@ "dropzone", "dt", "dtend", + "dtmf playout task steps", "dtstart", "duplex printing", "duplex stream", @@ -7767,12 +9235,16 @@ "duration from", "duration time component", "duration time component scale", + "during-loading navigation id for webdriver bidi", "dynamic context", "dynamic error", "dynamic markup insertion", + "dynamic range", "dynamic statement instance", "dynamic viewport size", "dynamic viewport-percentage units", + "dynamic-range-limit", + "dynamic-range-limit-mix()", "dynamicscompressornode", "dynamicscompressoroptions", "eager", @@ -7780,6 +9252,7 @@ "ean-13", "earliest possible position", "earliest possible position when the script started", + "early error result", "early hints", "earth's reference coordinate system", "easing function", @@ -7806,13 +9279,14 @@ "editable", "editable context", "editable element", + "editcontext editing host", + "editcontext-handled inputtype", "editing host", "editor draft", "editor's draft", "editorial change", "effect", "effect stack", - "effect target", "effect value", "effective automation rate", "effective buffer binding size", @@ -7828,62 +9302,62 @@ "effective position of the legacy mouse pointer", "effective resident key requirement for credential creation", "effective source list", + "effective transformation matrix", "effective user verification requirement for assertion", "effective user verification requirement for credential creation", + "effective visual size", + "effective zoom", "effective-value-type", "eight-bit decimal value", "elapsed time", "elected groups", "element", - "element allow list", - "element block list", "element clear", "element click", "element click intercepted", + "element contents", "element count", "element definition", "element definition is running", - "element displayed", - "element displayedness", - "element drop list", - "element from point", + "element displayed state", "element has the focus", "element instance", "element interface", - "element kind", "element location strategy", - "element matches an element name", "element not interactable", "element queue", "element send keys", "element stride", - "element timing processing", "element type", + "element with default preferred size", "element's", "element()", "element-not-rendered", "element.localname", "element.namespaceuri", "element.prefix", + "element::following", + "element::preceding", "elementcontenteditable", - "elementrect-height", - "elementrect-width", - "elementrect-x", - "elementrect-y", "elements", "elements from point", "elements with default margins", "elevated permissions", "elevation", + "eligibility", "eligible feed links", "eligible for autoplay", "eligible for messaging", + "eligible for restriction", "eligible for same-party membership when embedded within", + "eligible key", + "eligible to be largest contentful paint", "eligible track", "ellipse", "ellipse method steps", "elliptic curve diffie-hellman", "em", + "em (unit)", "em-over baseline", "em-under baseline", "email", @@ -7894,6 +9368,7 @@ "embedded context", "embedded document", "embedded flag", + "embedded proof", "embedded watch action", "embedder policy", "embedder policy value", @@ -7904,7 +9379,9 @@ "embellished operator", "emergency", "emit a context created event", + "emit a script message", "emit an event", + "emit soft navigation entry", "emoji presentation participating code points", "empty", "empty cell", @@ -7917,22 +9394,26 @@ "empty record", "empty string", "empty table", + "empty user context", "empty-cells", "emulated native anchors", - "enable", "enable a css style sheet set", "enable directive", + "enable-extension", "enable_pull_down_refresh", "enabled", "enabled css style sheet set", "enabled for", "encapsulation contexts", "encode", + "encode a canvas as base64", "encode a canvas as base64 a canvas element", - "encode an unsigned k-bit integer", + "encode an integer for the payload", + "encode an unsigned k-byte integer", "encode and enqueue a chunk", "encode and flush", "encode or fail", + "encode trusted signals keys", "encoder", "encoder state", "encoding", @@ -7940,13 +9421,18 @@ "encoding callback", "encoding declaration state", "encoding sniffing algorithm", + "encoding-parse a url", + "encoding-parse-and-serialize a url", "encrypt", + "encrypt the payload", "encrypted", + "encrypted block encountered", "encrypted-media", "encrypteddata", "encryptedkey", "encryption", "enctype", + "end any settled transaction", "end collection tag", "end delay", "end of iteration", @@ -7954,6 +9440,8 @@ "end page value", "end tag open state", "end tags", + "end the session", + "end the transaction", "end time", "end-of-queue", "end-tag-with-attributes", @@ -7966,28 +9454,31 @@ "ending token", "endpoint", "endpoint descriptor", + "endpoint group", "endpoint node", "endpoint pair", "endpoint-on-the-path", "endpoints", "ends for any reason other than the stop() method being invoked", "ends in a number checker", + "endstreaming", "enforce a response's cross-origin opener policy", "enforced", "enforcement", "enough data to ensure uninterrupted playback", + "enough managed data to ensure uninterrupted playback", "enqueue a custom element callback reaction", "enqueue a custom element upgrade reaction", "enqueue an element on the appropriate element queue", "enqueues a control message", "ensure an immersive xr device is selected", + "ensure details exclusivity by closing other elements if needed", + "ensure details exclusivity by closing the given element if needed", "ensure there is a subpath", - "ensurecspdoesnotblockstringcompilation(realm, source)", - "ensurecspdoesnotblockwasmbytecompilation(realm)", - "entail", + "ensurecspdoesnotblockstringcompilation(realm, parameterstrings, bodystring, codestring, compilationtype, parameterargs, bodyarg)", + "ensurecspdoesnotblockwasmbytecompilationrealm", "entailment", "entailment regime", - "entails", "entails recognizing d", "entangle", "enterprise", @@ -7995,6 +9486,9 @@ "enterprise attestation is disabled", "enterprise attestation is enabled", "enterprise context", + "entities", + "entity", + "entity's", "entries", "entries to be queued", "entry", @@ -8006,16 +9500,19 @@ "entry realm", "entry settings object", "entry value", + "entrymaprecord", "entrytype", + "enumerant", "enumerate all devices attached to the system", "enumerate immersive xr devices", - "enumerated attributes", + "enumerated attribute", "enumeration", "enumeration types", "enumeration value", "enumeration's values", "env()", "envelopefollower", + "enveloping proof", "environment", "environment discarding steps", "environment encoding", @@ -8027,8 +9524,9 @@ "eof-in-doctype", "eof-in-script-html-comment-like-text", "eof-in-tag", + "eotf", "epatt", - "epoch-relative timestamp", + "epsilon", "epub conformance checker", "epub container", "epub content document", @@ -8047,8 +9545,10 @@ "equivalence", "equivalence map", "equivalent", + "equivalent modulo search variance", "equivalent opaque format", "equivalent path", + "equivalent texel representation", "equivalent to", "equivalent to an empty string", "equivalent token sequence", @@ -8059,7 +9559,6 @@ "error code", "error data", "error mode", - "error names table", "error reporting steps", "error response", "error response data", @@ -8074,6 +9573,7 @@ "escaping", "escaping a string", "essential claims", + "establish a close watcher", "establish a connection with the remote playback device", "establish a presentation connection", "establish a websocket connection", @@ -8094,40 +9594,47 @@ "euc-kr decoder", "euc-kr encoder", "euc-kr lead", + "european digits", + "evaluate a bidding script", + "evaluate a custom function", "evaluate a javascript: url", "evaluate a key path on a value", "evaluate a path", + "evaluate a reporting script", + "evaluate a scoring script", + "evaluate a script", "evaluate function body", "evaluate media queries and report changes", "evaluating a selector", "event", "event attribute", "event constructing steps", - "event enabled browsing contexts", + "event enabled navigables", "event focus", "event handler", "event handler content attribute", "event handler event type", "event handler idl attribute", - "event handler map", "event is enabled", "event listener", "event loop", "event loop processing model", - "event order", - "event phase", "event target", "event type", "event-level report", "event-level report cache", "event-level trigger configuration", - "event-source trigger data cardinality", + "event-level-report-replacement result", "events", + "eventual snap target", "ever populated", + "evidence", "evidence of user interaction", + "ex (unit)", "exact matching", "example term", "examples", + "examples of these types", "exceeds the binding slot limits", "exception", "exception objects", @@ -8151,6 +9658,7 @@ "execute a file handler launch", "execute a function body", "execute async script", + "execute graph", "execute script", "execute the script element", "execution scope", @@ -8160,8 +9668,11 @@ "exempt resource", "exit fullscreen", "exit picture-in-picture algorithm", + "exit pointer lock", "exit value", "exp()", + "expand a storage partition spec", + "expandable separators", "expanded", "expanded document form", "expanded form", @@ -8170,7 +9681,12 @@ "expanded transition property name", "expanding", "expansion", + "experimental flexible event support", + "expiration", + "expiration time", + "expire", "expired", + "expires", "explicit \"eof\" character", "explicit column span", "explicit consent", @@ -8183,7 +9699,6 @@ "explicit inclusion flag", "explicit intrinsic inner size", "explicit row span", - "explicit scopes", "explicit span", "explicitchar", "explicitly enabled", @@ -8199,6 +9714,7 @@ "expose a user interface to the user", "expose legacy touch event apis", "exposed", + "exposed for paint timing", "exposing hardware is allowed", "exposure", "exposure compensation", @@ -8209,11 +9725,13 @@ "express intention", "express permission", "expression", + "expressions", "extended attribute", "extended grapheme cluster", - "extended grapheme clusters", "extended inquiry response", "extended language range", + "extended navigation", + "extended real", "extended-address", "extension", "extension capabilities", @@ -8224,11 +9742,11 @@ "extension modules", "extension sensor interface", "extension specification", + "extension storage partition key attributes", "extension-token", "extensions", "extensions to the predefined set of link types", "extensions to the predefined set of metadata names", - "extent3d", "extern value cache", "external", "external application resource", @@ -8236,6 +9754,7 @@ "external file reference", "external label", "external resource link", + "external source dimensions", "external type", "external type name", "external type record", @@ -8244,11 +9763,16 @@ "extract a key from a value using a key path", "extract a marked token", "extract a six-bit decimal value", + "extract a source map url from a webassembly source", + "extract a source map url from javascript through parsing", + "extract a source map url from javascript without parsing", "extract an action sequence", "extract any vcard data represented by those nodes", "extract any vevent data represented by those nodes", + "extract challenges", "extract container element attributes", "extract content-range values", + "extract error information", "extract header list values", "extract header values", "extract links from headers", @@ -8280,6 +9804,7 @@ "fail the connection", "failed", "failed to load", + "failover class", "failure reason", "failure sampling rate", "failure_fraction", @@ -8295,22 +9820,28 @@ "fallback chain", "fallback content", "fallback size", + "false", "false in the negative range", "false-by-default", "familiar with", "family-name", "fantasy", + "far away from the viewport", "farthest-side", + "fatal error", + "fatal errors", "fax", "feasible automatic conversion", + "featural syllabary", "feature", "feature descriptor", + "feature map", "feature requirements", "feature separator", "feature tag", "feature-identifier", "featureless", - "featuretagset", + "featurerecord", "feblend", "fecolormatrix", "fecomponenttransfer", @@ -8330,7 +9861,12 @@ "femerge", "femergenode", "femorphology", - "fence", + "fenced frame config", + "fenced frame config instance", + "fenced frame config mapping", + "fenced navigable containers", + "fenced-frame-src", + "fencedframe", "feoffset", "fepointlight", "fespecularlighting", @@ -8348,6 +9884,7 @@ "fetch a style resource", "fetch a worklet script graph", "fetch a worklet/module worker script graph", + "fetch accounts step", "fetch an @import", "fetch an external color profile", "fetch an external image for a stylesheet", @@ -8355,9 +9892,11 @@ "fetch an external resource for a shape", "fetch an identity assertion", "fetch an inline module script graph", + "fetch and decode trusted scoring signals", "fetch and process the linked resource", "fetch client", "fetch controller", + "fetch destination from module type", "fetch directives", "fetch image algorithm", "fetch index", @@ -8369,23 +9908,28 @@ "fetch request", "fetch response handover", "fetch scheme", + "fetch script", "fetch steps", "fetch the account picture", - "fetch the accounts list", + "fetch the accounts", "fetch the client metadata", "fetch the config file", - "fetch the descendants of and link a module script", + "fetch the current outstanding trusted signals batch", + "fetch the descendants of and link", "fetch the web app manifest for a default payment app", "fetch timing info", + "fetch trusted signals", + "fetch webassembly", "fetching an image resource", "fetile", "feturbulence", "fictional tag sequence", "fido interfaces", - "field", + "field that blocks implicit submission", "field-based formats", + "field-based time format", "field-name", - "fields", + "field-sizing", "fieldset", "figcaption", "figure", @@ -8393,13 +9937,19 @@ "file entry", "file extension", "file handler", + "file locator", "file name", "file names", "file path", "file read error", "file reading task source", "file system", + "file system access result", "file system entry", + "file system locator", + "file system path", + "file system queue", + "file system root", "file type", "file type guidelines", "file-invalid-windows-drive-letter", @@ -8407,6 +9957,9 @@ "filelock", "filename", "fill", + "fill in a pending fenced frame config", + "fill in the contribution", + "fill in the signal value", "fill light mode", "fill mode", "fill painting area", @@ -8427,6 +9980,7 @@ "filter", "filter buffer by name and type", "filter buffer map by name and type", + "filter config", "filter map", "filter method", "filter primitive", @@ -8437,6 +9991,8 @@ "filter value", "filter()", "filter-primitive", + "filterable", + "filterable format", "filtered response", "final sample mask", "final sandboxing flag set", @@ -8444,19 +10000,21 @@ "final steps to create an offer", "finalize", "finalize a cross-document navigation", + "finalize a reporting destination", "finalize a same-document navigation", "finalize event timing", "finalize focus decision algorithm", - "finalize with an aborted navigation error", "find", - "find a first-party set", "find a list of configuration descriptors for the connected usb device", "find a list of descriptors for a configuration", "find a list of endpoint descriptors", - "find a matching prefetch record", + "find a matching complete prefetch record", + "find a matching complete prerender record", + "find a matching trigger spec", "find a potential indicated element", "find a range from a node list", "find a range from a text directive", + "find a related website set", "find a slot", "find a string in range", "find client hint value", @@ -8469,9 +10027,11 @@ "find flattened slottables", "find focusable areas", "find if the interface is claimed", + "find matching ad", "find matching links", "find matching sources", "find slottables", + "find sources with common destinations and reporting origin", "find supported configuration combination", "find the alternate index", "find the alternate interface for the current alternate setting", @@ -8484,7 +10044,6 @@ "find the matching font faces", "find the non-container graphics elements", "find the opposite of true", - "find the reporting frequency of a sensor object", "find the shortest distance", "find the topmost auto popover", "find the typographic character for a character", @@ -8498,13 +10057,14 @@ "fingerprint", "fingerprinting surface", "fingerprints", + "finish", "finish an animation", "finish event", "finish job", "finish notification steps", + "finish()", "finished", - "finished play state", - "fire", + "finished promise", "fire a background fetch click event", "fire a blob event", "fire a buffer full event", @@ -8512,28 +10072,31 @@ "fire a clipboard event", "fire a content delete event", "fire a dnd event", - "fire a download-requested navigate event", + "fire a download request navigate event", "fire a focus event", "fire a font load event", "fire a functional event", "fire a layoutchange event", - "fire a non-traversal navigate event", "fire a page transition event", "fire a periodicsync event", "fire a pointer event", "fire a progress event", + "fire a push/replace/reload navigate event", + "fire a selectionchange event", "fire a service worker notification event", "fire a success event", "fire a sync event", "fire a track event", - "fire a traversal navigate event", + "fire a traverse navigate event", "fire a version change event", "fire an advertisementreceived event", "fire an error event", "fire an event", "fire an input source event", + "fire an orientation event", "fire functional event", "fire the \"pushsubscriptionchange\" event", + "fire the pageswap event", "firebrick", "firefoxplatform", "firefoxversion", @@ -8560,11 +10123,13 @@ "first-baseline self-alignment", "first-child", "first-factor roaming authenticator", + "first-letter", "first-letter text", - "first-party set", + "first-line", "first-party-site context", "first-person observer view", "first-strong detection", + "first-valid()", "fit-content block size", "fit-content inline size", "fit-content size", @@ -8577,9 +10142,7 @@ "fixed-positioned", "fixed-positioned box", "fixed-size array", - "flag", "flagged as full", - "flags", "flags data type", "flat tree", "flattened", @@ -8642,15 +10205,20 @@ "flush to zero", "fn", "focus", + "focus (pseudo-class)", + "focus and origin check", "focus chain", + "focus changed during ongoing navigation", "focus delegate", "focus distance", "focus mode", "focus navigation scope", "focus navigation scope owner", + "focus reset behavior", "focus ring", "focus state", "focus update steps", + "focus-unfenced", "focusable", "focusable area", "focused", @@ -8667,6 +10235,7 @@ "font failure period", "font feature value declaration", "font mime type", + "font patch", "font representation", "font source", "font specific", @@ -8689,6 +10258,7 @@ "font-stretch", "font-style", "font-synthesis", + "font-synthesis-position", "font-synthesis-small-caps", "font-synthesis-style", "font-synthesis-weight", @@ -8702,6 +10272,7 @@ "font-variant-position", "font-variation-settings", "font-weight", + "font-width", "fontface", "footer", "footnote", @@ -8723,6 +10294,7 @@ "forced paragraph break", "forced-color-adjust", "forcibly close", + "fordebuggingonly reports", "foreign content document", "foreign elements", "foreign resource", @@ -8742,9 +10314,12 @@ "formal objection", "formal parameter", "formally addressed", + "format 1 patch map", + "format 2 patch map", "formatting", "formatting context", "formatting structure", + "formdataentrylist", "forward", "forward-compatible parsing", "forwards", @@ -8765,14 +10340,15 @@ "fragment", "fragment box", "fragment case", + "fragment coordinates", "fragment directive", "fragment directive delimiter", "fragment identifier", "fragment identifiers", - "fragment parsing algorithm", + "fragment parsing algorithm steps", "fragment percent-encode set", "fragment pseudo-element", - "fragment serializing algorithm", + "fragment serializing algorithm steps", "fragment shader stage", "fragmentainer", "fragmentation", @@ -8787,20 +10363,23 @@ "frame", "frame border color", "frame buffer", - "frame context", "frame object", "frame requested flag", + "frame timing info", "frame update", "frame-ancestors", "frame-current", "frame-requested", "frame-src", "framebuffer", + "framebuffer coordinates", + "framebuffer memory", "framed document form", "framerate", "frames", "frameset", "frameset-ok flag", + "framework", "framing", "framing keywords", "framing state", @@ -8810,18 +10389,20 @@ "fresh response", "friend", "from an external file", + "from entry", "front-facing", "frozen", "frozen array of supported entry types", "frozen array type", "frozen base url", - "ftpproxy", "fuchsia", "fulfill", "fulfilled", "fulfillment", "full assignment", + "full conformance", "full glyph cell", + "full invalidation", "full path", "full pointer", "full reference", @@ -8837,11 +10418,13 @@ "fullscreen window", "fullscreen window state", "fullscreen-feature", + "fullwidth", "fullwidth closing punctuation", "fullwidth colon punctuation", "fullwidth dot punctuation", "fullwidth middle dot punctuation", "fullwidth opening punctuation", + "fully addressed", "fully clipped", "fully decodable", "fully elaborated", @@ -8853,7 +10436,9 @@ "function body", "function call", "function declaration", + "function dependency", "function key", + "function parameter", "function scope", "function section", "function tag", @@ -8863,6 +10448,7 @@ "functional pseudo-element", "functions in a shader stage", "furthest ancestral svg viewport", + "fwd_distance", "g", "ga", "gain focus", @@ -8874,6 +10460,7 @@ "gamepad user gesture", "gamepadconnected", "gamepaddisconnected", + "gamepadhapticactuator", "gamma", "gamma encoding", "gamma value", @@ -8884,8 +10471,6 @@ "garbage-collect the connection", "gather active observations at depth", "gather active resize observations at depth", - "gather cookie data", - "gatheringstatechange", "gatt", "gatt assigned characteristics", "gatt assigned descriptors", @@ -8907,7 +10492,9 @@ "gbk encoder", "geckoversion", "gender-identity", + "general category", "general discovery procedure", + "general json-ld processing", "generalized rdf (rdfs) closure", "generalized rdf dataset", "generalized rdf graph", @@ -8917,6 +10504,7 @@ "generate a counter representation", "generate a fragment", "generate a key", + "generate a network report", "generate a new blob url", "generate a pattern string", "generate a prefix", @@ -8927,19 +10515,27 @@ "generate a segment wildcard regexp", "generate a tiggering event url", "generate a validation error", + "generate a verbose debug report url", "generate all implied end tags thoroughly", - "generate an attribution debug report url", + "generate an aggregatable debug report url", "generate an attribution report url", + "generate an id", "generate an internal error", "generate an out-of-memory error", "generate and queue a report", - "generate attribution report headers", + "generate and score bids", "generate baselines", "generate implied end tags", "generate key frame algorithm", + "generate masked tokens", + "generate null attribution reports", + "generate potentially multiple bids", "generate test report", + "generate the internal representation", "generateassertioncallback", "generated", + "generated bid", + "generated code", "generated content", "generated namespace prefix index", "generatekey", @@ -8957,15 +10553,19 @@ "generic sensor permission revocation algorithm", "geo", "geolocation", + "geolocation reading parsing algorithm", "geolocation sensor", "geolocation task source", + "geolocation virtual sensor type", "geometry properties", + "georgian", "get", + "get Trusted Types-compliant attribute value", "get a backgroundfetchregistration instance", - "get a browsing context", "get a copy of the buffer source", "get a copy of the bytes held by the buffer source", "get a copy of the image contents of a context", + "get a debug details", "get a document layout definition", "get a domstringmap's name-value pairs", "get a final encoding", @@ -8976,11 +10576,15 @@ "get a layout child", "get a layout class instance", "get a layout definition", + "get a navigable", "get a node", "get a permission store entry", + "get a platform sensor's sampling bounds", "get a pointer id", "get a promise to wait for all", + "get a prompt", "get a realm", + "get a realm from a navigable", "get a realm from a target", "get a response mime type", "get a safe token", @@ -8988,6 +10592,7 @@ "get a session id for a websocket resource", "get a stack id", "get a style map", + "get a virtual pressure source", "get a webelement origin", "get action url", "get active element", @@ -9003,28 +10608,36 @@ "get an attribute by name", "get an attribute by namespace and local name", "get an attribute value", - "get an element", "get an element id", "get an element's noopener", "get an element's target", + "get an eligibility from attributionreportingrequestoptions", "get an encoder", "get an encoding", "get an input source", "get an output encoding", "get an xml encoding", "get boundary point at index", - "get capture prompt result", "get client lifecycle state", "get computed label", "get computed role", "get configuration", + "get consent status", "get coordinates relative to an origin", "get credentials", + "get current interaction data", + "get current task", + "get current task id", "get current url", "get deadline time", + "get descendant topics", "get descriptor", + "get direct from seller signals", + "get direct from seller signals for a buyer", + "get direct from seller signals for a seller", "get element attribute", "get element css value", + "get element from input.elementorigin steps", "get element origin", "get element property", "get element rect", @@ -9033,64 +10646,106 @@ "get element text", "get exception details", "get frame type", - "get mock capture devices", - "get mock sensor", + "get matching cookies", "get named cookie", "get newest worker", + "get or create a batching scope", "get or create a node reference", "get or create a sandbox realm", "get or create a shadow root reference", "get or create a web element reference", "get or create an input source", + "get or expire a bucket", + "get os registrations from a header value", "get page source", "get registration", - "get related browsing contexts", + "get registration info from a header list", + "get related navigables", + "get router source", "get session history entries", + "get session history entries for the navigation api", "get shared id for a node", + "get sources to delete for the unexpired destination limit", + "get supported capabilities for audio/video type", + "get supported configuration", + "get supported configuration and consent", + "get supported registrars", + "get text content", "get the \"all\"-indexed element", "get the \"all\"-indexed or named element(s)", "get the \"all\"-named element(s)", + "get the active user prompt", + "get the automatic beacon data mapping to use", "get the bluetoothdevice representing", - "get the browsing context", - "get the browsing context info", - "get the child browsing contexts", + "get the canonical url string if valid", + "get the child navigables", "get the content attribute", + "get the cookie store", "get the current permission state", "get the current value of the event handler", + "get the descendant script fetch options", "get the element", + "get the entry point", + "get the fetch timings", "get the focusable area", "get the global key state", "get the history object length and index", + "get the initiator", "get the input state", "get the legacy windows version number", "get the lock request queue", - "get the matching prerendering navigable", - "get the navigation api history index", + "get the login status", + "get the navigable", + "get the navigable info", + "get the navigation api entry index", "get the navigation info", + "get the network intercepts", "get the next code point", "get the next iteration result", "get the notifications permission state", + "get the number of distinct versions in epochs", "get the object", + "get the origin rectangle", "get the parent", - "get the parent browsing context", + "get the parent navigable", "get the platform version", + "get the privateaggregation", + "get the prompt handler", + "get the protocol", "get the realm info", + "get the registration platform", + "get the request data", + "get the response content info", + "get the response data", "get the runnable task queues", + "get the select-url result index", "get the service worker object", "get the service worker registration object", "get the source", + "get the string value", "get the supported loading modes", "get the target history entry", + "get the text steps", "get the used step", + "get the worker's owners", "get time origin timestamp", "get timeouts", "get title", + "get unique urls", "get url", + "get user context", + "get uuid from string", + "get valid values for colorscheme", + "get valid values for contrast", + "get valid values for reduceddata", + "get valid values for reducedmotion", + "get valid values for reducedtransparency", "get value from latest reading", "get window handle", "get window handles", "get window rect", "get-policy-value", + "getUserMedia specific failure is allowed", "getdisplaymedia prompt result", "getgattchildren", "getglobalvalue", @@ -9113,20 +10768,22 @@ "getting the current permission state", "getting the endpoint attribute", "getting the expirationtime attribute", + "getting the locator", "getting the property", "getting the property with default", - "getting the runnable task queues", "getting the service worker object", "getting the service worker registration object", "getusermedia prompt result", - "getusermedia specific failure is allowed", - "getusermedia-specific-failure-is-allowed", "ghostwhite", "given-name", + "global", "global alpha", "global animation list", "global attributes", + "global data checks", "global date and time", + "global diagnostic filter", + "global duration", "global identifier", "global invocation id", "global items", @@ -9136,6 +10793,7 @@ "global object cache", "global set of availability callbacks", "global type", + "global view transition user agent style sheet", "globalcrypto", "glyph", "glyph assembly ascent", @@ -9143,13 +10801,18 @@ "glyph assembly height", "glyph assembly stretch size", "glyph assembly width", + "glyph closure", + "glyph keyed patch", + "glyph map", "glyph modifier key", "glyph-midline", "glyph-orientation-vertical", + "glyphpatches", "go", "gold", "goldenrod", "gossip path", + "gpcatnavigation", "gpu command", "gpu error scope", "gpucomputepipeline", @@ -9160,17 +10823,20 @@ "gradient line", "gradient-average-color", "grantable", + "graph", "graph isomorphism", "graph name", "graph object", "grapheme", "grapheme cluster", - "graphemes", "graphical document", "graphical documents", "graphics element", "graphics referencing element", + "graphs", "gravity", + "gravity sensor", + "gravity virtual sensor type", "gray", "graytext", "grdfd1", @@ -9179,7 +10845,9 @@ "greenyellow", "gregorian calendar", "grey", + "grey sample", "greyscale", + "greyscale with alpha", "grid", "grid area", "grid axis", @@ -9191,6 +10859,7 @@ "grid item", "grid item placement algorithm", "grid layout", + "grid layout algorithm", "grid line", "grid order", "grid placement", @@ -9220,25 +10889,32 @@ "grid-template-areas", "grid-template-columns", "grid-template-rows", + "groove", "ground", "group", "group alignment", "group decision", - "group decision appeal", "group effect", "group note", "group stack", "group-align", "group-aligned", "group-equivalent", + "group_count_x", + "group_count_y", + "group_count_z", + "grouped", "groupid", "grouping elements", + "groups", + "grow the memory buffer", "growth limit", "guaranteed-invalid value", "guessed playback state", "guidelines for exposing cues", "gutter", "gyroscope", + "gyroscope virtual sensor type", "h1", "h2", "h3", @@ -9247,37 +10923,56 @@ "h6", "half-leading", "half-width", + "halfwidth", "hand-off to external software", "handle", "handle a connection closing", + "handle a redeem response", + "handle a shared-storage-write response", + "handle ad auction signals header value", "handle an incoming message", + "handle an input promise in configuration", + "handle an issue response", "handle any user prompts", "handle attribute changes", "handle close events", "handle closing the readable stream", + "handle closing the tcpserversocket readable stream", + "handle closing the tcpsocket readable stream", + "handle closing the tcpsocket writable stream", + "handle closing the udpsocket readable stream", + "handle closing the udpsocket writable stream", "handle closing the writable stream", "handle content codings", "handle errors", + "handle event callback", "handle fetch", "handle fetch task source", "handle for an object", "handle functional event task source", - "handle funky elements", + "handle input for editcontext", "handle media session action", + "handle native mouse click", + "handle native mouse double click", + "handle native mouse down", + "handle native mouse move", + "handle native mouse up", "handle object map", "handle response end-of-body", "handle service worker client unload", + "handle topics response", "handle transition frame", "handle user agent shutdown", - "handled", "handlenewframe", "handler", + "handler key", "handling a canmakepaymentevent", "handling a paymentrequestevent", "handling a protocol launch", "handling document loss of full activity", "handling document loss of visibility", "handling the certificate reference", + "handwriting recognizer", "hang", "hanging baseline", "hanging glyph", @@ -9286,6 +10981,9 @@ "hard iron distortion", "hardware-bound device key pair", "has a border", + "has a flag", + "has a home tab", + "has a new tab button", "has a protected interface class", "has a reversed range", "has a runnable task", @@ -9293,6 +10991,7 @@ "has active observations", "has active resize observations", "has an attribute", + "has been revealed", "has been scrolled by the user", "has been shipped", "has block-level display", @@ -9300,11 +10999,13 @@ "has default method steps", "has dispatched input event", "has dispatched scroll event", + "has entries and events disabled", "has focus steps", "has no style sheet that is blocking scripts", "has not shifted", + "has proxy configuration", "has range limitations", - "has reloaded for critical-ch", + "has scheduled selectionchange event", "has shifted", "has skipped observations", "has skipped resize observations", @@ -9319,6 +11020,8 @@ "hash-source", "hash-with-options", "hashalgorithmidentifier", + "hashing", + "hashing algorithm", "have a particular element in button scope", "have a particular element in list item scope", "have a particular element in scope", @@ -9328,9 +11031,15 @@ "have a runnable task", "have an element target node in a specific scope", "have default method steps", + "hdr", + "hdr headroom", + "hdr10 static metadata", + "hdr10+ metadata", + "hdr10+ metadata obu", "head", "head element pointer", "header", + "header errors debug data type", "header list", "header name", "header policy", @@ -9358,41 +11067,53 @@ "hidden annotation", "hidden ruby annotation", "hidden state", - "hidden until found state", + "hidden until found", "hide", "hide a popover", - "hide all popovers", "hide all popovers until", "hierarchically correct main element", "high", "high boundary", + "high dynamic range", "high water mark", + "high word", "high-entropy client hint", "high-level", + "high_bitdepth", "highest end timestamp", "highlight", "highlight overlay", "highlight pseudo-element", "highlight registry", "highlighttext", + "hint", "historical agent cluster key map", "historical bytes", "history handling behavior", "history object", "history policy container", + "history-action activation", + "history-action activation-consuming api", "historyhandling", "hit test", "hit-test", "hit-testing", "hkdfparams", + "hlg", "hmac key export steps", "hmac key import steps", "hmacimportparams", "hmackeyalgorithm", "hmackeygenparams", + "holder", + "holder's", + "holders", + "holders'", "home", "home document", "home sequential focus navigation order", + "home tab context", + "home_tab", "honeydew", "honor user preferences for automatic text track selection", "honorific-prefix", @@ -9400,7 +11121,6 @@ "horizontal axis", "horizontal block flow", "horizontal dimension", - "horizontal offset", "horizontal script", "horizontal typographic mode", "horizontal writing mode", @@ -9409,7 +11129,6 @@ "host and optional port", "host browsing context", "host element", - "host institutions", "host interfaces", "host language", "host parser", @@ -9426,18 +11145,23 @@ "host-source", "hostcalljobcallback", "hostenqueuefinalizationregistrycleanupjob", + "hostenqueuegenericjob", "hostenqueuepromisejob", + "hostenqueuetimeoutjob", "hostensurecanaddprivateelement", "hostensurecancompilestrings", + "hostgetcodeforeval", "hostgetimportmetaproperties", - "hostgetsupportedimportassertions", + "hostgetsupportedimportattributes", "hostloadimportedmodule", "hostmakejobcallback", + "hostname", "hostname options", "hostname pattern is an ipv6 address", "hostpromiserejectiontracker", - "hosts", + "hostsystemutcepochnanoseconds", "hotpink", + "hover (pseudo-class)", "hr", "href", "hsl()", @@ -9459,16 +11183,16 @@ "html resource", "html resources", "html script extraction", - "html serialization", "html-ns", "htmldocument", "htmlmediaelement", - "http authentication", "http compliant", "http fetch", + "http flag", "http header layer division", "http newline byte", "http quoted-string token code point", + "http session", "http tab or space", "http tab or space byte", "http token code point", @@ -9483,12 +11207,13 @@ "http://microformats.org/profile/hcalendar#vevent", "http://microformats.org/profile/hcard", "http://n.whatwg.org/work", - "httpproxy", "human palatability", "hwb()", + "hyperbolic angle", "hyperlink", "hyperlink annotations", "hyperlink auditing", + "hyperlinksuffix", "hyphen-separated matching", "hyphenate", "hyphenate-character", @@ -9517,10 +11242,7 @@ "ice gathering state", "ice servers list", "ice transports setting", - "icecandidate", - "icecandidateerror", - "iceconnectionstatechange", - "icegatheringstatechange", + "icecast header", "icon", "icon purposes", "icon purposes list", @@ -9547,11 +11269,13 @@ "identifies", "identify", "identity", + "identity assertion endpoint", "identity resolving key", "identity transform", "identity transform function", "identity transform stream", "identity-credentials-get", + "ideograph", "ideographic-ink-over baseline", "ideographic-ink-under baseline", "ideographic-over baseline", @@ -9564,8 +11288,8 @@ "idle callback identifier", "idle detection task source", "idle period", - "idle play state", "idp", + "idref", "if aborted", "if()", "iframe", @@ -9576,11 +11300,11 @@ "ignore", "ignore higher-layer caching", "ignore namespace definition attribute", - "ignore state", "ignore unknown", "ignore valid", "ignore-destructive-writes counter", "ignored", + "ignorelist", "iirfilternode", "iirfilteroptions", "ijam", @@ -9588,6 +11312,7 @@ "ill-typed", "illegal", "illuminance", + "illuminance reading parsing algorithm", "illuminance rounding multiple", "illuminance threshold value", "image", @@ -9617,8 +11342,7 @@ "image/png", "image/svg+xml", "imagebitmaprenderingcontext creation algorithm", - "imagecopytexture subresource size", - "images", + "imagecopytexture physical subresource size", "images pending rendering", "ime", "img", @@ -9630,7 +11354,7 @@ "immersive session request is allowed", "immersive xr device", "immutable property", - "immutable value example definition", + "immutable value example term", "impact fraction", "impact region", "implementation", @@ -9651,10 +11375,8 @@ "implicit pointer capture", "implicit release of pointer capture", "implicit row span", - "implicit scope", "implicit signals", "implicit span", - "implicit wait timeout", "implicitly convert a duration to a timestamp", "implicitly named graph", "implicitly potentially render-blocking", @@ -9664,7 +11386,6 @@ "implicitly-named area", "implied document", "implied event loop", - "impolite peer", "import conditions", "import map", "import map authoring requirements", @@ -9672,6 +11393,7 @@ "import maps allowed", "import scripts into worker global scope", "important", + "importattribute record", "importentry record", "importkey", "imports", @@ -9687,7 +11409,6 @@ "in collapsed-borders mode", "in column group", "in effect", - "in error reporting mode", "in fixed mode", "in flow", "in foreign content", @@ -9711,8 +11432,11 @@ "in the future", "in the past", "in the previous frame", + "in the top layer", "in transfers", "in view", + "in-band outline", + "in-bounds index", "in-flow", "in-gamut", "in-parallel steps to create an answer", @@ -9734,14 +11458,21 @@ "includes statement", "includes undefined", "inclusion criteria", + "inclusive-dn-unfenced", "inconsistency", "inconsistent", "incorrectly-closed-comment", "incorrectly-opened-comment", "increase interaction count", "increasing", + "increment a winning bid's k-anonymity count", + "increment ad k-anonymity count", + "increment component ad k-anonymity count", + "increment k-anonymity count", + "increment reporting id k-anonymity count", "increment statement", "increment the marquee current loop index", + "incremental font", "incremental time", "incremental webvtt parser", "incrementally-read loop", @@ -9756,6 +11487,7 @@ "indefinite size", "indefinite span", "independent formatting context", + "independent vowel", "indeterminate value", "index", "index big5", @@ -9779,8 +11511,9 @@ "indexed properties", "indexed property getter", "indexed property setter", - "indexed-colour", + "indexed-color", "indexing", + "indexing expression", "indianred", "indicate focus", "indicated part", @@ -9792,15 +11525,17 @@ "indirection", "indistinguishable by user agent string", "individual", + "individualization", "inert", "infinitely growable", "info", "infobackground", - "inform the navigation api about canceling navigation", - "inform the navigation api about nested navigable destruction", + "inform the navigation api about aborting navigation", + "inform the navigation api about child navigable destruction", "informative", "infotext", "ingest payment method manifests", + "inherent vowel", "inherit", "inherit counters", "inherit its getter", @@ -9810,8 +11545,6 @@ "inherited from", "inherited interfaces", "inherited ns", - "inherited policies", - "inherited policy", "inherited policy for a feature", "inherited property", "inherited time", @@ -9826,6 +11559,7 @@ "initial point", "initial representation for the counter value", "initial scroll position", + "initial scroll target", "initial serialized large-blob array", "initial url", "initial value", @@ -9833,7 +11567,12 @@ "initial-letter", "initial-letter-align", "initial-letter-wrap", + "initial-window-credentialless", + "initial_presentation_delay_minus_one", + "initial_presentation_delay_present", "initialinsertion", + "initialization data", + "initialization data encountered", "initialization data type", "initialization segment", "initialization segment received", @@ -9844,11 +11583,15 @@ "initialize a global object's Scripting Policy", "initialize a global's endpoint list", "initialize a memory object", + "initialize a mouseevent", "initialize a new intersectionobserver", + "initialize a performanceentry", + "initialize a pointerevent", "initialize a quad layer", "initialize a response", "initialize a sensor object", "initialize a table object", + "initialize a uievent", "initialize a worker global scope's policy container", "initialize an active buffer mapping", "initialize an imagedata object", @@ -9856,23 +11599,34 @@ "initialize axes", "initialize buttons", "initialize event timing", + "initialize pointerlock attributes for mouseevent", + "initialize tcpserversocket readable stream", + "initialize tcpsocket readable stream", + "initialize tcpsocket writable stream", "initialize the navigable", + "initialize the navigation api entries for a new document", + "initialize the nested traversable", "initialize the render state", "initialize the session", + "initialize the tcpserversocket readable stream", + "initialize the tcpsocket readable stream", + "initialize the tcpsocket writable stream", + "initialize the udpsocket readable stream", + "initialize the udpsocket writable stream", "initialize the underlying source", "initialize the viewport", + "initialize udpsocket readable stream", + "initialize udpsocket writable stream", "initialize webtransport over http", "initializing", "initializing axes", "initializing buttons", - "initiate a preconnect", "initiate remote playback", "initiate the drag-and-drop operation", "initiator", "initiator origin", "initiator type", "initiators of active picture-in-picture sessions", - "initiatortocheck", "inject a key into a value using a key path", "injection sink", "ink line-ascent", @@ -9889,6 +11643,7 @@ "inline block", "inline block box", "inline box", + "inline check", "inline clip crosser", "inline dimension", "inline documentation for external scripts", @@ -9908,11 +11663,13 @@ "inline xr device", "inline-axis", "inline-base direction", + "inline-block", "inline-end", "inline-level", "inline-level box", "inline-level boxes", "inline-level content", + "inline-level element", "inline-level elements", "inline-size", "inline-size containment", @@ -9922,7 +11679,6 @@ "inlinification", "inlinify", "inner block size", - "inner box-shadow", "inner display type", "inner edge", "inner event creation steps", @@ -9937,11 +11693,13 @@ "input", "input activation behavior", "input audioparam buffer", + "input blank node identifier map", "input buffer", "input byte stream", "input cancel list", "input dataset", "input datasets", + "input document", "input frame", "input id", "input method editor", @@ -9954,8 +11712,6 @@ "input-security", "inputreport", "inputs", - "inputtype", - "inputtype values", "ins", "insecure certificate", "insecure requests policy", @@ -9965,15 +11721,20 @@ "insert a comment", "insert a css rule", "insert a foreign element", + "insert a token", "insert adjacent", + "insert an element at the adjusted insertion location", "insert an html element", "insert children", + "insert entries to map", "inserted into a document", "insertion mode", "insertion point", "insertion steps", "inset", "inset properties", + "inset-area", + "inset-area grid", "inset-block", "inset-block-end", "inset-block-start", @@ -9996,15 +11757,14 @@ "instance root", "instance with respect to", "instant scroll", + "instantiate a config", "instantiate a promise of a module", - "instantiate a webassembly module", "instantiate counter", "instantiate the core of a webassembly module", "integer", "integer literal", "integer scalar", "integer types", - "integerlist", "integrity", "integrity metadata", "integrity-metadata", @@ -10013,6 +11773,7 @@ "intended end position", "intended path", "intent", + "intent concept dictionary", "inter-annotation white space", "inter-base white space", "inter-element whitespace", @@ -10020,12 +11781,20 @@ "inter-segment white space", "interactable", "interactable element", - "interactive", + "interaction data", "interactive content", "interactive-widget", "interactively validate the constraints", + "intercept map", + "interception state", + "interest group", + "interest group ad", "interest group note", + "interest group set", + "interest group set max owners", + "interest group update", "interest groups", + "interest-cohort", "interface", "interface descriptor", "interface member", @@ -10035,6 +11804,7 @@ "interface of a shader", "interface prototype object", "interface types", + "interior nodes", "interlaced png image", "interleaved", "interlinear annotations", @@ -10044,10 +11814,11 @@ "intermediate memory measurement", "internal", "internal algorithm for scanning and assigning header cells", + "internal close watcher", "internal content attribute map", "internal createelementns steps", "internal error", - "internal json clone algorithm", + "internal json clone", "internal key modifier state", "internal object", "internal pause steps", @@ -10056,6 +11827,7 @@ "internal queues", "internal raw uncompiled handler", "internal representation", + "internal resource links", "internal ruby box", "internal ruby boxes", "internal ruby display types", @@ -10066,23 +11838,26 @@ "internally create a new object implementing the interface", "internalretry", "international preferences", - "international preferences.", + "internationalisation", "internationalization", "internationalization components for unicode (icu) library", "internationalized", - "internationalized resource identifier", "interpolate", + "interpolate-size", "interpolation", "interpolation color space", "interpolation procedure", "interpolation sampling", + "interpolation sampling name-token", "interpolation type", + "interpolation type name-token", "interpretation", "interpreter", "interrupt transfers", "intersect the viewport", "intersection observer", "intersectionobserver task source", + "interval", "interval end", "interval start", "intervention reports", @@ -10091,7 +11866,6 @@ "intra-level white space", "intra-ruby white space", "intrinsic dimensions", - "intrinsic height", "intrinsic iteration duration", "intrinsic percentage width of a column", "intrinsic percentage width of a column based on cells of span up to 1", @@ -10103,11 +11877,11 @@ "intrinsic sizing", "intrinsic sizing function", "intrinsic stretch axis", - "intrinsic width", "intrinsic-sizes-invalid", "intrinsic-sizes-valid", "invalid", - "invalid anchor query", + "invalid anchor function", + "invalid anchor-size function", "invalid argument", "invalid at computed-value time", "invalid color", @@ -10115,10 +11889,14 @@ "invalid cookie domain", "invalid element state", "invalid image", + "invalid load", "invalid memory reference", + "invalid pointer", "invalid reference", + "invalid rule error", "invalid selector", "invalid session id", + "invalid store", "invalid value", "invalid value default", "invalid-character-sequence-after-doctype-name", @@ -10127,9 +11905,14 @@ "invalid-reverse-solidus", "invalid-url-unit", "invalidaccesserror", + "invalidate", "invalidate layout functions", + "invalidated", + "invalidates", "invalidstateerror", + "inverse channel transfer function", "inverse context", + "invert", "invisible", "invisible elements", "invisible line box", @@ -10146,6 +11929,7 @@ "invoke custom element reactions", "invoke idle callback timeout algorithm", "invoke idle callbacks algorithm", + "invoke text directives", "invoke the indexed property setter", "invoke the named property setter", "invoked", @@ -10181,6 +11965,8 @@ "iri equality", "iri expanding", "iri mapping", + "iri reference", + "iri references", "irk", "is a duplicate name", "is a group close", @@ -10195,6 +11981,7 @@ "is a registrable domain suffix of or is equal to", "is a search prefix", "is a valid name code point", + "is active", "is allowed to show a file picker", "is an absolute pathname", "is an array index", @@ -10203,19 +11990,24 @@ "is an ipv6 close", "is an ipv6 open", "is ascii", + "is associated with", "is async module", "is at a word boundary", "is auxiliary", "is base allowed for document?", "is closing", + "is composing", + "is currently stalled", + "is debugging only in cooldown or lockout", "is delaying load events", "is detached", + "is document picture-in-picture", "is element enabled", "is element origin", "is element selected", "is gbk", - "is in view", "is initial about:blank", + "is input.elementorigin", "is local", "is modal", "is not a registrable domain suffix of and is not equal to", @@ -10224,10 +12016,13 @@ "is not origin-clean", "is not special", "is origin-keyed", + "is persistent session type?", "is point in path steps", "is point in stroke steps", "is policy compatible", "is popup", + "is running cancel action", + "is same document", "is same-party with its top-level embedder", "is special", "is stale", @@ -10276,8 +12071,15 @@ "isomorphic decode", "isomorphic encode", "isplatformobjectsameorigin", + "issamedocument", "issue a haptic effect", "issued identifiers map", + "issuer", + "issuer's", + "issuerassociations", + "issuerequest", + "issueresponse", + "issuers", "it is appropriate to resolve percentage heights on direct children of a table-cell", "italic correction", "item", @@ -10293,9 +12095,12 @@ "iteration composite operation replace", "iteration count", "iteration duration", + "iteration index", "iteration interval", "iteration progress", "iteration start", + "iteration time", + "iteration time space", "iterationcompositeoperation", "iterations", "iterator prototype object", @@ -10303,15 +12108,16 @@ "iv", "ivory", "jake diagram", + "jamo", "javascript engine task source", "javascript error", "javascript mime type", "javascript mime type essence match", "javascript module script", - "javascript realm", "javascript string", "job", "job queue", + "join-ad-interest-group", "json clone", "json deserialization", "json deserialize", @@ -10329,9 +12135,6 @@ "json-ld processor", "json-ld script element", "json-ld value", - "json-serialize", - "json-serialized", - "json-serializing", "jsonldprocessor-compact-context", "jsonldprocessor-compact-input", "jsonldprocessor-compact-options", @@ -10352,27 +12155,37 @@ "justify-content", "justify-items", "justify-self", - "justify-tracks", "jzazbz", "jzczhz", + "k-anonymity duration", + "k-anonymity server", + "k-anonymity threshold", "k-rate", + "kana", "kbd", "key", "key attribute value", "key chunk", "key code attribute value", + "key commitment", "key export steps", "key frame", "key generator", + "key id", "key import steps", "key input source", "key location", "key mapping", "key modifier name", + "key modifier state", "key path", "key range", + "key session", "key string", + "key system", "key value", + "key(s)", + "keyagreement", "keyalgorithm", "keyboard accessible", "keyboard-inset-bottom", @@ -10388,6 +12201,7 @@ "keyframe effect", "keyframe offset", "keyframe-specific composite operation", + "keyframe-specific easing function", "keygen", "keypad", "keypress", @@ -10401,10 +12215,14 @@ "kin", "kind", "kind strings", - "known prompt handling approaches table", + "known", + "known attributes", + "known concept", + "known elements", + "known key", + "known prompt handlers", "koi8-r", "koi8-u", - "l10n", "l2v", "lab()", "label", @@ -10418,18 +12236,18 @@ "landscape-primary", "landscape-secondary", "lang", + "lang (pseudo-class)", "language", + "language extension", "language map", "language mapping", "language metadata", "language negotiation", "language priority list", "language range", - "language ranges", "language subtag", "language tag", "language tag extension", - "language tags", "language-range", "language-tagged string", "large viewport size", @@ -10439,7 +12257,7 @@ "largeblob", "largeblobkey", "largeblobmapconform", - "largeop", + "largest contentful paint candidate", "largest contentful paint size", "last activation timestamp", "last baseline set", @@ -10453,15 +12271,22 @@ "last decode timestamp", "last event id string", "last frame duration", + "last history-action activation timestamp", "last idle period start time", "last line", "last main-axis baseline set", + "last modification date", + "last mouse dom path", + "last mouse element", + "last mouse move", + "last performance entry id", "last position updated time", - "last presented frame indentifier", + "last presented frame identifier", "last remembered size", "last render opportunity time", "last reported playback position", "last selected source", + "last successful position option", "last usable css region", "last usable region", "last-baseline alignment", @@ -10483,6 +12308,7 @@ "lavenderblush", "lawngreen", "layer name", + "layer_size", "laying out in-place", "layout api children", "layout api container", @@ -10503,27 +12329,27 @@ "layout viewport", "layout-internal", "layout-invalid", - "layout-order", "layout-valid", "layoutchange", "lazy", "lazy load intersection observer", "lazy load resumption steps", - "lazy load root margin", + "lazy load scroll margin", "lazy loading attribute", "lbw", "lch()", "le bonding procedure", "leader()", "leading", - "leading-trim", + "leading bid info", + "leading surrogate", "lean", "left", "left page", "left-hand side", + "left-to-right", "leftover space", "legacy callback interface object", - "legacy character encoding", "legacy character encodings", "legacy color syntax", "legacy extract an encoding", @@ -10533,6 +12359,7 @@ "legacy selector alias", "legacy shorthand", "legacy-clone a traversable storage shed", + "legacy-obtain service worker fetch event listener callbacks", "legacy-uppercased-byte less than", "legacyfactoryfunction identifier", "legacywindowalias identifier", @@ -10540,7 +12367,6 @@ "legend", "lemonchiffon", "length", - "length-percentage", "less than", "let-declaration", "letter", @@ -10550,9 +12376,11 @@ "level", "levelchange", "levels", + "levels of detail", "lexical form", "lexical space", "lexical-to-value mapping", + "lhsvalue", "li", "liaison", "license", @@ -10563,6 +12391,7 @@ "light dismiss open popovers", "light source", "light tree", + "light-dark()", "lightblue", "lightcoral", "lightcyan", @@ -10590,11 +12419,10 @@ "limit the amount of information", "limited max-content contribution", "limited min-content contribution", - "limited to numbers greater than zero", "limited to only known values", "limited to only non-negative numbers", - "limited to only non-negative numbers greater than zero", - "limited to only non-negative numbers greater than zero with fallback", + "limited to only positive numbers", + "limited to only positive numbers with fallback", "limited-quirks mode", "limiting", "line", @@ -10614,6 +12442,7 @@ "line-clamp", "line-descent", "line-ending comment", + "line-fit-edge", "line-grid", "line-height", "line-height-step", @@ -10628,26 +12457,34 @@ "line-snap", "line-under", "linear acceleration", + "linear acceleration sensor", + "linear device acceleration", "linear easing function", "linear easing point", "linear gain unit to decibel", "linear pcm", "linear timing function", "linear()", + "linear-acceleration virtual sensor type", "linear-gradient()", "lineargradient", "linen", - "linethickness", "link", + "link (pseudo-class)", + "link decoration", "link processing options", "link text", "link text selector", "link-parameters", "linked resource", "linked resource fetch setup steps", + "linked resources", + "linkedresource", + "linkedresources", "linkmove", "links", "list", + "list element", "list interfaces", "list item", "list object", @@ -10668,10 +12505,12 @@ "list of elements with class names classnames", "list of elements with namespace namespace and local name localname", "list of elements with qualified name qualifiedname", - "list of first-party sets", "list of full-sized viewports", "list of idle request callbacks", "list of immersive xr devices", + "list of implemented header extensions for receiving", + "list of implemented header extensions for sending", + "list of implemented receive codecs", "list of inherent constrainable track properties", "list of inline sessions", "list of joints", @@ -10684,6 +12523,7 @@ "list of pending play promises", "list of pending text tracks", "list of registered performance observer objects", + "list of related website sets", "list of representations", "list of runnable idle callbacks", "list of scripts that will execute in order as soon as possible", @@ -10702,14 +12542,13 @@ "list of webvtt node objects", "list owner", "list properties", - "list-of-inherent-constrainable-track-properties", + "list-item", "list-style", "list-style-image", "list-style-position", "list-style-type", "list-valued properties", "listed elements", - "listener", "listening agent", "listing", "literal", @@ -10729,11 +12568,11 @@ "load value", "loaddocumentcallback-options", "loaded", + "loadedmodulerequest record", "loading", "loading a document for inline content that doesn't have a dom", "loading image", "loading xml documents", - "loadtime", "local", "local address", "local audio playback suppression", @@ -10761,35 +12600,46 @@ "local storage bucket", "local storage holder", "local time", + "local time space", "local type", "local type name", + "local variable", "local-fonts", "local-urls-only flag", "locale", - "locale aware", "locale fallback", "locale neutral", "locale-aware", "locale-neutral", - "locales", + "localisation", "locality", + "localizable content", "localizable member", "localizable members", + "localizable string", "localizable text", + "localizablestring", + "localizablestrings", "localization", "localization resources", - "localized", + "locally substitute a var()", "localname", - "localvalue", + "localtestingmode", "locate a namespace", "locate a namespace prefix", + "locate nodes using accessibility attributes", + "locate nodes using css", + "locate nodes using inner text", + "locate nodes using xpath", "locating a namespace prefix", + "locating an entry", "location", "location-object navigate", "lock", "lock manager", "lock request", "lock request queue", + "lock requests queue", "lock task queue", "lock the screen orientation", "lock-concept", @@ -10799,8 +12649,12 @@ "locked to a reader", "locked to a writer", "locking the screen orientation", + "lockout period", + "lod", "log event buffer", "log()", + "logged-in", + "logged-out", "logical", "logical combination pseudo-classes", "logical display surface", @@ -10811,17 +12665,29 @@ "logical miplevel-specific texture extent", "logical order", "logical property group", + "logical texel address", "logical width", + "logically connected", "logicalsurface", + "login status map", "logo", "long", + "long animation frame", "long attribute values", + "long cooldown period", + "long cooldown rate", "long long", "long task", "longer", "longhand", "longhand property", "look up a custom element definition", + "look up penultimate redemption", + "look up per-buyer currency", + "look up per-buyer multi-bid limit", + "look up the key commitments", + "look up the latest keys", + "lookup race response", "loop", "loop body", "loosely sorted by offset", @@ -10833,12 +12699,12 @@ "low-entropy hint table", "low-level", "lower-alpha", + "lower-greek", + "lower-latin", "lower-roman", "lowercase letter", "lowerlimitbaselinedropmin", "lowerlimitgapmin", - "lsb", - "lspace", "lstr", "ltr", "luminance", @@ -10868,14 +12734,19 @@ "main-size", "main-start", "majorversion", + "make a background attributionsrc request", "make a component string", "make active", "make an nfc tag permanently read-only", + "make background attributionsrc requests", "make disappear", + "make document unsalvageable", "making a buffer available for reading", "making content read-only", + "managed data task source", "managed state", "managed states", + "managedconfigurationchange", "mandatory data types", "manifest", "manifest fallback chain", @@ -10884,10 +12755,11 @@ "manifest url", "manifest's", "manifest-src", + "manifests", "manual", "manual installation", - "manual state", "manually", + "manufacturer data blocklist", "manufacturer specific data", "map", "map a url to ndef", @@ -10902,6 +12774,7 @@ "map local type to ndef", "map of animation frame callbacks", "map of flattened subjects", + "map of navigables to device prompts", "map of preloaded resources", "map size getter", "map smart poster to ndef", @@ -10910,7 +12783,10 @@ "map to the aspect-ratio property (using dimension rules)", "maplike", "maplike declaration", + "mapping entries", + "mapping entry", "mapping logic", + "mappings", "maps to the dimension property", "maps to the dimension property (ignoring zero)", "maps to the pixel length property", @@ -10934,13 +12810,18 @@ "margin-right", "margin-top", "margin-trim", + "margin::of a box", "mark", + "mark a debug scope complete", "mark a promise as handled", - "mark adapters stale", "mark as handled", "mark as ready", "mark paint timing", "mark resource timing", + "mark_feature_usage", + "mark_fully_loaded", + "mark_fully_visible", + "mark_interactive", "marker", "marker box", "marker image", @@ -10981,9 +12862,10 @@ "mask-repeat", "mask-size", "mask-type", + "masked", "masonry axis", "masonry box", - "masonry-auto-flow", + "masonry layout", "mat2x2f", "mat2x2h", "mat2x3f", @@ -11004,28 +12886,32 @@ "mat4x4h", "match", "match a complex selector against an element", - "match a css production", "match a device filter", + "match a device in prompt", "match a request", "match a selector against a pseudo-element", "match a selector against a tree", "match a selector against an element", - "match an attribution source's filter data against a filter map", - "match an attribution source's filter data against filters", - "match an attribution source's filter data against filters and negated filters", + "match a source map url in a comment", + "match an attribution source against a filter config", + "match an attribution source against filters", + "match an attribution source against filters and negated filters", "match an installed app", "match an mp3 header", "match any filter", + "match cookie", "match cross-origin opener policy values", "match filter values", "match filter values with negation", "match none", + "match router condition", "match service worker registration", - "match the filter", + "match url pattern", "matched capability serialization algorithm", "matches", "matches a filter", "matches about:blank", + "matches about:srcdoc", "matches an integrity metadata list", "matches any collection", "matches any filter", @@ -11068,35 +12954,52 @@ "matrix object", "matrix3d()", "max", - "max aggregatable dedup keys per trigger", - "max aggregatable reports per attribution destination", - "max aggregatable trigger data per trigger", - "max aggregation keys per attribution", - "max attribution reporting endpoints per rate-limit window", - "max attributions per event source", - "max attributions per navigation source", + "max aggregatable attribution reports per attribution destination", + "max aggregatable debug budget per rate-limit window", + "max aggregatable reports per source", + "max aggregation keys per source registration", + "max attribution reporting origins per rate-limit window", + "max attribution scopes per source", "max attributions per rate-limit window", + "max batch size", "max bindings per shader stage", + "max contributions per aggregatable debug report", "max cross size", "max cross size property", "max destinations covered by unexpired sources", - "max entries per filter map", + "max destinations per rate-limit window", + "max destinations per source", + "max destinations per source reporting site per day", + "max distinct trigger data per source", + "max entries per filter data", + "max event-level attribution scopes channel capacity per source", + "max event-level channel capacity per source", "max event-level reports per attribution destination", "max height", "max inner height", "max inner width", - "max items in filters", + "max interest groups total size per owner", + "max length of attribution scope for source", + "max length per aggregation key identifier", + "max length per filter string", + "max length per trigger context id", "max main size", "max main size property", + "max negative interest groups per owner", "max pending sources per source origin", "max queued records", + "max regular interest groups per owner", + "max settable event-level attributions per source", + "max settable event-level epsilon", + "max settable event-level report windows", "max shader stages per pipeline", "max size", "max size property", - "max source expiry", - "max source reporting endpoints per rate-limit window", + "max source reporting origins per rate-limit window", + "max source reporting origins per source reporting site", "max track sizing function", - "max values per filter entry", + "max trigger-state cardinality", + "max values per filter data entry", "max width", "max()", "max-block-size", @@ -11124,8 +13027,8 @@ "maximize window", "maximized window state", "maximum", - "maximum active sessions", "maximum allowed code point", + "maximum allowed target", "maximum allowed value length", "maximum far clip plane", "maximum height", @@ -11134,6 +13037,7 @@ "maximum move distance", "maximum number of actions", "maximum number of retries", + "maximum report contributions", "maximum size", "maximum value", "maximum width", @@ -11143,8 +13047,20 @@ "maxuvretries", "may", "may have a guest browsing context", + "may receive data", "maybe add a part from the pending fixed value", - "maybe continue the navigate event", + "maybe defer and then complete trigger attribution", + "maybe obtain an interest group", + "maybe replace event-level report", + "maybe send pointerdown event", + "maybe send pointerenter event", + "maybe send pointerleave event", + "maybe send pointermove event", + "maybe send pointerout event", + "maybe send pointerover event", + "maybe send pointerup event", + "maybe set the upcoming non-traverse api method tracker", + "maybe show context menu", "maybenonuniform", "maybereadframe", "mb field", @@ -11159,12 +13075,12 @@ "media content image", "media data processing steps list", "media description", + "media element", "media element attributes", "media element event task source", "media element load algorithm", "media element stall timeout", "media element state", - "media elements", "media feature", "media feed broadcast event", "media feed document", @@ -11174,6 +13090,7 @@ "media feed store", "media feed url", "media flinging", + "media group", "media groups", "media image", "media item action", @@ -11210,26 +13127,12 @@ "media()", "media-dependent import", "media-feed link relation type", + "media-progress()", "media-resource-specific text track", "media-src", - "media-time", "mediadevices", "mediaelementaudiosourcenode", "mediaelementaudiosourceoptions", - "mediaencryptedevent", - "mediaencryptedeventinit", - "mediakeymessageevent", - "mediakeymessageeventinit", - "mediakeymessagetype", - "mediakeys", - "mediakeysession", - "mediakeysessiontype", - "mediakeysrequirement", - "mediakeystatus", - "mediakeystatusmap", - "mediakeysystemaccess", - "mediakeysystemconfiguration", - "mediakeysystemmediacapability", "mediarecorder", "mediasource object url", "mediastream", @@ -11255,15 +13158,13 @@ "megabit", "megabits per second", "member", - "member consortia", - "member consortium", + "member association", + "member associations", "member representative in a working group", "member representative in an interest group", "member submission", "member-only", "members", - "memoranda of understanding", - "memorandum of understanding", "memory access", "memory attribution token", "memory footprint", @@ -11285,13 +13186,18 @@ "merging", "merging capabilities", "merror", + "mesh-detection", "message", + "message entity", "message port post message steps", - "messageevent", "met", "meta", + "meta flag", "metadata", "metadata content", + "metadata frames", + "metadata_specific_parameters", + "metadata_type", "meter", "method", "method cache entry match", @@ -11303,7 +13209,6 @@ "microdata", "microdata errors", "microphone information can be exposed", - "microphone-information-can-be-exposed", "microtask", "microtask queue", "microtask task source", @@ -11313,7 +13218,6 @@ "midi interface", "midi message", "midi output port", - "midi system real-time message", "midnightblue", "midpoint-on-the-path", "mifare standard", @@ -11325,10 +13229,7 @@ "mime type record", "mime type sniffing algorithm", "mime types array", - "mimetype", - "mimetypearray", "min", - "min aggregatable report delay", "min cross size", "min cross size property", "min height", @@ -11336,6 +13237,7 @@ "min inner width", "min main size", "min main size property", + "min report window", "min size", "min size property", "min track sizing function", @@ -11405,9 +13307,11 @@ "miniapp zip containers", "miniapps", "minimal culprit attribution", + "minimize a supported mime type", "minimize window", "minimized window state", "minimum", + "minimum allowed target", "minimum allowed value length", "minimum block text size", "minimum buffer binding size", @@ -11418,16 +13322,19 @@ "minimum periodic sync interval across origins", "minimum periodic sync interval for any origin", "minimum readable text size", + "minimum report delay", + "minimum role", "minimum size", "minimum value", "minimum width", + "minority opinion", "minorversion", - "minsize", "mintcream", "minutes", "mip level", "mipmap level", "mirror if necessary", + "mismatch dialog step", "missing color component", "missing value default", "missing-attribute-value", @@ -11445,11 +13352,17 @@ "missing-whitespace-between-attributes", "missing-whitespace-between-doctype-public-and-system-identifiers", "mistyrose", + "mix end value", + "mix notations", + "mix progress value", + "mix start value", "mix()", "mix-blend-mode", "mixed content", + "mixed content limitations", "mixed download", "mixing rules", + "ml task source", "mmultiscripts", "mmultiscripts base", "mmultiscripts postscripts", @@ -11459,11 +13372,6 @@ "mobileosname", "moccasin", "mock capture device set", - "mock sensor", - "mock sensor already created", - "mock sensor reading", - "mock sensor reading values", - "mock sensor type", "mod()", "mode", "model", @@ -11471,32 +13379,36 @@ "modifier key", "modifiers population algorithm", "module", + "module integrity map", "module map", - "module name", "module responses map", "module scope", "module script", "module specifier map", "module type allowed", "module type from module request", + "modulerequest record", "moduluslength", "mojibake", "moment", + "monitor for cdm state changes", "monitor the list of available presentation displays", "monitor the list of available remote playback devices", "monitored", "monitored object", "monitoring incoming presentation connections", + "monochrome", "monolithic", "monospace", "monotonic", "monotonic clock", "monotonically increasing timeline", "month", + "most recent navigation", "most-negative-single-float", "most-positive-single-float", "motionvectortextures", - "mou", + "mouse button bitmask", "mousedown", "mouseenter", "mouseleave", @@ -11504,7 +13416,6 @@ "mouseout", "mouseover", "mouseup", - "movablelimits", "move", "move distance", "move target out of bounds", @@ -11512,14 +13423,12 @@ "mover", "mover base", "mover overscript", + "movie-fragment relative addressing", "mpadded", "mpadded inner box", - "mpadded@depth", - "mpadded@height", - "mpadded@lspace", - "mpadded@voffset", - "mpadded@width", "mpath", + "mpeg audio frame", + "mpeg2ts_timestampoffset", "mphantom", "mprescripts", "mroot", @@ -11528,11 +13437,7 @@ "mrow", "mrst", "ms", - "msb", "mspace", - "mspace@depth", - "mspace@height", - "mspace@width", "msqrt", "msqrt base", "mst", @@ -11596,10 +13501,11 @@ "mutation observer microtask queued", "mute", "mute iframe load", - "muted", "muted errors", "muting", "n", + "n-quads document", + "n-quads parser", "n-triples document", "n-triples parser", "naively convert from cmyk to rgba", @@ -11615,6 +13521,7 @@ "named character reference state", "named character references", "named color", + "named component expression", "named definition", "named elements", "named flow", @@ -11630,12 +13537,15 @@ "named property getter", "named property setter", "named property visibility algorithm", + "named scroll progress timelines", "named string", - "named strings", "named timeline range", - "named view-transition pseudo-element", + "named view progress timelines", + "named view transition pseudo-elements", "namedcurve", "namedflows", + "namedspace", + "names", "namespace", "namespace concept", "namespace iri", @@ -11657,6 +13567,10 @@ "native hit test", "native hit test result", "native hit test results", + "native mesh detection", + "native mesh objects", + "native plane detection", + "native plane objects", "native webgl framebuffer resolution", "natural", "natural aspect ratio", @@ -11675,7 +13589,10 @@ "nav-up", "navajowhite", "navigable", + "navigable cache behavior", + "navigable cache behavior map", "navigable container", + "navigable id", "navigable seen nodes map", "navigable target name", "navigate", @@ -11684,26 +13601,43 @@ "navigate to a fragment", "navigate to a javascript: url", "navigating to a fragment identifier", + "navigating url attributes list", "navigation and traversal task source", - "navigation api method navigation", + "navigation api", + "navigation api id", + "navigation api key", + "navigation api method tracker", + "navigation api method tracker-derived result", + "navigation api state", + "navigation budget epoch", + "navigation budget lifetime", + "navigation can trigger a cross-document view-transition?", + "navigation entropy allowance", + "navigation entropy ledger", + "navigation handler list", "navigation id", + "navigation object", "navigation params", "navigation request", "navigation style values", + "navigation task", "navigation timing entry", "navigation timing type", "navigation type", + "navigation-credentialless", + "navigation-failure", "navigation-override", - "navigation-source trigger data cardinality", + "navigation-params-credentialless", "navigation_bar_background_color", "navigation_bar_text_style", "navigation_bar_title_text", "navigation_style", + "navigational tracking", + "navigationapistate", "navigationtype", "navigator", "navigator compatibility mode", "navigatornetworkinformation", - "navigatorplugins", "navy", "ndc", "ndef", @@ -11713,16 +13647,22 @@ "near", "nearest ancestor autofocus scoping root element", "nearest block ancestor", + "nearest containing group name", + "nearest enclosing diagnostic filter", "nearest inclusive open popover", "nearest inclusive target popover for invoker", "nearest neighbor", + "nearest same-origin root", "nearest scrollport", "need new subpath", "need random access point flag", "needs a browsing context group switch", + "needs scroll adjustment", + "negative interest group", "negative scrollable overflow region", + "negative target info", + "negative targeting", "negotiation-needed flag", - "negotiationneeded", "neighbor", "nel", "nel policies", @@ -11730,6 +13670,7 @@ "nemeth braille", "nest value", "nested context required document policy", + "nested declarations rule", "nested grid", "nested group rules", "nested histories", @@ -11747,9 +13688,12 @@ "network error reports", "network errors", "network interaction", + "network intercept", "network partition key", + "network reporting endpoint", "network request", "network requests", + "network_reporting_endpoints", "networking task source", "neutral value for composition", "never support", @@ -11757,8 +13701,10 @@ "new", "new adapter info", "new broadcastchannel(name)", + "new closewatcher(options)", "new connection setting", "new domparser()", + "new entry", "new information about the user's intent", "new messagechannel()", "new read buffer", @@ -11767,6 +13713,7 @@ "new unique internal value", "new unit value", "new window", + "new_tab_button", "newline", "newlines", "next", @@ -11777,8 +13724,10 @@ "next non-whitespace position", "next sibling not included", "next token", + "next user interaction allows a new group", "next-sibling combinator", "nextid", + "nfc", "nfc adapter", "nfc content", "nfc device", @@ -11794,30 +13743,35 @@ "nfc reading algorithm", "nfc state", "nfc tag", + "nfd", + "nfkc", + "nfkd", "nickname", "nnonext", + "no", "no corresponding role", "no cors", + "no invalidation", "no longer open", - "no pending font loads", - "no popover state", + "no popover", "no role", "no such alert", "no such cookie", + "no such device", "no such element", "no such frame", - "no such handle", - "no such mock sensor", - "no such node", - "no such script", + "no such prompt", "no such shadow root", "no such window", + "no-close-quote", "no-cors-safelisted request-header", "no-cors-safelisted request-header name", + "no-open-quote", "no-quirks mode", "no-sniff flag", "no-translate", "no-validate state", + "no-vary-search", "nobr", "node", "node id map", @@ -11841,11 +13795,11 @@ "noisesuppression", "nominal frame rate", "nominal range", - "non-arrayed texture", "non-ascii code point", "non-ascii ident code point", "non-associable", "non-associable by an entity", + "non-associable by application", "non-associable by the application", "non-autofill credential type", "non-codec", @@ -11859,9 +13813,9 @@ "non-ideographic letters", "non-ideographic numerals", "non-linguistic field", - "non-linguistic fields", "non-local boundary default action", "non-normative", + "non-overridable counter-style names", "non-persistent notification", "non-printable code point", "non-rendered element", @@ -11881,23 +13835,30 @@ "noncharacter-in-input-stream", "none", "none page loading strategy", - "noproxy", "norestriction", "normal", "normal elements", "normal page loading strategy", "normal window state", + "normalisation", + "normalization", + "normalization form c", + "normalization form d", + "normalization form kc", + "normalization form kd", "normalize", "normalize a feature name", + "normalize a module integrity map", "normalize a specifier key", "normalize an algorithm", + "normalize data", "normalize into a token stream", "normalize newlines", "normalize non-finite values", "normalize protocol handler parameters", + "normalize rect", "normalize specified timing", "normalize the source densities", - "normalized dataset", "normalized identifier string", "normalized key value", "normalized timeranges object", @@ -11905,29 +13866,30 @@ "normalized value of a usages list", "normalized view coordinates", "normalized windows drive letter", - "normalizedprotocol", - "normalizedurl", "normative", "noscript", "not additive", "not animatable", - "not displayed", + "not determined", "not enabled", - "not handled", - "not hidden state", + "not hidden", "not in the same tree", "not loaded", "not origin-clean", "not overlapping", "not required", + "not restored reason details", + "not restored reasons", "note", "note_taking", "notfound", "nothing", "notification", + "notification show steps", "notifications", "notify about playing", "notify about rejected promises", + "notify about the committed-to entry", "notify activated state", "notify controller change", "notify error", @@ -11935,9 +13897,10 @@ "notify mutation observers", "notify new reading", "notify pressure observers", + "notify the close watcher manager about user activation", "notsupportederror", "nquads", - "nth()", + "nruntime", "null body status", "null input source", "null key", @@ -11947,6 +13910,9 @@ "number of days in month month of year year", "number of nullable member types", "number of pixels to significance", + "number of platform buckets", + "number of tokens", + "number of user buckets", "numerator", "numeric", "numeric character reference end state", @@ -11954,6 +13920,7 @@ "numeric data types", "numeric literal", "numeric scalar", + "numeric scalar conversion to floating point", "numeric type value", "numeric types", "numeric vector", @@ -11983,6 +13950,7 @@ "observable policy", "observation procedure", "observe a target element", + "observe-browsing-topics", "observed attributes", "observer", "observer buffer", @@ -11992,63 +13960,87 @@ "obsolete registry", "obtain a Scripting Policy from a Structured Header", "obtain a Scripting Policy pair from a response", + "obtain a boolean parameter value", "obtain a browsing context to use for a navigation response", "obtain a connection", "obtain a cross-origin opener policy", "obtain a dedicated/shared worker agent", + "obtain a dictionary structured header value", "obtain a fake report", "obtain a local storage bottle map", "obtain a local storage shelf", "obtain a lock manager", + "obtain a null attribution report", "obtain a physical form", "obtain a randomized response", "obtain a randomized source response", - "obtain a report time from deadline", + "obtain a randomized source response pick rate", + "obtain a report delivery time", + "obtain a report's shared info", + "obtain a reporting endpoint", + "obtain a script runner agent", "obtain a service worker agent", "obtain a session storage bottle map", "obtain a set of css boxes", "obtain a set of event names", + "obtain a set of possible trigger states", + "obtain a shared storage bottle map", + "obtain a shared storage shelf", "obtain a similar-origin window agent", "obtain a site", - "obtain a source expiry", "obtain a storage bottle map", "obtain a storage key", "obtain a storage key for non-storage purposes", "obtain a storage shelf", + "obtain a string-like parameter value", + "obtain a url search variance", + "obtain a url search variance hint", "obtain a websocket connection", "obtain a window memory attribution token", "obtain a worker memory attribution token", "obtain a worker/worklet agent", "obtain a worklet agent", + "obtain an aggregatable attribution report", + "obtain an aggregatable attribution report delivery time", "obtain an aggregatable report", - "obtain an aggregatable report delivery time", - "obtain an attribution source from an anchor", - "obtain an attribution source from window features", + "obtain an aggregatable report body", "obtain an embedder policy", "obtain an event-level report", "obtain an event-level report body", "obtain an event-level report delivery time", "obtain an expanded url", - "obtain and deliver a debug report", - "obtain and deliver a debug report on source registration", - "obtain and deliver a debug report on trigger registration", + "obtain and deliver a verbose debug report", + "obtain and deliver a verbose debug report on source registration", + "obtain and deliver a verbose debug report on trigger registration", + "obtain and deliver an aggregatable debug report", + "obtain and deliver an aggregatable debug report on registration", + "obtain and deliver an aggregatable debug report on source registration", + "obtain and deliver an aggregatable debug report on trigger registration", + "obtain and deliver debug reports on os registrations", + "obtain and deliver debug reports on registration header errors", + "obtain and deliver debug reports on source registration", + "obtain and deliver debug reports on trigger registration", "obtain camera", "obtain camera image", "obtain cpu depth information", - "obtain debug data body on trigger registration", - "obtain debug data on trigger registration", + "obtain default effective windows", "obtain depth at coordinates", - "obtain early deadlines", "obtain hit test results", "obtain hit test results for transient input", "obtain permission", + "obtain rounded source time", + "obtain the aggregation coordinator", "obtain the aggregation service payloads", "obtain the current device", "obtain the encrypted payload", - "obtain the number of report windows", + "obtain the plaintext payload", + "obtain the pre-specified report parameters", + "obtain the private aggregation coordinator", + "obtain the private aggregation coordinator from a string", "obtain the public key for encryption", - "obtain the report time at a window", "obtain their numeric values", + "obtain verbose debug data body on trigger registration", + "obtain verbose debug data on trigger registration", "obtain webgl depth information", "obtaining a window memory attribution token", "obtaining a worker memory attribution token", @@ -12061,6 +14053,7 @@ "octet string", "octet string containing", "octet string containing a bit string", + "oetf", "off", "offerer's system state", "official playback position", @@ -12070,8 +14063,11 @@ "offlineaudiocontextoptions", "offscreen 2d context creation algorithm", "offset", + "offset anchor point", "offset distance", "offset path", + "offset position", + "offset starting position", "offset transform", "offset-anchor", "offset-distance", @@ -12085,6 +14081,7 @@ "oklab()", "oklch()", "ol", + "old entry", "old state", "oldest message", "oldlace", @@ -12095,15 +14092,19 @@ "omin", "omit default flag", "omit graph flag", + "omiterror", "omitted", "on", "on document ready", + "on event contribution cache", + "on event contribution cache entry", "on response available", "on_reach_bottom_distance", - "onbeforeinstallprompt", "oncapturehandlechange", "one permitted sandboxed navigator", "one-dimensional image", + "ongoing api method tracker", + "ongoing navigate event", "ongoing navigation", "online", "only if border is not equivalent to zero", @@ -12111,6 +14112,7 @@ "onscrollend", "onshow", "ontology", + "op_index", "opacity", "opaque", "opaque black", @@ -12125,20 +14127,24 @@ "opaque-host-and-port string", "opaque-redirect filtered response", "open", - "open a database", + "open a bucket", + "open a database connection", + "open properties", "open screen protocol agent", "open subpath", "open the port", "open window algorithm", + "open-quote", "opener browsing context", "opener origin at creation", "operable", "operating coordinate space", + "operatingpointselectorproperty", "operation", "operationerror", "operations chain", + "operators", "optgroup", - "optimal sampling frequency", "optimal viewing region", "optimally useful formatting", "optimum point", @@ -12146,11 +14152,13 @@ "option id", "option-expression", "optional", - "optional api surfaces", + "optional api surface", "optional argument", "optional basic constraints", + "optional data types", "optional features", "optional trigger priority", + "optional unsanitized data types", "optional-ascii-whitespace", "optionality list", "optionality values", @@ -12178,20 +14186,19 @@ "orientationchange", "origin", "origin color", - "origin private file system", + "origin rate-limit window", "origin time", "origin-agent-cluster", "origin-bound one-time code", "origin-bound one-time code message", "origin-clean", "origin-only flag", - "origin2d", - "origin3d", "original base url", - "original font", + "original containing block", "original insertion mode", + "original opener", "original source", - "originally specified", + "originally specified color space", "originate", "originating element", "originating line", @@ -12201,6 +14208,10 @@ "orphans", "orthogonal", "orthogonal flow", + "os debug data type", + "os registration", + "os specific custom map name", + "os specific custom name", "os specific well-known format", "oscillatornode", "oscillatoroptions", @@ -12209,16 +14220,18 @@ "other applicable specifications", "other space separators", "otherwise", + "othographic syllable", "otp-credentials-feature", - "out of bounds access", "out of flow", "out of gamut", "out transfers", + "out-of-band outline", + "out-of-bounds access", + "out-of-bounds index", "out-of-flow", "out-of-gamut premultiplied rgba value", "out-of-memory error", "outer block size", - "outer box-shadow", "outer display type", "outer edge", "outer height", @@ -12232,7 +14245,6 @@ "outer width", "outermost svg element", "outline", - "outline table", "outline-color", "outline-offset", "outline-style", @@ -12248,8 +14260,10 @@ "output tag", "output videoframes", "outputs", + "outset", "outside", "outside and inside", + "outside of home tab scope", "outstanding rejected promises weak set", "over", "overall progress", @@ -12293,6 +14307,7 @@ "override the color scheme", "override-declaration", "override-expressions", + "overrule", "overscroll", "overscroll behavior", "overscroll-behavior", @@ -12304,10 +14319,12 @@ "own autocapitalization hint", "own exposure set", "owned", + "owned child", "owned element", "owned element's", "owned elements", "owning", + "owning document set", "owning element", "p", "package", @@ -12328,6 +14345,7 @@ "padding-left", "padding-right", "padding-top", + "padding::of a box", "pag", "pag proposal", "page", @@ -12336,12 +14354,13 @@ "page box", "page break", "page context", + "page credentialless nonce", "page float", "page footer", "page group", "page header", + "page load", "page load strategy", - "page load timeout", "page loading strategy", "page margin", "page orientation", @@ -12370,6 +14389,11 @@ "pages", "pagination", "paint", + "paint a block's decorations", + "paint a box in a line box", + "paint a document", + "paint a stacking container", + "paint a stacking context", "paint class instances", "paint containment", "paint containment box", @@ -12394,6 +14418,7 @@ "palegoldenrod", "palegreen", "palette", + "palette-mix()", "paleturquoise", "palevioletred", "palpable content", @@ -12407,22 +14432,30 @@ "parallel queue", "param", "param_i", + "param_i_contents", + "parameter return tag", "parameter tag", + "parameter type", + "parametercontentsrequiredtobeuniform.s", "parameterdescriptors", "parameterized", "parameternorestriction", - "parameterrequiredtobeuniform", - "parameterrequiredtobeuniformforreturnvalue", + "parameterrequiredtobeuniform.s", + "parameterreturncontentsrequiredtobeuniform", + "parameterreturnnorestriction", "parameters", "params", "parent", + "parent directionality", "parent element", "parent grid", "parent group", "parent layout", "parent media source", + "parse a block's contents", "parse a boolean feature", "parse a calculation", + "parse a clear-site-data header with buckets", "parse a comma-separated list of component values", "parse a component value", "parse a constructor string", @@ -12437,18 +14470,22 @@ "parse a date string", "parse a declaration", "parse a document rule predicate", + "parse a duration", "parse a duration string", + "parse a filter pair", "parse a global date and time string", "parse a group of selectors", "parse a json string to a javascript value", "parse a json string to an infra value", "parse a jwk", + "parse a key", "parse a list of component values", "parse a list of css page selectors", "parse a list of declarations", "parse a list of rules", "parse a local date and time string", "parse a local type record", + "parse a margin", "parse a media query", "parse a media query list", "parse a mime type", @@ -12461,23 +14498,25 @@ "parse a privatekeyinfo", "parse a relative selector", "parse a response's Content Security Policies", - "parse a root margin", "parse a rule", "parse a sandboxing directive", "parse a selector", "parse a serialized CSP", "parse a serialized CSP list", "parse a server-timing header field", + "parse a signed additional bid", "parse a single range header value", "parse a sizes attribute", "parse a smart-poster action record", "parse a smart-poster size record", "parse a smart-poster type record", + "parse a source aggregatable debug reporting config", "parse a speculation rule", "parse a srcset attribute", "parse a string into an abstract matrix", "parse a style block's contents", "parse a stylesheet", + "parse a stylesheet's contents", "parse a subjectpublickeyinfo", "parse a subset", "parse a text directive", @@ -12486,18 +14525,30 @@ "parse a time-zone offset component", "parse a time-zone offset string", "parse a url", + "parse a url search variance", "parse a vint", "parse a week string", "parse a yearless date component", "parse a yearless date string", + "parse aggregatable debug reporting data", "parse aggregatable dedup keys", + "parse aggregatable filtering id max bytes", + "parse aggregatable key-values", "parse aggregatable trigger data", "parse aggregatable values", "parse aggregation keys", + "parse allowed trusted scoring signals origins", + "parse an adrender ad size", + "parse an adrender dimension value", + "parse an advertising data filter", + "parse an aggregatable debug reporting config", + "parse an aggregation coordinator", "parse an aggregation key piece", "parse an asn.1 structure", "parse an attribution destination", "parse an equivalence map", + "parse an event-trigger value", + "parse an https origin", "parse an import map string", "parse an mp3 frame", "parse an ndef absolute-url record", @@ -12508,37 +14559,60 @@ "parse an ndef text record", "parse an ndef unknown record", "parse an ndef url record", + "parse an optional 64-bit signed integer", + "parse an optional 64-bit unsigned integer", "parse an origin-bound one-time code message", "parse and validate a site", + "parse and validate server response", + "parse and verify a bidding code or update url", + "parse and verify a trusted signals url", "parse as a forgiving selector list", "parse as an integer", "parse attribution destinations", + "parse attribution scope values for source", + "parse attribution scopes", + "parse attribution scopes for trigger", "parse document policy", "parse error", "parse errors", "parse event triggers", + "parse filter config", "parse filter data", + "parse filter values", "parse filters", + "parse html from a string", "parse json bytes to a javascript value", "parse json bytes to an infra value", "parse json from bytes", "parse json into infra values", + "parse max event states", + "parse orientation data reading", "parse records from bytes", + "parse report windows", "parse response's Clear-Site-Data header", "parse response's content security policies", + "parse single-value number reading", "parse source-registration json", "parse speculation rules", + "parse summary buckets", + "parse summary operator", + "parse the fragment directive", "parse the report descriptor", "parse the webvtt cue settings", + "parse top-level report windows", + "parse trigger data into a trigger spec map", + "parse trigger specs", "parse url", + "parse url pattern", + "parse xyz reading", "parsed as a forgiving selector list", "parsed payment method manifest", - "parsedtextdirective", "parser cannot change the mode flag", "parser document", "parser inserted flag", "parser metadata", "parser pause flag", + "parser-aborted", "parsing", "parsing a calculation", "parsing a json string to a javascript value", @@ -12551,19 +14625,25 @@ "parsing json bytes to a javascript value", "parsing json bytes to an infra value", "parsing the blocklist", + "parsing the bluetooth service class id blocklist", "parsing the gatt assigned numbers", + "parsing the gatt blocklist", "parsing the invariant prefix", + "parsing the manufacturer data blocklist", "parsing the report descriptor", "parsing the signature header field", "parsing_init_segment", "parsing_media_segment", "part", "part list", + "part-like pseudo-elements", "partial assignment", + "partial canonicalization function", "partial derivative", "partial dictionary", "partial interface", "partial interface mixin", + "partial invalidation", "partial link text", "partial link text selector", "partial namespace", @@ -12574,20 +14654,23 @@ "participants in a working group", "participants in an interest group", "participate in a working group as an invited expert", + "partition nonce", "party", "pass extraction", "pass through filter", "pass-through", - "passes privacy test", + "passes rate obfuscation test", "passes rate test", "passive fingerprinting", "passive scanning", + "passkey", + "passkey platform authenticator", "password", "past names map", - "paste", - "patch request header", - "patchrequest", - "patchresponse", + "patch application algorithm", + "patch format", + "patch map", + "patch map entries", "patent advisory group", "patent review draft", "patent review drafts", @@ -12614,9 +14697,12 @@ "pause-before", "paused for in-band content", "paused for user interaction", - "paused play state", + "pausing all input sources", "payee", "payer", + "payer detail changed algorithm", + "payer details", + "payerdetailchange", "payload field", "payload length field", "payment", @@ -12628,11 +14714,10 @@ "payment method manifest", "payment method provider", "payment request is showing", - "payment-permission", "payment-relevant browsing context", "paymentmethodchange", "paymentrequest updated algorithm", - "paymentrequest(methoddata, details)", + "paymentrequest(methoddata, details, options)", "paymentrequest.paymentrequest()", "pbkdf2params", "pcenchar", @@ -12649,6 +14734,7 @@ "pending animation event queue", "pending external speculation rule resource", "pending first pointer down", + "pending image record", "pending immersive session", "pending initial intersectionobserver targets", "pending key downs", @@ -12663,20 +14749,30 @@ "pending processor construction data", "pending render state", "pending request", + "pending resource-timing start time", "pending scroll event targets", + "pending shared storage budget debit", "pending table character tokens", "pending text track change notification flag", + "pending top layer removals", "pending write tuple", "pending-substitution value", + "pendingdisposition", + "pendingexception", + "per buyer bid generator", + "per signals url bid generator", + "per table brotli patch", + "per-type virtual sensor metadata", "perceivable", "percent encoded", "percent encoding", "percent-column", + "percent-decode a text directive term", "percent-encoded byte", "percent-encoding", "percentage", "percentage contribution", - "percentencodedchar", + "percentencodedbyte", "perform a background fetch", "perform a microtask checkpoint", "perform a navigation api traversal", @@ -12687,6 +14783,8 @@ "perform automatic text track selection", "perform implementation-specific action dispatch steps", "perform pending transition operations", + "perform shared checks", + "perform storage maintenance", "perform vibration", "performance", "performance entry buffer", @@ -12706,6 +14804,7 @@ "periodicwaveoptions", "peripheral", "permanent identifier", + "permanent identifier(s)", "permanently de-identified", "permissible worker", "permission", @@ -12715,11 +14814,15 @@ "permission state", "permission store", "permission store entry", + "permissions", "permissions policy", + "permissions policy state", "permissions policy violation reports", "permissions rp id", "permissions task source", "permissions-policy", + "permissions-policy-report-only", + "permissions-source-expression", "permissionstatus update steps", "persisted replace state", "persisted user state", @@ -12735,6 +14838,8 @@ "phases", "phony assignment", "photo", + "phrase boundary", + "phrase boundary detection", "phrasing content", "physical", "physical address", @@ -12750,7 +14855,6 @@ "physical right", "physical top", "physical unit", - "physical units", "pick an encoding for a form", "picked", "picture", @@ -12781,6 +14885,7 @@ "pixel manipulation", "pixel unit", "pixel-column", + "pixels", "place-content", "place-items", "place-self", @@ -12792,17 +14897,22 @@ "plain type", "plaintext", "plaintext state", + "plaintext-only", "plan to navigate", "planar", + "plane", + "plane-detection", "planned navigation", "platform", "platform attachment", "platform authenticators", "platform collector", + "platform collector mapping", + "platform contribution buckets", + "platform contribution priority weight", "platform credential", "platform descriptor", "platform key-agreement key", - "platform name", "platform object", "platform sensor", "platform version resource", @@ -12812,8 +14922,8 @@ "play an animation", "play effects with type", "play next episode", - "play state", "play-during", + "playback control", "playback direction", "playback rate", "playback volume", @@ -12822,20 +14932,17 @@ "playing", "plug-ins", "plugin", - "pluginarray", "plugins array", "plum", + "plural rules operands record", "plus-darker", "plus-lighter", "pmi", "png datastream", - "png decoder", "png editor", - "png encoder", - "png file", "png four-byte unsigned integer", "png image", - "png signature", + "png two-byte unsigned integer", "point", "pointer", "pointer capture", @@ -12846,14 +14953,19 @@ "pointer input source", "pointer interaction value map", "pointer is drag set", + "pointer lock state", "pointer parameter tag", "pointer type", "pointer-events", "pointer-interactable", "pointer-interactable element", "pointer-interactable paint tree", + "pointer-lock options", + "pointer-lock target", "pointercancel", "pointerdown", + "pointerlockchange", + "pointerlockerror", "pointermove", "pointerparametermaybenonuniform", "pointerparameternorestriction", @@ -12873,26 +14985,25 @@ "policy-controlled client hints features", "policy-controlled feature", "policy-token", - "polite peer", "poly", "polygon", "polyline", "pop a ruby level", "pop tag", + "popover close watcher", "popover focusing steps", "popover invoker", - "popover invokers", "popover light dismiss", "popover pointerdown target", + "popover showing or hiding", "popover target attribute activation behavior", - "popover target attributes", "popover target element", - "popover toggle task", + "popover toggle task tracker", "popover visibility state", - "populate rotation matrix", "populate the bluetooth cache", "populate the list of pending text tracks", "populate the pose", + "populate with html/head/body", "popup sandboxing flag set", "port 1", "port 2", @@ -12915,9 +15026,18 @@ "poses must be limited", "position", "position box", - "position fallback list", + "position fallback origin", + "position option", + "position options list", "position state", - "position-fallback", + "position-anchor", + "position-area", + "position-area grid", + "position-try", + "position-try-fallbacks", + "position-try-options", + "position-try-order", + "position-visibility", "positional alignment", "positioned", "positioned box", @@ -12925,13 +15045,14 @@ "positioning rectangle", "positioning scheme", "positioning schemes:", + "positive-integer", "possible blocking tokens", "possibly appropriate alternatives", - "possibly pending font loads", "possibly update the key generator", "post", "post resource", "post-alignment shift", + "post-connection steps", "post-multiplied", "post-multiply", "post-navigation checks", @@ -12939,18 +15060,18 @@ "post-prerendering activation geolocation watch process id", "postal-code", "posted message task source", - "poster", + "posted task task source", "poster frame", "posture", "posture values table", "potential crop-target", "potential destination", "potential event target", + "potential-trigger-set", "potentialcustomelementname", "potentially active", "potentially add a largestcontentfulpaint entry", "potentially delays the load event", - "potentially playing", "potentially process scroll behavior", "potentially render-blocking", "potentially reset the focus", @@ -12960,15 +15081,15 @@ "potentially trustworthy url", "pow()", "powderblue", - "power preference", - "power-preference-default", - "power-preference-high-performance", - "power-preference-low-power", + "power efficient", "powerful feature", "powerless color component", + "pq", "pr", "pragma-set default language", "pre", + "pre-base", + "pre-base vowel", "pre-configured minimum pin length", "pre-flight", "pre-insert", @@ -12978,7 +15099,10 @@ "pre-multiplied data type name", "pre-multiply", "pre-remove", + "pre-specified report parameters", + "pre-specified report parameters map", "preceding element", + "precomposed", "preconnect", "predeclared", "predicate", @@ -12996,6 +15120,8 @@ "preferred height", "preferred inline size of a glyph stretched along the block axis", "preferred line height", + "preferred native depth sensing capability", + "preferred native depth sensing format", "preferred order", "preferred resolution", "preferred size", @@ -13011,6 +15137,7 @@ "prefix index", "prefix map", "prefixed", + "prefixed name", "preload", "preload entry", "preload key", @@ -13031,12 +15158,14 @@ "prepare to run a callback", "prepare to run script", "preparing the platform runtime", - "prerender", "prerender candidate", + "prerender record", "prerendering navigable", "prerendering traversable", "prescan a byte stream to determine its encoding", "present an install prompt", + "present coordinates", + "presentation", "presentation attributes", "presentation connection", "presentation connection state", @@ -13055,6 +15184,7 @@ "presentation order", "presentation request url", "presentation request urls", + "presentation response", "presentation start time", "presentation style", "presentation time", @@ -13073,14 +15203,17 @@ "presentation-url-availability-event", "presentation-url-availability-request", "presentation-url-availability-response", - "presentational hints", + "presentational hint", "presentations", "presenting an install prompt", "preserved white space", "pressure observer task queued", + "pressure source", + "pressure source sample", "pressure states", "pressureobserver task source", "preventdefault", + "preview", "previous block", "previous context", "previous current time", @@ -13088,13 +15221,15 @@ "previous frame starting point", "previous frame transform-indifferent starting point", "previous frame visual representation", + "previous win", "previously focused element", - "previously reported paints", + "previousproof", "prf", "primary", "primary action", "primary affiliation", "primary content element", + "primary entry page", "primary filter primitive tree", "primary image track", "primary input source", @@ -13109,7 +15244,6 @@ "primitive appearance", "primitive restart value", "primitive types", - "primitiveprotocolvalue", "principal block-level box", "principal box", "principal writing mode", @@ -13121,23 +15255,32 @@ "priority", "priority candidates", "privacy feature", + "privacy feature in an observer", + "privacy policy", + "privacypolicy", "private address", "private field values", "private network access check", "private network request", + "private-aggregation", + "private-network-access-id", + "private-network-access-name", "privatekey", "privileged no-cors request-header name", + "problemdetails", "procedure timeouts", "process a base url string", "process a color member", + "process a fetch storage access for bounce tracking mitigations", "process a file handler item", - "process a fragment directive", + "process a general storage access for bounce tracking mitigations", "process a key action", "process a keyframe-like object", "process a keyframes argument", "process a link header", "process a miniapp manifest", "process a miniapp package", + "process a network event", "process a null action", "process a pause action", "process a pointer action", @@ -13149,26 +15292,37 @@ "process a timing argument", "process a tokenizing error", "process a urlpatterninit", + "process a web authentication assertion for bounce tracking mitigations", "process a wheel action", "process accept types", + "process an attribution eligible response", "process an attribution source", + "process an attribution source response", + "process an attribution trigger response", + "process an attributionsrc response", "process an html paste event", "process an image resource from json", "process an image that finished loading", "process an imageresource from an api", "process an input source action sequence", "process an item", - "process and consume fragment directive", "process blob parts", "process capabilities", + "process close watchers", + "process contributions for a batching scope", "process cookie changes", + "process document load for bounce tracking", "process dt or dd", "process early hint headers", "process fragment", "process hash for init", "process hostname for init", "process image resources", + "process image that finished loading", + "process internal resource link", + "process internal resource links", "process link headers", + "process navigation start for bounce tracking", "process password for init", "process pathname for init", "process pending external speculation rule resources", @@ -13178,6 +15332,9 @@ "process port for init", "process protocol for init", "process remote tracks", + "process response received for bounce tracking", + "process scoread output", + "process scroll behavior", "process search for init", "process the addition of a remote track", "process the app_id member", @@ -13191,6 +15348,7 @@ "process the display member", "process the file_handlers member", "process the frame attributes", + "process the home_tab member", "process the id member", "process the iframe attributes", "process the lang member", @@ -13198,6 +15356,7 @@ "process the lock request queue", "process the miniapp manifest", "process the new_note_url member", + "process the new_tab_button member", "process the note_taking member", "process the orientation member", "process the pages member", @@ -13207,15 +15366,19 @@ "process the platform version's release_type member", "process the platform version's target_code member", "process the platform_version member", + "process the private aggregation contributions for an auction", "process the protocol_handlers member", "process the related_applications member", "process the removal of a remote track", "process the req_permissions member", + "process the result of a begintransaction", "process the scope member", + "process the scope_patterns member", "process the share_target member", "process the shortcuts member", "process the speculation-rules header", "process the start_url member", + "process the tab_strip member", "process the url member of an application", "process the version member", "process the version's code member", @@ -13235,7 +15398,9 @@ "process the window's navigation_style member", "process the window's on_reach_bottom_distance member", "process the window's orientation member", + "process top layer removals", "process unconsumed launch params", + "process updateifolderthanms", "process username for init", "process vertices", "process()", @@ -13243,16 +15408,17 @@ "processing a manifest", "processing a miniapp manifest", "processing a queue", + "processing algorithm", "processing an input buffer", "processing an item", "processing blob parts", - "processing equivalence", "processing mode", "processing model", "processing modes", "processing the backup element queue", "processing the digital signatures", "processing the launch_handler member", + "processing the manifest", "processing the miniapp manifest", "processing units", "processing vibration patterns", @@ -13269,23 +15435,46 @@ "product id", "product name", "product of two unit maps", + "profile", "profile fundamentals", + "profile(s)", + "profiles", "profiling session", "program error", "progress", + "progress end value", + "progress start value", + "progress value", + "progress()", "progress-based timeline", + "progressiondirection", "progressive image", "progressive image frame generation", + "prohibited", "proleptic gregorian calendar", "proleptic-gregorian date", "prolog", + "promise", + "promise rejection delay", "promise type", - "prompt", + "promote an upcoming api method tracker to ongoing", + "prompt handler configuration", "prompt the user to choose", "prompting the user to choose", + "proof", + "proof chain", + "proof generation", + "proof graph", + "proof purpose", + "proof serialization algorithm", + "proof set", + "proof verification", + "proof verification algorithm", + "proofgraph", + "proofpurpose", + "proofvalue", "propagate", "propagation", - "propagation path", "proper instance", "proper subgraph", "proper table child", @@ -13310,36 +15499,61 @@ "protected mode", "protected term definition", "protected worker", - "protocol", "protocol component matches a special scheme", "protocol handler description", - "protocolversion", "provisioning profile", "provoking vertex", + "proximity", + "proximity reading parsing algorithm", "proximity sensor", + "proximity to the viewport", + "proximity virtual sensor type", + "proximity-sensor-feature", "proxy", "proxy configuration", "proxy configuration object", "proxy-authentication entry", - "proxyautoconfigurl", "proxytype", "pseudo-class", + "pseudo-class:::first", + "pseudo-class:::left", + "pseudo-class:::right", "pseudo-classes", + "pseudo-classes:::active", + "pseudo-classes:::focus", + "pseudo-classes:::hover", + "pseudo-classes:::lang", + "pseudo-classes:::link", + "pseudo-classes:::visited", "pseudo-compound selector", "pseudo-element", "pseudo-element root", "pseudo-element tree", "pseudo-elements", + "pseudo-elements:::after", + "pseudo-elements:::before", + "pseudo-elements:::first-letter", + "pseudo-elements:::first-line", + "pseudo-units", + "pstevaluate", + "pstfinalize", + "pstkeycommitments", "public", "public address", "public bluetooth address", "public device address", + "public key", "public key credential", "public key credential source", "public participants", + "publication context", + "publication date", + "publication manifest", "publication resource", + "publication type", "publicexponent", "publickey", + "publickey-credentials-create-feature", "publickey-credentials-get-feature", "publish", "publishing web site", @@ -13348,8 +15562,9 @@ "pullbidirectionalstream", "pulldatagrams", "pullunidirectionalstream", + "pulse()", + "purge expired bit debits from all navigation entropy ledgers", "purple", - "push", "push a ruby annotation", "push a ruby level", "push endpoint", @@ -13362,6 +15577,7 @@ "pushsubscriptionchange", "q", "quad", + "quad width", "quadrilateral", "quads", "qualified name", @@ -13370,24 +15586,29 @@ "quantization", "query", "query a permission", + "query ad k-anonymity count", "query cache", + "query component ad k-anonymity count", "query container", "query container name", "query cookies", "query file system permission", - "query parameter", + "query generated bid k-anonymity count", + "query k-anonymity count", "query percent-encode set", - "query set state", + "query reporting id k-anonymity count", "query the \"bluetooth\" permission", "query the bluetooth cache", - "query the sanitizer config", + "queryhandwritingrecognizer(constraint)", "querying file system permission", "queue", + "queue a \"message\" event", "queue a bgfetch task", "queue a contact picker task", "queue a control message", "queue a cross-origin embedder policy corp violation report", "queue a cross-origin embedder policy inheritance violation", + "queue a details toggle event task", "queue a fetch task", "queue a global task", "queue a global task for GPUDevice", @@ -13395,11 +15616,11 @@ "queue a microtask", "queue a mutation observer microtask", "queue a mutation record", + "queue a navigation performanceentry", "queue a performanceentry", "queue a popover toggle event task", "queue a pressure observer task", "queue a record", - "queue a report for delivery", "queue a scheduler task", "queue a signed exchange report", "queue a storage task", @@ -13417,18 +15638,23 @@ "queue an element task", "queue an intersection observer task", "queue an intersectionobserverentry", + "queue an ml task", + "queue reports for delivery", "queue the navigation timing entry", "queue the performanceobserver task", "queue timeline", + "queue timeline property", "queue violation reports for accesses", - "queue-timeline example definition", - "queuing a scheduler task", + "queue-timeline example term", "queuing strategy", "quirks mode", "quotaexceedederror", + "quotation mark system", + "quote depth", "quotes", "qwerty", "r", + "race response", "radial-gradient()", "radialgradient", "radical elements", @@ -13447,21 +15673,24 @@ "random()", "random-caching key", "random-item()", - "randomized aggregatable report delay", - "randomized event-source trigger rate", - "randomized navigation-source trigger rate", + "randomized aggregatable attribution report delay", + "randomized null attribution report rate excluding source registration time", + "randomized null attribution report rate including source registration time", + "randomized report delay", + "randomized response output configuration", "randomized source response", "range", "range context", + "range diagnostic filter", + "range end", "range removal", - "range-request optimized font", - "range-request threshold", - "rangelist", + "range start", "rasterization mask", "rasterizationpoint", "rasterize", "rasterize polygon", "rate limiting", + "rate obfuscation", "rate-limit scope", "ratio", "ratio-dependent axis", @@ -13497,8 +15726,11 @@ "rdf-compatible xsd types", "rdf/xml document", "rdf:html", + "rdf:json", "rdf:xmlliteral", + "rdfc-1.0", "rdfd1", + "rdfd1a", "rdfd2", "rdfdataset-add-graph", "rdfdataset-add-graphname", @@ -13522,9 +15754,8 @@ "rdfs9", "re-snap", "re-used graphics", - "react to navigate event result", + "react to changes in the environment", "react to the user revoking permission", - "reactivate", "read a body", "read access", "read as a font representation", @@ -13541,42 +15772,46 @@ "read request", "read the imports", "read the resource header", + "read web custom format", "read-into request", "read-loop", + "read-only depth-stencil", "read-only mode", "read-only parameter", "read/write mode", + "readEncodedData", "readable byte stream", "readable byte stream queue entry", "readable side", "readable stream", "readable stream reader", - "readencodeddata", "reader", - "reader error", "readiness state", "reading a body", - "reading flag", + "reading progression direction", "reading quantization algorithm", "reading system", "reading systems", "reading timestamp", - "reading value", - "reading-order", + "reading-flow", "ready", "ready for post-load tasks", "ready to be parser-executed", + "real time reporting contribution", + "real time reporting contributions map", "real-world environment", "realm id", "reason", + "reasons", + "reasons array", "reassociation", "rec", "rec track", "rec2100-hlg", + "rec2100-linear", "rec2100-pq", "rec709 color space", "receive a message", - "receive an rtcdatachannel message", "receive-algorithm", "received bytes", "received ip address", @@ -13597,11 +15832,13 @@ "recognized key format values", "recognized key type values", "recognized key usage values", + "recognized types", "recommendation", "recommendation track", "recommendation-track", "recommended", "recommended motion vector texture resolution", + "recommended range and default for a webauthn ceremony timeout", "recommended use", "recommended webgl color texture resolution", "recommended webgl depth texture resolution", @@ -13612,15 +15849,34 @@ "reconsume the current input code point", "reconsume the current input token", "record", + "record a redemption record", + "record a user activation", + "record classic script creation time", + "record classic script execution start time", "record connection timing info", "record identifier", + "record module script execution start time", "record of license destruction", + "record pause duration", + "record redemption timestamp", + "record rendering time", + "record stateful bounces for bounce tracking", + "record task end time", + "record task start time", + "record timing info for event listener", + "record timing info for microtask checkpoint", + "record timing info for promise resolver", + "record timing info for timer handler", + "record timing info for user callback", "record type", + "record(s) of license destruction", "record-namespace-loop", "recording the input", "recording the namespace information", + "records of license destruction", "rect", "rectangle", + "rectangle intersection", "rectangular orthogonal color", "rectify a csscolorangle", "rectify a csscolornumber", @@ -13628,18 +15884,26 @@ "rectify a csscolorrgbcomp", "rectify a keywordish value", "rectify a numberish value", - "rectifying a numberish value", "recursively emit context created events", + "recursively wait until configuration input promises resolve", "red", "red eye reduction", + "redeemrequest", + "redeemresponse", + "redemption record", + "redemptionrecords", + "redemptiontimes", "redirect chain", "redirect count", "redirect status", "reduce accuracy", - "reduced image", + "reduced images", "reestablish the connection", + "refer to", + "reference", "reference blank node identifier", "reference box", + "reference combinator", "reference image", "reference pixel", "reference space is supported", @@ -13655,13 +15919,13 @@ "referrer-policy", "referrerpolicy", "referrerurl", - "refers to", "reflect", "reflected content attribute name", "reflected idl attribute", "reflected target", "refresh", "refresh state", + "refresh the memory buffer", "region", "region break", "region chain", @@ -13672,20 +15936,24 @@ "register a protocol handler", "register a system key press handler", "register an import map", + "register bids for fordebuggingonly reports", "register file handlers", + "register reporting metadata", "registered", "registered class constructors map", "registered custom property", - "registered extension", "registered observer", "registered observer list", "registered performance observer", "registered storage endpoints", "registerfake(type, classconstructor)", "registerprotocolhandler() automation mode", + "registrable origin label", + "registrar", "registration", "registration ceremony", "registration extension", + "registration info", "registration map", "registration state", "registry", @@ -13699,9 +15967,11 @@ "registry table", "registry track", "regular attribute", + "regular interest group", "regular operation", "reification", "reified as a cssstylevalue", + "reifier", "reify a <transform-function>", "reify a <transform-list>", "reify a color value", @@ -13712,41 +15982,48 @@ "reify a var() reference", "reify an identifier", "reify as a cssstylevalue", + "reifying triple", "reinitialize url", "reject", "reject and nullify the current lock promise", "reject job promise", "reject pending play promises", + "reject the finished promise", "rejected", "rejecting", "rejection", "rel", "related", "related application", - "related construct", "related member", + "related origins validation procedure", + "related website set", "relationship", "relationship discovery", "relationship strings", "relationships", "relative color", + "relative device orientation", "relative high resolution coarse time", "relative high resolution time", - "relative iri", - "relative iris", + "relative iri reference", + "relative iri references", "relative length", "relative length unit", + "relative orientation sensor", "relative path", "relative position", "relative positioning", "relative selector", "relative selector anchor elements", "relative units", + "relative-orientation virtual sensor type", "relative-url string", "relative-url-with-fragment string", "relatively position", "relatively positioned box", "relatively-positioned", + "release", "release a lock", "release a read lock", "release a wake lock", @@ -13763,11 +16040,11 @@ "releasing pointer capture", "relevant", "relevant agent", - "relevant animation", "relevant animations", "relevant animations for a subtree", "relevant child nodes", "relevant document", + "relevant frame timing info", "relevant global object", "relevant mutations", "relevant name to cache map", @@ -13783,6 +16060,7 @@ "reload a document", "reload browsing contexts", "reload pending", + "relying parties", "relying party", "relying party identifier", "rem()", @@ -13792,9 +16070,7 @@ "remote", "remote end", "remote end definition", - "remote end event trigger", "remote end steps", - "remote end subscribe steps", "remote ends", "remote event task source", "remote playback device", @@ -13815,13 +16091,14 @@ "remote-playback-termination-event", "remote-playback-termination-request", "remote-playback-termination-response", - "remotereference", "remove", + "remove a bucket", + "remove a connection", "remove a css rule", "remove a css style sheet", "remove a permission store entry", - "remove a report from the cache", "remove a track", + "remove all connections", "remove all credentials", "remove all event listeners", "remove an animation effect", @@ -13829,13 +16106,21 @@ "remove an attribute", "remove an attribute by name", "remove an attribute by namespace and local name", + "remove an element from the top layer immediately", "remove an event listener", "remove an input source", + "remove associated event-level reports and rate-limit records", "remove client hints from redirect if needed", "remove credential", "remove device from storage", + "remove empty arrays", "remove event", + "remove from the top layer immediately", + "remove or update sources with incompatible attribution scope fields", "remove replaced animations", + "remove sources with unselected attribution scopes", + "remove sources with unselected attribution scopes for destination", + "remove the fragment directive", "remove the track", "remove virtual authenticator", "removed from a document", @@ -13843,7 +16128,10 @@ "removesourcebuffer", "removetrack", "removing steps", + "rename waiting period", "render", + "render document to a canvas", + "render in the top layer", "render quantum", "render quantum size", "render stages", @@ -13856,6 +16144,7 @@ "render-blocking element set", "render-blocking mechanism", "render-blocking status", + "renderable", "renderable element", "renderable format", "renderable texture view", @@ -13865,10 +16154,12 @@ "rendered text collection steps", "rendered text fragment", "rendering opportunity", + "rendering task source", "rendering thread", "rendering tree", "renderstate", - "rendertime", + "renounce", + "renunciation", "reorder", "repeat()", "repeatable list", @@ -13888,17 +16179,22 @@ "replacement error returned", "report", "report a Scripting Policy violation", + "report a private aggregation event", "report a warning to the console", - "report an error", + "report an event", "report an exception", "report content security policy violations for request", "report count tag", + "report creation and scheduling steps", "report descriptor", + "report element timing", + "report frame timing", "report id tag", "report image element timing", + "report largest contentful paint", "report latest reading updated", - "report long tasks", "report paint timing", + "report result", "report size tag", "report text element timing", "report the exception", @@ -13906,17 +16202,23 @@ "report the layout shift sources", "report type", "report validity steps", + "report win", + "report window", + "report window list", "report-only document policy", "report-only reporting endpoint", "report-only value", "report-to", "report-uri", "report_to", + "reporting cache", "reporting endpoint", + "reporting entropy allowance", "reporting frequency", "reporting group", "reporting observer", "reporting rate", + "reporting result", "reporting-endpoints", "represent", "representation", @@ -13926,15 +16228,19 @@ "represents a standard gamepad axis", "represents a standard gamepad button", "represents a web element", + "represents a web frame", + "represents a web window", "req_permissions", "request", "request a lock", "request a position", + "request an element to be removed from the top layer", "request bluetooth devices", "request body", "request error steps", "request file system permission", "request hit test", + "request id", "request matches cached item", "request method", "request permission to sign-up", @@ -13943,37 +16249,45 @@ "request queue", "request referrer", "request referrer policy", + "request removal from the top layer", "request response list", "request routing", "request sensor access", + "request storage access", "request the \"usb\" permission", "request the xr permission", + "request to close", "request to present an install prompt", "request url", "request-body-header name", "request-required-document-policy", "request_headers", "requested features", - "requested sampling frequency", + "requested sampling interval", "requested sampling rate", "requested url", "requesting file system permission", "requesting permission to use", - "requestmidiaccess", "require all flag", "require well-formed", "require-document-policy", "require-trusted-types-for-directive", "required", + "required anchor reference", "required constraints", "required csp", "required document policy", "required features", + "required partition key attributes", "required-ascii-whitespace", "requiredalignof", - "requiredtobeuniform", + "requiredtobeuniform.error", + "requiredtobeuniform.info", + "requiredtobeuniform.s", + "requiredtobeuniform.warning", "requires dropped entries", "requires storing the policy container in history", + "requires-directive", "reregisteredwhilefiring", "rescinded candidate recommendation", "rescinded recommendation", @@ -13987,12 +16301,11 @@ "reset audioencoder", "reset button", "reset implicitly", - "reset mock capture devices", + "reset observation window", "reset parser state", "reset the form owner", "reset the input state", "reset the insertion mode appropriately", - "reset the memory buffer", "reset the rendering context to its default state", "reset videodecoder", "reset videoencoder", @@ -14009,21 +16322,30 @@ "resolution", "resolvable private address resolution procedure", "resolve", + "resolve @view-transition rule", "resolve a blob url", "resolve a geolocation promise", + "resolve a module integrity metadata", "resolve a module specifier", "resolve a relative path", + "resolve a typed value", "resolve a url-like module specifier", + "resolve a var() function", + "resolve an arbitrary substitution function", + "resolve an argument", "resolve an imports match", "resolve an origin", "resolve get client promise", + "resolve inbound cross-document view-transition", "resolve indices", "resolve job promise", "resolve pending play promises", "resolve percentage heights in table-cell content:", + "resolve the finished promise", "resolve the requested features", "resolved", "resolved descendant node", + "resolved local value", "resolved type", "resolved value", "resolved value special case property", @@ -14031,6 +16353,7 @@ "resolved value special case property like height", "resolved value special case property like top", "resolved-table-width", + "resolvedbinding record", "resolves", "resolveuuidname", "resolving GPUTextureAspect", @@ -14039,11 +16362,10 @@ "resource document", "resource fetch algorithm", "resource header", - "resource hint link", "resource identifier", - "resource identifiers", "resource info", "resource interface of a shader", + "resource list", "resource metadata management", "resource name", "resource selection algorithm", @@ -14070,12 +16392,14 @@ "restore scroll position data", "restore the history object state", "restore the window", - "restoring scroll position data", + "restrictable mediastreamtrack", + "restricted", + "restriction mechanism", + "restriction-states", "restrictions for contents of script elements", + "restrictiontarget production", "restrictownaudio", "result", - "resulting url record", - "resulting url string", "resume", "resume nfc", "resume steps", @@ -14084,7 +16408,9 @@ "retrieve a key from an object store", "retrieve a miniapp zip container", "retrieve a preferred prefix string", + "retrieve a redemption record", "retrieve a referenced value from an index", + "retrieve a token", "retrieve a value from an index", "retrieve a value from an object store", "retrieve multiple keys from an object store", @@ -14102,21 +16428,55 @@ "returns", "returnvaluemaybenonuniform", "rev", + "reveal", "reverse an animation", "reverse property", "revoke bluetooth access", - "revoke sensor permission", "rewind", "rewind and set state", + "rewrite: apply bvar domainofapplication", + "rewrite: attributes", + "rewrite: ci presentation mathml", + "rewrite: ci type annotation", + "rewrite: cn based_integer", + "rewrite: cn constant", + "rewrite: cn presentation mathml", + "rewrite: cn sep", + "rewrite: condition", + "rewrite: csymbol type annotation", + "rewrite: defint", + "rewrite: defint limits", + "rewrite: diff", + "rewrite: element", + "rewrite: int", + "rewrite: interval qualifier", + "rewrite: lambda", + "rewrite: lambda domainofapplication", + "rewrite: limits condition", + "rewrite: n-ary domainofapplication", + "rewrite: n-ary relations", + "rewrite: n-ary relations bvar", + "rewrite: n-ary setlist domainofapplication", + "rewrite: n-ary unary domainofapplication", + "rewrite: n-ary unary set", + "rewrite: n-ary unary single", + "rewrite: nthdiff", + "rewrite: partialdiffdegree", + "rewrite: quantifier", + "rewrite: restriction", + "rewrite: tendsto", "rfcb", "rgb format", "rgb merging", "rgb()", "rgba()", + "rhsvalue", "richness", + "ridge", "right", "right page", "right-hand side", + "right-to-left", "rmin", "roaming authenticators", "roaming credential", @@ -14129,7 +16489,6 @@ "root font-relative lengths", "root identifier", "root inline box", - "root layer", "root wai-aria node", "rootfile", "rootfiles", @@ -14140,7 +16499,9 @@ "rotatey()", "rotatez()", "rotation", + "rotation rate", "rough interoperability", + "round a value", "round()", "round-tripping", "rounding", @@ -14162,7 +16523,6 @@ "royalblue", "rp", "rp id", - "rpidhash", "rrule", "rsa-oaep key export steps", "rsa-oaep key import steps", @@ -14178,23 +16538,13 @@ "rsapssparams", "rsassa-pkcs1-v1_5 key export steps", "rsassa-pkcs1-v1_5 key import steps", - "rspace", "rssi", "rt", "rtc", "rtcconfiguration", - "rtcdatachannel message has been received", - "rtcdtlstransport error", - "rtcdtlstransport state change", - "rtcencodedaudioframe", - "rtcencodedaudioframemetadata", - "rtcencodedvideoframe", - "rtcencodedvideoframemetadata", - "rtcencodedvideoframetype", "rtcerror", "rtcerrorinit", "rtcicecandidate()", - "rtcicetransport state change", "rtcidentityassertion", "rtcidentityassertionresult", "rtcidentityprovider", @@ -14206,8 +16556,6 @@ "rtcpeerconnection", "rtcprioritytype", "rtcsctptransport connected", - "rtcsctptransport state change", - "rtcsessiondescription()", "rtl", "rtp media api", "ruby", @@ -14229,7 +16577,6 @@ "ruby-overhang", "ruby-position", "rule set", - "rules for distinguishing if a resource is a feed or html", "rules for distinguishing if a resource is text or binary", "rules for identifying an unknown mime type", "rules for parsing a hash-name reference", @@ -14259,13 +16606,13 @@ "run a module script", "run a work queue", "run a worker", - "run an upgrade transaction", "run animators", "run csp initialization for a document", "run csp initialization for a global object", "run job", "run service worker", "run steps after a timeout", + "run the abort steps", "run the animation frame callbacks", "run the fullscreen steps", "run the resize steps", @@ -14273,6 +16620,7 @@ "run the update intersection observations steps", "run the video frame request callbacks", "run webdriver bidi preload scripts", + "run-ad-auction", "run-in", "run-in box", "run-in sequence", @@ -14281,7 +16629,6 @@ "running a control message", "running elements", "running nested apply history step", - "running play state", "running position", "running script", "running transition", @@ -14316,16 +16663,17 @@ "same-origin-descendant", "same-origin-plus-coep", "same-origin-referrer request", - "same-partition prefetch state", "same-party", "same-permission", "samp", "sample", + "sample a debug report", "sample buffer size limit", - "sample depth", "sample depth scaling", "sample interval", + "sample real time contributions", "samplebufferfull", + "sampled type", "sampler", "sampler resource", "sampler types", @@ -14358,14 +16706,7 @@ "sandboxing flags", "sandybrown", "sanitize", - "sanitize a document fragment", - "sanitize a node", "sanitize a url to send in a report", - "sanitize action", - "sanitize action for an attribute", - "sanitize action for an element", - "sanitizeandset", - "sanitizefor", "sans-serif", "satisfiable", "satisfiable recognizing d", @@ -14377,12 +16718,14 @@ "save-data", "savedata", "scalar", + "scalar floating point to integral conversion", "scalar value", "scalar value string", "scale", "scale factor", "scale()", "scale3d()", + "scaled", "scaled flex shrink factor", "scaled viewport size", "scalex()", @@ -14391,14 +16734,18 @@ "scan for devices", "scancode", "scanline", + "scf", "schedule a posttask task", - "schedule a task to invoke a callback", + "schedule a selectionchange event", + "schedule a task to invoke an algorithm", + "schedule a yield continuation", "schedule job", + "schedule user topics calculation", "scheduled event time", "scheduler task", "scheduler task queue", "scheduler task sources", - "scheduling a posttask task", + "scheduling state", "schema.org boolean property", "scheme", "scheme fetch", @@ -14414,23 +16761,30 @@ "scope proximity", "scope to job queue map", "scope-match a selectors string", + "scope_patterns", "scoped context", "scoped descendant combinator", "scoped selector", + "scoped style rules", "scopes", + "scoping details", "scoping limit", "scoping root", + "score and rank a bid", + "scoring script failure bucket", "screen", "screen coordinate system", "screen ordering", "screen orientation change steps", - "screen orientation values table", + "screen orientation values lists", "screen orientations", + "screen reader", "screen wake lock", "screen wake lock permission revocation algorithm", "screen wake lock task source", "screenshots object", "script", + "script attribute", "script data double escape end state", "script data double escape start state", "script data double escaped dash dash state", @@ -14452,9 +16806,12 @@ "script domain", "script evaluation environment settings object set", "script fetch options", + "script fetcher", "script nesting level", - "script timeout", + "script runner", + "script speculationrules", "script timeout error", + "script timing info", "script-blocking style sheet set", "script-closable", "script-created parser", @@ -14465,6 +16822,10 @@ "script-supporting elements", "script-triggered", "script-visible", + "script.channel", + "script.localvalue", + "script.primitiveprotocolvalue", + "script.remotereference", "scriptable mime type", "scripted content document", "scripted elements", @@ -14488,12 +16849,15 @@ "scroll an element", "scroll an element into view", "scroll anchoring bounding rect", + "scroll behavior", "scroll boundary", "scroll chain", "scroll chaining", "scroll completed", "scroll container", "scroll into view", + "scroll marker control", + "scroll marker group", "scroll offset", "scroll origin", "scroll origin position", @@ -14511,6 +16875,7 @@ "scroll()", "scroll-behavior", "scroll-driven animations", + "scroll-driven timelines", "scroll-margin", "scroll-margin-block", "scroll-margin-block-end", @@ -14522,6 +16887,7 @@ "scroll-margin-left", "scroll-margin-right", "scroll-margin-top", + "scroll-marker-group", "scroll-padding", "scroll-padding-block", "scroll-padding-block-end", @@ -14536,12 +16902,7 @@ "scroll-snap-align", "scroll-snap-stop", "scroll-snap-type", - "scroll-start", - "scroll-start-block", - "scroll-start-inline", "scroll-start-target", - "scroll-start-x", - "scroll-start-y", "scroll-timeline", "scroll-timeline-axis", "scroll-timeline-name", @@ -14561,17 +16922,26 @@ "scrolling box", "scrollport", "scrolls into view", + "scrollsnapchangetargetblock", + "scrollsnapchangetargetinline", + "scrollsnapchanging block-axis target", + "scrollsnapchanging inline-axis target", "sctp transport is connected", + "sdr", "seagreen", "seamlessly update the playback rate", + "search", "search invisible", "search origin", "searching for services", "seashell", + "sec-ad-auction-fetch", + "sec-browsing-topics", "sec-ch-dpr", "sec-ch-ua", "sec-ch-ua-arch", "sec-ch-ua-bitness", + "sec-ch-ua-form-factors", "sec-ch-ua-full-version", "sec-ch-ua-full-version-list", "sec-ch-ua-mobile", @@ -14587,20 +16957,29 @@ "sec-fetch-site", "sec-fetch-user", "sec-gpc", + "sec-private-state-token", + "sec-private-state-token-crypto-version", + "sec-private-state-token-lifetime", "sec-purpose", + "sec-redemption-record", "sec-required-csp", "sec-required-document-policy", + "sec-shared-storage-writable", "second-factor platform authenticator", "second-factor roaming authenticator", "secondary", "secondary view", + "secret key", "section", "sectioning content", + "sections", "secure connection establishment", "secure context", "secure payment confirmation payment handler", - "secure tls", "secure-payment-confirmation", + "secured data document", + "securing mechanism", + "securing mechanisms", "security-sensitive members", "seek", "seek and get the next code point", @@ -14608,37 +16987,42 @@ "segment break", "segment parser loop", "segment-completing close path", + "segmentation", "select", "select a css style sheet set", "select a mapping", "select a presentation display", "select an account", + "select an alternate resource", "select an appropriate key attribute value", "select an image source", "select an image source from a source set", "select an immersive xr device", "select an unused gamepad index", "select the best candidate", + "select the indicated part", + "select the next scheduler task queue from all schedulers", "select the scheduler task queue", "selected coordinate", "selected files", - "selectedcandidatepairchange", "selectedness", "selectedness setting algorithm", "selecting a mapping", "selecting an unused gamepad index", "selecting the best candidate", - "selecting the scheduler task queue", - "selecting the task queue of the next scheduler task", "selection", + "selection bounds", "selection direction", + "selection end", + "selection start", "selectionchange", + "selective disclosure", "selective forwarding middlebox", "selector", "selector list", "selector matches", - "selector scoping notation", - "selectsettings", + "selector::match", + "selector::subject of", "selectstart", "self", "self attestation", @@ -14646,37 +17030,49 @@ "self-alignment properties", "self-closing flag", "self-closing start tag state", + "self-origin", + "self-property-list", + "seller capability", "semantic", "semantic extension", + "semantic label", "semantically", "semantics", "semantics of an expression", + "send a beacon", + "send a disconnect request", "send a message", + "send a real time report", "send a response", "send a termination request", "send alert text", "send an error", "send an error response", + "send click event", + "send real time reports", + "send report", "send request key frame algorithm", "send select update notifications", "send() algorithm", "send() flag", "send-algorithm", "senddatagrams", + "sendpendingreports", "sensing range", "sensitive information", "sensitive text input", "sensor feature names", "sensor fusion", - "sensor hubs", "sensor permission names", "sensor reading", "sensor task source", "sensor type", "sentences", "separated borders model", - "separator", "seq", + "seq_level_idx_0", + "seq_profile", + "seq_tier_0", "sequence", "sequence effect", "sequence of simple selectors", @@ -14687,12 +17083,11 @@ "sequential navigation search algorithm", "sequentially focusable", "serial number", + "serial port profile service class id", "serial port task source", "serializable object", "serializable objects", - "serialization", "serialization agreement", - "serialization agreements", "serialization of a color", "serialization of a site", "serialization of an origin", @@ -14720,6 +17115,8 @@ "serialize a cssunitvalue", "serialize a cssunparsedvalue", "serialize a cssvariablereferencevalue", + "serialize a currency tag", + "serialize a device", "serialize a group of selectors", "serialize a javascript value to a json string", "serialize a javascript value to json bytes", @@ -14732,17 +17129,20 @@ "serialize a media query list", "serialize a mime type", "serialize a mime type to bytes", - "serialize a private state token", + "serialize a prompt handler configuration", "serialize a response url for reporting", "serialize a selector", "serialize a simple selector", "serialize a string", "serialize a url", + "serialize a verbose debug report", "serialize a whitespace-separated list", "serialize an <an+b> value", + "serialize an aggregatable attribution report", + "serialize an aggregatable debug report", "serialize an aggregatable report", "serialize an array-like", - "serialize an attribution debug report", + "serialize an attribution debug info", "serialize an attribution report", "serialize an event-level report", "serialize an identifier", @@ -14753,24 +17153,32 @@ "serialize as a mapping", "serialize as a remote value", "serialize attribution destinations", + "serialize cookie", + "serialize cookie header", + "serialize header", "serialize i/o queue", "serialize json to bytes", "serialize primitive protocol value", + "serialize prompt devices", + "serialize protocol bytes", + "serialize protocol messages", "serialize required policy", + "serialize set-cookie header", "serialize the calculation tree", + "serialize the timeouts configuration", + "serialize the user prompt handler", "serialize-attributes-loop", + "serialized canonical form", "serialized cookie", "serialized csp", "serialized csp list", "serialized directive", "serialized document policy", "serialized large-blob array", - "serialized mock sensor", "serialized options", "serialized source list", "serialized state", "serialized-directive", - "serialized-origin", "serialized-permissions-policy", "serialized-policy", "serialized-policy-directive", @@ -14789,6 +17197,10 @@ "serializing an infra value to json bytes", "serializing the calculation tree", "serif", + "server auction browser signals", + "server auction interest group", + "server auction previous win", + "server auction request context", "server-sent events", "server-side credential", "server-side credential storage modality", @@ -14801,6 +17213,7 @@ "service definition", "service interoperability requirements", "service provider", + "service uuid", "service uuid data type", "service worker", "service worker agent", @@ -14811,28 +17224,29 @@ "service-worker", "service-worker-allowed", "session", + "session closed", + "session configuration flags", "session history", "session history entries", "session history entry", "session history traversal parallel queue", "session history traversal queue", "session id", - "session implicit wait timeout", "session not created", - "session page load timeout", - "session script timeout", "session storage", "session storage area", "session storage bucket", "session storage holder", "session timeouts", "session websocket connections", + "sessions", "set", "set a configuration", "set a cookie", "set a css declaration", "set a document response", "set a local session description", + "set a permission", "set a permission store entry", "set a property", "set a remote session description", @@ -14842,40 +17256,57 @@ "set an attribute value", "set an existing attribute value", "set an imagebitmaprenderingcontext's output bitmap", + "set and filter html", "set animator instance of worklet animation", + "set attribution reporting headers", "set bitmap dimensions", - "set capture prompt result", + "set credential properties", + "set credential properties parameters", "set descriptor", "set entries", "set event timing entry duration", "set explicitly", "set internal ids if needed", "set local session description", + "set mouse event modifiers", + "set mouseevent attributes from native", "set object", + "set of all command names", "set of availability callbacks", "set of comma-separated tokens", "set of controlled presentations", + "set of devices", "set of elements with rendered text", "set of mock capture devices", "set of owned text nodes", "set of presentation availability objects", "set of presentation controllers", + "set of previously reported paints", "set of rtcrtptransceivers", "set of scripts that will execute as soon as possible", "set of sessions for which an event is enabled", "set of space-separated tokens", "set of subresources for texture copy", "set of transceivers", + "set of user contexts", + "set permission", "set pointer capture", + "set pointerlock attributes for mousemove", + "set private token properties for request from private token", + "set redemption headers", "set registration", "set remote session description", "set request's referrer policy on redirect", "set rph registration mode", "set sensor settings", "set size getter", + "set source url for script block", "set spc transaction mode", "set storage access", + "set text content", "set the Sec-Required-CSP header", + "set the aggregation coordinator for a batching scope", + "set the application badge", "set the associated remote streams", "set the canceled flag", "set the configuration", @@ -14886,8 +17317,13 @@ "set the current top-level browsing context", "set the device information exposure", "set the frozen base url", + "set the high word", + "set the inner text steps", + "set the login status", "set the muted state", + "set the ongoing navigation", "set the playback rate", + "set the pre-specified report parameters for a batching scope", "set the required CSP", "set the search origin", "set the selection direction", @@ -14912,10 +17348,11 @@ "set window rect", "set-cookie state", "set-dest", - "set-device-information-exposure", + "set-login", "set-mode", "set-site", "set-user", + "setdelayenabled", "setlike", "setlike declaration", "setremotedescription", @@ -14932,7 +17369,9 @@ "settings", "settings dictionary", "settled", + "setup cross-document view-transition", "setup packet", + "setup serviceworkerglobalscope", "setup stage", "setup the resource timing entry", "setup transition pseudo-elements", @@ -14956,6 +17395,7 @@ "shader-creation error", "shader-output mask", "shaders", + "shadow color", "shadow host", "shadow root", "shadow root identifier", @@ -14970,6 +17410,10 @@ "shadow-including preorder, depth-first traversal", "shadow-including root", "shadow-including tree order", + "shadowrootclonable", + "shadowrootdelegatesfocus", + "shadowrootmode", + "shadowrootserializable", "shadows", "shadows are only drawn if", "shall", @@ -14984,6 +17428,12 @@ "shape-padding", "shape-rendering", "shape-subtract", + "shaped border edge", + "shaped content edge", + "shaped edge", + "shaped margin edge", + "shaped padding edge", + "shaping", "shaping of the glyph assembly", "sharable scheme", "share target", @@ -14992,26 +17442,45 @@ "shared declarative refresh steps", "shared history push/replace state steps", "shared secret", + "shared storage", + "shared storage bucket", + "shared storage database", + "shared storage navigation budget charged", + "shared storage navigation budget table", + "shared storage reporting budget", + "shared storage reporting budget charged", + "shared storage shed", "shared utf-16 decoder", "shared worker", "shared worker agent", "shared worker manager", + "shared-storage-cross-origin-worklet-allowed", + "shared-storage-write", "shares", "sharetarget", "sharetargetparams", "sharpness", + "sheet", "sheets", + "shift flag", "shift_jis", "shift_jis decoder", "shift_jis encoder", "shift_jis lead", "shifted character", "shifted state", + "shipping address", + "shipping address changed algorithm", + "shipping option changed algorithm", + "shippingaddresschange", + "shippingoptionchange", "short", + "short cooldown period", "short_name", "shortcut item", "shortcut item's", "shorten a url's path", + "shortened local name", "shorter", "shorthand", "shorthand properties", @@ -15019,17 +17488,15 @@ "should", "should add entry", "should add performanceeventtiming", - "should attribution be blocked by attribution rate limit", - "should attribution be blocked by rate limits", "should be rendered", "should element's inline type behavior be blocked by content security policy?", "should fetching request be blocked as mixed content?", "should navigation request of type be blocked by content security policy?", + "should navigation response to navigation request be blocked by permissions policy?", "should navigation response to navigation request of type in target be blocked by content security policy?", "should not", "should not initialize device tracking", - "should processing be blocked by reporting-endpoint limit", - "should reload page for critical client hints", + "should processing be blocked by reporting-origin limit", "should report first contentful paint", "should request be blocked by content security policy?", "should response to request be blocked as mixed content?", @@ -15037,35 +17504,41 @@ "should response to request be blocked due to document policy", "should response to request be blocked due to mime type", "should response to request be blocked due to nosniff", + "should restart loading the page for critical client hints", + "should send a report unconditionally", "should skip event", + "show", + "show an idp login dialog", "show popover", "show poster flag", - "show steps", "show the picker, if applicable", "showing", + "showing auto popover list", + "shuffle a list", "shut down the session", "shutdown", "shutdown with an action", "sibling", + "sibling-count()", + "sibling-index()", "sideways typesetting", "sienna", "sign", "sign()", - "sign-in", "signal a slot change", "signal a type change", - "signal close watchers", + "signal base value", "signal slots", "signal to abort the request", "signaling state", - "signalingstatechange", "signature", "signature counter", "signatures", - "signcount", + "signed additional bid signature", "signed exchange report", "signed exchange version", "signed message", + "significant change in orientation", "signing block", "signing block magic numbers", "signing blocks", @@ -15076,7 +17549,6 @@ "similar-origin window agent", "simple assignment", "simple color", - "simple entailment", "simple exception", "simple fullscreen document", "simple graph object", @@ -15147,73 +17619,75 @@ "small", "small viewport size", "small viewport-percentage units", + "smart card task source", "smart poster", - "smart sensors", "smart-poster", "smil", "smooth scroll", "smooth scroll aborted", "smooth scroll completed", "smoothing over time", - "snapshot root", - "snapshot root origin", - "snapshot root size", + "snap a length as a border width", + "snap as a border width", + "snap target", + "snapshot containing block", + "snapshot containing block origin", + "snapshot containing block size", "snapshot source snapshot params", "snapshot target snapshot params", "snapshot the lock state", - "snapshot viewport", - "snapshot viewport origin", "snapshotstate", "snapshotted scroll offset", "sniff-scriptable flag", "snonext", "snow", - "socks authentication", - "socks proxy", - "socksproxy", - "socksversion", "soft", "soft iron distortion", "soft update", "soft wrap break", "soft wrap opportunity", + "solid", "solid fill", "some form of user verification", "sort a calculation's children", "sort and normalize a module specifier map", "sort and normalize scopes", - "sortedintegerlist", "sound", "source", "source debug data type", "source document", - "source event id cardinality", "source expression", "source image", "source lists", + "source mapping url", "source node", + "source origin", "source pixel ratio", "source policy container", "source set", "source size", + "source snapshot has transient activation", "source snapshot params", "source stopped state", "source type", - "source types", "source-atop", "source-expression", "source-expression similar", "source-in", "source-out", "source-over", + "source-registration json key", "sourcebuffer byte stream format specification", "sourcebuffer configuration", "sourcebuffer monitoring", "sourcebufferlist-getter", "sourceclose", + "sourcedocument", "sourceended", "sourceopen", - "sourcesnapshotparams", + "sourceroot", + "sources", + "sourcescontent", "space to fill", "space warp", "space-like", @@ -15222,12 +17696,19 @@ "spaceafterscript", "spacer", "spaces", + "spacing mark", "span", "span count", - "spanner", "spanning annotation", - "spanning element", - "sparsebitset", + "sparql query", + "sparql query string", + "sparql request string", + "sparql update string", + "sparqlquery", + "sparqlquerystring", + "sparqlrequeststring", + "sparqlupdatestring", + "sparse bit set", "spatial navigation", "spatial navigation containers", "spatial navigation starting point", @@ -15257,6 +17738,7 @@ "specified end delay", "specified flow", "specified iteration duration", + "specified keyframe order", "specified length", "specified order", "specified size", @@ -15272,6 +17754,8 @@ "speculative html parser", "speculative mock element", "speech-rate", + "spillover", + "spillover effects", "spin the event loop", "spine", "spine plane", @@ -15281,22 +17765,21 @@ "split external type", "split on ascii whitespace", "split on commas", - "split the fragment from the fragment directive", "spoon-feed the parser", "spouse", "spread break", - "spread distance", "springgreen", "sqrt()", + "square", "sr field", "src", "src()", + "src-origin", "srcset attribute", "srgb", "srgb color space", "srgb-linear", "srst", - "sslproxy", "sst", "stack", "stack frame", @@ -15312,15 +17795,22 @@ "stacking contexts", "stacktopdisplaystyleshiftup", "stacktopshiftup", + "stale", "stale element reference", "stale response", + "stale timelines", "stale-while-revalidate response", "standalone axis", "standalone grid", + "standalone vowel", + "standard base64 alphabet", + "standard dynamic range", "standard gamepad", + "standard sample patterns", "standardize", "standardized payment method", "standardized payment method identifier", + "standardized permission", "start a new parallel queue", "start a new session history traversal parallel queue", "start a presentation connection", @@ -15340,31 +17830,33 @@ "start the nfc make read-only", "start the nfc write", "start the speculative html parser", + "start the timer", "start the track processing model", "start url", "start user-agent initiated prerendering", "start with a number", "start with a windows drive letter", "start with an ident sequence", - "startdelay", + "startdrawing(hints)", "starting a new parallel queue", "starting a presentation from a default presentation request", "starting point", + "starting style", "starting value", "startpoint-on-the-path", "starts with a number", "starts with a valid escape", "starts with a windows drive letter", "starts with an ident sequence", + "startstreaming", "starttime", "state", "state function", "state initializing command", - "state machine map", - "statechange", "stateful animator", "stateful animator definition", "stateful animator instance", + "stateful bounce tracking map", "stateful commands", "stateful flag", "stateless animator", @@ -15410,6 +17902,7 @@ "steps for when a user changes payment method", "steps to check if a payment can be made", "steps to expose a media-resource-specific text track", + "steps to fire beforeunload", "steps to install the web application", "steps to notify that an install prompt is available", "steps to respond to a payment request", @@ -15434,6 +17927,7 @@ "stop loading", "stop or comma", "stop sending and receiving", + "stop the RTCRtpTransceiver", "stop the rtcrtptransceiver", "stop the sensor altogether", "stop the speculative html parser", @@ -15443,26 +17937,31 @@ "stops parsing", "storable", "storage", + "storage and persistence", "storage bottle", "storage bucket", "storage buffer", "storage endpoint", "storage identifier", "storage key", + "storage partition", + "storage partition key", "storage proxy map", "storage quota", "storage shed", "storage shelf", "storage shelves", "storage task source", - "storage texture", "storage type", "storage usage", "storage-access", + "storage-key-nonce", "storage-texel-formats", + "storage:bucket-name", "store a record into an object store", "store type", "stored permission", + "storedtoken", "strategy", "streaming-capabilities-request", "streaming-capabilities-response", @@ -15477,7 +17976,6 @@ "streaming-session-terminate-response", "street-address", "stress", - "stretch axis", "stretch fit", "stretch-fit block size", "stretch-fit inline size", @@ -15487,7 +17985,6 @@ "stretchstackgapabovemin", "stretchstackgapbelowmin", "stretchstacktopshiftup", - "stretchy", "strict file interactability", "strict ordering", "strictly split", @@ -15497,6 +17994,7 @@ "strike", "string", "string descriptor", + "string direction", "string index tag", "string maximum tag", "string minimum tag", @@ -15541,7 +18039,7 @@ "stroked", "strong", "strong scoping proximity", - "strongmagnitude", + "strongly hidden", "struct", "structural element", "structural pseudo-classes", @@ -15551,6 +18049,7 @@ "strut size", "stub elements", "style", + "style & layout interleave", "style attribute", "style change event", "style containment", @@ -15579,19 +18078,20 @@ "subgridded axis", "subject", "subject (of selector)", + "subject's", "subjects", "subjects of the selector", "subkeys", + "submission appeals", "submission value", + "submit", "submit as entity body", "submit button", - "submit dialog", "submittable elements", - "submitted", + "submitted from submit() method", "submitter", "subresource", "subresource request", - "subscribe priority", "subscript/superscript pair", "subscriptbaselinedropmin", "subscription expiration time", @@ -15602,12 +18102,14 @@ "substantial", "substantive change", "substitute", + "substitute a dashed function", "substitute a var()", "substitute an attr()", "substitute an env()", + "substitute arbitrary substitution function", + "substitute into a calc-size calculation", "substitution", "subsuperscriptgapmin", - "subtag", "subtag registry", "subtags", "subtitles", @@ -15632,9 +18134,12 @@ "suggestions source element", "suitable origin", "suitable sequentially focusable area", - "sum value", "summary", + "summary bucket", + "summary bucket list", "summary for its parent details", + "summary operator", + "summer time", "sunken initial", "sup", "superscriptbaselinedropmax", @@ -15645,7 +18150,9 @@ "superseded", "superseded recommendation", "superseded registry", - "supplementary characters", + "supplemental confidential council report", + "supplemental content", + "supplementary character", "supplementary code point", "supplied mime type", "supplied mime type detection algorithm", @@ -15680,17 +18187,17 @@ "supports()", "supports-loading-mode", "suppress a pointer event stream", + "suppress normal scroll restoration during ongoing navigation", "suppression trigger", "suppression window", "suppresslocalaudioplayback", "surface a candidate", "surface the candidate", "surrogate", + "surrogate code point", "surrogate pair", - "surrogate pairs", "surrogate-character-reference", "surrogate-in-input-stream", - "surrogates", "suspend nfc", "suspendable worker", "suspended", @@ -15713,8 +18220,10 @@ "svg user agent", "svg view specification", "svg viewers", + "svg viewport origin box", "svg viewports", "swap", + "swap due to a try-tactic", "sweetheart", "switch", "switch the fontfaceset to loaded", @@ -15723,9 +18232,10 @@ "switch to parent frame", "switch to window", "swizzle", + "syllabary", + "syllable", "symbol", "symbols()", - "symmetric", "symposia", "symposium", "sync", @@ -15739,7 +18249,6 @@ "synchronous navigation steps", "synchronous read method", "synchronous section", - "synchronously instantiate a webassembly module", "synchronously replace the rules of a cssstylesheet", "syntactic content", "syntactic phrase", @@ -15755,12 +18264,15 @@ "synthetic spread", "system clipboard", "system clipboard data", + "system clipboard item", + "system clipboard representation", "system color pairings", "system colors", "system exclusive", "system font", "system fonts", "system key press handler", + "system real time", "system resources", "system visibility state", "system-level audio callback", @@ -15771,6 +18283,7 @@ "tab size", "tab stop", "tab-size", + "tab_strip", "tabindex", "tabindex value", "tabindex-ordered focus navigation scope", @@ -15784,13 +18297,17 @@ "table model", "table model error", "table object cache", + "table of contents", "table of effective connection types", "table of endpoints", "table of location strategies", "table of maximum downlink speeds", "table of page load strategies", - "table of simple dialogs", + "table of provisional permissions", "table of standard capabilities", + "table of standard storage partition key attributes", + "table of standardized permissions", + "table of standardized permissions of the web platform", "table wrapper box", "table-caption", "table-cell", @@ -15809,6 +18326,8 @@ "table-track", "table-track-group", "table-wrapper box", + "tablepatch", + "tables", "tabs", "tabular container", "tag", @@ -15843,21 +18362,26 @@ "target navigable", "target object", "target peer identity", - "target phase", "target property", - "target pseudo-selector", "target snapshot params", + "target snapshot sandboxing flags", "target-counter()", "target-counters()", "target-text()", + "targetaddressspace", "targeted advertising", "targets", "tashkil", "task", + "task handle", "task queues", + "task scope", + "task scope stack", "task source", "taxonomy", "tbody", + "tcpserversocket task source", + "tcpsocket task source", "td", "teal", "team", @@ -15868,6 +18392,8 @@ "team representative in an interest group", "team's decision", "team-only", + "tear down a task scope", + "technical agreement", "technical architecture group", "technical report", "tee a readable stream", @@ -15891,6 +18417,7 @@ "terminate a worker", "terminate a worklet global scope", "terminate an algorithm", + "terminate event callback handling", "terminate remaining locks and requests", "terminate service worker", "terminate the algorithm", @@ -15903,26 +18430,36 @@ "testable assertion", "texel", "texel block", + "texel block byte offset", + "texel block copy footprint", "texel block height", - "texel block size", + "texel block memory cost", + "texel block row", "texel block width", "texel format", + "texel image", "text", "text chunk", "text composition system", "text content block element", "text content child element", "text content element", + "text directive", + "text directive allowing mime type", "text edit context", "text entry cursor position", - "text fragment directive", + "text format", + "text format list", + "text formats", "text input method", "text input service", "text node", + "text node directionality", "text preparation algorithm", "text processing language", "text record", "text splice frame", + "text state", "text style values", "text track cue", "text track cue order", @@ -15933,6 +18470,9 @@ "text-align-last", "text-anchor", "text-autospace", + "text-box", + "text-box-edge", + "text-box-trim", "text-combine-upright", "text-decoration", "text-decoration-color", @@ -15950,7 +18490,6 @@ "text-decoration-trim", "text-direction list", "text-directions", - "text-edge", "text-emphasis", "text-emphasis-color", "text-emphasis-position", @@ -15966,8 +18505,6 @@ "text-rendering", "text-shadow", "text-size-adjust", - "text-space-collapse", - "text-space-trim", "text-spacing", "text-spacing-trim", "text-track-cue", @@ -15976,6 +18513,8 @@ "text-underline-offset", "text-underline-position", "text-wrap", + "text-wrap-mode", + "text-wrap-style", "text/css", "text/event-stream", "text/html", @@ -15997,9 +18536,12 @@ "textdirectiveprefix", "textdirectivestring", "textdirectivesuffix", + "textinput", "textpath", "textphone", "texture", + "texture coordinates", + "texture copy sub-region", "texture gather", "texture gather compare", "texture resource", @@ -16013,7 +18555,6 @@ "the 128-bit uuid represented", "the body element", "the curve name", - "the directionality", "the document's referrer", "the drag data item kind", "the drag data item type string", @@ -16033,8 +18574,8 @@ "the link is an alternative style sheet", "the location bar barprop object", "the menu bar barprop object", + "the navigation must be a replace", "the personal bar barprop object", - "the posted task task source", "the properties of an item", "the range", "the rules for choosing a navigable", @@ -16053,12 +18594,6 @@ "third party context", "third party identifier name", "this", - "thisBigIntValue", - "thisBooleanValue", - "thisNumberValue", - "thisStringValue", - "thisSymbolValue", - "thisTimeValue", "thistle", "threeddarkshadow", "threedface", @@ -16070,13 +18605,15 @@ "throw", "throw an exception", "throw-on-dynamic-markup-insertion counter", + "thumb", "tick", "ticks", - "tie track source to context", + "tie track source to MediaDevices", "tilt", "time", "time marches on", "time scale", + "time spaces", "time value", "time zone", "time zone identifiers", @@ -16088,18 +18625,23 @@ "timeline duration", "timeline offset", "timeline time to origin-relative time", + "timeline-agnostic", + "timeline-scope", "timelinebegin", "timeout", "timeouts configuration", - "timeouts object", + "timer", "timer initialization steps", "timer nesting level", "timer table", "timer task source", - "timestamp of last activation used for close watchers", + "timestamp", "timing function", "timing info", + "timing model", + "timing nodes", "timing-allow-origin", + "timing-eligible", "title", "title bar area", "title bar area env variables", @@ -16110,12 +18652,15 @@ "titlebar-area-width", "titlebar-area-x", "titlebar-area-y", + "titlecase", "tk", "tnf field", "to", "to WGSL type", "to a texel value of texture format", + "toc", "toggle", + "toggle task tracker", "toggle()", "tojsvalue", "token", @@ -16126,13 +18671,13 @@ "tokenize policy", "tokenize the features argument", "tokenizer", + "tokenstore", + "tolocaltime record", "tomato", - "tonechange", "tooltip attribute", "toomanyreads", "top", "top accent attachment", - "top layer", "top of the document", "top-level browsing context", "top-level calculation", @@ -16154,6 +18699,8 @@ "total length", "total video frame count", "touch point", + "touch surface", + "touch surface enumeration order", "touch-action", "touch-action values", "touchcancel", @@ -16168,7 +18715,6 @@ "track buffer", "track buffer ranges", "track description", - "track enabled state", "track ended by the user agent", "track id", "track label", @@ -16186,13 +18732,12 @@ "tracking status value", "tracking the effective position of the legacy mouse pointer", "tracking vector", - "trackingexdata", - "trackingexresult", + "trailing surrogate", "transaction", + "transaction state", "transceiver kind", "transcoder", - "transcoders", - "transfer", + "transcription", "transfer function", "transfer function element", "transfer function element attributes", @@ -16205,9 +18750,12 @@ "transform stream", "transform-box", "transform-indifferent starting point", + "transform-mix()", "transform-origin", "transform-style", "transformable element", + "transformation", + "transformation algorithm", "transformation matrix", "transformations", "transformed element", @@ -16229,6 +18777,7 @@ "transition origin", "transition phase", "transition requests", + "transition-behavior", "transition-delay", "transition-duration", "transition-property", @@ -16237,17 +18786,20 @@ "translatable attributes", "translate", "translate a layoutconstraintsoptions to internal constraints", + "translate a preload destination", "translate-enabled", "translate3d()", "translatez()", "translation", "translation mode", + "transliteration", "transmission of request and response", "transp", "transparent", "transparent background", "transparent black", "transpose", + "trap", "traversable navigable", "traverse siblings", "traverse the history by a delta", @@ -16260,23 +18812,36 @@ "tree-abiding", "tree-abiding pseudo-element", "triangle", - "triaxial", + "trig document", + "trig parser", + "trigger a prompt updated event", "trigger aggregatable attribution", "trigger attribution", "trigger data", + "trigger debug data", "trigger debug data type", "trigger event-level attribution", + "trigger spec", + "trigger spec map", "trigger state", + "trigger-data matching mode", + "trigger-registration json key", + "triggered", "triggering event", "triggering result", "triggering status", "trinary", "triple", + "triple term", + "true", "true-by-default", - "truecolour", - "truecolour with alpha", + "truecolor", + "truecolor with alpha", "truncate", + "trusted bidding signals batcher", + "trusted bidding signals failure bucket", "trusted immersive ui", + "trusted scoring signals failure bucket", "trusted type", "trusted ui", "trusted-types-directive", @@ -16287,6 +18852,7 @@ "try to consume a modifier token", "try to consume a regexp or wildcard token", "try to consume a token", + "try to reach component ads target considering k-anonymity", "try to scroll to the fragment", "try to upgrade an element", "trying", @@ -16304,6 +18870,8 @@ "turned off", "turned on", "turquoise", + "turtle document", + "twelve_bit", "tx power level", "type", "type alias", @@ -16327,12 +18895,16 @@ "type rule preconditions", "type rule tables", "type selector", + "type-generator", "type-phase", "type-scoped context", + "type-specific credential processing", "typeable", "typed array types", "typed item", "typed value", + "typedarray", + "typedarrays", "typedef", "typeerror", "types", @@ -16351,10 +18923,9 @@ "ua", "ua origin", "ua style sheet", - "ua-default viewport size", - "ua-default viewport-percentage units", "ua-origin", "uba", + "udpsocket task source", "ui redressing", "uid", "uint32littleendian", @@ -16370,6 +18941,7 @@ "unable to report the battery status information", "unable to set cookie", "unadjustedtarget", + "unambiguously links to a source map", "unanimity", "unauthenticated response", "unavailable", @@ -16377,6 +18949,9 @@ "unbounded key range", "unbounded text track cue", "uncalibrated magnetic field", + "uncalibrated magnetometer", + "uncalibrated magnetometer reading parsing algorithm", + "uncalibrated-magnetometer virtual sensor type", "uncategorized error", "unchanged record", "unconsumed launch params", @@ -16385,17 +18960,20 @@ "under", "underbarextradescender", "underbarverticalgap", + "underline style", + "underline thickness", "underline zero position", "underlying byte source", + "underlying connection", "underlying connection technology", "underlying data transport", "underlying sink", "underlying source", "underlying value", - "underlying values", "understandable", "undisplay", "undistributable space", + "unescape url pattern", "unexpected alert open", "unexpected-character-after-doctype-system-identifier", "unexpected-character-in-attribute-name", @@ -16411,8 +18989,8 @@ "unfrozen", "unfullscreen a document", "unfullscreen an element", - "unhandled prompt behavior", - "uniaxial", + "ungrouped", + "unicameral", "unicode", "unicode bidi algorithm", "unicode bidirectional algorithm", @@ -16420,16 +18998,24 @@ "unicode braille patterns", "unicode character categories", "unicode code point", - "unicode code points", "unicode locale", + "unicode locale extension sequence", "unicode locale identifier", - "unicode locale identifiers", - "unicode locales", + "unicode normalization", + "unicode normalization form c", + "unicode normalization form d", + "unicode normalization form kc", + "unicode normalization form kd", + "unicode scalar value", "unicode-bidi", + "unidirectionally broadcastable", + "unidirectionally broadcasting", "uniform buffer", "uniform control flow", "uniform value", "uniform variable", + "uniformity analysis", + "uniformity failure", "uninitialized", "union type", "unique identifier", @@ -16446,19 +19032,24 @@ "unknown", "unknown -webkit- pseudo-elements", "unknown command", + "unknown concept", "unknown error", "unknown mathml element", "unknown method", "unknown record", "unknown-named-character-reference", "unknowndirective", + "unlinkability", + "unlinkable disclosure", "unload", "unload a document", + "unload a document and its descendants", "unload counter", "unloading document cleanup steps", "unlock the screen orientation", "unlocked", "unlocking the screen orientation", + "unmask tokens", "unmute", "unobserve a target element", "unoccupied", @@ -16471,6 +19062,7 @@ "unregister the system key press handler", "unresolved", "unresolved reference", + "unrestricted", "unrestricted double", "unrestricted float", "unsafe current time", @@ -16479,14 +19071,24 @@ "unsafe shared current time", "unsafe-none", "unsafefile", + "unsafely set html", + "unsanitized data types", "unsatisfiable", + "unscaled", + "unsecured data document", "unset", + "unshaped border edge", + "unshaped content edge", + "unshaped edge", + "unshaped margin edge", + "unshaped padding edge", "unshipped port message queue", "unsigned extension outputs", "unsigned long", "unsigned long long", "unsigned short", "unsigned-integer", + "unsigned-number", "unstable", "unstable node set", "unstable-candidate", @@ -16499,6 +19101,8 @@ "up", "up-mixing", "upc-a", + "upcoming non-traverse api method tracker", + "upcoming traverse api method trackers", "update", "update a layout child style", "update a paymentrequest's details algorithm", @@ -16508,14 +19112,25 @@ "update anchors", "update animations and send events", "update background fetch instances", + "update bid count", + "update capture state algorithm", + "update captured headers", "update document for history step application", "update document frozenness steps", + "update expiration", + "update for navigable creation/destruction", "update gamepad state", + "update highest scoring other bid", "update href", + "update key statuses", "update latest reading", + "update mesh object", + "update meshes", "update metadata algorithm", - "update mock sensor reading", "update only", + "update plane object", + "update planes", + "update previous wins", "update pseudo-element styles", "update registration state", "update requests", @@ -16526,26 +19141,34 @@ "update the client hints set from cache", "update the current document readiness", "update the data max message size", - "update the device posture information", + "update the editcontext", "update the event map", "update the file selection", "update the ice gathering state", "update the image data", + "update the navigation api entries for a same-document navigation", + "update the navigation api entries for reactivation", "update the negotiation-needed flag", + "update the opt-in state for outbound transitions", "update the overlay area information", "update the pending layers state", "update the rendering", - "update the rendering of the WebGPU canvas", + "update the response", "update the search origin", "update the source set", + "update the text edit context", "update the timing properties of an animation effect", + "update the user prompt handler", "update the viewports", "update the visibility state", - "update transition dom", + "update touchevents", "update worker state", "updateend", "updatestart", + "updating the rendering of a WebGPU canvas", "updating the search origin", + "updating touchevents", + "upgrade a database", "upgrade a mixed content request to a potentially trustworthy url, if appropriate", "upgrade a request", "upgrade an element", @@ -16558,6 +19181,10 @@ "upgrade-insecure-requests http request header field", "upgradeable mixed content", "upgrades", + "upheld", + "uphold", + "upholding", + "upholds", "upload complete flag", "upload listener flag", "upload object", @@ -16566,13 +19193,13 @@ "upper bound on the downlink speed of the first network hop", "upper-alpha", "upper-alpha-legal", + "upper-latin", "upper-roman", "uppercase letter", "upperlimitbaselinerisemin", "upperlimitgapmin", "upright typesetting", "upstream", - "upstream node", "urdna2015", "urgna2012", "uri", @@ -16585,18 +19212,20 @@ "url descriptor", "url parameter", "url parser", + "url path", "url path segment", "url path serializer", "url path serializing", + "url pattern", "url prefix", "url property elements", "url record", "url reference", "url reference with fragment identifier", + "url request modifier steps", + "url search variance", "url serializer", "url units", - "url variable", - "url variables", "url()", "url-based payment method identifier", "url-fragment string", @@ -16607,22 +19236,33 @@ "urlencoded parser", "urlencoded serializer", "urlencoded string parser", - "usage document frequency", + "urls", + "usable for decryption", "usage id", "usage intersection", "usage maximum tag", "usage minimum tag", "usage page", "usage page tag", + "usage scope", + "usage scope attachment exception", + "usage scope storage exception", "usage scope validation", - "usage scopes", "usage tag", "usages", "usages_cached", + "usb blocklist", "usb device", "use", "use a negative sign", "use credentials", + "use distinctive identifier(s)", + "use distinctive identifier(s) or distinctive permanent identifier(s)", + "use distinctive permanent identifier(s)", + "use dual source blending", + "use of distinctive identifier(s)", + "use of distinctive identifier(s) or distinctive permanent identifier(s)", + "use of distinctive identifiers and distinctive permanent identifiers", "use report ids", "use srcset or picture", "use-element shadow tree", @@ -16630,6 +19270,7 @@ "used autocapitalization hint", "used color", "used color scheme", + "used keyframe order", "used min-width of a table", "used offset distance", "used value", @@ -16645,6 +19286,7 @@ "user action pseudo-class", "user action timeout", "user activation", + "user activation map", "user activity", "user agent", "user agent (ua)", @@ -16656,6 +19298,7 @@ "user agents that support a full html css engine", "user consent", "user contact", + "user context", "user coordinate system", "user credential", "user handle", @@ -16674,8 +19317,8 @@ "user prompt message", "user public key", "user style sheet", - "user timing", "user units", + "user validity", "user verification", "user verification method", "user verified", @@ -16689,10 +19332,9 @@ "user-origin", "user-select", "user-supplied value", - "user-supplied values", "user-verifying platform authenticator", - "userchoice", "userinfo percent-encode set", + "userinvolvement", "username", "userverificationoptional", "userverificationoptionalwithcredentialidlist", @@ -16704,6 +19346,8 @@ "uses distinctive permanent identifier(s)", "uses report ids", "using", + "using distinctive identifier(s) or distinctive permanent identifier(s)", + "using distinctive permanent identifier(s)", "using the a element to define a command", "using the accesskey attribute on a legend element to define a command", "using the accesskey attribute to define a command on other elements", @@ -16712,7 +19356,9 @@ "using the option element to define a command", "using the rules for", "usually support", + "usv", "utc", + "utf-16", "utf-16 lead byte", "utf-16 lead surrogate", "utf-16be", @@ -16734,10 +19380,10 @@ "utf-8 upper boundary", "uuid", "uuid alias", - "uv", "uvretries", "valid", - "valid anchor query", + "valid anchor function", + "valid anchor-size function", "valid audio configuration", "valid audio mime type", "valid audiodatainit", @@ -16745,14 +19391,17 @@ "valid audioencoderconfig", "valid codec string", "valid color", + "valid company identifier string", "valid croptarget", "valid css property", "valid custom element name", "valid date string", "valid date string with optional time", "valid decimal monetary value", + "valid dimension", "valid domain", "valid domain string", + "valid dual-rumble effect", "valid duration string", "valid eagerness strings", "valid effect", @@ -16760,8 +19409,8 @@ "valid email address list", "valid external application resource", "valid file name", + "valid filtering id max bytes range", "valid floating-point number", - "valid fragment directive", "valid global date and time string", "valid gpublendcomponent", "valid hash-name reference", @@ -16775,7 +19424,6 @@ "valid ipv6-address string", "valid key path", "valid language tag", - "valid language tags", "valid list of floating-point numbers", "valid list of part mappings", "valid local date and time string", @@ -16800,10 +19448,17 @@ "valid path", "valid path id", "valid payment method manifest", + "valid pointer", "valid postscript name", "valid presentation identifier", + "valid prompt types", + "valid reference", + "valid restriction target", + "valid shadow host name", "valid simple color", + "valid source expiry range", "valid source size list", + "valid source types", "valid style sheet", "valid suffix code point", "valid time string", @@ -16811,6 +19466,7 @@ "valid to draw", "valid to draw indexed", "valid to use with", + "valid trigger-rumble effect", "valid url potentially surrounded by spaces", "valid url string", "valid uuid", @@ -16828,25 +19484,33 @@ "validate GPUExtent3D shape", "validate GPUOrigin2D shape", "validate GPUOrigin3D shape", + "validate a background attributionsrc eligibility", + "validate a bucket name", "validate a cssnumberish time", "validate a partial response", "validate a payment method identifier", "validate a standardized payment method identifier", "validate a suffix", + "validate a url macro", "validate a url-based payment method identifier", + "validate aggregatable key-values value", + "validate and convert additional bids", + "validate and convert auction ad config", "validate and extract", "validate and normalize", "validate and parse the payment method manifest", + "validate buffer with descriptor", "validate capabilities", "validate external type", + "validate fetching response", + "validate fetching response headers", + "validate fetching response mime and body", "validate local type", - "validate mlcontext", + "validate reporting metadata", "validate share data", "validate the state of the xrwebglsubimage creation function", - "validate the string in context", "validate videoframeinit", "validateassertioncallback", - "validating GPUBufferDescriptor", "validating GPUDepthStencilState", "validating GPUFragmentState", "validating GPUImageCopyBuffer", @@ -16861,19 +19525,24 @@ "validating inter-stage interfaces", "validating linear texture data", "validating shader binding", + "validating texture buffer copy", "validating texture copy range", + "validation", "validation anchor", "validation error", + "validation errors", "validation message", "validation notice", "validity", "validity states", + "validtextdirective", "value", "value accumulation", "value addition", "value asynchronously iterable declaration", "value constructor", "value declaration", + "value format record", "value interpolation", "value iterator", "value object", @@ -16886,7 +19555,7 @@ "value type", "value-with-size", "value_return", - "value_return_i", + "value_return_i_contents", "values", "var", "var()", @@ -16895,6 +19564,7 @@ "variable declaration", "variable unit reference", "variadic", + "variation selector", "vchar", "vec2f", "vec2h", @@ -16914,15 +19584,39 @@ "vendor prefix", "vendor-facilitated enterprise attestation", "vendor-prefixed", + "verbose debug data", + "verbose debug report", + "verifiability", + "verifiable", + "verifiable credential", + "verifiable credential graph", + "verifiable data registries", + "verifiable data registry", + "verifiable presentation", + "verifiable presentation graph", + "verifiablecredentialgraph", + "verification", + "verification material", + "verification method", "verification procedure", "verification procedure inputs", + "verification result", + "verified", "verified display name", + "verifieddocument", + "verifier", + "verifier's", + "verifiers", "verify", "verify a certificate hash", "verify a media response", "verify a miniapp zip container", "verify platform compatibility", + "verify router condition", + "verify value category", + "verifying", "verifying a miniapp zip container", + "verifyproof", "version", "version resource", "vertex", @@ -16933,7 +19627,6 @@ "vertical axis", "vertical block flow", "vertical dimension", - "vertical offset", "vertical script", "vertical typographic mode", "vertical writing mode", @@ -16951,30 +19644,44 @@ "view progress subject", "view progress timelines", "view progress visibility range", + "view transition layer", "view transition name", + "view transition page-visibility change steps", + "view transition params", + "view transition pseudo-elements", + "view transition tree", + "view transitions", "view()", "view-timeline", "view-timeline-axis", "view-timeline-inset", "view-timeline-name", - "view-transition layer", - "view-transition pseudo-elements", + "view-transition-class", + "view-transition-group", "view-transition-name", "viewer", "viewport", "viewport base distance", "viewport coordinate system", + "viewport coordinates", "viewport-based selection", "viewport-percentage lengths", "violate", "violated", "violation", "violet", + "virama", "virtual authenticator database", "virtual authenticators", "virtual browsing context group id", + "virtual expandable separator", + "virtual pressure source", + "virtual pressure source mapping", "virtual screen arrangement", - "virtual word boundary", + "virtual sensor", + "virtual sensor mapping", + "virtual sensor metadata", + "virtual sensor type", "visibility", "visibility state", "visible character", @@ -16983,6 +19690,7 @@ "visible to reportingobservers", "visible track", "visit", + "visited (pseudo-class)", "visual angle unit", "visual formatting model", "visual representation", @@ -17000,9 +19708,12 @@ "voice-volume", "void elements", "volume", + "volume locked", + "w3c board of directors", "w3c candidate recommendation", + "w3c council", + "w3c council chair", "w3c decision", - "w3c director", "w3c fellows", "w3c group", "w3c member", @@ -17018,13 +19729,18 @@ "w3c team", "w3c working draft", "wait and queue a report for", + "wait for a matching prefetch record", + "wait for a matching prerendering record", "wait for all", + "wait for cross origin trusted scoring signals authorization from a fetcher", + "wait for key", "wait for navigation to complete", + "wait for script body from a fetcher", "wait queue", + "wait until configuration input promises resolve", "waiting", "waiting asynchronously", "waiting for all", - "waiting for the navigation to complete", "waiting_for_segment", "waitingforkey", "wake lock type", @@ -17037,23 +19753,32 @@ "waveshaperoptions", "wbr", "wd", + "weak map", "weak scoping proximity", "weaker inset", - "weakmagnitude", "web analytics", + "web animations animation model", + "web animations api", + "web animations model", + "web animations timing model", "web application", "web audio api", "web authentication api", + "web custom format", "web element", "web element identifier", "web element reference object", "web elements", + "web frame", "web frame identifier", + "web frames", "web idl arguments list", "web locks tasks source", "web push protocol", "web share target", + "web window", "web window identifier", + "web windows", "web worker", "web+ scheme prefix", "web-exposed available screen area", @@ -17068,13 +19793,23 @@ "webauthn signature", "webauthn/fido2 protocol", "webdriver", + "webdriver bidi auth required", + "webdriver bidi before request sent", + "webdriver bidi cache behavior", "webdriver bidi dom content loaded", "webdriver bidi download started", + "webdriver bidi fetch error", "webdriver bidi fragment navigated", "webdriver bidi load complete", + "webdriver bidi navigable created", + "webdriver bidi navigable destroyed", "webdriver bidi navigation aborted", "webdriver bidi navigation failed", "webdriver bidi navigation started", + "webdriver bidi page show", + "webdriver bidi pop state", + "webdriver bidi response completed", + "webdriver bidi response started", "webdriver bidi user prompt closed", "webdriver bidi user prompt opened", "webdriver navigation status", @@ -17086,18 +19821,19 @@ "webglrenderingcontextoverloads", "webgpu", "webgpu interface", + "webgpu object", "webgpu platform", "webgpu task source", - "webgpu-context", "webkitURL", "webkitversion", "webnn-feature", "webrtc", + "websocket", "websocket connection", "websocket connections not associated with a session", "websocket listener", "websocket task source", - "webtransport stream", + "websocket url", "webusb platform capability descriptor", "webvtt", "webvtt alignment cue setting", @@ -17225,11 +19961,13 @@ "well known type name", "well-formed", "well-formed language tag", - "well-formed language tags", + "well-known file", + "well-known mime type from os specific format", "well-known type record", "well-typed", "wheat", "wheel", + "wheel event transaction", "wheel input source", "when-defined promise map", "white", @@ -17238,6 +19976,8 @@ "white space", "white space characters", "white-space", + "white-space-collapse", + "white-space-trim", "whitesmoke", "whitespace", "whitespace byte", @@ -17259,6 +19999,7 @@ "window", "window controls", "window controls overlay", + "window coordinates", "window dimensioning/positioning", "window event loop", "window handle", @@ -17266,7 +20007,6 @@ "window open steps", "window placement task source", "window post message steps", - "window rect", "window resource", "window state", "window states", @@ -17292,15 +20032,16 @@ "windows-1258", "windows-874", "windowtext", - "with an error", + "within home tab scope", + "word", "word boundary", + "word boundary detection", "word bounded", "word separator", "word spacing", - "word-boundary-detection", - "word-boundary-expansion", "word-break", "word-separator character", + "word-space-transform", "word-spacing", "word-wrap", "words", @@ -17319,11 +20060,13 @@ "worklet animation", "worklet destination type", "worklet event loop", + "worklet function", "worklet global scope type", "worklet global scopes", "workshops", "would need a browsing context group switch due to report-only", "would start a number", + "would start a unicode-range", "would start an ident sequence", "wrap", "wrap-after", @@ -17348,22 +20091,25 @@ "write characteristic value", "write content to the clipboard", "write long characteristic descriptors", + "write web custom formats", "write without response", - "write-only storage texture", + "writeEncodedData", "writecharacteristicvalue", "writedatagrams", - "writeencodeddata", "writeframe", "writer", "writing content", "writing mode", + "writing system", "writing system keys", "writing-mode", "wsp", "x", "x-axis", "x-content-type-options", + "x-fledge-bidding-signals-format-version", "x-frame-options", + "x-height", "x-height baseline", "x-mac-cyrillic", "x-middle baseline", @@ -17407,10 +20153,10 @@ "xsltprocessor", "y", "y-axis", - "yank", "yearless date", "yellow", "yellowgreen", + "yes", "z-index", "zero value", "zhuyin fuhao", @@ -17424,12 +20170,22 @@ "{a}", "|", "||", - "~" + "~", + "~=" ], "::first-letter": [ "::postfix", "::prefix" ], + "<<text-edge>>": [ + "alphabetic", + "cap", + "ex", + "ideographic", + "ideographic-ink", + "leading", + "text" + ], "<angle>": [ "deg", "grad", @@ -17446,6 +20202,7 @@ "<basic-shape>": [ "circle()", "ellipse()", + "equivalent path", "inset()", "path()", "polygon()", @@ -17454,7 +20211,7 @@ "xywh()" ], "<bg-clip>": [ - "border", + "border-area", "text" ], "<blend-mode>": [ @@ -17503,7 +20260,6 @@ "margin-box", "padding-box", "stroke-box", - "svg viewport origin box", "view-box" ], "<by-to>": [ @@ -17511,11 +20267,19 @@ "to" ], "<color>": [ + "<alpha-value>", + "accentcolor", + "accentcolortext", + "activeborder", + "activecaption", + "activetext", "aliceblue", "antiquewhite", + "appworkspace", "aqua", "aquamarine", "azure", + "background", "beige", "bisque", "black", @@ -17524,7 +20288,15 @@ "blueviolet", "brown", "burlywood", + "buttonborder", + "buttonface", + "buttonhighlight", + "buttonshadow", + "buttontext", "cadetblue", + "canvas", + "canvastext", + "captiontext", "chartreuse", "chocolate", "coral", @@ -17557,6 +20329,8 @@ "dimgray", "dimgrey", "dodgerblue", + "field", + "fieldtext", "firebrick", "floralwhite", "forestgreen", @@ -17566,13 +20340,21 @@ "gold", "goldenrod", "gray", + "graytext", "green", "greenyellow", "grey", + "highlight", + "highlighttext", "honeydew", "hotpink", + "inactiveborder", + "inactivecaption", + "inactivecaptiontext", "indianred", "indigo", + "infobackground", + "infotext", "ivory", "khaki", "lavender", @@ -17597,7 +20379,10 @@ "lime", "limegreen", "linen", + "linktext", "magenta", + "mark", + "marktext", "maroon", "mediumaquamarine", "mediumblue", @@ -17608,6 +20393,8 @@ "mediumspringgreen", "mediumturquoise", "mediumvioletred", + "menu", + "menutext", "midnightblue", "mintcream", "mistyrose", @@ -17639,8 +20426,11 @@ "saddlebrown", "salmon", "sandybrown", + "scrollbar", "seagreen", "seashell", + "selecteditem", + "selecteditemtext", "sienna", "silver", "skyblue", @@ -17653,13 +20443,22 @@ "tan", "teal", "thistle", + "threeddarkshadow", + "threedface", + "threedhighlight", + "threedlightshadow", + "threedshadow", "tomato", "transparent", "turquoise", "violet", + "visitedtext", "wheat", "white", "whitesmoke", + "window", + "windowframe", + "windowtext", "yellow", "yellowgreen" ], @@ -17670,6 +20469,7 @@ "stretch" ], "<content-list>": [ + "attr()", "close-quote", "contents", "leader()", @@ -17684,6 +20484,14 @@ "flex-start", "start" ], + "<coord-box>": [ + "border-box", + "content-box", + "fill-box", + "padding-box", + "stroke-box", + "view-box" + ], "<counter-style-name>": [ "arabic-indic", "armenian", @@ -17750,6 +20558,31 @@ "ease-in-out", "ease-out" ], + "<deprecated-color>": [ + "activeborder", + "activecaption", + "appworkspace", + "background", + "buttonhighlight", + "buttonshadow", + "captiontext", + "inactiveborder", + "inactivecaption", + "inactivecaptiontext", + "infobackground", + "infotext", + "menu", + "menutext", + "scrollbar", + "threeddarkshadow", + "threedface", + "threedhighlight", + "threedlightshadow", + "threedshadow", + "window", + "windowframe", + "windowtext" + ], "<display-box>": [ "contents", "none" @@ -17785,6 +20618,9 @@ "<display-list-item>": [ "list-item" ], + "<display-listitem>": [ + "list-item" + ], "<display-outside>": [ "block", "inline", @@ -17793,10 +20629,6 @@ "<easing-function>": [ "linear" ], - "<ending-shape>": [ - "circle", - "ellipse" - ], "<flex>": [ "fr", "fr unit" @@ -17807,9 +20639,10 @@ ], "<generic-family>": [ "cursive", - "emoji", - "fangsong", "fantasy", + "generic(fangsong)", + "generic(kai)", + "generic(nastaliq)", "math", "monospace", "sans-serif", @@ -17828,7 +20661,6 @@ "margin-box", "padding-box", "stroke-box", - "svg viewport origin box", "view-box" ], "<grid-line>": [ @@ -17838,13 +20670,61 @@ "span && [ <integer [1,∞]> || <custom-ident> ]", "span && [ <integer> || <custom-ident> ]" ], + "<inset-area>": [ + "block-end", + "block-self-end", + "block-self-start", + "block-start", + "bottom", + "center", + "end", + "inline-end", + "inline-self-end", + "inline-self-start", + "inline-start", + "left", + "right", + "self-end", + "self-start", + "span-all", + "span-block-end", + "span-block-start", + "span-bottom", + "span-end", + "span-inline-end", + "span-inline-start", + "span-start", + "span-top", + "span-x-end", + "span-x-start", + "span-y-end", + "span-y-start", + "start", + "top", + "x-end", + "x-self-end", + "x-self-start", + "x-start", + "y-end", + "y-self-end", + "y-self-start", + "y-start" + ], + "<layout-box>": [ + "border-box", + "content-box", + "margin-box", + "padding-box" + ], "<left>": [ "auto" ], "<length>": [ "advance measure", "cap", + "cap unit", "ch", + "ch unit", "cm", "dvb", "dvh", @@ -17853,10 +20733,14 @@ "dvmin", "dvw", "em", + "em unit", "ex", + "ex unit", "ic", + "ic unit", "in", "lh", + "lh unit", "lvb", "lvh", "lvi", @@ -17869,11 +20753,17 @@ "px", "q", "rcap", + "rcap unit", "rch", + "rch unit", "rem", + "rem unit", "rex", + "rex unit", "ric", + "ric unit", "rlh", + "rlh unit", "svb", "svh", "svi", @@ -17904,6 +20794,156 @@ "thick", "thin" ], + "<named-color>": [ + "aliceblue", + "antiquewhite", + "aqua", + "aquamarine", + "azure", + "beige", + "bisque", + "black", + "blanchedalmond", + "blue", + "blueviolet", + "brown", + "burlywood", + "cadetblue", + "chartreuse", + "chocolate", + "coral", + "cornflowerblue", + "cornsilk", + "crimson", + "cyan", + "darkblue", + "darkcyan", + "darkgoldenrod", + "darkgray", + "darkgreen", + "darkgrey", + "darkkhaki", + "darkmagenta", + "darkolivegreen", + "darkorange", + "darkorchid", + "darkred", + "darksalmon", + "darkseagreen", + "darkslateblue", + "darkslategray", + "darkslategrey", + "darkturquoise", + "darkviolet", + "deeppink", + "deepskyblue", + "dimgray", + "dimgrey", + "dodgerblue", + "firebrick", + "floralwhite", + "forestgreen", + "fuchsia", + "gainsboro", + "ghostwhite", + "gold", + "goldenrod", + "gray", + "green", + "greenyellow", + "grey", + "honeydew", + "hotpink", + "indianred", + "indigo", + "ivory", + "khaki", + "lavender", + "lavenderblush", + "lawngreen", + "lemonchiffon", + "lightblue", + "lightcoral", + "lightcyan", + "lightgoldenrodyellow", + "lightgray", + "lightgreen", + "lightgrey", + "lightpink", + "lightsalmon", + "lightseagreen", + "lightskyblue", + "lightslategray", + "lightslategrey", + "lightsteelblue", + "lightyellow", + "lime", + "limegreen", + "linen", + "magenta", + "maroon", + "mediumaquamarine", + "mediumblue", + "mediumorchid", + "mediumpurple", + "mediumseagreen", + "mediumslateblue", + "mediumspringgreen", + "mediumturquoise", + "mediumvioletred", + "midnightblue", + "mintcream", + "mistyrose", + "moccasin", + "navajowhite", + "navy", + "oldlace", + "olive", + "olivedrab", + "orange", + "orangered", + "orchid", + "palegoldenrod", + "palegreen", + "paleturquoise", + "palevioletred", + "papayawhip", + "peachpuff", + "peru", + "pink", + "plum", + "powderblue", + "purple", + "rebeccapurple", + "red", + "rosybrown", + "royalblue", + "saddlebrown", + "salmon", + "sandybrown", + "seagreen", + "seashell", + "sienna", + "silver", + "skyblue", + "slateblue", + "slategray", + "slategrey", + "snow", + "springgreen", + "steelblue", + "tan", + "teal", + "thistle", + "tomato", + "turquoise", + "violet", + "wheat", + "white", + "whitesmoke", + "yellow", + "yellowgreen" + ], "<overflow-position>": [ "safe", "unsafe" @@ -17924,15 +20964,76 @@ "legal", "letter" ], + "<paint-box>": [ + "border-box", + "content-box", + "fill-box", + "padding-box", + "stroke-box" + ], "<paint>": [ "none" ], + "<position-area>": [ + "block-end", + "block-self-end", + "block-self-start", + "block-start", + "bottom", + "center", + "end", + "inline-end", + "inline-self-end", + "inline-self-start", + "inline-start", + "left", + "right", + "self-end", + "self-start", + "span-all", + "span-block-end", + "span-block-start", + "span-bottom", + "span-end", + "span-inline-end", + "span-inline-start", + "span-start", + "span-top", + "span-x-end", + "span-x-start", + "span-y-end", + "span-y-start", + "start", + "top", + "x-end", + "x-self-end", + "x-self-start", + "x-start", + "y-end", + "y-self-end", + "y-self-start", + "y-start" + ], "<quote>": [ "close-quote", "no-close-quote", "no-open-quote", "open-quote" ], + "<radial-extent>": [ + "closest-corner", + "closest-side", + "farthest-corner", + "farthest-side" + ], + "<radial-shape>": [ + "circle", + "ellipse" + ], + "<radial-size>": [ + "<length [0,∞]>", + "<length-percentage [0,∞]>{2}" + ], "<ray-size>": [ "closest-corner", "closest-side", @@ -17940,26 +21041,30 @@ "farthest-side", "sides" ], + "<request-url-modifier>": [ + "<crossorigin-modifier>", + "<integrity-modifier>", + "<referrerpolicy-modifier>", + "anonymous", + "crossorigin()", + "integrity()", + "no-referrer", + "no-referrer-when-downgrade", + "origin", + "origin-when-cross-origin", + "referrerpolicy()", + "same-origin", + "strict-origin", + "strict-origin-when-cross-origin", + "unsafe-url", + "use-credentials" + ], "<resolution>": [ "dpcm", "dpi", "dppx", "x" ], - "<rg-ending-shape>": [ - "circle", - "ellipse" - ], - "<rg-extent-keyword>": [ - "closest-corner", - "closest-side", - "farthest-corner", - "farthest-side" - ], - "<rg-size>": [ - "<length [0,∞]>", - "<length-percentage [0,∞]>{2}" - ], "<right>": [ "auto" ], @@ -17981,20 +21086,14 @@ "<shape-box>": [ "border-box", "content-box", - "fill-box", "margin-box", - "padding-box", - "stroke-box", - "svg viewport origin box", - "view-box" + "padding-box" ], "<single-animation-timeline>": [ "auto", "none" ], "<size>": [ - "<length-percentage>{2}", - "<length>", "closest-corner", "closest-side", "farthest-corner", @@ -18041,6 +21140,11 @@ "<url>": [ "local url flag" ], + "<visual-box>": [ + "border-box", + "content-box", + "padding-box" + ], "@color-profile": [ "components", "rendering-intent", @@ -18112,6 +21216,7 @@ "font-style", "font-variation-settings", "font-weight", + "font-width", "line-gap-override", "size-adjust", "src", @@ -18132,13 +21237,24 @@ "auto" ], "@font-feature-values": [ - "font-display" + "@annotation", + "@character-variant", + "@historical-forms", + "@ornaments", + "@styleset", + "@stylistic", + "@swash", + "font-display", + "font-feature-value-type" ], "@font-palette-values": [ "base-palette", "font-family", "override-colors" ], + "@function": [ + "result" + ], "@media": [ "-webkit-device-pixel-ratio", "-webkit-max-device-pixel-ratio", @@ -18201,6 +21317,13 @@ "rec2020", "srgb" ], + "@media/display-mode": [ + "browser", + "fullscreen", + "minimal-ui", + "picture-in-picture", + "standalone" + ], "@media/dynamic-range": [ "high", "standard" @@ -18316,19 +21439,26 @@ "initial-value", "syntax" ], + "@view-transition": [ + "navigation", + "types" + ], + "@view-transition/navigation": [ + "auto", + "none" + ], "@viewport": [ "viewport-fit" ], "ARIA": [ - "owned", - "owned element", - "owned element's", "property" ], "ARIAMixin": [ "ariaActiveDescendantElement", "ariaAtomic", "ariaAutoComplete", + "ariaBrailleLabel", + "ariaBrailleRoleDescription", "ariaBusy", "ariaChecked", "ariaColCount", @@ -18376,6 +21506,35 @@ "ariaValueText", "role" ], + "AV1 Image Item Type": [ + "av01", + "ma1a", + "ma1b" + ], + "AV1 Item Configuration Property": [ + "av1c" + ], + "AV1LayeredImageIndexingProperty": [ + "a1lx" + ], + "AV1MetadataSampleGroupEntry": [ + "av1m" + ], + "AV1MultiFrameSampleGroupEntry": [ + "av1m" + ], + "AV1SampleEntry": [ + "av01" + ], + "AVIF Image Sequence brand": [ + "avis" + ], + "AVIF Image brand": [ + "avif" + ], + "AVIF Intra-only brand": [ + "avio" + ], "AacBitstreamFormat": [ "\"aac\"", "\"adts\"", @@ -18390,7 +21549,8 @@ "abort()", "abort(reason)", "constructor()", - "signal" + "signal", + "signal abort" ], "AbortController/abort()": [ "reason" @@ -18406,11 +21566,14 @@ "abort(reason)", "aborted", "add", - "follow", + "any(signals)", + "dependent", + "dependent signals", "onabort", "reason", "remove", "signal abort", + "source signals", "throwIfAborted()", "timeout(milliseconds)" ], @@ -18420,12 +21583,12 @@ "AbortSignal/abort(reason)": [ "reason" ], + "AbortSignal/any(signals)": [ + "signals" + ], "AbortSignal/timeout(milliseconds)": [ "milliseconds" ], - "AbsoluteOrientationReadingValues": [ - "quaternion" - ], "AbsoluteOrientationSensor": [ "AbsoluteOrientationSensor()", "AbsoluteOrientationSensor(sensorOptions)", @@ -18480,25 +21643,39 @@ "\"device\"", "\"screen\"" ], - "AccelerometerReadingValues": [ - "x", - "y", - "z" - ], "AccelerometerSensorOptions": [ "referenceFrame" ], - "AccountState": [ - "allows logout", - "registered", - "registration state", - "unregistered" + "AdAuctionData": [ + "request", + "requestId" + ], + "AdAuctionDataConfig": [ + "coordinatorOrigin", + "seller" + ], + "AdRender": [ + "height", + "url", + "width" ], "AddEventListenerOptions": [ "once", "passive", "signal" ], + "AddressErrors": [ + "addressLine", + "city", + "country", + "dependentLocality", + "organization", + "phone", + "postalCode", + "recipient", + "region", + "sortingCode" + ], "AesCbcParams": [ "iv" ], @@ -18565,9 +21742,6 @@ "discard", "keep" ], - "AmbientLightReadingValues": [ - "illuminance" - ], "AmbientLightSensor": [ "AmbientLightSensor()", "AmbientLightSensor(sensorOptions)", @@ -18688,6 +21862,9 @@ "play()", "playState", "playbackRate", + "progress", + "rangeEnd", + "rangeStart", "ready", "replaceState", "reverse()", @@ -18785,7 +21962,11 @@ "\"finished\"", "\"idle\"", "\"paused\"", - "\"running\"" + "\"running\"", + "finished", + "idle", + "paused", + "running" ], "AnimationPlaybackEvent": [ "AnimationPlaybackEvent(type)", @@ -18820,20 +22001,27 @@ "\"persisted\"", "\"removed\"" ], + "AnimationReplacedState": [ + "active", + "persisted", + "removed" + ], + "AnimationTimeOptions": [ + "range" + ], "AnimationTimeline": [ "currentTime", "duration", "getCurrentTime()", - "getCurrentTime(optionalrangeName)", - "getCurrentTime(rangeName)", + "getCurrentTime(options)", "play()", "play(effect)" ], "AnimationTimeline/getCurrentTime()": [ - "rangeName" + "options" ], - "AnimationTimeline/getCurrentTime(rangeName)": [ - "rangeName" + "AnimationTimeline/getCurrentTime(options)": [ + "options" ], "AnimationTimeline/play(effect)": [ "effect" @@ -18863,48 +22051,61 @@ "concat(...items)", "copyWithin(target, start, end)", "entries()", - "every(callbackfn, thisArg)", + "every(callback, thisArg)", "fill(value, start, end)", - "filter(callbackfn, thisArg)", + "filter(callback, thisArg)", "find(predicate, thisArg)", "findIndex(predicate, thisArg)", "findLast(predicate, thisArg)", "findLastIndex(predicate, thisArg)", "flat(depth)", "flatMap(mapperFunction, thisArg)", - "forEach(callbackfn, thisArg)", - "from(items, mapfn, thisArg)", + "forEach(callback, thisArg)", + "from(items, mapper, thisArg)", "includes(searchElement, fromIndex)", "indexOf(searchElement, fromIndex)", "isArray(arg)", "join(separator)", "keys()", "lastIndexOf(searchElement, fromIndex)", - "map(callbackfn, thisArg)", + "map(callback, thisArg)", "of(...items)", "pop()", "push(...items)", - "reduce(callbackfn, initialValue)", - "reduceRight(callbackfn, initialValue)", + "reduce(callback, initialValue)", + "reduceRight(callback, initialValue)", "reverse()", "shift()", "slice(start, end)", - "some(callbackfn, thisArg)", - "sort(comparefn)", + "some(callback, thisArg)", + "sort(comparator)", "splice(start, deleteCount, ...items)", "toLocaleString(reserved1, reserved2)", + "toReversed()", + "toSorted(comparator)", + "toSpliced(start, skipCount, ...items)", "toString()", "unshift(...items)", - "values()" + "values()", + "with(index, value)" + ], + "Array.prototype [ %Symbol.iterator% ] ( )": [ + "Array.prototype %Symbol.iterator% ()" ], "ArrayBuffer": [ - "ArrayBuffer(length)", + "ArrayBuffer(length, options)", "byteLength", "create", "detach", + "detached", "isView(arg)", + "maxByteLength", + "resizable", + "resize(newLength)", "slice(start, end)", "transfer", + "transfer(newLength)", + "transferToFixedLength(newLength)", "write" ], "ArrayBuffer/write": [ @@ -18921,17 +22122,10 @@ "flatten" ], "AsyncFunction": [ - "AsyncFunction(...parameterArgs, bodyArg)", - "length" - ], - "AsyncGenerator": [ - "next(value)", - "return(value)", - "throw(exception)" + "AsyncFunction(...parameterArgs, bodyArg)" ], "AsyncGeneratorFunction": [ "AsyncGeneratorFunction(...parameterArgs, bodyArg)", - "length", "prototype" ], "Atomics": [ @@ -18946,6 +22140,7 @@ "store(typedArray, index, value)", "sub(typedArray, index, value)", "wait(typedArray, index, value, timeout)", + "waitAsync(typedArray, index, value, timeout)", "xor(typedArray, index, value)" ], "AttestationConveyancePreference": [ @@ -18975,6 +22170,83 @@ "specified", "value" ], + "AttributionReportingRequestOptions": [ + "eventSourceEligible", + "triggerEligible" + ], + "AuctionAd": [ + "allowedReportingOrigins", + "buyerAndSellerReportingId", + "buyerReportingId", + "metadata", + "renderURL", + "sizeGroup" + ], + "AuctionAdConfig": [ + "additionalBids", + "allSlotsRequestedSizes", + "auctionNonce", + "auctionReportBuyerDebugModeConfig", + "auctionReportBuyerKeys", + "auctionReportBuyers", + "auctionSignals", + "componentAuctions", + "decisionLogicURL", + "deprecatedRenderURLReplacements", + "directFromSellerSignalsHeaderAdSlot", + "interestGroupBuyers", + "maxTrustedScoringSignalsURLLength", + "perBuyerCumulativeTimeouts", + "perBuyerCurrencies", + "perBuyerExperimentGroupIds", + "perBuyerGroupLimits", + "perBuyerMultiBidLimits", + "perBuyerPrioritySignals", + "perBuyerRealTimeReportingConfig", + "perBuyerSignals", + "perBuyerTimeouts", + "privateAggregationConfig", + "reportingTimeout", + "requestId", + "requestedSize", + "requiredSellerCapabilities", + "resolveToConfig", + "seller", + "sellerCurrency", + "sellerExperimentGroupId", + "sellerRealTimeReportingConfig", + "sellerSignals", + "sellerTimeout", + "serverResponse", + "signal", + "trustedScoringSignalsURL" + ], + "AuctionAdInterestGroup": [ + "additionalBidKey", + "lifetimeMs", + "priority", + "prioritySignalsOverrides", + "privateAggregationConfig" + ], + "AuctionAdInterestGroupKey": [ + "name", + "owner" + ], + "AuctionAdInterestGroupSize": [ + "height", + "width" + ], + "AuctionRealTimeReportingConfig": [ + "type" + ], + "AuctionReportBuyerDebugModeConfig": [ + "debugKey", + "enabled" + ], + "AuctionReportBuyersConfig": [ + "bucket", + "scale" + ], "AudioBuffer": [ "AudioBuffer(options)", "[[internal data]]", @@ -19116,7 +22388,9 @@ "createMediaStreamDestination()", "createMediaStreamSource(mediaStream)", "createMediaStreamTrackSource(mediaStreamTrack)", + "error", "getOutputTimestamp()", + "onerror", "onsinkchange", "outputLatency", "renderCapacity", @@ -19161,9 +22435,16 @@ ], "AudioContextOptions": [ "latencyHint", + "renderSizeHint", "sampleRate", "sinkId" ], + "AudioContextRenderSizeCategory": [ + "\"default\"", + "\"hardware\"", + "default", + "hardware" + ], "AudioContextState": [ "\"closed\"", "\"running\"", @@ -19217,7 +22498,8 @@ "numberOfChannels", "numberOfFrames", "sampleRate", - "timestamp" + "timestamp", + "transfer" ], "AudioDataOutputCallback": [ "output" @@ -19327,6 +22609,7 @@ "AudioEncoderConfig": [ "aac", "bitrate", + "bitrateMode", "codec", "flac", "numberOfChannels", @@ -19625,6 +22908,24 @@ "AudioScheduledSourceNode/stop(when)": [ "when" ], + "AudioSession": [ + "onstatechange", + "state", + "type" + ], + "AudioSessionState": [ + "\"active\"", + "\"inactive\"", + "\"interrupted\"" + ], + "AudioSessionType": [ + "\"ambient\"", + "\"auto\"", + "\"play-and-record\"", + "\"playback\"", + "\"transient\"", + "\"transient-solo\"" + ], "AudioSinkInfo": [ "type" ], @@ -19665,6 +22966,7 @@ "currentTime", "port", "registerProcessor(name, processorCtor)", + "renderQuantumSize", "sampleRate" ], "AudioWorkletGlobalScope/registerProcessor(name, processorCtor)": [ @@ -19809,6 +23111,7 @@ "userHandle" ], "AuthenticatorAssertionResponseJSON": [ + "attestationObject", "authenticatorData", "clientDataJSON", "signature", @@ -19830,7 +23133,10 @@ ], "AuthenticatorAttestationResponseJSON": [ "attestationObject", + "authenticatorData", "clientDataJSON", + "publicKey", + "publicKeyAlgorithm", "transports" ], "AuthenticatorResponse": [ @@ -19847,11 +23153,13 @@ "\"hybrid\"", "\"internal\"", "\"nfc\"", + "\"smart-card\"", "\"usb\"", "ble", "hybrid", "internal", "nfc", + "smart-card", "usb" ], "AutoKeyword": [ @@ -19884,16 +23192,11 @@ "\"annexb\"", "\"avc\"", "annexb", - "avc", - "hevc" + "avc" ], "AvcEncoderConfig": [ "format" ], - "AxisInterval": [ - "end", - "start" - ], "BackgroundFetchEvent": [ "BackgroundFetchEvent(type, init)", "background fetch", @@ -20087,6 +23390,7 @@ "[[control thread state]]", "[[current frame]]", "[[pending promises]]", + "[[render quantum size]]", "[[rendering thread state]]", "associated task queue", "audioWorklet", @@ -20123,6 +23427,7 @@ "destination", "listener", "onstatechange", + "renderQuantumSize", "sampleRate", "state", "statechange" @@ -20239,6 +23544,22 @@ "BeforeUnloadEvent": [ "returnValue" ], + "BiddingBrowserSignals": [ + "adComponentsLimit", + "bidCount", + "crossOriginDataVersion", + "dataVersion", + "forDebuggingOnlyInCooldownOrLockout", + "joinCount", + "multiBidLimit", + "prevWinsMs", + "recency", + "requestedSize", + "seller", + "topLevelSeller", + "topWindowHostname", + "wasmHelper" + ], "BidirectionalStream": [ "create" ], @@ -20332,6 +23653,7 @@ "Blob(blobParts)", "Blob(blobParts, options)", "arrayBuffer()", + "bytes()", "constructor()", "constructor(blobParts)", "constructor(blobParts, options)", @@ -20420,6 +23742,7 @@ "region" ], "Bluetooth": [ + "[[activeScans]]", "[[attributeInstanceMap]]", "[[deviceInstanceMap]]", "[[referringDevice]]", @@ -20429,7 +23752,9 @@ "onavailabilitychanged", "referringDevice", "requestDevice()", - "requestDevice(options)" + "requestDevice(options)", + "requestLEScan()", + "requestLEScan(options)" ], "Bluetooth cache": [ "bluetooth cache" @@ -20443,6 +23768,12 @@ "Bluetooth/requestDevice(options)": [ "options" ], + "Bluetooth/requestLEScan()": [ + "options" + ], + "Bluetooth/requestLEScan(options)": [ + "options" + ], "BluetoothAdvertisingEvent": [ "BluetoothAdvertisingEvent(type, init)", "appearance", @@ -20484,11 +23815,32 @@ "write", "writeWithoutResponse" ], + "BluetoothDataFilter": [ + "BluetoothDataFilter()", + "BluetoothDataFilter(init)", + "constructor()", + "constructor(init)", + "dataPrefix", + "mask" + ], + "BluetoothDataFilter/BluetoothDataFilter()": [ + "init" + ], + "BluetoothDataFilter/BluetoothDataFilter(init)": [ + "init" + ], + "BluetoothDataFilter/constructor()": [ + "init" + ], + "BluetoothDataFilter/constructor(init)": [ + "init" + ], "BluetoothDataFilterInit": [ "canonicalizing", "dataPrefix", "mask", - "matches" + "matches", + "strict subset" ], "BluetoothDevice": [ "[[allowedManufacturerData]]", @@ -20496,6 +23848,7 @@ "[[context]]", "[[gatt]]", "[[representedDevice]]", + "[[returnedFromScans]]", "[[watchAdvertisementsState]]", "forget()", "gatt", @@ -20517,6 +23870,38 @@ "onadvertisementreceived", "ongattserverdisconnected" ], + "BluetoothLEScan": [ + "acceptAllAdvertisements", + "active", + "filters", + "keepRepeatedDevices", + "match", + "stop()" + ], + "BluetoothLEScanFilter": [ + "BluetoothLEScanFilter()", + "BluetoothLEScanFilter(init)", + "constructor()", + "constructor(init)", + "manufacturerData", + "match", + "name", + "namePrefix", + "serviceData", + "services" + ], + "BluetoothLEScanFilter/BluetoothLEScanFilter()": [ + "init" + ], + "BluetoothLEScanFilter/BluetoothLEScanFilter(init)": [ + "init" + ], + "BluetoothLEScanFilter/constructor()": [ + "init" + ], + "BluetoothLEScanFilter/constructor(init)": [ + "init" + ], "BluetoothLEScanFilterInit": [ "canonicalizing", "manufacturerData", @@ -20525,6 +23910,37 @@ "serviceData", "services" ], + "BluetoothLEScanOptions": [ + "acceptAllAdvertisements", + "filters", + "keepRepeatedDevices" + ], + "BluetoothLEScanPermissionDescriptor": [ + "acceptAllAdvertisements", + "filters", + "keepRepeatedDevices" + ], + "BluetoothLEScanPermissionResult": [ + "scans" + ], + "BluetoothManufacturerDataFilter": [ + "BluetoothManufacturerDataFilter()", + "BluetoothManufacturerDataFilter(init)", + "constructor()", + "constructor(init)" + ], + "BluetoothManufacturerDataFilter/BluetoothManufacturerDataFilter()": [ + "init" + ], + "BluetoothManufacturerDataFilter/BluetoothManufacturerDataFilter(init)": [ + "init" + ], + "BluetoothManufacturerDataFilter/constructor()": [ + "init" + ], + "BluetoothManufacturerDataFilter/constructor(init)": [ + "init" + ], "BluetoothManufacturerDataFilterInit": [ "companyIdentifier" ], @@ -20642,6 +24058,24 @@ "BluetoothRemoteGATTService/getIncludedServices(service)": [ "service" ], + "BluetoothServiceDataFilter": [ + "BluetoothServiceDataFilter()", + "BluetoothServiceDataFilter(init)", + "constructor()", + "constructor(init)" + ], + "BluetoothServiceDataFilter/BluetoothServiceDataFilter()": [ + "init" + ], + "BluetoothServiceDataFilter/BluetoothServiceDataFilter(init)": [ + "init" + ], + "BluetoothServiceDataFilter/constructor()": [ + "init" + ], + "BluetoothServiceDataFilter/constructor(init)": [ + "init" + ], "BluetoothServiceDataFilterInit": [ "service" ], @@ -20671,10 +24105,11 @@ "blob()", "body", "bodyUsed", + "bytes()", "consume body", "formData()", + "get the mime type", "json()", - "mime type", "text()", "unusable" ], @@ -20723,16 +24158,45 @@ "onmessageerror", "postMessage(message)" ], + "Brotli patch": [ + "brotlistream", + "compatibilityid", + "format" + ], "BrowserCaptureMediaStreamTrack": [ "clone()", "cropTo()", - "cropTo(cropTarget)" + "cropTo(cropTarget)", + "restrictTo()", + "restrictTo(RestrictionTarget)" + ], + "BrowsingTopic": [ + "configVersion", + "modelVersion", + "taxonomyVersion", + "topic", + "version" + ], + "BrowsingTopicsOptions": [ + "skipObservation" ], "BufferSource": [ "byte length", "detached", + "transferable", "underlying buffer" ], + "BufferedChangeEvent": [ + "addedRanges", + "constructor()", + "constructor(type)", + "constructor(type, eventInitDict)", + "removedRanges" + ], + "BufferedChangeEventInit": [ + "addedRanges", + "removedRanges" + ], "ByteLengthQueuingStrategy": [ "ByteLengthQueuingStrategy(init)", "[[highwatermark]]", @@ -20775,9 +24239,12 @@ "apply to", "box", "box tree", + "cap(value)", "ch(value)", "cm(value)", "component value", + "consistent type", + "contain a percentage", "cqb(value)", "cqh(value)", "cqi(value)", @@ -20786,6 +24253,7 @@ "cqw(value)", "css ident", "css identifier", + "css value definition syntax", "declaration", "decode bytes", "deg(value)", @@ -20819,6 +24287,8 @@ "ident", "identifier", "in(value)", + "infinite", + "infinity", "inherit", "inheritance", "internal representation", @@ -20833,8 +24303,14 @@ "lvmax(value)", "lvmin(value)", "lvw(value)", + "made consistent", + "make a type consistent", + "make consistent", "mm(value)", "ms(value)", + "nan", + "negative infinity", + "negative zero", "number(value)", "paintWorklet", "parent box", @@ -20858,6 +24334,9 @@ "parsing a list", "pc(value)", "percent(value)", + "percentage-containing", + "positive infinity", + "positive zero", "preserved tokens", "property", "property declarations", @@ -20866,16 +24345,23 @@ "qualified rule", "rad(value)", "random functions", + "rcap(value)", + "rch(value)", "registerProperty(definition)", "reification", "reify", "rem(value)", + "rex(value)", + "ric(value)", "rlh(value)", "round to the nearest integer", + "rule", "s(value)", + "signed zero", "simple block", "start", "startmost", + "stylesheet", "support", "support a css selector", "support a font format", @@ -20890,8 +24376,9 @@ "svmin(value)", "svw(value)", "text node", - "text run", + "text sequence", "textual data types", + "token stream", "tokenization", "tokenize", "tree-scoped name", @@ -20924,6 +24411,9 @@ "CSS/Q(value)": [ "value" ], + "CSS/cap(value)": [ + "value" + ], "CSS/ch(value)": [ "value" ], @@ -21096,12 +24586,24 @@ "CSS/rad(value)": [ "value" ], + "CSS/rcap(value)": [ + "value" + ], + "CSS/rch(value)": [ + "value" + ], "CSS/registerProperty(definition)": [ "definition" ], "CSS/rem(value)": [ "value" ], + "CSS/rex(value)": [ + "value" + ], + "CSS/ric(value)": [ + "value" + ], "CSS/rlh(value)": [ "value" ], @@ -21225,15 +24727,36 @@ "symbols", "system" ], - "CSSFontFaceLoadEvent": [ - "fontfaces" - ], - "CSSFontFaceLoadEvent/CSSFontFaceLoadEvent()": [ - "eventInitDict", - "type" - ], - "CSSFontFaceLoadEventInit": [ - "fontfaces" + "CSSFontFaceDescriptors": [ + "ascent-override", + "ascentOverride", + "descent-override", + "descentOverride", + "font-display", + "font-family", + "font-feature-settings", + "font-language-override", + "font-named-instance", + "font-stretch", + "font-style", + "font-variation-settings", + "font-weight", + "font-width", + "fontDisplay", + "fontFamily", + "fontFeatureSettings", + "fontLanguageOverride", + "fontNamedInstance", + "fontStretch", + "fontStyle", + "fontVariationSettings", + "fontWeight", + "fontWidth", + "line-gap-override", + "lineGapOverride", + "src", + "unicode-range", + "unicodeRange" ], "CSSFontFaceRule": [ "style" @@ -21249,6 +24772,7 @@ "annotation", "characterVariant", "fontFamily", + "historicalForms", "ornaments", "styleset", "stylistic", @@ -21353,7 +24877,8 @@ "href", "layerName", "media", - "styleSheet" + "styleSheet", + "supportsText" ], "CSSKeyframeRule": [ "keyText", @@ -21472,9 +24997,7 @@ "style" ], "CSSMath": [ - "invert", "invert a cssnumericvalue", - "negate", "negate a cssnumericvalue" ], "CSSMathClamp": [ @@ -21521,9 +25044,6 @@ "CSSMathMax/CSSMathMax(...args)": [ "args" ], - "CSSMathMax/CSSMathMax(args)": [ - "args" - ], "CSSMathMax/constructor()": [ "args" ], @@ -21544,9 +25064,6 @@ "CSSMathMin/CSSMathMin(...args)": [ "args" ], - "CSSMathMin/CSSMathMin(args)": [ - "args" - ], "CSSMathMin/constructor()": [ "args" ], @@ -21572,13 +25089,7 @@ "\"min\"", "\"negate\"", "\"product\"", - "\"sum\"", - "invert", - "max", - "min", - "negate", - "product", - "sum" + "\"sum\"" ], "CSSMathProduct": [ "CSSMathProduct()", @@ -21594,9 +25105,6 @@ "CSSMathProduct/CSSMathProduct(...args)": [ "args" ], - "CSSMathProduct/CSSMathProduct(args)": [ - "args" - ], "CSSMathProduct/constructor()": [ "args" ], @@ -21617,9 +25125,6 @@ "CSSMathSum/CSSMathSum(...args)": [ "args" ], - "CSSMathSum/CSSMathSum(args)": [ - "args" - ], "CSSMathSum/constructor()": [ "args" ], @@ -21656,14 +25161,17 @@ "is2D" ], "CSSMediaRule": [ + "matches", "media" ], "CSSNamespaceRule": [ "namespaceURI", "prefix" ], + "CSSNestedDeclarations": [ + "style" + ], "CSSNumericArray": [ - "indexed getter", "length" ], "CSSNumericArray/__getter__(index)": [ @@ -21676,14 +25184,7 @@ "\"length\"", "\"percent\"", "\"resolution\"", - "\"time\"", - "angle", - "flex", - "frequency", - "length", - "percent", - "resolution", - "time" + "\"time\"" ], "CSSNumericType": [ "angle", @@ -21851,6 +25352,22 @@ "b", "l" ], + "CSSPageDescriptors": [ + "bleed", + "margin", + "margin-bottom", + "margin-left", + "margin-right", + "margin-top", + "marginBottom", + "marginLeft", + "marginRight", + "marginTop", + "marks", + "page-orientation", + "pageOrientation", + "size" + ], "CSSPageRule": [ "selectorText", "style" @@ -21980,14 +25497,81 @@ "CSSPerspective/constructor(length)": [ "length" ], - "CSSPositionValue": [ - "CSSPositionValue(x, y)", - "x", - "y" + "CSSPositionTryDescriptors": [ + "align-self", + "alignSelf", + "block-size", + "blockSize", + "bottom", + "height", + "inline-size", + "inlineSize", + "inset", + "inset-block", + "inset-block-end", + "inset-block-start", + "inset-inline", + "inset-inline-end", + "inset-inline-start", + "insetBlock", + "insetBlockEnd", + "insetBlockStart", + "insetInline", + "insetInlineEnd", + "insetInlineStart", + "justify-self", + "justifySelf", + "left", + "margin", + "margin-block", + "margin-block-end", + "margin-block-start", + "margin-bottom", + "margin-inline", + "margin-inline-end", + "margin-inline-start", + "margin-left", + "margin-right", + "margin-top", + "marginBlock", + "marginBlockEnd", + "marginBlockStart", + "marginBottom", + "marginInline", + "marginInlineEnd", + "marginInlineStart", + "marginLeft", + "marginRight", + "marginTop", + "max-block-size", + "max-height", + "max-inline-size", + "max-width", + "maxBlockSize", + "maxHeight", + "maxInlineSize", + "maxWidth", + "min-block-size", + "min-height", + "min-inline-size", + "min-width", + "minBlockSize", + "minHeight", + "minInlineSize", + "minWidth", + "place-self", + "placeSelf", + "position-anchor", + "position-area", + "positionAnchor", + "positionArea", + "right", + "top", + "width" ], - "CSSPositionValue/CSSPositionValue(x, y)": [ - "x", - "y" + "CSSPositionTryRule": [ + "name", + "style" ], "CSSPropertyRule": [ "inherits", @@ -22082,6 +25666,7 @@ "PAGE_RULE", "STYLE_RULE", "SUPPORTS_RULE", + "VIEW_TRANSITION_RULE", "child css rules", "cssText", "parent css rule", @@ -22186,6 +25771,7 @@ "owner node", "parent css rule", "parentRule", + "readonly flag", "removeProperty(property)", "setProperty(property, value)", "setProperty(property, value, priority)", @@ -22215,6 +25801,14 @@ "property", "value" ], + "CSSStyleProperties": [ + "camel_cased_attribute", + "cssFloat", + "dashed attribute", + "dashed_attribute", + "webkit-cased attribute", + "webkit_cased_attribute" + ], "CSSStyleRule": [ "cssRules", "deleteRule(index)", @@ -22348,6 +25942,9 @@ "cssText", "property" ], + "CSSSupportsRule": [ + "matches" + ], "CSSTransformComponent": [ "is2D", "stringification behavior", @@ -22463,6 +26060,10 @@ "fallback", "variable" ], + "CSSViewTransitionRule": [ + "navigation", + "types" + ], "Cache": [ "add(request)", "addAll(requests)", @@ -22753,7 +26354,7 @@ ], "CanvasUserInterface": [ "drawFocusIfNeeded(element)", - "scrollPathIntoView()" + "drawFocusIfNeeded(path, element)" ], "CaptureAction": [ "first", @@ -22777,6 +26378,7 @@ "[[IsBound]]", "[[Source]]", "constructor()", + "oncapturedmousechange", "setFocusBehavior()", "setFocusBehavior(focusBehavior)" ], @@ -22791,13 +26393,28 @@ ], "CaptureStartFocusBehavior": [ "focus-captured-surface", + "focus-capturing-application", "no-focus-change" ], + "CapturedMouseEvent": [ + "constructor()", + "constructor(type)", + "constructor(type, eventInitDict)", + "surfaceX", + "surfaceY" + ], + "CapturedMouseEventInit": [ + "surfaceX", + "surfaceY" + ], "CaretPosition": [ "getClientRect()", "offset", "offsetNode" ], + "CaretPositionFromPointOptions": [ + "shadowRoots" + ], "ChannelCountMode": [ "\"clamped-max\"", "\"explicit\"", @@ -22874,9 +26491,24 @@ "ChannelSplitterOptions": [ "numberOfOutputs" ], + "ChapterInformation": [ + "artwork", + "artwork images", + "media metadata", + "startTime", + "starttime", + "title" + ], + "ChapterInformationInit": [ + "artwork", + "startTime", + "title" + ], "CharacterBoundsUpdateEvent": [ "constructor()", "constructor(options)", + "constructor(type)", + "constructor(type, options)", "rangeEnd", "rangeStart" ], @@ -22919,7 +26551,10 @@ ], "CheckVisibilityOptions": [ "checkOpacity", - "checkVisibilityCSS" + "checkVisibilityCSS", + "contentVisibilityAuto", + "opacityProperty", + "visibilityProperty" ], "ChildBreakToken": [ "[[unique id]]", @@ -22972,14 +26607,6 @@ "type", "url" ], - "Client State": [ - "client font subset", - "codepoint reordering map", - "original font axis space", - "original font checksum", - "original font feature list", - "subset axis space" - ], "Client/postMessage(message)": [ "message", "options" @@ -22992,6 +26619,20 @@ "message", "transfer" ], + "ClientCapability": [ + "\"conditionalCreate\"", + "\"conditionalGet\"", + "\"hybridTransport\"", + "\"passkeyPlatformAuthenticator\"", + "\"relatedOrigins\"", + "\"userVerifyingPlatformAuthenticator\"", + "conditionalCreate", + "conditionalGet", + "hybridTransport", + "passkeyPlatformAuthenticator", + "relatedOrigins", + "userVerifyingPlatformAuthenticator" + ], "ClientLifecycleState": [ "\"active\"", "\"frozen\"" @@ -23027,10 +26668,17 @@ ], "Clipboard": [ "read()", + "read(formats)", "readText()", "write(data)", "writeText(data)" ], + "Clipboard/read()": [ + "formats" + ], + "Clipboard/read(formats)": [ + "formats" + ], "Clipboard/write(data)": [ "data" ], @@ -23071,12 +26719,9 @@ "clipboard item", "constructor(items)", "constructor(items, options)", - "createDelayed(items)", - "createDelayed(items, options)", - "delayed", "getType(type)", - "lastModified", "presentationStyle", + "supports(type)", "types", "types array" ], @@ -23096,23 +26741,21 @@ "items", "options" ], - "ClipboardItem/createDelayed(items)": [ - "items", - "options" - ], - "ClipboardItem/createDelayed(items, options)": [ - "items", - "options" - ], "ClipboardItem/getType(type)": [ "type" ], + "ClipboardItem/supports(type)": [ + "type" + ], "ClipboardItemOptions": [ "presentationStyle" ], "ClipboardPermissionDescriptor": [ "allowWithoutGesture" ], + "ClipboardUnsanitizedFormats": [ + "unsanitized" + ], "CloseEvent": [ "CloseEvent(type)", "CloseEvent(type, eventInitDict)", @@ -23144,29 +26787,13 @@ "wasClean" ], "CloseWatcher": [ - "CloseWatcher()", - "CloseWatcher(options)", "cancel", "close", "close()", - "constructor()", - "constructor(options)", "destroy()", - "internal close watcher", "oncancel", - "onclose" - ], - "CloseWatcher/CloseWatcher()": [ - "options" - ], - "CloseWatcher/CloseWatcher(options)": [ - "options" - ], - "CloseWatcher/constructor()": [ - "options" - ], - "CloseWatcher/constructor(options)": [ - "options" + "onclose", + "requestClose()" ], "CloseWatcherOptions": [ "signal" @@ -23193,8 +26820,8 @@ "hash of the serialized client data", "json-compatible serialization of client data", "origin", - "tokenBinding", "tokenbinding", + "topOrigin", "type" ], "CollectedClientPaymentData": [ @@ -23321,9 +26948,10 @@ "CompositionEventInit": [ "data" ], - "CompressedSet": [ - "range_deltas", - "sparse_bit_set" + "CompressionFormat": [ + "\"deflate\"", + "\"deflate-raw\"", + "\"gzip\"" ], "CompressionStream": [ "CompressionStream(format)", @@ -23446,6 +27074,7 @@ "\"tel\"" ], "ContactsManager": [ + "create a contactaddress from user-provided input", "getProperties()", "launching a contact picker", "select(properties)", @@ -23627,6 +27256,7 @@ "domain", "expires", "name", + "partitioned", "path", "sameSite", "value" @@ -23635,6 +27265,7 @@ "domain", "expires", "name", + "partitioned", "path", "sameSite", "secure", @@ -23692,6 +27323,7 @@ "CookieStoreDeleteOptions": [ "domain", "name", + "partitioned", "path" ], "CookieStoreGetOptions": [ @@ -23724,7 +27356,8 @@ "init" ], "CrashReportBody": [ - "reason" + "reason", + "stack" ], "CreateHTMLCallback": [ "arguments", @@ -23746,11 +27379,11 @@ "[[discovery]]", "[[origin]]", "[[type]]", - "credential type", "id", "isConditionalMediationAvailable()", "origin bound", - "type" + "type", + "willRequestConditionalCreation()" ], "Credential/[[discovery]]": [ "credential store", @@ -23761,6 +27394,7 @@ ], "CredentialCreationOptions": [ "federated", + "mediation", "password", "publicKey", "relevant credential interface objects", @@ -23780,11 +27414,13 @@ "silent" ], "CredentialPropertiesOutput": [ + "authenticatorDisplayName", "client-side discoverable credential property", "resident key credential property", "rk" ], "CredentialRequestOptions": [ + "digital", "federated", "identity", "matchable a priori", @@ -23818,6 +27454,7 @@ "credential" ], "CropTarget": [ + "[[Element]]", "fromElement()", "fromElement(element)" ], @@ -23852,6 +27489,7 @@ "CustomElementRegistry": [ "define(name, constructor, options)", "get(name)", + "getName(constructor)", "upgrade(root)", "whenDefined(name)" ], @@ -23909,16 +27547,24 @@ "CustomEventInit": [ "detail" ], - "CustomStateSet": [ - "add", - "add(value)" - ], - "CustomStateSet/add(value)": [ - "value" - ], "Cyclic Module Records": [ + "Evaluate()", "ExecuteModule(capability)", - "InitializeEnvironment()" + "InitializeEnvironment()", + "Link()", + "LoadRequestedModules(hostDefined)" + ], + "DOM/Document": [ + "parsehtml", + "parsehtmlunsafe" + ], + "DOM/Element": [ + "sethtml", + "sethtmlunsafe" + ], + "DOM/ShadowRoot": [ + "sethtml", + "sethtmlunsafe" ], "DOMException": [ "ABORT_ERR", @@ -24639,7 +28285,7 @@ "parseFromString(string, type)" ], "DOMParserSupportedType": [ - "text/html\"" + "text/html" ], "DOMPoint": [ "DOMPoint()", @@ -25315,6 +28961,21 @@ "toUTCString()", "valueOf()" ], + "Date.prototype [ %Symbol.toPrimitive% ] ( hint )": [ + "Date.prototype %Symbol.toPrimitive% (hint)" + ], + "Declarative Environment Records": [ + "CreateImmutableBinding(N, S)", + "CreateMutableBinding(N, D)", + "DeleteBinding(N)", + "GetBindingValue(N, S)", + "HasBinding(N)", + "HasSuperBinding()", + "HasThisBinding()", + "InitializeBinding(N, V)", + "SetMutableBinding(N, V, S)", + "WithBaseObject()" + ], "DecodeErrorCallback": [ "error" ], @@ -25391,6 +29052,11 @@ "sourcefile", "toJSON()" ], + "Design Space Segment": [ + "end", + "start", + "tag" + ], "DetectedBarcode": [ "boundingBox", "cornerPoints", @@ -25406,6 +29072,21 @@ "cornerPoints", "rawValue" ], + "Device Orientation": [ + "x", + "y", + "z" + ], + "DeviceChangeEvent": [ + "constructor()", + "constructor(type)", + "constructor(type, eventInitDict)", + "devices", + "userInsertedDevices" + ], + "DeviceChangeEventInit": [ + "devices" + ], "DeviceMotionEvent": [ "DeviceMotionEvent(type)", "DeviceMotionEvent(type, eventInitDict)", @@ -25435,8 +29116,11 @@ ], "DeviceMotionEventAcceleration": [ "x", + "x axis acceleration", "y", - "z" + "y axis acceleration", + "z", + "z axis acceleration" ], "DeviceMotionEventAccelerationInit": [ "x", @@ -25452,7 +29136,10 @@ "DeviceMotionEventRotationRate": [ "alpha", "beta", - "gamma" + "gamma", + "x axis rotation rate", + "y axis rotation rate", + "z axis rotation rate" ], "DeviceMotionEventRotationRateInit": [ "alpha", @@ -25468,7 +29155,8 @@ "constructor(type)", "constructor(type, eventInitDict)", "gamma", - "requestPermission()" + "requestPermission()", + "requestPermission(absolute)" ], "DeviceOrientationEvent/DeviceOrientationEvent(type)": [ "eventInitDict", @@ -25486,23 +29174,42 @@ "eventInitDict", "type" ], + "DeviceOrientationEvent/requestPermission()": [ + "absolute" + ], + "DeviceOrientationEvent/requestPermission(absolute)": [ + "absolute" + ], "DeviceOrientationEventInit": [ "absolute", "alpha", "beta", "gamma" ], - "DevicePermissionDescriptor": [ - "deviceId" - ], "DevicePosture": [ + "change", "onchange", "type" ], "DevicePostureType": [ "continuous", - "folded", - "folded-over" + "folded" + ], + "DigitalCredential": [ + "[[Create]](origin, options, sameOriginWithAncestors)", + "[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)", + "[[Store]](credential, sameOriginWithAncestors)", + "[[discovery]]", + "[[type]]", + "data", + "protocol" + ], + "DigitalCredentialRequestOptions": [ + "providers" + ], + "DigitalCredentialsProvider": [ + "protocol", + "request" ], "DigitalGoodsService": [ "consume(purchaseToken)", @@ -25516,6 +29223,14 @@ "DigitalGoodsService/getDetails(itemIds)": [ "itemIds" ], + "DirectFromSellerSignalsForBuyer": [ + "auctionSignals", + "perBuyerSignals" + ], + "DirectFromSellerSignalsForSeller": [ + "auctionSignals", + "sellerSignals" + ], "DirectionSetting": [ "", "\"\"", @@ -25529,6 +29244,9 @@ "mode", "startIn" ], + "DisconnectedAccount": [ + "account_id" + ], "DiscoverableCredentialMetadata": [ "id", "otherui", @@ -25542,6 +29260,7 @@ "DisplayMediaStreamOptions": [ "audio", "controller", + "monitorTypeSurfaces", "selfBrowserSurface", "surfaceSwitching", "systemAudio", @@ -25568,14 +29287,20 @@ "adoptNode(node)", "alinkColor", "all", + "allow declarative shadow roots", "ancestor navigables", "anchors", "applets", + "automatic beacon data map", + "automatic beacons allowed", "bgColor", "body", "browsing context", + "browsingTopics()", + "browsingTopics(options)", "captureEvents()", "caretPositionFromPoint(x, y)", + "caretPositionFromPoint(x, y, options)", "characterSet", "charset", "clear()", @@ -25611,10 +29336,12 @@ "designMode", "dir", "discarded", + "dispatch pending scrollsnapchange events", + "dispatch pending scrollsnapchanging events", "doctype", "document policy", - "document.write(...)", - "document.writeln(...)", + "document.write(...text)", + "document.writeln(...text)", "documentElement", "documentURI", "domConfig", @@ -25637,6 +29364,7 @@ "fullscreenchange", "fullscreenerror", "fully active", + "fully active descendant of a top-level traversable with user attention", "getElementsByClassName(classNames)", "getElementsByName(elementName)", "getElementsByTagName(qualifiedName)", @@ -25644,9 +29372,11 @@ "getSelection()", "global application lifecycle events", "global application lifecycle states", - "has been scrolled by the user", "hasFocus()", + "hasPrivateToken(issuer)", + "hasRedemptionRecord(issuer)", "hasStorageAccess()", + "hasUnpartitionedCookieAccess()", "head", "hidden", "images", @@ -25659,6 +29389,7 @@ "initialization", "inputEncoding", "intersectionobservertaskqueued", + "is in view", "lastModified", "launched", "linkColor", @@ -25671,6 +29402,7 @@ "mode", "namedFlows", "normalizeDocument()", + "not restored reasons", "onabort", "onanimationcancel", "onanimationend", @@ -25734,6 +29466,9 @@ "onreadystatechange", "onreset", "onresume", + "onscrollend", + "onscrollsnapchange", + "onscrollsnapchanging", "onsecuritypolicyviolation", "onseeked", "onseeking", @@ -25767,32 +29502,40 @@ "page shown", "page unloaded", "page unloading", + "parseHTML(html)", + "parseHTML(html, options)", + "parseHTMLUnsafe(html)", + "parseHTMLUnsafe(html, options)", "pending scroll event targets", "pending scrollend event targets", + "pending scrollsnapchange event targets", + "pending scrollsnapchanging event targets", + "pending text directives", "permissions policy", "permissionsPolicy", "pictureInPictureEnabled", "plugins", - "pointerlockchange", - "pointerlockerror", "policy container", "policy object", "post-prerendering activation steps list", "prefetch records", "prefetched signed exchanges for navigation", "prefetched subresource signed exchanges", + "prerender records", "prerendering", - "prerendering traversables map", "prerenderingchange", "previous document unload timing", "processed manifest", + "reactivate", "readyState", "readystatechange", "referrer", "releaseEvents()", "renameNode()", + "report-only permissions policy", "requestStorageAccess()", - "requestStorageAccessForOrigin(requestedOrigin)", + "requestStorageAccess(types)", + "requestStorageAccessFor(requestedOrigin)", "resizeObservers", "run the resize steps", "run the scroll steps", @@ -25804,12 +29547,17 @@ "scrollingElement", "shown", "startViewTransition()", - "startViewTransition(callback)", + "startViewTransition(callbackOptions)", "startViewTransition(updateCallback)", "strictErrorChecking", "timeline", "title", + "top layer", "type", + "unloaded", + "unloading", + "update scrollsnapchange targets", + "update scrollsnapchanging targets", "url", "view layer", "visibility state", @@ -25825,7 +29573,19 @@ "Document/adoptNode(node)": [ "node" ], + "Document/browsingTopics()": [ + "options" + ], + "Document/browsingTopics(options)": [ + "options" + ], "Document/caretPositionFromPoint(x, y)": [ + "options", + "x", + "y" + ], + "Document/caretPositionFromPoint(x, y, options)": [ + "options", "x", "y" ], @@ -25918,6 +29678,12 @@ "localName", "namespace" ], + "Document/hasPrivateToken(issuer)": [ + "issuer" + ], + "Document/hasRedemptionRecord(issuer)": [ + "issuer" + ], "Document/importNode(node)": [ "deep", "node" @@ -25933,19 +29699,44 @@ "styleMap", "text" ], - "Document/requestStorageAccessForOrigin(requestedOrigin)": [ + "Document/parseHTML(html)": [ + "html", + "options" + ], + "Document/parseHTML(html, options)": [ + "html", + "options" + ], + "Document/parseHTMLUnsafe(html)": [ + "html", + "options" + ], + "Document/parseHTMLUnsafe(html, options)": [ + "html", + "options" + ], + "Document/requestStorageAccess(types)": [ + "types" + ], + "Document/requestStorageAccessFor(requestedOrigin)": [ "requestedOrigin" ], "Document/startViewTransition()": [ - "callback", + "callbackOptions", "updateCallback" ], - "Document/startViewTransition(callback)": [ - "callback" + "Document/startViewTransition(callbackOptions)": [ + "callbackOptions" ], "Document/startViewTransition(updateCallback)": [ "updateCallback" ], + "DocumentAndElementEventHandlers": [ + "clipboardchange", + "copy", + "cut", + "paste" + ], "DocumentFragment": [ "DocumentFragment()", "constructor()", @@ -25962,6 +29753,42 @@ "pointerLockElement", "styleSheets" ], + "DocumentPictureInPicture": [ + "enter", + "last-opened window", + "onenter", + "requestWindow()", + "requestWindow(options)", + "window" + ], + "DocumentPictureInPicture/requestWindow()": [ + "options" + ], + "DocumentPictureInPicture/requestWindow(options)": [ + "options" + ], + "DocumentPictureInPictureEvent": [ + "DocumentPictureInPictureEvent(type, eventInitDict)", + "constructor(type, eventInitDict)", + "window" + ], + "DocumentPictureInPictureEvent/DocumentPictureInPictureEvent(type, eventInitDict)": [ + "eventInitDict", + "type" + ], + "DocumentPictureInPictureEvent/constructor(type, eventInitDict)": [ + "eventInitDict", + "type" + ], + "DocumentPictureInPictureEventInit": [ + "window" + ], + "DocumentPictureInPictureOptions": [ + "disallowReturnToOpener", + "height", + "preferInitialWindowPlacement", + "width" + ], "DocumentTimeline": [ "DocumentTimeline()", "DocumentTimeline(options)", @@ -26064,9 +29891,12 @@ "array indices", "array-like object", "array-like objects", - "asyncgenerator prototype object", "asyncgeneratorrequest", "asyncgeneratorrequests", + "available named time zone", + "available named time zone identifier", + "available named time zone identifiers", + "available named time zones", "bigint type", "boolean type", "bound function exotic object", @@ -26082,6 +29912,7 @@ "capturerange", "captureranges", "charset", + "charsetelement", "charsets", "chosen value record", "chosen value records", @@ -26109,6 +29940,10 @@ "data blocks", "data properties", "data property", + "data race", + "data race free", + "dataview with buffer witness record", + "dataview with buffer witness records", "declarative environment record", "declarative environment records", "direct eval", @@ -26124,7 +29959,6 @@ "ecmascript language value", "ecmascript language values", "ecmascript source text", - "ecmascript throw", "empty candidate execution", "empty candidate executions", "enum,enums", @@ -26144,13 +29978,14 @@ "exportentry record", "exportentry records", "finite", + "fixed-length arraybuffer", + "fixed-length sharedarraybuffer", "fully populated property descriptor", "function code", "function environment record", "function environment records", "function object", "function objects", - "generator prototype object", "global code", "global environment record", "global environment records", @@ -26158,6 +29993,8 @@ "global objects", "graphloadingstate record", "graphloadingstate records", + "growable sharedarraybuffer", + "happens-before", "high-surrogate code unit", "high-surrogate code units", "host", @@ -26166,6 +30003,7 @@ "host hook", "host hooks", "host-defined", + "host-synchronizes-with", "hosts", "hypothetical weakref-oblivious", "immutable prototype exotic object", @@ -26175,15 +30013,15 @@ "importentry record", "importentry records", "integer index", - "integer indices", - "integer-indexed exotic object", - "integer-indexed exotic objects", + "integer indices,integer-indexed", "is a bigint,is not a bigint", "is a boolean,is not a boolean", "is a number,is not a number", "is a string,is not a string", "is a symbol,is not a symbol", "is an object,is not an object", + "is-agent-order-before", + "is-memory-order-before", "iterator record", "iterator records", "job", @@ -26196,8 +30034,10 @@ "keywords", "leading surrogate", "leading surrogates", + "least relation", "left-capturing parentheses", "left-capturing parenthesis", + "lexicographic code unit order", "list", "list-concatenation", "lists", @@ -26223,6 +30063,8 @@ "module record", "module records", "nativeerror prototype object", + "non-primary time zone identifier", + "non-primary time zone identifiers", "non-strict code", "non-strict function", "non-strict functions", @@ -26235,10 +30077,14 @@ "object environment record", "object environment records", "object type", + "offset time zone", + "offset time zones", "ordinary object", "ordinary objects", "possible read values", "prepared to evaluate ecmascript code", + "primary time zone identifier", + "primary time zone identifiers", "private name", "private names", "privateelement", @@ -26247,6 +30093,8 @@ "privateenvironment records", "promisecapability record", "promisecapability records", + "promisereaction record", + "promisereaction records", "property descriptor", "property descriptors", "property key", @@ -26257,6 +30105,7 @@ "read-modify-write modification function", "read-modify-write modification functions", "readmodifywritesharedmemory", + "reads-from", "readsharedmemory", "realm", "realm record", @@ -26272,15 +30121,18 @@ "relations", "reserved word", "reserved words", + "resizable arraybuffer", "resolvedbinding record", "resolvedbinding records", "return completion", "return completions", "running execution context", "running execution contexts", - "safe", + "safe integer", "script record", "script records", + "set record", + "set records", "shared data block", "shared data block event", "shared data block events", @@ -26310,22 +30162,30 @@ "synchronize", "synchronize event", "synchronize events", + "synchronizes-with", "the ascii word characters", "the current realm record", - "this date object", - "this time value", "throw completion", "throw completions", "time value", "time values", + "time zone aware", + "time zone identifier", + "time zone identifier record", + "time zone identifier records", + "time zone identifiers", "trailing surrogate", "trailing surrogates", "typedarray element type", "typedarray element types", + "typedarray with buffer witness record", + "typedarray with buffer witness records", "use strict directive", "use strict directives", - "waiterlist", - "waiterlists", + "waiter record", + "waiter records", + "waiterlist record", + "waiterlist records", "writesharedmemory" ], "ECMAScript Code Execution Contexts": [ @@ -26374,10 +30234,14 @@ "updateCharacterBounds(rangeStart, characterBounds)", "updateControlBound()", "updateControlBound(controlBound)", + "updateControlBounds()", + "updateControlBounds(controlBounds)", "updateSelection()", "updateSelection(start, end)", "updateSelectionBound()", "updateSelectionBound(selectionBound)", + "updateSelectionBounds()", + "updateSelectionBounds(selectionBounds)", "updateText()", "updateText(rangeStart, rangeEnd, text)" ], @@ -26412,8 +30276,6 @@ "[[RegisteredIntersectionObservers]]", "[[computedStyleMapCache]]", "attachShadow(init)", - "attr-associated element", - "attr-associated elements", "attribute list", "attributes", "checkVisibility()", @@ -26429,6 +30291,7 @@ "computedStyleMap()", "contentvisibilityautostatechange", "contentvisibilityautostatechanged", + "currentCSSZoom", "custom", "custom element definition", "custom element state", @@ -26439,6 +30302,8 @@ "focusableAreas(option)", "fullscreenchange", "fullscreenerror", + "get the attr-associated element", + "get the attr-associated elements", "get the bounding box", "getAttribute(qualifiedName)", "getAttributeNS(namespace, localName)", @@ -26450,6 +30315,7 @@ "getElementsByClassName(classNames)", "getElementsByTagName(qualifiedName)", "getElementsByTagNameNS(namespace, localName)", + "getHTML(options)", "getSpatialNavigationContainer()", "hasAttribute(qualifiedName)", "hasAttributeNS(namespace, localName)", @@ -26458,9 +30324,9 @@ "hasPointerCapture(pointerId)", "html-uppercased qualified name", "id", + "innerHTML", "insertAdjacentElement(where, element)", - "insertAdjacentHTML()", - "insertAdjacentHTML(position, text)", + "insertAdjacentHTML(position, string)", "insertAdjacentText(where, data)", "is value", "local name", @@ -26471,6 +30337,8 @@ "namespaceURI", "onfullscreenchange", "onfullscreenerror", + "onscrollsnapchange", + "onscrollsnapchanging", "outerHTML", "part", "prefix", @@ -26484,6 +30352,7 @@ "requestFullscreen()", "requestFullscreen(options)", "requestPointerLock()", + "requestPointerLock(options)", "schemaTypeInfo", "scroll", "scroll()", @@ -26506,8 +30375,10 @@ "setAttributeNS(namespace, qualifiedName, value)", "setAttributeNode(attr)", "setAttributeNodeNS(attr)", - "setHTML(input)", - "setHTML(input, options)", + "setHTML(html)", + "setHTML(html, options)", + "setHTMLUnsafe(html)", + "setHTMLUnsafe(html, options)", "setIdAttribute()", "setIdAttributeNS()", "setIdAttributeNode()", @@ -26655,12 +30526,20 @@ "Element/setAttributeNodeNS(attr)": [ "attr" ], - "Element/setHTML(input)": [ - "input", + "Element/setHTML(html)": [ + "html", "options" ], - "Element/setHTML(input, options)": [ - "input", + "Element/setHTML(html, options)": [ + "html", + "options" + ], + "Element/setHTMLUnsafe(html)": [ + "html", + "options" + ], + "Element/setHTMLUnsafe(html, options)": [ + "html", "options" ], "Element/spatialNavigationSearch(dir)": [ @@ -26697,16 +30576,15 @@ "is" ], "ElementInternals": [ - "attr-associated element", - "attr-associated elements", "checkValidity()", "form", + "get the attr-associated element", + "get the attr-associated elements", "labels", "reportValidity()", "setFormValue(value, state)", "setValidity(flags, message, anchor)", "shadowRoot", - "states", "validationMessage", "validity", "willValidate" @@ -26738,6 +30616,7 @@ "data", "duration", "timestamp", + "transfer", "type" ], "EncodedAudioChunkMetadata": [ @@ -26778,6 +30657,7 @@ "data", "duration", "timestamp", + "transfer", "type" ], "EncodedVideoChunkMetadata": [ @@ -26801,21 +30681,13 @@ "\"native\"", "\"transparent\"" ], + "EntryMapRecord": [ + "firstentryindex", + "lastentryindex" + ], "Environment": [ "ready promise" ], - "Environment Records": [ - "CreateImmutableBinding(N, S)", - "CreateMutableBinding(N, D)", - "DeleteBinding(N)", - "GetBindingValue(N, S)", - "HasBinding(N)", - "HasSuperBinding()", - "HasThisBinding()", - "InitializeBinding(N, V)", - "SetMutableBinding(N, V, S)", - "WithBaseObject()" - ], "EpubReadingSystem": [ "hasFeature()", "hasFeature(feature)", @@ -26978,6 +30850,7 @@ "addEventListener(type, callback, options)", "constructor()", "dispatchEvent(event)", + "event handler map", "event listener list", "legacy-canceled-activation behavior", "legacy-pre-activation behavior", @@ -27100,11 +30973,6 @@ "ports", "source" ], - "Extent3D": [ - "depthorarraylayers", - "height", - "width" - ], "External": [ "AddSearchProvider()", "IsSearchProviderInstalled()" @@ -27140,6 +31008,16 @@ "fastMode", "maxDetectedFaces" ], + "Feature Map": [ + "entrymaprecords", + "featurerecords" + ], + "FeatureRecord": [ + "entrymapcount", + "featuretag", + "firstentryindex", + "firstnewentryindex" + ], "FederatedCredential": [ "FederatedCredential(data)", "[[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", @@ -27167,6 +31045,58 @@ "protocols", "providers" ], + "Fence": [ + "getNestedConfigs()", + "reportEvent()", + "reportEvent(event)", + "setReportEventDataForAutomaticBeacons()", + "setReportEventDataForAutomaticBeacons(event)" + ], + "Fence/reportEvent()": [ + "event" + ], + "Fence/reportEvent(event)": [ + "event" + ], + "Fence/setReportEventDataForAutomaticBeacons()": [ + "event" + ], + "Fence/setReportEventDataForAutomaticBeacons(event)": [ + "event" + ], + "FenceEvent": [ + "crossOriginExposed", + "destination", + "destinationURL", + "eventData", + "eventType", + "once" + ], + "FenceReportingDestination": [ + "\"buyer\"", + "\"component-seller\"", + "\"direct-seller\"", + "\"seller\"", + "\"shared-storage-select-url\"" + ], + "FencedFrameConfig": [ + "FencedFrameConfig(url)", + "constructor(url)", + "containerHeight", + "containerWidth", + "contentHeight", + "contentWidth", + "setSharedStorageContext(contextString)" + ], + "FencedFrameConfig/FencedFrameConfig(url)": [ + "url" + ], + "FencedFrameConfig/constructor(url)": [ + "url" + ], + "FencedFrameConfig/setSharedStorageContext(contextString)": [ + "contextString" + ], "FetchEvent": [ "FetchEvent(type, eventInitDict)", "clientId", @@ -27439,8 +31369,13 @@ "possibleDescendant" ], "FileSystemDirectoryReader": [ + "directory", + "done flag", + "entry", "readEntries(successCallback)", - "readEntries(successCallback, errorCallback)" + "readEntries(successCallback, errorCallback)", + "reader error", + "reading flag" ], "FileSystemDirectoryReader/readEntries(successCallback)": [ "errorCallback", @@ -27513,9 +31448,10 @@ "create" ], "FileSystemHandle": [ - "entry", + "is in a bucket file system", "isSameEntry(other)", "kind", + "locator", "name", "queryPermission()", "queryPermission(descriptor)", @@ -27622,7 +31558,12 @@ "\"backwards\"", "\"both\"", "\"forwards\"", - "\"none\"" + "\"none\"", + "auto", + "backwards", + "both", + "forwards", + "none" ], "FinalizationRegistry": [ "FinalizationRegistry(cleanupCallback)", @@ -27686,7 +31627,6 @@ "style" ], "FontFace": [ - "FontFace", "FontFace(family, source)", "FontFace(family, source, descriptors)", "[[Data]]", @@ -27713,11 +31653,6 @@ "variations", "weight" ], - "FontFace/FontFace()": [ - "descriptors", - "family", - "source" - ], "FontFace/FontFace(family, source)": [ "descriptors", "family", @@ -27776,17 +31711,14 @@ "[[FailedFonts]]", "[[LoadedFonts]]", "[[LoadingFonts]]", - "[[PendingReadyPromises]]", "[[ReadyPromise]]", "add(font)", - "check", "check(font)", "check(font, text)", "clear()", "constructor(initialFaces)", "delete(font)", "iteration order", - "load", "load(font)", "load(font, text)", "loading", @@ -27797,7 +31729,6 @@ "onloadingerror", "pending on the environment", "ready", - "ready()", "set entries", "status", "stuck on the environment" @@ -27808,10 +31739,6 @@ "FontFaceSet/add(font)": [ "font" ], - "FontFaceSet/check()": [ - "font", - "text" - ], "FontFaceSet/check(font, text)": [ "font", "text" @@ -27822,10 +31749,6 @@ "FontFaceSet/delete(font)": [ "font" ], - "FontFaceSet/load()": [ - "font", - "text" - ], "FontFaceSet/load(font, text)": [ "font", "text" @@ -27886,6 +31809,16 @@ "height", "width" ], + "ForDebuggingOnly": [ + "reportAdAuctionLoss(url)", + "reportAdAuctionWin(url)" + ], + "ForDebuggingOnly/reportAdAuctionLoss(url)": [ + "url" + ], + "ForDebuggingOnly/reportAdAuctionWin(url)": [ + "url" + ], "FormData": [ "FormData()", "FormData(form)", @@ -27972,6 +31905,26 @@ "FormDataEvent": [ "formData" ], + "Format 1 Patch Map": [ + "appliedentriesbitmap", + "compatibilityid", + "entrycount", + "featuremapoffset", + "format", + "glyphcount", + "maxentryindex", + "patchencoding", + "uritemplate" + ], + "Format 2 Patch Map": [ + "compatibilityid", + "defaultpatchencoding", + "entries", + "entrycount", + "entryidstringdata", + "format", + "uritemplate" + ], "Fragment": [ "colors", "coveragemask", @@ -28041,18 +31994,23 @@ "arguments", "bind(thisArg, ...args)", "call(thisArg, ...args)", - "length", "toString()" ], "Function Environment Records": [ "BindThisValue(V)", - "GetSuperBase()" + "GetSuperBase()", + "GetThisBinding()", + "HasSuperBinding()", + "HasThisBinding()" + ], + "Function.prototype [ %Symbol.hasInstance% ] ( V )": [ + "Function.prototype %Symbol.hasInstance% (V)" ], "GPU": [ - "[[previously_returned_adapters]]", "getPreferredCanvasFormat()", "requestAdapter()", - "requestAdapter(options)" + "requestAdapter(options)", + "wgslLanguageFeatures" ], "GPU error scope": [ "[[errors]]", @@ -28064,16 +32022,12 @@ "GPUAdapter": [ "[[adapter]]", "features", + "info", "isFallbackAdapter", "limits", - "requestAdapterInfo()", - "requestAdapterInfo(unmaskHints)", "requestDevice()", "requestDevice(descriptor)" ], - "GPUAdapter/requestAdapterInfo()": [ - "unmaskHints" - ], "GPUAdapter/requestDevice(descriptor)": [ "descriptor" ], @@ -28094,13 +32048,15 @@ "GPUBindGroup": [ "[[entries]]", "[[layout]]", - "[[usedResources]]" + "[[usedResources]]", + "bound buffer ranges" ], "GPUBindGroupDescriptor": [ "entries", "layout" ], "GPUBindGroupEntry": [ + "[[prevalidatedSize]]", "binding", "resource" ], @@ -28157,9 +32113,13 @@ "\"one-minus-dst-alpha\"", "\"one-minus-src\"", "\"one-minus-src-alpha\"", + "\"one-minus-src1\"", + "\"one-minus-src1-alpha\"", "\"src\"", "\"src-alpha\"", "\"src-alpha-saturated\"", + "\"src1\"", + "\"src1-alpha\"", "\"zero\"" ], "GPUBlendOperation": [ @@ -28174,7 +32134,7 @@ "color" ], "GPUBuffer": [ - "[[internals]]", + "[[internal state]]", "[[mapping]]", "[[pending_map]]", "destroy()", @@ -28189,6 +32149,11 @@ "unmap()", "usage" ], + "GPUBuffer/[[internal state]]": [ + "available", + "destroyed", + "unavailable" + ], "GPUBuffer/getMappedRange(offset, size)": [ "offset", "size" @@ -28244,6 +32209,7 @@ "colorSpace", "device", "format", + "toneMapping", "usage", "viewFormats" ], @@ -28260,6 +32226,19 @@ "GPUCanvasContext/configure(configuration)": [ "configuration" ], + "GPUCanvasToneMapping": [ + "mode" + ], + "GPUCanvasToneMappingMode": [ + "\"extended\"", + "\"standard\"" + ], + "GPUColor": [ + "a", + "b", + "g", + "r" + ], "GPUColorDict": [ "a", "b", @@ -28295,8 +32274,7 @@ "copyTextureToTexture(source, destination, copySize)", "finish()", "finish(descriptor)", - "resolveQuerySet(querySet, firstQuery, queryCount, destination, destinationOffset)", - "writeTimestamp(querySet, queryIndex)" + "resolveQuerySet(querySet, firstQuery, queryCount, destination, destinationOffset)" ], "GPUCommandEncoder/beginComputePass(descriptor)": [ "descriptor" @@ -28341,10 +32319,6 @@ "queryCount", "querySet" ], - "GPUCommandEncoder/writeTimestamp(querySet, queryIndex)": [ - "queryIndex", - "querySet" - ], "GPUCommandsMixin": [ "[[commands]]", "[[state]]" @@ -28376,12 +32350,11 @@ "\"warning\"" ], "GPUComputePassDescriptor": [ - "Valid Usage", "timestampWrites" ], "GPUComputePassEncoder": [ "[[command_encoder]]", - "[[endTimestampWrites]]", + "[[endTimestampWrite]]", "[[pipeline]]", "dispatchWorkgroups(workgroupCountX)", "dispatchWorkgroups(workgroupCountX, workgroupCountY)", @@ -28402,13 +32375,9 @@ "GPUComputePassEncoder/setPipeline(pipeline)": [ "pipeline" ], - "GPUComputePassTimestampLocation": [ - "\"beginning\"", - "\"end\"" - ], - "GPUComputePassTimestampWrite": [ - "location", - "queryIndex", + "GPUComputePassTimestampWrites": [ + "beginningOfPassWriteIndex", + "endOfPassWriteIndex", "querySet" ], "GPUComputePipelineDescriptor": [ @@ -28530,7 +32499,8 @@ "reason" ], "GPUDeviceLostReason": [ - "\"destroyed\"" + "\"destroyed\"", + "\"unknown\"" ], "GPUError": [ "message" @@ -28540,6 +32510,11 @@ "\"out-of-memory\"", "\"validation\"" ], + "GPUExtent3D": [ + "depthorarraylayers", + "height", + "width" + ], "GPUExtent3DDict": [ "depthOrArrayLayers", "height", @@ -28555,13 +32530,17 @@ ], "GPUFeatureName": [ "\"bgra8unorm-storage\"", + "\"clip-distances\"", "\"depth-clip-control\"", "\"depth32float-stencil8\"", + "\"dual-source-blending\"", + "\"float32-filterable\"", "\"indirect-first-instance\"", "\"rg11b10ufloat-renderable\"", "\"shader-f16\"", "\"texture-compression-astc\"", "\"texture-compression-bc\"", + "\"texture-compression-bc-sliced-3d\"", "\"texture-compression-etc2\"", "\"timestamp-query\"" ], @@ -28632,16 +32611,25 @@ ], "GPUObjectBase": [ "[[device]]", - "[[internals]]", + "[[valid]]", "label" ], "GPUObjectDescriptorBase": [ "label" ], + "GPUOrigin2D": [ + "x", + "y" + ], "GPUOrigin2DDict": [ "x", "y" ], + "GPUOrigin3D": [ + "x", + "y", + "z" + ], "GPUOrigin3DDict": [ "x", "y", @@ -28668,23 +32656,18 @@ "layout" ], "GPUPipelineError": [ + "GPUPipelineError()", + "GPUPipelineError(message)", "GPUPipelineError(message, options)", "constructor()", + "constructor(message)", "constructor(message, options)", "reason" ], - "GPUPipelineError/GPUPipelineError(message, options)": [ - "message", - "options" - ], "GPUPipelineError/constructor()": [ "message", "options" ], - "GPUPipelineError/constructor(message, options)": [ - "message", - "options" - ], "GPUPipelineErrorInit": [ "reason" ], @@ -28722,7 +32705,7 @@ "module" ], "GPUQuerySet": [ - "[[state]]", + "[[destroyed]]", "count", "destroy()", "type" @@ -28770,7 +32753,8 @@ "[[depthReadOnly]]", "[[drawCount]]", "[[layout]]", - "[[stencilReadOnly]]" + "[[stencilReadOnly]]", + "[[usage scope]]" ], "GPURenderBundleEncoder": [ "finish()", @@ -28793,6 +32777,7 @@ "[[layout]]", "[[pipeline]]", "[[stencilReadOnly]]", + "[[usage scope]]", "[[vertex_buffer_sizes]]", "[[vertex_buffers]]", "draw(vertexCount)", @@ -28853,6 +32838,7 @@ "GPURenderPassColorAttachment": [ "GPURenderPassColorAttachment Valid Usage", "clearValue", + "depthSlice", "loadOp", "resolveTarget", "storeOp", @@ -28881,7 +32867,7 @@ "GPURenderPassEncoder": [ "[[attachment_size]]", "[[command_encoder]]", - "[[endTimestampWrites]]", + "[[endTimestampWrite]]", "[[maxDrawCount]]", "[[occlusion_query_active]]", "[[occlusion_query_set]]", @@ -28925,13 +32911,9 @@ "depthStencilFormat", "sampleCount" ], - "GPURenderPassTimestampLocation": [ - "\"beginning\"", - "\"end\"" - ], - "GPURenderPassTimestampWrite": [ - "location", - "queryIndex", + "GPURenderPassTimestampWrites": [ + "beginningOfPassWriteIndex", + "endOfPassWriteIndex", "querySet" ], "GPURenderPipeline": [ @@ -28979,11 +32961,12 @@ "getCompilationInfo()" ], "GPUShaderModuleCompilationHint": [ + "entryPoint", "layout" ], "GPUShaderModuleDescriptor": [ "code", - "hints", + "compilationHints", "sourceMap" ], "GPUShaderStage": [ @@ -29008,6 +32991,8 @@ "\"zero\"" ], "GPUStorageTextureAccess": [ + "\"read-only\"", + "\"read-write\"", "\"write-only\"" ], "GPUStorageTextureBindingLayout": [ @@ -29021,6 +33006,7 @@ ], "GPUSupportedLimits": [ "maxBindGroups", + "maxBindGroupsPlusVertexBuffers", "maxBindingsPerBindGroup", "maxBufferSize", "maxColorAttachmentBytesPerSample", @@ -29054,7 +33040,6 @@ ], "GPUTexture": [ "[[destroyed]]", - "[[size]]", "[[viewFormats]]", "createView()", "createView(descriptor)", @@ -29177,6 +33162,7 @@ "\"rg8snorm\"", "\"rg8uint\"", "\"rg8unorm\"", + "\"rgb10a2uint\"", "\"rgb10a2unorm\"", "\"rgb9e5ufloat\"", "\"rgba16float\"", @@ -29292,6 +33278,7 @@ "\"uint32x4\"", "\"uint8x2\"", "\"uint8x4\"", + "\"unorm10-10-10-2\"", "\"unorm16x2\"", "\"unorm16x4\"", "\"unorm8x2\"", @@ -29346,7 +33333,12 @@ "[[buttons]]", "[[connected]]", "[[exposed]]", + "[[hand]]", + "[[hapticactuators]]", + "[[pose]]", "[[timestamp]]", + "[[touchevents]]", + "[[vibrationActuator]]", "axes", "buttons", "connected", @@ -29370,6 +33362,8 @@ ], "GamepadEffectParameters": [ "duration", + "leftTrigger", + "rightTrigger", "startDelay", "strongMagnitude", "weakMagnitude" @@ -29389,23 +33383,19 @@ "the-empty-string" ], "GamepadHapticActuator": [ - "[[playingeffectpromise]]", - "canPlayEffectType()", - "canPlayEffectType(type)", + "[[effects]]", + "[[playingEffectPromise]]", + "effects", "playEffect()", "playEffect(type)", "playEffect(type, params)", "pulse()", "pulse(value, duration)", - "reset()", - "type" - ], - "GamepadHapticActuatorType": [ - "dual-rumble", - "vibration" + "reset()" ], "GamepadHapticEffectType": [ - "dual-rumble" + "dual-rumble", + "trigger-rumble" ], "GamepadHapticsResult": [ "complete", @@ -29433,21 +33423,47 @@ "surfaceId", "touchId" ], + "GenerateBidInterestGroup": [ + "adComponents", + "adSizes", + "ads", + "biddingLogicURL", + "biddingWasmHelperURL", + "enableBiddingSignalsPrioritization", + "executionMode", + "maxTrustedBiddingSignalsURLLength", + "name", + "owner", + "priorityVector", + "sellerCapabilities", + "sizeGroups", + "trustedBiddingSignalsKeys", + "trustedBiddingSignalsSlotSizeMode", + "trustedBiddingSignalsURL", + "updateURL", + "userBiddingSignals" + ], + "GenerateBidOutput": [ + "ad", + "adComponents", + "adCost", + "allowComponentAuction", + "bid", + "bidCurrency", + "modelingSignals", + "numMandatoryAdComponents", + "render", + "targetNumAdComponents" + ], "GenerateTestReportParameters": [ "group", "message" ], - "Generator": [ - "next(value)", - "return(value)", - "throw(exception)" - ], "Generator Execution Contexts": [ "generator" ], "GeneratorFunction": [ "GeneratorFunction(...parameterArgs, bodyArg)", - "length", "prototype" ], "GenericTransformStream": [ @@ -29476,12 +33492,14 @@ "heading", "latitude", "longitude", - "speed" + "speed", + "toJSON()" ], "GeolocationPosition": [ "[[isHighAccuracy]]", "coords", - "timestamp" + "timestamp", + "toJSON()" ], "GeolocationPositionError": [ "PERMISSION_DENIED", @@ -29490,15 +33508,6 @@ "code", "message" ], - "GeolocationReadingValues": [ - "accuracy", - "altitude", - "altitudeAccuracy", - "heading", - "latitude", - "longitude", - "speed" - ], "GeolocationSensor": [ "GeolocationSensor()", "GeolocationSensor(options)", @@ -29591,6 +33600,10 @@ "GetAnimationsOptions": [ "subtree" ], + "GetHTMLOptions": [ + "serializableShadowRoots", + "shadowRoots" + ], "GetNotificationOptions": [ "tag" ], @@ -29612,12 +33625,29 @@ "onglobalhidden", "ongloballaunched", "onglobalshown", + "onglobalunloaded", "value", "valueOf()" ], "Global Environment Records": [ + "CanDeclareGlobalFunction(N)", + "CanDeclareGlobalVar(N)", "CreateGlobalFunctionBinding(N, V, D)", - "CreateGlobalVarBinding(N, D)" + "CreateGlobalVarBinding(N, D)", + "CreateImmutableBinding(N, S)", + "CreateMutableBinding(N, D)", + "DeleteBinding(N)", + "GetBindingValue(N, S)", + "GetThisBinding()", + "HasBinding(N)", + "HasLexicalDeclaration(N)", + "HasRestrictedGlobalProperty(N)", + "HasSuperBinding()", + "HasThisBinding()", + "HasVarDeclaration(N)", + "InitializeBinding(N, V)", + "SetMutableBinding(N, V, S)", + "WithBaseObject()" ], "Global/Global(descriptor)": [ "descriptor", @@ -29644,6 +33674,9 @@ "animationend", "animationiteration", "animationstart", + "clipboardchange", + "copy", + "cut", "drag", "dragend", "dragenter", @@ -29735,6 +33768,8 @@ "onselectionchange", "onselectstart", "onslotchange", + "onsnapchanged", + "onsnapchanging", "onstalled", "onsubmit", "onsuspend", @@ -29755,6 +33790,7 @@ "onwebkitanimationstart", "onwebkittransitionend", "onwheel", + "paste", "pointercancel", "pointerdown", "pointerenter", @@ -29777,7 +33813,25 @@ "error", "hidden", "launched", - "shown" + "shown", + "unloaded" + ], + "Glyph Map": [ + "entryindex", + "firstmappedglyph" + ], + "Glyph keyed patch": [ + "brotlistream", + "compatibilityid", + "flags", + "format" + ], + "GlyphPatches": [ + "glyphcount", + "glyphdata", + "glyphdataoffsets", + "glyphids", + "tables" ], "GravitySensor": [ "GravitySensor()", @@ -29852,11 +33906,6 @@ "\"device\"", "\"screen\"" ], - "GyroscopeReadingValues": [ - "x", - "y", - "z" - ], "GyroscopeSensorOptions": [ "referenceFrame" ], @@ -30088,10 +34137,10 @@ "options" ], "HTMLDetailsElement": [ + "name", "open" ], "HTMLDialogElement": [ - "close watcher", "close(returnValue)", "open", "returnValue", @@ -30120,6 +34169,7 @@ "contextrestored", "dir", "draggable", + "editContext", "error", "focus", "formdata", @@ -30185,6 +34235,7 @@ "onprogress", "onratechange", "onreset", + "onscrollend", "onsecuritypolicyviolation", "onseeked", "onseeking", @@ -30204,18 +34255,19 @@ "onwheel", "outerText", "popover", - "popoverHideTargetElement", - "popoverShowTargetElement", - "popoverToggleTargetElement", + "popoverTargetAction", + "popoverTargetElement", "reset", "select", "showPopover()", "spellcheck", + "states", "submit", "title", "toggle", "togglePopover(force)", - "translate" + "translate", + "writingSuggestions" ], "HTMLEmbedElement": [ "align", @@ -30226,6 +34278,14 @@ "type", "width" ], + "HTMLFencedFrameElement": [ + "HTMLFencedFrameElement()", + "allow", + "config", + "constructor()", + "height", + "width" + ], "HTMLFieldSetElement": [ "checkValidity()", "disabled", @@ -30313,11 +34373,14 @@ "username" ], "HTMLIFrameElement": [ + "adAuctionHeaders", "align", "allow", "allowFullscreen", + "browsingTopics", "contentDocument", "contentWindow", + "credentialless", "csp", "frameBorder", "getSVGDocument()", @@ -30328,6 +34391,7 @@ "marginWidth", "name", "permissionsPolicy", + "privateToken", "referrerPolicy", "sandbox", "scrolling", @@ -30453,6 +34517,7 @@ "rel", "relList", "rev", + "scrollTargetElement", "sizes", "target", "type" @@ -30713,8 +34778,6 @@ "cite" ], "HTMLScriptElement": [ - "[[ScriptText]]", - "[[ScriptURL]]", "async", "blocking", "charset", @@ -30726,6 +34789,7 @@ "integrity", "noModule", "referrerPolicy", + "script text", "src", "supports(type)", "text", @@ -30750,6 +34814,7 @@ "selectedIndex", "selectedOptions", "setCustomValidity(error)", + "showPicker()", "size", "type", "validationMessage", @@ -30757,6 +34822,9 @@ "value", "willValidate" ], + "HTMLSharedStorageWritableElementUtils": [ + "sharedStorageWritable" + ], "HTMLSlotElement": [ "assign(...nodes)", "assignedElements(options)", @@ -30939,6 +35007,93 @@ "HTMLVideoElement/requestVideoFrameCallback(callback)": [ "callback" ], + "HandwritingDrawing": [ + "addStroke(stroke)", + "clear()", + "getPrediction()", + "getStrokes()", + "recognizer", + "removeStroke(stroke)", + "strokes" + ], + "HandwritingDrawing/addStroke(stroke)": [ + "stroke" + ], + "HandwritingDrawing/removeStroke(stroke)": [ + "stroke" + ], + "HandwritingDrawingSegment": [ + "beginPointIndex", + "endPointIndex", + "strokeIndex" + ], + "HandwritingHints": [ + "alternatives", + "inputType", + "recognitionType", + "textContext" + ], + "HandwritingHintsQueryResult": [ + "alternatives", + "inputType", + "recognitionType", + "textContext" + ], + "HandwritingInputType": [ + "\"mouse\"", + "\"stylus\"", + "\"touch\"" + ], + "HandwritingModelConstraint": [ + "languages" + ], + "HandwritingPoint": [ + "t", + "x", + "y" + ], + "HandwritingPrediction": [ + "segmentationResult", + "text" + ], + "HandwritingRecognitionType": [ + "\"per-character\"", + "\"text\"" + ], + "HandwritingRecognizer": [ + "active", + "finish()", + "startDrawing()", + "startDrawing(hints)" + ], + "HandwritingRecognizer/startDrawing()": [ + "hints" + ], + "HandwritingRecognizer/startDrawing(hints)": [ + "hints" + ], + "HandwritingRecognizerQueryResult": [ + "hints", + "textAlternatives", + "textSegmentation" + ], + "HandwritingSegment": [ + "beginIndex", + "drawingSegments", + "endIndex", + "grapheme" + ], + "HandwritingStroke": [ + "HandwritingStroke()", + "addPoint(point)", + "clear()", + "constructor()", + "getPoints()", + "points" + ], + "HandwritingStroke/addPoint(point)": [ + "point" + ], "HardwareAcceleration": [ "\"no-preference\"", "\"prefer-hardware\"", @@ -31008,7 +35163,9 @@ ], "HevcBitstreamFormat": [ "\"annexb\"", - "\"hevc\"" + "\"hevc\"", + "annexb", + "hevc" ], "HevcEncoderConfig": [ "format" @@ -31067,9 +35224,9 @@ ], "I/O queue": [ "peek", - "prepend", "push", - "read" + "read", + "restore" ], "IDBCursor": [ "advance(count)", @@ -31574,8 +35731,19 @@ "private", "public" ], + "IPAddressSpace": [ + "\"local\"", + "\"private\"", + "\"public\"" + ], + "ISOBMFF Brand": [ + "av01" + ], "IdentityCredential": [ "[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)", + "disconnect()", + "disconnect(options)", + "isAutoSelected", "token" ], "IdentityCredential/[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)": [ @@ -31583,20 +35751,47 @@ "origin", "sameOriginWithAncestors" ], + "IdentityCredential/disconnect()": [ + "options" + ], + "IdentityCredential/disconnect(options)": [ + "options" + ], + "IdentityCredentialDisconnectOptions": [ + "accountHint" + ], "IdentityCredentialRequestOptions": [ + "context", "providers" ], + "IdentityCredentialRequestOptionsContext": [ + "\"continue\"", + "\"signin\"", + "\"signup\"", + "\"use\"" + ], + "IdentityProvider": [ + "close()", + "getUserInfo(config)" + ], + "IdentityProvider/getUserInfo(config)": [ + "config" + ], "IdentityProviderAPIConfig": [ "accounts_endpoint", "branding", "client_metadata_endpoint", - "id_assertion_endpoint" + "disconnect_endpoint", + "id_assertion_endpoint", + "login_url" ], "IdentityProviderAccount": [ "approved_clients", + "domain_hints", "email", "given_name", "id", + "login_hints", "name", "picture" ], @@ -31615,19 +35810,29 @@ ], "IdentityProviderConfig": [ "clientId", - "configURL", - "nonce" + "configURL" ], "IdentityProviderIcon": [ "size", "url" ], + "IdentityProviderRequestOptions": [ + "domainHint", + "loginHint", + "nonce" + ], "IdentityProviderToken": [ "token" ], "IdentityProviderWellKnown": [ "provider_urls" ], + "IdentityUserInfo": [ + "email", + "givenName", + "name", + "picture" + ], "IdleDeadline": [ "didTimeout", "timeRemaining()" @@ -31781,6 +35986,7 @@ "desiredHeight", "desiredWidth", "preferAnimation", + "transfer", "type" ], "ImageOrientation": [ @@ -31839,7 +36045,6 @@ "param" ], "InkPresenter": [ - "expectedImprovement", "presentationArea", "updateInkTrailStartPoint(event, style)" ], @@ -31854,9 +36059,6 @@ "color", "diameter" ], - "InnerHTML": [ - "innerHTML" - ], "InputDeviceCapabilities": [ "constructor()", "constructor(deviceInitDict)", @@ -31879,7 +36081,8 @@ "dataTransfer", "getTargetRanges()", "inputType", - "isComposing" + "isComposing", + "targetRange" ], "InputEvent/InputEvent(type)": [ "eventInitDict", @@ -31902,6 +36105,7 @@ "dataTransfer", "inputType", "isComposing", + "targetRange", "targetRanges" ], "InputObject": [ @@ -31910,6 +36114,12 @@ "pagePath", "referrerInfo" ], + "InstallEvent": [ + "addRoutes(rules)" + ], + "InstallEvent/addRoutes(rules)": [ + "rules" + ], "Instance": [ "Instance(module)", "Instance(module, importObject)", @@ -31933,6 +36143,70 @@ "importObject", "module" ], + "InterestGroupBiddingAndScoringScriptRunnerGlobalScope": [ + "debug loss report url", + "debug win report url", + "forDebuggingOnly", + "fordebuggingonly", + "real time reporting contributions", + "realTimeReporting", + "realtimereporting" + ], + "InterestGroupBiddingScriptRunnerGlobalScope": [ + "bids", + "expected currency", + "group has ad components", + "interest group", + "is component auction", + "multi-bid limit", + "priority", + "priority signals", + "setBid()", + "setBid(oneOrManyBids)", + "setPriority(priority)", + "setPrioritySignalsOverride(key)", + "setPrioritySignalsOverride(key, priority)" + ], + "InterestGroupBiddingScriptRunnerGlobalScope/setBid()": [ + "oneOrManyBids" + ], + "InterestGroupBiddingScriptRunnerGlobalScope/setBid(oneOrManyBids)": [ + "oneOrManyBids" + ], + "InterestGroupBiddingScriptRunnerGlobalScope/setPriority(priority)": [ + "priority" + ], + "InterestGroupBiddingScriptRunnerGlobalScope/setPrioritySignalsOverride(key)": [ + "key", + "priority" + ], + "InterestGroupBiddingScriptRunnerGlobalScope/setPrioritySignalsOverride(key, priority)": [ + "key", + "priority" + ], + "InterestGroupReportingScriptRunnerGlobalScope": [ + "interest group", + "registerAdBeacon(map)", + "registerAdMacro(name, value)", + "report url", + "reporting beacon map", + "reporting macro map", + "sendReportTo(url)" + ], + "InterestGroupReportingScriptRunnerGlobalScope/registerAdBeacon(map)": [ + "map" + ], + "InterestGroupReportingScriptRunnerGlobalScope/registerAdMacro(name, value)": [ + "name", + "value" + ], + "InterestGroupReportingScriptRunnerGlobalScope/sendReportTo(url)": [ + "url" + ], + "InterestGroupScriptRunnerGlobalScope": [ + "auction config", + "privateAggregation" + ], "IntersectionObserver": [ "IntersectionObserver(callback)", "IntersectionObserver(callback, options = {})", @@ -31940,11 +36214,16 @@ "[[ObservationTargets]]", "[[QueuedEntries]]", "[[callback]]", + "[[delay]]", "[[rootMargin]]", + "[[scrollMargin]]", + "[[thresholds]]", + "[[trackVisibility]]", "constructor(callback)", "constructor(callback, options)", "content clip", "cross-origin-domain target", + "delay", "disconnect()", "explicit root observer", "implicit root", @@ -31955,9 +36234,11 @@ "root intersection rectangle", "rootMargin", "same-origin-domain target", + "scrollMargin", "takeRecords()", "target", "thresholds", + "trackVisibility", "unobserve(target)" ], "IntersectionObserver/IntersectionObserver(callback)": [ @@ -31993,6 +36274,7 @@ "intersectionRatio", "intersectionRect", "isIntersecting", + "isVisible", "rootBounds", "target", "time" @@ -32008,18 +36290,24 @@ "intersectionRatio", "intersectionRect", "isIntersecting", + "isVisible", "rootBounds", "target", "time" ], "IntersectionObserverInit": [ + "delay", "root", "rootMargin", - "threshold" + "scrollMargin", + "threshold", + "trackVisibility" ], "IntersectionObserverRegistration": [ + "lastUpdateTime", "observer", "previousIsIntersecting", + "previousIsVisible", "previousThresholdIndex" ], "InterventionReportBody": [ @@ -32081,6 +36369,10 @@ "parse(text, reviver)", "stringify(value, replacer, space)" ], + "JavaScript": [ + "ecmascript throw", + "javascript throw" + ], "JavaScript string": [ "code point length", "convert", @@ -32221,6 +36513,12 @@ "x", "y" ], + "KAnonStatus": [ + "\"belowThreshold\"", + "\"notCalculated\"", + "\"passedAndEnforced\"", + "\"passedNotEnforced\"" + ], "KeyAlgorithm": [ "name" ], @@ -32230,6 +36528,29 @@ "raw", "spki" ], + "KeyFrameRequestEvent": [ + "KeyFrameRequestEvent(type)", + "KeyFrameRequestEvent(type, rid)", + "constructor(type)", + "constructor(type, rid)", + "rid" + ], + "KeyFrameRequestEvent/KeyFrameRequestEvent(type)": [ + "rid", + "type" + ], + "KeyFrameRequestEvent/KeyFrameRequestEvent(type, rid)": [ + "rid", + "type" + ], + "KeyFrameRequestEvent/constructor(type)": [ + "rid", + "type" + ], + "KeyFrameRequestEvent/constructor(type, rid)": [ + "rid", + "type" + ], "KeySystemTrackConfiguration": [ "encryptionScheme", "robustness" @@ -32449,6 +36770,8 @@ ], "KeyframeAnimationOptions": [ "id", + "rangeEnd", + "rangeStart", "timeline" ], "KeyframeEffect": [ @@ -32461,6 +36784,7 @@ "constructor(target, keyframes, options)", "getKeyframes()", "iterationComposite", + "keyframes", "pseudoElement", "setKeyframes(keyframes)", "target" @@ -32504,7 +36828,9 @@ "element", "id", "loadTime", + "loadtime", "renderTime", + "rendertime", "size", "toJSON()", "url" @@ -32724,6 +37050,10 @@ "signal", "steal" ], + "LoginStatus": [ + "\"logged-in\"", + "\"logged-out\"" + ], "MIDIAccess": [ "inputs", "onstatechange", @@ -32795,72 +37125,30 @@ "ML": [ "createContext()", "createContext(gpuDevice)", - "createContext(options)", - "createContextSync()", - "createContextSync(gpuDevice)", - "createContextSync(options)" - ], - "ML/createContext()": [ - "options" + "createContext(options)" ], "ML/createContext(gpuDevice)": [ - "gpuDevice" - ], - "ML/createContext(options)": [ - "options" - ], - "ML/createContextSync()": [ + "gpuDevice", "options" ], - "ML/createContextSync(gpuDevice)": [ - "gpuDevice" - ], - "ML/createContextSync(options)": [ + "ML/createContext(options)": [ + "gpuDevice", "options" ], - "MLAutoPad": [ - "\"explicit\"", - "\"same-lower\"", - "\"same-upper\"" + "MLArgMinMaxOptions": [ + "keepDimensions", + "outputDataType" ], "MLBatchNormalizationOptions": [ - "activation", "axis", "bias", "epsilon", "scale" ], - "MLBufferResourceView": [ - "offset", - "resource", - "size" - ], "MLClampOptions": [ "maxValue", "minValue" ], - "MLCommandEncoder": [ - "[[context]]", - "[[implementation]]", - "dispatch(graph, inputs, outputs)", - "finish()", - "finish(descriptor)", - "initializeGraph(graph)" - ], - "MLCommandEncoder/dispatch(graph, inputs, outputs)": [ - "graph", - "inputs", - "outputs" - ], - "MLCommandEncoder/finish()": [ - "descriptor" - ], - "MLCommandEncoder/finish(descriptor)": [ - "descriptor" - ], - "MLCommandEncoder/initializeGraph(graph)": [ - "graph" - ], "MLComputeResult": [ "inputs", "outputs" @@ -32869,20 +37157,13 @@ "[[contextType]]", "[[deviceType]]", "[[powerPreference]]", - "compute(graph, inputs, outputs)", - "computeSync(graph, inputs, outputs)", - "createCommandEncoder()" + "compute(graph, inputs, outputs)" ], "MLContext/compute(graph, inputs, outputs)": [ "graph", "inputs", "outputs" ], - "MLContext/computeSync(graph, inputs, outputs)": [ - "graph", - "inputs", - "outputs" - ], "MLContextOptions": [ "deviceType", "powerPreference" @@ -32894,8 +37175,6 @@ "\"oihw\"" ], "MLConv2dOptions": [ - "activation", - "autoPad", "bias", "dilations", "filterLayout", @@ -32910,8 +37189,6 @@ "\"ohwi\"" ], "MLConvTranspose2dOptions": [ - "activation", - "autoPad", "bias", "dilations", "filterLayout", @@ -32924,11 +37201,18 @@ ], "MLDeviceType": [ "\"cpu\"", - "\"gpu\"" + "\"gpu\"", + "\"npu\"", + "cpu", + "gpu", + "npu" ], "MLEluOptions": [ "alpha" ], + "MLGatherOptions": [ + "axis" + ], "MLGemmOptions": [ "aTranspose", "alpha", @@ -32945,76 +37229,131 @@ "MLGraphBuilder": [ "MLGraphBuilder(context)", "[[context]]", - "abs(x)", + "[[hasBuilt]]", + "abs(input)", + "abs(input, options)", "add(a, b)", + "add(a, b, options)", + "argMax(input, axis)", + "argMax(input, axis, options)", + "argMin(input, axis)", + "argMin(input, axis, options)", + "argminmax-op", "averagePool2d(input)", "averagePool2d(input, options)", "batchNormalization(input, mean, variance)", "batchNormalization(input, mean, variance, options)", "build(outputs)", - "buildSync(outputs)", - "ceil(x)", - "clamp()", - "clamp(options)", - "clamp(x)", - "clamp(x, options)", + "calculate conv output size", + "calculate conv2d output sizes", + "calculate convtranspose output size", + "calculate convtranspose2d output sizes", + "calculate matmul output sizes", + "calculate padding output sizes", + "calculate pool2d output sizes", + "calculate reduction output sizes", + "calculate resample output sizes", + "cast(input, type)", + "cast(input, type, options)", + "ceil(input)", + "ceil(input, options)", + "check resample options", + "clamp(input)", + "clamp(input, options)", "concat(inputs, axis)", - "constant(desc, bufferView)", - "constant(value)", - "constant(value, type)", + "concat(inputs, axis, options)", + "constant(descriptor, bufferView)", + "constant(type, value)", "constructor(context)", "conv2d(input, filter)", "conv2d(input, filter, options)", "convTranspose2d(input, filter)", "convTranspose2d(input, filter, options)", - "cos(x)", + "cos(input)", + "cos(input, options)", + "create reduction operation", "div(a, b)", - "elu()", - "elu(options)", - "elu(x)", - "elu(x, options)", - "exp(x)", - "floor(x)", + "div(a, b, options)", + "element-wise-binary-op", + "element-wise-logical-op", + "element-wise-unary-op", + "elu(input)", + "elu(input, options)", + "equal(a, b)", + "equal(a, b, options)", + "erf(input)", + "erf(input, options)", + "exp(input)", + "exp(input, options)", + "expand(input, newShape)", + "expand(input, newShape, options)", + "floor(input)", + "floor(input, options)", + "gather(input, indices)", + "gather(input, indices, options)", + "gelu(input)", + "gelu(input, options)", "gemm(a, b)", "gemm(a, b, options)", + "graph", + "greater(a, b)", + "greater(a, b, options)", + "greaterOrEqual(a, b)", + "greaterOrEqual(a, b, options)", "gru(input, weight, recurrentWeight, steps, hiddenSize)", "gru(input, weight, recurrentWeight, steps, hiddenSize, options)", "gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize)", "gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options)", - "hardSigmoid()", - "hardSigmoid(options)", - "hardSigmoid(x)", - "hardSigmoid(x, options)", - "hardSwish()", - "hardSwish(x)", - "input(name, desc)", + "hardSigmoid(input)", + "hardSigmoid(input, options)", + "hardSwish(input)", + "hardSwish(input, options)", + "identity(input)", + "identity(input, options)", + "input(name, descriptor)", "instanceNormalization(input)", "instanceNormalization(input, options)", "l2Pool2d(input)", "l2Pool2d(input, options)", - "leakyRelu()", - "leakyRelu(options)", - "leakyRelu(x)", - "leakyRelu(x, options)", - "linear()", - "linear(options)", - "linear(x)", - "linear(x, options)", - "log(x)", + "layerNormalization(input)", + "layerNormalization(input, options)", + "leakyRelu(input)", + "leakyRelu(input, options)", + "lesser(a, b)", + "lesser(a, b, options)", + "lesserOrEqual(a, b)", + "lesserOrEqual(a, b, options)", + "linear(input)", + "linear(input, options)", + "log(input)", + "log(input, options)", + "logicalNot(a)", + "logicalNot(a, options)", "lstm(input, weight, recurrentWeight, steps, hiddenSize)", "lstm(input, weight, recurrentWeight, steps, hiddenSize, options)", "lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize)", "lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options)", "matmul(a, b)", + "matmul(a, b, options)", "max(a, b)", + "max(a, b, options)", "maxPool2d(input)", "maxPool2d(input, options)", "min(a, b)", + "min(a, b, options)", "mul(a, b)", - "neg(x)", - "pad(input, padding)", - "pad(input, padding, options)", + "mul(a, b, options)", + "neg(input)", + "neg(input, options)", + "pad(input, beginningPadding, endingPadding)", + "pad(input, beginningPadding, endingPadding, options)", + "pooling-op", "pow(a, b)", + "pow(a, b, options)", + "prelu(input, slope)", + "prelu(input, slope, options)", + "reciprocal(input)", + "reciprocal(input, options)", "reduceL1(input)", "reduceL1(input, options)", "reduceL2(input)", @@ -33035,58 +37374,64 @@ "reduceSum(input, options)", "reduceSumSquare(input)", "reduceSumSquare(input, options)", - "relu()", - "relu(x)", + "relu(input)", + "relu(input, options)", "resample2d(input)", "resample2d(input, options)", "reshape(input, newShape)", - "sigmoid()", - "sigmoid(x)", - "sin(x)", + "reshape(input, newShape, options)", + "sigmoid(input)", + "sigmoid(input, options)", + "sin(input)", + "sin(input, options)", "slice(input, starts, sizes)", "slice(input, starts, sizes, options)", - "softmax()", - "softmax(x)", - "softplus()", - "softplus(options)", - "softplus(x)", - "softplus(x, options)", - "softsign()", - "softsign(x)", + "softmax(input, axis)", + "softmax(input, axis, options)", + "softplus(input)", + "softplus(input, options)", + "softsign(input)", + "softsign(input, options)", "split(input, splits)", "split(input, splits, options)", - "squeeze(input)", - "squeeze(input, options)", + "sqrt(input)", + "sqrt(input, options)", "sub(a, b)", - "tan(x)", - "tanh()", - "tanh(x)", + "sub(a, b, options)", + "tan(input)", + "tan(input, options)", + "tanh(input)", + "tanh(input, options)", "transpose(input)", - "transpose(input, options)" - ], - "MLGraphBuilder/MLGraphBuilder(context)": [ - "context" - ], - "MLGraphBuilder/abs(x)": [ - "x" + "transpose(input, options)", + "triangular(input)", + "triangular(input, options)", + "validate operand", + "where(condition, trueValue, falseValue)", + "where(condition, trueValue, falseValue, options)" + ], + "MLGraphBuilder/abs(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/add(a, b)": [ + "MLGraphBuilder/add(a, b, options)": [ "a", - "b" + "b", + "options" ], - "MLGraphBuilder/averagePool2d(input)": [ + "MLGraphBuilder/argMax(input, axis, options)": [ + "axis", "input", "options" ], - "MLGraphBuilder/averagePool2d(input, options)": [ + "MLGraphBuilder/argMin(input, axis, options)": [ + "axis", "input", "options" ], - "MLGraphBuilder/batchNormalization(input, mean, variance)": [ + "MLGraphBuilder/averagePool2d(input, options)": [ "input", - "mean", - "options", - "variance" + "options" ], "MLGraphBuilder/batchNormalization(input, mean, variance, options)": [ "input", @@ -33097,109 +37442,103 @@ "MLGraphBuilder/build(outputs)": [ "outputs" ], - "MLGraphBuilder/buildSync(outputs)": [ - "outputs" - ], - "MLGraphBuilder/ceil(x)": [ - "x" + "MLGraphBuilder/cast(input, type, options)": [ + "input", + "options", + "type" ], - "MLGraphBuilder/clamp()": [ + "MLGraphBuilder/ceil(input, options)": [ + "input", "options" ], - "MLGraphBuilder/clamp(options)": [ + "MLGraphBuilder/clamp(input, options)": [ + "input", "options" ], - "MLGraphBuilder/clamp(x)": [ - "options", - "x" - ], - "MLGraphBuilder/clamp(x, options)": [ - "options", - "x" - ], - "MLGraphBuilder/concat(inputs, axis)": [ + "MLGraphBuilder/concat(inputs, axis, options)": [ "axis", - "inputs" + "inputs", + "options" ], - "MLGraphBuilder/constant(desc, bufferView)": [ + "MLGraphBuilder/constant(descriptor, bufferView)": [ "bufferView", - "desc" - ], - "MLGraphBuilder/constant(value)": [ - "type", - "value" + "descriptor" ], - "MLGraphBuilder/constant(value, type)": [ + "MLGraphBuilder/constant(type, value)": [ "type", "value" ], "MLGraphBuilder/constructor(context)": [ "context" ], - "MLGraphBuilder/conv2d(input, filter)": [ + "MLGraphBuilder/conv2d(input, filter, options)": [ "filter", "input", "options" ], - "MLGraphBuilder/conv2d(input, filter, options)": [ + "MLGraphBuilder/convTranspose2d(input, filter, options)": [ "filter", "input", "options" ], - "MLGraphBuilder/convTranspose2d(input, filter)": [ - "filter", + "MLGraphBuilder/cos(input, options)": [ "input", "options" ], - "MLGraphBuilder/convTranspose2d(input, filter, options)": [ - "filter", - "input", + "MLGraphBuilder/div(a, b, options)": [ + "a", + "b", "options" ], - "MLGraphBuilder/cos(x)": [ - "x" + "MLGraphBuilder/elu(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/div(a, b)": [ + "MLGraphBuilder/equal(a, b, options)": [ "a", - "b" + "b", + "options" ], - "MLGraphBuilder/elu()": [ + "MLGraphBuilder/erf(input, options)": [ + "input", "options" ], - "MLGraphBuilder/elu(options)": [ + "MLGraphBuilder/exp(input, options)": [ + "input", "options" ], - "MLGraphBuilder/elu(x)": [ - "options", - "x" + "MLGraphBuilder/expand(input, newShape, options)": [ + "input", + "newShape", + "options" ], - "MLGraphBuilder/elu(x, options)": [ - "options", - "x" + "MLGraphBuilder/floor(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/exp(x)": [ - "x" + "MLGraphBuilder/gather(input, indices, options)": [ + "indices", + "input", + "options" ], - "MLGraphBuilder/floor(x)": [ - "x" + "MLGraphBuilder/gelu(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/gemm(a, b)": [ + "MLGraphBuilder/gemm(a, b, options)": [ "a", "b", "options" ], - "MLGraphBuilder/gemm(a, b, options)": [ + "MLGraphBuilder/greater(a, b, options)": [ "a", "b", "options" ], - "MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize)": [ - "hiddenSize", - "input", - "options", - "recurrentWeight", - "steps", - "weight" + "MLGraphBuilder/greaterOrEqual(a, b, options)": [ + "a", + "b", + "options" ], "MLGraphBuilder/gru(input, weight, recurrentWeight, steps, hiddenSize, options)": [ "hiddenSize", @@ -33209,14 +37548,6 @@ "steps", "weight" ], - "MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize)": [ - "hiddenSize", - "hiddenState", - "input", - "options", - "recurrentWeight", - "weight" - ], "MLGraphBuilder/gruCell(input, weight, recurrentWeight, hiddenState, hiddenSize, options)": [ "hiddenSize", "hiddenState", @@ -33225,81 +37556,60 @@ "recurrentWeight", "weight" ], - "MLGraphBuilder/hardSigmoid()": [ + "MLGraphBuilder/hardSigmoid(input, options)": [ + "input", "options" ], - "MLGraphBuilder/hardSigmoid(options)": [ + "MLGraphBuilder/hardSwish(input, options)": [ + "input", "options" ], - "MLGraphBuilder/hardSigmoid(x)": [ - "options", - "x" - ], - "MLGraphBuilder/hardSigmoid(x, options)": [ - "options", - "x" - ], - "MLGraphBuilder/hardSwish(x)": [ - "x" + "MLGraphBuilder/identity(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/input(name, desc)": [ - "desc", + "MLGraphBuilder/input(name, descriptor)": [ + "descriptor", "name" ], - "MLGraphBuilder/instanceNormalization(input)": [ + "MLGraphBuilder/instanceNormalization(input, options)": [ "input", "options" ], - "MLGraphBuilder/instanceNormalization(input, options)": [ + "MLGraphBuilder/l2Pool2d(input, options)": [ "input", "options" ], - "MLGraphBuilder/l2Pool2d(input)": [ + "MLGraphBuilder/layerNormalization(input, options)": [ "input", "options" ], - "MLGraphBuilder/l2Pool2d(input, options)": [ + "MLGraphBuilder/leakyRelu(input, options)": [ "input", "options" ], - "MLGraphBuilder/leakyRelu()": [ + "MLGraphBuilder/lesser(a, b, options)": [ + "a", + "b", "options" ], - "MLGraphBuilder/leakyRelu(options)": [ + "MLGraphBuilder/lesserOrEqual(a, b, options)": [ + "a", + "b", "options" ], - "MLGraphBuilder/leakyRelu(x)": [ - "options", - "x" - ], - "MLGraphBuilder/leakyRelu(x, options)": [ - "options", - "x" - ], - "MLGraphBuilder/linear()": [ + "MLGraphBuilder/linear(input, options)": [ + "input", "options" ], - "MLGraphBuilder/linear(options)": [ + "MLGraphBuilder/log(input, options)": [ + "input", "options" ], - "MLGraphBuilder/linear(x)": [ - "options", - "x" - ], - "MLGraphBuilder/linear(x, options)": [ - "options", - "x" - ], - "MLGraphBuilder/log(x)": [ - "x" - ], - "MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize)": [ - "hiddenSize", - "input", - "options", - "recurrentWeight", - "steps", - "weight" + "MLGraphBuilder/logicalNot(a, options)": [ + "a", + "b", + "options" ], "MLGraphBuilder/lstm(input, weight, recurrentWeight, steps, hiddenSize, options)": [ "hiddenSize", @@ -33309,15 +37619,6 @@ "steps", "weight" ], - "MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize)": [ - "cellState", - "hiddenSize", - "hiddenState", - "input", - "options", - "recurrentWeight", - "weight" - ], "MLGraphBuilder/lstmCell(input, weight, recurrentWeight, hiddenState, cellState, hiddenSize, options)": [ "cellState", "hiddenSize", @@ -33327,64 +37628,59 @@ "recurrentWeight", "weight" ], - "MLGraphBuilder/matmul(a, b)": [ + "MLGraphBuilder/matmul(a, b, options)": [ "a", - "b" + "b", + "options" ], - "MLGraphBuilder/max(a, b)": [ + "MLGraphBuilder/max(a, b, options)": [ "a", - "b" - ], - "MLGraphBuilder/maxPool2d(input)": [ - "input", + "b", "options" ], "MLGraphBuilder/maxPool2d(input, options)": [ "input", "options" ], - "MLGraphBuilder/min(a, b)": [ + "MLGraphBuilder/min(a, b, options)": [ "a", - "b" + "b", + "options" ], - "MLGraphBuilder/mul(a, b)": [ + "MLGraphBuilder/mul(a, b, options)": [ "a", - "b" - ], - "MLGraphBuilder/neg(x)": [ - "x" + "b", + "options" ], - "MLGraphBuilder/pad(input, padding)": [ + "MLGraphBuilder/neg(input, options)": [ "input", - "options", - "padding" + "options" ], - "MLGraphBuilder/pad(input, padding, options)": [ + "MLGraphBuilder/pad(input, beginningPadding, endingPadding, options)": [ + "beginningPadding", + "endingPadding", "input", - "options", - "padding" + "options" ], - "MLGraphBuilder/pow(a, b)": [ + "MLGraphBuilder/pow(a, b, options)": [ "a", - "b" - ], - "MLGraphBuilder/reduceL1(input)": [ - "input", + "b", "options" ], - "MLGraphBuilder/reduceL1(input, options)": [ + "MLGraphBuilder/prelu(input, slope, options)": [ "input", - "options" + "options", + "slope" ], - "MLGraphBuilder/reduceL2(input)": [ + "MLGraphBuilder/reciprocal(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceL2(input, options)": [ + "MLGraphBuilder/reduceL1(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceLogSum(input)": [ + "MLGraphBuilder/reduceL2(input, options)": [ "input", "options" ], @@ -33392,66 +37688,35 @@ "input", "options" ], - "MLGraphBuilder/reduceLogSumExp(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceLogSumExp(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceMax(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceMax(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceMean(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceMean(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceMin(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceMin(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceProduct(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceProduct(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceSum(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceSum(input, options)": [ "input", "options" ], - "MLGraphBuilder/reduceSumSquare(input)": [ - "input", - "options" - ], "MLGraphBuilder/reduceSumSquare(input, options)": [ "input", "options" ], - "MLGraphBuilder/relu(x)": [ - "x" - ], - "MLGraphBuilder/resample2d(input)": [ + "MLGraphBuilder/relu(input, options)": [ "input", "options" ], @@ -33459,21 +37724,18 @@ "input", "options" ], - "MLGraphBuilder/reshape(input, newShape)": [ + "MLGraphBuilder/reshape(input, newShape, options)": [ "input", - "newShape" - ], - "MLGraphBuilder/sigmoid(x)": [ - "x" + "newShape", + "options" ], - "MLGraphBuilder/sin(x)": [ - "x" + "MLGraphBuilder/sigmoid(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/slice(input, starts, sizes)": [ + "MLGraphBuilder/sin(input, options)": [ "input", - "options", - "sizes", - "starts" + "options" ], "MLGraphBuilder/slice(input, starts, sizes, options)": [ "input", @@ -33481,55 +37743,38 @@ "sizes", "starts" ], - "MLGraphBuilder/softmax(x)": [ - "x" - ], - "MLGraphBuilder/softplus()": [ + "MLGraphBuilder/softmax(input, axis, options)": [ + "axis", + "input", "options" ], - "MLGraphBuilder/softplus(options)": [ + "MLGraphBuilder/softplus(input, options)": [ + "input", "options" ], - "MLGraphBuilder/softplus(x)": [ - "options", - "x" - ], - "MLGraphBuilder/softplus(x, options)": [ - "options", - "x" - ], - "MLGraphBuilder/softsign(x)": [ - "x" - ], - "MLGraphBuilder/split(input, splits)": [ + "MLGraphBuilder/softsign(input, options)": [ "input", - "options", - "splits" + "options" ], "MLGraphBuilder/split(input, splits, options)": [ "input", "options", "splits" ], - "MLGraphBuilder/squeeze(input)": [ + "MLGraphBuilder/sqrt(input, options)": [ "input", "options" ], - "MLGraphBuilder/squeeze(input, options)": [ - "input", - "options" - ], - "MLGraphBuilder/sub(a, b)": [ + "MLGraphBuilder/sub(a, b, options)": [ "a", - "b" - ], - "MLGraphBuilder/tan(x)": [ - "x" + "b", + "options" ], - "MLGraphBuilder/tanh(x)": [ - "x" + "MLGraphBuilder/tan(input, options)": [ + "input", + "options" ], - "MLGraphBuilder/transpose(input)": [ + "MLGraphBuilder/tanh(input, options)": [ "input", "options" ], @@ -33537,6 +37782,16 @@ "input", "options" ], + "MLGraphBuilder/triangular(input, options)": [ + "input", + "options" + ], + "MLGraphBuilder/where(condition, trueValue, falseValue, options)": [ + "condition", + "falseValue", + "options", + "trueValue" + ], "MLGruCellOptions": [ "activations", "bias", @@ -33576,6 +37831,12 @@ "\"linear\"", "\"nearest-neighbor\"" ], + "MLLayerNormalizationOptions": [ + "axes", + "bias", + "epsilon", + "scale" + ], "MLLeakyReluOptions": [ "alpha" ], @@ -33608,19 +37869,36 @@ "MLNamedArrayBufferViews": [ "transfer" ], - "MLOperandDescriptor": [ - "byte length", - "dimensions", - "type" + "MLOperand": [ + "[[builder]]", + "[[descriptor]]", + "[[name]]", + "[[operator]]", + "dataType()", + "datatype", + "rank", + "shape", + "shape()" ], - "MLOperandType": [ + "MLOperandDataType": [ "\"float16\"", "\"float32\"", "\"int32\"", + "\"int64\"", "\"int8\"", "\"uint32\"", + "\"uint64\"", "\"uint8\"" ], + "MLOperandDescriptor": [ + "byte length", + "check dimensions", + "dataType", + "dimensions" + ], + "MLOperatorOptions": [ + "label" + ], "MLPadOptions": [ "mode", "value" @@ -33632,7 +37910,6 @@ "\"symmetric\"" ], "MLPool2dOptions": [ - "autoPad", "dilations", "layout", "outputSizes", @@ -33644,7 +37921,15 @@ "MLPowerPreference": [ "\"default\"", "\"high-performance\"", - "\"low-power\"" + "\"low-power\"", + "default", + "high-performance", + "low-power" + ], + "MLRecurrentNetworkActivation": [ + "\"relu\"", + "\"sigmoid\"", + "\"tanh\"" ], "MLRecurrentNetworkDirection": [ "\"backward\"", @@ -33665,21 +37950,16 @@ "\"ceil\"", "\"floor\"" ], - "MLSliceOptions": [ - "axes" - ], - "MLSoftplusOptions": [ - "steepness" - ], "MLSplitOptions": [ "axis" ], - "MLSqueezeOptions": [ - "axes" - ], "MLTransposeOptions": [ "permutation" ], + "MLTriangularOptions": [ + "diagonal", + "upper" + ], "Magnetometer": [ "Magnetometer()", "Magnetometer(sensorOptions)", @@ -33705,27 +37985,54 @@ "\"device\"", "\"screen\"" ], - "MagnetometerReadingValues": [ - "x", - "y", - "z" - ], "MagnetometerSensorOptions": [ "referenceFrame" ], + "ManagedMediaSource": [ + "constructor()", + "memory cleanup", + "onendstreaming", + "onstartstreaming", + "streaming" + ], + "ManagedSourceBuffer": [ + "memory cleanup", + "onbufferedchange" + ], "Map": [ "Map(iterable)", "clear()", "delete(key)", "entries()", - "forEach(callbackfn, thisArg)", + "forEach(callback, thisArg)", "get(key)", + "groupBy(items, callback)", "has(key)", "keys()", "set(key, value)", "size", "values()" ], + "Map.prototype [ %Symbol.iterator% ] ( )": [ + "Map.prototype %Symbol.iterator% ()" + ], + "Mapping Entries": [ + "entries" + ], + "Mapping Entry": [ + "bias", + "codepoints", + "copycount", + "copyindices", + "designspacecount", + "designspacesegments", + "entryiddelta", + "entryidstringlength", + "featurecount", + "featuretags", + "formatflags", + "patchencoding" + ], "Math": [ "E", "LN10", @@ -33969,7 +38276,6 @@ "get(keyId)", "has()", "has(keyId)", - "iterable", "size" ], "MediaKeySystemAccess": [ @@ -33993,10 +38299,15 @@ ], "MediaKeys": [ "createSession()", - "createSession(, sessionType)", + "createSession(sessionType)", + "getStatusForPolicy()", + "getStatusForPolicy(policy)", "setServerCertificate()", "setServerCertificate(serverCertificate)" ], + "MediaKeysPolicy": [ + "minHdcpVersion" + ], "MediaKeysRequirement": [ "not-allowed", "optional", @@ -34027,6 +38338,8 @@ "artist", "artwork", "artwork images", + "chapter information", + "chapterInfo", "constructor()", "constructor(init)", "media session", @@ -34048,6 +38361,7 @@ "album", "artist", "artwork", + "chapterInfo", "title" ], "MediaPositionState": [ @@ -34169,7 +38483,9 @@ "audioBitsPerSecond", "bitsPerSecond", "mimeType", - "videoBitsPerSecond" + "videoBitsPerSecond", + "videoKeyFrameIntervalCount", + "videoKeyFrameIntervalDuration" ], "MediaSession": [ "metadata", @@ -34178,7 +38494,8 @@ "setCameraActive(active)", "setMicrophoneActive(active)", "setPositionState()", - "setPositionState(state)" + "setPositionState(state)", + "setScreenshareActive(active)" ], "MediaSession/setActionHandler(action, handler)": [ "action", @@ -34196,7 +38513,11 @@ "MediaSession/setPositionState(state)": [ "state" ], + "MediaSession/setScreenshareActive(active)": [ + "active" + ], "MediaSessionAction": [ + "\"enterpictureinpicture\"", "\"hangup\"", "\"nextslide\"", "\"nexttrack\"", @@ -34211,6 +38532,9 @@ "\"stop\"", "\"togglecamera\"", "\"togglemicrophone\"", + "\"togglescreenshare\"", + "\"voiceactivity\"", + "enterpictureinpicture", "hangup", "nextslide", "nexttrack", @@ -34224,17 +38548,25 @@ "skipad", "stop", "togglecamera", - "togglemicrophone" + "togglemicrophone", + "togglescreenshare", + "voiceactivity" + ], + "MediaSessionActionCaptureDetails": [ + "isActivating" ], "MediaSessionActionDetails": [ - "action", - "fastSeek", - "seekOffset", - "seekTime" + "action" ], "MediaSessionActionHandler": [ "details" ], + "MediaSessionActionSeekToDetails": [ + "fastSeek" + ], + "MediaSessionCaptureActionDetails": [ + "isActivating" + ], "MediaSessionPlaybackState": [ "\"none\"", "\"paused\"", @@ -34243,6 +38575,13 @@ "paused", "playing" ], + "MediaSessionSeekActionDetails": [ + "seekOffset" + ], + "MediaSessionSeekToActionDetails": [ + "fastSeek", + "seekTime" + ], "MediaSettingsRange": [ "max", "min", @@ -34369,6 +38708,7 @@ "clone()", "contentHint", "enabled", + "ended", "getCapabilities()", "getCaptureHandle()", "getConstraints()", @@ -34388,7 +38728,9 @@ "readyState", "sendCaptureAction()", "sendCaptureAction(action)", - "stop()" + "set a track's muted state", + "stop()", + "track enabled state" ], "MediaStreamTrackAudioSourceNode": [ "MediaStreamTrackAudioSourceNode(context, options)", @@ -34444,6 +38786,7 @@ "MediaTrackCapabilities": [ "aspectRatio", "autoGainControl", + "backgroundBlur", "brightness", "channelCount", "colorTemperature", @@ -34480,6 +38823,7 @@ "MediaTrackConstraintSet": [ "aspectRatio", "autoGainControl", + "backgroundBlur", "brightness", "channelCount", "colorTemperature", @@ -34522,6 +38866,7 @@ "MediaTrackSettings": [ "aspectRatio", "autoGainControl", + "backgroundBlur", "brightness", "channelCount", "colorTemperature", @@ -34561,6 +38906,7 @@ "MediaTrackSupportedConstraints": [ "aspectRatio", "autoGainControl", + "backgroundBlur", "brightness", "channelCount", "colorTemperature", @@ -34604,7 +38950,9 @@ "Memory(descriptor)", "buffer", "constructor(descriptor)", - "grow(delta)" + "grow(delta)", + "toFixedLengthBuffer()", + "toResizableBuffer()" ], "Memory/Memory(descriptor)": [ "descriptor" @@ -34657,9 +39005,11 @@ "source" ], "MessagePort": [ + "close", "close()", "message", "messageerror", + "onclose", "onmessage", "onmessageerror", "postMessage(message, options)", @@ -34735,30 +39085,6 @@ "MockMicrophoneConfiguration": [ "defaultSampleRate" ], - "MockSensor": [ - "maxSamplingFrequency", - "minSamplingFrequency", - "requestedSamplingFrequency" - ], - "MockSensorConfiguration": [ - "connected", - "maxSamplingFrequency", - "minSamplingFrequency", - "mockSensorType" - ], - "MockSensorType": [ - "\"absolute-orientation\"", - "\"accelerometer\"", - "\"ambient-light\"", - "\"geolocation\"", - "\"gravity\"", - "\"gyroscope\"", - "\"linear-acceleration\"", - "\"magnetometer\"", - "\"proximity\"", - "\"relative-orientation\"", - "\"uncalibrated-magnetometer\"" - ], "Module": [ "Module(bytes)", "constructor(bytes)", @@ -34768,14 +39094,10 @@ ], "Module Environment Records": [ "CreateImportBinding(N, M, N2)", - "GetThisBinding()" - ], - "Module Records": [ - "Evaluate()", - "GetExportedNames(exportStarSet)", - "Link()", - "LoadRequestedModules(hostDefined)", - "ResolveExport(exportName, resolveSet)" + "DeleteBinding(N)", + "GetBindingValue(N, S)", + "GetThisBinding()", + "HasThisBinding()" ], "Module/Module(bytes)": [ "bytes" @@ -34802,6 +39124,10 @@ "module", "name" ], + "MonitorTypeSurfacesEnum": [ + "exclude", + "include" + ], "MouseEvent": [ "MouseEvent(type)", "MouseEvent(type, eventInitDict)", @@ -34829,6 +39155,8 @@ "initMouseEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg, screenXArg, screenYArg, clientXArg, clientYArg, ctrlKeyArg, altKeyArg, shiftKeyArg, metaKeyArg)", "initMouseEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg, screenXArg, screenYArg, clientXArg, clientYArg, ctrlKeyArg, altKeyArg, shiftKeyArg, metaKeyArg, buttonArg)", "initMouseEvent(typeArg, bubblesArg, cancelableArg, viewArg, detailArg, screenXArg, screenYArg, clientXArg, clientYArg, ctrlKeyArg, altKeyArg, shiftKeyArg, metaKeyArg, buttonArg, relatedTargetArg)", + "layerX", + "layerY", "metaKey", "movementX", "movementY", @@ -35417,47 +39745,25 @@ "name" ], "NavigateEvent": [ - "NavigateEvent(type, eventInit)", "canIntercept", - "classic history api serialized data", - "constructor(type, eventInit)", "destination", - "did process scroll behavior", "downloadRequest", - "focus reset behavior", "formData", + "hasUAVisualTransition", "hashChange", "info", - "intercept()", "intercept(options)", - "navigation handler list", "navigationType", - "needs continue", - "scroll behavior", "scroll()", "signal", - "userInitiated", - "was intercepted" - ], - "NavigateEvent/NavigateEvent(type, eventInit)": [ - "eventInit", - "type" - ], - "NavigateEvent/constructor(type, eventInit)": [ - "eventInit", - "type" - ], - "NavigateEvent/intercept()": [ - "options" - ], - "NavigateEvent/intercept(options)": [ - "options" + "userInitiated" ], "NavigateEventInit": [ "canIntercept", "destination", "downloadRequest", "formData", + "hasUAVisualTransition", "hashChange", "info", "navigationType", @@ -35465,111 +39771,46 @@ "userInitiated" ], "Navigation": [ - "back()", + "activation", "back(options)", "canGoBack", "canGoForward", - "current entry", - "current entry index", "currentEntry", "currententrychange", "entries()", - "entry list", - "focus changed during ongoing navigation", - "forward()", "forward(options)", - "has entries and events disabled", - "initialize the entries for a new navigation", "navigate", - "navigate(url)", "navigate(url, options)", "navigateerror", "navigatesuccess", "oncurrententrychange", - "ongoing navigate event", - "ongoing navigation", - "ongoing navigation signal", "onnavigate", "onnavigateerror", "onnavigatesuccess", - "promote the upcoming navigation to ongoing", - "reload()", "reload(options)", - "set an upcoming traverse navigation", - "set the upcoming non-traverse navigation", - "suppress normal scroll restoration during ongoing navigation", "transition", - "traverseTo(key)", "traverseTo(key, options)", - "upcoming non-traverse navigation", - "upcoming traverse navigations", - "update the entries for a same-document navigation", - "update the entries for reactivation", "updateCurrentEntry(options)" ], - "Navigation/back()": [ - "options" - ], - "Navigation/back(options)": [ - "options" - ], - "Navigation/forward()": [ - "options" - ], - "Navigation/forward(options)": [ - "options" - ], - "Navigation/navigate(url)": [ - "options", - "url" - ], - "Navigation/navigate(url, options)": [ - "options", - "url" - ], - "Navigation/reload()": [ - "options" - ], - "Navigation/reload(options)": [ - "options" - ], - "Navigation/traverseTo(key)": [ - "key", - "options" - ], - "Navigation/traverseTo(key, options)": [ - "key", - "options" - ], - "Navigation/updateCurrentEntry(options)": [ - "options" + "NavigationActivation": [ + "entry", + "from", + "navigationType" ], "NavigationCurrentEntryChangeEvent": [ - "NavigationCurrentEntryChangeEvent(type, eventInit)", - "constructor(type, eventInit)", "from", "navigationType" ], - "NavigationCurrentEntryChangeEvent/NavigationCurrentEntryChangeEvent(type, eventInit)": [ - "eventInit", - "type" - ], - "NavigationCurrentEntryChangeEvent/constructor(type, eventInit)": [ - "eventInit", - "type" - ], "NavigationCurrentEntryChangeEventInit": [ - "destination", + "from", "navigationType" ], "NavigationDestination": [ "getState()", "id", "index", - "is same document", "key", "sameDocument", - "state", "url" ], "NavigationEvent": [ @@ -35603,13 +39844,13 @@ "relatedTarget" ], "NavigationFocusReset": [ - "\"after-transition\"", - "\"manual\"" + "after-transition", + "manual" ], "NavigationHistoryBehavior": [ - "\"auto\"", - "\"push\"", - "\"replace\"" + "auto", + "push", + "replace" ], "NavigationHistoryEntry": [ "dispose", @@ -35619,7 +39860,6 @@ "key", "ondispose", "sameDocument", - "session history entry", "url" ], "NavigationInterceptOptions": [ @@ -35647,16 +39887,13 @@ "enabled", "headerValue" ], - "NavigationReloadOptions": [ - "state" - ], "NavigationResult": [ "committed", "finished" ], "NavigationScrollBehavior": [ - "\"after-transition\"", - "\"manual\"" + "after-transition", + "manual" ], "NavigationTimingType": [ "back_forward", @@ -35666,35 +39903,44 @@ ], "NavigationTransition": [ "finished", - "finished promise", "from", - "from entry", - "navigation type", "navigationType" ], "NavigationType": [ - "\"push\"", - "\"reload\"", - "\"replace\"", - "\"traverse\"" + "push", + "reload", + "replace", + "traverse" ], "NavigationUpdateCurrentEntryOptions": [ "state" ], "Navigator": [ + "3. feature query", + "4. create a handwriting recognizer", "[[BatteryManager]]", "[[BatteryPromise]]", "[[gamepads]]", "[[hasGamepadGesture]]", "[[sharePromise]]", + "adAuctionComponents(numAdComponents)", + "audioSession", "bluetooth", + "canLoadAdAuctionFencedFrame()", "canShare()", "canShare(data)", - "clearClientBadge()", + "clearOriginJoinedAdInterestGroups(owner)", + "clearOriginJoinedAdInterestGroups(owner, interestGroupsToKeep)", "clipboard", "contacts", "contacts manager", + "createAuctionNonce()", + "createHandwritingRecognizer(constraint)", "credentials", + "deprecatedReplaceInURN(urnOrConfig, replacements)", + "deprecatedRunAdAuctionEnforcesKAnonymity", + "deprecatedURNtoURL(urnOrConfig)", + "deprecatedURNtoURL(urnOrConfig, send_reports)", "devicePosture", "doNotTrack", "epubReadingSystem", @@ -35705,37 +39951,48 @@ "getBattery()", "getGamepads()", "getInstalledRelatedApps()", + "getInterestGroupAdAuctionData(config)", "getUserMedia()", "getUserMedia(constraints, successCallback, errorCallback)", "hid", + "identity", "ink", + "joinAdInterestGroup(group)", "keyboard", + "leaveAdInterestGroup()", + "leaveAdInterestGroup(group)", + "login", + "managed", "maxTouchPoints", "mediaCapabilities", "mediaDevices", "mediaSession", "permissions", + "preferences", "presentation", + "protectedAudience", + "queryHandwritingRecognizer(constraint)", "removeTrackingException()", "removeTrackingException(properties)", "requestMIDIAccess()", "requestMIDIAccess(options)", "requestMediaKeySystemAccess()", "requestMediaKeySystemAccess(keySystem, supportedConfigurations)", + "runAdAuction(config)", "scheduling", "sendBeacon()", "sendBeacon(url)", "sendBeacon(url, data)", "serial", "serviceWorker", - "setClientBadge()", - "setClientBadge(contents)", "share()", "share(data)", + "smartCard", "storeTrackingException()", "storeTrackingException(properties)", "trackingExceptionExists()", "trackingExceptionExists(properties)", + "updateAdInterestGroups()", "usb", "userActivation", "vibrate()", @@ -35745,6 +40002,32 @@ "windowControlsOverlay", "xr" ], + "Navigator/adAuctionComponents(numAdComponents)": [ + "numAdComponents" + ], + "Navigator/clearOriginJoinedAdInterestGroups(owner)": [ + "interestGroupsToKeep", + "owner" + ], + "Navigator/clearOriginJoinedAdInterestGroups(owner, interestGroupsToKeep)": [ + "interestGroupsToKeep", + "owner" + ], + "Navigator/createHandwritingRecognizer(constraint)": [ + "constraint" + ], + "Navigator/deprecatedReplaceInURN(urnOrConfig, replacements)": [ + "replacements", + "urnOrConfig" + ], + "Navigator/deprecatedURNtoURL(urnOrConfig)": [ + "send_reports", + "urnOrConfig" + ], + "Navigator/deprecatedURNtoURL(urnOrConfig, send_reports)": [ + "send_reports", + "urnOrConfig" + ], "Navigator/getAutoplayPolicy(context)": [ "context" ], @@ -35754,6 +40037,24 @@ "Navigator/getAutoplayPolicy(type)": [ "type" ], + "Navigator/getInterestGroupAdAuctionData(config)": [ + "config" + ], + "Navigator/joinAdInterestGroup(group)": [ + "group" + ], + "Navigator/leaveAdInterestGroup()": [ + "group" + ], + "Navigator/leaveAdInterestGroup(group)": [ + "group" + ], + "Navigator/queryHandwritingRecognizer(constraint)": [ + "constraint" + ], + "Navigator/runAdAuction(config)": [ + "config" + ], "NavigatorAutomationInformation": [ "webdriver" ], @@ -35798,9 +40099,27 @@ "NavigatorLocks": [ "locks" ], + "NavigatorLogin": [ + "setStatus(status)" + ], + "NavigatorLogin/setStatus(status)": [ + "status" + ], "NavigatorML": [ "ml" ], + "NavigatorManagedData": [ + "getAnnotatedAssetId()", + "getAnnotatedLocation()", + "getDirectoryId()", + "getHostname()", + "getManagedConfiguration(keys)", + "getSerialNumber()", + "onmanagedconfigurationchange" + ], + "NavigatorManagedData/getManagedConfiguration(keys)": [ + "keys" + ], "NavigatorNetworkInformation": [ "connection" ], @@ -35816,6 +40135,9 @@ "NavigatorStorage": [ "storage" ], + "NavigatorStorageBuckets": [ + "storageBuckets" + ], "NavigatorUA": [ "getHighEntropyValues(hints)", "toJSON()", @@ -36011,6 +40333,17 @@ "NonElementParentNode/getElementById(elementId)": [ "elementId" ], + "NotRestoredReasonDetails": [ + "reason" + ], + "NotRestoredReasons": [ + "children", + "id", + "name", + "reasons", + "src", + "url" + ], "Notification": [ "Notification(title)", "Notification(title, options)", @@ -36138,6 +40471,14 @@ "toString(radix)", "valueOf()" ], + "OS debug data type": [ + "os-source-delegated", + "os-trigger-delegated" + ], + "OS registration": [ + "debug reporting enabled", + "url" + ], "OTPCredential": [ "[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)", "[[type]]", @@ -36164,6 +40505,7 @@ "getOwnPropertyNames(O)", "getOwnPropertySymbols(O)", "getPrototypeOf(O)", + "groupBy(items, callback)", "hasOwn(O, P)", "hasOwnProperty(V)", "is(value1, value2)", @@ -36181,6 +40523,18 @@ "valueOf()", "values(O)" ], + "Object Environment Records": [ + "CreateImmutableBinding(N, S)", + "CreateMutableBinding(N, D)", + "DeleteBinding(N)", + "GetBindingValue(N, S)", + "HasBinding(N)", + "HasSuperBinding()", + "HasThisBinding()", + "InitializeBinding(N, V)", + "SetMutableBinding(N, V, S)", + "WithBaseObject()" + ], "OfflineAudioCompletionEvent": [ "OfflineAudioCompletionEvent(type, eventInitDict)", "constructor(type, eventInitDict)", @@ -36228,6 +40582,7 @@ "OfflineAudioContextOptions": [ "length", "numberOfChannels", + "renderSizeHint", "sampleRate" ], "OffscreenCanvas": [ @@ -36243,9 +40598,20 @@ "transferToImageBitmap()", "width" ], + "OpaqueProperty": [ + "\"opaque\"" + ], "OpenFilePickerOptions": [ "multiple" ], + "OperatingPointSelectorProperty": [ + "a1op" + ], + "OperationType": [ + "\"send-redemption-record\"", + "\"token-redemption\"", + "\"token-request\"" + ], "OptionalEffectTiming": [ "delay", "direction", @@ -36257,6 +40623,14 @@ "iterations", "playbackRate" ], + "OpusApplication": [ + "\"audio\"", + "\"lowdelay\"", + "\"voip\"", + "audio", + "lowdelay", + "voip" + ], "OpusBitstreamFormat": [ "\"ogg\"", "\"opus\"", @@ -36264,13 +40638,23 @@ "opus" ], "OpusEncoderConfig": [ + "application", "complexity", "format", "frameDuration", "packetlossperc", + "signal", "usedtx", "useinbandfec" ], + "OpusSignal": [ + "\"auto\"", + "\"music\"", + "\"voice\"", + "auto", + "music", + "voice" + ], "OrientationLockType": [ "any", "landscape", @@ -36301,15 +40685,6 @@ "portrait-primary", "portrait-secondary" ], - "Origin2D": [ - "x", - "y" - ], - "Origin3D": [ - "x", - "y", - "z" - ], "OscillatorNode": [ "OscillatorNode(context)", "OscillatorNode(context, options)", @@ -36388,6 +40763,24 @@ "deltaX", "deltaY" ], + "PADebugModeOptions": [ + "debugKey" + ], + "PAExtendedHistogramContribution": [ + "bucket", + "filteringId", + "value" + ], + "PAHistogramContribution": [ + "bucket", + "filteringId", + "value" + ], + "PASignalValue": [ + "baseValue", + "offset", + "scale" + ], "POST resource": [ "request body", "request content-type" @@ -36422,6 +40815,12 @@ "PageInputObject": [ "pageInputQuery" ], + "PageRevealEvent": [ + "viewTransition" + ], + "PageRevealEventInit": [ + "viewTransition" + ], "PageState": [ "hidden", "loaded", @@ -36429,6 +40828,14 @@ "shown", "unloaded" ], + "PageSwapEvent": [ + "activation", + "viewTransition" + ], + "PageSwapEventInit": [ + "activation", + "viewTransition" + ], "PageTransitionEvent": [ "persisted" ], @@ -36578,12 +40985,6 @@ "none", "odd" ], - "ParsedTextDirective": [ - "prefix", - "suffix", - "textend", - "textstart" - ], "PasswordCredential": [ "PasswordCredential(data)", "PasswordCredential(form)", @@ -36612,37 +41013,15 @@ "origin", "password" ], - "PatchRequest": [ - "accept_patch_format", - "axis_space_have", - "axis_space_needed", - "base_checksum", - "codepoints_have", - "codepoints_needed", - "features_have", - "features_needed", - "fragment_id", - "indices_have", - "indices_needed", - "ordering_checksum", - "original_font_checksum", - "protocol_version" - ], - "PatchResponse": [ - "codepoint_ordering", - "original_axis_space", - "original_features", - "original_font_checksum", - "patch", - "patch_format", - "protocol_version", - "replacement", - "subset_axis_space" - ], "Path2D": [ "Path2D(path)", "addPath(path, transform)" ], + "PayerErrors": [ + "email", + "name", + "phone" + ], "Payment Method": [ "additional data type" ], @@ -36671,7 +41050,8 @@ ], "PaymentDetailsBase": [ "displayItems", - "modifiers" + "modifiers", + "shippingOptions" ], "PaymentDetailsInit": [ "id", @@ -36684,7 +41064,10 @@ "total" ], "PaymentDetailsUpdate": [ + "error", + "payerErrors", "paymentMethodErrors", + "shippingAddressErrors", "total" ], "PaymentHandlerResponse": [ @@ -36721,10 +41104,19 @@ "data", "supportedMethods" ], + "PaymentOptions": [ + "requestBillingAddress", + "requestPayerEmail", + "requestPayerName", + "requestPayerPhone", + "requestShipping", + "shippingType" + ], "PaymentRequest": [ "[[acceptPromise]]", "[[details]]", "[[handler]]", + "[[options]]", "[[response]]", "[[serializedMethodData]]", "[[serializedModifierData]]", @@ -36735,10 +41127,17 @@ "closed", "constructor()", "constructor(methodData, details)", + "constructor(methodData, details, options)", "created", "id", "interactive", + "isSecurePaymentConfirmationAvailable()", "onpaymentmethodchange", + "onshippingaddresschange", + "onshippingoptionchange", + "shippingAddress", + "shippingOption", + "shippingType", "show()", "show(detailsPromise)", "state" @@ -36806,19 +41205,43 @@ "complete(result, details)", "details", "methodName", + "onpayerdetailchange", + "payerEmail", + "payerName", + "payerPhone", "requestId", "retry()", - "retry(errorFields)" + "retry(errorFields)", + "shippingAddress", + "shippingOption" + ], + "PaymentShippingOption": [ + "amount", + "id", + "label", + "selected" + ], + "PaymentShippingType": [ + "delivery", + "pickup", + "shipping" ], "PaymentValidationErrors": [ "error", - "paymentMethod" + "payer", + "paymentMethod", + "shippingAddress" ], "Pbkdf2Params": [ "hash", "iterations", "salt" ], + "Per table brotli patch": [ + "compatibilityid", + "format", + "patches" + ], "Performance": [ "clearMarks()", "clearMarks(markName)", @@ -36833,7 +41256,6 @@ "getEntriesByType()", "getEntriesByType(type)", "interactionCount", - "interactionCounts", "mark()", "mark(markName)", "mark(markName, markOptions)", @@ -36864,10 +41286,11 @@ "url" ], "PerformanceEntry": [ - "attribution", "duration", "entryType", + "id", "name", + "navigationId", "startTime", "toJSON()" ], @@ -36881,8 +41304,25 @@ "target", "toJSON()" ], + "PerformanceLongAnimationFrameTiming": [ + "blockingDuration", + "duration", + "entryType", + "firstUIEventTimestamp", + "name", + "renderStart", + "scripts", + "startTime", + "styleAndLayoutStart", + "timing info", + "toJSON()" + ], "PerformanceLongTaskTiming": [ "attribution", + "duration", + "entryType", + "name", + "startTime", "toJSON()" ], "PerformanceMark": [ @@ -36915,12 +41355,14 @@ ], "PerformanceNavigationTiming": [ "activationStart", + "criticalCHRestart", "domComplete", "domContentLoadedEventEnd", "domContentLoadedEventStart", "domInteractive", "loadEventEnd", "loadEventStart", + "notRestoredReasons", "redirectCount", "service worker timing", "toJSON()", @@ -36957,11 +41399,14 @@ "PerformanceResourceTiming": [ "connectEnd", "connectStart", + "contentType", "decodedBodySize", + "deliveryType", "domainLookupEnd", "domainLookupStart", "encodedBodySize", "fetchStart", + "firstInterimResponseStart", "initiatorType", "nextHopProtocol", "redirectEnd", @@ -36977,6 +41422,25 @@ "transferSize", "workerStart" ], + "PerformanceScriptTiming": [ + "duration", + "entryType", + "executionStart", + "forcedStyleAndLayoutDuration", + "invoker", + "invokerType", + "name", + "pauseDuration", + "sourceCharPosition", + "sourceFunctionName", + "sourceURL", + "startTime", + "timing info", + "toJSON()", + "window", + "window attribution", + "windowAttribution" + ], "PerformanceServerTiming": [ "description", "duration", @@ -37082,13 +41546,15 @@ "stronger than" ], "PermissionName": [ + "\"bluetooth-le-scan\"", "\"clipboard-write\"", "\"file-system\"", "\"usb\"" ], "PermissionPolicy": [ "\"local-fonts\"", - "\"window-management\"" + "\"window-management\"", + "attribution-reporting" ], "PermissionSetParameters": [ "descriptor", @@ -37122,7 +41588,9 @@ "allowsFeature(feature)", "allowsFeature(feature, origin)", "features()", - "getAllowlistForFeature(feature)" + "getAllowlistForFeature(feature)", + "shared-storage", + "shared-storage-select-url" ], "PermissionsPolicy/allowsFeature(feature)": [ "feature", @@ -37144,7 +41612,8 @@ "lineNumber", "linenumber", "sourceFile", - "sourcefile" + "sourcefile", + "toJSON()" ], "PhotoCapabilities": [ "fillLightMode", @@ -37187,8 +41656,22 @@ "PlaybackDirection": [ "\"alternate\"", "\"alternate-reverse\"", + "\"auto\"", + "\"backwards\"", + "\"both\"", + "\"forwards\"", + "\"none\"", "\"normal\"", - "\"reverse\"" + "\"reverse\"", + "alternate", + "alternate-reverse", + "auto", + "backwards", + "both", + "forwards", + "none", + "normal", + "reverse" ], "Plugin": [ "description", @@ -37218,6 +41701,7 @@ "getPredictedEvents()", "height", "isPrimary", + "persistentDeviceId", "pointerId", "pointerType", "pressure", @@ -37233,6 +41717,7 @@ "coalescedEvents", "height", "isPrimary", + "persistentDeviceId", "pointerId", "pointerType", "predictedEvents", @@ -37243,7 +41728,15 @@ "twist", "width" ], + "PointerLockOptions": [ + "unadjustedMovement" + ], "PopStateEvent": [ + "hasUAVisualTransition", + "state" + ], + "PopStateEventInit": [ + "hasUAVisualTransition", "state" ], "PortalActivateEvent": [ @@ -37315,6 +41808,26 @@ "display-p3", "srgb" ], + "PreferenceManager": [ + "colorScheme", + "contrast", + "reducedData", + "reducedMotion", + "reducedTransparency" + ], + "PreferenceObject": [ + "change", + "clearOverride()", + "onchange", + "override", + "preferenceobject update steps", + "requestOverride(value)", + "validValues", + "value" + ], + "PreferenceObject/requestOverride(value)": [ + "value" + ], "PremultiplyAlpha": [ "default", "none", @@ -37400,43 +41913,43 @@ "\"inline\"", "\"unspecified\"" ], - "PressureFactor": [ - "power-supply", - "thermal" - ], "PressureObserver": [ + "[[AfterPenaltyRecordMap]]", "[[Callback]]", + "[[ChangesCountMap]]", "[[LastRecordMap]]", + "[[MaxChangesThreshold]]", + "[[ObservationWindow]]", + "[[PenaltyDuration]]", "[[PendingObservePromises]]", "[[QueuedRecords]]", - "[[SampleRate]]", + "[[SampleIntervalMap]]", "constructor()", "constructor(callback)", - "constructor(callback, options)", "disconnect()", + "knownSources", "observe()", "observe(source)", - "supportedSources", + "observe(source, options)", "takeRecords()", "unobserve()", "unobserve(source)" ], "PressureObserverOptions": [ - "sampleRate" + "sampleInterval" ], "PressureRecord": [ - "[[Factors]]", "[[Source]]", "[[State]]", "[[Time]]", - "factors", "source", "state", "time", "toJSON()" ], "PressureSource": [ - "cpu" + "cpu", + "thermals" ], "PressureState": [ "critical", @@ -37444,6 +41957,40 @@ "nominal", "serious" ], + "PreviousWin": [ + "adJSON", + "timeDelta" + ], + "PrivateAggregation": [ + "allowed to use", + "contributeToHistogram(contribution)", + "contributeToHistogramOnEvent(event, contribution)", + "enableDebugMode()", + "enableDebugMode(options)", + "scoping details" + ], + "PrivateAggregation/contributeToHistogram(contribution)": [ + "contribution" + ], + "PrivateAggregation/contributeToHistogramOnEvent(event, contribution)": [ + "contribution", + "event" + ], + "PrivateAggregation/enableDebugMode()": [ + "options" + ], + "PrivateAggregation/enableDebugMode(options)": [ + "options" + ], + "PrivateNetworkAccessPermissionDescriptor": [ + "id" + ], + "PrivateToken": [ + "issuers", + "operation", + "refreshPolicy", + "version" + ], "ProcessingInstruction": [ "substring data", "target" @@ -37517,10 +42064,13 @@ "any(iterable)", "catch(onRejected)", "finally(onFinally)", + "invoker name when created", "race(iterable)", "reject(r)", "resolve(x)", - "then(onFulfilled, onRejected)" + "script url when created", + "then(onFulfilled, onRejected)", + "withResolvers()" ], "PromiseRejectionEvent": [ "promise", @@ -37535,10 +42085,17 @@ "name", "syntax" ], - "ProximityReadingValues": [ - "distance", - "max", - "near" + "ProtectedAudience": [ + "queryFeatureSupport(feature)" + ], + "ProtectedAudience/queryFeatureSupport(feature)": [ + "feature" + ], + "ProtectedAudiencePrivateAggregationConfig": [ + "aggregationCoordinatorOrigin" + ], + "ProtocolXError": [ + "error code" ], "ProximitySensor": [ "ProximitySensor()", @@ -37576,8 +42133,10 @@ "[[preventSilentAccess]](credential, sameOriginWithAncestors)", "[[type]]", "authenticatorAttachment", + "getClientCapabilities()", "getClientExtensionResults()", "isConditionalMediationAvailable()", + "isPasskeyPlatformAuthenticatorAvailable()", "isUserVerifyingPlatformAuthenticatorAvailable()", "issuing a credential request to an authenticator", "parseCreationOptionsFromJSON(options)", @@ -37613,6 +42172,7 @@ "challenge", "excludeCredentials", "extensions", + "hints", "pubKeyCredParams", "rp", "timeout", @@ -37620,10 +42180,12 @@ ], "PublicKeyCredentialCreationOptionsJSON": [ "attestation", + "attestationFormats", "authenticatorSelection", "challenge", "excludeCredentials", "extensions", + "hints", "pubKeyCredParams", "rp", "timeout", @@ -37642,6 +42204,14 @@ "PublicKeyCredentialEntity": [ "name" ], + "PublicKeyCredentialHints": [ + "\"client-device\"", + "\"hybrid\"", + "\"security-key\"", + "client-device", + "hybrid", + "security-key" + ], "PublicKeyCredentialParameters": [ "alg", "type" @@ -37652,14 +42222,18 @@ "attestationFormats", "challenge", "extensions", + "hints", "rpId", "timeout", "userVerification" ], "PublicKeyCredentialRequestOptionsJSON": [ "allowCredentials", + "attestation", + "attestationFormats", "challenge", "extensions", + "hints", "rpId", "timeout", "userVerification" @@ -37708,6 +42282,7 @@ "PushMessageData": [ "arrayBuffer()", "blob()", + "bytes()", "json()", "text()" ], @@ -37771,13 +42346,9 @@ ], "RTCAudioSourceStats": [ "audioLevel", - "droppedSamplesDuration", - "droppedSamplesEvents", "echoReturnLoss", "echoReturnLossEnhancement", "totalAudioEnergy", - "totalCaptureDelay", - "totalSamplesCaptured", "totalSamplesDuration" ], "RTCBundlePolicy": [ @@ -37804,7 +42375,6 @@ "RTCCodecStats": [ "channels", "clockRate", - "implementation", "mimeType", "payloadType", "sdpFmtpLine", @@ -37922,7 +42492,6 @@ "state" ], "RTCDegradationPreference": [ - "RTCDegradationPreference", "balanced", "maintain-framerate", "maintain-resolution" @@ -37955,40 +42524,84 @@ "new" ], "RTCEncodedAudioFrame": [ + "RTCEncodedAudioFrame(originalFrame)", + "RTCEncodedAudioFrame(originalFrame, options)", + "constructor()", + "constructor(originalFrame)", + "constructor(originalFrame, options)", "data", - "getMetadata()", - "timestamp" + "getMetadata()" + ], + "RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame)": [ + "options", + "originalFrame" + ], + "RTCEncodedAudioFrame/RTCEncodedAudioFrame(originalFrame, options)": [ + "options", + "originalFrame" + ], + "RTCEncodedAudioFrame/constructor(originalFrame)": [ + "options", + "originalFrame" + ], + "RTCEncodedAudioFrame/constructor(originalFrame, options)": [ + "options", + "originalFrame" ], "RTCEncodedAudioFrameMetadata": [ "contributingSources", - "contributingsources", + "mimeType", "payloadType", - "payloadtype", + "rtpTimestamp", "sequenceNumber", - "sequencenumber", - "synchronizationSource", - "synchronizationsource" + "synchronizationSource" + ], + "RTCEncodedAudioFrameOptions": [ + "metadata" ], "RTCEncodedVideoFrame": [ + "RTCEncodedVideoFrame(originalFrame)", + "RTCEncodedVideoFrame(originalFrame, options)", + "constructor()", + "constructor(originalFrame)", + "constructor(originalFrame, options)", "data", "getMetadata()", - "timestamp", "type" ], + "RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame)": [ + "options", + "originalFrame" + ], + "RTCEncodedVideoFrame/RTCEncodedVideoFrame(originalFrame, options)": [ + "options", + "originalFrame" + ], + "RTCEncodedVideoFrame/constructor(originalFrame)": [ + "options", + "originalFrame" + ], + "RTCEncodedVideoFrame/constructor(originalFrame, options)": [ + "options", + "originalFrame" + ], "RTCEncodedVideoFrameMetadata": [ "contributingSources", - "contributingsources", "dependencies", "frameId", "height", + "mimeType", "payloadType", - "payloadtype", + "rtpTimestamp", "spatialIndex", "synchronizationSource", - "synchronizationsource", "temporalIndex", + "timestamp", "width" ], + "RTCEncodedVideoFrameOptions": [ + "metadata" + ], "RTCEncodedVideoFrameType": [ "\"delta\"", "\"empty\"", @@ -38071,6 +42684,8 @@ "usernameFragment" ], "RTCIceCandidatePair": [ + "[[Local]]", + "[[Remote]]", "local", "remote" ], @@ -38082,7 +42697,6 @@ "bytesSent", "consentRequestsSent", "currentRoundTripTime", - "currentRtt", "lastPacketReceivedTimestamp", "lastPacketSentTimestamp", "localCandidateId", @@ -38090,7 +42704,6 @@ "packetsDiscardedOnSend", "packetsReceived", "packetsSent", - "priority", "remoteCandidateId", "requestsReceived", "requestsSent", @@ -38098,15 +42711,12 @@ "responsesSent", "state", "totalRoundTripTime", - "totalRtt", "transportId" ], "RTCIceCandidateStats": [ "address", "candidateType", - "deleted", "foundation", - "isRemote", "port", "priority", "protocol", @@ -38137,9 +42747,6 @@ "failed", "new" ], - "RTCIceCredentialType": [ - "password" - ], "RTCIceGatherOptions": [ "gatherPolicy", "iceServers" @@ -38170,7 +42777,6 @@ ], "RTCIceServer": [ "credential", - "credentialType", "urls", "username" ], @@ -38191,6 +42797,7 @@ "[[SelectedCandidatePair]]", "addRemoteCandidate()", "addRemoteCandidate(remoteCandidate)", + "change the selected candidate pair and state", "component", "constructor()", "gather()", @@ -38272,10 +42879,11 @@ "concealmentEvents", "decoderImplementation", "estimatedPlayoutTimestamp", + "fecBytesReceived", "fecPacketsDiscarded", "fecPacketsReceived", + "fecSsrc", "firCount", - "fractionLost", "frameHeight", "frameWidth", "framesAssembledFromMultiplePackets", @@ -38292,7 +42900,6 @@ "jitterBufferMinimumDelay", "jitterBufferTargetDelay", "keyFramesDecoded", - "kind", "lastPacketReceivedTimestamp", "mid", "nackCount", @@ -38304,6 +42911,9 @@ "qpSum", "remoteId", "removedSamplesForAcceleration", + "retransmittedBytesReceived", + "retransmittedPacketsReceived", + "rtxSsrc", "silentConcealedSamples", "totalAssemblyTime", "totalAudioEnergy", @@ -38315,7 +42925,6 @@ "totalSamplesDuration", "totalSamplesReceived", "totalSquaredInterFrameDelay", - "trackId", "trackIdentifier" ], "RTCLocalSessionDescriptionInit": [ @@ -38326,42 +42935,6 @@ "kind", "trackIdentifier" ], - "RTCMediaStreamStats": [ - "streamIdentifier", - "trackIds" - ], - "RTCMediaStreamTrackStats": [ - "audioLevel", - "concealedSamples", - "concealmentEvents", - "echoReturnLoss", - "echoReturnLossEnhancement", - "ended", - "estimatedPlayoutTimestamp", - "frameHeight", - "frameWidth", - "framesCaptured", - "framesDecoded", - "framesDropped", - "framesPerSecond", - "framesReceived", - "framesSent", - "hugeFramesSent", - "insertedSamplesForDeceleration", - "jitterBufferDelay", - "jitterBufferEmittedCount", - "keyFramesReceived", - "keyFramesSent", - "kind", - "priority", - "remoteSource", - "removedSamplesForAcceleration", - "silentConcealedSamples", - "totalAudioEnergy", - "totalSamplesDuration", - "totalSamplesReceived", - "trackIdentifier" - ], "RTCOfferOptions": [ "iceRestart", "offerToReceiveAudio", @@ -38392,19 +42965,23 @@ "retransmittedBytesSent", "retransmittedPacketsSent", "rid", + "rtxSsrc", "scalabilityMode", "targetBitrate", "totalEncodeTime", "totalEncodedBytesTarget", - "totalPacketSendDelay", - "trackId" + "totalPacketSendDelay" ], "RTCPeerConnection": [ "[[Configuration]]", + "[[ConnectionState]]", "[[CurrentLocalDescription]]", "[[CurrentRemoteDescription]]", + "[[DataChannels]]", "[[DocumentOrigin]]", "[[EarlyCandidates]]", + "[[IceConnectionState]]", + "[[IceGatheringState]]", "[[IsClosed]]", "[[LastCreatedAnswer]]", "[[LastCreatedOffer]]", @@ -38414,6 +42991,7 @@ "[[PendingLocalDescription]]", "[[PendingRemoteDescription]]", "[[SctpTransport]]", + "[[SignalingState]]", "[[UpdateNegotiationNeededFlagOnEmptyChain]]", "addIceCandidate!overload-1()", "addIceCandidate!overload-1(candidate, successCallback, failureCallback)", @@ -38425,6 +43003,7 @@ "addTransceiver()", "addTransceiver(trackOrKind)", "addTransceiver(trackOrKind, init)", + "addtransceiver sendencodings validation steps", "canTrickleIceCandidates", "close()", "connectionState", @@ -38585,6 +43164,12 @@ "codecs", "headerExtensions" ], + "RTCRtpCodec": [ + "channels", + "clockRate", + "mimeType", + "sdpFmtpLine" + ], "RTCRtpCodecCapability": [ "channels", "clockRate", @@ -38609,6 +43194,7 @@ ], "RTCRtpEncodingParameters": [ "active", + "codec", "maxBitrate", "maxFramerate", "networkPriority", @@ -38631,6 +43217,7 @@ ], "RTCRtpReceiver": [ "[[AssociatedRemoteMediaStreams]]", + "[[JitterBufferTarget]]", "[[LastStableStateAssociatedRemoteMediaStreams]]", "[[LastStableStateReceiveCodecs]]", "[[LastStableStateReceiverTransport]]", @@ -38643,6 +43230,7 @@ "getParameters()", "getStats()", "getSynchronizationSources()", + "jitterBufferTarget", "track", "transform", "transport" @@ -38653,7 +43241,13 @@ "RTCRtpScriptTransform(worker, options, transfer)", "constructor(worker)", "constructor(worker, options)", - "constructor(worker, options, transfer)" + "constructor(worker, options, transfer)", + "generateKeyFrame(rid)", + "onbandwidthestimate", + "onkeyframerequest", + "readable", + "sendKeyFrameRequest()", + "writable" ], "RTCRtpScriptTransform/RTCRtpScriptTransform(worker)": [ "options", @@ -38688,6 +43282,7 @@ "RTCRtpScriptTransformer": [ "generateKeyFrame()", "generateKeyFrame(rid)", + "onkeyframerequest", "options", "readable", "sendKeyFrameRequest()", @@ -38721,12 +43316,15 @@ "getCapabilities(kind)", "getParameters()", "getStats()", + "list of implemented send codecs", "replaceTrack()", "replaceTrack(withTrack)", "setParameters()", "setParameters(parameters)", + "setParameters(parameters, setParameterOptions)", "setStreams()", "setStreams(streams)", + "setparameters validation steps", "track", "transform", "transport" @@ -38740,7 +43338,6 @@ "RTCRtpStreamStats": [ "codecId", "kind", - "mediaType", "ssrc", "transportId" ], @@ -38763,7 +43360,8 @@ "sender", "setCodecPreferences()", "setCodecPreferences(codecs)", - "stop()" + "stop()", + "transceiver kind" ], "RTCRtpTransceiverDirection": [ "inactive", @@ -38777,6 +43375,9 @@ "sendEncodings", "streams" ], + "RTCRtpTransform": [ + "association steps" + ], "RTCSctpTransport": [ "[[MaxChannels]]", "[[MaxMessageSize]]", @@ -38848,8 +43449,6 @@ "remote-candidate", "remote-inbound-rtp", "remote-outbound-rtp", - "stream", - "track", "transport" ], "RTCTrackEvent": [ @@ -38910,8 +43509,7 @@ "compareBoundaryPoints(how, sourceRange)", "comparePoint(node, offset)", "constructor()", - "createContextualFragment()", - "createContextualFragment(fragment)", + "createContextualFragment(string)", "deleteContents()", "detach()", "extractContents()", @@ -39082,6 +43680,7 @@ "enqueue", "error", "errored", + "from(asyncIterable)", "get a reader", "getReader()", "getReader(options)", @@ -39101,6 +43700,7 @@ "piped to", "piping through", "piping to", + "pull from bytes", "readable", "set up", "set up with byte reading support", @@ -39142,6 +43742,9 @@ "strategy", "underlyingSource" ], + "ReadableStream/from(asyncIterable)": [ + "asyncIterable" + ], "ReadableStream/getReader()": [ "options" ], @@ -39204,6 +43807,7 @@ "[[readintorequests]]", "constructor(stream)", "read(view)", + "read(view, options)", "releaseLock()" ], "ReadableStreamBYOBReader/ReadableStreamBYOBReader(stream)": [ @@ -39213,8 +43817,16 @@ "stream" ], "ReadableStreamBYOBReader/read(view)": [ + "options", "view" ], + "ReadableStreamBYOBReader/read(view, options)": [ + "options", + "view" + ], + "ReadableStreamBYOBReaderReadOptions": [ + "min" + ], "ReadableStreamBYOBRequest": [ "[[controller]]", "[[view]]", @@ -39325,6 +43937,17 @@ "ended", "open" ], + "RealTimeContribution": [ + "bucket", + "latencyThreshold", + "priorityWeight" + ], + "RealTimeReporting": [ + "contributeToHistogram(contribution)" + ], + "RealTimeReporting/contributeToHistogram(contribution)": [ + "contribution" + ], "RecordingState": [ "\"inactive\"", "\"paused\"", @@ -39376,6 +43999,10 @@ "set(target, propertyKey, V, receiver)", "setPrototypeOf(target, proto)" ], + "RefreshPolicy": [ + "\"none\"", + "\"refresh\"" + ], "RegExp": [ "RegExp(pattern, flags)", "compile(pattern, flags)", @@ -39390,7 +44017,23 @@ "sticky", "test(S)", "toString()", - "unicode" + "unicode", + "unicodeSets" + ], + "RegExp.prototype [ %Symbol.match% ] ( string )": [ + "RegExp.prototype %Symbol.match% (string)" + ], + "RegExp.prototype [ %Symbol.matchAll% ] ( string )": [ + "RegExp.prototype %Symbol.matchAll% (string)" + ], + "RegExp.prototype [ %Symbol.replace% ] ( string, replaceValue )": [ + "RegExp.prototype %Symbol.replace% (string, replaceValue)" + ], + "RegExp.prototype [ %Symbol.search% ] ( string )": [ + "RegExp.prototype %Symbol.search% (string)" + ], + "RegExp.prototype [ %Symbol.split% ] ( string, limit )": [ + "RegExp.prototype %Symbol.split% (string, limit)" ], "Region": [ "getRegionFlowRanges()", @@ -39463,6 +44106,8 @@ ], "RenderState": [ "[[blendConstant]]", + "[[colorAttachments]]", + "[[depthStencilAttachment]]", "[[occlusionQueryIndex]]", "[[scissorRect]]", "[[stencilReference]]", @@ -39477,6 +44122,34 @@ "ReportBody": [ "toJSON()" ], + "ReportResultBrowserSignals": [ + "dataVersion", + "desirability", + "modifiedBid", + "topLevelSellerSignals" + ], + "ReportWinBrowserSignals": [ + "adCost", + "buyerReportingId", + "dataVersion", + "interestGroupName", + "kAnonStatus", + "madeHighestScoringOtherBid", + "modelingSignals", + "seller" + ], + "ReportingBrowserSignals": [ + "bid", + "bidCurrency", + "buyerAndSellerReportingId", + "componentSeller", + "highestScoringOtherBid", + "highestScoringOtherBidCurrency", + "interestGroupOwner", + "renderURL", + "topLevelSeller", + "topWindowHostname" + ], "ReportingObserver": [ "ReportingObserver(callback)", "ReportingObserver(callback, options)", @@ -39537,6 +44210,7 @@ "referrerPolicy", "request", "signal", + "targetAddressSpace", "url" ], "Request/Request(input)": [ @@ -39578,6 +44252,7 @@ "\"frame\"", "\"iframe\"", "\"image\"", + "\"json\"", "\"manifest\"", "\"object\"", "\"paintworklet\"", @@ -39592,6 +44267,7 @@ ], "RequestDeviceOptions": [ "acceptAllDevices", + "exclusionFilters", "filters", "optionalManufacturerData", "optionalServices" @@ -39600,7 +44276,10 @@ "\"half\"" ], "RequestInit": [ + "adAuctionHeaders", + "attributionReporting", "body", + "browsingTopics", "cache", "credentials", "duplex", @@ -39610,10 +44289,13 @@ "method", "mode", "priority", + "privateToken", "redirect", "referrer", "referrerPolicy", + "sharedStorageWritable", "signal", + "targetAddressSpace", "window" ], "RequestMode": [ @@ -39796,6 +44478,33 @@ "\"opaque\"", "\"opaqueredirect\"" ], + "RestrictionTarget": [ + "[[Element]]", + "fromElement()", + "fromElement(element)" + ], + "RouterCondition": [ + "not", + "or", + "requestDestination", + "requestMethod", + "requestMode", + "runningStatus", + "urlPattern" + ], + "RouterRule": [ + "condition", + "source" + ], + "RouterSourceDict": [ + "cacheName" + ], + "RouterSourceEnum": [ + "\"cache\"", + "\"fetch-event\"", + "\"network\"", + "\"race-network-and-fetch-handler\"" + ], "RsaHashedImportParams": [ "hash" ], @@ -39824,6 +44533,14 @@ "RsaPssParams": [ "saltLength" ], + "RunFunctionForSharedStorageSelectURLOperation": [ + "data", + "urls" + ], + "RunningStatus": [ + "\"not-running\"", + "\"running\"" + ], "SFrameTransform": [ "SFrameTransform()", "SFrameTransform(options)", @@ -40458,15 +45175,20 @@ "SVG_ZOOMANDPAN_UNKNOWN", "zoomAndPan" ], + "SameSiteCookiesType": [ + "\"all\"", + "\"none\"" + ], "Sanitizer": [ "Sanitizer()", "Sanitizer(config)", + "constructor", "constructor()", "constructor(config)", - "getConfiguration()", - "getDefaultConfiguration()", - "sanitize(input)", - "sanitizeFor(element, input)" + "get", + "get()", + "getUnsafe()", + "getunsafe" ], "Sanitizer/Sanitizer()": [ "config" @@ -40480,32 +45202,47 @@ "Sanitizer/constructor(config)": [ "config" ], - "Sanitizer/sanitize(input)": [ - "input" - ], - "Sanitizer/sanitizeFor(element, input)": [ - "element", - "input" + "SanitizerAttributeNamespace": [ + "name", + "namespace" ], "SanitizerConfig": [ - "allowAttributes", - "allowComments", - "allowCustomElements", - "allowElements", - "allowUnknownMarkup", - "blockElements", - "dropAttributes", - "dropElements" + "attributes", + "canonical", + "comments", + "contains", + "dataAttributes", + "elements", + "get a sanitizer config from options", + "removeAttributes", + "removeElements", + "replaceWithChildrenElements", + "valid" + ], + "SanitizerElementNamespace": [ + "name", + "namespace" + ], + "SanitizerElementNamespaceWithAttributes": [ + "attributes", + "removeAttributes" + ], + "SanitizerNameList": [ + "canonical", + "valid" + ], + "SanitizerNameWithAttributesList": [ + "canonical" ], "SaveFilePickerOptions": [ "suggestedName" ], "Scheduler": [ "dynamic priority task queue map", - "next enqueue order", "postTask(callback)", "postTask(callback, options)", - "static priority task queue map" + "static priority task queue map", + "yield()" ], "Scheduler/postTask(callback)": [ "callback", @@ -40524,6 +45261,25 @@ "isInputPending()", "isInputPending(isInputPendingOptions)" ], + "ScoreAdOutput": [ + "allowComponentAuction", + "bid", + "bidCurrency", + "desirability", + "incomingBidInSellerCurrency" + ], + "ScoringBrowserSignals": [ + "adComponents", + "bidCurrency", + "biddingDurationMsec", + "crossOriginDataVersion", + "dataVersion", + "forDebuggingOnlyInCooldownOrLockout", + "interestGroupOwner", + "renderSize", + "renderURL", + "topWindowHostname" + ], "Screen": [ "active orientation lock", "availHeight", @@ -40575,11 +45331,26 @@ "type", "unlock()" ], + "ScriptInvokerType": [ + "\"classic-script\"", + "\"event-listener\"", + "\"module-script\"", + "\"reject-promise\"", + "\"resolve-promise\"", + "\"user-callback\"" + ], "ScriptProcessorNode": [ "audioprocess", "bufferSize", "onaudioprocess" ], + "ScriptWindowAttribution": [ + "\"ancestor\"", + "\"descendant\"", + "\"other\"", + "\"same-page\"", + "\"self\"" + ], "ScriptingPolicyReportBody": [ "colno", "lineno", @@ -40596,9 +45367,9 @@ ], "ScrollAxis": [ "\"block\"", - "\"horizontal\"", "\"inline\"", - "\"vertical\"" + "\"x\"", + "\"y\"" ], "ScrollBehavior": [ "\"auto\"", @@ -40861,6 +45632,7 @@ ], "SerialPort": [ "[[bufferSize]]", + "[[connected]]", "[[pendingClosePromise]]", "[[readFatal]]", "[[readable]]", @@ -40868,6 +45640,7 @@ "[[writable]]", "[[writeFatal]]", "close()", + "connected", "forget()", "getInfo()", "getSignals()", @@ -40881,14 +45654,17 @@ "writable" ], "SerialPortFilter": [ + "bluetoothServiceClassId", "usbProductId", "usbVendorId" ], "SerialPortInfo": [ + "bluetoothServiceClassId", "usbProductId", "usbVendorId" ], "SerialPortRequestOptions": [ + "allowedBluetoothServiceClassIds", "filters" ], "ServiceEventHandlers": [ @@ -40988,6 +45764,7 @@ "onpush", "onpushsubscriptionchange", "onsync", + "race response map", "registration", "service worker", "serviceWorker", @@ -41055,13 +45832,23 @@ "add(value)", "clear()", "delete(value)", + "difference(other)", "entries()", - "forEach(callbackfn, thisArg)", + "forEach(callback, thisArg)", "has(value)", + "intersection(other)", + "isDisjointFrom(other)", + "isSubsetOf(other)", + "isSupersetOf(other)", "keys()", "size", + "symmetricDifference(other)", + "union(other)", "values()" ], + "Set.prototype [ %Symbol.iterator% ] ( )": [ + "Set.prototype %Symbol.iterator% ()" + ], "SetHTMLOptions": [ "sanitizer" ], @@ -41070,17 +45857,44 @@ ], "ShadowRoot": [ "available to element internals", + "clonable", + "declarative", "delegates focus", "delegatesFocus", + "getHTML(options)", "host", + "innerHTML", "mode", "onslotchange", + "serializable", + "setHTML(html)", + "setHTML(html, options)", + "setHTMLUnsafe(html)", + "setHTMLUnsafe(html, options)", "slot assignment", "slotAssignment" ], + "ShadowRoot/setHTML(html)": [ + "html", + "options" + ], + "ShadowRoot/setHTML(html, options)": [ + "html", + "options" + ], + "ShadowRoot/setHTMLUnsafe(html)": [ + "html", + "options" + ], + "ShadowRoot/setHTMLUnsafe(html, options)": [ + "html", + "options" + ], "ShadowRootInit": [ + "clonable", "delegatesFocus", "mode", + "serializable", "slotAssignment" ], "ShadowRootMode": [ @@ -41105,9 +45919,153 @@ "url" ], "SharedArrayBuffer": [ - "SharedArrayBuffer(length)", + "SharedArrayBuffer(length, options)", "byteLength", - "slice(start, end)" + "create", + "grow(newLength)", + "growable", + "maxByteLength", + "slice(start, end)", + "write" + ], + "SharedArrayBuffer/write": [ + "startingoffset" + ], + "SharedStorage": [ + "append(key, value)", + "clear()", + "createWorklet(moduleURL)", + "createWorklet(moduleURL, options)", + "data partition origin", + "delete(key)", + "get(key)", + "length()", + "remainingBudget()", + "run(name)", + "run(name, options)", + "selectURL(name, urls)", + "selectURL(name, urls, options)", + "set(key, value)", + "set(key, value, options)", + "worklet" + ], + "SharedStorage/append(key, value)": [ + "key", + "value" + ], + "SharedStorage/createWorklet(moduleURL)": [ + "moduleURL", + "options" + ], + "SharedStorage/createWorklet(moduleURL, options)": [ + "moduleURL", + "options" + ], + "SharedStorage/delete(key)": [ + "key" + ], + "SharedStorage/get(key)": [ + "key" + ], + "SharedStorage/run(name)": [ + "name", + "options" + ], + "SharedStorage/run(name, options)": [ + "name", + "options" + ], + "SharedStorage/selectURL(name, urls)": [ + "name", + "options", + "urls" + ], + "SharedStorage/selectURL(name, urls, options)": [ + "name", + "options", + "urls" + ], + "SharedStorage/set(key, value)": [ + "key", + "options", + "value" + ], + "SharedStorage/set(key, value, options)": [ + "key", + "options", + "value" + ], + "SharedStorageDataOrigin": [ + "\"context-origin\"", + "\"script-origin\"" + ], + "SharedStorageIterator": [ + "asynchronous iterator initialization steps", + "error", + "get the next iteration result", + "pending entries" + ], + "SharedStoragePrivateAggregationConfig": [ + "aggregationCoordinatorOrigin", + "contextId", + "filteringIdMaxBytes" + ], + "SharedStorageRunOperationMethodOptions": [ + "data", + "keepAlive", + "privateAggregationConfig", + "resolveToConfig" + ], + "SharedStorageSetMethodOptions": [ + "ignoreIfPresent" + ], + "SharedStorageUrlWithMetadata": [ + "reportingMetadata", + "url" + ], + "SharedStorageWorklet": [ + "addmodule initiated", + "data origin", + "has cross-origin data origin", + "run(name)", + "run(name, options)", + "selectURL(name, urls)", + "selectURL(name, urls, options)" + ], + "SharedStorageWorklet/run(name)": [ + "name", + "options" + ], + "SharedStorageWorklet/run(name, options)": [ + "name", + "options" + ], + "SharedStorageWorklet/selectURL(name, urls)": [ + "name", + "options", + "urls" + ], + "SharedStorageWorklet/selectURL(name, urls, options)": [ + "name", + "options", + "urls" + ], + "SharedStorageWorkletGlobalScope": [ + "addmodule success", + "check whether addmodule is finished", + "operation map", + "outside settings", + "privateAggregation", + "register(name, operationCtor)", + "sharedStorage", + "sharedstorage getter" + ], + "SharedStorageWorkletGlobalScope/register(name, operationCtor)": [ + "name", + "operationCtor" + ], + "SharedStorageWorkletOptions": [ + "dataOrigin" ], "SharedWorker": [ "SharedWorker(scriptURL, options)", @@ -41121,7 +46079,11 @@ "constructor url", "credentials", "name", - "onconnect" + "onconnect", + "samesitecookies" + ], + "SharedWorkerOptions": [ + "sameSiteCookies" ], "SlotAssignmentMode": [ "\"manual\"", @@ -41130,6 +46092,200 @@ "Slottable": [ "assignedSlot" ], + "SmartCardAccessMode": [ + "corresponding", + "direct", + "exclusive", + "shared" + ], + "SmartCardConnectOptions": [ + "preferredProtocols" + ], + "SmartCardConnectResult": [ + "activeProtocol", + "connection" + ], + "SmartCardConnection": [ + "[[activeProtocol]]", + "[[comm]]", + "[[context]]", + "[[transactionState]]", + "control()", + "control(controlCode, data)", + "disconnect()", + "disconnect(disposition)", + "getAttribute()", + "getAttribute(tag)", + "setAttribute()", + "setAttribute(tag, value)", + "startTransaction()", + "startTransaction(transaction)", + "startTransaction(transaction, options)", + "status()", + "transmit()", + "transmit(sendBuffer)", + "transmit(sendBuffer, options)" + ], + "SmartCardConnectionState": [ + "absent", + "corresponding", + "negotiable", + "powered", + "present", + "raw", + "swallowed", + "t0", + "t1" + ], + "SmartCardConnectionStatus": [ + "answerToReset", + "readerName", + "state" + ], + "SmartCardContext": [ + "[[connections]]", + "[[operationInProgress]]", + "[[resourceManager]]", + "[[signal]]", + "[[tracker]]", + "connect()", + "connect(readerName, accessMode)", + "connect(readerName, accessMode, options)", + "getStatusChange()", + "getStatusChange(readerStates)", + "getStatusChange(readerStates, options)", + "listReaders()" + ], + "SmartCardDisposition": [ + "eject", + "leave", + "reset", + "unpower" + ], + "SmartCardError": [ + "constructor()", + "constructor(options)", + "constructor(options, message)", + "corresponding", + "responseCode" + ], + "SmartCardErrorOptions": [ + "responseCode" + ], + "SmartCardGetStatusChangeOptions": [ + "signal", + "timeout" + ], + "SmartCardProtocol": [ + "corresponding flags", + "raw", + "t0", + "t1", + "valid protocol value" + ], + "SmartCardReaderStateFlagsIn": [ + "corresponding", + "empty", + "exclusive", + "ignore", + "inuse", + "mute", + "present", + "unavailable", + "unaware", + "unpowered" + ], + "SmartCardReaderStateFlagsOut": [ + "changed", + "corresponding", + "empty", + "exclusive", + "ignore", + "inuse", + "mute", + "present", + "unavailable", + "unknown", + "unpowered" + ], + "SmartCardReaderStateIn": [ + "corresponding", + "currentCount", + "currentState", + "readerName" + ], + "SmartCardReaderStateOut": [ + "answerToReset", + "corresponding", + "eventCount", + "eventState", + "readerName" + ], + "SmartCardResourceManager": [ + "establishContext()" + ], + "SmartCardResponseCode": [ + "no-service", + "no-smartcard", + "not-ready", + "not-transacted", + "proto-mismatch", + "reader-unavailable", + "removed-card", + "reset-card", + "server-too-busy", + "sharing-violation", + "system-cancelled", + "unknown-reader", + "unpowered-card", + "unresponsive-card", + "unsupported-card", + "unsupported-feature" + ], + "SmartCardTransactionOptions": [ + "signal" + ], + "SmartCardTransmitOptions": [ + "protocol" + ], + "SnapEvent": [ + "SnapEvent(type)", + "SnapEvent(type, eventInitDict)", + "constructor(type)", + "constructor(type, eventInitDict)", + "scrollsnapchange", + "scrollsnapchanging", + "snapTargetBlock", + "snapTargetInline" + ], + "SnapEvent/SnapEvent(type)": [ + "eventInitDict", + "type" + ], + "SnapEvent/SnapEvent(type, eventInitDict)": [ + "eventInitDict", + "type" + ], + "SnapEvent/constructor(type)": [ + "eventInitDict", + "type" + ], + "SnapEvent/constructor(type, eventInitDict)": [ + "eventInitDict", + "type" + ], + "SnapEventInit": [ + "snapTargetBlock", + "snapTargetInline" + ], + "SocketDnsQueryType": [ + "ipv4", + "ipv6" + ], + "Source Text Module Records": [ + "GetExportedNames(exportStarSet)", + "ResolveExport(exportName, resolveSet)" + ], "SourceBuffer": [ "[[append state]]", "[[buffer full flag]]", @@ -41424,6 +46580,10 @@ "name", "voiceURI" ], + "StartViewTransitionOptions": [ + "types", + "update" + ], "StatefulAnimator": [ "StatefulAnimator()", "StatefulAnimator(options)", @@ -41496,6 +46656,92 @@ "removeItem(key)", "setItem(key, value)" ], + "StorageAccessHandle": [ + "BroadcastChannel(name)", + "SharedWorker(scriptURL)", + "SharedWorker(scriptURL, options)", + "caches", + "createObjectURL(obj)", + "estimate()", + "getDirectory()", + "indexedDB", + "localStorage", + "locks", + "revokeObjectURL(url)", + "sessionStorage", + "types" + ], + "StorageAccessHandle/BroadcastChannel(name)": [ + "name" + ], + "StorageAccessHandle/SharedWorker(scriptURL)": [ + "options", + "scriptURL" + ], + "StorageAccessHandle/SharedWorker(scriptURL, options)": [ + "options", + "scriptURL" + ], + "StorageAccessHandle/createObjectURL(obj)": [ + "obj" + ], + "StorageAccessHandle/revokeObjectURL(url)": [ + "url" + ], + "StorageAccessTypes": [ + "BroadcastChannel", + "SharedWorker", + "all", + "caches", + "cookies", + "createObjectURL", + "estimate", + "getDirectory", + "indexedDB", + "localStorage", + "locks", + "revokeObjectURL", + "sessionStorage" + ], + "StorageBucket": [ + "caches", + "estimate()", + "expiration time", + "expires()", + "getDirectory()", + "indexedDB", + "name", + "persist()", + "persisted()", + "quota value", + "setExpires(expires)" + ], + "StorageBucket/setExpires(expires)": [ + "expires" + ], + "StorageBucketManager": [ + "delete(name)", + "keys()", + "open(name)", + "open(name, options)", + "storage bucket manager" + ], + "StorageBucketManager/delete(name)": [ + "name" + ], + "StorageBucketManager/open(name)": [ + "name", + "options" + ], + "StorageBucketManager/open(name, options)": [ + "name", + "options" + ], + "StorageBucketOptions": [ + "expires", + "persisted", + "quota" + ], "StorageEstimate": [ "quota", "usage" @@ -41533,12 +46779,13 @@ "concat(...args)", "endsWith(searchString, endPosition)", "fixed()", - "fontcolor(color)", + "fontcolor(colour)", "fontsize(size)", "fromCharCode(...codeUnits)", "fromCodePoint(...codePoints)", "includes(searchString, position)", "indexOf(searchString, position)", + "isWellFormed()", "italics()", "lastIndexOf(searchString, position)", "link(url)", @@ -41567,6 +46814,7 @@ "toLowerCase()", "toString()", "toUpperCase()", + "toWellFormed()", "trim()", "trimEnd()", "trimLeft()", @@ -41574,6 +46822,9 @@ "trimStart()", "valueOf()" ], + "String.prototype [ %Symbol.iterator% ] ( )": [ + "String.prototype %Symbol.iterator% ()" + ], "StructuredSerializeOptions": [ "transfer" ], @@ -41625,10 +46876,6 @@ "StylePropertyMapReadOnly/has(property)": [ "property" ], - "StylePropertyMapReadonly": [ - "[[declarations]]", - "size" - ], "StyleSheet": [ "disabled", "href", @@ -41652,6 +46899,7 @@ "decrypt()", "decrypt(algorithm, key, data)", "deriveBits()", + "deriveBits(algorithm, baseKey)", "deriveBits(algorithm, baseKey, length)", "deriveKey()", "deriveKey(algorithm, baseKey, derivedKeyType, extractable, keyUsages)", @@ -41676,6 +46924,7 @@ ], "Supports-Loading-Mode": [ "credentialed-prerender", + "fenced-frame", "uncredentialed-prefetch" ], "SurfaceSwitchingPreferenceEnum": [ @@ -41706,6 +46955,9 @@ "unscopables", "valueOf()" ], + "Symbol.prototype [ %Symbol.toPrimitive% ] ( hint )": [ + "Symbol.prototype %Symbol.toPrimitive% (hint)" + ], "SyncEvent": [ "SyncEvent(type, init)", "constructor(type, init)", @@ -41736,6 +46988,54 @@ "exclude", "include" ], + "TCPServerSocket": [ + "[[closedPromise]]", + "[[openedPromise]]", + "[[readable]]", + "close()", + "closed", + "constructor()", + "constructor(localAddress)", + "constructor(localAddress, options)", + "opened" + ], + "TCPServerSocketOpenInfo": [ + "localAddress", + "localPort", + "readable" + ], + "TCPServerSocketOptions": [ + "backlog", + "ipv6Only", + "localPort" + ], + "TCPSocket": [ + "[[closedPromise]]", + "[[openedPromise]]", + "[[readable]]", + "[[writable]]", + "close()", + "closed", + "constructor()", + "constructor(remoteAddress, remotePort)", + "constructor(remoteAddress, remotePort, options)", + "opened" + ], + "TCPSocketOpenInfo": [ + "localAddress", + "localPort", + "readable", + "remoteAddress", + "remotePort", + "writable" + ], + "TCPSocketOptions": [ + "dnsQueryType", + "keepAliveDelay", + "noDelay", + "receiveBufferSize", + "sendBufferSize" + ], "Table": [ "Table(descriptor)", "Table(descriptor, value)", @@ -41792,11 +47092,20 @@ "\"anyfunc\"", "\"externref\"" ], + "TablePatch": [ + "brotlistream", + "flags", + "tag" + ], "TaskAttributionTiming": [ "containerId", "containerName", "containerSrc", "containerType", + "duration", + "entryType", + "name", + "startTime", "toJSON()" ], "TaskController": [ @@ -41829,7 +47138,6 @@ "\"user-blocking\"", "\"user-visible\"", "background", - "less than", "user-blocking", "user-visible" ], @@ -41851,12 +47159,30 @@ ], "TaskSignal": [ "add a priority change algorithm", + "any(signals)", + "any(signals, init)", + "dependent", + "dependent signals", + "has fixed priority", + "have fixed priority", "onprioritychange", "priority", "priority change algorithms", "priority changing", "prioritychange", - "signal priority change" + "signal priority change", + "source signal" + ], + "TaskSignal/any(signals)": [ + "init", + "signals" + ], + "TaskSignal/any(signals, init)": [ + "init", + "signals" + ], + "TaskSignalAnyInit": [ + "priority" ], "TestUtils": [ "gc()" @@ -42030,6 +47356,49 @@ "encoder", "pending high surrogate" ], + "TextEvent": [ + "data", + "initTextEvent(type)", + "initTextEvent(type, bubbles)", + "initTextEvent(type, bubbles, cancelable)", + "initTextEvent(type, bubbles, cancelable, view)", + "initTextEvent(type, bubbles, cancelable, view, data)" + ], + "TextEvent/initTextEvent(type)": [ + "bubbles", + "cancelable", + "data", + "type", + "view" + ], + "TextEvent/initTextEvent(type, bubbles)": [ + "bubbles", + "cancelable", + "data", + "type", + "view" + ], + "TextEvent/initTextEvent(type, bubbles, cancelable)": [ + "bubbles", + "cancelable", + "data", + "type", + "view" + ], + "TextEvent/initTextEvent(type, bubbles, cancelable, view)": [ + "bubbles", + "cancelable", + "data", + "type", + "view" + ], + "TextEvent/initTextEvent(type, bubbles, cancelable, view, data)": [ + "bubbles", + "cancelable", + "data", + "type", + "view" + ], "TextFormat": [ "backgroundColor", "constructor()", @@ -42053,6 +47422,8 @@ "TextFormatUpdateEvent": [ "constructor()", "constructor(options)", + "constructor(type)", + "constructor(type, options)", "getTextFormats()" ], "TextFormatUpdateEventInit": [ @@ -42112,11 +47483,18 @@ "onremovetrack", "removetrack" ], + "TextTrackMode": [ + "disabled", + "hidden", + "showing" + ], "TextUpdateEvent": [ "compositionEnd", "compositionStart", "constructor()", "constructor(options)", + "constructor(type)", + "constructor(type, options)", "selectionEnd", "selectionStart", "text", @@ -42137,6 +47515,10 @@ "length", "start(index)" ], + "TimelineRangeOffset": [ + "offset", + "rangeName" + ], "ToggleEvent": [ "newState", "oldState" @@ -42151,6 +47533,9 @@ "present", "supported" ], + "TokenVersion": [ + "\"1\"" + ], "TopLevelStorageAccessPermissionDescriptor": [ "requestedOrigin" ], @@ -42304,10 +47689,13 @@ "writableStrategy" ], "TransformStream/set up": [ + "cancelalgorithm", "flushalgorithm", "transformalgorithm" ], "TransformStreamDefaultController": [ + "[[cancelalgorithm]]", + "[[finishpromise]]", "[[flushalgorithm]]", "[[stream]]", "[[transformalgorithm]]", @@ -42332,12 +47720,16 @@ "reason" ], "Transformer": [ + "cancel", "flush", "readableType", "start", "transform", "writableType" ], + "TransformerCancelCallback": [ + "reason" + ], "TransformerFlushCallback": [ "controller" ], @@ -42395,29 +47787,20 @@ "whatToShow" ], "TrustedHTML": [ - "fromLiteral(templateStringsArray)", + "data", "stringificationbehavior", "toJSON()" ], - "TrustedHTML/fromLiteral(templateStringsArray)": [ - "templateStringsArray" - ], "TrustedScript": [ - "fromLiteral(templateStringsArray)", + "data", "stringificationbehavior", "toJSON()" ], - "TrustedScript/fromLiteral(templateStringsArray)": [ - "templateStringsArray" - ], "TrustedScriptURL": [ - "fromLiteral(templateStringsArray)", + "data", "stringificationbehavior", "toJSON()" ], - "TrustedScriptURL/fromLiteral(templateStringsArray)": [ - "templateStringsArray" - ], "TrustedTypePolicy": [ "createHTML(input)", "createHTML(input, ...arguments)", @@ -42425,7 +47808,8 @@ "createScript(input, ...arguments)", "createScriptURL(input)", "createScriptURL(input, ...arguments)", - "name" + "name", + "options" ], "TrustedTypePolicy/createHTML(input)": [ "arguments", @@ -42454,6 +47838,8 @@ "TrustedTypePolicyFactory": [ "createPolicy(policyName)", "createPolicy(policyName, policyOptions)", + "created policy names", + "default policy", "defaultPolicy", "emptyHTML", "emptyScript", @@ -42524,6 +47910,7 @@ "architecture", "bitness", "brands", + "formFactors", "fullVersionList", "mobile", "model", @@ -42537,6 +47924,41 @@ "mobile", "platform" ], + "UDPMessage": [ + "data", + "dnsQueryType", + "remoteAddress", + "remotePort" + ], + "UDPSocket": [ + "[[closedPromise]]", + "[[openedPromise]]", + "[[readable]]", + "[[writable]]", + "close()", + "closed", + "constructor()", + "constructor(options)", + "opened" + ], + "UDPSocketOpenInfo": [ + "localAddress", + "localPort", + "readable", + "remoteAddress", + "remotePort", + "writable" + ], + "UDPSocketOptions": [ + "dnsQueryType", + "ipv6Only", + "localAddress", + "localPort", + "receiveBufferSize", + "remoteAddress", + "remotePort", + "sendBufferSize" + ], "UIEvent": [ "UIEvent(type)", "UIEvent(type, eventInitDict)", @@ -42616,6 +48038,8 @@ "URL": [ "URL(url)", "URL(url, base)", + "canParse(url)", + "canParse(url, base)", "constructor(url)", "constructor(url, base)", "createObjectURL(obj)", @@ -42623,7 +48047,10 @@ "host", "hostname", "href", + "initialize", "origin", + "parse(url)", + "parse(url, base)", "password", "pathname", "port", @@ -42638,6 +48065,30 @@ "username", "within scope" ], + "URL pattern": [ + "create", + "has regexp groups", + "hash component", + "hostname component", + "match", + "password component", + "pathname component", + "port component", + "protocol component", + "search component", + "username component" + ], + "URL search variance": [ + "no-vary params", + "vary on key order", + "vary params" + ], + "URL search variance/no-vary params": [ + "wildcard" + ], + "URL search variance/vary params": [ + "wildcard" + ], "URL serializer": [ "exclude fragment" ], @@ -42649,6 +48100,14 @@ "base", "url" ], + "URL/canParse(url)": [ + "base", + "url" + ], + "URL/canParse(url, base)": [ + "base", + "url" + ], "URL/constructor(url)": [ "base", "url" @@ -42660,6 +48119,14 @@ "URL/createObjectURL(obj)": [ "obj" ], + "URL/parse(url)": [ + "base", + "url" + ], + "URL/parse(url, base)": [ + "base", + "url" + ], "URL/revokeObjectURL(url)": [ "url" ], @@ -42669,6 +48136,7 @@ "URLPattern(input, baseURL)", "URLPattern(input, baseURL, options)", "URLPattern(input, options)", + "associated url pattern", "constructor()", "constructor(input)", "constructor(input, baseURL)", @@ -42677,26 +48145,19 @@ "exec()", "exec(input)", "exec(input, baseURL)", + "hasRegExpGroups", "hash", - "hash component", "hostname", - "hostname component", "initialize", "password", - "password component", "pathname", - "pathname component", "port", - "port component", "protocol", - "protocol component", "search", - "search component", "test()", "test(input)", "test(input, baseURL)", - "username", - "username component" + "username" ], "URLPattern/URLPattern()": [ "input", @@ -42802,9 +48263,11 @@ "constructor()", "constructor(init)", "delete(name)", + "delete(name, value)", "get(name)", "getAll(name)", "has(name)", + "has(name, value)", "initialize", "list", "set(name, value)", @@ -42831,7 +48294,12 @@ "init" ], "URLSearchParams/delete(name)": [ - "name" + "name", + "value" + ], + "URLSearchParams/delete(name, value)": [ + "name", + "value" ], "URLSearchParams/get(name)": [ "name" @@ -42840,7 +48308,12 @@ "name" ], "URLSearchParams/has(name)": [ - "name" + "name", + "value" + ], + "URLSearchParams/has(name, value)": [ + "name", + "value" ], "URLSearchParams/set(name, value)": [ "name", @@ -42876,6 +48349,11 @@ "alternateSetting", "deviceInterface" ], + "USBBlocklistEntry": [ + "bcdDevice", + "idProduct", + "idVendor" + ], "USBConfiguration": [ "USBConfiguration(device, configurationValue)", "[[configurationValue]]", @@ -43011,6 +48489,7 @@ "vendorId" ], "USBDeviceRequestOptions": [ + "exclusionFilters", "filters" ], "USBDirection": [ @@ -43194,6 +48673,7 @@ "status" ], "USBPermissionDescriptor": [ + "exclusionFilters", "filters" ], "USBPermissionResult": [ @@ -43242,13 +48722,17 @@ "UncalibratedMagnetometer/constructor(sensorOptions)": [ "sensorOptions" ], - "UncalibratedMagnetometerReadingValues": [ - "x", - "xBias", - "y", - "yBias", - "z", - "zBias" + "UnderlineStyle": [ + "dashed", + "dotted", + "none", + "solid", + "wavy" + ], + "UnderlineThickness": [ + "none", + "thick", + "thin" ], "UnderlyingSink": [ "abort", @@ -43439,7 +48923,6 @@ "height", "scalabilityMode", "spatialScalability", - "spatialscalability", "transferFunction", "width" ], @@ -43554,12 +49037,21 @@ "VideoEncoder/isConfigSupported(config)": [ "config" ], + "VideoEncoderBitrateMode": [ + "\"constant\"", + "\"quantizer\"", + "\"variable\"", + "constant", + "quantizer", + "variable" + ], "VideoEncoderConfig": [ "alpha", "avc", "bitrate", "bitrateMode", "codec", + "contentHint", "displayHeight", "displayWidth", "framerate", @@ -43571,7 +49063,23 @@ "width" ], "VideoEncoderEncodeOptions": [ - "keyFrame" + "av1", + "avc", + "hevc", + "keyFrame", + "vp9" + ], + "VideoEncoderEncodeOptionsForAv1": [ + "quantizer" + ], + "VideoEncoderEncodeOptionsForAvc": [ + "quantizer" + ], + "VideoEncoderEncodeOptionsForHevc": [ + "quantizer" + ], + "VideoEncoderEncodeOptionsForVp9": [ + "quantizer" ], "VideoEncoderInit": [ "error", @@ -43617,6 +49125,7 @@ "constructor(data, init)", "constructor(image)", "constructor(image, init)", + "convert to rgb frame", "copy videoframe metadata", "copyTo(destination)", "copyTo(destination, options)", @@ -43633,7 +49142,6 @@ "pick color space", "timestamp", "verify rect offset alignment", - "verify rect size alignment", "visibleRect" ], "VideoFrame/VideoFrame(data, init)": [ @@ -43683,7 +49191,9 @@ "duration", "format", "layout", + "metadata", "timestamp", + "transfer", "visibleRect" ], "VideoFrameCallbackMetadata": [ @@ -43699,6 +49209,8 @@ "width" ], "VideoFrameCopyToOptions": [ + "colorSpace", + "format", "layout", "rect" ], @@ -43735,8 +49247,22 @@ "\"BGRX\"", "\"I420\"", "\"I420A\"", + "\"I420AP10\"", + "\"I420AP12\"", + "\"I420P10\"", + "\"I420P12\"", "\"I422\"", + "\"I422A\"", + "\"I422AP10\"", + "\"I422AP12\"", + "\"I422P10\"", + "\"I422P12\"", "\"I444\"", + "\"I444A\"", + "\"I444AP10\"", + "\"I444AP12\"", + "\"I444P10\"", + "\"I444P12\"", "\"NV12\"", "\"RGBA\"", "\"RGBX\"", @@ -43744,8 +49270,22 @@ "BGRX", "I420", "I420A", + "I420AP10", + "I420AP12", + "I420P10", + "I420P12", "I422", + "I422A", + "I422AP10", + "I422AP12", + "I422P10", + "I422P12", "I444", + "I444A", + "I444AP10", + "I444AP12", + "I444P10", + "I444P12", "NV12", "RGBA", "RGBX" @@ -43826,25 +49366,34 @@ ], "ViewTimelineOptions": [ "axis", + "inset", "subject" ], "ViewTransition": [ - "dom update callback", - "dom updated promise", - "domUpdated", + "active types", "finished", "finished promise", - "initial snapshot root size", + "initial snapshot containing block size", "named elements", + "outbound post-capture steps", "phase", + "process old state captured", "ready", "ready promise", "skipTransition()", "transition root pseudo-element", + "types", "update callback", "update callback done promise", "updateCallbackDone" ], + "ViewTransitionNavigation": [ + "\"auto\"", + "\"none\"" + ], + "Viewport": [ + "segments" + ], "VirtualKeyboard": [ "boundingRect", "hide()", @@ -43864,6 +49413,7 @@ "resize", "scale", "scroll", + "scrollend", "width" ], "WakeLock": [ @@ -44063,19 +49613,22 @@ "WebTransport": [ "WebTransport(url)", "WebTransport(url, options)", + "[[AnticipatedConcurrentIncomingBidirectionalStreams]]", + "[[AnticipatedConcurrentIncomingUnidirectionalStreams]]", "[[Closed]]", "[[CongestionControl]]", "[[Datagrams]]", + "[[Draining]]", "[[IncomingBidirectionalStreams]]", "[[IncomingUnidirectionalStreams]]", - "[[RateControlFeedbackMinInterval]]", - "[[RateControlFeedback]]", "[[Ready]]", "[[ReceiveStreams]]", "[[Reliability]]", "[[SendStreams]]", "[[Session]]", "[[State]]", + "anticipatedConcurrentIncomingBidirectionalStreams", + "anticipatedConcurrentIncomingUnidirectionalStreams", "cleanup", "close()", "close(closeInfo)", @@ -44085,19 +49638,18 @@ "constructor(url, options)", "createBidirectionalStream()", "createBidirectionalStream(options)", + "createSendGroup()", "createUnidirectionalStream()", "createUnidirectionalStream(options)", "datagrams", + "draining", "getStats()", "incomingBidirectionalStreams", "incomingUnidirectionalStreams", - "onratecontrolfeedback", "queue a network task", - "rateControlFeedback", - "rateControlFeedbackMinInterval", - "ratecontrolfeedback", "ready", - "reliability" + "reliability", + "supportsReliableOnly" ], "WebTransport/WebTransport(url)": [ "options", @@ -44149,6 +49701,19 @@ "\"low-latency\"", "\"throughput\"" ], + "WebTransportConnectionStats": [ + "bytesLost", + "bytesReceived", + "bytesSent", + "datagrams", + "estimatedSendRate", + "minRtt", + "packetsLost", + "packetsReceived", + "packetsSent", + "rttVariation", + "smoothedRtt" + ], "WebTransportDatagramDuplexStream": [ "[[IncomingDatagramsExpirationDuration]]", "[[IncomingDatagramsHighWaterMark]]", @@ -44176,34 +49741,26 @@ ], "WebTransportDatagramStats": [ "droppedIncoming", + "expiredIncoming", "expiredOutgoing", - "lostOutgoing", - "timestamp" + "lostOutgoing" ], "WebTransportError": [ "WebTransportError()", - "WebTransportError(init)", "WebTransportError(message)", "WebTransportError(message, options)", "[[Source]]", "[[StreamErrorCode]]", "constructor()", - "constructor(init)", "constructor(message)", "constructor(message, options)", - "create", - "set up", "source", "streamErrorCode" ], "WebTransportError/WebTransportError()": [ - "init", "message", "options" ], - "WebTransportError/WebTransportError(init)": [ - "init" - ], "WebTransportError/WebTransportError(message)": [ "message", "options" @@ -44213,13 +49770,9 @@ "options" ], "WebTransportError/constructor()": [ - "init", "message", "options" ], - "WebTransportError/constructor(init)": [ - "init" - ], "WebTransportError/constructor(message)": [ "message", "options" @@ -44228,10 +49781,6 @@ "message", "options" ], - "WebTransportErrorInit": [ - "message", - "streamErrorCode" - ], "WebTransportErrorOptions": [ "source", "streamErrorCode" @@ -44246,15 +49795,12 @@ ], "WebTransportOptions": [ "allowPooling", + "anticipatedConcurrentIncomingBidirectionalStreams", + "anticipatedConcurrentIncomingUnidirectionalStreams", "congestionControl", "requireUnreliable", "serverCertificateHashes" ], - "WebTransportRateControlFeedback": [ - "[[SendRate]]", - "create", - "sendRate" - ], "WebTransportReceiveStream": [ "[[InternalStream]]", "[[Transport]]", @@ -44266,48 +49812,58 @@ ], "WebTransportReceiveStreamStats": [ "bytesRead", - "bytesReceived", - "timestamp" + "bytesReceived" ], "WebTransportReliabilityMode": [ "\"pending\"", "\"reliable-only\"", "\"supports-unreliable\"" ], + "WebTransportSendGroup": [ + "[[Transport]]", + "create", + "creating", + "getStats()" + ], "WebTransportSendStream": [ + "[[AtomicWriteRequests]]", "[[InternalStream]]", "[[PendingOperation]]", + "[[SendGroup]]", "[[SendOrder]]", "[[Transport]]", "abort", + "abort all atomic write requests", "close", "create", "creating", "getStats()", + "getWriter()", + "sendGroup", + "sendOrder", "write" ], "WebTransportSendStreamOptions": [ - "sendOrder" + "sendGroup", + "sendOrder", + "waitUntilAvailable" ], "WebTransportSendStreamStats": [ "bytesAcknowledged", "bytesSent", - "bytesWritten", - "timestamp" + "bytesWritten" ], - "WebTransportStats": [ - "bytesReceived", - "bytesSent", - "datagrams", - "minRtt", - "numIncomingStreamsCreated", - "numOutgoingStreamsCreated", - "packetsLost", - "packetsReceived", - "packetsSent", - "rttVariation", - "smoothedRtt", - "timestamp" + "WebTransportWriter": [ + "atomicWrite()", + "atomicWrite(chunk)", + "create", + "creating" + ], + "WebTransportWriter/atomicWrite()": [ + "chunk" + ], + "WebTransportWriter/atomicWrite(chunk)": [ + "chunk" ], "WellKnownDirectory": [ "\"desktop\"", @@ -44376,9 +49932,9 @@ "clientInformation", "close()", "closed", - "compassneedscalibration", "confirm(message)", "cookieStore", + "credentialless", "current event", "customElements", "devicePixelRatio", @@ -44386,10 +49942,13 @@ "deviceorientation", "deviceorientationabsolute", "document", + "documentPictureInPicture", + "documentpictureinpicture api", "error", "event", "eventcounts", "external", + "fence", "focus", "focus()", "frameElement", @@ -44404,7 +49963,6 @@ "innerHeight", "innerWidth", "interactioncount", - "interactioncounts", "languagechange", "launchQueue", "length", @@ -44418,9 +49976,9 @@ "moveBy(x, y)", "moveTo(x, y)", "name", + "navigable", "navigate(dir)", "navigation", - "navigation api", "navigator", "offline", "onabort", @@ -44440,7 +49998,6 @@ "onchange", "onclick", "onclose", - "oncompassneedscalibration", "oncontextlost", "oncontextmenu", "oncontextrestored", @@ -44487,6 +50044,9 @@ "onprogress", "onratechange", "onreset", + "onscrollend", + "onscrollsnapchange", + "onscrollsnapchanging", "onsecuritypolicyviolation", "onseeked", "onseeking", @@ -44513,7 +50073,9 @@ "pageXOffset", "pageYOffset", "pagehide", + "pagereveal", "pageshow", + "pageswap", "parent", "personalbar", "popstate", @@ -44552,6 +50114,8 @@ "scrollY", "scrollbars", "self", + "sharedStorage", + "sharedstorage getter", "showDirectoryPicker()", "showDirectoryPicker(options)", "showOpenFilePicker()", @@ -44568,6 +50132,7 @@ "trusted type policy factory", "unhandledrejection", "unload", + "viewport", "visualViewport", "window" ], @@ -44702,7 +50267,9 @@ "onoffline", "ononline", "onpagehide", + "onpagereveal", "onpageshow", + "onpageswap", "onpopstate", "onportalactivate", "onrejectionhandled", @@ -44730,6 +50297,7 @@ "indexedDB", "isSecureContext", "map of active timers", + "map of settimeout and setinterval ids", "memory attribution token", "origin", "performance", @@ -44815,6 +50383,7 @@ "permissions", "serial", "serviceWorker", + "smartCard", "usb" ], "Worklet": [ @@ -44973,10 +50542,10 @@ "[[AbortSteps]]", "[[ErrorSteps]]", "[[abortalgorithm]]", + "[[abortcontroller]]", "[[closealgorithm]]", "[[queue]]", "[[queuetotalsize]]", - "[[signal]]", "[[started]]", "[[strategyhwm]]", "[[strategysizealgorithm]]", @@ -45047,23 +50616,18 @@ "OPENED", "UNSENT", "XMLHttpRequest()", - "abort", "abort()", "constructor()", - "error", "fetch controller", "getAllResponseHeaders()", "getResponseHeader(name)", - "load", - "loadend", - "loadstart", "onreadystatechange", "open(method, url)", "open(method, url, async)", "open(method, url, async, username)", "open(method, url, async, username, password)", "overrideMimeType(mime)", - "progress", + "private state token", "readyState", "readystatechange", "response", @@ -45073,6 +50637,8 @@ "responseXML", "send()", "send(body)", + "setAttributionReporting(options)", + "setPrivateToken(privateToken)", "setRequestHeader(name, value)", "status", "statusText", @@ -45117,18 +50683,31 @@ "XMLHttpRequest/send(body)": [ "body" ], + "XMLHttpRequest/setAttributionReporting(options)": [ + "options" + ], + "XMLHttpRequest/setPrivateToken(privateToken)": [ + "privateToken" + ], "XMLHttpRequest/setRequestHeader(name, value)": [ "name", "value" ], "XMLHttpRequestEventTarget": [ + "abort", + "error", + "load", + "loadend", + "loadstart", "onabort", "onerror", "onload", "onloadend", "onloadstart", "onprogress", - "ontimeout" + "ontimeout", + "progress", + "timeout" ], "XMLHttpRequestResponseType": [ "\"\"", @@ -45285,11 +50864,13 @@ "mipLevels", "needsRedraw", "opacity", + "quality", "session" ], "XRCubeLayer": [ "onredraw", "orientation", + "redraw", "space" ], "XRCubeLayerInit": [ @@ -45300,6 +50881,7 @@ "centralAngle", "onredraw", "radius", + "redraw", "space", "transform" ], @@ -45326,7 +50908,8 @@ ], "XRDepthDataFormat": [ "\"float32\"", - "\"luminance-alpha\"" + "\"luminance-alpha\"", + "\"unsigned-short\"" ], "XRDepthInformation": [ "depth buffer", @@ -45357,6 +50940,7 @@ "lowerVerticalAngle", "onredraw", "radius", + "redraw", "space", "transform", "upperVerticalAngle" @@ -45380,6 +50964,8 @@ "apply frame updates", "apply gamepad frame updates", "createAnchor(pose, space)", + "detectedMeshes", + "detectedPlanes", "fillJointRadii(jointSpaces, radii)", "fillPoses(spaces, baseSpace, transforms)", "getDepthInformation(view)", @@ -45391,6 +50977,7 @@ "getViewerPose(referenceSpace)", "map of hit test sources to hit test results", "map of hit test sources to hit test results for transient input", + "metaData", "predictedDisplayTime", "session", "time", @@ -45516,6 +51103,7 @@ "handedness", "input profile name", "profiles", + "skipRendering", "targetRayMode", "targetRaySpace" ], @@ -45576,9 +51164,6 @@ "jointName", "jointname" ], - "XRLayer": [ - "redraw" - ], "XRLayerEvent": [ "XRLayerEvent(type, eventInitDict)", "constructor(type, eventInitDict)", @@ -45596,6 +51181,7 @@ "layer" ], "XRLayerInit": [ + "clearOnAccess", "colorFormat", "depthFormat", "isStatic", @@ -45617,6 +51203,14 @@ "stereo-left-right", "stereo-top-bottom" ], + "XRLayerQuality": [ + "\"default\"", + "\"graphics-optimized\"", + "\"text-optimized\"", + "default", + "graphics-optimized", + "text-optimized" + ], "XRLightEstimate": [ "primaryLightDirection", "primaryLightIntensity", @@ -45696,6 +51290,35 @@ "transform", "width" ], + "XRMesh": [ + "frame", + "indices", + "lastChangedTime", + "meshSpace", + "native entity", + "semanticLabel", + "vertices" + ], + "XRMeshBlock": [ + "indices", + "normals", + "vertices" + ], + "XRMeshQuality": [ + "\"high\"", + "\"low\"", + "\"medium\"" + ], + "XRMetadata": [ + "nearMesh", + "worldMesh" + ], + "XRNearMeshFeature": [ + "quality" + ], + "XRNearMeshFeature/quality": [ + "quality" + ], "XRPermissionDescriptor": [ "mode", "optionalFeatures", @@ -45704,6 +51327,19 @@ "XRPermissionStatus": [ "granted" ], + "XRPlane": [ + "frame", + "lastChangedTime", + "native entity", + "orientation", + "planeSpace", + "polygon", + "semanticLabel" + ], + "XRPlaneOrientation": [ + "\"horizontal\"", + "\"vertical\"" + ], "XRPose": [ "angularVelocity", "computed offset", @@ -45722,6 +51358,7 @@ "textureWidth" ], "XRProjectionLayerInit": [ + "clearOnAccess", "colorFormat", "depthFormat", "scaleFactor", @@ -45730,6 +51367,7 @@ "XRQuadLayer": [ "height", "onredraw", + "redraw", "space", "transform", "width" @@ -45902,11 +51540,13 @@ "environmentBlendMode", "frameRate", "frameratechange", + "initiateRoomCapture()", "inputSources", "inputsourceschange", "interactionMode", "internal nominal framerate", "internal target framerate", + "isSystemKeyboardSupported", "list of frame updates", "list of views", "map of new anchors", @@ -45922,6 +51562,7 @@ "onsqueezeend", "onsqueezestart", "onvisibilitychange", + "persistentAnchors", "preferredReflectionFormat", "promise resolved", "remove input source", @@ -45940,6 +51581,8 @@ "set of active hit test sources for transient input", "set of granted features", "set of tracked anchors", + "set of tracked meshes", + "set of tracked planes", "squeeze", "squeezeend", "squeezestart", @@ -46055,9 +51698,11 @@ "\"gaze\"", "\"screen\"", "\"tracked-pointer\"", + "\"transient-pointer\"", "gaze", "screen", - "tracked-pointer" + "tracked-pointer", + "transient-pointer" ], "XRTextureType": [ "\"texture\"", @@ -46207,7 +51852,9 @@ ], "XRWebGLDepthInformation": [ "getDepthInformation(view)", - "texture" + "imageIndex", + "texture", + "textureType" ], "XRWebGLLayer": [ "XRWebGLLayer(session, context)", @@ -46273,6 +51920,24 @@ "motionVectorTextureHeight", "motionVectorTextureWidth" ], + "XRWorldMeshFeature": [ + "breadth", + "height", + "quality", + "width" + ], + "XRWorldMeshFeature/breadth": [ + "breadth" + ], + "XRWorldMeshFeature/height": [ + "height" + ], + "XRWorldMeshFeature/quality": [ + "quality" + ], + "XRWorldMeshFeature/width": [ + "width" + ], "XSLTProcessor": [ "XSLTProcessor()", "clearParameters()", @@ -46343,8 +52008,10 @@ "noreferrer", "opener", "prev", + "privacy-policy", "search", - "tag" + "tag", + "terms-of-service" ], "abbr": [ "title" @@ -46373,11 +52040,30 @@ "range", "views" ], + "ad descriptor": [ + "size", + "url" + ], + "ad keyword replacement": [ + "match", + "replacement" + ], + "ad size": [ + "height", + "height units", + "width", + "width units" + ], "adapter": [ "[[fallback]]", "[[features]]", "[[limits]]", - "[[unmaskedIdentifiers]]" + "[[state]]" + ], + "adapter/[[state]]": [ + "\"consumed\"", + "\"expired\"", + "\"valid\"" ], "address spaces": [ "function", @@ -46390,32 +52076,78 @@ "agent": [ "event loop" ], + "aggregatable attribution report": [ + "aggregation coordinator", + "attribution debug info", + "contributions", + "effective attribution destination", + "filtering id max bytes", + "is null report", + "report id", + "report time", + "reporting origin", + "required aggregatable budget", + "shared info", + "source identifier", + "source registration time configuration", + "source time", + "trigger context id" + ], "aggregatable contribution": [ + "filtering id", "key", "value" ], + "aggregatable debug rate-limit record": [ + "consumed budget", + "context site", + "reporting site", + "time" + ], + "aggregatable debug report": [ + "aggregation coordinator", + "contributions", + "effective attribution destination", + "report id", + "report time", + "reporting origin", + "required aggregatable budget" + ], + "aggregatable debug reporting config": [ + "aggregation coordinator", + "debug data", + "key piece" + ], "aggregatable dedup key": [ "dedup key", "filters", "negated filters" ], + "aggregatable key value": [ + "filtering id", + "value" + ], "aggregatable report": [ "aggregation coordinator", + "api", + "context id", "contributions", + "debug details", "debug mode", - "delivered", "effective attribution destination", + "filtering id max bytes", "original report time", "plaintext payload", + "queued", "report id", "report time", - "reporting endpoint", + "reporting origin", "required aggregatable budget", - "serialized private state token", - "shared info", - "source debug key", - "source time", - "trigger debug key" + "shared info" + ], + "aggregatable source registration time configuration": [ + "exclude", + "include" ], "aggregatable trigger data": [ "filters", @@ -46423,6 +52155,18 @@ "negated filters", "source keys" ], + "aggregatable values configuration": [ + "filters", + "negated filters", + "values" + ], + "aggregatable-debug-reporting JSON key": [ + "aggregation_coordinator_origin", + "debug_data", + "key_piece", + "types", + "value" + ], "align-content": [ "baseline", "center", @@ -46441,6 +52185,7 @@ "stretch" ], "align-items": [ + "anchor-center", "auto", "baseline", "center", @@ -46454,6 +52199,7 @@ "stretch" ], "align-self": [ + "anchor-center", "auto", "baseline", "center", @@ -46508,13 +52254,13 @@ "target" ], "anchor()": [ - "auto", - "auto-same", "bottom", "center", "end", "implicit", + "inside", "left", + "outside", "right", "self-end", "self-start", @@ -46522,11 +52268,11 @@ "top" ], "anchor-name": [ + "<dashed-ident>#", "none" ], - "anchor-scroll": [ - "<anchor-element>", - "default", + "anchor-scope": [ + "all", "none" ], "anchor-size()": [ @@ -46583,10 +52329,13 @@ ], "animation": [ "associated effect", + "auto-aligned start time", + "calculating an auto-aligned start time", "current time", "document for timing", "hold time", "play state", + "progress", "relevant", "reset an animation's pending tasks", "set the associated effect of an animation", @@ -46598,22 +52347,22 @@ "animation effect": [ "active phase", "after phase", + "associated animation", "before phase", + "effect easing function", + "end time", "idle phase", "playback rate" ], - "animation-delay-end": [ - "<timeline-range-name> <percentage>" - ], - "animation-delay-start": [ - "<timeline-range-name> <percentage>" - ], "animation-direction": [ "alternate", "alternate-reverse", "normal", "reverse" ], + "animation-duration": [ + "auto" + ], "animation-fill-mode": [ "backwards", "both", @@ -46632,11 +52381,11 @@ "running" ], "animation-range-end": [ - "<timeline-range-name> <percentage>", + "<timeline-range-name> <length-percentage>?", "normal" ], "animation-range-start": [ - "<timeline-range-name> <percentage>", + "<timeline-range-name> <length-percentage>?", "normal" ], "animation-timeline": [ @@ -46647,13 +52396,9 @@ "contain", "cover", "entry", - "exit" - ], - "animationevent": [ - "animationcancel", - "animationend", - "animationiteration", - "animationstart" + "entry-crossing", + "exit", + "exit-crossing" ], "animator definition": [ "stateful flag" @@ -46723,8 +52468,10 @@ "noreferrer", "opener", "prev", + "privacy-policy", "search", - "tag" + "tag", + "terms-of-service" ], "area/shape": [ "circle state", @@ -46765,93 +52512,163 @@ "percentage", "string", "substitution value", - "time", - "url" + "time" ], "attribute": [ "align", "binding", + "blend_src", "builtin", "compute", "const", + "diagnostic", "fragment", "group", "id", "interpolate", "invariant", "location", + "must_use", "size", "vertex", "workgroup_size" ], - "attribution debug data": [ - "body", - "data type" - ], - "attribution debug report": [ - "data", - "reporting endpoint" + "attribution debug info": [ + "source debug key", + "trigger debug key" ], "attribution rate-limit record": [ "attribution destination", + "deactivated for unexpired destination limit", + "destination limit priority", + "entity id", "expiry time", - "reporting endpoint", + "reporting origin", "scope", "source site", "time" ], "attribution report": [ - "delivered", - "original report time", "report id", "report time", - "reporting endpoint", - "source debug key", - "trigger debug key" + "reporting origin" + ], + "attribution scopes": [ + "limit", + "max event states", + "values" ], "attribution source": [ - "aggregatable budget consumed", + "aggregatable debug reporting config", "aggregatable dedup keys", "aggregatable report window", - "aggregatable report window time", "aggregation keys", "attribution destinations", + "attribution scopes", + "debug cookie set", "debug key", "debug reporting enabled", "dedup keys", + "destination limit priority", "event id", - "event report window", - "event report window time", "event-level attributable", + "event-level epsilon", "expiry", "expiry time", + "fenced", "filter data", + "max number of event-level reports", + "number of aggregatable attribution reports", + "number of aggregatable debug reports", "number of event-level reports", "priority", "randomized response", "randomized trigger rate", - "reporting endpoint", + "remaining aggregatable attribution budget", + "remaining aggregatable debug budget", + "reporting origin", "source identifier", "source origin", "source site", "source time", - "source type" + "source type", + "trigger specs", + "trigger-data matching mode" ], "attribution trigger": [ + "aggregatable debug reporting config", "aggregatable dedup keys", + "aggregatable filtering id max bytes", + "aggregatable source registration time configuration", "aggregatable trigger data", - "aggregatable values", + "aggregatable values configurations", "aggregation coordinator", "attribution destination", + "attribution scopes", "debug key", "debug reporting enabled", "event-level trigger configurations", + "fenced", "filters", "negated filters", - "reporting endpoint", - "serialized private state token", + "reporting origin", + "trigger context id", "trigger time" ], + "auction config": [ + "all buyer experiment group id", + "all buyers cumulative timeout", + "all buyers currency", + "all buyers group limit", + "all buyers multi-bid limit", + "all buyers priority signals", + "all buyers timeout", + "all slots requested sizes", + "auction nonce", + "auction report buyer debug details", + "auction report buyer keys", + "auction report buyers", + "auction signals", + "batching scope map", + "component auctions", + "config idl", + "decision logic url", + "deprecated render url replacements", + "direct from seller signals header ad slot", + "expects additional bids", + "interest group buyers", + "max trusted scoring signals url length", + "pending promise count", + "per buyer cumulative timeouts", + "per buyer currencies", + "per buyer experiment group ids", + "per buyer group limits", + "per buyer multi-bid limits", + "per buyer priority signals", + "per buyer real time reporting config", + "per buyer signals", + "per buyer timeouts", + "per-bid or seller on event contribution cache", + "permissions policy state", + "requested size", + "required seller capabilities", + "resolve to config", + "seller", + "seller currency", + "seller experiment group id", + "seller private aggregation coordinator", + "seller real time reporting config", + "seller signals", + "seller timeout", + "server response", + "server response id", + "trusted scoring signals url" + ], + "auction report info": [ + "debug loss report urls", + "debug win report urls", + "real time reporting contributions map" + ], "audio": [ "autoplay", "controls", @@ -46914,6 +52731,23 @@ "pinuvauthprotocol", "rpid" ], + "automatic beacon data": [ + "crossoriginexposed", + "destination", + "eventdata", + "once" + ], + "automatic beacon event": [ + "attributionreportingcontextorigin", + "attributionreportingenabled", + "data", + "type" + ], + "automatic beacon event type": [ + "reserved.top_navigation", + "reserved.top_navigation_commit", + "reserved.top_navigation_start" + ], "background fetch": [ "abort all flag", "display", @@ -46952,7 +52786,7 @@ "scroll" ], "background-clip": [ - "border", + "border-area", "border-box", "content-box", "padding-box", @@ -46982,11 +52816,43 @@ "round", "space" ], + "background-repeat-block": [ + "no-repeat", + "repeat", + "round", + "space" + ], + "background-repeat-inline": [ + "no-repeat", + "repeat", + "round", + "space" + ], + "background-repeat-x": [ + "no-repeat", + "repeat", + "round", + "space" + ], + "background-repeat-y": [ + "no-repeat", + "repeat", + "round", + "space" + ], "background-size": [ "auto", "contain", "cover" ], + "badge": [ + "clear", + "cleared", + "clearing", + "set", + "setting", + "values" + ], "base": [ "href", "target" @@ -47034,6 +52900,33 @@ "state override", "url" ], + "bid debug reporting info": [ + "bidder debug loss report url", + "bidder debug win report url", + "component seller", + "ids", + "interest group owner", + "seller debug loss report url", + "seller debug win report url", + "top level seller debug loss report url", + "top level seller debug win report url" + ], + "bid with currency": [ + "currency", + "value" + ], + "bidding signals per interest group data": [ + "updateifolderthanms" + ], + "binary": [ + "<minus/>", + "<root/>" + ], + "bit debit": [ + "bits", + "expired", + "timestamp" + ], "blob URL entry": [ "environment", "object" @@ -47192,6 +53085,7 @@ "thin" ], "border-limit": [ + "all", "bottom", "corners", "left", @@ -47268,6 +53162,12 @@ "<percentage>", "auto" ], + "bounce tracking record": [ + "bounce set", + "final host", + "initial host", + "storage access set" + ], "boundary point": [ "after", "before", @@ -47286,8 +53186,31 @@ "slice" ], "box-shadow": [ + "1st <length>", + "2nd <length>", + "3rd <length [0,∞]>", + "4th <length>", + "blur radius", + "horizontal offset", + "inner box-shadow", "inset", - "none" + "none", + "outer box-shadow", + "spread distance", + "vertical offset" + ], + "box-shadow-offset": [ + "1st <length>", + "2nd <length>", + "horizontal offset", + "none", + "vertical offset" + ], + "box-shadow-position": [ + "inner box-shadow", + "inset", + "outer box-shadow", + "outset" ], "box-sizing": [ "border-box", @@ -47345,17 +53268,30 @@ "avoid-region" ], "browsing context": [ - "required csp" + "fenced frame config instance", + "required csp", + "top-level traversable" ], - "buffer internals": [ - "state" + "browsing topics types": [ + "configuration version", + "epoch", + "maximum version string length", + "model", + "model version", + "taxonomy", + "taxonomy version", + "topic ids", + "topic with caller domains", + "topics caller context", + "topics history entry", + "user topics state", + "version" ], - "buffer internals/state": [ - "available", - "destroyed", - "unavailable" + "browsing-topic": [ + "code unit less than" ], "built-in values": [ + "clip_distances", "frag_depth", "front_facing", "global_invocation_id", @@ -47372,7 +53308,6 @@ "button": [ "action", "autocomplete", - "dirname", "disabled", "enctype", "form", @@ -47460,7 +53395,7 @@ "multipart/form-data", "text/plain" ], - "button/method": [ + "button/formmethod": [ "dialog", "get", "post" @@ -47506,10 +53441,21 @@ "nan", "pi" ], + "calc-size()": [ + "any", + "canonicalize for interpolation", + "size" + ], "calculation tree": [ "calc-operator nodes", "operator nodes" ], + "callback function": [ + "parent task" + ], + "calling site": [ + "remaining navigation budget" + ], "canvas": [ "height", "requiredextensions", @@ -47524,17 +53470,30 @@ "top" ], "captured element": [ + "class list", + "containing group name", "group animation name rule", "group keyframes", "group styles rule", + "image animation name rule", "image pair isolation rule", "new element", - "new view-box rule", + "old backdrop-filter", + "old color-scheme", + "old direction", + "old height", "old image", - "old styles", - "old view-box rule", + "old mix-blend-mode", + "old text-orientation", + "old transform", + "old width", + "old writing-mode", "style definitions", - "view blend mode rule" + "transform from snapshot containing block" + ], + "caret-animation": [ + "auto", + "manual" ], "caret-color": [ "auto" @@ -47555,13 +53514,15 @@ "leaf" ], "chrome": [ - "androidversion", - "devicemodel" + "unifiedplatform" ], "circle": [ "requiredextensions", "systemlanguage" ], + "clamp()": [ + "none" + ], "clear": [ "all", "block-end", @@ -47577,6 +53538,10 @@ "right", "top" ], + "client": [ + "endpoint-groups", + "origin" + ], "client mode": [ "auto", "focus-existing", @@ -47609,18 +53574,6 @@ "objectboundingbox", "userspaceonuse" ], - "close watcher": [ - "cancel action", - "close", - "close action", - "destroy", - "is active", - "is grouped with previous", - "is not active", - "is running cancel action", - "was created with user activation", - "window" - ], "code point": [ "utf-8 percent-encode", "value" @@ -47643,6 +53596,7 @@ ], "color()": [ "a98-rgb", + "alpha", "b", "display-p3", "g", @@ -47704,38 +53658,68 @@ "command name", "command parameters", "command type", - "event parameters.", - "result type", - "set of all command names" + "result type" ], "commands": [ + "browser.close", + "browser.createusercontext", + "browser.getusercontexts", + "browser.removeusercontext", + "browsingcontext.activate", "browsingcontext.capturescreenshot", "browsingcontext.close", "browsingcontext.create", "browsingcontext.gettree", "browsingcontext.handleuserprompt", + "browsingcontext.locatenodes", "browsingcontext.navigate", "browsingcontext.print", "browsingcontext.reload", + "browsingcontext.setviewport", + "browsingcontext.traversehistory", + "input.performactions", + "input.releaseactions", + "input.setfiles", + "network.addintercept", + "network.continuerequest", + "network.continueresponse", + "network.continuewithauth", + "network.failrequest", + "network.provideresponse", + "network.removeintercept", + "network.setcachebehavior", "script.addpreloadscript", "script.callfunction", "script.disown", "script.evaluate", "script.getrealms", "script.removepreloadscript", + "session.end", "session.new", "session.status", "session.subscribe", - "session.unsubscribe" + "session.unsubscribe", + "storage.deletecookies", + "storage.getcookies", + "storage.setcookie" ], "component": [ "group name list", + "has regexp groups", "pattern string", "regular expression" ], + "computational graph": [ + "constants", + "input" + ], "compute shader stage": [ "workgroup" ], + "compute the connection status": [ + "connected", + "disconnected" + ], "computed plane layout": [ "destinationoffset", "destinationstride", @@ -47945,6 +53929,9 @@ "[[Constraints]]", "[[Settings]]" ], + "constructor": [ + "<interval>" + ], "constructor string parser": [ "component start", "group depth", @@ -47985,28 +53972,28 @@ "style" ], "contain-intrinsic-block-size": [ + "auto", "auto && <length>", - "auto <length>", "none" ], "contain-intrinsic-height": [ + "auto", "auto && <length>", - "auto <length>", "none" ], "contain-intrinsic-inline-size": [ + "auto", "auto && <length>", - "auto <length>", "none" ], "contain-intrinsic-size": [ + "auto", "auto && <length>", - "auto <length>", "none" ], "contain-intrinsic-width": [ + "auto", "auto && <length>", - "auto <length>", "none" ], "container-name": [ @@ -48019,11 +54006,13 @@ ], "content": [ "/ [ <string> | <counter> ]+", + "/ [ <string> | <counter> | <attr()> ]+", "<content-list>", "<content-replacement>", "<counter>", "<string>", "<uri>", + "attr()", "attr(x)", "close-quote", "contents", @@ -48043,6 +54032,10 @@ "content security policy object": [ "intersection" ], + "content size": [ + "value", + "visibility" + ], "content()": [ "after", "before", @@ -48055,6 +54048,16 @@ "hidden", "visible" ], + "context type": [ + "default", + "webgpu" + ], + "context validation result": [ + "errors", + "validated", + "validateddocument", + "warnings" + ], "continue": [ "-webkit-discard", "auto", @@ -48071,6 +54074,12 @@ "wcag2", "wcag2()" ], + "contribution cache entry": [ + "batching scope", + "contribution", + "debug details", + "debug scope" + ], "cookie": [ "creation-time", "domain", @@ -48134,10 +54143,6 @@ "candidate authenticator", "selected authenticator" ], - "create a close watcher": [ - "cancelaction", - "closeaction" - ], "credential": [ "credential type", "effective" @@ -48148,6 +54153,7 @@ "credential record": [ "attestationClientDataJSON", "attestationObject", + "authenticatorDisplayName", "backupEligible", "backupState", "device-bound key record", @@ -48156,7 +54162,8 @@ "publicKey", "signCount", "transports", - "type" + "type", + "uvInitialized" ], "credential store": [ "Modify a credential", @@ -48165,7 +54172,9 @@ ], "credential type registry": [ "appropriate interface object", + "create permissions policy", "credential type", + "get permissions policy", "options member identifier" ], "credentialCreationData": [ @@ -48177,11 +54186,6 @@ "cross-origin prefetch IP anonymization policy": [ "origin" ], - "cross-partition prefetch state": [ - "isolated partition key", - "origins with conflicting credentials", - "source partition key" - ], "css": [ "ignored", "invalid" @@ -48256,6 +54260,22 @@ "upgrade transaction", "version" ], + "debug details": [ + "enabled", + "key" + ], + "declared policy": [ + "declarations", + "reporting configuration" + ], + "decoded additional bid": [ + "bid", + "negative target interest group names", + "negative target joining origin" + ], + "decomposition": [ + "base" + ], "default allowlist": [ "'self'", "*" @@ -48281,14 +54301,44 @@ "destination": [ "translate" ], + "destination enum event": [ + "attributionreportingcontextorigin", + "attributionreportingenabled", + "data", + "type" + ], + "destination limit record": [ + "attribution destination", + "priority", + "source identifier", + "time" + ], + "destination rate-limit result": [ + "allowed", + "hit global limit", + "hit reporting limit" + ], "details": [ + "name", "open" ], + "determine-topics-calculation-input-data-header": [ + "topics calculation input data" + ], "device": [ "[[adapter]]", + "[[content device]]", "[[features]]", "[[limits]]" ], + "device posture change steps": [ + "disallowrecursion", + "document" + ], + "device sensor": [ + "maximum sampling frequency", + "minimum sampling frequency" + ], "devicePubKey record": [ "aaguid", "attStmt", @@ -48299,6 +54349,12 @@ "dfn": [ "title" ], + "diagnostic": [ + "conflict", + "severity", + "triggering location", + "triggering rule" + ], "dialog": [ "open" ], @@ -48310,6 +54366,19 @@ "optional", "required" ], + "digital credential": [ + "exchange protocol", + "query" + ], + "direct from seller signals": [ + "auction signals", + "per buyer signals", + "seller signals" + ], + "direct from seller signals key": [ + "ad slot", + "seller" + ], "direction": [ "ltr", "rtl" @@ -48326,6 +54395,9 @@ "value", "webrtc pre-connect check" ], + "directive state": [ + "value" + ], "directory": [ "name" ], @@ -48339,6 +54411,10 @@ "requiredextensions", "systemlanguage" ], + "disconnect_endpoint_request": [ + "account_hint", + "client_id" + ], "display": [ "block", "contents", @@ -48371,10 +54447,12 @@ "table-row-group" ], "display mode": [ + "borderless", "browser", "fullscreen", "minimal-ui", "standalone", + "tabbed", "window-controls-overlay" ], "display surface": [ @@ -48389,16 +54467,21 @@ "compact" ], "document": [ - "active dom transition", - "allow text fragment scroll", + "active view transition", + "can initiate outbound view transition", "default document timeline", + "dynamic view transition style sheet", + "inbound view transition params", + "interaction task id to interaction data", + "last interaction task id", "list of pending external speculation rule resources", "list of speculation rule sets", + "potential soft navigation task ids", + "rendering suppression for view transitions", "scripting policy", - "show view-transition root pseudo-element", - "text fragment user activation", - "transition suppressing rendering", - "view transition style sheet" + "show view transition tree", + "task id to interaction task id", + "text directive user activation" ], "document animator definition": [ "stateful flag" @@ -48447,6 +54530,9 @@ "unload event end time", "unload event start time" ], + "document-id-header": [ + "document id" + ], "dominant-baseline": [ "alphabetic", "auto", @@ -48458,6 +54544,11 @@ "text-bottom", "text-top" ], + "dynamic-range-limit": [ + "constrained-high", + "high", + "standard" + ], "easing-function": [ "linear" ], @@ -48469,9 +54560,17 @@ "target element", "target pseudo-selector" ], + "effective enabled permissions": [ + "value", + "visibility" + ], "effective overload set tuple": [ "callable" ], + "effective sandbox flags": [ + "value", + "visibility" + ], "element": [ "forwarded part name list", "hidden", @@ -48480,6 +54579,19 @@ "part name list", "part name map" ], + "eligibility": [ + "empty", + "event-source", + "event-source-or-trigger", + "navigation-source", + "trigger", + "unset" + ], + "eligible key": [ + "event-source", + "navigation-source", + "trigger" + ], "ellipse": [ "requiredextensions", "systemlanguage" @@ -48534,6 +54646,14 @@ "name", "url" ], + "endpoint group": [ + "creation", + "endpoints", + "expired", + "name", + "subdomains", + "ttl" + ], "endpointNumber": [ "endpointNumber(alternate, endpointNumber, direction)" ], @@ -48542,9 +54662,10 @@ ], "entry": [ "file system", + "key", "name", "root", - "the same as" + "value struct" ], "entry list": [ "create an entry", @@ -48572,13 +54693,13 @@ "execution ready flag", "has storage access", "id", + "partition nonce", "target browsing context", "top-level creation url", "top-level origin" ], "environment settings object": [ "api base url", - "api url character encoding", "client hints set", "cross-origin isolated capability", "current monotonic time", @@ -48596,12 +54717,42 @@ "service worker registration object map", "time origin" ], + "epoch": [ + "config version", + "model version", + "taxonomy", + "taxonomy version", + "time", + "top 5 topics with caller domains" + ], + "errors": [ + "no such handle", + "no such history entry", + "no such intercept", + "no such node", + "no such request", + "no such script", + "no such storage partition", + "no such user context", + "unable to close browser", + "unable to set cookie", + "unable to set file input", + "underspecified storage partition" + ], "event": [ - "browsing context event map", "event name", + "event parameters.", "event type", "global event set", - "in the default event set" + "in the default event set", + "navigable event map", + "remote end event trigger", + "remote end subscribe steps", + "subscribe priority" + ], + "event handler": [ + "listener", + "value" ], "event listener": [ "callback", @@ -48612,20 +54763,22 @@ "signal", "type" ], + "event loop": [ + "current scheduling state", + "next enqueue order" + ], "event-level report": [ + "attribution debug info", "attribution destinations", - "delivered", "event id", - "original report time", + "is lower-priority than", "randomized trigger rate", "report id", "report time", - "reporting endpoint", - "source debug key", + "reporting origin", "source identifier", "source type", "trigger data", - "trigger debug key", "trigger priority", "trigger time" ], @@ -48634,12 +54787,16 @@ "filters", "negated filters", "priority", - "trigger data" + "trigger data", + "value" + ], + "event-level-report-replacement result": [ + "add-new-report", + "drop-new-report-low-priority", + "drop-new-report-none-to-replace" ], "exception": [ - "created", - "error name", - "message", + "create", "throw" ], "exchange": [ @@ -48647,8 +54804,6 @@ "response" ], "exchange record": [ - "authentication entry", - "cookie data", "request", "response" ], @@ -48666,6 +54821,16 @@ "validityurl", "validityurlbytes" ], + "exfiltration budget metadata": [ + "amount to debit", + "origin", + "value", + "visibility" + ], + "exfiltration budget metadata reference": [ + "amount to debit reference", + "origin" + ], "extended attribute": [ "takes a named argument list", "takes a wildcard", @@ -48678,9 +54843,20 @@ "applicable to types" ], "extension": [ + "clip_distances", + "dual_source_blending", "f16" ], "extension commands": [ + "add mock camera", + "add mock microphone", + "delete mock camera", + "delete mock capture device", + "get capture prompt result", + "get mock capture devices", + "reset mock capture devices", + "set capture prompt result", + "set default mock microphone device", "set permission" ], "external application resource": [ @@ -48764,6 +54940,9 @@ "duplicate", "wrap" ], + "feGuassianBlur/edgeMode": [ + "mirror" + ], "feImage": [ "crossorigin", "href", @@ -48814,6 +54993,98 @@ "light-estimation", "space-warp" ], + "fenced frame config": [ + "container size", + "content size", + "cross-origin reporting allowed", + "effective enabled permissions", + "effective sandbox flags", + "embedder shared storage context", + "exfiltration budget metadata", + "fenced frame reporting metadata", + "interest group descriptor", + "is ad component", + "mapped url", + "nested configs", + "on navigate callback" + ], + "fenced frame config instance": [ + "container size", + "content size", + "cross-origin reporting allowed", + "effective enabled permissions", + "effective sandbox flags", + "embedder shared storage context", + "exfiltration budget metadata reference", + "fenced frame reporter", + "interest group descriptor", + "is ad component", + "mapped url", + "nested configs", + "on navigate callback", + "partition nonce" + ], + "fenced frame config mapping": [ + "finalize a pending config", + "finalized config mapping", + "find a config", + "maximum number of configs", + "nested config mapping", + "pending config mapping", + "store a pending config", + "store nested configs" + ], + "fenced frame reporter": [ + "fenced frame reporting metadata reference" + ], + "fenced frame reporting metadata": [ + "allowed reporting origins", + "attempted custom url report to disallowed origin", + "direct seller is seller", + "fenced frame reporting map", + "value", + "visibility" + ], + "fenced navigable container": [ + "fenced navigable" + ], + "fencedframe": [ + "allow", + "config", + "height", + "width" + ], + "fencedframeconfig": [ + "containerheight", + "containerwidth", + "contentheight", + "contentwidth", + "sharedstoragecontext", + "url", + "urn", + "visibility" + ], + "fencedframetype": [ + "automatic beacon data", + "automatic beacon event", + "automatic beacon event type", + "destination enum event", + "destination event", + "destination url event", + "exfiltration budget metadata", + "exfiltration budget metadata reference", + "exhaustive set of sandbox flags", + "fenced frame reporter", + "fenced frame reporting map", + "fenced frame reporting metadata", + "interest group descriptor", + "pending event", + "reporting destination info", + "size" + ], + "fencedframeutil": [ + "substitute macros" + ], "fetch": [ "fetch group", "processearlyhintsresponse", @@ -48868,6 +55139,7 @@ "final network-request start time", "final network-response start time", "final service worker start time", + "first interim network-response start time", "post-redirect start time", "redirect end time", "redirect start time", @@ -48880,9 +55152,12 @@ "perform the fetch hook", "processcustomfetchresponse" ], + "field-sizing": [ + "content", + "fixed" + ], "fieldset": [ "autocomplete", - "dirname", "disabled", "form", "form owner", @@ -48978,12 +55253,32 @@ "name", "root" ], + "file system access result": [ + "error name", + "permission state" + ], "file system entry": [ "name", "parent", "query access", "request access", - "resolve" + "the same entry as" + ], + "file system locator": [ + "kind", + "path", + "resolve", + "root", + "the same locator as" + ], + "file system path": [ + "the same path as" + ], + "fill mode": [ + "backwards", + "both", + "forwards", + "none" ], "fill-origin": [ "border-box", @@ -49017,6 +55312,10 @@ "x", "y" ], + "filter config": [ + "lookback window", + "map" + ], "filter-primitive": [ "height", "in", @@ -49036,33 +55335,9 @@ "type", "value" ], - "fire a download-requested navigate event": [ - "destinationurl", - "filename", - "userinvolvement" - ], - "fire a non-traversal navigate event": [ - "classichistoryapiserializeddata", - "destinationurl", - "formdataentrylist", - "issamedocument", - "navigationtype", - "state", - "userinvolvement" - ], - "fire a traversal navigate event": [ - "destinationentry", - "userinvolvement" - ], "firefox": [ "devicecompat" ], - "first-party set": [ - "associatedsites", - "cctlds", - "primary", - "servicesites" - ], "flex": [ "-webkit-box", "-webkit-flex", @@ -49132,9 +55407,10 @@ ], "font-family": [ "cursive", - "emoji", - "fangsong", "fantasy", + "generic(fangsong)", + "generic(kai)", + "generic(nastaliq)", "math", "monospace", "sans-serif", @@ -49164,6 +55440,7 @@ ], "font-palette": [ "<palette-identifier>", + "<palette-mix()>", "dark", "light", "normal" @@ -49189,25 +55466,17 @@ "ic-width", "none" ], - "font-stretch": [ - "condensed", - "expanded", - "extra-condensed", - "extra-expanded", - "normal", - "semi-condensed", - "semi-expanded", - "ultra-condensed", - "ultra-expanded" - ], "font-style": [ "italic", "normal", "oblique", "oblique <angle [-90deg,90deg]>?", - "oblique <angle>?", "small-caps" ], + "font-synthesis-position": [ + "auto", + "none" + ], "font-synthesis-small-caps": [ "auto", "none" @@ -49256,7 +55525,6 @@ "traditional" ], "font-variant-emoji": [ - "auto", "emoji", "normal", "text", @@ -49296,6 +55564,17 @@ "lighter", "normal" ], + "font-width": [ + "condensed", + "expanded", + "extra-condensed", + "extra-expanded", + "normal", + "semi-condensed", + "semi-expanded", + "ultra-condensed", + "ultra-expanded" + ], "footnote-display": [ "block", "compact", @@ -49338,6 +55617,10 @@ "form-associated custom elements": [ "readonly" ], + "form/autocomplete": [ + "off", + "on" + ], "form/enctype": [ "application/x-www-form-urlencoded", "multipart/form-data", @@ -49360,6 +55643,17 @@ "prev", "search" ], + "frame timing info": [ + "current task start time", + "end time", + "first ui event timestamp", + "pending script", + "scripts", + "start time", + "style and layout start time", + "task durations", + "update the rendering start time" + ], "from I/O queue": [ "convert" ], @@ -49376,6 +55670,28 @@ "generate an attribution report URL": [ "isdebugreport" ], + "generate null attribution reports": [ + "report" + ], + "generated bid": [ + "ad", + "ad component descriptors", + "ad cost", + "ad descriptor", + "bid", + "bid ad", + "bid duration", + "bid in seller currency", + "component seller", + "for k-anon auction", + "id", + "interest group", + "modeling signals", + "modified bid", + "number of mandatory ad components", + "provided as additional bid", + "target number of ad components" + ], "getAssert": [ "allowlist", "applicable credentials list", @@ -49430,6 +55746,7 @@ ], "global object": [ "csp list", + "in error reporting mode", "realm" ], "globalThis": [ @@ -49453,6 +55770,7 @@ "globalThis", "isFinite(number)", "isNaN(number)", + "msFromTime(t)", "parseFloat(string)", "parseInt(string, radix)", "undefined", @@ -49492,6 +55810,7 @@ "trash token" ], "grid-template-columns": [ + "<flex [0,∞]>", "<flex>", "<track-list> | <auto-track-list>", "auto", @@ -49507,6 +55826,7 @@ "track sizing function" ], "grid-template-rows": [ + "<flex [0,∞]>", "<flex>", "<track-list> | <auto-track-list>", "auto", @@ -49553,6 +55873,9 @@ "name", "value" ], + "header errors debug data type": [ + "header-parsing-error" + ], "header list": [ "append", "combine", @@ -49578,9 +55901,10 @@ ], "height": [ "auto", + "calc-size()", "contain", "fit-content", - "fit-content(<length-percentage [0,∞]>)", + "fit-content()", "fit-content(<length-percentage>)", "max-content", "min-content", @@ -49629,13 +55953,13 @@ "lang", "part", "popover", - "popoverhidetarget", - "popovershowtarget", - "popovertoggletarget", + "popovertarget", + "popovertargetaction", "spellcheck", "style", "title", - "translate" + "translate", + "writingsuggestions" ], "html-global/autocapitalize": [ "characters", @@ -49645,11 +55969,20 @@ "sentences", "words" ], + "html-global/contenteditable": [ + "false", + "plaintext-only", + "true" + ], "html-global/dir": [ "auto", "ltr", "rtl" ], + "html-global/draggable": [ + "false", + "true" + ], "html-global/enterkeyhint": [ "done", "enter", @@ -49677,16 +56010,26 @@ "auto", "manual" ], + "html-global/popovertargetaction": [ + "hide", + "show", + "toggle" + ], + "html-global/spellcheck": [ + "false", + "true" + ], + "html-global/translate": [ + "no", + "yes" + ], + "html-global/writingsuggestions": [ + "false", + "true" + ], "htmlinputelement": [ "capture" ], - "htmlmediaelement": [ - "mediakeys", - "onencrypted", - "onwaitingforkey", - "setmediakeys", - "setmediakeys()" - ], "htmlsvg-global": [ "nonce", "tabindex" @@ -49728,10 +56071,12 @@ "nonce" ], "iframe": [ + "adauctionheaders", "align", "allow", "allowfullscreen", "allowtransparency", + "browsingtopics", "csp", "frameborder", "framespacing", @@ -49743,10 +56088,12 @@ "marginwidth", "name", "policy object", + "privatetoken", "referrerpolicy", "requiredextensions", "sandbox", "scrolling", + "sharedstoragewritable", "src", "srcdoc", "systemlanguage", @@ -49796,7 +56143,6 @@ "type" ], "image-orientation": [ - "", "<angle>", "flip", "from-image", @@ -49833,6 +56179,7 @@ "lowsrc", "name", "referrerpolicy", + "sharedstoragewritable", "sizes", "src", "srcset", @@ -49921,6 +56268,7 @@ "autocomplete", "border", "button", + "capture", "checkbox", "checked", "color", @@ -50039,6 +56387,11 @@ "username", "work" ], + "input/formmethod": [ + "dialog", + "get", + "post" + ], "input/type": [ "button", "checkbox", @@ -50063,18 +56416,6 @@ "url", "week" ], - "inputevent": [ - "datatransfer", - "gettargetranges", - "gettargetranges()", - "inputevent.datatransfer", - "inputevent.gettargetranges", - "inputevent.gettargetranges()" - ], - "inputeventinit": [ - "datatransfer", - "targetranges" - ], "ins": [ "cite", "datetime" @@ -50088,6 +56429,51 @@ "<percentage>", "auto" ], + "inset()": [ + "equivalent path" + ], + "inset-area": [ + "<inset-area>", + "block-end", + "block-self-end", + "block-self-start", + "block-start", + "bottom", + "center", + "end", + "inline-end", + "inline-self-end", + "inline-self-start", + "inline-start", + "left", + "none", + "right", + "self-end", + "self-start", + "span-all", + "span-block-end", + "span-block-start", + "span-bottom", + "span-end", + "span-inline-end", + "span-inline-start", + "span-start", + "span-top", + "span-x-end", + "span-x-start", + "span-y-end", + "span-y-start", + "start", + "top", + "x-end", + "x-self-end", + "x-self-start", + "x-start", + "y-end", + "y-self-end", + "y-self-start", + "y-start" + ], "inset-block": [ "<length>", "<percentage>", @@ -50124,6 +56510,66 @@ "relatedurls", "version" ], + "intent": [ + "application", + "number" + ], + "interaction data": [ + "contentful paint", + "emitted", + "same document commit", + "start time", + "url" + ], + "interest group": [ + "ad components", + "ad sizes", + "additional bid key", + "ads", + "all sellers capabilities", + "bid counts", + "bidding url", + "bidding wasm helper url", + "enable bidding signals prioritization", + "estimated size", + "execution mode", + "expiry", + "join counts", + "join time", + "joining origin", + "last updated", + "max trusted bidding signals url length", + "name", + "next update after", + "owner", + "previous wins", + "priority", + "priority signals overrides", + "priority vector", + "private aggregation coordinator", + "seller capabilities", + "size groups", + "trusted bidding signals keys", + "trusted bidding signals slot size mode", + "trusted bidding signals url", + "update url", + "user bidding signals" + ], + "interest group ad": [ + "ad render id", + "allowed reporting origins", + "buyer and seller reporting id", + "buyer reporting id", + "metadata", + "render url", + "size group" + ], + "interest group descriptor": [ + "name", + "owner", + "value", + "visibility" + ], "interface": [ "include", "inclusive inherited interfaces", @@ -50142,6 +56588,22 @@ "storage", "storage-read" ], + "interpolate-size": [ + "allow-keywords", + "numeric-only" + ], + "interpolation sampling": [ + "center", + "centroid", + "either", + "first", + "sample" + ], + "interpolation type": [ + "flat", + "linear", + "perspective" + ], "iteration": [ "break", "continue", @@ -50176,6 +56638,7 @@ "stretch" ], "justify-items": [ + "anchor-center", "baseline", "first", "first baseline", @@ -50186,6 +56649,7 @@ "right" ], "justify-self": [ + "anchor-center", "auto", "baseline", "center", @@ -50211,6 +56675,7 @@ "small kana" ], "key": [ + "maximum length", "type", "value" ], @@ -50236,6 +56701,16 @@ "label": [ "for" ], + "language_extension": [ + "packed_4x8_integer_dot_product", + "pointer_composite_access", + "readonly_and_readwrite_storage_textures", + "unrestricted_pointer_parameters" + ], + "largest contentful paint candidate": [ + "element", + "request" + ], "layers": [ "initialize the render state", "update the pending layers state" @@ -50275,11 +56750,27 @@ "solid", "space" ], - "leading-trim": [ - "both", - "end", - "normal", - "start" + "leading bid info": [ + "at most one top bid owner", + "auction config", + "bidding data version", + "buyer reporting result", + "component seller", + "component seller reporting result", + "highest scoring other bid", + "highest scoring other bid owner", + "highest scoring other bids count", + "leading bid", + "leading non-k-anon-enforced bid", + "scoring data version", + "second highest score", + "seller reporting result", + "top bids count", + "top level seller", + "top level seller signals", + "top non-k-anon-enforced bids count", + "top non-k-anon-enforced score", + "top score" ], "left": [ "<length>", @@ -50293,6 +56784,7 @@ "align" ], "letter-spacing": [ + "<length-percentage>", "<length>", "normal" ], @@ -50324,8 +56816,19 @@ "strict" ], "line-clamp": [ + "<block-ellipsis>", + "<integer [1,∞]> <block-ellipsis>?", "none" ], + "line-fit-edge": [ + "alphabetic", + "cap", + "ex", + "ideographic", + "ideographic-ink", + "leading", + "text" + ], "line-gap-override!!descriptor": [ "normal" ], @@ -50403,6 +56906,7 @@ "author", "canonical", "dns-prefetch", + "expect", "help", "icon", "license", @@ -50413,10 +56917,11 @@ "preconnect", "prefetch", "preload", - "prerender", "prev", + "privacy-policy", "search", - "stylesheet" + "stylesheet", + "terms-of-service" ], "list": [ "append", @@ -50603,6 +57108,10 @@ "value", "values" ], + "mapped url": [ + "value", + "visibility" + ], "margin": [ "logical" ], @@ -50698,10 +57207,10 @@ "objectboundingbox", "userspaceonuse" ], - "match an attribution source’s filter data against a filter map": [ + "match an attribution source against a filter config": [ "isnegated" ], - "match an attribution source’s filter data against filters": [ + "match an attribution source against filters": [ "isnegated" ], "math": [ @@ -50735,9 +57244,10 @@ "stretch" ], "max-height": [ + "calc-size()", "contain", "fit-content", - "fit-content(<length-percentage [0,∞]>)", + "fit-content()", "fit-content(<length-percentage>)", "max-content", "min-content", @@ -50753,109 +57263,25 @@ "none" ], "max-width": [ + "calc-size()", "contain", "fit-content", - "fit-content(<length-percentage [0,∞]>)", + "fit-content()", "fit-content(<length-percentage>)", "max-content", "min-content", "none", "stretch" ], - "media session action source": [ - "target" - ], - "mediaencryptedevent": [ - "initdata", - "initdatatype" - ], - "mediaencryptedeventinit": [ - "initdata", - "initdatatype" - ], - "mediakeymessageevent": [ - "message", - "messagetype" - ], - "mediakeymessageeventinit": [ - "message", - "messagetype" - ], - "mediakeymessagetype": [ - "individualization-request", - "license-release", - "license-renewal", - "license-request" - ], - "mediakeys": [ - "createsession", - "createsession()", - "setservercertificate", - "setservercertificate()" - ], - "mediakeysession": [ - "close", - "close()", - "closed", - "expiration", - "generaterequest", - "generaterequest()", - "keystatuses", - "load", - "load()", - "onkeystatuseschange", - "onmessage", - "remove", - "remove()", - "sessionid", - "update", - "update()" - ], - "mediakeysessiontype": [ - "persistent-license", - "temporary" - ], - "mediakeysrequirement": [ - "not-allowed", - "optional", - "required" - ], - "mediakeystatus": [ - "expired", - "internal-error", - "output-downscaled", - "output-restricted", - "released", - "status-pending", - "usable" - ], - "mediakeystatusmap": [ - "get", - "get()", - "has", - "has()", - "iterable", - "size" + "media element": [ + "muted", + "potentially playing" ], - "mediakeysystemaccess": [ - "createmediakeys", - "createmediakeys()", - "getconfiguration", - "getconfiguration()", - "keysystem" - ], - "mediakeysystemconfiguration": [ - "audiocapabilities", - "distinctiveidentifier", - "initdatatypes", - "label", - "persistentstate", - "sessiontypes", - "videocapabilities" + "media key session": [ + "closed" ], - "mediakeysystemmediacapability": [ - "contenttype", - "robustness" + "media session action source": [ + "target" ], "mediastreamconstraints": [ "peeridentity" @@ -50921,9 +57347,10 @@ ], "min-height": [ "auto", + "calc-size()", "contain", "fit-content", - "fit-content(<length-percentage [0,∞]>)", + "fit-content()", "fit-content(<length-percentage>)", "max-content", "min-content", @@ -50946,19 +57373,15 @@ ], "min-width": [ "auto", + "calc-size()", "contain", "fit-content", - "fit-content(<length-percentage [0,∞]>)", + "fit-content()", "fit-content(<length-percentage>)", "max-content", "min-content", "stretch" ], - "mix()": [ - "<end-value>", - "<percentage>", - "<start-value>" - ], "mo": [ "fence", "form", @@ -50972,11 +57395,31 @@ "stretchy", "symmetric" ], + "model": [ + "autoplay", + "controls", + "crossorigin", + "height", + "interactive", + "loading", + "loop", + "muted", + "poster", + "src", + "width" + ], + "module": [ + "module name" + ], "modules": [ + "browser", "browsingcontext", + "input", "log", + "network", "script", - "session" + "session", + "storage" ], "monotonic clock": [ "unsafe current time" @@ -51008,9 +57451,6 @@ "accent", "accentunder" ], - "named view-transition pseudo-element": [ - "view-transition name" - ], "navigable": [ "active browsing context", "active document", @@ -51018,54 +57458,56 @@ "container", "container document", "loading mode", + "parent", "top-level traversable", - "traversable navigable" + "traversable navigable", + "unfenced container document", + "unfenced parent" ], "navigable container": [ "content navigable" ], "navigate": [ - "entrylist", + "documentresource", + "exceptionsenabled", + "formdataentrylist", + "historyhandling", "navigationapistate", - "userinvolvement" - ], - "navigation API method navigation": [ - "clean up", - "committed promise", - "committed-to entry", - "finished promise", - "info", - "key", - "navigation object", - "notify about the committed-to entry", - "reject the finished promise", - "resolve the finished promise", - "serialized state" + "navigationsourceeligible", + "response" ], "navigation params": [ - "prefetched subresource signed exchanges" + "delivery type", + "fenced frame config instance", + "navigationsourceeligible", + "prefetched subresource signed exchanges", + "user involvement" ], "navigation style values": [ "custom", "default" ], - "navigator": [ - "donottrack", - "navigator.donottrack", - "navigator.removetrackingexception", - "navigator.removetrackingexception()", - "navigator.storetrackingexception", - "navigator.storetrackingexception()", - "navigator.trackingexceptionexists", - "navigator.trackingexceptionexists()", - "removetrackingexception", - "removetrackingexception()", - "requestmediakeysystemaccess", - "requestmediakeysystemaccess()", - "storetrackingexception", - "storetrackingexception()", - "trackingexceptionexists", - "trackingexceptionexists()" + "nested configs": [ + "value", + "visibility" + ], + "network reporting endpoint": [ + "pending", + "priority", + "retry_after", + "weight" + ], + "network_reporting_endpoints": [ + "endpoints", + "group", + "include_subdomains", + "max_age", + "priority", + "url", + "weight" + ], + "new_tab_button": [ + "url" ], "nfc": [ "nfc user presence maximum time limit", @@ -51074,6 +57516,10 @@ "no-composite": [ "no-composite" ], + "node": [ + "appended by soft navigation", + "context origin" + ], "none": [ "<link-param>+", "none" @@ -51082,7 +57528,7 @@ "new_note_url" ], "notification": [ - "action", + "actions", "badge resource", "badge url", "body", @@ -51117,7 +57563,6 @@ "codetype", "data", "declare", - "dirname", "disabled", "form", "form owner", @@ -51233,28 +57678,33 @@ "setting the length" ], "obtain a connection": [ - "http3only" + "requireunreliable" + ], + "obtain an event-level report": [ + "triggerdebugkey" ], - "obtain and deliver a debug report on trigger registration": [ + "obtain and deliver debug reports on trigger registration": [ "sourcetoattribute" ], - "obtain debug data body on trigger registration": [ + "obtain verbose debug data body on trigger registration": [ "report", "sourcetoattribute" ], - "obtain debug data on trigger registration": [ + "obtain verbose debug data on trigger registration": [ "report", "sourcetoattribute" ], - "offset path": [ - "initial direction", - "initial position" + "offset-anchor": [ + "auto" ], "offset-path": [ + "<offset-path> || <coord-box>", + "<ray()>", "none" ], "offset-position": [ - "auto" + "auto", + "normal" ], "offset-rotate": [ "auto", @@ -51269,9 +57719,6 @@ "path()", "ray()" ], - "offsetpath-pathfunc": [ - "path()" - ], "oklab()": [ "a", "alpha", @@ -51297,15 +57744,30 @@ "a", "i" ], + "on event contribution cache entry": [ + "batching scope", + "contribution", + "debug details", + "debug scope", + "worklet function" + ], + "opacity": [ + "<opacity-value>" + ], "opaque framebuffer": [ "session" ], "operator": [ + "activation", + "activation function", "arithmetic", "atop", "in", + "input", + "label", "lighter", "out", + "output", "over", "xor" ], @@ -51328,10 +57790,6 @@ "ignore case", "prefix code point" ], - "order": [ - "layout", - "reading" - ], "origin": [ "domain", "host", @@ -51347,11 +57805,11 @@ "top-level host" ], "outline-color": [ + "auto", "invert" ], "output": [ "autocomplete", - "dirname", "disabled", "for", "form", @@ -51428,6 +57886,7 @@ "auto", "clip", "hidden", + "overlay", "scroll", "visible" ], @@ -51435,6 +57894,12 @@ "auto", "none" ], + "overflow-block": [ + "overlay" + ], + "overflow-inline": [ + "overlay" + ], "overflow-wrap": [ "anywhere", "break-word", @@ -51444,6 +57909,7 @@ "auto", "clip", "hidden", + "overlay", "scroll", "visible" ], @@ -51451,9 +57917,14 @@ "auto", "clip", "hidden", + "overlay", "scroll", "visible" ], + "overlay": [ + "auto", + "none" + ], "overscroll-behavior": [ "auto", "contain", @@ -51604,12 +58075,21 @@ "reason", "was already erroring" ], + "pending event": [ + "destination", + "event" + ], "pending external speculation rule resource": [ "cancel and discard", "controller", "fetch", "url" ], + "pending image record": [ + "element", + "loadtime", + "request" + ], "pending processor construction data": [ "node reference", "transferred port" @@ -51628,6 +58108,9 @@ "in the background" ], "permission": [ + "\"denied\"", + "\"granted\"", + "\"prompt\"", "denied", "grant", "granted", @@ -51646,6 +58129,13 @@ "key", "state" ], + "permissions policy": [ + "declared policy", + "inherited policy" + ], + "permissions policy state": [ + "private aggregation enabled" + ], "perms-param": [ "permissions" ], @@ -51662,10 +58152,6 @@ "right", "top" ], - "phases": [ - "after", - "before" - ], "physical address": [ "address line", "city", @@ -51701,6 +58187,10 @@ "pixel": [ "color depth" ], + "platform collector": [ + "activated", + "associated pressure source" + ], "platform object": [ "[[Detached]]", "post-prerendering activation steps list" @@ -51711,6 +58201,12 @@ "paused", "running" ], + "playback direction": [ + "alternate", + "alternate-reverse", + "normal", + "reverse" + ], "point": [ "w perspective", "x coordinate", @@ -51743,7 +58239,11 @@ "bluetooth", "default allowlist", "default allowlists", - "serial" + "direct-sockets", + "private-state-token-issuance", + "private-state-token-redemption", + "serial", + "smart-card" ], "polygon": [ "points", @@ -51770,9 +58270,79 @@ "static", "sticky" ], - "position-fallback": [ + "position-area": [ + "<position-area>", + "block-end", + "block-self-end", + "block-self-start", + "block-start", + "bottom", + "center", + "end", + "inline-end", + "inline-self-end", + "inline-self-start", + "inline-start", + "left", + "none", + "right", + "self-end", + "self-start", + "span-all", + "span-block-end", + "span-block-start", + "span-bottom", + "span-end", + "span-inline-end", + "span-inline-start", + "span-start", + "span-top", + "span-x-end", + "span-x-start", + "span-y-end", + "span-y-start", + "start", + "top", + "x-end", + "x-self-end", + "x-self-start", + "x-start", + "y-end", + "y-self-end", + "y-self-start", + "y-start" + ], + "position-try-fallbacks": [ + "<'position-area'>", + "<dashed-ident> || <try-tactic>", + "<try-tactic>", + "flip-block", + "flip-inline", + "flip-start", "none" ], + "position-try-options": [ + "<dashed-ident> || <try-tactic>", + "<try-tactic>", + "flip-block", + "flip-inline", + "flip-start", + "inset-area( <'inset-area'> )", + "none" + ], + "position-try-order": [ + "most-block-size", + "most-height", + "most-inline-size", + "most-width", + "normal" + ], + "position-visibility": [ + "always", + "anchors-valid", + "anchors-visible", + "no-overflow" + ], "powerful feature": [ "aspects", "default permission state", @@ -51792,6 +58362,10 @@ "pre": [ "width" ], + "pre-specified report parameters": [ + "context id", + "filtering id max bytes" + ], "prefetch IP anonymization policy": [ "requires anonymity" ], @@ -51799,6 +58373,7 @@ "anonymization policy", "continues", "eagerness", + "no-vary-search hint", "referrer policy", "url" ], @@ -51808,32 +58383,60 @@ "complete", "expiry time", "fetch controller", + "had conflicting credentials", + "is expected to match a url", + "isolated partition key", "label", - "partition state", + "matches a url", + "no-vary-search hint", "redirect chain", "referrer policy", "response", "sandboxing flag set", + "source partition key", + "start time", "state", "url" ], "prerender candidate": [ "eagerness", + "no-vary-search hint", "referrer policy", "target navigable name hint", "url" ], + "prerender record": [ + "is expected to match a url", + "matches a url", + "no-vary-search hint", + "prerendering traversable", + "start time", + "starting url" + ], "prerendering navigable": [ "prerender-scoped accept-ch cache" ], "prerendering traversable": [ "activate", "finalize activation", - "remove from referrer" + "prerender initial response search variance", + "remove from referrer", + "update the successor for activation" ], "prescan a byte stream to determine its encoding": [ "end condition" ], + "pressure source": [ + "latest sample" + ], + "pressure source sample": [ + "data", + "timestamp" + ], + "previous win": [ + "ad json", + "time" + ], "primitiveUnits": [ "objectboundingbox", "userspaceonuse" @@ -51856,10 +58459,9 @@ "react", "reacting" ], - "propdef-footnote-display": [ - "block", - "compact", - "inline" + "prompt handler configuration": [ + "handler", + "notify" ], "property": [ "scoped", @@ -51873,7 +58475,12 @@ "scoped to the sub-tree" ], "protocol": [ - "webtransport session" + "webtransport session", + "webtransport stream" + ], + "protocol handler description": [ + "protocol", + "url" ], "public key": [ "algorithm" @@ -51895,6 +58502,7 @@ "byte offset", "bytes filled", "element size", + "minimum fill", "reader type", "view constructor" ], @@ -51907,9 +58515,8 @@ "point 3", "point 4" ], - "query set state": [ - "available", - "destroyed" + "qualifier": [ + "<interval>" ], "queue": [ "clone", @@ -51934,15 +58541,17 @@ "quotes": [ "[<string> <string>]+", "auto", + "match-parent", "none" ], + "race response": [ + "value" + ], "radial-gradient()": [ - "<ending-shape>", "<length [0,∞]>", "<length-percentage [0,∞]>{2}", - "<rg-ending-shape>", - "<rg-size>", - "<size>", + "<radial-shape>", + "<radial-size>", "closest-corner", "closest-side", "farthest-corner", @@ -51963,6 +58572,10 @@ "xlink:href", "xlink:title" ], + "randomized response output configuration": [ + "max attributions per source", + "trigger specs" + ], "range": [ "collapsed", "end", @@ -51974,12 +58587,15 @@ "start offset" ], "rate-limit scope": [ - "attribution", + "aggregatable-attribution", + "event-attribution", "source" ], "ray()": [ "<ray-size>", - "contain" + "at <position>", + "contain", + "origin" ], "read buffer": [ "bytes", @@ -52004,15 +58620,33 @@ "byte length", "byte offset" ], + "reading-flow": [ + "flex-flow", + "flex-visual", + "grid-columns", + "grid-order", + "grid-rows", + "normal" + ], + "real time reporting contribution": [ + "bucket", + "latency threshold", + "priority weight" + ], "realm": [ + "agent", "change", "global object", + "is global prototype chain mutable", "settings object" ], "rect": [ "requiredextensions", "systemlanguage" ], + "rect()": [ + "equivalent path" + ], "rectangle": [ "height dimension", "origin", @@ -52021,78 +58655,85 @@ "y coordinate" ], "recursive descent syntax": [ - "access_mode", "additive_operator", - "address_space", "argument_expression_list", "assignment_statement/0.1", "attribute", "bitwise_expression.post.unary_expression", "bool_literal", - "builtin_value_name", - "callable", "case_selector", "component_or_swizzle_specifier", "compound_assignment_operator", "compound_statement", + "compute_attr", + "const_attr", "core_lhs_expression", "decimal_float_literal", "decimal_int_literal", - "depth_texture_type", - "element_count_expression", + "diagnostic_control", + "diagnostic_rule_name", "expression", "float_literal", "for_init", "for_update", + "fragment_attr", + "func_call_statement.post.ident", "global_decl", + "global_directive", + "global_value_decl", "hex_float_literal", "ident", "int_literal", - "interpolation_sample_name", - "interpolation_type_name", + "interpolate_attr", + "invariant_attr", "lhs_expression", "literal", - "mat_prefix", "member_ident", "multiplicative_operator", + "must_use_attr", "optionally_typed_ident", "param", "primary_expression", "relational_expression.post.unary_expression", - "sampled_texture_type", - "sampler_type", "shift_expression.post.unary_expression", "statement", - "storage_texture_type", - "switch_body", + "switch_clause", "swizzle_name", - "texel_format", - "texture_and_sampler_types", + "template_arg_expression", + "template_elaborated_ident.post.ident", "translation_unit", "type_specifier", - "type_specifier_without_ident", "unary_expression", "variable_decl", - "variable_statement", + "variable_or_value_statement", "variable_updating_statement", - "vec_prefix" + "vertex_attr", + "workgroup_size_attr" ], "redirect chain": [ - "append", - "has updated credentials", "update the response" ], "registered observer": [ "observer", "options" ], + "registrar": [ + "os", + "web" + ], + "registration info": [ + "preferred platform", + "report header errors" + ], + "related website set": [ + "associatedsites", + "cctlds", + "primary", + "servicesites" + ], "relevant global object": [ "[[explicitlyGrantedAudioOutputDevices]]" ], - "reload": [ - "navigationapistate", - "userinvolvement" - ], "render pass layout": [ "equal", "equals" @@ -52105,12 +58746,10 @@ "gradient center" ], "repeating-radial-gradient()": [ - "<ending-shape>", "<length [0,∞]>", "<length-percentage [0,∞]>{2}", - "<rg-ending-shape>", - "<rg-size>", - "<size>", + "<radial-shape>", + "<radial-size>", "closest-corner", "closest-side", "farthest-corner", @@ -52126,14 +58765,33 @@ "url", "user agent" ], + "report window": [ + "end", + "start" + ], + "report window list": [ + "total window" + ], + "reporting destination info": [ + "reporting macro map", + "reporting url map" + ], + "reporting result": [ + "report url", + "reporting beacon map", + "reporting macro map" + ], "representation": [ "data", + "iscustom", "mime type" ], "request": [ "add a range header", + "attribution reporting eligibility", "body", "cache mode", + "capture-ad-auction-headers", "client", "clone", "credentials mode", @@ -52160,8 +58818,12 @@ "policy container", "prevent no-cache cache-control header modification flag", "priority", + "private token issuers", + "private token operation", + "private token refresh policy", "processed", "processed flag", + "pstpretokens", "redirect count", "redirect mode", "redirect-tainted origin", @@ -52173,11 +58835,13 @@ "reserved client", "response tainting", "result", + "send browsing topics header boolean", "service-workers mode", + "shared storage writable", "source", "stashed exchange", "target ip address space", - "text fragment user activation", + "text directive user activation", "timing allow failed flag", "transaction", "unsafe-request flag", @@ -52218,6 +58882,7 @@ "url list" ], "response body info": [ + "content type", "decoded size", "encoded size" ], @@ -52323,9 +58988,6 @@ "over", "under" ], - "same-partition prefetch state": [ - "source partition key" - ], "scalar value string": [ "code point length", "length" @@ -52338,11 +59000,23 @@ "older than" ], "scheduler task queue": [ + "effective priority", + "empty", "first runnable task", + "is continuation", "priority", + "removal steps", "remove", "tasks" ], + "scheduling state": [ + "abort source", + "priority source" + ], + "scoping details": [ + "get batching scope steps", + "get debug scope steps" + ], "screen": [ "advanced observable properties", "available height", @@ -52377,6 +59051,7 @@ "integrity", "language", "nomodule", + "parent task", "parse error", "parser-inserted", "record", @@ -52387,10 +59062,32 @@ "xlink:href", "xlink:title" ], + "script fetch options": [ + "attribution reporting eligibility" + ], + "script fetcher": [ + "origins authorized for cross origin trusted signals", + "script body" + ], "script resource": [ "has ever been evaluated flag", "policy container" ], + "script timing info": [ + "end time", + "event target element id", + "event target element src attribute", + "event type", + "execution start time", + "invoker name", + "invoker type", + "pause duration", + "source character position", + "source function name", + "source url", + "start time", + "window" + ], "script/crossorigin": [ "anonymous", "use-credentials" @@ -52422,11 +59119,12 @@ ], "scroll()": [ "block", - "horizontal", "inline", "nearest", "root", - "vertical" + "self", + "x", + "y" ], "scroll-anchoring": [ "anchor node" @@ -52435,6 +59133,11 @@ "auto", "smooth" ], + "scroll-marker-group": [ + "after", + "before", + "none" + ], "scroll-padding": [ "auto" ], @@ -52476,24 +59179,6 @@ "x", "y" ], - "scroll-start": [ - "auto", - "center", - "end", - "start" - ], - "scroll-start-block": [ - "auto", - "center", - "end", - "start" - ], - "scroll-start-inline": [ - "auto", - "center", - "end", - "start" - ], "scroll-start-target": [ "auto", "none" @@ -52514,25 +59199,14 @@ "auto", "none" ], - "scroll-start-x": [ - "auto", - "center", - "end", - "start" - ], - "scroll-start-y": [ - "auto", - "center", - "end", - "start" - ], "scroll-timeline-axis": [ "block", - "horizontal", "inline", "nearest", "root", - "vertical" + "self", + "x", + "y" ], "scrollbar-color": [ "auto" @@ -52555,7 +59229,6 @@ ], "select": [ "autocomplete", - "dirname", "disabled", "drop-down box", "form", @@ -52632,18 +59305,49 @@ "username", "work" ], + "selectURL": [ + "input url list" + ], "selector": [ "combinator", "subject", "subject of a selector", "subject of the selector" ], + "sensor type": [ + "maximum sampling frequency", + "minimum sampling frequency" + ], + "server auction browser signals": [ + "bid count", + "join count", + "previous wins", + "recency ms" + ], + "server auction interest group": [ + "ads", + "bidding signals keys", + "browser signals", + "components", + "name", + "user bidding signals" + ], + "server auction previous win": [ + "ad render id", + "time delta" + ], + "server auction request context": [ + "request context", + "request id" + ], "service worker": [ + "all fetch listeners are empty flag", "classic scripts imported flag", "containing service worker registration", "functional events", "global object", "lifecycle events", + "list of router rules", "registration", "running", "script resource", @@ -52692,6 +59396,7 @@ "session": [ "create a bidirectional stream", "create an outgoing unidirectional stream", + "draining", "establish", "receive a bidirectional stream", "receive a datagram", @@ -52700,16 +59405,17 @@ "terminate", "terminated" ], - "session history entry": [ - "navigation api id", - "navigation api key", - "navigation api state" + "session-signal": [ + "drain_webtransport_session", + "goaway" ], "set": [ "append", "clone", "contain", + "difference", "empty", + "equal", "exist", "for each", "get the indices", @@ -52744,6 +59450,12 @@ "setMinPINLength": [ "pre-configured list of rp ids authorized to receive" ], + "severity": [ + "error", + "info", + "off", + "warning" + ], "shadow root": [ "part element map" ], @@ -52786,6 +59498,21 @@ "none", "padding-box" ], + "shared storage database": [ + "clear all entries in the database", + "count entries in the database", + "delete an entry from the database", + "determine whether an entry is expired", + "entry", + "purge expired entries from the database", + "retrieve all entries from the database", + "retrieve an entry from the database", + "shared storage database queue", + "store an entry in the database" + ], + "she": [ + "directive state" + ], "shortcut item": [ "description", "icons", @@ -52793,6 +59520,17 @@ "short_name", "url" ], + "signal base value": [ + "bid-reject-reason", + "highest-scoring-other-bid", + "script-run-time", + "signals-fetch-time", + "winning-bid" + ], + "signed additional bid signature": [ + "key", + "signature" + ], "signed exchange report": [ "cert server ip list", "cert url list", @@ -52814,6 +59552,10 @@ "site": [ "same site" ], + "size": [ + "height", + "width" + ], "skeleton joint": [ "radius" ], @@ -52830,6 +59572,7 @@ "source": [ "height", "media", + "muted", "sizes", "src", "srcset", @@ -52837,10 +59580,20 @@ "width" ], "source debug data type": [ + "source-channel-capacity-limit", + "source-destination-global-rate-limit", "source-destination-limit", + "source-destination-limit-replaced", + "source-destination-per-day-rate-limit", + "source-destination-rate-limit", + "source-max-event-states-limit", "source-noised", + "source-reporting-origin-limit", + "source-reporting-origin-per-site-limit", + "source-scopes-channel-capacity-limit", "source-storage-limit", "source-success", + "source-trigger-state-cardinality-limit", "source-unknown-error" ], "source expression": [ @@ -52853,13 +59606,48 @@ "intersection" ], "source snapshot params": [ + "attribution reporting context origin", + "attribution reporting enabled", + "automatic beacon data map", + "automatic beacons allowed", "environment id", - "has storage access" + "has storage access", + "initiator fenced frame config instance", + "target fenced frame config" ], "source type": [ "event", "navigation" ], + "source-registration JSON key": [ + "aggregatable_debug_reporting", + "aggregatable_report_window", + "aggregation_keys", + "attribution_scopes", + "budget", + "debug_key", + "debug_reporting", + "destination", + "destination_limit_priority", + "end_times", + "event_level_epsilon", + "event_report_window", + "event_report_windows", + "expiry", + "filter_data", + "limit", + "max_event_level_reports", + "max_event_states", + "priority", + "source_event_id", + "start_time", + "summary_buckets", + "summary_operator", + "trigger_data", + "trigger_data_matching", + "trigger_specs", + "values" + ], "spatial-navigation-action": [ "auto", "focus", @@ -52887,6 +59675,7 @@ ], "speculation rule": [ "eagerness", + "no-vary-search hint", "predicate", "referrer policy", "requirements", @@ -52907,6 +59696,7 @@ "is empty", "is not empty", "item", + "peek", "pop", "push", "size", @@ -52955,6 +59745,10 @@ "proxy map reference set", "quota" ], + "storage bucket": [ + "removed", + "storage usage" + ], "storage endpoint": [ "identifier", "quota", @@ -52962,7 +59756,9 @@ ], "storage key": [ "equal", - "origin" + "origin", + "storage-key-nonce", + "storage-key-origin" ], "storage proxy map": [ "backing map" @@ -53071,6 +59867,14 @@ "unit map", "value" ], + "summary bucket": [ + "end", + "start" + ], + "summary operator": [ + "count", + "value_sum" + ], "superscript-position-override!!descriptor": [ "from-font", "normal" @@ -53081,6 +59885,7 @@ ], "supported limits": [ "maxBindGroups", + "maxBindGroupsPlusVertexBuffers", "maxBindingsPerBindGroup", "maxBufferSize", "maxColorAttachmentBytesPerSample", @@ -53134,35 +59939,35 @@ "refy" ], "syntax": [ - "_blankspace", "_reserved", - "access_mode", "additive_expression", "additive_operator", - "address_space", + "align_attr", "argument_expression_list", - "array_type_specifier", "assignment_statement", - "attrib_end", "attribute", "binary_and_expression", "binary_or_expression", "binary_xor_expression", + "binding_attr", "bitwise_expression", + "blend_src_attr", "bool_literal", "break_if_statement", "break_statement", + "builtin_attr", "builtin_value_name", "call_expression", "call_phrase", - "callable", "case_clause", "case_selector", "case_selectors", "component_or_swizzle_specifier", "compound_assignment_operator", "compound_statement", + "compute_attr", "const_assert_statement", + "const_attr", "continue_statement", "continuing_compound_statement", "continuing_statement", @@ -53171,85 +59976,94 @@ "decimal_int_literal", "decrement_statement", "default_alone_clause", - "depth_texture_type", - "element_count_expression", + "diagnostic_attr", + "diagnostic_control", + "diagnostic_directive", + "diagnostic_name_token", + "diagnostic_rule_name", "else_clause", "else_if_clause", "enable_directive", + "enable_extension_list", + "enable_extension_name", "expression", "expression_comma_list", - "extension_name", "float_literal", "for_header", "for_init", "for_statement", "for_update", + "fragment_attr", "func_call_statement", "function_decl", "function_header", - "global_constant_decl", "global_decl", "global_directive", + "global_value_decl", "global_variable_decl", + "group_attr", "hex_float_literal", "hex_int_literal", + "id_attr", "ident", "ident_pattern_token", "if_clause", "if_statement", "increment_statement", "int_literal", - "interpolation_sample_name", - "interpolation_type_name", + "interpolate_attr", + "interpolate_sampling_name", + "interpolate_type_name", + "invariant_attr", "lhs_expression", "literal", + "location_attr", "loop_statement", - "mat_prefix", "member_ident", "multiplicative_expression", "multiplicative_operator", - "multisampled_texture_type", + "must_use_attr", "optionally_typed_ident", "param", "param_list", "paren_expression", "primary_expression", "relational_expression", + "requires_directive", "return_statement", - "sampled_texture_type", - "sampler_type", + "severity_control_name", "shift_expression", "short_circuit_and_expression", "short_circuit_or_expression", "singular_expression", + "size_attr", + "software_extension_list", + "software_extension_name", "statement", - "storage_texture_type", "struct_body_decl", "struct_decl", "struct_member", "switch_body", + "switch_clause", "switch_statement", "swizzle_name", - "texel_format", - "texture_and_sampler_types", + "template_arg_comma_list", + "template_arg_expression", + "template_elaborated_ident", + "template_list", "translation_unit", "type_alias_decl", "type_specifier", - "type_specifier_without_ident", "unary_expression", "variable_decl", - "variable_qualifier", - "variable_statement", + "variable_or_value_statement", "variable_updating_statement", - "vec_prefix", - "while_statement" + "vertex_attr", + "while_statement", + "workgroup_size_attr" ], "syntax_kw": [ "alias", - "array", - "atomic", - "bitcast", - "bool", "break", "case", "const", @@ -53257,59 +60071,35 @@ "continue", "continuing", "default", + "diagnostic", "discard", "else", "enable", - "f16", - "f32", "false", "fn", "for", - "i32", "if", "let", "loop", - "mat2x2", - "mat2x3", - "mat2x4", - "mat3x2", - "mat3x3", - "mat3x4", - "mat4x2", - "mat4x3", - "mat4x4", "override", - "ptr", + "requires", "return", - "sampler", - "sampler_comparison", "struct", "switch", - "texture_1d", - "texture_2d", - "texture_2d_array", - "texture_3d", - "texture_cube", - "texture_cube_array", - "texture_depth_2d", - "texture_depth_2d_array", - "texture_depth_cube", - "texture_depth_cube_array", - "texture_depth_multisampled_2d", - "texture_multisampled_2d", - "texture_storage_1d", - "texture_storage_2d", - "texture_storage_2d_array", - "texture_storage_3d", "true", - "u32", "var", - "vec2", - "vec3", - "vec4", "while" ], "syntax_sym": [ + "_disambiguate_template", + "_greater_than", + "_greater_than_equal", + "_less_than", + "_less_than_equal", + "_shift_left", + "_shift_left_assign", + "_shift_right", + "_shift_right_assign", "_template_args_end", "_template_args_start", "and", @@ -53362,6 +60152,10 @@ "system": [ "symbolic" ], + "system clipboard representation": [ + "data", + "name" + ], "table": [ "align", "bgcolor", @@ -53381,9 +60175,17 @@ "fixed" ], "task": [ - "end time", - "script evaluation environment settings", - "start time" + "parent task", + "task attribution id" + ], + "task handle": [ + "abort steps", + "queue", + "task", + "task complete steps" + ], + "task scope": [ + "task" ], "tbody": [ "align", @@ -53408,6 +60210,35 @@ "valign", "width" ], + "template": [ + "shadowrootclonable", + "shadowrootdelegatesfocus", + "shadowrootmode", + "shadowrootserializable" + ], + "template/shadowrootmode": [ + "closed", + "open" + ], + "texel format": [ + "bgra8unorm", + "r32float", + "r32sint", + "r32uint", + "rg32float", + "rg32sint", + "rg32uint", + "rgba16float", + "rgba16sint", + "rgba16uint", + "rgba32float", + "rgba32sint", + "rgba32uint", + "rgba8sint", + "rgba8snorm", + "rgba8uint", + "rgba8unorm" + ], "text": [ "dx", "dy", @@ -53419,6 +60250,12 @@ "x", "y" ], + "text directive": [ + "end", + "prefix", + "start", + "suffix" + ], "text style values": [ "black", "white" @@ -53438,6 +60275,7 @@ "auto" ], "text-autospace": [ + "auto", "ideograph-alpha", "ideograph-numeric", "insert", @@ -53446,6 +60284,18 @@ "punctuation", "replace" ], + "text-box": [ + "normal" + ], + "text-box-edge": [ + "auto" + ], + "text-box-trim": [ + "none", + "trim-both", + "trim-end", + "trim-start" + ], "text-combine-upright": [ "all", "digits <integer [2,4]>?", @@ -53513,15 +60363,6 @@ "ltr", "rtl" ], - "text-edge": [ - "alphabetic", - "cap", - "ex", - "ideographic", - "ideographic-ink", - "leading", - "text" - ], "text-emphasis-position": [ "left", "over", @@ -53583,43 +60424,20 @@ "auto", "none" ], - "text-space-collapse": [ - "collapse", - "discard", - "preserve", - "preserve-breaks", - "preserve-spaces" - ], - "text-space-trim": [ - "discard-after", - "discard-before", - "discard-inner" - ], "text-spacing": [ "<autospace>", "<spacing-trim>", - "allow-end", "auto", - "ideograph-alpha", - "ideograph-numeric", - "no-compress", - "none", - "normal", - "punctuation", - "space-adjacent", - "space-end", - "space-first", - "space-start", - "trim-adjacent", - "trim-end", - "trim-start" + "none" ], "text-spacing-trim": [ - "allow-end", "auto", + "normal", "space-all", "space-first", - "trim-auto" + "trim-all", + "trim-both", + "trim-start" ], "text-text-emphasis": [ "open" @@ -53629,6 +60447,7 @@ "full-size-kana", "full-width", "lowercase", + "math-auto", "none", "uppercase" ], @@ -53642,13 +60461,16 @@ "right", "under" ], - "text-wrap": [ - "balance", + "text-wrap-mode": [ "nowrap", - "pretty", - "stable", "wrap" ], + "text-wrap-style": [ + "auto", + "balance", + "pretty", + "stable" + ], "textPath": [ "href", "method", @@ -53752,6 +60574,14 @@ "ltr", "rtl" ], + "texture": [ + "array size", + "arrayed", + "dimensionality", + "mip level count", + "sample count", + "size" + ], "th": [ "abbr", "align", @@ -53769,7 +60599,6 @@ "width" ], "th/scope": [ - "auto", "col", "colgroup", "row", @@ -53781,6 +60610,18 @@ "timeline": [ "current time" ], + "timeline-scope": [ + "all", + "none" + ], + "timeouts": [ + "implicit wait timeout", + "page load timeout", + "script timeout" + ], + "timer": [ + "timeout fired flag" + ], "to I/O queue": [ "convert" ], @@ -53789,6 +60630,20 @@ "type", "value" ], + "token stream": [ + "consume a token", + "discard a mark", + "discard a token", + "discard whitespace", + "empty", + "index", + "mark", + "marked indexes", + "next token", + "process", + "restore a mark", + "tokens" + ], "token/type": [ "asterisk", "char", @@ -53807,6 +60662,7 @@ ], "tokenizer": [ "code point", + "consume a token", "index", "input", "next index", @@ -53818,11 +60674,26 @@ "<percentage>", "auto" ], - "top layer": [ - "add" - ], "top-level traversable": [ - "system focus" + "[[PostureOverride]]", + "bounce tracking record", + "system focus", + "user attention" + ], + "topic with caller domains": [ + "caller domains", + "topic id" + ], + "topics caller context": [ + "caller domain", + "timestamp", + "top level context domain" + ], + "topics history entry": [ + "document id", + "time", + "topics calculation input data", + "topics caller domains" ], "tr": [ "align", @@ -53835,7 +60706,6 @@ "track": [ "[[frameCaptureRequested]]", "default", - "ended", "kind", "label", "src", @@ -53852,17 +60722,6 @@ "metadata", "subtitles" ], - "trackingexdata": [ - "details", - "explanation", - "maxage", - "name", - "site", - "targets" - ], - "trackingexresult": [ - "issitewide" - ], "transaction": [ "abort", "aborted", @@ -53880,6 +60739,7 @@ "finished", "inactive", "lifetime", + "live", "mode", "overlap", "overlapping scope", @@ -53946,7 +60806,12 @@ "none" ], "traversable navigable": [ - "storage shed" + "captured ad auction additional bids headers", + "captured ad auction signals headers", + "fenced frame config mapping", + "saved bidding and auction request context", + "storage shed", + "unfenced parent" ], "traversal": [ "active flag", @@ -53954,9 +60819,6 @@ "root", "whattoshow" ], - "traverse the history by a delta": [ - "userinvolvement" - ], "tree": [ "ancestor", "child", @@ -53979,18 +60841,29 @@ "root", "sibling" ], + "trigger": [ + "derivative_uniformity" + ], + "trigger debug data": [ + "data type", + "report" + ], "trigger debug data type": [ + "trigger-aggregate-attributions-per-source-destination-limit", "trigger-aggregate-deduplicated", + "trigger-aggregate-excessive-reports", "trigger-aggregate-insufficient-budget", "trigger-aggregate-no-contributions", "trigger-aggregate-report-window-passed", "trigger-aggregate-storage-limit", - "trigger-attributions-per-source-destination-limit", + "trigger-event-attributions-per-source-destination-limit", "trigger-event-deduplicated", "trigger-event-excessive-reports", "trigger-event-low-priority", "trigger-event-no-matching-configurations", + "trigger-event-no-matching-trigger-data", "trigger-event-noise", + "trigger-event-report-window-not-started", "trigger-event-report-window-passed", "trigger-event-storage-limit", "trigger-no-matching-filter-data", @@ -53998,10 +60871,41 @@ "trigger-reporting-origin-limit", "trigger-unknown-error" ], + "trigger spec": [ + "event-level report windows" + ], "trigger state": [ "report window", "trigger data" ], + "trigger-data matching mode": [ + "exact", + "modulus" + ], + "trigger-registration JSON key": [ + "aggregatable_debug_reporting", + "aggregatable_deduplication_keys", + "aggregatable_filtering_id_max_bytes", + "aggregatable_source_registration_time", + "aggregatable_trigger_data", + "aggregatable_values", + "aggregation_coordinator_origin", + "attribution_scopes", + "debug_key", + "debug_reporting", + "deduplication_key", + "event_trigger_data", + "filtering_id", + "filters", + "key_piece", + "not_filters", + "priority", + "source_keys", + "trigger_context_id", + "trigger_data", + "value", + "values" + ], "triggering result": [ "debug data", "status" @@ -54011,6 +60915,15 @@ "dropped", "noised" ], + "trusted bidding signals batcher": [ + "all per interest group data", + "all trusted bidding signals", + "data versions", + "ig names", + "keys", + "length limit", + "no signals flags" + ], "tspan": [ "requiredextensions", "systemlanguage" @@ -54022,22 +60935,51 @@ "type": [ "abstract", "concrete", + "depth texture", "discrete", + "external texture", "gamma", "huerotate", "identity", "linear", "luminancetoalpha", "matrix", + "multisampled texture", + "read-only storage texture", + "read-write storage texture", + "sampled texture", "sampler", "sampler_comparison", "saturate", - "table" + "storage texture", + "table", + "texture_1d", + "texture_2d", + "texture_2d_array", + "texture_3d", + "texture_cube", + "texture_cube_array", + "texture_depth_2d", + "texture_depth_2d_array", + "texture_depth_cube", + "texture_depth_cube_array", + "texture_depth_multisampled_2d", + "texture_external", + "texture_multisampled_2d", + "texture_storage_1d", + "texture_storage_2d", + "texture_storage_2d_array", + "texture_storage_3d", + "write-only storage texture" ], "ul": [ "compact", "type" ], + "unary": [ + "<minus/>", + "<root/>" + ], "unicode-bidi": [ "bidi-override", "embed", @@ -54076,6 +61018,12 @@ "url/equals": [ "exclude fragments" ], + "usage scope": [ + "Add", + "Merge", + "add", + "merge" + ], "use": [ "href", "requiredextensions", @@ -54086,16 +61034,23 @@ "user agent": [ "brand", "brands", + "configuration version", "equivalence class", + "form-factors", "full version", "mobileness", "model", + "model version", "platform architecture", "platform bitness", "platform brand", "platform version", "significant version", "storage shed", + "taxonomy", + "taxonomy version", + "topics history storage", + "user topics state", "wow64-ness" ], "user contact": [ @@ -54105,11 +61060,18 @@ "names", "numbers" ], + "user context": [ + "user context id" + ], "user navigation involvement": [ "activation", "browser ui", "none" ], + "user topics state": [ + "epochs", + "hmac key" + ], "user-select": [ "all", "auto", @@ -54117,14 +61079,37 @@ "none", "text" ], + "value": [ + "maximum length" + ], "value pair": [ "key", "value" ], + "value struct": [ + "last updated", + "value" + ], "value-with-size": [ "size", "value" ], + "verbose debug data": [ + "body", + "data type" + ], + "verbose debug report": [ + "data", + "reporting origin" + ], + "verification result": [ + "errors", + "media type", + "mediatype", + "verified", + "verifieddocument", + "warnings" + ], "vertical-align": [ "<length>", "<percentage>", @@ -54177,20 +61162,37 @@ "requested viewport scale", "viewport modifiable" ], + "view transition params": [ + "initial snapshot containing block size", + "named elements" + ], "view-timeline-axis": [ "block", - "horizontal", "inline", "nearest", "root", - "vertical" + "self", + "x", + "y" ], "view-timeline-inset": [ "auto" ], + "view-transition-class": [ + "<custom-ident>+", + "none" + ], + "view-transition-group": [ + "contain", + "nearest", + "normal" + ], "view-transition-name": [ "none" ], + "viewport": [ + "perform a scroll" + ], "viewport-fit": [ "auto", "contain", @@ -54211,9 +61213,24 @@ "status", "url" ], + "virtual pressure source": [ + "can provide samples", + "connected platform collectors" + ], + "virtual sensor": [ + "can provide readings flag", + "maximum sampling frequency", + "minimum sampling frequency", + "requested sampling frequency" + ], + "virtual sensor metadata": [ + "reading parsing algorithm" + ], "visibility": [ "collapse", "hidden", + "opaque", + "transparent", "visible" ], "visualviewport": [ @@ -54294,11 +61311,25 @@ "pre-line", "pre-wrap" ], + "white-space-collapse": [ + "break-spaces", + "collapse", + "discard", + "preserve", + "preserve-breaks", + "preserve-spaces" + ], + "white-space-trim": [ + "discard-after", + "discard-before", + "discard-inner" + ], "width": [ "auto", + "calc-size()", "contain", "fit-content", - "fit-content(<length-percentage [0,∞]>)", + "fit-content()", "fit-content(<length-percentage>)", "max-content", "min-content", @@ -54309,28 +61340,31 @@ "contents", "scroll-position" ], - "word-boundary-detection": [ - "<lang>", - "auto(<lang>)", + "word-break": [ + "auto-phrase", + "break-all", + "break-word", + "keep-all", "manual", "normal" ], - "word-boundary-expansion": [ + "word-space-transform": [ + "auto-phrase", "ideographic-space", "none", "space" ], - "word-break": [ - "break-all", - "break-word", - "keep-all", - "normal" - ], "word-spacing": [ "<length-percentage>", "<length>", "normal" ], + "worklet function": [ + "generate-bid", + "report-result", + "report-win", + "score-ad" + ], "wrap-after": [ "auto", "avoid", @@ -54378,6 +61412,9 @@ "korean", "unknown" ], + "xywh()": [ + "equivalent path" + ], "z-index": [ "auto" ] diff --git a/bikeshed/spec-data/readonly/github-issues.json b/bikeshed/spec-data/readonly/github-issues.json index a19e57a927..4709d078e0 100644 --- a/bikeshed/spec-data/readonly/github-issues.json +++ b/bikeshed/spec-data/readonly/github-issues.json @@ -2539,11 +2539,12 @@ } }, "w3c/payment-method-manifest/11": { - "ETag": "W/\"b6e9a40d4cbfc3e6db302e3b9b6065fa\"", + "ETag": "W/\"ae9baf7b2a52ab94be15d47a9e0f9ab5243928106397c08a8bd52c1591e9906a\"", + "active_lock_reason": null, "assignee": null, "assignees": [], "author_association": "COLLABORATOR", - "body_html": "<p>Hi <a href=\"https://github.com/zkoch\" class=\"user-mention\">@zkoch</a>, <a href=\"https://github.com/rsolomakhin\" class=\"user-mention\">@rsolomakhin</a>, <a href=\"https://github.com/domenic\" class=\"user-mention\">@domenic</a>, and Max,</p>\n<p>(I am reviewing the spec [1] and will have a number of suggestions in an upcoming PR.)</p>\n<p>Here are some scenarios where we want the right (secure) thing to happen:</p>\n<p>(1) The browser implements Payment Request API but not Payment Method Manifest<br>\n(2) The browser implements Payment Method Manifest, but there is a failure of some<br>\nsort (related to fetching, parsing, or ingesting the manifest file).</p>\n<p>The high level question that I think needs to be addressed in the specification is:<br>\nwhat is the browser expected to do in the PR API matching algorithms (of show() and<br>\ncanMakePayment()) in these scenarios?</p>\n<p>I could imagine a variety of things we could say.</p>\n<p>(1) Be more explicit in PR API about this topic. There are different degrees of<br>\nstatement we could make. For example:</p>\n<p>a) For a URL payment method identifier, the user agent MUST NOT match a payment<br>\napp whose origin (\"app origin\") differs from that of the PMI (\"pmi origin\") unless pmi origin<br>\nexplicitly delegates authority to match payment apps from app origin.<br>\nb) The same thing with \"SHOULD NOT\"<br>\nc) User agent behavior is undefined if the origin of a (potentially) matching payment<br>\napp differs from the origin of a URL PMI.</p>\n<p>(2) In Payment Method Manifest, be more explicit about how conforming<br>\nuser agents should match in the face of failures (fetching, parsing, ingesting).<br>\nFor example, something like:</p>\n<p>\"For a given payment method origin, if the algorithms for fetching, parsing, or ingesting a payment method manifest at that origin fail, the user agent MUST NOT match payment apps whose origin differs from the payment method origin. @<a href=\"https://github.com/add\" class=\"user-mention\">@add</a> references to the relevant parts of show() and canMakePayment().@@\"</p>\n<p>In short: what needs to be said in the specification so that payment method owners can trust that user agents will do the right (secure) thing in these (and possibly other) scenarios?</p>\n<p>Ian</p>\n<p>[1] <a href=\"https://w3c.github.io/payment-method-manifest/\" rel=\"nofollow\">https://w3c.github.io/payment-method-manifest/</a></p>", + "body_html": "<p dir=\"auto\">Hi <a class=\"user-mention notranslate\" data-hovercard-type=\"user\" data-hovercard-url=\"/users/zkoch/hovercard\" data-octo-click=\"hovercard-link-click\" data-octo-dimensions=\"link_type:self\" href=\"https://github.com/zkoch\">@zkoch</a>, <a class=\"user-mention notranslate\" data-hovercard-type=\"user\" data-hovercard-url=\"/users/rsolomakhin/hovercard\" data-octo-click=\"hovercard-link-click\" data-octo-dimensions=\"link_type:self\" href=\"https://github.com/rsolomakhin\">@rsolomakhin</a>, <a class=\"user-mention notranslate\" data-hovercard-type=\"user\" data-hovercard-url=\"/users/domenic/hovercard\" data-octo-click=\"hovercard-link-click\" data-octo-dimensions=\"link_type:self\" href=\"https://github.com/domenic\">@domenic</a>, and Max,</p>\n<p dir=\"auto\">(I am reviewing the spec [1] and will have a number of suggestions in an upcoming PR.)</p>\n<p dir=\"auto\">Here are some scenarios where we want the right (secure) thing to happen:</p>\n<p dir=\"auto\">(1) The browser implements Payment Request API but not Payment Method Manifest<br>\n(2) The browser implements Payment Method Manifest, but there is a failure of some<br>\nsort (related to fetching, parsing, or ingesting the manifest file).</p>\n<p dir=\"auto\">The high level question that I think needs to be addressed in the specification is:<br>\nwhat is the browser expected to do in the PR API matching algorithms (of show() and<br>\ncanMakePayment()) in these scenarios?</p>\n<p dir=\"auto\">I could imagine a variety of things we could say.</p>\n<p dir=\"auto\">(1) Be more explicit in PR API about this topic. There are different degrees of<br>\nstatement we could make. For example:</p>\n<p dir=\"auto\">a) For a URL payment method identifier, the user agent MUST NOT match a payment<br>\napp whose origin (\"app origin\") differs from that of the PMI (\"pmi origin\") unless pmi origin<br>\nexplicitly delegates authority to match payment apps from app origin.<br>\nb) The same thing with \"SHOULD NOT\"<br>\nc) User agent behavior is undefined if the origin of a (potentially) matching payment<br>\napp differs from the origin of a URL PMI.</p>\n<p dir=\"auto\">(2) In Payment Method Manifest, be more explicit about how conforming<br>\nuser agents should match in the face of failures (fetching, parsing, ingesting).<br>\nFor example, something like:</p>\n<p dir=\"auto\">\"For a given payment method origin, if the algorithms for fetching, parsing, or ingesting a payment method manifest at that origin fail, the user agent MUST NOT match payment apps whose origin differs from the payment method origin. @<a class=\"user-mention notranslate\" data-hovercard-type=\"user\" data-hovercard-url=\"/users/add/hovercard\" data-octo-click=\"hovercard-link-click\" data-octo-dimensions=\"link_type:self\" href=\"https://github.com/add\">@add</a> references to the relevant parts of show() and canMakePayment().@@\"</p>\n<p dir=\"auto\">In short: what needs to be said in the specification so that payment method owners can trust that user agents will do the right (secure) thing in these (and possibly other) scenarios?</p>\n<p dir=\"auto\">Ian</p>\n<p dir=\"auto\">[1] <a href=\"https://w3c.github.io/payment-method-manifest/\" rel=\"nofollow\">https://w3c.github.io/payment-method-manifest/</a></p>", "closed_at": null, "closed_by": null, "comments": 9, @@ -2556,14 +2557,30 @@ "labels_url": "https://api.github.com/repos/w3c/payment-method-manifest/issues/11/labels{/name}", "locked": false, "milestone": null, + "node_id": "MDU6SXNzdWUyNDU1NjM3MTI=", "number": 11, + "performed_via_github_app": null, + "reactions": { + "+1": 0, + "-1": 0, + "confused": 0, + "eyes": 0, + "heart": 0, + "hooray": 0, + "laugh": 0, + "rocket": 0, + "total_count": 0, + "url": "https://api.github.com/repos/w3c/payment-method-manifest/issues/11/reactions" + }, "repository_url": "https://api.github.com/repos/w3c/payment-method-manifest", "state": "open", + "state_reason": null, + "timeline_url": "https://api.github.com/repos/w3c/payment-method-manifest/issues/11/timeline", "title": "Matching payment apps and security in a world of payment method manifests", "updated_at": "2017-12-13T13:13:44Z", "url": "https://api.github.com/repos/w3c/payment-method-manifest/issues/11", "user": { - "avatar_url": "https://avatars3.githubusercontent.com/u/2948484?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2948484?v=4", "events_url": "https://api.github.com/users/ianbjacobs/events{/privacy}", "followers_url": "https://api.github.com/users/ianbjacobs/followers", "following_url": "https://api.github.com/users/ianbjacobs/following{/other_user}", @@ -2572,6 +2589,7 @@ "html_url": "https://github.com/ianbjacobs", "id": 2948484, "login": "ianbjacobs", + "node_id": "MDQ6VXNlcjI5NDg0ODQ=", "organizations_url": "https://api.github.com/users/ianbjacobs/orgs", "received_events_url": "https://api.github.com/users/ianbjacobs/received_events", "repos_url": "https://api.github.com/users/ianbjacobs/repos", diff --git a/bikeshed/spec-data/readonly/headings/headings-accelerometer.json b/bikeshed/spec-data/readonly/headings/headings-accelerometer.json index 4c2d7127dd..8456c89901 100644 --- a/bikeshed/spec-data/readonly/headings/headings-accelerometer.json +++ b/bikeshed/spec-data/readonly/headings/headings-accelerometer.json @@ -15,41 +15,69 @@ }, "#abstract-opertaions": { "current": { - "number": "7", + "number": "8", "spec": "Accelerometer", "text": "Abstract Operations", "url": "https://w3c.github.io/accelerometer/#abstract-opertaions" }, "snapshot": { - "number": "7", + "number": "8", "spec": "Accelerometer", "text": "Abstract Operations", "url": "https://www.w3.org/TR/accelerometer/#abstract-opertaions" } }, + "#accelerometer-automation": { + "current": { + "number": "9.1", + "spec": "Accelerometer", + "text": "Accelerometer automation", + "url": "https://w3c.github.io/accelerometer/#accelerometer-automation" + }, + "snapshot": { + "number": "9.1", + "spec": "Accelerometer", + "text": "Accelerometer automation", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-automation" + } + }, "#accelerometer-interface": { "current": { - "number": "6.1", + "number": "7.1", "spec": "Accelerometer", "text": "The Accelerometer Interface", "url": "https://w3c.github.io/accelerometer/#accelerometer-interface" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "Accelerometer", "text": "The Accelerometer Interface", "url": "https://www.w3.org/TR/accelerometer/#accelerometer-interface" } }, + "#accelerometer-model": { + "current": { + "number": "6.1", + "spec": "Accelerometer", + "text": "Accelerometer", + "url": "https://w3c.github.io/accelerometer/#accelerometer-model" + }, + "snapshot": { + "number": "6.1", + "spec": "Accelerometer", + "text": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-model" + } + }, "#accelerometer-x": { "current": { - "number": "6.1.1", + "number": "7.1.1", "spec": "Accelerometer", "text": "Accelerometer.x", "url": "https://w3c.github.io/accelerometer/#accelerometer-x" }, "snapshot": { - "number": "6.1.1", + "number": "7.1.1", "spec": "Accelerometer", "text": "Accelerometer.x", "url": "https://www.w3.org/TR/accelerometer/#accelerometer-x" @@ -57,13 +85,13 @@ }, "#accelerometer-y": { "current": { - "number": "6.1.2", + "number": "7.1.2", "spec": "Accelerometer", "text": "Accelerometer.y", "url": "https://w3c.github.io/accelerometer/#accelerometer-y" }, "snapshot": { - "number": "6.1.2", + "number": "7.1.2", "spec": "Accelerometer", "text": "Accelerometer.y", "url": "https://www.w3.org/TR/accelerometer/#accelerometer-y" @@ -71,13 +99,13 @@ }, "#accelerometer-z": { "current": { - "number": "6.1.3", + "number": "7.1.3", "spec": "Accelerometer", "text": "Accelerometer.z", "url": "https://w3c.github.io/accelerometer/#accelerometer-z" }, "snapshot": { - "number": "6.1.3", + "number": "7.1.3", "spec": "Accelerometer", "text": "Accelerometer.z", "url": "https://www.w3.org/TR/accelerometer/#accelerometer-z" @@ -85,27 +113,27 @@ }, "#acknowledgements": { "current": { - "number": "9", + "number": "", "spec": "Accelerometer", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://w3c.github.io/accelerometer/#acknowledgements" }, "snapshot": { - "number": "9", + "number": "", "spec": "Accelerometer", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://www.w3.org/TR/accelerometer/#acknowledgements" } }, "#api": { "current": { - "number": "6", + "number": "7", "spec": "Accelerometer", "text": "API", "url": "https://w3c.github.io/accelerometer/#api" }, "snapshot": { - "number": "6", + "number": "7", "spec": "Accelerometer", "text": "API", "url": "https://www.w3.org/TR/accelerometer/#api" @@ -113,13 +141,13 @@ }, "#automation": { "current": { - "number": "8", + "number": "9", "spec": "Accelerometer", "text": "Automation", "url": "https://w3c.github.io/accelerometer/#automation" }, "snapshot": { - "number": "8", + "number": "9", "spec": "Accelerometer", "text": "Automation", "url": "https://www.w3.org/TR/accelerometer/#automation" @@ -127,13 +155,13 @@ }, "#construct-an-accelerometer-object": { "current": { - "number": "7.1", + "number": "8.1", "spec": "Accelerometer", "text": "Construct an accelerometer object", "url": "https://w3c.github.io/accelerometer/#construct-an-accelerometer-object" }, "snapshot": { - "number": "7.1", + "number": "8.1", "spec": "Accelerometer", "text": "Construct an accelerometer object", "url": "https://www.w3.org/TR/accelerometer/#construct-an-accelerometer-object" @@ -153,15 +181,43 @@ "url": "https://www.w3.org/TR/accelerometer/#examples" } }, - "#gravitysensor-interface": { + "#gravity-automation": { + "current": { + "number": "9.3", + "spec": "Accelerometer", + "text": "Gravity automation", + "url": "https://w3c.github.io/accelerometer/#gravity-automation" + }, + "snapshot": { + "number": "9.3", + "spec": "Accelerometer", + "text": "Gravity automation", + "url": "https://www.w3.org/TR/accelerometer/#gravity-automation" + } + }, + "#gravity-sensor-model": { "current": { "number": "6.3", "spec": "Accelerometer", + "text": "Gravity Sensor", + "url": "https://w3c.github.io/accelerometer/#gravity-sensor-model" + }, + "snapshot": { + "number": "6.3", + "spec": "Accelerometer", + "text": "Gravity Sensor", + "url": "https://www.w3.org/TR/accelerometer/#gravity-sensor-model" + } + }, + "#gravitysensor-interface": { + "current": { + "number": "7.3", + "spec": "Accelerometer", "text": "The GravitySensor Interface", "url": "https://w3c.github.io/accelerometer/#gravitysensor-interface" }, "snapshot": { - "number": "6.3", + "number": "7.3", "spec": "Accelerometer", "text": "The GravitySensor Interface", "url": "https://www.w3.org/TR/accelerometer/#gravitysensor-interface" @@ -169,13 +225,13 @@ }, "#gravitysensor-x": { "current": { - "number": "6.3.1", + "number": "7.3.1", "spec": "Accelerometer", "text": "GravitySensor.x", "url": "https://w3c.github.io/accelerometer/#gravitysensor-x" }, "snapshot": { - "number": "6.3.1", + "number": "7.3.1", "spec": "Accelerometer", "text": "GravitySensor.x", "url": "https://www.w3.org/TR/accelerometer/#gravitysensor-x" @@ -183,13 +239,13 @@ }, "#gravitysensor-y": { "current": { - "number": "6.3.2", + "number": "7.3.2", "spec": "Accelerometer", "text": "GravitySensor.y", "url": "https://w3c.github.io/accelerometer/#gravitysensor-y" }, "snapshot": { - "number": "6.3.2", + "number": "7.3.2", "spec": "Accelerometer", "text": "GravitySensor.y", "url": "https://www.w3.org/TR/accelerometer/#gravitysensor-y" @@ -197,13 +253,13 @@ }, "#gravitysensor-z": { "current": { - "number": "6.3.3", + "number": "7.3.3", "spec": "Accelerometer", "text": "GravitySensor.z", "url": "https://w3c.github.io/accelerometer/#gravitysensor-z" }, "snapshot": { - "number": "6.3.3", + "number": "7.3.3", "spec": "Accelerometer", "text": "GravitySensor.z", "url": "https://www.w3.org/TR/accelerometer/#gravitysensor-z" @@ -293,15 +349,43 @@ "url": "https://www.w3.org/TR/accelerometer/#intro" } }, - "#linearaccelerationsensor-interface": { + "#linear-acceleration-sensor-model": { "current": { "number": "6.2", "spec": "Accelerometer", + "text": "Linear Acceleration Sensor", + "url": "https://w3c.github.io/accelerometer/#linear-acceleration-sensor-model" + }, + "snapshot": { + "number": "6.2", + "spec": "Accelerometer", + "text": "Linear Acceleration Sensor", + "url": "https://www.w3.org/TR/accelerometer/#linear-acceleration-sensor-model" + } + }, + "#linear-accelerometer-automation": { + "current": { + "number": "9.2", + "spec": "Accelerometer", + "text": "Linear Accelerometer automation", + "url": "https://w3c.github.io/accelerometer/#linear-accelerometer-automation" + }, + "snapshot": { + "number": "9.2", + "spec": "Accelerometer", + "text": "Linear Accelerometer automation", + "url": "https://www.w3.org/TR/accelerometer/#linear-accelerometer-automation" + } + }, + "#linearaccelerationsensor-interface": { + "current": { + "number": "7.2", + "spec": "Accelerometer", "text": "The LinearAccelerationSensor Interface", "url": "https://w3c.github.io/accelerometer/#linearaccelerationsensor-interface" }, "snapshot": { - "number": "6.2", + "number": "7.2", "spec": "Accelerometer", "text": "The LinearAccelerationSensor Interface", "url": "https://www.w3.org/TR/accelerometer/#linearaccelerationsensor-interface" @@ -309,13 +393,13 @@ }, "#linearaccelerationsensor-x": { "current": { - "number": "6.2.1", + "number": "7.2.1", "spec": "Accelerometer", "text": "LinearAccelerationSensor.x", "url": "https://w3c.github.io/accelerometer/#linearaccelerationsensor-x" }, "snapshot": { - "number": "6.2.1", + "number": "7.2.1", "spec": "Accelerometer", "text": "LinearAccelerationSensor.x", "url": "https://www.w3.org/TR/accelerometer/#linearaccelerationsensor-x" @@ -323,13 +407,13 @@ }, "#linearaccelerationsensor-y": { "current": { - "number": "6.2.2", + "number": "7.2.2", "spec": "Accelerometer", "text": "LinearAccelerationSensor.y", "url": "https://w3c.github.io/accelerometer/#linearaccelerationsensor-y" }, "snapshot": { - "number": "6.2.2", + "number": "7.2.2", "spec": "Accelerometer", "text": "LinearAccelerationSensor.y", "url": "https://www.w3.org/TR/accelerometer/#linearaccelerationsensor-y" @@ -337,41 +421,27 @@ }, "#linearaccelerationsensor-z": { "current": { - "number": "6.2.3", + "number": "7.2.3", "spec": "Accelerometer", "text": "LinearAccelerationSensor.z", "url": "https://w3c.github.io/accelerometer/#linearaccelerationsensor-z" }, "snapshot": { - "number": "6.2.3", + "number": "7.2.3", "spec": "Accelerometer", "text": "LinearAccelerationSensor.z", "url": "https://www.w3.org/TR/accelerometer/#linearaccelerationsensor-z" } }, - "#mock-accelerometer-type": { - "current": { - "number": "8.1", - "spec": "Accelerometer", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/accelerometer/#mock-accelerometer-type" - }, - "snapshot": { - "number": "8.1", - "spec": "Accelerometer", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/accelerometer/#mock-accelerometer-type" - } - }, "#model": { "current": { - "number": "5", + "number": "6", "spec": "Accelerometer", "text": "Model", "url": "https://w3c.github.io/accelerometer/#model" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Accelerometer", "text": "Model", "url": "https://www.w3.org/TR/accelerometer/#model" @@ -391,15 +461,29 @@ "url": "https://www.w3.org/TR/accelerometer/#normative" } }, + "#permissions-policy-integration": { + "current": { + "number": "5", + "spec": "Accelerometer", + "text": "Permissions Policy integration", + "url": "https://w3c.github.io/accelerometer/#permissions-policy-integration" + }, + "snapshot": { + "number": "5", + "spec": "Accelerometer", + "text": "Permissions Policy integration", + "url": "https://www.w3.org/TR/accelerometer/#permissions-policy-integration" + } + }, "#reference-frame": { "current": { - "number": "5.1", + "number": "6.4", "spec": "Accelerometer", "text": "Reference Frame", "url": "https://w3c.github.io/accelerometer/#reference-frame" }, "snapshot": { - "number": "5.1", + "number": "6.4", "spec": "Accelerometer", "text": "Reference Frame", "url": "https://www.w3.org/TR/accelerometer/#reference-frame" diff --git a/bikeshed/spec-data/readonly/headings/headings-accname-1.2.json b/bikeshed/spec-data/readonly/headings/headings-accname-1.2.json index fd9f5db9aa..17c76d6b8e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-accname-1.2.json +++ b/bikeshed/spec-data/readonly/headings/headings-accname-1.2.json @@ -15,10 +15,16 @@ }, "#ack_funders": { "current": { - "number": "6.2.3", + "number": "6.2.2", "spec": "Accessible Name and Description Computation 1.2", "text": "Enabling funders", "url": "https://w3c.github.io/accname/#ack_funders" + }, + "snapshot": { + "number": "6.2.2", + "spec": "Accessible Name and Description Computation 1.2", + "text": "Enabling funders", + "url": "https://www.w3.org/TR/accname-1.2/#ack_funders" } }, "#ack_group": { @@ -27,14 +33,12 @@ "spec": "Accessible Name and Description Computation 1.2", "text": "Participants active in the ARIA WG at the time of publication", "url": "https://w3c.github.io/accname/#ack_group" - } - }, - "#ack_others": { - "current": { - "number": "6.2.2", + }, + "snapshot": { + "number": "6.2.1", "spec": "Accessible Name and Description Computation 1.2", - "text": "Other ARIA contributors, commenters, and previously active participants", - "url": "https://w3c.github.io/accname/#ack_others" + "text": "Participants active in the ARIA WG at the time of publication", + "url": "https://www.w3.org/TR/accname-1.2/#ack_group" } }, "#acknowledgements": { @@ -85,6 +89,12 @@ "spec": "Accessible Name and Description Computation 1.2", "text": "Computation steps", "url": "https://w3c.github.io/accname/#computation-steps" + }, + "snapshot": { + "number": "4.3.2", + "spec": "Accessible Name and Description Computation 1.2", + "text": "Computation steps", + "url": "https://www.w3.org/TR/accname-1.2/#computation-steps" } }, "#conformance": { @@ -95,20 +105,12 @@ "url": "https://w3c.github.io/accname/#conformance" }, "snapshot": { - "number": "2", + "number": "3", "spec": "Accessible Name and Description Computation 1.2", "text": "Conformance", "url": "https://www.w3.org/TR/accname-1.2/#conformance" } }, - "#glossary": { - "snapshot": { - "number": "3", - "spec": "Accessible Name and Description Computation 1.2", - "text": "Important Terms", - "url": "https://www.w3.org/TR/accname-1.2/#glossary" - } - }, "#informative-references": { "current": { "number": "A.2", @@ -189,7 +191,7 @@ "snapshot": { "number": "4.3", "spec": "Accessible Name and Description Computation 1.2", - "text": "Accessible Name and Description Computation", + "text": "Text Equivalent Computation", "url": "https://www.w3.org/TR/accname-1.2/#mapping_additional_nd_te" } }, @@ -201,7 +203,7 @@ "url": "https://w3c.github.io/accname/#normative-and-informative-sections" }, "snapshot": { - "number": "2.2", + "number": "3.2", "spec": "Accessible Name and Description Computation 1.2", "text": "Normative and Informative Sections", "url": "https://www.w3.org/TR/accname-1.2/#normative-and-informative-sections" @@ -243,7 +245,7 @@ "url": "https://w3c.github.io/accname/#rfc-2119-keywords" }, "snapshot": { - "number": "2.1", + "number": "3.1", "spec": "Accessible Name and Description Computation 1.2", "text": "RFC-2119 Keywords", "url": "https://www.w3.org/TR/accname-1.2/#rfc-2119-keywords" @@ -257,7 +259,7 @@ "url": "https://w3c.github.io/accname/#substantive-changes-since-the-accessible-name-and-description-computation-1-1-recommendation" }, "snapshot": { - "number": "6.1.1", + "number": "6.1.2", "spec": "Accessible Name and Description Computation 1.2", "text": "Substantive changes since the Accessible Name and Description Computation 1.1 Recommendation", "url": "https://www.w3.org/TR/accname-1.2/#substantive-changes-since-the-accessible-name-and-description-computation-1-1-recommendation" @@ -269,6 +271,12 @@ "spec": "Accessible Name and Description Computation 1.2", "text": "Substantive changes since the last public working draft", "url": "https://w3c.github.io/accname/#substantive-changes-since-the-last-public-working-draft" + }, + "snapshot": { + "number": "6.1.1", + "spec": "Accessible Name and Description Computation 1.2", + "text": "Substantive changes since the last public working draft", + "url": "https://www.w3.org/TR/accname-1.2/#substantive-changes-since-the-last-public-working-draft" } }, "#terminology": { @@ -291,6 +299,12 @@ "spec": "Accessible Name and Description Computation 1.2", "text": "Important Terms", "url": "https://w3c.github.io/accname/#terms" + }, + "snapshot": { + "number": "2", + "spec": "Accessible Name and Description Computation 1.2", + "text": "Important Terms", + "url": "https://www.w3.org/TR/accname-1.2/#terms" } }, "#title": { diff --git a/bikeshed/spec-data/readonly/headings/headings-afgs1-spec.json b/bikeshed/spec-data/readonly/headings/headings-afgs1-spec.json new file mode 100644 index 0000000000..8172d5f16d --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-afgs1-spec.json @@ -0,0 +1,370 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Abstract", + "url": "https://aomediacodec.github.io/afgs1-spec/#abstract" + } + }, + "#add-noise-synthesis-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Add noise synthesis process", + "url": "https://aomediacodec.github.io/afgs1-spec/#add-noise-synthesis-process" + } + }, + "#additional-tables": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Additional tables", + "url": "https://aomediacodec.github.io/afgs1-spec/#additional-tables" + } + }, + "#aomedia-film-grain-synthesis-1-afgs1-specification": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "AOMedia Film Grain Synthesis 1 (AFGS1) specification", + "url": "https://aomediacodec.github.io/afgs1-spec/#aomedia-film-grain-synthesis-1-afgs1-specification" + } + }, + "#aomedia-itu-t-t35-metadata-semantics": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "AOMedia ITU-T T.35 metadata semantics", + "url": "https://aomediacodec.github.io/afgs1-spec/#aomedia-itu-t-t35-metadata-semantics" + } + }, + "#aomedia-itu-t-t35-metadata-syntax": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "AOMedia ITU-T T.35 metadata syntax", + "url": "https://aomediacodec.github.io/afgs1-spec/#aomedia-itu-t-t35-metadata-syntax" + } + }, + "#arithmetic-operators": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Arithmetic operators", + "url": "https://aomediacodec.github.io/afgs1-spec/#arithmetic-operators" + } + }, + "#assignment": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Assignment", + "url": "https://aomediacodec.github.io/afgs1-spec/#assignment" + } + }, + "#bibliography": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Bibliography", + "url": "https://aomediacodec.github.io/afgs1-spec/#bibliography" + } + }, + "#bitwise-operators": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Bitwise operators", + "url": "https://aomediacodec.github.io/afgs1-spec/#bitwise-operators" + } + }, + "#conformance": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Conformance", + "url": "https://aomediacodec.github.io/afgs1-spec/#conformance" + } + }, + "#conformance-requirements": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Conformance requirements", + "url": "https://aomediacodec.github.io/afgs1-spec/#conformance-requirements" + } + }, + "#contents": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Contents", + "url": "https://aomediacodec.github.io/afgs1-spec/#contents" + } + }, + "#conventions": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Conventions", + "url": "https://aomediacodec.github.io/afgs1-spec/#conventions" + } + }, + "#decoding-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Decoding process", + "url": "https://aomediacodec.github.io/afgs1-spec/#decoding-process" + } + }, + "#descriptors": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Descriptors", + "url": "https://aomediacodec.github.io/afgs1-spec/#descriptors" + } + }, + "#film-grain-parameter-payload-semantics": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain parameter payload semantics", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-parameter-payload-semantics" + } + }, + "#film-grain-parameter-payload-syntax": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain parameter payload syntax", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-parameter-payload-syntax" + } + }, + "#film-grain-parameter-sets-semantics": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain parameter sets semantics", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-parameter-sets-semantics" + } + }, + "#film-grain-parameter-sets-syntax": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain parameter sets syntax", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-parameter-sets-syntax" + } + }, + "#film-grain-parameters-semantics": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain parameters semantics", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-parameters-semantics" + } + }, + "#film-grain-parameters-syntax": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain parameters syntax", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-parameters-syntax" + } + }, + "#film-grain-synthesis-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Film grain synthesis process", + "url": "https://aomediacodec.github.io/afgs1-spec/#film-grain-synthesis-process" + } + }, + "#fn": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "f(n)", + "url": "https://aomediacodec.github.io/afgs1-spec/#fn" + } + }, + "#functions": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Functions", + "url": "https://aomediacodec.github.io/afgs1-spec/#functions" + } + }, + "#general": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "General", + "url": "https://aomediacodec.github.io/afgs1-spec/#general" + } + }, + "#general-1": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "General", + "url": "https://aomediacodec.github.io/afgs1-spec/#general-1" + } + }, + "#general-2": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "General", + "url": "https://aomediacodec.github.io/afgs1-spec/#general-2" + } + }, + "#general-3": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "General", + "url": "https://aomediacodec.github.io/afgs1-spec/#general-3" + } + }, + "#general-4": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "General", + "url": "https://aomediacodec.github.io/afgs1-spec/#general-4" + } + }, + "#generate-grain-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Generate grain process", + "url": "https://aomediacodec.github.io/afgs1-spec/#generate-grain-process" + } + }, + "#logical-operators": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Logical operators", + "url": "https://aomediacodec.github.io/afgs1-spec/#logical-operators" + } + }, + "#mathematical-functions": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Mathematical functions", + "url": "https://aomediacodec.github.io/afgs1-spec/#mathematical-functions" + } + }, + "#method-of-describing-bitstream-syntax": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Method of describing bitstream syntax", + "url": "https://aomediacodec.github.io/afgs1-spec/#method-of-describing-bitstream-syntax" + } + }, + "#padding-bits-semantics": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Padding bits semantics", + "url": "https://aomediacodec.github.io/afgs1-spec/#padding-bits-semantics" + } + }, + "#padding-bits-syntax": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Padding bits syntax", + "url": "https://aomediacodec.github.io/afgs1-spec/#padding-bits-syntax" + } + }, + "#parsing-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Parsing process", + "url": "https://aomediacodec.github.io/afgs1-spec/#parsing-process" + } + }, + "#parsing-process-for-fn": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Parsing process for f(n)", + "url": "https://aomediacodec.github.io/afgs1-spec/#parsing-process-for-fn" + } + }, + "#random-number-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Random number process", + "url": "https://aomediacodec.github.io/afgs1-spec/#random-number-process" + } + }, + "#relational-operators": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Relational operators", + "url": "https://aomediacodec.github.io/afgs1-spec/#relational-operators" + } + }, + "#scaling-lookup-initialization-process": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Scaling lookup initialization process", + "url": "https://aomediacodec.github.io/afgs1-spec/#scaling-lookup-initialization-process" + } + }, + "#scope": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Scope", + "url": "https://aomediacodec.github.io/afgs1-spec/#scope" + } + }, + "#symbols-and-abbreviated-terms": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Symbols and abbreviated terms", + "url": "https://aomediacodec.github.io/afgs1-spec/#symbols-and-abbreviated-terms" + } + }, + "#syntax-structures": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Syntax structures", + "url": "https://aomediacodec.github.io/afgs1-spec/#syntax-structures" + } + }, + "#syntax-structures-semantics": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Syntax structures semantics", + "url": "https://aomediacodec.github.io/afgs1-spec/#syntax-structures-semantics" + } + }, + "#terms-and-definitions": { + "current": { + "number": "", + "spec": "AFGS1", + "text": "Terms and definitions", + "url": "https://aomediacodec.github.io/afgs1-spec/#terms-and-definitions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-ambient-light.json b/bikeshed/spec-data/readonly/headings/headings-ambient-light.json index d5badfd938..a3a0fead85 100644 --- a/bikeshed/spec-data/readonly/headings/headings-ambient-light.json +++ b/bikeshed/spec-data/readonly/headings/headings-ambient-light.json @@ -237,20 +237,6 @@ "url": "https://www.w3.org/TR/ambient-light/#intro" } }, - "#mock-ambient-light-sensor-type": { - "current": { - "number": "7.1", - "spec": "Ambient Light Sensor", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/ambient-light/#mock-ambient-light-sensor-type" - }, - "snapshot": { - "number": "7.1", - "spec": "Ambient Light Sensor", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/ambient-light/#mock-ambient-light-sensor-type" - } - }, "#model": { "current": { "number": "4", diff --git a/bikeshed/spec-data/readonly/headings/headings-anonymous-iframe.json b/bikeshed/spec-data/readonly/headings/headings-anonymous-iframe.json new file mode 100644 index 0000000000..16a4748075 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-anonymous-iframe.json @@ -0,0 +1,578 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Abstract", + "url": "https://wicg.github.io/anonymous-iframe/#abstract" + } + }, + "#alternatives": { + "current": { + "number": "4", + "spec": "Iframe credentialless", + "text": "Alternatives considered", + "url": "https://wicg.github.io/anonymous-iframe/#alternatives" + } + }, + "#alternatives-coep-credentialless": { + "current": { + "number": "4.3", + "spec": "Iframe credentialless", + "text": "Make COEP:credentialless to affect <iframe>", + "url": "https://wicg.github.io/anonymous-iframe/#alternatives-coep-credentialless" + } + }, + "#alternatives-opaque-origins": { + "current": { + "number": "4.2", + "spec": "Iframe credentialless", + "text": "Opaque origins", + "url": "https://wicg.github.io/anonymous-iframe/#alternatives-opaque-origins" + } + }, + "#alternatives-sandbox": { + "current": { + "number": "4.1", + "spec": "Iframe credentialless", + "text": "Sandboxed iframe", + "url": "https://wicg.github.io/anonymous-iframe/#alternatives-sandbox" + } + }, + "#explainer": { + "current": { + "number": "3", + "spec": "Iframe credentialless", + "text": "Explainer", + "url": "https://wicg.github.io/anonymous-iframe/#explainer" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "IDL Index", + "url": "https://wicg.github.io/anonymous-iframe/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Index", + "url": "https://wicg.github.io/anonymous-iframe/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/anonymous-iframe/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/anonymous-iframe/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Informative References", + "url": "https://wicg.github.io/anonymous-iframe/#informative" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Iframe credentialless", + "text": "Introduction", + "url": "https://wicg.github.io/anonymous-iframe/#introduction" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Normative References", + "url": "https://wicg.github.io/anonymous-iframe/#normative" + } + }, + "#privacy": { + "current": { + "number": "8", + "spec": "Iframe credentialless", + "text": "Privacy considerations", + "url": "https://wicg.github.io/anonymous-iframe/#privacy" + } + }, + "#problem": { + "current": { + "number": "2", + "spec": "Iframe credentialless", + "text": "A problem", + "url": "https://wicg.github.io/anonymous-iframe/#problem" + } + }, + "#proposal-autofill": { + "current": { + "number": "3.4", + "spec": "Iframe credentialless", + "text": "Credentialless iframes and autofill/password managers", + "url": "https://wicg.github.io/anonymous-iframe/#proposal-autofill" + } + }, + "#proposal-coep-credentialless": { + "current": { + "number": "3.5", + "spec": "Iframe credentialless", + "text": "Comparison with COEP:credentialless", + "url": "https://wicg.github.io/anonymous-iframe/#proposal-coep-credentialless" + } + }, + "#proposal-credentials": { + "current": { + "number": "3.2", + "spec": "Iframe credentialless", + "text": "Credentialless iframes and credentials", + "url": "https://wicg.github.io/anonymous-iframe/#proposal-credentials" + } + }, + "#proposal-interactions": { + "current": { + "number": "3.3", + "spec": "Iframe credentialless", + "text": "How do credentialless iframes interact with COEP", + "url": "https://wicg.github.io/anonymous-iframe/#proposal-interactions" + } + }, + "#proposal-whatis": { + "current": { + "number": "3.1", + "spec": "Iframe credentialless", + "text": "What are iframes credentialless?", + "url": "https://wicg.github.io/anonymous-iframe/#proposal-whatis" + } + }, + "#questionnaire": { + "current": { + "number": "9", + "spec": "Iframe credentialless", + "text": "Self-Review Questionnaire", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire" + } + }, + "#questionnaire-considerations": { + "current": { + "number": "9.15", + "spec": "Iframe credentialless", + "text": "Does this specification have both \"Security Considerations\" and \"Privacy Considerations\" sections?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-considerations" + } + }, + "#questionnaire-first-third-party": { + "current": { + "number": "9.13", + "spec": "Iframe credentialless", + "text": "How does this specification distinguish between behavior in first-party and third-party contexts?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-first-third-party" + } + }, + "#questionnaire-minimum-data": { + "current": { + "number": "9.2", + "spec": "Iframe credentialless", + "text": "Do features in your specification expose the minimum amount of information necessary to enable their intended uses?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-minimum-data" + } + }, + "#questionnaire-native-ui": { + "current": { + "number": "9.11", + "spec": "Iframe credentialless", + "text": "Do features in this specification allow an origin some measure of control over a user agent’s native UI?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-native-ui" + } + }, + "#questionnaire-non-fully-active": { + "current": { + "number": "9.17", + "spec": "Iframe credentialless", + "text": "How does your feature handle non-\"fully active\" documents?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-non-fully-active" + } + }, + "#questionnaire-persistent-origin-specific-state": { + "current": { + "number": "9.5", + "spec": "Iframe credentialless", + "text": "Do the features in your specification introduce new state for an origin that persists across browsing sessions?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-persistent-origin-specific-state" + } + }, + "#questionnaire-personal-data": { + "current": { + "number": "9.3", + "spec": "Iframe credentialless", + "text": "How do the features in your specification deal with personal information, personally-identifiable information (PII), or information derived from them?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-personal-data" + } + }, + "#questionnaire-private-browsing": { + "current": { + "number": "9.14", + "spec": "Iframe credentialless", + "text": "How do the features in this specification work in the context of a browser’s Private Browsing or Incognito mode?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-private-browsing" + } + }, + "#questionnaire-purpose": { + "current": { + "number": "9.1", + "spec": "Iframe credentialless", + "text": "What information might this feature expose to Web sites or other parties, and for what purposes is that exposure necessary?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-purpose" + } + }, + "#questionnaire-relaxed-sop": { + "current": { + "number": "9.16", + "spec": "Iframe credentialless", + "text": "Do features in your specification enable origins to downgrade default security protections?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-relaxed-sop" + } + }, + "#questionnaire-remote-device": { + "current": { + "number": "9.10", + "spec": "Iframe credentialless", + "text": "Do features in this specification allow an origin to access other devices?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-remote-device" + } + }, + "#questionnaire-send-to-platform": { + "current": { + "number": "9.7", + "spec": "Iframe credentialless", + "text": "Does this specification allow an origin to send data to the underlying platform?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-send-to-platform" + } + }, + "#questionnaire-sensitive-data": { + "current": { + "number": "9.4", + "spec": "Iframe credentialless", + "text": "How do the features in your specification deal with sensitive information?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-sensitive-data" + } + }, + "#questionnaire-sensor-data": { + "current": { + "number": "9.8", + "spec": "Iframe credentialless", + "text": "Do features in this specification allow an origin access to sensors on a user’s device?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-sensor-data" + } + }, + "#questionnaire-string-to-script": { + "current": { + "number": "9.9", + "spec": "Iframe credentialless", + "text": "Do features in this specification enable new script execution/loading mechanisms?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-string-to-script" + } + }, + "#questionnaire-temporary-id": { + "current": { + "number": "9.12", + "spec": "Iframe credentialless", + "text": "What temporary identifiers do the feautures in this specification create or expose to the web?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-temporary-id" + } + }, + "#questionnaire-underlying-platform-data": { + "current": { + "number": "9.6", + "spec": "Iframe credentialless", + "text": "Do the features in your specification expose information about the underlying platform to origins?", + "url": "https://wicg.github.io/anonymous-iframe/#questionnaire-underlying-platform-data" + } + }, + "#recommended-readings": { + "current": { + "number": "1.1", + "spec": "Iframe credentialless", + "text": "Recommended readings", + "url": "https://wicg.github.io/anonymous-iframe/#recommended-readings" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "References", + "url": "https://wicg.github.io/anonymous-iframe/#references" + } + }, + "#security": { + "current": { + "number": "7", + "spec": "Iframe credentialless", + "text": "Security considerations", + "url": "https://wicg.github.io/anonymous-iframe/#security" + } + }, + "#security-existing-credentials": { + "current": { + "number": "7.2", + "spec": "Iframe credentialless", + "text": "Usage of existing credentials", + "url": "https://wicg.github.io/anonymous-iframe/#security-existing-credentials" + } + }, + "#security-network-id": { + "current": { + "number": "7.4", + "spec": "Iframe credentialless", + "text": "Personalized resources based on network position", + "url": "https://wicg.github.io/anonymous-iframe/#security-network-id" + } + }, + "#security-new-credentials": { + "current": { + "number": "7.3", + "spec": "Iframe credentialless", + "text": "Usage of new credentials", + "url": "https://wicg.github.io/anonymous-iframe/#security-new-credentials" + } + }, + "#security-side-channel": { + "current": { + "number": "7.6", + "spec": "Iframe credentialless", + "text": "Credentialless iframes using side-channels to personalize themselves", + "url": "https://wicg.github.io/anonymous-iframe/#security-side-channel" + } + }, + "#security-user-input-capture": { + "current": { + "number": "7.5", + "spec": "Iframe credentialless", + "text": "Capture of user input", + "url": "https://wicg.github.io/anonymous-iframe/#security-user-input-capture" + } + }, + "#spec-autofill": { + "current": { + "number": "6.1.8", + "spec": "Iframe credentialless", + "text": "Autofill", + "url": "https://wicg.github.io/anonymous-iframe/#spec-autofill" + } + }, + "#spec-chips": { + "current": { + "number": "6.3", + "spec": "Iframe credentialless", + "text": "Integration with CHIPS", + "url": "https://wicg.github.io/anonymous-iframe/#spec-chips" + } + }, + "#spec-coep-embedder-check": { + "current": { + "number": "6.1.7", + "spec": "Iframe credentialless", + "text": "COEP embedder checks", + "url": "https://wicg.github.io/anonymous-iframe/#spec-coep-embedder-check" + } + }, + "#spec-environment-partition-nonce": { + "current": { + "number": "6.1.9", + "spec": "Iframe credentialless", + "text": "Environment’s partition nonce", + "url": "https://wicg.github.io/anonymous-iframe/#spec-environment-partition-nonce" + } + }, + "#spec-fetch": { + "current": { + "number": "6.2", + "spec": "Iframe credentialless", + "text": "Integration with Fetch", + "url": "https://wicg.github.io/anonymous-iframe/#spec-fetch" + } + }, + "#spec-html": { + "current": { + "number": "6.1", + "spec": "Iframe credentialless", + "text": "Integration with HTML", + "url": "https://wicg.github.io/anonymous-iframe/#spec-html" + } + }, + "#spec-iframe-attribute": { + "current": { + "number": "6.1.1", + "spec": "Iframe credentialless", + "text": "The Iframe attribute", + "url": "https://wicg.github.io/anonymous-iframe/#spec-iframe-attribute" + } + }, + "#spec-navigating-browsing-context": { + "current": { + "number": "6.1.4", + "spec": "Iframe credentialless", + "text": "Navigating a browsing context", + "url": "https://wicg.github.io/anonymous-iframe/#spec-navigating-browsing-context" + } + }, + "#spec-navigation-partition-nonce": { + "current": { + "number": "6.1.9.1", + "spec": "Iframe credentialless", + "text": "For Navigation", + "url": "https://wicg.github.io/anonymous-iframe/#spec-navigation-partition-nonce" + } + }, + "#spec-network-partition-key": { + "current": { + "number": "6.2.1", + "spec": "Iframe credentialless", + "text": "Plumb the partition-nonce", + "url": "https://wicg.github.io/anonymous-iframe/#spec-network-partition-key" + } + }, + "#spec-new-browsing-context": { + "current": { + "number": "6.1.3", + "spec": "Iframe credentialless", + "text": "Creating new browsing context", + "url": "https://wicg.github.io/anonymous-iframe/#spec-new-browsing-context" + } + }, + "#spec-popup-noopener": { + "current": { + "number": "6.1.5", + "spec": "Iframe credentialless", + "text": "Open popup with noopener", + "url": "https://wicg.github.io/anonymous-iframe/#spec-popup-noopener" + } + }, + "#spec-section": { + "current": { + "number": "6.1.6", + "spec": "Iframe credentialless", + "text": "General section", + "url": "https://wicg.github.io/anonymous-iframe/#spec-section" + } + }, + "#spec-storage": { + "current": { + "number": "6.5", + "spec": "Iframe credentialless", + "text": "Integration with storage", + "url": "https://wicg.github.io/anonymous-iframe/#spec-storage" + } + }, + "#spec-storage-key": { + "current": { + "number": "6.5.1", + "spec": "Iframe credentialless", + "text": "storage-key", + "url": "https://wicg.github.io/anonymous-iframe/#spec-storage-key" + } + }, + "#spec-storage-partitioning": { + "current": { + "number": "6.4", + "spec": "Iframe credentialless", + "text": "Integration with storage-partitioning", + "url": "https://wicg.github.io/anonymous-iframe/#spec-storage-partitioning" + } + }, + "#spec-window-attribute": { + "current": { + "number": "6.1.2", + "spec": "Iframe credentialless", + "text": "The Window attribute", + "url": "https://wicg.github.io/anonymous-iframe/#spec-window-attribute" + } + }, + "#spec-window-partition-nonce": { + "current": { + "number": "6.1.9.2", + "spec": "Iframe credentialless", + "text": "For Window", + "url": "https://wicg.github.io/anonymous-iframe/#spec-window-partition-nonce" + } + }, + "#spec-worker-partition-nonce": { + "current": { + "number": "6.1.9.3", + "spec": "Iframe credentialless", + "text": "For Worker", + "url": "https://wicg.github.io/anonymous-iframe/#spec-worker-partition-nonce" + } + }, + "#spec-worklet-partition-nonce": { + "current": { + "number": "6.1.9.4", + "spec": "Iframe credentialless", + "text": "For Worklet", + "url": "https://wicg.github.io/anonymous-iframe/#spec-worklet-partition-nonce" + } + }, + "#specification": { + "current": { + "number": "6", + "spec": "Iframe credentialless", + "text": "Specification", + "url": "https://wicg.github.io/anonymous-iframe/#specification" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Status of this document", + "url": "https://wicg.github.io/anonymous-iframe/#status" + } + }, + "#tests": { + "current": { + "number": "5", + "spec": "Iframe credentialless", + "text": "Tests", + "url": "https://wicg.github.io/anonymous-iframe/#tests" + } + }, + "#threat-model": { + "current": { + "number": "7.1", + "spec": "Iframe credentialless", + "text": "Threat model", + "url": "https://wicg.github.io/anonymous-iframe/#threat-model" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Iframe credentialless", + "url": "https://wicg.github.io/anonymous-iframe/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Iframe credentialless", + "text": "Table of Contents", + "url": "https://wicg.github.io/anonymous-iframe/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-appmanifest.json b/bikeshed/spec-data/readonly/headings/headings-appmanifest.json index 7f2a6f7d31..a17e03bed5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-appmanifest.json +++ b/bikeshed/spec-data/readonly/headings/headings-appmanifest.json @@ -43,13 +43,13 @@ }, "#applying-the-manifest": { "current": { - "number": "1.17.4", + "number": "1.17.5", "spec": "Web Application Manifest", "text": "Applying the manifest", "url": "https://w3c.github.io/manifest/#applying-the-manifest" }, "snapshot": { - "number": "1.17.4", + "number": "1.17.5", "spec": "Web Application Manifest", "text": "Applying the manifest", "url": "https://www.w3.org/TR/appmanifest/#applying-the-manifest" @@ -83,20 +83,6 @@ "url": "https://www.w3.org/TR/appmanifest/#change-log" } }, - "#choosing-a-display-mode": { - "current": { - "number": "7", - "spec": "Web Application Manifest", - "text": "Choosing a display mode", - "url": "https://w3c.github.io/manifest/#choosing-a-display-mode" - }, - "snapshot": { - "number": "7", - "spec": "Web Application Manifest", - "text": "Choosing a display mode", - "url": "https://www.w3.org/TR/appmanifest/#choosing-a-display-mode" - } - }, "#conformance": { "current": { "number": "B", @@ -209,6 +195,20 @@ "url": "https://www.w3.org/TR/appmanifest/#display-member" } }, + "#display-modes": { + "current": { + "number": "7", + "spec": "Web Application Manifest", + "text": "Display modes", + "url": "https://w3c.github.io/manifest/#display-modes" + }, + "snapshot": { + "number": "7", + "spec": "Web Application Manifest", + "text": "Display modes", + "url": "https://www.w3.org/TR/appmanifest/#display-modes" + } + }, "#example-usage-of-monochrome-icons": { "current": { "number": "2.4.1", @@ -391,18 +391,18 @@ "url": "https://www.w3.org/TR/appmanifest/#id-member-0" } }, - "#incubations": { + "#incubations-0": { "current": { "number": "C", "spec": "Web Application Manifest", "text": "Incubations", - "url": "https://w3c.github.io/manifest/#incubations" + "url": "https://w3c.github.io/manifest/#incubations-0" }, "snapshot": { "number": "C", "spec": "Web Application Manifest", "text": "Incubations", - "url": "https://www.w3.org/TR/appmanifest/#incubations" + "url": "https://www.w3.org/TR/appmanifest/#incubations-0" } }, "#index": { @@ -867,6 +867,20 @@ "url": "https://www.w3.org/TR/appmanifest/#processing-text-members" } }, + "#processing-the-manifest-without-a-document": { + "current": { + "number": "1.17.4", + "spec": "Web Application Manifest", + "text": "Processing the manifest without a document", + "url": "https://w3c.github.io/manifest/#processing-the-manifest-without-a-document" + }, + "snapshot": { + "number": "1.17.4", + "spec": "Web Application Manifest", + "text": "Processing the manifest without a document", + "url": "https://www.w3.org/TR/appmanifest/#processing-the-manifest-without-a-document" + } + }, "#proprietary-extensions": { "current": { "number": "B.1.1", @@ -1121,13 +1135,13 @@ }, "#updating": { "current": { - "number": "1.17.5", + "number": "1.17.6", "spec": "Web Application Manifest", "text": "Updating the manifest", "url": "https://w3c.github.io/manifest/#updating" }, "snapshot": { - "number": "1.17.5", + "number": "1.17.6", "spec": "Web Application Manifest", "text": "Updating the manifest", "url": "https://www.w3.org/TR/appmanifest/#updating" diff --git a/bikeshed/spec-data/readonly/headings/headings-attribution-reporting-api.json b/bikeshed/spec-data/readonly/headings/headings-attribution-reporting-api.json index f0ef44741c..841926343c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-attribution-reporting-api.json +++ b/bikeshed/spec-data/readonly/headings/headings-attribution-reporting-api.json @@ -7,65 +7,89 @@ "url": "https://wicg.github.io/attribution-reporting-api/#abstract" } }, - "#aggregatable-contribution": { + "#aggregatable-debug-rate-limits": { "current": { - "number": "5.14", + "number": "6.27", "spec": "Attribution Reporting", - "text": "Aggregatable contribution", - "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-contribution" + "text": "Aggregatable debug rate-limits", + "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-rate-limits" + } + }, + "#aggregatable-debug-reporting-config": { + "current": { + "number": "6.13", + "spec": "Attribution Reporting", + "text": "Aggregatable debug reporting config", + "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-debug-reporting-config" } }, "#aggregatable-dedup-key": { "current": { - "number": "5.8", + "number": "6.18", "spec": "Attribution Reporting", "text": "Aggregatable dedup key", "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-dedup-key" } }, - "#aggregatable-report": { + "#aggregatable-report-header": { "current": { - "number": "5.15", + "number": "6.25", "spec": "Attribution Reporting", "text": "Aggregatable report", - "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-report" + "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-report-header" + } + }, + "#aggregatable-source-registration-time-configuration-header": { + "current": { + "number": "6.21", + "spec": "Attribution Reporting", + "text": "Aggregatable source registration time configuration", + "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-source-registration-time-configuration-header" } }, "#aggregatable-trigger-data": { "current": { - "number": "5.7", + "number": "6.16", "spec": "Attribution Reporting", "text": "Aggregatable trigger data", "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-trigger-data" } }, + "#aggregatable-values-configuration": { + "current": { + "number": "6.17", + "spec": "Attribution Reporting", + "text": "Aggregatable values configuration", + "url": "https://wicg.github.io/attribution-reporting-api/#aggregatable-values-configuration" + } + }, "#aggregation-coordinator-header": { "current": { - "number": "5.10", + "number": "6.20", "spec": "Attribution Reporting", "text": "Aggregation coordinator", "url": "https://wicg.github.io/attribution-reporting-api/#aggregation-coordinator-header" } }, - "#attribution-debug-data": { + "#attribution-debug-data-header": { "current": { - "number": "5.17", + "number": "6.28", "spec": "Attribution Reporting", "text": "Attribution debug data", - "url": "https://wicg.github.io/attribution-reporting-api/#attribution-debug-data" + "url": "https://wicg.github.io/attribution-reporting-api/#attribution-debug-data-header" } }, - "#attribution-debug-report": { + "#attribution-debugging": { "current": { - "number": "5.18", + "number": "10.17", "spec": "Attribution Reporting", - "text": "Attribution debug report", - "url": "https://wicg.github.io/attribution-reporting-api/#attribution-debug-report" + "text": "Attribution debugging", + "url": "https://wicg.github.io/attribution-reporting-api/#attribution-debugging" } }, "#attribution-filtering": { "current": { - "number": "5.3", + "number": "6.5", "spec": "Attribution Reporting", "text": "Attribution filtering", "url": "https://wicg.github.io/attribution-reporting-api/#attribution-filtering" @@ -73,7 +97,7 @@ }, "#attribution-rate-limits": { "current": { - "number": "5.16", + "number": "6.26", "spec": "Attribution Reporting", "text": "Attribution rate-limits", "url": "https://wicg.github.io/attribution-reporting-api/#attribution-rate-limits" @@ -81,15 +105,31 @@ }, "#attribution-report": { "current": { - "number": "5.12", + "number": "6.23", "spec": "Attribution Reporting", "text": "Attribution report", "url": "https://wicg.github.io/attribution-reporting-api/#attribution-report" } }, + "#attribution-scope": { + "current": { + "number": "17.7", + "spec": "Attribution Reporting", + "text": "Attribution scope", + "url": "https://wicg.github.io/attribution-reporting-api/#attribution-scope" + } + }, + "#attribution-scopes": { + "current": { + "number": "6.14", + "spec": "Attribution Reporting", + "text": "Attribution scopes", + "url": "https://wicg.github.io/attribution-reporting-api/#attribution-scopes" + } + }, "#attribution-source": { "current": { - "number": "5.6", + "number": "6.15", "spec": "Attribution Reporting", "text": "Attribution source", "url": "https://wicg.github.io/attribution-reporting-api/#attribution-source" @@ -97,7 +137,7 @@ }, "#attribution-trigger": { "current": { - "number": "5.11", + "number": "6.22", "spec": "Attribution Reporting", "text": "Attribution trigger", "url": "https://wicg.github.io/attribution-reporting-api/#attribution-trigger" @@ -105,15 +145,23 @@ }, "#attribution-trigger-creation": { "current": { - "number": "10.1", + "number": "12.1", "spec": "Attribution Reporting", "text": "Creating an attribution trigger", "url": "https://wicg.github.io/attribution-reporting-api/#attribution-trigger-creation" } }, + "#automation": { + "current": { + "number": "", + "spec": "Attribution Reporting", + "text": "15. User-Agent Automation", + "url": "https://wicg.github.io/attribution-reporting-api/#automation" + } + }, "#can-attribution-rate-limit-record-be-removed": { "current": { - "number": "8.8", + "number": "10.14", "spec": "Attribution Reporting", "text": "Can attribution rate-limit record be removed", "url": "https://wicg.github.io/attribution-reporting-api/#can-attribution-rate-limit-record-be-removed" @@ -121,23 +169,47 @@ }, "#can-source-create-aggregatable-contributions": { "current": { - "number": "10.7", + "number": "12.6", "spec": "Attribution Reporting", "text": "Can source create aggregatable contributions", "url": "https://wicg.github.io/attribution-reporting-api/#can-source-create-aggregatable-contributions" } }, - "#clearing-attribution-storage": { + "#clear-site-data-integration": { "current": { - "number": "13.1", + "number": "5", + "spec": "Attribution Reporting", + "text": "Clear Site Data integration", + "url": "https://wicg.github.io/attribution-reporting-api/#clear-site-data-integration" + } + }, + "#clearing-site-data": { + "current": { + "number": "17.1", "spec": "Attribution Reporting", - "text": "Clearing attribution storage", - "url": "https://wicg.github.io/attribution-reporting-api/#clearing-attribution-storage" + "text": "Clearing site data", + "url": "https://wicg.github.io/attribution-reporting-api/#clearing-site-data" + } + }, + "#computing-channel-capacity": { + "current": { + "number": "11.2", + "spec": "Attribution Reporting", + "text": "Computing channel capacity", + "url": "https://wicg.github.io/attribution-reporting-api/#computing-channel-capacity" + } + }, + "#constants": { + "current": { + "number": "8", + "spec": "Attribution Reporting", + "text": "Constants", + "url": "https://wicg.github.io/attribution-reporting-api/#constants" } }, "#create-report-request": { "current": { - "number": "11.8", + "number": "13.8", "spec": "Attribution Reporting", "text": "Creating a report request", "url": "https://wicg.github.io/attribution-reporting-api/#create-report-request" @@ -145,31 +217,119 @@ }, "#creating-aggregatable-contributions": { "current": { - "number": "10.6", + "number": "12.5", "spec": "Attribution Reporting", "text": "Creating aggregatable contributions", "url": "https://wicg.github.io/attribution-reporting-api/#creating-aggregatable-contributions" } }, + "#cross-app-and-web": { + "current": { + "number": "", + "spec": "Attribution Reporting", + "text": "14. Cross App and Web Algorithms", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-app-and-web" + } + }, + "#cross-network-reporting-origin-leakage": { + "current": { + "number": "17.6.1", + "spec": "Attribution Reporting", + "text": "Cross-network reporting-origin leakage", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-network-reporting-origin-leakage" + } + }, + "#cross-site-information-disclosure": { + "current": { + "number": "17.2", + "spec": "Attribution Reporting", + "text": "Cross-site information disclosure", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-site-information-disclosure" + } + }, + "#cross-site-information-disclosure-aggregatable-attribution-reports": { + "current": { + "number": "17.2.2", + "spec": "Attribution Reporting", + "text": "Aggregatable attribution reports", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-site-information-disclosure-aggregatable-attribution-reports" + } + }, + "#cross-site-information-disclosure-debug-reports": { + "current": { + "number": "17.2.3", + "spec": "Attribution Reporting", + "text": "Debug reports", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-site-information-disclosure-debug-reports" + } + }, + "#cross-site-information-disclosure-event-level-reports": { + "current": { + "number": "17.2.1", + "spec": "Attribution Reporting", + "text": "Event-level reports", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-site-information-disclosure-event-level-reports" + } + }, + "#cross-site-recognition-aggregatable-attribution-reports": { + "current": { + "number": "17.3.2", + "spec": "Attribution Reporting", + "text": "Aggregatable attribution reports", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-site-recognition-aggregatable-attribution-reports" + } + }, + "#cross-site-recognition-event-level-reports": { + "current": { + "number": "17.3.1", + "spec": "Attribution Reporting", + "text": "Event-level reports", + "url": "https://wicg.github.io/attribution-reporting-api/#cross-site-recognition-event-level-reports" + } + }, "#debug-keys": { "current": { - "number": "8.5", + "number": "10.9", "spec": "Attribution Reporting", "text": "Cookie-based debugging", "url": "https://wicg.github.io/attribution-reporting-api/#debug-keys" } }, + "#deferring-trigger-attribution": { + "current": { + "number": "12.16", + "spec": "Attribution Reporting", + "text": "Deferring trigger attribution", + "url": "https://wicg.github.io/attribution-reporting-api/#deferring-trigger-attribution" + } + }, + "#deliver-os-registrations-debug-reports": { + "current": { + "number": "14.3", + "spec": "Attribution Reporting", + "text": "Deliver OS registration debug reports", + "url": "https://wicg.github.io/attribution-reporting-api/#deliver-os-registrations-debug-reports" + } + }, "#delivery-time": { "current": { - "number": "10.12", + "number": "12.11", "spec": "Attribution Reporting", "text": "Establishing report delivery time", "url": "https://wicg.github.io/attribution-reporting-api/#delivery-time" } }, + "#destination-rate-limit-result": { + "current": { + "number": "6.31", + "spec": "Attribution Reporting", + "text": "Destination rate-limit result", + "url": "https://wicg.github.io/attribution-reporting-api/#destination-rate-limit-result" + } + }, "#does-filter-data-match": { "current": { - "number": "10.2", + "number": "12.2", "spec": "Attribution Reporting", "text": "Does filter data match", "url": "https://wicg.github.io/attribution-reporting-api/#does-filter-data-match" @@ -177,7 +337,7 @@ }, "#encode-integer": { "current": { - "number": "11.1", + "number": "13.1", "spec": "Attribution Reporting", "text": "Encode an unsigned k-bit integer", "url": "https://wicg.github.io/attribution-reporting-api/#encode-integer" @@ -185,7 +345,7 @@ }, "#event-level-report": { "current": { - "number": "5.13", + "number": "6.24", "spec": "Attribution Reporting", "text": "Event-level report", "url": "https://wicg.github.io/attribution-reporting-api/#event-level-report" @@ -193,44 +353,52 @@ }, "#event-level-trigger-configuration": { "current": { - "number": "5.9", + "number": "6.19", "spec": "Attribution Reporting", "text": "Event-level trigger configuration", "url": "https://wicg.github.io/attribution-reporting-api/#event-level-trigger-configuration" } }, - "#fetch-monkeypatches": { + "#general-algorithms": { "current": { - "number": "3", + "number": "", "spec": "Attribution Reporting", - "text": "Fetch monkeypatches", - "url": "https://wicg.github.io/attribution-reporting-api/#fetch-monkeypatches" + "text": "10. General Algorithms", + "url": "https://wicg.github.io/attribution-reporting-api/#general-algorithms" } }, - "#general-algorithms": { + "#generating-randomized-null-attribution-reports": { "current": { - "number": "8", + "number": "12.15", "spec": "Attribution Reporting", - "text": "General Algorithms", - "url": "https://wicg.github.io/attribution-reporting-api/#general-algorithms" + "text": "Generating randomized null attribution reports", + "url": "https://wicg.github.io/attribution-reporting-api/#generating-randomized-null-attribution-reports" } }, - "#get-report-headers": { + "#get-os-registrations": { "current": { - "number": "11.9", + "number": "14.1", "spec": "Attribution Reporting", - "text": "Get report request headers", - "url": "https://wicg.github.io/attribution-reporting-api/#get-report-headers" + "text": "Get OS registrations", + "url": "https://wicg.github.io/attribution-reporting-api/#get-os-registrations" } }, "#get-report-url": { "current": { - "number": "11.7", + "number": "13.7", "spec": "Attribution Reporting", "text": "Get report request URL", "url": "https://wicg.github.io/attribution-reporting-api/#get-report-url" } }, + "#getting-registration-info": { + "current": { + "number": "10.8", + "spec": "Attribution Reporting", + "text": "Getting registration info", + "url": "https://wicg.github.io/attribution-reporting-api/#getting-registration-info" + } + }, "#html-monkeypatches": { "current": { "number": "2", @@ -287,9 +455,17 @@ "url": "https://wicg.github.io/attribution-reporting-api/#intro" } }, + "#issue-aggregatable-debug-report-request": { + "current": { + "number": "13.12", + "spec": "Attribution Reporting", + "text": "Issuing an aggregatable debug request", + "url": "https://wicg.github.io/attribution-reporting-api/#issue-aggregatable-debug-report-request" + } + }, "#issue-debug-report-request": { "current": { - "number": "11.11", + "number": "13.10", "spec": "Attribution Reporting", "text": "Issuing a debug report request", "url": "https://wicg.github.io/attribution-reporting-api/#issue-debug-report-request" @@ -297,7 +473,7 @@ }, "#issue-report-request": { "current": { - "number": "11.10", + "number": "13.9", "spec": "Attribution Reporting", "text": "Issuing a report request", "url": "https://wicg.github.io/attribution-reporting-api/#issue-report-request" @@ -305,7 +481,7 @@ }, "#issue-verbose-debug-report-request": { "current": { - "number": "11.12", + "number": "13.11", "spec": "Attribution Reporting", "text": "Issuing a verbose debug request", "url": "https://wicg.github.io/attribution-reporting-api/#issue-verbose-debug-report-request" @@ -319,6 +495,22 @@ "url": "https://wicg.github.io/attribution-reporting-api/#issues-index" } }, + "#making-a-background-attributionsrc-request": { + "current": { + "number": "10.16", + "spec": "Attribution Reporting", + "text": "Making a background attributionsrc request", + "url": "https://wicg.github.io/attribution-reporting-api/#making-a-background-attributionsrc-request" + } + }, + "#mitigating-against-repeated-API-use": { + "current": { + "number": "17.4", + "spec": "Attribution Reporting", + "text": "Mitigating against repeated API use", + "url": "https://wicg.github.io/attribution-reporting-api/#mitigating-against-repeated-API-use" + } + }, "#monkeypatch-attributionsrc": { "current": { "number": "2.1", @@ -327,6 +519,14 @@ "url": "https://wicg.github.io/attribution-reporting-api/#monkeypatch-attributionsrc" } }, + "#monkeypatch-fetch": { + "current": { + "number": "3.1", + "spec": "Attribution Reporting", + "text": "Fetch monkeypatches", + "url": "https://wicg.github.io/attribution-reporting-api/#monkeypatch-fetch" + } + }, "#monkeypatch-window-open": { "current": { "number": "2.2", @@ -335,6 +535,30 @@ "url": "https://wicg.github.io/attribution-reporting-api/#monkeypatch-window-open" } }, + "#monkeypatch-xmlhttprequest": { + "current": { + "number": "3.2", + "spec": "Attribution Reporting", + "text": "XMLHttpRequest monkeypatches", + "url": "https://wicg.github.io/attribution-reporting-api/#monkeypatch-xmlhttprequest" + } + }, + "#navigation-monkeypatches": { + "current": { + "number": "2.3", + "spec": "Attribution Reporting", + "text": "Navigation monkeypatches", + "url": "https://wicg.github.io/attribution-reporting-api/#navigation-monkeypatches" + } + }, + "#network-monkeypatches": { + "current": { + "number": "3", + "spec": "Attribution Reporting", + "text": "Network monkeypatches", + "url": "https://wicg.github.io/attribution-reporting-api/#network-monkeypatches" + } + }, "#normative": { "current": { "number": "", @@ -345,7 +569,7 @@ }, "#obtain-aggregatable-report-aggregation-service-payloads": { "current": { - "number": "11.4", + "number": "13.4", "spec": "Attribution Reporting", "text": "Obtaining an aggregatable report’s aggregation service payloads", "url": "https://wicg.github.io/attribution-reporting-api/#obtain-aggregatable-report-aggregation-service-payloads" @@ -353,7 +577,7 @@ }, "#obtain-aggregatable-report-debug-mode": { "current": { - "number": "11.2", + "number": "13.2", "spec": "Attribution Reporting", "text": "Obtaining an aggregatable report’s debug mode", "url": "https://wicg.github.io/attribution-reporting-api/#obtain-aggregatable-report-debug-mode" @@ -361,55 +585,55 @@ }, "#obtain-aggregatable-report-shared-info": { "current": { - "number": "11.3", + "number": "13.3", "spec": "Attribution Reporting", "text": "Obtaining an aggregatable report’s shared info", "url": "https://wicg.github.io/attribution-reporting-api/#obtain-aggregatable-report-shared-info" } }, - "#obtaining-an-aggregatable-report": { + "#obtaining-an-aggregatable-attribution-report": { "current": { - "number": "10.15", + "number": "12.14", "spec": "Attribution Reporting", - "text": "Obtaining an aggregatable report", - "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-an-aggregatable-report" + "text": "Obtaining an aggregatable attribution report", + "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-an-aggregatable-attribution-report" } }, "#obtaining-an-event-level-report": { "current": { - "number": "10.13", + "number": "12.12", "spec": "Attribution Reporting", "text": "Obtaining an event-level report", "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-an-event-level-report" } }, - "#obtaining-and-delivering-debug-report": { + "#obtaining-and-delivering-aggregatable-debug-report": { "current": { - "number": "8.9", + "number": "10.18", "spec": "Attribution Reporting", - "text": "Obtaining and delivering an attribution debug report", - "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-and-delivering-debug-report" + "text": "Obtaining and delivering an aggregatable debug report", + "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-and-delivering-aggregatable-debug-report" } }, - "#obtaining-attribution-source-anchor": { + "#obtaining-and-delivering-verbose-debug-report": { "current": { - "number": "9.2", + "number": "10.15", "spec": "Attribution Reporting", - "text": "Obtaining an attribution source from an a element", - "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-attribution-source-anchor" + "text": "Obtaining and delivering a verbose debug report", + "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-and-delivering-verbose-debug-report" } }, - "#obtaining-attribution-source-window-features": { + "#obtaining-context-origin": { "current": { - "number": "9.3", + "number": "10.10", "spec": "Attribution Reporting", - "text": "Obtaining an attribution source from window features", - "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-attribution-source-window-features" + "text": "Obtaining context origin", + "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-context-origin" } }, "#obtaining-randomized-response": { "current": { - "number": "8.6", + "number": "10.11", "spec": "Attribution Reporting", "text": "Obtaining a randomized response", "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-randomized-response" @@ -417,7 +641,7 @@ }, "#obtaining-randomized-source-response": { "current": { - "number": "9.1", + "number": "11.1", "spec": "Attribution Reporting", "text": "Obtaining a randomized source response", "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-randomized-source-response" @@ -425,18 +649,26 @@ }, "#obtaining-required-aggregatable-budget": { "current": { - "number": "10.14", + "number": "12.13", "spec": "Attribution Reporting", "text": "Obtaining an aggregatable report’s required budget", "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-required-aggregatable-budget" } }, - "#obtaining-trigger-debug-data": { + "#obtaining-trigger-verbose-debug-data": { "current": { - "number": "10.8", + "number": "12.7", "spec": "Attribution Reporting", - "text": "Obtaining debug data on trigger registration", - "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-trigger-debug-data" + "text": "Obtaining verbose debug data on trigger registration", + "url": "https://wicg.github.io/attribution-reporting-api/#obtaining-trigger-verbose-debug-data" + } + }, + "#opting-in-to-the-api": { + "current": { + "number": "16.2", + "spec": "Attribution Reporting", + "text": "Opting in to the API", + "url": "https://wicg.github.io/attribution-reporting-api/#opting-in-to-the-api" } }, "#overview": { @@ -447,9 +679,25 @@ "url": "https://wicg.github.io/attribution-reporting-api/#overview" } }, + "#parsing-aggregatable-debug-reporting-config": { + "current": { + "number": "10.7", + "spec": "Attribution Reporting", + "text": "Parsing aggregatable debug reporting config", + "url": "https://wicg.github.io/attribution-reporting-api/#parsing-aggregatable-debug-reporting-config" + } + }, + "#parsing-aggregation-coordinator": { + "current": { + "number": "10.6", + "spec": "Attribution Reporting", + "text": "Parsing aggregation coordinator", + "url": "https://wicg.github.io/attribution-reporting-api/#parsing-aggregation-coordinator" + } + }, "#parsing-aggregation-key-piece": { "current": { - "number": "8.7", + "number": "10.12", "spec": "Attribution Reporting", "text": "Parsing aggregation key piece", "url": "https://wicg.github.io/attribution-reporting-api/#parsing-aggregation-key-piece" @@ -457,7 +705,7 @@ }, "#parsing-filter-data": { "current": { - "number": "8.3", + "number": "10.4", "spec": "Attribution Reporting", "text": "Parsing filter data", "url": "https://wicg.github.io/attribution-reporting-api/#parsing-filter-data" @@ -465,15 +713,23 @@ }, "#parsing-filters": { "current": { - "number": "8.4", + "number": "10.5", "spec": "Attribution Reporting", "text": "Parsing filters", "url": "https://wicg.github.io/attribution-reporting-api/#parsing-filters" } }, + "#parsing-json-fields": { + "current": { + "number": "10.2", + "spec": "Attribution Reporting", + "text": "Parsing JSON fields", + "url": "https://wicg.github.io/attribution-reporting-api/#parsing-json-fields" + } + }, "#parsing-source-registration": { "current": { - "number": "9.4", + "number": "11.3", "spec": "Attribution Reporting", "text": "Parsing source-registration JSON", "url": "https://wicg.github.io/attribution-reporting-api/#parsing-source-registration" @@ -491,21 +747,45 @@ "current": { "number": "", "spec": "Attribution Reporting", - "text": "13. Privacy consideration", + "text": "17. Privacy considerations", "url": "https://wicg.github.io/attribution-reporting-api/#privacy-considerations" } }, "#processing-an-attribution-source": { "current": { - "number": "9.5", + "number": "11.4", "spec": "Attribution Reporting", "text": "Processing an attribution source", "url": "https://wicg.github.io/attribution-reporting-api/#processing-an-attribution-source" } }, + "#protecting-against-browsing-history-reconstruction": { + "current": { + "number": "17.5", + "spec": "Attribution Reporting", + "text": "Protecting against browsing history reconstruction", + "url": "https://wicg.github.io/attribution-reporting-api/#protecting-against-browsing-history-reconstruction" + } + }, + "#protecting-against-cross-site-recognition": { + "current": { + "number": "17.3", + "spec": "Attribution Reporting", + "text": "Protecting against cross-site recognition", + "url": "https://wicg.github.io/attribution-reporting-api/#protecting-against-cross-site-recognition" + } + }, + "#randomized-response-output-configuration": { + "current": { + "number": "6.3", + "spec": "Attribution Reporting", + "text": "Randomized response output configuration", + "url": "https://wicg.github.io/attribution-reporting-api/#randomized-response-output-configuration" + } + }, "#randomized-source-response": { "current": { - "number": "5.2", + "number": "6.4", "spec": "Attribution Reporting", "text": "Randomized source response", "url": "https://wicg.github.io/attribution-reporting-api/#randomized-source-response" @@ -519,33 +799,65 @@ "url": "https://wicg.github.io/attribution-reporting-api/#references" } }, + "#registrars-header": { + "current": { + "number": "14.2", + "spec": "Attribution Reporting", + "text": "Registrars", + "url": "https://wicg.github.io/attribution-reporting-api/#registrars-header" + } + }, + "#registration-info": { + "current": { + "number": "6.1", + "spec": "Attribution Reporting", + "text": "Registration info", + "url": "https://wicg.github.io/attribution-reporting-api/#registration-info" + } + }, "#report-delivery": { "current": { "number": "", "spec": "Attribution Reporting", - "text": "11. Report delivery", + "text": "13. Report delivery", "url": "https://wicg.github.io/attribution-reporting-api/#report-delivery" } }, - "#security-considerations": { + "#report-window-header": { "current": { - "number": "", + "number": "6.8", "spec": "Attribution Reporting", - "text": "12. Security considerations", - "url": "https://wicg.github.io/attribution-reporting-api/#security-considerations" + "text": "Report window", + "url": "https://wicg.github.io/attribution-reporting-api/#report-window-header" } }, - "#serialize-debug-report-body": { + "#reporting-delay-concerns": { "current": { - "number": "11.6", + "number": "17.6", "spec": "Attribution Reporting", - "text": "Serialize attribution debug report body", - "url": "https://wicg.github.io/attribution-reporting-api/#serialize-debug-report-body" + "text": "Reporting-delay concerns", + "url": "https://wicg.github.io/attribution-reporting-api/#reporting-delay-concerns" + } + }, + "#same-origin-policy": { + "current": { + "number": "16.1", + "spec": "Attribution Reporting", + "text": "Same-Origin Policy", + "url": "https://wicg.github.io/attribution-reporting-api/#same-origin-policy" + } + }, + "#security-considerations": { + "current": { + "number": "", + "spec": "Attribution Reporting", + "text": "16. Security considerations", + "url": "https://wicg.github.io/attribution-reporting-api/#security-considerations" } }, "#serialize-destinations": { "current": { - "number": "8.2", + "number": "10.3", "spec": "Attribution Reporting", "text": "Serialize attribution destinations", "url": "https://wicg.github.io/attribution-reporting-api/#serialize-destinations" @@ -553,7 +865,7 @@ }, "#serialize-integer": { "current": { - "number": "8.1", + "number": "10.1", "spec": "Attribution Reporting", "text": "Serialize an integer", "url": "https://wicg.github.io/attribution-reporting-api/#serialize-integer" @@ -561,47 +873,55 @@ }, "#serialize-report-body": { "current": { - "number": "11.5", + "number": "13.5", "spec": "Attribution Reporting", "text": "Serialize attribution report body", "url": "https://wicg.github.io/attribution-reporting-api/#serialize-report-body" } }, - "#should-block-attribution-for-attribution-limit": { + "#serialize-verbose-debug-report-body": { "current": { - "number": "10.3", + "number": "13.6", "spec": "Attribution Reporting", - "text": "Should attribution be blocked by attribution rate limit", - "url": "https://wicg.github.io/attribution-reporting-api/#should-block-attribution-for-attribution-limit" + "text": "Serialize verbose debug report body", + "url": "https://wicg.github.io/attribution-reporting-api/#serialize-verbose-debug-report-body" } }, "#should-block-attribution-for-rate-limits": { "current": { - "number": "10.5", + "number": "12.4", "spec": "Attribution Reporting", "text": "Should attribution be blocked by rate limits", "url": "https://wicg.github.io/attribution-reporting-api/#should-block-attribution-for-rate-limits" } }, - "#should-block-processing-for-reporting-endpoint-limit": { + "#should-block-processing-for-reporting-origin-limit": { "current": { - "number": "10.4", + "number": "10.13", "spec": "Attribution Reporting", - "text": "Should processing be blocked by reporting-endpoint limit", - "url": "https://wicg.github.io/attribution-reporting-api/#should-block-processing-for-reporting-endpoint-limit" + "text": "Should processing be blocked by reporting-origin limit", + "url": "https://wicg.github.io/attribution-reporting-api/#should-block-processing-for-reporting-origin-limit" + } + }, + "#should-send-a-report-unconditionally": { + "current": { + "number": "12.3", + "spec": "Attribution Reporting", + "text": "Should send a report unconditionally", + "url": "https://wicg.github.io/attribution-reporting-api/#should-send-a-report-unconditionally" } }, "#source-algorithms": { "current": { - "number": "9", + "number": "", "spec": "Attribution Reporting", - "text": "Source Algorithms", + "text": "11. Source Algorithms", "url": "https://wicg.github.io/attribution-reporting-api/#source-algorithms" } }, "#source-type-header": { "current": { - "number": "5.5", + "number": "6.7", "spec": "Attribution Reporting", "text": "Source type", "url": "https://wicg.github.io/attribution-reporting-api/#source-type-header" @@ -617,7 +937,7 @@ }, "#storage": { "current": { - "number": "6", + "number": "7", "spec": "Attribution Reporting", "text": "Storage", "url": "https://wicg.github.io/attribution-reporting-api/#storage" @@ -625,7 +945,7 @@ }, "#structures": { "current": { - "number": "5", + "number": "6", "spec": "Attribution Reporting", "text": "Structures", "url": "https://wicg.github.io/attribution-reporting-api/#structures" @@ -633,12 +953,28 @@ }, "#suitable-origin": { "current": { - "number": "5.4", + "number": "6.6", "spec": "Attribution Reporting", "text": "Suitable origin", "url": "https://wicg.github.io/attribution-reporting-api/#suitable-origin" } }, + "#summary-bucket-header": { + "current": { + "number": "6.10", + "spec": "Attribution Reporting", + "text": "Summary bucket", + "url": "https://wicg.github.io/attribution-reporting-api/#summary-bucket-header" + } + }, + "#summary-operator-header": { + "current": { + "number": "6.9", + "spec": "Attribution Reporting", + "text": "Summary operator", + "url": "https://wicg.github.io/attribution-reporting-api/#summary-operator-header" + } + }, "#title": { "current": { "number": "", @@ -659,13 +995,29 @@ "current": { "number": "", "spec": "Attribution Reporting", - "text": "10. Triggering Algorithms", + "text": "12. Triggering Algorithms", "url": "https://wicg.github.io/attribution-reporting-api/#trigger-algorithms" } }, + "#trigger-data-matching-mode-header": { + "current": { + "number": "6.11", + "spec": "Attribution Reporting", + "text": "Trigger-data matching mode", + "url": "https://wicg.github.io/attribution-reporting-api/#trigger-data-matching-mode-header" + } + }, + "#trigger-specs-header": { + "current": { + "number": "6.12", + "spec": "Attribution Reporting", + "text": "Trigger specs", + "url": "https://wicg.github.io/attribution-reporting-api/#trigger-specs-header" + } + }, "#trigger-state": { "current": { - "number": "5.1", + "number": "6.2", "spec": "Attribution Reporting", "text": "Trigger state", "url": "https://wicg.github.io/attribution-reporting-api/#trigger-state" @@ -673,7 +1025,7 @@ }, "#triggering-aggregatable-attribution": { "current": { - "number": "10.10", + "number": "12.9", "spec": "Attribution Reporting", "text": "Triggering aggregatable attribution", "url": "https://wicg.github.io/attribution-reporting-api/#triggering-aggregatable-attribution" @@ -681,7 +1033,7 @@ }, "#triggering-attribution": { "current": { - "number": "10.11", + "number": "12.10", "spec": "Attribution Reporting", "text": "Triggering attribution", "url": "https://wicg.github.io/attribution-reporting-api/#triggering-attribution" @@ -689,7 +1041,7 @@ }, "#triggering-event-level-attribution": { "current": { - "number": "10.9", + "number": "12.8", "spec": "Attribution Reporting", "text": "Triggering event-level attribution", "url": "https://wicg.github.io/attribution-reporting-api/#triggering-event-level-attribution" @@ -697,34 +1049,42 @@ }, "#triggering-result": { "current": { - "number": "5.19", + "number": "6.30", "spec": "Attribution Reporting", "text": "Triggering result", "url": "https://wicg.github.io/attribution-reporting-api/#triggering-result" } }, + "#user-presence-tracking": { + "current": { + "number": "17.6.2", + "spec": "Attribution Reporting", + "text": "User-presence tracking", + "url": "https://wicg.github.io/attribution-reporting-api/#user-presence-tracking" + } + }, "#vendor-specific-values": { "current": { - "number": "7", + "number": "9", "spec": "Attribution Reporting", "text": "Vendor-Specific Values", "url": "https://wicg.github.io/attribution-reporting-api/#vendor-specific-values" } }, - "#w3c-conformance": { + "#verbose-debug-report": { "current": { - "number": "", + "number": "6.29", "spec": "Attribution Reporting", - "text": "Conformance", - "url": "https://wicg.github.io/attribution-reporting-api/#w3c-conformance" + "text": "Verbose debug report", + "url": "https://wicg.github.io/attribution-reporting-api/#verbose-debug-report" } }, - "#w3c-conformant-algorithms": { + "#w3c-conformance": { "current": { "number": "", "spec": "Attribution Reporting", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/attribution-reporting-api/#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://wicg.github.io/attribution-reporting-api/#w3c-conformance" } }, "#w3c-conventions": { @@ -734,5 +1094,21 @@ "text": "Document conventions", "url": "https://wicg.github.io/attribution-reporting-api/#w3c-conventions" } + }, + "#webdriver-sendpendingreports": { + "current": { + "number": "15.2", + "spec": "Attribution Reporting", + "text": "Send pending reports", + "url": "https://wicg.github.io/attribution-reporting-api/#webdriver-sendpendingreports" + } + }, + "#webdriver-setlocaltestingmode": { + "current": { + "number": "15.1", + "spec": "Attribution Reporting", + "text": "Set local testing mode", + "url": "https://wicg.github.io/attribution-reporting-api/#webdriver-setlocaltestingmode" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-audio-session.json b/bikeshed/spec-data/readonly/headings/headings-audio-session.json new file mode 100644 index 0000000000..aaad3d04da --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-audio-session.json @@ -0,0 +1,170 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Abstract", + "url": "https://w3c.github.io/audio-session/#abstract" + } + }, + "#acknowledgements": { + "current": { + "number": "6", + "spec": "Audio Session", + "text": "Acknowledgements", + "url": "https://w3c.github.io/audio-session/#acknowledgements" + } + }, + "#audio-session": { + "current": { + "number": "2", + "spec": "Audio Session", + "text": "The AudioSession interface", + "url": "https://w3c.github.io/audio-session/#audio-session" + } + }, + "#examples": { + "current": { + "number": "5", + "spec": "Audio Session", + "text": "Examples", + "url": "https://w3c.github.io/audio-session/#examples" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "IDL Index", + "url": "https://w3c.github.io/audio-session/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Index", + "url": "https://w3c.github.io/audio-session/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/audio-session/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/audio-session/#index-defined-here" + } + }, + "#interrutpion-handling-example": { + "current": { + "number": "5.2", + "spec": "Audio Session", + "text": "A site reacts upon interruption", + "url": "https://w3c.github.io/audio-session/#interrutpion-handling-example" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Audio Session", + "text": "Introduction", + "url": "https://w3c.github.io/audio-session/#introduction" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Normative References", + "url": "https://w3c.github.io/audio-session/#normative" + } + }, + "#privacy": { + "current": { + "number": "3", + "spec": "Audio Session", + "text": "Privacy considerations", + "url": "https://w3c.github.io/audio-session/#privacy" + } + }, + "#proactive-play-and-record-example": { + "current": { + "number": "5.1", + "spec": "Audio Session", + "text": "A site sets its audio session type proactively to \"play-and-record\"", + "url": "https://w3c.github.io/audio-session/#proactive-play-and-record-example" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "References", + "url": "https://w3c.github.io/audio-session/#references" + } + }, + "#security": { + "current": { + "number": "4", + "spec": "Audio Session", + "text": "Security considerations", + "url": "https://w3c.github.io/audio-session/#security" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Status of this document", + "url": "https://w3c.github.io/audio-session/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Audio Session", + "url": "https://w3c.github.io/audio-session/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Table of Contents", + "url": "https://w3c.github.io/audio-session/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Conformance", + "url": "https://w3c.github.io/audio-session/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/audio-session/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Audio Session", + "text": "Document conventions", + "url": "https://w3c.github.io/audio-session/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-audiobooks.json b/bikeshed/spec-data/readonly/headings/headings-audiobooks.json new file mode 100644 index 0000000000..f0ddbbb1eb --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-audiobooks.json @@ -0,0 +1,590 @@ +{ + "#ack": { + "current": { + "number": "C", + "spec": "Audiobooks", + "text": "Acknowledgements", + "url": "https://w3c.github.io/audiobooks/#ack" + }, + "snapshot": { + "number": "C", + "spec": "Audiobooks", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/audiobooks/#ack" + } + }, + "#audio-accessibility": { + "current": { + "number": "5.11", + "spec": "Audiobooks", + "text": "Accessibility", + "url": "https://w3c.github.io/audiobooks/#audio-accessibility" + }, + "snapshot": { + "number": "5.11", + "spec": "Audiobooks", + "text": "Accessibility", + "url": "https://www.w3.org/TR/audiobooks/#audio-accessibility" + } + }, + "#audio-conformance": { + "current": { + "number": "5.4", + "spec": "Audiobooks", + "text": "Publication Conformance", + "url": "https://w3c.github.io/audiobooks/#audio-conformance" + }, + "snapshot": { + "number": "5.4", + "spec": "Audiobooks", + "text": "Publication Conformance", + "url": "https://www.w3.org/TR/audiobooks/#audio-conformance" + } + }, + "#audio-construction": { + "current": { + "number": "4", + "spec": "Audiobooks", + "text": "Construction", + "url": "https://w3c.github.io/audiobooks/#audio-construction" + }, + "snapshot": { + "number": "4", + "spec": "Audiobooks", + "text": "Construction", + "url": "https://www.w3.org/TR/audiobooks/#audio-construction" + } + }, + "#audio-context": { + "current": { + "number": "5.3", + "spec": "Audiobooks", + "text": "Manifest Contexts", + "url": "https://w3c.github.io/audiobooks/#audio-context" + }, + "snapshot": { + "number": "5.3", + "spec": "Audiobooks", + "text": "Manifest Contexts", + "url": "https://www.w3.org/TR/audiobooks/#audio-context" + } + }, + "#audio-creators": { + "current": { + "number": "5.6.1", + "spec": "Audiobooks", + "text": "Creators", + "url": "https://w3c.github.io/audiobooks/#audio-creators" + }, + "snapshot": { + "number": "5.6.1", + "spec": "Audiobooks", + "text": "Creators", + "url": "https://www.w3.org/TR/audiobooks/#audio-creators" + } + }, + "#audio-duration": { + "current": { + "number": "5.6.2", + "spec": "Audiobooks", + "text": "Duration", + "url": "https://w3c.github.io/audiobooks/#audio-duration" + }, + "snapshot": { + "number": "5.6.2", + "spec": "Audiobooks", + "text": "Duration", + "url": "https://www.w3.org/TR/audiobooks/#audio-duration" + } + }, + "#audio-manifest": { + "current": { + "number": "5", + "spec": "Audiobooks", + "text": "Manifest", + "url": "https://w3c.github.io/audiobooks/#audio-manifest" + }, + "snapshot": { + "number": "5", + "spec": "Audiobooks", + "text": "Manifest", + "url": "https://www.w3.org/TR/audiobooks/#audio-manifest" + } + }, + "#audio-manifest-examples": { + "current": { + "number": "A", + "spec": "Audiobooks", + "text": "Manifest Examples", + "url": "https://w3c.github.io/audiobooks/#audio-manifest-examples" + }, + "snapshot": { + "number": "A", + "spec": "Audiobooks", + "text": "Manifest Examples", + "url": "https://www.w3.org/TR/audiobooks/#audio-manifest-examples" + } + }, + "#audio-manifest-processing": { + "current": { + "number": "6", + "spec": "Audiobooks", + "text": "Manifest Processing", + "url": "https://w3c.github.io/audiobooks/#audio-manifest-processing" + }, + "snapshot": { + "number": "6", + "spec": "Audiobooks", + "text": "Manifest Processing", + "url": "https://www.w3.org/TR/audiobooks/#audio-manifest-processing" + } + }, + "#audio-packaging": { + "current": { + "number": "5.10", + "spec": "Audiobooks", + "text": "Packaging", + "url": "https://w3c.github.io/audiobooks/#audio-packaging" + }, + "snapshot": { + "number": "5.10", + "spec": "Audiobooks", + "text": "Packaging", + "url": "https://www.w3.org/TR/audiobooks/#audio-packaging" + } + }, + "#audio-pep": { + "current": { + "number": "4.1", + "spec": "Audiobooks", + "text": "Primary Entry Page", + "url": "https://w3c.github.io/audiobooks/#audio-pep" + }, + "snapshot": { + "number": "4.1", + "spec": "Audiobooks", + "text": "Primary Entry Page", + "url": "https://www.w3.org/TR/audiobooks/#audio-pep" + } + }, + "#audio-preview": { + "current": { + "number": "5.9", + "spec": "Audiobooks", + "text": "Audiobook Previews", + "url": "https://w3c.github.io/audiobooks/#audio-preview" + }, + "snapshot": { + "number": "5.9", + "spec": "Audiobooks", + "text": "Audiobook Previews", + "url": "https://www.w3.org/TR/audiobooks/#audio-preview" + } + }, + "#audio-properties": { + "current": { + "number": "5.6", + "spec": "Audiobooks", + "text": "Properties", + "url": "https://w3c.github.io/audiobooks/#audio-properties" + }, + "snapshot": { + "number": "5.6", + "spec": "Audiobooks", + "text": "Properties", + "url": "https://www.w3.org/TR/audiobooks/#audio-properties" + } + }, + "#audio-properties-intro": { + "current": { + "number": "5.1", + "spec": "Audiobooks", + "text": "Introduction", + "url": "https://w3c.github.io/audiobooks/#audio-properties-intro" + }, + "snapshot": { + "number": "5.1", + "spec": "Audiobooks", + "text": "Introduction", + "url": "https://www.w3.org/TR/audiobooks/#audio-properties-intro" + } + }, + "#audio-readingorder": { + "current": { + "number": "5.7", + "spec": "Audiobooks", + "text": "Default Reading Order", + "url": "https://w3c.github.io/audiobooks/#audio-readingorder" + }, + "snapshot": { + "number": "5.7", + "spec": "Audiobooks", + "text": "Default Reading Order", + "url": "https://www.w3.org/TR/audiobooks/#audio-readingorder" + } + }, + "#audio-requirements": { + "current": { + "number": "5.2", + "spec": "Audiobooks", + "text": "Requirements", + "url": "https://w3c.github.io/audiobooks/#audio-requirements" + }, + "snapshot": { + "number": "5.2", + "spec": "Audiobooks", + "text": "Requirements", + "url": "https://www.w3.org/TR/audiobooks/#audio-requirements" + } + }, + "#audio-resourcelist": { + "current": { + "number": "5.8", + "spec": "Audiobooks", + "text": "Resource List", + "url": "https://w3c.github.io/audiobooks/#audio-resourcelist" + }, + "snapshot": { + "number": "5.8", + "spec": "Audiobooks", + "text": "Resource List", + "url": "https://www.w3.org/TR/audiobooks/#audio-resourcelist" + } + }, + "#audio-simple": { + "current": { + "number": "A.1", + "spec": "Audiobooks", + "text": "Simple Audiobook", + "url": "https://w3c.github.io/audiobooks/#audio-simple" + }, + "snapshot": { + "number": "A.1", + "spec": "Audiobooks", + "text": "Simple Audiobook", + "url": "https://www.w3.org/TR/audiobooks/#audio-simple" + } + }, + "#audio-supplemental": { + "current": { + "number": "A.2", + "spec": "Audiobooks", + "text": "Audiobook with Supplemental Content", + "url": "https://w3c.github.io/audiobooks/#audio-supplemental" + }, + "snapshot": { + "number": "A.2", + "spec": "Audiobooks", + "text": "Audiobook with Supplemental Content", + "url": "https://www.w3.org/TR/audiobooks/#audio-supplemental" + } + }, + "#audio-terminology": { + "current": { + "number": "2", + "spec": "Audiobooks", + "text": "Terminology", + "url": "https://w3c.github.io/audiobooks/#audio-terminology" + }, + "snapshot": { + "number": "2", + "spec": "Audiobooks", + "text": "Terminology", + "url": "https://www.w3.org/TR/audiobooks/#audio-terminology" + } + }, + "#audio-toc": { + "current": { + "number": "4.2", + "spec": "Audiobooks", + "text": "Table of Contents", + "url": "https://w3c.github.io/audiobooks/#audio-toc" + }, + "snapshot": { + "number": "4.2", + "spec": "Audiobooks", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/audiobooks/#audio-toc" + } + }, + "#audio-toc-examples": { + "current": { + "number": "B", + "spec": "Audiobooks", + "text": "Table of Contents Examples", + "url": "https://w3c.github.io/audiobooks/#audio-toc-examples" + }, + "snapshot": { + "number": "B", + "spec": "Audiobooks", + "text": "Table of Contents Examples", + "url": "https://www.w3.org/TR/audiobooks/#audio-toc-examples" + } + }, + "#audio-type": { + "current": { + "number": "5.5", + "spec": "Audiobooks", + "text": "Publication Type", + "url": "https://w3c.github.io/audiobooks/#audio-type" + }, + "snapshot": { + "number": "5.5", + "spec": "Audiobooks", + "text": "Publication Type", + "url": "https://www.w3.org/TR/audiobooks/#audio-type" + } + }, + "#audio-ua-accessibility": { + "current": { + "number": "9.4", + "spec": "Audiobooks", + "text": "Audiobooks Accessibility", + "url": "https://w3c.github.io/audiobooks/#audio-ua-accessibility" + }, + "snapshot": { + "number": "9.4", + "spec": "Audiobooks", + "text": "Audiobooks Accessibility", + "url": "https://www.w3.org/TR/audiobooks/#audio-ua-accessibility" + } + }, + "#audio-ua-behaviour": { + "current": { + "number": "9", + "spec": "Audiobooks", + "text": "User Agent Behaviors for Audiobooks", + "url": "https://w3c.github.io/audiobooks/#audio-ua-behaviour" + }, + "snapshot": { + "number": "9", + "spec": "Audiobooks", + "text": "User Agent Behaviors for Audiobooks", + "url": "https://www.w3.org/TR/audiobooks/#audio-ua-behaviour" + } + }, + "#audio-ua-navigation": { + "current": { + "number": "9.1", + "spec": "Audiobooks", + "text": "Opening and Navigating the Contents of an Audiobook", + "url": "https://w3c.github.io/audiobooks/#audio-ua-navigation" + }, + "snapshot": { + "number": "9.1", + "spec": "Audiobooks", + "text": "Opening and Navigating the Contents of an Audiobook", + "url": "https://www.w3.org/TR/audiobooks/#audio-ua-navigation" + } + }, + "#audio-ua-packaging": { + "current": { + "number": "9.3", + "spec": "Audiobooks", + "text": "Audiobook Packaging and Offlining", + "url": "https://w3c.github.io/audiobooks/#audio-ua-packaging" + }, + "snapshot": { + "number": "9.3", + "spec": "Audiobooks", + "text": "Audiobook Packaging and Offlining", + "url": "https://www.w3.org/TR/audiobooks/#audio-ua-packaging" + } + }, + "#audio-ua-playback": { + "current": { + "number": "9.2", + "spec": "Audiobooks", + "text": "Audiobook Playability", + "url": "https://w3c.github.io/audiobooks/#audio-ua-playback" + }, + "snapshot": { + "number": "9.2", + "spec": "Audiobooks", + "text": "Audiobook Playability", + "url": "https://www.w3.org/TR/audiobooks/#audio-ua-playback" + } + }, + "#change-log": { + "current": { + "number": "", + "spec": "Audiobooks", + "text": "10. Change Log", + "url": "https://w3c.github.io/audiobooks/#change-log" + }, + "snapshot": { + "number": "", + "spec": "Audiobooks", + "text": "10. Change Log", + "url": "https://www.w3.org/TR/audiobooks/#change-log" + } + }, + "#conformance": { + "current": { + "number": "3", + "spec": "Audiobooks", + "text": "Conformance", + "url": "https://w3c.github.io/audiobooks/#conformance" + }, + "snapshot": { + "number": "3", + "spec": "Audiobooks", + "text": "Conformance", + "url": "https://www.w3.org/TR/audiobooks/#conformance" + } + }, + "#informative-references": { + "current": { + "number": "D.2", + "spec": "Audiobooks", + "text": "Informative references", + "url": "https://w3c.github.io/audiobooks/#informative-references" + }, + "snapshot": { + "number": "D.2", + "spec": "Audiobooks", + "text": "Informative references", + "url": "https://www.w3.org/TR/audiobooks/#informative-references" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Audiobooks", + "text": "Introduction", + "url": "https://w3c.github.io/audiobooks/#intro" + }, + "snapshot": { + "number": "1", + "spec": "Audiobooks", + "text": "Introduction", + "url": "https://www.w3.org/TR/audiobooks/#intro" + } + }, + "#normative-references": { + "current": { + "number": "D.1", + "spec": "Audiobooks", + "text": "Normative references", + "url": "https://w3c.github.io/audiobooks/#normative-references" + }, + "snapshot": { + "number": "D.1", + "spec": "Audiobooks", + "text": "Normative references", + "url": "https://www.w3.org/TR/audiobooks/#normative-references" + } + }, + "#references": { + "current": { + "number": "D", + "spec": "Audiobooks", + "text": "References", + "url": "https://w3c.github.io/audiobooks/#references" + }, + "snapshot": { + "number": "D", + "spec": "Audiobooks", + "text": "References", + "url": "https://www.w3.org/TR/audiobooks/#references" + } + }, + "#security-privacy": { + "current": { + "number": "8", + "spec": "Audiobooks", + "text": "Security and Privacy Considerations", + "url": "https://w3c.github.io/audiobooks/#security-privacy" + }, + "snapshot": { + "number": "8", + "spec": "Audiobooks", + "text": "Security and Privacy Considerations", + "url": "https://www.w3.org/TR/audiobooks/#security-privacy" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Audiobooks", + "text": "Audiobooks", + "url": "https://w3c.github.io/audiobooks/#title" + }, + "snapshot": { + "number": "", + "spec": "Audiobooks", + "text": "Audiobooks", + "url": "https://www.w3.org/TR/audiobooks/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Audiobooks", + "text": "Table of Contents", + "url": "https://w3c.github.io/audiobooks/#toc" + }, + "snapshot": { + "number": "", + "spec": "Audiobooks", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/audiobooks/#toc" + } + }, + "#toc-algorithm-extension": { + "current": { + "number": "7", + "spec": "Audiobooks", + "text": "User Agent Processing of Machine-Processable Table of Contents", + "url": "https://w3c.github.io/audiobooks/#toc-algorithm-extension" + }, + "snapshot": { + "number": "7", + "spec": "Audiobooks", + "text": "User Agent Processing of Machine-Processable Table of Contents", + "url": "https://www.w3.org/TR/audiobooks/#toc-algorithm-extension" + } + }, + "#toc-mediafragments": { + "current": { + "number": "B.3", + "spec": "Audiobooks", + "text": "Table of Contents with Media Fragments", + "url": "https://w3c.github.io/audiobooks/#toc-mediafragments" + }, + "snapshot": { + "number": "B.3", + "spec": "Audiobooks", + "text": "Table of Contents with Media Fragments", + "url": "https://www.w3.org/TR/audiobooks/#toc-mediafragments" + } + }, + "#toc-pep": { + "current": { + "number": "B.1", + "spec": "Audiobooks", + "text": "Primary Entry Page with a Table of Contents", + "url": "https://w3c.github.io/audiobooks/#toc-pep" + }, + "snapshot": { + "number": "B.1", + "spec": "Audiobooks", + "text": "Primary Entry Page with a Table of Contents", + "url": "https://www.w3.org/TR/audiobooks/#toc-pep" + } + }, + "#toc-simple": { + "current": { + "number": "B.2", + "spec": "Audiobooks", + "text": "Simple Table of Contents", + "url": "https://w3c.github.io/audiobooks/#toc-simple" + }, + "snapshot": { + "number": "B.2", + "spec": "Audiobooks", + "text": "Simple Table of Contents", + "url": "https://www.w3.org/TR/audiobooks/#toc-simple" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-av1-avif.json b/bikeshed/spec-data/readonly/headings/headings-av1-avif.json new file mode 100644 index 0000000000..606f7f3e8b --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-av1-avif.json @@ -0,0 +1,354 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Abstract", + "url": "https://aomediacodec.github.io/av1-avif/#abstract" + } + }, + "#advanced-profile": { + "current": { + "number": "7.3", + "spec": "AVIF", + "text": "AVIF Advanced Profile", + "url": "https://aomediacodec.github.io/av1-avif/#advanced-profile" + } + }, + "#auxiliary-images": { + "current": { + "number": "4", + "spec": "AVIF", + "text": "Auxiliary Image Items and Sequences", + "url": "https://aomediacodec.github.io/av1-avif/#auxiliary-images" + } + }, + "#av1-configuration-item-property": { + "current": { + "number": "2.2.1", + "spec": "AVIF", + "text": "AV1 Item Configuration Property", + "url": "https://aomediacodec.github.io/av1-avif/#av1-configuration-item-property" + } + }, + "#baseline-profile": { + "current": { + "number": "7.2", + "spec": "AVIF", + "text": "AVIF Baseline Profile", + "url": "https://aomediacodec.github.io/av1-avif/#baseline-profile" + } + }, + "#brands": { + "current": { + "number": "5", + "spec": "AVIF", + "text": "Brands, Internet media types and file extensions", + "url": "https://aomediacodec.github.io/av1-avif/#brands" + } + }, + "#brands-overview": { + "current": { + "number": "5.1", + "spec": "AVIF", + "text": "Brands overview", + "url": "https://aomediacodec.github.io/av1-avif/#brands-overview" + } + }, + "#change-list": { + "current": { + "number": "9", + "spec": "AVIF", + "text": "Changes since v1.1.0 release", + "url": "https://aomediacodec.github.io/av1-avif/#change-list" + } + }, + "#conformance": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Conformance", + "url": "https://aomediacodec.github.io/av1-avif/#conformance" + } + }, + "#file-constraints": { + "current": { + "number": "6", + "spec": "AVIF", + "text": "General constraints", + "url": "https://aomediacodec.github.io/av1-avif/#file-constraints" + } + }, + "#general": { + "current": { + "number": "1", + "spec": "AVIF", + "text": "Scope", + "url": "https://aomediacodec.github.io/av1-avif/#general" + } + }, + "#image-and-image-collection-brand": { + "current": { + "number": "5.2", + "spec": "AVIF", + "text": "AVIF image and image collection brand", + "url": "https://aomediacodec.github.io/av1-avif/#image-and-image-collection-brand" + } + }, + "#image-item": { + "current": { + "number": "2.1", + "spec": "AVIF", + "text": "AV1 Image Item", + "url": "https://aomediacodec.github.io/av1-avif/#image-item" + } + }, + "#image-item-and-properties": { + "current": { + "number": "2", + "spec": "AVIF", + "text": "Image Items and properties", + "url": "https://aomediacodec.github.io/av1-avif/#image-item-and-properties" + } + }, + "#image-item-properties": { + "current": { + "number": "2.2", + "spec": "AVIF", + "text": "Image Item Properties", + "url": "https://aomediacodec.github.io/av1-avif/#image-item-properties" + } + }, + "#image-sequence-brand": { + "current": { + "number": "5.3", + "spec": "AVIF", + "text": "AVIF image sequence brands", + "url": "https://aomediacodec.github.io/av1-avif/#image-sequence-brand" + } + }, + "#image-sequences": { + "current": { + "number": "3", + "spec": "AVIF", + "text": "Image Sequences", + "url": "https://aomediacodec.github.io/av1-avif/#image-sequences" + } + }, + "#image-spatial-extents-property": { + "current": { + "number": "2.2.2", + "spec": "AVIF", + "text": "Image Spatial Extents Property", + "url": "https://aomediacodec.github.io/av1-avif/#image-spatial-extents-property" + } + }, + "#index": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Index", + "url": "https://aomediacodec.github.io/av1-avif/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Terms defined by reference", + "url": "https://aomediacodec.github.io/av1-avif/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Terms defined by this specification", + "url": "https://aomediacodec.github.io/av1-avif/#index-defined-here" + } + }, + "#layer-selector-property": { + "current": { + "number": "2.3.2.2", + "spec": "AVIF", + "text": "Layer Selector Property", + "url": "https://aomediacodec.github.io/av1-avif/#layer-selector-property" + } + }, + "#layered-image-indexing-property": { + "current": { + "number": "2.3.2.3", + "spec": "AVIF", + "text": "Layered Image Indexing Property", + "url": "https://aomediacodec.github.io/av1-avif/#layered-image-indexing-property" + } + }, + "#layered-image-indexing-property-definition": { + "current": { + "number": "2.3.2.3.1", + "spec": "AVIF", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-avif/#layered-image-indexing-property-definition" + } + }, + "#layered-image-indexing-property-description": { + "current": { + "number": "2.3.2.3.2", + "spec": "AVIF", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-avif/#layered-image-indexing-property-description" + } + }, + "#layered-image-indexing-property-semantics": { + "current": { + "number": "2.3.2.3.4", + "spec": "AVIF", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-avif/#layered-image-indexing-property-semantics" + } + }, + "#layered-image-indexing-property-syntax": { + "current": { + "number": "2.3.2.3.3", + "spec": "AVIF", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-avif/#layered-image-indexing-property-syntax" + } + }, + "#layered-items": { + "current": { + "number": "2.3", + "spec": "AVIF", + "text": "AV1 Layered Image Items", + "url": "https://aomediacodec.github.io/av1-avif/#layered-items" + } + }, + "#layered-items-overview": { + "current": { + "number": "2.3.1", + "spec": "AVIF", + "text": "Overview", + "url": "https://aomediacodec.github.io/av1-avif/#layered-items-overview" + } + }, + "#layered-properties": { + "current": { + "number": "2.3.2", + "spec": "AVIF", + "text": "Properties", + "url": "https://aomediacodec.github.io/av1-avif/#layered-properties" + } + }, + "#mime-registration": { + "current": { + "number": "8", + "spec": "AVIF", + "text": "AVIF Media Type Registration", + "url": "https://aomediacodec.github.io/av1-avif/#mime-registration" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Normative References", + "url": "https://aomediacodec.github.io/av1-avif/#normative" + } + }, + "#operating-point-selector-property": { + "current": { + "number": "2.3.2.1", + "spec": "AVIF", + "text": "Operating Point Selector Property", + "url": "https://aomediacodec.github.io/av1-avif/#operating-point-selector-property" + } + }, + "#operating-point-selector-property-definition": { + "current": { + "number": "2.3.2.1.1", + "spec": "AVIF", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-avif/#operating-point-selector-property-definition" + } + }, + "#operating-point-selector-property-description": { + "current": { + "number": "2.3.2.1.2", + "spec": "AVIF", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-avif/#operating-point-selector-property-description" + } + }, + "#operating-point-selector-property-semantics": { + "current": { + "number": "2.3.2.1.4", + "spec": "AVIF", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-avif/#operating-point-selector-property-semantics" + } + }, + "#operating-point-selector-property-syntax": { + "current": { + "number": "2.3.2.1.3", + "spec": "AVIF", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-avif/#operating-point-selector-property-syntax" + } + }, + "#other-item-property": { + "current": { + "number": "2.2.3", + "spec": "AVIF", + "text": "Other Item Properties", + "url": "https://aomediacodec.github.io/av1-avif/#other-item-property" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "AVIF", + "text": "AOM Working Group Draft, 25 June 2024", + "url": "https://aomediacodec.github.io/av1-avif/#profile-and-date" + } + }, + "#profiles": { + "current": { + "number": "7", + "spec": "AVIF", + "text": "Profiles", + "url": "https://aomediacodec.github.io/av1-avif/#profiles" + } + }, + "#profiles-overview": { + "current": { + "number": "7.1", + "spec": "AVIF", + "text": "Overview", + "url": "https://aomediacodec.github.io/av1-avif/#profiles-overview" + } + }, + "#references": { + "current": { + "number": "", + "spec": "AVIF", + "text": "References", + "url": "https://aomediacodec.github.io/av1-avif/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "AVIF", + "text": "AV1 Image File Format (AVIF)", + "url": "https://aomediacodec.github.io/av1-avif/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "AVIF", + "text": "Table of Contents", + "url": "https://aomediacodec.github.io/av1-avif/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-av1-hdr10plus.json b/bikeshed/spec-data/readonly/headings/headings-av1-hdr10plus.json new file mode 100644 index 0000000000..d9f36414af --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-av1-hdr10plus.json @@ -0,0 +1,202 @@ +{ + "#UsingHDR10plus": { + "current": { + "number": "2", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Use of HDR10+ in AV1 bitstreams", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#UsingHDR10plus" + } + }, + "#abstract": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Abstract", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#abstract" + } + }, + "#bitstream-constraints": { + "current": { + "number": "2.2", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "HDR10+ bitstream constraints", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#bitstream-constraints" + } + }, + "#changelist": { + "current": { + "number": "5", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Changes since v1.0.0 release", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#changelist" + } + }, + "#codecconfigurationrecord": { + "current": { + "number": "3.1", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Constraints on AV1CodecConfigurationRecord", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#codecconfigurationrecord" + } + }, + "#color-configuration": { + "current": { + "number": "2.2.1", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Color Configuration", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#color-configuration" + } + }, + "#conformance": { + "current": { + "number": "4", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Conformance Suite", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#conformance" + } + }, + "#conformance%E2%91%A0": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Conformance", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#conformance%E2%91%A0" + } + }, + "#film-grain": { + "current": { + "number": "2.2.3", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Provision for Film Grain Processing", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#film-grain" + } + }, + "#hdr10plus-metadata": { + "current": { + "number": "2.1", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "HDR10+ Metadata", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#hdr10plus-metadata" + } + }, + "#httpstreaming-constraints": { + "current": { + "number": "3.3", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "HTTP Streaming Constraints", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#httpstreaming-constraints" + } + }, + "#index": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Index", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Terms defined by reference", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Terms defined by this specification", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Informative References", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#informative" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Introduction", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#introduction" + } + }, + "#isobmff-constraints": { + "current": { + "number": "3.2", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "ISOBMFF Constraints", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#isobmff-constraints" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Normative References", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#normative" + } + }, + "#placement": { + "current": { + "number": "2.2.2", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Placement of HDR10+ Metadata OBUs", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#placement" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "AOM Final Deliverable, 3 October 2023", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#profile-and-date" + } + }, + "#references": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "References", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#references" + } + }, + "#subtitle": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "v1.0.1", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#subtitle" + } + }, + "#title": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "HDR10+ AV1 Metadata Handling Specification", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Table of Contents", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#toc" + } + }, + "#transport": { + "current": { + "number": "3", + "spec": "HDR10+ AV1 Metadata Handling", + "text": "Storage and Transport considerations", + "url": "https://aomediacodec.github.io/av1-hdr10plus/#transport" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-av1-isobmff.json b/bikeshed/spec-data/readonly/headings/headings-av1-isobmff.json new file mode 100644 index 0000000000..9759e7012a --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-av1-isobmff.json @@ -0,0 +1,402 @@ +{ + "#CommonEncryption": { + "current": { + "number": "4", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Common Encryption", + "url": "https://aomediacodec.github.io/av1-isobmff/#CommonEncryption" + } + }, + "#abstract": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Abstract", + "url": "https://aomediacodec.github.io/av1-isobmff/#abstract" + } + }, + "#av1codecconfigurationbox-definition": { + "current": { + "number": "2.3.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-definition" + } + }, + "#av1codecconfigurationbox-description": { + "current": { + "number": "2.3.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-description" + } + }, + "#av1codecconfigurationbox-section": { + "current": { + "number": "2.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Codec Configuration Box", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-section" + } + }, + "#av1codecconfigurationbox-semantics": { + "current": { + "number": "2.3.4", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-semantics" + } + }, + "#av1codecconfigurationbox-syntax": { + "current": { + "number": "2.3.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax" + } + }, + "#av1sampleentry-definition": { + "current": { + "number": "2.2.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1sampleentry-definition" + } + }, + "#av1sampleentry-description": { + "current": { + "number": "2.2.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1sampleentry-description" + } + }, + "#av1sampleentry-section": { + "current": { + "number": "2.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Sample Entry", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1sampleentry-section" + } + }, + "#av1sampleentry-semantics": { + "current": { + "number": "2.2.4", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1sampleentry-semantics" + } + }, + "#av1sampleentry-syntax": { + "current": { + "number": "2.2.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-isobmff/#av1sampleentry-syntax" + } + }, + "#basic-encapsulation": { + "current": { + "number": "2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Basic Encapsulation Scheme", + "url": "https://aomediacodec.github.io/av1-isobmff/#basic-encapsulation" + } + }, + "#bitstream-overview": { + "current": { + "number": "1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Bitstream features overview", + "url": "https://aomediacodec.github.io/av1-isobmff/#bitstream-overview" + } + }, + "#brands": { + "current": { + "number": "2.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "General Requirements & Brands", + "url": "https://aomediacodec.github.io/av1-isobmff/#brands" + } + }, + "#changelist": { + "current": { + "number": "6", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Changes since v1.2.0 release", + "url": "https://aomediacodec.github.io/av1-isobmff/#changelist" + } + }, + "#cmaf": { + "current": { + "number": "3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "CMAF AV1 track format", + "url": "https://aomediacodec.github.io/av1-isobmff/#cmaf" + } + }, + "#codecsparam": { + "current": { + "number": "5", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Codecs Parameter String", + "url": "https://aomediacodec.github.io/av1-isobmff/#codecsparam" + } + }, + "#conformance": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Conformance", + "url": "https://aomediacodec.github.io/av1-isobmff/#conformance" + } + }, + "#forwardkeyframesamplegroupentry": { + "current": { + "number": "2.5", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Forward Key Frame sample group entry", + "url": "https://aomediacodec.github.io/av1-isobmff/#forwardkeyframesamplegroupentry" + } + }, + "#forwardkeyframesamplegroupentry-definition": { + "current": { + "number": "2.5.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-isobmff/#forwardkeyframesamplegroupentry-definition" + } + }, + "#forwardkeyframesamplegroupentry-description": { + "current": { + "number": "2.5.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-isobmff/#forwardkeyframesamplegroupentry-description" + } + }, + "#forwardkeyframesamplegroupentry-semantics": { + "current": { + "number": "2.5.4", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-isobmff/#forwardkeyframesamplegroupentry-semantics" + } + }, + "#forwardkeyframesamplegroupentry-syntax": { + "current": { + "number": "2.5.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-isobmff/#forwardkeyframesamplegroupentry-syntax" + } + }, + "#index": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Index", + "url": "https://aomediacodec.github.io/av1-isobmff/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Terms defined by reference", + "url": "https://aomediacodec.github.io/av1-isobmff/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Terms defined by this specification", + "url": "https://aomediacodec.github.io/av1-isobmff/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Informative References", + "url": "https://aomediacodec.github.io/av1-isobmff/#informative" + } + }, + "#metadatasamplegroupentry": { + "current": { + "number": "2.8", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Metadata sample group entry", + "url": "https://aomediacodec.github.io/av1-isobmff/#metadatasamplegroupentry" + } + }, + "#metadatasamplegroupentry-definition": { + "current": { + "number": "2.8.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-isobmff/#metadatasamplegroupentry-definition" + } + }, + "#metadatasamplegroupentry-description": { + "current": { + "number": "2.8.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-isobmff/#metadatasamplegroupentry-description" + } + }, + "#metadatasamplegroupentry-semantics": { + "current": { + "number": "2.8.4", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-isobmff/#metadatasamplegroupentry-semantics" + } + }, + "#metadatasamplegroupentry-syntax": { + "current": { + "number": "2.8.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-isobmff/#metadatasamplegroupentry-syntax" + } + }, + "#multiframesamplegroupentry": { + "current": { + "number": "2.6", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Multi-Frame sample group entry", + "url": "https://aomediacodec.github.io/av1-isobmff/#multiframesamplegroupentry" + } + }, + "#multiframesamplegroupentry-definition": { + "current": { + "number": "2.6.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-isobmff/#multiframesamplegroupentry-definition" + } + }, + "#multiframesamplegroupentry-description": { + "current": { + "number": "2.6.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-isobmff/#multiframesamplegroupentry-description" + } + }, + "#multiframesamplegroupentry-syntax": { + "current": { + "number": "2.6.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-isobmff/#multiframesamplegroupentry-syntax" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Normative References", + "url": "https://aomediacodec.github.io/av1-isobmff/#normative" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AOM Final Deliverable, 3 April 2024", + "url": "https://aomediacodec.github.io/av1-isobmff/#profile-and-date" + } + }, + "#references": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "References", + "url": "https://aomediacodec.github.io/av1-isobmff/#references" + } + }, + "#sampleformat": { + "current": { + "number": "2.4", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Sample Format", + "url": "https://aomediacodec.github.io/av1-isobmff/#sampleformat" + } + }, + "#subsample-encryption": { + "current": { + "number": "4.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "General Subsample Encryption constraints", + "url": "https://aomediacodec.github.io/av1-isobmff/#subsample-encryption" + } + }, + "#subsample-encryption-illustration": { + "current": { + "number": "4.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Subsample Encryption Illustration", + "url": "https://aomediacodec.github.io/av1-isobmff/#subsample-encryption-illustration" + } + }, + "#subtitle": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "v1.3.0", + "url": "https://aomediacodec.github.io/av1-isobmff/#subtitle" + } + }, + "#switchframesamplegroupentry": { + "current": { + "number": "2.7", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Switch Frame sample group entry", + "url": "https://aomediacodec.github.io/av1-isobmff/#switchframesamplegroupentry" + } + }, + "#switchframesamplegroupentry-definition": { + "current": { + "number": "2.7.1", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Definition", + "url": "https://aomediacodec.github.io/av1-isobmff/#switchframesamplegroupentry-definition" + } + }, + "#switchframesamplegroupentry-description": { + "current": { + "number": "2.7.2", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Description", + "url": "https://aomediacodec.github.io/av1-isobmff/#switchframesamplegroupentry-description" + } + }, + "#switchframesamplegroupentry-syntax": { + "current": { + "number": "2.7.3", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-isobmff/#switchframesamplegroupentry-syntax" + } + }, + "#title": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "AV1 Codec ISO Media File Format Binding", + "url": "https://aomediacodec.github.io/av1-isobmff/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "AV1 Codec ISO Media File Format Binding", + "text": "Table of Contents", + "url": "https://aomediacodec.github.io/av1-isobmff/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-av1-mpeg2-ts.json b/bikeshed/spec-data/readonly/headings/headings-av1-mpeg2-ts.json new file mode 100644 index 0000000000..c74ec20848 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-av1-mpeg2-ts.json @@ -0,0 +1,210 @@ +{ + "#acknowledgements-and-previous-authors": { + "current": { + "number": "4", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Acknowledgements and previous authors", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#acknowledgements-and-previous-authors" + } + }, + "#assignment-of-dts-and-pts": { + "current": { + "number": "3.5", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Assignment of DTS and PTS", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#assignment-of-dts-and-pts" + } + }, + "#av1-registration-descriptor": { + "current": { + "number": "2.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "AV1 registration descriptor", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#av1-registration-descriptor" + } + }, + "#av1-video-descriptor": { + "current": { + "number": "2.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "AV1 video descriptor", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#av1-video-descriptor" + } + }, + "#buffer-considerations": { + "current": { + "number": "3.6", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Buffer considerations", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#buffer-considerations" + } + }, + "#buffer-management-conditions": { + "current": { + "number": "3.6.2.3", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Buffer management conditions", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#buffer-management-conditions" + } + }, + "#buffer-pool-management": { + "current": { + "number": "3.6.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Buffer pool management", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#buffer-pool-management" + } + }, + "#constraints-on-av1-streams-in-mpeg-2-ts": { + "current": { + "number": "3", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Constraints on AV1 streams in MPEG-2 TS", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#constraints-on-av1-streams-in-mpeg-2-ts" + } + }, + "#definition-of-mnemonics-and-syntax-function": { + "current": { + "number": "1.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Definition of mnemonics and syntax function", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#definition-of-mnemonics-and-syntax-function" + } + }, + "#general-constraints": { + "current": { + "number": "3.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "General constraints", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#general-constraints" + } + }, + "#identifying-av1-streams-in-mpeg-2-ts": { + "current": { + "number": "2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Identifying AV1 streams in MPEG-2 TS", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#identifying-av1-streams-in-mpeg-2-ts" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Introduction", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#introduction" + } + }, + "#modal-verbs-terminology": { + "current": { + "number": "1.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Modal verbs terminology", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#modal-verbs-terminology" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Normative references", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "References", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#references" + } + }, + "#semantics": { + "current": { + "number": "2.1.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#semantics" + } + }, + "#semantics-0": { + "current": { + "number": "2.2.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#semantics-0" + } + }, + "#start-code-based-format": { + "current": { + "number": "3.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Start-code based format", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#start-code-based-format" + } + }, + "#std-delay": { + "current": { + "number": "3.6.2.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "STD delay", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#std-delay" + } + }, + "#syntax": { + "current": { + "number": "2.1.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#syntax" + } + }, + "#syntax-0": { + "current": { + "number": "2.2.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#syntax-0" + } + }, + "#t-std-extensions-for-av1": { + "current": { + "number": "3.6.2", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "T-STD Extensions for AV1", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#t-std-extensions-for-av1" + } + }, + "#tbn-mbn-ebn-buffer-management": { + "current": { + "number": "3.6.2.1", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "TBn, MBn, EBn buffer management", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#tbn-mbn-ebn-buffer-management" + } + }, + "#the-av1-access-unit": { + "current": { + "number": "3.3", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "The AV1 Access Unit", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#the-av1-access-unit" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Carriage of AV1 in MPEG-2 TS", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#title" + } + }, + "#use-of-pes-packets": { + "current": { + "number": "3.4", + "spec": "Carriage of AV1 in MPEG-2 TS", + "text": "Use of PES packets", + "url": "https://aomediacodec.github.io/av1-mpeg2-ts/#use-of-pes-packets" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-av1-rtp-spec.json b/bikeshed/spec-data/readonly/headings/headings-av1-rtp-spec.json new file mode 100644 index 0000000000..11cbd09fd6 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-av1-rtp-spec.json @@ -0,0 +1,506 @@ +{ + "#1-introduction": { + "current": { + "number": "1", + "spec": "v1.0", + "text": "Introduction", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#1-introduction" + } + }, + "#10-security-considerations": { + "current": { + "number": "", + "spec": "v1.0", + "text": "10 Security Considerations", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#10-security-considerations" + } + }, + "#11-references": { + "current": { + "number": "", + "spec": "v1.0", + "text": "11 References", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#11-references" + } + }, + "#111-normative-references": { + "current": { + "number": "11.1", + "spec": "v1.0", + "text": "Normative References", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#111-normative-references" + } + }, + "#112-informative-references": { + "current": { + "number": "11.2", + "spec": "v1.0", + "text": "Informative References", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#112-informative-references" + } + }, + "#2-conventions-definitions-and-acronyms": { + "current": { + "number": "2", + "spec": "v1.0", + "text": "Conventions, Definitions and Acronyms", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#2-conventions-definitions-and-acronyms" + } + }, + "#3-media-format-description": { + "current": { + "number": "3", + "spec": "v1.0", + "text": "Media Format Description", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#3-media-format-description" + } + }, + "#4-payload-format": { + "current": { + "number": "4", + "spec": "v1.0", + "text": "Payload Format", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#4-payload-format" + } + }, + "#41-rtp-header-usage": { + "current": { + "number": "4.1", + "spec": "v1.0", + "text": "RTP Header Usage", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#41-rtp-header-usage" + } + }, + "#42-rtp-header-marker-bit-m": { + "current": { + "number": "4.2", + "spec": "v1.0", + "text": "RTP Header Marker Bit (M)", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#42-rtp-header-marker-bit-m" + } + }, + "#43-dependency-descriptor-rtp-header-extension": { + "current": { + "number": "4.3", + "spec": "v1.0", + "text": "Dependency Descriptor RTP Header Extension", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#43-dependency-descriptor-rtp-header-extension" + } + }, + "#44-av1-aggregation-header": { + "current": { + "number": "4.4", + "spec": "v1.0", + "text": "AV1 Aggregation Header", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#44-av1-aggregation-header" + } + }, + "#45-payload-structure": { + "current": { + "number": "4.5", + "spec": "v1.0", + "text": "Payload Structure", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#45-payload-structure" + } + }, + "#5-packetization-rules": { + "current": { + "number": "5", + "spec": "v1.0", + "text": "Packetization Rules", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#5-packetization-rules" + } + }, + "#51-examples": { + "current": { + "number": "5.1", + "spec": "v1.0", + "text": "Examples", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#51-examples" + } + }, + "#6-mane-and-sfm-behavior": { + "current": { + "number": "6", + "spec": "v1.0", + "text": "MANE and SFM Behavior", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#6-mane-and-sfm-behavior" + } + }, + "#61-simulcast": { + "current": { + "number": "6.1", + "spec": "v1.0", + "text": "Simulcast", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#61-simulcast" + } + }, + "#611-example": { + "current": { + "number": "6.1.1", + "spec": "v1.0", + "text": "Example", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#611-example" + } + }, + "#7-payload-format-parameters": { + "current": { + "number": "7", + "spec": "v1.0", + "text": "Payload Format Parameters", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#7-payload-format-parameters" + } + }, + "#71-media-type-definition": { + "current": { + "number": "7.1", + "spec": "v1.0", + "text": "Media Type Definition", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#71-media-type-definition" + } + }, + "#72-sdp-parameters": { + "current": { + "number": "7.2", + "spec": "v1.0", + "text": "SDP Parameters", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#72-sdp-parameters" + } + }, + "#721-mapping-of-media-subtype-parameters-to-sdp": { + "current": { + "number": "7.2.1", + "spec": "v1.0", + "text": "Mapping of Media Subtype Parameters to SDP", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#721-mapping-of-media-subtype-parameters-to-sdp" + } + }, + "#722-rid-restrictions-mapping-for-av1": { + "current": { + "number": "7.2.2", + "spec": "v1.0", + "text": "RID Restrictions Mapping for AV1", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#722-rid-restrictions-mapping-for-av1" + } + }, + "#723-usage-with-the-sdp-offeranswer-model": { + "current": { + "number": "7.2.3", + "spec": "v1.0", + "text": "Usage with the SDP Offer/Answer Model", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#723-usage-with-the-sdp-offeranswer-model" + } + }, + "#724-usage-in-declarative-session-descriptions": { + "current": { + "number": "7.2.4", + "spec": "v1.0", + "text": "Usage in Declarative Session Descriptions", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#724-usage-in-declarative-session-descriptions" + } + }, + "#73-examples": { + "current": { + "number": "7.3", + "spec": "v1.0", + "text": "Examples", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#73-examples" + } + }, + "#731-level-upgrading": { + "current": { + "number": "7.3.1", + "spec": "v1.0", + "text": "Level upgrading", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#731-level-upgrading" + } + }, + "#732-simulcast-with-payload-multiplexing": { + "current": { + "number": "7.3.2", + "spec": "v1.0", + "text": "Simulcast with Payload Multiplexing", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#732-simulcast-with-payload-multiplexing" + } + }, + "#733-simulcast-with-ssrc-multiplexing": { + "current": { + "number": "7.3.3", + "spec": "v1.0", + "text": "Simulcast with SSRC Multiplexing", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#733-simulcast-with-ssrc-multiplexing" + } + }, + "#734-single-stream-simulcast": { + "current": { + "number": "7.3.4", + "spec": "v1.0", + "text": "Single Stream Simulcast", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#734-single-stream-simulcast" + } + }, + "#8-feedback-messages": { + "current": { + "number": "8", + "spec": "v1.0", + "text": "Feedback Messages", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#8-feedback-messages" + } + }, + "#81-full-intra-request-fir": { + "current": { + "number": "8.1", + "spec": "v1.0", + "text": "Full Intra Request (FIR)", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#81-full-intra-request-fir" + } + }, + "#82-layer-refresh-request-lrr": { + "current": { + "number": "8.2", + "spec": "v1.0", + "text": "Layer Refresh Request (LRR)", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#82-layer-refresh-request-lrr" + } + }, + "#9-iana-considerations": { + "current": { + "number": "9", + "spec": "v1.0", + "text": "IANA Considerations", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#9-iana-considerations" + } + }, + "#a1-introduction": { + "current": { + "number": "A.1", + "spec": "v1.0", + "text": "Introduction", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1-introduction" + } + }, + "#a10-examples": { + "current": { + "number": "A.10", + "spec": "v1.0", + "text": "Examples", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a10-examples" + } + }, + "#a101-scenarios": { + "current": { + "number": "A.10.1", + "spec": "v1.0", + "text": "Scenarios", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a101-scenarios" + } + }, + "#a1011-decode-targets-decode-target-indications-and-chains": { + "current": { + "number": "A.10.1.1", + "spec": "v1.0", + "text": "Decode targets, Decode Target Indications, and Chains", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1011-decode-targets-decode-target-indications-and-chains" + } + }, + "#a1012-spatial-upswitch": { + "current": { + "number": "A.10.1.2", + "spec": "v1.0", + "text": "Spatial Upswitch", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1012-spatial-upswitch" + } + }, + "#a1013-dynamic-prediction-structure": { + "current": { + "number": "A.10.1.3", + "spec": "v1.0", + "text": "Dynamic Prediction Structure", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1013-dynamic-prediction-structure" + } + }, + "#a102-scalability-structure-examples": { + "current": { + "number": "A.10.2", + "spec": "v1.0", + "text": "Scalability structure examples", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a102-scalability-structure-examples" + } + }, + "#a1021-l1t3-single-spatial-layer-with-3-temporal-layers": { + "current": { + "number": "A.10.2.1", + "spec": "v1.0", + "text": "L1T3 Single Spatial Layer with 3 Temporal Layers", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1021-l1t3-single-spatial-layer-with-3-temporal-layers" + } + }, + "#a1022-l3t3-full-svc": { + "current": { + "number": "A.10.2.2", + "spec": "v1.0", + "text": "L3T3 Full SVC", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1022-l3t3-full-svc" + } + }, + "#a1023-l3t3-k-svc-with-temporal-shift": { + "current": { + "number": "A.10.2.3", + "spec": "v1.0", + "text": "L3T3 K-SVC with Temporal Shift", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a1023-l3t3-k-svc-with-temporal-shift" + } + }, + "#a11-references": { + "current": { + "number": "A.11", + "spec": "v1.0", + "text": "References", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a11-references" + } + }, + "#a111-normative-references": { + "current": { + "number": "A.11.1", + "spec": "v1.0", + "text": "Normative References", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a111-normative-references" + } + }, + "#a112-informative-references": { + "current": { + "number": "A.11.2", + "spec": "v1.0", + "text": "Informative References", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a112-informative-references" + } + }, + "#a2-conventions-definitions-and-acronyms": { + "current": { + "number": "A.2", + "spec": "v1.0", + "text": "Conventions, Definitions and Acronyms", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a2-conventions-definitions-and-acronyms" + } + }, + "#a3-media-stream-requirements": { + "current": { + "number": "A.3", + "spec": "v1.0", + "text": "Media Stream Requirements", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a3-media-stream-requirements" + } + }, + "#a4-active-decode-targets": { + "current": { + "number": "A.4", + "spec": "v1.0", + "text": "Active Decode Targets", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a4-active-decode-targets" + } + }, + "#a5-chains": { + "current": { + "number": "A.5", + "spec": "v1.0", + "text": "Chains", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a5-chains" + } + }, + "#a6-usage-of-chains-after-packet-loss": { + "current": { + "number": "A.6", + "spec": "v1.0", + "text": "Usage of Chains After Packet Loss", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a6-usage-of-chains-after-packet-loss" + } + }, + "#a7-switching": { + "current": { + "number": "A.7", + "spec": "v1.0", + "text": "Switching", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a7-switching" + } + }, + "#a8-dependency-descriptor-format": { + "current": { + "number": "A.8", + "spec": "v1.0", + "text": "Dependency Descriptor Format", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a8-dependency-descriptor-format" + } + }, + "#a81-templates": { + "current": { + "number": "A.8.1", + "spec": "v1.0", + "text": "Templates", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a81-templates" + } + }, + "#a82-syntax": { + "current": { + "number": "A.8.2", + "spec": "v1.0", + "text": "Syntax", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a82-syntax" + } + }, + "#a83-semantics": { + "current": { + "number": "A.8.3", + "spec": "v1.0", + "text": "Semantics", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a83-semantics" + } + }, + "#a9-signaling-sdp-information": { + "current": { + "number": "A.9", + "spec": "v1.0", + "text": "Signaling (SDP) Information", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#a9-signaling-sdp-information" + } + }, + "#abstract": { + "current": { + "number": "", + "spec": "v1.0", + "text": "Abstract", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#abstract" + } + }, + "#appendix": { + "current": { + "number": "", + "spec": "v1.0", + "text": "Appendix", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#appendix" + } + }, + "#contents": { + "current": { + "number": "", + "spec": "v1.0", + "text": "Contents", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#contents" + } + }, + "#dependency-descriptor-rtp-header-extension": { + "current": { + "number": "", + "spec": "v1.0", + "text": "Dependency Descriptor RTP Header Extension", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#dependency-descriptor-rtp-header-extension" + } + }, + "#rtp-payload-format-for-av1-v10": { + "current": { + "number": "", + "spec": "v1.0", + "text": "RTP Payload Format For AV1 (v1.0)", + "url": "https://aomediacodec.github.io/av1-rtp-spec/#rtp-payload-format-for-av1-v10" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-av1-spec.json b/bikeshed/spec-data/readonly/headings/headings-av1-spec.json new file mode 100644 index 0000000000..544e1a6846 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-av1-spec.json @@ -0,0 +1,3626 @@ +{ + "#1d-transforms": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "1D transforms", + "url": "https://aomediacodec.github.io/av1-spec/#1d-transforms" + } + }, + "#2d-inverse-transform-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "2D inverse transform process", + "url": "https://aomediacodec.github.io/av1-spec/#2d-inverse-transform-process" + } + }, + "#abstract": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Abstract", + "url": "https://aomediacodec.github.io/av1-spec/#abstract" + } + }, + "#adaptive-filter-strength-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Adaptive filter strength process", + "url": "https://aomediacodec.github.io/av1-spec/#adaptive-filter-strength-process" + } + }, + "#adaptive-filter-strength-selection-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Adaptive filter strength selection process", + "url": "https://aomediacodec.github.io/av1-spec/#adaptive-filter-strength-selection-process" + } + }, + "#add-extra-mv-candidate-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Add extra MV candidate process", + "url": "https://aomediacodec.github.io/av1-spec/#add-extra-mv-candidate-process" + } + }, + "#add-noise-synthesis-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Add noise synthesis process", + "url": "https://aomediacodec.github.io/av1-spec/#add-noise-synthesis-process" + } + }, + "#add-reference-motion-vector-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Add reference motion vector process", + "url": "https://aomediacodec.github.io/av1-spec/#add-reference-motion-vector-process" + } + }, + "#add-sample-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Add sample process", + "url": "https://aomediacodec.github.io/av1-spec/#add-sample-process" + } + }, + "#additional-tables": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Additional tables", + "url": "https://aomediacodec.github.io/av1-spec/#additional-tables" + } + }, + "#annex-a-profiles-and-levels": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Annex A: Profiles and levels", + "url": "https://aomediacodec.github.io/av1-spec/#annex-a-profiles-and-levels" + } + }, + "#annex-b-length-delimited-bitstream-format": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Annex B: Length delimited bitstream format", + "url": "https://aomediacodec.github.io/av1-spec/#annex-b-length-delimited-bitstream-format" + } + }, + "#annex-c-error-resilience-behavior-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Annex C: Error resilience behavior (informative)", + "url": "https://aomediacodec.github.io/av1-spec/#annex-c-error-resilience-behavior-informative" + } + }, + "#annex-d-large-scale-tile-use-case-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Annex D: Large scale tile use case (informative)", + "url": "https://aomediacodec.github.io/av1-spec/#annex-d-large-scale-tile-use-case-informative" + } + }, + "#annex-e-decoder-model": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Annex E: Decoder model", + "url": "https://aomediacodec.github.io/av1-spec/#annex-e-decoder-model" + } + }, + "#arithmetic-operators": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Arithmetic operators", + "url": "https://aomediacodec.github.io/av1-spec/#arithmetic-operators" + } + }, + "#assign-mv-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Assign mv semantics", + "url": "https://aomediacodec.github.io/av1-spec/#assign-mv-semantics" + } + }, + "#assign-mv-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Assign MV syntax", + "url": "https://aomediacodec.github.io/av1-spec/#assign-mv-syntax" + } + }, + "#assignment": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Assignment", + "url": "https://aomediacodec.github.io/av1-spec/#assignment" + } + }, + "#av1-bitstream--decoding-process-specification": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "AV1 Bitstream & Decoding Process Specification", + "url": "https://aomediacodec.github.io/av1-spec/#av1-bitstream--decoding-process-specification" + } + }, + "#basic-intra-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Basic intra prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#basic-intra-prediction-process" + } + }, + "#bibliography": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Bibliography", + "url": "https://aomediacodec.github.io/av1-spec/#bibliography" + } + }, + "#bitstream-conformance": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Bitstream conformance", + "url": "https://aomediacodec.github.io/av1-spec/#bitstream-conformance" + } + }, + "#bitwise-operators": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Bitwise operators", + "url": "https://aomediacodec.github.io/av1-spec/#bitwise-operators" + } + }, + "#block-inter-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Block inter prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#block-inter-prediction-process" + } + }, + "#block-tx-size-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Block TX size semantics", + "url": "https://aomediacodec.github.io/av1-spec/#block-tx-size-semantics" + } + }, + "#block-tx-size-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Block TX size syntax", + "url": "https://aomediacodec.github.io/av1-spec/#block-tx-size-syntax" + } + }, + "#block-warp-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Block warp process", + "url": "https://aomediacodec.github.io/av1-spec/#block-warp-process" + } + }, + "#boolean-decoding-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Boolean decoding process", + "url": "https://aomediacodec.github.io/av1-spec/#boolean-decoding-process" + } + }, + "#box-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Box filter process", + "url": "https://aomediacodec.github.io/av1-spec/#box-filter-process" + } + }, + "#butterfly-functions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Butterfly functions", + "url": "https://aomediacodec.github.io/av1-spec/#butterfly-functions" + } + }, + "#byte-alignment-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Byte alignment semantics", + "url": "https://aomediacodec.github.io/av1-spec/#byte-alignment-semantics" + } + }, + "#byte-alignment-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Byte alignment syntax", + "url": "https://aomediacodec.github.io/av1-spec/#byte-alignment-syntax" + } + }, + "#cdef-block-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "CDEF block process", + "url": "https://aomediacodec.github.io/av1-spec/#cdef-block-process" + } + }, + "#cdef-direction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "CDEF direction process", + "url": "https://aomediacodec.github.io/av1-spec/#cdef-direction-process" + } + }, + "#cdef-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "CDEF filter process", + "url": "https://aomediacodec.github.io/av1-spec/#cdef-filter-process" + } + }, + "#cdef-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "CDEF params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#cdef-params-semantics" + } + }, + "#cdef-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "CDEF params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#cdef-params-syntax" + } + }, + "#cdef-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "CDEF process", + "url": "https://aomediacodec.github.io/av1-spec/#cdef-process" + } + }, + "#cdf-selection-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Cdf selection process", + "url": "https://aomediacodec.github.io/av1-spec/#cdf-selection-process" + } + }, + "#clamp-mv-col-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Clamp MV col function", + "url": "https://aomediacodec.github.io/av1-spec/#clamp-mv-col-function" + } + }, + "#clamp-mv-row-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Clamp MV row function", + "url": "https://aomediacodec.github.io/av1-spec/#clamp-mv-row-function" + } + }, + "#clear-block-decoded-flags-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Clear block decoded flags function", + "url": "https://aomediacodec.github.io/av1-spec/#clear-block-decoded-flags-function" + } + }, + "#clear-block-decoded-flags-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Clear block decoded flags semantics", + "url": "https://aomediacodec.github.io/av1-spec/#clear-block-decoded-flags-semantics" + } + }, + "#clear-cdef-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Clear CDEF function", + "url": "https://aomediacodec.github.io/av1-spec/#clear-cdef-function" + } + }, + "#coefficients-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Coefficients semantics", + "url": "https://aomediacodec.github.io/av1-spec/#coefficients-semantics" + } + }, + "#coefficients-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Coefficients syntax", + "url": "https://aomediacodec.github.io/av1-spec/#coefficients-syntax" + } + }, + "#color-config-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Color config semantics", + "url": "https://aomediacodec.github.io/av1-spec/#color-config-semantics" + } + }, + "#color-config-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Color config syntax", + "url": "https://aomediacodec.github.io/av1-spec/#color-config-syntax" + } + }, + "#compound-search-stack-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Compound search stack process", + "url": "https://aomediacodec.github.io/av1-spec/#compound-search-stack-process" + } + }, + "#compute-image-size-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Compute image size function", + "url": "https://aomediacodec.github.io/av1-spec/#compute-image-size-function" + } + }, + "#compute-image-size-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Compute image size semantics", + "url": "https://aomediacodec.github.io/av1-spec/#compute-image-size-semantics" + } + }, + "#compute-prediction-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Compute prediction semantics", + "url": "https://aomediacodec.github.io/av1-spec/#compute-prediction-semantics" + } + }, + "#compute-prediction-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Compute prediction syntax", + "url": "https://aomediacodec.github.io/av1-spec/#compute-prediction-syntax" + } + }, + "#compute-transform-type-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Compute transform type function", + "url": "https://aomediacodec.github.io/av1-spec/#compute-transform-type-function" + } + }, + "#conformance-requirements": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Conformance requirements", + "url": "https://aomediacodec.github.io/av1-spec/#conformance-requirements" + } + }, + "#contents": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Contents", + "url": "https://aomediacodec.github.io/av1-spec/#contents" + } + }, + "#context-and-clamping-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Context and clamping process", + "url": "https://aomediacodec.github.io/av1-spec/#context-and-clamping-process" + } + }, + "#conventions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Conventions", + "url": "https://aomediacodec.github.io/av1-spec/#conventions" + } + }, + "#conversion-tables": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Conversion tables", + "url": "https://aomediacodec.github.io/av1-spec/#conversion-tables" + } + }, + "#dc-intra-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "DC intra prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#dc-intra-prediction-process" + } + }, + "#decode-block-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode block semantics", + "url": "https://aomediacodec.github.io/av1-spec/#decode-block-semantics" + } + }, + "#decode-block-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode block syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decode-block-syntax" + } + }, + "#decode-camera-tile-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode camera tile process", + "url": "https://aomediacodec.github.io/av1-spec/#decode-camera-tile-process" + } + }, + "#decode-deadline": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode deadline", + "url": "https://aomediacodec.github.io/av1-spec/#decode-deadline" + } + }, + "#decode-frame-wrapup-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode frame wrapup process", + "url": "https://aomediacodec.github.io/av1-spec/#decode-frame-wrapup-process" + } + }, + "#decode-partition-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode partition semantics", + "url": "https://aomediacodec.github.io/av1-spec/#decode-partition-semantics" + } + }, + "#decode-partition-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode partition syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decode-partition-syntax" + } + }, + "#decode-process-constraints": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode Process constraints", + "url": "https://aomediacodec.github.io/av1-spec/#decode-process-constraints" + } + }, + "#decode-signed-subexp-with-ref-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode signed subexp with ref syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decode-signed-subexp-with-ref-syntax" + } + }, + "#decode-subexp-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode subexp semantics", + "url": "https://aomediacodec.github.io/av1-spec/#decode-subexp-semantics" + } + }, + "#decode-subexp-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode subexp syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decode-subexp-syntax" + } + }, + "#decode-tile-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode tile semantics", + "url": "https://aomediacodec.github.io/av1-spec/#decode-tile-semantics" + } + }, + "#decode-tile-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode tile syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decode-tile-syntax" + } + }, + "#decode-unsigned-subexp-with-ref-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decode unsigned subexp with ref syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decode-unsigned-subexp-with-ref-syntax" + } + }, + "#decoder-buffer-delay-consistency-across-random-access-points-applies-to-decoding-schedule-mode": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder buffer delay consistency across random access points (applies to decoding schedule mode)", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-buffer-delay-consistency-across-random-access-points-applies-to-decoding-schedule-mode" + } + }, + "#decoder-conformance": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder Conformance", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-conformance" + } + }, + "#decoder-consequences": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder consequences", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-consequences" + } + }, + "#decoder-consequences-of-processable-frames": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder consequences of processable frames", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-consequences-of-processable-frames" + } + }, + "#decoder-model": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder model", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-model" + } + }, + "#decoder-model-definitions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder model definitions", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-model-definitions" + } + }, + "#decoder-model-functions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder model functions", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-model-functions" + } + }, + "#decoder-model-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder model info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-model-info-semantics" + } + }, + "#decoder-model-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder model info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-model-info-syntax" + } + }, + "#decoder-model-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoder model process", + "url": "https://aomediacodec.github.io/av1-spec/#decoder-model-process" + } + }, + "#decoding-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoding process", + "url": "https://aomediacodec.github.io/av1-spec/#decoding-process" + } + }, + "#decoding-schedule-mode": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Decoding schedule mode", + "url": "https://aomediacodec.github.io/av1-spec/#decoding-schedule-mode" + } + }, + "#default-cdf-tables": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Default CDF tables", + "url": "https://aomediacodec.github.io/av1-spec/#default-cdf-tables" + } + }, + "#definition-of-processable-frames": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Definition of processable frames", + "url": "https://aomediacodec.github.io/av1-spec/#definition-of-processable-frames" + } + }, + "#definitions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Definitions", + "url": "https://aomediacodec.github.io/av1-spec/#definitions" + } + }, + "#delta-quantizer-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Delta quantizer semantics", + "url": "https://aomediacodec.github.io/av1-spec/#delta-quantizer-semantics" + } + }, + "#delta-quantizer-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Delta quantizer syntax", + "url": "https://aomediacodec.github.io/av1-spec/#delta-quantizer-syntax" + } + }, + "#dequantization-functions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Dequantization functions", + "url": "https://aomediacodec.github.io/av1-spec/#dequantization-functions" + } + }, + "#derivation-process-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Derivation process (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#derivation-process-informative" + } + }, + "#descriptors": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Descriptors", + "url": "https://aomediacodec.github.io/av1-spec/#descriptors" + } + }, + "#difference-weight-mask-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Difference weight mask process", + "url": "https://aomediacodec.github.io/av1-spec/#difference-weight-mask-process" + } + }, + "#directional-intra-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Directional intra prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#directional-intra-prediction-process" + } + }, + "#distance-weights-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Distance weights process", + "url": "https://aomediacodec.github.io/av1-spec/#distance-weights-process" + } + }, + "#edge-loop-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Edge loop filter process", + "url": "https://aomediacodec.github.io/av1-spec/#edge-loop-filter-process" + } + }, + "#encoder-consequences": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Encoder consequences", + "url": "https://aomediacodec.github.io/av1-spec/#encoder-consequences" + } + }, + "#encoder-consequences-of-processable-frames": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Encoder consequences of processable frames", + "url": "https://aomediacodec.github.io/av1-spec/#encoder-consequences-of-processable-frames" + } + }, + "#end-of-dfg-bits-arrival": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "End of DFG bits arrival", + "url": "https://aomediacodec.github.io/av1-spec/#end-of-dfg-bits-arrival" + } + }, + "#exit-process-for-symbol-decoder": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Exit process for symbol decoder", + "url": "https://aomediacodec.github.io/av1-spec/#exit-process-for-symbol-decoder" + } + }, + "#extra-search-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Extra search process", + "url": "https://aomediacodec.github.io/av1-spec/#extra-search-process" + } + }, + "#film-grain-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Film grain params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#film-grain-params-semantics" + } + }, + "#film-grain-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Film grain params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#film-grain-params-syntax" + } + }, + "#film-grain-synthesis-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Film grain synthesis process", + "url": "https://aomediacodec.github.io/av1-spec/#film-grain-synthesis-process" + } + }, + "#filter-corner-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Filter corner process", + "url": "https://aomediacodec.github.io/av1-spec/#filter-corner-process" + } + }, + "#filter-intra-mode-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Filter intra mode info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#filter-intra-mode-info-semantics" + } + }, + "#filter-intra-mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Filter intra mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#filter-intra-mode-info-syntax" + } + }, + "#filter-mask-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Filter mask process", + "url": "https://aomediacodec.github.io/av1-spec/#filter-mask-process" + } + }, + "#filter-size-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Filter size process", + "url": "https://aomediacodec.github.io/av1-spec/#filter-size-process" + } + }, + "#find-mv-stack-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Find MV stack process", + "url": "https://aomediacodec.github.io/av1-spec/#find-mv-stack-process" + } + }, + "#find-warp-samples-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Find warp samples process", + "url": "https://aomediacodec.github.io/av1-spec/#find-warp-samples-process" + } + }, + "#fn": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "f(n)", + "url": "https://aomediacodec.github.io/av1-spec/#fn" + } + }, + "#frame-decode-timing": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame decode timing", + "url": "https://aomediacodec.github.io/av1-spec/#frame-decode-timing" + } + }, + "#frame-end-update-cdf-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame end update CDF process", + "url": "https://aomediacodec.github.io/av1-spec/#frame-end-update-cdf-process" + } + }, + "#frame-header-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame header OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#frame-header-obu-semantics" + } + }, + "#frame-header-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame header OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#frame-header-obu-syntax" + } + }, + "#frame-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#frame-obu-semantics" + } + }, + "#frame-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#frame-obu-syntax" + } + }, + "#frame-presentation-timing": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame presentation timing", + "url": "https://aomediacodec.github.io/av1-spec/#frame-presentation-timing" + } + }, + "#frame-reference-mode-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame reference mode semantics", + "url": "https://aomediacodec.github.io/av1-spec/#frame-reference-mode-semantics" + } + }, + "#frame-reference-mode-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame reference mode syntax", + "url": "https://aomediacodec.github.io/av1-spec/#frame-reference-mode-syntax" + } + }, + "#frame-size-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame size semantics", + "url": "https://aomediacodec.github.io/av1-spec/#frame-size-semantics" + } + }, + "#frame-size-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame size syntax", + "url": "https://aomediacodec.github.io/av1-spec/#frame-size-syntax" + } + }, + "#frame-size-with-refs-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame size with refs semantics", + "url": "https://aomediacodec.github.io/av1-spec/#frame-size-with-refs-semantics" + } + }, + "#frame-size-with-refs-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame size with refs syntax", + "url": "https://aomediacodec.github.io/av1-spec/#frame-size-with-refs-syntax" + } + }, + "#frame-timing-definitions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Frame timing definitions", + "url": "https://aomediacodec.github.io/av1-spec/#frame-timing-definitions" + } + }, + "#functions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Functions", + "url": "https://aomediacodec.github.io/av1-spec/#functions" + } + }, + "#general": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general" + } + }, + "#general-1": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-1" + } + }, + "#general-10": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-10" + } + }, + "#general-11": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-11" + } + }, + "#general-12": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-12" + } + }, + "#general-13": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-13" + } + }, + "#general-14": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-14" + } + }, + "#general-15": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-15" + } + }, + "#general-16": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-16" + } + }, + "#general-17": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-17" + } + }, + "#general-18": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-18" + } + }, + "#general-19": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-19" + } + }, + "#general-2": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-2" + } + }, + "#general-20": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-20" + } + }, + "#general-21": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-21" + } + }, + "#general-22": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-22" + } + }, + "#general-3": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-3" + } + }, + "#general-4": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-4" + } + }, + "#general-5": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-5" + } + }, + "#general-6": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-6" + } + }, + "#general-7": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-7" + } + }, + "#general-8": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-8" + } + }, + "#general-9": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General", + "url": "https://aomediacodec.github.io/av1-spec/#general-9" + } + }, + "#general-decoding-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General decoding process", + "url": "https://aomediacodec.github.io/av1-spec/#general-decoding-process" + } + }, + "#general-frame-header-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General frame header OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#general-frame-header-obu-semantics" + } + }, + "#general-frame-header-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General frame header OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#general-frame-header-obu-syntax" + } + }, + "#general-metadata-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General metadata OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#general-metadata-obu-semantics" + } + }, + "#general-metadata-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General metadata OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#general-metadata-obu-syntax" + } + }, + "#general-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#general-obu-semantics" + } + }, + "#general-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#general-obu-syntax" + } + }, + "#general-sequence-header-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General sequence header OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#general-sequence-header-obu-semantics" + } + }, + "#general-sequence-header-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General sequence header OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#general-sequence-header-obu-syntax" + } + }, + "#general-tile-group-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General tile group OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#general-tile-group-obu-semantics" + } + }, + "#general-tile-group-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General tile group OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#general-tile-group-obu-syntax" + } + }, + "#general-tile-list-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General tile list OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#general-tile-list-obu-semantics" + } + }, + "#general-tile-list-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "General tile list OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#general-tile-list-obu-syntax" + } + }, + "#generate-grain-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Generate grain process", + "url": "https://aomediacodec.github.io/av1-spec/#generate-grain-process" + } + }, + "#get-block-position-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get block position process", + "url": "https://aomediacodec.github.io/av1-spec/#get-block-position-process" + } + }, + "#get-mode-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get mode function", + "url": "https://aomediacodec.github.io/av1-spec/#get-mode-function" + } + }, + "#get-mv-projection-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get MV projection process", + "url": "https://aomediacodec.github.io/av1-spec/#get-mv-projection-process" + } + }, + "#get-plane-residual-size-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get plane residual size function", + "url": "https://aomediacodec.github.io/av1-spec/#get-plane-residual-size-function" + } + }, + "#get-relative-distance-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get relative distance function", + "url": "https://aomediacodec.github.io/av1-spec/#get-relative-distance-function" + } + }, + "#get-scan-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get scan function", + "url": "https://aomediacodec.github.io/av1-spec/#get-scan-function" + } + }, + "#get-segment-id-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get segment ID function", + "url": "https://aomediacodec.github.io/av1-spec/#get-segment-id-function" + } + }, + "#get-source-sample-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get source sample process", + "url": "https://aomediacodec.github.io/av1-spec/#get-source-sample-process" + } + }, + "#get-transform-set-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get transform set function", + "url": "https://aomediacodec.github.io/av1-spec/#get-transform-set-function" + } + }, + "#get-tx-size-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Get TX size function", + "url": "https://aomediacodec.github.io/av1-spec/#get-tx-size-function" + } + }, + "#global-motion-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Global motion params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#global-motion-params-semantics" + } + }, + "#global-motion-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Global motion params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#global-motion-params-syntax" + } + }, + "#global-param-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Global param semantics", + "url": "https://aomediacodec.github.io/av1-spec/#global-param-semantics" + } + }, + "#global-param-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Global param syntax", + "url": "https://aomediacodec.github.io/av1-spec/#global-param-syntax" + } + }, + "#has-overlappable-candidates-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Has overlappable candidates process", + "url": "https://aomediacodec.github.io/av1-spec/#has-overlappable-candidates-process" + } + }, + "#initialization-process-for-symbol-decoder": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Initialization process for symbol decoder", + "url": "https://aomediacodec.github.io/av1-spec/#initialization-process-for-symbol-decoder" + } + }, + "#inter-block-mode-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inter block mode info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#inter-block-mode-info-semantics" + } + }, + "#inter-block-mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inter block mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#inter-block-mode-info-syntax" + } + }, + "#inter-frame-mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inter frame mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#inter-frame-mode-info-syntax" + } + }, + "#inter-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inter prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#inter-prediction-process" + } + }, + "#inter-segment-id-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inter segment ID semantics", + "url": "https://aomediacodec.github.io/av1-spec/#inter-segment-id-semantics" + } + }, + "#inter-segment-id-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inter segment ID syntax", + "url": "https://aomediacodec.github.io/av1-spec/#inter-segment-id-syntax" + } + }, + "#intermediate-output-preparation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intermediate output preparation process", + "url": "https://aomediacodec.github.io/av1-spec/#intermediate-output-preparation-process" + } + }, + "#interpolation-filter-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Interpolation filter semantics", + "url": "https://aomediacodec.github.io/av1-spec/#interpolation-filter-semantics" + } + }, + "#interpolation-filter-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Interpolation filter syntax", + "url": "https://aomediacodec.github.io/av1-spec/#interpolation-filter-syntax" + } + }, + "#intra-angle-info-chroma-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra angle info chroma syntax", + "url": "https://aomediacodec.github.io/av1-spec/#intra-angle-info-chroma-syntax" + } + }, + "#intra-angle-info-luma-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra angle info luma syntax", + "url": "https://aomediacodec.github.io/av1-spec/#intra-angle-info-luma-syntax" + } + }, + "#intra-angle-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra angle info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#intra-angle-info-semantics" + } + }, + "#intra-block-mode-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra block mode info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#intra-block-mode-info-semantics" + } + }, + "#intra-block-mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra block mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#intra-block-mode-info-syntax" + } + }, + "#intra-edge-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra edge filter process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-edge-filter-process" + } + }, + "#intra-edge-filter-strength-selection-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra edge filter strength selection process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-edge-filter-strength-selection-process" + } + }, + "#intra-edge-upsample-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra edge upsample process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-edge-upsample-process" + } + }, + "#intra-edge-upsample-selection-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra edge upsample selection process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-edge-upsample-selection-process" + } + }, + "#intra-filter-type-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra filter type process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-filter-type-process" + } + }, + "#intra-frame-mode-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra frame mode info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#intra-frame-mode-info-semantics" + } + }, + "#intra-frame-mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra frame mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#intra-frame-mode-info-syntax" + } + }, + "#intra-mode-variant-mask-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra mode variant mask process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-mode-variant-mask-process" + } + }, + "#intra-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#intra-prediction-process" + } + }, + "#intra-segment-id-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra segment ID semantics", + "url": "https://aomediacodec.github.io/av1-spec/#intra-segment-id-semantics" + } + }, + "#intra-segment-id-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Intra segment ID syntax", + "url": "https://aomediacodec.github.io/av1-spec/#intra-segment-id-syntax" + } + }, + "#inverse-adst-input-array-permutation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse ADST input array permutation process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-adst-input-array-permutation-process" + } + }, + "#inverse-adst-output-array-permutation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse ADST output array permutation process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-adst-output-array-permutation-process" + } + }, + "#inverse-adst-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse ADST process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-adst-process" + } + }, + "#inverse-adst16-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse ADST16 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-adst16-process" + } + }, + "#inverse-adst4-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse ADST4 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-adst4-process" + } + }, + "#inverse-adst8-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse ADST8 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-adst8-process" + } + }, + "#inverse-dct-array-permutation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse DCT array permutation process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-dct-array-permutation-process" + } + }, + "#inverse-dct-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse DCT process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-dct-process" + } + }, + "#inverse-identity-transform-16-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse identity transform 16 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-identity-transform-16-process" + } + }, + "#inverse-identity-transform-32-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse identity transform 32 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-identity-transform-32-process" + } + }, + "#inverse-identity-transform-4-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse identity transform 4 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-identity-transform-4-process" + } + }, + "#inverse-identity-transform-8-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse identity transform 8 process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-identity-transform-8-process" + } + }, + "#inverse-identity-transform-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse identity transform process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-identity-transform-process" + } + }, + "#inverse-recenter-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse recenter function", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-recenter-function" + } + }, + "#inverse-transform-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse transform process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-transform-process" + } + }, + "#inverse-walsh-hadamard-transform-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Inverse Walsh-Hadamard transform process", + "url": "https://aomediacodec.github.io/av1-spec/#inverse-walsh-hadamard-transform-process" + } + }, + "#is-directional-mode-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Is directional mode function", + "url": "https://aomediacodec.github.io/av1-spec/#is-directional-mode-function" + } + }, + "#is-inside-filter-region-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Is inside filter region function", + "url": "https://aomediacodec.github.io/av1-spec/#is-inside-filter-region-function" + } + }, + "#is-inside-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Is inside function", + "url": "https://aomediacodec.github.io/av1-spec/#is-inside-function" + } + }, + "#is-inter-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Is inter semantics", + "url": "https://aomediacodec.github.io/av1-spec/#is-inter-semantics" + } + }, + "#is-inter-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Is inter syntax", + "url": "https://aomediacodec.github.io/av1-spec/#is-inter-syntax" + } + }, + "#l1t2-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L1T2 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l1t2-informative" + } + }, + "#l1t3-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L1T3 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l1t3-informative" + } + }, + "#l2t1--l2t1h-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L2T1 / L2T1h (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l2t1--l2t1h-informative" + } + }, + "#l2t2--l2t2h-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L2T2 / L2T2h (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l2t2--l2t2h-informative" + } + }, + "#l2t3--l2t3h-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L2T3 / L2T3h (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l2t3--l2t3h-informative" + } + }, + "#l3t1-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L3T1 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l3t1-informative" + } + }, + "#l3t2-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L3T2 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l3t2-informative" + } + }, + "#l3t3-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L3T3 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#l3t3-informative" + } + }, + "#large-scale-tile-decoding-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Large scale tile decoding process", + "url": "https://aomediacodec.github.io/av1-spec/#large-scale-tile-decoding-process" + } + }, + "#leb128": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "leb128()", + "url": "https://aomediacodec.github.io/av1-spec/#leb128" + } + }, + "#len": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "le(n)", + "url": "https://aomediacodec.github.io/av1-spec/#len" + } + }, + "#length-delimited-bitstream-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Length delimited bitstream semantics", + "url": "https://aomediacodec.github.io/av1-spec/#length-delimited-bitstream-semantics" + } + }, + "#length-delimited-bitstream-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Length delimited bitstream syntax", + "url": "https://aomediacodec.github.io/av1-spec/#length-delimited-bitstream-syntax" + } + }, + "#level-imposed-constraints": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Level imposed constraints", + "url": "https://aomediacodec.github.io/av1-spec/#level-imposed-constraints" + } + }, + "#levels": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Levels", + "url": "https://aomediacodec.github.io/av1-spec/#levels" + } + }, + "#ln": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "L(n)", + "url": "https://aomediacodec.github.io/av1-spec/#ln" + } + }, + "#logical-operators": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Logical operators", + "url": "https://aomediacodec.github.io/av1-spec/#logical-operators" + } + }, + "#loop-filter-delta-parameters-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter delta parameters semantics", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-delta-parameters-semantics" + } + }, + "#loop-filter-delta-parameters-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter delta parameters syntax", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-delta-parameters-syntax" + } + }, + "#loop-filter-delta-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter delta semantics", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-delta-semantics" + } + }, + "#loop-filter-delta-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter delta syntax", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-delta-syntax" + } + }, + "#loop-filter-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-params-syntax" + } + }, + "#loop-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter process", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-process" + } + }, + "#loop-filter-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop filter semantics", + "url": "https://aomediacodec.github.io/av1-spec/#loop-filter-semantics" + } + }, + "#loop-restoration-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop restoration params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#loop-restoration-params-semantics" + } + }, + "#loop-restoration-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop restoration params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#loop-restoration-params-syntax" + } + }, + "#loop-restoration-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop restoration process", + "url": "https://aomediacodec.github.io/av1-spec/#loop-restoration-process" + } + }, + "#loop-restore-block-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Loop restore block process", + "url": "https://aomediacodec.github.io/av1-spec/#loop-restore-block-process" + } + }, + "#low-overhead-bitstream-format": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Low overhead bitstream format", + "url": "https://aomediacodec.github.io/av1-spec/#low-overhead-bitstream-format" + } + }, + "#lower-precision-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Lower precision process", + "url": "https://aomediacodec.github.io/av1-spec/#lower-precision-process" + } + }, + "#mask-blend-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Mask blend process", + "url": "https://aomediacodec.github.io/av1-spec/#mask-blend-process" + } + }, + "#mathematical-functions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Mathematical functions", + "url": "https://aomediacodec.github.io/av1-spec/#mathematical-functions" + } + }, + "#metadata-high-dynamic-range-content-light-level-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata high dynamic range content light level semantics", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-high-dynamic-range-content-light-level-semantics" + } + }, + "#metadata-high-dynamic-range-content-light-level-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata high dynamic range content light level syntax", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-high-dynamic-range-content-light-level-syntax" + } + }, + "#metadata-high-dynamic-range-mastering-display-color-volume-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata high dynamic range mastering display color volume semantics", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-high-dynamic-range-mastering-display-color-volume-semantics" + } + }, + "#metadata-high-dynamic-range-mastering-display-color-volume-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata high dynamic range mastering display color volume syntax", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-high-dynamic-range-mastering-display-color-volume-syntax" + } + }, + "#metadata-itut-t35-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata ITUT T35 semantics", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-itut-t35-semantics" + } + }, + "#metadata-itut-t35-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata ITUT T35 syntax", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-itut-t35-syntax" + } + }, + "#metadata-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-obu-semantics" + } + }, + "#metadata-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-obu-syntax" + } + }, + "#metadata-scalability-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata scalability semantics", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-scalability-semantics" + } + }, + "#metadata-scalability-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata scalability syntax", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-scalability-syntax" + } + }, + "#metadata-timecode-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata timecode semantics", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-timecode-semantics" + } + }, + "#metadata-timecode-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Metadata timecode syntax", + "url": "https://aomediacodec.github.io/av1-spec/#metadata-timecode-syntax" + } + }, + "#method-of-describing-bitstream-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Method of describing bitstream syntax", + "url": "https://aomediacodec.github.io/av1-spec/#method-of-describing-bitstream-syntax" + } + }, + "#minimum-decode-time-applies-to-decoding-schedule-mode": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Minimum decode time (applies to decoding schedule mode)", + "url": "https://aomediacodec.github.io/av1-spec/#minimum-decode-time-applies-to-decoding-schedule-mode" + } + }, + "#minimum-presentation-interval": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Minimum presentation Interval", + "url": "https://aomediacodec.github.io/av1-spec/#minimum-presentation-interval" + } + }, + "#mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#mode-info-syntax" + } + }, + "#motion-field-estimation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Motion field estimation process", + "url": "https://aomediacodec.github.io/av1-spec/#motion-field-estimation-process" + } + }, + "#motion-field-motion-vector-storage-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Motion field motion vector storage process", + "url": "https://aomediacodec.github.io/av1-spec/#motion-field-motion-vector-storage-process" + } + }, + "#motion-vector-prediction-processes": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Motion vector prediction processes", + "url": "https://aomediacodec.github.io/av1-spec/#motion-vector-prediction-processes" + } + }, + "#motion-vector-scaling-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Motion vector scaling process", + "url": "https://aomediacodec.github.io/av1-spec/#motion-vector-scaling-process" + } + }, + "#mv-component-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "MV component semantics", + "url": "https://aomediacodec.github.io/av1-spec/#mv-component-semantics" + } + }, + "#mv-component-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "MV component syntax", + "url": "https://aomediacodec.github.io/av1-spec/#mv-component-syntax" + } + }, + "#mv-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "MV semantics", + "url": "https://aomediacodec.github.io/av1-spec/#mv-semantics" + } + }, + "#mv-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "MV syntax", + "url": "https://aomediacodec.github.io/av1-spec/#mv-syntax" + } + }, + "#narrow-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Narrow filter process", + "url": "https://aomediacodec.github.io/av1-spec/#narrow-filter-process" + } + }, + "#nsn": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "ns(n)", + "url": "https://aomediacodec.github.io/av1-spec/#nsn" + } + }, + "#nsn-1": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "NS(n)", + "url": "https://aomediacodec.github.io/av1-spec/#nsn-1" + } + }, + "#obu-extension-header-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "OBU extension header semantics", + "url": "https://aomediacodec.github.io/av1-spec/#obu-extension-header-semantics" + } + }, + "#obu-extension-header-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "OBU extension header syntax", + "url": "https://aomediacodec.github.io/av1-spec/#obu-extension-header-syntax" + } + }, + "#obu-header-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "OBU header semantics", + "url": "https://aomediacodec.github.io/av1-spec/#obu-header-semantics" + } + }, + "#obu-header-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "OBU header syntax", + "url": "https://aomediacodec.github.io/av1-spec/#obu-header-syntax" + } + }, + "#obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#obu-semantics" + } + }, + "#obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#obu-syntax" + } + }, + "#operating-modes": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Operating modes", + "url": "https://aomediacodec.github.io/av1-spec/#operating-modes" + } + }, + "#operating-parameters-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Operating parameters info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#operating-parameters-info-semantics" + } + }, + "#operating-parameters-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Operating parameters info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#operating-parameters-info-syntax" + } + }, + "#ordering-of-obus": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Ordering of OBUs", + "url": "https://aomediacodec.github.io/av1-spec/#ordering-of-obus" + } + }, + "#output-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Output process", + "url": "https://aomediacodec.github.io/av1-spec/#output-process" + } + }, + "#overlap-blending-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Overlap blending process", + "url": "https://aomediacodec.github.io/av1-spec/#overlap-blending-process" + } + }, + "#overlapped-motion-compensation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Overlapped motion compensation process", + "url": "https://aomediacodec.github.io/av1-spec/#overlapped-motion-compensation-process" + } + }, + "#overview": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Overview", + "url": "https://aomediacodec.github.io/av1-spec/#overview" + } + }, + "#padding-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Padding OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#padding-obu-semantics" + } + }, + "#padding-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Padding OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#padding-obu-syntax" + } + }, + "#palette-color-context-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette color context function", + "url": "https://aomediacodec.github.io/av1-spec/#palette-color-context-function" + } + }, + "#palette-color-context-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette color context semantics", + "url": "https://aomediacodec.github.io/av1-spec/#palette-color-context-semantics" + } + }, + "#palette-mode-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette mode info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#palette-mode-info-semantics" + } + }, + "#palette-mode-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette mode info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#palette-mode-info-syntax" + } + }, + "#palette-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#palette-prediction-process" + } + }, + "#palette-tokens-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette tokens semantics", + "url": "https://aomediacodec.github.io/av1-spec/#palette-tokens-semantics" + } + }, + "#palette-tokens-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Palette tokens syntax", + "url": "https://aomediacodec.github.io/av1-spec/#palette-tokens-syntax" + } + }, + "#parsing-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Parsing process", + "url": "https://aomediacodec.github.io/av1-spec/#parsing-process" + } + }, + "#parsing-process-for-cdf-encoded-syntax-elements": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Parsing process for CDF encoded syntax elements", + "url": "https://aomediacodec.github.io/av1-spec/#parsing-process-for-cdf-encoded-syntax-elements" + } + }, + "#parsing-process-for-fn": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Parsing process for f(n)", + "url": "https://aomediacodec.github.io/av1-spec/#parsing-process-for-fn" + } + }, + "#parsing-process-for-read_literal": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Parsing process for read_literal", + "url": "https://aomediacodec.github.io/av1-spec/#parsing-process-for-read_literal" + } + }, + "#parsing-process-for-symbol-decoder": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Parsing process for symbol decoder", + "url": "https://aomediacodec.github.io/av1-spec/#parsing-process-for-symbol-decoder" + } + }, + "#predict-chroma-from-luma-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Predict chroma from luma process", + "url": "https://aomediacodec.github.io/av1-spec/#predict-chroma-from-luma-process" + } + }, + "#prediction-processes": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Prediction processes", + "url": "https://aomediacodec.github.io/av1-spec/#prediction-processes" + } + }, + "#profiles": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Profiles", + "url": "https://aomediacodec.github.io/av1-spec/#profiles" + } + }, + "#projection-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Projection process", + "url": "https://aomediacodec.github.io/av1-spec/#projection-process" + } + }, + "#quantization-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantization params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#quantization-params-semantics" + } + }, + "#quantization-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantization params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#quantization-params-syntax" + } + }, + "#quantizer-index-delta-parameters-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantizer index delta parameters semantics", + "url": "https://aomediacodec.github.io/av1-spec/#quantizer-index-delta-parameters-semantics" + } + }, + "#quantizer-index-delta-parameters-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantizer index delta parameters syntax", + "url": "https://aomediacodec.github.io/av1-spec/#quantizer-index-delta-parameters-syntax" + } + }, + "#quantizer-index-delta-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantizer index delta semantics", + "url": "https://aomediacodec.github.io/av1-spec/#quantizer-index-delta-semantics" + } + }, + "#quantizer-index-delta-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantizer index delta syntax", + "url": "https://aomediacodec.github.io/av1-spec/#quantizer-index-delta-syntax" + } + }, + "#quantizer-matrix-tables": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Quantizer matrix tables", + "url": "https://aomediacodec.github.io/av1-spec/#quantizer-matrix-tables" + } + }, + "#random-access-decoding": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Random access decoding", + "url": "https://aomediacodec.github.io/av1-spec/#random-access-decoding" + } + }, + "#random-number-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Random number process", + "url": "https://aomediacodec.github.io/av1-spec/#random-number-process" + } + }, + "#read-cdef-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read CDEF semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-cdef-semantics" + } + }, + "#read-cdef-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read CDEF syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-cdef-syntax" + } + }, + "#read-cfl-alphas-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read CFL alphas semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-cfl-alphas-semantics" + } + }, + "#read-cfl-alphas-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read CFL alphas syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-cfl-alphas-syntax" + } + }, + "#read-compound-type-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read compound type semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-compound-type-semantics" + } + }, + "#read-compound-type-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read compound type syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-compound-type-syntax" + } + }, + "#read-inter-intra-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read inter intra semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-inter-intra-semantics" + } + }, + "#read-inter-intra-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read inter intra syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-inter-intra-syntax" + } + }, + "#read-loop-restoration-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read loop restoration syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-loop-restoration-syntax" + } + }, + "#read-loop-restoration-unit-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read loop restoration unit semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-loop-restoration-unit-semantics" + } + }, + "#read-loop-restoration-unit-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read loop restoration unit syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-loop-restoration-unit-syntax" + } + }, + "#read-motion-mode-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read motion mode semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-motion-mode-semantics" + } + }, + "#read-motion-mode-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read motion mode syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-motion-mode-syntax" + } + }, + "#read-segment-id-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read segment ID semantics", + "url": "https://aomediacodec.github.io/av1-spec/#read-segment-id-semantics" + } + }, + "#read-segment-id-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Read segment ID syntax", + "url": "https://aomediacodec.github.io/av1-spec/#read-segment-id-syntax" + } + }, + "#recommendation-for-processable-frames": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Recommendation for processable frames", + "url": "https://aomediacodec.github.io/av1-spec/#recommendation-for-processable-frames" + } + }, + "#reconstruct-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reconstruct process", + "url": "https://aomediacodec.github.io/av1-spec/#reconstruct-process" + } + }, + "#reconstruction-and-dequantization": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reconstruction and dequantization", + "url": "https://aomediacodec.github.io/av1-spec/#reconstruction-and-dequantization" + } + }, + "#recursive-intra-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Recursive intra prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#recursive-intra-prediction-process" + } + }, + "#ref-frames-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Ref frames semantics", + "url": "https://aomediacodec.github.io/av1-spec/#ref-frames-semantics" + } + }, + "#ref-frames-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Ref frames syntax", + "url": "https://aomediacodec.github.io/av1-spec/#ref-frames-syntax" + } + }, + "#reference-frame-loading-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reference frame loading process", + "url": "https://aomediacodec.github.io/av1-spec/#reference-frame-loading-process" + } + }, + "#reference-frame-marking-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reference frame marking function", + "url": "https://aomediacodec.github.io/av1-spec/#reference-frame-marking-function" + } + }, + "#reference-frame-marking-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reference frame marking semantics", + "url": "https://aomediacodec.github.io/av1-spec/#reference-frame-marking-semantics" + } + }, + "#reference-frame-update-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reference frame update process", + "url": "https://aomediacodec.github.io/av1-spec/#reference-frame-update-process" + } + }, + "#relational-operators": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Relational operators", + "url": "https://aomediacodec.github.io/av1-spec/#relational-operators" + } + }, + "#removal-times-in-decoding-schedule-mode": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Removal times in decoding schedule mode", + "url": "https://aomediacodec.github.io/av1-spec/#removal-times-in-decoding-schedule-mode" + } + }, + "#removal-times-in-resource-availability-mode": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Removal times in resource availability mode", + "url": "https://aomediacodec.github.io/av1-spec/#removal-times-in-resource-availability-mode" + } + }, + "#render-size-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Render size semantics", + "url": "https://aomediacodec.github.io/av1-spec/#render-size-semantics" + } + }, + "#render-size-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Render size syntax", + "url": "https://aomediacodec.github.io/av1-spec/#render-size-syntax" + } + }, + "#reserved-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reserved OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#reserved-obu-semantics" + } + }, + "#reserved-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Reserved OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#reserved-obu-syntax" + } + }, + "#residual-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Residual semantics", + "url": "https://aomediacodec.github.io/av1-spec/#residual-semantics" + } + }, + "#residual-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Residual syntax", + "url": "https://aomediacodec.github.io/av1-spec/#residual-syntax" + } + }, + "#resolve-divisor-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Resolve divisor process", + "url": "https://aomediacodec.github.io/av1-spec/#resolve-divisor-process" + } + }, + "#resource-availability-mode": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Resource availability mode", + "url": "https://aomediacodec.github.io/av1-spec/#resource-availability-mode" + } + }, + "#rounding-variables-derivation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Rounding variables derivation process", + "url": "https://aomediacodec.github.io/av1-spec/#rounding-variables-derivation-process" + } + }, + "#s": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S()", + "url": "https://aomediacodec.github.io/av1-spec/#s" + } + }, + "#s2t1--s2t1h-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S2T1 / S2T1h (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#s2t1--s2t1h-informative" + } + }, + "#s2t2--s2t2h-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S2T2 / S2T2h (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#s2t2--s2t2h-informative" + } + }, + "#s2t3--s2t3h-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S2T3 / S2T3h (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#s2t3--s2t3h-informative" + } + }, + "#s3t1-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S3T1 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#s3t1-informative" + } + }, + "#s3t2-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S3T2 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#s3t2-informative" + } + }, + "#s3t3-informative": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "S3T3 (Informative)", + "url": "https://aomediacodec.github.io/av1-spec/#s3t3-informative" + } + }, + "#sample-filtering-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Sample filtering process", + "url": "https://aomediacodec.github.io/av1-spec/#sample-filtering-process" + } + }, + "#scalability-structure-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scalability structure semantics", + "url": "https://aomediacodec.github.io/av1-spec/#scalability-structure-semantics" + } + }, + "#scalability-structure-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scalability structure syntax", + "url": "https://aomediacodec.github.io/av1-spec/#scalability-structure-syntax" + } + }, + "#scaling-lookup-initialization-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scaling lookup initialization process", + "url": "https://aomediacodec.github.io/av1-spec/#scaling-lookup-initialization-process" + } + }, + "#scan-col-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scan col process", + "url": "https://aomediacodec.github.io/av1-spec/#scan-col-process" + } + }, + "#scan-point-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scan point process", + "url": "https://aomediacodec.github.io/av1-spec/#scan-point-process" + } + }, + "#scan-row-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scan row process", + "url": "https://aomediacodec.github.io/av1-spec/#scan-row-process" + } + }, + "#scan-tables": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scan tables", + "url": "https://aomediacodec.github.io/av1-spec/#scan-tables" + } + }, + "#scheduled-removal-times": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scheduled removal times", + "url": "https://aomediacodec.github.io/av1-spec/#scheduled-removal-times" + } + }, + "#scope": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Scope", + "url": "https://aomediacodec.github.io/av1-spec/#scope" + } + }, + "#search-stack-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Search stack process", + "url": "https://aomediacodec.github.io/av1-spec/#search-stack-process" + } + }, + "#segmentation-feature-active-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Segmentation feature active function", + "url": "https://aomediacodec.github.io/av1-spec/#segmentation-feature-active-function" + } + }, + "#segmentation-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Segmentation params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#segmentation-params-semantics" + } + }, + "#segmentation-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Segmentation params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#segmentation-params-syntax" + } + }, + "#self-guided-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Self guided filter process", + "url": "https://aomediacodec.github.io/av1-spec/#self-guided-filter-process" + } + }, + "#sequence-header-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Sequence header OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#sequence-header-obu-semantics" + } + }, + "#sequence-header-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Sequence header OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#sequence-header-obu-syntax" + } + }, + "#set-frame-refs-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Set frame refs process", + "url": "https://aomediacodec.github.io/av1-spec/#set-frame-refs-process" + } + }, + "#setup-global-mv-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Setup global MV process", + "url": "https://aomediacodec.github.io/av1-spec/#setup-global-mv-process" + } + }, + "#setup-shear-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Setup shear process", + "url": "https://aomediacodec.github.io/av1-spec/#setup-shear-process" + } + }, + "#skip-mode-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Skip mode params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#skip-mode-params-semantics" + } + }, + "#skip-mode-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Skip mode params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#skip-mode-params-syntax" + } + }, + "#skip-mode-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Skip mode semantics", + "url": "https://aomediacodec.github.io/av1-spec/#skip-mode-semantics" + } + }, + "#skip-mode-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Skip mode syntax", + "url": "https://aomediacodec.github.io/av1-spec/#skip-mode-syntax" + } + }, + "#skip-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Skip semantics", + "url": "https://aomediacodec.github.io/av1-spec/#skip-semantics" + } + }, + "#skip-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Skip syntax", + "url": "https://aomediacodec.github.io/av1-spec/#skip-syntax" + } + }, + "#smooth-intra-prediction-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Smooth intra prediction process", + "url": "https://aomediacodec.github.io/av1-spec/#smooth-intra-prediction-process" + } + }, + "#smoothing-buffer-overflow": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Smoothing buffer overflow", + "url": "https://aomediacodec.github.io/av1-spec/#smoothing-buffer-overflow" + } + }, + "#smoothing-buffer-underflow": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Smoothing buffer underflow", + "url": "https://aomediacodec.github.io/av1-spec/#smoothing-buffer-underflow" + } + }, + "#sorting-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Sorting process", + "url": "https://aomediacodec.github.io/av1-spec/#sorting-process" + } + }, + "#start-of-dfg-bits-arrival": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Start of DFG bits arrival", + "url": "https://aomediacodec.github.io/av1-spec/#start-of-dfg-bits-arrival" + } + }, + "#sun": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "su(n)", + "url": "https://aomediacodec.github.io/av1-spec/#sun" + } + }, + "#superres-params-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Superres params semantics", + "url": "https://aomediacodec.github.io/av1-spec/#superres-params-semantics" + } + }, + "#superres-params-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Superres params syntax", + "url": "https://aomediacodec.github.io/av1-spec/#superres-params-syntax" + } + }, + "#symbol-decoding-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Symbol decoding process", + "url": "https://aomediacodec.github.io/av1-spec/#symbol-decoding-process" + } + }, + "#symbols-and-abbreviated-terms": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Symbols and abbreviated terms", + "url": "https://aomediacodec.github.io/av1-spec/#symbols-and-abbreviated-terms" + } + }, + "#syntax-structures": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Syntax structures", + "url": "https://aomediacodec.github.io/av1-spec/#syntax-structures" + } + }, + "#syntax-structures-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Syntax structures semantics", + "url": "https://aomediacodec.github.io/av1-spec/#syntax-structures-semantics" + } + }, + "#tables": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tables", + "url": "https://aomediacodec.github.io/av1-spec/#tables" + } + }, + "#temporal-delimiter-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Temporal delimiter OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#temporal-delimiter-obu-semantics" + } + }, + "#temporal-delimiter-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Temporal delimiter obu syntax", + "url": "https://aomediacodec.github.io/av1-spec/#temporal-delimiter-obu-syntax" + } + }, + "#temporal-point-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Temporal point info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#temporal-point-info-semantics" + } + }, + "#temporal-point-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Temporal point info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#temporal-point-info-syntax" + } + }, + "#temporal-sample-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Temporal sample process", + "url": "https://aomediacodec.github.io/av1-spec/#temporal-sample-process" + } + }, + "#temporal-scan-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Temporal scan process", + "url": "https://aomediacodec.github.io/av1-spec/#temporal-scan-process" + } + }, + "#terms-and-definitions": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Terms and definitions", + "url": "https://aomediacodec.github.io/av1-spec/#terms-and-definitions" + } + }, + "#tile-group-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile group OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#tile-group-obu-semantics" + } + }, + "#tile-group-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile group OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#tile-group-obu-syntax" + } + }, + "#tile-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#tile-info-semantics" + } + }, + "#tile-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#tile-info-syntax" + } + }, + "#tile-list-entry-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile list entry semantics", + "url": "https://aomediacodec.github.io/av1-spec/#tile-list-entry-semantics" + } + }, + "#tile-list-entry-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile list entry syntax", + "url": "https://aomediacodec.github.io/av1-spec/#tile-list-entry-syntax" + } + }, + "#tile-list-obu-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile list OBU semantics", + "url": "https://aomediacodec.github.io/av1-spec/#tile-list-obu-semantics" + } + }, + "#tile-list-obu-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile list OBU syntax", + "url": "https://aomediacodec.github.io/av1-spec/#tile-list-obu-syntax" + } + }, + "#tile-size-calculation-function": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Tile size calculation function", + "url": "https://aomediacodec.github.io/av1-spec/#tile-size-calculation-function" + } + }, + "#timing-info-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Timing info semantics", + "url": "https://aomediacodec.github.io/av1-spec/#timing-info-semantics" + } + }, + "#timing-info-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Timing info syntax", + "url": "https://aomediacodec.github.io/av1-spec/#timing-info-syntax" + } + }, + "#trailing-bits-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Trailing bits semantics", + "url": "https://aomediacodec.github.io/av1-spec/#trailing-bits-semantics" + } + }, + "#trailing-bits-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Trailing bits syntax", + "url": "https://aomediacodec.github.io/av1-spec/#trailing-bits-syntax" + } + }, + "#transform-block-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Transform block semantics", + "url": "https://aomediacodec.github.io/av1-spec/#transform-block-semantics" + } + }, + "#transform-block-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Transform block syntax", + "url": "https://aomediacodec.github.io/av1-spec/#transform-block-syntax" + } + }, + "#transform-tree-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Transform tree syntax", + "url": "https://aomediacodec.github.io/av1-spec/#transform-tree-syntax" + } + }, + "#transform-type-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Transform type semantics", + "url": "https://aomediacodec.github.io/av1-spec/#transform-type-semantics" + } + }, + "#transform-type-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Transform type syntax", + "url": "https://aomediacodec.github.io/av1-spec/#transform-type-syntax" + } + }, + "#tx-mode-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "TX mode semantics", + "url": "https://aomediacodec.github.io/av1-spec/#tx-mode-semantics" + } + }, + "#tx-mode-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "TX mode syntax", + "url": "https://aomediacodec.github.io/av1-spec/#tx-mode-syntax" + } + }, + "#tx-size-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "TX size semantics", + "url": "https://aomediacodec.github.io/av1-spec/#tx-size-semantics" + } + }, + "#tx-size-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "TX size syntax", + "url": "https://aomediacodec.github.io/av1-spec/#tx-size-syntax" + } + }, + "#uncompressed-header-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Uncompressed header semantics", + "url": "https://aomediacodec.github.io/av1-spec/#uncompressed-header-semantics" + } + }, + "#uncompressed-header-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Uncompressed header syntax", + "url": "https://aomediacodec.github.io/av1-spec/#uncompressed-header-syntax" + } + }, + "#upscaling-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Upscaling process", + "url": "https://aomediacodec.github.io/av1-spec/#upscaling-process" + } + }, + "#uvlc": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "uvlc()", + "url": "https://aomediacodec.github.io/av1-spec/#uvlc" + } + }, + "#var-tx-size-semantics": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Var TX size semantics", + "url": "https://aomediacodec.github.io/av1-spec/#var-tx-size-semantics" + } + }, + "#var-tx-size-syntax": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Var TX size syntax", + "url": "https://aomediacodec.github.io/av1-spec/#var-tx-size-syntax" + } + }, + "#warp-estimation-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Warp estimation process", + "url": "https://aomediacodec.github.io/av1-spec/#warp-estimation-process" + } + }, + "#wedge-mask-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Wedge mask process", + "url": "https://aomediacodec.github.io/av1-spec/#wedge-mask-process" + } + }, + "#when-timing-information-is-not-present-in-the-bitstream": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "When timing information is not present in the bitstream", + "url": "https://aomediacodec.github.io/av1-spec/#when-timing-information-is-not-present-in-the-bitstream" + } + }, + "#wide-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Wide filter process", + "url": "https://aomediacodec.github.io/av1-spec/#wide-filter-process" + } + }, + "#wiener-coefficient-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Wiener coefficient process", + "url": "https://aomediacodec.github.io/av1-spec/#wiener-coefficient-process" + } + }, + "#wiener-filter-process": { + "current": { + "number": "", + "spec": "AV1 Bitstream & Decoding Process", + "text": "Wiener filter process", + "url": "https://aomediacodec.github.io/av1-spec/#wiener-filter-process" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-badging.json b/bikeshed/spec-data/readonly/headings/headings-badging.json index 9887a41b2e..7199d86f1f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-badging.json +++ b/bikeshed/spec-data/readonly/headings/headings-badging.json @@ -1,58 +1,44 @@ { "#accessibility-considerations": { "current": { - "number": "6", + "number": "8", "spec": "Badging API", "text": "Accessibility considerations", "url": "https://w3c.github.io/badging/#accessibility-considerations" - } - }, - "#badge-display": { - "current": { - "number": "3", - "spec": "Badging API", - "text": "Badge display", - "url": "https://w3c.github.io/badging/#badge-display" - } - }, - "#badge-model": { - "current": { - "number": "2", + }, + "snapshot": { + "number": "8", "spec": "Badging API", - "text": "Badge model", - "url": "https://w3c.github.io/badging/#badge-model" + "text": "Accessibility considerations", + "url": "https://www.w3.org/TR/badging/#accessibility-considerations" } }, "#clearappbadge-method": { "current": { - "number": "4.4", + "number": "4.2", "spec": "Badging API", "text": "clearAppBadge() method", "url": "https://w3c.github.io/badging/#clearappbadge-method" - } - }, - "#clearclientbadge-method": { - "current": { + }, + "snapshot": { "number": "4.2", "spec": "Badging API", - "text": "clearClientBadge() method", - "url": "https://w3c.github.io/badging/#clearclientbadge-method" + "text": "clearAppBadge() method", + "url": "https://www.w3.org/TR/badging/#clearappbadge-method" } }, "#conformance": { "current": { - "number": "7", + "number": "9", "spec": "Badging API", "text": "Conformance", "url": "https://w3c.github.io/badging/#conformance" - } - }, - "#determining-the-set-of-matching-applications": { - "current": { - "number": "4.5", + }, + "snapshot": { + "number": "9", "spec": "Badging API", - "text": "Determining the set of matching applications", - "url": "https://w3c.github.io/badging/#determining-the-set-of-matching-applications" + "text": "Conformance", + "url": "https://www.w3.org/TR/badging/#conformance" } }, "#extensions-to-the-navigator-and-workernavigator-interfaces": { @@ -61,6 +47,26 @@ "spec": "Badging API", "text": "Extensions to the Navigator and WorkerNavigator interfaces", "url": "https://w3c.github.io/badging/#extensions-to-the-navigator-and-workernavigator-interfaces" + }, + "snapshot": { + "number": "4", + "spec": "Badging API", + "text": "Extensions to the Navigator and WorkerNavigator interfaces", + "url": "https://www.w3.org/TR/badging/#extensions-to-the-navigator-and-workernavigator-interfaces" + } + }, + "#model": { + "current": { + "number": "2", + "spec": "Badging API", + "text": "Model", + "url": "https://w3c.github.io/badging/#model" + }, + "snapshot": { + "number": "2", + "spec": "Badging API", + "text": "Model", + "url": "https://www.w3.org/TR/badging/#model" } }, "#normative-references": { @@ -69,6 +75,40 @@ "spec": "Badging API", "text": "Normative references", "url": "https://w3c.github.io/badging/#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "Badging API", + "text": "Normative references", + "url": "https://www.w3.org/TR/badging/#normative-references" + } + }, + "#presentation": { + "current": { + "number": "3", + "spec": "Badging API", + "text": "Displaying a badge", + "url": "https://w3c.github.io/badging/#presentation" + }, + "snapshot": { + "number": "3", + "spec": "Badging API", + "text": "Displaying a badge", + "url": "https://www.w3.org/TR/badging/#presentation" + } + }, + "#privacy-considerations": { + "current": { + "number": "6", + "spec": "Badging API", + "text": "Privacy considerations", + "url": "https://w3c.github.io/badging/#privacy-considerations" + }, + "snapshot": { + "number": "6", + "spec": "Badging API", + "text": "Privacy considerations", + "url": "https://www.w3.org/TR/badging/#privacy-considerations" } }, "#references": { @@ -77,30 +117,54 @@ "spec": "Badging API", "text": "References", "url": "https://w3c.github.io/badging/#references" + }, + "snapshot": { + "number": "A", + "spec": "Badging API", + "text": "References", + "url": "https://www.w3.org/TR/badging/#references" } }, - "#security-and-privacy-considerations": { + "#security-considerations": { "current": { - "number": "5", + "number": "7", + "spec": "Badging API", + "text": "Security considerations", + "url": "https://w3c.github.io/badging/#security-considerations" + }, + "snapshot": { + "number": "7", "spec": "Badging API", - "text": "Security and privacy considerations", - "url": "https://w3c.github.io/badging/#security-and-privacy-considerations" + "text": "Security considerations", + "url": "https://www.w3.org/TR/badging/#security-considerations" } }, "#setappbadge-method": { "current": { - "number": "4.3", + "number": "4.1", "spec": "Badging API", "text": "setAppBadge() method", "url": "https://w3c.github.io/badging/#setappbadge-method" + }, + "snapshot": { + "number": "4.1", + "spec": "Badging API", + "text": "setAppBadge() method", + "url": "https://www.w3.org/TR/badging/#setappbadge-method" } }, - "#setclientbadge-method": { + "#setting-the-application-badge": { "current": { - "number": "4.1", + "number": "5", + "spec": "Badging API", + "text": "Setting the application badge", + "url": "https://w3c.github.io/badging/#setting-the-application-badge" + }, + "snapshot": { + "number": "5", "spec": "Badging API", - "text": "setClientBadge() method", - "url": "https://w3c.github.io/badging/#setclientbadge-method" + "text": "Setting the application badge", + "url": "https://www.w3.org/TR/badging/#setting-the-application-badge" } }, "#title": { @@ -109,6 +173,12 @@ "spec": "Badging API", "text": "Badging API", "url": "https://w3c.github.io/badging/#title" + }, + "snapshot": { + "number": "", + "spec": "Badging API", + "text": "Badging API", + "url": "https://www.w3.org/TR/badging/#title" } }, "#toc": { @@ -117,6 +187,12 @@ "spec": "Badging API", "text": "Table of Contents", "url": "https://w3c.github.io/badging/#toc" + }, + "snapshot": { + "number": "", + "spec": "Badging API", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/badging/#toc" } }, "#usage-examples": { @@ -125,6 +201,12 @@ "spec": "Badging API", "text": "Usage examples", "url": "https://w3c.github.io/badging/#usage-examples" + }, + "snapshot": { + "number": "1", + "spec": "Badging API", + "text": "Usage examples", + "url": "https://www.w3.org/TR/badging/#usage-examples" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-battery-status.json b/bikeshed/spec-data/readonly/headings/headings-battery-status.json index 95259b3cf3..0aa3684770 100644 --- a/bikeshed/spec-data/readonly/headings/headings-battery-status.json +++ b/bikeshed/spec-data/readonly/headings/headings-battery-status.json @@ -1,12 +1,4 @@ { - "#abstract": { - "snapshot": { - "number": "", - "spec": "Battery Status API", - "text": "Abstract", - "url": "https://www.w3.org/TR/battery-status/#abstract" - } - }, "#acknowledgements": { "current": { "number": "C", @@ -273,14 +265,6 @@ "url": "https://www.w3.org/TR/battery-status/#security-and-privacy-considerations" } }, - "#sotd": { - "snapshot": { - "number": "", - "spec": "Battery Status API", - "text": "Status of This Document", - "url": "https://www.w3.org/TR/battery-status/#sotd" - } - }, "#the-batterymanager-interface": { "current": { "number": "6", diff --git a/bikeshed/spec-data/readonly/headings/headings-captured-mouse-events.json b/bikeshed/spec-data/readonly/headings/headings-captured-mouse-events.json new file mode 100644 index 0000000000..24f333ccc2 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-captured-mouse-events.json @@ -0,0 +1,122 @@ +{ + "#background": { + "current": { + "number": "2", + "spec": "Captured Mouse Events", + "text": "Background", + "url": "https://screen-share.github.io/captured-mouse-events/#background" + } + }, + "#capture-controller-extensions": { + "current": { + "number": "6", + "spec": "Captured Mouse Events", + "text": "CaptureController Extensions", + "url": "https://screen-share.github.io/captured-mouse-events/#capture-controller-extensions" + } + }, + "#captured-mouse-change-event": { + "current": { + "number": "4", + "spec": "Captured Mouse Events", + "text": "CapturedMouseEvent interface", + "url": "https://screen-share.github.io/captured-mouse-events/#captured-mouse-change-event" + } + }, + "#captured-mouse-change-event-init": { + "current": { + "number": "5", + "spec": "Captured Mouse Events", + "text": "CapturedMouseEventInit dictionary", + "url": "https://screen-share.github.io/captured-mouse-events/#captured-mouse-change-event-init" + } + }, + "#conformance": { + "current": { + "number": "1", + "spec": "Captured Mouse Events", + "text": "Conformance", + "url": "https://screen-share.github.io/captured-mouse-events/#conformance" + } + }, + "#examples": { + "current": { + "number": "7", + "spec": "Captured Mouse Events", + "text": "Examples", + "url": "https://screen-share.github.io/captured-mouse-events/#examples" + } + }, + "#informative-references": { + "current": { + "number": "A.2", + "spec": "Captured Mouse Events", + "text": "Informative references", + "url": "https://screen-share.github.io/captured-mouse-events/#informative-references" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "Captured Mouse Events", + "text": "Normative references", + "url": "https://screen-share.github.io/captured-mouse-events/#normative-references" + } + }, + "#privacy-and-security-considerations": { + "current": { + "number": "8", + "spec": "Captured Mouse Events", + "text": "Privacy and Security Considerations", + "url": "https://screen-share.github.io/captured-mouse-events/#privacy-and-security-considerations" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Captured Mouse Events", + "text": "References", + "url": "https://screen-share.github.io/captured-mouse-events/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Captured Mouse Events", + "text": "Captured Mouse Events", + "url": "https://screen-share.github.io/captured-mouse-events/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Captured Mouse Events", + "text": "Table of Contents", + "url": "https://screen-share.github.io/captured-mouse-events/#toc" + } + }, + "#use-case-1": { + "current": { + "number": "3.1", + "spec": "Captured Mouse Events", + "text": "Use case #1: Cursor enhancement", + "url": "https://screen-share.github.io/captured-mouse-events/#use-case-1" + } + }, + "#use-case-2": { + "current": { + "number": "3.2", + "spec": "Captured Mouse Events", + "text": "Use case #2: Efficiency enhancements during RTC", + "url": "https://screen-share.github.io/captured-mouse-events/#use-case-2" + } + }, + "#use-cases": { + "current": { + "number": "3", + "spec": "Captured Mouse Events", + "text": "Use cases", + "url": "https://screen-share.github.io/captured-mouse-events/#use-cases" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-clear-site-data.json b/bikeshed/spec-data/readonly/headings/headings-clear-site-data.json index db8b88162a..511cd72ed6 100644 --- a/bikeshed/spec-data/readonly/headings/headings-clear-site-data.json +++ b/bikeshed/spec-data/readonly/headings/headings-clear-site-data.json @@ -112,12 +112,6 @@ } }, "#conformance": { - "current": { - "number": "", - "spec": "Clear Site Data", - "text": "Conformance", - "url": "https://w3c.github.io/webappsec-clear-site-data/#conformance" - }, "snapshot": { "number": "", "spec": "Clear Site Data", @@ -126,12 +120,6 @@ } }, "#conformant-algorithms": { - "current": { - "number": "", - "spec": "Clear Site Data", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webappsec-clear-site-data/#conformant-algorithms" - }, "snapshot": { "number": "", "spec": "Clear Site Data", @@ -140,12 +128,6 @@ } }, "#conventions": { - "current": { - "number": "", - "spec": "Clear Site Data", - "text": "Document conventions", - "url": "https://w3c.github.io/webappsec-clear-site-data/#conventions" - }, "snapshot": { "number": "", "spec": "Clear Site Data", @@ -531,13 +513,15 @@ "url": "https://www.w3.org/TR/clear-site-data/#service-workers" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Clear Site Data", "text": "Status of this document", - "url": "https://w3c.github.io/webappsec-clear-site-data/#status" - }, + "url": "https://w3c.github.io/webappsec-clear-site-data/#sotd" + } + }, + "#status": { "snapshot": { "number": "", "spec": "Clear Site Data", @@ -546,12 +530,6 @@ } }, "#subtitle": { - "current": { - "number": "", - "spec": "Clear Site Data", - "text": "Editor’s Draft, 18 February 2021", - "url": "https://w3c.github.io/webappsec-clear-site-data/#subtitle" - }, "snapshot": { "number": "", "spec": "Clear Site Data", diff --git a/bikeshed/spec-data/readonly/headings/headings-client-hints-infrastructure.json b/bikeshed/spec-data/readonly/headings/headings-client-hints-infrastructure.json index 64df671314..7c72320d10 100644 --- a/bikeshed/spec-data/readonly/headings/headings-client-hints-infrastructure.json +++ b/bikeshed/spec-data/readonly/headings/headings-client-hints-infrastructure.json @@ -279,14 +279,6 @@ "url": "https://wicg.github.io/client-hints-infrastructure/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Client Hints Infrastructure", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/client-hints-infrastructure/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-clipboard-apis.json b/bikeshed/spec-data/readonly/headings/headings-clipboard-apis.json index 1b4c99f399..935b93ec4f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-clipboard-apis.json +++ b/bikeshed/spec-data/readonly/headings/headings-clipboard-apis.json @@ -43,15 +43,15 @@ }, "#algorithms": { "current": { - "number": "", + "number": "A", "spec": "Clipboard API and events", - "text": "Appendix A: Algorithms", + "text": "Algorithms", "url": "https://w3c.github.io/clipboard-apis/#algorithms" }, "snapshot": { - "number": "", + "number": "A", "spec": "Clipboard API and events", - "text": "Appendix A: Algorithms", + "text": "Algorithms", "url": "https://www.w3.org/TR/clipboard-apis/#algorithms" } }, @@ -245,7 +245,7 @@ "url": "https://w3c.github.io/clipboard-apis/#clipboard-interface" }, "snapshot": { - "number": "7.2", + "number": "7.3", "spec": "Clipboard API and events", "text": "Clipboard Interface", "url": "https://www.w3.org/TR/clipboard-apis/#clipboard-interface" @@ -257,6 +257,12 @@ "spec": "Clipboard API and events", "text": "ClipboardItem Interface", "url": "https://w3c.github.io/clipboard-apis/#clipboard-item-interface" + }, + "snapshot": { + "number": "7.2", + "spec": "Clipboard API and events", + "text": "ClipboardItem Interface", + "url": "https://www.w3.org/TR/clipboard-apis/#clipboard-item-interface" } }, "#clipboard-permissions": { @@ -273,30 +279,6 @@ "url": "https://www.w3.org/TR/clipboard-apis/#clipboard-permissions" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "Clipboard API and events", - "text": "Conformance", - "url": "https://www.w3.org/TR/clipboard-apis/#conformance" - } - }, - "#conformant-algorithms": { - "snapshot": { - "number": "", - "spec": "Clipboard API and events", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/clipboard-apis/#conformant-algorithms" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "Clipboard API and events", - "text": "Document conventions", - "url": "https://www.w3.org/TR/clipboard-apis/#conventions" - } - }, "#copy-action": { "current": { "number": "8.1", @@ -329,11 +311,11 @@ "current": { "number": "7.3.1", "spec": "Clipboard API and events", - "text": "read()", + "text": "read(formats)", "url": "https://w3c.github.io/clipboard-apis/#dom-clipboard-read" }, "snapshot": { - "number": "7.2.1", + "number": "7.3.1", "spec": "Clipboard API and events", "text": "read()", "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboard-read" @@ -347,7 +329,7 @@ "url": "https://w3c.github.io/clipboard-apis/#dom-clipboard-readtext" }, "snapshot": { - "number": "7.2.2", + "number": "7.3.2", "spec": "Clipboard API and events", "text": "readText()", "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboard-readtext" @@ -361,7 +343,7 @@ "url": "https://w3c.github.io/clipboard-apis/#dom-clipboard-write" }, "snapshot": { - "number": "7.2.3", + "number": "7.3.3", "spec": "Clipboard API and events", "text": "write(data)", "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboard-write" @@ -375,7 +357,7 @@ "url": "https://w3c.github.io/clipboard-apis/#dom-clipboard-writetext" }, "snapshot": { - "number": "7.2.4", + "number": "7.3.4", "spec": "Clipboard API and events", "text": "writeText(data)", "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboard-writetext" @@ -387,6 +369,12 @@ "spec": "Clipboard API and events", "text": "getType(type)", "url": "https://w3c.github.io/clipboard-apis/#dom-clipboarditem-gettype" + }, + "snapshot": { + "number": "7.2.3", + "spec": "Clipboard API and events", + "text": "getType(type)", + "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-gettype" } }, "#dom-clipboarditem-presentationstyle": { @@ -395,6 +383,20 @@ "spec": "Clipboard API and events", "text": "presentationStyle", "url": "https://w3c.github.io/clipboard-apis/#dom-clipboarditem-presentationstyle" + }, + "snapshot": { + "number": "7.2.1", + "spec": "Clipboard API and events", + "text": "presentationStyle", + "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-presentationstyle" + } + }, + "#dom-clipboarditem-supports": { + "current": { + "number": "7.2.4", + "spec": "Clipboard API and events", + "text": "supports(type)", + "url": "https://w3c.github.io/clipboard-apis/#dom-clipboarditem-supports" } }, "#dom-clipboarditem-types": { @@ -403,6 +405,12 @@ "spec": "Clipboard API and events", "text": "types", "url": "https://w3c.github.io/clipboard-apis/#dom-clipboarditem-types" + }, + "snapshot": { + "number": "7.2.2", + "spec": "Clipboard API and events", + "text": "types", + "url": "https://www.w3.org/TR/clipboard-apis/#dom-clipboarditem-types" } }, "#general-security-policies": { @@ -657,6 +665,14 @@ "url": "https://www.w3.org/TR/clipboard-apis/#nuisances" } }, + "#optional-data-types-x": { + "current": { + "number": "6.5", + "spec": "Clipboard API and events", + "text": "Optional data types", + "url": "https://w3c.github.io/clipboard-apis/#optional-data-types-x" + } + }, "#otherevents": { "current": { "number": "5.3.4", @@ -811,14 +827,6 @@ "url": "https://www.w3.org/TR/clipboard-apis/#privacy-permission" } }, - "#profile-and-date": { - "snapshot": { - "number": "", - "spec": "Clipboard API and events", - "text": "W3C Working Draft, 6 August 2021", - "url": "https://www.w3.org/TR/clipboard-apis/#profile-and-date" - } - }, "#read-permission": { "current": { "number": "9.1", @@ -923,14 +931,12 @@ "spec": "Clipboard API and events", "text": "Status of this document", "url": "https://w3c.github.io/clipboard-apis/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "Clipboard API and events", "text": "Status of this document", - "url": "https://www.w3.org/TR/clipboard-apis/#status" + "url": "https://www.w3.org/TR/clipboard-apis/#sotd" } }, "#terminolofy": { @@ -961,12 +967,34 @@ "url": "https://www.w3.org/TR/clipboard-apis/#to-fire-a-clipboard-event" } }, + "#to-os-specific-custom-map-name": { + "current": { + "number": "", + "spec": "Clipboard API and events", + "text": "os specific custom map name", + "url": "https://w3c.github.io/clipboard-apis/#to-os-specific-custom-map-name" + } + }, + "#to-os-specific-custom-name": { + "current": { + "number": "", + "spec": "Clipboard API and events", + "text": "os specific custom name", + "url": "https://w3c.github.io/clipboard-apis/#to-os-specific-custom-name" + } + }, "#to-os-specific-well-known-format": { "current": { "number": "", "spec": "Clipboard API and events", "text": "os specific well-known format", "url": "https://w3c.github.io/clipboard-apis/#to-os-specific-well-known-format" + }, + "snapshot": { + "number": "", + "spec": "Clipboard API and events", + "text": "os specific well-known format", + "url": "https://www.w3.org/TR/clipboard-apis/#to-os-specific-well-known-format" } }, "#to-process-html-paste-event": { @@ -983,12 +1011,34 @@ "url": "https://www.w3.org/TR/clipboard-apis/#to-process-html-paste-event" } }, + "#to-read-web-custom-format": { + "current": { + "number": "", + "spec": "Clipboard API and events", + "text": "read web custom format", + "url": "https://w3c.github.io/clipboard-apis/#to-read-web-custom-format" + } + }, + "#to-well-known-mime-type-from-os-specific-format": { + "current": { + "number": "", + "spec": "Clipboard API and events", + "text": "well-known mime type from os specific format", + "url": "https://w3c.github.io/clipboard-apis/#to-well-known-mime-type-from-os-specific-format" + } + }, "#to-write-blobs-to-clipboard": { "current": { "number": "", "spec": "Clipboard API and events", "text": "write blobs and option to the clipboard", "url": "https://w3c.github.io/clipboard-apis/#to-write-blobs-to-clipboard" + }, + "snapshot": { + "number": "", + "spec": "Clipboard API and events", + "text": "write blobs and option to the clipboard", + "url": "https://www.w3.org/TR/clipboard-apis/#to-write-blobs-to-clipboard" } }, "#to-write-content-to-clipboard": { @@ -1005,6 +1055,14 @@ "url": "https://www.w3.org/TR/clipboard-apis/#to-write-content-to-clipboard" } }, + "#to-write-web-custom-formats": { + "current": { + "number": "", + "spec": "Clipboard API and events", + "text": "write web custom formats", + "url": "https://w3c.github.io/clipboard-apis/#to-write-web-custom-formats" + } + }, "#toc": { "current": { "number": "", @@ -1033,12 +1091,26 @@ "url": "https://www.w3.org/TR/clipboard-apis/#trigger-clipboard-actions" } }, + "#unsanitized-data-types-x": { + "current": { + "number": "6.6", + "spec": "Clipboard API and events", + "text": "Unsanitized data types", + "url": "https://w3c.github.io/clipboard-apis/#unsanitized-data-types-x" + } + }, "#w3c-conformance": { "current": { "number": "", "spec": "Clipboard API and events", "text": "Conformance", "url": "https://w3c.github.io/clipboard-apis/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Clipboard API and events", + "text": "Conformance", + "url": "https://www.w3.org/TR/clipboard-apis/#w3c-conformance" } }, "#w3c-conformant-algorithms": { @@ -1047,6 +1119,12 @@ "spec": "Clipboard API and events", "text": "Conformant Algorithms", "url": "https://w3c.github.io/clipboard-apis/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Clipboard API and events", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/clipboard-apis/#w3c-conformant-algorithms" } }, "#w3c-conventions": { @@ -1055,6 +1133,12 @@ "spec": "Clipboard API and events", "text": "Document conventions", "url": "https://w3c.github.io/clipboard-apis/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Clipboard API and events", + "text": "Document conventions", + "url": "https://www.w3.org/TR/clipboard-apis/#w3c-conventions" } }, "#write-permission": { diff --git a/bikeshed/spec-data/readonly/headings/headings-close-watcher.json b/bikeshed/spec-data/readonly/headings/headings-close-watcher.json deleted file mode 100644 index b17485ff34..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-close-watcher.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "#abstract": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Abstract", - "url": "https://wicg.github.io/close-watcher/#abstract" - } - }, - "#close-signals": { - "current": { - "number": "1", - "spec": "Close Watcher API", - "text": "Close signals", - "url": "https://wicg.github.io/close-watcher/#close-signals" - } - }, - "#close-watcher-api": { - "current": { - "number": "1.2", - "spec": "Close Watcher API", - "text": "Close watcher API", - "url": "https://wicg.github.io/close-watcher/#close-watcher-api" - } - }, - "#close-watchers": { - "current": { - "number": "1.1", - "spec": "Close Watcher API", - "text": "Close watcher infrastructure", - "url": "https://wicg.github.io/close-watcher/#close-watchers" - } - }, - "#idl-index": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "IDL Index", - "url": "https://wicg.github.io/close-watcher/#idl-index" - } - }, - "#index": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Index", - "url": "https://wicg.github.io/close-watcher/#index" - } - }, - "#index-defined-elsewhere": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Terms defined by reference", - "url": "https://wicg.github.io/close-watcher/#index-defined-elsewhere" - } - }, - "#index-defined-here": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Terms defined by this specification", - "url": "https://wicg.github.io/close-watcher/#index-defined-here" - } - }, - "#informative": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Informative References", - "url": "https://wicg.github.io/close-watcher/#informative" - } - }, - "#normative": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Normative References", - "url": "https://wicg.github.io/close-watcher/#normative" - } - }, - "#patch-dialog": { - "current": { - "number": "2.2", - "spec": "Close Watcher API", - "text": "The dialog element", - "url": "https://wicg.github.io/close-watcher/#patch-dialog" - } - }, - "#patch-fullscreen": { - "current": { - "number": "2.1", - "spec": "Close Watcher API", - "text": "Fullscreen", - "url": "https://wicg.github.io/close-watcher/#patch-fullscreen" - } - }, - "#patches": { - "current": { - "number": "2", - "spec": "Close Watcher API", - "text": "Updates to other specifications", - "url": "https://wicg.github.io/close-watcher/#patches" - } - }, - "#privacy": { - "current": { - "number": "3.2", - "spec": "Close Watcher API", - "text": "Privacy considerations", - "url": "https://wicg.github.io/close-watcher/#privacy" - } - }, - "#references": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "References", - "url": "https://wicg.github.io/close-watcher/#references" - } - }, - "#security": { - "current": { - "number": "3.1", - "spec": "Close Watcher API", - "text": "Security considerations", - "url": "https://wicg.github.io/close-watcher/#security" - } - }, - "#security-and-privacy": { - "current": { - "number": "3", - "spec": "Close Watcher API", - "text": "Security and privacy considerations", - "url": "https://wicg.github.io/close-watcher/#security-and-privacy" - } - }, - "#status": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Status of this document", - "url": "https://wicg.github.io/close-watcher/#status" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Close Watcher API", - "url": "https://wicg.github.io/close-watcher/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "Close Watcher API", - "text": "Table of Contents", - "url": "https://wicg.github.io/close-watcher/#toc" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-compositing-1.json b/bikeshed/spec-data/readonly/headings/headings-compositing-1.json index b1347e06a7..16251cbc50 100644 --- a/bikeshed/spec-data/readonly/headings/headings-compositing-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-compositing-1.json @@ -61,6 +61,12 @@ "spec": "Compositing 1", "text": "The background-blend-mode property", "url": "https://drafts.fxtf.org/compositing-1/#background-blend-mode" + }, + "snapshot": { + "number": "3.4.3", + "spec": "Compositing 1", + "text": "The background-blend-mode property", + "url": "https://www.w3.org/TR/compositing-1/#background-blend-mode" } }, "#blending": { @@ -347,13 +353,13 @@ "current": { "number": "", "spec": "Compositing 1", - "text": "12. Changes", + "text": "Changes", "url": "https://drafts.fxtf.org/compositing-1/#changes" }, "snapshot": { "number": "", "spec": "Compositing 1", - "text": "12. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/compositing-1/#changes" } }, @@ -371,46 +377,6 @@ "url": "https://www.w3.org/TR/compositing-1/#compositingandblendingorder" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Conformance", - "url": "https://www.w3.org/TR/compositing-1/#conformance" - } - }, - "#conformance-classes": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/compositing-1/#conformance-classes" - } - }, - "#contents": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/compositing-1/#contents" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Document conventions", - "url": "https://www.w3.org/TR/compositing-1/#conventions" - } - }, - "#cr-exit-criteria": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "CR exit criteria", - "url": "https://www.w3.org/TR/compositing-1/#cr-exit-criteria" - } - }, "#csscompositingandblending": { "current": { "number": "3", @@ -467,14 +433,6 @@ "url": "https://www.w3.org/TR/compositing-1/#csskeywords" } }, - "#experimental": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Experimental implementations", - "url": "https://www.w3.org/TR/compositing-1/#experimental" - } - }, "#generalformula": { "current": { "number": "6", @@ -551,6 +509,12 @@ "spec": "Compositing 1", "text": "Terms defined by reference", "url": "https://drafts.fxtf.org/compositing-1/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/compositing-1/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -559,6 +523,12 @@ "spec": "Compositing 1", "text": "Terms defined by this specification", "url": "https://drafts.fxtf.org/compositing-1/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/compositing-1/#index-defined-here" } }, "#informative": { @@ -683,18 +653,10 @@ "snapshot": { "number": "8.3", "spec": "Compositing 1", - "text": "The Page Group", + "text": "The Root Element Group", "url": "https://www.w3.org/TR/compositing-1/#pagebackdrop" } }, - "#partial": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Partial implementations", - "url": "https://www.w3.org/TR/compositing-1/#partial" - } - }, "#porterduffcompositingoperators": { "current": { "number": "9.1", @@ -891,6 +853,20 @@ "url": "https://www.w3.org/TR/compositing-1/#porterduffcompositingoperators_xor" } }, + "#privacy": { + "current": { + "number": "", + "spec": "Compositing 1", + "text": "Privacy Considerations", + "url": "https://drafts.fxtf.org/compositing-1/#privacy" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/compositing-1/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -939,19 +915,25 @@ "spec": "Compositing 1", "text": "The Root Group", "url": "https://drafts.fxtf.org/compositing-1/#rootgroup" + }, + "snapshot": { + "number": "8.4", + "spec": "Compositing 1", + "text": "The Root Group", + "url": "https://www.w3.org/TR/compositing-1/#rootgroup" } }, "#security": { "current": { "number": "", "spec": "Compositing 1", - "text": "11. Security issues with compositing and blending", + "text": "Security Considerations", "url": "https://drafts.fxtf.org/compositing-1/#security" }, "snapshot": { "number": "", "spec": "Compositing 1", - "text": "11. Security issues with compositing and blending", + "text": "Security Considerations", "url": "https://www.w3.org/TR/compositing-1/#security" } }, @@ -983,42 +965,18 @@ "url": "https://www.w3.org/TR/compositing-1/#simplealphacompositingexamples" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Compositing 1", "text": "Status of this document", - "url": "https://drafts.fxtf.org/compositing-1/#status" + "url": "https://drafts.fxtf.org/compositing-1/#sotd" }, "snapshot": { "number": "", "spec": "Compositing 1", "text": "Status of this document", - "url": "https://www.w3.org/TR/compositing-1/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "W3C Candidate Recommendation, 13 January 2015", - "url": "https://www.w3.org/TR/compositing-1/#subtitle" - } - }, - "#testing": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Non-experimental implementations", - "url": "https://www.w3.org/TR/compositing-1/#testing" - } - }, - "#title": { - "snapshot": { - "number": "", - "spec": "Compositing 1", - "text": "Compositing and Blending Level 1", - "url": "https://www.w3.org/TR/compositing-1/#title" + "url": "https://www.w3.org/TR/compositing-1/#sotd" } }, "#toc": { @@ -1027,6 +985,12 @@ "spec": "Compositing 1", "text": "Table of Contents", "url": "https://drafts.fxtf.org/compositing-1/#toc" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/compositing-1/#toc" } }, "#values": { @@ -1049,6 +1013,12 @@ "spec": "Compositing 1", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.fxtf.org/compositing-1/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/compositing-1/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -1057,6 +1027,12 @@ "spec": "Compositing 1", "text": "Conformance", "url": "https://drafts.fxtf.org/compositing-1/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Conformance", + "url": "https://www.w3.org/TR/compositing-1/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -1065,6 +1041,12 @@ "spec": "Compositing 1", "text": "Conformance classes", "url": "https://drafts.fxtf.org/compositing-1/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/compositing-1/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -1073,6 +1055,26 @@ "spec": "Compositing 1", "text": "Document conventions", "url": "https://drafts.fxtf.org/compositing-1/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Document conventions", + "url": "https://www.w3.org/TR/compositing-1/#w3c-conventions" + } + }, + "#w3c-cr-exit-criteria": { + "current": { + "number": "", + "spec": "Compositing 1", + "text": "CR exit criteria", + "url": "https://drafts.fxtf.org/compositing-1/#w3c-cr-exit-criteria" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "CR exit criteria", + "url": "https://www.w3.org/TR/compositing-1/#w3c-cr-exit-criteria" } }, "#w3c-partial": { @@ -1081,6 +1083,12 @@ "spec": "Compositing 1", "text": "Partial implementations", "url": "https://drafts.fxtf.org/compositing-1/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/compositing-1/#w3c-partial" } }, "#w3c-testing": { @@ -1089,6 +1097,12 @@ "spec": "Compositing 1", "text": "Non-experimental implementations", "url": "https://drafts.fxtf.org/compositing-1/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "Compositing 1", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/compositing-1/#w3c-testing" } }, "#whatiscompositing": { diff --git a/bikeshed/spec-data/readonly/headings/headings-compression.json b/bikeshed/spec-data/readonly/headings/headings-compression.json index 6fab7a0df1..be04f35a38 100644 --- a/bikeshed/spec-data/readonly/headings/headings-compression.json +++ b/bikeshed/spec-data/readonly/headings/headings-compression.json @@ -2,185 +2,177 @@ "#abstract": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Abstract", - "url": "https://wicg.github.io/compression/#abstract" + "url": "https://compression.spec.whatwg.org/#abstract" } }, "#acknowledgments": { "current": { - "number": "9", - "spec": "Compression Streams", + "number": "", + "spec": "Compression", "text": "Acknowledgments", - "url": "https://wicg.github.io/compression/#acknowledgments" + "url": "https://compression.spec.whatwg.org/#acknowledgments" } }, "#compression-stream": { "current": { - "number": "5", - "spec": "Compression Streams", + "number": "4", + "spec": "Compression", "text": "Interface CompressionStream", - "url": "https://wicg.github.io/compression/#compression-stream" - } - }, - "#conformance": { - "current": { - "number": "2", - "spec": "Compression Streams", - "text": "Conformance", - "url": "https://wicg.github.io/compression/#conformance" + "url": "https://compression.spec.whatwg.org/#compression-stream" } }, "#decompression-stream": { "current": { - "number": "6", - "spec": "Compression Streams", + "number": "5", + "spec": "Compression", "text": "Interface DecompressionStream", - "url": "https://wicg.github.io/compression/#decompression-stream" + "url": "https://compression.spec.whatwg.org/#decompression-stream" } }, "#example-deflate-compress": { "current": { - "number": "8.2", - "spec": "Compression Streams", + "number": "7.2", + "spec": "Compression", "text": "Deflate-compress an ArrayBuffer to a Uint8Array", - "url": "https://wicg.github.io/compression/#example-deflate-compress" + "url": "https://compression.spec.whatwg.org/#example-deflate-compress" } }, "#example-gzip-compress-stream": { "current": { - "number": "8.1", - "spec": "Compression Streams", + "number": "7.1", + "spec": "Compression", "text": "Gzip-compress a stream", - "url": "https://wicg.github.io/compression/#example-gzip-compress-stream" + "url": "https://compression.spec.whatwg.org/#example-gzip-compress-stream" } }, "#example-gzip-decompress": { "current": { - "number": "8.3", - "spec": "Compression Streams", + "number": "7.3", + "spec": "Compression", "text": "Gzip-decompress a Blob to Blob", - "url": "https://wicg.github.io/compression/#example-gzip-decompress" + "url": "https://compression.spec.whatwg.org/#example-gzip-decompress" } }, "#examples": { "current": { - "number": "8", - "spec": "Compression Streams", + "number": "7", + "spec": "Compression", "text": "Examples", - "url": "https://wicg.github.io/compression/#examples" + "url": "https://compression.spec.whatwg.org/#examples" } }, "#idl-index": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "IDL Index", - "url": "https://wicg.github.io/compression/#idl-index" + "url": "https://compression.spec.whatwg.org/#idl-index" } }, "#index": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Index", - "url": "https://wicg.github.io/compression/#index" + "url": "https://compression.spec.whatwg.org/#index" } }, "#index-defined-elsewhere": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Terms defined by reference", - "url": "https://wicg.github.io/compression/#index-defined-elsewhere" + "url": "https://compression.spec.whatwg.org/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Terms defined by this specification", - "url": "https://wicg.github.io/compression/#index-defined-here" + "url": "https://compression.spec.whatwg.org/#index-defined-here" } }, "#informative": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Informative References", - "url": "https://wicg.github.io/compression/#informative" + "url": "https://compression.spec.whatwg.org/#informative" + } + }, + "#infrastructure": { + "current": { + "number": "2", + "spec": "Compression", + "text": "Infrastructure", + "url": "https://compression.spec.whatwg.org/#infrastructure" } }, "#introduction": { "current": { "number": "1", - "spec": "Compression Streams", + "spec": "Compression", "text": "Introduction", - "url": "https://wicg.github.io/compression/#introduction" + "url": "https://compression.spec.whatwg.org/#introduction" + } + }, + "#ipr": { + "current": { + "number": "", + "spec": "Compression", + "text": "Intellectual property rights", + "url": "https://compression.spec.whatwg.org/#ipr" } }, "#normative": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Normative References", - "url": "https://wicg.github.io/compression/#normative" + "url": "https://compression.spec.whatwg.org/#normative" } }, "#privacy-security": { "current": { - "number": "7", - "spec": "Compression Streams", - "text": "Privacy and Security Considerations", - "url": "https://wicg.github.io/compression/#privacy-security" + "number": "6", + "spec": "Compression", + "text": "Privacy and security considerations", + "url": "https://compression.spec.whatwg.org/#privacy-security" } }, "#references": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "References", - "url": "https://wicg.github.io/compression/#references" - } - }, - "#status": { - "current": { - "number": "", - "spec": "Compression Streams", - "text": "Status of this document", - "url": "https://wicg.github.io/compression/#status" + "url": "https://compression.spec.whatwg.org/#references" } }, "#supported-formats": { - "current": { - "number": "4", - "spec": "Compression Streams", - "text": "Supported formats", - "url": "https://wicg.github.io/compression/#supported-formats" - } - }, - "#terminology": { "current": { "number": "3", - "spec": "Compression Streams", - "text": "Terminology", - "url": "https://wicg.github.io/compression/#terminology" + "spec": "Compression", + "text": "Supported formats", + "url": "https://compression.spec.whatwg.org/#supported-formats" } }, "#title": { "current": { "number": "", - "spec": "Compression Streams", - "text": "Compression Streams", - "url": "https://wicg.github.io/compression/#title" + "spec": "Compression", + "text": "Compression", + "url": "https://compression.spec.whatwg.org/#title" } }, "#toc": { "current": { "number": "", - "spec": "Compression Streams", + "spec": "Compression", "text": "Table of Contents", - "url": "https://wicg.github.io/compression/#toc" + "url": "https://compression.spec.whatwg.org/#toc" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-compute-pressure.json b/bikeshed/spec-data/readonly/headings/headings-compute-pressure.json index 1027146cb5..27cf080e83 100644 --- a/bikeshed/spec-data/readonly/headings/headings-compute-pressure.json +++ b/bikeshed/spec-data/readonly/headings/headings-compute-pressure.json @@ -13,20 +13,76 @@ "url": "https://www.w3.org/TR/compute-pressure/#a-note-on-feature-detection" } }, + "#accessibility-considerations": { + "current": { + "number": "", + "spec": "Compute Pressure 1", + "text": "12. Accessibility considerations", + "url": "https://w3c.github.io/compute-pressure/#accessibility-considerations" + }, + "snapshot": { + "number": "", + "spec": "Compute Pressure 1", + "text": "12. Accessibility considerations", + "url": "https://www.w3.org/TR/compute-pressure/#accessibility-considerations" + } + }, "#acknowledgments": { "current": { - "number": "10.10", + "number": "A", "spec": "Compute Pressure 1", "text": "Acknowledgments", "url": "https://w3c.github.io/compute-pressure/#acknowledgments" }, "snapshot": { - "number": "10.10", + "number": "A", "spec": "Compute Pressure 1", "text": "Acknowledgments", "url": "https://www.w3.org/TR/compute-pressure/#acknowledgments" } }, + "#automation": { + "current": { + "number": "", + "spec": "Compute Pressure 1", + "text": "13. Automation", + "url": "https://w3c.github.io/compute-pressure/#automation" + }, + "snapshot": { + "number": "", + "spec": "Compute Pressure 1", + "text": "13. Automation", + "url": "https://www.w3.org/TR/compute-pressure/#automation" + } + }, + "#break-calibration": { + "current": { + "number": "11.2.6", + "spec": "Compute Pressure 1", + "text": "Break calibration", + "url": "https://w3c.github.io/compute-pressure/#break-calibration" + }, + "snapshot": { + "number": "11.2.6", + "spec": "Compute Pressure 1", + "text": "Break calibration", + "url": "https://www.w3.org/TR/compute-pressure/#break-calibration" + } + }, + "#break-calibration-parameters": { + "current": { + "number": "11.2.7", + "spec": "Compute Pressure 1", + "text": "Break calibration parameters", + "url": "https://w3c.github.io/compute-pressure/#break-calibration-parameters" + }, + "snapshot": { + "number": "11.2.7", + "spec": "Compute Pressure 1", + "text": "Break calibration parameters", + "url": "https://www.w3.org/TR/compute-pressure/#break-calibration-parameters" + } + }, "#concepts": { "current": { "number": "3", @@ -43,15 +99,15 @@ }, "#conformance": { "current": { - "number": "10.9", + "number": "", "spec": "Compute Pressure 1", - "text": "Conformance", + "text": "15. Conformance", "url": "https://w3c.github.io/compute-pressure/#conformance" }, "snapshot": { - "number": "10.9", + "number": "", "spec": "Compute Pressure 1", - "text": "Conformance", + "text": "15. Conformance", "url": "https://www.w3.org/TR/compute-pressure/#conformance" } }, @@ -69,85 +125,197 @@ "url": "https://www.w3.org/TR/compute-pressure/#contributing-factors" } }, - "#data-delivery": { + "#create-virtual-pressure-source": { + "current": { + "number": "13.1.1.1", + "spec": "Compute Pressure 1", + "text": "Create virtual pressure source", + "url": "https://w3c.github.io/compute-pressure/#create-virtual-pressure-source" + }, + "snapshot": { + "number": "13.1.1.1", + "spec": "Compute Pressure 1", + "text": "Create virtual pressure source", + "url": "https://www.w3.org/TR/compute-pressure/#create-virtual-pressure-source" + } + }, + "#cross-site-covert-channel": { + "current": { + "number": "11.1.2", + "spec": "Compute Pressure 1", + "text": "Cross-site covert channel", + "url": "https://w3c.github.io/compute-pressure/#cross-site-covert-channel" + }, + "snapshot": { + "number": "11.1.2", + "spec": "Compute Pressure 1", + "text": "Cross-site covert channel", + "url": "https://www.w3.org/TR/compute-pressure/#cross-site-covert-channel" + } + }, + "#data-collection-and-delivery": { "current": { "number": "10.6.2", "spec": "Compute Pressure 1", - "text": "Data delivery", - "url": "https://w3c.github.io/compute-pressure/#data-delivery" + "text": "Data Collection and Delivery", + "url": "https://w3c.github.io/compute-pressure/#data-collection-and-delivery" }, "snapshot": { "number": "10.6.2", "spec": "Compute Pressure 1", - "text": "Data delivery", - "url": "https://www.w3.org/TR/compute-pressure/#data-delivery" + "text": "Data Collection and Delivery", + "url": "https://www.w3.org/TR/compute-pressure/#data-collection-and-delivery" + } + }, + "#data-minimization": { + "current": { + "number": "11.2.1", + "spec": "Compute Pressure 1", + "text": "Data minimization", + "url": "https://w3c.github.io/compute-pressure/#data-minimization" + }, + "snapshot": { + "number": "11.2.1", + "spec": "Compute Pressure 1", + "text": "Data minimization", + "url": "https://www.w3.org/TR/compute-pressure/#data-minimization" + } + }, + "#delete-virtual-pressure-source": { + "current": { + "number": "13.1.1.2", + "spec": "Compute Pressure 1", + "text": "Delete virtual pressure source", + "url": "https://w3c.github.io/compute-pressure/#delete-virtual-pressure-source" + }, + "snapshot": { + "number": "13.1.1.2", + "spec": "Compute Pressure 1", + "text": "Delete virtual pressure source", + "url": "https://www.w3.org/TR/compute-pressure/#delete-virtual-pressure-source" } }, "#examples": { "current": { - "number": "10.8", + "number": "", "spec": "Compute Pressure 1", - "text": "Examples", + "text": "14. Examples", "url": "https://w3c.github.io/compute-pressure/#examples" }, "snapshot": { - "number": "10.8", + "number": "", "spec": "Compute Pressure 1", - "text": "Examples", + "text": "14. Examples", "url": "https://www.w3.org/TR/compute-pressure/#examples" } }, - "#first-party-contexts": { + "#extension-commands": { "current": { - "number": "10.7.1.3", + "number": "13.1.1", "spec": "Compute Pressure 1", - "text": "First-party contexts", - "url": "https://w3c.github.io/compute-pressure/#first-party-contexts" + "text": "Extension Commands", + "url": "https://w3c.github.io/compute-pressure/#extension-commands" }, "snapshot": { - "number": "10.7.1.3", + "number": "13.1.1", "spec": "Compute Pressure 1", - "text": "First-party contexts", - "url": "https://www.w3.org/TR/compute-pressure/#first-party-contexts" + "text": "Extension Commands", + "url": "https://www.w3.org/TR/compute-pressure/#extension-commands" } }, - "#handling-change-of-fully-active": { + "#handling-change-of-fully-active-status": { "current": { "number": "10.6.6", "spec": "Compute Pressure 1", - "text": "Handling change of fully active", - "url": "https://w3c.github.io/compute-pressure/#handling-change-of-fully-active" + "text": "Handling change of fully active status", + "url": "https://w3c.github.io/compute-pressure/#handling-change-of-fully-active-status" }, "snapshot": { "number": "10.6.6", "spec": "Compute Pressure 1", - "text": "Handling change of fully active", - "url": "https://www.w3.org/TR/compute-pressure/#handling-change-of-fully-active" + "text": "Handling change of fully active status", + "url": "https://www.w3.org/TR/compute-pressure/#handling-change-of-fully-active-status" + } + }, + "#handling-changes-to-worker-status": { + "current": { + "number": "10.6.7", + "spec": "Compute Pressure 1", + "text": "Handling changes to worker status", + "url": "https://w3c.github.io/compute-pressure/#handling-changes-to-worker-status" + }, + "snapshot": { + "number": "10.6.7", + "spec": "Compute Pressure 1", + "text": "Handling changes to worker status", + "url": "https://www.w3.org/TR/compute-pressure/#handling-changes-to-worker-status" } }, "#idl-index": { "current": { - "number": "10.11", + "number": "C", "spec": "Compute Pressure 1", "text": "IDL Index", "url": "https://w3c.github.io/compute-pressure/#idl-index" }, "snapshot": { - "number": "10.11", + "number": "C", "spec": "Compute Pressure 1", "text": "IDL Index", "url": "https://www.w3.org/TR/compute-pressure/#idl-index" } }, + "#index": { + "current": { + "number": "B", + "spec": "Compute Pressure 1", + "text": "Index", + "url": "https://w3c.github.io/compute-pressure/#index" + }, + "snapshot": { + "number": "B", + "spec": "Compute Pressure 1", + "text": "Index", + "url": "https://www.w3.org/TR/compute-pressure/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "B.2", + "spec": "Compute Pressure 1", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/compute-pressure/#index-defined-elsewhere" + }, + "snapshot": { + "number": "B.2", + "spec": "Compute Pressure 1", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/compute-pressure/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "B.1", + "spec": "Compute Pressure 1", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/compute-pressure/#index-defined-here" + }, + "snapshot": { + "number": "B.1", + "spec": "Compute Pressure 1", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/compute-pressure/#index-defined-here" + } + }, "#informative-references": { "current": { - "number": "A.2", + "number": "D.2", "spec": "Compute Pressure 1", "text": "Informative references", "url": "https://w3c.github.io/compute-pressure/#informative-references" }, "snapshot": { - "number": "A.2", + "number": "D.2", "spec": "Compute Pressure 1", "text": "Informative references", "url": "https://www.w3.org/TR/compute-pressure/#informative-references" @@ -195,43 +363,29 @@ "url": "https://www.w3.org/TR/compute-pressure/#life-cycle" } }, - "#minimizing-information-exposure": { - "current": { - "number": "10.7.1", - "spec": "Compute Pressure 1", - "text": "Minimizing information exposure", - "url": "https://w3c.github.io/compute-pressure/#minimizing-information-exposure" - }, - "snapshot": { - "number": "10.7.1", - "spec": "Compute Pressure 1", - "text": "Minimizing information exposure", - "url": "https://www.w3.org/TR/compute-pressure/#minimizing-information-exposure" - } - }, - "#no-side-channels": { + "#mitigation-strategies": { "current": { - "number": "10.7.1.2", + "number": "11.2", "spec": "Compute Pressure 1", - "text": "No side-channels", - "url": "https://w3c.github.io/compute-pressure/#no-side-channels" + "text": "Mitigation strategies", + "url": "https://w3c.github.io/compute-pressure/#mitigation-strategies" }, "snapshot": { - "number": "10.7.1.2", + "number": "11.2", "spec": "Compute Pressure 1", - "text": "No side-channels", - "url": "https://www.w3.org/TR/compute-pressure/#no-side-channels" + "text": "Mitigation strategies", + "url": "https://www.w3.org/TR/compute-pressure/#mitigation-strategies" } }, "#normative-references": { "current": { - "number": "A.1", + "number": "D.1", "spec": "Compute Pressure 1", "text": "Normative references", "url": "https://w3c.github.io/compute-pressure/#normative-references" }, "snapshot": { - "number": "A.1", + "number": "D.1", "spec": "Compute Pressure 1", "text": "Normative references", "url": "https://www.w3.org/TR/compute-pressure/#normative-references" @@ -293,6 +447,20 @@ "url": "https://www.w3.org/TR/compute-pressure/#pressure-observer" } }, + "#pressure-sources": { + "current": { + "number": "3.2", + "spec": "Compute Pressure 1", + "text": "Pressure sources", + "url": "https://w3c.github.io/compute-pressure/#pressure-sources" + }, + "snapshot": { + "number": "3.2", + "spec": "Compute Pressure 1", + "text": "Pressure sources", + "url": "https://www.w3.org/TR/compute-pressure/#pressure-sources" + } + }, "#pressure-states": { "current": { "number": "8", @@ -365,32 +533,88 @@ }, "#rate-limiting-change-notifications": { "current": { - "number": "10.7.1.1", + "number": "11.2.2", "spec": "Compute Pressure 1", "text": "Rate-limiting change notifications", "url": "https://w3c.github.io/compute-pressure/#rate-limiting-change-notifications" }, "snapshot": { - "number": "10.7.1.1", + "number": "11.2.2", "spec": "Compute Pressure 1", "text": "Rate-limiting change notifications", "url": "https://www.w3.org/TR/compute-pressure/#rate-limiting-change-notifications" } }, + "#rate-obfuscation": { + "current": { + "number": "11.2.3", + "spec": "Compute Pressure 1", + "text": "Rate obfuscation", + "url": "https://w3c.github.io/compute-pressure/#rate-obfuscation" + }, + "snapshot": { + "number": "11.2.3", + "spec": "Compute Pressure 1", + "text": "Rate obfuscation", + "url": "https://www.w3.org/TR/compute-pressure/#rate-obfuscation" + } + }, + "#rate-obfuscation-non-normative-parameters": { + "current": { + "number": "11.2.5", + "spec": "Compute Pressure 1", + "text": "Rate obfuscation non-normative parameters", + "url": "https://w3c.github.io/compute-pressure/#rate-obfuscation-non-normative-parameters" + }, + "snapshot": { + "number": "11.2.5", + "spec": "Compute Pressure 1", + "text": "Rate obfuscation non-normative parameters", + "url": "https://www.w3.org/TR/compute-pressure/#rate-obfuscation-non-normative-parameters" + } + }, + "#rate-obfuscation-normative-parameters": { + "current": { + "number": "11.2.4", + "spec": "Compute Pressure 1", + "text": "Rate obfuscation normative parameters", + "url": "https://w3c.github.io/compute-pressure/#rate-obfuscation-normative-parameters" + }, + "snapshot": { + "number": "11.2.4", + "spec": "Compute Pressure 1", + "text": "Rate obfuscation normative parameters", + "url": "https://www.w3.org/TR/compute-pressure/#rate-obfuscation-normative-parameters" + } + }, "#references": { "current": { - "number": "A", + "number": "D", "spec": "Compute Pressure 1", "text": "References", "url": "https://w3c.github.io/compute-pressure/#references" }, "snapshot": { - "number": "A", + "number": "D", "spec": "Compute Pressure 1", "text": "References", "url": "https://www.w3.org/TR/compute-pressure/#references" } }, + "#same-origin-restriction": { + "current": { + "number": "11.2.8", + "spec": "Compute Pressure 1", + "text": "Same-origin restriction", + "url": "https://w3c.github.io/compute-pressure/#same-origin-restriction" + }, + "snapshot": { + "number": "11.2.8", + "spec": "Compute Pressure 1", + "text": "Same-origin restriction", + "url": "https://www.w3.org/TR/compute-pressure/#same-origin-restriction" + } + }, "#sampling-and-reporting-rate": { "current": { "number": "3.3", @@ -407,32 +631,18 @@ }, "#security-and-privacy-considerations": { "current": { - "number": "10.7", + "number": "", "spec": "Compute Pressure 1", - "text": "Security and privacy considerations", + "text": "11. Security and privacy considerations", "url": "https://w3c.github.io/compute-pressure/#security-and-privacy-considerations" }, "snapshot": { - "number": "10.7", + "number": "", "spec": "Compute Pressure 1", - "text": "Security and privacy considerations", + "text": "11. Security and privacy considerations", "url": "https://www.w3.org/TR/compute-pressure/#security-and-privacy-considerations" } }, - "#supported-sources": { - "current": { - "number": "3.2", - "spec": "Compute Pressure 1", - "text": "Supported sources", - "url": "https://w3c.github.io/compute-pressure/#supported-sources" - }, - "snapshot": { - "number": "3.2", - "spec": "Compute Pressure 1", - "text": "Supported sources", - "url": "https://www.w3.org/TR/compute-pressure/#supported-sources" - } - }, "#supporting-algorithms": { "current": { "number": "10.6.1", @@ -447,6 +657,20 @@ "url": "https://www.w3.org/TR/compute-pressure/#supporting-algorithms" } }, + "#targeted-de-anonymization-attacks": { + "current": { + "number": "11.1.3", + "spec": "Compute Pressure 1", + "text": "Targeted de-anonymization attacks", + "url": "https://w3c.github.io/compute-pressure/#targeted-de-anonymization-attacks" + }, + "snapshot": { + "number": "11.1.3", + "spec": "Compute Pressure 1", + "text": "Targeted de-anonymization attacks", + "url": "https://www.w3.org/TR/compute-pressure/#targeted-de-anonymization-attacks" + } + }, "#the-constructor-method": { "current": { "number": "10.2.1", @@ -475,18 +699,18 @@ "url": "https://www.w3.org/TR/compute-pressure/#the-disconnect-method" } }, - "#the-factors-attribute": { + "#the-knownsources-attribute": { "current": { - "number": "10.3.3", + "number": "10.2.6", "spec": "Compute Pressure 1", - "text": "The factors attribute", - "url": "https://w3c.github.io/compute-pressure/#the-factors-attribute" + "text": "The knownSources attribute", + "url": "https://w3c.github.io/compute-pressure/#the-knownsources-attribute" }, "snapshot": { - "number": "10.3.3", + "number": "10.2.6", "spec": "Compute Pressure 1", - "text": "The factors attribute", - "url": "https://www.w3.org/TR/compute-pressure/#the-factors-attribute" + "text": "The knownSources attribute", + "url": "https://www.w3.org/TR/compute-pressure/#the-knownsources-attribute" } }, "#the-observe-method": { @@ -559,18 +783,18 @@ "url": "https://www.w3.org/TR/compute-pressure/#the-pressureupdatecallback-callback" } }, - "#the-samplerate-member": { + "#the-sampleinterval-member": { "current": { "number": "10.4.1", "spec": "Compute Pressure 1", - "text": "The sampleRate member", - "url": "https://w3c.github.io/compute-pressure/#the-samplerate-member" + "text": "The sampleInterval member", + "url": "https://w3c.github.io/compute-pressure/#the-sampleinterval-member" }, "snapshot": { "number": "10.4.1", "spec": "Compute Pressure 1", - "text": "The sampleRate member", - "url": "https://www.w3.org/TR/compute-pressure/#the-samplerate-member" + "text": "The sampleInterval member", + "url": "https://www.w3.org/TR/compute-pressure/#the-sampleinterval-member" } }, "#the-source-attribute": { @@ -601,20 +825,6 @@ "url": "https://www.w3.org/TR/compute-pressure/#the-state-attribute" } }, - "#the-supportedsources-attribute": { - "current": { - "number": "10.2.6", - "spec": "Compute Pressure 1", - "text": "The supportedSources attribute", - "url": "https://w3c.github.io/compute-pressure/#the-supportedsources-attribute" - }, - "snapshot": { - "number": "10.2.6", - "spec": "Compute Pressure 1", - "text": "The supportedSources attribute", - "url": "https://www.w3.org/TR/compute-pressure/#the-supportedsources-attribute" - } - }, "#the-takerecords-method": { "current": { "number": "10.2.5", @@ -631,13 +841,13 @@ }, "#the-time-attribute": { "current": { - "number": "10.3.4", + "number": "10.3.3", "spec": "Compute Pressure 1", "text": "The time attribute", "url": "https://w3c.github.io/compute-pressure/#the-time-attribute" }, "snapshot": { - "number": "10.3.4", + "number": "10.3.3", "spec": "Compute Pressure 1", "text": "The time attribute", "url": "https://www.w3.org/TR/compute-pressure/#the-time-attribute" @@ -645,13 +855,13 @@ }, "#the-tojson-member": { "current": { - "number": "10.3.5", + "number": "10.3.4", "spec": "Compute Pressure 1", "text": "The toJSON member", "url": "https://w3c.github.io/compute-pressure/#the-tojson-member" }, "snapshot": { - "number": "10.3.5", + "number": "10.3.4", "spec": "Compute Pressure 1", "text": "The toJSON member", "url": "https://www.w3.org/TR/compute-pressure/#the-tojson-member" @@ -671,6 +881,20 @@ "url": "https://www.w3.org/TR/compute-pressure/#the-unobserve-method" } }, + "#timing-attacks": { + "current": { + "number": "11.1.1", + "spec": "Compute Pressure 1", + "text": "Timing attacks", + "url": "https://w3c.github.io/compute-pressure/#timing-attacks" + }, + "snapshot": { + "number": "11.1.1", + "spec": "Compute Pressure 1", + "text": "Timing attacks", + "url": "https://www.w3.org/TR/compute-pressure/#timing-attacks" + } + }, "#title": { "current": { "number": "", @@ -699,18 +923,32 @@ "url": "https://www.w3.org/TR/compute-pressure/#toc" } }, - "#unload-observers": { + "#types-of-privacy-and-security-threats": { "current": { - "number": "10.6.7", + "number": "11.1", "spec": "Compute Pressure 1", - "text": "Handle unloading document and closing of workers", - "url": "https://w3c.github.io/compute-pressure/#unload-observers" + "text": "Types of privacy and security threats", + "url": "https://w3c.github.io/compute-pressure/#types-of-privacy-and-security-threats" }, "snapshot": { - "number": "10.6.7", + "number": "11.1", "spec": "Compute Pressure 1", - "text": "Handle unloading document and closing of workers", - "url": "https://www.w3.org/TR/compute-pressure/#unload-observers" + "text": "Types of privacy and security threats", + "url": "https://www.w3.org/TR/compute-pressure/#types-of-privacy-and-security-threats" + } + }, + "#update-virtual-pressure-source": { + "current": { + "number": "13.1.1.3", + "spec": "Compute Pressure 1", + "text": "Update virtual pressure source", + "url": "https://w3c.github.io/compute-pressure/#update-virtual-pressure-source" + }, + "snapshot": { + "number": "13.1.1.3", + "spec": "Compute Pressure 1", + "text": "Update virtual pressure source", + "url": "https://www.w3.org/TR/compute-pressure/#update-virtual-pressure-source" } }, "#user-notifications": { @@ -726,5 +964,19 @@ "text": "User notifications", "url": "https://www.w3.org/TR/compute-pressure/#user-notifications" } + }, + "#virtual-pressure-source": { + "current": { + "number": "13.1", + "spec": "Compute Pressure 1", + "text": "Virtual Pressure Source", + "url": "https://w3c.github.io/compute-pressure/#virtual-pressure-source" + }, + "snapshot": { + "number": "13.1", + "spec": "Compute Pressure 1", + "text": "Virtual Pressure Source", + "url": "https://www.w3.org/TR/compute-pressure/#virtual-pressure-source" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-contact-picker.json b/bikeshed/spec-data/readonly/headings/headings-contact-picker.json index 150b4b5125..957a56d9fd 100644 --- a/bikeshed/spec-data/readonly/headings/headings-contact-picker.json +++ b/bikeshed/spec-data/readonly/headings/headings-contact-picker.json @@ -13,15 +13,29 @@ "url": "https://www.w3.org/TR/contact-picker/#abstract" } }, + "#acknowledgments": { + "current": { + "number": "9", + "spec": "Contact Picker API", + "text": "Acknowledgments", + "url": "https://w3c.github.io/contact-picker/#acknowledgments" + }, + "snapshot": { + "number": "9", + "spec": "Contact Picker API", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/contact-picker/#acknowledgments" + } + }, "#api": { "current": { - "number": "5", + "number": "6", "spec": "Contact Picker API", "text": "API Description", "url": "https://w3c.github.io/contact-picker/#api" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Contact Picker API", "text": "API Description", "url": "https://www.w3.org/TR/contact-picker/#api" @@ -29,13 +43,13 @@ }, "#contact-address": { "current": { - "number": "5.3", + "number": "6.3", "spec": "Contact Picker API", "text": "ContactAddress", "url": "https://w3c.github.io/contact-picker/#contact-address" }, "snapshot": { - "number": "5.3", + "number": "6.3", "spec": "Contact Picker API", "text": "ContactAddress", "url": "https://www.w3.org/TR/contact-picker/#contact-address" @@ -43,13 +57,13 @@ }, "#contact-picker": { "current": { - "number": "6", + "number": "7", "spec": "Contact Picker API", "text": "Contact Picker", "url": "https://w3c.github.io/contact-picker/#contact-picker" }, "snapshot": { - "number": "6", + "number": "7", "spec": "Contact Picker API", "text": "Contact Picker", "url": "https://www.w3.org/TR/contact-picker/#contact-picker" @@ -57,13 +71,13 @@ }, "#contact-property": { "current": { - "number": "5.2", + "number": "6.2", "spec": "Contact Picker API", "text": "ContactProperty", "url": "https://w3c.github.io/contact-picker/#contact-property" }, "snapshot": { - "number": "5.2", + "number": "6.2", "spec": "Contact Picker API", "text": "ContactProperty", "url": "https://www.w3.org/TR/contact-picker/#contact-property" @@ -71,13 +85,13 @@ }, "#contacts-manager": { "current": { - "number": "5.4", + "number": "6.4", "spec": "Contact Picker API", "text": "ContactsManager", "url": "https://w3c.github.io/contact-picker/#contacts-manager" }, "snapshot": { - "number": "5.4", + "number": "6.4", "spec": "Contact Picker API", "text": "ContactsManager", "url": "https://www.w3.org/TR/contact-picker/#contacts-manager" @@ -85,13 +99,13 @@ }, "#contacts-manager-getproperties": { "current": { - "number": "5.4.1", + "number": "6.4.1", "spec": "Contact Picker API", "text": "getProperties()", "url": "https://w3c.github.io/contact-picker/#contacts-manager-getproperties" }, "snapshot": { - "number": "5.4.1", + "number": "6.4.1", "spec": "Contact Picker API", "text": "getProperties()", "url": "https://www.w3.org/TR/contact-picker/#contacts-manager-getproperties" @@ -99,18 +113,32 @@ }, "#contacts-manager-select": { "current": { - "number": "5.4.2", + "number": "6.4.2", "spec": "Contact Picker API", "text": "select()", "url": "https://w3c.github.io/contact-picker/#contacts-manager-select" }, "snapshot": { - "number": "5.4.2", + "number": "6.4.2", "spec": "Contact Picker API", "text": "select()", "url": "https://www.w3.org/TR/contact-picker/#contacts-manager-select" } }, + "#creating-contactaddress": { + "current": { + "number": "8", + "spec": "Contact Picker API", + "text": "Creating a ContactAddress from user-provided input", + "url": "https://w3c.github.io/contact-picker/#creating-contactaddress" + }, + "snapshot": { + "number": "8", + "spec": "Contact Picker API", + "text": "Creating a ContactAddress from user-provided input", + "url": "https://www.w3.org/TR/contact-picker/#creating-contactaddress" + } + }, "#examples": { "current": { "number": "1.1", @@ -127,13 +155,13 @@ }, "#extensions-to-navigator": { "current": { - "number": "5.1", + "number": "6.1", "spec": "Contact Picker API", "text": "Extensions to Navigator", "url": "https://w3c.github.io/contact-picker/#extensions-to-navigator" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "Contact Picker API", "text": "Extensions to Navigator", "url": "https://www.w3.org/TR/contact-picker/#extensions-to-navigator" @@ -211,13 +239,13 @@ }, "#infrastructure": { "current": { - "number": "4", + "number": "5", "spec": "Contact Picker API", "text": "Infrastructure", "url": "https://w3c.github.io/contact-picker/#infrastructure" }, "snapshot": { - "number": "4", + "number": "5", "spec": "Contact Picker API", "text": "Infrastructure", "url": "https://www.w3.org/TR/contact-picker/#infrastructure" @@ -225,13 +253,13 @@ }, "#infrastructure-contacts-source": { "current": { - "number": "4.3", + "number": "5.3", "spec": "Contact Picker API", "text": "Contacts source", "url": "https://w3c.github.io/contact-picker/#infrastructure-contacts-source" }, "snapshot": { - "number": "4.3", + "number": "5.3", "spec": "Contact Picker API", "text": "Contacts source", "url": "https://www.w3.org/TR/contact-picker/#infrastructure-contacts-source" @@ -239,13 +267,13 @@ }, "#infrastructure-physical-address": { "current": { - "number": "4.1", + "number": "5.1", "spec": "Contact Picker API", "text": "Physical address", "url": "https://w3c.github.io/contact-picker/#infrastructure-physical-address" }, "snapshot": { - "number": "4.1", + "number": "5.1", "spec": "Contact Picker API", "text": "Physical address", "url": "https://www.w3.org/TR/contact-picker/#infrastructure-physical-address" @@ -253,13 +281,13 @@ }, "#infrastructure-user-contact": { "current": { - "number": "4.2", + "number": "5.2", "spec": "Contact Picker API", "text": "User contact", "url": "https://w3c.github.io/contact-picker/#infrastructure-user-contact" }, "snapshot": { - "number": "4.2", + "number": "5.2", "spec": "Contact Picker API", "text": "User contact", "url": "https://www.w3.org/TR/contact-picker/#infrastructure-user-contact" @@ -309,13 +337,13 @@ }, "#realms": { "current": { - "number": "3", + "number": "4", "spec": "Contact Picker API", "text": "Realms", "url": "https://w3c.github.io/contact-picker/#realms" }, "snapshot": { - "number": "3", + "number": "4", "spec": "Contact Picker API", "text": "Realms", "url": "https://www.w3.org/TR/contact-picker/#realms" @@ -335,6 +363,20 @@ "url": "https://www.w3.org/TR/contact-picker/#references" } }, + "#security-considerations": { + "current": { + "number": "3", + "spec": "Contact Picker API", + "text": "Security Considerations", + "url": "https://w3c.github.io/contact-picker/#security-considerations" + }, + "snapshot": { + "number": "3", + "spec": "Contact Picker API", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/contact-picker/#security-considerations" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-cookie-store.json b/bikeshed/spec-data/readonly/headings/headings-cookie-store.json index a2fa4a9292..d9972b2230 100644 --- a/bikeshed/spec-data/readonly/headings/headings-cookie-store.json +++ b/bikeshed/spec-data/readonly/headings/headings-cookie-store.json @@ -439,14 +439,6 @@ "url": "https://wicg.github.io/cookie-store/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Cookie Store API", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/cookie-store/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-core-aam-1.2.json b/bikeshed/spec-data/readonly/headings/headings-core-aam-1.2.json index e78ad2debc..86e2550ca3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-core-aam-1.2.json +++ b/bikeshed/spec-data/readonly/headings/headings-core-aam-1.2.json @@ -15,13 +15,13 @@ }, "#ack_funders": { "current": { - "number": "B.3", + "number": "B.2", "spec": "Core Accessibility API Mappings 1.2", "text": "Enabling funders", "url": "https://w3c.github.io/core-aam/#ack_funders" }, "snapshot": { - "number": "B.3", + "number": "B.2", "spec": "Core Accessibility API Mappings 1.2", "text": "Enabling funders", "url": "https://www.w3.org/TR/core-aam-1.2/#ack_funders" @@ -41,20 +41,6 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#ack_group" } }, - "#ack_others": { - "current": { - "number": "B.2", - "spec": "Core Accessibility API Mappings 1.2", - "text": "Other ARIA contributors, commenters, and previously active participants", - "url": "https://w3c.github.io/core-aam/#ack_others" - }, - "snapshot": { - "number": "B.2", - "spec": "Core Accessibility API Mappings 1.2", - "text": "Other ARIA contributors, commenters, and previously active participants", - "url": "https://www.w3.org/TR/core-aam-1.2/#ack_others" - } - }, "#acknowledgements": { "current": { "number": "B", @@ -69,502 +55,3036 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#acknowledgements" } }, - "#atk-at-spi": { + "#alert": { "current": { - "number": "1.2.1", + "number": "4.4.3.1", "spec": "Core Accessibility API Mappings 1.2", - "text": "ATK/AT-SPI", - "url": "https://w3c.github.io/core-aam/#atk-at-spi" + "text": "alert", + "url": "https://w3c.github.io/core-aam/#alert" }, "snapshot": { - "number": "1.2.1", + "number": "4.4.3.1", "spec": "Core Accessibility API Mappings 1.2", - "text": "ATK/AT-SPI", - "url": "https://www.w3.org/TR/core-aam-1.2/#atk-at-spi" + "text": "alert", + "url": "https://www.w3.org/TR/core-aam-1.2/#alert" } }, - "#changelog": { + "#alertdialog": { "current": { - "number": "A", + "number": "4.4.3.2", "spec": "Core Accessibility API Mappings 1.2", - "text": "Change Log", - "url": "https://w3c.github.io/core-aam/#changelog" + "text": "alertdialog", + "url": "https://w3c.github.io/core-aam/#alertdialog" }, "snapshot": { - "number": "A", + "number": "4.4.3.2", "spec": "Core Accessibility API Mappings 1.2", - "text": "Change Log", - "url": "https://www.w3.org/TR/core-aam-1.2/#changelog" + "text": "alertdialog", + "url": "https://www.w3.org/TR/core-aam-1.2/#alertdialog" } }, - "#comparing-accessibility-apis": { + "#application": { "current": { - "number": "1.2", + "number": "4.4.3.3", "spec": "Core Accessibility API Mappings 1.2", - "text": "Comparing Accessibility APIs", - "url": "https://w3c.github.io/core-aam/#comparing-accessibility-apis" + "text": "application", + "url": "https://w3c.github.io/core-aam/#application" }, "snapshot": { - "number": "1.2", + "number": "4.4.3.3", "spec": "Core Accessibility API Mappings 1.2", - "text": "Comparing Accessibility APIs", - "url": "https://www.w3.org/TR/core-aam-1.2/#comparing-accessibility-apis" + "text": "application", + "url": "https://www.w3.org/TR/core-aam-1.2/#application" } }, - "#conformance": { + "#aria-activedescendant": { "current": { - "number": "2", + "number": "4.5.2.2", "spec": "Core Accessibility API Mappings 1.2", - "text": "Conformance", - "url": "https://w3c.github.io/core-aam/#conformance" + "text": "aria-activedescendant", + "url": "https://w3c.github.io/core-aam/#aria-activedescendant" }, "snapshot": { - "number": "2", + "number": "4.5.2.2", "spec": "Core Accessibility API Mappings 1.2", - "text": "Conformance", - "url": "https://www.w3.org/TR/core-aam-1.2/#conformance" + "text": "aria-activedescendant", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-activedescendant" } }, - "#features-deprecated-in-wai-aria": { + "#aria-activedescendant-0": { "current": { - "number": "2.3", + "number": "4.8.1.1", "spec": "Core Accessibility API Mappings 1.2", - "text": "Features Deprecated in WAI-ARIA", - "url": "https://w3c.github.io/core-aam/#features-deprecated-in-wai-aria" + "text": "aria-activedescendant", + "url": "https://w3c.github.io/core-aam/#aria-activedescendant-0" }, "snapshot": { - "number": "2.3", + "number": "4.8.1.1", "spec": "Core Accessibility API Mappings 1.2", - "text": "Features Deprecated in WAI-ARIA", - "url": "https://www.w3.org/TR/core-aam-1.2/#features-deprecated-in-wai-aria" + "text": "aria-activedescendant", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-activedescendant-0" } }, - "#focus_state_event_table": { + "#aria-atomic-false": { "current": { - "number": "4.8.3", + "number": "4.5.2.4", "spec": "Core Accessibility API Mappings 1.2", - "text": "Focus Changes", - "url": "https://w3c.github.io/core-aam/#focus_state_event_table" + "text": "aria-atomic=false", + "url": "https://w3c.github.io/core-aam/#aria-atomic-false" }, "snapshot": { - "number": "4.8.3", + "number": "4.5.2.4", "spec": "Core Accessibility API Mappings 1.2", - "text": "Focus Changes", - "url": "https://www.w3.org/TR/core-aam-1.2/#focus_state_event_table" + "text": "aria-atomic=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-atomic-false" } }, - "#glossary": { + "#aria-atomic-true": { "current": { - "number": "3", + "number": "4.5.2.3", "spec": "Core Accessibility API Mappings 1.2", - "text": "Important Terms", - "url": "https://w3c.github.io/core-aam/#glossary" + "text": "aria-atomic=true", + "url": "https://w3c.github.io/core-aam/#aria-atomic-true" }, "snapshot": { - "number": "3", + "number": "4.5.2.3", "spec": "Core Accessibility API Mappings 1.2", - "text": "Important Terms", - "url": "https://www.w3.org/TR/core-aam-1.2/#glossary" + "text": "aria-atomic=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-atomic-true" } }, - "#informative-references": { + "#aria-autocomplete-inline-list-or-both": { "current": { - "number": "C.2", + "number": "4.5.2.5", "spec": "Core Accessibility API Mappings 1.2", - "text": "Informative references", - "url": "https://w3c.github.io/core-aam/#informative-references" + "text": "aria-autocomplete=inline, list, or both", + "url": "https://w3c.github.io/core-aam/#aria-autocomplete-inline-list-or-both" }, "snapshot": { - "number": "C.2", + "number": "4.5.2.5", "spec": "Core Accessibility API Mappings 1.2", - "text": "Informative references", - "url": "https://www.w3.org/TR/core-aam-1.2/#informative-references" + "text": "aria-autocomplete=inline, list, or both", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-autocomplete-inline-list-or-both" } }, - "#intro": { + "#aria-autocomplete-none": { "current": { - "number": "1", + "number": "4.5.2.6", "spec": "Core Accessibility API Mappings 1.2", - "text": "Introduction", - "url": "https://w3c.github.io/core-aam/#intro" + "text": "aria-autocomplete=none", + "url": "https://w3c.github.io/core-aam/#aria-autocomplete-none" }, "snapshot": { - "number": "1", + "number": "4.5.2.6", "spec": "Core Accessibility API Mappings 1.2", - "text": "Introduction", - "url": "https://www.w3.org/TR/core-aam-1.2/#intro" + "text": "aria-autocomplete=none", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-autocomplete-none" } }, - "#intro_aapi": { + "#aria-braillelabel": { "current": { - "number": "1.1", + "number": "4.5.2.7", "spec": "Core Accessibility API Mappings 1.2", - "text": "Accessibility APIs", - "url": "https://w3c.github.io/core-aam/#intro_aapi" + "text": "aria-braillelabel", + "url": "https://w3c.github.io/core-aam/#aria-braillelabel" }, "snapshot": { - "number": "1.1", + "number": "4.5.2.7", "spec": "Core Accessibility API Mappings 1.2", - "text": "Accessibility APIs", - "url": "https://www.w3.org/TR/core-aam-1.2/#intro_aapi" + "text": "aria-braillelabel", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-braillelabel" } }, - "#mapping": { + "#aria-brailleroledescription": { "current": { - "number": "4", + "number": "4.5.2.8", "spec": "Core Accessibility API Mappings 1.2", - "text": "Mapping WAI-ARIA to Accessibility APIs", - "url": "https://w3c.github.io/core-aam/#mapping" + "text": "aria-brailleroledescription", + "url": "https://w3c.github.io/core-aam/#aria-brailleroledescription" }, "snapshot": { - "number": "4", + "number": "4.5.2.8", "spec": "Core Accessibility API Mappings 1.2", - "text": "Mapping WAI-ARIA to Accessibility APIs", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping" + "text": "aria-brailleroledescription", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-brailleroledescription" } }, - "#mapping_actions": { + "#aria-brailleroledescription-is-undefined-or-the-empty-string": { "current": { - "number": "4.7", + "number": "4.5.2.9", "spec": "Core Accessibility API Mappings 1.2", - "text": "Actions", - "url": "https://w3c.github.io/core-aam/#mapping_actions" + "text": "aria-brailleroledescription is undefined or the empty string", + "url": "https://w3c.github.io/core-aam/#aria-brailleroledescription-is-undefined-or-the-empty-string" }, "snapshot": { - "number": "4.7", + "number": "4.5.2.9", "spec": "Core Accessibility API Mappings 1.2", - "text": "Actions", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_actions" + "text": "aria-brailleroledescription is undefined or the empty string", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-brailleroledescription-is-undefined-or-the-empty-string" } }, - "#mapping_additional": { + "#aria-busy-false": { "current": { - "number": "4.6", + "number": "4.5.2.11", "spec": "Core Accessibility API Mappings 1.2", - "text": "Special Processing Requiring Additional Computation", - "url": "https://w3c.github.io/core-aam/#mapping_additional" + "text": "aria-busy=false", + "url": "https://w3c.github.io/core-aam/#aria-busy-false" }, "snapshot": { - "number": "4.6", + "number": "4.5.2.11", "spec": "Core Accessibility API Mappings 1.2", - "text": "Special Processing Requiring Additional Computation", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional" + "text": "aria-busy=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-busy-false" } }, - "#mapping_additional_nd": { + "#aria-busy-state": { "current": { - "number": "4.6.1", + "number": "4.8.1.2", "spec": "Core Accessibility API Mappings 1.2", - "text": "Name and Description", - "url": "https://w3c.github.io/core-aam/#mapping_additional_nd" + "text": "aria-busy (state)", + "url": "https://w3c.github.io/core-aam/#aria-busy-state" }, "snapshot": { - "number": "4.6.1", + "number": "4.8.1.2", "spec": "Core Accessibility API Mappings 1.2", - "text": "Name and Description", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_nd" + "text": "aria-busy (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-busy-state" } }, - "#mapping_additional_position": { + "#aria-busy-true": { "current": { - "number": "4.6.3", + "number": "4.5.2.10", "spec": "Core Accessibility API Mappings 1.2", - "text": "Group Position", - "url": "https://w3c.github.io/core-aam/#mapping_additional_position" + "text": "aria-busy=true", + "url": "https://w3c.github.io/core-aam/#aria-busy-true" }, "snapshot": { - "number": "4.6.3", + "number": "4.5.2.10", "spec": "Core Accessibility API Mappings 1.2", - "text": "Group Position", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_position" + "text": "aria-busy=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-busy-true" } }, - "#mapping_additional_relations": { + "#aria-checked-false": { "current": { - "number": "4.6.2", + "number": "4.5.2.13", "spec": "Core Accessibility API Mappings 1.2", - "text": "Relations", - "url": "https://w3c.github.io/core-aam/#mapping_additional_relations" + "text": "aria-checked=false", + "url": "https://w3c.github.io/core-aam/#aria-checked-false" }, "snapshot": { - "number": "4.6.2", + "number": "4.5.2.13", "spec": "Core Accessibility API Mappings 1.2", - "text": "Relations", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_relations" + "text": "aria-checked=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-checked-false" } }, - "#mapping_additional_relations_implied": { + "#aria-checked-is-undefined": { "current": { - "number": "4.6.2.2", + "number": "4.5.2.15", "spec": "Core Accessibility API Mappings 1.2", - "text": "Implied reverse relations", - "url": "https://w3c.github.io/core-aam/#mapping_additional_relations_implied" + "text": "aria-checked is undefined", + "url": "https://w3c.github.io/core-aam/#aria-checked-is-undefined" }, "snapshot": { - "number": "4.6.2.2", + "number": "4.5.2.15", "spec": "Core Accessibility API Mappings 1.2", - "text": "Implied reverse relations", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_relations_implied" + "text": "aria-checked is undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-checked-is-undefined" } }, - "#mapping_additional_relations_reverse_relations": { + "#aria-checked-mixed": { "current": { - "number": "4.6.2.1", + "number": "4.5.2.14", "spec": "Core Accessibility API Mappings 1.2", - "text": "Reverse Relations", - "url": "https://w3c.github.io/core-aam/#mapping_additional_relations_reverse_relations" + "text": "aria-checked=mixed", + "url": "https://w3c.github.io/core-aam/#aria-checked-mixed" }, "snapshot": { - "number": "4.6.2.1", + "number": "4.5.2.14", "spec": "Core Accessibility API Mappings 1.2", - "text": "Reverse Relations", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_relations_reverse_relations" + "text": "aria-checked=mixed", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-checked-mixed" } }, - "#mapping_conflicts": { + "#aria-checked-state": { "current": { - "number": "4.2", + "number": "4.8.1.3", "spec": "Core Accessibility API Mappings 1.2", - "text": "Conflicts between native markup semantics and WAI-ARIA", - "url": "https://w3c.github.io/core-aam/#mapping_conflicts" + "text": "aria-checked (state)", + "url": "https://w3c.github.io/core-aam/#aria-checked-state" }, "snapshot": { - "number": "4.2", + "number": "4.8.1.3", "spec": "Core Accessibility API Mappings 1.2", - "text": "Conflicts between native markup semantics and WAI-ARIA", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_conflicts" + "text": "aria-checked (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-checked-state" } }, - "#mapping_events": { + "#aria-checked-true": { "current": { - "number": "4.8", + "number": "4.5.2.12", "spec": "Core Accessibility API Mappings 1.2", - "text": "Events", - "url": "https://w3c.github.io/core-aam/#mapping_events" + "text": "aria-checked=true", + "url": "https://w3c.github.io/core-aam/#aria-checked-true" }, "snapshot": { - "number": "4.8", + "number": "4.5.2.12", "spec": "Core Accessibility API Mappings 1.2", - "text": "Events", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events" + "text": "aria-checked=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-checked-true" } }, - "#mapping_events_menus": { + "#aria-colcount": { "current": { - "number": "4.8.5", + "number": "4.5.2.16", "spec": "Core Accessibility API Mappings 1.2", - "text": "Special Events for Menus", - "url": "https://w3c.github.io/core-aam/#mapping_events_menus" + "text": "aria-colcount", + "url": "https://w3c.github.io/core-aam/#aria-colcount" }, "snapshot": { - "number": "4.8.5", + "number": "4.5.2.16", "spec": "Core Accessibility API Mappings 1.2", - "text": "Special Events for Menus", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_menus" + "text": "aria-colcount", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-colcount" } }, - "#mapping_events_selection": { + "#aria-colindex": { "current": { - "number": "4.8.4", + "number": "4.5.2.17", "spec": "Core Accessibility API Mappings 1.2", - "text": "Selection", - "url": "https://w3c.github.io/core-aam/#mapping_events_selection" + "text": "aria-colindex", + "url": "https://w3c.github.io/core-aam/#aria-colindex" }, "snapshot": { - "number": "4.8.4", + "number": "4.5.2.17", "spec": "Core Accessibility API Mappings 1.2", - "text": "Selection", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_selection" + "text": "aria-colindex", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-colindex" } }, - "#mapping_events_state-change": { + "#aria-colindextext": { "current": { - "number": "4.8.1", + "number": "4.5.2.18", "spec": "Core Accessibility API Mappings 1.2", - "text": "State and Property Change Events", - "url": "https://w3c.github.io/core-aam/#mapping_events_state-change" + "text": "aria-colindextext", + "url": "https://w3c.github.io/core-aam/#aria-colindextext" }, "snapshot": { - "number": "4.8.1", + "number": "4.5.2.18", "spec": "Core Accessibility API Mappings 1.2", - "text": "State and Property Change Events", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_state-change" + "text": "aria-colindextext", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-colindextext" } }, - "#mapping_events_visibility": { + "#aria-colspan": { "current": { - "number": "4.8.2", + "number": "4.5.2.19", "spec": "Core Accessibility API Mappings 1.2", - "text": "Changes to document content or node visibility", - "url": "https://w3c.github.io/core-aam/#mapping_events_visibility" + "text": "aria-colspan", + "url": "https://w3c.github.io/core-aam/#aria-colspan" }, "snapshot": { - "number": "4.8.2", + "number": "4.5.2.19", "spec": "Core Accessibility API Mappings 1.2", - "text": "Changes to document content or node visibility", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_visibility" + "text": "aria-colspan", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-colspan" } }, - "#mapping_general": { + "#aria-controls": { "current": { - "number": "4.1", + "number": "4.5.2.20", "spec": "Core Accessibility API Mappings 1.2", - "text": "General rules for exposing WAI-ARIA semantics", - "url": "https://w3c.github.io/core-aam/#mapping_general" + "text": "aria-controls", + "url": "https://w3c.github.io/core-aam/#aria-controls" }, "snapshot": { - "number": "4.1", + "number": "4.5.2.20", "spec": "Core Accessibility API Mappings 1.2", - "text": "General rules for exposing WAI-ARIA semantics", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_general" + "text": "aria-controls", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-controls" } }, - "#mapping_nodirect": { + "#aria-current-is-false-or-undefined": { "current": { - "number": "4.3", + "number": "4.5.2.23", "spec": "Core Accessibility API Mappings 1.2", - "text": "Exposing attributes that do not directly map to accessibility API properties", - "url": "https://w3c.github.io/core-aam/#mapping_nodirect" + "text": "aria-current is false or undefined", + "url": "https://w3c.github.io/core-aam/#aria-current-is-false-or-undefined" }, "snapshot": { - "number": "4.3", + "number": "4.5.2.23", "spec": "Core Accessibility API Mappings 1.2", - "text": "Exposing attributes that do not directly map to accessibility API properties", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_nodirect" + "text": "aria-current is false or undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-current-is-false-or-undefined" } }, - "#mapping_role": { + "#aria-current-state": { "current": { - "number": "4.4", + "number": "4.8.1.4", "spec": "Core Accessibility API Mappings 1.2", - "text": "Role mapping", - "url": "https://w3c.github.io/core-aam/#mapping_role" + "text": "aria-current (state)", + "url": "https://w3c.github.io/core-aam/#aria-current-state" }, "snapshot": { - "number": "4.4", + "number": "4.8.1.4", "spec": "Core Accessibility API Mappings 1.2", - "text": "Role mapping", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_role" + "text": "aria-current (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-current-state" } }, - "#mapping_role_table": { + "#aria-current-with-non-false-allowed-value": { "current": { - "number": "4.4.2", + "number": "4.5.2.21", "spec": "Core Accessibility API Mappings 1.2", - "text": "Role Mapping Table", - "url": "https://w3c.github.io/core-aam/#mapping_role_table" + "text": "aria-current with non-false allowed value", + "url": "https://w3c.github.io/core-aam/#aria-current-with-non-false-allowed-value" }, "snapshot": { - "number": "4.4.2", + "number": "4.5.2.21", "spec": "Core Accessibility API Mappings 1.2", - "text": "Role Mapping Table", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_role_table" + "text": "aria-current with non-false allowed value", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-current-with-non-false-allowed-value" } }, - "#mapping_state-property": { + "#aria-current-with-unrecognized-value": { "current": { - "number": "4.5", + "number": "4.5.2.22", "spec": "Core Accessibility API Mappings 1.2", - "text": "State and Property Mapping", - "url": "https://w3c.github.io/core-aam/#mapping_state-property" + "text": "aria-current with unrecognized value", + "url": "https://w3c.github.io/core-aam/#aria-current-with-unrecognized-value" }, "snapshot": { - "number": "4.5", + "number": "4.5.2.22", "spec": "Core Accessibility API Mappings 1.2", - "text": "State and Property Mapping", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_state-property" + "text": "aria-current with unrecognized value", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-current-with-unrecognized-value" } }, - "#mapping_state-property_table": { + "#aria-describedby": { "current": { - "number": "4.5.2", + "number": "4.5.2.24", "spec": "Core Accessibility API Mappings 1.2", - "text": "State and Property Mapping Table", - "url": "https://w3c.github.io/core-aam/#mapping_state-property_table" + "text": "aria-describedby", + "url": "https://w3c.github.io/core-aam/#aria-describedby" }, "snapshot": { - "number": "4.5.2", + "number": "4.5.2.24", "spec": "Core Accessibility API Mappings 1.2", - "text": "State and Property Mapping Table", - "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_state-property_table" + "text": "aria-describedby", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-describedby" } }, - "#normative-and-informative-sections": { + "#aria-describedby-0": { "current": { - "number": "2.2", + "number": "4.8.1.6", "spec": "Core Accessibility API Mappings 1.2", - "text": "Normative and Informative Sections", - "url": "https://w3c.github.io/core-aam/#normative-and-informative-sections" + "text": "aria-describedby", + "url": "https://w3c.github.io/core-aam/#aria-describedby-0" }, "snapshot": { - "number": "2.2", + "number": "4.8.1.6", "spec": "Core Accessibility API Mappings 1.2", - "text": "Normative and Informative Sections", - "url": "https://www.w3.org/TR/core-aam-1.2/#normative-and-informative-sections" + "text": "aria-describedby", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-describedby-0" } }, - "#normative-references": { + "#aria-description": { "current": { - "number": "C.1", + "number": "4.5.2.25", "spec": "Core Accessibility API Mappings 1.2", - "text": "Normative references", - "url": "https://w3c.github.io/core-aam/#normative-references" + "text": "aria-description", + "url": "https://w3c.github.io/core-aam/#aria-description" }, "snapshot": { - "number": "C.1", + "number": "4.5.2.25", "spec": "Core Accessibility API Mappings 1.2", - "text": "Normative references", - "url": "https://www.w3.org/TR/core-aam-1.2/#normative-references" + "text": "aria-description", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-description" } }, - "#not_mapped": { + "#aria-details": { "current": { - "number": "4.5.2.1", + "number": "4.5.2.26", "spec": "Core Accessibility API Mappings 1.2", - "text": "Not Mapped", - "url": "https://w3c.github.io/core-aam/#not_mapped" + "text": "aria-details", + "url": "https://w3c.github.io/core-aam/#aria-details" }, "snapshot": { - "number": "4.5.2.1", + "number": "4.5.2.26", "spec": "Core Accessibility API Mappings 1.2", - "text": "Not Mapped", - "url": "https://www.w3.org/TR/core-aam-1.2/#not_mapped" + "text": "aria-details", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-details" } }, - "#privacy-considerations": { + "#aria-disabled-false": { "current": { - "number": "5", + "number": "4.5.2.28", "spec": "Core Accessibility API Mappings 1.2", - "text": "Privacy considerations", - "url": "https://w3c.github.io/core-aam/#privacy-considerations" + "text": "aria-disabled=false", + "url": "https://w3c.github.io/core-aam/#aria-disabled-false" }, "snapshot": { - "number": "5", + "number": "4.5.2.28", "spec": "Core Accessibility API Mappings 1.2", - "text": "Privacy considerations", - "url": "https://www.w3.org/TR/core-aam-1.2/#privacy-considerations" + "text": "aria-disabled=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-disabled-false" } }, - "#references": { + "#aria-disabled-state": { "current": { - "number": "C", + "number": "4.8.1.5", "spec": "Core Accessibility API Mappings 1.2", - "text": "References", - "url": "https://w3c.github.io/core-aam/#references" + "text": "aria-disabled (state)", + "url": "https://w3c.github.io/core-aam/#aria-disabled-state" }, "snapshot": { - "number": "C", + "number": "4.8.1.5", "spec": "Core Accessibility API Mappings 1.2", - "text": "References", - "url": "https://www.w3.org/TR/core-aam-1.2/#references" + "text": "aria-disabled (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-disabled-state" } }, - "#rfc-2119-keywords": { + "#aria-disabled-true": { "current": { - "number": "2.1", + "number": "4.5.2.27", "spec": "Core Accessibility API Mappings 1.2", - "text": "RFC-2119 Keywords", - "url": "https://w3c.github.io/core-aam/#rfc-2119-keywords" + "text": "aria-disabled=true", + "url": "https://w3c.github.io/core-aam/#aria-disabled-true" + }, + "snapshot": { + "number": "4.5.2.27", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-disabled=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-disabled-true" + } + }, + "#aria-dropeffect-copy-move-link-execute-or-popup": { + "current": { + "number": "4.5.2.29", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-dropeffect=copy, move, link, execute, or popup", + "url": "https://w3c.github.io/core-aam/#aria-dropeffect-copy-move-link-execute-or-popup" + }, + "snapshot": { + "number": "4.5.2.29", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-dropeffect=copy, move, link, execute, or popup", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-dropeffect-copy-move-link-execute-or-popup" + } + }, + "#aria-dropeffect-none": { + "current": { + "number": "4.5.2.30", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-dropeffect=none", + "url": "https://w3c.github.io/core-aam/#aria-dropeffect-none" + }, + "snapshot": { + "number": "4.5.2.30", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-dropeffect=none", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-dropeffect-none" + } + }, + "#aria-dropeffect-property-deprecated": { + "current": { + "number": "4.8.1.7", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-dropeffect (property, deprecated)", + "url": "https://w3c.github.io/core-aam/#aria-dropeffect-property-deprecated" + }, + "snapshot": { + "number": "4.8.1.7", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-dropeffect (property, deprecated)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-dropeffect-property-deprecated" + } + }, + "#aria-errormessage": { + "current": { + "number": "4.5.2.31", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-errormessage", + "url": "https://w3c.github.io/core-aam/#aria-errormessage" + }, + "snapshot": { + "number": "4.5.2.31", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-errormessage", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-errormessage" + } + }, + "#aria-expanded-false": { + "current": { + "number": "4.5.2.33", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded=false", + "url": "https://w3c.github.io/core-aam/#aria-expanded-false" + }, + "snapshot": { + "number": "4.5.2.33", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-expanded-false" + } + }, + "#aria-expanded-is-undefined": { + "current": { + "number": "4.5.2.34", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded is undefined", + "url": "https://w3c.github.io/core-aam/#aria-expanded-is-undefined" + }, + "snapshot": { + "number": "4.5.2.34", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded is undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-expanded-is-undefined" + } + }, + "#aria-expanded-state": { + "current": { + "number": "4.8.1.8", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded (state)", + "url": "https://w3c.github.io/core-aam/#aria-expanded-state" + }, + "snapshot": { + "number": "4.8.1.8", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-expanded-state" + } + }, + "#aria-expanded-true": { + "current": { + "number": "4.5.2.32", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded=true", + "url": "https://w3c.github.io/core-aam/#aria-expanded-true" + }, + "snapshot": { + "number": "4.5.2.32", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-expanded=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-expanded-true" + } + }, + "#aria-flowto": { + "current": { + "number": "4.5.2.35", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-flowto", + "url": "https://w3c.github.io/core-aam/#aria-flowto" + }, + "snapshot": { + "number": "4.5.2.35", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-flowto", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-flowto" + } + }, + "#aria-grabbed-false": { + "current": { + "number": "4.5.2.37", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed=false", + "url": "https://w3c.github.io/core-aam/#aria-grabbed-false" + }, + "snapshot": { + "number": "4.5.2.37", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-grabbed-false" + } + }, + "#aria-grabbed-is-undefined": { + "current": { + "number": "4.5.2.38", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed is undefined", + "url": "https://w3c.github.io/core-aam/#aria-grabbed-is-undefined" + }, + "snapshot": { + "number": "4.5.2.38", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed is undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-grabbed-is-undefined" + } + }, + "#aria-grabbed-state-deprecated": { + "current": { + "number": "4.8.1.9", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed (state, deprecated)", + "url": "https://w3c.github.io/core-aam/#aria-grabbed-state-deprecated" + }, + "snapshot": { + "number": "4.8.1.9", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed (state, deprecated)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-grabbed-state-deprecated" + } + }, + "#aria-grabbed-true": { + "current": { + "number": "4.5.2.36", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed=true", + "url": "https://w3c.github.io/core-aam/#aria-grabbed-true" + }, + "snapshot": { + "number": "4.5.2.36", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-grabbed=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-grabbed-true" + } + }, + "#aria-haspopup-dialog": { + "current": { + "number": "4.5.2.41", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=dialog", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-dialog" + }, + "snapshot": { + "number": "4.5.2.41", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=dialog", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-dialog" + } + }, + "#aria-haspopup-false": { + "current": { + "number": "4.5.2.40", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=false", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-false" + }, + "snapshot": { + "number": "4.5.2.40", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-false" + } + }, + "#aria-haspopup-grid": { + "current": { + "number": "4.5.2.42", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=grid", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-grid" + }, + "snapshot": { + "number": "4.5.2.42", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=grid", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-grid" + } + }, + "#aria-haspopup-listbox": { + "current": { + "number": "4.5.2.43", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=listbox", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-listbox" + }, + "snapshot": { + "number": "4.5.2.43", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=listbox", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-listbox" + } + }, + "#aria-haspopup-menu": { + "current": { + "number": "4.5.2.44", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=menu", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-menu" + }, + "snapshot": { + "number": "4.5.2.44", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=menu", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-menu" + } + }, + "#aria-haspopup-tree": { + "current": { + "number": "4.5.2.45", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=tree", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-tree" + }, + "snapshot": { + "number": "4.5.2.45", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=tree", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-tree" + } + }, + "#aria-haspopup-true": { + "current": { + "number": "4.5.2.39", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=true", + "url": "https://w3c.github.io/core-aam/#aria-haspopup-true" + }, + "snapshot": { + "number": "4.5.2.39", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-haspopup=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-haspopup-true" + } + }, + "#aria-hidden-false": { + "current": { + "number": "4.5.2.48", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden=false", + "url": "https://w3c.github.io/core-aam/#aria-hidden-false" + }, + "snapshot": { + "number": "4.5.2.48", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-hidden-false" + } + }, + "#aria-hidden-state": { + "current": { + "number": "4.8.1.10", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden (state)", + "url": "https://w3c.github.io/core-aam/#aria-hidden-state" + }, + "snapshot": { + "number": "4.8.1.10", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-hidden-state" + } + }, + "#aria-hidden-true-on-unfocused-element": { + "current": { + "number": "4.5.2.46", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden=true on unfocused element", + "url": "https://w3c.github.io/core-aam/#aria-hidden-true-on-unfocused-element" + }, + "snapshot": { + "number": "4.5.2.46", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden=true on unfocused element", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-hidden-true-on-unfocused-element" + } + }, + "#aria-hidden-true-when-element-is-focused-or-fires-an-accessibility-event": { + "current": { + "number": "4.5.2.47", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden=true when element is focused or fires an accessibility event", + "url": "https://w3c.github.io/core-aam/#aria-hidden-true-when-element-is-focused-or-fires-an-accessibility-event" + }, + "snapshot": { + "number": "4.5.2.47", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-hidden=true when element is focused or fires an accessibility event", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-hidden-true-when-element-is-focused-or-fires-an-accessibility-event" + } + }, + "#aria-invalid-false": { + "current": { + "number": "4.5.2.50", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid=false", + "url": "https://w3c.github.io/core-aam/#aria-invalid-false" + }, + "snapshot": { + "number": "4.5.2.50", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-invalid-false" + } + }, + "#aria-invalid-spelling-or-grammar": { + "current": { + "number": "4.5.2.51", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid=spelling or grammar", + "url": "https://w3c.github.io/core-aam/#aria-invalid-spelling-or-grammar" + }, + "snapshot": { + "number": "4.5.2.51", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid=spelling or grammar", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-invalid-spelling-or-grammar" + } + }, + "#aria-invalid-state": { + "current": { + "number": "4.8.1.11", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid (state)", + "url": "https://w3c.github.io/core-aam/#aria-invalid-state" + }, + "snapshot": { + "number": "4.8.1.11", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-invalid-state" + } + }, + "#aria-invalid-true": { + "current": { + "number": "4.5.2.49", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid=true", + "url": "https://w3c.github.io/core-aam/#aria-invalid-true" + }, + "snapshot": { + "number": "4.5.2.49", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-invalid-true" + } + }, + "#aria-invalid-with-unrecognized-value": { + "current": { + "number": "4.5.2.52", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid with unrecognized value", + "url": "https://w3c.github.io/core-aam/#aria-invalid-with-unrecognized-value" + }, + "snapshot": { + "number": "4.5.2.52", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-invalid with unrecognized value", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-invalid-with-unrecognized-value" + } + }, + "#aria-keyshortcuts": { + "current": { + "number": "4.5.2.53", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-keyshortcuts", + "url": "https://w3c.github.io/core-aam/#aria-keyshortcuts" + }, + "snapshot": { + "number": "4.5.2.53", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-keyshortcuts", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-keyshortcuts" + } + }, + "#aria-label": { + "current": { + "number": "4.5.2.54", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-label", + "url": "https://w3c.github.io/core-aam/#aria-label" + }, + "snapshot": { + "number": "4.5.2.54", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-label", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-label" + } + }, + "#aria-label-and-aria-labelledby": { + "current": { + "number": "4.8.1.12", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-label and aria-labelledby", + "url": "https://w3c.github.io/core-aam/#aria-label-and-aria-labelledby" + }, + "snapshot": { + "number": "4.8.1.12", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-label and aria-labelledby", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-label-and-aria-labelledby" + } + }, + "#aria-labelledby": { + "current": { + "number": "4.5.2.55", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-labelledby", + "url": "https://w3c.github.io/core-aam/#aria-labelledby" + }, + "snapshot": { + "number": "4.5.2.55", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-labelledby", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-labelledby" + } + }, + "#aria-level-on-heading": { + "current": { + "number": "4.5.2.57", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-level on heading", + "url": "https://w3c.github.io/core-aam/#aria-level-on-heading" + }, + "snapshot": { + "number": "4.5.2.57", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-level on heading", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-level-on-heading" + } + }, + "#aria-level-on-non-heading": { + "current": { + "number": "4.5.2.56", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-level on non-heading", + "url": "https://w3c.github.io/core-aam/#aria-level-on-non-heading" + }, + "snapshot": { + "number": "4.5.2.56", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-level on non-heading", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-level-on-non-heading" + } + }, + "#aria-live-assertive": { + "current": { + "number": "4.5.2.58", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-live=assertive", + "url": "https://w3c.github.io/core-aam/#aria-live-assertive" + }, + "snapshot": { + "number": "4.5.2.58", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-live=assertive", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-live-assertive" + } + }, + "#aria-live-off": { + "current": { + "number": "4.5.2.60", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-live=off", + "url": "https://w3c.github.io/core-aam/#aria-live-off" + }, + "snapshot": { + "number": "4.5.2.60", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-live=off", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-live-off" + } + }, + "#aria-live-polite": { + "current": { + "number": "4.5.2.59", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-live=polite", + "url": "https://w3c.github.io/core-aam/#aria-live-polite" + }, + "snapshot": { + "number": "4.5.2.59", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-live=polite", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-live-polite" + } + }, + "#aria-modal-false": { + "current": { + "number": "4.5.2.62", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-modal=false", + "url": "https://w3c.github.io/core-aam/#aria-modal-false" + }, + "snapshot": { + "number": "4.5.2.62", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-modal=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-modal-false" + } + }, + "#aria-modal-true": { + "current": { + "number": "4.5.2.61", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-modal=true", + "url": "https://w3c.github.io/core-aam/#aria-modal-true" + }, + "snapshot": { + "number": "4.5.2.61", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-modal=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-modal-true" + } + }, + "#aria-multiline-false": { + "current": { + "number": "4.5.2.64", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiline=false", + "url": "https://w3c.github.io/core-aam/#aria-multiline-false" + }, + "snapshot": { + "number": "4.5.2.64", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiline=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-multiline-false" + } + }, + "#aria-multiline-true": { + "current": { + "number": "4.5.2.63", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiline=true", + "url": "https://w3c.github.io/core-aam/#aria-multiline-true" + }, + "snapshot": { + "number": "4.5.2.63", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiline=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-multiline-true" + } + }, + "#aria-multiselectable-false": { + "current": { + "number": "4.5.2.66", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiselectable=false", + "url": "https://w3c.github.io/core-aam/#aria-multiselectable-false" + }, + "snapshot": { + "number": "4.5.2.66", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiselectable=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-multiselectable-false" + } + }, + "#aria-multiselectable-true": { + "current": { + "number": "4.5.2.65", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiselectable=true", + "url": "https://w3c.github.io/core-aam/#aria-multiselectable-true" + }, + "snapshot": { + "number": "4.5.2.65", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-multiselectable=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-multiselectable-true" + } + }, + "#aria-orientation-horizontal": { + "current": { + "number": "4.5.2.67", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-orientation=horizontal", + "url": "https://w3c.github.io/core-aam/#aria-orientation-horizontal" + }, + "snapshot": { + "number": "4.5.2.67", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-orientation=horizontal", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-orientation-horizontal" + } + }, + "#aria-orientation-is-undefined": { + "current": { + "number": "4.5.2.69", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-orientation is undefined", + "url": "https://w3c.github.io/core-aam/#aria-orientation-is-undefined" + }, + "snapshot": { + "number": "4.5.2.69", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-orientation is undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-orientation-is-undefined" + } + }, + "#aria-orientation-vertical": { + "current": { + "number": "4.5.2.68", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-orientation=vertical", + "url": "https://w3c.github.io/core-aam/#aria-orientation-vertical" + }, + "snapshot": { + "number": "4.5.2.68", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-orientation=vertical", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-orientation-vertical" + } + }, + "#aria-owns": { + "current": { + "number": "4.5.2.70", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-owns", + "url": "https://w3c.github.io/core-aam/#aria-owns" + }, + "snapshot": { + "number": "4.5.2.70", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-owns", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-owns" + } + }, + "#aria-placeholder": { + "current": { + "number": "4.5.2.71", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-placeholder", + "url": "https://w3c.github.io/core-aam/#aria-placeholder" + }, + "snapshot": { + "number": "4.5.2.71", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-placeholder", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-placeholder" + } + }, + "#aria-posinset": { + "current": { + "number": "4.5.2.72", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-posinset", + "url": "https://w3c.github.io/core-aam/#aria-posinset" + }, + "snapshot": { + "number": "4.5.2.72", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-posinset", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-posinset" + } + }, + "#aria-pressed-false": { + "current": { + "number": "4.5.2.75", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed=false", + "url": "https://w3c.github.io/core-aam/#aria-pressed-false" + }, + "snapshot": { + "number": "4.5.2.75", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-pressed-false" + } + }, + "#aria-pressed-is-undefined": { + "current": { + "number": "4.5.2.76", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed is undefined", + "url": "https://w3c.github.io/core-aam/#aria-pressed-is-undefined" + }, + "snapshot": { + "number": "4.5.2.76", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed is undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-pressed-is-undefined" + } + }, + "#aria-pressed-mixed": { + "current": { + "number": "4.5.2.74", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed=mixed", + "url": "https://w3c.github.io/core-aam/#aria-pressed-mixed" + }, + "snapshot": { + "number": "4.5.2.74", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed=mixed", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-pressed-mixed" + } + }, + "#aria-pressed-state": { + "current": { + "number": "4.8.1.13", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed (state)", + "url": "https://w3c.github.io/core-aam/#aria-pressed-state" + }, + "snapshot": { + "number": "4.8.1.13", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-pressed-state" + } + }, + "#aria-pressed-true": { + "current": { + "number": "4.5.2.73", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed=true", + "url": "https://w3c.github.io/core-aam/#aria-pressed-true" + }, + "snapshot": { + "number": "4.5.2.73", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-pressed=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-pressed-true" + } + }, + "#aria-readonly": { + "current": { + "number": "4.8.1.14", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly", + "url": "https://w3c.github.io/core-aam/#aria-readonly" + }, + "snapshot": { + "number": "4.8.1.14", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-readonly" + } + }, + "#aria-readonly-false": { + "current": { + "number": "4.5.2.78", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly=false", + "url": "https://w3c.github.io/core-aam/#aria-readonly-false" + }, + "snapshot": { + "number": "4.5.2.78", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-readonly-false" + } + }, + "#aria-readonly-is-unspecified-on-gridcell": { + "current": { + "number": "4.5.2.79", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly is unspecified on gridcell", + "url": "https://w3c.github.io/core-aam/#aria-readonly-is-unspecified-on-gridcell" + }, + "snapshot": { + "number": "4.5.2.79", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly is unspecified on gridcell", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-readonly-is-unspecified-on-gridcell" + } + }, + "#aria-readonly-true": { + "current": { + "number": "4.5.2.77", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly=true", + "url": "https://w3c.github.io/core-aam/#aria-readonly-true" + }, + "snapshot": { + "number": "4.5.2.77", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-readonly=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-readonly-true" + } + }, + "#aria-relevant": { + "current": { + "number": "4.5.2.80", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-relevant", + "url": "https://w3c.github.io/core-aam/#aria-relevant" + }, + "snapshot": { + "number": "4.5.2.80", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-relevant", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-relevant" + } + }, + "#aria-required": { + "current": { + "number": "4.8.1.15", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-required", + "url": "https://w3c.github.io/core-aam/#aria-required" + }, + "snapshot": { + "number": "4.8.1.15", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-required", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-required" + } + }, + "#aria-required-false": { + "current": { + "number": "4.5.2.82", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-required=false", + "url": "https://w3c.github.io/core-aam/#aria-required-false" + }, + "snapshot": { + "number": "4.5.2.82", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-required=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-required-false" + } + }, + "#aria-required-true": { + "current": { + "number": "4.5.2.81", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-required=true", + "url": "https://w3c.github.io/core-aam/#aria-required-true" + }, + "snapshot": { + "number": "4.5.2.81", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-required=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-required-true" + } + }, + "#aria-roledescription": { + "current": { + "number": "4.5.2.83", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-roledescription", + "url": "https://w3c.github.io/core-aam/#aria-roledescription" + }, + "snapshot": { + "number": "4.5.2.83", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-roledescription", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-roledescription" + } + }, + "#aria-roledescription-is-undefined-or-the-empty-string": { + "current": { + "number": "4.5.2.84", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-roledescription is undefined or the empty string", + "url": "https://w3c.github.io/core-aam/#aria-roledescription-is-undefined-or-the-empty-string" + }, + "snapshot": { + "number": "4.5.2.84", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-roledescription is undefined or the empty string", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-roledescription-is-undefined-or-the-empty-string" + } + }, + "#aria-rowcount": { + "current": { + "number": "4.5.2.85", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowcount", + "url": "https://w3c.github.io/core-aam/#aria-rowcount" + }, + "snapshot": { + "number": "4.5.2.85", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowcount", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-rowcount" + } + }, + "#aria-rowindex": { + "current": { + "number": "4.5.2.86", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowindex", + "url": "https://w3c.github.io/core-aam/#aria-rowindex" + }, + "snapshot": { + "number": "4.5.2.86", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowindex", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-rowindex" + } + }, + "#aria-rowindextext": { + "current": { + "number": "4.5.2.87", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowindextext", + "url": "https://w3c.github.io/core-aam/#aria-rowindextext" + }, + "snapshot": { + "number": "4.5.2.87", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowindextext", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-rowindextext" + } + }, + "#aria-rowspan": { + "current": { + "number": "4.5.2.88", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowspan", + "url": "https://w3c.github.io/core-aam/#aria-rowspan" + }, + "snapshot": { + "number": "4.5.2.88", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-rowspan", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-rowspan" + } + }, + "#aria-selected-false": { + "current": { + "number": "4.5.2.90", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected=false", + "url": "https://w3c.github.io/core-aam/#aria-selected-false" + }, + "snapshot": { + "number": "4.5.2.90", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected=false", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-selected-false" + } + }, + "#aria-selected-is-undefined": { + "current": { + "number": "4.5.2.91", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected is undefined", + "url": "https://w3c.github.io/core-aam/#aria-selected-is-undefined" + }, + "snapshot": { + "number": "4.5.2.91", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected is undefined", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-selected-is-undefined" + } + }, + "#aria-selected-state": { + "current": { + "number": "4.8.1.16", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected (state)", + "url": "https://w3c.github.io/core-aam/#aria-selected-state" + }, + "snapshot": { + "number": "4.8.1.16", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected (state)", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-selected-state" + } + }, + "#aria-selected-true": { + "current": { + "number": "4.5.2.89", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected=true", + "url": "https://w3c.github.io/core-aam/#aria-selected-true" + }, + "snapshot": { + "number": "4.5.2.89", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-selected=true", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-selected-true" + } + }, + "#aria-setsize": { + "current": { + "number": "4.5.2.92", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-setsize", + "url": "https://w3c.github.io/core-aam/#aria-setsize" + }, + "snapshot": { + "number": "4.5.2.92", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-setsize", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-setsize" + } + }, + "#aria-sort-ascending": { + "current": { + "number": "4.5.2.93", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=ascending", + "url": "https://w3c.github.io/core-aam/#aria-sort-ascending" + }, + "snapshot": { + "number": "4.5.2.93", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=ascending", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-sort-ascending" + } + }, + "#aria-sort-descending": { + "current": { + "number": "4.5.2.94", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=descending", + "url": "https://w3c.github.io/core-aam/#aria-sort-descending" + }, + "snapshot": { + "number": "4.5.2.94", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=descending", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-sort-descending" + } + }, + "#aria-sort-none": { + "current": { + "number": "4.5.2.96", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=none", + "url": "https://w3c.github.io/core-aam/#aria-sort-none" + }, + "snapshot": { + "number": "4.5.2.96", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=none", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-sort-none" + } + }, + "#aria-sort-other": { + "current": { + "number": "4.5.2.95", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=other", + "url": "https://w3c.github.io/core-aam/#aria-sort-other" + }, + "snapshot": { + "number": "4.5.2.95", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-sort=other", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-sort-other" + } + }, + "#aria-valuemax": { + "current": { + "number": "4.5.2.97", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuemax", + "url": "https://w3c.github.io/core-aam/#aria-valuemax" + }, + "snapshot": { + "number": "4.5.2.97", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuemax", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-valuemax" + } + }, + "#aria-valuemin": { + "current": { + "number": "4.5.2.98", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuemin", + "url": "https://w3c.github.io/core-aam/#aria-valuemin" + }, + "snapshot": { + "number": "4.5.2.98", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuemin", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-valuemin" + } + }, + "#aria-valuenow": { + "current": { + "number": "4.5.2.99", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuenow", + "url": "https://w3c.github.io/core-aam/#aria-valuenow" + }, + "snapshot": { + "number": "4.5.2.99", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuenow", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-valuenow" + } + }, + "#aria-valuenow-0": { + "current": { + "number": "4.8.1.17", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuenow", + "url": "https://w3c.github.io/core-aam/#aria-valuenow-0" + }, + "snapshot": { + "number": "4.8.1.17", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuenow", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-valuenow-0" + } + }, + "#aria-valuetext": { + "current": { + "number": "4.5.2.100", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuetext", + "url": "https://w3c.github.io/core-aam/#aria-valuetext" + }, + "snapshot": { + "number": "4.5.2.100", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuetext", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-valuetext" + } + }, + "#aria-valuetext-0": { + "current": { + "number": "4.8.1.18", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuetext", + "url": "https://w3c.github.io/core-aam/#aria-valuetext-0" + }, + "snapshot": { + "number": "4.8.1.18", + "spec": "Core Accessibility API Mappings 1.2", + "text": "aria-valuetext", + "url": "https://www.w3.org/TR/core-aam-1.2/#aria-valuetext-0" + } + }, + "#article": { + "current": { + "number": "4.4.3.4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "article", + "url": "https://w3c.github.io/core-aam/#article" + }, + "snapshot": { + "number": "4.4.3.4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "article", + "url": "https://www.w3.org/TR/core-aam-1.2/#article" + } + }, + "#atk-at-spi": { + "current": { + "number": "1.2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "ATK/AT-SPI", + "url": "https://w3c.github.io/core-aam/#atk-at-spi" + }, + "snapshot": { + "number": "1.2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "ATK/AT-SPI", + "url": "https://www.w3.org/TR/core-aam-1.2/#atk-at-spi" + } + }, + "#banner": { + "current": { + "number": "4.4.3.5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "banner", + "url": "https://w3c.github.io/core-aam/#banner" + }, + "snapshot": { + "number": "4.4.3.5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "banner", + "url": "https://www.w3.org/TR/core-aam-1.2/#banner" + } + }, + "#blockquote": { + "current": { + "number": "4.4.3.6", + "spec": "Core Accessibility API Mappings 1.2", + "text": "blockquote", + "url": "https://w3c.github.io/core-aam/#blockquote" + }, + "snapshot": { + "number": "4.4.3.6", + "spec": "Core Accessibility API Mappings 1.2", + "text": "blockquote", + "url": "https://www.w3.org/TR/core-aam-1.2/#blockquote" + } + }, + "#button-with-default-values-for-aria-pressed-and-aria-haspopup": { + "current": { + "number": "4.4.3.7", + "spec": "Core Accessibility API Mappings 1.2", + "text": "button with default values for aria-pressed and aria-haspopup", + "url": "https://w3c.github.io/core-aam/#button-with-default-values-for-aria-pressed-and-aria-haspopup" + }, + "snapshot": { + "number": "4.4.3.7", + "spec": "Core Accessibility API Mappings 1.2", + "text": "button with default values for aria-pressed and aria-haspopup", + "url": "https://www.w3.org/TR/core-aam-1.2/#button-with-default-values-for-aria-pressed-and-aria-haspopup" + } + }, + "#button-with-defined-value-for-aria-pressed": { + "current": { + "number": "4.4.3.9", + "spec": "Core Accessibility API Mappings 1.2", + "text": "button with defined value for aria-pressed", + "url": "https://w3c.github.io/core-aam/#button-with-defined-value-for-aria-pressed" + }, + "snapshot": { + "number": "4.4.3.9", + "spec": "Core Accessibility API Mappings 1.2", + "text": "button with defined value for aria-pressed", + "url": "https://www.w3.org/TR/core-aam-1.2/#button-with-defined-value-for-aria-pressed" + } + }, + "#button-with-non-false-value-for-aria-haspopup": { + "current": { + "number": "4.4.3.8", + "spec": "Core Accessibility API Mappings 1.2", + "text": "button with non-false value for aria-haspopup", + "url": "https://w3c.github.io/core-aam/#button-with-non-false-value-for-aria-haspopup" + }, + "snapshot": { + "number": "4.4.3.8", + "spec": "Core Accessibility API Mappings 1.2", + "text": "button with non-false value for aria-haspopup", + "url": "https://www.w3.org/TR/core-aam-1.2/#button-with-non-false-value-for-aria-haspopup" + } + }, + "#caption": { + "current": { + "number": "4.4.3.10", + "spec": "Core Accessibility API Mappings 1.2", + "text": "caption", + "url": "https://w3c.github.io/core-aam/#caption" + }, + "snapshot": { + "number": "4.4.3.10", + "spec": "Core Accessibility API Mappings 1.2", + "text": "caption", + "url": "https://www.w3.org/TR/core-aam-1.2/#caption" + } + }, + "#cell": { + "current": { + "number": "4.4.3.11", + "spec": "Core Accessibility API Mappings 1.2", + "text": "cell", + "url": "https://w3c.github.io/core-aam/#cell" + }, + "snapshot": { + "number": "4.4.3.11", + "spec": "Core Accessibility API Mappings 1.2", + "text": "cell", + "url": "https://www.w3.org/TR/core-aam-1.2/#cell" + } + }, + "#changelog": { + "current": { + "number": "A", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Change Log", + "url": "https://w3c.github.io/core-aam/#changelog" + }, + "snapshot": { + "number": "A", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Change Log", + "url": "https://www.w3.org/TR/core-aam-1.2/#changelog" + } + }, + "#checkbox": { + "current": { + "number": "4.4.3.12", + "spec": "Core Accessibility API Mappings 1.2", + "text": "checkbox", + "url": "https://w3c.github.io/core-aam/#checkbox" + }, + "snapshot": { + "number": "4.4.3.12", + "spec": "Core Accessibility API Mappings 1.2", + "text": "checkbox", + "url": "https://www.w3.org/TR/core-aam-1.2/#checkbox" + } + }, + "#code": { + "current": { + "number": "4.4.3.13", + "spec": "Core Accessibility API Mappings 1.2", + "text": "code", + "url": "https://w3c.github.io/core-aam/#code" + }, + "snapshot": { + "number": "4.4.3.13", + "spec": "Core Accessibility API Mappings 1.2", + "text": "code", + "url": "https://www.w3.org/TR/core-aam-1.2/#code" + } + }, + "#columnheader": { + "current": { + "number": "4.4.3.14", + "spec": "Core Accessibility API Mappings 1.2", + "text": "columnheader", + "url": "https://w3c.github.io/core-aam/#columnheader" + }, + "snapshot": { + "number": "4.4.3.14", + "spec": "Core Accessibility API Mappings 1.2", + "text": "columnheader", + "url": "https://www.w3.org/TR/core-aam-1.2/#columnheader" + } + }, + "#combobox": { + "current": { + "number": "4.4.3.15", + "spec": "Core Accessibility API Mappings 1.2", + "text": "combobox", + "url": "https://w3c.github.io/core-aam/#combobox" + }, + "snapshot": { + "number": "4.4.3.15", + "spec": "Core Accessibility API Mappings 1.2", + "text": "combobox", + "url": "https://www.w3.org/TR/core-aam-1.2/#combobox" + } + }, + "#comment": { + "current": { + "number": "4.4.3.16", + "spec": "Core Accessibility API Mappings 1.2", + "text": "comment", + "url": "https://w3c.github.io/core-aam/#comment" + }, + "snapshot": { + "number": "4.4.3.16", + "spec": "Core Accessibility API Mappings 1.2", + "text": "comment", + "url": "https://www.w3.org/TR/core-aam-1.2/#comment" + } + }, + "#comparing-accessibility-apis": { + "current": { + "number": "1.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Comparing Accessibility APIs", + "url": "https://w3c.github.io/core-aam/#comparing-accessibility-apis" + }, + "snapshot": { + "number": "1.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Comparing Accessibility APIs", + "url": "https://www.w3.org/TR/core-aam-1.2/#comparing-accessibility-apis" + } + }, + "#complementary": { + "current": { + "number": "4.4.3.17", + "spec": "Core Accessibility API Mappings 1.2", + "text": "complementary", + "url": "https://w3c.github.io/core-aam/#complementary" + }, + "snapshot": { + "number": "4.4.3.17", + "spec": "Core Accessibility API Mappings 1.2", + "text": "complementary", + "url": "https://www.w3.org/TR/core-aam-1.2/#complementary" + } + }, + "#conformance": { + "current": { + "number": "2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Conformance", + "url": "https://w3c.github.io/core-aam/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Conformance", + "url": "https://www.w3.org/TR/core-aam-1.2/#conformance" + } + }, + "#contentinfo": { + "current": { + "number": "4.4.3.18", + "spec": "Core Accessibility API Mappings 1.2", + "text": "contentinfo", + "url": "https://w3c.github.io/core-aam/#contentinfo" + }, + "snapshot": { + "number": "4.4.3.18", + "spec": "Core Accessibility API Mappings 1.2", + "text": "contentinfo", + "url": "https://www.w3.org/TR/core-aam-1.2/#contentinfo" + } + }, + "#definition": { + "current": { + "number": "4.4.3.19", + "spec": "Core Accessibility API Mappings 1.2", + "text": "definition", + "url": "https://w3c.github.io/core-aam/#definition" + }, + "snapshot": { + "number": "4.4.3.19", + "spec": "Core Accessibility API Mappings 1.2", + "text": "definition", + "url": "https://www.w3.org/TR/core-aam-1.2/#definition" + } + }, + "#deletion": { + "current": { + "number": "4.4.3.20", + "spec": "Core Accessibility API Mappings 1.2", + "text": "deletion", + "url": "https://w3c.github.io/core-aam/#deletion" + }, + "snapshot": { + "number": "4.4.3.20", + "spec": "Core Accessibility API Mappings 1.2", + "text": "deletion", + "url": "https://www.w3.org/TR/core-aam-1.2/#deletion" + } + }, + "#dialog": { + "current": { + "number": "4.4.3.21", + "spec": "Core Accessibility API Mappings 1.2", + "text": "dialog", + "url": "https://w3c.github.io/core-aam/#dialog" + }, + "snapshot": { + "number": "4.4.3.21", + "spec": "Core Accessibility API Mappings 1.2", + "text": "dialog", + "url": "https://www.w3.org/TR/core-aam-1.2/#dialog" + } + }, + "#directory-deprecated": { + "current": { + "number": "4.4.3.22", + "spec": "Core Accessibility API Mappings 1.2", + "text": "directory (deprecated)", + "url": "https://w3c.github.io/core-aam/#directory-deprecated" + }, + "snapshot": { + "number": "4.4.3.22", + "spec": "Core Accessibility API Mappings 1.2", + "text": "directory (deprecated)", + "url": "https://www.w3.org/TR/core-aam-1.2/#directory-deprecated" + } + }, + "#document": { + "current": { + "number": "4.4.3.23", + "spec": "Core Accessibility API Mappings 1.2", + "text": "document", + "url": "https://w3c.github.io/core-aam/#document" + }, + "snapshot": { + "number": "4.4.3.23", + "spec": "Core Accessibility API Mappings 1.2", + "text": "document", + "url": "https://www.w3.org/TR/core-aam-1.2/#document" + } + }, + "#emphasis": { + "current": { + "number": "4.4.3.24", + "spec": "Core Accessibility API Mappings 1.2", + "text": "emphasis", + "url": "https://w3c.github.io/core-aam/#emphasis" + }, + "snapshot": { + "number": "4.4.3.24", + "spec": "Core Accessibility API Mappings 1.2", + "text": "emphasis", + "url": "https://www.w3.org/TR/core-aam-1.2/#emphasis" + } + }, + "#features-deprecated-in-wai-aria": { + "current": { + "number": "2.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Features Deprecated in WAI-ARIA", + "url": "https://w3c.github.io/core-aam/#features-deprecated-in-wai-aria" + }, + "snapshot": { + "number": "2.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Features Deprecated in WAI-ARIA", + "url": "https://www.w3.org/TR/core-aam-1.2/#features-deprecated-in-wai-aria" + } + }, + "#feed": { + "current": { + "number": "4.4.3.25", + "spec": "Core Accessibility API Mappings 1.2", + "text": "feed", + "url": "https://w3c.github.io/core-aam/#feed" + }, + "snapshot": { + "number": "4.4.3.25", + "spec": "Core Accessibility API Mappings 1.2", + "text": "feed", + "url": "https://www.w3.org/TR/core-aam-1.2/#feed" + } + }, + "#figure": { + "current": { + "number": "4.4.3.26", + "spec": "Core Accessibility API Mappings 1.2", + "text": "figure", + "url": "https://w3c.github.io/core-aam/#figure" + }, + "snapshot": { + "number": "4.4.3.26", + "spec": "Core Accessibility API Mappings 1.2", + "text": "figure", + "url": "https://www.w3.org/TR/core-aam-1.2/#figure" + } + }, + "#focus_state_event_table": { + "current": { + "number": "4.8.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Focus Changes", + "url": "https://w3c.github.io/core-aam/#focus_state_event_table" + }, + "snapshot": { + "number": "4.8.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Focus Changes", + "url": "https://www.w3.org/TR/core-aam-1.2/#focus_state_event_table" + } + }, + "#form-with-an-accessible-name": { + "current": { + "number": "4.4.3.27", + "spec": "Core Accessibility API Mappings 1.2", + "text": "form with an accessible name", + "url": "https://w3c.github.io/core-aam/#form-with-an-accessible-name" + }, + "snapshot": { + "number": "4.4.3.27", + "spec": "Core Accessibility API Mappings 1.2", + "text": "form with an accessible name", + "url": "https://www.w3.org/TR/core-aam-1.2/#form-with-an-accessible-name" + } + }, + "#form-without-an-accessible-name": { + "current": { + "number": "4.4.3.28", + "spec": "Core Accessibility API Mappings 1.2", + "text": "form without an accessible name", + "url": "https://w3c.github.io/core-aam/#form-without-an-accessible-name" + }, + "snapshot": { + "number": "4.4.3.28", + "spec": "Core Accessibility API Mappings 1.2", + "text": "form without an accessible name", + "url": "https://www.w3.org/TR/core-aam-1.2/#form-without-an-accessible-name" + } + }, + "#generic": { + "current": { + "number": "4.4.3.29", + "spec": "Core Accessibility API Mappings 1.2", + "text": "generic", + "url": "https://w3c.github.io/core-aam/#generic" + }, + "snapshot": { + "number": "4.4.3.29", + "spec": "Core Accessibility API Mappings 1.2", + "text": "generic", + "url": "https://www.w3.org/TR/core-aam-1.2/#generic" + } + }, + "#glossary": { + "current": { + "number": "3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Important Terms", + "url": "https://w3c.github.io/core-aam/#glossary" + }, + "snapshot": { + "number": "3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Important Terms", + "url": "https://www.w3.org/TR/core-aam-1.2/#glossary" + } + }, + "#grid": { + "current": { + "number": "4.4.3.30", + "spec": "Core Accessibility API Mappings 1.2", + "text": "grid", + "url": "https://w3c.github.io/core-aam/#grid" + }, + "snapshot": { + "number": "4.4.3.30", + "spec": "Core Accessibility API Mappings 1.2", + "text": "grid", + "url": "https://www.w3.org/TR/core-aam-1.2/#grid" + } + }, + "#gridcell": { + "current": { + "number": "4.4.3.31", + "spec": "Core Accessibility API Mappings 1.2", + "text": "gridcell", + "url": "https://w3c.github.io/core-aam/#gridcell" + }, + "snapshot": { + "number": "4.4.3.31", + "spec": "Core Accessibility API Mappings 1.2", + "text": "gridcell", + "url": "https://www.w3.org/TR/core-aam-1.2/#gridcell" + } + }, + "#group": { + "current": { + "number": "4.4.3.32", + "spec": "Core Accessibility API Mappings 1.2", + "text": "group", + "url": "https://w3c.github.io/core-aam/#group" + }, + "snapshot": { + "number": "4.4.3.32", + "spec": "Core Accessibility API Mappings 1.2", + "text": "group", + "url": "https://www.w3.org/TR/core-aam-1.2/#group" + } + }, + "#heading": { + "current": { + "number": "4.4.3.33", + "spec": "Core Accessibility API Mappings 1.2", + "text": "heading", + "url": "https://w3c.github.io/core-aam/#heading" + }, + "snapshot": { + "number": "4.4.3.33", + "spec": "Core Accessibility API Mappings 1.2", + "text": "heading", + "url": "https://www.w3.org/TR/core-aam-1.2/#heading" + } + }, + "#image": { + "current": { + "number": "4.4.3.34", + "spec": "Core Accessibility API Mappings 1.2", + "text": "image", + "url": "https://w3c.github.io/core-aam/#image" + }, + "snapshot": { + "number": "4.4.3.34", + "spec": "Core Accessibility API Mappings 1.2", + "text": "image", + "url": "https://www.w3.org/TR/core-aam-1.2/#image" + } + }, + "#img": { + "current": { + "number": "4.4.3.35", + "spec": "Core Accessibility API Mappings 1.2", + "text": "img", + "url": "https://w3c.github.io/core-aam/#img" + }, + "snapshot": { + "number": "4.4.3.35", + "spec": "Core Accessibility API Mappings 1.2", + "text": "img", + "url": "https://www.w3.org/TR/core-aam-1.2/#img" + } + }, + "#informative-references": { + "current": { + "number": "C.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Informative references", + "url": "https://w3c.github.io/core-aam/#informative-references" + }, + "snapshot": { + "number": "C.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Informative references", + "url": "https://www.w3.org/TR/core-aam-1.2/#informative-references" + } + }, + "#insertion": { + "current": { + "number": "4.4.3.36", + "spec": "Core Accessibility API Mappings 1.2", + "text": "insertion", + "url": "https://w3c.github.io/core-aam/#insertion" + }, + "snapshot": { + "number": "4.4.3.36", + "spec": "Core Accessibility API Mappings 1.2", + "text": "insertion", + "url": "https://www.w3.org/TR/core-aam-1.2/#insertion" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Introduction", + "url": "https://w3c.github.io/core-aam/#intro" + }, + "snapshot": { + "number": "1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Introduction", + "url": "https://www.w3.org/TR/core-aam-1.2/#intro" + } + }, + "#intro_aapi": { + "current": { + "number": "1.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Accessibility APIs", + "url": "https://w3c.github.io/core-aam/#intro_aapi" + }, + "snapshot": { + "number": "1.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Accessibility APIs", + "url": "https://www.w3.org/TR/core-aam-1.2/#intro_aapi" + } + }, + "#link": { + "current": { + "number": "4.4.3.37", + "spec": "Core Accessibility API Mappings 1.2", + "text": "link", + "url": "https://w3c.github.io/core-aam/#link" + }, + "snapshot": { + "number": "4.4.3.37", + "spec": "Core Accessibility API Mappings 1.2", + "text": "link", + "url": "https://www.w3.org/TR/core-aam-1.2/#link" + } + }, + "#list": { + "current": { + "number": "4.4.3.38", + "spec": "Core Accessibility API Mappings 1.2", + "text": "list", + "url": "https://w3c.github.io/core-aam/#list" + }, + "snapshot": { + "number": "4.4.3.38", + "spec": "Core Accessibility API Mappings 1.2", + "text": "list", + "url": "https://www.w3.org/TR/core-aam-1.2/#list" + } + }, + "#listbox-with-an-accessibility-parent-of-combobox": { + "current": { + "number": "4.4.3.40", + "spec": "Core Accessibility API Mappings 1.2", + "text": "listbox with an accessibility parent of combobox", + "url": "https://w3c.github.io/core-aam/#listbox-with-an-accessibility-parent-of-combobox" + }, + "snapshot": { + "number": "4.4.3.40", + "spec": "Core Accessibility API Mappings 1.2", + "text": "listbox with an accessibility parent of combobox", + "url": "https://www.w3.org/TR/core-aam-1.2/#listbox-with-an-accessibility-parent-of-combobox" + } + }, + "#listbox-without-an-accessibility-parent-of-combobox": { + "current": { + "number": "4.4.3.39", + "spec": "Core Accessibility API Mappings 1.2", + "text": "listbox without an accessibility parent of combobox", + "url": "https://w3c.github.io/core-aam/#listbox-without-an-accessibility-parent-of-combobox" + }, + "snapshot": { + "number": "4.4.3.39", + "spec": "Core Accessibility API Mappings 1.2", + "text": "listbox without an accessibility parent of combobox", + "url": "https://www.w3.org/TR/core-aam-1.2/#listbox-without-an-accessibility-parent-of-combobox" + } + }, + "#listitem": { + "current": { + "number": "4.4.3.41", + "spec": "Core Accessibility API Mappings 1.2", + "text": "listitem", + "url": "https://w3c.github.io/core-aam/#listitem" + }, + "snapshot": { + "number": "4.4.3.41", + "spec": "Core Accessibility API Mappings 1.2", + "text": "listitem", + "url": "https://www.w3.org/TR/core-aam-1.2/#listitem" + } + }, + "#log": { + "current": { + "number": "4.4.3.42", + "spec": "Core Accessibility API Mappings 1.2", + "text": "log", + "url": "https://w3c.github.io/core-aam/#log" + }, + "snapshot": { + "number": "4.4.3.42", + "spec": "Core Accessibility API Mappings 1.2", + "text": "log", + "url": "https://www.w3.org/TR/core-aam-1.2/#log" + } + }, + "#main": { + "current": { + "number": "4.4.3.43", + "spec": "Core Accessibility API Mappings 1.2", + "text": "main", + "url": "https://w3c.github.io/core-aam/#main" + }, + "snapshot": { + "number": "4.4.3.43", + "spec": "Core Accessibility API Mappings 1.2", + "text": "main", + "url": "https://www.w3.org/TR/core-aam-1.2/#main" + } + }, + "#mapping": { + "current": { + "number": "4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Mapping WAI-ARIA to Accessibility APIs", + "url": "https://w3c.github.io/core-aam/#mapping" + }, + "snapshot": { + "number": "4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Mapping WAI-ARIA to Accessibility APIs", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping" + } + }, + "#mapping_actions": { + "current": { + "number": "4.7", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Actions", + "url": "https://w3c.github.io/core-aam/#mapping_actions" + }, + "snapshot": { + "number": "4.7", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Actions", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_actions" + } + }, + "#mapping_additional": { + "current": { + "number": "4.6", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Special Processing Requiring Additional Computation", + "url": "https://w3c.github.io/core-aam/#mapping_additional" + }, + "snapshot": { + "number": "4.6", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Special Processing Requiring Additional Computation", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional" + } + }, + "#mapping_additional_nd": { + "current": { + "number": "4.6.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Name and Description", + "url": "https://w3c.github.io/core-aam/#mapping_additional_nd" + }, + "snapshot": { + "number": "4.6.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Name and Description", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_nd" + } + }, + "#mapping_additional_position": { + "current": { + "number": "4.6.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Group Position", + "url": "https://w3c.github.io/core-aam/#mapping_additional_position" + }, + "snapshot": { + "number": "4.6.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Group Position", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_position" + } + }, + "#mapping_additional_relations": { + "current": { + "number": "4.6.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Relations", + "url": "https://w3c.github.io/core-aam/#mapping_additional_relations" + }, + "snapshot": { + "number": "4.6.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Relations", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_relations" + } + }, + "#mapping_additional_relations_implied": { + "current": { + "number": "4.6.2.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Implied reverse relations", + "url": "https://w3c.github.io/core-aam/#mapping_additional_relations_implied" + }, + "snapshot": { + "number": "4.6.2.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Implied reverse relations", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_relations_implied" + } + }, + "#mapping_additional_relations_reverse_relations": { + "current": { + "number": "4.6.2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Reverse Relations", + "url": "https://w3c.github.io/core-aam/#mapping_additional_relations_reverse_relations" + }, + "snapshot": { + "number": "4.6.2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Reverse Relations", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_additional_relations_reverse_relations" + } + }, + "#mapping_conflicts": { + "current": { + "number": "4.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Conflicts between native markup semantics and WAI-ARIA", + "url": "https://w3c.github.io/core-aam/#mapping_conflicts" + }, + "snapshot": { + "number": "4.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Conflicts between native markup semantics and WAI-ARIA", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_conflicts" + } + }, + "#mapping_events": { + "current": { + "number": "4.8", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Events", + "url": "https://w3c.github.io/core-aam/#mapping_events" + }, + "snapshot": { + "number": "4.8", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Events", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events" + } + }, + "#mapping_events_menus": { + "current": { + "number": "4.8.5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Special Events for Menus", + "url": "https://w3c.github.io/core-aam/#mapping_events_menus" + }, + "snapshot": { + "number": "4.8.5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Special Events for Menus", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_menus" + } + }, + "#mapping_events_selection": { + "current": { + "number": "4.8.4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Selection", + "url": "https://w3c.github.io/core-aam/#mapping_events_selection" + }, + "snapshot": { + "number": "4.8.4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Selection", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_selection" + } + }, + "#mapping_events_state-change": { + "current": { + "number": "4.8.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "State and Property Change Events", + "url": "https://w3c.github.io/core-aam/#mapping_events_state-change" + }, + "snapshot": { + "number": "4.8.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "State and Property Change Events", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_state-change" + } + }, + "#mapping_events_visibility": { + "current": { + "number": "4.8.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Changes to document content or node visibility", + "url": "https://w3c.github.io/core-aam/#mapping_events_visibility" + }, + "snapshot": { + "number": "4.8.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Changes to document content or node visibility", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_events_visibility" + } + }, + "#mapping_general": { + "current": { + "number": "4.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "General rules for exposing WAI-ARIA semantics", + "url": "https://w3c.github.io/core-aam/#mapping_general" + }, + "snapshot": { + "number": "4.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "General rules for exposing WAI-ARIA semantics", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_general" + } + }, + "#mapping_nodirect": { + "current": { + "number": "4.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Exposing attributes that do not directly map to accessibility API properties", + "url": "https://w3c.github.io/core-aam/#mapping_nodirect" + }, + "snapshot": { + "number": "4.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Exposing attributes that do not directly map to accessibility API properties", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_nodirect" + } + }, + "#mapping_role": { + "current": { + "number": "4.4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Role mapping", + "url": "https://w3c.github.io/core-aam/#mapping_role" + }, + "snapshot": { + "number": "4.4", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Role mapping", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_role" + } + }, + "#mapping_role_table": { + "current": { + "number": "4.4.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Role Mapping Tables", + "url": "https://w3c.github.io/core-aam/#mapping_role_table" + }, + "snapshot": { + "number": "4.4.3", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Role Mapping Tables", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_role_table" + } + }, + "#mapping_state-property": { + "current": { + "number": "4.5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "State and Property Mapping", + "url": "https://w3c.github.io/core-aam/#mapping_state-property" + }, + "snapshot": { + "number": "4.5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "State and Property Mapping", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_state-property" + } + }, + "#mapping_state-property_table": { + "current": { + "number": "4.5.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "State and Property Mapping Tables", + "url": "https://w3c.github.io/core-aam/#mapping_state-property_table" + }, + "snapshot": { + "number": "4.5.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "State and Property Mapping Tables", + "url": "https://www.w3.org/TR/core-aam-1.2/#mapping_state-property_table" + } + }, + "#mark": { + "current": { + "number": "4.4.3.44", + "spec": "Core Accessibility API Mappings 1.2", + "text": "mark", + "url": "https://w3c.github.io/core-aam/#mark" + }, + "snapshot": { + "number": "4.4.3.44", + "spec": "Core Accessibility API Mappings 1.2", + "text": "mark", + "url": "https://www.w3.org/TR/core-aam-1.2/#mark" + } + }, + "#marquee": { + "current": { + "number": "4.4.3.45", + "spec": "Core Accessibility API Mappings 1.2", + "text": "marquee", + "url": "https://w3c.github.io/core-aam/#marquee" + }, + "snapshot": { + "number": "4.4.3.45", + "spec": "Core Accessibility API Mappings 1.2", + "text": "marquee", + "url": "https://www.w3.org/TR/core-aam-1.2/#marquee" + } + }, + "#math": { + "current": { + "number": "4.4.3.46", + "spec": "Core Accessibility API Mappings 1.2", + "text": "math", + "url": "https://w3c.github.io/core-aam/#math" + }, + "snapshot": { + "number": "4.4.3.46", + "spec": "Core Accessibility API Mappings 1.2", + "text": "math", + "url": "https://www.w3.org/TR/core-aam-1.2/#math" + } + }, + "#menu": { + "current": { + "number": "4.4.3.47", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menu", + "url": "https://w3c.github.io/core-aam/#menu" + }, + "snapshot": { + "number": "4.4.3.47", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menu", + "url": "https://www.w3.org/TR/core-aam-1.2/#menu" + } + }, + "#menubar": { + "current": { + "number": "4.4.3.48", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menubar", + "url": "https://w3c.github.io/core-aam/#menubar" + }, + "snapshot": { + "number": "4.4.3.48", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menubar", + "url": "https://www.w3.org/TR/core-aam-1.2/#menubar" + } + }, + "#menuitem": { + "current": { + "number": "4.4.3.49", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menuitem", + "url": "https://w3c.github.io/core-aam/#menuitem" + }, + "snapshot": { + "number": "4.4.3.49", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menuitem", + "url": "https://www.w3.org/TR/core-aam-1.2/#menuitem" + } + }, + "#menuitemcheckbox": { + "current": { + "number": "4.4.3.50", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menuitemcheckbox", + "url": "https://w3c.github.io/core-aam/#menuitemcheckbox" + }, + "snapshot": { + "number": "4.4.3.50", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menuitemcheckbox", + "url": "https://www.w3.org/TR/core-aam-1.2/#menuitemcheckbox" + } + }, + "#menuitemradio": { + "current": { + "number": "4.4.3.51", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menuitemradio", + "url": "https://w3c.github.io/core-aam/#menuitemradio" + }, + "snapshot": { + "number": "4.4.3.51", + "spec": "Core Accessibility API Mappings 1.2", + "text": "menuitemradio", + "url": "https://www.w3.org/TR/core-aam-1.2/#menuitemradio" + } + }, + "#meter": { + "current": { + "number": "4.4.3.52", + "spec": "Core Accessibility API Mappings 1.2", + "text": "meter", + "url": "https://w3c.github.io/core-aam/#meter" + }, + "snapshot": { + "number": "4.4.3.52", + "spec": "Core Accessibility API Mappings 1.2", + "text": "meter", + "url": "https://www.w3.org/TR/core-aam-1.2/#meter" + } + }, + "#navigation": { + "current": { + "number": "4.4.3.53", + "spec": "Core Accessibility API Mappings 1.2", + "text": "navigation", + "url": "https://w3c.github.io/core-aam/#navigation" + }, + "snapshot": { + "number": "4.4.3.53", + "spec": "Core Accessibility API Mappings 1.2", + "text": "navigation", + "url": "https://www.w3.org/TR/core-aam-1.2/#navigation" + } + }, + "#none": { + "current": { + "number": "4.4.3.54", + "spec": "Core Accessibility API Mappings 1.2", + "text": "none", + "url": "https://w3c.github.io/core-aam/#none" + }, + "snapshot": { + "number": "4.4.3.54", + "spec": "Core Accessibility API Mappings 1.2", + "text": "none", + "url": "https://www.w3.org/TR/core-aam-1.2/#none" + } + }, + "#normative-and-informative-sections": { + "current": { + "number": "2.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Normative and Informative Sections", + "url": "https://w3c.github.io/core-aam/#normative-and-informative-sections" + }, + "snapshot": { + "number": "2.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Normative and Informative Sections", + "url": "https://www.w3.org/TR/core-aam-1.2/#normative-and-informative-sections" + } + }, + "#normative-references": { + "current": { + "number": "C.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Normative references", + "url": "https://w3c.github.io/core-aam/#normative-references" + }, + "snapshot": { + "number": "C.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Normative references", + "url": "https://www.w3.org/TR/core-aam-1.2/#normative-references" + } + }, + "#not_mapped": { + "current": { + "number": "4.5.2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Not Mapped", + "url": "https://w3c.github.io/core-aam/#not_mapped" + }, + "snapshot": { + "number": "4.5.2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Not Mapped", + "url": "https://www.w3.org/TR/core-aam-1.2/#not_mapped" + } + }, + "#note": { + "current": { + "number": "4.4.3.55", + "spec": "Core Accessibility API Mappings 1.2", + "text": "note", + "url": "https://w3c.github.io/core-aam/#note" + }, + "snapshot": { + "number": "4.4.3.55", + "spec": "Core Accessibility API Mappings 1.2", + "text": "note", + "url": "https://www.w3.org/TR/core-aam-1.2/#note" + } + }, + "#option-inside-combobox": { + "current": { + "number": "4.4.3.57", + "spec": "Core Accessibility API Mappings 1.2", + "text": "option inside combobox", + "url": "https://w3c.github.io/core-aam/#option-inside-combobox" + }, + "snapshot": { + "number": "4.4.3.57", + "spec": "Core Accessibility API Mappings 1.2", + "text": "option inside combobox", + "url": "https://www.w3.org/TR/core-aam-1.2/#option-inside-combobox" + } + }, + "#option-not-inside-combobox": { + "current": { + "number": "4.4.3.56", + "spec": "Core Accessibility API Mappings 1.2", + "text": "option not inside combobox", + "url": "https://w3c.github.io/core-aam/#option-not-inside-combobox" + }, + "snapshot": { + "number": "4.4.3.56", + "spec": "Core Accessibility API Mappings 1.2", + "text": "option not inside combobox", + "url": "https://www.w3.org/TR/core-aam-1.2/#option-not-inside-combobox" + } + }, + "#paragraph": { + "current": { + "number": "4.4.3.58", + "spec": "Core Accessibility API Mappings 1.2", + "text": "paragraph", + "url": "https://w3c.github.io/core-aam/#paragraph" + }, + "snapshot": { + "number": "4.4.3.58", + "spec": "Core Accessibility API Mappings 1.2", + "text": "paragraph", + "url": "https://www.w3.org/TR/core-aam-1.2/#paragraph" + } + }, + "#presentation": { + "current": { + "number": "4.4.3.59", + "spec": "Core Accessibility API Mappings 1.2", + "text": "presentation", + "url": "https://w3c.github.io/core-aam/#presentation" + }, + "snapshot": { + "number": "4.4.3.59", + "spec": "Core Accessibility API Mappings 1.2", + "text": "presentation", + "url": "https://www.w3.org/TR/core-aam-1.2/#presentation" + } + }, + "#privacy-considerations": { + "current": { + "number": "5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Privacy considerations", + "url": "https://w3c.github.io/core-aam/#privacy-considerations" + }, + "snapshot": { + "number": "5", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Privacy considerations", + "url": "https://www.w3.org/TR/core-aam-1.2/#privacy-considerations" + } + }, + "#progressbar": { + "current": { + "number": "4.4.3.60", + "spec": "Core Accessibility API Mappings 1.2", + "text": "progressbar", + "url": "https://w3c.github.io/core-aam/#progressbar" + }, + "snapshot": { + "number": "4.4.3.60", + "spec": "Core Accessibility API Mappings 1.2", + "text": "progressbar", + "url": "https://www.w3.org/TR/core-aam-1.2/#progressbar" + } + }, + "#radio": { + "current": { + "number": "4.4.3.61", + "spec": "Core Accessibility API Mappings 1.2", + "text": "radio", + "url": "https://w3c.github.io/core-aam/#radio" + }, + "snapshot": { + "number": "4.4.3.61", + "spec": "Core Accessibility API Mappings 1.2", + "text": "radio", + "url": "https://www.w3.org/TR/core-aam-1.2/#radio" + } + }, + "#radiogroup": { + "current": { + "number": "4.4.3.62", + "spec": "Core Accessibility API Mappings 1.2", + "text": "radiogroup", + "url": "https://w3c.github.io/core-aam/#radiogroup" + }, + "snapshot": { + "number": "4.4.3.62", + "spec": "Core Accessibility API Mappings 1.2", + "text": "radiogroup", + "url": "https://www.w3.org/TR/core-aam-1.2/#radiogroup" + } + }, + "#references": { + "current": { + "number": "C", + "spec": "Core Accessibility API Mappings 1.2", + "text": "References", + "url": "https://w3c.github.io/core-aam/#references" + }, + "snapshot": { + "number": "C", + "spec": "Core Accessibility API Mappings 1.2", + "text": "References", + "url": "https://www.w3.org/TR/core-aam-1.2/#references" + } + }, + "#region-with-an-accessible-name": { + "current": { + "number": "4.4.3.63", + "spec": "Core Accessibility API Mappings 1.2", + "text": "region with an accessible name", + "url": "https://w3c.github.io/core-aam/#region-with-an-accessible-name" + }, + "snapshot": { + "number": "4.4.3.63", + "spec": "Core Accessibility API Mappings 1.2", + "text": "region with an accessible name", + "url": "https://www.w3.org/TR/core-aam-1.2/#region-with-an-accessible-name" + } + }, + "#region-without-an-accessible-name": { + "current": { + "number": "4.4.3.64", + "spec": "Core Accessibility API Mappings 1.2", + "text": "region without an accessible name", + "url": "https://w3c.github.io/core-aam/#region-without-an-accessible-name" + }, + "snapshot": { + "number": "4.4.3.64", + "spec": "Core Accessibility API Mappings 1.2", + "text": "region without an accessible name", + "url": "https://www.w3.org/TR/core-aam-1.2/#region-without-an-accessible-name" + } + }, + "#rfc-2119-keywords": { + "current": { + "number": "2.1", + "spec": "Core Accessibility API Mappings 1.2", + "text": "RFC-2119 Keywords", + "url": "https://w3c.github.io/core-aam/#rfc-2119-keywords" }, "snapshot": { "number": "2.1", @@ -573,6 +3093,20 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#rfc-2119-keywords" } }, + "#roleMappingComputedRole": { + "current": { + "number": "4.4.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Computed Role", + "url": "https://w3c.github.io/core-aam/#roleMappingComputedRole" + }, + "snapshot": { + "number": "4.4.2", + "spec": "Core Accessibility API Mappings 1.2", + "text": "Computed Role", + "url": "https://www.w3.org/TR/core-aam-1.2/#roleMappingComputedRole" + } + }, "#roleMappingGeneralRules": { "current": { "number": "4.4.1", @@ -587,6 +3121,104 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#roleMappingGeneralRules" } }, + "#row-inside-treegrid": { + "current": { + "number": "4.4.3.66", + "spec": "Core Accessibility API Mappings 1.2", + "text": "row inside treegrid", + "url": "https://w3c.github.io/core-aam/#row-inside-treegrid" + }, + "snapshot": { + "number": "4.4.3.66", + "spec": "Core Accessibility API Mappings 1.2", + "text": "row inside treegrid", + "url": "https://www.w3.org/TR/core-aam-1.2/#row-inside-treegrid" + } + }, + "#row-not-inside-treegrid": { + "current": { + "number": "4.4.3.65", + "spec": "Core Accessibility API Mappings 1.2", + "text": "row not inside treegrid", + "url": "https://w3c.github.io/core-aam/#row-not-inside-treegrid" + }, + "snapshot": { + "number": "4.4.3.65", + "spec": "Core Accessibility API Mappings 1.2", + "text": "row not inside treegrid", + "url": "https://www.w3.org/TR/core-aam-1.2/#row-not-inside-treegrid" + } + }, + "#rowgroup": { + "current": { + "number": "4.4.3.67", + "spec": "Core Accessibility API Mappings 1.2", + "text": "rowgroup", + "url": "https://w3c.github.io/core-aam/#rowgroup" + }, + "snapshot": { + "number": "4.4.3.67", + "spec": "Core Accessibility API Mappings 1.2", + "text": "rowgroup", + "url": "https://www.w3.org/TR/core-aam-1.2/#rowgroup" + } + }, + "#rowheader": { + "current": { + "number": "4.4.3.68", + "spec": "Core Accessibility API Mappings 1.2", + "text": "rowheader", + "url": "https://w3c.github.io/core-aam/#rowheader" + }, + "snapshot": { + "number": "4.4.3.68", + "spec": "Core Accessibility API Mappings 1.2", + "text": "rowheader", + "url": "https://www.w3.org/TR/core-aam-1.2/#rowheader" + } + }, + "#scrollbar": { + "current": { + "number": "4.4.3.69", + "spec": "Core Accessibility API Mappings 1.2", + "text": "scrollbar", + "url": "https://w3c.github.io/core-aam/#scrollbar" + }, + "snapshot": { + "number": "4.4.3.69", + "spec": "Core Accessibility API Mappings 1.2", + "text": "scrollbar", + "url": "https://www.w3.org/TR/core-aam-1.2/#scrollbar" + } + }, + "#search": { + "current": { + "number": "4.4.3.70", + "spec": "Core Accessibility API Mappings 1.2", + "text": "search", + "url": "https://w3c.github.io/core-aam/#search" + }, + "snapshot": { + "number": "4.4.3.70", + "spec": "Core Accessibility API Mappings 1.2", + "text": "search", + "url": "https://www.w3.org/TR/core-aam-1.2/#search" + } + }, + "#searchbox": { + "current": { + "number": "4.4.3.71", + "spec": "Core Accessibility API Mappings 1.2", + "text": "searchbox", + "url": "https://w3c.github.io/core-aam/#searchbox" + }, + "snapshot": { + "number": "4.4.3.71", + "spec": "Core Accessibility API Mappings 1.2", + "text": "searchbox", + "url": "https://www.w3.org/TR/core-aam-1.2/#searchbox" + } + }, "#security-considerations": { "current": { "number": "6", @@ -601,6 +3233,62 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#security-considerations" } }, + "#separator-focusable": { + "current": { + "number": "4.4.3.73", + "spec": "Core Accessibility API Mappings 1.2", + "text": "separator (focusable)", + "url": "https://w3c.github.io/core-aam/#separator-focusable" + }, + "snapshot": { + "number": "4.4.3.73", + "spec": "Core Accessibility API Mappings 1.2", + "text": "separator (focusable)", + "url": "https://www.w3.org/TR/core-aam-1.2/#separator-focusable" + } + }, + "#separator-non-focusable": { + "current": { + "number": "4.4.3.72", + "spec": "Core Accessibility API Mappings 1.2", + "text": "separator (non-focusable)", + "url": "https://w3c.github.io/core-aam/#separator-non-focusable" + }, + "snapshot": { + "number": "4.4.3.72", + "spec": "Core Accessibility API Mappings 1.2", + "text": "separator (non-focusable)", + "url": "https://www.w3.org/TR/core-aam-1.2/#separator-non-focusable" + } + }, + "#slider": { + "current": { + "number": "4.4.3.74", + "spec": "Core Accessibility API Mappings 1.2", + "text": "slider", + "url": "https://w3c.github.io/core-aam/#slider" + }, + "snapshot": { + "number": "4.4.3.74", + "spec": "Core Accessibility API Mappings 1.2", + "text": "slider", + "url": "https://www.w3.org/TR/core-aam-1.2/#slider" + } + }, + "#spinbutton": { + "current": { + "number": "4.4.3.75", + "spec": "Core Accessibility API Mappings 1.2", + "text": "spinbutton", + "url": "https://w3c.github.io/core-aam/#spinbutton" + }, + "snapshot": { + "number": "4.4.3.75", + "spec": "Core Accessibility API Mappings 1.2", + "text": "spinbutton", + "url": "https://www.w3.org/TR/core-aam-1.2/#spinbutton" + } + }, "#statePropertyMappingGeneralRules": { "current": { "number": "4.5.1", @@ -615,6 +3303,48 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#statePropertyMappingGeneralRules" } }, + "#status": { + "current": { + "number": "4.4.3.76", + "spec": "Core Accessibility API Mappings 1.2", + "text": "status", + "url": "https://w3c.github.io/core-aam/#status" + }, + "snapshot": { + "number": "4.4.3.76", + "spec": "Core Accessibility API Mappings 1.2", + "text": "status", + "url": "https://www.w3.org/TR/core-aam-1.2/#status" + } + }, + "#strong": { + "current": { + "number": "4.4.3.77", + "spec": "Core Accessibility API Mappings 1.2", + "text": "strong", + "url": "https://w3c.github.io/core-aam/#strong" + }, + "snapshot": { + "number": "4.4.3.77", + "spec": "Core Accessibility API Mappings 1.2", + "text": "strong", + "url": "https://www.w3.org/TR/core-aam-1.2/#strong" + } + }, + "#subscript": { + "current": { + "number": "4.4.3.78", + "spec": "Core Accessibility API Mappings 1.2", + "text": "subscript", + "url": "https://w3c.github.io/core-aam/#subscript" + }, + "snapshot": { + "number": "4.4.3.78", + "spec": "Core Accessibility API Mappings 1.2", + "text": "subscript", + "url": "https://www.w3.org/TR/core-aam-1.2/#subscript" + } + }, "#substantive-changes-since-the-core-accessibility-api-mappings-1-1-recommendation": { "current": { "number": "A.2", @@ -643,6 +3373,174 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#substantive-changes-since-the-last-public-working-draft" } }, + "#suggestion": { + "current": { + "number": "4.4.3.79", + "spec": "Core Accessibility API Mappings 1.2", + "text": "suggestion", + "url": "https://w3c.github.io/core-aam/#suggestion" + }, + "snapshot": { + "number": "4.4.3.79", + "spec": "Core Accessibility API Mappings 1.2", + "text": "suggestion", + "url": "https://www.w3.org/TR/core-aam-1.2/#suggestion" + } + }, + "#superscript": { + "current": { + "number": "4.4.3.80", + "spec": "Core Accessibility API Mappings 1.2", + "text": "superscript", + "url": "https://w3c.github.io/core-aam/#superscript" + }, + "snapshot": { + "number": "4.4.3.80", + "spec": "Core Accessibility API Mappings 1.2", + "text": "superscript", + "url": "https://www.w3.org/TR/core-aam-1.2/#superscript" + } + }, + "#switch": { + "current": { + "number": "4.4.3.81", + "spec": "Core Accessibility API Mappings 1.2", + "text": "switch", + "url": "https://w3c.github.io/core-aam/#switch" + }, + "snapshot": { + "number": "4.4.3.81", + "spec": "Core Accessibility API Mappings 1.2", + "text": "switch", + "url": "https://www.w3.org/TR/core-aam-1.2/#switch" + } + }, + "#tab": { + "current": { + "number": "4.4.3.82", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tab", + "url": "https://w3c.github.io/core-aam/#tab" + }, + "snapshot": { + "number": "4.4.3.82", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tab", + "url": "https://www.w3.org/TR/core-aam-1.2/#tab" + } + }, + "#table": { + "current": { + "number": "4.4.3.83", + "spec": "Core Accessibility API Mappings 1.2", + "text": "table", + "url": "https://w3c.github.io/core-aam/#table" + }, + "snapshot": { + "number": "4.4.3.83", + "spec": "Core Accessibility API Mappings 1.2", + "text": "table", + "url": "https://www.w3.org/TR/core-aam-1.2/#table" + } + }, + "#tablist": { + "current": { + "number": "4.4.3.84", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tablist", + "url": "https://w3c.github.io/core-aam/#tablist" + }, + "snapshot": { + "number": "4.4.3.84", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tablist", + "url": "https://www.w3.org/TR/core-aam-1.2/#tablist" + } + }, + "#tabpanel": { + "current": { + "number": "4.4.3.85", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tabpanel", + "url": "https://w3c.github.io/core-aam/#tabpanel" + }, + "snapshot": { + "number": "4.4.3.85", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tabpanel", + "url": "https://www.w3.org/TR/core-aam-1.2/#tabpanel" + } + }, + "#term": { + "current": { + "number": "4.4.3.86", + "spec": "Core Accessibility API Mappings 1.2", + "text": "term", + "url": "https://w3c.github.io/core-aam/#term" + }, + "snapshot": { + "number": "4.4.3.86", + "spec": "Core Accessibility API Mappings 1.2", + "text": "term", + "url": "https://www.w3.org/TR/core-aam-1.2/#term" + } + }, + "#textbox-when-aria-multiline-is-false": { + "current": { + "number": "4.4.3.87", + "spec": "Core Accessibility API Mappings 1.2", + "text": "textbox when aria-multiline is false", + "url": "https://w3c.github.io/core-aam/#textbox-when-aria-multiline-is-false" + }, + "snapshot": { + "number": "4.4.3.87", + "spec": "Core Accessibility API Mappings 1.2", + "text": "textbox when aria-multiline is false", + "url": "https://www.w3.org/TR/core-aam-1.2/#textbox-when-aria-multiline-is-false" + } + }, + "#textbox-when-aria-multiline-is-true": { + "current": { + "number": "4.4.3.88", + "spec": "Core Accessibility API Mappings 1.2", + "text": "textbox when aria-multiline is true", + "url": "https://w3c.github.io/core-aam/#textbox-when-aria-multiline-is-true" + }, + "snapshot": { + "number": "4.4.3.88", + "spec": "Core Accessibility API Mappings 1.2", + "text": "textbox when aria-multiline is true", + "url": "https://www.w3.org/TR/core-aam-1.2/#textbox-when-aria-multiline-is-true" + } + }, + "#time": { + "current": { + "number": "4.4.3.89", + "spec": "Core Accessibility API Mappings 1.2", + "text": "time", + "url": "https://w3c.github.io/core-aam/#time" + }, + "snapshot": { + "number": "4.4.3.89", + "spec": "Core Accessibility API Mappings 1.2", + "text": "time", + "url": "https://www.w3.org/TR/core-aam-1.2/#time" + } + }, + "#timer": { + "current": { + "number": "4.4.3.90", + "spec": "Core Accessibility API Mappings 1.2", + "text": "timer", + "url": "https://w3c.github.io/core-aam/#timer" + }, + "snapshot": { + "number": "4.4.3.90", + "spec": "Core Accessibility API Mappings 1.2", + "text": "timer", + "url": "https://www.w3.org/TR/core-aam-1.2/#timer" + } + }, "#title": { "current": { "number": "", @@ -671,6 +3569,76 @@ "url": "https://www.w3.org/TR/core-aam-1.2/#toc" } }, + "#toolbar": { + "current": { + "number": "4.4.3.91", + "spec": "Core Accessibility API Mappings 1.2", + "text": "toolbar", + "url": "https://w3c.github.io/core-aam/#toolbar" + }, + "snapshot": { + "number": "4.4.3.91", + "spec": "Core Accessibility API Mappings 1.2", + "text": "toolbar", + "url": "https://www.w3.org/TR/core-aam-1.2/#toolbar" + } + }, + "#tooltip": { + "current": { + "number": "4.4.3.92", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tooltip", + "url": "https://w3c.github.io/core-aam/#tooltip" + }, + "snapshot": { + "number": "4.4.3.92", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tooltip", + "url": "https://www.w3.org/TR/core-aam-1.2/#tooltip" + } + }, + "#tree": { + "current": { + "number": "4.4.3.93", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tree", + "url": "https://w3c.github.io/core-aam/#tree" + }, + "snapshot": { + "number": "4.4.3.93", + "spec": "Core Accessibility API Mappings 1.2", + "text": "tree", + "url": "https://www.w3.org/TR/core-aam-1.2/#tree" + } + }, + "#treegrid": { + "current": { + "number": "4.4.3.94", + "spec": "Core Accessibility API Mappings 1.2", + "text": "treegrid", + "url": "https://w3c.github.io/core-aam/#treegrid" + }, + "snapshot": { + "number": "4.4.3.94", + "spec": "Core Accessibility API Mappings 1.2", + "text": "treegrid", + "url": "https://www.w3.org/TR/core-aam-1.2/#treegrid" + } + }, + "#treeitem": { + "current": { + "number": "4.4.3.95", + "spec": "Core Accessibility API Mappings 1.2", + "text": "treeitem", + "url": "https://w3c.github.io/core-aam/#treeitem" + }, + "snapshot": { + "number": "4.4.3.95", + "spec": "Core Accessibility API Mappings 1.2", + "text": "treeitem", + "url": "https://www.w3.org/TR/core-aam-1.2/#treeitem" + } + }, "#uia-ui-automation": { "current": { "number": "1.2.2", diff --git a/bikeshed/spec-data/readonly/headings/headings-crash-reporting.json b/bikeshed/spec-data/readonly/headings/headings-crash-reporting.json index 305e3b00d5..17dbba3721 100644 --- a/bikeshed/spec-data/readonly/headings/headings-crash-reporting.json +++ b/bikeshed/spec-data/readonly/headings/headings-crash-reporting.json @@ -49,7 +49,7 @@ }, "#cross-process-contamination": { "current": { - "number": "7.1", + "number": "8.1", "spec": "Crash Reporting", "text": "Cross-Process Contamination", "url": "https://wicg.github.io/crash-reporting/#cross-process-contamination" @@ -57,12 +57,20 @@ }, "#delivery": { "current": { - "number": "4.1", + "number": "5.1", "spec": "Crash Reporting", "text": "Delivery", "url": "https://wicg.github.io/crash-reporting/#delivery" } }, + "#document-policy": { + "current": { + "number": "4", + "spec": "Crash Reporting", + "text": "Document Policy Integration", + "url": "https://wicg.github.io/crash-reporting/#document-policy" + } + }, "#examples": { "current": { "number": "1.1", @@ -81,7 +89,7 @@ }, "#implementation": { "current": { - "number": "4", + "number": "5", "spec": "Crash Reporting", "text": "Implementation Considerations", "url": "https://wicg.github.io/crash-reporting/#implementation" @@ -129,7 +137,7 @@ }, "#privacy": { "current": { - "number": "7", + "number": "8", "spec": "Crash Reporting", "text": "Privacy Considerations", "url": "https://wicg.github.io/crash-reporting/#privacy" @@ -145,7 +153,7 @@ }, "#sample-reports": { "current": { - "number": "5", + "number": "6", "spec": "Crash Reporting", "text": "Sample Reports", "url": "https://wicg.github.io/crash-reporting/#sample-reports" @@ -153,7 +161,7 @@ }, "#security": { "current": { - "number": "6", + "number": "7", "spec": "Crash Reporting", "text": "Security Considerations", "url": "https://wicg.github.io/crash-reporting/#security" @@ -167,12 +175,12 @@ "url": "https://wicg.github.io/crash-reporting/#status" } }, - "#subtitle": { + "#title": { "current": { "number": "", "spec": "Crash Reporting", - "text": "Draft Community Group Report, 24 June 2020", - "url": "https://wicg.github.io/crash-reporting/#subtitle" + "text": "Crash Reporting", + "url": "https://wicg.github.io/crash-reporting/#title" } }, "#toc": { diff --git a/bikeshed/spec-data/readonly/headings/headings-credential-management-1.json b/bikeshed/spec-data/readonly/headings/headings-credential-management-1.json index 67e4651ce2..89d035afc6 100644 --- a/bikeshed/spec-data/readonly/headings/headings-credential-management-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-credential-management-1.json @@ -117,6 +117,12 @@ "spec": "Credential Management 1", "text": "Same-Origin with its Ancestors", "url": "https://w3c.github.io/webappsec-credential-management/#algorithm-same-origin-with-ancestors" + }, + "snapshot": { + "number": "2.1.1.1", + "spec": "Credential Management 1", + "text": "Same-Origin with its Ancestors", + "url": "https://www.w3.org/TR/credential-management-1/#algorithm-same-origin-with-ancestors" } }, "#algorithm-store": { @@ -169,7 +175,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#browser-extensions" }, "snapshot": { - "number": "7.3", + "number": "8.3", "spec": "Credential Management 1", "text": "Browser Extensions", "url": "https://www.w3.org/TR/credential-management-1/#browser-extensions" @@ -179,13 +185,13 @@ "current": { "number": "4.2.1", "spec": "Credential Management 1", - "text": "FederatedCredential's [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", + "text": "FederatedCredential’s [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", "url": "https://w3c.github.io/webappsec-credential-management/#collectfromcredentialstore-federatedcredential" }, "snapshot": { "number": "4.2.1", "spec": "Credential Management 1", - "text": "FederatedCredential's [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", + "text": "FederatedCredential’s [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", "url": "https://www.w3.org/TR/credential-management-1/#collectfromcredentialstore-federatedcredential" } }, @@ -193,32 +199,16 @@ "current": { "number": "3.3.1", "spec": "Credential Management 1", - "text": "PasswordCredential's [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", + "text": "PasswordCredential’s [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", "url": "https://w3c.github.io/webappsec-credential-management/#collectfromcredentialstore-passwordcredential" }, "snapshot": { "number": "3.3.1", "spec": "Credential Management 1", - "text": "PasswordCredential's [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", + "text": "PasswordCredential’s [[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)", "url": "https://www.w3.org/TR/credential-management-1/#collectfromcredentialstore-passwordcredential" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "Credential Management 1", - "text": "Conformance", - "url": "https://www.w3.org/TR/credential-management-1/#conformance" - } - }, - "#conformant-algorithms": { - "snapshot": { - "number": "", - "spec": "Credential Management 1", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/credential-management-1/#conformant-algorithms" - } - }, "#construct-federatedcredential-data": { "current": { "number": "4.2.4", @@ -261,14 +251,6 @@ "url": "https://www.w3.org/TR/credential-management-1/#construct-passwordcredential-form" } }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "Credential Management 1", - "text": "Document conventions", - "url": "https://www.w3.org/TR/credential-management-1/#conventions" - } - }, "#core": { "current": { "number": "2", @@ -301,13 +283,13 @@ "current": { "number": "4.2.2", "spec": "Credential Management 1", - "text": "FederatedCredential's [[Create]](origin, options, sameOriginWithAncestors)", + "text": "FederatedCredential’s [[Create]](origin, options, sameOriginWithAncestors)", "url": "https://w3c.github.io/webappsec-credential-management/#create-federatedcredential" }, "snapshot": { "number": "4.2.2", "spec": "Credential Management 1", - "text": "FederatedCredential's [[Create]](origin, options, sameOriginWithAncestors)", + "text": "FederatedCredential’s [[Create]](origin, options, sameOriginWithAncestors)", "url": "https://www.w3.org/TR/credential-management-1/#create-federatedcredential" } }, @@ -315,13 +297,13 @@ "current": { "number": "3.3.2", "spec": "Credential Management 1", - "text": "PasswordCredential's [[Create]](origin, options, sameOriginWithAncestors)", + "text": "PasswordCredential’s [[Create]](origin, options, sameOriginWithAncestors)", "url": "https://w3c.github.io/webappsec-credential-management/#create-passwordcredential" }, "snapshot": { "number": "3.3.2", "spec": "Credential Management 1", - "text": "PasswordCredential's [[Create]](origin, options, sameOriginWithAncestors)", + "text": "PasswordCredential’s [[Create]](origin, options, sameOriginWithAncestors)", "url": "https://www.w3.org/TR/credential-management-1/#create-passwordcredential" } }, @@ -501,7 +483,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#implementation" }, "snapshot": { - "number": "7", + "number": "8", "spec": "Credential Management 1", "text": "Implementation Considerations", "url": "https://www.w3.org/TR/credential-management-1/#implementation" @@ -515,7 +497,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#implementation-authors" }, "snapshot": { - "number": "7.1", + "number": "8.1", "spec": "Credential Management 1", "text": "Website Authors", "url": "https://www.w3.org/TR/credential-management-1/#implementation-authors" @@ -529,7 +511,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#implementation-extension" }, "snapshot": { - "number": "7.2", + "number": "8.2", "spec": "Credential Management 1", "text": "Extension Points", "url": "https://www.w3.org/TR/credential-management-1/#implementation-extension" @@ -751,6 +733,12 @@ "spec": "Credential Management 1", "text": "Privacy Considerations", "url": "https://w3c.github.io/webappsec-credential-management/#privacy-considerations" + }, + "snapshot": { + "number": "7", + "spec": "Credential Management 1", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/credential-management-1/#privacy-considerations" } }, "#provider-identification": { @@ -787,6 +775,12 @@ "spec": "Credential Management 1", "text": "Credential Type Registry", "url": "https://w3c.github.io/webappsec-credential-management/#sctn-cred-type-registry" + }, + "snapshot": { + "number": "2.1.2", + "spec": "Credential Management 1", + "text": "Credential Type Registry", + "url": "https://www.w3.org/TR/credential-management-1/#sctn-cred-type-registry" } }, "#sctn-infra-algorithms": { @@ -795,6 +789,12 @@ "spec": "Credential Management 1", "text": "Infrastructure Algorithms", "url": "https://w3c.github.io/webappsec-credential-management/#sctn-infra-algorithms" + }, + "snapshot": { + "number": "2.1.1", + "spec": "Credential Management 1", + "text": "Infrastructure Algorithms", + "url": "https://www.w3.org/TR/credential-management-1/#sctn-infra-algorithms" } }, "#sctn-registry-requirements": { @@ -803,14 +803,12 @@ "spec": "Credential Management 1", "text": "Registration Entry Requirements and Update Process", "url": "https://w3c.github.io/webappsec-credential-management/#sctn-registry-requirements" - } - }, - "#security-and-privacy": { + }, "snapshot": { - "number": "6", + "number": "2.1.2.1", "spec": "Credential Management 1", - "text": "Security and Privacy Considerations", - "url": "https://www.w3.org/TR/credential-management-1/#security-and-privacy" + "text": "Registration Entry Requirements and Update Process", + "url": "https://www.w3.org/TR/credential-management-1/#sctn-registry-requirements" } }, "#security-chooser-leakage": { @@ -821,7 +819,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#security-chooser-leakage" }, "snapshot": { - "number": "6.7", + "number": "7.2", "spec": "Credential Management 1", "text": "Chooser Leakage", "url": "https://www.w3.org/TR/credential-management-1/#security-chooser-leakage" @@ -833,6 +831,12 @@ "spec": "Credential Management 1", "text": "Security Considerations", "url": "https://w3c.github.io/webappsec-credential-management/#security-considerations" + }, + "snapshot": { + "number": "6", + "spec": "Credential Management 1", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/credential-management-1/#security-considerations" } }, "#security-credential-access": { @@ -871,7 +875,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#security-local-data" }, "snapshot": { - "number": "6.8", + "number": "7.3", "spec": "Credential Management 1", "text": "Locally Stored Data", "url": "https://www.w3.org/TR/credential-management-1/#security-local-data" @@ -899,7 +903,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#security-signout" }, "snapshot": { - "number": "6.6", + "number": "6.5", "spec": "Credential Management 1", "text": "Signing-Out", "url": "https://www.w3.org/TR/credential-management-1/#security-signout" @@ -913,7 +917,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#security-timing" }, "snapshot": { - "number": "6.5", + "number": "7.1", "spec": "Credential Management 1", "text": "Timing Attacks", "url": "https://www.w3.org/TR/credential-management-1/#security-timing" @@ -925,27 +929,25 @@ "spec": "Credential Management 1", "text": "Status of this document", "url": "https://w3c.github.io/webappsec-credential-management/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "Credential Management 1", "text": "Status of this document", - "url": "https://www.w3.org/TR/credential-management-1/#status" + "url": "https://www.w3.org/TR/credential-management-1/#sotd" } }, "#store-federatedcredential": { "current": { "number": "4.2.3", "spec": "Credential Management 1", - "text": "FederatedCredential's [[Store]](credential, sameOriginWithAncestors)", + "text": "FederatedCredential’s [[Store]](credential, sameOriginWithAncestors)", "url": "https://w3c.github.io/webappsec-credential-management/#store-federatedcredential" }, "snapshot": { "number": "4.2.3", "spec": "Credential Management 1", - "text": "FederatedCredential's [[Store]](credential, sameOriginWithAncestors)", + "text": "FederatedCredential’s [[Store]](credential, sameOriginWithAncestors)", "url": "https://www.w3.org/TR/credential-management-1/#store-federatedcredential" } }, @@ -953,24 +955,16 @@ "current": { "number": "3.3.3", "spec": "Credential Management 1", - "text": "PasswordCredential's [[Store]](credential, sameOriginWithAncestors)", + "text": "PasswordCredential’s [[Store]](credential, sameOriginWithAncestors)", "url": "https://w3c.github.io/webappsec-credential-management/#store-passwordcredential" }, "snapshot": { "number": "3.3.3", "spec": "Credential Management 1", - "text": "PasswordCredential's [[Store]](credential, sameOriginWithAncestors)", + "text": "PasswordCredential’s [[Store]](credential, sameOriginWithAncestors)", "url": "https://www.w3.org/TR/credential-management-1/#store-passwordcredential" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "Credential Management 1", - "text": "W3C Working Draft, 17 January 2019", - "url": "https://www.w3.org/TR/credential-management-1/#subtitle" - } - }, "#teh-futur": { "current": { "number": "9", @@ -979,7 +973,7 @@ "url": "https://w3c.github.io/webappsec-credential-management/#teh-futur" }, "snapshot": { - "number": "8", + "number": "9", "spec": "Credential Management 1", "text": "Future Work", "url": "https://www.w3.org/TR/credential-management-1/#teh-futur" diff --git a/bikeshed/spec-data/readonly/headings/headings-csp3.json b/bikeshed/spec-data/readonly/headings/headings-csp3.json index d2b3d6bbb4..6e4485332e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-csp3.json +++ b/bikeshed/spec-data/readonly/headings/headings-csp3.json @@ -73,13 +73,13 @@ "current": { "number": "4.4.1", "spec": "Content Security Policy 3", - "text": "EnsureCSPDoesNotBlockStringCompilation(realm, source)", + "text": "EnsureCSPDoesNotBlockStringCompilation(realm, parameterStrings, bodyString, codeString, compilationType, parameterArgs, bodyArg)", "url": "https://w3c.github.io/webappsec-csp/#can-compile-strings" }, "snapshot": { "number": "4.4.1", "spec": "Content Security Policy 3", - "text": "EnsureCSPDoesNotBlockStringCompilation(realm, source)", + "text": "EnsureCSPDoesNotBlockStringCompilation(realm, parameterStrings, bodyString, codeString, compilationType, parameterArgs, bodyArg)", "url": "https://www.w3.org/TR/CSP3/#can-compile-strings" } }, @@ -87,13 +87,13 @@ "current": { "number": "4.5.1", "spec": "Content Security Policy 3", - "text": "EnsureCSPDoesNotBlockWasmByteCompilation(realm)", + "text": "EnsureCSPDoesNotBlockWasmByteCompilationrealm", "url": "https://w3c.github.io/webappsec-csp/#can-compile-wasm-bytes" }, "snapshot": { "number": "4.5.1", "spec": "Content Security Policy 3", - "text": "EnsureCSPDoesNotBlockWasmByteCompilation(realm)", + "text": "EnsureCSPDoesNotBlockWasmByteCompilationrealm", "url": "https://www.w3.org/TR/CSP3/#can-compile-wasm-bytes" } }, @@ -1401,18 +1401,32 @@ }, "#match-hosts": { "current": { - "number": "6.7.2.9", + "number": "6.7.2.10", "spec": "Content Security Policy 3", "text": "host-part matching", "url": "https://w3c.github.io/webappsec-csp/#match-hosts" }, "snapshot": { - "number": "6.7.2.9", + "number": "6.7.2.10", "spec": "Content Security Policy 3", "text": "host-part matching", "url": "https://www.w3.org/TR/CSP3/#match-hosts" } }, + "#match-integrity-metadata-to-source-list": { + "current": { + "number": "6.7.2.4", + "spec": "Content Security Policy 3", + "text": "Does integrity metadata match source list?", + "url": "https://w3c.github.io/webappsec-csp/#match-integrity-metadata-to-source-list" + }, + "snapshot": { + "number": "6.7.2.4", + "spec": "Content Security Policy 3", + "text": "Does integrity metadata match source list?", + "url": "https://www.w3.org/TR/CSP3/#match-integrity-metadata-to-source-list" + } + }, "#match-nonce-to-source-list": { "current": { "number": "6.7.2.3", @@ -1429,13 +1443,13 @@ }, "#match-paths": { "current": { - "number": "6.7.2.11", + "number": "6.7.2.12", "spec": "Content Security Policy 3", "text": "path-part matching", "url": "https://w3c.github.io/webappsec-csp/#match-paths" }, "snapshot": { - "number": "6.7.2.11", + "number": "6.7.2.12", "spec": "Content Security Policy 3", "text": "path-part matching", "url": "https://www.w3.org/TR/CSP3/#match-paths" @@ -1443,13 +1457,13 @@ }, "#match-ports": { "current": { - "number": "6.7.2.10", + "number": "6.7.2.11", "spec": "Content Security Policy 3", "text": "port-part matching", "url": "https://w3c.github.io/webappsec-csp/#match-ports" }, "snapshot": { - "number": "6.7.2.10", + "number": "6.7.2.11", "spec": "Content Security Policy 3", "text": "port-part matching", "url": "https://www.w3.org/TR/CSP3/#match-ports" @@ -1457,13 +1471,13 @@ }, "#match-request-to-source-list": { "current": { - "number": "6.7.2.4", + "number": "6.7.2.5", "spec": "Content Security Policy 3", "text": "Does request match source list?", "url": "https://w3c.github.io/webappsec-csp/#match-request-to-source-list" }, "snapshot": { - "number": "6.7.2.4", + "number": "6.7.2.5", "spec": "Content Security Policy 3", "text": "Does request match source list?", "url": "https://www.w3.org/TR/CSP3/#match-request-to-source-list" @@ -1471,13 +1485,13 @@ }, "#match-response-to-source-list": { "current": { - "number": "6.7.2.5", + "number": "6.7.2.6", "spec": "Content Security Policy 3", "text": "Does response to request match source list?", "url": "https://w3c.github.io/webappsec-csp/#match-response-to-source-list" }, "snapshot": { - "number": "6.7.2.5", + "number": "6.7.2.6", "spec": "Content Security Policy 3", "text": "Does response to request match source list?", "url": "https://www.w3.org/TR/CSP3/#match-response-to-source-list" @@ -1485,13 +1499,13 @@ }, "#match-schemes": { "current": { - "number": "6.7.2.8", + "number": "6.7.2.9", "spec": "Content Security Policy 3", "text": "scheme-part matching", "url": "https://w3c.github.io/webappsec-csp/#match-schemes" }, "snapshot": { - "number": "6.7.2.8", + "number": "6.7.2.9", "spec": "Content Security Policy 3", "text": "scheme-part matching", "url": "https://www.w3.org/TR/CSP3/#match-schemes" @@ -1499,13 +1513,13 @@ }, "#match-url-to-source-expression": { "current": { - "number": "6.7.2.7", + "number": "6.7.2.8", "spec": "Content Security Policy 3", "text": "Does url match expression in origin with redirect count?", "url": "https://w3c.github.io/webappsec-csp/#match-url-to-source-expression" }, "snapshot": { - "number": "6.7.2.7", + "number": "6.7.2.8", "spec": "Content Security Policy 3", "text": "Does url match expression in origin with redirect count?", "url": "https://www.w3.org/TR/CSP3/#match-url-to-source-expression" @@ -1513,13 +1527,13 @@ }, "#match-url-to-source-list": { "current": { - "number": "6.7.2.6", + "number": "6.7.2.7", "spec": "Content Security Policy 3", "text": "Does url match source list in origin with redirect count?", "url": "https://w3c.github.io/webappsec-csp/#match-url-to-source-list" }, "snapshot": { - "number": "6.7.2.6", + "number": "6.7.2.7", "spec": "Content Security Policy 3", "text": "Does url match source list in origin with redirect count?", "url": "https://www.w3.org/TR/CSP3/#match-url-to-source-list" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-align-3.json b/bikeshed/spec-data/readonly/headings/headings-css-align-3.json index 70960414af..9ee8ffca81 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-align-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-align-3.json @@ -181,6 +181,38 @@ "url": "https://www.w3.org/TR/css-align-3/#alignment-values" } }, + "#auto-safety": { + "current": { + "number": "4.4.1", + "spec": "CSS Box Alignment 3", + "text": "Automatic Overflow Alignment Safety", + "url": "https://drafts.csswg.org/css-align-3/#auto-safety" + } + }, + "#auto-safety-default": { + "current": { + "number": "4.4.1.3", + "spec": "CSS Box Alignment 3", + "text": "All Other Alignment", + "url": "https://drafts.csswg.org/css-align-3/#auto-safety-default" + } + }, + "#auto-safety-position": { + "current": { + "number": "4.4.1.2", + "spec": "CSS Box Alignment 3", + "text": "Self-Alignment for Absolutely Positioned Boxes", + "url": "https://drafts.csswg.org/css-align-3/#auto-safety-position" + } + }, + "#auto-safety-scroll": { + "current": { + "number": "4.4.1.1", + "spec": "CSS Box Alignment 3", + "text": "Content Distribution for Scroll Containers", + "url": "https://drafts.csswg.org/css-align-3/#auto-safety-scroll" + } + }, "#baseline-align-content": { "current": { "number": "5.4", @@ -855,15 +887,15 @@ }, "#staticpos-rect": { "current": { - "number": "", + "number": "A", "spec": "CSS Box Alignment 3", - "text": "Appendix A: Static Position Terminology", + "text": "Static Position Terminology", "url": "https://drafts.csswg.org/css-align-3/#staticpos-rect" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Box Alignment 3", - "text": "Appendix A: Static Position Terminology", + "text": "Static Position Terminology", "url": "https://www.w3.org/TR/css-align-3/#staticpos-rect" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-anchor-position-1.json b/bikeshed/spec-data/readonly/headings/headings-css-anchor-position-1.json index 4081e25057..95e8c6b336 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-anchor-position-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-anchor-position-1.json @@ -5,86 +5,202 @@ "spec": "CSS Anchor Positioning", "text": "Abstract", "url": "https://drafts.csswg.org/css-anchor-position-1/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Abstract", + "url": "https://www.w3.org/TR/css-anchor-position-1/#abstract" } }, - "#anchor-auto": { + "#accessibility": { "current": { - "number": "2.1.1", + "number": "3.7", "spec": "CSS Anchor Positioning", - "text": "Automatic Anchor Positioning", - "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-auto" + "text": "Accessibility Implications", + "url": "https://drafts.csswg.org/css-anchor-position-1/#accessibility" } }, - "#anchor-default": { + "#anchor-center": { "current": { - "number": "2.5", + "number": "3.3", + "spec": "CSS Anchor Positioning", + "text": "Centering on the Anchor: the anchor-center value", + "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-center" + }, + "snapshot": { + "number": "3.3", "spec": "CSS Anchor Positioning", - "text": "Default Anchors: the anchor-default property", - "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-default" + "text": "Centering on the Anchor: the anchor-center value", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-center" } }, "#anchor-pos": { "current": { - "number": "2.1", + "number": "3.2", "spec": "CSS Anchor Positioning", - "text": "Anchor-based Positioning: the anchor() function", + "text": "The anchor() Function", "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-pos" + }, + "snapshot": { + "number": "3.2", + "spec": "CSS Anchor Positioning", + "text": "The anchor() Function", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-pos" } }, - "#anchor-size": { + "#anchor-relevance": { "current": { + "number": "2.5", + "spec": "CSS Anchor Positioning", + "text": "Anchor Relevance", + "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-relevance" + }, + "snapshot": { + "number": "2.5", + "spec": "CSS Anchor Positioning", + "text": "Anchor Relevance", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-relevance" + } + }, + "#anchor-scope": { + "current": { + "number": "2.2", + "spec": "CSS Anchor Positioning", + "text": "Scoping Anchor Names: the anchor-scope property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-scope" + }, + "snapshot": { "number": "2.2", "spec": "CSS Anchor Positioning", - "text": "Anchor-based Sizing: the anchor-size() function", - "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-size" + "text": "Scoping Anchor Names: the anchor-scope property", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-scope" } }, - "#anchoring": { + "#anchor-size-fn": { "current": { - "number": "2", + "number": "4.1", + "spec": "CSS Anchor Positioning", + "text": "The anchor-size() Function", + "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-size-fn" + }, + "snapshot": { + "number": "4.1", "spec": "CSS Anchor Positioning", - "text": "Anchoring", - "url": "https://drafts.csswg.org/css-anchor-position-1/#anchoring" + "text": "The anchor-size() Function", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-size-fn" + } + }, + "#anchor-size-valid": { + "current": { + "number": "4.2", + "spec": "CSS Anchor Positioning", + "text": "Validity", + "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-size-valid" + }, + "snapshot": { + "number": "4.2", + "spec": "CSS Anchor Positioning", + "text": "Validity", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-size-valid" + } + }, + "#anchor-valid": { + "current": { + "number": "3.5", + "spec": "CSS Anchor Positioning", + "text": "Validity", + "url": "https://drafts.csswg.org/css-anchor-position-1/#anchor-valid" + }, + "snapshot": { + "number": "3.5", + "spec": "CSS Anchor Positioning", + "text": "Validity", + "url": "https://www.w3.org/TR/css-anchor-position-1/#anchor-valid" } }, "#determining": { "current": { - "number": "2.4", + "number": "2", "spec": "CSS Anchor Positioning", - "text": "Determining The Anchor: the anchor-name property", + "text": "Determining the Anchor", "url": "https://drafts.csswg.org/css-anchor-position-1/#determining" + }, + "snapshot": { + "number": "2", + "spec": "CSS Anchor Positioning", + "text": "Determining the Anchor", + "url": "https://www.w3.org/TR/css-anchor-position-1/#determining" } }, "#fallback": { "current": { - "number": "3", + "number": "5", "spec": "CSS Anchor Positioning", - "text": "Fallback Sizing/Positioning", + "text": "Overflow Management", "url": "https://drafts.csswg.org/css-anchor-position-1/#fallback" + }, + "snapshot": { + "number": "5", + "spec": "CSS Anchor Positioning", + "text": "Overflow Management", + "url": "https://www.w3.org/TR/css-anchor-position-1/#fallback" } }, "#fallback-apply": { "current": { - "number": "3.3", + "number": "5.5", "spec": "CSS Anchor Positioning", "text": "Applying Position Fallback", "url": "https://drafts.csswg.org/css-anchor-position-1/#fallback-apply" + }, + "snapshot": { + "number": "5.5", + "spec": "CSS Anchor Positioning", + "text": "Applying Position Fallback", + "url": "https://www.w3.org/TR/css-anchor-position-1/#fallback-apply" } }, - "#fallback-property": { + "#fallback-rule": { "current": { - "number": "3.1", + "number": "5.4", "spec": "CSS Anchor Positioning", - "text": "The position-fallback Property", - "url": "https://drafts.csswg.org/css-anchor-position-1/#fallback-property" + "text": "The @position-try Rule", + "url": "https://drafts.csswg.org/css-anchor-position-1/#fallback-rule" + }, + "snapshot": { + "number": "5.4", + "spec": "CSS Anchor Positioning", + "text": "The @position-try Rule", + "url": "https://www.w3.org/TR/css-anchor-position-1/#fallback-rule" } }, - "#fallback-rule": { + "#idl-index": { "current": { - "number": "3.2", + "number": "", "spec": "CSS Anchor Positioning", - "text": "The @position-fallback Rule", - "url": "https://drafts.csswg.org/css-anchor-position-1/#fallback-rule" + "text": "IDL Index", + "url": "https://drafts.csswg.org/css-anchor-position-1/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-anchor-position-1/#idl-index" + } + }, + "#implicit": { + "current": { + "number": "2.1.1", + "spec": "CSS Anchor Positioning", + "text": "Implicit Anchor Elements", + "url": "https://drafts.csswg.org/css-anchor-position-1/#implicit" + }, + "snapshot": { + "number": "2.1.1", + "spec": "CSS Anchor Positioning", + "text": "Implicit Anchor Elements", + "url": "https://www.w3.org/TR/css-anchor-position-1/#implicit" } }, "#index": { @@ -93,6 +209,12 @@ "spec": "CSS Anchor Positioning", "text": "Index", "url": "https://drafts.csswg.org/css-anchor-position-1/#index" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Index", + "url": "https://www.w3.org/TR/css-anchor-position-1/#index" } }, "#index-defined-elsewhere": { @@ -101,6 +223,12 @@ "spec": "CSS Anchor Positioning", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/css-anchor-position-1/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-anchor-position-1/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -109,6 +237,12 @@ "spec": "CSS Anchor Positioning", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/css-anchor-position-1/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-anchor-position-1/#index-defined-here" } }, "#informative": { @@ -117,6 +251,48 @@ "spec": "CSS Anchor Positioning", "text": "Informative References", "url": "https://drafts.csswg.org/css-anchor-position-1/#informative" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Informative References", + "url": "https://www.w3.org/TR/css-anchor-position-1/#informative" + } + }, + "#inset-area": { + "snapshot": { + "number": "3.1", + "spec": "CSS Anchor Positioning", + "text": "The inset-area Property", + "url": "https://www.w3.org/TR/css-anchor-position-1/#inset-area" + } + }, + "#interfaces": { + "current": { + "number": "6", + "spec": "CSS Anchor Positioning", + "text": "DOM Interfaces", + "url": "https://drafts.csswg.org/css-anchor-position-1/#interfaces" + }, + "snapshot": { + "number": "6", + "spec": "CSS Anchor Positioning", + "text": "DOM Interfaces", + "url": "https://www.w3.org/TR/css-anchor-position-1/#interfaces" + } + }, + "#interleaving": { + "current": { + "number": "7", + "spec": "CSS Anchor Positioning", + "text": "Appendix: Style & Layout Interleaving", + "url": "https://drafts.csswg.org/css-anchor-position-1/#interleaving" + }, + "snapshot": { + "number": "7", + "spec": "CSS Anchor Positioning", + "text": "Appendix: Style & Layout Interleaving", + "url": "https://www.w3.org/TR/css-anchor-position-1/#interleaving" } }, "#intro": { @@ -125,6 +301,12 @@ "spec": "CSS Anchor Positioning", "text": "Introduction", "url": "https://drafts.csswg.org/css-anchor-position-1/#intro" + }, + "snapshot": { + "number": "1", + "spec": "CSS Anchor Positioning", + "text": "Introduction", + "url": "https://www.w3.org/TR/css-anchor-position-1/#intro" } }, "#issues-index": { @@ -133,6 +315,26 @@ "spec": "CSS Anchor Positioning", "text": "Issues Index", "url": "https://drafts.csswg.org/css-anchor-position-1/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-anchor-position-1/#issues-index" + } + }, + "#name": { + "current": { + "number": "2.1", + "spec": "CSS Anchor Positioning", + "text": "Creating an Anchor: the anchor-name property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#name" + }, + "snapshot": { + "number": "2.1", + "spec": "CSS Anchor Positioning", + "text": "Creating an Anchor: the anchor-name property", + "url": "https://www.w3.org/TR/css-anchor-position-1/#name" } }, "#normative": { @@ -141,14 +343,128 @@ "spec": "CSS Anchor Positioning", "text": "Normative References", "url": "https://drafts.csswg.org/css-anchor-position-1/#normative" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Normative References", + "url": "https://www.w3.org/TR/css-anchor-position-1/#normative" + } + }, + "#om-position-try": { + "current": { + "number": "6.1", + "spec": "CSS Anchor Positioning", + "text": "The CSSPositionTryRule interface", + "url": "https://drafts.csswg.org/css-anchor-position-1/#om-position-try" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS Anchor Positioning", + "text": "The CSSPositionTryRule interface", + "url": "https://www.w3.org/TR/css-anchor-position-1/#om-position-try" + } + }, + "#position-anchor": { + "current": { + "number": "2.4", + "spec": "CSS Anchor Positioning", + "text": "Default Anchors: the position-anchor property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#position-anchor" + }, + "snapshot": { + "number": "2.4", + "spec": "CSS Anchor Positioning", + "text": "Default Anchors: the position-anchor property", + "url": "https://www.w3.org/TR/css-anchor-position-1/#position-anchor" + } + }, + "#position-area": { + "current": { + "number": "3.1", + "spec": "CSS Anchor Positioning", + "text": "The position-area Property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#position-area" + } + }, + "#position-try-fallbacks": { + "current": { + "number": "5.1", + "spec": "CSS Anchor Positioning", + "text": "Giving Fallback Options: the position-try-fallbacks property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#position-try-fallbacks" + } + }, + "#position-try-options": { + "snapshot": { + "number": "5.1", + "spec": "CSS Anchor Positioning", + "text": "Giving Fallback Options: the position-try-options property", + "url": "https://www.w3.org/TR/css-anchor-position-1/#position-try-options" + } + }, + "#position-try-order-property": { + "current": { + "number": "5.2", + "spec": "CSS Anchor Positioning", + "text": "Determining Fallback Order: the position-try-order property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#position-try-order-property" + }, + "snapshot": { + "number": "5.2", + "spec": "CSS Anchor Positioning", + "text": "Determining Fallback Order: the position-try-order property", + "url": "https://www.w3.org/TR/css-anchor-position-1/#position-try-order-property" + } + }, + "#position-try-prop": { + "current": { + "number": "5.3", + "spec": "CSS Anchor Positioning", + "text": "The position-try Shorthand", + "url": "https://drafts.csswg.org/css-anchor-position-1/#position-try-prop" + }, + "snapshot": { + "number": "5.3", + "spec": "CSS Anchor Positioning", + "text": "The position-try Shorthand", + "url": "https://www.w3.org/TR/css-anchor-position-1/#position-try-prop" + } + }, + "#position-visibility": { + "current": { + "number": "3.6", + "spec": "CSS Anchor Positioning", + "text": "Conditional Hiding: the position-visibility property", + "url": "https://drafts.csswg.org/css-anchor-position-1/#position-visibility" + } + }, + "#positioning": { + "current": { + "number": "3", + "spec": "CSS Anchor Positioning", + "text": "Anchor-Based Positioning", + "url": "https://drafts.csswg.org/css-anchor-position-1/#positioning" + }, + "snapshot": { + "number": "3", + "spec": "CSS Anchor Positioning", + "text": "Anchor-Based Positioning", + "url": "https://www.w3.org/TR/css-anchor-position-1/#positioning" } }, "#priv": { "current": { - "number": "5", + "number": "9", "spec": "CSS Anchor Positioning", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-anchor-position-1/#priv" + }, + "snapshot": { + "number": "9", + "spec": "CSS Anchor Positioning", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-anchor-position-1/#priv" } }, "#property-index": { @@ -157,14 +473,12 @@ "spec": "CSS Anchor Positioning", "text": "Property Index", "url": "https://drafts.csswg.org/css-anchor-position-1/#property-index" - } - }, - "#queries": { - "current": { - "number": "2.6", + }, + "snapshot": { + "number": "", "spec": "CSS Anchor Positioning", - "text": "Anchor Queries", - "url": "https://drafts.csswg.org/css-anchor-position-1/#queries" + "text": "Property Index", + "url": "https://www.w3.org/TR/css-anchor-position-1/#property-index" } }, "#references": { @@ -173,22 +487,68 @@ "spec": "CSS Anchor Positioning", "text": "References", "url": "https://drafts.csswg.org/css-anchor-position-1/#references" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "References", + "url": "https://www.w3.org/TR/css-anchor-position-1/#references" + } + }, + "#resolving-spans": { + "current": { + "number": "3.1.1", + "spec": "CSS Anchor Positioning", + "text": "Resolving <position-area>s", + "url": "https://drafts.csswg.org/css-anchor-position-1/#resolving-spans" + }, + "snapshot": { + "number": "3.1.1", + "spec": "CSS Anchor Positioning", + "text": "Resolving <inset-area>s", + "url": "https://www.w3.org/TR/css-anchor-position-1/#resolving-spans" } }, "#scroll": { "current": { - "number": "2.3", + "number": "3.4", "spec": "CSS Anchor Positioning", - "text": "Taking Scroll Into Account: the anchor-scroll property", + "text": "Taking Scroll Into Account", "url": "https://drafts.csswg.org/css-anchor-position-1/#scroll" + }, + "snapshot": { + "number": "3.4", + "spec": "CSS Anchor Positioning", + "text": "Taking Scroll Into Account", + "url": "https://www.w3.org/TR/css-anchor-position-1/#scroll" } }, "#sec": { "current": { - "number": "4", + "number": "8", "spec": "CSS Anchor Positioning", "text": "Security Considerations", "url": "https://drafts.csswg.org/css-anchor-position-1/#sec" + }, + "snapshot": { + "number": "8", + "spec": "CSS Anchor Positioning", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-anchor-position-1/#sec" + } + }, + "#sizing": { + "current": { + "number": "4", + "spec": "CSS Anchor Positioning", + "text": "Anchor-Based Sizing", + "url": "https://drafts.csswg.org/css-anchor-position-1/#sizing" + }, + "snapshot": { + "number": "4", + "spec": "CSS Anchor Positioning", + "text": "Anchor-Based Sizing", + "url": "https://www.w3.org/TR/css-anchor-position-1/#sizing" } }, "#sotd": { @@ -197,6 +557,26 @@ "spec": "CSS Anchor Positioning", "text": "Status of this document", "url": "https://drafts.csswg.org/css-anchor-position-1/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-anchor-position-1/#sotd" + } + }, + "#target": { + "current": { + "number": "2.3", + "spec": "CSS Anchor Positioning", + "text": "Finding an Anchor", + "url": "https://drafts.csswg.org/css-anchor-position-1/#target" + }, + "snapshot": { + "number": "2.3", + "spec": "CSS Anchor Positioning", + "text": "Finding an Anchor", + "url": "https://www.w3.org/TR/css-anchor-position-1/#target" } }, "#title": { @@ -205,6 +585,12 @@ "spec": "CSS Anchor Positioning", "text": "CSS Anchor Positioning", "url": "https://drafts.csswg.org/css-anchor-position-1/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "CSS Anchor Positioning", + "url": "https://www.w3.org/TR/css-anchor-position-1/#title" } }, "#toc": { @@ -213,6 +599,12 @@ "spec": "CSS Anchor Positioning", "text": "Table of Contents", "url": "https://drafts.csswg.org/css-anchor-position-1/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-anchor-position-1/#toc" } }, "#w3c-conform-future-proofing": { @@ -221,6 +613,12 @@ "spec": "CSS Anchor Positioning", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-anchor-position-1/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-anchor-position-1/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -229,6 +627,12 @@ "spec": "CSS Anchor Positioning", "text": "Conformance", "url": "https://drafts.csswg.org/css-anchor-position-1/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-anchor-position-1/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -237,6 +641,12 @@ "spec": "CSS Anchor Positioning", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-anchor-position-1/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-anchor-position-1/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -245,6 +655,12 @@ "spec": "CSS Anchor Positioning", "text": "Document conventions", "url": "https://drafts.csswg.org/css-anchor-position-1/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-anchor-position-1/#w3c-conventions" } }, "#w3c-partial": { @@ -253,6 +669,12 @@ "spec": "CSS Anchor Positioning", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-anchor-position-1/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-anchor-position-1/#w3c-partial" } }, "#w3c-testing": { @@ -261,6 +683,12 @@ "spec": "CSS Anchor Positioning", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-anchor-position-1/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Anchor Positioning", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-anchor-position-1/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-animations-1.json b/bikeshed/spec-data/readonly/headings/headings-css-animations-1.json index 98b3e2f3d9..fa28d531ab 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-animations-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-animations-1.json @@ -15,13 +15,13 @@ }, "#acknowledgements": { "current": { - "number": "9", + "number": "", "spec": "CSS Animations 1", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://drafts.csswg.org/css-animations-1/#acknowledgements" }, "snapshot": { - "number": "8", + "number": "9", "spec": "CSS Animations 1", "text": "Acknowledgements", "url": "https://www.w3.org/TR/css-animations-1/#acknowledgements" @@ -29,27 +29,35 @@ }, "#animation": { "current": { - "number": "3.10", + "number": "4.9", "spec": "CSS Animations 1", "text": "The animation shorthand property", "url": "https://drafts.csswg.org/css-animations-1/#animation" }, "snapshot": { - "number": "4.10", + "number": "3.10", "spec": "CSS Animations 1", "text": "The animation shorthand property", "url": "https://www.w3.org/TR/css-animations-1/#animation" } }, + "#animation-definition": { + "current": { + "number": "4", + "spec": "CSS Animations 1", + "text": "Declaring Animations", + "url": "https://drafts.csswg.org/css-animations-1/#animation-definition" + } + }, "#animation-delay": { "current": { - "number": "3.8", + "number": "4.7", "spec": "CSS Animations 1", "text": "The animation-delay property", "url": "https://drafts.csswg.org/css-animations-1/#animation-delay" }, "snapshot": { - "number": "4.8", + "number": "3.8", "spec": "CSS Animations 1", "text": "The animation-delay property", "url": "https://www.w3.org/TR/css-animations-1/#animation-delay" @@ -57,13 +65,13 @@ }, "#animation-direction": { "current": { - "number": "3.6", + "number": "4.5", "spec": "CSS Animations 1", "text": "The animation-direction property", "url": "https://drafts.csswg.org/css-animations-1/#animation-direction" }, "snapshot": { - "number": "4.6", + "number": "3.6", "spec": "CSS Animations 1", "text": "The animation-direction property", "url": "https://www.w3.org/TR/css-animations-1/#animation-direction" @@ -71,13 +79,13 @@ }, "#animation-duration": { "current": { - "number": "3.3", + "number": "4.2", "spec": "CSS Animations 1", "text": "The animation-duration property", "url": "https://drafts.csswg.org/css-animations-1/#animation-duration" }, "snapshot": { - "number": "4.3", + "number": "3.3", "spec": "CSS Animations 1", "text": "The animation-duration property", "url": "https://www.w3.org/TR/css-animations-1/#animation-duration" @@ -85,13 +93,13 @@ }, "#animation-fill-mode": { "current": { - "number": "3.9", + "number": "4.8", "spec": "CSS Animations 1", "text": "The animation-fill-mode property", "url": "https://drafts.csswg.org/css-animations-1/#animation-fill-mode" }, "snapshot": { - "number": "4.9", + "number": "3.9", "spec": "CSS Animations 1", "text": "The animation-fill-mode property", "url": "https://www.w3.org/TR/css-animations-1/#animation-fill-mode" @@ -99,13 +107,13 @@ }, "#animation-iteration-count": { "current": { - "number": "3.5", + "number": "4.4", "spec": "CSS Animations 1", "text": "The animation-iteration-count property", "url": "https://drafts.csswg.org/css-animations-1/#animation-iteration-count" }, "snapshot": { - "number": "4.5", + "number": "3.5", "spec": "CSS Animations 1", "text": "The animation-iteration-count property", "url": "https://www.w3.org/TR/css-animations-1/#animation-iteration-count" @@ -113,13 +121,13 @@ }, "#animation-name": { "current": { - "number": "3.2", + "number": "4.1", "spec": "CSS Animations 1", "text": "The animation-name property", "url": "https://drafts.csswg.org/css-animations-1/#animation-name" }, "snapshot": { - "number": "4.2", + "number": "3.2", "spec": "CSS Animations 1", "text": "The animation-name property", "url": "https://www.w3.org/TR/css-animations-1/#animation-name" @@ -127,13 +135,13 @@ }, "#animation-play-state": { "current": { - "number": "3.7", + "number": "4.6", "spec": "CSS Animations 1", "text": "The animation-play-state property", "url": "https://drafts.csswg.org/css-animations-1/#animation-play-state" }, "snapshot": { - "number": "4.7", + "number": "3.7", "spec": "CSS Animations 1", "text": "The animation-play-state property", "url": "https://www.w3.org/TR/css-animations-1/#animation-play-state" @@ -141,13 +149,13 @@ }, "#animation-timing-function": { "current": { - "number": "3.4", + "number": "4.3", "spec": "CSS Animations 1", "text": "The animation-timing-function property", "url": "https://drafts.csswg.org/css-animations-1/#animation-timing-function" }, "snapshot": { - "number": "4.4", + "number": "3.4", "spec": "CSS Animations 1", "text": "The animation-timing-function property", "url": "https://www.w3.org/TR/css-animations-1/#animation-timing-function" @@ -157,11 +165,11 @@ "current": { "number": "2", "spec": "CSS Animations 1", - "text": "Animations", + "text": "CSS Animations Model", "url": "https://drafts.csswg.org/css-animations-1/#animations" }, "snapshot": { - "number": "3", + "number": "2", "spec": "CSS Animations 1", "text": "Animations", "url": "https://www.w3.org/TR/css-animations-1/#animations" @@ -169,85 +177,41 @@ }, "#changes": { "current": { - "number": "8", + "number": "9", "spec": "CSS Animations 1", "text": "Changes", "url": "https://drafts.csswg.org/css-animations-1/#changes" + }, + "snapshot": { + "number": "8", + "spec": "CSS Animations 1", + "text": "Changes", + "url": "https://www.w3.org/TR/css-animations-1/#changes" } }, "#changes-20181011": { "current": { - "number": "8.1", + "number": "9.1", "spec": "CSS Animations 1", "text": "Changes since the Working Draft of 11 October 2018", "url": "https://drafts.csswg.org/css-animations-1/#changes-20181011" - } - }, - "#conform-classes": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/css-animations-1/#conform-classes" - } - }, - "#conform-future-proofing": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "Implementations of Unstable and Proprietary Features", - "url": "https://www.w3.org/TR/css-animations-1/#conform-future-proofing" - } - }, - "#conform-partial": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "Partial Implementations", - "url": "https://www.w3.org/TR/css-animations-1/#conform-partial" - } - }, - "#conform-responsible": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "Requirements for Responsible Implementation of CSS", - "url": "https://www.w3.org/TR/css-animations-1/#conform-responsible" - } - }, - "#conform-testing": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "Implementations of CR-level Features", - "url": "https://www.w3.org/TR/css-animations-1/#conform-testing" - } - }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "Conformance", - "url": "https://www.w3.org/TR/css-animations-1/#conformance" - } - }, - "#document-conventions": { + }, "snapshot": { - "number": "", + "number": "8.1", "spec": "CSS Animations 1", - "text": "Document conventions", - "url": "https://www.w3.org/TR/css-animations-1/#document-conventions" + "text": "Changes since the Working Draft of 11 October 2018", + "url": "https://www.w3.org/TR/css-animations-1/#changes-20181011" } }, "#event-animationevent": { "current": { - "number": "4.2", + "number": "5.2", "spec": "CSS Animations 1", "text": "Types of AnimationEvent", "url": "https://drafts.csswg.org/css-animations-1/#event-animationevent" }, "snapshot": { - "number": "5.2", + "number": "4.2", "spec": "CSS Animations 1", "text": "Types of AnimationEvent", "url": "https://www.w3.org/TR/css-animations-1/#event-animationevent" @@ -255,13 +219,13 @@ }, "#event-handlers-on-elements-document-objects-and-window-objects": { "current": { - "number": "4.3", + "number": "5.3", "spec": "CSS Animations 1", "text": "Event handlers on elements, Document objects, and Window objects", "url": "https://drafts.csswg.org/css-animations-1/#event-handlers-on-elements-document-objects-and-window-objects" }, "snapshot": { - "number": "5.3", + "number": "4.3", "spec": "CSS Animations 1", "text": "Event handlers on elements, Document objects, and Window objects", "url": "https://www.w3.org/TR/css-animations-1/#event-handlers-on-elements-document-objects-and-window-objects" @@ -269,13 +233,13 @@ }, "#events": { "current": { - "number": "4", + "number": "5", "spec": "CSS Animations 1", "text": "Animation Events", "url": "https://drafts.csswg.org/css-animations-1/#events" }, "snapshot": { - "number": "5", + "number": "4", "spec": "CSS Animations 1", "text": "Animation Events", "url": "https://www.w3.org/TR/css-animations-1/#events" @@ -353,13 +317,13 @@ }, "#interface-animationevent": { "current": { - "number": "4.1", + "number": "5.1", "spec": "CSS Animations 1", "text": "The AnimationEvent Interface", "url": "https://drafts.csswg.org/css-animations-1/#interface-animationevent" }, "snapshot": { - "number": "5.1", + "number": "4.1", "spec": "CSS Animations 1", "text": "The AnimationEvent Interface", "url": "https://www.w3.org/TR/css-animations-1/#interface-animationevent" @@ -367,13 +331,13 @@ }, "#interface-animationevent-attributes": { "current": { - "number": "4.1.2", + "number": "5.1.2", "spec": "CSS Animations 1", "text": "Attributes", "url": "https://drafts.csswg.org/css-animations-1/#interface-animationevent-attributes" }, "snapshot": { - "number": "5.1.2", + "number": "4.1.2", "spec": "CSS Animations 1", "text": "Attributes", "url": "https://www.w3.org/TR/css-animations-1/#interface-animationevent-attributes" @@ -381,13 +345,13 @@ }, "#interface-animationevent-idl": { "current": { - "number": "4.1.1", + "number": "5.1.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://drafts.csswg.org/css-animations-1/#interface-animationevent-idl" }, "snapshot": { - "number": "5.1.1", + "number": "4.1.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://www.w3.org/TR/css-animations-1/#interface-animationevent-idl" @@ -395,13 +359,13 @@ }, "#interface-csskeyframerule": { "current": { - "number": "5.2", + "number": "6.2", "spec": "CSS Animations 1", "text": "The CSSKeyframeRule Interface", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframerule" }, "snapshot": { - "number": "6.2", + "number": "5.2", "spec": "CSS Animations 1", "text": "The CSSKeyframeRule Interface", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframerule" @@ -409,13 +373,13 @@ }, "#interface-csskeyframerule-attributes": { "current": { - "number": "5.2.2", + "number": "6.2.2", "spec": "CSS Animations 1", "text": "Attributes", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframerule-attributes" }, "snapshot": { - "number": "6.2.2", + "number": "5.2.2", "spec": "CSS Animations 1", "text": "Attributes", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframerule-attributes" @@ -423,13 +387,13 @@ }, "#interface-csskeyframerule-idl": { "current": { - "number": "5.2.1", + "number": "6.2.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframerule-idl" }, "snapshot": { - "number": "6.2.1", + "number": "5.2.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframerule-idl" @@ -437,13 +401,13 @@ }, "#interface-csskeyframesrule": { "current": { - "number": "5.3", + "number": "6.3", "spec": "CSS Animations 1", "text": "The CSSKeyframesRule Interface", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule" }, "snapshot": { - "number": "6.3", + "number": "5.3", "spec": "CSS Animations 1", "text": "The CSSKeyframesRule Interface", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule" @@ -451,13 +415,13 @@ }, "#interface-csskeyframesrule-appendrule": { "current": { - "number": "5.3.4", + "number": "6.3.4", "spec": "CSS Animations 1", "text": "The appendRule method", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-appendrule" }, "snapshot": { - "number": "6.3.3", + "number": "5.3.4", "spec": "CSS Animations 1", "text": "The appendRule method", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule-appendrule" @@ -465,13 +429,13 @@ }, "#interface-csskeyframesrule-attributes": { "current": { - "number": "5.3.2", + "number": "6.3.2", "spec": "CSS Animations 1", "text": "Attributes", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-attributes" }, "snapshot": { - "number": "6.3.2", + "number": "5.3.2", "spec": "CSS Animations 1", "text": "Attributes", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule-attributes" @@ -479,13 +443,13 @@ }, "#interface-csskeyframesrule-deleterule": { "current": { - "number": "5.3.5", + "number": "6.3.5", "spec": "CSS Animations 1", "text": "The deleteRule method", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-deleterule" }, "snapshot": { - "number": "6.3.4", + "number": "5.3.5", "spec": "CSS Animations 1", "text": "The deleteRule method", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule-deleterule" @@ -493,13 +457,13 @@ }, "#interface-csskeyframesrule-findrule": { "current": { - "number": "5.3.6", + "number": "6.3.6", "spec": "CSS Animations 1", "text": "The findRule method", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-findrule" }, "snapshot": { - "number": "6.3.5", + "number": "5.3.6", "spec": "CSS Animations 1", "text": "The findRule method", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule-findrule" @@ -507,13 +471,13 @@ }, "#interface-csskeyframesrule-idl": { "current": { - "number": "5.3.1", + "number": "6.3.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-idl" }, "snapshot": { - "number": "6.3.1", + "number": "5.3.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule-idl" @@ -521,21 +485,27 @@ }, "#interface-csskeyframesrule-indexed-property-getter": { "current": { - "number": "5.3.3", + "number": "6.3.3", "spec": "CSS Animations 1", "text": "The indexed property getter", "url": "https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-indexed-property-getter" + }, + "snapshot": { + "number": "5.3.3", + "spec": "CSS Animations 1", + "text": "The indexed property getter", + "url": "https://www.w3.org/TR/css-animations-1/#interface-csskeyframesrule-indexed-property-getter" } }, "#interface-cssrule": { "current": { - "number": "5.1", + "number": "6.1", "spec": "CSS Animations 1", "text": "The CSSRule Interface", "url": "https://drafts.csswg.org/css-animations-1/#interface-cssrule" }, "snapshot": { - "number": "6.1", + "number": "5.1", "spec": "CSS Animations 1", "text": "The CSSRule Interface", "url": "https://www.w3.org/TR/css-animations-1/#interface-cssrule" @@ -543,13 +513,13 @@ }, "#interface-cssrule-idl": { "current": { - "number": "5.1.1", + "number": "6.1.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://drafts.csswg.org/css-animations-1/#interface-cssrule-idl" }, "snapshot": { - "number": "6.1.1", + "number": "5.1.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://www.w3.org/TR/css-animations-1/#interface-cssrule-idl" @@ -557,13 +527,13 @@ }, "#interface-dom": { "current": { - "number": "5", + "number": "6", "spec": "CSS Animations 1", "text": "DOM Interfaces", "url": "https://drafts.csswg.org/css-animations-1/#interface-dom" }, "snapshot": { - "number": "6", + "number": "5", "spec": "CSS Animations 1", "text": "DOM Interfaces", "url": "https://www.w3.org/TR/css-animations-1/#interface-dom" @@ -571,27 +541,27 @@ }, "#interface-globaleventhandlers": { "current": { - "number": "5.4", + "number": "6.4", "spec": "CSS Animations 1", "text": "Extensions to the GlobalEventHandlers Interface Mixin", "url": "https://drafts.csswg.org/css-animations-1/#interface-globaleventhandlers" }, "snapshot": { - "number": "6.4", + "number": "5.4", "spec": "CSS Animations 1", - "text": "Extensions to the GlobalEventHandlers Interface", + "text": "Extensions to the GlobalEventHandlers Interface Mixin", "url": "https://www.w3.org/TR/css-animations-1/#interface-globaleventhandlers" } }, "#interface-globaleventhandlers-idl": { "current": { - "number": "5.4.1", + "number": "6.4.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://drafts.csswg.org/css-animations-1/#interface-globaleventhandlers-idl" }, "snapshot": { - "number": "6.4.1", + "number": "5.4.1", "spec": "CSS Animations 1", "text": "IDL Definition", "url": "https://www.w3.org/TR/css-animations-1/#interface-globaleventhandlers-idl" @@ -629,11 +599,11 @@ "current": { "number": "3", "spec": "CSS Animations 1", - "text": "Keyframes", + "text": "Declaring Keyframes", "url": "https://drafts.csswg.org/css-animations-1/#keyframes" }, "snapshot": { - "number": "4", + "number": "3", "spec": "CSS Animations 1", "text": "Keyframes", "url": "https://www.w3.org/TR/css-animations-1/#keyframes" @@ -657,30 +627,28 @@ "current": { "number": "", "spec": "CSS Animations 1", - "text": "10. Other open issues", + "text": "11. Other open issues", "url": "https://drafts.csswg.org/css-animations-1/#other-open-issues" }, "snapshot": { - "number": "9", + "number": "", "spec": "CSS Animations 1", - "text": "Other open issues", + "text": "10. Other open issues", "url": "https://www.w3.org/TR/css-animations-1/#other-open-issues" } }, "#priv": { "current": { - "number": "6", + "number": "7", "spec": "CSS Animations 1", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-animations-1/#priv" - } - }, - "#priv-sec": { + }, "snapshot": { - "number": "7", + "number": "6", "spec": "CSS Animations 1", - "text": "Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-animations-1/#priv-sec" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-animations-1/#priv" } }, "#property-index": { @@ -713,10 +681,16 @@ }, "#sec": { "current": { - "number": "7", + "number": "8", "spec": "CSS Animations 1", "text": "Security Considerations", "url": "https://drafts.csswg.org/css-animations-1/#sec" + }, + "snapshot": { + "number": "7", + "spec": "CSS Animations 1", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-animations-1/#sec" } }, "#sotd": { @@ -725,22 +699,12 @@ "spec": "CSS Animations 1", "text": "Status of this document", "url": "https://drafts.csswg.org/css-animations-1/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Animations 1", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-animations-1/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS Animations 1", - "text": "W3C Working Draft, 11 October 2018", - "url": "https://www.w3.org/TR/css-animations-1/#subtitle" + "url": "https://www.w3.org/TR/css-animations-1/#sotd" } }, "#timing-functions": { @@ -751,7 +715,7 @@ "url": "https://drafts.csswg.org/css-animations-1/#timing-functions" }, "snapshot": { - "number": "4.1", + "number": "3.1", "spec": "CSS Animations 1", "text": "Timing functions for keyframes", "url": "https://www.w3.org/TR/css-animations-1/#timing-functions" @@ -793,9 +757,9 @@ "url": "https://drafts.csswg.org/css-animations-1/#values" }, "snapshot": { - "number": "2", + "number": "1.1", "spec": "CSS Animations 1", - "text": "Values", + "text": "Value Definitions", "url": "https://www.w3.org/TR/css-animations-1/#values" } }, @@ -805,6 +769,12 @@ "spec": "CSS Animations 1", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-animations-1/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 1", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-animations-1/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -813,6 +783,12 @@ "spec": "CSS Animations 1", "text": "Conformance", "url": "https://drafts.csswg.org/css-animations-1/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 1", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-animations-1/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -821,6 +797,12 @@ "spec": "CSS Animations 1", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-animations-1/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 1", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-animations-1/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -829,6 +811,12 @@ "spec": "CSS Animations 1", "text": "Document conventions", "url": "https://drafts.csswg.org/css-animations-1/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 1", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-animations-1/#w3c-conventions" } }, "#w3c-partial": { @@ -837,6 +825,12 @@ "spec": "CSS Animations 1", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-animations-1/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 1", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-animations-1/#w3c-partial" } }, "#w3c-testing": { @@ -845,19 +839,25 @@ "spec": "CSS Animations 1", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-animations-1/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 1", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-animations-1/#w3c-testing" } }, "#wg-resolutions-pending": { "current": { "number": "", "spec": "CSS Animations 1", - "text": "11. Working Group Resolutions that are pending editing", + "text": "12. Working Group Resolutions that are pending editing", "url": "https://drafts.csswg.org/css-animations-1/#wg-resolutions-pending" }, "snapshot": { "number": "", "spec": "CSS Animations 1", - "text": "10. Working Group Resolutions that are pending editing", + "text": "11. Working Group Resolutions that are pending editing", "url": "https://www.w3.org/TR/css-animations-1/#wg-resolutions-pending" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-css-animations-2.json b/bikeshed/spec-data/readonly/headings/headings-css-animations-2.json index 3b51cfb2ea..73d8f92181 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-animations-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-animations-2.json @@ -5,6 +5,12 @@ "spec": "CSS Animations 2", "text": "Abstract", "url": "https://drafts.csswg.org/css-animations-2/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Abstract", + "url": "https://www.w3.org/TR/css-animations-2/#abstract" } }, "#animation-composite-order": { @@ -13,86 +19,166 @@ "spec": "CSS Animations 2", "text": "Animation composite order", "url": "https://drafts.csswg.org/css-animations-2/#animation-composite-order" + }, + "snapshot": { + "number": "2.2", + "spec": "CSS Animations 2", + "text": "Animation composite order", + "url": "https://www.w3.org/TR/css-animations-2/#animation-composite-order" } }, "#animation-composition": { "current": { - "number": "3.8", + "number": "4.8", "spec": "CSS Animations 2", "text": "The animation-composition property", "url": "https://drafts.csswg.org/css-animations-2/#animation-composition" + }, + "snapshot": { + "number": "4.8", + "spec": "CSS Animations 2", + "text": "The animation-composition property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-composition" + } + }, + "#animation-definition": { + "current": { + "number": "4", + "spec": "CSS Animations 2", + "text": "Declaring Animations", + "url": "https://drafts.csswg.org/css-animations-2/#animation-definition" + }, + "snapshot": { + "number": "4", + "spec": "CSS Animations 2", + "text": "Declaring Animations", + "url": "https://www.w3.org/TR/css-animations-2/#animation-definition" } }, "#animation-delay": { "current": { - "number": "3.6", + "number": "4.6", "spec": "CSS Animations 2", "text": "The animation-delay property", "url": "https://drafts.csswg.org/css-animations-2/#animation-delay" + }, + "snapshot": { + "number": "4.6", + "spec": "CSS Animations 2", + "text": "The animation-delay property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-delay" } }, "#animation-direction": { "current": { - "number": "3.4", + "number": "4.4", "spec": "CSS Animations 2", "text": "The animation-direction property", "url": "https://drafts.csswg.org/css-animations-2/#animation-direction" + }, + "snapshot": { + "number": "4.4", + "spec": "CSS Animations 2", + "text": "The animation-direction property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-direction" } }, "#animation-duration": { "current": { - "number": "3.1", + "number": "4.1", "spec": "CSS Animations 2", "text": "The animation-duration property", "url": "https://drafts.csswg.org/css-animations-2/#animation-duration" + }, + "snapshot": { + "number": "4.1", + "spec": "CSS Animations 2", + "text": "The animation-duration property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-duration" } }, "#animation-fill-mode": { "current": { - "number": "3.7", + "number": "4.7", "spec": "CSS Animations 2", "text": "The animation-fill-mode property", "url": "https://drafts.csswg.org/css-animations-2/#animation-fill-mode" + }, + "snapshot": { + "number": "4.7", + "spec": "CSS Animations 2", + "text": "The animation-fill-mode property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-fill-mode" } }, "#animation-iteration-count": { "current": { - "number": "3.3", + "number": "4.3", "spec": "CSS Animations 2", "text": "The animation-iteration-count property", "url": "https://drafts.csswg.org/css-animations-2/#animation-iteration-count" + }, + "snapshot": { + "number": "4.3", + "spec": "CSS Animations 2", + "text": "The animation-iteration-count property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-iteration-count" } }, "#animation-play-state": { "current": { - "number": "3.5", + "number": "4.5", "spec": "CSS Animations 2", "text": "The animation-play-state property", "url": "https://drafts.csswg.org/css-animations-2/#animation-play-state" + }, + "snapshot": { + "number": "4.5", + "spec": "CSS Animations 2", + "text": "The animation-play-state property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-play-state" } }, "#animation-shorthand": { "current": { - "number": "3.10", + "number": "4.10", "spec": "CSS Animations 2", "text": "The animation shorthand property", "url": "https://drafts.csswg.org/css-animations-2/#animation-shorthand" + }, + "snapshot": { + "number": "4.10", + "spec": "CSS Animations 2", + "text": "The animation shorthand property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-shorthand" } }, "#animation-timeline": { "current": { - "number": "3.9", + "number": "4.9", "spec": "CSS Animations 2", "text": "The animation-timeline property", "url": "https://drafts.csswg.org/css-animations-2/#animation-timeline" + }, + "snapshot": { + "number": "4.9", + "spec": "CSS Animations 2", + "text": "The animation-timeline property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-timeline" } }, "#animation-timing-function": { "current": { - "number": "3.2", + "number": "4.2", "spec": "CSS Animations 2", "text": "The animation-timing-function property", "url": "https://drafts.csswg.org/css-animations-2/#animation-timing-function" + }, + "snapshot": { + "number": "4.2", + "spec": "CSS Animations 2", + "text": "The animation-timing-function property", + "url": "https://www.w3.org/TR/css-animations-2/#animation-timing-function" } }, "#animations": { @@ -101,22 +187,54 @@ "spec": "CSS Animations 2", "text": "Animations", "url": "https://drafts.csswg.org/css-animations-2/#animations" + }, + "snapshot": { + "number": "2", + "spec": "CSS Animations 2", + "text": "Animations", + "url": "https://www.w3.org/TR/css-animations-2/#animations" } }, "#changes": { "current": { - "number": "8", + "number": "9", "spec": "CSS Animations 2", "text": "Changes", "url": "https://drafts.csswg.org/css-animations-2/#changes" + }, + "snapshot": { + "number": "9", + "spec": "CSS Animations 2", + "text": "Changes", + "url": "https://www.w3.org/TR/css-animations-2/#changes" } }, "#changes-level-1": { "current": { - "number": "8.1", + "number": "9.2", "spec": "CSS Animations 2", "text": "Changes since CSS Animations, Level 1", "url": "https://drafts.csswg.org/css-animations-2/#changes-level-1" + }, + "snapshot": { + "number": "9.2", + "spec": "CSS Animations 2", + "text": "Changes since CSS Animations, Level 1", + "url": "https://www.w3.org/TR/css-animations-2/#changes-level-1" + } + }, + "#changes-recent": { + "current": { + "number": "9.1", + "spec": "CSS Animations 2", + "text": "Recent Changes", + "url": "https://drafts.csswg.org/css-animations-2/#changes-recent" + }, + "snapshot": { + "number": "9.1", + "spec": "CSS Animations 2", + "text": "Recent Changes", + "url": "https://www.w3.org/TR/css-animations-2/#changes-recent" } }, "#delta": { @@ -125,22 +243,40 @@ "spec": "CSS Animations 2", "text": "Delta specification", "url": "https://drafts.csswg.org/css-animations-2/#delta" + }, + "snapshot": { + "number": "1", + "spec": "CSS Animations 2", + "text": "Delta specification", + "url": "https://www.w3.org/TR/css-animations-2/#delta" } }, "#event-dispatch": { "current": { - "number": "4.1", + "number": "5.1", "spec": "CSS Animations 2", "text": "Event dispatch", "url": "https://drafts.csswg.org/css-animations-2/#event-dispatch" + }, + "snapshot": { + "number": "5.1", + "spec": "CSS Animations 2", + "text": "Event dispatch", + "url": "https://www.w3.org/TR/css-animations-2/#event-dispatch" } }, "#events": { "current": { - "number": "4", + "number": "5", "spec": "CSS Animations 2", "text": "Animation Events", "url": "https://drafts.csswg.org/css-animations-2/#events" + }, + "snapshot": { + "number": "5", + "spec": "CSS Animations 2", + "text": "Animation Events", + "url": "https://www.w3.org/TR/css-animations-2/#events" } }, "#idl-index": { @@ -149,6 +285,12 @@ "spec": "CSS Animations 2", "text": "IDL Index", "url": "https://drafts.csswg.org/css-animations-2/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-animations-2/#idl-index" } }, "#index": { @@ -157,6 +299,12 @@ "spec": "CSS Animations 2", "text": "Index", "url": "https://drafts.csswg.org/css-animations-2/#index" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Index", + "url": "https://www.w3.org/TR/css-animations-2/#index" } }, "#index-defined-elsewhere": { @@ -165,6 +313,12 @@ "spec": "CSS Animations 2", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/css-animations-2/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-animations-2/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -173,6 +327,12 @@ "spec": "CSS Animations 2", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/css-animations-2/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-animations-2/#index-defined-here" } }, "#informative": { @@ -181,14 +341,26 @@ "spec": "CSS Animations 2", "text": "Informative References", "url": "https://drafts.csswg.org/css-animations-2/#informative" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Informative References", + "url": "https://www.w3.org/TR/css-animations-2/#informative" } }, "#interface-dom": { "current": { - "number": "5", + "number": "6", "spec": "CSS Animations 2", "text": "DOM Interfaces", "url": "https://drafts.csswg.org/css-animations-2/#interface-dom" + }, + "snapshot": { + "number": "6", + "spec": "CSS Animations 2", + "text": "DOM Interfaces", + "url": "https://www.w3.org/TR/css-animations-2/#interface-dom" } }, "#issues-index": { @@ -197,14 +369,54 @@ "spec": "CSS Animations 2", "text": "Issues Index", "url": "https://drafts.csswg.org/css-animations-2/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-animations-2/#issues-index" + } + }, + "#keyframe-processing": { + "current": { + "number": "3.2", + "spec": "CSS Animations 2", + "text": "Processing Keyframes", + "url": "https://drafts.csswg.org/css-animations-2/#keyframe-processing" + }, + "snapshot": { + "number": "3.2", + "spec": "CSS Animations 2", + "text": "Processing Keyframes", + "url": "https://www.w3.org/TR/css-animations-2/#keyframe-processing" + } + }, + "#keyframe-rules": { + "current": { + "number": "3.1", + "spec": "CSS Animations 2", + "text": "Declaring Keyframes: the @keyframes rule", + "url": "https://drafts.csswg.org/css-animations-2/#keyframe-rules" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS Animations 2", + "text": "Declaring Keyframes: the @keyframes rule", + "url": "https://www.w3.org/TR/css-animations-2/#keyframe-rules" } }, "#keyframes": { "current": { "number": "3", "spec": "CSS Animations 2", - "text": "Keyframes", + "text": "Assembling Keyframes", "url": "https://drafts.csswg.org/css-animations-2/#keyframes" + }, + "snapshot": { + "number": "3", + "spec": "CSS Animations 2", + "text": "Assembling Keyframes", + "url": "https://www.w3.org/TR/css-animations-2/#keyframes" } }, "#normative": { @@ -213,6 +425,12 @@ "spec": "CSS Animations 2", "text": "Normative References", "url": "https://drafts.csswg.org/css-animations-2/#normative" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Normative References", + "url": "https://www.w3.org/TR/css-animations-2/#normative" } }, "#owning-element-section": { @@ -221,14 +439,26 @@ "spec": "CSS Animations 2", "text": "Owning element", "url": "https://drafts.csswg.org/css-animations-2/#owning-element-section" + }, + "snapshot": { + "number": "2.1", + "spec": "CSS Animations 2", + "text": "Owning element", + "url": "https://www.w3.org/TR/css-animations-2/#owning-element-section" } }, "#priv": { "current": { - "number": "6", + "number": "7", "spec": "CSS Animations 2", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-animations-2/#priv" + }, + "snapshot": { + "number": "7", + "spec": "CSS Animations 2", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-animations-2/#priv" } }, "#property-index": { @@ -237,6 +467,12 @@ "spec": "CSS Animations 2", "text": "Property Index", "url": "https://drafts.csswg.org/css-animations-2/#property-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Property Index", + "url": "https://www.w3.org/TR/css-animations-2/#property-index" } }, "#references": { @@ -245,22 +481,40 @@ "spec": "CSS Animations 2", "text": "References", "url": "https://drafts.csswg.org/css-animations-2/#references" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "References", + "url": "https://www.w3.org/TR/css-animations-2/#references" } }, "#requirements-on-pending-style-changes": { "current": { - "number": "5.2", + "number": "6.2", "spec": "CSS Animations 2", "text": "Requirements on pending style changes", "url": "https://drafts.csswg.org/css-animations-2/#requirements-on-pending-style-changes" + }, + "snapshot": { + "number": "6.2", + "spec": "CSS Animations 2", + "text": "Requirements on pending style changes", + "url": "https://www.w3.org/TR/css-animations-2/#requirements-on-pending-style-changes" } }, "#sec": { "current": { - "number": "7", + "number": "8", "spec": "CSS Animations 2", "text": "Security Considerations", "url": "https://drafts.csswg.org/css-animations-2/#sec" + }, + "snapshot": { + "number": "8", + "spec": "CSS Animations 2", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-animations-2/#sec" } }, "#sotd": { @@ -269,14 +523,26 @@ "spec": "CSS Animations 2", "text": "Status of this document", "url": "https://drafts.csswg.org/css-animations-2/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-animations-2/#sotd" } }, "#the-CSSAnimation-interface": { "current": { - "number": "5.1", + "number": "6.1", "spec": "CSS Animations 2", "text": "The CSSAnimation interface", "url": "https://drafts.csswg.org/css-animations-2/#the-CSSAnimation-interface" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS Animations 2", + "text": "The CSSAnimation interface", + "url": "https://www.w3.org/TR/css-animations-2/#the-CSSAnimation-interface" } }, "#title": { @@ -285,6 +551,12 @@ "spec": "CSS Animations 2", "text": "CSS Animations Level 2", "url": "https://drafts.csswg.org/css-animations-2/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "CSS Animations Level 2", + "url": "https://www.w3.org/TR/css-animations-2/#title" } }, "#toc": { @@ -293,6 +565,12 @@ "spec": "CSS Animations 2", "text": "Table of Contents", "url": "https://drafts.csswg.org/css-animations-2/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-animations-2/#toc" } }, "#w3c-conform-future-proofing": { @@ -301,6 +579,12 @@ "spec": "CSS Animations 2", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-animations-2/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-animations-2/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -309,6 +593,12 @@ "spec": "CSS Animations 2", "text": "Conformance", "url": "https://drafts.csswg.org/css-animations-2/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-animations-2/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -317,6 +607,12 @@ "spec": "CSS Animations 2", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-animations-2/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-animations-2/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -325,6 +621,12 @@ "spec": "CSS Animations 2", "text": "Document conventions", "url": "https://drafts.csswg.org/css-animations-2/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-animations-2/#w3c-conventions" } }, "#w3c-partial": { @@ -333,6 +635,12 @@ "spec": "CSS Animations 2", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-animations-2/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-animations-2/#w3c-partial" } }, "#w3c-testing": { @@ -341,6 +649,12 @@ "spec": "CSS Animations 2", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-animations-2/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Animations 2", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-animations-2/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-3.json b/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-3.json index ced4e8554b..9a1bad5ecc 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-3.json @@ -27,20 +27,6 @@ "url": "https://www.w3.org/TR/css-backgrounds-3/#acknowledgments" } }, - "#animations": { - "current": { - "number": "1.3", - "spec": "CSS Backgrounds 3", - "text": "Animated Values", - "url": "https://drafts.csswg.org/css-backgrounds-3/#animations" - }, - "snapshot": { - "number": "1.3", - "spec": "CSS Backgrounds 3", - "text": "Animated Values", - "url": "https://www.w3.org/TR/css-backgrounds-3/#animations" - } - }, "#background": { "current": { "number": "2.10", @@ -181,6 +167,20 @@ "url": "https://www.w3.org/TR/css-backgrounds-3/#backgrounds" } }, + "#bg-position-serialization": { + "current": { + "number": "2.6.1", + "spec": "CSS Backgrounds 3", + "text": "Serialization of background-position values", + "url": "https://drafts.csswg.org/css-backgrounds-3/#bg-position-serialization" + }, + "snapshot": { + "number": "2.6.1", + "spec": "CSS Backgrounds 3", + "text": "Serialization of background-position values", + "url": "https://www.w3.org/TR/css-backgrounds-3/#bg-position-serialization" + } + }, "#body-background": { "current": { "number": "2.11.2", @@ -449,13 +449,13 @@ }, "#changes-2009": { "current": { - "number": "8.9", + "number": "8.10", "spec": "CSS Backgrounds 3", "text": "Changes Since the 17 December 2009 Candidate Recommendation", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2009" }, "snapshot": { - "number": "8.9", + "number": "8.10", "spec": "CSS Backgrounds 3", "text": "Changes Since the 17 December 2009 Candidate Recommendation", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2009" @@ -463,13 +463,13 @@ }, "#changes-2011": { "current": { - "number": "8.8", + "number": "8.9", "spec": "CSS Backgrounds 3", "text": "Changes Since the 15 February 2011 Candidate Recommendation", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2011" }, "snapshot": { - "number": "8.8", + "number": "8.9", "spec": "CSS Backgrounds 3", "text": "Changes Since the 15 February 2011 Candidate Recommendation", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2011" @@ -477,13 +477,13 @@ }, "#changes-2012-04": { "current": { - "number": "8.6", + "number": "8.7", "spec": "CSS Backgrounds 3", "text": "Changes since the 17 April 2012 Candidate Recommendation", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2012-04" }, "snapshot": { - "number": "8.6", + "number": "8.7", "spec": "CSS Backgrounds 3", "text": "Changes since the 17 April 2012 Candidate Recommendation", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2012-04" @@ -491,13 +491,13 @@ }, "#changes-2012-07": { "current": { - "number": "8.5", + "number": "8.6", "spec": "CSS Backgrounds 3", "text": "Changes since the 24 July 2012 Candidate Recommendation", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2012-07" }, "snapshot": { - "number": "8.5", + "number": "8.6", "spec": "CSS Backgrounds 3", "text": "Changes since the 24 July 2012 Candidate Recommendation", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2012-07" @@ -505,13 +505,13 @@ }, "#changes-2012LC": { "current": { - "number": "8.7", + "number": "8.8", "spec": "CSS Backgrounds 3", "text": "Changes since the 14 February 2012 “Last Call” Working Draft", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2012LC" }, "snapshot": { - "number": "8.7", + "number": "8.8", "spec": "CSS Backgrounds 3", "text": "Changes since the 14 February 2012 “Last Call” Working Draft", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2012LC" @@ -519,13 +519,13 @@ }, "#changes-2014-02": { "current": { - "number": "8.4", + "number": "8.5", "spec": "CSS Backgrounds 3", "text": "Changes since the 4 February 2014 Last Call Working Draft", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2014-02" }, "snapshot": { - "number": "8.4", + "number": "8.5", "spec": "CSS Backgrounds 3", "text": "Changes since the 4 February 2014 Last Call Working Draft", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2014-02" @@ -533,13 +533,13 @@ }, "#changes-2014-09": { "current": { - "number": "8.3", + "number": "8.4", "spec": "CSS Backgrounds 3", "text": "Changes since the 9 September 2014 Candidate Recommendation", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2014-09" }, "snapshot": { - "number": "8.3", + "number": "8.4", "spec": "CSS Backgrounds 3", "text": "Changes since the 9 September 2014 Candidate Recommendation", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2014-09" @@ -547,13 +547,13 @@ }, "#changes-2017-10": { "current": { - "number": "8.2", + "number": "8.3", "spec": "CSS Backgrounds 3", "text": "Changes since the 17 October 2017 Candidate Recommendation", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2017-10" }, "snapshot": { - "number": "8.2", + "number": "8.3", "spec": "CSS Backgrounds 3", "text": "Changes since the 17 October 2017 Candidate Recommendation", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2017-10" @@ -561,18 +561,32 @@ }, "#changes-2020-12": { "current": { - "number": "8.1", + "number": "8.2", "spec": "CSS Backgrounds 3", "text": "Changes since the 22 December 2020 Candidate Recommendation Snapshot", "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2020-12" }, "snapshot": { - "number": "8.1", + "number": "8.2", "spec": "CSS Backgrounds 3", "text": "Changes since the 22 December 2020 Candidate Recommendation Snapshot", "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2020-12" } }, + "#changes-2023-02": { + "current": { + "number": "8.1", + "spec": "CSS Backgrounds 3", + "text": "Changes since the 14 February 2023 Candidate Recommendation Snapshot", + "url": "https://drafts.csswg.org/css-backgrounds-3/#changes-2023-02" + }, + "snapshot": { + "number": "8.1", + "spec": "CSS Backgrounds 3", + "text": "Changes since the 14 February 2023 Candidate Recommendation Snapshot", + "url": "https://www.w3.org/TR/css-backgrounds-3/#changes-2023-02" + } + }, "#corner-clipping": { "current": { "number": "4.3", @@ -643,20 +657,6 @@ "url": "https://www.w3.org/TR/css-backgrounds-3/#corners" } }, - "#definitions": { - "current": { - "number": "7", - "spec": "CSS Backgrounds 3", - "text": "Definitions", - "url": "https://drafts.csswg.org/css-backgrounds-3/#definitions" - }, - "snapshot": { - "number": "7", - "spec": "CSS Backgrounds 3", - "text": "Definitions", - "url": "https://www.w3.org/TR/css-backgrounds-3/#definitions" - } - }, "#first-line-background": { "current": { "number": "2.11.3", @@ -671,20 +671,6 @@ "url": "https://www.w3.org/TR/css-backgrounds-3/#first-line-background" } }, - "#glossary": { - "current": { - "number": "7.1", - "spec": "CSS Backgrounds 3", - "text": "Glossary", - "url": "https://drafts.csswg.org/css-backgrounds-3/#glossary" - }, - "snapshot": { - "number": "7.1", - "spec": "CSS Backgrounds 3", - "text": "Glossary", - "url": "https://www.w3.org/TR/css-backgrounds-3/#glossary" - } - }, "#index": { "current": { "number": "", @@ -771,13 +757,13 @@ }, "#level-1": { "current": { - "number": "7.2.1", + "number": "7.1", "spec": "CSS Backgrounds 3", "text": "Level 1", "url": "https://drafts.csswg.org/css-backgrounds-3/#level-1" }, "snapshot": { - "number": "7.2.1", + "number": "7.1", "spec": "CSS Backgrounds 3", "text": "Level 1", "url": "https://www.w3.org/TR/css-backgrounds-3/#level-1" @@ -785,13 +771,13 @@ }, "#level-2": { "current": { - "number": "7.2.2", + "number": "7.2", "spec": "CSS Backgrounds 3", "text": "Level 2", "url": "https://drafts.csswg.org/css-backgrounds-3/#level-2" }, "snapshot": { - "number": "7.2.2", + "number": "7.2", "spec": "CSS Backgrounds 3", "text": "Level 2", "url": "https://www.w3.org/TR/css-backgrounds-3/#level-2" @@ -799,13 +785,13 @@ }, "#level-3": { "current": { - "number": "7.2.3", + "number": "7.3", "spec": "CSS Backgrounds 3", "text": "Level 3", "url": "https://drafts.csswg.org/css-backgrounds-3/#level-3" }, "snapshot": { - "number": "7.2.3", + "number": "7.3", "spec": "CSS Backgrounds 3", "text": "Level 3", "url": "https://www.w3.org/TR/css-backgrounds-3/#level-3" @@ -813,13 +799,13 @@ }, "#levels": { "current": { - "number": "7.2", + "number": "7", "spec": "CSS Backgrounds 3", "text": "Levels", "url": "https://drafts.csswg.org/css-backgrounds-3/#levels" }, "snapshot": { - "number": "7.2", + "number": "7", "spec": "CSS Backgrounds 3", "text": "Levels", "url": "https://www.w3.org/TR/css-backgrounds-3/#levels" @@ -867,6 +853,20 @@ "url": "https://www.w3.org/TR/css-backgrounds-3/#placement" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Backgrounds 3", + "text": "10. Privacy Considerations", + "url": "https://drafts.csswg.org/css-backgrounds-3/#privacy" + }, + "snapshot": { + "number": "", + "spec": "CSS Backgrounds 3", + "text": "10. Privacy Considerations", + "url": "https://www.w3.org/TR/css-backgrounds-3/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -909,6 +909,20 @@ "url": "https://www.w3.org/TR/css-backgrounds-3/#root-background" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Backgrounds 3", + "text": "11. Security Considerations", + "url": "https://drafts.csswg.org/css-backgrounds-3/#security" + }, + "snapshot": { + "number": "", + "spec": "CSS Backgrounds 3", + "text": "11. Security Considerations", + "url": "https://www.w3.org/TR/css-backgrounds-3/#security" + } + }, "#shadow-blur": { "current": { "number": "6.1.2", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-4.json b/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-4.json index cf4795afa9..b452ff6a50 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-backgrounds-4.json @@ -9,7 +9,7 @@ }, "#acknowledgments": { "current": { - "number": "7", + "number": "4", "spec": "CSS Backgrounds 4", "text": "Acknowledgments", "url": "https://drafts.csswg.org/css-backgrounds-4/#acknowledgments" @@ -17,108 +17,60 @@ }, "#background-clip": { "current": { - "number": "2.2", + "number": "2.4", "spec": "CSS Backgrounds 4", "text": "Painting Area: the background-clip property", "url": "https://drafts.csswg.org/css-backgrounds-4/#background-clip" } }, - "#background-position-longhands": { + "#background-layers": { "current": { - "number": "2.1.1", + "number": "2.5", "spec": "CSS Backgrounds 4", - "text": "Background Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties", - "url": "https://drafts.csswg.org/css-backgrounds-4/#background-position-longhands" + "text": "Background Image Layers: the background-tbd shorthand property", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-layers" } }, - "#backgrounds": { + "#background-position-longhands": { "current": { - "number": "2", + "number": "2.3.1", "spec": "CSS Backgrounds 4", - "text": "Backgrounds", - "url": "https://drafts.csswg.org/css-backgrounds-4/#backgrounds" + "text": "Background Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-position-longhands" } }, - "#border-clip": { + "#background-repeat": { "current": { - "number": "5.2", + "number": "2.2", "spec": "CSS Backgrounds 4", - "text": "The border-clip properties", - "url": "https://drafts.csswg.org/css-backgrounds-4/#border-clip" + "text": "Tiling Images Shorthand: the background-repeat property", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-repeat" } }, - "#border-limit": { + "#background-repeat-longhands": { "current": { - "number": "5.1", + "number": "2.1", "spec": "CSS Backgrounds 4", - "text": "Partial Borders: the border-limit property", - "url": "https://drafts.csswg.org/css-backgrounds-4/#border-limit" + "text": "Tiling Images: the background-repeat-x, background-repeat-y, background-repeat-block, and background-repeat-inline properties", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-repeat-longhands" } }, - "#borders": { + "#backgrounds": { "current": { - "number": "3", + "number": "2", "spec": "CSS Backgrounds 4", - "text": "Borders", - "url": "https://drafts.csswg.org/css-backgrounds-4/#borders" + "text": "Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-4/#backgrounds" } }, "#changes": { "current": { - "number": "6", + "number": "3", "spec": "CSS Backgrounds 4", "text": "Changes", "url": "https://drafts.csswg.org/css-backgrounds-4/#changes" } }, - "#corner-shaping": { - "current": { - "number": "4.2", - "spec": "CSS Backgrounds 4", - "text": "Corner Shaping: the corner-shape property", - "url": "https://drafts.csswg.org/css-backgrounds-4/#corner-shaping" - } - }, - "#corner-sizing": { - "current": { - "number": "4.1", - "spec": "CSS Backgrounds 4", - "text": "Corner Sizing: the border-radius and border-*-radius shorthand properties", - "url": "https://drafts.csswg.org/css-backgrounds-4/#corner-sizing" - } - }, - "#corner-sizing-shorthand": { - "current": { - "number": "4.1.2", - "spec": "CSS Backgrounds 4", - "text": "Sizing All Corners At Once: The border-radius shorthand", - "url": "https://drafts.csswg.org/css-backgrounds-4/#corner-sizing-shorthand" - } - }, - "#corner-sizing-side-shorthands": { - "current": { - "number": "4.1.1", - "spec": "CSS Backgrounds 4", - "text": "Sizing The Corners Of One Side: The border-top-radius, border-right-radius, border-bottom-radius, border-left-radius, border-block-start-radius, border-block-end-radius, border-inline-start-radius, border-inline-end-radius shorthands", - "url": "https://drafts.csswg.org/css-backgrounds-4/#corner-sizing-side-shorthands" - } - }, - "#corners": { - "current": { - "number": "4", - "spec": "CSS Backgrounds 4", - "text": "Corners", - "url": "https://drafts.csswg.org/css-backgrounds-4/#corners" - } - }, - "#corners-shorthand": { - "current": { - "number": "4.3", - "spec": "CSS Backgrounds 4", - "text": "Corner Shape and Size: the corners shorthand", - "url": "https://drafts.csswg.org/css-backgrounds-4/#corners-shorthand" - } - }, "#index": { "current": { "number": "", @@ -169,9 +121,9 @@ }, "#level-changes": { "current": { - "number": "6.1", + "number": "3.1", "spec": "CSS Backgrounds 4", - "text": "Additions Since Level 3", + "text": "Additions since [CSS3BG]", "url": "https://drafts.csswg.org/css-backgrounds-4/#level-changes" } }, @@ -183,12 +135,12 @@ "url": "https://drafts.csswg.org/css-backgrounds-4/#normative" } }, - "#partial-borders": { + "#privacy": { "current": { - "number": "5", + "number": "", "spec": "CSS Backgrounds 4", - "text": "Partial borders", - "url": "https://drafts.csswg.org/css-backgrounds-4/#partial-borders" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-backgrounds-4/#privacy" } }, "#property-index": { @@ -207,6 +159,14 @@ "url": "https://drafts.csswg.org/css-backgrounds-4/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Backgrounds 4", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-backgrounds-4/#security" + } + }, "#sotd": { "current": { "number": "", @@ -217,25 +177,17 @@ }, "#the-background-position": { "current": { - "number": "2.1", + "number": "2.3", "spec": "CSS Backgrounds 4", "text": "Background Positioning: the background-position shorthand property", "url": "https://drafts.csswg.org/css-backgrounds-4/#the-background-position" } }, - "#the-border-color": { - "current": { - "number": "3.1", - "spec": "CSS Backgrounds 4", - "text": "Line Colors: the border-color properties", - "url": "https://drafts.csswg.org/css-backgrounds-4/#the-border-color" - } - }, "#title": { "current": { "number": "", "spec": "CSS Backgrounds 4", - "text": "CSS Backgrounds and Borders Module Level 4", + "text": "CSS Backgrounds Module Level 4", "url": "https://drafts.csswg.org/css-backgrounds-4/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-borders-4.json b/bikeshed/spec-data/readonly/headings/headings-css-borders-4.json new file mode 100644 index 0000000000..40b15f4e02 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-css-borders-4.json @@ -0,0 +1,362 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Abstract", + "url": "https://drafts.csswg.org/css-borders-4/#abstract" + } + }, + "#acknowledgments": { + "current": { + "number": "7", + "spec": "CSS Borders and Box Decorations 4", + "text": "Acknowledgments", + "url": "https://drafts.csswg.org/css-borders-4/#acknowledgments" + } + }, + "#border-clip": { + "current": { + "number": "4.2", + "spec": "CSS Borders and Box Decorations 4", + "text": "The border-clip properties", + "url": "https://drafts.csswg.org/css-borders-4/#border-clip" + } + }, + "#border-color": { + "current": { + "number": "2.1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Line Colors: the border-color properties", + "url": "https://drafts.csswg.org/css-borders-4/#border-color" + } + }, + "#border-limit": { + "current": { + "number": "4.1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Partial Borders: the border-limit property", + "url": "https://drafts.csswg.org/css-borders-4/#border-limit" + } + }, + "#border-radius": { + "current": { + "number": "3.1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Corner Sizing: the border-*-*-radius properties", + "url": "https://drafts.csswg.org/css-borders-4/#border-radius" + } + }, + "#border-shorthands": { + "current": { + "number": "2.4", + "spec": "CSS Borders and Box Decorations 4", + "text": "Border Shorthand Properties", + "url": "https://drafts.csswg.org/css-borders-4/#border-shorthands" + } + }, + "#border-style": { + "current": { + "number": "2.2", + "spec": "CSS Borders and Box Decorations 4", + "text": "Line Patterns: the border-style properties", + "url": "https://drafts.csswg.org/css-borders-4/#border-style" + } + }, + "#border-width": { + "current": { + "number": "2.3", + "spec": "CSS Borders and Box Decorations 4", + "text": "Line Thickness: the border-width properties", + "url": "https://drafts.csswg.org/css-borders-4/#border-width" + } + }, + "#borders": { + "current": { + "number": "2", + "spec": "CSS Borders and Box Decorations 4", + "text": "Borders", + "url": "https://drafts.csswg.org/css-borders-4/#borders" + } + }, + "#box-shadow": { + "current": { + "number": "5.6", + "spec": "CSS Borders and Box Decorations 4", + "text": "Drop Shadows Shorthand: the box-shadow property", + "url": "https://drafts.csswg.org/css-borders-4/#box-shadow" + } + }, + "#box-shadow-blur": { + "current": { + "number": "5.3", + "spec": "CSS Borders and Box Decorations 4", + "text": "Blurring shadows: the box-shadow-blur property", + "url": "https://drafts.csswg.org/css-borders-4/#box-shadow-blur" + } + }, + "#box-shadow-color": { + "current": { + "number": "5.1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Coloring shadows: the box-shadow-color property", + "url": "https://drafts.csswg.org/css-borders-4/#box-shadow-color" + } + }, + "#box-shadow-offset": { + "current": { + "number": "5.2", + "spec": "CSS Borders and Box Decorations 4", + "text": "Offsetting shadows: the box-shadow-offset property", + "url": "https://drafts.csswg.org/css-borders-4/#box-shadow-offset" + } + }, + "#box-shadow-position": { + "current": { + "number": "5.5", + "spec": "CSS Borders and Box Decorations 4", + "text": "Spreading shadows: the box-shadow-position property", + "url": "https://drafts.csswg.org/css-borders-4/#box-shadow-position" + } + }, + "#box-shadow-spread": { + "current": { + "number": "5.4", + "spec": "CSS Borders and Box Decorations 4", + "text": "Spreading shadows: the box-shadow-spread property", + "url": "https://drafts.csswg.org/css-borders-4/#box-shadow-spread" + } + }, + "#changes": { + "current": { + "number": "6", + "spec": "CSS Borders and Box Decorations 4", + "text": "Changes", + "url": "https://drafts.csswg.org/css-borders-4/#changes" + } + }, + "#corner-shaping": { + "current": { + "number": "3.3", + "spec": "CSS Borders and Box Decorations 4", + "text": "Corner Shaping: the corner-shape property", + "url": "https://drafts.csswg.org/css-borders-4/#corner-shaping" + } + }, + "#corner-sizing": { + "current": { + "number": "3.2", + "spec": "CSS Borders and Box Decorations 4", + "text": "Corner Sizing Shorthands: the border-radius and border-*-radius shorthand properties", + "url": "https://drafts.csswg.org/css-borders-4/#corner-sizing" + } + }, + "#corner-sizing-shorthand": { + "current": { + "number": "3.2.2", + "spec": "CSS Borders and Box Decorations 4", + "text": "Sizing All Corners At Once: The border-radius shorthand", + "url": "https://drafts.csswg.org/css-borders-4/#corner-sizing-shorthand" + } + }, + "#corner-sizing-side-shorthands": { + "current": { + "number": "3.2.1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Sizing The Corners Of One Side: The border-top-radius, border-right-radius, border-bottom-radius, border-left-radius, border-block-start-radius, border-block-end-radius, border-inline-start-radius, border-inline-end-radius shorthands", + "url": "https://drafts.csswg.org/css-borders-4/#corner-sizing-side-shorthands" + } + }, + "#corners": { + "current": { + "number": "3", + "spec": "CSS Borders and Box Decorations 4", + "text": "Corners", + "url": "https://drafts.csswg.org/css-borders-4/#corners" + } + }, + "#corners-shorthand": { + "current": { + "number": "3.4", + "spec": "CSS Borders and Box Decorations 4", + "text": "Corner Shape and Size: the corners shorthand", + "url": "https://drafts.csswg.org/css-borders-4/#corners-shorthand" + } + }, + "#drop-shadows": { + "current": { + "number": "5", + "spec": "CSS Borders and Box Decorations 4", + "text": "Drop Shadows", + "url": "https://drafts.csswg.org/css-borders-4/#drop-shadows" + } + }, + "#index": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Index", + "url": "https://drafts.csswg.org/css-borders-4/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-borders-4/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-borders-4/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-borders-4/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Introduction", + "url": "https://drafts.csswg.org/css-borders-4/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-borders-4/#issues-index" + } + }, + "#level-changes": { + "current": { + "number": "6.1", + "spec": "CSS Borders and Box Decorations 4", + "text": "Additions since [CSS3BG]", + "url": "https://drafts.csswg.org/css-borders-4/#level-changes" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Normative References", + "url": "https://drafts.csswg.org/css-borders-4/#normative" + } + }, + "#partial-borders": { + "current": { + "number": "4", + "spec": "CSS Borders and Box Decorations 4", + "text": "Partial borders", + "url": "https://drafts.csswg.org/css-borders-4/#partial-borders" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-borders-4/#property-index" + } + }, + "#references": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "References", + "url": "https://drafts.csswg.org/css-borders-4/#references" + } + }, + "#shadow-layers": { + "current": { + "number": "5.7", + "spec": "CSS Borders and Box Decorations 4", + "text": "Layering, Layout, and Other Details", + "url": "https://drafts.csswg.org/css-borders-4/#shadow-layers" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-borders-4/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "CSS Borders and Box Decorations Module Level 4", + "url": "https://drafts.csswg.org/css-borders-4/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css-borders-4/#toc" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-borders-4/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-borders-4/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-borders-4/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-borders-4/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-borders-4/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS Borders and Box Decorations 4", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-borders-4/#w3c-testing" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-box-3.json b/bikeshed/spec-data/readonly/headings/headings-css-box-3.json index f730dde69b..3d54c205b8 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-box-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-box-3.json @@ -27,6 +27,20 @@ "url": "https://www.w3.org/TR/css-box-3/#borders" } }, + "#box-edges": { + "current": { + "number": "2.1", + "spec": "CSS Box Model 3", + "text": "Boxes and Edges", + "url": "https://drafts.csswg.org/css-box-3/#box-edges" + }, + "snapshot": { + "number": "2.1", + "spec": "CSS Box Model 3", + "text": "Boxes and Edges", + "url": "https://www.w3.org/TR/css-box-3/#box-edges" + } + }, "#box-model": { "current": { "number": "2", @@ -45,16 +59,58 @@ "current": { "number": "6", "spec": "CSS Box Model 3", - "text": "Changes Since CSS Level 2", + "text": "Changes", "url": "https://drafts.csswg.org/css-box-3/#changes" }, "snapshot": { "number": "6", "spec": "CSS Box Model 3", - "text": "Changes Since CSS Level 2", + "text": "Changes", "url": "https://www.w3.org/TR/css-box-3/#changes" } }, + "#changes-recent": { + "current": { + "number": "6.1", + "spec": "CSS Box Model 3", + "text": "Recent Changes", + "url": "https://drafts.csswg.org/css-box-3/#changes-recent" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS Box Model 3", + "text": "Recent Changes", + "url": "https://www.w3.org/TR/css-box-3/#changes-recent" + } + }, + "#changes-since-L2": { + "current": { + "number": "6.2", + "spec": "CSS Box Model 3", + "text": "Changes Since CSS Level 2", + "url": "https://drafts.csswg.org/css-box-3/#changes-since-L2" + }, + "snapshot": { + "number": "6.2", + "spec": "CSS Box Model 3", + "text": "Changes Since CSS Level 2", + "url": "https://www.w3.org/TR/css-box-3/#changes-since-L2" + } + }, + "#fragmentation": { + "current": { + "number": "2.2", + "spec": "CSS Box Model 3", + "text": "Fragmentation", + "url": "https://drafts.csswg.org/css-box-3/#fragmentation" + }, + "snapshot": { + "number": "2.2", + "spec": "CSS Box Model 3", + "text": "Fragmentation", + "url": "https://www.w3.org/TR/css-box-3/#fragmentation" + } + }, "#index": { "current": { "number": "", @@ -127,13 +183,13 @@ }, "#keywords": { "current": { - "number": "2.1", + "number": "2.3", "spec": "CSS Box Model 3", "text": "Box-edge Keywords", "url": "https://drafts.csswg.org/css-box-3/#keywords" }, "snapshot": { - "number": "2.1", + "number": "2.3", "spec": "CSS Box Model 3", "text": "Box-edge Keywords", "url": "https://www.w3.org/TR/css-box-3/#keywords" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-box-4.json b/bikeshed/spec-data/readonly/headings/headings-css-box-4.json index 1f4ed1b946..62ce381e63 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-box-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-box-4.json @@ -27,6 +27,20 @@ "url": "https://www.w3.org/TR/css-box-4/#borders" } }, + "#box-edges": { + "current": { + "number": "2.1", + "spec": "CSS Box Model 4", + "text": "Boxes and Edges", + "url": "https://drafts.csswg.org/css-box-4/#box-edges" + }, + "snapshot": { + "number": "2.1", + "spec": "CSS Box Model 4", + "text": "Boxes and Edges", + "url": "https://www.w3.org/TR/css-box-4/#box-edges" + } + }, "#box-model": { "current": { "number": "2", @@ -47,6 +61,12 @@ "spec": "CSS Box Model 4", "text": "Recent Changes", "url": "https://drafts.csswg.org/css-box-4/#changes" + }, + "snapshot": { + "number": "6", + "spec": "CSS Box Model 4", + "text": "Recent Changes", + "url": "https://www.w3.org/TR/css-box-4/#changes" } }, "#changes-since-2": { @@ -57,7 +77,7 @@ "url": "https://drafts.csswg.org/css-box-4/#changes-since-2" }, "snapshot": { - "number": "7", + "number": "8", "spec": "CSS Box Model 4", "text": "Changes Since CSS Level 2", "url": "https://www.w3.org/TR/css-box-4/#changes-since-2" @@ -71,12 +91,26 @@ "url": "https://drafts.csswg.org/css-box-4/#changes-since-3" }, "snapshot": { - "number": "6", + "number": "7", "spec": "CSS Box Model 4", "text": "Changes Since CSS Level 3", "url": "https://www.w3.org/TR/css-box-4/#changes-since-3" } }, + "#fragmentation": { + "current": { + "number": "2.2", + "spec": "CSS Box Model 4", + "text": "Fragmentation", + "url": "https://drafts.csswg.org/css-box-4/#fragmentation" + }, + "snapshot": { + "number": "2.2", + "spec": "CSS Box Model 4", + "text": "Fragmentation", + "url": "https://www.w3.org/TR/css-box-4/#fragmentation" + } + }, "#index": { "current": { "number": "", @@ -125,12 +159,6 @@ "spec": "CSS Box Model 4", "text": "Informative References", "url": "https://drafts.csswg.org/css-box-4/#informative" - }, - "snapshot": { - "number": "", - "spec": "CSS Box Model 4", - "text": "Informative References", - "url": "https://www.w3.org/TR/css-box-4/#informative" } }, "#intro": { @@ -163,13 +191,13 @@ }, "#keywords": { "current": { - "number": "2.1", + "number": "2.3", "spec": "CSS Box Model 4", "text": "Box-edge Keywords", "url": "https://drafts.csswg.org/css-box-4/#keywords" }, "snapshot": { - "number": "2.1", + "number": "2.3", "spec": "CSS Box Model 4", "text": "Box-edge Keywords", "url": "https://www.w3.org/TR/css-box-4/#keywords" @@ -343,18 +371,18 @@ "url": "https://www.w3.org/TR/css-box-4/#placement" } }, - "#priv-sec": { + "#priv": { "current": { "number": "9", "spec": "CSS Box Model 4", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-box-4/#priv-sec" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-box-4/#priv" }, "snapshot": { - "number": "8", + "number": "9", "spec": "CSS Box Model 4", - "text": "Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-box-4/#priv-sec" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-box-4/#priv" } }, "#property-index": { @@ -385,6 +413,20 @@ "url": "https://www.w3.org/TR/css-box-4/#references" } }, + "#sec": { + "current": { + "number": "", + "spec": "CSS Box Model 4", + "text": "10. Security Considerations", + "url": "https://drafts.csswg.org/css-box-4/#sec" + }, + "snapshot": { + "number": "", + "spec": "CSS Box Model 4", + "text": "10. Security Considerations", + "url": "https://www.w3.org/TR/css-box-4/#sec" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-cascade-3.json b/bikeshed/spec-data/readonly/headings/headings-css-cascade-3.json index e6b907ca2b..aa665b72ce 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-cascade-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-cascade-3.json @@ -617,7 +617,7 @@ "snapshot": { "number": "", "spec": "CSS Cascading 3", - "text": "107 TestsCSS Cascading and Inheritance Level 3", + "text": "CSS Cascading and Inheritance Level 3", "url": "https://www.w3.org/TR/css-cascade-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-cascade-5.json b/bikeshed/spec-data/readonly/headings/headings-css-cascade-5.json index 3c51e4ee83..1b70e0db7e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-cascade-5.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-cascade-5.json @@ -400,12 +400,6 @@ } }, "#extensions-to-cssimportrule-interface": { - "current": { - "number": "8.1", - "spec": "CSS Cascading 5", - "text": "Extensions to the CSSImportRule interface", - "url": "https://drafts.csswg.org/css-cascade-5/#extensions-to-cssimportrule-interface" - }, "snapshot": { "number": "8.1", "spec": "CSS Cascading 5", @@ -893,7 +887,7 @@ }, "#the-csslayerblockrule-interface": { "current": { - "number": "8.2", + "number": "8.1", "spec": "CSS Cascading 5", "text": "The CSSLayerBlockRule interface", "url": "https://drafts.csswg.org/css-cascade-5/#the-csslayerblockrule-interface" @@ -907,7 +901,7 @@ }, "#the-csslayerstatementrule-interface": { "current": { - "number": "8.3", + "number": "8.2", "spec": "CSS Cascading 5", "text": "The CSSLayerStatementRule interface", "url": "https://drafts.csswg.org/css-cascade-5/#the-csslayerstatementrule-interface" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-cascade-6.json b/bikeshed/spec-data/readonly/headings/headings-css-cascade-6.json index df3faba55e..16dc5fa748 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-cascade-6.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-cascade-6.json @@ -29,13 +29,13 @@ }, "#additions-l3": { "current": { - "number": "4.4", + "number": "4.5", "spec": "CSS Cascading 6", "text": "Additions Since Level 3", "url": "https://drafts.csswg.org/css-cascade-6/#additions-l3" }, "snapshot": { - "number": "3.3", + "number": "3.4", "spec": "CSS Cascading 6", "text": "Additions Since Level 3", "url": "https://www.w3.org/TR/css-cascade-6/#additions-l3" @@ -43,13 +43,13 @@ }, "#additions-l4": { "current": { - "number": "4.3", + "number": "4.4", "spec": "CSS Cascading 6", "text": "Additions Since Level 4", "url": "https://drafts.csswg.org/css-cascade-6/#additions-l4" }, "snapshot": { - "number": "3.2", + "number": "3.3", "spec": "CSS Cascading 6", "text": "Additions Since Level 4", "url": "https://www.w3.org/TR/css-cascade-6/#additions-l4" @@ -57,13 +57,13 @@ }, "#additions-l5": { "current": { - "number": "4.2", + "number": "4.3", "spec": "CSS Cascading 6", "text": "Additions Since Level 5", "url": "https://drafts.csswg.org/css-cascade-6/#additions-l5" }, "snapshot": { - "number": "3.1", + "number": "3.2", "spec": "CSS Cascading 6", "text": "Additions Since Level 5", "url": "https://www.w3.org/TR/css-cascade-6/#additions-l5" @@ -127,13 +127,13 @@ }, "#changes-2": { "current": { - "number": "4.5", + "number": "4.6", "spec": "CSS Cascading 6", "text": "Additions Since Level 2", "url": "https://drafts.csswg.org/css-cascade-6/#changes-2" }, "snapshot": { - "number": "3.4", + "number": "3.5", "spec": "CSS Cascading 6", "text": "Additions Since Level 2", "url": "https://www.w3.org/TR/css-cascade-6/#changes-2" @@ -143,8 +143,22 @@ "current": { "number": "4.1", "spec": "CSS Cascading 6", - "text": "Changes since the 21 December 2021 First Public Working Draft", + "text": "Changes since the 21 March 2023 Working Draft", "url": "https://drafts.csswg.org/css-cascade-6/#changes-2022-08" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS Cascading 6", + "text": "Changes since the 21 December 2021 First Public Working Draft", + "url": "https://www.w3.org/TR/css-cascade-6/#changes-2022-08" + } + }, + "#changes-2022-08%E2%91%A0": { + "current": { + "number": "4.2", + "spec": "CSS Cascading 6", + "text": "Changes since the 21 December 2021 First Public Working Draft", + "url": "https://drafts.csswg.org/css-cascade-6/#changes-2022-08%E2%91%A0" } }, "#cssom": { @@ -267,6 +281,12 @@ "spec": "CSS Cascading 6", "text": "Layer Ordering", "url": "https://drafts.csswg.org/css-cascade-6/#layer-ordering" + }, + "snapshot": { + "number": "2.4.1", + "spec": "CSS Cascading 6", + "text": "Layer Ordering", + "url": "https://www.w3.org/TR/css-cascade-6/#layer-ordering" } }, "#layering": { @@ -305,24 +325,24 @@ "url": "https://drafts.csswg.org/css-cascade-6/#preshint" }, "snapshot": { - "number": "2.6", + "number": "2.7", "spec": "CSS Cascading 6", "text": "Precedence of Non-CSS Presentational Hints", "url": "https://www.w3.org/TR/css-cascade-6/#preshint" } }, - "#priv-sec": { + "#privacy": { "current": { - "number": "", + "number": "5", "spec": "CSS Cascading 6", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-cascade-6/#priv-sec" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-cascade-6/#privacy" }, "snapshot": { - "number": "", + "number": "4", "spec": "CSS Cascading 6", - "text": "Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-cascade-6/#priv-sec" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-cascade-6/#privacy" } }, "#references": { @@ -339,54 +359,110 @@ "url": "https://www.w3.org/TR/css-cascade-6/#references" } }, - "#scope-atrule": { + "#scope-combinator": { + "snapshot": { + "number": "2.6", + "spec": "CSS Cascading 6", + "text": "Scoped Descendant Combinator", + "url": "https://www.w3.org/TR/css-cascade-6/#scope-combinator" + } + }, + "#scope-effects": { "current": { "number": "2.5.1", "spec": "CSS Cascading 6", - "text": "Scoping Styles: the @scope rule", - "url": "https://drafts.csswg.org/css-cascade-6/#scope-atrule" + "text": "Effects of @scope", + "url": "https://drafts.csswg.org/css-cascade-6/#scope-effects" }, "snapshot": { "number": "2.5.1", "spec": "CSS Cascading 6", - "text": "Scoping Styles: the @scope rule", - "url": "https://www.w3.org/TR/css-cascade-6/#scope-atrule" + "text": "Effects of @scope", + "url": "https://www.w3.org/TR/css-cascade-6/#scope-effects" } }, - "#scope-combinator": { + "#scope-limits": { + "current": { + "number": "2.5.4", + "spec": "CSS Cascading 6", + "text": "Identifying Scoping Roots and Limits", + "url": "https://drafts.csswg.org/css-cascade-6/#scope-limits" + }, + "snapshot": { + "number": "2.5.4", + "spec": "CSS Cascading 6", + "text": "Identifying Scoping Roots and Limits", + "url": "https://www.w3.org/TR/css-cascade-6/#scope-limits" + } + }, + "#scope-scope": { + "current": { + "number": "2.5.5", + "spec": "CSS Cascading 6", + "text": "Scope Nesting", + "url": "https://drafts.csswg.org/css-cascade-6/#scope-scope" + }, + "snapshot": { + "number": "2.5.5", + "spec": "CSS Cascading 6", + "text": "Scope Nesting", + "url": "https://www.w3.org/TR/css-cascade-6/#scope-scope" + } + }, + "#scope-syntax": { "current": { "number": "2.5.2", "spec": "CSS Cascading 6", - "text": "Scoped Descendant Combinator", - "url": "https://drafts.csswg.org/css-cascade-6/#scope-combinator" + "text": "Syntax of @scope", + "url": "https://drafts.csswg.org/css-cascade-6/#scope-syntax" }, "snapshot": { "number": "2.5.2", "spec": "CSS Cascading 6", - "text": "Scoped Descendant Combinator", - "url": "https://www.w3.org/TR/css-cascade-6/#scope-combinator" + "text": "Syntax of @scope", + "url": "https://www.w3.org/TR/css-cascade-6/#scope-syntax" + } + }, + "#scoped-rules": { + "current": { + "number": "2.5.3", + "spec": "CSS Cascading 6", + "text": "Scoped Style Rules", + "url": "https://drafts.csswg.org/css-cascade-6/#scoped-rules" + }, + "snapshot": { + "number": "2.5.3", + "spec": "CSS Cascading 6", + "text": "Scoped Style Rules", + "url": "https://www.w3.org/TR/css-cascade-6/#scoped-rules" } }, "#scoped-styles": { "current": { "number": "2.5", "spec": "CSS Cascading 6", - "text": "Scoped Styles", + "text": "Scoping Styles: the @scope rule", "url": "https://drafts.csswg.org/css-cascade-6/#scoped-styles" }, "snapshot": { "number": "2.5", "spec": "CSS Cascading 6", - "text": "Scoped Styles", + "text": "Scoping Styles: the @scope rule", "url": "https://www.w3.org/TR/css-cascade-6/#scoped-styles" } }, - "#selector-scoping": { + "#security": { + "current": { + "number": "6", + "spec": "CSS Cascading 6", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-cascade-6/#security" + }, "snapshot": { - "number": "2.5.3", + "number": "5", "spec": "CSS Cascading 6", - "text": "Selector Scoping Notation", - "url": "https://www.w3.org/TR/css-cascade-6/#selector-scoping" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-cascade-6/#security" } }, "#sotd": { @@ -395,14 +471,12 @@ "spec": "CSS Cascading 6", "text": "Status of this document", "url": "https://drafts.csswg.org/css-cascade-6/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Cascading 6", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-cascade-6/#status" + "url": "https://www.w3.org/TR/css-cascade-6/#sotd" } }, "#the-cssscoperule-interface": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-color-3.json b/bikeshed/spec-data/readonly/headings/headings-css-color-3.json index 05e94a2a34..690d014cdd 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-color-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-color-3.json @@ -70,6 +70,12 @@ } }, "#changes-20210805": { + "current": { + "number": "", + "spec": "CSS Color 3", + "text": "Changes since the 05 August 2021 Recommendation", + "url": "https://drafts.csswg.org/css-color-3/#changes-20210805" + }, "snapshot": { "number": "", "spec": "CSS Color 3", @@ -107,9 +113,9 @@ }, "#color": { "current": { - "number": "", + "number": "3", "spec": "CSS Color 3", - "text": "9 Tests PaleMoon engine test details3. Color properties", + "text": "Color properties", "url": "https://drafts.csswg.org/css-color-3/#color" }, "snapshot": { @@ -121,9 +127,9 @@ }, "#colorunits": { "current": { - "number": "", + "number": "4", "spec": "CSS Color 3", - "text": "4 Tests PaleMoon engine test details4. Color units", + "text": "Color units", "url": "https://drafts.csswg.org/css-color-3/#colorunits" }, "snapshot": { @@ -163,9 +169,9 @@ }, "#currentcolor": { "current": { - "number": "", + "number": "4.4", "spec": "CSS Color 3", - "text": "3 Tests PaleMoon engine test details4.4. ‘currentColor’ color keyword", + "text": "‘currentColor’ color keyword", "url": "https://drafts.csswg.org/css-color-3/#currentcolor" }, "snapshot": { @@ -189,19 +195,11 @@ "url": "https://www.w3.org/TR/css-color-3/#dependencies" } }, - "#dropped": { - "current": { - "number": "9", - "spec": "CSS Color 3", - "text": "Call for Implementations of dropped features", - "url": "https://drafts.csswg.org/css-color-3/#dropped" - } - }, "#foreground": { "current": { - "number": "", + "number": "3.1", "spec": "CSS Color 3", - "text": "2 Tests PaleMoon engine test details3.1. Foreground color: the ‘color’ property", + "text": "Foreground color: the ‘color’ property", "url": "https://drafts.csswg.org/css-color-3/#foreground" }, "snapshot": { @@ -353,9 +351,9 @@ }, "#numerical": { "current": { - "number": "", + "number": "4.2", "spec": "CSS Color 3", - "text": "1 Test PaleMoon engine test details4.2. Numerical color values", + "text": "Numerical color values", "url": "https://drafts.csswg.org/css-color-3/#numerical" }, "snapshot": { @@ -365,6 +363,14 @@ "url": "https://www.w3.org/TR/css-color-3/#numerical" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Color 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-color-3/#privacy" + } + }, "#profiles": { "current": { "number": "7", @@ -423,9 +429,9 @@ }, "#rgba-color": { "current": { - "number": "", + "number": "4.2.2", "spec": "CSS Color 3", - "text": "1 Test PaleMoon engine test details4.2.2. RGBA color values", + "text": "RGBA color values", "url": "https://drafts.csswg.org/css-color-3/#rgba-color" }, "snapshot": { @@ -449,6 +455,14 @@ "url": "https://www.w3.org/TR/css-color-3/#sample" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Color 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-color-3/#security" + } + }, "#status": { "current": { "number": "", @@ -495,7 +509,7 @@ "current": { "number": "", "spec": "CSS Color 3", - "text": "13 Tests PaleMoon engine test detailsCSS Color Module Level 3", + "text": "CSS Color Module Level 3", "url": "https://drafts.csswg.org/css-color-3/#title" }, "snapshot": { @@ -521,9 +535,9 @@ }, "#transparency": { "current": { - "number": "", + "number": "3.2", "spec": "CSS Color 3", - "text": "7 Tests PaleMoon engine test details3.2. Transparency: the ‘opacity’ property", + "text": "Transparency: the ‘opacity’ property", "url": "https://drafts.csswg.org/css-color-3/#transparency" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-color-4.json b/bikeshed/spec-data/readonly/headings/headings-css-color-4.json index 751517af49..2696692175 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-color-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-color-4.json @@ -83,6 +83,14 @@ "url": "https://www.w3.org/TR/css-color-4/#GM-hue-curvature" } }, + "#HTML-compatible-serialization-of-srgb": { + "current": { + "number": "15.2.1", + "spec": "CSS Color 4", + "text": "HTML-compatible serialization of sRGB values", + "url": "https://drafts.csswg.org/css-color-4/#HTML-compatible-serialization-of-srgb" + } + }, "#a11y-sec": { "current": { "number": "", @@ -157,13 +165,13 @@ "current": { "number": "4.2", "spec": "CSS Color 4", - "text": "Representing Transparency: the <alpha-value> syntax", + "text": "Representing Transparency in Colors: the <alpha-value> syntax", "url": "https://drafts.csswg.org/css-color-4/#alpha-syntax" }, "snapshot": { "number": "4.2", "spec": "CSS Color 4", - "text": "Representing Transparency: the <alpha-value> syntax", + "text": "Representing Transparency in Colors: the <alpha-value> syntax", "url": "https://www.w3.org/TR/css-color-4/#alpha-syntax" } }, @@ -327,6 +335,20 @@ "spec": "CSS Color 4", "text": "Changes since the Candidate Recommendation Draft of 1 November 2022", "url": "https://drafts.csswg.org/css-color-4/#changes-from-20221101" + }, + "snapshot": { + "number": "", + "spec": "CSS Color 4", + "text": "Changes since the Candidate Recommendation Draft of 1 November 2022", + "url": "https://www.w3.org/TR/css-color-4/#changes-from-20221101" + } + }, + "#changes-from-20240213": { + "current": { + "number": "", + "spec": "CSS Color 4", + "text": "Changes since the Candidate Recommendation Draft of 13 Feb 2024", + "url": "https://drafts.csswg.org/css-color-4/#changes-from-20240213" } }, "#changes-from-3": { @@ -477,9 +499,9 @@ "url": "https://drafts.csswg.org/css-color-4/#color-syntax-legacy" }, "snapshot": { - "number": "4.1.1", + "number": "4.1.2", "spec": "CSS Color 4", - "text": "Legacy Comma-separated Color Function Syntax", + "text": "Legacy (Comma-separated) Color Function Syntax", "url": "https://www.w3.org/TR/css-color-4/#color-syntax-legacy" } }, @@ -489,6 +511,12 @@ "spec": "CSS Color 4", "text": "Modern (Space-separated) Color Function Syntax", "url": "https://drafts.csswg.org/css-color-4/#color-syntax-modern" + }, + "snapshot": { + "number": "4.1.1", + "spec": "CSS Color 4", + "text": "Modern (Space-separated) Color Function Syntax", + "url": "https://www.w3.org/TR/css-color-4/#color-syntax-modern" } }, "#color-type": { @@ -519,6 +547,14 @@ "url": "https://www.w3.org/TR/css-color-4/#css-gamut-mapping" } }, + "#css-serialization-of-srgb": { + "current": { + "number": "15.2.2", + "spec": "CSS Color 4", + "text": "CSS serialization of sRGB values", + "url": "https://drafts.csswg.org/css-color-4/#css-serialization-of-srgb" + } + }, "#css-system-colors": { "current": { "number": "6.2", @@ -549,15 +585,15 @@ }, "#deprecated-system-colors": { "current": { - "number": "", + "number": "A", "spec": "CSS Color 4", - "text": "Appendix A: Deprecated CSS System Colors", + "text": "Deprecated CSS System Colors", "url": "https://drafts.csswg.org/css-color-4/#deprecated-system-colors" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Color 4", - "text": "Appendix A: Deprecated CSS System Colors", + "text": "Deprecated CSS System Colors", "url": "https://www.w3.org/TR/css-color-4/#deprecated-system-colors" } }, @@ -869,20 +905,6 @@ "url": "https://www.w3.org/TR/css-color-4/#introduction" } }, - "#issues-index": { - "current": { - "number": "", - "spec": "CSS Color 4", - "text": "Issues Index", - "url": "https://drafts.csswg.org/css-color-4/#issues-index" - }, - "snapshot": { - "number": "", - "spec": "CSS Color 4", - "text": "Issues Index", - "url": "https://www.w3.org/TR/css-color-4/#issues-index" - } - }, "#lab-colors": { "current": { "number": "9", @@ -1009,6 +1031,20 @@ "url": "https://www.w3.org/TR/css-color-4/#oklab-lab-to-predefined" } }, + "#parse-color": { + "current": { + "number": "4.5", + "spec": "CSS Color 4", + "text": "Parsing a <color> Value", + "url": "https://drafts.csswg.org/css-color-4/#parse-color" + }, + "snapshot": { + "number": "4.5", + "spec": "CSS Color 4", + "text": "Parsing a <color> Value", + "url": "https://www.w3.org/TR/css-color-4/#parse-color" + } + }, "#powerless": { "current": { "number": "4.4.1", @@ -1193,15 +1229,15 @@ }, "#quirky-color": { "current": { - "number": "", + "number": "B", "spec": "CSS Color 4", - "text": "Appendix B: Deprecated Quirky Hex Colors", + "text": "Deprecated Quirky Hex Colors", "url": "https://drafts.csswg.org/css-color-4/#quirky-color" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Color 4", - "text": "Appendix B: Deprecated Quirky Hex Colors", + "text": "Deprecated Quirky Hex Colors", "url": "https://www.w3.org/TR/css-color-4/#quirky-color" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-color-5.json b/bikeshed/spec-data/readonly/headings/headings-css-color-5.json index f2f34d1680..a6781a8af2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-color-5.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-color-5.json @@ -1,4 +1,12 @@ { + "#a11y-sec": { + "current": { + "number": "", + "spec": "CSS Color 5", + "text": "16. Accessibility Considerations", + "url": "https://drafts.csswg.org/css-color-5/#a11y-sec" + } + }, "#abstract": { "current": { "number": "", @@ -17,8 +25,14 @@ "current": { "number": "", "spec": "CSS Color 5", - "text": "10. APIs", + "text": "12. APIs", "url": "https://drafts.csswg.org/css-color-5/#apis" + }, + "snapshot": { + "number": "", + "spec": "CSS Color 5", + "text": "12. APIs", + "url": "https://www.w3.org/TR/css-color-5/#apis" } }, "#at-profile": { @@ -29,7 +43,7 @@ "url": "https://drafts.csswg.org/css-color-5/#at-profile" }, "snapshot": { - "number": "4.3", + "number": "5.3", "spec": "CSS Color 5", "text": "Specifying a Color Profile: the @color-profile at-rule", "url": "https://www.w3.org/TR/css-color-5/#at-profile" @@ -43,7 +57,7 @@ "url": "https://drafts.csswg.org/css-color-5/#cal-cmyk" }, "snapshot": { - "number": "4.4", + "number": "5.4", "spec": "CSS Color 5", "text": "CSS and Print: Using Calibrated CMYK and Other Printed Color Spaces", "url": "https://www.w3.org/TR/css-color-5/#cal-cmyk" @@ -53,25 +67,25 @@ "current": { "number": "", "spec": "CSS Color 5", - "text": "14. Changes", + "text": "17. Changes", "url": "https://drafts.csswg.org/css-color-5/#changes" }, "snapshot": { "number": "", "spec": "CSS Color 5", - "text": "11. Changes", + "text": "16. Changes", "url": "https://www.w3.org/TR/css-color-5/#changes" } }, "#changes-20200303": { "current": { - "number": "14.5", + "number": "17.6", "spec": "CSS Color 5", "text": "Since the FPWD of 10 June 2020", "url": "https://drafts.csswg.org/css-color-5/#changes-20200303" }, "snapshot": { - "number": "11.4", + "number": "16.5", "spec": "CSS Color 5", "text": "Since the FPWD of 10 June 2020", "url": "https://www.w3.org/TR/css-color-5/#changes-20200303" @@ -79,13 +93,13 @@ }, "#changes-20210601": { "current": { - "number": "14.4", + "number": "17.5", "spec": "CSS Color 5", "text": "Since the Working Draft of 1 June 2021", "url": "https://drafts.csswg.org/css-color-5/#changes-20210601" }, "snapshot": { - "number": "11.3", + "number": "16.4", "spec": "CSS Color 5", "text": "Since the Working Draft of 1 June 2021", "url": "https://www.w3.org/TR/css-color-5/#changes-20210601" @@ -93,13 +107,13 @@ }, "#changes-20211215": { "current": { - "number": "14.3", + "number": "17.4", "spec": "CSS Color 5", "text": "Since the Working Draft of 15 December 2021", "url": "https://drafts.csswg.org/css-color-5/#changes-20211215" }, "snapshot": { - "number": "11.2", + "number": "16.3", "spec": "CSS Color 5", "text": "Since the Working Draft of 15 December 2021", "url": "https://www.w3.org/TR/css-color-5/#changes-20211215" @@ -107,13 +121,13 @@ }, "#changes-20220428": { "current": { - "number": "14.2", + "number": "17.3", "spec": "CSS Color 5", "text": "Since the Working Draft of 28 April 2022", "url": "https://drafts.csswg.org/css-color-5/#changes-20220428" }, "snapshot": { - "number": "11.1", + "number": "16.2", "spec": "CSS Color 5", "text": "Since the Working Draft of 28 April 2022", "url": "https://www.w3.org/TR/css-color-5/#changes-20220428" @@ -121,21 +135,35 @@ }, "#changes-20220628": { "current": { - "number": "14.1", + "number": "17.2", "spec": "CSS Color 5", "text": "Since the Working Draft of 28 June 2022", "url": "https://drafts.csswg.org/css-color-5/#changes-20220628" + }, + "snapshot": { + "number": "16.1", + "spec": "CSS Color 5", + "text": "Since the Working Draft of 28 June 2022", + "url": "https://www.w3.org/TR/css-color-5/#changes-20220628" + } + }, + "#changes-20240229": { + "current": { + "number": "17.1", + "spec": "CSS Color 5", + "text": "Since the Working Draft of 29 February 2024", + "url": "https://drafts.csswg.org/css-color-5/#changes-20240229" } }, "#changes-from-4": { "current": { - "number": "14.6", + "number": "17.7", "spec": "CSS Color 5", "text": "Changes from CSS Color 4", "url": "https://drafts.csswg.org/css-color-5/#changes-from-4" }, "snapshot": { - "number": "11.5", + "number": "16.6", "spec": "CSS Color 5", "text": "Changes from CSS Color 4", "url": "https://www.w3.org/TR/css-color-5/#changes-from-4" @@ -149,7 +177,7 @@ "url": "https://drafts.csswg.org/css-color-5/#cmyk-rgb" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "CSS Color 5", "text": "Naively Converting Between Uncalibrated CMYK and sRGB-Based Color", "url": "https://www.w3.org/TR/css-color-5/#cmyk-rgb" @@ -163,7 +191,7 @@ "url": "https://drafts.csswg.org/css-color-5/#cmyk-to-lab" }, "snapshot": { - "number": "4.5", + "number": "5.5", "spec": "CSS Color 5", "text": "Converting CMYK colors to Lab", "url": "https://www.w3.org/TR/css-color-5/#cmyk-to-lab" @@ -173,13 +201,13 @@ "current": { "number": "5", "spec": "CSS Color 5", - "text": "Specifying Custom Color Spaces: the color() Function", + "text": "Specifying Predefined and Custom Color Spaces: the color() Function", "url": "https://drafts.csswg.org/css-color-5/#color-function" }, "snapshot": { - "number": "4", + "number": "5", "spec": "CSS Color 5", - "text": "Specifying Custom Color Spaces: the color() Function", + "text": "Specifying Predefined and Custom Color Spaces: the color() Function", "url": "https://www.w3.org/TR/css-color-5/#color-function" } }, @@ -191,7 +219,7 @@ "url": "https://drafts.csswg.org/css-color-5/#color-mix" }, "snapshot": { - "number": "2", + "number": "3", "spec": "CSS Color 5", "text": "Mixing Colors: the color-mix() Function", "url": "https://www.w3.org/TR/css-color-5/#color-mix" @@ -205,7 +233,7 @@ "url": "https://drafts.csswg.org/css-color-5/#color-mix-color-space-effect" }, "snapshot": { - "number": "2.3", + "number": "3.3", "spec": "CSS Color 5", "text": "Effect of Mixing Color Space on color-mix", "url": "https://www.w3.org/TR/css-color-5/#color-mix-color-space-effect" @@ -219,7 +247,7 @@ "url": "https://drafts.csswg.org/css-color-5/#color-mix-percent-norm" }, "snapshot": { - "number": "2.1", + "number": "3.1", "spec": "CSS Color 5", "text": "Percentage Normalization", "url": "https://www.w3.org/TR/css-color-5/#color-mix-percent-norm" @@ -233,7 +261,7 @@ "url": "https://drafts.csswg.org/css-color-5/#color-mix-result" }, "snapshot": { - "number": "2.2", + "number": "3.2", "spec": "CSS Color 5", "text": "Calculating the Result of color-mix", "url": "https://www.w3.org/TR/css-color-5/#color-mix-result" @@ -247,7 +275,7 @@ "url": "https://drafts.csswg.org/css-color-5/#color-mix-with-alpha" }, "snapshot": { - "number": "2.4", + "number": "3.4", "spec": "CSS Color 5", "text": "Effect of Non-Unity Alpha on color-mix", "url": "https://www.w3.org/TR/css-color-5/#color-mix-with-alpha" @@ -273,6 +301,26 @@ "spec": "CSS Color 5", "text": "The <color> syntax", "url": "https://drafts.csswg.org/css-color-5/#color-syntax" + }, + "snapshot": { + "number": "2", + "spec": "CSS Color 5", + "text": "The <color> syntax", + "url": "https://www.w3.org/TR/css-color-5/#color-syntax" + } + }, + "#contrast-color": { + "current": { + "number": "8", + "spec": "CSS Color 5", + "text": "Dynamically specifying a text color with adequate contrast: the contrast-color() Function", + "url": "https://drafts.csswg.org/css-color-5/#contrast-color" + }, + "snapshot": { + "number": "8", + "spec": "CSS Color 5", + "text": "Dynamically specifying a text color with adequate contrast: the contrast-color() Function", + "url": "https://www.w3.org/TR/css-color-5/#contrast-color" } }, "#custom-color": { @@ -283,7 +331,7 @@ "url": "https://drafts.csswg.org/css-color-5/#custom-color" }, "snapshot": { - "number": "4.2", + "number": "5.2", "spec": "CSS Color 5", "text": "Custom Color Spaces", "url": "https://www.w3.org/TR/css-color-5/#custom-color" @@ -297,7 +345,7 @@ "url": "https://drafts.csswg.org/css-color-5/#device-cmyk" }, "snapshot": { - "number": "5", + "number": "6", "spec": "CSS Color 5", "text": "Uncalibrated CMYK Colors: the device-cmyk() Function", "url": "https://www.w3.org/TR/css-color-5/#device-cmyk" @@ -309,6 +357,12 @@ "spec": "CSS Color 5", "text": "IDL Index", "url": "https://drafts.csswg.org/css-color-5/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Color 5", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-color-5/#idl-index" } }, "#index": { @@ -353,20 +407,40 @@ "url": "https://www.w3.org/TR/css-color-5/#index-defined-here" } }, + "#informative": { + "current": { + "number": "", + "spec": "CSS Color 5", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-color-5/#informative" + } + }, "#interpolation": { "current": { - "number": "7", + "number": "9", "spec": "CSS Color 5", "text": "Color Interpolation", "url": "https://drafts.csswg.org/css-color-5/#interpolation" + }, + "snapshot": { + "number": "9", + "spec": "CSS Color 5", + "text": "Color Interpolation", + "url": "https://www.w3.org/TR/css-color-5/#interpolation" } }, "#interpolation-space": { "current": { - "number": "7.1", + "number": "9.1", "spec": "CSS Color 5", "text": "Color Space for Interpolation", "url": "https://drafts.csswg.org/css-color-5/#interpolation-space" + }, + "snapshot": { + "number": "9.1", + "spec": "CSS Color 5", + "text": "Color Space for Interpolation", + "url": "https://www.w3.org/TR/css-color-5/#interpolation-space" } }, "#intro": { @@ -391,12 +465,26 @@ "url": "https://drafts.csswg.org/css-color-5/#lab-to-cmyk" }, "snapshot": { - "number": "4.6", + "number": "5.6", "spec": "CSS Color 5", "text": "Converting Lab colors to CMYK", "url": "https://www.w3.org/TR/css-color-5/#lab-to-cmyk" } }, + "#light-dark": { + "current": { + "number": "7", + "spec": "CSS Color 5", + "text": "Reacting to the used color-scheme: the light-dark() Function", + "url": "https://drafts.csswg.org/css-color-5/#light-dark" + }, + "snapshot": { + "number": "7", + "spec": "CSS Color 5", + "text": "Reacting to the used color-scheme: the light-dark() Function", + "url": "https://www.w3.org/TR/css-color-5/#light-dark" + } + }, "#normative": { "current": { "number": "", @@ -415,13 +503,13 @@ "current": { "number": "", "spec": "CSS Color 5", - "text": "13. Privacy Considerations", + "text": "15. Privacy Considerations", "url": "https://drafts.csswg.org/css-color-5/#privacy" }, "snapshot": { "number": "", "spec": "CSS Color 5", - "text": "10. Privacy Considerations", + "text": "15. Privacy Considerations", "url": "https://www.w3.org/TR/css-color-5/#privacy" } }, @@ -439,6 +527,14 @@ "url": "https://www.w3.org/TR/css-color-5/#property-index" } }, + "#rcs-intro": { + "current": { + "number": "4.1", + "spec": "CSS Color 5", + "text": "Processing Model for Relative Colors", + "url": "https://drafts.csswg.org/css-color-5/#rcs-intro" + } + }, "#references": { "current": { "number": "", @@ -455,13 +551,13 @@ }, "#relative-HSL": { "current": { - "number": "4.2", + "number": "4.4", "spec": "CSS Color 5", "text": "Relative HSL Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-HSL" }, "snapshot": { - "number": "3.2", + "number": "4.2", "spec": "CSS Color 5", "text": "Relative HSL Colors", "url": "https://www.w3.org/TR/css-color-5/#relative-HSL" @@ -469,13 +565,13 @@ }, "#relative-HWB": { "current": { - "number": "4.3", + "number": "4.5", "spec": "CSS Color 5", "text": "Relative HWB Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-HWB" }, "snapshot": { - "number": "3.3", + "number": "4.3", "spec": "CSS Color 5", "text": "Relative HWB Colors", "url": "https://www.w3.org/TR/css-color-5/#relative-HWB" @@ -483,13 +579,13 @@ }, "#relative-LCH": { "current": { - "number": "4.6", + "number": "4.8", "spec": "CSS Color 5", "text": "Relative LCH Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-LCH" }, "snapshot": { - "number": "3.6", + "number": "4.6", "spec": "CSS Color 5", "text": "Relative LCH Colors", "url": "https://www.w3.org/TR/css-color-5/#relative-LCH" @@ -497,59 +593,55 @@ }, "#relative-Lab": { "current": { - "number": "4.4", + "number": "4.6", "spec": "CSS Color 5", "text": "Relative Lab Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-Lab" }, "snapshot": { - "number": "3.4", + "number": "4.4", "spec": "CSS Color 5", "text": "Relative Lab Colors", "url": "https://www.w3.org/TR/css-color-5/#relative-Lab" } }, - "#relative-OKLCH": { - "snapshot": { - "number": "3.7", - "spec": "CSS Color 5", - "text": "Relative OKLCH Colors", - "url": "https://www.w3.org/TR/css-color-5/#relative-OKLCH" - } - }, - "#relative-OKLab": { - "snapshot": { - "number": "3.5", - "spec": "CSS Color 5", - "text": "Relative OKLab Colors", - "url": "https://www.w3.org/TR/css-color-5/#relative-OKLab" - } - }, "#relative-Oklab": { "current": { - "number": "4.5", + "number": "4.7", "spec": "CSS Color 5", "text": "Relative Oklab Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-Oklab" + }, + "snapshot": { + "number": "4.5", + "spec": "CSS Color 5", + "text": "Relative Oklab Colors", + "url": "https://www.w3.org/TR/css-color-5/#relative-Oklab" } }, "#relative-Oklch": { "current": { - "number": "4.7", + "number": "4.9", "spec": "CSS Color 5", "text": "Relative Oklch Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-Oklch" + }, + "snapshot": { + "number": "4.7", + "spec": "CSS Color 5", + "text": "Relative Oklch Colors", + "url": "https://www.w3.org/TR/css-color-5/#relative-Oklch" } }, "#relative-RGB": { "current": { - "number": "4.1", + "number": "4.3", "spec": "CSS Color 5", "text": "Relative sRGB Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-RGB" }, "snapshot": { - "number": "3.1", + "number": "4.1", "spec": "CSS Color 5", "text": "Relative sRGB Colors", "url": "https://www.w3.org/TR/css-color-5/#relative-RGB" @@ -563,7 +655,7 @@ "url": "https://drafts.csswg.org/css-color-5/#relative-color-function" }, "snapshot": { - "number": "4.1", + "number": "5.1", "spec": "CSS Color 5", "text": "Relative Color-Function Colors", "url": "https://www.w3.org/TR/css-color-5/#relative-color-function" @@ -573,39 +665,47 @@ "current": { "number": "4", "spec": "CSS Color 5", - "text": "Relative Color Syntax", + "text": "Relative Colors", "url": "https://drafts.csswg.org/css-color-5/#relative-colors" }, "snapshot": { - "number": "3", + "number": "4", "spec": "CSS Color 5", "text": "Relative Color Syntax", "url": "https://www.w3.org/TR/css-color-5/#relative-colors" } }, + "#relative-syntax": { + "current": { + "number": "4.2", + "spec": "CSS Color 5", + "text": "Relative Color Syntax", + "url": "https://drafts.csswg.org/css-color-5/#relative-syntax" + } + }, "#resolving-color-values": { "current": { - "number": "8", + "number": "", "spec": "CSS Color 5", - "text": "Resolving <color> Values", + "text": "10. Resolving <color> Values", "url": "https://drafts.csswg.org/css-color-5/#resolving-color-values" }, "snapshot": { - "number": "6", + "number": "", "spec": "CSS Color 5", - "text": "Resolving <color> Values", + "text": "10. Resolving <color> Values", "url": "https://www.w3.org/TR/css-color-5/#resolving-color-values" } }, "#resolving-device-cmyk-values": { "current": { - "number": "8.3", + "number": "10.3", "spec": "CSS Color 5", "text": "Resolving device-cmyk Values", "url": "https://drafts.csswg.org/css-color-5/#resolving-device-cmyk-values" }, "snapshot": { - "number": "6.2", + "number": "10.3", "spec": "CSS Color 5", "text": "Resolving device-cmyk Values", "url": "https://www.w3.org/TR/css-color-5/#resolving-device-cmyk-values" @@ -613,13 +713,13 @@ }, "#resolving-mix": { "current": { - "number": "8.1", + "number": "10.1", "spec": "CSS Color 5", "text": "Resolving color-mix() Values", "url": "https://drafts.csswg.org/css-color-5/#resolving-mix" }, "snapshot": { - "number": "6.1", + "number": "10.1", "spec": "CSS Color 5", "text": "Resolving color-mix() Values", "url": "https://www.w3.org/TR/css-color-5/#resolving-mix" @@ -627,23 +727,29 @@ }, "#resolving-rcs": { "current": { - "number": "8.2", + "number": "10.2", "spec": "CSS Color 5", "text": "Resolving Relative Color Syntax Values", "url": "https://drafts.csswg.org/css-color-5/#resolving-rcs" + }, + "snapshot": { + "number": "10.2", + "spec": "CSS Color 5", + "text": "Resolving Relative Color Syntax Values", + "url": "https://www.w3.org/TR/css-color-5/#resolving-rcs" } }, "#sample": { "current": { "number": "", "spec": "CSS Color 5", - "text": "11. Default Style Rules", + "text": "13. Default Style Rules", "url": "https://drafts.csswg.org/css-color-5/#sample" }, "snapshot": { - "number": "8", + "number": "", "spec": "CSS Color 5", - "text": "Default Style Rules", + "text": "13. Default Style Rules", "url": "https://www.w3.org/TR/css-color-5/#sample" } }, @@ -651,39 +757,39 @@ "current": { "number": "", "spec": "CSS Color 5", - "text": "12. Security Considerations", + "text": "14. Security Considerations", "url": "https://drafts.csswg.org/css-color-5/#security" }, "snapshot": { - "number": "9", + "number": "", "spec": "CSS Color 5", - "text": "Security Considerations", + "text": "14. Security Considerations", "url": "https://www.w3.org/TR/css-color-5/#security" } }, "#serial": { "current": { - "number": "9", + "number": "", "spec": "CSS Color 5", - "text": "Serialization", + "text": "11. Serialization", "url": "https://drafts.csswg.org/css-color-5/#serial" }, "snapshot": { - "number": "7", + "number": "", "spec": "CSS Color 5", - "text": "Serialization", + "text": "11. Serialization", "url": "https://www.w3.org/TR/css-color-5/#serial" } }, "#serial-color-mix": { "current": { - "number": "9.1", + "number": "11.1", "spec": "CSS Color 5", "text": "Serializing color-mix()", "url": "https://drafts.csswg.org/css-color-5/#serial-color-mix" }, "snapshot": { - "number": "7.1", + "number": "11.1", "spec": "CSS Color 5", "text": "Serializing color-mix()", "url": "https://www.w3.org/TR/css-color-5/#serial-color-mix" @@ -691,13 +797,13 @@ }, "#serial-custom-color": { "current": { - "number": "9.3", + "number": "11.3", "spec": "CSS Color 5", "text": "Serializing Custom Color Spaces", "url": "https://drafts.csswg.org/css-color-5/#serial-custom-color" }, "snapshot": { - "number": "7.3", + "number": "11.3", "spec": "CSS Color 5", "text": "Serializing Custom Color Spaces", "url": "https://www.w3.org/TR/css-color-5/#serial-custom-color" @@ -705,13 +811,13 @@ }, "#serial-relative-color": { "current": { - "number": "9.2", + "number": "11.2", "spec": "CSS Color 5", "text": "Serializing Relative Color Functions", "url": "https://drafts.csswg.org/css-color-5/#serial-relative-color" }, "snapshot": { - "number": "7.2", + "number": "11.2", "spec": "CSS Color 5", "text": "Serializing Relative Color Functions", "url": "https://www.w3.org/TR/css-color-5/#serial-relative-color" @@ -719,13 +825,13 @@ }, "#serializing-device-cmyk-values": { "current": { - "number": "9.4", + "number": "11.4", "spec": "CSS Color 5", "text": "Serializing device-cmyk Values", "url": "https://drafts.csswg.org/css-color-5/#serializing-device-cmyk-values" }, "snapshot": { - "number": "7.4", + "number": "11.4", "spec": "CSS Color 5", "text": "Serializing device-cmyk Values", "url": "https://www.w3.org/TR/css-color-5/#serializing-device-cmyk-values" @@ -737,22 +843,26 @@ "spec": "CSS Color 5", "text": "Status of this document", "url": "https://drafts.csswg.org/css-color-5/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Color 5", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-color-5/#status" + "url": "https://www.w3.org/TR/css-color-5/#sotd" } }, "#the-csscolorprofilerule-interface": { "current": { - "number": "10.1", + "number": "12.1", "spec": "CSS Color 5", "text": "The CSSColorProfileRule interface", "url": "https://drafts.csswg.org/css-color-5/#the-csscolorprofilerule-interface" + }, + "snapshot": { + "number": "12.1", + "spec": "CSS Color 5", + "text": "The CSSColorProfileRule interface", + "url": "https://www.w3.org/TR/css-color-5/#the-csscolorprofilerule-interface" } }, "#title": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-color-6.json b/bikeshed/spec-data/readonly/headings/headings-css-color-6.json index b116b2fddc..7a64f73b23 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-color-6.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-color-6.json @@ -1,7 +1,7 @@ { "#a11y": { "current": { - "number": "7", + "number": "8", "spec": "CSS Color 6", "text": "Accessibility Considerations", "url": "https://drafts.csswg.org/css-color-6/#a11y" @@ -17,7 +17,7 @@ }, "#changes": { "current": { - "number": "8", + "number": "9", "spec": "CSS Color 6", "text": "Changes", "url": "https://drafts.csswg.org/css-color-6/#changes" @@ -25,12 +25,20 @@ }, "#changes-from-5": { "current": { - "number": "8.1", + "number": "9.1", "spec": "CSS Color 6", "text": "Changes from Colors 5", "url": "https://drafts.csswg.org/css-color-6/#changes-from-5" } }, + "#color-layers": { + "current": { + "number": "3", + "spec": "CSS Color 6", + "text": "Layering Multiple Colors: the color-layers() function", + "url": "https://drafts.csswg.org/css-color-6/#color-layers" + } + }, "#colorcontrast": { "current": { "number": "2", @@ -137,7 +145,7 @@ }, "#privacy": { "current": { - "number": "6", + "number": "7", "spec": "CSS Color 6", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-color-6/#privacy" @@ -153,7 +161,7 @@ }, "#resolving-color-values": { "current": { - "number": "3", + "number": "4", "spec": "CSS Color 6", "text": "Resolving <color> Values", "url": "https://drafts.csswg.org/css-color-6/#resolving-color-values" @@ -161,15 +169,23 @@ }, "#resolving-contrast": { "current": { - "number": "3.1", + "number": "4.1", "spec": "CSS Color 6", "text": "Resolving contrast-color() values", "url": "https://drafts.csswg.org/css-color-6/#resolving-contrast" } }, + "#resolving-layers": { + "current": { + "number": "4.2", + "spec": "CSS Color 6", + "text": "Resolving color-layers() values", + "url": "https://drafts.csswg.org/css-color-6/#resolving-layers" + } + }, "#security": { "current": { - "number": "5", + "number": "6", "spec": "CSS Color 6", "text": "Security Considerations", "url": "https://drafts.csswg.org/css-color-6/#security" @@ -177,7 +193,7 @@ }, "#serial": { "current": { - "number": "4", + "number": "5", "spec": "CSS Color 6", "text": "Serialization", "url": "https://drafts.csswg.org/css-color-6/#serial" @@ -185,7 +201,7 @@ }, "#serial-contrast-color": { "current": { - "number": "4.1", + "number": "5.1", "spec": "CSS Color 6", "text": "Serializing contrast-color()", "url": "https://drafts.csswg.org/css-color-6/#serial-contrast-color" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-color-hdr.json b/bikeshed/spec-data/readonly/headings/headings-css-color-hdr.json index 1e8ae494a6..eccd04bb50 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-color-hdr.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-color-hdr.json @@ -1,7 +1,7 @@ { "#Compositing-SDR-HDR": { "current": { - "number": "3", + "number": "5", "spec": "CSS Color HDR 1", "text": "Compositing SDR and HDR content", "url": "https://drafts.csswg.org/css-color-hdr/#Compositing-SDR-HDR" @@ -9,7 +9,7 @@ }, "#ICtCp": { "current": { - "number": "2.5", + "number": "4.6", "spec": "CSS Color HDR 1", "text": "ICtCp", "url": "https://drafts.csswg.org/css-color-hdr/#ICtCp" @@ -17,7 +17,7 @@ }, "#JzCzHz": { "current": { - "number": "2.4", + "number": "4.5", "spec": "CSS Color HDR 1", "text": "JzCzHz", "url": "https://drafts.csswg.org/css-color-hdr/#JzCzHz" @@ -25,7 +25,7 @@ }, "#JzCzHz-to-Jzazbz": { "current": { - "number": "2.4.2", + "number": "4.5.2", "spec": "CSS Color HDR 1", "text": "Converting JzCzHz colors to Jzazbz colors", "url": "https://drafts.csswg.org/css-color-hdr/#JzCzHz-to-Jzazbz" @@ -33,7 +33,7 @@ }, "#Jzazbz": { "current": { - "number": "2.3", + "number": "4.4", "spec": "CSS Color HDR 1", "text": "Jzazbz", "url": "https://drafts.csswg.org/css-color-hdr/#Jzazbz" @@ -41,7 +41,7 @@ }, "#Jzazbz-to-JzCzHz": { "current": { - "number": "2.4.1", + "number": "4.5.1", "spec": "CSS Color HDR 1", "text": "Converting Jzazbz colors to JzCzHz colors", "url": "https://drafts.csswg.org/css-color-hdr/#Jzazbz-to-JzCzHz" @@ -63,6 +63,38 @@ "url": "https://drafts.csswg.org/css-color-hdr/#abstract" } }, + "#color-function": { + "current": { + "number": "3", + "spec": "CSS Color HDR 1", + "text": "Specifying Predefined and Custom Color Spaces: the color() Function", + "url": "https://drafts.csswg.org/css-color-hdr/#color-function" + } + }, + "#controlling-dynamic-range": { + "current": { + "number": "2", + "spec": "CSS Color HDR 1", + "text": "Controlling Dynamic Range", + "url": "https://drafts.csswg.org/css-color-hdr/#controlling-dynamic-range" + } + }, + "#defining-dynamic-range": { + "current": { + "number": "2.1", + "spec": "CSS Color HDR 1", + "text": "Defining Dynamic Range", + "url": "https://drafts.csswg.org/css-color-hdr/#defining-dynamic-range" + } + }, + "#dynamic-range-limit-mix": { + "current": { + "number": "2.4", + "spec": "CSS Color HDR 1", + "text": "Mixing Dynamic Range Limits: the dynamic-range-limit-mix() function", + "url": "https://drafts.csswg.org/css-color-hdr/#dynamic-range-limit-mix" + } + }, "#index": { "current": { "number": "", @@ -103,6 +135,14 @@ "url": "https://drafts.csswg.org/css-color-hdr/#intro" } }, + "#introducing-headroom": { + "current": { + "number": "2.2", + "spec": "CSS Color HDR 1", + "text": "Introducing Headroom", + "url": "https://drafts.csswg.org/css-color-hdr/#introducing-headroom" + } + }, "#issues-index": { "current": { "number": "", @@ -121,18 +161,26 @@ }, "#predefined-HDR": { "current": { - "number": "2", + "number": "4", "spec": "CSS Color HDR 1", "text": "Predefined color spaces for HDR:", "url": "https://drafts.csswg.org/css-color-hdr/#predefined-HDR" } }, - "#priv-sec": { + "#privacy": { "current": { "number": "", "spec": "CSS Color HDR 1", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-color-hdr/#priv-sec" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-color-hdr/#privacy" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Color HDR 1", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-color-hdr/#property-index" } }, "#references": { @@ -143,6 +191,30 @@ "url": "https://drafts.csswg.org/css-color-hdr/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Color HDR 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-color-hdr/#security" + } + }, + "#serializing-color-function-values": { + "current": { + "number": "6.1", + "spec": "CSS Color HDR 1", + "text": "Serializing values of the color() function", + "url": "https://drafts.csswg.org/css-color-hdr/#serializing-color-function-values" + } + }, + "#serializing-color-values": { + "current": { + "number": "6", + "spec": "CSS Color HDR 1", + "text": "Serializing <color> Values", + "url": "https://drafts.csswg.org/css-color-hdr/#serializing-color-values" + } + }, "#sotd": { "current": { "number": "", @@ -151,6 +223,14 @@ "url": "https://drafts.csswg.org/css-color-hdr/#sotd" } }, + "#the-dynamic-range-limit-property": { + "current": { + "number": "2.3", + "spec": "CSS Color HDR 1", + "text": "The dynamic-range-limit property", + "url": "https://drafts.csswg.org/css-color-hdr/#the-dynamic-range-limit-property" + } + }, "#title": { "current": { "number": "", @@ -169,15 +249,23 @@ }, "#valdef-color-rec2100-hlg": { "current": { - "number": "2.2", + "number": "4.2", "spec": "CSS Color HDR 1", "text": "rec2100-hlg", "url": "https://drafts.csswg.org/css-color-hdr/#valdef-color-rec2100-hlg" } }, + "#valdef-color-rec2100-linear": { + "current": { + "number": "4.3", + "spec": "CSS Color HDR 1", + "text": "rec2100-linear", + "url": "https://drafts.csswg.org/css-color-hdr/#valdef-color-rec2100-linear" + } + }, "#valdef-color-rec2100-pq": { "current": { - "number": "2.1", + "number": "4.1", "spec": "CSS Color HDR 1", "text": "rec2100-pq", "url": "https://drafts.csswg.org/css-color-hdr/#valdef-color-rec2100-pq" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-conditional-3.json b/bikeshed/spec-data/readonly/headings/headings-css-conditional-3.json index af73e9af6c..1a4d7e183c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-conditional-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-conditional-3.json @@ -299,14 +299,12 @@ "spec": "CSS Conditional 3", "text": "Status of this document", "url": "https://drafts.csswg.org/css-conditional-3/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Conditional 3", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-conditional-3/#status" + "url": "https://www.w3.org/TR/css-conditional-3/#sotd" } }, "#support-definition": { @@ -389,7 +387,7 @@ "snapshot": { "number": "", "spec": "CSS Conditional 3", - "text": "87 TestsCSS Conditional Rules Module Level 3", + "text": "CSS Conditional Rules Module Level 3", "url": "https://www.w3.org/TR/css-conditional-3/#title" } }, @@ -478,6 +476,12 @@ } }, "#w3c-cr-exit-criteria": { + "current": { + "number": "", + "spec": "CSS Conditional 3", + "text": "CR exit criteria", + "url": "https://drafts.csswg.org/css-conditional-3/#w3c-cr-exit-criteria" + }, "snapshot": { "number": "", "spec": "CSS Conditional 3", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-conditional-4.json b/bikeshed/spec-data/readonly/headings/headings-css-conditional-4.json index 9fecce661a..a1fc6b9f25 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-conditional-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-conditional-4.json @@ -77,13 +77,15 @@ "url": "https://drafts.csswg.org/css-conditional-4/#changes-from-2022-02-17" } }, - "#changes-from-L4": { + "#changes-from-L3": { "current": { "number": "", "spec": "CSS Conditional 4", "text": "Additions since Level 3", - "url": "https://drafts.csswg.org/css-conditional-4/#changes-from-L4" - }, + "url": "https://drafts.csswg.org/css-conditional-4/#changes-from-L3" + } + }, + "#changes-from-L4": { "snapshot": { "number": "", "spec": "CSS Conditional 4", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-conditional-5.json b/bikeshed/spec-data/readonly/headings/headings-css-conditional-5.json index 4ae7bfd89d..4350121f71 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-conditional-5.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-conditional-5.json @@ -27,6 +27,48 @@ "url": "https://www.w3.org/TR/css-conditional-5/#acknowledgments" } }, + "#animated-containers": { + "current": { + "number": "5.5", + "spec": "CSS Conditional 5", + "text": "Animated Containers", + "url": "https://drafts.csswg.org/css-conditional-5/#animated-containers" + }, + "snapshot": { + "number": "5.5", + "spec": "CSS Conditional 5", + "text": "Animated Containers", + "url": "https://www.w3.org/TR/css-conditional-5/#animated-containers" + } + }, + "#apis": { + "current": { + "number": "8", + "spec": "CSS Conditional 5", + "text": "APIs", + "url": "https://drafts.csswg.org/css-conditional-5/#apis" + }, + "snapshot": { + "number": "8", + "spec": "CSS Conditional 5", + "text": "APIs", + "url": "https://www.w3.org/TR/css-conditional-5/#apis" + } + }, + "#aspect-ratio": { + "current": { + "number": "6.1.5", + "spec": "CSS Conditional 5", + "text": "Aspect-ratio: the aspect-ratio feature", + "url": "https://drafts.csswg.org/css-conditional-5/#aspect-ratio" + }, + "snapshot": { + "number": "6.1.5", + "spec": "CSS Conditional 5", + "text": "Aspect-ratio: the aspect-ratio feature", + "url": "https://www.w3.org/TR/css-conditional-5/#aspect-ratio" + } + }, "#at-supports-ext": { "current": { "number": "2", @@ -41,6 +83,20 @@ "url": "https://www.w3.org/TR/css-conditional-5/#at-supports-ext" } }, + "#block-size": { + "current": { + "number": "6.1.4", + "spec": "CSS Conditional 5", + "text": "Block-size: the block-size feature", + "url": "https://drafts.csswg.org/css-conditional-5/#block-size" + }, + "snapshot": { + "number": "6.1.4", + "spec": "CSS Conditional 5", + "text": "Block-size: the block-size feature", + "url": "https://www.w3.org/TR/css-conditional-5/#block-size" + } + }, "#changes": { "current": { "number": "", @@ -55,6 +111,20 @@ "url": "https://www.w3.org/TR/css-conditional-5/#changes" } }, + "#changes-20211221%2F": { + "current": { + "number": "", + "spec": "CSS Conditional 5", + "text": "Changes since the First Public Working Draft of 21 December 2021", + "url": "https://drafts.csswg.org/css-conditional-5/#changes-20211221%2F" + }, + "snapshot": { + "number": "", + "spec": "CSS Conditional 5", + "text": "Changes since the First Public Working Draft of 21 December 2021", + "url": "https://www.w3.org/TR/css-conditional-5/#changes-20211221%2F" + } + }, "#changes-from-L4": { "current": { "number": "", @@ -69,6 +139,118 @@ "url": "https://www.w3.org/TR/css-conditional-5/#changes-from-L4" } }, + "#container-descriptor-table": { + "current": { + "number": "", + "spec": "CSS Conditional 5", + "text": "@container Descriptors", + "url": "https://drafts.csswg.org/css-conditional-5/#container-descriptor-table" + }, + "snapshot": { + "number": "", + "spec": "CSS Conditional 5", + "text": "@container Descriptors", + "url": "https://www.w3.org/TR/css-conditional-5/#container-descriptor-table" + } + }, + "#container-features": { + "current": { + "number": "6", + "spec": "CSS Conditional 5", + "text": "Container Features", + "url": "https://drafts.csswg.org/css-conditional-5/#container-features" + }, + "snapshot": { + "number": "6", + "spec": "CSS Conditional 5", + "text": "Container Features", + "url": "https://www.w3.org/TR/css-conditional-5/#container-features" + } + }, + "#container-lengths": { + "current": { + "number": "7", + "spec": "CSS Conditional 5", + "text": "Container Relative Lengths: the cqw, cqh, cqi, cqb, cqmin, cqmax units", + "url": "https://drafts.csswg.org/css-conditional-5/#container-lengths" + }, + "snapshot": { + "number": "7", + "spec": "CSS Conditional 5", + "text": "Container Relative Lengths: the cqw, cqh, cqi, cqb, cqmin, cqmax units", + "url": "https://www.w3.org/TR/css-conditional-5/#container-lengths" + } + }, + "#container-name": { + "current": { + "number": "5.2", + "spec": "CSS Conditional 5", + "text": "Naming Query Containers: the container-name property", + "url": "https://drafts.csswg.org/css-conditional-5/#container-name" + }, + "snapshot": { + "number": "5.2", + "spec": "CSS Conditional 5", + "text": "Naming Query Containers: the container-name property", + "url": "https://www.w3.org/TR/css-conditional-5/#container-name" + } + }, + "#container-queries": { + "current": { + "number": "5", + "spec": "CSS Conditional 5", + "text": "Container Queries", + "url": "https://drafts.csswg.org/css-conditional-5/#container-queries" + }, + "snapshot": { + "number": "5", + "spec": "CSS Conditional 5", + "text": "Container Queries", + "url": "https://www.w3.org/TR/css-conditional-5/#container-queries" + } + }, + "#container-rule": { + "current": { + "number": "5.4", + "spec": "CSS Conditional 5", + "text": "Container Queries: the @container rule", + "url": "https://drafts.csswg.org/css-conditional-5/#container-rule" + }, + "snapshot": { + "number": "5.4", + "spec": "CSS Conditional 5", + "text": "Container Queries: the @container rule", + "url": "https://www.w3.org/TR/css-conditional-5/#container-rule" + } + }, + "#container-shorthand": { + "current": { + "number": "5.3", + "spec": "CSS Conditional 5", + "text": "Creating Named Containers: the container shorthand", + "url": "https://drafts.csswg.org/css-conditional-5/#container-shorthand" + }, + "snapshot": { + "number": "5.3", + "spec": "CSS Conditional 5", + "text": "Creating Named Containers: the container shorthand", + "url": "https://www.w3.org/TR/css-conditional-5/#container-shorthand" + } + }, + "#container-type": { + "current": { + "number": "5.1", + "spec": "CSS Conditional 5", + "text": "Creating Query Containers: the container-type property", + "url": "https://drafts.csswg.org/css-conditional-5/#container-type" + }, + "snapshot": { + "number": "5.1", + "spec": "CSS Conditional 5", + "text": "Creating Query Containers: the container-type property", + "url": "https://www.w3.org/TR/css-conditional-5/#container-type" + } + }, "#else-rule": { "current": { "number": "4", @@ -83,6 +265,34 @@ "url": "https://www.w3.org/TR/css-conditional-5/#else-rule" } }, + "#height": { + "current": { + "number": "6.1.2", + "spec": "CSS Conditional 5", + "text": "Height: the height feature", + "url": "https://drafts.csswg.org/css-conditional-5/#height" + }, + "snapshot": { + "number": "6.1.2", + "spec": "CSS Conditional 5", + "text": "Height: the height feature", + "url": "https://www.w3.org/TR/css-conditional-5/#height" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "CSS Conditional 5", + "text": "IDL Index", + "url": "https://drafts.csswg.org/css-conditional-5/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Conditional 5", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-conditional-5/#idl-index" + } + }, "#index": { "current": { "number": "", @@ -126,6 +336,12 @@ } }, "#informative": { + "current": { + "number": "", + "spec": "CSS Conditional 5", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-conditional-5/#informative" + }, "snapshot": { "number": "", "spec": "CSS Conditional 5", @@ -133,6 +349,20 @@ "url": "https://www.w3.org/TR/css-conditional-5/#informative" } }, + "#inline-size": { + "current": { + "number": "6.1.3", + "spec": "CSS Conditional 5", + "text": "Inline-size: the inline-size feature", + "url": "https://drafts.csswg.org/css-conditional-5/#inline-size" + }, + "snapshot": { + "number": "6.1.3", + "spec": "CSS Conditional 5", + "text": "Inline-size: the inline-size feature", + "url": "https://www.w3.org/TR/css-conditional-5/#inline-size" + } + }, "#introduction": { "current": { "number": "1", @@ -175,6 +405,20 @@ "url": "https://www.w3.org/TR/css-conditional-5/#normative" } }, + "#orientation": { + "current": { + "number": "6.1.6", + "spec": "CSS Conditional 5", + "text": "Orientation: the orientation feature", + "url": "https://drafts.csswg.org/css-conditional-5/#orientation" + }, + "snapshot": { + "number": "6.1.6", + "spec": "CSS Conditional 5", + "text": "Orientation: the orientation feature", + "url": "https://www.w3.org/TR/css-conditional-5/#orientation" + } + }, "#privacy": { "current": { "number": "", @@ -189,6 +433,20 @@ "url": "https://www.w3.org/TR/css-conditional-5/#privacy" } }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Conditional 5", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-conditional-5/#property-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Conditional 5", + "text": "Property Index", + "url": "https://www.w3.org/TR/css-conditional-5/#property-index" + } + }, "#references": { "current": { "number": "", @@ -217,20 +475,46 @@ "url": "https://www.w3.org/TR/css-conditional-5/#security" } }, + "#size-container": { + "current": { + "number": "6.1", + "spec": "CSS Conditional 5", + "text": "Size Container Features", + "url": "https://drafts.csswg.org/css-conditional-5/#size-container" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS Conditional 5", + "text": "Size Container Features", + "url": "https://www.w3.org/TR/css-conditional-5/#size-container" + } + }, "#sotd": { "current": { "number": "", "spec": "CSS Conditional 5", "text": "Status of this document", "url": "https://drafts.csswg.org/css-conditional-5/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Conditional 5", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-conditional-5/#status" + "url": "https://www.w3.org/TR/css-conditional-5/#sotd" + } + }, + "#style-container": { + "current": { + "number": "6.2", + "spec": "CSS Conditional 5", + "text": "Style Container Features", + "url": "https://drafts.csswg.org/css-conditional-5/#style-container" + }, + "snapshot": { + "number": "6.2", + "spec": "CSS Conditional 5", + "text": "Style Container Features", + "url": "https://www.w3.org/TR/css-conditional-5/#style-container" } }, "#support-definition-ext": { @@ -247,6 +531,20 @@ "url": "https://www.w3.org/TR/css-conditional-5/#support-definition-ext" } }, + "#the-csscontainerrule-interface": { + "current": { + "number": "8.1", + "spec": "CSS Conditional 5", + "text": "The CSSContainerRule interface", + "url": "https://drafts.csswg.org/css-conditional-5/#the-csscontainerrule-interface" + }, + "snapshot": { + "number": "8.1", + "spec": "CSS Conditional 5", + "text": "The CSSContainerRule interface", + "url": "https://www.w3.org/TR/css-conditional-5/#the-csscontainerrule-interface" + } + }, "#title": { "current": { "number": "", @@ -372,5 +670,19 @@ "text": "Generalized Conditional Rules: the @when rule", "url": "https://www.w3.org/TR/css-conditional-5/#when-rule" } + }, + "#width": { + "current": { + "number": "6.1.1", + "spec": "CSS Conditional 5", + "text": "Width: the width feature", + "url": "https://drafts.csswg.org/css-conditional-5/#width" + }, + "snapshot": { + "number": "6.1.1", + "spec": "CSS Conditional 5", + "text": "Width: the width feature", + "url": "https://www.w3.org/TR/css-conditional-5/#width" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-contain-1.json b/bikeshed/spec-data/readonly/headings/headings-css-contain-1.json index 7d05e74b32..7f151a801d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-contain-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-contain-1.json @@ -1,100 +1,18 @@ { - "#2017-04-19-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Working Draft of 19 April 2017", - "url": "https://drafts.csswg.org/css-contain-1/#2017-04-19-changes" - }, + "#2022-10-25-changes": { "snapshot": { "number": "", "spec": "CSS Containment 1", - "text": "Changes from the Working Draft of 19 April 2017", - "url": "https://www.w3.org/TR/css-contain-1/#2017-04-19-changes" + "text": "Changes from the Recommendation of 25 October 2022", + "url": "https://www.w3.org/TR/css-contain-1/#2022-10-25-changes" } }, - "#2017-08-08-changes": { + "#2024-06-25-changes": { "current": { "number": "", "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 8 August 2017", - "url": "https://drafts.csswg.org/css-contain-1/#2017-08-08-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 8 August 2017", - "url": "https://www.w3.org/TR/css-contain-1/#2017-08-08-changes" - } - }, - "#2018-05-24-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 24 May 2018", - "url": "https://drafts.csswg.org/css-contain-1/#2018-05-24-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 24 May 2018", - "url": "https://www.w3.org/TR/css-contain-1/#2018-05-24-changes" - } - }, - "#2018-11-08-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 08 November 2018", - "url": "https://drafts.csswg.org/css-contain-1/#2018-11-08-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 08 November 2018", - "url": "https://www.w3.org/TR/css-contain-1/#2018-11-08-changes" - } - }, - "#2019-04-30-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 30 April 2019", - "url": "https://drafts.csswg.org/css-contain-1/#2019-04-30-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Candidate Recommendation of 30 April 2019", - "url": "https://www.w3.org/TR/css-contain-1/#2019-04-30-changes" - } - }, - "#2019-11-21-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Recommendation of 21 November 2019", - "url": "https://drafts.csswg.org/css-contain-1/#2019-11-21-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Recommendation of 21 November 2019", - "url": "https://www.w3.org/TR/css-contain-1/#2019-11-21-changes" - } - }, - "#2020-12-22-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Recommendation of 22 December 2020", - "url": "https://drafts.csswg.org/css-contain-1/#2020-12-22-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the Recommendation of 22 December 2020", - "url": "https://www.w3.org/TR/css-contain-1/#2020-12-22-changes" + "text": "Changes from the Recommendation of 25 June 2024", + "url": "https://drafts.csswg.org/css-contain-1/#2024-06-25-changes" } }, "#abstract": { @@ -113,15 +31,15 @@ }, "#changes": { "current": { - "number": "", + "number": "A", "spec": "CSS Containment 1", - "text": "Appendix A. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-contain-1/#changes" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Containment 1", - "text": "Appendix A. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-contain-1/#changes" } }, @@ -237,20 +155,6 @@ "url": "https://www.w3.org/TR/css-contain-1/#containment-types" } }, - "#fpwd-changes": { - "current": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the First Public Working Draft of 21 February 2017", - "url": "https://drafts.csswg.org/css-contain-1/#fpwd-changes" - }, - "snapshot": { - "number": "", - "spec": "CSS Containment 1", - "text": "Changes from the First Public Working Draft of 21 February 2017", - "url": "https://www.w3.org/TR/css-contain-1/#fpwd-changes" - } - }, "#index": { "current": { "number": "", @@ -335,6 +239,20 @@ "url": "https://www.w3.org/TR/css-contain-1/#normative" } }, + "#old-changes": { + "current": { + "number": "", + "spec": "CSS Containment 1", + "text": "Earlier Changes", + "url": "https://drafts.csswg.org/css-contain-1/#old-changes" + }, + "snapshot": { + "number": "", + "spec": "CSS Containment 1", + "text": "Earlier Changes", + "url": "https://www.w3.org/TR/css-contain-1/#old-changes" + } + }, "#privacy": { "current": { "number": "4", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-contain-2.json b/bikeshed/spec-data/readonly/headings/headings-css-contain-2.json index bf69f461b0..270bbb4304 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-contain-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-contain-2.json @@ -15,15 +15,15 @@ }, "#changes": { "current": { - "number": "", + "number": "A", "spec": "CSS Containment 2", - "text": "Appendix A. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-contain-2/#changes" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Containment 2", - "text": "Appendix A. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-contain-2/#changes" } }, @@ -91,10 +91,18 @@ "url": "https://www.w3.org/TR/css-contain-2/#contain-property" } }, - "#containment-layout": { + "#containment-inline-size": { "current": { "number": "3.2", "spec": "CSS Containment 2", + "text": "Inline-Size Containment", + "url": "https://drafts.csswg.org/css-contain-2/#containment-inline-size" + } + }, + "#containment-layout": { + "current": { + "number": "3.3", + "spec": "CSS Containment 2", "text": "Layout Containment", "url": "https://drafts.csswg.org/css-contain-2/#containment-layout" }, @@ -107,7 +115,7 @@ }, "#containment-layout-opt": { "current": { - "number": "3.2.1", + "number": "3.3.1", "spec": "CSS Containment 2", "text": "Possible Layout-Containment Optimizations", "url": "https://drafts.csswg.org/css-contain-2/#containment-layout-opt" @@ -121,7 +129,7 @@ }, "#containment-paint": { "current": { - "number": "3.4", + "number": "3.5", "spec": "CSS Containment 2", "text": "Paint Containment", "url": "https://drafts.csswg.org/css-contain-2/#containment-paint" @@ -135,7 +143,7 @@ }, "#containment-paint-opt": { "current": { - "number": "3.4.1", + "number": "3.5.1", "spec": "CSS Containment 2", "text": "Possible Paint-Containment Optimizations", "url": "https://drafts.csswg.org/css-contain-2/#containment-paint-opt" @@ -177,7 +185,7 @@ }, "#containment-style": { "current": { - "number": "3.3", + "number": "3.4", "spec": "CSS Containment 2", "text": "Style Containment", "url": "https://drafts.csswg.org/css-contain-2/#containment-style" @@ -191,7 +199,7 @@ }, "#containment-style-opt": { "current": { - "number": "3.3.1", + "number": "3.4.1", "spec": "CSS Containment 2", "text": "Possible Style-Containment Optimizations", "url": "https://drafts.csswg.org/css-contain-2/#containment-style-opt" @@ -231,9 +239,17 @@ "url": "https://www.w3.org/TR/css-contain-2/#content-visibility" } }, + "#content-visibility-animation": { + "current": { + "number": "4.1", + "spec": "CSS Containment 2", + "text": "Animating and Interpolating content-visibility", + "url": "https://drafts.csswg.org/css-contain-2/#content-visibility-animation" + } + }, "#content-visibility-auto-state-change": { "current": { - "number": "4.3", + "number": "4.4", "spec": "CSS Containment 2", "text": "Detecting content-visibility: auto state changes: the contentvisibilityautostatechange event", "url": "https://drafts.csswg.org/css-contain-2/#content-visibility-auto-state-change" @@ -249,7 +265,7 @@ }, "#cv-a11y": { "current": { - "number": "4.5", + "number": "4.6", "spec": "CSS Containment 2", "text": "Accessibility Implications", "url": "https://drafts.csswg.org/css-contain-2/#cv-a11y" @@ -263,7 +279,7 @@ }, "#cv-examples": { "current": { - "number": "4.6", + "number": "4.7", "spec": "CSS Containment 2", "text": "Examples", "url": "https://drafts.csswg.org/css-contain-2/#cv-examples" @@ -277,7 +293,7 @@ }, "#cv-notes": { "current": { - "number": "4.4", + "number": "4.5", "spec": "CSS Containment 2", "text": "Restrictions and Clarifications", "url": "https://drafts.csswg.org/css-contain-2/#cv-notes" @@ -387,6 +403,14 @@ "url": "https://www.w3.org/TR/css-contain-2/#intro" } }, + "#issues-index": { + "current": { + "number": "", + "spec": "CSS Containment 2", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-contain-2/#issues-index" + } + }, "#l1-changes": { "current": { "number": "", @@ -515,7 +539,7 @@ }, "#using-cv-auto": { "current": { - "number": "4.2", + "number": "4.3", "spec": "CSS Containment 2", "text": "Using content-visibility: auto", "url": "https://drafts.csswg.org/css-contain-2/#using-cv-auto" @@ -529,7 +553,7 @@ }, "#using-cv-hidden": { "current": { - "number": "4.1", + "number": "4.2", "spec": "CSS Containment 2", "text": "Using content-visibility: hidden", "url": "https://drafts.csswg.org/css-contain-2/#using-cv-hidden" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-contain-3.json b/bikeshed/spec-data/readonly/headings/headings-css-contain-3.json index 7821493107..fc1af0dbce 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-contain-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-contain-3.json @@ -14,12 +14,6 @@ } }, "#acknowledgments": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "Acknowledgments", - "url": "https://drafts.csswg.org/css-contain-3/#acknowledgments" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -28,12 +22,6 @@ } }, "#animated-containers": { - "current": { - "number": "4.5", - "spec": "CSS Containment 3", - "text": "Animated Containers", - "url": "https://drafts.csswg.org/css-contain-3/#animated-containers" - }, "snapshot": { "number": "4.5", "spec": "CSS Containment 3", @@ -42,12 +30,6 @@ } }, "#apis": { - "current": { - "number": "7", - "spec": "CSS Containment 3", - "text": "APIs", - "url": "https://drafts.csswg.org/css-contain-3/#apis" - }, "snapshot": { "number": "7", "spec": "CSS Containment 3", @@ -56,12 +38,6 @@ } }, "#aspect-ratio": { - "current": { - "number": "5.1.5", - "spec": "CSS Containment 3", - "text": "Aspect-ratio: the aspect-ratio feature", - "url": "https://drafts.csswg.org/css-contain-3/#aspect-ratio" - }, "snapshot": { "number": "5.1.5", "spec": "CSS Containment 3", @@ -70,12 +46,6 @@ } }, "#block-size": { - "current": { - "number": "5.1.4", - "spec": "CSS Containment 3", - "text": "Block-size: the block-size feature", - "url": "https://drafts.csswg.org/css-contain-3/#block-size" - }, "snapshot": { "number": "5.1.4", "spec": "CSS Containment 3", @@ -85,15 +55,15 @@ }, "#changes": { "current": { - "number": "", + "number": "A", "spec": "CSS Containment 3", - "text": "Appendix A. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-contain-3/#changes" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Containment 3", - "text": "Appendix A. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-contain-3/#changes" } }, @@ -120,12 +90,6 @@ } }, "#contain-property": { - "current": { - "number": "2", - "spec": "CSS Containment 3", - "text": "Strong Containment: the contain property", - "url": "https://drafts.csswg.org/css-contain-3/#contain-property" - }, "snapshot": { "number": "2", "spec": "CSS Containment 3", @@ -134,12 +98,6 @@ } }, "#container-descriptor-table": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "@container Descriptors", - "url": "https://drafts.csswg.org/css-contain-3/#container-descriptor-table" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -148,12 +106,6 @@ } }, "#container-features": { - "current": { - "number": "5", - "spec": "CSS Containment 3", - "text": "Container Features", - "url": "https://drafts.csswg.org/css-contain-3/#container-features" - }, "snapshot": { "number": "5", "spec": "CSS Containment 3", @@ -162,12 +114,6 @@ } }, "#container-lengths": { - "current": { - "number": "6", - "spec": "CSS Containment 3", - "text": "Container Relative Lengths: the cqw, cqh, cqi, cqb, cqmin, cqmax units", - "url": "https://drafts.csswg.org/css-contain-3/#container-lengths" - }, "snapshot": { "number": "6", "spec": "CSS Containment 3", @@ -176,12 +122,6 @@ } }, "#container-name": { - "current": { - "number": "4.2", - "spec": "CSS Containment 3", - "text": "Naming Query Containers: the container-name property", - "url": "https://drafts.csswg.org/css-contain-3/#container-name" - }, "snapshot": { "number": "4.2", "spec": "CSS Containment 3", @@ -190,12 +130,6 @@ } }, "#container-queries": { - "current": { - "number": "4", - "spec": "CSS Containment 3", - "text": "Container Queries", - "url": "https://drafts.csswg.org/css-contain-3/#container-queries" - }, "snapshot": { "number": "4", "spec": "CSS Containment 3", @@ -204,12 +138,6 @@ } }, "#container-rule": { - "current": { - "number": "4.4", - "spec": "CSS Containment 3", - "text": "Container Queries: the @container rule", - "url": "https://drafts.csswg.org/css-contain-3/#container-rule" - }, "snapshot": { "number": "4.4", "spec": "CSS Containment 3", @@ -218,12 +146,6 @@ } }, "#container-shorthand": { - "current": { - "number": "4.3", - "spec": "CSS Containment 3", - "text": "Creating Named Containers: the container shorthand", - "url": "https://drafts.csswg.org/css-contain-3/#container-shorthand" - }, "snapshot": { "number": "4.3", "spec": "CSS Containment 3", @@ -232,12 +154,6 @@ } }, "#container-type": { - "current": { - "number": "4.1", - "spec": "CSS Containment 3", - "text": "Creating Query Containers: the container-type property", - "url": "https://drafts.csswg.org/css-contain-3/#container-type" - }, "snapshot": { "number": "4.1", "spec": "CSS Containment 3", @@ -246,12 +162,6 @@ } }, "#containment-inline-size": { - "current": { - "number": "3.1", - "spec": "CSS Containment 3", - "text": "Inline-Size Containment", - "url": "https://drafts.csswg.org/css-contain-3/#containment-inline-size" - }, "snapshot": { "number": "3.1", "spec": "CSS Containment 3", @@ -260,12 +170,6 @@ } }, "#containment-types": { - "current": { - "number": "3", - "spec": "CSS Containment 3", - "text": "Types of Containment", - "url": "https://drafts.csswg.org/css-contain-3/#containment-types" - }, "snapshot": { "number": "3", "spec": "CSS Containment 3", @@ -274,12 +178,6 @@ } }, "#content-visibility": { - "current": { - "number": "8", - "spec": "CSS Containment 3", - "text": "Suppressing An Element’s Contents Entirely: the content-visibility property", - "url": "https://drafts.csswg.org/css-contain-3/#content-visibility" - }, "snapshot": { "number": "8", "spec": "CSS Containment 3", @@ -288,12 +186,6 @@ } }, "#height": { - "current": { - "number": "5.1.2", - "spec": "CSS Containment 3", - "text": "Height: the height feature", - "url": "https://drafts.csswg.org/css-contain-3/#height" - }, "snapshot": { "number": "5.1.2", "spec": "CSS Containment 3", @@ -302,12 +194,6 @@ } }, "#idl-index": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "IDL Index", - "url": "https://drafts.csswg.org/css-contain-3/#idl-index" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -344,12 +230,6 @@ } }, "#index-defined-here": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "Terms defined by this specification", - "url": "https://drafts.csswg.org/css-contain-3/#index-defined-here" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -358,12 +238,6 @@ } }, "#informative": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "Informative References", - "url": "https://drafts.csswg.org/css-contain-3/#informative" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -372,12 +246,6 @@ } }, "#inline-size": { - "current": { - "number": "5.1.3", - "spec": "CSS Containment 3", - "text": "Inline-size: the inline-size feature", - "url": "https://drafts.csswg.org/css-contain-3/#inline-size" - }, "snapshot": { "number": "5.1.3", "spec": "CSS Containment 3", @@ -386,12 +254,6 @@ } }, "#interaction": { - "current": { - "number": "1.1", - "spec": "CSS Containment 3", - "text": "Module Interactions", - "url": "https://drafts.csswg.org/css-contain-3/#interaction" - }, "snapshot": { "number": "1.1", "spec": "CSS Containment 3", @@ -400,12 +262,6 @@ } }, "#intro": { - "current": { - "number": "1", - "spec": "CSS Containment 3", - "text": "Introduction", - "url": "https://drafts.csswg.org/css-contain-3/#intro" - }, "snapshot": { "number": "1", "spec": "CSS Containment 3", @@ -414,12 +270,6 @@ } }, "#issues-index": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "Issues Index", - "url": "https://drafts.csswg.org/css-contain-3/#issues-index" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -456,12 +306,6 @@ } }, "#orientation": { - "current": { - "number": "5.1.6", - "spec": "CSS Containment 3", - "text": "Orientation: the orientation feature", - "url": "https://drafts.csswg.org/css-contain-3/#orientation" - }, "snapshot": { "number": "5.1.6", "spec": "CSS Containment 3", @@ -479,19 +323,13 @@ }, "#privacy": { "current": { - "number": "9", + "number": "1", "spec": "CSS Containment 3", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-contain-3/#privacy" } }, "#property-index": { - "current": { - "number": "", - "spec": "CSS Containment 3", - "text": "Property Index", - "url": "https://drafts.csswg.org/css-contain-3/#property-index" - }, "snapshot": { "number": "", "spec": "CSS Containment 3", @@ -515,19 +353,13 @@ }, "#security": { "current": { - "number": "", + "number": "2", "spec": "CSS Containment 3", - "text": "10. Security Considerations", + "text": "Security Considerations", "url": "https://drafts.csswg.org/css-contain-3/#security" } }, "#size-container": { - "current": { - "number": "5.1", - "spec": "CSS Containment 3", - "text": "Size Container Features", - "url": "https://drafts.csswg.org/css-contain-3/#size-container" - }, "snapshot": { "number": "5.1", "spec": "CSS Containment 3", @@ -550,12 +382,6 @@ } }, "#style-container": { - "current": { - "number": "5.2", - "spec": "CSS Containment 3", - "text": "Style Container Features", - "url": "https://drafts.csswg.org/css-contain-3/#style-container" - }, "snapshot": { "number": "5.2", "spec": "CSS Containment 3", @@ -564,12 +390,6 @@ } }, "#the-csscontainerrule-interface": { - "current": { - "number": "7.1", - "spec": "CSS Containment 3", - "text": "The CSSContainerRule interface", - "url": "https://drafts.csswg.org/css-contain-3/#the-csscontainerrule-interface" - }, "snapshot": { "number": "7.1", "spec": "CSS Containment 3", @@ -606,12 +426,6 @@ } }, "#values": { - "current": { - "number": "1.2", - "spec": "CSS Containment 3", - "text": "Value Definitions", - "url": "https://drafts.csswg.org/css-contain-3/#values" - }, "snapshot": { "number": "1.2", "spec": "CSS Containment 3", @@ -704,12 +518,6 @@ } }, "#width": { - "current": { - "number": "5.1.1", - "spec": "CSS Containment 3", - "text": "Width: the width feature", - "url": "https://drafts.csswg.org/css-contain-3/#width" - }, "snapshot": { "number": "5.1.1", "spec": "CSS Containment 3", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-content-3.json b/bikeshed/spec-data/readonly/headings/headings-css-content-3.json index 27f29d5e51..99c95d4ebd 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-content-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-content-3.json @@ -57,7 +57,7 @@ }, "#bookmark-generation": { "current": { - "number": "4", + "number": "3", "spec": "CSS Generated Content 3", "text": "Bookmarks", "url": "https://drafts.csswg.org/css-content-3/#bookmark-generation" @@ -71,9 +71,9 @@ }, "#bookmark-label": { "current": { - "number": "4.2", + "number": "3.2", "spec": "CSS Generated Content 3", - "text": "bookmark-label", + "text": "Labelling a Bookmark: the bookmark-label property", "url": "https://drafts.csswg.org/css-content-3/#bookmark-label" }, "snapshot": { @@ -85,9 +85,9 @@ }, "#bookmark-level": { "current": { - "number": "4.1", + "number": "3.1", "spec": "CSS Generated Content 3", - "text": "bookmark-level", + "text": "Setting a Bookmark: the bookmark-level property", "url": "https://drafts.csswg.org/css-content-3/#bookmark-level" }, "snapshot": { @@ -99,9 +99,9 @@ }, "#bookmark-state": { "current": { - "number": "4.3", + "number": "3.3", "spec": "CSS Generated Content 3", - "text": "bookmark-state", + "text": "Initial Bookmark Toggle State: the bookmark-state property", "url": "https://drafts.csswg.org/css-content-3/#bookmark-state" }, "snapshot": { @@ -113,9 +113,9 @@ }, "#changes": { "current": { - "number": "5", + "number": "4", "spec": "CSS Generated Content 3", - "text": "Changes since the 2 June 2016 Working Draft", + "text": "Changes", "url": "https://drafts.csswg.org/css-content-3/#changes" }, "snapshot": { @@ -191,7 +191,7 @@ "current": { "number": "1", "spec": "CSS Generated Content 3", - "text": "Inserting and replacing content with the content property", + "text": "Inserting and Replacing Content: the content property", "url": "https://drafts.csswg.org/css-content-3/#content-property" }, "snapshot": { @@ -205,7 +205,7 @@ "current": { "number": "2.2", "spec": "CSS Generated Content 3", - "text": "<image>", + "text": "2D Images: <image> values", "url": "https://drafts.csswg.org/css-content-3/#content-uri" }, "snapshot": { @@ -219,7 +219,7 @@ "current": { "number": "2", "spec": "CSS Generated Content 3", - "text": "<content-list> Values and Functions", + "text": "Generated Content Values: the <content-list> type", "url": "https://drafts.csswg.org/css-content-3/#content-values" }, "snapshot": { @@ -231,9 +231,9 @@ }, "#counters": { "current": { - "number": "3", + "number": "2.8", "spec": "CSS Generated Content 3", - "text": "Automatic counters and numbering: the counter-increment and counter-reset properties (moved)", + "text": "Automatic Counters and Numbering", "url": "https://drafts.csswg.org/css-content-3/#counters" }, "snapshot": { @@ -247,7 +247,7 @@ "current": { "number": "2.6", "spec": "CSS Generated Content 3", - "text": "Cross references and the target-* functions", + "text": "Cross References", "url": "https://drafts.csswg.org/css-content-3/#cross-references" }, "snapshot": { @@ -269,7 +269,7 @@ "current": { "number": "2.3", "spec": "CSS Generated Content 3", - "text": "Element Content", + "text": "Elemental Content: the contents keyword", "url": "https://drafts.csswg.org/css-content-3/#element-content" }, "snapshot": { @@ -423,7 +423,7 @@ "current": { "number": "2.7", "spec": "CSS Generated Content 3", - "text": "Named strings", + "text": "Named Strings", "url": "https://drafts.csswg.org/css-content-3/#named-strings" }, "snapshot": { @@ -447,6 +447,14 @@ "url": "https://www.w3.org/TR/css-content-3/#normative" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Generated Content 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-content-3/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -465,7 +473,7 @@ "current": { "number": "2.4.2", "spec": "CSS Generated Content 3", - "text": "The *-quote values of the content property", + "text": "Inserting Quotation Marks: the *-quote keywords", "url": "https://drafts.csswg.org/css-content-3/#quote-values" }, "snapshot": { @@ -479,7 +487,7 @@ "current": { "number": "2.4", "spec": "CSS Generated Content 3", - "text": "Quotes", + "text": "Quotation Marks", "url": "https://drafts.csswg.org/css-content-3/#quotes" }, "snapshot": { @@ -493,7 +501,7 @@ "current": { "number": "2.4.1", "spec": "CSS Generated Content 3", - "text": "Specifying quotes with the quotes property", + "text": "Quotation Mark System: the quotes property", "url": "https://drafts.csswg.org/css-content-3/#quotes-property" }, "snapshot": { @@ -517,6 +525,14 @@ "url": "https://www.w3.org/TR/css-content-3/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Generated Content 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-content-3/#security" + } + }, "#sotd": { "current": { "number": "", @@ -537,7 +553,7 @@ "current": { "number": "2.7.2", "spec": "CSS Generated Content 3", - "text": "The string() function", + "text": "Inserting Named Strings: the string() function", "url": "https://drafts.csswg.org/css-content-3/#string-function" }, "snapshot": { @@ -551,7 +567,7 @@ "current": { "number": "2.7.1", "spec": "CSS Generated Content 3", - "text": "The string-set property", + "text": "Naming Strings: the string-set property", "url": "https://drafts.csswg.org/css-content-3/#string-set" }, "snapshot": { @@ -565,7 +581,7 @@ "current": { "number": "2.1", "spec": "CSS Generated Content 3", - "text": "String", + "text": "Basic Strings: <string> and <attr()> values", "url": "https://drafts.csswg.org/css-content-3/#strings" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-counter-styles-3.json b/bikeshed/spec-data/readonly/headings/headings-css-counter-styles-3.json index 051ce0c2e2..d1eaa94bcc 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-counter-styles-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-counter-styles-3.json @@ -111,6 +111,14 @@ "url": "https://www.w3.org/TR/css-counter-styles-3/#changes-2017" } }, + "#changes-2021": { + "current": { + "number": "", + "spec": "CSS Counter Styles 3", + "text": "Changes since the July 2021 Candidate Recommendation", + "url": "https://drafts.csswg.org/css-counter-styles-3/#changes-2021" + } + }, "#changes-feb-2015": { "current": { "number": "", @@ -574,12 +582,6 @@ } }, "#priv-sec": { - "current": { - "number": "", - "spec": "CSS Counter Styles 3", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-counter-styles-3/#priv-sec" - }, "snapshot": { "number": "", "spec": "CSS Counter Styles 3", @@ -587,6 +589,14 @@ "url": "https://www.w3.org/TR/css-counter-styles-3/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Counter Styles 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-counter-styles-3/#privacy" + } + }, "#profile-and-date": { "snapshot": { "number": "", @@ -623,6 +633,14 @@ "url": "https://www.w3.org/TR/css-counter-styles-3/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Counter Styles 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-counter-styles-3/#security" + } + }, "#simple-alphabetic": { "current": { "number": "6.2", @@ -761,7 +779,7 @@ "snapshot": { "number": "", "spec": "CSS Counter Styles 3", - "text": "222 TestsCSS Counter Styles Level 3", + "text": "CSS Counter Styles Level 3", "url": "https://www.w3.org/TR/css-counter-styles-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-display-3.json b/bikeshed/spec-data/readonly/headings/headings-css-display-3.json index da3465bf2c..dbfda835d4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-display-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-display-3.json @@ -43,15 +43,15 @@ }, "#box-guidelines": { "current": { - "number": "", + "number": "C", "spec": "CSS Display 3", - "text": "Appendix C: Box Construction Guidelines for Spec Authors", + "text": "Box Construction Guidelines for Spec Authors", "url": "https://drafts.csswg.org/css-display-3/#box-guidelines" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Display 3", - "text": "Appendix C: Box Construction Guidelines for Spec Authors", + "text": "Box Construction Guidelines for Spec Authors", "url": "https://www.w3.org/TR/css-display-3/#box-guidelines" } }, @@ -87,7 +87,7 @@ "current": { "number": "", "spec": "CSS Display 3", - "text": "Changes Since 2020 Candidate Recommendation", + "text": "Changes Since 2023 Candidate Recommendation Snapshot", "url": "https://drafts.csswg.org/css-display-3/#changes-2020" }, "snapshot": { @@ -97,6 +97,14 @@ "url": "https://www.w3.org/TR/css-display-3/#changes-2020" } }, + "#changes-2020%E2%91%A0": { + "current": { + "number": "", + "spec": "CSS Display 3", + "text": "Changes Since 2020 Candidate Recommendation", + "url": "https://drafts.csswg.org/css-display-3/#changes-2020%E2%91%A0" + } + }, "#changes-wd": { "current": { "number": "", @@ -113,15 +121,15 @@ }, "#glossary": { "current": { - "number": "", + "number": "A", "spec": "CSS Display 3", - "text": "Appendix A: Glossary", + "text": "Glossary", "url": "https://drafts.csswg.org/css-display-3/#glossary" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Display 3", - "text": "Appendix A: Glossary", + "text": "Glossary", "url": "https://www.w3.org/TR/css-display-3/#glossary" } }, @@ -383,6 +391,12 @@ "spec": "CSS Display 3", "text": "The Root Element’s Principal Box", "url": "https://drafts.csswg.org/css-display-3/#root" + }, + "snapshot": { + "number": "2.8", + "spec": "CSS Display 3", + "text": "The Root Element’s Principal Box", + "url": "https://www.w3.org/TR/css-display-3/#root" } }, "#run-in-layout": { @@ -417,7 +431,7 @@ "current": { "number": "", "spec": "CSS Display 3", - "text": "Self-Review Questionaire", + "text": "Self-Review Questionnaire", "url": "https://drafts.csswg.org/css-display-3/#security-privacy-self-review" }, "snapshot": { @@ -465,7 +479,7 @@ "snapshot": { "number": "", "spec": "CSS Display 3", - "text": "73 TestsCSS Display Module Level 3", + "text": "CSS Display Module Level 3", "url": "https://www.w3.org/TR/css-display-3/#title" } }, @@ -499,15 +513,15 @@ }, "#unbox": { "current": { - "number": "", + "number": "B", "spec": "CSS Display 3", - "text": "Appendix B: Effects of display: contents on Unusual Elements", + "text": "Effects of display: contents on Unusual Elements", "url": "https://drafts.csswg.org/css-display-3/#unbox" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Display 3", - "text": "Appendix B: Effects of display: contents on Unusual Elements", + "text": "Effects of display: contents on Unusual Elements", "url": "https://www.w3.org/TR/css-display-3/#unbox" } }, @@ -638,6 +652,12 @@ } }, "#w3c-cr-exit-criteria": { + "current": { + "number": "", + "spec": "CSS Display 3", + "text": "CR exit criteria", + "url": "https://drafts.csswg.org/css-display-3/#w3c-cr-exit-criteria" + }, "snapshot": { "number": "", "spec": "CSS Display 3", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-display-4.json b/bikeshed/spec-data/readonly/headings/headings-css-display-4.json index 8692aace62..c2b7e3a3b4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-display-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-display-4.json @@ -25,9 +25,9 @@ }, "#box-guidelines": { "current": { - "number": "", + "number": "C", "spec": "CSS Display 4", - "text": "Appendix C: Box Construction Guidelines for Spec Authors", + "text": "Box Construction Guidelines for Spec Authors", "url": "https://drafts.csswg.org/css-display-4/#box-guidelines" } }, @@ -47,19 +47,19 @@ "url": "https://drafts.csswg.org/css-display-4/#changes-2020" } }, - "#display-order": { + "#display-animation": { "current": { - "number": "3", + "number": "2.9", "spec": "CSS Display 4", - "text": "Display Order", - "url": "https://drafts.csswg.org/css-display-4/#display-order" + "text": "Animating and Interpolating display", + "url": "https://drafts.csswg.org/css-display-4/#display-animation" } }, "#glossary": { "current": { - "number": "", + "number": "A", "spec": "CSS Display 4", - "text": "Appendix A: Glossary", + "text": "Glossary", "url": "https://drafts.csswg.org/css-display-4/#glossary" } }, @@ -119,14 +119,6 @@ "url": "https://drafts.csswg.org/css-display-4/#issues-index" } }, - "#layout-order": { - "current": { - "number": "3.3", - "spec": "CSS Display 4", - "text": "Box Order: the layout-order property", - "url": "https://drafts.csswg.org/css-display-4/#layout-order" - } - }, "#layout-specific-display": { "current": { "number": "2.4", @@ -161,7 +153,7 @@ }, "#order-accessibility": { "current": { - "number": "3.4", + "number": "3.1", "spec": "CSS Display 4", "text": "Reordering and Accessibility", "url": "https://drafts.csswg.org/css-display-4/#order-accessibility" @@ -169,9 +161,9 @@ }, "#order-property": { "current": { - "number": "3.1", + "number": "3", "spec": "CSS Display 4", - "text": "Display Order Shorthand: the order property", + "text": "Display Order: the order property", "url": "https://drafts.csswg.org/css-display-4/#order-property" } }, @@ -215,12 +207,12 @@ "url": "https://drafts.csswg.org/css-display-4/#quiet-pubrules-1" } }, - "#reading-order": { + "#reading-flow": { "current": { - "number": "3.2", + "number": "4", "spec": "CSS Display 4", - "text": "Reading Order: the reading-order property", - "url": "https://drafts.csswg.org/css-display-4/#reading-order" + "text": "Reading Order: the reading-flow property", + "url": "https://drafts.csswg.org/css-display-4/#reading-flow" } }, "#references": { @@ -241,7 +233,7 @@ }, "#run-in-layout": { "current": { - "number": "5", + "number": "6", "spec": "CSS Display 4", "text": "Run-In Layout", "url": "https://drafts.csswg.org/css-display-4/#run-in-layout" @@ -297,9 +289,9 @@ }, "#unbox": { "current": { - "number": "", + "number": "B", "spec": "CSS Display 4", - "text": "Appendix B: Effects of display: contents on Unusual Elements", + "text": "Effects of display: contents on Unusual Elements", "url": "https://drafts.csswg.org/css-display-4/#unbox" } }, @@ -337,7 +329,7 @@ }, "#visibility": { "current": { - "number": "4", + "number": "5", "spec": "CSS Display 4", "text": "Invisibility: the visibility property", "url": "https://drafts.csswg.org/css-display-4/#visibility" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-easing-1.json b/bikeshed/spec-data/readonly/headings/headings-css-easing-1.json index 23398dc35e..1bc3e98536 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-easing-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-easing-1.json @@ -15,7 +15,7 @@ }, "#acknowledgements": { "current": { - "number": "5", + "number": "4", "spec": "CSS Easing Functions 1", "text": "Acknowledgements", "url": "https://drafts.csswg.org/css-easing-1/#acknowledgements" @@ -29,7 +29,7 @@ }, "#changes": { "current": { - "number": "4", + "number": "3", "spec": "CSS Easing Functions 1", "text": "Changes", "url": "https://drafts.csswg.org/css-easing-1/#changes" @@ -168,12 +168,6 @@ } }, "#priv-sec": { - "current": { - "number": "3", - "spec": "CSS Easing Functions 1", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-easing-1/#priv-sec" - }, "snapshot": { "number": "3", "spec": "CSS Easing Functions 1", @@ -181,6 +175,14 @@ "url": "https://www.w3.org/TR/css-easing-1/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Easing Functions 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-easing-1/#privacy" + } + }, "#references": { "current": { "number": "", @@ -195,6 +197,14 @@ "url": "https://www.w3.org/TR/css-easing-1/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Easing Functions 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-easing-1/#security" + } + }, "#serialization": { "current": { "number": "2.4", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-easing-2.json b/bikeshed/spec-data/readonly/headings/headings-css-easing-2.json index ec6a397830..c6734f5ad7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-easing-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-easing-2.json @@ -9,7 +9,7 @@ }, "#acknowledgements": { "current": { - "number": "5", + "number": "4", "spec": "CSS Easing Functions 2", "text": "Acknowledgements", "url": "https://drafts.csswg.org/css-easing-2/#acknowledgements" @@ -17,7 +17,7 @@ }, "#changes": { "current": { - "number": "4", + "number": "3", "spec": "CSS Easing Functions 2", "text": "Changes", "url": "https://drafts.csswg.org/css-easing-2/#changes" @@ -25,7 +25,7 @@ }, "#changes-L1": { "current": { - "number": "4.1", + "number": "3.1", "spec": "CSS Easing Functions 2", "text": "Additions Since Level 1", "url": "https://drafts.csswg.org/css-easing-2/#changes-L1" @@ -143,12 +143,12 @@ "url": "https://drafts.csswg.org/css-easing-2/#normative" } }, - "#priv-sec": { + "#privacy": { "current": { - "number": "3", + "number": "", "spec": "CSS Easing Functions 2", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-easing-2/#priv-sec" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-easing-2/#privacy" } }, "#references": { @@ -159,6 +159,14 @@ "url": "https://drafts.csswg.org/css-easing-2/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Easing Functions 2", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-easing-2/#security" + } + }, "#serialization": { "current": { "number": "2.5", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-extensions-1.json b/bikeshed/spec-data/readonly/headings/headings-css-extensions-1.json index e3f3b53845..b4be8715c9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-extensions-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-extensions-1.json @@ -43,7 +43,7 @@ "current": { "number": "3", "spec": "CSS Extensions", - "text": "Custom Selectors Info about the 'Custom Selectors' definition.#custom-selectorReferenced in: 3. Custom Selectors", + "text": "Custom Selectors", "url": "https://drafts.csswg.org/css-extensions-1/#custom-selectors" } }, @@ -111,6 +111,14 @@ "url": "https://drafts.csswg.org/css-extensions-1/#normative" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Extensions", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-extensions-1/#privacy" + } + }, "#references": { "current": { "number": "", @@ -127,6 +135,14 @@ "url": "https://drafts.csswg.org/css-extensions-1/#script-custom-selectors" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Extensions", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-extensions-1/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-flexbox-1.json b/bikeshed/spec-data/readonly/headings/headings-css-flexbox-1.json index 75828e9d39..3aef8cd2e1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-flexbox-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-flexbox-1.json @@ -99,15 +99,15 @@ }, "#axis-mapping": { "current": { - "number": "", + "number": "A", "spec": "CSS Flexbox 1", - "text": "Appendix A: Axis Mappings", + "text": "Axis Mappings", "url": "https://drafts.csswg.org/css-flexbox-1/#axis-mapping" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Flexbox 1", - "text": "Appendix A: Axis Mappings", + "text": "Axis Mappings", "url": "https://www.w3.org/TR/css-flexbox-1/#axis-mapping" } }, @@ -1191,7 +1191,7 @@ "snapshot": { "number": "", "spec": "CSS Flexbox 1", - "text": "801 TestsCSS Flexible Box Layout Module Level 1", + "text": "CSS Flexible Box Layout Module Level 1", "url": "https://www.w3.org/TR/css-flexbox-1/#title" } }, @@ -1281,9 +1281,9 @@ }, "#webkit-aliases": { "current": { - "number": "", + "number": "B", "spec": "CSS Flexbox 1", - "text": "Appendix B: -webkit- Legacy Properties", + "text": "-webkit- Legacy Properties", "url": "https://drafts.csswg.org/css-flexbox-1/#webkit-aliases" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-css-font-loading-3.json b/bikeshed/spec-data/readonly/headings/headings-css-font-loading-3.json index 654d974df5..a2f9342473 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-font-loading-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-font-loading-3.json @@ -7,7 +7,7 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#FontFaceSet-events" }, "snapshot": { - "number": "3.2", + "number": "3.1", "spec": "CSS Font Loading 3", "text": "Events", "url": "https://www.w3.org/TR/css-font-loading-3/#FontFaceSet-events" @@ -21,9 +21,9 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#FontFaceSet-interface" }, "snapshot": { - "number": "", + "number": "3", "spec": "CSS Font Loading 3", - "text": "3 The FontFaceSet Interface", + "text": "The FontFaceSet Interface", "url": "https://www.w3.org/TR/css-font-loading-3/#FontFaceSet-interface" } }, @@ -69,52 +69,18 @@ "url": "https://www.w3.org/TR/css-font-loading-3/#changes" } }, - "#changes-since-20130212": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Changes from the February 2013 CSS3 Fonts Working Draft", - "url": "https://www.w3.org/TR/css-font-loading-3/#changes-since-20130212" - } - }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Conformance", - "url": "https://www.w3.org/TR/css-font-loading-3/#conformance" - } - }, - "#conformance-classes": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/css-font-loading-3/#conformance-classes" - } - }, - "#contents": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/css-font-loading-3/#contents" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Document conventions", - "url": "https://www.w3.org/TR/css-font-loading-3/#conventions" - } - }, "#discovery": { "current": { "number": "2.4", "spec": "CSS Font Loading 3", "text": "Discovery of information about a font", "url": "https://drafts.csswg.org/css-font-loading-3/#discovery" + }, + "snapshot": { + "number": "2.4", + "spec": "CSS Font Loading 3", + "text": "Discovery of information about a font", + "url": "https://www.w3.org/TR/css-font-loading-3/#discovery" } }, "#document-font-face-set": { @@ -131,14 +97,6 @@ "url": "https://www.w3.org/TR/css-font-loading-3/#document-font-face-set" } }, - "#experimental": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Experimental implementations", - "url": "https://www.w3.org/TR/css-font-loading-3/#experimental" - } - }, "#font-face-constructor": { "current": { "number": "2.1", @@ -189,7 +147,7 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#font-face-set-check" }, "snapshot": { - "number": "3.4", + "number": "3.3", "spec": "CSS Font Loading 3", "text": "The check() method", "url": "https://www.w3.org/TR/css-font-loading-3/#font-face-set-check" @@ -203,7 +161,7 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#font-face-set-css" }, "snapshot": { - "number": "3.6", + "number": "3.5", "spec": "CSS Font Loading 3", "text": "Interaction with CSS Font Loading and Matching", "url": "https://www.w3.org/TR/css-font-loading-3/#font-face-set-css" @@ -217,7 +175,7 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#font-face-set-load" }, "snapshot": { - "number": "3.3", + "number": "3.2", "spec": "CSS Font Loading 3", "text": "The load() method", "url": "https://www.w3.org/TR/css-font-loading-3/#font-face-set-load" @@ -231,9 +189,9 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#font-face-set-ready" }, "snapshot": { - "number": "3.5", + "number": "3.4", "spec": "CSS Font Loading 3", - "text": "The ready() method", + "text": "The ready attribute", "url": "https://www.w3.org/TR/css-font-loading-3/#font-face-set-ready" } }, @@ -245,9 +203,9 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#font-face-source" }, "snapshot": { - "number": "", + "number": "4", "spec": "CSS Font Loading 3", - "text": "4 The FontFaceSource interface", + "text": "The FontFaceSource Mixin", "url": "https://www.w3.org/TR/css-font-loading-3/#font-face-source" } }, @@ -259,9 +217,9 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#font-load-event-examples" }, "snapshot": { - "number": "", + "number": "5", "spec": "CSS Font Loading 3", - "text": "5 API Examples", + "text": "API Examples", "url": "https://www.w3.org/TR/css-font-loading-3/#font-load-event-examples" } }, @@ -273,9 +231,9 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#fontface-interface" }, "snapshot": { - "number": "", + "number": "2", "spec": "CSS Font Loading 3", - "text": "2 The FontFace Interface", + "text": "The FontFace Interface", "url": "https://www.w3.org/TR/css-font-loading-3/#fontface-interface" } }, @@ -299,6 +257,12 @@ "spec": "CSS Font Loading 3", "text": "IDL Index", "url": "https://drafts.csswg.org/css-font-loading-3/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-font-loading-3/#idl-index" } }, "#index": { @@ -321,6 +285,12 @@ "spec": "CSS Font Loading 3", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/css-font-loading-3/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-font-loading-3/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -329,14 +299,12 @@ "spec": "CSS Font Loading 3", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/css-font-loading-3/#index-defined-here" - } - }, - "#informative": { + }, "snapshot": { "number": "", "spec": "CSS Font Loading 3", - "text": "Informative References", - "url": "https://www.w3.org/TR/css-font-loading-3/#informative" + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-font-loading-3/#index-defined-here" } }, "#introduction": { @@ -347,9 +315,9 @@ "url": "https://drafts.csswg.org/css-font-loading-3/#introduction" }, "snapshot": { - "number": "", + "number": "1", "spec": "CSS Font Loading 3", - "text": "1 Introduction", + "text": "Introduction", "url": "https://www.w3.org/TR/css-font-loading-3/#introduction" } }, @@ -359,6 +327,12 @@ "spec": "CSS Font Loading 3", "text": "Issues Index", "url": "https://drafts.csswg.org/css-font-loading-3/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-font-loading-3/#issues-index" } }, "#normative": { @@ -375,28 +349,18 @@ "url": "https://www.w3.org/TR/css-font-loading-3/#normative" } }, - "#partial": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "Partial implementations", - "url": "https://www.w3.org/TR/css-font-loading-3/#partial" - } - }, - "#priv-sec": { + "#privacy": { "current": { "number": "", "spec": "CSS Font Loading 3", - "text": "Privacy & Security Considerations", - "url": "https://drafts.csswg.org/css-font-loading-3/#priv-sec" - } - }, - "#property-index": { + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-font-loading-3/#privacy" + }, "snapshot": { "number": "", "spec": "CSS Font Loading 3", - "text": "Property index", - "url": "https://www.w3.org/TR/css-font-loading-3/#property-index" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-font-loading-3/#privacy" } }, "#references": { @@ -413,12 +377,18 @@ "url": "https://www.w3.org/TR/css-font-loading-3/#references" } }, - "#set-modifications": { + "#security": { + "current": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-font-loading-3/#security" + }, "snapshot": { - "number": "3.1", + "number": "", "spec": "CSS Font Loading 3", - "text": "Modifications of normal Set methods", - "url": "https://www.w3.org/TR/css-font-loading-3/#set-modifications" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-font-loading-3/#security" } }, "#sotd": { @@ -427,22 +397,12 @@ "spec": "CSS Font Loading 3", "text": "Status of this document", "url": "https://drafts.csswg.org/css-font-loading-3/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Font Loading 3", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-font-loading-3/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS Font Loading 3", - "text": "W3C Last Call Working Draft, 22 May 2014", - "url": "https://www.w3.org/TR/css-font-loading-3/#subtitle" + "url": "https://www.w3.org/TR/css-font-loading-3/#sotd" } }, "#task-source": { @@ -451,14 +411,12 @@ "spec": "CSS Font Loading 3", "text": "Task Sources", "url": "https://drafts.csswg.org/css-font-loading-3/#task-source" - } - }, - "#testing": { + }, "snapshot": { - "number": "", + "number": "1.2", "spec": "CSS Font Loading 3", - "text": "Non-experimental implementations", - "url": "https://www.w3.org/TR/css-font-loading-3/#testing" + "text": "Task Sources", + "url": "https://www.w3.org/TR/css-font-loading-3/#task-source" } }, "#title": { @@ -481,6 +439,12 @@ "spec": "CSS Font Loading 3", "text": "Table of Contents", "url": "https://drafts.csswg.org/css-font-loading-3/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-font-loading-3/#toc" } }, "#values": { @@ -503,6 +467,12 @@ "spec": "CSS Font Loading 3", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-font-loading-3/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-font-loading-3/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -511,6 +481,12 @@ "spec": "CSS Font Loading 3", "text": "Conformance", "url": "https://drafts.csswg.org/css-font-loading-3/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-font-loading-3/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -519,6 +495,12 @@ "spec": "CSS Font Loading 3", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-font-loading-3/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-font-loading-3/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -527,6 +509,12 @@ "spec": "CSS Font Loading 3", "text": "Document conventions", "url": "https://drafts.csswg.org/css-font-loading-3/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-font-loading-3/#w3c-conventions" } }, "#w3c-partial": { @@ -535,6 +523,12 @@ "spec": "CSS Font Loading 3", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-font-loading-3/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-font-loading-3/#w3c-partial" } }, "#w3c-testing": { @@ -543,6 +537,12 @@ "spec": "CSS Font Loading 3", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-font-loading-3/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Font Loading 3", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-font-loading-3/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-fonts-4.json b/bikeshed/spec-data/readonly/headings/headings-css-fonts-4.json index 5fe878cfaa..066511f794 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-fonts-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-fonts-4.json @@ -9,7 +9,7 @@ "snapshot": { "number": "", "spec": "CSS Fonts 4", - "text": "15. Accessibility Considerations", + "text": "16. Accessibility Considerations", "url": "https://www.w3.org/TR/css-fonts-4/#a11y" } }, @@ -51,7 +51,7 @@ "snapshot": { "number": "", "spec": "CSS Fonts 4", - "text": "16. Acknowledgments", + "text": "17. Acknowledgments", "url": "https://www.w3.org/TR/css-fonts-4/#acknowledgments" } }, @@ -93,7 +93,7 @@ "snapshot": { "number": "", "spec": "CSS Fonts 4", - "text": "17. Changes", + "text": "18. Changes", "url": "https://www.w3.org/TR/css-fonts-4/#changes" } }, @@ -105,7 +105,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#changes-2018-04-10" }, "snapshot": { - "number": "17.5", + "number": "18.6", "spec": "CSS Fonts 4", "text": "Changes from the 10 April 2018 Working Draft", "url": "https://www.w3.org/TR/css-fonts-4/#changes-2018-04-10" @@ -119,7 +119,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#changes-2018-09-20" }, "snapshot": { - "number": "17.4", + "number": "18.5", "spec": "CSS Fonts 4", "text": "Changes from the 20 September 2018 Working Draft", "url": "https://www.w3.org/TR/css-fonts-4/#changes-2018-09-20" @@ -133,7 +133,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#changes-2019-11-13" }, "snapshot": { - "number": "17.3", + "number": "18.4", "spec": "CSS Fonts 4", "text": "Changes from the 13 November 2019 Working Draft", "url": "https://www.w3.org/TR/css-fonts-4/#changes-2019-11-13" @@ -147,7 +147,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#changes-2020-11-17" }, "snapshot": { - "number": "17.2", + "number": "18.3", "spec": "CSS Fonts 4", "text": "Changes from the 17 November 2020 Working Draft", "url": "https://www.w3.org/TR/css-fonts-4/#changes-2020-11-17" @@ -161,7 +161,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#changes-2021-07-29" }, "snapshot": { - "number": "17.1", + "number": "18.2", "spec": "CSS Fonts 4", "text": "Changes from the 29 July 2021 Working Draft", "url": "https://www.w3.org/TR/css-fonts-4/#changes-2021-07-29" @@ -173,6 +173,12 @@ "spec": "CSS Fonts 4", "text": "Changes from the 21 December 2021 Working Draft", "url": "https://drafts.csswg.org/css-fonts-4/#changes-2021-12-21" + }, + "snapshot": { + "number": "18.1", + "spec": "CSS Fonts 4", + "text": "Changes from the 21 December 2021 Working Draft", + "url": "https://www.w3.org/TR/css-fonts-4/#changes-2021-12-21" } }, "#changes-fonts-3": { @@ -183,7 +189,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#changes-fonts-3" }, "snapshot": { - "number": "17.6", + "number": "18.7", "spec": "CSS Fonts 4", "text": "Changes from the 20 September 2018 CSS Fonts 3 Recommendation", "url": "https://www.w3.org/TR/css-fonts-4/#changes-fonts-3" @@ -375,7 +381,7 @@ "current": { "number": "4.1", "spec": "CSS Fonts 4", - "text": "The @font-face Info about the '@font-face' definition.#at-font-face-ruleReferenced in: 3.1. Introduction to Font Rendering Controls 4.1. The @font-face rule (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) 4.2. Font family: the font-family descriptor (2) 4.3. Font reference: the src descriptor (2) 4.3.2. Loading an individual item in the src descriptor (2) 4.3.3.1. Local font fallback (2) 4.4. Font property descriptors: the font-style, font-weight, and font-stretch descriptors (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) 4.5. Character range: the unicode-range descriptor 4.5.1. Using character ranges to define composite fonts (2) (3) (4) 4.6. Font features and variations: the font-feature-settings and font-variation-settings descriptors (2) (3) (4) 4.7. Using named instances from variable fonts: the font-named-instance descriptor (2) 4.8.1. Font loading guidelines (2) (3) (4) 4.8.2. Font fetching requirements 4.9. Controlling Font Display Per Font-Face: the font-display descriptor (2) 4.9.1. Controlling Font Display Per Font-Family via @font-feature-values (2) (3) (4) 4.10. Default font language overriding: the font-language-override descriptor 4.11. Default font metrics overriding: the ascent-override, descent-override and line-gap-override descriptors (2) (3) 5.1. Localized name matching 5.2. Matching font styles (2) (3) (4) (5) (6) (7) 7. Font Feature and Variation Resolution 7.2. Feature and variation precedence (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) 7.3. Feature precedence examples (2) 10.2. Web Fonts (2) 11.1. Font tech (2) 12. Object Model 12.1. The CSSFontFaceRule interface rule", + "text": "The @font-face rule", "url": "https://drafts.csswg.org/css-fonts-4/#font-face-rule" }, "snapshot": { @@ -429,13 +435,13 @@ }, "#font-families": { "current": { - "number": "2.1.2", + "number": "2.1.4", "spec": "CSS Fonts 4", "text": "Relationship Between Faces and Families", "url": "https://drafts.csswg.org/css-fonts-4/#font-families" }, "snapshot": { - "number": "2.1.2", + "number": "2.1.4", "spec": "CSS Fonts 4", "text": "Relationship Between Faces and Families", "url": "https://www.w3.org/TR/css-fonts-4/#font-families" @@ -501,7 +507,7 @@ "current": { "number": "6.9", "spec": "CSS Fonts 4", - "text": "Defining font specific alternates: the @font-feature-values Info about the '@font-feature-values' definition.#at-ruledef-font-feature-valuesReferenced in: 4.9.1. Controlling Font Display Per Font-Family via @font-feature-values (2) (3) (4) 6.8. Alternates and swashes: the font-variant-alternates property 6.9. Defining font specific alternates: the @font-feature-values rule 6.9.1. Basic syntax (2) (3) (4) (5) (6) (7) (8) (9) 6.12. Low-level font feature settings control: the font-feature-settings property (2) (3) (4) (5) 12. Object Model rule", + "text": "Defining font specific alternates: the @font-feature-values rule", "url": "https://drafts.csswg.org/css-fonts-4/#font-feature-values" }, "snapshot": { @@ -739,13 +745,13 @@ "current": { "number": "4.4", "spec": "CSS Fonts 4", - "text": "Font property descriptors: the font-style, font-weight, and font-stretch descriptors", + "text": "Font property descriptors: the font-style, font-weight, and font-width descriptors", "url": "https://drafts.csswg.org/css-fonts-4/#font-prop-desc" }, "snapshot": { "number": "4.4", "spec": "CSS Fonts 4", - "text": "Font property descriptors: the font-style, font-weight, and font-stretch descriptors", + "text": "Font property descriptors: the font-style, font-weight, and font-width descriptors", "url": "https://www.w3.org/TR/css-fonts-4/#font-prop-desc" } }, @@ -861,17 +867,31 @@ "url": "https://www.w3.org/TR/css-fonts-4/#font-size-prop" } }, + "#font-stretch-desc": { + "current": { + "number": "4.4.1", + "spec": "CSS Fonts 4", + "text": "Font width: the font-stretch legacy name alias", + "url": "https://drafts.csswg.org/css-fonts-4/#font-stretch-desc" + }, + "snapshot": { + "number": "4.4.1", + "spec": "CSS Fonts 4", + "text": "Font width: the font-stretch legacy name alias", + "url": "https://www.w3.org/TR/css-fonts-4/#font-stretch-desc" + } + }, "#font-stretch-prop": { "current": { - "number": "2.3", + "number": "2.3.1", "spec": "CSS Fonts 4", - "text": "Font width: the font-stretch property", + "text": "Font width: the font-stretch legacy name alias", "url": "https://drafts.csswg.org/css-fonts-4/#font-stretch-prop" }, "snapshot": { - "number": "2.3", + "number": "2.3.1", "spec": "CSS Fonts 4", - "text": "Font width: the font-stretch property", + "text": "Font width: the font-stretch legacy name alias", "url": "https://www.w3.org/TR/css-fonts-4/#font-stretch-prop" } }, @@ -905,13 +925,13 @@ }, "#font-synthesis": { "current": { - "number": "2.8.4", + "number": "2.8.5", "spec": "CSS Fonts 4", "text": "Controlling synthetic faces: the font-synthesis shorthand", "url": "https://drafts.csswg.org/css-fonts-4/#font-synthesis" }, "snapshot": { - "number": "2.8.4", + "number": "2.8.5", "spec": "CSS Fonts 4", "text": "Controlling synthetic faces: the font-synthesis shorthand", "url": "https://www.w3.org/TR/css-fonts-4/#font-synthesis" @@ -931,6 +951,20 @@ "url": "https://www.w3.org/TR/css-fonts-4/#font-synthesis-intro" } }, + "#font-synthesis-position": { + "current": { + "number": "2.8.4", + "spec": "CSS Fonts 4", + "text": "Controlling synthesized super- and subscripts: The font-synthesis-position property", + "url": "https://drafts.csswg.org/css-fonts-4/#font-synthesis-position" + }, + "snapshot": { + "number": "2.8.4", + "spec": "CSS Fonts 4", + "text": "Controlling synthesized super- and subscripts: The font-synthesis-position property", + "url": "https://www.w3.org/TR/css-fonts-4/#font-synthesis-position" + } + }, "#font-synthesis-small-caps": { "current": { "number": "2.8.3", @@ -1169,15 +1203,43 @@ "url": "https://www.w3.org/TR/css-fonts-4/#font-weight-prop" } }, + "#font-width-prop": { + "current": { + "number": "2.3", + "spec": "CSS Fonts 4", + "text": "Font width: the font-width property", + "url": "https://drafts.csswg.org/css-fonts-4/#font-width-prop" + }, + "snapshot": { + "number": "2.3", + "spec": "CSS Fonts 4", + "text": "Font width: the font-width property", + "url": "https://www.w3.org/TR/css-fonts-4/#font-width-prop" + } + }, + "#generic-family-name-syntax": { + "current": { + "number": "2.1.2", + "spec": "CSS Fonts 4", + "text": "Syntax of <generic-family>", + "url": "https://drafts.csswg.org/css-fonts-4/#generic-family-name-syntax" + }, + "snapshot": { + "number": "2.1.2", + "spec": "CSS Fonts 4", + "text": "Syntax of <generic-family>", + "url": "https://www.w3.org/TR/css-fonts-4/#generic-family-name-syntax" + } + }, "#generic-font-families": { "current": { - "number": "2.1.3", + "number": "2.1.5", "spec": "CSS Fonts 4", "text": "Generic font families", "url": "https://drafts.csswg.org/css-fonts-4/#generic-font-families" }, "snapshot": { - "number": "2.1.3", + "number": "2.1.5", "spec": "CSS Fonts 4", "text": "Generic font families", "url": "https://www.w3.org/TR/css-fonts-4/#generic-font-families" @@ -1465,15 +1527,15 @@ }, "#platform-props-to-css": { "current": { - "number": "", + "number": "A", "spec": "CSS Fonts 4", - "text": "Appendix A: Mapping platform font properties to CSS properties", + "text": "Mapping platform font properties to CSS properties", "url": "https://drafts.csswg.org/css-fonts-4/#platform-props-to-css" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Fonts 4", - "text": "Appendix A: Mapping platform font properties to CSS properties", + "text": "Mapping platform font properties to CSS properties", "url": "https://www.w3.org/TR/css-fonts-4/#platform-props-to-css" } }, @@ -1501,7 +1563,7 @@ "snapshot": { "number": "", "spec": "CSS Fonts 4", - "text": "14. Privacy Considerations", + "text": "15. Privacy Considerations", "url": "https://www.w3.org/TR/css-fonts-4/#privacy" } }, @@ -1557,7 +1619,7 @@ "snapshot": { "number": "", "spec": "CSS Fonts 4", - "text": "13. Security Considerations", + "text": "14. Security Considerations", "url": "https://www.w3.org/TR/css-fonts-4/#security" } }, @@ -1567,6 +1629,12 @@ "spec": "CSS Fonts 4", "text": "13. Serializing", "url": "https://drafts.csswg.org/css-fonts-4/#serializing" + }, + "snapshot": { + "number": "", + "spec": "CSS Fonts 4", + "text": "13. Serializing", + "url": "https://www.w3.org/TR/css-fonts-4/#serializing" } }, "#serializing-at-rules": { @@ -1575,6 +1643,12 @@ "spec": "CSS Fonts 4", "text": "Serializing font-related at-rules", "url": "https://drafts.csswg.org/css-fonts-4/#serializing-at-rules" + }, + "snapshot": { + "number": "13.2", + "spec": "CSS Fonts 4", + "text": "Serializing font-related at-rules", + "url": "https://www.w3.org/TR/css-fonts-4/#serializing-at-rules" } }, "#serializing-properties": { @@ -1583,6 +1657,12 @@ "spec": "CSS Fonts 4", "text": "Serializing font-related properties", "url": "https://drafts.csswg.org/css-fonts-4/#serializing-properties" + }, + "snapshot": { + "number": "13.1", + "spec": "CSS Fonts 4", + "text": "Serializing font-related properties", + "url": "https://www.w3.org/TR/css-fonts-4/#serializing-properties" } }, "#sotd": { @@ -1591,6 +1671,12 @@ "spec": "CSS Fonts 4", "text": "Status of this document", "url": "https://drafts.csswg.org/css-fonts-4/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Fonts 4", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-fonts-4/#sotd" } }, "#sp201": { @@ -1601,7 +1687,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp201" }, "snapshot": { - "number": "14.1", + "number": "15.1", "spec": "CSS Fonts 4", "text": "What information might this feature expose to Web sites or other parties, and for what purposes is that exposure necessary?", "url": "https://www.w3.org/TR/css-fonts-4/#sp201" @@ -1615,7 +1701,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp202" }, "snapshot": { - "number": "14.2", + "number": "15.2", "spec": "CSS Fonts 4", "text": "Is this specification exposing the minimum amount of information necessary to power the feature?", "url": "https://www.w3.org/TR/css-fonts-4/#sp202" @@ -1629,7 +1715,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp203" }, "snapshot": { - "number": "14.3", + "number": "15.3", "spec": "CSS Fonts 4", "text": "How does this specification deal with personal information or personally-identifiable information or information derived thereof?", "url": "https://www.w3.org/TR/css-fonts-4/#sp203" @@ -1643,7 +1729,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp204" }, "snapshot": { - "number": "14.4", + "number": "15.4", "spec": "CSS Fonts 4", "text": "How does this specification deal with sensitive information?", "url": "https://www.w3.org/TR/css-fonts-4/#sp204" @@ -1657,7 +1743,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp205" }, "snapshot": { - "number": "14.5", + "number": "15.5", "spec": "CSS Fonts 4", "text": "Does this specification introduce new state for an origin that persists across browsing sessions?", "url": "https://www.w3.org/TR/css-fonts-4/#sp205" @@ -1671,7 +1757,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp206" }, "snapshot": { - "number": "14.6", + "number": "15.6", "spec": "CSS Fonts 4", "text": "What information from the underlying platform, e.g. configuration data, is exposed by this specification to an origin?", "url": "https://www.w3.org/TR/css-fonts-4/#sp206" @@ -1685,7 +1771,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp207" }, "snapshot": { - "number": "14.7", + "number": "15.7", "spec": "CSS Fonts 4", "text": "Does this specification allow an origin access to sensors on a user’s device", "url": "https://www.w3.org/TR/css-fonts-4/#sp207" @@ -1699,7 +1785,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp208" }, "snapshot": { - "number": "14.8", + "number": "15.8", "spec": "CSS Fonts 4", "text": "What data does this specification expose to an origin? Please also document what data is identical to data exposed by other features, in the same or different contexts.", "url": "https://www.w3.org/TR/css-fonts-4/#sp208" @@ -1713,7 +1799,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp209" }, "snapshot": { - "number": "14.9", + "number": "15.9", "spec": "CSS Fonts 4", "text": "Does this specification enable new script execution/loading mechanisms?", "url": "https://www.w3.org/TR/css-fonts-4/#sp209" @@ -1727,7 +1813,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp210" }, "snapshot": { - "number": "14.10", + "number": "15.10", "spec": "CSS Fonts 4", "text": "Does this specification allow an origin to access other devices?", "url": "https://www.w3.org/TR/css-fonts-4/#sp210" @@ -1741,7 +1827,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp211" }, "snapshot": { - "number": "14.11", + "number": "15.11", "spec": "CSS Fonts 4", "text": "Does this specification allow an origin some measure of control over a user agent’s native UI?", "url": "https://www.w3.org/TR/css-fonts-4/#sp211" @@ -1755,7 +1841,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp212" }, "snapshot": { - "number": "14.12", + "number": "15.12", "spec": "CSS Fonts 4", "text": "What temporary identifiers might this specification create or expose to the web?", "url": "https://www.w3.org/TR/css-fonts-4/#sp212" @@ -1769,7 +1855,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp213" }, "snapshot": { - "number": "14.13", + "number": "15.13", "spec": "CSS Fonts 4", "text": "How does this specification distinguish between behavior in first-party and third-party contexts?", "url": "https://www.w3.org/TR/css-fonts-4/#sp213" @@ -1783,7 +1869,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp214" }, "snapshot": { - "number": "14.14", + "number": "15.14", "spec": "CSS Fonts 4", "text": "How does this specification work in the context of a user agent’s Private Browsing or \"incognito\" mode?", "url": "https://www.w3.org/TR/css-fonts-4/#sp214" @@ -1797,7 +1883,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp215" }, "snapshot": { - "number": "14.15", + "number": "15.15", "spec": "CSS Fonts 4", "text": "Does this specification have a \"Security Considerations\" and \"Privacy Considerations\" section?", "url": "https://www.w3.org/TR/css-fonts-4/#sp215" @@ -1811,7 +1897,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp216" }, "snapshot": { - "number": "14.16", + "number": "15.16", "spec": "CSS Fonts 4", "text": "Does this specification allow downgrading default security characteristics?", "url": "https://www.w3.org/TR/css-fonts-4/#sp216" @@ -1825,7 +1911,7 @@ "url": "https://drafts.csswg.org/css-fonts-4/#sp217" }, "snapshot": { - "number": "14.17", + "number": "15.17", "spec": "CSS Fonts 4", "text": "What should this questionnaire have asked?", "url": "https://www.w3.org/TR/css-fonts-4/#sp217" @@ -1845,12 +1931,18 @@ "url": "https://www.w3.org/TR/css-fonts-4/#src-desc" } }, - "#status": { + "#system": { + "current": { + "number": "2.1.3", + "spec": "CSS Fonts 4", + "text": "Syntax of <system-family-name>", + "url": "https://drafts.csswg.org/css-fonts-4/#system" + }, "snapshot": { - "number": "", + "number": "2.1.3", "spec": "CSS Fonts 4", - "text": "Status of this document", - "url": "https://www.w3.org/TR/css-fonts-4/#status" + "text": "Syntax of <system-family-name>", + "url": "https://www.w3.org/TR/css-fonts-4/#system" } }, "#system-font": { @@ -1877,7 +1969,7 @@ "snapshot": { "number": "", "spec": "CSS Fonts 4", - "text": "94 TestsCSS Fonts Module Level 4", + "text": "CSS Fonts Module Level 4", "url": "https://www.w3.org/TR/css-fonts-4/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-fonts-5.json b/bikeshed/spec-data/readonly/headings/headings-css-fonts-5.json index 3b8d77a076..51af6faeff 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-fonts-5.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-fonts-5.json @@ -57,13 +57,13 @@ }, "#changes-20210629": { "current": { - "number": "10.2", + "number": "10.4", "spec": "CSS Fonts 5", "text": "Changes since the FPWD of 2021-06-29", "url": "https://drafts.csswg.org/css-fonts-5/#changes-20210629" }, "snapshot": { - "number": "10.2", + "number": "10.3", "spec": "CSS Fonts 5", "text": "Changes since the FPWD of 2021-06-29", "url": "https://www.w3.org/TR/css-fonts-5/#changes-20210629" @@ -71,18 +71,40 @@ }, "#changes-20210729": { "current": { - "number": "10.1", + "number": "10.3", "spec": "CSS Fonts 5", "text": "Changes since the WD of 2021-07-29", "url": "https://drafts.csswg.org/css-fonts-5/#changes-20210729" }, "snapshot": { - "number": "10.1", + "number": "10.2", "spec": "CSS Fonts 5", "text": "Changes since the WD of 2021-07-29", "url": "https://www.w3.org/TR/css-fonts-5/#changes-20210729" } }, + "#changes-20211221": { + "current": { + "number": "10.2", + "spec": "CSS Fonts 5", + "text": "Changes since the WD of 21 December 2021", + "url": "https://drafts.csswg.org/css-fonts-5/#changes-20211221" + }, + "snapshot": { + "number": "10.1", + "spec": "CSS Fonts 5", + "text": "Changes since the WD of 21 December 2021", + "url": "https://www.w3.org/TR/css-fonts-5/#changes-20211221" + } + }, + "#changes-20260206": { + "current": { + "number": "10.1", + "spec": "CSS Fonts 5", + "text": "Changes since the WD of 6 February 2024", + "url": "https://drafts.csswg.org/css-fonts-5/#changes-20260206" + } + }, "#font-face-descriptor-table": { "current": { "number": "", @@ -101,7 +123,7 @@ "current": { "number": "3.1", "spec": "CSS Fonts 5", - "text": "The @font-face Info about the '@font-face' definition.#at-font-face-ruleReferenced in: 2.4. Relative sizing: the font-size-adjust property 3.1. The @font-face rule 3.3. Font property descriptors: the font-size 3.4. Glyph Size Multiplier: the size-adjust descriptor (2) 3.5. Line Height Font Metrics Overrides: the ascent-override, descent-override, and line-gap-override descriptors (2) (3) 3.6. Superscript and subscript metrics overrides: the superscript-position-override, subscript-position-override,superscript-size-override and subscript-size-override descriptors (2) (3) (4) rule", + "text": "The @font-face rule", "url": "https://drafts.csswg.org/css-fonts-5/#font-face-rule" }, "snapshot": { @@ -495,6 +517,12 @@ "spec": "CSS Fonts 5", "text": "Status of this document", "url": "https://drafts.csswg.org/css-fonts-5/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Fonts 5", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-fonts-5/#sotd" } }, "#src-desc": { @@ -511,14 +539,6 @@ "url": "https://www.w3.org/TR/css-fonts-5/#src-desc" } }, - "#status": { - "snapshot": { - "number": "", - "spec": "CSS Fonts 5", - "text": "Status of this document", - "url": "https://www.w3.org/TR/css-fonts-5/#status" - } - }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-gcpm-3.json b/bikeshed/spec-data/readonly/headings/headings-css-gcpm-3.json index b9626f26c1..4ea371075b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-gcpm-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-gcpm-3.json @@ -27,30 +27,6 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#acknowledgments" } }, - "#bookmark-label": { - "snapshot": { - "number": "6.2", - "spec": "CSS GCPM 3", - "text": "bookmark-label", - "url": "https://www.w3.org/TR/css-gcpm-3/#bookmark-label" - } - }, - "#bookmark-level": { - "snapshot": { - "number": "6.1", - "spec": "CSS GCPM 3", - "text": "bookmark-level", - "url": "https://www.w3.org/TR/css-gcpm-3/#bookmark-level" - } - }, - "#bookmark-state": { - "snapshot": { - "number": "6.3", - "spec": "CSS GCPM 3", - "text": "bookmark-state", - "url": "https://www.w3.org/TR/css-gcpm-3/#bookmark-state" - } - }, "#bookmarks": { "current": { "number": "6", @@ -59,23 +35,23 @@ "url": "https://drafts.csswg.org/css-gcpm-3/#bookmarks" }, "snapshot": { - "number": "", + "number": "6", "spec": "CSS GCPM 3", - "text": "6 Bookmarks", + "text": "Bookmarks (moved)", "url": "https://www.w3.org/TR/css-gcpm-3/#bookmarks" } }, "#changes": { "current": { - "number": "", + "number": "C", "spec": "CSS GCPM 3", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-gcpm-3/#changes" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS GCPM 3", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-gcpm-3/#changes" } }, @@ -93,22 +69,6 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#cmyk-colors" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "Conformance", - "url": "https://www.w3.org/TR/css-gcpm-3/#conformance" - } - }, - "#conformance-classes": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/css-gcpm-3/#conformance-classes" - } - }, "#content-function-header": { "current": { "number": "1.1.1.1", @@ -123,22 +83,6 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#content-function-header" } }, - "#contents": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/css-gcpm-3/#contents" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "Document conventions", - "url": "https://www.w3.org/TR/css-gcpm-3/#conventions" - } - }, "#creating-footnotes": { "current": { "number": "2.2", @@ -161,9 +105,9 @@ "url": "https://drafts.csswg.org/css-gcpm-3/#cross-references" }, "snapshot": { - "number": "", + "number": "5", "spec": "CSS GCPM 3", - "text": "5 Cross-references", + "text": "Cross-references (moved)", "url": "https://www.w3.org/TR/css-gcpm-3/#cross-references" } }, @@ -209,14 +153,6 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#element-syntax" } }, - "#experimental": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "Experimental implementations", - "url": "https://www.w3.org/TR/css-gcpm-3/#experimental" - } - }, "#footnote-area": { "current": { "number": "2.4", @@ -365,23 +301,23 @@ "url": "https://drafts.csswg.org/css-gcpm-3/#footnotes" }, "snapshot": { - "number": "", + "number": "2", "spec": "CSS GCPM 3", - "text": "2 Footnotes", + "text": "Footnotes", "url": "https://www.w3.org/TR/css-gcpm-3/#footnotes" } }, "#former-wd-sections": { "current": { - "number": "", + "number": "A", "spec": "CSS GCPM 3", - "text": "Appendix A: Where Are They Now?", + "text": "Where Are They Now?", "url": "https://drafts.csswg.org/css-gcpm-3/#former-wd-sections" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS GCPM 3", - "text": "Appendix A: Where Are They Now?", + "text": "Where Are They Now?", "url": "https://www.w3.org/TR/css-gcpm-3/#former-wd-sections" } }, @@ -419,6 +355,12 @@ "spec": "CSS GCPM 3", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/css-gcpm-3/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-gcpm-3/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -427,6 +369,12 @@ "spec": "CSS GCPM 3", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/css-gcpm-3/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-gcpm-3/#index-defined-here" } }, "#informative": { @@ -479,9 +427,9 @@ "url": "https://drafts.csswg.org/css-gcpm-3/#leaders" }, "snapshot": { - "number": "", + "number": "4", "spec": "CSS GCPM 3", - "text": "4 Leaders", + "text": "Leaders (moved)", "url": "https://www.w3.org/TR/css-gcpm-3/#leaders" } }, @@ -569,20 +517,18 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#paged-presentations" } }, - "#partial": { - "snapshot": { + "#privacy": { + "current": { "number": "", "spec": "CSS GCPM 3", - "text": "Partial implementations", - "url": "https://www.w3.org/TR/css-gcpm-3/#partial" - } - }, - "#procedure-leader": { + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-gcpm-3/#privacy" + }, "snapshot": { - "number": "4.1.1", + "number": "", "spec": "CSS GCPM 3", - "text": "Procedure for rendering leaders", - "url": "https://www.w3.org/TR/css-gcpm-3/#procedure-leader" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-gcpm-3/#privacy" } }, "#property-index": { @@ -595,7 +541,7 @@ "snapshot": { "number": "", "spec": "CSS GCPM 3", - "text": "Property index", + "text": "Property Index", "url": "https://www.w3.org/TR/css-gcpm-3/#property-index" } }, @@ -613,14 +559,6 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#references" } }, - "#rendering-leaders": { - "snapshot": { - "number": "4.1", - "spec": "CSS GCPM 3", - "text": "Rendering leaders", - "url": "https://www.w3.org/TR/css-gcpm-3/#rendering-leaders" - } - }, "#resetting-footnote-counter": { "current": { "number": "2.5.2", @@ -657,9 +595,9 @@ "url": "https://drafts.csswg.org/css-gcpm-3/#running-headers-and-footers" }, "snapshot": { - "number": "", + "number": "1", "spec": "CSS GCPM 3", - "text": "1 Running headers and footers", + "text": "Running headers and footers", "url": "https://www.w3.org/TR/css-gcpm-3/#running-headers-and-footers" } }, @@ -677,6 +615,20 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#running-syntax" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-gcpm-3/#security" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-gcpm-3/#security" + } + }, "#selecting-columns-and-pages": { "current": { "number": "", @@ -711,14 +663,12 @@ "spec": "CSS GCPM 3", "text": "Status of this document", "url": "https://drafts.csswg.org/css-gcpm-3/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS GCPM 3", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-gcpm-3/#status" + "url": "https://www.w3.org/TR/css-gcpm-3/#sotd" } }, "#styling-blank-pages": { @@ -735,46 +685,6 @@ "url": "https://www.w3.org/TR/css-gcpm-3/#styling-blank-pages" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "W3C Working Draft, 13 May 2014", - "url": "https://www.w3.org/TR/css-gcpm-3/#subtitle" - } - }, - "#target-counter": { - "snapshot": { - "number": "5.1", - "spec": "CSS GCPM 3", - "text": "The target-counter() function", - "url": "https://www.w3.org/TR/css-gcpm-3/#target-counter" - } - }, - "#target-counters": { - "snapshot": { - "number": "5.2", - "spec": "CSS GCPM 3", - "text": "The target-counters() function", - "url": "https://www.w3.org/TR/css-gcpm-3/#target-counters" - } - }, - "#target-text": { - "snapshot": { - "number": "5.3", - "spec": "CSS GCPM 3", - "text": "target-text", - "url": "https://www.w3.org/TR/css-gcpm-3/#target-text" - } - }, - "#testing": { - "snapshot": { - "number": "", - "spec": "CSS GCPM 3", - "text": "Non-experimental implementations", - "url": "https://www.w3.org/TR/css-gcpm-3/#testing" - } - }, "#the-first-page-pseudo-element": { "current": { "number": "3", @@ -783,9 +693,9 @@ "url": "https://drafts.csswg.org/css-gcpm-3/#the-first-page-pseudo-element" }, "snapshot": { - "number": "", + "number": "3", "spec": "CSS GCPM 3", - "text": "3 Selecting Pages", + "text": "Selecting Pages", "url": "https://www.w3.org/TR/css-gcpm-3/#the-first-page-pseudo-element" } }, @@ -809,19 +719,25 @@ "spec": "CSS GCPM 3", "text": "Table of Contents", "url": "https://drafts.csswg.org/css-gcpm-3/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-gcpm-3/#toc" } }, "#ua-stylesheet": { "current": { - "number": "", + "number": "B", "spec": "CSS GCPM 3", - "text": "Appendix B: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://drafts.csswg.org/css-gcpm-3/#ua-stylesheet" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS GCPM 3", - "text": "Appendix B: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://www.w3.org/TR/css-gcpm-3/#ua-stylesheet" } }, @@ -845,6 +761,12 @@ "spec": "CSS GCPM 3", "text": "Value Definitions", "url": "https://drafts.csswg.org/css-gcpm-3/#values" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Value Definitions", + "url": "https://www.w3.org/TR/css-gcpm-3/#values" } }, "#w3c-conform-future-proofing": { @@ -853,6 +775,12 @@ "spec": "CSS GCPM 3", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-gcpm-3/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-gcpm-3/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -861,6 +789,12 @@ "spec": "CSS GCPM 3", "text": "Conformance", "url": "https://drafts.csswg.org/css-gcpm-3/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-gcpm-3/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -869,6 +803,12 @@ "spec": "CSS GCPM 3", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-gcpm-3/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-gcpm-3/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -877,6 +817,12 @@ "spec": "CSS GCPM 3", "text": "Document conventions", "url": "https://drafts.csswg.org/css-gcpm-3/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-gcpm-3/#w3c-conventions" } }, "#w3c-partial": { @@ -885,6 +831,12 @@ "spec": "CSS GCPM 3", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-gcpm-3/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-gcpm-3/#w3c-partial" } }, "#w3c-testing": { @@ -893,6 +845,12 @@ "spec": "CSS GCPM 3", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-gcpm-3/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS GCPM 3", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-gcpm-3/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-gcpm-4.json b/bikeshed/spec-data/readonly/headings/headings-css-gcpm-4.json index da7986b83e..f3e524c67b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-gcpm-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-gcpm-4.json @@ -127,6 +127,14 @@ "url": "https://drafts.csswg.org/css-gcpm-4/#page-selector-pseudo-classes" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS GCPM 4", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-gcpm-4/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -151,6 +159,14 @@ "url": "https://drafts.csswg.org/css-gcpm-4/#running-headers-and-footers" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS GCPM 4", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-gcpm-4/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-grid-1.json b/bikeshed/spec-data/readonly/headings/headings-css-grid-1.json index a6f55d3498..fde4d40d8a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-grid-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-grid-1.json @@ -111,6 +111,14 @@ "url": "https://www.w3.org/TR/css-grid-1/#algo-flex-tracks" } }, + "#algo-grid-sizing": { + "current": { + "number": "11.1", + "spec": "CSS Grid Layout 1", + "text": "Grid Sizing Algorithm", + "url": "https://drafts.csswg.org/css-grid-1/#algo-grid-sizing" + } + }, "#algo-grow-tracks": { "current": { "number": "11.6", @@ -140,12 +148,6 @@ } }, "#algo-overview": { - "current": { - "number": "11.1", - "spec": "CSS Grid Layout 1", - "text": "Grid Sizing Algorithm", - "url": "https://drafts.csswg.org/css-grid-1/#algo-overview" - }, "snapshot": { "number": "11.1", "spec": "CSS Grid Layout 1", @@ -585,7 +587,7 @@ "current": { "number": "7.7", "spec": "CSS Grid Layout 1", - "text": "Automatic Placement Info about the 'Automatic Placement' definition.#auto-placementReferenced in: 2.2. Placing Items 8. Placing Grid Items 8.3. Line-based Placement: the grid-row-start, grid-column-start, grid-row-end, and grid-column-end properties : the grid-auto-flow property", + "text": "Automatic Placement: the grid-auto-flow property", "url": "https://drafts.csswg.org/css-grid-1/#grid-auto-flow-property" }, "snapshot": { @@ -949,7 +951,7 @@ "current": { "number": "", "spec": "CSS Grid Layout 1", - "text": "11. Grid Sizing", + "text": "11. Grid Layout Algorithm", "url": "https://drafts.csswg.org/css-grid-1/#layout-algorithm" }, "snapshot": { @@ -1226,12 +1228,6 @@ } }, "#priv-sec": { - "current": { - "number": "", - "spec": "CSS Grid Layout 1", - "text": "13. Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-grid-1/#priv-sec" - }, "snapshot": { "number": "", "spec": "CSS Grid Layout 1", @@ -1239,6 +1235,14 @@ "url": "https://www.w3.org/TR/css-grid-1/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Grid Layout 1", + "text": "13. Privacy Considerations", + "url": "https://drafts.csswg.org/css-grid-1/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -1337,6 +1341,14 @@ "url": "https://www.w3.org/TR/css-grid-1/#row-align" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Grid Layout 1", + "text": "14. Security Considerations", + "url": "https://drafts.csswg.org/css-grid-1/#security" + } + }, "#serialize-template": { "current": { "number": "7.3.1", @@ -1413,7 +1425,7 @@ "snapshot": { "number": "", "spec": "CSS Grid Layout 1", - "text": "649 TestsCSS Grid Layout Module Level 1", + "text": "CSS Grid Layout Module Level 1", "url": "https://www.w3.org/TR/css-grid-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-grid-2.json b/bikeshed/spec-data/readonly/headings/headings-css-grid-2.json index d5026eb728..37b8d49bfb 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-grid-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-grid-2.json @@ -111,6 +111,14 @@ "url": "https://www.w3.org/TR/css-grid-2/#algo-flex-tracks" } }, + "#algo-grid-sizing": { + "current": { + "number": "12.1", + "spec": "CSS Grid Layout 2", + "text": "Grid Sizing Algorithm", + "url": "https://drafts.csswg.org/css-grid-2/#algo-grid-sizing" + } + }, "#algo-grow-tracks": { "current": { "number": "12.6", @@ -140,12 +148,6 @@ } }, "#algo-overview": { - "current": { - "number": "12.1", - "spec": "CSS Grid Layout 2", - "text": "Grid Sizing Algorithm", - "url": "https://drafts.csswg.org/css-grid-2/#algo-overview" - }, "snapshot": { "number": "12.1", "spec": "CSS Grid Layout 2", @@ -543,7 +545,7 @@ "current": { "number": "7.7", "spec": "CSS Grid Layout 2", - "text": "Automatic Placement Info about the 'Automatic Placement' definition.#auto-placementReferenced in: 2.2. Placing Items 8. Placing Grid Items 8.3. Line-based Placement: the grid-row-start, grid-column-start, grid-row-end, and grid-column-end properties : the grid-auto-flow property", + "text": "Automatic Placement: the grid-auto-flow property", "url": "https://drafts.csswg.org/css-grid-2/#grid-auto-flow-property" }, "snapshot": { @@ -907,7 +909,7 @@ "current": { "number": "", "spec": "CSS Grid Layout 2", - "text": "12. Grid Sizing", + "text": "12. Grid Layout Algorithm", "url": "https://drafts.csswg.org/css-grid-2/#layout-algorithm" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-grid-3.json b/bikeshed/spec-data/readonly/headings/headings-css-grid-3.json index 8807adc2d2..6f449fb0ce 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-grid-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-grid-3.json @@ -63,12 +63,12 @@ "url": "https://drafts.csswg.org/css-grid-3/#grid-axis-pagination" } }, - "#grid-item-placement": { + "#grid-template-masonry": { "current": { - "number": "2.2", + "number": "2", "spec": "CSS Grid Layout 3", - "text": "Grid Item Placement", - "url": "https://drafts.csswg.org/css-grid-3/#grid-item-placement" + "text": "Masonry Layout", + "url": "https://drafts.csswg.org/css-grid-3/#grid-template-masonry" } }, "#implicit-grid": { @@ -143,25 +143,9 @@ "url": "https://drafts.csswg.org/css-grid-3/#line-name-resolution" } }, - "#masonry-auto-flow": { - "current": { - "number": "2.5", - "spec": "CSS Grid Layout 3", - "text": "The masonry-auto-flow Property", - "url": "https://drafts.csswg.org/css-grid-3/#masonry-auto-flow" - } - }, - "#masonry-axis-alignment": { - "current": { - "number": "6.3", - "spec": "CSS Grid Layout 3", - "text": "Individual Track Alignment in the Masonry Axis", - "url": "https://drafts.csswg.org/css-grid-3/#masonry-axis-alignment" - } - }, "#masonry-axis-baseline-alignment": { "current": { - "number": "6.4", + "number": "6.1", "spec": "CSS Grid Layout 3", "text": "Baseline Alignment in the Masonry Axis", "url": "https://drafts.csswg.org/css-grid-3/#masonry-axis-baseline-alignment" @@ -175,25 +159,9 @@ "url": "https://drafts.csswg.org/css-grid-3/#masonry-axis-pagination" } }, - "#masonry-axis-stretch-alignment": { - "current": { - "number": "6.2", - "spec": "CSS Grid Layout 3", - "text": "Stretch Alignment in the Masonry Axis", - "url": "https://drafts.csswg.org/css-grid-3/#masonry-axis-stretch-alignment" - } - }, - "#masonry-layout": { - "current": { - "number": "2", - "spec": "CSS Grid Layout 3", - "text": "Masonry Layout", - "url": "https://drafts.csswg.org/css-grid-3/#masonry-layout" - } - }, "#masonry-layout-algorithm": { "current": { - "number": "2.4", + "number": "2.3", "spec": "CSS Grid Layout 3", "text": "Masonry Layout Algorithm", "url": "https://drafts.csswg.org/css-grid-3/#masonry-layout-algorithm" @@ -241,7 +209,7 @@ }, "#repeat-auto-fit": { "current": { - "number": "2.3.1", + "number": "2.2.1", "spec": "CSS Grid Layout 3", "text": "repeat(auto-fit)", "url": "https://drafts.csswg.org/css-grid-3/#repeat-auto-fit" @@ -281,20 +249,12 @@ }, "#track-sizing": { "current": { - "number": "2.3", + "number": "2.2", "spec": "CSS Grid Layout 3", "text": "Grid Axis Track Sizing", "url": "https://drafts.csswg.org/css-grid-3/#track-sizing" } }, - "#tracks-alignment": { - "current": { - "number": "6.1", - "spec": "CSS Grid Layout 3", - "text": "The align-tracks and justify-tracks Properties", - "url": "https://drafts.csswg.org/css-grid-3/#tracks-alignment" - } - }, "#values": { "current": { "number": "1.2", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-highlight-api-1.json b/bikeshed/spec-data/readonly/headings/headings-css-highlight-api-1.json index 62f8dfdf82..dc9d379b91 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-highlight-api-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-highlight-api-1.json @@ -43,15 +43,15 @@ }, "#changes": { "current": { - "number": "", + "number": "D", "spec": "CSS Custom Highlight API 1", - "text": "Appendix D. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-highlight-api-1/#changes" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Custom Highlight API 1", - "text": "Appendix C. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-highlight-api-1/#changes" } }, @@ -83,6 +83,14 @@ "url": "https://www.w3.org/TR/css-highlight-api-1/#changes-since-20201208" } }, + "#changes-since-20211215": { + "current": { + "number": "", + "spec": "CSS Custom Highlight API 1", + "text": "Changes since the 15 December 2021 Working Draft", + "url": "https://drafts.csswg.org/css-highlight-api-1/#changes-since-20211215" + } + }, "#creation": { "current": { "number": "3.1", @@ -99,15 +107,15 @@ }, "#credits": { "current": { - "number": "", + "number": "C", "spec": "CSS Custom Highlight API 1", - "text": "Appendix C. Acknowledgements", + "text": "Acknowledgements", "url": "https://drafts.csswg.org/css-highlight-api-1/#credits" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Custom Highlight API 1", - "text": "Appendix B. Acknowledgements", + "text": "Acknowledgements", "url": "https://www.w3.org/TR/css-highlight-api-1/#credits" } }, @@ -331,17 +339,17 @@ }, "#priv": { "current": { - "number": "", + "number": "A", "spec": "CSS Custom Highlight API 1", - "text": "Appendix A. Privacy Considerations", + "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-highlight-api-1/#priv" } }, "#priv-sec": { "snapshot": { - "number": "", + "number": "A", "spec": "CSS Custom Highlight API 1", - "text": "Appendix A. Privacy and Security Considerations", + "text": "Privacy and Security Considerations", "url": "https://www.w3.org/TR/css-highlight-api-1/#priv-sec" } }, @@ -431,9 +439,9 @@ }, "#sec": { "current": { - "number": "", + "number": "B", "spec": "CSS Custom Highlight API 1", - "text": "Appendix B. Security Considerations", + "text": "Security Considerations", "url": "https://drafts.csswg.org/css-highlight-api-1/#sec" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-images-3.json b/bikeshed/spec-data/readonly/headings/headings-css-images-3.json index 693daa3973..bab08311d7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-images-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-images-3.json @@ -433,20 +433,18 @@ "url": "https://www.w3.org/TR/css-images-3/#placement" } }, - "#priv-sec": { - "snapshot": { - "number": "", - "spec": "CSS Images 3", - "text": "Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-images-3/#priv-sec" - } - }, "#privacy": { "current": { "number": "", "spec": "CSS Images 3", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-images-3/#privacy" + }, + "snapshot": { + "number": "", + "spec": "CSS Images 3", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-images-3/#privacy" } }, "#property-index": { @@ -553,6 +551,12 @@ "spec": "CSS Images 3", "text": "Security Considerations", "url": "https://drafts.csswg.org/css-images-3/#security" + }, + "snapshot": { + "number": "", + "spec": "CSS Images 3", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-images-3/#security" } }, "#serialization": { @@ -603,22 +607,12 @@ "spec": "CSS Images 3", "text": "Status of this document", "url": "https://drafts.csswg.org/css-images-3/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Images 3", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-images-3/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS Images 3", - "text": "W3C Candidate Recommendation Draft, 17 December 2020", - "url": "https://www.w3.org/TR/css-images-3/#subtitle" + "url": "https://www.w3.org/TR/css-images-3/#sotd" } }, "#the-image-orientation": { @@ -687,7 +681,7 @@ "snapshot": { "number": "", "spec": "CSS Images 3", - "text": "70 TestsCSS Images Module Level 3", + "text": "CSS Images Module Level 3", "url": "https://www.w3.org/TR/css-images-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-images-4.json b/bikeshed/spec-data/readonly/headings/headings-css-images-4.json index 6bbea03a76..3b7c11f759 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-images-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-images-4.json @@ -69,6 +69,14 @@ "url": "https://www.w3.org/TR/css-images-4/#changes-20170413" } }, + "#changes-20230217": { + "current": { + "number": "", + "spec": "CSS Images 4", + "text": "Changes Since the 17 February 2023 Working Draft", + "url": "https://drafts.csswg.org/css-images-4/#changes-20230217" + } + }, "#changes-3": { "current": { "number": "", @@ -267,15 +275,15 @@ }, "#deprecated": { "current": { - "number": "", + "number": "A", "spec": "CSS Images 4", - "text": "Appendix A: Deprecated Features and Aliases", + "text": "Deprecated Features and Aliases", "url": "https://drafts.csswg.org/css-images-4/#deprecated" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Images 4", - "text": "Appendix A: Deprecated Features and Aliases", + "text": "Deprecated Features and Aliases", "url": "https://www.w3.org/TR/css-images-4/#deprecated" } }, @@ -699,6 +707,14 @@ "url": "https://www.w3.org/TR/css-images-4/#property-index" } }, + "#radial-color-interpolation": { + "current": { + "number": "3.2.1", + "spec": "CSS Images 4", + "text": "Adding <color-interpolation-method>", + "url": "https://drafts.csswg.org/css-images-4/#radial-color-interpolation" + } + }, "#radial-gradients": { "current": { "number": "3.2", @@ -713,6 +729,14 @@ "url": "https://www.w3.org/TR/css-images-4/#radial-gradients" } }, + "#radial-size": { + "current": { + "number": "3.2.2", + "spec": "CSS Images 4", + "text": "Expanding <radial-size>", + "url": "https://drafts.csswg.org/css-images-4/#radial-size" + } + }, "#references": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-inline-3.json b/bikeshed/spec-data/readonly/headings/headings-css-inline-3.json index 5d3dafd383..e74732f493 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-inline-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-inline-3.json @@ -29,13 +29,13 @@ }, "#aligning-initial-letter": { "current": { - "number": "6.4", + "number": "7.4", "spec": "CSS Inline Layout 3", "text": "Alignment of Initial Letters: the initial-letter-align property", "url": "https://drafts.csswg.org/css-inline-3/#aligning-initial-letter" }, "snapshot": { - "number": "6.4", + "number": "7.4", "spec": "CSS Inline Layout 3", "text": "Alignment of Initial Letters: the initial-letter-align property", "url": "https://www.w3.org/TR/css-inline-3/#aligning-initial-letter" @@ -155,15 +155,15 @@ }, "#baseline-synthesis": { "current": { - "number": "", + "number": "A", "spec": "CSS Inline Layout 3", - "text": "Appendix A: Synthesizing Alignment Metrics", + "text": "Synthesizing Alignment Metrics", "url": "https://drafts.csswg.org/css-inline-3/#baseline-synthesis" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Inline Layout 3", - "text": "Appendix A: Synthesizing Alignment Metrics", + "text": "Synthesizing Alignment Metrics", "url": "https://www.w3.org/TR/css-inline-3/#baseline-synthesis" } }, @@ -281,13 +281,13 @@ }, "#drop-initial": { "current": { - "number": "6.1.1", + "number": "7.1.1", "spec": "CSS Inline Layout 3", "text": "Drop Initial", "url": "https://drafts.csswg.org/css-inline-3/#drop-initial" }, "snapshot": { - "number": "6.1.1", + "number": "7.1.1", "spec": "CSS Inline Layout 3", "text": "Drop Initial", "url": "https://www.w3.org/TR/css-inline-3/#drop-initial" @@ -295,13 +295,13 @@ }, "#first-most-inline-level": { "current": { - "number": "6.3.1", + "number": "7.3.1", "spec": "CSS Inline Layout 3", "text": "Applicability", "url": "https://drafts.csswg.org/css-inline-3/#first-most-inline-level" }, "snapshot": { - "number": "6.3.1", + "number": "7.3.1", "spec": "CSS Inline Layout 3", "text": "Applicability", "url": "https://www.w3.org/TR/css-inline-3/#first-most-inline-level" @@ -379,13 +379,13 @@ }, "#initial-letter-align-defaults": { "current": { - "number": "6.4.1", + "number": "7.4.1", "spec": "CSS Inline Layout 3", "text": "UA Default Stylesheet for initial-letter-align", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-align-defaults" }, "snapshot": { - "number": "6.4.1", + "number": "7.4.1", "spec": "CSS Inline Layout 3", "text": "UA Default Stylesheet for initial-letter-align", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-align-defaults" @@ -393,13 +393,13 @@ }, "#initial-letter-ancestors": { "current": { - "number": "6.8.3", + "number": "7.8.3", "spec": "CSS Inline Layout 3", "text": "Ancestor Inlines", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-ancestors" }, "snapshot": { - "number": "6.8.3", + "number": "7.8.3", "spec": "CSS Inline Layout 3", "text": "Ancestor Inlines", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-ancestors" @@ -407,13 +407,13 @@ }, "#initial-letter-block-position": { "current": { - "number": "6.6.1", + "number": "7.6.1", "spec": "CSS Inline Layout 3", "text": "Block-axis Positioning", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-block-position" }, "snapshot": { - "number": "6.6.1", + "number": "7.6.1", "spec": "CSS Inline Layout 3", "text": "Block-axis Positioning", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-block-position" @@ -421,13 +421,13 @@ }, "#initial-letter-box": { "current": { - "number": "6.5.2", + "number": "7.5.2", "spec": "CSS Inline Layout 3", "text": "Margins, Borders, and Padding", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-box" }, "snapshot": { - "number": "6.5.2", + "number": "7.5.2", "spec": "CSS Inline Layout 3", "text": "Margins, Borders, and Padding", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-box" @@ -435,13 +435,13 @@ }, "#initial-letter-box-size": { "current": { - "number": "6.5.5", + "number": "7.5.5", "spec": "CSS Inline Layout 3", "text": "Sizing the Initial Letter Box", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-box-size" }, "snapshot": { - "number": "6.5.5", + "number": "7.5.5", "spec": "CSS Inline Layout 3", "text": "Sizing the Initial Letter Box", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-box-size" @@ -449,13 +449,13 @@ }, "#initial-letter-breaking": { "current": { - "number": "6.9.4", + "number": "7.9.4", "spec": "CSS Inline Layout 3", "text": "Interaction with Fragmentation (Pagination)", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-breaking" }, "snapshot": { - "number": "6.9.4", + "number": "7.9.4", "spec": "CSS Inline Layout 3", "text": "Interaction with Fragmentation (Pagination)", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-breaking" @@ -463,13 +463,13 @@ }, "#initial-letter-content-align": { "current": { - "number": "6.5.6", + "number": "7.5.6", "spec": "CSS Inline Layout 3", "text": "Alignment Within an Initial Letter Box", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-content-align" }, "snapshot": { - "number": "6.5.6", + "number": "7.5.6", "spec": "CSS Inline Layout 3", "text": "Alignment Within an Initial Letter Box", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-content-align" @@ -477,13 +477,13 @@ }, "#initial-letter-floats": { "current": { - "number": "6.9.3", + "number": "7.9.3", "spec": "CSS Inline Layout 3", "text": "Interaction with floats", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-floats" }, "snapshot": { - "number": "6.9.3", + "number": "7.9.3", "spec": "CSS Inline Layout 3", "text": "Interaction with floats", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-floats" @@ -491,13 +491,13 @@ }, "#initial-letter-indentation": { "current": { - "number": "6.8.2", + "number": "7.8.2", "spec": "CSS Inline Layout 3", "text": "Edge Effects: Indentation and Hanging Punctuation", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-indentation" }, "snapshot": { - "number": "6.8.2", + "number": "7.8.2", "spec": "CSS Inline Layout 3", "text": "Edge Effects: Indentation and Hanging Punctuation", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-indentation" @@ -505,13 +505,13 @@ }, "#initial-letter-inline-flow": { "current": { - "number": "6.8.1", + "number": "7.8.1", "spec": "CSS Inline Layout 3", "text": "Inline Flow Layout: Alignment, Justification, and White Space", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-inline-flow" }, "snapshot": { - "number": "6.8.1", + "number": "7.8.1", "spec": "CSS Inline Layout 3", "text": "Inline Flow Layout: Alignment, Justification, and White Space", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-inline-flow" @@ -519,13 +519,13 @@ }, "#initial-letter-inline-position": { "current": { - "number": "6.6.2", + "number": "7.6.2", "spec": "CSS Inline Layout 3", "text": "Inline Kerning", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-inline-position" }, "snapshot": { - "number": "6.6.2", + "number": "7.6.2", "spec": "CSS Inline Layout 3", "text": "Inline Kerning", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-inline-position" @@ -533,13 +533,13 @@ }, "#initial-letter-intro": { "current": { - "number": "6.1", + "number": "7.1", "spec": "CSS Inline Layout 3", "text": "An Introduction to Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-intro" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "CSS Inline Layout 3", "text": "An Introduction to Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-intro" @@ -547,13 +547,13 @@ }, "#initial-letter-layout": { "current": { - "number": "6.5", + "number": "7.5", "spec": "CSS Inline Layout 3", "text": "Initial Letter Layout", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-layout" }, "snapshot": { - "number": "6.5", + "number": "7.5", "spec": "CSS Inline Layout 3", "text": "Initial Letter Layout", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-layout" @@ -561,13 +561,13 @@ }, "#initial-letter-line-layout": { "current": { - "number": "6.8", + "number": "7.8", "spec": "CSS Inline Layout 3", "text": "Line Layout", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-line-layout" }, "snapshot": { - "number": "6.8", + "number": "7.8", "spec": "CSS Inline Layout 3", "text": "Line Layout", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-line-layout" @@ -575,13 +575,13 @@ }, "#initial-letter-multi-line": { "current": { - "number": "6.8.4", + "number": "7.8.4", "spec": "CSS Inline Layout 3", "text": "Multi-line Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-multi-line" }, "snapshot": { - "number": "6.8.4", + "number": "7.8.4", "spec": "CSS Inline Layout 3", "text": "Multi-line Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-multi-line" @@ -589,13 +589,13 @@ }, "#initial-letter-paragraphs": { "current": { - "number": "6.9", + "number": "7.9", "spec": "CSS Inline Layout 3", "text": "Clearing Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-paragraphs" }, "snapshot": { - "number": "6.9", + "number": "7.9", "spec": "CSS Inline Layout 3", "text": "Clearing Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-paragraphs" @@ -603,13 +603,13 @@ }, "#initial-letter-position": { "current": { - "number": "6.6", + "number": "7.6", "spec": "CSS Inline Layout 3", "text": "Initial Letter Positioning and Spacing", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-position" }, "snapshot": { - "number": "6.6", + "number": "7.6", "spec": "CSS Inline Layout 3", "text": "Initial Letter Positioning and Spacing", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-position" @@ -617,13 +617,13 @@ }, "#initial-letter-properties": { "current": { - "number": "6.5.1", + "number": "7.5.1", "spec": "CSS Inline Layout 3", "text": "Properties Applying to Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-properties" }, "snapshot": { - "number": "6.5.1", + "number": "7.5.1", "spec": "CSS Inline Layout 3", "text": "Properties Applying to Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-properties" @@ -631,13 +631,13 @@ }, "#initial-letter-shaping": { "current": { - "number": "6.5.4", + "number": "7.5.4", "spec": "CSS Inline Layout 3", "text": "Shaping and Glyph Selection", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-shaping" }, "snapshot": { - "number": "6.5.4", + "number": "7.5.4", "spec": "CSS Inline Layout 3", "text": "Shaping and Glyph Selection", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-shaping" @@ -645,13 +645,13 @@ }, "#initial-letter-styling": { "current": { - "number": "6", + "number": "7", "spec": "CSS Inline Layout 3", "text": "Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-styling" }, "snapshot": { - "number": "6", + "number": "7", "spec": "CSS Inline Layout 3", "text": "Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-styling" @@ -659,13 +659,13 @@ }, "#initial-letter-wrapping": { "current": { - "number": "6.7", + "number": "7.7", "spec": "CSS Inline Layout 3", "text": "Initial Letter Wrapping: the initial-letter-wrap property", "url": "https://drafts.csswg.org/css-inline-3/#initial-letter-wrapping" }, "snapshot": { - "number": "6.7", + "number": "7.7", "spec": "CSS Inline Layout 3", "text": "Initial Letter Wrapping: the initial-letter-wrap property", "url": "https://www.w3.org/TR/css-inline-3/#initial-letter-wrapping" @@ -705,6 +705,12 @@ "spec": "CSS Inline Layout 3", "text": "“Invisible” Line Boxes", "url": "https://drafts.csswg.org/css-inline-3/#invisible-line-boxes" + }, + "snapshot": { + "number": "2.3", + "spec": "CSS Inline Layout 3", + "text": "“Invisible” Line Boxes", + "url": "https://www.w3.org/TR/css-inline-3/#invisible-line-boxes" } }, "#issues-index": { @@ -723,15 +729,15 @@ }, "#leading-trim": { "current": { - "number": "5.4", + "number": "6", "spec": "CSS Inline Layout 3", - "text": "Half-Leading Control: the leading-trim property", + "text": "Trimming Leading Over/Under Text", "url": "https://drafts.csswg.org/css-inline-3/#leading-trim" }, "snapshot": { - "number": "5.4", + "number": "6", "spec": "CSS Inline Layout 3", - "text": "Half-Leading Control: the leading-trim property", + "text": "Trimming Leading Over/Under Text", "url": "https://www.w3.org/TR/css-inline-3/#leading-trim" } }, @@ -751,13 +757,13 @@ }, "#line-fill": { "current": { - "number": "5.5", + "number": "6.4", "spec": "CSS Inline Layout 3", "text": "Inline Box Drawing Height: the inline-sizing property", "url": "https://drafts.csswg.org/css-inline-3/#line-fill" }, "snapshot": { - "number": "5.5", + "number": "6.4", "spec": "CSS Inline Layout 3", "text": "Inline Box Drawing Height: the inline-sizing property", "url": "https://www.w3.org/TR/css-inline-3/#line-fill" @@ -841,7 +847,7 @@ "url": "https://drafts.csswg.org/css-inline-3/#paint-order" }, "snapshot": { - "number": "2.3", + "number": "2.4", "spec": "CSS Inline Layout 3", "text": "Painting Order", "url": "https://www.w3.org/TR/css-inline-3/#paint-order" @@ -861,6 +867,20 @@ "url": "https://www.w3.org/TR/css-inline-3/#placement" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Inline Layout 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-inline-3/#privacy" + }, + "snapshot": { + "number": "", + "spec": "CSS Inline Layout 3", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-inline-3/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -877,13 +897,13 @@ }, "#raise-initial": { "current": { - "number": "6.1.3", + "number": "7.1.3", "spec": "CSS Inline Layout 3", "text": "Raised Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#raise-initial" }, "snapshot": { - "number": "6.1.3", + "number": "7.1.3", "spec": "CSS Inline Layout 3", "text": "Raised Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#raise-initial" @@ -891,13 +911,13 @@ }, "#raised-sunken-caps": { "current": { - "number": "6.9.1", + "number": "7.9.1", "spec": "CSS Inline Layout 3", "text": "Raised and sunken caps", "url": "https://drafts.csswg.org/css-inline-3/#raised-sunken-caps" }, "snapshot": { - "number": "6.9.1", + "number": "7.9.1", "spec": "CSS Inline Layout 3", "text": "Raised and sunken caps", "url": "https://www.w3.org/TR/css-inline-3/#raised-sunken-caps" @@ -917,15 +937,29 @@ "url": "https://www.w3.org/TR/css-inline-3/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Inline Layout 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-inline-3/#security" + }, + "snapshot": { + "number": "", + "spec": "CSS Inline Layout 3", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-inline-3/#security" + } + }, "#selecting-drop-initials": { "current": { - "number": "6.2", + "number": "7.2", "spec": "CSS Inline Layout 3", "text": "Selecting Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#selecting-drop-initials" }, "snapshot": { - "number": "6.2", + "number": "7.2", "spec": "CSS Inline Layout 3", "text": "Selecting Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#selecting-drop-initials" @@ -933,13 +967,13 @@ }, "#short-para-initial-letter": { "current": { - "number": "6.9.2", + "number": "7.9.2", "spec": "CSS Inline Layout 3", "text": "Short paragraphs with initial letters", "url": "https://drafts.csswg.org/css-inline-3/#short-para-initial-letter" }, "snapshot": { - "number": "6.9.2", + "number": "7.9.2", "spec": "CSS Inline Layout 3", "text": "Short paragraphs with initial letters", "url": "https://www.w3.org/TR/css-inline-3/#short-para-initial-letter" @@ -947,13 +981,13 @@ }, "#sizing-drop-initials": { "current": { - "number": "6.3", + "number": "7.3", "spec": "CSS Inline Layout 3", "text": "Creating Initial Letters: the initial-letter property", "url": "https://drafts.csswg.org/css-inline-3/#sizing-drop-initials" }, "snapshot": { - "number": "6.3", + "number": "7.3", "spec": "CSS Inline Layout 3", "text": "Creating Initial Letters: the initial-letter property", "url": "https://www.w3.org/TR/css-inline-3/#sizing-drop-initials" @@ -961,13 +995,13 @@ }, "#sizing-initial-letter": { "current": { - "number": "6.5.3", + "number": "7.5.3", "spec": "CSS Inline Layout 3", "text": "Font Sizing of Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#sizing-initial-letter" }, "snapshot": { - "number": "6.5.3", + "number": "7.5.3", "spec": "CSS Inline Layout 3", "text": "Font Sizing of Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#sizing-initial-letter" @@ -989,29 +1023,71 @@ }, "#sunk-initial": { "current": { - "number": "6.1.2", + "number": "7.1.2", "spec": "CSS Inline Layout 3", "text": "Sunken Initial Letters", "url": "https://drafts.csswg.org/css-inline-3/#sunk-initial" }, "snapshot": { - "number": "6.1.2", + "number": "7.1.2", "spec": "CSS Inline Layout 3", "text": "Sunken Initial Letters", "url": "https://www.w3.org/TR/css-inline-3/#sunk-initial" } }, + "#text-box-edge": { + "current": { + "number": "6.3", + "spec": "CSS Inline Layout 3", + "text": "Text Trimming Metrics: the text-box-edge property", + "url": "https://drafts.csswg.org/css-inline-3/#text-box-edge" + }, + "snapshot": { + "number": "6.3", + "spec": "CSS Inline Layout 3", + "text": "Text Trimming Metrics: the text-box-edge property", + "url": "https://www.w3.org/TR/css-inline-3/#text-box-edge" + } + }, + "#text-box-shorthand": { + "current": { + "number": "6.1", + "spec": "CSS Inline Layout 3", + "text": "Shorthand for Text Box Trimming: the text-box property", + "url": "https://drafts.csswg.org/css-inline-3/#text-box-shorthand" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS Inline Layout 3", + "text": "Shorthand for Text Box Trimming: the text-box property", + "url": "https://www.w3.org/TR/css-inline-3/#text-box-shorthand" + } + }, + "#text-box-trim": { + "current": { + "number": "6.2", + "spec": "CSS Inline Layout 3", + "text": "Trimming Over/Under Text: the text-box-trim property", + "url": "https://drafts.csswg.org/css-inline-3/#text-box-trim" + }, + "snapshot": { + "number": "6.2", + "spec": "CSS Inline Layout 3", + "text": "Trimming Over/Under Text: the text-box-trim property", + "url": "https://www.w3.org/TR/css-inline-3/#text-box-trim" + } + }, "#text-edges": { "current": { "number": "5.2", "spec": "CSS Inline Layout 3", - "text": "Inline Box Edge Metrics: the text-edge property", + "text": "Text Edge Metrics: the line-fit-edge property", "url": "https://drafts.csswg.org/css-inline-3/#text-edges" }, "snapshot": { "number": "5.2", "spec": "CSS Inline Layout 3", - "text": "Inline Box Edge Metrics: the text-edge property", + "text": "Text Edge Metrics: the line-fit-edge property", "url": "https://www.w3.org/TR/css-inline-3/#text-edges" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-line-grid-1.json b/bikeshed/spec-data/readonly/headings/headings-css-line-grid-1.json index b3f40d8e30..3d2e5a4a7d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-line-grid-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-line-grid-1.json @@ -147,9 +147,9 @@ "url": "https://drafts.csswg.org/css-line-grid-1/#grid-snapping" }, "snapshot": { - "number": "", + "number": "3", "spec": "CSS Line Grid 1", - "text": "3 Snapping to a Grid", + "text": "Snapping to a Grid", "url": "https://www.w3.org/TR/css-line-grid-1/#grid-snapping" } }, @@ -205,9 +205,9 @@ "url": "https://drafts.csswg.org/css-line-grid-1/#intro" }, "snapshot": { - "number": "", + "number": "1", "spec": "CSS Line Grid 1", - "text": "1 Introduction", + "text": "Introduction", "url": "https://www.w3.org/TR/css-line-grid-1/#intro" } }, @@ -235,9 +235,9 @@ }, "#line-grid": { "snapshot": { - "number": "", + "number": "2", "spec": "CSS Line Grid 1", - "text": "2 Defining a Line Grid: the line-grid property", + "text": "Defining a Line Grid: the line-grid property", "url": "https://www.w3.org/TR/css-line-grid-1/#line-grid" } }, @@ -245,7 +245,7 @@ "current": { "number": "2", "spec": "CSS Line Grid 1", - "text": "Defining a Line Grid Info about the 'Line Grid' definition.#line-gridReferenced in: 2. Defining a Line Grid: the line-grid property (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (15) (16) (17) (18) (19) (20) 3. Snapping to a Grid 3.1. Snapping Line Boxes: the line-snap property (2) (3) (4) 3.2. Snapping Block Boxes: the box-snap property (2) (3) (4) (5) 4.1. Interacting with other alignments : the line-grid property", + "text": "Defining a Line Grid: the line-grid property", "url": "https://drafts.csswg.org/css-line-grid-1/#line-grid-property" } }, @@ -299,6 +299,14 @@ "url": "https://www.w3.org/TR/css-line-grid-1/#placement" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Line Grid 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-line-grid-1/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -327,6 +335,14 @@ "url": "https://www.w3.org/TR/css-line-grid-1/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Line Grid 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-line-grid-1/#security" + } + }, "#snap-details": { "current": { "number": "4", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-lists-3.json b/bikeshed/spec-data/readonly/headings/headings-css-lists-3.json index 89721bd55d..24ce4a192f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-lists-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-lists-3.json @@ -515,6 +515,14 @@ "url": "https://www.w3.org/TR/css-lists-3/#partial" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Lists 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-lists-3/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -543,6 +551,14 @@ "url": "https://www.w3.org/TR/css-lists-3/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Lists 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-lists-3/#security" + } + }, "#sotd": { "current": { "number": "", @@ -619,15 +635,15 @@ }, "#ua-stylesheet": { "current": { - "number": "", + "number": "A", "spec": "CSS Lists 3", - "text": "Appendix A: Sample Style Sheet For HTML", + "text": "Sample Style Sheet For HTML", "url": "https://drafts.csswg.org/css-lists-3/#ua-stylesheet" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Lists 3", - "text": "Appendix A: Sample Style Sheet For HTML", + "text": "Sample Style Sheet For HTML", "url": "https://www.w3.org/TR/css-lists-3/#ua-stylesheet" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-logical-1.json b/bikeshed/spec-data/readonly/headings/headings-css-logical-1.json index 1b59dda802..671c401360 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-logical-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-logical-1.json @@ -409,6 +409,14 @@ "url": "https://drafts.csswg.org/css-logical-1/#position-properties" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Logical Properties 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-logical-1/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -445,6 +453,14 @@ "url": "https://www.w3.org/TR/css-logical-1/#resize" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Logical Properties 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-logical-1/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-masking-1.json b/bikeshed/spec-data/readonly/headings/headings-css-masking-1.json index 57e7cb4179..056ddd3670 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-masking-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-masking-1.json @@ -15,15 +15,15 @@ }, "#DOMInterfaces": { "current": { - "number": "", + "number": "C", "spec": "CSS Masking 1", - "text": "Appendix C: DOM interfaces", + "text": "DOM interfaces", "url": "https://drafts.fxtf.org/css-masking-1/#DOMInterfaces" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Masking 1", - "text": "Appendix C: DOM interfaces", + "text": "DOM interfaces", "url": "https://www.w3.org/TR/css-masking-1/#DOMInterfaces" } }, @@ -127,15 +127,15 @@ }, "#clip-property": { "current": { - "number": "", + "number": "A", "spec": "CSS Masking 1", - "text": "Appendix A: The deprecated clip property", + "text": "The deprecated clip property", "url": "https://drafts.fxtf.org/css-masking-1/#clip-property" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Masking 1", - "text": "Appendix A: The deprecated clip property", + "text": "The deprecated clip property", "url": "https://www.w3.org/TR/css-masking-1/#clip-property" } }, @@ -169,15 +169,15 @@ }, "#compute-stroke-bounding-box": { "current": { - "number": "", + "number": "B", "spec": "CSS Masking 1", - "text": "Appendix B: Compute stroke bounding box", + "text": "Compute stroke bounding box", "url": "https://drafts.fxtf.org/css-masking-1/#compute-stroke-bounding-box" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Masking 1", - "text": "Appendix B: Compute stroke bounding box", + "text": "Compute stroke bounding box", "url": "https://www.w3.org/TR/css-masking-1/#compute-stroke-bounding-box" } }, @@ -437,13 +437,15 @@ "url": "https://drafts.fxtf.org/css-masking-1/#sec" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "CSS Masking 1", "text": "Status of this document", - "url": "https://drafts.fxtf.org/css-masking-1/#status" - }, + "url": "https://drafts.fxtf.org/css-masking-1/#sotd" + } + }, + "#status": { "snapshot": { "number": "", "spec": "CSS Masking 1", @@ -783,7 +785,7 @@ "snapshot": { "number": "", "spec": "CSS Masking 1", - "text": "203 TestsCSS Masking Module Level 1", + "text": "CSS Masking Module Level 1", "url": "https://www.w3.org/TR/css-masking-1/#title" } }, @@ -872,6 +874,12 @@ } }, "#w3c-cr-exit-criteria": { + "current": { + "number": "", + "spec": "CSS Masking 1", + "text": "CR exit criteria", + "url": "https://drafts.fxtf.org/css-masking-1/#w3c-cr-exit-criteria" + }, "snapshot": { "number": "", "spec": "CSS Masking 1", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-mixins-1.json b/bikeshed/spec-data/readonly/headings/headings-css-mixins-1.json new file mode 100644 index 0000000000..d74ba3755e --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-css-mixins-1.json @@ -0,0 +1,258 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Abstract", + "url": "https://drafts.csswg.org/css-mixins-1/#abstract" + } + }, + "#conditional-rules": { + "current": { + "number": "4.1", + "spec": "CSS Functions and Mixins", + "text": "Conditional Rules", + "url": "https://drafts.csswg.org/css-mixins-1/#conditional-rules" + } + }, + "#cssom": { + "current": { + "number": "5", + "spec": "CSS Functions and Mixins", + "text": "CSSOM", + "url": "https://drafts.csswg.org/css-mixins-1/#cssom" + } + }, + "#cycles": { + "current": { + "number": "3.3", + "spec": "CSS Functions and Mixins", + "text": "Cycles", + "url": "https://drafts.csswg.org/css-mixins-1/#cycles" + } + }, + "#defining-custom-functions": { + "current": { + "number": "2", + "spec": "CSS Functions and Mixins", + "text": "Defining Custom Functions", + "url": "https://drafts.csswg.org/css-mixins-1/#defining-custom-functions" + } + }, + "#evaluating-custom-functions": { + "current": { + "number": "3.1", + "spec": "CSS Functions and Mixins", + "text": "Evaluating Custom Functions", + "url": "https://drafts.csswg.org/css-mixins-1/#evaluating-custom-functions" + } + }, + "#execution-model": { + "current": { + "number": "4", + "spec": "CSS Functions and Mixins", + "text": "Execution Model of Custom Functions", + "url": "https://drafts.csswg.org/css-mixins-1/#execution-model" + } + }, + "#function-descriptor-table": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "@function Descriptors", + "url": "https://drafts.csswg.org/css-mixins-1/#function-descriptor-table" + } + }, + "#function-rule": { + "current": { + "number": "2.1", + "spec": "CSS Functions and Mixins", + "text": "The @function Rule", + "url": "https://drafts.csswg.org/css-mixins-1/#function-rule" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "IDL Index", + "url": "https://drafts.csswg.org/css-mixins-1/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Index", + "url": "https://drafts.csswg.org/css-mixins-1/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-mixins-1/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-mixins-1/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-mixins-1/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "CSS Functions and Mixins", + "text": "Introduction", + "url": "https://drafts.csswg.org/css-mixins-1/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-mixins-1/#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Normative References", + "url": "https://drafts.csswg.org/css-mixins-1/#normative" + } + }, + "#parameters": { + "current": { + "number": "3.2", + "spec": "CSS Functions and Mixins", + "text": "Parameters and Locals", + "url": "https://drafts.csswg.org/css-mixins-1/#parameters" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-mixins-1/#property-index" + } + }, + "#references": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "References", + "url": "https://drafts.csswg.org/css-mixins-1/#references" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-mixins-1/#sotd" + } + }, + "#syntax": { + "current": { + "number": "6", + "spec": "CSS Functions and Mixins", + "text": "Appendix: The <syntax> Production", + "url": "https://drafts.csswg.org/css-mixins-1/#syntax" + } + }, + "#the-result-descriptor": { + "current": { + "number": "2.2", + "spec": "CSS Functions and Mixins", + "text": "The result Descriptor", + "url": "https://drafts.csswg.org/css-mixins-1/#the-result-descriptor" + } + }, + "#title": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "CSS Functions and Mixins Module", + "url": "https://drafts.csswg.org/css-mixins-1/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css-mixins-1/#toc" + } + }, + "#using-custom-functions": { + "current": { + "number": "3", + "spec": "CSS Functions and Mixins", + "text": "Using Custom Functions", + "url": "https://drafts.csswg.org/css-mixins-1/#using-custom-functions" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-mixins-1/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-mixins-1/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-mixins-1/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-mixins-1/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-mixins-1/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS Functions and Mixins", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-mixins-1/#w3c-testing" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-multicol-1.json b/bikeshed/spec-data/readonly/headings/headings-css-multicol-1.json index 27b1a0d193..c8f77fce38 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-multicol-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-multicol-1.json @@ -99,15 +99,15 @@ }, "#changes": { "current": { - "number": "", + "number": "B", "spec": "CSS Multicol 1", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-multicol-1/#changes" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Multicol 1", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-multicol-1/#changes" } }, @@ -187,6 +187,12 @@ "spec": "CSS Multicol 1", "text": "Changes from the Candidate Recommendation (CR) of 12 October 2021", "url": "https://drafts.csswg.org/css-multicol-1/#changes-from-20211012" + }, + "snapshot": { + "number": "", + "spec": "CSS Multicol 1", + "text": "Changes from the Candidate Recommendation (CR) of 12 October 2021", + "url": "https://www.w3.org/TR/css-multicol-1/#changes-from-20211012" } }, "#column-breaks": { @@ -469,14 +475,6 @@ "url": "https://www.w3.org/TR/css-multicol-1/#privacy" } }, - "#profile-and-date": { - "snapshot": { - "number": "", - "spec": "CSS Multicol 1", - "text": "W3C Candidate Recommendation Snapshot, 12 October 2021", - "url": "https://www.w3.org/TR/css-multicol-1/#profile-and-date" - } - }, "#property-index": { "current": { "number": "", @@ -539,6 +537,12 @@ "spec": "CSS Multicol 1", "text": "Status of this document", "url": "https://drafts.csswg.org/css-multicol-1/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Multicol 1", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-multicol-1/#sotd" } }, "#spanning-columns": { @@ -569,14 +573,6 @@ "url": "https://www.w3.org/TR/css-multicol-1/#stacking-context" } }, - "#status": { - "snapshot": { - "number": "", - "spec": "CSS Multicol 1", - "text": "Status of this document", - "url": "https://www.w3.org/TR/css-multicol-1/#status" - } - }, "#the-multi-column-model": { "current": { "number": "2", @@ -615,7 +611,7 @@ "snapshot": { "number": "", "spec": "CSS Multicol 1", - "text": "133 TestsCSS Multi-column Layout Module Level 1", + "text": "CSS Multi-column Layout Module Level 1", "url": "https://www.w3.org/TR/css-multicol-1/#title" } }, @@ -704,6 +700,12 @@ } }, "#w3c-cr-exit-criteria": { + "current": { + "number": "", + "spec": "CSS Multicol 1", + "text": "CR exit criteria", + "url": "https://drafts.csswg.org/css-multicol-1/#w3c-cr-exit-criteria" + }, "snapshot": { "number": "", "spec": "CSS Multicol 1", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-namespaces-3.json b/bikeshed/spec-data/readonly/headings/headings-css-namespaces-3.json index bc1e458ce6..f7d1b538d5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-namespaces-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-namespaces-3.json @@ -43,9 +43,9 @@ }, "#conformance": { "snapshot": { - "number": "", + "number": "2", "spec": "CSS Namespaces 3", - "text": "2 Conformance", + "text": "Conformance", "url": "https://www.w3.org/TR/css-namespaces-3/#conformance" } }, @@ -65,9 +65,9 @@ "url": "https://drafts.csswg.org/css-namespaces-3/#css-qnames" }, "snapshot": { - "number": "", + "number": "4", "spec": "CSS Namespaces 3", - "text": "4 CSS Qualified Names", + "text": "CSS Qualified Names", "url": "https://www.w3.org/TR/css-namespaces-3/#css-qnames" } }, @@ -79,9 +79,9 @@ "url": "https://drafts.csswg.org/css-namespaces-3/#declaration" }, "snapshot": { - "number": "", + "number": "3", "spec": "CSS Namespaces 3", - "text": "3 Declaring namespaces: the @namespace rule", + "text": "Declaring namespaces: the @namespace rule", "url": "https://www.w3.org/TR/css-namespaces-3/#declaration" } }, @@ -137,9 +137,9 @@ "url": "https://drafts.csswg.org/css-namespaces-3/#intro" }, "snapshot": { - "number": "", + "number": "1", "spec": "CSS Namespaces 3", - "text": "1 Introduction", + "text": "Introduction", "url": "https://www.w3.org/TR/css-namespaces-3/#intro" } }, @@ -171,6 +171,14 @@ "url": "https://www.w3.org/TR/css-namespaces-3/#prefixes" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Namespaces 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-namespaces-3/#privacy" + } + }, "#property-index": { "snapshot": { "number": "", @@ -207,6 +215,14 @@ "url": "https://www.w3.org/TR/css-namespaces-3/#scope" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Namespaces 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-namespaces-3/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-nav-1.json b/bikeshed/spec-data/readonly/headings/headings-css-nav-1.json index f785427765..a24145cb42 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-nav-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-nav-1.json @@ -157,7 +157,7 @@ "current": { "number": "6.2.1", "spec": "CSS Spatial Navigation 1", - "text": "navbeforefocus Info about the 'navbeforefocus' definition.#eventdef-navigationevent-navbeforefocusReferenced in: 6.2.1. navbeforefocus", + "text": "navbeforefocus", "url": "https://drafts.csswg.org/css-nav-1/#event-type-navbeforefocus" }, "snapshot": { @@ -171,7 +171,7 @@ "current": { "number": "6.2.2", "spec": "CSS Spatial Navigation 1", - "text": "navnotarget Info about the 'navnotarget' definition.#eventdef-navigationevent-navnotargetReferenced in: 6.2.2. navnotarget 9.2. Controlling the interaction with scrolling: the spatial-navigation-action property", + "text": "navnotarget", "url": "https://drafts.csswg.org/css-nav-1/#event-type-navnotarget" }, "snapshot": { @@ -477,17 +477,17 @@ }, "#priv-sec": { "current": { - "number": "", + "number": "B", "spec": "CSS Spatial Navigation 1", - "text": "Appendix B. Privacy and Security Considerations", + "text": "Privacy and Security Considerations", "url": "https://drafts.csswg.org/css-nav-1/#priv-sec" } }, "#privsec": { "snapshot": { - "number": "", + "number": "B", "spec": "CSS Spatial Navigation 1", - "text": "Appendix B. Privacy and Security Considerations", + "text": "Privacy and Security Considerations", "url": "https://www.w3.org/TR/css-nav-1/#privsec" } }, @@ -535,15 +535,15 @@ }, "#scrolling": { "current": { - "number": "", + "number": "A", "spec": "CSS Spatial Navigation 1", - "text": "Appendix A. Scroll extensions", + "text": "Scroll extensions", "url": "https://drafts.csswg.org/css-nav-1/#scrolling" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Spatial Navigation 1", - "text": "Appendix A. Scroll extensions", + "text": "Scroll extensions", "url": "https://www.w3.org/TR/css-nav-1/#scrolling" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-nesting-1.json b/bikeshed/spec-data/readonly/headings/headings-css-nesting-1.json index 3e488e42f9..aaa56b7347 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-nesting-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-nesting-1.json @@ -13,9 +13,17 @@ "url": "https://www.w3.org/TR/css-nesting-1/#abstract" } }, + "#changes": { + "current": { + "number": "6.2", + "spec": "CSS Nesting", + "text": "Changes", + "url": "https://drafts.csswg.org/css-nesting-1/#changes" + } + }, "#conditionals": { "current": { - "number": "2.2", + "number": "3.3", "spec": "CSS Nesting", "text": "Nesting Other At-Rules", "url": "https://drafts.csswg.org/css-nesting-1/#conditionals" @@ -29,7 +37,7 @@ }, "#cssom": { "current": { - "number": "4", + "number": "6", "spec": "CSS Nesting", "text": "CSSOM", "url": "https://drafts.csswg.org/css-nesting-1/#cssom" @@ -42,12 +50,6 @@ } }, "#cssom-style": { - "current": { - "number": "4.1", - "spec": "CSS Nesting", - "text": "Modifications to CSSStyleRule", - "url": "https://drafts.csswg.org/css-nesting-1/#cssom-style" - }, "snapshot": { "number": "4.1", "spec": "CSS Nesting", @@ -55,6 +57,14 @@ "url": "https://www.w3.org/TR/css-nesting-1/#cssom-style" } }, + "#explainer": { + "current": { + "number": "2", + "spec": "CSS Nesting", + "text": "Explainer", + "url": "https://drafts.csswg.org/css-nesting-1/#explainer" + } + }, "#idl-index": { "current": { "number": "", @@ -155,7 +165,7 @@ }, "#mixing": { "current": { - "number": "2.3", + "number": "3.4", "spec": "CSS Nesting", "text": "Mixing Nesting Rules and Declarations", "url": "https://drafts.csswg.org/css-nesting-1/#mixing" @@ -168,12 +178,6 @@ } }, "#motivation": { - "current": { - "number": "1.3", - "spec": "CSS Nesting", - "text": "Motivation", - "url": "https://drafts.csswg.org/css-nesting-1/#motivation" - }, "snapshot": { "number": "1.3", "spec": "CSS Nesting", @@ -183,7 +187,7 @@ }, "#nest-selector": { "current": { - "number": "3", + "number": "4", "spec": "CSS Nesting", "text": "Nesting Selector: the & selector", "url": "https://drafts.csswg.org/css-nesting-1/#nest-selector" @@ -195,9 +199,17 @@ "url": "https://www.w3.org/TR/css-nesting-1/#nest-selector" } }, + "#nested-declarations-rule": { + "current": { + "number": "5", + "spec": "CSS Nesting", + "text": "The Nested Declarations Rule", + "url": "https://drafts.csswg.org/css-nesting-1/#nested-declarations-rule" + } + }, "#nesting": { "current": { - "number": "2", + "number": "3", "spec": "CSS Nesting", "text": "Nesting Style Rules", "url": "https://drafts.csswg.org/css-nesting-1/#nesting" @@ -211,7 +223,7 @@ }, "#nesting-at-scope": { "current": { - "number": "2.2.1", + "number": "3.3.1", "spec": "CSS Nesting", "text": "Nested @scope Rules", "url": "https://drafts.csswg.org/css-nesting-1/#nesting-at-scope" @@ -281,7 +293,7 @@ }, "#syntax": { "current": { - "number": "2.1", + "number": "3.1", "spec": "CSS Nesting", "text": "Syntax", "url": "https://drafts.csswg.org/css-nesting-1/#syntax" @@ -293,6 +305,22 @@ "url": "https://www.w3.org/TR/css-nesting-1/#syntax" } }, + "#syntax-examples": { + "current": { + "number": "3.2", + "spec": "CSS Nesting", + "text": "Examples", + "url": "https://drafts.csswg.org/css-nesting-1/#syntax-examples" + } + }, + "#the-cssnestrule": { + "current": { + "number": "6.1", + "spec": "CSS Nesting", + "text": "The CSSNestedDeclarations Interface", + "url": "https://drafts.csswg.org/css-nesting-1/#the-cssnestrule" + } + }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-overflow-3.json b/bikeshed/spec-data/readonly/headings/headings-css-overflow-3.json index fec3ad2e82..c625d85ab1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-overflow-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-overflow-3.json @@ -55,25 +55,17 @@ "url": "https://www.w3.org/TR/css-overflow-3/#bidi-ellipsis" } }, - "#block-ellipsis": { - "snapshot": { - "number": "5.2", - "spec": "CSS Overflow 3", - "text": "Indicating Block-Axis Overflow: the block-ellipsis property", - "url": "https://www.w3.org/TR/css-overflow-3/#block-ellipsis" - } - }, "#changes": { "current": { - "number": "", + "number": "C", "spec": "CSS Overflow 3", - "text": "Appendix C. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-overflow-3/#changes" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Overflow 3", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-overflow-3/#changes" } }, @@ -119,12 +111,18 @@ "url": "https://www.w3.org/TR/css-overflow-3/#changes-since-2021-12-02" } }, - "#continue": { + "#corner-clipping": { + "current": { + "number": "3.1.2", + "spec": "CSS Overflow 3", + "text": "Interaction of border-radius and overflow", + "url": "https://drafts.csswg.org/css-overflow-3/#corner-clipping" + }, "snapshot": { - "number": "6.3", + "number": "3.1.2", "spec": "CSS Overflow 3", - "text": "Fragmentation of Overflow: the continue property", - "url": "https://www.w3.org/TR/css-overflow-3/#continue" + "text": "Interaction of border-radius and overflow", + "url": "https://www.w3.org/TR/css-overflow-3/#corner-clipping" } }, "#ellipsing-details": { @@ -169,14 +167,6 @@ "url": "https://www.w3.org/TR/css-overflow-3/#ellipsis-scrolling" } }, - "#fragmentation": { - "snapshot": { - "number": "6", - "spec": "CSS Overflow 3", - "text": "Fragmenting Overflow", - "url": "https://www.w3.org/TR/css-overflow-3/#fragmentation" - } - }, "#index": { "current": { "number": "", @@ -275,22 +265,6 @@ "url": "https://www.w3.org/TR/css-overflow-3/#issues-index" } }, - "#line-clamp": { - "snapshot": { - "number": "6.1", - "spec": "CSS Overflow 3", - "text": "Limiting Visible Lines: the line-clamp shorthand property", - "url": "https://www.w3.org/TR/css-overflow-3/#line-clamp" - } - }, - "#max-lines": { - "snapshot": { - "number": "6.2", - "spec": "CSS Overflow 3", - "text": "Forcing a Break After a Set Number of Lines: the max-lines property", - "url": "https://www.w3.org/TR/css-overflow-3/#max-lines" - } - }, "#normative": { "current": { "number": "", @@ -327,7 +301,7 @@ "url": "https://drafts.csswg.org/css-overflow-3/#overflow-clip-margin" }, "snapshot": { - "number": "3.3", + "number": "3.2", "spec": "CSS Overflow 3", "text": "Expanding Clipping Bounds: the overflow-clip-margin property", "url": "https://www.w3.org/TR/css-overflow-3/#overflow-clip-margin" @@ -343,7 +317,7 @@ "snapshot": { "number": "2", "spec": "CSS Overflow 3", - "text": "Types of Overflow", + "text": "Overflow Concepts and Terminology", "url": "https://www.w3.org/TR/css-overflow-3/#overflow-concepts" } }, @@ -353,6 +327,12 @@ "spec": "CSS Overflow 3", "text": "Managing Overflow: the overflow-x, overflow-y, and overflow properties", "url": "https://drafts.csswg.org/css-overflow-3/#overflow-control" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS Overflow 3", + "text": "Managing Overflow: the overflow-x, overflow-y, and overflow properties", + "url": "https://www.w3.org/TR/css-overflow-3/#overflow-control" } }, "#overflow-propagation": { @@ -363,7 +343,7 @@ "url": "https://drafts.csswg.org/css-overflow-3/#overflow-propagation" }, "snapshot": { - "number": "3.4", + "number": "3.3", "spec": "CSS Overflow 3", "text": "Overflow Viewport Propagation", "url": "https://www.w3.org/TR/css-overflow-3/#overflow-propagation" @@ -379,7 +359,7 @@ "snapshot": { "number": "3", "spec": "CSS Overflow 3", - "text": "Scrolling and Clipping Overflow: the overflow-x, overflow-y, and overflow properties", + "text": "Scrolling and Clipping Overflow", "url": "https://www.w3.org/TR/css-overflow-3/#overflow-properties" } }, @@ -399,18 +379,16 @@ }, "#priv": { "current": { - "number": "", + "number": "A", "spec": "CSS Overflow 3", - "text": "Appendix A. Privacy Considerations", + "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-overflow-3/#priv" - } - }, - "#priv-sec": { + }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Overflow 3", - "text": "Appendix A. Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-overflow-3/#priv-sec" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-overflow-3/#priv" } }, "#property-index": { @@ -447,6 +425,12 @@ "spec": "CSS Overflow 3", "text": "Interaction of visibility and overflow", "url": "https://drafts.csswg.org/css-overflow-3/#scroll-visibility" + }, + "snapshot": { + "number": "3.1.1", + "spec": "CSS Overflow 3", + "text": "Interaction of visibility and overflow", + "url": "https://www.w3.org/TR/css-overflow-3/#scroll-visibility" } }, "#scrollable": { @@ -511,22 +495,26 @@ "spec": "CSS Overflow 3", "text": "Scrolling Overflow", "url": "https://drafts.csswg.org/css-overflow-3/#scrolling" - } - }, - "#scrolling-direction": { + }, "snapshot": { - "number": "3.2", + "number": "2.3", "spec": "CSS Overflow 3", - "text": "Scrolling Origin, Direction, and Restriction", - "url": "https://www.w3.org/TR/css-overflow-3/#scrolling-direction" + "text": "Scrolling Overflow", + "url": "https://www.w3.org/TR/css-overflow-3/#scrolling" } }, "#sec": { "current": { - "number": "", + "number": "B", "spec": "CSS Overflow 3", - "text": "Appendix B. Security Considerations", + "text": "Security Considerations", "url": "https://drafts.csswg.org/css-overflow-3/#sec" + }, + "snapshot": { + "number": "B", + "spec": "CSS Overflow 3", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-overflow-3/#sec" } }, "#smooth-scrolling": { @@ -537,7 +525,7 @@ "url": "https://drafts.csswg.org/css-overflow-3/#smooth-scrolling" }, "snapshot": { - "number": "3.5", + "number": "3.4", "spec": "CSS Overflow 3", "text": "Smooth Scrolling: the scroll-behavior Property", "url": "https://www.w3.org/TR/css-overflow-3/#smooth-scrolling" @@ -559,13 +547,13 @@ }, "#static-media": { "current": { - "number": "3.1.2", + "number": "3.1.3", "spec": "CSS Overflow 3", "text": "Overflow in Print and Other Static Media", "url": "https://drafts.csswg.org/css-overflow-3/#static-media" }, "snapshot": { - "number": "3.1", + "number": "3.1.3", "spec": "CSS Overflow 3", "text": "Overflow in Print and Other Static Media", "url": "https://www.w3.org/TR/css-overflow-3/#static-media" @@ -724,13 +712,5 @@ "text": "Non-experimental implementations", "url": "https://www.w3.org/TR/css-overflow-3/#w3c-testing" } - }, - "#webkit-line-clamp": { - "snapshot": { - "number": "6.1.1", - "spec": "CSS Overflow 3", - "text": "Legacy compatibility", - "url": "https://www.w3.org/TR/css-overflow-3/#webkit-line-clamp" - } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-overflow-4.json b/bikeshed/spec-data/readonly/headings/headings-css-overflow-4.json index d34b9a4f36..1511897d60 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-overflow-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-overflow-4.json @@ -61,6 +61,12 @@ "spec": "CSS Overflow 4", "text": "Indicating Block-Axis Overflow: the block-ellipsis property", "url": "https://drafts.csswg.org/css-overflow-4/#block-ellipsis" + }, + "snapshot": { + "number": "4.2", + "spec": "CSS Overflow 4", + "text": "Indicating Block-Axis Overflow: the block-ellipsis property", + "url": "https://www.w3.org/TR/css-overflow-4/#block-ellipsis" } }, "#changes": { @@ -92,11 +98,11 @@ } }, "#channelling-overflow": { - "current": { + "snapshot": { "number": "", "spec": "CSS Overflow 4", "text": "Channeling Overflow: the continue property", - "url": "https://drafts.csswg.org/css-overflow-4/#channelling-overflow" + "url": "https://www.w3.org/TR/css-overflow-4/#channelling-overflow" } }, "#continue": { @@ -107,9 +113,9 @@ "url": "https://drafts.csswg.org/css-overflow-4/#continue" }, "snapshot": { - "number": "5.1", + "number": "5.3", "spec": "CSS Overflow 4", - "text": "Channeling Overflow: the continue property", + "text": "Fragmentation of Overflow: the continue property", "url": "https://www.w3.org/TR/css-overflow-4/#continue" } }, @@ -156,42 +162,24 @@ } }, "#fragment-overflow": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Fragmented Overflow", - "url": "https://drafts.csswg.org/css-overflow-4/#fragment-overflow" - }, "snapshot": { - "number": "5.3", + "number": "", "spec": "CSS Overflow 4", "text": "Fragmented Overflow", "url": "https://www.w3.org/TR/css-overflow-4/#fragment-overflow" } }, "#fragment-pseudo-element": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "The ::nth-fragment() pseudo-element", - "url": "https://drafts.csswg.org/css-overflow-4/#fragment-pseudo-element" - }, "snapshot": { - "number": "5.4.1", + "number": "", "spec": "CSS Overflow 4", "text": "The ::nth-fragment() pseudo-element", "url": "https://www.w3.org/TR/css-overflow-4/#fragment-pseudo-element" } }, "#fragment-styling": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Fragment styling", - "url": "https://drafts.csswg.org/css-overflow-4/#fragment-styling" - }, "snapshot": { - "number": "5.4", + "number": "", "spec": "CSS Overflow 4", "text": "Fragment styling", "url": "https://www.w3.org/TR/css-overflow-4/#fragment-styling" @@ -203,17 +191,17 @@ "spec": "CSS Overflow 4", "text": "Fragmenting Overflow", "url": "https://drafts.csswg.org/css-overflow-4/#fragmentating-overflow" + }, + "snapshot": { + "number": "5", + "spec": "CSS Overflow 4", + "text": "Fragmenting Overflow", + "url": "https://www.w3.org/TR/css-overflow-4/#fragmentating-overflow" } }, "#fragmentation": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Appendix A: Redirection of Overflow", - "url": "https://drafts.csswg.org/css-overflow-4/#fragmentation" - }, "snapshot": { - "number": "5", + "number": "A", "spec": "CSS Overflow 4", "text": "Redirection of Overflow", "url": "https://www.w3.org/TR/css-overflow-4/#fragmentation" @@ -309,6 +297,12 @@ "spec": "CSS Overflow 4", "text": "Limiting Visible Lines: the line-clamp shorthand property", "url": "https://drafts.csswg.org/css-overflow-4/#line-clamp" + }, + "snapshot": { + "number": "5.1", + "spec": "CSS Overflow 4", + "text": "Limiting Visible Lines: the line-clamp shorthand property", + "url": "https://www.w3.org/TR/css-overflow-4/#line-clamp" } }, "#max-lines": { @@ -319,9 +313,9 @@ "url": "https://drafts.csswg.org/css-overflow-4/#max-lines" }, "snapshot": { - "number": "5.5", + "number": "5.2", "spec": "CSS Overflow 4", - "text": "The max-lines property", + "text": "Forcing a Break After a Set Number of Lines: the max-lines property", "url": "https://www.w3.org/TR/css-overflow-4/#max-lines" } }, @@ -396,14 +390,8 @@ } }, "#paginated-overflow": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Paginated overflow", - "url": "https://drafts.csswg.org/css-overflow-4/#paginated-overflow" - }, "snapshot": { - "number": "5.2", + "number": "", "spec": "CSS Overflow 4", "text": "Paginated overflow", "url": "https://www.w3.org/TR/css-overflow-4/#paginated-overflow" @@ -423,20 +411,18 @@ "url": "https://www.w3.org/TR/css-overflow-4/#placement" } }, - "#priv-sec": { - "snapshot": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Appendix B: Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-overflow-4/#priv-sec" - } - }, - "#privclass=nonum": { + "#privclass%3Dnonum": { "current": { - "number": "", + "number": "B", "spec": "CSS Overflow 4", - "text": "Appendix C: Privacy Considerations", - "url": "https://drafts.csswg.org/css-overflow-4/#privclass=nonum" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-overflow-4/#privclass%3Dnonum" + }, + "snapshot": { + "number": "C", + "spec": "CSS Overflow 4", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-overflow-4/#privclass%3Dnonum" } }, "#property-index": { @@ -483,24 +469,30 @@ }, "#sbg-ext": { "current": { - "number": "", + "number": "A", "spec": "CSS Overflow 4", - "text": "Appendix B: Possible extensions for scrollbar-gutter", + "text": "Possible extensions for scrollbar-gutter", "url": "https://drafts.csswg.org/css-overflow-4/#sbg-ext" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Overflow 4", - "text": "Appendix A: Possible extensions for scrollbar-gutter", + "text": "Possible extensions for scrollbar-gutter", "url": "https://www.w3.org/TR/css-overflow-4/#sbg-ext" } }, "#sec": { "current": { - "number": "", + "number": "C", "spec": "CSS Overflow 4", - "text": "Appendix D: Security Considerations", + "text": "Security Considerations", "url": "https://drafts.csswg.org/css-overflow-4/#sec" + }, + "snapshot": { + "number": "D", + "spec": "CSS Overflow 4", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-overflow-4/#sec" } }, "#sotd": { @@ -518,28 +510,16 @@ } }, "#style-in-fragments": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Styling inside fragments", - "url": "https://drafts.csswg.org/css-overflow-4/#style-in-fragments" - }, "snapshot": { - "number": "5.4.3", + "number": "", "spec": "CSS Overflow 4", "text": "Styling inside fragments", "url": "https://www.w3.org/TR/css-overflow-4/#style-in-fragments" } }, "#style-of-fragments": { - "current": { - "number": "", - "spec": "CSS Overflow 4", - "text": "Styling of fragments", - "url": "https://drafts.csswg.org/css-overflow-4/#style-of-fragments" - }, "snapshot": { - "number": "5.4.2", + "number": "", "spec": "CSS Overflow 4", "text": "Styling of fragments", "url": "https://www.w3.org/TR/css-overflow-4/#style-of-fragments" @@ -705,6 +685,12 @@ "spec": "CSS Overflow 4", "text": "Legacy compatibility", "url": "https://drafts.csswg.org/css-overflow-4/#webkit-line-clamp" + }, + "snapshot": { + "number": "5.1.1", + "spec": "CSS Overflow 4", + "text": "Legacy compatibility", + "url": "https://www.w3.org/TR/css-overflow-4/#webkit-line-clamp" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-overflow-5.json b/bikeshed/spec-data/readonly/headings/headings-css-overflow-5.json new file mode 100644 index 0000000000..9fae0aa324 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-css-overflow-5.json @@ -0,0 +1,306 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Abstract", + "url": "https://drafts.csswg.org/css-overflow-5/#abstract" + } + }, + "#acknowledgments": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Acknowledgments", + "url": "https://drafts.csswg.org/css-overflow-5/#acknowledgments" + } + }, + "#changes-l4": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Changes Since Level 4", + "url": "https://drafts.csswg.org/css-overflow-5/#changes-l4" + } + }, + "#channelling-overflow": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Channeling Overflow: the continue property", + "url": "https://drafts.csswg.org/css-overflow-5/#channelling-overflow" + } + }, + "#fragment-overflow": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Fragmented Overflow", + "url": "https://drafts.csswg.org/css-overflow-5/#fragment-overflow" + } + }, + "#fragment-pseudo-element": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "The ::nth-fragment() pseudo-element", + "url": "https://drafts.csswg.org/css-overflow-5/#fragment-pseudo-element" + } + }, + "#fragment-styling": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Fragment styling", + "url": "https://drafts.csswg.org/css-overflow-5/#fragment-styling" + } + }, + "#fragmentation": { + "current": { + "number": "A", + "spec": "CSS Overflow 5", + "text": "Redirection of Overflow", + "url": "https://drafts.csswg.org/css-overflow-5/#fragmentation" + } + }, + "#index": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Index", + "url": "https://drafts.csswg.org/css-overflow-5/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-overflow-5/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-overflow-5/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-overflow-5/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "CSS Overflow 5", + "text": "Introduction", + "url": "https://drafts.csswg.org/css-overflow-5/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-overflow-5/#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Normative References", + "url": "https://drafts.csswg.org/css-overflow-5/#normative" + } + }, + "#paginated-overflow": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Paginated overflow", + "url": "https://drafts.csswg.org/css-overflow-5/#paginated-overflow" + } + }, + "#privclass%3Dnonum": { + "current": { + "number": "C", + "spec": "CSS Overflow 5", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-overflow-5/#privclass%3Dnonum" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-overflow-5/#property-index" + } + }, + "#references": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "References", + "url": "https://drafts.csswg.org/css-overflow-5/#references" + } + }, + "#scroll-container-scroll": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Scroll tracking", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-container-scroll" + } + }, + "#scroll-marker-group": { + "current": { + "number": "2", + "spec": "CSS Overflow 5", + "text": "Overflow Controls: the scroll-marker-group property and pseudo-elements", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-marker-group" + } + }, + "#scroll-marker-group-pseudo": { + "current": { + "number": "2.1", + "spec": "CSS Overflow 5", + "text": "The ::scroll-marker-group pseudo-element", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-marker-group-pseudo" + } + }, + "#scroll-marker-pseudo": { + "current": { + "number": "2.2", + "spec": "CSS Overflow 5", + "text": "The ::scroll-marker pseudo-element", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-marker-pseudo" + } + }, + "#scroll-navigation": { + "current": { + "number": "B", + "spec": "CSS Overflow 5", + "text": "Scroll navigation controls", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-navigation" + } + }, + "#scroll-target": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "scrollTargetElement attribute", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-target" + } + }, + "#scroll-target-focus": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Focus behavior", + "url": "https://drafts.csswg.org/css-overflow-5/#scroll-target-focus" + } + }, + "#sec": { + "current": { + "number": "D", + "spec": "CSS Overflow 5", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-overflow-5/#sec" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-overflow-5/#sotd" + } + }, + "#style-in-fragments": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Styling inside fragments", + "url": "https://drafts.csswg.org/css-overflow-5/#style-in-fragments" + } + }, + "#style-of-fragments": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Styling of fragments", + "url": "https://drafts.csswg.org/css-overflow-5/#style-of-fragments" + } + }, + "#title": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "CSS Overflow Module Level 5", + "url": "https://drafts.csswg.org/css-overflow-5/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css-overflow-5/#toc" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-overflow-5/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-overflow-5/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-overflow-5/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-overflow-5/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-overflow-5/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS Overflow 5", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-overflow-5/#w3c-testing" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-page-3.json b/bikeshed/spec-data/readonly/headings/headings-css-page-3.json index ad49405356..b8c57597ff 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-page-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-page-3.json @@ -97,54 +97,6 @@ "url": "https://www.w3.org/TR/css-page-3/#changes" } }, - "#conform-classes": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/css-page-3/#conform-classes" - } - }, - "#conform-future-proofing": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Implementations of Unstable and Proprietary Features", - "url": "https://www.w3.org/TR/css-page-3/#conform-future-proofing" - } - }, - "#conform-partial": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Partial Implementations", - "url": "https://www.w3.org/TR/css-page-3/#conform-partial" - } - }, - "#conform-responsible": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Requirements for Responsible Implementation of CSS", - "url": "https://www.w3.org/TR/css-page-3/#conform-responsible" - } - }, - "#conform-testing": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Implementations of CR-level Features", - "url": "https://www.w3.org/TR/css-page-3/#conform-testing" - } - }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Conformance", - "url": "https://www.w3.org/TR/css-page-3/#conformance" - } - }, "#content-outside-box": { "current": { "number": "3.2", @@ -159,14 +111,6 @@ "url": "https://www.w3.org/TR/css-page-3/#content-outside-box" } }, - "#document-conventions": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Document conventions", - "url": "https://www.w3.org/TR/css-page-3/#document-conventions" - } - }, "#first-pseudo": { "current": { "number": "4.2.2", @@ -481,6 +425,12 @@ "spec": "CSS Paged Media 3", "text": "Rotating The Printed Page: the page-orientation property", "url": "https://drafts.csswg.org/css-page-3/#page-orientation-prop" + }, + "snapshot": { + "number": "7.1.2", + "spec": "CSS Paged Media 3", + "text": "Rotating The Printed Page: the page-orientation property", + "url": "https://www.w3.org/TR/css-page-3/#page-orientation-prop" } }, "#page-properties": { @@ -667,15 +617,15 @@ }, "#properties-list": { "current": { - "number": "", + "number": "A", "spec": "CSS Paged Media 3", - "text": "Appendix A: Applicable CSS2.1 Properties", + "text": "Applicable CSS2.1 Properties", "url": "https://drafts.csswg.org/css-page-3/#properties-list" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Paged Media 3", - "text": "Appendix A: Applicable CSS2.1 Properties", + "text": "Applicable CSS2.1 Properties", "url": "https://www.w3.org/TR/css-page-3/#properties-list" } }, @@ -727,6 +677,12 @@ "spec": "CSS Paged Media 3", "text": "Status of this document", "url": "https://drafts.csswg.org/css-page-3/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-page-3/#sotd" } }, "#spread-pseudos": { @@ -743,22 +699,6 @@ "url": "https://www.w3.org/TR/css-page-3/#spread-pseudos" } }, - "#status": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "Status of this document", - "url": "https://www.w3.org/TR/css-page-3/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS Paged Media 3", - "text": "W3C Working Draft, 18 October 2018", - "url": "https://www.w3.org/TR/css-page-3/#subtitle" - } - }, "#syntax-page-selector": { "current": { "number": "4.3", @@ -803,15 +743,15 @@ }, "#transfer-possibilities": { "current": { - "number": "", + "number": "B", "spec": "CSS Paged Media 3", - "text": "Appendix B: Transfer Possibilities", + "text": "Transfer Possibilities", "url": "https://drafts.csswg.org/css-page-3/#transfer-possibilities" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Paged Media 3", - "text": "Appendix B: Transfer Possibilities", + "text": "Transfer Possibilities", "url": "https://www.w3.org/TR/css-page-3/#transfer-possibilities" } }, @@ -835,6 +775,12 @@ "spec": "CSS Paged Media 3", "text": "Value Definitions", "url": "https://drafts.csswg.org/css-page-3/#values" + }, + "snapshot": { + "number": "1.1", + "spec": "CSS Paged Media 3", + "text": "Value Definitions", + "url": "https://www.w3.org/TR/css-page-3/#values" } }, "#variable-auto-margins": { @@ -927,6 +873,12 @@ "spec": "CSS Paged Media 3", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-page-3/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-page-3/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -935,6 +887,12 @@ "spec": "CSS Paged Media 3", "text": "Conformance", "url": "https://drafts.csswg.org/css-page-3/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-page-3/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -943,6 +901,12 @@ "spec": "CSS Paged Media 3", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-page-3/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-page-3/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -951,6 +915,12 @@ "spec": "CSS Paged Media 3", "text": "Document conventions", "url": "https://drafts.csswg.org/css-page-3/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-page-3/#w3c-conventions" } }, "#w3c-partial": { @@ -959,6 +929,12 @@ "spec": "CSS Paged Media 3", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-page-3/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-page-3/#w3c-partial" } }, "#w3c-testing": { @@ -967,6 +943,12 @@ "spec": "CSS Paged Media 3", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-page-3/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Paged Media 3", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-page-3/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-page-4.json b/bikeshed/spec-data/readonly/headings/headings-css-page-4.json index 7e34c0c34c..89d3be1515 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-page-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-page-4.json @@ -7,36 +7,44 @@ "url": "https://drafts.csswg.org/css-page-4/#abstract" } }, - "#conformance": { + "#css-page-model": { "current": { - "number": "2", + "number": "1", "spec": "Proposals for the future of CSS Paged Media", - "text": "Conformance", - "url": "https://drafts.csswg.org/css-page-4/#conformance" + "text": "The CSS 3 Page Model", + "url": "https://drafts.csswg.org/css-page-4/#css-page-model" } }, - "#informative-references": { + "#index": { "current": { "number": "", "spec": "Proposals for the future of CSS Paged Media", - "text": "Informative References", - "url": "https://drafts.csswg.org/css-page-4/#informative-references" + "text": "Index", + "url": "https://drafts.csswg.org/css-page-4/#index" } }, - "#intro": { + "#index-defined-elsewhere": { "current": { - "number": "1", + "number": "", + "spec": "Proposals for the future of CSS Paged Media", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-page-4/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", "spec": "Proposals for the future of CSS Paged Media", - "text": "Introduction", - "url": "https://drafts.csswg.org/css-page-4/#intro" + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-page-4/#index-defined-here" } }, - "#normative-references": { + "#normative": { "current": { "number": "", "spec": "Proposals for the future of CSS Paged Media", "text": "Normative References", - "url": "https://drafts.csswg.org/css-page-4/#normative-references" + "url": "https://drafts.csswg.org/css-page-4/#normative" } }, "#references": { @@ -47,36 +55,76 @@ "url": "https://drafts.csswg.org/css-page-4/#references" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Proposals for the future of CSS Paged Media", - "text": "Status of this Document", - "url": "https://drafts.csswg.org/css-page-4/#status" + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-page-4/#sotd" } }, - "#the-css-3-page-model": { + "#title": { "current": { - "number": "3", + "number": "", "spec": "Proposals for the future of CSS Paged Media", - "text": "The CSS 3 Page Model", - "url": "https://drafts.csswg.org/css-page-4/#the-css-3-page-model" + "text": "Proposals for the future of CSS Paged Media", + "url": "https://drafts.csswg.org/css-page-4/#title" } }, "#toc": { "current": { "number": "", "spec": "Proposals for the future of CSS Paged Media", - "text": "Table of contents", + "text": "Table of Contents", "url": "https://drafts.csswg.org/css-page-4/#toc" } }, - "#w3c-working": { + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "Proposals for the future of CSS Paged Media", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-page-4/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Proposals for the future of CSS Paged Media", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-page-4/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "Proposals for the future of CSS Paged Media", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-page-4/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Proposals for the future of CSS Paged Media", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-page-4/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "Proposals for the future of CSS Paged Media", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-page-4/#w3c-partial" + } + }, + "#w3c-testing": { "current": { "number": "", "spec": "Proposals for the future of CSS Paged Media", - "text": "Editor's Draft 7 March 2013", - "url": "https://drafts.csswg.org/css-page-4/#w3c-working" + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-page-4/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-page-floats-3.json b/bikeshed/spec-data/readonly/headings/headings-css-page-floats-3.json index 43e428d887..c25f73ffe1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-page-floats-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-page-floats-3.json @@ -327,6 +327,14 @@ "url": "https://www.w3.org/TR/css-page-floats-3/#partial" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Page Floats", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-page-floats-3/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -369,6 +377,14 @@ "url": "https://www.w3.org/TR/css-page-floats-3/#relation_to_absolutely_positioned_exclusions" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Page Floats", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-page-floats-3/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-position-3.json b/bikeshed/spec-data/readonly/headings/headings-css-position-3.json index 32e15647b8..71cdc1e4e4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-position-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-position-3.json @@ -71,13 +71,13 @@ }, "#abspos-breaking": { "current": { - "number": "3.5.2", + "number": "3.5.3", "spec": "CSS Positioned Layout 3", "text": "Fragmenting Absolutely-positioned Elements", "url": "https://drafts.csswg.org/css-position-3/#abspos-breaking" }, "snapshot": { - "number": "3.5.2", + "number": "3.5.3", "spec": "CSS Positioned Layout 3", "text": "Fragmenting Absolutely-positioned Elements", "url": "https://www.w3.org/TR/css-position-3/#abspos-breaking" @@ -405,6 +405,20 @@ "url": "https://www.w3.org/TR/css-position-3/#normative" } }, + "#original-cb": { + "current": { + "number": "2.1.1", + "spec": "CSS Positioned Layout 3", + "text": "Further Adjustments to the Containing Block", + "url": "https://drafts.csswg.org/css-position-3/#original-cb" + }, + "snapshot": { + "number": "2.1.1", + "spec": "CSS Positioned Layout 3", + "text": "Further Adjustments to the Containing Block", + "url": "https://www.w3.org/TR/css-position-3/#original-cb" + } + }, "#placement": { "current": { "number": "1.1", @@ -433,18 +447,18 @@ "url": "https://www.w3.org/TR/css-position-3/#position-property" } }, - "#priv-sec": { + "#privacy": { "current": { "number": "", "spec": "CSS Positioned Layout 3", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-position-3/#priv-sec" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-position-3/#privacy" }, "snapshot": { "number": "", "spec": "CSS Positioned Layout 3", - "text": "Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-position-3/#priv-sec" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-position-3/#privacy" } }, "#property-index": { @@ -489,6 +503,34 @@ "url": "https://www.w3.org/TR/css-position-3/#relpos-insets" } }, + "#resolving-insets": { + "current": { + "number": "3.5.1", + "spec": "CSS Positioned Layout 3", + "text": "Resolvings Insets: the “Inset-Modified Containing Block”", + "url": "https://drafts.csswg.org/css-position-3/#resolving-insets" + }, + "snapshot": { + "number": "3.5.1", + "spec": "CSS Positioned Layout 3", + "text": "Resolvings Insets: the “Inset-Modified Containing Block”", + "url": "https://www.w3.org/TR/css-position-3/#resolving-insets" + } + }, + "#security": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-position-3/#security" + }, + "snapshot": { + "number": "", + "spec": "CSS Positioned Layout 3", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-position-3/#security" + } + }, "#sotd": { "current": { "number": "", @@ -519,15 +561,15 @@ }, "#staticpos-rect": { "current": { - "number": "3.5.1", + "number": "3.5.2", "spec": "CSS Positioned Layout 3", - "text": "Resolving Automatic Insets: the “Static-Position Rectangle”", + "text": "Calculating the Static Position and the “Static-Position Rectangle”", "url": "https://drafts.csswg.org/css-position-3/#staticpos-rect" }, "snapshot": { - "number": "3.5.1", + "number": "3.5.2", "spec": "CSS Positioned Layout 3", - "text": "Resolving Automatic Insets: the “Static-Position Rectangle”", + "text": "Calculating the Static Position and the “Static-Position Rectangle”", "url": "https://www.w3.org/TR/css-position-3/#staticpos-rect" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-position-4.json b/bikeshed/spec-data/readonly/headings/headings-css-position-4.json new file mode 100644 index 0000000000..ba34cf91d4 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-css-position-4.json @@ -0,0 +1,194 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Abstract", + "url": "https://drafts.csswg.org/css-position-4/#abstract" + } + }, + "#backdrop": { + "current": { + "number": "3.2", + "spec": "CSS Positioned Layout 4", + "text": "The ::backdrop Pseudo-Element", + "url": "https://drafts.csswg.org/css-position-4/#backdrop" + } + }, + "#index": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Index", + "url": "https://drafts.csswg.org/css-position-4/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-position-4/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-position-4/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-position-4/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "CSS Positioned Layout 4", + "text": "Introduction", + "url": "https://drafts.csswg.org/css-position-4/#intro" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Normative References", + "url": "https://drafts.csswg.org/css-position-4/#normative" + } + }, + "#overlay": { + "current": { + "number": "3.4", + "spec": "CSS Positioned Layout 4", + "text": "Controlling the Top Layer: the overlay property", + "url": "https://drafts.csswg.org/css-position-4/#overlay" + } + }, + "#painting-order": { + "current": { + "number": "2", + "spec": "CSS Positioned Layout 4", + "text": "Painting Order and Stacking Contexts", + "url": "https://drafts.csswg.org/css-position-4/#painting-order" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-position-4/#property-index" + } + }, + "#references": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "References", + "url": "https://drafts.csswg.org/css-position-4/#references" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-position-4/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "CSS Positioned Layout Module Level 4", + "url": "https://drafts.csswg.org/css-position-4/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css-position-4/#toc" + } + }, + "#top-layer": { + "current": { + "number": "3", + "spec": "CSS Positioned Layout 4", + "text": "Top Layer", + "url": "https://drafts.csswg.org/css-position-4/#top-layer" + } + }, + "#top-manip": { + "current": { + "number": "3.3", + "spec": "CSS Positioned Layout 4", + "text": "Top Layer Manipulation", + "url": "https://drafts.csswg.org/css-position-4/#top-manip" + } + }, + "#top-styling": { + "current": { + "number": "3.1", + "spec": "CSS Positioned Layout 4", + "text": "Top Layer Styling", + "url": "https://drafts.csswg.org/css-position-4/#top-styling" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-position-4/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-position-4/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-position-4/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-position-4/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-position-4/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS Positioned Layout 4", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-position-4/#w3c-testing" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-properties-values-api-1.json b/bikeshed/spec-data/readonly/headings/headings-css-properties-values-api-1.json index bcaee8d13b..0d6d646c42 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-properties-values-api-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-properties-values-api-1.json @@ -31,7 +31,7 @@ "current": { "number": "3", "spec": "CSS Properties and Values API 1", - "text": "The @property Info about the '@property' definition.#at-ruledef-propertyReferenced in: 1. Introduction 2. Registered Custom Properties (2) 2.1. Determining the Registration 3. The @property Rule (2) (3) (4) (5) (6) (7) (8) 3.1. The syntax Descriptor (2) (3) (4) 3.2. The inherits Descriptor (2) (3) (4) 3.3. The initial-value Descriptor (2) (3) (4) 6.1. The CSSPropertyRule Interface (2) (3) (4) (5) 7.2. Example 2: Using @property to register a property Rule", + "text": "The @property Rule", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#at-property-rule" }, "snapshot": { @@ -69,6 +69,34 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#calculation-of-computed-values" } }, + "#changes": { + "current": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "10. Changes", + "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#changes" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "10. Changes", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#changes" + } + }, + "#changes-20201013": { + "current": { + "number": "10.1", + "spec": "CSS Properties and Values API 1", + "text": "Changes since the Working Draft of 13 October 2020", + "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#changes-20201013" + }, + "snapshot": { + "number": "10.1", + "spec": "CSS Properties and Values API 1", + "text": "Changes since the Working Draft of 13 October 2020", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#changes-20201013" + } + }, "#combinator": { "current": { "number": "5.3", @@ -97,30 +125,6 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#conditional-rules" } }, - "#conform-future-proofing": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Implementations of Unstable and Proprietary Features", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#conform-future-proofing" - } - }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Conformance", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#conformance" - } - }, - "#conformance-classes": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#conformance-classes" - } - }, "#consume-data-type-name": { "current": { "number": "5.4.4", @@ -163,14 +167,6 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#consume-syntax-definition" } }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Document conventions", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#conventions" - } - }, "#css-style-value-reification": { "current": { "number": "6.2", @@ -395,14 +391,6 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#intro" } }, - "#issues-index": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Issues Index", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#issues-index" - } - }, "#multipliers": { "current": { "number": "5.2", @@ -473,14 +461,6 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#parsing-syntax" } }, - "#partial": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Partial implementations", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#partial" - } - }, "#privacy-considerations": { "current": { "number": "9", @@ -571,6 +551,12 @@ "spec": "CSS Properties and Values API 1", "text": "Shadow DOM", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#shadow-dom" + }, + "snapshot": { + "number": "2.8", + "spec": "CSS Properties and Values API 1", + "text": "Shadow DOM", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#shadow-dom" } }, "#sotd": { @@ -579,6 +565,12 @@ "spec": "CSS Properties and Values API 1", "text": "Status of this document", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#sotd" } }, "#specified-value": { @@ -595,14 +587,6 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#specified-value" } }, - "#status": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Status of this document", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#status" - } - }, "#substitution": { "current": { "number": "2.7", @@ -617,14 +601,6 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#substitution" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "W3C Working Draft, 13 October 2020", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#subtitle" - } - }, "#supported-names": { "current": { "number": "5.1", @@ -653,19 +629,11 @@ "url": "https://www.w3.org/TR/css-properties-values-api-1/#syntax-strings" } }, - "#testing": { - "snapshot": { - "number": "", - "spec": "CSS Properties and Values API 1", - "text": "Non-experimental implementations", - "url": "https://www.w3.org/TR/css-properties-values-api-1/#testing" - } - }, "#the-css-property-rule-interface": { "current": { "number": "6.1", "spec": "CSS Properties and Values API 1", - "text": "The CSSPropertyRule Info about the 'CSSPropertyRule' definition.#csspropertyruleReferenced in: 6.1. The CSSPropertyRule Interface (2) Interface", + "text": "The CSSPropertyRule Interface", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#the-css-property-rule-interface" }, "snapshot": { @@ -751,6 +719,12 @@ "spec": "CSS Properties and Values API 1", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -759,6 +733,12 @@ "spec": "CSS Properties and Values API 1", "text": "Conformance", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -767,6 +747,12 @@ "spec": "CSS Properties and Values API 1", "text": "Conformance classes", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -775,6 +761,12 @@ "spec": "CSS Properties and Values API 1", "text": "Document conventions", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#w3c-conventions" } }, "#w3c-partial": { @@ -783,6 +775,12 @@ "spec": "CSS Properties and Values API 1", "text": "Partial implementations", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#w3c-partial" } }, "#w3c-testing": { @@ -791,6 +789,12 @@ "spec": "CSS Properties and Values API 1", "text": "Non-experimental implementations", "url": "https://drafts.css-houdini.org/css-properties-values-api-1/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Properties and Values API 1", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-properties-values-api-1/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-pseudo-4.json b/bikeshed/spec-data/readonly/headings/headings-css-pseudo-4.json index 9d6f28a302..492fd94364 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-pseudo-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-pseudo-4.json @@ -83,6 +83,14 @@ "url": "https://www.w3.org/TR/css-pseudo-4/#cssom" } }, + "#details-content-pseudo": { + "current": { + "number": "4.5", + "spec": "CSS Pseudo-Elements 4", + "text": "Expandable contents of details element: the ::details-content pseudo-element", + "url": "https://drafts.csswg.org/css-pseudo-4/#details-content-pseudo" + } + }, "#file-selector-button-pseudo": { "current": { "number": "4.4", @@ -625,7 +633,7 @@ "snapshot": { "number": "", "spec": "CSS Pseudo-Elements 4", - "text": "165 TestsCSS Pseudo-Elements Module Level 4", + "text": "CSS Pseudo-Elements Module Level 4", "url": "https://www.w3.org/TR/css-pseudo-4/#title" } }, @@ -647,7 +655,7 @@ "current": { "number": "4", "spec": "CSS Pseudo-Elements 4", - "text": "Tree-Abiding Pseudo-elements", + "text": "Tree-Abiding and Part-Like Pseudo-elements", "url": "https://drafts.csswg.org/css-pseudo-4/#treelike" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-regions-1.json b/bikeshed/spec-data/readonly/headings/headings-css-regions-1.json index 11e2e87aa2..8d5f81f530 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-regions-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-regions-1.json @@ -431,6 +431,14 @@ "url": "https://www.w3.org/TR/css-regions-1/#partial" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Regions 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-regions-1/#privacy" + } + }, "#processing-model": { "current": { "number": "7.1", @@ -725,6 +733,14 @@ "url": "https://www.w3.org/TR/css-regions-1/#rfcb-width-resolution" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Regions 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-regions-1/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-rhythm-1.json b/bikeshed/spec-data/readonly/headings/headings-css-rhythm-1.json index f765f8b3e4..c515373615 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-rhythm-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-rhythm-1.json @@ -363,7 +363,7 @@ "snapshot": { "number": "", "spec": "CSS Rhythmic Sizing", - "text": "No TestsCSS Rhythmic Sizing", + "text": "CSS Rhythmic Sizing", "url": "https://www.w3.org/TR/css-rhythm-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-ruby-1.json b/bikeshed/spec-data/readonly/headings/headings-css-ruby-1.json index 5f442bc50d..16d441843a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-ruby-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-ruby-1.json @@ -253,15 +253,15 @@ }, "#default-stylesheet": { "current": { - "number": "", + "number": "A", "spec": "CSS Ruby Annotation Layout 1", - "text": "Appendix A: Sample Style Sheets", + "text": "Sample Style Sheets", "url": "https://drafts.csswg.org/css-ruby-1/#default-stylesheet" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Ruby Annotation Layout 1", - "text": "Appendix A: Sample Style Sheets", + "text": "Sample Style Sheets", "url": "https://www.w3.org/TR/css-ruby-1/#default-stylesheet" } }, @@ -559,6 +559,14 @@ "url": "https://www.w3.org/TR/css-ruby-1/#placement" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Ruby Annotation Layout 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-ruby-1/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -727,6 +735,14 @@ "url": "https://www.w3.org/TR/css-ruby-1/#rubypos" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Ruby Annotation Layout 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-ruby-1/#security" + } + }, "#segment-pairing": { "current": { "number": "2.3.1", @@ -765,7 +781,7 @@ "snapshot": { "number": "", "spec": "CSS Ruby Annotation Layout 1", - "text": "81 TestsCSS Ruby Annotation Layout Module Level 1", + "text": "CSS Ruby Annotation Layout Module Level 1", "url": "https://www.w3.org/TR/css-ruby-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-scoping-1.json b/bikeshed/spec-data/readonly/headings/headings-css-scoping-1.json index 5cbb0e8e6c..f8236f0795 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-scoping-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-scoping-1.json @@ -103,9 +103,9 @@ }, "#fragment-scoping": { "snapshot": { - "number": "", + "number": "4", "spec": "CSS Scoping 1", - "text": "4 Fragmented Styling", + "text": "Fragmented Styling", "url": "https://www.w3.org/TR/css-scoping-1/#fragment-scoping" } }, @@ -199,9 +199,9 @@ "url": "https://drafts.csswg.org/css-scoping-1/#intro" }, "snapshot": { - "number": "", + "number": "1", "spec": "CSS Scoping 1", - "text": "1 Introduction", + "text": "Introduction", "url": "https://www.w3.org/TR/css-scoping-1/#intro" } }, @@ -273,9 +273,9 @@ }, "#scope": { "snapshot": { - "number": "", + "number": "2", "spec": "CSS Scoping 1", - "text": "2 Scoped Styles", + "text": "Scoped Styles", "url": "https://www.w3.org/TR/css-scoping-1/#scope" } }, @@ -385,9 +385,9 @@ "url": "https://drafts.csswg.org/css-scoping-1/#shadow-dom" }, "snapshot": { - "number": "", + "number": "3", "spec": "CSS Scoping 1", - "text": "3 Shadow Encapsulation", + "text": "Shadow Encapsulation", "url": "https://www.w3.org/TR/css-scoping-1/#shadow-dom" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-1.json b/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-1.json index d5af0b8073..0cae96b814 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-1.json @@ -211,15 +211,15 @@ }, "#longhands": { "current": { - "number": "", + "number": "A", "spec": "CSS Scroll Snap 1", - "text": "Appendix A: Longhands", + "text": "Longhands", "url": "https://drafts.csswg.org/css-scroll-snap-1/#longhands" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Scroll Snap 1", - "text": "Appendix A: Longhands", + "text": "Longhands", "url": "https://www.w3.org/TR/css-scroll-snap-1/#longhands" } }, @@ -251,6 +251,14 @@ "url": "https://www.w3.org/TR/css-scroll-snap-1/#margin-longhands-physical" } }, + "#multiple-aligned-snap-areas": { + "current": { + "number": "6.2.1", + "spec": "CSS Scroll Snap 1", + "text": "Selecting between multiple aligned snap areas", + "url": "https://drafts.csswg.org/css-scroll-snap-1/#multiple-aligned-snap-areas" + } + }, "#normative": { "current": { "number": "", @@ -593,7 +601,7 @@ "snapshot": { "number": "", "spec": "CSS Scroll Snap 1", - "text": "65 TestsCSS Scroll Snap Module Level 1", + "text": "CSS Scroll Snap Module Level 1", "url": "https://www.w3.org/TR/css-scroll-snap-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-2.json b/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-2.json index 9b9ab05faf..89f97e8f72 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-scroll-snap-2.json @@ -5,14 +5,40 @@ "spec": "CSS Scroll Snap 2", "text": "Abstract", "url": "https://drafts.csswg.org/css-scroll-snap-2/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Abstract", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#abstract" } }, - "#display-none-behavior": { + "#event-handlers": { "current": { - "number": "3.1.1", + "number": "A", + "spec": "CSS Scroll Snap 2", + "text": "Event Handlers", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#event-handlers" + }, + "snapshot": { + "number": "A", + "spec": "CSS Scroll Snap 2", + "text": "Event Handlers", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#event-handlers" + } + }, + "#event-handlers-on-elements-document-and-window-objects": { + "current": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Event handlers on elements, Document objects and Window objects", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#event-handlers-on-elements-document-and-window-objects" + }, + "snapshot": { + "number": "", "spec": "CSS Scroll Snap 2", - "text": "Interaction with display: none and initial creation", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#display-none-behavior" + "text": "Event handlers on elements, Document objects and Window objects", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#event-handlers-on-elements-document-and-window-objects" } }, "#examples": { @@ -21,14 +47,12 @@ "spec": "CSS Scroll Snap 2", "text": "Motivating Examples", "url": "https://drafts.csswg.org/css-scroll-snap-2/#examples" - } - }, - "#find-in-page-behavior": { - "current": { - "number": "3.1.5", + }, + "snapshot": { + "number": "2", "spec": "CSS Scroll Snap 2", - "text": "Interaction with \"find in page\"", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#find-in-page-behavior" + "text": "Motivating Examples", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#examples" } }, "#first-layout": { @@ -37,14 +61,26 @@ "spec": "CSS Scroll Snap 2", "text": "First Layout", "url": "https://drafts.csswg.org/css-scroll-snap-2/#first-layout" + }, + "snapshot": { + "number": "1.1", + "spec": "CSS Scroll Snap 2", + "text": "First Layout", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#first-layout" } }, - "#fragment-navigation-behavior": { + "#idl-index": { "current": { - "number": "3.1.3", + "number": "", "spec": "CSS Scroll Snap 2", - "text": "Interaction with fragment navigation", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#fragment-navigation-behavior" + "text": "IDL Index", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#idl-index" } }, "#index": { @@ -53,6 +89,12 @@ "spec": "CSS Scroll Snap 2", "text": "Index", "url": "https://drafts.csswg.org/css-scroll-snap-2/#index" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Index", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#index" } }, "#index-defined-elsewhere": { @@ -61,6 +103,12 @@ "spec": "CSS Scroll Snap 2", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/css-scroll-snap-2/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -69,6 +117,54 @@ "spec": "CSS Scroll Snap 2", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/css-scroll-snap-2/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#index-defined-here" + } + }, + "#initial-scroll-target": { + "current": { + "number": "3.1.1", + "spec": "CSS Scroll Snap 2", + "text": "Initial scroll target", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#initial-scroll-target" + }, + "snapshot": { + "number": "3.1.1", + "spec": "CSS Scroll Snap 2", + "text": "Initial scroll target", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#initial-scroll-target" + } + }, + "#interface-globaleventhandlers": { + "current": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Extensions to the GlobalEventHandlers Interface Mixin", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#interface-globaleventhandlers" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Extensions to the GlobalEventHandlers Interface Mixin", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#interface-globaleventhandlers" + } + }, + "#interface-globaleventhandlers-idl": { + "current": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "IDL Definition", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#interface-globaleventhandlers-idl" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "IDL Definition", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#interface-globaleventhandlers-idl" } }, "#intro": { @@ -77,22 +173,26 @@ "spec": "CSS Scroll Snap 2", "text": "Introduction", "url": "https://drafts.csswg.org/css-scroll-snap-2/#intro" + }, + "snapshot": { + "number": "1", + "spec": "CSS Scroll Snap 2", + "text": "Introduction", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#intro" } }, - "#longhands": { + "#issues-index": { "current": { "number": "", "spec": "CSS Scroll Snap 2", - "text": "Appendix A: Longhands", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#longhands" - } - }, - "#nested-scrollers": { - "current": { - "number": "3.1.7", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#issues-index" + }, + "snapshot": { + "number": "", "spec": "CSS Scroll Snap 2", - "text": "Nested scrollers with scroll-start", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#nested-scrollers" + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#issues-index" } }, "#normative": { @@ -101,14 +201,26 @@ "spec": "CSS Scroll Snap 2", "text": "Normative References", "url": "https://drafts.csswg.org/css-scroll-snap-2/#normative" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Normative References", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#normative" } }, - "#place-content-behavior": { + "#privacy": { "current": { - "number": "3.1.4", + "number": "6", "spec": "CSS Scroll Snap 2", - "text": "Interaction with place-content", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#place-content-behavior" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#privacy" + }, + "snapshot": { + "number": "6", + "spec": "CSS Scroll Snap 2", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#privacy" } }, "#properties-on-the-scroll-container": { @@ -117,6 +229,12 @@ "spec": "CSS Scroll Snap 2", "text": "Setting Where Scroll Starts", "url": "https://drafts.csswg.org/css-scroll-snap-2/#properties-on-the-scroll-container" + }, + "snapshot": { + "number": "3", + "spec": "CSS Scroll Snap 2", + "text": "Setting Where Scroll Starts", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#properties-on-the-scroll-container" } }, "#property-index": { @@ -125,6 +243,12 @@ "spec": "CSS Scroll Snap 2", "text": "Property Index", "url": "https://drafts.csswg.org/css-scroll-snap-2/#property-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Property Index", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#property-index" } }, "#references": { @@ -133,62 +257,126 @@ "spec": "CSS Scroll Snap 2", "text": "References", "url": "https://drafts.csswg.org/css-scroll-snap-2/#references" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "References", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#references" + } + }, + "#scroll-start-fragment-navigation": { + "snapshot": { + "number": "3.1.4", + "spec": "CSS Scroll Snap 2", + "text": "Post-first layout arrivals", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scroll-start-fragment-navigation" } }, - "#rtl": { + "#scroll-start-target": { "current": { - "number": "3.1.9", + "number": "3.1", "spec": "CSS Scroll Snap 2", - "text": "Interaction with RTL and LTR", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#rtl" + "text": "The scroll-start-target property", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-target" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS Scroll Snap 2", + "text": "The scroll-start-target property", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scroll-start-target" } }, - "#scroll-snap-container-behavior": { + "#scroll-start-target-fragment-navigation": { "current": { - "number": "3.1.6", + "number": "3.1.4", "spec": "CSS Scroll Snap 2", - "text": "Interaction scroll-snap containers", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-snap-container-behavior" + "text": "Post-first layout arrivals", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-target-fragment-navigation" } }, - "#scroll-start": { + "#scroll-start-target-propdef": { "current": { - "number": "3.1", + "number": "3.1.2", + "spec": "CSS Scroll Snap 2", + "text": "scroll-start-target Property Definition", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-target-propdef" + }, + "snapshot": { + "number": "3.1.2", "spec": "CSS Scroll Snap 2", - "text": "The scroll-start property", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start" + "text": "scroll-start-target Property Definition", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scroll-start-target-propdef" } }, - "#scroll-start-longhands-logical": { + "#scroll-start-target-with-place-content": { "current": { - "number": "", + "number": "3.1.3", "spec": "CSS Scroll Snap 2", - "text": "Flow-relative Longhands for scroll-start", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-longhands-logical" + "text": "Interaction with place-content", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-target-with-place-content" + }, + "snapshot": { + "number": "3.1.3", + "spec": "CSS Scroll Snap 2", + "text": "Interaction with place-content", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scroll-start-target-with-place-content" } }, - "#scroll-start-longhands-physical": { + "#scrollsnapchange": { "current": { - "number": "", + "number": "5.1.2", "spec": "CSS Scroll Snap 2", - "text": "Physical Longhands for scroll-start", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-longhands-physical" + "text": "scrollsnapchange", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchange" + }, + "snapshot": { + "number": "5.1.2", + "spec": "CSS Scroll Snap 2", + "text": "scrollsnapchange", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchange" } }, - "#scroll-start-target": { + "#scrollsnapchange-and-scrollsnapchanging": { "current": { - "number": "3.2", + "number": "5.1", "spec": "CSS Scroll Snap 2", - "text": "The scroll-start-target property", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-target" + "text": "scrollsnapchange and scrollsnapchanging", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchange-and-scrollsnapchanging" + }, + "snapshot": { + "number": "5.1", + "spec": "CSS Scroll Snap 2", + "text": "scrollsnapchange and scrollsnapchanging", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchange-and-scrollsnapchanging" } }, - "#slow-page-load-behavior": { + "#scrollsnapchanging": { "current": { - "number": "3.1.2", + "number": "5.1.3", + "spec": "CSS Scroll Snap 2", + "text": "scrollsnapchanging", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchanging" + }, + "snapshot": { + "number": "5.1.3", + "spec": "CSS Scroll Snap 2", + "text": "scrollsnapchanging", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#scrollsnapchanging" + } + }, + "#security": { + "current": { + "number": "7", + "spec": "CSS Scroll Snap 2", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#security" + }, + "snapshot": { + "number": "7", "spec": "CSS Scroll Snap 2", - "text": "Slow page loading or document streaming behavior", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#slow-page-load-behavior" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#security" } }, "#snap-events": { @@ -197,14 +385,54 @@ "spec": "CSS Scroll Snap 2", "text": "Snap Events", "url": "https://drafts.csswg.org/css-scroll-snap-2/#snap-events" + }, + "snapshot": { + "number": "5", + "spec": "CSS Scroll Snap 2", + "text": "Snap Events", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#snap-events" } }, - "#snapchanged-and-snapchanging": { + "#snap-events-on-layout-changes": { "current": { - "number": "5.1", + "number": "5.1.4", + "spec": "CSS Scroll Snap 2", + "text": "Snap Events due to Layout Changes", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#snap-events-on-layout-changes" + }, + "snapshot": { + "number": "5.1.4", + "spec": "CSS Scroll Snap 2", + "text": "Snap Events due to Layout Changes", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#snap-events-on-layout-changes" + } + }, + "#snapTarget": { + "current": { + "number": "5.1.1", + "spec": "CSS Scroll Snap 2", + "text": "Snap Targets", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#snapTarget" + }, + "snapshot": { + "number": "5.1.1", "spec": "CSS Scroll Snap 2", - "text": "snapChanged and snapChanging", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#snapchanged-and-snapchanging" + "text": "Snap Targets", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#snapTarget" + } + }, + "#snapevent-interface": { + "current": { + "number": "5.2", + "spec": "CSS Scroll Snap 2", + "text": "SnapEvent interface", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#snapevent-interface" + }, + "snapshot": { + "number": "5.2", + "spec": "CSS Scroll Snap 2", + "text": "SnapEvent interface", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#snapevent-interface" } }, "#snapped": { @@ -213,6 +441,12 @@ "spec": "CSS Scroll Snap 2", "text": "The Snapped-element Pseudo-class: :snapped", "url": "https://drafts.csswg.org/css-scroll-snap-2/#snapped" + }, + "snapshot": { + "number": "4.1", + "spec": "CSS Scroll Snap 2", + "text": "The Snapped-element Pseudo-class: :snapped", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#snapped" } }, "#sotd": { @@ -221,6 +455,26 @@ "spec": "CSS Scroll Snap 2", "text": "Status of this document", "url": "https://drafts.csswg.org/css-scroll-snap-2/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#sotd" + } + }, + "#styling-snapped": { + "current": { + "number": "4", + "spec": "CSS Scroll Snap 2", + "text": "Styling Snapped Items", + "url": "https://drafts.csswg.org/css-scroll-snap-2/#styling-snapped" + }, + "snapshot": { + "number": "4", + "spec": "CSS Scroll Snap 2", + "text": "Styling Snapped Items", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#styling-snapped" } }, "#title": { @@ -229,6 +483,12 @@ "spec": "CSS Scroll Snap 2", "text": "CSS Scroll Snap Module Level 2", "url": "https://drafts.csswg.org/css-scroll-snap-2/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "CSS Scroll Snap Module Level 2", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#title" } }, "#toc": { @@ -237,22 +497,12 @@ "spec": "CSS Scroll Snap 2", "text": "Table of Contents", "url": "https://drafts.csswg.org/css-scroll-snap-2/#toc" - } - }, - "#todo": { - "current": { - "number": "4", - "spec": "CSS Scroll Snap 2", - "text": "Styling Snapped Items", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#todo" - } - }, - "#toggling-display-none": { - "current": { - "number": "3.1.8", + }, + "snapshot": { + "number": "", "spec": "CSS Scroll Snap 2", - "text": "Interaction when display is toggled", - "url": "https://drafts.csswg.org/css-scroll-snap-2/#toggling-display-none" + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#toc" } }, "#w3c-conform-future-proofing": { @@ -261,6 +511,12 @@ "spec": "CSS Scroll Snap 2", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-scroll-snap-2/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -269,6 +525,12 @@ "spec": "CSS Scroll Snap 2", "text": "Conformance", "url": "https://drafts.csswg.org/css-scroll-snap-2/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -277,6 +539,12 @@ "spec": "CSS Scroll Snap 2", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-scroll-snap-2/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -285,6 +553,12 @@ "spec": "CSS Scroll Snap 2", "text": "Document conventions", "url": "https://drafts.csswg.org/css-scroll-snap-2/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#w3c-conventions" } }, "#w3c-partial": { @@ -293,6 +567,12 @@ "spec": "CSS Scroll Snap 2", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-scroll-snap-2/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#w3c-partial" } }, "#w3c-testing": { @@ -301,6 +581,12 @@ "spec": "CSS Scroll Snap 2", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-scroll-snap-2/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Scroll Snap 2", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-scroll-snap-2/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-scrollbars-1.json b/bikeshed/spec-data/readonly/headings/headings-css-scrollbars-1.json index 2849715968..812dd2b0e1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-scrollbars-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-scrollbars-1.json @@ -15,43 +15,43 @@ }, "#accessibility-considerations": { "current": { - "number": "", + "number": "D", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix D. Considerations for accessibility", + "text": "Considerations for accessibility", "url": "https://drafts.csswg.org/css-scrollbars-1/#accessibility-considerations" }, "snapshot": { - "number": "", + "number": "D", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix D. Considerations for accessibility", + "text": "Considerations for accessibility", "url": "https://www.w3.org/TR/css-scrollbars-1/#accessibility-considerations" } }, "#acknowledgments": { "current": { - "number": "", + "number": "A", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix A. Acknowledgments", + "text": "Acknowledgments", "url": "https://drafts.csswg.org/css-scrollbars-1/#acknowledgments" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix A. Acknowledgments", + "text": "Acknowledgments", "url": "https://www.w3.org/TR/css-scrollbars-1/#acknowledgments" } }, "#changes": { "current": { - "number": "", + "number": "B", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-scrollbars-1/#changes" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-scrollbars-1/#changes" } }, @@ -97,6 +97,22 @@ "url": "https://www.w3.org/TR/css-scrollbars-1/#changes-since-2021-12-02" } }, + "#changes-since-2021-12-09": { + "current": { + "number": "", + "spec": "CSS Scrollbars Styling 1", + "text": "Changes since the 9 December 2021 Candidate Recommendation", + "url": "https://drafts.csswg.org/css-scrollbars-1/#changes-since-2021-12-09" + } + }, + "#color-compat": { + "current": { + "number": "2.1", + "spec": "CSS Scrollbars Styling 1", + "text": "Interaction with non-standard features", + "url": "https://drafts.csswg.org/css-scrollbars-1/#color-compat" + } + }, "#index": { "current": { "number": "", @@ -295,15 +311,15 @@ }, "#security-privacy-considerations": { "current": { - "number": "", + "number": "C", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix C. Considerations for Security and Privacy", + "text": "Security and Privacy", "url": "https://drafts.csswg.org/css-scrollbars-1/#security-privacy-considerations" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Scrollbars Styling 1", - "text": "Appendix C. Considerations for Security and Privacy", + "text": "Considerations for Security and Privacy", "url": "https://www.w3.org/TR/css-scrollbars-1/#security-privacy-considerations" } }, @@ -311,7 +327,7 @@ "current": { "number": "", "spec": "CSS Scrollbars Styling 1", - "text": "Self-review questionaire", + "text": "Self-review questionnaire", "url": "https://drafts.csswg.org/css-scrollbars-1/#security-privacy-self-review" }, "snapshot": { @@ -436,12 +452,6 @@ } }, "#w3c-cr-exit-criteria": { - "current": { - "number": "", - "spec": "CSS Scrollbars Styling 1", - "text": "CR exit criteria", - "url": "https://drafts.csswg.org/css-scrollbars-1/#w3c-cr-exit-criteria" - }, "snapshot": { "number": "", "spec": "CSS Scrollbars Styling 1", @@ -476,5 +486,13 @@ "text": "Non-experimental implementations", "url": "https://www.w3.org/TR/css-scrollbars-1/#w3c-testing" } + }, + "#width-compat": { + "current": { + "number": "3.1", + "spec": "CSS Scrollbars Styling 1", + "text": "Interaction with non-standard features", + "url": "https://drafts.csswg.org/css-scrollbars-1/#width-compat" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-shapes-1.json b/bikeshed/spec-data/readonly/headings/headings-css-shapes-1.json index 52efd8e0a9..cbeb45b648 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-shapes-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-shapes-1.json @@ -501,7 +501,7 @@ "snapshot": { "number": "", "spec": "CSS Shapes 1", - "text": "296 TestsCSS Shapes Module Level 1", + "text": "CSS Shapes Module Level 1", "url": "https://www.w3.org/TR/css-shapes-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-shapes-2.json b/bikeshed/spec-data/readonly/headings/headings-css-shapes-2.json index c5c8e6a031..a84c6354b3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-shapes-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-shapes-2.json @@ -87,6 +87,14 @@ "url": "https://drafts.csswg.org/css-shapes-2/#normative" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Shapes 2", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-shapes-2/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -111,6 +119,14 @@ "url": "https://drafts.csswg.org/css-shapes-2/#referencing-svg-shapes" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Shapes 2", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-shapes-2/#security" + } + }, "#shape-function": { "current": { "number": "4.1.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-size-adjust-1.json b/bikeshed/spec-data/readonly/headings/headings-css-size-adjust-1.json index b1447b6f5e..2a2c4ef67e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-size-adjust-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-size-adjust-1.json @@ -111,6 +111,14 @@ "url": "https://drafts.csswg.org/css-size-adjust-1/#placement" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Size Adjustment 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-size-adjust-1/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -127,6 +135,14 @@ "url": "https://drafts.csswg.org/css-size-adjust-1/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Size Adjustment 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-size-adjust-1/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-speech-1.json b/bikeshed/spec-data/readonly/headings/headings-css-speech-1.json index f143f5a961..0b8c9009f1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-speech-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-speech-1.json @@ -391,6 +391,14 @@ "url": "https://www.w3.org/TR/css-speech-1/#pause-props-pause-before-after" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Speech 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-speech-1/#privacy" + } + }, "#pronunciation": { "current": { "number": "", @@ -475,6 +483,14 @@ "url": "https://www.w3.org/TR/css-speech-1/#rest-props-rest-before-after" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Speech 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-speech-1/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-style-attr.json b/bikeshed/spec-data/readonly/headings/headings-css-style-attr.json index 6c3d2843c0..f197ccbede 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-style-attr.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-style-attr.json @@ -73,9 +73,9 @@ }, "#interpret": { "current": { - "number": "", + "number": "4", "spec": "CSS Style Attributes", - "text": "11 Tests engine test details4. Cascading and Interpretation", + "text": "Cascading and Interpretation", "url": "https://drafts.csswg.org/css-style-attr/#interpret" }, "snapshot": { @@ -121,6 +121,14 @@ "url": "https://www.w3.org/TR/css-style-attr/#normative-references" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Style Attributes", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-style-attr/#privacy" + } + }, "#references": { "current": { "number": "7", @@ -135,6 +143,14 @@ "url": "https://www.w3.org/TR/css-style-attr/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Style Attributes", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-style-attr/#security" + } + }, "#status": { "current": { "number": "", @@ -151,9 +167,9 @@ }, "#syntax": { "current": { - "number": "", + "number": "3", "spec": "CSS Style Attributes", - "text": "5 Tests engine test details3. Syntax and Parsing", + "text": "Syntax and Parsing", "url": "https://drafts.csswg.org/css-style-attr/#syntax" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-syntax-3.json b/bikeshed/spec-data/readonly/headings/headings-css-syntax-3.json index 7e8218b0d1..87bbb6607a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-syntax-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-syntax-3.json @@ -57,7 +57,7 @@ }, "#any-value": { "current": { - "number": "8.2", + "number": "7.2", "spec": "CSS Syntax 3", "text": "Defining Arbitrary Contents: the <declaration-value> and <any-value> productions", "url": "https://drafts.csswg.org/css-syntax-3/#any-value" @@ -71,7 +71,7 @@ }, "#at-rules": { "current": { - "number": "9.2", + "number": "8.2", "spec": "CSS Syntax 3", "text": "At-rules", "url": "https://drafts.csswg.org/css-syntax-3/#at-rules" @@ -83,6 +83,14 @@ "url": "https://www.w3.org/TR/css-syntax-3/#at-rules" } }, + "#block-contents": { + "current": { + "number": "7.1", + "spec": "CSS Syntax 3", + "text": "Defining Block Contents: the <block-contents>, <declaration-list>, <qualified-rule-list>, <declaration-rule-list>, and <rule-list> productions", + "url": "https://drafts.csswg.org/css-syntax-3/#block-contents" + } + }, "#changes": { "current": { "number": "", @@ -99,7 +107,7 @@ }, "#changes-CR-20140220": { "current": { - "number": "12.2", + "number": "12.3", "spec": "CSS Syntax 3", "text": "Changes from the 20 February 2014 Candidate Recommendation", "url": "https://drafts.csswg.org/css-syntax-3/#changes-CR-20140220" @@ -113,7 +121,7 @@ }, "#changes-CR-20190716": { "current": { - "number": "12.1", + "number": "12.2", "spec": "CSS Syntax 3", "text": "Changes from the 16 August 2019 Candidate Recommendation", "url": "https://drafts.csswg.org/css-syntax-3/#changes-CR-20190716" @@ -125,9 +133,17 @@ "url": "https://www.w3.org/TR/css-syntax-3/#changes-CR-20190716" } }, + "#changes-CR-20211224": { + "current": { + "number": "12.1", + "spec": "CSS Syntax 3", + "text": "Changes from the 24 December 2021 Candidate Recommendation Draft", + "url": "https://drafts.csswg.org/css-syntax-3/#changes-CR-20211224" + } + }, "#changes-WD-20130919": { "current": { - "number": "12.4", + "number": "12.5", "spec": "CSS Syntax 3", "text": "Changes from the 19 September 2013 Working Draft", "url": "https://drafts.csswg.org/css-syntax-3/#changes-WD-20130919" @@ -141,7 +157,7 @@ }, "#changes-WD-20131105": { "current": { - "number": "12.3", + "number": "12.4", "spec": "CSS Syntax 3", "text": "Changes from the 5 November 2013 Last Call Working Draft", "url": "https://drafts.csswg.org/css-syntax-3/#changes-WD-20131105" @@ -155,7 +171,7 @@ }, "#changes-css21": { "current": { - "number": "12.5", + "number": "12.6", "spec": "CSS Syntax 3", "text": "Changes from CSS 2.1 and Selectors Level 3", "url": "https://drafts.csswg.org/css-syntax-3/#changes-css21" @@ -169,7 +185,7 @@ }, "#charset-rule": { "current": { - "number": "9.3", + "number": "8.3", "spec": "CSS Syntax 3", "text": "The @charset Rule", "url": "https://drafts.csswg.org/css-syntax-3/#charset-rule" @@ -183,7 +199,7 @@ }, "#consume-at-rule": { "current": { - "number": "5.4.2", + "number": "5.5.2", "spec": "CSS Syntax 3", "text": "Consume an at-rule", "url": "https://drafts.csswg.org/css-syntax-3/#consume-at-rule" @@ -195,6 +211,22 @@ "url": "https://www.w3.org/TR/css-syntax-3/#consume-at-rule" } }, + "#consume-block": { + "current": { + "number": "5.5.4", + "spec": "CSS Syntax 3", + "text": "Consume a block", + "url": "https://drafts.csswg.org/css-syntax-3/#consume-block" + } + }, + "#consume-block-contents": { + "current": { + "number": "5.5.5", + "spec": "CSS Syntax 3", + "text": "Consume a block’s contents", + "url": "https://drafts.csswg.org/css-syntax-3/#consume-block-contents" + } + }, "#consume-comment": { "current": { "number": "4.3.2", @@ -211,7 +243,7 @@ }, "#consume-component-value": { "current": { - "number": "5.4.7", + "number": "5.5.8", "spec": "CSS Syntax 3", "text": "Consume a component value", "url": "https://drafts.csswg.org/css-syntax-3/#consume-component-value" @@ -225,7 +257,7 @@ }, "#consume-declaration": { "current": { - "number": "5.4.6", + "number": "5.5.6", "spec": "CSS Syntax 3", "text": "Consume a declaration", "url": "https://drafts.csswg.org/css-syntax-3/#consume-declaration" @@ -253,7 +285,7 @@ }, "#consume-function": { "current": { - "number": "5.4.9", + "number": "5.5.10", "spec": "CSS Syntax 3", "text": "Consume a function", "url": "https://drafts.csswg.org/css-syntax-3/#consume-function" @@ -279,13 +311,15 @@ "url": "https://www.w3.org/TR/css-syntax-3/#consume-ident-like-token" } }, - "#consume-list-of-declarations": { + "#consume-list-of-components": { "current": { - "number": "5.4.5", + "number": "5.5.7", "spec": "CSS Syntax 3", - "text": "Consume a list of declarations", - "url": "https://drafts.csswg.org/css-syntax-3/#consume-list-of-declarations" - }, + "text": "Consume a list of component values", + "url": "https://drafts.csswg.org/css-syntax-3/#consume-list-of-components" + } + }, + "#consume-list-of-declarations": { "snapshot": { "number": "5.4.5", "spec": "CSS Syntax 3", @@ -294,12 +328,6 @@ } }, "#consume-list-of-rules": { - "current": { - "number": "5.4.1", - "spec": "CSS Syntax 3", - "text": "Consume a list of rules", - "url": "https://drafts.csswg.org/css-syntax-3/#consume-list-of-rules" - }, "snapshot": { "number": "5.4.1", "spec": "CSS Syntax 3", @@ -309,7 +337,7 @@ }, "#consume-name": { "current": { - "number": "4.3.11", + "number": "4.3.12", "spec": "CSS Syntax 3", "text": "Consume an ident sequence", "url": "https://drafts.csswg.org/css-syntax-3/#consume-name" @@ -323,7 +351,7 @@ }, "#consume-number": { "current": { - "number": "4.3.12", + "number": "4.3.13", "spec": "CSS Syntax 3", "text": "Consume a number", "url": "https://drafts.csswg.org/css-syntax-3/#consume-number" @@ -351,7 +379,7 @@ }, "#consume-qualified-rule": { "current": { - "number": "5.4.3", + "number": "5.5.3", "spec": "CSS Syntax 3", "text": "Consume a qualified rule", "url": "https://drafts.csswg.org/css-syntax-3/#consume-qualified-rule" @@ -365,7 +393,7 @@ }, "#consume-remnants-of-bad-url": { "current": { - "number": "4.3.14", + "number": "4.3.15", "spec": "CSS Syntax 3", "text": "Consume the remnants of a bad url", "url": "https://drafts.csswg.org/css-syntax-3/#consume-remnants-of-bad-url" @@ -379,7 +407,7 @@ }, "#consume-simple-block": { "current": { - "number": "5.4.8", + "number": "5.5.9", "spec": "CSS Syntax 3", "text": "Consume a simple block", "url": "https://drafts.csswg.org/css-syntax-3/#consume-simple-block" @@ -406,12 +434,6 @@ } }, "#consume-style-block": { - "current": { - "number": "5.4.4", - "spec": "CSS Syntax 3", - "text": "Consume a style block’s contents", - "url": "https://drafts.csswg.org/css-syntax-3/#consume-style-block" - }, "snapshot": { "number": "5.4.4", "spec": "CSS Syntax 3", @@ -419,6 +441,14 @@ "url": "https://www.w3.org/TR/css-syntax-3/#consume-style-block" } }, + "#consume-stylesheet-contents": { + "current": { + "number": "5.5.1", + "spec": "CSS Syntax 3", + "text": "Consume a stylesheet’s contents", + "url": "https://drafts.csswg.org/css-syntax-3/#consume-stylesheet-contents" + } + }, "#consume-token": { "current": { "number": "4.3.1", @@ -433,6 +463,22 @@ "url": "https://www.w3.org/TR/css-syntax-3/#consume-token" } }, + "#consume-unicode-range-token": { + "current": { + "number": "4.3.14", + "spec": "CSS Syntax 3", + "text": "Consume a unicode-range token", + "url": "https://drafts.csswg.org/css-syntax-3/#consume-unicode-range-token" + } + }, + "#consume-unicode-range-value": { + "current": { + "number": "5.5.11", + "spec": "CSS Syntax 3", + "text": "Consume a unicode-range value", + "url": "https://drafts.csswg.org/css-syntax-3/#consume-unicode-range-value" + } + }, "#consume-url-token": { "current": { "number": "4.3.6", @@ -448,12 +494,6 @@ } }, "#convert-string-to-number": { - "current": { - "number": "4.3.13", - "spec": "CSS Syntax 3", - "text": "Convert a string to a number", - "url": "https://drafts.csswg.org/css-syntax-3/#convert-string-to-number" - }, "snapshot": { "number": "4.3.13", "spec": "CSS Syntax 3", @@ -463,7 +503,7 @@ }, "#css-stylesheets": { "current": { - "number": "9", + "number": "8", "spec": "CSS Syntax 3", "text": "CSS stylesheets", "url": "https://drafts.csswg.org/css-syntax-3/#css-stylesheets" @@ -475,13 +515,15 @@ "url": "https://www.w3.org/TR/css-syntax-3/#css-stylesheets" } }, - "#declaration-rule-list": { + "#css-tree": { "current": { - "number": "8.1", + "number": "5.2", "spec": "CSS Syntax 3", - "text": "Defining Block Contents: the <declaration-list>, <rule-list>, and <stylesheet> productions", - "url": "https://drafts.csswg.org/css-syntax-3/#declaration-rule-list" - }, + "text": "CSS Parsing Results", + "url": "https://drafts.csswg.org/css-syntax-3/#css-tree" + } + }, + "#declaration-rule-list": { "snapshot": { "number": "8.1", "spec": "CSS Syntax 3", @@ -629,11 +671,19 @@ "url": "https://www.w3.org/TR/css-syntax-3/#normative" } }, + "#parse-block-contents": { + "current": { + "number": "5.4.5", + "spec": "CSS Syntax 3", + "text": "Parse a block’s contents", + "url": "https://drafts.csswg.org/css-syntax-3/#parse-block-contents" + } + }, "#parse-comma-list": { "current": { - "number": "5.3.2", + "number": "5.4.2", "spec": "CSS Syntax 3", - "text": "Parse A Comma-Separated List According To A CSS Grammar", + "text": "Parse a comma-separated list according to a CSS grammar", "url": "https://drafts.csswg.org/css-syntax-3/#parse-comma-list" }, "snapshot": { @@ -645,7 +695,7 @@ }, "#parse-comma-separated-list-of-component-values": { "current": { - "number": "5.3.11", + "number": "5.4.10", "spec": "CSS Syntax 3", "text": "Parse a comma-separated list of component values", "url": "https://drafts.csswg.org/css-syntax-3/#parse-comma-separated-list-of-component-values" @@ -659,7 +709,7 @@ }, "#parse-component-value": { "current": { - "number": "5.3.9", + "number": "5.4.8", "spec": "CSS Syntax 3", "text": "Parse a component value", "url": "https://drafts.csswg.org/css-syntax-3/#parse-component-value" @@ -673,7 +723,7 @@ }, "#parse-declaration": { "current": { - "number": "5.3.6", + "number": "5.4.7", "spec": "CSS Syntax 3", "text": "Parse a declaration", "url": "https://drafts.csswg.org/css-syntax-3/#parse-declaration" @@ -687,7 +737,7 @@ }, "#parse-grammar": { "current": { - "number": "5.3.1", + "number": "5.4.1", "spec": "CSS Syntax 3", "text": "Parse something according to a CSS grammar", "url": "https://drafts.csswg.org/css-syntax-3/#parse-grammar" @@ -701,7 +751,7 @@ }, "#parse-list-of-component-values": { "current": { - "number": "5.3.10", + "number": "5.4.9", "spec": "CSS Syntax 3", "text": "Parse a list of component values", "url": "https://drafts.csswg.org/css-syntax-3/#parse-list-of-component-values" @@ -714,12 +764,6 @@ } }, "#parse-list-of-declarations": { - "current": { - "number": "5.3.8", - "spec": "CSS Syntax 3", - "text": "Parse a list of declarations", - "url": "https://drafts.csswg.org/css-syntax-3/#parse-list-of-declarations" - }, "snapshot": { "number": "5.3.8", "spec": "CSS Syntax 3", @@ -728,12 +772,6 @@ } }, "#parse-list-of-rules": { - "current": { - "number": "5.3.4", - "spec": "CSS Syntax 3", - "text": "Parse a list of rules", - "url": "https://drafts.csswg.org/css-syntax-3/#parse-list-of-rules" - }, "snapshot": { "number": "5.3.4", "spec": "CSS Syntax 3", @@ -743,7 +781,7 @@ }, "#parse-rule": { "current": { - "number": "5.3.5", + "number": "5.4.6", "spec": "CSS Syntax 3", "text": "Parse a rule", "url": "https://drafts.csswg.org/css-syntax-3/#parse-rule" @@ -756,12 +794,6 @@ } }, "#parse-style-blocks-contents": { - "current": { - "number": "5.3.7", - "spec": "CSS Syntax 3", - "text": "Parse a style block’s contents", - "url": "https://drafts.csswg.org/css-syntax-3/#parse-style-blocks-contents" - }, "snapshot": { "number": "5.3.7", "spec": "CSS Syntax 3", @@ -771,7 +803,7 @@ }, "#parse-stylesheet": { "current": { - "number": "5.3.3", + "number": "5.4.3", "spec": "CSS Syntax 3", "text": "Parse a stylesheet", "url": "https://drafts.csswg.org/css-syntax-3/#parse-stylesheet" @@ -783,9 +815,17 @@ "url": "https://www.w3.org/TR/css-syntax-3/#parse-stylesheet" } }, + "#parse-stylesheet-contents": { + "current": { + "number": "5.4.4", + "spec": "CSS Syntax 3", + "text": "Parse a stylesheet’s contents", + "url": "https://drafts.csswg.org/css-syntax-3/#parse-stylesheet-contents" + } + }, "#parser-algorithms": { "current": { - "number": "5.4", + "number": "5.5", "spec": "CSS Syntax 3", "text": "Parser Algorithms", "url": "https://drafts.csswg.org/css-syntax-3/#parser-algorithms" @@ -799,9 +839,9 @@ }, "#parser-definitions": { "current": { - "number": "5.2", + "number": "5.3", "spec": "CSS Syntax 3", - "text": "Definitions", + "text": "Token Streams", "url": "https://drafts.csswg.org/css-syntax-3/#parser-definitions" }, "snapshot": { @@ -827,7 +867,7 @@ }, "#parser-entry-points": { "current": { - "number": "5.3", + "number": "5.4", "spec": "CSS Syntax 3", "text": "Parser Entry Points", "url": "https://drafts.csswg.org/css-syntax-3/#parser-entry-points" @@ -882,12 +922,6 @@ } }, "#priv-sec": { - "current": { - "number": "", - "spec": "CSS Syntax 3", - "text": "11. Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-syntax-3/#priv-sec" - }, "snapshot": { "number": "", "spec": "CSS Syntax 3", @@ -895,6 +929,14 @@ "url": "https://www.w3.org/TR/css-syntax-3/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Syntax 3", + "text": "10. Privacy Considerations", + "url": "https://drafts.csswg.org/css-syntax-3/#privacy" + } + }, "#references": { "current": { "number": "", @@ -911,7 +953,7 @@ }, "#rule-defs": { "current": { - "number": "8", + "number": "7", "spec": "CSS Syntax 3", "text": "Defining Grammars for Rules and Other Values", "url": "https://drafts.csswg.org/css-syntax-3/#rule-defs" @@ -923,11 +965,19 @@ "url": "https://www.w3.org/TR/css-syntax-3/#rule-defs" } }, - "#serialization": { + "#security": { "current": { "number": "", "spec": "CSS Syntax 3", - "text": "10. Serialization", + "text": "11. Security Considerations", + "url": "https://drafts.csswg.org/css-syntax-3/#security" + } + }, + "#serialization": { + "current": { + "number": "9", + "spec": "CSS Syntax 3", + "text": "Serialization", "url": "https://drafts.csswg.org/css-syntax-3/#serialization" }, "snapshot": { @@ -939,7 +989,7 @@ }, "#serializing-anb": { "current": { - "number": "10.1", + "number": "9.1", "spec": "CSS Syntax 3", "text": "Serializing <an+b>", "url": "https://drafts.csswg.org/css-syntax-3/#serializing-anb" @@ -965,6 +1015,14 @@ "url": "https://www.w3.org/TR/css-syntax-3/#sotd" } }, + "#starts-a-unicode-range": { + "current": { + "number": "4.3.11", + "spec": "CSS Syntax 3", + "text": "Check if three code points would start a unicode-range", + "url": "https://drafts.csswg.org/css-syntax-3/#starts-a-unicode-range" + } + }, "#starts-with-a-number": { "current": { "number": "4.3.10", @@ -995,7 +1053,7 @@ }, "#style-rules": { "current": { - "number": "9.1", + "number": "8.1", "spec": "CSS Syntax 3", "text": "Style rules", "url": "https://drafts.csswg.org/css-syntax-3/#style-rules" @@ -1045,7 +1103,7 @@ "snapshot": { "number": "", "spec": "CSS Syntax 3", - "text": "No TestsCSS Syntax Module Level 3", + "text": "CSS Syntax Module Level 3", "url": "https://www.w3.org/TR/css-syntax-3/#title" } }, @@ -1134,12 +1192,6 @@ } }, "#urange": { - "current": { - "number": "7", - "spec": "CSS Syntax 3", - "text": "The Unicode-Range microsyntax", - "url": "https://drafts.csswg.org/css-syntax-3/#urange" - }, "snapshot": { "number": "7", "spec": "CSS Syntax 3", @@ -1148,12 +1200,6 @@ } }, "#urange-syntax": { - "current": { - "number": "7.1", - "spec": "CSS Syntax 3", - "text": "The <urange> type", - "url": "https://drafts.csswg.org/css-syntax-3/#urange-syntax" - }, "snapshot": { "number": "7.1", "spec": "CSS Syntax 3", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-text-3.json b/bikeshed/spec-data/readonly/headings/headings-css-text-3.json index 1d2f75b67c..d9c1b4b66c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-text-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-text-3.json @@ -71,15 +71,15 @@ }, "#character-properties": { "current": { - "number": "", + "number": "E", "spec": "CSS Text 3", - "text": "Appendix E: Characters and Properties", + "text": "Characters and Properties", "url": "https://drafts.csswg.org/css-text-3/#character-properties" }, "snapshot": { - "number": "", + "number": "E", "spec": "CSS Text 3", - "text": "Appendix E: Characters and Properties", + "text": "Characters and Properties", "url": "https://www.w3.org/TR/css-text-3/#character-properties" } }, @@ -113,15 +113,15 @@ }, "#default-stylesheet": { "current": { - "number": "", + "number": "C", "spec": "CSS Text 3", - "text": "Appendix C: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://drafts.csswg.org/css-text-3/#default-stylesheet" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Text 3", - "text": "Appendix C: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://www.w3.org/TR/css-text-3/#default-stylesheet" } }, @@ -449,15 +449,15 @@ }, "#order": { "current": { - "number": "", + "number": "A", "spec": "CSS Text 3", - "text": "Appendix A: Text Processing Order of Operations", + "text": "Text Processing Order of Operations", "url": "https://drafts.csswg.org/css-text-3/#order" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Text 3", - "text": "Appendix A: Text Processing Order of Operations", + "text": "Text Processing Order of Operations", "url": "https://www.w3.org/TR/css-text-3/#order" } }, @@ -491,15 +491,15 @@ }, "#plaintext": { "current": { - "number": "", + "number": "B", "spec": "CSS Text 3", - "text": "Appendix B: Conversion to Plaintext", + "text": "Conversion to Plaintext", "url": "https://drafts.csswg.org/css-text-3/#plaintext" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Text 3", - "text": "Appendix B: Conversion to Plaintext", + "text": "Conversion to Plaintext", "url": "https://www.w3.org/TR/css-text-3/#plaintext" } }, @@ -561,29 +561,29 @@ }, "#script-groups": { "current": { - "number": "", + "number": "D", "spec": "CSS Text 3", - "text": "Appendix D: Scripts and Spacing", + "text": "Scripts and Spacing", "url": "https://drafts.csswg.org/css-text-3/#script-groups" }, "snapshot": { - "number": "", + "number": "D", "spec": "CSS Text 3", - "text": "Appendix D: Scripts and Spacing", + "text": "Scripts and Spacing", "url": "https://www.w3.org/TR/css-text-3/#script-groups" } }, "#script-tagging": { "current": { - "number": "", + "number": "F", "spec": "CSS Text 3", - "text": "Appendix F: Identifying the Content Writing System", + "text": "Identifying the Content Writing System", "url": "https://drafts.csswg.org/css-text-3/#script-tagging" }, "snapshot": { - "number": "", + "number": "F", "spec": "CSS Text 3", - "text": "Appendix F: Identifying the Content Writing System", + "text": "Identifying the Content Writing System", "url": "https://www.w3.org/TR/css-text-3/#script-tagging" } }, @@ -603,15 +603,15 @@ }, "#small-kana": { "current": { - "number": "", + "number": "G", "spec": "CSS Text 3", - "text": "Appendix G: Small Kana Mappings", + "text": "Small Kana Mappings", "url": "https://drafts.csswg.org/css-text-3/#small-kana" }, "snapshot": { - "number": "", + "number": "G", "spec": "CSS Text 3", - "text": "Appendix G: Small Kana Mappings", + "text": "Small Kana Mappings", "url": "https://www.w3.org/TR/css-text-3/#small-kana" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-text-4.json b/bikeshed/spec-data/readonly/headings/headings-css-text-4.json index 3ced595ea3..b9971f7391 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-text-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-text-4.json @@ -27,6 +27,20 @@ "url": "https://www.w3.org/TR/css-text-4/#acknowledgements" } }, + "#analytical-word-breaking": { + "current": { + "number": "6.1.1", + "spec": "CSS Text 4", + "text": "Analytical Word Breaking", + "url": "https://drafts.csswg.org/css-text-4/#analytical-word-breaking" + }, + "snapshot": { + "number": "6.1.1", + "spec": "CSS Text 4", + "text": "Analytical Word Breaking", + "url": "https://www.w3.org/TR/css-text-4/#analytical-word-breaking" + } + }, "#bidi-linebox": { "current": { "number": "9.3", @@ -49,7 +63,7 @@ "url": "https://drafts.csswg.org/css-text-4/#boundary-shaping" }, "snapshot": { - "number": "8.5", + "number": "8.7", "spec": "CSS Text 4", "text": "Shaping Across Element Boundaries", "url": "https://www.w3.org/TR/css-text-4/#boundary-shaping" @@ -99,15 +113,15 @@ }, "#character-properties": { "current": { - "number": "", + "number": "E", "spec": "CSS Text 4", - "text": "Appendix E: Characters and Properties", + "text": "Characters and Properties", "url": "https://drafts.csswg.org/css-text-4/#character-properties" }, "snapshot": { - "number": "", + "number": "E", "spec": "CSS Text 4", - "text": "Appendix E: Characters and Properties", + "text": "Characters and Properties", "url": "https://www.w3.org/TR/css-text-4/#character-properties" } }, @@ -141,15 +155,15 @@ }, "#default-stylesheet": { "current": { - "number": "", + "number": "C", "spec": "CSS Text 4", - "text": "Appendix C: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://drafts.csswg.org/css-text-4/#default-stylesheet" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Text 4", - "text": "Appendix C: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://www.w3.org/TR/css-text-4/#default-stylesheet" } }, @@ -169,13 +183,13 @@ }, "#example-avoid": { "current": { - "number": "6.3.1", + "number": "5.2.1", "spec": "CSS Text 4", "text": "Example of using 'wrap-inside: avoid' in presenting a footer", "url": "https://drafts.csswg.org/css-text-4/#example-avoid" }, "snapshot": { - "number": "6.3.1", + "number": "5.2.1", "spec": "CSS Text 4", "text": "Example of using 'wrap-inside: avoid' in presenting a footer", "url": "https://www.w3.org/TR/css-text-4/#example-avoid" @@ -195,6 +209,20 @@ "url": "https://www.w3.org/TR/css-text-4/#expanding-text" } }, + "#fallback-breaking": { + "current": { + "number": "6.1.1.3", + "spec": "CSS Text 4", + "text": "Fallback Breaking", + "url": "https://drafts.csswg.org/css-text-4/#fallback-breaking" + }, + "snapshot": { + "number": "6.1.1.3", + "spec": "CSS Text 4", + "text": "Fallback Breaking", + "url": "https://www.w3.org/TR/css-text-4/#fallback-breaking" + } + }, "#fullwidth-collapsing": { "current": { "number": "8.5.1", @@ -203,7 +231,7 @@ "url": "https://drafts.csswg.org/css-text-4/#fullwidth-collapsing" }, "snapshot": { - "number": "8.4.2", + "number": "8.5.1", "spec": "CSS Text 4", "text": "Fullwidth Punctuation Collapsing", "url": "https://www.w3.org/TR/css-text-4/#fullwidth-collapsing" @@ -239,13 +267,13 @@ }, "#hyphenate-char-limits": { "current": { - "number": "5.4.4", + "number": "6.3.4", "spec": "CSS Text 4", "text": "Hyphenation Character Limits: the hyphenate-limit-chars property", "url": "https://drafts.csswg.org/css-text-4/#hyphenate-char-limits" }, "snapshot": { - "number": "5.4.4", + "number": "6.3.4", "spec": "CSS Text 4", "text": "Hyphenation Character Limits: the hyphenate-limit-chars property", "url": "https://www.w3.org/TR/css-text-4/#hyphenate-char-limits" @@ -253,13 +281,13 @@ }, "#hyphenate-character": { "current": { - "number": "5.4.2", + "number": "6.3.2", "spec": "CSS Text 4", "text": "Hyphens: the hyphenate-character property", "url": "https://drafts.csswg.org/css-text-4/#hyphenate-character" }, "snapshot": { - "number": "5.4.2", + "number": "6.3.2", "spec": "CSS Text 4", "text": "Hyphens: the hyphenate-character property", "url": "https://www.w3.org/TR/css-text-4/#hyphenate-character" @@ -267,13 +295,13 @@ }, "#hyphenate-line-limits": { "current": { - "number": "5.4.5", + "number": "6.3.5", "spec": "CSS Text 4", "text": "Hyphenation Line Limits: the hyphenate-limit-lines and hyphenate-limit-last properties", "url": "https://drafts.csswg.org/css-text-4/#hyphenate-line-limits" }, "snapshot": { - "number": "5.4.5", + "number": "6.3.5", "spec": "CSS Text 4", "text": "Hyphenation Line Limits: the hyphenate-limit-lines and hyphenate-limit-last properties", "url": "https://www.w3.org/TR/css-text-4/#hyphenate-line-limits" @@ -281,13 +309,13 @@ }, "#hyphenate-size-limits": { "current": { - "number": "5.4.3", + "number": "6.3.3", "spec": "CSS Text 4", "text": "Hyphenation Size Limit: the hyphenate-limit-zone property", "url": "https://drafts.csswg.org/css-text-4/#hyphenate-size-limits" }, "snapshot": { - "number": "5.4.3", + "number": "6.3.3", "spec": "CSS Text 4", "text": "Hyphenation Size Limit: the hyphenate-limit-zone property", "url": "https://www.w3.org/TR/css-text-4/#hyphenate-size-limits" @@ -295,13 +323,13 @@ }, "#hyphenation": { "current": { - "number": "5.4", + "number": "6.3", "spec": "CSS Text 4", "text": "Hyphenation: Morphological Breaking Within Words", "url": "https://drafts.csswg.org/css-text-4/#hyphenation" }, "snapshot": { - "number": "5.4", + "number": "6.3", "spec": "CSS Text 4", "text": "Hyphenation: Morphological Breaking Within Words", "url": "https://www.w3.org/TR/css-text-4/#hyphenation" @@ -309,13 +337,13 @@ }, "#hyphens-property": { "current": { - "number": "5.4.1", + "number": "6.3.1", "spec": "CSS Text 4", "text": "Hyphenation Control: the hyphens property", "url": "https://drafts.csswg.org/css-text-4/#hyphens-property" }, "snapshot": { - "number": "5.4.1", + "number": "6.3.1", "spec": "CSS Text 4", "text": "Hyphenation Control: the hyphens property", "url": "https://www.w3.org/TR/css-text-4/#hyphens-property" @@ -427,7 +455,7 @@ "url": "https://drafts.csswg.org/css-text-4/#japanese-start-edges" }, "snapshot": { - "number": "8.4.4", + "number": "8.5.3", "spec": "CSS Text 4", "text": "Japanese Paragraph-start Conventions in CSS", "url": "https://www.w3.org/TR/css-text-4/#japanese-start-edges" @@ -517,20 +545,6 @@ "url": "https://www.w3.org/TR/css-text-4/#languages" } }, - "#last-line-limits": { - "current": { - "number": "6.5", - "spec": "CSS Text 4", - "text": "Last Line Minimum Length", - "url": "https://drafts.csswg.org/css-text-4/#last-line-limits" - }, - "snapshot": { - "number": "6.5", - "spec": "CSS Text 4", - "text": "Last Line Minimum Length", - "url": "https://www.w3.org/TR/css-text-4/#last-line-limits" - } - }, "#letter-spacing-property": { "current": { "number": "8.2", @@ -545,15 +559,29 @@ "url": "https://www.w3.org/TR/css-text-4/#letter-spacing-property" } }, + "#lexical-breaking": { + "current": { + "number": "6.1.1.1", + "spec": "CSS Text 4", + "text": "Lexical Word Breaking", + "url": "https://drafts.csswg.org/css-text-4/#lexical-breaking" + }, + "snapshot": { + "number": "6.1.1.1", + "spec": "CSS Text 4", + "text": "Lexical Word Breaking", + "url": "https://www.w3.org/TR/css-text-4/#lexical-breaking" + } + }, "#line-break-details": { "current": { - "number": "5.1", + "number": "5.6", "spec": "CSS Text 4", "text": "Line Breaking Details", "url": "https://drafts.csswg.org/css-text-4/#line-break-details" }, "snapshot": { - "number": "5.1", + "number": "5.6", "spec": "CSS Text 4", "text": "Line Breaking Details", "url": "https://www.w3.org/TR/css-text-4/#line-break-details" @@ -561,13 +589,13 @@ }, "#line-break-property": { "current": { - "number": "5.3", + "number": "6.2", "spec": "CSS Text 4", "text": "Line Breaking Strictness: the line-break property", "url": "https://drafts.csswg.org/css-text-4/#line-break-property" }, "snapshot": { - "number": "5.3", + "number": "6.2", "spec": "CSS Text 4", "text": "Line Breaking Strictness: the line-break property", "url": "https://www.w3.org/TR/css-text-4/#line-break-property" @@ -589,13 +617,13 @@ }, "#line-breaking": { "current": { - "number": "5", + "number": "6", "spec": "CSS Text 4", "text": "Line Breaking and Word Boundaries", "url": "https://drafts.csswg.org/css-text-4/#line-breaking" }, "snapshot": { - "number": "5", + "number": "6", "spec": "CSS Text 4", "text": "Line Breaking and Word Boundaries", "url": "https://www.w3.org/TR/css-text-4/#line-breaking" @@ -631,32 +659,60 @@ }, "#order": { "current": { - "number": "", + "number": "A", "spec": "CSS Text 4", - "text": "Appendix A: Text Processing Order of Operations", + "text": "Text Processing Order of Operations", "url": "https://drafts.csswg.org/css-text-4/#order" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Text 4", - "text": "Appendix A: Text Processing Order of Operations", + "text": "Text Processing Order of Operations", "url": "https://www.w3.org/TR/css-text-4/#order" } }, + "#orthographic-breaking": { + "current": { + "number": "6.1.1.2", + "spec": "CSS Text 4", + "text": "Orthographic Breaking", + "url": "https://drafts.csswg.org/css-text-4/#orthographic-breaking" + }, + "snapshot": { + "number": "6.1.1.2", + "spec": "CSS Text 4", + "text": "Orthographic Breaking", + "url": "https://www.w3.org/TR/css-text-4/#orthographic-breaking" + } + }, "#overflow-wrap-property": { "current": { - "number": "5.5", + "number": "6.4", "spec": "CSS Text 4", "text": "Overflow Wrapping: the overflow-wrap/word-wrap property", "url": "https://drafts.csswg.org/css-text-4/#overflow-wrap-property" }, "snapshot": { - "number": "5.5", + "number": "6.4", "spec": "CSS Text 4", "text": "Overflow Wrapping: the overflow-wrap/word-wrap property", "url": "https://www.w3.org/TR/css-text-4/#overflow-wrap-property" } }, + "#phrase-pref": { + "current": { + "number": "6.1.2", + "spec": "CSS Text 4", + "text": "Expressing User Preferences for Phrase-based Line Breaking", + "url": "https://drafts.csswg.org/css-text-4/#phrase-pref" + }, + "snapshot": { + "number": "6.1.2", + "spec": "CSS Text 4", + "text": "Expressing User Preferences for Phrase-based Line Breaking", + "url": "https://www.w3.org/TR/css-text-4/#phrase-pref" + } + }, "#placement": { "current": { "number": "1.1", @@ -673,30 +729,30 @@ }, "#plaintext": { "current": { - "number": "", + "number": "B", "spec": "CSS Text 4", - "text": "Appendix B: Conversion to Plaintext", + "text": "Conversion to Plaintext", "url": "https://drafts.csswg.org/css-text-4/#plaintext" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Text 4", - "text": "Appendix B: Conversion to Plaintext", + "text": "Conversion to Plaintext", "url": "https://www.w3.org/TR/css-text-4/#plaintext" } }, - "#priv-sec": { + "#priv": { "current": { "number": "", "spec": "CSS Text 4", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-text-4/#priv-sec" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-text-4/#priv" }, "snapshot": { "number": "", "spec": "CSS Text 4", - "text": "Privacy and Security Considerations", - "url": "https://www.w3.org/TR/css-text-4/#priv-sec" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-text-4/#priv" } }, "#property-index": { @@ -729,43 +785,57 @@ }, "#script-groups": { "current": { - "number": "", + "number": "D", "spec": "CSS Text 4", - "text": "Appendix D: Scripts and Spacing", + "text": "Scripts and Spacing", "url": "https://drafts.csswg.org/css-text-4/#script-groups" }, "snapshot": { - "number": "", + "number": "D", "spec": "CSS Text 4", - "text": "Appendix D: Scripts and Spacing", + "text": "Scripts and Spacing", "url": "https://www.w3.org/TR/css-text-4/#script-groups" } }, "#script-tagging": { "current": { - "number": "", + "number": "F", "spec": "CSS Text 4", - "text": "Appendix F: Identifying the Content Writing System", + "text": "Identifying the Content Writing System", "url": "https://drafts.csswg.org/css-text-4/#script-tagging" }, "snapshot": { - "number": "", + "number": "F", "spec": "CSS Text 4", - "text": "Appendix F: Identifying the Content Writing System", + "text": "Identifying the Content Writing System", "url": "https://www.w3.org/TR/css-text-4/#script-tagging" } }, - "#small-kana": { + "#sec": { "current": { "number": "", "spec": "CSS Text 4", - "text": "Appendix G: Small Kana Mappings", - "url": "https://drafts.csswg.org/css-text-4/#small-kana" + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-text-4/#sec" }, "snapshot": { "number": "", "spec": "CSS Text 4", - "text": "Appendix G: Small Kana Mappings", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-text-4/#sec" + } + }, + "#small-kana": { + "current": { + "number": "G", + "spec": "CSS Text 4", + "text": "Small Kana Mappings", + "url": "https://drafts.csswg.org/css-text-4/#small-kana" + }, + "snapshot": { + "number": "G", + "spec": "CSS Text 4", + "text": "Small Kana Mappings", "url": "https://www.w3.org/TR/css-text-4/#small-kana" } }, @@ -859,6 +929,12 @@ "spec": "CSS Text 4", "text": "Automatic Contextual Spacing: the text-autospace property", "url": "https://drafts.csswg.org/css-text-4/#text-autospace-property" + }, + "snapshot": { + "number": "8.4", + "spec": "CSS Text 4", + "text": "Automatic Contextual Spacing: the text-autospace property", + "url": "https://www.w3.org/TR/css-text-4/#text-autospace-property" } }, "#text-encoding": { @@ -925,7 +1001,7 @@ "url": "https://drafts.csswg.org/css-text-4/#text-spacing-classes" }, "snapshot": { - "number": "8.4.3", + "number": "8.5.2", "spec": "CSS Text 4", "text": "Text Spacing Character Classes", "url": "https://www.w3.org/TR/css-text-4/#text-spacing-classes" @@ -939,9 +1015,9 @@ "url": "https://drafts.csswg.org/css-text-4/#text-spacing-property" }, "snapshot": { - "number": "8.4", + "number": "8.6", "spec": "CSS Text 4", - "text": "Character Class Spacing: the text-spacing property", + "text": "Character Class Spacing Shorthand: the text-spacing property", "url": "https://www.w3.org/TR/css-text-4/#text-spacing-property" } }, @@ -951,6 +1027,12 @@ "spec": "CSS Text 4", "text": "CJK Punctuation Spacing: the text-spacing-trim property", "url": "https://drafts.csswg.org/css-text-4/#text-spacing-trim-property" + }, + "snapshot": { + "number": "8.5", + "spec": "CSS Text 4", + "text": "CJK Punctuation Spacing: the text-spacing-trim property", + "url": "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property" } }, "#text-transform-mapping": { @@ -969,13 +1051,13 @@ }, "#text-transform-order": { "current": { - "number": "2.1.2", + "number": "2.3", "spec": "CSS Text 4", "text": "Order of Operations", "url": "https://drafts.csswg.org/css-text-4/#text-transform-order" }, "snapshot": { - "number": "2.1.2", + "number": "2.3", "spec": "CSS Text 4", "text": "Order of Operations", "url": "https://www.w3.org/TR/css-text-4/#text-transform-order" @@ -995,29 +1077,57 @@ "url": "https://www.w3.org/TR/css-text-4/#text-transform-property" } }, - "#text-wrap": { + "#text-wrap-mode": { "current": { - "number": "6.1", + "number": "5.1", "spec": "CSS Text 4", - "text": "Text Wrap Settings: the text-wrap property", - "url": "https://drafts.csswg.org/css-text-4/#text-wrap" + "text": "Deciding Whether to Wrap: the text-wrap-mode property", + "url": "https://drafts.csswg.org/css-text-4/#text-wrap-mode" }, "snapshot": { - "number": "6.1", + "number": "5.1", "spec": "CSS Text 4", - "text": "Text Wrap Settings: the text-wrap property", - "url": "https://www.w3.org/TR/css-text-4/#text-wrap" + "text": "Deciding Whether to Wrap: the text-wrap-mode property", + "url": "https://www.w3.org/TR/css-text-4/#text-wrap-mode" + } + }, + "#text-wrap-shorthand": { + "current": { + "number": "5.5", + "spec": "CSS Text 4", + "text": "Joint Wrapping Control: the text-wrap shorthand property", + "url": "https://drafts.csswg.org/css-text-4/#text-wrap-shorthand" + }, + "snapshot": { + "number": "5.5", + "spec": "CSS Text 4", + "text": "Joint Wrapping Control: the text-wrap shorthand property", + "url": "https://www.w3.org/TR/css-text-4/#text-wrap-shorthand" + } + }, + "#text-wrap-style": { + "current": { + "number": "5.4", + "spec": "CSS Text 4", + "text": "Selecting How to Wrap: the text-wrap-style property", + "url": "https://drafts.csswg.org/css-text-4/#text-wrap-style" + }, + "snapshot": { + "number": "5.4", + "spec": "CSS Text 4", + "text": "Selecting How to Wrap: the text-wrap-style property", + "url": "https://www.w3.org/TR/css-text-4/#text-wrap-style" } }, "#text-wrapping": { "current": { - "number": "6", + "number": "5", "spec": "CSS Text 4", "text": "Text Wrapping", "url": "https://drafts.csswg.org/css-text-4/#text-wrapping" }, "snapshot": { - "number": "6", + "number": "5", "spec": "CSS Text 4", "text": "Text Wrapping", "url": "https://www.w3.org/TR/css-text-4/#text-wrapping" @@ -1167,13 +1277,13 @@ "current": { "number": "4.1", "spec": "CSS Text 4", - "text": "White Space Collapsing: the text-space-collapse property", + "text": "White Space Collapsing: the white-space-collapse property", "url": "https://drafts.csswg.org/css-text-4/#white-space-collapsing" }, "snapshot": { "number": "4.1", "spec": "CSS Text 4", - "text": "White Space Collapsing: the text-space-collapse property", + "text": "White Space Collapsing: the white-space-collapse property", "url": "https://www.w3.org/TR/css-text-4/#white-space-collapsing" } }, @@ -1251,84 +1361,56 @@ "current": { "number": "4.2", "spec": "CSS Text 4", - "text": "White Space Trimming: the text-space-trim property", + "text": "White Space Trimming: the white-space-trim property", "url": "https://drafts.csswg.org/css-text-4/#white-space-trim" }, "snapshot": { "number": "4.2", "spec": "CSS Text 4", - "text": "White Space Trimming: the text-space-trim property", + "text": "White Space Trimming: the white-space-trim property", "url": "https://www.w3.org/TR/css-text-4/#white-space-trim" } }, - "#word-boundaries": { - "current": { - "number": "2.2", - "spec": "CSS Text 4", - "text": "Word Boundaries", - "url": "https://drafts.csswg.org/css-text-4/#word-boundaries" - }, - "snapshot": { - "number": "2.2", - "spec": "CSS Text 4", - "text": "Word Boundaries", - "url": "https://www.w3.org/TR/css-text-4/#word-boundaries" - } - }, - "#word-boundary-detection": { - "current": { - "number": "2.2.1", - "spec": "CSS Text 4", - "text": "Detecting Word Boundaries: the word-boundary-detection property", - "url": "https://drafts.csswg.org/css-text-4/#word-boundary-detection" - }, - "snapshot": { - "number": "2.2.1", - "spec": "CSS Text 4", - "text": "Detecting Word Boundaries: the word-boundary-detection property", - "url": "https://www.w3.org/TR/css-text-4/#word-boundary-detection" - } - }, - "#word-boundary-expansion": { + "#word-break-property": { "current": { - "number": "2.2.2", + "number": "6.1", "spec": "CSS Text 4", - "text": "Making Word Boundaries Visible: the word-boundary-expansion property", - "url": "https://drafts.csswg.org/css-text-4/#word-boundary-expansion" + "text": "Breaking Rules for Letters: the word-break property", + "url": "https://drafts.csswg.org/css-text-4/#word-break-property" }, "snapshot": { - "number": "2.2.2", + "number": "6.1", "spec": "CSS Text 4", - "text": "Making Word Boundaries Visible: the word-boundary-expansion property", - "url": "https://www.w3.org/TR/css-text-4/#word-boundary-expansion" + "text": "Breaking Rules for Letters: the word-break property", + "url": "https://www.w3.org/TR/css-text-4/#word-break-property" } }, - "#word-break-property": { + "#word-phrase-detection": { "current": { - "number": "5.2", + "number": "H", "spec": "CSS Text 4", - "text": "Breaking Rules for Letters: the word-break property", - "url": "https://drafts.csswg.org/css-text-4/#word-break-property" + "text": "Word and Phrase Detection", + "url": "https://drafts.csswg.org/css-text-4/#word-phrase-detection" }, "snapshot": { - "number": "5.2", + "number": "H", "spec": "CSS Text 4", - "text": "Breaking Rules for Letters: the word-break property", - "url": "https://www.w3.org/TR/css-text-4/#word-break-property" + "text": "Word and Phrase Detection", + "url": "https://www.w3.org/TR/css-text-4/#word-phrase-detection" } }, - "#word-break-shaping": { + "#word-space-transform": { "current": { - "number": "6.4", + "number": "2.2", "spec": "CSS Text 4", - "text": "Shaping Across Intra-word Breaks", - "url": "https://drafts.csswg.org/css-text-4/#word-break-shaping" + "text": "Expanding Between Words: the word-space-transform property", + "url": "https://drafts.csswg.org/css-text-4/#word-space-transform" }, "snapshot": { - "number": "6.4", + "number": "2.2", "spec": "CSS Text 4", - "text": "Shaping Across Intra-word Breaks", - "url": "https://www.w3.org/TR/css-text-4/#word-break-shaping" + "text": "Expanding Between Words: the word-space-transform property", + "url": "https://www.w3.org/TR/css-text-4/#word-space-transform" } }, "#word-spacing-property": { @@ -1347,13 +1429,13 @@ }, "#wrap-before": { "current": { - "number": "6.2", + "number": "5.3", "spec": "CSS Text 4", "text": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", "url": "https://drafts.csswg.org/css-text-4/#wrap-before" }, "snapshot": { - "number": "6.2", + "number": "5.3", "spec": "CSS Text 4", "text": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", "url": "https://www.w3.org/TR/css-text-4/#wrap-before" @@ -1361,13 +1443,13 @@ }, "#wrap-inside": { "current": { - "number": "6.3", + "number": "5.2", "spec": "CSS Text 4", "text": "Controlling Breaks Within Boxes: the wrap-inside property", "url": "https://drafts.csswg.org/css-text-4/#wrap-inside" }, "snapshot": { - "number": "6.3", + "number": "5.2", "spec": "CSS Text 4", "text": "Controlling Breaks Within Boxes: the wrap-inside property", "url": "https://www.w3.org/TR/css-text-4/#wrap-inside" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-text-decor-3.json b/bikeshed/spec-data/readonly/headings/headings-css-text-decor-3.json index 3fb9f61db8..7bce03d268 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-text-decor-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-text-decor-3.json @@ -15,29 +15,29 @@ }, "#acknowledgements": { "current": { - "number": "", + "number": "A", "spec": "CSS Text Decoration 3", - "text": "Appendix A: Acknowledgements", + "text": "Acknowledgements", "url": "https://drafts.csswg.org/css-text-decor-3/#acknowledgements" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Text Decoration 3", - "text": "Appendix A: Acknowledgements", + "text": "Acknowledgements", "url": "https://www.w3.org/TR/css-text-decor-3/#acknowledgements" } }, "#changes": { "current": { - "number": "", + "number": "C", "spec": "CSS Text Decoration 3", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-text-decor-3/#changes" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Text Decoration 3", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-text-decor-3/#changes" } }, @@ -85,15 +85,15 @@ }, "#default-stylesheet": { "current": { - "number": "", + "number": "B", "spec": "CSS Text Decoration 3", - "text": "Appendix B: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://drafts.csswg.org/css-text-decor-3/#default-stylesheet" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Text Decoration 3", - "text": "Appendix B: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://www.w3.org/TR/css-text-decor-3/#default-stylesheet" } }, @@ -279,6 +279,14 @@ "url": "https://www.w3.org/TR/css-text-decor-3/#placement" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Text Decoration 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-text-decor-3/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -307,6 +315,14 @@ "url": "https://www.w3.org/TR/css-text-decor-3/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Text Decoration 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-text-decor-3/#security" + } + }, "#sotd": { "current": { "number": "", @@ -485,7 +501,7 @@ "snapshot": { "number": "", "spec": "CSS Text Decoration 3", - "text": "255 TestsCSS Text Decoration Module Level 3", + "text": "CSS Text Decoration Module Level 3", "url": "https://www.w3.org/TR/css-text-decor-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-text-decor-4.json b/bikeshed/spec-data/readonly/headings/headings-css-text-decor-4.json index d31446614b..89a6a6e2e8 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-text-decor-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-text-decor-4.json @@ -15,15 +15,15 @@ }, "#acknowledgements": { "current": { - "number": "", + "number": "A", "spec": "CSS Text Decoration 4", - "text": "Appendix A: Acknowledgements", + "text": "Acknowledgements", "url": "https://drafts.csswg.org/css-text-decor-4/#acknowledgements" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Text Decoration 4", - "text": "Appendix A: Acknowledgements", + "text": "Acknowledgements", "url": "https://www.w3.org/TR/css-text-decor-4/#acknowledgements" } }, @@ -43,15 +43,15 @@ }, "#changes": { "current": { - "number": "", + "number": "C", "spec": "CSS Text Decoration 4", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-text-decor-4/#changes" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Text Decoration 4", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-text-decor-4/#changes" } }, @@ -73,21 +73,21 @@ "current": { "number": "", "spec": "CSS Text Decoration 4", - "text": "Changes since the r May 2022 Working Draft", + "text": "Changes since the 4 May 2022 Working Draft", "url": "https://drafts.csswg.org/css-text-decor-4/#changes-2022" } }, "#default-stylesheet": { "current": { - "number": "", + "number": "B", "spec": "CSS Text Decoration 4", - "text": "Appendix B: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://drafts.csswg.org/css-text-decor-4/#default-stylesheet" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Text Decoration 4", - "text": "Appendix B: Default UA Stylesheet", + "text": "Default UA Stylesheet", "url": "https://www.w3.org/TR/css-text-decor-4/#default-stylesheet" } }, @@ -330,12 +330,6 @@ } }, "#priv-sec": { - "current": { - "number": "6", - "spec": "CSS Text Decoration 4", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/css-text-decor-4/#priv-sec" - }, "snapshot": { "number": "6", "spec": "CSS Text Decoration 4", @@ -343,6 +337,14 @@ "url": "https://www.w3.org/TR/css-text-decor-4/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Text Decoration 4", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-text-decor-4/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -371,6 +373,14 @@ "url": "https://www.w3.org/TR/css-text-decor-4/#references" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Text Decoration 4", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-text-decor-4/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-transforms-1.json b/bikeshed/spec-data/readonly/headings/headings-css-transforms-1.json index 3f3d922de3..8decb35fcb 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-transforms-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-transforms-1.json @@ -579,7 +579,7 @@ "snapshot": { "number": "", "spec": "CSS Transforms 1", - "text": "553 TestsCSS Transforms Module Level 1", + "text": "CSS Transforms Module Level 1", "url": "https://www.w3.org/TR/css-transforms-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-transitions-1.json b/bikeshed/spec-data/readonly/headings/headings-css-transitions-1.json index 5a2a357539..e9bea64b14 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-transitions-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-transitions-1.json @@ -87,7 +87,7 @@ "current": { "number": "", "spec": "CSS Transitions", - "text": "11. Changes since Working Draft of 30 November 2017", + "text": "11. Changes", "url": "https://drafts.csswg.org/css-transitions-1/#changes" }, "snapshot": { @@ -97,6 +97,22 @@ "url": "https://www.w3.org/TR/css-transitions-1/#changes" } }, + "#changes-2018": { + "current": { + "number": "11.1", + "spec": "CSS Transitions", + "text": "Changes since Working Draft of 11 October 2018", + "url": "https://drafts.csswg.org/css-transitions-1/#changes-2018" + } + }, + "#changes-earlier": { + "current": { + "number": "11.2", + "spec": "CSS Transitions", + "text": "Earlier changes", + "url": "https://drafts.csswg.org/css-transitions-1/#changes-earlier" + } + }, "#complete": { "current": { "number": "5", @@ -475,7 +491,7 @@ "current": { "number": "", "spec": "CSS Transitions", - "text": "CSS Transitions", + "text": "CSS Transitions Level 1", "url": "https://drafts.csswg.org/css-transitions-1/#title" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-css-transitions-2.json b/bikeshed/spec-data/readonly/headings/headings-css-transitions-2.json index c68f52aba3..177dca0a53 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-transitions-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-transitions-2.json @@ -5,6 +5,12 @@ "spec": "CSS Transitions 2", "text": "Abstract", "url": "https://drafts.csswg.org/css-transitions-2/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Abstract", + "url": "https://www.w3.org/TR/css-transitions-2/#abstract" } }, "#animation-composite-order": { @@ -13,6 +19,12 @@ "spec": "CSS Transitions 2", "text": "Animation composite order", "url": "https://drafts.csswg.org/css-transitions-2/#animation-composite-order" + }, + "snapshot": { + "number": "4.1", + "spec": "CSS Transitions 2", + "text": "Animation composite order", + "url": "https://www.w3.org/TR/css-transitions-2/#animation-composite-order" } }, "#application": { @@ -21,6 +33,12 @@ "spec": "CSS Transitions 2", "text": "Application of transitions", "url": "https://drafts.csswg.org/css-transitions-2/#application" + }, + "snapshot": { + "number": "4", + "spec": "CSS Transitions 2", + "text": "Application of transitions", + "url": "https://www.w3.org/TR/css-transitions-2/#application" } }, "#cascade-level": { @@ -29,6 +47,48 @@ "spec": "CSS Transitions 2", "text": "Animation cascade level", "url": "https://drafts.csswg.org/css-transitions-2/#cascade-level" + }, + "snapshot": { + "number": "4.2", + "spec": "CSS Transitions 2", + "text": "Animation cascade level", + "url": "https://www.w3.org/TR/css-transitions-2/#cascade-level" + } + }, + "#changes": { + "current": { + "number": "9", + "spec": "CSS Transitions 2", + "text": "Changes", + "url": "https://drafts.csswg.org/css-transitions-2/#changes" + }, + "snapshot": { + "number": "9", + "spec": "CSS Transitions 2", + "text": "Changes", + "url": "https://www.w3.org/TR/css-transitions-2/#changes" + } + }, + "#changes-20230905": { + "current": { + "number": "9.1", + "spec": "CSS Transitions 2", + "text": "Changes since First Public Working Draft (5 September 2023)", + "url": "https://drafts.csswg.org/css-transitions-2/#changes-20230905" + } + }, + "#changes-fpwd": { + "current": { + "number": "9.2", + "spec": "CSS Transitions 2", + "text": "Changes since Level 1, in First Public Working Draft", + "url": "https://drafts.csswg.org/css-transitions-2/#changes-fpwd" + }, + "snapshot": { + "number": "9.1", + "spec": "CSS Transitions 2", + "text": "Changes since Level 1, in First Public Working Draft", + "url": "https://www.w3.org/TR/css-transitions-2/#changes-fpwd" } }, "#current-transition-generation-section": { @@ -37,6 +97,26 @@ "spec": "CSS Transitions 2", "text": "The current transition generation", "url": "https://drafts.csswg.org/css-transitions-2/#current-transition-generation-section" + }, + "snapshot": { + "number": "3.2", + "spec": "CSS Transitions 2", + "text": "The current transition generation", + "url": "https://www.w3.org/TR/css-transitions-2/#current-transition-generation-section" + } + }, + "#defining-before-change-style": { + "current": { + "number": "3.3", + "spec": "CSS Transitions 2", + "text": "Defining before-change style: the @starting-style rule", + "url": "https://drafts.csswg.org/css-transitions-2/#defining-before-change-style" + }, + "snapshot": { + "number": "3.3", + "spec": "CSS Transitions 2", + "text": "Defining before-change style: the @starting-style rule", + "url": "https://www.w3.org/TR/css-transitions-2/#defining-before-change-style" } }, "#delta": { @@ -45,6 +125,12 @@ "spec": "CSS Transitions 2", "text": "Delta specification", "url": "https://drafts.csswg.org/css-transitions-2/#delta" + }, + "snapshot": { + "number": "1", + "spec": "CSS Transitions 2", + "text": "Delta specification", + "url": "https://www.w3.org/TR/css-transitions-2/#delta" } }, "#event-dispatch": { @@ -53,6 +139,12 @@ "spec": "CSS Transitions 2", "text": "Event dispatch", "url": "https://drafts.csswg.org/css-transitions-2/#event-dispatch" + }, + "snapshot": { + "number": "5.1", + "spec": "CSS Transitions 2", + "text": "Event dispatch", + "url": "https://www.w3.org/TR/css-transitions-2/#event-dispatch" } }, "#idl-index": { @@ -61,6 +153,12 @@ "spec": "CSS Transitions 2", "text": "IDL Index", "url": "https://drafts.csswg.org/css-transitions-2/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-transitions-2/#idl-index" } }, "#index": { @@ -69,6 +167,12 @@ "spec": "CSS Transitions 2", "text": "Index", "url": "https://drafts.csswg.org/css-transitions-2/#index" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Index", + "url": "https://www.w3.org/TR/css-transitions-2/#index" } }, "#index-defined-elsewhere": { @@ -77,6 +181,12 @@ "spec": "CSS Transitions 2", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/css-transitions-2/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-transitions-2/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -85,6 +195,12 @@ "spec": "CSS Transitions 2", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/css-transitions-2/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-transitions-2/#index-defined-here" } }, "#informative": { @@ -93,6 +209,12 @@ "spec": "CSS Transitions 2", "text": "Informative References", "url": "https://drafts.csswg.org/css-transitions-2/#informative" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Informative References", + "url": "https://www.w3.org/TR/css-transitions-2/#informative" } }, "#interface-dom": { @@ -101,14 +223,26 @@ "spec": "CSS Transitions 2", "text": "DOM Interfaces", "url": "https://drafts.csswg.org/css-transitions-2/#interface-dom" + }, + "snapshot": { + "number": "6", + "spec": "CSS Transitions 2", + "text": "DOM Interfaces", + "url": "https://www.w3.org/TR/css-transitions-2/#interface-dom" } }, "#issues-common": { "current": { - "number": "7", + "number": "", "spec": "CSS Transitions 2", - "text": "Issues commonly raised as issues with previous levels", + "text": "10. Issues commonly raised as issues with previous levels", "url": "https://drafts.csswg.org/css-transitions-2/#issues-common" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "10. Issues commonly raised as issues with previous levels", + "url": "https://www.w3.org/TR/css-transitions-2/#issues-common" } }, "#issues-index": { @@ -117,14 +251,26 @@ "spec": "CSS Transitions 2", "text": "Issues Index", "url": "https://drafts.csswg.org/css-transitions-2/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-transitions-2/#issues-index" } }, "#issues-spec": { "current": { - "number": "8", + "number": "", "spec": "CSS Transitions 2", - "text": "Issues deferred from previous levels of the spec", + "text": "11. Issues deferred from previous levels of the spec", "url": "https://drafts.csswg.org/css-transitions-2/#issues-spec" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "11. Issues deferred from previous levels of the spec", + "url": "https://www.w3.org/TR/css-transitions-2/#issues-spec" } }, "#normative": { @@ -133,6 +279,40 @@ "spec": "CSS Transitions 2", "text": "Normative References", "url": "https://drafts.csswg.org/css-transitions-2/#normative" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Normative References", + "url": "https://www.w3.org/TR/css-transitions-2/#normative" + } + }, + "#privacy": { + "current": { + "number": "7", + "spec": "CSS Transitions 2", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-transitions-2/#privacy" + }, + "snapshot": { + "number": "7", + "spec": "CSS Transitions 2", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-transitions-2/#privacy" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-transitions-2/#property-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Property Index", + "url": "https://www.w3.org/TR/css-transitions-2/#property-index" } }, "#references": { @@ -141,6 +321,12 @@ "spec": "CSS Transitions 2", "text": "References", "url": "https://drafts.csswg.org/css-transitions-2/#references" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "References", + "url": "https://www.w3.org/TR/css-transitions-2/#references" } }, "#requirements-on-pending-style-changes": { @@ -149,6 +335,12 @@ "spec": "CSS Transitions 2", "text": "Requirements on pending style changes", "url": "https://drafts.csswg.org/css-transitions-2/#requirements-on-pending-style-changes" + }, + "snapshot": { + "number": "6.2", + "spec": "CSS Transitions 2", + "text": "Requirements on pending style changes", + "url": "https://www.w3.org/TR/css-transitions-2/#requirements-on-pending-style-changes" } }, "#reversing": { @@ -157,6 +349,26 @@ "spec": "CSS Transitions 2", "text": "Faster reversing of interrupted transitions", "url": "https://drafts.csswg.org/css-transitions-2/#reversing" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS Transitions 2", + "text": "Faster reversing of interrupted transitions", + "url": "https://www.w3.org/TR/css-transitions-2/#reversing" + } + }, + "#security": { + "current": { + "number": "8", + "spec": "CSS Transitions 2", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-transitions-2/#security" + }, + "snapshot": { + "number": "8", + "spec": "CSS Transitions 2", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-transitions-2/#security" } }, "#sotd": { @@ -165,6 +377,12 @@ "spec": "CSS Transitions 2", "text": "Status of this document", "url": "https://drafts.csswg.org/css-transitions-2/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-transitions-2/#sotd" } }, "#starting": { @@ -173,6 +391,12 @@ "spec": "CSS Transitions 2", "text": "Starting of transitions", "url": "https://drafts.csswg.org/css-transitions-2/#starting" + }, + "snapshot": { + "number": "3", + "spec": "CSS Transitions 2", + "text": "Starting of transitions", + "url": "https://www.w3.org/TR/css-transitions-2/#starting" } }, "#the-CSSTransition-interface": { @@ -181,6 +405,26 @@ "spec": "CSS Transitions 2", "text": "The CSSTransition interface", "url": "https://drafts.csswg.org/css-transitions-2/#the-CSSTransition-interface" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS Transitions 2", + "text": "The CSSTransition interface", + "url": "https://www.w3.org/TR/css-transitions-2/#the-CSSTransition-interface" + } + }, + "#the-cssstartingstylerule-interface": { + "current": { + "number": "3.3.1", + "spec": "CSS Transitions 2", + "text": "The CSSStartingStyleRule interface", + "url": "https://drafts.csswg.org/css-transitions-2/#the-cssstartingstylerule-interface" + }, + "snapshot": { + "number": "3.3.1", + "spec": "CSS Transitions 2", + "text": "The CSSStartingStyleRule interface", + "url": "https://www.w3.org/TR/css-transitions-2/#the-cssstartingstylerule-interface" } }, "#title": { @@ -189,6 +433,12 @@ "spec": "CSS Transitions 2", "text": "CSS Transitions Level 2", "url": "https://drafts.csswg.org/css-transitions-2/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "CSS Transitions Level 2", + "url": "https://www.w3.org/TR/css-transitions-2/#title" } }, "#toc": { @@ -197,6 +447,26 @@ "spec": "CSS Transitions 2", "text": "Table of Contents", "url": "https://drafts.csswg.org/css-transitions-2/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-transitions-2/#toc" + } + }, + "#transition-behavior-property": { + "current": { + "number": "2.5", + "spec": "CSS Transitions 2", + "text": "The transition-behavior Property", + "url": "https://drafts.csswg.org/css-transitions-2/#transition-behavior-property" + }, + "snapshot": { + "number": "2.5", + "spec": "CSS Transitions 2", + "text": "The transition-behavior Property", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-behavior-property" } }, "#transition-delay-property": { @@ -205,6 +475,12 @@ "spec": "CSS Transitions 2", "text": "The transition-delay Property", "url": "https://drafts.csswg.org/css-transitions-2/#transition-delay-property" + }, + "snapshot": { + "number": "2.4", + "spec": "CSS Transitions 2", + "text": "The transition-delay Property", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-delay-property" } }, "#transition-duration-property": { @@ -213,6 +489,12 @@ "spec": "CSS Transitions 2", "text": "The transition-duration Property", "url": "https://drafts.csswg.org/css-transitions-2/#transition-duration-property" + }, + "snapshot": { + "number": "2.2", + "spec": "CSS Transitions 2", + "text": "The transition-duration Property", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-duration-property" } }, "#transition-events": { @@ -221,14 +503,40 @@ "spec": "CSS Transitions 2", "text": "Transition Events", "url": "https://drafts.csswg.org/css-transitions-2/#transition-events" + }, + "snapshot": { + "number": "5", + "spec": "CSS Transitions 2", + "text": "Transition Events", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-events" } }, - "#transition-name-property": { + "#transition-property-property": { "current": { "number": "2.1", "spec": "CSS Transitions 2", "text": "The transition-property Property", - "url": "https://drafts.csswg.org/css-transitions-2/#transition-name-property" + "url": "https://drafts.csswg.org/css-transitions-2/#transition-property-property" + }, + "snapshot": { + "number": "2.1", + "spec": "CSS Transitions 2", + "text": "The transition-property Property", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-property-property" + } + }, + "#transition-shorthand-property": { + "current": { + "number": "2.6", + "spec": "CSS Transitions 2", + "text": "The transition Shorthand Property", + "url": "https://drafts.csswg.org/css-transitions-2/#transition-shorthand-property" + }, + "snapshot": { + "number": "2.6", + "spec": "CSS Transitions 2", + "text": "The transition Shorthand Property", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-shorthand-property" } }, "#transition-timing-function-property": { @@ -237,6 +545,12 @@ "spec": "CSS Transitions 2", "text": "The transition-timing-function Property", "url": "https://drafts.csswg.org/css-transitions-2/#transition-timing-function-property" + }, + "snapshot": { + "number": "2.3", + "spec": "CSS Transitions 2", + "text": "The transition-timing-function Property", + "url": "https://www.w3.org/TR/css-transitions-2/#transition-timing-function-property" } }, "#transitions": { @@ -245,6 +559,12 @@ "spec": "CSS Transitions 2", "text": "Transitions", "url": "https://drafts.csswg.org/css-transitions-2/#transitions" + }, + "snapshot": { + "number": "2", + "spec": "CSS Transitions 2", + "text": "Transitions", + "url": "https://www.w3.org/TR/css-transitions-2/#transitions" } }, "#w3c-conform-future-proofing": { @@ -253,6 +573,12 @@ "spec": "CSS Transitions 2", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/css-transitions-2/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-transitions-2/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -261,6 +587,12 @@ "spec": "CSS Transitions 2", "text": "Conformance", "url": "https://drafts.csswg.org/css-transitions-2/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-transitions-2/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -269,6 +601,12 @@ "spec": "CSS Transitions 2", "text": "Conformance classes", "url": "https://drafts.csswg.org/css-transitions-2/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-transitions-2/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -277,6 +615,12 @@ "spec": "CSS Transitions 2", "text": "Document conventions", "url": "https://drafts.csswg.org/css-transitions-2/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-transitions-2/#w3c-conventions" } }, "#w3c-partial": { @@ -285,6 +629,12 @@ "spec": "CSS Transitions 2", "text": "Partial implementations", "url": "https://drafts.csswg.org/css-transitions-2/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-transitions-2/#w3c-partial" } }, "#w3c-testing": { @@ -293,6 +643,12 @@ "spec": "CSS Transitions 2", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-transitions-2/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Transitions 2", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-transitions-2/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-typed-om-1.json b/bikeshed/spec-data/readonly/headings/headings-css-typed-om-1.json index 335649e6d4..9d93f1be8b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-typed-om-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-typed-om-1.json @@ -21,18 +21,52 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#calc-serialization" }, "snapshot": { - "number": "6.4", + "number": "6.5", "spec": "CSS Typed OM 1", "text": "CSSMathValue Serialization", "url": "https://www.w3.org/TR/css-typed-om-1/#calc-serialization" } }, + "#changes": { + "current": { + "number": "9", + "spec": "CSS Typed OM 1", + "text": "Changes", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#changes" + }, + "snapshot": { + "number": "9", + "spec": "CSS Typed OM 1", + "text": "Changes", + "url": "https://www.w3.org/TR/css-typed-om-1/#changes" + } + }, + "#changes-20180410": { + "current": { + "number": "9.1", + "spec": "CSS Typed OM 1", + "text": "Changes since the 10 April 2018 Working Draft", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#changes-20180410" + }, + "snapshot": { + "number": "9.1", + "spec": "CSS Typed OM 1", + "text": "Changes since the 10 April 2018 Working Draft", + "url": "https://www.w3.org/TR/css-typed-om-1/#changes-20180410" + } + }, "#colorvalue-objects": { "current": { "number": "4.6", "spec": "CSS Typed OM 1", "text": "CSSColorValue objects", "url": "https://drafts.css-houdini.org/css-typed-om-1/#colorvalue-objects" + }, + "snapshot": { + "number": "4.6", + "spec": "CSS Typed OM 1", + "text": "CSSColorValue objects", + "url": "https://www.w3.org/TR/css-typed-om-1/#colorvalue-objects" } }, "#complex-numeric": { @@ -63,38 +97,6 @@ "url": "https://www.w3.org/TR/css-typed-om-1/#computed-stylepropertymapreadonly-objects" } }, - "#conform-future-proofing": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Implementations of Unstable and Proprietary Features", - "url": "https://www.w3.org/TR/css-typed-om-1/#conform-future-proofing" - } - }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Conformance", - "url": "https://www.w3.org/TR/css-typed-om-1/#conformance" - } - }, - "#conformance-classes": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Conformance classes", - "url": "https://www.w3.org/TR/css-typed-om-1/#conformance-classes" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Document conventions", - "url": "https://www.w3.org/TR/css-typed-om-1/#conventions" - } - }, "#cssom-serialization": { "current": { "number": "6.7", @@ -103,7 +105,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#cssom-serialization" }, "snapshot": { - "number": "6.8", + "number": "6.7", "spec": "CSS Typed OM 1", "text": "Serialization from CSSOM Values", "url": "https://www.w3.org/TR/css-typed-om-1/#cssom-serialization" @@ -137,22 +139,6 @@ "url": "https://www.w3.org/TR/css-typed-om-1/#direct-cssstylevalue" } }, - "#from-keyword-and-length": { - "snapshot": { - "number": "5.7.2", - "spec": "CSS Typed OM 1", - "text": "Determining x or y from a keyword and a length", - "url": "https://www.w3.org/TR/css-typed-om-1/#from-keyword-and-length" - } - }, - "#from-single-keyword": { - "snapshot": { - "number": "5.7.1", - "spec": "CSS Typed OM 1", - "text": "Determining x or y from a single value", - "url": "https://www.w3.org/TR/css-typed-om-1/#from-single-keyword" - } - }, "#idl-index": { "current": { "number": "", @@ -175,7 +161,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#imagevalue-objects" }, "snapshot": { - "number": "4.6", + "number": "4.5", "spec": "CSS Typed OM 1", "text": "CSSImageValue objects", "url": "https://www.w3.org/TR/css-typed-om-1/#imagevalue-objects" @@ -223,14 +209,6 @@ "url": "https://www.w3.org/TR/css-typed-om-1/#index-defined-here" } }, - "#informative": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Informative References", - "url": "https://www.w3.org/TR/css-typed-om-1/#informative" - } - }, "#intro": { "current": { "number": "1", @@ -367,34 +345,10 @@ "snapshot": { "number": "6.3", "spec": "CSS Typed OM 1", - "text": "CSSUnitValue Serialization", + "text": "CSSNumericValue Serialization", "url": "https://www.w3.org/TR/css-typed-om-1/#numericvalue-serialization" } }, - "#partial": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Partial implementations", - "url": "https://www.w3.org/TR/css-typed-om-1/#partial" - } - }, - "#positionvalue-objects": { - "snapshot": { - "number": "4.5", - "spec": "CSS Typed OM 1", - "text": "CSSPositionValue objects", - "url": "https://www.w3.org/TR/css-typed-om-1/#positionvalue-objects" - } - }, - "#positionvalue-serialization": { - "snapshot": { - "number": "6.6", - "spec": "CSS Typed OM 1", - "text": "CSSPositionValue Serialization", - "url": "https://www.w3.org/TR/css-typed-om-1/#positionvalue-serialization" - } - }, "#privacy-considerations": { "current": { "number": "8", @@ -429,6 +383,12 @@ "spec": "CSS Typed OM 1", "text": "<color> Values", "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-color" + }, + "snapshot": { + "number": "5.7", + "spec": "CSS Typed OM 1", + "text": "<color> Values", + "url": "https://www.w3.org/TR/css-typed-om-1/#reify-color" } }, "#reify-failure": { @@ -439,7 +399,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-failure" }, "snapshot": { - "number": "5.1", + "number": "5.2", "spec": "CSS Typed OM 1", "text": "Unrepresentable Values", "url": "https://www.w3.org/TR/css-typed-om-1/#reify-failure" @@ -453,7 +413,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-ident" }, "snapshot": { - "number": "5.4", + "number": "5.5", "spec": "CSS Typed OM 1", "text": "Identifier Values", "url": "https://www.w3.org/TR/css-typed-om-1/#reify-ident" @@ -467,26 +427,24 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-numeric" }, "snapshot": { - "number": "5.5", + "number": "5.6", "spec": "CSS Typed OM 1", "text": "<number>, <percentage>, and <dimension> values", "url": "https://www.w3.org/TR/css-typed-om-1/#reify-numeric" } }, - "#reify-position": { - "snapshot": { - "number": "5.7", - "spec": "CSS Typed OM 1", - "text": "<position> Values", - "url": "https://www.w3.org/TR/css-typed-om-1/#reify-position" - } - }, "#reify-property": { "current": { "number": "5.1", "spec": "CSS Typed OM 1", "text": "Property-specific Rules", "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-property" + }, + "snapshot": { + "number": "5.1", + "spec": "CSS Typed OM 1", + "text": "Property-specific Rules", + "url": "https://www.w3.org/TR/css-typed-om-1/#reify-property" } }, "#reify-stylevalue": { @@ -511,7 +469,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-tokens" }, "snapshot": { - "number": "5.2", + "number": "5.3", "spec": "CSS Typed OM 1", "text": "Raw CSS tokens: properties with var() references", "url": "https://www.w3.org/TR/css-typed-om-1/#reify-tokens" @@ -524,19 +482,11 @@ "text": "<transform-list> and <transform-function> Values", "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-transformvalue" }, - "snapshot": { - "number": "5.6", - "spec": "CSS Typed OM 1", - "text": "<transform-list> and <transform-function> values", - "url": "https://www.w3.org/TR/css-typed-om-1/#reify-transformvalue" - } - }, - "#reify-url": { "snapshot": { "number": "5.8", "spec": "CSS Typed OM 1", - "text": "<url> (and subtype) Values", - "url": "https://www.w3.org/TR/css-typed-om-1/#reify-url" + "text": "<transform-list> and <transform-function> Values", + "url": "https://www.w3.org/TR/css-typed-om-1/#reify-transformvalue" } }, "#reify-var": { @@ -547,7 +497,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#reify-var" }, "snapshot": { - "number": "5.3", + "number": "5.4", "spec": "CSS Typed OM 1", "text": "var() References", "url": "https://www.w3.org/TR/css-typed-om-1/#reify-var" @@ -587,14 +537,12 @@ "spec": "CSS Typed OM 1", "text": "Status of this document", "url": "https://drafts.css-houdini.org/css-typed-om-1/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "CSS Typed OM 1", "text": "Status of this document", - "url": "https://www.w3.org/TR/css-typed-om-1/#status" + "url": "https://www.w3.org/TR/css-typed-om-1/#sotd" } }, "#stylevalue-objects": { @@ -639,22 +587,6 @@ "url": "https://www.w3.org/TR/css-typed-om-1/#stylevalue-subclasses" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "W3C Working Draft, 10 April 2018", - "url": "https://www.w3.org/TR/css-typed-om-1/#subtitle" - } - }, - "#testing": { - "snapshot": { - "number": "", - "spec": "CSS Typed OM 1", - "text": "Non-experimental implementations", - "url": "https://www.w3.org/TR/css-typed-om-1/#testing" - } - }, "#the-stylepropertymap": { "current": { "number": "3", @@ -719,7 +651,7 @@ "url": "https://drafts.css-houdini.org/css-typed-om-1/#transformvalue-serialization" }, "snapshot": { - "number": "6.5", + "number": "6.6", "spec": "CSS Typed OM 1", "text": "CSSTransformValue and CSSTransformComponent Serialization", "url": "https://www.w3.org/TR/css-typed-om-1/#transformvalue-serialization" @@ -731,6 +663,12 @@ "spec": "CSS Typed OM 1", "text": "CSSUnitValue Serialization", "url": "https://drafts.css-houdini.org/css-typed-om-1/#unitvalue-serialization" + }, + "snapshot": { + "number": "6.4", + "spec": "CSS Typed OM 1", + "text": "CSSUnitValue Serialization", + "url": "https://www.w3.org/TR/css-typed-om-1/#unitvalue-serialization" } }, "#unparsedvalue-objects": { @@ -761,20 +699,18 @@ "url": "https://www.w3.org/TR/css-typed-om-1/#unparsedvalue-serialization" } }, - "#urlimagevalue-serialization": { - "snapshot": { - "number": "6.7", - "spec": "CSS Typed OM 1", - "text": "CSSURLImageValue Serialization", - "url": "https://www.w3.org/TR/css-typed-om-1/#urlimagevalue-serialization" - } - }, "#w3c-conform-future-proofing": { "current": { "number": "", "spec": "CSS Typed OM 1", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.css-houdini.org/css-typed-om-1/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Typed OM 1", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-typed-om-1/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -783,6 +719,12 @@ "spec": "CSS Typed OM 1", "text": "Conformance", "url": "https://drafts.css-houdini.org/css-typed-om-1/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Typed OM 1", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-typed-om-1/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -791,6 +733,12 @@ "spec": "CSS Typed OM 1", "text": "Conformance classes", "url": "https://drafts.css-houdini.org/css-typed-om-1/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Typed OM 1", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-typed-om-1/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -799,6 +747,12 @@ "spec": "CSS Typed OM 1", "text": "Document conventions", "url": "https://drafts.css-houdini.org/css-typed-om-1/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Typed OM 1", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-typed-om-1/#w3c-conventions" } }, "#w3c-partial": { @@ -807,6 +761,12 @@ "spec": "CSS Typed OM 1", "text": "Partial implementations", "url": "https://drafts.css-houdini.org/css-typed-om-1/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Typed OM 1", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-typed-om-1/#w3c-partial" } }, "#w3c-testing": { @@ -815,6 +775,12 @@ "spec": "CSS Typed OM 1", "text": "Non-experimental implementations", "url": "https://drafts.css-houdini.org/css-typed-om-1/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Typed OM 1", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-typed-om-1/#w3c-testing" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-typed-om-2.json b/bikeshed/spec-data/readonly/headings/headings-css-typed-om-2.json index e71e8a7717..e6f102b4b5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-typed-om-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-typed-om-2.json @@ -43,7 +43,7 @@ "current": { "number": "", "spec": "CSS Typed OM 2", - "text": "A Collection of Interesting Ideas, 8 February 2021", + "text": "A Collection of Interesting Ideas, 13 March 2024", "url": "https://drafts.css-houdini.org/css-typed-om-2/#profile-and-date" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-ui-3.json b/bikeshed/spec-data/readonly/headings/headings-css-ui-3.json index 1f4656fbd3..09e7f887bb 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-ui-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-ui-3.json @@ -15,15 +15,15 @@ }, "#acknowledgments": { "current": { - "number": "", + "number": "A", "spec": "CSS User Interface 3", - "text": "Appendix A. Acknowledgments", + "text": "Acknowledgments", "url": "https://drafts.csswg.org/css-ui-3/#acknowledgments" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS User Interface 3", - "text": "Appendix A. Acknowledgments", + "text": "Acknowledgments", "url": "https://www.w3.org/TR/css-ui-3/#acknowledgments" } }, @@ -113,15 +113,15 @@ }, "#changes": { "current": { - "number": "", + "number": "B", "spec": "CSS User Interface 3", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-ui-3/#changes" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS User Interface 3", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-ui-3/#changes" } }, @@ -205,15 +205,15 @@ }, "#default-style-sheet": { "current": { - "number": "", + "number": "D", "spec": "CSS User Interface 3", - "text": "Appendix D. Default style sheet additions for HTML", + "text": "Default style sheet additions for HTML", "url": "https://drafts.csswg.org/css-ui-3/#default-style-sheet" }, "snapshot": { - "number": "", + "number": "D", "spec": "CSS User Interface 3", - "text": "Appendix D. Default style sheet additions for HTML", + "text": "Default style sheet additions for HTML", "url": "https://www.w3.org/TR/css-ui-3/#default-style-sheet" } }, @@ -591,15 +591,15 @@ }, "#security-privacy-considerations": { "current": { - "number": "", + "number": "C", "spec": "CSS User Interface 3", - "text": "Appendix C. Considerations for Security and Privacy", + "text": "Considerations for Security and Privacy", "url": "https://drafts.csswg.org/css-ui-3/#security-privacy-considerations" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS User Interface 3", - "text": "Appendix C. Considerations for Security and Privacy", + "text": "Considerations for Security and Privacy", "url": "https://www.w3.org/TR/css-ui-3/#security-privacy-considerations" } }, @@ -665,7 +665,7 @@ "snapshot": { "number": "", "spec": "CSS User Interface 3", - "text": "106 TestsCSS Basic User Interface Module Level 3 (CSS3 UI)", + "text": "CSS Basic User Interface Module Level 3 (CSS3 UI)", "url": "https://www.w3.org/TR/css-ui-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-ui-4.json b/bikeshed/spec-data/readonly/headings/headings-css-ui-4.json index c4a665a1b4..54a4621352 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-ui-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-ui-4.json @@ -15,15 +15,15 @@ }, "#acknowledgments": { "current": { - "number": "", + "number": "A", "spec": "CSS User Interface 4", - "text": "Appendix A. Acknowledgments", + "text": "Acknowledgments", "url": "https://drafts.csswg.org/css-ui-4/#acknowledgments" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS User Interface 4", - "text": "Appendix A. Acknowledgments", + "text": "Acknowledgments", "url": "https://www.w3.org/TR/css-ui-4/#acknowledgments" } }, @@ -93,7 +93,7 @@ }, "#caret": { "current": { - "number": "5.2.3", + "number": "5.2.4", "spec": "CSS User Interface 4", "text": "Insertion caret shorthand: caret", "url": "https://drafts.csswg.org/css-ui-4/#caret" @@ -105,6 +105,14 @@ "url": "https://www.w3.org/TR/css-ui-4/#caret" } }, + "#caret-animation": { + "current": { + "number": "5.2.2", + "spec": "CSS User Interface 4", + "text": "Animation of the insertion caret: caret-animation", + "url": "https://drafts.csswg.org/css-ui-4/#caret-animation" + } + }, "#caret-color": { "current": { "number": "5.2.1", @@ -121,7 +129,7 @@ }, "#caret-shape": { "current": { - "number": "5.2.2", + "number": "5.2.3", "spec": "CSS User Interface 4", "text": "Shape of the insertion caret: caret-shape", "url": "https://drafts.csswg.org/css-ui-4/#caret-shape" @@ -135,15 +143,15 @@ }, "#changes": { "current": { - "number": "", + "number": "B", "spec": "CSS User Interface 4", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://drafts.csswg.org/css-ui-4/#changes" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS User Interface 4", - "text": "Appendix B. Changes", + "text": "Changes", "url": "https://www.w3.org/TR/css-ui-4/#changes" } }, @@ -227,7 +235,7 @@ }, "#control-specific-rules": { "current": { - "number": "7.4", + "number": "7.5", "spec": "CSS User Interface 4", "text": "Control Specific Rules", "url": "https://drafts.csswg.org/css-ui-4/#control-specific-rules" @@ -255,15 +263,15 @@ }, "#default-style-sheet": { "current": { - "number": "", + "number": "D", "spec": "CSS User Interface 4", - "text": "Appendix D. Default style sheet additions for HTML", + "text": "Default style sheet additions for HTML", "url": "https://drafts.csswg.org/css-ui-4/#default-style-sheet" }, "snapshot": { - "number": "", + "number": "D", "spec": "CSS User Interface 4", - "text": "Appendix D. Default style sheet additions for HTML", + "text": "Default style sheet additions for HTML", "url": "https://www.w3.org/TR/css-ui-4/#default-style-sheet" } }, @@ -295,6 +303,14 @@ "url": "https://www.w3.org/TR/css-ui-4/#example-positioned-buttons" } }, + "#field-sizing": { + "current": { + "number": "7.3", + "spec": "CSS User Interface 4", + "text": "Switching form control sizing: the field-sizing property", + "url": "https://drafts.csswg.org/css-ui-4/#field-sizing" + } + }, "#index": { "current": { "number": "", @@ -367,7 +383,7 @@ }, "#input-rules": { "current": { - "number": "7.4.1", + "number": "7.5.1", "spec": "CSS User Interface 4", "text": "Single-Line Text Input Controls", "url": "https://drafts.csswg.org/css-ui-4/#input-rules" @@ -381,7 +397,7 @@ }, "#input-security": { "current": { - "number": "7.3", + "number": "7.4", "spec": "CSS User Interface 4", "text": "Obscuring sensitive input: the input-security property", "url": "https://drafts.csswg.org/css-ui-4/#input-security" @@ -677,15 +693,15 @@ }, "#security-privacy-considerations": { "current": { - "number": "", + "number": "C", "spec": "CSS User Interface 4", - "text": "Appendix C. Considerations for Security and Privacy", + "text": "Considerations for Security and Privacy", "url": "https://drafts.csswg.org/css-ui-4/#security-privacy-considerations" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS User Interface 4", - "text": "Appendix C. Considerations for Security and Privacy", + "text": "Considerations for Security and Privacy", "url": "https://www.w3.org/TR/css-ui-4/#security-privacy-considerations" } }, @@ -737,7 +753,7 @@ "snapshot": { "number": "", "spec": "CSS User Interface 4", - "text": "134 TestsCSS Basic User Interface Module Level 4", + "text": "CSS Basic User Interface Module Level 4", "url": "https://www.w3.org/TR/css-ui-4/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-values-3.json b/bikeshed/spec-data/readonly/headings/headings-css-values-3.json index 5f30653ad6..bf26c47a41 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-values-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-values-3.json @@ -365,15 +365,15 @@ }, "#iana": { "current": { - "number": "", + "number": "A", "spec": "CSS Values 3", - "text": "Appendix A: IANA Considerations", + "text": "IANA Considerations", "url": "https://drafts.csswg.org/css-values-3/#iana" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Values 3", - "text": "Appendix A: IANA Considerations", + "text": "IANA Considerations", "url": "https://www.w3.org/TR/css-values-3/#iana" } }, @@ -793,7 +793,7 @@ "snapshot": { "number": "", "spec": "CSS Values 3", - "text": "71 TestsCSS Values and Units Module Level 3", + "text": "CSS Values and Units Module Level 3", "url": "https://www.w3.org/TR/css-values-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-values-4.json b/bikeshed/spec-data/readonly/headings/headings-css-values-4.json index 9f22721a60..4b49fa0d51 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-values-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-values-4.json @@ -83,6 +83,14 @@ "url": "https://www.w3.org/TR/css-values-4/#angles" } }, + "#bools": { + "current": { + "number": "", + "spec": "CSS Values 4", + "text": "11. Boolean Expressions", + "url": "https://drafts.csswg.org/css-values-4/#bools" + } + }, "#calc-computed-value": { "current": { "number": "10.11", @@ -99,13 +107,13 @@ }, "#calc-constants": { "current": { - "number": "10.7", + "number": "10.7.1", "spec": "CSS Values 4", "text": "Numeric Constants: e, pi", "url": "https://drafts.csswg.org/css-values-4/#calc-constants" }, "snapshot": { - "number": "10.7", + "number": "10.7.1", "spec": "CSS Values 4", "text": "Numeric Constants: e, pi", "url": "https://www.w3.org/TR/css-values-4/#calc-constants" @@ -113,13 +121,13 @@ }, "#calc-error-constants": { "current": { - "number": "10.7.1", + "number": "10.7.2", "spec": "CSS Values 4", "text": "Degenerate Numeric Constants: infinity, -infinity, NaN", "url": "https://drafts.csswg.org/css-values-4/#calc-error-constants" }, "snapshot": { - "number": "10.7.1", + "number": "10.7.2", "spec": "CSS Values 4", "text": "Degenerate Numeric Constants: infinity, -infinity, NaN", "url": "https://www.w3.org/TR/css-values-4/#calc-error-constants" @@ -139,6 +147,20 @@ "url": "https://www.w3.org/TR/css-values-4/#calc-func" } }, + "#calc-ieee": { + "current": { + "number": "10.9.1", + "spec": "CSS Values 4", + "text": "Infinities, NaN, and Signed Zero", + "url": "https://drafts.csswg.org/css-values-4/#calc-ieee" + }, + "snapshot": { + "number": "10.9.1", + "spec": "CSS Values 4", + "text": "Infinities, NaN, and Signed Zero", + "url": "https://www.w3.org/TR/css-values-4/#calc-ieee" + } + }, "#calc-internal": { "current": { "number": "10.10", @@ -153,6 +175,20 @@ "url": "https://www.w3.org/TR/css-values-4/#calc-internal" } }, + "#calc-keywords": { + "current": { + "number": "10.7", + "spec": "CSS Values 4", + "text": "Numeric Keywords", + "url": "https://drafts.csswg.org/css-values-4/#calc-keywords" + }, + "snapshot": { + "number": "10.7", + "spec": "CSS Values 4", + "text": "Numeric Keywords", + "url": "https://www.w3.org/TR/css-values-4/#calc-keywords" + } + }, "#calc-range": { "current": { "number": "10.12", @@ -223,6 +259,20 @@ "url": "https://www.w3.org/TR/css-values-4/#calc-type-checking" } }, + "#calc-variables": { + "current": { + "number": "10.7.3", + "spec": "CSS Values 4", + "text": "Numeric Variables", + "url": "https://drafts.csswg.org/css-values-4/#calc-variables" + }, + "snapshot": { + "number": "10.7.3", + "spec": "CSS Values 4", + "text": "Numeric Variables", + "url": "https://www.w3.org/TR/css-values-4/#calc-variables" + } + }, "#changes": { "current": { "number": "", @@ -421,13 +471,13 @@ }, "#combining-range": { "current": { - "number": "3.2", + "number": "3.1", "spec": "CSS Values 4", "text": "Range Checking", "url": "https://drafts.csswg.org/css-values-4/#combining-range" }, "snapshot": { - "number": "3.2", + "number": "3.1", "spec": "CSS Values 4", "text": "Range Checking", "url": "https://www.w3.org/TR/css-values-4/#combining-range" @@ -503,6 +553,20 @@ "url": "https://www.w3.org/TR/css-values-4/#component-combinators" } }, + "#component-functions": { + "current": { + "number": "2.6", + "spec": "CSS Values 4", + "text": "Functional Notation Definitions", + "url": "https://drafts.csswg.org/css-values-4/#component-functions" + }, + "snapshot": { + "number": "2.6", + "spec": "CSS Values 4", + "text": "Functional Notation Definitions", + "url": "https://www.w3.org/TR/css-values-4/#component-functions" + } + }, "#component-multipliers": { "current": { "number": "2.3", @@ -589,15 +653,15 @@ }, "#deprecated-quirky-length": { "current": { - "number": "", + "number": "C", "spec": "CSS Values 4", - "text": "Appendix C: Quirky Lengths", + "text": "Quirky Lengths", "url": "https://drafts.csswg.org/css-values-4/#deprecated-quirky-length" }, "snapshot": { - "number": "", + "number": "C", "spec": "CSS Values 4", - "text": "Appendix C: Quirky Lengths", + "text": "Quirky Lengths", "url": "https://www.w3.org/TR/css-values-4/#deprecated-quirky-length" } }, @@ -687,15 +751,15 @@ }, "#iana": { "current": { - "number": "", + "number": "B", "spec": "CSS Values 4", - "text": "Appendix B: IANA Considerations", + "text": "IANA Considerations", "url": "https://drafts.csswg.org/css-values-4/#iana" }, "snapshot": { - "number": "", + "number": "B", "spec": "CSS Values 4", - "text": "Appendix B: IANA Considerations", + "text": "IANA Considerations", "url": "https://www.w3.org/TR/css-values-4/#iana" } }, @@ -783,20 +847,6 @@ "url": "https://www.w3.org/TR/css-values-4/#integers" } }, - "#interpolate": { - "current": { - "number": "3.1", - "spec": "CSS Values 4", - "text": "Representing Interpolated Values: the mix() notation", - "url": "https://drafts.csswg.org/css-values-4/#interpolate" - }, - "snapshot": { - "number": "3.1", - "spec": "CSS Values 4", - "text": "Representing Interpolated Values: the mix() notation", - "url": "https://www.w3.org/TR/css-values-4/#interpolate" - } - }, "#intro": { "current": { "number": "1", @@ -855,15 +905,15 @@ }, "#linked-properties": { "current": { - "number": "", + "number": "A", "spec": "CSS Values 4", - "text": "Appendix A: Coordinating List-Valued Properties", + "text": "Coordinating List-Valued Properties", "url": "https://drafts.csswg.org/css-values-4/#linked-properties" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Values 4", - "text": "Appendix A: Coordinating List-Valued Properties", + "text": "Coordinating List-Valued Properties", "url": "https://www.w3.org/TR/css-values-4/#linked-properties" } }, @@ -1063,6 +1113,20 @@ "url": "https://www.w3.org/TR/css-values-4/#privacy" } }, + "#production-blocks": { + "current": { + "number": "2.8", + "spec": "CSS Values 4", + "text": "Non-Terminal Definitions and Grammar Production Blocks", + "url": "https://drafts.csswg.org/css-values-4/#production-blocks" + }, + "snapshot": { + "number": "2.8", + "spec": "CSS Values 4", + "text": "Non-Terminal Definitions and Grammar Production Blocks", + "url": "https://www.w3.org/TR/css-values-4/#production-blocks" + } + }, "#ratios": { "current": { "number": "5.7", @@ -1373,13 +1437,13 @@ }, "#value-examples": { "current": { - "number": "2.6", + "number": "2.7", "spec": "CSS Values 4", "text": "Property Value Examples", "url": "https://drafts.csswg.org/css-values-4/#value-examples" }, "snapshot": { - "number": "2.6", + "number": "2.7", "spec": "CSS Values 4", "text": "Property Value Examples", "url": "https://www.w3.org/TR/css-values-4/#value-examples" diff --git a/bikeshed/spec-data/readonly/headings/headings-css-values-5.json b/bikeshed/spec-data/readonly/headings/headings-css-values-5.json index a4deeccae2..c9c2c3e96e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-values-5.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-values-5.json @@ -25,15 +25,23 @@ }, "#attr-notation": { "current": { - "number": "2", + "number": "6.4", "spec": "CSS Values 5", "text": "Attribute References: the attr() function", "url": "https://drafts.csswg.org/css-values-5/#attr-notation" } }, + "#attr-security": { + "current": { + "number": "6.4.3", + "spec": "CSS Values 5", + "text": "Security", + "url": "https://drafts.csswg.org/css-values-5/#attr-security" + } + }, "#attr-substitution": { "current": { - "number": "2.2", + "number": "6.4.2", "spec": "CSS Values 5", "text": "attr() Substitution", "url": "https://drafts.csswg.org/css-values-5/#attr-substitution" @@ -41,12 +49,28 @@ }, "#attr-types": { "current": { - "number": "2.1", + "number": "6.4.1", "spec": "CSS Values 5", "text": "attr() Types", "url": "https://drafts.csswg.org/css-values-5/#attr-types" } }, + "#calc-mix": { + "current": { + "number": "5.2", + "spec": "CSS Values 5", + "text": "Interpolated Numeric and Dimensional Values: the calc-mix() notation", + "url": "https://drafts.csswg.org/css-values-5/#calc-mix" + } + }, + "#calc-size": { + "current": { + "number": "9", + "spec": "CSS Values 5", + "text": "Calculating With Intrinsic Sizes: the calc-size() function", + "url": "https://drafts.csswg.org/css-values-5/#calc-size" + } + }, "#changes": { "current": { "number": "", @@ -63,6 +87,54 @@ "url": "https://drafts.csswg.org/css-values-5/#changes-recent" } }, + "#color-mix": { + "current": { + "number": "5.3", + "spec": "CSS Values 5", + "text": "Interpolated Color Values: the color-mix() notation", + "url": "https://drafts.csswg.org/css-values-5/#color-mix" + } + }, + "#component-function-commas": { + "current": { + "number": "3.1.1", + "spec": "CSS Values 5", + "text": "Commas and Semicolons in Functions", + "url": "https://drafts.csswg.org/css-values-5/#component-function-commas" + } + }, + "#component-functions": { + "current": { + "number": "3.1", + "spec": "CSS Values 5", + "text": "Functional Notation Definitions", + "url": "https://drafts.csswg.org/css-values-5/#component-functions" + } + }, + "#container-progress-func": { + "current": { + "number": "4.3", + "spec": "CSS Values 5", + "text": "Container Query Progress Values: the container-progress() notation", + "url": "https://drafts.csswg.org/css-values-5/#container-progress-func" + } + }, + "#cross-fade": { + "current": { + "number": "5.4", + "spec": "CSS Values 5", + "text": "Interpolated Image Values: the cross-fade() notation", + "url": "https://drafts.csswg.org/css-values-5/#cross-fade" + } + }, + "#first-valid": { + "current": { + "number": "6.2", + "spec": "CSS Values 5", + "text": "Selecting the First Supported Value: the first-valid() notation", + "url": "https://drafts.csswg.org/css-values-5/#first-valid" + } + }, "#index": { "current": { "number": "", @@ -95,6 +167,22 @@ "url": "https://drafts.csswg.org/css-values-5/#informative" } }, + "#interp-calc-size": { + "current": { + "number": "9.3", + "spec": "CSS Values 5", + "text": "Interpolating calc-size()", + "url": "https://drafts.csswg.org/css-values-5/#interp-calc-size" + } + }, + "#interpolate-size": { + "current": { + "number": "9.4", + "spec": "CSS Values 5", + "text": "Interpolating sizing keywords: the interpolate-size property", + "url": "https://drafts.csswg.org/css-values-5/#interpolate-size" + } + }, "#intro": { "current": { "number": "1", @@ -111,6 +199,30 @@ "url": "https://drafts.csswg.org/css-values-5/#issues-index" } }, + "#media-progress-func": { + "current": { + "number": "4.2", + "spec": "CSS Values 5", + "text": "Media Query Progress Values: the media-progress() notation", + "url": "https://drafts.csswg.org/css-values-5/#media-progress-func" + } + }, + "#mix": { + "current": { + "number": "5.6", + "spec": "CSS Values 5", + "text": "Interpolated Property Values: the mix() notation", + "url": "https://drafts.csswg.org/css-values-5/#mix" + } + }, + "#mixing": { + "current": { + "number": "5", + "spec": "CSS Values 5", + "text": "Mixing and Interpolation Notations: the *-mix() family", + "url": "https://drafts.csswg.org/css-values-5/#mixing" + } + }, "#normative": { "current": { "number": "", @@ -127,9 +239,41 @@ "url": "https://drafts.csswg.org/css-values-5/#placement" } }, + "#progress": { + "current": { + "number": "4", + "spec": "CSS Values 5", + "text": "Interpolation Progress Functional Notations", + "url": "https://drafts.csswg.org/css-values-5/#progress" + } + }, + "#progress-func": { + "current": { + "number": "4.1", + "spec": "CSS Values 5", + "text": "Calculated Progress Values: the progress() notation", + "url": "https://drafts.csswg.org/css-values-5/#progress-func" + } + }, + "#progress-type": { + "current": { + "number": "5.1", + "spec": "CSS Values 5", + "text": "Representing Interpolation Progress: the <progress> type", + "url": "https://drafts.csswg.org/css-values-5/#progress-type" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Values 5", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-values-5/#property-index" + } + }, "#random": { "current": { - "number": "3.1", + "number": "7.1", "spec": "CSS Values 5", "text": "Generating a Random Numeric Value: the random() function", "url": "https://drafts.csswg.org/css-values-5/#random" @@ -137,7 +281,7 @@ }, "#random-caching": { "current": { - "number": "3.3", + "number": "7.3", "spec": "CSS Values 5", "text": "Generating/Caching Random Values: the <random-caching-options> value", "url": "https://drafts.csswg.org/css-values-5/#random-caching" @@ -145,7 +289,7 @@ }, "#random-infinities": { "current": { - "number": "3.1.1", + "number": "7.1.1", "spec": "CSS Values 5", "text": "Argument Ranges", "url": "https://drafts.csswg.org/css-values-5/#random-infinities" @@ -153,15 +297,15 @@ }, "#random-item": { "current": { - "number": "3.2", + "number": "7.2", "spec": "CSS Values 5", - "text": "Picking A Random Item From A List: the random-item() function", + "text": "Picking a Random Item From a List: the random-item() function", "url": "https://drafts.csswg.org/css-values-5/#random-item" } }, "#randomness": { "current": { - "number": "3", + "number": "7", "spec": "CSS Values 5", "text": "Generating Random Values", "url": "https://drafts.csswg.org/css-values-5/#randomness" @@ -175,6 +319,22 @@ "url": "https://drafts.csswg.org/css-values-5/#references" } }, + "#request-url-modifiers": { + "current": { + "number": "3.2.1", + "spec": "CSS Values 5", + "text": "Request URL Modifiers", + "url": "https://drafts.csswg.org/css-values-5/#request-url-modifiers" + } + }, + "#resolving-calc-size": { + "current": { + "number": "9.2", + "spec": "CSS Values 5", + "text": "Resolving calc-size()", + "url": "https://drafts.csswg.org/css-values-5/#resolving-calc-size" + } + }, "#sec-pri": { "current": { "number": "", @@ -183,6 +343,14 @@ "url": "https://drafts.csswg.org/css-values-5/#sec-pri" } }, + "#simplifying-calc-size": { + "current": { + "number": "9.1", + "spec": "CSS Values 5", + "text": "Simplifying calc-size()", + "url": "https://drafts.csswg.org/css-values-5/#simplifying-calc-size" + } + }, "#sotd": { "current": { "number": "", @@ -191,6 +359,14 @@ "url": "https://drafts.csswg.org/css-values-5/#sotd" } }, + "#textual-values": { + "current": { + "number": "2", + "spec": "CSS Values 5", + "text": "Textual Data Types", + "url": "https://drafts.csswg.org/css-values-5/#textual-values" + } + }, "#title": { "current": { "number": "", @@ -209,12 +385,52 @@ }, "#toggle-notation": { "current": { - "number": "1.2", + "number": "6.3", "spec": "CSS Values 5", "text": "Toggling Between Values: toggle()", "url": "https://drafts.csswg.org/css-values-5/#toggle-notation" } }, + "#transform-mix": { + "current": { + "number": "5.5", + "spec": "CSS Values 5", + "text": "Interpolated Transform Values: the transform-mix() notation", + "url": "https://drafts.csswg.org/css-values-5/#transform-mix" + } + }, + "#tree-counting": { + "current": { + "number": "8", + "spec": "CSS Values 5", + "text": "Tree Counting Functions: the sibling-count() and sibling-index() notations", + "url": "https://drafts.csswg.org/css-values-5/#tree-counting" + } + }, + "#urls": { + "current": { + "number": "3.2", + "spec": "CSS Values 5", + "text": "Resource Locators: the <url> type", + "url": "https://drafts.csswg.org/css-values-5/#urls" + } + }, + "#value-defs": { + "current": { + "number": "3", + "spec": "CSS Values 5", + "text": "Value Definition Syntax", + "url": "https://drafts.csswg.org/css-values-5/#value-defs" + } + }, + "#value-insert": { + "current": { + "number": "6", + "spec": "CSS Values 5", + "text": "Miscellaneous Value Substituting Functions", + "url": "https://drafts.csswg.org/css-values-5/#value-insert" + } + }, "#w3c-conform-future-proofing": { "current": { "number": "", @@ -262,5 +478,13 @@ "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/css-values-5/#w3c-testing" } + }, + "#whole-value": { + "current": { + "number": "6.1", + "spec": "CSS Values 5", + "text": "Representing An Entire Property Value: the <whole-value> type", + "url": "https://drafts.csswg.org/css-values-5/#whole-value" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-variables-1.json b/bikeshed/spec-data/readonly/headings/headings-css-variables-1.json index 90e41603b1..c1dbdcb294 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-variables-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-variables-1.json @@ -15,7 +15,7 @@ }, "#acks": { "current": { - "number": "6", + "number": "7", "spec": "CSS Variables 1", "text": "Acknowledgments", "url": "https://drafts.csswg.org/css-variables-1/#acks" @@ -29,7 +29,7 @@ }, "#apis": { "current": { - "number": "4", + "number": "5", "spec": "CSS Variables 1", "text": "APIs", "url": "https://drafts.csswg.org/css-variables-1/#apis" @@ -41,9 +41,17 @@ "url": "https://www.w3.org/TR/css-variables-1/#apis" } }, + "#arbitrary-substitution": { + "current": { + "number": "4", + "spec": "CSS Variables 1", + "text": "Arbitrary Substitution Functions", + "url": "https://drafts.csswg.org/css-variables-1/#arbitrary-substitution" + } + }, "#changes": { "current": { - "number": "5", + "number": "6", "spec": "CSS Variables 1", "text": "Changes", "url": "https://drafts.csswg.org/css-variables-1/#changes" @@ -57,7 +65,7 @@ }, "#changes-20140506": { "current": { - "number": "5.4", + "number": "6.4", "spec": "CSS Variables 1", "text": "Changes since the May 6 2014 Last Call Working Draft", "url": "https://drafts.csswg.org/css-variables-1/#changes-20140506" @@ -71,7 +79,7 @@ }, "#changes-20151203": { "current": { - "number": "5.3", + "number": "6.3", "spec": "CSS Variables 1", "text": "Changes Since the 03 December 2015 CR", "url": "https://drafts.csswg.org/css-variables-1/#changes-20151203" @@ -85,7 +93,7 @@ }, "#changes-20211111": { "current": { - "number": "5.2", + "number": "6.2", "spec": "CSS Variables 1", "text": "Changes Since the 11 November 2021 CR Draft", "url": "https://drafts.csswg.org/css-variables-1/#changes-20211111" @@ -99,9 +107,9 @@ }, "#changes-20220616": { "current": { - "number": "5.1", + "number": "6.1", "spec": "CSS Variables 1", - "text": "Changes Since the 16 June CR Snapshot", + "text": "Changes Since the 16 June 2022 CR Snapshot", "url": "https://drafts.csswg.org/css-variables-1/#changes-20220616" } }, @@ -217,13 +225,15 @@ "url": "https://www.w3.org/TR/css-variables-1/#intro" } }, - "#invalid-variables": { + "#invalid-substitution": { "current": { - "number": "3.1", + "number": "4.1", "spec": "CSS Variables 1", - "text": "Invalid Variables", - "url": "https://drafts.csswg.org/css-variables-1/#invalid-variables" - }, + "text": "Invalid Substitution", + "url": "https://drafts.csswg.org/css-variables-1/#invalid-substitution" + } + }, + "#invalid-variables": { "snapshot": { "number": "3.1", "spec": "CSS Variables 1", @@ -231,13 +241,15 @@ "url": "https://www.w3.org/TR/css-variables-1/#invalid-variables" } }, - "#long-variables": { + "#long-substitution": { "current": { - "number": "3.3", + "number": "4.3", "spec": "CSS Variables 1", - "text": "Safely Handling Overly-Long Variables", - "url": "https://drafts.csswg.org/css-variables-1/#long-variables" - }, + "text": "Safely Handling Overly-Long Substitution", + "url": "https://drafts.csswg.org/css-variables-1/#long-substitution" + } + }, + "#long-variables": { "snapshot": { "number": "3.3", "spec": "CSS Variables 1", @@ -261,7 +273,7 @@ }, "#privacy": { "current": { - "number": "7", + "number": "8", "spec": "CSS Variables 1", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/css-variables-1/#privacy" @@ -303,7 +315,7 @@ }, "#security": { "current": { - "number": "8", + "number": "9", "spec": "CSS Variables 1", "text": "Security Considerations", "url": "https://drafts.csswg.org/css-variables-1/#security" @@ -317,7 +329,7 @@ }, "#serializing-custom-props": { "current": { - "number": "4.1", + "number": "5.1", "spec": "CSS Variables 1", "text": "Serializing Custom Properties", "url": "https://drafts.csswg.org/css-variables-1/#serializing-custom-props" @@ -345,6 +357,14 @@ "url": "https://www.w3.org/TR/css-variables-1/#status" } }, + "#substitution-in-shorthands": { + "current": { + "number": "4.2", + "spec": "CSS Variables 1", + "text": "Substitution in Shorthand Properties", + "url": "https://drafts.csswg.org/css-variables-1/#substitution-in-shorthands" + } + }, "#syntax": { "current": { "number": "2.1", @@ -416,12 +436,6 @@ } }, "#variables-in-shorthands": { - "current": { - "number": "3.2", - "spec": "CSS Variables 1", - "text": "Variables in Shorthand Properties", - "url": "https://drafts.csswg.org/css-variables-1/#variables-in-shorthands" - }, "snapshot": { "number": "3.2", "spec": "CSS Variables 1", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-1.json b/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-1.json index 785c7a4bd3..51f5980ca2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-1.json @@ -1,15 +1,71 @@ { + "#%3A%3Aview-transition-group": { + "current": { + "number": "3.2.3", + "spec": "CSS View Transitions 1", + "text": "View Transition Named Subtree Root: the ::view-transition-group() pseudo-element", + "url": "https://drafts.csswg.org/css-view-transitions-1/#%3A%3Aview-transition-group" + }, + "snapshot": { + "number": "3.2.3", + "spec": "CSS View Transitions 1", + "text": "View Transition Named Subtree Root: the ::view-transition-group() pseudo-element", + "url": "https://www.w3.org/TR/css-view-transitions-1/#%3A%3Aview-transition-group" + } + }, + "#%3A%3Aview-transition-image-pair": { + "current": { + "number": "3.2.4", + "spec": "CSS View Transitions 1", + "text": "View Transition Image Pair Isolation: the ::view-transition-image-pair() pseudo-element", + "url": "https://drafts.csswg.org/css-view-transitions-1/#%3A%3Aview-transition-image-pair" + }, + "snapshot": { + "number": "3.2.4", + "spec": "CSS View Transitions 1", + "text": "View Transition Image Pair Isolation: the ::view-transition-image-pair() pseudo-element", + "url": "https://www.w3.org/TR/css-view-transitions-1/#%3A%3Aview-transition-image-pair" + } + }, + "#%3A%3Aview-transition-new": { + "current": { + "number": "3.2.6", + "spec": "CSS View Transitions 1", + "text": "View Transition New State Image: the ::view-transition-new() pseudo-element", + "url": "https://drafts.csswg.org/css-view-transitions-1/#%3A%3Aview-transition-new" + }, + "snapshot": { + "number": "3.2.6", + "spec": "CSS View Transitions 1", + "text": "View Transition New State Image: the ::view-transition-new() pseudo-element", + "url": "https://www.w3.org/TR/css-view-transitions-1/#%3A%3Aview-transition-new" + } + }, + "#%3A%3Aview-transition-old": { + "current": { + "number": "3.2.5", + "spec": "CSS View Transitions 1", + "text": "View Transition Old State Image: the ::view-transition-old() pseudo-element", + "url": "https://drafts.csswg.org/css-view-transitions-1/#%3A%3Aview-transition-old" + }, + "snapshot": { + "number": "3.2.5", + "spec": "CSS View Transitions 1", + "text": "View Transition Old State Image: the ::view-transition-old() pseudo-element", + "url": "https://www.w3.org/TR/css-view-transitions-1/#%3A%3Aview-transition-old" + } + }, "#ViewTransition-prepare": { "current": { "number": "6.1.1", "spec": "CSS View Transitions 1", - "text": "startViewTransition()", + "text": "startViewTransition() Method Steps", "url": "https://drafts.csswg.org/css-view-transitions-1/#ViewTransition-prepare" }, "snapshot": { - "number": "7.1.1", + "number": "6.1.1", "spec": "CSS View Transitions 1", - "text": "startViewTransition()", + "text": "startViewTransition() Method Steps", "url": "https://www.w3.org/TR/css-view-transitions-1/#ViewTransition-prepare" } }, @@ -17,13 +73,13 @@ "current": { "number": "6.2.1", "spec": "CSS View Transitions 1", - "text": "skipTransition()", + "text": "skipTransition() Method Steps", "url": "https://drafts.csswg.org/css-view-transitions-1/#ViewTransition-skipTransition" }, "snapshot": { - "number": "7.2.1", + "number": "6.2.1", "spec": "CSS View Transitions 1", - "text": "skipTransition()", + "text": "skipTransition() Method Steps", "url": "https://www.w3.org/TR/css-view-transitions-1/#ViewTransition-skipTransition" } }, @@ -43,13 +99,13 @@ }, "#additions-to-document": { "current": { - "number": "5.5", + "number": "7.1.1", "spec": "CSS View Transitions 1", "text": "Additions to Document", "url": "https://drafts.csswg.org/css-view-transitions-1/#additions-to-document" }, "snapshot": { - "number": "6.5", + "number": "7.1.1", "spec": "CSS View Transitions 1", "text": "Additions to Document", "url": "https://www.w3.org/TR/css-view-transitions-1/#additions-to-document" @@ -63,7 +119,7 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#additions-to-document-api" }, "snapshot": { - "number": "7.1", + "number": "6.1", "spec": "CSS View Transitions 1", "text": "Additions to Document", "url": "https://www.w3.org/TR/css-view-transitions-1/#additions-to-document-api" @@ -77,7 +133,7 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#algorithms" }, "snapshot": { - "number": "8", + "number": "7", "spec": "CSS View Transitions 1", "text": "Algorithms", "url": "https://www.w3.org/TR/css-view-transitions-1/#algorithms" @@ -91,7 +147,7 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#api" }, "snapshot": { - "number": "7", + "number": "6", "spec": "CSS View Transitions 1", "text": "API", "url": "https://www.w3.org/TR/css-view-transitions-1/#api" @@ -103,6 +159,12 @@ "spec": "CSS View Transitions 1", "text": "Call the update callback", "url": "https://drafts.csswg.org/css-view-transitions-1/#call-dom-update-callback-algorithm" + }, + "snapshot": { + "number": "7.4", + "spec": "CSS View Transitions 1", + "text": "Call the update callback", + "url": "https://www.w3.org/TR/css-view-transitions-1/#call-dom-update-callback-algorithm" } }, "#capture-new-state-algorithm": { @@ -111,6 +173,12 @@ "spec": "CSS View Transitions 1", "text": "Capture the new state", "url": "https://drafts.csswg.org/css-view-transitions-1/#capture-new-state-algorithm" + }, + "snapshot": { + "number": "7.3.2", + "spec": "CSS View Transitions 1", + "text": "Capture the new state", + "url": "https://www.w3.org/TR/css-view-transitions-1/#capture-new-state-algorithm" } }, "#capture-old-state-algorithm": { @@ -119,25 +187,37 @@ "spec": "CSS View Transitions 1", "text": "Capture the old state", "url": "https://drafts.csswg.org/css-view-transitions-1/#capture-old-state-algorithm" + }, + "snapshot": { + "number": "7.3.1", + "spec": "CSS View Transitions 1", + "text": "Capture the old state", + "url": "https://www.w3.org/TR/css-view-transitions-1/#capture-old-state-algorithm" } }, "#capture-rendering-characteristics-algorithm": { "current": { - "number": "7.6.1", + "number": "7.7.1", "spec": "CSS View Transitions 1", "text": "Capture rendering characteristics", "url": "https://drafts.csswg.org/css-view-transitions-1/#capture-rendering-characteristics-algorithm" + }, + "snapshot": { + "number": "7.6.1", + "spec": "CSS View Transitions 1", + "text": "Capture rendering characteristics", + "url": "https://www.w3.org/TR/css-view-transitions-1/#capture-rendering-characteristics-algorithm" } }, "#capture-the-image-algorithm": { "current": { - "number": "7.6", + "number": "7.7", "spec": "CSS View Transitions 1", "text": "Capture the image", "url": "https://drafts.csswg.org/css-view-transitions-1/#capture-the-image-algorithm" }, "snapshot": { - "number": "8.5", + "number": "7.6", "spec": "CSS View Transitions 1", "text": "Capture the image", "url": "https://www.w3.org/TR/css-view-transitions-1/#capture-the-image-algorithm" @@ -145,57 +225,115 @@ }, "#captured-elements": { "current": { - "number": "5.4", + "number": "7.1.3", "spec": "CSS View Transitions 1", "text": "Captured elements", "url": "https://drafts.csswg.org/css-view-transitions-1/#captured-elements" }, "snapshot": { - "number": "6.4", + "number": "7.1.3", "spec": "CSS View Transitions 1", "text": "Captured elements", "url": "https://www.w3.org/TR/css-view-transitions-1/#captured-elements" } }, - "#clear-view-transition-algorithm": { + "#changes": { "current": { - "number": "7.9", + "number": "A", "spec": "CSS View Transitions 1", - "text": "Clear view transition", - "url": "https://drafts.csswg.org/css-view-transitions-1/#clear-view-transition-algorithm" + "text": "Changes", + "url": "https://drafts.csswg.org/css-view-transitions-1/#changes" }, "snapshot": { - "number": "8.10", + "number": "A", "spec": "CSS View Transitions 1", - "text": "Clear view transition", - "url": "https://www.w3.org/TR/css-view-transitions-1/#clear-view-transition-algorithm" + "text": "Changes", + "url": "https://www.w3.org/TR/css-view-transitions-1/#changes" + } + }, + "#changes-since-2022-05-25": { + "current": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-05-25 Working Draft", + "url": "https://drafts.csswg.org/css-view-transitions-1/#changes-since-2022-05-25" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-05-25 Working Draft", + "url": "https://www.w3.org/TR/css-view-transitions-1/#changes-since-2022-05-25" + } + }, + "#changes-since-2022-05-30": { + "snapshot": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-05-30 Working Draft", + "url": "https://www.w3.org/TR/css-view-transitions-1/#changes-since-2022-05-30" + } + }, + "#changes-since-2022-10-25": { + "current": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-10-25 Working Draft (FPWD)", + "url": "https://drafts.csswg.org/css-view-transitions-1/#changes-since-2022-10-25" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-10-25 Working Draft (FPWD)", + "url": "https://www.w3.org/TR/css-view-transitions-1/#changes-since-2022-10-25" + } + }, + "#changes-since-2022-11-24": { + "current": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-11-24 Working Draft", + "url": "https://drafts.csswg.org/css-view-transitions-1/#changes-since-2022-11-24" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Changes from 2022-11-24 Working Draft", + "url": "https://www.w3.org/TR/css-view-transitions-1/#changes-since-2022-11-24" } }, - "#compute-the-interest-rectangle-algorithm": { + "#changes-since-2023-05-30": { "current": { - "number": "7.6.2", + "number": "", "spec": "CSS View Transitions 1", - "text": "Compute the interest rectangle", - "url": "https://drafts.csswg.org/css-view-transitions-1/#compute-the-interest-rectangle-algorithm" + "text": "Changes from 2023-05-30 Working Draft", + "url": "https://drafts.csswg.org/css-view-transitions-1/#changes-since-2023-05-30" + } + }, + "#clear-view-transition-algorithm": { + "current": { + "number": "7.10", + "spec": "CSS View Transitions 1", + "text": "Clear view transition", + "url": "https://drafts.csswg.org/css-view-transitions-1/#clear-view-transition-algorithm" }, "snapshot": { - "number": "8.7", + "number": "7.9", "spec": "CSS View Transitions 1", - "text": "Compute the interest rectangle", - "url": "https://www.w3.org/TR/css-view-transitions-1/#compute-the-interest-rectangle-algorithm" + "text": "Clear view transition", + "url": "https://www.w3.org/TR/css-view-transitions-1/#clear-view-transition-algorithm" } }, "#concepts": { "current": { - "number": "5", + "number": "7.1", "spec": "CSS View Transitions 1", - "text": "Concepts", + "text": "Data Structures", "url": "https://drafts.csswg.org/css-view-transitions-1/#concepts" }, "snapshot": { - "number": "6", + "number": "7.1", "spec": "CSS View Transitions 1", - "text": "Concepts", + "text": "Data Structures", "url": "https://www.w3.org/TR/css-view-transitions-1/#concepts" } }, @@ -207,26 +345,66 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#css-properties" }, "snapshot": { - "number": "3", + "number": "2", "spec": "CSS View Transitions 1", "text": "CSS properties", "url": "https://www.w3.org/TR/css-view-transitions-1/#css-properties" } }, + "#customizing": { + "current": { + "number": "1.2", + "spec": "CSS View Transitions 1", + "text": "View Transition Customization", + "url": "https://drafts.csswg.org/css-view-transitions-1/#customizing" + }, + "snapshot": { + "number": "1.2", + "spec": "CSS View Transitions 1", + "text": "View Transition Customization", + "url": "https://www.w3.org/TR/css-view-transitions-1/#customizing" + } + }, + "#elements-concept": { + "current": { + "number": "7.1.2", + "spec": "CSS View Transitions 1", + "text": "Additions to Elements", + "url": "https://drafts.csswg.org/css-view-transitions-1/#elements-concept" + }, + "snapshot": { + "number": "7.1.2", + "spec": "CSS View Transitions 1", + "text": "Additions to Elements", + "url": "https://www.w3.org/TR/css-view-transitions-1/#elements-concept" + } + }, "#examples": { "current": { - "number": "1.4", + "number": "1.6", "spec": "CSS View Transitions 1", "text": "Examples", "url": "https://drafts.csswg.org/css-view-transitions-1/#examples" + }, + "snapshot": { + "number": "1.6", + "spec": "CSS View Transitions 1", + "text": "Examples", + "url": "https://www.w3.org/TR/css-view-transitions-1/#examples" } }, "#handle-transition-frame-algorithm": { "current": { - "number": "7.7", + "number": "7.8", "spec": "CSS View Transitions 1", "text": "Handle transition frame", "url": "https://drafts.csswg.org/css-view-transitions-1/#handle-transition-frame-algorithm" + }, + "snapshot": { + "number": "7.7", + "spec": "CSS View Transitions 1", + "text": "Handle transition frame", + "url": "https://www.w3.org/TR/css-view-transitions-1/#handle-transition-frame-algorithm" } }, "#idl-index": { @@ -285,6 +463,20 @@ "url": "https://www.w3.org/TR/css-view-transitions-1/#index-defined-here" } }, + "#informative": { + "current": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-view-transitions-1/#informative" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "Informative References", + "url": "https://www.w3.org/TR/css-view-transitions-1/#informative" + } + }, "#intro": { "current": { "number": "1", @@ -299,48 +491,46 @@ "url": "https://www.w3.org/TR/css-view-transitions-1/#intro" } }, - "#issues-index": { + "#lifecycle": { "current": { - "number": "", + "number": "1.3", "spec": "CSS View Transitions 1", - "text": "Issues Index", - "url": "https://drafts.csswg.org/css-view-transitions-1/#issues-index" + "text": "View Transition Lifecycle", + "url": "https://drafts.csswg.org/css-view-transitions-1/#lifecycle" }, "snapshot": { - "number": "", - "spec": "CSS View Transitions 1", - "text": "Issues Index", - "url": "https://www.w3.org/TR/css-view-transitions-1/#issues-index" - } - }, - "#lifecycle": { - "current": { - "number": "1.2", + "number": "1.3", "spec": "CSS View Transitions 1", - "text": "Lifecycle", - "url": "https://drafts.csswg.org/css-view-transitions-1/#lifecycle" + "text": "View Transition Lifecycle", + "url": "https://www.w3.org/TR/css-view-transitions-1/#lifecycle" } }, - "#monkey-patch-to-rendering-algorithm": { + "#named-and-transitioning": { "current": { - "number": "7.1", + "number": "2.1.1", "spec": "CSS View Transitions 1", - "text": "Monkey patches to rendering", - "url": "https://drafts.csswg.org/css-view-transitions-1/#monkey-patch-to-rendering-algorithm" + "text": "Rendering Consolidation", + "url": "https://drafts.csswg.org/css-view-transitions-1/#named-and-transitioning" }, "snapshot": { - "number": "8.1", + "number": "2.1.1", "spec": "CSS View Transitions 1", - "text": "Monkey patches to rendering", - "url": "https://www.w3.org/TR/css-view-transitions-1/#monkey-patch-to-rendering-algorithm" + "text": "Rendering Consolidation", + "url": "https://www.w3.org/TR/css-view-transitions-1/#named-and-transitioning" } }, "#named-view-transition-pseudo": { "current": { - "number": "4.2", + "number": "3.2.1", "spec": "CSS View Transitions 1", - "text": "Named view-transition pseudo-elements", + "text": "Named View Transition Pseudo-elements", "url": "https://drafts.csswg.org/css-view-transitions-1/#named-view-transition-pseudo" + }, + "snapshot": { + "number": "3.2.1", + "spec": "CSS View Transitions 1", + "text": "Named View Transition Pseudo-elements", + "url": "https://www.w3.org/TR/css-view-transitions-1/#named-view-transition-pseudo" } }, "#normative": { @@ -357,6 +547,14 @@ "url": "https://www.w3.org/TR/css-view-transitions-1/#normative" } }, + "#page-visibility-change-steps": { + "current": { + "number": "7.6", + "spec": "CSS View Transitions 1", + "text": "View transition page-visibility change steps", + "url": "https://drafts.csswg.org/css-view-transitions-1/#page-visibility-change-steps" + } + }, "#perform-pending-transition-operations-algorithm": { "current": { "number": "7.2", @@ -365,26 +563,12 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#perform-pending-transition-operations-algorithm" }, "snapshot": { - "number": "8.2", + "number": "7.2", "spec": "CSS View Transitions 1", "text": "Perform pending transition operations", "url": "https://www.w3.org/TR/css-view-transitions-1/#perform-pending-transition-operations-algorithm" } }, - "#phases-concept": { - "current": { - "number": "5.1", - "spec": "CSS View Transitions 1", - "text": "Phases", - "url": "https://drafts.csswg.org/css-view-transitions-1/#phases-concept" - }, - "snapshot": { - "number": "6.1", - "spec": "CSS View Transitions 1", - "text": "Phases", - "url": "https://www.w3.org/TR/css-view-transitions-1/#phases-concept" - } - }, "#priv": { "current": { "number": "", @@ -415,13 +599,13 @@ }, "#pseudo": { "current": { - "number": "4", + "number": "3", "spec": "CSS View Transitions 1", "text": "Pseudo-elements", "url": "https://drafts.csswg.org/css-view-transitions-1/#pseudo" }, "snapshot": { - "number": "5", + "number": "3", "spec": "CSS View Transitions 1", "text": "Pseudo-elements", "url": "https://www.w3.org/TR/css-view-transitions-1/#pseudo" @@ -429,10 +613,16 @@ }, "#pseudo-root": { "current": { - "number": "4.1", + "number": "3.1", "spec": "CSS View Transitions 1", - "text": "Pseudo-element root", + "text": "Pseudo-element Trees", "url": "https://drafts.csswg.org/css-view-transitions-1/#pseudo-root" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS View Transitions 1", + "text": "Pseudo-element Trees", + "url": "https://www.w3.org/TR/css-view-transitions-1/#pseudo-root" } }, "#references": { @@ -449,6 +639,20 @@ "url": "https://www.w3.org/TR/css-view-transitions-1/#references" } }, + "#rendering-model": { + "current": { + "number": "1.5", + "spec": "CSS View Transitions 1", + "text": "Rendering Model", + "url": "https://drafts.csswg.org/css-view-transitions-1/#rendering-model" + }, + "snapshot": { + "number": "1.5", + "spec": "CSS View Transitions 1", + "text": "Rendering Model", + "url": "https://www.w3.org/TR/css-view-transitions-1/#rendering-model" + } + }, "#sec": { "current": { "number": "", @@ -467,8 +671,14 @@ "current": { "number": "1.1", "spec": "CSS View Transitions 1", - "text": "Separating transitions from DOM updates", + "text": "Separating Visual Transitions from DOM Updates", "url": "https://drafts.csswg.org/css-view-transitions-1/#separating-transitions" + }, + "snapshot": { + "number": "1.1", + "spec": "CSS View Transitions 1", + "text": "Separating Visual Transitions from DOM Updates", + "url": "https://www.w3.org/TR/css-view-transitions-1/#separating-transitions" } }, "#setup-transition-pseudo-elements-algorithm": { @@ -479,7 +689,7 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#setup-transition-pseudo-elements-algorithm" }, "snapshot": { - "number": "8.8", + "number": "7.3.3", "spec": "CSS View Transitions 1", "text": "Setup transition pseudo-elements", "url": "https://www.w3.org/TR/css-view-transitions-1/#setup-transition-pseudo-elements-algorithm" @@ -493,7 +703,7 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#setup-view-transition-algorithm" }, "snapshot": { - "number": "8.3", + "number": "7.3", "spec": "CSS View Transitions 1", "text": "Setup view transition", "url": "https://www.w3.org/TR/css-view-transitions-1/#setup-view-transition-algorithm" @@ -507,26 +717,24 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#skip-the-view-transition-algorithm" }, "snapshot": { - "number": "8.4", + "number": "7.5", "spec": "CSS View Transitions 1", "text": "Skip the view transition", "url": "https://www.w3.org/TR/css-view-transitions-1/#skip-the-view-transition-algorithm" } }, - "#snapshot-root-concept": { + "#snapshot-containing-block-concept": { "current": { - "number": "5.2", + "number": "4.1", "spec": "CSS View Transitions 1", - "text": "The snapshot root", - "url": "https://drafts.csswg.org/css-view-transitions-1/#snapshot-root-concept" - } - }, - "#snapshot-viewport-concept": { + "text": "The Snapshot Containing Block", + "url": "https://drafts.csswg.org/css-view-transitions-1/#snapshot-containing-block-concept" + }, "snapshot": { - "number": "6.2", + "number": "4.1", "spec": "CSS View Transitions 1", - "text": "The snapshot viewport", - "url": "https://www.w3.org/TR/css-view-transitions-1/#snapshot-viewport-concept" + "text": "The Snapshot Containing Block", + "url": "https://www.w3.org/TR/css-view-transitions-1/#snapshot-containing-block-concept" } }, "#sotd": { @@ -545,13 +753,13 @@ }, "#style-transition-pseudo-elements-algorithm": { "current": { - "number": "7.8", + "number": "7.9", "spec": "CSS View Transitions 1", "text": "Update pseudo-element styles", "url": "https://drafts.csswg.org/css-view-transitions-1/#style-transition-pseudo-elements-algorithm" }, "snapshot": { - "number": "8.9", + "number": "7.8", "spec": "CSS View Transitions 1", "text": "Update pseudo-element styles", "url": "https://www.w3.org/TR/css-view-transitions-1/#style-transition-pseudo-elements-algorithm" @@ -565,7 +773,7 @@ "url": "https://drafts.csswg.org/css-view-transitions-1/#the-domtransition-interface" }, "snapshot": { - "number": "7.2", + "number": "6.2", "spec": "CSS View Transitions 1", "text": "The ViewTransition interface", "url": "https://www.w3.org/TR/css-view-transitions-1/#the-domtransition-interface" @@ -601,75 +809,99 @@ }, "#transitions-as-enhancements": { "current": { - "number": "1.3", + "number": "1.4", "spec": "CSS View Transitions 1", "text": "Transitions as an enhancement", "url": "https://drafts.csswg.org/css-view-transitions-1/#transitions-as-enhancements" }, "snapshot": { - "number": "2", + "number": "1.4", "spec": "CSS View Transitions 1", "text": "Transitions as an enhancement", "url": "https://www.w3.org/TR/css-view-transitions-1/#transitions-as-enhancements" } }, - "#ua-keyframes": { - "snapshot": { - "number": "4", - "spec": "CSS View Transitions 1", - "text": "User-agent keyframes", - "url": "https://www.w3.org/TR/css-view-transitions-1/#ua-keyframes" - } - }, "#ua-styles": { "current": { - "number": "3", + "number": "5", "spec": "CSS View Transitions 1", - "text": "User-agent styles", + "text": "User Agent Stylesheet", "url": "https://drafts.csswg.org/css-view-transitions-1/#ua-styles" - } - }, - "#update-transition-dom-algorithm": { + }, "snapshot": { - "number": "8.6", + "number": "5", "spec": "CSS View Transitions 1", - "text": "Update transition DOM", - "url": "https://www.w3.org/TR/css-view-transitions-1/#update-transition-dom-algorithm" + "text": "User Agent Stylesheet", + "url": "https://www.w3.org/TR/css-view-transitions-1/#ua-styles" } }, "#view-transition-name-prop": { "current": { "number": "2.1", "spec": "CSS View Transitions 1", - "text": "view-transition-name", + "text": "Tagging Individually Transitioning Subtrees: the view-transition-name property", "url": "https://drafts.csswg.org/css-view-transitions-1/#view-transition-name-prop" }, "snapshot": { - "number": "3.1", + "number": "2.1", "spec": "CSS View Transitions 1", - "text": "view-transition-name", + "text": "Tagging Individually Transitioning Subtrees: the view-transition-name property", "url": "https://www.w3.org/TR/css-view-transitions-1/#view-transition-name-prop" } }, + "#view-transition-pseudo": { + "current": { + "number": "3.2.2", + "spec": "CSS View Transitions 1", + "text": "View Transition Tree Root: the ::view-transition pseudo-element", + "url": "https://drafts.csswg.org/css-view-transitions-1/#view-transition-pseudo" + }, + "snapshot": { + "number": "3.2.2", + "spec": "CSS View Transitions 1", + "text": "View Transition Tree Root: the ::view-transition pseudo-element", + "url": "https://www.w3.org/TR/css-view-transitions-1/#view-transition-pseudo" + } + }, "#view-transition-pseudos": { "current": { - "number": "4.3", + "number": "3.2", "spec": "CSS View Transitions 1", - "text": "View transition pseudo-elements", + "text": "View Transition Pseudo-elements", "url": "https://drafts.csswg.org/css-view-transitions-1/#view-transition-pseudos" + }, + "snapshot": { + "number": "3.2", + "spec": "CSS View Transitions 1", + "text": "View Transition Pseudo-elements", + "url": "https://www.w3.org/TR/css-view-transitions-1/#view-transition-pseudos" + } + }, + "#view-transition-rendering": { + "current": { + "number": "4", + "spec": "CSS View Transitions 1", + "text": "View Transition Layout", + "url": "https://drafts.csswg.org/css-view-transitions-1/#view-transition-rendering" + }, + "snapshot": { + "number": "4", + "spec": "CSS View Transitions 1", + "text": "View Transition Layout", + "url": "https://www.w3.org/TR/css-view-transitions-1/#view-transition-rendering" } }, "#view-transition-stacking-layer": { "current": { - "number": "5.3", + "number": "4.2", "spec": "CSS View Transitions 1", - "text": "The view-transition layer stacking layer", + "text": "View Transition Painting Order", "url": "https://drafts.csswg.org/css-view-transitions-1/#view-transition-stacking-layer" }, "snapshot": { - "number": "6.3", + "number": "4.2", "spec": "CSS View Transitions 1", - "text": "The view-transition layer stacking layer", + "text": "View Transition Painting Order", "url": "https://www.w3.org/TR/css-view-transitions-1/#view-transition-stacking-layer" } }, @@ -729,6 +961,14 @@ "url": "https://www.w3.org/TR/css-view-transitions-1/#w3c-conventions" } }, + "#w3c-cr-exit-criteria": { + "snapshot": { + "number": "", + "spec": "CSS View Transitions 1", + "text": "CR exit criteria", + "url": "https://www.w3.org/TR/css-view-transitions-1/#w3c-cr-exit-criteria" + } + }, "#w3c-partial": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-2.json b/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-2.json new file mode 100644 index 0000000000..a5438fb9ef --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-css-view-transitions-2.json @@ -0,0 +1,992 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Abstract", + "url": "https://drafts.csswg.org/css-view-transitions-2/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Abstract", + "url": "https://www.w3.org/TR/css-view-transitions-2/#abstract" + } + }, + "#access-view-transition-in-new-doc": { + "current": { + "number": "7.4", + "spec": "CSS View Transitions 2", + "text": "Activating the view transition in the new Document", + "url": "https://drafts.csswg.org/css-view-transitions-2/#access-view-transition-in-new-doc" + }, + "snapshot": { + "number": "6.4", + "spec": "CSS View Transitions 2", + "text": "Activating the view transition in the new Document", + "url": "https://www.w3.org/TR/css-view-transitions-2/#access-view-transition-in-new-doc" + } + }, + "#activating-cross-document-view-transition": { + "current": { + "number": "2.1.1", + "spec": "CSS View Transitions 2", + "text": "Activation", + "url": "https://drafts.csswg.org/css-view-transitions-2/#activating-cross-document-view-transition" + }, + "snapshot": { + "number": "2.1.1", + "spec": "CSS View Transitions 2", + "text": "Activation", + "url": "https://www.w3.org/TR/css-view-transitions-2/#activating-cross-document-view-transition" + } + }, + "#active-view-transition-pseudo-examples": { + "current": { + "number": "3.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://drafts.csswg.org/css-view-transitions-2/#active-view-transition-pseudo-examples" + }, + "snapshot": { + "number": "3.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://www.w3.org/TR/css-view-transitions-2/#active-view-transition-pseudo-examples" + } + }, + "#algorithms": { + "current": { + "number": "7", + "spec": "CSS View Transitions 2", + "text": "Algorithms", + "url": "https://drafts.csswg.org/css-view-transitions-2/#algorithms" + }, + "snapshot": { + "number": "6", + "spec": "CSS View Transitions 2", + "text": "Algorithms", + "url": "https://www.w3.org/TR/css-view-transitions-2/#algorithms" + } + }, + "#capture-classes-data-structure": { + "current": { + "number": "7.1.4", + "spec": "CSS View Transitions 2", + "text": "Captured elements extension", + "url": "https://drafts.csswg.org/css-view-transitions-2/#capture-classes-data-structure" + }, + "snapshot": { + "number": "6.1.4", + "spec": "CSS View Transitions 2", + "text": "Captured elements extension", + "url": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure" + } + }, + "#check-eligibility": { + "current": { + "number": "7.3.1", + "spec": "CSS View Transitions 2", + "text": "Check eligibility for outbound cross-document view transition", + "url": "https://drafts.csswg.org/css-view-transitions-2/#check-eligibility" + }, + "snapshot": { + "number": "6.3.1", + "spec": "CSS View Transitions 2", + "text": "Check eligibility for outbound cross-document view transition", + "url": "https://www.w3.org/TR/css-view-transitions-2/#check-eligibility" + } + }, + "#cross-doc-after-capture": { + "current": { + "number": "7.3.5", + "spec": "CSS View Transitions 2", + "text": "Proceed with cross-document view transition after capturing the old state", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-after-capture" + }, + "snapshot": { + "number": "6.3.5", + "spec": "CSS View Transitions 2", + "text": "Proceed with cross-document view transition after capturing the old state", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-after-capture" + } + }, + "#cross-doc-data-structure-document": { + "current": { + "number": "7.1.1", + "spec": "CSS View Transitions 2", + "text": "Additions to Document", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-data-structure-document" + }, + "snapshot": { + "number": "6.1.1", + "spec": "CSS View Transitions 2", + "text": "Additions to Document", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-document" + } + }, + "#cross-doc-data-structure-serialization": { + "current": { + "number": "7.1.3", + "spec": "CSS View Transitions 2", + "text": "Serializable view transition params", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-data-structure-serialization" + }, + "snapshot": { + "number": "6.1.3", + "spec": "CSS View Transitions 2", + "text": "Serializable view transition params", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-serialization" + } + }, + "#cross-doc-data-structure-vt": { + "current": { + "number": "7.1.2", + "spec": "CSS View Transitions 2", + "text": "Additions to ViewTransition", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-data-structure-vt" + }, + "snapshot": { + "number": "6.1.2", + "spec": "CSS View Transitions 2", + "text": "Additions to ViewTransition", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-vt" + } + }, + "#cross-doc-data-structures": { + "current": { + "number": "7.1", + "spec": "CSS View Transitions 2", + "text": "Data structures", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-data-structures" + }, + "snapshot": { + "number": "6.1", + "spec": "CSS View Transitions 2", + "text": "Data structures", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structures" + } + }, + "#cross-doc-examples": { + "current": { + "number": "2.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-examples" + }, + "snapshot": { + "number": "2.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-examples" + } + }, + "#cross-doc-opt-in": { + "current": { + "number": "2.3", + "spec": "CSS View Transitions 2", + "text": "Opting in to cross-document view transitions", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-opt-in" + }, + "snapshot": { + "number": "2.3", + "spec": "CSS View Transitions 2", + "text": "Opting in to cross-document view transitions", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-opt-in" + } + }, + "#cross-doc-overview": { + "current": { + "number": "2.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-overview" + }, + "snapshot": { + "number": "2.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-overview" + } + }, + "#cross-document-view-transitions": { + "current": { + "number": "2", + "spec": "CSS View Transitions 2", + "text": "Cross-document view transitions", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cross-document-view-transitions" + }, + "snapshot": { + "number": "2", + "spec": "CSS View Transitions 2", + "text": "Cross-document view transitions", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cross-document-view-transitions" + } + }, + "#cssom": { + "current": { + "number": "2.3.3", + "spec": "CSS View Transitions 2", + "text": "Accessing the @view-transition rule using CSSOM", + "url": "https://drafts.csswg.org/css-view-transitions-2/#cssom" + }, + "snapshot": { + "number": "2.3.3", + "spec": "CSS View Transitions 2", + "text": "Accessing the @view-transition rule using CSSOM", + "url": "https://www.w3.org/TR/css-view-transitions-2/#cssom" + } + }, + "#customizing-cross-document-view-transitions": { + "current": { + "number": "2.1.3", + "spec": "CSS View Transitions 2", + "text": "Customization", + "url": "https://drafts.csswg.org/css-view-transitions-2/#customizing-cross-document-view-transitions" + }, + "snapshot": { + "number": "2.1.3", + "spec": "CSS View Transitions 2", + "text": "Customization", + "url": "https://www.w3.org/TR/css-view-transitions-2/#customizing-cross-document-view-transitions" + } + }, + "#extend-document-types": { + "current": { + "number": "5", + "spec": "CSS View Transitions 2", + "text": "Extending document.startViewTransition()", + "url": "https://drafts.csswg.org/css-view-transitions-2/#extend-document-types" + }, + "snapshot": { + "number": "5", + "spec": "CSS View Transitions 2", + "text": "Extending document.startViewTransition()", + "url": "https://www.w3.org/TR/css-view-transitions-2/#extend-document-types" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "IDL Index", + "url": "https://drafts.csswg.org/css-view-transitions-2/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "IDL Index", + "url": "https://www.w3.org/TR/css-view-transitions-2/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Index", + "url": "https://drafts.csswg.org/css-view-transitions-2/#index" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Index", + "url": "https://www.w3.org/TR/css-view-transitions-2/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-view-transitions-2/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-view-transitions-2/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-view-transitions-2/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-view-transitions-2/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-view-transitions-2/#informative" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Informative References", + "url": "https://www.w3.org/TR/css-view-transitions-2/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "CSS View Transitions 2", + "text": "Introduction", + "url": "https://drafts.csswg.org/css-view-transitions-2/#intro" + }, + "snapshot": { + "number": "1", + "spec": "CSS View Transitions 2", + "text": "Introduction", + "url": "https://www.w3.org/TR/css-view-transitions-2/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-view-transitions-2/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-view-transitions-2/#issues-index" + } + }, + "#lifecycle": { + "current": { + "number": "2.1.4", + "spec": "CSS View Transitions 2", + "text": "Lifecycle", + "url": "https://drafts.csswg.org/css-view-transitions-2/#lifecycle" + }, + "snapshot": { + "number": "2.1.4", + "spec": "CSS View Transitions 2", + "text": "Lifecycle", + "url": "https://www.w3.org/TR/css-view-transitions-2/#lifecycle" + } + }, + "#nested-overview": { + "current": { + "number": "6.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://drafts.csswg.org/css-view-transitions-2/#nested-overview" + } + }, + "#nested-view-transitions": { + "current": { + "number": "6", + "spec": "CSS View Transitions 2", + "text": "Nested view-transitions", + "url": "https://drafts.csswg.org/css-view-transitions-2/#nested-view-transitions" + } + }, + "#nested-vt-example": { + "current": { + "number": "6.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://drafts.csswg.org/css-view-transitions-2/#nested-vt-example" + } + }, + "#new-doc-event": { + "current": { + "number": "2.1.3.2", + "spec": "CSS View Transitions 2", + "text": "Handling the view transition in the new document", + "url": "https://drafts.csswg.org/css-view-transitions-2/#new-doc-event" + }, + "snapshot": { + "number": "2.1.3.2", + "spec": "CSS View Transitions 2", + "text": "Handling the view transition in the new document", + "url": "https://www.w3.org/TR/css-view-transitions-2/#new-doc-event" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Normative References", + "url": "https://drafts.csswg.org/css-view-transitions-2/#normative" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Normative References", + "url": "https://www.w3.org/TR/css-view-transitions-2/#normative" + } + }, + "#old-doc-event": { + "current": { + "number": "2.1.3.1", + "spec": "CSS View Transitions 2", + "text": "Handling the view transition in the old document", + "url": "https://drafts.csswg.org/css-view-transitions-2/#old-doc-event" + }, + "snapshot": { + "number": "2.1.3.1", + "spec": "CSS View Transitions 2", + "text": "Handling the view transition in the old document", + "url": "https://www.w3.org/TR/css-view-transitions-2/#old-doc-event" + } + }, + "#priv": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-view-transitions-2/#priv" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/css-view-transitions-2/#priv" + } + }, + "#proceed-if-skipped": { + "current": { + "number": "7.3.4", + "spec": "CSS View Transitions 2", + "text": "Proceed with navigation if view transition is skipped", + "url": "https://drafts.csswg.org/css-view-transitions-2/#proceed-if-skipped" + }, + "snapshot": { + "number": "6.3.4", + "spec": "CSS View Transitions 2", + "text": "Proceed with navigation if view transition is skipped", + "url": "https://www.w3.org/TR/css-view-transitions-2/#proceed-if-skipped" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-view-transitions-2/#property-index" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Property Index", + "url": "https://www.w3.org/TR/css-view-transitions-2/#property-index" + } + }, + "#pseudo-classes-for-selective-vt": { + "current": { + "number": "3.3", + "spec": "CSS View Transitions 2", + "text": "Selecting based on the active view transition", + "url": "https://drafts.csswg.org/css-view-transitions-2/#pseudo-classes-for-selective-vt" + }, + "snapshot": { + "number": "3.3", + "spec": "CSS View Transitions 2", + "text": "Selecting based on the active view transition", + "url": "https://www.w3.org/TR/css-view-transitions-2/#pseudo-classes-for-selective-vt" + } + }, + "#pseudo-element-class-additions": { + "current": { + "number": "4.4", + "spec": "CSS View Transitions 2", + "text": "Additions to named view transition pseudo-elements", + "url": "https://drafts.csswg.org/css-view-transitions-2/#pseudo-element-class-additions" + }, + "snapshot": { + "number": "4.4", + "spec": "CSS View Transitions 2", + "text": "Additions to named view transition pseudo-elements", + "url": "https://www.w3.org/TR/css-view-transitions-2/#pseudo-element-class-additions" + } + }, + "#references": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "References", + "url": "https://drafts.csswg.org/css-view-transitions-2/#references" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "References", + "url": "https://www.w3.org/TR/css-view-transitions-2/#references" + } + }, + "#sec": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-view-transitions-2/#sec" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/css-view-transitions-2/#sec" + } + }, + "#selective-vt": { + "current": { + "number": "3", + "spec": "CSS View Transitions 2", + "text": "Selective view transitions", + "url": "https://drafts.csswg.org/css-view-transitions-2/#selective-vt" + }, + "snapshot": { + "number": "3", + "spec": "CSS View Transitions 2", + "text": "Selective view transitions", + "url": "https://www.w3.org/TR/css-view-transitions-2/#selective-vt" + } + }, + "#selective-vt-overview": { + "current": { + "number": "3.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://drafts.csswg.org/css-view-transitions-2/#selective-vt-overview" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://www.w3.org/TR/css-view-transitions-2/#selective-vt-overview" + } + }, + "#setup-old-document-vt": { + "current": { + "number": "7.3", + "spec": "CSS View Transitions 2", + "text": "Setting up the view transition in the old Document", + "url": "https://drafts.csswg.org/css-view-transitions-2/#setup-old-document-vt" + }, + "snapshot": { + "number": "6.3", + "spec": "CSS View Transitions 2", + "text": "Setting up the view transition in the old Document", + "url": "https://www.w3.org/TR/css-view-transitions-2/#setup-old-document-vt" + } + }, + "#setup-outbound-transition": { + "current": { + "number": "7.3.2", + "spec": "CSS View Transitions 2", + "text": "Setup the outbound transition when ready to swap pages", + "url": "https://drafts.csswg.org/css-view-transitions-2/#setup-outbound-transition" + }, + "snapshot": { + "number": "6.3.2", + "spec": "CSS View Transitions 2", + "text": "Setup the outbound transition when ready to swap pages", + "url": "https://www.w3.org/TR/css-view-transitions-2/#setup-outbound-transition" + } + }, + "#shared-style-overview": { + "current": { + "number": "4.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://drafts.csswg.org/css-view-transitions-2/#shared-style-overview" + }, + "snapshot": { + "number": "4.1", + "spec": "CSS View Transitions 2", + "text": "Overview", + "url": "https://www.w3.org/TR/css-view-transitions-2/#shared-style-overview" + } + }, + "#shared-style-with-vt-classes": { + "current": { + "number": "4", + "spec": "CSS View Transitions 2", + "text": "Sharing styles between view transition pseudo-elements", + "url": "https://drafts.csswg.org/css-view-transitions-2/#shared-style-with-vt-classes" + }, + "snapshot": { + "number": "4", + "spec": "CSS View Transitions 2", + "text": "Sharing styles between view transition pseudo-elements", + "url": "https://www.w3.org/TR/css-view-transitions-2/#shared-style-with-vt-classes" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-view-transitions-2/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-view-transitions-2/#sotd" + } + }, + "#the-active-view-transition-pseudo": { + "current": { + "number": "3.3.1", + "spec": "CSS View Transitions 2", + "text": "The :active-view-transition pseudo-class", + "url": "https://drafts.csswg.org/css-view-transitions-2/#the-active-view-transition-pseudo" + }, + "snapshot": { + "number": "3.3.1", + "spec": "CSS View Transitions 2", + "text": "The :active-view-transition pseudo-class", + "url": "https://www.w3.org/TR/css-view-transitions-2/#the-active-view-transition-pseudo" + } + }, + "#the-active-view-transition-type-pseudo": { + "current": { + "number": "3.3.2", + "spec": "CSS View Transitions 2", + "text": "The :active-view-transition-type() pseudo-class", + "url": "https://drafts.csswg.org/css-view-transitions-2/#the-active-view-transition-type-pseudo" + }, + "snapshot": { + "number": "3.3.2", + "spec": "CSS View Transitions 2", + "text": "The :active-view-transition-type() pseudo-class", + "url": "https://www.w3.org/TR/css-view-transitions-2/#the-active-view-transition-type-pseudo" + } + }, + "#title": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "CSS View Transitions Module Level 2", + "url": "https://drafts.csswg.org/css-view-transitions-2/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "CSS View Transitions Module Level 2", + "url": "https://www.w3.org/TR/css-view-transitions-2/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css-view-transitions-2/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-view-transitions-2/#toc" + } + }, + "#types-cross-doc": { + "current": { + "number": "3.5", + "spec": "CSS View Transitions 2", + "text": "Activating the transition type for cross-document view transitions", + "url": "https://drafts.csswg.org/css-view-transitions-2/#types-cross-doc" + }, + "snapshot": { + "number": "3.5", + "spec": "CSS View Transitions 2", + "text": "Activating the transition type for cross-document view transitions", + "url": "https://www.w3.org/TR/css-view-transitions-2/#types-cross-doc" + } + }, + "#update-opt-in": { + "current": { + "number": "7.3.3", + "spec": "CSS View Transitions 2", + "text": "Update the opt-in flag to reflect the current state", + "url": "https://drafts.csswg.org/css-view-transitions-2/#update-opt-in" + }, + "snapshot": { + "number": "6.3.3", + "spec": "CSS View Transitions 2", + "text": "Update the opt-in flag to reflect the current state", + "url": "https://www.w3.org/TR/css-view-transitions-2/#update-opt-in" + } + }, + "#view-transition-class-prop": { + "current": { + "number": "4.3", + "spec": "CSS View Transitions 2", + "text": "The view-transition-class property", + "url": "https://drafts.csswg.org/css-view-transitions-2/#view-transition-class-prop" + }, + "snapshot": { + "number": "4.3", + "spec": "CSS View Transitions 2", + "text": "The view-transition-class property", + "url": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-class-prop" + } + }, + "#view-transition-descriptor-table": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "@view-transition Descriptors", + "url": "https://drafts.csswg.org/css-view-transitions-2/#view-transition-descriptor-table" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "@view-transition Descriptors", + "url": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-descriptor-table" + } + }, + "#view-transition-group-prop": { + "current": { + "number": "6.3", + "spec": "CSS View Transitions 2", + "text": "The view-transition-group property", + "url": "https://drafts.csswg.org/css-view-transitions-2/#view-transition-group-prop" + } + }, + "#view-transition-navigation-descriptor": { + "current": { + "number": "2.3.2", + "spec": "CSS View Transitions 2", + "text": "The navigation descriptor", + "url": "https://drafts.csswg.org/css-view-transitions-2/#view-transition-navigation-descriptor" + }, + "snapshot": { + "number": "2.3.2", + "spec": "CSS View Transitions 2", + "text": "The navigation descriptor", + "url": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-navigation-descriptor" + } + }, + "#view-transition-rule": { + "current": { + "number": "2.3.1", + "spec": "CSS View Transitions 2", + "text": "The @view-transition rule", + "url": "https://drafts.csswg.org/css-view-transitions-2/#view-transition-rule" + }, + "snapshot": { + "number": "2.3.1", + "spec": "CSS View Transitions 2", + "text": "The @view-transition rule", + "url": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-rule" + } + }, + "#view-transitions-extension-types": { + "current": { + "number": "3.4", + "spec": "CSS View Transitions 2", + "text": "Changing the types of an ongoing view transition", + "url": "https://drafts.csswg.org/css-view-transitions-2/#view-transitions-extension-types" + }, + "snapshot": { + "number": "3.4", + "spec": "CSS View Transitions 2", + "text": "Changing the types of an ongoing view transition", + "url": "https://www.w3.org/TR/css-view-transitions-2/#view-transitions-extension-types" + } + }, + "#vt-class-algorithms": { + "current": { + "number": "7.5", + "spec": "CSS View Transitions 2", + "text": "Capturing the view-transition-class", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-class-algorithms" + }, + "snapshot": { + "number": "6.5", + "spec": "CSS View Transitions 2", + "text": "Capturing the view-transition-class", + "url": "https://www.w3.org/TR/css-view-transitions-2/#vt-class-algorithms" + } + }, + "#vt-class-example": { + "current": { + "number": "4.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-class-example" + }, + "snapshot": { + "number": "4.2", + "spec": "CSS View Transitions 2", + "text": "Examples", + "url": "https://www.w3.org/TR/css-view-transitions-2/#vt-class-example" + } + }, + "#vt-group-algorithm": { + "current": { + "number": "7.6", + "spec": "CSS View Transitions 2", + "text": "Capturing and applying view-transition-group", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-algorithm" + } + }, + "#vt-group-capture-new": { + "current": { + "number": "7.6.3", + "spec": "CSS View Transitions 2", + "text": "Compute the new view-transition-group", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-capture-new" + } + }, + "#vt-group-capture-old": { + "current": { + "number": "7.6.2", + "spec": "CSS View Transitions 2", + "text": "Compute the old view-transition-group", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-capture-old" + } + }, + "#vt-group-nearest-contain": { + "current": { + "number": "7.6.1", + "spec": "CSS View Transitions 2", + "text": "Compute the nearest containing view-transition-group", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-nearest-contain" + } + }, + "#vt-group-reparent": { + "current": { + "number": "7.6.4", + "spec": "CSS View Transitions 2", + "text": "Reparent a ::view-transition-group() to its specified containing group", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-reparent" + } + }, + "#vt-group-transform-adjust": { + "current": { + "number": "7.6.5", + "spec": "CSS View Transitions 2", + "text": "Adjust the group’s transform to be relative to its containing ::view-transition-group()", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-transform-adjust" + } + }, + "#vt-rule-algo": { + "current": { + "number": "7.2", + "spec": "CSS View Transitions 2", + "text": "Resolving the @view-transition rule", + "url": "https://drafts.csswg.org/css-view-transitions-2/#vt-rule-algo" + }, + "snapshot": { + "number": "6.2", + "spec": "CSS View Transitions 2", + "text": "Resolving the @view-transition rule", + "url": "https://www.w3.org/TR/css-view-transitions-2/#vt-rule-algo" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-view-transitions-2/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-view-transitions-2/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-view-transitions-2/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-view-transitions-2/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-view-transitions-2/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-view-transitions-2/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-view-transitions-2/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-view-transitions-2/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-view-transitions-2/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-view-transitions-2/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-view-transitions-2/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS View Transitions 2", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-view-transitions-2/#w3c-testing" + } + }, + "#waiting-for-stable-state": { + "current": { + "number": "2.1.2", + "spec": "CSS View Transitions 2", + "text": "Waiting for the new state to stabilize", + "url": "https://drafts.csswg.org/css-view-transitions-2/#waiting-for-stable-state" + }, + "snapshot": { + "number": "2.1.2", + "spec": "CSS View Transitions 2", + "text": "Waiting for the new state to stabilize", + "url": "https://www.w3.org/TR/css-view-transitions-2/#waiting-for-stable-state" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-viewport-1.json b/bikeshed/spec-data/readonly/headings/headings-css-viewport-1.json new file mode 100644 index 0000000000..0b1a13a12b --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-css-viewport-1.json @@ -0,0 +1,458 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Abstract", + "url": "https://drafts.csswg.org/css-viewport/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Abstract", + "url": "https://www.w3.org/TR/css-viewport-1/#abstract" + } + }, + "#changes": { + "current": { + "number": "A", + "spec": "CSS Viewport 1", + "text": "Changes", + "url": "https://drafts.csswg.org/css-viewport/#changes" + }, + "snapshot": { + "number": "A", + "spec": "CSS Viewport 1", + "text": "Changes", + "url": "https://www.w3.org/TR/css-viewport-1/#changes" + } + }, + "#extend-to-zoom": { + "current": { + "number": "3.3", + "spec": "CSS Viewport 1", + "text": "extend-to-zoom", + "url": "https://drafts.csswg.org/css-viewport/#extend-to-zoom" + }, + "snapshot": { + "number": "3.3", + "spec": "CSS Viewport 1", + "text": "extend-to-zoom", + "url": "https://www.w3.org/TR/css-viewport-1/#extend-to-zoom" + } + }, + "#extensions-to-the-window-interface": { + "current": { + "number": "5", + "spec": "CSS Viewport 1", + "text": "Extensions to the Window Interface", + "url": "https://drafts.csswg.org/css-viewport/#extensions-to-the-window-interface" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "IDL Index", + "url": "https://drafts.csswg.org/css-viewport/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Index", + "url": "https://drafts.csswg.org/css-viewport/#index" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Index", + "url": "https://www.w3.org/TR/css-viewport-1/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css-viewport/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/css-viewport-1/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css-viewport/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/css-viewport-1/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Informative References", + "url": "https://drafts.csswg.org/css-viewport/#informative" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Informative References", + "url": "https://www.w3.org/TR/css-viewport-1/#informative" + } + }, + "#interaction-with-virtualkeyboard-overlayscontent": { + "current": { + "number": "3.4.1", + "spec": "CSS Viewport 1", + "text": "Interaction with virtualKeyboard.overlaysContent", + "url": "https://drafts.csswg.org/css-viewport/#interaction-with-virtualkeyboard-overlayscontent" + }, + "snapshot": { + "number": "3.4.1", + "spec": "CSS Viewport 1", + "text": "Interaction with virtualKeyboard.overlaysContent", + "url": "https://www.w3.org/TR/css-viewport-1/#interaction-with-virtualkeyboard-overlayscontent" + } + }, + "#interactive-widget-section": { + "current": { + "number": "3.4", + "spec": "CSS Viewport 1", + "text": "interactive-widget", + "url": "https://drafts.csswg.org/css-viewport/#interactive-widget-section" + }, + "snapshot": { + "number": "3.4", + "spec": "CSS Viewport 1", + "text": "interactive-widget", + "url": "https://www.w3.org/TR/css-viewport-1/#interactive-widget-section" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "CSS Viewport 1", + "text": "Introduction", + "url": "https://drafts.csswg.org/css-viewport/#intro" + }, + "snapshot": { + "number": "1", + "spec": "CSS Viewport 1", + "text": "Introduction", + "url": "https://www.w3.org/TR/css-viewport-1/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Issues Index", + "url": "https://drafts.csswg.org/css-viewport/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Issues Index", + "url": "https://www.w3.org/TR/css-viewport-1/#issues-index" + } + }, + "#meta-properties": { + "current": { + "number": "3.1", + "spec": "CSS Viewport 1", + "text": "Properties", + "url": "https://drafts.csswg.org/css-viewport/#meta-properties" + }, + "snapshot": { + "number": "3.1", + "spec": "CSS Viewport 1", + "text": "Properties", + "url": "https://www.w3.org/TR/css-viewport-1/#meta-properties" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Normative References", + "url": "https://drafts.csswg.org/css-viewport/#normative" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Normative References", + "url": "https://www.w3.org/TR/css-viewport-1/#normative" + } + }, + "#parsing-algorithm": { + "current": { + "number": "3.2", + "spec": "CSS Viewport 1", + "text": "Parsing algorithm", + "url": "https://drafts.csswg.org/css-viewport/#parsing-algorithm" + }, + "snapshot": { + "number": "3.2", + "spec": "CSS Viewport 1", + "text": "Parsing algorithm", + "url": "https://www.w3.org/TR/css-viewport-1/#parsing-algorithm" + } + }, + "#property-index": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Property Index", + "url": "https://drafts.csswg.org/css-viewport/#property-index" + } + }, + "#references": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "References", + "url": "https://drafts.csswg.org/css-viewport/#references" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "References", + "url": "https://www.w3.org/TR/css-viewport-1/#references" + } + }, + "#segments": { + "current": { + "number": "7", + "spec": "CSS Viewport 1", + "text": "The segments property", + "url": "https://drafts.csswg.org/css-viewport/#segments" + } + }, + "#since-the-15-september-2011-first-public-working-draft": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Since the 15 September 2011 First Public Working Draft.", + "url": "https://drafts.csswg.org/css-viewport/#since-the-15-september-2011-first-public-working-draft" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Since the 15 September 2011 First Public Working Draft.", + "url": "https://www.w3.org/TR/css-viewport-1/#since-the-15-september-2011-first-public-working-draft" + } + }, + "#since-the-29-march-2016-working-draft": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Since the 29 March 2016 Working Draft", + "url": "https://drafts.csswg.org/css-viewport/#since-the-29-march-2016-working-draft" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Since the 29 March 2016 Working Draft", + "url": "https://www.w3.org/TR/css-viewport-1/#since-the-29-march-2016-working-draft" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css-viewport/#sotd" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Status of this document", + "url": "https://www.w3.org/TR/css-viewport-1/#sotd" + } + }, + "#the-viewport": { + "current": { + "number": "2", + "spec": "CSS Viewport 1", + "text": "The viewport", + "url": "https://drafts.csswg.org/css-viewport/#the-viewport" + }, + "snapshot": { + "number": "2", + "spec": "CSS Viewport 1", + "text": "The viewport", + "url": "https://www.w3.org/TR/css-viewport-1/#the-viewport" + } + }, + "#the-viewport-interface": { + "current": { + "number": "6.1", + "spec": "CSS Viewport 1", + "text": "The Viewport Interface", + "url": "https://drafts.csswg.org/css-viewport/#the-viewport-interface" + } + }, + "#title": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "CSS Viewport Module Level 1", + "url": "https://drafts.csswg.org/css-viewport/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "CSS Viewport Module Level 1", + "url": "https://www.w3.org/TR/css-viewport-1/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css-viewport/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/css-viewport-1/#toc" + } + }, + "#viewport": { + "current": { + "number": "6", + "spec": "CSS Viewport 1", + "text": "Viewport", + "url": "https://drafts.csswg.org/css-viewport/#viewport" + } + }, + "#viewport-meta": { + "current": { + "number": "3", + "spec": "CSS Viewport 1", + "text": "Viewport <meta> element", + "url": "https://drafts.csswg.org/css-viewport/#viewport-meta" + }, + "snapshot": { + "number": "3", + "spec": "CSS Viewport 1", + "text": "Viewport <meta> element", + "url": "https://www.w3.org/TR/css-viewport-1/#viewport-meta" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css-viewport/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/css-viewport-1/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Conformance", + "url": "https://drafts.csswg.org/css-viewport/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Conformance", + "url": "https://www.w3.org/TR/css-viewport-1/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css-viewport/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/css-viewport-1/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css-viewport/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Document conventions", + "url": "https://www.w3.org/TR/css-viewport-1/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css-viewport/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/css-viewport-1/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css-viewport/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "CSS Viewport 1", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/css-viewport-1/#w3c-testing" + } + }, + "#zoom-om": { + "current": { + "number": "4.1", + "spec": "CSS Viewport 1", + "text": "DOM and CSSOM interaction", + "url": "https://drafts.csswg.org/css-viewport/#zoom-om" + } + }, + "#zoom-property": { + "current": { + "number": "4", + "spec": "CSS Viewport 1", + "text": "The zoom property", + "url": "https://drafts.csswg.org/css-viewport/#zoom-property" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-viewport.json b/bikeshed/spec-data/readonly/headings/headings-css-viewport.json deleted file mode 100644 index db6d5a8eb9..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-css-viewport.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "#abstract": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Abstract", - "url": "https://drafts.csswg.org/css-viewport/#abstract" - } - }, - "#changes": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Appendix A. Changes", - "url": "https://drafts.csswg.org/css-viewport/#changes" - } - }, - "#extend-to-zoom": { - "current": { - "number": "3.3", - "spec": "CSS Viewport 1", - "text": "extend-to-zoom", - "url": "https://drafts.csswg.org/css-viewport/#extend-to-zoom" - } - }, - "#index": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Index", - "url": "https://drafts.csswg.org/css-viewport/#index" - } - }, - "#index-defined-elsewhere": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Terms defined by reference", - "url": "https://drafts.csswg.org/css-viewport/#index-defined-elsewhere" - } - }, - "#index-defined-here": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Terms defined by this specification", - "url": "https://drafts.csswg.org/css-viewport/#index-defined-here" - } - }, - "#informative": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Informative References", - "url": "https://drafts.csswg.org/css-viewport/#informative" - } - }, - "#interaction-with-virtualkeyboard-overlayscontent": { - "current": { - "number": "3.4.1", - "spec": "CSS Viewport 1", - "text": "Interaction with virtualKeyboard.overlaysContent", - "url": "https://drafts.csswg.org/css-viewport/#interaction-with-virtualkeyboard-overlayscontent" - } - }, - "#interactive-widget-section": { - "current": { - "number": "3.4", - "spec": "CSS Viewport 1", - "text": "interactive-widget", - "url": "https://drafts.csswg.org/css-viewport/#interactive-widget-section" - } - }, - "#intro": { - "current": { - "number": "1", - "spec": "CSS Viewport 1", - "text": "Introduction", - "url": "https://drafts.csswg.org/css-viewport/#intro" - } - }, - "#issues-index": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Issues Index", - "url": "https://drafts.csswg.org/css-viewport/#issues-index" - } - }, - "#meta-properties": { - "current": { - "number": "3.1", - "spec": "CSS Viewport 1", - "text": "Properties", - "url": "https://drafts.csswg.org/css-viewport/#meta-properties" - } - }, - "#normative": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Normative References", - "url": "https://drafts.csswg.org/css-viewport/#normative" - } - }, - "#parsing-algorithm": { - "current": { - "number": "3.2", - "spec": "CSS Viewport 1", - "text": "Parsing algorithm", - "url": "https://drafts.csswg.org/css-viewport/#parsing-algorithm" - } - }, - "#references": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "References", - "url": "https://drafts.csswg.org/css-viewport/#references" - } - }, - "#sotd": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Status of this document", - "url": "https://drafts.csswg.org/css-viewport/#sotd" - } - }, - "#the-viewport": { - "current": { - "number": "2", - "spec": "CSS Viewport 1", - "text": "The viewport", - "url": "https://drafts.csswg.org/css-viewport/#the-viewport" - } - }, - "#title": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "CSS Viewport Module Level 1", - "url": "https://drafts.csswg.org/css-viewport/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Table of Contents", - "url": "https://drafts.csswg.org/css-viewport/#toc" - } - }, - "#viewport-meta": { - "current": { - "number": "3", - "spec": "CSS Viewport 1", - "text": "Viewport <meta> element", - "url": "https://drafts.csswg.org/css-viewport/#viewport-meta" - } - }, - "#w3c-conform-future-proofing": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Implementations of Unstable and Proprietary Features", - "url": "https://drafts.csswg.org/css-viewport/#w3c-conform-future-proofing" - } - }, - "#w3c-conformance": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Conformance", - "url": "https://drafts.csswg.org/css-viewport/#w3c-conformance" - } - }, - "#w3c-conformance-classes": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Conformance classes", - "url": "https://drafts.csswg.org/css-viewport/#w3c-conformance-classes" - } - }, - "#w3c-conventions": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Document conventions", - "url": "https://drafts.csswg.org/css-viewport/#w3c-conventions" - } - }, - "#w3c-partial": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Partial implementations", - "url": "https://drafts.csswg.org/css-viewport/#w3c-partial" - } - }, - "#w3c-testing": { - "current": { - "number": "", - "spec": "CSS Viewport 1", - "text": "Non-experimental implementations", - "url": "https://drafts.csswg.org/css-viewport/#w3c-testing" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-3.json b/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-3.json index 651f5e78b2..864c221e9b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-3.json @@ -729,15 +729,15 @@ }, "#script-orientations": { "current": { - "number": "", + "number": "A", "spec": "CSS Writing Modes 3", - "text": "Appendix A: Vertical Scripts in Unicode", + "text": "Vertical Scripts in Unicode", "url": "https://drafts.csswg.org/css-writing-modes-3/#script-orientations" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Writing Modes 3", - "text": "Appendix A: Vertical Scripts in Unicode", + "text": "Vertical Scripts in Unicode", "url": "https://www.w3.org/TR/css-writing-modes-3/#script-orientations" } }, @@ -957,7 +957,7 @@ "snapshot": { "number": "", "spec": "CSS Writing Modes 3", - "text": "1204 TestsCSS Writing Modes Level 3", + "text": "CSS Writing Modes Level 3", "url": "https://www.w3.org/TR/css-writing-modes-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-4.json b/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-4.json index 178ca3962b..eed235f78d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-css-writing-modes-4.json @@ -773,15 +773,15 @@ }, "#script-orientations": { "current": { - "number": "", + "number": "A", "spec": "CSS Writing Modes 4", - "text": "Appendix A: Vertical Scripts in Unicode", + "text": "Vertical Scripts in Unicode", "url": "https://drafts.csswg.org/css-writing-modes-4/#script-orientations" }, "snapshot": { - "number": "", + "number": "A", "spec": "CSS Writing Modes 4", - "text": "Appendix A: Vertical Scripts in Unicode", + "text": "Vertical Scripts in Unicode", "url": "https://www.w3.org/TR/css-writing-modes-4/#script-orientations" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-css2.json b/bikeshed/spec-data/readonly/headings/headings-css2.json index e57913f6eb..145b10c3b7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css2.json +++ b/bikeshed/spec-data/readonly/headings/headings-css2.json @@ -1,4 +1,13 @@ { + "#Computing_heights_and_margins": [ + "/visudet#Computing_heights_and_margins" + ], + "#Computing_widths_and_margins": [ + "/visudet#Computing_widths_and_margins" + ], + "#Emacspeak": [ + "/aural#Emacspeak" + ], "#W3C-doctype": { "current": { "number": "", @@ -28,6 +37,21 @@ "#a9.2.4": [ "/changes#a9.2.4" ], + "#abs-non-replaced-height": [ + "/visudet#abs-non-replaced-height" + ], + "#abs-non-replaced-width": [ + "/visudet#abs-non-replaced-width" + ], + "#abs-replaced-height": [ + "/visudet#abs-replaced-height" + ], + "#abs-replaced-width": [ + "/visudet#abs-replaced-width" + ], + "#absolute-positioning": [ + "/visuren#absolute-positioning" + ], "#abstract": { "current": { "number": "", @@ -42,6 +66,129 @@ "url": "https://www.w3.org/TR/CSS21/#abstract" } }, + "#acknowledgements": [ + "/about#acknowledgements" + ], + "#addressing": [ + "/intro#addressing" + ], + "#adjacent-selectors": [ + "/selector#adjacent-selectors" + ], + "#algorithm": [ + "/fonts#algorithm" + ], + "#alignment-prop": [ + "/text#alignment-prop" + ], + "#allowed-page-breaks": [ + "/page#allowed-page-breaks" + ], + "#angles": [ + "/aural#angles" + ], + "#anonymous": [ + "/visuren#anonymous" + ], + "#anonymous-block-level": [ + "/visuren#anonymous-block-level" + ], + "#anonymous-boxes": [ + "/tables#anonymous-boxes" + ], + "#applies-to": [ + "/about#applies-to" + ], + "#at-import": [ + "/cascade#at-import" + ], + "#at-media-rule": [ + "/media#at-media-rule" + ], + "#attribute-selectors": [ + "/selector#attribute-selectors" + ], + "#aural-intro": [ + "/aural#aural-intro" + ], + "#aural-media-group": [ + "/aural#aural-media-group" + ], + "#aural-tables": [ + "/aural#aural-tables" + ], + "#auto-table-layout": [ + "/tables#auto-table-layout" + ], + "#background": [ + "/colors#background" + ], + "#background-properties": [ + "/colors#background-properties" + ], + "#before-after-content": [ + "/generate#before-after-content" + ], + "#before-and-after": [ + "/selector#before-and-after" + ], + "#best-page-breaks": [ + "/page#best-page-breaks" + ], + "#bidi-box-model": [ + "/box#bidi-box-model" + ], + "#block": [ + "/syndata#block" + ], + "#block-boxes": [ + "/visuren#block-boxes" + ], + "#block-formatting": [ + "/visuren#block-formatting" + ], + "#block-replaced-width": [ + "/visudet#block-replaced-width" + ], + "#block-root-margin": [ + "/visudet#block-root-margin" + ], + "#blockwidth": [ + "/visudet#blockwidth" + ], + "#border-color-properties": [ + "/box#border-color-properties" + ], + "#border-conflict-resolution": [ + "/tables#border-conflict-resolution" + ], + "#border-properties": [ + "/box#border-properties" + ], + "#border-shorthand-properties": [ + "/box#border-shorthand-properties" + ], + "#border-style-properties": [ + "/box#border-style-properties" + ], + "#border-width-properties": [ + "/box#border-width-properties" + ], + "#borders": [ + "/tables#borders" + ], + "#box-dimensions": [ + "/box#box-dimensions" + ], + "#box-gen": [ + "/visuren#box-gen" + ], + "#box-model": [ + "/box#box-model" + ], + "#break-inside": [ + "/page#break-inside" + ], "#c1.1": [ "/changes#c1.1" ], @@ -435,12 +582,560 @@ "#cB": [ "/changes#cB" ], + "#caps-prop": [ + "/text#caps-prop" + ], + "#caption-position": [ + "/tables#caption-position" + ], + "#cascade": [ + "/cascade#cascade" + ], + "#cascading-order": [ + "/cascade#cascading-order" + ], + "#changes": [ + "/changes#changes" + ], + "#characters": [ + "/syndata#characters" + ], + "#charset": [ + "/syndata#charset" + ], + "#child-selectors": [ + "/selector#child-selectors" + ], + "#choose-position": [ + "/visuren#choose-position" + ], + "#clarifications": [ + "/changes#clarifications" + ], + "#class-html": [ + "/selector#class-html" + ], + "#clipping": [ + "/visufx#clipping" + ], + "#collapsing-borders": [ + "/tables#collapsing-borders" + ], + "#collapsing-margins": [ + "/box#collapsing-margins" + ], + "#color-units": [ + "/syndata#color-units" + ], + "#colors": [ + "/colors#colors" + ], + "#column-alignment": [ + "/tables#column-alignment" + ], + "#columns": [ + "/tables#columns" + ], + "#comments": [ + "/syndata#comments" + ], + "#comp-abspos": [ + "/visuren#comp-abspos" + ], + "#comp-float": [ + "/visuren#comp-float" + ], + "#comp-normal-flow": [ + "/visuren#comp-normal-flow" + ], + "#comp-relpos": [ + "/visuren#comp-relpos" + ], + "#comparison": [ + "/visuren#comparison" + ], + "#computed-defs": [ + "/about#computed-defs" + ], + "#conformance": [ + "/conform#conformance" + ], + "#containing-block-details": [ + "/visudet#containing-block-details" + ], + "#content": [ + "/generate#content" + ], + "#conventions": [ + "/about#conventions" + ], + "#counter": [ + "/syndata#counter" + ], + "#counter-styles": [ + "/generate#counter-styles" + ], + "#css2.1-v-css2": [ + "/about#css2.1-v-css2" + ], + "#ctrlchars": [ + "/text#ctrlchars" + ], + "#cue-props": [ + "/aural#cue-props" + ], + "#cursor-props": [ + "/ui#cursor-props" + ], + "#declaration": [ + "/syndata#declaration" + ], + "#decoration": [ + "/text#decoration" + ], + "#default-attrs": [ + "/selector#default-attrs" + ], + "#defs": [ + "/conform#defs" + ], + "#descendant-selectors": [ + "/selector#descendant-selectors" + ], + "#design-principles": [ + "/intro#design-principles" + ], + "#direction": [ + "/visuren#direction" + ], + "#dis-pos-flo": [ + "/visuren#dis-pos-flo" + ], + "#display-prop": [ + "/visuren#display-prop" + ], + "#doc-language": [ + "/about#doc-language" + ], + "#dynamic-effects": [ + "/tables#dynamic-effects" + ], + "#dynamic-outlines": [ + "/ui#dynamic-outlines" + ], + "#dynamic-pseudo-classes": [ + "/selector#dynamic-pseudo-classes" + ], + "#egbidiwscollapse": [ + "/text#egbidiwscollapse" + ], + "#empty-cells": [ + "/tables#empty-cells" + ], + "#errata": [ + "/changes#errata" + ], + "#errata2": [ + "/changes#errata2" + ], + "#errata3": [ + "/changes#errata3" + ], "#errata4": [ "/changes#errata4" ], + "#errors": [ + "/conform#errors" + ], + "#escaping": [ + "/syndata#escaping" + ], + "#first-child": [ + "/selector#first-child" + ], + "#first-letter": [ + "/selector#first-letter" + ], + "#fixed-positioning": [ + "/visuren#fixed-positioning" + ], + "#fixed-table-layout": [ + "/tables#fixed-table-layout" + ], + "#float-position": [ + "/visuren#float-position" + ], + "#float-replaced-width": [ + "/visudet#float-replaced-width" + ], + "#float-width": [ + "/visudet#float-width" + ], + "#floats": [ + "/visuren#floats" + ], + "#flow-control": [ + "/visuren#flow-control" + ], + "#font-boldness": [ + "/fonts#font-boldness" + ], + "#font-family-prop": [ + "/fonts#font-family-prop" + ], + "#font-shorthand": [ + "/fonts#font-shorthand" + ], + "#font-size-props": [ + "/fonts#font-size-props" + ], + "#font-styling": [ + "/fonts#font-styling" + ], + "#fonts-intro": [ + "/fonts#fonts-intro" + ], + "#forced": [ + "/page#forced" + ], + "#frequencies": [ + "/aural#frequencies" + ], + "#generated-text": [ + "/generate#generated-text" + ], + "#generic-font-families": [ + "/fonts#generic-font-families" + ], + "#grammar": [ + "/grammar#grammar" + ], + "#grouping": [ + "/selector#grouping" + ], + "#height-layout": [ + "/tables#height-layout" + ], + "#html-tutorial": [ + "/intro#html-tutorial" + ], + "#id-selectors": [ + "/selector#id-selectors" + ], + "#images-and-longdesc": [ + "/about#images-and-longdesc" + ], + "#important-rules": [ + "/cascade#important-rules" + ], + "#indentation-prop": [ + "/text#indentation-prop" + ], + "#informative": [ + "/refs#informative" + ], + "#inheritance": [ + "/cascade#inheritance" + ], + "#inherited-prop": [ + "/about#inherited-prop" + ], + "#initial-value": [ + "/about#initial-value" + ], + "#inline-boxes": [ + "/visuren#inline-boxes" + ], + "#inline-formatting": [ + "/visuren#inline-formatting" + ], + "#inline-non-replaced": [ + "/visudet#inline-non-replaced" + ], + "#inline-replaced-height": [ + "/visudet#inline-replaced-height" + ], + "#inline-replaced-width": [ + "/visudet#inline-replaced-width" + ], + "#inline-width": [ + "/visudet#inline-width" + ], + "#inlineblock-replaced-width": [ + "/visudet#inlineblock-replaced-width" + ], + "#inlineblock-width": [ + "/visudet#inlineblock-width" + ], + "#keywords": [ + "/syndata#keywords" + ], + "#known-errors": [ + "/changes#known-errors" + ], + "#lang": [ + "/selector#lang" + ], + "#layers": [ + "/visuren#layers" + ], + "#leading": [ + "/visudet#leading" + ], + "#length-units": [ + "/syndata#length-units" + ], + "#line-height": [ + "/visudet#line-height" + ], + "#lining-striking-props": [ + "/text#lining-striking-props" + ], + "#link-pseudo-classes": [ + "/selector#link-pseudo-classes" + ], + "#list-style": [ + "/generate#list-style" + ], + "#lists": [ + "/generate#lists" + ], + "#magnification": [ + "/ui#magnification" + ], + "#margin-properties": [ + "/box#margin-properties" + ], + "#matching-attrs": [ + "/selector#matching-attrs" + ], + "#media-applies": [ + "/about#media-applies" + ], + "#media-groups": [ + "/media#media-groups" + ], + "#media-intro": [ + "/media#media-intro" + ], + "#media-sheets": [ + "/media#media-sheets" + ], + "#media-types": [ + "/media#media-types" + ], + "#min-max-heights": [ + "/visudet#min-max-heights" + ], + "#min-max-widths": [ + "/visudet#min-max-widths" + ], + "#minitoc": { + "current": { + "number": "", + "spec": "CSS 2.1", + "text": "Quick Table of Contents", + "url": "https://www.w3.org/TR/CSS21/#minitoc" + }, + "snapshot": { + "number": "", + "spec": "CSS 2.1", + "text": "Quick Table of Contents", + "url": "https://www.w3.org/TR/CSS21/#minitoc" + } + }, + "#mixing-props": [ + "/aural#mixing-props" + ], + "#model": [ + "/tables#model" + ], + "#mpb-examples": [ + "/box#mpb-examples" + ], + "#new": [ + "/changes#new" + ], + "#normal-block": [ + "/visudet#normal-block" + ], + "#normal-flow": [ + "/visuren#normal-flow" + ], + "#normative": [ + "/refs#normative" + ], + "#notes-and-examples": [ + "/about#notes-and-examples" + ], + "#numbers": [ + "/syndata#numbers" + ], + "#organization": [ + "/about#organization" + ], "#other": [ "/changes#other" ], + "#outline-focus": [ + "/ui#outline-focus" + ], + "#outside-page-box": [ + "/page#outside-page-box" + ], + "#overflow": [ + "/visufx#overflow" + ], + "#overflow-clipping": [ + "/visufx#overflow-clipping" + ], + "#padding-properties": [ + "/box#padding-properties" + ], + "#page-box": [ + "/page#page-box" + ], + "#page-break-props": [ + "/page#page-break-props" + ], + "#page-breaks": [ + "/page#page-breaks" + ], + "#page-cascade": [ + "/page#page-cascade" + ], + "#page-intro": [ + "/page#page-intro" + ], + "#page-margins": [ + "/page#page-margins" + ], + "#page-selectors": [ + "/page#page-selectors" + ], + "#painting-order": [ + "/zindex#painting-order" + ], + "#parsing-errors": [ + "/syndata#parsing-errors" + ], + "#pattern-matching": [ + "/selector#pattern-matching" + ], + "#pause-props": [ + "/aural#pause-props" + ], + "#percentage-units": [ + "/syndata#percentage-units" + ], + "#percentage-wrt": [ + "/about#percentage-wrt" + ], + "#position-props": [ + "/visuren#position-props" + ], + "#positioning-scheme": [ + "/visuren#positioning-scheme" + ], + "#preshint": [ + "/cascade#preshint" + ], + "#processing-model": [ + "/intro#processing-model" + ], + "#property-defs": [ + "/about#property-defs" + ], + "#pseudo-class-selectors": [ + "/selector#pseudo-class-selectors" + ], + "#pseudo-element-selectors": [ + "/selector#pseudo-element-selectors" + ], + "#pseudo-elements": [ + "/selector#pseudo-elements" + ], + "#q1.0": [ + "/about#q1.0" + ], + "#q10.0": [ + "/visudet#q10.0" + ], + "#q11.0": [ + "/visufx#q11.0" + ], + "#q14.0": [ + "/colors#q14.0" + ], + "#q15.0": [ + "/fonts#q15.0" + ], + "#q16.0": [ + "/text#q16.0" + ], + "#q17.0": [ + "/tables#q17.0" + ], + "#q18.0": [ + "/ui#q18.0" + ], + "#q19.0": [ + "/aural#q19.0" + ], + "#q2.0": [ + "/intro#q2.0" + ], + "#q20.0": [ + "/refs#q20.0" + ], + "#q21.0": [ + "/changes#q21.0" + ], + "#q22.0": [ + "/sample#q22.0" + ], + "#q23.0": [ + "/zindex#q23.0" + ], + "#q24.0": [ + "/propidx#q24.0" + ], + "#q25.0": [ + "/grammar#q25.0" + ], + "#q25.4": [ + "/grammar#q25.4" + ], + "#q27.0": [ + "/indexlist#q27.0" + ], + "#q3.0": [ + "/conform#q3.0" + ], + "#q4.0": [ + "/syndata#q4.0" + ], + "#q5.0": [ + "/selector#q5.0" + ], + "#q6.0": [ + "/cascade#q6.0" + ], + "#q7.0": [ + "/media#q7.0" + ], + "#q9.0": [ + "/visuren#q9.0" + ], + "#quotes": [ + "/generate#quotes" + ], + "#quotes-insert": [ + "/generate#quotes-insert" + ], + "#quotes-specify": [ + "/generate#quotes-specify" + ], "#r10.1": [ "/changes#r10.1" ], @@ -717,6 +1412,21 @@ "#rD": [ "/changes#rD" ], + "#reading": [ + "/about#reading" + ], + "#relative-positioning": [ + "/visuren#relative-positioning" + ], + "#root-height": [ + "/visudet#root-height" + ], + "#rule-sets": [ + "/syndata#rule-sets" + ], + "#run-in": [ + "/visuren#run-in" + ], "#s-12": [ "/changes#s-12" ], @@ -1020,21 +1730,81 @@ "#s.I": [ "/changes#s.I" ], - "#status": { - "current": { - "number": "", - "spec": "CSS 2.1", - "text": "Status of this document", - "url": "https://www.w3.org/TR/CSS21/#status" - }, - "snapshot": { - "number": "", - "spec": "CSS 2.1", - "text": "Status of this document", - "url": "https://www.w3.org/TR/CSS21/#status" - } - }, - "#t.1": [ + "#sample": [ + "/aural#sample" + ], + "#scanner": [ + "/grammar#scanner" + ], + "#scope": [ + "/generate#scope" + ], + "#selector-syntax": [ + "/selector#selector-syntax" + ], + "#separated-borders": [ + "/tables#separated-borders" + ], + "#shorthand": [ + "/about#shorthand" + ], + "#small-caps": [ + "/fonts#small-caps" + ], + "#spacing-props": [ + "/text#spacing-props" + ], + "#spatial-props": [ + "/aural#spatial-props" + ], + "#speak-headers": [ + "/aural#speak-headers" + ], + "#speaking-props": [ + "/aural#speaking-props" + ], + "#specificity": [ + "/cascade#specificity" + ], + "#speech-props": [ + "/aural#speech-props" + ], + "#stacking-defs": [ + "/zindex#stacking-defs" + ], + "#stacking-notes": [ + "/zindex#stacking-notes" + ], + "#statements": [ + "/syndata#statements" + ], + "#status": { + "current": { + "number": "", + "spec": "CSS 2.1", + "text": "Status of this document", + "url": "https://www.w3.org/TR/CSS21/#status" + }, + "snapshot": { + "number": "", + "spec": "CSS 2.1", + "text": "Status of this document", + "url": "https://www.w3.org/TR/CSS21/#status" + } + }, + "#strings": [ + "/syndata#strings" + ], + "#syntax": [ + "/syndata#syntax" + ], + "#system-colors": [ + "/ui#system-colors" + ], + "#system-fonts": [ + "/ui#system-fonts" + ], + "#t.1": [ "/changes#t.1" ], "#t.10.1": [ @@ -1361,6 +2131,36 @@ "#t.G.2": [ "/changes#t.G.2" ], + "#table-border-styles": [ + "/tables#table-border-styles" + ], + "#table-display": [ + "/tables#table-display" + ], + "#table-layers": [ + "/tables#table-layers" + ], + "#table-layout": [ + "/tables#table-layout" + ], + "#tables-intro": [ + "/tables#tables-intro" + ], + "#the-canvas": [ + "/intro#the-canvas" + ], + "#the-height-property": [ + "/visudet#the-height-property" + ], + "#the-page": [ + "/page#the-page" + ], + "#the-width-property": [ + "/visudet#the-width-property" + ], + "#times": [ + "/aural#times" + ], "#title": { "current": { "number": "", @@ -1375,6 +2175,29 @@ "url": "https://www.w3.org/TR/CSS21/#title" } }, + "#toc": { + "current": { + "number": "", + "spec": "CSS 2.1", + "text": "Full Table of Contents", + "url": "https://www.w3.org/TR/CSS21/#toc" + }, + "snapshot": { + "number": "", + "spec": "CSS 2.1", + "text": "Full Table of Contents", + "url": "https://www.w3.org/TR/CSS21/#toc" + } + }, + "#tokenization": [ + "/syndata#tokenization" + ], + "#tokenizer-diffs": [ + "/grammar#tokenizer-diffs" + ], + "#type-selectors": [ + "/selector#type-selectors" + ], "#u.10.1": [ "/changes#u.10.1" ], @@ -1525,6 +2348,57 @@ "#u.9.7": [ "/changes#u.9.7" ], + "#undisplayed-counters": [ + "/generate#undisplayed-counters" + ], + "#universal-selector": [ + "/selector#universal-selector" + ], + "#unsupported-values": [ + "/syndata#unsupported-values" + ], + "#uri": [ + "/syndata#uri" + ], + "#value-defs": [ + "/about#value-defs" + ], + "#value-stages": [ + "/cascade#value-stages" + ], + "#values": [ + "/syndata#values" + ], + "#vendor-keyword-history": [ + "/syndata#vendor-keyword-history" + ], + "#vendor-keywords": [ + "/syndata#vendor-keywords" + ], + "#viewport": [ + "/visuren#viewport" + ], + "#visibility": [ + "/visufx#visibility" + ], + "#visual-model-intro": [ + "/visuren#visual-model-intro" + ], + "#voice-char-props": [ + "/aural#voice-char-props" + ], + "#volume-props": [ + "/aural#volume-props" + ], + "#white-space-model": [ + "/text#white-space-model" + ], + "#white-space-prop": [ + "/text#white-space-prop" + ], + "#width-layout": [ + "/tables#width-layout" + ], "#x-applies-table": [ "/changes#x-applies-table" ], @@ -1681,7592 +2555,11574 @@ "#xE.2": [ "/changes#xE.2" ], - "/changes#a12.2": { + "#xml-tutorial": [ + "/intro#xml-tutorial" + ], + "#z-index": [ + "/visuren#z-index" + ], + "/about#acknowledgements": { "current": { - "number": "C.1.3", + "number": "1.5", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a12.2" + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/CSS21/about.html#acknowledgements" }, "snapshot": { - "number": "C.1.3", + "number": "1.5", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a12.2" + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/CSS21/about.html#acknowledgements" } }, - "/changes#a16.6": { + "/about#applies-to": { "current": { - "number": "C.1.4", + "number": "1.4.2.3", "spec": "CSS 2.1", - "text": "Section 16.6 White space: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a16.6" + "text": "Applies to", + "url": "https://www.w3.org/TR/CSS21/about.html#applies-to" }, "snapshot": { - "number": "C.1.4", + "number": "1.4.2.3", "spec": "CSS 2.1", - "text": "Section 16.6 White space: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a16.6" + "text": "Applies to", + "url": "https://www.w3.org/TR/CSS21/about.html#applies-to" } }, - "/changes#a18.1": { + "/about#computed-defs": { "current": { - "number": "C.1.5", + "number": "1.4.2.7", "spec": "CSS 2.1", - "text": "Section 18.1 Cursors: the 'cursor' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a18.1" + "text": "Computed value", + "url": "https://www.w3.org/TR/CSS21/about.html#computed-defs" }, "snapshot": { - "number": "C.1.5", + "number": "1.4.2.7", "spec": "CSS 2.1", - "text": "Section 18.1 Cursors: the 'cursor' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a18.1" + "text": "Computed value", + "url": "https://www.w3.org/TR/CSS21/about.html#computed-defs" } }, - "/changes#a4.3.6": { + "/about#conventions": { "current": { - "number": "C.1.1", + "number": "1.4", "spec": "CSS 2.1", - "text": "Section 4.3.6 Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#a4.3.6" + "text": "Conventions", + "url": "https://www.w3.org/TR/CSS21/about.html#conventions" }, "snapshot": { - "number": "C.1.1", + "number": "1.4", "spec": "CSS 2.1", - "text": "Section 4.3.6 Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#a4.3.6" + "text": "Conventions", + "url": "https://www.w3.org/TR/CSS21/about.html#conventions" } }, - "/changes#a9.2.4": { + "/about#css2.1-v-css2": { "current": { - "number": "C.1.2", + "number": "1.1", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a9.2.4" + "text": "CSS 2.1 vs CSS 2", + "url": "https://www.w3.org/TR/CSS21/about.html#css2.1-v-css2" }, "snapshot": { - "number": "C.1.2", + "number": "1.1", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#a9.2.4" + "text": "CSS 2.1 vs CSS 2", + "url": "https://www.w3.org/TR/CSS21/about.html#css2.1-v-css2" } }, - "/changes#c1.1": { + "/about#doc-language": { "current": { - "number": "C.2.1", + "number": "1.4.1", "spec": "CSS 2.1", - "text": "Section 1.1 CSS 2.1 vs CSS 2", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.1" + "text": "Document language elements and attributes", + "url": "https://www.w3.org/TR/CSS21/about.html#doc-language" }, "snapshot": { - "number": "C.2.1", + "number": "1.4.1", "spec": "CSS 2.1", - "text": "Section 1.1 CSS 2.1 vs CSS 2", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.1" + "text": "Document language elements and attributes", + "url": "https://www.w3.org/TR/CSS21/about.html#doc-language" } }, - "/changes#c1.2": { + "/about#images-and-longdesc": { "current": { - "number": "C.2.2", + "number": "1.4.5", "spec": "CSS 2.1", - "text": "Section 1.2 Reading the specification", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.2" + "text": "Images and long descriptions", + "url": "https://www.w3.org/TR/CSS21/about.html#images-and-longdesc" }, "snapshot": { - "number": "C.2.2", + "number": "1.4.5", "spec": "CSS 2.1", - "text": "Section 1.2 Reading the specification", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.2" + "text": "Images and long descriptions", + "url": "https://www.w3.org/TR/CSS21/about.html#images-and-longdesc" } }, - "/changes#c1.3": { + "/about#inherited-prop": { "current": { - "number": "C.2.3", + "number": "1.4.2.4", "spec": "CSS 2.1", - "text": "Section 1.3 How the specification is organized", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.3" + "text": "Inherited", + "url": "https://www.w3.org/TR/CSS21/about.html#inherited-prop" }, "snapshot": { - "number": "C.2.3", + "number": "1.4.2.4", "spec": "CSS 2.1", - "text": "Section 1.3 How the specification is organized", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.3" + "text": "Inherited", + "url": "https://www.w3.org/TR/CSS21/about.html#inherited-prop" } }, - "/changes#c1.4.2.1": { + "/about#initial-value": { "current": { - "number": "C.2.4", + "number": "1.4.2.2", "spec": "CSS 2.1", - "text": "Section 1.4.2.1 Value", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.1" + "text": "Initial", + "url": "https://www.w3.org/TR/CSS21/about.html#initial-value" }, "snapshot": { - "number": "C.2.4", + "number": "1.4.2.2", "spec": "CSS 2.1", - "text": "Section 1.4.2.1 Value", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.1" + "text": "Initial", + "url": "https://www.w3.org/TR/CSS21/about.html#initial-value" } }, - "/changes#c1.4.2.6": { + "/about#media-applies": { "current": { - "number": "C.2.5", + "number": "1.4.2.6", "spec": "CSS 2.1", - "text": "Section 1.4.2.6 Media groups", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.6" + "text": "Media groups", + "url": "https://www.w3.org/TR/CSS21/about.html#media-applies" }, "snapshot": { - "number": "C.2.5", + "number": "1.4.2.6", "spec": "CSS 2.1", - "text": "Section 1.4.2.6 Media groups", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.6" + "text": "Media groups", + "url": "https://www.w3.org/TR/CSS21/about.html#media-applies" } }, - "/changes#c1.4.2.7": { + "/about#notes-and-examples": { "current": { - "number": "C.2.6", + "number": "1.4.4", "spec": "CSS 2.1", - "text": "Section 1.4.2.7 Computed value", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.7" + "text": "Notes and examples", + "url": "https://www.w3.org/TR/CSS21/about.html#notes-and-examples" }, "snapshot": { - "number": "C.2.6", + "number": "1.4.4", "spec": "CSS 2.1", - "text": "Section 1.4.2.7 Computed value", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.7" + "text": "Notes and examples", + "url": "https://www.w3.org/TR/CSS21/about.html#notes-and-examples" } }, - "/changes#c1.4.4": { + "/about#organization": { "current": { - "number": "C.2.7", + "number": "1.3", "spec": "CSS 2.1", - "text": "Section 1.4.4 Notes and examples", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.4" + "text": "How the specification is organized", + "url": "https://www.w3.org/TR/CSS21/about.html#organization" }, "snapshot": { - "number": "C.2.7", + "number": "1.3", "spec": "CSS 2.1", - "text": "Section 1.4.4 Notes and examples", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.4" + "text": "How the specification is organized", + "url": "https://www.w3.org/TR/CSS21/about.html#organization" } }, - "/changes#c1.5": { + "/about#percentage-wrt": { "current": { - "number": "C.2.8", + "number": "1.4.2.5", "spec": "CSS 2.1", - "text": "Section 1.5 Acknowledgments", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.5" + "text": "Percentage values", + "url": "https://www.w3.org/TR/CSS21/about.html#percentage-wrt" }, "snapshot": { - "number": "C.2.8", + "number": "1.4.2.5", "spec": "CSS 2.1", - "text": "Section 1.5 Acknowledgments", - "url": "https://www.w3.org/TR/CSS21/changes.html#c1.5" + "text": "Percentage values", + "url": "https://www.w3.org/TR/CSS21/about.html#percentage-wrt" } }, - "/changes#c10": { + "/about#property-defs": { "current": { - "number": "C.2.57", + "number": "1.4.2", "spec": "CSS 2.1", - "text": "Chapter 10 Visual formatting model details", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10" + "text": "CSS property definitions", + "url": "https://www.w3.org/TR/CSS21/about.html#property-defs" }, "snapshot": { - "number": "C.2.57", + "number": "1.4.2", "spec": "CSS 2.1", - "text": "Chapter 10 Visual formatting model details", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10" + "text": "CSS property definitions", + "url": "https://www.w3.org/TR/CSS21/about.html#property-defs" } }, - "/changes#c10.1": { + "/about#q1.0": { "current": { - "number": "C.2.58", + "number": "1", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.1" + "text": "About the CSS 2.1 Specification", + "url": "https://www.w3.org/TR/CSS21/about.html#q1.0" }, "snapshot": { - "number": "C.2.58", + "number": "1", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.1" + "text": "About the CSS 2.1 Specification", + "url": "https://www.w3.org/TR/CSS21/about.html#q1.0" } }, - "/changes#c10.2": { + "/about#reading": { "current": { - "number": "C.2.59", + "number": "1.2", "spec": "CSS 2.1", - "text": "Section 10.2 Content width", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.2" + "text": "Reading the specification", + "url": "https://www.w3.org/TR/CSS21/about.html#reading" }, "snapshot": { - "number": "C.2.59", + "number": "1.2", "spec": "CSS 2.1", - "text": "Section 10.2 Content width", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.2" + "text": "Reading the specification", + "url": "https://www.w3.org/TR/CSS21/about.html#reading" } }, - "/changes#c10.3": { + "/about#shorthand": { "current": { - "number": "C.2.60", + "number": "1.4.3", "spec": "CSS 2.1", - "text": "Section 10.3 Calculating widths and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3" + "text": "Shorthand properties", + "url": "https://www.w3.org/TR/CSS21/about.html#shorthand" }, "snapshot": { - "number": "C.2.60", + "number": "1.4.3", "spec": "CSS 2.1", - "text": "Section 10.3 Calculating widths and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3" + "text": "Shorthand properties", + "url": "https://www.w3.org/TR/CSS21/about.html#shorthand" } }, - "/changes#c10.3.2": { + "/about#value-defs": { "current": { - "number": "C.2.61", + "number": "1.4.2.1", "spec": "CSS 2.1", - "text": "Section 10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.2" + "text": "Value", + "url": "https://www.w3.org/TR/CSS21/about.html#value-defs" }, "snapshot": { - "number": "C.2.61", + "number": "1.4.2.1", "spec": "CSS 2.1", - "text": "Section 10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.2" + "text": "Value", + "url": "https://www.w3.org/TR/CSS21/about.html#value-defs" } }, - "/changes#c10.3.3": { + "/aural#Emacspeak": { "current": { - "number": "C.2.62", + "number": "A.13", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.3" + "text": "Emacspeak", + "url": "https://www.w3.org/TR/CSS21/aural.html#Emacspeak" }, "snapshot": { - "number": "C.2.62", + "number": "A.13", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.3" + "text": "Emacspeak", + "url": "https://www.w3.org/TR/CSS21/aural.html#Emacspeak" } }, - "/changes#c10.3.4": { + "/aural#angles": { "current": { - "number": "C.2.63", + "number": "A.2.1", "spec": "CSS 2.1", - "text": "Section 10.3.4 Block-level, replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.4" + "text": "Angles", + "url": "https://www.w3.org/TR/CSS21/aural.html#angles" }, "snapshot": { - "number": "C.2.63", + "number": "A.2.1", "spec": "CSS 2.1", - "text": "Section 10.3.4 Block-level, replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.4" + "text": "Angles", + "url": "https://www.w3.org/TR/CSS21/aural.html#angles" } }, - "/changes#c10.3.5": { + "/aural#aural-intro": { "current": { - "number": "C.2.64", + "number": "A.2", "spec": "CSS 2.1", - "text": "Section 10.3.5 Floating, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.5" + "text": "Introduction to aural style sheets", + "url": "https://www.w3.org/TR/CSS21/aural.html#aural-intro" }, "snapshot": { - "number": "C.2.64", + "number": "A.2", "spec": "CSS 2.1", - "text": "Section 10.3.5 Floating, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.5" + "text": "Introduction to aural style sheets", + "url": "https://www.w3.org/TR/CSS21/aural.html#aural-intro" } }, - "/changes#c10.3.6": { + "/aural#aural-media-group": { "current": { - "number": "C.2.65", + "number": "A.1", "spec": "CSS 2.1", - "text": "Section 10.3.6 Floating, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.6" + "text": "The media types 'aural' and 'speech'", + "url": "https://www.w3.org/TR/CSS21/aural.html#aural-media-group" }, "snapshot": { - "number": "C.2.65", + "number": "A.1", "spec": "CSS 2.1", - "text": "Section 10.3.6 Floating, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.6" + "text": "The media types 'aural' and 'speech'", + "url": "https://www.w3.org/TR/CSS21/aural.html#aural-media-group" } }, - "/changes#c10.3.7": { + "/aural#aural-tables": { "current": { - "number": "C.2.66", + "number": "A.11", "spec": "CSS 2.1", - "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.7" + "text": "Audio rendering of tables", + "url": "https://www.w3.org/TR/CSS21/aural.html#aural-tables" }, "snapshot": { - "number": "C.2.66", + "number": "A.11", "spec": "CSS 2.1", - "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.7" + "text": "Audio rendering of tables", + "url": "https://www.w3.org/TR/CSS21/aural.html#aural-tables" } }, - "/changes#c10.3.8": { + "/aural#cue-props": { "current": { - "number": "C.2.67", + "number": "A.6", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.8" + "text": "Cue properties: 'cue-before', 'cue-after', and 'cue'", + "url": "https://www.w3.org/TR/CSS21/aural.html#cue-props" }, "snapshot": { - "number": "C.2.67", + "number": "A.6", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.8" + "text": "Cue properties: 'cue-before', 'cue-after', and 'cue'", + "url": "https://www.w3.org/TR/CSS21/aural.html#cue-props" } }, - "/changes#c10.4": { + "/aural#frequencies": { "current": { - "number": "C.2.68", + "number": "A.2.3", "spec": "CSS 2.1", - "text": "Section 10.4 Minimum and maximum widths", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.4" + "text": "Frequencies", + "url": "https://www.w3.org/TR/CSS21/aural.html#frequencies" }, "snapshot": { - "number": "C.2.68", + "number": "A.2.3", "spec": "CSS 2.1", - "text": "Section 10.4 Minimum and maximum widths", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.4" + "text": "Frequencies", + "url": "https://www.w3.org/TR/CSS21/aural.html#frequencies" } }, - "/changes#c10.5": { + "/aural#mixing-props": { "current": { - "number": "C.2.69", + "number": "A.7", "spec": "CSS 2.1", - "text": "Section 10.5 Content height", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.5" + "text": "Mixing properties: 'play-during'", + "url": "https://www.w3.org/TR/CSS21/aural.html#mixing-props" }, "snapshot": { - "number": "C.2.69", + "number": "A.7", "spec": "CSS 2.1", - "text": "Section 10.5 Content height", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.5" + "text": "Mixing properties: 'play-during'", + "url": "https://www.w3.org/TR/CSS21/aural.html#mixing-props" } }, - "/changes#c10.6": { + "/aural#pause-props": { "current": { - "number": "C.2.70", + "number": "A.5", "spec": "CSS 2.1", - "text": "Section 10.6 Calculating heights and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6" + "text": "Pause properties: 'pause-before', 'pause-after', and 'pause'", + "url": "https://www.w3.org/TR/CSS21/aural.html#pause-props" }, "snapshot": { - "number": "C.2.70", + "number": "A.5", "spec": "CSS 2.1", - "text": "Section 10.6 Calculating heights and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6" + "text": "Pause properties: 'pause-before', 'pause-after', and 'pause'", + "url": "https://www.w3.org/TR/CSS21/aural.html#pause-props" } }, - "/changes#c10.6.1": { + "/aural#q19.0": { "current": { - "number": "C.2.71", + "number": "A", "spec": "CSS 2.1", - "text": "Section 10.6.1 Inline, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.1" + "text": "Aural style sheets", + "url": "https://www.w3.org/TR/CSS21/aural.html#q19.0" }, "snapshot": { - "number": "C.2.71", + "number": "A", "spec": "CSS 2.1", - "text": "Section 10.6.1 Inline, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.1" + "text": "Aural style sheets", + "url": "https://www.w3.org/TR/CSS21/aural.html#q19.0" } }, - "/changes#c10.6.2": { + "/aural#sample": { "current": { - "number": "C.2.72", + "number": "A.12", "spec": "CSS 2.1", - "text": "Section 10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.2" + "text": "Sample style sheet for HTML", + "url": "https://www.w3.org/TR/CSS21/aural.html#sample" }, "snapshot": { - "number": "C.2.72", + "number": "A.12", "spec": "CSS 2.1", - "text": "Section 10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.2" + "text": "Sample style sheet for HTML", + "url": "https://www.w3.org/TR/CSS21/aural.html#sample" } }, - "/changes#c10.6.3": { + "/aural#spatial-props": { "current": { - "number": "C.2.73", + "number": "A.8", "spec": "CSS 2.1", - "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.3" + "text": "Spatial properties: 'azimuth' and 'elevation'", + "url": "https://www.w3.org/TR/CSS21/aural.html#spatial-props" }, "snapshot": { - "number": "C.2.73", + "number": "A.8", "spec": "CSS 2.1", - "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.3" + "text": "Spatial properties: 'azimuth' and 'elevation'", + "url": "https://www.w3.org/TR/CSS21/aural.html#spatial-props" } }, - "/changes#c10.6.4": { + "/aural#speak-headers": { "current": { - "number": "C.2.74", + "number": "A.11.1", "spec": "CSS 2.1", - "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.4" + "text": "Speaking headers: the 'speak-header' property", + "url": "https://www.w3.org/TR/CSS21/aural.html#speak-headers" }, "snapshot": { - "number": "C.2.74", + "number": "A.11.1", "spec": "CSS 2.1", - "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.4" + "text": "Speaking headers: the 'speak-header' property", + "url": "https://www.w3.org/TR/CSS21/aural.html#speak-headers" } }, - "/changes#c10.6.5": { + "/aural#speaking-props": { "current": { - "number": "C.2.75", + "number": "A.4", "spec": "CSS 2.1", - "text": "Section 10.6.5 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.5" + "text": "Speaking properties: 'speak'", + "url": "https://www.w3.org/TR/CSS21/aural.html#speaking-props" }, "snapshot": { - "number": "C.2.75", + "number": "A.4", "spec": "CSS 2.1", - "text": "Section 10.6.5 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.5" + "text": "Speaking properties: 'speak'", + "url": "https://www.w3.org/TR/CSS21/aural.html#speaking-props" } }, - "/changes#c10.7": { + "/aural#speech-props": { "current": { - "number": "C.2.76", + "number": "A.10", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.7" + "text": "Speech properties: 'speak-punctuation' and 'speak-numeral'", + "url": "https://www.w3.org/TR/CSS21/aural.html#speech-props" }, "snapshot": { - "number": "C.2.76", + "number": "A.10", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.7" + "text": "Speech properties: 'speak-punctuation' and 'speak-numeral'", + "url": "https://www.w3.org/TR/CSS21/aural.html#speech-props" } }, - "/changes#c10.8": { + "/aural#times": { "current": { - "number": "C.2.77", + "number": "A.2.2", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8" + "text": "Times", + "url": "https://www.w3.org/TR/CSS21/aural.html#times" }, "snapshot": { - "number": "C.2.77", + "number": "A.2.2", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8" + "text": "Times", + "url": "https://www.w3.org/TR/CSS21/aural.html#times" } }, - "/changes#c10.8.1": { + "/aural#voice-char-props": { "current": { - "number": "C.2.78", + "number": "A.9", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8.1" + "text": "Voice characteristic properties: 'speech-rate', 'voice-family', 'pitch', 'pitch-range', 'stress', and 'richness'", + "url": "https://www.w3.org/TR/CSS21/aural.html#voice-char-props" }, "snapshot": { - "number": "C.2.78", + "number": "A.9", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8.1" + "text": "Voice characteristic properties: 'speech-rate', 'voice-family', 'pitch', 'pitch-range', 'stress', and 'richness'", + "url": "https://www.w3.org/TR/CSS21/aural.html#voice-char-props" } }, - "/changes#c11.1": { + "/aural#volume-props": { "current": { - "number": "C.2.79", + "number": "A.3", "spec": "CSS 2.1", - "text": "Section 11.1 Overflow and clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1" + "text": "Volume properties: 'volume'", + "url": "https://www.w3.org/TR/CSS21/aural.html#volume-props" }, "snapshot": { - "number": "C.2.79", + "number": "A.3", "spec": "CSS 2.1", - "text": "Section 11.1 Overflow and clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1" + "text": "Volume properties: 'volume'", + "url": "https://www.w3.org/TR/CSS21/aural.html#volume-props" } }, - "/changes#c11.1.1": { + "/box#bidi-box-model": { "current": { - "number": "C.2.80", + "number": "8.6", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.1" + "text": "The box model for inline elements in bidirectional context", + "url": "https://www.w3.org/TR/CSS21/box.html#bidi-box-model" }, "snapshot": { - "number": "C.2.80", + "number": "8.6", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.1" + "text": "The box model for inline elements in bidirectional context", + "url": "https://www.w3.org/TR/CSS21/box.html#bidi-box-model" } }, - "/changes#c11.1.2": { + "/box#border-color-properties": { "current": { - "number": "C.2.81", + "number": "8.5.2", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.2" + "text": "Border color: 'border-top-color', 'border-right-color', 'border-bottom-color', 'border-left-color', and 'border-color'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-color-properties" }, "snapshot": { - "number": "C.2.81", + "number": "8.5.2", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.2" + "text": "Border color: 'border-top-color', 'border-right-color', 'border-bottom-color', 'border-left-color', and 'border-color'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-color-properties" } }, - "/changes#c11.2": { + "/box#border-properties": { "current": { - "number": "C.2.82", + "number": "8.5", "spec": "CSS 2.1", - "text": "Section 11.2 Visibility", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.2" + "text": "Border properties", + "url": "https://www.w3.org/TR/CSS21/box.html#border-properties" }, "snapshot": { - "number": "C.2.82", + "number": "8.5", "spec": "CSS 2.1", - "text": "Section 11.2 Visibility", - "url": "https://www.w3.org/TR/CSS21/changes.html#c11.2" + "text": "Border properties", + "url": "https://www.w3.org/TR/CSS21/box.html#border-properties" } }, - "/changes#c12": { + "/box#border-shorthand-properties": { "current": { - "number": "C.2.83", + "number": "8.5.4", "spec": "CSS 2.1", - "text": "Chapter 12 Generated content, automatic numbering, and lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12" + "text": "Border shorthand properties: 'border-top', 'border-right', 'border-bottom', 'border-left', and 'border'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-shorthand-properties" }, "snapshot": { - "number": "C.2.83", + "number": "8.5.4", "spec": "CSS 2.1", - "text": "Chapter 12 Generated content, automatic numbering, and lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12" + "text": "Border shorthand properties: 'border-top', 'border-right', 'border-bottom', 'border-left', and 'border'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-shorthand-properties" } }, - "/changes#c12.1": { + "/box#border-style-properties": { "current": { - "number": "C.2.84", + "number": "8.5.3", "spec": "CSS 2.1", - "text": "Section 12.1 The :before and :after pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.1" + "text": "Border style: 'border-top-style', 'border-right-style', 'border-bottom-style', 'border-left-style', and 'border-style'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-style-properties" }, "snapshot": { - "number": "C.2.84", + "number": "8.5.3", "spec": "CSS 2.1", - "text": "Section 12.1 The :before and :after pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.1" + "text": "Border style: 'border-top-style', 'border-right-style', 'border-bottom-style', 'border-left-style', and 'border-style'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-style-properties" } }, - "/changes#c12.2": { + "/box#border-width-properties": { "current": { - "number": "C.2.85", + "number": "8.5.1", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.2" + "text": "Border width: 'border-top-width', 'border-right-width', 'border-bottom-width', 'border-left-width', and 'border-width'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-width-properties" }, "snapshot": { - "number": "C.2.85", + "number": "8.5.1", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.2" + "text": "Border width: 'border-top-width', 'border-right-width', 'border-bottom-width', 'border-left-width', and 'border-width'", + "url": "https://www.w3.org/TR/CSS21/box.html#border-width-properties" } }, - "/changes#c12.3.2": { + "/box#box-dimensions": { "current": { - "number": "C.2.86", + "number": "8.1", "spec": "CSS 2.1", - "text": "Section 12.3.2 Inserting quotes with the 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.3.2" + "text": "Box dimensions", + "url": "https://www.w3.org/TR/CSS21/box.html#box-dimensions" }, "snapshot": { - "number": "C.2.86", + "number": "8.1", "spec": "CSS 2.1", - "text": "Section 12.3.2 Inserting quotes with the 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.3.2" + "text": "Box dimensions", + "url": "https://www.w3.org/TR/CSS21/box.html#box-dimensions" } }, - "/changes#c12.4": { + "/box#box-model": { "current": { - "number": "C.2.87", + "number": "8", "spec": "CSS 2.1", - "text": "Section 12.4 Automatic counters and numbering", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4" + "text": "Box model", + "url": "https://www.w3.org/TR/CSS21/box.html#box-model" }, "snapshot": { - "number": "C.2.87", + "number": "8", "spec": "CSS 2.1", - "text": "Section 12.4 Automatic counters and numbering", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4" + "text": "Box model", + "url": "https://www.w3.org/TR/CSS21/box.html#box-model" } }, - "/changes#c12.4.1": { + "/box#collapsing-margins": { "current": { - "number": "C.2.88", + "number": "8.3.1", "spec": "CSS 2.1", - "text": "Section 12.4.1 Nested counters and scope", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4.1" + "text": "Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/box.html#collapsing-margins" }, "snapshot": { - "number": "C.2.88", + "number": "8.3.1", "spec": "CSS 2.1", - "text": "Section 12.4.1 Nested counters and scope", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4.1" + "text": "Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/box.html#collapsing-margins" } }, - "/changes#c12.5": { + "/box#margin-properties": { "current": { - "number": "C.2.89", + "number": "8.3", "spec": "CSS 2.1", - "text": "Section 12.5 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5" + "text": "Margin properties: 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', and 'margin'", + "url": "https://www.w3.org/TR/CSS21/box.html#margin-properties" }, "snapshot": { - "number": "C.2.89", + "number": "8.3", "spec": "CSS 2.1", - "text": "Section 12.5 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5" + "text": "Margin properties: 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', and 'margin'", + "url": "https://www.w3.org/TR/CSS21/box.html#margin-properties" } }, - "/changes#c12.5.1": { + "/box#mpb-examples": { "current": { - "number": "C.2.90", + "number": "8.2", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5.1" + "text": "Example of margins, padding, and borders", + "url": "https://www.w3.org/TR/CSS21/box.html#mpb-examples" }, "snapshot": { - "number": "C.2.90", + "number": "8.2", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5.1" + "text": "Example of margins, padding, and borders", + "url": "https://www.w3.org/TR/CSS21/box.html#mpb-examples" } }, - "/changes#c13.1": { + "/box#padding-properties": { "current": { - "number": "C.2.91", + "number": "8.4", "spec": "CSS 2.1", - "text": "Chapter 13 Paged media", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.1" + "text": "Padding properties: 'padding-top', 'padding-right', 'padding-bottom', 'padding-left', and 'padding'", + "url": "https://www.w3.org/TR/CSS21/box.html#padding-properties" }, "snapshot": { - "number": "C.2.91", + "number": "8.4", "spec": "CSS 2.1", - "text": "Chapter 13 Paged media", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.1" + "text": "Padding properties: 'padding-top', 'padding-right', 'padding-bottom', 'padding-left', and 'padding'", + "url": "https://www.w3.org/TR/CSS21/box.html#padding-properties" } }, - "/changes#c13.2.2": { + "/cascade#at-import": { "current": { - "number": "C.2.92", + "number": "6.3", "spec": "CSS 2.1", - "text": "Section 13.2.2 Page selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.2.2" + "text": "The @import rule", + "url": "https://www.w3.org/TR/CSS21/cascade.html#at-import" }, "snapshot": { - "number": "C.2.92", + "number": "6.3", "spec": "CSS 2.1", - "text": "Section 13.2.2 Page selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.2.2" + "text": "The @import rule", + "url": "https://www.w3.org/TR/CSS21/cascade.html#at-import" } }, - "/changes#c13.3.1": { + "/cascade#cascade": { "current": { - "number": "C.2.93", + "number": "6.4", "spec": "CSS 2.1", - "text": "Section 13.3.1 Page break properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.1" + "text": "The cascade", + "url": "https://www.w3.org/TR/CSS21/cascade.html#cascade" }, "snapshot": { - "number": "C.2.93", + "number": "6.4", "spec": "CSS 2.1", - "text": "Section 13.3.1 Page break properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.1" + "text": "The cascade", + "url": "https://www.w3.org/TR/CSS21/cascade.html#cascade" } }, - "/changes#c13.3.3": { + "/cascade#cascading-order": { "current": { - "number": "C.2.94", + "number": "6.4.1", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.3" + "text": "Cascading order", + "url": "https://www.w3.org/TR/CSS21/cascade.html#cascading-order" }, "snapshot": { - "number": "C.2.94", + "number": "6.4.1", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.3" + "text": "Cascading order", + "url": "https://www.w3.org/TR/CSS21/cascade.html#cascading-order" } }, - "/changes#c14.2.1": { + "/cascade#important-rules": { "current": { - "number": "C.2.95", + "number": "6.4.2", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c14.2.1" + "text": "!important rules", + "url": "https://www.w3.org/TR/CSS21/cascade.html#important-rules" }, "snapshot": { - "number": "C.2.95", + "number": "6.4.2", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c14.2.1" + "text": "!important rules", + "url": "https://www.w3.org/TR/CSS21/cascade.html#important-rules" } }, - "/changes#c14.3": { + "/cascade#inheritance": { "current": { - "number": "C.2.96", + "number": "6.2", "spec": "CSS 2.1", - "text": "Section 14.3 Gamma correction", - "url": "https://www.w3.org/TR/CSS21/changes.html#c14.3" + "text": "Inheritance", + "url": "https://www.w3.org/TR/CSS21/cascade.html#inheritance" }, "snapshot": { - "number": "C.2.96", + "number": "6.2", "spec": "CSS 2.1", - "text": "Section 14.3 Gamma correction", - "url": "https://www.w3.org/TR/CSS21/changes.html#c14.3" + "text": "Inheritance", + "url": "https://www.w3.org/TR/CSS21/cascade.html#inheritance" } }, - "/changes#c15": { + "/cascade#preshint": { "current": { - "number": "C.2.97", + "number": "6.4.4", "spec": "CSS 2.1", - "text": "Chapter 15 Fonts", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15" + "text": "Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS21/cascade.html#preshint" }, "snapshot": { - "number": "C.2.97", + "number": "6.4.4", "spec": "CSS 2.1", - "text": "Chapter 15 Fonts", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15" + "text": "Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS21/cascade.html#preshint" } }, - "/changes#c15.2": { + "/cascade#q6.0": { "current": { - "number": "C.2.98", + "number": "6", "spec": "CSS 2.1", - "text": "Section 15.2 Font matching algorithm", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.2" + "text": "Assigning property values, Cascading, and Inheritance", + "url": "https://www.w3.org/TR/CSS21/cascade.html#q6.0" }, "snapshot": { - "number": "C.2.98", + "number": "6", "spec": "CSS 2.1", - "text": "Section 15.2 Font matching algorithm", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.2" + "text": "Assigning property values, Cascading, and Inheritance", + "url": "https://www.w3.org/TR/CSS21/cascade.html#q6.0" } }, - "/changes#c15.3": { + "/cascade#specificity": { "current": { - "number": "C.2.99", + "number": "6.4.3", "spec": "CSS 2.1", - "text": "Section 15.2.2 Font family", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.3" + "text": "Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS21/cascade.html#specificity" }, "snapshot": { - "number": "C.2.99", + "number": "6.4.3", "spec": "CSS 2.1", - "text": "Section 15.2.2 Font family", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.3" + "text": "Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS21/cascade.html#specificity" } }, - "/changes#c15.5": { + "/cascade#value-stages": { "current": { - "number": "C.2.100", + "number": "6.1", "spec": "CSS 2.1", - "text": "Section 15.5 Small-caps", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.5" + "text": "Specified, computed, and actual values", + "url": "https://www.w3.org/TR/CSS21/cascade.html#value-stages" }, "snapshot": { - "number": "C.2.100", + "number": "6.1", "spec": "CSS 2.1", - "text": "Section 15.5 Small-caps", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.5" + "text": "Specified, computed, and actual values", + "url": "https://www.w3.org/TR/CSS21/cascade.html#value-stages" } }, - "/changes#c15.6": { + "/changes#a12.2": { "current": { - "number": "C.2.101", + "number": "C.1.3", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.6" + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a12.2" }, "snapshot": { - "number": "C.2.101", + "number": "C.1.3", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.6" + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a12.2" } }, - "/changes#c15.7": { + "/changes#a16.6": { "current": { - "number": "C.2.102", + "number": "C.1.4", "spec": "CSS 2.1", - "text": "Section 15.7 Font size", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.7" + "text": "Section 16.6 White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a16.6" }, "snapshot": { - "number": "C.2.102", + "number": "C.1.4", "spec": "CSS 2.1", - "text": "Section 15.7 Font size", - "url": "https://www.w3.org/TR/CSS21/changes.html#c15.7" + "text": "Section 16.6 White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a16.6" } }, - "/changes#c16": { + "/changes#a18.1": { "current": { - "number": "C.2.103", + "number": "C.1.5", "spec": "CSS 2.1", - "text": "Chapter 16 Text", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16" + "text": "Section 18.1 Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a18.1" }, "snapshot": { - "number": "C.2.103", + "number": "C.1.5", "spec": "CSS 2.1", - "text": "Chapter 16 Text", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16" + "text": "Section 18.1 Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a18.1" } }, - "/changes#c16.2": { + "/changes#a4.3.6": { "current": { - "number": "C.2.104", + "number": "C.1.1", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.2" + "text": "Section 4.3.6 Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#a4.3.6" }, "snapshot": { - "number": "C.2.104", + "number": "C.1.1", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.2" + "text": "Section 4.3.6 Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#a4.3.6" } }, - "/changes#c16.3.1": { + "/changes#a9.2.4": { "current": { - "number": "C.2.105", + "number": "C.1.2", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.3.1" + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a9.2.4" }, "snapshot": { - "number": "C.2.105", + "number": "C.1.2", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.3.1" + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#a9.2.4" } }, - "/changes#c16.4": { + "/changes#c1.1": { "current": { - "number": "C.2.106", + "number": "C.2.1", "spec": "CSS 2.1", - "text": "Section 16.4 Letter and word spacing", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.4" + "text": "Section 1.1 CSS 2.1 vs CSS 2", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.1" }, "snapshot": { - "number": "C.2.106", + "number": "C.2.1", "spec": "CSS 2.1", - "text": "Section 16.4 Letter and word spacing", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.4" + "text": "Section 1.1 CSS 2.1 vs CSS 2", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.1" } }, - "/changes#c16.5": { + "/changes#c1.2": { "current": { - "number": "C.2.107", + "number": "C.2.2", "spec": "CSS 2.1", - "text": "Section 16.5 Capitalization", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.5" + "text": "Section 1.2 Reading the specification", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.2" }, "snapshot": { - "number": "C.2.107", + "number": "C.2.2", "spec": "CSS 2.1", - "text": "Section 16.5 Capitalization", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.5" + "text": "Section 1.2 Reading the specification", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.2" } }, - "/changes#c16.6": { + "/changes#c1.3": { "current": { - "number": "C.2.108", + "number": "C.2.3", "spec": "CSS 2.1", - "text": "Section 16.6 White space", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.6" + "text": "Section 1.3 How the specification is organized", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.3" }, "snapshot": { - "number": "C.2.108", + "number": "C.2.3", "spec": "CSS 2.1", - "text": "Section 16.6 White space", - "url": "https://www.w3.org/TR/CSS21/changes.html#c16.6" + "text": "Section 1.3 How the specification is organized", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.3" } }, - "/changes#c17": { + "/changes#c1.4.2.1": { "current": { - "number": "C.2.109", + "number": "C.2.4", "spec": "CSS 2.1", - "text": "Chapter 17 Tables", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17" + "text": "Section 1.4.2.1 Value", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.1" }, "snapshot": { - "number": "C.2.109", + "number": "C.2.4", "spec": "CSS 2.1", - "text": "Chapter 17 Tables", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17" + "text": "Section 1.4.2.1 Value", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.1" } }, - "/changes#c17.2": { + "/changes#c1.4.2.6": { "current": { - "number": "C.2.110", + "number": "C.2.5", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2" + "text": "Section 1.4.2.6 Media groups", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.6" }, "snapshot": { - "number": "C.2.110", + "number": "C.2.5", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2" + "text": "Section 1.4.2.6 Media groups", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.6" } }, - "/changes#c17.2.1": { + "/changes#c1.4.2.7": { "current": { - "number": "C.2.111", + "number": "C.2.6", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2.1" + "text": "Section 1.4.2.7 Computed value", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.7" }, "snapshot": { - "number": "C.2.111", + "number": "C.2.6", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2.1" + "text": "Section 1.4.2.7 Computed value", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.2.7" } }, - "/changes#c17.4": { + "/changes#c1.4.4": { "current": { - "number": "C.2.112", + "number": "C.2.7", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4" + "text": "Section 1.4.4 Notes and examples", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.4" }, "snapshot": { - "number": "C.2.112", + "number": "C.2.7", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4" + "text": "Section 1.4.4 Notes and examples", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.4.4" } }, - "/changes#c17.4.1": { + "/changes#c1.5": { "current": { - "number": "C.2.113", + "number": "C.2.8", "spec": "CSS 2.1", - "text": "Section 17.4.1 Caption position and alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4.1" + "text": "Section 1.5 Acknowledgments", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.5" }, "snapshot": { - "number": "C.2.113", + "number": "C.2.8", "spec": "CSS 2.1", - "text": "Section 17.4.1 Caption position and alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4.1" + "text": "Section 1.5 Acknowledgments", + "url": "https://www.w3.org/TR/CSS21/changes.html#c1.5" } }, - "/changes#c17.5": { + "/changes#c10": { "current": { - "number": "C.2.114", + "number": "C.2.57", "spec": "CSS 2.1", - "text": "Section 17.5 Visual layout of table contents", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5" + "text": "Chapter 10 Visual formatting model details", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10" }, "snapshot": { - "number": "C.2.114", + "number": "C.2.57", "spec": "CSS 2.1", - "text": "Section 17.5 Visual layout of table contents", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5" + "text": "Chapter 10 Visual formatting model details", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10" } }, - "/changes#c17.5.1": { + "/changes#c10.1": { "current": { - "number": "C.2.115", + "number": "C.2.58", "spec": "CSS 2.1", - "text": "Section 17.5.1 Table layers and transparency", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.1" + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.1" }, "snapshot": { - "number": "C.2.115", + "number": "C.2.58", "spec": "CSS 2.1", - "text": "Section 17.5.1 Table layers and transparency", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.1" + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.1" } }, - "/changes#c17.5.2.1": { + "/changes#c10.2": { "current": { - "number": "C.2.116", + "number": "C.2.59", "spec": "CSS 2.1", - "text": "Section 17.5.2.1 Fixed table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.1" + "text": "Section 10.2 Content width", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.2" }, "snapshot": { - "number": "C.2.116", + "number": "C.2.59", "spec": "CSS 2.1", - "text": "Section 17.5.2.1 Fixed table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.1" + "text": "Section 10.2 Content width", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.2" } }, - "/changes#c17.5.2.2": { + "/changes#c10.3": { "current": { - "number": "C.2.117", + "number": "C.2.60", "spec": "CSS 2.1", - "text": "Section 17.5.2.2 Automatic table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.2" + "text": "Section 10.3 Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3" }, "snapshot": { - "number": "C.2.117", + "number": "C.2.60", "spec": "CSS 2.1", - "text": "Section 17.5.2.2 Automatic table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.2" + "text": "Section 10.3 Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3" } }, - "/changes#c17.5.3": { + "/changes#c10.3.2": { "current": { - "number": "C.2.118", + "number": "C.2.61", "spec": "CSS 2.1", - "text": "Section 17.5.3 Table height algorithms", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.3" + "text": "Section 10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.2" }, "snapshot": { - "number": "C.2.118", + "number": "C.2.61", "spec": "CSS 2.1", - "text": "Section 17.5.3 Table height algorithms", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.3" + "text": "Section 10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.2" } }, - "/changes#c17.5.4": { + "/changes#c10.3.3": { "current": { - "number": "C.2.119", + "number": "C.2.62", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.4" + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.3" }, "snapshot": { - "number": "C.2.119", + "number": "C.2.62", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.4" + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.3" } }, - "/changes#c17.6": { + "/changes#c10.3.4": { "current": { - "number": "C.2.120", + "number": "C.2.63", "spec": "CSS 2.1", - "text": "Section 17.6 Borders", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6" + "text": "Section 10.3.4 Block-level, replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.4" }, "snapshot": { - "number": "C.2.120", + "number": "C.2.63", "spec": "CSS 2.1", - "text": "Section 17.6 Borders", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6" + "text": "Section 10.3.4 Block-level, replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.4" } }, - "/changes#c17.6.1": { + "/changes#c10.3.5": { "current": { - "number": "C.2.121", + "number": "C.2.64", "spec": "CSS 2.1", - "text": "Section 17.6.1 The separated borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1" + "text": "Section 10.3.5 Floating, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.5" }, "snapshot": { - "number": "C.2.121", + "number": "C.2.64", "spec": "CSS 2.1", - "text": "Section 17.6.1 The separated borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1" + "text": "Section 10.3.5 Floating, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.5" } }, - "/changes#c17.6.1.1": { + "/changes#c10.3.6": { "current": { - "number": "C.2.122", + "number": "C.2.65", "spec": "CSS 2.1", - "text": "Section 17.6.1.1 Borders and Backgrounds around empty cells", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1.1" + "text": "Section 10.3.6 Floating, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.6" }, "snapshot": { - "number": "C.2.122", + "number": "C.2.65", "spec": "CSS 2.1", - "text": "Section 17.6.1.1 Borders and Backgrounds around empty cells", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1.1" + "text": "Section 10.3.6 Floating, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.6" } }, - "/changes#c17.6.2": { + "/changes#c10.3.7": { "current": { - "number": "C.2.123", + "number": "C.2.66", "spec": "CSS 2.1", - "text": "Section 17.6.2 The collapsing border model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2" + "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.7" }, "snapshot": { - "number": "C.2.123", + "number": "C.2.66", "spec": "CSS 2.1", - "text": "Section 17.6.2 The collapsing border model", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2" + "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.7" } }, - "/changes#c17.6.2.1": { + "/changes#c10.3.8": { "current": { - "number": "C.2.124", + "number": "C.2.67", "spec": "CSS 2.1", - "text": "Section 17.6.2.1 Border conflict resolution", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2.1" + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.8" }, "snapshot": { - "number": "C.2.124", + "number": "C.2.67", "spec": "CSS 2.1", - "text": "Section 17.6.2.1 Border conflict resolution", - "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2.1" + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.3.8" } }, - "/changes#c18.1": { + "/changes#c10.4": { "current": { - "number": "C.2.125", + "number": "C.2.68", "spec": "CSS 2.1", - "text": "Section 18.1 Cursors: the 'cursor' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c18.1" + "text": "Section 10.4 Minimum and maximum widths", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.4" }, "snapshot": { - "number": "C.2.125", + "number": "C.2.68", "spec": "CSS 2.1", - "text": "Section 18.1 Cursors: the 'cursor' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c18.1" + "text": "Section 10.4 Minimum and maximum widths", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.4" } }, - "/changes#c18.4": { + "/changes#c10.5": { "current": { - "number": "C.2.126", + "number": "C.2.69", "spec": "CSS 2.1", - "text": "Section 18.4 Dynamic outlines", - "url": "https://www.w3.org/TR/CSS21/changes.html#c18.4" + "text": "Section 10.5 Content height", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.5" }, "snapshot": { - "number": "C.2.126", + "number": "C.2.69", "spec": "CSS 2.1", - "text": "Section 18.4 Dynamic outlines", - "url": "https://www.w3.org/TR/CSS21/changes.html#c18.4" + "text": "Section 10.5 Content height", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.5" } }, - "/changes#c3.2": { + "/changes#c10.6": { "current": { - "number": "C.2.9", + "number": "C.2.70", "spec": "CSS 2.1", - "text": "Section 3.2 Conformance", - "url": "https://www.w3.org/TR/CSS21/changes.html#c3.2" + "text": "Section 10.6 Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6" }, "snapshot": { - "number": "C.2.9", + "number": "C.2.70", "spec": "CSS 2.1", - "text": "Section 3.2 Conformance", - "url": "https://www.w3.org/TR/CSS21/changes.html#c3.2" + "text": "Section 10.6 Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6" } }, - "/changes#c3.3": { + "/changes#c10.6.1": { "current": { - "number": "C.2.10", + "number": "C.2.71", "spec": "CSS 2.1", - "text": "Section 3.3 Error Conditions", - "url": "https://www.w3.org/TR/CSS21/changes.html#c3.3" + "text": "Section 10.6.1 Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.1" }, "snapshot": { - "number": "C.2.10", + "number": "C.2.71", "spec": "CSS 2.1", - "text": "Section 3.3 Error Conditions", - "url": "https://www.w3.org/TR/CSS21/changes.html#c3.3" + "text": "Section 10.6.1 Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.1" } }, - "/changes#c4.1.1": { + "/changes#c10.6.2": { "current": { - "number": "C.2.11", + "number": "C.2.72", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.1" + "text": "Section 10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.2" }, "snapshot": { - "number": "C.2.11", + "number": "C.2.72", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.1" + "text": "Section 10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.2" } }, - "/changes#c4.1.3": { + "/changes#c10.6.3": { "current": { - "number": "C.2.12", + "number": "C.2.73", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.3" + "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.3" }, "snapshot": { - "number": "C.2.12", + "number": "C.2.73", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.3" + "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.3" } }, - "/changes#c4.2": { + "/changes#c10.6.4": { "current": { - "number": "C.2.13", + "number": "C.2.74", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.2" + "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.4" }, "snapshot": { - "number": "C.2.13", + "number": "C.2.74", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.2" + "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.4" } }, - "/changes#c4.3": { + "/changes#c10.6.5": { "current": { - "number": "C.2.14", + "number": "C.2.75", "spec": "CSS 2.1", - "text": "Section 4.3 Values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3" + "text": "Section 10.6.5 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.5" }, "snapshot": { - "number": "C.2.14", + "number": "C.2.75", "spec": "CSS 2.1", - "text": "Section 4.3 Values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3" + "text": "Section 10.6.5 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.6.5" } }, - "/changes#c4.3.2": { + "/changes#c10.7": { "current": { - "number": "C.2.15", + "number": "C.2.76", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.2" + "text": "Section 10.7 Minimum and maximum heights", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.7" }, "snapshot": { - "number": "C.2.15", + "number": "C.2.76", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.2" + "text": "Section 10.7 Minimum and maximum heights", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.7" } }, - "/changes#c4.3.4": { + "/changes#c10.8": { "current": { - "number": "C.2.16", + "number": "C.2.77", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.4" + "text": "Section 10.8 Line height calculations", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8" }, "snapshot": { - "number": "C.2.16", + "number": "C.2.77", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.4" + "text": "Section 10.8 Line height calculations", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8" } }, - "/changes#c4.3.5": { + "/changes#c10.8.1": { "current": { - "number": "C.2.17", + "number": "C.2.78", "spec": "CSS 2.1", - "text": "Section 4.3.5 Counters", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.5" + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8.1" }, "snapshot": { - "number": "C.2.17", + "number": "C.2.78", "spec": "CSS 2.1", - "text": "Section 4.3.5 Counters", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.5" + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#c10.8.1" } }, - "/changes#c4.3.6": { + "/changes#c11.1": { "current": { - "number": "C.2.18", + "number": "C.2.79", "spec": "CSS 2.1", - "text": "Section 4.3.6 Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.6" + "text": "Section 11.1 Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1" }, "snapshot": { - "number": "C.2.18", + "number": "C.2.79", "spec": "CSS 2.1", - "text": "Section 4.3.6 Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.6" + "text": "Section 11.1 Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1" } }, - "/changes#c4.3.8": { + "/changes#c11.1.1": { "current": { - "number": "C.2.19", + "number": "C.2.80", "spec": "CSS 2.1", - "text": "Section 4.3.8 Unsupported Values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.8" + "text": "Section 11.1.1 Overflow", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.1" }, "snapshot": { - "number": "C.2.19", + "number": "C.2.80", "spec": "CSS 2.1", - "text": "Section 4.3.8 Unsupported Values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.8" + "text": "Section 11.1.1 Overflow", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.1" } }, - "/changes#c4.4": { + "/changes#c11.1.2": { "current": { - "number": "C.2.20", + "number": "C.2.81", "spec": "CSS 2.1", - "text": "Section 4.4 CSS style sheet representation", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.4" + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.2" }, "snapshot": { - "number": "C.2.20", + "number": "C.2.81", "spec": "CSS 2.1", - "text": "Section 4.4 CSS style sheet representation", - "url": "https://www.w3.org/TR/CSS21/changes.html#c4.4" + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.1.2" } }, - "/changes#c5.10": { + "/changes#c11.2": { "current": { - "number": "C.2.24", + "number": "C.2.82", "spec": "CSS 2.1", - "text": "Section 5.10 Pseudo-elements and pseudo-classes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.10" + "text": "Section 11.2 Visibility", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.2" }, "snapshot": { - "number": "C.2.24", + "number": "C.2.82", "spec": "CSS 2.1", - "text": "Section 5.10 Pseudo-elements and pseudo-classes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.10" - } + "text": "Section 11.2 Visibility", + "url": "https://www.w3.org/TR/CSS21/changes.html#c11.2" + } }, - "/changes#c5.11.2": { + "/changes#c12": { "current": { - "number": "C.2.25", + "number": "C.2.83", "spec": "CSS 2.1", - "text": "Section 5.11.2 The link pseudo-classes: :link and :visited", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.2" + "text": "Chapter 12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12" }, "snapshot": { - "number": "C.2.25", + "number": "C.2.83", "spec": "CSS 2.1", - "text": "Section 5.11.2 The link pseudo-classes: :link and :visited", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.2" + "text": "Chapter 12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12" } }, - "/changes#c5.11.4": { + "/changes#c12.1": { "current": { - "number": "C.2.26", + "number": "C.2.84", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.4" + "text": "Section 12.1 The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.1" }, "snapshot": { - "number": "C.2.26", + "number": "C.2.84", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.4" + "text": "Section 12.1 The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.1" } }, - "/changes#c5.12.1": { + "/changes#c12.2": { "current": { - "number": "C.2.27", + "number": "C.2.85", "spec": "CSS 2.1", - "text": "Section 5.12.1 The :first-line pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.1" + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.2" }, "snapshot": { - "number": "C.2.27", + "number": "C.2.85", "spec": "CSS 2.1", - "text": "Section 5.12.1 The :first-line pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.1" + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.2" } }, - "/changes#c5.12.2": { + "/changes#c12.3.2": { "current": { - "number": "C.2.28", + "number": "C.2.86", "spec": "CSS 2.1", - "text": "Section 5.12.2 The :first-letter pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.2" + "text": "Section 12.3.2 Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.3.2" }, "snapshot": { - "number": "C.2.28", + "number": "C.2.86", "spec": "CSS 2.1", - "text": "Section 5.12.2 The :first-letter pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.2" + "text": "Section 12.3.2 Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.3.2" } }, - "/changes#c5.8.1": { + "/changes#c12.4": { "current": { - "number": "C.2.21", + "number": "C.2.87", "spec": "CSS 2.1", - "text": "Section 5.8.1 Matching attributes and attribute values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.1" + "text": "Section 12.4 Automatic counters and numbering", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4" }, "snapshot": { - "number": "C.2.21", + "number": "C.2.87", "spec": "CSS 2.1", - "text": "Section 5.8.1 Matching attributes and attribute values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.1" + "text": "Section 12.4 Automatic counters and numbering", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4" } }, - "/changes#c5.8.3": { + "/changes#c12.4.1": { "current": { - "number": "C.2.22", + "number": "C.2.88", "spec": "CSS 2.1", - "text": "Section 5.8.3 Class selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.3" + "text": "Section 12.4.1 Nested counters and scope", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4.1" }, "snapshot": { - "number": "C.2.22", + "number": "C.2.88", "spec": "CSS 2.1", - "text": "Section 5.8.3 Class selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.3" + "text": "Section 12.4.1 Nested counters and scope", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.4.1" } }, - "/changes#c5.9": { + "/changes#c12.5": { "current": { - "number": "C.2.23", + "number": "C.2.89", "spec": "CSS 2.1", - "text": "Section 5.9 ID selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.9" + "text": "Section 12.5 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5" }, "snapshot": { - "number": "C.2.23", + "number": "C.2.89", "spec": "CSS 2.1", - "text": "Section 5.9 ID selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#c5.9" + "text": "Section 12.5 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5" } }, - "/changes#c6.1": { + "/changes#c12.5.1": { "current": { - "number": "C.2.29", + "number": "C.2.90", "spec": "CSS 2.1", - "text": "Section 6.1 Specified, computed, and actual values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.1" + "text": "Section 12.5.1 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5.1" }, "snapshot": { - "number": "C.2.29", + "number": "C.2.90", "spec": "CSS 2.1", - "text": "Section 6.1 Specified, computed, and actual values", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.1" + "text": "Section 12.5.1 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#c12.5.1" } }, - "/changes#c6.4.1": { + "/changes#c13.1": { "current": { - "number": "C.2.30", + "number": "C.2.91", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.1" + "text": "Chapter 13 Paged media", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.1" }, "snapshot": { - "number": "C.2.30", + "number": "C.2.91", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.1" + "text": "Chapter 13 Paged media", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.1" } }, - "/changes#c6.4.3": { + "/changes#c13.2.2": { "current": { - "number": "C.2.31", + "number": "C.2.92", "spec": "CSS 2.1", - "text": "Section 6.4.3 Calculating a selector's specificity", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.3" + "text": "Section 13.2.2 Page selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.2.2" }, "snapshot": { - "number": "C.2.31", + "number": "C.2.92", "spec": "CSS 2.1", - "text": "Section 6.4.3 Calculating a selector's specificity", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.3" + "text": "Section 13.2.2 Page selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.2.2" } }, - "/changes#c6.4.4": { + "/changes#c13.3.1": { "current": { - "number": "C.2.32", + "number": "C.2.93", "spec": "CSS 2.1", - "text": "Section 6.4.4 Precedence of non-CSS presentational hints", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.4" + "text": "Section 13.3.1 Page break properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.1" }, "snapshot": { - "number": "C.2.32", + "number": "C.2.93", "spec": "CSS 2.1", - "text": "Section 6.4.4 Precedence of non-CSS presentational hints", - "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.4" + "text": "Section 13.3.1 Page break properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.1" } }, - "/changes#c7.3": { + "/changes#c13.3.3": { "current": { - "number": "C.2.33", + "number": "C.2.94", "spec": "CSS 2.1", - "text": "Section 7.3 Recognized Media Types", - "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3" + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.3" }, "snapshot": { - "number": "C.2.33", + "number": "C.2.94", "spec": "CSS 2.1", - "text": "Section 7.3 Recognized Media Types", - "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3" + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#c13.3.3" } }, - "/changes#c7.3.1": { + "/changes#c14.2.1": { "current": { - "number": "C.2.34", + "number": "C.2.95", "spec": "CSS 2.1", - "text": "Section 7.3.1 Media Groups", - "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3.1" + "text": "Section 14.2.1 Background properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c14.2.1" }, "snapshot": { - "number": "C.2.34", + "number": "C.2.95", "spec": "CSS 2.1", - "text": "Section 7.3.1 Media Groups", - "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3.1" + "text": "Section 14.2.1 Background properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c14.2.1" } }, - "/changes#c8.3": { + "/changes#c14.3": { "current": { - "number": "C.2.35", + "number": "C.2.96", "spec": "CSS 2.1", - "text": "Section 8.3 Margin properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3" + "text": "Section 14.3 Gamma correction", + "url": "https://www.w3.org/TR/CSS21/changes.html#c14.3" }, "snapshot": { - "number": "C.2.35", + "number": "C.2.96", "spec": "CSS 2.1", - "text": "Section 8.3 Margin properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3" + "text": "Section 14.3 Gamma correction", + "url": "https://www.w3.org/TR/CSS21/changes.html#c14.3" } }, - "/changes#c8.3.1": { + "/changes#c15": { "current": { - "number": "C.2.36", + "number": "C.2.97", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3.1" + "text": "Chapter 15 Fonts", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15" }, "snapshot": { - "number": "C.2.36", + "number": "C.2.97", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3.1" + "text": "Chapter 15 Fonts", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15" } }, - "/changes#c8.4": { + "/changes#c15.2": { "current": { - "number": "C.2.37", + "number": "C.2.98", "spec": "CSS 2.1", - "text": "Section 8.4 Padding properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.4" + "text": "Section 15.2 Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.2" }, "snapshot": { - "number": "C.2.37", + "number": "C.2.98", "spec": "CSS 2.1", - "text": "Section 8.4 Padding properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.4" + "text": "Section 15.2 Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.2" } }, - "/changes#c8.5.2": { + "/changes#c15.3": { "current": { - "number": "C.2.38", + "number": "C.2.99", "spec": "CSS 2.1", - "text": "Section 8.5.2 Border color", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.2" + "text": "Section 15.2.2 Font family", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.3" }, "snapshot": { - "number": "C.2.38", + "number": "C.2.99", "spec": "CSS 2.1", - "text": "Section 8.5.2 Border color", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.2" + "text": "Section 15.2.2 Font family", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.3" } }, - "/changes#c8.5.3": { + "/changes#c15.5": { "current": { - "number": "C.2.39", + "number": "C.2.100", "spec": "CSS 2.1", - "text": "Section 8.5.3 Border style", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.3" + "text": "Section 15.5 Small-caps", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.5" }, "snapshot": { - "number": "C.2.39", + "number": "C.2.100", "spec": "CSS 2.1", - "text": "Section 8.5.3 Border style", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.3" + "text": "Section 15.5 Small-caps", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.5" } }, - "/changes#c8.6": { + "/changes#c15.6": { "current": { - "number": "C.2.40", + "number": "C.2.101", "spec": "CSS 2.1", - "text": "Section 8.6 The box model for inline elements in bidirectional context", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.6" + "text": "Section 15.6 Font boldness", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.6" }, "snapshot": { - "number": "C.2.40", + "number": "C.2.101", "spec": "CSS 2.1", - "text": "Section 8.6 The box model for inline elements in bidirectional context", - "url": "https://www.w3.org/TR/CSS21/changes.html#c8.6" + "text": "Section 15.6 Font boldness", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.6" } }, - "/changes#c9.1.2": { + "/changes#c15.7": { "current": { - "number": "C.2.41", + "number": "C.2.102", "spec": "CSS 2.1", - "text": "Section 9.1.2 Containing blocks", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.1.2" + "text": "Section 15.7 Font size", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.7" }, "snapshot": { - "number": "C.2.41", + "number": "C.2.102", "spec": "CSS 2.1", - "text": "Section 9.1.2 Containing blocks", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.1.2" + "text": "Section 15.7 Font size", + "url": "https://www.w3.org/TR/CSS21/changes.html#c15.7" } }, - "/changes#c9.10": { + "/changes#c16": { "current": { - "number": "C.2.56", + "number": "C.2.103", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.10" + "text": "Chapter 16 Text", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16" }, "snapshot": { - "number": "C.2.56", + "number": "C.2.103", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.10" + "text": "Chapter 16 Text", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16" } }, - "/changes#c9.2.1.1": { + "/changes#c16.2": { "current": { - "number": "C.2.42", + "number": "C.2.104", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.1.1" + "text": "Section 16.2 Alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.2" }, "snapshot": { - "number": "C.2.42", + "number": "C.2.104", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.1.1" + "text": "Section 16.2 Alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.2" } }, - "/changes#c9.2.2.1": { + "/changes#c16.3.1": { "current": { - "number": "C.2.43", + "number": "C.2.105", "spec": "CSS 2.1", - "text": "Section 9.2.2.1 Anonymous inline boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.2.1" + "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.3.1" }, "snapshot": { - "number": "C.2.43", + "number": "C.2.105", "spec": "CSS 2.1", - "text": "Section 9.2.2.1 Anonymous inline boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.2.1" + "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.3.1" } }, - "/changes#c9.2.3": { + "/changes#c16.4": { "current": { - "number": "C.2.44", + "number": "C.2.106", "spec": "CSS 2.1", - "text": "Section 9.2.3 Run-in boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.3" + "text": "Section 16.4 Letter and word spacing", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.4" }, "snapshot": { - "number": "C.2.44", + "number": "C.2.106", "spec": "CSS 2.1", - "text": "Section 9.2.3 Run-in boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.3" + "text": "Section 16.4 Letter and word spacing", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.4" } }, - "/changes#c9.2.4": { + "/changes#c16.5": { "current": { - "number": "C.2.45", + "number": "C.2.107", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.4" + "text": "Section 16.5 Capitalization", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.5" }, "snapshot": { - "number": "C.2.45", + "number": "C.2.107", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.4" + "text": "Section 16.5 Capitalization", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.5" } }, - "/changes#c9.3.1": { + "/changes#c16.6": { "current": { - "number": "C.2.46", + "number": "C.2.108", "spec": "CSS 2.1", - "text": "Section 9.3.1 Choosing a positioning scheme", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.1" + "text": "Section 16.6 White space", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.6" }, "snapshot": { - "number": "C.2.46", + "number": "C.2.108", "spec": "CSS 2.1", - "text": "Section 9.3.1 Choosing a positioning scheme", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.1" + "text": "Section 16.6 White space", + "url": "https://www.w3.org/TR/CSS21/changes.html#c16.6" } }, - "/changes#c9.3.2": { + "/changes#c17": { "current": { - "number": "C.2.47", + "number": "C.2.109", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.2" + "text": "Chapter 17 Tables", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17" }, "snapshot": { - "number": "C.2.47", + "number": "C.2.109", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.2" + "text": "Chapter 17 Tables", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17" } }, - "/changes#c9.4.1": { + "/changes#c17.2": { "current": { - "number": "C.2.48", + "number": "C.2.110", "spec": "CSS 2.1", - "text": "Section 9.4.1 Block formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.1" + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2" }, "snapshot": { - "number": "C.2.48", + "number": "C.2.110", "spec": "CSS 2.1", - "text": "Section 9.4.1 Block formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.1" + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2" } }, - "/changes#c9.4.2": { + "/changes#c17.2.1": { "current": { - "number": "C.2.49", + "number": "C.2.111", "spec": "CSS 2.1", - "text": "Section 9.4.2 Inline formatting context", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.2" + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2.1" }, "snapshot": { - "number": "C.2.49", + "number": "C.2.111", "spec": "CSS 2.1", - "text": "Section 9.4.2 Inline formatting context", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.2" + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.2.1" } }, - "/changes#c9.4.3": { + "/changes#c17.4": { "current": { - "number": "C.2.50", + "number": "C.2.112", "spec": "CSS 2.1", - "text": "Section 9.4.3 Relative positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.3" + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4" }, "snapshot": { - "number": "C.2.50", + "number": "C.2.112", "spec": "CSS 2.1", - "text": "Section 9.4.3 Relative positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.3" + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4" } }, - "/changes#c9.5": { + "/changes#c17.4.1": { "current": { - "number": "C.2.51", + "number": "C.2.113", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5" + "text": "Section 17.4.1 Caption position and alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4.1" }, "snapshot": { - "number": "C.2.51", + "number": "C.2.113", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5" + "text": "Section 17.4.1 Caption position and alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.4.1" } }, - "/changes#c9.5.1": { + "/changes#c17.5": { "current": { - "number": "C.2.52", + "number": "C.2.114", "spec": "CSS 2.1", - "text": "Section 9.5.1 Positioning the float", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.1" + "text": "Section 17.5 Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5" }, "snapshot": { - "number": "C.2.52", + "number": "C.2.114", "spec": "CSS 2.1", - "text": "Section 9.5.1 Positioning the float", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.1" + "text": "Section 17.5 Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5" } }, - "/changes#c9.5.2": { + "/changes#c17.5.1": { "current": { - "number": "C.2.53", + "number": "C.2.115", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.2" + "text": "Section 17.5.1 Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.1" }, "snapshot": { - "number": "C.2.53", + "number": "C.2.115", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.2" + "text": "Section 17.5.1 Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.1" } }, - "/changes#c9.7": { + "/changes#c17.5.2.1": { "current": { - "number": "C.2.54", + "number": "C.2.116", "spec": "CSS 2.1", - "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.7" + "text": "Section 17.5.2.1 Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.1" }, "snapshot": { - "number": "C.2.54", + "number": "C.2.116", "spec": "CSS 2.1", - "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.7" + "text": "Section 17.5.2.1 Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.1" } }, - "/changes#c9.9": { + "/changes#c17.5.2.2": { "current": { - "number": "C.2.55", + "number": "C.2.117", "spec": "CSS 2.1", - "text": "Section 9.9 Layered presentation", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.9" + "text": "Section 17.5.2.2 Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.2" }, "snapshot": { - "number": "C.2.55", + "number": "C.2.117", "spec": "CSS 2.1", - "text": "Section 9.9 Layered presentation", - "url": "https://www.w3.org/TR/CSS21/changes.html#c9.9" + "text": "Section 17.5.2.2 Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.2.2" } }, - "/changes#cA": { + "/changes#c17.5.3": { "current": { - "number": "C.2.128", + "number": "C.2.118", "spec": "CSS 2.1", - "text": "Appendix A. Aural style sheets", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA" + "text": "Section 17.5.3 Table height algorithms", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.3" }, "snapshot": { - "number": "C.2.128", + "number": "C.2.118", "spec": "CSS 2.1", - "text": "Appendix A. Aural style sheets", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA" + "text": "Section 17.5.3 Table height algorithms", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.3" } }, - "/changes#cA.5": { + "/changes#c17.5.4": { "current": { - "number": "C.2.129", + "number": "C.2.119", "spec": "CSS 2.1", - "text": "Appendix A Section 5 Pause properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA.5" + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.4" }, "snapshot": { - "number": "C.2.129", + "number": "C.2.119", "spec": "CSS 2.1", - "text": "Appendix A Section 5 Pause properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA.5" + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.5.4" } }, - "/changes#cA.6": { + "/changes#c17.6": { "current": { - "number": "C.2.130", + "number": "C.2.120", "spec": "CSS 2.1", - "text": "Appendix A Section 6 Cue properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA.6" + "text": "Section 17.6 Borders", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6" }, "snapshot": { - "number": "C.2.130", + "number": "C.2.120", "spec": "CSS 2.1", - "text": "Appendix A Section 6 Cue properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA.6" + "text": "Section 17.6 Borders", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6" } }, - "/changes#cA.7": { + "/changes#c17.6.1": { "current": { - "number": "C.2.131", + "number": "C.2.121", "spec": "CSS 2.1", - "text": "Appendix A Section 7 Mixing properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA.7" + "text": "Section 17.6.1 The separated borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1" }, "snapshot": { - "number": "C.2.131", + "number": "C.2.121", "spec": "CSS 2.1", - "text": "Appendix A Section 7 Mixing properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#cA.7" + "text": "Section 17.6.1 The separated borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1" } }, - "/changes#cB": { + "/changes#c17.6.1.1": { "current": { - "number": "C.2.132", + "number": "C.2.122", "spec": "CSS 2.1", - "text": "Appendix B Bibliography", - "url": "https://www.w3.org/TR/CSS21/changes.html#cB" + "text": "Section 17.6.1.1 Borders and Backgrounds around empty cells", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1.1" }, "snapshot": { - "number": "C.2.132", + "number": "C.2.122", "spec": "CSS 2.1", - "text": "Appendix B Bibliography", - "url": "https://www.w3.org/TR/CSS21/changes.html#cB" + "text": "Section 17.6.1.1 Borders and Backgrounds around empty cells", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.1.1" } }, - "/changes#errata4": { + "/changes#c17.6.2": { "current": { - "number": "C.8", + "number": "C.2.123", "spec": "CSS 2.1", - "text": "Changes since the working draft of 7 December 2010", - "url": "https://www.w3.org/TR/CSS21/changes.html#errata4" + "text": "Section 17.6.2 The collapsing border model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2" }, "snapshot": { - "number": "C.8", + "number": "C.2.123", "spec": "CSS 2.1", - "text": "Changes since the working draft of 7 December 2010", - "url": "https://www.w3.org/TR/CSS21/changes.html#errata4" + "text": "Section 17.6.2 The collapsing border model", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2" } }, - "/changes#other": { + "/changes#c17.6.2.1": { "current": { - "number": "C.2.133", + "number": "C.2.124", "spec": "CSS 2.1", - "text": "Other", - "url": "https://www.w3.org/TR/CSS21/changes.html#other" + "text": "Section 17.6.2.1 Border conflict resolution", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2.1" }, "snapshot": { - "number": "C.2.133", + "number": "C.2.124", "spec": "CSS 2.1", - "text": "Other", - "url": "https://www.w3.org/TR/CSS21/changes.html#other" + "text": "Section 17.6.2.1 Border conflict resolution", + "url": "https://www.w3.org/TR/CSS21/changes.html#c17.6.2.1" } }, - "/changes#r10.1": { + "/changes#c18.1": { "current": { - "number": "C.4.44", + "number": "C.2.125", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.1" + "text": "Section 18.1 Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c18.1" }, "snapshot": { - "number": "C.4.44", + "number": "C.2.125", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.1" + "text": "Section 18.1 Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c18.1" } }, - "/changes#r10.2": { + "/changes#c18.4": { "current": { - "number": "C.4.45", + "number": "C.2.126", "spec": "CSS 2.1", - "text": "Section 10.2 Content width", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.2" + "text": "Section 18.4 Dynamic outlines", + "url": "https://www.w3.org/TR/CSS21/changes.html#c18.4" }, "snapshot": { - "number": "C.4.45", + "number": "C.2.126", "spec": "CSS 2.1", - "text": "Section 10.2 Content width", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.2" + "text": "Section 18.4 Dynamic outlines", + "url": "https://www.w3.org/TR/CSS21/changes.html#c18.4" } }, - "/changes#r10.3.3": { + "/changes#c3.2": { "current": { - "number": "C.4.46", + "number": "C.2.9", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.3" + "text": "Section 3.2 Conformance", + "url": "https://www.w3.org/TR/CSS21/changes.html#c3.2" }, "snapshot": { - "number": "C.4.46", + "number": "C.2.9", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.3" + "text": "Section 3.2 Conformance", + "url": "https://www.w3.org/TR/CSS21/changes.html#c3.2" } }, - "/changes#r10.3.8": { + "/changes#c3.3": { "current": { - "number": "C.4.47", + "number": "C.2.10", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioning, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.8" + "text": "Section 3.3 Error Conditions", + "url": "https://www.w3.org/TR/CSS21/changes.html#c3.3" }, "snapshot": { - "number": "C.4.47", + "number": "C.2.10", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioning, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.8" + "text": "Section 3.3 Error Conditions", + "url": "https://www.w3.org/TR/CSS21/changes.html#c3.3" } }, - "/changes#r10.4": { + "/changes#c4.1.1": { "current": { - "number": "C.4.48", + "number": "C.2.11", "spec": "CSS 2.1", - "text": "Section 10.4 Minimum and maximum widths", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.4" + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.1" }, "snapshot": { - "number": "C.4.48", + "number": "C.2.11", "spec": "CSS 2.1", - "text": "Section 10.4 Minimum and maximum widths", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.4" + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.1" } }, - "/changes#r10.6.1": { + "/changes#c4.1.3": { "current": { - "number": "C.4.49", + "number": "C.2.12", "spec": "CSS 2.1", - "text": "Section 10.6 Calculating heights and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.6.1" + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.3" }, "snapshot": { - "number": "C.4.49", + "number": "C.2.12", "spec": "CSS 2.1", - "text": "Section 10.6 Calculating heights and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.6.1" + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.1.3" } }, - "/changes#r10.7": { + "/changes#c4.2": { "current": { - "number": "C.4.50", + "number": "C.2.13", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.7" + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.2" }, "snapshot": { - "number": "C.4.50", + "number": "C.2.13", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.7" + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.2" } }, - "/changes#r10.8": { + "/changes#c4.3": { "current": { - "number": "C.4.51", + "number": "C.2.14", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8" + "text": "Section 4.3 Values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3" }, "snapshot": { - "number": "C.4.51", + "number": "C.2.14", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8" + "text": "Section 4.3 Values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3" } }, - "/changes#r10.8.1": { + "/changes#c4.3.2": { "current": { - "number": "C.4.52", + "number": "C.2.15", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8.1" + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.2" }, "snapshot": { - "number": "C.4.52", + "number": "C.2.15", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8.1" + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.2" } }, - "/changes#r11.1": { + "/changes#c4.3.4": { "current": { - "number": "C.4.53", + "number": "C.2.16", "spec": "CSS 2.1", - "text": "Section 11.1 Overflow and clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1" + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.4" }, "snapshot": { - "number": "C.4.53", + "number": "C.2.16", "spec": "CSS 2.1", - "text": "Section 11.1 Overflow and clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1" + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.4" } }, - "/changes#r11.1.1": { + "/changes#c4.3.5": { "current": { - "number": "C.4.54", + "number": "C.2.17", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.1" + "text": "Section 4.3.5 Counters", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.5" }, "snapshot": { - "number": "C.4.54", + "number": "C.2.17", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.1" + "text": "Section 4.3.5 Counters", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.5" } }, - "/changes#r11.1.2": { + "/changes#c4.3.6": { "current": { - "number": "C.4.55", + "number": "C.2.18", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.2" + "text": "Section 4.3.6 Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.6" }, "snapshot": { - "number": "C.4.55", + "number": "C.2.18", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.2" + "text": "Section 4.3.6 Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.6" } }, - "/changes#r11.2": { + "/changes#c4.3.8": { "current": { - "number": "C.4.56", + "number": "C.2.19", "spec": "CSS 2.1", - "text": "Section 11.2 Visibility", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.2" + "text": "Section 4.3.8 Unsupported Values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.8" }, "snapshot": { - "number": "C.4.56", + "number": "C.2.19", "spec": "CSS 2.1", - "text": "Section 11.2 Visibility", - "url": "https://www.w3.org/TR/CSS21/changes.html#r11.2" + "text": "Section 4.3.8 Unsupported Values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.3.8" } }, - "/changes#r12.1": { + "/changes#c4.4": { "current": { - "number": "C.4.57", + "number": "C.2.20", "spec": "CSS 2.1", - "text": "Section 12.1 The :before and :after pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.1" + "text": "Section 4.4 CSS style sheet representation", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.4" }, "snapshot": { - "number": "C.4.57", + "number": "C.2.20", "spec": "CSS 2.1", - "text": "Section 12.1 The :before and :after pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.1" + "text": "Section 4.4 CSS style sheet representation", + "url": "https://www.w3.org/TR/CSS21/changes.html#c4.4" } }, - "/changes#r12.2": { + "/changes#c5.10": { "current": { - "number": "C.4.58", + "number": "C.2.24", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.2" + "text": "Section 5.10 Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.10" }, "snapshot": { - "number": "C.4.58", + "number": "C.2.24", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.2" + "text": "Section 5.10 Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.10" } }, - "/changes#r12.3.2": { + "/changes#c5.11.2": { "current": { - "number": "C.4.59", + "number": "C.2.25", "spec": "CSS 2.1", - "text": "Section 12.3.2 Inserting quotes with the 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.3.2" + "text": "Section 5.11.2 The link pseudo-classes: :link and :visited", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.2" }, "snapshot": { - "number": "C.4.59", + "number": "C.2.25", "spec": "CSS 2.1", - "text": "Section 12.3.2 Inserting quotes with the 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.3.2" + "text": "Section 5.11.2 The link pseudo-classes: :link and :visited", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.2" } }, - "/changes#r12.4": { + "/changes#c5.11.4": { "current": { - "number": "C.4.60", + "number": "C.2.26", "spec": "CSS 2.1", - "text": "Section 12.4 Automatic counters and numbering", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4" + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.4" }, "snapshot": { - "number": "C.4.60", + "number": "C.2.26", "spec": "CSS 2.1", - "text": "Section 12.4 Automatic counters and numbering", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4" + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.11.4" } }, - "/changes#r12.4.3": { + "/changes#c5.12.1": { "current": { - "number": "C.4.61", + "number": "C.2.27", "spec": "CSS 2.1", - "text": "Section 12.4.3 Counters in elements with 'display: none'", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4.3" + "text": "Section 5.12.1 The :first-line pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.1" }, "snapshot": { - "number": "C.4.61", + "number": "C.2.27", "spec": "CSS 2.1", - "text": "Section 12.4.3 Counters in elements with 'display: none'", - "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4.3" + "text": "Section 5.12.1 The :first-line pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.1" } }, - "/changes#r14.2": { + "/changes#c5.12.2": { "current": { - "number": "C.4.62", + "number": "C.2.28", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#r14.2" + "text": "Section 5.12.2 The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.2" }, "snapshot": { - "number": "C.4.62", + "number": "C.2.28", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#r14.2" + "text": "Section 5.12.2 The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.12.2" } }, - "/changes#r15.1": { + "/changes#c5.8.1": { "current": { - "number": "C.4.63", + "number": "C.2.21", "spec": "CSS 2.1", - "text": "Section 15.1 Fonts Introduction", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.1" + "text": "Section 5.8.1 Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.1" }, "snapshot": { - "number": "C.4.63", + "number": "C.2.21", "spec": "CSS 2.1", - "text": "Section 15.1 Fonts Introduction", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.1" + "text": "Section 5.8.1 Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.1" } }, - "/changes#r15.2": { + "/changes#c5.8.3": { "current": { - "number": "C.4.64", + "number": "C.2.22", "spec": "CSS 2.1", - "text": "Section 15.2 Font matching algorithm", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.2" + "text": "Section 5.8.3 Class selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.3" }, "snapshot": { - "number": "C.4.64", + "number": "C.2.22", "spec": "CSS 2.1", - "text": "Section 15.2 Font matching algorithm", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.2" + "text": "Section 5.8.3 Class selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.8.3" } }, - "/changes#r15.3": { + "/changes#c5.9": { "current": { - "number": "C.4.65", + "number": "C.2.23", "spec": "CSS 2.1", - "text": "Section 15.2.2 Font family", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3" + "text": "Section 5.9 ID selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.9" }, "snapshot": { - "number": "C.4.65", + "number": "C.2.23", "spec": "CSS 2.1", - "text": "Section 15.2.2 Font family", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3" + "text": "Section 5.9 ID selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#c5.9" } }, - "/changes#r15.3.1": { + "/changes#c6.1": { "current": { - "number": "C.4.66", + "number": "C.2.29", "spec": "CSS 2.1", - "text": "Section 15.3.1 Generic font families", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3.1" + "text": "Section 6.1 Specified, computed, and actual values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.1" }, "snapshot": { - "number": "C.4.66", + "number": "C.2.29", "spec": "CSS 2.1", - "text": "Section 15.3.1 Generic font families", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3.1" + "text": "Section 6.1 Specified, computed, and actual values", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.1" } }, - "/changes#r15.4": { + "/changes#c6.4.1": { "current": { - "number": "C.4.67", + "number": "C.2.30", "spec": "CSS 2.1", - "text": "Section 15.4 Font styling", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.4" + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.1" }, "snapshot": { - "number": "C.4.67", + "number": "C.2.30", "spec": "CSS 2.1", - "text": "Section 15.4 Font styling", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.4" + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.1" } }, - "/changes#r15.5": { + "/changes#c6.4.3": { "current": { - "number": "C.4.68", + "number": "C.2.31", "spec": "CSS 2.1", - "text": "Section 15.5 Small-caps", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.5" + "text": "Section 6.4.3 Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.3" }, "snapshot": { - "number": "C.4.68", + "number": "C.2.31", "spec": "CSS 2.1", - "text": "Section 15.5 Small-caps", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.5" + "text": "Section 6.4.3 Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.3" } }, - "/changes#r15.6": { + "/changes#c6.4.4": { "current": { - "number": "C.4.69", + "number": "C.2.32", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.6" + "text": "Section 6.4.4 Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.4" }, "snapshot": { - "number": "C.4.69", + "number": "C.2.32", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.6" + "text": "Section 6.4.4 Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS21/changes.html#c6.4.4" } }, - "/changes#r15.7": { + "/changes#c7.3": { "current": { - "number": "C.4.70", + "number": "C.2.33", "spec": "CSS 2.1", - "text": "Section 15.7 Font size", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.7" + "text": "Section 7.3 Recognized Media Types", + "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3" }, "snapshot": { - "number": "C.4.70", + "number": "C.2.33", "spec": "CSS 2.1", - "text": "Section 15.7 Font size", - "url": "https://www.w3.org/TR/CSS21/changes.html#r15.7" + "text": "Section 7.3 Recognized Media Types", + "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3" } }, - "/changes#r16.1": { + "/changes#c7.3.1": { "current": { - "number": "C.4.71", + "number": "C.2.34", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.1" + "text": "Section 7.3.1 Media Groups", + "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3.1" }, "snapshot": { - "number": "C.4.71", + "number": "C.2.34", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.1" + "text": "Section 7.3.1 Media Groups", + "url": "https://www.w3.org/TR/CSS21/changes.html#c7.3.1" } }, - "/changes#r16.2": { + "/changes#c8.3": { "current": { - "number": "C.4.72", + "number": "C.2.35", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.2" + "text": "Section 8.3 Margin properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3" }, "snapshot": { - "number": "C.4.72", + "number": "C.2.35", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.2" + "text": "Section 8.3 Margin properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3" } }, - "/changes#r16.3.1": { + "/changes#c8.3.1": { "current": { - "number": "C.4.73", + "number": "C.2.36", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.3.1" + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3.1" }, "snapshot": { - "number": "C.4.73", + "number": "C.2.36", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.3.1" + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.3.1" } }, - "/changes#r16.5": { + "/changes#c8.4": { "current": { - "number": "C.4.74", + "number": "C.2.37", "spec": "CSS 2.1", - "text": "Section 16.5 Capitalization", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.5" + "text": "Section 8.4 Padding properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.4" }, "snapshot": { - "number": "C.4.74", + "number": "C.2.37", "spec": "CSS 2.1", - "text": "Section 16.5 Capitalization", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.5" - } + "text": "Section 8.4 Padding properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.4" + } }, - "/changes#r16.6": { + "/changes#c8.5.2": { "current": { - "number": "C.4.75", + "number": "C.2.38", "spec": "CSS 2.1", - "text": "Section 16.6 White space", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.6" + "text": "Section 8.5.2 Border color", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.2" }, "snapshot": { - "number": "C.4.75", + "number": "C.2.38", "spec": "CSS 2.1", - "text": "Section 16.6 White space", - "url": "https://www.w3.org/TR/CSS21/changes.html#r16.6" + "text": "Section 8.5.2 Border color", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.2" } }, - "/changes#r17.1": { + "/changes#c8.5.3": { "current": { - "number": "C.4.76", + "number": "C.2.39", "spec": "CSS 2.1", - "text": "Section 17.1 Introduction to tables", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.1" + "text": "Section 8.5.3 Border style", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.3" }, "snapshot": { - "number": "C.4.76", + "number": "C.2.39", "spec": "CSS 2.1", - "text": "Section 17.1 Introduction to tables", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.1" + "text": "Section 8.5.3 Border style", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.5.3" } }, - "/changes#r17.2": { + "/changes#c8.6": { "current": { - "number": "C.4.77", + "number": "C.2.40", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2" + "text": "Section 8.6 The box model for inline elements in bidirectional context", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.6" }, "snapshot": { - "number": "C.4.77", + "number": "C.2.40", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2" + "text": "Section 8.6 The box model for inline elements in bidirectional context", + "url": "https://www.w3.org/TR/CSS21/changes.html#c8.6" } }, - "/changes#r17.2.1": { + "/changes#c9.1.2": { "current": { - "number": "C.4.78", + "number": "C.2.41", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2.1" + "text": "Section 9.1.2 Containing blocks", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.1.2" }, "snapshot": { - "number": "C.4.78", + "number": "C.2.41", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2.1" + "text": "Section 9.1.2 Containing blocks", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.1.2" } }, - "/changes#r17.4": { + "/changes#c9.10": { "current": { - "number": "C.4.79", + "number": "C.2.56", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.4" + "text": "Section 9.10 Text direction", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.10" }, "snapshot": { - "number": "C.4.79", + "number": "C.2.56", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.4" + "text": "Section 9.10 Text direction", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.10" } }, - "/changes#r17.5": { + "/changes#c9.2.1.1": { "current": { - "number": "C.4.80", + "number": "C.2.42", "spec": "CSS 2.1", - "text": "Section 17.5 Visual layout of table contents", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5" + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.1.1" }, "snapshot": { - "number": "C.4.80", + "number": "C.2.42", "spec": "CSS 2.1", - "text": "Section 17.5 Visual layout of table contents", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5" + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.1.1" } }, - "/changes#r17.5.1": { + "/changes#c9.2.2.1": { "current": { - "number": "C.4.81", + "number": "C.2.43", "spec": "CSS 2.1", - "text": "Section 17.5.1 Table layers and transparency", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.1" + "text": "Section 9.2.2.1 Anonymous inline boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.2.1" }, "snapshot": { - "number": "C.4.81", + "number": "C.2.43", "spec": "CSS 2.1", - "text": "Section 17.5.1 Table layers and transparency", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.1" + "text": "Section 9.2.2.1 Anonymous inline boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.2.1" } }, - "/changes#r17.5.2": { + "/changes#c9.2.3": { "current": { - "number": "C.4.82", + "number": "C.2.44", "spec": "CSS 2.1", - "text": "Section 17.5.2 Table width algorithms", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2" + "text": "Section 9.2.3 Run-in boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.3" }, "snapshot": { - "number": "C.4.82", + "number": "C.2.44", "spec": "CSS 2.1", - "text": "Section 17.5.2 Table width algorithms", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2" + "text": "Section 9.2.3 Run-in boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.3" } }, - "/changes#r17.5.2.1": { + "/changes#c9.2.4": { "current": { - "number": "C.4.83", + "number": "C.2.45", "spec": "CSS 2.1", - "text": "Section 17.5.2.1 Fixed table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.1" + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.4" }, "snapshot": { - "number": "C.4.83", + "number": "C.2.45", "spec": "CSS 2.1", - "text": "Section 17.5.2.1 Fixed table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.1" + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.2.4" } }, - "/changes#r17.5.2.2": { + "/changes#c9.3.1": { "current": { - "number": "C.4.84", + "number": "C.2.46", "spec": "CSS 2.1", - "text": "Section 17.5.2.2 Automatic table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.2" + "text": "Section 9.3.1 Choosing a positioning scheme", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.1" }, "snapshot": { - "number": "C.4.84", + "number": "C.2.46", "spec": "CSS 2.1", - "text": "Section 17.5.2.2 Automatic table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.2" + "text": "Section 9.3.1 Choosing a positioning scheme", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.1" } }, - "/changes#r17.5.4": { + "/changes#c9.3.2": { "current": { - "number": "C.4.85", + "number": "C.2.47", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.4" + "text": "Section 9.3.2 Box offsets", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.2" }, "snapshot": { - "number": "C.4.85", + "number": "C.2.47", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.4" + "text": "Section 9.3.2 Box offsets", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.3.2" } }, - "/changes#r17.5.5": { + "/changes#c9.4.1": { "current": { - "number": "C.4.86", + "number": "C.2.48", "spec": "CSS 2.1", - "text": "Section 17.5.5 Dynamic row and column effects", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.5" + "text": "Section 9.4.1 Block formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.1" }, "snapshot": { - "number": "C.4.86", + "number": "C.2.48", "spec": "CSS 2.1", - "text": "Section 17.5.5 Dynamic row and column effects", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.5" + "text": "Section 9.4.1 Block formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.1" } }, - "/changes#r17.6.1": { + "/changes#c9.4.2": { "current": { - "number": "C.4.87", + "number": "C.2.49", "spec": "CSS 2.1", - "text": "Section 17.6.1 The separated borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.1" + "text": "Section 9.4.2 Inline formatting context", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.2" }, "snapshot": { - "number": "C.4.87", + "number": "C.2.49", "spec": "CSS 2.1", - "text": "Section 17.6.1 The separated borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.1" + "text": "Section 9.4.2 Inline formatting context", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.2" } }, - "/changes#r17.6.2": { + "/changes#c9.4.3": { "current": { - "number": "C.4.88", + "number": "C.2.50", "spec": "CSS 2.1", - "text": "Section 17.6.2 The collapsing borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.2" + "text": "Section 9.4.3 Relative positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.3" }, "snapshot": { - "number": "C.4.88", + "number": "C.2.50", "spec": "CSS 2.1", - "text": "Section 17.6.2 The collapsing borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.2" + "text": "Section 9.4.3 Relative positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.4.3" } }, - "/changes#r18.2": { + "/changes#c9.5": { "current": { - "number": "C.4.89", + "number": "C.2.51", "spec": "CSS 2.1", - "text": "Section 18.2 System Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r18.2" + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5" }, "snapshot": { - "number": "C.4.89", + "number": "C.2.51", "spec": "CSS 2.1", - "text": "Section 18.2 System Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r18.2" + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5" } }, - "/changes#r18.4": { + "/changes#c9.5.1": { "current": { - "number": "C.4.90", + "number": "C.2.52", "spec": "CSS 2.1", - "text": "Section 18.4 Dynamic outlines", - "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4" + "text": "Section 9.5.1 Positioning the float", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.1" }, "snapshot": { - "number": "C.4.90", + "number": "C.2.52", "spec": "CSS 2.1", - "text": "Section 18.4 Dynamic outlines", - "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4" + "text": "Section 9.5.1 Positioning the float", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.1" } }, - "/changes#r18.4.1": { + "/changes#c9.5.2": { "current": { - "number": "C.4.91", + "number": "C.2.53", "spec": "CSS 2.1", - "text": "Section 18.4.1 Outlines and the focus", - "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4.1" + "text": "Section 9.5.2 Controlling flow next to floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.2" }, "snapshot": { - "number": "C.4.91", + "number": "C.2.53", "spec": "CSS 2.1", - "text": "Section 18.4.1 Outlines and the focus", - "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4.1" + "text": "Section 9.5.2 Controlling flow next to floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.5.2" } }, - "/changes#r2.1": { + "/changes#c9.7": { "current": { - "number": "C.4.1", + "number": "C.2.54", "spec": "CSS 2.1", - "text": "Section 2.1 A brief CSS 2.1 tutorial for HTML", - "url": "https://www.w3.org/TR/CSS21/changes.html#r2.1" + "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.7" }, "snapshot": { - "number": "C.4.1", + "number": "C.2.54", "spec": "CSS 2.1", - "text": "Section 2.1 A brief CSS 2.1 tutorial for HTML", - "url": "https://www.w3.org/TR/CSS21/changes.html#r2.1" + "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.7" } }, - "/changes#r2.2": { + "/changes#c9.9": { "current": { - "number": "C.4.2", + "number": "C.2.55", "spec": "CSS 2.1", - "text": "Section 2.2 A brief CSS 2.1 tutorial for XML", - "url": "https://www.w3.org/TR/CSS21/changes.html#r2.2" + "text": "Section 9.9 Layered presentation", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.9" }, "snapshot": { - "number": "C.4.2", + "number": "C.2.55", "spec": "CSS 2.1", - "text": "Section 2.2 A brief CSS 2.1 tutorial for XML", - "url": "https://www.w3.org/TR/CSS21/changes.html#r2.2" + "text": "Section 9.9 Layered presentation", + "url": "https://www.w3.org/TR/CSS21/changes.html#c9.9" } }, - "/changes#r2.3": { + "/changes#cA": { "current": { - "number": "C.4.3", + "number": "C.2.128", "spec": "CSS 2.1", - "text": "Section 2.3 The CSS 2.1 processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r2.3" + "text": "Appendix A. Aural style sheets", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA" }, "snapshot": { - "number": "C.4.3", + "number": "C.2.128", "spec": "CSS 2.1", - "text": "Section 2.3 The CSS 2.1 processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#r2.3" + "text": "Appendix A. Aural style sheets", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA" } }, - "/changes#r3.1": { + "/changes#cA.5": { "current": { - "number": "C.4.4", + "number": "C.2.129", "spec": "CSS 2.1", - "text": "Section 3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#r3.1" + "text": "Appendix A Section 5 Pause properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA.5" }, "snapshot": { - "number": "C.4.4", + "number": "C.2.129", "spec": "CSS 2.1", - "text": "Section 3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#r3.1" + "text": "Appendix A Section 5 Pause properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA.5" } }, - "/changes#r4.1": { + "/changes#cA.6": { "current": { - "number": "C.4.5", + "number": "C.2.130", "spec": "CSS 2.1", - "text": "Section 4.1 Syntax", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1" + "text": "Appendix A Section 6 Cue properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA.6" }, "snapshot": { - "number": "C.4.5", + "number": "C.2.130", "spec": "CSS 2.1", - "text": "Section 4.1 Syntax", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1" + "text": "Appendix A Section 6 Cue properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA.6" } }, - "/changes#r4.1.1": { + "/changes#cA.7": { "current": { - "number": "C.4.6", + "number": "C.2.131", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.1" + "text": "Appendix A Section 7 Mixing properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA.7" }, "snapshot": { - "number": "C.4.6", + "number": "C.2.131", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.1" + "text": "Appendix A Section 7 Mixing properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#cA.7" } }, - "/changes#r4.1.3": { + "/changes#cB": { "current": { - "number": "C.4.7", + "number": "C.2.132", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.3" + "text": "Appendix B Bibliography", + "url": "https://www.w3.org/TR/CSS21/changes.html#cB" }, "snapshot": { - "number": "C.4.7", + "number": "C.2.132", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.3" + "text": "Appendix B Bibliography", + "url": "https://www.w3.org/TR/CSS21/changes.html#cB" } }, - "/changes#r4.1.7": { + "/changes#changes": { "current": { - "number": "C.4.8", + "number": "C.2", "spec": "CSS 2.1", - "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.7" + "text": "Changes", + "url": "https://www.w3.org/TR/CSS21/changes.html#changes" }, "snapshot": { - "number": "C.4.8", + "number": "C.2", "spec": "CSS 2.1", - "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.7" + "text": "Changes", + "url": "https://www.w3.org/TR/CSS21/changes.html#changes" } }, - "/changes#r4.2": { + "/changes#clarifications": { "current": { - "number": "C.4.9", + "number": "C.4", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.2" + "text": "Clarifications", + "url": "https://www.w3.org/TR/CSS21/changes.html#clarifications" }, "snapshot": { - "number": "C.4.9", + "number": "C.4", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.2" + "text": "Clarifications", + "url": "https://www.w3.org/TR/CSS21/changes.html#clarifications" } }, - "/changes#r4.3.1": { + "/changes#errata": { "current": { - "number": "C.4.10", + "number": "C.5", "spec": "CSS 2.1", - "text": "Section 4.3.1 Integers and real numbers", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.1" + "text": "Errata since the Candidate Recommendation of July 2007", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata" }, "snapshot": { - "number": "C.4.10", + "number": "C.5", "spec": "CSS 2.1", - "text": "Section 4.3.1 Integers and real numbers", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.1" + "text": "Errata since the Candidate Recommendation of July 2007", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata" } }, - "/changes#r4.3.2": { + "/changes#errata2": { "current": { - "number": "C.4.11", + "number": "C.6", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.2" + "text": "Errata since the Candidate Recommendation of April 2009", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata2" }, "snapshot": { - "number": "C.4.11", + "number": "C.6", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.2" + "text": "Errata since the Candidate Recommendation of April 2009", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata2" } }, - "/changes#r4.3.4": { + "/changes#errata3": { "current": { - "number": "C.4.12", + "number": "C.7", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.4" + "text": "Errata since the Candidate Recommendation of September 2009", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata3" }, "snapshot": { - "number": "C.4.12", + "number": "C.7", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.4" + "text": "Errata since the Candidate Recommendation of September 2009", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata3" } }, - "/changes#r5.1": { + "/changes#errata4": { "current": { - "number": "C.4.13", + "number": "C.8", "spec": "CSS 2.1", - "text": "Section 5.1 Pattern matching", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.1" + "text": "Changes since the working draft of 7 December 2010", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata4" }, "snapshot": { - "number": "C.4.13", + "number": "C.8", "spec": "CSS 2.1", - "text": "Section 5.1 Pattern matching", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.1" + "text": "Changes since the working draft of 7 December 2010", + "url": "https://www.w3.org/TR/CSS21/changes.html#errata4" } }, - "/changes#r5.11.3": { + "/changes#known-errors": { "current": { - "number": "C.4.18", + "number": "C.3", "spec": "CSS 2.1", - "text": "Section 5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.3" + "text": "Errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#known-errors" }, "snapshot": { - "number": "C.4.18", + "number": "C.3", "spec": "CSS 2.1", - "text": "Section 5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.3" + "text": "Errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#known-errors" } }, - "/changes#r5.11.4": { + "/changes#new": { "current": { - "number": "C.4.19", + "number": "C.1", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.4" + "text": "Additional property values", + "url": "https://www.w3.org/TR/CSS21/changes.html#new" }, "snapshot": { - "number": "C.4.19", + "number": "C.1", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.4" + "text": "Additional property values", + "url": "https://www.w3.org/TR/CSS21/changes.html#new" } }, - "/changes#r5.12.2": { + "/changes#other": { "current": { - "number": "C.4.20", + "number": "C.2.133", "spec": "CSS 2.1", - "text": "Section 5.12.2 The :first-letter pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.12.2" + "text": "Other", + "url": "https://www.w3.org/TR/CSS21/changes.html#other" }, "snapshot": { - "number": "C.4.20", + "number": "C.2.133", "spec": "CSS 2.1", - "text": "Section 5.12.2 The :first-letter pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.12.2" + "text": "Other", + "url": "https://www.w3.org/TR/CSS21/changes.html#other" } }, - "/changes#r5.7": { + "/changes#q21.0": { "current": { - "number": "C.4.14", + "number": "C", "spec": "CSS 2.1", - "text": "Section 5.7 Adjacent sibling selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.7" + "text": "Changes", + "url": "https://www.w3.org/TR/CSS21/changes.html#q21.0" }, "snapshot": { - "number": "C.4.14", + "number": "C", "spec": "CSS 2.1", - "text": "Section 5.7 Adjacent sibling selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.7" + "text": "Changes", + "url": "https://www.w3.org/TR/CSS21/changes.html#q21.0" } }, - "/changes#r5.8.1": { + "/changes#r10.1": { "current": { - "number": "C.4.15", + "number": "C.4.44", "spec": "CSS 2.1", - "text": "Section 5.8.1 Matching attributes and attribute values", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.1" + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.1" }, "snapshot": { - "number": "C.4.15", + "number": "C.4.44", "spec": "CSS 2.1", - "text": "Section 5.8.1 Matching attributes and attribute values", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.1" + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.1" } }, - "/changes#r5.8.2": { + "/changes#r10.2": { "current": { - "number": "C.4.16", + "number": "C.4.45", "spec": "CSS 2.1", - "text": "Section 5.8.2 Default attribute values in DTDs", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.2" + "text": "Section 10.2 Content width", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.2" }, "snapshot": { - "number": "C.4.16", + "number": "C.4.45", "spec": "CSS 2.1", - "text": "Section 5.8.2 Default attribute values in DTDs", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.2" + "text": "Section 10.2 Content width", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.2" } }, - "/changes#r5.9": { + "/changes#r10.3.3": { "current": { - "number": "C.4.17", + "number": "C.4.46", "spec": "CSS 2.1", - "text": "Section 5.9 ID selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.9" + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.3" }, "snapshot": { - "number": "C.4.17", + "number": "C.4.46", "spec": "CSS 2.1", - "text": "Section 5.9 ID selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#r5.9" + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.3" } }, - "/changes#r6.2": { + "/changes#r10.3.8": { "current": { - "number": "C.4.21", + "number": "C.4.47", "spec": "CSS 2.1", - "text": "Section 6.2 Inheritance", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2" + "text": "Section 10.3.8 Absolutely positioning, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.8" }, "snapshot": { - "number": "C.4.21", + "number": "C.4.47", "spec": "CSS 2.1", - "text": "Section 6.2 Inheritance", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2" + "text": "Section 10.3.8 Absolutely positioning, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.3.8" } }, - "/changes#r6.2.1": { + "/changes#r10.4": { "current": { - "number": "C.4.22", + "number": "C.4.48", "spec": "CSS 2.1", - "text": "Section 6.2.1 The 'inherit' value", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2.1" + "text": "Section 10.4 Minimum and maximum widths", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.4" }, "snapshot": { - "number": "C.4.22", + "number": "C.4.48", "spec": "CSS 2.1", - "text": "Section 6.2.1 The 'inherit' value", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2.1" + "text": "Section 10.4 Minimum and maximum widths", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.4" } }, - "/changes#r6.3": { + "/changes#r10.6.1": { "current": { - "number": "C.4.23", + "number": "C.4.49", "spec": "CSS 2.1", - "text": "Section 6.3 The @import rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.3" + "text": "Section 10.6 Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.6.1" }, "snapshot": { - "number": "C.4.23", + "number": "C.4.49", "spec": "CSS 2.1", - "text": "Section 6.3 The @import rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.3" + "text": "Section 10.6 Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.6.1" } }, - "/changes#r6.4": { + "/changes#r10.7": { "current": { - "number": "C.4.24", + "number": "C.4.50", "spec": "CSS 2.1", - "text": "Section 6.4 The Cascade", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4" + "text": "Section 10.7 Minimum and maximum heights", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.7" }, "snapshot": { - "number": "C.4.24", + "number": "C.4.50", "spec": "CSS 2.1", - "text": "Section 6.4 The Cascade", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4" + "text": "Section 10.7 Minimum and maximum heights", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.7" } }, - "/changes#r6.4.1": { + "/changes#r10.8": { "current": { - "number": "C.4.25", + "number": "C.4.51", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.1" + "text": "Section 10.8 Line height calculations", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8" }, "snapshot": { - "number": "C.4.25", + "number": "C.4.51", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.1" + "text": "Section 10.8 Line height calculations", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8" } }, - "/changes#r6.4.3": { + "/changes#r10.8.1": { "current": { - "number": "C.4.26", + "number": "C.4.52", "spec": "CSS 2.1", - "text": "Section 6.4.3 Calculating a selector's specificity", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.3" + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8.1" }, "snapshot": { - "number": "C.4.26", + "number": "C.4.52", "spec": "CSS 2.1", - "text": "Section 6.4.3 Calculating a selector's specificity", - "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.3" + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#r10.8.1" } }, - "/changes#r7.2.1": { + "/changes#r11.1": { "current": { - "number": "C.4.27", + "number": "C.4.53", "spec": "CSS 2.1", - "text": "Section 7.2.1 The @media rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#r7.2.1" + "text": "Section 11.1 Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1" }, "snapshot": { - "number": "C.4.27", + "number": "C.4.53", "spec": "CSS 2.1", - "text": "Section 7.2.1 The @media rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#r7.2.1" + "text": "Section 11.1 Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1" } }, - "/changes#r7.3": { + "/changes#r11.1.1": { "current": { - "number": "C.4.28", + "number": "C.4.54", "spec": "CSS 2.1", - "text": "Section 7.3 Recognized media types", - "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3" + "text": "Section 11.1.1 Overflow", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.1" }, "snapshot": { - "number": "C.4.28", + "number": "C.4.54", "spec": "CSS 2.1", - "text": "Section 7.3 Recognized media types", - "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3" + "text": "Section 11.1.1 Overflow", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.1" } }, - "/changes#r7.3.1": { + "/changes#r11.1.2": { "current": { - "number": "C.4.29", + "number": "C.4.55", "spec": "CSS 2.1", - "text": "Section 7.3.1 Media groups", - "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3.1" + "text": "Section 11.1.2 Clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.2" }, "snapshot": { - "number": "C.4.29", + "number": "C.4.55", "spec": "CSS 2.1", - "text": "Section 7.3.1 Media groups", - "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3.1" + "text": "Section 11.1.2 Clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.1.2" } }, - "/changes#r8.1": { + "/changes#r11.2": { "current": { - "number": "C.4.30", + "number": "C.4.56", "spec": "CSS 2.1", - "text": "Section 8.1 Box dimensions", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.1" + "text": "Section 11.2 Visibility", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.2" }, "snapshot": { - "number": "C.4.30", + "number": "C.4.56", "spec": "CSS 2.1", - "text": "Section 8.1 Box dimensions", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.1" + "text": "Section 11.2 Visibility", + "url": "https://www.w3.org/TR/CSS21/changes.html#r11.2" } }, - "/changes#r8.3": { + "/changes#r12.1": { "current": { - "number": "C.4.31", + "number": "C.4.57", "spec": "CSS 2.1", - "text": "Section 8.3 Margin properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3" + "text": "Section 12.1 The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.1" }, "snapshot": { - "number": "C.4.31", + "number": "C.4.57", "spec": "CSS 2.1", - "text": "Section 8.3 Margin properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3" + "text": "Section 12.1 The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.1" } }, - "/changes#r8.3.1": { + "/changes#r12.2": { "current": { - "number": "C.4.32", + "number": "C.4.58", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3.1" + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.2" }, "snapshot": { - "number": "C.4.32", + "number": "C.4.58", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3.1" + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.2" } }, - "/changes#r8.5.3": { + "/changes#r12.3.2": { "current": { - "number": "C.4.33", + "number": "C.4.59", "spec": "CSS 2.1", - "text": "Section 8.5.3 Border style", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.5.3" + "text": "Section 12.3.2 Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.3.2" }, "snapshot": { - "number": "C.4.33", + "number": "C.4.59", "spec": "CSS 2.1", - "text": "Section 8.5.3 Border style", - "url": "https://www.w3.org/TR/CSS21/changes.html#r8.5.3" + "text": "Section 12.3.2 Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.3.2" } }, - "/changes#r9.1.1": { + "/changes#r12.4": { "current": { - "number": "C.4.34", + "number": "C.4.60", "spec": "CSS 2.1", - "text": "Section 9.1.1 The viewport", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.1.1" + "text": "Section 12.4 Automatic counters and numbering", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4" }, "snapshot": { - "number": "C.4.34", + "number": "C.4.60", "spec": "CSS 2.1", - "text": "Section 9.1.1 The viewport", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.1.1" + "text": "Section 12.4 Automatic counters and numbering", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4" } }, - "/changes#r9.2.4": { + "/changes#r12.4.3": { "current": { - "number": "C.4.35", + "number": "C.4.61", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.2.4" + "text": "Section 12.4.3 Counters in elements with 'display: none'", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4.3" }, "snapshot": { - "number": "C.4.35", + "number": "C.4.61", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.2.4" + "text": "Section 12.4.3 Counters in elements with 'display: none'", + "url": "https://www.w3.org/TR/CSS21/changes.html#r12.4.3" } }, - "/changes#r9.3.1": { + "/changes#r14.2": { "current": { - "number": "C.4.36", + "number": "C.4.62", "spec": "CSS 2.1", - "text": "Section 9.3.1 Choosing a positioning scheme", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.1" + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#r14.2" }, "snapshot": { - "number": "C.4.36", + "number": "C.4.62", "spec": "CSS 2.1", - "text": "Section 9.3.1 Choosing a positioning scheme", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.1" + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#r14.2" } }, - "/changes#r9.3.2": { + "/changes#r15.1": { "current": { - "number": "C.4.37", + "number": "C.4.63", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.2" + "text": "Section 15.1 Fonts Introduction", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.1" }, "snapshot": { - "number": "C.4.37", + "number": "C.4.63", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.2" + "text": "Section 15.1 Fonts Introduction", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.1" } }, - "/changes#r9.4.2": { + "/changes#r15.2": { "current": { - "number": "C.4.38", + "number": "C.4.64", "spec": "CSS 2.1", - "text": "Section 9.4.2 Inline formatting context", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.2" + "text": "Section 15.2 Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.2" }, "snapshot": { - "number": "C.4.38", + "number": "C.4.64", "spec": "CSS 2.1", - "text": "Section 9.4.2 Inline formatting context", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.2" + "text": "Section 15.2 Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.2" } }, - "/changes#r9.4.3": { + "/changes#r15.3": { "current": { - "number": "C.4.39", + "number": "C.4.65", "spec": "CSS 2.1", - "text": "Section 9.4.3 Relative positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.3" + "text": "Section 15.2.2 Font family", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3" }, "snapshot": { - "number": "C.4.39", + "number": "C.4.65", "spec": "CSS 2.1", - "text": "Section 9.4.3 Relative positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.3" + "text": "Section 15.2.2 Font family", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3" } }, - "/changes#r9.5": { + "/changes#r15.3.1": { "current": { - "number": "C.4.40", + "number": "C.4.66", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5" + "text": "Section 15.3.1 Generic font families", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3.1" }, "snapshot": { - "number": "C.4.40", + "number": "C.4.66", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5" + "text": "Section 15.3.1 Generic font families", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.3.1" } }, - "/changes#r9.5.1": { + "/changes#r15.4": { "current": { - "number": "C.4.41", + "number": "C.4.67", "spec": "CSS 2.1", - "text": "Section 9.5.1 Positioning the float", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.1" + "text": "Section 15.4 Font styling", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.4" }, "snapshot": { - "number": "C.4.41", + "number": "C.4.67", "spec": "CSS 2.1", - "text": "Section 9.5.1 Positioning the float", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.1" + "text": "Section 15.4 Font styling", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.4" } }, - "/changes#r9.5.2": { + "/changes#r15.5": { "current": { - "number": "C.4.42", + "number": "C.4.68", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.2" + "text": "Section 15.5 Small-caps", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.5" }, "snapshot": { - "number": "C.4.42", + "number": "C.4.68", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.2" + "text": "Section 15.5 Small-caps", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.5" } }, - "/changes#r9.8": { + "/changes#r15.6": { "current": { - "number": "C.4.43", + "number": "C.4.69", "spec": "CSS 2.1", - "text": "Section 9.8 Comparison of normal flow, floats, and absolute positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.8" + "text": "Section 15.6 Font boldness", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.6" }, "snapshot": { - "number": "C.4.43", + "number": "C.4.69", "spec": "CSS 2.1", - "text": "Section 9.8 Comparison of normal flow, floats, and absolute positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#r9.8" + "text": "Section 15.6 Font boldness", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.6" } }, - "/changes#rD": { + "/changes#r15.7": { "current": { - "number": "C.4.92", + "number": "C.4.70", "spec": "CSS 2.1", - "text": "Appendix D Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#rD" + "text": "Section 15.7 Font size", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.7" }, "snapshot": { - "number": "C.4.92", + "number": "C.4.70", "spec": "CSS 2.1", - "text": "Appendix D Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#rD" + "text": "Section 15.7 Font size", + "url": "https://www.w3.org/TR/CSS21/changes.html#r15.7" } }, - "/changes#s-12": { + "/changes#r16.1": { "current": { - "number": "C.2.127", + "number": "C.4.71", "spec": "CSS 2.1", - "text": "Chapter 12 Generated content, automatic numbering, and lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#s-12" + "text": "Section 16.1 Indentation", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.1" }, "snapshot": { - "number": "C.2.127", + "number": "C.4.71", "spec": "CSS 2.1", - "text": "Chapter 12 Generated content, automatic numbering, and lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#s-12" + "text": "Section 16.1 Indentation", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.1" } }, - "/changes#s.1.4.2.1": { + "/changes#r16.2": { "current": { - "number": "C.5.1", + "number": "C.4.72", "spec": "CSS 2.1", - "text": "Section 1.4.2.1 Value", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.1.4.2.1" + "text": "Section 16.2 Alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.2" }, "snapshot": { - "number": "C.5.1", + "number": "C.4.72", "spec": "CSS 2.1", - "text": "Section 1.4.2.1 Value", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.1.4.2.1" + "text": "Section 16.2 Alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.2" } }, - "/changes#s.10.1": { + "/changes#r16.3.1": { "current": { - "number": "C.5.36", + "number": "C.4.73", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.1" + "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.3.1" }, "snapshot": { - "number": "C.5.36", + "number": "C.4.73", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.1" + "text": "Section 16.3.1 Underlining, over lining, striking, and blinking", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.3.1" } }, - "/changes#s.10.3": { + "/changes#r16.5": { "current": { - "number": "C.5.37", + "number": "C.4.74", "spec": "CSS 2.1", - "text": "Section 10.3 Calculating widths and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3" + "text": "Section 16.5 Capitalization", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.5" }, "snapshot": { - "number": "C.5.37", + "number": "C.4.74", "spec": "CSS 2.1", - "text": "Section 10.3 Calculating widths and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3" + "text": "Section 16.5 Capitalization", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.5" } }, - "/changes#s.10.3.1": { + "/changes#r16.6": { "current": { - "number": "C.5.38", + "number": "C.4.75", "spec": "CSS 2.1", - "text": "Section 10.3.1 Inline, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.1" + "text": "Section 16.6 White space", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.6" }, "snapshot": { - "number": "C.5.38", + "number": "C.4.75", "spec": "CSS 2.1", - "text": "Section 10.3.1 Inline, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.1" + "text": "Section 16.6 White space", + "url": "https://www.w3.org/TR/CSS21/changes.html#r16.6" } }, - "/changes#s.10.3.2": { + "/changes#r17.1": { "current": { - "number": "C.5.39", + "number": "C.4.76", "spec": "CSS 2.1", - "text": "Section 10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2" + "text": "Section 17.1 Introduction to tables", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.1" }, "snapshot": { - "number": "C.5.39", + "number": "C.4.76", "spec": "CSS 2.1", - "text": "Section 10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2" + "text": "Section 17.1 Introduction to tables", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.1" } }, - "/changes#s.10.3.2a": { + "/changes#r17.2": { "current": { - "number": "C.5.40", + "number": "C.4.77", "spec": "CSS 2.1", - "text": "Section 10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2a" + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2" }, "snapshot": { - "number": "C.5.40", + "number": "C.4.77", "spec": "CSS 2.1", - "text": "Section 10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2a" + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2" } }, - "/changes#s.10.3.3": { + "/changes#r17.2.1": { "current": { - "number": "C.5.41", + "number": "C.4.78", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.3" + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2.1" }, "snapshot": { - "number": "C.5.41", + "number": "C.4.78", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.3" + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.2.1" } }, - "/changes#s.10.3.7": { + "/changes#r17.4": { "current": { - "number": "C.5.42", + "number": "C.4.79", "spec": "CSS 2.1", - "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7" + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.4" }, "snapshot": { - "number": "C.5.42", + "number": "C.4.79", "spec": "CSS 2.1", - "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7" + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.4" } }, - "/changes#s.10.3.7a": { + "/changes#r17.5": { "current": { - "number": "C.5.43", + "number": "C.4.80", "spec": "CSS 2.1", - "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7a" + "text": "Section 17.5 Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5" }, "snapshot": { - "number": "C.5.43", + "number": "C.4.80", "spec": "CSS 2.1", - "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7a" + "text": "Section 17.5 Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5" } }, - "/changes#s.10.3.8": { + "/changes#r17.5.1": { "current": { - "number": "C.5.44", + "number": "C.4.81", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8" + "text": "Section 17.5.1 Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.1" }, "snapshot": { - "number": "C.5.44", + "number": "C.4.81", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8" + "text": "Section 17.5.1 Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.1" } }, - "/changes#s.10.3.8a": { + "/changes#r17.5.2": { "current": { - "number": "C.5.45", + "number": "C.4.82", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8a" + "text": "Section 17.5.2 Table width algorithms", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2" }, "snapshot": { - "number": "C.5.45", + "number": "C.4.82", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8a" + "text": "Section 17.5.2 Table width algorithms", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2" } }, - "/changes#s.10.3.8c": { + "/changes#r17.5.2.1": { "current": { - "number": "C.5.46", + "number": "C.4.83", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8c" + "text": "Section 17.5.2.1 Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.1" }, "snapshot": { - "number": "C.5.46", + "number": "C.4.83", "spec": "CSS 2.1", - "text": "Section 10.3.8 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8c" + "text": "Section 17.5.2.1 Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.1" } }, - "/changes#s.10.5": { + "/changes#r17.5.2.2": { "current": { - "number": "C.5.47", + "number": "C.4.84", "spec": "CSS 2.1", - "text": "Section 10.5 Content height: the 'height' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.5" + "text": "Section 17.5.2.2 Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.2" }, "snapshot": { - "number": "C.5.47", + "number": "C.4.84", "spec": "CSS 2.1", - "text": "Section 10.5 Content height: the 'height' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.5" + "text": "Section 17.5.2.2 Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.2.2" } }, - "/changes#s.10.6.2": { + "/changes#r17.5.4": { "current": { - "number": "C.5.48", + "number": "C.4.85", "spec": "CSS 2.1", - "text": "Section 10.6.2 Inline replaced elements […]", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.2" + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.4" }, "snapshot": { - "number": "C.5.48", + "number": "C.4.85", "spec": "CSS 2.1", - "text": "Section 10.6.2 Inline replaced elements […]", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.2" + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.4" } }, - "/changes#s.10.6.4": { + "/changes#r17.5.5": { "current": { - "number": "C.5.49", + "number": "C.4.86", "spec": "CSS 2.1", - "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.4" + "text": "Section 17.5.5 Dynamic row and column effects", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.5" }, "snapshot": { - "number": "C.5.49", + "number": "C.4.86", "spec": "CSS 2.1", - "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.4" - } + "text": "Section 17.5.5 Dynamic row and column effects", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.5.5" + } }, - "/changes#s.10.6.5": { + "/changes#r17.6.1": { "current": { - "number": "C.5.50", + "number": "C.4.87", "spec": "CSS 2.1", - "text": "Section 10.6.5 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.5" + "text": "Section 17.6.1 The separated borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.1" }, "snapshot": { - "number": "C.5.50", + "number": "C.4.87", "spec": "CSS 2.1", - "text": "Section 10.6.5 Absolutely positioned, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.5" + "text": "Section 17.6.1 The separated borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.1" } }, - "/changes#s.10.8.1": { + "/changes#r17.6.2": { "current": { - "number": "C.5.51", + "number": "C.4.88", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.8.1" + "text": "Section 17.6.2 The collapsing borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.2" }, "snapshot": { - "number": "C.5.51", + "number": "C.4.88", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.8.1" + "text": "Section 17.6.2 The collapsing borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r17.6.2" } }, - "/changes#s.11.1.1": { + "/changes#r18.2": { "current": { - "number": "C.5.52", + "number": "C.4.89", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.1" + "text": "Section 18.2 System Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r18.2" }, "snapshot": { - "number": "C.5.52", + "number": "C.4.89", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.1" + "text": "Section 18.2 System Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r18.2" } }, - "/changes#s.11.1.2": { + "/changes#r18.4": { "current": { - "number": "C.5.53", + "number": "C.4.90", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.2" + "text": "Section 18.4 Dynamic outlines", + "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4" }, "snapshot": { - "number": "C.5.53", + "number": "C.4.90", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.2" + "text": "Section 18.4 Dynamic outlines", + "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4" } }, - "/changes#s.12.2": { + "/changes#r18.4.1": { "current": { - "number": "C.5.54", + "number": "C.4.91", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.2" + "text": "Section 18.4.1 Outlines and the focus", + "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4.1" }, "snapshot": { - "number": "C.5.54", + "number": "C.4.91", "spec": "CSS 2.1", - "text": "Section 12.2 The 'content' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.2" + "text": "Section 18.4.1 Outlines and the focus", + "url": "https://www.w3.org/TR/CSS21/changes.html#r18.4.1" } }, - "/changes#s.12.4.2": { + "/changes#r2.1": { "current": { - "number": "C.5.55", + "number": "C.4.1", "spec": "CSS 2.1", - "text": "Section 12.4.2 Counter styles", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.4.2" + "text": "Section 2.1 A brief CSS 2.1 tutorial for HTML", + "url": "https://www.w3.org/TR/CSS21/changes.html#r2.1" }, "snapshot": { - "number": "C.5.55", + "number": "C.4.1", "spec": "CSS 2.1", - "text": "Section 12.4.2 Counter styles", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.4.2" + "text": "Section 2.1 A brief CSS 2.1 tutorial for HTML", + "url": "https://www.w3.org/TR/CSS21/changes.html#r2.1" } }, - "/changes#s.12.5": { + "/changes#r2.2": { "current": { - "number": "C.5.56", + "number": "C.4.2", "spec": "CSS 2.1", - "text": "Section 12.5 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5" + "text": "Section 2.2 A brief CSS 2.1 tutorial for XML", + "url": "https://www.w3.org/TR/CSS21/changes.html#r2.2" }, "snapshot": { - "number": "C.5.56", + "number": "C.4.2", "spec": "CSS 2.1", - "text": "Section 12.5 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5" + "text": "Section 2.2 A brief CSS 2.1 tutorial for XML", + "url": "https://www.w3.org/TR/CSS21/changes.html#r2.2" } }, - "/changes#s.12.5.1": { + "/changes#r2.3": { "current": { - "number": "C.5.57", + "number": "C.4.3", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1" + "text": "Section 2.3 The CSS 2.1 processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r2.3" }, "snapshot": { - "number": "C.5.57", + "number": "C.4.3", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1" + "text": "Section 2.3 The CSS 2.1 processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#r2.3" } }, - "/changes#s.12.5.1a": { + "/changes#r3.1": { "current": { - "number": "C.5.58", + "number": "C.4.4", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1a" + "text": "Section 3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#r3.1" }, "snapshot": { - "number": "C.5.58", + "number": "C.4.4", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1a" + "text": "Section 3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#r3.1" } }, - "/changes#s.12.5.1b": { + "/changes#r4.1": { "current": { - "number": "C.5.59", + "number": "C.4.5", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1b" + "text": "Section 4.1 Syntax", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1" }, "snapshot": { - "number": "C.5.59", + "number": "C.4.5", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1b" + "text": "Section 4.1 Syntax", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1" } }, - "/changes#s.13.2": { + "/changes#r4.1.1": { "current": { - "number": "C.5.60", + "number": "C.4.6", "spec": "CSS 2.1", - "text": "Section 13.2 Page boxes: the @page rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2" + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.1" }, "snapshot": { - "number": "C.5.60", + "number": "C.4.6", "spec": "CSS 2.1", - "text": "Section 13.2 Page boxes: the @page rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2" + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.1" } }, - "/changes#s.13.2.1.1": { + "/changes#r4.1.3": { "current": { - "number": "C.5.61", + "number": "C.4.7", "spec": "CSS 2.1", - "text": "Section 13.2.1.1 Rendering page boxes that do not fit a target sheet", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.1.1" + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.3" }, "snapshot": { - "number": "C.5.61", + "number": "C.4.7", "spec": "CSS 2.1", - "text": "Section 13.2.1.1 Rendering page boxes that do not fit a target sheet", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.1.1" + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.3" } }, - "/changes#s.13.2.3": { + "/changes#r4.1.7": { "current": { - "number": "C.5.62", + "number": "C.4.8", "spec": "CSS 2.1", - "text": "Section 13.2.3 Content outside the page box", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.3" + "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.7" }, "snapshot": { - "number": "C.5.62", + "number": "C.4.8", "spec": "CSS 2.1", - "text": "Section 13.2.3 Content outside the page box", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.3" + "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.1.7" } }, - "/changes#s.13.3.1": { + "/changes#r4.2": { "current": { - "number": "C.5.63", + "number": "C.4.9", "spec": "CSS 2.1", - "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1" + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.2" }, "snapshot": { - "number": "C.5.63", + "number": "C.4.9", "spec": "CSS 2.1", - "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1" + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.2" } }, - "/changes#s.13.3.1a": { + "/changes#r4.3.1": { "current": { - "number": "C.5.64", + "number": "C.4.10", "spec": "CSS 2.1", - "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1a" + "text": "Section 4.3.1 Integers and real numbers", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.1" }, "snapshot": { - "number": "C.5.64", + "number": "C.4.10", "spec": "CSS 2.1", - "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1a" + "text": "Section 4.3.1 Integers and real numbers", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.1" } }, - "/changes#s.13.3.2": { + "/changes#r4.3.2": { "current": { - "number": "C.5.65", + "number": "C.4.11", "spec": "CSS 2.1", - "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2" + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.2" }, "snapshot": { - "number": "C.5.65", + "number": "C.4.11", "spec": "CSS 2.1", - "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2" + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.2" } }, - "/changes#s.13.3.2a": { + "/changes#r4.3.4": { "current": { - "number": "C.5.66", + "number": "C.4.12", "spec": "CSS 2.1", - "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2a" + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.4" }, "snapshot": { - "number": "C.5.66", + "number": "C.4.12", "spec": "CSS 2.1", - "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2a" + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#r4.3.4" } }, - "/changes#s.13.3.3": { + "/changes#r5.1": { "current": { - "number": "C.5.67", + "number": "C.4.13", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3" + "text": "Section 5.1 Pattern matching", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.1" }, "snapshot": { - "number": "C.5.67", + "number": "C.4.13", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3" + "text": "Section 5.1 Pattern matching", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.1" } }, - "/changes#s.13.3.3a": { + "/changes#r5.11.3": { "current": { - "number": "C.5.68", + "number": "C.4.18", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3a" + "text": "Section 5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.3" }, "snapshot": { - "number": "C.5.68", + "number": "C.4.18", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3a" + "text": "Section 5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.3" } }, - "/changes#s.13.3.3b": { + "/changes#r5.11.4": { "current": { - "number": "C.5.69", + "number": "C.4.19", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3b" + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.4" }, "snapshot": { - "number": "C.5.69", + "number": "C.4.19", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3b" + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.11.4" } }, - "/changes#s.13.3.3c": { + "/changes#r5.12.2": { "current": { - "number": "C.6.2", + "number": "C.4.20", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3c" + "text": "Section 5.12.2 The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.12.2" }, "snapshot": { - "number": "C.6.2", + "number": "C.4.20", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3c" + "text": "Section 5.12.2 The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.12.2" } }, - "/changes#s.13.3.5": { + "/changes#r5.7": { "current": { - "number": "C.5.70", + "number": "C.4.14", "spec": "CSS 2.1", - "text": "Section 13.3.5 \"Best\" page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.5" + "text": "Section 5.7 Adjacent sibling selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.7" }, "snapshot": { - "number": "C.5.70", + "number": "C.4.14", "spec": "CSS 2.1", - "text": "Section 13.3.5 \"Best\" page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.5" + "text": "Section 5.7 Adjacent sibling selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.7" } }, - "/changes#s.14.2": { + "/changes#r5.8.1": { "current": { - "number": "C.5.71", + "number": "C.4.15", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2" + "text": "Section 5.8.1 Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.1" }, "snapshot": { - "number": "C.5.71", + "number": "C.4.15", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2" + "text": "Section 5.8.1 Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.1" } }, - "/changes#s.14.2.1a": { + "/changes#r5.8.2": { "current": { - "number": "C.5.73", + "number": "C.4.16", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2.1a" + "text": "Section 5.8.2 Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.2" }, "snapshot": { - "number": "C.5.73", + "number": "C.4.16", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2.1a" + "text": "Section 5.8.2 Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.8.2" } }, - "/changes#s.14.2a": { + "/changes#r5.9": { "current": { - "number": "C.5.72", + "number": "C.4.17", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2a" + "text": "Section 5.9 ID selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.9" }, "snapshot": { - "number": "C.5.72", + "number": "C.4.17", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2a" + "text": "Section 5.9 ID selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#r5.9" } }, - "/changes#s.15.3": { + "/changes#r6.2": { "current": { - "number": "C.6.3", + "number": "C.4.21", "spec": "CSS 2.1", - "text": "Section 15.3 Font family: the 'font-family' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3" + "text": "Section 6.2 Inheritance", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2" }, "snapshot": { - "number": "C.6.3", + "number": "C.4.21", "spec": "CSS 2.1", - "text": "Section 15.3 Font family: the 'font-family' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3" + "text": "Section 6.2 Inheritance", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2" } }, - "/changes#s.15.3.1.1": { + "/changes#r6.2.1": { "current": { - "number": "C.6.4", + "number": "C.4.22", "spec": "CSS 2.1", - "text": "Section 15.3.1.1 serif", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3.1.1" + "text": "Section 6.2.1 The 'inherit' value", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2.1" }, "snapshot": { - "number": "C.6.4", + "number": "C.4.22", "spec": "CSS 2.1", - "text": "Section 15.3.1.1 serif", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3.1.1" + "text": "Section 6.2.1 The 'inherit' value", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.2.1" } }, - "/changes#s.15.6": { + "/changes#r6.3": { "current": { - "number": "C.5.74", + "number": "C.4.23", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness: the 'font-weight' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.6" + "text": "Section 6.3 The @import rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.3" }, "snapshot": { - "number": "C.5.74", + "number": "C.4.23", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness: the 'font-weight' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.6" + "text": "Section 6.3 The @import rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.3" } }, - "/changes#s.15.7": { + "/changes#r6.4": { "current": { - "number": "C.6.5", + "number": "C.4.24", "spec": "CSS 2.1", - "text": "Section 15.7 Font size: the 'font-size' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.7" + "text": "Section 6.4 The Cascade", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4" }, "snapshot": { - "number": "C.6.5", + "number": "C.4.24", "spec": "CSS 2.1", - "text": "Section 15.7 Font size: the 'font-size' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.7" + "text": "Section 6.4 The Cascade", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4" } }, - "/changes#s.16.6": { + "/changes#r6.4.1": { "current": { - "number": "C.5.75", + "number": "C.4.25", "spec": "CSS 2.1", - "text": "Section 16.6 Whitespace: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6" + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.1" }, "snapshot": { - "number": "C.5.75", + "number": "C.4.25", "spec": "CSS 2.1", - "text": "Section 16.6 Whitespace: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6" + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.1" } }, - "/changes#s.16.6.1": { + "/changes#r6.4.3": { "current": { - "number": "C.5.76", + "number": "C.4.26", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6.1" + "text": "Section 6.4.3 Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.3" }, "snapshot": { - "number": "C.5.76", + "number": "C.4.26", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6.1" + "text": "Section 6.4.3 Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS21/changes.html#r6.4.3" } }, - "/changes#s.17.2.1": { + "/changes#r7.2.1": { "current": { - "number": "C.5.77", + "number": "C.4.27", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1" + "text": "Section 7.2.1 The @media rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#r7.2.1" }, "snapshot": { - "number": "C.5.77", + "number": "C.4.27", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1" + "text": "Section 7.2.1 The @media rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#r7.2.1" } }, - "/changes#s.17.2.1a": { + "/changes#r7.3": { "current": { - "number": "C.5.78", + "number": "C.4.28", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1a" + "text": "Section 7.3 Recognized media types", + "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3" }, "snapshot": { - "number": "C.5.78", + "number": "C.4.28", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1a" + "text": "Section 7.3 Recognized media types", + "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3" } }, - "/changes#s.17.4": { + "/changes#r7.3.1": { "current": { - "number": "C.5.79", + "number": "C.4.29", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.4" + "text": "Section 7.3.1 Media groups", + "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3.1" }, "snapshot": { - "number": "C.5.79", + "number": "C.4.29", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.4" + "text": "Section 7.3.1 Media groups", + "url": "https://www.w3.org/TR/CSS21/changes.html#r7.3.1" } }, - "/changes#s.17.5.2.1": { + "/changes#r8.1": { "current": { - "number": "C.6.6", + "number": "C.4.30", "spec": "CSS 2.1", - "text": "Section 17.5.2.1 Fixed table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.2.1" + "text": "Section 8.1 Box dimensions", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.1" }, "snapshot": { - "number": "C.6.6", + "number": "C.4.30", "spec": "CSS 2.1", - "text": "Section 17.5.2.1 Fixed table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.2.1" + "text": "Section 8.1 Box dimensions", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.1" } }, - "/changes#s.17.5.3": { + "/changes#r8.3": { "current": { - "number": "C.6.7", + "number": "C.4.31", "spec": "CSS 2.1", - "text": "Section 17.5.3 Table height layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.3" + "text": "Section 8.3 Margin properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3" }, "snapshot": { - "number": "C.6.7", + "number": "C.4.31", "spec": "CSS 2.1", - "text": "Section 17.5.3 Table height layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.3" + "text": "Section 8.3 Margin properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3" } }, - "/changes#s.17.5.4a": { + "/changes#r8.3.1": { "current": { - "number": "C.5.80", + "number": "C.4.32", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.4a" + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3.1" }, "snapshot": { - "number": "C.5.80", + "number": "C.4.32", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.4a" + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.3.1" } }, - "/changes#s.18.1": { + "/changes#r8.5.3": { "current": { - "number": "C.5.81", + "number": "C.4.33", "spec": "CSS 2.1", - "text": "Section 18.1 Cursors: the 'cursor' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.18.1" + "text": "Section 8.5.3 Border style", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.5.3" }, "snapshot": { - "number": "C.5.81", + "number": "C.4.33", "spec": "CSS 2.1", - "text": "Section 18.1 Cursors: the 'cursor' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.18.1" + "text": "Section 8.5.3 Border style", + "url": "https://www.w3.org/TR/CSS21/changes.html#r8.5.3" } }, - "/changes#s.2.3": { + "/changes#r9.1.1": { "current": { - "number": "C.5.2", + "number": "C.4.34", "spec": "CSS 2.1", - "text": "Section 2.3 The CSS 2.1 processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.2.3" + "text": "Section 9.1.1 The viewport", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.1.1" }, "snapshot": { - "number": "C.5.2", + "number": "C.4.34", "spec": "CSS 2.1", - "text": "Section 2.3 The CSS 2.1 processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.2.3" + "text": "Section 9.1.1 The viewport", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.1.1" } }, - "/changes#s.3.1": { + "/changes#r9.2.4": { "current": { - "number": "C.5.3", + "number": "C.4.35", "spec": "CSS 2.1", - "text": "Section 3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.3.1" + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.2.4" }, "snapshot": { - "number": "C.5.3", + "number": "C.4.35", "spec": "CSS 2.1", - "text": "Section 3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.3.1" + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.2.4" } }, - "/changes#s.4.1.1": { + "/changes#r9.3.1": { "current": { - "number": "C.5.4", + "number": "C.4.36", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.1" + "text": "Section 9.3.1 Choosing a positioning scheme", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.1" }, "snapshot": { - "number": "C.5.4", + "number": "C.4.36", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.1" + "text": "Section 9.3.1 Choosing a positioning scheme", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.1" } }, - "/changes#s.4.1.2.2": { + "/changes#r9.3.2": { "current": { - "number": "C.5.5", + "number": "C.4.37", "spec": "CSS 2.1", - "text": "Section 4.1.2.2 Informative Historical Notes", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.2.2" + "text": "Section 9.3.2 Box offsets", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.2" }, "snapshot": { - "number": "C.5.5", + "number": "C.4.37", "spec": "CSS 2.1", - "text": "Section 4.1.2.2 Informative Historical Notes", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.2.2" + "text": "Section 9.3.2 Box offsets", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.3.2" } }, - "/changes#s.4.1.3": { + "/changes#r9.4.2": { "current": { - "number": "C.5.6", + "number": "C.4.38", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3" + "text": "Section 9.4.2 Inline formatting context", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.2" }, "snapshot": { - "number": "C.5.6", + "number": "C.4.38", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3" + "text": "Section 9.4.2 Inline formatting context", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.2" } }, - "/changes#s.4.1.3a": { + "/changes#r9.4.3": { "current": { - "number": "C.5.7", + "number": "C.4.39", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3a" + "text": "Section 9.4.3 Relative positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.3" }, "snapshot": { - "number": "C.5.7", + "number": "C.4.39", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3a" + "text": "Section 9.4.3 Relative positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.4.3" } }, - "/changes#s.4.1.3b": { + "/changes#r9.5": { "current": { - "number": "C.5.8", + "number": "C.4.40", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3b" + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5" }, "snapshot": { - "number": "C.5.8", + "number": "C.4.40", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3b" + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5" } }, - "/changes#s.4.1.3c": { + "/changes#r9.5.1": { "current": { - "number": "C.5.9", + "number": "C.4.41", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3c" + "text": "Section 9.5.1 Positioning the float", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.1" }, "snapshot": { - "number": "C.5.9", + "number": "C.4.41", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3c" + "text": "Section 9.5.1 Positioning the float", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.1" } }, - "/changes#s.4.1.5": { + "/changes#r9.5.2": { "current": { - "number": "C.5.10", + "number": "C.4.42", "spec": "CSS 2.1", - "text": "Section 4.1.5 At-rules", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.5" + "text": "Section 9.5.2 Controlling flow next to floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.2" }, "snapshot": { - "number": "C.5.10", + "number": "C.4.42", "spec": "CSS 2.1", - "text": "Section 4.1.5 At-rules", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.5" + "text": "Section 9.5.2 Controlling flow next to floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.5.2" } }, - "/changes#s.4.1.7": { + "/changes#r9.8": { "current": { - "number": "C.5.11", + "number": "C.4.43", "spec": "CSS 2.1", - "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.7" + "text": "Section 9.8 Comparison of normal flow, floats, and absolute positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.8" }, "snapshot": { - "number": "C.5.11", + "number": "C.4.43", "spec": "CSS 2.1", - "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.7" + "text": "Section 9.8 Comparison of normal flow, floats, and absolute positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#r9.8" } }, - "/changes#s.4.2": { + "/changes#rD": { "current": { - "number": "C.5.12", + "number": "C.4.92", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2" + "text": "Appendix D Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#rD" }, "snapshot": { - "number": "C.5.12", + "number": "C.4.92", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2" + "text": "Appendix D Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#rD" } }, - "/changes#s.4.2a": { + "/changes#s-12": { "current": { - "number": "C.5.13", + "number": "C.2.127", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2a" + "text": "Chapter 12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#s-12" }, "snapshot": { - "number": "C.5.13", + "number": "C.2.127", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2a" + "text": "Chapter 12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#s-12" } }, - "/changes#s.4.2b": { + "/changes#s.1.4.2.1": { "current": { - "number": "C.6.1", + "number": "C.5.1", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2b" + "text": "Section 1.4.2.1 Value", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.1.4.2.1" }, "snapshot": { - "number": "C.6.1", + "number": "C.5.1", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2b" + "text": "Section 1.4.2.1 Value", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.1.4.2.1" } }, - "/changes#s.4.3.2": { + "/changes#s.10.1": { "current": { - "number": "C.5.14", + "number": "C.5.36", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.2" + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.1" }, "snapshot": { - "number": "C.5.14", + "number": "C.5.36", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.2" + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.1" } }, - "/changes#s.4.3.5": { + "/changes#s.10.3": { "current": { - "number": "C.5.15", + "number": "C.5.37", "spec": "CSS 2.1", - "text": "Section 4.3.5 Counters", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.5" + "text": "Section 10.3 Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3" }, "snapshot": { - "number": "C.5.15", + "number": "C.5.37", "spec": "CSS 2.1", - "text": "Section 4.3.5 Counters", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.5" + "text": "Section 10.3 Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3" } }, - "/changes#s.5.11.4": { + "/changes#s.10.3.1": { "current": { - "number": "C.5.18", + "number": "C.5.38", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.11.4" + "text": "Section 10.3.1 Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.1" }, "snapshot": { - "number": "C.5.18", + "number": "C.5.38", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.11.4" + "text": "Section 10.3.1 Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.1" } }, - "/changes#s.5.12.3": { + "/changes#s.10.3.2": { "current": { - "number": "C.5.19", + "number": "C.5.39", "spec": "CSS 2.1", - "text": "Section 5.12.3 The :before and :after pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.12.3" + "text": "Section 10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2" }, "snapshot": { - "number": "C.5.19", + "number": "C.5.39", + "spec": "CSS 2.1", + "text": "Section 10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2" + } + }, + "/changes#s.10.3.2a": { + "current": { + "number": "C.5.40", + "spec": "CSS 2.1", + "text": "Section 10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2a" + }, + "snapshot": { + "number": "C.5.40", + "spec": "CSS 2.1", + "text": "Section 10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.2a" + } + }, + "/changes#s.10.3.3": { + "current": { + "number": "C.5.41", + "spec": "CSS 2.1", + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.3" + }, + "snapshot": { + "number": "C.5.41", + "spec": "CSS 2.1", + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.3" + } + }, + "/changes#s.10.3.7": { + "current": { + "number": "C.5.42", + "spec": "CSS 2.1", + "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7" + }, + "snapshot": { + "number": "C.5.42", + "spec": "CSS 2.1", + "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7" + } + }, + "/changes#s.10.3.7a": { + "current": { + "number": "C.5.43", + "spec": "CSS 2.1", + "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7a" + }, + "snapshot": { + "number": "C.5.43", + "spec": "CSS 2.1", + "text": "Section 10.3.7 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.7a" + } + }, + "/changes#s.10.3.8": { + "current": { + "number": "C.5.44", + "spec": "CSS 2.1", + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8" + }, + "snapshot": { + "number": "C.5.44", + "spec": "CSS 2.1", + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8" + } + }, + "/changes#s.10.3.8a": { + "current": { + "number": "C.5.45", + "spec": "CSS 2.1", + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8a" + }, + "snapshot": { + "number": "C.5.45", + "spec": "CSS 2.1", + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8a" + } + }, + "/changes#s.10.3.8c": { + "current": { + "number": "C.5.46", + "spec": "CSS 2.1", + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8c" + }, + "snapshot": { + "number": "C.5.46", + "spec": "CSS 2.1", + "text": "Section 10.3.8 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.3.8c" + } + }, + "/changes#s.10.5": { + "current": { + "number": "C.5.47", + "spec": "CSS 2.1", + "text": "Section 10.5 Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.5" + }, + "snapshot": { + "number": "C.5.47", + "spec": "CSS 2.1", + "text": "Section 10.5 Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.5" + } + }, + "/changes#s.10.6.2": { + "current": { + "number": "C.5.48", + "spec": "CSS 2.1", + "text": "Section 10.6.2 Inline replaced elements […]", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.2" + }, + "snapshot": { + "number": "C.5.48", + "spec": "CSS 2.1", + "text": "Section 10.6.2 Inline replaced elements […]", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.2" + } + }, + "/changes#s.10.6.4": { + "current": { + "number": "C.5.49", + "spec": "CSS 2.1", + "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.4" + }, + "snapshot": { + "number": "C.5.49", + "spec": "CSS 2.1", + "text": "Section 10.6.4 Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.4" + } + }, + "/changes#s.10.6.5": { + "current": { + "number": "C.5.50", + "spec": "CSS 2.1", + "text": "Section 10.6.5 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.5" + }, + "snapshot": { + "number": "C.5.50", + "spec": "CSS 2.1", + "text": "Section 10.6.5 Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.6.5" + } + }, + "/changes#s.10.8.1": { + "current": { + "number": "C.5.51", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.8.1" + }, + "snapshot": { + "number": "C.5.51", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.10.8.1" + } + }, + "/changes#s.11.1.1": { + "current": { + "number": "C.5.52", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.1" + }, + "snapshot": { + "number": "C.5.52", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.1" + } + }, + "/changes#s.11.1.2": { + "current": { + "number": "C.5.53", + "spec": "CSS 2.1", + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.2" + }, + "snapshot": { + "number": "C.5.53", + "spec": "CSS 2.1", + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.11.1.2" + } + }, + "/changes#s.12.2": { + "current": { + "number": "C.5.54", + "spec": "CSS 2.1", + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.2" + }, + "snapshot": { + "number": "C.5.54", + "spec": "CSS 2.1", + "text": "Section 12.2 The 'content' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.2" + } + }, + "/changes#s.12.4.2": { + "current": { + "number": "C.5.55", + "spec": "CSS 2.1", + "text": "Section 12.4.2 Counter styles", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.4.2" + }, + "snapshot": { + "number": "C.5.55", + "spec": "CSS 2.1", + "text": "Section 12.4.2 Counter styles", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.4.2" + } + }, + "/changes#s.12.5": { + "current": { + "number": "C.5.56", + "spec": "CSS 2.1", + "text": "Section 12.5 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5" + }, + "snapshot": { + "number": "C.5.56", + "spec": "CSS 2.1", + "text": "Section 12.5 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5" + } + }, + "/changes#s.12.5.1": { + "current": { + "number": "C.5.57", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1" + }, + "snapshot": { + "number": "C.5.57", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1" + } + }, + "/changes#s.12.5.1a": { + "current": { + "number": "C.5.58", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1a" + }, + "snapshot": { + "number": "C.5.58", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1a" + } + }, + "/changes#s.12.5.1b": { + "current": { + "number": "C.5.59", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1b" + }, + "snapshot": { + "number": "C.5.59", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.12.5.1b" + } + }, + "/changes#s.13.2": { + "current": { + "number": "C.5.60", + "spec": "CSS 2.1", + "text": "Section 13.2 Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2" + }, + "snapshot": { + "number": "C.5.60", + "spec": "CSS 2.1", + "text": "Section 13.2 Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2" + } + }, + "/changes#s.13.2.1.1": { + "current": { + "number": "C.5.61", + "spec": "CSS 2.1", + "text": "Section 13.2.1.1 Rendering page boxes that do not fit a target sheet", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.1.1" + }, + "snapshot": { + "number": "C.5.61", + "spec": "CSS 2.1", + "text": "Section 13.2.1.1 Rendering page boxes that do not fit a target sheet", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.1.1" + } + }, + "/changes#s.13.2.3": { + "current": { + "number": "C.5.62", + "spec": "CSS 2.1", + "text": "Section 13.2.3 Content outside the page box", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.3" + }, + "snapshot": { + "number": "C.5.62", + "spec": "CSS 2.1", + "text": "Section 13.2.3 Content outside the page box", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.2.3" + } + }, + "/changes#s.13.3.1": { + "current": { + "number": "C.5.63", + "spec": "CSS 2.1", + "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1" + }, + "snapshot": { + "number": "C.5.63", + "spec": "CSS 2.1", + "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1" + } + }, + "/changes#s.13.3.1a": { + "current": { + "number": "C.5.64", + "spec": "CSS 2.1", + "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1a" + }, + "snapshot": { + "number": "C.5.64", + "spec": "CSS 2.1", + "text": "Section 13.3.1 Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.1a" + } + }, + "/changes#s.13.3.2": { + "current": { + "number": "C.5.65", + "spec": "CSS 2.1", + "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2" + }, + "snapshot": { + "number": "C.5.65", + "spec": "CSS 2.1", + "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2" + } + }, + "/changes#s.13.3.2a": { + "current": { + "number": "C.5.66", + "spec": "CSS 2.1", + "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2a" + }, + "snapshot": { + "number": "C.5.66", + "spec": "CSS 2.1", + "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.2a" + } + }, + "/changes#s.13.3.3": { + "current": { + "number": "C.5.67", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3" + }, + "snapshot": { + "number": "C.5.67", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3" + } + }, + "/changes#s.13.3.3a": { + "current": { + "number": "C.5.68", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3a" + }, + "snapshot": { + "number": "C.5.68", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3a" + } + }, + "/changes#s.13.3.3b": { + "current": { + "number": "C.5.69", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3b" + }, + "snapshot": { + "number": "C.5.69", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3b" + } + }, + "/changes#s.13.3.3c": { + "current": { + "number": "C.6.2", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3c" + }, + "snapshot": { + "number": "C.6.2", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.3c" + } + }, + "/changes#s.13.3.5": { + "current": { + "number": "C.5.70", + "spec": "CSS 2.1", + "text": "Section 13.3.5 \"Best\" page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.5" + }, + "snapshot": { + "number": "C.5.70", + "spec": "CSS 2.1", + "text": "Section 13.3.5 \"Best\" page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.13.3.5" + } + }, + "/changes#s.14.2": { + "current": { + "number": "C.5.71", + "spec": "CSS 2.1", + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2" + }, + "snapshot": { + "number": "C.5.71", + "spec": "CSS 2.1", + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2" + } + }, + "/changes#s.14.2.1a": { + "current": { + "number": "C.5.73", + "spec": "CSS 2.1", + "text": "Section 14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2.1a" + }, + "snapshot": { + "number": "C.5.73", + "spec": "CSS 2.1", + "text": "Section 14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2.1a" + } + }, + "/changes#s.14.2a": { + "current": { + "number": "C.5.72", + "spec": "CSS 2.1", + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2a" + }, + "snapshot": { + "number": "C.5.72", + "spec": "CSS 2.1", + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.14.2a" + } + }, + "/changes#s.15.3": { + "current": { + "number": "C.6.3", + "spec": "CSS 2.1", + "text": "Section 15.3 Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3" + }, + "snapshot": { + "number": "C.6.3", + "spec": "CSS 2.1", + "text": "Section 15.3 Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3" + } + }, + "/changes#s.15.3.1.1": { + "current": { + "number": "C.6.4", + "spec": "CSS 2.1", + "text": "Section 15.3.1.1 serif", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3.1.1" + }, + "snapshot": { + "number": "C.6.4", + "spec": "CSS 2.1", + "text": "Section 15.3.1.1 serif", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.3.1.1" + } + }, + "/changes#s.15.6": { + "current": { + "number": "C.5.74", + "spec": "CSS 2.1", + "text": "Section 15.6 Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.6" + }, + "snapshot": { + "number": "C.5.74", + "spec": "CSS 2.1", + "text": "Section 15.6 Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.6" + } + }, + "/changes#s.15.7": { + "current": { + "number": "C.6.5", + "spec": "CSS 2.1", + "text": "Section 15.7 Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.7" + }, + "snapshot": { + "number": "C.6.5", + "spec": "CSS 2.1", + "text": "Section 15.7 Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.15.7" + } + }, + "/changes#s.16.6": { + "current": { + "number": "C.5.75", + "spec": "CSS 2.1", + "text": "Section 16.6 Whitespace: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6" + }, + "snapshot": { + "number": "C.5.75", + "spec": "CSS 2.1", + "text": "Section 16.6 Whitespace: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6" + } + }, + "/changes#s.16.6.1": { + "current": { + "number": "C.5.76", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6.1" + }, + "snapshot": { + "number": "C.5.76", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.16.6.1" + } + }, + "/changes#s.17.2.1": { + "current": { + "number": "C.5.77", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1" + }, + "snapshot": { + "number": "C.5.77", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1" + } + }, + "/changes#s.17.2.1a": { + "current": { + "number": "C.5.78", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1a" + }, + "snapshot": { + "number": "C.5.78", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.2.1a" + } + }, + "/changes#s.17.4": { + "current": { + "number": "C.5.79", + "spec": "CSS 2.1", + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.4" + }, + "snapshot": { + "number": "C.5.79", + "spec": "CSS 2.1", + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.4" + } + }, + "/changes#s.17.5.2.1": { + "current": { + "number": "C.6.6", + "spec": "CSS 2.1", + "text": "Section 17.5.2.1 Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.2.1" + }, + "snapshot": { + "number": "C.6.6", + "spec": "CSS 2.1", + "text": "Section 17.5.2.1 Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.2.1" + } + }, + "/changes#s.17.5.3": { + "current": { + "number": "C.6.7", + "spec": "CSS 2.1", + "text": "Section 17.5.3 Table height layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.3" + }, + "snapshot": { + "number": "C.6.7", + "spec": "CSS 2.1", + "text": "Section 17.5.3 Table height layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.3" + } + }, + "/changes#s.17.5.4a": { + "current": { + "number": "C.5.80", + "spec": "CSS 2.1", + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.4a" + }, + "snapshot": { + "number": "C.5.80", + "spec": "CSS 2.1", + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.17.5.4a" + } + }, + "/changes#s.18.1": { + "current": { + "number": "C.5.81", + "spec": "CSS 2.1", + "text": "Section 18.1 Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.18.1" + }, + "snapshot": { + "number": "C.5.81", + "spec": "CSS 2.1", + "text": "Section 18.1 Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.18.1" + } + }, + "/changes#s.2.3": { + "current": { + "number": "C.5.2", + "spec": "CSS 2.1", + "text": "Section 2.3 The CSS 2.1 processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.2.3" + }, + "snapshot": { + "number": "C.5.2", + "spec": "CSS 2.1", + "text": "Section 2.3 The CSS 2.1 processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.2.3" + } + }, + "/changes#s.3.1": { + "current": { + "number": "C.5.3", + "spec": "CSS 2.1", + "text": "Section 3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.3.1" + }, + "snapshot": { + "number": "C.5.3", + "spec": "CSS 2.1", + "text": "Section 3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.3.1" + } + }, + "/changes#s.4.1.1": { + "current": { + "number": "C.5.4", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.1" + }, + "snapshot": { + "number": "C.5.4", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.1" + } + }, + "/changes#s.4.1.2.2": { + "current": { + "number": "C.5.5", + "spec": "CSS 2.1", + "text": "Section 4.1.2.2 Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.2.2" + }, + "snapshot": { + "number": "C.5.5", + "spec": "CSS 2.1", + "text": "Section 4.1.2.2 Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.2.2" + } + }, + "/changes#s.4.1.3": { + "current": { + "number": "C.5.6", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3" + }, + "snapshot": { + "number": "C.5.6", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3" + } + }, + "/changes#s.4.1.3a": { + "current": { + "number": "C.5.7", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3a" + }, + "snapshot": { + "number": "C.5.7", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3a" + } + }, + "/changes#s.4.1.3b": { + "current": { + "number": "C.5.8", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3b" + }, + "snapshot": { + "number": "C.5.8", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3b" + } + }, + "/changes#s.4.1.3c": { + "current": { + "number": "C.5.9", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3c" + }, + "snapshot": { + "number": "C.5.9", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.3c" + } + }, + "/changes#s.4.1.5": { + "current": { + "number": "C.5.10", + "spec": "CSS 2.1", + "text": "Section 4.1.5 At-rules", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.5" + }, + "snapshot": { + "number": "C.5.10", + "spec": "CSS 2.1", + "text": "Section 4.1.5 At-rules", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.5" + } + }, + "/changes#s.4.1.7": { + "current": { + "number": "C.5.11", + "spec": "CSS 2.1", + "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.7" + }, + "snapshot": { + "number": "C.5.11", + "spec": "CSS 2.1", + "text": "Section 4.1.7 Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.1.7" + } + }, + "/changes#s.4.2": { + "current": { + "number": "C.5.12", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2" + }, + "snapshot": { + "number": "C.5.12", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2" + } + }, + "/changes#s.4.2a": { + "current": { + "number": "C.5.13", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2a" + }, + "snapshot": { + "number": "C.5.13", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2a" + } + }, + "/changes#s.4.2b": { + "current": { + "number": "C.6.1", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2b" + }, + "snapshot": { + "number": "C.6.1", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.2b" + } + }, + "/changes#s.4.3.2": { + "current": { + "number": "C.5.14", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.2" + }, + "snapshot": { + "number": "C.5.14", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.2" + } + }, + "/changes#s.4.3.5": { + "current": { + "number": "C.5.15", + "spec": "CSS 2.1", + "text": "Section 4.3.5 Counters", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.5" + }, + "snapshot": { + "number": "C.5.15", + "spec": "CSS 2.1", + "text": "Section 4.3.5 Counters", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.4.3.5" + } + }, + "/changes#s.5.11.4": { + "current": { + "number": "C.5.18", + "spec": "CSS 2.1", + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.11.4" + }, + "snapshot": { + "number": "C.5.18", + "spec": "CSS 2.1", + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.11.4" + } + }, + "/changes#s.5.12.3": { + "current": { + "number": "C.5.19", + "spec": "CSS 2.1", + "text": "Section 5.12.3 The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.12.3" + }, + "snapshot": { + "number": "C.5.19", + "spec": "CSS 2.1", + "text": "Section 5.12.3 The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.12.3" + } + }, + "/changes#s.5.8.1": { + "current": { + "number": "C.5.16", + "spec": "CSS 2.1", + "text": "Section 5.8.1 Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.1" + }, + "snapshot": { + "number": "C.5.16", + "spec": "CSS 2.1", + "text": "Section 5.8.1 Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.1" + } + }, + "/changes#s.5.8.2": { + "current": { + "number": "C.5.17", + "spec": "CSS 2.1", + "text": "Section 5.8.2 Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.2" + }, + "snapshot": { + "number": "C.5.17", + "spec": "CSS 2.1", + "text": "Section 5.8.2 Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.2" + } + }, + "/changes#s.6.3": { + "current": { + "number": "C.5.20", + "spec": "CSS 2.1", + "text": "Section 6.3 The @import rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3" + }, + "snapshot": { + "number": "C.5.20", + "spec": "CSS 2.1", + "text": "Section 6.3 The @import rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3" + } + }, + "/changes#s.6.3a": { + "current": { + "number": "C.5.21", + "spec": "CSS 2.1", + "text": "Section 6.3 The @import rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3a" + }, + "snapshot": { + "number": "C.5.21", + "spec": "CSS 2.1", + "text": "Section 6.3 The @import rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3a" + } + }, + "/changes#s.6.4.1": { + "current": { + "number": "C.5.22", + "spec": "CSS 2.1", + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1" + }, + "snapshot": { + "number": "C.5.22", + "spec": "CSS 2.1", + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1" + } + }, + "/changes#s.6.4.1a": { + "current": { + "number": "C.5.23", + "spec": "CSS 2.1", + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1a" + }, + "snapshot": { + "number": "C.5.23", + "spec": "CSS 2.1", + "text": "Section 6.4.1 Cascading order", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1a" + } + }, + "/changes#s.7.2.1": { + "current": { + "number": "C.5.24", + "spec": "CSS 2.1", + "text": "Section 7.2.1 The @media rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.7.2.1" + }, + "snapshot": { + "number": "C.5.24", + "spec": "CSS 2.1", + "text": "Section 7.2.1 The @media rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.7.2.1" + } + }, + "/changes#s.8.3.1": { + "current": { + "number": "C.5.25", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1" + }, + "snapshot": { + "number": "C.5.25", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1" + } + }, + "/changes#s.8.3.1a": { + "current": { + "number": "C.5.26", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1a" + }, + "snapshot": { + "number": "C.5.26", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1a" + } + }, + "/changes#s.8.3.1b": { + "current": { + "number": "C.5.27", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1b" + }, + "snapshot": { + "number": "C.5.27", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1b" + } + }, + "/changes#s.9.2.2": { + "current": { + "number": "C.5.28", + "spec": "CSS 2.1", + "text": "Section 9.2.2 Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.2" + }, + "snapshot": { + "number": "C.5.28", + "spec": "CSS 2.1", + "text": "Section 9.2.2 Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.2" + } + }, + "/changes#s.9.2.4": { + "current": { + "number": "C.5.29", + "spec": "CSS 2.1", + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.4" + }, + "snapshot": { + "number": "C.5.29", + "spec": "CSS 2.1", + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.4" + } + }, + "/changes#s.9.3.2": { + "current": { + "number": "C.5.30", + "spec": "CSS 2.1", + "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.3.2" + }, + "snapshot": { + "number": "C.5.30", + "spec": "CSS 2.1", + "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.3.2" + } + }, + "/changes#s.9.5": { + "current": { + "number": "C.5.31", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5" + }, + "snapshot": { + "number": "C.5.31", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5" + } + }, + "/changes#s.9.5.2": { + "current": { + "number": "C.5.33", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5.2" + }, + "snapshot": { + "number": "C.5.33", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5.2" + } + }, + "/changes#s.9.5a": { + "current": { + "number": "C.5.32", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5a" + }, + "snapshot": { + "number": "C.5.32", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5a" + } + }, + "/changes#s.9.6.1": { + "current": { + "number": "C.5.34", + "spec": "CSS 2.1", + "text": "Section 9.6.1 Fixed positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.6.1" + }, + "snapshot": { + "number": "C.5.34", + "spec": "CSS 2.1", + "text": "Section 9.6.1 Fixed positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.6.1" + } + }, + "/changes#s.9.9.1": { + "current": { + "number": "C.5.35", + "spec": "CSS 2.1", + "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.9.1" + }, + "snapshot": { + "number": "C.5.35", + "spec": "CSS 2.1", + "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.9.1" + } + }, + "/changes#s.B.2": { + "current": { + "number": "C.5.82", + "spec": "CSS 2.1", + "text": "Section B.2 Informative references", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.B.2" + }, + "snapshot": { + "number": "C.5.82", + "spec": "CSS 2.1", + "text": "Section B.2 Informative references", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.B.2" + } + }, + "/changes#s.D": { + "current": { + "number": "C.5.83", + "spec": "CSS 2.1", + "text": "Appendix D. Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.D" + }, + "snapshot": { + "number": "C.5.83", + "spec": "CSS 2.1", + "text": "Appendix D. Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.D" + } + }, + "/changes#s.Da": { + "current": { + "number": "C.5.84", + "spec": "CSS 2.1", + "text": "Appendix D. Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.Da" + }, + "snapshot": { + "number": "C.5.84", + "spec": "CSS 2.1", + "text": "Appendix D. Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.Da" + } + }, + "/changes#s.E.2": { + "current": { + "number": "C.5.85", + "spec": "CSS 2.1", + "text": "Section E.2 Painting order", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.E.2" + }, + "snapshot": { + "number": "C.5.85", + "spec": "CSS 2.1", + "text": "Section E.2 Painting order", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.E.2" + } + }, + "/changes#s.G": { + "current": { + "number": "C.5.86", + "spec": "CSS 2.1", + "text": "Appendix G. Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G" + }, + "snapshot": { + "number": "C.5.86", + "spec": "CSS 2.1", + "text": "Appendix G. Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G" + } + }, + "/changes#s.G.1": { + "current": { + "number": "C.5.87", + "spec": "CSS 2.1", + "text": "Section G.1 Grammar", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.1" + }, + "snapshot": { + "number": "C.5.87", + "spec": "CSS 2.1", + "text": "Section G.1 Grammar", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.1" + } + }, + "/changes#s.G.2": { + "current": { + "number": "C.5.88", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2" + }, + "snapshot": { + "number": "C.5.88", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2" + } + }, + "/changes#s.G.2a": { + "current": { + "number": "C.5.89", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2a" + }, + "snapshot": { + "number": "C.5.89", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2a" + } + }, + "/changes#s.G.2b": { + "current": { + "number": "C.5.90", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2b" + }, + "snapshot": { + "number": "C.5.90", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2b" + } + }, + "/changes#s.G.2c": { + "current": { + "number": "C.5.91", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2c" + }, + "snapshot": { + "number": "C.5.91", + "spec": "CSS 2.1", + "text": "Section G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2c" + } + }, + "/changes#s.Ga": { + "current": { + "number": "C.6.8", + "spec": "CSS 2.1", + "text": "Appendix G. Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.Ga" + }, + "snapshot": { + "number": "C.6.8", + "spec": "CSS 2.1", + "text": "Appendix G. Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.Ga" + } + }, + "/changes#s.I": { + "current": { + "number": "C.5.92", + "spec": "CSS 2.1", + "text": "Appendix I. Index", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.I" + }, + "snapshot": { + "number": "C.5.92", + "spec": "CSS 2.1", + "text": "Appendix I. Index", + "url": "https://www.w3.org/TR/CSS21/changes.html#s.I" + } + }, + "/changes#t.1": { + "current": { + "number": "C.7.1", + "spec": "CSS 2.1", + "text": "Section 1.4.2.1 Value", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.1" + }, + "snapshot": { + "number": "C.7.1", + "spec": "CSS 2.1", + "text": "Section 1.4.2.1 Value", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.1" + } + }, + "/changes#t.10.1": { + "current": { + "number": "C.7.49", + "spec": "CSS 2.1", + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.1" + }, + "snapshot": { + "number": "C.7.49", + "spec": "CSS 2.1", + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.1" + } + }, + "/changes#t.10.2": { + "current": { + "number": "C.7.50", + "spec": "CSS 2.1", + "text": "Section 10.2 Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2" + }, + "snapshot": { + "number": "C.7.50", + "spec": "CSS 2.1", + "text": "Section 10.2 Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2" + } + }, + "/changes#t.10.2a": { + "current": { + "number": "C.7.51", + "spec": "CSS 2.1", + "text": "Section 10.2 Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2a" + }, + "snapshot": { + "number": "C.7.51", + "spec": "CSS 2.1", + "text": "Section 10.2 Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2a" + } + }, + "/changes#t.10.2b": { + "current": { + "number": "C.7.52", + "spec": "CSS 2.1", + "text": "Section 10.2 Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2b" + }, + "snapshot": { + "number": "C.7.52", + "spec": "CSS 2.1", + "text": "Section 10.2 Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2b" + } + }, + "/changes#t.10.5": { + "current": { + "number": "C.7.53", + "spec": "CSS 2.1", + "text": "Section 10.5 Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5" + }, + "snapshot": { + "number": "C.7.53", + "spec": "CSS 2.1", + "text": "Section 10.5 Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5" + } + }, + "/changes#t.10.5a": { + "current": { + "number": "C.7.54", + "spec": "CSS 2.1", + "text": "Section 10.5 Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5a" + }, + "snapshot": { + "number": "C.7.54", + "spec": "CSS 2.1", + "text": "Section 10.5 Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5a" + } + }, + "/changes#t.10.6.3": { + "current": { + "number": "C.8.55", + "spec": "CSS 2.1", + "text": "10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.3" + }, + "snapshot": { + "number": "C.8.55", + "spec": "CSS 2.1", + "text": "10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.3" + } + }, + "/changes#t.10.6.7": { + "current": { + "number": "C.7.55", + "spec": "CSS 2.1", + "text": "Section 10.6.7 'Auto' heights for block formatting context roots", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.7" + }, + "snapshot": { + "number": "C.7.55", + "spec": "CSS 2.1", + "text": "Section 10.6.7 'Auto' heights for block formatting context roots", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.7" + } + }, + "/changes#t.10.7": { + "current": { + "number": "C.7.56", + "spec": "CSS 2.1", + "text": "Section 10.7 Minimum and maximum heights: 'min-height' and 'max-height'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.7" + }, + "snapshot": { + "number": "C.7.56", + "spec": "CSS 2.1", + "text": "Section 10.7 Minimum and maximum heights: 'min-height' and 'max-height'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.7" + } + }, + "/changes#t.10.8": { + "current": { + "number": "C.7.57", + "spec": "CSS 2.1", + "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8" + }, + "snapshot": { + "number": "C.7.57", + "spec": "CSS 2.1", + "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8" + } + }, + "/changes#t.10.8.1": { + "current": { + "number": "C.7.59", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1" + }, + "snapshot": { + "number": "C.7.59", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1" + } + }, + "/changes#t.10.8.1a": { + "current": { + "number": "C.7.60", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1a" + }, + "snapshot": { + "number": "C.7.60", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1a" + } + }, + "/changes#t.10.8.1b": { + "current": { + "number": "C.7.61", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1b" + }, + "snapshot": { + "number": "C.7.61", + "spec": "CSS 2.1", + "text": "Section 10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1b" + } + }, + "/changes#t.10.8a": { + "current": { + "number": "C.7.58", + "spec": "CSS 2.1", + "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8a" + }, + "snapshot": { + "number": "C.7.58", + "spec": "CSS 2.1", + "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8a" + } + }, + "/changes#t.11.1": { + "current": { + "number": "C.7.62", + "spec": "CSS 2.1", + "text": "Section 11.1 Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1" + }, + "snapshot": { + "number": "C.7.62", + "spec": "CSS 2.1", + "text": "Section 11.1 Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1" + } + }, + "/changes#t.11.1.1": { + "current": { + "number": "C.7.63", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1" + }, + "snapshot": { + "number": "C.7.63", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1" + } + }, + "/changes#t.11.1.1a": { + "current": { + "number": "C.7.64", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1a" + }, + "snapshot": { + "number": "C.7.64", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1a" + } + }, + "/changes#t.11.1.1b": { + "current": { + "number": "C.7.65", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1b" + }, + "snapshot": { + "number": "C.7.65", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1b" + } + }, + "/changes#t.11.1.2": { + "current": { + "number": "C.7.66", + "spec": "CSS 2.1", + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.2" + }, + "snapshot": { + "number": "C.7.66", + "spec": "CSS 2.1", + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.2" + } + }, + "/changes#t.12.5": { + "current": { + "number": "C.7.67", + "spec": "CSS 2.1", + "text": "Section 12.5 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5" + }, + "snapshot": { + "number": "C.7.67", + "spec": "CSS 2.1", + "text": "Section 12.5 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5" + } + }, + "/changes#t.12.5.1": { + "current": { + "number": "C.7.68", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1" + }, + "snapshot": { + "number": "C.7.68", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1" + } + }, + "/changes#t.12.5.1a": { + "current": { + "number": "C.7.69", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1a" + }, + "snapshot": { + "number": "C.7.69", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1a" + } + }, + "/changes#t.12.5.1b": { + "current": { + "number": "C.7.70", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1b" + }, + "snapshot": { + "number": "C.7.70", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1b" + } + }, + "/changes#t.12.5.1c": { + "current": { + "number": "C.7.71", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1c" + }, + "snapshot": { + "number": "C.7.71", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1c" + } + }, + "/changes#t.12.5.1d": { + "current": { + "number": "C.7.72", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1d" + }, + "snapshot": { + "number": "C.7.72", + "spec": "CSS 2.1", + "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1d" + } + }, + "/changes#t.13.2": { + "current": { + "number": "C.7.73", + "spec": "CSS 2.1", + "text": "Section 13.2 Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2" + }, + "snapshot": { + "number": "C.7.73", + "spec": "CSS 2.1", + "text": "Section 13.2 Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2" + } + }, + "/changes#t.13.2.2": { + "current": { + "number": "C.7.74", + "spec": "CSS 2.1", + "text": "Section 13.2.2 Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2.2" + }, + "snapshot": { + "number": "C.7.74", + "spec": "CSS 2.1", + "text": "Section 13.2.2 Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2.2" + } + }, + "/changes#t.13.3.2": { + "current": { + "number": "C.7.75", + "spec": "CSS 2.1", + "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.2" + }, + "snapshot": { + "number": "C.7.75", + "spec": "CSS 2.1", + "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.2" + } + }, + "/changes#t.13.3.3": { + "current": { + "number": "C.7.76", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.3" + }, + "snapshot": { + "number": "C.7.76", + "spec": "CSS 2.1", + "text": "Section 13.3.3 Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.3" + } + }, + "/changes#t.14.2.1": { + "current": { + "number": "C.7.44", + "spec": "CSS 2.1", + "text": "Section 14.2.1 Background properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.14.2.1" + }, + "snapshot": { + "number": "C.7.44", + "spec": "CSS 2.1", + "text": "Section 14.2.1 Background properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.14.2.1" + } + }, + "/changes#t.15.3": { + "current": { + "number": "C.7.77", + "spec": "CSS 2.1", + "text": "Section 15.3 Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3" + }, + "snapshot": { + "number": "C.7.77", + "spec": "CSS 2.1", + "text": "Section 15.3 Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3" + } + }, + "/changes#t.15.3.1": { + "current": { + "number": "C.7.78", + "spec": "CSS 2.1", + "text": "Section 15.3.1 Generic font families", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3.1" + }, + "snapshot": { + "number": "C.7.78", + "spec": "CSS 2.1", + "text": "Section 15.3.1 Generic font families", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3.1" + } + }, + "/changes#t.15.6": { + "current": { + "number": "C.7.79", + "spec": "CSS 2.1", + "text": "Section 15.6 Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6" + }, + "snapshot": { + "number": "C.7.79", + "spec": "CSS 2.1", + "text": "Section 15.6 Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6" + } + }, + "/changes#t.15.6q": { + "current": { + "number": "C.7.80", + "spec": "CSS 2.1", + "text": "Section 15.6 Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6q" + }, + "snapshot": { + "number": "C.7.80", + "spec": "CSS 2.1", + "text": "Section 15.6 Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6q" + } + }, + "/changes#t.15.7": { + "current": { + "number": "C.7.81", + "spec": "CSS 2.1", + "text": "Section 15.7 Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.7" + }, + "snapshot": { + "number": "C.7.81", + "spec": "CSS 2.1", + "text": "Section 15.7 Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.7" + } + }, + "/changes#t.16.1": { + "current": { + "number": "C.7.82", + "spec": "CSS 2.1", + "text": "Section 16.1 Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1" + }, + "snapshot": { + "number": "C.7.82", + "spec": "CSS 2.1", + "text": "Section 16.1 Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1" + } + }, + "/changes#t.16.1a": { + "current": { + "number": "C.7.83", + "spec": "CSS 2.1", + "text": "Section 16.1 Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1a" + }, + "snapshot": { + "number": "C.7.83", + "spec": "CSS 2.1", + "text": "Section 16.1 Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1a" + } + }, + "/changes#t.16.2": { + "current": { + "number": "C.7.84", + "spec": "CSS 2.1", + "text": "Section 16.2 Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2" + }, + "snapshot": { + "number": "C.7.84", + "spec": "CSS 2.1", + "text": "Section 16.2 Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2" + } + }, + "/changes#t.16.2a": { + "current": { + "number": "C.7.85", + "spec": "CSS 2.1", + "text": "Section 16.2 Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2a" + }, + "snapshot": { + "number": "C.7.85", + "spec": "CSS 2.1", + "text": "Section 16.2 Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2a" + } + }, + "/changes#t.16.3.1": { + "current": { + "number": "C.7.86", + "spec": "CSS 2.1", + "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1" + }, + "snapshot": { + "number": "C.7.86", + "spec": "CSS 2.1", + "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1" + } + }, + "/changes#t.16.3.1a": { + "current": { + "number": "C.7.87", + "spec": "CSS 2.1", + "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1a" + }, + "snapshot": { + "number": "C.7.87", + "spec": "CSS 2.1", + "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1a" + } + }, + "/changes#t.16.4": { + "current": { + "number": "C.7.88", + "spec": "CSS 2.1", + "text": "Section 16.4 Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.4" + }, + "snapshot": { + "number": "C.7.88", + "spec": "CSS 2.1", + "text": "Section 16.4 Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.4" + } + }, + "/changes#t.16.6": { + "current": { + "number": "C.7.89", + "spec": "CSS 2.1", + "text": "Section 16.6 White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6" + }, + "snapshot": { + "number": "C.7.89", + "spec": "CSS 2.1", + "text": "Section 16.6 White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6" + } + }, + "/changes#t.16.6.1": { + "current": { + "number": "C.7.90", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1" + }, + "snapshot": { + "number": "C.7.90", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1" + } + }, + "/changes#t.16.6.1a": { + "current": { + "number": "C.7.91", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1a" + }, + "snapshot": { + "number": "C.7.91", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1a" + } + }, + "/changes#t.16.6.1b": { + "current": { + "number": "C.7.92", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1b" + }, + "snapshot": { + "number": "C.7.92", + "spec": "CSS 2.1", + "text": "Section 16.6.1 The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1b" + } + }, + "/changes#t.17.2": { + "current": { + "number": "C.7.93", + "spec": "CSS 2.1", + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2" + }, + "snapshot": { + "number": "C.7.93", + "spec": "CSS 2.1", + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2" + } + }, + "/changes#t.17.2.1": { + "current": { + "number": "C.7.94", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1" + }, + "snapshot": { + "number": "C.7.94", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1" + } + }, + "/changes#t.17.2.1a": { + "current": { + "number": "C.7.95", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1a" + }, + "snapshot": { + "number": "C.7.95", + "spec": "CSS 2.1", + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1a" + } + }, + "/changes#t.17.4": { + "current": { + "number": "C.7.96", + "spec": "CSS 2.1", + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4" + }, + "snapshot": { + "number": "C.7.96", + "spec": "CSS 2.1", + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4" + } + }, + "/changes#t.17.4a": { + "current": { + "number": "C.7.97", + "spec": "CSS 2.1", + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4a" + }, + "snapshot": { + "number": "C.7.97", + "spec": "CSS 2.1", + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4a" + } + }, + "/changes#t.17.5.2.2": { + "current": { + "number": "C.7.98", + "spec": "CSS 2.1", + "text": "Section 17.5.2.2 Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.2.2" + }, + "snapshot": { + "number": "C.7.98", + "spec": "CSS 2.1", + "text": "Section 17.5.2.2 Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.2.2" + } + }, + "/changes#t.17.5.3": { + "current": { + "number": "C.7.99", + "spec": "CSS 2.1", + "text": "Section 17.5.3 Table height algorithms", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.3" + }, + "snapshot": { + "number": "C.7.99", + "spec": "CSS 2.1", + "text": "Section 17.5.3 Table height algorithms", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.3" + } + }, + "/changes#t.17.5.4": { + "current": { + "number": "C.7.100", + "spec": "CSS 2.1", + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.4" + }, + "snapshot": { + "number": "C.7.100", + "spec": "CSS 2.1", + "text": "Section 17.5.4 Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.4" + } + }, + "/changes#t.3.1": { + "current": { + "number": "C.7.2", + "spec": "CSS 2.1", + "text": "Section 3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.3.1" + }, + "snapshot": { + "number": "C.7.2", + "spec": "CSS 2.1", + "text": "Section 3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.3.1" + } + }, + "/changes#t.4.1.1": { + "current": { + "number": "C.7.3", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1" + }, + "snapshot": { + "number": "C.7.3", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1" + } + }, + "/changes#t.4.1.1a": { + "current": { + "number": "C.7.4", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1a" + }, + "snapshot": { + "number": "C.7.4", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1a" + } + }, + "/changes#t.4.1.1b": { + "current": { + "number": "C.7.5", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1b" + }, + "snapshot": { + "number": "C.7.5", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1b" + } + }, + "/changes#t.4.1.1c": { + "current": { + "number": "C.7.6", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1c" + }, + "snapshot": { + "number": "C.7.6", + "spec": "CSS 2.1", + "text": "Section 4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1c" + } + }, + "/changes#t.4.1.2.2": { + "current": { + "number": "C.7.7", + "spec": "CSS 2.1", + "text": "Section 4.1.2.2 Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.2.2" + }, + "snapshot": { + "number": "C.7.7", + "spec": "CSS 2.1", + "text": "Section 4.1.2.2 Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.2.2" + } + }, + "/changes#t.4.1.3": { + "current": { + "number": "C.7.8", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3" + }, + "snapshot": { + "number": "C.7.8", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3" + } + }, + "/changes#t.4.1.3a": { + "current": { + "number": "C.7.9", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3a" + }, + "snapshot": { + "number": "C.7.9", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3a" + } + }, + "/changes#t.4.1.8": { + "current": { + "number": "C.7.10", + "spec": "CSS 2.1", + "text": "Section 4.1.8 Declarations and properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.8" + }, + "snapshot": { + "number": "C.7.10", + "spec": "CSS 2.1", + "text": "Section 4.1.8 Declarations and properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.8" + } + }, + "/changes#t.4.2": { + "current": { + "number": "C.7.11", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.2" + }, + "snapshot": { + "number": "C.7.11", + "spec": "CSS 2.1", + "text": "Section 4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.2" + } + }, + "/changes#t.4.3.2": { + "current": { + "number": "C.7.12", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2" + }, + "snapshot": { + "number": "C.7.12", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2" + } + }, + "/changes#t.4.3.2a": { + "current": { + "number": "C.7.13", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2a" + }, + "snapshot": { + "number": "C.7.13", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2a" + } + }, + "/changes#t.4.3.4": { + "current": { + "number": "C.7.15", + "spec": "CSS 2.1", + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4" + }, + "snapshot": { + "number": "C.7.15", + "spec": "CSS 2.1", + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4" + } + }, + "/changes#t.4.3.4a": { + "current": { + "number": "C.7.14", + "spec": "CSS 2.1", + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4a" + }, + "snapshot": { + "number": "C.7.14", + "spec": "CSS 2.1", + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4a" + } + }, + "/changes#t.5.11.4": { + "current": { + "number": "C.7.17", + "spec": "CSS 2.1", + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.11.4" + }, + "snapshot": { + "number": "C.7.17", + "spec": "CSS 2.1", + "text": "Section 5.11.4 The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.11.4" + } + }, + "/changes#t.5.12": { + "current": { + "number": "C.7.18", + "spec": "CSS 2.1", + "text": "Section 5.12 Pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12" + }, + "snapshot": { + "number": "C.7.18", + "spec": "CSS 2.1", + "text": "Section 5.12 Pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12" + } + }, + "/changes#t.5.12.1": { + "current": { + "number": "C.7.19", + "spec": "CSS 2.1", + "text": "Section 5.12.1 The :first-line pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.1" + }, + "snapshot": { + "number": "C.7.19", + "spec": "CSS 2.1", + "text": "Section 5.12.1 The :first-line pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.1" + } + }, + "/changes#t.5.12.2": { + "current": { + "number": "C.7.20", + "spec": "CSS 2.1", + "text": "Section 5.12.2 The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.2" + }, + "snapshot": { + "number": "C.7.20", + "spec": "CSS 2.1", + "text": "Section 5.12.2 The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.2" + } + }, + "/changes#t.5.8.2": { + "current": { + "number": "C.7.16", + "spec": "CSS 2.1", + "text": "Section 5.8.2 Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.8.2" + }, + "snapshot": { + "number": "C.7.16", + "spec": "CSS 2.1", + "text": "Section 5.8.2 Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.8.2" + } + }, + "/changes#t.6.2": { + "current": { + "number": "C.7.21", + "spec": "CSS 2.1", + "text": "Section 6.2 Inheritance", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.2" + }, + "snapshot": { + "number": "C.7.21", + "spec": "CSS 2.1", + "text": "Section 6.2 Inheritance", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.2" + } + }, + "/changes#t.6.4.4": { + "current": { + "number": "C.7.22", + "spec": "CSS 2.1", + "text": "Section 6.4.4 Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.4.4" + }, + "snapshot": { + "number": "C.7.22", + "spec": "CSS 2.1", + "text": "Section 6.4.4 Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.4.4" + } + }, + "/changes#t.7.3": { + "current": { + "number": "C.7.23", + "spec": "CSS 2.1", + "text": "Section 7.3 Recognized media types", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.7.3" + }, + "snapshot": { + "number": "C.7.23", + "spec": "CSS 2.1", + "text": "Section 7.3 Recognized media types", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.7.3" + } + }, + "/changes#t.8.3.1": { + "current": { + "number": "C.7.24", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1" + }, + "snapshot": { + "number": "C.7.24", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1" + } + }, + "/changes#t.8.3.1a": { + "current": { + "number": "C.7.25", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1a" + }, + "snapshot": { + "number": "C.7.25", + "spec": "CSS 2.1", + "text": "Section 8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1a" + } + }, + "/changes#t.9.10": { + "current": { + "number": "C.7.46", + "spec": "CSS 2.1", + "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10" + }, + "snapshot": { + "number": "C.7.46", + "spec": "CSS 2.1", + "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10" + } + }, + "/changes#t.9.10a": { + "current": { + "number": "C.7.47", + "spec": "CSS 2.1", + "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10a" + }, + "snapshot": { + "number": "C.7.47", + "spec": "CSS 2.1", + "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10a" + } + }, + "/changes#t.9.10b": { + "current": { + "number": "C.7.48", + "spec": "CSS 2.1", + "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10b" + }, + "snapshot": { + "number": "C.7.48", + "spec": "CSS 2.1", + "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10b" + } + }, + "/changes#t.9.2.1": { + "current": { + "number": "C.7.26", + "spec": "CSS 2.1", + "text": "Section 9.2.1 Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1" + }, + "snapshot": { + "number": "C.7.26", + "spec": "CSS 2.1", + "text": "Section 9.2.1 Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1" + } + }, + "/changes#t.9.2.1.1": { + "current": { + "number": "C.7.27", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1" + }, + "snapshot": { + "number": "C.7.27", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1" + } + }, + "/changes#t.9.2.1.1a": { + "current": { + "number": "C.7.28", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1a" + }, + "snapshot": { + "number": "C.7.28", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1a" + } + }, + "/changes#t.9.2.1.1b": { + "current": { + "number": "C.7.29", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1b" + }, + "snapshot": { + "number": "C.7.29", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1b" + } + }, + "/changes#t.9.2.1.1c": { + "current": { + "number": "C.7.30", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1c" + }, + "snapshot": { + "number": "C.7.30", + "spec": "CSS 2.1", + "text": "Section 9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1c" + } + }, + "/changes#t.9.2.2": { + "current": { + "number": "C.7.31", + "spec": "CSS 2.1", + "text": "Section 9.2.2 Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.2" + }, + "snapshot": { + "number": "C.7.31", + "spec": "CSS 2.1", + "text": "Section 9.2.2 Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.2" + } + }, + "/changes#t.9.2.3a": { + "current": { + "number": "C.7.32", + "spec": "CSS 2.1", + "text": "Section 9.2.3 Run-in boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.3a" + }, + "snapshot": { + "number": "C.7.32", + "spec": "CSS 2.1", + "text": "Section 9.2.3 Run-in boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.3a" + } + }, + "/changes#t.9.2.4": { + "current": { + "number": "C.7.33", + "spec": "CSS 2.1", + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4" + }, + "snapshot": { + "number": "C.7.33", + "spec": "CSS 2.1", + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4" + } + }, + "/changes#t.9.2.4a": { + "current": { + "number": "C.7.34", + "spec": "CSS 2.1", + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4a" + }, + "snapshot": { + "number": "C.7.34", + "spec": "CSS 2.1", + "text": "Section 9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4a" + } + }, + "/changes#t.9.3": { + "current": { + "number": "C.7.35", + "spec": "CSS 2.1", + "text": "Section 9.3 Positioning schemes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3" + }, + "snapshot": { + "number": "C.7.35", + "spec": "CSS 2.1", + "text": "Section 9.3 Positioning schemes", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3" + } + }, + "/changes#t.9.3.2": { + "current": { + "number": "C.7.37", + "spec": "CSS 2.1", + "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3.2" + }, + "snapshot": { + "number": "C.7.37", + "spec": "CSS 2.1", + "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3.2" + } + }, + "/changes#t.9.4": { + "current": { + "number": "C.7.36", + "spec": "CSS 2.1", + "text": "Section 9.4 Normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.4" + }, + "snapshot": { + "number": "C.7.36", + "spec": "CSS 2.1", + "text": "Section 9.4 Normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.4" + } + }, + "/changes#t.9.5": { + "current": { + "number": "C.7.38", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5" + }, + "snapshot": { + "number": "C.7.38", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5" + } + }, + "/changes#t.9.5.2": { + "current": { + "number": "C.7.40", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2" + }, + "snapshot": { + "number": "C.7.40", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2" + } + }, + "/changes#t.9.5.2a": { + "current": { + "number": "C.7.41", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2a" + }, + "snapshot": { + "number": "C.7.41", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2a" + } + }, + "/changes#t.9.5.2b": { + "current": { + "number": "C.7.42", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2b" + }, + "snapshot": { + "number": "C.7.42", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2b" + } + }, + "/changes#t.9.5.2c": { + "current": { + "number": "C.7.43", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2c" + }, + "snapshot": { + "number": "C.7.43", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2c" + } + }, + "/changes#t.9.5.2d": { + "current": { + "number": "C.8.51", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2d" + }, + "snapshot": { + "number": "C.8.51", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2d" + } + }, + "/changes#t.9.5.2e": { + "current": { + "number": "C.8.53", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2e" + }, + "snapshot": { + "number": "C.8.53", + "spec": "CSS 2.1", + "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2e" + } + }, + "/changes#t.9.5a": { + "current": { + "number": "C.7.39", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5a" + }, + "snapshot": { + "number": "C.7.39", + "spec": "CSS 2.1", + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5a" + } + }, + "/changes#t.9.5b": { + "current": { + "number": "C.8.54", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5b" + }, + "snapshot": { + "number": "C.8.54", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5b" + } + }, + "/changes#t.9.9.1": { + "current": { + "number": "C.7.45", + "spec": "CSS 2.1", + "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.9.1" + }, + "snapshot": { + "number": "C.7.45", + "spec": "CSS 2.1", + "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.9.1" + } + }, + "/changes#t.B.2": { + "current": { + "number": "C.7.101", + "spec": "CSS 2.1", + "text": "Section B.2 Informative references", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.B.2" + }, + "snapshot": { + "number": "C.7.101", + "spec": "CSS 2.1", + "text": "Section B.2 Informative references", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.B.2" + } + }, + "/changes#t.D": { + "current": { + "number": "C.7.102", + "spec": "CSS 2.1", + "text": "Section D. Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.D" + }, + "snapshot": { + "number": "C.7.102", + "spec": "CSS 2.1", + "text": "Section D. Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.D" + } + }, + "/changes#t.E.2": { + "current": { + "number": "C.7.103", + "spec": "CSS 2.1", + "text": "Section E.2 Painting order", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.E.2" + }, + "snapshot": { + "number": "C.7.103", + "spec": "CSS 2.1", + "text": "Section E.2 Painting order", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.E.2" + } + }, + "/changes#t.G": { + "current": { + "number": "C.7.104", + "spec": "CSS 2.1", + "text": "Appendix G Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.G" + }, + "snapshot": { + "number": "C.7.104", + "spec": "CSS 2.1", + "text": "Appendix G Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.G" + } + }, + "/changes#t.G.2": { + "current": { + "number": "C.8.52", + "spec": "CSS 2.1", + "text": "G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.G.2" + }, + "snapshot": { + "number": "C.8.52", + "spec": "CSS 2.1", + "text": "G.2 Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/changes.html#t.G.2" + } + }, + "/changes#u.10.1": { + "current": { + "number": "C.8.8", + "spec": "CSS 2.1", + "text": "10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.1" + }, + "snapshot": { + "number": "C.8.8", + "spec": "CSS 2.1", + "text": "10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.1" + } + }, + "/changes#u.10.3": { + "current": { + "number": "C.8.3", + "spec": "CSS 2.1", + "text": "10.3 Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3" + }, + "snapshot": { + "number": "C.8.3", + "spec": "CSS 2.1", + "text": "10.3 Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3" + } + }, + "/changes#u.10.3.2": { + "current": { + "number": "C.8.7", + "spec": "CSS 2.1", + "text": "10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2" + }, + "snapshot": { + "number": "C.8.7", + "spec": "CSS 2.1", + "text": "10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2" + } + }, + "/changes#u.10.3.2a": { + "current": { + "number": "C.8.50", + "spec": "CSS 2.1", + "text": "10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2a" + }, + "snapshot": { + "number": "C.8.50", + "spec": "CSS 2.1", + "text": "10.3.2 Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2a" + } + }, + "/changes#u.10.4": { + "current": { + "number": "C.8.28", + "spec": "CSS 2.1", + "text": "10.4 Minimum and maximum widths: 'min-width' and 'max-width'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.4" + }, + "snapshot": { + "number": "C.8.28", + "spec": "CSS 2.1", + "text": "10.4 Minimum and maximum widths: 'min-width' and 'max-width'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.4" + } + }, + "/changes#u.10.6.1a": { + "current": { + "number": "C.8.13", + "spec": "CSS 2.1", + "text": "10.6.1 Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.6.1a" + }, + "snapshot": { + "number": "C.8.13", + "spec": "CSS 2.1", + "text": "10.6.1 Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.6.1a" + } + }, + "/changes#u.10.8": { + "current": { + "number": "C.8.11", + "spec": "CSS 2.1", + "text": "10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8" + }, + "snapshot": { + "number": "C.8.11", + "spec": "CSS 2.1", + "text": "10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8" + } + }, + "/changes#u.10.8.1": { + "current": { + "number": "C.8.2", + "spec": "CSS 2.1", + "text": "10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1" + }, + "snapshot": { + "number": "C.8.2", + "spec": "CSS 2.1", + "text": "10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1" + } + }, + "/changes#u.10.8.1a": { + "current": { + "number": "C.8.12", + "spec": "CSS 2.1", + "text": "10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1a" + }, + "snapshot": { + "number": "C.8.12", + "spec": "CSS 2.1", + "text": "10.8.1 Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1a" + } + }, + "/changes#u.11.1.1": { + "current": { + "number": "C.8.39", + "spec": "CSS 2.1", + "text": "11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.1" + }, + "snapshot": { + "number": "C.8.39", + "spec": "CSS 2.1", + "text": "11.1.1 Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.1" + } + }, + "/changes#u.11.1.2": { + "current": { + "number": "C.8.5", + "spec": "CSS 2.1", + "text": "11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2" + }, + "snapshot": { + "number": "C.8.5", + "spec": "CSS 2.1", + "text": "11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2" + } + }, + "/changes#u.11.1.2a": { + "current": { + "number": "C.8.32", + "spec": "CSS 2.1", + "text": "11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2a" + }, + "snapshot": { + "number": "C.8.32", + "spec": "CSS 2.1", + "text": "11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2a" + } + }, + "/changes#u.12.5.1": { + "current": { + "number": "C.8.18", + "spec": "CSS 2.1", + "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1" + }, + "snapshot": { + "number": "C.8.18", + "spec": "CSS 2.1", + "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1" + } + }, + "/changes#u.12.5.1a": { + "current": { + "number": "C.8.22", + "spec": "CSS 2.1", + "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1a" + }, + "snapshot": { + "number": "C.8.22", + "spec": "CSS 2.1", + "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1a" + } + }, + "/changes#u.13.2": { + "current": { + "number": "C.8.33", + "spec": "CSS 2.1", + "text": "13.2 Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2" + }, + "snapshot": { + "number": "C.8.33", + "spec": "CSS 2.1", + "text": "13.2 Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2" + } + }, + "/changes#u.13.2.2": { + "current": { + "number": "C.8.9", + "spec": "CSS 2.1", + "text": "13.2.2 Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2.2" + }, + "snapshot": { + "number": "C.8.9", + "spec": "CSS 2.1", + "text": "13.2.2 Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2.2" + } + }, + "/changes#u.14.2.1": { + "current": { + "number": "C.8.47", + "spec": "CSS 2.1", + "text": "14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.2.1" + }, + "snapshot": { + "number": "C.8.47", + "spec": "CSS 2.1", + "text": "14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.2.1" + } + }, + "/changes#u.14.3": { + "current": { + "number": "C.8.4", + "spec": "CSS 2.1", + "text": "14.3 Gamma correction", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.3" + }, + "snapshot": { + "number": "C.8.4", + "spec": "CSS 2.1", + "text": "14.3 Gamma correction", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.3" + } + }, + "/changes#u.16.2": { + "current": { + "number": "C.8.41", + "spec": "CSS 2.1", + "text": "16.2 Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.2" + }, + "snapshot": { + "number": "C.8.41", + "spec": "CSS 2.1", + "text": "16.2 Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.2" + } + }, + "/changes#u.16.3.1": { + "current": { + "number": "C.8.26", + "spec": "CSS 2.1", + "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1" + }, + "snapshot": { + "number": "C.8.26", + "spec": "CSS 2.1", + "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1" + } + }, + "/changes#u.16.3.1a": { + "current": { + "number": "C.8.27", + "spec": "CSS 2.1", + "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1a" + }, + "snapshot": { + "number": "C.8.27", + "spec": "CSS 2.1", + "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1a" + } + }, + "/changes#u.16.6": { + "current": { + "number": "C.8.17", + "spec": "CSS 2.1", + "text": "16.6 White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.6" + }, + "snapshot": { + "number": "C.8.17", + "spec": "CSS 2.1", + "text": "16.6 White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.6" + } + }, + "/changes#u.3.1": { + "current": { + "number": "C.8.36", + "spec": "CSS 2.1", + "text": "3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.3.1" + }, + "snapshot": { + "number": "C.8.36", + "spec": "CSS 2.1", + "text": "3.1 Definitions", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.3.1" + } + }, + "/changes#u.4.1.1": { + "current": { + "number": "C.8.34", + "spec": "CSS 2.1", + "text": "4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.1" + }, + "snapshot": { + "number": "C.8.34", + "spec": "CSS 2.1", + "text": "4.1.1 Tokenization", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.1" + } + }, + "/changes#u.4.1.9": { + "current": { + "number": "C.8.21", + "spec": "CSS 2.1", + "text": "4.1.9 Comments", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.9" + }, + "snapshot": { + "number": "C.8.21", + "spec": "CSS 2.1", + "text": "4.1.9 Comments", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.9" + } + }, + "/changes#u.4.2": { + "current": { + "number": "C.8.35", + "spec": "CSS 2.1", + "text": "4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.2" + }, + "snapshot": { + "number": "C.8.35", + "spec": "CSS 2.1", + "text": "4.2 Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.2" + } + }, + "/changes#u.4.3.4": { + "current": { + "number": "C.8.37", + "spec": "CSS 2.1", + "text": "4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.3.4" + }, + "snapshot": { + "number": "C.8.37", + "spec": "CSS 2.1", + "text": "4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.3.4" + } + }, + "/changes#u.5.12": { + "current": { + "number": "C.8.44", + "spec": "CSS 2.1", + "text": "5.12 Pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12" + }, + "snapshot": { + "number": "C.8.44", + "spec": "CSS 2.1", + "text": "5.12 Pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12" + } + }, + "/changes#u.5.12.1": { + "current": { + "number": "C.8.16", + "spec": "CSS 2.1", + "text": "5.12.1 The :first-line pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12.1" + }, + "snapshot": { + "number": "C.8.16", + "spec": "CSS 2.1", + "text": "5.12.1 The :first-line pseudo-element", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12.1" + } + }, + "/changes#u.6.1.2": { + "current": { + "number": "C.8.49", + "spec": "CSS 2.1", + "text": "6.1.2 Computed values", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.6.1.2" + }, + "snapshot": { + "number": "C.8.49", + "spec": "CSS 2.1", + "text": "6.1.2 Computed values", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.6.1.2" + } + }, + "/changes#u.8.3.1": { + "current": { + "number": "C.8.1", + "spec": "CSS 2.1", + "text": "8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1" + }, + "snapshot": { + "number": "C.8.1", + "spec": "CSS 2.1", + "text": "8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1" + } + }, + "/changes#u.8.3.1a": { + "current": { + "number": "C.8.10", + "spec": "CSS 2.1", + "text": "8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1a" + }, + "snapshot": { + "number": "C.8.10", + "spec": "CSS 2.1", + "text": "8.3.1 Collapsing margins", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1a" + } + }, + "/changes#u.9.10": { + "current": { + "number": "C.8.25", + "spec": "CSS 2.1", + "text": "9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.10" + }, + "snapshot": { + "number": "C.8.25", + "spec": "CSS 2.1", + "text": "9.10 Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.10" + } + }, + "/changes#u.9.2.1.1": { + "current": { + "number": "C.8.15", + "spec": "CSS 2.1", + "text": "9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1" + }, + "snapshot": { + "number": "C.8.15", + "spec": "CSS 2.1", + "text": "9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1" + } + }, + "/changes#u.9.2.1.1a": { + "current": { + "number": "C.8.30", + "spec": "CSS 2.1", + "text": "9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1a" + }, + "snapshot": { + "number": "C.8.30", + "spec": "CSS 2.1", + "text": "9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1a" + } + }, + "/changes#u.9.2.1.1b": { + "current": { + "number": "C.8.31", + "spec": "CSS 2.1", + "text": "17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1b" + }, + "snapshot": { + "number": "C.8.31", + "spec": "CSS 2.1", + "text": "17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1b" + } + }, + "/changes#u.9.2.1.1c": { + "current": { + "number": "C.8.40", + "spec": "CSS 2.1", + "text": "9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1c" + }, + "snapshot": { + "number": "C.8.40", + "spec": "CSS 2.1", + "text": "9.2.1.1 Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1c" + } + }, + "/changes#u.9.2.4": { + "current": { + "number": "C.8.48", + "spec": "CSS 2.1", + "text": "9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.4" + }, + "snapshot": { + "number": "C.8.48", + "spec": "CSS 2.1", + "text": "9.2.4 The 'display' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.4" + } + }, + "/changes#u.9.3": { + "current": { + "number": "C.8.24", + "spec": "CSS 2.1", + "text": "9.3 Positioning schemes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3" + }, + "snapshot": { + "number": "C.8.24", + "spec": "CSS 2.1", + "text": "9.3 Positioning schemes", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3" + } + }, + "/changes#u.9.3.2": { + "current": { + "number": "C.8.29", + "spec": "CSS 2.1", + "text": "9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3.2" + }, + "snapshot": { + "number": "C.8.29", + "spec": "CSS 2.1", + "text": "9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3.2" + } + }, + "/changes#u.9.4.2": { + "current": { + "number": "C.8.6", + "spec": "CSS 2.1", + "text": "9.4.2 Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2" + }, + "snapshot": { + "number": "C.8.6", + "spec": "CSS 2.1", + "text": "9.4.2 Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2" + } + }, + "/changes#u.9.4.2a": { + "current": { + "number": "C.8.20", + "spec": "CSS 2.1", + "text": "9.4.2 Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2a" + }, + "snapshot": { + "number": "C.8.20", + "spec": "CSS 2.1", + "text": "9.4.2 Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2a" + } + }, + "/changes#u.9.4.2b": { + "current": { + "number": "C.8.43", + "spec": "CSS 2.1", + "text": "9.4.2 Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2b" + }, + "snapshot": { + "number": "C.8.43", + "spec": "CSS 2.1", + "text": "9.4.2 Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2b" + } + }, + "/changes#u.9.5": { + "current": { + "number": "C.8.38", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5" + }, + "snapshot": { + "number": "C.8.38", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5" + } + }, + "/changes#u.9.5.1": { + "current": { + "number": "C.8.14", + "spec": "CSS 2.1", + "text": "9.5.1 Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1" + }, + "snapshot": { + "number": "C.8.14", + "spec": "CSS 2.1", + "text": "9.5.1 Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1" + } + }, + "/changes#u.9.5.1a": { + "current": { + "number": "C.8.23", + "spec": "CSS 2.1", + "text": "9.5.1 Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1a" + }, + "snapshot": { + "number": "C.8.23", + "spec": "CSS 2.1", + "text": "9.5.1 Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1a" + } + }, + "/changes#u.9.5a": { + "current": { + "number": "C.8.42", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5a" + }, + "snapshot": { + "number": "C.8.42", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5a" + } + }, + "/changes#u.9.5b": { + "current": { + "number": "C.8.45", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5b" + }, + "snapshot": { + "number": "C.8.45", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5b" + } + }, + "/changes#u.9.5c": { + "current": { + "number": "C.8.46", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5c" + }, + "snapshot": { + "number": "C.8.46", + "spec": "CSS 2.1", + "text": "9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5c" + } + }, + "/changes#u.9.7": { + "current": { + "number": "C.8.19", + "spec": "CSS 2.1", + "text": "9.7 Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.7" + }, + "snapshot": { + "number": "C.8.19", + "spec": "CSS 2.1", + "text": "9.7 Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.7" + } + }, + "/changes#x-applies-table": { + "current": { + "number": "C.3.2", + "spec": "CSS 2.1", + "text": "Applies to", + "url": "https://www.w3.org/TR/CSS21/changes.html#x-applies-table" + }, + "snapshot": { + "number": "C.3.2", + "spec": "CSS 2.1", + "text": "Applies to", + "url": "https://www.w3.org/TR/CSS21/changes.html#x-applies-table" + } + }, + "/changes#x-shorthand-inherit": { + "current": { + "number": "C.3.1", + "spec": "CSS 2.1", + "text": "Shorthand properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#x-shorthand-inherit" + }, + "snapshot": { + "number": "C.3.1", + "spec": "CSS 2.1", + "text": "Shorthand properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#x-shorthand-inherit" + } + }, + "/changes#x10.1": { + "current": { + "number": "C.3.29", + "spec": "CSS 2.1", + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.1" + }, + "snapshot": { + "number": "C.3.29", + "spec": "CSS 2.1", + "text": "Section 10.1 Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.1" + } + }, + "/changes#x10.3.3": { + "current": { + "number": "C.3.30", + "spec": "CSS 2.1", + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.3.3" + }, + "snapshot": { + "number": "C.3.30", + "spec": "CSS 2.1", + "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.3.3" + } + }, + "/changes#x10.4": { + "current": { + "number": "C.3.31", + "spec": "CSS 2.1", + "text": "Section 10.4 Minimum and maximum widths", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.4" + }, + "snapshot": { + "number": "C.3.31", + "spec": "CSS 2.1", + "text": "Section 10.4 Minimum and maximum widths", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.4" + } + }, + "/changes#x10.6.3": { + "current": { + "number": "C.3.32", + "spec": "CSS 2.1", + "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.6.3" + }, + "snapshot": { + "number": "C.3.32", + "spec": "CSS 2.1", + "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.6.3" + } + }, + "/changes#x10.7": { + "current": { + "number": "C.3.33", + "spec": "CSS 2.1", + "text": "Section 10.7 Minimum and maximum heights", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.7" + }, + "snapshot": { + "number": "C.3.33", + "spec": "CSS 2.1", + "text": "Section 10.7 Minimum and maximum heights", + "url": "https://www.w3.org/TR/CSS21/changes.html#x10.7" + } + }, + "/changes#x11.1.1": { + "current": { + "number": "C.3.34", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow", + "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.1" + }, + "snapshot": { + "number": "C.3.34", + "spec": "CSS 2.1", + "text": "Section 11.1.1 Overflow", + "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.1" + } + }, + "/changes#x11.1.2": { + "current": { + "number": "C.3.35", + "spec": "CSS 2.1", + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.2" + }, + "snapshot": { + "number": "C.3.35", + "spec": "CSS 2.1", + "text": "Section 11.1.2 Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.2" + } + }, + "/changes#x11.2": { + "current": { + "number": "C.3.36", + "spec": "CSS 2.1", + "text": "Section 11.2 Visibility", + "url": "https://www.w3.org/TR/CSS21/changes.html#x11.2" + }, + "snapshot": { + "number": "C.3.36", + "spec": "CSS 2.1", + "text": "Section 11.2 Visibility", + "url": "https://www.w3.org/TR/CSS21/changes.html#x11.2" + } + }, + "/changes#x12.4.2": { + "current": { + "number": "C.3.37", + "spec": "CSS 2.1", + "text": "Section 12.4.2 Counter styles", + "url": "https://www.w3.org/TR/CSS21/changes.html#x12.4.2" + }, + "snapshot": { + "number": "C.3.37", + "spec": "CSS 2.1", + "text": "Section 12.4.2 Counter styles", + "url": "https://www.w3.org/TR/CSS21/changes.html#x12.4.2" + } + }, + "/changes#x12.6.2": { + "current": { + "number": "C.3.38", + "spec": "CSS 2.1", + "text": "Section 12.6.2 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#x12.6.2" + }, + "snapshot": { + "number": "C.3.38", + "spec": "CSS 2.1", + "text": "Section 12.6.2 Lists", + "url": "https://www.w3.org/TR/CSS21/changes.html#x12.6.2" + } + }, + "/changes#x14.2": { + "current": { + "number": "C.3.39", + "spec": "CSS 2.1", + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2" + }, + "snapshot": { + "number": "C.3.39", + "spec": "CSS 2.1", + "text": "Section 14.2 The background", + "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2" + } + }, + "/changes#x14.2.1": { + "current": { + "number": "C.3.40", + "spec": "CSS 2.1", + "text": "Section 14.2.1 Background properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2.1" + }, + "snapshot": { + "number": "C.3.40", + "spec": "CSS 2.1", + "text": "Section 14.2.1 Background properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2.1" + } + }, + "/changes#x15.2": { + "current": { + "number": "C.3.41", + "spec": "CSS 2.1", + "text": "Section 15.2 Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/changes.html#x15.2" + }, + "snapshot": { + "number": "C.3.41", + "spec": "CSS 2.1", + "text": "Section 15.2 Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/changes.html#x15.2" + } + }, + "/changes#x15.7": { + "current": { + "number": "C.3.42", + "spec": "CSS 2.1", + "text": "Section 15.7 Font size", + "url": "https://www.w3.org/TR/CSS21/changes.html#x15.7" + }, + "snapshot": { + "number": "C.3.42", + "spec": "CSS 2.1", + "text": "Section 15.7 Font size", + "url": "https://www.w3.org/TR/CSS21/changes.html#x15.7" + } + }, + "/changes#x16.1": { + "current": { + "number": "C.3.43", + "spec": "CSS 2.1", + "text": "Section 16.1 Indentation", + "url": "https://www.w3.org/TR/CSS21/changes.html#x16.1" + }, + "snapshot": { + "number": "C.3.43", "spec": "CSS 2.1", - "text": "Section 5.12.3 The :before and :after pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.12.3" + "text": "Section 16.1 Indentation", + "url": "https://www.w3.org/TR/CSS21/changes.html#x16.1" } }, - "/changes#s.5.8.1": { + "/changes#x16.2": { "current": { - "number": "C.5.16", + "number": "C.3.44", "spec": "CSS 2.1", - "text": "Section 5.8.1 Matching attributes and attribute values", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.1" + "text": "Section 16.2 Alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#x16.2" }, "snapshot": { - "number": "C.5.16", + "number": "C.3.44", "spec": "CSS 2.1", - "text": "Section 5.8.1 Matching attributes and attribute values", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.1" + "text": "Section 16.2 Alignment", + "url": "https://www.w3.org/TR/CSS21/changes.html#x16.2" } }, - "/changes#s.5.8.2": { + "/changes#x17.2": { "current": { - "number": "C.5.17", + "number": "C.3.45", "spec": "CSS 2.1", - "text": "Section 5.8.2 Default attribute values in DTDs", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.2" + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2" }, "snapshot": { - "number": "C.5.17", + "number": "C.3.45", "spec": "CSS 2.1", - "text": "Section 5.8.2 Default attribute values in DTDs", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.5.8.2" + "text": "Section 17.2 The CSS table model", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2" } }, - "/changes#s.6.3": { + "/changes#x17.2.1": { "current": { - "number": "C.5.20", + "number": "C.3.46", "spec": "CSS 2.1", - "text": "Section 6.3 The @import rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3" + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2.1" }, "snapshot": { - "number": "C.5.20", + "number": "C.3.46", "spec": "CSS 2.1", - "text": "Section 6.3 The @import rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3" + "text": "Section 17.2.1 Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2.1" } }, - "/changes#s.6.3a": { + "/changes#x17.4": { "current": { - "number": "C.5.21", + "number": "C.3.47", "spec": "CSS 2.1", - "text": "Section 6.3 The @import rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3a" + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.4" }, "snapshot": { - "number": "C.5.21", + "number": "C.3.47", "spec": "CSS 2.1", - "text": "Section 6.3 The @import rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.3a" + "text": "Section 17.4 Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.4" } }, - "/changes#s.6.4.1": { + "/changes#x17.5": { "current": { - "number": "C.5.22", + "number": "C.3.48", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1" + "text": "Section 17.5 Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5" }, "snapshot": { - "number": "C.5.22", + "number": "C.3.48", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1" + "text": "Section 17.5 Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5" + } + }, + "/changes#x17.5.1": { + "current": { + "number": "C.3.49", + "spec": "CSS 2.1", + "text": "Section 17.5.1 Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5.1" + }, + "snapshot": { + "number": "C.3.49", + "spec": "CSS 2.1", + "text": "Section 17.5.1 Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5.1" + } + }, + "/changes#x17.6.1": { + "current": { + "number": "C.3.50", + "spec": "CSS 2.1", + "text": "Section 17.6.1 The separated borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.6.1" + }, + "snapshot": { + "number": "C.3.50", + "spec": "CSS 2.1", + "text": "Section 17.6.1 The separated borders model", + "url": "https://www.w3.org/TR/CSS21/changes.html#x17.6.1" + } + }, + "/changes#x18.2": { + "current": { + "number": "C.3.51", + "spec": "CSS 2.1", + "text": "Section 18.2 System Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#x18.2" + }, + "snapshot": { + "number": "C.3.51", + "spec": "CSS 2.1", + "text": "Section 18.2 System Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#x18.2" + } + }, + "/changes#x4.1.1": { + "current": { + "number": "C.3.3", + "spec": "CSS 2.1", + "text": "Section 4.1.1 (and G2)", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.1" + }, + "snapshot": { + "number": "C.3.3", + "spec": "CSS 2.1", + "text": "Section 4.1.1 (and G2)", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.1" + } + }, + "/changes#x4.1.3": { + "current": { + "number": "C.3.4", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.3" + }, + "snapshot": { + "number": "C.3.4", + "spec": "CSS 2.1", + "text": "Section 4.1.3 Characters and case", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.3" + } + }, + "/changes#x4.3": { + "current": { + "number": "C.3.5", + "spec": "CSS 2.1", + "text": "Section 4.3 (Double sign problem)", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3" + }, + "snapshot": { + "number": "C.3.5", + "spec": "CSS 2.1", + "text": "Section 4.3 (Double sign problem)", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3" + } + }, + "/changes#x4.3.2": { + "current": { + "number": "C.3.6", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.2" + }, + "snapshot": { + "number": "C.3.6", + "spec": "CSS 2.1", + "text": "Section 4.3.2 Lengths", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.2" + } + }, + "/changes#x4.3.3": { + "current": { + "number": "C.3.7", + "spec": "CSS 2.1", + "text": "Section 4.3.3 Percentages", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.3" + }, + "snapshot": { + "number": "C.3.7", + "spec": "CSS 2.1", + "text": "Section 4.3.3 Percentages", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.3" + } + }, + "/changes#x4.3.4": { + "current": { + "number": "C.3.8", + "spec": "CSS 2.1", + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.4" + }, + "snapshot": { + "number": "C.3.8", + "spec": "CSS 2.1", + "text": "Section 4.3.4 URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.4" + } + }, + "/changes#x4.3.5": { + "current": { + "number": "C.3.9", + "spec": "CSS 2.1", + "text": "Section 4.3.5 Counters", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.5" + }, + "snapshot": { + "number": "C.3.9", + "spec": "CSS 2.1", + "text": "Section 4.3.5 Counters", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.5" + } + }, + "/changes#x4.3.6": { + "current": { + "number": "C.3.10", + "spec": "CSS 2.1", + "text": "Section 4.3.6 Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.6" + }, + "snapshot": { + "number": "C.3.10", + "spec": "CSS 2.1", + "text": "Section 4.3.6 Colors", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.6" + } + }, + "/changes#x4.3.7": { + "current": { + "number": "C.3.11", + "spec": "CSS 2.1", + "text": "Section 4.3.7 Strings", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.7" + }, + "snapshot": { + "number": "C.3.11", + "spec": "CSS 2.1", + "text": "Section 4.3.7 Strings", + "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.7" + } + }, + "/changes#x5.10": { + "current": { + "number": "C.3.12", + "spec": "CSS 2.1", + "text": "Section 5.10 Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/changes.html#x5.10" + }, + "snapshot": { + "number": "C.3.12", + "spec": "CSS 2.1", + "text": "Section 5.10 Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/changes.html#x5.10" } }, - "/changes#s.6.4.1a": { + "/changes#x6.4": { "current": { - "number": "C.5.23", + "number": "C.3.13", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1a" + "text": "Section 6.4 The cascade", + "url": "https://www.w3.org/TR/CSS21/changes.html#x6.4" }, "snapshot": { - "number": "C.5.23", + "number": "C.3.13", "spec": "CSS 2.1", - "text": "Section 6.4.1 Cascading order", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.6.4.1a" + "text": "Section 6.4 The cascade", + "url": "https://www.w3.org/TR/CSS21/changes.html#x6.4" } }, - "/changes#s.7.2.1": { + "/changes#x8.1": { "current": { - "number": "C.5.24", + "number": "C.3.14", "spec": "CSS 2.1", - "text": "Section 7.2.1 The @media rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.7.2.1" + "text": "Section 8.1 Box Dimensions", + "url": "https://www.w3.org/TR/CSS21/changes.html#x8.1" }, "snapshot": { - "number": "C.5.24", + "number": "C.3.14", "spec": "CSS 2.1", - "text": "Section 7.2.1 The @media rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.7.2.1" + "text": "Section 8.1 Box Dimensions", + "url": "https://www.w3.org/TR/CSS21/changes.html#x8.1" } }, - "/changes#s.8.3.1": { + "/changes#x8.2": { "current": { - "number": "C.5.25", + "number": "C.3.15", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1" + "text": "Section 8.2 Example of margins, padding, and borders", + "url": "https://www.w3.org/TR/CSS21/changes.html#x8.2" }, "snapshot": { - "number": "C.5.25", + "number": "C.3.15", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1" + "text": "Section 8.2 Example of margins, padding, and borders", + "url": "https://www.w3.org/TR/CSS21/changes.html#x8.2" } }, - "/changes#s.8.3.1a": { + "/changes#x8.5.4": { "current": { - "number": "C.5.26", + "number": "C.3.16", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1a" + "text": "Section 8.5.4 Border shorthand properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#x8.5.4" }, "snapshot": { - "number": "C.5.26", + "number": "C.3.16", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1a" + "text": "Section 8.5.4 Border shorthand properties", + "url": "https://www.w3.org/TR/CSS21/changes.html#x8.5.4" } }, - "/changes#s.8.3.1b": { + "/changes#x9.10": { "current": { - "number": "C.5.27", + "number": "C.3.28", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1b" + "text": "Section 9.10 Text direction", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.10" }, "snapshot": { - "number": "C.5.27", + "number": "C.3.28", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.8.3.1b" + "text": "Section 9.10 Text direction", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.10" } }, - "/changes#s.9.2.2": { + "/changes#x9.2.1": { "current": { - "number": "C.5.28", + "number": "C.3.17", "spec": "CSS 2.1", - "text": "Section 9.2.2 Inline-level elements and inline boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.2" + "text": "Section 9.2.1 Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.2.1" }, "snapshot": { - "number": "C.5.28", + "number": "C.3.17", "spec": "CSS 2.1", - "text": "Section 9.2.2 Inline-level elements and inline boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.2" + "text": "Section 9.2.1 Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.2.1" } }, - "/changes#s.9.2.4": { + "/changes#x9.3.1": { "current": { - "number": "C.5.29", + "number": "C.3.18", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.4" + "text": "Section 9.3.1 Choosing a positioning scheme", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.1" }, "snapshot": { - "number": "C.5.29", + "number": "C.3.18", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.2.4" + "text": "Section 9.3.1 Choosing a positioning scheme", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.1" } }, - "/changes#s.9.3.2": { + "/changes#x9.3.2": { "current": { - "number": "C.5.30", + "number": "C.3.19", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.3.2" + "text": "Section 9.3.2 Box offsets", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.2" }, "snapshot": { - "number": "C.5.30", + "number": "C.3.19", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.3.2" + "text": "Section 9.3.2 Box offsets", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.2" } }, - "/changes#s.9.5": { + "/changes#x9.4.1": { "current": { - "number": "C.5.31", + "number": "C.3.20", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5" + "text": "Section 9.4.1 Block formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.1" }, "snapshot": { - "number": "C.5.31", + "number": "C.3.20", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5" + "text": "Section 9.4.1 Block formatting contexts", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.1" } }, - "/changes#s.9.5.2": { + "/changes#x9.4.2": { "current": { - "number": "C.5.33", + "number": "C.3.21", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5.2" + "text": "Section 9.4.2 Inline formatting context", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.2" }, "snapshot": { - "number": "C.5.33", + "number": "C.3.21", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5.2" + "text": "Section 9.4.2 Inline formatting context", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.2" } }, - "/changes#s.9.5a": { + "/changes#x9.4.3": { "current": { - "number": "C.5.32", + "number": "C.3.22", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5a" + "text": "Section 9.4.3 Relative positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.3" }, "snapshot": { - "number": "C.5.32", + "number": "C.3.22", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.5a" + "text": "Section 9.4.3 Relative positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.3" } }, - "/changes#s.9.6.1": { + "/changes#x9.5": { "current": { - "number": "C.5.34", + "number": "C.3.23", "spec": "CSS 2.1", - "text": "Section 9.6.1 Fixed positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.6.1" + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5" }, "snapshot": { - "number": "C.5.34", + "number": "C.3.23", "spec": "CSS 2.1", - "text": "Section 9.6.1 Fixed positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.6.1" + "text": "Section 9.5 Floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5" } }, - "/changes#s.9.9.1": { + "/changes#x9.5.1": { "current": { - "number": "C.5.35", + "number": "C.3.24", "spec": "CSS 2.1", - "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.9.1" + "text": "Section 9.5.1 Positioning the float", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.1" }, "snapshot": { - "number": "C.5.35", + "number": "C.3.24", "spec": "CSS 2.1", - "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.9.9.1" + "text": "Section 9.5.1 Positioning the float", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.1" } }, - "/changes#s.B.2": { + "/changes#x9.5.2": { "current": { - "number": "C.5.82", + "number": "C.3.25", "spec": "CSS 2.1", - "text": "Section B.2 Informative references", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.B.2" + "text": "Section 9.5.2 Controlling flow next to floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.2" }, "snapshot": { - "number": "C.5.82", + "number": "C.3.25", "spec": "CSS 2.1", - "text": "Section B.2 Informative references", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.B.2" + "text": "Section 9.5.2 Controlling flow next to floats", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.2" } }, - "/changes#s.D": { + "/changes#x9.6": { "current": { - "number": "C.5.83", + "number": "C.3.26", "spec": "CSS 2.1", - "text": "Appendix D. Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.D" + "text": "Section 9.6 Absolute positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.6" }, "snapshot": { - "number": "C.5.83", + "number": "C.3.26", "spec": "CSS 2.1", - "text": "Appendix D. Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.D" + "text": "Section 9.6 Absolute positioning", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.6" } }, - "/changes#s.Da": { + "/changes#x9.7": { "current": { - "number": "C.5.84", + "number": "C.3.27", "spec": "CSS 2.1", - "text": "Appendix D. Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.Da" + "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.7" }, "snapshot": { - "number": "C.5.84", + "number": "C.3.27", "spec": "CSS 2.1", - "text": "Appendix D. Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.Da" + "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/changes.html#x9.7" } }, - "/changes#s.E.2": { + "/changes#xE.2": { "current": { - "number": "C.5.85", + "number": "C.3.52", "spec": "CSS 2.1", "text": "Section E.2 Painting order", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.E.2" + "url": "https://www.w3.org/TR/CSS21/changes.html#xE.2" }, "snapshot": { - "number": "C.5.85", + "number": "C.3.52", "spec": "CSS 2.1", "text": "Section E.2 Painting order", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.E.2" + "url": "https://www.w3.org/TR/CSS21/changes.html#xE.2" } }, - "/changes#s.G": { + "/colors#background": { "current": { - "number": "C.5.86", + "number": "14.2", "spec": "CSS 2.1", - "text": "Appendix G. Grammar of CSS 2.1", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G" + "text": "The background", + "url": "https://www.w3.org/TR/CSS21/colors.html#background" }, "snapshot": { - "number": "C.5.86", + "number": "14.2", "spec": "CSS 2.1", - "text": "Appendix G. Grammar of CSS 2.1", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G" + "text": "The background", + "url": "https://www.w3.org/TR/CSS21/colors.html#background" } }, - "/changes#s.G.1": { + "/colors#background-properties": { "current": { - "number": "C.5.87", + "number": "14.2.1", "spec": "CSS 2.1", - "text": "Section G.1 Grammar", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.1" + "text": "Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS21/colors.html#background-properties" }, "snapshot": { - "number": "C.5.87", + "number": "14.2.1", "spec": "CSS 2.1", - "text": "Section G.1 Grammar", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.1" + "text": "Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS21/colors.html#background-properties" } }, - "/changes#s.G.2": { + "/colors#colors": { "current": { - "number": "C.5.88", - "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2" + "number": "14.1", + "spec": "CSS 2.1", + "text": "Foreground color: the 'color' property", + "url": "https://www.w3.org/TR/CSS21/colors.html#colors" }, "snapshot": { - "number": "C.5.88", + "number": "14.1", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2" + "text": "Foreground color: the 'color' property", + "url": "https://www.w3.org/TR/CSS21/colors.html#colors" } }, - "/changes#s.G.2a": { + "/colors#q14.0": { "current": { - "number": "C.5.89", + "number": "", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2a" + "text": "14 Colors and Backgrounds", + "url": "https://www.w3.org/TR/CSS21/colors.html#q14.0" }, "snapshot": { - "number": "C.5.89", + "number": "", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2a" + "text": "14 Colors and Backgrounds", + "url": "https://www.w3.org/TR/CSS21/colors.html#q14.0" } }, - "/changes#s.G.2b": { + "/conform#conformance": { "current": { - "number": "C.5.90", + "number": "3.2", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2b" + "text": "UA Conformance", + "url": "https://www.w3.org/TR/CSS21/conform.html#conformance" }, "snapshot": { - "number": "C.5.90", + "number": "3.2", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2b" + "text": "UA Conformance", + "url": "https://www.w3.org/TR/CSS21/conform.html#conformance" } }, - "/changes#s.G.2c": { + "/conform#defs": { "current": { - "number": "C.5.91", + "number": "3.1", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2c" + "text": "Definitions", + "url": "https://www.w3.org/TR/CSS21/conform.html#defs" }, "snapshot": { - "number": "C.5.91", + "number": "3.1", "spec": "CSS 2.1", - "text": "Section G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.G.2c" + "text": "Definitions", + "url": "https://www.w3.org/TR/CSS21/conform.html#defs" } }, - "/changes#s.Ga": { + "/conform#errors": { "current": { - "number": "C.6.8", + "number": "3.3", "spec": "CSS 2.1", - "text": "Appendix G. Grammar of CSS 2.1", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.Ga" + "text": "Error conditions", + "url": "https://www.w3.org/TR/CSS21/conform.html#errors" }, "snapshot": { - "number": "C.6.8", + "number": "3.3", "spec": "CSS 2.1", - "text": "Appendix G. Grammar of CSS 2.1", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.Ga" + "text": "Error conditions", + "url": "https://www.w3.org/TR/CSS21/conform.html#errors" } }, - "/changes#s.I": { + "/conform#q3.0": { "current": { - "number": "C.5.92", + "number": "3", "spec": "CSS 2.1", - "text": "Appendix I. Index", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.I" + "text": "Conformance: Requirements and Recommendations", + "url": "https://www.w3.org/TR/CSS21/conform.html#q3.0" }, "snapshot": { - "number": "C.5.92", + "number": "3", "spec": "CSS 2.1", - "text": "Appendix I. Index", - "url": "https://www.w3.org/TR/CSS21/changes.html#s.I" + "text": "Conformance: Requirements and Recommendations", + "url": "https://www.w3.org/TR/CSS21/conform.html#q3.0" } }, - "/changes#t.1": { + "/fonts#algorithm": { "current": { - "number": "C.7.1", + "number": "15.2", "spec": "CSS 2.1", - "text": "Section 1.4.2.1 Value", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.1" + "text": "Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/fonts.html#algorithm" }, "snapshot": { - "number": "C.7.1", + "number": "15.2", "spec": "CSS 2.1", - "text": "Section 1.4.2.1 Value", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.1" + "text": "Font matching algorithm", + "url": "https://www.w3.org/TR/CSS21/fonts.html#algorithm" } }, - "/changes#t.10.1": { + "/fonts#font-boldness": { "current": { - "number": "C.7.49", + "number": "15.6", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.1" + "text": "Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-boldness" }, "snapshot": { - "number": "C.7.49", + "number": "15.6", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.1" + "text": "Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-boldness" } }, - "/changes#t.10.2": { + "/fonts#font-family-prop": { "current": { - "number": "C.7.50", + "number": "15.3", "spec": "CSS 2.1", - "text": "Section 10.2 Content width: the 'width' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2" + "text": "Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-family-prop" }, "snapshot": { - "number": "C.7.50", + "number": "15.3", "spec": "CSS 2.1", - "text": "Section 10.2 Content width: the 'width' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2" + "text": "Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-family-prop" } }, - "/changes#t.10.2a": { + "/fonts#font-shorthand": { "current": { - "number": "C.7.51", + "number": "15.8", "spec": "CSS 2.1", - "text": "Section 10.2 Content width: the 'width' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2a" + "text": "Shorthand font property: the 'font' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-shorthand" }, "snapshot": { - "number": "C.7.51", + "number": "15.8", "spec": "CSS 2.1", - "text": "Section 10.2 Content width: the 'width' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2a" + "text": "Shorthand font property: the 'font' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-shorthand" } }, - "/changes#t.10.2b": { + "/fonts#font-size-props": { "current": { - "number": "C.7.52", + "number": "15.7", "spec": "CSS 2.1", - "text": "Section 10.2 Content width: the 'width' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2b" + "text": "Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-size-props" }, "snapshot": { - "number": "C.7.52", + "number": "15.7", "spec": "CSS 2.1", - "text": "Section 10.2 Content width: the 'width' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.2b" + "text": "Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-size-props" } }, - "/changes#t.10.5": { + "/fonts#font-styling": { "current": { - "number": "C.7.53", + "number": "15.4", "spec": "CSS 2.1", - "text": "Section 10.5 Content height: the 'height' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5" + "text": "Font styling: the 'font-style' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-styling" }, "snapshot": { - "number": "C.7.53", + "number": "15.4", "spec": "CSS 2.1", - "text": "Section 10.5 Content height: the 'height' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5" + "text": "Font styling: the 'font-style' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#font-styling" } }, - "/changes#t.10.5a": { + "/fonts#fonts-intro": { "current": { - "number": "C.7.54", + "number": "15.1", "spec": "CSS 2.1", - "text": "Section 10.5 Content height: the 'height' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5a" + "text": "Introduction", + "url": "https://www.w3.org/TR/CSS21/fonts.html#fonts-intro" }, "snapshot": { - "number": "C.7.54", + "number": "15.1", "spec": "CSS 2.1", - "text": "Section 10.5 Content height: the 'height' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.5a" + "text": "Introduction", + "url": "https://www.w3.org/TR/CSS21/fonts.html#fonts-intro" } }, - "/changes#t.10.6.3": { + "/fonts#generic-font-families": { "current": { - "number": "C.8.55", + "number": "15.3.1", "spec": "CSS 2.1", - "text": "10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.3" + "text": "Generic font families", + "url": "https://www.w3.org/TR/CSS21/fonts.html#generic-font-families" }, "snapshot": { - "number": "C.8.55", + "number": "15.3.1", "spec": "CSS 2.1", - "text": "10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.3" + "text": "Generic font families", + "url": "https://www.w3.org/TR/CSS21/fonts.html#generic-font-families" } }, - "/changes#t.10.6.7": { + "/fonts#q15.0": { "current": { - "number": "C.7.55", + "number": "", "spec": "CSS 2.1", - "text": "Section 10.6.7 'Auto' heights for block formatting context roots", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.7" + "text": "15 Fonts", + "url": "https://www.w3.org/TR/CSS21/fonts.html#q15.0" }, "snapshot": { - "number": "C.7.55", + "number": "", "spec": "CSS 2.1", - "text": "Section 10.6.7 'Auto' heights for block formatting context roots", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.6.7" + "text": "15 Fonts", + "url": "https://www.w3.org/TR/CSS21/fonts.html#q15.0" } }, - "/changes#t.10.7": { + "/fonts#small-caps": { "current": { - "number": "C.7.56", + "number": "15.5", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights: 'min-height' and 'max-height'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.7" + "text": "Small-caps: the 'font-variant' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#small-caps" }, "snapshot": { - "number": "C.7.56", + "number": "15.5", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights: 'min-height' and 'max-height'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.7" + "text": "Small-caps: the 'font-variant' property", + "url": "https://www.w3.org/TR/CSS21/fonts.html#small-caps" } }, - "/changes#t.10.8": { + "/generate#before-after-content": { "current": { - "number": "C.7.57", + "number": "12.1", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8" + "text": "The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/generate.html#before-after-content" }, "snapshot": { - "number": "C.7.57", + "number": "12.1", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8" + "text": "The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/generate.html#before-after-content" } }, - "/changes#t.10.8.1": { + "/generate#content": { "current": { - "number": "C.7.59", + "number": "12.2", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1" + "text": "The 'content' property", + "url": "https://www.w3.org/TR/CSS21/generate.html#content" }, "snapshot": { - "number": "C.7.59", + "number": "12.2", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1" + "text": "The 'content' property", + "url": "https://www.w3.org/TR/CSS21/generate.html#content" } }, - "/changes#t.10.8.1a": { + "/generate#counter-styles": { "current": { - "number": "C.7.60", + "number": "12.4.2", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1a" + "text": "Counter styles", + "url": "https://www.w3.org/TR/CSS21/generate.html#counter-styles" }, "snapshot": { - "number": "C.7.60", + "number": "12.4.2", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1a" + "text": "Counter styles", + "url": "https://www.w3.org/TR/CSS21/generate.html#counter-styles" } }, - "/changes#t.10.8.1b": { + "/generate#generated-text": { "current": { - "number": "C.7.61", + "number": "", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1b" + "text": "12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS21/generate.html#generated-text" }, "snapshot": { - "number": "C.7.61", + "number": "", "spec": "CSS 2.1", - "text": "Section 10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8.1b" + "text": "12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS21/generate.html#generated-text" } }, - "/changes#t.10.8a": { + "/generate#list-style": { "current": { - "number": "C.7.58", + "number": "12.5.1", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8a" + "text": "Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/generate.html#list-style" }, "snapshot": { - "number": "C.7.58", + "number": "12.5.1", "spec": "CSS 2.1", - "text": "Section 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.10.8a" + "text": "Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS21/generate.html#list-style" } }, - "/changes#t.11.1": { + "/generate#lists": { "current": { - "number": "C.7.62", + "number": "12.5", "spec": "CSS 2.1", - "text": "Section 11.1 Overflow and clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1" + "text": "Lists", + "url": "https://www.w3.org/TR/CSS21/generate.html#lists" }, "snapshot": { - "number": "C.7.62", + "number": "12.5", "spec": "CSS 2.1", - "text": "Section 11.1 Overflow and clipping", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1" + "text": "Lists", + "url": "https://www.w3.org/TR/CSS21/generate.html#lists" } }, - "/changes#t.11.1.1": { + "/generate#quotes": { "current": { - "number": "C.7.63", + "number": "12.3", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1" + "text": "Quotation marks", + "url": "https://www.w3.org/TR/CSS21/generate.html#quotes" }, "snapshot": { - "number": "C.7.63", + "number": "12.3", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1" + "text": "Quotation marks", + "url": "https://www.w3.org/TR/CSS21/generate.html#quotes" } }, - "/changes#t.11.1.1a": { + "/generate#quotes-insert": { "current": { - "number": "C.7.64", + "number": "12.3.2", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1a" + "text": "Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS21/generate.html#quotes-insert" }, "snapshot": { - "number": "C.7.64", + "number": "12.3.2", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1a" + "text": "Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS21/generate.html#quotes-insert" } }, - "/changes#t.11.1.1b": { + "/generate#quotes-specify": { "current": { - "number": "C.7.65", + "number": "12.3.1", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1b" + "text": "Specifying quotes with the 'quotes' property", + "url": "https://www.w3.org/TR/CSS21/generate.html#quotes-specify" }, "snapshot": { - "number": "C.7.65", + "number": "12.3.1", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.1b" + "text": "Specifying quotes with the 'quotes' property", + "url": "https://www.w3.org/TR/CSS21/generate.html#quotes-specify" } }, - "/changes#t.11.1.2": { + "/generate#scope": { "current": { - "number": "C.7.66", + "number": "12.4.1", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.2" + "text": "Nested counters and scope", + "url": "https://www.w3.org/TR/CSS21/generate.html#scope" }, "snapshot": { - "number": "C.7.66", + "number": "12.4.1", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.11.1.2" + "text": "Nested counters and scope", + "url": "https://www.w3.org/TR/CSS21/generate.html#scope" } }, - "/changes#t.12.5": { + "/generate#undisplayed-counters": { "current": { - "number": "C.7.67", + "number": "12.4.3", "spec": "CSS 2.1", - "text": "Section 12.5 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5" + "text": "Counters in elements with 'display: none'", + "url": "https://www.w3.org/TR/CSS21/generate.html#undisplayed-counters" }, "snapshot": { - "number": "C.7.67", + "number": "12.4.3", "spec": "CSS 2.1", - "text": "Section 12.5 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5" + "text": "Counters in elements with 'display: none'", + "url": "https://www.w3.org/TR/CSS21/generate.html#undisplayed-counters" } }, - "/changes#t.12.5.1": { + "/grammar#grammar": { "current": { - "number": "C.7.68", + "number": "G.1", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1" + "text": "Grammar", + "url": "https://www.w3.org/TR/CSS21/grammar.html#grammar" }, "snapshot": { - "number": "C.7.68", + "number": "G.1", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1" + "text": "Grammar", + "url": "https://www.w3.org/TR/CSS21/grammar.html#grammar" } }, - "/changes#t.12.5.1a": { + "/grammar#q25.0": { "current": { - "number": "C.7.69", + "number": "G", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1a" + "text": "Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/grammar.html#q25.0" }, "snapshot": { - "number": "C.7.69", + "number": "G", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1a" + "text": "Grammar of CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/grammar.html#q25.0" } }, - "/changes#t.12.5.1b": { + "/grammar#q25.4": { "current": { - "number": "C.7.70", + "number": "G.4", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1b" + "text": "Implementation note", + "url": "https://www.w3.org/TR/CSS21/grammar.html#q25.4" }, "snapshot": { - "number": "C.7.70", + "number": "G.4", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1b" + "text": "Implementation note", + "url": "https://www.w3.org/TR/CSS21/grammar.html#q25.4" } }, - "/changes#t.12.5.1c": { + "/grammar#scanner": { "current": { - "number": "C.7.71", + "number": "G.2", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1c" + "text": "Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/grammar.html#scanner" }, "snapshot": { - "number": "C.7.71", + "number": "G.2", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1c" + "text": "Lexical scanner", + "url": "https://www.w3.org/TR/CSS21/grammar.html#scanner" } }, - "/changes#t.12.5.1d": { + "/grammar#tokenizer-diffs": { "current": { - "number": "C.7.72", + "number": "G.3", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1d" + "text": "Comparison of tokenization in CSS 2.1 and CSS1", + "url": "https://www.w3.org/TR/CSS21/grammar.html#tokenizer-diffs" }, "snapshot": { - "number": "C.7.72", + "number": "G.3", "spec": "CSS 2.1", - "text": "Section 12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.12.5.1d" + "text": "Comparison of tokenization in CSS 2.1 and CSS1", + "url": "https://www.w3.org/TR/CSS21/grammar.html#tokenizer-diffs" } }, - "/changes#t.13.2": { + "/indexlist#q27.0": { "current": { - "number": "C.7.73", + "number": "I", "spec": "CSS 2.1", - "text": "Section 13.2 Page boxes: the @page rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2" + "text": "Index", + "url": "https://www.w3.org/TR/CSS21/indexlist.html#q27.0" }, "snapshot": { - "number": "C.7.73", + "number": "I", "spec": "CSS 2.1", - "text": "Section 13.2 Page boxes: the @page rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2" + "text": "Index", + "url": "https://www.w3.org/TR/CSS21/indexlist.html#q27.0" } }, - "/changes#t.13.2.2": { + "/intro#addressing": { "current": { - "number": "C.7.74", + "number": "2.3.2", "spec": "CSS 2.1", - "text": "Section 13.2.2 Page selectors: selecting left, right, and first pages", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2.2" + "text": "CSS 2.1 addressing model", + "url": "https://www.w3.org/TR/CSS21/intro.html#addressing" }, "snapshot": { - "number": "C.7.74", + "number": "2.3.2", "spec": "CSS 2.1", - "text": "Section 13.2.2 Page selectors: selecting left, right, and first pages", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.2.2" + "text": "CSS 2.1 addressing model", + "url": "https://www.w3.org/TR/CSS21/intro.html#addressing" } }, - "/changes#t.13.3.2": { + "/intro#design-principles": { "current": { - "number": "C.7.75", + "number": "2.4", "spec": "CSS 2.1", - "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.2" + "text": "CSS design principles", + "url": "https://www.w3.org/TR/CSS21/intro.html#design-principles" }, "snapshot": { - "number": "C.7.75", + "number": "2.4", "spec": "CSS 2.1", - "text": "Section 13.3.2 Breaks inside elements: 'orphans', 'widows'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.2" + "text": "CSS design principles", + "url": "https://www.w3.org/TR/CSS21/intro.html#design-principles" } }, - "/changes#t.13.3.3": { + "/intro#html-tutorial": { "current": { - "number": "C.7.76", + "number": "2.1", "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.3" + "text": "A brief CSS 2.1 tutorial for HTML", + "url": "https://www.w3.org/TR/CSS21/intro.html#html-tutorial" }, "snapshot": { - "number": "C.7.76", - "spec": "CSS 2.1", - "text": "Section 13.3.3 Allowed page breaks", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.13.3.3" + "number": "2.1", + "spec": "CSS 2.1", + "text": "A brief CSS 2.1 tutorial for HTML", + "url": "https://www.w3.org/TR/CSS21/intro.html#html-tutorial" } }, - "/changes#t.14.2.1": { + "/intro#processing-model": { "current": { - "number": "C.7.44", + "number": "2.3", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.14.2.1" + "text": "The CSS 2.1 processing model", + "url": "https://www.w3.org/TR/CSS21/intro.html#processing-model" }, "snapshot": { - "number": "C.7.44", + "number": "2.3", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.14.2.1" + "text": "The CSS 2.1 processing model", + "url": "https://www.w3.org/TR/CSS21/intro.html#processing-model" } }, - "/changes#t.15.3": { + "/intro#q2.0": { "current": { - "number": "C.7.77", + "number": "2", "spec": "CSS 2.1", - "text": "Section 15.3 Font family: the 'font-family' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3" + "text": "Introduction to CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/intro.html#q2.0" }, "snapshot": { - "number": "C.7.77", + "number": "2", "spec": "CSS 2.1", - "text": "Section 15.3 Font family: the 'font-family' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3" + "text": "Introduction to CSS 2.1", + "url": "https://www.w3.org/TR/CSS21/intro.html#q2.0" } }, - "/changes#t.15.3.1": { + "/intro#the-canvas": { "current": { - "number": "C.7.78", + "number": "2.3.1", "spec": "CSS 2.1", - "text": "Section 15.3.1 Generic font families", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3.1" + "text": "The canvas", + "url": "https://www.w3.org/TR/CSS21/intro.html#the-canvas" }, "snapshot": { - "number": "C.7.78", + "number": "2.3.1", "spec": "CSS 2.1", - "text": "Section 15.3.1 Generic font families", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.3.1" + "text": "The canvas", + "url": "https://www.w3.org/TR/CSS21/intro.html#the-canvas" } }, - "/changes#t.15.6": { + "/intro#xml-tutorial": { "current": { - "number": "C.7.79", + "number": "2.2", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness: the 'font-weight' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6" + "text": "A brief CSS 2.1 tutorial for XML", + "url": "https://www.w3.org/TR/CSS21/intro.html#xml-tutorial" }, "snapshot": { - "number": "C.7.79", + "number": "2.2", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness: the 'font-weight' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6" + "text": "A brief CSS 2.1 tutorial for XML", + "url": "https://www.w3.org/TR/CSS21/intro.html#xml-tutorial" } }, - "/changes#t.15.6q": { + "/media#at-media-rule": { "current": { - "number": "C.7.80", + "number": "7.2.1", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness: the 'font-weight' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6q" + "text": "The @media rule", + "url": "https://www.w3.org/TR/CSS21/media.html#at-media-rule" }, "snapshot": { - "number": "C.7.80", + "number": "7.2.1", "spec": "CSS 2.1", - "text": "Section 15.6 Font boldness: the 'font-weight' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.6q" + "text": "The @media rule", + "url": "https://www.w3.org/TR/CSS21/media.html#at-media-rule" } }, - "/changes#t.15.7": { + "/media#media-groups": { "current": { - "number": "C.7.81", + "number": "7.3.1", "spec": "CSS 2.1", - "text": "Section 15.7 Font size: the 'font-size' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.7" + "text": "Media groups", + "url": "https://www.w3.org/TR/CSS21/media.html#media-groups" }, "snapshot": { - "number": "C.7.81", + "number": "7.3.1", "spec": "CSS 2.1", - "text": "Section 15.7 Font size: the 'font-size' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.15.7" + "text": "Media groups", + "url": "https://www.w3.org/TR/CSS21/media.html#media-groups" } }, - "/changes#t.16.1": { + "/media#media-intro": { "current": { - "number": "C.7.82", + "number": "7.1", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation: the 'text-indent' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1" + "text": "Introduction to media types", + "url": "https://www.w3.org/TR/CSS21/media.html#media-intro" }, "snapshot": { - "number": "C.7.82", + "number": "7.1", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation: the 'text-indent' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1" + "text": "Introduction to media types", + "url": "https://www.w3.org/TR/CSS21/media.html#media-intro" } }, - "/changes#t.16.1a": { + "/media#media-sheets": { "current": { - "number": "C.7.83", + "number": "7.2", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation: the 'text-indent' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1a" + "text": "Specifying media-dependent style sheets", + "url": "https://www.w3.org/TR/CSS21/media.html#media-sheets" }, "snapshot": { - "number": "C.7.83", + "number": "7.2", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation: the 'text-indent' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.1a" + "text": "Specifying media-dependent style sheets", + "url": "https://www.w3.org/TR/CSS21/media.html#media-sheets" } }, - "/changes#t.16.2": { + "/media#media-types": { "current": { - "number": "C.7.84", + "number": "7.3", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment: the 'text-align' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2" + "text": "Recognized media types", + "url": "https://www.w3.org/TR/CSS21/media.html#media-types" }, "snapshot": { - "number": "C.7.84", + "number": "7.3", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment: the 'text-align' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2" + "text": "Recognized media types", + "url": "https://www.w3.org/TR/CSS21/media.html#media-types" } }, - "/changes#t.16.2a": { + "/media#q7.0": { "current": { - "number": "C.7.85", + "number": "7", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment: the 'text-align' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2a" + "text": "Media types", + "url": "https://www.w3.org/TR/CSS21/media.html#q7.0" }, "snapshot": { - "number": "C.7.85", + "number": "7", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment: the 'text-align' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.2a" + "text": "Media types", + "url": "https://www.w3.org/TR/CSS21/media.html#q7.0" } }, - "/changes#t.16.3.1": { + "/page#allowed-page-breaks": { "current": { - "number": "C.7.86", + "number": "13.3.3", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1" + "text": "Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#allowed-page-breaks" }, "snapshot": { - "number": "C.7.86", + "number": "13.3.3", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1" + "text": "Allowed page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#allowed-page-breaks" } }, - "/changes#t.16.3.1a": { + "/page#best-page-breaks": { "current": { - "number": "C.7.87", + "number": "13.3.5", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1a" + "text": "\"Best\" page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#best-page-breaks" }, "snapshot": { - "number": "C.7.87", + "number": "13.3.5", "spec": "CSS 2.1", - "text": "Section 16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.3.1a" + "text": "\"Best\" page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#best-page-breaks" } }, - "/changes#t.16.4": { + "/page#break-inside": { "current": { - "number": "C.7.88", + "number": "13.3.2", "spec": "CSS 2.1", - "text": "Section 16.4 Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.4" + "text": "Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/page.html#break-inside" }, "snapshot": { - "number": "C.7.88", + "number": "13.3.2", "spec": "CSS 2.1", - "text": "Section 16.4 Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.4" + "text": "Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS21/page.html#break-inside" } }, - "/changes#t.16.6": { + "/page#forced": { "current": { - "number": "C.7.89", + "number": "13.3.4", "spec": "CSS 2.1", - "text": "Section 16.6 White space: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6" + "text": "Forced page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#forced" }, "snapshot": { - "number": "C.7.89", + "number": "13.3.4", "spec": "CSS 2.1", - "text": "Section 16.6 White space: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6" + "text": "Forced page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#forced" } }, - "/changes#t.16.6.1": { + "/page#outside-page-box": { "current": { - "number": "C.7.90", + "number": "13.2.3", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1" + "text": "Content outside the page box", + "url": "https://www.w3.org/TR/CSS21/page.html#outside-page-box" }, "snapshot": { - "number": "C.7.90", + "number": "13.2.3", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1" + "text": "Content outside the page box", + "url": "https://www.w3.org/TR/CSS21/page.html#outside-page-box" } }, - "/changes#t.16.6.1a": { + "/page#page-box": { "current": { - "number": "C.7.91", + "number": "13.2", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1a" + "text": "Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/page.html#page-box" }, "snapshot": { - "number": "C.7.91", + "number": "13.2", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1a" + "text": "Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS21/page.html#page-box" } }, - "/changes#t.16.6.1b": { + "/page#page-break-props": { "current": { - "number": "C.7.92", + "number": "13.3.1", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1b" + "text": "Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS21/page.html#page-break-props" }, "snapshot": { - "number": "C.7.92", + "number": "13.3.1", "spec": "CSS 2.1", - "text": "Section 16.6.1 The 'white-space' processing model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.16.6.1b" + "text": "Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS21/page.html#page-break-props" } }, - "/changes#t.17.2": { + "/page#page-breaks": { "current": { - "number": "C.7.93", + "number": "13.3", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2" + "text": "Page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#page-breaks" }, "snapshot": { - "number": "C.7.93", + "number": "13.3", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2" + "text": "Page breaks", + "url": "https://www.w3.org/TR/CSS21/page.html#page-breaks" } }, - "/changes#t.17.2.1": { + "/page#page-cascade": { "current": { - "number": "C.7.94", + "number": "13.4", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1" + "text": "Cascading in the page context", + "url": "https://www.w3.org/TR/CSS21/page.html#page-cascade" }, "snapshot": { - "number": "C.7.94", + "number": "13.4", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1" + "text": "Cascading in the page context", + "url": "https://www.w3.org/TR/CSS21/page.html#page-cascade" } }, - "/changes#t.17.2.1a": { + "/page#page-intro": { "current": { - "number": "C.7.95", + "number": "13.1", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1a" + "text": "Introduction to paged media", + "url": "https://www.w3.org/TR/CSS21/page.html#page-intro" }, "snapshot": { - "number": "C.7.95", + "number": "13.1", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.2.1a" + "text": "Introduction to paged media", + "url": "https://www.w3.org/TR/CSS21/page.html#page-intro" } }, - "/changes#t.17.4": { + "/page#page-margins": { "current": { - "number": "C.7.96", + "number": "13.2.1", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4" + "text": "Page margins", + "url": "https://www.w3.org/TR/CSS21/page.html#page-margins" }, "snapshot": { - "number": "C.7.96", + "number": "13.2.1", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4" + "text": "Page margins", + "url": "https://www.w3.org/TR/CSS21/page.html#page-margins" } }, - "/changes#t.17.4a": { + "/page#page-selectors": { "current": { - "number": "C.7.97", + "number": "13.2.2", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4a" + "text": "Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS21/page.html#page-selectors" }, "snapshot": { - "number": "C.7.97", + "number": "13.2.2", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.4a" + "text": "Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS21/page.html#page-selectors" } }, - "/changes#t.17.5.2.2": { + "/page#the-page": { "current": { - "number": "C.7.98", + "number": "", "spec": "CSS 2.1", - "text": "Section 17.5.2.2 Automatic table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.2.2" + "text": "13 Paged media", + "url": "https://www.w3.org/TR/CSS21/page.html#the-page" }, "snapshot": { - "number": "C.7.98", + "number": "", "spec": "CSS 2.1", - "text": "Section 17.5.2.2 Automatic table layout", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.2.2" + "text": "13 Paged media", + "url": "https://www.w3.org/TR/CSS21/page.html#the-page" } }, - "/changes#t.17.5.3": { + "/propidx#q24.0": { "current": { - "number": "C.7.99", + "number": "F", "spec": "CSS 2.1", - "text": "Section 17.5.3 Table height algorithms", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.3" + "text": "Full property table", + "url": "https://www.w3.org/TR/CSS21/propidx.html#q24.0" }, "snapshot": { - "number": "C.7.99", + "number": "F", "spec": "CSS 2.1", - "text": "Section 17.5.3 Table height algorithms", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.3" + "text": "Full property table", + "url": "https://www.w3.org/TR/CSS21/propidx.html#q24.0" } }, - "/changes#t.17.5.4": { + "/refs#informative": { "current": { - "number": "C.7.100", + "number": "B.2", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.4" + "text": "Informative references", + "url": "https://www.w3.org/TR/CSS21/refs.html#informative" }, "snapshot": { - "number": "C.7.100", + "number": "B.2", "spec": "CSS 2.1", - "text": "Section 17.5.4 Horizontal alignment in a column", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.17.5.4" + "text": "Informative references", + "url": "https://www.w3.org/TR/CSS21/refs.html#informative" } }, - "/changes#t.3.1": { + "/refs#normative": { "current": { - "number": "C.7.2", + "number": "B.1", "spec": "CSS 2.1", - "text": "Section 3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.3.1" + "text": "Normative references", + "url": "https://www.w3.org/TR/CSS21/refs.html#normative" }, "snapshot": { - "number": "C.7.2", + "number": "B.1", "spec": "CSS 2.1", - "text": "Section 3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.3.1" + "text": "Normative references", + "url": "https://www.w3.org/TR/CSS21/refs.html#normative" } }, - "/changes#t.4.1.1": { + "/refs#q20.0": { "current": { - "number": "C.7.3", + "number": "B", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1" + "text": "Bibliography", + "url": "https://www.w3.org/TR/CSS21/refs.html#q20.0" }, "snapshot": { - "number": "C.7.3", + "number": "B", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1" + "text": "Bibliography", + "url": "https://www.w3.org/TR/CSS21/refs.html#q20.0" } }, - "/changes#t.4.1.1a": { + "/sample#q22.0": { "current": { - "number": "C.7.4", + "number": "D", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1a" + "text": "Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/sample.html#q22.0" }, "snapshot": { - "number": "C.7.4", + "number": "D", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1a" + "text": "Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS21/sample.html#q22.0" } }, - "/changes#t.4.1.1b": { + "/selector#adjacent-selectors": { "current": { - "number": "C.7.5", + "number": "5.7", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1b" + "text": "Adjacent sibling selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#adjacent-selectors" }, "snapshot": { - "number": "C.7.5", + "number": "5.7", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1b" + "text": "Adjacent sibling selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#adjacent-selectors" } }, - "/changes#t.4.1.1c": { + "/selector#attribute-selectors": { "current": { - "number": "C.7.6", + "number": "5.8", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1c" + "text": "Attribute selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#attribute-selectors" }, "snapshot": { - "number": "C.7.6", + "number": "5.8", "spec": "CSS 2.1", - "text": "Section 4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.1c" + "text": "Attribute selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#attribute-selectors" } }, - "/changes#t.4.1.2.2": { + "/selector#before-and-after": { "current": { - "number": "C.7.7", + "number": "5.12.3", "spec": "CSS 2.1", - "text": "Section 4.1.2.2 Informative Historical Notes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.2.2" + "text": "The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/selector.html#before-and-after" }, "snapshot": { - "number": "C.7.7", + "number": "5.12.3", "spec": "CSS 2.1", - "text": "Section 4.1.2.2 Informative Historical Notes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.2.2" + "text": "The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/selector.html#before-and-after" } }, - "/changes#t.4.1.3": { + "/selector#child-selectors": { "current": { - "number": "C.7.8", + "number": "5.6", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3" + "text": "Child selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#child-selectors" }, "snapshot": { - "number": "C.7.8", + "number": "5.6", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3" + "text": "Child selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#child-selectors" } }, - "/changes#t.4.1.3a": { + "/selector#class-html": { "current": { - "number": "C.7.9", + "number": "5.8.3", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3a" + "text": "Class selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#class-html" }, "snapshot": { - "number": "C.7.9", + "number": "5.8.3", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.3a" + "text": "Class selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#class-html" } }, - "/changes#t.4.1.8": { + "/selector#default-attrs": { "current": { - "number": "C.7.10", + "number": "5.8.2", "spec": "CSS 2.1", - "text": "Section 4.1.8 Declarations and properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.8" + "text": "Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/selector.html#default-attrs" }, "snapshot": { - "number": "C.7.10", + "number": "5.8.2", "spec": "CSS 2.1", - "text": "Section 4.1.8 Declarations and properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.1.8" + "text": "Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS21/selector.html#default-attrs" } }, - "/changes#t.4.2": { + "/selector#descendant-selectors": { "current": { - "number": "C.7.11", + "number": "5.5", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.2" + "text": "Descendant selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#descendant-selectors" }, "snapshot": { - "number": "C.7.11", + "number": "5.5", "spec": "CSS 2.1", - "text": "Section 4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.2" + "text": "Descendant selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#descendant-selectors" } }, - "/changes#t.4.3.2": { + "/selector#dynamic-pseudo-classes": { "current": { - "number": "C.7.12", + "number": "5.11.3", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2" + "text": "The dynamic pseudo-classes: :hover, :active, and :focus", + "url": "https://www.w3.org/TR/CSS21/selector.html#dynamic-pseudo-classes" }, "snapshot": { - "number": "C.7.12", + "number": "5.11.3", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2" + "text": "The dynamic pseudo-classes: :hover, :active, and :focus", + "url": "https://www.w3.org/TR/CSS21/selector.html#dynamic-pseudo-classes" } }, - "/changes#t.4.3.2a": { + "/selector#first-child": { "current": { - "number": "C.7.13", + "number": "5.11.1", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2a" + "text": ":first-child pseudo-class", + "url": "https://www.w3.org/TR/CSS21/selector.html#first-child" }, "snapshot": { - "number": "C.7.13", + "number": "5.11.1", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.2a" + "text": ":first-child pseudo-class", + "url": "https://www.w3.org/TR/CSS21/selector.html#first-child" } }, - "/changes#t.4.3.4": { + "/selector#first-letter": { "current": { - "number": "C.7.15", + "number": "5.12.2", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4" + "text": "The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/selector.html#first-letter" }, "snapshot": { - "number": "C.7.15", + "number": "5.12.2", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4" + "text": "The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS21/selector.html#first-letter" } }, - "/changes#t.4.3.4a": { + "/selector#grouping": { "current": { - "number": "C.7.14", + "number": "5.2.1", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4a" + "text": "Grouping", + "url": "https://www.w3.org/TR/CSS21/selector.html#grouping" }, "snapshot": { - "number": "C.7.14", + "number": "5.2.1", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.4.3.4a" + "text": "Grouping", + "url": "https://www.w3.org/TR/CSS21/selector.html#grouping" } }, - "/changes#t.5.11.4": { + "/selector#id-selectors": { "current": { - "number": "C.7.17", + "number": "5.9", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.11.4" + "text": "ID selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#id-selectors" }, "snapshot": { - "number": "C.7.17", + "number": "5.9", "spec": "CSS 2.1", - "text": "Section 5.11.4 The language pseudo-class: :lang", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.11.4" + "text": "ID selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#id-selectors" } }, - "/changes#t.5.12": { + "/selector#lang": { "current": { - "number": "C.7.18", + "number": "5.11.4", "spec": "CSS 2.1", - "text": "Section 5.12 Pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12" + "text": "The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/selector.html#lang" }, "snapshot": { - "number": "C.7.18", + "number": "5.11.4", "spec": "CSS 2.1", - "text": "Section 5.12 Pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12" + "text": "The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS21/selector.html#lang" } }, - "/changes#t.5.12.1": { + "/selector#link-pseudo-classes": { "current": { - "number": "C.7.19", + "number": "5.11.2", "spec": "CSS 2.1", - "text": "Section 5.12.1 The :first-line pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.1" + "text": "The link pseudo-classes: :link and :visited", + "url": "https://www.w3.org/TR/CSS21/selector.html#link-pseudo-classes" }, "snapshot": { - "number": "C.7.19", + "number": "5.11.2", "spec": "CSS 2.1", - "text": "Section 5.12.1 The :first-line pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.1" + "text": "The link pseudo-classes: :link and :visited", + "url": "https://www.w3.org/TR/CSS21/selector.html#link-pseudo-classes" } }, - "/changes#t.5.12.2": { + "/selector#matching-attrs": { "current": { - "number": "C.7.20", + "number": "5.8.1", "spec": "CSS 2.1", - "text": "Section 5.12.2 The :first-letter pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.2" + "text": "Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/selector.html#matching-attrs" }, "snapshot": { - "number": "C.7.20", + "number": "5.8.1", "spec": "CSS 2.1", - "text": "Section 5.12.2 The :first-letter pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.12.2" + "text": "Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS21/selector.html#matching-attrs" } }, - "/changes#t.5.8.2": { + "/selector#pattern-matching": { "current": { - "number": "C.7.16", + "number": "5.1", "spec": "CSS 2.1", - "text": "Section 5.8.2 Default attribute values in DTDs", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.8.2" + "text": "Pattern matching", + "url": "https://www.w3.org/TR/CSS21/selector.html#pattern-matching" }, "snapshot": { - "number": "C.7.16", + "number": "5.1", "spec": "CSS 2.1", - "text": "Section 5.8.2 Default attribute values in DTDs", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.5.8.2" + "text": "Pattern matching", + "url": "https://www.w3.org/TR/CSS21/selector.html#pattern-matching" } }, - "/changes#t.6.2": { + "/selector#pseudo-class-selectors": { "current": { - "number": "C.7.21", + "number": "5.11", "spec": "CSS 2.1", - "text": "Section 6.2 Inheritance", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.2" + "text": "Pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/selector.html#pseudo-class-selectors" }, "snapshot": { - "number": "C.7.21", + "number": "5.11", "spec": "CSS 2.1", - "text": "Section 6.2 Inheritance", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.2" + "text": "Pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/selector.html#pseudo-class-selectors" } }, - "/changes#t.6.4.4": { + "/selector#pseudo-element-selectors": { "current": { - "number": "C.7.22", + "number": "5.12", "spec": "CSS 2.1", - "text": "Section 6.4.4 Precedence of non-CSS presentational hints", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.4.4" + "text": "Pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/selector.html#pseudo-element-selectors" }, "snapshot": { - "number": "C.7.22", + "number": "5.12", "spec": "CSS 2.1", - "text": "Section 6.4.4 Precedence of non-CSS presentational hints", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.6.4.4" + "text": "Pseudo-elements", + "url": "https://www.w3.org/TR/CSS21/selector.html#pseudo-element-selectors" } }, - "/changes#t.7.3": { + "/selector#pseudo-elements": { "current": { - "number": "C.7.23", + "number": "5.10", "spec": "CSS 2.1", - "text": "Section 7.3 Recognized media types", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.7.3" + "text": "Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/selector.html#pseudo-elements" }, "snapshot": { - "number": "C.7.23", + "number": "5.10", "spec": "CSS 2.1", - "text": "Section 7.3 Recognized media types", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.7.3" + "text": "Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS21/selector.html#pseudo-elements" } }, - "/changes#t.8.3.1": { + "/selector#q5.0": { "current": { - "number": "C.7.24", + "number": "5", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1" + "text": "Selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#q5.0" }, "snapshot": { - "number": "C.7.24", + "number": "5", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1" + "text": "Selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#q5.0" } }, - "/changes#t.8.3.1a": { + "/selector#selector-syntax": { "current": { - "number": "C.7.25", + "number": "5.2", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1a" + "text": "Selector syntax", + "url": "https://www.w3.org/TR/CSS21/selector.html#selector-syntax" }, "snapshot": { - "number": "C.7.25", + "number": "5.2", "spec": "CSS 2.1", - "text": "Section 8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.8.3.1a" + "text": "Selector syntax", + "url": "https://www.w3.org/TR/CSS21/selector.html#selector-syntax" } }, - "/changes#t.9.10": { + "/selector#type-selectors": { "current": { - "number": "C.7.46", + "number": "5.4", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10" + "text": "Type selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#type-selectors" }, "snapshot": { - "number": "C.7.46", + "number": "5.4", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10" + "text": "Type selectors", + "url": "https://www.w3.org/TR/CSS21/selector.html#type-selectors" } }, - "/changes#t.9.10a": { + "/selector#universal-selector": { "current": { - "number": "C.7.47", + "number": "5.3", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10a" + "text": "Universal selector", + "url": "https://www.w3.org/TR/CSS21/selector.html#universal-selector" }, "snapshot": { - "number": "C.7.47", + "number": "5.3", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10a" + "text": "Universal selector", + "url": "https://www.w3.org/TR/CSS21/selector.html#universal-selector" } }, - "/changes#t.9.10b": { + "/syndata#block": { "current": { - "number": "C.7.48", + "number": "4.1.6", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10b" + "text": "Blocks", + "url": "https://www.w3.org/TR/CSS21/syndata.html#block" }, "snapshot": { - "number": "C.7.48", + "number": "4.1.6", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.10b" + "text": "Blocks", + "url": "https://www.w3.org/TR/CSS21/syndata.html#block" } }, - "/changes#t.9.2.1": { + "/syndata#characters": { "current": { - "number": "C.7.26", + "number": "4.1.3", "spec": "CSS 2.1", - "text": "Section 9.2.1 Block-level elements and block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1" + "text": "Characters and case", + "url": "https://www.w3.org/TR/CSS21/syndata.html#characters" }, "snapshot": { - "number": "C.7.26", + "number": "4.1.3", "spec": "CSS 2.1", - "text": "Section 9.2.1 Block-level elements and block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1" + "text": "Characters and case", + "url": "https://www.w3.org/TR/CSS21/syndata.html#characters" } }, - "/changes#t.9.2.1.1": { + "/syndata#charset": { "current": { - "number": "C.7.27", + "number": "4.4", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1" + "text": "CSS style sheet representation", + "url": "https://www.w3.org/TR/CSS21/syndata.html#charset" }, "snapshot": { - "number": "C.7.27", + "number": "4.4", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1" + "text": "CSS style sheet representation", + "url": "https://www.w3.org/TR/CSS21/syndata.html#charset" } }, - "/changes#t.9.2.1.1a": { + "/syndata#color-units": { "current": { - "number": "C.7.28", + "number": "4.3.6", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1a" + "text": "Colors", + "url": "https://www.w3.org/TR/CSS21/syndata.html#color-units" }, "snapshot": { - "number": "C.7.28", + "number": "4.3.6", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1a" + "text": "Colors", + "url": "https://www.w3.org/TR/CSS21/syndata.html#color-units" } }, - "/changes#t.9.2.1.1b": { + "/syndata#comments": { "current": { - "number": "C.7.29", + "number": "4.1.9", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1b" + "text": "Comments", + "url": "https://www.w3.org/TR/CSS21/syndata.html#comments" }, "snapshot": { - "number": "C.7.29", + "number": "4.1.9", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1b" + "text": "Comments", + "url": "https://www.w3.org/TR/CSS21/syndata.html#comments" } }, - "/changes#t.9.2.1.1c": { + "/syndata#counter": { "current": { - "number": "C.7.30", + "number": "4.3.5", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1c" + "text": "Counters", + "url": "https://www.w3.org/TR/CSS21/syndata.html#counter" }, "snapshot": { - "number": "C.7.30", + "number": "4.3.5", "spec": "CSS 2.1", - "text": "Section 9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.1.1c" + "text": "Counters", + "url": "https://www.w3.org/TR/CSS21/syndata.html#counter" } }, - "/changes#t.9.2.2": { + "/syndata#declaration": { "current": { - "number": "C.7.31", + "number": "4.1.8", "spec": "CSS 2.1", - "text": "Section 9.2.2 Inline-level elements and inline boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.2" + "text": "Declarations and properties", + "url": "https://www.w3.org/TR/CSS21/syndata.html#declaration" }, "snapshot": { - "number": "C.7.31", + "number": "4.1.8", "spec": "CSS 2.1", - "text": "Section 9.2.2 Inline-level elements and inline boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.2" + "text": "Declarations and properties", + "url": "https://www.w3.org/TR/CSS21/syndata.html#declaration" } }, - "/changes#t.9.2.3a": { + "/syndata#escaping": { "current": { - "number": "C.7.32", + "number": "4.4.1", "spec": "CSS 2.1", - "text": "Section 9.2.3 Run-in boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.3a" + "text": "Referring to characters not represented in a character encoding", + "url": "https://www.w3.org/TR/CSS21/syndata.html#escaping" }, "snapshot": { - "number": "C.7.32", + "number": "4.4.1", "spec": "CSS 2.1", - "text": "Section 9.2.3 Run-in boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.3a" + "text": "Referring to characters not represented in a character encoding", + "url": "https://www.w3.org/TR/CSS21/syndata.html#escaping" } }, - "/changes#t.9.2.4": { + "/syndata#keywords": { "current": { - "number": "C.7.33", + "number": "4.1.2", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4" + "text": "Keywords", + "url": "https://www.w3.org/TR/CSS21/syndata.html#keywords" }, "snapshot": { - "number": "C.7.33", + "number": "4.1.2", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4" + "text": "Keywords", + "url": "https://www.w3.org/TR/CSS21/syndata.html#keywords" } }, - "/changes#t.9.2.4a": { + "/syndata#length-units": { "current": { - "number": "C.7.34", + "number": "4.3.2", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4a" + "text": "Lengths", + "url": "https://www.w3.org/TR/CSS21/syndata.html#length-units" }, "snapshot": { - "number": "C.7.34", + "number": "4.3.2", "spec": "CSS 2.1", - "text": "Section 9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.2.4a" + "text": "Lengths", + "url": "https://www.w3.org/TR/CSS21/syndata.html#length-units" } }, - "/changes#t.9.3": { + "/syndata#numbers": { "current": { - "number": "C.7.35", + "number": "4.3.1", "spec": "CSS 2.1", - "text": "Section 9.3 Positioning schemes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3" + "text": "Integers and real numbers", + "url": "https://www.w3.org/TR/CSS21/syndata.html#numbers" }, "snapshot": { - "number": "C.7.35", + "number": "4.3.1", "spec": "CSS 2.1", - "text": "Section 9.3 Positioning schemes", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3" + "text": "Integers and real numbers", + "url": "https://www.w3.org/TR/CSS21/syndata.html#numbers" } }, - "/changes#t.9.3.2": { + "/syndata#parsing-errors": { "current": { - "number": "C.7.37", + "number": "4.2", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3.2" + "text": "Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/syndata.html#parsing-errors" }, "snapshot": { - "number": "C.7.37", + "number": "4.2", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.3.2" + "text": "Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS21/syndata.html#parsing-errors" } }, - "/changes#t.9.4": { + "/syndata#percentage-units": { "current": { - "number": "C.7.36", + "number": "4.3.3", "spec": "CSS 2.1", - "text": "Section 9.4 Normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.4" + "text": "Percentages", + "url": "https://www.w3.org/TR/CSS21/syndata.html#percentage-units" }, "snapshot": { - "number": "C.7.36", + "number": "4.3.3", "spec": "CSS 2.1", - "text": "Section 9.4 Normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.4" + "text": "Percentages", + "url": "https://www.w3.org/TR/CSS21/syndata.html#percentage-units" } }, - "/changes#t.9.5": { + "/syndata#q4.0": { "current": { - "number": "C.7.38", + "number": "4", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5" + "text": "Syntax and basic data types", + "url": "https://www.w3.org/TR/CSS21/syndata.html#q4.0" }, "snapshot": { - "number": "C.7.38", + "number": "4", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5" + "text": "Syntax and basic data types", + "url": "https://www.w3.org/TR/CSS21/syndata.html#q4.0" } }, - "/changes#t.9.5.2": { + "/syndata#rule-sets": { "current": { - "number": "C.7.40", + "number": "4.1.7", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2" + "text": "Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS21/syndata.html#rule-sets" }, "snapshot": { - "number": "C.7.40", + "number": "4.1.7", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2" + "text": "Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS21/syndata.html#rule-sets" } }, - "/changes#t.9.5.2a": { + "/syndata#statements": { "current": { - "number": "C.7.41", + "number": "4.1.4", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2a" + "text": "Statements", + "url": "https://www.w3.org/TR/CSS21/syndata.html#statements" }, "snapshot": { - "number": "C.7.41", + "number": "4.1.4", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2a" + "text": "Statements", + "url": "https://www.w3.org/TR/CSS21/syndata.html#statements" } }, - "/changes#t.9.5.2b": { + "/syndata#strings": { "current": { - "number": "C.7.42", + "number": "4.3.7", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2b" + "text": "Strings", + "url": "https://www.w3.org/TR/CSS21/syndata.html#strings" }, "snapshot": { - "number": "C.7.42", + "number": "4.3.7", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2b" + "text": "Strings", + "url": "https://www.w3.org/TR/CSS21/syndata.html#strings" } }, - "/changes#t.9.5.2c": { + "/syndata#syntax": { "current": { - "number": "C.7.43", + "number": "4.1", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2c" + "text": "Syntax", + "url": "https://www.w3.org/TR/CSS21/syndata.html#syntax" }, "snapshot": { - "number": "C.7.43", + "number": "4.1", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2c" + "text": "Syntax", + "url": "https://www.w3.org/TR/CSS21/syndata.html#syntax" } }, - "/changes#t.9.5.2d": { + "/syndata#tokenization": { "current": { - "number": "C.8.51", + "number": "4.1.1", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2d" + "text": "Tokenization", + "url": "https://www.w3.org/TR/CSS21/syndata.html#tokenization" }, "snapshot": { - "number": "C.8.51", + "number": "4.1.1", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2d" + "text": "Tokenization", + "url": "https://www.w3.org/TR/CSS21/syndata.html#tokenization" } }, - "/changes#t.9.5.2e": { + "/syndata#unsupported-values": { "current": { - "number": "C.8.53", + "number": "4.3.8", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2e" + "text": "Unsupported Values", + "url": "https://www.w3.org/TR/CSS21/syndata.html#unsupported-values" }, "snapshot": { - "number": "C.8.53", + "number": "4.3.8", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats: the 'clear' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5.2e" + "text": "Unsupported Values", + "url": "https://www.w3.org/TR/CSS21/syndata.html#unsupported-values" } }, - "/changes#t.9.5a": { + "/syndata#uri": { "current": { - "number": "C.7.39", + "number": "4.3.4", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5a" + "text": "URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/syndata.html#uri" }, "snapshot": { - "number": "C.7.39", + "number": "4.3.4", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5a" + "text": "URLs and URIs", + "url": "https://www.w3.org/TR/CSS21/syndata.html#uri" } }, - "/changes#t.9.5b": { + "/syndata#values": { "current": { - "number": "C.8.54", + "number": "4.3", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5b" + "text": "Values", + "url": "https://www.w3.org/TR/CSS21/syndata.html#values" }, "snapshot": { - "number": "C.8.54", + "number": "4.3", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.5b" + "text": "Values", + "url": "https://www.w3.org/TR/CSS21/syndata.html#values" } }, - "/changes#t.9.9.1": { + "/syndata#vendor-keyword-history": { "current": { - "number": "C.7.45", + "number": "4.1.2.2", "spec": "CSS 2.1", - "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.9.1" + "text": "Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS21/syndata.html#vendor-keyword-history" }, "snapshot": { - "number": "C.7.45", + "number": "4.1.2.2", "spec": "CSS 2.1", - "text": "Section 9.9.1 Specifying the stack level: the 'z-index' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.9.9.1" + "text": "Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS21/syndata.html#vendor-keyword-history" } }, - "/changes#t.B.2": { + "/syndata#vendor-keywords": { "current": { - "number": "C.7.101", + "number": "4.1.2.1", "spec": "CSS 2.1", - "text": "Section B.2 Informative references", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.B.2" + "text": "Vendor-specific extensions", + "url": "https://www.w3.org/TR/CSS21/syndata.html#vendor-keywords" }, "snapshot": { - "number": "C.7.101", + "number": "4.1.2.1", "spec": "CSS 2.1", - "text": "Section B.2 Informative references", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.B.2" + "text": "Vendor-specific extensions", + "url": "https://www.w3.org/TR/CSS21/syndata.html#vendor-keywords" } }, - "/changes#t.D": { + "/tables#anonymous-boxes": { "current": { - "number": "C.7.102", + "number": "17.2.1", "spec": "CSS 2.1", - "text": "Section D. Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.D" + "text": "Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/tables.html#anonymous-boxes" }, "snapshot": { - "number": "C.7.102", + "number": "17.2.1", "spec": "CSS 2.1", - "text": "Section D. Default style sheet for HTML 4", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.D" + "text": "Anonymous table objects", + "url": "https://www.w3.org/TR/CSS21/tables.html#anonymous-boxes" } }, - "/changes#t.E.2": { + "/tables#auto-table-layout": { "current": { - "number": "C.7.103", + "number": "17.5.2.2", "spec": "CSS 2.1", - "text": "Section E.2 Painting order", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.E.2" + "text": "Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/tables.html#auto-table-layout" }, "snapshot": { - "number": "C.7.103", + "number": "17.5.2.2", "spec": "CSS 2.1", - "text": "Section E.2 Painting order", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.E.2" + "text": "Automatic table layout", + "url": "https://www.w3.org/TR/CSS21/tables.html#auto-table-layout" } }, - "/changes#t.G": { + "/tables#border-conflict-resolution": { "current": { - "number": "C.7.104", + "number": "17.6.2.1", "spec": "CSS 2.1", - "text": "Appendix G Grammar of CSS 2.1", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.G" + "text": "Border conflict resolution", + "url": "https://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution" }, "snapshot": { - "number": "C.7.104", + "number": "17.6.2.1", "spec": "CSS 2.1", - "text": "Appendix G Grammar of CSS 2.1", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.G" + "text": "Border conflict resolution", + "url": "https://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution" } }, - "/changes#t.G.2": { + "/tables#borders": { "current": { - "number": "C.8.52", + "number": "17.6", "spec": "CSS 2.1", - "text": "G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.G.2" + "text": "Borders", + "url": "https://www.w3.org/TR/CSS21/tables.html#borders" }, "snapshot": { - "number": "C.8.52", + "number": "17.6", "spec": "CSS 2.1", - "text": "G.2 Lexical scanner", - "url": "https://www.w3.org/TR/CSS21/changes.html#t.G.2" + "text": "Borders", + "url": "https://www.w3.org/TR/CSS21/tables.html#borders" } }, - "/changes#u.10.1": { + "/tables#caption-position": { "current": { - "number": "C.8.8", + "number": "17.4.1", "spec": "CSS 2.1", - "text": "10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.1" + "text": "Caption position and alignment", + "url": "https://www.w3.org/TR/CSS21/tables.html#caption-position" }, "snapshot": { - "number": "C.8.8", + "number": "17.4.1", "spec": "CSS 2.1", - "text": "10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.1" + "text": "Caption position and alignment", + "url": "https://www.w3.org/TR/CSS21/tables.html#caption-position" } }, - "/changes#u.10.3": { + "/tables#collapsing-borders": { "current": { - "number": "C.8.3", + "number": "17.6.2", "spec": "CSS 2.1", - "text": "10.3 Calculating widths and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3" + "text": "The collapsing border model", + "url": "https://www.w3.org/TR/CSS21/tables.html#collapsing-borders" }, "snapshot": { - "number": "C.8.3", + "number": "17.6.2", "spec": "CSS 2.1", - "text": "10.3 Calculating widths and margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3" + "text": "The collapsing border model", + "url": "https://www.w3.org/TR/CSS21/tables.html#collapsing-borders" } }, - "/changes#u.10.3.2": { + "/tables#column-alignment": { "current": { - "number": "C.8.7", + "number": "17.5.4", "spec": "CSS 2.1", - "text": "10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2" + "text": "Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/tables.html#column-alignment" }, "snapshot": { - "number": "C.8.7", + "number": "17.5.4", "spec": "CSS 2.1", - "text": "10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2" + "text": "Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS21/tables.html#column-alignment" } }, - "/changes#u.10.3.2a": { + "/tables#columns": { "current": { - "number": "C.8.50", + "number": "17.3", "spec": "CSS 2.1", - "text": "10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2a" + "text": "Columns", + "url": "https://www.w3.org/TR/CSS21/tables.html#columns" }, "snapshot": { - "number": "C.8.50", + "number": "17.3", "spec": "CSS 2.1", - "text": "10.3.2 Inline, replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.3.2a" + "text": "Columns", + "url": "https://www.w3.org/TR/CSS21/tables.html#columns" } }, - "/changes#u.10.4": { + "/tables#dynamic-effects": { "current": { - "number": "C.8.28", + "number": "17.5.5", "spec": "CSS 2.1", - "text": "10.4 Minimum and maximum widths: 'min-width' and 'max-width'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.4" + "text": "Dynamic row and column effects", + "url": "https://www.w3.org/TR/CSS21/tables.html#dynamic-effects" }, "snapshot": { - "number": "C.8.28", + "number": "17.5.5", "spec": "CSS 2.1", - "text": "10.4 Minimum and maximum widths: 'min-width' and 'max-width'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.4" + "text": "Dynamic row and column effects", + "url": "https://www.w3.org/TR/CSS21/tables.html#dynamic-effects" } }, - "/changes#u.10.6.1a": { + "/tables#empty-cells": { "current": { - "number": "C.8.13", + "number": "17.6.1.1", "spec": "CSS 2.1", - "text": "10.6.1 Inline, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.6.1a" + "text": "Borders and Backgrounds around empty cells: the 'empty-cells' property", + "url": "https://www.w3.org/TR/CSS21/tables.html#empty-cells" }, "snapshot": { - "number": "C.8.13", + "number": "17.6.1.1", "spec": "CSS 2.1", - "text": "10.6.1 Inline, non-replaced elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.6.1a" + "text": "Borders and Backgrounds around empty cells: the 'empty-cells' property", + "url": "https://www.w3.org/TR/CSS21/tables.html#empty-cells" } }, - "/changes#u.10.8": { + "/tables#fixed-table-layout": { "current": { - "number": "C.8.11", + "number": "17.5.2.1", "spec": "CSS 2.1", - "text": "10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8" + "text": "Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/tables.html#fixed-table-layout" }, "snapshot": { - "number": "C.8.11", + "number": "17.5.2.1", "spec": "CSS 2.1", - "text": "10.8 Line height calculations: the 'line-height' and 'vertical-align' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8" + "text": "Fixed table layout", + "url": "https://www.w3.org/TR/CSS21/tables.html#fixed-table-layout" } }, - "/changes#u.10.8.1": { + "/tables#height-layout": { "current": { - "number": "C.8.2", + "number": "17.5.3", "spec": "CSS 2.1", - "text": "10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1" + "text": "Table height algorithms", + "url": "https://www.w3.org/TR/CSS21/tables.html#height-layout" }, "snapshot": { - "number": "C.8.2", + "number": "17.5.3", "spec": "CSS 2.1", - "text": "10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1" + "text": "Table height algorithms", + "url": "https://www.w3.org/TR/CSS21/tables.html#height-layout" } }, - "/changes#u.10.8.1a": { + "/tables#model": { "current": { - "number": "C.8.12", + "number": "17.4", "spec": "CSS 2.1", - "text": "10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1a" + "text": "Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/tables.html#model" }, "snapshot": { - "number": "C.8.12", + "number": "17.4", "spec": "CSS 2.1", - "text": "10.8.1 Leading and half-leading", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.10.8.1a" + "text": "Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/tables.html#model" } }, - "/changes#u.11.1.1": { + "/tables#q17.0": { "current": { - "number": "C.8.39", + "number": "", "spec": "CSS 2.1", - "text": "11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.1" + "text": "17 Tables", + "url": "https://www.w3.org/TR/CSS21/tables.html#q17.0" }, "snapshot": { - "number": "C.8.39", + "number": "", "spec": "CSS 2.1", - "text": "11.1.1 Overflow: the 'overflow' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.1" + "text": "17 Tables", + "url": "https://www.w3.org/TR/CSS21/tables.html#q17.0" } }, - "/changes#u.11.1.2": { + "/tables#separated-borders": { "current": { - "number": "C.8.5", + "number": "17.6.1", "spec": "CSS 2.1", - "text": "11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2" + "text": "The separated borders model", + "url": "https://www.w3.org/TR/CSS21/tables.html#separated-borders" }, "snapshot": { - "number": "C.8.5", + "number": "17.6.1", "spec": "CSS 2.1", - "text": "11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2" + "text": "The separated borders model", + "url": "https://www.w3.org/TR/CSS21/tables.html#separated-borders" } }, - "/changes#u.11.1.2a": { + "/tables#table-border-styles": { "current": { - "number": "C.8.32", + "number": "17.6.3", "spec": "CSS 2.1", - "text": "11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2a" + "text": "Border styles", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-border-styles" }, "snapshot": { - "number": "C.8.32", + "number": "17.6.3", "spec": "CSS 2.1", - "text": "11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.11.1.2a" + "text": "Border styles", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-border-styles" } }, - "/changes#u.12.5.1": { + "/tables#table-display": { "current": { - "number": "C.8.18", + "number": "17.2", "spec": "CSS 2.1", - "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1" + "text": "The CSS table model", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-display" }, "snapshot": { - "number": "C.8.18", + "number": "17.2", "spec": "CSS 2.1", - "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1" + "text": "The CSS table model", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-display" } }, - "/changes#u.12.5.1a": { + "/tables#table-layers": { "current": { - "number": "C.8.22", + "number": "17.5.1", "spec": "CSS 2.1", - "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1a" + "text": "Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-layers" }, "snapshot": { - "number": "C.8.22", + "number": "17.5.1", "spec": "CSS 2.1", - "text": "12.5.1 Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.12.5.1a" + "text": "Table layers and transparency", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-layers" } }, - "/changes#u.13.2": { + "/tables#table-layout": { "current": { - "number": "C.8.33", + "number": "17.5", "spec": "CSS 2.1", - "text": "13.2 Page boxes: the @page rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2" + "text": "Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-layout" }, "snapshot": { - "number": "C.8.33", + "number": "17.5", "spec": "CSS 2.1", - "text": "13.2 Page boxes: the @page rule", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2" + "text": "Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS21/tables.html#table-layout" } }, - "/changes#u.13.2.2": { + "/tables#tables-intro": { "current": { - "number": "C.8.9", + "number": "17.1", "spec": "CSS 2.1", - "text": "13.2.2 Page selectors: selecting left, right, and first pages", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2.2" + "text": "Introduction to tables", + "url": "https://www.w3.org/TR/CSS21/tables.html#tables-intro" }, "snapshot": { - "number": "C.8.9", + "number": "17.1", "spec": "CSS 2.1", - "text": "13.2.2 Page selectors: selecting left, right, and first pages", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.13.2.2" + "text": "Introduction to tables", + "url": "https://www.w3.org/TR/CSS21/tables.html#tables-intro" } }, - "/changes#u.14.2.1": { + "/tables#width-layout": { "current": { - "number": "C.8.47", + "number": "17.5.2", "spec": "CSS 2.1", - "text": "14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.2.1" + "text": "Table width algorithms: the 'table-layout' property", + "url": "https://www.w3.org/TR/CSS21/tables.html#width-layout" }, "snapshot": { - "number": "C.8.47", + "number": "17.5.2", "spec": "CSS 2.1", - "text": "14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.2.1" + "text": "Table width algorithms: the 'table-layout' property", + "url": "https://www.w3.org/TR/CSS21/tables.html#width-layout" } }, - "/changes#u.14.3": { + "/text#alignment-prop": { "current": { - "number": "C.8.4", + "number": "16.2", "spec": "CSS 2.1", - "text": "14.3 Gamma correction", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.3" + "text": "Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/text.html#alignment-prop" }, "snapshot": { - "number": "C.8.4", + "number": "16.2", "spec": "CSS 2.1", - "text": "14.3 Gamma correction", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.14.3" + "text": "Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS21/text.html#alignment-prop" } }, - "/changes#u.16.2": { + "/text#caps-prop": { "current": { - "number": "C.8.41", + "number": "16.5", "spec": "CSS 2.1", - "text": "16.2 Alignment: the 'text-align' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.2" + "text": "Capitalization: the 'text-transform' property", + "url": "https://www.w3.org/TR/CSS21/text.html#caps-prop" }, "snapshot": { - "number": "C.8.41", + "number": "16.5", "spec": "CSS 2.1", - "text": "16.2 Alignment: the 'text-align' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.2" + "text": "Capitalization: the 'text-transform' property", + "url": "https://www.w3.org/TR/CSS21/text.html#caps-prop" } }, - "/changes#u.16.3.1": { + "/text#ctrlchars": { "current": { - "number": "C.8.26", + "number": "16.6.3", "spec": "CSS 2.1", - "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1" + "text": "Control and combining characters' details", + "url": "https://www.w3.org/TR/CSS21/text.html#ctrlchars" }, "snapshot": { - "number": "C.8.26", + "number": "16.6.3", "spec": "CSS 2.1", - "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1" + "text": "Control and combining characters' details", + "url": "https://www.w3.org/TR/CSS21/text.html#ctrlchars" } }, - "/changes#u.16.3.1a": { + "/text#decoration": { "current": { - "number": "C.8.27", + "number": "16.3", "spec": "CSS 2.1", - "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1a" + "text": "Decoration", + "url": "https://www.w3.org/TR/CSS21/text.html#decoration" }, "snapshot": { - "number": "C.8.27", + "number": "16.3", "spec": "CSS 2.1", - "text": "16.3.1 Underlining, overlining, striking, and blinking: the 'text-decoration' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.3.1a" + "text": "Decoration", + "url": "https://www.w3.org/TR/CSS21/text.html#decoration" } }, - "/changes#u.16.6": { + "/text#egbidiwscollapse": { "current": { - "number": "C.8.17", + "number": "16.6.2", "spec": "CSS 2.1", - "text": "16.6 White space: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.6" + "text": "Example of bidirectionality with white space collapsing", + "url": "https://www.w3.org/TR/CSS21/text.html#egbidiwscollapse" }, "snapshot": { - "number": "C.8.17", + "number": "16.6.2", "spec": "CSS 2.1", - "text": "16.6 White space: the 'white-space' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.16.6" + "text": "Example of bidirectionality with white space collapsing", + "url": "https://www.w3.org/TR/CSS21/text.html#egbidiwscollapse" } }, - "/changes#u.3.1": { + "/text#indentation-prop": { "current": { - "number": "C.8.36", + "number": "16.1", "spec": "CSS 2.1", - "text": "3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.3.1" + "text": "Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS21/text.html#indentation-prop" }, "snapshot": { - "number": "C.8.36", + "number": "16.1", "spec": "CSS 2.1", - "text": "3.1 Definitions", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.3.1" + "text": "Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS21/text.html#indentation-prop" } }, - "/changes#u.4.1.1": { + "/text#lining-striking-props": { "current": { - "number": "C.8.34", + "number": "16.3.1", "spec": "CSS 2.1", - "text": "4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.1" + "text": "Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/text.html#lining-striking-props" }, "snapshot": { - "number": "C.8.34", + "number": "16.3.1", "spec": "CSS 2.1", - "text": "4.1.1 Tokenization", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.1" + "text": "Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS21/text.html#lining-striking-props" } }, - "/changes#u.4.1.9": { + "/text#q16.0": { "current": { - "number": "C.8.21", + "number": "", "spec": "CSS 2.1", - "text": "4.1.9 Comments", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.9" + "text": "16 Text", + "url": "https://www.w3.org/TR/CSS21/text.html#q16.0" }, "snapshot": { - "number": "C.8.21", + "number": "", "spec": "CSS 2.1", - "text": "4.1.9 Comments", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.1.9" + "text": "16 Text", + "url": "https://www.w3.org/TR/CSS21/text.html#q16.0" } }, - "/changes#u.4.2": { + "/text#spacing-props": { "current": { - "number": "C.8.35", + "number": "16.4", "spec": "CSS 2.1", - "text": "4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.2" + "text": "Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", + "url": "https://www.w3.org/TR/CSS21/text.html#spacing-props" }, "snapshot": { - "number": "C.8.35", + "number": "16.4", "spec": "CSS 2.1", - "text": "4.2 Rules for handling parsing errors", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.2" + "text": "Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", + "url": "https://www.w3.org/TR/CSS21/text.html#spacing-props" } }, - "/changes#u.4.3.4": { + "/text#white-space-model": { "current": { - "number": "C.8.37", + "number": "16.6.1", "spec": "CSS 2.1", - "text": "4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.3.4" + "text": "The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/text.html#white-space-model" }, "snapshot": { - "number": "C.8.37", + "number": "16.6.1", "spec": "CSS 2.1", - "text": "4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.4.3.4" + "text": "The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS21/text.html#white-space-model" } }, - "/changes#u.5.12": { + "/text#white-space-prop": { "current": { - "number": "C.8.44", + "number": "16.6", "spec": "CSS 2.1", - "text": "5.12 Pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12" + "text": "White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/text.html#white-space-prop" }, "snapshot": { - "number": "C.8.44", + "number": "16.6", "spec": "CSS 2.1", - "text": "5.12 Pseudo-elements", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12" + "text": "White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS21/text.html#white-space-prop" } }, - "/changes#u.5.12.1": { + "/ui#cursor-props": { "current": { - "number": "C.8.16", + "number": "18.1", "spec": "CSS 2.1", - "text": "5.12.1 The :first-line pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12.1" + "text": "Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/ui.html#cursor-props" }, "snapshot": { - "number": "C.8.16", + "number": "18.1", "spec": "CSS 2.1", - "text": "5.12.1 The :first-line pseudo-element", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.5.12.1" + "text": "Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS21/ui.html#cursor-props" } }, - "/changes#u.6.1.2": { + "/ui#dynamic-outlines": { "current": { - "number": "C.8.49", + "number": "18.4", "spec": "CSS 2.1", - "text": "6.1.2 Computed values", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.6.1.2" + "text": "Dynamic outlines: the 'outline' property", + "url": "https://www.w3.org/TR/CSS21/ui.html#dynamic-outlines" }, "snapshot": { - "number": "C.8.49", + "number": "18.4", "spec": "CSS 2.1", - "text": "6.1.2 Computed values", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.6.1.2" + "text": "Dynamic outlines: the 'outline' property", + "url": "https://www.w3.org/TR/CSS21/ui.html#dynamic-outlines" } }, - "/changes#u.8.3.1": { + "/ui#magnification": { "current": { - "number": "C.8.1", + "number": "18.5", "spec": "CSS 2.1", - "text": "8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1" + "text": "Magnification", + "url": "https://www.w3.org/TR/CSS21/ui.html#magnification" }, "snapshot": { - "number": "C.8.1", + "number": "18.5", "spec": "CSS 2.1", - "text": "8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1" + "text": "Magnification", + "url": "https://www.w3.org/TR/CSS21/ui.html#magnification" } }, - "/changes#u.8.3.1a": { + "/ui#outline-focus": { "current": { - "number": "C.8.10", + "number": "18.4.1", "spec": "CSS 2.1", - "text": "8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1a" + "text": "Outlines and the focus", + "url": "https://www.w3.org/TR/CSS21/ui.html#outline-focus" }, "snapshot": { - "number": "C.8.10", + "number": "18.4.1", "spec": "CSS 2.1", - "text": "8.3.1 Collapsing margins", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.8.3.1a" + "text": "Outlines and the focus", + "url": "https://www.w3.org/TR/CSS21/ui.html#outline-focus" } }, - "/changes#u.9.10": { + "/ui#q18.0": { "current": { - "number": "C.8.25", + "number": "", "spec": "CSS 2.1", - "text": "9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.10" + "text": "18 User interface", + "url": "https://www.w3.org/TR/CSS21/ui.html#q18.0" }, "snapshot": { - "number": "C.8.25", + "number": "", "spec": "CSS 2.1", - "text": "9.10 Text direction: the 'direction' and 'unicode-bidi' properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.10" + "text": "18 User interface", + "url": "https://www.w3.org/TR/CSS21/ui.html#q18.0" } }, - "/changes#u.9.2.1.1": { + "/ui#system-colors": { "current": { - "number": "C.8.15", + "number": "18.2", "spec": "CSS 2.1", - "text": "9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1" + "text": "System Colors", + "url": "https://www.w3.org/TR/CSS21/ui.html#system-colors" }, "snapshot": { - "number": "C.8.15", + "number": "18.2", "spec": "CSS 2.1", - "text": "9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1" + "text": "System Colors", + "url": "https://www.w3.org/TR/CSS21/ui.html#system-colors" } }, - "/changes#u.9.2.1.1a": { + "/ui#system-fonts": { "current": { - "number": "C.8.30", + "number": "18.3", "spec": "CSS 2.1", - "text": "9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1a" + "text": "User preferences for fonts", + "url": "https://www.w3.org/TR/CSS21/ui.html#system-fonts" }, "snapshot": { - "number": "C.8.30", + "number": "18.3", "spec": "CSS 2.1", - "text": "9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1a" + "text": "User preferences for fonts", + "url": "https://www.w3.org/TR/CSS21/ui.html#system-fonts" } }, - "/changes#u.9.2.1.1b": { + "/visudet#Computing_heights_and_margins": { "current": { - "number": "C.8.31", + "number": "10.6", "spec": "CSS 2.1", - "text": "17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1b" + "text": "Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS21/visudet.html#Computing_heights_and_margins" }, "snapshot": { - "number": "C.8.31", + "number": "10.6", "spec": "CSS 2.1", - "text": "17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1b" + "text": "Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS21/visudet.html#Computing_heights_and_margins" } }, - "/changes#u.9.2.1.1c": { + "/visudet#Computing_widths_and_margins": { "current": { - "number": "C.8.40", + "number": "10.3", "spec": "CSS 2.1", - "text": "9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1c" + "text": "Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/visudet.html#Computing_widths_and_margins" }, "snapshot": { - "number": "C.8.40", + "number": "10.3", "spec": "CSS 2.1", - "text": "9.2.1.1 Anonymous block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.1.1c" + "text": "Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS21/visudet.html#Computing_widths_and_margins" } }, - "/changes#u.9.2.4": { + "/visudet#abs-non-replaced-height": { "current": { - "number": "C.8.48", + "number": "10.6.4", "spec": "CSS 2.1", - "text": "9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.4" + "text": "Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-height" }, "snapshot": { - "number": "C.8.48", + "number": "10.6.4", "spec": "CSS 2.1", - "text": "9.2.4 The 'display' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.2.4" + "text": "Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-height" } }, - "/changes#u.9.3": { + "/visudet#abs-non-replaced-width": { "current": { - "number": "C.8.24", + "number": "10.3.7", "spec": "CSS 2.1", - "text": "9.3 Positioning schemes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3" + "text": "Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-width" }, "snapshot": { - "number": "C.8.24", + "number": "10.3.7", "spec": "CSS 2.1", - "text": "9.3 Positioning schemes", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3" + "text": "Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-width" } }, - "/changes#u.9.3.2": { + "/visudet#abs-replaced-height": { "current": { - "number": "C.8.29", + "number": "10.6.5", "spec": "CSS 2.1", - "text": "9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3.2" + "text": "Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-replaced-height" }, "snapshot": { - "number": "C.8.29", + "number": "10.6.5", "spec": "CSS 2.1", - "text": "9.3.2 Box offsets: 'top', 'right', 'bottom', 'left'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.3.2" + "text": "Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-replaced-height" } }, - "/changes#u.9.4.2": { + "/visudet#abs-replaced-width": { "current": { - "number": "C.8.6", + "number": "10.3.8", "spec": "CSS 2.1", - "text": "9.4.2 Inline formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2" + "text": "Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-replaced-width" }, "snapshot": { - "number": "C.8.6", + "number": "10.3.8", "spec": "CSS 2.1", - "text": "9.4.2 Inline formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2" + "text": "Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#abs-replaced-width" } }, - "/changes#u.9.4.2a": { + "/visudet#block-replaced-width": { "current": { - "number": "C.8.20", + "number": "10.3.4", "spec": "CSS 2.1", - "text": "9.4.2 Inline formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2a" + "text": "Block-level, replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" }, "snapshot": { - "number": "C.8.20", + "number": "10.3.4", "spec": "CSS 2.1", - "text": "9.4.2 Inline formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2a" + "text": "Block-level, replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" } }, - "/changes#u.9.4.2b": { + "/visudet#block-root-margin": { "current": { - "number": "C.8.43", + "number": "10.6.6", "spec": "CSS 2.1", - "text": "9.4.2 Inline formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2b" + "text": "Complicated cases", + "url": "https://www.w3.org/TR/CSS21/visudet.html#block-root-margin" }, "snapshot": { - "number": "C.8.43", + "number": "10.6.6", "spec": "CSS 2.1", - "text": "9.4.2 Inline formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.4.2b" + "text": "Complicated cases", + "url": "https://www.w3.org/TR/CSS21/visudet.html#block-root-margin" } }, - "/changes#u.9.5": { + "/visudet#blockwidth": { "current": { - "number": "C.8.38", + "number": "10.3.3", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5" + "text": "Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#blockwidth" }, "snapshot": { - "number": "C.8.38", + "number": "10.3.3", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5" + "text": "Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#blockwidth" } }, - "/changes#u.9.5.1": { + "/visudet#containing-block-details": { "current": { - "number": "C.8.14", + "number": "10.1", "spec": "CSS 2.1", - "text": "9.5.1 Positioning the float: the 'float' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1" + "text": "Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/visudet.html#containing-block-details" }, "snapshot": { - "number": "C.8.14", + "number": "10.1", "spec": "CSS 2.1", - "text": "9.5.1 Positioning the float: the 'float' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1" + "text": "Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS21/visudet.html#containing-block-details" } }, - "/changes#u.9.5.1a": { + "/visudet#float-replaced-width": { "current": { - "number": "C.8.23", + "number": "10.3.6", "spec": "CSS 2.1", - "text": "9.5.1 Positioning the float: the 'float' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1a" + "text": "Floating, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#float-replaced-width" }, "snapshot": { - "number": "C.8.23", + "number": "10.3.6", "spec": "CSS 2.1", - "text": "9.5.1 Positioning the float: the 'float' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5.1a" + "text": "Floating, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#float-replaced-width" } }, - "/changes#u.9.5a": { + "/visudet#float-width": { "current": { - "number": "C.8.42", + "number": "10.3.5", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5a" + "text": "Floating, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#float-width" }, "snapshot": { - "number": "C.8.42", + "number": "10.3.5", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5a" + "text": "Floating, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#float-width" } }, - "/changes#u.9.5b": { + "/visudet#inline-non-replaced": { "current": { - "number": "C.8.45", + "number": "10.6.1", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5b" + "text": "Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-non-replaced" }, "snapshot": { - "number": "C.8.45", + "number": "10.6.1", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5b" + "text": "Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-non-replaced" } }, - "/changes#u.9.5c": { + "/visudet#inline-replaced-height": { "current": { - "number": "C.8.46", + "number": "10.6.2", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5c" + "text": "Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" }, "snapshot": { - "number": "C.8.46", + "number": "10.6.2", "spec": "CSS 2.1", - "text": "9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.5c" + "text": "Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" } }, - "/changes#u.9.7": { + "/visudet#inline-replaced-width": { "current": { - "number": "C.8.19", + "number": "10.3.2", "spec": "CSS 2.1", - "text": "9.7 Relationships between 'display', 'position', and 'float'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.7" + "text": "Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" }, "snapshot": { - "number": "C.8.19", + "number": "10.3.2", "spec": "CSS 2.1", - "text": "9.7 Relationships between 'display', 'position', and 'float'", - "url": "https://www.w3.org/TR/CSS21/changes.html#u.9.7" + "text": "Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" } }, - "/changes#x-applies-table": { + "/visudet#inline-width": { "current": { - "number": "C.3.2", + "number": "10.3.1", "spec": "CSS 2.1", - "text": "Applies to", - "url": "https://www.w3.org/TR/CSS21/changes.html#x-applies-table" + "text": "Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-width" }, "snapshot": { - "number": "C.3.2", + "number": "10.3.1", "spec": "CSS 2.1", - "text": "Applies to", - "url": "https://www.w3.org/TR/CSS21/changes.html#x-applies-table" + "text": "Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inline-width" } }, - "/changes#x-shorthand-inherit": { + "/visudet#inlineblock-replaced-width": { "current": { - "number": "C.3.1", + "number": "10.3.10", "spec": "CSS 2.1", - "text": "Shorthand properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#x-shorthand-inherit" + "text": "'Inline-block', replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" }, "snapshot": { - "number": "C.3.1", + "number": "10.3.10", "spec": "CSS 2.1", - "text": "Shorthand properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#x-shorthand-inherit" + "text": "'Inline-block', replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" } }, - "/changes#x10.1": { + "/visudet#inlineblock-width": { "current": { - "number": "C.3.29", + "number": "10.3.9", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.1" + "text": "'Inline-block', non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" }, "snapshot": { - "number": "C.3.29", + "number": "10.3.9", "spec": "CSS 2.1", - "text": "Section 10.1 Definition of \"containing block\"", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.1" + "text": "'Inline-block', non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" } }, - "/changes#x10.3.3": { + "/visudet#leading": { "current": { - "number": "C.3.30", + "number": "10.8.1", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.3.3" + "text": "Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/visudet.html#leading" }, "snapshot": { - "number": "C.3.30", + "number": "10.8.1", "spec": "CSS 2.1", - "text": "Section 10.3.3 Block-level, non-replaced elements in normal flow", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.3.3" + "text": "Leading and half-leading", + "url": "https://www.w3.org/TR/CSS21/visudet.html#leading" } }, - "/changes#x10.4": { + "/visudet#line-height": { "current": { - "number": "C.3.31", + "number": "10.8", "spec": "CSS 2.1", - "text": "Section 10.4 Minimum and maximum widths", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.4" + "text": "Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/visudet.html#line-height" }, "snapshot": { - "number": "C.3.31", + "number": "10.8", "spec": "CSS 2.1", - "text": "Section 10.4 Minimum and maximum widths", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.4" + "text": "Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS21/visudet.html#line-height" } }, - "/changes#x10.6.3": { + "/visudet#min-max-heights": { "current": { - "number": "C.3.32", + "number": "10.7", "spec": "CSS 2.1", - "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.6.3" + "text": "Minimum and maximum heights: 'min-height' and 'max-height'", + "url": "https://www.w3.org/TR/CSS21/visudet.html#min-max-heights" }, "snapshot": { - "number": "C.3.32", + "number": "10.7", "spec": "CSS 2.1", - "text": "Section 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.6.3" + "text": "Minimum and maximum heights: 'min-height' and 'max-height'", + "url": "https://www.w3.org/TR/CSS21/visudet.html#min-max-heights" } }, - "/changes#x10.7": { + "/visudet#min-max-widths": { "current": { - "number": "C.3.33", + "number": "10.4", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.7" + "text": "Minimum and maximum widths: 'min-width' and 'max-width'", + "url": "https://www.w3.org/TR/CSS21/visudet.html#min-max-widths" }, "snapshot": { - "number": "C.3.33", + "number": "10.4", "spec": "CSS 2.1", - "text": "Section 10.7 Minimum and maximum heights", - "url": "https://www.w3.org/TR/CSS21/changes.html#x10.7" + "text": "Minimum and maximum widths: 'min-width' and 'max-width'", + "url": "https://www.w3.org/TR/CSS21/visudet.html#min-max-widths" } }, - "/changes#x11.1.1": { + "/visudet#normal-block": { "current": { - "number": "C.3.34", + "number": "10.6.3", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow", - "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.1" + "text": "Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/visudet.html#normal-block" }, "snapshot": { - "number": "C.3.34", + "number": "10.6.3", "spec": "CSS 2.1", - "text": "Section 11.1.1 Overflow", - "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.1" + "text": "Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS21/visudet.html#normal-block" } }, - "/changes#x11.1.2": { + "/visudet#q10.0": { "current": { - "number": "C.3.35", + "number": "", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.2" + "text": "10 Visual formatting model details", + "url": "https://www.w3.org/TR/CSS21/visudet.html#q10.0" }, "snapshot": { - "number": "C.3.35", + "number": "", "spec": "CSS 2.1", - "text": "Section 11.1.2 Clipping: the 'clip' property", - "url": "https://www.w3.org/TR/CSS21/changes.html#x11.1.2" + "text": "10 Visual formatting model details", + "url": "https://www.w3.org/TR/CSS21/visudet.html#q10.0" } }, - "/changes#x11.2": { + "/visudet#root-height": { "current": { - "number": "C.3.36", + "number": "10.6.7", "spec": "CSS 2.1", - "text": "Section 11.2 Visibility", - "url": "https://www.w3.org/TR/CSS21/changes.html#x11.2" + "text": "'Auto' heights for block formatting context roots", + "url": "https://www.w3.org/TR/CSS21/visudet.html#root-height" }, "snapshot": { - "number": "C.3.36", + "number": "10.6.7", "spec": "CSS 2.1", - "text": "Section 11.2 Visibility", - "url": "https://www.w3.org/TR/CSS21/changes.html#x11.2" + "text": "'Auto' heights for block formatting context roots", + "url": "https://www.w3.org/TR/CSS21/visudet.html#root-height" } }, - "/changes#x12.4.2": { + "/visudet#the-height-property": { "current": { - "number": "C.3.37", + "number": "10.5", "spec": "CSS 2.1", - "text": "Section 12.4.2 Counter styles", - "url": "https://www.w3.org/TR/CSS21/changes.html#x12.4.2" + "text": "Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/visudet.html#the-height-property" }, "snapshot": { - "number": "C.3.37", + "number": "10.5", "spec": "CSS 2.1", - "text": "Section 12.4.2 Counter styles", - "url": "https://www.w3.org/TR/CSS21/changes.html#x12.4.2" + "text": "Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS21/visudet.html#the-height-property" } }, - "/changes#x12.6.2": { + "/visudet#the-width-property": { "current": { - "number": "C.3.38", + "number": "10.2", "spec": "CSS 2.1", - "text": "Section 12.6.2 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#x12.6.2" + "text": "Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/visudet.html#the-width-property" }, "snapshot": { - "number": "C.3.38", + "number": "10.2", "spec": "CSS 2.1", - "text": "Section 12.6.2 Lists", - "url": "https://www.w3.org/TR/CSS21/changes.html#x12.6.2" + "text": "Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS21/visudet.html#the-width-property" } }, - "/changes#x14.2": { + "/visufx#clipping": { "current": { - "number": "C.3.39", + "number": "11.1.2", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2" + "text": "Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/visufx.html#clipping" }, "snapshot": { - "number": "C.3.39", + "number": "11.1.2", "spec": "CSS 2.1", - "text": "Section 14.2 The background", - "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2" + "text": "Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS21/visufx.html#clipping" } }, - "/changes#x14.2.1": { + "/visufx#overflow": { "current": { - "number": "C.3.40", + "number": "11.1.1", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2.1" + "text": "Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/visufx.html#overflow" }, "snapshot": { - "number": "C.3.40", + "number": "11.1.1", "spec": "CSS 2.1", - "text": "Section 14.2.1 Background properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#x14.2.1" + "text": "Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS21/visufx.html#overflow" } }, - "/changes#x15.2": { + "/visufx#overflow-clipping": { "current": { - "number": "C.3.41", + "number": "11.1", "spec": "CSS 2.1", - "text": "Section 15.2 Font matching algorithm", - "url": "https://www.w3.org/TR/CSS21/changes.html#x15.2" + "text": "Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/visufx.html#overflow-clipping" }, "snapshot": { - "number": "C.3.41", + "number": "11.1", "spec": "CSS 2.1", - "text": "Section 15.2 Font matching algorithm", - "url": "https://www.w3.org/TR/CSS21/changes.html#x15.2" + "text": "Overflow and clipping", + "url": "https://www.w3.org/TR/CSS21/visufx.html#overflow-clipping" } }, - "/changes#x15.7": { + "/visufx#q11.0": { "current": { - "number": "C.3.42", + "number": "", "spec": "CSS 2.1", - "text": "Section 15.7 Font size", - "url": "https://www.w3.org/TR/CSS21/changes.html#x15.7" + "text": "11 Visual effects", + "url": "https://www.w3.org/TR/CSS21/visufx.html#q11.0" }, "snapshot": { - "number": "C.3.42", + "number": "", "spec": "CSS 2.1", - "text": "Section 15.7 Font size", - "url": "https://www.w3.org/TR/CSS21/changes.html#x15.7" + "text": "11 Visual effects", + "url": "https://www.w3.org/TR/CSS21/visufx.html#q11.0" } }, - "/changes#x16.1": { + "/visufx#visibility": { "current": { - "number": "C.3.43", + "number": "11.2", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation", - "url": "https://www.w3.org/TR/CSS21/changes.html#x16.1" + "text": "Visibility: the 'visibility' property", + "url": "https://www.w3.org/TR/CSS21/visufx.html#visibility" }, "snapshot": { - "number": "C.3.43", + "number": "11.2", "spec": "CSS 2.1", - "text": "Section 16.1 Indentation", - "url": "https://www.w3.org/TR/CSS21/changes.html#x16.1" + "text": "Visibility: the 'visibility' property", + "url": "https://www.w3.org/TR/CSS21/visufx.html#visibility" } }, - "/changes#x16.2": { + "/visuren#absolute-positioning": { "current": { - "number": "C.3.44", + "number": "9.6", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#x16.2" + "text": "Absolute positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#absolute-positioning" }, "snapshot": { - "number": "C.3.44", + "number": "9.6", "spec": "CSS 2.1", - "text": "Section 16.2 Alignment", - "url": "https://www.w3.org/TR/CSS21/changes.html#x16.2" + "text": "Absolute positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#absolute-positioning" } }, - "/changes#x17.2": { + "/visuren#anonymous": { "current": { - "number": "C.3.45", + "number": "9.2.2.1", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2" + "text": "Anonymous inline boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#anonymous" }, "snapshot": { - "number": "C.3.45", + "number": "9.2.2.1", "spec": "CSS 2.1", - "text": "Section 17.2 The CSS table model", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2" + "text": "Anonymous inline boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#anonymous" } }, - "/changes#x17.2.1": { + "/visuren#anonymous-block-level": { "current": { - "number": "C.3.46", + "number": "9.2.1.1", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2.1" + "text": "Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" }, "snapshot": { - "number": "C.3.46", + "number": "9.2.1.1", "spec": "CSS 2.1", - "text": "Section 17.2.1 Anonymous table objects", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.2.1" + "text": "Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" } }, - "/changes#x17.4": { + "/visuren#block-boxes": { "current": { - "number": "C.3.47", + "number": "9.2.1", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.4" + "text": "Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#block-boxes" }, "snapshot": { - "number": "C.3.47", + "number": "9.2.1", "spec": "CSS 2.1", - "text": "Section 17.4 Tables in the visual formatting model", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.4" + "text": "Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#block-boxes" } }, - "/changes#x17.5": { + "/visuren#block-formatting": { "current": { - "number": "C.3.48", + "number": "9.4.1", "spec": "CSS 2.1", - "text": "Section 17.5 Visual layout of table contents", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5" + "text": "Block formatting contexts", + "url": "https://www.w3.org/TR/CSS21/visuren.html#block-formatting" }, "snapshot": { - "number": "C.3.48", + "number": "9.4.1", "spec": "CSS 2.1", - "text": "Section 17.5 Visual layout of table contents", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5" + "text": "Block formatting contexts", + "url": "https://www.w3.org/TR/CSS21/visuren.html#block-formatting" } }, - "/changes#x17.5.1": { + "/visuren#box-gen": { "current": { - "number": "C.3.49", + "number": "9.2", "spec": "CSS 2.1", - "text": "Section 17.5.1 Table layers and transparency", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5.1" + "text": "Controlling box generation", + "url": "https://www.w3.org/TR/CSS21/visuren.html#box-gen" }, "snapshot": { - "number": "C.3.49", + "number": "9.2", "spec": "CSS 2.1", - "text": "Section 17.5.1 Table layers and transparency", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.5.1" + "text": "Controlling box generation", + "url": "https://www.w3.org/TR/CSS21/visuren.html#box-gen" } }, - "/changes#x17.6.1": { + "/visuren#choose-position": { "current": { - "number": "C.3.50", + "number": "9.3.1", "spec": "CSS 2.1", - "text": "Section 17.6.1 The separated borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.6.1" + "text": "Choosing a positioning scheme: 'position' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#choose-position" }, "snapshot": { - "number": "C.3.50", + "number": "9.3.1", "spec": "CSS 2.1", - "text": "Section 17.6.1 The separated borders model", - "url": "https://www.w3.org/TR/CSS21/changes.html#x17.6.1" + "text": "Choosing a positioning scheme: 'position' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#choose-position" } }, - "/changes#x18.2": { + "/visuren#comp-abspos": { "current": { - "number": "C.3.51", + "number": "9.8.4", "spec": "CSS 2.1", - "text": "Section 18.2 System Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#x18.2" + "text": "Absolute positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-abspos" }, "snapshot": { - "number": "C.3.51", + "number": "9.8.4", "spec": "CSS 2.1", - "text": "Section 18.2 System Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#x18.2" + "text": "Absolute positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-abspos" } }, - "/changes#x4.1.1": { + "/visuren#comp-float": { "current": { - "number": "C.3.3", + "number": "9.8.3", "spec": "CSS 2.1", - "text": "Section 4.1.1 (and G2)", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.1" + "text": "Floating a box", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-float" }, "snapshot": { - "number": "C.3.3", + "number": "9.8.3", "spec": "CSS 2.1", - "text": "Section 4.1.1 (and G2)", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.1" + "text": "Floating a box", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-float" } }, - "/changes#x4.1.3": { + "/visuren#comp-normal-flow": { "current": { - "number": "C.3.4", + "number": "9.8.1", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.3" + "text": "Normal flow", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-normal-flow" }, "snapshot": { - "number": "C.3.4", + "number": "9.8.1", "spec": "CSS 2.1", - "text": "Section 4.1.3 Characters and case", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.1.3" + "text": "Normal flow", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-normal-flow" } }, - "/changes#x4.3": { + "/visuren#comp-relpos": { "current": { - "number": "C.3.5", + "number": "9.8.2", "spec": "CSS 2.1", - "text": "Section 4.3 (Double sign problem)", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3" + "text": "Relative positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-relpos" }, "snapshot": { - "number": "C.3.5", + "number": "9.8.2", "spec": "CSS 2.1", - "text": "Section 4.3 (Double sign problem)", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3" + "text": "Relative positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comp-relpos" } }, - "/changes#x4.3.2": { + "/visuren#comparison": { "current": { - "number": "C.3.6", + "number": "9.8", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.2" + "text": "Comparison of normal flow, floats, and absolute positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comparison" }, "snapshot": { - "number": "C.3.6", + "number": "9.8", "spec": "CSS 2.1", - "text": "Section 4.3.2 Lengths", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.2" + "text": "Comparison of normal flow, floats, and absolute positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#comparison" } }, - "/changes#x4.3.3": { + "/visuren#direction": { "current": { - "number": "C.3.7", + "number": "9.10", "spec": "CSS 2.1", - "text": "Section 4.3.3 Percentages", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.3" + "text": "Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/visuren.html#direction" }, "snapshot": { - "number": "C.3.7", + "number": "9.10", "spec": "CSS 2.1", - "text": "Section 4.3.3 Percentages", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.3" + "text": "Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS21/visuren.html#direction" } }, - "/changes#x4.3.4": { + "/visuren#dis-pos-flo": { "current": { - "number": "C.3.8", + "number": "9.7", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.4" + "text": "Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" }, "snapshot": { - "number": "C.3.8", + "number": "9.7", "spec": "CSS 2.1", - "text": "Section 4.3.4 URLs and URIs", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.4" + "text": "Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" } }, - "/changes#x4.3.5": { + "/visuren#display-prop": { "current": { - "number": "C.3.9", + "number": "9.2.4", "spec": "CSS 2.1", - "text": "Section 4.3.5 Counters", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.5" + "text": "The 'display' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#display-prop" }, "snapshot": { - "number": "C.3.9", + "number": "9.2.4", "spec": "CSS 2.1", - "text": "Section 4.3.5 Counters", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.5" + "text": "The 'display' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#display-prop" } }, - "/changes#x4.3.6": { + "/visuren#fixed-positioning": { "current": { - "number": "C.3.10", + "number": "9.6.1", "spec": "CSS 2.1", - "text": "Section 4.3.6 Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.6" + "text": "Fixed positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#fixed-positioning" }, "snapshot": { - "number": "C.3.10", + "number": "9.6.1", "spec": "CSS 2.1", - "text": "Section 4.3.6 Colors", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.6" + "text": "Fixed positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#fixed-positioning" } }, - "/changes#x4.3.7": { + "/visuren#float-position": { "current": { - "number": "C.3.11", + "number": "9.5.1", "spec": "CSS 2.1", - "text": "Section 4.3.7 Strings", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.7" + "text": "Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#float-position" }, "snapshot": { - "number": "C.3.11", + "number": "9.5.1", "spec": "CSS 2.1", - "text": "Section 4.3.7 Strings", - "url": "https://www.w3.org/TR/CSS21/changes.html#x4.3.7" + "text": "Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#float-position" } }, - "/changes#x5.10": { + "/visuren#floats": { "current": { - "number": "C.3.12", + "number": "9.5", "spec": "CSS 2.1", - "text": "Section 5.10 Pseudo-elements and pseudo-classes", - "url": "https://www.w3.org/TR/CSS21/changes.html#x5.10" + "text": "Floats", + "url": "https://www.w3.org/TR/CSS21/visuren.html#floats" }, "snapshot": { - "number": "C.3.12", + "number": "9.5", "spec": "CSS 2.1", - "text": "Section 5.10 Pseudo-elements and pseudo-classes", - "url": "https://www.w3.org/TR/CSS21/changes.html#x5.10" + "text": "Floats", + "url": "https://www.w3.org/TR/CSS21/visuren.html#floats" } }, - "/changes#x6.4": { + "/visuren#flow-control": { "current": { - "number": "C.3.13", + "number": "9.5.2", "spec": "CSS 2.1", - "text": "Section 6.4 The cascade", - "url": "https://www.w3.org/TR/CSS21/changes.html#x6.4" + "text": "Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#flow-control" }, "snapshot": { - "number": "C.3.13", + "number": "9.5.2", "spec": "CSS 2.1", - "text": "Section 6.4 The cascade", - "url": "https://www.w3.org/TR/CSS21/changes.html#x6.4" + "text": "Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#flow-control" } }, - "/changes#x8.1": { + "/visuren#inline-boxes": { "current": { - "number": "C.3.14", + "number": "9.2.2", "spec": "CSS 2.1", - "text": "Section 8.1 Box Dimensions", - "url": "https://www.w3.org/TR/CSS21/changes.html#x8.1" + "text": "Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#inline-boxes" }, "snapshot": { - "number": "C.3.14", + "number": "9.2.2", "spec": "CSS 2.1", - "text": "Section 8.1 Box Dimensions", - "url": "https://www.w3.org/TR/CSS21/changes.html#x8.1" + "text": "Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#inline-boxes" } }, - "/changes#x8.2": { + "/visuren#inline-formatting": { "current": { - "number": "C.3.15", + "number": "9.4.2", "spec": "CSS 2.1", - "text": "Section 8.2 Example of margins, padding, and borders", - "url": "https://www.w3.org/TR/CSS21/changes.html#x8.2" + "text": "Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/visuren.html#inline-formatting" }, "snapshot": { - "number": "C.3.15", + "number": "9.4.2", "spec": "CSS 2.1", - "text": "Section 8.2 Example of margins, padding, and borders", - "url": "https://www.w3.org/TR/CSS21/changes.html#x8.2" + "text": "Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS21/visuren.html#inline-formatting" } }, - "/changes#x8.5.4": { + "/visuren#layers": { "current": { - "number": "C.3.16", + "number": "9.9", "spec": "CSS 2.1", - "text": "Section 8.5.4 Border shorthand properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#x8.5.4" + "text": "Layered presentation", + "url": "https://www.w3.org/TR/CSS21/visuren.html#layers" }, "snapshot": { - "number": "C.3.16", + "number": "9.9", "spec": "CSS 2.1", - "text": "Section 8.5.4 Border shorthand properties", - "url": "https://www.w3.org/TR/CSS21/changes.html#x8.5.4" + "text": "Layered presentation", + "url": "https://www.w3.org/TR/CSS21/visuren.html#layers" } }, - "/changes#x9.10": { + "/visuren#normal-flow": { "current": { - "number": "C.3.28", + "number": "9.4", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.10" + "text": "Normal flow", + "url": "https://www.w3.org/TR/CSS21/visuren.html#normal-flow" }, "snapshot": { - "number": "C.3.28", + "number": "9.4", "spec": "CSS 2.1", - "text": "Section 9.10 Text direction", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.10" + "text": "Normal flow", + "url": "https://www.w3.org/TR/CSS21/visuren.html#normal-flow" } }, - "/changes#x9.2.1": { + "/visuren#position-props": { "current": { - "number": "C.3.17", + "number": "9.3.2", "spec": "CSS 2.1", - "text": "Section 9.2.1 Block-level elements and block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.2.1" + "text": "Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/visuren.html#position-props" }, "snapshot": { - "number": "C.3.17", + "number": "9.3.2", "spec": "CSS 2.1", - "text": "Section 9.2.1 Block-level elements and block boxes", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.2.1" + "text": "Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS21/visuren.html#position-props" } }, - "/changes#x9.3.1": { + "/visuren#positioning-scheme": { "current": { - "number": "C.3.18", + "number": "9.3", "spec": "CSS 2.1", - "text": "Section 9.3.1 Choosing a positioning scheme", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.1" + "text": "Positioning schemes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#positioning-scheme" }, "snapshot": { - "number": "C.3.18", + "number": "9.3", "spec": "CSS 2.1", - "text": "Section 9.3.1 Choosing a positioning scheme", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.1" + "text": "Positioning schemes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#positioning-scheme" } }, - "/changes#x9.3.2": { + "/visuren#q9.0": { "current": { - "number": "C.3.19", + "number": "9", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.2" + "text": "Visual formatting model", + "url": "https://www.w3.org/TR/CSS21/visuren.html#q9.0" }, "snapshot": { - "number": "C.3.19", + "number": "9", "spec": "CSS 2.1", - "text": "Section 9.3.2 Box offsets", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.3.2" + "text": "Visual formatting model", + "url": "https://www.w3.org/TR/CSS21/visuren.html#q9.0" } }, - "/changes#x9.4.1": { + "/visuren#relative-positioning": { "current": { - "number": "C.3.20", + "number": "9.4.3", "spec": "CSS 2.1", - "text": "Section 9.4.1 Block formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.1" + "text": "Relative positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#relative-positioning" }, "snapshot": { - "number": "C.3.20", + "number": "9.4.3", "spec": "CSS 2.1", - "text": "Section 9.4.1 Block formatting contexts", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.1" + "text": "Relative positioning", + "url": "https://www.w3.org/TR/CSS21/visuren.html#relative-positioning" } }, - "/changes#x9.4.2": { + "/visuren#run-in": { "current": { - "number": "C.3.21", + "number": "9.2.3", "spec": "CSS 2.1", - "text": "Section 9.4.2 Inline formatting context", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.2" + "text": "Run-in boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#run-in" }, "snapshot": { - "number": "C.3.21", + "number": "9.2.3", "spec": "CSS 2.1", - "text": "Section 9.4.2 Inline formatting context", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.2" + "text": "Run-in boxes", + "url": "https://www.w3.org/TR/CSS21/visuren.html#run-in" } }, - "/changes#x9.4.3": { + "/visuren#viewport": { "current": { - "number": "C.3.22", + "number": "9.1.1", "spec": "CSS 2.1", - "text": "Section 9.4.3 Relative positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.3" + "text": "The viewport", + "url": "https://www.w3.org/TR/CSS21/visuren.html#viewport" }, "snapshot": { - "number": "C.3.22", + "number": "9.1.1", "spec": "CSS 2.1", - "text": "Section 9.4.3 Relative positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.4.3" + "text": "The viewport", + "url": "https://www.w3.org/TR/CSS21/visuren.html#viewport" } }, - "/changes#x9.5": { + "/visuren#visual-model-intro": { "current": { - "number": "C.3.23", + "number": "9.1", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5" + "text": "Introduction to the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/visuren.html#visual-model-intro" }, "snapshot": { - "number": "C.3.23", + "number": "9.1", "spec": "CSS 2.1", - "text": "Section 9.5 Floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5" + "text": "Introduction to the visual formatting model", + "url": "https://www.w3.org/TR/CSS21/visuren.html#visual-model-intro" } }, - "/changes#x9.5.1": { + "/visuren#z-index": { "current": { - "number": "C.3.24", + "number": "9.9.1", "spec": "CSS 2.1", - "text": "Section 9.5.1 Positioning the float", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.1" + "text": "Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#z-index" }, "snapshot": { - "number": "C.3.24", + "number": "9.9.1", "spec": "CSS 2.1", - "text": "Section 9.5.1 Positioning the float", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.1" + "text": "Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS21/visuren.html#z-index" } }, - "/changes#x9.5.2": { + "/zindex#painting-order": { "current": { - "number": "C.3.25", + "number": "E.2", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.2" + "text": "Painting order", + "url": "https://www.w3.org/TR/CSS21/zindex.html#painting-order" }, "snapshot": { - "number": "C.3.25", + "number": "E.2", "spec": "CSS 2.1", - "text": "Section 9.5.2 Controlling flow next to floats", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.5.2" + "text": "Painting order", + "url": "https://www.w3.org/TR/CSS21/zindex.html#painting-order" } }, - "/changes#x9.6": { + "/zindex#q23.0": { "current": { - "number": "C.3.26", + "number": "E", "spec": "CSS 2.1", - "text": "Section 9.6 Absolute positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.6" + "text": "Elaborate description of Stacking Contexts", + "url": "https://www.w3.org/TR/CSS21/zindex.html#q23.0" }, "snapshot": { - "number": "C.3.26", + "number": "E", "spec": "CSS 2.1", - "text": "Section 9.6 Absolute positioning", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.6" + "text": "Elaborate description of Stacking Contexts", + "url": "https://www.w3.org/TR/CSS21/zindex.html#q23.0" } }, - "/changes#x9.7": { + "/zindex#stacking-defs": { "current": { - "number": "C.3.27", + "number": "E.1", "spec": "CSS 2.1", - "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.7" + "text": "Definitions", + "url": "https://www.w3.org/TR/CSS21/zindex.html#stacking-defs" }, "snapshot": { - "number": "C.3.27", + "number": "E.1", "spec": "CSS 2.1", - "text": "Section 9.7 Relationships between 'display', 'position', and 'float'", - "url": "https://www.w3.org/TR/CSS21/changes.html#x9.7" + "text": "Definitions", + "url": "https://www.w3.org/TR/CSS21/zindex.html#stacking-defs" } }, - "/changes#xE.2": { + "/zindex#stacking-notes": { "current": { - "number": "C.3.52", + "number": "E.3", "spec": "CSS 2.1", - "text": "Section E.2 Painting order", - "url": "https://www.w3.org/TR/CSS21/changes.html#xE.2" + "text": "Notes", + "url": "https://www.w3.org/TR/CSS21/zindex.html#stacking-notes" }, "snapshot": { - "number": "C.3.52", + "number": "E.3", "spec": "CSS 2.1", - "text": "Section E.2 Painting order", - "url": "https://www.w3.org/TR/CSS21/changes.html#xE.2" + "text": "Notes", + "url": "https://www.w3.org/TR/CSS21/zindex.html#stacking-notes" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css22.json b/bikeshed/spec-data/readonly/headings/headings-css22.json index 5780882354..79973c8ccb 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css22.json +++ b/bikeshed/spec-data/readonly/headings/headings-css22.json @@ -1,2433 +1,5667 @@ { - "#Computing_heights_and_margins": { + "#Computing_heights_and_margins": [ + "/#Computing_heights_and_margins", + "/visudet#Computing_heights_and_margins" + ], + "#Computing_widths_and_margins": [ + "/#Computing_widths_and_margins", + "/visudet#Computing_widths_and_margins" + ], + "#Emacspeak": [ + "/aural#Emacspeak" + ], + "#W3C-doctype": { + "snapshot": { + "number": "", + "spec": "CSS 2.2", + "text": "W3C First Public Working Draft 12 April 2016", + "url": "https://www.w3.org/TR/CSS22/#W3C-doctype" + } + }, + "#about": { + "current": { + "number": "1", + "spec": "CSS 2.2", + "text": "About the CSS 2.2 Specification", + "url": "https://drafts.csswg.org/css2/#about" + } + }, + "#abs-non-replaced-height": [ + "/#abs-non-replaced-height", + "/visudet#abs-non-replaced-height" + ], + "#abs-non-replaced-width": [ + "/#abs-non-replaced-width", + "/visudet#abs-non-replaced-width" + ], + "#abs-replaced-height": [ + "/#abs-replaced-height", + "/visudet#abs-replaced-height" + ], + "#abs-replaced-width": [ + "/#abs-replaced-width", + "/visudet#abs-replaced-width" + ], + "#absolute-positioning": [ + "/#absolute-positioning", + "/visuren#absolute-positioning" + ], + "#abstract": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Abstract", + "url": "https://drafts.csswg.org/css2/#abstract" + }, + "snapshot": { + "number": "", + "spec": "CSS 2.2", + "text": "Abstract", + "url": "https://www.w3.org/TR/CSS22/#abstract" + } + }, + "#acknowledgements": [ + "/#acknowledgements", + "/about#acknowledgements" + ], + "#actual-values": { + "current": { + "number": "6.1.4", + "spec": "CSS 2.2", + "text": "Actual values", + "url": "https://drafts.csswg.org/css2/#actual-values" + } + }, + "#addressing": [ + "/#addressing", + "/intro#addressing" + ], + "#adjacent-selectors": [ + "/#adjacent-selectors", + "/selector#adjacent-selectors" + ], + "#algorithm": [ + "/#algorithm", + "/fonts#algorithm" + ], + "#alignment-prop": [ + "/#alignment-prop", + "/text#alignment-prop" + ], + "#allowed-page-breaks": [ + "/#allowed-page-breaks", + "/page#allowed-page-breaks" + ], + "#angles": [ + "/aural#angles" + ], + "#anonymous": [ + "/visuren#anonymous" + ], + "#anonymous%E2%91%A0": { + "current": { + "number": "9.2.2.1", + "spec": "CSS 2.2", + "text": "Anonymous inline boxes", + "url": "https://drafts.csswg.org/css2/#anonymous%E2%91%A0" + } + }, + "#anonymous-block-level": [ + "/#anonymous-block-level", + "/visuren#anonymous-block-level" + ], + "#anonymous-boxes": [ + "/#anonymous-boxes", + "/tables#anonymous-boxes" + ], + "#app-changes": { + "current": { + "number": "C", + "spec": "CSS 2.2", + "text": "Changes", + "url": "https://drafts.csswg.org/css2/#app-changes" + } + }, + "#app-grammar": { + "current": { + "number": "G", + "spec": "CSS 2.2", + "text": "Grammar of CSS 2", + "url": "https://drafts.csswg.org/css2/#app-grammar" + } + }, + "#applies-to": [ + "/#applies-to", + "/about#applies-to" + ], + "#assigning": { + "current": { + "number": "6", + "spec": "CSS 2.2", + "text": "Assigning property values, Cascading, and Inheritance", + "url": "https://drafts.csswg.org/css2/#assigning" + } + }, + "#at-import": [ + "/#at-import", + "/cascade#at-import" + ], + "#at-media-rule": [ + "/#at-media-rule", + "/media#at-media-rule" + ], + "#at-rules": { + "current": { + "number": "4.1.5", + "spec": "CSS 2.2", + "text": "At-rules", + "url": "https://drafts.csswg.org/css2/#at-rules" + } + }, + "#attribute-selectors": [ + "/#attribute-selectors", + "/selector#attribute-selectors" + ], + "#aural": { + "current": { + "number": "A", + "spec": "CSS 2.2", + "text": "Aural style sheets", + "url": "https://drafts.csswg.org/css2/#aural" + } + }, + "#aural-intro": [ + "/aural#aural-intro" + ], + "#aural-media-group": [ + "/aural#aural-media-group" + ], + "#aural-tables": [ + "/aural#aural-tables" + ], + "#auto-table-layout": [ + "/#auto-table-layout", + "/tables#auto-table-layout" + ], + "#background": [ + "/#background", + "/colors#background" + ], + "#background-properties": [ + "/#background-properties", + "/colors#background-properties" + ], + "#before-after-content": [ + "/#before-after-content", + "/generate#before-after-content" + ], + "#before-and-after": [ + "/#before-and-after", + "/selector#before-and-after" + ], + "#best-page-breaks": [ + "/#best-page-breaks", + "/page#best-page-breaks" + ], + "#bidi-box-model": [ + "/#bidi-box-model", + "/box#bidi-box-model" + ], + "#block": [ + "/#block", + "/syndata#block" + ], + "#block-boxes": [ + "/#block-boxes", + "/visuren#block-boxes" + ], + "#block-formatting": [ + "/#block-formatting", + "/visuren#block-formatting" + ], + "#block-replaced-width": [ + "/#block-replaced-width", + "/visudet#block-replaced-width" + ], + "#block-root-margin": [ + "/#block-root-margin", + "/visudet#block-root-margin" + ], + "#blockwidth": [ + "/#blockwidth", + "/visudet#blockwidth" + ], + "#border-color-properties": [ + "/#border-color-properties", + "/box#border-color-properties" + ], + "#border-conflict-resolution": [ + "/#border-conflict-resolution", + "/tables#border-conflict-resolution" + ], + "#border-properties": [ + "/#border-properties", + "/box#border-properties" + ], + "#border-shorthand-properties": [ + "/#border-shorthand-properties", + "/box#border-shorthand-properties" + ], + "#border-style-properties": [ + "/#border-style-properties", + "/box#border-style-properties" + ], + "#border-width-properties": [ + "/#border-width-properties", + "/box#border-width-properties" + ], + "#borders": [ + "/#borders", + "/tables#borders" + ], + "#box-dimensions": [ + "/#box-dimensions", + "/box#box-dimensions" + ], + "#box-gen": [ + "/#box-gen", + "/visuren#box-gen" + ], + "#box-model": [ + "/#box-model", + "/box#box-model" + ], + "#break-inside": [ + "/#break-inside", + "/page#break-inside" + ], + "#caps-prop": [ + "/#caps-prop", + "/text#caps-prop" + ], + "#caption-position": [ + "/#caption-position", + "/tables#caption-position" + ], + "#cascade": [ + "/#cascade", + "/cascade#cascade" + ], + "#cascading-order": [ + "/#cascading-order", + "/cascade#cascading-order" + ], + "#changes": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Changes", + "url": "https://drafts.csswg.org/css2/#changes" + } + }, + "#characters": [ + "/#characters", + "/syndata#characters" + ], + "#charset": [ + "/#charset", + "/syndata#charset" + ], + "#child-selectors": [ + "/#child-selectors", + "/selector#child-selectors" + ], + "#choose-position": [ + "/#choose-position", + "/visuren#choose-position" + ], + "#clarifications": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Clarifications", + "url": "https://drafts.csswg.org/css2/#clarifications" + } + }, + "#class-html": [ + "/#class-html", + "/selector#class-html" + ], + "#clipping": [ + "/#clipping", + "/visufx#clipping" + ], + "#collapsing-borders": [ + "/#collapsing-borders", + "/tables#collapsing-borders" + ], + "#collapsing-margins": [ + "/#collapsing-margins", + "/box#collapsing-margins" + ], + "#color-bg": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "14. Colors and Backgrounds", + "url": "https://drafts.csswg.org/css2/#color-bg" + } + }, + "#color-units": [ + "/#color-units", + "/syndata#color-units" + ], + "#colors": [ + "/#colors", + "/colors#colors" + ], + "#column-alignment": [ + "/#column-alignment", + "/tables#column-alignment" + ], + "#columns": [ + "/#columns", + "/tables#columns" + ], + "#comments": [ + "/#comments", + "/syndata#comments" + ], + "#comp-abspos": [ + "/#comp-abspos", + "/visuren#comp-abspos" + ], + "#comp-float": [ + "/#comp-float", + "/visuren#comp-float" + ], + "#comp-normal-flow": [ + "/#comp-normal-flow", + "/visuren#comp-normal-flow" + ], + "#comp-relpos": [ + "/#comp-relpos", + "/visuren#comp-relpos" + ], + "#comparison": [ + "/#comparison", + "/visuren#comparison" + ], + "#computed-defs": [ + "/#computed-defs", + "/about#computed-defs" + ], + "#computed-values": { + "current": { + "number": "6.1.2", + "spec": "CSS 2.2", + "text": "Computed values", + "url": "https://drafts.csswg.org/css2/#computed-values" + } + }, + "#conform": { + "current": { + "number": "3", + "spec": "CSS 2.2", + "text": "Conformance: Requirements and Recommendations", + "url": "https://drafts.csswg.org/css2/#conform" + } + }, + "#conformance": [ + "/#conformance", + "/conform#conformance" + ], + "#containing-block": { + "current": { + "number": "9.1.2", + "spec": "CSS 2.2", + "text": "Containing blocks", + "url": "https://drafts.csswg.org/css2/#containing-block" + } + }, + "#containing-block-details": [ + "/#containing-block-details", + "/visudet#containing-block-details" + ], + "#content": [ + "/generate#content" + ], + "#content%E2%91%A0": { + "current": { + "number": "12.2", + "spec": "CSS 2.2", + "text": "The content property", + "url": "https://drafts.csswg.org/css2/#content%E2%91%A0" + } + }, + "#conventions": [ + "/#conventions", + "/about#conventions" + ], + "#counter": [ + "/#counter", + "/syndata#counter" + ], + "#counter-styles": [ + "/#counter-styles", + "/generate#counter-styles" + ], + "#counters": { + "current": { + "number": "12.4", + "spec": "CSS 2.2", + "text": "Automatic counters and numbering", + "url": "https://drafts.csswg.org/css2/#counters" + } + }, + "#css2.2-v-css2": [ + "/#css2.2-v-css2", + "/about#css2.2-v-css2" + ], + "#ctrlchars": [ + "/#ctrlchars", + "/text#ctrlchars" + ], + "#cue-props": [ + "/aural#cue-props" + ], + "#cursive": { + "current": { + "number": "15.3.1.3", + "spec": "CSS 2.2", + "text": "cursive", + "url": "https://drafts.csswg.org/css2/#cursive" + } + }, + "#cursor-props": [ + "/#cursor-props", + "/ui#cursor-props" + ], + "#declaration": [ + "/#declaration", + "/syndata#declaration" + ], + "#decoration": [ + "/#decoration", + "/text#decoration" + ], + "#default-attrs": [ + "/#default-attrs", + "/selector#default-attrs" + ], + "#defs": [ + "/#defs", + "/conform#defs" + ], + "#descendant-selectors": [ + "/#descendant-selectors", + "/selector#descendant-selectors" + ], + "#design-principles": [ + "/#design-principles", + "/intro#design-principles" + ], + "#direction": [ + "/#direction", + "/visuren#direction" + ], + "#dis-pos-flo": [ + "/#dis-pos-flo", + "/visuren#dis-pos-flo" + ], + "#display-prop": [ + "/#display-prop", + "/visuren#display-prop" + ], + "#doc-language": [ + "/#doc-language", + "/about#doc-language" + ], + "#drop-aural": { + "current": { + "number": "A", + "spec": "CSS 2.2", + "text": "Aural style sheets", + "url": "https://drafts.csswg.org/css2/#drop-aural" + } + }, + "#dynamic-effects": [ + "/#dynamic-effects", + "/tables#dynamic-effects" + ], + "#dynamic-outlines": [ + "/#dynamic-outlines", + "/ui#dynamic-outlines" + ], + "#dynamic-pseudo-classes": [ + "/#dynamic-pseudo-classes", + "/selector#dynamic-pseudo-classes" + ], + "#egbidiwscollapse": [ + "/#egbidiwscollapse", + "/text#egbidiwscollapse" + ], + "#elaborate-stacking-contexts": { + "current": { + "number": "E", + "spec": "CSS 2.2", + "text": "Elaborate description of Stacking Contexts", + "url": "https://drafts.csswg.org/css2/#elaborate-stacking-contexts" + } + }, + "#empty-cells": [ + "/#empty-cells", + "/tables#empty-cells" + ], + "#errors": [ + "/#errors", + "/conform#errors" + ], + "#escaping": [ + "/#escaping", + "/syndata#escaping" + ], + "#fantasy": { + "current": { + "number": "15.3.1.4", + "spec": "CSS 2.2", + "text": "fantasy", + "url": "https://drafts.csswg.org/css2/#fantasy" + } + }, + "#first-child": [ + "/#first-child", + "/selector#first-child" + ], + "#first-letter": [ + "/#first-letter", + "/selector#first-letter" + ], + "#first-line-pseudo": { + "current": { + "number": "5.12.1", + "spec": "CSS 2.2", + "text": "The :first-line pseudo-element", + "url": "https://drafts.csswg.org/css2/#first-line-pseudo" + } + }, + "#fixed-positioning": [ + "/#fixed-positioning", + "/visuren#fixed-positioning" + ], + "#fixed-table-layout": [ + "/#fixed-table-layout", + "/tables#fixed-table-layout" + ], + "#float-position": [ + "/#float-position", + "/visuren#float-position" + ], + "#float-replaced-width": [ + "/#float-replaced-width", + "/visudet#float-replaced-width" + ], + "#float-width": [ + "/#float-width", + "/visudet#float-width" + ], + "#floats": [ + "/#floats", + "/visuren#floats" + ], + "#flow-control": [ + "/#flow-control", + "/visuren#flow-control" + ], + "#font-boldness": [ + "/#font-boldness", + "/fonts#font-boldness" + ], + "#font-family-prop": [ + "/#font-family-prop", + "/fonts#font-family-prop" + ], + "#font-shorthand": [ + "/#font-shorthand", + "/fonts#font-shorthand" + ], + "#font-size-props": [ + "/#font-size-props", + "/fonts#font-size-props" + ], + "#font-styling": [ + "/#font-styling", + "/fonts#font-styling" + ], + "#fonts": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "15. Fonts", + "url": "https://drafts.csswg.org/css2/#fonts" + } + }, + "#fonts-intro": [ + "/#fonts-intro", + "/fonts#fonts-intro" + ], + "#forced": [ + "/#forced", + "/page#forced" + ], + "#frequencies": [ + "/aural#frequencies" + ], + "#fulltoc": { + "snapshot": { + "number": "", + "spec": "CSS 2.2", + "text": "Full Table of Contents", + "url": "https://www.w3.org/TR/CSS22/#fulltoc" + } + }, + "#generated-text": [ + "/#generated-text", + "/generate#generated-text" + ], + "#generic-font-families": [ + "/#generic-font-families", + "/fonts#generic-font-families" + ], + "#grammar": [ + "/#grammar", + "/grammar#grammar" + ], + "#grouping": [ + "/#grouping", + "/selector#grouping" + ], + "#height-layout": [ + "/#height-layout", + "/tables#height-layout" + ], + "#html-stylesheet": { + "current": { + "number": "D", + "spec": "CSS 2.2", + "text": "Default style sheet for HTML 4", + "url": "https://drafts.csswg.org/css2/#html-stylesheet" + } + }, + "#html-tutorial": [ + "/#html-tutorial", + "/intro#html-tutorial" + ], + "#id-selectors": [ + "/#id-selectors", + "/selector#id-selectors" + ], + "#images-and-longdesc": [ + "/#images-and-longdesc", + "/about#images-and-longdesc" + ], + "#implementation-note": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Implementation note", + "url": "https://drafts.csswg.org/css2/#implementation-note" + } + }, + "#important-rules": [ + "/#important-rules", + "/cascade#important-rules" + ], + "#indentation-prop": [ + "/#indentation-prop", + "/text#indentation-prop" + ], + "#index": { + "current": { + "number": "I", + "spec": "CSS 2.2", + "text": "Index", + "url": "https://drafts.csswg.org/css2/#index" + } + }, + "#index%E2%91%A0": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Index", + "url": "https://drafts.csswg.org/css2/#index%E2%91%A0" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/css2/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/css2/#index-defined-here" + } + }, + "#informative": [ + "/#informative", + "/refs#informative" + ], + "#inherit-computed-value": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Specified value of inherit", + "url": "https://drafts.csswg.org/css2/#inherit-computed-value" + } + }, + "#inheritance": [ + "/#inheritance", + "/cascade#inheritance" + ], + "#inherited-prop": [ + "/#inherited-prop", + "/about#inherited-prop" + ], + "#initial-value": [ + "/#initial-value", + "/about#initial-value" + ], + "#inline-boxes": [ + "/#inline-boxes", + "/visuren#inline-boxes" + ], + "#inline-formatting": [ + "/#inline-formatting", + "/visuren#inline-formatting" + ], + "#inline-non-replaced": [ + "/#inline-non-replaced", + "/visudet#inline-non-replaced" + ], + "#inline-replaced-height": [ + "/#inline-replaced-height", + "/visudet#inline-replaced-height" + ], + "#inline-replaced-width": [ + "/#inline-replaced-width", + "/visudet#inline-replaced-width" + ], + "#inline-width": [ + "/#inline-width", + "/visudet#inline-width" + ], + "#inlineblock-replaced-width": [ + "/#inlineblock-replaced-width", + "/visudet#inlineblock-replaced-width" + ], + "#inlineblock-width": [ + "/#inlineblock-width", + "/visudet#inlineblock-width" + ], + "#intro": { + "current": { + "number": "2", + "spec": "CSS 2.2", + "text": "Introduction to CSS 2", + "url": "https://drafts.csswg.org/css2/#intro" + } + }, + "#keywords": [ + "/#keywords", + "/syndata#keywords" + ], + "#known-errors": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Errors", + "url": "https://drafts.csswg.org/css2/#known-errors" + } + }, + "#lang": [ + "/#lang", + "/selector#lang" + ], + "#layers": [ + "/#layers", + "/visuren#layers" + ], + "#leading": [ + "/#leading", + "/visudet#leading" + ], + "#leftblank": { + "current": { + "number": "H", + "spec": "CSS 2.2", + "text": "Has been intentionally left blank", + "url": "https://drafts.csswg.org/css2/#leftblank" + } + }, + "#length-units": [ + "/#length-units", + "/syndata#length-units" + ], + "#line-height": [ + "/#line-height", + "/visudet#line-height" + ], + "#lining-striking-props": [ + "/#lining-striking-props", + "/text#lining-striking-props" + ], + "#link-pseudo-classes": [ + "/#link-pseudo-classes", + "/selector#link-pseudo-classes" + ], + "#list-style": [ + "/#list-style", + "/generate#list-style" + ], + "#lists": [ + "/#lists", + "/generate#lists" + ], + "#magnification": [ + "/#magnification", + "/ui#magnification" + ], + "#margin-properties": [ + "/#margin-properties", + "/box#margin-properties" + ], + "#matching-attrs": [ + "/#matching-attrs", + "/selector#matching-attrs" + ], + "#media": { + "current": { + "number": "7", + "spec": "CSS 2.2", + "text": "Media types", + "url": "https://drafts.csswg.org/css2/#media" + } + }, + "#media-applies": [ + "/#media-applies", + "/about#media-applies" + ], + "#media-groups": [ + "/#media-groups", + "/media#media-groups" + ], + "#media-intro": [ + "/#media-intro", + "/media#media-intro" + ], + "#media-sheets": [ + "/#media-sheets", + "/media#media-sheets" + ], + "#media-types": [ + "/#media-types", + "/media#media-types" + ], + "#min-max-heights": [ + "/#min-max-heights", + "/visudet#min-max-heights" + ], + "#min-max-widths": [ + "/#min-max-widths", + "/visudet#min-max-widths" + ], + "#minitoc": { + "snapshot": { + "number": "", + "spec": "CSS 2.2", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/CSS22/#minitoc" + } + }, + "#mixing-props": [ + "/aural#mixing-props" + ], + "#model": [ + "/#model", + "/tables#model" + ], + "#monospace": { + "current": { + "number": "15.3.1.5", + "spec": "CSS 2.2", + "text": "monospace", + "url": "https://drafts.csswg.org/css2/#monospace" + } + }, + "#mpb-examples": [ + "/#mpb-examples", + "/box#mpb-examples" + ], + "#new": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Additional property values", + "url": "https://drafts.csswg.org/css2/#new" + } + }, + "#normal-block": [ + "/#normal-block", + "/visudet#normal-block" + ], + "#normal-flow": [ + "/#normal-flow", + "/visuren#normal-flow" + ], + "#normative": [ + "/#normative", + "/refs#normative" + ], + "#notes-and-examples": [ + "/#notes-and-examples", + "/about#notes-and-examples" + ], + "#numbers": [ + "/#numbers", + "/syndata#numbers" + ], + "#organization": [ + "/#organization", + "/about#organization" + ], + "#outline-focus": [ + "/#outline-focus", + "/ui#outline-focus" + ], + "#outside-page-box": [ + "/#outside-page-box", + "/page#outside-page-box" + ], + "#overflow": [ + "/visufx#overflow" + ], + "#overflow%E2%91%A0": { + "current": { + "number": "11.1.1", + "spec": "CSS 2.2", + "text": "Overflow: the overflow property", + "url": "https://drafts.csswg.org/css2/#overflow%E2%91%A0" + } + }, + "#overflow-clipping": [ + "/#overflow-clipping", + "/visufx#overflow-clipping" + ], + "#padding-properties": [ + "/#padding-properties", + "/box#padding-properties" + ], + "#page-box": [ + "/#page-box", + "/page#page-box" + ], + "#page-break-props": [ + "/#page-break-props", + "/page#page-break-props" + ], + "#page-breaks": [ + "/#page-breaks", + "/page#page-breaks" + ], + "#page-cascade": [ + "/#page-cascade", + "/page#page-cascade" + ], + "#page-intro": [ + "/#page-intro", + "/page#page-intro" + ], + "#page-margins": [ + "/#page-margins", + "/page#page-margins" + ], + "#page-selectors": [ + "/#page-selectors", + "/page#page-selectors" + ], + "#painting-order": [ + "/#painting-order", + "/zindex#painting-order" + ], + "#parsing-errors": [ + "/#parsing-errors", + "/syndata#parsing-errors" + ], + "#pattern-matching": [ + "/#pattern-matching", + "/selector#pattern-matching" + ], + "#pause-props": [ + "/aural#pause-props" + ], + "#percentage-units": [ + "/#percentage-units", + "/syndata#percentage-units" + ], + "#percentage-wrt": [ + "/#percentage-wrt", + "/about#percentage-wrt" + ], + "#position-props": [ + "/#position-props", + "/visuren#position-props" + ], + "#positioning-scheme": [ + "/#positioning-scheme", + "/visuren#positioning-scheme" + ], + "#preshint": [ + "/#preshint", + "/cascade#preshint" + ], + "#processing-model": [ + "/#processing-model", + "/intro#processing-model" + ], + "#property-defs": [ + "/#property-defs", + "/about#property-defs" + ], + "#property-index": { + "current": { + "number": "F", + "spec": "CSS 2.2", + "text": "Full property table", + "url": "https://drafts.csswg.org/css2/#property-index" + } + }, + "#property-index%E2%91%A0": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Property Index", + "url": "https://drafts.csswg.org/css2/#property-index%E2%91%A0" + } + }, + "#pseudo-class-selectors": [ + "/#pseudo-class-selectors", + "/selector#pseudo-class-selectors" + ], + "#pseudo-element-selectors": [ + "/#pseudo-element-selectors", + "/selector#pseudo-element-selectors" + ], + "#pseudo-elements": [ + "/#pseudo-elements", + "/selector#pseudo-elements" + ], + "#q0": [ + "/about#q0", + "/intro#q0", + "/conform#q0", + "/syndata#q0", + "/selector#q0", + "/cascade#q0", + "/media#q0", + "/visuren#q0", + "/visudet#q0", + "/visufx#q0", + "/colors#q0", + "/fonts#q0", + "/text#q0", + "/tables#q0", + "/ui#q0", + "/aural#q0", + "/refs#q0", + "/changes#q0", + "/sample#q0", + "/zindex#q0", + "/propidx#q0", + "/grammar#q0", + "/indexlist#q0" + ], + "#q4": [ + "/grammar#q4" + ], + "#quotes": [ + "/#quotes", + "/generate#quotes" + ], + "#quotes-insert": [ + "/#quotes-insert", + "/generate#quotes-insert" + ], + "#quotes-specify": [ + "/#quotes-specify", + "/generate#quotes-specify" + ], + "#reading": [ + "/#reading", + "/about#reading" + ], + "#references": { + "current": { + "number": "B", + "spec": "CSS 2.2", + "text": "Bibliography", + "url": "https://drafts.csswg.org/css2/#references" + } + }, + "#references%E2%91%A0": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "References", + "url": "https://drafts.csswg.org/css2/#references%E2%91%A0" + } + }, + "#relative-positioning": [ + "/#relative-positioning", + "/visuren#relative-positioning" + ], + "#root-height": [ + "/#root-height", + "/visudet#root-height" + ], + "#rule-sets": [ + "/#rule-sets", + "/syndata#rule-sets" + ], + "#run-in": [ + "/#run-in", + "/visuren#run-in" + ], + "#sample": [ + "/aural#sample" + ], + "#sans-serif": { + "current": { + "number": "15.3.1.2", + "spec": "CSS 2.2", + "text": "sans-serif", + "url": "https://drafts.csswg.org/css2/#sans-serif" + } + }, + "#scanner": [ + "/#scanner", + "/grammar#scanner" + ], + "#scope": [ + "/#scope", + "/generate#scope" + ], + "#selector": { + "current": { + "number": "5", + "spec": "CSS 2.2", + "text": "Selectors", + "url": "https://drafts.csswg.org/css2/#selector" + } + }, + "#selector-syntax": [ + "/#selector-syntax", + "/selector#selector-syntax" + ], + "#separated-borders": [ + "/#separated-borders", + "/tables#separated-borders" + ], + "#serif": { + "current": { + "number": "15.3.1.1", + "spec": "CSS 2.2", + "text": "serif", + "url": "https://drafts.csswg.org/css2/#serif" + } + }, + "#shorthand": [ + "/#shorthand", + "/about#shorthand" + ], + "#since-20110607": [ + "/changes#since-20110607" + ], + "#small-caps": [ + "/#small-caps", + "/fonts#small-caps" + ], + "#sotd": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Status of this document", + "url": "https://drafts.csswg.org/css2/#sotd" + } + }, + "#spacing-props": [ + "/#spacing-props", + "/text#spacing-props" + ], + "#spatial-props": [ + "/aural#spatial-props" + ], + "#speak-headers": [ + "/aural#speak-headers" + ], + "#speaking-props": [ + "/aural#speaking-props" + ], + "#specificity": [ + "/#specificity", + "/cascade#specificity" + ], + "#specified-values": { + "current": { + "number": "6.1.1", + "spec": "CSS 2.2", + "text": "Specified values", + "url": "https://drafts.csswg.org/css2/#specified-values" + } + }, + "#speech-props": [ + "/aural#speech-props" + ], + "#stacking-defs": [ + "/#stacking-defs", + "/zindex#stacking-defs" + ], + "#stacking-notes": [ + "/#stacking-notes", + "/zindex#stacking-notes" + ], + "#statements": [ + "/#statements", + "/syndata#statements" + ], + "#status": { + "snapshot": { + "number": "", + "spec": "CSS 2.2", + "text": "Status of this document", + "url": "https://www.w3.org/TR/CSS22/#status" + } + }, + "#strings": [ + "/#strings", + "/syndata#strings" + ], + "#syndata": { + "current": { + "number": "4", + "spec": "CSS 2.2", + "text": "Syntax and basic data types", + "url": "https://drafts.csswg.org/css2/#syndata" + } + }, + "#syntax": [ + "/#syntax", + "/syndata#syntax" + ], + "#system-colors": [ + "/#system-colors", + "/ui#system-colors" + ], + "#system-fonts": [ + "/ui#system-fonts" + ], + "#system-fonts%E2%91%A0": { + "current": { + "number": "18.3", + "spec": "CSS 2.2", + "text": "User preferences for fonts", + "url": "https://drafts.csswg.org/css2/#system-fonts%E2%91%A0" + } + }, + "#table-border-styles": [ + "/#table-border-styles", + "/tables#table-border-styles" + ], + "#table-display": [ + "/#table-display", + "/tables#table-display" + ], + "#table-layers": [ + "/#table-layers", + "/tables#table-layers" + ], + "#table-layout": [ + "/#table-layout", + "/tables#table-layout" + ], + "#tables": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "17. Tables", + "url": "https://drafts.csswg.org/css2/#tables" + } + }, + "#tables-intro": [ + "/#tables-intro", + "/tables#tables-intro" + ], + "#text": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "16. Text", + "url": "https://drafts.csswg.org/css2/#text" + } + }, + "#text-css": { + "current": { + "number": "3.4", + "spec": "CSS 2.2", + "text": "The text/css content type", + "url": "https://drafts.csswg.org/css2/#text-css" + } + }, + "#the-canvas": [ + "/#the-canvas", + "/intro#the-canvas" + ], + "#the-height-property": [ + "/#the-height-property", + "/visudet#the-height-property" + ], + "#the-page": [ + "/#the-page", + "/page#the-page" + ], + "#the-width-property": [ + "/#the-width-property", + "/visudet#the-width-property" + ], + "#times": [ + "/aural#times" + ], + "#title": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "CSS 2", + "url": "https://drafts.csswg.org/css2/#title" + }, + "snapshot": { + "number": "", + "spec": "CSS 2.2", + "text": "Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification", + "url": "https://www.w3.org/TR/CSS22/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/css2/#toc" + } + }, + "#tokenization": [ + "/#tokenization", + "/syndata#tokenization" + ], + "#tokenizer-diffs": [ + "/#tokenizer-diffs", + "/grammar#tokenizer-diffs" + ], + "#type-selectors": [ + "/#type-selectors", + "/selector#type-selectors" + ], + "#ui": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "18. User interface", + "url": "https://drafts.csswg.org/css2/#ui" + } + }, + "#undisplayed-counters": [ + "/#undisplayed-counters", + "/generate#undisplayed-counters" + ], + "#universal-selector": [ + "/#universal-selector", + "/selector#universal-selector" + ], + "#unsupported-values": [ + "/#unsupported-values", + "/syndata#unsupported-values" + ], + "#uri": [ + "/#uri", + "/syndata#uri" + ], + "#used-values": { + "current": { + "number": "6.1.3", + "spec": "CSS 2.2", + "text": "Used values", + "url": "https://drafts.csswg.org/css2/#used-values" + } + }, + "#value-def-inherit": { + "current": { + "number": "6.2.1", + "spec": "CSS 2.2", + "text": "The inherit value", + "url": "https://drafts.csswg.org/css2/#value-def-inherit" + } + }, + "#value-defs": [ + "/#value-defs", + "/about#value-defs" + ], + "#value-stages": [ + "/#value-stages", + "/cascade#value-stages" + ], + "#values": [ + "/syndata#values" + ], + "#values%E2%91%A0": { + "current": { + "number": "4.3", + "spec": "CSS 2.2", + "text": "Values", + "url": "https://drafts.csswg.org/css2/#values%E2%91%A0" + } + }, + "#vendor-keyword-history": [ + "/#vendor-keyword-history", + "/syndata#vendor-keyword-history" + ], + "#vendor-keywords": [ + "/#vendor-keywords", + "/syndata#vendor-keywords" + ], + "#viewport": [ + "/#viewport", + "/visuren#viewport" + ], + "#visibility": [ + "/#visibility", + "/visufx#visibility" + ], + "#visual-model-intro": [ + "/#visual-model-intro", + "/visuren#visual-model-intro" + ], + "#visudet": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "10. Visual formatting model details", + "url": "https://drafts.csswg.org/css2/#visudet" + } + }, + "#visufx": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "11. Visual effects", + "url": "https://drafts.csswg.org/css2/#visufx" + } + }, + "#visuren": { + "current": { + "number": "9", + "spec": "CSS 2.2", + "text": "Visual formatting model", + "url": "https://drafts.csswg.org/css2/#visuren" + } + }, + "#voice-char-props": [ + "/aural#voice-char-props" + ], + "#volume-props": [ + "/aural#volume-props" + ], + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/css2/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Conformance", + "url": "https://drafts.csswg.org/css2/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/css2/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Document conventions", + "url": "https://drafts.csswg.org/css2/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/css2/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/css2/#w3c-testing" + } + }, + "#white-space-model": [ + "/#white-space-model", + "/text#white-space-model" + ], + "#white-space-prop": [ + "/#white-space-prop", + "/text#white-space-prop" + ], + "#width-layout": [ + "/#width-layout", + "/tables#width-layout" + ], + "#xml-tutorial": [ + "/#xml-tutorial", + "/intro#xml-tutorial" + ], + "#z-index": [ + "/#z-index", + "/visuren#z-index" + ], + "/#Computing_heights_and_margins": { + "current": { + "number": "10.6", + "spec": "CSS 2.2", + "text": "Calculating heights and margins", + "url": "https://drafts.csswg.org/css2/#Computing_heights_and_margins" + } + }, + "/#Computing_widths_and_margins": { + "current": { + "number": "10.3", + "spec": "CSS 2.2", + "text": "Calculating widths and margins", + "url": "https://drafts.csswg.org/css2/#Computing_widths_and_margins" + } + }, + "/#abs-non-replaced-height": { + "current": { + "number": "10.6.4", + "spec": "CSS 2.2", + "text": "Absolutely positioned, non-replaced elements", + "url": "https://drafts.csswg.org/css2/#abs-non-replaced-height" + } + }, + "/#abs-non-replaced-width": { + "current": { + "number": "10.3.7", + "spec": "CSS 2.2", + "text": "Absolutely positioned, non-replaced elements", + "url": "https://drafts.csswg.org/css2/#abs-non-replaced-width" + } + }, + "/#abs-replaced-height": { + "current": { + "number": "10.6.5", + "spec": "CSS 2.2", + "text": "Absolutely positioned, replaced elements", + "url": "https://drafts.csswg.org/css2/#abs-replaced-height" + } + }, + "/#abs-replaced-width": { + "current": { + "number": "10.3.8", + "spec": "CSS 2.2", + "text": "Absolutely positioned, replaced elements", + "url": "https://drafts.csswg.org/css2/#abs-replaced-width" + } + }, + "/#absolute-positioning": { + "current": { + "number": "9.6", + "spec": "CSS 2.2", + "text": "Absolute positioning", + "url": "https://drafts.csswg.org/css2/#absolute-positioning" + } + }, + "/#acknowledgements": { + "current": { + "number": "1.5", + "spec": "CSS 2.2", + "text": "Acknowledgments", + "url": "https://drafts.csswg.org/css2/#acknowledgements" + } + }, + "/#addressing": { + "current": { + "number": "2.3.2", + "spec": "CSS 2.2", + "text": "CSS 2 addressing model", + "url": "https://drafts.csswg.org/css2/#addressing" + } + }, + "/#adjacent-selectors": { + "current": { + "number": "5.7", + "spec": "CSS 2.2", + "text": "Adjacent sibling selectors", + "url": "https://drafts.csswg.org/css2/#adjacent-selectors" + } + }, + "/#algorithm": { + "current": { + "number": "15.2", + "spec": "CSS 2.2", + "text": "Font matching algorithm", + "url": "https://drafts.csswg.org/css2/#algorithm" + } + }, + "/#alignment-prop": { + "current": { + "number": "16.2", + "spec": "CSS 2.2", + "text": "Alignment: the text-align property", + "url": "https://drafts.csswg.org/css2/#alignment-prop" + } + }, + "/#allowed-page-breaks": { + "current": { + "number": "13.3.3", + "spec": "CSS 2.2", + "text": "Allowed page breaks", + "url": "https://drafts.csswg.org/css2/#allowed-page-breaks" + } + }, + "/#anonymous-block-level": { + "current": { + "number": "9.2.1.1", + "spec": "CSS 2.2", + "text": "Anonymous block boxes", + "url": "https://drafts.csswg.org/css2/#anonymous-block-level" + } + }, + "/#anonymous-boxes": { + "current": { + "number": "17.2.1", + "spec": "CSS 2.2", + "text": "Anonymous table objects", + "url": "https://drafts.csswg.org/css2/#anonymous-boxes" + } + }, + "/#applies-to": { + "current": { + "number": "1.4.2.3", + "spec": "CSS 2.2", + "text": "Applies to", + "url": "https://drafts.csswg.org/css2/#applies-to" + } + }, + "/#at-import": { + "current": { + "number": "6.3", + "spec": "CSS 2.2", + "text": "The @import rule", + "url": "https://drafts.csswg.org/css2/#at-import" + } + }, + "/#at-media-rule": { + "current": { + "number": "7.2.1", + "spec": "CSS 2.2", + "text": "The @media rule", + "url": "https://drafts.csswg.org/css2/#at-media-rule" + } + }, + "/#attribute-selectors": { + "current": { + "number": "5.8", + "spec": "CSS 2.2", + "text": "Attribute selectors", + "url": "https://drafts.csswg.org/css2/#attribute-selectors" + } + }, + "/#auto-table-layout": { + "current": { + "number": "17.5.2.2", + "spec": "CSS 2.2", + "text": "Automatic table layout", + "url": "https://drafts.csswg.org/css2/#auto-table-layout" + } + }, + "/#background": { + "current": { + "number": "14.2", + "spec": "CSS 2.2", + "text": "The background", + "url": "https://drafts.csswg.org/css2/#background" + } + }, + "/#background-properties": { + "current": { + "number": "14.2.1", + "spec": "CSS 2.2", + "text": "Background properties: background-color, background-image, background-repeat, background-attachment, background-position, and background", + "url": "https://drafts.csswg.org/css2/#background-properties" + } + }, + "/#before-after-content": { + "current": { + "number": "12.1", + "spec": "CSS 2.2", + "text": "The :before and :after pseudo-elements", + "url": "https://drafts.csswg.org/css2/#before-after-content" + } + }, + "/#before-and-after": { + "current": { + "number": "5.12.3", + "spec": "CSS 2.2", + "text": "The :before and :after pseudo-elements", + "url": "https://drafts.csswg.org/css2/#before-and-after" + } + }, + "/#best-page-breaks": { + "current": { + "number": "13.3.5", + "spec": "CSS 2.2", + "text": "\"Best\" page breaks", + "url": "https://drafts.csswg.org/css2/#best-page-breaks" + } + }, + "/#bidi-box-model": { + "current": { + "number": "8.6", + "spec": "CSS 2.2", + "text": "The box model for inline elements in bidirectional context", + "url": "https://drafts.csswg.org/css2/#bidi-box-model" + } + }, + "/#block": { + "current": { + "number": "4.1.6", + "spec": "CSS 2.2", + "text": "Blocks", + "url": "https://drafts.csswg.org/css2/#block" + } + }, + "/#block-boxes": { + "current": { + "number": "9.2.1", + "spec": "CSS 2.2", + "text": "Block-level elements and block boxes", + "url": "https://drafts.csswg.org/css2/#block-boxes" + } + }, + "/#block-formatting": { + "current": { + "number": "9.4.1", + "spec": "CSS 2.2", + "text": "Block formatting contexts", + "url": "https://drafts.csswg.org/css2/#block-formatting" + } + }, + "/#block-replaced-width": { + "current": { + "number": "10.3.4", + "spec": "CSS 2.2", + "text": "Block-level, replaced elements in normal flow", + "url": "https://drafts.csswg.org/css2/#block-replaced-width" + } + }, + "/#block-root-margin": { + "current": { + "number": "10.6.6", + "spec": "CSS 2.2", + "text": "Complicated cases", + "url": "https://drafts.csswg.org/css2/#block-root-margin" + } + }, + "/#blockwidth": { + "current": { + "number": "10.3.3", + "spec": "CSS 2.2", + "text": "Block-level, non-replaced elements in normal flow", + "url": "https://drafts.csswg.org/css2/#blockwidth" + } + }, + "/#border-color-properties": { + "current": { + "number": "8.5.2", + "spec": "CSS 2.2", + "text": "Border color: border-top-color, border-right-color, border-bottom-color, border-left-color, and border-color", + "url": "https://drafts.csswg.org/css2/#border-color-properties" + } + }, + "/#border-conflict-resolution": { + "current": { + "number": "17.6.2.1", + "spec": "CSS 2.2", + "text": "Border conflict resolution", + "url": "https://drafts.csswg.org/css2/#border-conflict-resolution" + } + }, + "/#border-properties": { + "current": { + "number": "8.5", + "spec": "CSS 2.2", + "text": "Border properties", + "url": "https://drafts.csswg.org/css2/#border-properties" + } + }, + "/#border-shorthand-properties": { + "current": { + "number": "8.5.4", + "spec": "CSS 2.2", + "text": "Border shorthand properties: border-top, border-right, border-bottom, border-left, and border", + "url": "https://drafts.csswg.org/css2/#border-shorthand-properties" + } + }, + "/#border-style-properties": { + "current": { + "number": "8.5.3", + "spec": "CSS 2.2", + "text": "Border style: border-top-style, border-right-style, border-bottom-style, border-left-style, and border-style", + "url": "https://drafts.csswg.org/css2/#border-style-properties" + } + }, + "/#border-width-properties": { + "current": { + "number": "8.5.1", + "spec": "CSS 2.2", + "text": "Border width: border-top-width, border-right-width, border-bottom-width, border-left-width, and border-width", + "url": "https://drafts.csswg.org/css2/#border-width-properties" + } + }, + "/#borders": { + "current": { + "number": "17.6", + "spec": "CSS 2.2", + "text": "Borders", + "url": "https://drafts.csswg.org/css2/#borders" + } + }, + "/#box-dimensions": { + "current": { + "number": "8.1", + "spec": "CSS 2.2", + "text": "Box dimensions", + "url": "https://drafts.csswg.org/css2/#box-dimensions" + } + }, + "/#box-gen": { + "current": { + "number": "9.2", + "spec": "CSS 2.2", + "text": "Controlling box generation", + "url": "https://drafts.csswg.org/css2/#box-gen" + } + }, + "/#box-model": { + "current": { + "number": "8", + "spec": "CSS 2.2", + "text": "Box model", + "url": "https://drafts.csswg.org/css2/#box-model" + } + }, + "/#break-inside": { + "current": { + "number": "13.3.2", + "spec": "CSS 2.2", + "text": "Breaks inside elements: orphans, widows", + "url": "https://drafts.csswg.org/css2/#break-inside" + } + }, + "/#caps-prop": { + "current": { + "number": "16.5", + "spec": "CSS 2.2", + "text": "Capitalization: the text-transform property", + "url": "https://drafts.csswg.org/css2/#caps-prop" + } + }, + "/#caption-position": { + "current": { + "number": "17.4.1", + "spec": "CSS 2.2", + "text": "Caption position and alignment", + "url": "https://drafts.csswg.org/css2/#caption-position" + } + }, + "/#cascade": { + "current": { + "number": "6.4", + "spec": "CSS 2.2", + "text": "The cascade", + "url": "https://drafts.csswg.org/css2/#cascade" + } + }, + "/#cascading-order": { + "current": { + "number": "6.4.1", + "spec": "CSS 2.2", + "text": "Cascading order", + "url": "https://drafts.csswg.org/css2/#cascading-order" + } + }, + "/#characters": { + "current": { + "number": "4.1.3", + "spec": "CSS 2.2", + "text": "Characters and case", + "url": "https://drafts.csswg.org/css2/#characters" + } + }, + "/#charset": { + "current": { + "number": "4.4", + "spec": "CSS 2.2", + "text": "CSS style sheet representation", + "url": "https://drafts.csswg.org/css2/#charset" + } + }, + "/#child-selectors": { + "current": { + "number": "5.6", + "spec": "CSS 2.2", + "text": "Child selectors", + "url": "https://drafts.csswg.org/css2/#child-selectors" + } + }, + "/#choose-position": { + "current": { + "number": "9.3.1", + "spec": "CSS 2.2", + "text": "Choosing a positioning scheme: position property", + "url": "https://drafts.csswg.org/css2/#choose-position" + } + }, + "/#class-html": { + "current": { + "number": "5.8.3", + "spec": "CSS 2.2", + "text": "Class selectors", + "url": "https://drafts.csswg.org/css2/#class-html" + } + }, + "/#clipping": { + "current": { + "number": "11.1.2", + "spec": "CSS 2.2", + "text": "Clipping: the clip property", + "url": "https://drafts.csswg.org/css2/#clipping" + } + }, + "/#collapsing-borders": { + "current": { + "number": "17.6.2", + "spec": "CSS 2.2", + "text": "The collapsing border model", + "url": "https://drafts.csswg.org/css2/#collapsing-borders" + } + }, + "/#collapsing-margins": { + "current": { + "number": "8.3.1", + "spec": "CSS 2.2", + "text": "Collapsing margins", + "url": "https://drafts.csswg.org/css2/#collapsing-margins" + } + }, + "/#color-units": { + "current": { + "number": "4.3.6", + "spec": "CSS 2.2", + "text": "Colors", + "url": "https://drafts.csswg.org/css2/#color-units" + } + }, + "/#colors": { + "current": { + "number": "14.1", + "spec": "CSS 2.2", + "text": "Foreground color: the color property", + "url": "https://drafts.csswg.org/css2/#colors" + } + }, + "/#column-alignment": { + "current": { + "number": "17.5.4", + "spec": "CSS 2.2", + "text": "Horizontal alignment in a column", + "url": "https://drafts.csswg.org/css2/#column-alignment" + } + }, + "/#columns": { + "current": { + "number": "17.3", + "spec": "CSS 2.2", + "text": "Columns", + "url": "https://drafts.csswg.org/css2/#columns" + } + }, + "/#comments": { + "current": { + "number": "4.1.9", + "spec": "CSS 2.2", + "text": "Comments", + "url": "https://drafts.csswg.org/css2/#comments" + } + }, + "/#comp-abspos": { + "current": { + "number": "9.8.4", + "spec": "CSS 2.2", + "text": "Absolute positioning", + "url": "https://drafts.csswg.org/css2/#comp-abspos" + } + }, + "/#comp-float": { + "current": { + "number": "9.8.3", + "spec": "CSS 2.2", + "text": "Floating a box", + "url": "https://drafts.csswg.org/css2/#comp-float" + } + }, + "/#comp-normal-flow": { + "current": { + "number": "9.8.1", + "spec": "CSS 2.2", + "text": "Normal flow", + "url": "https://drafts.csswg.org/css2/#comp-normal-flow" + } + }, + "/#comp-relpos": { + "current": { + "number": "9.8.2", + "spec": "CSS 2.2", + "text": "Relative positioning", + "url": "https://drafts.csswg.org/css2/#comp-relpos" + } + }, + "/#comparison": { + "current": { + "number": "9.8", + "spec": "CSS 2.2", + "text": "Comparison of normal flow, floats, and absolute positioning", + "url": "https://drafts.csswg.org/css2/#comparison" + } + }, + "/#computed-defs": { + "current": { + "number": "1.4.2.7", + "spec": "CSS 2.2", + "text": "Computed value", + "url": "https://drafts.csswg.org/css2/#computed-defs" + } + }, + "/#conformance": { + "current": { + "number": "3.2", + "spec": "CSS 2.2", + "text": "UA Conformance", + "url": "https://drafts.csswg.org/css2/#conformance" + } + }, + "/#containing-block-details": { + "current": { + "number": "10.1", + "spec": "CSS 2.2", + "text": "Definition of \"containing block\"", + "url": "https://drafts.csswg.org/css2/#containing-block-details" + } + }, + "/#conventions": { + "current": { + "number": "1.4", + "spec": "CSS 2.2", + "text": "Conventions", + "url": "https://drafts.csswg.org/css2/#conventions" + } + }, + "/#counter": { + "current": { + "number": "4.3.5", + "spec": "CSS 2.2", + "text": "Counters", + "url": "https://drafts.csswg.org/css2/#counter" + } + }, + "/#counter-styles": { + "current": { + "number": "12.4.2", + "spec": "CSS 2.2", + "text": "Counter styles", + "url": "https://drafts.csswg.org/css2/#counter-styles" + } + }, + "/#css2.2-v-css2": { + "current": { + "number": "1.1", + "spec": "CSS 2.2", + "text": "CSS 2.2 vs CSS 2", + "url": "https://drafts.csswg.org/css2/#css2.2-v-css2" + } + }, + "/#ctrlchars": { + "current": { + "number": "16.6.3", + "spec": "CSS 2.2", + "text": "Control and combining characters' details", + "url": "https://drafts.csswg.org/css2/#ctrlchars" + } + }, + "/#cursor-props": { + "current": { + "number": "18.1", + "spec": "CSS 2.2", + "text": "Cursors: the cursor property", + "url": "https://drafts.csswg.org/css2/#cursor-props" + } + }, + "/#declaration": { + "current": { + "number": "4.1.8", + "spec": "CSS 2.2", + "text": "Declarations and properties", + "url": "https://drafts.csswg.org/css2/#declaration" + } + }, + "/#decoration": { + "current": { + "number": "16.3", + "spec": "CSS 2.2", + "text": "Decoration", + "url": "https://drafts.csswg.org/css2/#decoration" + } + }, + "/#default-attrs": { + "current": { + "number": "5.8.2", + "spec": "CSS 2.2", + "text": "Default attribute values in DTDs", + "url": "https://drafts.csswg.org/css2/#default-attrs" + } + }, + "/#defs": { + "current": { + "number": "3.1", + "spec": "CSS 2.2", + "text": "Definitions", + "url": "https://drafts.csswg.org/css2/#defs" + } + }, + "/#descendant-selectors": { + "current": { + "number": "5.5", + "spec": "CSS 2.2", + "text": "Descendant selectors", + "url": "https://drafts.csswg.org/css2/#descendant-selectors" + } + }, + "/#design-principles": { + "current": { + "number": "2.4", + "spec": "CSS 2.2", + "text": "CSS design principles", + "url": "https://drafts.csswg.org/css2/#design-principles" + } + }, + "/#direction": { + "current": { + "number": "9.10", + "spec": "CSS 2.2", + "text": "Text direction: the direction and unicode-bidi properties", + "url": "https://drafts.csswg.org/css2/#direction" + } + }, + "/#dis-pos-flo": { + "current": { + "number": "9.7", + "spec": "CSS 2.2", + "text": "Relationships between display, position, and float", + "url": "https://drafts.csswg.org/css2/#dis-pos-flo" + } + }, + "/#display-prop": { + "current": { + "number": "9.2.4", + "spec": "CSS 2.2", + "text": "The display property", + "url": "https://drafts.csswg.org/css2/#display-prop" + } + }, + "/#doc-language": { + "current": { + "number": "1.4.1", + "spec": "CSS 2.2", + "text": "Document language elements and attributes", + "url": "https://drafts.csswg.org/css2/#doc-language" + } + }, + "/#dynamic-effects": { + "current": { + "number": "17.5.5", + "spec": "CSS 2.2", + "text": "Dynamic row and column effects", + "url": "https://drafts.csswg.org/css2/#dynamic-effects" + } + }, + "/#dynamic-outlines": { + "current": { + "number": "18.4", + "spec": "CSS 2.2", + "text": "Dynamic outlines: the outline property", + "url": "https://drafts.csswg.org/css2/#dynamic-outlines" + } + }, + "/#dynamic-pseudo-classes": { + "current": { + "number": "5.11.3", + "spec": "CSS 2.2", + "text": "The dynamic pseudo-classes: :hover, :active, and :focus", + "url": "https://drafts.csswg.org/css2/#dynamic-pseudo-classes" + } + }, + "/#egbidiwscollapse": { + "current": { + "number": "16.6.2", + "spec": "CSS 2.2", + "text": "Example of bidirectionality with white space collapsing", + "url": "https://drafts.csswg.org/css2/#egbidiwscollapse" + } + }, + "/#empty-cells": { + "current": { + "number": "17.6.1.1", + "spec": "CSS 2.2", + "text": "Borders and Backgrounds around empty cells: the empty-cells property", + "url": "https://drafts.csswg.org/css2/#empty-cells" + } + }, + "/#errors": { + "current": { + "number": "3.3", + "spec": "CSS 2.2", + "text": "Error conditions", + "url": "https://drafts.csswg.org/css2/#errors" + } + }, + "/#escaping": { + "current": { + "number": "4.4.1", + "spec": "CSS 2.2", + "text": "Referring to characters not represented in a character encoding", + "url": "https://drafts.csswg.org/css2/#escaping" + } + }, + "/#first-child": { + "current": { + "number": "5.11.1", + "spec": "CSS 2.2", + "text": ":first-child pseudo-class", + "url": "https://drafts.csswg.org/css2/#first-child" + } + }, + "/#first-letter": { + "current": { + "number": "5.12.2", + "spec": "CSS 2.2", + "text": "The :first-letter pseudo-element", + "url": "https://drafts.csswg.org/css2/#first-letter" + } + }, + "/#fixed-positioning": { + "current": { + "number": "9.6.1", + "spec": "CSS 2.2", + "text": "Fixed positioning", + "url": "https://drafts.csswg.org/css2/#fixed-positioning" + } + }, + "/#fixed-table-layout": { + "current": { + "number": "17.5.2.1", + "spec": "CSS 2.2", + "text": "Fixed table layout", + "url": "https://drafts.csswg.org/css2/#fixed-table-layout" + } + }, + "/#float-position": { + "current": { + "number": "9.5.1", + "spec": "CSS 2.2", + "text": "Positioning the float: the float property", + "url": "https://drafts.csswg.org/css2/#float-position" + } + }, + "/#float-replaced-width": { + "current": { + "number": "10.3.6", + "spec": "CSS 2.2", + "text": "Floating, replaced elements", + "url": "https://drafts.csswg.org/css2/#float-replaced-width" + } + }, + "/#float-width": { + "current": { + "number": "10.3.5", + "spec": "CSS 2.2", + "text": "Floating, non-replaced elements", + "url": "https://drafts.csswg.org/css2/#float-width" + } + }, + "/#floats": { + "current": { + "number": "9.5", + "spec": "CSS 2.2", + "text": "Floats", + "url": "https://drafts.csswg.org/css2/#floats" + } + }, + "/#flow-control": { + "current": { + "number": "9.5.2", + "spec": "CSS 2.2", + "text": "Controlling flow next to floats: the clear property", + "url": "https://drafts.csswg.org/css2/#flow-control" + } + }, + "/#font-boldness": { + "current": { + "number": "15.6", + "spec": "CSS 2.2", + "text": "Font boldness: the font-weight property", + "url": "https://drafts.csswg.org/css2/#font-boldness" + } + }, + "/#font-family-prop": { + "current": { + "number": "15.3", + "spec": "CSS 2.2", + "text": "Font family: the font-family property", + "url": "https://drafts.csswg.org/css2/#font-family-prop" + } + }, + "/#font-shorthand": { + "current": { + "number": "15.8", + "spec": "CSS 2.2", + "text": "Shorthand font property: the font property", + "url": "https://drafts.csswg.org/css2/#font-shorthand" + } + }, + "/#font-size-props": { + "current": { + "number": "15.7", + "spec": "CSS 2.2", + "text": "Font size: the font-size property", + "url": "https://drafts.csswg.org/css2/#font-size-props" + } + }, + "/#font-styling": { + "current": { + "number": "15.4", + "spec": "CSS 2.2", + "text": "Font styling: the font-style property", + "url": "https://drafts.csswg.org/css2/#font-styling" + } + }, + "/#fonts-intro": { + "current": { + "number": "15.1", + "spec": "CSS 2.2", + "text": "Introduction", + "url": "https://drafts.csswg.org/css2/#fonts-intro" + } + }, + "/#forced": { + "current": { + "number": "13.3.4", + "spec": "CSS 2.2", + "text": "Forced page breaks", + "url": "https://drafts.csswg.org/css2/#forced" + } + }, + "/#generated-text": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "12. Generated content, automatic numbering, and lists", + "url": "https://drafts.csswg.org/css2/#generated-text" + } + }, + "/#generic-font-families": { + "current": { + "number": "15.3.1", + "spec": "CSS 2.2", + "text": "Generic font families", + "url": "https://drafts.csswg.org/css2/#generic-font-families" + } + }, + "/#grammar": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Grammar", + "url": "https://drafts.csswg.org/css2/#grammar" + } + }, + "/#grouping": { + "current": { + "number": "5.2.1", + "spec": "CSS 2.2", + "text": "Grouping", + "url": "https://drafts.csswg.org/css2/#grouping" + } + }, + "/#height-layout": { + "current": { + "number": "17.5.3", + "spec": "CSS 2.2", + "text": "Table height algorithms", + "url": "https://drafts.csswg.org/css2/#height-layout" + } + }, + "/#html-tutorial": { + "current": { + "number": "2.1", + "spec": "CSS 2.2", + "text": "A brief CSS 2 tutorial for HTML", + "url": "https://drafts.csswg.org/css2/#html-tutorial" + } + }, + "/#id-selectors": { + "current": { + "number": "5.9", + "spec": "CSS 2.2", + "text": "ID selectors", + "url": "https://drafts.csswg.org/css2/#id-selectors" + } + }, + "/#images-and-longdesc": { + "current": { + "number": "1.4.5", + "spec": "CSS 2.2", + "text": "Images and long descriptions", + "url": "https://drafts.csswg.org/css2/#images-and-longdesc" + } + }, + "/#important-rules": { + "current": { + "number": "6.4.2", + "spec": "CSS 2.2", + "text": "!important rules", + "url": "https://drafts.csswg.org/css2/#important-rules" + } + }, + "/#indentation-prop": { + "current": { + "number": "16.1", + "spec": "CSS 2.2", + "text": "Indentation: the text-indent property", + "url": "https://drafts.csswg.org/css2/#indentation-prop" + } + }, + "/#informative": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Informative References", + "url": "https://drafts.csswg.org/css2/#informative" + } + }, + "/#inheritance": { + "current": { + "number": "6.2", + "spec": "CSS 2.2", + "text": "Inheritance", + "url": "https://drafts.csswg.org/css2/#inheritance" + } + }, + "/#inherited-prop": { + "current": { + "number": "1.4.2.4", + "spec": "CSS 2.2", + "text": "Inherited", + "url": "https://drafts.csswg.org/css2/#inherited-prop" + } + }, + "/#initial-value": { + "current": { + "number": "1.4.2.2", + "spec": "CSS 2.2", + "text": "Initial", + "url": "https://drafts.csswg.org/css2/#initial-value" + } + }, + "/#inline-boxes": { + "current": { + "number": "9.2.2", + "spec": "CSS 2.2", + "text": "Inline-level elements and inline boxes", + "url": "https://drafts.csswg.org/css2/#inline-boxes" + } + }, + "/#inline-formatting": { + "current": { + "number": "9.4.2", + "spec": "CSS 2.2", + "text": "Inline formatting contexts", + "url": "https://drafts.csswg.org/css2/#inline-formatting" + } + }, + "/#inline-non-replaced": { + "current": { + "number": "10.6.1", + "spec": "CSS 2.2", + "text": "Inline, non-replaced elements", + "url": "https://drafts.csswg.org/css2/#inline-non-replaced" + } + }, + "/#inline-replaced-height": { + "current": { + "number": "10.6.2", + "spec": "CSS 2.2", + "text": "Inline replaced elements, block-level replaced elements in normal flow, inline-block replaced elements in normal flow and floating replaced elements", + "url": "https://drafts.csswg.org/css2/#inline-replaced-height" + } + }, + "/#inline-replaced-width": { + "current": { + "number": "10.3.2", + "spec": "CSS 2.2", + "text": "Inline, replaced elements", + "url": "https://drafts.csswg.org/css2/#inline-replaced-width" + } + }, + "/#inline-width": { + "current": { + "number": "10.3.1", + "spec": "CSS 2.2", + "text": "Inline, non-replaced elements", + "url": "https://drafts.csswg.org/css2/#inline-width" + } + }, + "/#inlineblock-replaced-width": { + "current": { + "number": "10.3.10", + "spec": "CSS 2.2", + "text": "inline-block, replaced elements in normal flow", + "url": "https://drafts.csswg.org/css2/#inlineblock-replaced-width" + } + }, + "/#inlineblock-width": { + "current": { + "number": "10.3.9", + "spec": "CSS 2.2", + "text": "inline-block, non-replaced elements in normal flow", + "url": "https://drafts.csswg.org/css2/#inlineblock-width" + } + }, + "/#keywords": { + "current": { + "number": "4.1.2", + "spec": "CSS 2.2", + "text": "Keywords", + "url": "https://drafts.csswg.org/css2/#keywords" + } + }, + "/#lang": { + "current": { + "number": "5.11.4", + "spec": "CSS 2.2", + "text": "The language pseudo-class: :lang", + "url": "https://drafts.csswg.org/css2/#lang" + } + }, + "/#layers": { + "current": { + "number": "9.9", + "spec": "CSS 2.2", + "text": "Layered presentation", + "url": "https://drafts.csswg.org/css2/#layers" + } + }, + "/#leading": { + "current": { + "number": "10.8.1", + "spec": "CSS 2.2", + "text": "Leading and half-leading", + "url": "https://drafts.csswg.org/css2/#leading" + } + }, + "/#length-units": { + "current": { + "number": "4.3.2", + "spec": "CSS 2.2", + "text": "Lengths", + "url": "https://drafts.csswg.org/css2/#length-units" + } + }, + "/#line-height": { + "current": { + "number": "10.8", + "spec": "CSS 2.2", + "text": "Line height calculations: the line-height and vertical-align properties", + "url": "https://drafts.csswg.org/css2/#line-height" + } + }, + "/#lining-striking-props": { + "current": { + "number": "16.3.1", + "spec": "CSS 2.2", + "text": "Underlining, overlining, striking, and blinking: the text-decoration property", + "url": "https://drafts.csswg.org/css2/#lining-striking-props" + } + }, + "/#link-pseudo-classes": { + "current": { + "number": "5.11.2", + "spec": "CSS 2.2", + "text": "The link pseudo-classes: :link and :visited", + "url": "https://drafts.csswg.org/css2/#link-pseudo-classes" + } + }, + "/#list-style": { + "current": { + "number": "12.5.1", + "spec": "CSS 2.2", + "text": "Lists: the list-style-type, list-style-image, list-style-position, and list-style properties", + "url": "https://drafts.csswg.org/css2/#list-style" + } + }, + "/#lists": { + "current": { + "number": "12.5", + "spec": "CSS 2.2", + "text": "Lists", + "url": "https://drafts.csswg.org/css2/#lists" + } + }, + "/#magnification": { + "current": { + "number": "18.5", + "spec": "CSS 2.2", + "text": "Magnification", + "url": "https://drafts.csswg.org/css2/#magnification" + } + }, + "/#margin-properties": { + "current": { + "number": "8.3", + "spec": "CSS 2.2", + "text": "Margin properties: margin-top, margin-right, margin-bottom, margin-left, and margin", + "url": "https://drafts.csswg.org/css2/#margin-properties" + } + }, + "/#matching-attrs": { + "current": { + "number": "5.8.1", + "spec": "CSS 2.2", + "text": "Matching attributes and attribute values", + "url": "https://drafts.csswg.org/css2/#matching-attrs" + } + }, + "/#media-applies": { + "current": { + "number": "1.4.2.6", + "spec": "CSS 2.2", + "text": "Media groups", + "url": "https://drafts.csswg.org/css2/#media-applies" + } + }, + "/#media-groups": { + "current": { + "number": "7.3.1", + "spec": "CSS 2.2", + "text": "Media groups", + "url": "https://drafts.csswg.org/css2/#media-groups" + } + }, + "/#media-intro": { + "current": { + "number": "7.1", + "spec": "CSS 2.2", + "text": "Introduction to media types", + "url": "https://drafts.csswg.org/css2/#media-intro" + } + }, + "/#media-sheets": { + "current": { + "number": "7.2", + "spec": "CSS 2.2", + "text": "Specifying media-dependent style sheets", + "url": "https://drafts.csswg.org/css2/#media-sheets" + } + }, + "/#media-types": { + "current": { + "number": "7.3", + "spec": "CSS 2.2", + "text": "Recognized media types", + "url": "https://drafts.csswg.org/css2/#media-types" + } + }, + "/#min-max-heights": { + "current": { + "number": "10.7", + "spec": "CSS 2.2", + "text": "Minimum and maximum heights: min-height and max-height", + "url": "https://drafts.csswg.org/css2/#min-max-heights" + } + }, + "/#min-max-widths": { + "current": { + "number": "10.4", + "spec": "CSS 2.2", + "text": "Minimum and maximum widths: min-width and max-width", + "url": "https://drafts.csswg.org/css2/#min-max-widths" + } + }, + "/#model": { + "current": { + "number": "17.4", + "spec": "CSS 2.2", + "text": "Tables in the visual formatting model", + "url": "https://drafts.csswg.org/css2/#model" + } + }, + "/#mpb-examples": { + "current": { + "number": "8.2", + "spec": "CSS 2.2", + "text": "Example of margins, padding, and borders", + "url": "https://drafts.csswg.org/css2/#mpb-examples" + } + }, + "/#normal-block": { + "current": { + "number": "10.6.3", + "spec": "CSS 2.2", + "text": "Block-level non-replaced elements in normal flow when overflow computes to visible", + "url": "https://drafts.csswg.org/css2/#normal-block" + } + }, + "/#normal-flow": { + "current": { + "number": "9.4", + "spec": "CSS 2.2", + "text": "Normal flow", + "url": "https://drafts.csswg.org/css2/#normal-flow" + } + }, + "/#normative": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Normative References", + "url": "https://drafts.csswg.org/css2/#normative" + } + }, + "/#notes-and-examples": { + "current": { + "number": "1.4.4", + "spec": "CSS 2.2", + "text": "Notes and examples", + "url": "https://drafts.csswg.org/css2/#notes-and-examples" + } + }, + "/#numbers": { + "current": { + "number": "4.3.1", + "spec": "CSS 2.2", + "text": "Integers and real numbers", + "url": "https://drafts.csswg.org/css2/#numbers" + } + }, + "/#organization": { + "current": { + "number": "1.3", + "spec": "CSS 2.2", + "text": "How the specification is organized", + "url": "https://drafts.csswg.org/css2/#organization" + } + }, + "/#outline-focus": { + "current": { + "number": "18.4.1", + "spec": "CSS 2.2", + "text": "Outlines and the focus", + "url": "https://drafts.csswg.org/css2/#outline-focus" + } + }, + "/#outside-page-box": { + "current": { + "number": "13.2.3", + "spec": "CSS 2.2", + "text": "Content outside the page box", + "url": "https://drafts.csswg.org/css2/#outside-page-box" + } + }, + "/#overflow-clipping": { + "current": { + "number": "11.1", + "spec": "CSS 2.2", + "text": "Overflow and clipping", + "url": "https://drafts.csswg.org/css2/#overflow-clipping" + } + }, + "/#padding-properties": { + "current": { + "number": "8.4", + "spec": "CSS 2.2", + "text": "Padding properties: padding-top, padding-right, padding-bottom, padding-left, and padding", + "url": "https://drafts.csswg.org/css2/#padding-properties" + } + }, + "/#page-box": { + "current": { + "number": "13.2", + "spec": "CSS 2.2", + "text": "Page boxes: the @page rule", + "url": "https://drafts.csswg.org/css2/#page-box" + } + }, + "/#page-break-props": { + "current": { + "number": "13.3.1", + "spec": "CSS 2.2", + "text": "Page break properties: page-break-before, page-break-after, page-break-inside", + "url": "https://drafts.csswg.org/css2/#page-break-props" + } + }, + "/#page-breaks": { + "current": { + "number": "13.3", + "spec": "CSS 2.2", + "text": "Page breaks", + "url": "https://drafts.csswg.org/css2/#page-breaks" + } + }, + "/#page-cascade": { + "current": { + "number": "13.4", + "spec": "CSS 2.2", + "text": "Cascading in the page context", + "url": "https://drafts.csswg.org/css2/#page-cascade" + } + }, + "/#page-intro": { + "current": { + "number": "13.1", + "spec": "CSS 2.2", + "text": "Introduction to paged media", + "url": "https://drafts.csswg.org/css2/#page-intro" + } + }, + "/#page-margins": { + "current": { + "number": "13.2.1", + "spec": "CSS 2.2", + "text": "Page margins", + "url": "https://drafts.csswg.org/css2/#page-margins" + } + }, + "/#page-selectors": { + "current": { + "number": "13.2.2", + "spec": "CSS 2.2", + "text": "Page selectors: selecting left, right, and first pages", + "url": "https://drafts.csswg.org/css2/#page-selectors" + } + }, + "/#painting-order": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Painting order", + "url": "https://drafts.csswg.org/css2/#painting-order" + } + }, + "/#parsing-errors": { + "current": { + "number": "4.2", + "spec": "CSS 2.2", + "text": "Rules for handling parsing errors", + "url": "https://drafts.csswg.org/css2/#parsing-errors" + } + }, + "/#pattern-matching": { + "current": { + "number": "5.1", + "spec": "CSS 2.2", + "text": "Pattern matching", + "url": "https://drafts.csswg.org/css2/#pattern-matching" + } + }, + "/#percentage-units": { + "current": { + "number": "4.3.3", + "spec": "CSS 2.2", + "text": "Percentages", + "url": "https://drafts.csswg.org/css2/#percentage-units" + } + }, + "/#percentage-wrt": { + "current": { + "number": "1.4.2.5", + "spec": "CSS 2.2", + "text": "Percentage values", + "url": "https://drafts.csswg.org/css2/#percentage-wrt" + } + }, + "/#position-props": { + "current": { + "number": "9.3.2", + "spec": "CSS 2.2", + "text": "Box offsets: top, right, bottom, left", + "url": "https://drafts.csswg.org/css2/#position-props" + } + }, + "/#positioning-scheme": { + "current": { + "number": "9.3", + "spec": "CSS 2.2", + "text": "Positioning schemes", + "url": "https://drafts.csswg.org/css2/#positioning-scheme" + } + }, + "/#preshint": { + "current": { + "number": "6.4.4", + "spec": "CSS 2.2", + "text": "Precedence of non-CSS presentational hints", + "url": "https://drafts.csswg.org/css2/#preshint" + } + }, + "/#processing-model": { + "current": { + "number": "2.3", + "spec": "CSS 2.2", + "text": "The CSS 2 processing model", + "url": "https://drafts.csswg.org/css2/#processing-model" + } + }, + "/#property-defs": { + "current": { + "number": "1.4.2", + "spec": "CSS 2.2", + "text": "CSS property definitions", + "url": "https://drafts.csswg.org/css2/#property-defs" + } + }, + "/#pseudo-class-selectors": { + "current": { + "number": "5.11", + "spec": "CSS 2.2", + "text": "Pseudo-classes", + "url": "https://drafts.csswg.org/css2/#pseudo-class-selectors" + } + }, + "/#pseudo-element-selectors": { + "current": { + "number": "5.12", + "spec": "CSS 2.2", + "text": "Pseudo-elements", + "url": "https://drafts.csswg.org/css2/#pseudo-element-selectors" + } + }, + "/#pseudo-elements": { + "current": { + "number": "5.10", + "spec": "CSS 2.2", + "text": "Pseudo-elements and pseudo-classes", + "url": "https://drafts.csswg.org/css2/#pseudo-elements" + } + }, + "/#quotes": { + "current": { + "number": "12.3", + "spec": "CSS 2.2", + "text": "Quotation marks", + "url": "https://drafts.csswg.org/css2/#quotes" + } + }, + "/#quotes-insert": { + "current": { + "number": "12.3.2", + "spec": "CSS 2.2", + "text": "Inserting quotes with the content property", + "url": "https://drafts.csswg.org/css2/#quotes-insert" + } + }, + "/#quotes-specify": { + "current": { + "number": "12.3.1", + "spec": "CSS 2.2", + "text": "Specifying quotes with the quotes property", + "url": "https://drafts.csswg.org/css2/#quotes-specify" + } + }, + "/#reading": { + "current": { + "number": "1.2", + "spec": "CSS 2.2", + "text": "Reading the specification", + "url": "https://drafts.csswg.org/css2/#reading" + } + }, + "/#relative-positioning": { + "current": { + "number": "9.4.3", + "spec": "CSS 2.2", + "text": "Relative positioning", + "url": "https://drafts.csswg.org/css2/#relative-positioning" + } + }, + "/#root-height": { + "current": { + "number": "10.6.7", + "spec": "CSS 2.2", + "text": "auto heights for block formatting context roots", + "url": "https://drafts.csswg.org/css2/#root-height" + } + }, + "/#rule-sets": { + "current": { + "number": "4.1.7", + "spec": "CSS 2.2", + "text": "Rule sets, declaration blocks, and selectors", + "url": "https://drafts.csswg.org/css2/#rule-sets" + } + }, + "/#run-in": { + "current": { + "number": "9.2.3", + "spec": "CSS 2.2", + "text": "Run-in boxes", + "url": "https://drafts.csswg.org/css2/#run-in" + } + }, + "/#scanner": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Lexical scanner", + "url": "https://drafts.csswg.org/css2/#scanner" + } + }, + "/#scope": { + "current": { + "number": "12.4.1", + "spec": "CSS 2.2", + "text": "Nested counters and scope", + "url": "https://drafts.csswg.org/css2/#scope" + } + }, + "/#selector-syntax": { + "current": { + "number": "5.2", + "spec": "CSS 2.2", + "text": "Selector syntax", + "url": "https://drafts.csswg.org/css2/#selector-syntax" + } + }, + "/#separated-borders": { + "current": { + "number": "17.6.1", + "spec": "CSS 2.2", + "text": "The separated borders model", + "url": "https://drafts.csswg.org/css2/#separated-borders" + } + }, + "/#shorthand": { + "current": { + "number": "1.4.3", + "spec": "CSS 2.2", + "text": "Shorthand properties", + "url": "https://drafts.csswg.org/css2/#shorthand" + } + }, + "/#small-caps": { + "current": { + "number": "15.5", + "spec": "CSS 2.2", + "text": "Small-caps: the font-variant property", + "url": "https://drafts.csswg.org/css2/#small-caps" + } + }, + "/#spacing-props": { + "current": { + "number": "16.4", + "spec": "CSS 2.2", + "text": "Letter and word spacing: the letter-spacing and word-spacing properties", + "url": "https://drafts.csswg.org/css2/#spacing-props" + } + }, + "/#specificity": { + "current": { + "number": "6.4.3", + "spec": "CSS 2.2", + "text": "Calculating a selector’s specificity", + "url": "https://drafts.csswg.org/css2/#specificity" + } + }, + "/#stacking-defs": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Definitions", + "url": "https://drafts.csswg.org/css2/#stacking-defs" + } + }, + "/#stacking-notes": { + "current": { + "number": "", + "spec": "CSS 2.2", + "text": "Notes", + "url": "https://drafts.csswg.org/css2/#stacking-notes" + } + }, + "/#statements": { + "current": { + "number": "4.1.4", + "spec": "CSS 2.2", + "text": "Statements", + "url": "https://drafts.csswg.org/css2/#statements" + } + }, + "/#strings": { "current": { - "number": "10.6", + "number": "4.3.7", "spec": "CSS 2.2", - "text": "Calculating heights and margins", - "url": "https://drafts.csswg.org/css2/#Computing_heights_and_margins" + "text": "Strings", + "url": "https://drafts.csswg.org/css2/#strings" } }, - "#Computing_widths_and_margins": { + "/#syntax": { "current": { - "number": "10.3", + "number": "4.1", "spec": "CSS 2.2", - "text": "Calculating widths and margins", - "url": "https://drafts.csswg.org/css2/#Computing_widths_and_margins" + "text": "Syntax", + "url": "https://drafts.csswg.org/css2/#syntax" } }, - "#W3C-doctype": { - "snapshot": { - "number": "", + "/#system-colors": { + "current": { + "number": "18.2", "spec": "CSS 2.2", - "text": "W3C First Public Working Draft 12 April 2016", - "url": "https://www.w3.org/TR/CSS22/#W3C-doctype" + "text": "System Colors", + "url": "https://drafts.csswg.org/css2/#system-colors" } }, - "#about": { + "/#table-border-styles": { "current": { - "number": "1", + "number": "17.6.3", "spec": "CSS 2.2", - "text": "About the CSS 2.2 Specification", - "url": "https://drafts.csswg.org/css2/#about" + "text": "Border styles", + "url": "https://drafts.csswg.org/css2/#table-border-styles" } }, - "#abs-non-replaced-height": { + "/#table-display": { "current": { - "number": "10.6.4", + "number": "17.2", "spec": "CSS 2.2", - "text": "Absolutely positioned, non-replaced elements", - "url": "https://drafts.csswg.org/css2/#abs-non-replaced-height" + "text": "The CSS table model", + "url": "https://drafts.csswg.org/css2/#table-display" } }, - "#abs-non-replaced-width": { + "/#table-layers": { "current": { - "number": "10.3.7", + "number": "17.5.1", "spec": "CSS 2.2", - "text": "Absolutely positioned, non-replaced elements", - "url": "https://drafts.csswg.org/css2/#abs-non-replaced-width" + "text": "Table layers and transparency", + "url": "https://drafts.csswg.org/css2/#table-layers" } }, - "#abs-replaced-height": { + "/#table-layout": { "current": { - "number": "10.6.5", + "number": "17.5", "spec": "CSS 2.2", - "text": "Absolutely positioned, replaced elements", - "url": "https://drafts.csswg.org/css2/#abs-replaced-height" + "text": "Visual layout of table contents", + "url": "https://drafts.csswg.org/css2/#table-layout" } }, - "#abs-replaced-width": { + "/#tables-intro": { "current": { - "number": "10.3.8", + "number": "17.1", "spec": "CSS 2.2", - "text": "Absolutely positioned, replaced elements", - "url": "https://drafts.csswg.org/css2/#abs-replaced-width" + "text": "Introduction to tables", + "url": "https://drafts.csswg.org/css2/#tables-intro" } }, - "#absolute-positioning": { + "/#the-canvas": { "current": { - "number": "9.6", + "number": "2.3.1", "spec": "CSS 2.2", - "text": "Absolute positioning", - "url": "https://drafts.csswg.org/css2/#absolute-positioning" + "text": "The canvas", + "url": "https://drafts.csswg.org/css2/#the-canvas" } }, - "#abstract": { + "/#the-height-property": { "current": { - "number": "", + "number": "10.5", "spec": "CSS 2.2", - "text": "Abstract", - "url": "https://drafts.csswg.org/css2/#abstract" - }, - "snapshot": { + "text": "Content height: the height property", + "url": "https://drafts.csswg.org/css2/#the-height-property" + } + }, + "/#the-page": { + "current": { "number": "", "spec": "CSS 2.2", - "text": "Abstract", - "url": "https://www.w3.org/TR/CSS22/#abstract" + "text": "13. Paged media", + "url": "https://drafts.csswg.org/css2/#the-page" } }, - "#acknowledgements": { + "/#the-width-property": { "current": { - "number": "1.5", + "number": "10.2", "spec": "CSS 2.2", - "text": "Acknowledgments", - "url": "https://drafts.csswg.org/css2/#acknowledgements" + "text": "Content width: the width property", + "url": "https://drafts.csswg.org/css2/#the-width-property" } }, - "#actual-values": { + "/#tokenization": { "current": { - "number": "6.1.4", + "number": "4.1.1", "spec": "CSS 2.2", - "text": "Actual values Info about the ' Actual values' definition.#actual-valueReferenced in: 3.2. UA Conformance 4.3.2. Lengths", - "url": "https://drafts.csswg.org/css2/#actual-values" + "text": "Tokenization", + "url": "https://drafts.csswg.org/css2/#tokenization" } }, - "#addressing": { + "/#tokenizer-diffs": { "current": { - "number": "2.3.2", + "number": "", "spec": "CSS 2.2", - "text": "CSS 2 addressing model", - "url": "https://drafts.csswg.org/css2/#addressing" + "text": "Comparison of tokenization in CSS2 (1998) and CSS1", + "url": "https://drafts.csswg.org/css2/#tokenizer-diffs" } }, - "#adjacent-selectors": { + "/#type-selectors": { "current": { - "number": "5.7", + "number": "5.4", "spec": "CSS 2.2", - "text": "Adjacent sibling selectors", - "url": "https://drafts.csswg.org/css2/#adjacent-selectors" + "text": "Type selectors", + "url": "https://drafts.csswg.org/css2/#type-selectors" } }, - "#algorithm": { + "/#undisplayed-counters": { "current": { - "number": "15.2", + "number": "12.4.3", "spec": "CSS 2.2", - "text": "Font matching algorithm", - "url": "https://drafts.csswg.org/css2/#algorithm" + "text": "Counters in elements with 'display: none'", + "url": "https://drafts.csswg.org/css2/#undisplayed-counters" } }, - "#alignment-prop": { + "/#universal-selector": { "current": { - "number": "16.2", + "number": "5.3", "spec": "CSS 2.2", - "text": "Alignment: the text-align property", - "url": "https://drafts.csswg.org/css2/#alignment-prop" + "text": "Universal selector", + "url": "https://drafts.csswg.org/css2/#universal-selector" } }, - "#allowed-page-breaks": { + "/#unsupported-values": { "current": { - "number": "13.3.3", + "number": "4.3.8", "spec": "CSS 2.2", - "text": "Allowed page breaks", - "url": "https://drafts.csswg.org/css2/#allowed-page-breaks" + "text": "Unsupported Values", + "url": "https://drafts.csswg.org/css2/#unsupported-values" } }, - "#anonymous%E2%91%A0": { + "/#uri": { "current": { - "number": "9.2.2.1", + "number": "4.3.4", "spec": "CSS 2.2", - "text": "Anonymous inline boxes", - "url": "https://drafts.csswg.org/css2/#anonymous%E2%91%A0" + "text": "URLs and URIs", + "url": "https://drafts.csswg.org/css2/#uri" } }, - "#anonymous-block-level": { + "/#value-defs": { "current": { - "number": "9.2.1.1", + "number": "1.4.2.1", "spec": "CSS 2.2", - "text": "Anonymous block boxes", - "url": "https://drafts.csswg.org/css2/#anonymous-block-level" + "text": "Value", + "url": "https://drafts.csswg.org/css2/#value-defs" } }, - "#anonymous-boxes": { + "/#value-stages": { "current": { - "number": "17.2.1", + "number": "6.1", "spec": "CSS 2.2", - "text": "Anonymous table objects", - "url": "https://drafts.csswg.org/css2/#anonymous-boxes" + "text": "Specified, computed, and actual values", + "url": "https://drafts.csswg.org/css2/#value-stages" } }, - "#app-changes": { + "/#vendor-keyword-history": { "current": { - "number": "", + "number": "4.1.2.2", "spec": "CSS 2.2", - "text": "Appendix C: Changes", - "url": "https://drafts.csswg.org/css2/#app-changes" + "text": "Informative Historical Notes", + "url": "https://drafts.csswg.org/css2/#vendor-keyword-history" } }, - "#app-grammar": { + "/#vendor-keywords": { "current": { - "number": "", + "number": "4.1.2.1", "spec": "CSS 2.2", - "text": "Appendix G: Grammar of CSS 2", - "url": "https://drafts.csswg.org/css2/#app-grammar" + "text": "Vendor-specific extensions", + "url": "https://drafts.csswg.org/css2/#vendor-keywords" } }, - "#applies-to": { + "/#viewport": { "current": { - "number": "1.4.2.3", + "number": "9.1.1", "spec": "CSS 2.2", - "text": "Applies to", - "url": "https://drafts.csswg.org/css2/#applies-to" + "text": "The viewport", + "url": "https://drafts.csswg.org/css2/#viewport" } }, - "#assigning": { + "/#visibility": { "current": { - "number": "6", + "number": "11.2", "spec": "CSS 2.2", - "text": "Assigning property values, Cascading, and Inheritance", - "url": "https://drafts.csswg.org/css2/#assigning" + "text": "Visibility: the visibility property", + "url": "https://drafts.csswg.org/css2/#visibility" } }, - "#at-import": { + "/#visual-model-intro": { "current": { - "number": "6.3", + "number": "9.1", "spec": "CSS 2.2", - "text": "The @import rule", - "url": "https://drafts.csswg.org/css2/#at-import" + "text": "Introduction to the visual formatting model", + "url": "https://drafts.csswg.org/css2/#visual-model-intro" } }, - "#at-media-rule": { + "/#white-space-model": { "current": { - "number": "7.2.1", + "number": "16.6.1", "spec": "CSS 2.2", - "text": "The @media Info about the '@media' definition.#at-ruledef-mediaReferenced in: 4.1.5. At-rules 7.2. Specifying media-dependent style sheets 7.2.1. The @media rule rule", - "url": "https://drafts.csswg.org/css2/#at-media-rule" + "text": "The white-space processing model", + "url": "https://drafts.csswg.org/css2/#white-space-model" } }, - "#at-rules": { + "/#white-space-prop": { "current": { - "number": "4.1.5", + "number": "16.6", "spec": "CSS 2.2", - "text": "At-rules Info about the ' At-rules' definition.#at-rules-dfnReferenced in: 4.1.4. Statements", - "url": "https://drafts.csswg.org/css2/#at-rules" + "text": "White space: the white-space property", + "url": "https://drafts.csswg.org/css2/#white-space-prop" } }, - "#attribute-selectors": { + "/#width-layout": { "current": { - "number": "5.8", + "number": "17.5.2", "spec": "CSS 2.2", - "text": "Attribute selectors", - "url": "https://drafts.csswg.org/css2/#attribute-selectors" + "text": "Table width algorithms: the table-layout property", + "url": "https://drafts.csswg.org/css2/#width-layout" } }, - "#aural": { + "/#xml-tutorial": { "current": { - "number": "", + "number": "2.2", "spec": "CSS 2.2", - "text": "Appendix A: Aural style sheets", - "url": "https://drafts.csswg.org/css2/#aural" + "text": "A brief CSS 2 tutorial for XML", + "url": "https://drafts.csswg.org/css2/#xml-tutorial" } }, - "#auto-table-layout": { + "/#z-index": { "current": { - "number": "17.5.2.2", + "number": "9.9.1", "spec": "CSS 2.2", - "text": "Automatic table layout", - "url": "https://drafts.csswg.org/css2/#auto-table-layout" + "text": "Specifying the stack level: the z-index property", + "url": "https://drafts.csswg.org/css2/#z-index" } }, - "#background": { - "current": { - "number": "14.2", + "/about#acknowledgements": { + "snapshot": { + "number": "1.5", "spec": "CSS 2.2", - "text": "The background", - "url": "https://drafts.csswg.org/css2/#background" + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/CSS22/about.html#acknowledgements" } }, - "#background-properties": { - "current": { - "number": "14.2.1", + "/about#applies-to": { + "snapshot": { + "number": "1.4.2.3", "spec": "CSS 2.2", - "text": "Background properties: background-color, background-image, background-repeat, background-attachment, background-position, and background", - "url": "https://drafts.csswg.org/css2/#background-properties" + "text": "Applies to", + "url": "https://www.w3.org/TR/CSS22/about.html#applies-to" } }, - "#before-after-content": { - "current": { - "number": "12.1", + "/about#computed-defs": { + "snapshot": { + "number": "1.4.2.7", "spec": "CSS 2.2", - "text": "The :before Info about the ':before' definition.#selectordef-beforeReferenced in: 5.12.2. The :first-letter pseudo-element 5.12.3. The :before and :after pseudo-elements Definitions and :after Info about the ':after' definition.#selectordef-afterReferenced in: 5.12.2. The :first-letter pseudo-element 5.12.3. The :before and :after pseudo-elements pseudo-elements", - "url": "https://drafts.csswg.org/css2/#before-after-content" + "text": "Computed value", + "url": "https://www.w3.org/TR/CSS22/about.html#computed-defs" } }, - "#before-and-after": { - "current": { - "number": "5.12.3", + "/about#conventions": { + "snapshot": { + "number": "1.4", "spec": "CSS 2.2", - "text": "The :before and :after pseudo-elements", - "url": "https://drafts.csswg.org/css2/#before-and-after" + "text": "Conventions", + "url": "https://www.w3.org/TR/CSS22/about.html#conventions" + } + }, + "/about#css2.2-v-css2": { + "snapshot": { + "number": "1.1", + "spec": "CSS 2.2", + "text": "CSS 2.2 vs CSS 2", + "url": "https://www.w3.org/TR/CSS22/about.html#css2.2-v-css2" + } + }, + "/about#doc-language": { + "snapshot": { + "number": "1.4.1", + "spec": "CSS 2.2", + "text": "Document language elements and attributes", + "url": "https://www.w3.org/TR/CSS22/about.html#doc-language" + } + }, + "/about#images-and-longdesc": { + "snapshot": { + "number": "1.4.5", + "spec": "CSS 2.2", + "text": "Images and long descriptions", + "url": "https://www.w3.org/TR/CSS22/about.html#images-and-longdesc" + } + }, + "/about#inherited-prop": { + "snapshot": { + "number": "1.4.2.4", + "spec": "CSS 2.2", + "text": "Inherited", + "url": "https://www.w3.org/TR/CSS22/about.html#inherited-prop" + } + }, + "/about#initial-value": { + "snapshot": { + "number": "1.4.2.2", + "spec": "CSS 2.2", + "text": "Initial", + "url": "https://www.w3.org/TR/CSS22/about.html#initial-value" } }, - "#best-page-breaks": { - "current": { - "number": "13.3.5", + "/about#media-applies": { + "snapshot": { + "number": "1.4.2.6", "spec": "CSS 2.2", - "text": "\"Best\" page breaks", - "url": "https://drafts.csswg.org/css2/#best-page-breaks" + "text": "Media groups", + "url": "https://www.w3.org/TR/CSS22/about.html#media-applies" } }, - "#bidi-box-model": { - "current": { - "number": "8.6", + "/about#notes-and-examples": { + "snapshot": { + "number": "1.4.4", "spec": "CSS 2.2", - "text": "The box model for inline elements in bidirectional context", - "url": "https://drafts.csswg.org/css2/#bidi-box-model" + "text": "Notes and examples", + "url": "https://www.w3.org/TR/CSS22/about.html#notes-and-examples" } }, - "#block": { - "current": { - "number": "4.1.6", + "/about#organization": { + "snapshot": { + "number": "1.3", "spec": "CSS 2.2", - "text": "Blocks", - "url": "https://drafts.csswg.org/css2/#block" + "text": "How the specification is organized", + "url": "https://www.w3.org/TR/CSS22/about.html#organization" } }, - "#block-boxes": { - "current": { - "number": "9.2.1", + "/about#percentage-wrt": { + "snapshot": { + "number": "1.4.2.5", "spec": "CSS 2.2", - "text": "Block-level elements and block boxes", - "url": "https://drafts.csswg.org/css2/#block-boxes" + "text": "Percentage values", + "url": "https://www.w3.org/TR/CSS22/about.html#percentage-wrt" } }, - "#block-formatting": { - "current": { - "number": "9.4.1", + "/about#property-defs": { + "snapshot": { + "number": "1.4.2", "spec": "CSS 2.2", - "text": "Block formatting contexts", - "url": "https://drafts.csswg.org/css2/#block-formatting" + "text": "CSS property definitions", + "url": "https://www.w3.org/TR/CSS22/about.html#property-defs" } }, - "#block-replaced-width": { - "current": { - "number": "10.3.4", + "/about#q0": { + "snapshot": { + "number": "1", "spec": "CSS 2.2", - "text": "Block-level, replaced elements in normal flow", - "url": "https://drafts.csswg.org/css2/#block-replaced-width" + "text": "About the CSS 2.2 Specification", + "url": "https://www.w3.org/TR/CSS22/about.html#q0" } }, - "#block-root-margin": { - "current": { - "number": "10.6.6", + "/about#reading": { + "snapshot": { + "number": "1.2", "spec": "CSS 2.2", - "text": "Complicated cases", - "url": "https://drafts.csswg.org/css2/#block-root-margin" + "text": "Reading the specification", + "url": "https://www.w3.org/TR/CSS22/about.html#reading" } }, - "#blockwidth": { - "current": { - "number": "10.3.3", + "/about#shorthand": { + "snapshot": { + "number": "1.4.3", "spec": "CSS 2.2", - "text": "Block-level, non-replaced elements in normal flow", - "url": "https://drafts.csswg.org/css2/#blockwidth" + "text": "Shorthand properties", + "url": "https://www.w3.org/TR/CSS22/about.html#shorthand" } }, - "#border-color-properties": { - "current": { - "number": "8.5.2", + "/about#value-defs": { + "snapshot": { + "number": "1.4.2.1", "spec": "CSS 2.2", - "text": "Border color: border-top-color, border-right-color, border-bottom-color, border-left-color, and border-color", - "url": "https://drafts.csswg.org/css2/#border-color-properties" + "text": "Value", + "url": "https://www.w3.org/TR/CSS22/about.html#value-defs" } }, - "#border-conflict-resolution": { - "current": { - "number": "17.6.2.1", + "/aural#Emacspeak": { + "snapshot": { + "number": "A.13", "spec": "CSS 2.2", - "text": "Border conflict resolution", - "url": "https://drafts.csswg.org/css2/#border-conflict-resolution" + "text": "Emacspeak", + "url": "https://www.w3.org/TR/CSS22/aural.html#Emacspeak" } }, - "#border-properties": { - "current": { - "number": "8.5", + "/aural#angles": { + "snapshot": { + "number": "A.2.1", "spec": "CSS 2.2", - "text": "Border properties", - "url": "https://drafts.csswg.org/css2/#border-properties" + "text": "Angles", + "url": "https://www.w3.org/TR/CSS22/aural.html#angles" } }, - "#border-shorthand-properties": { - "current": { - "number": "8.5.4", + "/aural#aural-intro": { + "snapshot": { + "number": "A.2", "spec": "CSS 2.2", - "text": "Border shorthand properties: border-top, border-right, border-bottom, border-left, and border", - "url": "https://drafts.csswg.org/css2/#border-shorthand-properties" + "text": "Introduction to aural style sheets", + "url": "https://www.w3.org/TR/CSS22/aural.html#aural-intro" } }, - "#border-style-properties": { - "current": { - "number": "8.5.3", + "/aural#aural-media-group": { + "snapshot": { + "number": "A.1", "spec": "CSS 2.2", - "text": "Border style: border-top-style, border-right-style, border-bottom-style, border-left-style, and border-style", - "url": "https://drafts.csswg.org/css2/#border-style-properties" + "text": "The media types 'aural' and 'speech'", + "url": "https://www.w3.org/TR/CSS22/aural.html#aural-media-group" } }, - "#border-width-properties": { - "current": { - "number": "8.5.1", + "/aural#aural-tables": { + "snapshot": { + "number": "A.11", "spec": "CSS 2.2", - "text": "Border width: border-top-width, border-right-width, border-bottom-width, border-left-width, and border-width", - "url": "https://drafts.csswg.org/css2/#border-width-properties" + "text": "Audio rendering of tables", + "url": "https://www.w3.org/TR/CSS22/aural.html#aural-tables" } }, - "#borders": { - "current": { - "number": "17.6", + "/aural#cue-props": { + "snapshot": { + "number": "A.6", "spec": "CSS 2.2", - "text": "Borders", - "url": "https://drafts.csswg.org/css2/#borders" + "text": "Cue properties: 'cue-before', 'cue-after', and 'cue'", + "url": "https://www.w3.org/TR/CSS22/aural.html#cue-props" } }, - "#box-dimensions": { - "current": { - "number": "8.1", + "/aural#frequencies": { + "snapshot": { + "number": "A.2.3", "spec": "CSS 2.2", - "text": "Box dimensions", - "url": "https://drafts.csswg.org/css2/#box-dimensions" + "text": "Frequencies", + "url": "https://www.w3.org/TR/CSS22/aural.html#frequencies" } }, - "#box-gen": { - "current": { - "number": "9.2", + "/aural#mixing-props": { + "snapshot": { + "number": "A.7", "spec": "CSS 2.2", - "text": "Controlling box generation", - "url": "https://drafts.csswg.org/css2/#box-gen" + "text": "Mixing properties: 'play-during'", + "url": "https://www.w3.org/TR/CSS22/aural.html#mixing-props" } }, - "#box-model": { - "current": { - "number": "8", + "/aural#pause-props": { + "snapshot": { + "number": "A.5", "spec": "CSS 2.2", - "text": "Box model", - "url": "https://drafts.csswg.org/css2/#box-model" + "text": "Pause properties: 'pause-before', 'pause-after', and 'pause'", + "url": "https://www.w3.org/TR/CSS22/aural.html#pause-props" } }, - "#break-inside": { - "current": { - "number": "13.3.2", + "/aural#q0": { + "snapshot": { + "number": "A", "spec": "CSS 2.2", - "text": "Breaks inside elements: orphans, widows", - "url": "https://drafts.csswg.org/css2/#break-inside" + "text": "Aural style sheets", + "url": "https://www.w3.org/TR/CSS22/aural.html#q0" } }, - "#caps-prop": { - "current": { - "number": "16.5", + "/aural#sample": { + "snapshot": { + "number": "A.12", "spec": "CSS 2.2", - "text": "Capitalization: the text-transform property", - "url": "https://drafts.csswg.org/css2/#caps-prop" + "text": "Sample style sheet for HTML", + "url": "https://www.w3.org/TR/CSS22/aural.html#sample" } }, - "#caption-position": { - "current": { - "number": "17.4.1", + "/aural#spatial-props": { + "snapshot": { + "number": "A.8", "spec": "CSS 2.2", - "text": "Caption position and alignment", - "url": "https://drafts.csswg.org/css2/#caption-position" + "text": "Spatial properties: 'azimuth' and 'elevation'", + "url": "https://www.w3.org/TR/CSS22/aural.html#spatial-props" } }, - "#cascade": { - "current": { - "number": "6.4", + "/aural#speak-headers": { + "snapshot": { + "number": "A.11.1", "spec": "CSS 2.2", - "text": "The cascade", - "url": "https://drafts.csswg.org/css2/#cascade" + "text": "Speaking headers: the 'speak-header' property", + "url": "https://www.w3.org/TR/CSS22/aural.html#speak-headers" } }, - "#cascading-order": { - "current": { - "number": "6.4.1", + "/aural#speaking-props": { + "snapshot": { + "number": "A.4", "spec": "CSS 2.2", - "text": "Cascading order", - "url": "https://drafts.csswg.org/css2/#cascading-order" + "text": "Speaking properties: 'speak'", + "url": "https://www.w3.org/TR/CSS22/aural.html#speaking-props" } }, - "#changes": { - "current": { - "number": "", + "/aural#speech-props": { + "snapshot": { + "number": "A.10", "spec": "CSS 2.2", - "text": "Changes", - "url": "https://drafts.csswg.org/css2/#changes" + "text": "Speech properties: 'speak-punctuation' and 'speak-numeral'", + "url": "https://www.w3.org/TR/CSS22/aural.html#speech-props" } }, - "#characters": { - "current": { - "number": "4.1.3", + "/aural#times": { + "snapshot": { + "number": "A.2.2", "spec": "CSS 2.2", - "text": "Characters and case", - "url": "https://drafts.csswg.org/css2/#characters" + "text": "Times", + "url": "https://www.w3.org/TR/CSS22/aural.html#times" } }, - "#charset": { - "current": { - "number": "4.4", + "/aural#voice-char-props": { + "snapshot": { + "number": "A.9", "spec": "CSS 2.2", - "text": "CSS style sheet representation", - "url": "https://drafts.csswg.org/css2/#charset" + "text": "Voice characteristic properties: 'speech-rate', 'voice-family', 'pitch', 'pitch-range', 'stress', and 'richness'", + "url": "https://www.w3.org/TR/CSS22/aural.html#voice-char-props" } }, - "#child-selectors": { - "current": { - "number": "5.6", + "/aural#volume-props": { + "snapshot": { + "number": "A.3", "spec": "CSS 2.2", - "text": "Child selectors", - "url": "https://drafts.csswg.org/css2/#child-selectors" + "text": "Volume properties: 'volume'", + "url": "https://www.w3.org/TR/CSS22/aural.html#volume-props" } }, - "#choose-position": { - "current": { - "number": "9.3.1", + "/box#bidi-box-model": { + "snapshot": { + "number": "8.6", "spec": "CSS 2.2", - "text": "Choosing a positioning scheme: position property", - "url": "https://drafts.csswg.org/css2/#choose-position" + "text": "The box model for inline elements in bidirectional context", + "url": "https://www.w3.org/TR/CSS22/box.html#bidi-box-model" } }, - "#clarifications": { - "current": { - "number": "", + "/box#border-color-properties": { + "snapshot": { + "number": "8.5.2", "spec": "CSS 2.2", - "text": "Clarifications", - "url": "https://drafts.csswg.org/css2/#clarifications" + "text": "Border color: 'border-top-color', 'border-right-color', 'border-bottom-color', 'border-left-color', and 'border-color'", + "url": "https://www.w3.org/TR/CSS22/box.html#border-color-properties" } }, - "#class-html": { - "current": { - "number": "5.8.3", + "/box#border-properties": { + "snapshot": { + "number": "8.5", "spec": "CSS 2.2", - "text": "Class selectors", - "url": "https://drafts.csswg.org/css2/#class-html" + "text": "Border properties", + "url": "https://www.w3.org/TR/CSS22/box.html#border-properties" } }, - "#clipping": { - "current": { - "number": "11.1.2", + "/box#border-shorthand-properties": { + "snapshot": { + "number": "8.5.4", "spec": "CSS 2.2", - "text": "Clipping: the clip property", - "url": "https://drafts.csswg.org/css2/#clipping" + "text": "Border shorthand properties: 'border-top', 'border-right', 'border-bottom', 'border-left', and 'border'", + "url": "https://www.w3.org/TR/CSS22/box.html#border-shorthand-properties" } }, - "#collapsing-borders": { - "current": { - "number": "17.6.2", + "/box#border-style-properties": { + "snapshot": { + "number": "8.5.3", "spec": "CSS 2.2", - "text": "The collapsing border model", - "url": "https://drafts.csswg.org/css2/#collapsing-borders" + "text": "Border style: 'border-top-style', 'border-right-style', 'border-bottom-style', 'border-left-style', and 'border-style'", + "url": "https://www.w3.org/TR/CSS22/box.html#border-style-properties" } }, - "#collapsing-margins": { - "current": { - "number": "8.3.1", + "/box#border-width-properties": { + "snapshot": { + "number": "8.5.1", "spec": "CSS 2.2", - "text": "Collapsing margins", - "url": "https://drafts.csswg.org/css2/#collapsing-margins" + "text": "Border width: 'border-top-width', 'border-right-width', 'border-bottom-width', 'border-left-width', and 'border-width'", + "url": "https://www.w3.org/TR/CSS22/box.html#border-width-properties" } }, - "#color-bg": { - "current": { - "number": "", + "/box#box-dimensions": { + "snapshot": { + "number": "8.1", "spec": "CSS 2.2", - "text": "14. Colors and Backgrounds", - "url": "https://drafts.csswg.org/css2/#color-bg" + "text": "Box dimensions", + "url": "https://www.w3.org/TR/CSS22/box.html#box-dimensions" } }, - "#color-units": { - "current": { - "number": "4.3.6", + "/box#box-model": { + "snapshot": { + "number": "8", "spec": "CSS 2.2", - "text": "Colors", - "url": "https://drafts.csswg.org/css2/#color-units" + "text": "Box model", + "url": "https://www.w3.org/TR/CSS22/box.html#box-model" } }, - "#colors": { - "current": { - "number": "14.1", + "/box#collapsing-margins": { + "snapshot": { + "number": "8.3.1", "spec": "CSS 2.2", - "text": "Foreground color: the color property", - "url": "https://drafts.csswg.org/css2/#colors" + "text": "Collapsing margins", + "url": "https://www.w3.org/TR/CSS22/box.html#collapsing-margins" } }, - "#column-alignment": { - "current": { - "number": "17.5.4", + "/box#margin-properties": { + "snapshot": { + "number": "8.3", "spec": "CSS 2.2", - "text": "Horizontal alignment in a column", - "url": "https://drafts.csswg.org/css2/#column-alignment" + "text": "Margin properties: 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', and 'margin'", + "url": "https://www.w3.org/TR/CSS22/box.html#margin-properties" } }, - "#columns": { - "current": { - "number": "17.3", + "/box#mpb-examples": { + "snapshot": { + "number": "8.2", "spec": "CSS 2.2", - "text": "Columns", - "url": "https://drafts.csswg.org/css2/#columns" + "text": "Example of margins, padding, and borders", + "url": "https://www.w3.org/TR/CSS22/box.html#mpb-examples" } }, - "#comments": { - "current": { - "number": "4.1.9", + "/box#padding-properties": { + "snapshot": { + "number": "8.4", "spec": "CSS 2.2", - "text": "Comments", - "url": "https://drafts.csswg.org/css2/#comments" + "text": "Padding properties: 'padding-top', 'padding-right', 'padding-bottom', 'padding-left', and 'padding'", + "url": "https://www.w3.org/TR/CSS22/box.html#padding-properties" } }, - "#comp-abspos": { - "current": { - "number": "9.8.4", + "/cascade#at-import": { + "snapshot": { + "number": "6.3", "spec": "CSS 2.2", - "text": "Absolute positioning", - "url": "https://drafts.csswg.org/css2/#comp-abspos" + "text": "The @import rule", + "url": "https://www.w3.org/TR/CSS22/cascade.html#at-import" } }, - "#comp-float": { - "current": { - "number": "9.8.3", + "/cascade#cascade": { + "snapshot": { + "number": "6.4", "spec": "CSS 2.2", - "text": "Floating a box", - "url": "https://drafts.csswg.org/css2/#comp-float" + "text": "The cascade", + "url": "https://www.w3.org/TR/CSS22/cascade.html#cascade" } }, - "#comp-normal-flow": { - "current": { - "number": "9.8.1", + "/cascade#cascading-order": { + "snapshot": { + "number": "6.4.1", "spec": "CSS 2.2", - "text": "Normal flow", - "url": "https://drafts.csswg.org/css2/#comp-normal-flow" + "text": "Cascading order", + "url": "https://www.w3.org/TR/CSS22/cascade.html#cascading-order" } }, - "#comp-relpos": { - "current": { - "number": "9.8.2", + "/cascade#important-rules": { + "snapshot": { + "number": "6.4.2", "spec": "CSS 2.2", - "text": "Relative positioning", - "url": "https://drafts.csswg.org/css2/#comp-relpos" + "text": "!important rules", + "url": "https://www.w3.org/TR/CSS22/cascade.html#important-rules" } }, - "#comparison": { - "current": { - "number": "9.8", + "/cascade#inheritance": { + "snapshot": { + "number": "6.2", "spec": "CSS 2.2", - "text": "Comparison of normal flow, floats, and absolute positioning", - "url": "https://drafts.csswg.org/css2/#comparison" + "text": "Inheritance", + "url": "https://www.w3.org/TR/CSS22/cascade.html#inheritance" } }, - "#computed-defs": { - "current": { - "number": "1.4.2.7", + "/cascade#preshint": { + "snapshot": { + "number": "6.4.4", "spec": "CSS 2.2", - "text": "Computed value", - "url": "https://drafts.csswg.org/css2/#computed-defs" + "text": "Precedence of non-CSS presentational hints", + "url": "https://www.w3.org/TR/CSS22/cascade.html#preshint" } }, - "#computed-values": { - "current": { - "number": "6.1.2", + "/cascade#q0": { + "snapshot": { + "number": "6", "spec": "CSS 2.2", - "text": "Computed values Info about the ' Computed values' definition.#computed-valueReferenced in: 1.4.2.7. Computed value 4.3.2. Lengths 4.3.3. Percentages 8.5.2. Border color: border-top-color, border-right-color, border-bottom-color, border-left-color, and border-color 10.4. Minimum and maximum widths: min-width and max-width 10.7. Minimum and maximum heights: min-height and max-height 10.8.1. Leading and half-leading (2) (3) Specified value of inherit", - "url": "https://drafts.csswg.org/css2/#computed-values" + "text": "Assigning property values, Cascading, and Inheritance", + "url": "https://www.w3.org/TR/CSS22/cascade.html#q0" } }, - "#conform": { - "current": { - "number": "3", + "/cascade#specificity": { + "snapshot": { + "number": "6.4.3", "spec": "CSS 2.2", - "text": "Conformance: Requirements and Recommendations", - "url": "https://drafts.csswg.org/css2/#conform" + "text": "Calculating a selector's specificity", + "url": "https://www.w3.org/TR/CSS22/cascade.html#specificity" } }, - "#conformance": { - "current": { - "number": "3.2", + "/cascade#value-stages": { + "snapshot": { + "number": "6.1", "spec": "CSS 2.2", - "text": "UA Conformance", - "url": "https://drafts.csswg.org/css2/#conformance" + "text": "Specified, computed, and actual values", + "url": "https://www.w3.org/TR/CSS22/cascade.html#value-stages" } }, - "#containing-block": { - "current": { - "number": "9.1.2", + "/changes#q0": { + "snapshot": { + "number": "C", "spec": "CSS 2.2", - "text": "Containing blocks", - "url": "https://drafts.csswg.org/css2/#containing-block" + "text": "Changes", + "url": "https://www.w3.org/TR/CSS22/changes.html#q0" } }, - "#containing-block-details": { - "current": { - "number": "10.1", + "/changes#since-20110607": { + "snapshot": { + "number": "C.1", "spec": "CSS 2.2", - "text": "Definition of \"containing block\"", - "url": "https://drafts.csswg.org/css2/#containing-block-details" + "text": "Changes since the Recommendation of 7 June 2011", + "url": "https://www.w3.org/TR/CSS22/changes.html#since-20110607" } }, - "#content%E2%91%A0": { - "current": { - "number": "12.2", + "/colors#background": { + "snapshot": { + "number": "14.2", "spec": "CSS 2.2", - "text": "The content property", - "url": "https://drafts.csswg.org/css2/#content%E2%91%A0" + "text": "The background", + "url": "https://www.w3.org/TR/CSS22/colors.html#background" } }, - "#conventions": { - "current": { - "number": "1.4", + "/colors#background-properties": { + "snapshot": { + "number": "14.2.1", "spec": "CSS 2.2", - "text": "Conventions", - "url": "https://drafts.csswg.org/css2/#conventions" + "text": "Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'", + "url": "https://www.w3.org/TR/CSS22/colors.html#background-properties" } }, - "#counter": { - "current": { - "number": "4.3.5", + "/colors#colors": { + "snapshot": { + "number": "14.1", "spec": "CSS 2.2", - "text": "Counters", - "url": "https://drafts.csswg.org/css2/#counter" + "text": "Foreground color: the 'color' property", + "url": "https://www.w3.org/TR/CSS22/colors.html#colors" } }, - "#counter-styles": { - "current": { - "number": "12.4.2", + "/colors#q0": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Counter styles", - "url": "https://drafts.csswg.org/css2/#counter-styles" + "text": "14 Colors and Backgrounds", + "url": "https://www.w3.org/TR/CSS22/colors.html#q0" } }, - "#counters": { - "current": { - "number": "12.4", + "/conform#conformance": { + "snapshot": { + "number": "3.2", "spec": "CSS 2.2", - "text": "Automatic counters and numbering", - "url": "https://drafts.csswg.org/css2/#counters" + "text": "UA Conformance", + "url": "https://www.w3.org/TR/CSS22/conform.html#conformance" } }, - "#css2.2-v-css2": { - "current": { - "number": "1.1", + "/conform#defs": { + "snapshot": { + "number": "3.1", "spec": "CSS 2.2", - "text": "CSS 2.2 vs CSS 2", - "url": "https://drafts.csswg.org/css2/#css2.2-v-css2" + "text": "Definitions", + "url": "https://www.w3.org/TR/CSS22/conform.html#defs" } }, - "#ctrlchars": { - "current": { - "number": "16.6.3", + "/conform#errors": { + "snapshot": { + "number": "3.3", "spec": "CSS 2.2", - "text": "Control and combining characters' details", - "url": "https://drafts.csswg.org/css2/#ctrlchars" + "text": "Error conditions", + "url": "https://www.w3.org/TR/CSS22/conform.html#errors" } }, - "#cursive": { - "current": { - "number": "15.3.1.3", + "/conform#q0": { + "snapshot": { + "number": "3", "spec": "CSS 2.2", - "text": "cursive", - "url": "https://drafts.csswg.org/css2/#cursive" + "text": "Conformance: Requirements and Recommendations", + "url": "https://www.w3.org/TR/CSS22/conform.html#q0" } }, - "#cursor-props": { - "current": { - "number": "18.1", + "/fonts#algorithm": { + "snapshot": { + "number": "15.2", "spec": "CSS 2.2", - "text": "Cursors: the cursor property", - "url": "https://drafts.csswg.org/css2/#cursor-props" + "text": "Font matching algorithm", + "url": "https://www.w3.org/TR/CSS22/fonts.html#algorithm" } }, - "#declaration": { - "current": { - "number": "4.1.8", + "/fonts#font-boldness": { + "snapshot": { + "number": "15.6", "spec": "CSS 2.2", - "text": "Declarations and properties", - "url": "https://drafts.csswg.org/css2/#declaration" + "text": "Font boldness: the 'font-weight' property", + "url": "https://www.w3.org/TR/CSS22/fonts.html#font-boldness" } }, - "#decoration": { - "current": { - "number": "16.3", + "/fonts#font-family-prop": { + "snapshot": { + "number": "15.3", "spec": "CSS 2.2", - "text": "Decoration", - "url": "https://drafts.csswg.org/css2/#decoration" + "text": "Font family: the 'font-family' property", + "url": "https://www.w3.org/TR/CSS22/fonts.html#font-family-prop" } }, - "#default-attrs": { - "current": { - "number": "5.8.2", + "/fonts#font-shorthand": { + "snapshot": { + "number": "15.8", "spec": "CSS 2.2", - "text": "Default attribute values in DTDs", - "url": "https://drafts.csswg.org/css2/#default-attrs" + "text": "Shorthand font property: the 'font' property", + "url": "https://www.w3.org/TR/CSS22/fonts.html#font-shorthand" } }, - "#defs": { - "current": { - "number": "3.1", + "/fonts#font-size-props": { + "snapshot": { + "number": "15.7", "spec": "CSS 2.2", - "text": "Definitions", - "url": "https://drafts.csswg.org/css2/#defs" + "text": "Font size: the 'font-size' property", + "url": "https://www.w3.org/TR/CSS22/fonts.html#font-size-props" } }, - "#descendant-selectors": { - "current": { - "number": "5.5", + "/fonts#font-styling": { + "snapshot": { + "number": "15.4", "spec": "CSS 2.2", - "text": "Descendant selectors", - "url": "https://drafts.csswg.org/css2/#descendant-selectors" + "text": "Font styling: the 'font-style' property", + "url": "https://www.w3.org/TR/CSS22/fonts.html#font-styling" } }, - "#design-principles": { - "current": { - "number": "2.4", + "/fonts#fonts-intro": { + "snapshot": { + "number": "15.1", "spec": "CSS 2.2", - "text": "CSS design principles", - "url": "https://drafts.csswg.org/css2/#design-principles" + "text": "Introduction", + "url": "https://www.w3.org/TR/CSS22/fonts.html#fonts-intro" } }, - "#direction": { - "current": { - "number": "9.10", + "/fonts#generic-font-families": { + "snapshot": { + "number": "15.3.1", "spec": "CSS 2.2", - "text": "Text direction: the direction and unicode-bidi properties", - "url": "https://drafts.csswg.org/css2/#direction" + "text": "Generic font families", + "url": "https://www.w3.org/TR/CSS22/fonts.html#generic-font-families" } }, - "#dis-pos-flo": { - "current": { - "number": "9.7", + "/fonts#q0": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Relationships between display, position, and float", - "url": "https://drafts.csswg.org/css2/#dis-pos-flo" + "text": "15 Fonts", + "url": "https://www.w3.org/TR/CSS22/fonts.html#q0" } }, - "#display-prop": { - "current": { - "number": "9.2.4", + "/fonts#small-caps": { + "snapshot": { + "number": "15.5", "spec": "CSS 2.2", - "text": "The display property", - "url": "https://drafts.csswg.org/css2/#display-prop" + "text": "Small-caps: the 'font-variant' property", + "url": "https://www.w3.org/TR/CSS22/fonts.html#small-caps" } }, - "#doc-language": { - "current": { - "number": "1.4.1", + "/generate#before-after-content": { + "snapshot": { + "number": "12.1", "spec": "CSS 2.2", - "text": "Document language elements and attributes", - "url": "https://drafts.csswg.org/css2/#doc-language" + "text": "The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS22/generate.html#before-after-content" } }, - "#drop-aural": { - "current": { - "number": "", + "/generate#content": { + "snapshot": { + "number": "12.2", "spec": "CSS 2.2", - "text": "Appendix A: Aural style sheets", - "url": "https://drafts.csswg.org/css2/#drop-aural" + "text": "The 'content' property", + "url": "https://www.w3.org/TR/CSS22/generate.html#content" } }, - "#dynamic-effects": { - "current": { - "number": "17.5.5", + "/generate#counter-styles": { + "snapshot": { + "number": "12.4.2", "spec": "CSS 2.2", - "text": "Dynamic row and column effects", - "url": "https://drafts.csswg.org/css2/#dynamic-effects" + "text": "Counter styles", + "url": "https://www.w3.org/TR/CSS22/generate.html#counter-styles" } }, - "#dynamic-outlines": { - "current": { - "number": "18.4", + "/generate#generated-text": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Dynamic outlines: the outline property", - "url": "https://drafts.csswg.org/css2/#dynamic-outlines" + "text": "12 Generated content, automatic numbering, and lists", + "url": "https://www.w3.org/TR/CSS22/generate.html#generated-text" } }, - "#dynamic-pseudo-classes": { - "current": { - "number": "5.11.3", + "/generate#list-style": { + "snapshot": { + "number": "12.5.1", "spec": "CSS 2.2", - "text": "The dynamic pseudo-classes: :hover Info about the ':hover' definition.#selectordef-hoverReferenced in: 5.11.3. The dynamic pseudo-classes: :hover, :active, and :focus , :active Info about the ':active' definition.#selectordef-activeReferenced in: 5.11.3. The dynamic pseudo-classes: :hover, :active, and :focus (2) (3) (4) (5) , and :focus", - "url": "https://drafts.csswg.org/css2/#dynamic-pseudo-classes" + "text": "Lists: the 'list-style-type', 'list-style-image', 'list-style-position', and 'list-style' properties", + "url": "https://www.w3.org/TR/CSS22/generate.html#list-style" } }, - "#egbidiwscollapse": { - "current": { - "number": "16.6.2", + "/generate#lists": { + "snapshot": { + "number": "12.5", "spec": "CSS 2.2", - "text": "Example of bidirectionality with white space collapsing", - "url": "https://drafts.csswg.org/css2/#egbidiwscollapse" + "text": "Lists", + "url": "https://www.w3.org/TR/CSS22/generate.html#lists" } }, - "#elaborate-stacking-contexts": { - "current": { - "number": "", + "/generate#quotes": { + "snapshot": { + "number": "12.3", "spec": "CSS 2.2", - "text": "Appendix E: Elaborate description of Stacking Contexts", - "url": "https://drafts.csswg.org/css2/#elaborate-stacking-contexts" + "text": "Quotation marks", + "url": "https://www.w3.org/TR/CSS22/generate.html#quotes" } }, - "#empty-cells": { - "current": { - "number": "17.6.1.1", + "/generate#quotes-insert": { + "snapshot": { + "number": "12.3.2", "spec": "CSS 2.2", - "text": "Borders and Backgrounds around empty cells: the empty-cells property", - "url": "https://drafts.csswg.org/css2/#empty-cells" + "text": "Inserting quotes with the 'content' property", + "url": "https://www.w3.org/TR/CSS22/generate.html#quotes-insert" } }, - "#errors": { - "current": { - "number": "3.3", + "/generate#quotes-specify": { + "snapshot": { + "number": "12.3.1", "spec": "CSS 2.2", - "text": "Error conditions", - "url": "https://drafts.csswg.org/css2/#errors" + "text": "Specifying quotes with the 'quotes' property", + "url": "https://www.w3.org/TR/CSS22/generate.html#quotes-specify" } }, - "#escaping": { - "current": { - "number": "4.4.1", + "/generate#scope": { + "snapshot": { + "number": "12.4.1", "spec": "CSS 2.2", - "text": "Referring to characters not represented in a character encoding", - "url": "https://drafts.csswg.org/css2/#escaping" + "text": "Nested counters and scope", + "url": "https://www.w3.org/TR/CSS22/generate.html#scope" } }, - "#fantasy": { - "current": { - "number": "15.3.1.4", + "/generate#undisplayed-counters": { + "snapshot": { + "number": "12.4.3", "spec": "CSS 2.2", - "text": "fantasy", - "url": "https://drafts.csswg.org/css2/#fantasy" + "text": "Counters in elements with 'display: none'", + "url": "https://www.w3.org/TR/CSS22/generate.html#undisplayed-counters" } }, - "#first-child": { - "current": { - "number": "5.11.1", + "/grammar#grammar": { + "snapshot": { + "number": "G.1", "spec": "CSS 2.2", - "text": ":first-child pseudo-class", - "url": "https://drafts.csswg.org/css2/#first-child" + "text": "Grammar", + "url": "https://www.w3.org/TR/CSS22/grammar.html#grammar" } }, - "#first-letter": { - "current": { - "number": "5.12.2", + "/grammar#q0": { + "snapshot": { + "number": "G", "spec": "CSS 2.2", - "text": "The :first-letter Info about the ':first-letter' definition.#selectordef-first-letterReferenced in: 5.12. Pseudo-elements 5.12.2. The :first-letter pseudo-element (2) (3) (4) pseudo-element", - "url": "https://drafts.csswg.org/css2/#first-letter" + "text": "Grammar of CSS 2.2", + "url": "https://www.w3.org/TR/CSS22/grammar.html#q0" } }, - "#first-line-pseudo": { - "current": { - "number": "5.12.1", + "/grammar#q4": { + "snapshot": { + "number": "G.4", "spec": "CSS 2.2", - "text": "The :first-line Info about the ':first-line' definition.#selectordef-first-lineReferenced in: 5.12. Pseudo-elements 5.12.1. The :first-line pseudo-element pseudo-element", - "url": "https://drafts.csswg.org/css2/#first-line-pseudo" + "text": "Implementation note", + "url": "https://www.w3.org/TR/CSS22/grammar.html#q4" } }, - "#fixed-positioning": { - "current": { - "number": "9.6.1", + "/grammar#scanner": { + "snapshot": { + "number": "G.2", "spec": "CSS 2.2", - "text": "Fixed positioning", - "url": "https://drafts.csswg.org/css2/#fixed-positioning" + "text": "Lexical scanner", + "url": "https://www.w3.org/TR/CSS22/grammar.html#scanner" } }, - "#fixed-table-layout": { - "current": { - "number": "17.5.2.1", + "/grammar#tokenizer-diffs": { + "snapshot": { + "number": "G.3", "spec": "CSS 2.2", - "text": "Fixed table layout", - "url": "https://drafts.csswg.org/css2/#fixed-table-layout" + "text": "Comparison of tokenization in CSS 2.2 and CSS1", + "url": "https://www.w3.org/TR/CSS22/grammar.html#tokenizer-diffs" } }, - "#float-position": { - "current": { - "number": "9.5.1", + "/indexlist#q0": { + "snapshot": { + "number": "I", "spec": "CSS 2.2", - "text": "Positioning the float: the float property", - "url": "https://drafts.csswg.org/css2/#float-position" + "text": "Index", + "url": "https://www.w3.org/TR/CSS22/indexlist.html#q0" } }, - "#float-replaced-width": { - "current": { - "number": "10.3.6", + "/intro#addressing": { + "snapshot": { + "number": "2.3.2", "spec": "CSS 2.2", - "text": "Floating, replaced elements", - "url": "https://drafts.csswg.org/css2/#float-replaced-width" + "text": "CSS 2.2 addressing model", + "url": "https://www.w3.org/TR/CSS22/intro.html#addressing" } }, - "#float-width": { - "current": { - "number": "10.3.5", + "/intro#design-principles": { + "snapshot": { + "number": "2.4", "spec": "CSS 2.2", - "text": "Floating, non-replaced elements", - "url": "https://drafts.csswg.org/css2/#float-width" + "text": "CSS design principles", + "url": "https://www.w3.org/TR/CSS22/intro.html#design-principles" } }, - "#floats": { - "current": { - "number": "9.5", + "/intro#html-tutorial": { + "snapshot": { + "number": "2.1", "spec": "CSS 2.2", - "text": "Floats", - "url": "https://drafts.csswg.org/css2/#floats" + "text": "A brief CSS 2.2 tutorial for HTML", + "url": "https://www.w3.org/TR/CSS22/intro.html#html-tutorial" } }, - "#flow-control": { - "current": { - "number": "9.5.2", + "/intro#processing-model": { + "snapshot": { + "number": "2.3", "spec": "CSS 2.2", - "text": "Controlling flow next to floats: the clear property", - "url": "https://drafts.csswg.org/css2/#flow-control" + "text": "The CSS 2.2 processing model", + "url": "https://www.w3.org/TR/CSS22/intro.html#processing-model" } }, - "#font-boldness": { - "current": { - "number": "15.6", + "/intro#q0": { + "snapshot": { + "number": "2", "spec": "CSS 2.2", - "text": "Font boldness: the font-weight property", - "url": "https://drafts.csswg.org/css2/#font-boldness" + "text": "Introduction to CSS 2.2", + "url": "https://www.w3.org/TR/CSS22/intro.html#q0" } }, - "#font-family-prop": { - "current": { - "number": "15.3", + "/intro#the-canvas": { + "snapshot": { + "number": "2.3.1", "spec": "CSS 2.2", - "text": "Font family: the font-family property", - "url": "https://drafts.csswg.org/css2/#font-family-prop" + "text": "The canvas", + "url": "https://www.w3.org/TR/CSS22/intro.html#the-canvas" } }, - "#font-shorthand": { - "current": { - "number": "15.8", + "/intro#xml-tutorial": { + "snapshot": { + "number": "2.2", "spec": "CSS 2.2", - "text": "Shorthand font property: the font property", - "url": "https://drafts.csswg.org/css2/#font-shorthand" + "text": "A brief CSS 2.2 tutorial for XML", + "url": "https://www.w3.org/TR/CSS22/intro.html#xml-tutorial" } }, - "#font-size-props": { - "current": { - "number": "15.7", + "/media#at-media-rule": { + "snapshot": { + "number": "7.2.1", "spec": "CSS 2.2", - "text": "Font size: the font-size property", - "url": "https://drafts.csswg.org/css2/#font-size-props" + "text": "The @media rule", + "url": "https://www.w3.org/TR/CSS22/media.html#at-media-rule" } }, - "#font-styling": { - "current": { - "number": "15.4", + "/media#media-groups": { + "snapshot": { + "number": "7.3.1", "spec": "CSS 2.2", - "text": "Font styling: the font-style property", - "url": "https://drafts.csswg.org/css2/#font-styling" + "text": "Media groups", + "url": "https://www.w3.org/TR/CSS22/media.html#media-groups" } }, - "#fonts": { - "current": { - "number": "", + "/media#media-intro": { + "snapshot": { + "number": "7.1", "spec": "CSS 2.2", - "text": "15. Fonts", - "url": "https://drafts.csswg.org/css2/#fonts" + "text": "Introduction to media types", + "url": "https://www.w3.org/TR/CSS22/media.html#media-intro" } }, - "#fonts-intro": { - "current": { - "number": "15.1", + "/media#media-sheets": { + "snapshot": { + "number": "7.2", "spec": "CSS 2.2", - "text": "Introduction", - "url": "https://drafts.csswg.org/css2/#fonts-intro" + "text": "Specifying media-dependent style sheets", + "url": "https://www.w3.org/TR/CSS22/media.html#media-sheets" } }, - "#forced": { - "current": { - "number": "13.3.4", + "/media#media-types": { + "snapshot": { + "number": "7.3", "spec": "CSS 2.2", - "text": "Forced page breaks", - "url": "https://drafts.csswg.org/css2/#forced" + "text": "Recognized media types", + "url": "https://www.w3.org/TR/CSS22/media.html#media-types" } }, - "#fulltoc": { + "/media#q0": { "snapshot": { - "number": "", + "number": "7", "spec": "CSS 2.2", - "text": "Full Table of Contents", - "url": "https://www.w3.org/TR/CSS22/#fulltoc" + "text": "Media types", + "url": "https://www.w3.org/TR/CSS22/media.html#q0" } }, - "#generated-text": { - "current": { - "number": "", + "/page#allowed-page-breaks": { + "snapshot": { + "number": "13.3.3", "spec": "CSS 2.2", - "text": "12. Generated content, automatic numbering, and lists", - "url": "https://drafts.csswg.org/css2/#generated-text" + "text": "Allowed page breaks", + "url": "https://www.w3.org/TR/CSS22/page.html#allowed-page-breaks" } }, - "#generic-font-families": { - "current": { - "number": "15.3.1", + "/page#best-page-breaks": { + "snapshot": { + "number": "13.3.5", "spec": "CSS 2.2", - "text": "Generic font families", - "url": "https://drafts.csswg.org/css2/#generic-font-families" + "text": "\"Best\" page breaks", + "url": "https://www.w3.org/TR/CSS22/page.html#best-page-breaks" } }, - "#grammar": { - "current": { - "number": "", + "/page#break-inside": { + "snapshot": { + "number": "13.3.2", "spec": "CSS 2.2", - "text": "Grammar", - "url": "https://drafts.csswg.org/css2/#grammar" + "text": "Breaks inside elements: 'orphans', 'widows'", + "url": "https://www.w3.org/TR/CSS22/page.html#break-inside" } }, - "#grouping": { - "current": { - "number": "5.2.1", + "/page#forced": { + "snapshot": { + "number": "13.3.4", "spec": "CSS 2.2", - "text": "Grouping", - "url": "https://drafts.csswg.org/css2/#grouping" + "text": "Forced page breaks", + "url": "https://www.w3.org/TR/CSS22/page.html#forced" } }, - "#height-layout": { - "current": { - "number": "17.5.3", + "/page#outside-page-box": { + "snapshot": { + "number": "13.2.3", "spec": "CSS 2.2", - "text": "Table height algorithms", - "url": "https://drafts.csswg.org/css2/#height-layout" + "text": "Content outside the page box", + "url": "https://www.w3.org/TR/CSS22/page.html#outside-page-box" } }, - "#html-stylesheet": { - "current": { - "number": "", + "/page#page-box": { + "snapshot": { + "number": "13.2", "spec": "CSS 2.2", - "text": "Appendix D: Default style sheet for HTML 4", - "url": "https://drafts.csswg.org/css2/#html-stylesheet" + "text": "Page boxes: the @page rule", + "url": "https://www.w3.org/TR/CSS22/page.html#page-box" } }, - "#html-tutorial": { - "current": { - "number": "2.1", + "/page#page-break-props": { + "snapshot": { + "number": "13.3.1", "spec": "CSS 2.2", - "text": "A brief CSS 2 tutorial for HTML", - "url": "https://drafts.csswg.org/css2/#html-tutorial" + "text": "Page break properties: 'page-break-before', 'page-break-after', 'page-break-inside'", + "url": "https://www.w3.org/TR/CSS22/page.html#page-break-props" } }, - "#id-selectors": { - "current": { - "number": "5.9", + "/page#page-breaks": { + "snapshot": { + "number": "13.3", "spec": "CSS 2.2", - "text": "ID selectors", - "url": "https://drafts.csswg.org/css2/#id-selectors" + "text": "Page breaks", + "url": "https://www.w3.org/TR/CSS22/page.html#page-breaks" } }, - "#images-and-longdesc": { - "current": { - "number": "1.4.5", + "/page#page-cascade": { + "snapshot": { + "number": "13.4", "spec": "CSS 2.2", - "text": "Images and long descriptions", - "url": "https://drafts.csswg.org/css2/#images-and-longdesc" + "text": "Cascading in the page context", + "url": "https://www.w3.org/TR/CSS22/page.html#page-cascade" } }, - "#implementation-note": { - "current": { - "number": "", + "/page#page-intro": { + "snapshot": { + "number": "13.1", "spec": "CSS 2.2", - "text": "Implementation note", - "url": "https://drafts.csswg.org/css2/#implementation-note" + "text": "Introduction to paged media", + "url": "https://www.w3.org/TR/CSS22/page.html#page-intro" } }, - "#important-rules": { - "current": { - "number": "6.4.2", + "/page#page-margins": { + "snapshot": { + "number": "13.2.1", "spec": "CSS 2.2", - "text": "!important rules", - "url": "https://drafts.csswg.org/css2/#important-rules" + "text": "Page margins", + "url": "https://www.w3.org/TR/CSS22/page.html#page-margins" } }, - "#indentation-prop": { - "current": { - "number": "16.1", + "/page#page-selectors": { + "snapshot": { + "number": "13.2.2", "spec": "CSS 2.2", - "text": "Indentation: the text-indent property", - "url": "https://drafts.csswg.org/css2/#indentation-prop" + "text": "Page selectors: selecting left, right, and first pages", + "url": "https://www.w3.org/TR/CSS22/page.html#page-selectors" } }, - "#index": { - "current": { + "/page#the-page": { + "snapshot": { "number": "", "spec": "CSS 2.2", - "text": "Appendix I: Index", - "url": "https://drafts.csswg.org/css2/#index" + "text": "13 Paged media", + "url": "https://www.w3.org/TR/CSS22/page.html#the-page" } }, - "#index%E2%91%A0": { - "current": { - "number": "", + "/propidx#q0": { + "snapshot": { + "number": "F", "spec": "CSS 2.2", - "text": "Index", - "url": "https://drafts.csswg.org/css2/#index%E2%91%A0" + "text": "Full property table", + "url": "https://www.w3.org/TR/CSS22/propidx.html#q0" } }, - "#index-defined-elsewhere": { - "current": { - "number": "", + "/refs#informative": { + "snapshot": { + "number": "B.2", "spec": "CSS 2.2", - "text": "Terms defined by reference", - "url": "https://drafts.csswg.org/css2/#index-defined-elsewhere" + "text": "Informative references", + "url": "https://www.w3.org/TR/CSS22/refs.html#informative" } }, - "#index-defined-here": { - "current": { - "number": "", + "/refs#normative": { + "snapshot": { + "number": "B.1", "spec": "CSS 2.2", - "text": "Terms defined by this specification", - "url": "https://drafts.csswg.org/css2/#index-defined-here" + "text": "Normative references", + "url": "https://www.w3.org/TR/CSS22/refs.html#normative" } }, - "#informative": { - "current": { - "number": "", + "/refs#q0": { + "snapshot": { + "number": "B", "spec": "CSS 2.2", - "text": "Informative References", - "url": "https://drafts.csswg.org/css2/#informative" + "text": "Bibliography", + "url": "https://www.w3.org/TR/CSS22/refs.html#q0" } }, - "#inherit-computed-value": { - "current": { - "number": "", + "/sample#q0": { + "snapshot": { + "number": "D", "spec": "CSS 2.2", - "text": "Specified value of inherit", - "url": "https://drafts.csswg.org/css2/#inherit-computed-value" + "text": "Default style sheet for HTML 4", + "url": "https://www.w3.org/TR/CSS22/sample.html#q0" } }, - "#inheritance": { - "current": { - "number": "6.2", + "/selector#adjacent-selectors": { + "snapshot": { + "number": "5.7", "spec": "CSS 2.2", - "text": "Inheritance", - "url": "https://drafts.csswg.org/css2/#inheritance" + "text": "Adjacent sibling selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#adjacent-selectors" } }, - "#inherited-prop": { - "current": { - "number": "1.4.2.4", + "/selector#attribute-selectors": { + "snapshot": { + "number": "5.8", "spec": "CSS 2.2", - "text": "Inherited", - "url": "https://drafts.csswg.org/css2/#inherited-prop" + "text": "Attribute selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#attribute-selectors" } }, - "#initial-value": { - "current": { - "number": "1.4.2.2", + "/selector#before-and-after": { + "snapshot": { + "number": "5.12.3", "spec": "CSS 2.2", - "text": "Initial", - "url": "https://drafts.csswg.org/css2/#initial-value" + "text": "The :before and :after pseudo-elements", + "url": "https://www.w3.org/TR/CSS22/selector.html#before-and-after" } }, - "#inline-boxes": { - "current": { - "number": "9.2.2", + "/selector#child-selectors": { + "snapshot": { + "number": "5.6", + "spec": "CSS 2.2", + "text": "Child selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#child-selectors" + } + }, + "/selector#class-html": { + "snapshot": { + "number": "5.8.3", "spec": "CSS 2.2", - "text": "Inline-level elements and inline boxes", - "url": "https://drafts.csswg.org/css2/#inline-boxes" + "text": "Class selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#class-html" } }, - "#inline-formatting": { - "current": { - "number": "9.4.2", + "/selector#default-attrs": { + "snapshot": { + "number": "5.8.2", "spec": "CSS 2.2", - "text": "Inline formatting contexts", - "url": "https://drafts.csswg.org/css2/#inline-formatting" + "text": "Default attribute values in DTDs", + "url": "https://www.w3.org/TR/CSS22/selector.html#default-attrs" } }, - "#inline-non-replaced": { - "current": { - "number": "10.6.1", + "/selector#descendant-selectors": { + "snapshot": { + "number": "5.5", "spec": "CSS 2.2", - "text": "Inline, non-replaced elements", - "url": "https://drafts.csswg.org/css2/#inline-non-replaced" + "text": "Descendant selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#descendant-selectors" } }, - "#inline-replaced-height": { - "current": { - "number": "10.6.2", + "/selector#dynamic-pseudo-classes": { + "snapshot": { + "number": "5.11.3", "spec": "CSS 2.2", - "text": "Inline replaced elements, block-level replaced elements in normal flow, inline-block replaced elements in normal flow and floating replaced elements", - "url": "https://drafts.csswg.org/css2/#inline-replaced-height" + "text": "The dynamic pseudo-classes: :hover, :active, and :focus", + "url": "https://www.w3.org/TR/CSS22/selector.html#dynamic-pseudo-classes" } }, - "#inline-replaced-width": { - "current": { - "number": "10.3.2", + "/selector#first-child": { + "snapshot": { + "number": "5.11.1", "spec": "CSS 2.2", - "text": "Inline, replaced elements", - "url": "https://drafts.csswg.org/css2/#inline-replaced-width" + "text": ":first-child pseudo-class", + "url": "https://www.w3.org/TR/CSS22/selector.html#first-child" } }, - "#inline-width": { - "current": { - "number": "10.3.1", + "/selector#first-letter": { + "snapshot": { + "number": "5.12.2", "spec": "CSS 2.2", - "text": "Inline, non-replaced elements", - "url": "https://drafts.csswg.org/css2/#inline-width" + "text": "The :first-letter pseudo-element", + "url": "https://www.w3.org/TR/CSS22/selector.html#first-letter" } }, - "#inlineblock-replaced-width": { - "current": { - "number": "10.3.10", + "/selector#grouping": { + "snapshot": { + "number": "5.2.1", "spec": "CSS 2.2", - "text": "inline-block, replaced elements in normal flow", - "url": "https://drafts.csswg.org/css2/#inlineblock-replaced-width" + "text": "Grouping", + "url": "https://www.w3.org/TR/CSS22/selector.html#grouping" } }, - "#inlineblock-width": { - "current": { - "number": "10.3.9", + "/selector#id-selectors": { + "snapshot": { + "number": "5.9", "spec": "CSS 2.2", - "text": "inline-block, non-replaced elements in normal flow", - "url": "https://drafts.csswg.org/css2/#inlineblock-width" + "text": "ID selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#id-selectors" } }, - "#intro": { - "current": { - "number": "2", + "/selector#lang": { + "snapshot": { + "number": "5.11.4", "spec": "CSS 2.2", - "text": "Introduction to CSS 2", - "url": "https://drafts.csswg.org/css2/#intro" + "text": "The language pseudo-class: :lang", + "url": "https://www.w3.org/TR/CSS22/selector.html#lang" } }, - "#keywords": { - "current": { - "number": "4.1.2", + "/selector#link-pseudo-classes": { + "snapshot": { + "number": "5.11.2", "spec": "CSS 2.2", - "text": "Keywords", - "url": "https://drafts.csswg.org/css2/#keywords" + "text": "The link pseudo-classes: :link and :visited", + "url": "https://www.w3.org/TR/CSS22/selector.html#link-pseudo-classes" } }, - "#known-errors": { - "current": { - "number": "", + "/selector#matching-attrs": { + "snapshot": { + "number": "5.8.1", "spec": "CSS 2.2", - "text": "Errors", - "url": "https://drafts.csswg.org/css2/#known-errors" + "text": "Matching attributes and attribute values", + "url": "https://www.w3.org/TR/CSS22/selector.html#matching-attrs" } }, - "#lang": { - "current": { - "number": "5.11.4", + "/selector#pattern-matching": { + "snapshot": { + "number": "5.1", "spec": "CSS 2.2", - "text": "The language pseudo-class: :lang Info about the ':lang' definition.#selectordef-langReferenced in: 5.10. Pseudo-elements and pseudo-classes", - "url": "https://drafts.csswg.org/css2/#lang" + "text": "Pattern matching", + "url": "https://www.w3.org/TR/CSS22/selector.html#pattern-matching" } }, - "#layers": { - "current": { - "number": "9.9", + "/selector#pseudo-class-selectors": { + "snapshot": { + "number": "5.11", "spec": "CSS 2.2", - "text": "Layered presentation", - "url": "https://drafts.csswg.org/css2/#layers" + "text": "Pseudo-classes", + "url": "https://www.w3.org/TR/CSS22/selector.html#pseudo-class-selectors" } }, - "#leading": { - "current": { - "number": "10.8.1", + "/selector#pseudo-element-selectors": { + "snapshot": { + "number": "5.12", "spec": "CSS 2.2", - "text": "Leading and half-leading", - "url": "https://drafts.csswg.org/css2/#leading" + "text": "Pseudo-elements", + "url": "https://www.w3.org/TR/CSS22/selector.html#pseudo-element-selectors" } }, - "#leftblank": { - "current": { - "number": "", + "/selector#pseudo-elements": { + "snapshot": { + "number": "5.10", "spec": "CSS 2.2", - "text": "Appendix H: Has been intentionally left blank", - "url": "https://drafts.csswg.org/css2/#leftblank" + "text": "Pseudo-elements and pseudo-classes", + "url": "https://www.w3.org/TR/CSS22/selector.html#pseudo-elements" } }, - "#length-units": { - "current": { - "number": "4.3.2", + "/selector#q0": { + "snapshot": { + "number": "5", "spec": "CSS 2.2", - "text": "Lengths", - "url": "https://drafts.csswg.org/css2/#length-units" + "text": "Selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#q0" } }, - "#line-height": { - "current": { - "number": "10.8", + "/selector#selector-syntax": { + "snapshot": { + "number": "5.2", "spec": "CSS 2.2", - "text": "Line height calculations: the line-height and vertical-align properties", - "url": "https://drafts.csswg.org/css2/#line-height" + "text": "Selector syntax", + "url": "https://www.w3.org/TR/CSS22/selector.html#selector-syntax" } }, - "#lining-striking-props": { - "current": { - "number": "16.3.1", + "/selector#type-selectors": { + "snapshot": { + "number": "5.4", "spec": "CSS 2.2", - "text": "Underlining, overlining, striking, and blinking: the text-decoration property", - "url": "https://drafts.csswg.org/css2/#lining-striking-props" + "text": "Type selectors", + "url": "https://www.w3.org/TR/CSS22/selector.html#type-selectors" } }, - "#link-pseudo-classes": { - "current": { - "number": "5.11.2", + "/selector#universal-selector": { + "snapshot": { + "number": "5.3", "spec": "CSS 2.2", - "text": "The link pseudo-classes: :link Info about the ':link' definition.#selectordef-linkReferenced in: 5.11.2. The link pseudo-classes: :link and :visited (2) 5.11.3. The dynamic pseudo-classes: :hover, :active, and :focus (2) and :visited Info about the ':visited' definition.#selectordef-visitedReferenced in: 5.11.2. The link pseudo-classes: :link and :visited 5.11.3. The dynamic pseudo-classes: :hover, :active, and :focus (2)", - "url": "https://drafts.csswg.org/css2/#link-pseudo-classes" + "text": "Universal selector", + "url": "https://www.w3.org/TR/CSS22/selector.html#universal-selector" } }, - "#list-style": { - "current": { - "number": "12.5.1", + "/syndata#block": { + "snapshot": { + "number": "4.1.6", "spec": "CSS 2.2", - "text": "Lists: the list-style-type, list-style-image, list-style-position, and list-style properties", - "url": "https://drafts.csswg.org/css2/#list-style" + "text": "Blocks", + "url": "https://www.w3.org/TR/CSS22/syndata.html#block" } }, - "#lists": { - "current": { - "number": "12.5", + "/syndata#characters": { + "snapshot": { + "number": "4.1.3", "spec": "CSS 2.2", - "text": "Lists", - "url": "https://drafts.csswg.org/css2/#lists" + "text": "Characters and case", + "url": "https://www.w3.org/TR/CSS22/syndata.html#characters" } }, - "#magnification": { - "current": { - "number": "18.5", + "/syndata#charset": { + "snapshot": { + "number": "4.4", "spec": "CSS 2.2", - "text": "Magnification", - "url": "https://drafts.csswg.org/css2/#magnification" + "text": "CSS style sheet representation", + "url": "https://www.w3.org/TR/CSS22/syndata.html#charset" } }, - "#margin-properties": { - "current": { - "number": "8.3", + "/syndata#color-units": { + "snapshot": { + "number": "4.3.6", "spec": "CSS 2.2", - "text": "Margin properties: margin-top, margin-right, margin-bottom, margin-left, and margin", - "url": "https://drafts.csswg.org/css2/#margin-properties" + "text": "Colors", + "url": "https://www.w3.org/TR/CSS22/syndata.html#color-units" } }, - "#matching-attrs": { - "current": { - "number": "5.8.1", + "/syndata#comments": { + "snapshot": { + "number": "4.1.9", "spec": "CSS 2.2", - "text": "Matching attributes and attribute values", - "url": "https://drafts.csswg.org/css2/#matching-attrs" + "text": "Comments", + "url": "https://www.w3.org/TR/CSS22/syndata.html#comments" } }, - "#media": { - "current": { - "number": "7", + "/syndata#counter": { + "snapshot": { + "number": "4.3.5", "spec": "CSS 2.2", - "text": "Media types", - "url": "https://drafts.csswg.org/css2/#media" + "text": "Counters", + "url": "https://www.w3.org/TR/CSS22/syndata.html#counter" } }, - "#media-applies": { - "current": { - "number": "1.4.2.6", + "/syndata#declaration": { + "snapshot": { + "number": "4.1.8", "spec": "CSS 2.2", - "text": "Media groups", - "url": "https://drafts.csswg.org/css2/#media-applies" + "text": "Declarations and properties", + "url": "https://www.w3.org/TR/CSS22/syndata.html#declaration" } }, - "#media-groups": { - "current": { - "number": "7.3.1", + "/syndata#escaping": { + "snapshot": { + "number": "4.4.1", "spec": "CSS 2.2", - "text": "Media groups", - "url": "https://drafts.csswg.org/css2/#media-groups" + "text": "Referring to characters not represented in a character encoding", + "url": "https://www.w3.org/TR/CSS22/syndata.html#escaping" } }, - "#media-intro": { - "current": { - "number": "7.1", + "/syndata#keywords": { + "snapshot": { + "number": "4.1.2", "spec": "CSS 2.2", - "text": "Introduction to media types", - "url": "https://drafts.csswg.org/css2/#media-intro" + "text": "Keywords", + "url": "https://www.w3.org/TR/CSS22/syndata.html#keywords" } }, - "#media-sheets": { - "current": { - "number": "7.2", + "/syndata#length-units": { + "snapshot": { + "number": "4.3.2", "spec": "CSS 2.2", - "text": "Specifying media-dependent style sheets", - "url": "https://drafts.csswg.org/css2/#media-sheets" + "text": "Lengths", + "url": "https://www.w3.org/TR/CSS22/syndata.html#length-units" } }, - "#media-types": { - "current": { - "number": "7.3", + "/syndata#numbers": { + "snapshot": { + "number": "4.3.1", "spec": "CSS 2.2", - "text": "Recognized media types", - "url": "https://drafts.csswg.org/css2/#media-types" + "text": "Integers and real numbers", + "url": "https://www.w3.org/TR/CSS22/syndata.html#numbers" } }, - "#min-max-heights": { - "current": { - "number": "10.7", + "/syndata#parsing-errors": { + "snapshot": { + "number": "4.2", "spec": "CSS 2.2", - "text": "Minimum and maximum heights: min-height and max-height", - "url": "https://drafts.csswg.org/css2/#min-max-heights" + "text": "Rules for handling parsing errors", + "url": "https://www.w3.org/TR/CSS22/syndata.html#parsing-errors" } }, - "#min-max-widths": { - "current": { - "number": "10.4", + "/syndata#percentage-units": { + "snapshot": { + "number": "4.3.3", "spec": "CSS 2.2", - "text": "Minimum and maximum widths: min-width and max-width", - "url": "https://drafts.csswg.org/css2/#min-max-widths" + "text": "Percentages", + "url": "https://www.w3.org/TR/CSS22/syndata.html#percentage-units" } }, - "#minitoc": { + "/syndata#q0": { "snapshot": { - "number": "", + "number": "4", "spec": "CSS 2.2", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/CSS22/#minitoc" + "text": "Syntax and basic data types", + "url": "https://www.w3.org/TR/CSS22/syndata.html#q0" } }, - "#model": { - "current": { - "number": "17.4", + "/syndata#rule-sets": { + "snapshot": { + "number": "4.1.7", "spec": "CSS 2.2", - "text": "Tables in the visual formatting model", - "url": "https://drafts.csswg.org/css2/#model" + "text": "Rule sets, declaration blocks, and selectors", + "url": "https://www.w3.org/TR/CSS22/syndata.html#rule-sets" } }, - "#monospace": { - "current": { - "number": "15.3.1.5", + "/syndata#statements": { + "snapshot": { + "number": "4.1.4", "spec": "CSS 2.2", - "text": "monospace", - "url": "https://drafts.csswg.org/css2/#monospace" + "text": "Statements", + "url": "https://www.w3.org/TR/CSS22/syndata.html#statements" } }, - "#mpb-examples": { - "current": { - "number": "8.2", + "/syndata#strings": { + "snapshot": { + "number": "4.3.7", "spec": "CSS 2.2", - "text": "Example of margins, padding, and borders", - "url": "https://drafts.csswg.org/css2/#mpb-examples" + "text": "Strings", + "url": "https://www.w3.org/TR/CSS22/syndata.html#strings" } }, - "#new": { - "current": { - "number": "", + "/syndata#syntax": { + "snapshot": { + "number": "4.1", "spec": "CSS 2.2", - "text": "Additional property values", - "url": "https://drafts.csswg.org/css2/#new" + "text": "Syntax", + "url": "https://www.w3.org/TR/CSS22/syndata.html#syntax" } }, - "#normal-block": { - "current": { - "number": "10.6.3", + "/syndata#tokenization": { + "snapshot": { + "number": "4.1.1", "spec": "CSS 2.2", - "text": "Block-level non-replaced elements in normal flow when overflow computes to visible", - "url": "https://drafts.csswg.org/css2/#normal-block" + "text": "Tokenization", + "url": "https://www.w3.org/TR/CSS22/syndata.html#tokenization" } }, - "#normal-flow": { - "current": { - "number": "9.4", + "/syndata#unsupported-values": { + "snapshot": { + "number": "4.3.8", "spec": "CSS 2.2", - "text": "Normal flow", - "url": "https://drafts.csswg.org/css2/#normal-flow" + "text": "Unsupported Values", + "url": "https://www.w3.org/TR/CSS22/syndata.html#unsupported-values" } }, - "#normative": { - "current": { - "number": "", + "/syndata#uri": { + "snapshot": { + "number": "4.3.4", "spec": "CSS 2.2", - "text": "Normative References", - "url": "https://drafts.csswg.org/css2/#normative" + "text": "URLs and URIs", + "url": "https://www.w3.org/TR/CSS22/syndata.html#uri" } }, - "#notes-and-examples": { - "current": { - "number": "1.4.4", + "/syndata#values": { + "snapshot": { + "number": "4.3", "spec": "CSS 2.2", - "text": "Notes and examples", - "url": "https://drafts.csswg.org/css2/#notes-and-examples" + "text": "Values", + "url": "https://www.w3.org/TR/CSS22/syndata.html#values" } }, - "#numbers": { - "current": { - "number": "4.3.1", + "/syndata#vendor-keyword-history": { + "snapshot": { + "number": "4.1.2.2", "spec": "CSS 2.2", - "text": "Integers and real numbers", - "url": "https://drafts.csswg.org/css2/#numbers" + "text": "Informative Historical Notes", + "url": "https://www.w3.org/TR/CSS22/syndata.html#vendor-keyword-history" } }, - "#organization": { - "current": { - "number": "1.3", + "/syndata#vendor-keywords": { + "snapshot": { + "number": "4.1.2.1", "spec": "CSS 2.2", - "text": "How the specification is organized", - "url": "https://drafts.csswg.org/css2/#organization" + "text": "Vendor-specific extensions", + "url": "https://www.w3.org/TR/CSS22/syndata.html#vendor-keywords" } }, - "#outline-focus": { - "current": { - "number": "18.4.1", + "/tables#anonymous-boxes": { + "snapshot": { + "number": "17.2.1", "spec": "CSS 2.2", - "text": "Outlines and the focus", - "url": "https://drafts.csswg.org/css2/#outline-focus" + "text": "Anonymous table objects", + "url": "https://www.w3.org/TR/CSS22/tables.html#anonymous-boxes" } }, - "#outside-page-box": { - "current": { - "number": "13.2.3", + "/tables#auto-table-layout": { + "snapshot": { + "number": "17.5.2.2", "spec": "CSS 2.2", - "text": "Content outside the page box", - "url": "https://drafts.csswg.org/css2/#outside-page-box" + "text": "Automatic table layout", + "url": "https://www.w3.org/TR/CSS22/tables.html#auto-table-layout" } }, - "#overflow%E2%91%A0": { - "current": { - "number": "11.1.1", + "/tables#border-conflict-resolution": { + "snapshot": { + "number": "17.6.2.1", "spec": "CSS 2.2", - "text": "Overflow: the overflow property", - "url": "https://drafts.csswg.org/css2/#overflow%E2%91%A0" + "text": "Border conflict resolution", + "url": "https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution" } }, - "#overflow-clipping": { - "current": { - "number": "11.1", + "/tables#borders": { + "snapshot": { + "number": "17.6", "spec": "CSS 2.2", - "text": "Overflow and clipping", - "url": "https://drafts.csswg.org/css2/#overflow-clipping" + "text": "Borders", + "url": "https://www.w3.org/TR/CSS22/tables.html#borders" } }, - "#padding-properties": { - "current": { - "number": "8.4", + "/tables#caption-position": { + "snapshot": { + "number": "17.4.1", "spec": "CSS 2.2", - "text": "Padding properties: padding-top, padding-right, padding-bottom, padding-left, and padding", - "url": "https://drafts.csswg.org/css2/#padding-properties" + "text": "Caption position and alignment", + "url": "https://www.w3.org/TR/CSS22/tables.html#caption-position" } }, - "#page-box": { - "current": { - "number": "13.2", + "/tables#collapsing-borders": { + "snapshot": { + "number": "17.6.2", "spec": "CSS 2.2", - "text": "Page boxes: the @page rule", - "url": "https://drafts.csswg.org/css2/#page-box" + "text": "The collapsing border model", + "url": "https://www.w3.org/TR/CSS22/tables.html#collapsing-borders" } }, - "#page-break-props": { - "current": { - "number": "13.3.1", + "/tables#column-alignment": { + "snapshot": { + "number": "17.5.4", "spec": "CSS 2.2", - "text": "Page break properties: page-break-before, page-break-after, page-break-inside", - "url": "https://drafts.csswg.org/css2/#page-break-props" + "text": "Horizontal alignment in a column", + "url": "https://www.w3.org/TR/CSS22/tables.html#column-alignment" } }, - "#page-breaks": { - "current": { - "number": "13.3", + "/tables#columns": { + "snapshot": { + "number": "17.3", "spec": "CSS 2.2", - "text": "Page breaks", - "url": "https://drafts.csswg.org/css2/#page-breaks" + "text": "Columns", + "url": "https://www.w3.org/TR/CSS22/tables.html#columns" } }, - "#page-cascade": { - "current": { - "number": "13.4", + "/tables#dynamic-effects": { + "snapshot": { + "number": "17.5.5", "spec": "CSS 2.2", - "text": "Cascading in the page context", - "url": "https://drafts.csswg.org/css2/#page-cascade" + "text": "Dynamic row and column effects", + "url": "https://www.w3.org/TR/CSS22/tables.html#dynamic-effects" } }, - "#page-intro": { - "current": { - "number": "13.1", + "/tables#empty-cells": { + "snapshot": { + "number": "17.6.1.1", "spec": "CSS 2.2", - "text": "Introduction to paged media", - "url": "https://drafts.csswg.org/css2/#page-intro" + "text": "Borders and Backgrounds around empty cells: the 'empty-cells' property", + "url": "https://www.w3.org/TR/CSS22/tables.html#empty-cells" } }, - "#page-margins": { - "current": { - "number": "13.2.1", + "/tables#fixed-table-layout": { + "snapshot": { + "number": "17.5.2.1", "spec": "CSS 2.2", - "text": "Page margins", - "url": "https://drafts.csswg.org/css2/#page-margins" + "text": "Fixed table layout", + "url": "https://www.w3.org/TR/CSS22/tables.html#fixed-table-layout" } }, - "#page-selectors": { - "current": { - "number": "13.2.2", + "/tables#height-layout": { + "snapshot": { + "number": "17.5.3", "spec": "CSS 2.2", - "text": "Page selectors: selecting left, right, and first pages", - "url": "https://drafts.csswg.org/css2/#page-selectors" + "text": "Table height algorithms", + "url": "https://www.w3.org/TR/CSS22/tables.html#height-layout" } }, - "#painting-order": { - "current": { - "number": "", + "/tables#model": { + "snapshot": { + "number": "17.4", "spec": "CSS 2.2", - "text": "Painting order", - "url": "https://drafts.csswg.org/css2/#painting-order" + "text": "Tables in the visual formatting model", + "url": "https://www.w3.org/TR/CSS22/tables.html#model" } }, - "#parsing-errors": { - "current": { - "number": "4.2", + "/tables#q0": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Rules for handling parsing errors", - "url": "https://drafts.csswg.org/css2/#parsing-errors" + "text": "17 Tables", + "url": "https://www.w3.org/TR/CSS22/tables.html#q0" } }, - "#pattern-matching": { - "current": { - "number": "5.1", + "/tables#separated-borders": { + "snapshot": { + "number": "17.6.1", "spec": "CSS 2.2", - "text": "Pattern matching", - "url": "https://drafts.csswg.org/css2/#pattern-matching" + "text": "The separated borders model", + "url": "https://www.w3.org/TR/CSS22/tables.html#separated-borders" } }, - "#percentage-units": { - "current": { - "number": "4.3.3", + "/tables#table-border-styles": { + "snapshot": { + "number": "17.6.3", "spec": "CSS 2.2", - "text": "Percentages", - "url": "https://drafts.csswg.org/css2/#percentage-units" + "text": "Border styles", + "url": "https://www.w3.org/TR/CSS22/tables.html#table-border-styles" } }, - "#percentage-wrt": { - "current": { - "number": "1.4.2.5", + "/tables#table-display": { + "snapshot": { + "number": "17.2", "spec": "CSS 2.2", - "text": "Percentage values", - "url": "https://drafts.csswg.org/css2/#percentage-wrt" + "text": "The CSS table model", + "url": "https://www.w3.org/TR/CSS22/tables.html#table-display" } }, - "#position-props": { - "current": { - "number": "9.3.2", + "/tables#table-layers": { + "snapshot": { + "number": "17.5.1", "spec": "CSS 2.2", - "text": "Box offsets: top, right, bottom, left", - "url": "https://drafts.csswg.org/css2/#position-props" + "text": "Table layers and transparency", + "url": "https://www.w3.org/TR/CSS22/tables.html#table-layers" } }, - "#positioning-scheme": { - "current": { - "number": "9.3", + "/tables#table-layout": { + "snapshot": { + "number": "17.5", "spec": "CSS 2.2", - "text": "Positioning schemes", - "url": "https://drafts.csswg.org/css2/#positioning-scheme" + "text": "Visual layout of table contents", + "url": "https://www.w3.org/TR/CSS22/tables.html#table-layout" } }, - "#preshint": { - "current": { - "number": "6.4.4", + "/tables#tables-intro": { + "snapshot": { + "number": "17.1", "spec": "CSS 2.2", - "text": "Precedence of non-CSS presentational hints", - "url": "https://drafts.csswg.org/css2/#preshint" + "text": "Introduction to tables", + "url": "https://www.w3.org/TR/CSS22/tables.html#tables-intro" } }, - "#processing-model": { - "current": { - "number": "2.3", + "/tables#width-layout": { + "snapshot": { + "number": "17.5.2", "spec": "CSS 2.2", - "text": "The CSS 2 processing model", - "url": "https://drafts.csswg.org/css2/#processing-model" + "text": "Table width algorithms: the 'table-layout' property", + "url": "https://www.w3.org/TR/CSS22/tables.html#width-layout" } }, - "#property-defs": { - "current": { - "number": "1.4.2", + "/text#alignment-prop": { + "snapshot": { + "number": "16.2", "spec": "CSS 2.2", - "text": "CSS property definitions", - "url": "https://drafts.csswg.org/css2/#property-defs" + "text": "Alignment: the 'text-align' property", + "url": "https://www.w3.org/TR/CSS22/text.html#alignment-prop" } }, - "#property-index": { - "current": { - "number": "", + "/text#caps-prop": { + "snapshot": { + "number": "16.5", "spec": "CSS 2.2", - "text": "Appendix F: Full property table", - "url": "https://drafts.csswg.org/css2/#property-index" + "text": "Capitalization: the 'text-transform' property", + "url": "https://www.w3.org/TR/CSS22/text.html#caps-prop" } }, - "#property-index%E2%91%A0": { - "current": { - "number": "", + "/text#ctrlchars": { + "snapshot": { + "number": "16.6.3", "spec": "CSS 2.2", - "text": "Property Index", - "url": "https://drafts.csswg.org/css2/#property-index%E2%91%A0" + "text": "Control and combining characters' details", + "url": "https://www.w3.org/TR/CSS22/text.html#ctrlchars" } }, - "#pseudo-class-selectors": { - "current": { - "number": "5.11", + "/text#decoration": { + "snapshot": { + "number": "16.3", "spec": "CSS 2.2", - "text": "Pseudo-classes", - "url": "https://drafts.csswg.org/css2/#pseudo-class-selectors" + "text": "Decoration", + "url": "https://www.w3.org/TR/CSS22/text.html#decoration" } }, - "#pseudo-element-selectors": { - "current": { - "number": "5.12", + "/text#egbidiwscollapse": { + "snapshot": { + "number": "16.6.2", "spec": "CSS 2.2", - "text": "Pseudo-elements", - "url": "https://drafts.csswg.org/css2/#pseudo-element-selectors" + "text": "Example of bidirectionality with white space collapsing", + "url": "https://www.w3.org/TR/CSS22/text.html#egbidiwscollapse" } }, - "#pseudo-elements": { - "current": { - "number": "5.10", + "/text#indentation-prop": { + "snapshot": { + "number": "16.1", "spec": "CSS 2.2", - "text": "Pseudo-elements and pseudo-classes", - "url": "https://drafts.csswg.org/css2/#pseudo-elements" + "text": "Indentation: the 'text-indent' property", + "url": "https://www.w3.org/TR/CSS22/text.html#indentation-prop" } }, - "#quotes": { - "current": { - "number": "12.3", + "/text#lining-striking-props": { + "snapshot": { + "number": "16.3.1", "spec": "CSS 2.2", - "text": "Quotation marks", - "url": "https://drafts.csswg.org/css2/#quotes" + "text": "Underlining, overlining, striking, and blinking: the 'text-decoration' property", + "url": "https://www.w3.org/TR/CSS22/text.html#lining-striking-props" } }, - "#quotes-insert": { - "current": { - "number": "12.3.2", + "/text#q0": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Inserting quotes with the content property", - "url": "https://drafts.csswg.org/css2/#quotes-insert" + "text": "16 Text", + "url": "https://www.w3.org/TR/CSS22/text.html#q0" } }, - "#quotes-specify": { - "current": { - "number": "12.3.1", + "/text#spacing-props": { + "snapshot": { + "number": "16.4", "spec": "CSS 2.2", - "text": "Specifying quotes with the quotes property", - "url": "https://drafts.csswg.org/css2/#quotes-specify" + "text": "Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties", + "url": "https://www.w3.org/TR/CSS22/text.html#spacing-props" } }, - "#reading": { - "current": { - "number": "1.2", + "/text#white-space-model": { + "snapshot": { + "number": "16.6.1", "spec": "CSS 2.2", - "text": "Reading the specification", - "url": "https://drafts.csswg.org/css2/#reading" + "text": "The 'white-space' processing model", + "url": "https://www.w3.org/TR/CSS22/text.html#white-space-model" } }, - "#references": { - "current": { - "number": "", + "/text#white-space-prop": { + "snapshot": { + "number": "16.6", "spec": "CSS 2.2", - "text": "Appendix B: Bibliography", - "url": "https://drafts.csswg.org/css2/#references" + "text": "White space: the 'white-space' property", + "url": "https://www.w3.org/TR/CSS22/text.html#white-space-prop" } }, - "#references%E2%91%A0": { - "current": { - "number": "", + "/ui#cursor-props": { + "snapshot": { + "number": "18.1", "spec": "CSS 2.2", - "text": "References", - "url": "https://drafts.csswg.org/css2/#references%E2%91%A0" + "text": "Cursors: the 'cursor' property", + "url": "https://www.w3.org/TR/CSS22/ui.html#cursor-props" } }, - "#relative-positioning": { - "current": { - "number": "9.4.3", + "/ui#dynamic-outlines": { + "snapshot": { + "number": "18.4", "spec": "CSS 2.2", - "text": "Relative positioning", - "url": "https://drafts.csswg.org/css2/#relative-positioning" + "text": "Dynamic outlines: the 'outline' property", + "url": "https://www.w3.org/TR/CSS22/ui.html#dynamic-outlines" } }, - "#root-height": { - "current": { - "number": "10.6.7", + "/ui#magnification": { + "snapshot": { + "number": "18.5", "spec": "CSS 2.2", - "text": "auto heights for block formatting context roots", - "url": "https://drafts.csswg.org/css2/#root-height" + "text": "Magnification", + "url": "https://www.w3.org/TR/CSS22/ui.html#magnification" } }, - "#rule-sets": { - "current": { - "number": "4.1.7", + "/ui#outline-focus": { + "snapshot": { + "number": "18.4.1", "spec": "CSS 2.2", - "text": "Rule sets, declaration blocks, and selectors", - "url": "https://drafts.csswg.org/css2/#rule-sets" + "text": "Outlines and the focus", + "url": "https://www.w3.org/TR/CSS22/ui.html#outline-focus" } }, - "#run-in": { - "current": { - "number": "9.2.3", + "/ui#q0": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Run-in boxes", - "url": "https://drafts.csswg.org/css2/#run-in" + "text": "18 User interface", + "url": "https://www.w3.org/TR/CSS22/ui.html#q0" } }, - "#sans-serif": { - "current": { - "number": "15.3.1.2", + "/ui#system-colors": { + "snapshot": { + "number": "18.2", "spec": "CSS 2.2", - "text": "sans-serif", - "url": "https://drafts.csswg.org/css2/#sans-serif" + "text": "System Colors", + "url": "https://www.w3.org/TR/CSS22/ui.html#system-colors" } }, - "#scanner": { - "current": { - "number": "", + "/ui#system-fonts": { + "snapshot": { + "number": "18.3", "spec": "CSS 2.2", - "text": "Lexical scanner", - "url": "https://drafts.csswg.org/css2/#scanner" + "text": "User preferences for fonts", + "url": "https://www.w3.org/TR/CSS22/ui.html#system-fonts" } }, - "#scope": { - "current": { - "number": "12.4.1", + "/visudet#Computing_heights_and_margins": { + "snapshot": { + "number": "10.6", "spec": "CSS 2.2", - "text": "Nested counters and scope", - "url": "https://drafts.csswg.org/css2/#scope" + "text": "Calculating heights and margins", + "url": "https://www.w3.org/TR/CSS22/visudet.html#Computing_heights_and_margins" } }, - "#selector": { - "current": { - "number": "5", + "/visudet#Computing_widths_and_margins": { + "snapshot": { + "number": "10.3", "spec": "CSS 2.2", - "text": "Selectors", - "url": "https://drafts.csswg.org/css2/#selector" + "text": "Calculating widths and margins", + "url": "https://www.w3.org/TR/CSS22/visudet.html#Computing_widths_and_margins" } }, - "#selector-syntax": { - "current": { - "number": "5.2", + "/visudet#abs-non-replaced-height": { + "snapshot": { + "number": "10.6.4", "spec": "CSS 2.2", - "text": "Selector syntax", - "url": "https://drafts.csswg.org/css2/#selector-syntax" + "text": "Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-height" } }, - "#separated-borders": { - "current": { - "number": "17.6.1", + "/visudet#abs-non-replaced-width": { + "snapshot": { + "number": "10.3.7", "spec": "CSS 2.2", - "text": "The separated borders model Info about the 'separated borders model' definition.#separated-borders-modelReferenced in: 17.5. Visual layout of table contents 17.5.1. Table layers and transparency (2) 17.6. Borders 17.6.3. Border styles (2)", - "url": "https://drafts.csswg.org/css2/#separated-borders" + "text": "Absolutely positioned, non-replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-width" } }, - "#serif": { - "current": { - "number": "15.3.1.1", + "/visudet#abs-replaced-height": { + "snapshot": { + "number": "10.6.5", "spec": "CSS 2.2", - "text": "serif", - "url": "https://drafts.csswg.org/css2/#serif" + "text": "Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#abs-replaced-height" } }, - "#shorthand": { - "current": { - "number": "1.4.3", + "/visudet#abs-replaced-width": { + "snapshot": { + "number": "10.3.8", "spec": "CSS 2.2", - "text": "Shorthand properties", - "url": "https://drafts.csswg.org/css2/#shorthand" + "text": "Absolutely positioned, replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#abs-replaced-width" } }, - "#since-20110607": [ - "/changes#since-20110607" - ], - "#small-caps": { - "current": { - "number": "15.5", + "/visudet#block-replaced-width": { + "snapshot": { + "number": "10.3.4", "spec": "CSS 2.2", - "text": "Small-caps: the font-variant property", - "url": "https://drafts.csswg.org/css2/#small-caps" + "text": "Block-level, replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS22/visudet.html#block-replaced-width" } }, - "#sotd": { - "current": { - "number": "", + "/visudet#block-root-margin": { + "snapshot": { + "number": "10.6.6", "spec": "CSS 2.2", - "text": "Status of this document", - "url": "https://drafts.csswg.org/css2/#sotd" + "text": "Complicated cases", + "url": "https://www.w3.org/TR/CSS22/visudet.html#block-root-margin" } }, - "#spacing-props": { - "current": { - "number": "16.4", + "/visudet#blockwidth": { + "snapshot": { + "number": "10.3.3", "spec": "CSS 2.2", - "text": "Letter and word spacing: the letter-spacing and word-spacing properties", - "url": "https://drafts.csswg.org/css2/#spacing-props" + "text": "Block-level, non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS22/visudet.html#blockwidth" } }, - "#specificity": { - "current": { - "number": "6.4.3", + "/visudet#containing-block-details": { + "snapshot": { + "number": "10.1", "spec": "CSS 2.2", - "text": "Calculating a selector’s specificity", - "url": "https://drafts.csswg.org/css2/#specificity" + "text": "Definition of \"containing block\"", + "url": "https://www.w3.org/TR/CSS22/visudet.html#containing-block-details" } }, - "#specified-values": { - "current": { - "number": "6.1.1", + "/visudet#float-replaced-width": { + "snapshot": { + "number": "10.3.6", "spec": "CSS 2.2", - "text": "Specified values Info about the ' Specified values' definition.#specified-valueReferenced in: 6.2. Inheritance Specified value of inherit (2)", - "url": "https://drafts.csswg.org/css2/#specified-values" + "text": "Floating, replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#float-replaced-width" } }, - "#stacking-defs": { - "current": { - "number": "", + "/visudet#float-width": { + "snapshot": { + "number": "10.3.5", "spec": "CSS 2.2", - "text": "Definitions", - "url": "https://drafts.csswg.org/css2/#stacking-defs" + "text": "Floating, non-replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#float-width" } }, - "#stacking-notes": { - "current": { - "number": "", + "/visudet#inline-non-replaced": { + "snapshot": { + "number": "10.6.1", "spec": "CSS 2.2", - "text": "Notes", - "url": "https://drafts.csswg.org/css2/#stacking-notes" + "text": "Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#inline-non-replaced" } }, - "#statements": { - "current": { - "number": "4.1.4", + "/visudet#inline-replaced-height": { + "snapshot": { + "number": "10.6.2", "spec": "CSS 2.2", - "text": "Statements", - "url": "https://drafts.csswg.org/css2/#statements" + "text": "Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#inline-replaced-height" } }, - "#status": { + "/visudet#inline-replaced-width": { "snapshot": { - "number": "", + "number": "10.3.2", "spec": "CSS 2.2", - "text": "Status of this document", - "url": "https://www.w3.org/TR/CSS22/#status" + "text": "Inline, replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#inline-replaced-width" } }, - "#strings": { - "current": { - "number": "4.3.7", + "/visudet#inline-width": { + "snapshot": { + "number": "10.3.1", "spec": "CSS 2.2", - "text": "Strings", - "url": "https://drafts.csswg.org/css2/#strings" + "text": "Inline, non-replaced elements", + "url": "https://www.w3.org/TR/CSS22/visudet.html#inline-width" } }, - "#syndata": { - "current": { - "number": "4", + "/visudet#inlineblock-replaced-width": { + "snapshot": { + "number": "10.3.10", "spec": "CSS 2.2", - "text": "Syntax and basic data types", - "url": "https://drafts.csswg.org/css2/#syndata" + "text": "'Inline-block', replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS22/visudet.html#inlineblock-replaced-width" } }, - "#syntax": { - "current": { - "number": "4.1", + "/visudet#inlineblock-width": { + "snapshot": { + "number": "10.3.9", "spec": "CSS 2.2", - "text": "Syntax", - "url": "https://drafts.csswg.org/css2/#syntax" + "text": "'Inline-block', non-replaced elements in normal flow", + "url": "https://www.w3.org/TR/CSS22/visudet.html#inlineblock-width" } }, - "#system-colors": { - "current": { - "number": "18.2", + "/visudet#leading": { + "snapshot": { + "number": "10.8.1", "spec": "CSS 2.2", - "text": "System Colors", - "url": "https://drafts.csswg.org/css2/#system-colors" + "text": "Leading and half-leading", + "url": "https://www.w3.org/TR/CSS22/visudet.html#leading" } }, - "#system-fonts%E2%91%A0": { - "current": { - "number": "18.3", + "/visudet#line-height": { + "snapshot": { + "number": "10.8", "spec": "CSS 2.2", - "text": "User preferences for fonts", - "url": "https://drafts.csswg.org/css2/#system-fonts%E2%91%A0" + "text": "Line height calculations: the 'line-height' and 'vertical-align' properties", + "url": "https://www.w3.org/TR/CSS22/visudet.html#line-height" } }, - "#table-border-styles": { - "current": { - "number": "17.6.3", + "/visudet#min-max-heights": { + "snapshot": { + "number": "10.7", "spec": "CSS 2.2", - "text": "Border styles", - "url": "https://drafts.csswg.org/css2/#table-border-styles" + "text": "Minimum and maximum heights: 'min-height' and 'max-height'", + "url": "https://www.w3.org/TR/CSS22/visudet.html#min-max-heights" } }, - "#table-display": { - "current": { - "number": "17.2", + "/visudet#min-max-widths": { + "snapshot": { + "number": "10.4", "spec": "CSS 2.2", - "text": "The CSS table model", - "url": "https://drafts.csswg.org/css2/#table-display" + "text": "Minimum and maximum widths: 'min-width' and 'max-width'", + "url": "https://www.w3.org/TR/CSS22/visudet.html#min-max-widths" } }, - "#table-layers": { - "current": { - "number": "17.5.1", + "/visudet#normal-block": { + "snapshot": { + "number": "10.6.3", "spec": "CSS 2.2", - "text": "Table layers and transparency", - "url": "https://drafts.csswg.org/css2/#table-layers" + "text": "Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'", + "url": "https://www.w3.org/TR/CSS22/visudet.html#normal-block" } }, - "#table-layout": { - "current": { - "number": "17.5", + "/visudet#q0": { + "snapshot": { + "number": "", "spec": "CSS 2.2", - "text": "Visual layout of table contents", - "url": "https://drafts.csswg.org/css2/#table-layout" + "text": "10 Visual formatting model details", + "url": "https://www.w3.org/TR/CSS22/visudet.html#q0" } }, - "#tables": { - "current": { - "number": "", + "/visudet#root-height": { + "snapshot": { + "number": "10.6.7", "spec": "CSS 2.2", - "text": "17. Tables", - "url": "https://drafts.csswg.org/css2/#tables" + "text": "'Auto' heights for block formatting context roots", + "url": "https://www.w3.org/TR/CSS22/visudet.html#root-height" } }, - "#tables-intro": { - "current": { - "number": "17.1", + "/visudet#the-height-property": { + "snapshot": { + "number": "10.5", "spec": "CSS 2.2", - "text": "Introduction to tables", - "url": "https://drafts.csswg.org/css2/#tables-intro" + "text": "Content height: the 'height' property", + "url": "https://www.w3.org/TR/CSS22/visudet.html#the-height-property" } }, - "#text": { - "current": { - "number": "", + "/visudet#the-width-property": { + "snapshot": { + "number": "10.2", "spec": "CSS 2.2", - "text": "16. Text", - "url": "https://drafts.csswg.org/css2/#text" + "text": "Content width: the 'width' property", + "url": "https://www.w3.org/TR/CSS22/visudet.html#the-width-property" } }, - "#text-css": { - "current": { - "number": "3.4", + "/visufx#clipping": { + "snapshot": { + "number": "11.1.2", "spec": "CSS 2.2", - "text": "The text/css content type", - "url": "https://drafts.csswg.org/css2/#text-css" + "text": "Clipping: the 'clip' property", + "url": "https://www.w3.org/TR/CSS22/visufx.html#clipping" } }, - "#the-canvas": { - "current": { - "number": "2.3.1", + "/visufx#overflow": { + "snapshot": { + "number": "11.1.1", "spec": "CSS 2.2", - "text": "The canvas", - "url": "https://drafts.csswg.org/css2/#the-canvas" + "text": "Overflow: the 'overflow' property", + "url": "https://www.w3.org/TR/CSS22/visufx.html#overflow" } }, - "#the-height-property": { - "current": { - "number": "10.5", + "/visufx#overflow-clipping": { + "snapshot": { + "number": "11.1", "spec": "CSS 2.2", - "text": "Content height: the height property", - "url": "https://drafts.csswg.org/css2/#the-height-property" + "text": "Overflow and clipping", + "url": "https://www.w3.org/TR/CSS22/visufx.html#overflow-clipping" } }, - "#the-page": { - "current": { + "/visufx#q0": { + "snapshot": { "number": "", "spec": "CSS 2.2", - "text": "13. Paged media", - "url": "https://drafts.csswg.org/css2/#the-page" + "text": "11 Visual effects", + "url": "https://www.w3.org/TR/CSS22/visufx.html#q0" } }, - "#the-width-property": { - "current": { - "number": "10.2", + "/visufx#visibility": { + "snapshot": { + "number": "11.2", "spec": "CSS 2.2", - "text": "Content width: the width property", - "url": "https://drafts.csswg.org/css2/#the-width-property" + "text": "Visibility: the 'visibility' property", + "url": "https://www.w3.org/TR/CSS22/visufx.html#visibility" } }, - "#title": { - "current": { - "number": "", - "spec": "CSS 2.2", - "text": "CSS 2", - "url": "https://drafts.csswg.org/css2/#title" - }, + "/visuren#absolute-positioning": { "snapshot": { - "number": "", + "number": "9.6", "spec": "CSS 2.2", - "text": "Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification", - "url": "https://www.w3.org/TR/CSS22/#title" + "text": "Absolute positioning", + "url": "https://www.w3.org/TR/CSS22/visuren.html#absolute-positioning" } }, - "#toc": { - "current": { - "number": "", + "/visuren#anonymous": { + "snapshot": { + "number": "9.2.2.1", "spec": "CSS 2.2", - "text": "Table of Contents", - "url": "https://drafts.csswg.org/css2/#toc" + "text": "Anonymous inline boxes", + "url": "https://www.w3.org/TR/CSS22/visuren.html#anonymous" } }, - "#tokenization": { - "current": { - "number": "4.1.1", + "/visuren#anonymous-block-level": { + "snapshot": { + "number": "9.2.1.1", "spec": "CSS 2.2", - "text": "Tokenization", - "url": "https://drafts.csswg.org/css2/#tokenization" + "text": "Anonymous block boxes", + "url": "https://www.w3.org/TR/CSS22/visuren.html#anonymous-block-level" } }, - "#tokenizer-diffs": { - "current": { - "number": "", + "/visuren#block-boxes": { + "snapshot": { + "number": "9.2.1", "spec": "CSS 2.2", - "text": "Comparison of tokenization in CSS2 (1998) and CSS1", - "url": "https://drafts.csswg.org/css2/#tokenizer-diffs" + "text": "Block-level elements and block boxes", + "url": "https://www.w3.org/TR/CSS22/visuren.html#block-boxes" } }, - "#type-selectors": { - "current": { - "number": "5.4", + "/visuren#block-formatting": { + "snapshot": { + "number": "9.4.1", "spec": "CSS 2.2", - "text": "Type selectors", - "url": "https://drafts.csswg.org/css2/#type-selectors" + "text": "Block formatting contexts", + "url": "https://www.w3.org/TR/CSS22/visuren.html#block-formatting" } }, - "#ui": { - "current": { - "number": "", + "/visuren#box-gen": { + "snapshot": { + "number": "9.2", "spec": "CSS 2.2", - "text": "18. User interface", - "url": "https://drafts.csswg.org/css2/#ui" + "text": "Controlling box generation", + "url": "https://www.w3.org/TR/CSS22/visuren.html#box-gen" } }, - "#undisplayed-counters": { - "current": { - "number": "12.4.3", + "/visuren#choose-position": { + "snapshot": { + "number": "9.3.1", "spec": "CSS 2.2", - "text": "Counters in elements with 'display: none'", - "url": "https://drafts.csswg.org/css2/#undisplayed-counters" + "text": "Choosing a positioning scheme: 'position' property", + "url": "https://www.w3.org/TR/CSS22/visuren.html#choose-position" } }, - "#universal-selector": { - "current": { - "number": "5.3", + "/visuren#comp-abspos": { + "snapshot": { + "number": "9.8.4", "spec": "CSS 2.2", - "text": "Universal selector", - "url": "https://drafts.csswg.org/css2/#universal-selector" + "text": "Absolute positioning", + "url": "https://www.w3.org/TR/CSS22/visuren.html#comp-abspos" } }, - "#unsupported-values": { - "current": { - "number": "4.3.8", + "/visuren#comp-float": { + "snapshot": { + "number": "9.8.3", "spec": "CSS 2.2", - "text": "Unsupported Values", - "url": "https://drafts.csswg.org/css2/#unsupported-values" + "text": "Floating a box", + "url": "https://www.w3.org/TR/CSS22/visuren.html#comp-float" } }, - "#uri": { - "current": { - "number": "4.3.4", + "/visuren#comp-normal-flow": { + "snapshot": { + "number": "9.8.1", "spec": "CSS 2.2", - "text": "URLs and URIs", - "url": "https://drafts.csswg.org/css2/#uri" + "text": "Normal flow", + "url": "https://www.w3.org/TR/CSS22/visuren.html#comp-normal-flow" } }, - "#used-values": { - "current": { - "number": "6.1.3", + "/visuren#comp-relpos": { + "snapshot": { + "number": "9.8.2", "spec": "CSS 2.2", - "text": "Used values Info about the ' Used values' definition.#used-valueReferenced in: 13.3.3. Allowed page breaks", - "url": "https://drafts.csswg.org/css2/#used-values" + "text": "Relative positioning", + "url": "https://www.w3.org/TR/CSS22/visuren.html#comp-relpos" } }, - "#value-def-inherit": { - "current": { - "number": "6.2.1", + "/visuren#comparison": { + "snapshot": { + "number": "9.8", "spec": "CSS 2.2", - "text": "The inherit Info about the 'inherit' definition.#valdef-all-inheritReferenced in: 1.4.2.1. Value 2.4. CSS design principles 6.1.1. Specified values 6.1.2. Computed values 6.2.1. The inherit value (2) (3) 12.4. Automatic counters and numbering 15.3. Font family: the font-family property Specified value of inherit value", - "url": "https://drafts.csswg.org/css2/#value-def-inherit" + "text": "Comparison of normal flow, floats, and absolute positioning", + "url": "https://www.w3.org/TR/CSS22/visuren.html#comparison" } }, - "#value-defs": { - "current": { - "number": "1.4.2.1", + "/visuren#direction": { + "snapshot": { + "number": "9.10", "spec": "CSS 2.2", - "text": "Value", - "url": "https://drafts.csswg.org/css2/#value-defs" + "text": "Text direction: the 'direction' and 'unicode-bidi' properties", + "url": "https://www.w3.org/TR/CSS22/visuren.html#direction" } }, - "#value-stages": { - "current": { - "number": "6.1", + "/visuren#dis-pos-flo": { + "snapshot": { + "number": "9.7", "spec": "CSS 2.2", - "text": "Specified, computed, and actual values", - "url": "https://drafts.csswg.org/css2/#value-stages" + "text": "Relationships between 'display', 'position', and 'float'", + "url": "https://www.w3.org/TR/CSS22/visuren.html#dis-pos-flo" } }, - "#values%E2%91%A0": { - "current": { - "number": "4.3", + "/visuren#display-prop": { + "snapshot": { + "number": "9.2.4", "spec": "CSS 2.2", - "text": "Values", - "url": "https://drafts.csswg.org/css2/#values%E2%91%A0" + "text": "The 'display' property", + "url": "https://www.w3.org/TR/CSS22/visuren.html#display-prop" } }, - "#vendor-keyword-history": { - "current": { - "number": "4.1.2.2", + "/visuren#fixed-positioning": { + "snapshot": { + "number": "9.6.1", "spec": "CSS 2.2", - "text": "Informative Historical Notes", - "url": "https://drafts.csswg.org/css2/#vendor-keyword-history" + "text": "Fixed positioning", + "url": "https://www.w3.org/TR/CSS22/visuren.html#fixed-positioning" } }, - "#vendor-keywords": { - "current": { - "number": "4.1.2.1", + "/visuren#float-position": { + "snapshot": { + "number": "9.5.1", "spec": "CSS 2.2", - "text": "Vendor-specific extensions", - "url": "https://drafts.csswg.org/css2/#vendor-keywords" + "text": "Positioning the float: the 'float' property", + "url": "https://www.w3.org/TR/CSS22/visuren.html#float-position" } }, - "#viewport": { - "current": { - "number": "9.1.1", + "/visuren#floats": { + "snapshot": { + "number": "9.5", "spec": "CSS 2.2", - "text": "The viewport", - "url": "https://drafts.csswg.org/css2/#viewport" + "text": "Floats", + "url": "https://www.w3.org/TR/CSS22/visuren.html#floats" } }, - "#visibility": { - "current": { - "number": "11.2", + "/visuren#flow-control": { + "snapshot": { + "number": "9.5.2", "spec": "CSS 2.2", - "text": "Visibility: the visibility property", - "url": "https://drafts.csswg.org/css2/#visibility" + "text": "Controlling flow next to floats: the 'clear' property", + "url": "https://www.w3.org/TR/CSS22/visuren.html#flow-control" } }, - "#visual-model-intro": { - "current": { - "number": "9.1", + "/visuren#inline-boxes": { + "snapshot": { + "number": "9.2.2", "spec": "CSS 2.2", - "text": "Introduction to the visual formatting model", - "url": "https://drafts.csswg.org/css2/#visual-model-intro" + "text": "Inline-level elements and inline boxes", + "url": "https://www.w3.org/TR/CSS22/visuren.html#inline-boxes" } }, - "#visudet": { - "current": { - "number": "", + "/visuren#inline-formatting": { + "snapshot": { + "number": "9.4.2", "spec": "CSS 2.2", - "text": "10. Visual formatting model details", - "url": "https://drafts.csswg.org/css2/#visudet" + "text": "Inline formatting contexts", + "url": "https://www.w3.org/TR/CSS22/visuren.html#inline-formatting" } }, - "#visufx": { - "current": { - "number": "", + "/visuren#layers": { + "snapshot": { + "number": "9.9", "spec": "CSS 2.2", - "text": "11. Visual effects", - "url": "https://drafts.csswg.org/css2/#visufx" + "text": "Layered presentation", + "url": "https://www.w3.org/TR/CSS22/visuren.html#layers" } }, - "#visuren": { - "current": { - "number": "9", + "/visuren#normal-flow": { + "snapshot": { + "number": "9.4", "spec": "CSS 2.2", - "text": "Visual formatting model", - "url": "https://drafts.csswg.org/css2/#visuren" + "text": "Normal flow", + "url": "https://www.w3.org/TR/CSS22/visuren.html#normal-flow" } }, - "#w3c-conform-future-proofing": { - "current": { - "number": "", + "/visuren#position-props": { + "snapshot": { + "number": "9.3.2", "spec": "CSS 2.2", - "text": "Implementations of Unstable and Proprietary Features", - "url": "https://drafts.csswg.org/css2/#w3c-conform-future-proofing" + "text": "Box offsets: 'top', 'right', 'bottom', 'left'", + "url": "https://www.w3.org/TR/CSS22/visuren.html#position-props" } }, - "#w3c-conformance": { - "current": { - "number": "", + "/visuren#positioning-scheme": { + "snapshot": { + "number": "9.3", "spec": "CSS 2.2", - "text": "Conformance", - "url": "https://drafts.csswg.org/css2/#w3c-conformance" + "text": "Positioning schemes", + "url": "https://www.w3.org/TR/CSS22/visuren.html#positioning-scheme" } }, - "#w3c-conformance-classes": { - "current": { - "number": "", + "/visuren#q0": { + "snapshot": { + "number": "9", "spec": "CSS 2.2", - "text": "Conformance classes", - "url": "https://drafts.csswg.org/css2/#w3c-conformance-classes" + "text": "Visual formatting model", + "url": "https://www.w3.org/TR/CSS22/visuren.html#q0" } }, - "#w3c-conventions": { - "current": { - "number": "", + "/visuren#relative-positioning": { + "snapshot": { + "number": "9.4.3", "spec": "CSS 2.2", - "text": "Document conventions", - "url": "https://drafts.csswg.org/css2/#w3c-conventions" + "text": "Relative positioning", + "url": "https://www.w3.org/TR/CSS22/visuren.html#relative-positioning" } }, - "#w3c-partial": { - "current": { - "number": "", + "/visuren#run-in": { + "snapshot": { + "number": "9.2.3", "spec": "CSS 2.2", - "text": "Partial implementations", - "url": "https://drafts.csswg.org/css2/#w3c-partial" + "text": "Run-in boxes", + "url": "https://www.w3.org/TR/CSS22/visuren.html#run-in" } }, - "#w3c-testing": { - "current": { - "number": "", + "/visuren#viewport": { + "snapshot": { + "number": "9.1.1", "spec": "CSS 2.2", - "text": "Non-experimental implementations", - "url": "https://drafts.csswg.org/css2/#w3c-testing" + "text": "The viewport", + "url": "https://www.w3.org/TR/CSS22/visuren.html#viewport" } }, - "#white-space-model": { - "current": { - "number": "16.6.1", + "/visuren#visual-model-intro": { + "snapshot": { + "number": "9.1", "spec": "CSS 2.2", - "text": "The white-space processing model", - "url": "https://drafts.csswg.org/css2/#white-space-model" + "text": "Introduction to the visual formatting model", + "url": "https://www.w3.org/TR/CSS22/visuren.html#visual-model-intro" } }, - "#white-space-prop": { - "current": { - "number": "16.6", + "/visuren#z-index": { + "snapshot": { + "number": "9.9.1", "spec": "CSS 2.2", - "text": "White space: the white-space property", - "url": "https://drafts.csswg.org/css2/#white-space-prop" + "text": "Specifying the stack level: the 'z-index' property", + "url": "https://www.w3.org/TR/CSS22/visuren.html#z-index" } }, - "#width-layout": { - "current": { - "number": "17.5.2", + "/zindex#painting-order": { + "snapshot": { + "number": "E.2", "spec": "CSS 2.2", - "text": "Table width algorithms: the table-layout property", - "url": "https://drafts.csswg.org/css2/#width-layout" + "text": "Painting order", + "url": "https://www.w3.org/TR/CSS22/zindex.html#painting-order" } }, - "#xml-tutorial": { - "current": { - "number": "2.2", + "/zindex#q0": { + "snapshot": { + "number": "E", "spec": "CSS 2.2", - "text": "A brief CSS 2 tutorial for XML", - "url": "https://drafts.csswg.org/css2/#xml-tutorial" + "text": "Elaborate description of Stacking Contexts", + "url": "https://www.w3.org/TR/CSS22/zindex.html#q0" } }, - "#z-index": { - "current": { - "number": "9.9.1", + "/zindex#stacking-defs": { + "snapshot": { + "number": "E.1", "spec": "CSS 2.2", - "text": "Specifying the stack level: the z-index property", - "url": "https://drafts.csswg.org/css2/#z-index" + "text": "Definitions", + "url": "https://www.w3.org/TR/CSS22/zindex.html#stacking-defs" } }, - "/changes#since-20110607": { + "/zindex#stacking-notes": { "snapshot": { - "number": "C.1", + "number": "E.3", "spec": "CSS 2.2", - "text": "Changes since the Recommendation of 7 June 2011", - "url": "https://www.w3.org/TR/CSS22/changes.html#since-20110607" + "text": "Notes", + "url": "https://www.w3.org/TR/CSS22/zindex.html#stacking-notes" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-css3-exclusions.json b/bikeshed/spec-data/readonly/headings/headings-css3-exclusions.json index 2cf2f32346..105c4c2ed5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-css3-exclusions.json +++ b/bikeshed/spec-data/readonly/headings/headings-css3-exclusions.json @@ -395,6 +395,14 @@ "url": "https://www.w3.org/TR/css3-exclusions/#partial" } }, + "#privacy": { + "current": { + "number": "", + "spec": "CSS Exclusions 1", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/css-exclusions-1/#privacy" + } + }, "#processing-model-example": { "current": { "number": "3.5.6", @@ -473,6 +481,14 @@ "url": "https://www.w3.org/TR/css3-exclusions/#scope-and-effect-of-exclusions" } }, + "#security": { + "current": { + "number": "", + "spec": "CSS Exclusions 1", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/css-exclusions-1/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-cssom-1.json b/bikeshed/spec-data/readonly/headings/headings-cssom-1.json index 3358eff251..12661c50a3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-cssom-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-cssom-1.json @@ -971,7 +971,7 @@ "snapshot": { "number": "", "spec": "CSSOM", - "text": "43 TestsCSS Object Model (CSSOM)", + "text": "CSS Object Model (CSSOM)", "url": "https://www.w3.org/TR/cssom-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-custom-state-pseudo-class.json b/bikeshed/spec-data/readonly/headings/headings-custom-state-pseudo-class.json deleted file mode 100644 index 40357edd28..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-custom-state-pseudo-class.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "#abstract": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Abstract", - "url": "https://wicg.github.io/custom-state-pseudo-class/#abstract" - } - }, - "#exposing": { - "current": { - "number": "2", - "spec": "Custom State Pseudo Class", - "text": "Exposing custom element states", - "url": "https://wicg.github.io/custom-state-pseudo-class/#exposing" - } - }, - "#idl-index": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "IDL Index", - "url": "https://wicg.github.io/custom-state-pseudo-class/#idl-index" - } - }, - "#index": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Index", - "url": "https://wicg.github.io/custom-state-pseudo-class/#index" - } - }, - "#index-defined-elsewhere": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Terms defined by reference", - "url": "https://wicg.github.io/custom-state-pseudo-class/#index-defined-elsewhere" - } - }, - "#index-defined-here": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Terms defined by this specification", - "url": "https://wicg.github.io/custom-state-pseudo-class/#index-defined-here" - } - }, - "#introduction": { - "current": { - "number": "1", - "spec": "Custom State Pseudo Class", - "text": "Introduction", - "url": "https://wicg.github.io/custom-state-pseudo-class/#introduction" - } - }, - "#issues-index": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Issues Index", - "url": "https://wicg.github.io/custom-state-pseudo-class/#issues-index" - } - }, - "#motivation": { - "current": { - "number": "1.1", - "spec": "Custom State Pseudo Class", - "text": "Motivation", - "url": "https://wicg.github.io/custom-state-pseudo-class/#motivation" - } - }, - "#normative": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Normative References", - "url": "https://wicg.github.io/custom-state-pseudo-class/#normative" - } - }, - "#references": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "References", - "url": "https://wicg.github.io/custom-state-pseudo-class/#references" - } - }, - "#selecting": { - "current": { - "number": "3", - "spec": "Custom State Pseudo Class", - "text": "Selecting a custom element with a specific state", - "url": "https://wicg.github.io/custom-state-pseudo-class/#selecting" - } - }, - "#solution": { - "current": { - "number": "1.2", - "spec": "Custom State Pseudo Class", - "text": "Solution", - "url": "https://wicg.github.io/custom-state-pseudo-class/#solution" - } - }, - "#status": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Status of this document", - "url": "https://wicg.github.io/custom-state-pseudo-class/#status" - } - }, - "#subtitle": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Draft Community Group Report, 18 January 2021", - "url": "https://wicg.github.io/custom-state-pseudo-class/#subtitle" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Custom State Pseudo Class", - "url": "https://wicg.github.io/custom-state-pseudo-class/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Table of Contents", - "url": "https://wicg.github.io/custom-state-pseudo-class/#toc" - } - }, - "#w3c-conformance": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Conformance", - "url": "https://wicg.github.io/custom-state-pseudo-class/#w3c-conformance" - } - }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/custom-state-pseudo-class/#w3c-conformant-algorithms" - } - }, - "#w3c-conventions": { - "current": { - "number": "", - "spec": "Custom State Pseudo Class", - "text": "Document conventions", - "url": "https://wicg.github.io/custom-state-pseudo-class/#w3c-conventions" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-device-attributes.json b/bikeshed/spec-data/readonly/headings/headings-device-attributes.json new file mode 100644 index 0000000000..566e5b825f --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-device-attributes.json @@ -0,0 +1,282 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Abstract", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#abstract" + } + }, + "#annotated-asset-id-section": { + "current": { + "number": "2.4.1", + "spec": "Device Attributes API", + "text": "Annotated Asset ID", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#annotated-asset-id-section" + } + }, + "#annotated-location-section": { + "current": { + "number": "2.4.2", + "spec": "Device Attributes API", + "text": "Annotated Location", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#annotated-location-section" + } + }, + "#code-example": { + "current": { + "number": "4", + "spec": "Device Attributes API", + "text": "Code example", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#code-example" + } + }, + "#device-attributes": { + "current": { + "number": "2.4", + "spec": "Device Attributes API", + "text": "Device attributes", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#device-attributes" + } + }, + "#directory-id-section": { + "current": { + "number": "2.4.3", + "spec": "Device Attributes API", + "text": "Directory ID", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#directory-id-section" + } + }, + "#getAnnotatedAssetId-method": { + "current": { + "number": "3.1", + "spec": "Device Attributes API", + "text": "getAnnotatedAssetId() method", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#getAnnotatedAssetId-method" + } + }, + "#getAnnotatedLocation-method": { + "current": { + "number": "3.2", + "spec": "Device Attributes API", + "text": "getAnnotatedLocation() method", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#getAnnotatedLocation-method" + } + }, + "#getDirectoryId-method": { + "current": { + "number": "3.3", + "spec": "Device Attributes API", + "text": "getDirectoryId() method", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#getDirectoryId-method" + } + }, + "#getHostname-method": { + "current": { + "number": "3.4", + "spec": "Device Attributes API", + "text": "getHostname() method", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#getHostname-method" + } + }, + "#getSerialNumber-method": { + "current": { + "number": "3.5", + "spec": "Device Attributes API", + "text": "getSerialNumber() method", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#getSerialNumber-method" + } + }, + "#hostname-section": { + "current": { + "number": "2.4.4", + "spec": "Device Attributes API", + "text": "Hostname", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#hostname-section" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "IDL Index", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Index", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Informative References", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#informative" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Device Attributes API", + "text": "Introduction", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#introduction" + } + }, + "#managed-devices": { + "current": { + "number": "2.1", + "spec": "Device Attributes API", + "text": "Managed devices", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#managed-devices" + } + }, + "#managed-web-applications": { + "current": { + "number": "2.2", + "spec": "Device Attributes API", + "text": "Managed web applications", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#managed-web-applications" + } + }, + "#model": { + "current": { + "number": "2", + "spec": "Device Attributes API", + "text": "Model", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#model" + } + }, + "#navigatormanageddata-interface": { + "current": { + "number": "3", + "spec": "Device Attributes API", + "text": "NavigatorManagedData interface", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#navigatormanageddata-interface" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Normative References", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#normative" + } + }, + "#permission-control": { + "current": { + "number": "2.3", + "spec": "Device Attributes API", + "text": "Permission control", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#permission-control" + } + }, + "#privacy-considerations": { + "current": { + "number": "6", + "spec": "Device Attributes API", + "text": "Privacy considerations", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#privacy-considerations" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Draft Community Group Report, 18 July 2021", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#profile-and-date" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "References", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#references" + } + }, + "#security-considerations": { + "current": { + "number": "5", + "spec": "Device Attributes API", + "text": "Security considerations", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#security-considerations" + } + }, + "#serial-number-section": { + "current": { + "number": "2.4.5", + "spec": "Device Attributes API", + "text": "Serial Number", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#serial-number-section" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Status of this document", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#status" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Device Attributes API", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Table of Contents", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Conformance", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Conformant Algorithms", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Device Attributes API", + "text": "Document conventions", + "url": "https://wicg.github.io/WebApiDevice/device_attributes/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-device-posture.json b/bikeshed/spec-data/readonly/headings/headings-device-posture.json index 3570d7a545..3387e99ba4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-device-posture.json +++ b/bikeshed/spec-data/readonly/headings/headings-device-posture.json @@ -1,4 +1,18 @@ { + "#accessibility-considerations": { + "current": { + "number": "", + "spec": "Device Posture API", + "text": "11. Accessibility considerations", + "url": "https://w3c.github.io/device-posture/#accessibility-considerations" + }, + "snapshot": { + "number": "", + "spec": "Device Posture API", + "text": "11. Accessibility considerations", + "url": "https://www.w3.org/TR/device-posture/#accessibility-considerations" + } + }, "#acknowledgments": { "current": { "number": "B", @@ -27,32 +41,88 @@ "url": "https://www.w3.org/TR/device-posture/#algorithms" } }, + "#automation": { + "current": { + "number": "", + "spec": "Device Posture API", + "text": "12. Automation", + "url": "https://w3c.github.io/device-posture/#automation" + }, + "snapshot": { + "number": "", + "spec": "Device Posture API", + "text": "12. Automation", + "url": "https://www.w3.org/TR/device-posture/#automation" + } + }, + "#calculating-the-device-posture-information": { + "current": { + "number": "8.1", + "spec": "Device Posture API", + "text": "Calculating the device posture information", + "url": "https://w3c.github.io/device-posture/#calculating-the-device-posture-information" + }, + "snapshot": { + "number": "8.1", + "spec": "Device Posture API", + "text": "Calculating the device posture information", + "url": "https://www.w3.org/TR/device-posture/#calculating-the-device-posture-information" + } + }, + "#clear-device-posture": { + "current": { + "number": "12.1.2", + "spec": "Device Posture API", + "text": "Clear device posture", + "url": "https://w3c.github.io/device-posture/#clear-device-posture" + }, + "snapshot": { + "number": "12.1.2", + "spec": "Device Posture API", + "text": "Clear device posture", + "url": "https://www.w3.org/TR/device-posture/#clear-device-posture" + } + }, "#conformance": { "current": { "number": "", "spec": "Device Posture API", - "text": "12. Conformance", + "text": "14. Conformance", "url": "https://w3c.github.io/device-posture/#conformance" }, "snapshot": { "number": "", "spec": "Device Posture API", - "text": "12. Conformance", + "text": "14. Conformance", "url": "https://www.w3.org/TR/device-posture/#conformance" } }, - "#dependencies": { + "#cross-origin-iframes": { "current": { - "number": "", + "number": "10.1.2", "spec": "Device Posture API", - "text": "11. Dependencies", - "url": "https://w3c.github.io/device-posture/#dependencies" + "text": "Cross-origin iframes", + "url": "https://w3c.github.io/device-posture/#cross-origin-iframes" }, "snapshot": { - "number": "", + "number": "10.1.2", + "spec": "Device Posture API", + "text": "Cross-origin iframes", + "url": "https://www.w3.org/TR/device-posture/#cross-origin-iframes" + } + }, + "#data-minimization-0": { + "current": { + "number": "10.2.1", "spec": "Device Posture API", - "text": "11. Dependencies", - "url": "https://www.w3.org/TR/device-posture/#dependencies" + "text": "Data minimization", + "url": "https://w3c.github.io/device-posture/#data-minimization-0" + }, + "snapshot": { + "number": "10.2.1", + "spec": "Device Posture API", + "text": "Data minimization", + "url": "https://www.w3.org/TR/device-posture/#data-minimization-0" } }, "#device-posture-change": { @@ -85,13 +155,13 @@ }, "#example-1-posture-data": { "current": { - "number": "10.1", + "number": "13.1", "spec": "Device Posture API", "text": "Example 1: Posture data", "url": "https://w3c.github.io/device-posture/#example-1-posture-data" }, "snapshot": { - "number": "", + "number": "13.1", "spec": "Device Posture API", "text": "Example 1: Posture data", "url": "https://www.w3.org/TR/device-posture/#example-1-posture-data" @@ -99,13 +169,13 @@ }, "#example-2-device-posture": { "current": { - "number": "10.2", + "number": "13.2", "spec": "Device Posture API", "text": "Example 2: device-posture", "url": "https://w3c.github.io/device-posture/#example-2-device-posture" }, "snapshot": { - "number": "", + "number": "13.2", "spec": "Device Posture API", "text": "Example 2: device-posture", "url": "https://www.w3.org/TR/device-posture/#example-2-device-posture" @@ -113,13 +183,13 @@ }, "#example-3-feature-detection-of-device-posture-media-feature": { "current": { - "number": "10.3", + "number": "13.3", "spec": "Device Posture API", "text": "Example 3: Feature detection of device-posture media feature", "url": "https://w3c.github.io/device-posture/#example-3-feature-detection-of-device-posture-media-feature" }, "snapshot": { - "number": "", + "number": "13.3", "spec": "Device Posture API", "text": "Example 3: Feature detection of device-posture media feature", "url": "https://www.w3.org/TR/device-posture/#example-3-feature-detection-of-device-posture-media-feature" @@ -129,42 +199,56 @@ "current": { "number": "", "spec": "Device Posture API", - "text": "10. Examples", + "text": "13. Examples", "url": "https://w3c.github.io/device-posture/#examples" }, "snapshot": { "number": "", "spec": "Device Posture API", - "text": "10. Examples", + "text": "13. Examples", "url": "https://www.w3.org/TR/device-posture/#examples" } }, - "#extensions-to-the-navigator-interface": { + "#extension-commands": { "current": { - "number": "3", + "number": "12.1", "spec": "Device Posture API", - "text": "Extensions to the Navigator interface", - "url": "https://w3c.github.io/device-posture/#extensions-to-the-navigator-interface" + "text": "Extension Commands", + "url": "https://w3c.github.io/device-posture/#extension-commands" }, "snapshot": { - "number": "3", + "number": "12.1", "spec": "Device Posture API", - "text": "Extensions to the Navigator interface", - "url": "https://www.w3.org/TR/device-posture/#extensions-to-the-navigator-interface" + "text": "Extension Commands", + "url": "https://www.w3.org/TR/device-posture/#extension-commands" + } + }, + "#extensions-to-the-document-interface": { + "current": { + "number": "2", + "spec": "Device Posture API", + "text": "Extensions to the Document interface", + "url": "https://w3c.github.io/device-posture/#extensions-to-the-document-interface" + }, + "snapshot": { + "number": "2", + "spec": "Device Posture API", + "text": "Extensions to the Document interface", + "url": "https://www.w3.org/TR/device-posture/#extensions-to-the-document-interface" } }, - "#focused-area": { + "#extensions-to-the-navigator-interface-0": { "current": { - "number": "9.2.2", + "number": "3", "spec": "Device Posture API", - "text": "Focused Area", - "url": "https://w3c.github.io/device-posture/#focused-area" + "text": "Extensions to the Navigator interface", + "url": "https://w3c.github.io/device-posture/#extensions-to-the-navigator-interface-0" }, "snapshot": { - "number": "9.2.2", + "number": "3", "spec": "Device Posture API", - "text": "Focused Area", - "url": "https://www.w3.org/TR/device-posture/#focused-area" + "text": "Extensions to the Navigator interface", + "url": "https://www.w3.org/TR/device-posture/#extensions-to-the-navigator-interface-0" } }, "#foldables": { @@ -175,38 +259,38 @@ "url": "https://w3c.github.io/device-posture/#foldables" }, "snapshot": { - "number": "", + "number": "7.1.1", "spec": "Device Posture API", "text": "Foldables", "url": "https://www.w3.org/TR/device-posture/#foldables" } }, - "#idl-index": { + "#identifying-users-across-contexts-0": { "current": { - "number": "A", + "number": "10.1.1", "spec": "Device Posture API", - "text": "IDL Index", - "url": "https://w3c.github.io/device-posture/#idl-index" + "text": "Identifying users across contexts", + "url": "https://w3c.github.io/device-posture/#identifying-users-across-contexts-0" }, "snapshot": { - "number": "A", + "number": "10.1.1", "spec": "Device Posture API", - "text": "IDL Index", - "url": "https://www.w3.org/TR/device-posture/#idl-index" + "text": "Identifying users across contexts", + "url": "https://www.w3.org/TR/device-posture/#identifying-users-across-contexts-0" } }, - "#internal-slots": { + "#idl-index": { "current": { - "number": "2", + "number": "A", "spec": "Device Posture API", - "text": "Internal slots", - "url": "https://w3c.github.io/device-posture/#internal-slots" + "text": "IDL Index", + "url": "https://w3c.github.io/device-posture/#idl-index" }, "snapshot": { - "number": "2", + "number": "A", "spec": "Device Posture API", - "text": "Internal slots", - "url": "https://www.w3.org/TR/device-posture/#internal-slots" + "text": "IDL Index", + "url": "https://www.w3.org/TR/device-posture/#idl-index" } }, "#introduction": { @@ -225,15 +309,15 @@ }, "#mitigation-strategies": { "current": { - "number": "9.2", + "number": "10.2", "spec": "Device Posture API", - "text": "Mitigation Strategies", + "text": "Mitigation strategies", "url": "https://w3c.github.io/device-posture/#mitigation-strategies" }, "snapshot": { - "number": "9.2", + "number": "10.2", "spec": "Device Posture API", - "text": "Mitigation Strategies", + "text": "Mitigation strategies", "url": "https://www.w3.org/TR/device-posture/#mitigation-strategies" } }, @@ -273,12 +357,26 @@ "url": "https://w3c.github.io/device-posture/#posture-values-table" }, "snapshot": { - "number": "", + "number": "7.1", "spec": "Device Posture API", "text": "Posture values table", "url": "https://www.w3.org/TR/device-posture/#posture-values-table" } }, + "#privacy-considerations": { + "current": { + "number": "", + "spec": "Device Posture API", + "text": "10. Privacy considerations", + "url": "https://w3c.github.io/device-posture/#privacy-considerations" + }, + "snapshot": { + "number": "", + "spec": "Device Posture API", + "text": "10. Privacy considerations", + "url": "https://www.w3.org/TR/device-posture/#privacy-considerations" + } + }, "#reading-the-posture": { "current": { "number": "7", @@ -307,45 +405,45 @@ "url": "https://www.w3.org/TR/device-posture/#references" } }, - "#secure-context": { + "#security-considerations": { "current": { - "number": "9.2.1", + "number": "9", "spec": "Device Posture API", - "text": "Secure Context", - "url": "https://w3c.github.io/device-posture/#secure-context" + "text": "Security considerations", + "url": "https://w3c.github.io/device-posture/#security-considerations" }, "snapshot": { - "number": "9.2.1", + "number": "9", "spec": "Device Posture API", - "text": "Secure Context", - "url": "https://www.w3.org/TR/device-posture/#secure-context" + "text": "Security considerations", + "url": "https://www.w3.org/TR/device-posture/#security-considerations" } }, - "#security-and-privacy-considerations": { + "#set-device-posture": { "current": { - "number": "9", + "number": "12.1.1", "spec": "Device Posture API", - "text": "Security and Privacy considerations", - "url": "https://w3c.github.io/device-posture/#security-and-privacy-considerations" + "text": "Set device posture", + "url": "https://w3c.github.io/device-posture/#set-device-posture" }, "snapshot": { - "number": "9", + "number": "12.1.1", "spec": "Device Posture API", - "text": "Security and Privacy considerations", - "url": "https://www.w3.org/TR/device-posture/#security-and-privacy-considerations" + "text": "Set device posture", + "url": "https://www.w3.org/TR/device-posture/#set-device-posture" } }, "#the-device-posture-media-feature": { "current": { "number": "6.1", "spec": "Device Posture API", - "text": "The 'device-posture' media feature", + "text": "The device-posture media feature", "url": "https://w3c.github.io/device-posture/#the-device-posture-media-feature" }, "snapshot": { - "number": "", + "number": "6.1", "spec": "Device Posture API", - "text": "The 'device-posture' media feature", + "text": "The device-posture media feature", "url": "https://www.w3.org/TR/device-posture/#the-device-posture-media-feature" } }, @@ -419,46 +517,46 @@ "url": "https://www.w3.org/TR/device-posture/#toc" } }, - "#types-of-security-and-privacy-threats": { + "#types-of-privacy-threats": { "current": { - "number": "9.1", + "number": "10.1", "spec": "Device Posture API", - "text": "Types of security and privacy threats", - "url": "https://w3c.github.io/device-posture/#types-of-security-and-privacy-threats" + "text": "Types of privacy threats", + "url": "https://w3c.github.io/device-posture/#types-of-privacy-threats" }, "snapshot": { - "number": "9.1", + "number": "10.1", "spec": "Device Posture API", - "text": "Types of security and privacy threats", - "url": "https://www.w3.org/TR/device-posture/#types-of-security-and-privacy-threats" + "text": "Types of privacy threats", + "url": "https://www.w3.org/TR/device-posture/#types-of-privacy-threats" } }, - "#updating-the-device-posture-information": { + "#user-attention-0": { "current": { - "number": "8.1", + "number": "10.2.2", "spec": "Device Posture API", - "text": "Updating the device posture information", - "url": "https://w3c.github.io/device-posture/#updating-the-device-posture-information" + "text": "User attention", + "url": "https://w3c.github.io/device-posture/#user-attention-0" }, "snapshot": { - "number": "8.1", + "number": "10.2.2", "spec": "Device Posture API", - "text": "Updating the device posture information", - "url": "https://www.w3.org/TR/device-posture/#updating-the-device-posture-information" + "text": "User attention", + "url": "https://www.w3.org/TR/device-posture/#user-attention-0" } }, - "#visibility-state": { + "#user-mediated-action-0": { "current": { - "number": "9.2.3", + "number": "10.2.3", "spec": "Device Posture API", - "text": "Visibility State", - "url": "https://w3c.github.io/device-posture/#visibility-state" + "text": "User-mediated action", + "url": "https://w3c.github.io/device-posture/#user-mediated-action-0" }, "snapshot": { - "number": "9.2.3", + "number": "10.2.3", "spec": "Device Posture API", - "text": "Visibility State", - "url": "https://www.w3.org/TR/device-posture/#visibility-state" + "text": "User-mediated action", + "url": "https://www.w3.org/TR/device-posture/#user-mediated-action-0" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-digest-headers.json b/bikeshed/spec-data/readonly/headings/headings-digest-headers.json deleted file mode 100644 index c4ce09e2c7..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-digest-headers.json +++ /dev/null @@ -1,498 +0,0 @@ -{ - "#appendix-A": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Appendix A. Resource Representation and Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-A" - } - }, - "#appendix-B": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Appendix B. Examples of Unsolicited Digest", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B" - } - }, - "#appendix-B.1": { - "current": { - "number": "B.1", - "spec": "Digest Fields", - "text": "Server Returns Full Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.1" - } - }, - "#appendix-B.10": { - "current": { - "number": "B.10", - "spec": "Digest Fields", - "text": "Error responses", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.10" - } - }, - "#appendix-B.11": { - "current": { - "number": "B.11", - "spec": "Digest Fields", - "text": "Use with Trailer Fields and Transfer Coding", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.11" - } - }, - "#appendix-B.2": { - "current": { - "number": "B.2", - "spec": "Digest Fields", - "text": "Server Returns No Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.2" - } - }, - "#appendix-B.3": { - "current": { - "number": "B.3", - "spec": "Digest Fields", - "text": "Server Returns Partial Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.3" - } - }, - "#appendix-B.4": { - "current": { - "number": "B.4", - "spec": "Digest Fields", - "text": "Client and Server Provide Full Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.4" - } - }, - "#appendix-B.5": { - "current": { - "number": "B.5", - "spec": "Digest Fields", - "text": "Client Provides Full Representation Data, Server Provides No Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.5" - } - }, - "#appendix-B.6": { - "current": { - "number": "B.6", - "spec": "Digest Fields", - "text": "Client and Server Provide Full Representation Data", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.6" - } - }, - "#appendix-B.7": { - "current": { - "number": "B.7", - "spec": "Digest Fields", - "text": "POST Response does not Reference the Request URI", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.7" - } - }, - "#appendix-B.8": { - "current": { - "number": "B.8", - "spec": "Digest Fields", - "text": "POST Response Describes the Request Status", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.8" - } - }, - "#appendix-B.9": { - "current": { - "number": "B.9", - "spec": "Digest Fields", - "text": "Digest with PATCH", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-B.9" - } - }, - "#appendix-C": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Appendix C. Examples of Want-Repr-Digest Solicited Digest", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-C" - } - }, - "#appendix-C.1": { - "current": { - "number": "C.1", - "spec": "Digest Fields", - "text": "Server Selects Client's Least Preferred Algorithm", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-C.1" - } - }, - "#appendix-C.2": { - "current": { - "number": "C.2", - "spec": "Digest Fields", - "text": "Server Selects Algorithm Unsupported by Client", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-C.2" - } - }, - "#appendix-C.3": { - "current": { - "number": "C.3", - "spec": "Digest Fields", - "text": "Server Does Not Support Client Algorithm and Returns an Error", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-C.3" - } - }, - "#appendix-D": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Appendix D. Migrating from RFC 3230", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-D" - } - }, - "#appendix-E": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Acknowledgements", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-E" - } - }, - "#appendix-F": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Code Samples", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-F" - } - }, - "#appendix-G": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Changes", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G" - } - }, - "#appendix-G.1": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-08", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.1" - } - }, - "#appendix-G.2": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-07", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.2" - } - }, - "#appendix-G.3": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-06", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.3" - } - }, - "#appendix-G.4": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-05", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.4" - } - }, - "#appendix-G.5": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-04", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.5" - } - }, - "#appendix-G.6": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-03", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.6" - } - }, - "#appendix-G.7": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-02", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.7" - } - }, - "#appendix-G.8": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-01", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.8" - } - }, - "#appendix-G.9": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Since draft-ietf-httpbis-digest-headers-00", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-G.9" - } - }, - "#appendix-H": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Authors' Addresses", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#appendix-H" - } - }, - "#section-1": { - "current": { - "number": "1", - "spec": "Digest Fields", - "text": "Introduction", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-1" - } - }, - "#section-1.1": { - "current": { - "number": "1.1", - "spec": "Digest Fields", - "text": "Document Structure", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-1.1" - } - }, - "#section-1.2": { - "current": { - "number": "1.2", - "spec": "Digest Fields", - "text": "Concept Overview", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-1.2" - } - }, - "#section-1.3": { - "current": { - "number": "1.3", - "spec": "Digest Fields", - "text": "Obsoleting RFC 3230", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-1.3" - } - }, - "#section-1.4": { - "current": { - "number": "1.4", - "spec": "Digest Fields", - "text": "Notational Conventions", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-1.4" - } - }, - "#section-2": { - "current": { - "number": "2", - "spec": "Digest Fields", - "text": "The Content-Digest Field", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-2" - } - }, - "#section-3": { - "current": { - "number": "3", - "spec": "Digest Fields", - "text": "The Repr-Digest Field", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-3" - } - }, - "#section-3.1": { - "current": { - "number": "3.1", - "spec": "Digest Fields", - "text": "Using Repr-Digest in State-Changing Requests", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-3.1" - } - }, - "#section-3.2": { - "current": { - "number": "3.2", - "spec": "Digest Fields", - "text": "Repr-Digest and Content-Location in Responses", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-3.2" - } - }, - "#section-4": { - "current": { - "number": "4", - "spec": "Digest Fields", - "text": "Integrity preference fields", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-4" - } - }, - "#section-5": { - "current": { - "number": "5", - "spec": "Digest Fields", - "text": "Hash Algorithms for HTTP Digest Fields Registry", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-5" - } - }, - "#section-6": { - "current": { - "number": "6", - "spec": "Digest Fields", - "text": "Security Considerations", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6" - } - }, - "#section-6.1": { - "current": { - "number": "6.1", - "spec": "Digest Fields", - "text": "HTTP Messages Are Not Protected In Full", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.1" - } - }, - "#section-6.2": { - "current": { - "number": "6.2", - "spec": "Digest Fields", - "text": "End-to-End Integrity", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.2" - } - }, - "#section-6.3": { - "current": { - "number": "6.3", - "spec": "Digest Fields", - "text": "Usage in Signatures", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.3" - } - }, - "#section-6.4": { - "current": { - "number": "6.4", - "spec": "Digest Fields", - "text": "Usage in Trailer Fields", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.4" - } - }, - "#section-6.5": { - "current": { - "number": "6.5", - "spec": "Digest Fields", - "text": "Usage with Encryption", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.5" - } - }, - "#section-6.6": { - "current": { - "number": "6.6", - "spec": "Digest Fields", - "text": "Algorithm Agility", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.6" - } - }, - "#section-6.7": { - "current": { - "number": "6.7", - "spec": "Digest Fields", - "text": "Resource exhaustion", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-6.7" - } - }, - "#section-7": { - "current": { - "number": "7", - "spec": "Digest Fields", - "text": "IANA Considerations", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-7" - } - }, - "#section-7.1": { - "current": { - "number": "7.1", - "spec": "Digest Fields", - "text": "HTTP Field Name Registration", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-7.1" - } - }, - "#section-7.2": { - "current": { - "number": "7.2", - "spec": "Digest Fields", - "text": "Establish the Hash Algorithms for HTTP Digest Fields Registry", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-7.2" - } - }, - "#section-8": { - "current": { - "number": "8", - "spec": "Digest Fields", - "text": "References", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-8" - } - }, - "#section-8.1": { - "current": { - "number": "8.1", - "spec": "Digest Fields", - "text": "Normative References", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-8.1" - } - }, - "#section-8.2": { - "current": { - "number": "8.2", - "spec": "Digest Fields", - "text": "Informative References", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-8.2" - } - }, - "#section-abstract": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Abstract", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-abstract" - } - }, - "#section-boilerplate.1": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Status of This Memo", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-boilerplate.1" - } - }, - "#section-boilerplate.2": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Copyright Notice", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-boilerplate.2" - } - }, - "#section-note.1": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "About This Document", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-note.1" - } - }, - "#section-toc.1": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Table of Contents", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#section-toc.1" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Digest Fields", - "text": "Digest Fields", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html#title" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-digital-identities.json b/bikeshed/spec-data/readonly/headings/headings-digital-identities.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-digital-identities.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-direct-sockets.json b/bikeshed/spec-data/readonly/headings/headings-direct-sockets.json new file mode 100644 index 0000000000..e390592d2d --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-direct-sockets.json @@ -0,0 +1,290 @@ +{ + "#close-method": { + "current": { + "number": "1.6", + "spec": "Direct Sockets API", + "text": "close() method", + "url": "https://wicg.github.io/direct-sockets/#close-method" + } + }, + "#close-method-0": { + "current": { + "number": "2.6", + "spec": "Direct Sockets API", + "text": "close() method", + "url": "https://wicg.github.io/direct-sockets/#close-method-0" + } + }, + "#close-method-1": { + "current": { + "number": "3.5", + "spec": "Direct Sockets API", + "text": "close() method", + "url": "https://wicg.github.io/direct-sockets/#close-method-1" + } + }, + "#closed-attribute": { + "current": { + "number": "1.5", + "spec": "Direct Sockets API", + "text": "closed attribute", + "url": "https://wicg.github.io/direct-sockets/#closed-attribute" + } + }, + "#closed-attribute-0": { + "current": { + "number": "2.5", + "spec": "Direct Sockets API", + "text": "closed attribute", + "url": "https://wicg.github.io/direct-sockets/#closed-attribute-0" + } + }, + "#closed-attribute-1": { + "current": { + "number": "3.4", + "spec": "Direct Sockets API", + "text": "closed attribute", + "url": "https://wicg.github.io/direct-sockets/#closed-attribute-1" + } + }, + "#conformance": { + "current": { + "number": "7", + "spec": "Direct Sockets API", + "text": "Conformance", + "url": "https://wicg.github.io/direct-sockets/#conformance" + } + }, + "#constructor-method": { + "current": { + "number": "1.1", + "spec": "Direct Sockets API", + "text": "constructor() method", + "url": "https://wicg.github.io/direct-sockets/#constructor-method" + } + }, + "#constructor-method-0": { + "current": { + "number": "2.1", + "spec": "Direct Sockets API", + "text": "constructor() method", + "url": "https://wicg.github.io/direct-sockets/#constructor-method-0" + } + }, + "#constructor-method-1": { + "current": { + "number": "3.1", + "spec": "Direct Sockets API", + "text": "constructor() method", + "url": "https://wicg.github.io/direct-sockets/#constructor-method-1" + } + }, + "#idl-index": { + "current": { + "number": "6", + "spec": "Direct Sockets API", + "text": "IDL Index", + "url": "https://wicg.github.io/direct-sockets/#idl-index" + } + }, + "#integrations": { + "current": { + "number": "4", + "spec": "Direct Sockets API", + "text": "Integrations", + "url": "https://wicg.github.io/direct-sockets/#integrations" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "Direct Sockets API", + "text": "Normative references", + "url": "https://wicg.github.io/direct-sockets/#normative-references" + } + }, + "#opened-attribute": { + "current": { + "number": "1.4", + "spec": "Direct Sockets API", + "text": "opened attribute", + "url": "https://wicg.github.io/direct-sockets/#opened-attribute" + } + }, + "#opened-attribute-0": { + "current": { + "number": "2.4", + "spec": "Direct Sockets API", + "text": "opened attribute", + "url": "https://wicg.github.io/direct-sockets/#opened-attribute-0" + } + }, + "#opened-attribute-1": { + "current": { + "number": "3.3", + "spec": "Direct Sockets API", + "text": "opened attribute", + "url": "https://wicg.github.io/direct-sockets/#opened-attribute-1" + } + }, + "#permissions-policy": { + "current": { + "number": "4.1", + "spec": "Direct Sockets API", + "text": "Permissions Policy", + "url": "https://wicg.github.io/direct-sockets/#permissions-policy" + } + }, + "#readable-attribute-internal": { + "current": { + "number": "1.2", + "spec": "Direct Sockets API", + "text": "[[readable]] attribute (internal)", + "url": "https://wicg.github.io/direct-sockets/#readable-attribute-internal" + } + }, + "#readable-attribute-internal-0": { + "current": { + "number": "2.2", + "spec": "Direct Sockets API", + "text": "[[readable]] attribute (internal)", + "url": "https://wicg.github.io/direct-sockets/#readable-attribute-internal-0" + } + }, + "#readable-attribute-internal-1": { + "current": { + "number": "3.2", + "spec": "Direct Sockets API", + "text": "[[readable]] attribute (internal)", + "url": "https://wicg.github.io/direct-sockets/#readable-attribute-internal-1" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Direct Sockets API", + "text": "References", + "url": "https://wicg.github.io/direct-sockets/#references" + } + }, + "#security-and-privacy-considerations": { + "current": { + "number": "5", + "spec": "Direct Sockets API", + "text": "Security and privacy considerations", + "url": "https://wicg.github.io/direct-sockets/#security-and-privacy-considerations" + } + }, + "#tcpserversocket-interface": { + "current": { + "number": "3", + "spec": "Direct Sockets API", + "text": "TCPServerSocket interface", + "url": "https://wicg.github.io/direct-sockets/#tcpserversocket-interface" + } + }, + "#tcpserversocketopeninfo-dictionary": { + "current": { + "number": "3.3.1", + "spec": "Direct Sockets API", + "text": "TCPServerSocketOpenInfo dictionary", + "url": "https://wicg.github.io/direct-sockets/#tcpserversocketopeninfo-dictionary" + } + }, + "#tcpserversocketoptions-dictionary": { + "current": { + "number": "3.1.1", + "spec": "Direct Sockets API", + "text": "TCPServerSocketOptions dictionary", + "url": "https://wicg.github.io/direct-sockets/#tcpserversocketoptions-dictionary" + } + }, + "#tcpsocket-interface": { + "current": { + "number": "1", + "spec": "Direct Sockets API", + "text": "TCPSocket interface", + "url": "https://wicg.github.io/direct-sockets/#tcpsocket-interface" + } + }, + "#tcpsocketopeninfo-dictionary": { + "current": { + "number": "1.4.1", + "spec": "Direct Sockets API", + "text": "TCPSocketOpenInfo dictionary", + "url": "https://wicg.github.io/direct-sockets/#tcpsocketopeninfo-dictionary" + } + }, + "#tcpsocketoptions-dictionary": { + "current": { + "number": "1.1.1", + "spec": "Direct Sockets API", + "text": "TCPSocketOptions dictionary", + "url": "https://wicg.github.io/direct-sockets/#tcpsocketoptions-dictionary" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Direct Sockets API", + "text": "Direct Sockets API", + "url": "https://wicg.github.io/direct-sockets/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Direct Sockets API", + "text": "Table of Contents", + "url": "https://wicg.github.io/direct-sockets/#toc" + } + }, + "#udpmessage-dictionary": { + "current": { + "number": "2.1.2", + "spec": "Direct Sockets API", + "text": "UDPMessage dictionary", + "url": "https://wicg.github.io/direct-sockets/#udpmessage-dictionary" + } + }, + "#udpsocket-interface": { + "current": { + "number": "2", + "spec": "Direct Sockets API", + "text": "UDPSocket interface", + "url": "https://wicg.github.io/direct-sockets/#udpsocket-interface" + } + }, + "#udpsocketopeninfo-dictionary": { + "current": { + "number": "2.4.1", + "spec": "Direct Sockets API", + "text": "UDPSocketOpenInfo dictionary", + "url": "https://wicg.github.io/direct-sockets/#udpsocketopeninfo-dictionary" + } + }, + "#udpsocketoptions-dictionary": { + "current": { + "number": "2.1.1", + "spec": "Direct Sockets API", + "text": "UDPSocketOptions dictionary", + "url": "https://wicg.github.io/direct-sockets/#udpsocketoptions-dictionary" + } + }, + "#writable-attribute-internal": { + "current": { + "number": "1.3", + "spec": "Direct Sockets API", + "text": "[[writable]] attribute (internal)", + "url": "https://wicg.github.io/direct-sockets/#writable-attribute-internal" + } + }, + "#writable-attribute-internal-0": { + "current": { + "number": "2.3", + "spec": "Direct Sockets API", + "text": "[[writable]] attribute (internal)", + "url": "https://wicg.github.io/direct-sockets/#writable-attribute-internal-0" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-document-picture-in-picture.json b/bikeshed/spec-data/readonly/headings/headings-document-picture-in-picture.json new file mode 100644 index 0000000000..b8535d81d5 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-document-picture-in-picture.json @@ -0,0 +1,418 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Abstract", + "url": "https://wicg.github.io/document-picture-in-picture/#abstract" + } + }, + "#acknowledgments": { + "current": { + "number": "8", + "spec": "Document Picture-in-Picture", + "text": "Acknowledgments", + "url": "https://wicg.github.io/document-picture-in-picture/#acknowledgments" + } + }, + "#api": { + "current": { + "number": "5", + "spec": "Document Picture-in-Picture", + "text": "API", + "url": "https://wicg.github.io/document-picture-in-picture/#api" + } + }, + "#close-document-pip-window": { + "current": { + "number": "6.3", + "spec": "Document Picture-in-Picture", + "text": "Closing a Document Picture-in-Picture window", + "url": "https://wicg.github.io/document-picture-in-picture/#close-document-pip-window" + } + }, + "#close-existing-pip-windows": { + "current": { + "number": "6.4", + "spec": "Document Picture-in-Picture", + "text": "Close any existing PiP windows", + "url": "https://wicg.github.io/document-picture-in-picture/#close-existing-pip-windows" + } + }, + "#close-on-destroy": { + "current": { + "number": "6.6", + "spec": "Document Picture-in-Picture", + "text": "Closing the PiP window when either the original or PiP document is destroyed", + "url": "https://wicg.github.io/document-picture-in-picture/#close-on-destroy" + } + }, + "#close-on-navigate": { + "current": { + "number": "6.7", + "spec": "Document Picture-in-Picture", + "text": "Closing the PiP window when either the original or PiP document is navigated", + "url": "https://wicg.github.io/document-picture-in-picture/#close-on-navigate" + } + }, + "#concepts": { + "current": { + "number": "6", + "spec": "Document Picture-in-Picture", + "text": "Concepts", + "url": "https://wicg.github.io/document-picture-in-picture/#concepts" + } + }, + "#css-display-mode": { + "current": { + "number": "6.10", + "spec": "Document Picture-in-Picture", + "text": "CSS display-mode", + "url": "https://wicg.github.io/document-picture-in-picture/#css-display-mode" + } + }, + "#dependencies": { + "current": { + "number": "2", + "spec": "Document Picture-in-Picture", + "text": "Dependencies", + "url": "https://wicg.github.io/document-picture-in-picture/#dependencies" + } + }, + "#example-access-elements": { + "current": { + "number": "7.2", + "spec": "Document Picture-in-Picture", + "text": "Accessing elements on the PiP Window", + "url": "https://wicg.github.io/document-picture-in-picture/#example-access-elements" + } + }, + "#example-display-mode": { + "current": { + "number": "7.8", + "spec": "Document Picture-in-Picture", + "text": "CSS picture-in-picture display mode usage", + "url": "https://wicg.github.io/document-picture-in-picture/#example-display-mode" + } + }, + "#example-elements-out-on-close": { + "current": { + "number": "7.5", + "spec": "Document Picture-in-Picture", + "text": "Getting elements out of the PiP window when it closes", + "url": "https://wicg.github.io/document-picture-in-picture/#example-elements-out-on-close" + } + }, + "#example-exiting-pip": { + "current": { + "number": "7.4", + "spec": "Document Picture-in-Picture", + "text": "Exiting PiP", + "url": "https://wicg.github.io/document-picture-in-picture/#example-exiting-pip" + } + }, + "#example-hide-return-to-opener": { + "current": { + "number": "7.9", + "spec": "Document Picture-in-Picture", + "text": "Hide return-to-opener button", + "url": "https://wicg.github.io/document-picture-in-picture/#example-hide-return-to-opener" + } + }, + "#example-listen-events": { + "current": { + "number": "7.3", + "spec": "Document Picture-in-Picture", + "text": "Listening to events on the PiP Window", + "url": "https://wicg.github.io/document-picture-in-picture/#example-listen-events" + } + }, + "#example-prefer-initial-window-placement": { + "current": { + "number": "7.10", + "spec": "Document Picture-in-Picture", + "text": "Prefer initial window placement", + "url": "https://wicg.github.io/document-picture-in-picture/#example-prefer-initial-window-placement" + } + }, + "#example-programmatic-resize": { + "current": { + "number": "7.6", + "spec": "Document Picture-in-Picture", + "text": "Programatically resize the PiP window", + "url": "https://wicg.github.io/document-picture-in-picture/#example-programmatic-resize" + } + }, + "#example-return-to-tab": { + "current": { + "number": "7.7", + "spec": "Document Picture-in-Picture", + "text": "Return to the opener tab", + "url": "https://wicg.github.io/document-picture-in-picture/#example-return-to-tab" + } + }, + "#example-video-player": { + "current": { + "number": "7.1", + "spec": "Document Picture-in-Picture", + "text": "Extracting a video player into PiP", + "url": "https://wicg.github.io/document-picture-in-picture/#example-video-player" + } + }, + "#example-video-player-html": { + "current": { + "number": "7.1.1", + "spec": "Document Picture-in-Picture", + "text": "HTML", + "url": "https://wicg.github.io/document-picture-in-picture/#example-video-player-html" + } + }, + "#example-video-player-js": { + "current": { + "number": "7.1.2", + "spec": "Document Picture-in-Picture", + "text": "JavaScript", + "url": "https://wicg.github.io/document-picture-in-picture/#example-video-player-js" + } + }, + "#examples": { + "current": { + "number": "7", + "spec": "Document Picture-in-Picture", + "text": "Examples", + "url": "https://wicg.github.io/document-picture-in-picture/#examples" + } + }, + "#fingerprinting": { + "current": { + "number": "4.1", + "spec": "Document Picture-in-Picture", + "text": "Fingerprinting", + "url": "https://wicg.github.io/document-picture-in-picture/#fingerprinting" + } + }, + "#focusing-the-opener-window": { + "current": { + "number": "6.9", + "spec": "Document Picture-in-Picture", + "text": "Focusing the opener window", + "url": "https://wicg.github.io/document-picture-in-picture/#focusing-the-opener-window" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "IDL Index", + "url": "https://wicg.github.io/document-picture-in-picture/#idl-index" + } + }, + "#iframes": { + "current": { + "number": "3.3", + "spec": "Document Picture-in-Picture", + "text": "IFrames", + "url": "https://wicg.github.io/document-picture-in-picture/#iframes" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Index", + "url": "https://wicg.github.io/document-picture-in-picture/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/document-picture-in-picture/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/document-picture-in-picture/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Informative References", + "url": "https://wicg.github.io/document-picture-in-picture/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Document Picture-in-Picture", + "text": "Introduction", + "url": "https://wicg.github.io/document-picture-in-picture/#intro" + } + }, + "#is-document-picture-in-picture-window": { + "current": { + "number": "6.2", + "spec": "Document Picture-in-Picture", + "text": "DocumentPictureInPicture Window", + "url": "https://wicg.github.io/document-picture-in-picture/#is-document-picture-in-picture-window" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Issues Index", + "url": "https://wicg.github.io/document-picture-in-picture/#issues-index" + } + }, + "#maximum-size": { + "current": { + "number": "3.2.3", + "spec": "Document Picture-in-Picture", + "text": "Maximum size", + "url": "https://wicg.github.io/document-picture-in-picture/#maximum-size" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Normative References", + "url": "https://wicg.github.io/document-picture-in-picture/#normative" + } + }, + "#one-pip-window": { + "current": { + "number": "6.5", + "spec": "Document Picture-in-Picture", + "text": "One PiP Window", + "url": "https://wicg.github.io/document-picture-in-picture/#one-pip-window" + } + }, + "#origin-visibility": { + "current": { + "number": "3.2.2", + "spec": "Document Picture-in-Picture", + "text": "Origin Visibility", + "url": "https://wicg.github.io/document-picture-in-picture/#origin-visibility" + } + }, + "#pip-support": { + "current": { + "number": "6.1", + "spec": "Document Picture-in-Picture", + "text": "Document Picture-in-Picture Support", + "url": "https://wicg.github.io/document-picture-in-picture/#pip-support" + } + }, + "#positioning": { + "current": { + "number": "3.2.1", + "spec": "Document Picture-in-Picture", + "text": "Positioning", + "url": "https://wicg.github.io/document-picture-in-picture/#positioning" + } + }, + "#privacy-considerations": { + "current": { + "number": "4", + "spec": "Document Picture-in-Picture", + "text": "Privacy Considerations", + "url": "https://wicg.github.io/document-picture-in-picture/#privacy-considerations" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "References", + "url": "https://wicg.github.io/document-picture-in-picture/#references" + } + }, + "#resizing-the-pip-window": { + "current": { + "number": "6.8", + "spec": "Document Picture-in-Picture", + "text": "Resizing the PiP window", + "url": "https://wicg.github.io/document-picture-in-picture/#resizing-the-pip-window" + } + }, + "#secure-context": { + "current": { + "number": "3.1", + "spec": "Document Picture-in-Picture", + "text": "Secure Context", + "url": "https://wicg.github.io/document-picture-in-picture/#secure-context" + } + }, + "#security-considerations": { + "current": { + "number": "3", + "spec": "Document Picture-in-Picture", + "text": "Security Considerations", + "url": "https://wicg.github.io/document-picture-in-picture/#security-considerations" + } + }, + "#spoofing": { + "current": { + "number": "3.2", + "spec": "Document Picture-in-Picture", + "text": "Spoofing", + "url": "https://wicg.github.io/document-picture-in-picture/#spoofing" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Status of this document", + "url": "https://wicg.github.io/document-picture-in-picture/#status" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Document Picture-in-Picture Specification", + "url": "https://wicg.github.io/document-picture-in-picture/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Table of Contents", + "url": "https://wicg.github.io/document-picture-in-picture/#toc" + } + }, + "#user-activation-propagation": { + "current": { + "number": "6.11", + "spec": "Document Picture-in-Picture", + "text": "User activation propagation", + "url": "https://wicg.github.io/document-picture-in-picture/#user-activation-propagation" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Conformance", + "url": "https://wicg.github.io/document-picture-in-picture/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Document Picture-in-Picture", + "text": "Document conventions", + "url": "https://wicg.github.io/document-picture-in-picture/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-dom-level-2-style.json b/bikeshed/spec-data/readonly/headings/headings-dom-level-2-style.json index 8c7142927e..4d0d2f611e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-dom-level-2-style.json +++ b/bikeshed/spec-data/readonly/headings/headings-dom-level-2-style.json @@ -5,12 +5,6 @@ "spec": "DOM", "text": "W3C Recommendation 13 November, 2000 superseded 3 November 2020", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-W3C-doctype" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "W3C Recommendation 13 November, 2000 superseded 3 November 2020", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-W3C-doctype" } }, "#Overview-abstract": { @@ -19,12 +13,6 @@ "spec": "DOM", "text": "Abstract", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-abstract" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Abstract", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-abstract" } }, "#Overview-status": { @@ -33,12 +21,6 @@ "spec": "DOM", "text": "Status of this document", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-status" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Status of this document", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-status" } }, "#Overview-table-of-contents": { @@ -47,12 +29,6 @@ "spec": "DOM", "text": "Table of contents", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-table-of-contents" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Table of contents", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-table-of-contents" } }, "#Overview-title": { @@ -61,12 +37,6 @@ "spec": "DOM", "text": "Document Object Model (DOM) Level 2 Style Specification", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-title" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Document Object Model (DOM) Level 2 Style Specification", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-title" } }, "#Overview-version": { @@ -75,12 +45,6 @@ "spec": "DOM", "text": "Version 1.0", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-version" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Version 1.0", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#Overview-version" } }, "#acknowledgements-Productions-h2": { @@ -89,25 +53,13 @@ "spec": "DOM", "text": "D.1: Production Systems", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#acknowledgements-Productions-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "D.1: Production Systems", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#acknowledgements-Productions-h2" } }, "#acknowledgements-contributors-h1": { "current": { - "number": "", - "spec": "DOM", - "text": "Appendix D: Acknowledgements", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#acknowledgements-contributors-h1" - }, - "snapshot": { - "number": "", + "number": "D", "spec": "DOM", - "text": "Appendix D: Acknowledgements", + "text": "Acknowledgements", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#acknowledgements-contributors-h1" } }, @@ -117,12 +69,6 @@ "spec": "DOM", "text": "Copyright Notice", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#copyright-notice-Copyright-Notice-h1" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Copyright Notice", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#copyright-notice-Copyright-Notice-h1" } }, "#copyright-notice-Copyright-notice-document-h2": { @@ -131,12 +77,6 @@ "spec": "DOM", "text": "W3C Document Copyright Notice and License", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#copyright-notice-Copyright-notice-document-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "W3C Document Copyright Notice and License", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#copyright-notice-Copyright-notice-document-h2" } }, "#copyright-notice-Copyright-notice-software-h2": { @@ -145,12 +85,6 @@ "spec": "DOM", "text": "W3C Software Copyright Notice and License", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#copyright-notice-Copyright-notice-software-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "W3C Software Copyright Notice and License", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#copyright-notice-Copyright-notice-software-h2" } }, "#css-CSS-OverrideAndComputed-h3": { @@ -159,12 +93,6 @@ "spec": "DOM", "text": "Override and computed style sheet", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-OverrideAndComputed-h3" - }, - "snapshot": { - "number": "2.2.1", - "spec": "DOM", - "text": "Override and computed style sheet", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-OverrideAndComputed-h3" } }, "#css-CSS-StyleSheetCreation-h3": { @@ -173,12 +101,6 @@ "spec": "DOM", "text": "Style sheet creation", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-StyleSheetCreation-h3" - }, - "snapshot": { - "number": "2.2.2", - "spec": "DOM", - "text": "Style sheet creation", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-StyleSheetCreation-h3" } }, "#css-CSS-extended-h2": { @@ -187,12 +109,6 @@ "spec": "DOM", "text": "CSS2 Extended Interface", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-extended-h2" - }, - "snapshot": { - "number": "2.3", - "spec": "DOM", - "text": "CSS2 Extended Interface", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-extended-h2" } }, "#css-CSS-fundamental-h2": { @@ -201,12 +117,6 @@ "spec": "DOM", "text": "CSS Fundamental Interfaces", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-fundamental-h2" - }, - "snapshot": { - "number": "2.2", - "spec": "DOM", - "text": "CSS Fundamental Interfaces", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-fundamental-h2" } }, "#css-CSS-h1": { @@ -215,12 +125,6 @@ "spec": "DOM", "text": "Document Object Model CSS", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-h1" - }, - "snapshot": { - "number": "2", - "spec": "DOM", - "text": "Document Object Model CSS", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-h1" } }, "#css-CSS-htmlelementcss-h3": { @@ -229,12 +133,6 @@ "spec": "DOM", "text": "Element with CSS inline style", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-htmlelementcss-h3" - }, - "snapshot": { - "number": "2.2.3", - "spec": "DOM", - "text": "Element with CSS inline style", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-htmlelementcss-h3" } }, "#css-CSS-overview-h2": { @@ -243,12 +141,6 @@ "spec": "DOM", "text": "Overview of the DOM Level 2 CSS Interfaces", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-overview-h2" - }, - "snapshot": { - "number": "2.1", - "spec": "DOM", - "text": "Overview of the DOM Level 2 CSS Interfaces", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-CSS-overview-h2" } }, "#css-table-of-contents": { @@ -257,12 +149,6 @@ "spec": "DOM", "text": "Table of contents", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-table-of-contents" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Table of contents", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#css-table-of-contents" } }, "#def-index-role-index": { @@ -271,12 +157,6 @@ "spec": "DOM", "text": "Index", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#def-index-role-index" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Index", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#def-index-role-index" } }, "#ecma-script-binding-CSS-ECMA-h2": { @@ -285,12 +165,6 @@ "spec": "DOM", "text": "C.2: Document Object Model CSS", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#ecma-script-binding-CSS-ECMA-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "C.2: Document Object Model CSS", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#ecma-script-binding-CSS-ECMA-h2" } }, "#ecma-script-binding-StyleSheets-ECMA-h2": { @@ -299,25 +173,13 @@ "spec": "DOM", "text": "C.1: Document Object Model StyleSheets", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#ecma-script-binding-StyleSheets-ECMA-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "C.1: Document Object Model StyleSheets", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#ecma-script-binding-StyleSheets-ECMA-h2" } }, "#ecma-script-binding-ecma-binding-h1": { "current": { - "number": "", + "number": "C", "spec": "DOM", - "text": "Appendix C: ECMAScript Language Binding", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#ecma-script-binding-ecma-binding-h1" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Appendix C: ECMAScript Language Binding", + "text": "ECMAScript Language Binding", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#ecma-script-binding-ecma-binding-h1" } }, @@ -327,12 +189,6 @@ "spec": "DOM", "text": "Expanded Table of Contents", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#expanded-toc-TOC-h1" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Expanded Table of Contents", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#expanded-toc-TOC-h1" } }, "#idl-definitions-CSS-IDL-h2": { @@ -341,12 +197,6 @@ "spec": "DOM", "text": "A.2: Document Object Model CSS", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-CSS-IDL-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "A.2: Document Object Model CSS", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-CSS-IDL-h2" } }, "#idl-definitions-StyleSheets-IDL-h2": { @@ -355,12 +205,6 @@ "spec": "DOM", "text": "A.1: Document Object Model Style Sheets", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-StyleSheets-IDL-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "A.1: Document Object Model Style Sheets", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-StyleSheets-IDL-h2" } }, "#idl-definitions-idl-css.idl": { @@ -369,25 +213,13 @@ "spec": "DOM", "text": "css.idl:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-idl-css.idl" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "css.idl:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-idl-css.idl" } }, "#idl-definitions-idl-h1": { "current": { - "number": "", + "number": "A", "spec": "DOM", - "text": "Appendix A: IDL Definitions", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-idl-h1" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Appendix A: IDL Definitions", + "text": "IDL Definitions", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-idl-h1" } }, @@ -397,12 +229,6 @@ "spec": "DOM", "text": "stylesheets.idl:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-idl-stylesheets.idl" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "stylesheets.idl:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#idl-definitions-idl-stylesheets.idl" } }, "#java-binding-CSS-Java-h2": { @@ -411,12 +237,6 @@ "spec": "DOM", "text": "B.2: Document Object Model CSS", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-CSS-Java-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "B.2: Document Object Model CSS", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-CSS-Java-h2" } }, "#java-binding-StyleSheets-Java-h2": { @@ -425,25 +245,13 @@ "spec": "DOM", "text": "B.1: Document Object Model Style Sheets", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-StyleSheets-Java-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "B.1: Document Object Model Style Sheets", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-StyleSheets-Java-h2" } }, "#java-binding-java-binding-h1": { "current": { - "number": "", - "spec": "DOM", - "text": "Appendix B: Java Language Binding", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-java-binding-h1" - }, - "snapshot": { - "number": "", + "number": "B", "spec": "DOM", - "text": "Appendix B: Java Language Binding", + "text": "Java Language Binding", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-java-binding-h1" } }, @@ -453,12 +261,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSS2Properties.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSS2Properties" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSS2Properties.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSS2Properties" } }, "#java-binding-org.w3c.dom.css.CSSCharsetRule": { @@ -467,12 +269,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSCharsetRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSCharsetRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSCharsetRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSCharsetRule" } }, "#java-binding-org.w3c.dom.css.CSSFontFaceRule": { @@ -481,12 +277,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSFontFaceRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSFontFaceRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSFontFaceRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSFontFaceRule" } }, "#java-binding-org.w3c.dom.css.CSSImportRule": { @@ -495,12 +285,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSImportRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSImportRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSImportRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSImportRule" } }, "#java-binding-org.w3c.dom.css.CSSMediaRule": { @@ -509,12 +293,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSMediaRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSMediaRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSMediaRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSMediaRule" } }, "#java-binding-org.w3c.dom.css.CSSPageRule": { @@ -523,12 +301,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSPageRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSPageRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSPageRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSPageRule" } }, "#java-binding-org.w3c.dom.css.CSSPrimitiveValue": { @@ -537,12 +309,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSPrimitiveValue.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSPrimitiveValue" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSPrimitiveValue.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSPrimitiveValue" } }, "#java-binding-org.w3c.dom.css.CSSRule": { @@ -551,12 +317,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSRule" } }, "#java-binding-org.w3c.dom.css.CSSRuleList": { @@ -565,12 +325,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSRuleList.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSRuleList" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSRuleList.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSRuleList" } }, "#java-binding-org.w3c.dom.css.CSSStyleDeclaration": { @@ -579,12 +333,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSStyleDeclaration.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSStyleDeclaration" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSStyleDeclaration.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSStyleDeclaration" } }, "#java-binding-org.w3c.dom.css.CSSStyleRule": { @@ -593,12 +341,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSStyleRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSStyleRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSStyleRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSStyleRule" } }, "#java-binding-org.w3c.dom.css.CSSStyleSheet": { @@ -607,12 +349,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSStyleSheet.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSStyleSheet" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSStyleSheet.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSStyleSheet" } }, "#java-binding-org.w3c.dom.css.CSSUnknownRule": { @@ -621,12 +357,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSUnknownRule.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSUnknownRule" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSUnknownRule.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSUnknownRule" } }, "#java-binding-org.w3c.dom.css.CSSValue": { @@ -635,12 +365,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSValue.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSValue" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSValue.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSValue" } }, "#java-binding-org.w3c.dom.css.CSSValueList": { @@ -649,12 +373,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/CSSValueList.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSValueList" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/CSSValueList.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.CSSValueList" } }, "#java-binding-org.w3c.dom.css.Counter": { @@ -663,12 +381,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/Counter.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.Counter" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/Counter.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.Counter" } }, "#java-binding-org.w3c.dom.css.DOMImplementationCSS": { @@ -677,12 +389,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/DOMImplementationCSS.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.DOMImplementationCSS" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/DOMImplementationCSS.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.DOMImplementationCSS" } }, "#java-binding-org.w3c.dom.css.DocumentCSS": { @@ -691,12 +397,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/DocumentCSS.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.DocumentCSS" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/DocumentCSS.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.DocumentCSS" } }, "#java-binding-org.w3c.dom.css.ElementCSSInlineStyle": { @@ -705,12 +405,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/ElementCSSInlineStyle.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.ElementCSSInlineStyle" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/ElementCSSInlineStyle.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.ElementCSSInlineStyle" } }, "#java-binding-org.w3c.dom.css.RGBColor": { @@ -719,12 +413,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/RGBColor.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.RGBColor" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/RGBColor.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.RGBColor" } }, "#java-binding-org.w3c.dom.css.Rect": { @@ -733,12 +421,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/Rect.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.Rect" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/Rect.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.Rect" } }, "#java-binding-org.w3c.dom.css.ViewCSS": { @@ -747,12 +429,6 @@ "spec": "DOM", "text": "org/w3c/dom/css/ViewCSS.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.ViewCSS" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/css/ViewCSS.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.css.ViewCSS" } }, "#java-binding-org.w3c.dom.stylesheets.DocumentStyle": { @@ -761,12 +437,6 @@ "spec": "DOM", "text": "org/w3c/dom/stylesheets/DocumentStyle.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.DocumentStyle" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/stylesheets/DocumentStyle.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.DocumentStyle" } }, "#java-binding-org.w3c.dom.stylesheets.LinkStyle": { @@ -775,12 +445,6 @@ "spec": "DOM", "text": "org/w3c/dom/stylesheets/LinkStyle.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.LinkStyle" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/stylesheets/LinkStyle.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.LinkStyle" } }, "#java-binding-org.w3c.dom.stylesheets.MediaList": { @@ -789,12 +453,6 @@ "spec": "DOM", "text": "org/w3c/dom/stylesheets/MediaList.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.MediaList" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/stylesheets/MediaList.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.MediaList" } }, "#java-binding-org.w3c.dom.stylesheets.StyleSheet": { @@ -803,12 +461,6 @@ "spec": "DOM", "text": "org/w3c/dom/stylesheets/StyleSheet.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.StyleSheet" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/stylesheets/StyleSheet.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.StyleSheet" } }, "#java-binding-org.w3c.dom.stylesheets.StyleSheetList": { @@ -817,12 +469,6 @@ "spec": "DOM", "text": "org/w3c/dom/stylesheets/StyleSheetList.java:", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.StyleSheetList" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "org/w3c/dom/stylesheets/StyleSheetList.java:", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#java-binding-org.w3c.dom.stylesheets.StyleSheetList" } }, "#references-References-Informative-h2": { @@ -831,12 +477,6 @@ "spec": "DOM", "text": "E.2: Informative references", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#references-References-Informative-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "E.2: Informative references", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#references-References-Informative-h2" } }, "#references-References-Normative-h2": { @@ -845,12 +485,6 @@ "spec": "DOM", "text": "E.1: Normative references", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#references-References-Normative-h2" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "E.1: Normative references", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#references-References-Normative-h2" } }, "#references-role-references": { @@ -859,12 +493,6 @@ "spec": "DOM", "text": "References", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#references-role-references" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "References", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#references-role-references" } }, "#stylesheets-StyleSheets-Association-h2": { @@ -873,12 +501,6 @@ "spec": "DOM", "text": "Association between a style sheet and a document.", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-Association-h2" - }, - "snapshot": { - "number": "1.4", - "spec": "DOM", - "text": "Association between a style sheet and a document.", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-Association-h2" } }, "#stylesheets-StyleSheets-extensions-h2": { @@ -887,12 +509,6 @@ "spec": "DOM", "text": "Document Extensions", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-extensions-h2" - }, - "snapshot": { - "number": "1.3", - "spec": "DOM", - "text": "Document Extensions", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-extensions-h2" } }, "#stylesheets-StyleSheets-fundamental-h2": { @@ -901,12 +517,6 @@ "spec": "DOM", "text": "Style Sheet Interfaces", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-fundamental-h2" - }, - "snapshot": { - "number": "1.2", - "spec": "DOM", - "text": "Style Sheet Interfaces", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-fundamental-h2" } }, "#stylesheets-StyleSheets-h1": { @@ -915,12 +525,6 @@ "spec": "DOM", "text": "Document Object Model Style Sheets", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-h1" - }, - "snapshot": { - "number": "1", - "spec": "DOM", - "text": "Document Object Model Style Sheets", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-h1" } }, "#stylesheets-StyleSheets-overview-h2": { @@ -929,12 +533,6 @@ "spec": "DOM", "text": "Introduction", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-overview-h2" - }, - "snapshot": { - "number": "1.1", - "spec": "DOM", - "text": "Introduction", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-StyleSheets-overview-h2" } }, "#stylesheets-table-of-contents": { @@ -943,12 +541,6 @@ "spec": "DOM", "text": "Table of contents", "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-table-of-contents" - }, - "snapshot": { - "number": "", - "spec": "DOM", - "text": "Table of contents", - "url": "https://www.w3.org/TR/DOM-Level-2-Style/#stylesheets-table-of-contents" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-dom-parsing.json b/bikeshed/spec-data/readonly/headings/headings-dom-parsing.json index 5c32512c24..a89420973b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-dom-parsing.json +++ b/bikeshed/spec-data/readonly/headings/headings-dom-parsing.json @@ -54,6 +54,12 @@ } }, "#crec": { + "current": { + "number": "", + "spec": "DOM Parsing and Serialization", + "text": "Candidate Recommendation Exit Criteria", + "url": "https://w3c.github.io/DOM-Parsing/#crec" + }, "snapshot": { "number": "", "spec": "DOM Parsing and Serialization", @@ -76,6 +82,12 @@ } }, "#extensibility": { + "current": { + "number": "", + "spec": "DOM Parsing and Serialization", + "text": "Extensibility", + "url": "https://w3c.github.io/DOM-Parsing/#extensibility" + }, "snapshot": { "number": "1.2", "spec": "DOM Parsing and Serialization", diff --git a/bikeshed/spec-data/readonly/headings/headings-dom.json b/bikeshed/spec-data/readonly/headings/headings-dom.json index d73cab2cbe..d2b29fa866 100644 --- a/bikeshed/spec-data/readonly/headings/headings-dom.json +++ b/bikeshed/spec-data/readonly/headings/headings-dom.json @@ -1,4 +1,12 @@ { + "#abort-signal-garbage-collection": { + "current": { + "number": "3.2.1", + "spec": "DOM", + "text": "Garbage collection", + "url": "https://dom.spec.whatwg.org/#abort-signal-garbage-collection" + } + }, "#abortcontroller-api-integration": { "current": { "number": "3.3", diff --git a/bikeshed/spec-data/readonly/headings/headings-dpub-aam-1.1.json b/bikeshed/spec-data/readonly/headings/headings-dpub-aam-1.1.json new file mode 100644 index 0000000000..358cf02552 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-dpub-aam-1.1.json @@ -0,0 +1,1052 @@ +{ + "#ack_funders": { + "current": { + "number": "A.2.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Enabling funders", + "url": "https://w3c.github.io/dpub-aam/#ack_funders" + }, + "snapshot": { + "number": "A.2.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Enabling funders", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#ack_funders" + } + }, + "#acknowledgements": { + "current": { + "number": "A.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Acknowledgments", + "url": "https://w3c.github.io/dpub-aam/#acknowledgements" + }, + "snapshot": { + "number": "A.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#acknowledgements" + } + }, + "#appendices": { + "current": { + "number": "A", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Appendices", + "url": "https://w3c.github.io/dpub-aam/#appendices" + }, + "snapshot": { + "number": "A", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Appendices", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#appendices" + } + }, + "#changelog": { + "current": { + "number": "A.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Change Log", + "url": "https://w3c.github.io/dpub-aam/#changelog" + }, + "snapshot": { + "number": "A.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Change Log", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#changelog" + } + }, + "#conformance": { + "current": { + "number": "2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Conformance", + "url": "https://w3c.github.io/dpub-aam/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Conformance", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#conformance" + } + }, + "#doc-abstract": { + "current": { + "number": "7.2.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-abstract", + "url": "https://w3c.github.io/dpub-aam/#doc-abstract" + }, + "snapshot": { + "number": "7.2.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-abstract", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-abstract" + } + }, + "#doc-acknowledgments": { + "current": { + "number": "7.2.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-acknowledgments", + "url": "https://w3c.github.io/dpub-aam/#doc-acknowledgments" + }, + "snapshot": { + "number": "7.2.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-acknowledgments", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-acknowledgments" + } + }, + "#doc-afterword": { + "current": { + "number": "7.2.3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-afterword", + "url": "https://w3c.github.io/dpub-aam/#doc-afterword" + }, + "snapshot": { + "number": "7.2.3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-afterword", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-afterword" + } + }, + "#doc-appendix": { + "current": { + "number": "7.2.4", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-appendix", + "url": "https://w3c.github.io/dpub-aam/#doc-appendix" + }, + "snapshot": { + "number": "7.2.4", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-appendix", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-appendix" + } + }, + "#doc-backlink": { + "current": { + "number": "7.2.5", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-backlink", + "url": "https://w3c.github.io/dpub-aam/#doc-backlink" + }, + "snapshot": { + "number": "7.2.5", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-backlink", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-backlink" + } + }, + "#doc-biblioentry": { + "current": { + "number": "7.2.6", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-biblioentry", + "url": "https://w3c.github.io/dpub-aam/#doc-biblioentry" + }, + "snapshot": { + "number": "7.2.6", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-biblioentry", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-biblioentry" + } + }, + "#doc-bibliography": { + "current": { + "number": "7.2.7", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-bibliography", + "url": "https://w3c.github.io/dpub-aam/#doc-bibliography" + }, + "snapshot": { + "number": "7.2.7", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-bibliography", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-bibliography" + } + }, + "#doc-biblioref": { + "current": { + "number": "7.2.8", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-biblioref", + "url": "https://w3c.github.io/dpub-aam/#doc-biblioref" + }, + "snapshot": { + "number": "7.2.8", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-biblioref", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-biblioref" + } + }, + "#doc-chapter": { + "current": { + "number": "7.2.9", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-chapter", + "url": "https://w3c.github.io/dpub-aam/#doc-chapter" + }, + "snapshot": { + "number": "7.2.9", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-chapter", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-chapter" + } + }, + "#doc-colophon": { + "current": { + "number": "7.2.10", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-colophon", + "url": "https://w3c.github.io/dpub-aam/#doc-colophon" + }, + "snapshot": { + "number": "7.2.10", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-colophon", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-colophon" + } + }, + "#doc-conclusion": { + "current": { + "number": "7.2.11", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-conclusion", + "url": "https://w3c.github.io/dpub-aam/#doc-conclusion" + }, + "snapshot": { + "number": "7.2.11", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-conclusion", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-conclusion" + } + }, + "#doc-cover": { + "current": { + "number": "7.2.12", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-cover", + "url": "https://w3c.github.io/dpub-aam/#doc-cover" + }, + "snapshot": { + "number": "7.2.12", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-cover", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-cover" + } + }, + "#doc-credit": { + "current": { + "number": "7.2.13", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-credit", + "url": "https://w3c.github.io/dpub-aam/#doc-credit" + }, + "snapshot": { + "number": "7.2.13", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-credit", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-credit" + } + }, + "#doc-credits": { + "current": { + "number": "7.2.14", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-credits", + "url": "https://w3c.github.io/dpub-aam/#doc-credits" + }, + "snapshot": { + "number": "7.2.14", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-credits", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-credits" + } + }, + "#doc-dedication": { + "current": { + "number": "7.2.15", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-dedication", + "url": "https://w3c.github.io/dpub-aam/#doc-dedication" + }, + "snapshot": { + "number": "7.2.15", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-dedication", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-dedication" + } + }, + "#doc-endnote": { + "current": { + "number": "7.2.16", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-endnote", + "url": "https://w3c.github.io/dpub-aam/#doc-endnote" + }, + "snapshot": { + "number": "7.2.16", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-endnote", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-endnote" + } + }, + "#doc-endnotes": { + "current": { + "number": "7.2.17", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-endnotes", + "url": "https://w3c.github.io/dpub-aam/#doc-endnotes" + }, + "snapshot": { + "number": "7.2.17", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-endnotes", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-endnotes" + } + }, + "#doc-epigraph": { + "current": { + "number": "7.2.18", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-epigraph", + "url": "https://w3c.github.io/dpub-aam/#doc-epigraph" + }, + "snapshot": { + "number": "7.2.18", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-epigraph", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-epigraph" + } + }, + "#doc-epilogue": { + "current": { + "number": "7.2.19", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-epilogue", + "url": "https://w3c.github.io/dpub-aam/#doc-epilogue" + }, + "snapshot": { + "number": "7.2.19", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-epilogue", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-epilogue" + } + }, + "#doc-errata": { + "current": { + "number": "7.2.20", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-errata", + "url": "https://w3c.github.io/dpub-aam/#doc-errata" + }, + "snapshot": { + "number": "7.2.20", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-errata", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-errata" + } + }, + "#doc-example": { + "current": { + "number": "7.2.21", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-example", + "url": "https://w3c.github.io/dpub-aam/#doc-example" + }, + "snapshot": { + "number": "7.2.21", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-example", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-example" + } + }, + "#doc-footnote": { + "current": { + "number": "7.2.22", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-footnote", + "url": "https://w3c.github.io/dpub-aam/#doc-footnote" + }, + "snapshot": { + "number": "7.2.22", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-footnote", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-footnote" + } + }, + "#doc-foreword": { + "current": { + "number": "7.2.23", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-foreword", + "url": "https://w3c.github.io/dpub-aam/#doc-foreword" + }, + "snapshot": { + "number": "7.2.23", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-foreword", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-foreword" + } + }, + "#doc-glossary": { + "current": { + "number": "7.2.24", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-glossary", + "url": "https://w3c.github.io/dpub-aam/#doc-glossary" + }, + "snapshot": { + "number": "7.2.24", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-glossary", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-glossary" + } + }, + "#doc-glossref": { + "current": { + "number": "7.2.25", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-glossref", + "url": "https://w3c.github.io/dpub-aam/#doc-glossref" + }, + "snapshot": { + "number": "7.2.25", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-glossref", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-glossref" + } + }, + "#doc-index": { + "current": { + "number": "7.2.26", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-index", + "url": "https://w3c.github.io/dpub-aam/#doc-index" + }, + "snapshot": { + "number": "7.2.26", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-index", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-index" + } + }, + "#doc-introduction": { + "current": { + "number": "7.2.27", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-introduction", + "url": "https://w3c.github.io/dpub-aam/#doc-introduction" + }, + "snapshot": { + "number": "7.2.27", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-introduction", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-introduction" + } + }, + "#doc-noteref": { + "current": { + "number": "7.2.28", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-noteref", + "url": "https://w3c.github.io/dpub-aam/#doc-noteref" + }, + "snapshot": { + "number": "7.2.28", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-noteref", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-noteref" + } + }, + "#doc-notice": { + "current": { + "number": "7.2.29", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-notice", + "url": "https://w3c.github.io/dpub-aam/#doc-notice" + }, + "snapshot": { + "number": "7.2.29", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-notice", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-notice" + } + }, + "#doc-pagebreak": { + "current": { + "number": "7.2.30", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pagebreak", + "url": "https://w3c.github.io/dpub-aam/#doc-pagebreak" + }, + "snapshot": { + "number": "7.2.30", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pagebreak", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-pagebreak" + } + }, + "#doc-pagefooter": { + "current": { + "number": "7.2.31", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pagefooter", + "url": "https://w3c.github.io/dpub-aam/#doc-pagefooter" + }, + "snapshot": { + "number": "7.2.31", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pagefooter", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-pagefooter" + } + }, + "#doc-pageheader": { + "current": { + "number": "7.2.32", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pageheader", + "url": "https://w3c.github.io/dpub-aam/#doc-pageheader" + }, + "snapshot": { + "number": "7.2.32", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pageheader", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-pageheader" + } + }, + "#doc-pagelist": { + "current": { + "number": "7.2.33", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pagelist", + "url": "https://w3c.github.io/dpub-aam/#doc-pagelist" + }, + "snapshot": { + "number": "7.2.33", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pagelist", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-pagelist" + } + }, + "#doc-part": { + "current": { + "number": "7.2.34", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-part", + "url": "https://w3c.github.io/dpub-aam/#doc-part" + }, + "snapshot": { + "number": "7.2.34", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-part", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-part" + } + }, + "#doc-preface": { + "current": { + "number": "7.2.35", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-preface", + "url": "https://w3c.github.io/dpub-aam/#doc-preface" + }, + "snapshot": { + "number": "7.2.35", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-preface", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-preface" + } + }, + "#doc-prologue": { + "current": { + "number": "7.2.36", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-prologue", + "url": "https://w3c.github.io/dpub-aam/#doc-prologue" + }, + "snapshot": { + "number": "7.2.36", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-prologue", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-prologue" + } + }, + "#doc-pullquote": { + "current": { + "number": "7.2.37", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pullquote", + "url": "https://w3c.github.io/dpub-aam/#doc-pullquote" + }, + "snapshot": { + "number": "7.2.37", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-pullquote", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-pullquote" + } + }, + "#doc-qna": { + "current": { + "number": "7.2.38", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-qna", + "url": "https://w3c.github.io/dpub-aam/#doc-qna" + }, + "snapshot": { + "number": "7.2.38", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-qna", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-qna" + } + }, + "#doc-subtitle": { + "current": { + "number": "7.2.39", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-subtitle", + "url": "https://w3c.github.io/dpub-aam/#doc-subtitle" + }, + "snapshot": { + "number": "7.2.39", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-subtitle", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-subtitle" + } + }, + "#doc-tip": { + "current": { + "number": "7.2.40", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-tip", + "url": "https://w3c.github.io/dpub-aam/#doc-tip" + }, + "snapshot": { + "number": "7.2.40", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-tip", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-tip" + } + }, + "#doc-toc": { + "current": { + "number": "7.2.41", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-toc", + "url": "https://w3c.github.io/dpub-aam/#doc-toc" + }, + "snapshot": { + "number": "7.2.41", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "doc-toc", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#doc-toc" + } + }, + "#dpub-deprecated-roles": { + "current": { + "number": "2.3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Roles deprecated in DPUB-ARIA", + "url": "https://w3c.github.io/dpub-aam/#dpub-deprecated-roles" + }, + "snapshot": { + "number": "2.3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Roles deprecated in DPUB-ARIA", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#dpub-deprecated-roles" + } + }, + "#informative-references": { + "current": { + "number": "B.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Informative references", + "url": "https://w3c.github.io/dpub-aam/#informative-references" + }, + "snapshot": { + "number": "B.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Informative references", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#informative-references" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Introduction", + "url": "https://w3c.github.io/dpub-aam/#intro" + }, + "snapshot": { + "number": "1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Introduction", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#intro" + } + }, + "#keyboard-focus": { + "current": { + "number": "3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Supporting keyboard navigation", + "url": "https://w3c.github.io/dpub-aam/#keyboard-focus" + }, + "snapshot": { + "number": "3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Supporting keyboard navigation", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#keyboard-focus" + } + }, + "#mapping": { + "current": { + "number": "4", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Mapping WAI-ARIA to accessibility APIs", + "url": "https://w3c.github.io/dpub-aam/#mapping" + }, + "snapshot": { + "number": "4", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Mapping WAI-ARIA to accessibility APIs", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping" + } + }, + "#mapping_actions": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "11. Actions", + "url": "https://w3c.github.io/dpub-aam/#mapping_actions" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "11. Actions", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_actions" + } + }, + "#mapping_additional": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "10. Special Processing Requiring Additional Computation", + "url": "https://w3c.github.io/dpub-aam/#mapping_additional" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "10. Special Processing Requiring Additional Computation", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_additional" + } + }, + "#mapping_additional_nd": { + "current": { + "number": "10.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Name and Description", + "url": "https://w3c.github.io/dpub-aam/#mapping_additional_nd" + }, + "snapshot": { + "number": "10.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Name and Description", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_additional_nd" + } + }, + "#mapping_additional_position": { + "current": { + "number": "10.3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Group Position", + "url": "https://w3c.github.io/dpub-aam/#mapping_additional_position" + }, + "snapshot": { + "number": "10.3", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Group Position", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_additional_position" + } + }, + "#mapping_additional_relations": { + "current": { + "number": "10.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Relations", + "url": "https://w3c.github.io/dpub-aam/#mapping_additional_relations" + }, + "snapshot": { + "number": "10.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Relations", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_additional_relations" + } + }, + "#mapping_conflicts": { + "current": { + "number": "5", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Conflicts between native markup semantics and WAI-ARIA", + "url": "https://w3c.github.io/dpub-aam/#mapping_conflicts" + }, + "snapshot": { + "number": "5", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Conflicts between native markup semantics and WAI-ARIA", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_conflicts" + } + }, + "#mapping_events": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "12. Events", + "url": "https://w3c.github.io/dpub-aam/#mapping_events" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "12. Events", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_events" + } + }, + "#mapping_general": { + "current": { + "number": "4.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "General rules for exposing WAI-ARIA semantics", + "url": "https://w3c.github.io/dpub-aam/#mapping_general" + }, + "snapshot": { + "number": "4.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "General rules for exposing WAI-ARIA semantics", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_general" + } + }, + "#mapping_nodirect": { + "current": { + "number": "6", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Exposing attributes that do not directly map to accessibility API properties", + "url": "https://w3c.github.io/dpub-aam/#mapping_nodirect" + }, + "snapshot": { + "number": "6", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Exposing attributes that do not directly map to accessibility API properties", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_nodirect" + } + }, + "#mapping_role": { + "current": { + "number": "7", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Role mapping", + "url": "https://w3c.github.io/dpub-aam/#mapping_role" + }, + "snapshot": { + "number": "7", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Role mapping", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_role" + } + }, + "#mapping_role_table": { + "current": { + "number": "7.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Role Mapping Tables", + "url": "https://w3c.github.io/dpub-aam/#mapping_role_table" + }, + "snapshot": { + "number": "7.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Role Mapping Tables", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_role_table" + } + }, + "#mapping_state-property": { + "current": { + "number": "9", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "State and Property Mapping", + "url": "https://w3c.github.io/dpub-aam/#mapping_state-property" + }, + "snapshot": { + "number": "9", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "State and Property Mapping", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#mapping_state-property" + } + }, + "#normative-and-informative-sections": { + "current": { + "number": "2.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Normative and Informative Sections", + "url": "https://w3c.github.io/dpub-aam/#normative-and-informative-sections" + }, + "snapshot": { + "number": "2.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Normative and Informative Sections", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#normative-and-informative-sections" + } + }, + "#normative-references": { + "current": { + "number": "B.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Normative references", + "url": "https://w3c.github.io/dpub-aam/#normative-references" + }, + "snapshot": { + "number": "B.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Normative references", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#normative-references" + } + }, + "#older-changes": { + "current": { + "number": "A.1.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Other substantive changes since Digital Publishing Accessibility API Mappings 1.0", + "url": "https://w3c.github.io/dpub-aam/#older-changes" + }, + "snapshot": { + "number": "A.1.2", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Other substantive changes since Digital Publishing Accessibility API Mappings 1.0", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#older-changes" + } + }, + "#privacy-considerations": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "14. Privacy Considerations", + "url": "https://w3c.github.io/dpub-aam/#privacy-considerations" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "14. Privacy Considerations", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#privacy-considerations" + } + }, + "#recent-changes": { + "current": { + "number": "A.1.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Substantive changes since the First Public Working Draft", + "url": "https://w3c.github.io/dpub-aam/#recent-changes" + }, + "snapshot": { + "number": "A.1.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Substantive changes since the First Public Working Draft", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#recent-changes" + } + }, + "#references": { + "current": { + "number": "B", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "References", + "url": "https://w3c.github.io/dpub-aam/#references" + }, + "snapshot": { + "number": "B", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "References", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#references" + } + }, + "#rfc-2119-keywords": { + "current": { + "number": "2.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "RFC-2119 Keywords", + "url": "https://w3c.github.io/dpub-aam/#rfc-2119-keywords" + }, + "snapshot": { + "number": "2.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "RFC-2119 Keywords", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#rfc-2119-keywords" + } + }, + "#roleMappingGeneralRules": { + "current": { + "number": "7.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "General Rules", + "url": "https://w3c.github.io/dpub-aam/#roleMappingGeneralRules" + }, + "snapshot": { + "number": "7.1", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "General Rules", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#roleMappingGeneralRules" + } + }, + "#security-considerations": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "13. Security Considerations", + "url": "https://w3c.github.io/dpub-aam/#security-considerations" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "13. Security Considerations", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#security-considerations" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Digital Publishing Accessibility API Mappings 1.1", + "url": "https://w3c.github.io/dpub-aam/#title" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Digital Publishing Accessibility API Mappings 1.1", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Table of Contents", + "url": "https://w3c.github.io/dpub-aam/#toc" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#toc" + } + }, + "#translatable-values": { + "current": { + "number": "8", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Translatable Values", + "url": "https://w3c.github.io/dpub-aam/#translatable-values" + }, + "snapshot": { + "number": "8", + "spec": "Digital Publishing Accessibility API Mappings 1.1", + "text": "Translatable Values", + "url": "https://www.w3.org/TR/dpub-aam-1.1/#translatable-values" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-dpub-aria-1.1.json b/bikeshed/spec-data/readonly/headings/headings-dpub-aria-1.1.json new file mode 100644 index 0000000000..0d3043aab4 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-dpub-aria-1.1.json @@ -0,0 +1,324 @@ +{ + "#ack_funders": { + "current": { + "number": "B.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Enabling funders", + "url": "https://w3c.github.io/dpub-aria/#ack_funders" + }, + "snapshot": { + "number": "B.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Enabling funders", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#ack_funders" + } + }, + "#acknowledgements": { + "current": { + "number": "B", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Acknowledgments", + "url": "https://w3c.github.io/dpub-aria/#acknowledgements" + }, + "snapshot": { + "number": "B", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#acknowledgements" + } + }, + "#at_support": { + "current": { + "number": "1.5", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Assistive Technologies", + "url": "https://w3c.github.io/dpub-aria/#at_support" + }, + "snapshot": { + "number": "1.5", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Assistive Technologies", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#at_support" + } + }, + "#authoring_practices": { + "current": { + "number": "1.4", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Authoring Practices", + "url": "https://w3c.github.io/dpub-aria/#authoring_practices" + }, + "snapshot": { + "number": "1.4", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Authoring Practices", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#authoring_practices" + } + }, + "#authoring_testing": { + "current": { + "number": "1.4.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Testing Practices and Tools", + "url": "https://w3c.github.io/dpub-aria/#authoring_testing" + }, + "snapshot": { + "number": "1.4.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Testing Practices and Tools", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#authoring_testing" + } + }, + "#authoring_tools": { + "current": { + "number": "1.4.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Authoring Tools", + "url": "https://w3c.github.io/dpub-aria/#authoring_tools" + }, + "snapshot": { + "number": "1.4.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Authoring Tools", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#authoring_tools" + } + }, + "#changelog": { + "current": { + "number": "A", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Change Log", + "url": "https://w3c.github.io/dpub-aria/#changelog" + }, + "snapshot": { + "number": "A", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Change Log", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#changelog" + } + }, + "#changelog-older": { + "current": { + "number": "A.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Substantive changes since the DPUB-ARIA 1.0 Recommendation", + "url": "https://w3c.github.io/dpub-aria/#changelog-older" + }, + "snapshot": { + "number": "A.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Substantive changes since the DPUB-ARIA 1.0 Recommendation", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#changelog-older" + } + }, + "#changelog-recent": { + "current": { + "number": "A.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Substantive changes since the last Working Draft", + "url": "https://w3c.github.io/dpub-aria/#changelog-recent" + }, + "snapshot": { + "number": "A.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Substantive changes since the last Working Draft", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#changelog-recent" + } + }, + "#co-evolution": { + "current": { + "number": "1.3", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Co-Evolution of WAI-ARIA and Host Languages", + "url": "https://w3c.github.io/dpub-aria/#co-evolution" + }, + "snapshot": { + "number": "1.3", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Co-Evolution of WAI-ARIA and Host Languages", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#co-evolution" + } + }, + "#conformance": { + "current": { + "number": "2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Conformance", + "url": "https://w3c.github.io/dpub-aria/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Conformance", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#conformance" + } + }, + "#informative-references": { + "current": { + "number": "C.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Informative references", + "url": "https://w3c.github.io/dpub-aria/#informative-references" + }, + "snapshot": { + "number": "C.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Informative references", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#informative-references" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Introduction", + "url": "https://w3c.github.io/dpub-aria/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Introduction", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#introduction" + } + }, + "#normative-references": { + "current": { + "number": "C.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Normative references", + "url": "https://w3c.github.io/dpub-aria/#normative-references" + }, + "snapshot": { + "number": "C.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Normative references", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#normative-references" + } + }, + "#privacy-considerations": { + "current": { + "number": "5", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/dpub-aria/#privacy-considerations" + }, + "snapshot": { + "number": "5", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#privacy-considerations" + } + }, + "#references": { + "current": { + "number": "C", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "References", + "url": "https://w3c.github.io/dpub-aria/#references" + }, + "snapshot": { + "number": "C", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "References", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#references" + } + }, + "#role_definitions": { + "current": { + "number": "3.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Definition of Roles", + "url": "https://w3c.github.io/dpub-aria/#role_definitions" + }, + "snapshot": { + "number": "3.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Definition of Roles", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#role_definitions" + } + }, + "#roles": { + "current": { + "number": "3", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Digital Publishing Roles", + "url": "https://w3c.github.io/dpub-aria/#roles" + }, + "snapshot": { + "number": "3", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Digital Publishing Roles", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#roles" + } + }, + "#security-considerations": { + "current": { + "number": "4", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Security Considerations", + "url": "https://w3c.github.io/dpub-aria/#security-considerations" + }, + "snapshot": { + "number": "4", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#security-considerations" + } + }, + "#target-audience": { + "current": { + "number": "1.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Target Audience", + "url": "https://w3c.github.io/dpub-aria/#target-audience" + }, + "snapshot": { + "number": "1.1", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Target Audience", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#target-audience" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Digital Publishing WAI-ARIA Module 1.1", + "url": "https://w3c.github.io/dpub-aria/#title" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Digital Publishing WAI-ARIA Module 1.1", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Table of Contents", + "url": "https://w3c.github.io/dpub-aria/#toc" + }, + "snapshot": { + "number": "", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#toc" + } + }, + "#ua-support": { + "current": { + "number": "1.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "User Agent Support", + "url": "https://w3c.github.io/dpub-aria/#ua-support" + }, + "snapshot": { + "number": "1.2", + "spec": "Digital Publishing WAI-ARIA 1.1", + "text": "User Agent Support", + "url": "https://www.w3.org/TR/dpub-aria-1.1/#ua-support" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-ecma-402.json b/bikeshed/spec-data/readonly/headings/headings-ecma-402.json index fbbd91c2e5..71884f2828 100644 --- a/bikeshed/spec-data/readonly/headings/headings-ecma-402.json +++ b/bikeshed/spec-data/readonly/headings/headings-ecma-402.json @@ -83,7 +83,7 @@ "current": { "number": "6", "spec": "ECMAScript Internationalization API", - "text": "Identification of Locales, Currencies, Time Zones, and Measurement Units", + "text": "Identification of Locales, Currencies, Time Zones, Measurement Units, Numbering Systems, Collations, and Calendars", "url": "https://tc39.es/ecma402/#locales-currencies-tz" } }, @@ -143,52 +143,52 @@ "url": "https://tc39.es/ecma402/#scope" } }, - "#sec-%segmentiteratorprototype%-object": { + "#sec-%25intlsegmentiteratorprototype%25-object": { "current": { "number": "18.6.2", "spec": "ECMAScript Internationalization API", - "text": "The %SegmentIteratorPrototype% Object", - "url": "https://tc39.es/ecma402/#sec-%segmentiteratorprototype%-object" + "text": "The %IntlSegmentIteratorPrototype% Object", + "url": "https://tc39.es/ecma402/#sec-%25intlsegmentiteratorprototype%25-object" } }, - "#sec-%segmentiteratorprototype%.@@tostringtag": { + "#sec-%25intlsegmentiteratorprototype%25.%25symbol.tostringtag%25": { "current": { "number": "18.6.2.2", "spec": "ECMAScript Internationalization API", - "text": "%SegmentIteratorPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-%segmentiteratorprototype%.@@tostringtag" + "text": "%IntlSegmentIteratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-%25intlsegmentiteratorprototype%25.%25symbol.tostringtag%25" } }, - "#sec-%segmentiteratorprototype%.next": { + "#sec-%25intlsegmentiteratorprototype%25.next": { "current": { "number": "18.6.2.1", "spec": "ECMAScript Internationalization API", - "text": "%SegmentIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma402/#sec-%segmentiteratorprototype%.next" + "text": "%IntlSegmentIteratorPrototype%.next ( )", + "url": "https://tc39.es/ecma402/#sec-%25intlsegmentiteratorprototype%25.next" } }, - "#sec-%segmentsprototype%-@@iterator": { + "#sec-%25intlsegmentsprototype%25-%25symbol.iterator%25": { "current": { "number": "18.5.2.2", "spec": "ECMAScript Internationalization API", - "text": "%SegmentsPrototype% [ @@iterator ] ( )", - "url": "https://tc39.es/ecma402/#sec-%segmentsprototype%-@@iterator" + "text": "%IntlSegmentsPrototype% [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma402/#sec-%25intlsegmentsprototype%25-%25symbol.iterator%25" } }, - "#sec-%segmentsprototype%-object": { + "#sec-%25intlsegmentsprototype%25-object": { "current": { "number": "18.5.2", "spec": "ECMAScript Internationalization API", - "text": "The %SegmentsPrototype% Object", - "url": "https://tc39.es/ecma402/#sec-%segmentsprototype%-object" + "text": "The %IntlSegmentsPrototype% Object", + "url": "https://tc39.es/ecma402/#sec-%25intlsegmentsprototype%25-object" } }, - "#sec-%segmentsprototype%.containing": { + "#sec-%25intlsegmentsprototype%25.containing": { "current": { "number": "18.5.2.1", "spec": "ECMAScript Internationalization API", - "text": "%SegmentsPrototype%.containing ( index )", - "url": "https://tc39.es/ecma402/#sec-%segmentsprototype%.containing" + "text": "%IntlSegmentsPrototype%.containing ( index )", + "url": "https://tc39.es/ecma402/#sec-%25intlsegmentsprototype%25.containing" } }, "#sec-402-well-known-intrinsic-objects": { @@ -215,22 +215,6 @@ "url": "https://tc39.es/ecma402/#sec-FormatRelativeTimeToParts" } }, - "#sec-InitializeRelativeTimeFormat": { - "current": { - "number": "17.1.2", - "spec": "ECMAScript Internationalization API", - "text": "InitializeRelativeTimeFormat ( relativeTimeFormat, locales, options )", - "url": "https://tc39.es/ecma402/#sec-InitializeRelativeTimeFormat" - } - }, - "#sec-Intl-toStringTag": { - "current": { - "number": "8.1.1", - "spec": "ECMAScript Internationalization API", - "text": "Intl[ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-Intl-toStringTag" - } - }, "#sec-Intl.DateTimeFormat.prototype.formatRangeToParts": { "current": { "number": "11.3.6", @@ -271,14 +255,6 @@ "url": "https://tc39.es/ecma402/#sec-Intl.DisplayNames.prototype" } }, - "#sec-Intl.DisplayNames.prototype-@@tostringtag": { - "current": { - "number": "12.3.2", - "spec": "ECMAScript Internationalization API", - "text": "Intl.DisplayNames.prototype[ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-Intl.DisplayNames.prototype-@@tostringtag" - } - }, "#sec-Intl.DisplayNames.prototype.constructor": { "current": { "number": "12.3.1", @@ -339,7 +315,7 @@ "current": { "number": "13.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.ListFormat.prototype [ @@toStringTag ]", + "text": "Intl.ListFormat.prototype [ %Symbol.toStringTag% ]", "url": "https://tc39.es/ecma402/#sec-Intl.ListFormat.prototype-toStringTag" } }, @@ -399,14 +375,6 @@ "url": "https://tc39.es/ecma402/#sec-Intl.Locale.prototype" } }, - "#sec-Intl.Locale.prototype-@@tostringtag": { - "current": { - "number": "14.3.2", - "spec": "ECMAScript Internationalization API", - "text": "Intl.Locale.prototype[ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-Intl.Locale.prototype-@@tostringtag" - } - }, "#sec-Intl.Locale.prototype.baseName": { "current": { "number": "14.3.6", @@ -547,7 +515,7 @@ "current": { "number": "17.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.RelativeTimeFormat.prototype[ @@toStringTag ]", + "text": "Intl.RelativeTimeFormat.prototype [ %Symbol.toStringTag% ]", "url": "https://tc39.es/ecma402/#sec-Intl.RelativeTimeFormat.prototype-toStringTag" } }, @@ -615,60 +583,84 @@ "url": "https://tc39.es/ecma402/#sec-api-overview" } }, - "#sec-apply-options-to-tag": { + "#sec-applyunsignedroundingmode": { "current": { - "number": "14.1.2", + "number": "15.5.18", "spec": "ECMAScript Internationalization API", - "text": "ApplyOptionsToTag ( tag, options )", - "url": "https://tc39.es/ecma402/#sec-apply-options-to-tag" + "text": "ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode )", + "url": "https://tc39.es/ecma402/#sec-applyunsignedroundingmode" } }, - "#sec-apply-unicode-extension-to-tag": { + "#sec-availablecalendars": { "current": { - "number": "14.1.3", + "number": "6.9.1", "spec": "ECMAScript Internationalization API", - "text": "ApplyUnicodeExtensionToTag ( tag, options, relevantExtensionKeys )", - "url": "https://tc39.es/ecma402/#sec-apply-unicode-extension-to-tag" + "text": "AvailableCalendars ( )", + "url": "https://tc39.es/ecma402/#sec-availablecalendars" } }, - "#sec-basicformatmatcher": { + "#sec-availablecanonicalcollations": { "current": { - "number": "11.5.3", + "number": "6.8.1", "spec": "ECMAScript Internationalization API", - "text": "BasicFormatMatcher ( options, formats )", - "url": "https://tc39.es/ecma402/#sec-basicformatmatcher" + "text": "AvailableCanonicalCollations ( )", + "url": "https://tc39.es/ecma402/#sec-availablecanonicalcollations" } }, - "#sec-bestavailablelocale": { + "#sec-availablecanonicalcurrencies": { "current": { - "number": "9.2.2", + "number": "6.4", "spec": "ECMAScript Internationalization API", - "text": "BestAvailableLocale ( availableLocales, locale )", - "url": "https://tc39.es/ecma402/#sec-bestavailablelocale" + "text": "AvailableCanonicalCurrencies ( )", + "url": "https://tc39.es/ecma402/#sec-availablecanonicalcurrencies" } }, - "#sec-bestfitformatmatcher": { + "#sec-availablecanonicalnumberingsystems": { "current": { - "number": "11.5.4", + "number": "6.7.1", "spec": "ECMAScript Internationalization API", - "text": "BestFitFormatMatcher ( options, formats )", - "url": "https://tc39.es/ecma402/#sec-bestfitformatmatcher" + "text": "AvailableCanonicalNumberingSystems ( )", + "url": "https://tc39.es/ecma402/#sec-availablecanonicalnumberingsystems" } }, - "#sec-bestfitmatcher": { + "#sec-availablecanonicalunits": { "current": { - "number": "9.2.4", + "number": "6.6.3", "spec": "ECMAScript Internationalization API", - "text": "BestFitMatcher ( availableLocales, requestedLocales )", - "url": "https://tc39.es/ecma402/#sec-bestfitmatcher" + "text": "AvailableCanonicalUnits ( )", + "url": "https://tc39.es/ecma402/#sec-availablecanonicalunits" } }, - "#sec-bestfitsupportedlocales": { + "#sec-availableprimarytimezoneidentifiers": { "current": { - "number": "9.2.9", + "number": "6.5.3", "spec": "ECMAScript Internationalization API", - "text": "BestFitSupportedLocales ( availableLocales, requestedLocales )", - "url": "https://tc39.es/ecma402/#sec-bestfitsupportedlocales" + "text": "AvailablePrimaryTimeZoneIdentifiers ( )", + "url": "https://tc39.es/ecma402/#sec-availableprimarytimezoneidentifiers" + } + }, + "#sec-basicformatmatcher": { + "current": { + "number": "11.5.2", + "spec": "ECMAScript Internationalization API", + "text": "BasicFormatMatcher ( options, formats )", + "url": "https://tc39.es/ecma402/#sec-basicformatmatcher" + } + }, + "#sec-bestfitformatmatcher": { + "current": { + "number": "11.5.3", + "spec": "ECMAScript Internationalization API", + "text": "BestFitFormatMatcher ( options, formats )", + "url": "https://tc39.es/ecma402/#sec-bestfitformatmatcher" + } + }, + "#sec-calendar-types": { + "current": { + "number": "6.9", + "spec": "ECMAScript Internationalization API", + "text": "Calendar Types", + "url": "https://tc39.es/ecma402/#sec-calendar-types" } }, "#sec-canonicalcodefordisplaynames": { @@ -687,20 +679,20 @@ "url": "https://tc39.es/ecma402/#sec-canonicalizelocalelist" } }, - "#sec-canonicalizetimezonename": { + "#sec-canonicalizeunicodelocaleid": { "current": { - "number": "6.4.2", + "number": "6.2.2", "spec": "ECMAScript Internationalization API", - "text": "CanonicalizeTimeZoneName ( timeZone )", - "url": "https://tc39.es/ecma402/#sec-canonicalizetimezonename" + "text": "CanonicalizeUnicodeLocaleId ( locale )", + "url": "https://tc39.es/ecma402/#sec-canonicalizeunicodelocaleid" } }, - "#sec-canonicalizeunicodelocaleid": { + "#sec-canonicalizeuvalue": { "current": { - "number": "6.2.3", + "number": "9.2.2", "spec": "ECMAScript Internationalization API", - "text": "CanonicalizeUnicodeLocaleId ( locale )", - "url": "https://tc39.es/ecma402/#sec-canonicalizeunicodelocaleid" + "text": "CanonicalizeUValue ( ukey, uvalue )", + "url": "https://tc39.es/ecma402/#sec-canonicalizeuvalue" } }, "#sec-case-sensitivity-and-case-mapping": { @@ -729,12 +721,28 @@ }, "#sec-coerceoptionstoobject": { "current": { - "number": "9.2.12", + "number": "9.2.10", "spec": "ECMAScript Internationalization API", "text": "CoerceOptionsToObject ( options )", "url": "https://tc39.es/ecma402/#sec-coerceoptionstoobject" } }, + "#sec-collapsenumberrange": { + "current": { + "number": "15.5.21", + "spec": "ECMAScript Internationalization API", + "text": "CollapseNumberRange ( result )", + "url": "https://tc39.es/ecma402/#sec-collapsenumberrange" + } + }, + "#sec-collation-types": { + "current": { + "number": "6.8", + "spec": "ECMAScript Internationalization API", + "text": "Collation Types", + "url": "https://tc39.es/ecma402/#sec-collation-types" + } + }, "#sec-collator-compare-functions": { "current": { "number": "10.3.3.1", @@ -783,6 +791,14 @@ "url": "https://tc39.es/ecma402/#sec-constructor-properties-of-the-intl-object" } }, + "#sec-createdatetimeformat": { + "current": { + "number": "11.1.2", + "spec": "ECMAScript Internationalization API", + "text": "CreateDateTimeFormat ( newTarget, locales, options, required, defaults )", + "url": "https://tc39.es/ecma402/#sec-createdatetimeformat" + } + }, "#sec-createpartsfromlist": { "current": { "number": "13.5.2", @@ -841,7 +857,7 @@ }, "#sec-date-time-style-format": { "current": { - "number": "11.5.2", + "number": "11.5.1", "spec": "ECMAScript Internationalization API", "text": "DateTimeStyleFormat ( dateStyle, timeStyle, styles )", "url": "https://tc39.es/ecma402/#sec-date-time-style-format" @@ -849,7 +865,7 @@ }, "#sec-datetime-format-functions": { "current": { - "number": "11.5.5", + "number": "11.5.4", "spec": "ECMAScript Internationalization API", "text": "DateTime Format Functions", "url": "https://tc39.es/ecma402/#sec-datetime-format-functions" @@ -863,6 +879,94 @@ "url": "https://tc39.es/ecma402/#sec-datetimeformat-abstracts" } }, + "#sec-datetimeformat-connector-record": { + "current": { + "number": "11.2.3.7", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Connector Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-connector-record" + } + }, + "#sec-datetimeformat-date-range-record": { + "current": { + "number": "11.2.3.8", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Date Range Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-date-range-record" + } + }, + "#sec-datetimeformat-format-record": { + "current": { + "number": "11.2.3.1", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Format Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-format-record" + } + }, + "#sec-datetimeformat-range-pattern-format-record": { + "current": { + "number": "11.2.3.3", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Range Pattern Format Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-range-pattern-format-record" + } + }, + "#sec-datetimeformat-range-pattern-part-record": { + "current": { + "number": "11.2.3.4", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Range Pattern Part Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-range-pattern-part-record" + } + }, + "#sec-datetimeformat-range-pattern-record": { + "current": { + "number": "11.2.3.2", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Range Pattern Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-range-pattern-record" + } + }, + "#sec-datetimeformat-style-range-record": { + "current": { + "number": "11.2.3.10", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Style Range Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-style-range-record" + } + }, + "#sec-datetimeformat-style-record": { + "current": { + "number": "11.2.3.6", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Style Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-style-record" + } + }, + "#sec-datetimeformat-styles-record": { + "current": { + "number": "11.2.3.5", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Styles Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-styles-record" + } + }, + "#sec-datetimeformat-time-range-record": { + "current": { + "number": "11.2.3.9", + "spec": "ECMAScript Internationalization API", + "text": "DateTime Time Range Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-time-range-record" + } + }, + "#sec-datetimeformat-tolocaltime-records": { + "current": { + "number": "11.5.13", + "spec": "ECMAScript Internationalization API", + "text": "ToLocalTime Records", + "url": "https://tc39.es/ecma402/#sec-datetimeformat-tolocaltime-records" + } + }, "#sec-deconstructpattern": { "current": { "number": "13.5.1", @@ -873,7 +977,7 @@ }, "#sec-defaultlocale": { "current": { - "number": "6.2.4", + "number": "6.2.3", "spec": "ECMAScript Internationalization API", "text": "DefaultLocale ( )", "url": "https://tc39.es/ecma402/#sec-defaultlocale" @@ -881,12 +985,20 @@ }, "#sec-defaultnumberoption": { "current": { - "number": "9.2.14", + "number": "9.2.13", "spec": "ECMAScript Internationalization API", "text": "DefaultNumberOption ( value, minimum, maximum, fallback )", "url": "https://tc39.es/ecma402/#sec-defaultnumberoption" } }, + "#sec-filterlocales": { + "current": { + "number": "9.2.8", + "spec": "ECMAScript Internationalization API", + "text": "FilterLocales ( availableLocales, requestedLocales, options )", + "url": "https://tc39.es/ecma402/#sec-filterlocales" + } + }, "#sec-findboundary": { "current": { "number": "18.8.1", @@ -895,9 +1007,17 @@ "url": "https://tc39.es/ecma402/#sec-findboundary" } }, + "#sec-formatapproximately": { + "current": { + "number": "15.5.20", + "spec": "ECMAScript Internationalization API", + "text": "FormatApproximately ( numberFormat, result )", + "url": "https://tc39.es/ecma402/#sec-formatapproximately" + } + }, "#sec-formatdatetime": { "current": { - "number": "11.5.8", + "number": "11.5.7", "spec": "ECMAScript Internationalization API", "text": "FormatDateTime ( dateTimeFormat, x )", "url": "https://tc39.es/ecma402/#sec-formatdatetime" @@ -905,15 +1025,15 @@ }, "#sec-formatdatetimepattern": { "current": { - "number": "11.5.6", + "number": "11.5.5", "spec": "ECMAScript Internationalization API", - "text": "FormatDateTimePattern ( dateTimeFormat, patternParts, x, rangeFormatOptions )", + "text": "FormatDateTimePattern ( dateTimeFormat, format, pattern, epochNanoseconds )", "url": "https://tc39.es/ecma402/#sec-formatdatetimepattern" } }, "#sec-formatdatetimerange": { "current": { - "number": "11.5.11", + "number": "11.5.10", "spec": "ECMAScript Internationalization API", "text": "FormatDateTimeRange ( dateTimeFormat, x, y )", "url": "https://tc39.es/ecma402/#sec-formatdatetimerange" @@ -921,7 +1041,7 @@ }, "#sec-formatdatetimerangetoparts": { "current": { - "number": "11.5.12", + "number": "11.5.11", "spec": "ECMAScript Internationalization API", "text": "FormatDateTimeRangeToParts ( dateTimeFormat, x, y )", "url": "https://tc39.es/ecma402/#sec-formatdatetimerangetoparts" @@ -929,7 +1049,7 @@ }, "#sec-formatdatetimetoparts": { "current": { - "number": "11.5.9", + "number": "11.5.8", "spec": "ECMAScript Internationalization API", "text": "FormatDateTimeToParts ( dateTimeFormat, x )", "url": "https://tc39.es/ecma402/#sec-formatdatetimetoparts" @@ -975,6 +1095,30 @@ "url": "https://tc39.es/ecma402/#sec-formatnumbertoparts" } }, + "#sec-formatnumericrange": { + "current": { + "number": "15.5.22", + "spec": "ECMAScript Internationalization API", + "text": "FormatNumericRange ( numberFormat, x, y )", + "url": "https://tc39.es/ecma402/#sec-formatnumericrange" + } + }, + "#sec-formatnumericrangetoparts": { + "current": { + "number": "15.5.23", + "spec": "ECMAScript Internationalization API", + "text": "FormatNumericRangeToParts ( numberFormat, x, y )", + "url": "https://tc39.es/ecma402/#sec-formatnumericrangetoparts" + } + }, + "#sec-formatoffsettimezoneidentifier": { + "current": { + "number": "11.1.3", + "spec": "ECMAScript Internationalization API", + "text": "FormatOffsetTimeZoneIdentifier ( offsetMinutes )", + "url": "https://tc39.es/ecma402/#sec-formatoffsettimezoneidentifier" + } + }, "#sec-function-properties-of-the-intl-object": { "current": { "number": "8.3", @@ -983,6 +1127,54 @@ "url": "https://tc39.es/ecma402/#sec-function-properties-of-the-intl-object" } }, + "#sec-getavailablenamedtimezoneidentifier": { + "current": { + "number": "6.5.2", + "spec": "ECMAScript Internationalization API", + "text": "GetAvailableNamedTimeZoneIdentifier ( timeZoneIdentifier )", + "url": "https://tc39.es/ecma402/#sec-getavailablenamedtimezoneidentifier" + } + }, + "#sec-getbooleanorstringnumberformatoption": { + "current": { + "number": "9.2.12", + "spec": "ECMAScript Internationalization API", + "text": "GetBooleanOrStringNumberFormatOption ( options, property, stringValues, fallback )", + "url": "https://tc39.es/ecma402/#sec-getbooleanorstringnumberformatoption" + } + }, + "#sec-getlocalelanguage": { + "current": { + "number": "14.5.1", + "spec": "ECMAScript Internationalization API", + "text": "GetLocaleLanguage ( locale )", + "url": "https://tc39.es/ecma402/#sec-getlocalelanguage" + } + }, + "#sec-getlocaleregion": { + "current": { + "number": "14.5.3", + "spec": "ECMAScript Internationalization API", + "text": "GetLocaleRegion ( locale )", + "url": "https://tc39.es/ecma402/#sec-getlocaleregion" + } + }, + "#sec-getlocalescript": { + "current": { + "number": "14.5.2", + "spec": "ECMAScript Internationalization API", + "text": "GetLocaleScript ( locale )", + "url": "https://tc39.es/ecma402/#sec-getlocalescript" + } + }, + "#sec-getlocalevariants": { + "current": { + "number": "14.5.4", + "spec": "ECMAScript Internationalization API", + "text": "GetLocaleVariants ( locale )", + "url": "https://tc39.es/ecma402/#sec-getlocalevariants" + } + }, "#sec-getnotationsubpattern": { "current": { "number": "15.5.12", @@ -1001,7 +1193,7 @@ }, "#sec-getnumberoption": { "current": { - "number": "9.2.15", + "number": "9.2.14", "spec": "ECMAScript Internationalization API", "text": "GetNumberOption ( options, property, minimum, maximum, fallback )", "url": "https://tc39.es/ecma402/#sec-getnumberoption" @@ -1017,7 +1209,7 @@ }, "#sec-getoption": { "current": { - "number": "9.2.13", + "number": "9.2.11", "spec": "ECMAScript Internationalization API", "text": "GetOption ( options, property, type, values, default )", "url": "https://tc39.es/ecma402/#sec-getoption" @@ -1025,57 +1217,33 @@ }, "#sec-getoptionsobject": { "current": { - "number": "9.2.11", + "number": "9.2.9", "spec": "ECMAScript Internationalization API", "text": "GetOptionsObject ( options )", "url": "https://tc39.es/ecma402/#sec-getoptionsobject" } }, - "#sec-implementation-dependencies": { - "current": { - "number": "4.4", - "spec": "ECMAScript Internationalization API", - "text": "Implementation Dependencies", - "url": "https://tc39.es/ecma402/#sec-implementation-dependencies" - } - }, - "#sec-initializecollator": { - "current": { - "number": "10.1.2", - "spec": "ECMAScript Internationalization API", - "text": "InitializeCollator ( collator, locales, options )", - "url": "https://tc39.es/ecma402/#sec-initializecollator" - } - }, - "#sec-initializedatetimeformat": { - "current": { - "number": "11.1.2", - "spec": "ECMAScript Internationalization API", - "text": "InitializeDateTimeFormat ( dateTimeFormat, locales, options )", - "url": "https://tc39.es/ecma402/#sec-initializedatetimeformat" - } - }, - "#sec-initializenumberformat": { + "#sec-getunsignedroundingmode": { "current": { - "number": "15.1.2", + "number": "15.5.17", "spec": "ECMAScript Internationalization API", - "text": "InitializeNumberFormat ( numberFormat, locales, options )", - "url": "https://tc39.es/ecma402/#sec-initializenumberformat" + "text": "GetUnsignedRoundingMode ( roundingMode, sign )", + "url": "https://tc39.es/ecma402/#sec-getunsignedroundingmode" } }, - "#sec-initializepluralrules": { + "#sec-implementation-dependencies": { "current": { - "number": "16.1.2", + "number": "4.4", "spec": "ECMAScript Internationalization API", - "text": "InitializePluralRules ( pluralRules, locales, options )", - "url": "https://tc39.es/ecma402/#sec-initializepluralrules" + "text": "Implementation Dependencies", + "url": "https://tc39.es/ecma402/#sec-implementation-dependencies" } }, "#sec-insert-unicode-extension-and-canonicalize": { "current": { "number": "9.2.6", "spec": "ECMAScript Internationalization API", - "text": "InsertUnicodeExtensionAndCanonicalize ( locale, extension )", + "text": "InsertUnicodeExtensionAndCanonicalize ( locale, attributes, keywords )", "url": "https://tc39.es/ecma402/#sec-insert-unicode-extension-and-canonicalize" } }, @@ -1095,6 +1263,14 @@ "url": "https://tc39.es/ecma402/#sec-internationalization-localization-globalization" } }, + "#sec-intl-%25symbol.tostringtag%25": { + "current": { + "number": "8.1.1", + "spec": "ECMAScript Internationalization API", + "text": "Intl [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl-%25symbol.tostringtag%25" + } + }, "#sec-intl-collator-internal-slots": { "current": { "number": "10.2.3", @@ -1143,6 +1319,14 @@ "url": "https://tc39.es/ecma402/#sec-intl-listformat-constructor" } }, + "#sec-intl-locale-abstracts": { + "current": { + "number": "14.5", + "spec": "ECMAScript Internationalization API", + "text": "Abstract Operations for Locale Objects", + "url": "https://tc39.es/ecma402/#sec-intl-locale-abstracts" + } + }, "#sec-intl-locale-constructor": { "current": { "number": "14.1", @@ -1231,12 +1415,12 @@ "url": "https://tc39.es/ecma402/#sec-intl.collator.prototype" } }, - "#sec-intl.collator.prototype-@@tostringtag": { + "#sec-intl.collator.prototype-%25symbol.tostringtag%25": { "current": { "number": "10.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.Collator.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-intl.collator.prototype-@@tostringtag" + "text": "Intl.Collator.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.collator.prototype-%25symbol.tostringtag%25" } }, "#sec-intl.collator.prototype.compare": { @@ -1303,12 +1487,12 @@ "url": "https://tc39.es/ecma402/#sec-intl.datetimeformat.prototype" } }, - "#sec-intl.datetimeformat.prototype-@@tostringtag": { + "#sec-intl.datetimeformat.prototype-%25symbol.tostringtag%25": { "current": { "number": "11.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.DateTimeFormat.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-intl.datetimeformat.prototype-@@tostringtag" + "text": "Intl.DateTimeFormat.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.datetimeformat.prototype-%25symbol.tostringtag%25" } }, "#sec-intl.datetimeformat.prototype.constructor": { @@ -1359,6 +1543,14 @@ "url": "https://tc39.es/ecma402/#sec-intl.displaynames-intro" } }, + "#sec-intl.displaynames.prototype-%25symbol.tostringtag%25": { + "current": { + "number": "12.3.2", + "spec": "ECMAScript Internationalization API", + "text": "Intl.DisplayNames.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.displaynames.prototype-%25symbol.tostringtag%25" + } + }, "#sec-intl.getcanonicallocales": { "current": { "number": "8.3.1", @@ -1391,6 +1583,14 @@ "url": "https://tc39.es/ecma402/#sec-intl.locale-intro" } }, + "#sec-intl.locale.prototype-%25symbol.tostringtag%25": { + "current": { + "number": "14.3.2", + "spec": "ECMAScript Internationalization API", + "text": "Intl.Locale.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.locale.prototype-%25symbol.tostringtag%25" + } + }, "#sec-intl.numberformat": { "current": { "number": "15.1.1", @@ -1423,12 +1623,12 @@ "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype" } }, - "#sec-intl.numberformat.prototype-@@tostringtag": { + "#sec-intl.numberformat.prototype-%25symbol.tostringtag%25": { "current": { "number": "15.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.NumberFormat.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype-@@tostringtag" + "text": "Intl.NumberFormat.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype-%25symbol.tostringtag%25" } }, "#sec-intl.numberformat.prototype.constructor": { @@ -1447,6 +1647,22 @@ "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype.format" } }, + "#sec-intl.numberformat.prototype.formatrange": { + "current": { + "number": "15.3.5", + "spec": "ECMAScript Internationalization API", + "text": "Intl.NumberFormat.prototype.formatRange ( start, end )", + "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype.formatrange" + } + }, + "#sec-intl.numberformat.prototype.formatrangetoparts": { + "current": { + "number": "15.3.6", + "spec": "ECMAScript Internationalization API", + "text": "Intl.NumberFormat.prototype.formatRangeToParts ( start, end )", + "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype.formatrangetoparts" + } + }, "#sec-intl.numberformat.prototype.formattoparts": { "current": { "number": "15.3.4", @@ -1457,7 +1673,7 @@ }, "#sec-intl.numberformat.prototype.resolvedoptions": { "current": { - "number": "15.3.5", + "number": "15.3.7", "spec": "ECMAScript Internationalization API", "text": "Intl.NumberFormat.prototype.resolvedOptions ( )", "url": "https://tc39.es/ecma402/#sec-intl.numberformat.prototype.resolvedoptions" @@ -1503,12 +1719,12 @@ "url": "https://tc39.es/ecma402/#sec-intl.pluralrules.prototype" } }, - "#sec-intl.pluralrules.prototype-tostringtag": { + "#sec-intl.pluralrules.prototype-%25symbol.tostringtag%25": { "current": { "number": "16.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.PluralRules.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-intl.pluralrules.prototype-tostringtag" + "text": "Intl.PluralRules.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.pluralrules.prototype-%25symbol.tostringtag%25" } }, "#sec-intl.pluralrules.prototype.constructor": { @@ -1521,7 +1737,7 @@ }, "#sec-intl.pluralrules.prototype.resolvedoptions": { "current": { - "number": "16.3.4", + "number": "16.3.5", "spec": "ECMAScript Internationalization API", "text": "Intl.PluralRules.prototype.resolvedOptions ( )", "url": "https://tc39.es/ecma402/#sec-intl.pluralrules.prototype.resolvedoptions" @@ -1535,6 +1751,14 @@ "url": "https://tc39.es/ecma402/#sec-intl.pluralrules.prototype.select" } }, + "#sec-intl.pluralrules.prototype.selectrange": { + "current": { + "number": "16.3.4", + "spec": "ECMAScript Internationalization API", + "text": "Intl.PluralRules.prototype.selectRange ( start, end )", + "url": "https://tc39.es/ecma402/#sec-intl.pluralrules.prototype.selectrange" + } + }, "#sec-intl.pluralrules.supportedlocalesof": { "current": { "number": "16.2.2", @@ -1591,12 +1815,12 @@ "url": "https://tc39.es/ecma402/#sec-intl.segmenter.prototype" } }, - "#sec-intl.segmenter.prototype-@@tostringtag": { + "#sec-intl.segmenter.prototype-%25symbol.tostringtag%25": { "current": { "number": "18.3.2", "spec": "ECMAScript Internationalization API", - "text": "Intl.Segmenter.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma402/#sec-intl.segmenter.prototype-@@tostringtag" + "text": "Intl.Segmenter.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma402/#sec-intl.segmenter.prototype-%25symbol.tostringtag%25" } }, "#sec-intl.segmenter.prototype.constructor": { @@ -1631,9 +1855,17 @@ "url": "https://tc39.es/ecma402/#sec-intl.segmenter.supportedlocalesof" } }, + "#sec-intl.supportedvaluesof": { + "current": { + "number": "8.3.2", + "spec": "ECMAScript Internationalization API", + "text": "Intl.supportedValuesOf ( key )", + "url": "https://tc39.es/ecma402/#sec-intl.supportedvaluesof" + } + }, "#sec-issanctionedsingleunitidentifier": { "current": { - "number": "6.5.2", + "number": "6.6.2", "spec": "ECMAScript Internationalization API", "text": "IsSanctionedSingleUnitIdentifier ( unitIdentifier )", "url": "https://tc39.es/ecma402/#sec-issanctionedsingleunitidentifier" @@ -1641,7 +1873,7 @@ }, "#sec-isstructurallyvalidlanguagetag": { "current": { - "number": "6.2.2", + "number": "6.2.1", "spec": "ECMAScript Internationalization API", "text": "IsStructurallyValidLanguageTag ( locale )", "url": "https://tc39.es/ecma402/#sec-isstructurallyvalidlanguagetag" @@ -1655,14 +1887,6 @@ "url": "https://tc39.es/ecma402/#sec-isvaliddatetimefieldcode" } }, - "#sec-isvalidtimezonename": { - "current": { - "number": "6.4.1", - "spec": "ECMAScript Internationalization API", - "text": "IsValidTimeZoneName ( timeZone )", - "url": "https://tc39.es/ecma402/#sec-isvalidtimezonename" - } - }, "#sec-iswellformedcurrencycode": { "current": { "number": "6.3.1", @@ -1673,7 +1897,7 @@ }, "#sec-iswellformedunitidentifier": { "current": { - "number": "6.5.1", + "number": "6.6.1", "spec": "ECMAScript Internationalization API", "text": "IsWellFormedUnitIdentifier ( unitIdentifier )", "url": "https://tc39.es/ecma402/#sec-iswellformedunitidentifier" @@ -1687,20 +1911,28 @@ "url": "https://tc39.es/ecma402/#sec-language-tags" } }, - "#sec-lookupmatcher": { + "#sec-lookupmatchinglocalebybestfit": { + "current": { + "number": "9.2.4", + "spec": "ECMAScript Internationalization API", + "text": "LookupMatchingLocaleByBestFit ( availableLocales, requestedLocales )", + "url": "https://tc39.es/ecma402/#sec-lookupmatchinglocalebybestfit" + } + }, + "#sec-lookupmatchinglocalebyprefix": { "current": { "number": "9.2.3", "spec": "ECMAScript Internationalization API", - "text": "LookupMatcher ( availableLocales, requestedLocales )", - "url": "https://tc39.es/ecma402/#sec-lookupmatcher" + "text": "LookupMatchingLocaleByPrefix ( availableLocales, requestedLocales )", + "url": "https://tc39.es/ecma402/#sec-lookupmatchinglocalebyprefix" } }, - "#sec-lookupsupportedlocales": { + "#sec-makelocalerecord": { "current": { - "number": "9.2.8", + "number": "14.1.3", "spec": "ECMAScript Internationalization API", - "text": "LookupSupportedLocales ( availableLocales, requestedLocales )", - "url": "https://tc39.es/ecma402/#sec-lookupsupportedlocales" + "text": "MakeLocaleRecord ( tag, options, localeExtensionKeys )", + "url": "https://tc39.es/ecma402/#sec-makelocalerecord" } }, "#sec-makepartslist": { @@ -1713,7 +1945,7 @@ }, "#sec-measurement-unit-identifiers": { "current": { - "number": "6.5", + "number": "6.6", "spec": "ECMAScript Internationalization API", "text": "Measurement Unit Identifiers", "url": "https://tc39.es/ecma402/#sec-measurement-unit-identifiers" @@ -1735,9 +1967,17 @@ "url": "https://tc39.es/ecma402/#sec-numberformat-abstracts" } }, + "#sec-numberingsystem-identifiers": { + "current": { + "number": "6.7", + "spec": "ECMAScript Internationalization API", + "text": "Numbering System Identifiers", + "url": "https://tc39.es/ecma402/#sec-numberingsystem-identifiers" + } + }, "#sec-partitiondatetimepattern": { "current": { - "number": "11.5.7", + "number": "11.5.6", "spec": "ECMAScript Internationalization API", "text": "PartitionDateTimePattern ( dateTimeFormat, x )", "url": "https://tc39.es/ecma402/#sec-partitiondatetimepattern" @@ -1745,7 +1985,7 @@ }, "#sec-partitiondatetimerangepattern": { "current": { - "number": "11.5.10", + "number": "11.5.9", "spec": "ECMAScript Internationalization API", "text": "PartitionDateTimeRangePattern ( dateTimeFormat, x, y )", "url": "https://tc39.es/ecma402/#sec-partitiondatetimerangepattern" @@ -1767,22 +2007,54 @@ "url": "https://tc39.es/ecma402/#sec-partitionnumberpattern" } }, + "#sec-partitionnumberrangepattern": { + "current": { + "number": "15.5.19", + "spec": "ECMAScript Internationalization API", + "text": "PartitionNumberRangePattern ( numberFormat, x, y )", + "url": "https://tc39.es/ecma402/#sec-partitionnumberrangepattern" + } + }, "#sec-partitionpattern": { "current": { - "number": "9.2.16", + "number": "9.2.15", "spec": "ECMAScript Internationalization API", "text": "PartitionPattern ( pattern )", "url": "https://tc39.es/ecma402/#sec-partitionpattern" } }, - "#sec-pluralruleselect": { + "#sec-pattern-string-types": { + "current": { + "number": "6.10", + "spec": "ECMAScript Internationalization API", + "text": "Pattern String Types", + "url": "https://tc39.es/ecma402/#sec-pattern-string-types" + } + }, + "#sec-plural-rules-operands-records": { "current": { "number": "16.5.2", "spec": "ECMAScript Internationalization API", + "text": "Plural Rules Operands Records", + "url": "https://tc39.es/ecma402/#sec-plural-rules-operands-records" + } + }, + "#sec-pluralruleselect": { + "current": { + "number": "16.5.3", + "spec": "ECMAScript Internationalization API", "text": "PluralRuleSelect ( locale, type, n, operands )", "url": "https://tc39.es/ecma402/#sec-pluralruleselect" } }, + "#sec-pluralruleselectrange": { + "current": { + "number": "16.5.5", + "spec": "ECMAScript Internationalization API", + "text": "PluralRuleSelectRange ( locale, type, xp, yp )", + "url": "https://tc39.es/ecma402/#sec-pluralruleselectrange" + } + }, "#sec-properties-of-intl-collator-instances": { "current": { "number": "10.4", @@ -1871,6 +2143,14 @@ "url": "https://tc39.es/ecma402/#sec-properties-of-intl-locale-constructor" } }, + "#sec-properties-of-intl-locale-instances": { + "current": { + "number": "14.4", + "spec": "ECMAScript Internationalization API", + "text": "Properties of Intl.Locale Instances", + "url": "https://tc39.es/ecma402/#sec-properties-of-intl-locale-instances" + } + }, "#sec-properties-of-intl-locale-prototype-object": { "current": { "number": "14.3", @@ -2017,12 +2297,28 @@ }, "#sec-resolveplural": { "current": { - "number": "16.5.3", + "number": "16.5.4", "spec": "ECMAScript Internationalization API", "text": "ResolvePlural ( pluralRules, n )", "url": "https://tc39.es/ecma402/#sec-resolveplural" } }, + "#sec-resolvepluralrange": { + "current": { + "number": "16.5.6", + "spec": "ECMAScript Internationalization API", + "text": "ResolvePluralRange ( pluralRules, x, y )", + "url": "https://tc39.es/ecma402/#sec-resolvepluralrange" + } + }, + "#sec-runtime-semantics-stringintlmv": { + "current": { + "number": "15.5.15", + "spec": "ECMAScript Internationalization API", + "text": "Runtime Semantics: StringIntlMV", + "url": "https://tc39.es/ecma402/#sec-runtime-semantics-stringintlmv" + } + }, "#sec-segment-data-objects": { "current": { "number": "18.7", @@ -2049,7 +2345,7 @@ }, "#sec-setnfdigitoptions": { "current": { - "number": "15.1.3", + "number": "15.1.2", "spec": "ECMAScript Internationalization API", "text": "SetNumberFormatDigitOptions ( intlObj, options, mnfdDefault, mxfdDefault, notation )", "url": "https://tc39.es/ecma402/#sec-setnfdigitoptions" @@ -2057,7 +2353,7 @@ }, "#sec-setnumberformatunitoptions": { "current": { - "number": "15.1.4", + "number": "15.1.3", "spec": "ECMAScript Internationalization API", "text": "SetNumberFormatUnitOptions ( intlObj, options )", "url": "https://tc39.es/ecma402/#sec-setnumberformatunitoptions" @@ -2071,12 +2367,12 @@ "url": "https://tc39.es/ecma402/#sec-singularrelativetimeunit" } }, - "#sec-supportedlocales": { + "#sec-string-split-to-list": { "current": { - "number": "9.2.10", + "number": "6.5.4", "spec": "ECMAScript Internationalization API", - "text": "SupportedLocales ( availableLocales, requestedLocales, options )", - "url": "https://tc39.es/ecma402/#sec-supportedlocales" + "text": "StringSplitToList ( S, separator )", + "url": "https://tc39.es/ecma402/#sec-string-split-to-list" } }, "#sec-the-intl-collator-constructor": { @@ -2087,27 +2383,19 @@ "url": "https://tc39.es/ecma402/#sec-the-intl-collator-constructor" } }, - "#sec-time-zone-names": { + "#sec-tointlmathematicalvalue": { "current": { - "number": "6.4", - "spec": "ECMAScript Internationalization API", - "text": "Time Zone Names", - "url": "https://tc39.es/ecma402/#sec-time-zone-names" - } - }, - "#sec-todatetimeoptions": { - "current": { - "number": "11.5.1", + "number": "15.5.16", "spec": "ECMAScript Internationalization API", - "text": "ToDateTimeOptions ( options, required, defaults )", - "url": "https://tc39.es/ecma402/#sec-todatetimeoptions" + "text": "ToIntlMathematicalValue ( value )", + "url": "https://tc39.es/ecma402/#sec-tointlmathematicalvalue" } }, "#sec-tolocaltime": { "current": { - "number": "11.5.13", + "number": "11.5.12", "spec": "ECMAScript Internationalization API", - "text": "ToLocalTime ( epochNs, calendar, timeZone )", + "text": "ToLocalTime ( epochNs, calendar, timeZoneIdentifier )", "url": "https://tc39.es/ecma402/#sec-tolocaltime" } }, @@ -2115,7 +2403,7 @@ "current": { "number": "15.5.9", "spec": "ECMAScript Internationalization API", - "text": "ToRawFixed ( x, minInteger, minFraction, maxFraction )", + "text": "ToRawFixed ( x, minFraction, maxFraction, roundingIncrement, unsignedRoundingMode )", "url": "https://tc39.es/ecma402/#sec-torawfixed" } }, @@ -2123,7 +2411,7 @@ "current": { "number": "15.5.8", "spec": "ECMAScript Internationalization API", - "text": "ToRawPrecision ( x, minPrecision, maxPrecision )", + "text": "ToRawPrecision ( x, minPrecision, maxPrecision, unsignedRoundingMode )", "url": "https://tc39.es/ecma402/#sec-torawprecision" } }, @@ -2143,14 +2431,6 @@ "url": "https://tc39.es/ecma402/#sec-unicode-extension-components" } }, - "#sec-unicode-locale-extension-sequences": { - "current": { - "number": "6.2.1", - "spec": "ECMAScript Internationalization API", - "text": "Unicode Locale Extension Sequences", - "url": "https://tc39.es/ecma402/#sec-unicode-locale-extension-sequences" - } - }, "#sec-unwrapdatetimeformat": { "current": { "number": "11.5.14", @@ -2167,6 +2447,22 @@ "url": "https://tc39.es/ecma402/#sec-unwrapnumberformat" } }, + "#sec-updatelanguageid": { + "current": { + "number": "14.1.2", + "spec": "ECMAScript Internationalization API", + "text": "UpdateLanguageId ( tag, options )", + "url": "https://tc39.es/ecma402/#sec-updatelanguageid" + } + }, + "#sec-use-of-iana-time-zone-database": { + "current": { + "number": "6.5", + "spec": "ECMAScript Internationalization API", + "text": "Use of the IANA Time Zone Database", + "url": "https://tc39.es/ecma402/#sec-use-of-iana-time-zone-database" + } + }, "#sec-value-properties-of-the-intl-object": { "current": { "number": "8.1", @@ -2199,6 +2495,14 @@ "url": "https://tc39.es/ecma402/#sup-array.prototype.tolocalestring" } }, + "#sup-availablenamedtimezoneidentifiers": { + "current": { + "number": "6.5.1", + "spec": "ECMAScript Internationalization API", + "text": "AvailableNamedTimeZoneIdentifiers ( )", + "url": "https://tc39.es/ecma402/#sup-availablenamedtimezoneidentifiers" + } + }, "#sup-bigint.prototype.tolocalestring": { "current": { "number": "19.3.1", @@ -2231,14 +2535,6 @@ "url": "https://tc39.es/ecma402/#sup-date.prototype.tolocaletimestring" } }, - "#sup-defaulttimezone": { - "current": { - "number": "6.4.3", - "spec": "ECMAScript Internationalization API", - "text": "DefaultTimeZone ( )", - "url": "https://tc39.es/ecma402/#sup-defaulttimezone" - } - }, "#sup-number.prototype.tolocalestring": { "current": { "number": "19.2.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-ecmascript.json b/bikeshed/spec-data/readonly/headings/headings-ecmascript.json index 683636c2b3..edf4fd175b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-ecmascript.json +++ b/bikeshed/spec-data/readonly/headings/headings-ecmascript.json @@ -2,185 +2,197 @@ "#await": [ "/control-abstraction-objects#await" ], - "#sec-%arrayiteratorprototype%-@@tostringtag": [ - "/indexed-collections#sec-%arrayiteratorprototype%-@@tostringtag" + "#sec-%25arrayiteratorprototype%25-%25symbol.tostringtag%25": [ + "/indexed-collections#sec-%25arrayiteratorprototype%25-%25symbol.tostringtag%25" ], - "#sec-%arrayiteratorprototype%-object": [ - "/indexed-collections#sec-%arrayiteratorprototype%-object" + "#sec-%25arrayiteratorprototype%25-object": [ + "/indexed-collections#sec-%25arrayiteratorprototype%25-object" ], - "#sec-%arrayiteratorprototype%.next": [ - "/indexed-collections#sec-%arrayiteratorprototype%.next" + "#sec-%25arrayiteratorprototype%25.next": [ + "/indexed-collections#sec-%25arrayiteratorprototype%25.next" ], - "#sec-%asyncfromsynciteratorprototype%-object": [ - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%-object" + "#sec-%25asyncfromsynciteratorprototype%25-object": [ + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25-object" ], - "#sec-%asyncfromsynciteratorprototype%.next": [ - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%.next" + "#sec-%25asyncfromsynciteratorprototype%25.next": [ + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25.next" ], - "#sec-%asyncfromsynciteratorprototype%.return": [ - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%.return" + "#sec-%25asyncfromsynciteratorprototype%25.return": [ + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25.return" ], - "#sec-%asyncfromsynciteratorprototype%.throw": [ - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%.throw" + "#sec-%25asyncfromsynciteratorprototype%25.throw": [ + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25.throw" ], - "#sec-%foriniteratorprototype%-object": [ - "/ecmascript-language-statements-and-declarations#sec-%foriniteratorprototype%-object" + "#sec-%25asynciteratorprototype%25-%25symbol.asynciterator%25": [ + "/control-abstraction-objects#sec-%25asynciteratorprototype%25-%25symbol.asynciterator%25" ], - "#sec-%foriniteratorprototype%.next": [ - "/ecmascript-language-statements-and-declarations#sec-%foriniteratorprototype%.next" + "#sec-%25foriniteratorprototype%25-object": [ + "/ecmascript-language-statements-and-declarations#sec-%25foriniteratorprototype%25-object" ], - "#sec-%iteratorprototype%-@@iterator": [ - "/control-abstraction-objects#sec-%iteratorprototype%-@@iterator" + "#sec-%25foriniteratorprototype%25.next": [ + "/ecmascript-language-statements-and-declarations#sec-%25foriniteratorprototype%25.next" ], - "#sec-%iteratorprototype%-object": [ - "/control-abstraction-objects#sec-%iteratorprototype%-object" + "#sec-%25iteratorprototype%25-%25symbol.iterator%25": [ + "/control-abstraction-objects#sec-%25iteratorprototype%25-%25symbol.iterator%25" ], - "#sec-%mapiteratorprototype%-@@tostringtag": [ - "/keyed-collections#sec-%mapiteratorprototype%-@@tostringtag" + "#sec-%25iteratorprototype%25-object": [ + "/control-abstraction-objects#sec-%25iteratorprototype%25-object" ], - "#sec-%mapiteratorprototype%-object": [ - "/keyed-collections#sec-%mapiteratorprototype%-object" + "#sec-%25mapiteratorprototype%25-%25symbol.tostringtag%25": [ + "/keyed-collections#sec-%25mapiteratorprototype%25-%25symbol.tostringtag%25" ], - "#sec-%mapiteratorprototype%.next": [ - "/keyed-collections#sec-%mapiteratorprototype%.next" + "#sec-%25mapiteratorprototype%25-object": [ + "/keyed-collections#sec-%25mapiteratorprototype%25-object" ], - "#sec-%regexpstringiteratorprototype%-@@tostringtag": [ - "/text-processing#sec-%regexpstringiteratorprototype%-@@tostringtag" + "#sec-%25mapiteratorprototype%25.next": [ + "/keyed-collections#sec-%25mapiteratorprototype%25.next" ], - "#sec-%regexpstringiteratorprototype%-object": [ - "/text-processing#sec-%regexpstringiteratorprototype%-object" + "#sec-%25regexpstringiteratorprototype%25-%25symbol.tostringtag%25": [ + "/text-processing#sec-%25regexpstringiteratorprototype%25-%25symbol.tostringtag%25" ], - "#sec-%regexpstringiteratorprototype%.next": [ - "/text-processing#sec-%regexpstringiteratorprototype%.next" + "#sec-%25regexpstringiteratorprototype%25-object": [ + "/text-processing#sec-%25regexpstringiteratorprototype%25-object" ], - "#sec-%setiteratorprototype%-@@tostringtag": [ - "/keyed-collections#sec-%setiteratorprototype%-@@tostringtag" + "#sec-%25regexpstringiteratorprototype%25.next": [ + "/text-processing#sec-%25regexpstringiteratorprototype%25.next" ], - "#sec-%setiteratorprototype%-object": [ - "/keyed-collections#sec-%setiteratorprototype%-object" + "#sec-%25setiteratorprototype%25-%25symbol.tostringtag%25": [ + "/keyed-collections#sec-%25setiteratorprototype%25-%25symbol.tostringtag%25" ], - "#sec-%setiteratorprototype%.next": [ - "/keyed-collections#sec-%setiteratorprototype%.next" + "#sec-%25setiteratorprototype%25-object": [ + "/keyed-collections#sec-%25setiteratorprototype%25-object" ], - "#sec-%stringiteratorprototype%-@@tostringtag": [ - "/text-processing#sec-%stringiteratorprototype%-@@tostringtag" + "#sec-%25setiteratorprototype%25.next": [ + "/keyed-collections#sec-%25setiteratorprototype%25.next" ], - "#sec-%stringiteratorprototype%-object": [ - "/text-processing#sec-%stringiteratorprototype%-object" + "#sec-%25stringiteratorprototype%25-%25symbol.tostringtag%25": [ + "/text-processing#sec-%25stringiteratorprototype%25-%25symbol.tostringtag%25" ], - "#sec-%stringiteratorprototype%.next": [ - "/text-processing#sec-%stringiteratorprototype%.next" + "#sec-%25stringiteratorprototype%25-object": [ + "/text-processing#sec-%25stringiteratorprototype%25-object" ], - "#sec-%throwtypeerror%": [ - "/ordinary-and-exotic-objects-behaviours#sec-%throwtypeerror%" + "#sec-%25stringiteratorprototype%25.next": [ + "/text-processing#sec-%25stringiteratorprototype%25.next" ], - "#sec-%typedarray%": [ - "/indexed-collections#sec-%typedarray%" + "#sec-%25symbol.tostringtag%25": [ + "/reflection#sec-%25symbol.tostringtag%25" ], - "#sec-%typedarray%-intrinsic-object": [ - "/indexed-collections#sec-%typedarray%-intrinsic-object" + "#sec-%25throwtypeerror%25": [ + "/ordinary-and-exotic-objects-behaviours#sec-%25throwtypeerror%25" ], - "#sec-%typedarray%.from": [ - "/indexed-collections#sec-%typedarray%.from" + "#sec-%25typedarray%25": [ + "/indexed-collections#sec-%25typedarray%25" ], - "#sec-%typedarray%.of": [ - "/indexed-collections#sec-%typedarray%.of" + "#sec-%25typedarray%25-intrinsic-object": [ + "/indexed-collections#sec-%25typedarray%25-intrinsic-object" ], - "#sec-%typedarray%.prototype": [ - "/indexed-collections#sec-%typedarray%.prototype" + "#sec-%25typedarray%25.from": [ + "/indexed-collections#sec-%25typedarray%25.from" ], - "#sec-%typedarray%.prototype-@@iterator": [ - "/indexed-collections#sec-%typedarray%.prototype-@@iterator" + "#sec-%25typedarray%25.of": [ + "/indexed-collections#sec-%25typedarray%25.of" ], - "#sec-%typedarray%.prototype.at": [ - "/indexed-collections#sec-%typedarray%.prototype.at" + "#sec-%25typedarray%25.prototype": [ + "/indexed-collections#sec-%25typedarray%25.prototype" ], - "#sec-%typedarray%.prototype.constructor": [ - "/indexed-collections#sec-%typedarray%.prototype.constructor" + "#sec-%25typedarray%25.prototype-%25symbol.iterator%25": [ + "/indexed-collections#sec-%25typedarray%25.prototype-%25symbol.iterator%25" ], - "#sec-%typedarray%.prototype.copywithin": [ - "/indexed-collections#sec-%typedarray%.prototype.copywithin" + "#sec-%25typedarray%25.prototype.at": [ + "/indexed-collections#sec-%25typedarray%25.prototype.at" ], - "#sec-%typedarray%.prototype.entries": [ - "/indexed-collections#sec-%typedarray%.prototype.entries" + "#sec-%25typedarray%25.prototype.constructor": [ + "/indexed-collections#sec-%25typedarray%25.prototype.constructor" ], - "#sec-%typedarray%.prototype.every": [ - "/indexed-collections#sec-%typedarray%.prototype.every" + "#sec-%25typedarray%25.prototype.copywithin": [ + "/indexed-collections#sec-%25typedarray%25.prototype.copywithin" ], - "#sec-%typedarray%.prototype.fill": [ - "/indexed-collections#sec-%typedarray%.prototype.fill" + "#sec-%25typedarray%25.prototype.entries": [ + "/indexed-collections#sec-%25typedarray%25.prototype.entries" ], - "#sec-%typedarray%.prototype.filter": [ - "/indexed-collections#sec-%typedarray%.prototype.filter" + "#sec-%25typedarray%25.prototype.every": [ + "/indexed-collections#sec-%25typedarray%25.prototype.every" ], - "#sec-%typedarray%.prototype.find": [ - "/indexed-collections#sec-%typedarray%.prototype.find" + "#sec-%25typedarray%25.prototype.fill": [ + "/indexed-collections#sec-%25typedarray%25.prototype.fill" ], - "#sec-%typedarray%.prototype.findindex": [ - "/indexed-collections#sec-%typedarray%.prototype.findindex" + "#sec-%25typedarray%25.prototype.filter": [ + "/indexed-collections#sec-%25typedarray%25.prototype.filter" ], - "#sec-%typedarray%.prototype.findlast": [ - "/indexed-collections#sec-%typedarray%.prototype.findlast" + "#sec-%25typedarray%25.prototype.find": [ + "/indexed-collections#sec-%25typedarray%25.prototype.find" ], - "#sec-%typedarray%.prototype.findlastindex": [ - "/indexed-collections#sec-%typedarray%.prototype.findlastindex" + "#sec-%25typedarray%25.prototype.findindex": [ + "/indexed-collections#sec-%25typedarray%25.prototype.findindex" ], - "#sec-%typedarray%.prototype.foreach": [ - "/indexed-collections#sec-%typedarray%.prototype.foreach" + "#sec-%25typedarray%25.prototype.findlast": [ + "/indexed-collections#sec-%25typedarray%25.prototype.findlast" ], - "#sec-%typedarray%.prototype.includes": [ - "/indexed-collections#sec-%typedarray%.prototype.includes" + "#sec-%25typedarray%25.prototype.findlastindex": [ + "/indexed-collections#sec-%25typedarray%25.prototype.findlastindex" ], - "#sec-%typedarray%.prototype.indexof": [ - "/indexed-collections#sec-%typedarray%.prototype.indexof" + "#sec-%25typedarray%25.prototype.foreach": [ + "/indexed-collections#sec-%25typedarray%25.prototype.foreach" ], - "#sec-%typedarray%.prototype.join": [ - "/indexed-collections#sec-%typedarray%.prototype.join" + "#sec-%25typedarray%25.prototype.includes": [ + "/indexed-collections#sec-%25typedarray%25.prototype.includes" ], - "#sec-%typedarray%.prototype.keys": [ - "/indexed-collections#sec-%typedarray%.prototype.keys" + "#sec-%25typedarray%25.prototype.indexof": [ + "/indexed-collections#sec-%25typedarray%25.prototype.indexof" ], - "#sec-%typedarray%.prototype.lastindexof": [ - "/indexed-collections#sec-%typedarray%.prototype.lastindexof" + "#sec-%25typedarray%25.prototype.join": [ + "/indexed-collections#sec-%25typedarray%25.prototype.join" ], - "#sec-%typedarray%.prototype.map": [ - "/indexed-collections#sec-%typedarray%.prototype.map" + "#sec-%25typedarray%25.prototype.keys": [ + "/indexed-collections#sec-%25typedarray%25.prototype.keys" ], - "#sec-%typedarray%.prototype.reduce": [ - "/indexed-collections#sec-%typedarray%.prototype.reduce" + "#sec-%25typedarray%25.prototype.lastindexof": [ + "/indexed-collections#sec-%25typedarray%25.prototype.lastindexof" ], - "#sec-%typedarray%.prototype.reduceright": [ - "/indexed-collections#sec-%typedarray%.prototype.reduceright" + "#sec-%25typedarray%25.prototype.map": [ + "/indexed-collections#sec-%25typedarray%25.prototype.map" ], - "#sec-%typedarray%.prototype.reverse": [ - "/indexed-collections#sec-%typedarray%.prototype.reverse" + "#sec-%25typedarray%25.prototype.reduce": [ + "/indexed-collections#sec-%25typedarray%25.prototype.reduce" ], - "#sec-%typedarray%.prototype.set": [ - "/indexed-collections#sec-%typedarray%.prototype.set" + "#sec-%25typedarray%25.prototype.reduceright": [ + "/indexed-collections#sec-%25typedarray%25.prototype.reduceright" ], - "#sec-%typedarray%.prototype.slice": [ - "/indexed-collections#sec-%typedarray%.prototype.slice" + "#sec-%25typedarray%25.prototype.reverse": [ + "/indexed-collections#sec-%25typedarray%25.prototype.reverse" ], - "#sec-%typedarray%.prototype.some": [ - "/indexed-collections#sec-%typedarray%.prototype.some" + "#sec-%25typedarray%25.prototype.set": [ + "/indexed-collections#sec-%25typedarray%25.prototype.set" ], - "#sec-%typedarray%.prototype.sort": [ - "/indexed-collections#sec-%typedarray%.prototype.sort" + "#sec-%25typedarray%25.prototype.slice": [ + "/indexed-collections#sec-%25typedarray%25.prototype.slice" ], - "#sec-%typedarray%.prototype.subarray": [ - "/indexed-collections#sec-%typedarray%.prototype.subarray" + "#sec-%25typedarray%25.prototype.some": [ + "/indexed-collections#sec-%25typedarray%25.prototype.some" ], - "#sec-%typedarray%.prototype.tolocalestring": [ - "/indexed-collections#sec-%typedarray%.prototype.tolocalestring" + "#sec-%25typedarray%25.prototype.sort": [ + "/indexed-collections#sec-%25typedarray%25.prototype.sort" ], - "#sec-%typedarray%.prototype.tostring": [ - "/indexed-collections#sec-%typedarray%.prototype.tostring" + "#sec-%25typedarray%25.prototype.subarray": [ + "/indexed-collections#sec-%25typedarray%25.prototype.subarray" ], - "#sec-%typedarray%.prototype.values": [ - "/indexed-collections#sec-%typedarray%.prototype.values" + "#sec-%25typedarray%25.prototype.tolocalestring": [ + "/indexed-collections#sec-%25typedarray%25.prototype.tolocalestring" ], - "#sec-@@tostringtag": [ - "/reflection#sec-@@tostringtag" + "#sec-%25typedarray%25.prototype.toreversed": [ + "/indexed-collections#sec-%25typedarray%25.prototype.toreversed" + ], + "#sec-%25typedarray%25.prototype.tosorted": [ + "/indexed-collections#sec-%25typedarray%25.prototype.tosorted" + ], + "#sec-%25typedarray%25.prototype.tostring": [ + "/indexed-collections#sec-%25typedarray%25.prototype.tostring" + ], + "#sec-%25typedarray%25.prototype.values": [ + "/indexed-collections#sec-%25typedarray%25.prototype.values" + ], + "#sec-%25typedarray%25.prototype.with": [ + "/indexed-collections#sec-%25typedarray%25.prototype.with" ], "#sec-ContinueDynamicImport": [ "/ecmascript-language-expressions#sec-ContinueDynamicImport" @@ -227,15 +239,24 @@ "#sec-abstract-operations-for-error-objects": [ "/fundamental-objects#sec-abstract-operations-for-error-objects" ], + "#sec-abstract-operations-for-keyed-collections": [ + "/keyed-collections#sec-abstract-operations-for-keyed-collections" + ], "#sec-abstract-operations-for-regexp-creation": [ "/text-processing#sec-abstract-operations-for-regexp-creation" ], "#sec-abstract-operations-for-regexp-matching": [ "/text-processing#sec-abstract-operations-for-regexp-matching" ], + "#sec-abstract-operations-for-set-objects": [ + "/keyed-collections#sec-abstract-operations-for-set-objects" + ], "#sec-abstract-operations-for-sharedarraybuffer-objects": [ "/structured-data#sec-abstract-operations-for-sharedarraybuffer-objects" ], + "#sec-abstract-operations-for-symbols": [ + "/fundamental-objects#sec-abstract-operations-for-symbols" + ], "#sec-abstract-operations-for-the-memory-model": [ "/memory-model#sec-abstract-operations-for-the-memory-model" ], @@ -245,6 +266,9 @@ "#sec-add-entries-from-iterable": [ "/keyed-collections#sec-add-entries-from-iterable" ], + "#sec-add-value-to-keyed-group": [ + "/abstract-operations#sec-add-value-to-keyed-group" + ], "#sec-addition-operator-plus": [ "/ecmascript-language-expressions#sec-addition-operator-plus" ], @@ -314,6 +338,9 @@ "#sec-algorithm-conventions-syntax-directed-operations": [ "/notational-conventions#sec-algorithm-conventions-syntax-directed-operations" ], + "#sec-allcharacters": [ + "/text-processing#sec-allcharacters" + ], "#sec-allocatearraybuffer": [ "/structured-data#sec-allocatearraybuffer" ], @@ -386,11 +413,11 @@ "#sec-array.prototype": [ "/indexed-collections#sec-array.prototype" ], - "#sec-array.prototype-@@iterator": [ - "/indexed-collections#sec-array.prototype-@@iterator" + "#sec-array.prototype-%25symbol.iterator%25": [ + "/indexed-collections#sec-array.prototype-%25symbol.iterator%25" ], - "#sec-array.prototype-@@unscopables": [ - "/indexed-collections#sec-array.prototype-@@unscopables" + "#sec-array.prototype-%25symbol.unscopables%25": [ + "/indexed-collections#sec-array.prototype-%25symbol.unscopables%25" ], "#sec-array.prototype.at": [ "/indexed-collections#sec-array.prototype.at" @@ -488,6 +515,15 @@ "#sec-array.prototype.tolocalestring": [ "/indexed-collections#sec-array.prototype.tolocalestring" ], + "#sec-array.prototype.toreversed": [ + "/indexed-collections#sec-array.prototype.toreversed" + ], + "#sec-array.prototype.tosorted": [ + "/indexed-collections#sec-array.prototype.tosorted" + ], + "#sec-array.prototype.tospliced": [ + "/indexed-collections#sec-array.prototype.tospliced" + ], "#sec-array.prototype.tostring": [ "/indexed-collections#sec-array.prototype.tostring" ], @@ -497,6 +533,9 @@ "#sec-array.prototype.values": [ "/indexed-collections#sec-array.prototype.values" ], + "#sec-array.prototype.with": [ + "/indexed-collections#sec-array.prototype.with" + ], "#sec-arraybuffer-constructor": [ "/structured-data#sec-arraybuffer-constructor" ], @@ -515,15 +554,30 @@ "#sec-arraybuffer.prototype": [ "/structured-data#sec-arraybuffer.prototype" ], - "#sec-arraybuffer.prototype-@@tostringtag": [ - "/structured-data#sec-arraybuffer.prototype-@@tostringtag" + "#sec-arraybuffer.prototype-%25symbol.tostringtag%25": [ + "/structured-data#sec-arraybuffer.prototype-%25symbol.tostringtag%25" ], "#sec-arraybuffer.prototype.constructor": [ "/structured-data#sec-arraybuffer.prototype.constructor" ], + "#sec-arraybuffer.prototype.resize": [ + "/structured-data#sec-arraybuffer.prototype.resize" + ], "#sec-arraybuffer.prototype.slice": [ "/structured-data#sec-arraybuffer.prototype.slice" ], + "#sec-arraybuffer.prototype.transfer": [ + "/structured-data#sec-arraybuffer.prototype.transfer" + ], + "#sec-arraybuffer.prototype.transfertofixedlength": [ + "/structured-data#sec-arraybuffer.prototype.transfertofixedlength" + ], + "#sec-arraybufferbytelength": [ + "/structured-data#sec-arraybufferbytelength" + ], + "#sec-arraybuffercopyanddetach": [ + "/structured-data#sec-arraybuffercopyanddetach" + ], "#sec-arraycreate": [ "/ordinary-and-exotic-objects-behaviours#sec-arraycreate" ], @@ -575,9 +629,6 @@ "#sec-async-function-constructor-arguments": [ "/control-abstraction-objects#sec-async-function-constructor-arguments" ], - "#sec-async-function-constructor-length": [ - "/control-abstraction-objects#sec-async-function-constructor-length" - ], "#sec-async-function-constructor-properties": [ "/control-abstraction-objects#sec-async-function-constructor-properties" ], @@ -605,15 +656,15 @@ "#sec-async-function-objects": [ "/control-abstraction-objects#sec-async-function-objects" ], + "#sec-async-function-prototype-%25symbol.tostringtag%25": [ + "/control-abstraction-objects#sec-async-function-prototype-%25symbol.tostringtag%25" + ], "#sec-async-function-prototype-properties": [ "/control-abstraction-objects#sec-async-function-prototype-properties" ], "#sec-async-function-prototype-properties-constructor": [ "/control-abstraction-objects#sec-async-function-prototype-properties-constructor" ], - "#sec-async-function-prototype-properties-toStringTag": [ - "/control-abstraction-objects#sec-async-function-prototype-properties-toStringTag" - ], "#sec-async-functions-abstract-operations": [ "/control-abstraction-objects#sec-async-functions-abstract-operations" ], @@ -647,6 +698,9 @@ "#sec-asyncgenerator-objects": [ "/control-abstraction-objects#sec-asyncgenerator-objects" ], + "#sec-asyncgenerator-prototype-%25symbol.tostringtag%25": [ + "/control-abstraction-objects#sec-asyncgenerator-prototype-%25symbol.tostringtag%25" + ], "#sec-asyncgenerator-prototype-constructor": [ "/control-abstraction-objects#sec-asyncgenerator-prototype-constructor" ], @@ -659,9 +713,6 @@ "#sec-asyncgenerator-prototype-throw": [ "/control-abstraction-objects#sec-asyncgenerator-prototype-throw" ], - "#sec-asyncgenerator-prototype-tostringtag": [ - "/control-abstraction-objects#sec-asyncgenerator-prototype-tostringtag" - ], "#sec-asyncgeneratorawaitreturn": [ "/control-abstraction-objects#sec-asyncgeneratorawaitreturn" ], @@ -692,24 +743,21 @@ "#sec-asyncgeneratorfunction-instances": [ "/control-abstraction-objects#sec-asyncgeneratorfunction-instances" ], - "#sec-asyncgeneratorfunction-length": [ - "/control-abstraction-objects#sec-asyncgeneratorfunction-length" - ], "#sec-asyncgeneratorfunction-objects": [ "/control-abstraction-objects#sec-asyncgeneratorfunction-objects" ], "#sec-asyncgeneratorfunction-prototype": [ "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype" ], + "#sec-asyncgeneratorfunction-prototype-%25symbol.tostringtag%25": [ + "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-%25symbol.tostringtag%25" + ], "#sec-asyncgeneratorfunction-prototype-constructor": [ "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-constructor" ], "#sec-asyncgeneratorfunction-prototype-prototype": [ "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-prototype" ], - "#sec-asyncgeneratorfunction-prototype-tostringtag": [ - "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-tostringtag" - ], "#sec-asyncgeneratorrequest-records": [ "/control-abstraction-objects#sec-asyncgeneratorrequest-records" ], @@ -740,8 +788,8 @@ "#sec-asynciteratorprototype": [ "/control-abstraction-objects#sec-asynciteratorprototype" ], - "#sec-asynciteratorprototype-asynciterator": [ - "/control-abstraction-objects#sec-asynciteratorprototype-asynciterator" + "#sec-atomiccompareexchangeinsharedblock": [ + "/structured-data#sec-atomiccompareexchangeinsharedblock" ], "#sec-atomicreadmodifywrite": [ "/structured-data#sec-atomicreadmodifywrite" @@ -749,8 +797,8 @@ "#sec-atomics": [ "/global-object#sec-atomics" ], - "#sec-atomics-@@tostringtag": [ - "/structured-data#sec-atomics-@@tostringtag" + "#sec-atomics-%25symbol.tostringtag%25": [ + "/structured-data#sec-atomics-%25symbol.tostringtag%25" ], "#sec-atomics-object": [ "/structured-data#sec-atomics-object" @@ -788,6 +836,9 @@ "#sec-atomics.wait": [ "/structured-data#sec-atomics.wait" ], + "#sec-atomics.waitasync": [ + "/structured-data#sec-atomics.waitasync" + ], "#sec-atomics.xor": [ "/structured-data#sec-atomics.xor" ], @@ -797,6 +848,9 @@ "#sec-automatic-semicolon-insertion": [ "/ecmascript-language-lexical-grammar#sec-automatic-semicolon-insertion" ], + "#sec-availablenamedtimezoneidentifiers": [ + "/numbers-and-dates#sec-availablenamedtimezoneidentifiers" + ], "#sec-backreference-matcher": [ "/text-processing#sec-backreference-matcher" ], @@ -821,8 +875,8 @@ "#sec-bigint.prototype": [ "/numbers-and-dates#sec-bigint.prototype" ], - "#sec-bigint.prototype-@@tostringtag": [ - "/numbers-and-dates#sec-bigint.prototype-@@tostringtag" + "#sec-bigint.prototype-%25symbol.tostringtag%25": [ + "/numbers-and-dates#sec-bigint.prototype-%25symbol.tostringtag%25" ], "#sec-bigint.prototype.constructor": [ "/numbers-and-dates#sec-bigint.prototype.constructor" @@ -932,6 +986,9 @@ "#sec-break-statement-static-semantics-early-errors": [ "/ecmascript-language-statements-and-declarations#sec-break-statement-static-semantics-early-errors" ], + "#sec-built-in-constructor": [ + "/overview#sec-built-in-constructor" + ], "#sec-built-in-exotic-object-internal-methods-and-slots": [ "/ordinary-and-exotic-objects-behaviours#sec-built-in-exotic-object-internal-methods-and-slots" ], @@ -953,6 +1010,9 @@ "#sec-built-in-object": [ "/overview#sec-built-in-object" ], + "#sec-builtincallorconstruct": [ + "/ordinary-and-exotic-objects-behaviours#sec-builtincallorconstruct" + ], "#sec-but-not": [ "/notational-conventions#sec-but-not" ], @@ -965,6 +1025,9 @@ "#sec-call": [ "/abstract-operations#sec-call" ], + "#sec-canbeheldweakly": [ + "/executable-code-and-execution-contexts#sec-canbeheldweakly" + ], "#sec-candeclareglobalfunction": [ "/executable-code-and-execution-contexts#sec-candeclareglobalfunction" ], @@ -974,9 +1037,15 @@ "#sec-candidate-executions": [ "/memory-model#sec-candidate-executions" ], + "#sec-canonicalizekeyedcollectionkey": [ + "/keyed-collections#sec-canonicalizekeyedcollectionkey" + ], "#sec-canonicalnumericindexstring": [ "/abstract-operations#sec-canonicalnumericindexstring" ], + "#sec-charactercomplement": [ + "/text-processing#sec-charactercomplement" + ], "#sec-chosen-value-records": [ "/memory-model#sec-chosen-value-records" ], @@ -1028,6 +1097,12 @@ "#sec-common-iteration-interfaces": [ "/control-abstraction-objects#sec-common-iteration-interfaces" ], + "#sec-comparearrayelements": [ + "/indexed-collections#sec-comparearrayelements" + ], + "#sec-comparetypedarrayelements": [ + "/indexed-collections#sec-comparetypedarrayelements" + ], "#sec-compileassertion": [ "/text-processing#sec-compileassertion" ], @@ -1037,6 +1112,9 @@ "#sec-compilecharacterclass": [ "/text-processing#sec-compilecharacterclass" ], + "#sec-compileclasssetstring": [ + "/text-processing#sec-compileclasssetstring" + ], "#sec-compilepattern": [ "/text-processing#sec-compilepattern" ], @@ -1265,18 +1343,12 @@ "#sec-createmappedargumentsobject": [ "/ordinary-and-exotic-objects-behaviours#sec-createmappedargumentsobject" ], - "#sec-createmethodproperty": [ - "/abstract-operations#sec-createmethodproperty" - ], "#sec-createnonenumerabledatapropertyorthrow": [ "/abstract-operations#sec-createnonenumerabledatapropertyorthrow" ], "#sec-createperiterationenvironment": [ "/ecmascript-language-statements-and-declarations#sec-createperiterationenvironment" ], - "#sec-createrealm": [ - "/executable-code-and-execution-contexts#sec-createrealm" - ], "#sec-createregexpstringiterator": [ "/text-processing#sec-createregexpstringiterator" ], @@ -1313,11 +1385,14 @@ "#sec-dataview-objects": [ "/structured-data#sec-dataview-objects" ], + "#sec-dataview-with-buffer-witness-records": [ + "/structured-data#sec-dataview-with-buffer-witness-records" + ], "#sec-dataview.prototype": [ "/structured-data#sec-dataview.prototype" ], - "#sec-dataview.prototype-@@tostringtag": [ - "/structured-data#sec-dataview.prototype-@@tostringtag" + "#sec-dataview.prototype-%25symbol.tostringtag%25": [ + "/structured-data#sec-dataview.prototype-%25symbol.tostringtag%25" ], "#sec-dataview.prototype.constructor": [ "/structured-data#sec-dataview.prototype.constructor" @@ -1388,9 +1463,6 @@ "#sec-date-constructor": [ "/numbers-and-dates#sec-date-constructor" ], - "#sec-date-number": [ - "/numbers-and-dates#sec-date-number" - ], "#sec-date-objects": [ "/numbers-and-dates#sec-date-objects" ], @@ -1406,8 +1478,8 @@ "#sec-date.prototype": [ "/numbers-and-dates#sec-date.prototype" ], - "#sec-date.prototype-@@toprimitive": [ - "/numbers-and-dates#sec-date.prototype-@@toprimitive" + "#sec-date.prototype-%25symbol.toprimitive%25": [ + "/numbers-and-dates#sec-date.prototype-%25symbol.toprimitive%25" ], "#sec-date.prototype.constructor": [ "/numbers-and-dates#sec-date.prototype.constructor" @@ -1544,11 +1616,23 @@ "#sec-date.utc": [ "/numbers-and-dates#sec-date.utc" ], + "#sec-datefromtime": [ + "/numbers-and-dates#sec-datefromtime" + ], "#sec-datestring": [ "/numbers-and-dates#sec-datestring" ], - "#sec-day-number-and-time-within-day": [ - "/numbers-and-dates#sec-day-number-and-time-within-day" + "#sec-day": [ + "/numbers-and-dates#sec-day" + ], + "#sec-dayfromyear": [ + "/numbers-and-dates#sec-dayfromyear" + ], + "#sec-daysinyear": [ + "/numbers-and-dates#sec-daysinyear" + ], + "#sec-daywithinyear": [ + "/numbers-and-dates#sec-daywithinyear" ], "#sec-debugger-statement": [ "/ecmascript-language-statements-and-declarations#sec-debugger-statement" @@ -1601,9 +1685,6 @@ "#sec-decodeuricomponent-encodeduricomponent": [ "/global-object#sec-decodeuricomponent-encodeduricomponent" ], - "#sec-defaulttimezone": [ - "/numbers-and-dates#sec-defaulttimezone" - ], "#sec-definefield": [ "/abstract-operations#sec-definefield" ], @@ -1655,6 +1736,9 @@ "#sec-do-while-statement-static-semantics-early-errors": [ "/ecmascript-language-statements-and-declarations#sec-do-while-statement-static-semantics-early-errors" ], + "#sec-dowait": [ + "/structured-data#sec-dowait" + ], "#sec-ecmascript-data-types-and-values": [ "/ecmascript-data-types-and-values#sec-ecmascript-data-types-and-values" ], @@ -1730,6 +1814,9 @@ "#sec-empty-statement-runtime-semantics-evaluation": [ "/ecmascript-language-statements-and-declarations#sec-empty-statement-runtime-semantics-evaluation" ], + "#sec-emptymatcher": [ + "/text-processing#sec-emptymatcher" + ], "#sec-encode": [ "/global-object#sec-encode" ], @@ -1739,6 +1826,12 @@ "#sec-encodeuricomponent-uricomponent": [ "/global-object#sec-encodeuricomponent-uricomponent" ], + "#sec-enqueueatomicswaitasynctimeoutjob": [ + "/structured-data#sec-enqueueatomicswaitasynctimeoutjob" + ], + "#sec-enqueueresolveinagentjob": [ + "/structured-data#sec-enqueueresolveinagentjob" + ], "#sec-entercriticalsection": [ "/structured-data#sec-entercriticalsection" ], @@ -1874,8 +1967,8 @@ "#sec-finalization-registry.prototype": [ "/managing-memory#sec-finalization-registry.prototype" ], - "#sec-finalization-registry.prototype-@@tostringtag": [ - "/managing-memory#sec-finalization-registry.prototype-@@tostringtag" + "#sec-finalization-registry.prototype-%25symbol.tostringtag%25": [ + "/managing-memory#sec-finalization-registry.prototype-%25symbol.tostringtag%25" ], "#sec-finalization-registry.prototype.constructor": [ "/managing-memory#sec-finalization-registry.prototype.constructor" @@ -1889,6 +1982,12 @@ "#sec-findviapredicate": [ "/indexed-collections#sec-findviapredicate" ], + "#sec-fixed-length-and-growable-sharedarraybuffer-objects": [ + "/structured-data#sec-fixed-length-and-growable-sharedarraybuffer-objects" + ], + "#sec-fixed-length-and-resizable-arraybuffer-objects": [ + "/structured-data#sec-fixed-length-and-resizable-arraybuffer-objects" + ], "#sec-flattenintoarray": [ "/indexed-collections#sec-flattenintoarray" ], @@ -1988,14 +2087,11 @@ "#sec-function-properties-of-the-math-object": [ "/numbers-and-dates#sec-function-properties-of-the-math-object" ], - "#sec-function.length": [ - "/fundamental-objects#sec-function.length" - ], "#sec-function.prototype": [ "/fundamental-objects#sec-function.prototype" ], - "#sec-function.prototype-@@hasinstance": [ - "/fundamental-objects#sec-function.prototype-@@hasinstance" + "#sec-function.prototype-%25symbol.hasinstance%25": [ + "/fundamental-objects#sec-function.prototype-%25symbol.hasinstance%25" ], "#sec-function.prototype.apply": [ "/fundamental-objects#sec-function.prototype.apply" @@ -2036,8 +2132,8 @@ "#sec-generator-objects": [ "/control-abstraction-objects#sec-generator-objects" ], - "#sec-generator.prototype-@@tostringtag": [ - "/control-abstraction-objects#sec-generator.prototype-@@tostringtag" + "#sec-generator.prototype-%25symbol.tostringtag%25": [ + "/control-abstraction-objects#sec-generator.prototype-%25symbol.tostringtag%25" ], "#sec-generator.prototype.constructor": [ "/control-abstraction-objects#sec-generator.prototype.constructor" @@ -2072,14 +2168,11 @@ "#sec-generatorfunction-objects": [ "/control-abstraction-objects#sec-generatorfunction-objects" ], - "#sec-generatorfunction.length": [ - "/control-abstraction-objects#sec-generatorfunction.length" - ], "#sec-generatorfunction.prototype": [ "/control-abstraction-objects#sec-generatorfunction.prototype" ], - "#sec-generatorfunction.prototype-@@tostringtag": [ - "/control-abstraction-objects#sec-generatorfunction.prototype-@@tostringtag" + "#sec-generatorfunction.prototype-%25symbol.tostringtag%25": [ + "/control-abstraction-objects#sec-generatorfunction.prototype-%25symbol.tostringtag%25" ], "#sec-generatorfunction.prototype.constructor": [ "/control-abstraction-objects#sec-generatorfunction.prototype.constructor" @@ -2102,33 +2195,42 @@ "#sec-generatoryield": [ "/control-abstraction-objects#sec-generatoryield" ], - "#sec-get-%typedarray%-@@species": [ - "/indexed-collections#sec-get-%typedarray%-@@species" + "#sec-get-%25typedarray%25-%25symbol.species%25": [ + "/indexed-collections#sec-get-%25typedarray%25-%25symbol.species%25" ], - "#sec-get-%typedarray%.prototype-@@tostringtag": [ - "/indexed-collections#sec-get-%typedarray%.prototype-@@tostringtag" + "#sec-get-%25typedarray%25.prototype-%25symbol.tostringtag%25": [ + "/indexed-collections#sec-get-%25typedarray%25.prototype-%25symbol.tostringtag%25" ], - "#sec-get-%typedarray%.prototype.buffer": [ - "/indexed-collections#sec-get-%typedarray%.prototype.buffer" + "#sec-get-%25typedarray%25.prototype.buffer": [ + "/indexed-collections#sec-get-%25typedarray%25.prototype.buffer" ], - "#sec-get-%typedarray%.prototype.bytelength": [ - "/indexed-collections#sec-get-%typedarray%.prototype.bytelength" + "#sec-get-%25typedarray%25.prototype.bytelength": [ + "/indexed-collections#sec-get-%25typedarray%25.prototype.bytelength" ], - "#sec-get-%typedarray%.prototype.byteoffset": [ - "/indexed-collections#sec-get-%typedarray%.prototype.byteoffset" + "#sec-get-%25typedarray%25.prototype.byteoffset": [ + "/indexed-collections#sec-get-%25typedarray%25.prototype.byteoffset" ], - "#sec-get-%typedarray%.prototype.length": [ - "/indexed-collections#sec-get-%typedarray%.prototype.length" + "#sec-get-%25typedarray%25.prototype.length": [ + "/indexed-collections#sec-get-%25typedarray%25.prototype.length" ], - "#sec-get-array-@@species": [ - "/indexed-collections#sec-get-array-@@species" + "#sec-get-array-%25symbol.species%25": [ + "/indexed-collections#sec-get-array-%25symbol.species%25" ], - "#sec-get-arraybuffer-@@species": [ - "/structured-data#sec-get-arraybuffer-@@species" + "#sec-get-arraybuffer-%25symbol.species%25": [ + "/structured-data#sec-get-arraybuffer-%25symbol.species%25" ], "#sec-get-arraybuffer.prototype.bytelength": [ "/structured-data#sec-get-arraybuffer.prototype.bytelength" ], + "#sec-get-arraybuffer.prototype.detached": [ + "/structured-data#sec-get-arraybuffer.prototype.detached" + ], + "#sec-get-arraybuffer.prototype.maxbytelength": [ + "/structured-data#sec-get-arraybuffer.prototype.maxbytelength" + ], + "#sec-get-arraybuffer.prototype.resizable": [ + "/structured-data#sec-get-arraybuffer.prototype.resizable" + ], "#sec-get-dataview.prototype.buffer": [ "/structured-data#sec-get-dataview.prototype.buffer" ], @@ -2138,8 +2240,8 @@ "#sec-get-dataview.prototype.byteoffset": [ "/structured-data#sec-get-dataview.prototype.byteoffset" ], - "#sec-get-map-@@species": [ - "/keyed-collections#sec-get-map-@@species" + "#sec-get-map-%25symbol.species%25": [ + "/keyed-collections#sec-get-map-%25symbol.species%25" ], "#sec-get-map.prototype.size": [ "/keyed-collections#sec-get-map.prototype.size" @@ -2150,11 +2252,11 @@ "#sec-get-object.prototype.__proto__": [ "/fundamental-objects#sec-get-object.prototype.__proto__" ], - "#sec-get-promise-@@species": [ - "/control-abstraction-objects#sec-get-promise-@@species" + "#sec-get-promise-%25symbol.species%25": [ + "/control-abstraction-objects#sec-get-promise-%25symbol.species%25" ], - "#sec-get-regexp-@@species": [ - "/text-processing#sec-get-regexp-@@species" + "#sec-get-regexp-%25symbol.species%25": [ + "/text-processing#sec-get-regexp-%25symbol.species%25" ], "#sec-get-regexp.prototype.dotAll": [ "/text-processing#sec-get-regexp.prototype.dotAll" @@ -2183,8 +2285,11 @@ "#sec-get-regexp.prototype.unicode": [ "/text-processing#sec-get-regexp.prototype.unicode" ], - "#sec-get-set-@@species": [ - "/keyed-collections#sec-get-set-@@species" + "#sec-get-regexp.prototype.unicodesets": [ + "/text-processing#sec-get-regexp.prototype.unicodesets" + ], + "#sec-get-set-%25symbol.species%25": [ + "/keyed-collections#sec-get-set-%25symbol.species%25" ], "#sec-get-set.prototype.size": [ "/keyed-collections#sec-get-set.prototype.size" @@ -2192,9 +2297,18 @@ "#sec-get-sharedarraybuffer.prototype.bytelength": [ "/structured-data#sec-get-sharedarraybuffer.prototype.bytelength" ], + "#sec-get-sharedarraybuffer.prototype.growable": [ + "/structured-data#sec-get-sharedarraybuffer.prototype.growable" + ], + "#sec-get-sharedarraybuffer.prototype.maxbytelength": [ + "/structured-data#sec-get-sharedarraybuffer.prototype.maxbytelength" + ], "#sec-getactivescriptormodule": [ "/executable-code-and-execution-contexts#sec-getactivescriptormodule" ], + "#sec-getarraybuffermaxbytelengthoption": [ + "/structured-data#sec-getarraybuffermaxbytelengthoption" + ], "#sec-getexportednames": [ "/ecmascript-language-scripts-and-modules#sec-getexportednames" ], @@ -2213,6 +2327,9 @@ "#sec-getiterator": [ "/abstract-operations#sec-getiterator" ], + "#sec-getiteratorfrommethod": [ + "/abstract-operations#sec-getiteratorfrommethod" + ], "#sec-getmatchindexpair": [ "/text-processing#sec-getmatchindexpair" ], @@ -2246,6 +2363,12 @@ "#sec-getprototypefromconstructor": [ "/ordinary-and-exotic-objects-behaviours#sec-getprototypefromconstructor" ], + "#sec-getrawbytesfromsharedblock": [ + "/structured-data#sec-getrawbytesfromsharedblock" + ], + "#sec-getsetrecord": [ + "/keyed-collections#sec-getsetrecord" + ], "#sec-getstringindex": [ "/text-processing#sec-getstringindex" ], @@ -2279,6 +2402,9 @@ "#sec-getvaluefrombuffer": [ "/structured-data#sec-getvaluefrombuffer" ], + "#sec-getviewbytelength": [ + "/structured-data#sec-getviewbytelength" + ], "#sec-getviewvalue": [ "/structured-data#sec-getviewvalue" ], @@ -2336,6 +2462,9 @@ "#sec-grammatical-parameters": [ "/notational-conventions#sec-grammatical-parameters" ], + "#sec-groupby": [ + "/abstract-operations#sec-groupby" + ], "#sec-grouping-operator": [ "/ecmascript-language-expressions#sec-grouping-operator" ], @@ -2348,6 +2477,9 @@ "#sec-groupspecifiersthatmatch": [ "/text-processing#sec-groupspecifiersthatmatch" ], + "#sec-growable-sharedarraybuffer-guidelines": [ + "/structured-data#sec-growable-sharedarraybuffer-guidelines" + ], "#sec-happens-before": [ "/memory-model#sec-happens-before" ], @@ -2381,9 +2513,15 @@ "#sec-hostcalljobcallback": [ "/executable-code-and-execution-contexts#sec-hostcalljobcallback" ], + "#sec-hostenqueuegenericjob": [ + "/executable-code-and-execution-contexts#sec-hostenqueuegenericjob" + ], "#sec-hostenqueuepromisejob": [ "/executable-code-and-execution-contexts#sec-hostenqueuepromisejob" ], + "#sec-hostenqueuetimeoutjob": [ + "/executable-code-and-execution-contexts#sec-hostenqueuetimeoutjob" + ], "#sec-hostensurecanaddprivateelement": [ "/abstract-operations#sec-hostensurecanaddprivateelement" ], @@ -2399,17 +2537,23 @@ "#sec-hostgetimportmetaproperties": [ "/ecmascript-language-expressions#sec-hostgetimportmetaproperties" ], + "#sec-hostgrowsharedarraybuffer": [ + "/structured-data#sec-hostgrowsharedarraybuffer" + ], "#sec-hosthassourcetextavailable": [ "/fundamental-objects#sec-hosthassourcetextavailable" ], "#sec-hostmakejobcallback": [ "/executable-code-and-execution-contexts#sec-hostmakejobcallback" ], + "#sec-hostresizearraybuffer": [ + "/structured-data#sec-hostresizearraybuffer" + ], "#sec-hosts-and-implementations": [ "/overview#sec-hosts-and-implementations" ], - "#sec-hours-minutes-second-and-milliseconds": [ - "/numbers-and-dates#sec-hours-minutes-second-and-milliseconds" + "#sec-hourfromtime": [ + "/numbers-and-dates#sec-hourfromtime" ], "#sec-identifier-names": [ "/ecmascript-language-lexical-grammar#sec-identifier-names" @@ -2507,6 +2651,9 @@ "#sec-initializetypedarrayfromtypedarray": [ "/indexed-collections#sec-initializetypedarrayfromtypedarray" ], + "#sec-inleapyear": [ + "/numbers-and-dates#sec-inleapyear" + ], "#sec-innermoduleevaluation": [ "/ecmascript-language-scripts-and-modules#sec-innermoduleevaluation" ], @@ -2525,39 +2672,6 @@ "#sec-int8array": [ "/global-object#sec-int8array" ], - "#sec-integer-indexed-exotic-objects": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects" - ], - "#sec-integer-indexed-exotic-objects-defineownproperty-p-desc": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-defineownproperty-p-desc" - ], - "#sec-integer-indexed-exotic-objects-delete-p": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-delete-p" - ], - "#sec-integer-indexed-exotic-objects-get-p-receiver": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-get-p-receiver" - ], - "#sec-integer-indexed-exotic-objects-getownproperty-p": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-getownproperty-p" - ], - "#sec-integer-indexed-exotic-objects-hasproperty-p": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-hasproperty-p" - ], - "#sec-integer-indexed-exotic-objects-ownpropertykeys": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-ownpropertykeys" - ], - "#sec-integer-indexed-exotic-objects-set-p-v-receiver": [ - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-set-p-v-receiver" - ], - "#sec-integerindexedelementget": [ - "/ordinary-and-exotic-objects-behaviours#sec-integerindexedelementget" - ], - "#sec-integerindexedelementset": [ - "/ordinary-and-exotic-objects-behaviours#sec-integerindexedelementset" - ], - "#sec-integerindexedobjectcreate": [ - "/ordinary-and-exotic-objects-behaviours#sec-integerindexedobjectcreate" - ], "#sec-interesting-cases-of-automatic-semicolon-insertion": [ "/ecmascript-language-lexical-grammar#sec-interesting-cases-of-automatic-semicolon-insertion" ], @@ -2579,6 +2693,9 @@ "#sec-isarray": [ "/abstract-operations#sec-isarray" ], + "#sec-isarraybufferviewoutofbounds": [ + "/ordinary-and-exotic-objects-behaviours#sec-isarraybufferviewoutofbounds" + ], "#sec-isbigintelementtype": [ "/structured-data#sec-isbigintelementtype" ], @@ -2606,15 +2723,15 @@ "#sec-isfinite-number": [ "/global-object#sec-isfinite-number" ], + "#sec-isfixedlengtharraybuffer": [ + "/structured-data#sec-isfixedlengtharraybuffer" + ], "#sec-isgenericdescriptor": [ "/ecmascript-data-types-and-values#sec-isgenericdescriptor" ], "#sec-isintailposition": [ "/ecmascript-language-functions-and-classes#sec-isintailposition" ], - "#sec-isintegralnumber": [ - "/abstract-operations#sec-isintegralnumber" - ], "#sec-islabelledfunction": [ "/ecmascript-language-statements-and-declarations#sec-islabelledfunction" ], @@ -2636,9 +2753,6 @@ "#sec-ispromise": [ "/control-abstraction-objects#sec-ispromise" ], - "#sec-ispropertykey": [ - "/abstract-operations#sec-ispropertykey" - ], "#sec-ispropertyreference": [ "/ecmascript-data-types-and-values#sec-ispropertyreference" ], @@ -2648,6 +2762,9 @@ "#sec-issharedarraybuffer": [ "/structured-data#sec-issharedarraybuffer" ], + "#sec-isstrict": [ + "/ecmascript-language-source-code#sec-isstrict" + ], "#sec-isstrictlyequal": [ "/abstract-operations#sec-isstrictlyequal" ], @@ -2660,6 +2777,9 @@ "#sec-istimezoneoffsetstring": [ "/numbers-and-dates#sec-istimezoneoffsetstring" ], + "#sec-istypedarrayoutofbounds": [ + "/ordinary-and-exotic-objects-behaviours#sec-istypedarrayoutofbounds" + ], "#sec-isunclampedintegerelementtype": [ "/structured-data#sec-isunclampedintegerelementtype" ], @@ -2675,12 +2795,12 @@ "#sec-isvalidregularexpressionliteral": [ "/ecmascript-language-expressions#sec-isvalidregularexpressionliteral" ], + "#sec-isviewoutofbounds": [ + "/structured-data#sec-isviewoutofbounds" + ], "#sec-iterable-interface": [ "/control-abstraction-objects#sec-iterable-interface" ], - "#sec-iterabletolist": [ - "/abstract-operations#sec-iterabletolist" - ], "#sec-iteration": [ "/control-abstraction-objects#sec-iteration" ], @@ -2711,6 +2831,12 @@ "#sec-iteratorstep": [ "/abstract-operations#sec-iteratorstep" ], + "#sec-iteratorstepvalue": [ + "/abstract-operations#sec-iteratorstepvalue" + ], + "#sec-iteratortolist": [ + "/abstract-operations#sec-iteratortolist" + ], "#sec-iteratorvalue": [ "/abstract-operations#sec-iteratorvalue" ], @@ -2723,8 +2849,8 @@ "#sec-json": [ "/global-object#sec-json" ], - "#sec-json-@@tostringtag": [ - "/structured-data#sec-json-@@tostringtag" + "#sec-json-%25symbol.tostringtag%25": [ + "/structured-data#sec-json-%25symbol.tostringtag%25" ], "#sec-json-object": [ "/structured-data#sec-json-object" @@ -2741,6 +2867,9 @@ "#sec-keyed-collections": [ "/keyed-collections#sec-keyed-collections" ], + "#sec-keyforsymbol": [ + "/fundamental-objects#sec-keyforsymbol" + ], "#sec-keywords-and-reserved-words": [ "/ecmascript-language-lexical-grammar#sec-keywords-and-reserved-words" ], @@ -2840,12 +2969,18 @@ "#sec-makeconstructor": [ "/ordinary-and-exotic-objects-behaviours#sec-makeconstructor" ], + "#sec-makedataviewwithbufferwitnessrecord": [ + "/structured-data#sec-makedataviewwithbufferwitnessrecord" + ], "#sec-makedate": [ "/numbers-and-dates#sec-makedate" ], "#sec-makeday": [ "/numbers-and-dates#sec-makeday" ], + "#sec-makefullyear": [ + "/numbers-and-dates#sec-makefullyear" + ], "#sec-makematchindicesindexpairarray": [ "/text-processing#sec-makematchindicesindexpairarray" ], @@ -2861,6 +2996,9 @@ "#sec-maketime": [ "/numbers-and-dates#sec-maketime" ], + "#sec-maketypedarraywithbufferwitnessrecord": [ + "/ordinary-and-exotic-objects-behaviours#sec-maketypedarraywithbufferwitnessrecord" + ], "#sec-managing-memory": [ "/managing-memory#sec-managing-memory" ], @@ -2879,14 +3017,17 @@ "#sec-map-objects": [ "/keyed-collections#sec-map-objects" ], + "#sec-map.groupby": [ + "/keyed-collections#sec-map.groupby" + ], "#sec-map.prototype": [ "/keyed-collections#sec-map.prototype" ], - "#sec-map.prototype-@@iterator": [ - "/keyed-collections#sec-map.prototype-@@iterator" + "#sec-map.prototype-%25symbol.iterator%25": [ + "/keyed-collections#sec-map.prototype-%25symbol.iterator%25" ], - "#sec-map.prototype-@@tostringtag": [ - "/keyed-collections#sec-map.prototype-@@tostringtag" + "#sec-map.prototype-%25symbol.tostringtag%25": [ + "/keyed-collections#sec-map.prototype-%25symbol.tostringtag%25" ], "#sec-map.prototype.clear": [ "/keyed-collections#sec-map.prototype.clear" @@ -2921,11 +3062,17 @@ "#sec-match-records": [ "/text-processing#sec-match-records" ], + "#sec-matchsequence": [ + "/text-processing#sec-matchsequence" + ], + "#sec-matchtwoalternatives": [ + "/text-processing#sec-matchtwoalternatives" + ], "#sec-math": [ "/global-object#sec-math" ], - "#sec-math-@@tostringtag": [ - "/numbers-and-dates#sec-math-@@tostringtag" + "#sec-math-%25symbol.tostringtag%25": [ + "/numbers-and-dates#sec-math-%25symbol.tostringtag%25" ], "#sec-math-object": [ "/numbers-and-dates#sec-math-object" @@ -3062,6 +3209,9 @@ "#sec-mathematical-operations": [ "/notational-conventions#sec-mathematical-operations" ], + "#sec-maybesimplecasefolding": [ + "/text-processing#sec-maybesimplecasefolding" + ], "#sec-memory-model": [ "/memory-model#sec-memory-model" ], @@ -3086,6 +3236,9 @@ "#sec-method-definitions-static-semantics-early-errors": [ "/ecmascript-language-functions-and-classes#sec-method-definitions-static-semantics-early-errors" ], + "#sec-minfromtime": [ + "/numbers-and-dates#sec-minfromtime" + ], "#sec-module-environment-records": [ "/executable-code-and-execution-contexts#sec-module-environment-records" ], @@ -3161,8 +3314,11 @@ "#sec-modules": [ "/ecmascript-language-scripts-and-modules#sec-modules" ], - "#sec-month-number": [ - "/numbers-and-dates#sec-month-number" + "#sec-monthfromtime": [ + "/numbers-and-dates#sec-monthfromtime" + ], + "#sec-msfromtime": [ + "/numbers-and-dates#sec-msfromtime" ], "#sec-multiplicative-operators": [ "/ecmascript-language-expressions#sec-multiplicative-operators" @@ -3581,6 +3737,9 @@ "#sec-object.getprototypeof": [ "/fundamental-objects#sec-object.getprototypeof" ], + "#sec-object.groupby": [ + "/fundamental-objects#sec-object.groupby" + ], "#sec-object.hasown": [ "/fundamental-objects#sec-object.hasown" ], @@ -3806,6 +3965,9 @@ "#sec-parsefloat-string": [ "/global-object#sec-parsefloat-string" ], + "#sec-parsehexoctet": [ + "/global-object#sec-parsehexoctet" + ], "#sec-parseint-string-radix": [ "/global-object#sec-parseint-string-radix" ], @@ -3980,8 +4142,8 @@ "#sec-promise.prototype": [ "/control-abstraction-objects#sec-promise.prototype" ], - "#sec-promise.prototype-@@tostringtag": [ - "/control-abstraction-objects#sec-promise.prototype-@@tostringtag" + "#sec-promise.prototype-%25symbol.tostringtag%25": [ + "/control-abstraction-objects#sec-promise.prototype-%25symbol.tostringtag%25" ], "#sec-promise.prototype.catch": [ "/control-abstraction-objects#sec-promise.prototype.catch" @@ -4004,6 +4166,9 @@ "#sec-promise.resolve": [ "/control-abstraction-objects#sec-promise.resolve" ], + "#sec-promise.withResolvers": [ + "/control-abstraction-objects#sec-promise.withResolvers" + ], "#sec-promisecapability-records": [ "/control-abstraction-objects#sec-promisecapability-records" ], @@ -4034,6 +4199,9 @@ "#sec-properties-of-asyncgeneratorfunction-prototype": [ "/control-abstraction-objects#sec-properties-of-asyncgeneratorfunction-prototype" ], + "#sec-properties-of-bigint-instances": [ + "/numbers-and-dates#sec-properties-of-bigint-instances" + ], "#sec-properties-of-boolean-instances": [ "/fundamental-objects#sec-properties-of-boolean-instances" ], @@ -4088,11 +4256,11 @@ "#sec-properties-of-symbol-instances": [ "/fundamental-objects#sec-properties-of-symbol-instances" ], - "#sec-properties-of-the-%typedarray%-intrinsic-object": [ - "/indexed-collections#sec-properties-of-the-%typedarray%-intrinsic-object" + "#sec-properties-of-the-%25typedarray%25-intrinsic-object": [ + "/indexed-collections#sec-properties-of-the-%25typedarray%25-intrinsic-object" ], - "#sec-properties-of-the-%typedarrayprototype%-object": [ - "/indexed-collections#sec-properties-of-the-%typedarrayprototype%-object" + "#sec-properties-of-the-%25typedarrayprototype%25-object": [ + "/indexed-collections#sec-properties-of-the-%25typedarrayprototype%25-object" ], "#sec-properties-of-the-aggregate-error-constructors": [ "/fundamental-objects#sec-properties-of-the-aggregate-error-constructors" @@ -4367,8 +4535,8 @@ "#sec-reflect": [ "/global-object#sec-reflect" ], - "#sec-reflect-@@tostringtag": [ - "/reflection#sec-reflect-@@tostringtag" + "#sec-reflect-%25symbol.tostringtag%25": [ + "/reflection#sec-reflect-%25symbol.tostringtag%25" ], "#sec-reflect-object": [ "/reflection#sec-reflect-object" @@ -4421,8 +4589,8 @@ "#sec-regexp-pattern-flags": [ "/text-processing#sec-regexp-pattern-flags" ], - "#sec-regexp-prototype-matchall": [ - "/text-processing#sec-regexp-prototype-matchall" + "#sec-regexp-prototype-%25symbol.matchall%25": [ + "/text-processing#sec-regexp-prototype-%25symbol.matchall%25" ], "#sec-regexp-records": [ "/text-processing#sec-regexp-records" @@ -4436,17 +4604,17 @@ "#sec-regexp.prototype": [ "/text-processing#sec-regexp.prototype" ], - "#sec-regexp.prototype-@@match": [ - "/text-processing#sec-regexp.prototype-@@match" + "#sec-regexp.prototype-%25symbol.match%25": [ + "/text-processing#sec-regexp.prototype-%25symbol.match%25" ], - "#sec-regexp.prototype-@@replace": [ - "/text-processing#sec-regexp.prototype-@@replace" + "#sec-regexp.prototype-%25symbol.replace%25": [ + "/text-processing#sec-regexp.prototype-%25symbol.replace%25" ], - "#sec-regexp.prototype-@@search": [ - "/text-processing#sec-regexp.prototype-@@search" + "#sec-regexp.prototype-%25symbol.search%25": [ + "/text-processing#sec-regexp.prototype-%25symbol.search%25" ], - "#sec-regexp.prototype-@@split": [ - "/text-processing#sec-regexp.prototype-@@split" + "#sec-regexp.prototype-%25symbol.split%25": [ + "/text-processing#sec-regexp.prototype-%25symbol.split%25" ], "#sec-regexp.prototype.constructor": [ "/text-processing#sec-regexp.prototype.constructor" @@ -4511,6 +4679,9 @@ "#sec-requireobjectcoercible": [ "/abstract-operations#sec-requireobjectcoercible" ], + "#sec-resizable-arraybuffer-guidelines": [ + "/structured-data#sec-resizable-arraybuffer-guidelines" + ], "#sec-resolve-private-identifier": [ "/executable-code-and-execution-contexts#sec-resolve-private-identifier" ], @@ -4535,6 +4706,9 @@ "#sec-returnifabrupt-shorthands": [ "/notational-conventions#sec-returnifabrupt-shorthands" ], + "#sec-revalidateatomicaccess": [ + "/structured-data#sec-revalidateatomicaccess" + ], "#sec-roundmvresult": [ "/abstract-operations#sec-roundmvresult" ], @@ -4634,6 +4808,9 @@ "#sec-runtime-semantics-forloopevaluation": [ "/ecmascript-language-statements-and-declarations#sec-runtime-semantics-forloopevaluation" ], + "#sec-runtime-semantics-haseitherunicodeflag-abstract-operation": [ + "/text-processing#sec-runtime-semantics-haseitherunicodeflag-abstract-operation" + ], "#sec-runtime-semantics-instantiatearrowfunctionexpression": [ "/ecmascript-language-functions-and-classes#sec-runtime-semantics-instantiatearrowfunctionexpression" ], @@ -4745,12 +4922,18 @@ "#sec-script-semantics-runtime-semantics-evaluation": [ "/ecmascript-language-scripts-and-modules#sec-script-semantics-runtime-semantics-evaluation" ], + "#sec-scriptisstrict": [ + "/ecmascript-language-scripts-and-modules#sec-scriptisstrict" + ], "#sec-scripts": [ "/ecmascript-language-scripts-and-modules#sec-scripts" ], "#sec-scripts-static-semantics-early-errors": [ "/ecmascript-language-scripts-and-modules#sec-scripts-static-semantics-early-errors" ], + "#sec-secfromtime": [ + "/numbers-and-dates#sec-secfromtime" + ], "#sec-serializejsonarray": [ "/structured-data#sec-serializejsonarray" ], @@ -4787,14 +4970,17 @@ "#sec-set-objects": [ "/keyed-collections#sec-set-objects" ], + "#sec-set-records": [ + "/keyed-collections#sec-set-records" + ], "#sec-set.prototype": [ "/keyed-collections#sec-set.prototype" ], - "#sec-set.prototype-@@iterator": [ - "/keyed-collections#sec-set.prototype-@@iterator" + "#sec-set.prototype-%25symbol.iterator%25": [ + "/keyed-collections#sec-set.prototype-%25symbol.iterator%25" ], - "#sec-set.prototype-@@tostringtag": [ - "/keyed-collections#sec-set.prototype-@@tostringtag" + "#sec-set.prototype-%25symbol.tostringtag%25": [ + "/keyed-collections#sec-set.prototype-%25symbol.tostringtag%25" ], "#sec-set.prototype.add": [ "/keyed-collections#sec-set.prototype.add" @@ -4808,6 +4994,9 @@ "#sec-set.prototype.delete": [ "/keyed-collections#sec-set.prototype.delete" ], + "#sec-set.prototype.difference": [ + "/keyed-collections#sec-set.prototype.difference" + ], "#sec-set.prototype.entries": [ "/keyed-collections#sec-set.prototype.entries" ], @@ -4817,12 +5006,39 @@ "#sec-set.prototype.has": [ "/keyed-collections#sec-set.prototype.has" ], + "#sec-set.prototype.intersection": [ + "/keyed-collections#sec-set.prototype.intersection" + ], + "#sec-set.prototype.isdisjointfrom": [ + "/keyed-collections#sec-set.prototype.isdisjointfrom" + ], + "#sec-set.prototype.issubsetof": [ + "/keyed-collections#sec-set.prototype.issubsetof" + ], + "#sec-set.prototype.issupersetof": [ + "/keyed-collections#sec-set.prototype.issupersetof" + ], "#sec-set.prototype.keys": [ "/keyed-collections#sec-set.prototype.keys" ], + "#sec-set.prototype.symmetricdifference": [ + "/keyed-collections#sec-set.prototype.symmetricdifference" + ], + "#sec-set.prototype.union": [ + "/keyed-collections#sec-set.prototype.union" + ], "#sec-set.prototype.values": [ "/keyed-collections#sec-set.prototype.values" ], + "#sec-setdatahas": [ + "/keyed-collections#sec-setdatahas" + ], + "#sec-setdataindex": [ + "/keyed-collections#sec-setdataindex" + ], + "#sec-setdatasize": [ + "/keyed-collections#sec-setdatasize" + ], "#sec-setdefaultglobalbindings": [ "/executable-code-and-execution-contexts#sec-setdefaultglobalbindings" ], @@ -4835,9 +5051,6 @@ "#sec-setintegritylevel": [ "/abstract-operations#sec-setintegritylevel" ], - "#sec-setrealmglobalobject": [ - "/executable-code-and-execution-contexts#sec-setrealmglobalobject" - ], "#sec-settypedarrayfromarraylike": [ "/indexed-collections#sec-settypedarrayfromarraylike" ], @@ -4853,8 +5066,8 @@ "#sec-shared-memory-guidelines": [ "/memory-model#sec-shared-memory-guidelines" ], - "#sec-sharedarraybuffer-@@species": [ - "/structured-data#sec-sharedarraybuffer-@@species" + "#sec-sharedarraybuffer-%25symbol.species%25": [ + "/structured-data#sec-sharedarraybuffer-%25symbol.species%25" ], "#sec-sharedarraybuffer-constructor": [ "/structured-data#sec-sharedarraybuffer-constructor" @@ -4868,15 +5081,18 @@ "#sec-sharedarraybuffer.prototype": [ "/structured-data#sec-sharedarraybuffer.prototype" ], + "#sec-sharedarraybuffer.prototype-%25symbol.tostringtag%25": [ + "/structured-data#sec-sharedarraybuffer.prototype-%25symbol.tostringtag%25" + ], "#sec-sharedarraybuffer.prototype.constructor": [ "/structured-data#sec-sharedarraybuffer.prototype.constructor" ], + "#sec-sharedarraybuffer.prototype.grow": [ + "/structured-data#sec-sharedarraybuffer.prototype.grow" + ], "#sec-sharedarraybuffer.prototype.slice": [ "/structured-data#sec-sharedarraybuffer.prototype.slice" ], - "#sec-sharedarraybuffer.prototype.toString": [ - "/structured-data#sec-sharedarraybuffer.prototype.toString" - ], "#sec-sharedatablockeventset": [ "/memory-model#sec-sharedatablockeventset" ], @@ -5033,15 +5249,15 @@ "#sec-static-semantics-isstatic": [ "/ecmascript-language-functions-and-classes#sec-static-semantics-isstatic" ], - "#sec-static-semantics-isstrict": [ - "/ecmascript-language-scripts-and-modules#sec-static-semantics-isstrict" - ], "#sec-static-semantics-lexicallydeclarednames": [ "/syntax-directed-operations#sec-static-semantics-lexicallydeclarednames" ], "#sec-static-semantics-lexicallyscopeddeclarations": [ "/syntax-directed-operations#sec-static-semantics-lexicallyscopeddeclarations" ], + "#sec-static-semantics-maycontainstrings": [ + "/text-processing#sec-static-semantics-maycontainstrings" + ], "#sec-static-semantics-modulerequests": [ "/ecmascript-language-scripts-and-modules#sec-static-semantics-modulerequests" ], @@ -5153,8 +5369,8 @@ "#sec-string.prototype": [ "/text-processing#sec-string.prototype" ], - "#sec-string.prototype-@@iterator": [ - "/text-processing#sec-string.prototype-@@iterator" + "#sec-string.prototype-%25symbol.iterator%25": [ + "/text-processing#sec-string.prototype-%25symbol.iterator%25" ], "#sec-string.prototype.at": [ "/text-processing#sec-string.prototype.at" @@ -5183,6 +5399,9 @@ "#sec-string.prototype.indexof": [ "/text-processing#sec-string.prototype.indexof" ], + "#sec-string.prototype.iswellformed": [ + "/text-processing#sec-string.prototype.iswellformed" + ], "#sec-string.prototype.lastindexof": [ "/text-processing#sec-string.prototype.lastindexof" ], @@ -5243,6 +5462,9 @@ "#sec-string.prototype.touppercase": [ "/text-processing#sec-string.prototype.touppercase" ], + "#sec-string.prototype.towellformed": [ + "/text-processing#sec-string.prototype.towellformed" + ], "#sec-string.prototype.trim": [ "/text-processing#sec-string.prototype.trim" ], @@ -5270,9 +5492,15 @@ "#sec-stringintegerliteral-grammar": [ "/abstract-operations#sec-stringintegerliteral-grammar" ], + "#sec-stringlastindexof": [ + "/ecmascript-data-types-and-values#sec-stringlastindexof" + ], "#sec-stringpad": [ "/text-processing#sec-stringpad" ], + "#sec-stringpaddingbuiltinsimpl": [ + "/text-processing#sec-stringpaddingbuiltinsimpl" + ], "#sec-stringtobigint": [ "/abstract-operations#sec-stringtobigint" ], @@ -5297,8 +5525,8 @@ "#sec-super-keyword-runtime-semantics-evaluation": [ "/ecmascript-language-expressions#sec-super-keyword-runtime-semantics-evaluation" ], - "#sec-suspendagent": [ - "/structured-data#sec-suspendagent" + "#sec-suspendthisagent": [ + "/structured-data#sec-suspendthisagent" ], "#sec-switch-statement": [ "/ecmascript-language-statements-and-declarations#sec-switch-statement" @@ -5351,11 +5579,11 @@ "#sec-symbol.prototype": [ "/fundamental-objects#sec-symbol.prototype" ], - "#sec-symbol.prototype-@@toprimitive": [ - "/fundamental-objects#sec-symbol.prototype-@@toprimitive" + "#sec-symbol.prototype-%25symbol.toprimitive%25": [ + "/fundamental-objects#sec-symbol.prototype-%25symbol.toprimitive%25" ], - "#sec-symbol.prototype-@@tostringtag": [ - "/fundamental-objects#sec-symbol.prototype-@@tostringtag" + "#sec-symbol.prototype-%25symbol.tostringtag%25": [ + "/fundamental-objects#sec-symbol.prototype-%25symbol.tostringtag%25" ], "#sec-symbol.prototype.constructor": [ "/fundamental-objects#sec-symbol.prototype.constructor" @@ -5420,6 +5648,9 @@ "#sec-syntax-directed-operations-scope-analysis": [ "/syntax-directed-operations#sec-syntax-directed-operations-scope-analysis" ], + "#sec-systemtimezoneidentifier": [ + "/numbers-and-dates#sec-systemtimezoneidentifier" + ], "#sec-tagged-templates": [ "/ecmascript-language-expressions#sec-tagged-templates" ], @@ -5525,6 +5756,21 @@ "#sec-this-keyword-runtime-semantics-evaluation": [ "/ecmascript-language-expressions#sec-this-keyword-runtime-semantics-evaluation" ], + "#sec-thisbigintvalue": [ + "/numbers-and-dates#sec-thisbigintvalue" + ], + "#sec-thisbooleanvalue": [ + "/fundamental-objects#sec-thisbooleanvalue" + ], + "#sec-thisnumbervalue": [ + "/numbers-and-dates#sec-thisnumbervalue" + ], + "#sec-thisstringvalue": [ + "/text-processing#sec-thisstringvalue" + ], + "#sec-thissymbolvalue": [ + "/fundamental-objects#sec-thissymbolvalue" + ], "#sec-throw-an-exception": [ "/notational-conventions#sec-throw-an-exception" ], @@ -5537,18 +5783,33 @@ "#sec-throwcompletion": [ "/ecmascript-data-types-and-values#sec-throwcompletion" ], + "#sec-time-related-constants": [ + "/numbers-and-dates#sec-time-related-constants" + ], "#sec-time-values-and-time-range": [ "/numbers-and-dates#sec-time-values-and-time-range" ], + "#sec-time-zone-identifier-record": [ + "/numbers-and-dates#sec-time-zone-identifier-record" + ], + "#sec-time-zone-identifiers": [ + "/numbers-and-dates#sec-time-zone-identifiers" + ], "#sec-time-zone-offset-strings": [ "/numbers-and-dates#sec-time-zone-offset-strings" ], "#sec-timeclip": [ "/numbers-and-dates#sec-timeclip" ], + "#sec-timefromyear": [ + "/numbers-and-dates#sec-timefromyear" + ], "#sec-timestring": [ "/numbers-and-dates#sec-timestring" ], + "#sec-timewithinday": [ + "/numbers-and-dates#sec-timewithinday" + ], "#sec-timezoneestring": [ "/numbers-and-dates#sec-timezoneestring" ], @@ -5654,9 +5915,39 @@ "#sec-typedarray-constructors": [ "/indexed-collections#sec-typedarray-constructors" ], + "#sec-typedarray-create-same-type": [ + "/indexed-collections#sec-typedarray-create-same-type" + ], + "#sec-typedarray-defineownproperty": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-defineownproperty" + ], + "#sec-typedarray-delete": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-delete" + ], + "#sec-typedarray-exotic-objects": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-exotic-objects" + ], + "#sec-typedarray-get": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-get" + ], + "#sec-typedarray-getownproperty": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-getownproperty" + ], + "#sec-typedarray-hasproperty": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-hasproperty" + ], "#sec-typedarray-objects": [ "/indexed-collections#sec-typedarray-objects" ], + "#sec-typedarray-ownpropertykeys": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-ownpropertykeys" + ], + "#sec-typedarray-set": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-set" + ], + "#sec-typedarray-with-buffer-witness-records": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-with-buffer-witness-records" + ], "#sec-typedarray.bytes_per_element": [ "/indexed-collections#sec-typedarray.bytes_per_element" ], @@ -5669,12 +5960,30 @@ "#sec-typedarray.prototype.constructor": [ "/indexed-collections#sec-typedarray.prototype.constructor" ], + "#sec-typedarraybytelength": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarraybytelength" + ], + "#sec-typedarraycreate": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarraycreate" + ], + "#sec-typedarraycreatefromconstructor": [ + "/indexed-collections#sec-typedarraycreatefromconstructor" + ], "#sec-typedarrayelementsize": [ "/indexed-collections#sec-typedarrayelementsize" ], "#sec-typedarrayelementtype": [ "/indexed-collections#sec-typedarrayelementtype" ], + "#sec-typedarraygetelement": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarraygetelement" + ], + "#sec-typedarraylength": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarraylength" + ], + "#sec-typedarraysetelement": [ + "/ordinary-and-exotic-objects-behaviours#sec-typedarraysetelement" + ], "#sec-typeof-operator": [ "/ecmascript-language-expressions#sec-typeof-operator" ], @@ -5762,6 +6071,9 @@ "#sec-validateatomicaccess": [ "/structured-data#sec-validateatomicaccess" ], + "#sec-validateatomicaccessonintegertypedarray": [ + "/structured-data#sec-validateatomicaccessonintegertypedarray" + ], "#sec-validateintegertypedarray": [ "/structured-data#sec-validateintegertypedarray" ], @@ -5801,8 +6113,11 @@ "#sec-void-operator-runtime-semantics-evaluation": [ "/ecmascript-language-expressions#sec-void-operator-runtime-semantics-evaluation" ], - "#sec-waiterlist-objects": [ - "/structured-data#sec-waiterlist-objects" + "#sec-waiter-record": [ + "/structured-data#sec-waiter-record" + ], + "#sec-waiterlist-records": [ + "/structured-data#sec-waiterlist-records" ], "#sec-weak-ref-constructor": [ "/managing-memory#sec-weak-ref-constructor" @@ -5816,8 +6131,8 @@ "#sec-weak-ref.prototype": [ "/managing-memory#sec-weak-ref.prototype" ], - "#sec-weak-ref.prototype-@@tostringtag": [ - "/managing-memory#sec-weak-ref.prototype-@@tostringtag" + "#sec-weak-ref.prototype-%25symbol.tostringtag%25": [ + "/managing-memory#sec-weak-ref.prototype-%25symbol.tostringtag%25" ], "#sec-weak-ref.prototype.constructor": [ "/managing-memory#sec-weak-ref.prototype.constructor" @@ -5837,8 +6152,8 @@ "#sec-weakmap.prototype": [ "/keyed-collections#sec-weakmap.prototype" ], - "#sec-weakmap.prototype-@@tostringtag": [ - "/keyed-collections#sec-weakmap.prototype-@@tostringtag" + "#sec-weakmap.prototype-%25symbol.tostringtag%25": [ + "/keyed-collections#sec-weakmap.prototype-%25symbol.tostringtag%25" ], "#sec-weakmap.prototype.constructor": [ "/keyed-collections#sec-weakmap.prototype.constructor" @@ -5885,8 +6200,8 @@ "#sec-weakset.prototype": [ "/keyed-collections#sec-weakset.prototype" ], - "#sec-weakset.prototype-@@tostringtag": [ - "/keyed-collections#sec-weakset.prototype-@@tostringtag" + "#sec-weakset.prototype-%25symbol.tostringtag%25": [ + "/keyed-collections#sec-weakset.prototype-%25symbol.tostringtag%25" ], "#sec-weakset.prototype.add": [ "/keyed-collections#sec-weakset.prototype.add" @@ -5903,8 +6218,8 @@ "#sec-web-scripting": [ "/overview#sec-web-scripting" ], - "#sec-week-day": [ - "/numbers-and-dates#sec-week-day" + "#sec-weekday": [ + "/numbers-and-dates#sec-weekday" ], "#sec-well-known-intrinsic-objects": [ "/ecmascript-data-types-and-values#sec-well-known-intrinsic-objects" @@ -5933,15 +6248,12 @@ "#sec-wordcharacters": [ "/text-processing#sec-wordcharacters" ], - "#sec-year-number": [ - "/numbers-and-dates#sec-year-number" + "#sec-yearfromtime": [ + "/numbers-and-dates#sec-yearfromtime" ], "#sec-yield": [ "/control-abstraction-objects#sec-yield" ], - "#typedarray-create": [ - "/indexed-collections#typedarray-create" - ], "#typedarray-species-create": [ "/indexed-collections#typedarray-species-create" ], @@ -5953,9 +6265,17 @@ "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-abstract-operations" } }, + "/abstract-operations#sec-add-value-to-keyed-group": { + "current": { + "number": "7.3.34", + "spec": "ECMAScript", + "text": "AddValueToKeyedGroup ( groups, key, value )", + "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-add-value-to-keyed-group" + } + }, "/abstract-operations#sec-asynciteratorclose": { "current": { - "number": "7.4.9", + "number": "7.4.11", "spec": "ECMAScript", "text": "AsyncIteratorClose ( iteratorRecord, completion )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-asynciteratorclose" @@ -5963,7 +6283,7 @@ }, "/abstract-operations#sec-call": { "current": { - "number": "7.3.14", + "number": "7.3.13", "spec": "ECMAScript", "text": "Call ( F, V [ , argumentsList ] )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-call" @@ -5979,7 +6299,7 @@ }, "/abstract-operations#sec-construct": { "current": { - "number": "7.3.15", + "number": "7.3.14", "spec": "ECMAScript", "text": "Construct ( F [ , argumentsList [ , newTarget ] ] )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-construct" @@ -5987,7 +6307,7 @@ }, "/abstract-operations#sec-copydataproperties": { "current": { - "number": "7.3.26", + "number": "7.3.25", "spec": "ECMAScript", "text": "CopyDataProperties ( target, source, excludedItems )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-copydataproperties" @@ -5995,7 +6315,7 @@ }, "/abstract-operations#sec-createarrayfromlist": { "current": { - "number": "7.3.18", + "number": "7.3.17", "spec": "ECMAScript", "text": "CreateArrayFromList ( elements )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createarrayfromlist" @@ -6011,7 +6331,7 @@ }, "/abstract-operations#sec-createdatapropertyorthrow": { "current": { - "number": "7.3.7", + "number": "7.3.6", "spec": "ECMAScript", "text": "CreateDataPropertyOrThrow ( O, P, V )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createdatapropertyorthrow" @@ -6019,15 +6339,15 @@ }, "/abstract-operations#sec-createiterresultobject": { "current": { - "number": "7.4.10", + "number": "7.4.12", "spec": "ECMAScript", - "text": "CreateIterResultObject ( value, done )", + "text": "CreateIteratorResultObject ( value, done )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createiterresultobject" } }, "/abstract-operations#sec-createlistfromarraylike": { "current": { - "number": "7.3.20", + "number": "7.3.19", "spec": "ECMAScript", "text": "CreateListFromArrayLike ( obj [ , elementTypes ] )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createlistfromarraylike" @@ -6035,23 +6355,15 @@ }, "/abstract-operations#sec-createlistiteratorRecord": { "current": { - "number": "7.4.11", + "number": "7.4.13", "spec": "ECMAScript", "text": "CreateListIteratorRecord ( list )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createlistiteratorRecord" } }, - "/abstract-operations#sec-createmethodproperty": { - "current": { - "number": "7.3.6", - "spec": "ECMAScript", - "text": "CreateMethodProperty ( O, P, V )", - "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createmethodproperty" - } - }, "/abstract-operations#sec-createnonenumerabledatapropertyorthrow": { "current": { - "number": "7.3.8", + "number": "7.3.7", "spec": "ECMAScript", "text": "CreateNonEnumerableDataPropertyOrThrow ( O, P, V )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-createnonenumerabledatapropertyorthrow" @@ -6059,7 +6371,7 @@ }, "/abstract-operations#sec-definefield": { "current": { - "number": "7.3.33", + "number": "7.3.32", "spec": "ECMAScript", "text": "DefineField ( receiver, fieldRecord )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-definefield" @@ -6067,7 +6379,7 @@ }, "/abstract-operations#sec-definepropertyorthrow": { "current": { - "number": "7.3.9", + "number": "7.3.8", "spec": "ECMAScript", "text": "DefinePropertyOrThrow ( O, P, desc )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-definepropertyorthrow" @@ -6075,7 +6387,7 @@ }, "/abstract-operations#sec-deletepropertyorthrow": { "current": { - "number": "7.3.10", + "number": "7.3.9", "spec": "ECMAScript", "text": "DeletePropertyOrThrow ( O, P )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-deletepropertyorthrow" @@ -6083,7 +6395,7 @@ }, "/abstract-operations#sec-enumerableownproperties": { "current": { - "number": "7.3.24", + "number": "7.3.23", "spec": "ECMAScript", "text": "EnumerableOwnProperties ( O, kind )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-enumerableownproperties" @@ -6099,7 +6411,7 @@ }, "/abstract-operations#sec-getfunctionrealm": { "current": { - "number": "7.3.25", + "number": "7.3.24", "spec": "ECMAScript", "text": "GetFunctionRealm ( obj )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getfunctionrealm" @@ -6107,15 +6419,23 @@ }, "/abstract-operations#sec-getiterator": { "current": { - "number": "7.4.2", + "number": "7.4.3", "spec": "ECMAScript", - "text": "GetIterator ( obj [ , hint [ , method ] ] )", + "text": "GetIterator ( obj, kind )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiterator" } }, + "/abstract-operations#sec-getiteratorfrommethod": { + "current": { + "number": "7.4.2", + "spec": "ECMAScript", + "text": "GetIteratorFromMethod ( obj, method )", + "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getiteratorfrommethod" + } + }, "/abstract-operations#sec-getmethod": { "current": { - "number": "7.3.11", + "number": "7.3.10", "spec": "ECMAScript", "text": "GetMethod ( V, P )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getmethod" @@ -6129,9 +6449,17 @@ "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-getv" } }, + "/abstract-operations#sec-groupby": { + "current": { + "number": "7.3.35", + "spec": "ECMAScript", + "text": "GroupBy ( items, callback, keyCoercion )", + "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-groupby" + } + }, "/abstract-operations#sec-hasownproperty": { "current": { - "number": "7.3.13", + "number": "7.3.12", "spec": "ECMAScript", "text": "HasOwnProperty ( O, P )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hasownproperty" @@ -6139,7 +6467,7 @@ }, "/abstract-operations#sec-hasproperty": { "current": { - "number": "7.3.12", + "number": "7.3.11", "spec": "ECMAScript", "text": "HasProperty ( O, P )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hasproperty" @@ -6147,7 +6475,7 @@ }, "/abstract-operations#sec-hostensurecanaddprivateelement": { "current": { - "number": "7.3.30", + "number": "7.3.29", "spec": "ECMAScript", "text": "HostEnsureCanAddPrivateElement ( O )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-hostensurecanaddprivateelement" @@ -6155,7 +6483,7 @@ }, "/abstract-operations#sec-ifabruptcloseiterator": { "current": { - "number": "7.4.8", + "number": "7.4.10", "spec": "ECMAScript", "text": "IfAbruptCloseIterator ( value, iteratorRecord )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ifabruptcloseiterator" @@ -6163,7 +6491,7 @@ }, "/abstract-operations#sec-initializeinstanceelements": { "current": { - "number": "7.3.34", + "number": "7.3.33", "spec": "ECMAScript", "text": "InitializeInstanceElements ( O, constructor )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-initializeinstanceelements" @@ -6171,7 +6499,7 @@ }, "/abstract-operations#sec-invoke": { "current": { - "number": "7.3.21", + "number": "7.3.20", "spec": "ECMAScript", "text": "Invoke ( V, P [ , argumentsList ] )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-invoke" @@ -6209,17 +6537,9 @@ "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isextensible-o" } }, - "/abstract-operations#sec-isintegralnumber": { - "current": { - "number": "7.2.6", - "spec": "ECMAScript", - "text": "IsIntegralNumber ( argument )", - "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isintegralnumber" - } - }, "/abstract-operations#sec-islessthan": { "current": { - "number": "7.2.13", + "number": "7.2.11", "spec": "ECMAScript", "text": "IsLessThan ( x, y, LeftFirst )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islessthan" @@ -6227,23 +6547,15 @@ }, "/abstract-operations#sec-islooselyequal": { "current": { - "number": "7.2.14", + "number": "7.2.12", "spec": "ECMAScript", "text": "IsLooselyEqual ( x, y )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islooselyequal" } }, - "/abstract-operations#sec-ispropertykey": { - "current": { - "number": "7.2.7", - "spec": "ECMAScript", - "text": "IsPropertyKey ( argument )", - "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ispropertykey" - } - }, "/abstract-operations#sec-isregexp": { "current": { - "number": "7.2.8", + "number": "7.2.6", "spec": "ECMAScript", "text": "IsRegExp ( argument )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isregexp" @@ -6251,7 +6563,7 @@ }, "/abstract-operations#sec-isstrictlyequal": { "current": { - "number": "7.2.15", + "number": "7.2.13", "spec": "ECMAScript", "text": "IsStrictlyEqual ( x, y )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isstrictlyequal" @@ -6259,20 +6571,12 @@ }, "/abstract-operations#sec-isstringwellformedunicode": { "current": { - "number": "7.2.9", + "number": "7.2.7", "spec": "ECMAScript", "text": "Static Semantics: IsStringWellFormedUnicode ( string )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-isstringwellformedunicode" } }, - "/abstract-operations#sec-iterabletolist": { - "current": { - "number": "7.4.12", - "spec": "ECMAScript", - "text": "IterableToList ( items [ , method ] )", - "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iterabletolist" - } - }, "/abstract-operations#sec-iterator-records": { "current": { "number": "7.4.1", @@ -6283,7 +6587,7 @@ }, "/abstract-operations#sec-iteratorclose": { "current": { - "number": "7.4.7", + "number": "7.4.9", "spec": "ECMAScript", "text": "IteratorClose ( iteratorRecord, completion )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorclose" @@ -6291,15 +6595,15 @@ }, "/abstract-operations#sec-iteratorcomplete": { "current": { - "number": "7.4.4", + "number": "7.4.5", "spec": "ECMAScript", - "text": "IteratorComplete ( iterResult )", + "text": "IteratorComplete ( iteratorResult )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorcomplete" } }, "/abstract-operations#sec-iteratornext": { "current": { - "number": "7.4.3", + "number": "7.4.4", "spec": "ECMAScript", "text": "IteratorNext ( iteratorRecord [ , value ] )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratornext" @@ -6307,23 +6611,39 @@ }, "/abstract-operations#sec-iteratorstep": { "current": { - "number": "7.4.6", + "number": "7.4.7", "spec": "ECMAScript", "text": "IteratorStep ( iteratorRecord )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorstep" } }, + "/abstract-operations#sec-iteratorstepvalue": { + "current": { + "number": "7.4.8", + "spec": "ECMAScript", + "text": "IteratorStepValue ( iteratorRecord )", + "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorstepvalue" + } + }, + "/abstract-operations#sec-iteratortolist": { + "current": { + "number": "7.4.14", + "spec": "ECMAScript", + "text": "IteratorToList ( iteratorRecord )", + "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratortolist" + } + }, "/abstract-operations#sec-iteratorvalue": { "current": { - "number": "7.4.5", + "number": "7.4.6", "spec": "ECMAScript", - "text": "IteratorValue ( iterResult )", + "text": "IteratorValue ( iteratorResult )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-iteratorvalue" } }, "/abstract-operations#sec-lengthofarraylike": { "current": { - "number": "7.3.19", + "number": "7.3.18", "spec": "ECMAScript", "text": "LengthOfArrayLike ( obj )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-lengthofarraylike" @@ -6355,7 +6675,7 @@ }, "/abstract-operations#sec-ordinaryhasinstance": { "current": { - "number": "7.3.22", + "number": "7.3.21", "spec": "ECMAScript", "text": "OrdinaryHasInstance ( C, O )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-ordinaryhasinstance" @@ -6371,7 +6691,7 @@ }, "/abstract-operations#sec-privateelementfind": { "current": { - "number": "7.3.27", + "number": "7.3.26", "spec": "ECMAScript", "text": "PrivateElementFind ( O, P )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateelementfind" @@ -6379,7 +6699,7 @@ }, "/abstract-operations#sec-privatefieldadd": { "current": { - "number": "7.3.28", + "number": "7.3.27", "spec": "ECMAScript", "text": "PrivateFieldAdd ( O, P, value )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privatefieldadd" @@ -6387,7 +6707,7 @@ }, "/abstract-operations#sec-privateget": { "current": { - "number": "7.3.31", + "number": "7.3.30", "spec": "ECMAScript", "text": "PrivateGet ( O, P )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateget" @@ -6395,7 +6715,7 @@ }, "/abstract-operations#sec-privatemethodoraccessoradd": { "current": { - "number": "7.3.29", + "number": "7.3.28", "spec": "ECMAScript", "text": "PrivateMethodOrAccessorAdd ( O, method )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privatemethodoraccessoradd" @@ -6403,7 +6723,7 @@ }, "/abstract-operations#sec-privateset": { "current": { - "number": "7.3.32", + "number": "7.3.31", "spec": "ECMAScript", "text": "PrivateSet ( O, P, value )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-privateset" @@ -6443,7 +6763,7 @@ }, "/abstract-operations#sec-samevalue": { "current": { - "number": "7.2.10", + "number": "7.2.8", "spec": "ECMAScript", "text": "SameValue ( x, y )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevalue" @@ -6451,7 +6771,7 @@ }, "/abstract-operations#sec-samevaluenonnumber": { "current": { - "number": "7.2.12", + "number": "7.2.10", "spec": "ECMAScript", "text": "SameValueNonNumber ( x, y )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevaluenonnumber" @@ -6459,7 +6779,7 @@ }, "/abstract-operations#sec-samevaluezero": { "current": { - "number": "7.2.11", + "number": "7.2.9", "spec": "ECMAScript", "text": "SameValueZero ( x, y )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-samevaluezero" @@ -6475,7 +6795,7 @@ }, "/abstract-operations#sec-setintegritylevel": { "current": { - "number": "7.3.16", + "number": "7.3.15", "spec": "ECMAScript", "text": "SetIntegrityLevel ( O, level )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-setintegritylevel" @@ -6483,7 +6803,7 @@ }, "/abstract-operations#sec-speciesconstructor": { "current": { - "number": "7.3.23", + "number": "7.3.22", "spec": "ECMAScript", "text": "SpeciesConstructor ( O, defaultConstructor )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-speciesconstructor" @@ -6523,7 +6843,7 @@ }, "/abstract-operations#sec-testintegritylevel": { "current": { - "number": "7.3.17", + "number": "7.3.16", "spec": "ECMAScript", "text": "TestIntegrityLevel ( O, level )", "url": "https://tc39.es/ecma262/multipage/abstract-operations.html#sec-testintegritylevel" @@ -6745,52 +7065,60 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#await" } }, - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%-object": { + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25-object": { "current": { "number": "27.1.4.2", "spec": "ECMAScript", "text": "The %AsyncFromSyncIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%asyncfromsynciteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25asyncfromsynciteratorprototype%25-object" } }, - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%.next": { + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25.next": { "current": { "number": "27.1.4.2.1", "spec": "ECMAScript", "text": "%AsyncFromSyncIteratorPrototype%.next ( [ value ] )", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%asyncfromsynciteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25asyncfromsynciteratorprototype%25.next" } }, - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%.return": { + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25.return": { "current": { "number": "27.1.4.2.2", "spec": "ECMAScript", "text": "%AsyncFromSyncIteratorPrototype%.return ( [ value ] )", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%asyncfromsynciteratorprototype%.return" + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25asyncfromsynciteratorprototype%25.return" } }, - "/control-abstraction-objects#sec-%asyncfromsynciteratorprototype%.throw": { + "/control-abstraction-objects#sec-%25asyncfromsynciteratorprototype%25.throw": { "current": { "number": "27.1.4.2.3", "spec": "ECMAScript", "text": "%AsyncFromSyncIteratorPrototype%.throw ( [ value ] )", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%asyncfromsynciteratorprototype%.throw" + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25asyncfromsynciteratorprototype%25.throw" + } + }, + "/control-abstraction-objects#sec-%25asynciteratorprototype%25-%25symbol.asynciterator%25": { + "current": { + "number": "27.1.3.1", + "spec": "ECMAScript", + "text": "%AsyncIteratorPrototype% [ %Symbol.asyncIterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25asynciteratorprototype%25-%25symbol.asynciterator%25" } }, - "/control-abstraction-objects#sec-%iteratorprototype%-@@iterator": { + "/control-abstraction-objects#sec-%25iteratorprototype%25-%25symbol.iterator%25": { "current": { "number": "27.1.2.1", "spec": "ECMAScript", - "text": "%IteratorPrototype% [ @@iterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%iteratorprototype%-@@iterator" + "text": "%IteratorPrototype% [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25iteratorprototype%25-%25symbol.iterator%25" } }, - "/control-abstraction-objects#sec-%iteratorprototype%-object": { + "/control-abstraction-objects#sec-%25iteratorprototype%25-object": { "current": { "number": "27.1.2", "spec": "ECMAScript", "text": "The %IteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%iteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-%25iteratorprototype%25-object" } }, "/control-abstraction-objects#sec-async-from-sync-iterator-objects": { @@ -6817,14 +7145,6 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-constructor-arguments" } }, - "/control-abstraction-objects#sec-async-function-constructor-length": { - "current": { - "number": "27.7.2.1", - "spec": "ECMAScript", - "text": "AsyncFunction.length", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-constructor-length" - } - }, "/control-abstraction-objects#sec-async-function-constructor-properties": { "current": { "number": "27.7.2", @@ -6835,7 +7155,7 @@ }, "/control-abstraction-objects#sec-async-function-constructor-prototype": { "current": { - "number": "27.7.2.2", + "number": "27.7.2.1", "spec": "ECMAScript", "text": "AsyncFunction.prototype", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-constructor-prototype" @@ -6873,6 +7193,14 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-objects" } }, + "/control-abstraction-objects#sec-async-function-prototype-%25symbol.tostringtag%25": { + "current": { + "number": "27.7.3.2", + "spec": "ECMAScript", + "text": "AsyncFunction.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-prototype-%25symbol.tostringtag%25" + } + }, "/control-abstraction-objects#sec-async-function-prototype-properties": { "current": { "number": "27.7.3", @@ -6889,14 +7217,6 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-prototype-properties-constructor" } }, - "/control-abstraction-objects#sec-async-function-prototype-properties-toStringTag": { - "current": { - "number": "27.7.3.2", - "spec": "ECMAScript", - "text": "AsyncFunction.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-async-function-prototype-properties-toStringTag" - } - }, "/control-abstraction-objects#sec-async-functions-abstract-operations": { "current": { "number": "27.7.5", @@ -6945,11 +7265,19 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-objects" } }, + "/control-abstraction-objects#sec-asyncgenerator-prototype-%25symbol.tostringtag%25": { + "current": { + "number": "27.6.1.5", + "spec": "ECMAScript", + "text": "%AsyncGeneratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-%25symbol.tostringtag%25" + } + }, "/control-abstraction-objects#sec-asyncgenerator-prototype-constructor": { "current": { "number": "27.6.1.1", "spec": "ECMAScript", - "text": "AsyncGenerator.prototype.constructor", + "text": "%AsyncGeneratorPrototype%.constructor", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-constructor" } }, @@ -6957,7 +7285,7 @@ "current": { "number": "27.6.1.2", "spec": "ECMAScript", - "text": "AsyncGenerator.prototype.next ( value )", + "text": "%AsyncGeneratorPrototype%.next ( value )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-next" } }, @@ -6965,7 +7293,7 @@ "current": { "number": "27.6.1.3", "spec": "ECMAScript", - "text": "AsyncGenerator.prototype.return ( value )", + "text": "%AsyncGeneratorPrototype%.return ( value )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-return" } }, @@ -6973,18 +7301,10 @@ "current": { "number": "27.6.1.4", "spec": "ECMAScript", - "text": "AsyncGenerator.prototype.throw ( exception )", + "text": "%AsyncGeneratorPrototype%.throw ( exception )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-throw" } }, - "/control-abstraction-objects#sec-asyncgenerator-prototype-tostringtag": { - "current": { - "number": "27.6.1.5", - "spec": "ECMAScript", - "text": "AsyncGenerator.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgenerator-prototype-tostringtag" - } - }, "/control-abstraction-objects#sec-asyncgeneratorawaitreturn": { "current": { "number": "27.6.3.9", @@ -7065,14 +7385,6 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-instances" } }, - "/control-abstraction-objects#sec-asyncgeneratorfunction-length": { - "current": { - "number": "27.4.2.1", - "spec": "ECMAScript", - "text": "AsyncGeneratorFunction.length", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-length" - } - }, "/control-abstraction-objects#sec-asyncgeneratorfunction-objects": { "current": { "number": "27.4", @@ -7083,12 +7395,20 @@ }, "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype": { "current": { - "number": "27.4.2.2", + "number": "27.4.2.1", "spec": "ECMAScript", "text": "AsyncGeneratorFunction.prototype", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-prototype" } }, + "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-%25symbol.tostringtag%25": { + "current": { + "number": "27.4.3.3", + "spec": "ECMAScript", + "text": "AsyncGeneratorFunction.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-prototype-%25symbol.tostringtag%25" + } + }, "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-constructor": { "current": { "number": "27.4.3.1", @@ -7105,14 +7425,6 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-prototype-prototype" } }, - "/control-abstraction-objects#sec-asyncgeneratorfunction-prototype-tostringtag": { - "current": { - "number": "27.4.3.3", - "spec": "ECMAScript", - "text": "AsyncGeneratorFunction.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asyncgeneratorfunction-prototype-tostringtag" - } - }, "/control-abstraction-objects#sec-asyncgeneratorrequest-records": { "current": { "number": "27.6.3.1", @@ -7185,14 +7497,6 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asynciteratorprototype" } }, - "/control-abstraction-objects#sec-asynciteratorprototype-asynciterator": { - "current": { - "number": "27.1.3.1", - "spec": "ECMAScript", - "text": "%AsyncIteratorPrototype% [ @@asyncIterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-asynciteratorprototype-asynciterator" - } - }, "/control-abstraction-objects#sec-common-iteration-interfaces": { "current": { "number": "27.1.1", @@ -7265,19 +7569,19 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator-objects" } }, - "/control-abstraction-objects#sec-generator.prototype-@@tostringtag": { + "/control-abstraction-objects#sec-generator.prototype-%25symbol.tostringtag%25": { "current": { "number": "27.5.1.5", "spec": "ECMAScript", - "text": "Generator.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype-@@tostringtag" + "text": "%GeneratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype-%25symbol.tostringtag%25" } }, "/control-abstraction-objects#sec-generator.prototype.constructor": { "current": { "number": "27.5.1.1", "spec": "ECMAScript", - "text": "Generator.prototype.constructor", + "text": "%GeneratorPrototype%.constructor", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.constructor" } }, @@ -7285,7 +7589,7 @@ "current": { "number": "27.5.1.2", "spec": "ECMAScript", - "text": "Generator.prototype.next ( value )", + "text": "%GeneratorPrototype%.next ( value )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.next" } }, @@ -7293,7 +7597,7 @@ "current": { "number": "27.5.1.3", "spec": "ECMAScript", - "text": "Generator.prototype.return ( value )", + "text": "%GeneratorPrototype%.return ( value )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.return" } }, @@ -7301,7 +7605,7 @@ "current": { "number": "27.5.1.4", "spec": "ECMAScript", - "text": "Generator.prototype.throw ( exception )", + "text": "%GeneratorPrototype%.throw ( exception )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.throw" } }, @@ -7361,28 +7665,20 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction-objects" } }, - "/control-abstraction-objects#sec-generatorfunction.length": { - "current": { - "number": "27.3.2.1", - "spec": "ECMAScript", - "text": "GeneratorFunction.length", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction.length" - } - }, "/control-abstraction-objects#sec-generatorfunction.prototype": { "current": { - "number": "27.3.2.2", + "number": "27.3.2.1", "spec": "ECMAScript", "text": "GeneratorFunction.prototype", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction.prototype" } }, - "/control-abstraction-objects#sec-generatorfunction.prototype-@@tostringtag": { + "/control-abstraction-objects#sec-generatorfunction.prototype-%25symbol.tostringtag%25": { "current": { "number": "27.3.3.3", "spec": "ECMAScript", - "text": "GeneratorFunction.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction.prototype-@@tostringtag" + "text": "GeneratorFunction.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction.prototype-%25symbol.tostringtag%25" } }, "/control-abstraction-objects#sec-generatorfunction.prototype.constructor": { @@ -7437,16 +7733,16 @@ "current": { "number": "27.5.3.6", "spec": "ECMAScript", - "text": "GeneratorYield ( iterNextObj )", + "text": "GeneratorYield ( iteratorResult )", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatoryield" } }, - "/control-abstraction-objects#sec-get-promise-@@species": { + "/control-abstraction-objects#sec-get-promise-%25symbol.species%25": { "current": { - "number": "27.2.4.8", + "number": "27.2.4.9", "spec": "ECMAScript", - "text": "get Promise [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-get-promise-@@species" + "text": "get Promise [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-get-promise-%25symbol.species%25" } }, "/control-abstraction-objects#sec-getgeneratorkind": { @@ -7713,12 +8009,12 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.prototype" } }, - "/control-abstraction-objects#sec-promise.prototype-@@tostringtag": { + "/control-abstraction-objects#sec-promise.prototype-%25symbol.tostringtag%25": { "current": { "number": "27.2.5.5", "spec": "ECMAScript", - "text": "Promise.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.prototype-@@tostringtag" + "text": "Promise.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.prototype-%25symbol.tostringtag%25" } }, "/control-abstraction-objects#sec-promise.prototype.catch": { @@ -7777,6 +8073,14 @@ "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.resolve" } }, + "/control-abstraction-objects#sec-promise.withResolvers": { + "current": { + "number": "27.2.4.8", + "spec": "ECMAScript", + "text": "Promise.withResolvers ( )", + "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.withResolvers" + } + }, "/control-abstraction-objects#sec-promisecapability-records": { "current": { "number": "27.2.1.1", @@ -7813,7 +8117,7 @@ "current": { "number": "27.6.1", "spec": "ECMAScript", - "text": "Properties of the AsyncGenerator Prototype Object", + "text": "The %AsyncGeneratorPrototype% Object", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-asyncgenerator-prototype" } }, @@ -7845,7 +8149,7 @@ "current": { "number": "27.5.1", "spec": "ECMAScript", - "text": "Properties of the Generator Prototype Object", + "text": "The %GeneratorPrototype% Object", "url": "https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-generator-prototype" } }, @@ -8617,6 +8921,14 @@ "url": "https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringindexof" } }, + "/ecmascript-data-types-and-values#sec-stringlastindexof": { + "current": { + "number": "6.1.4.2", + "spec": "ECMAScript", + "text": "StringLastIndexOf ( string, searchValue, fromIndex )", + "url": "https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-stringlastindexof" + } + }, "/ecmascript-data-types-and-values#sec-throwcompletion": { "current": { "number": "6.2.4.2", @@ -8693,7 +9005,7 @@ "current": { "number": "13.15.3", "spec": "ECMAScript", - "text": "ApplyStringOrNumericBinaryOperator ( lval, opText, rval )", + "text": "ApplyStringOrNumericBinaryOperator ( lVal, opText, rVal )", "url": "https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-applystringornumericbinaryoperator" } }, @@ -10889,6 +11201,14 @@ "url": "https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-script-semantics-runtime-semantics-evaluation" } }, + "/ecmascript-language-scripts-and-modules#sec-scriptisstrict": { + "current": { + "number": "16.1.2", + "spec": "ECMAScript", + "text": "Static Semantics: ScriptIsStrict", + "url": "https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-scriptisstrict" + } + }, "/ecmascript-language-scripts-and-modules#sec-scripts": { "current": { "number": "16.1", @@ -10977,14 +11297,6 @@ "url": "https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-static-semantics-importentriesformodule" } }, - "/ecmascript-language-scripts-and-modules#sec-static-semantics-isstrict": { - "current": { - "number": "16.1.2", - "spec": "ECMAScript", - "text": "Static Semantics: IsStrict", - "url": "https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-static-semantics-isstrict" - } - }, "/ecmascript-language-scripts-and-modules#sec-static-semantics-modulerequests": { "current": { "number": "16.2.1.3", @@ -11033,6 +11345,14 @@ "url": "https://tc39.es/ecma262/multipage/ecmascript-language-source-code.html#sec-ecmascript-language-source-code" } }, + "/ecmascript-language-source-code#sec-isstrict": { + "current": { + "number": "11.2.2.1", + "spec": "ECMAScript", + "text": "Static Semantics: IsStrict ( node )", + "url": "https://tc39.es/ecma262/multipage/ecmascript-language-source-code.html#sec-isstrict" + } + }, "/ecmascript-language-source-code#sec-non-ecmascript-functions": { "current": { "number": "11.2.3", @@ -11097,20 +11417,20 @@ "url": "https://tc39.es/ecma262/multipage/ecmascript-language-source-code.html#sec-utf16encodecodepoint" } }, - "/ecmascript-language-statements-and-declarations#sec-%foriniteratorprototype%-object": { + "/ecmascript-language-statements-and-declarations#sec-%25foriniteratorprototype%25-object": { "current": { "number": "14.7.5.10.2", "spec": "ECMAScript", "text": "The %ForInIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-%foriniteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-%25foriniteratorprototype%25-object" } }, - "/ecmascript-language-statements-and-declarations#sec-%foriniteratorprototype%.next": { + "/ecmascript-language-statements-and-declarations#sec-%25foriniteratorprototype%25.next": { "current": { "number": "14.7.5.10.2.1", "spec": "ECMAScript", "text": "%ForInIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-%foriniteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/ecmascript-language-statements-and-declarations.html#sec-%25foriniteratorprototype%25.next" } }, "/ecmascript-language-statements-and-declarations#sec-block": { @@ -11787,15 +12107,15 @@ }, "/executable-code-and-execution-contexts#sec-addtokeptobjects": { "current": { - "number": "9.12", + "number": "9.11", "spec": "ECMAScript", - "text": "AddToKeptObjects ( object )", + "text": "AddToKeptObjects ( value )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-addtokeptobjects" } }, "/executable-code-and-execution-contexts#sec-agent-clusters": { "current": { - "number": "9.8", + "number": "9.7", "spec": "ECMAScript", "text": "Agent Clusters", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-agent-clusters" @@ -11803,7 +12123,7 @@ }, "/executable-code-and-execution-contexts#sec-agentcansuspend": { "current": { - "number": "9.7.2", + "number": "9.6.2", "spec": "ECMAScript", "text": "AgentCanSuspend ( )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-agentcansuspend" @@ -11811,7 +12131,7 @@ }, "/executable-code-and-execution-contexts#sec-agents": { "current": { - "number": "9.7", + "number": "9.6", "spec": "ECMAScript", "text": "Agents", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-agents" @@ -11819,7 +12139,7 @@ }, "/executable-code-and-execution-contexts#sec-agentsignifier": { "current": { - "number": "9.7.1", + "number": "9.6.1", "spec": "ECMAScript", "text": "AgentSignifier ( )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-agentsignifier" @@ -11833,6 +12153,14 @@ "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-bindthisvalue" } }, + "/executable-code-and-execution-contexts#sec-canbeheldweakly": { + "current": { + "number": "9.13", + "spec": "ECMAScript", + "text": "CanBeHeldWeakly ( v )", + "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-canbeheldweakly" + } + }, "/executable-code-and-execution-contexts#sec-candeclareglobalfunction": { "current": { "number": "9.1.1.4.16", @@ -11851,7 +12179,7 @@ }, "/executable-code-and-execution-contexts#sec-cleanup-finalization-registry": { "current": { - "number": "9.13", + "number": "9.12", "spec": "ECMAScript", "text": "CleanupFinalizationRegistry ( finalizationRegistry )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-cleanup-finalization-registry" @@ -11859,7 +12187,7 @@ }, "/executable-code-and-execution-contexts#sec-clear-kept-objects": { "current": { - "number": "9.11", + "number": "9.10", "spec": "ECMAScript", "text": "ClearKeptObjects ( )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-clear-kept-objects" @@ -11905,14 +12233,6 @@ "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-createintrinsics" } }, - "/executable-code-and-execution-contexts#sec-createrealm": { - "current": { - "number": "9.3.1", - "spec": "ECMAScript", - "text": "CreateRealm ( )", - "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-createrealm" - } - }, "/executable-code-and-execution-contexts#sec-declarative-environment-records": { "current": { "number": "9.1.1.1", @@ -12035,7 +12355,7 @@ }, "/executable-code-and-execution-contexts#sec-forward-progress": { "current": { - "number": "9.9", + "number": "9.8", "spec": "ECMAScript", "text": "Forward Progress", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-forward-progress" @@ -12243,7 +12563,7 @@ }, "/executable-code-and-execution-contexts#sec-host-cleanup-finalization-registry": { "current": { - "number": "9.10.4.1", + "number": "9.9.4.1", "spec": "ECMAScript", "text": "HostEnqueueFinalizationRegistryCleanupJob ( finalizationRegistry )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-host-cleanup-finalization-registry" @@ -12257,14 +12577,30 @@ "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostcalljobcallback" } }, - "/executable-code-and-execution-contexts#sec-hostenqueuepromisejob": { + "/executable-code-and-execution-contexts#sec-hostenqueuegenericjob": { "current": { "number": "9.5.4", "spec": "ECMAScript", + "text": "HostEnqueueGenericJob ( job, realm )", + "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuegenericjob" + } + }, + "/executable-code-and-execution-contexts#sec-hostenqueuepromisejob": { + "current": { + "number": "9.5.5", + "spec": "ECMAScript", "text": "HostEnqueuePromiseJob ( job, realm )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuepromisejob" } }, + "/executable-code-and-execution-contexts#sec-hostenqueuetimeoutjob": { + "current": { + "number": "9.5.6", + "spec": "ECMAScript", + "text": "HostEnqueueTimeoutJob ( timeoutJob, realm, milliseconds )", + "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-hostenqueuetimeoutjob" + } + }, "/executable-code-and-execution-contexts#sec-hostmakejobcallback": { "current": { "number": "9.5.2", @@ -12275,7 +12611,7 @@ }, "/executable-code-and-execution-contexts#sec-initializehostdefinedrealm": { "current": { - "number": "9.6", + "number": "9.3.1", "spec": "ECMAScript", "text": "InitializeHostDefinedRealm ( )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-initializehostdefinedrealm" @@ -12299,7 +12635,7 @@ }, "/executable-code-and-execution-contexts#sec-liveness": { "current": { - "number": "9.10.2", + "number": "9.9.2", "spec": "ECMAScript", "text": "Liveness", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-liveness" @@ -12389,7 +12725,7 @@ "current": { "number": "9.2.1.1", "spec": "ECMAScript", - "text": "NewPrivateEnvironment ( outerPrivEnv )", + "text": "NewPrivateEnvironment ( outerPrivateEnv )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-newprivateenvironment" } }, @@ -12501,7 +12837,7 @@ "current": { "number": "9.2.1.2", "spec": "ECMAScript", - "text": "ResolvePrivateIdentifier ( privEnv, identifier )", + "text": "ResolvePrivateIdentifier ( privateEnv, identifier )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-resolve-private-identifier" } }, @@ -12523,20 +12859,12 @@ }, "/executable-code-and-execution-contexts#sec-setdefaultglobalbindings": { "current": { - "number": "9.3.4", + "number": "9.3.3", "spec": "ECMAScript", "text": "SetDefaultGlobalBindings ( realmRec )", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-setdefaultglobalbindings" } }, - "/executable-code-and-execution-contexts#sec-setrealmglobalobject": { - "current": { - "number": "9.3.3", - "spec": "ECMAScript", - "text": "SetRealmGlobalObject ( realmRec, globalObj, thisValue )", - "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-setrealmglobalobject" - } - }, "/executable-code-and-execution-contexts#sec-the-environment-record-type-hierarchy": { "current": { "number": "9.1.1", @@ -12547,7 +12875,7 @@ }, "/executable-code-and-execution-contexts#sec-weakref-execution": { "current": { - "number": "9.10.3", + "number": "9.9.3", "spec": "ECMAScript", "text": "Execution", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-weakref-execution" @@ -12555,7 +12883,7 @@ }, "/executable-code-and-execution-contexts#sec-weakref-host-hooks": { "current": { - "number": "9.10.4", + "number": "9.9.4", "spec": "ECMAScript", "text": "Host Hooks", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-weakref-host-hooks" @@ -12563,7 +12891,7 @@ }, "/executable-code-and-execution-contexts#sec-weakref-invariants": { "current": { - "number": "9.10.1", + "number": "9.9.1", "spec": "ECMAScript", "text": "Objectives", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-weakref-invariants" @@ -12571,9 +12899,9 @@ }, "/executable-code-and-execution-contexts#sec-weakref-processing-model": { "current": { - "number": "9.10", + "number": "9.9", "spec": "ECMAScript", - "text": "Processing Model of WeakRef and FinalizationRegistry Objects", + "text": "Processing Model of WeakRef and FinalizationRegistry Targets", "url": "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#sec-weakref-processing-model" } }, @@ -12585,6 +12913,14 @@ "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-abstract-operations-for-error-objects" } }, + "/fundamental-objects#sec-abstract-operations-for-symbols": { + "current": { + "number": "20.4.5", + "spec": "ECMAScript", + "text": "Abstract Operations for Symbols", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-abstract-operations-for-symbols" + } + }, "/fundamental-objects#sec-aggregate-error": { "current": { "number": "20.5.7.1.1", @@ -12825,28 +13161,20 @@ "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function-p1-p2-pn-body" } }, - "/fundamental-objects#sec-function.length": { - "current": { - "number": "20.2.2.1", - "spec": "ECMAScript", - "text": "Function.length", - "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function.length" - } - }, "/fundamental-objects#sec-function.prototype": { "current": { - "number": "20.2.2.2", + "number": "20.2.2.1", "spec": "ECMAScript", "text": "Function.prototype", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function.prototype" } }, - "/fundamental-objects#sec-function.prototype-@@hasinstance": { + "/fundamental-objects#sec-function.prototype-%25symbol.hasinstance%25": { "current": { "number": "20.2.3.6", "spec": "ECMAScript", - "text": "Function.prototype [ @@hasInstance ] ( V )", - "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function.prototype-@@hasinstance" + "text": "Function.prototype [ %Symbol.hasInstance% ] ( V )", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-function.prototype-%25symbol.hasinstance%25" } }, "/fundamental-objects#sec-function.prototype.apply": { @@ -12929,6 +13257,14 @@ "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-installerrorcause" } }, + "/fundamental-objects#sec-keyforsymbol": { + "current": { + "number": "20.4.5.1", + "spec": "ECMAScript", + "text": "KeyForSymbol ( sym )", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-keyforsymbol" + } + }, "/fundamental-objects#sec-native-error-types-used-in-this-standard": { "current": { "number": "20.5.5", @@ -13161,17 +13497,25 @@ "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.getprototypeof" } }, - "/fundamental-objects#sec-object.hasown": { + "/fundamental-objects#sec-object.groupby": { "current": { "number": "20.1.2.13", "spec": "ECMAScript", + "text": "Object.groupBy ( items, callback )", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.groupby" + } + }, + "/fundamental-objects#sec-object.hasown": { + "current": { + "number": "20.1.2.14", + "spec": "ECMAScript", "text": "Object.hasOwn ( O, P )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.hasown" } }, "/fundamental-objects#sec-object.is": { "current": { - "number": "20.1.2.14", + "number": "20.1.2.15", "spec": "ECMAScript", "text": "Object.is ( value1, value2 )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.is" @@ -13179,7 +13523,7 @@ }, "/fundamental-objects#sec-object.isextensible": { "current": { - "number": "20.1.2.15", + "number": "20.1.2.16", "spec": "ECMAScript", "text": "Object.isExtensible ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.isextensible" @@ -13187,7 +13531,7 @@ }, "/fundamental-objects#sec-object.isfrozen": { "current": { - "number": "20.1.2.16", + "number": "20.1.2.17", "spec": "ECMAScript", "text": "Object.isFrozen ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.isfrozen" @@ -13195,7 +13539,7 @@ }, "/fundamental-objects#sec-object.issealed": { "current": { - "number": "20.1.2.17", + "number": "20.1.2.18", "spec": "ECMAScript", "text": "Object.isSealed ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.issealed" @@ -13203,7 +13547,7 @@ }, "/fundamental-objects#sec-object.keys": { "current": { - "number": "20.1.2.18", + "number": "20.1.2.19", "spec": "ECMAScript", "text": "Object.keys ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.keys" @@ -13211,7 +13555,7 @@ }, "/fundamental-objects#sec-object.preventextensions": { "current": { - "number": "20.1.2.19", + "number": "20.1.2.20", "spec": "ECMAScript", "text": "Object.preventExtensions ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.preventextensions" @@ -13219,7 +13563,7 @@ }, "/fundamental-objects#sec-object.prototype": { "current": { - "number": "20.1.2.20", + "number": "20.1.2.21", "spec": "ECMAScript", "text": "Object.prototype", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.prototype" @@ -13331,7 +13675,7 @@ }, "/fundamental-objects#sec-object.seal": { "current": { - "number": "20.1.2.21", + "number": "20.1.2.22", "spec": "ECMAScript", "text": "Object.seal ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.seal" @@ -13339,7 +13683,7 @@ }, "/fundamental-objects#sec-object.setprototypeof": { "current": { - "number": "20.1.2.22", + "number": "20.1.2.23", "spec": "ECMAScript", "text": "Object.setPrototypeOf ( O, proto )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.setprototypeof" @@ -13347,7 +13691,7 @@ }, "/fundamental-objects#sec-object.values": { "current": { - "number": "20.1.2.23", + "number": "20.1.2.24", "spec": "ECMAScript", "text": "Object.values ( O )", "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.values" @@ -13625,20 +13969,20 @@ "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.prototype" } }, - "/fundamental-objects#sec-symbol.prototype-@@toprimitive": { + "/fundamental-objects#sec-symbol.prototype-%25symbol.toprimitive%25": { "current": { "number": "20.4.3.5", "spec": "ECMAScript", - "text": "Symbol.prototype [ @@toPrimitive ] ( hint )", - "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.prototype-@@toprimitive" + "text": "Symbol.prototype [ %Symbol.toPrimitive% ] ( hint )", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.prototype-%25symbol.toprimitive%25" } }, - "/fundamental-objects#sec-symbol.prototype-@@tostringtag": { + "/fundamental-objects#sec-symbol.prototype-%25symbol.tostringtag%25": { "current": { "number": "20.4.3.6", "spec": "ECMAScript", - "text": "Symbol.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.prototype-@@tostringtag" + "text": "Symbol.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.prototype-%25symbol.tostringtag%25" } }, "/fundamental-objects#sec-symbol.prototype.constructor": { @@ -13737,6 +14081,22 @@ "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symboldescriptivestring" } }, + "/fundamental-objects#sec-thisbooleanvalue": { + "current": { + "number": "20.3.3.3.1", + "spec": "ECMAScript", + "text": "ThisBooleanValue ( value )", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-thisbooleanvalue" + } + }, + "/fundamental-objects#sec-thissymbolvalue": { + "current": { + "number": "20.4.3.4.1", + "spec": "ECMAScript", + "text": "ThisSymbolValue ( value )", + "url": "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-thissymbolvalue" + } + }, "/global-object#sec-atomics": { "current": { "number": "19.4.1", @@ -14093,7 +14453,7 @@ "current": { "number": "19.2.1.2", "spec": "ECMAScript", - "text": "HostEnsureCanCompileStrings ( calleeRealm )", + "text": "HostEnsureCanCompileStrings ( calleeRealm, parameterStrings, bodyString, direct )", "url": "https://tc39.es/ecma262/multipage/global-object.html#sec-hostensurecancompilestrings" } }, @@ -14177,6 +14537,14 @@ "url": "https://tc39.es/ecma262/multipage/global-object.html#sec-parsefloat-string" } }, + "/global-object#sec-parsehexoctet": { + "current": { + "number": "19.2.6.7", + "spec": "ECMAScript", + "text": "ParseHexOctet ( string, position )", + "url": "https://tc39.es/ecma262/multipage/global-object.html#sec-parsehexoctet" + } + }, "/global-object#sec-parseint-string-radix": { "current": { "number": "19.2.5", @@ -14281,308 +14649,332 @@ "url": "https://tc39.es/ecma262/multipage/global-object.html#sec-value-properties-of-the-global-object-nan" } }, - "/indexed-collections#sec-%arrayiteratorprototype%-@@tostringtag": { + "/indexed-collections#sec-%25arrayiteratorprototype%25-%25symbol.tostringtag%25": { "current": { "number": "23.1.5.2.2", "spec": "ECMAScript", - "text": "%ArrayIteratorPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%arrayiteratorprototype%-@@tostringtag" + "text": "%ArrayIteratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25arrayiteratorprototype%25-%25symbol.tostringtag%25" } }, - "/indexed-collections#sec-%arrayiteratorprototype%-object": { + "/indexed-collections#sec-%25arrayiteratorprototype%25-object": { "current": { "number": "23.1.5.2", "spec": "ECMAScript", "text": "The %ArrayIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%arrayiteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25arrayiteratorprototype%25-object" } }, - "/indexed-collections#sec-%arrayiteratorprototype%.next": { + "/indexed-collections#sec-%25arrayiteratorprototype%25.next": { "current": { "number": "23.1.5.2.1", "spec": "ECMAScript", "text": "%ArrayIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%arrayiteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25arrayiteratorprototype%25.next" } }, - "/indexed-collections#sec-%typedarray%": { + "/indexed-collections#sec-%25typedarray%25": { "current": { "number": "23.2.1.1", "spec": "ECMAScript", "text": "%TypedArray% ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25" } }, - "/indexed-collections#sec-%typedarray%-intrinsic-object": { + "/indexed-collections#sec-%25typedarray%25-intrinsic-object": { "current": { "number": "23.2.1", "spec": "ECMAScript", "text": "The %TypedArray% Intrinsic Object", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%-intrinsic-object" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25-intrinsic-object" } }, - "/indexed-collections#sec-%typedarray%.from": { + "/indexed-collections#sec-%25typedarray%25.from": { "current": { "number": "23.2.2.1", "spec": "ECMAScript", - "text": "%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.from" + "text": "%TypedArray%.from ( source [ , mapper [ , thisArg ] ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.from" } }, - "/indexed-collections#sec-%typedarray%.of": { + "/indexed-collections#sec-%25typedarray%25.of": { "current": { "number": "23.2.2.2", "spec": "ECMAScript", "text": "%TypedArray%.of ( ...items )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.of" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of" } }, - "/indexed-collections#sec-%typedarray%.prototype": { + "/indexed-collections#sec-%25typedarray%25.prototype": { "current": { "number": "23.2.2.3", "spec": "ECMAScript", "text": "%TypedArray%.prototype", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype" } }, - "/indexed-collections#sec-%typedarray%.prototype-@@iterator": { + "/indexed-collections#sec-%25typedarray%25.prototype-%25symbol.iterator%25": { "current": { - "number": "23.2.3.34", + "number": "23.2.3.37", "spec": "ECMAScript", - "text": "%TypedArray%.prototype [ @@iterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype-@@iterator" + "text": "%TypedArray%.prototype [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype-%25symbol.iterator%25" } }, - "/indexed-collections#sec-%typedarray%.prototype.at": { + "/indexed-collections#sec-%25typedarray%25.prototype.at": { "current": { "number": "23.2.3.1", "spec": "ECMAScript", "text": "%TypedArray%.prototype.at ( index )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.at" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.at" } }, - "/indexed-collections#sec-%typedarray%.prototype.constructor": { + "/indexed-collections#sec-%25typedarray%25.prototype.constructor": { "current": { "number": "23.2.3.5", "spec": "ECMAScript", "text": "%TypedArray%.prototype.constructor", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.constructor" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.constructor" } }, - "/indexed-collections#sec-%typedarray%.prototype.copywithin": { + "/indexed-collections#sec-%25typedarray%25.prototype.copywithin": { "current": { "number": "23.2.3.6", "spec": "ECMAScript", "text": "%TypedArray%.prototype.copyWithin ( target, start [ , end ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.copywithin" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.copywithin" } }, - "/indexed-collections#sec-%typedarray%.prototype.entries": { + "/indexed-collections#sec-%25typedarray%25.prototype.entries": { "current": { "number": "23.2.3.7", "spec": "ECMAScript", "text": "%TypedArray%.prototype.entries ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.entries" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.entries" } }, - "/indexed-collections#sec-%typedarray%.prototype.every": { + "/indexed-collections#sec-%25typedarray%25.prototype.every": { "current": { "number": "23.2.3.8", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.every ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.every" + "text": "%TypedArray%.prototype.every ( callback [ , thisArg ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.every" } }, - "/indexed-collections#sec-%typedarray%.prototype.fill": { + "/indexed-collections#sec-%25typedarray%25.prototype.fill": { "current": { "number": "23.2.3.9", "spec": "ECMAScript", "text": "%TypedArray%.prototype.fill ( value [ , start [ , end ] ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.fill" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.fill" } }, - "/indexed-collections#sec-%typedarray%.prototype.filter": { + "/indexed-collections#sec-%25typedarray%25.prototype.filter": { "current": { "number": "23.2.3.10", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.filter ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.filter" + "text": "%TypedArray%.prototype.filter ( callback [ , thisArg ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.filter" } }, - "/indexed-collections#sec-%typedarray%.prototype.find": { + "/indexed-collections#sec-%25typedarray%25.prototype.find": { "current": { "number": "23.2.3.11", "spec": "ECMAScript", "text": "%TypedArray%.prototype.find ( predicate [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.find" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.find" } }, - "/indexed-collections#sec-%typedarray%.prototype.findindex": { + "/indexed-collections#sec-%25typedarray%25.prototype.findindex": { "current": { "number": "23.2.3.12", "spec": "ECMAScript", "text": "%TypedArray%.prototype.findIndex ( predicate [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.findindex" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findindex" } }, - "/indexed-collections#sec-%typedarray%.prototype.findlast": { + "/indexed-collections#sec-%25typedarray%25.prototype.findlast": { "current": { "number": "23.2.3.13", "spec": "ECMAScript", "text": "%TypedArray%.prototype.findLast ( predicate [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.findlast" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlast" } }, - "/indexed-collections#sec-%typedarray%.prototype.findlastindex": { + "/indexed-collections#sec-%25typedarray%25.prototype.findlastindex": { "current": { "number": "23.2.3.14", "spec": "ECMAScript", "text": "%TypedArray%.prototype.findLastIndex ( predicate [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.findlastindex" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlastindex" } }, - "/indexed-collections#sec-%typedarray%.prototype.foreach": { + "/indexed-collections#sec-%25typedarray%25.prototype.foreach": { "current": { "number": "23.2.3.15", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.forEach ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.foreach" + "text": "%TypedArray%.prototype.forEach ( callback [ , thisArg ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.foreach" } }, - "/indexed-collections#sec-%typedarray%.prototype.includes": { + "/indexed-collections#sec-%25typedarray%25.prototype.includes": { "current": { "number": "23.2.3.16", "spec": "ECMAScript", "text": "%TypedArray%.prototype.includes ( searchElement [ , fromIndex ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.includes" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.includes" } }, - "/indexed-collections#sec-%typedarray%.prototype.indexof": { + "/indexed-collections#sec-%25typedarray%25.prototype.indexof": { "current": { "number": "23.2.3.17", "spec": "ECMAScript", "text": "%TypedArray%.prototype.indexOf ( searchElement [ , fromIndex ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.indexof" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.indexof" } }, - "/indexed-collections#sec-%typedarray%.prototype.join": { + "/indexed-collections#sec-%25typedarray%25.prototype.join": { "current": { "number": "23.2.3.18", "spec": "ECMAScript", "text": "%TypedArray%.prototype.join ( separator )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.join" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.join" } }, - "/indexed-collections#sec-%typedarray%.prototype.keys": { + "/indexed-collections#sec-%25typedarray%25.prototype.keys": { "current": { "number": "23.2.3.19", "spec": "ECMAScript", "text": "%TypedArray%.prototype.keys ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.keys" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.keys" } }, - "/indexed-collections#sec-%typedarray%.prototype.lastindexof": { + "/indexed-collections#sec-%25typedarray%25.prototype.lastindexof": { "current": { "number": "23.2.3.20", "spec": "ECMAScript", "text": "%TypedArray%.prototype.lastIndexOf ( searchElement [ , fromIndex ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.lastindexof" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.lastindexof" } }, - "/indexed-collections#sec-%typedarray%.prototype.map": { + "/indexed-collections#sec-%25typedarray%25.prototype.map": { "current": { "number": "23.2.3.22", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.map ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.map" + "text": "%TypedArray%.prototype.map ( callback [ , thisArg ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.map" } }, - "/indexed-collections#sec-%typedarray%.prototype.reduce": { + "/indexed-collections#sec-%25typedarray%25.prototype.reduce": { "current": { "number": "23.2.3.23", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.reduce ( callbackfn [ , initialValue ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.reduce" + "text": "%TypedArray%.prototype.reduce ( callback [ , initialValue ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduce" } }, - "/indexed-collections#sec-%typedarray%.prototype.reduceright": { + "/indexed-collections#sec-%25typedarray%25.prototype.reduceright": { "current": { "number": "23.2.3.24", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.reduceRight ( callbackfn [ , initialValue ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.reduceright" + "text": "%TypedArray%.prototype.reduceRight ( callback [ , initialValue ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduceright" } }, - "/indexed-collections#sec-%typedarray%.prototype.reverse": { + "/indexed-collections#sec-%25typedarray%25.prototype.reverse": { "current": { "number": "23.2.3.25", "spec": "ECMAScript", "text": "%TypedArray%.prototype.reverse ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.reverse" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reverse" } }, - "/indexed-collections#sec-%typedarray%.prototype.set": { + "/indexed-collections#sec-%25typedarray%25.prototype.set": { "current": { "number": "23.2.3.26", "spec": "ECMAScript", "text": "%TypedArray%.prototype.set ( source [ , offset ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.set" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.set" } }, - "/indexed-collections#sec-%typedarray%.prototype.slice": { + "/indexed-collections#sec-%25typedarray%25.prototype.slice": { "current": { "number": "23.2.3.27", "spec": "ECMAScript", "text": "%TypedArray%.prototype.slice ( start, end )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.slice" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.slice" } }, - "/indexed-collections#sec-%typedarray%.prototype.some": { + "/indexed-collections#sec-%25typedarray%25.prototype.some": { "current": { "number": "23.2.3.28", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.some ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.some" + "text": "%TypedArray%.prototype.some ( callback [ , thisArg ] )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.some" } }, - "/indexed-collections#sec-%typedarray%.prototype.sort": { + "/indexed-collections#sec-%25typedarray%25.prototype.sort": { "current": { "number": "23.2.3.29", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.sort ( comparefn )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.sort" + "text": "%TypedArray%.prototype.sort ( comparator )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.sort" } }, - "/indexed-collections#sec-%typedarray%.prototype.subarray": { + "/indexed-collections#sec-%25typedarray%25.prototype.subarray": { "current": { "number": "23.2.3.30", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.subarray ( begin, end )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.subarray" + "text": "%TypedArray%.prototype.subarray ( start, end )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.subarray" } }, - "/indexed-collections#sec-%typedarray%.prototype.tolocalestring": { + "/indexed-collections#sec-%25typedarray%25.prototype.tolocalestring": { "current": { "number": "23.2.3.31", "spec": "ECMAScript", "text": "%TypedArray%.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.tolocalestring" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tolocalestring" } }, - "/indexed-collections#sec-%typedarray%.prototype.tostring": { + "/indexed-collections#sec-%25typedarray%25.prototype.toreversed": { "current": { "number": "23.2.3.32", "spec": "ECMAScript", - "text": "%TypedArray%.prototype.toString ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.tostring" + "text": "%TypedArray%.prototype.toReversed ( )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.toreversed" } }, - "/indexed-collections#sec-%typedarray%.prototype.values": { + "/indexed-collections#sec-%25typedarray%25.prototype.tosorted": { "current": { "number": "23.2.3.33", "spec": "ECMAScript", + "text": "%TypedArray%.prototype.toSorted ( comparator )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tosorted" + } + }, + "/indexed-collections#sec-%25typedarray%25.prototype.tostring": { + "current": { + "number": "23.2.3.34", + "spec": "ECMAScript", + "text": "%TypedArray%.prototype.toString ( )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tostring" + } + }, + "/indexed-collections#sec-%25typedarray%25.prototype.values": { + "current": { + "number": "23.2.3.35", + "spec": "ECMAScript", "text": "%TypedArray%.prototype.values ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%typedarray%.prototype.values" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.values" + } + }, + "/indexed-collections#sec-%25typedarray%25.prototype.with": { + "current": { + "number": "23.2.3.36", + "spec": "ECMAScript", + "text": "%TypedArray%.prototype.with ( index, value )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.with" } }, "/indexed-collections#sec-abstract-operations-for-typedarray-objects": { @@ -14645,7 +15037,7 @@ "current": { "number": "23.1.2.1", "spec": "ECMAScript", - "text": "Array.from ( items [ , mapfn [ , thisArg ] ] )", + "text": "Array.from ( items [ , mapper [ , thisArg ] ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.from" } }, @@ -14673,20 +15065,20 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype" } }, - "/indexed-collections#sec-array.prototype-@@iterator": { + "/indexed-collections#sec-array.prototype-%25symbol.iterator%25": { "current": { - "number": "23.1.3.36", + "number": "23.1.3.40", "spec": "ECMAScript", - "text": "Array.prototype [ @@iterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-@@iterator" + "text": "Array.prototype [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-%25symbol.iterator%25" } }, - "/indexed-collections#sec-array.prototype-@@unscopables": { + "/indexed-collections#sec-array.prototype-%25symbol.unscopables%25": { "current": { - "number": "23.1.3.37", + "number": "23.1.3.41", "spec": "ECMAScript", - "text": "Array.prototype [ @@unscopables ]", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-@@unscopables" + "text": "Array.prototype [ %Symbol.unscopables% ]", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-%25symbol.unscopables%25" } }, "/indexed-collections#sec-array.prototype.at": { @@ -14733,7 +15125,7 @@ "current": { "number": "23.1.3.6", "spec": "ECMAScript", - "text": "Array.prototype.every ( callbackfn [ , thisArg ] )", + "text": "Array.prototype.every ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.every" } }, @@ -14749,7 +15141,7 @@ "current": { "number": "23.1.3.8", "spec": "ECMAScript", - "text": "Array.prototype.filter ( callbackfn [ , thisArg ] )", + "text": "Array.prototype.filter ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.filter" } }, @@ -14805,7 +15197,7 @@ "current": { "number": "23.1.3.15", "spec": "ECMAScript", - "text": "Array.prototype.forEach ( callbackfn [ , thisArg ] )", + "text": "Array.prototype.forEach ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.foreach" } }, @@ -14853,7 +15245,7 @@ "current": { "number": "23.1.3.21", "spec": "ECMAScript", - "text": "Array.prototype.map ( callbackfn [ , thisArg ] )", + "text": "Array.prototype.map ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.map" } }, @@ -14877,7 +15269,7 @@ "current": { "number": "23.1.3.24", "spec": "ECMAScript", - "text": "Array.prototype.reduce ( callbackfn [ , initialValue ] )", + "text": "Array.prototype.reduce ( callback [ , initialValue ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reduce" } }, @@ -14885,7 +15277,7 @@ "current": { "number": "23.1.3.25", "spec": "ECMAScript", - "text": "Array.prototype.reduceRight ( callbackfn [ , initialValue ] )", + "text": "Array.prototype.reduceRight ( callback [ , initialValue ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reduceright" } }, @@ -14917,7 +15309,7 @@ "current": { "number": "23.1.3.29", "spec": "ECMAScript", - "text": "Array.prototype.some ( callbackfn [ , thisArg ] )", + "text": "Array.prototype.some ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.some" } }, @@ -14925,7 +15317,7 @@ "current": { "number": "23.1.3.30", "spec": "ECMAScript", - "text": "Array.prototype.sort ( comparefn )", + "text": "Array.prototype.sort ( comparator )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.sort" } }, @@ -14945,17 +15337,41 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tolocalestring" } }, - "/indexed-collections#sec-array.prototype.tostring": { + "/indexed-collections#sec-array.prototype.toreversed": { "current": { "number": "23.1.3.33", "spec": "ECMAScript", + "text": "Array.prototype.toReversed ( )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.toreversed" + } + }, + "/indexed-collections#sec-array.prototype.tosorted": { + "current": { + "number": "23.1.3.34", + "spec": "ECMAScript", + "text": "Array.prototype.toSorted ( comparator )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tosorted" + } + }, + "/indexed-collections#sec-array.prototype.tospliced": { + "current": { + "number": "23.1.3.35", + "spec": "ECMAScript", + "text": "Array.prototype.toSpliced ( start, skipCount, ...items )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tospliced" + } + }, + "/indexed-collections#sec-array.prototype.tostring": { + "current": { + "number": "23.1.3.36", + "spec": "ECMAScript", "text": "Array.prototype.toString ( )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tostring" } }, "/indexed-collections#sec-array.prototype.unshift": { "current": { - "number": "23.1.3.34", + "number": "23.1.3.37", "spec": "ECMAScript", "text": "Array.prototype.unshift ( ...items )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.unshift" @@ -14963,17 +15379,41 @@ }, "/indexed-collections#sec-array.prototype.values": { "current": { - "number": "23.1.3.35", + "number": "23.1.3.38", "spec": "ECMAScript", "text": "Array.prototype.values ( )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.values" } }, - "/indexed-collections#sec-createarrayiterator": { + "/indexed-collections#sec-array.prototype.with": { "current": { - "number": "23.1.5.1", + "number": "23.1.3.39", "spec": "ECMAScript", - "text": "CreateArrayIterator ( array, kind )", + "text": "Array.prototype.with ( index, value )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.with" + } + }, + "/indexed-collections#sec-comparearrayelements": { + "current": { + "number": "23.1.3.30.2", + "spec": "ECMAScript", + "text": "CompareArrayElements ( x, y, comparator )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-comparearrayelements" + } + }, + "/indexed-collections#sec-comparetypedarrayelements": { + "current": { + "number": "23.2.4.7", + "spec": "ECMAScript", + "text": "CompareTypedArrayElements ( x, y, comparator )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-comparetypedarrayelements" + } + }, + "/indexed-collections#sec-createarrayiterator": { + "current": { + "number": "23.1.5.1", + "spec": "ECMAScript", + "text": "CreateArrayIterator ( array, kind )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-createarrayiterator" } }, @@ -14993,60 +15433,60 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-flattenintoarray" } }, - "/indexed-collections#sec-get-%typedarray%-@@species": { + "/indexed-collections#sec-get-%25typedarray%25-%25symbol.species%25": { "current": { "number": "23.2.2.4", "spec": "ECMAScript", - "text": "get %TypedArray% [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%-@@species" + "text": "get %TypedArray% [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25-%25symbol.species%25" } }, - "/indexed-collections#sec-get-%typedarray%.prototype-@@tostringtag": { + "/indexed-collections#sec-get-%25typedarray%25.prototype-%25symbol.tostringtag%25": { "current": { - "number": "23.2.3.35", + "number": "23.2.3.38", "spec": "ECMAScript", - "text": "get %TypedArray%.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype-@@tostringtag" + "text": "get %TypedArray%.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype-%25symbol.tostringtag%25" } }, - "/indexed-collections#sec-get-%typedarray%.prototype.buffer": { + "/indexed-collections#sec-get-%25typedarray%25.prototype.buffer": { "current": { "number": "23.2.3.2", "spec": "ECMAScript", "text": "get %TypedArray%.prototype.buffer", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.buffer" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.buffer" } }, - "/indexed-collections#sec-get-%typedarray%.prototype.bytelength": { + "/indexed-collections#sec-get-%25typedarray%25.prototype.bytelength": { "current": { "number": "23.2.3.3", "spec": "ECMAScript", "text": "get %TypedArray%.prototype.byteLength", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.bytelength" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.bytelength" } }, - "/indexed-collections#sec-get-%typedarray%.prototype.byteoffset": { + "/indexed-collections#sec-get-%25typedarray%25.prototype.byteoffset": { "current": { "number": "23.2.3.4", "spec": "ECMAScript", "text": "get %TypedArray%.prototype.byteOffset", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.byteoffset" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.byteoffset" } }, - "/indexed-collections#sec-get-%typedarray%.prototype.length": { + "/indexed-collections#sec-get-%25typedarray%25.prototype.length": { "current": { "number": "23.2.3.21", "spec": "ECMAScript", "text": "get %TypedArray%.prototype.length", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%typedarray%.prototype.length" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.length" } }, - "/indexed-collections#sec-get-array-@@species": { + "/indexed-collections#sec-get-array-%25symbol.species%25": { "current": { "number": "23.1.2.5", "spec": "ECMAScript", - "text": "get Array [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-array-@@species" + "text": "get Array [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-array-%25symbol.species%25" } }, "/indexed-collections#sec-indexed-collections": { @@ -15113,20 +15553,20 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-array-instances-length" } }, - "/indexed-collections#sec-properties-of-the-%typedarray%-intrinsic-object": { + "/indexed-collections#sec-properties-of-the-%25typedarray%25-intrinsic-object": { "current": { "number": "23.2.2", "spec": "ECMAScript", "text": "Properties of the %TypedArray% Intrinsic Object", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%typedarray%-intrinsic-object" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%25typedarray%25-intrinsic-object" } }, - "/indexed-collections#sec-properties-of-the-%typedarrayprototype%-object": { + "/indexed-collections#sec-properties-of-the-%25typedarrayprototype%25-object": { "current": { "number": "23.2.3", "spec": "ECMAScript", "text": "Properties of the %TypedArray% Prototype Object", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%typedarrayprototype%-object" + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-%25typedarrayprototype%25-object" } }, "/indexed-collections#sec-properties-of-the-array-constructor": { @@ -15189,7 +15629,7 @@ "current": { "number": "23.1.3.30.1", "spec": "ECMAScript", - "text": "SortIndexedProperties ( obj, len, SortCompare )", + "text": "SortIndexedProperties ( obj, len, SortCompare, holes )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-sortindexedproperties" } }, @@ -15209,6 +15649,14 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-constructors" } }, + "/indexed-collections#sec-typedarray-create-same-type": { + "current": { + "number": "23.2.4.3", + "spec": "ECMAScript", + "text": "TypedArrayCreateSameType ( exemplar, argumentList )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-create-same-type" + } + }, "/indexed-collections#sec-typedarray-objects": { "current": { "number": "23.2", @@ -15249,9 +15697,17 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray.prototype.constructor" } }, + "/indexed-collections#sec-typedarraycreatefromconstructor": { + "current": { + "number": "23.2.4.2", + "spec": "ECMAScript", + "text": "TypedArrayCreateFromConstructor ( constructor, argumentList )", + "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarraycreatefromconstructor" + } + }, "/indexed-collections#sec-typedarrayelementsize": { "current": { - "number": "23.2.4.4", + "number": "23.2.4.5", "spec": "ECMAScript", "text": "TypedArrayElementSize ( O )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarrayelementsize" @@ -15259,7 +15715,7 @@ }, "/indexed-collections#sec-typedarrayelementtype": { "current": { - "number": "23.2.4.5", + "number": "23.2.4.6", "spec": "ECMAScript", "text": "TypedArrayElementType ( O )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarrayelementtype" @@ -15267,20 +15723,12 @@ }, "/indexed-collections#sec-validatetypedarray": { "current": { - "number": "23.2.4.3", + "number": "23.2.4.4", "spec": "ECMAScript", - "text": "ValidateTypedArray ( O )", + "text": "ValidateTypedArray ( O, order )", "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#sec-validatetypedarray" } }, - "/indexed-collections#typedarray-create": { - "current": { - "number": "23.2.4.2", - "spec": "ECMAScript", - "text": "TypedArrayCreate ( constructor, argumentList )", - "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#typedarray-create" - } - }, "/indexed-collections#typedarray-species-create": { "current": { "number": "23.2.4.1", @@ -15289,52 +15737,68 @@ "url": "https://tc39.es/ecma262/multipage/indexed-collections.html#typedarray-species-create" } }, - "/keyed-collections#sec-%mapiteratorprototype%-@@tostringtag": { + "/keyed-collections#sec-%25mapiteratorprototype%25-%25symbol.tostringtag%25": { "current": { "number": "24.1.5.2.2", "spec": "ECMAScript", - "text": "%MapIteratorPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%mapiteratorprototype%-@@tostringtag" + "text": "%MapIteratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25mapiteratorprototype%25-%25symbol.tostringtag%25" } }, - "/keyed-collections#sec-%mapiteratorprototype%-object": { + "/keyed-collections#sec-%25mapiteratorprototype%25-object": { "current": { "number": "24.1.5.2", "spec": "ECMAScript", "text": "The %MapIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%mapiteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25mapiteratorprototype%25-object" } }, - "/keyed-collections#sec-%mapiteratorprototype%.next": { + "/keyed-collections#sec-%25mapiteratorprototype%25.next": { "current": { "number": "24.1.5.2.1", "spec": "ECMAScript", "text": "%MapIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%mapiteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25mapiteratorprototype%25.next" } }, - "/keyed-collections#sec-%setiteratorprototype%-@@tostringtag": { + "/keyed-collections#sec-%25setiteratorprototype%25-%25symbol.tostringtag%25": { "current": { - "number": "24.2.5.2.2", + "number": "24.2.6.2.2", "spec": "ECMAScript", - "text": "%SetIteratorPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%setiteratorprototype%-@@tostringtag" + "text": "%SetIteratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25setiteratorprototype%25-%25symbol.tostringtag%25" } }, - "/keyed-collections#sec-%setiteratorprototype%-object": { + "/keyed-collections#sec-%25setiteratorprototype%25-object": { "current": { - "number": "24.2.5.2", + "number": "24.2.6.2", "spec": "ECMAScript", "text": "The %SetIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%setiteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25setiteratorprototype%25-object" } }, - "/keyed-collections#sec-%setiteratorprototype%.next": { + "/keyed-collections#sec-%25setiteratorprototype%25.next": { "current": { - "number": "24.2.5.2.1", + "number": "24.2.6.2.1", "spec": "ECMAScript", "text": "%SetIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%setiteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-%25setiteratorprototype%25.next" + } + }, + "/keyed-collections#sec-abstract-operations-for-keyed-collections": { + "current": { + "number": "24.5", + "spec": "ECMAScript", + "text": "Abstract Operations for Keyed Collections", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-abstract-operations-for-keyed-collections" + } + }, + "/keyed-collections#sec-abstract-operations-for-set-objects": { + "current": { + "number": "24.2.1", + "spec": "ECMAScript", + "text": "Abstract Operations For Set Objects", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-abstract-operations-for-set-objects" } }, "/keyed-collections#sec-add-entries-from-iterable": { @@ -15345,6 +15809,14 @@ "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-add-entries-from-iterable" } }, + "/keyed-collections#sec-canonicalizekeyedcollectionkey": { + "current": { + "number": "24.5.1", + "spec": "ECMAScript", + "text": "CanonicalizeKeyedCollectionKey ( key )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-canonicalizekeyedcollectionkey" + } + }, "/keyed-collections#sec-createmapiterator": { "current": { "number": "24.1.5.1", @@ -15355,18 +15827,18 @@ }, "/keyed-collections#sec-createsetiterator": { "current": { - "number": "24.2.5.1", + "number": "24.2.6.1", "spec": "ECMAScript", "text": "CreateSetIterator ( set, kind )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-createsetiterator" } }, - "/keyed-collections#sec-get-map-@@species": { + "/keyed-collections#sec-get-map-%25symbol.species%25": { "current": { - "number": "24.1.2.2", + "number": "24.1.2.3", "spec": "ECMAScript", - "text": "get Map [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-map-@@species" + "text": "get Map [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-map-%25symbol.species%25" } }, "/keyed-collections#sec-get-map.prototype.size": { @@ -15377,22 +15849,30 @@ "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-map.prototype.size" } }, - "/keyed-collections#sec-get-set-@@species": { + "/keyed-collections#sec-get-set-%25symbol.species%25": { "current": { - "number": "24.2.2.2", + "number": "24.2.3.2", "spec": "ECMAScript", - "text": "get Set [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-set-@@species" + "text": "get Set [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-set-%25symbol.species%25" } }, "/keyed-collections#sec-get-set.prototype.size": { "current": { - "number": "24.2.3.9", + "number": "24.2.4.14", "spec": "ECMAScript", "text": "get Set.prototype.size", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-set.prototype.size" } }, + "/keyed-collections#sec-getsetrecord": { + "current": { + "number": "24.2.1.2", + "spec": "ECMAScript", + "text": "GetSetRecord ( obj )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-getsetrecord" + } + }, "/keyed-collections#sec-keyed-collections": { "current": { "number": "24", @@ -15433,28 +15913,36 @@ "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-objects" } }, - "/keyed-collections#sec-map.prototype": { + "/keyed-collections#sec-map.groupby": { "current": { "number": "24.1.2.1", "spec": "ECMAScript", + "text": "Map.groupBy ( items, callback )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.groupby" + } + }, + "/keyed-collections#sec-map.prototype": { + "current": { + "number": "24.1.2.2", + "spec": "ECMAScript", "text": "Map.prototype", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype" } }, - "/keyed-collections#sec-map.prototype-@@iterator": { + "/keyed-collections#sec-map.prototype-%25symbol.iterator%25": { "current": { "number": "24.1.3.12", "spec": "ECMAScript", - "text": "Map.prototype [ @@iterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype-@@iterator" + "text": "Map.prototype [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype-%25symbol.iterator%25" } }, - "/keyed-collections#sec-map.prototype-@@tostringtag": { + "/keyed-collections#sec-map.prototype-%25symbol.tostringtag%25": { "current": { "number": "24.1.3.13", "spec": "ECMAScript", - "text": "Map.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype-@@tostringtag" + "text": "Map.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype-%25symbol.tostringtag%25" } }, "/keyed-collections#sec-map.prototype.clear": { @@ -15493,7 +15981,7 @@ "current": { "number": "24.1.3.5", "spec": "ECMAScript", - "text": "Map.prototype.forEach ( callbackfn [ , thisArg ] )", + "text": "Map.prototype.forEach ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.foreach" } }, @@ -15547,7 +16035,7 @@ }, "/keyed-collections#sec-properties-of-set-instances": { "current": { - "number": "24.2.4", + "number": "24.2.5", "spec": "ECMAScript", "text": "Properties of Set Instances", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-properties-of-set-instances" @@ -15571,7 +16059,7 @@ }, "/keyed-collections#sec-properties-of-the-set-constructor": { "current": { - "number": "24.2.2", + "number": "24.2.3", "spec": "ECMAScript", "text": "Properties of the Set Constructor", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-properties-of-the-set-constructor" @@ -15579,7 +16067,7 @@ }, "/keyed-collections#sec-properties-of-the-set-prototype-object": { "current": { - "number": "24.2.3", + "number": "24.2.4", "spec": "ECMAScript", "text": "Properties of the Set Prototype Object", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-properties-of-the-set-prototype-object" @@ -15635,7 +16123,7 @@ }, "/keyed-collections#sec-set-constructor": { "current": { - "number": "24.2.1", + "number": "24.2.2", "spec": "ECMAScript", "text": "The Set Constructor", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-constructor" @@ -15643,7 +16131,7 @@ }, "/keyed-collections#sec-set-iterable": { "current": { - "number": "24.2.1.1", + "number": "24.2.2.1", "spec": "ECMAScript", "text": "Set ( [ iterable ] )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-iterable" @@ -15651,7 +16139,7 @@ }, "/keyed-collections#sec-set-iterator-objects": { "current": { - "number": "24.2.5", + "number": "24.2.6", "spec": "ECMAScript", "text": "Set Iterator Objects", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-iterator-objects" @@ -15665,33 +16153,41 @@ "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-objects" } }, + "/keyed-collections#sec-set-records": { + "current": { + "number": "24.2.1.1", + "spec": "ECMAScript", + "text": "Set Records", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set-records" + } + }, "/keyed-collections#sec-set.prototype": { "current": { - "number": "24.2.2.1", + "number": "24.2.3.1", "spec": "ECMAScript", "text": "Set.prototype", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype" } }, - "/keyed-collections#sec-set.prototype-@@iterator": { + "/keyed-collections#sec-set.prototype-%25symbol.iterator%25": { "current": { - "number": "24.2.3.11", + "number": "24.2.4.18", "spec": "ECMAScript", - "text": "Set.prototype [ @@iterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype-@@iterator" + "text": "Set.prototype [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype-%25symbol.iterator%25" } }, - "/keyed-collections#sec-set.prototype-@@tostringtag": { + "/keyed-collections#sec-set.prototype-%25symbol.tostringtag%25": { "current": { - "number": "24.2.3.12", + "number": "24.2.4.19", "spec": "ECMAScript", - "text": "Set.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype-@@tostringtag" + "text": "Set.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype-%25symbol.tostringtag%25" } }, "/keyed-collections#sec-set.prototype.add": { "current": { - "number": "24.2.3.1", + "number": "24.2.4.1", "spec": "ECMAScript", "text": "Set.prototype.add ( value )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.add" @@ -15699,7 +16195,7 @@ }, "/keyed-collections#sec-set.prototype.clear": { "current": { - "number": "24.2.3.2", + "number": "24.2.4.2", "spec": "ECMAScript", "text": "Set.prototype.clear ( )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.clear" @@ -15707,7 +16203,7 @@ }, "/keyed-collections#sec-set.prototype.constructor": { "current": { - "number": "24.2.3.3", + "number": "24.2.4.3", "spec": "ECMAScript", "text": "Set.prototype.constructor", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.constructor" @@ -15715,15 +16211,23 @@ }, "/keyed-collections#sec-set.prototype.delete": { "current": { - "number": "24.2.3.4", + "number": "24.2.4.4", "spec": "ECMAScript", "text": "Set.prototype.delete ( value )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.delete" } }, + "/keyed-collections#sec-set.prototype.difference": { + "current": { + "number": "24.2.4.5", + "spec": "ECMAScript", + "text": "Set.prototype.difference ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.difference" + } + }, "/keyed-collections#sec-set.prototype.entries": { "current": { - "number": "24.2.3.5", + "number": "24.2.4.6", "spec": "ECMAScript", "text": "Set.prototype.entries ( )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.entries" @@ -15731,36 +16235,108 @@ }, "/keyed-collections#sec-set.prototype.foreach": { "current": { - "number": "24.2.3.6", + "number": "24.2.4.7", "spec": "ECMAScript", - "text": "Set.prototype.forEach ( callbackfn [ , thisArg ] )", + "text": "Set.prototype.forEach ( callback [ , thisArg ] )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.foreach" } }, "/keyed-collections#sec-set.prototype.has": { "current": { - "number": "24.2.3.7", + "number": "24.2.4.8", "spec": "ECMAScript", "text": "Set.prototype.has ( value )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.has" } }, + "/keyed-collections#sec-set.prototype.intersection": { + "current": { + "number": "24.2.4.9", + "spec": "ECMAScript", + "text": "Set.prototype.intersection ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.intersection" + } + }, + "/keyed-collections#sec-set.prototype.isdisjointfrom": { + "current": { + "number": "24.2.4.10", + "spec": "ECMAScript", + "text": "Set.prototype.isDisjointFrom ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.isdisjointfrom" + } + }, + "/keyed-collections#sec-set.prototype.issubsetof": { + "current": { + "number": "24.2.4.11", + "spec": "ECMAScript", + "text": "Set.prototype.isSubsetOf ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.issubsetof" + } + }, + "/keyed-collections#sec-set.prototype.issupersetof": { + "current": { + "number": "24.2.4.12", + "spec": "ECMAScript", + "text": "Set.prototype.isSupersetOf ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.issupersetof" + } + }, "/keyed-collections#sec-set.prototype.keys": { "current": { - "number": "24.2.3.8", + "number": "24.2.4.13", "spec": "ECMAScript", "text": "Set.prototype.keys ( )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.keys" } }, + "/keyed-collections#sec-set.prototype.symmetricdifference": { + "current": { + "number": "24.2.4.15", + "spec": "ECMAScript", + "text": "Set.prototype.symmetricDifference ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.symmetricdifference" + } + }, + "/keyed-collections#sec-set.prototype.union": { + "current": { + "number": "24.2.4.16", + "spec": "ECMAScript", + "text": "Set.prototype.union ( other )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.union" + } + }, "/keyed-collections#sec-set.prototype.values": { "current": { - "number": "24.2.3.10", + "number": "24.2.4.17", "spec": "ECMAScript", "text": "Set.prototype.values ( )", "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.values" } }, + "/keyed-collections#sec-setdatahas": { + "current": { + "number": "24.2.1.3", + "spec": "ECMAScript", + "text": "SetDataHas ( setData, value )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdatahas" + } + }, + "/keyed-collections#sec-setdataindex": { + "current": { + "number": "24.2.1.4", + "spec": "ECMAScript", + "text": "SetDataIndex ( setData, value )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdataindex" + } + }, + "/keyed-collections#sec-setdatasize": { + "current": { + "number": "24.2.1.5", + "spec": "ECMAScript", + "text": "SetDataSize ( setData )", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-setdatasize" + } + }, "/keyed-collections#sec-weakmap-constructor": { "current": { "number": "24.3.1", @@ -15793,12 +16369,12 @@ "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap.prototype" } }, - "/keyed-collections#sec-weakmap.prototype-@@tostringtag": { + "/keyed-collections#sec-weakmap.prototype-%25symbol.tostringtag%25": { "current": { "number": "24.3.3.6", "spec": "ECMAScript", - "text": "WeakMap.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap.prototype-@@tostringtag" + "text": "WeakMap.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap.prototype-%25symbol.tostringtag%25" } }, "/keyed-collections#sec-weakmap.prototype.constructor": { @@ -15873,12 +16449,12 @@ "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakset.prototype" } }, - "/keyed-collections#sec-weakset.prototype-@@tostringtag": { + "/keyed-collections#sec-weakset.prototype-%25symbol.tostringtag%25": { "current": { "number": "24.4.3.5", "spec": "ECMAScript", - "text": "WeakSet.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakset.prototype-@@tostringtag" + "text": "WeakSet.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakset.prototype-%25symbol.tostringtag%25" } }, "/keyed-collections#sec-weakset.prototype.add": { @@ -15945,12 +16521,12 @@ "url": "https://tc39.es/ecma262/multipage/managing-memory.html#sec-finalization-registry.prototype" } }, - "/managing-memory#sec-finalization-registry.prototype-@@tostringtag": { + "/managing-memory#sec-finalization-registry.prototype-%25symbol.tostringtag%25": { "current": { "number": "26.2.3.4", "spec": "ECMAScript", - "text": "FinalizationRegistry.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/managing-memory.html#sec-finalization-registry.prototype-@@tostringtag" + "text": "FinalizationRegistry.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/managing-memory.html#sec-finalization-registry.prototype-%25symbol.tostringtag%25" } }, "/managing-memory#sec-finalization-registry.prototype.constructor": { @@ -16065,12 +16641,12 @@ "url": "https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref.prototype" } }, - "/managing-memory#sec-weak-ref.prototype-@@tostringtag": { + "/managing-memory#sec-weak-ref.prototype-%25symbol.tostringtag%25": { "current": { "number": "26.1.3.3", "spec": "ECMAScript", - "text": "WeakRef.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref.prototype-@@tostringtag" + "text": "WeakRef.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref.prototype-%25symbol.tostringtag%25" } }, "/managing-memory#sec-weak-ref.prototype.constructor": { @@ -16125,7 +16701,7 @@ "current": { "number": "29.6.1", "spec": "ECMAScript", - "text": "agent-order", + "text": "is-agent-order-before", "url": "https://tc39.es/ecma262/multipage/memory-model.html#sec-agent-order" } }, @@ -16577,6 +17153,14 @@ "url": "https://tc39.es/ecma262/multipage/notational-conventions.html#sec-value-notation" } }, + "/numbers-and-dates#sec-availablenamedtimezoneidentifiers": { + "current": { + "number": "21.4.1.23", + "spec": "ECMAScript", + "text": "AvailableNamedTimeZoneIdentifiers ( )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-availablenamedtimezoneidentifiers" + } + }, "/numbers-and-dates#sec-bigint-constructor": { "current": { "number": "21.2.1", @@ -16625,12 +17209,12 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-bigint.prototype" } }, - "/numbers-and-dates#sec-bigint.prototype-@@tostringtag": { + "/numbers-and-dates#sec-bigint.prototype-%25symbol.tostringtag%25": { "current": { "number": "21.2.3.5", "spec": "ECMAScript", - "text": "BigInt.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-bigint.prototype-@@tostringtag" + "text": "BigInt.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-bigint.prototype-%25symbol.tostringtag%25" } }, "/numbers-and-dates#sec-bigint.prototype.constructor": { @@ -16681,14 +17265,6 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date-constructor" } }, - "/numbers-and-dates#sec-date-number": { - "current": { - "number": "21.4.1.5", - "spec": "ECMAScript", - "text": "Date Number", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date-number" - } - }, "/numbers-and-dates#sec-date-objects": { "current": { "number": "21.4", @@ -16699,7 +17275,7 @@ }, "/numbers-and-dates#sec-date-time-string-format": { "current": { - "number": "21.4.1.18", + "number": "21.4.1.32", "spec": "ECMAScript", "text": "Date Time String Format", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date-time-string-format" @@ -16729,12 +17305,12 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype" } }, - "/numbers-and-dates#sec-date.prototype-@@toprimitive": { + "/numbers-and-dates#sec-date.prototype-%25symbol.toprimitive%25": { "current": { "number": "21.4.4.45", "spec": "ECMAScript", - "text": "Date.prototype [ @@toPrimitive ] ( hint )", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype-@@toprimitive" + "text": "Date.prototype [ %Symbol.toPrimitive% ] ( hint )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.prototype-%25symbol.toprimitive%25" } }, "/numbers-and-dates#sec-date.prototype.constructor": { @@ -17097,6 +17673,14 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-date.utc" } }, + "/numbers-and-dates#sec-datefromtime": { + "current": { + "number": "21.4.1.12", + "spec": "ECMAScript", + "text": "DateFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-datefromtime" + } + }, "/numbers-and-dates#sec-datestring": { "current": { "number": "21.4.4.41.2", @@ -17105,25 +17689,41 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-datestring" } }, - "/numbers-and-dates#sec-day-number-and-time-within-day": { + "/numbers-and-dates#sec-day": { "current": { - "number": "21.4.1.2", + "number": "21.4.1.3", "spec": "ECMAScript", - "text": "Day Number and Time within Day", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-day-number-and-time-within-day" + "text": "Day ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-day" } }, - "/numbers-and-dates#sec-defaulttimezone": { + "/numbers-and-dates#sec-dayfromyear": { "current": { - "number": "21.4.1.10", + "number": "21.4.1.6", + "spec": "ECMAScript", + "text": "DayFromYear ( y )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-dayfromyear" + } + }, + "/numbers-and-dates#sec-daysinyear": { + "current": { + "number": "21.4.1.5", + "spec": "ECMAScript", + "text": "DaysInYear ( y )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-daysinyear" + } + }, + "/numbers-and-dates#sec-daywithinyear": { + "current": { + "number": "21.4.1.9", "spec": "ECMAScript", - "text": "DefaultTimeZone ( )", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-defaulttimezone" + "text": "DayWithinYear ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-daywithinyear" } }, "/numbers-and-dates#sec-expanded-years": { "current": { - "number": "21.4.1.18.1", + "number": "21.4.1.32.1", "spec": "ECMAScript", "text": "Expanded Years", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-expanded-years" @@ -17139,7 +17739,7 @@ }, "/numbers-and-dates#sec-getnamedtimezoneepochnanoseconds": { "current": { - "number": "21.4.1.8", + "number": "21.4.1.20", "spec": "ECMAScript", "text": "GetNamedTimeZoneEpochNanoseconds ( timeZoneIdentifier, year, month, day, hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneepochnanoseconds" @@ -17147,7 +17747,7 @@ }, "/numbers-and-dates#sec-getnamedtimezoneoffsetnanoseconds": { "current": { - "number": "21.4.1.9", + "number": "21.4.1.21", "spec": "ECMAScript", "text": "GetNamedTimeZoneOffsetNanoseconds ( timeZoneIdentifier, epochNanoseconds )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getnamedtimezoneoffsetnanoseconds" @@ -17155,23 +17755,31 @@ }, "/numbers-and-dates#sec-getutcepochnanoseconds": { "current": { - "number": "21.4.1.7", + "number": "21.4.1.18", "spec": "ECMAScript", "text": "GetUTCEpochNanoseconds ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-getutcepochnanoseconds" } }, - "/numbers-and-dates#sec-hours-minutes-second-and-milliseconds": { + "/numbers-and-dates#sec-hourfromtime": { "current": { - "number": "21.4.1.13", + "number": "21.4.1.14", + "spec": "ECMAScript", + "text": "HourFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-hourfromtime" + } + }, + "/numbers-and-dates#sec-inleapyear": { + "current": { + "number": "21.4.1.10", "spec": "ECMAScript", - "text": "Hours, Minutes, Second, and Milliseconds", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-hours-minutes-second-and-milliseconds" + "text": "InLeapYear ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-inleapyear" } }, "/numbers-and-dates#sec-istimezoneoffsetstring": { "current": { - "number": "21.4.1.19.1", + "number": "21.4.1.33.1", "spec": "ECMAScript", "text": "IsTimeZoneOffsetString ( offsetString )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-istimezoneoffsetstring" @@ -17179,7 +17787,7 @@ }, "/numbers-and-dates#sec-localtime": { "current": { - "number": "21.4.1.11", + "number": "21.4.1.25", "spec": "ECMAScript", "text": "LocalTime ( t )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-localtime" @@ -17187,7 +17795,7 @@ }, "/numbers-and-dates#sec-makedate": { "current": { - "number": "21.4.1.16", + "number": "21.4.1.29", "spec": "ECMAScript", "text": "MakeDate ( day, time )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makedate" @@ -17195,26 +17803,34 @@ }, "/numbers-and-dates#sec-makeday": { "current": { - "number": "21.4.1.15", + "number": "21.4.1.28", "spec": "ECMAScript", "text": "MakeDay ( year, month, date )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makeday" } }, + "/numbers-and-dates#sec-makefullyear": { + "current": { + "number": "21.4.1.30", + "spec": "ECMAScript", + "text": "MakeFullYear ( year )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-makefullyear" + } + }, "/numbers-and-dates#sec-maketime": { "current": { - "number": "21.4.1.14", + "number": "21.4.1.27", "spec": "ECMAScript", "text": "MakeTime ( hour, min, sec, ms )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-maketime" } }, - "/numbers-and-dates#sec-math-@@tostringtag": { + "/numbers-and-dates#sec-math-%25symbol.tostringtag%25": { "current": { "number": "21.3.1.9", "spec": "ECMAScript", - "text": "Math [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math-@@tostringtag" + "text": "Math [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math-%25symbol.tostringtag%25" } }, "/numbers-and-dates#sec-math-object": { @@ -17569,12 +18185,28 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.trunc" } }, - "/numbers-and-dates#sec-month-number": { + "/numbers-and-dates#sec-minfromtime": { "current": { - "number": "21.4.1.4", + "number": "21.4.1.15", + "spec": "ECMAScript", + "text": "MinFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-minfromtime" + } + }, + "/numbers-and-dates#sec-monthfromtime": { + "current": { + "number": "21.4.1.11", + "spec": "ECMAScript", + "text": "MonthFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-monthfromtime" + } + }, + "/numbers-and-dates#sec-msfromtime": { + "current": { + "number": "21.4.1.17", "spec": "ECMAScript", - "text": "Month Number", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-month-number" + "text": "msFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-msfromtime" } }, "/numbers-and-dates#sec-number-constructor": { @@ -17803,12 +18435,20 @@ }, "/numbers-and-dates#sec-parsetimezoneoffsetstring": { "current": { - "number": "21.4.1.19.2", + "number": "21.4.1.33.2", "spec": "ECMAScript", "text": "ParseTimeZoneOffsetString ( offsetString )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-parsetimezoneoffsetstring" } }, + "/numbers-and-dates#sec-properties-of-bigint-instances": { + "current": { + "number": "21.2.4", + "spec": "ECMAScript", + "text": "Properties of BigInt Instances", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-properties-of-bigint-instances" + } + }, "/numbers-and-dates#sec-properties-of-date-instances": { "current": { "number": "21.4.5", @@ -17873,6 +18513,46 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-properties-of-the-number-prototype-object" } }, + "/numbers-and-dates#sec-secfromtime": { + "current": { + "number": "21.4.1.16", + "spec": "ECMAScript", + "text": "SecFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-secfromtime" + } + }, + "/numbers-and-dates#sec-systemtimezoneidentifier": { + "current": { + "number": "21.4.1.24", + "spec": "ECMAScript", + "text": "SystemTimeZoneIdentifier ( )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-systemtimezoneidentifier" + } + }, + "/numbers-and-dates#sec-thisbigintvalue": { + "current": { + "number": "21.2.3.4.1", + "spec": "ECMAScript", + "text": "ThisBigIntValue ( value )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-thisbigintvalue" + } + }, + "/numbers-and-dates#sec-thisnumbervalue": { + "current": { + "number": "21.1.3.7.1", + "spec": "ECMAScript", + "text": "ThisNumberValue ( value )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-thisnumbervalue" + } + }, + "/numbers-and-dates#sec-time-related-constants": { + "current": { + "number": "21.4.1.2", + "spec": "ECMAScript", + "text": "Time-related Constants", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-related-constants" + } + }, "/numbers-and-dates#sec-time-values-and-time-range": { "current": { "number": "21.4.1.1", @@ -17881,22 +18561,46 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-values-and-time-range" } }, - "/numbers-and-dates#sec-time-zone-offset-strings": { + "/numbers-and-dates#sec-time-zone-identifier-record": { + "current": { + "number": "21.4.1.22", + "spec": "ECMAScript", + "text": "Time Zone Identifier Record", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifier-record" + } + }, + "/numbers-and-dates#sec-time-zone-identifiers": { "current": { "number": "21.4.1.19", "spec": "ECMAScript", + "text": "Time Zone Identifiers", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-identifiers" + } + }, + "/numbers-and-dates#sec-time-zone-offset-strings": { + "current": { + "number": "21.4.1.33", + "spec": "ECMAScript", "text": "Time Zone Offset String Format", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-time-zone-offset-strings" } }, "/numbers-and-dates#sec-timeclip": { "current": { - "number": "21.4.1.17", + "number": "21.4.1.31", "spec": "ECMAScript", "text": "TimeClip ( time )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timeclip" } }, + "/numbers-and-dates#sec-timefromyear": { + "current": { + "number": "21.4.1.7", + "spec": "ECMAScript", + "text": "TimeFromYear ( y )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timefromyear" + } + }, "/numbers-and-dates#sec-timestring": { "current": { "number": "21.4.4.41.1", @@ -17905,6 +18609,14 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timestring" } }, + "/numbers-and-dates#sec-timewithinday": { + "current": { + "number": "21.4.1.4", + "spec": "ECMAScript", + "text": "TimeWithinDay ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-timewithinday" + } + }, "/numbers-and-dates#sec-timezoneestring": { "current": { "number": "21.4.4.41.3", @@ -17923,7 +18635,7 @@ }, "/numbers-and-dates#sec-utc-t": { "current": { - "number": "21.4.1.12", + "number": "21.4.1.26", "spec": "ECMAScript", "text": "UTC ( t )", "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-utc-t" @@ -17937,28 +18649,28 @@ "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-value-properties-of-the-math-object" } }, - "/numbers-and-dates#sec-week-day": { + "/numbers-and-dates#sec-weekday": { "current": { - "number": "21.4.1.6", + "number": "21.4.1.13", "spec": "ECMAScript", - "text": "Week Day", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-week-day" + "text": "WeekDay ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-weekday" } }, - "/numbers-and-dates#sec-year-number": { + "/numbers-and-dates#sec-yearfromtime": { "current": { - "number": "21.4.1.3", + "number": "21.4.1.8", "spec": "ECMAScript", - "text": "Year Number", - "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-year-number" + "text": "YearFromTime ( t )", + "url": "https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-yearfromtime" } }, - "/ordinary-and-exotic-objects-behaviours#sec-%throwtypeerror%": { + "/ordinary-and-exotic-objects-behaviours#sec-%25throwtypeerror%25": { "current": { "number": "10.2.4.1", "spec": "ECMAScript", "text": "%ThrowTypeError% ( )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-%throwtypeerror%" + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-%25throwtypeerror%25" } }, "/ordinary-and-exotic-objects-behaviours#sec-addrestrictedfunctionproperties": { @@ -18121,10 +18833,18 @@ "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-built-in-function-objects-construct-argumentslist-newtarget" } }, - "/ordinary-and-exotic-objects-behaviours#sec-createbuiltinfunction": { + "/ordinary-and-exotic-objects-behaviours#sec-builtincallorconstruct": { "current": { "number": "10.3.3", "spec": "ECMAScript", + "text": "BuiltinCallOrConstruct ( F, thisArgument, argumentsList, newTarget )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-builtincallorconstruct" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-createbuiltinfunction": { + "current": { + "number": "10.3.4", + "spec": "ECMAScript", "text": "CreateBuiltinFunction ( behaviour, length, name, additionalInternalSlotsList [ , realm [ , prototype [ , prefix ] ] ] )", "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-createbuiltinfunction" } @@ -18209,111 +18929,39 @@ "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-immutable-prototype-exotic-objects-setprototypeof-v" } }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects": { + "/ordinary-and-exotic-objects-behaviours#sec-isarraybufferviewoutofbounds": { "current": { - "number": "10.4.5", + "number": "10.4.5.17", "spec": "ECMAScript", - "text": "Integer-Indexed Exotic Objects", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects" + "text": "IsArrayBufferViewOutOfBounds ( O )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-isarraybufferviewoutofbounds" } }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-defineownproperty-p-desc": { + "/ordinary-and-exotic-objects-behaviours#sec-iscompatiblepropertydescriptor": { "current": { - "number": "10.4.5.3", + "number": "10.1.6.2", "spec": "ECMAScript", - "text": "[[DefineOwnProperty]] ( P, Desc )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-defineownproperty-p-desc" + "text": "IsCompatiblePropertyDescriptor ( Extensible, Desc, Current )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-iscompatiblepropertydescriptor" } }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-delete-p": { + "/ordinary-and-exotic-objects-behaviours#sec-istypedarrayoutofbounds": { "current": { - "number": "10.4.5.6", + "number": "10.4.5.13", "spec": "ECMAScript", - "text": "[[Delete]] ( P )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-delete-p" + "text": "IsTypedArrayOutOfBounds ( taRecord )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-istypedarrayoutofbounds" } }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-get-p-receiver": { + "/ordinary-and-exotic-objects-behaviours#sec-isvalidintegerindex": { "current": { - "number": "10.4.5.4", + "number": "10.4.5.14", "spec": "ECMAScript", - "text": "[[Get]] ( P, Receiver )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-get-p-receiver" + "text": "IsValidIntegerIndex ( O, index )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-isvalidintegerindex" } }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-getownproperty-p": { - "current": { - "number": "10.4.5.1", - "spec": "ECMAScript", - "text": "[[GetOwnProperty]] ( P )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-getownproperty-p" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-hasproperty-p": { - "current": { - "number": "10.4.5.2", - "spec": "ECMAScript", - "text": "[[HasProperty]] ( P )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-hasproperty-p" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-ownpropertykeys": { - "current": { - "number": "10.4.5.7", - "spec": "ECMAScript", - "text": "[[OwnPropertyKeys]] ( )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-ownpropertykeys" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-integer-indexed-exotic-objects-set-p-v-receiver": { - "current": { - "number": "10.4.5.5", - "spec": "ECMAScript", - "text": "[[Set]] ( P, V, Receiver )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integer-indexed-exotic-objects-set-p-v-receiver" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-integerindexedelementget": { - "current": { - "number": "10.4.5.10", - "spec": "ECMAScript", - "text": "IntegerIndexedElementGet ( O, index )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integerindexedelementget" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-integerindexedelementset": { - "current": { - "number": "10.4.5.11", - "spec": "ECMAScript", - "text": "IntegerIndexedElementSet ( O, index, value )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integerindexedelementset" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-integerindexedobjectcreate": { - "current": { - "number": "10.4.5.8", - "spec": "ECMAScript", - "text": "IntegerIndexedObjectCreate ( prototype )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-integerindexedobjectcreate" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-iscompatiblepropertydescriptor": { - "current": { - "number": "10.1.6.2", - "spec": "ECMAScript", - "text": "IsCompatiblePropertyDescriptor ( Extensible, Desc, Current )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-iscompatiblepropertydescriptor" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-isvalidintegerindex": { - "current": { - "number": "10.4.5.9", - "spec": "ECMAScript", - "text": "IsValidIntegerIndex ( O, index )", - "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-isvalidintegerindex" - } - }, - "/ordinary-and-exotic-objects-behaviours#sec-makearggetter": { + "/ordinary-and-exotic-objects-behaviours#sec-makearggetter": { "current": { "number": "10.4.4.7.1", "spec": "ECMAScript", @@ -18353,6 +19001,14 @@ "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-makemethod" } }, + "/ordinary-and-exotic-objects-behaviours#sec-maketypedarraywithbufferwitnessrecord": { + "current": { + "number": "10.4.5.9", + "spec": "ECMAScript", + "text": "MakeTypedArrayWithBufferWitnessRecord ( obj, order )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-maketypedarraywithbufferwitnessrecord" + } + }, "/ordinary-and-exotic-objects-behaviours#sec-module-namespace-exotic-objects": { "current": { "number": "10.4.6", @@ -18913,6 +19569,118 @@ "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-stringgetownproperty" } }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-defineownproperty": { + "current": { + "number": "10.4.5.3", + "spec": "ECMAScript", + "text": "[[DefineOwnProperty]] ( P, Desc )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-defineownproperty" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-delete": { + "current": { + "number": "10.4.5.6", + "spec": "ECMAScript", + "text": "[[Delete]] ( P )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-delete" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-exotic-objects": { + "current": { + "number": "10.4.5", + "spec": "ECMAScript", + "text": "TypedArray Exotic Objects", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-exotic-objects" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-get": { + "current": { + "number": "10.4.5.4", + "spec": "ECMAScript", + "text": "[[Get]] ( P, Receiver )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-get" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-getownproperty": { + "current": { + "number": "10.4.5.1", + "spec": "ECMAScript", + "text": "[[GetOwnProperty]] ( P )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-getownproperty" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-hasproperty": { + "current": { + "number": "10.4.5.2", + "spec": "ECMAScript", + "text": "[[HasProperty]] ( P )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-hasproperty" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-ownpropertykeys": { + "current": { + "number": "10.4.5.7", + "spec": "ECMAScript", + "text": "[[OwnPropertyKeys]] ( )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-ownpropertykeys" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-set": { + "current": { + "number": "10.4.5.5", + "spec": "ECMAScript", + "text": "[[Set]] ( P, V, Receiver )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-set" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarray-with-buffer-witness-records": { + "current": { + "number": "10.4.5.8", + "spec": "ECMAScript", + "text": "TypedArray With Buffer Witness Records", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarray-with-buffer-witness-records" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarraybytelength": { + "current": { + "number": "10.4.5.11", + "spec": "ECMAScript", + "text": "TypedArrayByteLength ( taRecord )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraybytelength" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarraycreate": { + "current": { + "number": "10.4.5.10", + "spec": "ECMAScript", + "text": "TypedArrayCreate ( prototype )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraycreate" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarraygetelement": { + "current": { + "number": "10.4.5.15", + "spec": "ECMAScript", + "text": "TypedArrayGetElement ( O, index )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraygetelement" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarraylength": { + "current": { + "number": "10.4.5.12", + "spec": "ECMAScript", + "text": "TypedArrayLength ( taRecord )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraylength" + } + }, + "/ordinary-and-exotic-objects-behaviours#sec-typedarraysetelement": { + "current": { + "number": "10.4.5.16", + "spec": "ECMAScript", + "text": "TypedArraySetElement ( O, index, value )", + "url": "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-typedarraysetelement" + } + }, "/ordinary-and-exotic-objects-behaviours#sec-validateandapplypropertydescriptor": { "current": { "number": "10.1.6.3", @@ -18931,7 +19699,7 @@ }, "/overview#sec-attribute": { "current": { - "number": "4.4.39", + "number": "4.4.40", "spec": "ECMAScript", "text": "attribute", "url": "https://tc39.es/ecma262/multipage/overview.html#sec-attribute" @@ -18953,6 +19721,14 @@ "url": "https://tc39.es/ecma262/multipage/overview.html#sec-boolean-object" } }, + "/overview#sec-built-in-constructor": { + "current": { + "number": "4.4.36", + "spec": "ECMAScript", + "text": "built-in constructor", + "url": "https://tc39.es/ecma262/multipage/overview.html#sec-built-in-constructor" + } + }, "/overview#sec-built-in-function": { "current": { "number": "4.4.35", @@ -18963,7 +19739,7 @@ }, "/overview#sec-built-in-method": { "current": { - "number": "4.4.38", + "number": "4.4.39", "spec": "ECMAScript", "text": "built-in method", "url": "https://tc39.es/ecma262/multipage/overview.html#sec-built-in-method" @@ -19011,7 +19787,7 @@ }, "/overview#sec-inherited-property": { "current": { - "number": "4.4.41", + "number": "4.4.42", "spec": "ECMAScript", "text": "inherited property", "url": "https://tc39.es/ecma262/multipage/overview.html#sec-inherited-property" @@ -19019,7 +19795,7 @@ }, "/overview#sec-method": { "current": { - "number": "4.4.37", + "number": "4.4.38", "spec": "ECMAScript", "text": "method", "url": "https://tc39.es/ecma262/multipage/overview.html#sec-method" @@ -19075,7 +19851,7 @@ }, "/overview#sec-own-property": { "current": { - "number": "4.4.40", + "number": "4.4.41", "spec": "ECMAScript", "text": "own property", "url": "https://tc39.es/ecma262/multipage/overview.html#sec-own-property" @@ -19091,7 +19867,7 @@ }, "/overview#sec-property": { "current": { - "number": "4.4.36", + "number": "4.4.37", "spec": "ECMAScript", "text": "property", "url": "https://tc39.es/ecma262/multipage/overview.html#sec-property" @@ -19321,12 +20097,12 @@ "url": "https://tc39.es/ecma262/multipage/overview.html#sec-web-scripting" } }, - "/reflection#sec-@@tostringtag": { + "/reflection#sec-%25symbol.tostringtag%25": { "current": { "number": "28.3.1", "spec": "ECMAScript", - "text": "@@toStringTag", - "url": "https://tc39.es/ecma262/multipage/reflection.html#sec-@@tostringtag" + "text": "%Symbol.toStringTag%", + "url": "https://tc39.es/ecma262/multipage/reflection.html#sec-%25symbol.tostringtag%25" } }, "/reflection#sec-module-namespace-objects": { @@ -19377,12 +20153,12 @@ "url": "https://tc39.es/ecma262/multipage/reflection.html#sec-proxy.revocable" } }, - "/reflection#sec-reflect-@@tostringtag": { + "/reflection#sec-reflect-%25symbol.tostringtag%25": { "current": { "number": "28.1.14", "spec": "ECMAScript", - "text": "Reflect [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/reflection.html#sec-reflect-@@tostringtag" + "text": "Reflect [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/reflection.html#sec-reflect-%25symbol.tostringtag%25" } }, "/reflection#sec-reflect-object": { @@ -19515,7 +20291,7 @@ }, "/structured-data#sec-abstract-operations-for-arraybuffer-objects": { "current": { - "number": "25.1.2", + "number": "25.1.3", "spec": "ECMAScript", "text": "Abstract Operations For ArrayBuffer Objects", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-abstract-operations-for-arraybuffer-objects" @@ -19523,7 +20299,7 @@ }, "/structured-data#sec-abstract-operations-for-atomics": { "current": { - "number": "25.4.2", + "number": "25.4.3", "spec": "ECMAScript", "text": "Abstract Operations for Atomics", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-abstract-operations-for-atomics" @@ -19539,7 +20315,7 @@ }, "/structured-data#sec-abstract-operations-for-sharedarraybuffer-objects": { "current": { - "number": "25.2.1", + "number": "25.2.2", "spec": "ECMAScript", "text": "Abstract Operations for SharedArrayBuffer Objects", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-abstract-operations-for-sharedarraybuffer-objects" @@ -19547,31 +20323,31 @@ }, "/structured-data#sec-addwaiter": { "current": { - "number": "25.4.2.6", + "number": "25.4.3.8", "spec": "ECMAScript", - "text": "AddWaiter ( WL, W )", + "text": "AddWaiter ( WL, waiterRecord )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-addwaiter" } }, "/structured-data#sec-allocatearraybuffer": { "current": { - "number": "25.1.2.1", + "number": "25.1.3.1", "spec": "ECMAScript", - "text": "AllocateArrayBuffer ( constructor, byteLength )", + "text": "AllocateArrayBuffer ( constructor, byteLength [ , maxByteLength ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-allocatearraybuffer" } }, "/structured-data#sec-allocatesharedarraybuffer": { "current": { - "number": "25.2.1.1", + "number": "25.2.2.1", "spec": "ECMAScript", - "text": "AllocateSharedArrayBuffer ( constructor, byteLength )", + "text": "AllocateSharedArrayBuffer ( constructor, byteLength [ , maxByteLength ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-allocatesharedarraybuffer" } }, "/structured-data#sec-arraybuffer-constructor": { "current": { - "number": "25.1.3", + "number": "25.1.4", "spec": "ECMAScript", "text": "The ArrayBuffer Constructor", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer-constructor" @@ -19579,9 +20355,9 @@ }, "/structured-data#sec-arraybuffer-length": { "current": { - "number": "25.1.3.1", + "number": "25.1.4.1", "spec": "ECMAScript", - "text": "ArrayBuffer ( length )", + "text": "ArrayBuffer ( length [ , options ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer-length" } }, @@ -19603,7 +20379,7 @@ }, "/structured-data#sec-arraybuffer.isview": { "current": { - "number": "25.1.4.1", + "number": "25.1.5.1", "spec": "ECMAScript", "text": "ArrayBuffer.isView ( arg )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.isview" @@ -19611,50 +20387,98 @@ }, "/structured-data#sec-arraybuffer.prototype": { "current": { - "number": "25.1.4.2", + "number": "25.1.5.2", "spec": "ECMAScript", "text": "ArrayBuffer.prototype", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype" } }, - "/structured-data#sec-arraybuffer.prototype-@@tostringtag": { + "/structured-data#sec-arraybuffer.prototype-%25symbol.tostringtag%25": { "current": { - "number": "25.1.5.4", + "number": "25.1.6.10", "spec": "ECMAScript", - "text": "ArrayBuffer.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype-@@tostringtag" + "text": "ArrayBuffer.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype-%25symbol.tostringtag%25" } }, "/structured-data#sec-arraybuffer.prototype.constructor": { "current": { - "number": "25.1.5.2", + "number": "25.1.6.2", "spec": "ECMAScript", "text": "ArrayBuffer.prototype.constructor", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.constructor" } }, + "/structured-data#sec-arraybuffer.prototype.resize": { + "current": { + "number": "25.1.6.6", + "spec": "ECMAScript", + "text": "ArrayBuffer.prototype.resize ( newLength )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.resize" + } + }, "/structured-data#sec-arraybuffer.prototype.slice": { "current": { - "number": "25.1.5.3", + "number": "25.1.6.7", "spec": "ECMAScript", "text": "ArrayBuffer.prototype.slice ( start, end )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.slice" } }, + "/structured-data#sec-arraybuffer.prototype.transfer": { + "current": { + "number": "25.1.6.8", + "spec": "ECMAScript", + "text": "ArrayBuffer.prototype.transfer ( [ newLength ] )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.transfer" + } + }, + "/structured-data#sec-arraybuffer.prototype.transfertofixedlength": { + "current": { + "number": "25.1.6.9", + "spec": "ECMAScript", + "text": "ArrayBuffer.prototype.transferToFixedLength ( [ newLength ] )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffer.prototype.transfertofixedlength" + } + }, + "/structured-data#sec-arraybufferbytelength": { + "current": { + "number": "25.1.3.2", + "spec": "ECMAScript", + "text": "ArrayBufferByteLength ( arrayBuffer, order )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybufferbytelength" + } + }, + "/structured-data#sec-arraybuffercopyanddetach": { + "current": { + "number": "25.1.3.3", + "spec": "ECMAScript", + "text": "ArrayBufferCopyAndDetach ( arrayBuffer, newLength, preserveResizability )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-arraybuffercopyanddetach" + } + }, + "/structured-data#sec-atomiccompareexchangeinsharedblock": { + "current": { + "number": "25.4.3.16", + "spec": "ECMAScript", + "text": "AtomicCompareExchangeInSharedBlock ( block, byteIndexInBuffer, elementSize, expectedBytes, replacementBytes )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomiccompareexchangeinsharedblock" + } + }, "/structured-data#sec-atomicreadmodifywrite": { "current": { - "number": "25.4.2.11", + "number": "25.4.3.17", "spec": "ECMAScript", "text": "AtomicReadModifyWrite ( typedArray, index, value, op )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomicreadmodifywrite" } }, - "/structured-data#sec-atomics-@@tostringtag": { + "/structured-data#sec-atomics-%25symbol.tostringtag%25": { "current": { - "number": "25.4.15", + "number": "25.4.17", "spec": "ECMAScript", - "text": "Atomics [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics-@@tostringtag" + "text": "Atomics [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics-%25symbol.tostringtag%25" } }, "/structured-data#sec-atomics-object": { @@ -19667,7 +20491,7 @@ }, "/structured-data#sec-atomics.add": { "current": { - "number": "25.4.3", + "number": "25.4.4", "spec": "ECMAScript", "text": "Atomics.add ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.add" @@ -19675,7 +20499,7 @@ }, "/structured-data#sec-atomics.and": { "current": { - "number": "25.4.4", + "number": "25.4.5", "spec": "ECMAScript", "text": "Atomics.and ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.and" @@ -19683,7 +20507,7 @@ }, "/structured-data#sec-atomics.compareexchange": { "current": { - "number": "25.4.5", + "number": "25.4.6", "spec": "ECMAScript", "text": "Atomics.compareExchange ( typedArray, index, expectedValue, replacementValue )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.compareexchange" @@ -19691,7 +20515,7 @@ }, "/structured-data#sec-atomics.exchange": { "current": { - "number": "25.4.6", + "number": "25.4.7", "spec": "ECMAScript", "text": "Atomics.exchange ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.exchange" @@ -19699,7 +20523,7 @@ }, "/structured-data#sec-atomics.islockfree": { "current": { - "number": "25.4.7", + "number": "25.4.8", "spec": "ECMAScript", "text": "Atomics.isLockFree ( size )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.islockfree" @@ -19707,7 +20531,7 @@ }, "/structured-data#sec-atomics.load": { "current": { - "number": "25.4.8", + "number": "25.4.9", "spec": "ECMAScript", "text": "Atomics.load ( typedArray, index )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.load" @@ -19715,7 +20539,7 @@ }, "/structured-data#sec-atomics.notify": { "current": { - "number": "25.4.13", + "number": "25.4.15", "spec": "ECMAScript", "text": "Atomics.notify ( typedArray, index, count )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.notify" @@ -19723,7 +20547,7 @@ }, "/structured-data#sec-atomics.or": { "current": { - "number": "25.4.9", + "number": "25.4.10", "spec": "ECMAScript", "text": "Atomics.or ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.or" @@ -19731,7 +20555,7 @@ }, "/structured-data#sec-atomics.store": { "current": { - "number": "25.4.10", + "number": "25.4.11", "spec": "ECMAScript", "text": "Atomics.store ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.store" @@ -19739,7 +20563,7 @@ }, "/structured-data#sec-atomics.sub": { "current": { - "number": "25.4.11", + "number": "25.4.12", "spec": "ECMAScript", "text": "Atomics.sub ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.sub" @@ -19747,23 +20571,31 @@ }, "/structured-data#sec-atomics.wait": { "current": { - "number": "25.4.12", + "number": "25.4.13", "spec": "ECMAScript", "text": "Atomics.wait ( typedArray, index, value, timeout )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.wait" } }, - "/structured-data#sec-atomics.xor": { + "/structured-data#sec-atomics.waitasync": { "current": { "number": "25.4.14", "spec": "ECMAScript", + "text": "Atomics.waitAsync ( typedArray, index, value, timeout )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.waitasync" + } + }, + "/structured-data#sec-atomics.xor": { + "current": { + "number": "25.4.16", + "spec": "ECMAScript", "text": "Atomics.xor ( typedArray, index, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.xor" } }, "/structured-data#sec-bytelistbitwiseop": { "current": { - "number": "25.4.2.12", + "number": "25.4.3.18", "spec": "ECMAScript", "text": "ByteListBitwiseOp ( op, xBytes, yBytes )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-bytelistbitwiseop" @@ -19771,7 +20603,7 @@ }, "/structured-data#sec-bytelistequal": { "current": { - "number": "25.4.2.13", + "number": "25.4.3.19", "spec": "ECMAScript", "text": "ByteListEqual ( xBytes, yBytes )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-bytelistequal" @@ -19779,7 +20611,7 @@ }, "/structured-data#sec-clonearraybuffer": { "current": { - "number": "25.1.2.4", + "number": "25.1.3.6", "spec": "ECMAScript", "text": "CloneArrayBuffer ( srcBuffer, srcByteOffset, srcLength )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-clonearraybuffer" @@ -19809,6 +20641,14 @@ "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview-objects" } }, + "/structured-data#sec-dataview-with-buffer-witness-records": { + "current": { + "number": "25.3.1.1", + "spec": "ECMAScript", + "text": "DataView With Buffer Witness Records", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview-with-buffer-witness-records" + } + }, "/structured-data#sec-dataview.prototype": { "current": { "number": "25.3.3.1", @@ -19817,12 +20657,12 @@ "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview.prototype" } }, - "/structured-data#sec-dataview.prototype-@@tostringtag": { + "/structured-data#sec-dataview.prototype-%25symbol.tostringtag%25": { "current": { "number": "25.3.4.25", "spec": "ECMAScript", - "text": "DataView.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview.prototype-@@tostringtag" + "text": "DataView.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-dataview.prototype-%25symbol.tostringtag%25" } }, "/structured-data#sec-dataview.prototype.constructor": { @@ -19995,36 +20835,100 @@ }, "/structured-data#sec-detacharraybuffer": { "current": { - "number": "25.1.2.3", + "number": "25.1.3.5", "spec": "ECMAScript", "text": "DetachArrayBuffer ( arrayBuffer [ , key ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-detacharraybuffer" } }, + "/structured-data#sec-dowait": { + "current": { + "number": "25.4.3.14", + "spec": "ECMAScript", + "text": "DoWait ( mode, typedArray, index, value, timeout )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-dowait" + } + }, + "/structured-data#sec-enqueueatomicswaitasynctimeoutjob": { + "current": { + "number": "25.4.3.15", + "spec": "ECMAScript", + "text": "EnqueueAtomicsWaitAsyncTimeoutJob ( WL, waiterRecord )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-enqueueatomicswaitasynctimeoutjob" + } + }, + "/structured-data#sec-enqueueresolveinagentjob": { + "current": { + "number": "25.4.3.13", + "spec": "ECMAScript", + "text": "EnqueueResolveInAgentJob ( agentSignifier, promiseCapability, resolution )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-enqueueresolveinagentjob" + } + }, "/structured-data#sec-entercriticalsection": { "current": { - "number": "25.4.2.4", + "number": "25.4.3.6", "spec": "ECMAScript", "text": "EnterCriticalSection ( WL )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-entercriticalsection" } }, - "/structured-data#sec-get-arraybuffer-@@species": { + "/structured-data#sec-fixed-length-and-growable-sharedarraybuffer-objects": { "current": { - "number": "25.1.4.3", + "number": "25.2.1", + "spec": "ECMAScript", + "text": "Fixed-length and Growable SharedArrayBuffer Objects", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-fixed-length-and-growable-sharedarraybuffer-objects" + } + }, + "/structured-data#sec-fixed-length-and-resizable-arraybuffer-objects": { + "current": { + "number": "25.1.2", "spec": "ECMAScript", - "text": "get ArrayBuffer [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer-@@species" + "text": "Fixed-length and Resizable ArrayBuffer Objects", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-fixed-length-and-resizable-arraybuffer-objects" + } + }, + "/structured-data#sec-get-arraybuffer-%25symbol.species%25": { + "current": { + "number": "25.1.5.3", + "spec": "ECMAScript", + "text": "get ArrayBuffer [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer-%25symbol.species%25" } }, "/structured-data#sec-get-arraybuffer.prototype.bytelength": { "current": { - "number": "25.1.5.1", + "number": "25.1.6.1", "spec": "ECMAScript", "text": "get ArrayBuffer.prototype.byteLength", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.bytelength" } }, + "/structured-data#sec-get-arraybuffer.prototype.detached": { + "current": { + "number": "25.1.6.3", + "spec": "ECMAScript", + "text": "get ArrayBuffer.prototype.detached", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.detached" + } + }, + "/structured-data#sec-get-arraybuffer.prototype.maxbytelength": { + "current": { + "number": "25.1.6.4", + "spec": "ECMAScript", + "text": "get ArrayBuffer.prototype.maxByteLength", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.maxbytelength" + } + }, + "/structured-data#sec-get-arraybuffer.prototype.resizable": { + "current": { + "number": "25.1.6.5", + "spec": "ECMAScript", + "text": "get ArrayBuffer.prototype.resizable", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.resizable" + } + }, "/structured-data#sec-get-dataview.prototype.buffer": { "current": { "number": "25.3.4.1", @@ -20051,31 +20955,71 @@ }, "/structured-data#sec-get-sharedarraybuffer.prototype.bytelength": { "current": { - "number": "25.2.4.1", + "number": "25.2.5.1", "spec": "ECMAScript", "text": "get SharedArrayBuffer.prototype.byteLength", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.bytelength" } }, + "/structured-data#sec-get-sharedarraybuffer.prototype.growable": { + "current": { + "number": "25.2.5.4", + "spec": "ECMAScript", + "text": "get SharedArrayBuffer.prototype.growable", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.growable" + } + }, + "/structured-data#sec-get-sharedarraybuffer.prototype.maxbytelength": { + "current": { + "number": "25.2.5.5", + "spec": "ECMAScript", + "text": "get SharedArrayBuffer.prototype.maxByteLength", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.maxbytelength" + } + }, + "/structured-data#sec-getarraybuffermaxbytelengthoption": { + "current": { + "number": "25.1.3.7", + "spec": "ECMAScript", + "text": "GetArrayBufferMaxByteLengthOption ( options )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getarraybuffermaxbytelengthoption" + } + }, "/structured-data#sec-getmodifysetvalueinbuffer": { "current": { - "number": "25.1.2.13", + "number": "25.1.3.19", "spec": "ECMAScript", - "text": "GetModifySetValueInBuffer ( arrayBuffer, byteIndex, type, value, op [ , isLittleEndian ] )", + "text": "GetModifySetValueInBuffer ( arrayBuffer, byteIndex, type, value, op )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getmodifysetvalueinbuffer" } }, + "/structured-data#sec-getrawbytesfromsharedblock": { + "current": { + "number": "25.1.3.15", + "spec": "ECMAScript", + "text": "GetRawBytesFromSharedBlock ( block, byteIndex, type, isTypedArray, order )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getrawbytesfromsharedblock" + } + }, "/structured-data#sec-getvaluefrombuffer": { "current": { - "number": "25.1.2.10", + "number": "25.1.3.16", "spec": "ECMAScript", "text": "GetValueFromBuffer ( arrayBuffer, byteIndex, type, isTypedArray, order [ , isLittleEndian ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getvaluefrombuffer" } }, + "/structured-data#sec-getviewbytelength": { + "current": { + "number": "25.3.1.3", + "spec": "ECMAScript", + "text": "GetViewByteLength ( viewRecord )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getviewbytelength" + } + }, "/structured-data#sec-getviewvalue": { "current": { - "number": "25.3.1.1", + "number": "25.3.1.5", "spec": "ECMAScript", "text": "GetViewValue ( view, requestIndex, isLittleEndian, type )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getviewvalue" @@ -20083,12 +21027,36 @@ }, "/structured-data#sec-getwaiterlist": { "current": { - "number": "25.4.2.3", + "number": "25.4.3.5", "spec": "ECMAScript", "text": "GetWaiterList ( block, i )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-getwaiterlist" } }, + "/structured-data#sec-growable-sharedarraybuffer-guidelines": { + "current": { + "number": "25.2.7", + "spec": "ECMAScript", + "text": "Growable SharedArrayBuffer Guidelines", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-growable-sharedarraybuffer-guidelines" + } + }, + "/structured-data#sec-hostgrowsharedarraybuffer": { + "current": { + "number": "25.2.2.3", + "spec": "ECMAScript", + "text": "HostGrowSharedArrayBuffer ( buffer, newByteLength )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-hostgrowsharedarraybuffer" + } + }, + "/structured-data#sec-hostresizearraybuffer": { + "current": { + "number": "25.1.3.8", + "spec": "ECMAScript", + "text": "HostResizeArrayBuffer ( buffer, newByteLength )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-hostresizearraybuffer" + } + }, "/structured-data#sec-internalizejsonproperty": { "current": { "number": "25.5.1.1", @@ -20099,7 +21067,7 @@ }, "/structured-data#sec-isbigintelementtype": { "current": { - "number": "25.1.2.7", + "number": "25.1.3.12", "spec": "ECMAScript", "text": "IsBigIntElementType ( type )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isbigintelementtype" @@ -20107,15 +21075,23 @@ }, "/structured-data#sec-isdetachedbuffer": { "current": { - "number": "25.1.2.2", + "number": "25.1.3.4", "spec": "ECMAScript", "text": "IsDetachedBuffer ( arrayBuffer )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isdetachedbuffer" } }, + "/structured-data#sec-isfixedlengtharraybuffer": { + "current": { + "number": "25.1.3.9", + "spec": "ECMAScript", + "text": "IsFixedLengthArrayBuffer ( arrayBuffer )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isfixedlengtharraybuffer" + } + }, "/structured-data#sec-isnotearconfiguration": { "current": { - "number": "25.1.2.8", + "number": "25.1.3.13", "spec": "ECMAScript", "text": "IsNoTearConfiguration ( type, order )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isnotearconfiguration" @@ -20123,7 +21099,7 @@ }, "/structured-data#sec-issharedarraybuffer": { "current": { - "number": "25.2.1.2", + "number": "25.2.2.2", "spec": "ECMAScript", "text": "IsSharedArrayBuffer ( obj )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-issharedarraybuffer" @@ -20131,7 +21107,7 @@ }, "/structured-data#sec-isunclampedintegerelementtype": { "current": { - "number": "25.1.2.6", + "number": "25.1.3.11", "spec": "ECMAScript", "text": "IsUnclampedIntegerElementType ( type )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isunclampedintegerelementtype" @@ -20139,18 +21115,26 @@ }, "/structured-data#sec-isunsignedelementtype": { "current": { - "number": "25.1.2.5", + "number": "25.1.3.10", "spec": "ECMAScript", "text": "IsUnsignedElementType ( type )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isunsignedelementtype" } }, - "/structured-data#sec-json-@@tostringtag": { + "/structured-data#sec-isviewoutofbounds": { + "current": { + "number": "25.3.1.4", + "spec": "ECMAScript", + "text": "IsViewOutOfBounds ( viewRecord )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-isviewoutofbounds" + } + }, + "/structured-data#sec-json-%25symbol.tostringtag%25": { "current": { "number": "25.5.3", "spec": "ECMAScript", - "text": "JSON [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-json-@@tostringtag" + "text": "JSON [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-json-%25symbol.tostringtag%25" } }, "/structured-data#sec-json-object": { @@ -20187,23 +21171,31 @@ }, "/structured-data#sec-leavecriticalsection": { "current": { - "number": "25.4.2.5", + "number": "25.4.3.7", "spec": "ECMAScript", "text": "LeaveCriticalSection ( WL )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-leavecriticalsection" } }, + "/structured-data#sec-makedataviewwithbufferwitnessrecord": { + "current": { + "number": "25.3.1.2", + "spec": "ECMAScript", + "text": "MakeDataViewWithBufferWitnessRecord ( obj, order )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-makedataviewwithbufferwitnessrecord" + } + }, "/structured-data#sec-notifywaiter": { "current": { - "number": "25.4.2.10", + "number": "25.4.3.12", "spec": "ECMAScript", - "text": "NotifyWaiter ( WL, W )", + "text": "NotifyWaiter ( WL, waiterRecord )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-notifywaiter" } }, "/structured-data#sec-numerictorawbytes": { "current": { - "number": "25.1.2.11", + "number": "25.1.3.17", "spec": "ECMAScript", "text": "NumericToRawBytes ( type, value, isLittleEndian )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-numerictorawbytes" @@ -20219,7 +21211,7 @@ }, "/structured-data#sec-properties-of-the-arraybuffer-constructor": { "current": { - "number": "25.1.4", + "number": "25.1.5", "spec": "ECMAScript", "text": "Properties of the ArrayBuffer Constructor", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-properties-of-the-arraybuffer-constructor" @@ -20227,7 +21219,7 @@ }, "/structured-data#sec-properties-of-the-arraybuffer-instances": { "current": { - "number": "25.1.6", + "number": "25.1.7", "spec": "ECMAScript", "text": "Properties of ArrayBuffer Instances", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-properties-of-the-arraybuffer-instances" @@ -20235,7 +21227,7 @@ }, "/structured-data#sec-properties-of-the-arraybuffer-prototype-object": { "current": { - "number": "25.1.5", + "number": "25.1.6", "spec": "ECMAScript", "text": "Properties of the ArrayBuffer Prototype Object", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-properties-of-the-arraybuffer-prototype-object" @@ -20259,7 +21251,7 @@ }, "/structured-data#sec-properties-of-the-sharedarraybuffer-constructor": { "current": { - "number": "25.2.3", + "number": "25.2.4", "spec": "ECMAScript", "text": "Properties of the SharedArrayBuffer Constructor", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-properties-of-the-sharedarraybuffer-constructor" @@ -20267,7 +21259,7 @@ }, "/structured-data#sec-properties-of-the-sharedarraybuffer-instances": { "current": { - "number": "25.2.5", + "number": "25.2.6", "spec": "ECMAScript", "text": "Properties of SharedArrayBuffer Instances", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-properties-of-the-sharedarraybuffer-instances" @@ -20275,7 +21267,7 @@ }, "/structured-data#sec-properties-of-the-sharedarraybuffer-prototype-object": { "current": { - "number": "25.2.4", + "number": "25.2.5", "spec": "ECMAScript", "text": "Properties of the SharedArrayBuffer Prototype Object", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-properties-of-the-sharedarraybuffer-prototype-object" @@ -20291,7 +21283,7 @@ }, "/structured-data#sec-rawbytestonumeric": { "current": { - "number": "25.1.2.9", + "number": "25.1.3.14", "spec": "ECMAScript", "text": "RawBytesToNumeric ( type, rawBytes, isLittleEndian )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-rawbytestonumeric" @@ -20299,20 +21291,36 @@ }, "/structured-data#sec-removewaiter": { "current": { - "number": "25.4.2.7", + "number": "25.4.3.9", "spec": "ECMAScript", - "text": "RemoveWaiter ( WL, W )", + "text": "RemoveWaiter ( WL, waiterRecord )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-removewaiter" } }, "/structured-data#sec-removewaiters": { "current": { - "number": "25.4.2.8", + "number": "25.4.3.10", "spec": "ECMAScript", "text": "RemoveWaiters ( WL, c )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-removewaiters" } }, + "/structured-data#sec-resizable-arraybuffer-guidelines": { + "current": { + "number": "25.1.8", + "spec": "ECMAScript", + "text": "Resizable ArrayBuffer Guidelines", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-resizable-arraybuffer-guidelines" + } + }, + "/structured-data#sec-revalidateatomicaccess": { + "current": { + "number": "25.4.3.4", + "spec": "ECMAScript", + "text": "RevalidateAtomicAccess ( typedArray, byteIndexInBuffer )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-revalidateatomicaccess" + } + }, "/structured-data#sec-serializejsonarray": { "current": { "number": "25.5.2.6", @@ -20339,7 +21347,7 @@ }, "/structured-data#sec-setvalueinbuffer": { "current": { - "number": "25.1.2.12", + "number": "25.1.3.18", "spec": "ECMAScript", "text": "SetValueInBuffer ( arrayBuffer, byteIndex, type, value, isTypedArray, order [ , isLittleEndian ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-setvalueinbuffer" @@ -20347,23 +21355,23 @@ }, "/structured-data#sec-setviewvalue": { "current": { - "number": "25.3.1.2", + "number": "25.3.1.6", "spec": "ECMAScript", "text": "SetViewValue ( view, requestIndex, isLittleEndian, type, value )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-setviewvalue" } }, - "/structured-data#sec-sharedarraybuffer-@@species": { + "/structured-data#sec-sharedarraybuffer-%25symbol.species%25": { "current": { - "number": "25.2.3.2", + "number": "25.2.4.2", "spec": "ECMAScript", - "text": "get SharedArrayBuffer [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer-@@species" + "text": "get SharedArrayBuffer [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer-%25symbol.species%25" } }, "/structured-data#sec-sharedarraybuffer-constructor": { "current": { - "number": "25.2.2", + "number": "25.2.3", "spec": "ECMAScript", "text": "The SharedArrayBuffer Constructor", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer-constructor" @@ -20371,9 +21379,9 @@ }, "/structured-data#sec-sharedarraybuffer-length": { "current": { - "number": "25.2.2.1", + "number": "25.2.3.1", "spec": "ECMAScript", - "text": "SharedArrayBuffer ( length )", + "text": "SharedArrayBuffer ( length [ , options ] )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer-length" } }, @@ -20387,34 +21395,42 @@ }, "/structured-data#sec-sharedarraybuffer.prototype": { "current": { - "number": "25.2.3.1", + "number": "25.2.4.1", "spec": "ECMAScript", "text": "SharedArrayBuffer.prototype", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype" } }, + "/structured-data#sec-sharedarraybuffer.prototype-%25symbol.tostringtag%25": { + "current": { + "number": "25.2.5.7", + "spec": "ECMAScript", + "text": "SharedArrayBuffer.prototype [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype-%25symbol.tostringtag%25" + } + }, "/structured-data#sec-sharedarraybuffer.prototype.constructor": { "current": { - "number": "25.2.4.2", + "number": "25.2.5.2", "spec": "ECMAScript", "text": "SharedArrayBuffer.prototype.constructor", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype.constructor" } }, - "/structured-data#sec-sharedarraybuffer.prototype.slice": { + "/structured-data#sec-sharedarraybuffer.prototype.grow": { "current": { - "number": "25.2.4.3", + "number": "25.2.5.3", "spec": "ECMAScript", - "text": "SharedArrayBuffer.prototype.slice ( start, end )", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype.slice" + "text": "SharedArrayBuffer.prototype.grow ( newLength )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype.grow" } }, - "/structured-data#sec-sharedarraybuffer.prototype.toString": { + "/structured-data#sec-sharedarraybuffer.prototype.slice": { "current": { - "number": "25.2.4.4", + "number": "25.2.5.6", "spec": "ECMAScript", - "text": "SharedArrayBuffer.prototype [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype.toString" + "text": "SharedArrayBuffer.prototype.slice ( start, end )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-sharedarraybuffer.prototype.slice" } }, "/structured-data#sec-structured-data": { @@ -20425,12 +21441,12 @@ "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-structured-data" } }, - "/structured-data#sec-suspendagent": { + "/structured-data#sec-suspendthisagent": { "current": { - "number": "25.4.2.9", + "number": "25.4.3.11", "spec": "ECMAScript", - "text": "SuspendAgent ( WL, W, minimumTimeout )", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-suspendagent" + "text": "SuspendThisAgent ( WL, waiterRecord )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-suspendthisagent" } }, "/structured-data#sec-unicodeescape": { @@ -20443,26 +21459,42 @@ }, "/structured-data#sec-validateatomicaccess": { "current": { - "number": "25.4.2.2", + "number": "25.4.3.2", "spec": "ECMAScript", - "text": "ValidateAtomicAccess ( typedArray, requestIndex )", + "text": "ValidateAtomicAccess ( taRecord, requestIndex )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccess" } }, + "/structured-data#sec-validateatomicaccessonintegertypedarray": { + "current": { + "number": "25.4.3.3", + "spec": "ECMAScript", + "text": "ValidateAtomicAccessOnIntegerTypedArray ( typedArray, requestIndex [ , waitable ] )", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccessonintegertypedarray" + } + }, "/structured-data#sec-validateintegertypedarray": { "current": { - "number": "25.4.2.1", + "number": "25.4.3.1", "spec": "ECMAScript", - "text": "ValidateIntegerTypedArray ( typedArray [ , waitable ] )", + "text": "ValidateIntegerTypedArray ( typedArray, waitable )", "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-validateintegertypedarray" } }, - "/structured-data#sec-waiterlist-objects": { + "/structured-data#sec-waiter-record": { "current": { "number": "25.4.1", "spec": "ECMAScript", - "text": "WaiterList Objects", - "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-objects" + "text": "Waiter Record", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-waiter-record" + } + }, + "/structured-data#sec-waiterlist-records": { + "current": { + "number": "25.4.2", + "spec": "ECMAScript", + "text": "WaiterList Records", + "url": "https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-records" } }, "/syntax-directed-operations#sec-evaluation": { @@ -20737,52 +21769,52 @@ "url": "https://tc39.es/ecma262/multipage/syntax-directed-operations.html#sec-syntax-directed-operations-scope-analysis" } }, - "/text-processing#sec-%regexpstringiteratorprototype%-@@tostringtag": { + "/text-processing#sec-%25regexpstringiteratorprototype%25-%25symbol.tostringtag%25": { "current": { "number": "22.2.9.2.2", "spec": "ECMAScript", - "text": "%RegExpStringIteratorPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%regexpstringiteratorprototype%-@@tostringtag" + "text": "%RegExpStringIteratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%25regexpstringiteratorprototype%25-%25symbol.tostringtag%25" } }, - "/text-processing#sec-%regexpstringiteratorprototype%-object": { + "/text-processing#sec-%25regexpstringiteratorprototype%25-object": { "current": { "number": "22.2.9.2", "spec": "ECMAScript", "text": "The %RegExpStringIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%regexpstringiteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%25regexpstringiteratorprototype%25-object" } }, - "/text-processing#sec-%regexpstringiteratorprototype%.next": { + "/text-processing#sec-%25regexpstringiteratorprototype%25.next": { "current": { "number": "22.2.9.2.1", "spec": "ECMAScript", "text": "%RegExpStringIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%regexpstringiteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%25regexpstringiteratorprototype%25.next" } }, - "/text-processing#sec-%stringiteratorprototype%-@@tostringtag": { + "/text-processing#sec-%25stringiteratorprototype%25-%25symbol.tostringtag%25": { "current": { "number": "22.1.5.1.2", "spec": "ECMAScript", - "text": "%StringIteratorPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%stringiteratorprototype%-@@tostringtag" + "text": "%StringIteratorPrototype% [ %Symbol.toStringTag% ]", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%25stringiteratorprototype%25-%25symbol.tostringtag%25" } }, - "/text-processing#sec-%stringiteratorprototype%-object": { + "/text-processing#sec-%25stringiteratorprototype%25-object": { "current": { "number": "22.1.5.1", "spec": "ECMAScript", "text": "The %StringIteratorPrototype% Object", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%stringiteratorprototype%-object" + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%25stringiteratorprototype%25-object" } }, - "/text-processing#sec-%stringiteratorprototype%.next": { + "/text-processing#sec-%25stringiteratorprototype%25.next": { "current": { "number": "22.1.5.1.1", "spec": "ECMAScript", "text": "%StringIteratorPrototype%.next ( )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%stringiteratorprototype%.next" + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-%25stringiteratorprototype%25.next" } }, "/text-processing#sec-abstract-operations-for-regexp-creation": { @@ -20809,6 +21841,14 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-advancestringindex" } }, + "/text-processing#sec-allcharacters": { + "current": { + "number": "22.2.2.9.4", + "spec": "ECMAScript", + "text": "AllCharacters ( rer )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-allcharacters" + } + }, "/text-processing#sec-backreference-matcher": { "current": { "number": "22.2.2.7.2", @@ -20817,6 +21857,14 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-backreference-matcher" } }, + "/text-processing#sec-charactercomplement": { + "current": { + "number": "22.2.2.9.6", + "spec": "ECMAScript", + "text": "CharacterComplement ( rer, S )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-charactercomplement" + } + }, "/text-processing#sec-compileassertion": { "current": { "number": "22.2.2.4", @@ -20841,6 +21889,14 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-compilecharacterclass" } }, + "/text-processing#sec-compileclasssetstring": { + "current": { + "number": "22.2.2.10", + "spec": "ECMAScript", + "text": "Runtime Semantics: CompileClassSetString", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-compileclasssetstring" + } + }, "/text-processing#sec-compilepattern": { "current": { "number": "22.2.2.2", @@ -20905,6 +21961,14 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-createregexpstringiterator" } }, + "/text-processing#sec-emptymatcher": { + "current": { + "number": "22.2.2.3.2", + "spec": "ECMAScript", + "text": "EmptyMatcher ( )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-emptymatcher" + } + }, "/text-processing#sec-escaperegexppattern": { "current": { "number": "22.2.6.13.1", @@ -20913,12 +21977,12 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-escaperegexppattern" } }, - "/text-processing#sec-get-regexp-@@species": { + "/text-processing#sec-get-regexp-%25symbol.species%25": { "current": { "number": "22.2.5.2", "spec": "ECMAScript", - "text": "get RegExp [ @@species ]", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-get-regexp-@@species" + "text": "get RegExp [ %Symbol.species% ]", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-get-regexp-%25symbol.species%25" } }, "/text-processing#sec-get-regexp.prototype.dotAll": { @@ -20993,6 +22057,14 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-get-regexp.prototype.unicode" } }, + "/text-processing#sec-get-regexp.prototype.unicodesets": { + "current": { + "number": "22.2.6.19", + "spec": "ECMAScript", + "text": "get RegExp.prototype.unicodeSets", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-get-regexp.prototype.unicodesets" + } + }, "/text-processing#sec-getmatchindexpair": { "current": { "number": "22.2.7.7", @@ -21019,7 +22091,7 @@ }, "/text-processing#sec-getsubstitution": { "current": { - "number": "22.1.3.18.1", + "number": "22.1.3.19.1", "spec": "ECMAScript", "text": "GetSubstitution ( matched, str, position, captures, namedCaptures, replacementTemplate )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-getsubstitution" @@ -21027,7 +22099,7 @@ }, "/text-processing#sec-groupspecifiersthatmatch": { "current": { - "number": "22.2.1.7", + "number": "22.2.1.8", "spec": "ECMAScript", "text": "Static Semantics: GroupSpecifiersThatMatch ( thisGroupName )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-groupspecifiersthatmatch" @@ -21057,11 +22129,35 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-match-records" } }, + "/text-processing#sec-matchsequence": { + "current": { + "number": "22.2.2.3.4", + "spec": "ECMAScript", + "text": "MatchSequence ( m1, m2, direction )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-matchsequence" + } + }, + "/text-processing#sec-matchtwoalternatives": { + "current": { + "number": "22.2.2.3.3", + "spec": "ECMAScript", + "text": "MatchTwoAlternatives ( m1, m2 )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-matchtwoalternatives" + } + }, + "/text-processing#sec-maybesimplecasefolding": { + "current": { + "number": "22.2.2.9.5", + "spec": "ECMAScript", + "text": "MaybeSimpleCaseFolding ( rer, A )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-maybesimplecasefolding" + } + }, "/text-processing#sec-parsepattern": { "current": { "number": "22.2.3.4", "spec": "ECMAScript", - "text": "Static Semantics: ParsePattern ( patternText, u )", + "text": "Static Semantics: ParsePattern ( patternText, u, v )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-parsepattern" } }, @@ -21193,12 +22289,12 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp-pattern-flags" } }, - "/text-processing#sec-regexp-prototype-matchall": { + "/text-processing#sec-regexp-prototype-%25symbol.matchall%25": { "current": { "number": "22.2.6.9", "spec": "ECMAScript", - "text": "RegExp.prototype [ @@matchAll ] ( string )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp-prototype-matchall" + "text": "RegExp.prototype [ %Symbol.matchAll% ] ( string )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp-prototype-%25symbol.matchall%25" } }, "/text-processing#sec-regexp-records": { @@ -21233,36 +22329,36 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype" } }, - "/text-processing#sec-regexp.prototype-@@match": { + "/text-processing#sec-regexp.prototype-%25symbol.match%25": { "current": { "number": "22.2.6.8", "spec": "ECMAScript", - "text": "RegExp.prototype [ @@match ] ( string )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-@@match" + "text": "RegExp.prototype [ %Symbol.match% ] ( string )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.match%25" } }, - "/text-processing#sec-regexp.prototype-@@replace": { + "/text-processing#sec-regexp.prototype-%25symbol.replace%25": { "current": { "number": "22.2.6.11", "spec": "ECMAScript", - "text": "RegExp.prototype [ @@replace ] ( string, replaceValue )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-@@replace" + "text": "RegExp.prototype [ %Symbol.replace% ] ( string, replaceValue )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.replace%25" } }, - "/text-processing#sec-regexp.prototype-@@search": { + "/text-processing#sec-regexp.prototype-%25symbol.search%25": { "current": { "number": "22.2.6.12", "spec": "ECMAScript", - "text": "RegExp.prototype [ @@search ] ( string )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-@@search" + "text": "RegExp.prototype [ %Symbol.search% ] ( string )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.search%25" } }, - "/text-processing#sec-regexp.prototype-@@split": { + "/text-processing#sec-regexp.prototype-%25symbol.split%25": { "current": { "number": "22.2.6.14", "spec": "ECMAScript", - "text": "RegExp.prototype [ @@split ] ( string, limit )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-@@split" + "text": "RegExp.prototype [ %Symbol.split% ] ( string, limit )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.prototype-%25symbol.split%25" } }, "/text-processing#sec-regexp.prototype.constructor": { @@ -21339,7 +22435,7 @@ }, "/text-processing#sec-regexpidentifiercodepoint": { "current": { - "number": "22.2.1.10", + "number": "22.2.1.11", "spec": "ECMAScript", "text": "Static Semantics: RegExpIdentifierCodePoint", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpidentifiercodepoint" @@ -21347,7 +22443,7 @@ }, "/text-processing#sec-regexpidentifiercodepoints": { "current": { - "number": "22.2.1.9", + "number": "22.2.1.10", "spec": "ECMAScript", "text": "Static Semantics: RegExpIdentifierCodePoints", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-regexpidentifiercodepoints" @@ -21385,6 +22481,14 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-charactersetmatcher-abstract-operation" } }, + "/text-processing#sec-runtime-semantics-haseitherunicodeflag-abstract-operation": { + "current": { + "number": "22.2.2.9.2", + "spec": "ECMAScript", + "text": "HasEitherUnicodeFlag ( rer )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-haseitherunicodeflag-abstract-operation" + } + }, "/text-processing#sec-runtime-semantics-iswordchar-abstract-operation": { "current": { "number": "22.2.2.4.1", @@ -21403,15 +22507,15 @@ }, "/text-processing#sec-runtime-semantics-unicodematchproperty-p": { "current": { - "number": "22.2.2.9.3", + "number": "22.2.2.9.7", "spec": "ECMAScript", - "text": "UnicodeMatchProperty ( p )", + "text": "UnicodeMatchProperty ( rer, p )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-unicodematchproperty-p" } }, "/text-processing#sec-runtime-semantics-unicodematchpropertyvalue-p-v": { "current": { - "number": "22.2.2.9.4", + "number": "22.2.2.9.8", "spec": "ECMAScript", "text": "UnicodeMatchPropertyValue ( p, v )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-runtime-semantics-unicodematchpropertyvalue-p-v" @@ -21419,12 +22523,20 @@ }, "/text-processing#sec-static-semantics-capturinggroupname": { "current": { - "number": "22.2.1.8", + "number": "22.2.1.9", "spec": "ECMAScript", "text": "Static Semantics: CapturingGroupName", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-static-semantics-capturinggroupname" } }, + "/text-processing#sec-static-semantics-maycontainstrings": { + "current": { + "number": "22.2.1.7", + "spec": "ECMAScript", + "text": "Static Semantics: MayContainStrings", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-static-semantics-maycontainstrings" + } + }, "/text-processing#sec-string-constructor": { "current": { "number": "22.1.1", @@ -21481,12 +22593,12 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype" } }, - "/text-processing#sec-string.prototype-@@iterator": { + "/text-processing#sec-string.prototype-%25symbol.iterator%25": { "current": { - "number": "22.1.3.34", + "number": "22.1.3.36", "spec": "ECMAScript", - "text": "String.prototype [ @@iterator ] ( )", - "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype-@@iterator" + "text": "String.prototype [ %Symbol.iterator% ] ( )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype-%25symbol.iterator%25" } }, "/text-processing#sec-string.prototype.at": { @@ -21561,17 +22673,25 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.indexof" } }, - "/text-processing#sec-string.prototype.lastindexof": { + "/text-processing#sec-string.prototype.iswellformed": { "current": { "number": "22.1.3.10", "spec": "ECMAScript", + "text": "String.prototype.isWellFormed ( )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.iswellformed" + } + }, + "/text-processing#sec-string.prototype.lastindexof": { + "current": { + "number": "22.1.3.11", + "spec": "ECMAScript", "text": "String.prototype.lastIndexOf ( searchString [ , position ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.lastindexof" } }, "/text-processing#sec-string.prototype.localecompare": { "current": { - "number": "22.1.3.11", + "number": "22.1.3.12", "spec": "ECMAScript", "text": "String.prototype.localeCompare ( that [ , reserved1 [ , reserved2 ] ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.localecompare" @@ -21579,7 +22699,7 @@ }, "/text-processing#sec-string.prototype.match": { "current": { - "number": "22.1.3.12", + "number": "22.1.3.13", "spec": "ECMAScript", "text": "String.prototype.match ( regexp )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.match" @@ -21587,7 +22707,7 @@ }, "/text-processing#sec-string.prototype.matchall": { "current": { - "number": "22.1.3.13", + "number": "22.1.3.14", "spec": "ECMAScript", "text": "String.prototype.matchAll ( regexp )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.matchall" @@ -21595,7 +22715,7 @@ }, "/text-processing#sec-string.prototype.normalize": { "current": { - "number": "22.1.3.14", + "number": "22.1.3.15", "spec": "ECMAScript", "text": "String.prototype.normalize ( [ form ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.normalize" @@ -21603,7 +22723,7 @@ }, "/text-processing#sec-string.prototype.padend": { "current": { - "number": "22.1.3.15", + "number": "22.1.3.16", "spec": "ECMAScript", "text": "String.prototype.padEnd ( maxLength [ , fillString ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.padend" @@ -21611,7 +22731,7 @@ }, "/text-processing#sec-string.prototype.padstart": { "current": { - "number": "22.1.3.16", + "number": "22.1.3.17", "spec": "ECMAScript", "text": "String.prototype.padStart ( maxLength [ , fillString ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.padstart" @@ -21619,7 +22739,7 @@ }, "/text-processing#sec-string.prototype.repeat": { "current": { - "number": "22.1.3.17", + "number": "22.1.3.18", "spec": "ECMAScript", "text": "String.prototype.repeat ( count )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.repeat" @@ -21627,7 +22747,7 @@ }, "/text-processing#sec-string.prototype.replace": { "current": { - "number": "22.1.3.18", + "number": "22.1.3.19", "spec": "ECMAScript", "text": "String.prototype.replace ( searchValue, replaceValue )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.replace" @@ -21635,7 +22755,7 @@ }, "/text-processing#sec-string.prototype.replaceall": { "current": { - "number": "22.1.3.19", + "number": "22.1.3.20", "spec": "ECMAScript", "text": "String.prototype.replaceAll ( searchValue, replaceValue )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.replaceall" @@ -21643,7 +22763,7 @@ }, "/text-processing#sec-string.prototype.search": { "current": { - "number": "22.1.3.20", + "number": "22.1.3.21", "spec": "ECMAScript", "text": "String.prototype.search ( regexp )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.search" @@ -21651,7 +22771,7 @@ }, "/text-processing#sec-string.prototype.slice": { "current": { - "number": "22.1.3.21", + "number": "22.1.3.22", "spec": "ECMAScript", "text": "String.prototype.slice ( start, end )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.slice" @@ -21659,7 +22779,7 @@ }, "/text-processing#sec-string.prototype.split": { "current": { - "number": "22.1.3.22", + "number": "22.1.3.23", "spec": "ECMAScript", "text": "String.prototype.split ( separator, limit )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.split" @@ -21667,7 +22787,7 @@ }, "/text-processing#sec-string.prototype.startswith": { "current": { - "number": "22.1.3.23", + "number": "22.1.3.24", "spec": "ECMAScript", "text": "String.prototype.startsWith ( searchString [ , position ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.startswith" @@ -21675,7 +22795,7 @@ }, "/text-processing#sec-string.prototype.substring": { "current": { - "number": "22.1.3.24", + "number": "22.1.3.25", "spec": "ECMAScript", "text": "String.prototype.substring ( start, end )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.substring" @@ -21683,7 +22803,7 @@ }, "/text-processing#sec-string.prototype.tolocalelowercase": { "current": { - "number": "22.1.3.25", + "number": "22.1.3.26", "spec": "ECMAScript", "text": "String.prototype.toLocaleLowerCase ( [ reserved1 [ , reserved2 ] ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.tolocalelowercase" @@ -21691,7 +22811,7 @@ }, "/text-processing#sec-string.prototype.tolocaleuppercase": { "current": { - "number": "22.1.3.26", + "number": "22.1.3.27", "spec": "ECMAScript", "text": "String.prototype.toLocaleUpperCase ( [ reserved1 [ , reserved2 ] ] )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.tolocaleuppercase" @@ -21699,7 +22819,7 @@ }, "/text-processing#sec-string.prototype.tolowercase": { "current": { - "number": "22.1.3.27", + "number": "22.1.3.28", "spec": "ECMAScript", "text": "String.prototype.toLowerCase ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.tolowercase" @@ -21707,7 +22827,7 @@ }, "/text-processing#sec-string.prototype.tostring": { "current": { - "number": "22.1.3.28", + "number": "22.1.3.29", "spec": "ECMAScript", "text": "String.prototype.toString ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.tostring" @@ -21715,15 +22835,23 @@ }, "/text-processing#sec-string.prototype.touppercase": { "current": { - "number": "22.1.3.29", + "number": "22.1.3.30", "spec": "ECMAScript", "text": "String.prototype.toUpperCase ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.touppercase" } }, + "/text-processing#sec-string.prototype.towellformed": { + "current": { + "number": "22.1.3.31", + "spec": "ECMAScript", + "text": "String.prototype.toWellFormed ( )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.towellformed" + } + }, "/text-processing#sec-string.prototype.trim": { "current": { - "number": "22.1.3.30", + "number": "22.1.3.32", "spec": "ECMAScript", "text": "String.prototype.trim ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.trim" @@ -21731,7 +22859,7 @@ }, "/text-processing#sec-string.prototype.trimend": { "current": { - "number": "22.1.3.31", + "number": "22.1.3.33", "spec": "ECMAScript", "text": "String.prototype.trimEnd ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.trimend" @@ -21739,7 +22867,7 @@ }, "/text-processing#sec-string.prototype.trimstart": { "current": { - "number": "22.1.3.32", + "number": "22.1.3.34", "spec": "ECMAScript", "text": "String.prototype.trimStart ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.trimstart" @@ -21747,7 +22875,7 @@ }, "/text-processing#sec-string.prototype.valueof": { "current": { - "number": "22.1.3.33", + "number": "22.1.3.35", "spec": "ECMAScript", "text": "String.prototype.valueOf ( )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.valueof" @@ -21763,12 +22891,20 @@ }, "/text-processing#sec-stringpad": { "current": { - "number": "22.1.3.16.1", + "number": "22.1.3.17.2", "spec": "ECMAScript", - "text": "StringPad ( O, maxLength, fillString, placement )", + "text": "StringPad ( S, maxLength, fillString, placement )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpad" } }, + "/text-processing#sec-stringpaddingbuiltinsimpl": { + "current": { + "number": "22.1.3.17.1", + "spec": "ECMAScript", + "text": "StringPaddingBuiltinsImpl ( O, maxLength, fillString, placement )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-stringpaddingbuiltinsimpl" + } + }, "/text-processing#sec-text-processing": { "current": { "number": "22", @@ -21777,9 +22913,17 @@ "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-text-processing" } }, + "/text-processing#sec-thisstringvalue": { + "current": { + "number": "22.1.3.35.1", + "spec": "ECMAScript", + "text": "ThisStringValue ( value )", + "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-thisstringvalue" + } + }, "/text-processing#sec-tozeropaddeddecimalstring": { "current": { - "number": "22.1.3.16.2", + "number": "22.1.3.17.3", "spec": "ECMAScript", "text": "ToZeroPaddedDecimalString ( n, minLength )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-tozeropaddeddecimalstring" @@ -21787,7 +22931,7 @@ }, "/text-processing#sec-trimstring": { "current": { - "number": "22.1.3.30.1", + "number": "22.1.3.32.1", "spec": "ECMAScript", "text": "TrimString ( string, where )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-trimstring" @@ -21795,7 +22939,7 @@ }, "/text-processing#sec-wordcharacters": { "current": { - "number": "22.2.2.9.2", + "number": "22.2.2.9.3", "spec": "ECMAScript", "text": "WordCharacters ( rer )", "url": "https://tc39.es/ecma262/multipage/text-processing.html#sec-wordcharacters" diff --git a/bikeshed/spec-data/readonly/headings/headings-edit-context.json b/bikeshed/spec-data/readonly/headings/headings-edit-context.json index a2cb0de2e6..a3664c94b0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-edit-context.json +++ b/bikeshed/spec-data/readonly/headings/headings-edit-context.json @@ -7,6 +7,14 @@ "url": "https://www.w3.org/TR/edit-context/#abstract" } }, + "#association-and-activation": { + "current": { + "number": "1.2.2", + "spec": "EditContext API", + "text": "Association and activation", + "url": "https://w3c.github.io/edit-context/#association-and-activation" + } + }, "#background": { "current": { "number": "1.1", @@ -23,7 +31,7 @@ }, "#characterboundsupdateevent": { "current": { - "number": "5.3", + "number": "4.3", "spec": "EditContext API", "text": "CharacterBoundsUpdateEvent", "url": "https://w3c.github.io/edit-context/#characterboundsupdateevent" @@ -63,9 +71,65 @@ "url": "https://www.w3.org/TR/edit-context/#contributors" } }, + "#deactivate-an-editcontext": { + "current": { + "number": "3.1.8", + "spec": "EditContext API", + "text": "Deactivate an EditContext", + "url": "https://w3c.github.io/edit-context/#deactivate-an-editcontext" + } + }, + "#determine-the-active-editcontext": { + "current": { + "number": "3.1.9", + "spec": "EditContext API", + "text": "Determine the active EditContext", + "url": "https://w3c.github.io/edit-context/#determine-the-active-editcontext" + } + }, + "#differences-for-an-editcontext-editing-host": { + "current": { + "number": "1.2.3", + "spec": "EditContext API", + "text": "Differences for an EditContext editing host", + "url": "https://w3c.github.io/edit-context/#differences-for-an-editcontext-editing-host" + } + }, + "#dispatch-character-bounds-update-event": { + "current": { + "number": "3.1.7", + "spec": "EditContext API", + "text": "Dispatch character bounds update event", + "url": "https://w3c.github.io/edit-context/#dispatch-character-bounds-update-event" + } + }, + "#dispatch-text-format-update-event": { + "current": { + "number": "3.1.6", + "spec": "EditContext API", + "text": "Dispatch text format update event", + "url": "https://w3c.github.io/edit-context/#dispatch-text-format-update-event" + } + }, + "#dispatch-text-update-event": { + "current": { + "number": "3.1.5", + "spec": "EditContext API", + "text": "Dispatch text update event", + "url": "https://w3c.github.io/edit-context/#dispatch-text-update-event" + } + }, + "#editcontext-api": { + "current": { + "number": "3", + "spec": "EditContext API", + "text": "EditContext API", + "url": "https://w3c.github.io/edit-context/#editcontext-api" + } + }, "#editcontext-events": { "current": { - "number": "5", + "number": "1.2.4", "spec": "EditContext API", "text": "EditContext events", "url": "https://w3c.github.io/edit-context/#editcontext-events" @@ -77,6 +141,30 @@ "url": "https://www.w3.org/TR/edit-context/#editcontext-events" } }, + "#editcontext-events-0": { + "current": { + "number": "4", + "spec": "EditContext API", + "text": "EditContext Events", + "url": "https://w3c.github.io/edit-context/#editcontext-events-0" + } + }, + "#editcontext-handled-inputtype": { + "current": { + "number": "3.1.2", + "spec": "EditContext API", + "text": "EditContext-handled inputType", + "url": "https://w3c.github.io/edit-context/#editcontext-handled-inputtype" + } + }, + "#editcontext-interface-0": { + "current": { + "number": "3.2", + "spec": "EditContext API", + "text": "EditContext Interface", + "url": "https://w3c.github.io/edit-context/#editcontext-interface-0" + } + }, "#editcontext-model": { "current": { "number": "1.2", @@ -91,13 +179,31 @@ "url": "https://www.w3.org/TR/edit-context/#editcontext-model" } }, - "#extensions-to-the-element-interface": { + "#editcontext-state": { "current": { - "number": "3", + "number": "1.2.1", "spec": "EditContext API", - "text": "Extensions to the Element interface", - "url": "https://w3c.github.io/edit-context/#extensions-to-the-element-interface" - }, + "text": "EditContext state", + "url": "https://w3c.github.io/edit-context/#editcontext-state" + } + }, + "#event-loop-changes": { + "current": { + "number": "1.2.5", + "spec": "EditContext API", + "text": "Event loop changes", + "url": "https://w3c.github.io/edit-context/#event-loop-changes" + } + }, + "#examples": { + "current": { + "number": "1.2.6", + "spec": "EditContext API", + "text": "Examples", + "url": "https://w3c.github.io/edit-context/#examples" + } + }, + "#extensions-to-the-element-interface": { "snapshot": { "number": "3", "spec": "EditContext API", @@ -105,6 +211,22 @@ "url": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" } }, + "#extensions-to-the-htmlelement-interface": { + "current": { + "number": "3.1", + "spec": "EditContext API", + "text": "Extensions to the HTMLElement interface", + "url": "https://w3c.github.io/edit-context/#extensions-to-the-htmlelement-interface" + } + }, + "#handle-input-for-editcontext": { + "current": { + "number": "3.1.1", + "spec": "EditContext API", + "text": "Handle input for EditContext", + "url": "https://w3c.github.io/edit-context/#handle-input-for-editcontext" + } + }, "#idl-index": { "current": { "number": "A", @@ -119,6 +241,14 @@ "url": "https://www.w3.org/TR/edit-context/#idl-index" } }, + "#informative-references": { + "current": { + "number": "C.2", + "spec": "EditContext API", + "text": "Informative references", + "url": "https://w3c.github.io/edit-context/#informative-references" + } + }, "#interactions": { "current": { "number": "1.3", @@ -162,12 +292,6 @@ } }, "#privacy-and-security-considerations": { - "current": { - "number": "6", - "spec": "EditContext API", - "text": "Privacy and Security Considerations", - "url": "https://w3c.github.io/edit-context/#privacy-and-security-considerations" - }, "snapshot": { "number": "6", "spec": "EditContext API", @@ -198,12 +322,6 @@ } }, "#supported-elements": { - "current": { - "number": "3.1", - "spec": "EditContext API", - "text": "Supported elements", - "url": "https://w3c.github.io/edit-context/#supported-elements" - }, "snapshot": { "number": "3.1", "spec": "EditContext API", @@ -213,7 +331,7 @@ }, "#textformatupdateevent": { "current": { - "number": "5.2", + "number": "4.2", "spec": "EditContext API", "text": "TextFormatUpdateEvent", "url": "https://w3c.github.io/edit-context/#textformatupdateevent" @@ -227,7 +345,7 @@ }, "#textupdateevent": { "current": { - "number": "5.1", + "number": "4.1", "spec": "EditContext API", "text": "TextUpdateEvent", "url": "https://w3c.github.io/edit-context/#textupdateevent" @@ -240,12 +358,6 @@ } }, "#the-editcontext-interface": { - "current": { - "number": "4", - "spec": "EditContext API", - "text": "The EditContext Interface", - "url": "https://w3c.github.io/edit-context/#the-editcontext-interface" - }, "snapshot": { "number": "4", "spec": "EditContext API", @@ -280,5 +392,21 @@ "text": "Table of Contents", "url": "https://www.w3.org/TR/edit-context/#toc" } + }, + "#update-the-editcontext": { + "current": { + "number": "3.1.3", + "spec": "EditContext API", + "text": "Update the EditContext", + "url": "https://w3c.github.io/edit-context/#update-the-editcontext" + } + }, + "#update-the-text-edit-context": { + "current": { + "number": "3.1.4", + "spec": "EditContext API", + "text": "Update the Text Edit Context", + "url": "https://w3c.github.io/edit-context/#update-the-text-edit-context" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-element-capture.json b/bikeshed/spec-data/readonly/headings/headings-element-capture.json new file mode 100644 index 0000000000..6dadae22c7 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-element-capture.json @@ -0,0 +1,226 @@ +{ + "#aggravating-old-attack-vectors": { + "current": { + "number": "8.2.2", + "spec": "Element Capture", + "text": "Aggravating old attack vectors", + "url": "https://screen-share.github.io/element-capture/#aggravating-old-attack-vectors" + } + }, + "#applying-the-restriction-transformation": { + "current": { + "number": "6", + "spec": "Element Capture", + "text": "Applying the restriction transformation", + "url": "https://screen-share.github.io/element-capture/#applying-the-restriction-transformation" + } + }, + "#benefits-of-this-api": { + "current": { + "number": "8.1", + "spec": "Element Capture", + "text": "Benefits of this API", + "url": "https://screen-share.github.io/element-capture/#benefits-of-this-api" + } + }, + "#browser-capture-media-stream-track-extension": { + "current": { + "number": "5.2", + "spec": "Element Capture", + "text": "BrowserCaptureMediaStreamTrack extension", + "url": "https://screen-share.github.io/element-capture/#browser-capture-media-stream-track-extension" + } + }, + "#concerns-about-this-api": { + "current": { + "number": "8.2", + "spec": "Element Capture", + "text": "Concerns about this API", + "url": "https://screen-share.github.io/element-capture/#concerns-about-this-api" + } + }, + "#conformance": { + "current": { + "number": "1", + "spec": "Element Capture", + "text": "Conformance", + "url": "https://screen-share.github.io/element-capture/#conformance" + } + }, + "#definitions": { + "current": { + "number": "5.1", + "spec": "Element Capture", + "text": "Definitions", + "url": "https://screen-share.github.io/element-capture/#definitions" + } + }, + "#elements-eligible-for-restriction": { + "current": { + "number": "5.1.2", + "spec": "Element Capture", + "text": "Elements eligible for restriction", + "url": "https://screen-share.github.io/element-capture/#elements-eligible-for-restriction" + } + }, + "#generic-use-case": { + "current": { + "number": "2.1", + "spec": "Element Capture", + "text": "Generic Use-Case", + "url": "https://screen-share.github.io/element-capture/#generic-use-case" + } + }, + "#interaction-with-region-capture": { + "current": { + "number": "8.2.4", + "spec": "Element Capture", + "text": "Interaction with Region Capture", + "url": "https://screen-share.github.io/element-capture/#interaction-with-region-capture" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "Element Capture", + "text": "Normative references", + "url": "https://screen-share.github.io/element-capture/#normative-references" + } + }, + "#practical-use-case-1": { + "current": { + "number": "2.2", + "spec": "Element Capture", + "text": "Practical Use-Case #1: Recording part of an app", + "url": "https://screen-share.github.io/element-capture/#practical-use-case-1" + } + }, + "#practical-use-case-2": { + "current": { + "number": "2.3", + "spec": "Element Capture", + "text": "Practical Use-Case #2: Collaborative tools during video-conferencing", + "url": "https://screen-share.github.io/element-capture/#practical-use-case-2" + } + }, + "#privacy-and-security-considerations": { + "current": { + "number": "8", + "spec": "Element Capture", + "text": "Privacy and Security Considerations", + "url": "https://screen-share.github.io/element-capture/#privacy-and-security-considerations" + } + }, + "#produce-restriction-target": { + "current": { + "number": "4", + "spec": "Element Capture", + "text": "RestrictionTarget Production", + "url": "https://screen-share.github.io/element-capture/#produce-restriction-target" + } + }, + "#reading-cross-origin-pixels": { + "current": { + "number": "8.2.1", + "spec": "Element Capture", + "text": "Reading cross-origin pixels", + "url": "https://screen-share.github.io/element-capture/#reading-cross-origin-pixels" + } + }, + "#reading-occluded-content": { + "current": { + "number": "8.2.3", + "spec": "Element Capture", + "text": "Reading occluded content", + "url": "https://screen-share.github.io/element-capture/#reading-occluded-content" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Element Capture", + "text": "References", + "url": "https://screen-share.github.io/element-capture/#references" + } + }, + "#restrictable-tracks": { + "current": { + "number": "5.1.1", + "spec": "Element Capture", + "text": "Restrictable tracks", + "url": "https://screen-share.github.io/element-capture/#restrictable-tracks" + } + }, + "#restricting-a-track": { + "current": { + "number": "5", + "spec": "Element Capture", + "text": "Restriction Mechanism", + "url": "https://screen-share.github.io/element-capture/#restricting-a-track" + } + }, + "#restriction-target": { + "current": { + "number": "4.2", + "spec": "Element Capture", + "text": "RestrictionTarget Definition", + "url": "https://screen-share.github.io/element-capture/#restriction-target" + } + }, + "#restriction-target-motivation": { + "current": { + "number": "4.1", + "spec": "Element Capture", + "text": "Motivation for defining RestrictionTarget", + "url": "https://screen-share.github.io/element-capture/#restriction-target-motivation" + } + }, + "#sample-code": { + "current": { + "number": "7", + "spec": "Element Capture", + "text": "Sample Code", + "url": "https://screen-share.github.io/element-capture/#sample-code" + } + }, + "#solution-overview": { + "current": { + "number": "3", + "spec": "Element Capture", + "text": "Solution Overview", + "url": "https://screen-share.github.io/element-capture/#solution-overview" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Element Capture", + "text": "Element Capture", + "url": "https://screen-share.github.io/element-capture/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Element Capture", + "text": "Table of Contents", + "url": "https://screen-share.github.io/element-capture/#toc" + } + }, + "#use-cases": { + "current": { + "number": "2", + "spec": "Element Capture", + "text": "Use Cases", + "url": "https://screen-share.github.io/element-capture/#use-cases" + } + }, + "#valid-restriction-targets": { + "current": { + "number": "5.1.3", + "spec": "Element Capture", + "text": "Valid restriction targets", + "url": "https://screen-share.github.io/element-capture/#valid-restriction-targets" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-element-timing.json b/bikeshed/spec-data/readonly/headings/headings-element-timing.json index b5831a3bea..96413096fe 100644 --- a/bikeshed/spec-data/readonly/headings/headings-element-timing.json +++ b/bikeshed/spec-data/readonly/headings/headings-element-timing.json @@ -39,14 +39,6 @@ "url": "https://wicg.github.io/element-timing/#index-defined-here" } }, - "#informative": { - "current": { - "number": "", - "spec": "Element Timing API", - "text": "Informative References", - "url": "https://wicg.github.io/element-timing/#informative" - } - }, "#normative": { "current": { "number": "", @@ -63,14 +55,6 @@ "url": "https://wicg.github.io/element-timing/#references" } }, - "#sec-element-processing": { - "current": { - "number": "3.7", - "spec": "Element Timing API", - "text": "Element Timing processing", - "url": "https://wicg.github.io/element-timing/#sec-element-processing" - } - }, "#sec-element-timing": { "current": { "number": "2", @@ -95,14 +79,6 @@ "url": "https://wicg.github.io/element-timing/#sec-example" } }, - "#sec-get-an-element": { - "current": { - "number": "3.8", - "spec": "Element Timing API", - "text": "Get an element algorithm", - "url": "https://wicg.github.io/element-timing/#sec-get-an-element" - } - }, "#sec-intro": { "current": { "number": "1", @@ -111,14 +87,6 @@ "url": "https://wicg.github.io/element-timing/#sec-intro" } }, - "#sec-modifications-CSS": { - "current": { - "number": "3.2", - "spec": "Element Timing API", - "text": "Modifications to the CSS specification", - "url": "https://wicg.github.io/element-timing/#sec-modifications-CSS" - } - }, "#sec-modifications-DOM": { "current": { "number": "3.1", @@ -127,14 +95,6 @@ "url": "https://wicg.github.io/element-timing/#sec-modifications-DOM" } }, - "#sec-modifications-HTML": { - "current": { - "number": "3.3", - "spec": "Element Timing API", - "text": "Modifications to the HTML specification", - "url": "https://wicg.github.io/element-timing/#sec-modifications-HTML" - } - }, "#sec-performance-element-timing": { "current": { "number": "2.1", @@ -143,14 +103,6 @@ "url": "https://wicg.github.io/element-timing/#sec-performance-element-timing" } }, - "#sec-process-loaded-image": { - "current": { - "number": "3.4", - "spec": "Element Timing API", - "text": "Process image that finished loading", - "url": "https://wicg.github.io/element-timing/#sec-process-loaded-image" - } - }, "#sec-processing-model": { "current": { "number": "3", @@ -159,19 +111,27 @@ "url": "https://wicg.github.io/element-timing/#sec-processing-model" } }, + "#sec-report-element-timing": { + "current": { + "number": "3.2", + "spec": "Element Timing API", + "text": "Report Element Timing", + "url": "https://wicg.github.io/element-timing/#sec-report-element-timing" + } + }, "#sec-report-image-element": { "current": { - "number": "3.5", + "number": "3.3", "spec": "Element Timing API", - "text": "Report image Element Timing", + "text": "Report Image Element Timing", "url": "https://wicg.github.io/element-timing/#sec-report-image-element" } }, "#sec-report-text": { "current": { - "number": "3.6", + "number": "3.4", "spec": "Element Timing API", - "text": "Report text Element Timing", + "text": "Report Text Element Timing", "url": "https://wicg.github.io/element-timing/#sec-report-text" } }, @@ -215,14 +175,6 @@ "url": "https://wicg.github.io/element-timing/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Element Timing API", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/element-timing/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-hdcp-version-registry.json b/bikeshed/spec-data/readonly/headings/headings-eme-hdcp-version-registry.json new file mode 100644 index 0000000000..aed2cdf1b4 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-hdcp-version-registry.json @@ -0,0 +1,128 @@ +{ + "#informative-references": { + "current": { + "number": "A.1", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Informative references", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#informative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Informative references", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#informative-references" + } + }, + "#organization": { + "current": { + "number": "1", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Organization", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#organization" + }, + "snapshot": { + "number": "1", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Organization", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#organization" + } + }, + "#privacy-considerations": { + "current": { + "number": "4", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#privacy-considerations" + }, + "snapshot": { + "number": "4", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#privacy-considerations" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#references" + }, + "snapshot": { + "number": "A", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "References", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#references" + } + }, + "#registration-entry-requirements": { + "current": { + "number": "2", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Registration Entry Requirements", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#registration-entry-requirements" + }, + "snapshot": { + "number": "2", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Registration Entry Requirements", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#registration-entry-requirements" + } + }, + "#registry": { + "current": { + "number": "3", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Registry", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#registry" + }, + "snapshot": { + "number": "3", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Registry", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#registry" + } + }, + "#security-considerations": { + "current": { + "number": "5", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Security Considerations", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#security-considerations" + }, + "snapshot": { + "number": "5", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#security-considerations" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Encrypted Media Extensions HDCP Version Registry", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#title" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Encrypted Media Extensions HDCP Version Registry", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html#toc" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions HDCP Version Registry", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-hdcp-version-registry/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-initdata-cenc.json b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-cenc.json new file mode 100644 index 0000000000..5e8c90c748 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-cenc.json @@ -0,0 +1,170 @@ +{ + "#clear-key": { + "current": { + "number": "3", + "spec": "\"cenc\" Initialization Data Format", + "text": "Use with Clear Key", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#clear-key" + }, + "snapshot": { + "number": "3", + "spec": "\"cenc\" Initialization Data Format", + "text": "Use with Clear Key", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#clear-key" + } + }, + "#common-system": { + "current": { + "number": "4", + "spec": "\"cenc\" Initialization Data Format", + "text": "Common SystemID and PSSH Box Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#common-system" + }, + "snapshot": { + "number": "4", + "spec": "\"cenc\" Initialization Data Format", + "text": "Common SystemID and PSSH Box Format", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#common-system" + } + }, + "#common-system-definition": { + "current": { + "number": "4.1", + "spec": "\"cenc\" Initialization Data Format", + "text": "Definition", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#common-system-definition" + }, + "snapshot": { + "number": "4.1", + "spec": "\"cenc\" Initialization Data Format", + "text": "Definition", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#common-system-definition" + } + }, + "#conformance": { + "current": { + "number": "5", + "spec": "\"cenc\" Initialization Data Format", + "text": "Conformance", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#conformance" + }, + "snapshot": { + "number": "5", + "spec": "\"cenc\" Initialization Data Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#conformance" + } + }, + "#example": { + "current": { + "number": "4.2", + "spec": "\"cenc\" Initialization Data Format", + "text": "Example", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#example" + }, + "snapshot": { + "number": "4.2", + "spec": "\"cenc\" Initialization Data Format", + "text": "Example", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#example" + } + }, + "#format": { + "current": { + "number": "1", + "spec": "\"cenc\" Initialization Data Format", + "text": "Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#format" + }, + "snapshot": { + "number": "1", + "spec": "\"cenc\" Initialization Data Format", + "text": "Format", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#format" + } + }, + "#informative-references": { + "current": { + "number": "A.2", + "spec": "\"cenc\" Initialization Data Format", + "text": "Informative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#informative-references" + }, + "snapshot": { + "number": "A.2", + "spec": "\"cenc\" Initialization Data Format", + "text": "Informative references", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#informative-references" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "\"cenc\" Initialization Data Format", + "text": "Normative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "\"cenc\" Initialization Data Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#normative-references" + } + }, + "#processing": { + "current": { + "number": "2", + "spec": "\"cenc\" Initialization Data Format", + "text": "Processing", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#processing" + }, + "snapshot": { + "number": "2", + "spec": "\"cenc\" Initialization Data Format", + "text": "Processing", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#processing" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "\"cenc\" Initialization Data Format", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#references" + }, + "snapshot": { + "number": "A", + "spec": "\"cenc\" Initialization Data Format", + "text": "References", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "\"cenc\" Initialization Data Format", + "text": "\"cenc\" Initialization Data Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#title" + }, + "snapshot": { + "number": "", + "spec": "\"cenc\" Initialization Data Format", + "text": "\"cenc\" Initialization Data Format", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "\"cenc\" Initialization Data Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html#toc" + }, + "snapshot": { + "number": "", + "spec": "\"cenc\" Initialization Data Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-initdata-cenc/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-initdata-keyids.json b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-keyids.json new file mode 100644 index 0000000000..75db96bbe4 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-keyids.json @@ -0,0 +1,100 @@ +{ + "#conformance": { + "current": { + "number": "3", + "spec": "\"keyids\" Initialization Data Format", + "text": "Conformance", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#conformance" + }, + "snapshot": { + "number": "3", + "spec": "\"keyids\" Initialization Data Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#conformance" + } + }, + "#example": { + "current": { + "number": "2", + "spec": "\"keyids\" Initialization Data Format", + "text": "Example", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#example" + }, + "snapshot": { + "number": "2", + "spec": "\"keyids\" Initialization Data Format", + "text": "Example", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#example" + } + }, + "#format": { + "current": { + "number": "1", + "spec": "\"keyids\" Initialization Data Format", + "text": "Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#format" + }, + "snapshot": { + "number": "1", + "spec": "\"keyids\" Initialization Data Format", + "text": "Format", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#format" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "\"keyids\" Initialization Data Format", + "text": "Normative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "\"keyids\" Initialization Data Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "\"keyids\" Initialization Data Format", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#references" + }, + "snapshot": { + "number": "A", + "spec": "\"keyids\" Initialization Data Format", + "text": "References", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "\"keyids\" Initialization Data Format", + "text": "\"keyids\" Initialization Data Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#title" + }, + "snapshot": { + "number": "", + "spec": "\"keyids\" Initialization Data Format", + "text": "\"keyids\" Initialization Data Format", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "\"keyids\" Initialization Data Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html#toc" + }, + "snapshot": { + "number": "", + "spec": "\"keyids\" Initialization Data Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-initdata-keyids/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-initdata-registry.json b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-registry.json new file mode 100644 index 0000000000..e21d74446a --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-registry.json @@ -0,0 +1,114 @@ +{ + "#entry-requirements": { + "current": { + "number": "3", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Registration Entry Requirements", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#entry-requirements" + }, + "snapshot": { + "number": "3", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Registration Entry Requirements", + "url": "https://www.w3.org/TR/eme-initdata-registry/#entry-requirements" + } + }, + "#informative-references": { + "current": { + "number": "A.1", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Informative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#informative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Informative references", + "url": "https://www.w3.org/TR/eme-initdata-registry/#informative-references" + } + }, + "#organization": { + "current": { + "number": "2", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Organization", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#organization" + }, + "snapshot": { + "number": "2", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Organization", + "url": "https://www.w3.org/TR/eme-initdata-registry/#organization" + } + }, + "#purpose": { + "current": { + "number": "1", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Purpose", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#purpose" + }, + "snapshot": { + "number": "1", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Purpose", + "url": "https://www.w3.org/TR/eme-initdata-registry/#purpose" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#references" + }, + "snapshot": { + "number": "A", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "References", + "url": "https://www.w3.org/TR/eme-initdata-registry/#references" + } + }, + "#registry": { + "current": { + "number": "4", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Registry", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#registry" + }, + "snapshot": { + "number": "4", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Registry", + "url": "https://www.w3.org/TR/eme-initdata-registry/#registry" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Encrypted Media Extensions Initialization Data Format Registry", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#title" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Encrypted Media Extensions Initialization Data Format Registry", + "url": "https://www.w3.org/TR/eme-initdata-registry/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/#toc" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions Initialization Data Format Registry", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-initdata-registry/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-initdata-webm.json b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-webm.json new file mode 100644 index 0000000000..dd77687647 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-initdata-webm.json @@ -0,0 +1,100 @@ +{ + "#conformance": { + "current": { + "number": "2", + "spec": "\"webm\" Initialization Data Format", + "text": "Conformance", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#conformance" + }, + "snapshot": { + "number": "2", + "spec": "\"webm\" Initialization Data Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/eme-initdata-webm/#conformance" + } + }, + "#format": { + "current": { + "number": "1", + "spec": "\"webm\" Initialization Data Format", + "text": "Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#format" + }, + "snapshot": { + "number": "1", + "spec": "\"webm\" Initialization Data Format", + "text": "Format", + "url": "https://www.w3.org/TR/eme-initdata-webm/#format" + } + }, + "#informative-references": { + "current": { + "number": "A.2", + "spec": "\"webm\" Initialization Data Format", + "text": "Informative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#informative-references" + }, + "snapshot": { + "number": "A.2", + "spec": "\"webm\" Initialization Data Format", + "text": "Informative references", + "url": "https://www.w3.org/TR/eme-initdata-webm/#informative-references" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "\"webm\" Initialization Data Format", + "text": "Normative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "\"webm\" Initialization Data Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/eme-initdata-webm/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "\"webm\" Initialization Data Format", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#references" + }, + "snapshot": { + "number": "A", + "spec": "\"webm\" Initialization Data Format", + "text": "References", + "url": "https://www.w3.org/TR/eme-initdata-webm/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "\"webm\" Initialization Data Format", + "text": "\"webm\" Initialization Data Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#title" + }, + "snapshot": { + "number": "", + "spec": "\"webm\" Initialization Data Format", + "text": "\"webm\" Initialization Data Format", + "url": "https://www.w3.org/TR/eme-initdata-webm/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "\"webm\" Initialization Data Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html#toc" + }, + "snapshot": { + "number": "", + "spec": "\"webm\" Initialization Data Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-initdata-webm/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-stream-mp4.json b/bikeshed/spec-data/readonly/headings/headings-eme-stream-mp4.json new file mode 100644 index 0000000000..d26db87f0e --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-stream-mp4.json @@ -0,0 +1,128 @@ +{ + "#conformance": { + "current": { + "number": "5", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Conformance", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#conformance" + }, + "snapshot": { + "number": "5", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/eme-stream-mp4/#conformance" + } + }, + "#detect-encrypted-blocks": { + "current": { + "number": "3", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Detecting Encrypted Blocks", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#detect-encrypted-blocks" + }, + "snapshot": { + "number": "3", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Detecting Encrypted Blocks", + "url": "https://www.w3.org/TR/eme-stream-mp4/#detect-encrypted-blocks" + } + }, + "#detect-format": { + "current": { + "number": "2", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Detection", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#detect-format" + }, + "snapshot": { + "number": "2", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Detection", + "url": "https://www.w3.org/TR/eme-stream-mp4/#detect-format" + } + }, + "#init-data": { + "current": { + "number": "4", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Initialization Data Extraction", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#init-data" + }, + "snapshot": { + "number": "4", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Initialization Data Extraction", + "url": "https://www.w3.org/TR/eme-stream-mp4/#init-data" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Normative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/eme-stream-mp4/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#references" + }, + "snapshot": { + "number": "A", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "References", + "url": "https://www.w3.org/TR/eme-stream-mp4/#references" + } + }, + "#stream-format": { + "current": { + "number": "1", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Stream Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#stream-format" + }, + "snapshot": { + "number": "1", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Stream Format", + "url": "https://www.w3.org/TR/eme-stream-mp4/#stream-format" + } + }, + "#title": { + "current": { + "number": "", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#title" + }, + "snapshot": { + "number": "", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "url": "https://www.w3.org/TR/eme-stream-mp4/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html#toc" + }, + "snapshot": { + "number": "", + "spec": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-stream-mp4/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-stream-registry.json b/bikeshed/spec-data/readonly/headings/headings-eme-stream-registry.json new file mode 100644 index 0000000000..a00edf325a --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-stream-registry.json @@ -0,0 +1,114 @@ +{ + "#entry-requirements": { + "current": { + "number": "3", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Registration Entry Requirements", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#entry-requirements" + }, + "snapshot": { + "number": "3", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Registration Entry Requirements", + "url": "https://www.w3.org/TR/eme-stream-registry/#entry-requirements" + } + }, + "#informative-references": { + "current": { + "number": "A.1", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Informative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#informative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Informative references", + "url": "https://www.w3.org/TR/eme-stream-registry/#informative-references" + } + }, + "#organization": { + "current": { + "number": "2", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Organization", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#organization" + }, + "snapshot": { + "number": "2", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Organization", + "url": "https://www.w3.org/TR/eme-stream-registry/#organization" + } + }, + "#purpose": { + "current": { + "number": "1", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Purpose", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#purpose" + }, + "snapshot": { + "number": "1", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Purpose", + "url": "https://www.w3.org/TR/eme-stream-registry/#purpose" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#references" + }, + "snapshot": { + "number": "A", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "References", + "url": "https://www.w3.org/TR/eme-stream-registry/#references" + } + }, + "#registry": { + "current": { + "number": "4", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Registry", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#registry" + }, + "snapshot": { + "number": "4", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Registry", + "url": "https://www.w3.org/TR/eme-stream-registry/#registry" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Encrypted Media Extensions Stream Format Registry", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#title" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Encrypted Media Extensions Stream Format Registry", + "url": "https://www.w3.org/TR/eme-stream-registry/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/#toc" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions Stream Format Registry", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-stream-registry/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-eme-stream-webm.json b/bikeshed/spec-data/readonly/headings/headings-eme-stream-webm.json new file mode 100644 index 0000000000..9ee441612d --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-eme-stream-webm.json @@ -0,0 +1,128 @@ +{ + "#conformance": { + "current": { + "number": "5", + "spec": "WebM Stream Format", + "text": "Conformance", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#conformance" + }, + "snapshot": { + "number": "5", + "spec": "WebM Stream Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/eme-stream-webm/#conformance" + } + }, + "#detect-encrypted-blocks": { + "current": { + "number": "3", + "spec": "WebM Stream Format", + "text": "Detecting Encrypted Blocks", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#detect-encrypted-blocks" + }, + "snapshot": { + "number": "3", + "spec": "WebM Stream Format", + "text": "Detecting Encrypted Blocks", + "url": "https://www.w3.org/TR/eme-stream-webm/#detect-encrypted-blocks" + } + }, + "#detect-format": { + "current": { + "number": "2", + "spec": "WebM Stream Format", + "text": "Detection", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#detect-format" + }, + "snapshot": { + "number": "2", + "spec": "WebM Stream Format", + "text": "Detection", + "url": "https://www.w3.org/TR/eme-stream-webm/#detect-format" + } + }, + "#init-data": { + "current": { + "number": "4", + "spec": "WebM Stream Format", + "text": "Initialization Data Extraction", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#init-data" + }, + "snapshot": { + "number": "4", + "spec": "WebM Stream Format", + "text": "Initialization Data Extraction", + "url": "https://www.w3.org/TR/eme-stream-webm/#init-data" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "WebM Stream Format", + "text": "Normative references", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "WebM Stream Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/eme-stream-webm/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "WebM Stream Format", + "text": "References", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#references" + }, + "snapshot": { + "number": "A", + "spec": "WebM Stream Format", + "text": "References", + "url": "https://www.w3.org/TR/eme-stream-webm/#references" + } + }, + "#stream-format": { + "current": { + "number": "1", + "spec": "WebM Stream Format", + "text": "Stream Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#stream-format" + }, + "snapshot": { + "number": "1", + "spec": "WebM Stream Format", + "text": "Stream Format", + "url": "https://www.w3.org/TR/eme-stream-webm/#stream-format" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebM Stream Format", + "text": "WebM Stream Format", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#title" + }, + "snapshot": { + "number": "", + "spec": "WebM Stream Format", + "text": "WebM Stream Format", + "url": "https://www.w3.org/TR/eme-stream-webm/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WebM Stream Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html#toc" + }, + "snapshot": { + "number": "", + "spec": "WebM Stream Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/eme-stream-webm/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-encoding.json b/bikeshed/spec-data/readonly/headings/headings-encoding.json index ac2c8e24c8..21292be3c6 100644 --- a/bikeshed/spec-data/readonly/headings/headings-encoding.json +++ b/bikeshed/spec-data/readonly/headings/headings-encoding.json @@ -487,14 +487,6 @@ "url": "https://encoding.spec.whatwg.org/#specification-hooks" } }, - "#subtitle": { - "current": { - "number": "", - "spec": "Encoding", - "text": "Living Standard — Last Updated 26 October 2022", - "url": "https://encoding.spec.whatwg.org/#subtitle" - } - }, "#terminology": { "current": { "number": "3", diff --git a/bikeshed/spec-data/readonly/headings/headings-encrypted-media.json b/bikeshed/spec-data/readonly/headings/headings-encrypted-media-2.json similarity index 79% rename from bikeshed/spec-data/readonly/headings/headings-encrypted-media.json rename to bikeshed/spec-data/readonly/headings/headings-encrypted-media-2.json index 02f474ecb4..6a18263742 100644 --- a/bikeshed/spec-data/readonly/headings/headings-encrypted-media.json +++ b/bikeshed/spec-data/readonly/headings/headings-encrypted-media-2.json @@ -1,12 +1,4 @@ { - "#abstract": { - "snapshot": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Abstract", - "url": "https://www.w3.org/TR/encrypted-media/#abstract" - } - }, "#acknowledgements": { "current": { "number": "", @@ -18,35 +10,35 @@ "number": "", "spec": "Encrypted Media Extensions", "text": "14. Acknowledgments", - "url": "https://www.w3.org/TR/encrypted-media/#acknowledgements" + "url": "https://www.w3.org/TR/encrypted-media-2/#acknowledgements" } }, "#algorithms": { "current": { - "number": "3.2.1", + "number": "3.2.2", "spec": "Encrypted Media Extensions", "text": "Algorithms", "url": "https://w3c.github.io/encrypted-media/#algorithms" }, "snapshot": { - "number": "3.1.1", + "number": "3.2.2", "spec": "Encrypted Media Extensions", "text": "Algorithms", - "url": "https://www.w3.org/TR/encrypted-media/#algorithms" + "url": "https://www.w3.org/TR/encrypted-media-2/#algorithms" } }, "#algorithms-0": { "current": { - "number": "5.1", + "number": "5.2", "spec": "Encrypted Media Extensions", "text": "Algorithms", "url": "https://w3c.github.io/encrypted-media/#algorithms-0" }, "snapshot": { - "number": "5.1", + "number": "5.2", "spec": "Encrypted Media Extensions", "text": "Algorithms", - "url": "https://www.w3.org/TR/encrypted-media/#algorithms-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#algorithms-0" } }, "#allow-identifiers-cleared": { @@ -60,7 +52,7 @@ "number": "8.5.5", "spec": "Encrypted Media Extensions", "text": "Allow Identifiers to Be Cleared", - "url": "https://www.w3.org/TR/encrypted-media/#allow-identifiers-cleared" + "url": "https://www.w3.org/TR/encrypted-media-2/#allow-identifiers-cleared" } }, "#allow-persistent-data-cleared": { @@ -74,7 +66,7 @@ "number": "8.3.2", "spec": "Encrypted Media Extensions", "text": "Allow Persistent Data to Be Cleared", - "url": "https://www.w3.org/TR/encrypted-media/#allow-persistent-data-cleared" + "url": "https://www.w3.org/TR/encrypted-media-2/#allow-persistent-data-cleared" } }, "#allow-values-to-be-cleared": { @@ -88,7 +80,7 @@ "number": "8.4.2", "spec": "Encrypted Media Extensions", "text": "Allow Values to Be Cleared", - "url": "https://www.w3.org/TR/encrypted-media/#allow-values-to-be-cleared" + "url": "https://www.w3.org/TR/encrypted-media-2/#allow-values-to-be-cleared" } }, "#app-assisted-individualization": { @@ -102,105 +94,105 @@ "number": "8.6.2", "spec": "Encrypted Media Extensions", "text": "App-Assisted Individualization", - "url": "https://www.w3.org/TR/encrypted-media/#app-assisted-individualization" + "url": "https://www.w3.org/TR/encrypted-media-2/#app-assisted-individualization" } }, "#attempt-to-decrypt": { "current": { - "number": "7.3.4", + "number": "7.5.4", "spec": "Encrypted Media Extensions", "text": "Attempt to Decrypt", "url": "https://w3c.github.io/encrypted-media/#attempt-to-decrypt" }, "snapshot": { - "number": "7.3.4", + "number": "7.5.4", "spec": "Encrypted Media Extensions", "text": "Attempt to Decrypt", - "url": "https://www.w3.org/TR/encrypted-media/#attempt-to-decrypt" + "url": "https://www.w3.org/TR/encrypted-media-2/#attempt-to-decrypt" } }, "#attributes": { "current": { - "number": "", + "number": "4.1", "spec": "Encrypted Media Extensions", "text": "Attributes", "url": "https://w3c.github.io/encrypted-media/#attributes" }, "snapshot": { - "number": "", + "number": "4.1", "spec": "Encrypted Media Extensions", "text": "Attributes", - "url": "https://www.w3.org/TR/encrypted-media/#attributes" + "url": "https://www.w3.org/TR/encrypted-media-2/#attributes" } }, "#attributes-0": { "current": { - "number": "", + "number": "6.1", "spec": "Encrypted Media Extensions", "text": "Attributes", "url": "https://w3c.github.io/encrypted-media/#attributes-0" }, "snapshot": { - "number": "", + "number": "6.1", "spec": "Encrypted Media Extensions", "text": "Attributes", - "url": "https://www.w3.org/TR/encrypted-media/#attributes-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#attributes-0" } }, "#attributes-1": { "current": { - "number": "", + "number": "6.3.1", "spec": "Encrypted Media Extensions", "text": "Attributes", "url": "https://w3c.github.io/encrypted-media/#attributes-1" }, "snapshot": { - "number": "", + "number": "6.3.1", "spec": "Encrypted Media Extensions", "text": "Attributes", - "url": "https://www.w3.org/TR/encrypted-media/#attributes-1" + "url": "https://www.w3.org/TR/encrypted-media-2/#attributes-1" } }, "#attributes-2": { "current": { - "number": "", + "number": "6.4.1", "spec": "Encrypted Media Extensions", "text": "Attributes", "url": "https://w3c.github.io/encrypted-media/#attributes-2" }, "snapshot": { - "number": "", + "number": "6.4.1", "spec": "Encrypted Media Extensions", "text": "Attributes", - "url": "https://www.w3.org/TR/encrypted-media/#attributes-2" + "url": "https://www.w3.org/TR/encrypted-media-2/#attributes-2" } }, "#attributes-3": { "current": { - "number": "", + "number": "7.1", "spec": "Encrypted Media Extensions", "text": "Attributes", "url": "https://w3c.github.io/encrypted-media/#attributes-3" }, "snapshot": { - "number": "", + "number": "7.1", "spec": "Encrypted Media Extensions", "text": "Attributes", - "url": "https://www.w3.org/TR/encrypted-media/#attributes-3" + "url": "https://www.w3.org/TR/encrypted-media-2/#attributes-3" } }, "#attributes-4": { "current": { - "number": "", + "number": "7.3.1", "spec": "Encrypted Media Extensions", "text": "Attributes", "url": "https://w3c.github.io/encrypted-media/#attributes-4" }, "snapshot": { - "number": "", + "number": "7.3.1", "spec": "Encrypted Media Extensions", "text": "Attributes", - "url": "https://www.w3.org/TR/encrypted-media/#attributes-4" + "url": "https://www.w3.org/TR/encrypted-media-2/#attributes-4" } }, "#cdm-constraint-requirements": { @@ -214,7 +206,7 @@ "number": "8.1", "spec": "Encrypted Media Extensions", "text": "CDM Constraints", - "url": "https://www.w3.org/TR/encrypted-media/#cdm-constraint-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#cdm-constraint-requirements" } }, "#cdm-security": { @@ -228,21 +220,21 @@ "number": "10.2", "spec": "Encrypted Media Extensions", "text": "CDM Attacks and Vulnerabilities", - "url": "https://www.w3.org/TR/encrypted-media/#cdm-security" + "url": "https://www.w3.org/TR/encrypted-media-2/#cdm-security" } }, "#cdm-unavailable": { "current": { - "number": "5.1.2", + "number": "5.2.2", "spec": "Encrypted Media Extensions", "text": "CDM Unavailable", "url": "https://w3c.github.io/encrypted-media/#cdm-unavailable" }, "snapshot": { - "number": "5.1.2", + "number": "5.2.2", "spec": "Encrypted Media Extensions", "text": "CDM Unavailable", - "url": "https://www.w3.org/TR/encrypted-media/#cdm-unavailable" + "url": "https://www.w3.org/TR/encrypted-media-2/#cdm-unavailable" } }, "#clear-key": { @@ -256,7 +248,7 @@ "number": "9.1", "spec": "Encrypted Media Extensions", "text": "Clear Key", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key" } }, "#clear-key-behavior": { @@ -270,7 +262,7 @@ "number": "9.1.2", "spec": "Encrypted Media Extensions", "text": "Behavior", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-behavior" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-behavior" } }, "#clear-key-capabilities": { @@ -284,7 +276,7 @@ "number": "9.1.1", "spec": "Encrypted Media Extensions", "text": "Capabilities", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-capabilities" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-capabilities" } }, "#clear-key-license-format": { @@ -298,7 +290,7 @@ "number": "9.1.4", "spec": "Encrypted Media Extensions", "text": "License Format", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-license-format" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-license-format" } }, "#clear-key-license-format-example": { @@ -312,7 +304,7 @@ "number": "9.1.4.1", "spec": "Encrypted Media Extensions", "text": "Example", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-license-format-example" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-license-format-example" } }, "#clear-key-release-ack-format": { @@ -326,7 +318,7 @@ "number": "9.1.6", "spec": "Encrypted Media Extensions", "text": "License Release Acknowledgement Format", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-release-ack-format" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-release-ack-format" } }, "#clear-key-release-ack-format-example": { @@ -340,7 +332,7 @@ "number": "9.1.6.1", "spec": "Encrypted Media Extensions", "text": "Example", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-release-ack-format-example" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-release-ack-format-example" } }, "#clear-key-release-format": { @@ -354,7 +346,7 @@ "number": "9.1.5", "spec": "Encrypted Media Extensions", "text": "License Release Format", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-release-format" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-release-format" } }, "#clear-key-release-format-example-1": { @@ -368,7 +360,7 @@ "number": "9.1.5.1", "spec": "Encrypted Media Extensions", "text": "Example message reflecting a record of license destruction", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-release-format-example-1" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-release-format-example-1" } }, "#clear-key-request-format": { @@ -382,7 +374,7 @@ "number": "9.1.3", "spec": "Encrypted Media Extensions", "text": "License Request Format", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-request-format" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-request-format" } }, "#clear-key-request-format-example": { @@ -396,7 +388,7 @@ "number": "9.1.3.1", "spec": "Encrypted Media Extensions", "text": "Example", - "url": "https://www.w3.org/TR/encrypted-media/#clear-key-request-format-example" + "url": "https://www.w3.org/TR/encrypted-media-2/#clear-key-request-format-example" } }, "#common-key-systems": { @@ -410,7 +402,7 @@ "number": "9", "spec": "Encrypted Media Extensions", "text": "Common Key Systems", - "url": "https://www.w3.org/TR/encrypted-media/#common-key-systems" + "url": "https://www.w3.org/TR/encrypted-media-2/#common-key-systems" } }, "#concerns": { @@ -424,7 +416,7 @@ "number": "11.3.1", "spec": "Encrypted Media Extensions", "text": "Concerns", - "url": "https://www.w3.org/TR/encrypted-media/#concerns" + "url": "https://www.w3.org/TR/encrypted-media-2/#concerns" } }, "#concerns-0": { @@ -438,7 +430,7 @@ "number": "11.4.1", "spec": "Encrypted Media Extensions", "text": "Concerns", - "url": "https://www.w3.org/TR/encrypted-media/#concerns-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#concerns-0" } }, "#concerns-1": { @@ -452,7 +444,7 @@ "number": "11.5.1", "spec": "Encrypted Media Extensions", "text": "Concerns", - "url": "https://www.w3.org/TR/encrypted-media/#concerns-1" + "url": "https://www.w3.org/TR/encrypted-media-2/#concerns-1" } }, "#concerns-2": { @@ -466,7 +458,7 @@ "number": "11.6.1", "spec": "Encrypted Media Extensions", "text": "Concerns", - "url": "https://www.w3.org/TR/encrypted-media/#concerns-2" + "url": "https://www.w3.org/TR/encrypted-media-2/#concerns-2" } }, "#conformance": { @@ -480,35 +472,7 @@ "number": "", "spec": "Encrypted Media Extensions", "text": "12. Conformance", - "url": "https://www.w3.org/TR/encrypted-media/#conformance" - } - }, - "#constructors": { - "current": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Constructors", - "url": "https://w3c.github.io/encrypted-media/#constructors" - }, - "snapshot": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Constructors", - "url": "https://www.w3.org/TR/encrypted-media/#constructors" - } - }, - "#constructors-0": { - "current": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Constructors", - "url": "https://w3c.github.io/encrypted-media/#constructors-0" - }, - "snapshot": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Constructors", - "url": "https://www.w3.org/TR/encrypted-media/#constructors-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#conformance" } }, "#cross-directory-attacks": { @@ -522,7 +486,7 @@ "number": "10.5", "spec": "Encrypted Media Extensions", "text": "Cross-Directory Attacks", - "url": "https://www.w3.org/TR/encrypted-media/#cross-directory-attacks" + "url": "https://www.w3.org/TR/encrypted-media-2/#cross-directory-attacks" } }, "#definitions": { @@ -536,49 +500,49 @@ "number": "2", "spec": "Encrypted Media Extensions", "text": "Definitions", - "url": "https://www.w3.org/TR/encrypted-media/#definitions" + "url": "https://www.w3.org/TR/encrypted-media-2/#definitions" } }, "#dictionary-mediaencryptedeventinit-members": { "current": { - "number": "", + "number": "7.3.2.1", "spec": "Encrypted Media Extensions", "text": "Dictionary MediaEncryptedEventInit Members", "url": "https://w3c.github.io/encrypted-media/#dictionary-mediaencryptedeventinit-members" }, "snapshot": { - "number": "", + "number": "7.3.2.1", "spec": "Encrypted Media Extensions", "text": "Dictionary MediaEncryptedEventInit Members", - "url": "https://www.w3.org/TR/encrypted-media/#dictionary-mediaencryptedeventinit-members" + "url": "https://www.w3.org/TR/encrypted-media-2/#dictionary-mediaencryptedeventinit-members" } }, "#dictionary-mediakeymessageeventinit-members": { "current": { - "number": "", + "number": "6.4.2.1", "spec": "Encrypted Media Extensions", "text": "Dictionary MediaKeyMessageEventInit Members", "url": "https://w3c.github.io/encrypted-media/#dictionary-mediakeymessageeventinit-members" }, "snapshot": { - "number": "", + "number": "6.4.2.1", "spec": "Encrypted Media Extensions", "text": "Dictionary MediaKeyMessageEventInit Members", - "url": "https://www.w3.org/TR/encrypted-media/#dictionary-mediakeymessageeventinit-members" + "url": "https://www.w3.org/TR/encrypted-media-2/#dictionary-mediakeymessageeventinit-members" } }, "#dictionary-mediakeysystemmediacapability-members": { "current": { - "number": "", + "number": "3.4.1", "spec": "Encrypted Media Extensions", "text": "Dictionary MediaKeySystemMediaCapability Members", "url": "https://w3c.github.io/encrypted-media/#dictionary-mediakeysystemmediacapability-members" }, "snapshot": { - "number": "", + "number": "3.4.1", "spec": "Encrypted Media Extensions", "text": "Dictionary MediaKeySystemMediaCapability Members", - "url": "https://www.w3.org/TR/encrypted-media/#dictionary-mediakeysystemmediacapability-members" + "url": "https://www.w3.org/TR/encrypted-media-2/#dictionary-mediakeysystemmediacapability-members" } }, "#direct-individualization": { @@ -592,7 +556,7 @@ "number": "8.6.1", "spec": "Encrypted Media Extensions", "text": "Direct Individualization", - "url": "https://www.w3.org/TR/encrypted-media/#direct-individualization" + "url": "https://www.w3.org/TR/encrypted-media-2/#direct-individualization" } }, "#encrypt-identifiers": { @@ -606,7 +570,7 @@ "number": "8.5.2", "spec": "Encrypted Media Extensions", "text": "Encrypt Identifiers", - "url": "https://www.w3.org/TR/encrypted-media/#encrypt-identifiers" + "url": "https://www.w3.org/TR/encrypted-media-2/#encrypt-identifiers" } }, "#encrypt-or-obfuscate-persistent-data": { @@ -620,21 +584,35 @@ "number": "8.3.3", "spec": "Encrypted Media Extensions", "text": "Encrypt or obfuscate Persistent Data", - "url": "https://www.w3.org/TR/encrypted-media/#encrypt-or-obfuscate-persistent-data" + "url": "https://www.w3.org/TR/encrypted-media-2/#encrypt-or-obfuscate-persistent-data" } }, "#encrypted-block-encountered": { "current": { - "number": "7.3.3", + "number": "7.5.3", "spec": "Encrypted Media Extensions", "text": "Encrypted Block Encountered", "url": "https://w3c.github.io/encrypted-media/#encrypted-block-encountered" }, "snapshot": { - "number": "7.3.3", + "number": "7.5.3", "spec": "Encrypted Media Extensions", "text": "Encrypted Block Encountered", - "url": "https://www.w3.org/TR/encrypted-media/#encrypted-block-encountered" + "url": "https://www.w3.org/TR/encrypted-media-2/#encrypted-block-encountered" + } + }, + "#example-getStatusForPolicy": { + "current": { + "number": "13.6", + "spec": "Encrypted Media Extensions", + "text": "Pre-fetch Media With HDCP Policy", + "url": "https://w3c.github.io/encrypted-media/#example-getStatusForPolicy" + }, + "snapshot": { + "number": "13.6", + "spec": "Encrypted Media Extensions", + "text": "Pre-fetch Media With HDCP Policy", + "url": "https://www.w3.org/TR/encrypted-media-2/#example-getStatusForPolicy" } }, "#example-mediakeys-before-source": { @@ -648,7 +626,7 @@ "number": "13.3", "spec": "Encrypted Media Extensions", "text": "Create MediaKeys Before Loading Media", - "url": "https://www.w3.org/TR/encrypted-media/#example-mediakeys-before-source" + "url": "https://www.w3.org/TR/encrypted-media-2/#example-mediakeys-before-source" } }, "#example-selecting-key-system": { @@ -662,7 +640,7 @@ "number": "13.2", "spec": "Encrypted Media Extensions", "text": "Selecting a Supported Key System and Using Initialization Data from the \"encrypted\" Event", - "url": "https://www.w3.org/TR/encrypted-media/#example-selecting-key-system" + "url": "https://www.w3.org/TR/encrypted-media-2/#example-selecting-key-system" } }, "#example-source-and-key-known": { @@ -676,7 +654,7 @@ "number": "13.1", "spec": "Encrypted Media Extensions", "text": "Source and Key Known at Page Load (Clear Key)", - "url": "https://www.w3.org/TR/encrypted-media/#example-source-and-key-known" + "url": "https://www.w3.org/TR/encrypted-media-2/#example-source-and-key-known" } }, "#example-stored-license": { @@ -690,7 +668,7 @@ "number": "13.5", "spec": "Encrypted Media Extensions", "text": "Stored License", - "url": "https://www.w3.org/TR/encrypted-media/#example-stored-license" + "url": "https://www.w3.org/TR/encrypted-media-2/#example-stored-license" } }, "#example-using-all-events": { @@ -704,7 +682,7 @@ "number": "13.4", "spec": "Encrypted Media Extensions", "text": "Using All Events", - "url": "https://www.w3.org/TR/encrypted-media/#example-using-all-events" + "url": "https://www.w3.org/TR/encrypted-media-2/#example-using-all-events" } }, "#examples": { @@ -718,21 +696,21 @@ "number": "", "spec": "Encrypted Media Extensions", "text": "13. Examples", - "url": "https://www.w3.org/TR/encrypted-media/#examples" + "url": "https://www.w3.org/TR/encrypted-media-2/#examples" } }, "#exceptions": { "current": { - "number": "6.5", + "number": "6.7", "spec": "Encrypted Media Extensions", "text": "Exceptions", "url": "https://w3c.github.io/encrypted-media/#exceptions" }, "snapshot": { - "number": "6.5", + "number": "6.7", "spec": "Encrypted Media Extensions", "text": "Exceptions", - "url": "https://www.w3.org/TR/encrypted-media/#exceptions" + "url": "https://www.w3.org/TR/encrypted-media-2/#exceptions" } }, "#exposed-value-requirements": { @@ -746,91 +724,91 @@ "number": "8.4", "spec": "Encrypted Media Extensions", "text": "Values Exposed to the Application", - "url": "https://www.w3.org/TR/encrypted-media/#exposed-value-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#exposed-value-requirements" } }, "#get-consent-status": { "current": { - "number": "3.2.1.4", + "number": "3.2.2.4", "spec": "Encrypted Media Extensions", "text": "Get Consent Status", "url": "https://w3c.github.io/encrypted-media/#get-consent-status" }, "snapshot": { - "number": "3.1.1.4", + "number": "3.2.2.4", "spec": "Encrypted Media Extensions", "text": "Get Consent Status", - "url": "https://www.w3.org/TR/encrypted-media/#get-consent-status" + "url": "https://www.w3.org/TR/encrypted-media-2/#get-consent-status" } }, "#get-supported-capabilities-for-audio-video-type": { "current": { - "number": "3.2.1.3", + "number": "3.2.2.3", "spec": "Encrypted Media Extensions", "text": "Get Supported Capabilities for Audio/Video Type", "url": "https://w3c.github.io/encrypted-media/#get-supported-capabilities-for-audio-video-type" }, "snapshot": { - "number": "3.1.1.3", + "number": "3.2.2.3", "spec": "Encrypted Media Extensions", "text": "Get Supported Capabilities for Audio/Video Type", - "url": "https://www.w3.org/TR/encrypted-media/#get-supported-capabilities-for-audio-video-type" + "url": "https://www.w3.org/TR/encrypted-media-2/#get-supported-capabilities-for-audio-video-type" } }, "#get-supported-configuration": { "current": { - "number": "3.2.1.1", + "number": "3.2.2.1", "spec": "Encrypted Media Extensions", "text": "Get Supported Configuration", "url": "https://w3c.github.io/encrypted-media/#get-supported-configuration" }, "snapshot": { - "number": "3.1.1.1", + "number": "3.2.2.1", "spec": "Encrypted Media Extensions", "text": "Get Supported Configuration", - "url": "https://www.w3.org/TR/encrypted-media/#get-supported-configuration" + "url": "https://www.w3.org/TR/encrypted-media-2/#get-supported-configuration" } }, "#get-supported-configuration-and-consent": { "current": { - "number": "3.2.1.2", + "number": "3.2.2.2", "spec": "Encrypted Media Extensions", "text": "Get Supported Configuration and Consent", "url": "https://w3c.github.io/encrypted-media/#get-supported-configuration-and-consent" }, "snapshot": { - "number": "3.1.1.2", + "number": "3.2.2.2", "spec": "Encrypted Media Extensions", "text": "Get Supported Configuration and Consent", - "url": "https://www.w3.org/TR/encrypted-media/#get-supported-configuration-and-consent" + "url": "https://www.w3.org/TR/encrypted-media-2/#get-supported-configuration-and-consent" } }, "#htmlmediaelement-algorithms": { "current": { - "number": "7.3", + "number": "7.5", "spec": "Encrypted Media Extensions", "text": "Algorithms", "url": "https://w3c.github.io/encrypted-media/#htmlmediaelement-algorithms" }, "snapshot": { - "number": "7.3", + "number": "7.5", "spec": "Encrypted Media Extensions", "text": "Algorithms", - "url": "https://www.w3.org/TR/encrypted-media/#htmlmediaelement-algorithms" + "url": "https://www.w3.org/TR/encrypted-media-2/#htmlmediaelement-algorithms" } }, "#htmlmediaelement-events": { "current": { - "number": "7.2", + "number": "7.4", "spec": "Encrypted Media Extensions", "text": "Event Summary", "url": "https://w3c.github.io/encrypted-media/#htmlmediaelement-events" }, "snapshot": { - "number": "7.2", + "number": "7.4", "spec": "Encrypted Media Extensions", "text": "Event Summary", - "url": "https://www.w3.org/TR/encrypted-media/#htmlmediaelement-events" + "url": "https://www.w3.org/TR/encrypted-media-2/#htmlmediaelement-events" } }, "#htmlmediaelement-extensions": { @@ -844,7 +822,7 @@ "number": "7", "spec": "Encrypted Media Extensions", "text": "HTMLMediaElement Extensions", - "url": "https://www.w3.org/TR/encrypted-media/#htmlmediaelement-extensions" + "url": "https://www.w3.org/TR/encrypted-media-2/#htmlmediaelement-extensions" } }, "#identifier-requirements": { @@ -858,7 +836,7 @@ "number": "8.5", "spec": "Encrypted Media Extensions", "text": "Identifiers", - "url": "https://www.w3.org/TR/encrypted-media/#identifier-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#identifier-requirements" } }, "#iframe-attacks": { @@ -872,7 +850,7 @@ "number": "10.4", "spec": "Encrypted Media Extensions", "text": "iframe Attacks", - "url": "https://www.w3.org/TR/encrypted-media/#iframe-attacks" + "url": "https://www.w3.org/TR/encrypted-media-2/#iframe-attacks" } }, "#implementation-requirements": { @@ -886,7 +864,7 @@ "number": "8", "spec": "Encrypted Media Extensions", "text": "Implementation Requirements", - "url": "https://www.w3.org/TR/encrypted-media/#implementation-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#implementation-requirements" } }, "#incomplete-clearing": { @@ -900,7 +878,7 @@ "number": "11.6", "spec": "Encrypted Media Extensions", "text": "Incomplete Clearing of Data", - "url": "https://www.w3.org/TR/encrypted-media/#incomplete-clearing" + "url": "https://www.w3.org/TR/encrypted-media-2/#incomplete-clearing" } }, "#individualization": { @@ -914,7 +892,7 @@ "number": "8.6", "spec": "Encrypted Media Extensions", "text": "Individualization", - "url": "https://www.w3.org/TR/encrypted-media/#individualization" + "url": "https://www.w3.org/TR/encrypted-media-2/#individualization" } }, "#informative-references": { @@ -928,21 +906,21 @@ "number": "A.2", "spec": "Encrypted Media Extensions", "text": "Informative references", - "url": "https://www.w3.org/TR/encrypted-media/#informative-references" + "url": "https://www.w3.org/TR/encrypted-media-2/#informative-references" } }, "#initdata-encountered": { "current": { - "number": "7.3.2", + "number": "7.5.2", "spec": "Encrypted Media Extensions", "text": "Initialization Data Encountered", "url": "https://w3c.github.io/encrypted-media/#initdata-encountered" }, "snapshot": { - "number": "7.3.2", + "number": "7.5.2", "spec": "Encrypted Media Extensions", "text": "Initialization Data Encountered", - "url": "https://www.w3.org/TR/encrypted-media/#initdata-encountered" + "url": "https://www.w3.org/TR/encrypted-media-2/#initdata-encountered" } }, "#initialization-data-type-support-requirements": { @@ -956,7 +934,7 @@ "number": "8.8", "spec": "Encrypted Media Extensions", "text": "Initialization Data Type Support", - "url": "https://www.w3.org/TR/encrypted-media/#initialization-data-type-support-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#initialization-data-type-support-requirements" } }, "#input-data-security": { @@ -970,7 +948,7 @@ "number": "10.1", "spec": "Encrypted Media Extensions", "text": "Input Data Attacks and Vulnerabilities", - "url": "https://www.w3.org/TR/encrypted-media/#input-data-security" + "url": "https://www.w3.org/TR/encrypted-media-2/#input-data-security" } }, "#interoperably-encrypted": { @@ -984,7 +962,7 @@ "number": "8.9.2", "spec": "Encrypted Media Extensions", "text": "Interoperably Encrypted", - "url": "https://www.w3.org/TR/encrypted-media/#interoperably-encrypted" + "url": "https://www.w3.org/TR/encrypted-media-2/#interoperably-encrypted" } }, "#introduction": { @@ -998,21 +976,21 @@ "number": "1", "spec": "Encrypted Media Extensions", "text": "Introduction", - "url": "https://www.w3.org/TR/encrypted-media/#introduction" + "url": "https://www.w3.org/TR/encrypted-media-2/#introduction" } }, "#is-persistent-session-type": { "current": { - "number": "5.1.1", + "number": "5.2.1", "spec": "Encrypted Media Extensions", "text": "Is persistent session type?", "url": "https://w3c.github.io/encrypted-media/#is-persistent-session-type" }, "snapshot": { - "number": "5.1.1", + "number": "5.2.1", "spec": "Encrypted Media Extensions", "text": "Is persistent session type?", - "url": "https://www.w3.org/TR/encrypted-media/#is-persistent-session-type" + "url": "https://www.w3.org/TR/encrypted-media-2/#is-persistent-session-type" } }, "#licenses-generated-are-independent-of-content-type": { @@ -1026,7 +1004,7 @@ "number": "8.8.1", "spec": "Encrypted Media Extensions", "text": "Licenses Generated are Independent of Content Type", - "url": "https://www.w3.org/TR/encrypted-media/#licenses-generated-are-independent-of-content-type" + "url": "https://www.w3.org/TR/encrypted-media-2/#licenses-generated-are-independent-of-content-type" } }, "#limit-or-avoid-use-of-distinctive-identifiers-and-permanent-identifiers": { @@ -1040,49 +1018,49 @@ "number": "8.5.1", "spec": "Encrypted Media Extensions", "text": "Limit or Avoid use of Distinctive Identifiers and Permanent Identifiers", - "url": "https://www.w3.org/TR/encrypted-media/#limit-or-avoid-use-of-distinctive-identifiers-and-permanent-identifiers" + "url": "https://www.w3.org/TR/encrypted-media-2/#limit-or-avoid-use-of-distinctive-identifiers-and-permanent-identifiers" } }, "#media-element-restrictions": { "current": { - "number": "7.4", + "number": "7.6", "spec": "Encrypted Media Extensions", "text": "Media Element Restrictions", "url": "https://w3c.github.io/encrypted-media/#media-element-restrictions" }, "snapshot": { - "number": "7.4", + "number": "7.6", "spec": "Encrypted Media Extensions", "text": "Media Element Restrictions", - "url": "https://www.w3.org/TR/encrypted-media/#media-element-restrictions" + "url": "https://www.w3.org/TR/encrypted-media-2/#media-element-restrictions" } }, "#media-keys-storage": { "current": { - "number": "5.2", + "number": "5.3", "spec": "Encrypted Media Extensions", "text": "Storage and Persistence", "url": "https://w3c.github.io/encrypted-media/#media-keys-storage" }, "snapshot": { - "number": "5.2", + "number": "5.3", "spec": "Encrypted Media Extensions", "text": "Storage and Persistence", - "url": "https://www.w3.org/TR/encrypted-media/#media-keys-storage" + "url": "https://www.w3.org/TR/encrypted-media-2/#media-keys-storage" } }, "#media-may-contain-encrypted-blocks": { "current": { - "number": "7.3.1", + "number": "7.5.1", "spec": "Encrypted Media Extensions", "text": "Media Data May Contain Encrypted Blocks", "url": "https://w3c.github.io/encrypted-media/#media-may-contain-encrypted-blocks" }, "snapshot": { - "number": "7.3.1", + "number": "7.5.1", "spec": "Encrypted Media Extensions", "text": "Media Data May Contain Encrypted Blocks", - "url": "https://www.w3.org/TR/encrypted-media/#media-may-contain-encrypted-blocks" + "url": "https://www.w3.org/TR/encrypted-media-2/#media-may-contain-encrypted-blocks" } }, "#media-requirements": { @@ -1096,63 +1074,63 @@ "number": "8.9", "spec": "Encrypted Media Extensions", "text": "Supported Media", - "url": "https://www.w3.org/TR/encrypted-media/#media-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#media-requirements" } }, "#mediaencryptedevent": { "current": { - "number": "7.1", + "number": "7.3", "spec": "Encrypted Media Extensions", "text": "MediaEncryptedEvent", "url": "https://w3c.github.io/encrypted-media/#mediaencryptedevent" }, "snapshot": { - "number": "7.1", + "number": "7.3", "spec": "Encrypted Media Extensions", "text": "MediaEncryptedEvent", - "url": "https://www.w3.org/TR/encrypted-media/#mediaencryptedevent" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediaencryptedevent" } }, "#mediaencryptedeventinit": { "current": { - "number": "7.1.1", + "number": "7.3.2", "spec": "Encrypted Media Extensions", "text": "MediaEncryptedEventInit", "url": "https://w3c.github.io/encrypted-media/#mediaencryptedeventinit" }, "snapshot": { - "number": "7.1.1", + "number": "7.3.2", "spec": "Encrypted Media Extensions", "text": "MediaEncryptedEventInit", - "url": "https://www.w3.org/TR/encrypted-media/#mediaencryptedeventinit" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediaencryptedeventinit" } }, "#mediakeymessageevent": { "current": { - "number": "6.2", + "number": "6.4", "spec": "Encrypted Media Extensions", "text": "MediaKeyMessageEvent", "url": "https://w3c.github.io/encrypted-media/#mediakeymessageevent" }, "snapshot": { - "number": "6.2", + "number": "6.4", "spec": "Encrypted Media Extensions", "text": "MediaKeyMessageEvent", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeymessageevent" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeymessageevent" } }, "#mediakeymessageeventinit": { "current": { - "number": "6.2.1", + "number": "6.4.2", "spec": "Encrypted Media Extensions", "text": "MediaKeyMessageEventInit", "url": "https://w3c.github.io/encrypted-media/#mediakeymessageeventinit" }, "snapshot": { - "number": "6.2.1", + "number": "6.4.2", "spec": "Encrypted Media Extensions", "text": "MediaKeyMessageEventInit", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeymessageeventinit" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeymessageeventinit" } }, "#mediakeys-interface": { @@ -1166,35 +1144,35 @@ "number": "5", "spec": "Encrypted Media Extensions", "text": "MediaKeys Interface", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeys-interface" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeys-interface" } }, "#mediakeysession-algorithms": { "current": { - "number": "6.4", + "number": "6.6", "spec": "Encrypted Media Extensions", "text": "Algorithms", "url": "https://w3c.github.io/encrypted-media/#mediakeysession-algorithms" }, "snapshot": { - "number": "6.4", + "number": "6.6", "spec": "Encrypted Media Extensions", "text": "Algorithms", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeysession-algorithms" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeysession-algorithms" } }, "#mediakeysession-events": { "current": { - "number": "6.3", + "number": "6.5", "spec": "Encrypted Media Extensions", "text": "Event Summary", "url": "https://w3c.github.io/encrypted-media/#mediakeysession-events" }, "snapshot": { - "number": "6.3", + "number": "6.5", "spec": "Encrypted Media Extensions", "text": "Event Summary", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeysession-events" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeysession-events" } }, "#mediakeysession-interface": { @@ -1208,21 +1186,21 @@ "number": "6", "spec": "Encrypted Media Extensions", "text": "MediaKeySession Interface", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeysession-interface" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeysession-interface" } }, "#mediakeystatusmap-interface": { "current": { - "number": "6.1", + "number": "6.3", "spec": "Encrypted Media Extensions", "text": "MediaKeyStatusMap Interface", "url": "https://w3c.github.io/encrypted-media/#mediakeystatusmap-interface" }, "snapshot": { - "number": "6.1", + "number": "6.3", "spec": "Encrypted Media Extensions", "text": "MediaKeyStatusMap Interface", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeystatusmap-interface" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeystatusmap-interface" } }, "#mediakeysystemaccess-interface": { @@ -1236,7 +1214,7 @@ "number": "4", "spec": "Encrypted Media Extensions", "text": "MediaKeySystemAccess Interface", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeysystemaccess-interface" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeysystemaccess-interface" } }, "#mediakeysystemconfiguration-dictionary": { @@ -1247,10 +1225,10 @@ "url": "https://w3c.github.io/encrypted-media/#mediakeysystemconfiguration-dictionary" }, "snapshot": { - "number": "3.2", + "number": "3.3", "spec": "Encrypted Media Extensions", "text": "MediaKeySystemConfiguration dictionary", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeysystemconfiguration-dictionary" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeysystemconfiguration-dictionary" } }, "#mediakeysystemmediacapability-dictionary": { @@ -1261,10 +1239,10 @@ "url": "https://w3c.github.io/encrypted-media/#mediakeysystemmediacapability-dictionary" }, "snapshot": { - "number": "3.3", + "number": "3.4", "spec": "Encrypted Media Extensions", "text": "MediaKeySystemMediaCapability dictionary", - "url": "https://www.w3.org/TR/encrypted-media/#mediakeysystemmediacapability-dictionary" + "url": "https://www.w3.org/TR/encrypted-media-2/#mediakeysystemmediacapability-dictionary" } }, "#messaging-requirements": { @@ -1278,91 +1256,91 @@ "number": "8.2", "spec": "Encrypted Media Extensions", "text": "Messages and Communication", - "url": "https://www.w3.org/TR/encrypted-media/#messaging-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#messaging-requirements" } }, "#methods": { "current": { - "number": "", + "number": "3.2.1", "spec": "Encrypted Media Extensions", "text": "Methods", "url": "https://w3c.github.io/encrypted-media/#methods" }, "snapshot": { - "number": "", + "number": "3.2.1", "spec": "Encrypted Media Extensions", "text": "Methods", - "url": "https://www.w3.org/TR/encrypted-media/#methods" + "url": "https://www.w3.org/TR/encrypted-media-2/#methods" } }, "#methods-0": { "current": { - "number": "", + "number": "4.2", "spec": "Encrypted Media Extensions", "text": "Methods", "url": "https://w3c.github.io/encrypted-media/#methods-0" }, "snapshot": { - "number": "", + "number": "4.2", "spec": "Encrypted Media Extensions", "text": "Methods", - "url": "https://www.w3.org/TR/encrypted-media/#methods-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#methods-0" } }, "#methods-1": { "current": { - "number": "", + "number": "5.1", "spec": "Encrypted Media Extensions", "text": "Methods", "url": "https://w3c.github.io/encrypted-media/#methods-1" }, "snapshot": { - "number": "", + "number": "5.1", "spec": "Encrypted Media Extensions", "text": "Methods", - "url": "https://www.w3.org/TR/encrypted-media/#methods-1" + "url": "https://www.w3.org/TR/encrypted-media-2/#methods-1" } }, "#methods-2": { "current": { - "number": "", + "number": "6.2", "spec": "Encrypted Media Extensions", "text": "Methods", "url": "https://w3c.github.io/encrypted-media/#methods-2" }, "snapshot": { - "number": "", + "number": "6.2", "spec": "Encrypted Media Extensions", "text": "Methods", - "url": "https://www.w3.org/TR/encrypted-media/#methods-2" + "url": "https://www.w3.org/TR/encrypted-media-2/#methods-2" } }, "#methods-3": { "current": { - "number": "", + "number": "6.3.2", "spec": "Encrypted Media Extensions", "text": "Methods", "url": "https://w3c.github.io/encrypted-media/#methods-3" }, "snapshot": { - "number": "", + "number": "6.3.2", "spec": "Encrypted Media Extensions", "text": "Methods", - "url": "https://www.w3.org/TR/encrypted-media/#methods-3" + "url": "https://www.w3.org/TR/encrypted-media-2/#methods-3" } }, "#methods-4": { "current": { - "number": "", + "number": "7.2", "spec": "Encrypted Media Extensions", "text": "Methods", "url": "https://w3c.github.io/encrypted-media/#methods-4" }, "snapshot": { - "number": "", + "number": "7.2", "spec": "Encrypted Media Extensions", "text": "Methods", - "url": "https://www.w3.org/TR/encrypted-media/#methods-4" + "url": "https://www.w3.org/TR/encrypted-media-2/#methods-4" } }, "#mitigations": { @@ -1376,7 +1354,7 @@ "number": "10.3.2", "spec": "Encrypted Media Extensions", "text": "Mitigations", - "url": "https://www.w3.org/TR/encrypted-media/#mitigations" + "url": "https://www.w3.org/TR/encrypted-media-2/#mitigations" } }, "#mitigations-0": { @@ -1390,7 +1368,7 @@ "number": "10.4.2", "spec": "Encrypted Media Extensions", "text": "Mitigations", - "url": "https://www.w3.org/TR/encrypted-media/#mitigations-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#mitigations-0" } }, "#mitigations-1": { @@ -1404,7 +1382,7 @@ "number": "11.3.2", "spec": "Encrypted Media Extensions", "text": "Mitigations", - "url": "https://www.w3.org/TR/encrypted-media/#mitigations-1" + "url": "https://www.w3.org/TR/encrypted-media-2/#mitigations-1" } }, "#mitigations-2": { @@ -1418,7 +1396,7 @@ "number": "11.4.2", "spec": "Encrypted Media Extensions", "text": "Mitigations", - "url": "https://www.w3.org/TR/encrypted-media/#mitigations-2" + "url": "https://www.w3.org/TR/encrypted-media-2/#mitigations-2" } }, "#mitigations-3": { @@ -1432,7 +1410,7 @@ "number": "11.5.2", "spec": "Encrypted Media Extensions", "text": "Mitigations", - "url": "https://www.w3.org/TR/encrypted-media/#mitigations-3" + "url": "https://www.w3.org/TR/encrypted-media-2/#mitigations-3" } }, "#mitigations-4": { @@ -1446,21 +1424,21 @@ "number": "11.6.2", "spec": "Encrypted Media Extensions", "text": "Mitigations", - "url": "https://www.w3.org/TR/encrypted-media/#mitigations-4" + "url": "https://www.w3.org/TR/encrypted-media-2/#mitigations-4" } }, "#monitor-cdm": { "current": { - "number": "6.4.5", + "number": "6.6.5", "spec": "Encrypted Media Extensions", "text": "Monitor for CDM State Changes", "url": "https://w3c.github.io/encrypted-media/#monitor-cdm" }, "snapshot": { - "number": "6.4.5", + "number": "6.6.5", "spec": "Encrypted Media Extensions", "text": "Monitor for CDM State Changes", - "url": "https://www.w3.org/TR/encrypted-media/#monitor-cdm" + "url": "https://www.w3.org/TR/encrypted-media-2/#monitor-cdm" } }, "#navigator-extension-requestmediakeysystemaccess": { @@ -1469,14 +1447,12 @@ "spec": "Encrypted Media Extensions", "text": "Navigator Extension: requestMediaKeySystemAccess()", "url": "https://w3c.github.io/encrypted-media/#navigator-extension-requestmediakeysystemaccess" - } - }, - "#navigator-extension:-requestmediakeysystemaccess()": { + }, "snapshot": { - "number": "3.1", + "number": "3.2", "spec": "Encrypted Media Extensions", "text": "Navigator Extension: requestMediaKeySystemAccess()", - "url": "https://www.w3.org/TR/encrypted-media/#navigator-extension:-requestmediakeysystemaccess()" + "url": "https://www.w3.org/TR/encrypted-media-2/#navigator-extension-requestmediakeysystemaccess" } }, "#network-attacks": { @@ -1490,7 +1466,7 @@ "number": "10.3", "spec": "Encrypted Media Extensions", "text": "Network Attacks", - "url": "https://www.w3.org/TR/encrypted-media/#network-attacks" + "url": "https://www.w3.org/TR/encrypted-media-2/#network-attacks" } }, "#non-associable-identifiers": { @@ -1504,7 +1480,7 @@ "number": "8.5.4", "spec": "Encrypted Media Extensions", "text": "Use Non-Associable Identifiers", - "url": "https://www.w3.org/TR/encrypted-media/#non-associable-identifiers" + "url": "https://www.w3.org/TR/encrypted-media-2/#non-associable-identifiers" } }, "#normative-references": { @@ -1518,7 +1494,7 @@ "number": "A.1", "spec": "Encrypted Media Extensions", "text": "Normative references", - "url": "https://www.w3.org/TR/encrypted-media/#normative-references" + "url": "https://www.w3.org/TR/encrypted-media-2/#normative-references" } }, "#obtaining-access-to-key-systems": { @@ -1532,7 +1508,7 @@ "number": "3", "spec": "Encrypted Media Extensions", "text": "Obtaining Access to Key Systems", - "url": "https://www.w3.org/TR/encrypted-media/#obtaining-access-to-key-systems" + "url": "https://www.w3.org/TR/encrypted-media-2/#obtaining-access-to-key-systems" } }, "#per-origin-per-profile-identifiers": { @@ -1546,7 +1522,7 @@ "number": "8.5.3", "spec": "Encrypted Media Extensions", "text": "Use Per-Origin Per-Profile Identifiers", - "url": "https://www.w3.org/TR/encrypted-media/#per-origin-per-profile-identifiers" + "url": "https://www.w3.org/TR/encrypted-media-2/#per-origin-per-profile-identifiers" } }, "#per-origin-per-profile-values": { @@ -1560,7 +1536,7 @@ "number": "8.4.1", "spec": "Encrypted Media Extensions", "text": "Use Per-Origin Per-Profile Values", - "url": "https://www.w3.org/TR/encrypted-media/#per-origin-per-profile-values" + "url": "https://www.w3.org/TR/encrypted-media-2/#per-origin-per-profile-values" } }, "#permissions-policy-integration": { @@ -1569,6 +1545,12 @@ "spec": "Encrypted Media Extensions", "text": "Permissions Policy Integration", "url": "https://w3c.github.io/encrypted-media/#permissions-policy-integration" + }, + "snapshot": { + "number": "3.1", + "spec": "Encrypted Media Extensions", + "text": "Permissions Policy Integration", + "url": "https://www.w3.org/TR/encrypted-media-2/#permissions-policy-integration" } }, "#persistent-state-requirements": { @@ -1582,7 +1564,7 @@ "number": "8.3", "spec": "Encrypted Media Extensions", "text": "Persistent Data", - "url": "https://www.w3.org/TR/encrypted-media/#persistent-state-requirements" + "url": "https://www.w3.org/TR/encrypted-media-2/#persistent-state-requirements" } }, "#potential-attacks": { @@ -1596,7 +1578,7 @@ "number": "10.3.1", "spec": "Encrypted Media Extensions", "text": "Potential Attacks", - "url": "https://www.w3.org/TR/encrypted-media/#potential-attacks" + "url": "https://www.w3.org/TR/encrypted-media-2/#potential-attacks" } }, "#potential-attacks-0": { @@ -1610,7 +1592,7 @@ "number": "10.4.1", "spec": "Encrypted Media Extensions", "text": "Potential Attacks", - "url": "https://www.w3.org/TR/encrypted-media/#potential-attacks-0" + "url": "https://www.w3.org/TR/encrypted-media-2/#potential-attacks-0" } }, "#privacy": { @@ -1624,7 +1606,7 @@ "number": "", "spec": "Encrypted Media Extensions", "text": "11. Privacy", - "url": "https://www.w3.org/TR/encrypted-media/#privacy" + "url": "https://www.w3.org/TR/encrypted-media-2/#privacy" } }, "#privacy-disclosure": { @@ -1638,7 +1620,7 @@ "number": "11.1", "spec": "Encrypted Media Extensions", "text": "Information Disclosed by EME and Key Systems", - "url": "https://www.w3.org/TR/encrypted-media/#privacy-disclosure" + "url": "https://www.w3.org/TR/encrypted-media-2/#privacy-disclosure" } }, "#privacy-fingerprinting": { @@ -1652,7 +1634,7 @@ "number": "11.2", "spec": "Encrypted Media Extensions", "text": "Fingerprinting", - "url": "https://www.w3.org/TR/encrypted-media/#privacy-fingerprinting" + "url": "https://www.w3.org/TR/encrypted-media-2/#privacy-fingerprinting" } }, "#privacy-leakage": { @@ -1666,7 +1648,7 @@ "number": "11.3", "spec": "Encrypted Media Extensions", "text": "Information Leakage", - "url": "https://www.w3.org/TR/encrypted-media/#privacy-leakage" + "url": "https://www.w3.org/TR/encrypted-media-2/#privacy-leakage" } }, "#privacy-secureorigin": { @@ -1680,7 +1662,7 @@ "number": "11.8", "spec": "Encrypted Media Extensions", "text": "Secure Origin and Transport", - "url": "https://www.w3.org/TR/encrypted-media/#privacy-secureorigin" + "url": "https://www.w3.org/TR/encrypted-media-2/#privacy-secureorigin" } }, "#privacy-storedinfo": { @@ -1694,7 +1676,7 @@ "number": "11.5", "spec": "Encrypted Media Extensions", "text": "Information Stored on User Devices", - "url": "https://www.w3.org/TR/encrypted-media/#privacy-storedinfo" + "url": "https://www.w3.org/TR/encrypted-media-2/#privacy-storedinfo" } }, "#private-browsing": { @@ -1708,21 +1690,21 @@ "number": "11.7", "spec": "Encrypted Media Extensions", "text": "Private Browsing Modes", - "url": "https://www.w3.org/TR/encrypted-media/#private-browsing" + "url": "https://www.w3.org/TR/encrypted-media-2/#private-browsing" } }, "#queue-message": { "current": { - "number": "6.4.1", + "number": "6.6.1", "spec": "Encrypted Media Extensions", "text": "Queue a \"message\" Event", "url": "https://w3c.github.io/encrypted-media/#queue-message" }, "snapshot": { - "number": "6.4.1", + "number": "6.6.1", "spec": "Encrypted Media Extensions", "text": "Queue a \"message\" Event", - "url": "https://www.w3.org/TR/encrypted-media/#queue-message" + "url": "https://www.w3.org/TR/encrypted-media-2/#queue-message" } }, "#references": { @@ -1736,29 +1718,21 @@ "number": "A", "spec": "Encrypted Media Extensions", "text": "References", - "url": "https://www.w3.org/TR/encrypted-media/#references" - } - }, - "#respecDocument": { - "snapshot": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Encrypted Media Extensions", - "url": "https://www.w3.org/TR/encrypted-media/#respecDocument" + "url": "https://www.w3.org/TR/encrypted-media-2/#references" } }, "#resume-playback": { "current": { - "number": "7.3.6", + "number": "7.5.6", "spec": "Encrypted Media Extensions", "text": "Attempt to Resume Playback If Necessary", "url": "https://w3c.github.io/encrypted-media/#resume-playback" }, "snapshot": { - "number": "7.3.6", + "number": "7.5.6", "spec": "Encrypted Media Extensions", "text": "Attempt to Resume Playback If Necessary", - "url": "https://www.w3.org/TR/encrypted-media/#resume-playback" + "url": "https://www.w3.org/TR/encrypted-media-2/#resume-playback" } }, "#security": { @@ -1772,43 +1746,35 @@ "number": "", "spec": "Encrypted Media Extensions", "text": "10. Security", - "url": "https://www.w3.org/TR/encrypted-media/#security" + "url": "https://www.w3.org/TR/encrypted-media-2/#security" } }, "#session-closed": { "current": { - "number": "6.4.4", + "number": "6.6.4", "spec": "Encrypted Media Extensions", "text": "Session Closed", "url": "https://w3c.github.io/encrypted-media/#session-closed" }, "snapshot": { - "number": "6.4.4", + "number": "6.6.4", "spec": "Encrypted Media Extensions", "text": "Session Closed", - "url": "https://www.w3.org/TR/encrypted-media/#session-closed" + "url": "https://www.w3.org/TR/encrypted-media-2/#session-closed" } }, "#session-storage": { "current": { - "number": "6.6", + "number": "6.8", "spec": "Encrypted Media Extensions", "text": "Session Storage and Persistence", "url": "https://w3c.github.io/encrypted-media/#session-storage" }, "snapshot": { - "number": "6.6", + "number": "6.8", "spec": "Encrypted Media Extensions", "text": "Session Storage and Persistence", - "url": "https://www.w3.org/TR/encrypted-media/#session-storage" - } - }, - "#sotd": { - "snapshot": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "Status of This Document", - "url": "https://www.w3.org/TR/encrypted-media/#sotd" + "url": "https://www.w3.org/TR/encrypted-media-2/#session-storage" } }, "#support-extraction-from-media-data": { @@ -1822,7 +1788,7 @@ "number": "8.8.2", "spec": "Encrypted Media Extensions", "text": "Support Extraction From Media Data", - "url": "https://www.w3.org/TR/encrypted-media/#support-extraction-from-media-data" + "url": "https://www.w3.org/TR/encrypted-media-2/#support-extraction-from-media-data" } }, "#support-multiple-keys": { @@ -1836,7 +1802,7 @@ "number": "8.7", "spec": "Encrypted Media Extensions", "text": "Support Multiple Keys", - "url": "https://www.w3.org/TR/encrypted-media/#support-multiple-keys" + "url": "https://www.w3.org/TR/encrypted-media-2/#support-multiple-keys" } }, "#title": { @@ -1845,6 +1811,12 @@ "spec": "Encrypted Media Extensions", "text": "Encrypted Media Extensions", "url": "https://w3c.github.io/encrypted-media/#title" + }, + "snapshot": { + "number": "", + "spec": "Encrypted Media Extensions", + "text": "Encrypted Media Extensions", + "url": "https://www.w3.org/TR/encrypted-media-2/#title" } }, "#toc": { @@ -1858,7 +1830,7 @@ "number": "", "spec": "Encrypted Media Extensions", "text": "Table of Contents", - "url": "https://www.w3.org/TR/encrypted-media/#toc" + "url": "https://www.w3.org/TR/encrypted-media-2/#toc" } }, "#unencrypted-container": { @@ -1872,7 +1844,7 @@ "number": "8.9.1", "spec": "Encrypted Media Extensions", "text": "Unencrypted Container", - "url": "https://www.w3.org/TR/encrypted-media/#unencrypted-container" + "url": "https://www.w3.org/TR/encrypted-media-2/#unencrypted-container" } }, "#unencrypted-in-band-support-content": { @@ -1886,35 +1858,35 @@ "number": "8.9.3", "spec": "Encrypted Media Extensions", "text": "Unencrypted In-band Support Content", - "url": "https://www.w3.org/TR/encrypted-media/#unencrypted-in-band-support-content" + "url": "https://www.w3.org/TR/encrypted-media-2/#unencrypted-in-band-support-content" } }, "#update-expiration": { "current": { - "number": "6.4.3", + "number": "6.6.3", "spec": "Encrypted Media Extensions", "text": "Update Expiration", "url": "https://w3c.github.io/encrypted-media/#update-expiration" }, "snapshot": { - "number": "6.4.3", + "number": "6.6.3", "spec": "Encrypted Media Extensions", "text": "Update Expiration", - "url": "https://www.w3.org/TR/encrypted-media/#update-expiration" + "url": "https://www.w3.org/TR/encrypted-media-2/#update-expiration" } }, "#update-key-statuses": { "current": { - "number": "6.4.2", + "number": "6.6.2", "spec": "Encrypted Media Extensions", "text": "Update Key Statuses", "url": "https://w3c.github.io/encrypted-media/#update-key-statuses" }, "snapshot": { - "number": "6.4.2", + "number": "6.6.2", "spec": "Encrypted Media Extensions", "text": "Update Key Statuses", - "url": "https://www.w3.org/TR/encrypted-media/#update-key-statuses" + "url": "https://www.w3.org/TR/encrypted-media-2/#update-key-statuses" } }, "#use-origin-specific-key-system-storage": { @@ -1928,7 +1900,7 @@ "number": "8.3.1", "spec": "Encrypted Media Extensions", "text": "Use origin-specific and browsing profile-specific Key System storage", - "url": "https://www.w3.org/TR/encrypted-media/#use-origin-specific-key-system-storage" + "url": "https://www.w3.org/TR/encrypted-media-2/#use-origin-specific-key-system-storage" } }, "#user-tracking": { @@ -1942,7 +1914,7 @@ "number": "11.4", "spec": "Encrypted Media Extensions", "text": "User Tracking", - "url": "https://www.w3.org/TR/encrypted-media/#user-tracking" + "url": "https://www.w3.org/TR/encrypted-media-2/#user-tracking" } }, "#using-base64url": { @@ -1956,29 +1928,21 @@ "number": "9.1.7", "spec": "Encrypted Media Extensions", "text": "Using base64url", - "url": "https://www.w3.org/TR/encrypted-media/#using-base64url" - } - }, - "#w3c-recommendation-18-september-2017": { - "snapshot": { - "number": "", - "spec": "Encrypted Media Extensions", - "text": "W3C Recommendation 18 September 2017 (Link to Editor's Draft updated 19 December 2019)", - "url": "https://www.w3.org/TR/encrypted-media/#w3c-recommendation-18-september-2017" + "url": "https://www.w3.org/TR/encrypted-media-2/#using-base64url" } }, "#wait-for-key": { "current": { - "number": "7.3.5", + "number": "7.5.5", "spec": "Encrypted Media Extensions", "text": "Wait for Key", "url": "https://w3c.github.io/encrypted-media/#wait-for-key" }, "snapshot": { - "number": "7.3.5", + "number": "7.5.5", "spec": "Encrypted Media Extensions", "text": "Wait for Key", - "url": "https://www.w3.org/TR/encrypted-media/#wait-for-key" + "url": "https://www.w3.org/TR/encrypted-media-2/#wait-for-key" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-entries-api.json b/bikeshed/spec-data/readonly/headings/headings-entries-api.json index 9d027702fa..73590d4e8b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-entries-api.json +++ b/bikeshed/spec-data/readonly/headings/headings-entries-api.json @@ -79,14 +79,6 @@ "url": "https://wicg.github.io/entries-api/#concepts" } }, - "#dir-reader": { - "current": { - "number": "2.4", - "spec": "File and Directory Entries API", - "text": "Directory Reader", - "url": "https://wicg.github.io/entries-api/#dir-reader" - } - }, "#entries": { "current": { "number": "2.3", @@ -239,14 +231,6 @@ "url": "https://wicg.github.io/entries-api/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "File and Directory Entries API", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/entries-api/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-epub-33.json b/bikeshed/spec-data/readonly/headings/headings-epub-33.json index 26d3d0a86d..3b7a317620 100644 --- a/bikeshed/spec-data/readonly/headings/headings-epub-33.json +++ b/bikeshed/spec-data/readonly/headings/headings-epub-33.json @@ -462,16 +462,10 @@ } }, "#change-latest": { - "current": { - "number": "K.1", - "spec": "EPUB 3.3", - "text": "Substantive changes since Candidate Recommendation", - "url": "https://w3c.github.io/epub-specs/epub33/core/#change-latest" - }, "snapshot": { "number": "K.1", "spec": "EPUB 3.3", - "text": "Substantive changes since Candidate Recommendation", + "text": "Substantive changes since Candidate Recommendation of 2023-02-21", "url": "https://www.w3.org/TR/epub-33/#change-latest" } }, @@ -489,15 +483,17 @@ "url": "https://www.w3.org/TR/epub-33/#change-log" } }, - "#changes-older": { - "current": { + "#change-previous-cr": { + "snapshot": { "number": "K.2", "spec": "EPUB 3.3", - "text": "Substantive changes since EPUB 3.2", - "url": "https://w3c.github.io/epub-specs/epub33/core/#changes-older" - }, + "text": "Substantive changes since Candidate Recommendation of 2022-05-12", + "url": "https://www.w3.org/TR/epub-33/#change-previous-cr" + } + }, + "#changes-older": { "snapshot": { - "number": "K.2", + "number": "K.3", "spec": "EPUB 3.3", "text": "Substantive changes since EPUB 3.2", "url": "https://www.w3.org/TR/epub-33/#changes-older" diff --git a/bikeshed/spec-data/readonly/headings/headings-epub-rs-33.json b/bikeshed/spec-data/readonly/headings/headings-epub-rs-33.json index f02893fae3..a0e7e2ce84 100644 --- a/bikeshed/spec-data/readonly/headings/headings-epub-rs-33.json +++ b/bikeshed/spec-data/readonly/headings/headings-epub-rs-33.json @@ -154,12 +154,6 @@ } }, "#change-latest": { - "current": { - "number": "D.1", - "spec": "EPUB Reading Systems 3.3", - "text": "Substantive changes since Candidate Recommendation", - "url": "https://w3c.github.io/epub-specs/epub33/rs/#change-latest" - }, "snapshot": { "number": "D.1", "spec": "EPUB Reading Systems 3.3", @@ -182,12 +176,6 @@ } }, "#changes-older": { - "current": { - "number": "D.2", - "spec": "EPUB Reading Systems 3.3", - "text": "Substantive changes since EPUB 3.2", - "url": "https://w3c.github.io/epub-specs/epub33/rs/#changes-older" - }, "snapshot": { "number": "D.2", "spec": "EPUB Reading Systems 3.3", diff --git a/bikeshed/spec-data/readonly/headings/headings-essl.json b/bikeshed/spec-data/readonly/headings/headings-essl.json new file mode 100644 index 0000000000..6965a81d97 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-essl.json @@ -0,0 +1,1650 @@ +{ + "#_changes_from_glsl_es_3_2_revision_5": { + "current": { + "number": "1.1.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 5", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_changes_from_glsl_es_3_2_revision_5" + } + }, + "#_changes_from_glsl_es_3_2_revision_6": { + "current": { + "number": "1.1.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 6", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_changes_from_glsl_es_3_2_revision_6" + } + }, + "#_changes_from_glsl_es_3_2_revision_7": { + "current": { + "number": "1.1.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 7", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_changes_from_glsl_es_3_2_revision_7" + } + }, + "#_combined_texture_and_samplers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Combined Texture and Samplers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_combined_texture_and_samplers" + } + }, + "#_combining_separate_samplers_and_textures": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Combining Separate Samplers and Textures", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_combining_separate_samplers_and_textures" + } + }, + "#_feature_comparisons": { + "current": { + "number": "14.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Feature Comparisons", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_feature_comparisons" + } + }, + "#_gl_fragcolor": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "gl_FragColor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_gl_fragcolor" + } + }, + "#_image_buffers_storage_texel_buffers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Image Buffers (Storage Texel Buffers)", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_image_buffers_storage_texel_buffers" + } + }, + "#_inputoutput": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Input/Output", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_inputoutput" + } + }, + "#_mapping_from_glsl_to_spir_v": { + "current": { + "number": "14.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping from GLSL to SPIR-V", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_from_glsl_to_spir_v" + } + }, + "#_mapping_of_atomics": { + "current": { + "number": "14.2.12", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping of atomics", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_of_atomics" + } + }, + "#_mapping_of_barriers": { + "current": { + "number": "14.2.11", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping of barriers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_of_barriers" + } + }, + "#_mapping_of_images": { + "current": { + "number": "14.2.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping of Images", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_of_images" + } + }, + "#_mapping_of_layouts": { + "current": { + "number": "14.2.10", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping of Layouts", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_of_layouts" + } + }, + "#_mapping_of_other_instructions": { + "current": { + "number": "14.2.14", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping of other instructions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_of_other_instructions" + } + }, + "#_mapping_of_precise": { + "current": { + "number": "14.2.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping of precise:", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_of_precise" + } + }, + "#_mapping_variables": { + "current": { + "number": "14.2.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Mapping Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_mapping_variables" + } + }, + "#_non_normative_spir_v_mappings": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "14. Non-Normative SPIR-V Mappings", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_non_normative_spir_v_mappings" + } + }, + "#_opengl_mapping_of_atomic_uint_offset_layout_qualifier": { + "current": { + "number": "14.2.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "OpenGL Mapping of atomic_uint offset layout qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_opengl_mapping_of_atomic_uint_offset_layout_qualifier" + } + }, + "#_opengl_only_mapping_of_atomics": { + "current": { + "number": "14.2.13", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "OpenGL Only: Mapping of Atomics", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_opengl_only_mapping_of_atomics" + } + }, + "#_samplers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Samplers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_samplers" + } + }, + "#_specialization_constants": { + "current": { + "number": "14.2.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Specialization Constants", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_specialization_constants" + } + }, + "#_storage_buffers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Storage Buffers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_storage_buffers" + } + }, + "#_storage_classes": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Storage Classes:", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_storage_classes" + } + }, + "#_storage_images": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Storage Images", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_storage_images" + } + }, + "#_subpass_input_functions": { + "current": { + "number": "8.17", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Subpass-Input Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_subpass_input_functions" + } + }, + "#_subpass_input_qualifier": { + "current": { + "number": "4.4.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Subpass Input Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_subpass_input_qualifier" + } + }, + "#_subpass_inputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Subpass Inputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_subpass_inputs" + } + }, + "#_subpass_inputs_2": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Subpass Inputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_subpass_inputs_2" + } + }, + "#_texture_buffers_uniform_texel_buffers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture Buffers (Uniform Texel Buffers)", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_texture_buffers_uniform_texel_buffers" + } + }, + "#_texture_combined_sampler_constructors": { + "current": { + "number": "5.4.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture-Combined Sampler Constructors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_texture_combined_sampler_constructors" + } + }, + "#_texture_sampler_and_samplershadow_types": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture, sampler, and samplerShadow Types", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_texture_sampler_and_samplershadow_types" + } + }, + "#_textures_sampled_images": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Textures (Sampled Images)", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_textures_sampled_images" + } + }, + "#_uniform_buffers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Uniform Buffers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_uniform_buffers" + } + }, + "#_vulkan_gl_vertexindex_and_gl_instanceindex": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vulkan gl_VertexIndex and gl_InstanceIndex", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_vulkan_gl_vertexindex_and_gl_instanceindex" + } + }, + "#_vulkan_only_descriptor_sets": { + "current": { + "number": "14.2.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vulkan Only: Descriptor Sets", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_vulkan_only_descriptor_sets" + } + }, + "#_vulkan_only_mapping_of_precision_qualifiers": { + "current": { + "number": "14.2.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vulkan Only: Mapping of Precision Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_vulkan_only_mapping_of_precision_qualifiers" + } + }, + "#_vulkan_only_push_constants": { + "current": { + "number": "14.2.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vulkan Only: Push Constants", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_vulkan_only_push_constants" + } + }, + "#_vulkan_only_samplers_images_textures_and_buffers": { + "current": { + "number": "14.2.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vulkan Only: Samplers, Images, Textures, and Buffers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#_vulkan_only_samplers_images_textures_and_buffers" + } + }, + "#acknowledgments": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "12. Acknowledgments", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#acknowledgments" + } + }, + "#angle-and-trigonometry-functions": { + "current": { + "number": "8.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Angle and Trigonometry Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#angle-and-trigonometry-functions" + } + }, + "#array-constructors": { + "current": { + "number": "5.4.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Array Constructors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#array-constructors" + } + }, + "#array-operations": { + "current": { + "number": "5.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Array Operations", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#array-operations" + } + }, + "#arrays": { + "current": { + "number": "4.1.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Arrays", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#arrays" + } + }, + "#assignments": { + "current": { + "number": "5.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Assignments", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#assignments" + } + }, + "#atomic-counter-functions": { + "current": { + "number": "8.10", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Atomic Counter Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#atomic-counter-functions" + } + }, + "#atomic-counter-layout-qualifiers": { + "current": { + "number": "4.4.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Atomic Counter Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#atomic-counter-layout-qualifiers" + } + }, + "#atomic-counters": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Atomic Counters", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#atomic-counters" + } + }, + "#atomic-memory-functions": { + "current": { + "number": "8.11", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Atomic Memory Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#atomic-memory-functions" + } + }, + "#available-precision-qualifiers": { + "current": { + "number": "4.7.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Available Precision Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#available-precision-qualifiers" + } + }, + "#basic-types": { + "current": { + "number": "4.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Basic Types", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#basic-types" + } + }, + "#basics": { + "current": { + "number": "3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Basics", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#basics" + } + }, + "#booleans": { + "current": { + "number": "4.1.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Booleans", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#booleans" + } + }, + "#buffer-variables": { + "current": { + "number": "4.3.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Buffer Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#buffer-variables" + } + }, + "#built-in-constants": { + "current": { + "number": "7.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Built-In Constants", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#built-in-constants" + } + }, + "#built-in-functions": { + "current": { + "number": "8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Built-In Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#built-in-functions" + } + }, + "#built-in-language-variables": { + "current": { + "number": "7.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Built-In Language Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#built-in-language-variables" + } + }, + "#built-in-uniform-state": { + "current": { + "number": "7.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Built-In Uniform State", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#built-in-uniform-state" + } + }, + "#built-in-variables": { + "current": { + "number": "7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Built-In Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#built-in-variables" + } + }, + "#changes": { + "current": { + "number": "1.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#changes" + } + }, + "#changes-from-glsl-es-3.1-revision-4": { + "current": { + "number": "1.1.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.1 revision 4", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#changes-from-glsl-es-3.1-revision-4" + } + }, + "#changes-from-glsl-es-3.2-revision-1": { + "current": { + "number": "1.1.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 1", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#changes-from-glsl-es-3.2-revision-1" + } + }, + "#changes-from-glsl-es-3.2-revision-2": { + "current": { + "number": "1.1.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 2", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#changes-from-glsl-es-3.2-revision-2" + } + }, + "#changes-from-glsl-es-3.2-revision-3": { + "current": { + "number": "1.1.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 3", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#changes-from-glsl-es-3.2-revision-3" + } + }, + "#changes-from-glsl-es-3.2-revision-4": { + "current": { + "number": "1.1.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Changes from GLSL ES 3.2 revision 4", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#changes-from-glsl-es-3.2-revision-4" + } + }, + "#character-set": { + "current": { + "number": "3.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Character Set", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#character-set" + } + }, + "#comments": { + "current": { + "number": "3.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Comments", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#comments" + } + }, + "#common-functions": { + "current": { + "number": "8.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Common Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#common-functions" + } + }, + "#compatibility": { + "current": { + "number": "1.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Compatibility", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#compatibility" + } + }, + "#compute-processor": { + "current": { + "number": "2.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Compute Processor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#compute-processor" + } + }, + "#compute-shader-inputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Compute Shader Inputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#compute-shader-inputs" + } + }, + "#compute-shader-special-variables": { + "current": { + "number": "7.1.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Compute Shader Special Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#compute-shader-special-variables" + } + }, + "#constant-expressions": { + "current": { + "number": "4.3.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Constant Expressions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#constant-expressions" + } + }, + "#constant-qualifier": { + "current": { + "number": "4.3.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Constant Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#constant-qualifier" + } + }, + "#constructors": { + "current": { + "number": "5.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Constructors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#constructors" + } + }, + "#conversion-and-scalar-constructors": { + "current": { + "number": "5.4.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Conversion and Scalar Constructors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#conversion-and-scalar-constructors" + } + }, + "#conversion-between-precisions": { + "current": { + "number": "4.7.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Conversion between precisions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#conversion-between-precisions" + } + }, + "#counting-of-inputs-and-outputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "11. Counting of Inputs and Outputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#counting-of-inputs-and-outputs" + } + }, + "#default-precision-qualifiers": { + "current": { + "number": "4.7.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Default Precision Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#default-precision-qualifiers" + } + }, + "#default-storage-qualifier": { + "current": { + "number": "4.3.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Default Storage Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#default-storage-qualifier" + } + }, + "#definition-of-terms": { + "current": { + "number": "4.2.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Definition of Terms", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#definition-of-terms" + } + }, + "#definitions": { + "current": { + "number": "3.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Definitions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#definitions" + } + }, + "#derivative-functions": { + "current": { + "number": "8.14.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Derivative Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#derivative-functions" + } + }, + "#dynamically-uniform-expressions-and-uniform-control-flow": { + "current": { + "number": "3.9.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Dynamically Uniform Expressions and Uniform Control Flow", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#dynamically-uniform-expressions-and-uniform-control-flow" + } + }, + "#empty-declarations": { + "current": { + "number": "4.13", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Empty Declarations", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#empty-declarations" + } + }, + "#error-handling": { + "current": { + "number": "1.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Error Handling", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#error-handling" + } + }, + "#evaluation-of-expressions": { + "current": { + "number": "5.12", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Evaluation of Expressions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#evaluation-of-expressions" + } + }, + "#explicit-gradients": { + "current": { + "number": "8.9.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Explicit Gradients", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#explicit-gradients" + } + }, + "#exponential-functions": { + "current": { + "number": "8.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Exponential Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#exponential-functions" + } + }, + "#expressions": { + "current": { + "number": "5.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Expressions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#expressions" + } + }, + "#floating-point-pack-and-unpack-functions": { + "current": { + "number": "8.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Floating-Point Pack and Unpack Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#floating-point-pack-and-unpack-functions" + } + }, + "#floats": { + "current": { + "number": "4.1.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Floats", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#floats" + } + }, + "#format-layout-qualifiers": { + "current": { + "number": "4.4.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Format Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#format-layout-qualifiers" + } + }, + "#fragment-outputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Fragment Outputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#fragment-outputs" + } + }, + "#fragment-processing-functions": { + "current": { + "number": "8.14", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Fragment Processing Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#fragment-processing-functions" + } + }, + "#fragment-processor": { + "current": { + "number": "2.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Fragment Processor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#fragment-processor" + } + }, + "#fragment-shader-inputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Fragment Shader Inputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#fragment-shader-inputs" + } + }, + "#fragment-shader-special-variables": { + "current": { + "number": "7.1.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Fragment Shader Special Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#fragment-shader-special-variables" + } + }, + "#function-calling-conventions": { + "current": { + "number": "6.1.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Function Calling Conventions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#function-calling-conventions" + } + }, + "#function-calls": { + "current": { + "number": "5.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Function Calls", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#function-calls" + } + }, + "#function-definitions": { + "current": { + "number": "6.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Function Definitions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#function-definitions" + } + }, + "#geometric-functions": { + "current": { + "number": "8.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometric Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometric-functions" + } + }, + "#geometry-outputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Outputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-outputs" + } + }, + "#geometry-processor": { + "current": { + "number": "2.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Processor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-processor" + } + }, + "#geometry-shader-functions": { + "current": { + "number": "8.13", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Shader Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-shader-functions" + } + }, + "#geometry-shader-input-variables": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Shader Input Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-shader-input-variables" + } + }, + "#geometry-shader-inputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Shader Inputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-shader-inputs" + } + }, + "#geometry-shader-output-variables": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Shader Output Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-shader-output-variables" + } + }, + "#geometry-shader-special-variables": { + "current": { + "number": "7.1.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Geometry Shader Special Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#geometry-shader-special-variables" + } + }, + "#global-scope": { + "current": { + "number": "4.2.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Global Scope", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#global-scope" + } + }, + "#identifiers": { + "current": { + "number": "3.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Identifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#identifiers" + } + }, + "#image-functions": { + "current": { + "number": "8.12", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Image Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#image-functions" + } + }, + "#images": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Images", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#images" + } + }, + "#input-layout-qualifiers": { + "current": { + "number": "4.4.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Input Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#input-layout-qualifiers" + } + }, + "#input-output-matching-by-name-in-linked-programs": { + "current": { + "number": "9.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Input Output Matching by Name in Linked Programs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#input-output-matching-by-name-in-linked-programs" + } + }, + "#input-variables": { + "current": { + "number": "4.3.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Input Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#input-variables" + } + }, + "#integer-functions": { + "current": { + "number": "8.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Integer Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#integer-functions" + } + }, + "#integers": { + "current": { + "number": "4.1.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Integers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#integers" + } + }, + "#interface-blocks": { + "current": { + "number": "4.3.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Interface Blocks", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#interface-blocks" + } + }, + "#interpolation-functions": { + "current": { + "number": "8.14.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Interpolation Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#interpolation-functions" + } + }, + "#interpolation-qualifiers": { + "current": { + "number": "4.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Interpolation Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#interpolation-qualifiers" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Introduction", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#introduction" + } + }, + "#invariance-of-constant-expressions": { + "current": { + "number": "4.8.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Invariance of Constant Expressions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#invariance-of-constant-expressions" + } + }, + "#invariance-of-undefined-values": { + "current": { + "number": "4.8.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Invariance of Undefined Values", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#invariance-of-undefined-values" + } + }, + "#invariance-within-a-shader": { + "current": { + "number": "4.8.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Invariance Within a Shader", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#invariance-within-a-shader" + } + }, + "#iteration": { + "current": { + "number": "6.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Iteration", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#iteration" + } + }, + "#jumps": { + "current": { + "number": "6.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Jumps", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#jumps" + } + }, + "#keywords": { + "current": { + "number": "3.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Keywords", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#keywords" + } + }, + "#layout-qualifiers": { + "current": { + "number": "4.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#layout-qualifiers" + } + }, + "#linked-shaders": { + "current": { + "number": "9.2.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Linked Shaders", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#linked-shaders" + } + }, + "#logical-phases-of-compilation": { + "current": { + "number": "3.10", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Logical Phases of Compilation", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#logical-phases-of-compilation" + } + }, + "#matching-of-qualifiers": { + "current": { + "number": "9.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Matching of Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#matching-of-qualifiers" + } + }, + "#matrices": { + "current": { + "number": "4.1.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Matrices", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#matrices" + } + }, + "#matrix-components": { + "current": { + "number": "5.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Matrix Components", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#matrix-components" + } + }, + "#matrix-functions": { + "current": { + "number": "8.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Matrix Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#matrix-functions" + } + }, + "#memory-qualifiers": { + "current": { + "number": "4.10", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Memory Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#memory-qualifiers" + } + }, + "#opaque-types": { + "current": { + "number": "4.1.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Opaque Types", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#opaque-types" + } + }, + "#opaque-uniform-layout-qualifiers": { + "current": { + "number": "4.4.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Opaque Uniform Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#opaque-uniform-layout-qualifiers" + } + }, + "#operators": { + "current": { + "number": "5.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Operators", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#operators" + } + }, + "#operators-and-expressions": { + "current": { + "number": "5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Operators and Expressions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#operators-and-expressions" + } + }, + "#order-of-qualification": { + "current": { + "number": "4.12", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Order and Repetition of Qualification", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#order-of-qualification" + } + }, + "#output-layout-qualifiers": { + "current": { + "number": "4.4.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Output Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#output-layout-qualifiers" + } + }, + "#output-variables": { + "current": { + "number": "4.3.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Output Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#output-variables" + } + }, + "#overview": { + "current": { + "number": "1.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Overview", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#overview" + } + }, + "#overview-of-opengl-shading": { + "current": { + "number": "2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Overview of Shading", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#overview-of-opengl-shading" + } + }, + "#parameter-qualifiers": { + "current": { + "number": "4.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Parameter Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#parameter-qualifiers" + } + }, + "#precision-and-precision-qualifiers": { + "current": { + "number": "4.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Precision and Precision Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#precision-and-precision-qualifiers" + } + }, + "#precision-qualifiers": { + "current": { + "number": "4.7.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Precision Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#precision-qualifiers" + } + }, + "#preprocessor": { + "current": { + "number": "3.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Preprocessor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#preprocessor" + } + }, + "#range-and-precision": { + "current": { + "number": "4.7.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Range and Precision", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#range-and-precision" + } + }, + "#redeclaring-built-in-blocks": { + "current": { + "number": "7.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Redeclaring Built-In Blocks", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#redeclaring-built-in-blocks" + } + }, + "#redeclaring-names": { + "current": { + "number": "4.2.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Redeclaring Names", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#redeclaring-names" + } + }, + "#references": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "13. Normative References", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#references" + } + }, + "#refraction-equation": { + "current": { + "number": "8.5.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Refraction Equation", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#refraction-equation" + } + }, + "#samplers": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture-Combined Samplers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#samplers" + } + }, + "#scoping": { + "current": { + "number": "4.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Scoping", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#scoping" + } + }, + "#selection": { + "current": { + "number": "6.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Selection", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#selection" + } + }, + "#separable-programs": { + "current": { + "number": "9.2.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Separable Programs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#separable-programs" + } + }, + "#shader-interface-matching": { + "current": { + "number": "9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Shader Interface Matching", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#shader-interface-matching" + } + }, + "#shader-invocation-control-functions": { + "current": { + "number": "8.15", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Shader Invocation Control Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#shader-invocation-control-functions" + } + }, + "#shader-memory-control-functions": { + "current": { + "number": "8.16", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Shader Memory Control Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#shader-memory-control-functions" + } + }, + "#shading-language-grammar": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "10. Shading Language Grammar", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#shading-language-grammar" + } + }, + "#shared-globals": { + "current": { + "number": "4.2.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Shared Globals", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#shared-globals" + } + }, + "#shared-variables": { + "current": { + "number": "4.3.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Shared Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#shared-variables" + } + }, + "#source-strings": { + "current": { + "number": "3.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Source Strings", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#source-strings" + } + }, + "#specialization-constant-operations": { + "current": { + "number": "5.11", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Specialization-Constant Operations", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#specialization-constant-operations" + } + }, + "#specialization-constant-qualifier": { + "current": { + "number": "4.11", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Specialization-Constant Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#specialization-constant-qualifier" + } + }, + "#statements-and-structure": { + "current": { + "number": "6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Statements and Structure", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#statements-and-structure" + } + }, + "#static-use": { + "current": { + "number": "3.9.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Static Use", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#static-use" + } + }, + "#storage-qualifiers": { + "current": { + "number": "4.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Storage Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#storage-qualifiers" + } + }, + "#structure-and-array-operations": { + "current": { + "number": "5.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Structure and Array Operations", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#structure-and-array-operations" + } + }, + "#structure-constructors": { + "current": { + "number": "5.4.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Structure Constructors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#structure-constructors" + } + }, + "#structures": { + "current": { + "number": "4.1.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Structures", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#structures" + } + }, + "#tessellation-control-input-variables": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Control Input Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-control-input-variables" + } + }, + "#tessellation-control-output-variables": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Control Output Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-control-output-variables" + } + }, + "#tessellation-control-outputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Control Outputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-control-outputs" + } + }, + "#tessellation-control-processor": { + "current": { + "number": "2.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Control Processor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-control-processor" + } + }, + "#tessellation-control-shader-special-variables": { + "current": { + "number": "7.1.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Control Shader Special Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-control-shader-special-variables" + } + }, + "#tessellation-evaluation-input-variables": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Evaluation Input Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-evaluation-input-variables" + } + }, + "#tessellation-evaluation-inputs": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Evaluation Inputs", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-evaluation-inputs" + } + }, + "#tessellation-evaluation-output-variables": { + "current": { + "number": "", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Evaluation Output Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-evaluation-output-variables" + } + }, + "#tessellation-evaluation-processor": { + "current": { + "number": "2.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Evaluation Processor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-evaluation-processor" + } + }, + "#tessellation-evaluation-shader-special-variables": { + "current": { + "number": "7.1.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tessellation Evaluation Shader Special Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tessellation-evaluation-shader-special-variables" + } + }, + "#texel-lookup-functions": { + "current": { + "number": "8.9.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texel Lookup Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#texel-lookup-functions" + } + }, + "#texture-functions": { + "current": { + "number": "8.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#texture-functions" + } + }, + "#texture-gather-functions": { + "current": { + "number": "8.9.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture Gather Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#texture-gather-functions" + } + }, + "#texture-query-functions": { + "current": { + "number": "8.9.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Texture Query Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#texture-query-functions" + } + }, + "#the-invariant-qualifier": { + "current": { + "number": "4.8.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "The Invariant Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#the-invariant-qualifier" + } + }, + "#the-precise-qualifier": { + "current": { + "number": "4.9", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "The Precise Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#the-precise-qualifier" + } + }, + "#tokens": { + "current": { + "number": "3.6", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Tokens", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#tokens" + } + }, + "#types-of-scope": { + "current": { + "number": "4.2.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Types of Scope", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#types-of-scope" + } + }, + "#typographical-conventions": { + "current": { + "number": "1.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Typographical Conventions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#typographical-conventions" + } + }, + "#uniform-and-shader-storage-block-layout-qualifiers": { + "current": { + "number": "4.4.4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Uniform and Shader Storage Block Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#uniform-and-shader-storage-block-layout-qualifiers" + } + }, + "#uniform-variable-layout-qualifiers": { + "current": { + "number": "4.4.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Uniform Variable Layout Qualifiers", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#uniform-variable-layout-qualifiers" + } + }, + "#uniform-variables": { + "current": { + "number": "4.3.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Uniform Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#uniform-variables" + } + }, + "#variables-and-types": { + "current": { + "number": "4", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Variables and Types", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#variables-and-types" + } + }, + "#variance-and-the-invariant-qualifier": { + "current": { + "number": "4.8", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Variance and the Invariant Qualifier", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#variance-and-the-invariant-qualifier" + } + }, + "#vector-and-matrix-constructors": { + "current": { + "number": "5.4.2", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vector and Matrix Constructors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vector-and-matrix-constructors" + } + }, + "#vector-and-matrix-operations": { + "current": { + "number": "5.10", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vector and Matrix Operations", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vector-and-matrix-operations" + } + }, + "#vector-components": { + "current": { + "number": "5.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vector Components", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vector-components" + } + }, + "#vector-relational-functions": { + "current": { + "number": "8.7", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vector Relational Functions", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vector-relational-functions" + } + }, + "#vectors": { + "current": { + "number": "4.1.5", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vectors", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vectors" + } + }, + "#version-declaration": { + "current": { + "number": "3.3", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Version Declaration", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#version-declaration" + } + }, + "#vertex-processor": { + "current": { + "number": "2.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vertex Processor", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vertex-processor" + } + }, + "#vertex-shader-special-variables": { + "current": { + "number": "7.1.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Vertex Shader Special Variables", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#vertex-shader-special-variables" + } + }, + "#void": { + "current": { + "number": "4.1.1", + "spec": "OpenGL ES® Shading Language 3.20", + "text": "Void", + "url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html#void" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-event-timing.json b/bikeshed/spec-data/readonly/headings/headings-event-timing.json index 44e6d1bbc4..8dbee9346a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-event-timing.json +++ b/bikeshed/spec-data/readonly/headings/headings-event-timing.json @@ -4,7 +4,7 @@ "number": "", "spec": "Event Timing API", "text": "Abstract", - "url": "https://w3c.github.io/event-timing#abstract" + "url": "https://w3c.github.io/event-timing/#abstract" }, "snapshot": { "number": "", @@ -18,7 +18,7 @@ "number": "", "spec": "Event Timing API", "text": "IDL Index", - "url": "https://w3c.github.io/event-timing#idl-index" + "url": "https://w3c.github.io/event-timing/#idl-index" }, "snapshot": { "number": "", @@ -32,7 +32,7 @@ "number": "", "spec": "Event Timing API", "text": "Index", - "url": "https://w3c.github.io/event-timing#index" + "url": "https://w3c.github.io/event-timing/#index" }, "snapshot": { "number": "", @@ -46,7 +46,7 @@ "number": "", "spec": "Event Timing API", "text": "Terms defined by reference", - "url": "https://w3c.github.io/event-timing#index-defined-elsewhere" + "url": "https://w3c.github.io/event-timing/#index-defined-elsewhere" }, "snapshot": { "number": "", @@ -60,7 +60,7 @@ "number": "", "spec": "Event Timing API", "text": "Terms defined by this specification", - "url": "https://w3c.github.io/event-timing#index-defined-here" + "url": "https://w3c.github.io/event-timing/#index-defined-here" }, "snapshot": { "number": "", @@ -74,7 +74,7 @@ "number": "", "spec": "Event Timing API", "text": "Issues Index", - "url": "https://w3c.github.io/event-timing#issues-index" + "url": "https://w3c.github.io/event-timing/#issues-index" }, "snapshot": { "number": "", @@ -88,7 +88,7 @@ "number": "", "spec": "Event Timing API", "text": "Normative References", - "url": "https://w3c.github.io/event-timing#normative" + "url": "https://w3c.github.io/event-timing/#normative" }, "snapshot": { "number": "", @@ -102,7 +102,7 @@ "number": "4", "spec": "Event Timing API", "text": "Security & privacy considerations", - "url": "https://w3c.github.io/event-timing#priv-sec" + "url": "https://w3c.github.io/event-timing/#priv-sec" }, "snapshot": { "number": "4", @@ -116,7 +116,7 @@ "number": "", "spec": "Event Timing API", "text": "References", - "url": "https://w3c.github.io/event-timing#references" + "url": "https://w3c.github.io/event-timing/#references" }, "snapshot": { "number": "", @@ -130,7 +130,7 @@ "number": "3.6", "spec": "Event Timing API", "text": "Computing interactionId", - "url": "https://w3c.github.io/event-timing#sec-computing-interactionid" + "url": "https://w3c.github.io/event-timing/#sec-computing-interactionid" }, "snapshot": { "number": "3.6", @@ -144,7 +144,7 @@ "number": "3.9", "spec": "Event Timing API", "text": "Dispatch pending Event Timing entries", - "url": "https://w3c.github.io/event-timing#sec-dispatch-pending" + "url": "https://w3c.github.io/event-timing/#sec-dispatch-pending" }, "snapshot": { "number": "3.9", @@ -158,7 +158,7 @@ "number": "2.2", "spec": "Event Timing API", "text": "EventCounts interface", - "url": "https://w3c.github.io/event-timing#sec-event-counts" + "url": "https://w3c.github.io/event-timing/#sec-event-counts" }, "snapshot": { "number": "2.2", @@ -172,7 +172,7 @@ "number": "2", "spec": "Event Timing API", "text": "Event Timing", - "url": "https://w3c.github.io/event-timing#sec-event-timing" + "url": "https://w3c.github.io/event-timing/#sec-event-timing" }, "snapshot": { "number": "2", @@ -186,7 +186,7 @@ "number": "1.1", "spec": "Event Timing API", "text": "Events exposed", - "url": "https://w3c.github.io/event-timing#sec-events-exposed" + "url": "https://w3c.github.io/event-timing/#sec-events-exposed" }, "snapshot": { "number": "1.1", @@ -200,7 +200,7 @@ "number": "1.2", "spec": "Event Timing API", "text": "Usage example", - "url": "https://w3c.github.io/event-timing#sec-example" + "url": "https://w3c.github.io/event-timing/#sec-example" }, "snapshot": { "number": "1.2", @@ -214,10 +214,10 @@ "number": "2.3", "spec": "Event Timing API", "text": "Extensions to the Performance interface", - "url": "https://w3c.github.io/event-timing#sec-extensions" + "url": "https://w3c.github.io/event-timing/#sec-extensions" }, "snapshot": { - "number": "2.4", + "number": "2.3", "spec": "Event Timing API", "text": "Extensions to the Performance interface", "url": "https://www.w3.org/TR/event-timing/#sec-extensions" @@ -228,7 +228,7 @@ "number": "3.8", "spec": "Event Timing API", "text": "Finalize event timing", - "url": "https://w3c.github.io/event-timing#sec-fin-event-timing" + "url": "https://w3c.github.io/event-timing/#sec-fin-event-timing" }, "snapshot": { "number": "3.8", @@ -242,7 +242,7 @@ "number": "3.5", "spec": "Event Timing API", "text": "Increasing interaction count", - "url": "https://w3c.github.io/event-timing#sec-increasing-interaction-count" + "url": "https://w3c.github.io/event-timing/#sec-increasing-interaction-count" }, "snapshot": { "number": "3.5", @@ -256,7 +256,7 @@ "number": "3.7", "spec": "Event Timing API", "text": "Initialize event timing", - "url": "https://w3c.github.io/event-timing#sec-init-event-timing" + "url": "https://w3c.github.io/event-timing/#sec-init-event-timing" }, "snapshot": { "number": "3.7", @@ -265,20 +265,12 @@ "url": "https://www.w3.org/TR/event-timing/#sec-init-event-timing" } }, - "#sec-interaction-counts": { - "snapshot": { - "number": "2.3", - "spec": "Event Timing API", - "text": "InteractionCounts interface", - "url": "https://www.w3.org/TR/event-timing/#sec-interaction-counts" - } - }, "#sec-intro": { "current": { "number": "1", "spec": "Event Timing API", "text": "Introduction", - "url": "https://w3c.github.io/event-timing#sec-intro" + "url": "https://w3c.github.io/event-timing/#sec-intro" }, "snapshot": { "number": "1", @@ -292,7 +284,7 @@ "number": "3.1", "spec": "Event Timing API", "text": "Modifications to the DOM specification", - "url": "https://w3c.github.io/event-timing#sec-modifications-DOM" + "url": "https://w3c.github.io/event-timing/#sec-modifications-DOM" }, "snapshot": { "number": "3.1", @@ -306,7 +298,7 @@ "number": "3.2", "spec": "Event Timing API", "text": "Modifications to the HTML specification", - "url": "https://w3c.github.io/event-timing#sec-modifications-HTML" + "url": "https://w3c.github.io/event-timing/#sec-modifications-HTML" }, "snapshot": { "number": "3.2", @@ -320,7 +312,7 @@ "number": "3.3", "spec": "Event Timing API", "text": "Modifications to the Performance Timeline specification", - "url": "https://w3c.github.io/event-timing#sec-modifications-perf-timeline" + "url": "https://w3c.github.io/event-timing/#sec-modifications-perf-timeline" }, "snapshot": { "number": "3.3", @@ -334,7 +326,7 @@ "number": "2.1", "spec": "Event Timing API", "text": "PerformanceEventTiming interface", - "url": "https://w3c.github.io/event-timing#sec-performance-event-timing" + "url": "https://w3c.github.io/event-timing/#sec-performance-event-timing" }, "snapshot": { "number": "2.1", @@ -348,7 +340,7 @@ "number": "3", "spec": "Event Timing API", "text": "Processing model", - "url": "https://w3c.github.io/event-timing#sec-processing-model" + "url": "https://w3c.github.io/event-timing/#sec-processing-model" }, "snapshot": { "number": "3", @@ -362,7 +354,7 @@ "number": "3.4", "spec": "Event Timing API", "text": "Should add PerformanceEventTiming", - "url": "https://w3c.github.io/event-timing#sec-should-add-performanceeventtiming" + "url": "https://w3c.github.io/event-timing/#sec-should-add-performanceeventtiming" }, "snapshot": { "number": "3.4", @@ -376,7 +368,7 @@ "number": "", "spec": "Event Timing API", "text": "Status of this document", - "url": "https://w3c.github.io/event-timing#sotd" + "url": "https://w3c.github.io/event-timing/#sotd" }, "snapshot": { "number": "", @@ -390,7 +382,7 @@ "number": "", "spec": "Event Timing API", "text": "Event Timing API", - "url": "https://w3c.github.io/event-timing#title" + "url": "https://w3c.github.io/event-timing/#title" }, "snapshot": { "number": "", @@ -404,7 +396,7 @@ "number": "", "spec": "Event Timing API", "text": "Table of Contents", - "url": "https://w3c.github.io/event-timing#toc" + "url": "https://w3c.github.io/event-timing/#toc" }, "snapshot": { "number": "", @@ -418,7 +410,7 @@ "number": "", "spec": "Event Timing API", "text": "Conformance", - "url": "https://w3c.github.io/event-timing#w3c-conformance" + "url": "https://w3c.github.io/event-timing/#w3c-conformance" }, "snapshot": { "number": "", @@ -432,7 +424,7 @@ "number": "", "spec": "Event Timing API", "text": "Conformant Algorithms", - "url": "https://w3c.github.io/event-timing#w3c-conformant-algorithms" + "url": "https://w3c.github.io/event-timing/#w3c-conformant-algorithms" }, "snapshot": { "number": "", @@ -446,7 +438,7 @@ "number": "", "spec": "Event Timing API", "text": "Document conventions", - "url": "https://w3c.github.io/event-timing#w3c-conventions" + "url": "https://w3c.github.io/event-timing/#w3c-conventions" }, "snapshot": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-fedcm.json b/bikeshed/spec-data/readonly/headings/headings-fedcm.json index 1fdf2a8461..4974322687 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fedcm.json +++ b/bikeshed/spec-data/readonly/headings/headings-fedcm.json @@ -9,7 +9,7 @@ }, "#acknowledgements": { "current": { - "number": "8", + "number": "9", "spec": "Federated Credential Management API", "text": "Acknowledgements", "url": "https://fedidcg.github.io/FedCM/#acknowledgements" @@ -17,7 +17,7 @@ }, "#attack-scenarios": { "current": { - "number": "6.3", + "number": "7.3", "spec": "Federated Credential Management API", "text": "Attack Scenarios", "url": "https://fedidcg.github.io/FedCM/#attack-scenarios" @@ -25,12 +25,20 @@ }, "#attack-scenarios-by-rp-cross-site-correlation": { "current": { - "number": "6.3.4", + "number": "7.3.4", "spec": "Federated Credential Management API", "text": "Cross-Site Correlation", "url": "https://fedidcg.github.io/FedCM/#attack-scenarios-by-rp-cross-site-correlation" } }, + "#automation": { + "current": { + "number": "5", + "spec": "Federated Credential Management API", + "text": "User Agent Automation", + "url": "https://fedidcg.github.io/FedCM/#automation" + } + }, "#browser-api": { "current": { "number": "2", @@ -39,49 +47,65 @@ "url": "https://fedidcg.github.io/FedCM/#browser-api" } }, - "#browser-api-backwards-compatibility": { + "#browser-api-credential-request-options": { "current": { - "number": "3.6", + "number": "2.3.2", "spec": "Federated Credential Management API", - "text": "Backwards Compatibility", - "url": "https://fedidcg.github.io/FedCM/#browser-api-backwards-compatibility" + "text": "The CredentialRequestOptions", + "url": "https://fedidcg.github.io/FedCM/#browser-api-credential-request-options" } }, - "#browser-api-credential-request-options": { + "#browser-api-identity-credential-disconnect": { "current": { - "number": "2.2.1", + "number": "2.3.1", "spec": "Federated Credential Management API", - "text": "The CredentialRequestOptions ## {#browser-api-credential-request-options}", - "url": "https://fedidcg.github.io/FedCM/#browser-api-credential-request-options" + "text": "The disconnect method", + "url": "https://fedidcg.github.io/FedCM/#browser-api-identity-credential-disconnect" } }, "#browser-api-identity-credential-interface": { "current": { - "number": "2.2", + "number": "2.3", "spec": "Federated Credential Management API", "text": "The IdentityCredential Interface", "url": "https://fedidcg.github.io/FedCM/#browser-api-identity-credential-interface" } }, + "#browser-api-identity-provider-interface": { + "current": { + "number": "2.4", + "spec": "Federated Credential Management API", + "text": "The IdentityProvider Interface", + "url": "https://fedidcg.github.io/FedCM/#browser-api-identity-provider-interface" + } + }, + "#browser-api-login-status": { + "current": { + "number": "2.1", + "spec": "Federated Credential Management API", + "text": "The Login Status API", + "url": "https://fedidcg.github.io/FedCM/#browser-api-login-status" + } + }, "#browser-api-rp-sign-in": { "current": { - "number": "2.2.2", + "number": "2.3.3", "spec": "Federated Credential Management API", - "text": "The [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) internal method ## {#browser-api-rp-sign-in}", + "text": "The [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) internal method", "url": "https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in" } }, - "#browser-api-state-machine": { + "#browser-connected-accounts-set": { "current": { - "number": "2.1", + "number": "2.2", "spec": "Federated Credential Management API", - "text": "The State Machine", - "url": "https://fedidcg.github.io/FedCM/#browser-api-state-machine" + "text": "The connected accounts set", + "url": "https://fedidcg.github.io/FedCM/#browser-connected-accounts-set" } }, "#browser-surface-impersonation": { "current": { - "number": "5.3", + "number": "6.3", "spec": "Federated Credential Management API", "text": "Browser Surface Impersonation", "url": "https://fedidcg.github.io/FedCM/#browser-surface-impersonation" @@ -89,20 +113,76 @@ }, "#content-security-policy": { "current": { - "number": "5.1", + "number": "6.1", "spec": "Federated Credential Management API", "text": "Content Security Policy", "url": "https://fedidcg.github.io/FedCM/#content-security-policy" } }, + "#create-identity-credential": { + "current": { + "number": "2.3.4", + "spec": "Federated Credential Management API", + "text": "Create an IdentityCredential", + "url": "https://fedidcg.github.io/FedCM/#create-identity-credential" + } + }, + "#disconnect-request": { + "current": { + "number": "2.3.1.1", + "spec": "Federated Credential Management API", + "text": "Disconnect request", + "url": "https://fedidcg.github.io/FedCM/#disconnect-request" + } + }, "#extensibility": { "current": { - "number": "7", + "number": "8", "spec": "Federated Credential Management API", "text": "Extensibility", "url": "https://fedidcg.github.io/FedCM/#extensibility" } }, + "#fetch-accounts": { + "current": { + "number": "2.3.6", + "spec": "Federated Credential Management API", + "text": "Fetch the accounts", + "url": "https://fedidcg.github.io/FedCM/#fetch-accounts" + } + }, + "#fetch-config-file": { + "current": { + "number": "2.3.5", + "spec": "Federated Credential Management API", + "text": "Fetch the config file", + "url": "https://fedidcg.github.io/FedCM/#fetch-config-file" + } + }, + "#fetch-identity-assertion": { + "current": { + "number": "2.3.7", + "spec": "Federated Credential Management API", + "text": "Fetch an identity assertion", + "url": "https://fedidcg.github.io/FedCM/#fetch-identity-assertion" + } + }, + "#hdr-login-status-map": { + "current": { + "number": "2.1.1", + "spec": "Federated Credential Management API", + "text": "Login Status Map", + "url": "https://fedidcg.github.io/FedCM/#hdr-login-status-map" + } + }, + "#helper-algorithms": { + "current": { + "number": "2.3.9", + "spec": "Federated Credential Management API", + "text": "Helper algorithms", + "url": "https://fedidcg.github.io/FedCM/#helper-algorithms" + } + }, "#idl-index": { "current": { "number": "", @@ -123,7 +203,7 @@ "current": { "number": "3.3", "spec": "Federated Credential Management API", - "text": "Accounts List", + "text": "Accounts endpoint", "url": "https://fedidcg.github.io/FedCM/#idp-api-accounts-endpoint" } }, @@ -135,20 +215,28 @@ "url": "https://fedidcg.github.io/FedCM/#idp-api-client-id-metadata-endpoint" } }, - "#idp-api-id-assertion-endpoint": { + "#idp-api-config-file": { "current": { - "number": "3.5", + "number": "3.2", "spec": "Federated Credential Management API", - "text": "Identity Assertions", - "url": "https://fedidcg.github.io/FedCM/#idp-api-id-assertion-endpoint" + "text": "The config file", + "url": "https://fedidcg.github.io/FedCM/#idp-api-config-file" } }, - "#idp-api-manifest": { + "#idp-api-disconnect-endpoint": { "current": { - "number": "3.2", + "number": "3.6", + "spec": "Federated Credential Management API", + "text": "Disconnect endpoint", + "url": "https://fedidcg.github.io/FedCM/#idp-api-disconnect-endpoint" + } + }, + "#idp-api-id-assertion-endpoint": { + "current": { + "number": "3.5", "spec": "Federated Credential Management API", - "text": "Manifest", - "url": "https://fedidcg.github.io/FedCM/#idp-api-manifest" + "text": "Identity assertion endpoint", + "url": "https://fedidcg.github.io/FedCM/#idp-api-id-assertion-endpoint" } }, "#idp-api-well-known": { @@ -161,7 +249,7 @@ }, "#idp-intrusion": { "current": { - "number": "6.3.3", + "number": "7.3.3", "spec": "Federated Credential Management API", "text": "IDP Intrusion", "url": "https://fedidcg.github.io/FedCM/#idp-intrusion" @@ -215,9 +303,33 @@ "url": "https://fedidcg.github.io/FedCM/#issues-index" } }, + "#login-status-clear-data": { + "current": { + "number": "2.1.4", + "spec": "Federated Credential Management API", + "text": "Clearing the Login Status Map data", + "url": "https://fedidcg.github.io/FedCM/#login-status-clear-data" + } + }, + "#login-status-http": { + "current": { + "number": "2.1.2", + "spec": "Federated Credential Management API", + "text": "HTTP header API", + "url": "https://fedidcg.github.io/FedCM/#login-status-http" + } + }, + "#login-status-javascript": { + "current": { + "number": "2.1.3", + "spec": "Federated Credential Management API", + "text": "JavaScript API", + "url": "https://fedidcg.github.io/FedCM/#login-status-javascript" + } + }, "#manifest-fingerprinting": { "current": { - "number": "6.3.1", + "number": "7.3.1", "spec": "Federated Credential Management API", "text": "Manifest Fingerprinting", "url": "https://fedidcg.github.io/FedCM/#manifest-fingerprinting" @@ -225,7 +337,7 @@ }, "#network-requests": { "current": { - "number": "6.2", + "number": "7.2", "spec": "Federated Credential Management API", "text": "Network requests", "url": "https://fedidcg.github.io/FedCM/#network-requests" @@ -239,6 +351,14 @@ "url": "https://fedidcg.github.io/FedCM/#normative" } }, + "#openissues": { + "current": { + "number": "", + "spec": "Federated Credential Management API", + "text": "10. FPWD Issues", + "url": "https://fedidcg.github.io/FedCM/#openissues" + } + }, "#permissions-policy-integration": { "current": { "number": "4", @@ -249,7 +369,7 @@ }, "#privacy": { "current": { - "number": "6", + "number": "7", "spec": "Federated Credential Management API", "text": "Privacy", "url": "https://fedidcg.github.io/FedCM/#privacy" @@ -257,7 +377,7 @@ }, "#privacy-principals": { "current": { - "number": "6.1", + "number": "7.1", "spec": "Federated Credential Management API", "text": "Principals", "url": "https://fedidcg.github.io/FedCM/#privacy-principals" @@ -271,9 +391,17 @@ "url": "https://fedidcg.github.io/FedCM/#references" } }, + "#request-permission-signup": { + "current": { + "number": "2.3.8", + "spec": "Federated Credential Management API", + "text": "Request permission to sign-up", + "url": "https://fedidcg.github.io/FedCM/#request-permission-signup" + } + }, "#rp-fingerprinting": { "current": { - "number": "6.3.6", + "number": "7.3.6", "spec": "Federated Credential Management API", "text": "RP Fingerprinting", "url": "https://fedidcg.github.io/FedCM/#rp-fingerprinting" @@ -281,7 +409,7 @@ }, "#sec-fetch-dest-header": { "current": { - "number": "5.2", + "number": "6.2", "spec": "Federated Credential Management API", "text": "Sec-Fetch-Dest Header", "url": "https://fedidcg.github.io/FedCM/#sec-fetch-dest-header" @@ -289,7 +417,7 @@ }, "#secondary-use": { "current": { - "number": "6.3.7", + "number": "7.3.7", "spec": "Federated Credential Management API", "text": "Secondary Use", "url": "https://fedidcg.github.io/FedCM/#secondary-use" @@ -297,7 +425,7 @@ }, "#security": { "current": { - "number": "5", + "number": "6", "spec": "Federated Credential Management API", "text": "Security", "url": "https://fedidcg.github.io/FedCM/#security" @@ -313,7 +441,7 @@ }, "#timing-attacks": { "current": { - "number": "6.3.2", + "number": "7.3.2", "spec": "Federated Credential Management API", "text": "Timing Attacks", "url": "https://fedidcg.github.io/FedCM/#timing-attacks" @@ -337,7 +465,7 @@ }, "#unauthorized-data-usage": { "current": { - "number": "6.3.5", + "number": "7.3.5", "spec": "Federated Credential Management API", "text": "Unauthorized Data Usage", "url": "https://fedidcg.github.io/FedCM/#unauthorized-data-usage" @@ -351,20 +479,84 @@ "url": "https://fedidcg.github.io/FedCM/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { + "#w3c-conventions": { "current": { "number": "", "spec": "Federated Credential Management API", - "text": "Conformant Algorithms", - "url": "https://fedidcg.github.io/FedCM/#w3c-conformant-algorithms" + "text": "Document conventions", + "url": "https://fedidcg.github.io/FedCM/#w3c-conventions" } }, - "#w3c-conventions": { + "#webdriver-accountlist": { "current": { - "number": "", + "number": "5.5", "spec": "Federated Credential Management API", - "text": "Document conventions", - "url": "https://fedidcg.github.io/FedCM/#w3c-conventions" + "text": "Account list", + "url": "https://fedidcg.github.io/FedCM/#webdriver-accountlist" + } + }, + "#webdriver-canceldialog": { + "current": { + "number": "5.2", + "spec": "Federated Credential Management API", + "text": "Cancel dialog", + "url": "https://fedidcg.github.io/FedCM/#webdriver-canceldialog" + } + }, + "#webdriver-capability": { + "current": { + "number": "5.1", + "spec": "Federated Credential Management API", + "text": "Extension capability", + "url": "https://fedidcg.github.io/FedCM/#webdriver-capability" + } + }, + "#webdriver-clickdialogbutton": { + "current": { + "number": "5.4", + "spec": "Federated Credential Management API", + "text": "Click dialog button", + "url": "https://fedidcg.github.io/FedCM/#webdriver-clickdialogbutton" + } + }, + "#webdriver-getdialogtype": { + "current": { + "number": "5.7", + "spec": "Federated Credential Management API", + "text": "Get dialog type", + "url": "https://fedidcg.github.io/FedCM/#webdriver-getdialogtype" + } + }, + "#webdriver-gettitle": { + "current": { + "number": "5.6", + "spec": "Federated Credential Management API", + "text": "Get title", + "url": "https://fedidcg.github.io/FedCM/#webdriver-gettitle" + } + }, + "#webdriver-resetcooldown": { + "current": { + "number": "5.9", + "spec": "Federated Credential Management API", + "text": "Reset cooldown", + "url": "https://fedidcg.github.io/FedCM/#webdriver-resetcooldown" + } + }, + "#webdriver-selectaccount": { + "current": { + "number": "5.3", + "spec": "Federated Credential Management API", + "text": "Select account", + "url": "https://fedidcg.github.io/FedCM/#webdriver-selectaccount" + } + }, + "#webdriver-setdelayenabled": { + "current": { + "number": "5.8", + "spec": "Federated Credential Management API", + "text": "Set delay enabled", + "url": "https://fedidcg.github.io/FedCM/#webdriver-setdelayenabled" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-fenced-frame.json b/bikeshed/spec-data/readonly/headings/headings-fenced-frame.json new file mode 100644 index 0000000000..bcdea09982 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-fenced-frame.json @@ -0,0 +1,434 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Abstract", + "url": "https://wicg.github.io/fenced-frame/#abstract" + } + }, + "#allow-automatic-beacons": { + "current": { + "number": "3.8.2", + "spec": "Fenced Frame", + "text": "The `Allow-Fenced-Frame-Automatic-Beacons` HTTP response header", + "url": "https://wicg.github.io/fenced-frame/#allow-automatic-beacons" + } + }, + "#allow-cross-origin-reporting": { + "current": { + "number": "3.8.3", + "spec": "Fenced Frame", + "text": "The `Allow-Cross-Origin-Event-Reporting` HTTP response header", + "url": "https://wicg.github.io/fenced-frame/#allow-cross-origin-reporting" + } + }, + "#automatic-reporting": { + "current": { + "number": "2.6", + "spec": "Fenced Frame", + "text": "Automatic Reporting", + "url": "https://wicg.github.io/fenced-frame/#automatic-reporting" + } + }, + "#bcg-swap": { + "current": { + "number": "3.8.6", + "spec": "Fenced Frame", + "text": "Browsing context group swap", + "url": "https://wicg.github.io/fenced-frame/#bcg-swap" + } + }, + "#coop-coep": { + "current": { + "number": "3.8.4", + "spec": "Fenced Frame", + "text": "COOP, COEP, and cross-origin isolation", + "url": "https://wicg.github.io/fenced-frame/#coop-coep" + } + }, + "#creating-browsing-contexts-patch": { + "current": { + "number": "3.3", + "spec": "Fenced Frame", + "text": "Modifications to creating browsing contexts", + "url": "https://wicg.github.io/fenced-frame/#creating-browsing-contexts-patch" + } + }, + "#csp-algorithms": { + "current": { + "number": "4.2.1", + "spec": "Fenced Frame", + "text": "Algorithms", + "url": "https://wicg.github.io/fenced-frame/#csp-algorithms" + } + }, + "#csp-integration": { + "current": { + "number": "4.2", + "spec": "Fenced Frame", + "text": "Content Security Policy", + "url": "https://wicg.github.io/fenced-frame/#csp-integration" + } + }, + "#cssom-monkeypatch": { + "current": { + "number": "4.4", + "spec": "Fenced Frame", + "text": "CSSOM View", + "url": "https://wicg.github.io/fenced-frame/#cssom-monkeypatch" + } + }, + "#dimension-attributes": { + "current": { + "number": "2.1", + "spec": "Fenced Frame", + "text": "Dimension attributes", + "url": "https://wicg.github.io/fenced-frame/#dimension-attributes" + } + }, + "#document-extension": { + "current": { + "number": "3.2", + "spec": "Fenced Frame", + "text": "Document supporting concepts", + "url": "https://wicg.github.io/fenced-frame/#document-extension" + } + }, + "#fence-interface": { + "current": { + "number": "2.4", + "spec": "Fenced Frame", + "text": "The Fence interface", + "url": "https://wicg.github.io/fenced-frame/#fence-interface" + } + }, + "#fenced-frame-config-instance-struct": { + "current": { + "number": "2.3.4", + "spec": "Fenced Frame", + "text": "The fenced frame config instance struct", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-struct" + } + }, + "#fenced-frame-config-interface": { + "current": { + "number": "2.3.5", + "spec": "Fenced Frame", + "text": "The FencedFrameConfig interface", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-interface" + } + }, + "#fenced-frame-config-intro": { + "current": { + "number": "2.3.1", + "spec": "Fenced Frame", + "text": "Introduction", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-intro" + } + }, + "#fenced-frame-config-map": { + "current": { + "number": "2.2", + "spec": "Fenced Frame", + "text": "Fenced frame config mapping", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-map" + } + }, + "#fenced-frame-config-section": { + "current": { + "number": "2.3", + "spec": "Fenced Frame", + "text": "Fenced frame configs", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-section" + } + }, + "#fenced-frame-config-struct": { + "current": { + "number": "2.3.3", + "spec": "Fenced Frame", + "text": "The fenced frame config struct", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-struct" + } + }, + "#fenced-frame-config-use-cases": { + "current": { + "number": "2.3.2", + "spec": "Fenced Frame", + "text": "Use cases", + "url": "https://wicg.github.io/fenced-frame/#fenced-frame-config-use-cases" + } + }, + "#focusing-changes": { + "current": { + "number": "3.7", + "spec": "Fenced Frame", + "text": "Modifications to the focusing algorithms", + "url": "https://wicg.github.io/fenced-frame/#focusing-changes" + } + }, + "#html-integration": { + "current": { + "number": "3", + "spec": "Fenced Frame", + "text": "HTML Integration", + "url": "https://wicg.github.io/fenced-frame/#html-integration" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "IDL Index", + "url": "https://wicg.github.io/fenced-frame/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Index", + "url": "https://wicg.github.io/fenced-frame/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/fenced-frame/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/fenced-frame/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Informative References", + "url": "https://wicg.github.io/fenced-frame/#informative" + } + }, + "#interaction-with-other-specs": { + "current": { + "number": "4", + "spec": "Fenced Frame", + "text": "Interactions with other specifications", + "url": "https://wicg.github.io/fenced-frame/#interaction-with-other-specs" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Fenced Frame", + "text": "Introduction", + "url": "https://wicg.github.io/fenced-frame/#introduction" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Issues Index", + "url": "https://wicg.github.io/fenced-frame/#issues-index" + } + }, + "#local-scheme-policy-container-inheritance": { + "current": { + "number": "3.4", + "spec": "Fenced Frame", + "text": "Policy container inheritance", + "url": "https://wicg.github.io/fenced-frame/#local-scheme-policy-container-inheritance" + } + }, + "#navigable-traversing-algorithms": { + "current": { + "number": "3.6", + "spec": "Fenced Frame", + "text": "Modifications to navigable-traversing algorithms", + "url": "https://wicg.github.io/fenced-frame/#navigable-traversing-algorithms" + } + }, + "#navigation-changes": { + "current": { + "number": "3.8.5", + "spec": "Fenced Frame", + "text": "Actual navigation changes", + "url": "https://wicg.github.io/fenced-frame/#navigation-changes" + } + }, + "#navigation-patch": { + "current": { + "number": "3.8", + "spec": "Fenced Frame", + "text": "Navigation", + "url": "https://wicg.github.io/fenced-frame/#navigation-patch" + } + }, + "#nested-traversables": { + "current": { + "number": "3.5", + "spec": "Fenced Frame", + "text": "Nested traversables", + "url": "https://wicg.github.io/fenced-frame/#nested-traversables" + } + }, + "#nested-traversables-inner": { + "current": { + "number": "3.5.3", + "spec": "Fenced Frame", + "text": "Nested traversables", + "url": "https://wicg.github.io/fenced-frame/#nested-traversables-inner" + } + }, + "#nested-traversables-intro": { + "current": { + "number": "3.5.1", + "spec": "Fenced Frame", + "text": "Introduction", + "url": "https://wicg.github.io/fenced-frame/#nested-traversables-intro" + } + }, + "#new-csp-directive": { + "current": { + "number": "4.2.2", + "spec": "Fenced Frame", + "text": "New fenced-frame-src [CSP] directive", + "url": "https://wicg.github.io/fenced-frame/#new-csp-directive" + } + }, + "#new-request-destination": { + "current": { + "number": "2.5", + "spec": "Fenced Frame", + "text": "New request destination", + "url": "https://wicg.github.io/fenced-frame/#new-request-destination" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Normative References", + "url": "https://wicg.github.io/fenced-frame/#normative" + } + }, + "#page-visibility": { + "current": { + "number": "3.9", + "spec": "Fenced Frame", + "text": "Page visibility", + "url": "https://wicg.github.io/fenced-frame/#page-visibility" + } + }, + "#permissions-policy-changes": { + "current": { + "number": "4.3", + "spec": "Fenced Frame", + "text": "Permissions Policies", + "url": "https://wicg.github.io/fenced-frame/#permissions-policy-changes" + } + }, + "#permissions-policy-patches": { + "current": { + "number": "4.3.1", + "spec": "Fenced Frame", + "text": "Algorithm patches", + "url": "https://wicg.github.io/fenced-frame/#permissions-policy-patches" + } + }, + "#prerendering-monkeypatch": { + "current": { + "number": "4.1", + "spec": "Fenced Frame", + "text": "Prerendering", + "url": "https://wicg.github.io/fenced-frame/#prerendering-monkeypatch" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "References", + "url": "https://wicg.github.io/fenced-frame/#references" + } + }, + "#security-and-privacy": { + "current": { + "number": "5", + "spec": "Fenced Frame", + "text": "Security & Privacy Considerations", + "url": "https://wicg.github.io/fenced-frame/#security-and-privacy" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Status of this document", + "url": "https://wicg.github.io/fenced-frame/#status" + } + }, + "#supports-loading-mode": { + "current": { + "number": "3.8.1", + "spec": "Fenced Frame", + "text": "The `Supports-Loading-Mode` HTTP response header", + "url": "https://wicg.github.io/fenced-frame/#supports-loading-mode" + } + }, + "#the-fencedframe-element": { + "current": { + "number": "2", + "spec": "Fenced Frame", + "text": "The fencedframe element", + "url": "https://wicg.github.io/fenced-frame/#the-fencedframe-element" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Fenced Frame", + "url": "https://wicg.github.io/fenced-frame/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Fenced Frame", + "text": "Table of Contents", + "url": "https://wicg.github.io/fenced-frame/#toc" + } + }, + "#top-level-traversables": { + "current": { + "number": "3.5.4", + "spec": "Fenced Frame", + "text": "Top-level traversables", + "url": "https://wicg.github.io/fenced-frame/#top-level-traversables" + } + }, + "#traversable-navigables": { + "current": { + "number": "3.5.2", + "spec": "Fenced Frame", + "text": "Traversable navigables", + "url": "https://wicg.github.io/fenced-frame/#traversable-navigables" + } + }, + "#window-extension": { + "current": { + "number": "3.1", + "spec": "Fenced Frame", + "text": "Extensions to the Window interface", + "url": "https://wicg.github.io/fenced-frame/#window-extension" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-fetch-metadata.json b/bikeshed/spec-data/readonly/headings/headings-fetch-metadata.json index 3a8d4ce077..10a908442e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fetch-metadata.json +++ b/bikeshed/spec-data/readonly/headings/headings-fetch-metadata.json @@ -41,48 +41,6 @@ "url": "https://www.w3.org/TR/fetch-metadata/#bloat" } }, - "#conformance": { - "current": { - "number": "", - "spec": "Fetch Metadata", - "text": "Conformance", - "url": "https://w3c.github.io/webappsec-fetch-metadata/#conformance" - }, - "snapshot": { - "number": "", - "spec": "Fetch Metadata", - "text": "Conformance", - "url": "https://www.w3.org/TR/fetch-metadata/#conformance" - } - }, - "#conformant-algorithms": { - "current": { - "number": "", - "spec": "Fetch Metadata", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webappsec-fetch-metadata/#conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Fetch Metadata", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/fetch-metadata/#conformant-algorithms" - } - }, - "#conventions": { - "current": { - "number": "", - "spec": "Fetch Metadata", - "text": "Document conventions", - "url": "https://w3c.github.io/webappsec-fetch-metadata/#conventions" - }, - "snapshot": { - "number": "", - "spec": "Fetch Metadata", - "text": "Document conventions", - "url": "https://www.w3.org/TR/fetch-metadata/#conventions" - } - }, "#deployment-considerations": { "current": { "number": "5", @@ -131,6 +89,12 @@ "spec": "Fetch Metadata", "text": "Extension-Initiated Requests", "url": "https://w3c.github.io/webappsec-fetch-metadata/#extension-initiated" + }, + "snapshot": { + "number": "4.4", + "spec": "Fetch Metadata", + "text": "Extension-Initiated Requests", + "url": "https://www.w3.org/TR/fetch-metadata/#extension-initiated" } }, "#fetch-integration": { @@ -259,20 +223,6 @@ "url": "https://www.w3.org/TR/fetch-metadata/#normative" } }, - "#profile-and-date": { - "current": { - "number": "", - "spec": "Fetch Metadata", - "text": "W3C Working Draft, 20 July 2021", - "url": "https://w3c.github.io/webappsec-fetch-metadata/#profile-and-date" - }, - "snapshot": { - "number": "", - "spec": "Fetch Metadata", - "text": "W3C Working Draft, 20 July 2021", - "url": "https://www.w3.org/TR/fetch-metadata/#profile-and-date" - } - }, "#redirects": { "current": { "number": "4.1", @@ -441,18 +391,18 @@ "url": "https://www.w3.org/TR/fetch-metadata/#sec-priv-considerations" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Fetch Metadata", "text": "Status of this document", - "url": "https://w3c.github.io/webappsec-fetch-metadata/#status" + "url": "https://w3c.github.io/webappsec-fetch-metadata/#sotd" }, "snapshot": { "number": "", "spec": "Fetch Metadata", "text": "Status of this document", - "url": "https://www.w3.org/TR/fetch-metadata/#status" + "url": "https://www.w3.org/TR/fetch-metadata/#sotd" } }, "#title": { @@ -496,5 +446,47 @@ "text": "Vary", "url": "https://www.w3.org/TR/fetch-metadata/#vary" } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Fetch Metadata", + "text": "Conformance", + "url": "https://w3c.github.io/webappsec-fetch-metadata/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Fetch Metadata", + "text": "Conformance", + "url": "https://www.w3.org/TR/fetch-metadata/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Fetch Metadata", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/webappsec-fetch-metadata/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Fetch Metadata", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/fetch-metadata/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Fetch Metadata", + "text": "Document conventions", + "url": "https://w3c.github.io/webappsec-fetch-metadata/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Fetch Metadata", + "text": "Document conventions", + "url": "https://www.w3.org/TR/fetch-metadata/#w3c-conventions" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-fetch.json b/bikeshed/spec-data/readonly/headings/headings-fetch.json index 4f75bb4317..f6b5a1808a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fetch.json +++ b/bikeshed/spec-data/readonly/headings/headings-fetch.json @@ -187,10 +187,26 @@ "current": { "number": "", "spec": "Fetch", - "text": "Invoking fetch", + "text": "Invoking fetch and processing responses", "url": "https://fetch.spec.whatwg.org/#fetch-elsewhere-fetch" } }, + "#fetch-elsewhere-ongoing": { + "current": { + "number": "", + "spec": "Fetch", + "text": "Manipulating an ongoing fetch", + "url": "https://fetch.spec.whatwg.org/#fetch-elsewhere-ongoing" + } + }, + "#fetch-elsewhere-request": { + "current": { + "number": "", + "spec": "Fetch", + "text": "Setting up a request", + "url": "https://fetch.spec.whatwg.org/#fetch-elsewhere-request" + } + }, "#fetch-groups": { "current": { "number": "2.4", @@ -527,20 +543,20 @@ "url": "https://fetch.spec.whatwg.org/#sec-purpose-header" } }, - "#should-response-to-request-be-blocked-due-to-mime-type?": { + "#should-response-to-request-be-blocked-due-to-mime-type%3F": { "current": { "number": "2.10", "spec": "Fetch", "text": "Should response to request be blocked due to its MIME type?", - "url": "https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-mime-type?" + "url": "https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-mime-type%3F" } }, - "#should-response-to-request-be-blocked-due-to-nosniff?": { + "#should-response-to-request-be-blocked-due-to-nosniff%3F": { "current": { "number": "3.5.1", "spec": "Fetch", "text": "Should response to request be blocked due to nosniff?", - "url": "https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff?" + "url": "https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff%3F" } }, "#statuses": { diff --git a/bikeshed/spec-data/readonly/headings/headings-file-system-access.json b/bikeshed/spec-data/readonly/headings/headings-file-system-access.json index 8026e4d755..f9553d4cde 100644 --- a/bikeshed/spec-data/readonly/headings/headings-file-system-access.json +++ b/bikeshed/spec-data/readonly/headings/headings-file-system-access.json @@ -303,14 +303,6 @@ "url": "https://wicg.github.io/file-system-access/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "File System Access", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/file-system-access/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-fileapi.json b/bikeshed/spec-data/readonly/headings/headings-fileapi.json index af7259c878..5133fbac33 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fileapi.json +++ b/bikeshed/spec-data/readonly/headings/headings-fileapi.json @@ -167,6 +167,20 @@ "url": "https://www.w3.org/TR/FileAPI/#blobreader-task-source" } }, + "#bytes-method-algo": { + "current": { + "number": "3.3.5", + "spec": "File API", + "text": "The bytes() method", + "url": "https://w3c.github.io/FileAPI/#bytes-method-algo" + }, + "snapshot": { + "number": "3.3.5", + "spec": "File API", + "text": "The bytes() method", + "url": "https://www.w3.org/TR/FileAPI/#bytes-method-algo" + } + }, "#constructorBlob": { "current": { "number": "3.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-fill-stroke-3.json b/bikeshed/spec-data/readonly/headings/headings-fill-stroke-3.json index 2fdd06ce54..28085d656a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fill-stroke-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-fill-stroke-3.json @@ -523,13 +523,15 @@ "url": "https://www.w3.org/TR/fill-stroke-3/#references" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "CSS Fill and Stroke 3", "text": "Status of this document", - "url": "https://drafts.fxtf.org/fill-stroke-3/#status" - }, + "url": "https://drafts.fxtf.org/fill-stroke-3/#sotd" + } + }, + "#status": { "snapshot": { "number": "", "spec": "CSS Fill and Stroke 3", diff --git a/bikeshed/spec-data/readonly/headings/headings-filter-effects-1.json b/bikeshed/spec-data/readonly/headings/headings-filter-effects-1.json index dbea265981..caf6751615 100644 --- a/bikeshed/spec-data/readonly/headings/headings-filter-effects-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-filter-effects-1.json @@ -1,15 +1,15 @@ { "#AccessBackgroundImage": { "current": { - "number": "", + "number": "A", "spec": "Filter Effects 1", - "text": "Appendix A: The deprecated enable-background property", + "text": "The deprecated enable-background property", "url": "https://drafts.fxtf.org/filter-effects-1/#AccessBackgroundImage" }, "snapshot": { - "number": "", + "number": "A", "spec": "Filter Effects 1", - "text": "Appendix A: The deprecated enable-background property", + "text": "The deprecated enable-background property", "url": "https://www.w3.org/TR/filter-effects-1/#AccessBackgroundImage" } }, @@ -43,15 +43,15 @@ }, "#DOMInterfaces": { "current": { - "number": "", + "number": "B", "spec": "Filter Effects 1", - "text": "Appendix B: DOM interfaces", + "text": "DOM interfaces", "url": "https://drafts.fxtf.org/filter-effects-1/#DOMInterfaces" }, "snapshot": { - "number": "", + "number": "B", "spec": "Filter Effects 1", - "text": "Appendix B: DOM interfaces", + "text": "DOM interfaces", "url": "https://www.w3.org/TR/filter-effects-1/#DOMInterfaces" } }, @@ -1595,13 +1595,15 @@ "url": "https://www.w3.org/TR/filter-effects-1/#serialization-of-filter-functions" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Filter Effects 1", "text": "Status of this document", - "url": "https://drafts.fxtf.org/filter-effects-1/#status" - }, + "url": "https://drafts.fxtf.org/filter-effects-1/#sotd" + } + }, + "#status": { "snapshot": { "number": "", "spec": "Filter Effects 1", @@ -1669,7 +1671,7 @@ "snapshot": { "number": "", "spec": "Filter Effects 1", - "text": "92 TestsFilter Effects Module Level 1", + "text": "Filter Effects Module Level 1", "url": "https://www.w3.org/TR/filter-effects-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-filter-effects-2.json b/bikeshed/spec-data/readonly/headings/headings-filter-effects-2.json index befaa7f8cc..a0da1277fa 100644 --- a/bikeshed/spec-data/readonly/headings/headings-filter-effects-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-filter-effects-2.json @@ -135,12 +135,12 @@ "url": "https://drafts.fxtf.org/filter-effects-2/#references" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Filter Effects 2", "text": "Status of this document", - "url": "https://drafts.fxtf.org/filter-effects-2/#status" + "url": "https://drafts.fxtf.org/filter-effects-2/#sotd" } }, "#toc": { diff --git a/bikeshed/spec-data/readonly/headings/headings-first-party-sets.json b/bikeshed/spec-data/readonly/headings/headings-first-party-sets.json index a590d7c182..4237c46ce2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-first-party-sets.json +++ b/bikeshed/spec-data/readonly/headings/headings-first-party-sets.json @@ -2,7 +2,7 @@ "#abstract": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Abstract", "url": "https://wicg.github.io/first-party-sets/#abstract" } @@ -10,7 +10,7 @@ "#acknowledgements": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Acknowledgements", "url": "https://wicg.github.io/first-party-sets/#acknowledgements" } @@ -18,7 +18,7 @@ "#avoid-weakening-boundaries": { "current": { "number": "9.1", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Avoid weakening new and existing security boundaries", "url": "https://wicg.github.io/first-party-sets/#avoid-weakening-boundaries" } @@ -26,7 +26,7 @@ "#data-structures": { "current": { "number": "4", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Data Structures", "url": "https://wicg.github.io/first-party-sets/#data-structures" } @@ -34,23 +34,23 @@ "#ensure-compatibility": { "current": { "number": "8.2", - "spec": "User Agent Interaction with First-Party Sets", - "text": "Ensure compatibility with non-FPS environments", + "spec": "User Agent Interaction with Related Website Sets", + "text": "Ensure compatibility with non-RWS environments", "url": "https://wicg.github.io/first-party-sets/#ensure-compatibility" } }, "#handling-changes": { "current": { "number": "7", - "spec": "User Agent Interaction with First-Party Sets", - "text": "Handling first-party set changes", + "spec": "User Agent Interaction with Related Website Sets", + "text": "Handling related website set changes", "url": "https://wicg.github.io/first-party-sets/#handling-changes" } }, "#index": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Index", "url": "https://wicg.github.io/first-party-sets/#index" } @@ -58,7 +58,7 @@ "#index-defined-elsewhere": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Terms defined by reference", "url": "https://wicg.github.io/first-party-sets/#index-defined-elsewhere" } @@ -66,7 +66,7 @@ "#index-defined-here": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Terms defined by this specification", "url": "https://wicg.github.io/first-party-sets/#index-defined-here" } @@ -74,7 +74,7 @@ "#informative": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Informative References", "url": "https://wicg.github.io/first-party-sets/#informative" } @@ -82,7 +82,7 @@ "#infra": { "current": { "number": "2", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Infrastructure", "url": "https://wicg.github.io/first-party-sets/#infra" } @@ -90,7 +90,7 @@ "#intro": { "current": { "number": "1", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Introduction", "url": "https://wicg.github.io/first-party-sets/#intro" } @@ -98,7 +98,7 @@ "#issues-index": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Issues Index", "url": "https://wicg.github.io/first-party-sets/#issues-index" } @@ -106,7 +106,7 @@ "#list-consumption": { "current": { "number": "3", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "List consumption", "url": "https://wicg.github.io/first-party-sets/#list-consumption" } @@ -114,7 +114,7 @@ "#normative": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Normative References", "url": "https://wicg.github.io/first-party-sets/#normative" } @@ -122,7 +122,7 @@ "#prevent-leaks": { "current": { "number": "8.3", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Prevent privacy leaks from list changes", "url": "https://wicg.github.io/first-party-sets/#prevent-leaks" } @@ -130,7 +130,7 @@ "#privacy-consideration": { "current": { "number": "8", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Privacy Considerations", "url": "https://wicg.github.io/first-party-sets/#privacy-consideration" } @@ -138,7 +138,7 @@ "#provide-transparency": { "current": { "number": "8.1", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Provide user transparency and control", "url": "https://wicg.github.io/first-party-sets/#provide-transparency" } @@ -146,7 +146,7 @@ "#references": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "References", "url": "https://wicg.github.io/first-party-sets/#references" } @@ -154,7 +154,7 @@ "#security-considerations": { "current": { "number": "9", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Security Considerations", "url": "https://wicg.github.io/first-party-sets/#security-considerations" } @@ -162,7 +162,7 @@ "#status": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Status of this document", "url": "https://wicg.github.io/first-party-sets/#status" } @@ -170,7 +170,7 @@ "#storage-access-integration": { "current": { "number": "6", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Integration with the Storage Access API", "url": "https://wicg.github.io/first-party-sets/#storage-access-integration" } @@ -178,15 +178,15 @@ "#title": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", - "text": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", + "text": "User Agent Interaction with Related Website Sets", "url": "https://wicg.github.io/first-party-sets/#title" } }, "#toc": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Table of Contents", "url": "https://wicg.github.io/first-party-sets/#toc" } @@ -194,31 +194,23 @@ "#validating-inclusion": { "current": { "number": "5", - "spec": "User Agent Interaction with First-Party Sets", - "text": "Validating first-party set inclusion", + "spec": "User Agent Interaction with Related Website Sets", + "text": "Validating related website set inclusion", "url": "https://wicg.github.io/first-party-sets/#validating-inclusion" } }, "#w3c-conformance": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Conformance", "url": "https://wicg.github.io/first-party-sets/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "User Agent Interaction with First-Party Sets", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/first-party-sets/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", - "spec": "User Agent Interaction with First-Party Sets", + "spec": "User Agent Interaction with Related Website Sets", "text": "Document conventions", "url": "https://wicg.github.io/first-party-sets/#w3c-conventions" } diff --git a/bikeshed/spec-data/readonly/headings/headings-fs.json b/bikeshed/spec-data/readonly/headings/headings-fs.json index 8a75b974db..cb9da9020b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fs.json +++ b/bikeshed/spec-data/readonly/headings/headings-fs.json @@ -283,7 +283,7 @@ "current": { "number": "3", "spec": "File System", - "text": "Accessing the Origin Private File System", + "text": "Accessing the Bucket File System", "url": "https://fs.spec.whatwg.org/#sandboxed-filesystem" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-fullscreen.json b/bikeshed/spec-data/readonly/headings/headings-fullscreen.json index 5d3568beb1..d307533b74 100644 --- a/bikeshed/spec-data/readonly/headings/headings-fullscreen.json +++ b/bikeshed/spec-data/readonly/headings/headings-fullscreen.json @@ -1,18 +1,10 @@ { - "#::backdrop-pseudo-element": { + "#%3Afullscreen-pseudo-class": { "current": { - "number": "5.2", - "spec": "Fullscreen API", - "text": "::backdrop pseudo-element", - "url": "https://fullscreen.spec.whatwg.org/#::backdrop-pseudo-element" - } - }, - "#:fullscreen-pseudo-class": { - "current": { - "number": "5.3", + "number": "5.1", "spec": "Fullscreen API", "text": ":fullscreen pseudo-class", - "url": "https://fullscreen.spec.whatwg.org/#:fullscreen-pseudo-class" + "url": "https://fullscreen.spec.whatwg.org/#%3Afullscreen-pseudo-class" } }, "#abstract": { @@ -87,20 +79,20 @@ "url": "https://fullscreen.spec.whatwg.org/#model" } }, - "#new-stacking-layer": { + "#normative": { "current": { - "number": "5.1", + "number": "", "spec": "Fullscreen API", - "text": "New stacking layer", - "url": "https://fullscreen.spec.whatwg.org/#new-stacking-layer" + "text": "Normative References", + "url": "https://fullscreen.spec.whatwg.org/#normative" } }, - "#normative": { + "#old-links": { "current": { "number": "", "spec": "Fullscreen API", - "text": "Normative References", - "url": "https://fullscreen.spec.whatwg.org/#normative" + "text": "Previously-hosted definitions", + "url": "https://fullscreen.spec.whatwg.org/#old-links" } }, "#permissions-policy-integration": { @@ -169,7 +161,7 @@ }, "#user-agent-level-style-sheet-defaults": { "current": { - "number": "5.4", + "number": "5.2", "spec": "Fullscreen API", "text": "User-agent level style sheet defaults", "url": "https://fullscreen.spec.whatwg.org/#user-agent-level-style-sheet-defaults" diff --git a/bikeshed/spec-data/readonly/headings/headings-gamepad-extensions.json b/bikeshed/spec-data/readonly/headings/headings-gamepad-extensions.json index fab69c7a6f..daa0e67122 100644 --- a/bikeshed/spec-data/readonly/headings/headings-gamepad-extensions.json +++ b/bikeshed/spec-data/readonly/headings/headings-gamepad-extensions.json @@ -7,12 +7,12 @@ "url": "https://w3c.github.io/gamepad/extensions.html#conformance" } }, - "#gamepadeffectparameters-dictionary": { + "#constructing-a-gamepad": { "current": { - "number": "4.4", + "number": "6.2", "spec": "Gamepad Extensions", - "text": "GamepadEffectParameters Dictionary", - "url": "https://w3c.github.io/gamepad/extensions.html#gamepadeffectparameters-dictionary" + "text": "Constructing a Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#constructing-a-gamepad" } }, "#gamepadhand-enum": { @@ -23,41 +23,9 @@ "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhand-enum" } }, - "#gamepadhapticactuator-interface": { - "current": { - "number": "4", - "spec": "Gamepad Extensions", - "text": "GamepadHapticActuator Interface", - "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticactuator-interface" - } - }, - "#gamepadhapticactuatortype-enum": { - "current": { - "number": "4.2", - "spec": "Gamepad Extensions", - "text": "GamepadHapticActuatorType Enum", - "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticactuatortype-enum" - } - }, - "#gamepadhapticeffecttype-enum": { - "current": { - "number": "4.3", - "spec": "Gamepad Extensions", - "text": "GamepadHapticEffectType Enum", - "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticeffecttype-enum" - } - }, - "#gamepadhapticsresult-enum": { - "current": { - "number": "4.1", - "spec": "Gamepad Extensions", - "text": "GamepadHapticsResult Enum", - "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticsresult-enum" - } - }, "#gamepadpose-interface": { "current": { - "number": "5", + "number": "4", "spec": "Gamepad Extensions", "text": "GamepadPose Interface", "url": "https://w3c.github.io/gamepad/extensions.html#gamepadpose-interface" @@ -65,12 +33,20 @@ }, "#gamepadtouch-interface": { "current": { - "number": "6", + "number": "5", "spec": "Gamepad Extensions", "text": "GamepadTouch Interface", "url": "https://w3c.github.io/gamepad/extensions.html#gamepadtouch-interface" } }, + "#glossary": { + "current": { + "number": "8", + "spec": "Gamepad Extensions", + "text": "Glossary", + "url": "https://w3c.github.io/gamepad/extensions.html#glossary" + } + }, "#introduction": { "current": { "number": "1", @@ -89,12 +65,28 @@ }, "#partial-gamepad-interface": { "current": { - "number": "7", + "number": "6", "spec": "Gamepad Extensions", "text": "Partial Gamepad Interface", "url": "https://w3c.github.io/gamepad/extensions.html#partial-gamepad-interface" } }, + "#partial-gamepadhapticactuator-interface": { + "current": { + "number": "7", + "spec": "Gamepad Extensions", + "text": "Partial GamepadHapticActuator Interface", + "url": "https://w3c.github.io/gamepad/extensions.html#partial-gamepadhapticactuator-interface" + } + }, + "#receiving-inputs": { + "current": { + "number": "6.1", + "spec": "Gamepad Extensions", + "text": "Receiving inputs", + "url": "https://w3c.github.io/gamepad/extensions.html#receiving-inputs" + } + }, "#references": { "current": { "number": "A", diff --git a/bikeshed/spec-data/readonly/headings/headings-gamepad.json b/bikeshed/spec-data/readonly/headings/headings-gamepad.json index 48f84fab92..d9b9eff31c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-gamepad.json +++ b/bikeshed/spec-data/readonly/headings/headings-gamepad.json @@ -17,13 +17,13 @@ "current": { "number": "", "spec": "Gamepad", - "text": "15. Conformance", + "text": "19. Conformance", "url": "https://w3c.github.io/gamepad/#conformance" }, "snapshot": { "number": "", "spec": "Gamepad", - "text": "15. Conformance", + "text": "19. Conformance", "url": "https://www.w3.org/TR/gamepad/#conformance" } }, @@ -41,17 +41,31 @@ "url": "https://www.w3.org/TR/gamepad/#constructing-a-gamepad" } }, + "#constructing-a-gamepadhapticactuator": { + "current": { + "number": "6.2", + "spec": "Gamepad", + "text": "Constructing a GamepadHapticActuator", + "url": "https://w3c.github.io/gamepad/#constructing-a-gamepadhapticactuator" + }, + "snapshot": { + "number": "6.2", + "spec": "Gamepad", + "text": "Constructing a GamepadHapticActuator", + "url": "https://www.w3.org/TR/gamepad/#constructing-a-gamepadhapticactuator" + } + }, "#extensions-to-the-navigator-interface": { "current": { - "number": "6", + "number": "", "spec": "Gamepad", - "text": "Extensions to the Navigator interface", + "text": "10. Extensions to the Navigator interface", "url": "https://w3c.github.io/gamepad/#extensions-to-the-navigator-interface" }, "snapshot": { - "number": "6", + "number": "", "spec": "Gamepad", - "text": "Extensions to the Navigator interface", + "text": "10. Extensions to the Navigator interface", "url": "https://www.w3.org/TR/gamepad/#extensions-to-the-navigator-interface" } }, @@ -59,25 +73,25 @@ "current": { "number": "", "spec": "Gamepad", - "text": "13. Extensions to the WindowEventHandlers Interface Mixin", + "text": "17. Extensions to the WindowEventHandlers Interface Mixin", "url": "https://w3c.github.io/gamepad/#extensions-to-the-windoweventhandlers-interface-mixin" }, "snapshot": { "number": "", "spec": "Gamepad", - "text": "13. Extensions to the WindowEventHandlers Interface Mixin", + "text": "17. Extensions to the WindowEventHandlers Interface Mixin", "url": "https://www.w3.org/TR/gamepad/#extensions-to-the-windoweventhandlers-interface-mixin" } }, "#fingerprinting-mitigation": { "current": { - "number": "8.1", + "number": "12.1", "spec": "Gamepad", "text": "Fingerprinting mitigation", "url": "https://w3c.github.io/gamepad/#fingerprinting-mitigation" }, "snapshot": { - "number": "8.1", + "number": "12.1", "spec": "Gamepad", "text": "Fingerprinting mitigation", "url": "https://www.w3.org/TR/gamepad/#fingerprinting-mitigation" @@ -111,34 +125,90 @@ "url": "https://www.w3.org/TR/gamepad/#gamepadbutton-interface" } }, + "#gamepadeffectparameters-dictionary": { + "current": { + "number": "9", + "spec": "Gamepad", + "text": "GamepadEffectParameters Dictionary", + "url": "https://w3c.github.io/gamepad/#gamepadeffectparameters-dictionary" + }, + "snapshot": { + "number": "9", + "spec": "Gamepad", + "text": "GamepadEffectParameters Dictionary", + "url": "https://www.w3.org/TR/gamepad/#gamepadeffectparameters-dictionary" + } + }, "#gamepadevent-interface": { "current": { - "number": "7", + "number": "", "spec": "Gamepad", - "text": "GamepadEvent Interface", + "text": "11. GamepadEvent Interface", "url": "https://w3c.github.io/gamepad/#gamepadevent-interface" }, "snapshot": { - "number": "7", + "number": "", "spec": "Gamepad", - "text": "GamepadEvent Interface", + "text": "11. GamepadEvent Interface", "url": "https://www.w3.org/TR/gamepad/#gamepadevent-interface" } }, "#gamepadeventinit-dictionary": { "current": { - "number": "7.1", + "number": "11.1", "spec": "Gamepad", "text": "GamepadEventInit dictionary", "url": "https://w3c.github.io/gamepad/#gamepadeventinit-dictionary" }, "snapshot": { - "number": "7.1", + "number": "11.1", "spec": "Gamepad", "text": "GamepadEventInit dictionary", "url": "https://www.w3.org/TR/gamepad/#gamepadeventinit-dictionary" } }, + "#gamepadhapticactuator-interface": { + "current": { + "number": "6", + "spec": "Gamepad", + "text": "GamepadHapticActuator Interface", + "url": "https://w3c.github.io/gamepad/#gamepadhapticactuator-interface" + }, + "snapshot": { + "number": "6", + "spec": "Gamepad", + "text": "GamepadHapticActuator Interface", + "url": "https://www.w3.org/TR/gamepad/#gamepadhapticactuator-interface" + } + }, + "#gamepadhapticeffecttype-enum": { + "current": { + "number": "8", + "spec": "Gamepad", + "text": "GamepadHapticEffectType enum", + "url": "https://w3c.github.io/gamepad/#gamepadhapticeffecttype-enum" + }, + "snapshot": { + "number": "8", + "spec": "Gamepad", + "text": "GamepadHapticEffectType enum", + "url": "https://www.w3.org/TR/gamepad/#gamepadhapticeffecttype-enum" + } + }, + "#gamepadhapticsresult-enum": { + "current": { + "number": "7", + "spec": "Gamepad", + "text": "GamepadHapticsResult Enum", + "url": "https://w3c.github.io/gamepad/#gamepadhapticsresult-enum" + }, + "snapshot": { + "number": "7", + "spec": "Gamepad", + "text": "GamepadHapticsResult Enum", + "url": "https://www.w3.org/TR/gamepad/#gamepadhapticsresult-enum" + } + }, "#gamepadmappingtype-enum": { "current": { "number": "5", @@ -155,18 +225,32 @@ }, "#getgamepads-method": { "current": { - "number": "6.1", + "number": "10.1", "spec": "Gamepad", "text": "getGamepads() method", "url": "https://w3c.github.io/gamepad/#getgamepads-method" }, "snapshot": { - "number": "6.1", + "number": "10.1", "spec": "Gamepad", "text": "getGamepads() method", "url": "https://www.w3.org/TR/gamepad/#getgamepads-method" } }, + "#handling-visibility-change": { + "current": { + "number": "6.1", + "spec": "Gamepad", + "text": "Handling visibility change", + "url": "https://w3c.github.io/gamepad/#handling-visibility-change" + }, + "snapshot": { + "number": "6.1", + "spec": "Gamepad", + "text": "Handling visibility change", + "url": "https://www.w3.org/TR/gamepad/#handling-visibility-change" + } + }, "#introduction": { "current": { "number": "1", @@ -199,13 +283,13 @@ "current": { "number": "", "spec": "Gamepad", - "text": "12. Other events", + "text": "16. Other events", "url": "https://w3c.github.io/gamepad/#other-events" }, "snapshot": { "number": "", "spec": "Gamepad", - "text": "12. Other events", + "text": "16. Other events", "url": "https://www.w3.org/TR/gamepad/#other-events" } }, @@ -213,13 +297,13 @@ "current": { "number": "", "spec": "Gamepad", - "text": "14. Integration with Permissions Policy", + "text": "18. Integration with Permissions Policy", "url": "https://w3c.github.io/gamepad/#permission-policy" }, "snapshot": { "number": "", "spec": "Gamepad", - "text": "14. Integration with Permissions Policy", + "text": "18. Integration with Permissions Policy", "url": "https://www.w3.org/TR/gamepad/#permission-policy" } }, @@ -253,15 +337,15 @@ }, "#remapping": { "current": { - "number": "8", + "number": "", "spec": "Gamepad", - "text": "Remapping", + "text": "12. Remapping", "url": "https://w3c.github.io/gamepad/#remapping" }, "snapshot": { - "number": "8", + "number": "", "spec": "Gamepad", - "text": "Remapping", + "text": "12. Remapping", "url": "https://www.w3.org/TR/gamepad/#remapping" } }, @@ -283,13 +367,13 @@ "current": { "number": "", "spec": "Gamepad", - "text": "10. The gamepadconnected event", + "text": "14. The gamepadconnected event", "url": "https://w3c.github.io/gamepad/#the-gamepadconnected-event" }, "snapshot": { "number": "", "spec": "Gamepad", - "text": "10. The gamepadconnected event", + "text": "14. The gamepadconnected event", "url": "https://www.w3.org/TR/gamepad/#the-gamepadconnected-event" } }, @@ -297,13 +381,13 @@ "current": { "number": "", "spec": "Gamepad", - "text": "11. The gamepaddisconnected event", + "text": "15. The gamepaddisconnected event", "url": "https://w3c.github.io/gamepad/#the-gamepaddisconnected-event" }, "snapshot": { "number": "", "spec": "Gamepad", - "text": "11. The gamepaddisconnected event", + "text": "15. The gamepaddisconnected event", "url": "https://www.w3.org/TR/gamepad/#the-gamepaddisconnected-event" } }, @@ -337,15 +421,15 @@ }, "#usage-examples": { "current": { - "number": "9", + "number": "", "spec": "Gamepad", - "text": "Usage Examples", + "text": "13. Usage Examples", "url": "https://w3c.github.io/gamepad/#usage-examples" }, "snapshot": { - "number": "9", + "number": "", "spec": "Gamepad", - "text": "Usage Examples", + "text": "13. Usage Examples", "url": "https://www.w3.org/TR/gamepad/#usage-examples" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-generic-sensor.json b/bikeshed/spec-data/readonly/headings/headings-generic-sensor.json index 4d92048a28..b7ae8e1ca4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-generic-sensor.json +++ b/bikeshed/spec-data/readonly/headings/headings-generic-sensor.json @@ -55,6 +55,20 @@ "url": "https://www.w3.org/TR/generic-sensor/#activate-a-sensor-object" } }, + "#algorithms-for-parsing-readings": { + "current": { + "number": "9.2.3.1", + "spec": "Generic Sensor API", + "text": "Algorithms for parsing readings", + "url": "https://w3c.github.io/sensors/#algorithms-for-parsing-readings" + }, + "snapshot": { + "number": "9.2.3.1", + "spec": "Generic Sensor API", + "text": "Algorithms for parsing readings", + "url": "https://www.w3.org/TR/generic-sensor/#algorithms-for-parsing-readings" + } + }, "#api": { "current": { "number": "7", @@ -181,48 +195,6 @@ "url": "https://www.w3.org/TR/generic-sensor/#concepts-sensors" } }, - "#conformance": { - "current": { - "number": "", - "spec": "Generic Sensor API", - "text": "Conformance", - "url": "https://w3c.github.io/sensors/#conformance" - }, - "snapshot": { - "number": "", - "spec": "Generic Sensor API", - "text": "Conformance", - "url": "https://www.w3.org/TR/generic-sensor/#conformance" - } - }, - "#conformance-classes": { - "current": { - "number": "", - "spec": "Generic Sensor API", - "text": "Conformance Classes", - "url": "https://w3c.github.io/sensors/#conformance-classes" - }, - "snapshot": { - "number": "", - "spec": "Generic Sensor API", - "text": "Conformance Classes", - "url": "https://www.w3.org/TR/generic-sensor/#conformance-classes" - } - }, - "#conformant-algorithms": { - "current": { - "number": "", - "spec": "Generic Sensor API", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/sensors/#conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Generic Sensor API", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/generic-sensor/#conformant-algorithms" - } - }, "#connect-to-sensor": { "current": { "number": "8.3", @@ -237,32 +209,18 @@ "url": "https://www.w3.org/TR/generic-sensor/#connect-to-sensor" } }, - "#conventions": { - "current": { - "number": "", - "spec": "Generic Sensor API", - "text": "Document conventions", - "url": "https://w3c.github.io/sensors/#conventions" - }, - "snapshot": { - "number": "", - "spec": "Generic Sensor API", - "text": "Document conventions", - "url": "https://www.w3.org/TR/generic-sensor/#conventions" - } - }, - "#create-mock-sensor-command": { + "#create-virtual-sensor-command": { "current": { "number": "9.2.1", "spec": "Generic Sensor API", - "text": "Create mock sensor", - "url": "https://w3c.github.io/sensors/#create-mock-sensor-command" + "text": "Create virtual sensor", + "url": "https://w3c.github.io/sensors/#create-virtual-sensor-command" }, "snapshot": { "number": "9.2.1", "spec": "Generic Sensor API", - "text": "Create mock sensor", - "url": "https://www.w3.org/TR/generic-sensor/#create-mock-sensor-command" + "text": "Create virtual sensor", + "url": "https://www.w3.org/TR/generic-sensor/#create-virtual-sensor-command" } }, "#deactivate-a-sensor-object": { @@ -293,18 +251,18 @@ "url": "https://www.w3.org/TR/generic-sensor/#definition-reqs" } }, - "#delete-mock-sensor-command": { + "#delete-virtual-sensor-command": { "current": { "number": "9.2.4", "spec": "Generic Sensor API", - "text": "Delete mock sensor", - "url": "https://w3c.github.io/sensors/#delete-mock-sensor-command" + "text": "Delete virtual sensor", + "url": "https://w3c.github.io/sensors/#delete-virtual-sensor-command" }, "snapshot": { "number": "9.2.4", "spec": "Generic Sensor API", - "text": "Delete mock sensor", - "url": "https://www.w3.org/TR/generic-sensor/#delete-mock-sensor-command" + "text": "Delete virtual sensor", + "url": "https://www.w3.org/TR/generic-sensor/#delete-virtual-sensor-command" } }, "#device-fingerprinting": { @@ -321,34 +279,6 @@ "url": "https://www.w3.org/TR/generic-sensor/#device-fingerprinting" } }, - "#dictionary-mocksensor": { - "current": { - "number": "9.1.2", - "spec": "Generic Sensor API", - "text": "MockSensor dictionary", - "url": "https://w3c.github.io/sensors/#dictionary-mocksensor" - }, - "snapshot": { - "number": "9.1.2", - "spec": "Generic Sensor API", - "text": "MockSensor dictionary", - "url": "https://www.w3.org/TR/generic-sensor/#dictionary-mocksensor" - } - }, - "#dictionary-mocksensorconfiguration": { - "current": { - "number": "9.1.1", - "spec": "Generic Sensor API", - "text": "MockSensorConfiguration dictionary", - "url": "https://w3c.github.io/sensors/#dictionary-mocksensorconfiguration" - }, - "snapshot": { - "number": "9.1.1", - "spec": "Generic Sensor API", - "text": "MockSensorConfiguration dictionary", - "url": "https://www.w3.org/TR/generic-sensor/#dictionary-mocksensorconfiguration" - } - }, "#eavesdropping": { "current": { "number": "4.1.2", @@ -419,20 +349,6 @@ "url": "https://www.w3.org/TR/generic-sensor/#extensibility" } }, - "#extension-handling-errors": { - "current": { - "number": "9.3", - "spec": "Generic Sensor API", - "text": "Handling errors", - "url": "https://w3c.github.io/sensors/#extension-handling-errors" - }, - "snapshot": { - "number": "9.3", - "spec": "Generic Sensor API", - "text": "Handling errors", - "url": "https://www.w3.org/TR/generic-sensor/#extension-handling-errors" - } - }, "#extension-security-and-privacy": { "current": { "number": "10.1", @@ -461,18 +377,18 @@ "url": "https://www.w3.org/TR/generic-sensor/#feature-detection" } }, - "#find-the-reporting-frequency-of-a-sensor-object": { + "#focus-and-origin-check": { "current": { - "number": "8.9", + "number": "8.15", "spec": "Generic Sensor API", - "text": "Find the reporting frequency of a sensor object", - "url": "https://w3c.github.io/sensors/#find-the-reporting-frequency-of-a-sensor-object" + "text": "Focus and origin check", + "url": "https://w3c.github.io/sensors/#focus-and-origin-check" }, "snapshot": { - "number": "8.9", + "number": "8.15", "spec": "Generic Sensor API", - "text": "Find the reporting frequency of a sensor object", - "url": "https://www.w3.org/TR/generic-sensor/#find-the-reporting-frequency-of-a-sensor-object" + "text": "Focus and origin check", + "url": "https://www.w3.org/TR/generic-sensor/#focus-and-origin-check" } }, "#focused-area": { @@ -489,34 +405,48 @@ "url": "https://www.w3.org/TR/generic-sensor/#focused-area" } }, - "#get-mock-sensor-command": { + "#generic-sensor-permission-revocation-algorithm": { "current": { - "number": "9.2.2", + "number": "8.6", "spec": "Generic Sensor API", - "text": "Get mock sensor", - "url": "https://w3c.github.io/sensors/#get-mock-sensor-command" + "text": "Generic Sensor permission revocation algorithm", + "url": "https://w3c.github.io/sensors/#generic-sensor-permission-revocation-algorithm" }, "snapshot": { - "number": "9.2.2", + "number": "8.6", "spec": "Generic Sensor API", - "text": "Get mock sensor", - "url": "https://www.w3.org/TR/generic-sensor/#get-mock-sensor-command" + "text": "Generic Sensor permission revocation algorithm", + "url": "https://www.w3.org/TR/generic-sensor/#generic-sensor-permission-revocation-algorithm" } }, "#get-value-from-latest-reading": { "current": { - "number": "8.14", + "number": "8.13", "spec": "Generic Sensor API", "text": "Get value from latest reading", "url": "https://w3c.github.io/sensors/#get-value-from-latest-reading" }, "snapshot": { - "number": "8.14", + "number": "8.13", "spec": "Generic Sensor API", "text": "Get value from latest reading", "url": "https://www.w3.org/TR/generic-sensor/#get-value-from-latest-reading" } }, + "#get-virtual-sensor-information-command": { + "current": { + "number": "9.2.2", + "spec": "Generic Sensor API", + "text": "Get virtual sensor information", + "url": "https://w3c.github.io/sensors/#get-virtual-sensor-information-command" + }, + "snapshot": { + "number": "9.2.2", + "spec": "Generic Sensor API", + "text": "Get virtual sensor information", + "url": "https://www.w3.org/TR/generic-sensor/#get-virtual-sensor-information-command" + } + }, "#high-vs-low-level": { "current": { "number": "10.4", @@ -741,20 +671,6 @@ "url": "https://www.w3.org/TR/generic-sensor/#mitigation-strategies-case-by-case" } }, - "#mock-sensors": { - "current": { - "number": "9.1", - "spec": "Generic Sensor API", - "text": "Mock Sensors", - "url": "https://w3c.github.io/sensors/#mock-sensors" - }, - "snapshot": { - "number": "9.1", - "spec": "Generic Sensor API", - "text": "Mock Sensors", - "url": "https://www.w3.org/TR/generic-sensor/#mock-sensors" - } - }, "#model": { "current": { "number": "6", @@ -841,13 +757,13 @@ }, "#notify-activated-state": { "current": { - "number": "8.12", + "number": "8.11", "spec": "Generic Sensor API", "text": "Notify activated state", "url": "https://w3c.github.io/sensors/#notify-activated-state" }, "snapshot": { - "number": "8.12", + "number": "8.11", "spec": "Generic Sensor API", "text": "Notify activated state", "url": "https://www.w3.org/TR/generic-sensor/#notify-activated-state" @@ -855,13 +771,13 @@ }, "#notify-error": { "current": { - "number": "8.13", + "number": "8.12", "spec": "Generic Sensor API", "text": "Notify error", "url": "https://w3c.github.io/sensors/#notify-error" }, "snapshot": { - "number": "8.13", + "number": "8.12", "spec": "Generic Sensor API", "text": "Notify error", "url": "https://www.w3.org/TR/generic-sensor/#notify-error" @@ -869,18 +785,46 @@ }, "#notify-new-reading": { "current": { - "number": "8.11", + "number": "8.10", "spec": "Generic Sensor API", "text": "Notify new reading", "url": "https://w3c.github.io/sensors/#notify-new-reading" }, "snapshot": { - "number": "8.11", + "number": "8.10", "spec": "Generic Sensor API", "text": "Notify new reading", "url": "https://www.w3.org/TR/generic-sensor/#notify-new-reading" } }, + "#parse-single-value-number-reading": { + "current": { + "number": "9.2.3.1.1", + "spec": "Generic Sensor API", + "text": "Parse single-value number reading", + "url": "https://w3c.github.io/sensors/#parse-single-value-number-reading" + }, + "snapshot": { + "number": "9.2.3.1.1", + "spec": "Generic Sensor API", + "text": "Parse single-value number reading", + "url": "https://www.w3.org/TR/generic-sensor/#parse-single-value-number-reading" + } + }, + "#parse-xyz-reading": { + "current": { + "number": "9.2.3.1.2", + "spec": "Generic Sensor API", + "text": "Parse XYZ reading", + "url": "https://w3c.github.io/sensors/#parse-xyz-reading" + }, + "snapshot": { + "number": "9.2.3.1.2", + "spec": "Generic Sensor API", + "text": "Parse XYZ reading", + "url": "https://www.w3.org/TR/generic-sensor/#parse-xyz-reading" + } + }, "#permission-api": { "current": { "number": "10.8", @@ -967,13 +911,13 @@ }, "#report-latest-reading-updated": { "current": { - "number": "8.10", + "number": "8.9", "spec": "Generic Sensor API", "text": "Report latest reading updated", "url": "https://w3c.github.io/sensors/#report-latest-reading-updated" }, "snapshot": { - "number": "8.10", + "number": "8.9", "spec": "Generic Sensor API", "text": "Report latest reading updated", "url": "https://www.w3.org/TR/generic-sensor/#report-latest-reading-updated" @@ -981,32 +925,18 @@ }, "#request-sensor-access": { "current": { - "number": "8.15", + "number": "8.14", "spec": "Generic Sensor API", "text": "Request sensor access", "url": "https://w3c.github.io/sensors/#request-sensor-access" }, "snapshot": { - "number": "8.15", + "number": "8.14", "spec": "Generic Sensor API", "text": "Request sensor access", "url": "https://www.w3.org/TR/generic-sensor/#request-sensor-access" } }, - "#revoke-sensor-permission": { - "current": { - "number": "8.6", - "spec": "Generic Sensor API", - "text": "Revoke sensor permission", - "url": "https://w3c.github.io/sensors/#revoke-sensor-permission" - }, - "snapshot": { - "number": "8.6", - "spec": "Generic Sensor API", - "text": "Revoke sensor permission", - "url": "https://www.w3.org/TR/generic-sensor/#revoke-sensor-permission" - } - }, "#scope": { "current": { "number": "2", @@ -1035,20 +965,6 @@ "url": "https://www.w3.org/TR/generic-sensor/#section-extension-commands" } }, - "#section-mock-sensor-type": { - "current": { - "number": "9.1.3", - "spec": "Generic Sensor API", - "text": "Mock sensor type", - "url": "https://w3c.github.io/sensors/#section-mock-sensor-type" - }, - "snapshot": { - "number": "9.1.3", - "spec": "Generic Sensor API", - "text": "Mock sensor type", - "url": "https://www.w3.org/TR/generic-sensor/#section-mock-sensor-type" - } - }, "#secure-context": { "current": { "number": "4.2.1", @@ -1357,18 +1273,18 @@ "url": "https://www.w3.org/TR/generic-sensor/#update-latest-reading" } }, - "#update-mock-sensor-reading-command": { + "#update-virtual-sensor-reading-command": { "current": { "number": "9.2.3", "spec": "Generic Sensor API", - "text": "Update mock sensor reading", - "url": "https://w3c.github.io/sensors/#update-mock-sensor-reading-command" + "text": "Update virtual sensor reading", + "url": "https://w3c.github.io/sensors/#update-virtual-sensor-reading-command" }, "snapshot": { "number": "9.2.3", "spec": "Generic Sensor API", - "text": "Update mock sensor reading", - "url": "https://www.w3.org/TR/generic-sensor/#update-mock-sensor-reading-command" + "text": "Update virtual sensor reading", + "url": "https://www.w3.org/TR/generic-sensor/#update-virtual-sensor-reading-command" } }, "#user-identifying": { @@ -1385,6 +1301,20 @@ "url": "https://www.w3.org/TR/generic-sensor/#user-identifying" } }, + "#virtual-sensors": { + "current": { + "number": "9.1", + "spec": "Generic Sensor API", + "text": "Virtual Sensors", + "url": "https://w3c.github.io/sensors/#virtual-sensors" + }, + "snapshot": { + "number": "9.1", + "spec": "Generic Sensor API", + "text": "Virtual Sensors", + "url": "https://www.w3.org/TR/generic-sensor/#virtual-sensors" + } + }, "#visibility-state": { "current": { "number": "4.2.4", @@ -1398,5 +1328,47 @@ "text": "Visibility State", "url": "https://www.w3.org/TR/generic-sensor/#visibility-state" } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Generic Sensor API", + "text": "Conformance", + "url": "https://w3c.github.io/sensors/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Generic Sensor API", + "text": "Conformance", + "url": "https://www.w3.org/TR/generic-sensor/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Generic Sensor API", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/sensors/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Generic Sensor API", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/generic-sensor/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Generic Sensor API", + "text": "Document conventions", + "url": "https://w3c.github.io/sensors/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Generic Sensor API", + "text": "Document conventions", + "url": "https://www.w3.org/TR/generic-sensor/#w3c-conventions" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-geolocation-sensor.json b/bikeshed/spec-data/readonly/headings/headings-geolocation-sensor.json index 84f83e0937..4303b5467c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-geolocation-sensor.json +++ b/bikeshed/spec-data/readonly/headings/headings-geolocation-sensor.json @@ -97,6 +97,20 @@ "url": "https://www.w3.org/TR/geolocation-sensor/#examples" } }, + "#geolocation-reading-parsing-algorithm": { + "current": { + "number": "7.1", + "spec": "Geolocation Sensor", + "text": "Geolocation reading parsing algorithm", + "url": "https://w3c.github.io/geolocation-sensor/#geolocation-reading-parsing-algorithm" + }, + "snapshot": { + "number": "7.1", + "spec": "Geolocation Sensor", + "text": "Geolocation reading parsing algorithm", + "url": "https://www.w3.org/TR/geolocation-sensor/#geolocation-reading-parsing-algorithm" + } + }, "#geolocationsensor-accuracy": { "current": { "number": "5.1.5", @@ -307,20 +321,6 @@ "url": "https://www.w3.org/TR/geolocation-sensor/#intro" } }, - "#mock-geolocation-sensor-type": { - "current": { - "number": "7.1", - "spec": "Geolocation Sensor", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/geolocation-sensor/#mock-geolocation-sensor-type" - }, - "snapshot": { - "number": "7.1", - "spec": "Geolocation Sensor", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/geolocation-sensor/#mock-geolocation-sensor-type" - } - }, "#model": { "current": { "number": "4", diff --git a/bikeshed/spec-data/readonly/headings/headings-geolocation.json b/bikeshed/spec-data/readonly/headings/headings-geolocation.json index 40f8acde33..af169b0002 100644 --- a/bikeshed/spec-data/readonly/headings/headings-geolocation.json +++ b/bikeshed/spec-data/readonly/headings/headings-geolocation.json @@ -2,13 +2,13 @@ "#acknowledgments": { "current": { "number": "C", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Acknowledgments", - "url": "https://w3c.github.io/geolocation-api/#acknowledgments" + "url": "https://w3c.github.io/geolocation/#acknowledgments" }, "snapshot": { "number": "C", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Acknowledgments", "url": "https://www.w3.org/TR/geolocation/#acknowledgments" } @@ -16,13 +16,13 @@ "#acquire-a-position": { "current": { "number": "6.6", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Acquire a position", - "url": "https://w3c.github.io/geolocation-api/#acquire-a-position" + "url": "https://w3c.github.io/geolocation/#acquire-a-position" }, "snapshot": { "number": "6.6", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Acquire a position", "url": "https://www.w3.org/TR/geolocation/#acquire-a-position" } @@ -30,13 +30,13 @@ "#altitude-and-altitudeaccuracy-attributes": { "current": { "number": "9.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "altitude and altitudeAccuracy attributes", - "url": "https://w3c.github.io/geolocation-api/#altitude-and-altitudeaccuracy-attributes" + "url": "https://w3c.github.io/geolocation/#altitude-and-altitudeaccuracy-attributes" }, "snapshot": { "number": "9.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "altitude and altitudeAccuracy attributes", "url": "https://www.w3.org/TR/geolocation/#altitude-and-altitudeaccuracy-attributes" } @@ -44,41 +44,41 @@ "#call-back-with-error": { "current": { "number": "6.7", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Call back with error", - "url": "https://w3c.github.io/geolocation-api/#call-back-with-error" + "url": "https://w3c.github.io/geolocation/#call-back-with-error" }, "snapshot": { "number": "6.7", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Call back with error", "url": "https://www.w3.org/TR/geolocation/#call-back-with-error" } }, - "#change-log": { + "#changelog": { "current": { - "number": "1.2", - "spec": "Geolocation API", + "number": "D", + "spec": "Geolocation", "text": "Change log", - "url": "https://w3c.github.io/geolocation-api/#change-log" + "url": "https://w3c.github.io/geolocation/#changelog" }, "snapshot": { - "number": "1.2", - "spec": "Geolocation API", + "number": "D", + "spec": "Geolocation", "text": "Change log", - "url": "https://www.w3.org/TR/geolocation/#change-log" + "url": "https://www.w3.org/TR/geolocation/#changelog" } }, "#check-permission": { "current": { "number": "3.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Checking permission to use the API", - "url": "https://w3c.github.io/geolocation-api/#check-permission" + "url": "https://w3c.github.io/geolocation/#check-permission" }, "snapshot": { "number": "3.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Checking permission to use the API", "url": "https://www.w3.org/TR/geolocation/#check-permission" } @@ -86,13 +86,13 @@ "#clearwatch-method": { "current": { "number": "6.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "clearWatch() method", - "url": "https://w3c.github.io/geolocation-api/#clearwatch-method" + "url": "https://w3c.github.io/geolocation/#clearwatch-method" }, "snapshot": { "number": "6.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "clearWatch() method", "url": "https://www.w3.org/TR/geolocation/#clearwatch-method" } @@ -100,13 +100,13 @@ "#code-attribute": { "current": { "number": "10.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "code attribute", - "url": "https://w3c.github.io/geolocation-api/#code-attribute" + "url": "https://w3c.github.io/geolocation/#code-attribute" }, "snapshot": { "number": "10.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "code attribute", "url": "https://www.w3.org/TR/geolocation/#code-attribute" } @@ -114,13 +114,13 @@ "#conformance": { "current": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "12. Conformance", - "url": "https://w3c.github.io/geolocation-api/#conformance" + "url": "https://w3c.github.io/geolocation/#conformance" }, "snapshot": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "12. Conformance", "url": "https://www.w3.org/TR/geolocation/#conformance" } @@ -128,27 +128,27 @@ "#constants": { "current": { "number": "10.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Constants", - "url": "https://w3c.github.io/geolocation-api/#constants" + "url": "https://w3c.github.io/geolocation/#constants" }, "snapshot": { "number": "10.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Constants", "url": "https://www.w3.org/TR/geolocation/#constants" } }, "#constructing-a-geolocationposition": { "current": { - "number": "9.5", - "spec": "Geolocation API", + "number": "9.6", + "spec": "Geolocation", "text": "Constructing a GeolocationPosition", - "url": "https://w3c.github.io/geolocation-api/#constructing-a-geolocationposition" + "url": "https://w3c.github.io/geolocation/#constructing-a-geolocationposition" }, "snapshot": { - "number": "9.5", - "spec": "Geolocation API", + "number": "9.6", + "spec": "Geolocation", "text": "Constructing a GeolocationPosition", "url": "https://www.w3.org/TR/geolocation/#constructing-a-geolocationposition" } @@ -156,13 +156,13 @@ "#coordinates_interface": { "current": { "number": "9", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "GeolocationCoordinates interface", - "url": "https://w3c.github.io/geolocation-api/#coordinates_interface" + "url": "https://w3c.github.io/geolocation/#coordinates_interface" }, "snapshot": { "number": "9", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "GeolocationCoordinates interface", "url": "https://www.w3.org/TR/geolocation/#coordinates_interface" } @@ -170,13 +170,13 @@ "#coords-attribute": { "current": { "number": "8.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "coords attribute", - "url": "https://w3c.github.io/geolocation-api/#coords-attribute" + "url": "https://w3c.github.io/geolocation/#coords-attribute" }, "snapshot": { "number": "8.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "coords attribute", "url": "https://www.w3.org/TR/geolocation/#coords-attribute" } @@ -184,13 +184,13 @@ "#enablehighaccuracy-member": { "current": { "number": "7.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "enableHighAccuracy member", - "url": "https://w3c.github.io/geolocation-api/#enablehighaccuracy-member" + "url": "https://w3c.github.io/geolocation/#enablehighaccuracy-member" }, "snapshot": { "number": "7.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "enableHighAccuracy member", "url": "https://www.w3.org/TR/geolocation/#enablehighaccuracy-member" } @@ -198,13 +198,13 @@ "#enabling-the-api-in-third-party-contexts": { "current": { "number": "2.7", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Enabling the API in third-party contexts", - "url": "https://w3c.github.io/geolocation-api/#enabling-the-api-in-third-party-contexts" + "url": "https://w3c.github.io/geolocation/#enabling-the-api-in-third-party-contexts" }, "snapshot": { "number": "2.7", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Enabling the API in third-party contexts", "url": "https://www.w3.org/TR/geolocation/#enabling-the-api-in-third-party-contexts" } @@ -212,13 +212,13 @@ "#examples": { "current": { "number": "2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Examples", - "url": "https://w3c.github.io/geolocation-api/#examples" + "url": "https://w3c.github.io/geolocation/#examples" }, "snapshot": { "number": "2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Examples", "url": "https://www.w3.org/TR/geolocation/#examples" } @@ -226,13 +226,13 @@ "#geolocation_interface": { "current": { "number": "6", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Geolocation interface and callbacks", - "url": "https://w3c.github.io/geolocation-api/#geolocation_interface" + "url": "https://w3c.github.io/geolocation/#geolocation_interface" }, "snapshot": { "number": "6", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Geolocation interface and callbacks", "url": "https://www.w3.org/TR/geolocation/#geolocation_interface" } @@ -240,13 +240,13 @@ "#get-current-position": { "current": { "number": "2.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Get current position", - "url": "https://w3c.github.io/geolocation-api/#get-current-position" + "url": "https://w3c.github.io/geolocation/#get-current-position" }, "snapshot": { "number": "2.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Get current position", "url": "https://www.w3.org/TR/geolocation/#get-current-position" } @@ -254,13 +254,13 @@ "#getcurrentposition-method": { "current": { "number": "6.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "getCurrentPosition() method", - "url": "https://w3c.github.io/geolocation-api/#getcurrentposition-method" + "url": "https://w3c.github.io/geolocation/#getcurrentposition-method" }, "snapshot": { "number": "6.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "getCurrentPosition() method", "url": "https://www.w3.org/TR/geolocation/#getcurrentposition-method" } @@ -268,13 +268,13 @@ "#handling-errors": { "current": { "number": "2.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Handling errors", - "url": "https://w3c.github.io/geolocation-api/#handling-errors" + "url": "https://w3c.github.io/geolocation/#handling-errors" }, "snapshot": { "number": "2.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Handling errors", "url": "https://www.w3.org/TR/geolocation/#handling-errors" } @@ -282,13 +282,13 @@ "#heading-attribute": { "current": { "number": "9.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "heading attribute", - "url": "https://w3c.github.io/geolocation-api/#heading-attribute" + "url": "https://w3c.github.io/geolocation/#heading-attribute" }, "snapshot": { "number": "9.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "heading attribute", "url": "https://www.w3.org/TR/geolocation/#heading-attribute" } @@ -296,13 +296,13 @@ "#idl-index": { "current": { "number": "A", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "IDL Index", - "url": "https://w3c.github.io/geolocation-api/#idl-index" + "url": "https://w3c.github.io/geolocation/#idl-index" }, "snapshot": { "number": "A", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "IDL Index", "url": "https://www.w3.org/TR/geolocation/#idl-index" } @@ -310,13 +310,13 @@ "#implementation_considerations": { "current": { "number": "3.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Implementation considerations", - "url": "https://w3c.github.io/geolocation-api/#implementation_considerations" + "url": "https://w3c.github.io/geolocation/#implementation_considerations" }, "snapshot": { "number": "3.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Implementation considerations", "url": "https://www.w3.org/TR/geolocation/#implementation_considerations" } @@ -324,13 +324,13 @@ "#index": { "current": { "number": "B", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Index", - "url": "https://w3c.github.io/geolocation-api/#index" + "url": "https://w3c.github.io/geolocation/#index" }, "snapshot": { "number": "B", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Index", "url": "https://www.w3.org/TR/geolocation/#index" } @@ -338,13 +338,13 @@ "#index-defined-elsewhere": { "current": { "number": "B.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Terms defined by reference", - "url": "https://w3c.github.io/geolocation-api/#index-defined-elsewhere" + "url": "https://w3c.github.io/geolocation/#index-defined-elsewhere" }, "snapshot": { "number": "B.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Terms defined by reference", "url": "https://www.w3.org/TR/geolocation/#index-defined-elsewhere" } @@ -352,49 +352,41 @@ "#index-defined-here": { "current": { "number": "B.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Terms defined by this specification", - "url": "https://w3c.github.io/geolocation-api/#index-defined-here" + "url": "https://w3c.github.io/geolocation/#index-defined-here" }, "snapshot": { "number": "B.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Terms defined by this specification", "url": "https://www.w3.org/TR/geolocation/#index-defined-here" } }, - "#informative-references": { - "snapshot": { - "number": "D.2", - "spec": "Geolocation API", - "text": "Informative references", - "url": "https://www.w3.org/TR/geolocation/#informative-references" - } - }, "#internal-slots": { "current": { "number": "6.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Internal slots", - "url": "https://w3c.github.io/geolocation-api/#internal-slots" + "url": "https://w3c.github.io/geolocation/#internal-slots" }, "snapshot": { "number": "6.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Internal slots", "url": "https://www.w3.org/TR/geolocation/#internal-slots" } }, "#internal-slots-0": { "current": { - "number": "8.3", - "spec": "Geolocation API", + "number": "8.4", + "spec": "Geolocation", "text": "Internal slots", - "url": "https://w3c.github.io/geolocation-api/#internal-slots-0" + "url": "https://w3c.github.io/geolocation/#internal-slots-0" }, "snapshot": { - "number": "8.3", - "spec": "Geolocation API", + "number": "8.4", + "spec": "Geolocation", "text": "Internal slots", "url": "https://www.w3.org/TR/geolocation/#internal-slots-0" } @@ -402,13 +394,13 @@ "#introduction": { "current": { "number": "1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Introduction", - "url": "https://w3c.github.io/geolocation-api/#introduction" + "url": "https://w3c.github.io/geolocation/#introduction" }, "snapshot": { "number": "1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Introduction", "url": "https://www.w3.org/TR/geolocation/#introduction" } @@ -416,13 +408,13 @@ "#latitude-longitude-and-accuracy-attributes": { "current": { "number": "9.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "latitude, longitude, and accuracy attributes", - "url": "https://w3c.github.io/geolocation-api/#latitude-longitude-and-accuracy-attributes" + "url": "https://w3c.github.io/geolocation/#latitude-longitude-and-accuracy-attributes" }, "snapshot": { "number": "9.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "latitude, longitude, and accuracy attributes", "url": "https://www.w3.org/TR/geolocation/#latitude-longitude-and-accuracy-attributes" } @@ -430,13 +422,13 @@ "#maximumage-member": { "current": { "number": "7.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "maximumAge member", - "url": "https://w3c.github.io/geolocation-api/#maximumage-member" + "url": "https://w3c.github.io/geolocation/#maximumage-member" }, "snapshot": { "number": "7.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "maximumAge member", "url": "https://www.w3.org/TR/geolocation/#maximumage-member" } @@ -444,13 +436,13 @@ "#message-attribute": { "current": { "number": "10.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "message attribute", - "url": "https://w3c.github.io/geolocation-api/#message-attribute" + "url": "https://w3c.github.io/geolocation/#message-attribute" }, "snapshot": { "number": "10.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "message attribute", "url": "https://www.w3.org/TR/geolocation/#message-attribute" } @@ -458,27 +450,27 @@ "#navigator_interface": { "current": { "number": "5", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Extensions to the Navigator interface", - "url": "https://w3c.github.io/geolocation-api/#navigator_interface" + "url": "https://w3c.github.io/geolocation/#navigator_interface" }, "snapshot": { "number": "5", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Extensions to the Navigator interface", "url": "https://www.w3.org/TR/geolocation/#navigator_interface" } }, "#normative-references": { "current": { - "number": "D.1", - "spec": "Geolocation API", + "number": "E.1", + "spec": "Geolocation", "text": "Normative references", - "url": "https://w3c.github.io/geolocation-api/#normative-references" + "url": "https://w3c.github.io/geolocation/#normative-references" }, "snapshot": { - "number": "D.1", - "spec": "Geolocation API", + "number": "E.1", + "spec": "Geolocation", "text": "Normative references", "url": "https://www.w3.org/TR/geolocation/#normative-references" } @@ -486,13 +478,13 @@ "#permissions-policy": { "current": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "11. Permissions policy", - "url": "https://w3c.github.io/geolocation-api/#permissions-policy" + "url": "https://w3c.github.io/geolocation/#permissions-policy" }, "snapshot": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "11. Permissions policy", "url": "https://www.w3.org/TR/geolocation/#permissions-policy" } @@ -500,13 +492,13 @@ "#position_error_interface": { "current": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "10. GeolocationPositionError interface", - "url": "https://w3c.github.io/geolocation-api/#position_error_interface" + "url": "https://w3c.github.io/geolocation/#position_error_interface" }, "snapshot": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "10. GeolocationPositionError interface", "url": "https://www.w3.org/TR/geolocation/#position_error_interface" } @@ -514,13 +506,13 @@ "#position_interface": { "current": { "number": "8", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "GeolocationPosition interface", - "url": "https://w3c.github.io/geolocation-api/#position_interface" + "url": "https://w3c.github.io/geolocation/#position_interface" }, "snapshot": { "number": "8", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "GeolocationPosition interface", "url": "https://www.w3.org/TR/geolocation/#position_interface" } @@ -528,13 +520,13 @@ "#position_options_interface": { "current": { "number": "7", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "PositionOptions dictionary", - "url": "https://w3c.github.io/geolocation-api/#position_options_interface" + "url": "https://w3c.github.io/geolocation/#position_options_interface" }, "snapshot": { "number": "7", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "PositionOptions dictionary", "url": "https://www.w3.org/TR/geolocation/#position_options_interface" } @@ -542,13 +534,13 @@ "#privacy": { "current": { "number": "3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Privacy considerations", - "url": "https://w3c.github.io/geolocation-api/#privacy" + "url": "https://w3c.github.io/geolocation/#privacy" }, "snapshot": { "number": "3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Privacy considerations", "url": "https://www.w3.org/TR/geolocation/#privacy" } @@ -556,27 +548,27 @@ "#privacy_for_recipients": { "current": { "number": "3.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Privacy considerations for recipients of location information", - "url": "https://w3c.github.io/geolocation-api/#privacy_for_recipients" + "url": "https://w3c.github.io/geolocation/#privacy_for_recipients" }, "snapshot": { "number": "3.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Privacy considerations for recipients of location information", "url": "https://www.w3.org/TR/geolocation/#privacy_for_recipients" } }, "#references": { "current": { - "number": "D", - "spec": "Geolocation API", + "number": "E", + "spec": "Geolocation", "text": "References", - "url": "https://w3c.github.io/geolocation-api/#references" + "url": "https://w3c.github.io/geolocation/#references" }, "snapshot": { - "number": "D", - "spec": "Geolocation API", + "number": "E", + "spec": "Geolocation", "text": "References", "url": "https://www.w3.org/TR/geolocation/#references" } @@ -584,13 +576,13 @@ "#request-a-position": { "current": { "number": "6.5", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Request a position", - "url": "https://w3c.github.io/geolocation-api/#request-a-position" + "url": "https://w3c.github.io/geolocation/#request-a-position" }, "snapshot": { "number": "6.5", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Request a position", "url": "https://www.w3.org/TR/geolocation/#request-a-position" } @@ -598,13 +590,13 @@ "#scope": { "current": { "number": "1.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Scope", - "url": "https://w3c.github.io/geolocation-api/#scope" + "url": "https://w3c.github.io/geolocation/#scope" }, "snapshot": { "number": "1.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Scope", "url": "https://www.w3.org/TR/geolocation/#scope" } @@ -612,13 +604,13 @@ "#security": { "current": { "number": "4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Security considerations", - "url": "https://w3c.github.io/geolocation-api/#security" + "url": "https://w3c.github.io/geolocation/#security" }, "snapshot": { "number": "4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Security considerations", "url": "https://www.w3.org/TR/geolocation/#security" } @@ -626,13 +618,13 @@ "#speed-attribute": { "current": { "number": "9.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "speed attribute", - "url": "https://w3c.github.io/geolocation-api/#speed-attribute" + "url": "https://w3c.github.io/geolocation/#speed-attribute" }, "snapshot": { "number": "9.4", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "speed attribute", "url": "https://www.w3.org/TR/geolocation/#speed-attribute" } @@ -640,27 +632,27 @@ "#stop-watching-a-position": { "current": { "number": "2.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Stop watching a position", - "url": "https://w3c.github.io/geolocation-api/#stop-watching-a-position" + "url": "https://w3c.github.io/geolocation/#stop-watching-a-position" }, "snapshot": { "number": "2.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Stop watching a position", "url": "https://www.w3.org/TR/geolocation/#stop-watching-a-position" } }, "#task-sources": { "current": { - "number": "8.4", - "spec": "Geolocation API", + "number": "8.5", + "spec": "Geolocation", "text": "Task sources", - "url": "https://w3c.github.io/geolocation-api/#task-sources" + "url": "https://w3c.github.io/geolocation/#task-sources" }, "snapshot": { - "number": "8.4", - "spec": "Geolocation API", + "number": "8.5", + "spec": "Geolocation", "text": "Task sources", "url": "https://www.w3.org/TR/geolocation/#task-sources" } @@ -668,13 +660,13 @@ "#timeout-member": { "current": { "number": "7.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "timeout member", - "url": "https://w3c.github.io/geolocation-api/#timeout-member" + "url": "https://w3c.github.io/geolocation/#timeout-member" }, "snapshot": { "number": "7.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "timeout member", "url": "https://www.w3.org/TR/geolocation/#timeout-member" } @@ -682,13 +674,13 @@ "#timestamp-attribute": { "current": { "number": "8.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "timestamp attribute", - "url": "https://w3c.github.io/geolocation-api/#timestamp-attribute" + "url": "https://w3c.github.io/geolocation/#timestamp-attribute" }, "snapshot": { "number": "8.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "timestamp attribute", "url": "https://www.w3.org/TR/geolocation/#timestamp-attribute" } @@ -696,41 +688,69 @@ "#title": { "current": { "number": "", - "spec": "Geolocation API", - "text": "Geolocation API", - "url": "https://w3c.github.io/geolocation-api/#title" + "spec": "Geolocation", + "text": "Geolocation", + "url": "https://w3c.github.io/geolocation/#title" }, "snapshot": { "number": "", - "spec": "Geolocation API", - "text": "Geolocation API", + "spec": "Geolocation", + "text": "Geolocation", "url": "https://www.w3.org/TR/geolocation/#title" } }, "#toc": { "current": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Table of Contents", - "url": "https://w3c.github.io/geolocation-api/#toc" + "url": "https://w3c.github.io/geolocation/#toc" }, "snapshot": { "number": "", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Table of Contents", "url": "https://www.w3.org/TR/geolocation/#toc" } }, + "#tojson-method": { + "current": { + "number": "8.3", + "spec": "Geolocation", + "text": "toJSON() method", + "url": "https://w3c.github.io/geolocation/#tojson-method" + }, + "snapshot": { + "number": "8.3", + "spec": "Geolocation", + "text": "toJSON() method", + "url": "https://www.w3.org/TR/geolocation/#tojson-method" + } + }, + "#tojson-method-0": { + "current": { + "number": "9.5", + "spec": "Geolocation", + "text": "toJSON() method", + "url": "https://w3c.github.io/geolocation/#tojson-method-0" + }, + "snapshot": { + "number": "9.5", + "spec": "Geolocation", + "text": "toJSON() method", + "url": "https://www.w3.org/TR/geolocation/#tojson-method-0" + } + }, "#user-consent": { "current": { "number": "3.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "User consent", - "url": "https://w3c.github.io/geolocation-api/#user-consent" + "url": "https://w3c.github.io/geolocation/#user-consent" }, "snapshot": { "number": "3.1", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "User consent", "url": "https://www.w3.org/TR/geolocation/#user-consent" } @@ -738,13 +758,13 @@ "#using-maximumage-as-cache-control": { "current": { "number": "2.5", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Using maximumAge as cache control", - "url": "https://w3c.github.io/geolocation-api/#using-maximumage-as-cache-control" + "url": "https://w3c.github.io/geolocation/#using-maximumage-as-cache-control" }, "snapshot": { "number": "2.5", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Using maximumAge as cache control", "url": "https://www.w3.org/TR/geolocation/#using-maximumage-as-cache-control" } @@ -752,13 +772,13 @@ "#using-timeout": { "current": { "number": "2.6", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Using timeout", - "url": "https://w3c.github.io/geolocation-api/#using-timeout" + "url": "https://w3c.github.io/geolocation/#using-timeout" }, "snapshot": { "number": "2.6", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Using timeout", "url": "https://www.w3.org/TR/geolocation/#using-timeout" } @@ -766,13 +786,13 @@ "#watch-a-position": { "current": { "number": "2.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Watch a position", - "url": "https://w3c.github.io/geolocation-api/#watch-a-position" + "url": "https://w3c.github.io/geolocation/#watch-a-position" }, "snapshot": { "number": "2.2", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "Watch a position", "url": "https://www.w3.org/TR/geolocation/#watch-a-position" } @@ -780,13 +800,13 @@ "#watchposition-method": { "current": { "number": "6.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "watchPosition() method", - "url": "https://w3c.github.io/geolocation-api/#watchposition-method" + "url": "https://w3c.github.io/geolocation/#watchposition-method" }, "snapshot": { "number": "6.3", - "spec": "Geolocation API", + "spec": "Geolocation", "text": "watchPosition() method", "url": "https://www.w3.org/TR/geolocation/#watchposition-method" } diff --git a/bikeshed/spec-data/readonly/headings/headings-geometry-1.json b/bikeshed/spec-data/readonly/headings/headings-geometry-1.json index 4b883157f1..e8ced8f48c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-geometry-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-geometry-1.json @@ -241,9 +241,9 @@ }, "#historical": { "current": { - "number": "9", + "number": "", "spec": "Geometry Interfaces 1", - "text": "Historical", + "text": "10. Historical", "url": "https://drafts.fxtf.org/geometry-1/#historical" }, "snapshot": { @@ -255,7 +255,7 @@ }, "#historical-cssom-view": { "current": { - "number": "9.1", + "number": "10.1", "spec": "Geometry Interfaces 1", "text": "CSSOM View", "url": "https://drafts.fxtf.org/geometry-1/#historical-cssom-view" @@ -269,7 +269,7 @@ }, "#historical-non-standard": { "current": { - "number": "9.3", + "number": "10.3", "spec": "Geometry Interfaces 1", "text": "Non-standard", "url": "https://drafts.fxtf.org/geometry-1/#historical-non-standard" @@ -283,7 +283,7 @@ }, "#historical-svg": { "current": { - "number": "9.2", + "number": "10.2", "spec": "Geometry Interfaces 1", "text": "SVG", "url": "https://drafts.fxtf.org/geometry-1/#historical-svg" @@ -422,12 +422,6 @@ } }, "#priv-sec": { - "current": { - "number": "8", - "spec": "Geometry Interfaces 1", - "text": "Privacy and Security Considerations", - "url": "https://drafts.fxtf.org/geometry-1/#priv-sec" - }, "snapshot": { "number": "8", "spec": "Geometry Interfaces 1", @@ -435,6 +429,14 @@ "url": "https://www.w3.org/TR/geometry-1/#priv-sec" } }, + "#privacy": { + "current": { + "number": "9", + "spec": "Geometry Interfaces 1", + "text": "Privacy Considerations", + "url": "https://drafts.fxtf.org/geometry-1/#privacy" + } + }, "#references": { "current": { "number": "", @@ -449,13 +451,23 @@ "url": "https://www.w3.org/TR/geometry-1/#references" } }, - "#status": { + "#security": { + "current": { + "number": "8", + "spec": "Geometry Interfaces 1", + "text": "Security Considerations", + "url": "https://drafts.fxtf.org/geometry-1/#security" + } + }, + "#sotd": { "current": { "number": "", "spec": "Geometry Interfaces 1", "text": "Status of this document", - "url": "https://drafts.fxtf.org/geometry-1/#status" - }, + "url": "https://drafts.fxtf.org/geometry-1/#sotd" + } + }, + "#status": { "snapshot": { "number": "", "spec": "Geometry Interfaces 1", @@ -495,7 +507,7 @@ "snapshot": { "number": "", "spec": "Geometry Interfaces 1", - "text": "9 TestsGeometry Interfaces Module Level 1", + "text": "Geometry Interfaces Module Level 1", "url": "https://www.w3.org/TR/geometry-1/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-gltf.json b/bikeshed/spec-data/readonly/headings/headings-gltf.json new file mode 100644 index 0000000000..d4b9afc81e --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-gltf.json @@ -0,0 +1,2890 @@ +{ + "#_accessor_bufferview": { + "current": { + "number": "5.1.1", + "spec": "glTF™ 2.0", + "text": "accessor.bufferView", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_bufferview" + } + }, + "#_accessor_byteoffset": { + "current": { + "number": "5.1.2", + "spec": "glTF™ 2.0", + "text": "accessor.byteOffset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_byteoffset" + } + }, + "#_accessor_componenttype": { + "current": { + "number": "5.1.3", + "spec": "glTF™ 2.0", + "text": "accessor.componentType", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_componenttype" + } + }, + "#_accessor_count": { + "current": { + "number": "5.1.5", + "spec": "glTF™ 2.0", + "text": "accessor.count", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_count" + } + }, + "#_accessor_extensions": { + "current": { + "number": "5.1.11", + "spec": "glTF™ 2.0", + "text": "accessor.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_extensions" + } + }, + "#_accessor_extras": { + "current": { + "number": "5.1.12", + "spec": "glTF™ 2.0", + "text": "accessor.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_extras" + } + }, + "#_accessor_max": { + "current": { + "number": "5.1.7", + "spec": "glTF™ 2.0", + "text": "accessor.max", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_max" + } + }, + "#_accessor_min": { + "current": { + "number": "5.1.8", + "spec": "glTF™ 2.0", + "text": "accessor.min", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_min" + } + }, + "#_accessor_name": { + "current": { + "number": "5.1.10", + "spec": "glTF™ 2.0", + "text": "accessor.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_name" + } + }, + "#_accessor_normalized": { + "current": { + "number": "5.1.4", + "spec": "glTF™ 2.0", + "text": "accessor.normalized", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_normalized" + } + }, + "#_accessor_sparse": { + "current": { + "number": "5.1.9", + "spec": "glTF™ 2.0", + "text": "accessor.sparse", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse" + } + }, + "#_accessor_sparse_count": { + "current": { + "number": "5.2.1", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.count", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_count" + } + }, + "#_accessor_sparse_extensions": { + "current": { + "number": "5.2.4", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_extensions" + } + }, + "#_accessor_sparse_extras": { + "current": { + "number": "5.2.5", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_extras" + } + }, + "#_accessor_sparse_indices": { + "current": { + "number": "5.2.2", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.indices", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_indices" + } + }, + "#_accessor_sparse_indices_bufferview": { + "current": { + "number": "5.3.1", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.indices.bufferView", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_indices_bufferview" + } + }, + "#_accessor_sparse_indices_byteoffset": { + "current": { + "number": "5.3.2", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.indices.byteOffset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_indices_byteoffset" + } + }, + "#_accessor_sparse_indices_componenttype": { + "current": { + "number": "5.3.3", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.indices.componentType", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_indices_componenttype" + } + }, + "#_accessor_sparse_indices_extensions": { + "current": { + "number": "5.3.4", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.indices.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_indices_extensions" + } + }, + "#_accessor_sparse_indices_extras": { + "current": { + "number": "5.3.5", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.indices.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_indices_extras" + } + }, + "#_accessor_sparse_values": { + "current": { + "number": "5.2.3", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.values", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_values" + } + }, + "#_accessor_sparse_values_bufferview": { + "current": { + "number": "5.4.1", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.values.bufferView", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_values_bufferview" + } + }, + "#_accessor_sparse_values_byteoffset": { + "current": { + "number": "5.4.2", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.values.byteOffset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_values_byteoffset" + } + }, + "#_accessor_sparse_values_extensions": { + "current": { + "number": "5.4.3", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.values.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_values_extensions" + } + }, + "#_accessor_sparse_values_extras": { + "current": { + "number": "5.4.4", + "spec": "glTF™ 2.0", + "text": "accessor.sparse.values.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_sparse_values_extras" + } + }, + "#_accessor_type": { + "current": { + "number": "5.1.6", + "spec": "glTF™ 2.0", + "text": "accessor.type", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_type" + } + }, + "#_animation_channel_extensions": { + "current": { + "number": "5.6.3", + "spec": "glTF™ 2.0", + "text": "animation.channel.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_extensions" + } + }, + "#_animation_channel_extras": { + "current": { + "number": "5.6.4", + "spec": "glTF™ 2.0", + "text": "animation.channel.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_extras" + } + }, + "#_animation_channel_sampler": { + "current": { + "number": "5.6.1", + "spec": "glTF™ 2.0", + "text": "animation.channel.sampler", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_sampler" + } + }, + "#_animation_channel_target": { + "current": { + "number": "5.6.2", + "spec": "glTF™ 2.0", + "text": "animation.channel.target", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_target" + } + }, + "#_animation_channel_target_extensions": { + "current": { + "number": "5.7.3", + "spec": "glTF™ 2.0", + "text": "animation.channel.target.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_target_extensions" + } + }, + "#_animation_channel_target_extras": { + "current": { + "number": "5.7.4", + "spec": "glTF™ 2.0", + "text": "animation.channel.target.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_target_extras" + } + }, + "#_animation_channel_target_node": { + "current": { + "number": "5.7.1", + "spec": "glTF™ 2.0", + "text": "animation.channel.target.node", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_target_node" + } + }, + "#_animation_channel_target_path": { + "current": { + "number": "5.7.2", + "spec": "glTF™ 2.0", + "text": "animation.channel.target.path", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channel_target_path" + } + }, + "#_animation_channels": { + "current": { + "number": "5.5.1", + "spec": "glTF™ 2.0", + "text": "animation.channels", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_channels" + } + }, + "#_animation_extensions": { + "current": { + "number": "5.5.4", + "spec": "glTF™ 2.0", + "text": "animation.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_extensions" + } + }, + "#_animation_extras": { + "current": { + "number": "5.5.5", + "spec": "glTF™ 2.0", + "text": "animation.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_extras" + } + }, + "#_animation_name": { + "current": { + "number": "5.5.3", + "spec": "glTF™ 2.0", + "text": "animation.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_name" + } + }, + "#_animation_sampler_extensions": { + "current": { + "number": "5.8.4", + "spec": "glTF™ 2.0", + "text": "animation.sampler.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_sampler_extensions" + } + }, + "#_animation_sampler_extras": { + "current": { + "number": "5.8.5", + "spec": "glTF™ 2.0", + "text": "animation.sampler.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_sampler_extras" + } + }, + "#_animation_sampler_input": { + "current": { + "number": "5.8.1", + "spec": "glTF™ 2.0", + "text": "animation.sampler.input", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_sampler_input" + } + }, + "#_animation_sampler_interpolation": { + "current": { + "number": "5.8.2", + "spec": "glTF™ 2.0", + "text": "animation.sampler.interpolation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_sampler_interpolation" + } + }, + "#_animation_sampler_output": { + "current": { + "number": "5.8.3", + "spec": "glTF™ 2.0", + "text": "animation.sampler.output", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_sampler_output" + } + }, + "#_animation_samplers": { + "current": { + "number": "5.5.2", + "spec": "glTF™ 2.0", + "text": "animation.samplers", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_animation_samplers" + } + }, + "#_asset_copyright": { + "current": { + "number": "5.9.1", + "spec": "glTF™ 2.0", + "text": "asset.copyright", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_asset_copyright" + } + }, + "#_asset_extensions": { + "current": { + "number": "5.9.5", + "spec": "glTF™ 2.0", + "text": "asset.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_asset_extensions" + } + }, + "#_asset_extras": { + "current": { + "number": "5.9.6", + "spec": "glTF™ 2.0", + "text": "asset.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_asset_extras" + } + }, + "#_asset_generator": { + "current": { + "number": "5.9.2", + "spec": "glTF™ 2.0", + "text": "asset.generator", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_asset_generator" + } + }, + "#_asset_minversion": { + "current": { + "number": "5.9.4", + "spec": "glTF™ 2.0", + "text": "asset.minVersion", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_asset_minversion" + } + }, + "#_asset_version": { + "current": { + "number": "5.9.3", + "spec": "glTF™ 2.0", + "text": "asset.version", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_asset_version" + } + }, + "#_buffer_bytelength": { + "current": { + "number": "5.10.2", + "spec": "glTF™ 2.0", + "text": "buffer.byteLength", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_buffer_bytelength" + } + }, + "#_buffer_extensions": { + "current": { + "number": "5.10.4", + "spec": "glTF™ 2.0", + "text": "buffer.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_buffer_extensions" + } + }, + "#_buffer_extras": { + "current": { + "number": "5.10.5", + "spec": "glTF™ 2.0", + "text": "buffer.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_buffer_extras" + } + }, + "#_buffer_name": { + "current": { + "number": "5.10.3", + "spec": "glTF™ 2.0", + "text": "buffer.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_buffer_name" + } + }, + "#_buffer_uri": { + "current": { + "number": "5.10.1", + "spec": "glTF™ 2.0", + "text": "buffer.uri", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_buffer_uri" + } + }, + "#_bufferview_buffer": { + "current": { + "number": "5.11.1", + "spec": "glTF™ 2.0", + "text": "bufferView.buffer", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_buffer" + } + }, + "#_bufferview_bytelength": { + "current": { + "number": "5.11.3", + "spec": "glTF™ 2.0", + "text": "bufferView.byteLength", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_bytelength" + } + }, + "#_bufferview_byteoffset": { + "current": { + "number": "5.11.2", + "spec": "glTF™ 2.0", + "text": "bufferView.byteOffset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_byteoffset" + } + }, + "#_bufferview_bytestride": { + "current": { + "number": "5.11.4", + "spec": "glTF™ 2.0", + "text": "bufferView.byteStride", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_bytestride" + } + }, + "#_bufferview_extensions": { + "current": { + "number": "5.11.7", + "spec": "glTF™ 2.0", + "text": "bufferView.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_extensions" + } + }, + "#_bufferview_extras": { + "current": { + "number": "5.11.8", + "spec": "glTF™ 2.0", + "text": "bufferView.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_extras" + } + }, + "#_bufferview_name": { + "current": { + "number": "5.11.6", + "spec": "glTF™ 2.0", + "text": "bufferView.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_name" + } + }, + "#_bufferview_target": { + "current": { + "number": "5.11.5", + "spec": "glTF™ 2.0", + "text": "bufferView.target", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_bufferview_target" + } + }, + "#_camera_extensions": { + "current": { + "number": "5.12.5", + "spec": "glTF™ 2.0", + "text": "camera.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_extensions" + } + }, + "#_camera_extras": { + "current": { + "number": "5.12.6", + "spec": "glTF™ 2.0", + "text": "camera.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_extras" + } + }, + "#_camera_name": { + "current": { + "number": "5.12.4", + "spec": "glTF™ 2.0", + "text": "camera.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_name" + } + }, + "#_camera_orthographic": { + "current": { + "number": "5.12.1", + "spec": "glTF™ 2.0", + "text": "camera.orthographic", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic" + } + }, + "#_camera_orthographic_extensions": { + "current": { + "number": "5.13.5", + "spec": "glTF™ 2.0", + "text": "camera.orthographic.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic_extensions" + } + }, + "#_camera_orthographic_extras": { + "current": { + "number": "5.13.6", + "spec": "glTF™ 2.0", + "text": "camera.orthographic.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic_extras" + } + }, + "#_camera_orthographic_xmag": { + "current": { + "number": "5.13.1", + "spec": "glTF™ 2.0", + "text": "camera.orthographic.xmag", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic_xmag" + } + }, + "#_camera_orthographic_ymag": { + "current": { + "number": "5.13.2", + "spec": "glTF™ 2.0", + "text": "camera.orthographic.ymag", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic_ymag" + } + }, + "#_camera_orthographic_zfar": { + "current": { + "number": "5.13.3", + "spec": "glTF™ 2.0", + "text": "camera.orthographic.zfar", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic_zfar" + } + }, + "#_camera_orthographic_znear": { + "current": { + "number": "5.13.4", + "spec": "glTF™ 2.0", + "text": "camera.orthographic.znear", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_orthographic_znear" + } + }, + "#_camera_perspective": { + "current": { + "number": "5.12.2", + "spec": "glTF™ 2.0", + "text": "camera.perspective", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective" + } + }, + "#_camera_perspective_aspectratio": { + "current": { + "number": "5.14.1", + "spec": "glTF™ 2.0", + "text": "camera.perspective.aspectRatio", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective_aspectratio" + } + }, + "#_camera_perspective_extensions": { + "current": { + "number": "5.14.5", + "spec": "glTF™ 2.0", + "text": "camera.perspective.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective_extensions" + } + }, + "#_camera_perspective_extras": { + "current": { + "number": "5.14.6", + "spec": "glTF™ 2.0", + "text": "camera.perspective.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective_extras" + } + }, + "#_camera_perspective_yfov": { + "current": { + "number": "5.14.2", + "spec": "glTF™ 2.0", + "text": "camera.perspective.yfov", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective_yfov" + } + }, + "#_camera_perspective_zfar": { + "current": { + "number": "5.14.3", + "spec": "glTF™ 2.0", + "text": "camera.perspective.zfar", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective_zfar" + } + }, + "#_camera_perspective_znear": { + "current": { + "number": "5.14.4", + "spec": "glTF™ 2.0", + "text": "camera.perspective.znear", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_perspective_znear" + } + }, + "#_camera_type": { + "current": { + "number": "5.12.3", + "spec": "glTF™ 2.0", + "text": "camera.type", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_camera_type" + } + }, + "#_example": { + "current": { + "number": "3.8.4.4", + "spec": "glTF™ 2.0", + "text": "Example", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_example" + } + }, + "#_external_specifications": { + "current": { + "number": "2.2.4.1", + "spec": "glTF™ 2.0", + "text": "External Specifications", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_external_specifications" + } + }, + "#_filtering": { + "current": { + "number": "3.8.4.2", + "spec": "glTF™ 2.0", + "text": "Filtering", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_filtering" + } + }, + "#_gltf_accessors": { + "current": { + "number": "5.17.3", + "spec": "glTF™ 2.0", + "text": "glTF.accessors", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_accessors" + } + }, + "#_gltf_animations": { + "current": { + "number": "5.17.4", + "spec": "glTF™ 2.0", + "text": "glTF.animations", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_animations" + } + }, + "#_gltf_asset": { + "current": { + "number": "5.17.5", + "spec": "glTF™ 2.0", + "text": "glTF.asset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_asset" + } + }, + "#_gltf_buffers": { + "current": { + "number": "5.17.6", + "spec": "glTF™ 2.0", + "text": "glTF.buffers", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_buffers" + } + }, + "#_gltf_bufferviews": { + "current": { + "number": "5.17.7", + "spec": "glTF™ 2.0", + "text": "glTF.bufferViews", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_bufferviews" + } + }, + "#_gltf_cameras": { + "current": { + "number": "5.17.8", + "spec": "glTF™ 2.0", + "text": "glTF.cameras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_cameras" + } + }, + "#_gltf_extensions": { + "current": { + "number": "5.17.18", + "spec": "glTF™ 2.0", + "text": "glTF.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_extensions" + } + }, + "#_gltf_extensionsrequired": { + "current": { + "number": "5.17.2", + "spec": "glTF™ 2.0", + "text": "glTF.extensionsRequired", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_extensionsrequired" + } + }, + "#_gltf_extensionsused": { + "current": { + "number": "5.17.1", + "spec": "glTF™ 2.0", + "text": "glTF.extensionsUsed", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_extensionsused" + } + }, + "#_gltf_extras": { + "current": { + "number": "5.17.19", + "spec": "glTF™ 2.0", + "text": "glTF.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_extras" + } + }, + "#_gltf_images": { + "current": { + "number": "5.17.9", + "spec": "glTF™ 2.0", + "text": "glTF.images", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_images" + } + }, + "#_gltf_materials": { + "current": { + "number": "5.17.10", + "spec": "glTF™ 2.0", + "text": "glTF.materials", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_materials" + } + }, + "#_gltf_meshes": { + "current": { + "number": "5.17.11", + "spec": "glTF™ 2.0", + "text": "glTF.meshes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_meshes" + } + }, + "#_gltf_nodes": { + "current": { + "number": "5.17.12", + "spec": "glTF™ 2.0", + "text": "glTF.nodes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_nodes" + } + }, + "#_gltf_samplers": { + "current": { + "number": "5.17.13", + "spec": "glTF™ 2.0", + "text": "glTF.samplers", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_samplers" + } + }, + "#_gltf_scene": { + "current": { + "number": "5.17.14", + "spec": "glTF™ 2.0", + "text": "glTF.scene", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_scene" + } + }, + "#_gltf_scenes": { + "current": { + "number": "5.17.15", + "spec": "glTF™ 2.0", + "text": "glTF.scenes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_scenes" + } + }, + "#_gltf_skins": { + "current": { + "number": "5.17.16", + "spec": "glTF™ 2.0", + "text": "glTF.skins", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_skins" + } + }, + "#_gltf_textures": { + "current": { + "number": "5.17.17", + "spec": "glTF™ 2.0", + "text": "glTF.textures", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_gltf_textures" + } + }, + "#_image_bufferview": { + "current": { + "number": "5.18.3", + "spec": "glTF™ 2.0", + "text": "image.bufferView", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_image_bufferview" + } + }, + "#_image_extensions": { + "current": { + "number": "5.18.5", + "spec": "glTF™ 2.0", + "text": "image.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_image_extensions" + } + }, + "#_image_extras": { + "current": { + "number": "5.18.6", + "spec": "glTF™ 2.0", + "text": "image.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_image_extras" + } + }, + "#_image_mimetype": { + "current": { + "number": "5.18.2", + "spec": "glTF™ 2.0", + "text": "image.mimeType", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_image_mimetype" + } + }, + "#_image_name": { + "current": { + "number": "5.18.4", + "spec": "glTF™ 2.0", + "text": "image.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_image_name" + } + }, + "#_image_uri": { + "current": { + "number": "5.18.1", + "spec": "glTF™ 2.0", + "text": "image.uri", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_image_uri" + } + }, + "#_material_alphacutoff": { + "current": { + "number": "5.19.10", + "spec": "glTF™ 2.0", + "text": "material.alphaCutoff", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_alphacutoff" + } + }, + "#_material_alphamode": { + "current": { + "number": "5.19.9", + "spec": "glTF™ 2.0", + "text": "material.alphaMode", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_alphamode" + } + }, + "#_material_doublesided": { + "current": { + "number": "5.19.11", + "spec": "glTF™ 2.0", + "text": "material.doubleSided", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_doublesided" + } + }, + "#_material_emissivefactor": { + "current": { + "number": "5.19.8", + "spec": "glTF™ 2.0", + "text": "material.emissiveFactor", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_emissivefactor" + } + }, + "#_material_emissivetexture": { + "current": { + "number": "5.19.7", + "spec": "glTF™ 2.0", + "text": "material.emissiveTexture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_emissivetexture" + } + }, + "#_material_extensions": { + "current": { + "number": "5.19.2", + "spec": "glTF™ 2.0", + "text": "material.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_extensions" + } + }, + "#_material_extras": { + "current": { + "number": "5.19.3", + "spec": "glTF™ 2.0", + "text": "material.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_extras" + } + }, + "#_material_name": { + "current": { + "number": "5.19.1", + "spec": "glTF™ 2.0", + "text": "material.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_name" + } + }, + "#_material_normaltexture": { + "current": { + "number": "5.19.5", + "spec": "glTF™ 2.0", + "text": "material.normalTexture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_normaltexture" + } + }, + "#_material_normaltextureinfo_extensions": { + "current": { + "number": "5.20.4", + "spec": "glTF™ 2.0", + "text": "material.normalTextureInfo.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_normaltextureinfo_extensions" + } + }, + "#_material_normaltextureinfo_extras": { + "current": { + "number": "5.20.5", + "spec": "glTF™ 2.0", + "text": "material.normalTextureInfo.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_normaltextureinfo_extras" + } + }, + "#_material_normaltextureinfo_index": { + "current": { + "number": "5.20.1", + "spec": "glTF™ 2.0", + "text": "material.normalTextureInfo.index", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_normaltextureinfo_index" + } + }, + "#_material_normaltextureinfo_scale": { + "current": { + "number": "5.20.3", + "spec": "glTF™ 2.0", + "text": "material.normalTextureInfo.scale", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_normaltextureinfo_scale" + } + }, + "#_material_normaltextureinfo_texcoord": { + "current": { + "number": "5.20.2", + "spec": "glTF™ 2.0", + "text": "material.normalTextureInfo.texCoord", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_normaltextureinfo_texcoord" + } + }, + "#_material_occlusiontexture": { + "current": { + "number": "5.19.6", + "spec": "glTF™ 2.0", + "text": "material.occlusionTexture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_occlusiontexture" + } + }, + "#_material_occlusiontextureinfo_extensions": { + "current": { + "number": "5.21.4", + "spec": "glTF™ 2.0", + "text": "material.occlusionTextureInfo.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_occlusiontextureinfo_extensions" + } + }, + "#_material_occlusiontextureinfo_extras": { + "current": { + "number": "5.21.5", + "spec": "glTF™ 2.0", + "text": "material.occlusionTextureInfo.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_occlusiontextureinfo_extras" + } + }, + "#_material_occlusiontextureinfo_index": { + "current": { + "number": "5.21.1", + "spec": "glTF™ 2.0", + "text": "material.occlusionTextureInfo.index", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_occlusiontextureinfo_index" + } + }, + "#_material_occlusiontextureinfo_strength": { + "current": { + "number": "5.21.3", + "spec": "glTF™ 2.0", + "text": "material.occlusionTextureInfo.strength", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_occlusiontextureinfo_strength" + } + }, + "#_material_occlusiontextureinfo_texcoord": { + "current": { + "number": "5.21.2", + "spec": "glTF™ 2.0", + "text": "material.occlusionTextureInfo.texCoord", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_occlusiontextureinfo_texcoord" + } + }, + "#_material_pbrmetallicroughness": { + "current": { + "number": "5.19.4", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness" + } + }, + "#_material_pbrmetallicroughness_basecolorfactor": { + "current": { + "number": "5.22.1", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.baseColorFactor", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_basecolorfactor" + } + }, + "#_material_pbrmetallicroughness_basecolortexture": { + "current": { + "number": "5.22.2", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.baseColorTexture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_basecolortexture" + } + }, + "#_material_pbrmetallicroughness_extensions": { + "current": { + "number": "5.22.6", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_extensions" + } + }, + "#_material_pbrmetallicroughness_extras": { + "current": { + "number": "5.22.7", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_extras" + } + }, + "#_material_pbrmetallicroughness_metallicfactor": { + "current": { + "number": "5.22.3", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.metallicFactor", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_metallicfactor" + } + }, + "#_material_pbrmetallicroughness_metallicroughnesstexture": { + "current": { + "number": "5.22.5", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.metallicRoughnessTexture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_metallicroughnesstexture" + } + }, + "#_material_pbrmetallicroughness_roughnessfactor": { + "current": { + "number": "5.22.4", + "spec": "glTF™ 2.0", + "text": "material.pbrMetallicRoughness.roughnessFactor", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_material_pbrmetallicroughness_roughnessfactor" + } + }, + "#_media_type_registrations": { + "current": { + "number": "2.2.4.2", + "spec": "glTF™ 2.0", + "text": "Media Type Registrations", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_media_type_registrations" + } + }, + "#_mesh_extensions": { + "current": { + "number": "5.23.4", + "spec": "glTF™ 2.0", + "text": "mesh.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_extensions" + } + }, + "#_mesh_extras": { + "current": { + "number": "5.23.5", + "spec": "glTF™ 2.0", + "text": "mesh.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_extras" + } + }, + "#_mesh_name": { + "current": { + "number": "5.23.3", + "spec": "glTF™ 2.0", + "text": "mesh.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_name" + } + }, + "#_mesh_primitive_attributes": { + "current": { + "number": "5.24.1", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.attributes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_attributes" + } + }, + "#_mesh_primitive_extensions": { + "current": { + "number": "5.24.6", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_extensions" + } + }, + "#_mesh_primitive_extras": { + "current": { + "number": "5.24.7", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_extras" + } + }, + "#_mesh_primitive_indices": { + "current": { + "number": "5.24.2", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.indices", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_indices" + } + }, + "#_mesh_primitive_material": { + "current": { + "number": "5.24.3", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.material", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_material" + } + }, + "#_mesh_primitive_mode": { + "current": { + "number": "5.24.4", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.mode", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_mode" + } + }, + "#_mesh_primitive_targets": { + "current": { + "number": "5.24.5", + "spec": "glTF™ 2.0", + "text": "mesh.primitive.targets", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_targets" + } + }, + "#_mesh_primitives": { + "current": { + "number": "5.23.1", + "spec": "glTF™ 2.0", + "text": "mesh.primitives", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_primitives" + } + }, + "#_mesh_weights": { + "current": { + "number": "5.23.2", + "spec": "glTF™ 2.0", + "text": "mesh.weights", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_mesh_weights" + } + }, + "#_node_camera": { + "current": { + "number": "5.25.1", + "spec": "glTF™ 2.0", + "text": "node.camera", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_camera" + } + }, + "#_node_children": { + "current": { + "number": "5.25.2", + "spec": "glTF™ 2.0", + "text": "node.children", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_children" + } + }, + "#_node_extensions": { + "current": { + "number": "5.25.11", + "spec": "glTF™ 2.0", + "text": "node.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_extensions" + } + }, + "#_node_extras": { + "current": { + "number": "5.25.12", + "spec": "glTF™ 2.0", + "text": "node.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_extras" + } + }, + "#_node_matrix": { + "current": { + "number": "5.25.4", + "spec": "glTF™ 2.0", + "text": "node.matrix", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_matrix" + } + }, + "#_node_mesh": { + "current": { + "number": "5.25.5", + "spec": "glTF™ 2.0", + "text": "node.mesh", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_mesh" + } + }, + "#_node_name": { + "current": { + "number": "5.25.10", + "spec": "glTF™ 2.0", + "text": "node.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_name" + } + }, + "#_node_rotation": { + "current": { + "number": "5.25.6", + "spec": "glTF™ 2.0", + "text": "node.rotation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_rotation" + } + }, + "#_node_scale": { + "current": { + "number": "5.25.7", + "spec": "glTF™ 2.0", + "text": "node.scale", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_scale" + } + }, + "#_node_skin": { + "current": { + "number": "5.25.3", + "spec": "glTF™ 2.0", + "text": "node.skin", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_skin" + } + }, + "#_node_translation": { + "current": { + "number": "5.25.8", + "spec": "glTF™ 2.0", + "text": "node.translation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_translation" + } + }, + "#_node_weights": { + "current": { + "number": "5.25.9", + "spec": "glTF™ 2.0", + "text": "node.weights", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_node_weights" + } + }, + "#_non_power_of_two_textures": { + "current": { + "number": "3.8.4.5", + "spec": "glTF™ 2.0", + "text": "Non-power-of-two Textures", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_non_power_of_two_textures" + } + }, + "#_overview": { + "current": { + "number": "3.8.4.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_overview" + } + }, + "#_overview_2": { + "current": { + "number": "C.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_overview_2" + } + }, + "#_sampler_extensions": { + "current": { + "number": "5.26.6", + "spec": "glTF™ 2.0", + "text": "sampler.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_extensions" + } + }, + "#_sampler_extras": { + "current": { + "number": "5.26.7", + "spec": "glTF™ 2.0", + "text": "sampler.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_extras" + } + }, + "#_sampler_magfilter": { + "current": { + "number": "5.26.1", + "spec": "glTF™ 2.0", + "text": "sampler.magFilter", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_magfilter" + } + }, + "#_sampler_minfilter": { + "current": { + "number": "5.26.2", + "spec": "glTF™ 2.0", + "text": "sampler.minFilter", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_minfilter" + } + }, + "#_sampler_name": { + "current": { + "number": "5.26.5", + "spec": "glTF™ 2.0", + "text": "sampler.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_name" + } + }, + "#_sampler_wraps": { + "current": { + "number": "5.26.3", + "spec": "glTF™ 2.0", + "text": "sampler.wrapS", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_wraps" + } + }, + "#_sampler_wrapt": { + "current": { + "number": "5.26.4", + "spec": "glTF™ 2.0", + "text": "sampler.wrapT", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_sampler_wrapt" + } + }, + "#_scene_extensions": { + "current": { + "number": "5.27.3", + "spec": "glTF™ 2.0", + "text": "scene.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_scene_extensions" + } + }, + "#_scene_extras": { + "current": { + "number": "5.27.4", + "spec": "glTF™ 2.0", + "text": "scene.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_scene_extras" + } + }, + "#_scene_name": { + "current": { + "number": "5.27.2", + "spec": "glTF™ 2.0", + "text": "scene.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_scene_name" + } + }, + "#_scene_nodes": { + "current": { + "number": "5.27.1", + "spec": "glTF™ 2.0", + "text": "scene.nodes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_scene_nodes" + } + }, + "#_skin_extensions": { + "current": { + "number": "5.28.5", + "spec": "glTF™ 2.0", + "text": "skin.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_skin_extensions" + } + }, + "#_skin_extras": { + "current": { + "number": "5.28.6", + "spec": "glTF™ 2.0", + "text": "skin.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_skin_extras" + } + }, + "#_skin_inversebindmatrices": { + "current": { + "number": "5.28.1", + "spec": "glTF™ 2.0", + "text": "skin.inverseBindMatrices", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_skin_inversebindmatrices" + } + }, + "#_skin_joints": { + "current": { + "number": "5.28.3", + "spec": "glTF™ 2.0", + "text": "skin.joints", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_skin_joints" + } + }, + "#_skin_name": { + "current": { + "number": "5.28.4", + "spec": "glTF™ 2.0", + "text": "skin.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_skin_name" + } + }, + "#_skin_skeleton": { + "current": { + "number": "5.28.2", + "spec": "glTF™ 2.0", + "text": "skin.skeleton", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_skin_skeleton" + } + }, + "#_step_interpolation": { + "current": { + "number": "C.2", + "spec": "glTF™ 2.0", + "text": "Step Interpolation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_step_interpolation" + } + }, + "#_texture_extensions": { + "current": { + "number": "5.29.4", + "spec": "glTF™ 2.0", + "text": "texture.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_texture_extensions" + } + }, + "#_texture_extras": { + "current": { + "number": "5.29.5", + "spec": "glTF™ 2.0", + "text": "texture.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_texture_extras" + } + }, + "#_texture_name": { + "current": { + "number": "5.29.3", + "spec": "glTF™ 2.0", + "text": "texture.name", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_texture_name" + } + }, + "#_texture_sampler": { + "current": { + "number": "5.29.1", + "spec": "glTF™ 2.0", + "text": "texture.sampler", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_texture_sampler" + } + }, + "#_texture_source": { + "current": { + "number": "5.29.2", + "spec": "glTF™ 2.0", + "text": "texture.source", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_texture_source" + } + }, + "#_textureinfo_extensions": { + "current": { + "number": "5.30.3", + "spec": "glTF™ 2.0", + "text": "textureInfo.extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_textureinfo_extensions" + } + }, + "#_textureinfo_extras": { + "current": { + "number": "5.30.4", + "spec": "glTF™ 2.0", + "text": "textureInfo.extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_textureinfo_extras" + } + }, + "#_textureinfo_index": { + "current": { + "number": "5.30.1", + "spec": "glTF™ 2.0", + "text": "textureInfo.index", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_textureinfo_index" + } + }, + "#_textureinfo_texcoord": { + "current": { + "number": "5.30.2", + "spec": "glTF™ 2.0", + "text": "textureInfo.texCoord", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_textureinfo_texcoord" + } + }, + "#_wrapping": { + "current": { + "number": "3.8.4.3", + "spec": "glTF™ 2.0", + "text": "Wrapping", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_wrapping" + } + }, + "#accessor-data-types": { + "current": { + "number": "3.6.2.2", + "spec": "glTF™ 2.0", + "text": "Accessor Data Types", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#accessor-data-types" + } + }, + "#accessors": { + "current": { + "number": "3.6.2", + "spec": "glTF™ 2.0", + "text": "Accessors", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#accessors" + } + }, + "#accessors-bounds": { + "current": { + "number": "3.6.2.5", + "spec": "glTF™ 2.0", + "text": "Accessors Bounds", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#accessors-bounds" + } + }, + "#accessors-overview": { + "current": { + "number": "3.6.2.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#accessors-overview" + } + }, + "#acknowledgments": { + "current": { + "number": "6", + "spec": "glTF™ 2.0", + "text": "Acknowledgments (Informative)", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#acknowledgments" + } + }, + "#additional-textures": { + "current": { + "number": "3.9.3", + "spec": "glTF™ 2.0", + "text": "Additional Textures", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#additional-textures" + } + }, + "#alpha-coverage": { + "current": { + "number": "3.9.4", + "spec": "glTF™ 2.0", + "text": "Alpha Coverage", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#alpha-coverage" + } + }, + "#animations": { + "current": { + "number": "3.11", + "spec": "glTF™ 2.0", + "text": "Animations", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#animations" + } + }, + "#appendix-a-json-schema-reference": { + "current": { + "number": "A", + "spec": "glTF™ 2.0", + "text": "JSON Schema Reference (Informative)", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#appendix-a-json-schema-reference" + } + }, + "#appendix-b-brdf-implementation": { + "current": { + "number": "B", + "spec": "glTF™ 2.0", + "text": "BRDF Implementation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#appendix-b-brdf-implementation" + } + }, + "#appendix-b-brdf-implementation-general": { + "current": { + "number": "B.1", + "spec": "glTF™ 2.0", + "text": "General", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#appendix-b-brdf-implementation-general" + } + }, + "#appendix-c-interpolation": { + "current": { + "number": "C", + "spec": "glTF™ 2.0", + "text": "Animation Sampler Interpolation Modes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#appendix-c-interpolation" + } + }, + "#asset": { + "current": { + "number": "3.2", + "spec": "glTF™ 2.0", + "text": "Asset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#asset" + } + }, + "#binary-buffer": { + "current": { + "number": "4.4.3.3", + "spec": "glTF™ 2.0", + "text": "Binary buffer", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#binary-buffer" + } + }, + "#binary-data-storage": { + "current": { + "number": "3.6", + "spec": "glTF™ 2.0", + "text": "Binary Data Storage", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#binary-data-storage" + } + }, + "#binary-gltf-layout": { + "current": { + "number": "4.4", + "spec": "glTF™ 2.0", + "text": "Binary glTF Layout", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#binary-gltf-layout" + } + }, + "#binary-gltf-layout-overview": { + "current": { + "number": "4.4.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#binary-gltf-layout-overview" + } + }, + "#binary-header": { + "current": { + "number": "4.4.2", + "spec": "glTF™ 2.0", + "text": "Header", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#binary-header" + } + }, + "#buffers-and-buffer-views": { + "current": { + "number": "3.6.1", + "spec": "glTF™ 2.0", + "text": "Buffers and Buffer Views", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#buffers-and-buffer-views" + } + }, + "#buffers-and-buffer-views-overview": { + "current": { + "number": "3.6.1.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#buffers-and-buffer-views-overview" + } + }, + "#cameras": { + "current": { + "number": "3.10", + "spec": "glTF™ 2.0", + "text": "Cameras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#cameras" + } + }, + "#cameras-overview": { + "current": { + "number": "3.10.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#cameras-overview" + } + }, + "#chunks": { + "current": { + "number": "4.4.3", + "spec": "glTF™ 2.0", + "text": "Chunks", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#chunks" + } + }, + "#chunks-overview": { + "current": { + "number": "4.4.3.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#chunks-overview" + } + }, + "#complete-model": { + "current": { + "number": "B.2.4", + "spec": "glTF™ 2.0", + "text": "Complete Model", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#complete-model" + } + }, + "#concepts": { + "current": { + "number": "3", + "spec": "glTF™ 2.0", + "text": "Concepts", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#concepts" + } + }, + "#concepts-general": { + "current": { + "number": "3.1", + "spec": "glTF™ 2.0", + "text": "General", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#concepts-general" + } + }, + "#coordinate-system-and-units": { + "current": { + "number": "3.4", + "spec": "glTF™ 2.0", + "text": "Coordinate System and Units", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#coordinate-system-and-units" + } + }, + "#coupling-diffuse-and-specular-reflection": { + "current": { + "number": "B.3.6.3", + "spec": "glTF™ 2.0", + "text": "Coupling Diffuse and Specular Reflection", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#coupling-diffuse-and-specular-reflection" + } + }, + "#data-alignment": { + "current": { + "number": "3.6.2.4", + "spec": "glTF™ 2.0", + "text": "Data Alignment", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#data-alignment" + } + }, + "#default-material": { + "current": { + "number": "3.9.6", + "spec": "glTF™ 2.0", + "text": "Default Material", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#default-material" + } + }, + "#dielectrics": { + "current": { + "number": "B.2.2", + "spec": "glTF™ 2.0", + "text": "Dielectrics", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#dielectrics" + } + }, + "#diffuse-brdf": { + "current": { + "number": "B.3.3", + "spec": "glTF™ 2.0", + "text": "Diffuse BRDF", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#diffuse-brdf" + } + }, + "#discussion": { + "current": { + "number": "B.3.6", + "spec": "glTF™ 2.0", + "text": "Discussion", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#discussion" + } + }, + "#double-sided": { + "current": { + "number": "3.9.5", + "spec": "glTF™ 2.0", + "text": "Double Sided", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#double-sided" + } + }, + "#editors": { + "current": { + "number": "6.1", + "spec": "glTF™ 2.0", + "text": "Editors", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#editors" + } + }, + "#file-extensions-and-media-types": { + "current": { + "number": "2.6", + "spec": "glTF™ 2.0", + "text": "File Extensions and Media Types", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#file-extensions-and-media-types" + } + }, + "#finite-perspective-projection": { + "current": { + "number": "3.10.3.3", + "spec": "glTF™ 2.0", + "text": "Finite perspective projection", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#finite-perspective-projection" + } + }, + "#foreword": { + "current": { + "number": "1", + "spec": "glTF™ 2.0", + "text": "Foreword", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#foreword" + } + }, + "#fresnel": { + "current": { + "number": "B.3.4", + "spec": "glTF™ 2.0", + "text": "Fresnel", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#fresnel" + } + }, + "#geometry": { + "current": { + "number": "3.7", + "spec": "glTF™ 2.0", + "text": "Geometry", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#geometry" + } + }, + "#geometry-overview": { + "current": { + "number": "3.7.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#geometry-overview" + } + }, + "#glb-file-format-specification": { + "current": { + "number": "4", + "spec": "glTF™ 2.0", + "text": "GLB File Format Specification", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#glb-file-format-specification" + } + }, + "#glb-file-format-specification-file-extension": { + "current": { + "number": "4.3", + "spec": "glTF™ 2.0", + "text": "File Extension & Media Type", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#glb-file-format-specification-file-extension" + } + }, + "#glb-file-format-specification-general": { + "current": { + "number": "4.1", + "spec": "glTF™ 2.0", + "text": "General (Informative)", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#glb-file-format-specification-general" + } + }, + "#glb-file-format-specification-structure": { + "current": { + "number": "4.2", + "spec": "glTF™ 2.0", + "text": "Structure", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#glb-file-format-specification-structure" + } + }, + "#glb-stored-buffer": { + "current": { + "number": "3.6.1.2", + "spec": "glTF™ 2.0", + "text": "GLB-stored Buffer", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#glb-stored-buffer" + } + }, + "#gltf-basics": { + "current": { + "number": "2.4", + "spec": "glTF™ 2.0", + "text": "glTF Basics", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#gltf-basics" + } + }, + "#images": { + "current": { + "number": "3.8.3", + "spec": "glTF™ 2.0", + "text": "Images", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#images" + } + }, + "#implementation": { + "current": { + "number": "B.3", + "spec": "glTF™ 2.0", + "text": "Sample Implementation (Informative)", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#implementation" + } + }, + "#implementation-overview": { + "current": { + "number": "B.3.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#implementation-overview" + } + }, + "#indices-and-names": { + "current": { + "number": "3.3", + "spec": "glTF™ 2.0", + "text": "Indices and Names", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#indices-and-names" + } + }, + "#infinite-perspective-projection": { + "current": { + "number": "3.10.3.2", + "spec": "glTF™ 2.0", + "text": "Infinite perspective projection", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#infinite-perspective-projection" + } + }, + "#instantiation": { + "current": { + "number": "3.7.4", + "spec": "glTF™ 2.0", + "text": "Instantiation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#instantiation" + } + }, + "#interpolation-cubic": { + "current": { + "number": "C.5", + "spec": "glTF™ 2.0", + "text": "Cubic Spline Interpolation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#interpolation-cubic" + } + }, + "#interpolation-lerp": { + "current": { + "number": "C.3", + "spec": "glTF™ 2.0", + "text": "Linear Interpolation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#interpolation-lerp" + } + }, + "#interpolation-slerp": { + "current": { + "number": "C.4", + "spec": "glTF™ 2.0", + "text": "Spherical Linear Interpolation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#interpolation-slerp" + } + }, + "#introduction": { + "current": { + "number": "2", + "spec": "glTF™ 2.0", + "text": "Introduction", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction" + } + }, + "#introduction-conventions": { + "current": { + "number": "2.2", + "spec": "glTF™ 2.0", + "text": "Document Conventions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction-conventions" + } + }, + "#introduction-general": { + "current": { + "number": "2.1", + "spec": "glTF™ 2.0", + "text": "General", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction-general" + } + }, + "#introduction-informative-language": { + "current": { + "number": "2.2.2", + "spec": "glTF™ 2.0", + "text": "Informative Language", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction-informative-language" + } + }, + "#introduction-normative-references": { + "current": { + "number": "2.2.4", + "spec": "glTF™ 2.0", + "text": "Normative References", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction-normative-references" + } + }, + "#introduction-normative-terminology": { + "current": { + "number": "2.2.1", + "spec": "glTF™ 2.0", + "text": "Normative Terminology and References", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction-normative-terminology" + } + }, + "#introduction-technical-terminology": { + "current": { + "number": "2.2.3", + "spec": "glTF™ 2.0", + "text": "Technical Terminology", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#introduction-technical-terminology" + } + }, + "#joint-hierarchy": { + "current": { + "number": "3.7.3.2", + "spec": "glTF™ 2.0", + "text": "Joint Hierarchy", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#joint-hierarchy" + } + }, + "#json-encoding": { + "current": { + "number": "2.7", + "spec": "glTF™ 2.0", + "text": "JSON Encoding", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#json-encoding" + } + }, + "#masking-shadowing-term-and-multiple-scattering": { + "current": { + "number": "B.3.6.1", + "spec": "glTF™ 2.0", + "text": "Masking-Shadowing Term and Multiple Scattering", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#masking-shadowing-term-and-multiple-scattering" + } + }, + "#material-structure": { + "current": { + "number": "B.2", + "spec": "glTF™ 2.0", + "text": "Material Structure", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#material-structure" + } + }, + "#materials": { + "current": { + "number": "3.9", + "spec": "glTF™ 2.0", + "text": "Materials", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#materials" + } + }, + "#materials-overview": { + "current": { + "number": "3.9.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#materials-overview" + } + }, + "#meshes": { + "current": { + "number": "3.7.2", + "spec": "glTF™ 2.0", + "text": "Meshes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes" + } + }, + "#meshes-overview": { + "current": { + "number": "3.7.2.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes-overview" + } + }, + "#metal-brdf-and-dielectric-brdf": { + "current": { + "number": "B.3.5", + "spec": "glTF™ 2.0", + "text": "Metal BRDF and Dielectric BRDF", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#metal-brdf-and-dielectric-brdf" + } + }, + "#metallic-roughness-material": { + "current": { + "number": "3.9.2", + "spec": "glTF™ 2.0", + "text": "Metallic-Roughness Material", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#metallic-roughness-material" + } + }, + "#metals": { + "current": { + "number": "B.2.1", + "spec": "glTF™ 2.0", + "text": "Metals", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#metals" + } + }, + "#microfacet-surfaces": { + "current": { + "number": "B.2.3", + "spec": "glTF™ 2.0", + "text": "Microfacet Surfaces", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#microfacet-surfaces" + } + }, + "#morph-targets": { + "current": { + "number": "3.7.2.2", + "spec": "glTF™ 2.0", + "text": "Morph Targets", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#morph-targets" + } + }, + "#motivation": { + "current": { + "number": "2.3", + "spec": "glTF™ 2.0", + "text": "Motivation and Design Goals (Informative)", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#motivation" + } + }, + "#nodes-and-hierarchy": { + "current": { + "number": "3.5.2", + "spec": "glTF™ 2.0", + "text": "Nodes and Hierarchy", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#nodes-and-hierarchy" + } + }, + "#orthographic-projection": { + "current": { + "number": "3.10.3.4", + "spec": "glTF™ 2.0", + "text": "Orthographic projection", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#orthographic-projection" + } + }, + "#point-and-line-materials": { + "current": { + "number": "3.9.7", + "spec": "glTF™ 2.0", + "text": "Point and Line Materials", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#point-and-line-materials" + } + }, + "#projection-matrices": { + "current": { + "number": "3.10.3", + "spec": "glTF™ 2.0", + "text": "Projection Matrices", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#projection-matrices" + } + }, + "#projection-matrices-overview": { + "current": { + "number": "3.10.3.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#projection-matrices-overview" + } + }, + "#properties-reference": { + "current": { + "number": "5", + "spec": "glTF™ 2.0", + "text": "Properties Reference", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#properties-reference" + } + }, + "#reference-accessor": { + "current": { + "number": "5.1", + "spec": "glTF™ 2.0", + "text": "Accessor", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-accessor" + } + }, + "#reference-accessor-sparse": { + "current": { + "number": "5.2", + "spec": "glTF™ 2.0", + "text": "Accessor Sparse", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-accessor-sparse" + } + }, + "#reference-accessor-sparse-indices": { + "current": { + "number": "5.3", + "spec": "glTF™ 2.0", + "text": "Accessor Sparse Indices", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-accessor-sparse-indices" + } + }, + "#reference-accessor-sparse-values": { + "current": { + "number": "5.4", + "spec": "glTF™ 2.0", + "text": "Accessor Sparse Values", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-accessor-sparse-values" + } + }, + "#reference-animation": { + "current": { + "number": "5.5", + "spec": "glTF™ 2.0", + "text": "Animation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-animation" + } + }, + "#reference-animation-channel": { + "current": { + "number": "5.6", + "spec": "glTF™ 2.0", + "text": "Animation Channel", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-animation-channel" + } + }, + "#reference-animation-channel-target": { + "current": { + "number": "5.7", + "spec": "glTF™ 2.0", + "text": "Animation Channel Target", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-animation-channel-target" + } + }, + "#reference-animation-sampler": { + "current": { + "number": "5.8", + "spec": "glTF™ 2.0", + "text": "Animation Sampler", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-animation-sampler" + } + }, + "#reference-asset": { + "current": { + "number": "5.9", + "spec": "glTF™ 2.0", + "text": "Asset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-asset" + } + }, + "#reference-buffer": { + "current": { + "number": "5.10", + "spec": "glTF™ 2.0", + "text": "Buffer", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-buffer" + } + }, + "#reference-bufferview": { + "current": { + "number": "5.11", + "spec": "glTF™ 2.0", + "text": "Buffer View", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-bufferview" + } + }, + "#reference-camera": { + "current": { + "number": "5.12", + "spec": "glTF™ 2.0", + "text": "Camera", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-camera" + } + }, + "#reference-camera-orthographic": { + "current": { + "number": "5.13", + "spec": "glTF™ 2.0", + "text": "Camera Orthographic", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-camera-orthographic" + } + }, + "#reference-camera-perspective": { + "current": { + "number": "5.14", + "spec": "glTF™ 2.0", + "text": "Camera Perspective", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-camera-perspective" + } + }, + "#reference-extension": { + "current": { + "number": "5.15", + "spec": "glTF™ 2.0", + "text": "Extension", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-extension" + } + }, + "#reference-extras": { + "current": { + "number": "5.16", + "spec": "glTF™ 2.0", + "text": "Extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-extras" + } + }, + "#reference-gltf": { + "current": { + "number": "5.17", + "spec": "glTF™ 2.0", + "text": "glTF", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-gltf" + } + }, + "#reference-image": { + "current": { + "number": "5.18", + "spec": "glTF™ 2.0", + "text": "Image", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-image" + } + }, + "#reference-material": { + "current": { + "number": "5.19", + "spec": "glTF™ 2.0", + "text": "Material", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-material" + } + }, + "#reference-material-normaltextureinfo": { + "current": { + "number": "5.20", + "spec": "glTF™ 2.0", + "text": "Material Normal Texture Info", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-material-normaltextureinfo" + } + }, + "#reference-material-occlusiontextureinfo": { + "current": { + "number": "5.21", + "spec": "glTF™ 2.0", + "text": "Material Occlusion Texture Info", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-material-occlusiontextureinfo" + } + }, + "#reference-material-pbrmetallicroughness": { + "current": { + "number": "5.22", + "spec": "glTF™ 2.0", + "text": "Material PBR Metallic Roughness", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-material-pbrmetallicroughness" + } + }, + "#reference-mesh": { + "current": { + "number": "5.23", + "spec": "glTF™ 2.0", + "text": "Mesh", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-mesh" + } + }, + "#reference-mesh-primitive": { + "current": { + "number": "5.24", + "spec": "glTF™ 2.0", + "text": "Mesh Primitive", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-mesh-primitive" + } + }, + "#reference-node": { + "current": { + "number": "5.25", + "spec": "glTF™ 2.0", + "text": "Node", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-node" + } + }, + "#reference-sampler": { + "current": { + "number": "5.26", + "spec": "glTF™ 2.0", + "text": "Sampler", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-sampler" + } + }, + "#reference-scene": { + "current": { + "number": "5.27", + "spec": "glTF™ 2.0", + "text": "Scene", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-scene" + } + }, + "#reference-skin": { + "current": { + "number": "5.28", + "spec": "glTF™ 2.0", + "text": "Skin", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-skin" + } + }, + "#reference-texture": { + "current": { + "number": "5.29", + "spec": "glTF™ 2.0", + "text": "Texture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-texture" + } + }, + "#reference-textureinfo": { + "current": { + "number": "5.30", + "spec": "glTF™ 2.0", + "text": "Texture Info", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-textureinfo" + } + }, + "#references": { + "current": { + "number": "B.4", + "spec": "glTF™ 2.0", + "text": "References", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#references" + } + }, + "#samplers": { + "current": { + "number": "3.8.4", + "spec": "glTF™ 2.0", + "text": "Samplers", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#samplers" + } + }, + "#scenes": { + "current": { + "number": "3.5", + "spec": "glTF™ 2.0", + "text": "Scenes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#scenes" + } + }, + "#scenes-overview": { + "current": { + "number": "3.5.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#scenes-overview" + } + }, + "#schema-reference-accessor": { + "current": { + "number": "A.1", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Accessor", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-accessor" + } + }, + "#schema-reference-accessor-sparse": { + "current": { + "number": "A.2", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Accessor Sparse", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-accessor-sparse" + } + }, + "#schema-reference-accessor-sparse-indices": { + "current": { + "number": "A.3", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Accessor Sparse Indices", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-accessor-sparse-indices" + } + }, + "#schema-reference-accessor-sparse-values": { + "current": { + "number": "A.4", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Accessor Sparse Values", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-accessor-sparse-values" + } + }, + "#schema-reference-animation": { + "current": { + "number": "A.5", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Animation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-animation" + } + }, + "#schema-reference-animation-channel": { + "current": { + "number": "A.6", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Animation Channel", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-animation-channel" + } + }, + "#schema-reference-animation-channel-target": { + "current": { + "number": "A.7", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Animation Channel Target", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-animation-channel-target" + } + }, + "#schema-reference-animation-sampler": { + "current": { + "number": "A.8", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Animation Sampler", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-animation-sampler" + } + }, + "#schema-reference-asset": { + "current": { + "number": "A.9", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Asset", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-asset" + } + }, + "#schema-reference-buffer": { + "current": { + "number": "A.10", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Buffer", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-buffer" + } + }, + "#schema-reference-bufferview": { + "current": { + "number": "A.11", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Buffer View", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-bufferview" + } + }, + "#schema-reference-camera": { + "current": { + "number": "A.12", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Camera", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-camera" + } + }, + "#schema-reference-camera-orthographic": { + "current": { + "number": "A.13", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Camera Orthographic", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-camera-orthographic" + } + }, + "#schema-reference-camera-perspective": { + "current": { + "number": "A.14", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Camera Perspective", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-camera-perspective" + } + }, + "#schema-reference-extension": { + "current": { + "number": "A.15", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Extension", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-extension" + } + }, + "#schema-reference-extras": { + "current": { + "number": "A.16", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Extras", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-extras" + } + }, + "#schema-reference-gltf": { + "current": { + "number": "A.17", + "spec": "glTF™ 2.0", + "text": "JSON Schema for glTF", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-gltf" + } + }, + "#schema-reference-gltfchildofrootproperty": { + "current": { + "number": "A.18", + "spec": "glTF™ 2.0", + "text": "JSON Schema for glTF Child of Root Property", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-gltfchildofrootproperty" + } + }, + "#schema-reference-gltfid": { + "current": { + "number": "A.19", + "spec": "glTF™ 2.0", + "text": "JSON Schema for glTF Id", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-gltfid" + } + }, + "#schema-reference-gltfproperty": { + "current": { + "number": "A.20", + "spec": "glTF™ 2.0", + "text": "JSON Schema for glTF Property", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-gltfproperty" + } + }, + "#schema-reference-image": { + "current": { + "number": "A.21", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Image", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-image" + } + }, + "#schema-reference-material": { + "current": { + "number": "A.22", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Material", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-material" + } + }, + "#schema-reference-material-normaltextureinfo": { + "current": { + "number": "A.23", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Material Normal Texture Info", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-material-normaltextureinfo" + } + }, + "#schema-reference-material-occlusiontextureinfo": { + "current": { + "number": "A.24", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Material Occlusion Texture Info", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-material-occlusiontextureinfo" + } + }, + "#schema-reference-material-pbrmetallicroughness": { + "current": { + "number": "A.25", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Material PBR Metallic Roughness", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-material-pbrmetallicroughness" + } + }, + "#schema-reference-mesh": { + "current": { + "number": "A.26", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Mesh", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-mesh" + } + }, + "#schema-reference-mesh-primitive": { + "current": { + "number": "A.27", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Mesh Primitive", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-mesh-primitive" + } + }, + "#schema-reference-node": { + "current": { + "number": "A.28", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Node", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-node" + } + }, + "#schema-reference-sampler": { + "current": { + "number": "A.29", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Sampler", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-sampler" + } + }, + "#schema-reference-scene": { + "current": { + "number": "A.30", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Scene", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-scene" + } + }, + "#schema-reference-skin": { + "current": { + "number": "A.31", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Skin", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-skin" + } + }, + "#schema-reference-texture": { + "current": { + "number": "A.32", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Texture", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-texture" + } + }, + "#schema-reference-textureinfo": { + "current": { + "number": "A.33", + "spec": "glTF™ 2.0", + "text": "JSON Schema for Texture Info", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schema-reference-textureinfo" + } + }, + "#schlicks-fresnel-approximation": { + "current": { + "number": "B.3.6.2", + "spec": "glTF™ 2.0", + "text": "Schlick’s Fresnel Approximation", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#schlicks-fresnel-approximation" + } + }, + "#skinned-mesh-attributes": { + "current": { + "number": "3.7.3.3", + "spec": "glTF™ 2.0", + "text": "Skinned Mesh Attributes", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#skinned-mesh-attributes" + } + }, + "#skins": { + "current": { + "number": "3.7.3", + "spec": "glTF™ 2.0", + "text": "Skins", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#skins" + } + }, + "#skins-overview": { + "current": { + "number": "3.7.3.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#skins-overview" + } + }, + "#sparse-accessors": { + "current": { + "number": "3.6.2.3", + "spec": "glTF™ 2.0", + "text": "Sparse Accessors", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#sparse-accessors" + } + }, + "#special-thanks": { + "current": { + "number": "6.3", + "spec": "glTF™ 2.0", + "text": "Special Thanks", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#special-thanks" + } + }, + "#specifying-extensions": { + "current": { + "number": "3.12", + "spec": "glTF™ 2.0", + "text": "Specifying Extensions", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#specifying-extensions" + } + }, + "#specular-brdf": { + "current": { + "number": "B.3.2", + "spec": "glTF™ 2.0", + "text": "Specular BRDF", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#specular-brdf" + } + }, + "#structured-json-content": { + "current": { + "number": "4.4.3.2", + "spec": "glTF™ 2.0", + "text": "Structured JSON Content", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#structured-json-content" + } + }, + "#texture-data": { + "current": { + "number": "3.8", + "spec": "glTF™ 2.0", + "text": "Texture Data", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#texture-data" + } + }, + "#texture-data-overview": { + "current": { + "number": "3.8.1", + "spec": "glTF™ 2.0", + "text": "Overview", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#texture-data-overview" + } + }, + "#textures": { + "current": { + "number": "3.8.2", + "spec": "glTF™ 2.0", + "text": "Textures", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#textures" + } + }, + "#transformations": { + "current": { + "number": "3.5.3", + "spec": "glTF™ 2.0", + "text": "Transformations", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#transformations" + } + }, + "#uris": { + "current": { + "number": "2.8", + "spec": "glTF™ 2.0", + "text": "URIs", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#uris" + } + }, + "#versioning": { + "current": { + "number": "2.5", + "spec": "glTF™ 2.0", + "text": "Versioning", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#versioning" + } + }, + "#view-matrix": { + "current": { + "number": "3.10.2", + "spec": "glTF™ 2.0", + "text": "View Matrix", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#view-matrix" + } + }, + "#working-group-and-alumni": { + "current": { + "number": "6.2", + "spec": "glTF™ 2.0", + "text": "Khronos 3D Formats Working Group and Alumni", + "url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#working-group-and-alumni" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-gpc-spec.json b/bikeshed/spec-data/readonly/headings/headings-gpc-spec.json index 6891ded8bb..80ddbe796b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-gpc-spec.json +++ b/bikeshed/spec-data/readonly/headings/headings-gpc-spec.json @@ -7,14 +7,38 @@ "url": "https://privacycg.github.io/gpc-spec/#acknowledgments" } }, + "#calfornia-consumer-privacy-act-ccpa": { + "current": { + "number": "5.1", + "spec": "GPC", + "text": "Calfornia Consumer Privacy Act (CCPA)", + "url": "https://privacycg.github.io/gpc-spec/#calfornia-consumer-privacy-act-ccpa" + } + }, + "#colorado-privacy-act-cpa": { + "current": { + "number": "5.2", + "spec": "GPC", + "text": "Colorado Privacy Act (CPA)", + "url": "https://privacycg.github.io/gpc-spec/#colorado-privacy-act-cpa" + } + }, "#conformance": { "current": { - "number": "6", + "number": "7", "spec": "GPC", "text": "Conformance", "url": "https://privacycg.github.io/gpc-spec/#conformance" } }, + "#connecticut-data-privacy-act-cdpa": { + "current": { + "number": "5.3", + "spec": "GPC", + "text": "Connecticut Data Privacy Act (CDPA)", + "url": "https://privacycg.github.io/gpc-spec/#connecticut-data-privacy-act-cdpa" + } + }, "#definitions": { "current": { "number": "2", @@ -23,6 +47,14 @@ "url": "https://privacycg.github.io/gpc-spec/#definitions" } }, + "#eu-general-data-protection-regulation-gdpr": { + "current": { + "number": "5.5", + "spec": "GPC", + "text": "EU General Data Protection Regulation (GDPR)", + "url": "https://privacycg.github.io/gpc-spec/#eu-general-data-protection-regulation-gdpr" + } + }, "#expressing-a-do-not-sell-or-share-preference": { "current": { "number": "3", @@ -41,7 +73,7 @@ }, "#extensibility-of-the-sec-gpc-field-value": { "current": { - "number": "3.2.1", + "number": "3.3.1", "spec": "GPC", "text": "Extensibility of the Sec-GPC Field Value", "url": "https://privacycg.github.io/gpc-spec/#extensibility-of-the-sec-gpc-field-value" @@ -89,7 +121,7 @@ }, "#javascript-property-to-detect-preference": { "current": { - "number": "3.3", + "number": "3.4", "spec": "GPC", "text": "JavaScript Property to Detect Preference", "url": "https://privacycg.github.io/gpc-spec/#javascript-property-to-detect-preference" @@ -103,6 +135,14 @@ "url": "https://privacycg.github.io/gpc-spec/#legal-effects" } }, + "#nevada-revised-statutes-chapter-603a-nrs-603a": { + "current": { + "number": "5.4", + "spec": "GPC", + "text": "Nevada Revised Statutes Chapter 603A (NRS 603A)", + "url": "https://privacycg.github.io/gpc-spec/#nevada-revised-statutes-chapter-603a-nrs-603a" + } + }, "#normative-references": { "current": { "number": "C.1", @@ -111,6 +151,30 @@ "url": "https://privacycg.github.io/gpc-spec/#normative-references" } }, + "#other-jurisdictions-and-privacy-rights": { + "current": { + "number": "5.6", + "spec": "GPC", + "text": "Other Jurisdictions and Privacy Rights", + "url": "https://privacycg.github.io/gpc-spec/#other-jurisdictions-and-privacy-rights" + } + }, + "#preference-caching": { + "current": { + "number": "3.2", + "spec": "GPC", + "text": "Preference Caching", + "url": "https://privacycg.github.io/gpc-spec/#preference-caching" + } + }, + "#privacy-considerations": { + "current": { + "number": "6", + "spec": "GPC", + "text": "Privacy Considerations", + "url": "https://privacycg.github.io/gpc-spec/#privacy-considerations" + } + }, "#references": { "current": { "number": "C", @@ -121,7 +185,7 @@ }, "#the-sec-gpc-header-field-for-http-requests": { "current": { - "number": "3.2", + "number": "3.3", "spec": "GPC", "text": "The Sec-GPC Header Field for HTTP Requests", "url": "https://privacycg.github.io/gpc-spec/#the-sec-gpc-header-field-for-http-requests" @@ -145,7 +209,7 @@ }, "#user-interface-language": { "current": { - "number": "5.1", + "number": "5.7", "spec": "GPC", "text": "User Interface Language", "url": "https://privacycg.github.io/gpc-spec/#user-interface-language" diff --git a/bikeshed/spec-data/readonly/headings/headings-graphics-aam-1.0.json b/bikeshed/spec-data/readonly/headings/headings-graphics-aam-1.0.json index 0a65c1bf9e..4f508a47de 100644 --- a/bikeshed/spec-data/readonly/headings/headings-graphics-aam-1.0.json +++ b/bikeshed/spec-data/readonly/headings/headings-graphics-aam-1.0.json @@ -85,7 +85,7 @@ }, "#conformance-0": { "current": { - "number": "", + "number": "2.1", "spec": "Graphics Accessibility API Mappings", "text": "Conformance", "url": "https://w3c.github.io/graphics-aam/#conformance-0" @@ -99,6 +99,30 @@ "url": "https://www.w3.org/TR/graphics-aam-1.0/#glossary" } }, + "#graphics-document": { + "current": { + "number": "6.2.1", + "spec": "Graphics Accessibility API Mappings", + "text": "graphics-document", + "url": "https://w3c.github.io/graphics-aam/#graphics-document" + } + }, + "#graphics-object": { + "current": { + "number": "6.2.2", + "spec": "Graphics Accessibility API Mappings", + "text": "graphics-object", + "url": "https://w3c.github.io/graphics-aam/#graphics-object" + } + }, + "#graphics-symbol": { + "current": { + "number": "6.2.3", + "spec": "Graphics Accessibility API Mappings", + "text": "graphics-symbol", + "url": "https://w3c.github.io/graphics-aam/#graphics-symbol" + } + }, "#informative-references": { "current": { "number": "C.2", diff --git a/bikeshed/spec-data/readonly/headings/headings-gyroscope.json b/bikeshed/spec-data/readonly/headings/headings-gyroscope.json index 8ed5b13de0..f733595151 100644 --- a/bikeshed/spec-data/readonly/headings/headings-gyroscope.json +++ b/bikeshed/spec-data/readonly/headings/headings-gyroscope.json @@ -15,13 +15,13 @@ }, "#abstract-operations": { "current": { - "number": "7", + "number": "8", "spec": "Gyroscope", "text": "Abstract Operations", "url": "https://w3c.github.io/gyroscope/#abstract-operations" }, "snapshot": { - "number": "7", + "number": "8", "spec": "Gyroscope", "text": "Abstract Operations", "url": "https://www.w3.org/TR/gyroscope/#abstract-operations" @@ -29,27 +29,27 @@ }, "#acknowledgements": { "current": { - "number": "9", + "number": "", "spec": "Gyroscope", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://w3c.github.io/gyroscope/#acknowledgements" }, "snapshot": { - "number": "9", + "number": "", "spec": "Gyroscope", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://www.w3.org/TR/gyroscope/#acknowledgements" } }, "#api": { "current": { - "number": "6", + "number": "7", "spec": "Gyroscope", "text": "API", "url": "https://w3c.github.io/gyroscope/#api" }, "snapshot": { - "number": "6", + "number": "7", "spec": "Gyroscope", "text": "API", "url": "https://www.w3.org/TR/gyroscope/#api" @@ -57,13 +57,13 @@ }, "#automation": { "current": { - "number": "8", + "number": "9", "spec": "Gyroscope", "text": "Automation", "url": "https://w3c.github.io/gyroscope/#automation" }, "snapshot": { - "number": "8", + "number": "9", "spec": "Gyroscope", "text": "Automation", "url": "https://www.w3.org/TR/gyroscope/#automation" @@ -73,25 +73,25 @@ "current": { "number": "", "spec": "Gyroscope", - "text": "10. Conformance", + "text": "11. Conformance", "url": "https://w3c.github.io/gyroscope/#conformance" }, "snapshot": { "number": "", "spec": "Gyroscope", - "text": "10. Conformance", + "text": "11. Conformance", "url": "https://www.w3.org/TR/gyroscope/#conformance" } }, "#construct-a-gyroscope-object": { "current": { - "number": "7.1", + "number": "8.1", "spec": "Gyroscope", "text": "Construct a Gyroscope object", "url": "https://w3c.github.io/gyroscope/#construct-a-gyroscope-object" }, "snapshot": { - "number": "7.1", + "number": "8.1", "spec": "Gyroscope", "text": "Construct a Gyroscope object", "url": "https://www.w3.org/TR/gyroscope/#construct-a-gyroscope-object" @@ -113,13 +113,13 @@ }, "#gyroscope-interface": { "current": { - "number": "6.1", + "number": "7.1", "spec": "Gyroscope", "text": "The Gyroscope Interface", "url": "https://w3c.github.io/gyroscope/#gyroscope-interface" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "Gyroscope", "text": "The Gyroscope Interface", "url": "https://www.w3.org/TR/gyroscope/#gyroscope-interface" @@ -127,13 +127,13 @@ }, "#gyroscope-x": { "current": { - "number": "6.1.1", + "number": "7.1.1", "spec": "Gyroscope", "text": "Gyroscope.x", "url": "https://w3c.github.io/gyroscope/#gyroscope-x" }, "snapshot": { - "number": "6.1.1", + "number": "7.1.1", "spec": "Gyroscope", "text": "Gyroscope.x", "url": "https://www.w3.org/TR/gyroscope/#gyroscope-x" @@ -141,13 +141,13 @@ }, "#gyroscope-y": { "current": { - "number": "6.1.2", + "number": "7.1.2", "spec": "Gyroscope", "text": "Gyroscope.y", "url": "https://w3c.github.io/gyroscope/#gyroscope-y" }, "snapshot": { - "number": "6.1.2", + "number": "7.1.2", "spec": "Gyroscope", "text": "Gyroscope.y", "url": "https://www.w3.org/TR/gyroscope/#gyroscope-y" @@ -155,13 +155,13 @@ }, "#gyroscope-z": { "current": { - "number": "6.1.3", + "number": "7.1.3", "spec": "Gyroscope", "text": "Gyroscope.z", "url": "https://w3c.github.io/gyroscope/#gyroscope-z" }, "snapshot": { - "number": "6.1.3", + "number": "7.1.3", "spec": "Gyroscope", "text": "Gyroscope.z", "url": "https://www.w3.org/TR/gyroscope/#gyroscope-z" @@ -251,29 +251,15 @@ "url": "https://www.w3.org/TR/gyroscope/#intro" } }, - "#mock-gyroscope-type": { - "current": { - "number": "8.1", - "spec": "Gyroscope", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/gyroscope/#mock-gyroscope-type" - }, - "snapshot": { - "number": "8.1", - "spec": "Gyroscope", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/gyroscope/#mock-gyroscope-type" - } - }, "#model": { "current": { - "number": "5", + "number": "6", "spec": "Gyroscope", "text": "Model", "url": "https://w3c.github.io/gyroscope/#model" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Gyroscope", "text": "Model", "url": "https://www.w3.org/TR/gyroscope/#model" @@ -293,15 +279,29 @@ "url": "https://www.w3.org/TR/gyroscope/#normative" } }, + "#permissions-policy-integration": { + "current": { + "number": "5", + "spec": "Gyroscope", + "text": "Permissions Policy integration", + "url": "https://w3c.github.io/gyroscope/#permissions-policy-integration" + }, + "snapshot": { + "number": "5", + "spec": "Gyroscope", + "text": "Permissions Policy integration", + "url": "https://www.w3.org/TR/gyroscope/#permissions-policy-integration" + } + }, "#reference-frame": { "current": { - "number": "5.1", + "number": "6.1", "spec": "Gyroscope", "text": "Reference Frame", "url": "https://w3c.github.io/gyroscope/#reference-frame" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "Gyroscope", "text": "Reference Frame", "url": "https://www.w3.org/TR/gyroscope/#reference-frame" diff --git a/bikeshed/spec-data/readonly/headings/headings-handwriting-recognition.json b/bikeshed/spec-data/readonly/headings/headings-handwriting-recognition.json new file mode 100644 index 0000000000..392606c269 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-handwriting-recognition.json @@ -0,0 +1,322 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Abstract", + "url": "https://wicg.github.io/handwriting-recognition/#abstract" + } + }, + "#api-create-handwriting-recognizer": { + "current": { + "number": "4.1", + "spec": "Handwriting Recognition API", + "text": "createHandwritingRecognizer(constraint) method", + "url": "https://wicg.github.io/handwriting-recognition/#api-create-handwriting-recognizer" + } + }, + "#api-handwriting-hints-query-result": { + "current": { + "number": "3.3.1", + "spec": "Handwriting Recognition API", + "text": "HandwritingHintsQueryResult attributes", + "url": "https://wicg.github.io/handwriting-recognition/#api-handwriting-hints-query-result" + } + }, + "#api-handwriting-model-constraint": { + "current": { + "number": "3.2", + "spec": "Handwriting Recognition API", + "text": "HandwritingModelConstraint attributes", + "url": "https://wicg.github.io/handwriting-recognition/#api-handwriting-model-constraint" + } + }, + "#api-handwriting-recognizer-query-result": { + "current": { + "number": "3.3", + "spec": "Handwriting Recognition API", + "text": "HandwritingRecognizerQueryResult attributes", + "url": "https://wicg.github.io/handwriting-recognition/#api-handwriting-recognizer-query-result" + } + }, + "#api-query": { + "current": { + "number": "3", + "spec": "Handwriting Recognition API", + "text": "Feature Query", + "url": "https://wicg.github.io/handwriting-recognition/#api-query" + } + }, + "#api-query-handwriting-recognizer": { + "current": { + "number": "3.1", + "spec": "Handwriting Recognition API", + "text": "queryHandwritingRecognizer(constraint)", + "url": "https://wicg.github.io/handwriting-recognition/#api-query-handwriting-recognizer" + } + }, + "#create-a-handwriting-recognizer": { + "current": { + "number": "4", + "spec": "Handwriting Recognition API", + "text": "Create a handwriting recognizer", + "url": "https://wicg.github.io/handwriting-recognition/#create-a-handwriting-recognizer" + } + }, + "#get-predictions-of-a-drawing": { + "current": { + "number": "7", + "spec": "Handwriting Recognition API", + "text": "Get predictions of a HandwritingDrawing", + "url": "https://wicg.github.io/handwriting-recognition/#get-predictions-of-a-drawing" + } + }, + "#handwriting-drawing": { + "current": { + "number": "6", + "spec": "Handwriting Recognition API", + "text": "Build a HandwritingDrawing", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing" + } + }, + "#handwriting-drawing-add-stroke": { + "current": { + "number": "6.2.1", + "spec": "Handwriting Recognition API", + "text": "addStroke(stroke)", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-add-stroke" + } + }, + "#handwriting-drawing-clear": { + "current": { + "number": "6.2.4", + "spec": "Handwriting Recognition API", + "text": "clear()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-clear" + } + }, + "#handwriting-drawing-get-prediction": { + "current": { + "number": "7.1", + "spec": "Handwriting Recognition API", + "text": "getPrediction()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-get-prediction" + } + }, + "#handwriting-drawing-get-strokes": { + "current": { + "number": "6.2.3", + "spec": "Handwriting Recognition API", + "text": "getStrokes()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-get-strokes" + } + }, + "#handwriting-drawing-remove-stroke": { + "current": { + "number": "6.2.2", + "spec": "Handwriting Recognition API", + "text": "removeStroke(stroke)", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-remove-stroke" + } + }, + "#handwriting-drawing-segment": { + "current": { + "number": "7.2.2", + "spec": "Handwriting Recognition API", + "text": "HandwritingDrawingSegment attributes", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-segment" + } + }, + "#handwriting-drawing-stroke-methods": { + "current": { + "number": "6.2", + "spec": "Handwriting Recognition API", + "text": "HandwritingDrawing", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-drawing-stroke-methods" + } + }, + "#handwriting-prediction": { + "current": { + "number": "7.2", + "spec": "Handwriting Recognition API", + "text": "HandwritingPrediction attributes", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-prediction" + } + }, + "#handwriting-recognizer-create-drawing": { + "current": { + "number": "5.2", + "spec": "Handwriting Recognition API", + "text": "startDrawing(hints)", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-recognizer-create-drawing" + } + }, + "#handwriting-recognizer-finish": { + "current": { + "number": "5.3", + "spec": "Handwriting Recognition API", + "text": "finish()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-recognizer-finish" + } + }, + "#handwriting-recognizer-object": { + "current": { + "number": "5.1", + "spec": "Handwriting Recognition API", + "text": "HandwritingRecognizer object", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-recognizer-object" + } + }, + "#handwriting-segment": { + "current": { + "number": "7.2.1", + "spec": "Handwriting Recognition API", + "text": "HandwritingSegment attributes", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-segment" + } + }, + "#handwriting-stroke": { + "current": { + "number": "6.1", + "spec": "Handwriting Recognition API", + "text": "HandwritingStroke", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-stroke" + } + }, + "#handwriting-stroke-add-point": { + "current": { + "number": "6.1.2", + "spec": "Handwriting Recognition API", + "text": "addPoint(point)", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-stroke-add-point" + } + }, + "#handwriting-stroke-clear": { + "current": { + "number": "6.1.4", + "spec": "Handwriting Recognition API", + "text": "clear()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-stroke-clear" + } + }, + "#handwriting-stroke-constructor": { + "current": { + "number": "6.1.1", + "spec": "Handwriting Recognition API", + "text": "HandwritingStroke()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-stroke-constructor" + } + }, + "#handwriting-stroke-get-points": { + "current": { + "number": "6.1.3", + "spec": "Handwriting Recognition API", + "text": "getPoints()", + "url": "https://wicg.github.io/handwriting-recognition/#handwriting-stroke-get-points" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "IDL Index", + "url": "https://wicg.github.io/handwriting-recognition/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Index", + "url": "https://wicg.github.io/handwriting-recognition/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/handwriting-recognition/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/handwriting-recognition/#index-defined-here" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Handwriting Recognition API", + "text": "Introduction", + "url": "https://wicg.github.io/handwriting-recognition/#introduction" + } + }, + "#introduction-handwriting": { + "current": { + "number": "2", + "spec": "Handwriting Recognition API", + "text": "Definitions", + "url": "https://wicg.github.io/handwriting-recognition/#introduction-handwriting" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Normative References", + "url": "https://wicg.github.io/handwriting-recognition/#normative" + } + }, + "#privacy%20consideration": { + "current": { + "number": "8", + "spec": "Handwriting Recognition API", + "text": "Privacy Considerations", + "url": "https://wicg.github.io/handwriting-recognition/#privacy%20consideration" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "References", + "url": "https://wicg.github.io/handwriting-recognition/#references" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Status of this document", + "url": "https://wicg.github.io/handwriting-recognition/#status" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Handwriting Recognition API", + "url": "https://wicg.github.io/handwriting-recognition/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Handwriting Recognition API", + "text": "Table of Contents", + "url": "https://wicg.github.io/handwriting-recognition/#toc" + } + }, + "#using-a-recognizer": { + "current": { + "number": "5", + "spec": "Handwriting Recognition API", + "text": "Use a recognizer", + "url": "https://wicg.github.io/handwriting-recognition/#using-a-recognizer" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-hr-time-3.json b/bikeshed/spec-data/readonly/headings/headings-hr-time-3.json index 679cb1cfec..305241b336 100644 --- a/bikeshed/spec-data/readonly/headings/headings-hr-time-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-hr-time-3.json @@ -1,13 +1,13 @@ { "#acknowledgments": { "current": { - "number": "A", + "number": "C", "spec": "High Resolution Time", "text": "Acknowledgments", "url": "https://w3c.github.io/hr-time/#acknowledgments" }, "snapshot": { - "number": "A", + "number": "C", "spec": "High Resolution Time", "text": "Acknowledgments", "url": "https://www.w3.org/TR/hr-time-3/#acknowledgments" @@ -85,27 +85,69 @@ }, "#idl-index": { "current": { - "number": "", + "number": "B", "spec": "High Resolution Time", - "text": "12. IDL Index", + "text": "IDL Index", "url": "https://w3c.github.io/hr-time/#idl-index" }, "snapshot": { - "number": "", + "number": "B", "spec": "High Resolution Time", - "text": "12. IDL Index", + "text": "IDL Index", "url": "https://www.w3.org/TR/hr-time-3/#idl-index" } }, + "#index": { + "current": { + "number": "A", + "spec": "High Resolution Time", + "text": "Index", + "url": "https://w3c.github.io/hr-time/#index" + }, + "snapshot": { + "number": "A", + "spec": "High Resolution Time", + "text": "Index", + "url": "https://www.w3.org/TR/hr-time-3/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "A.2", + "spec": "High Resolution Time", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/hr-time/#index-defined-elsewhere" + }, + "snapshot": { + "number": "A.2", + "spec": "High Resolution Time", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/hr-time-3/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "A.1", + "spec": "High Resolution Time", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/hr-time/#index-defined-here" + }, + "snapshot": { + "number": "A.1", + "spec": "High Resolution Time", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/hr-time-3/#index-defined-here" + } + }, "#informative-references": { "current": { - "number": "B.2", + "number": "D.2", "spec": "High Resolution Time", "text": "Informative references", "url": "https://w3c.github.io/hr-time/#informative-references" }, "snapshot": { - "number": "B.2", + "number": "D.2", "spec": "High Resolution Time", "text": "Informative references", "url": "https://www.w3.org/TR/hr-time-3/#informative-references" @@ -141,13 +183,13 @@ }, "#normative-references": { "current": { - "number": "B.1", + "number": "D.1", "spec": "High Resolution Time", "text": "Normative references", "url": "https://w3c.github.io/hr-time/#normative-references" }, "snapshot": { - "number": "B.1", + "number": "D.1", "spec": "High Resolution Time", "text": "Normative references", "url": "https://www.w3.org/TR/hr-time-3/#normative-references" @@ -169,13 +211,13 @@ }, "#references": { "current": { - "number": "B", + "number": "D", "spec": "High Resolution Time", "text": "References", "url": "https://w3c.github.io/hr-time/#references" }, "snapshot": { - "number": "B", + "number": "D", "spec": "High Resolution Time", "text": "References", "url": "https://www.w3.org/TR/hr-time-3/#references" diff --git a/bikeshed/spec-data/readonly/headings/headings-html-aam-1.0.json b/bikeshed/spec-data/readonly/headings/headings-html-aam-1.0.json index bdde560a78..654cc73c68 100644 --- a/bikeshed/spec-data/readonly/headings/headings-html-aam-1.0.json +++ b/bikeshed/spec-data/readonly/headings/headings-html-aam-1.0.json @@ -13,6 +13,62 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#a-element-accessible-name-computation" } }, + "#a-no-href-attribute": { + "current": { + "number": "3.5.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "a (no href attribute)", + "url": "https://w3c.github.io/html-aam/#a-no-href-attribute" + }, + "snapshot": { + "number": "3.5.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "a (no href attribute)", + "url": "https://www.w3.org/TR/html-aam-1.0/#a-no-href-attribute" + } + }, + "#a-represents-a-hyperlink": { + "current": { + "number": "3.5.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "a (represents a hyperlink)", + "url": "https://w3c.github.io/html-aam/#a-represents-a-hyperlink" + }, + "snapshot": { + "number": "3.5.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "a (represents a hyperlink)", + "url": "https://www.w3.org/TR/html-aam-1.0/#a-represents-a-hyperlink" + } + }, + "#abbr": { + "current": { + "number": "3.5.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "abbr", + "url": "https://w3c.github.io/html-aam/#abbr" + }, + "snapshot": { + "number": "3.5.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "abbr", + "url": "https://www.w3.org/TR/html-aam-1.0/#abbr" + } + }, + "#abbr-0": { + "current": { + "number": "3.6.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "abbr", + "url": "https://w3c.github.io/html-aam/#abbr-0" + }, + "snapshot": { + "number": "3.6.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "abbr", + "url": "https://www.w3.org/TR/html-aam-1.0/#abbr-0" + } + }, "#accdesc-computation": { "current": { "number": "4.2", @@ -27,6 +83,34 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#accdesc-computation" } }, + "#accept": { + "current": { + "number": "3.6.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "accept", + "url": "https://w3c.github.io/html-aam/#accept" + }, + "snapshot": { + "number": "3.6.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "accept", + "url": "https://www.w3.org/TR/html-aam-1.0/#accept" + } + }, + "#accept-charset": { + "current": { + "number": "3.6.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "accept-charset", + "url": "https://w3c.github.io/html-aam/#accept-charset" + }, + "snapshot": { + "number": "3.6.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "accept-charset", + "url": "https://www.w3.org/TR/html-aam-1.0/#accept-charset" + } + }, "#accessible-name-and-description-computation": { "current": { "number": "4", @@ -41,6 +125,20 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#accessible-name-and-description-computation" } }, + "#accesskey": { + "current": { + "number": "3.6.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "accesskey", + "url": "https://w3c.github.io/html-aam/#accesskey" + }, + "snapshot": { + "number": "3.6.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "accesskey", + "url": "https://www.w3.org/TR/html-aam-1.0/#accesskey" + } + }, "#accname-computation": { "current": { "number": "4.1", @@ -57,32 +155,18 @@ }, "#ack_funders": { "current": { - "number": "A.2.2", + "number": "A.2.1", "spec": "HTML Accessibility API Mappings 1.0", "text": "Enabling funders", "url": "https://w3c.github.io/html-aam/#ack_funders" }, "snapshot": { - "number": "A.2.2", + "number": "A.2.1", "spec": "HTML Accessibility API Mappings 1.0", "text": "Enabling funders", "url": "https://www.w3.org/TR/html-aam-1.0/#ack_funders" } }, - "#ack_group": { - "current": { - "number": "A.2.1", - "spec": "HTML Accessibility API Mappings 1.0", - "text": "Participants active in the HTML Accessibility Task Force active at the time of publication", - "url": "https://w3c.github.io/html-aam/#ack_group" - }, - "snapshot": { - "number": "A.2.1", - "spec": "HTML Accessibility API Mappings 1.0", - "text": "Participants active in the HTML Accessibility Task Force active at the time of publication", - "url": "https://www.w3.org/TR/html-aam-1.0/#ack_group" - } - }, "#acknowledgements": { "current": { "number": "A.2", @@ -97,6 +181,76 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#acknowledgements" } }, + "#action": { + "current": { + "number": "3.6.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "action", + "url": "https://w3c.github.io/html-aam/#action" + }, + "snapshot": { + "number": "3.6.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "action", + "url": "https://www.w3.org/TR/html-aam-1.0/#action" + } + }, + "#address": { + "current": { + "number": "3.5.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "address", + "url": "https://w3c.github.io/html-aam/#address" + }, + "snapshot": { + "number": "3.5.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "address", + "url": "https://www.w3.org/TR/html-aam-1.0/#address" + } + }, + "#allow": { + "current": { + "number": "3.6.6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "allow", + "url": "https://w3c.github.io/html-aam/#allow" + }, + "snapshot": { + "number": "3.6.6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "allow", + "url": "https://www.w3.org/TR/html-aam-1.0/#allow" + } + }, + "#allowfullscreen": { + "current": { + "number": "3.6.7", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "allowfullscreen", + "url": "https://w3c.github.io/html-aam/#allowfullscreen" + }, + "snapshot": { + "number": "3.6.7", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "allowfullscreen", + "url": "https://www.w3.org/TR/html-aam-1.0/#allowfullscreen" + } + }, + "#alt": { + "current": { + "number": "3.6.8", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "alt", + "url": "https://w3c.github.io/html-aam/#alt" + }, + "snapshot": { + "number": "3.6.8", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "alt", + "url": "https://www.w3.org/TR/html-aam-1.0/#alt" + } + }, "#appendices": { "current": { "number": "A", @@ -125,424 +279,4148 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#area-element-accessible-name-computation" } }, - "#button-element-accessible-name-computation": { + "#area-no-href-attribute": { "current": { - "number": "4.1.4", + "number": "3.5.7", "spec": "HTML Accessibility API Mappings 1.0", - "text": "button Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#button-element-accessible-name-computation" + "text": "area (no href attribute)", + "url": "https://w3c.github.io/html-aam/#area-no-href-attribute" }, "snapshot": { - "number": "4.1.4", + "number": "3.5.7", "spec": "HTML Accessibility API Mappings 1.0", - "text": "button Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#button-element-accessible-name-computation" + "text": "area (no href attribute)", + "url": "https://www.w3.org/TR/html-aam-1.0/#area-no-href-attribute" } }, - "#changelog": { + "#area-represents-a-hyperlink": { "current": { - "number": "A.1", + "number": "3.5.6", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Change Log", - "url": "https://w3c.github.io/html-aam/#changelog" + "text": "area (represents a hyperlink)", + "url": "https://w3c.github.io/html-aam/#area-represents-a-hyperlink" }, "snapshot": { - "number": "A.1", + "number": "3.5.6", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Change Log", - "url": "https://www.w3.org/TR/html-aam-1.0/#changelog" + "text": "area (represents a hyperlink)", + "url": "https://www.w3.org/TR/html-aam-1.0/#area-represents-a-hyperlink" } }, - "#conformance": { + "#article": { "current": { - "number": "2", + "number": "3.5.8", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Conformance", - "url": "https://w3c.github.io/html-aam/#conformance" + "text": "article", + "url": "https://w3c.github.io/html-aam/#article" }, "snapshot": { - "number": "2", + "number": "3.5.8", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Conformance", - "url": "https://www.w3.org/TR/html-aam-1.0/#conformance" + "text": "article", + "url": "https://www.w3.org/TR/html-aam-1.0/#article" } }, - "#deprecated": { + "#as": { "current": { - "number": "2.1", + "number": "3.6.9", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Deprecated", - "url": "https://w3c.github.io/html-aam/#deprecated" + "text": "as", + "url": "https://w3c.github.io/html-aam/#as" }, "snapshot": { - "number": "2.1", + "number": "3.6.9", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Deprecated", - "url": "https://www.w3.org/TR/html-aam-1.0/#deprecated" + "text": "as", + "url": "https://www.w3.org/TR/html-aam-1.0/#as" } }, - "#fieldset-element-accessible-name-computation": { + "#aside-scoped-to-a-sectioning-content-element": { "current": { - "number": "4.1.5", + "number": "3.5.10", "spec": "HTML Accessibility API Mappings 1.0", - "text": "fieldset Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#fieldset-element-accessible-name-computation" + "text": "aside (scoped to a sectioning content element)", + "url": "https://w3c.github.io/html-aam/#aside-scoped-to-a-sectioning-content-element" }, "snapshot": { - "number": "4.1.5", + "number": "3.5.10", "spec": "HTML Accessibility API Mappings 1.0", - "text": "fieldset Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#fieldset-element-accessible-name-computation" + "text": "aside (scoped to a sectioning content element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#aside-scoped-to-a-sectioning-content-element" } }, - "#figure-element-accessible-name-computation": { + "#aside-scoped-to-the-body-or-main-element": { "current": { - "number": "4.1.9", + "number": "3.5.9", "spec": "HTML Accessibility API Mappings 1.0", - "text": "figure Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#figure-element-accessible-name-computation" + "text": "aside (scoped to the body or main element)", + "url": "https://w3c.github.io/html-aam/#aside-scoped-to-the-body-or-main-element" }, "snapshot": { - "number": "4.1.9", + "number": "3.5.9", "spec": "HTML Accessibility API Mappings 1.0", - "text": "figure Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#figure-element-accessible-name-computation" + "text": "aside (scoped to the body or main element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#aside-scoped-to-the-body-or-main-element" } }, - "#html-attribute-state-and-property-mappings": { + "#async": { "current": { - "number": "3.5", + "number": "3.6.10", "spec": "HTML Accessibility API Mappings 1.0", - "text": "HTML Attribute State and Property Mappings", - "url": "https://w3c.github.io/html-aam/#html-attribute-state-and-property-mappings" + "text": "async", + "url": "https://w3c.github.io/html-aam/#async" }, "snapshot": { - "number": "3.5", + "number": "3.6.10", "spec": "HTML Accessibility API Mappings 1.0", - "text": "HTML Attribute State and Property Mappings", - "url": "https://www.w3.org/TR/html-aam-1.0/#html-attribute-state-and-property-mappings" + "text": "async", + "url": "https://www.w3.org/TR/html-aam-1.0/#async" } }, - "#html-element-role-mappings": { + "#audio": { "current": { - "number": "3.4", + "number": "3.5.11", "spec": "HTML Accessibility API Mappings 1.0", - "text": "HTML Element Role Mappings", - "url": "https://w3c.github.io/html-aam/#html-element-role-mappings" + "text": "audio", + "url": "https://w3c.github.io/html-aam/#audio" }, "snapshot": { - "number": "3.4", + "number": "3.5.11", "spec": "HTML Accessibility API Mappings 1.0", - "text": "HTML Element Role Mappings", - "url": "https://www.w3.org/TR/html-aam-1.0/#html-element-role-mappings" + "text": "audio", + "url": "https://www.w3.org/TR/html-aam-1.0/#audio" } }, - "#iframe-element-accessible-name-computation": { + "#autocapitalize": { "current": { - "number": "4.1.15", + "number": "3.6.11", "spec": "HTML Accessibility API Mappings 1.0", - "text": "iframe Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#iframe-element-accessible-name-computation" + "text": "autocapitalize", + "url": "https://w3c.github.io/html-aam/#autocapitalize" }, "snapshot": { - "number": "4.1.15", + "number": "3.6.11", "spec": "HTML Accessibility API Mappings 1.0", - "text": "iframe Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#iframe-element-accessible-name-computation" + "text": "autocapitalize", + "url": "https://www.w3.org/TR/html-aam-1.0/#autocapitalize" } }, - "#img-element-accessible-name-computation": { + "#autocomplete": { "current": { - "number": "4.1.10", + "number": "3.6.12", "spec": "HTML Accessibility API Mappings 1.0", - "text": "img Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#img-element-accessible-name-computation" + "text": "autocomplete", + "url": "https://w3c.github.io/html-aam/#autocomplete" }, "snapshot": { - "number": "4.1.10", + "number": "3.6.12", "spec": "HTML Accessibility API Mappings 1.0", - "text": "img Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#img-element-accessible-name-computation" + "text": "autocomplete", + "url": "https://www.w3.org/TR/html-aam-1.0/#autocomplete" } }, - "#informative-references": { + "#autocomplete-0": { "current": { - "number": "B.2", + "number": "3.6.13", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Informative references", - "url": "https://w3c.github.io/html-aam/#informative-references" + "text": "autocomplete", + "url": "https://w3c.github.io/html-aam/#autocomplete-0" }, "snapshot": { - "number": "B.2", + "number": "3.6.13", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Informative references", - "url": "https://www.w3.org/TR/html-aam-1.0/#informative-references" + "text": "autocomplete", + "url": "https://www.w3.org/TR/html-aam-1.0/#autocomplete-0" } }, - "#input-type-button-input-type-submit-and-input-type-reset-accessible-name-computation": { + "#autofocus": { "current": { - "number": "4.1.2", + "number": "3.6.14", "spec": "HTML Accessibility API Mappings 1.0", - "text": "input type=\"button\", input type=\"submit\" and input type=\"reset\" Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#input-type-button-input-type-submit-and-input-type-reset-accessible-name-computation" + "text": "autofocus", + "url": "https://w3c.github.io/html-aam/#autofocus" }, "snapshot": { - "number": "4.1.2", + "number": "3.6.14", "spec": "HTML Accessibility API Mappings 1.0", - "text": "input type=\"button\", input type=\"submit\" and input type=\"reset\" Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-button-input-type-submit-and-input-type-reset-accessible-name-computation" + "text": "autofocus", + "url": "https://www.w3.org/TR/html-aam-1.0/#autofocus" } }, - "#input-type-image-accessible-name-computation": { + "#autonomous-custom-element": { "current": { - "number": "4.1.3", + "number": "3.5.12", "spec": "HTML Accessibility API Mappings 1.0", - "text": "input type=\"image\" Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#input-type-image-accessible-name-computation" + "text": "autonomous custom element", + "url": "https://w3c.github.io/html-aam/#autonomous-custom-element" }, "snapshot": { - "number": "4.1.3", + "number": "3.5.12", "spec": "HTML Accessibility API Mappings 1.0", - "text": "input type=\"image\" Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-image-accessible-name-computation" + "text": "autonomous custom element", + "url": "https://www.w3.org/TR/html-aam-1.0/#autonomous-custom-element" } }, - "#input-type-text-input-type-password-input-type-number-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation": { + "#autoplay": { "current": { - "number": "4.1.1", + "number": "3.6.15", "spec": "HTML Accessibility API Mappings 1.0", - "text": "input type=\"text\", input type=\"password\", input type=\"number\", input type=\"search\", input type=\"tel\", input type=\"email\", input type=\"url\" and textarea Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#input-type-text-input-type-password-input-type-number-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation" + "text": "autoplay", + "url": "https://w3c.github.io/html-aam/#autoplay" }, "snapshot": { - "number": "4.1.1", + "number": "3.6.15", "spec": "HTML Accessibility API Mappings 1.0", - "text": "input type=\"text\", input type=\"password\", input type=\"number\", input type=\"search\", input type=\"tel\", input type=\"email\", input type=\"url\" and textarea Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-text-input-type-password-input-type-number-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation" + "text": "autoplay", + "url": "https://www.w3.org/TR/html-aam-1.0/#autoplay" } }, - "#intro": { + "#b": { "current": { - "number": "1", + "number": "3.5.13", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Introduction", - "url": "https://w3c.github.io/html-aam/#intro" + "text": "b", + "url": "https://w3c.github.io/html-aam/#b" }, "snapshot": { - "number": "1", + "number": "3.5.13", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Introduction", - "url": "https://www.w3.org/TR/html-aam-1.0/#intro" + "text": "b", + "url": "https://www.w3.org/TR/html-aam-1.0/#b" } }, - "#intro_aapi": { + "#base": { "current": { - "number": "1.1", + "number": "3.5.14", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Accessibility APIs", - "url": "https://w3c.github.io/html-aam/#intro_aapi" + "text": "base", + "url": "https://w3c.github.io/html-aam/#base" }, "snapshot": { - "number": "1.1", + "number": "3.5.14", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Accessibility APIs", - "url": "https://www.w3.org/TR/html-aam-1.0/#intro_aapi" + "text": "base", + "url": "https://www.w3.org/TR/html-aam-1.0/#base" } }, - "#mapping-html-to-accessibility-apis": { + "#bdi": { "current": { - "number": "3", + "number": "3.5.15", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Mapping HTML to Accessibility APIs", - "url": "https://w3c.github.io/html-aam/#mapping-html-to-accessibility-apis" + "text": "bdi", + "url": "https://w3c.github.io/html-aam/#bdi" }, "snapshot": { - "number": "3", + "number": "3.5.15", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Mapping HTML to Accessibility APIs", - "url": "https://www.w3.org/TR/html-aam-1.0/#mapping-html-to-accessibility-apis" + "text": "bdi", + "url": "https://www.w3.org/TR/html-aam-1.0/#bdi" } }, - "#mapping_conflicts": { + "#bdo": { "current": { - "number": "3.2", + "number": "3.5.16", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Conflicts Between Native Markup Semantics and WAI-ARIA", - "url": "https://w3c.github.io/html-aam/#mapping_conflicts" + "text": "bdo", + "url": "https://w3c.github.io/html-aam/#bdo" }, "snapshot": { - "number": "3.2", + "number": "3.5.16", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Conflicts Between Native Markup Semantics and WAI-ARIA", - "url": "https://www.w3.org/TR/html-aam-1.0/#mapping_conflicts" + "text": "bdo", + "url": "https://www.w3.org/TR/html-aam-1.0/#bdo" } }, - "#mapping_general": { + "#blocking": { "current": { - "number": "3.1", + "number": "3.6.16", "spec": "HTML Accessibility API Mappings 1.0", - "text": "General Rules for Exposing WAI-ARIA Semantics", - "url": "https://w3c.github.io/html-aam/#mapping_general" + "text": "blocking", + "url": "https://w3c.github.io/html-aam/#blocking" }, "snapshot": { - "number": "3.1", + "number": "3.6.16", "spec": "HTML Accessibility API Mappings 1.0", - "text": "General Rules for Exposing WAI-ARIA Semantics", - "url": "https://www.w3.org/TR/html-aam-1.0/#mapping_general" + "text": "blocking", + "url": "https://www.w3.org/TR/html-aam-1.0/#blocking" } }, - "#mapping_nodirect": { + "#blockquote": { "current": { - "number": "3.3", + "number": "3.5.17", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Exposing HTML Features That Do Not Directly Map to Accessibility APIs", - "url": "https://w3c.github.io/html-aam/#mapping_nodirect" + "text": "blockquote", + "url": "https://w3c.github.io/html-aam/#blockquote" }, "snapshot": { - "number": "3.3", + "number": "3.5.17", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Exposing HTML Features That Do Not Directly Map to Accessibility APIs", - "url": "https://www.w3.org/TR/html-aam-1.0/#mapping_nodirect" + "text": "blockquote", + "url": "https://www.w3.org/TR/html-aam-1.0/#blockquote" } }, - "#normative-references": { + "#body": { "current": { - "number": "B.1", + "number": "3.5.18", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Normative references", - "url": "https://w3c.github.io/html-aam/#normative-references" + "text": "body", + "url": "https://w3c.github.io/html-aam/#body" }, "snapshot": { - "number": "B.1", + "number": "3.5.18", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Normative references", - "url": "https://www.w3.org/TR/html-aam-1.0/#normative-references" + "text": "body", + "url": "https://www.w3.org/TR/html-aam-1.0/#body" } }, - "#other-form-elements-accessible-name-computation": { + "#br": { "current": { - "number": "4.1.7", + "number": "3.5.19", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Other Form Elements Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#other-form-elements-accessible-name-computation" + "text": "br", + "url": "https://w3c.github.io/html-aam/#br" }, "snapshot": { - "number": "4.1.7", + "number": "3.5.19", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Other Form Elements Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#other-form-elements-accessible-name-computation" + "text": "br", + "url": "https://www.w3.org/TR/html-aam-1.0/#br" } }, - "#output-element-accessible-name-computation": { + "#button": { "current": { - "number": "4.1.6", + "number": "3.5.20", "spec": "HTML Accessibility API Mappings 1.0", - "text": "output Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#output-element-accessible-name-computation" + "text": "button", + "url": "https://w3c.github.io/html-aam/#button" }, "snapshot": { - "number": "4.1.6", + "number": "3.5.20", "spec": "HTML Accessibility API Mappings 1.0", - "text": "output Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#output-element-accessible-name-computation" + "text": "button", + "url": "https://www.w3.org/TR/html-aam-1.0/#button" + } + }, + "#button-element-accessible-name-computation": { + "current": { + "number": "4.1.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "button Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#button-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "button Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#button-element-accessible-name-computation" + } + }, + "#canvas": { + "current": { + "number": "3.5.21", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "canvas", + "url": "https://w3c.github.io/html-aam/#canvas" + }, + "snapshot": { + "number": "3.5.21", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "canvas", + "url": "https://www.w3.org/TR/html-aam-1.0/#canvas" + } + }, + "#caption": { + "current": { + "number": "3.5.22", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "caption", + "url": "https://w3c.github.io/html-aam/#caption" + }, + "snapshot": { + "number": "3.5.22", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "caption", + "url": "https://www.w3.org/TR/html-aam-1.0/#caption" + } + }, + "#changelog": { + "current": { + "number": "A.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Change Log", + "url": "https://w3c.github.io/html-aam/#changelog" + }, + "snapshot": { + "number": "A.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Change Log", + "url": "https://www.w3.org/TR/html-aam-1.0/#changelog" + } + }, + "#charset": { + "current": { + "number": "3.6.17", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "charset", + "url": "https://w3c.github.io/html-aam/#charset" + }, + "snapshot": { + "number": "3.6.17", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "charset", + "url": "https://www.w3.org/TR/html-aam-1.0/#charset" + } + }, + "#checked-if-absent": { + "current": { + "number": "3.6.19", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "checked (if absent)", + "url": "https://w3c.github.io/html-aam/#checked-if-absent" + }, + "snapshot": { + "number": "3.6.19", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "checked (if absent)", + "url": "https://www.w3.org/TR/html-aam-1.0/#checked-if-absent" + } + }, + "#checked-if-present": { + "current": { + "number": "3.6.18", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "checked (if present)", + "url": "https://w3c.github.io/html-aam/#checked-if-present" + }, + "snapshot": { + "number": "3.6.18", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "checked (if present)", + "url": "https://www.w3.org/TR/html-aam-1.0/#checked-if-present" + } + }, + "#cite": { + "current": { + "number": "3.5.23", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "cite", + "url": "https://w3c.github.io/html-aam/#cite" + }, + "snapshot": { + "number": "3.5.23", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "cite", + "url": "https://www.w3.org/TR/html-aam-1.0/#cite" + } + }, + "#cite-0": { + "current": { + "number": "3.6.20", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "cite", + "url": "https://w3c.github.io/html-aam/#cite-0" + }, + "snapshot": { + "number": "3.6.20", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "cite", + "url": "https://www.w3.org/TR/html-aam-1.0/#cite-0" + } + }, + "#class": { + "current": { + "number": "3.6.21", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "class", + "url": "https://w3c.github.io/html-aam/#class" + }, + "snapshot": { + "number": "3.6.21", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "class", + "url": "https://www.w3.org/TR/html-aam-1.0/#class" + } + }, + "#code": { + "current": { + "number": "3.5.24", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "code", + "url": "https://w3c.github.io/html-aam/#code" + }, + "snapshot": { + "number": "3.5.24", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "code", + "url": "https://www.w3.org/TR/html-aam-1.0/#code" + } + }, + "#col": { + "current": { + "number": "3.5.25", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "col", + "url": "https://w3c.github.io/html-aam/#col" + }, + "snapshot": { + "number": "3.5.25", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "col", + "url": "https://www.w3.org/TR/html-aam-1.0/#col" + } + }, + "#colgroup": { + "current": { + "number": "3.5.26", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "colgroup", + "url": "https://w3c.github.io/html-aam/#colgroup" + }, + "snapshot": { + "number": "3.5.26", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "colgroup", + "url": "https://www.w3.org/TR/html-aam-1.0/#colgroup" + } + }, + "#color": { + "current": { + "number": "3.6.22", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "color", + "url": "https://w3c.github.io/html-aam/#color" + }, + "snapshot": { + "number": "3.6.22", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "color", + "url": "https://www.w3.org/TR/html-aam-1.0/#color" + } + }, + "#cols": { + "current": { + "number": "3.6.23", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "cols", + "url": "https://w3c.github.io/html-aam/#cols" + }, + "snapshot": { + "number": "3.6.23", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "cols", + "url": "https://www.w3.org/TR/html-aam-1.0/#cols" + } + }, + "#colspan": { + "current": { + "number": "3.6.24", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "colspan", + "url": "https://w3c.github.io/html-aam/#colspan" + }, + "snapshot": { + "number": "3.6.24", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "colspan", + "url": "https://www.w3.org/TR/html-aam-1.0/#colspan" + } + }, + "#conformance": { + "current": { + "number": "2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Conformance", + "url": "https://w3c.github.io/html-aam/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Conformance", + "url": "https://www.w3.org/TR/html-aam-1.0/#conformance" + } + }, + "#content": { + "current": { + "number": "3.6.25", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "content", + "url": "https://w3c.github.io/html-aam/#content" + }, + "snapshot": { + "number": "3.6.25", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "content", + "url": "https://www.w3.org/TR/html-aam-1.0/#content" + } + }, + "#contenteditable": { + "current": { + "number": "3.6.26", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "contenteditable", + "url": "https://w3c.github.io/html-aam/#contenteditable" + }, + "snapshot": { + "number": "3.6.26", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "contenteditable", + "url": "https://www.w3.org/TR/html-aam-1.0/#contenteditable" + } + }, + "#controls": { + "current": { + "number": "3.6.27", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "controls", + "url": "https://w3c.github.io/html-aam/#controls" + }, + "snapshot": { + "number": "3.6.27", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "controls", + "url": "https://www.w3.org/TR/html-aam-1.0/#controls" + } + }, + "#coords": { + "current": { + "number": "3.6.28", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "coords", + "url": "https://w3c.github.io/html-aam/#coords" + }, + "snapshot": { + "number": "3.6.28", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "coords", + "url": "https://www.w3.org/TR/html-aam-1.0/#coords" + } + }, + "#crossorigin": { + "current": { + "number": "3.6.29", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "crossorigin", + "url": "https://w3c.github.io/html-aam/#crossorigin" + }, + "snapshot": { + "number": "3.6.29", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "crossorigin", + "url": "https://www.w3.org/TR/html-aam-1.0/#crossorigin" + } + }, + "#data": { + "current": { + "number": "3.5.27", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "data", + "url": "https://w3c.github.io/html-aam/#data" + }, + "snapshot": { + "number": "3.5.27", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "data", + "url": "https://www.w3.org/TR/html-aam-1.0/#data" + } + }, + "#data-0": { + "current": { + "number": "3.6.30", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "data", + "url": "https://w3c.github.io/html-aam/#data-0" + }, + "snapshot": { + "number": "3.6.30", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "data", + "url": "https://www.w3.org/TR/html-aam-1.0/#data-0" + } + }, + "#datalist-represents-pre-defined-options-for-input-element": { + "current": { + "number": "3.5.28", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "datalist (represents pre-defined options for input element)", + "url": "https://w3c.github.io/html-aam/#datalist-represents-pre-defined-options-for-input-element" + }, + "snapshot": { + "number": "3.5.28", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "datalist (represents pre-defined options for input element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#datalist-represents-pre-defined-options-for-input-element" + } + }, + "#datetime": { + "current": { + "number": "3.6.31", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "datetime", + "url": "https://w3c.github.io/html-aam/#datetime" + }, + "snapshot": { + "number": "3.6.31", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "datetime", + "url": "https://www.w3.org/TR/html-aam-1.0/#datetime" + } + }, + "#datetime-0": { + "current": { + "number": "3.6.32", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "datetime", + "url": "https://w3c.github.io/html-aam/#datetime-0" + }, + "snapshot": { + "number": "3.6.32", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "datetime", + "url": "https://www.w3.org/TR/html-aam-1.0/#datetime-0" + } + }, + "#dd": { + "current": { + "number": "3.5.29", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dd", + "url": "https://w3c.github.io/html-aam/#dd" + }, + "snapshot": { + "number": "3.5.29", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dd", + "url": "https://www.w3.org/TR/html-aam-1.0/#dd" + } + }, + "#decoding": { + "current": { + "number": "3.6.33", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "decoding", + "url": "https://w3c.github.io/html-aam/#decoding" + }, + "snapshot": { + "number": "3.6.33", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "decoding", + "url": "https://www.w3.org/TR/html-aam-1.0/#decoding" + } + }, + "#default": { + "current": { + "number": "3.6.34", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "default", + "url": "https://w3c.github.io/html-aam/#default" + }, + "snapshot": { + "number": "3.6.34", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "default", + "url": "https://www.w3.org/TR/html-aam-1.0/#default" + } + }, + "#defer": { + "current": { + "number": "3.6.35", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "defer", + "url": "https://w3c.github.io/html-aam/#defer" + }, + "snapshot": { + "number": "3.6.35", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "defer", + "url": "https://www.w3.org/TR/html-aam-1.0/#defer" + } + }, + "#del": { + "current": { + "number": "3.5.30", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "del", + "url": "https://w3c.github.io/html-aam/#del" + }, + "snapshot": { + "number": "3.5.30", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "del", + "url": "https://www.w3.org/TR/html-aam-1.0/#del" + } + }, + "#deprecated": { + "current": { + "number": "2.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Deprecated", + "url": "https://w3c.github.io/html-aam/#deprecated" + }, + "snapshot": { + "number": "2.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Deprecated", + "url": "https://www.w3.org/TR/html-aam-1.0/#deprecated" + } + }, + "#details": { + "current": { + "number": "3.5.31", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "details", + "url": "https://w3c.github.io/html-aam/#details" + }, + "snapshot": { + "number": "3.5.31", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "details", + "url": "https://www.w3.org/TR/html-aam-1.0/#details" + } + }, + "#dfn": { + "current": { + "number": "3.5.32", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dfn", + "url": "https://w3c.github.io/html-aam/#dfn" + }, + "snapshot": { + "number": "3.5.32", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dfn", + "url": "https://www.w3.org/TR/html-aam-1.0/#dfn" + } + }, + "#dialog": { + "current": { + "number": "3.5.33", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dialog", + "url": "https://w3c.github.io/html-aam/#dialog" + }, + "snapshot": { + "number": "3.5.33", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dialog", + "url": "https://www.w3.org/TR/html-aam-1.0/#dialog" + } + }, + "#dir": { + "current": { + "number": "3.6.36", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dir", + "url": "https://w3c.github.io/html-aam/#dir" + }, + "snapshot": { + "number": "3.6.36", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dir", + "url": "https://www.w3.org/TR/html-aam-1.0/#dir" + } + }, + "#dir-0": { + "current": { + "number": "3.6.37", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dir", + "url": "https://w3c.github.io/html-aam/#dir-0" + }, + "snapshot": { + "number": "3.6.37", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dir", + "url": "https://www.w3.org/TR/html-aam-1.0/#dir-0" + } + }, + "#dirname": { + "current": { + "number": "3.6.38", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dirname", + "url": "https://w3c.github.io/html-aam/#dirname" + }, + "snapshot": { + "number": "3.6.38", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dirname", + "url": "https://www.w3.org/TR/html-aam-1.0/#dirname" + } + }, + "#disabled": { + "current": { + "number": "3.6.39", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "disabled", + "url": "https://w3c.github.io/html-aam/#disabled" + }, + "snapshot": { + "number": "3.6.39", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "disabled", + "url": "https://www.w3.org/TR/html-aam-1.0/#disabled" + } + }, + "#disabled-0": { + "current": { + "number": "3.6.40", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "disabled", + "url": "https://w3c.github.io/html-aam/#disabled-0" + }, + "snapshot": { + "number": "3.6.40", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "disabled", + "url": "https://www.w3.org/TR/html-aam-1.0/#disabled-0" + } + }, + "#disabled-1": { + "current": { + "number": "3.6.41", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "disabled", + "url": "https://w3c.github.io/html-aam/#disabled-1" + }, + "snapshot": { + "number": "3.6.41", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "disabled", + "url": "https://www.w3.org/TR/html-aam-1.0/#disabled-1" + } + }, + "#div": { + "current": { + "number": "3.5.34", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "div", + "url": "https://w3c.github.io/html-aam/#div" + }, + "snapshot": { + "number": "3.5.34", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "div", + "url": "https://www.w3.org/TR/html-aam-1.0/#div" + } + }, + "#dl": { + "current": { + "number": "3.5.35", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dl", + "url": "https://w3c.github.io/html-aam/#dl" + }, + "snapshot": { + "number": "3.5.35", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dl", + "url": "https://www.w3.org/TR/html-aam-1.0/#dl" + } + }, + "#download": { + "current": { + "number": "3.6.42", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "download", + "url": "https://w3c.github.io/html-aam/#download" + }, + "snapshot": { + "number": "3.6.42", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "download", + "url": "https://www.w3.org/TR/html-aam-1.0/#download" + } + }, + "#draggable": { + "current": { + "number": "3.6.43", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "draggable", + "url": "https://w3c.github.io/html-aam/#draggable" + }, + "snapshot": { + "number": "3.6.43", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "draggable", + "url": "https://www.w3.org/TR/html-aam-1.0/#draggable" + } + }, + "#dt": { + "current": { + "number": "3.5.36", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dt", + "url": "https://w3c.github.io/html-aam/#dt" + }, + "snapshot": { + "number": "3.5.36", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "dt", + "url": "https://www.w3.org/TR/html-aam-1.0/#dt" + } + }, + "#em": { + "current": { + "number": "3.5.37", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "em", + "url": "https://w3c.github.io/html-aam/#em" + }, + "snapshot": { + "number": "3.5.37", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "em", + "url": "https://www.w3.org/TR/html-aam-1.0/#em" + } + }, + "#embed": { + "current": { + "number": "3.5.38", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "embed", + "url": "https://w3c.github.io/html-aam/#embed" + }, + "snapshot": { + "number": "3.5.38", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "embed", + "url": "https://www.w3.org/TR/html-aam-1.0/#embed" + } + }, + "#enctype": { + "current": { + "number": "3.6.44", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "enctype", + "url": "https://w3c.github.io/html-aam/#enctype" + }, + "snapshot": { + "number": "3.6.44", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "enctype", + "url": "https://www.w3.org/TR/html-aam-1.0/#enctype" + } + }, + "#enterkeyhint": { + "current": { + "number": "3.6.45", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "enterkeyhint", + "url": "https://w3c.github.io/html-aam/#enterkeyhint" + }, + "snapshot": { + "number": "3.6.45", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "enterkeyhint", + "url": "https://www.w3.org/TR/html-aam-1.0/#enterkeyhint" + } + }, + "#exposing-html-features-that-require-a-minimum-role": { + "current": { + "number": "3.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Exposing HTML Features That Require a Minimum Role", + "url": "https://w3c.github.io/html-aam/#exposing-html-features-that-require-a-minimum-role" + }, + "snapshot": { + "number": "3.4", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Exposing HTML Features That Require a Minimum Role", + "url": "https://www.w3.org/TR/html-aam-1.0/#exposing-html-features-that-require-a-minimum-role" + } + }, + "#fetchpriority": { + "current": { + "number": "3.6.46", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "fetchpriority", + "url": "https://w3c.github.io/html-aam/#fetchpriority" + }, + "snapshot": { + "number": "3.6.46", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "fetchpriority", + "url": "https://www.w3.org/TR/html-aam-1.0/#fetchpriority" + } + }, + "#fieldset": { + "current": { + "number": "3.5.39", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "fieldset", + "url": "https://w3c.github.io/html-aam/#fieldset" + }, + "snapshot": { + "number": "3.5.39", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "fieldset", + "url": "https://www.w3.org/TR/html-aam-1.0/#fieldset" + } + }, + "#fieldset-element-accessible-name-computation": { + "current": { + "number": "4.1.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "fieldset Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#fieldset-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "fieldset Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#fieldset-element-accessible-name-computation" + } + }, + "#figcaption": { + "current": { + "number": "3.5.40", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "figcaption", + "url": "https://w3c.github.io/html-aam/#figcaption" + }, + "snapshot": { + "number": "3.5.40", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "figcaption", + "url": "https://www.w3.org/TR/html-aam-1.0/#figcaption" + } + }, + "#figure": { + "current": { + "number": "3.5.41", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "figure", + "url": "https://w3c.github.io/html-aam/#figure" + }, + "snapshot": { + "number": "3.5.41", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "figure", + "url": "https://www.w3.org/TR/html-aam-1.0/#figure" + } + }, + "#figure-element-accessible-name-computation": { + "current": { + "number": "4.1.9", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "figure Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#figure-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.9", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "figure Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#figure-element-accessible-name-computation" + } + }, + "#footer-scoped-to-the-body-element": { + "current": { + "number": "3.5.42", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "footer (scoped to the body element)", + "url": "https://w3c.github.io/html-aam/#footer-scoped-to-the-body-element" + }, + "snapshot": { + "number": "3.5.42", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "footer (scoped to the body element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#footer-scoped-to-the-body-element" + } + }, + "#footer-scoped-to-the-main-element-a-sectioning-content-element": { + "current": { + "number": "3.5.43", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "footer (scoped to the main element,a sectioning content element)", + "url": "https://w3c.github.io/html-aam/#footer-scoped-to-the-main-element-a-sectioning-content-element" + }, + "snapshot": { + "number": "3.5.43", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "footer (scoped to the main element,a sectioning content element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#footer-scoped-to-the-main-element-a-sectioning-content-element" + } + }, + "#for": { + "current": { + "number": "3.6.47", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "for", + "url": "https://w3c.github.io/html-aam/#for" + }, + "snapshot": { + "number": "3.6.47", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "for", + "url": "https://www.w3.org/TR/html-aam-1.0/#for" + } + }, + "#for-0": { + "current": { + "number": "3.6.48", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "for", + "url": "https://w3c.github.io/html-aam/#for-0" + }, + "snapshot": { + "number": "3.6.48", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "for", + "url": "https://www.w3.org/TR/html-aam-1.0/#for-0" + } + }, + "#form": { + "current": { + "number": "3.5.44", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "form", + "url": "https://w3c.github.io/html-aam/#form" + }, + "snapshot": { + "number": "3.5.44", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "form", + "url": "https://www.w3.org/TR/html-aam-1.0/#form" + } + }, + "#form-0": { + "current": { + "number": "3.6.49", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "form", + "url": "https://w3c.github.io/html-aam/#form-0" + }, + "snapshot": { + "number": "3.6.49", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "form", + "url": "https://www.w3.org/TR/html-aam-1.0/#form-0" + } + }, + "#form-associated-custom-element": { + "current": { + "number": "3.5.45", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "form-associated custom element", + "url": "https://w3c.github.io/html-aam/#form-associated-custom-element" + }, + "snapshot": { + "number": "3.5.45", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "form-associated custom element", + "url": "https://www.w3.org/TR/html-aam-1.0/#form-associated-custom-element" + } + }, + "#formaction": { + "current": { + "number": "3.6.50", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formaction", + "url": "https://w3c.github.io/html-aam/#formaction" + }, + "snapshot": { + "number": "3.6.50", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formaction", + "url": "https://www.w3.org/TR/html-aam-1.0/#formaction" + } + }, + "#formenctype": { + "current": { + "number": "3.6.51", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formenctype", + "url": "https://w3c.github.io/html-aam/#formenctype" + }, + "snapshot": { + "number": "3.6.51", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formenctype", + "url": "https://www.w3.org/TR/html-aam-1.0/#formenctype" + } + }, + "#formmethod": { + "current": { + "number": "3.6.52", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formmethod", + "url": "https://w3c.github.io/html-aam/#formmethod" + }, + "snapshot": { + "number": "3.6.52", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formmethod", + "url": "https://www.w3.org/TR/html-aam-1.0/#formmethod" + } + }, + "#formnovalidate": { + "current": { + "number": "3.6.53", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formnovalidate", + "url": "https://w3c.github.io/html-aam/#formnovalidate" + }, + "snapshot": { + "number": "3.6.53", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formnovalidate", + "url": "https://www.w3.org/TR/html-aam-1.0/#formnovalidate" + } + }, + "#formtarget": { + "current": { + "number": "3.6.54", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formtarget", + "url": "https://w3c.github.io/html-aam/#formtarget" + }, + "snapshot": { + "number": "3.6.54", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "formtarget", + "url": "https://www.w3.org/TR/html-aam-1.0/#formtarget" + } + }, + "#h1-h2-h3-h4-h5-and-h6": { + "current": { + "number": "3.5.46", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "h1, h2, h3, h4, h5, and h6", + "url": "https://w3c.github.io/html-aam/#h1-h2-h3-h4-h5-and-h6" + }, + "snapshot": { + "number": "3.5.46", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "h1, h2, h3, h4, h5, and h6", + "url": "https://www.w3.org/TR/html-aam-1.0/#h1-h2-h3-h4-h5-and-h6" + } + }, + "#head": { + "current": { + "number": "3.5.47", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "head", + "url": "https://w3c.github.io/html-aam/#head" + }, + "snapshot": { + "number": "3.5.47", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "head", + "url": "https://www.w3.org/TR/html-aam-1.0/#head" + } + }, + "#header-scoped-to-the-body-element": { + "current": { + "number": "3.5.48", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "header (scoped to the body element)", + "url": "https://w3c.github.io/html-aam/#header-scoped-to-the-body-element" + }, + "snapshot": { + "number": "3.5.48", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "header (scoped to the body element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#header-scoped-to-the-body-element" + } + }, + "#header-scoped-to-the-main-element-or-a-sectioning-content-element": { + "current": { + "number": "3.5.49", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "header (scoped to the main element, or a sectioning content element)", + "url": "https://w3c.github.io/html-aam/#header-scoped-to-the-main-element-or-a-sectioning-content-element" + }, + "snapshot": { + "number": "3.5.49", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "header (scoped to the main element, or a sectioning content element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#header-scoped-to-the-main-element-or-a-sectioning-content-element" + } + }, + "#headers": { + "current": { + "number": "3.6.55", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "headers", + "url": "https://w3c.github.io/html-aam/#headers" + }, + "snapshot": { + "number": "3.6.55", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "headers", + "url": "https://www.w3.org/TR/html-aam-1.0/#headers" + } + }, + "#height": { + "current": { + "number": "3.6.56", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "height", + "url": "https://w3c.github.io/html-aam/#height" + }, + "snapshot": { + "number": "3.6.56", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "height", + "url": "https://www.w3.org/TR/html-aam-1.0/#height" + } + }, + "#hgroup": { + "current": { + "number": "3.5.50", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hgroup", + "url": "https://w3c.github.io/html-aam/#hgroup" + }, + "snapshot": { + "number": "3.5.50", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hgroup", + "url": "https://www.w3.org/TR/html-aam-1.0/#hgroup" + } + }, + "#hidden": { + "current": { + "number": "3.6.57", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hidden", + "url": "https://w3c.github.io/html-aam/#hidden" + }, + "snapshot": { + "number": "3.6.57", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hidden", + "url": "https://www.w3.org/TR/html-aam-1.0/#hidden" + } + }, + "#high": { + "current": { + "number": "3.6.58", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "high", + "url": "https://w3c.github.io/html-aam/#high" + }, + "snapshot": { + "number": "3.6.58", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "high", + "url": "https://www.w3.org/TR/html-aam-1.0/#high" + } + }, + "#hr": { + "current": { + "number": "3.5.51", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hr", + "url": "https://w3c.github.io/html-aam/#hr" + }, + "snapshot": { + "number": "3.5.51", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hr", + "url": "https://www.w3.org/TR/html-aam-1.0/#hr" + } + }, + "#href": { + "current": { + "number": "3.6.59", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "href", + "url": "https://w3c.github.io/html-aam/#href" + }, + "snapshot": { + "number": "3.6.59", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "href", + "url": "https://www.w3.org/TR/html-aam-1.0/#href" + } + }, + "#href-0": { + "current": { + "number": "3.6.60", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "href", + "url": "https://w3c.github.io/html-aam/#href-0" + }, + "snapshot": { + "number": "3.6.60", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "href", + "url": "https://www.w3.org/TR/html-aam-1.0/#href-0" + } + }, + "#hreflang": { + "current": { + "number": "3.6.61", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hreflang", + "url": "https://w3c.github.io/html-aam/#hreflang" + }, + "snapshot": { + "number": "3.6.61", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "hreflang", + "url": "https://www.w3.org/TR/html-aam-1.0/#hreflang" + } + }, + "#html": { + "current": { + "number": "3.5.52", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "html", + "url": "https://w3c.github.io/html-aam/#html" + }, + "snapshot": { + "number": "3.5.52", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "html", + "url": "https://www.w3.org/TR/html-aam-1.0/#html" + } + }, + "#html-attribute-state-and-property-mappings": { + "current": { + "number": "3.6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "HTML Attribute State and Property Mappings", + "url": "https://w3c.github.io/html-aam/#html-attribute-state-and-property-mappings" + }, + "snapshot": { + "number": "3.6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "HTML Attribute State and Property Mappings", + "url": "https://www.w3.org/TR/html-aam-1.0/#html-attribute-state-and-property-mappings" + } + }, + "#html-element-role-mappings": { + "current": { + "number": "3.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "HTML Element Role Mappings", + "url": "https://w3c.github.io/html-aam/#html-element-role-mappings" + }, + "snapshot": { + "number": "3.5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "HTML Element Role Mappings", + "url": "https://www.w3.org/TR/html-aam-1.0/#html-element-role-mappings" + } + }, + "#http-equiv": { + "current": { + "number": "3.6.62", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "http-equiv", + "url": "https://w3c.github.io/html-aam/#http-equiv" + }, + "snapshot": { + "number": "3.6.62", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "http-equiv", + "url": "https://www.w3.org/TR/html-aam-1.0/#http-equiv" + } + }, + "#i": { + "current": { + "number": "3.5.53", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "i", + "url": "https://w3c.github.io/html-aam/#i" + }, + "snapshot": { + "number": "3.5.53", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "i", + "url": "https://www.w3.org/TR/html-aam-1.0/#i" + } + }, + "#id": { + "current": { + "number": "3.6.63", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "id", + "url": "https://w3c.github.io/html-aam/#id" + }, + "snapshot": { + "number": "3.6.63", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "id", + "url": "https://www.w3.org/TR/html-aam-1.0/#id" + } + }, + "#iframe": { + "current": { + "number": "3.5.54", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "iframe", + "url": "https://w3c.github.io/html-aam/#iframe" + }, + "snapshot": { + "number": "3.5.54", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "iframe", + "url": "https://www.w3.org/TR/html-aam-1.0/#iframe" + } + }, + "#iframe-element-accessible-name-computation": { + "current": { + "number": "4.1.15", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "iframe Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#iframe-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.15", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "iframe Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#iframe-element-accessible-name-computation" + } + }, + "#img": { + "current": { + "number": "3.5.55", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "img", + "url": "https://w3c.github.io/html-aam/#img" + }, + "snapshot": { + "number": "3.5.55", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "img", + "url": "https://www.w3.org/TR/html-aam-1.0/#img" + } + }, + "#img-alt-attribute-value-is-the-empty-string-i-e-alt-or-alt-with-no-value-in-the-markup": { + "current": { + "number": "3.5.56", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "img (alt attribute value is the empty string, i.e. alt=\"\" or alt with no value in the markup)", + "url": "https://w3c.github.io/html-aam/#img-alt-attribute-value-is-the-empty-string-i-e-alt-or-alt-with-no-value-in-the-markup" + }, + "snapshot": { + "number": "3.5.56", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "img (alt attribute value is the empty string, i.e. alt=\"\" or alt with no value in the markup)", + "url": "https://www.w3.org/TR/html-aam-1.0/#img-alt-attribute-value-is-the-empty-string-i-e-alt-or-alt-with-no-value-in-the-markup" + } + }, + "#img-element-accessible-name-computation": { + "current": { + "number": "4.1.10", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "img Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#img-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.10", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "img Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#img-element-accessible-name-computation" + } + }, + "#indeterminate-idl": { + "current": { + "number": "3.6.65", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "indeterminate [IDL]", + "url": "https://w3c.github.io/html-aam/#indeterminate-idl" + }, + "snapshot": { + "number": "3.6.65", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "indeterminate [IDL]", + "url": "https://www.w3.org/TR/html-aam-1.0/#indeterminate-idl" + } + }, + "#inert": { + "current": { + "number": "3.6.64", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "inert", + "url": "https://w3c.github.io/html-aam/#inert" + }, + "snapshot": { + "number": "3.6.64", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "inert", + "url": "https://www.w3.org/TR/html-aam-1.0/#inert" + } + }, + "#informative-references": { + "current": { + "number": "B.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Informative references", + "url": "https://w3c.github.io/html-aam/#informative-references" + }, + "snapshot": { + "number": "B.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Informative references", + "url": "https://www.w3.org/TR/html-aam-1.0/#informative-references" + } + }, + "#input-type-attribute-in-the-button-state": { + "current": { + "number": "3.5.57", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Button state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-button-state" + }, + "snapshot": { + "number": "3.5.57", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Button state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-button-state" + } + }, + "#input-type-attribute-in-the-checkbox-state": { + "current": { + "number": "3.5.58", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Checkbox state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-checkbox-state" + }, + "snapshot": { + "number": "3.5.58", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Checkbox state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-checkbox-state" + } + }, + "#input-type-attribute-in-the-color-state": { + "current": { + "number": "3.5.59", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Color state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-color-state" + }, + "snapshot": { + "number": "3.5.59", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Color state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-color-state" + } + }, + "#input-type-attribute-in-the-date-state": { + "current": { + "number": "3.5.60", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Date state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-date-state" + }, + "snapshot": { + "number": "3.5.60", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Date state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-date-state" + } + }, + "#input-type-attribute-in-the-e-mail-state-with-no-suggestions-source-element": { + "current": { + "number": "3.5.62", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the E-mail state with no suggestions source element)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-e-mail-state-with-no-suggestions-source-element" + }, + "snapshot": { + "number": "3.5.62", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the E-mail state with no suggestions source element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-e-mail-state-with-no-suggestions-source-element" + } + }, + "#input-type-attribute-in-the-file-upload-state": { + "current": { + "number": "3.5.63", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the File Upload state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-file-upload-state" + }, + "snapshot": { + "number": "3.5.63", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the File Upload state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-file-upload-state" + } + }, + "#input-type-attribute-in-the-hidden-state": { + "current": { + "number": "3.5.64", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Hidden state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-hidden-state" + }, + "snapshot": { + "number": "3.5.64", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Hidden state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-hidden-state" + } + }, + "#input-type-attribute-in-the-image-button-state": { + "current": { + "number": "3.5.65", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Image Button state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-image-button-state" + }, + "snapshot": { + "number": "3.5.65", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Image Button state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-image-button-state" + } + }, + "#input-type-attribute-in-the-local-date-and-time-state": { + "current": { + "number": "3.5.61", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Local Date and Time state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-local-date-and-time-state" + }, + "snapshot": { + "number": "3.5.61", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Local Date and Time state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-local-date-and-time-state" + } + }, + "#input-type-attribute-in-the-month-state": { + "current": { + "number": "3.5.66", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Month state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-month-state" + }, + "snapshot": { + "number": "3.5.66", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Month state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-month-state" + } + }, + "#input-type-attribute-in-the-number-state": { + "current": { + "number": "3.5.67", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Number state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-number-state" + }, + "snapshot": { + "number": "3.5.67", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Number state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-number-state" + } + }, + "#input-type-attribute-in-the-password-state": { + "current": { + "number": "3.5.68", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Password state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-password-state" + }, + "snapshot": { + "number": "3.5.68", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Password state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-password-state" + } + }, + "#input-type-attribute-in-the-radio-button-state": { + "current": { + "number": "3.5.69", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Radio Button state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-radio-button-state" + }, + "snapshot": { + "number": "3.5.69", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Radio Button state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-radio-button-state" + } + }, + "#input-type-attribute-in-the-range-state": { + "current": { + "number": "3.5.70", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Range state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-range-state" + }, + "snapshot": { + "number": "3.5.70", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Range state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-range-state" + } + }, + "#input-type-attribute-in-the-reset-button-state": { + "current": { + "number": "3.5.71", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Reset Button state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-reset-button-state" + }, + "snapshot": { + "number": "3.5.71", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Reset Button state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-reset-button-state" + } + }, + "#input-type-attribute-in-the-search-state-with-no-suggestions-source-element": { + "current": { + "number": "3.5.72", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Search state with no suggestions source element)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-search-state-with-no-suggestions-source-element" + }, + "snapshot": { + "number": "3.5.72", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Search state with no suggestions source element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-search-state-with-no-suggestions-source-element" + } + }, + "#input-type-attribute-in-the-submit-button-state": { + "current": { + "number": "3.5.73", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Submit Button state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-submit-button-state" + }, + "snapshot": { + "number": "3.5.73", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Submit Button state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-submit-button-state" + } + }, + "#input-type-attribute-in-the-telephone-state-with-no-suggestions-source-element": { + "current": { + "number": "3.5.74", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Telephone state with no suggestions source element)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-telephone-state-with-no-suggestions-source-element" + }, + "snapshot": { + "number": "3.5.74", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Telephone state with no suggestions source element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-telephone-state-with-no-suggestions-source-element" + } + }, + "#input-type-attribute-in-the-text-search-telephone-url-or-e-mail-states-with-a-suggestions-source-element": { + "current": { + "number": "3.5.76", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Text, Search, Telephone, URL, or E-mail states with a suggestions source element)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-text-search-telephone-url-or-e-mail-states-with-a-suggestions-source-element" + }, + "snapshot": { + "number": "3.5.76", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Text, Search, Telephone, URL, or E-mail states with a suggestions source element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-text-search-telephone-url-or-e-mail-states-with-a-suggestions-source-element" + } + }, + "#input-type-attribute-in-the-text-state-with-no-suggestions-source-element": { + "current": { + "number": "3.5.75", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Text state with no suggestions source element)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-text-state-with-no-suggestions-source-element" + }, + "snapshot": { + "number": "3.5.75", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Text state with no suggestions source element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-text-state-with-no-suggestions-source-element" + } + }, + "#input-type-attribute-in-the-time-state": { + "current": { + "number": "3.5.77", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Time state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-time-state" + }, + "snapshot": { + "number": "3.5.77", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Time state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-time-state" + } + }, + "#input-type-attribute-in-the-url-state-with-no-suggestions-source-element": { + "current": { + "number": "3.5.78", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the URL state with no suggestions source element)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-url-state-with-no-suggestions-source-element" + }, + "snapshot": { + "number": "3.5.78", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the URL state with no suggestions source element)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-url-state-with-no-suggestions-source-element" + } + }, + "#input-type-attribute-in-the-week-state": { + "current": { + "number": "3.5.79", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Week state)", + "url": "https://w3c.github.io/html-aam/#input-type-attribute-in-the-week-state" + }, + "snapshot": { + "number": "3.5.79", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input (type attribute in the Week state)", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-attribute-in-the-week-state" + } + }, + "#input-type-button-input-type-submit-and-input-type-reset-accessible-name-computation": { + "current": { + "number": "4.1.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input type=\"button\", input type=\"submit\" and input type=\"reset\" Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#input-type-button-input-type-submit-and-input-type-reset-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input type=\"button\", input type=\"submit\" and input type=\"reset\" Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-button-input-type-submit-and-input-type-reset-accessible-name-computation" + } + }, + "#input-type-image-accessible-name-computation": { + "current": { + "number": "4.1.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input type=\"image\" Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#input-type-image-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input type=\"image\" Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-image-accessible-name-computation" + } + }, + "#input-type-text-input-type-password-input-type-number-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation": { + "current": { + "number": "4.1.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input type=\"text\", input type=\"password\", input type=\"number\", input type=\"search\", input type=\"tel\", input type=\"email\", input type=\"url\" and textarea Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#input-type-text-input-type-password-input-type-number-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "input type=\"text\", input type=\"password\", input type=\"number\", input type=\"search\", input type=\"tel\", input type=\"email\", input type=\"url\" and textarea Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#input-type-text-input-type-password-input-type-number-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation" + } + }, + "#ins": { + "current": { + "number": "3.5.80", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ins", + "url": "https://w3c.github.io/html-aam/#ins" + }, + "snapshot": { + "number": "3.5.80", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ins", + "url": "https://www.w3.org/TR/html-aam-1.0/#ins" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Introduction", + "url": "https://w3c.github.io/html-aam/#intro" + }, + "snapshot": { + "number": "1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/html-aam-1.0/#intro" + } + }, + "#intro_aapi": { + "current": { + "number": "1.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Accessibility APIs", + "url": "https://w3c.github.io/html-aam/#intro_aapi" + }, + "snapshot": { + "number": "1.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Accessibility APIs", + "url": "https://www.w3.org/TR/html-aam-1.0/#intro_aapi" + } + }, + "#ismap": { + "current": { + "number": "3.6.66", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ismap", + "url": "https://w3c.github.io/html-aam/#ismap" + }, + "snapshot": { + "number": "3.6.66", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ismap", + "url": "https://www.w3.org/TR/html-aam-1.0/#ismap" + } + }, + "#itemid": { + "current": { + "number": "3.6.67", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemid", + "url": "https://w3c.github.io/html-aam/#itemid" + }, + "snapshot": { + "number": "3.6.67", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemid", + "url": "https://www.w3.org/TR/html-aam-1.0/#itemid" + } + }, + "#itemprop": { + "current": { + "number": "3.6.68", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemprop", + "url": "https://w3c.github.io/html-aam/#itemprop" + }, + "snapshot": { + "number": "3.6.68", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemprop", + "url": "https://www.w3.org/TR/html-aam-1.0/#itemprop" + } + }, + "#itemref": { + "current": { + "number": "3.6.69", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemref", + "url": "https://w3c.github.io/html-aam/#itemref" + }, + "snapshot": { + "number": "3.6.69", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemref", + "url": "https://www.w3.org/TR/html-aam-1.0/#itemref" + } + }, + "#itemscope": { + "current": { + "number": "3.6.70", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemscope", + "url": "https://w3c.github.io/html-aam/#itemscope" + }, + "snapshot": { + "number": "3.6.70", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemscope", + "url": "https://www.w3.org/TR/html-aam-1.0/#itemscope" + } + }, + "#itemtype": { + "current": { + "number": "3.6.71", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemtype", + "url": "https://w3c.github.io/html-aam/#itemtype" + }, + "snapshot": { + "number": "3.6.71", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "itemtype", + "url": "https://www.w3.org/TR/html-aam-1.0/#itemtype" + } + }, + "#kbd": { + "current": { + "number": "3.5.81", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "kbd", + "url": "https://w3c.github.io/html-aam/#kbd" + }, + "snapshot": { + "number": "3.5.81", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "kbd", + "url": "https://www.w3.org/TR/html-aam-1.0/#kbd" + } + }, + "#kind": { + "current": { + "number": "3.6.72", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "kind", + "url": "https://w3c.github.io/html-aam/#kind" + }, + "snapshot": { + "number": "3.6.72", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "kind", + "url": "https://www.w3.org/TR/html-aam-1.0/#kind" + } + }, + "#label": { + "current": { + "number": "3.5.82", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "label", + "url": "https://w3c.github.io/html-aam/#label" + }, + "snapshot": { + "number": "3.5.82", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "label", + "url": "https://www.w3.org/TR/html-aam-1.0/#label" + } + }, + "#label-0": { + "current": { + "number": "3.6.73", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "label", + "url": "https://w3c.github.io/html-aam/#label-0" + }, + "snapshot": { + "number": "3.6.73", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "label", + "url": "https://www.w3.org/TR/html-aam-1.0/#label-0" + } + }, + "#lang": { + "current": { + "number": "3.6.74", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "lang", + "url": "https://w3c.github.io/html-aam/#lang" + }, + "snapshot": { + "number": "3.6.74", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "lang", + "url": "https://www.w3.org/TR/html-aam-1.0/#lang" + } + }, + "#legend": { + "current": { + "number": "3.5.83", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "legend", + "url": "https://w3c.github.io/html-aam/#legend" + }, + "snapshot": { + "number": "3.5.83", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "legend", + "url": "https://www.w3.org/TR/html-aam-1.0/#legend" + } + }, + "#li": { + "current": { + "number": "3.5.84", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "li", + "url": "https://w3c.github.io/html-aam/#li" + }, + "snapshot": { + "number": "3.5.84", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "li", + "url": "https://www.w3.org/TR/html-aam-1.0/#li" + } + }, + "#link": { + "current": { + "number": "3.5.85", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "link", + "url": "https://w3c.github.io/html-aam/#link" + }, + "snapshot": { + "number": "3.5.85", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "link", + "url": "https://www.w3.org/TR/html-aam-1.0/#link" + } + }, + "#list": { + "current": { + "number": "3.6.75", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "list", + "url": "https://w3c.github.io/html-aam/#list" + }, + "snapshot": { + "number": "3.6.75", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "list", + "url": "https://www.w3.org/TR/html-aam-1.0/#list" + } + }, + "#loop": { + "current": { + "number": "3.6.76", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "loop", + "url": "https://w3c.github.io/html-aam/#loop" + }, + "snapshot": { + "number": "3.6.76", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "loop", + "url": "https://www.w3.org/TR/html-aam-1.0/#loop" + } + }, + "#low": { + "current": { + "number": "3.6.77", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "low", + "url": "https://w3c.github.io/html-aam/#low" + }, + "snapshot": { + "number": "3.6.77", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "low", + "url": "https://www.w3.org/TR/html-aam-1.0/#low" + } + }, + "#main": { + "current": { + "number": "3.5.86", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "main", + "url": "https://w3c.github.io/html-aam/#main" + }, + "snapshot": { + "number": "3.5.86", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "main", + "url": "https://www.w3.org/TR/html-aam-1.0/#main" + } + }, + "#map": { + "current": { + "number": "3.5.87", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "map", + "url": "https://w3c.github.io/html-aam/#map" + }, + "snapshot": { + "number": "3.5.87", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "map", + "url": "https://www.w3.org/TR/html-aam-1.0/#map" + } + }, + "#mapping-html-to-accessibility-apis": { + "current": { + "number": "3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Mapping HTML to Accessibility APIs", + "url": "https://w3c.github.io/html-aam/#mapping-html-to-accessibility-apis" + }, + "snapshot": { + "number": "3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Mapping HTML to Accessibility APIs", + "url": "https://www.w3.org/TR/html-aam-1.0/#mapping-html-to-accessibility-apis" + } + }, + "#mapping_conflicts": { + "current": { + "number": "3.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Conflicts Between Native Markup Semantics and WAI-ARIA", + "url": "https://w3c.github.io/html-aam/#mapping_conflicts" + }, + "snapshot": { + "number": "3.2", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Conflicts Between Native Markup Semantics and WAI-ARIA", + "url": "https://www.w3.org/TR/html-aam-1.0/#mapping_conflicts" + } + }, + "#mapping_general": { + "current": { + "number": "3.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "General Rules for Exposing WAI-ARIA Semantics", + "url": "https://w3c.github.io/html-aam/#mapping_general" + }, + "snapshot": { + "number": "3.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "General Rules for Exposing WAI-ARIA Semantics", + "url": "https://www.w3.org/TR/html-aam-1.0/#mapping_general" + } + }, + "#mapping_nodirect": { + "current": { + "number": "3.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Exposing HTML Features That Do Not Directly Map to Accessibility APIs", + "url": "https://w3c.github.io/html-aam/#mapping_nodirect" + }, + "snapshot": { + "number": "3.3", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Exposing HTML Features That Do Not Directly Map to Accessibility APIs", + "url": "https://www.w3.org/TR/html-aam-1.0/#mapping_nodirect" + } + }, + "#mark": { + "current": { + "number": "3.5.88", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "mark", + "url": "https://w3c.github.io/html-aam/#mark" + }, + "snapshot": { + "number": "3.5.88", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "mark", + "url": "https://www.w3.org/TR/html-aam-1.0/#mark" + } + }, + "#math": { + "current": { + "number": "3.5.89", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "math", + "url": "https://w3c.github.io/html-aam/#math" + }, + "snapshot": { + "number": "3.5.89", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "math", + "url": "https://www.w3.org/TR/html-aam-1.0/#math" + } + }, + "#max": { + "current": { + "number": "3.6.78", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "max", + "url": "https://w3c.github.io/html-aam/#max" + }, + "snapshot": { + "number": "3.6.78", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "max", + "url": "https://www.w3.org/TR/html-aam-1.0/#max" + } + }, + "#max-0": { + "current": { + "number": "3.6.79", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "max", + "url": "https://w3c.github.io/html-aam/#max-0" + }, + "snapshot": { + "number": "3.6.79", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "max", + "url": "https://www.w3.org/TR/html-aam-1.0/#max-0" + } + }, + "#maxlength": { + "current": { + "number": "3.6.80", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "maxlength", + "url": "https://w3c.github.io/html-aam/#maxlength" + }, + "snapshot": { + "number": "3.6.80", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "maxlength", + "url": "https://www.w3.org/TR/html-aam-1.0/#maxlength" + } + }, + "#media": { + "current": { + "number": "3.6.81", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "media", + "url": "https://w3c.github.io/html-aam/#media" + }, + "snapshot": { + "number": "3.6.81", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "media", + "url": "https://www.w3.org/TR/html-aam-1.0/#media" + } + }, + "#menu": { + "current": { + "number": "3.5.90", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "menu", + "url": "https://w3c.github.io/html-aam/#menu" + }, + "snapshot": { + "number": "3.5.90", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "menu", + "url": "https://www.w3.org/TR/html-aam-1.0/#menu" + } + }, + "#meta": { + "current": { + "number": "3.5.91", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "meta", + "url": "https://w3c.github.io/html-aam/#meta" + }, + "snapshot": { + "number": "3.5.91", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "meta", + "url": "https://www.w3.org/TR/html-aam-1.0/#meta" + } + }, + "#meter": { + "current": { + "number": "3.5.92", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "meter", + "url": "https://w3c.github.io/html-aam/#meter" + }, + "snapshot": { + "number": "3.5.92", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "meter", + "url": "https://www.w3.org/TR/html-aam-1.0/#meter" + } + }, + "#method": { + "current": { + "number": "3.6.82", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "method", + "url": "https://w3c.github.io/html-aam/#method" + }, + "snapshot": { + "number": "3.6.82", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "method", + "url": "https://www.w3.org/TR/html-aam-1.0/#method" + } + }, + "#min": { + "current": { + "number": "3.6.83", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "min", + "url": "https://w3c.github.io/html-aam/#min" + }, + "snapshot": { + "number": "3.6.83", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "min", + "url": "https://www.w3.org/TR/html-aam-1.0/#min" + } + }, + "#min-0": { + "current": { + "number": "3.6.84", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "min", + "url": "https://w3c.github.io/html-aam/#min-0" + }, + "snapshot": { + "number": "3.6.84", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "min", + "url": "https://www.w3.org/TR/html-aam-1.0/#min-0" + } + }, + "#minlength": { + "current": { + "number": "3.6.85", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "minlength", + "url": "https://w3c.github.io/html-aam/#minlength" + }, + "snapshot": { + "number": "3.6.85", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "minlength", + "url": "https://www.w3.org/TR/html-aam-1.0/#minlength" + } + }, + "#multiple": { + "current": { + "number": "3.6.86", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "multiple", + "url": "https://w3c.github.io/html-aam/#multiple" + }, + "snapshot": { + "number": "3.6.86", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "multiple", + "url": "https://www.w3.org/TR/html-aam-1.0/#multiple" + } + }, + "#multiple-0": { + "current": { + "number": "3.6.87", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "multiple", + "url": "https://w3c.github.io/html-aam/#multiple-0" + }, + "snapshot": { + "number": "3.6.87", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "multiple", + "url": "https://www.w3.org/TR/html-aam-1.0/#multiple-0" + } + }, + "#muted": { + "current": { + "number": "3.6.88", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "muted", + "url": "https://w3c.github.io/html-aam/#muted" + }, + "snapshot": { + "number": "3.6.88", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "muted", + "url": "https://www.w3.org/TR/html-aam-1.0/#muted" + } + }, + "#name": { + "current": { + "number": "3.6.89", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://w3c.github.io/html-aam/#name" + }, + "snapshot": { + "number": "3.6.89", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://www.w3.org/TR/html-aam-1.0/#name" + } + }, + "#name-0": { + "current": { + "number": "3.6.90", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://w3c.github.io/html-aam/#name-0" + }, + "snapshot": { + "number": "3.6.90", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://www.w3.org/TR/html-aam-1.0/#name-0" + } + }, + "#name-1": { + "current": { + "number": "3.6.91", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://w3c.github.io/html-aam/#name-1" + }, + "snapshot": { + "number": "3.6.91", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://www.w3.org/TR/html-aam-1.0/#name-1" + } + }, + "#name-2": { + "current": { + "number": "3.6.92", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://w3c.github.io/html-aam/#name-2" + }, + "snapshot": { + "number": "3.6.92", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://www.w3.org/TR/html-aam-1.0/#name-2" + } + }, + "#name-3": { + "current": { + "number": "3.6.93", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://w3c.github.io/html-aam/#name-3" + }, + "snapshot": { + "number": "3.6.93", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://www.w3.org/TR/html-aam-1.0/#name-3" + } + }, + "#name-4": { + "current": { + "number": "3.6.94", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://w3c.github.io/html-aam/#name-4" + }, + "snapshot": { + "number": "3.6.94", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "name", + "url": "https://www.w3.org/TR/html-aam-1.0/#name-4" + } + }, + "#nav": { + "current": { + "number": "3.5.93", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "nav", + "url": "https://w3c.github.io/html-aam/#nav" + }, + "snapshot": { + "number": "3.5.93", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "nav", + "url": "https://www.w3.org/TR/html-aam-1.0/#nav" + } + }, + "#nomodule": { + "current": { + "number": "3.6.95", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "nomodule", + "url": "https://w3c.github.io/html-aam/#nomodule" + }, + "snapshot": { + "number": "3.6.95", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "nomodule", + "url": "https://www.w3.org/TR/html-aam-1.0/#nomodule" + } + }, + "#nonce": { + "current": { + "number": "3.6.96", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "nonce", + "url": "https://w3c.github.io/html-aam/#nonce" + }, + "snapshot": { + "number": "3.6.96", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "nonce", + "url": "https://www.w3.org/TR/html-aam-1.0/#nonce" + } + }, + "#normative-references": { + "current": { + "number": "B.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Normative references", + "url": "https://w3c.github.io/html-aam/#normative-references" + }, + "snapshot": { + "number": "B.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Normative references", + "url": "https://www.w3.org/TR/html-aam-1.0/#normative-references" + } + }, + "#noscript": { + "current": { + "number": "3.5.94", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "noscript", + "url": "https://w3c.github.io/html-aam/#noscript" + }, + "snapshot": { + "number": "3.5.94", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "noscript", + "url": "https://www.w3.org/TR/html-aam-1.0/#noscript" + } + }, + "#novalidate": { + "current": { + "number": "3.6.97", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "novalidate", + "url": "https://w3c.github.io/html-aam/#novalidate" + }, + "snapshot": { + "number": "3.6.97", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "novalidate", + "url": "https://www.w3.org/TR/html-aam-1.0/#novalidate" + } + }, + "#object": { + "current": { + "number": "3.5.95", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "object", + "url": "https://w3c.github.io/html-aam/#object" + }, + "snapshot": { + "number": "3.5.95", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "object", + "url": "https://www.w3.org/TR/html-aam-1.0/#object" + } + }, + "#ol": { + "current": { + "number": "3.5.96", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ol", + "url": "https://w3c.github.io/html-aam/#ol" + }, + "snapshot": { + "number": "3.5.96", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ol", + "url": "https://www.w3.org/TR/html-aam-1.0/#ol" + } + }, + "#open": { + "current": { + "number": "3.6.98", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "open", + "url": "https://w3c.github.io/html-aam/#open" + }, + "snapshot": { + "number": "3.6.98", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "open", + "url": "https://www.w3.org/TR/html-aam-1.0/#open" + } + }, + "#open-0": { + "current": { + "number": "3.6.99", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "open", + "url": "https://w3c.github.io/html-aam/#open-0" + }, + "snapshot": { + "number": "3.6.99", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "open", + "url": "https://www.w3.org/TR/html-aam-1.0/#open-0" + } + }, + "#optgroup": { + "current": { + "number": "3.5.97", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "optgroup", + "url": "https://w3c.github.io/html-aam/#optgroup" + }, + "snapshot": { + "number": "3.5.97", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "optgroup", + "url": "https://www.w3.org/TR/html-aam-1.0/#optgroup" + } + }, + "#optimum": { + "current": { + "number": "3.6.100", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "optimum", + "url": "https://w3c.github.io/html-aam/#optimum" + }, + "snapshot": { + "number": "3.6.100", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "optimum", + "url": "https://www.w3.org/TR/html-aam-1.0/#optimum" + } + }, + "#option-in-a-list-of-options-or-represents-a-suggestion-in-a-datalist": { + "current": { + "number": "3.5.98", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "option (in a list of options or represents a suggestion in a datalist)", + "url": "https://w3c.github.io/html-aam/#option-in-a-list-of-options-or-represents-a-suggestion-in-a-datalist" + }, + "snapshot": { + "number": "3.5.98", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "option (in a list of options or represents a suggestion in a datalist)", + "url": "https://www.w3.org/TR/html-aam-1.0/#option-in-a-list-of-options-or-represents-a-suggestion-in-a-datalist" + } + }, + "#other-form-elements-accessible-name-computation": { + "current": { + "number": "4.1.7", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Other Form Elements Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#other-form-elements-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.7", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Other Form Elements Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#other-form-elements-accessible-name-computation" + } + }, + "#output": { + "current": { + "number": "3.5.99", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "output", + "url": "https://w3c.github.io/html-aam/#output" + }, + "snapshot": { + "number": "3.5.99", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "output", + "url": "https://www.w3.org/TR/html-aam-1.0/#output" + } + }, + "#output-element-accessible-name-computation": { + "current": { + "number": "4.1.6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "output Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#output-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "output Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#output-element-accessible-name-computation" + } + }, + "#p": { + "current": { + "number": "3.5.100", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "p", + "url": "https://w3c.github.io/html-aam/#p" + }, + "snapshot": { + "number": "3.5.100", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "p", + "url": "https://www.w3.org/TR/html-aam-1.0/#p" + } + }, + "#param": { + "current": { + "number": "3.5.101", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "param", + "url": "https://w3c.github.io/html-aam/#param" + }, + "snapshot": { + "number": "3.5.101", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "param", + "url": "https://www.w3.org/TR/html-aam-1.0/#param" + } + }, + "#pattern": { + "current": { + "number": "3.6.101", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "pattern", + "url": "https://w3c.github.io/html-aam/#pattern" + }, + "snapshot": { + "number": "3.6.101", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "pattern", + "url": "https://www.w3.org/TR/html-aam-1.0/#pattern" + } + }, + "#picture": { + "current": { + "number": "3.5.102", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "picture", + "url": "https://w3c.github.io/html-aam/#picture" + }, + "snapshot": { + "number": "3.5.102", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "picture", + "url": "https://www.w3.org/TR/html-aam-1.0/#picture" + } + }, + "#ping": { + "current": { + "number": "3.6.102", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ping", + "url": "https://w3c.github.io/html-aam/#ping" + }, + "snapshot": { + "number": "3.6.102", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ping", + "url": "https://www.w3.org/TR/html-aam-1.0/#ping" + } + }, + "#placeholder": { + "current": { + "number": "3.6.103", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "placeholder", + "url": "https://w3c.github.io/html-aam/#placeholder" + }, + "snapshot": { + "number": "3.6.103", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "placeholder", + "url": "https://www.w3.org/TR/html-aam-1.0/#placeholder" + } + }, + "#platform-api-mapping-requirements-0": { + "current": { + "number": "3.5.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Platform API mapping requirements", + "url": "https://w3c.github.io/html-aam/#platform-api-mapping-requirements-0" + }, + "snapshot": { + "number": "3.5.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Platform API mapping requirements", + "url": "https://www.w3.org/TR/html-aam-1.0/#platform-api-mapping-requirements-0" + } + }, + "#playsinline": { + "current": { + "number": "3.6.104", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "playsinline", + "url": "https://w3c.github.io/html-aam/#playsinline" + }, + "snapshot": { + "number": "3.6.104", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "playsinline", + "url": "https://www.w3.org/TR/html-aam-1.0/#playsinline" + } + }, + "#popover": { + "current": { + "number": "3.6.105", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "popover", + "url": "https://w3c.github.io/html-aam/#popover" + }, + "snapshot": { + "number": "3.6.105", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "popover", + "url": "https://www.w3.org/TR/html-aam-1.0/#popover" + } + }, + "#popovertarget": { + "current": { + "number": "3.6.106", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "popovertarget", + "url": "https://w3c.github.io/html-aam/#popovertarget" + }, + "snapshot": { + "number": "3.6.106", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "popovertarget", + "url": "https://www.w3.org/TR/html-aam-1.0/#popovertarget" + } + }, + "#popovertargetaction": { + "current": { + "number": "3.6.107", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "popovertargetaction", + "url": "https://w3c.github.io/html-aam/#popovertargetaction" + }, + "snapshot": { + "number": "3.6.107", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "popovertargetaction", + "url": "https://www.w3.org/TR/html-aam-1.0/#popovertargetaction" + } + }, + "#poster": { + "current": { + "number": "3.6.108", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "poster", + "url": "https://w3c.github.io/html-aam/#poster" + }, + "snapshot": { + "number": "3.6.108", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "poster", + "url": "https://www.w3.org/TR/html-aam-1.0/#poster" + } + }, + "#pre": { + "current": { + "number": "3.5.103", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "pre", + "url": "https://w3c.github.io/html-aam/#pre" + }, + "snapshot": { + "number": "3.5.103", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "pre", + "url": "https://www.w3.org/TR/html-aam-1.0/#pre" + } + }, + "#preload": { + "current": { + "number": "3.6.109", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "preload", + "url": "https://w3c.github.io/html-aam/#preload" + }, + "snapshot": { + "number": "3.6.109", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "preload", + "url": "https://www.w3.org/TR/html-aam-1.0/#preload" + } + }, + "#privacy-considerations": { + "current": { + "number": "5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Privacy considerations", + "url": "https://w3c.github.io/html-aam/#privacy-considerations" + }, + "snapshot": { + "number": "5", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Privacy considerations", + "url": "https://www.w3.org/TR/html-aam-1.0/#privacy-considerations" + } + }, + "#progress": { + "current": { + "number": "3.5.104", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "progress", + "url": "https://w3c.github.io/html-aam/#progress" + }, + "snapshot": { + "number": "3.5.104", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "progress", + "url": "https://www.w3.org/TR/html-aam-1.0/#progress" + } + }, + "#q": { + "current": { + "number": "3.5.105", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "q", + "url": "https://w3c.github.io/html-aam/#q" + }, + "snapshot": { + "number": "3.5.105", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "q", + "url": "https://www.w3.org/TR/html-aam-1.0/#q" + } + }, + "#readonly": { + "current": { + "number": "3.6.110", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "readonly", + "url": "https://w3c.github.io/html-aam/#readonly" + }, + "snapshot": { + "number": "3.6.110", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "readonly", + "url": "https://www.w3.org/TR/html-aam-1.0/#readonly" } }, "#references": { "current": { - "number": "B", + "number": "B", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "References", + "url": "https://w3c.github.io/html-aam/#references" + }, + "snapshot": { + "number": "B", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "References", + "url": "https://www.w3.org/TR/html-aam-1.0/#references" + } + }, + "#referrerpolicy": { + "current": { + "number": "3.6.111", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "referrerpolicy", + "url": "https://w3c.github.io/html-aam/#referrerpolicy" + }, + "snapshot": { + "number": "3.6.111", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "referrerpolicy", + "url": "https://www.w3.org/TR/html-aam-1.0/#referrerpolicy" + } + }, + "#rel": { + "current": { + "number": "3.6.112", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rel", + "url": "https://w3c.github.io/html-aam/#rel" + }, + "snapshot": { + "number": "3.6.112", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rel", + "url": "https://www.w3.org/TR/html-aam-1.0/#rel" + } + }, + "#required": { + "current": { + "number": "3.6.113", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "required", + "url": "https://w3c.github.io/html-aam/#required" + }, + "snapshot": { + "number": "3.6.113", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "required", + "url": "https://www.w3.org/TR/html-aam-1.0/#required" + } + }, + "#reversed": { + "current": { + "number": "3.6.114", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "reversed", + "url": "https://w3c.github.io/html-aam/#reversed" + }, + "snapshot": { + "number": "3.6.114", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "reversed", + "url": "https://www.w3.org/TR/html-aam-1.0/#reversed" + } + }, + "#rows": { + "current": { + "number": "3.6.115", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rows", + "url": "https://w3c.github.io/html-aam/#rows" + }, + "snapshot": { + "number": "3.6.115", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rows", + "url": "https://www.w3.org/TR/html-aam-1.0/#rows" + } + }, + "#rowspan": { + "current": { + "number": "3.6.116", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rowspan", + "url": "https://w3c.github.io/html-aam/#rowspan" + }, + "snapshot": { + "number": "3.6.116", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rowspan", + "url": "https://www.w3.org/TR/html-aam-1.0/#rowspan" + } + }, + "#rp": { + "current": { + "number": "3.5.106", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rp", + "url": "https://w3c.github.io/html-aam/#rp" + }, + "snapshot": { + "number": "3.5.106", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rp", + "url": "https://www.w3.org/TR/html-aam-1.0/#rp" + } + }, + "#rt": { + "current": { + "number": "3.5.107", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rt", + "url": "https://w3c.github.io/html-aam/#rt" + }, + "snapshot": { + "number": "3.5.107", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "rt", + "url": "https://www.w3.org/TR/html-aam-1.0/#rt" + } + }, + "#ruby": { + "current": { + "number": "3.5.108", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ruby", + "url": "https://w3c.github.io/html-aam/#ruby" + }, + "snapshot": { + "number": "3.5.108", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ruby", + "url": "https://www.w3.org/TR/html-aam-1.0/#ruby" + } + }, + "#s": { + "current": { + "number": "3.5.109", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "s", + "url": "https://w3c.github.io/html-aam/#s" + }, + "snapshot": { + "number": "3.5.109", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "s", + "url": "https://www.w3.org/TR/html-aam-1.0/#s" + } + }, + "#samp": { + "current": { + "number": "3.5.110", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "samp", + "url": "https://w3c.github.io/html-aam/#samp" + }, + "snapshot": { + "number": "3.5.110", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "samp", + "url": "https://www.w3.org/TR/html-aam-1.0/#samp" + } + }, + "#sandbox": { + "current": { + "number": "3.6.117", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sandbox", + "url": "https://w3c.github.io/html-aam/#sandbox" + }, + "snapshot": { + "number": "3.6.117", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sandbox", + "url": "https://www.w3.org/TR/html-aam-1.0/#sandbox" + } + }, + "#scope": { + "current": { + "number": "3.6.118", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "scope", + "url": "https://w3c.github.io/html-aam/#scope" + }, + "snapshot": { + "number": "3.6.118", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "scope", + "url": "https://www.w3.org/TR/html-aam-1.0/#scope" + } + }, + "#script": { + "current": { + "number": "3.5.111", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "script", + "url": "https://w3c.github.io/html-aam/#script" + }, + "snapshot": { + "number": "3.5.111", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "script", + "url": "https://www.w3.org/TR/html-aam-1.0/#script" + } + }, + "#search": { + "current": { + "number": "3.5.112", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "search", + "url": "https://w3c.github.io/html-aam/#search" + }, + "snapshot": { + "number": "3.5.112", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "search", + "url": "https://www.w3.org/TR/html-aam-1.0/#search" + } + }, + "#section": { + "current": { + "number": "3.5.113", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "section", + "url": "https://w3c.github.io/html-aam/#section" + }, + "snapshot": { + "number": "3.5.113", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "section", + "url": "https://www.w3.org/TR/html-aam-1.0/#section" + } + }, + "#section-and-grouping-element-accessible-name-computation": { + "current": { + "number": "4.1.16", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Section and Grouping Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#section-and-grouping-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.16", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Section and Grouping Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#section-and-grouping-element-accessible-name-computation" + } + }, + "#security-considerations": { + "current": { + "number": "6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Security considerations", + "url": "https://w3c.github.io/html-aam/#security-considerations" + }, + "snapshot": { + "number": "6", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Security considerations", + "url": "https://www.w3.org/TR/html-aam-1.0/#security-considerations" + } + }, + "#select-with-a-multiple-attribute-or-size-attribute-having-value-greater-than-1": { + "current": { + "number": "3.5.114", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "select (with a multiple attribute or size attribute having value greater than 1)", + "url": "https://w3c.github.io/html-aam/#select-with-a-multiple-attribute-or-size-attribute-having-value-greater-than-1" + }, + "snapshot": { + "number": "3.5.114", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "select (with a multiple attribute or size attribute having value greater than 1)", + "url": "https://www.w3.org/TR/html-aam-1.0/#select-with-a-multiple-attribute-or-size-attribute-having-value-greater-than-1" + } + }, + "#select-with-no-multiple-attribute-and-no-size-attribute-having-value-greater-than-1": { + "current": { + "number": "3.5.115", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "select (with NO multiple attribute and NO size attribute having value greater than 1)", + "url": "https://w3c.github.io/html-aam/#select-with-no-multiple-attribute-and-no-size-attribute-having-value-greater-than-1" + }, + "snapshot": { + "number": "3.5.115", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "select (with NO multiple attribute and NO size attribute having value greater than 1)", + "url": "https://www.w3.org/TR/html-aam-1.0/#select-with-no-multiple-attribute-and-no-size-attribute-having-value-greater-than-1" + } + }, + "#selected": { + "current": { + "number": "3.6.119", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "selected", + "url": "https://w3c.github.io/html-aam/#selected" + }, + "snapshot": { + "number": "3.6.119", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "selected", + "url": "https://www.w3.org/TR/html-aam-1.0/#selected" + } + }, + "#shape": { + "current": { + "number": "3.6.120", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "shape", + "url": "https://w3c.github.io/html-aam/#shape" + }, + "snapshot": { + "number": "3.6.120", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "shape", + "url": "https://www.w3.org/TR/html-aam-1.0/#shape" + } + }, + "#size": { + "current": { + "number": "3.6.121", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "size", + "url": "https://w3c.github.io/html-aam/#size" + }, + "snapshot": { + "number": "3.6.121", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "size", + "url": "https://www.w3.org/TR/html-aam-1.0/#size" + } + }, + "#sizes": { + "current": { + "number": "3.6.122", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sizes", + "url": "https://w3c.github.io/html-aam/#sizes" + }, + "snapshot": { + "number": "3.6.122", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sizes", + "url": "https://www.w3.org/TR/html-aam-1.0/#sizes" + } + }, + "#sizes-0": { + "current": { + "number": "3.6.123", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sizes", + "url": "https://w3c.github.io/html-aam/#sizes-0" + }, + "snapshot": { + "number": "3.6.123", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sizes", + "url": "https://www.w3.org/TR/html-aam-1.0/#sizes-0" + } + }, + "#slot": { + "current": { + "number": "3.5.116", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "slot", + "url": "https://w3c.github.io/html-aam/#slot" + }, + "snapshot": { + "number": "3.5.116", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "slot", + "url": "https://www.w3.org/TR/html-aam-1.0/#slot" + } + }, + "#slot-0": { + "current": { + "number": "3.6.124", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "slot", + "url": "https://w3c.github.io/html-aam/#slot-0" + }, + "snapshot": { + "number": "3.6.124", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "slot", + "url": "https://www.w3.org/TR/html-aam-1.0/#slot-0" + } + }, + "#small": { + "current": { + "number": "3.5.117", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "small", + "url": "https://w3c.github.io/html-aam/#small" + }, + "snapshot": { + "number": "3.5.117", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "small", + "url": "https://www.w3.org/TR/html-aam-1.0/#small" + } + }, + "#source": { + "current": { + "number": "3.5.118", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "source", + "url": "https://w3c.github.io/html-aam/#source" + }, + "snapshot": { + "number": "3.5.118", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "source", + "url": "https://www.w3.org/TR/html-aam-1.0/#source" + } + }, + "#span": { + "current": { + "number": "3.5.119", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "span", + "url": "https://w3c.github.io/html-aam/#span" + }, + "snapshot": { + "number": "3.5.119", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "span", + "url": "https://www.w3.org/TR/html-aam-1.0/#span" + } + }, + "#span-0": { + "current": { + "number": "3.6.125", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "span", + "url": "https://w3c.github.io/html-aam/#span-0" + }, + "snapshot": { + "number": "3.6.125", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "span", + "url": "https://www.w3.org/TR/html-aam-1.0/#span-0" + } + }, + "#spellcheck": { + "current": { + "number": "3.6.126", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "spellcheck", + "url": "https://w3c.github.io/html-aam/#spellcheck" + }, + "snapshot": { + "number": "3.6.126", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "spellcheck", + "url": "https://www.w3.org/TR/html-aam-1.0/#spellcheck" + } + }, + "#src": { + "current": { + "number": "3.6.127", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "src", + "url": "https://w3c.github.io/html-aam/#src" + }, + "snapshot": { + "number": "3.6.127", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "src", + "url": "https://www.w3.org/TR/html-aam-1.0/#src" + } + }, + "#srcdoc": { + "current": { + "number": "3.6.128", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "srcdoc", + "url": "https://w3c.github.io/html-aam/#srcdoc" + }, + "snapshot": { + "number": "3.6.128", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "srcdoc", + "url": "https://www.w3.org/TR/html-aam-1.0/#srcdoc" + } + }, + "#srclang": { + "current": { + "number": "3.6.129", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "srclang", + "url": "https://w3c.github.io/html-aam/#srclang" + }, + "snapshot": { + "number": "3.6.129", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "srclang", + "url": "https://www.w3.org/TR/html-aam-1.0/#srclang" + } + }, + "#srcset": { + "current": { + "number": "3.6.130", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "srcset", + "url": "https://w3c.github.io/html-aam/#srcset" + }, + "snapshot": { + "number": "3.6.130", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "srcset", + "url": "https://www.w3.org/TR/html-aam-1.0/#srcset" + } + }, + "#start": { + "current": { + "number": "3.6.131", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "start", + "url": "https://w3c.github.io/html-aam/#start" + }, + "snapshot": { + "number": "3.6.131", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "start", + "url": "https://www.w3.org/TR/html-aam-1.0/#start" + } + }, + "#step": { + "current": { + "number": "3.6.132", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "step", + "url": "https://w3c.github.io/html-aam/#step" + }, + "snapshot": { + "number": "3.6.132", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "step", + "url": "https://www.w3.org/TR/html-aam-1.0/#step" + } + }, + "#strong": { + "current": { + "number": "3.5.120", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "strong", + "url": "https://w3c.github.io/html-aam/#strong" + }, + "snapshot": { + "number": "3.5.120", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "strong", + "url": "https://www.w3.org/TR/html-aam-1.0/#strong" + } + }, + "#style": { + "current": { + "number": "3.5.121", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "style", + "url": "https://w3c.github.io/html-aam/#style" + }, + "snapshot": { + "number": "3.5.121", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "style", + "url": "https://www.w3.org/TR/html-aam-1.0/#style" + } + }, + "#style-0": { + "current": { + "number": "3.6.133", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "style", + "url": "https://w3c.github.io/html-aam/#style-0" + }, + "snapshot": { + "number": "3.6.133", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "style", + "url": "https://www.w3.org/TR/html-aam-1.0/#style-0" + } + }, + "#sub": { + "current": { + "number": "3.5.122", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sub", + "url": "https://w3c.github.io/html-aam/#sub" + }, + "snapshot": { + "number": "3.5.122", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sub", + "url": "https://www.w3.org/TR/html-aam-1.0/#sub" + } + }, + "#substantive-changes-since-moving-to-the-accessible-rich-internet-applications-working-group-03-nov-2019": { + "current": { + "number": "A.1.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Substantive changes since moving to the Accessible Rich Internet Applications Working Group (03-Nov-2019)", + "url": "https://w3c.github.io/html-aam/#substantive-changes-since-moving-to-the-accessible-rich-internet-applications-working-group-03-nov-2019" + }, + "snapshot": { + "number": "A.1.1", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Substantive changes since moving to the Accessible Rich Internet Applications Working Group (03-Nov-2019)", + "url": "https://www.w3.org/TR/html-aam-1.0/#substantive-changes-since-moving-to-the-accessible-rich-internet-applications-working-group-03-nov-2019" + } + }, + "#substantive-changes-since-moving-to-the-web-application-working-group-formerly-web-platform-wg-01-oct-2016": { + "current": { + "number": "", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Substantive changes since moving to the Web Application Working Group (formerly Web Platform WG) (01-Oct-2016)", + "url": "https://w3c.github.io/html-aam/#substantive-changes-since-moving-to-the-web-application-working-group-formerly-web-platform-wg-01-oct-2016" + }, + "snapshot": { + "number": "", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "Substantive changes since moving to the Web Application Working Group (formerly Web Platform WG) (01-Oct-2016)", + "url": "https://www.w3.org/TR/html-aam-1.0/#substantive-changes-since-moving-to-the-web-application-working-group-formerly-web-platform-wg-01-oct-2016" + } + }, + "#summary": { + "current": { + "number": "3.5.123", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "summary", + "url": "https://w3c.github.io/html-aam/#summary" + }, + "snapshot": { + "number": "3.5.123", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "summary", + "url": "https://www.w3.org/TR/html-aam-1.0/#summary" + } + }, + "#summary-element-accessible-name-computation": { + "current": { + "number": "4.1.8", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "summary Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#summary-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.8", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "summary Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#summary-element-accessible-name-computation" + } + }, + "#sup": { + "current": { + "number": "3.5.124", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sup", + "url": "https://w3c.github.io/html-aam/#sup" + }, + "snapshot": { + "number": "3.5.124", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "sup", + "url": "https://www.w3.org/TR/html-aam-1.0/#sup" + } + }, + "#svg": { + "current": { + "number": "3.5.125", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "svg", + "url": "https://w3c.github.io/html-aam/#svg" + }, + "snapshot": { + "number": "3.5.125", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "svg", + "url": "https://www.w3.org/TR/html-aam-1.0/#svg" + } + }, + "#tabindex": { + "current": { + "number": "3.6.134", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "tabindex", + "url": "https://w3c.github.io/html-aam/#tabindex" + }, + "snapshot": { + "number": "3.6.134", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "tabindex", + "url": "https://www.w3.org/TR/html-aam-1.0/#tabindex" + } + }, + "#table": { + "current": { + "number": "3.5.126", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "table", + "url": "https://w3c.github.io/html-aam/#table" + }, + "snapshot": { + "number": "3.5.126", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "table", + "url": "https://www.w3.org/TR/html-aam-1.0/#table" + } + }, + "#table-element-accessible-name-computation": { + "current": { + "number": "4.1.11", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "table Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#table-element-accessible-name-computation" + }, + "snapshot": { + "number": "4.1.11", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "table Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#table-element-accessible-name-computation" + } + }, + "#target": { + "current": { + "number": "3.6.135", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "target", + "url": "https://w3c.github.io/html-aam/#target" + }, + "snapshot": { + "number": "3.6.135", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "target", + "url": "https://www.w3.org/TR/html-aam-1.0/#target" + } + }, + "#target-0": { + "current": { + "number": "3.6.136", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "target", + "url": "https://w3c.github.io/html-aam/#target-0" + }, + "snapshot": { + "number": "3.6.136", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "target", + "url": "https://www.w3.org/TR/html-aam-1.0/#target-0" + } + }, + "#target-1": { + "current": { + "number": "3.6.137", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "target", + "url": "https://w3c.github.io/html-aam/#target-1" + }, + "snapshot": { + "number": "3.6.137", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "target", + "url": "https://www.w3.org/TR/html-aam-1.0/#target-1" + } + }, + "#tbody": { + "current": { + "number": "3.5.127", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "tbody", + "url": "https://w3c.github.io/html-aam/#tbody" + }, + "snapshot": { + "number": "3.5.127", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "tbody", + "url": "https://www.w3.org/TR/html-aam-1.0/#tbody" + } + }, + "#td-ancestor-table-element-has-grid-or-treegrid-role": { + "current": { + "number": "3.5.129", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "td (ancestor table element has grid or treegrid role)", + "url": "https://w3c.github.io/html-aam/#td-ancestor-table-element-has-grid-or-treegrid-role" + }, + "snapshot": { + "number": "3.5.129", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "td (ancestor table element has grid or treegrid role)", + "url": "https://www.w3.org/TR/html-aam-1.0/#td-ancestor-table-element-has-grid-or-treegrid-role" + } + }, + "#td-ancestor-table-element-has-table-role": { + "current": { + "number": "3.5.128", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "td (ancestor table element has table role)", + "url": "https://w3c.github.io/html-aam/#td-ancestor-table-element-has-table-role" + }, + "snapshot": { + "number": "3.5.128", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "td (ancestor table element has table role)", + "url": "https://www.w3.org/TR/html-aam-1.0/#td-ancestor-table-element-has-table-role" + } + }, + "#template": { + "current": { + "number": "3.5.130", "spec": "HTML Accessibility API Mappings 1.0", - "text": "References", - "url": "https://w3c.github.io/html-aam/#references" + "text": "template", + "url": "https://w3c.github.io/html-aam/#template" }, "snapshot": { - "number": "B", + "number": "3.5.130", "spec": "HTML Accessibility API Mappings 1.0", - "text": "References", - "url": "https://www.w3.org/TR/html-aam-1.0/#references" + "text": "template", + "url": "https://www.w3.org/TR/html-aam-1.0/#template" } }, - "#section-and-grouping-element-accessible-name-computation": { + "#text-level-element-accessible-name-computation": { "current": { - "number": "4.1.16", + "number": "4.1.17", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Section and Grouping Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#section-and-grouping-element-accessible-name-computation" + "text": "Text-level Element Accessible Name Computation", + "url": "https://w3c.github.io/html-aam/#text-level-element-accessible-name-computation" }, "snapshot": { - "number": "4.1.16", + "number": "4.1.17", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Section and Grouping Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#section-and-grouping-element-accessible-name-computation" + "text": "Text-level Element Accessible Name Computation", + "url": "https://www.w3.org/TR/html-aam-1.0/#text-level-element-accessible-name-computation" } }, - "#substantive-changes-since-moving-to-the-accessible-rich-internet-applications-working-group-03-nov-2019": { + "#textarea": { "current": { - "number": "A.1.1", + "number": "3.5.131", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Substantive changes since moving to the Accessible Rich Internet Applications Working Group (03-Nov-2019)", - "url": "https://w3c.github.io/html-aam/#substantive-changes-since-moving-to-the-accessible-rich-internet-applications-working-group-03-nov-2019" + "text": "textarea", + "url": "https://w3c.github.io/html-aam/#textarea" }, "snapshot": { - "number": "A.1.1", + "number": "3.5.131", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Substantive changes since moving to the Accessible Rich Internet Applications Working Group (03-Nov-2019)", - "url": "https://www.w3.org/TR/html-aam-1.0/#substantive-changes-since-moving-to-the-accessible-rich-internet-applications-working-group-03-nov-2019" + "text": "textarea", + "url": "https://www.w3.org/TR/html-aam-1.0/#textarea" } }, - "#substantive-changes-since-moving-to-the-web-application-working-group-formerly-web-platform-wg-01-oct-2016": { + "#tfoot": { "current": { - "number": "A.1.1.1", + "number": "3.5.132", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Substantive changes since moving to the Web Application Working Group (formerly Web Platform WG) (01-Oct-2016)", - "url": "https://w3c.github.io/html-aam/#substantive-changes-since-moving-to-the-web-application-working-group-formerly-web-platform-wg-01-oct-2016" + "text": "tfoot", + "url": "https://w3c.github.io/html-aam/#tfoot" }, "snapshot": { - "number": "A.1.1.1", + "number": "3.5.132", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Substantive changes since moving to the Web Application Working Group (formerly Web Platform WG) (01-Oct-2016)", - "url": "https://www.w3.org/TR/html-aam-1.0/#substantive-changes-since-moving-to-the-web-application-working-group-formerly-web-platform-wg-01-oct-2016" + "text": "tfoot", + "url": "https://www.w3.org/TR/html-aam-1.0/#tfoot" } }, - "#summary-element-accessible-name-computation": { + "#th-is-a-column-header-or-column-group-header": { "current": { - "number": "4.1.8", + "number": "3.5.135", "spec": "HTML Accessibility API Mappings 1.0", - "text": "summary Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#summary-element-accessible-name-computation" + "text": "th (is a column header or column group header)", + "url": "https://w3c.github.io/html-aam/#th-is-a-column-header-or-column-group-header" }, "snapshot": { - "number": "4.1.8", + "number": "3.5.135", "spec": "HTML Accessibility API Mappings 1.0", - "text": "summary Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#summary-element-accessible-name-computation" + "text": "th (is a column header or column group header)", + "url": "https://www.w3.org/TR/html-aam-1.0/#th-is-a-column-header-or-column-group-header" } }, - "#table-element-accessible-name-computation": { + "#th-is-a-row-header-or-row-group-header": { "current": { - "number": "4.1.11", + "number": "3.5.136", "spec": "HTML Accessibility API Mappings 1.0", - "text": "table Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#table-element-accessible-name-computation" + "text": "th (is a row header or row group header)", + "url": "https://w3c.github.io/html-aam/#th-is-a-row-header-or-row-group-header" }, "snapshot": { - "number": "4.1.11", + "number": "3.5.136", "spec": "HTML Accessibility API Mappings 1.0", - "text": "table Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#table-element-accessible-name-computation" + "text": "th (is a row header or row group header)", + "url": "https://www.w3.org/TR/html-aam-1.0/#th-is-a-row-header-or-row-group-header" } }, - "#text-level-element-accessible-name-computation": { + "#th-is-not-a-column-header-row-header-column-group-header-or-row-group-header-and-ancestor-table-element-has-grid-or-treegrid-role": { "current": { - "number": "4.1.17", + "number": "3.5.134", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Text-level Element Accessible Name Computation", - "url": "https://w3c.github.io/html-aam/#text-level-element-accessible-name-computation" + "text": "th (is not a column header, row header, column group header or row group header, and ancestor table element has grid or treegrid role)", + "url": "https://w3c.github.io/html-aam/#th-is-not-a-column-header-row-header-column-group-header-or-row-group-header-and-ancestor-table-element-has-grid-or-treegrid-role" }, "snapshot": { - "number": "4.1.17", + "number": "3.5.134", "spec": "HTML Accessibility API Mappings 1.0", - "text": "Text-level Element Accessible Name Computation", - "url": "https://www.w3.org/TR/html-aam-1.0/#text-level-element-accessible-name-computation" + "text": "th (is not a column header, row header, column group header or row group header, and ancestor table element has grid or treegrid role)", + "url": "https://www.w3.org/TR/html-aam-1.0/#th-is-not-a-column-header-row-header-column-group-header-or-row-group-header-and-ancestor-table-element-has-grid-or-treegrid-role" + } + }, + "#th-is-not-a-column-header-row-header-column-group-header-or-row-group-header-and-ancestor-table-element-has-table-role": { + "current": { + "number": "3.5.133", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "th (is not a column header, row header, column group header or row group header, and ancestor table element has table role)", + "url": "https://w3c.github.io/html-aam/#th-is-not-a-column-header-row-header-column-group-header-or-row-group-header-and-ancestor-table-element-has-table-role" + }, + "snapshot": { + "number": "3.5.133", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "th (is not a column header, row header, column group header or row group header, and ancestor table element has table role)", + "url": "https://www.w3.org/TR/html-aam-1.0/#th-is-not-a-column-header-row-header-column-group-header-or-row-group-header-and-ancestor-table-element-has-table-role" + } + }, + "#thead": { + "current": { + "number": "3.5.137", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "thead", + "url": "https://w3c.github.io/html-aam/#thead" + }, + "snapshot": { + "number": "3.5.137", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "thead", + "url": "https://www.w3.org/TR/html-aam-1.0/#thead" + } + }, + "#time": { + "current": { + "number": "3.5.138", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "time", + "url": "https://w3c.github.io/html-aam/#time" + }, + "snapshot": { + "number": "3.5.138", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "time", + "url": "https://www.w3.org/TR/html-aam-1.0/#time" } }, "#title": { @@ -559,6 +4437,76 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#title" } }, + "#title-0": { + "current": { + "number": "3.5.139", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://w3c.github.io/html-aam/#title-0" + }, + "snapshot": { + "number": "3.5.139", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://www.w3.org/TR/html-aam-1.0/#title-0" + } + }, + "#title-1": { + "current": { + "number": "3.6.138", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://w3c.github.io/html-aam/#title-1" + }, + "snapshot": { + "number": "3.6.138", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://www.w3.org/TR/html-aam-1.0/#title-1" + } + }, + "#title-2": { + "current": { + "number": "3.6.139", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://w3c.github.io/html-aam/#title-2" + }, + "snapshot": { + "number": "3.6.139", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://www.w3.org/TR/html-aam-1.0/#title-2" + } + }, + "#title-3": { + "current": { + "number": "3.6.140", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://w3c.github.io/html-aam/#title-3" + }, + "snapshot": { + "number": "3.6.140", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://www.w3.org/TR/html-aam-1.0/#title-3" + } + }, + "#title-4": { + "current": { + "number": "3.6.141", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://w3c.github.io/html-aam/#title-4" + }, + "snapshot": { + "number": "3.6.141", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "title", + "url": "https://www.w3.org/TR/html-aam-1.0/#title-4" + } + }, "#toc": { "current": { "number": "", @@ -573,6 +4521,20 @@ "url": "https://www.w3.org/TR/html-aam-1.0/#toc" } }, + "#tr": { + "current": { + "number": "3.5.140", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "tr", + "url": "https://w3c.github.io/html-aam/#tr" + }, + "snapshot": { + "number": "3.5.140", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "tr", + "url": "https://www.w3.org/TR/html-aam-1.0/#tr" + } + }, "#tr-td-th-elements-accessible-name-computation": { "current": { "number": "4.1.12", @@ -586,5 +4548,285 @@ "text": "tr, td, th Elements Accessible Name Computation", "url": "https://www.w3.org/TR/html-aam-1.0/#tr-td-th-elements-accessible-name-computation" } + }, + "#track": { + "current": { + "number": "3.5.141", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "track", + "url": "https://w3c.github.io/html-aam/#track" + }, + "snapshot": { + "number": "3.5.141", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "track", + "url": "https://www.w3.org/TR/html-aam-1.0/#track" + } + }, + "#translate": { + "current": { + "number": "3.6.142", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "translate", + "url": "https://w3c.github.io/html-aam/#translate" + }, + "snapshot": { + "number": "3.6.142", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "translate", + "url": "https://www.w3.org/TR/html-aam-1.0/#translate" + } + }, + "#type": { + "current": { + "number": "3.6.143", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://w3c.github.io/html-aam/#type" + }, + "snapshot": { + "number": "3.6.143", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://www.w3.org/TR/html-aam-1.0/#type" + } + }, + "#type-0": { + "current": { + "number": "3.6.144", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://w3c.github.io/html-aam/#type-0" + }, + "snapshot": { + "number": "3.6.144", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://www.w3.org/TR/html-aam-1.0/#type-0" + } + }, + "#type-1": { + "current": { + "number": "3.6.145", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://w3c.github.io/html-aam/#type-1" + }, + "snapshot": { + "number": "3.6.145", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://www.w3.org/TR/html-aam-1.0/#type-1" + } + }, + "#type-2": { + "current": { + "number": "3.6.146", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://w3c.github.io/html-aam/#type-2" + }, + "snapshot": { + "number": "3.6.146", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://www.w3.org/TR/html-aam-1.0/#type-2" + } + }, + "#type-3": { + "current": { + "number": "3.6.147", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://w3c.github.io/html-aam/#type-3" + }, + "snapshot": { + "number": "3.6.147", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "type", + "url": "https://www.w3.org/TR/html-aam-1.0/#type-3" + } + }, + "#u": { + "current": { + "number": "3.5.142", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "u", + "url": "https://w3c.github.io/html-aam/#u" + }, + "snapshot": { + "number": "3.5.142", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "u", + "url": "https://www.w3.org/TR/html-aam-1.0/#u" + } + }, + "#ul": { + "current": { + "number": "3.5.143", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ul", + "url": "https://w3c.github.io/html-aam/#ul" + }, + "snapshot": { + "number": "3.5.143", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "ul", + "url": "https://www.w3.org/TR/html-aam-1.0/#ul" + } + }, + "#usemap": { + "current": { + "number": "3.6.148", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "usemap", + "url": "https://w3c.github.io/html-aam/#usemap" + }, + "snapshot": { + "number": "3.6.148", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "usemap", + "url": "https://www.w3.org/TR/html-aam-1.0/#usemap" + } + }, + "#value": { + "current": { + "number": "3.6.149", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://w3c.github.io/html-aam/#value" + }, + "snapshot": { + "number": "3.6.149", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://www.w3.org/TR/html-aam-1.0/#value" + } + }, + "#value-0": { + "current": { + "number": "3.6.150", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://w3c.github.io/html-aam/#value-0" + }, + "snapshot": { + "number": "3.6.150", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://www.w3.org/TR/html-aam-1.0/#value-0" + } + }, + "#value-1": { + "current": { + "number": "3.6.151", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://w3c.github.io/html-aam/#value-1" + }, + "snapshot": { + "number": "3.6.151", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://www.w3.org/TR/html-aam-1.0/#value-1" + } + }, + "#value-2": { + "current": { + "number": "3.6.152", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://w3c.github.io/html-aam/#value-2" + }, + "snapshot": { + "number": "3.6.152", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://www.w3.org/TR/html-aam-1.0/#value-2" + } + }, + "#value-3": { + "current": { + "number": "3.6.153", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://w3c.github.io/html-aam/#value-3" + }, + "snapshot": { + "number": "3.6.153", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "value", + "url": "https://www.w3.org/TR/html-aam-1.0/#value-3" + } + }, + "#var": { + "current": { + "number": "3.5.144", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "var", + "url": "https://w3c.github.io/html-aam/#var" + }, + "snapshot": { + "number": "3.5.144", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "var", + "url": "https://www.w3.org/TR/html-aam-1.0/#var" + } + }, + "#video": { + "current": { + "number": "3.5.145", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "video", + "url": "https://w3c.github.io/html-aam/#video" + }, + "snapshot": { + "number": "3.5.145", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "video", + "url": "https://www.w3.org/TR/html-aam-1.0/#video" + } + }, + "#wbr": { + "current": { + "number": "3.5.146", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "wbr", + "url": "https://w3c.github.io/html-aam/#wbr" + }, + "snapshot": { + "number": "3.5.146", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "wbr", + "url": "https://www.w3.org/TR/html-aam-1.0/#wbr" + } + }, + "#width": { + "current": { + "number": "3.6.154", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "width", + "url": "https://w3c.github.io/html-aam/#width" + }, + "snapshot": { + "number": "3.6.154", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "width", + "url": "https://www.w3.org/TR/html-aam-1.0/#width" + } + }, + "#wrap": { + "current": { + "number": "3.6.155", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "wrap", + "url": "https://w3c.github.io/html-aam/#wrap" + }, + "snapshot": { + "number": "3.6.155", + "spec": "HTML Accessibility API Mappings 1.0", + "text": "wrap", + "url": "https://www.w3.org/TR/html-aam-1.0/#wrap" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-html-media-capture.json b/bikeshed/spec-data/readonly/headings/headings-html-media-capture.json index 66594a3a6b..32a44bbbe9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-html-media-capture.json +++ b/bikeshed/spec-data/readonly/headings/headings-html-media-capture.json @@ -36,6 +36,12 @@ } }, "#informative-references": { + "current": { + "number": "B.2", + "spec": "HTML Media Capture", + "text": "Informative references", + "url": "https://w3c.github.io/html-media-capture/#informative-references" + }, "snapshot": { "number": "B.2", "spec": "HTML Media Capture", @@ -122,12 +128,6 @@ } }, "#the-capture-attribute": { - "current": { - "number": "5", - "spec": "HTML Media Capture", - "text": "The capture attribute", - "url": "https://w3c.github.io/html-media-capture/#the-capture-attribute" - }, "snapshot": { "number": "5", "spec": "HTML Media Capture", @@ -135,6 +135,14 @@ "url": "https://www.w3.org/TR/html-media-capture/#the-capture-attribute" } }, + "#the-capture-idl-attribute": { + "current": { + "number": "5", + "spec": "HTML Media Capture", + "text": "The capture IDL attribute", + "url": "https://w3c.github.io/html-media-capture/#the-capture-idl-attribute" + } + }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-html.json b/bikeshed/spec-data/readonly/headings/headings-html.json index ddef64b52d..eaf520705d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-html.json +++ b/bikeshed/spec-data/readonly/headings/headings-html.json @@ -26,8 +26,8 @@ "#a-link-or-button-containing-nothing-but-the-image": [ "/images#a-link-or-button-containing-nothing-but-the-image" ], - "#a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts,-diagrams,-graphs,-maps,-illustrations": [ - "/images#a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts,-diagrams,-graphs,-maps,-illustrations" + "#a-phrase-or-paragraph-with-an-alternative-graphical-representation%3A-charts%2C-diagrams%2C-graphs%2C-maps%2C-illustrations": [ + "/images#a-phrase-or-paragraph-with-an-alternative-graphical-representation%3A-charts%2C-diagrams%2C-graphs%2C-maps%2C-illustrations" ], "#a-purely-decorative-image-that-doesn't-add-any-information": [ "/images#a-purely-decorative-image-that-doesn't-add-any-information" @@ -35,12 +35,15 @@ "#a-quick-introduction-to-html": [ "/introduction#a-quick-introduction-to-html" ], - "#a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons,-logos": [ - "/images#a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons,-logos" + "#a-short-phrase-or-label-with-an-alternative-graphical-representation%3A-icons%2C-logos": [ + "/images#a-short-phrase-or-label-with-an-alternative-graphical-representation%3A-icons%2C-logos" ], "#aborting-a-document-load": [ "/document-lifecycle#aborting-a-document-load" ], + "#aborting-navigation": [ + "/browsing-the-web#aborting-navigation" + ], "#abstract": [ "/introduction#abstract" ], @@ -116,11 +119,11 @@ "#apis-for-creating-and-navigating-browsing-contexts-by-name": [ "/nav-history-apis#apis-for-creating-and-navigating-browsing-contexts-by-name" ], - "#application/microdata+json": [ - "/iana#application/microdata+json" + "#application%2Fmicrodata%2Bjson": [ + "/iana#application%2Fmicrodata%2Bjson" ], - "#application/xhtml+xml": [ - "/iana#application/xhtml+xml" + "#application%2Fxhtml%2Bxml": [ + "/iana#application%2Fxhtml%2Bxml" ], "#applying-the-history-step": [ "/browsing-the-web#applying-the-history-step" @@ -203,8 +206,8 @@ "#autofill-processing-model": [ "/form-control-infrastructure#autofill-processing-model" ], - "#autofilling-form-controls:-the-autocomplete-attribute": [ - "/form-control-infrastructure#autofilling-form-controls:-the-autocomplete-attribute" + "#autofilling-form-controls%3A-the-autocomplete-attribute": [ + "/form-control-infrastructure#autofilling-form-controls%3A-the-autocomplete-attribute" ], "#background": [ "/introduction#background" @@ -260,9 +263,6 @@ "#boolean-attributes": [ "/common-microsyntaxes#boolean-attributes" ], - "#broadcasting-to-many-ports": [ - "/web-messaging#broadcasting-to-many-ports" - ], "#broadcasting-to-other-browsing-contexts": [ "/web-messaging#broadcasting-to-other-browsing-contexts" ], @@ -281,8 +281,8 @@ "#button-layout": [ "/rendering#button-layout" ], - "#button-state-(type=button)": [ - "/input#button-state-(type=button)" + "#button-state-(type%3Dbutton)": [ + "/input#button-state-(type%3Dbutton)" ], "#calling-scripts": [ "/webappapis#calling-scripts" @@ -332,8 +332,8 @@ "#charset": [ "/semantics#charset" ], - "#checkbox-state-(type=checkbox)": [ - "/input#checkbox-state-(type=checkbox)" + "#checkbox-state-(type%3Dcheckbox)": [ + "/input#checkbox-state-(type%3Dcheckbox)" ], "#child-navigables": [ "/document-sequences#child-navigables" @@ -344,6 +344,15 @@ "#client-side-form-validation": [ "/forms#client-side-form-validation" ], + "#close-requests": [ + "/interaction#close-requests" + ], + "#close-requests-and-close-watchers": [ + "/interaction#close-requests-and-close-watchers" + ], + "#close-watcher-infrastructure": [ + "/interaction#close-watcher-infrastructure" + ], "#closing-elements-that-have-implied-end-tags": [ "/parsing#closing-elements-that-have-implied-end-tags" ], @@ -359,8 +368,8 @@ "#collections": [ "/common-dom-interfaces#collections" ], - "#color-state-(type=color)": [ - "/input#color-state-(type=color)" + "#color-state-(type%3Dcolor)": [ + "/input#color-state-(type%3Dcolor)" ], "#colour-spaces-and-colour-correction": [ "/canvas#colour-spaces-and-colour-correction" @@ -529,11 +538,11 @@ "#cross-origin-opener-policies": [ "/browsers#cross-origin-opener-policies" ], - "#crossoriginget-(-o,-p,-receiver-)": [ - "/nav-history-apis#crossoriginget-(-o,-p,-receiver-)" + "#crossoriginget-(-o%2C-p%2C-receiver-)": [ + "/nav-history-apis#crossoriginget-(-o%2C-p%2C-receiver-)" ], - "#crossorigingetownpropertyhelper-(-o,-p-)": [ - "/nav-history-apis#crossorigingetownpropertyhelper-(-o,-p-)" + "#crossorigingetownpropertyhelper-(-o%2C-p-)": [ + "/nav-history-apis#crossorigingetownpropertyhelper-(-o%2C-p-)" ], "#crossoriginownpropertykeys-(-o-)": [ "/nav-history-apis#crossoriginownpropertykeys-(-o-)" @@ -544,8 +553,8 @@ "#crossoriginpropertyfallback-(-p-)": [ "/nav-history-apis#crossoriginpropertyfallback-(-p-)" ], - "#crossoriginset-(-o,-p,-v,-receiver-)": [ - "/nav-history-apis#crossoriginset-(-o,-p,-v,-receiver-)" + "#crossoriginset-(-o%2C-p%2C-v%2C-receiver-)": [ + "/nav-history-apis#crossoriginset-(-o%2C-p%2C-v%2C-receiver-)" ], "#cue-events": [ "/media#cue-events" @@ -592,14 +601,17 @@ "#custom-handlers": [ "/system-state#custom-handlers" ], + "#custom-state-pseudo-class": [ + "/custom-elements#custom-state-pseudo-class" + ], "#data-model": [ "/interaction#data-model" ], "#data-state": [ "/parsing#data-state" ], - "#date-state-(type=date)": [ - "/input#date-state-(type=date)" + "#date-state-(type%3Ddate)": [ + "/input#date-state-(type%3Ddate)" ], "#dates": [ "/common-microsyntaxes#dates" @@ -793,8 +805,8 @@ "#elements-in-the-dom": [ "/dom#elements-in-the-dom" ], - "#email-state-(type=email)": [ - "/input#email-state-(type=email)" + "#email-state-(type%3Demail)": [ + "/input#email-state-(type%3Demail)" ], "#embedded-content": [ "/embedded-content#embedded-content" @@ -811,8 +823,8 @@ "#embedding-custom-non-visible-data-with-the-data-*-attributes": [ "/dom#embedding-custom-non-visible-data-with-the-data-*-attributes" ], - "#enabling-and-disabling-form-controls:-the-disabled-attribute": [ - "/form-control-infrastructure#enabling-and-disabling-form-controls:-the-disabled-attribute" + "#enabling-and-disabling-form-controls%3A-the-disabled-attribute": [ + "/form-control-infrastructure#enabling-and-disabling-form-controls%3A-the-disabled-attribute" ], "#enabling-and-disabling-scripting": [ "/webappapis#enabling-and-disabling-scripting" @@ -856,8 +868,8 @@ "#event-handler-attributes": [ "/webappapis#event-handler-attributes" ], - "#event-handlers-on-elements,-document-objects,-and-window-objects": [ - "/webappapis#event-handlers-on-elements,-document-objects,-and-window-objects" + "#event-handlers-on-elements%2C-document-objects%2C-and-window-objects": [ + "/webappapis#event-handlers-on-elements%2C-document-objects%2C-and-window-objects" ], "#event-loop-for-spec-authors": [ "/webappapis#event-loop-for-spec-authors" @@ -898,6 +910,9 @@ "#examples-6": [ "/workers#examples-6" ], + "#exposing-custom-element-states": [ + "/custom-elements#exposing-custom-element-states" + ], "#exposing-outlines-to-users": [ "/sections#exposing-outlines-to-users" ], @@ -925,8 +940,8 @@ "#fetching-scripts": [ "/webappapis#fetching-scripts" ], - "#file-upload-state-(type=file)": [ - "/input#file-upload-state-(type=file)" + "#file-upload-state-(type%3Dfile)": [ + "/input#file-upload-state-(type%3Dfile)" ], "#fill-and-stroke-styles": [ "/canvas#fill-and-stroke-styles" @@ -1048,8 +1063,8 @@ "#hidden-elements": [ "/rendering#hidden-elements" ], - "#hidden-state-(type=hidden)": [ - "/input#hidden-state-(type=hidden)" + "#hidden-state-(type%3Dhidden)": [ + "/input#hidden-state-(type%3Dhidden)" ], "#history-2": [ "/introduction#history-2" @@ -1060,17 +1075,26 @@ "#hostenqueuefinalizationregistrycleanupjob": [ "/webappapis#hostenqueuefinalizationregistrycleanupjob" ], + "#hostenqueuegenericjob": [ + "/webappapis#hostenqueuegenericjob" + ], "#hostenqueuepromisejob": [ "/webappapis#hostenqueuepromisejob" ], - "#hostensurecancompilestrings(realm)": [ - "/webappapis#hostensurecancompilestrings(realm)" + "#hostenqueuetimeoutjob": [ + "/webappapis#hostenqueuetimeoutjob" + ], + "#hostensurecancompilestrings(realm%2C-parameterstrings%2C-bodystring%2C-codestring%2C-compilationtype%2C-parameterargs%2C-bodyarg)": [ + "/webappapis#hostensurecancompilestrings(realm%2C-parameterstrings%2C-bodystring%2C-codestring%2C-compilationtype%2C-parameterargs%2C-bodyarg)" + ], + "#hostgetcodeforeval(argument)": [ + "/webappapis#hostgetcodeforeval(argument)" ], "#hostgetimportmetaproperties": [ "/webappapis#hostgetimportmetaproperties" ], - "#hostgetsupportedimportassertions": [ - "/webappapis#hostgetsupportedimportassertions" + "#hostgetsupportedimportattributes": [ + "/webappapis#hostgetsupportedimportattributes" ], "#hostloadimportedmodule": [ "/webappapis#hostloadimportedmodule" @@ -1078,8 +1102,11 @@ "#hostmakejobcallback": [ "/webappapis#hostmakejobcallback" ], - "#how-to-catch-mistakes-when-writing-html:-validators-and-conformance-checkers": [ - "/introduction#how-to-catch-mistakes-when-writing-html:-validators-and-conformance-checkers" + "#hostsystemutcepochnanoseconds": [ + "/webappapis#hostsystemutcepochnanoseconds" + ], + "#how-to-catch-mistakes-when-writing-html%3A-validators-and-conformance-checkers": [ + "/introduction#how-to-catch-mistakes-when-writing-html%3A-validators-and-conformance-checkers" ], "#how-to-read-this-specification": [ "/introduction#how-to-read-this-specification" @@ -1087,6 +1114,9 @@ "#html-element-constructors": [ "/dom#html-element-constructors" ], + "#html-serialization-methods": [ + "/dynamic-markup-insertion#html-serialization-methods" + ], "#html-vs-xhtml": [ "/introduction#html-vs-xhtml" ], @@ -1105,8 +1135,8 @@ "#idl-definitions": [ "/webappapis#idl-definitions" ], - "#image-button-state-(type=image)": [ - "/input#image-button-state-(type=image)" + "#image-button-state-(type%3Dimage)": [ + "/input#image-button-state-(type%3Dimage)" ], "#image-map-processing-model": [ "/image-maps#image-map-processing-model" @@ -1192,11 +1222,11 @@ "#input-impl-notes": [ "/input#input-impl-notes" ], - "#input-modalities:-the-enterkeyhint-attribute": [ - "/interaction#input-modalities:-the-enterkeyhint-attribute" + "#input-modalities%3A-the-enterkeyhint-attribute": [ + "/interaction#input-modalities%3A-the-enterkeyhint-attribute" ], - "#input-modalities:-the-inputmode-attribute": [ - "/interaction#input-modalities:-the-inputmode-attribute" + "#input-modalities%3A-the-inputmode-attribute": [ + "/interaction#input-modalities%3A-the-inputmode-attribute" ], "#integration-with-idl": [ "/nav-history-apis#integration-with-idl" @@ -1213,8 +1243,8 @@ "#integration-with-the-javascript-module-system": [ "/webappapis#integration-with-the-javascript-module-system" ], - "#interaction-with-details-and-hidden=until-found": [ - "/interaction#interaction-with-details-and-hidden=until-found" + "#interaction-with-details-and-hidden%3Duntil-found": [ + "/interaction#interaction-with-details-and-hidden%3Duntil-found" ], "#interaction-with-selection": [ "/interaction#interaction-with-selection" @@ -1285,8 +1315,8 @@ "#ipr": [ "/acknowledgements#ipr" ], - "#is-this-html5?": [ - "/introduction#is-this-html5?" + "#is-this-html5%3F": [ + "/introduction#is-this-html5%3F" ], "#isplatformobjectsameorigin-(-o-)": [ "/nav-history-apis#isplatformobjectsameorigin-(-o-)" @@ -1324,8 +1354,8 @@ "#licensing-works": [ "/microdata#licensing-works" ], - "#limiting-user-input-length:-the-maxlength-attribute": [ - "/form-control-infrastructure#limiting-user-input-length:-the-maxlength-attribute" + "#limiting-user-input-length%3A-the-maxlength-attribute": [ + "/form-control-infrastructure#limiting-user-input-length%3A-the-maxlength-attribute" ], "#line-styles": [ "/canvas#line-styles" @@ -1342,6 +1372,9 @@ "#link-type-dns-prefetch": [ "/links#link-type-dns-prefetch" ], + "#link-type-expect": [ + "/links#link-type-expect" + ], "#link-type-external": [ "/links#link-type-external" ], @@ -1384,12 +1417,12 @@ "#link-type-preload": [ "/links#link-type-preload" ], - "#link-type-prerender": [ - "/links#link-type-prerender" - ], "#link-type-prev": [ "/links#link-type-prev" ], + "#link-type-privacy-policy": [ + "/links#link-type-privacy-policy" + ], "#link-type-search": [ "/links#link-type-search" ], @@ -1399,14 +1432,17 @@ "#link-type-tag": [ "/links#link-type-tag" ], + "#link-type-terms-of-service": [ + "/links#link-type-terms-of-service" + ], "#linkTypes": [ "/links#linkTypes" ], "#links": [ "/links#links" ], - "#links,-forms,-and-navigation": [ - "/rendering#links,-forms,-and-navigation" + "#links%2C-forms%2C-and-navigation": [ + "/rendering#links%2C-forms%2C-and-navigation" ], "#links-created-by-a-and-area-elements": [ "/links#links-created-by-a-and-area-elements" @@ -1429,8 +1465,8 @@ "#loading-web-pages-supporting-concepts": [ "/browsers#loading-web-pages-supporting-concepts" ], - "#local-date-and-time-state-(type=datetime-local)": [ - "/input#local-date-and-time-state-(type=datetime-local)" + "#local-date-and-time-state-(type%3Ddatetime-local)": [ + "/input#local-date-and-time-state-(type%3Ddatetime-local)" ], "#local-dates-and-times": [ "/common-microsyntaxes#local-dates-and-times" @@ -1471,8 +1507,8 @@ "#low-level-operations-on-session-history": [ "/browsing-the-web#low-level-operations-on-session-history" ], - "#making-entire-documents-editable:-the-designmode-idl-attribute": [ - "/interaction#making-entire-documents-editable:-the-designmode-idl-attribute" + "#making-entire-documents-editable%3A-the-designmode-idl-attribute": [ + "/interaction#making-entire-documents-editable%3A-the-designmode-idl-attribute" ], "#margin-collapsing-quirks": [ "/rendering#margin-collapsing-quirks" @@ -1519,11 +1555,11 @@ "#mime-types-2": [ "/indices#mime-types-2" ], - "#misnested-tags:-b-i-/b-/i": [ - "/parsing#misnested-tags:-b-i-/b-/i" + "#misnested-tags%3A-b-i-%2Fb-%2Fi": [ + "/parsing#misnested-tags%3A-b-i-%2Fb-%2Fi" ], - "#misnested-tags:-b-p-/b-/p": [ - "/parsing#misnested-tags:-b-p-/b-/p" + "#misnested-tags%3A-b-p-%2Fb-%2Fp": [ + "/parsing#misnested-tags%3A-b-p-%2Fb-%2Fp" ], "#modal-dialogs-and-inert-subtrees": [ "/interaction#modal-dialogs-and-inert-subtrees" @@ -1534,8 +1570,8 @@ "#module-worker-example": [ "/workers#module-worker-example" ], - "#month-state-(type=month)": [ - "/input#month-state-(type=month)" + "#month-state-(type%3Dmonth)": [ + "/input#month-state-(type%3Dmonth)" ], "#months": [ "/common-microsyntaxes#months" @@ -1543,12 +1579,12 @@ "#mq": [ "/common-microsyntaxes#mq" ], + "#multipart%2Fx-mixed-replace": [ + "/iana#multipart%2Fx-mixed-replace" + ], "#multipart-form-data": [ "/form-control-infrastructure#multipart-form-data" ], - "#multipart/x-mixed-replace": [ - "/iana#multipart/x-mixed-replace" - ], "#mutability": [ "/form-control-infrastructure#mutability" ], @@ -1561,11 +1597,11 @@ "#named-character-references": [ "/named-characters#named-character-references" ], - "#names:-the-itemprop-attribute": [ - "/microdata#names:-the-itemprop-attribute" + "#names%3A-the-itemprop-attribute": [ + "/microdata#names%3A-the-itemprop-attribute" ], - "#naming-form-controls:-the-name-attribute": [ - "/form-control-infrastructure#naming-form-controls:-the-name-attribute" + "#naming-form-controls%3A-the-name-attribute": [ + "/form-control-infrastructure#naming-form-controls%3A-the-name-attribute" ], "#native-appearance-2": [ "/rendering#native-appearance-2" @@ -1585,6 +1621,12 @@ "#navigables": [ "/document-sequences#navigables" ], + "#navigate-event-firing": [ + "/nav-history-apis#navigate-event-firing" + ], + "#navigate-event-scroll-focus": [ + "/nav-history-apis#navigate-event-scroll-focus" + ], "#navigate-non-frag-sync": [ "/browsing-the-web#navigate-non-frag-sync" ], @@ -1594,9 +1636,30 @@ "#navigating-nested-browsing-contexts-in-the-dom": [ "/nav-history-apis#navigating-nested-browsing-contexts-in-the-dom" ], + "#navigation-activation-interface": [ + "/nav-history-apis#navigation-activation-interface" + ], "#navigation-and-session-history": [ "/browsing-the-web#navigation-and-session-history" ], + "#navigation-api": [ + "/nav-history-apis#navigation-api" + ], + "#navigation-api-core": [ + "/nav-history-apis#navigation-api-core" + ], + "#navigation-api-entry-updates": [ + "/nav-history-apis#navigation-api-entry-updates" + ], + "#navigation-api-initiating-navigations": [ + "/nav-history-apis#navigation-api-initiating-navigations" + ], + "#navigation-api-intro": [ + "/nav-history-apis#navigation-api-intro" + ], + "#navigation-interface": [ + "/nav-history-apis#navigation-interface" + ], "#navigation-supporting-concepts": [ "/browsing-the-web#navigation-supporting-concepts" ], @@ -1636,8 +1699,8 @@ "#normalizing-the-source-densities": [ "/images#normalizing-the-source-densities" ], - "#number-state-(type=number)": [ - "/input#number-state-(type=number)" + "#number-state-(type%3Dnumber)": [ + "/input#number-state-(type%3Dnumber)" ], "#numbers": [ "/common-microsyntaxes#numbers" @@ -1657,6 +1720,9 @@ "#offsets-into-the-media-resource": [ "/media#offsets-into-the-media-resource" ], + "#ongoing-navigation-tracking": [ + "/nav-history-apis#ongoing-navigation-tracking" + ], "#opening-the-input-stream": [ "/dynamic-markup-insertion#opening-the-input-stream" ], @@ -1669,8 +1735,8 @@ "#origin-keyed-agent-clusters": [ "/browsers#origin-keyed-agent-clusters" ], - "#other-elements,-attributes-and-apis": [ - "/obsolete#other-elements,-attributes-and-apis" + "#other-elements%2C-attributes-and-apis": [ + "/obsolete#other-elements%2C-attributes-and-apis" ], "#other-link-types": [ "/links#other-link-types" @@ -1789,8 +1855,8 @@ "#parsing-xhtml-fragments": [ "/xhtml#parsing-xhtml-fragments" ], - "#password-state-(type=password)": [ - "/input#password-state-(type=password)" + "#password-state-(type%3Dpassword)": [ + "/input#password-state-(type%3Dpassword)" ], "#path2d-objects": [ "/canvas#path2d-objects" @@ -1900,11 +1966,11 @@ "#queuing-tasks": [ "/webappapis#queuing-tasks" ], - "#radio-button-state-(type=radio)": [ - "/input#radio-button-state-(type=radio)" + "#radio-button-state-(type%3Dradio)": [ + "/input#radio-button-state-(type%3Dradio)" ], - "#range-state-(type=range)": [ - "/input#range-state-(type=range)" + "#range-state-(type%3Drange)": [ + "/input#range-state-(type%3Drange)" ], "#rawtext-end-tag-name-state": [ "/parsing#rawtext-end-tag-name-state" @@ -2011,8 +2077,8 @@ "#requirements-relating-to-the-bidirectional-algorithm": [ "/dom#requirements-relating-to-the-bidirectional-algorithm" ], - "#reset-button-state-(type=reset)": [ - "/input#reset-button-state-(type=reset)" + "#reset-button-state-(type%3Dreset)": [ + "/input#reset-button-state-(type%3Dreset)" ], "#resetting-a-form": [ "/form-control-infrastructure#resetting-a-form" @@ -2032,6 +2098,9 @@ "#restrictions-on-content-models-and-on-attribute-values": [ "/introduction#restrictions-on-content-models-and-on-attribute-values" ], + "#revealing-the-document": [ + "/browsing-the-web#revealing-the-document" + ], "#runtime-script-errors": [ "/webappapis#runtime-script-errors" ], @@ -2248,8 +2317,8 @@ "#session-history-infrastructure": [ "/browsing-the-web#session-history-infrastructure" ], - "#setting-minimum-input-length-requirements:-the-minlength-attribute": [ - "/form-control-infrastructure#setting-minimum-input-length-requirements:-the-minlength-attribute" + "#setting-minimum-input-length-requirements%3A-the-minlength-attribute": [ + "/form-control-infrastructure#setting-minimum-input-length-requirements%3A-the-minlength-attribute" ], "#shadow-root-access": [ "/custom-elements#shadow-root-access" @@ -2263,8 +2332,8 @@ "#shared-document-creation-infrastructure": [ "/document-lifecycle#shared-document-creation-infrastructure" ], - "#shared-internal-slot:-crossoriginpropertydescriptormap": [ - "/nav-history-apis#shared-internal-slot:-crossoriginpropertydescriptormap" + "#shared-internal-slot%3A-crossoriginpropertydescriptormap": [ + "/nav-history-apis#shared-internal-slot%3A-crossoriginpropertydescriptormap" ], "#shared-state-using-a-shared-worker": [ "/workers#shared-state-using-a-shared-worker" @@ -2350,11 +2419,11 @@ "#structuredserializewithtransfer": [ "/structured-data#structuredserializewithtransfer" ], - "#submit-button-state-(type=submit)": [ - "/input#submit-button-state-(type=submit)" + "#submit-button-state-(type%3Dsubmit)": [ + "/input#submit-button-state-(type%3Dsubmit)" ], - "#submitting-element-directionality:-the-dirname-attribute": [ - "/form-control-infrastructure#submitting-element-directionality:-the-dirname-attribute" + "#submitting-element-directionality%3A-the-dirname-attribute": [ + "/form-control-infrastructure#submitting-element-directionality%3A-the-dirname-attribute" ], "#suggested-reading": [ "/introduction#suggested-reading" @@ -2409,8 +2478,8 @@ "#tag-open-state": [ "/parsing#tag-open-state" ], - "#telephone-state-(type=tel)": [ - "/input#telephone-state-(type=tel)" + "#telephone-state-(type%3Dtel)": [ + "/input#telephone-state-(type%3Dtel)" ], "#template-XSLT-XPath": [ "/scripting#template-XSLT-XPath" @@ -2424,8 +2493,17 @@ "#terminology-3": [ "/urls-and-fetching#terminology-3" ], - "#text-(type=text)-state-and-search-state-(type=search)": [ - "/input#text-(type=text)-state-and-search-state-(type=search)" + "#text%2Fevent-stream": [ + "/iana#text%2Fevent-stream" + ], + "#text%2Fhtml": [ + "/iana#text%2Fhtml" + ], + "#text%2Fping": [ + "/iana#text%2Fping" + ], + "#text-(type%3Dtext)-state-and-search-state-(type%3Dsearch)": [ + "/input#text-(type%3Dtext)-state-and-search-state-(type%3Dsearch)" ], "#text-2": [ "/syntax#text-2" @@ -2448,15 +2526,6 @@ "#text-track-model": [ "/media#text-track-model" ], - "#text/event-stream": [ - "/iana#text/event-stream" - ], - "#text/html": [ - "/iana#text/html" - ], - "#text/ping": [ - "/iana#text/ping" - ], "#textFieldSelection": [ "/form-control-infrastructure#textFieldSelection" ], @@ -2550,6 +2619,9 @@ "#the-cite-element": [ "/text-level-semantics#the-cite-element" ], + "#the-closewatcher-interface": [ + "/interaction#the-closewatcher-interface" + ], "#the-code-element": [ "/text-level-semantics#the-code-element" ], @@ -2568,6 +2640,9 @@ "#the-coop-headers": [ "/browsers#the-coop-headers" ], + "#the-createcontextualfragment()-method": [ + "/dynamic-markup-insertion#the-createcontextualfragment()-method" + ], "#the-css-user-agent-style-sheet-and-presentational-hints": [ "/rendering#the-css-user-agent-style-sheet-and-presentational-hints" ], @@ -2604,8 +2679,8 @@ "#the-dialog-element": [ "/interactive-elements#the-dialog-element" ], - "#the-difference-between-the-field-type,-the-autofill-field-name,-and-the-input-modality": [ - "/forms#the-difference-between-the-field-type,-the-autofill-field-name,-and-the-input-modality" + "#the-difference-between-the-field-type%2C-the-autofill-field-name%2C-and-the-input-modality": [ + "/forms#the-difference-between-the-field-type%2C-the-autofill-field-name%2C-and-the-input-modality" ], "#the-dir-attribute": [ "/dom#the-dir-attribute" @@ -2625,6 +2700,9 @@ "#the-documentorshadowroot-interface": [ "/dom#the-documentorshadowroot-interface" ], + "#the-domparser-interface": [ + "/dynamic-markup-insertion#the-domparser-interface" + ], "#the-domstringlist-interface": [ "/common-dom-interfaces#the-domstringlist-interface" ], @@ -2685,8 +2763,8 @@ "#the-global-scope": [ "/workers#the-global-scope" ], - "#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements": [ - "/sections#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + "#the-h1%2C-h2%2C-h3%2C-h4%2C-h5%2C-and-h6-elements": [ + "/sections#the-h1%2C-h2%2C-h3%2C-h4%2C-h5%2C-and-h6-elements" ], "#the-hashchangeevent-interface": [ "/nav-history-apis#the-hashchangeevent-interface" @@ -2703,6 +2781,9 @@ "#the-hidden-attribute": [ "/interaction#the-hidden-attribute" ], + "#the-history-entry-list": [ + "/nav-history-apis#the-history-entry-list" + ], "#the-history-interface": [ "/nav-history-apis#the-history-interface" ], @@ -2751,6 +2832,9 @@ "#the-initial-insertion-mode": [ "/parsing#the-initial-insertion-mode" ], + "#the-innerhtml-property": [ + "/dynamic-markup-insertion#the-innerhtml-property" + ], "#the-innertext-idl-attribute": [ "/dom#the-innertext-idl-attribute" ], @@ -2784,11 +2868,14 @@ "#the-ins-element": [ "/edits#the-ins-element" ], + "#the-insertadjacenthtml()-method": [ + "/dynamic-markup-insertion#the-insertadjacenthtml()-method" + ], "#the-insertion-mode": [ "/parsing#the-insertion-mode" ], - "#the-javascript:-url-special-case": [ - "/browsing-the-web#the-javascript:-url-special-case" + "#the-javascript%3A-url-special-case": [ + "/browsing-the-web#the-javascript%3A-url-special-case" ], "#the-kbd-element": [ "/text-level-semantics#the-kbd-element" @@ -2796,8 +2883,8 @@ "#the-label-element": [ "/forms#the-label-element" ], - "#the-lang-and-xml:lang-attributes": [ - "/dom#the-lang-and-xml:lang-attributes" + "#the-lang-and-xml%3Alang-attributes": [ + "/dom#the-lang-and-xml%3Alang-attributes" ], "#the-last-event-id-header": [ "/server-sent-events#the-last-event-id-header" @@ -2871,6 +2958,21 @@ "#the-nav-element": [ "/sections#the-nav-element" ], + "#the-navigate-event": [ + "/nav-history-apis#the-navigate-event" + ], + "#the-navigateevent-interface": [ + "/nav-history-apis#the-navigateevent-interface" + ], + "#the-navigationcurrententrychangeevent-interface": [ + "/nav-history-apis#the-navigationcurrententrychangeevent-interface" + ], + "#the-navigationdestination-interface": [ + "/nav-history-apis#the-navigationdestination-interface" + ], + "#the-navigationhistoryentry-interface": [ + "/nav-history-apis#the-navigationhistoryentry-interface" + ], "#the-navigator-object": [ "/system-state#the-navigator-object" ], @@ -2880,6 +2982,9 @@ "#the-nothing-content-model": [ "/dom#the-nothing-content-model" ], + "#the-notrestoredreasons-interface": [ + "/nav-history-apis#the-notrestoredreasons-interface" + ], "#the-object-element": [ "/iframe-embed-object#the-object-element" ], @@ -2898,6 +3003,9 @@ "#the-option-element": [ "/form-elements#the-option-element" ], + "#the-outerhtml-property": [ + "/dynamic-markup-insertion#the-outerhtml-property" + ], "#the-output-element": [ "/form-elements#the-output-element" ], @@ -2907,6 +3015,12 @@ "#the-page": [ "/rendering#the-page" ], + "#the-pagerevealevent-interface": [ + "/nav-history-apis#the-pagerevealevent-interface" + ], + "#the-pageswapevent-interface": [ + "/nav-history-apis#the-pageswapevent-interface" + ], "#the-pagetransitionevent-interface": [ "/nav-history-apis#the-pagetransitionevent-interface" ], @@ -2976,6 +3090,9 @@ "#the-script-element": [ "/scripting#the-script-element" ], + "#the-search-element": [ + "/grouping-content#the-search-element" + ], "#the-section-element": [ "/sections#the-section-element" ], @@ -3076,7 +3193,7 @@ "/semantics#the-title-element" ], "#the-toggleevent-interface": [ - "/popover#the-toggleevent-interface" + "/interaction#the-toggleevent-interface" ], "#the-tr-element": [ "/tables#the-tr-element" @@ -3108,6 +3225,9 @@ "#the-video-element": [ "/media#the-video-element" ], + "#the-visibilitystateentry-interface": [ + "/interaction#the-visibilitystateentry-interface" + ], "#the-wbr-element": [ "/text-level-semantics#the-wbr-element" ], @@ -3135,8 +3255,8 @@ "#time-ranges": [ "/media#time-ranges" ], - "#time-state-(type=time)": [ - "/input#time-state-(type=time)" + "#time-state-(type%3Dtime)": [ + "/input#time-state-(type%3Dtime)" ], "#time-zones": [ "/common-microsyntaxes#time-zones" @@ -3198,6 +3318,9 @@ "#unloading-documents": [ "/document-lifecycle#unloading-documents" ], + "#unsafe-html-parsing-methods": [ + "/dynamic-markup-insertion#unsafe-html-parsing-methods" + ], "#unstyled-xml-documents": [ "/rendering#unstyled-xml-documents" ], @@ -3219,8 +3342,8 @@ "#url-encoded-form-data": [ "/form-control-infrastructure#url-encoded-form-data" ], - "#url-state-(type=url)": [ - "/input#url-state-(type=url)" + "#url-state-(type%3Durl)": [ + "/input#url-state-(type%3Durl)" ], "#urls": [ "/urls-and-fetching#urls" @@ -3240,6 +3363,9 @@ "#user-activation-processing-model": [ "/interaction#user-activation-processing-model" ], + "#user-activation-user-agent-automation": [ + "/interaction#user-activation-user-agent-automation" + ], "#user-agent-automation": [ "/system-state#user-agent-automation" ], @@ -3258,6 +3384,9 @@ "#user-tracking": [ "/webstorage#user-tracking" ], + "#using-reflect-in-specifications": [ + "/common-dom-interfaces#using-reflect-in-specifications" + ], "#using-the-a-element-to-define-a-command": [ "/interactive-elements#using-the-a-element-to-define-a-command" ], @@ -3294,8 +3423,8 @@ "#warnings-for-obsolete-but-conforming-features": [ "/obsolete#warnings-for-obsolete-but-conforming-features" ], - "#web+-scheme-prefix": [ - "/iana#web+-scheme-prefix" + "#web%2B-scheme-prefix": [ + "/iana#web%2B-scheme-prefix" ], "#web-messaging": [ "/web-messaging#web-messaging" @@ -3306,8 +3435,8 @@ "#webstorage": [ "/webstorage#webstorage" ], - "#week-state-(type=week)": [ - "/input#week-state-(type=week)" + "#week-state-(type%3Dweek)": [ + "/input#week-state-(type%3Dweek)" ], "#weeks": [ "/common-microsyntaxes#weeks" @@ -3417,9 +3546,15 @@ "#writing-a-form's-user-interface": [ "/forms#writing-a-form's-user-interface" ], + "#writing-mode": [ + "/rendering#writing-mode" + ], "#writing-secure-applications-with-html": [ "/introduction#writing-secure-applications-with-html" ], + "#writing-suggestions": [ + "/interaction#writing-suggestions" + ], "#writing-xhtml-documents": [ "/xhtml#writing-xhtml-documents" ], @@ -3447,9 +3582,9 @@ }, "/browsers#browsers": { "current": { - "number": "", + "number": "7", "spec": "HTML", - "text": "7 Loading web pages", + "text": "Loading web pages", "url": "https://html.spec.whatwg.org/multipage/browsers.html#browsers" } }, @@ -3565,6 +3700,14 @@ "url": "https://html.spec.whatwg.org/multipage/browsers.html#the-coop-headers" } }, + "/browsing-the-web#aborting-navigation": { + "current": { + "number": "7.4.2.5", + "spec": "HTML", + "text": "Aborting navigation", + "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#aborting-navigation" + } + }, "/browsing-the-web#applying-the-history-step": { "current": { "number": "7.4.6", @@ -3655,7 +3798,7 @@ }, "/browsing-the-web#persisted-user-state-restoration": { "current": { - "number": "7.4.6.4", + "number": "7.4.6.5", "spec": "HTML", "text": "Persisted history entry state", "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#persisted-user-state-restoration" @@ -3685,6 +3828,14 @@ "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#reloading-and-traversing" } }, + "/browsing-the-web#revealing-the-document": { + "current": { + "number": "7.4.6.3", + "spec": "HTML", + "text": "Revealing the document", + "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#revealing-the-document" + } + }, "/browsing-the-web#scroll-to-fragid": { "current": { "number": "7.4.2.3.3", @@ -3695,7 +3846,7 @@ }, "/browsing-the-web#scrolling-to-a-fragment": { "current": { - "number": "7.4.6.3", + "number": "7.4.6.4", "spec": "HTML", "text": "Scrolling to a fragment", "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#scrolling-to-a-fragment" @@ -3717,12 +3868,12 @@ "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#session-history-infrastructure" } }, - "/browsing-the-web#the-javascript:-url-special-case": { + "/browsing-the-web#the-javascript%3A-url-special-case": { "current": { "number": "7.4.2.3.2", "spec": "HTML", "text": "The javascript: URL special case", - "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#the-javascript:-url-special-case" + "url": "https://html.spec.whatwg.org/multipage/browsing-the-web.html#the-javascript%3A-url-special-case" } }, "/browsing-the-web#the-usual-cross-document-navigation-case": { @@ -3793,7 +3944,7 @@ "current": { "number": "4.12.5.1.13", "spec": "HTML", - "text": "Drawing focus rings and scrolling paths into view", + "text": "Drawing focus rings", "url": "https://html.spec.whatwg.org/multipage/canvas.html#drawing-focus-rings-and-scrolling-paths-into-view" } }, @@ -4023,7 +4174,7 @@ }, "/common-dom-interfaces#HTMLAllCollection-call": { "current": { - "number": "2.6.2.1.1", + "number": "2.6.3.1.1", "spec": "HTML", "text": "[[Call]] ( thisArgument, argumentsList )", "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#HTMLAllCollection-call" @@ -4031,7 +4182,7 @@ }, "/common-dom-interfaces#collections": { "current": { - "number": "2.6.2", + "number": "2.6.3", "spec": "HTML", "text": "Collections", "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#collections" @@ -4055,7 +4206,7 @@ }, "/common-dom-interfaces#the-domstringlist-interface": { "current": { - "number": "2.6.3", + "number": "2.6.4", "spec": "HTML", "text": "The DOMStringList interface", "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#the-domstringlist-interface" @@ -4063,7 +4214,7 @@ }, "/common-dom-interfaces#the-htmlallcollection-interface": { "current": { - "number": "2.6.2.1", + "number": "2.6.3.1", "spec": "HTML", "text": "The HTMLAllCollection interface", "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#the-htmlallcollection-interface" @@ -4071,7 +4222,7 @@ }, "/common-dom-interfaces#the-htmlformcontrolscollection-interface": { "current": { - "number": "2.6.2.2", + "number": "2.6.3.2", "spec": "HTML", "text": "The HTMLFormControlsCollection interface", "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#the-htmlformcontrolscollection-interface" @@ -4079,12 +4230,20 @@ }, "/common-dom-interfaces#the-htmloptionscollection-interface": { "current": { - "number": "2.6.2.3", + "number": "2.6.3.3", "spec": "HTML", "text": "The HTMLOptionsCollection interface", "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#the-htmloptionscollection-interface" } }, + "/common-dom-interfaces#using-reflect-in-specifications": { + "current": { + "number": "2.6.2", + "spec": "HTML", + "text": "Using reflect in specifications", + "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#using-reflect-in-specifications" + } + }, "/common-microsyntaxes#boolean-attributes": { "current": { "number": "2.3.2", @@ -4319,9 +4478,9 @@ }, "/comms#comms": { "current": { - "number": "", + "number": "9", "spec": "HTML", - "text": "9 Communication", + "text": "Communication", "url": "https://html.spec.whatwg.org/multipage/comms.html#comms" } }, @@ -4437,6 +4596,14 @@ "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#custom-elements-upgrades-examples" } }, + "/custom-elements#custom-state-pseudo-class": { + "current": { + "number": "4.13.7.5", + "spec": "HTML", + "text": "Custom state pseudo-class", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#custom-state-pseudo-class" + } + }, "/custom-elements#element-internals": { "current": { "number": "4.13.7", @@ -4445,6 +4612,14 @@ "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#element-internals" } }, + "/custom-elements#exposing-custom-element-states": { + "current": { + "number": "4.13.1.7", + "spec": "HTML", + "text": "Exposing custom element states", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#exposing-custom-element-states" + } + }, "/custom-elements#form-associated-custom-elements": { "current": { "number": "4.13.7.3", @@ -4479,7 +4654,7 @@ }, "/dnd#dnd": { "current": { - "number": "6.10", + "number": "6.11", "spec": "HTML", "text": "Drag and drop", "url": "https://html.spec.whatwg.org/multipage/dnd.html#dnd" @@ -4487,7 +4662,7 @@ }, "/dnd#dndevents": { "current": { - "number": "6.10.6", + "number": "6.11.6", "spec": "HTML", "text": "Events summary", "url": "https://html.spec.whatwg.org/multipage/dnd.html#dndevents" @@ -4495,7 +4670,7 @@ }, "/dnd#drag-and-drop-processing-model": { "current": { - "number": "6.10.5", + "number": "6.11.5", "spec": "HTML", "text": "Processing model", "url": "https://html.spec.whatwg.org/multipage/dnd.html#drag-and-drop-processing-model" @@ -4503,7 +4678,7 @@ }, "/dnd#event-drag": { "current": { - "number": "6.10.1", + "number": "6.11.1", "spec": "HTML", "text": "Introduction", "url": "https://html.spec.whatwg.org/multipage/dnd.html#event-drag" @@ -4511,7 +4686,7 @@ }, "/dnd#security-risks-in-the-drag-and-drop-model": { "current": { - "number": "6.10.8", + "number": "6.11.8", "spec": "HTML", "text": "Security risks in the drag-and-drop model", "url": "https://html.spec.whatwg.org/multipage/dnd.html#security-risks-in-the-drag-and-drop-model" @@ -4519,7 +4694,7 @@ }, "/dnd#the-datatransfer-interface": { "current": { - "number": "6.10.3", + "number": "6.11.3", "spec": "HTML", "text": "The DataTransfer interface", "url": "https://html.spec.whatwg.org/multipage/dnd.html#the-datatransfer-interface" @@ -4527,7 +4702,7 @@ }, "/dnd#the-datatransferitem-interface": { "current": { - "number": "6.10.3.2", + "number": "6.11.3.2", "spec": "HTML", "text": "The DataTransferItem interface", "url": "https://html.spec.whatwg.org/multipage/dnd.html#the-datatransferitem-interface" @@ -4535,7 +4710,7 @@ }, "/dnd#the-datatransferitemlist-interface": { "current": { - "number": "6.10.3.1", + "number": "6.11.3.1", "spec": "HTML", "text": "The DataTransferItemList interface", "url": "https://html.spec.whatwg.org/multipage/dnd.html#the-datatransferitemlist-interface" @@ -4543,7 +4718,7 @@ }, "/dnd#the-drag-data-store": { "current": { - "number": "6.10.2", + "number": "6.11.2", "spec": "HTML", "text": "The drag data store", "url": "https://html.spec.whatwg.org/multipage/dnd.html#the-drag-data-store" @@ -4551,7 +4726,7 @@ }, "/dnd#the-dragevent-interface": { "current": { - "number": "6.10.4", + "number": "6.11.4", "spec": "HTML", "text": "The DragEvent interface", "url": "https://html.spec.whatwg.org/multipage/dnd.html#the-dragevent-interface" @@ -4559,7 +4734,7 @@ }, "/dnd#the-draggable-attribute": { "current": { - "number": "6.10.7", + "number": "6.11.7", "spec": "HTML", "text": "The draggable attribute", "url": "https://html.spec.whatwg.org/multipage/dnd.html#the-draggable-attribute" @@ -4831,9 +5006,9 @@ }, "/dom#dom": { "current": { - "number": "", + "number": "3", "spec": "HTML", - "text": "3 Semantics, structure, and APIs of HTML documents", + "text": "Semantics, structure, and APIs of HTML documents", "url": "https://html.spec.whatwg.org/multipage/dom.html#dom" } }, @@ -5053,12 +5228,12 @@ "url": "https://html.spec.whatwg.org/multipage/dom.html#the-innertext-idl-attribute" } }, - "/dom#the-lang-and-xml:lang-attributes": { + "/dom#the-lang-and-xml%3Alang-attributes": { "current": { "number": "3.2.6.2", "spec": "HTML", "text": "The lang and xml:lang attributes", - "url": "https://html.spec.whatwg.org/multipage/dom.html#the-lang-and-xml:lang-attributes" + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-lang-and-xml%3Alang-attributes" } }, "/dom#the-nothing-content-model": { @@ -5145,7 +5320,7 @@ "current": { "number": "8.5", "spec": "HTML", - "text": "DOM parsing", + "text": "DOM parsing and serialization APIs", "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-parsing-and-serialization" } }, @@ -5157,6 +5332,14 @@ "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dynamic-markup-insertion" } }, + "/dynamic-markup-insertion#html-serialization-methods": { + "current": { + "number": "8.5.3", + "spec": "HTML", + "text": "HTML serialization methods", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#html-serialization-methods" + } + }, "/dynamic-markup-insertion#opening-the-input-stream": { "current": { "number": "8.4.1", @@ -5165,6 +5348,54 @@ "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#opening-the-input-stream" } }, + "/dynamic-markup-insertion#the-createcontextualfragment()-method": { + "current": { + "number": "8.5.7", + "spec": "HTML", + "text": "The createContextualFragment() method", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-createcontextualfragment()-method" + } + }, + "/dynamic-markup-insertion#the-domparser-interface": { + "current": { + "number": "8.5.1", + "spec": "HTML", + "text": "The DOMParser interface", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-domparser-interface" + } + }, + "/dynamic-markup-insertion#the-innerhtml-property": { + "current": { + "number": "8.5.4", + "spec": "HTML", + "text": "The innerHTML property", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-innerhtml-property" + } + }, + "/dynamic-markup-insertion#the-insertadjacenthtml()-method": { + "current": { + "number": "8.5.6", + "spec": "HTML", + "text": "The insertAdjacentHTML() method", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-insertadjacenthtml()-method" + } + }, + "/dynamic-markup-insertion#the-outerhtml-property": { + "current": { + "number": "8.5.5", + "spec": "HTML", + "text": "The outerHTML property", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-outerhtml-property" + } + }, + "/dynamic-markup-insertion#unsafe-html-parsing-methods": { + "current": { + "number": "8.5.2", + "spec": "HTML", + "text": "Unsafe HTML parsing methods", + "url": "https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#unsafe-html-parsing-methods" + } + }, "/edits#attributes-common-to-ins-and-del-elements": { "current": { "number": "4.7.3", @@ -5317,12 +5548,12 @@ "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill-processing-model" } }, - "/form-control-infrastructure#autofilling-form-controls:-the-autocomplete-attribute": { + "/form-control-infrastructure#autofilling-form-controls%3A-the-autocomplete-attribute": { "current": { "number": "4.10.18.7.1", "spec": "HTML", "text": "Autofilling form controls: the autocomplete attribute", - "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofilling-form-controls:-the-autocomplete-attribute" + "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofilling-form-controls%3A-the-autocomplete-attribute" } }, "/form-control-infrastructure#constraint-validation": { @@ -5365,12 +5596,12 @@ "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#definitions" } }, - "/form-control-infrastructure#enabling-and-disabling-form-controls:-the-disabled-attribute": { + "/form-control-infrastructure#enabling-and-disabling-form-controls%3A-the-disabled-attribute": { "current": { "number": "4.10.18.5", "spec": "HTML", "text": "Enabling and disabling form controls: the disabled attribute", - "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#enabling-and-disabling-form-controls:-the-disabled-attribute" + "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#enabling-and-disabling-form-controls%3A-the-disabled-attribute" } }, "/form-control-infrastructure#form-control-infrastructure": { @@ -5421,12 +5652,12 @@ "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#introduction-5" } }, - "/form-control-infrastructure#limiting-user-input-length:-the-maxlength-attribute": { + "/form-control-infrastructure#limiting-user-input-length%3A-the-maxlength-attribute": { "current": { "number": "4.10.18.3", "spec": "HTML", "text": "Limiting user input length: the maxlength attribute", - "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#limiting-user-input-length:-the-maxlength-attribute" + "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#limiting-user-input-length%3A-the-maxlength-attribute" } }, "/form-control-infrastructure#multipart-form-data": { @@ -5445,12 +5676,12 @@ "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#mutability" } }, - "/form-control-infrastructure#naming-form-controls:-the-name-attribute": { + "/form-control-infrastructure#naming-form-controls%3A-the-name-attribute": { "current": { "number": "4.10.18.1", "spec": "HTML", "text": "Naming form controls: the name attribute", - "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#naming-form-controls:-the-name-attribute" + "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#naming-form-controls%3A-the-name-attribute" } }, "/form-control-infrastructure#plain-text-form-data": { @@ -5485,20 +5716,20 @@ "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#selecting-a-form-submission-encoding" } }, - "/form-control-infrastructure#setting-minimum-input-length-requirements:-the-minlength-attribute": { + "/form-control-infrastructure#setting-minimum-input-length-requirements%3A-the-minlength-attribute": { "current": { "number": "4.10.18.4", "spec": "HTML", "text": "Setting minimum input length requirements: the minlength attribute", - "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#setting-minimum-input-length-requirements:-the-minlength-attribute" + "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#setting-minimum-input-length-requirements%3A-the-minlength-attribute" } }, - "/form-control-infrastructure#submitting-element-directionality:-the-dirname-attribute": { + "/form-control-infrastructure#submitting-element-directionality%3A-the-dirname-attribute": { "current": { "number": "4.10.18.2", "spec": "HTML", "text": "Submitting element directionality: the dirname attribute", - "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submitting-element-directionality:-the-dirname-attribute" + "url": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submitting-element-directionality%3A-the-dirname-attribute" } }, "/form-control-infrastructure#textFieldSelection": { @@ -5701,12 +5932,12 @@ "url": "https://html.spec.whatwg.org/multipage/forms.html#introduction-4" } }, - "/forms#the-difference-between-the-field-type,-the-autofill-field-name,-and-the-input-modality": { + "/forms#the-difference-between-the-field-type%2C-the-autofill-field-name%2C-and-the-input-modality": { "current": { "number": "4.10.1.7", "spec": "HTML", "text": "The difference between the field type, the autofill field name, and the input modality", - "url": "https://html.spec.whatwg.org/multipage/forms.html#the-difference-between-the-field-type,-the-autofill-field-name,-and-the-input-modality" + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-difference-between-the-field-type%2C-the-autofill-field-name%2C-and-the-input-modality" } }, "/forms#the-form-element": { @@ -5759,7 +5990,7 @@ }, "/grouping-content#the-div-element": { "current": { - "number": "4.4.15", + "number": "4.4.16", "spec": "HTML", "text": "The div element", "url": "https://html.spec.whatwg.org/multipage/grouping-content.html#the-div-element" @@ -5853,6 +6084,14 @@ "url": "https://html.spec.whatwg.org/multipage/grouping-content.html#the-pre-element" } }, + "/grouping-content#the-search-element": { + "current": { + "number": "4.4.15", + "spec": "HTML", + "text": "The search element", + "url": "https://html.spec.whatwg.org/multipage/grouping-content.html#the-search-element" + } + }, "/grouping-content#the-ul-element": { "current": { "number": "4.4.6", @@ -5861,20 +6100,20 @@ "url": "https://html.spec.whatwg.org/multipage/grouping-content.html#the-ul-element" } }, - "/iana#application/microdata+json": { + "/iana#application%2Fmicrodata%2Bjson": { "current": { "number": "17.5", "spec": "HTML", "text": "application/microdata+json", - "url": "https://html.spec.whatwg.org/multipage/iana.html#application/microdata+json" + "url": "https://html.spec.whatwg.org/multipage/iana.html#application%2Fmicrodata%2Bjson" } }, - "/iana#application/xhtml+xml": { + "/iana#application%2Fxhtml%2Bxml": { "current": { "number": "17.3", "spec": "HTML", "text": "application/xhtml+xml", - "url": "https://html.spec.whatwg.org/multipage/iana.html#application/xhtml+xml" + "url": "https://html.spec.whatwg.org/multipage/iana.html#application%2Fxhtml%2Bxml" } }, "/iana#iana": { @@ -5885,44 +6124,44 @@ "url": "https://html.spec.whatwg.org/multipage/iana.html#iana" } }, - "/iana#multipart/x-mixed-replace": { + "/iana#multipart%2Fx-mixed-replace": { "current": { "number": "17.2", "spec": "HTML", "text": "multipart/x-mixed-replace", - "url": "https://html.spec.whatwg.org/multipage/iana.html#multipart/x-mixed-replace" + "url": "https://html.spec.whatwg.org/multipage/iana.html#multipart%2Fx-mixed-replace" } }, - "/iana#text/event-stream": { + "/iana#text%2Fevent-stream": { "current": { "number": "17.6", "spec": "HTML", "text": "text/event-stream", - "url": "https://html.spec.whatwg.org/multipage/iana.html#text/event-stream" + "url": "https://html.spec.whatwg.org/multipage/iana.html#text%2Fevent-stream" } }, - "/iana#text/html": { + "/iana#text%2Fhtml": { "current": { "number": "17.1", "spec": "HTML", "text": "text/html", - "url": "https://html.spec.whatwg.org/multipage/iana.html#text/html" + "url": "https://html.spec.whatwg.org/multipage/iana.html#text%2Fhtml" } }, - "/iana#text/ping": { + "/iana#text%2Fping": { "current": { "number": "17.4", "spec": "HTML", "text": "text/ping", - "url": "https://html.spec.whatwg.org/multipage/iana.html#text/ping" + "url": "https://html.spec.whatwg.org/multipage/iana.html#text%2Fping" } }, - "/iana#web+-scheme-prefix": { + "/iana#web%2B-scheme-prefix": { "current": { "number": "17.7", "spec": "HTML", "text": "web+ scheme prefix", - "url": "https://html.spec.whatwg.org/multipage/iana.html#web+-scheme-prefix" + "url": "https://html.spec.whatwg.org/multipage/iana.html#web%2B-scheme-prefix" } }, "/iframe-embed-object#the-embed-element": { @@ -6045,12 +6284,12 @@ "url": "https://html.spec.whatwg.org/multipage/images.html#a-link-or-button-containing-nothing-but-the-image" } }, - "/images#a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts,-diagrams,-graphs,-maps,-illustrations": { + "/images#a-phrase-or-paragraph-with-an-alternative-graphical-representation%3A-charts%2C-diagrams%2C-graphs%2C-maps%2C-illustrations": { "current": { "number": "4.8.4.4.3", "spec": "HTML", "text": "A phrase or paragraph with an alternative graphical representation: charts, diagrams, graphs, maps, illustrations", - "url": "https://html.spec.whatwg.org/multipage/images.html#a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts,-diagrams,-graphs,-maps,-illustrations" + "url": "https://html.spec.whatwg.org/multipage/images.html#a-phrase-or-paragraph-with-an-alternative-graphical-representation%3A-charts%2C-diagrams%2C-graphs%2C-maps%2C-illustrations" } }, "/images#a-purely-decorative-image-that-doesn't-add-any-information": { @@ -6061,12 +6300,12 @@ "url": "https://html.spec.whatwg.org/multipage/images.html#a-purely-decorative-image-that-doesn't-add-any-information" } }, - "/images#a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons,-logos": { + "/images#a-short-phrase-or-label-with-an-alternative-graphical-representation%3A-icons%2C-logos": { "current": { "number": "4.8.4.4.4", "spec": "HTML", "text": "A short phrase or label with an alternative graphical representation: icons, logos", - "url": "https://html.spec.whatwg.org/multipage/images.html#a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons,-logos" + "url": "https://html.spec.whatwg.org/multipage/images.html#a-short-phrase-or-label-with-an-alternative-graphical-representation%3A-icons%2C-logos" } }, "/images#adaptive-images": { @@ -6407,9 +6646,9 @@ }, "/infrastructure#infrastructure": { "current": { - "number": "", + "number": "2", "spec": "HTML", - "text": "2 Common infrastructure", + "text": "Common infrastructure", "url": "https://html.spec.whatwg.org/multipage/infrastructure.html#infrastructure" } }, @@ -6477,28 +6716,28 @@ "url": "https://html.spec.whatwg.org/multipage/infrastructure.html#xml" } }, - "/input#button-state-(type=button)": { + "/input#button-state-(type%3Dbutton)": { "current": { "number": "4.10.5.1.21", "spec": "HTML", "text": "Button state (type=button)", - "url": "https://html.spec.whatwg.org/multipage/input.html#button-state-(type=button)" + "url": "https://html.spec.whatwg.org/multipage/input.html#button-state-(type%3Dbutton)" } }, - "/input#checkbox-state-(type=checkbox)": { + "/input#checkbox-state-(type%3Dcheckbox)": { "current": { "number": "4.10.5.1.15", "spec": "HTML", "text": "Checkbox state (type=checkbox)", - "url": "https://html.spec.whatwg.org/multipage/input.html#checkbox-state-(type=checkbox)" + "url": "https://html.spec.whatwg.org/multipage/input.html#checkbox-state-(type%3Dcheckbox)" } }, - "/input#color-state-(type=color)": { + "/input#color-state-(type%3Dcolor)": { "current": { "number": "4.10.5.1.14", "spec": "HTML", "text": "Color state (type=color)", - "url": "https://html.spec.whatwg.org/multipage/input.html#color-state-(type=color)" + "url": "https://html.spec.whatwg.org/multipage/input.html#color-state-(type%3Dcolor)" } }, "/input#common-input-element-apis": { @@ -6525,44 +6764,44 @@ "url": "https://html.spec.whatwg.org/multipage/input.html#common-input-element-events" } }, - "/input#date-state-(type=date)": { + "/input#date-state-(type%3Ddate)": { "current": { "number": "4.10.5.1.7", "spec": "HTML", "text": "Date state (type=date)", - "url": "https://html.spec.whatwg.org/multipage/input.html#date-state-(type=date)" + "url": "https://html.spec.whatwg.org/multipage/input.html#date-state-(type%3Ddate)" } }, - "/input#email-state-(type=email)": { + "/input#email-state-(type%3Demail)": { "current": { "number": "4.10.5.1.5", "spec": "HTML", "text": "Email state (type=email)", - "url": "https://html.spec.whatwg.org/multipage/input.html#email-state-(type=email)" + "url": "https://html.spec.whatwg.org/multipage/input.html#email-state-(type%3Demail)" } }, - "/input#file-upload-state-(type=file)": { + "/input#file-upload-state-(type%3Dfile)": { "current": { "number": "4.10.5.1.17", "spec": "HTML", "text": "File Upload state (type=file)", - "url": "https://html.spec.whatwg.org/multipage/input.html#file-upload-state-(type=file)" + "url": "https://html.spec.whatwg.org/multipage/input.html#file-upload-state-(type%3Dfile)" } }, - "/input#hidden-state-(type=hidden)": { + "/input#hidden-state-(type%3Dhidden)": { "current": { "number": "4.10.5.1.1", "spec": "HTML", "text": "Hidden state (type=hidden)", - "url": "https://html.spec.whatwg.org/multipage/input.html#hidden-state-(type=hidden)" + "url": "https://html.spec.whatwg.org/multipage/input.html#hidden-state-(type%3Dhidden)" } }, - "/input#image-button-state-(type=image)": { + "/input#image-button-state-(type%3Dimage)": { "current": { "number": "4.10.5.1.19", "spec": "HTML", "text": "Image Button state (type=image)", - "url": "https://html.spec.whatwg.org/multipage/input.html#image-button-state-(type=image)" + "url": "https://html.spec.whatwg.org/multipage/input.html#image-button-state-(type%3Dimage)" } }, "/input#input-impl-notes": { @@ -6573,60 +6812,60 @@ "url": "https://html.spec.whatwg.org/multipage/input.html#input-impl-notes" } }, - "/input#local-date-and-time-state-(type=datetime-local)": { + "/input#local-date-and-time-state-(type%3Ddatetime-local)": { "current": { "number": "4.10.5.1.11", "spec": "HTML", "text": "Local Date and Time state (type=datetime-local)", - "url": "https://html.spec.whatwg.org/multipage/input.html#local-date-and-time-state-(type=datetime-local)" + "url": "https://html.spec.whatwg.org/multipage/input.html#local-date-and-time-state-(type%3Ddatetime-local)" } }, - "/input#month-state-(type=month)": { + "/input#month-state-(type%3Dmonth)": { "current": { "number": "4.10.5.1.8", "spec": "HTML", "text": "Month state (type=month)", - "url": "https://html.spec.whatwg.org/multipage/input.html#month-state-(type=month)" + "url": "https://html.spec.whatwg.org/multipage/input.html#month-state-(type%3Dmonth)" } }, - "/input#number-state-(type=number)": { + "/input#number-state-(type%3Dnumber)": { "current": { "number": "4.10.5.1.12", "spec": "HTML", "text": "Number state (type=number)", - "url": "https://html.spec.whatwg.org/multipage/input.html#number-state-(type=number)" + "url": "https://html.spec.whatwg.org/multipage/input.html#number-state-(type%3Dnumber)" } }, - "/input#password-state-(type=password)": { + "/input#password-state-(type%3Dpassword)": { "current": { "number": "4.10.5.1.6", "spec": "HTML", "text": "Password state (type=password)", - "url": "https://html.spec.whatwg.org/multipage/input.html#password-state-(type=password)" + "url": "https://html.spec.whatwg.org/multipage/input.html#password-state-(type%3Dpassword)" } }, - "/input#radio-button-state-(type=radio)": { + "/input#radio-button-state-(type%3Dradio)": { "current": { "number": "4.10.5.1.16", "spec": "HTML", "text": "Radio Button state (type=radio)", - "url": "https://html.spec.whatwg.org/multipage/input.html#radio-button-state-(type=radio)" + "url": "https://html.spec.whatwg.org/multipage/input.html#radio-button-state-(type%3Dradio)" } }, - "/input#range-state-(type=range)": { + "/input#range-state-(type%3Drange)": { "current": { "number": "4.10.5.1.13", "spec": "HTML", "text": "Range state (type=range)", - "url": "https://html.spec.whatwg.org/multipage/input.html#range-state-(type=range)" + "url": "https://html.spec.whatwg.org/multipage/input.html#range-state-(type%3Drange)" } }, - "/input#reset-button-state-(type=reset)": { + "/input#reset-button-state-(type%3Dreset)": { "current": { "number": "4.10.5.1.20", "spec": "HTML", "text": "Reset Button state (type=reset)", - "url": "https://html.spec.whatwg.org/multipage/input.html#reset-button-state-(type=reset)" + "url": "https://html.spec.whatwg.org/multipage/input.html#reset-button-state-(type%3Dreset)" } }, "/input#states-of-the-type-attribute": { @@ -6637,28 +6876,28 @@ "url": "https://html.spec.whatwg.org/multipage/input.html#states-of-the-type-attribute" } }, - "/input#submit-button-state-(type=submit)": { + "/input#submit-button-state-(type%3Dsubmit)": { "current": { "number": "4.10.5.1.18", "spec": "HTML", "text": "Submit Button state (type=submit)", - "url": "https://html.spec.whatwg.org/multipage/input.html#submit-button-state-(type=submit)" + "url": "https://html.spec.whatwg.org/multipage/input.html#submit-button-state-(type%3Dsubmit)" } }, - "/input#telephone-state-(type=tel)": { + "/input#telephone-state-(type%3Dtel)": { "current": { "number": "4.10.5.1.3", "spec": "HTML", "text": "Telephone state (type=tel)", - "url": "https://html.spec.whatwg.org/multipage/input.html#telephone-state-(type=tel)" + "url": "https://html.spec.whatwg.org/multipage/input.html#telephone-state-(type%3Dtel)" } }, - "/input#text-(type=text)-state-and-search-state-(type=search)": { + "/input#text-(type%3Dtext)-state-and-search-state-(type%3Dsearch)": { "current": { "number": "4.10.5.1.2", "spec": "HTML", "text": "Text (type=text) state and Search state (type=search)", - "url": "https://html.spec.whatwg.org/multipage/input.html#text-(type=text)-state-and-search-state-(type=search)" + "url": "https://html.spec.whatwg.org/multipage/input.html#text-(type%3Dtext)-state-and-search-state-(type%3Dsearch)" } }, "/input#the-input-element": { @@ -6749,28 +6988,28 @@ "url": "https://html.spec.whatwg.org/multipage/input.html#the-step-attribute" } }, - "/input#time-state-(type=time)": { + "/input#time-state-(type%3Dtime)": { "current": { "number": "4.10.5.1.10", "spec": "HTML", "text": "Time state (type=time)", - "url": "https://html.spec.whatwg.org/multipage/input.html#time-state-(type=time)" + "url": "https://html.spec.whatwg.org/multipage/input.html#time-state-(type%3Dtime)" } }, - "/input#url-state-(type=url)": { + "/input#url-state-(type%3Durl)": { "current": { "number": "4.10.5.1.4", "spec": "HTML", "text": "URL state (type=url)", - "url": "https://html.spec.whatwg.org/multipage/input.html#url-state-(type=url)" + "url": "https://html.spec.whatwg.org/multipage/input.html#url-state-(type%3Durl)" } }, - "/input#week-state-(type=week)": { + "/input#week-state-(type%3Dweek)": { "current": { "number": "4.10.5.1.9", "spec": "HTML", "text": "Week state (type=week)", - "url": "https://html.spec.whatwg.org/multipage/input.html#week-state-(type=week)" + "url": "https://html.spec.whatwg.org/multipage/input.html#week-state-(type%3Dweek)" } }, "/interaction#activation": { @@ -6791,7 +7030,7 @@ }, "/interaction#autocapitalization": { "current": { - "number": "6.8.6", + "number": "6.8.7", "spec": "HTML", "text": "Autocapitalization", "url": "https://html.spec.whatwg.org/multipage/interaction.html#autocapitalization" @@ -6805,6 +7044,30 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#best-practices-for-in-page-editors" } }, + "/interaction#close-requests": { + "current": { + "number": "6.10.1", + "spec": "HTML", + "text": "Close requests", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#close-requests" + } + }, + "/interaction#close-requests-and-close-watchers": { + "current": { + "number": "6.10", + "spec": "HTML", + "text": "Close requests and close watchers", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#close-requests-and-close-watchers" + } + }, + "/interaction#close-watcher-infrastructure": { + "current": { + "number": "6.10.2", + "spec": "HTML", + "text": "Close watcher infrastructure", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-infrastructure" + } + }, "/interaction#contenteditable": { "current": { "number": "6.8.1", @@ -6823,9 +7086,9 @@ }, "/interaction#editing": { "current": { - "number": "", + "number": "6", "spec": "HTML", - "text": "6 User interaction", + "text": "User interaction", "url": "https://html.spec.whatwg.org/multipage/interaction.html#editing" } }, @@ -6885,28 +7148,28 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#inert-subtrees" } }, - "/interaction#input-modalities:-the-enterkeyhint-attribute": { + "/interaction#input-modalities%3A-the-enterkeyhint-attribute": { "current": { - "number": "6.8.8", + "number": "6.8.9", "spec": "HTML", "text": "Input modalities: the enterkeyhint attribute", - "url": "https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-enterkeyhint-attribute" + "url": "https://html.spec.whatwg.org/multipage/interaction.html#input-modalities%3A-the-enterkeyhint-attribute" } }, - "/interaction#input-modalities:-the-inputmode-attribute": { + "/interaction#input-modalities%3A-the-inputmode-attribute": { "current": { - "number": "6.8.7", + "number": "6.8.8", "spec": "HTML", "text": "Input modalities: the inputmode attribute", - "url": "https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute" + "url": "https://html.spec.whatwg.org/multipage/interaction.html#input-modalities%3A-the-inputmode-attribute" } }, - "/interaction#interaction-with-details-and-hidden=until-found": { + "/interaction#interaction-with-details-and-hidden%3Duntil-found": { "current": { "number": "6.9.2", "spec": "HTML", "text": "Interaction with details and hidden=until-found", - "url": "https://html.spec.whatwg.org/multipage/interaction.html#interaction-with-details-and-hidden=until-found" + "url": "https://html.spec.whatwg.org/multipage/interaction.html#interaction-with-details-and-hidden%3Duntil-found" } }, "/interaction#interaction-with-selection": { @@ -6949,12 +7212,12 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#keyboard-shortcuts-processing-model" } }, - "/interaction#making-entire-documents-editable:-the-designmode-idl-attribute": { + "/interaction#making-entire-documents-editable%3A-the-designmode-idl-attribute": { "current": { "number": "6.8.2", "spec": "HTML", "text": "Making entire documents editable: the designMode getter and setter", - "url": "https://html.spec.whatwg.org/multipage/interaction.html#making-entire-documents-editable:-the-designmode-idl-attribute" + "url": "https://html.spec.whatwg.org/multipage/interaction.html#making-entire-documents-editable%3A-the-designmode-idl-attribute" } }, "/interaction#modal-dialogs-and-inert-subtrees": { @@ -7005,6 +7268,14 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-autofocus-attribute" } }, + "/interaction#the-closewatcher-interface": { + "current": { + "number": "6.10.3", + "spec": "HTML", + "text": "The CloseWatcher interface", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-closewatcher-interface" + } + }, "/interaction#the-hidden-attribute": { "current": { "number": "6.1", @@ -7029,6 +7300,14 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-tabindex-attribute" } }, + "/interaction#the-toggleevent-interface": { + "current": { + "number": "6.5.1", + "spec": "HTML", + "text": "The ToggleEvent interface", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-toggleevent-interface" + } + }, "/interaction#the-useractivation-interface": { "current": { "number": "6.4.4", @@ -7037,6 +7316,14 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-useractivation-interface" } }, + "/interaction#the-visibilitystateentry-interface": { + "current": { + "number": "6.2.1", + "spec": "HTML", + "text": "The VisibilityStateEntry interface", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-visibilitystateentry-interface" + } + }, "/interaction#tracking-user-activation": { "current": { "number": "6.4", @@ -7069,6 +7356,22 @@ "url": "https://html.spec.whatwg.org/multipage/interaction.html#user-activation-processing-model" } }, + "/interaction#user-activation-user-agent-automation": { + "current": { + "number": "6.4.5", + "spec": "HTML", + "text": "User agent automation", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#user-activation-user-agent-automation" + } + }, + "/interaction#writing-suggestions": { + "current": { + "number": "6.8.6", + "spec": "HTML", + "text": "Writing suggestions", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#writing-suggestions" + } + }, "/interactive-elements#commands": { "current": { "number": "4.11.3", @@ -7245,12 +7548,12 @@ "url": "https://html.spec.whatwg.org/multipage/introduction.html#history-2" } }, - "/introduction#how-to-catch-mistakes-when-writing-html:-validators-and-conformance-checkers": { + "/introduction#how-to-catch-mistakes-when-writing-html%3A-validators-and-conformance-checkers": { "current": { "number": "1.10.3", "spec": "HTML", "text": "How to catch mistakes when writing HTML: validators and conformance checkers", - "url": "https://html.spec.whatwg.org/multipage/introduction.html#how-to-catch-mistakes-when-writing-html:-validators-and-conformance-checkers" + "url": "https://html.spec.whatwg.org/multipage/introduction.html#how-to-catch-mistakes-when-writing-html%3A-validators-and-conformance-checkers" } }, "/introduction#how-to-read-this-specification": { @@ -7271,18 +7574,18 @@ }, "/introduction#introduction": { "current": { - "number": "", + "number": "1", "spec": "HTML", - "text": "1 Introduction", + "text": "Introduction", "url": "https://html.spec.whatwg.org/multipage/introduction.html#introduction" } }, - "/introduction#is-this-html5?": { + "/introduction#is-this-html5%3F": { "current": { "number": "1.2", "spec": "HTML", "text": "Is this HTML5?", - "url": "https://html.spec.whatwg.org/multipage/introduction.html#is-this-html5?" + "url": "https://html.spec.whatwg.org/multipage/introduction.html#is-this-html5%3F" } }, "/introduction#presentational-markup": { @@ -7429,17 +7732,25 @@ "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-dns-prefetch" } }, - "/links#link-type-external": { + "/links#link-type-expect": { "current": { "number": "4.6.7.6", "spec": "HTML", + "text": "Link type \"expect\"", + "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-expect" + } + }, + "/links#link-type-external": { + "current": { + "number": "4.6.7.7", + "spec": "HTML", "text": "Link type \"external\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-external" } }, "/links#link-type-help": { "current": { - "number": "4.6.7.7", + "number": "4.6.7.8", "spec": "HTML", "text": "Link type \"help\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-help" @@ -7447,7 +7758,7 @@ }, "/links#link-type-license": { "current": { - "number": "4.6.7.9", + "number": "4.6.7.10", "spec": "HTML", "text": "Link type \"license\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-license" @@ -7455,7 +7766,7 @@ }, "/links#link-type-manifest": { "current": { - "number": "4.6.7.10", + "number": "4.6.7.11", "spec": "HTML", "text": "Link type \"manifest\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-manifest" @@ -7463,7 +7774,7 @@ }, "/links#link-type-modulepreload": { "current": { - "number": "4.6.7.11", + "number": "4.6.7.12", "spec": "HTML", "text": "Link type \"modulepreload\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-modulepreload" @@ -7471,7 +7782,7 @@ }, "/links#link-type-next": { "current": { - "number": "4.6.7.24.1", + "number": "4.6.7.26.1", "spec": "HTML", "text": "Link type \"next\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-next" @@ -7479,7 +7790,7 @@ }, "/links#link-type-nofollow": { "current": { - "number": "4.6.7.12", + "number": "4.6.7.13", "spec": "HTML", "text": "Link type \"nofollow\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-nofollow" @@ -7487,7 +7798,7 @@ }, "/links#link-type-noopener": { "current": { - "number": "4.6.7.13", + "number": "4.6.7.14", "spec": "HTML", "text": "Link type \"noopener\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-noopener" @@ -7495,7 +7806,7 @@ }, "/links#link-type-noreferrer": { "current": { - "number": "4.6.7.14", + "number": "4.6.7.15", "spec": "HTML", "text": "Link type \"noreferrer\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-noreferrer" @@ -7503,7 +7814,7 @@ }, "/links#link-type-opener": { "current": { - "number": "4.6.7.15", + "number": "4.6.7.16", "spec": "HTML", "text": "Link type \"opener\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-opener" @@ -7511,7 +7822,7 @@ }, "/links#link-type-pingback": { "current": { - "number": "4.6.7.16", + "number": "4.6.7.17", "spec": "HTML", "text": "Link type \"pingback\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-pingback" @@ -7519,7 +7830,7 @@ }, "/links#link-type-preconnect": { "current": { - "number": "4.6.7.17", + "number": "4.6.7.18", "spec": "HTML", "text": "Link type \"preconnect\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-preconnect" @@ -7527,7 +7838,7 @@ }, "/links#link-type-prefetch": { "current": { - "number": "4.6.7.18", + "number": "4.6.7.19", "spec": "HTML", "text": "Link type \"prefetch\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-prefetch" @@ -7535,31 +7846,31 @@ }, "/links#link-type-preload": { "current": { - "number": "4.6.7.19", + "number": "4.6.7.20", "spec": "HTML", "text": "Link type \"preload\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-preload" } }, - "/links#link-type-prerender": { + "/links#link-type-prev": { "current": { - "number": "4.6.7.20", + "number": "4.6.7.26.2", "spec": "HTML", - "text": "Link type \"prerender\"", - "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-prerender" + "text": "Link type \"prev\"", + "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-prev" } }, - "/links#link-type-prev": { + "/links#link-type-privacy-policy": { "current": { - "number": "4.6.7.24.2", + "number": "4.6.7.21", "spec": "HTML", - "text": "Link type \"prev\"", - "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-prev" + "text": "Link type \"privacy-policy\"", + "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-privacy-policy" } }, "/links#link-type-search": { "current": { - "number": "4.6.7.21", + "number": "4.6.7.22", "spec": "HTML", "text": "Link type \"search\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-search" @@ -7567,7 +7878,7 @@ }, "/links#link-type-stylesheet": { "current": { - "number": "4.6.7.22", + "number": "4.6.7.23", "spec": "HTML", "text": "Link type \"stylesheet\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-stylesheet" @@ -7575,12 +7886,20 @@ }, "/links#link-type-tag": { "current": { - "number": "4.6.7.23", + "number": "4.6.7.24", "spec": "HTML", "text": "Link type \"tag\"", "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-tag" } }, + "/links#link-type-terms-of-service": { + "current": { + "number": "4.6.7.25", + "spec": "HTML", + "text": "Link Type \"terms-of-service\"", + "url": "https://html.spec.whatwg.org/multipage/links.html#link-type-terms-of-service" + } + }, "/links#linkTypes": { "current": { "number": "4.6.7", @@ -7607,7 +7926,7 @@ }, "/links#other-link-types": { "current": { - "number": "4.6.7.25", + "number": "4.6.7.27", "spec": "HTML", "text": "Other link types", "url": "https://html.spec.whatwg.org/multipage/links.html#other-link-types" @@ -7623,7 +7942,7 @@ }, "/links#rel-icon": { "current": { - "number": "4.6.7.8", + "number": "4.6.7.9", "spec": "HTML", "text": "Link type \"icon\"", "url": "https://html.spec.whatwg.org/multipage/links.html#rel-icon" @@ -7631,7 +7950,7 @@ }, "/links#sequential-link-types": { "current": { - "number": "4.6.7.24", + "number": "4.6.7.26", "spec": "HTML", "text": "Sequential link types", "url": "https://html.spec.whatwg.org/multipage/links.html#sequential-link-types" @@ -8015,9 +8334,9 @@ }, "/microdata#microdata": { "current": { - "number": "", + "number": "5", "spec": "HTML", - "text": "5 Microdata", + "text": "Microdata", "url": "https://html.spec.whatwg.org/multipage/microdata.html#microdata" } }, @@ -8029,12 +8348,12 @@ "url": "https://html.spec.whatwg.org/multipage/microdata.html#microdata-and-other-namespaces" } }, - "/microdata#names:-the-itemprop-attribute": { + "/microdata#names%3A-the-itemprop-attribute": { "current": { "number": "5.2.3", "spec": "HTML", "text": "Names: the itemprop attribute", - "url": "https://html.spec.whatwg.org/multipage/microdata.html#names:-the-itemprop-attribute" + "url": "https://html.spec.whatwg.org/multipage/microdata.html#names%3A-the-itemprop-attribute" } }, "/microdata#overview": { @@ -8141,20 +8460,20 @@ "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#cross-origin-objects" } }, - "/nav-history-apis#crossoriginget-(-o,-p,-receiver-)": { + "/nav-history-apis#crossoriginget-(-o%2C-p%2C-receiver-)": { "current": { "number": "7.2.1.3.5", "spec": "HTML", "text": "CrossOriginGet ( O, P, Receiver )", - "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginget-(-o,-p,-receiver-)" + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginget-(-o%2C-p%2C-receiver-)" } }, - "/nav-history-apis#crossorigingetownpropertyhelper-(-o,-p-)": { + "/nav-history-apis#crossorigingetownpropertyhelper-(-o%2C-p-)": { "current": { "number": "7.2.1.3.4", "spec": "HTML", "text": "CrossOriginGetOwnPropertyHelper ( O, P )", - "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossorigingetownpropertyhelper-(-o,-p-)" + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossorigingetownpropertyhelper-(-o%2C-p-)" } }, "/nav-history-apis#crossoriginownpropertykeys-(-o-)": { @@ -8181,12 +8500,12 @@ "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginpropertyfallback-(-p-)" } }, - "/nav-history-apis#crossoriginset-(-o,-p,-v,-receiver-)": { + "/nav-history-apis#crossoriginset-(-o%2C-p%2C-v%2C-receiver-)": { "current": { "number": "7.2.1.3.6", "spec": "HTML", "text": "CrossOriginSet ( O, P, V, Receiver )", - "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginset-(-o,-p,-v,-receiver-)" + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#crossoriginset-(-o%2C-p%2C-v%2C-receiver-)" } }, "/nav-history-apis#integration-with-idl": { @@ -8303,12 +8622,28 @@ }, "/nav-history-apis#nav-traversal-event-interfaces": { "current": { - "number": "7.2.6", + "number": "7.2.7", "spec": "HTML", "text": "Event interfaces", "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#nav-traversal-event-interfaces" } }, + "/nav-history-apis#navigate-event-firing": { + "current": { + "number": "7.2.6.10.3", + "spec": "HTML", + "text": "Firing the event", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigate-event-firing" + } + }, + "/nav-history-apis#navigate-event-scroll-focus": { + "current": { + "number": "7.2.6.10.4", + "spec": "HTML", + "text": "Scroll and focus behavior", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigate-event-scroll-focus" + } + }, "/nav-history-apis#navigating-nested-browsing-contexts-in-the-dom": { "current": { "number": "7.2.2.4", @@ -8317,6 +8652,70 @@ "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigating-nested-browsing-contexts-in-the-dom" } }, + "/nav-history-apis#navigation-activation-interface": { + "current": { + "number": "7.2.6.9", + "spec": "HTML", + "text": "The NavigationActivation interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-activation-interface" + } + }, + "/nav-history-apis#navigation-api": { + "current": { + "number": "7.2.6", + "spec": "HTML", + "text": "The navigation API", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api" + } + }, + "/nav-history-apis#navigation-api-core": { + "current": { + "number": "7.2.6.3", + "spec": "HTML", + "text": "Core infrastructure", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-core" + } + }, + "/nav-history-apis#navigation-api-entry-updates": { + "current": { + "number": "7.2.6.4", + "spec": "HTML", + "text": "Initializing and updating the entry list", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-entry-updates" + } + }, + "/nav-history-apis#navigation-api-initiating-navigations": { + "current": { + "number": "7.2.6.7", + "spec": "HTML", + "text": "Initiating navigations", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-initiating-navigations" + } + }, + "/nav-history-apis#navigation-api-intro": { + "current": { + "number": "7.2.6.1", + "spec": "HTML", + "text": "Introduction", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-intro" + } + }, + "/nav-history-apis#navigation-interface": { + "current": { + "number": "7.2.6.2", + "spec": "HTML", + "text": "The Navigation interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-interface" + } + }, + "/nav-history-apis#ongoing-navigation-tracking": { + "current": { + "number": "7.2.6.8", + "spec": "HTML", + "text": "Ongoing navigation tracking", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#ongoing-navigation-tracking" + } + }, "/nav-history-apis#script-settings-for-window-objects": { "current": { "number": "7.2.2.6", @@ -8333,17 +8732,17 @@ "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-abstract-operations" } }, - "/nav-history-apis#shared-internal-slot:-crossoriginpropertydescriptormap": { + "/nav-history-apis#shared-internal-slot%3A-crossoriginpropertydescriptormap": { "current": { "number": "7.2.1.2", "spec": "HTML", "text": "Shared internal slot: [[CrossOriginPropertyDescriptorMap]]", - "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-internal-slot:-crossoriginpropertydescriptormap" + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-internal-slot%3A-crossoriginpropertydescriptormap" } }, "/nav-history-apis#the-beforeunloadevent-interface": { "current": { - "number": "7.2.6.4", + "number": "7.2.7.7", "spec": "HTML", "text": "The BeforeUnloadEvent interface", "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-beforeunloadevent-interface" @@ -8351,12 +8750,20 @@ }, "/nav-history-apis#the-hashchangeevent-interface": { "current": { - "number": "7.2.6.2", + "number": "7.2.7.3", "spec": "HTML", "text": "The HashChangeEvent interface", "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-hashchangeevent-interface" } }, + "/nav-history-apis#the-history-entry-list": { + "current": { + "number": "7.2.6.6", + "spec": "HTML", + "text": "The history entry list", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-history-entry-list" + } + }, "/nav-history-apis#the-history-interface": { "current": { "number": "7.2.5", @@ -8373,9 +8780,73 @@ "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-location-interface" } }, + "/nav-history-apis#the-navigate-event": { + "current": { + "number": "7.2.6.10", + "spec": "HTML", + "text": "The navigate event", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigate-event" + } + }, + "/nav-history-apis#the-navigateevent-interface": { + "current": { + "number": "7.2.6.10.1", + "spec": "HTML", + "text": "The NavigateEvent interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigateevent-interface" + } + }, + "/nav-history-apis#the-navigationcurrententrychangeevent-interface": { + "current": { + "number": "7.2.7.1", + "spec": "HTML", + "text": "The NavigationCurrentEntryChangeEvent interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationcurrententrychangeevent-interface" + } + }, + "/nav-history-apis#the-navigationdestination-interface": { + "current": { + "number": "7.2.6.10.2", + "spec": "HTML", + "text": "The NavigationDestination interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface" + } + }, + "/nav-history-apis#the-navigationhistoryentry-interface": { + "current": { + "number": "7.2.6.5", + "spec": "HTML", + "text": "The NavigationHistoryEntry interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationhistoryentry-interface" + } + }, + "/nav-history-apis#the-notrestoredreasons-interface": { + "current": { + "number": "7.2.8", + "spec": "HTML", + "text": "The NotRestoredReasons interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-notrestoredreasons-interface" + } + }, + "/nav-history-apis#the-pagerevealevent-interface": { + "current": { + "number": "7.2.7.5", + "spec": "HTML", + "text": "The PageRevealEvent interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-pagerevealevent-interface" + } + }, + "/nav-history-apis#the-pageswapevent-interface": { + "current": { + "number": "7.2.7.4", + "spec": "HTML", + "text": "The PageSwapEvent interface", + "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-pageswapevent-interface" + } + }, "/nav-history-apis#the-pagetransitionevent-interface": { "current": { - "number": "7.2.6.3", + "number": "7.2.7.6", "spec": "HTML", "text": "The PageTransitionEvent interface", "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-pagetransitionevent-interface" @@ -8383,7 +8854,7 @@ }, "/nav-history-apis#the-popstateevent-interface": { "current": { - "number": "7.2.6.1", + "number": "7.2.7.2", "spec": "HTML", "text": "The PopStateEvent interface", "url": "https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-popstateevent-interface" @@ -8517,12 +8988,12 @@ "url": "https://html.spec.whatwg.org/multipage/obsolete.html#obsolete-but-conforming-features" } }, - "/obsolete#other-elements,-attributes-and-apis": { + "/obsolete#other-elements%2C-attributes-and-apis": { "current": { "number": "16.3.3", "spec": "HTML", "text": "Other elements, attributes and APIs", - "url": "https://html.spec.whatwg.org/multipage/obsolete.html#other-elements,-attributes-and-apis" + "url": "https://html.spec.whatwg.org/multipage/obsolete.html#other-elements%2C-attributes-and-apis" } }, "/obsolete#requirements-for-implementations": { @@ -8981,20 +9452,20 @@ "url": "https://html.spec.whatwg.org/multipage/parsing.html#markup-declaration-open-state" } }, - "/parsing#misnested-tags:-b-i-/b-/i": { + "/parsing#misnested-tags%3A-b-i-%2Fb-%2Fi": { "current": { "number": "13.2.10.1", "spec": "HTML", "text": "Misnested tags: <b><i></b></i>", - "url": "https://html.spec.whatwg.org/multipage/parsing.html#misnested-tags:-b-i-/b-/i" + "url": "https://html.spec.whatwg.org/multipage/parsing.html#misnested-tags%3A-b-i-%2Fb-%2Fi" } }, - "/parsing#misnested-tags:-b-p-/b-/p": { + "/parsing#misnested-tags%3A-b-p-%2Fb-%2Fp": { "current": { "number": "13.2.10.2", "spec": "HTML", "text": "Misnested tags: <b><p></b></p>", - "url": "https://html.spec.whatwg.org/multipage/parsing.html#misnested-tags:-b-p-/b-/p" + "url": "https://html.spec.whatwg.org/multipage/parsing.html#misnested-tags%3A-b-p-%2Fb-%2Fp" } }, "/parsing#named-character-reference-state": { @@ -9647,7 +10118,7 @@ }, "/popover#popover-light-dismiss": { "current": { - "number": "6.11.2", + "number": "6.12.2", "spec": "HTML", "text": "Popover light dismiss", "url": "https://html.spec.whatwg.org/multipage/popover.html#popover-light-dismiss" @@ -9655,7 +10126,7 @@ }, "/popover#the-popover-attribute": { "current": { - "number": "6.11", + "number": "6.12", "spec": "HTML", "text": "The popover attribute", "url": "https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute" @@ -9663,20 +10134,12 @@ }, "/popover#the-popover-target-attributes": { "current": { - "number": "6.11.1", + "number": "6.12.1", "spec": "HTML", "text": "The popover target attributes", "url": "https://html.spec.whatwg.org/multipage/popover.html#the-popover-target-attributes" } }, - "/popover#the-toggleevent-interface": { - "current": { - "number": "6.11.3", - "spec": "HTML", - "text": "The ToggleEvent interface", - "url": "https://html.spec.whatwg.org/multipage/popover.html#the-toggleevent-interface" - } - }, "/references#references": { "current": { "number": "", @@ -9703,7 +10166,7 @@ }, "/rendering#button-layout": { "current": { - "number": "15.5.2", + "number": "15.5.3", "spec": "HTML", "text": "Button layout", "url": "https://html.spec.whatwg.org/multipage/rendering.html#button-layout" @@ -9789,12 +10252,12 @@ "url": "https://html.spec.whatwg.org/multipage/rendering.html#introduction-16" } }, - "/rendering#links,-forms,-and-navigation": { + "/rendering#links%2C-forms%2C-and-navigation": { "current": { "number": "15.7.1", "spec": "HTML", "text": "Links, forms, and navigation", - "url": "https://html.spec.whatwg.org/multipage/rendering.html#links,-forms,-and-navigation" + "url": "https://html.spec.whatwg.org/multipage/rendering.html#links%2C-forms%2C-and-navigation" } }, "/rendering#lists": { @@ -9887,7 +10350,7 @@ }, "/rendering#the-button-element-2": { "current": { - "number": "15.5.3", + "number": "15.5.4", "spec": "HTML", "text": "The button element", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-button-element-2" @@ -9903,7 +10366,7 @@ }, "/rendering#the-details-and-summary-elements": { "current": { - "number": "15.5.4", + "number": "15.5.5", "spec": "HTML", "text": "The details and summary elements", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-details-and-summary-elements" @@ -9927,7 +10390,7 @@ }, "/rendering#the-input-element-as-a-button": { "current": { - "number": "15.5.11", + "number": "15.5.12", "spec": "HTML", "text": "The input element as a button", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-a-button" @@ -9935,7 +10398,7 @@ }, "/rendering#the-input-element-as-a-checkbox-and-radio-button-widgets": { "current": { - "number": "15.5.9", + "number": "15.5.10", "spec": "HTML", "text": "The input element as a checkbox and radio button widgets", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-a-checkbox-and-radio-button-widgets" @@ -9943,7 +10406,7 @@ }, "/rendering#the-input-element-as-a-colour-well": { "current": { - "number": "15.5.8", + "number": "15.5.9", "spec": "HTML", "text": "The input element as a color well", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-a-colour-well" @@ -9951,7 +10414,7 @@ }, "/rendering#the-input-element-as-a-file-upload-control": { "current": { - "number": "15.5.10", + "number": "15.5.11", "spec": "HTML", "text": "The input element as a file upload control", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-a-file-upload-control" @@ -9959,7 +10422,7 @@ }, "/rendering#the-input-element-as-a-range-control": { "current": { - "number": "15.5.7", + "number": "15.5.8", "spec": "HTML", "text": "The input element as a range control", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-a-range-control" @@ -9967,7 +10430,7 @@ }, "/rendering#the-input-element-as-a-text-entry-widget": { "current": { - "number": "15.5.5", + "number": "15.5.6", "spec": "HTML", "text": "The input element as a text entry widget", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-a-text-entry-widget" @@ -9975,7 +10438,7 @@ }, "/rendering#the-input-element-as-domain-specific-widgets": { "current": { - "number": "15.5.6", + "number": "15.5.7", "spec": "HTML", "text": "The input element as domain-specific widgets", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-input-element-as-domain-specific-widgets" @@ -9983,7 +10446,7 @@ }, "/rendering#the-marquee-element-2": { "current": { - "number": "15.5.12", + "number": "15.5.13", "spec": "HTML", "text": "The marquee element", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-marquee-element-2" @@ -9991,7 +10454,7 @@ }, "/rendering#the-meter-element-2": { "current": { - "number": "15.5.13", + "number": "15.5.14", "spec": "HTML", "text": "The meter element", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-meter-element-2" @@ -10007,7 +10470,7 @@ }, "/rendering#the-progress-element-2": { "current": { - "number": "15.5.14", + "number": "15.5.15", "spec": "HTML", "text": "The progress element", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-progress-element-2" @@ -10015,7 +10478,7 @@ }, "/rendering#the-select-element-2": { "current": { - "number": "15.5.15", + "number": "15.5.16", "spec": "HTML", "text": "The select element", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2" @@ -10023,7 +10486,7 @@ }, "/rendering#the-textarea-element-2": { "current": { - "number": "15.5.16", + "number": "15.5.17", "spec": "HTML", "text": "The textarea element", "url": "https://html.spec.whatwg.org/multipage/rendering.html#the-textarea-element-2" @@ -10053,6 +10516,14 @@ "url": "https://html.spec.whatwg.org/multipage/rendering.html#widgets" } }, + "/rendering#writing-mode": { + "current": { + "number": "15.5.2", + "spec": "HTML", + "text": "Writing mode", + "url": "https://html.spec.whatwg.org/multipage/rendering.html#writing-mode" + } + }, "/scripting#inline-documentation-for-external-scripts": { "current": { "number": "4.12.1.4", @@ -10221,12 +10692,12 @@ "url": "https://html.spec.whatwg.org/multipage/sections.html#the-footer-element" } }, - "/sections#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements": { + "/sections#the-h1%2C-h2%2C-h3%2C-h4%2C-h5%2C-and-h6-elements": { "current": { "number": "4.3.6", "spec": "HTML", "text": "The h1, h2, h3, h4, h5, and h6 elements", - "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1%2C-h2%2C-h3%2C-h4%2C-h5%2C-and-h6-elements" } }, "/sections#the-header-element": { @@ -10359,9 +10830,9 @@ }, "/semantics#semantics": { "current": { - "number": "", + "number": "4", "spec": "HTML", - "text": "4 The elements of HTML", + "text": "The elements of HTML", "url": "https://html.spec.whatwg.org/multipage/semantics.html#semantics" } }, @@ -11437,14 +11908,6 @@ "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#authors" } }, - "/web-messaging#broadcasting-to-many-ports": { - "current": { - "number": "9.4.4", - "spec": "HTML", - "text": "Broadcasting to many ports", - "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#broadcasting-to-many-ports" - } - }, "/web-messaging#broadcasting-to-other-browsing-contexts": { "current": { "number": "9.5", @@ -11503,7 +11966,7 @@ }, "/web-messaging#ports-and-garbage-collection": { "current": { - "number": "9.4.5", + "number": "9.4.4", "spec": "HTML", "text": "Ports and garbage collection", "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#ports-and-garbage-collection" @@ -11653,12 +12116,12 @@ "url": "https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-attributes" } }, - "/webappapis#event-handlers-on-elements,-document-objects,-and-window-objects": { + "/webappapis#event-handlers-on-elements%2C-document-objects%2C-and-window-objects": { "current": { "number": "8.1.8.2", "spec": "HTML", "text": "Event handlers on elements, Document objects, and Window objects", - "url": "https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers-on-elements,-document-objects,-and-window-objects" + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers-on-elements%2C-document-objects%2C-and-window-objects" } }, "/webappapis#event-loop-for-spec-authors": { @@ -11711,7 +12174,7 @@ }, "/webappapis#hostcalljobcallback": { "current": { - "number": "8.1.6.4.1", + "number": "8.1.6.6.1", "spec": "HTML", "text": "HostCallJobCallback(callback, V, argumentsList)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostcalljobcallback" @@ -11719,47 +12182,71 @@ }, "/webappapis#hostenqueuefinalizationregistrycleanupjob": { "current": { - "number": "8.1.6.4.2", + "number": "8.1.6.6.2", "spec": "HTML", "text": "HostEnqueueFinalizationRegistryCleanupJob(finalizationRegistry)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuefinalizationregistrycleanupjob" } }, + "/webappapis#hostenqueuegenericjob": { + "current": { + "number": "8.1.6.6.3", + "spec": "HTML", + "text": "HostEnqueueGenericJob(job, realm)", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuegenericjob" + } + }, "/webappapis#hostenqueuepromisejob": { "current": { - "number": "8.1.6.4.3", + "number": "8.1.6.6.4", "spec": "HTML", "text": "HostEnqueuePromiseJob(job, realm)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuepromisejob" } }, - "/webappapis#hostensurecancompilestrings(realm)": { + "/webappapis#hostenqueuetimeoutjob": { + "current": { + "number": "8.1.6.6.5", + "spec": "HTML", + "text": "HostEnqueueTimeoutJob(job, realm, milliseconds)", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostenqueuetimeoutjob" + } + }, + "/webappapis#hostensurecancompilestrings(realm%2C-parameterstrings%2C-bodystring%2C-codestring%2C-compilationtype%2C-parameterargs%2C-bodyarg)": { "current": { "number": "8.1.6.2", "spec": "HTML", - "text": "HostEnsureCanCompileStrings(realm)", - "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostensurecancompilestrings(realm)" + "text": "HostEnsureCanCompileStrings(realm, parameterStrings, bodyString, codeString, compilationType, parameterArgs, bodyArg)", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostensurecancompilestrings(realm%2C-parameterstrings%2C-bodystring%2C-codestring%2C-compilationtype%2C-parameterargs%2C-bodyarg)" + } + }, + "/webappapis#hostgetcodeforeval(argument)": { + "current": { + "number": "8.1.6.3", + "spec": "HTML", + "text": "HostGetCodeForEval(argument)", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostgetcodeforeval(argument)" } }, "/webappapis#hostgetimportmetaproperties": { "current": { - "number": "8.1.6.5.1", + "number": "8.1.6.7.1", "spec": "HTML", "text": "HostGetImportMetaProperties(moduleRecord)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostgetimportmetaproperties" } }, - "/webappapis#hostgetsupportedimportassertions": { + "/webappapis#hostgetsupportedimportattributes": { "current": { - "number": "8.1.6.5.2", + "number": "8.1.6.7.2", "spec": "HTML", - "text": "HostGetSupportedImportAssertions()", - "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostgetsupportedimportassertions" + "text": "HostGetSupportedImportAttributes()", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostgetsupportedimportattributes" } }, "/webappapis#hostloadimportedmodule": { "current": { - "number": "8.1.6.5.3", + "number": "8.1.6.7.3", "spec": "HTML", "text": "HostLoadImportedModule(referrer, moduleRequest, loadState, payload)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostloadimportedmodule" @@ -11767,12 +12254,20 @@ }, "/webappapis#hostmakejobcallback": { "current": { - "number": "8.1.6.4.4", + "number": "8.1.6.6.6", "spec": "HTML", "text": "HostMakeJobCallback(callable)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostmakejobcallback" } }, + "/webappapis#hostsystemutcepochnanoseconds": { + "current": { + "number": "8.1.6.5", + "spec": "HTML", + "text": "HostSystemUTCEpochNanoseconds(global)", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostsystemutcepochnanoseconds" + } + }, "/webappapis#idl-definitions": { "current": { "number": "8.1.8.2.1", @@ -11815,7 +12310,7 @@ }, "/webappapis#integration-with-javascript-jobs": { "current": { - "number": "8.1.6.4", + "number": "8.1.6.6", "spec": "HTML", "text": "Job-related host hooks", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#integration-with-javascript-jobs" @@ -11839,7 +12334,7 @@ }, "/webappapis#integration-with-the-javascript-module-system": { "current": { - "number": "8.1.6.5", + "number": "8.1.6.7", "spec": "HTML", "text": "Module-related host hooks", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#integration-with-the-javascript-module-system" @@ -11959,7 +12454,7 @@ }, "/webappapis#the-hostpromiserejectiontracker-implementation": { "current": { - "number": "8.1.6.3", + "number": "8.1.6.4", "spec": "HTML", "text": "HostPromiseRejectionTracker(promise, operation)", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#the-hostpromiserejectiontracker-implementation" @@ -11983,9 +12478,9 @@ }, "/webappapis#webappapis": { "current": { - "number": "", + "number": "8", "spec": "HTML", - "text": "8 Web application APIs", + "text": "Web application APIs", "url": "https://html.spec.whatwg.org/multipage/webappapis.html#webappapis" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-i18n-glossary.json b/bikeshed/spec-data/readonly/headings/headings-i18n-glossary.json index 0971f89144..b6f5b6012a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-i18n-glossary.json +++ b/bikeshed/spec-data/readonly/headings/headings-i18n-glossary.json @@ -13,6 +13,20 @@ "url": "https://www.w3.org/TR/i18n-glossary/#alphabetical-links" } }, + "#bikeshed-how": { + "current": { + "number": "A.3", + "spec": "Internationalization Glossary", + "text": "Bikeshed", + "url": "https://w3c.github.io/i18n-glossary/#bikeshed-how" + }, + "snapshot": { + "number": "A.3", + "spec": "Internationalization Glossary", + "text": "Bikeshed", + "url": "https://www.w3.org/TR/i18n-glossary/#bikeshed-how" + } + }, "#glossary": { "current": { "number": "3", @@ -27,20 +41,48 @@ "url": "https://www.w3.org/TR/i18n-glossary/#glossary" } }, + "#how-to-use": { + "current": { + "number": "A", + "spec": "Internationalization Glossary", + "text": "How to use this glossary", + "url": "https://w3c.github.io/i18n-glossary/#how-to-use" + }, + "snapshot": { + "number": "A", + "spec": "Internationalization Glossary", + "text": "How to use this glossary", + "url": "https://www.w3.org/TR/i18n-glossary/#how-to-use" + } + }, "#informative-references": { "current": { - "number": "A.1", + "number": "B.1", "spec": "Internationalization Glossary", "text": "Informative references", "url": "https://w3c.github.io/i18n-glossary/#informative-references" }, "snapshot": { - "number": "A.1", + "number": "B.1", "spec": "Internationalization Glossary", "text": "Informative references", "url": "https://www.w3.org/TR/i18n-glossary/#informative-references" } }, + "#infra-rel": { + "current": { + "number": "A.1", + "spec": "Internationalization Glossary", + "text": "Relationship to the Infra Standard", + "url": "https://w3c.github.io/i18n-glossary/#infra-rel" + }, + "snapshot": { + "number": "A.1", + "spec": "Internationalization Glossary", + "text": "Relationship to the Infra Standard", + "url": "https://www.w3.org/TR/i18n-glossary/#infra-rel" + } + }, "#introduction-0": { "current": { "number": "1", @@ -57,18 +99,32 @@ }, "#references": { "current": { - "number": "A", + "number": "B", "spec": "Internationalization Glossary", "text": "References", "url": "https://w3c.github.io/i18n-glossary/#references" }, "snapshot": { - "number": "A", + "number": "B", "spec": "Internationalization Glossary", "text": "References", "url": "https://www.w3.org/TR/i18n-glossary/#references" } }, + "#respec-how-to-use": { + "current": { + "number": "A.2", + "spec": "Internationalization Glossary", + "text": "ReSpec", + "url": "https://w3c.github.io/i18n-glossary/#respec-how-to-use" + }, + "snapshot": { + "number": "A.2", + "spec": "Internationalization Glossary", + "text": "ReSpec", + "url": "https://www.w3.org/TR/i18n-glossary/#respec-how-to-use" + } + }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-idle-detection.json b/bikeshed/spec-data/readonly/headings/headings-idle-detection.json index f76aa4392f..e6e698de56 100644 --- a/bikeshed/spec-data/readonly/headings/headings-idle-detection.json +++ b/bikeshed/spec-data/readonly/headings/headings-idle-detection.json @@ -271,14 +271,6 @@ "url": "https://wicg.github.io/idle-detection/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Idle Detection API", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/idle-detection/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-ift.json b/bikeshed/spec-data/readonly/headings/headings-ift.json index 190c287293..c9efa73612 100644 --- a/bikeshed/spec-data/readonly/headings/headings-ift.json +++ b/bikeshed/spec-data/readonly/headings/headings-ift.json @@ -1,74 +1,4 @@ { - "#AxisInterval": { - "current": { - "number": "4.3.2", - "spec": "Incremental Font Transfer", - "text": "AxisInterval", - "url": "https://w3c.github.io/IFT/Overview.html#AxisInterval" - }, - "snapshot": { - "number": "4.3.2", - "spec": "Incremental Font Transfer", - "text": "AxisInterval", - "url": "https://www.w3.org/TR/IFT/#AxisInterval" - } - }, - "#AxisSpace": { - "current": { - "number": "4.2.9", - "spec": "Incremental Font Transfer", - "text": "AxisSpace", - "url": "https://w3c.github.io/IFT/Overview.html#AxisSpace" - }, - "snapshot": { - "number": "4.2.9", - "spec": "Incremental Font Transfer", - "text": "AxisSpace", - "url": "https://www.w3.org/TR/IFT/#AxisSpace" - } - }, - "#CompressedSet": { - "current": { - "number": "4.3.1", - "spec": "Incremental Font Transfer", - "text": "CompressedSet", - "url": "https://w3c.github.io/IFT/Overview.html#CompressedSet" - }, - "snapshot": { - "number": "4.3.1", - "spec": "Incremental Font Transfer", - "text": "CompressedSet", - "url": "https://www.w3.org/TR/IFT/#CompressedSet" - } - }, - "#PatchRequest": { - "current": { - "number": "4.3.3", - "spec": "Incremental Font Transfer", - "text": "PatchRequest", - "url": "https://w3c.github.io/IFT/Overview.html#PatchRequest" - }, - "snapshot": { - "number": "4.3.3", - "spec": "Incremental Font Transfer", - "text": "PatchRequest", - "url": "https://www.w3.org/TR/IFT/#PatchRequest" - } - }, - "#PatchResponse": { - "current": { - "number": "4.3.4", - "spec": "Incremental Font Transfer", - "text": "PatchResponse", - "url": "https://w3c.github.io/IFT/Overview.html#PatchResponse" - }, - "snapshot": { - "number": "4.3.4", - "spec": "Incremental Font Transfer", - "text": "PatchResponse", - "url": "https://www.w3.org/TR/IFT/#PatchResponse" - } - }, "#abstract": { "current": { "number": "", @@ -83,150 +13,74 @@ "url": "https://www.w3.org/TR/IFT/#abstract" } }, - "#browser-behaviors": { + "#apply-brotli": { "current": { - "number": "5.3", + "number": "6.2.1", "spec": "Incremental Font Transfer", - "text": "Browser Behaviors", - "url": "https://w3c.github.io/IFT/Overview.html#browser-behaviors" + "text": "Applying Brotli Patches", + "url": "https://w3c.github.io/IFT/Overview.html#apply-brotli" }, "snapshot": { - "number": "5.3", + "number": "6.2.1", "spec": "Incremental Font Transfer", - "text": "Browser Behaviors", - "url": "https://www.w3.org/TR/IFT/#browser-behaviors" + "text": "Applying Brotli Patches", + "url": "https://www.w3.org/TR/IFT/#apply-brotli" } }, - "#browser-behaviors-first-request": { + "#apply-glyph-keyed": { "current": { - "number": "5.3.1", + "number": "6.4.1", "spec": "Incremental Font Transfer", - "text": "First Request", - "url": "https://w3c.github.io/IFT/Overview.html#browser-behaviors-first-request" + "text": "Applying Glyph Keyed Patches", + "url": "https://w3c.github.io/IFT/Overview.html#apply-glyph-keyed" }, "snapshot": { - "number": "5.3.1", + "number": "6.4.1", "spec": "Incremental Font Transfer", - "text": "First Request", - "url": "https://www.w3.org/TR/IFT/#browser-behaviors-first-request" + "text": "Applying Glyph Keyed Patches", + "url": "https://www.w3.org/TR/IFT/#apply-glyph-keyed" } }, - "#browser-behaviors-subsequent-requests": { + "#apply-per-table-brotli": { "current": { - "number": "5.3.2", + "number": "6.3.1", "spec": "Incremental Font Transfer", - "text": "Subsequent Requests", - "url": "https://w3c.github.io/IFT/Overview.html#browser-behaviors-subsequent-requests" + "text": "Applying Per Table Brotli Patches", + "url": "https://w3c.github.io/IFT/Overview.html#apply-per-table-brotli" }, "snapshot": { - "number": "5.3.2", + "number": "6.3.1", "spec": "Incremental Font Transfer", - "text": "Subsequent Requests", - "url": "https://www.w3.org/TR/IFT/#browser-behaviors-subsequent-requests" + "text": "Applying Per Table Brotli Patches", + "url": "https://www.w3.org/TR/IFT/#apply-per-table-brotli" } }, - "#checksum-and-possible-fingerprinting": { + "#brotli": { "current": { - "number": "", + "number": "6.2", "spec": "Incremental Font Transfer", - "text": "Checksums and possible fingerprinting", - "url": "https://w3c.github.io/IFT/Overview.html#checksum-and-possible-fingerprinting" + "text": "Brotli Patch", + "url": "https://w3c.github.io/IFT/Overview.html#brotli" }, "snapshot": { - "number": "", + "number": "6.2", "spec": "Incremental Font Transfer", - "text": "Checksums and possible fingerprinting", - "url": "https://www.w3.org/TR/IFT/#checksum-and-possible-fingerprinting" + "text": "Brotli Patch", + "url": "https://www.w3.org/TR/IFT/#brotli" } }, - "#client": { + "#changes": { "current": { - "number": "4.4", - "spec": "Incremental Font Transfer", - "text": "Client", - "url": "https://w3c.github.io/IFT/Overview.html#client" - }, - "snapshot": { - "number": "4.4", - "spec": "Incremental Font Transfer", - "text": "Client", - "url": "https://www.w3.org/TR/IFT/#client" - } - }, - "#client-side-checksum-mismatch": { - "snapshot": { - "number": "4.4.2.3", - "spec": "Incremental Font Transfer", - "text": "Client Side Checksum Mismatch", - "url": "https://www.w3.org/TR/IFT/#client-side-checksum-mismatch" - } - }, - "#client-state": { - "snapshot": { - "number": "4.4.1", - "spec": "Incremental Font Transfer", - "text": "Client State", - "url": "https://www.w3.org/TR/IFT/#client-state" - } - }, - "#client-state-section": { - "current": { - "number": "4.4.1", - "spec": "Incremental Font Transfer", - "text": "Client State", - "url": "https://w3c.github.io/IFT/Overview.html#client-state-section" - } - }, - "#codepoint-reordering": { - "current": { - "number": "4.7", - "spec": "Incremental Font Transfer", - "text": "Codepoint Reordering", - "url": "https://w3c.github.io/IFT/Overview.html#codepoint-reordering" - }, - "snapshot": { - "number": "4.7", - "spec": "Incremental Font Transfer", - "text": "Codepoint Reordering", - "url": "https://www.w3.org/TR/IFT/#codepoint-reordering" - } - }, - "#computing-checksums": { - "current": { - "number": "4.6", - "spec": "Incremental Font Transfer", - "text": "Computing Checksums", - "url": "https://w3c.github.io/IFT/Overview.html#computing-checksums" - }, - "snapshot": { - "number": "4.6", - "spec": "Incremental Font Transfer", - "text": "Computing Checksums", - "url": "https://www.w3.org/TR/IFT/#computing-checksums" - } - }, - "#conformance": { - "snapshot": { "number": "", "spec": "Incremental Font Transfer", - "text": "Conformance", - "url": "https://www.w3.org/TR/IFT/#conformance" - } - }, - "#conformance-classes": { - "snapshot": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Conformance Classes", - "url": "https://www.w3.org/TR/IFT/#conformance-classes" - } - }, - "#conformant-algorithms": { + "text": "Changes", + "url": "https://w3c.github.io/IFT/Overview.html#changes" + }, "snapshot": { "number": "", "spec": "Incremental Font Transfer", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/IFT/#conformant-algorithms" + "text": "Changes", + "url": "https://www.w3.org/TR/IFT/#changes" } }, "#content-inference-from-character-set": { @@ -243,270 +97,228 @@ "url": "https://www.w3.org/TR/IFT/#content-inference-from-character-set" } }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Document conventions", - "url": "https://www.w3.org/TR/IFT/#conventions" - } - }, "#data-types": { "current": { - "number": "4.2", + "number": "3.4", "spec": "Incremental Font Transfer", - "text": "Data Types", + "text": "Explanation of Data Types", "url": "https://w3c.github.io/IFT/Overview.html#data-types" }, "snapshot": { - "number": "4.2", + "number": "3.4", "spec": "Incremental Font Transfer", - "text": "Data Types", + "text": "Explanation of Data Types", "url": "https://www.w3.org/TR/IFT/#data-types" } }, - "#encoding": { + "#definitions": { "current": { - "number": "4.2.1", + "number": "3", "spec": "Incremental Font Transfer", - "text": "Encoding", - "url": "https://w3c.github.io/IFT/Overview.html#encoding" + "text": "Definitions", + "url": "https://w3c.github.io/IFT/Overview.html#definitions" }, "snapshot": { - "number": "4.2.1", + "number": "3", "spec": "Incremental Font Transfer", - "text": "Encoding", - "url": "https://www.w3.org/TR/IFT/#encoding" + "text": "Definitions", + "url": "https://www.w3.org/TR/IFT/#definitions" } }, - "#evaluation-report": { + "#encoding": { "current": { - "number": "1.3", + "number": "7", "spec": "Incremental Font Transfer", - "text": "Technical Motivation: Evaluation Report", - "url": "https://w3c.github.io/IFT/Overview.html#evaluation-report" + "text": "Encoding", + "url": "https://w3c.github.io/IFT/Overview.html#encoding" }, "snapshot": { - "number": "1.3", + "number": "7", "spec": "Incremental Font Transfer", - "text": "Technical Motivation: Evaluation Report", - "url": "https://www.w3.org/TR/IFT/#evaluation-report" + "text": "Encoding", + "url": "https://www.w3.org/TR/IFT/#encoding" } }, - "#extend-subset": { + "#encoding-considerations": { "current": { - "number": "4.4.2", + "number": "7.1", "spec": "Incremental Font Transfer", - "text": "Extending the Font Subset", - "url": "https://w3c.github.io/IFT/Overview.html#extend-subset" + "text": "Encoding Considerations", + "url": "https://w3c.github.io/IFT/Overview.html#encoding-considerations" }, "snapshot": { - "number": "4.4.2", + "number": "7.1", "spec": "Incremental Font Transfer", - "text": "Extending the Font Subset", - "url": "https://www.w3.org/TR/IFT/#extend-subset" + "text": "Encoding Considerations", + "url": "https://www.w3.org/TR/IFT/#encoding-considerations" } }, - "#fallback": { + "#evaluation-report": { "current": { - "number": "3.2", + "number": "1.1", "spec": "Incremental Font Transfer", - "text": "IFT Method Fallback", - "url": "https://w3c.github.io/IFT/Overview.html#fallback" + "text": "Technical Motivation: Evaluation Report", + "url": "https://w3c.github.io/IFT/Overview.html#evaluation-report" }, "snapshot": { - "number": "3.1", + "number": "1.1", "spec": "Incremental Font Transfer", - "text": "IFT Method Fallback", - "url": "https://www.w3.org/TR/IFT/#fallback" + "text": "Technical Motivation: Evaluation Report", + "url": "https://www.w3.org/TR/IFT/#evaluation-report" } }, - "#feature-tag-list": { + "#extend-font-subset": { "current": { - "number": "", + "number": "4.2", "spec": "Incremental Font Transfer", - "text": "Appendix B: Default Feature Tags and Encoding IDs", - "url": "https://w3c.github.io/IFT/Overview.html#feature-tag-list" + "text": "Incremental Font Extension Algorithm", + "url": "https://w3c.github.io/IFT/Overview.html#extend-font-subset" }, "snapshot": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Appendix B: Default Feature Tags and Encoding IDs", - "url": "https://www.w3.org/TR/IFT/#feature-tag-list" - } - }, - "#featuretagset": { - "snapshot": { - "number": "4.2.8", + "number": "4.2", "spec": "Incremental Font Transfer", - "text": "FeatureTagSet", - "url": "https://www.w3.org/TR/IFT/#featuretagset" + "text": "Incremental Font Extension Algorithm", + "url": "https://www.w3.org/TR/IFT/#extend-font-subset" } }, - "#featuretagset-object": { + "#extending-font-subset": { "current": { - "number": "4.2.8", + "number": "4", "spec": "Incremental Font Transfer", - "text": "FeatureTagSet", - "url": "https://w3c.github.io/IFT/Overview.html#featuretagset-object" - } - }, - "#font-load-failed": { + "text": "Extending a Font Subset", + "url": "https://w3c.github.io/IFT/Overview.html#extending-font-subset" + }, "snapshot": { - "number": "4.4.2.4", + "number": "4", "spec": "Incremental Font Transfer", - "text": "Font Load Failed", - "url": "https://www.w3.org/TR/IFT/#font-load-failed" + "text": "Extending a Font Subset", + "url": "https://www.w3.org/TR/IFT/#extending-font-subset" } }, - "#font-organization": { + "#font-format-extensions": { "current": { - "number": "5.2", + "number": "5", "spec": "Incremental Font Transfer", - "text": "Font organization", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization" + "text": "Extensions to the Font Format", + "url": "https://w3c.github.io/IFT/Overview.html#font-format-extensions" }, "snapshot": { - "number": "5.2", + "number": "5", "spec": "Incremental Font Transfer", - "text": "Font organization", - "url": "https://www.w3.org/TR/IFT/#font-organization" + "text": "Extensions to the Font Format", + "url": "https://www.w3.org/TR/IFT/#font-format-extensions" } }, - "#font-organization-background": { + "#font-patch-definitions": { "current": { - "number": "5.2.1", + "number": "3.2", "spec": "Incremental Font Transfer", - "text": "Background", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization-background" + "text": "Font Patch", + "url": "https://w3c.github.io/IFT/Overview.html#font-patch-definitions" }, "snapshot": { - "number": "5.2.1", + "number": "3.2", "spec": "Incremental Font Transfer", - "text": "Background", - "url": "https://www.w3.org/TR/IFT/#font-organization-background" + "text": "Font Patch", + "url": "https://www.w3.org/TR/IFT/#font-patch-definitions" } }, - "#font-organization-compression": { + "#font-patch-formats": { "current": { - "number": "5.2.3", + "number": "6", "spec": "Incremental Font Transfer", - "text": "Compression", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization-compression" + "text": "Font Patch Formats", + "url": "https://w3c.github.io/IFT/Overview.html#font-patch-formats" }, "snapshot": { - "number": "5.2.3", + "number": "6", "spec": "Incremental Font Transfer", - "text": "Compression", - "url": "https://www.w3.org/TR/IFT/#font-organization-compression" + "text": "Font Patch Formats", + "url": "https://www.w3.org/TR/IFT/#font-patch-formats" } }, - "#font-organization-glyph-independence": { + "#font-patch-formats-summary": { "current": { - "number": "5.2.5", + "number": "6.1", "spec": "Incremental Font Transfer", - "text": "Glyph Independence", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization-glyph-independence" + "text": "Formats Summary", + "url": "https://w3c.github.io/IFT/Overview.html#font-patch-formats-summary" }, "snapshot": { - "number": "5.2.5", + "number": "6.1", "spec": "Incremental Font Transfer", - "text": "Glyph Independence", - "url": "https://www.w3.org/TR/IFT/#font-organization-glyph-independence" + "text": "Formats Summary", + "url": "https://www.w3.org/TR/IFT/#font-patch-formats-summary" } }, - "#font-organization-glyph-order": { + "#font-patch-invalidations": { "current": { - "number": "5.2.6", + "number": "4.1", "spec": "Incremental Font Transfer", - "text": "Glyph Order", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization-glyph-order" + "text": "Patch Invalidations", + "url": "https://w3c.github.io/IFT/Overview.html#font-patch-invalidations" }, "snapshot": { - "number": "5.2.6", + "number": "4.1", "spec": "Incremental Font Transfer", - "text": "Glyph Order", - "url": "https://www.w3.org/TR/IFT/#font-organization-glyph-order" + "text": "Patch Invalidations", + "url": "https://www.w3.org/TR/IFT/#font-patch-invalidations" } }, - "#font-organization-introduction": { + "#font-subset-dfn": { "current": { - "number": "5.2.2", + "number": "3.1", "spec": "Incremental Font Transfer", - "text": "Introduction", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization-introduction" + "text": "Font Subset", + "url": "https://w3c.github.io/IFT/Overview.html#font-subset-dfn" }, "snapshot": { - "number": "5.2.2", + "number": "3.1", "spec": "Incremental Font Transfer", - "text": "Introduction", - "url": "https://www.w3.org/TR/IFT/#font-organization-introduction" + "text": "Font Subset", + "url": "https://www.w3.org/TR/IFT/#font-subset-dfn" } }, - "#font-organization-table-ordering": { + "#fully-expanding-a-font": { "current": { - "number": "5.2.4", + "number": "4.3", "spec": "Incremental Font Transfer", - "text": "Table Ordering", - "url": "https://w3c.github.io/IFT/Overview.html#font-organization-table-ordering" + "text": "Fully Expanding a Font", + "url": "https://w3c.github.io/IFT/Overview.html#fully-expanding-a-font" }, "snapshot": { - "number": "5.2.4", - "spec": "Incremental Font Transfer", - "text": "Table Ordering", - "url": "https://www.w3.org/TR/IFT/#font-organization-table-ordering" - } - }, - "#font-subset": { - "snapshot": { - "number": "4.1", - "spec": "Incremental Font Transfer", - "text": "Font Subset", - "url": "https://www.w3.org/TR/IFT/#font-subset" - } - }, - "#font-subset-definition": { - "snapshot": { - "number": "4.1.1", - "spec": "Incremental Font Transfer", - "text": "Font Subset Definition", - "url": "https://www.w3.org/TR/IFT/#font-subset-definition" - } - }, - "#font-subset-info": { - "current": { - "number": "4.1", + "number": "4.3", "spec": "Incremental Font Transfer", - "text": "Font Subset", - "url": "https://w3c.github.io/IFT/Overview.html#font-subset-info" + "text": "Fully Expanding a Font", + "url": "https://www.w3.org/TR/IFT/#fully-expanding-a-font" } }, - "#handling-patch-request": { + "#glyph-keyed": { "current": { - "number": "4.5", + "number": "6.4", "spec": "Incremental Font Transfer", - "text": "Server: Responding to a PatchRequest", - "url": "https://w3c.github.io/IFT/Overview.html#handling-patch-request" + "text": "Glyph Keyed", + "url": "https://w3c.github.io/IFT/Overview.html#glyph-keyed" }, "snapshot": { - "number": "4.5", + "number": "6.4", "spec": "Incremental Font Transfer", - "text": "Server: Responding to a PatchRequest", - "url": "https://www.w3.org/TR/IFT/#handling-patch-request" + "text": "Glyph Keyed", + "url": "https://www.w3.org/TR/IFT/#glyph-keyed" } }, - "#handling-patch-response": { + "#ift-and-woff2": { "current": { - "number": "4.4.3", + "number": "5.1", "spec": "Incremental Font Transfer", - "text": "Handling Server Response", - "url": "https://w3c.github.io/IFT/Overview.html#handling-patch-response" + "text": "Incremental Font Transfer and WOFF2", + "url": "https://w3c.github.io/IFT/Overview.html#ift-and-woff2" }, "snapshot": { - "number": "4.4.2.1", + "number": "5.1", "spec": "Incremental Font Transfer", - "text": "Handling PatchResponse", - "url": "https://www.w3.org/TR/IFT/#handling-patch-response" + "text": "Incremental Font Transfer and WOFF2", + "url": "https://www.w3.org/TR/IFT/#ift-and-woff2" } }, "#index": { @@ -523,20 +335,6 @@ "url": "https://www.w3.org/TR/IFT/#index" } }, - "#index-defined-elsewhere": { - "current": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Terms defined by reference", - "url": "https://w3c.github.io/IFT/Overview.html#index-defined-elsewhere" - }, - "snapshot": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Terms defined by reference", - "url": "https://www.w3.org/TR/IFT/#index-defined-elsewhere" - } - }, "#index-defined-here": { "current": { "number": "", @@ -565,62 +363,32 @@ "url": "https://www.w3.org/TR/IFT/#informative" } }, - "#integerlist": { - "snapshot": { - "number": "4.2.5", - "spec": "Incremental Font Transfer", - "text": "IntegerList", - "url": "https://www.w3.org/TR/IFT/#integerlist" - } - }, - "#integerlist-deltas": { - "current": { - "number": "4.2.5.1", - "spec": "Incremental Font Transfer", - "text": "Delta Encoding", - "url": "https://w3c.github.io/IFT/Overview.html#integerlist-deltas" - }, - "snapshot": { - "number": "4.2.5.1", - "spec": "Incremental Font Transfer", - "text": "Delta Encoding", - "url": "https://www.w3.org/TR/IFT/#integerlist-deltas" - } - }, - "#integerlist-object": { - "current": { - "number": "4.2.5", - "spec": "Incremental Font Transfer", - "text": "IntegerList", - "url": "https://w3c.github.io/IFT/Overview.html#integerlist-object" - } - }, - "#integerlist-uintbase128": { + "#interpreting-patch-map-format-1": { "current": { - "number": "4.2.5.3", + "number": "5.2.1.1", "spec": "Incremental Font Transfer", - "text": "UIntBase128 Encoding", - "url": "https://w3c.github.io/IFT/Overview.html#integerlist-uintbase128" + "text": "Interpreting Format 1", + "url": "https://w3c.github.io/IFT/Overview.html#interpreting-patch-map-format-1" }, "snapshot": { - "number": "4.2.5.3", + "number": "5.2.1.1", "spec": "Incremental Font Transfer", - "text": "UIntBase128 Encoding", - "url": "https://www.w3.org/TR/IFT/#integerlist-uintbase128" + "text": "Interpreting Format 1", + "url": "https://www.w3.org/TR/IFT/#interpreting-patch-map-format-1" } }, - "#integerlist-zigzag": { + "#interpreting-patch-map-format-2": { "current": { - "number": "4.2.5.2", + "number": "5.2.2.1", "spec": "Incremental Font Transfer", - "text": "Zig-Zag Encoding", - "url": "https://w3c.github.io/IFT/Overview.html#integerlist-zigzag" + "text": "Interpreting Format 2", + "url": "https://w3c.github.io/IFT/Overview.html#interpreting-patch-map-format-2" }, "snapshot": { - "number": "4.2.5.2", + "number": "5.2.2.1", "spec": "Incremental Font Transfer", - "text": "Zig-Zag Encoding", - "url": "https://www.w3.org/TR/IFT/#integerlist-zigzag" + "text": "Interpreting Format 2", + "url": "https://www.w3.org/TR/IFT/#interpreting-patch-map-format-2" } }, "#intro": { @@ -637,62 +405,18 @@ "url": "https://www.w3.org/TR/IFT/#intro" } }, - "#invalid-server-response": { - "snapshot": { - "number": "4.4.2.2", - "spec": "Incremental Font Transfer", - "text": "Handling Invalid Response from the Server", - "url": "https://www.w3.org/TR/IFT/#invalid-server-response" - } - }, - "#issues-index": { + "#making-incremental-fonts": { "current": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Issues Index", - "url": "https://w3c.github.io/IFT/Overview.html#issues-index" - }, - "snapshot": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Issues Index", - "url": "https://www.w3.org/TR/IFT/#issues-index" - } - }, - "#load-a-font": { - "current": { - "number": "4.4.4", - "spec": "Incremental Font Transfer", - "text": "Load a Font in a User Agent with a HTTP Cache", - "url": "https://w3c.github.io/IFT/Overview.html#load-a-font" - }, - "snapshot": { - "number": "4.4.3", - "spec": "Incremental Font Transfer", - "text": "Load a Font in a User Agent with a HTTP Cache", - "url": "https://www.w3.org/TR/IFT/#load-a-font" - } - }, - "#method-negotiation": { - "current": { - "number": "3.1", - "spec": "Incremental Font Transfer", - "text": "IFT Method Negotiation", - "url": "https://w3c.github.io/IFT/Overview.html#method-negotiation" - } - }, - "#method-selection": { - "current": { - "number": "3", + "number": "1.3", "spec": "Incremental Font Transfer", - "text": "IFT Method Selection", - "url": "https://w3c.github.io/IFT/Overview.html#method-selection" + "text": "Creating an Incremental Font", + "url": "https://w3c.github.io/IFT/Overview.html#making-incremental-fonts" }, "snapshot": { - "number": "3", + "number": "1.3", "spec": "Incremental Font Transfer", - "text": "IFT Method Selection", - "url": "https://www.w3.org/TR/IFT/#method-selection" + "text": "Creating an Incremental Font", + "url": "https://www.w3.org/TR/IFT/#making-incremental-fonts" } }, "#normative": { @@ -709,26 +433,18 @@ "url": "https://www.w3.org/TR/IFT/#normative" } }, - "#objects": { + "#offline-usage": { "current": { - "number": "4.2.10", + "number": "2.1", "spec": "Incremental Font Transfer", - "text": "Objects", - "url": "https://w3c.github.io/IFT/Overview.html#objects" + "text": "Offline Usage", + "url": "https://w3c.github.io/IFT/Overview.html#offline-usage" }, "snapshot": { - "number": "4.2.10", - "spec": "Incremental Font Transfer", - "text": "Objects", - "url": "https://www.w3.org/TR/IFT/#objects" - } - }, - "#offline-usage": { - "current": { - "number": "3.3", + "number": "2.1", "spec": "Incremental Font Transfer", "text": "Offline Usage", - "url": "https://w3c.github.io/IFT/Overview.html#offline-usage" + "url": "https://www.w3.org/TR/IFT/#offline-usage" } }, "#opt-in": { @@ -745,198 +461,144 @@ "url": "https://www.w3.org/TR/IFT/#opt-in" } }, - "#patch-formats": { + "#overview": { "current": { - "number": "4.8", + "number": "1.2", "spec": "Incremental Font Transfer", - "text": "Patch Formats", - "url": "https://w3c.github.io/IFT/Overview.html#patch-formats" + "text": "Overview", + "url": "https://w3c.github.io/IFT/Overview.html#overview" }, "snapshot": { - "number": "4.8", + "number": "1.2", "spec": "Incremental Font Transfer", - "text": "Patch Formats", - "url": "https://www.w3.org/TR/IFT/#patch-formats" + "text": "Overview", + "url": "https://www.w3.org/TR/IFT/#overview" } }, - "#patch-incxfer": { + "#patch-map-dfn": { "current": { - "number": "4", + "number": "3.3", "spec": "Incremental Font Transfer", - "text": "Patch Based Incremental Transfer", - "url": "https://w3c.github.io/IFT/Overview.html#patch-incxfer" + "text": "Patch Map", + "url": "https://w3c.github.io/IFT/Overview.html#patch-map-dfn" }, "snapshot": { - "number": "4", + "number": "3.3", "spec": "Incremental Font Transfer", - "text": "Patch Based Incremental Transfer", - "url": "https://www.w3.org/TR/IFT/#patch-incxfer" + "text": "Patch Map", + "url": "https://www.w3.org/TR/IFT/#patch-map-dfn" } }, - "#patch-subset": { + "#patch-map-format-1": { "current": { - "number": "1.1", + "number": "5.2.1", "spec": "Incremental Font Transfer", - "text": "Patch Subset", - "url": "https://w3c.github.io/IFT/Overview.html#patch-subset" + "text": "Patch Map Table: Format 1", + "url": "https://w3c.github.io/IFT/Overview.html#patch-map-format-1" }, "snapshot": { - "number": "1.1", - "spec": "Incremental Font Transfer", - "text": "Patch Subset", - "url": "https://www.w3.org/TR/IFT/#patch-subset" - } - }, - "#patchsubset-vs-rangerequest": { - "current": { - "number": "1.4.2", + "number": "5.2.1", "spec": "Incremental Font Transfer", - "text": "Deciding between Patch Subset and Range Request", - "url": "https://w3c.github.io/IFT/Overview.html#patchsubset-vs-rangerequest" + "text": "Patch Map Table: Format 1", + "url": "https://www.w3.org/TR/IFT/#patch-map-format-1" } }, - "#per-origin": { + "#patch-map-format-2": { "current": { - "number": "", + "number": "5.2.2", "spec": "Incremental Font Transfer", - "text": "Per-origin restriction avoids fingerprinting", - "url": "https://w3c.github.io/IFT/Overview.html#per-origin" + "text": "Patch Map Table: Format 2", + "url": "https://w3c.github.io/IFT/Overview.html#patch-map-format-2" }, "snapshot": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Per-origin restriction avoids fingerprinting", - "url": "https://www.w3.org/TR/IFT/#per-origin" - } - }, - "#performance-considerations": { - "current": { - "number": "1.4", + "number": "5.2.2", "spec": "Incremental Font Transfer", - "text": "Performance Considerations and the use of Incremental Font Transfer", - "url": "https://w3c.github.io/IFT/Overview.html#performance-considerations" + "text": "Patch Map Table: Format 2", + "url": "https://www.w3.org/TR/IFT/#patch-map-format-2" } }, - "#primitives": { + "#patch-map-table": { "current": { - "number": "4.2.2", + "number": "5.2", "spec": "Incremental Font Transfer", - "text": "Primitives", - "url": "https://w3c.github.io/IFT/Overview.html#primitives" + "text": "Patch Map Table", + "url": "https://w3c.github.io/IFT/Overview.html#patch-map-table" }, "snapshot": { - "number": "4.2.2", + "number": "5.2", "spec": "Incremental Font Transfer", - "text": "Primitives", - "url": "https://www.w3.org/TR/IFT/#primitives" + "text": "Patch Map Table", + "url": "https://www.w3.org/TR/IFT/#patch-map-table" } }, - "#priv": { + "#per-origin": { "current": { "number": "", "spec": "Incremental Font Transfer", - "text": "Privacy Considerations", - "url": "https://w3c.github.io/IFT/Overview.html#priv" + "text": "Per-origin restriction avoids fingerprinting", + "url": "https://w3c.github.io/IFT/Overview.html#per-origin" }, "snapshot": { "number": "", "spec": "Incremental Font Transfer", - "text": "Privacy Considerations", - "url": "https://www.w3.org/TR/IFT/#priv" - } - }, - "#protocol-version": { - "current": { - "number": "4.2.3", - "spec": "Incremental Font Transfer", - "text": "ProtocolVersion", - "url": "https://w3c.github.io/IFT/Overview.html#protocol-version" - }, - "snapshot": { - "number": "4.2.3", - "spec": "Incremental Font Transfer", - "text": "ProtocolVersion", - "url": "https://www.w3.org/TR/IFT/#protocol-version" + "text": "Per-origin restriction avoids fingerprinting", + "url": "https://www.w3.org/TR/IFT/#per-origin" } }, - "#range-request": { + "#per-table-brotli": { "current": { - "number": "1.2", + "number": "6.3", "spec": "Incremental Font Transfer", - "text": "Range Request", - "url": "https://w3c.github.io/IFT/Overview.html#range-request" + "text": "Per Table Brotli", + "url": "https://w3c.github.io/IFT/Overview.html#per-table-brotli" }, "snapshot": { - "number": "1.2", + "number": "6.3", "spec": "Incremental Font Transfer", - "text": "Range Request", - "url": "https://www.w3.org/TR/IFT/#range-request" + "text": "Per Table Brotli", + "url": "https://www.w3.org/TR/IFT/#per-table-brotli" } }, - "#range-request-incxfer": { + "#performance-considerations": { "current": { - "number": "5", + "number": "1.4", "spec": "Incremental Font Transfer", - "text": "Range Request Incremental Transfer", - "url": "https://w3c.github.io/IFT/Overview.html#range-request-incxfer" + "text": "Performance Considerations and the use of Incremental Font Transfer", + "url": "https://w3c.github.io/IFT/Overview.html#performance-considerations" }, "snapshot": { - "number": "5", + "number": "1.4", "spec": "Incremental Font Transfer", - "text": "Range Request Incremental Transfer", - "url": "https://www.w3.org/TR/IFT/#range-request-incxfer" + "text": "Performance Considerations and the use of Incremental Font Transfer", + "url": "https://www.w3.org/TR/IFT/#performance-considerations" } }, - "#range-request-intro": { + "#priv": { "current": { - "number": "5.1", + "number": "", "spec": "Incremental Font Transfer", - "text": "Introduction to Range Request", - "url": "https://w3c.github.io/IFT/Overview.html#range-request-intro" + "text": "Privacy Considerations", + "url": "https://w3c.github.io/IFT/Overview.html#priv" }, "snapshot": { - "number": "5.1", + "number": "", "spec": "Incremental Font Transfer", - "text": "Introduction to Range Request", - "url": "https://www.w3.org/TR/IFT/#range-request-intro" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/IFT/#priv" } }, - "#range-request-support": { + "#reduce-requests": { "current": { - "number": "4.5.1", + "number": "1.4.1", "spec": "Incremental Font Transfer", - "text": "Range Request Support", - "url": "https://w3c.github.io/IFT/Overview.html#range-request-support" + "text": "Reducing the Number of Network Requests", + "url": "https://w3c.github.io/IFT/Overview.html#reduce-requests" }, "snapshot": { - "number": "4.5.1", - "spec": "Incremental Font Transfer", - "text": "Range Request Support", - "url": "https://www.w3.org/TR/IFT/#range-request-support" - } - }, - "#rangelist": { - "snapshot": { - "number": "4.2.7", - "spec": "Incremental Font Transfer", - "text": "RangeList", - "url": "https://www.w3.org/TR/IFT/#rangelist" - } - }, - "#rangelist-object": { - "current": { - "number": "4.2.7", - "spec": "Incremental Font Transfer", - "text": "RangeList", - "url": "https://w3c.github.io/IFT/Overview.html#rangelist-object" - } - }, - "#reduce-requests": { - "current": { "number": "1.4.1", "spec": "Incremental Font Transfer", "text": "Reducing the Number of Network Requests", - "url": "https://w3c.github.io/IFT/Overview.html#reduce-requests" + "url": "https://www.w3.org/TR/IFT/#reduce-requests" } }, "#references": { @@ -953,32 +615,32 @@ "url": "https://www.w3.org/TR/IFT/#references" } }, - "#reordering-checksum": { + "#remove-entries-format-1": { "current": { - "number": "4.7.1", + "number": "5.2.1.2", "spec": "Incremental Font Transfer", - "text": "Codepoint Reordering Checksum", - "url": "https://w3c.github.io/IFT/Overview.html#reordering-checksum" + "text": "Remove Entries from Format 1", + "url": "https://w3c.github.io/IFT/Overview.html#remove-entries-format-1" }, "snapshot": { - "number": "4.7.1", + "number": "5.2.1.2", "spec": "Incremental Font Transfer", - "text": "Codepoint Reordering Checksum", - "url": "https://www.w3.org/TR/IFT/#reordering-checksum" + "text": "Remove Entries from Format 1", + "url": "https://www.w3.org/TR/IFT/#remove-entries-format-1" } }, - "#schemas": { + "#remove-entries-format-2": { "current": { - "number": "4.3", + "number": "5.2.2.2", "spec": "Incremental Font Transfer", - "text": "Object Schemas", - "url": "https://w3c.github.io/IFT/Overview.html#schemas" + "text": "Remove Entries from Format 2", + "url": "https://w3c.github.io/IFT/Overview.html#remove-entries-format-2" }, "snapshot": { - "number": "4.3", + "number": "5.2.2.2", "spec": "Incremental Font Transfer", - "text": "Object Schemas", - "url": "https://www.w3.org/TR/IFT/#schemas" + "text": "Remove Entries from Format 2", + "url": "https://www.w3.org/TR/IFT/#remove-entries-format-2" } }, "#sec": { @@ -995,36 +657,6 @@ "url": "https://www.w3.org/TR/IFT/#sec" } }, - "#server-behaviors": { - "current": { - "number": "5.4", - "spec": "Incremental Font Transfer", - "text": "Server Behaviors", - "url": "https://w3c.github.io/IFT/Overview.html#server-behaviors" - }, - "snapshot": { - "number": "5.4", - "spec": "Incremental Font Transfer", - "text": "Server Behaviors", - "url": "https://www.w3.org/TR/IFT/#server-behaviors" - } - }, - "#sortedintegerlist": { - "snapshot": { - "number": "4.2.6", - "spec": "Incremental Font Transfer", - "text": "SortedIntegerList", - "url": "https://www.w3.org/TR/IFT/#sortedintegerlist" - } - }, - "#sortedintegerlist-object": { - "current": { - "number": "4.2.6", - "spec": "Incremental Font Transfer", - "text": "SortedIntegerList", - "url": "https://w3c.github.io/IFT/Overview.html#sortedintegerlist-object" - } - }, "#sotd": { "current": { "number": "", @@ -1039,34 +671,18 @@ "url": "https://www.w3.org/TR/IFT/#sotd" } }, - "#sparsebitset": { - "snapshot": { - "number": "4.2.4", - "spec": "Incremental Font Transfer", - "text": "SparseBitSet", - "url": "https://www.w3.org/TR/IFT/#sparsebitset" - } - }, - "#sparsebitset-object": { + "#sparse-bit-set-decoding": { "current": { - "number": "4.2.4", + "number": "5.2.2.3", "spec": "Incremental Font Transfer", - "text": "SparseBitSet", - "url": "https://w3c.github.io/IFT/Overview.html#sparsebitset-object" - } - }, - "#suggested-glyph-character-ordering": { - "current": { - "number": "", - "spec": "Incremental Font Transfer", - "text": "Appendix A: Suggested glyph/character ordering", - "url": "https://w3c.github.io/IFT/Overview.html#suggested-glyph-character-ordering" + "text": "Sparse Bit Set", + "url": "https://w3c.github.io/IFT/Overview.html#sparse-bit-set-decoding" }, "snapshot": { - "number": "", + "number": "5.2.2.3", "spec": "Incremental Font Transfer", - "text": "Appendix A: Suggested glyph/character ordering", - "url": "https://www.w3.org/TR/IFT/#suggested-glyph-character-ordering" + "text": "Sparse Bit Set", + "url": "https://www.w3.org/TR/IFT/#sparse-bit-set-decoding" } }, "#title": { @@ -1097,12 +713,32 @@ "url": "https://www.w3.org/TR/IFT/#toc" } }, + "#uri-templates": { + "current": { + "number": "5.2.3", + "spec": "Incremental Font Transfer", + "text": "URI Templates", + "url": "https://w3c.github.io/IFT/Overview.html#uri-templates" + }, + "snapshot": { + "number": "5.2.3", + "spec": "Incremental Font Transfer", + "text": "URI Templates", + "url": "https://www.w3.org/TR/IFT/#uri-templates" + } + }, "#w3c-conformance": { "current": { "number": "", "spec": "Incremental Font Transfer", "text": "Conformance", "url": "https://w3c.github.io/IFT/Overview.html#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Incremental Font Transfer", + "text": "Conformance", + "url": "https://www.w3.org/TR/IFT/#w3c-conformance" } }, "#w3c-conformant-algorithms": { @@ -1111,6 +747,12 @@ "spec": "Incremental Font Transfer", "text": "Conformant Algorithms", "url": "https://w3c.github.io/IFT/Overview.html#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Incremental Font Transfer", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/IFT/#w3c-conformant-algorithms" } }, "#w3c-conventions": { @@ -1119,6 +761,12 @@ "spec": "Incremental Font Transfer", "text": "Document conventions", "url": "https://w3c.github.io/IFT/Overview.html#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Incremental Font Transfer", + "text": "Document conventions", + "url": "https://www.w3.org/TR/IFT/#w3c-conventions" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-indexeddb-3.json b/bikeshed/spec-data/readonly/headings/headings-indexeddb-3.json index c76c909e84..2e7ab87325 100644 --- a/bikeshed/spec-data/readonly/headings/headings-indexeddb-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-indexeddb-3.json @@ -143,13 +143,13 @@ "current": { "number": "5.2", "spec": "Indexed DB 3.0", - "text": "Closing a database", + "text": "Closing a database connection", "url": "https://w3c.github.io/IndexedDB/#closing-connection" }, "snapshot": { "number": "5.2", "spec": "Indexed DB 3.0", - "text": "Closing a database", + "text": "Closing a database connection", "url": "https://www.w3.org/TR/IndexedDB-3/#closing-connection" } }, @@ -815,13 +815,13 @@ "current": { "number": "5.1", "spec": "Indexed DB 3.0", - "text": "Opening a database", + "text": "Opening a database connection", "url": "https://w3c.github.io/IndexedDB/#opening" }, "snapshot": { "number": "5.1", "spec": "Indexed DB 3.0", - "text": "Opening a database", + "text": "Opening a database connection", "url": "https://www.w3.org/TR/IndexedDB-3/#opening" } }, @@ -1081,13 +1081,13 @@ "current": { "number": "5.7", "spec": "Indexed DB 3.0", - "text": "Running an upgrade transaction", + "text": "Upgrading a database", "url": "https://w3c.github.io/IndexedDB/#upgrade-transaction-steps" }, "snapshot": { "number": "5.7", "spec": "Indexed DB 3.0", - "text": "Running an upgrade transaction", + "text": "Upgrading a database", "url": "https://www.w3.org/TR/IndexedDB-3/#upgrade-transaction-steps" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-infra.json b/bikeshed/spec-data/readonly/headings/headings-infra.json index ca01eeae43..ad1c64266e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-infra.json +++ b/bikeshed/spec-data/readonly/headings/headings-infra.json @@ -23,6 +23,14 @@ "url": "https://infra.spec.whatwg.org/#algorithm-conditional-abort" } }, + "#algorithm-conditional-statements": { + "current": { + "number": "3.8", + "spec": "Infra", + "text": "Conditional statements", + "url": "https://infra.spec.whatwg.org/#algorithm-conditional-statements" + } + }, "#algorithm-conformance": { "current": { "number": "3.1", @@ -49,7 +57,7 @@ }, "#algorithm-iteration": { "current": { - "number": "3.8", + "number": "3.9", "spec": "Infra", "text": "Iteration", "url": "https://infra.spec.whatwg.org/#algorithm-iteration" @@ -81,7 +89,7 @@ }, "#assertions": { "current": { - "number": "3.9", + "number": "3.10", "spec": "Infra", "text": "Assertions", "url": "https://infra.spec.whatwg.org/#assertions" @@ -327,6 +335,14 @@ "url": "https://infra.spec.whatwg.org/#terminology" } }, + "#time": { + "current": { + "number": "4.7", + "spec": "Infra", + "text": "Time", + "url": "https://infra.spec.whatwg.org/#time" + } + }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-input-events-2.json b/bikeshed/spec-data/readonly/headings/headings-input-events-2.json index e82bebf158..9c1b3c462e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-input-events-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-input-events-2.json @@ -7,9 +7,9 @@ "url": "https://w3c.github.io/input-events/#acknowledgements" }, "snapshot": { - "number": "8", + "number": "", "spec": "Input Events 2", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://www.w3.org/TR/input-events-2/#acknowledgements" } }, @@ -19,6 +19,12 @@ "spec": "Input Events 2", "text": "Conformance", "url": "https://w3c.github.io/input-events/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "Input Events 2", + "text": "Conformance", + "url": "https://www.w3.org/TR/input-events-2/#conformance" } }, "#definitions": { @@ -29,7 +35,7 @@ "url": "https://w3c.github.io/input-events/#definitions" }, "snapshot": { - "number": "2", + "number": "3", "spec": "Input Events 2", "text": "Definitions", "url": "https://www.w3.org/TR/input-events-2/#definitions" @@ -43,26 +49,24 @@ "url": "https://w3c.github.io/input-events/#event-definitions" }, "snapshot": { - "number": "5.2", + "number": "6.2", "spec": "Input Events 2", "text": "Event definitions", "url": "https://www.w3.org/TR/input-events-2/#event-definitions" } }, - "#event-order-during-ime-composition": { - "snapshot": { - "number": "6", - "spec": "Input Events 2", - "text": "Event order during IME composition", - "url": "https://www.w3.org/TR/input-events-2/#event-order-during-ime-composition" - } - }, "#event-order-when-using-insertfrompaste": { "current": { "number": "8", "spec": "Input Events 2", "text": "Event order when using \"insertFromPaste\"", "url": "https://w3c.github.io/input-events/#event-order-when-using-insertfrompaste" + }, + "snapshot": { + "number": "8", + "spec": "Input Events 2", + "text": "Event order when using \"insertFromPaste\"", + "url": "https://www.w3.org/TR/input-events-2/#event-order-when-using-insertfrompaste" } }, "#events-inputevents": { @@ -73,7 +77,7 @@ "url": "https://w3c.github.io/input-events/#events-inputevents" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Input Events 2", "text": "Input Event Types", "url": "https://www.w3.org/TR/input-events-2/#events-inputevents" @@ -87,7 +91,7 @@ "url": "https://w3c.github.io/input-events/#informative-references" }, "snapshot": { - "number": "A.1", + "number": "A.2", "spec": "Input Events 2", "text": "Informative references", "url": "https://www.w3.org/TR/input-events-2/#informative-references" @@ -99,6 +103,12 @@ "spec": "Input Events 2", "text": "Input Event Order During Composition", "url": "https://w3c.github.io/input-events/#input-event-order-during-composition" + }, + "snapshot": { + "number": "7", + "spec": "Input Events 2", + "text": "Input Event Order During Composition", + "url": "https://www.w3.org/TR/input-events-2/#input-event-order-during-composition" } }, "#interface-InputEvent": { @@ -109,7 +119,7 @@ "url": "https://w3c.github.io/input-events/#interface-InputEvent" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "Input Events 2", "text": "Interface InputEvent", "url": "https://www.w3.org/TR/input-events-2/#interface-InputEvent" @@ -123,7 +133,7 @@ "url": "https://w3c.github.io/input-events/#interface-InputEvent-Attributes" }, "snapshot": { - "number": "5.1.2", + "number": "6.1.2", "spec": "Input Events 2", "text": "Attributes", "url": "https://www.w3.org/TR/input-events-2/#interface-InputEvent-Attributes" @@ -137,7 +147,7 @@ "url": "https://w3c.github.io/input-events/#interface-InputEvent-Methods" }, "snapshot": { - "number": "5.1.3", + "number": "6.1.3", "spec": "Input Events 2", "text": "Methods", "url": "https://www.w3.org/TR/input-events-2/#interface-InputEvent-Methods" @@ -163,6 +173,12 @@ "spec": "Input Events 2", "text": "Normative references", "url": "https://w3c.github.io/input-events/#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "Input Events 2", + "text": "Normative references", + "url": "https://www.w3.org/TR/input-events-2/#normative-references" } }, "#overview": { @@ -173,7 +189,7 @@ "url": "https://w3c.github.io/input-events/#overview" }, "snapshot": { - "number": "5.1.1", + "number": "6.1.1", "spec": "Input Events 2", "text": "Overview", "url": "https://www.w3.org/TR/input-events-2/#overview" @@ -187,7 +203,7 @@ "url": "https://w3c.github.io/input-events/#privacy-and-security-considerations" }, "snapshot": { - "number": "7", + "number": "9", "spec": "Input Events 2", "text": "Privacy and security considerations", "url": "https://www.w3.org/TR/input-events-2/#privacy-and-security-considerations" @@ -201,7 +217,7 @@ "url": "https://w3c.github.io/input-events/#problems-solved" }, "snapshot": { - "number": "3", + "number": "4", "spec": "Input Events 2", "text": "Problems solved", "url": "https://www.w3.org/TR/input-events-2/#problems-solved" @@ -257,7 +273,7 @@ "url": "https://w3c.github.io/input-events/#use-cases" }, "snapshot": { - "number": "4", + "number": "5", "spec": "Input Events 2", "text": "Use cases", "url": "https://www.w3.org/TR/input-events-2/#use-cases" diff --git a/bikeshed/spec-data/readonly/headings/headings-intersection-observer.json b/bikeshed/spec-data/readonly/headings/headings-intersection-observer.json index ed7ebef8f6..44311b18df 100644 --- a/bikeshed/spec-data/readonly/headings/headings-intersection-observer.json +++ b/bikeshed/spec-data/readonly/headings/headings-intersection-observer.json @@ -55,6 +55,14 @@ "url": "https://www.w3.org/TR/intersection-observer/#algorithms" } }, + "#calculate-effective-transformation-matrix": { + "current": { + "number": "3.2.9", + "spec": "Intersection Observer", + "text": "Calculate a target’s Effective Transformation Matrix", + "url": "https://w3c.github.io/IntersectionObserver/#calculate-effective-transformation-matrix" + } + }, "#calculate-intersection-rect-algo": { "current": { "number": "3.2.7", @@ -69,6 +77,14 @@ "url": "https://www.w3.org/TR/intersection-observer/#calculate-intersection-rect-algo" } }, + "#calculate-visibility-algo": { + "current": { + "number": "3.2.8", + "spec": "Intersection Observer", + "text": "Compute whether a Target is unoccluded, untransformed, unfiltered, and opaque.", + "url": "https://w3c.github.io/IntersectionObserver/#calculate-visibility-algo" + } + }, "#defines": { "current": { "number": "3.1", @@ -519,7 +535,7 @@ }, "#update-intersection-observations-algo": { "current": { - "number": "3.2.8", + "number": "3.2.10", "spec": "Intersection Observer", "text": "Run the Update Intersection Observations Steps", "url": "https://w3c.github.io/IntersectionObserver/#update-intersection-observations-algo" diff --git a/bikeshed/spec-data/readonly/headings/headings-is-input-pending.json b/bikeshed/spec-data/readonly/headings/headings-is-input-pending.json index a343d1e2cf..849b15ed80 100644 --- a/bikeshed/spec-data/readonly/headings/headings-is-input-pending.json +++ b/bikeshed/spec-data/readonly/headings/headings-is-input-pending.json @@ -2,7 +2,7 @@ "#abstract": { "current": { "number": "", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Abstract", "url": "https://wicg.github.io/is-input-pending/#abstract" } @@ -10,7 +10,7 @@ "#conformance": { "current": { "number": "2", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Conformance", "url": "https://wicg.github.io/is-input-pending/#conformance" } @@ -18,7 +18,7 @@ "#continuous-event": { "current": { "number": "1.6.1", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Continuous event", "url": "https://wicg.github.io/is-input-pending/#continuous-event" } @@ -26,7 +26,7 @@ "#continuous-event-task": { "current": { "number": "1.6.2", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Continuous event task", "url": "https://wicg.github.io/is-input-pending/#continuous-event-task" } @@ -34,7 +34,7 @@ "#continuous-events": { "current": { "number": "1.6", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Continuous events", "url": "https://wicg.github.io/is-input-pending/#continuous-events" } @@ -42,7 +42,7 @@ "#examples-of-usage": { "current": { "number": "1.2", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Examples of Usage", "url": "https://wicg.github.io/is-input-pending/#examples-of-usage" } @@ -50,7 +50,7 @@ "#extensions-to-the-navigator-interface": { "current": { "number": "1.5", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Extensions to the Navigator interface", "url": "https://wicg.github.io/is-input-pending/#extensions-to-the-navigator-interface" } @@ -58,7 +58,7 @@ "#introduction": { "current": { "number": "1.1", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Introduction", "url": "https://wicg.github.io/is-input-pending/#introduction" } @@ -66,7 +66,7 @@ "#isinputpending": { "current": { "number": "1", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "isInputPending", "url": "https://wicg.github.io/is-input-pending/#isinputpending" } @@ -74,7 +74,7 @@ "#isinputpendingoptions": { "current": { "number": "1.3", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "IsInputPendingOptions", "url": "https://wicg.github.io/is-input-pending/#isinputpendingoptions" } @@ -82,7 +82,7 @@ "#isinputpendingoptions-0": { "current": { "number": "1.3.1", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "IsInputPendingOptions", "url": "https://wicg.github.io/is-input-pending/#isinputpendingoptions-0" } @@ -90,7 +90,7 @@ "#normative-references": { "current": { "number": "A.1", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Normative references", "url": "https://wicg.github.io/is-input-pending/#normative-references" } @@ -98,7 +98,7 @@ "#privacy-and-security": { "current": { "number": "1.7", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Privacy and Security", "url": "https://wicg.github.io/is-input-pending/#privacy-and-security" } @@ -106,7 +106,7 @@ "#references": { "current": { "number": "A", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "References", "url": "https://wicg.github.io/is-input-pending/#references" } @@ -114,7 +114,7 @@ "#sotd": { "current": { "number": "", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Status of This Document", "url": "https://wicg.github.io/is-input-pending/#sotd" } @@ -122,7 +122,7 @@ "#the-isinputpending-method": { "current": { "number": "1.4.1", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "The isInputPending Method", "url": "https://wicg.github.io/is-input-pending/#the-isinputpending-method" } @@ -130,7 +130,7 @@ "#the-scheduling-interface": { "current": { "number": "1.4", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "The Scheduling interface", "url": "https://wicg.github.io/is-input-pending/#the-scheduling-interface" } @@ -138,7 +138,7 @@ "#title": { "current": { "number": "", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Early detection of input events", "url": "https://wicg.github.io/is-input-pending/#title" } @@ -146,7 +146,7 @@ "#toc": { "current": { "number": "", - "spec": "isInputPending", + "spec": "Early detection of input events", "text": "Table of Contents", "url": "https://wicg.github.io/is-input-pending/#toc" } diff --git a/bikeshed/spec-data/readonly/headings/headings-json-ld11.json b/bikeshed/spec-data/readonly/headings/headings-json-ld11.json index f62880f988..42bfb3096e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-json-ld11.json +++ b/bikeshed/spec-data/readonly/headings/headings-json-ld11.json @@ -73,7 +73,7 @@ "current": { "number": "C.1", "spec": "JSON-LD 1.1", - "text": "application/ld+json", + "text": "Media Type Registration: application/ld+json", "url": "https://w3c.github.io/json-ld-syntax/#application-ld-json" }, "snapshot": { @@ -582,12 +582,6 @@ } }, "#iana-examples": { - "current": { - "number": "C.2", - "spec": "JSON-LD 1.1", - "text": "Examples", - "url": "https://w3c.github.io/json-ld-syntax/#iana-examples" - }, "snapshot": { "number": "C.1", "spec": "JSON-LD 1.1", @@ -987,6 +981,14 @@ "url": "https://www.w3.org/TR/json-ld11/#locating-a-specific-json-ld-script-element" } }, + "#media-type-examples": { + "current": { + "number": "C.1.1", + "spec": "JSON-LD 1.1", + "text": "Examples", + "url": "https://w3c.github.io/json-ld-syntax/#media-type-examples" + } + }, "#microdata": { "current": { "number": "B.3", @@ -1519,6 +1521,22 @@ "url": "https://www.w3.org/TR/json-ld11/#string-internationalization" } }, + "#structured-extension-examples": { + "current": { + "number": "C.2.1", + "spec": "JSON-LD 1.1", + "text": "Examples", + "url": "https://w3c.github.io/json-ld-syntax/#structured-extension-examples" + } + }, + "#structured-extension-ld-json": { + "current": { + "number": "C.2", + "spec": "JSON-LD 1.1", + "text": "Structured Suffix Registration: +ld+json", + "url": "https://w3c.github.io/json-ld-syntax/#structured-extension-ld-json" + } + }, "#subtitle": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-largest-contentful-paint.json b/bikeshed/spec-data/readonly/headings/headings-largest-contentful-paint.json index a184936fbd..2551ce3251 100644 --- a/bikeshed/spec-data/readonly/headings/headings-largest-contentful-paint.json +++ b/bikeshed/spec-data/readonly/headings/headings-largest-contentful-paint.json @@ -69,15 +69,29 @@ "url": "https://www.w3.org/TR/largest-contentful-paint/#index-defined-here" } }, + "#informative": { + "current": { + "number": "", + "spec": "Largest Contentful Paint", + "text": "Informative References", + "url": "https://w3c.github.io/largest-contentful-paint/#informative" + }, + "snapshot": { + "number": "", + "spec": "Largest Contentful Paint", + "text": "Informative References", + "url": "https://www.w3.org/TR/largest-contentful-paint/#informative" + } + }, "#limitations": { "current": { - "number": "1.4", + "number": "1.3", "spec": "Largest Contentful Paint", "text": "Limitations", "url": "https://w3c.github.io/largest-contentful-paint/#limitations" }, "snapshot": { - "number": "1.4", + "number": "1.3", "spec": "Largest Contentful Paint", "text": "Limitations", "url": "https://www.w3.org/TR/largest-contentful-paint/#limitations" @@ -113,13 +127,13 @@ }, "#sec-add-lcp-entry": { "current": { - "number": "3.1", + "number": "4.4", "spec": "Largest Contentful Paint", "text": "Potentially add LargestContentfulPaint entry", "url": "https://w3c.github.io/largest-contentful-paint/#sec-add-lcp-entry" }, "snapshot": { - "number": "3.1", + "number": "4.4", "spec": "Largest Contentful Paint", "text": "Potentially add LargestContentfulPaint entry", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-add-lcp-entry" @@ -127,41 +141,41 @@ }, "#sec-create-entry": { "current": { - "number": "3.2", + "number": "4.5", "spec": "Largest Contentful Paint", "text": "Create a LargestContentfulPaint entry", "url": "https://w3c.github.io/largest-contentful-paint/#sec-create-entry" }, "snapshot": { - "number": "3.2", + "number": "4.5", "spec": "Largest Contentful Paint", "text": "Create a LargestContentfulPaint entry", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-create-entry" } }, - "#sec-elements-exposed": { + "#sec-effective-visual-size": { "current": { - "number": "1.1", + "number": "4.3", "spec": "Largest Contentful Paint", - "text": "Elements exposed", - "url": "https://w3c.github.io/largest-contentful-paint/#sec-elements-exposed" + "text": "Determine the effective visual size of an element", + "url": "https://w3c.github.io/largest-contentful-paint/#sec-effective-visual-size" }, "snapshot": { - "number": "1.1", + "number": "4.3", "spec": "Largest Contentful Paint", - "text": "Elements exposed", - "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-elements-exposed" + "text": "Determine the effective visual size of an element", + "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-effective-visual-size" } }, "#sec-example": { "current": { - "number": "1.3", + "number": "1.2", "spec": "Largest Contentful Paint", "text": "Usage example", "url": "https://w3c.github.io/largest-contentful-paint/#sec-example" }, "snapshot": { - "number": "1.3", + "number": "1.2", "spec": "Largest Contentful Paint", "text": "Usage example", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-example" @@ -183,13 +197,13 @@ }, "#sec-largest-content": { "current": { - "number": "1.2", + "number": "1.1", "spec": "Largest Contentful Paint", "text": "Largest content", "url": "https://w3c.github.io/largest-contentful-paint/#sec-largest-content" }, "snapshot": { - "number": "1.2", + "number": "1.1", "spec": "Largest Contentful Paint", "text": "Largest content", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-largest-content" @@ -197,13 +211,13 @@ }, "#sec-largest-contentful-paint": { "current": { - "number": "2", + "number": "3", "spec": "Largest Contentful Paint", "text": "Largest Contentful Paint", "url": "https://w3c.github.io/largest-contentful-paint/#sec-largest-contentful-paint" }, "snapshot": { - "number": "2", + "number": "3", "spec": "Largest Contentful Paint", "text": "Largest Contentful Paint", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-largest-contentful-paint" @@ -211,13 +225,13 @@ }, "#sec-largest-contentful-paint-interface": { "current": { - "number": "2.1", + "number": "3.1", "spec": "Largest Contentful Paint", "text": "LargestContentfulPaint interface", "url": "https://w3c.github.io/largest-contentful-paint/#sec-largest-contentful-paint-interface" }, "snapshot": { - "number": "2.1", + "number": "3.1", "spec": "Largest Contentful Paint", "text": "LargestContentfulPaint interface", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-largest-contentful-paint-interface" @@ -225,60 +239,74 @@ }, "#sec-modifications-DOM": { "current": { - "number": "3.3", + "number": "4.1", "spec": "Largest Contentful Paint", "text": "Modifications to the DOM specification", "url": "https://w3c.github.io/largest-contentful-paint/#sec-modifications-DOM" }, "snapshot": { - "number": "3.3", + "number": "4.1", "spec": "Largest Contentful Paint", "text": "Modifications to the DOM specification", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-modifications-DOM" } }, - "#sec-modifications-HTML": { + "#sec-processing-model": { "current": { - "number": "3.4", + "number": "4", "spec": "Largest Contentful Paint", - "text": "Modifications to the HTML specification", - "url": "https://w3c.github.io/largest-contentful-paint/#sec-modifications-HTML" + "text": "Processing model", + "url": "https://w3c.github.io/largest-contentful-paint/#sec-processing-model" }, "snapshot": { - "number": "3.4", + "number": "4", "spec": "Largest Contentful Paint", - "text": "Modifications to the HTML specification", - "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-modifications-HTML" + "text": "Processing model", + "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-processing-model" } }, - "#sec-processing-model": { + "#sec-report-largest-contentful-paint": { "current": { - "number": "3", + "number": "4.2", "spec": "Largest Contentful Paint", - "text": "Processing model", - "url": "https://w3c.github.io/largest-contentful-paint/#sec-processing-model" + "text": "Report Largest Contentful Paint", + "url": "https://w3c.github.io/largest-contentful-paint/#sec-report-largest-contentful-paint" }, "snapshot": { - "number": "3", + "number": "4.2", "spec": "Largest Contentful Paint", - "text": "Processing model", - "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-processing-model" + "text": "Report Largest Contentful Paint", + "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-report-largest-contentful-paint" } }, "#sec-security": { "current": { - "number": "4", + "number": "5", "spec": "Largest Contentful Paint", "text": "Security & privacy considerations", "url": "https://w3c.github.io/largest-contentful-paint/#sec-security" }, "snapshot": { - "number": "4", + "number": "5", "spec": "Largest Contentful Paint", "text": "Security & privacy considerations", "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-security" } }, + "#sec-terminology": { + "current": { + "number": "2", + "spec": "Largest Contentful Paint", + "text": "Terminology", + "url": "https://w3c.github.io/largest-contentful-paint/#sec-terminology" + }, + "snapshot": { + "number": "2", + "spec": "Largest Contentful Paint", + "text": "Terminology", + "url": "https://www.w3.org/TR/largest-contentful-paint/#sec-terminology" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-local-font-access.json b/bikeshed/spec-data/readonly/headings/headings-local-font-access.json index 65b533e6f5..524c803018 100644 --- a/bikeshed/spec-data/readonly/headings/headings-local-font-access.json +++ b/bikeshed/spec-data/readonly/headings/headings-local-font-access.json @@ -303,14 +303,6 @@ "url": "https://wicg.github.io/local-font-access/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Local Font Access", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/local-font-access/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-long-animation-frames.json b/bikeshed/spec-data/readonly/headings/headings-long-animation-frames.json new file mode 100644 index 0000000000..65906dd7c3 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-long-animation-frames.json @@ -0,0 +1,258 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Abstract", + "url": "https://w3c.github.io/long-animation-frames/#abstract" + } + }, + "#attack-scenarios": { + "current": { + "number": "5.2", + "spec": "Long Animation Frames API", + "text": "Attack Scenarios Considered", + "url": "https://w3c.github.io/long-animation-frames/#attack-scenarios" + } + }, + "#example": { + "current": { + "number": "1.1", + "spec": "Long Animation Frames API", + "text": "Usage Example", + "url": "https://w3c.github.io/long-animation-frames/#example" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "IDL Index", + "url": "https://w3c.github.io/long-animation-frames/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Index", + "url": "https://w3c.github.io/long-animation-frames/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/long-animation-frames/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/long-animation-frames/#index-defined-here" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Long Animation Frames API", + "text": "Introduction", + "url": "https://w3c.github.io/long-animation-frames/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Issues Index", + "url": "https://w3c.github.io/long-animation-frames/#issues-index" + } + }, + "#loaf-monitoring": { + "current": { + "number": "3.2.1", + "spec": "Long Animation Frames API", + "text": "Long Animation Frame Monitoring {#loaf-monitoring}", + "url": "https://w3c.github.io/long-animation-frames/#loaf-monitoring" + } + }, + "#loaf-opaque-scripts-sec": { + "current": { + "number": "5.4", + "spec": "Long Animation Frames API", + "text": "PerformanceScriptTiming and opaque scripts", + "url": "https://w3c.github.io/long-animation-frames/#loaf-opaque-scripts-sec" + } + }, + "#loaf-processing-model": { + "current": { + "number": "3.2", + "spec": "Long Animation Frames API", + "text": "Report Long Animation Frames", + "url": "https://w3c.github.io/long-animation-frames/#loaf-processing-model" + } + }, + "#loaf-sec-priv": { + "current": { + "number": "5.3", + "spec": "Long Animation Frames API", + "text": "Additional information exposed by the Long Animation Frames API", + "url": "https://w3c.github.io/long-animation-frames/#loaf-sec-priv" + } + }, + "#loaf-vs-longtasks": { + "current": { + "number": "1.2", + "spec": "Long Animation Frames API", + "text": "Long Animation Frames vs. Long Tasks", + "url": "https://w3c.github.io/long-animation-frames/#loaf-vs-longtasks" + } + }, + "#long-script-monitoring": { + "current": { + "number": "3.2.2", + "spec": "Long Animation Frames API", + "text": "Long Script Monitoring", + "url": "https://w3c.github.io/long-animation-frames/#long-script-monitoring" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Normative References", + "url": "https://w3c.github.io/long-animation-frames/#normative" + } + }, + "#other-standards": { + "current": { + "number": "4", + "spec": "Long Animation Frames API", + "text": "Additions to existing standards", + "url": "https://w3c.github.io/long-animation-frames/#other-standards" + } + }, + "#priv-sec": { + "current": { + "number": "5", + "spec": "Long Animation Frames API", + "text": "Security & privacy considerations", + "url": "https://w3c.github.io/long-animation-frames/#priv-sec" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "References", + "url": "https://w3c.github.io/long-animation-frames/#references" + } + }, + "#sec-PerformanceLongAnimationFrameTiming": { + "current": { + "number": "2.1", + "spec": "Long Animation Frames API", + "text": "PerformanceLongAnimationFrameTiming interface", + "url": "https://w3c.github.io/long-animation-frames/#sec-PerformanceLongAnimationFrameTiming" + } + }, + "#sec-PerformanceScriptTiming": { + "current": { + "number": "2.2", + "spec": "Long Animation Frames API", + "text": "PerformanceScriptTiming interface", + "url": "https://w3c.github.io/long-animation-frames/#sec-PerformanceScriptTiming" + } + }, + "#sec-frame-timing-info": { + "current": { + "number": "3.1", + "spec": "Long Animation Frames API", + "text": "Frame Timing Info", + "url": "https://w3c.github.io/long-animation-frames/#sec-frame-timing-info" + } + }, + "#sec-loaf-timing": { + "current": { + "number": "2", + "spec": "Long Animation Frames API", + "text": "Long Animation Frame Timing", + "url": "https://w3c.github.io/long-animation-frames/#sec-loaf-timing" + } + }, + "#sec-processing-model": { + "current": { + "number": "3", + "spec": "Long Animation Frames API", + "text": "Processing model", + "url": "https://w3c.github.io/long-animation-frames/#sec-processing-model" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Status of this document", + "url": "https://w3c.github.io/long-animation-frames/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Long Animation Frames API", + "url": "https://w3c.github.io/long-animation-frames/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Table of Contents", + "url": "https://w3c.github.io/long-animation-frames/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Conformance", + "url": "https://w3c.github.io/long-animation-frames/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/long-animation-frames/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Long Animation Frames API", + "text": "Document conventions", + "url": "https://w3c.github.io/long-animation-frames/#w3c-conventions" + } + }, + "#webidl-monkey-patches": { + "current": { + "number": "4.1", + "spec": "Long Animation Frames API", + "text": "Monkey-patches to the WebIDL standard", + "url": "https://w3c.github.io/long-animation-frames/#webidl-monkey-patches" + } + }, + "#what-is-exposed": { + "current": { + "number": "5.1", + "spec": "Long Animation Frames API", + "text": "What is Exposed to Observers?", + "url": "https://w3c.github.io/long-animation-frames/#what-is-exposed" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-longtasks-1.json b/bikeshed/spec-data/readonly/headings/headings-longtasks-1.json index f0b6ad8d30..5e5181850c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-longtasks-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-longtasks-1.json @@ -2,81 +2,55 @@ "#abstract": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Abstract", "url": "https://w3c.github.io/longtasks/#abstract" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Abstract", "url": "https://www.w3.org/TR/longtasks-1/#abstract" } }, - "#acknowledgements": { - "snapshot": { - "number": "6", - "spec": "Long Tasks API 1", - "text": "Acknowledgements", - "url": "https://www.w3.org/TR/longtasks-1/#acknowledgements" - } - }, "#attack-scenarios": { "current": { "number": "5.2", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Attack Scenarios Considered", "url": "https://w3c.github.io/longtasks/#attack-scenarios" + }, + "snapshot": { + "number": "5.2", + "spec": "Long Tasks API", + "text": "Attack Scenarios Considered", + "url": "https://www.w3.org/TR/longtasks-1/#attack-scenarios" } }, "#example": { "current": { "number": "1.1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Usage Example", "url": "https://w3c.github.io/longtasks/#example" }, "snapshot": { "number": "1.1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Usage Example", "url": "https://www.w3.org/TR/longtasks-1/#example" } }, - "#html-calling-scripts": { - "snapshot": { - "number": "4.1.3", - "spec": "Long Tasks API 1", - "text": "HTML: calling scripts", - "url": "https://www.w3.org/TR/longtasks-1/#html-calling-scripts" - } - }, - "#html-event-loop-dfn": { - "snapshot": { - "number": "4.1.1", - "spec": "Long Tasks API 1", - "text": "HTML: event loop definitions", - "url": "https://www.w3.org/TR/longtasks-1/#html-event-loop-dfn" - } - }, - "#html-event-loop-processing": { - "snapshot": { - "number": "4.1.2", - "spec": "Long Tasks API 1", - "text": "HTML: event loop processing model", - "url": "https://www.w3.org/TR/longtasks-1/#html-event-loop-processing" - } - }, "#idl-index": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "IDL Index", "url": "https://w3c.github.io/longtasks/#idl-index" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "IDL Index", "url": "https://www.w3.org/TR/longtasks-1/#idl-index" } @@ -84,13 +58,13 @@ "#index": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Index", "url": "https://w3c.github.io/longtasks/#index" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Index", "url": "https://www.w3.org/TR/longtasks-1/#index" } @@ -98,13 +72,13 @@ "#index-defined-elsewhere": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Terms defined by reference", "url": "https://w3c.github.io/longtasks/#index-defined-elsewhere" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Terms defined by reference", "url": "https://www.w3.org/TR/longtasks-1/#index-defined-elsewhere" } @@ -112,13 +86,13 @@ "#index-defined-here": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Terms defined by this specification", "url": "https://w3c.github.io/longtasks/#index-defined-here" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Terms defined by this specification", "url": "https://www.w3.org/TR/longtasks-1/#index-defined-here" } @@ -126,13 +100,13 @@ "#intro": { "current": { "number": "1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Introduction", "url": "https://w3c.github.io/longtasks/#intro" }, "snapshot": { "number": "1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Introduction", "url": "https://www.w3.org/TR/longtasks-1/#intro" } @@ -140,29 +114,27 @@ "#issues-index": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Issues Index", "url": "https://w3c.github.io/longtasks/#issues-index" - } - }, - "#mod": { + }, "snapshot": { - "number": "4.1", - "spec": "Long Tasks API 1", - "text": "Modifications to other specifications", - "url": "https://www.w3.org/TR/longtasks-1/#mod" + "number": "", + "spec": "Long Tasks API", + "text": "Issues Index", + "url": "https://www.w3.org/TR/longtasks-1/#issues-index" } }, "#normative": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Normative References", "url": "https://w3c.github.io/longtasks/#normative" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Normative References", "url": "https://www.w3.org/TR/longtasks-1/#normative" } @@ -170,27 +142,27 @@ "#priv-sec": { "current": { "number": "5", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Security & privacy considerations", "url": "https://w3c.github.io/longtasks/#priv-sec" }, "snapshot": { "number": "5", - "spec": "Long Tasks API 1", - "text": "Security & Privacy Considerations", + "spec": "Long Tasks API", + "text": "Security & privacy considerations", "url": "https://www.w3.org/TR/longtasks-1/#priv-sec" } }, "#references": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "References", "url": "https://w3c.github.io/longtasks/#references" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "References", "url": "https://www.w3.org/TR/longtasks-1/#references" } @@ -198,27 +170,27 @@ "#report-long-tasks": { "current": { "number": "4.1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Report long tasks", "url": "https://w3c.github.io/longtasks/#report-long-tasks" }, "snapshot": { - "number": "4.2.1", - "spec": "Long Tasks API 1", - "text": "Report Long Tasks", + "number": "4.1", + "spec": "Long Tasks API", + "text": "Report long tasks", "url": "https://www.w3.org/TR/longtasks-1/#report-long-tasks" } }, "#sec-PerformanceLongTaskTiming": { "current": { "number": "3.1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "PerformanceLongTaskTiming interface", "url": "https://w3c.github.io/longtasks/#sec-PerformanceLongTaskTiming" }, "snapshot": { "number": "3.1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "PerformanceLongTaskTiming interface", "url": "https://www.w3.org/TR/longtasks-1/#sec-PerformanceLongTaskTiming" } @@ -226,13 +198,13 @@ "#sec-PointingToCulprit": { "current": { "number": "3.3", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Pointing to the culprit", "url": "https://w3c.github.io/longtasks/#sec-PointingToCulprit" }, "snapshot": { "number": "3.3", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Pointing to the culprit", "url": "https://www.w3.org/TR/longtasks-1/#sec-PointingToCulprit" } @@ -240,35 +212,27 @@ "#sec-TaskAttributionTiming": { "current": { "number": "3.2", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "TaskAttributionTiming interface", "url": "https://w3c.github.io/longtasks/#sec-TaskAttributionTiming" }, "snapshot": { "number": "3.2", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "TaskAttributionTiming interface", "url": "https://www.w3.org/TR/longtasks-1/#sec-TaskAttributionTiming" } }, - "#sec-additions-to-spec": { - "snapshot": { - "number": "4.2", - "spec": "Long Tasks API 1", - "text": "Additions to the Long Task Spec", - "url": "https://www.w3.org/TR/longtasks-1/#sec-additions-to-spec" - } - }, "#sec-longtask-timing": { "current": { "number": "3", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Long Task Timing", "url": "https://w3c.github.io/longtasks/#sec-longtask-timing" }, "snapshot": { "number": "3", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Long Task Timing", "url": "https://www.w3.org/TR/longtasks-1/#sec-longtask-timing" } @@ -276,27 +240,27 @@ "#sec-processing-model": { "current": { "number": "4", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Processing model", "url": "https://w3c.github.io/longtasks/#sec-processing-model" }, "snapshot": { "number": "4", - "spec": "Long Tasks API 1", - "text": "Processing Model", + "spec": "Long Tasks API", + "text": "Processing model", "url": "https://www.w3.org/TR/longtasks-1/#sec-processing-model" } }, "#sec-terminology": { "current": { "number": "2", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Terminology", "url": "https://w3c.github.io/longtasks/#sec-terminology" }, "snapshot": { "number": "2", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Terminology", "url": "https://www.w3.org/TR/longtasks-1/#sec-terminology" } @@ -304,51 +268,41 @@ "#sotd": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Status of this document", "url": "https://w3c.github.io/longtasks/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Status of this document", - "url": "https://www.w3.org/TR/longtasks-1/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "Long Tasks API 1", - "text": "W3C First Public Working Draft, 7 September 2017", - "url": "https://www.w3.org/TR/longtasks-1/#subtitle" + "url": "https://www.w3.org/TR/longtasks-1/#sotd" } }, "#title": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Long Tasks API", "url": "https://w3c.github.io/longtasks/#title" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", - "text": "Long Tasks API 1", + "spec": "Long Tasks API", + "text": "Long Tasks API", "url": "https://www.w3.org/TR/longtasks-1/#title" } }, "#toc": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Table of Contents", "url": "https://w3c.github.io/longtasks/#toc" }, "snapshot": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Table of Contents", "url": "https://www.w3.org/TR/longtasks-1/#toc" } @@ -356,33 +310,57 @@ "#w3c-conformance": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Conformance", "url": "https://w3c.github.io/longtasks/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Long Tasks API", + "text": "Conformance", + "url": "https://www.w3.org/TR/longtasks-1/#w3c-conformance" } }, "#w3c-conformant-algorithms": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Conformant Algorithms", "url": "https://w3c.github.io/longtasks/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Long Tasks API", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/longtasks-1/#w3c-conformant-algorithms" } }, "#w3c-conventions": { "current": { "number": "", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "Document conventions", "url": "https://w3c.github.io/longtasks/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Long Tasks API", + "text": "Document conventions", + "url": "https://www.w3.org/TR/longtasks-1/#w3c-conventions" } }, "#what-is-exposed": { "current": { "number": "5.1", - "spec": "Long Tasks API 1", + "spec": "Long Tasks API", "text": "What is Exposed to Observers?", "url": "https://w3c.github.io/longtasks/#what-is-exposed" + }, + "snapshot": { + "number": "5.1", + "spec": "Long Tasks API", + "text": "What is Exposed to Observers?", + "url": "https://www.w3.org/TR/longtasks-1/#what-is-exposed" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-magnetometer.json b/bikeshed/spec-data/readonly/headings/headings-magnetometer.json index d3e1b9561c..2c3e61e06d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-magnetometer.json +++ b/bikeshed/spec-data/readonly/headings/headings-magnetometer.json @@ -15,13 +15,13 @@ }, "#abstract-opertaions": { "current": { - "number": "6", + "number": "7", "spec": "Magnetometer", "text": "Abstract Operations", "url": "https://w3c.github.io/magnetometer/#abstract-opertaions" }, "snapshot": { - "number": "6", + "number": "7", "spec": "Magnetometer", "text": "Abstract Operations", "url": "https://www.w3.org/TR/magnetometer/#abstract-opertaions" @@ -31,25 +31,25 @@ "current": { "number": "", "spec": "Magnetometer", - "text": "11. Acknowledgements", + "text": "12. Acknowledgements", "url": "https://w3c.github.io/magnetometer/#acknowledgements" }, "snapshot": { "number": "", "spec": "Magnetometer", - "text": "11. Acknowledgements", + "text": "12. Acknowledgements", "url": "https://www.w3.org/TR/magnetometer/#acknowledgements" } }, "#api": { "current": { - "number": "5", + "number": "6", "spec": "Magnetometer", "text": "API", "url": "https://w3c.github.io/magnetometer/#api" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Magnetometer", "text": "API", "url": "https://www.w3.org/TR/magnetometer/#api" @@ -57,13 +57,13 @@ }, "#automation": { "current": { - "number": "7", + "number": "8", "spec": "Magnetometer", "text": "Automation", "url": "https://w3c.github.io/magnetometer/#automation" }, "snapshot": { - "number": "7", + "number": "8", "spec": "Magnetometer", "text": "Automation", "url": "https://www.w3.org/TR/magnetometer/#automation" @@ -73,13 +73,13 @@ "current": { "number": "", "spec": "Magnetometer", - "text": "10. Compass Heading Using Magnetometers", + "text": "11. Compass Heading Using Magnetometers", "url": "https://w3c.github.io/magnetometer/#compass" }, "snapshot": { "number": "", "spec": "Magnetometer", - "text": "10. Compass Heading Using Magnetometers", + "text": "11. Compass Heading Using Magnetometers", "url": "https://www.w3.org/TR/magnetometer/#compass" } }, @@ -87,25 +87,25 @@ "current": { "number": "", "spec": "Magnetometer", - "text": "12. Conformance", + "text": "13. Conformance", "url": "https://w3c.github.io/magnetometer/#conformance" }, "snapshot": { "number": "", "spec": "Magnetometer", - "text": "12. Conformance", + "text": "13. Conformance", "url": "https://www.w3.org/TR/magnetometer/#conformance" } }, "#construct-a-magnetometer-object": { "current": { - "number": "6.1", + "number": "7.1", "spec": "Magnetometer", "text": "Construct a magnetometer object", "url": "https://w3c.github.io/magnetometer/#construct-a-magnetometer-object" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "Magnetometer", "text": "Construct a magnetometer object", "url": "https://www.w3.org/TR/magnetometer/#construct-a-magnetometer-object" @@ -211,27 +211,41 @@ }, "#limitations-magnetometer": { "current": { - "number": "8", + "number": "9", "spec": "Magnetometer", "text": "Limitations of Magnetometer Sensors", "url": "https://w3c.github.io/magnetometer/#limitations-magnetometer" }, "snapshot": { - "number": "8", + "number": "9", "spec": "Magnetometer", "text": "Limitations of Magnetometer Sensors", "url": "https://www.w3.org/TR/magnetometer/#limitations-magnetometer" } }, + "#magnetometer-automation": { + "current": { + "number": "8.1", + "spec": "Magnetometer", + "text": "Magnetometer automation", + "url": "https://w3c.github.io/magnetometer/#magnetometer-automation" + }, + "snapshot": { + "number": "8.1", + "spec": "Magnetometer", + "text": "Magnetometer automation", + "url": "https://www.w3.org/TR/magnetometer/#magnetometer-automation" + } + }, "#magnetometer-interface": { "current": { - "number": "5.1", + "number": "6.1", "spec": "Magnetometer", "text": "The Magnetometer Interface", "url": "https://w3c.github.io/magnetometer/#magnetometer-interface" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "Magnetometer", "text": "The Magnetometer Interface", "url": "https://www.w3.org/TR/magnetometer/#magnetometer-interface" @@ -239,13 +253,13 @@ }, "#magnetometer-x": { "current": { - "number": "5.1.1", + "number": "6.1.1", "spec": "Magnetometer", "text": "Magnetometer.x", "url": "https://w3c.github.io/magnetometer/#magnetometer-x" }, "snapshot": { - "number": "5.1.1", + "number": "6.1.1", "spec": "Magnetometer", "text": "Magnetometer.x", "url": "https://www.w3.org/TR/magnetometer/#magnetometer-x" @@ -253,13 +267,13 @@ }, "#magnetometer-y": { "current": { - "number": "5.1.2", + "number": "6.1.2", "spec": "Magnetometer", "text": "Magnetometer.y", "url": "https://w3c.github.io/magnetometer/#magnetometer-y" }, "snapshot": { - "number": "5.1.2", + "number": "6.1.2", "spec": "Magnetometer", "text": "Magnetometer.y", "url": "https://www.w3.org/TR/magnetometer/#magnetometer-y" @@ -267,41 +281,27 @@ }, "#magnetometer-z": { "current": { - "number": "5.1.3", + "number": "6.1.3", "spec": "Magnetometer", "text": "Magnetometer.z", "url": "https://w3c.github.io/magnetometer/#magnetometer-z" }, "snapshot": { - "number": "5.1.3", + "number": "6.1.3", "spec": "Magnetometer", "text": "Magnetometer.z", "url": "https://www.w3.org/TR/magnetometer/#magnetometer-z" } }, - "#mock-magnetometer-type": { - "current": { - "number": "7.1", - "spec": "Magnetometer", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/magnetometer/#mock-magnetometer-type" - }, - "snapshot": { - "number": "7.1", - "spec": "Magnetometer", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/magnetometer/#mock-magnetometer-type" - } - }, "#model": { "current": { - "number": "4", + "number": "5", "spec": "Magnetometer", "text": "Model", "url": "https://w3c.github.io/magnetometer/#model" }, "snapshot": { - "number": "4", + "number": "5", "spec": "Magnetometer", "text": "Model", "url": "https://www.w3.org/TR/magnetometer/#model" @@ -321,15 +321,29 @@ "url": "https://www.w3.org/TR/magnetometer/#normative" } }, + "#permissions-policy-integration": { + "current": { + "number": "4", + "spec": "Magnetometer", + "text": "Permissions Policy integration", + "url": "https://w3c.github.io/magnetometer/#permissions-policy-integration" + }, + "snapshot": { + "number": "4", + "spec": "Magnetometer", + "text": "Permissions Policy integration", + "url": "https://www.w3.org/TR/magnetometer/#permissions-policy-integration" + } + }, "#reference-frame": { "current": { - "number": "4.1", + "number": "5.1", "spec": "Magnetometer", "text": "Reference Frame", "url": "https://w3c.github.io/magnetometer/#reference-frame" }, "snapshot": { - "number": "4.1", + "number": "5.1", "spec": "Magnetometer", "text": "Reference Frame", "url": "https://www.w3.org/TR/magnetometer/#reference-frame" @@ -405,29 +419,57 @@ "url": "https://www.w3.org/TR/magnetometer/#toc" } }, + "#uncalibrated-magnetometer-automation": { + "current": { + "number": "8.2", + "spec": "Magnetometer", + "text": "Uncalibrated Magnetometer automation", + "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-automation" + }, + "snapshot": { + "number": "8.2", + "spec": "Magnetometer", + "text": "Uncalibrated Magnetometer automation", + "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-automation" + } + }, "#uncalibrated-magnetometer-interface": { "current": { - "number": "5.2", + "number": "6.2", "spec": "Magnetometer", "text": "The UncalibratedMagnetometer Interface", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-interface" }, "snapshot": { - "number": "5.2", + "number": "6.2", "spec": "Magnetometer", "text": "The UncalibratedMagnetometer Interface", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-interface" } }, + "#uncalibrated-magnetometer-reading-parsing-algorithm": { + "current": { + "number": "8.2.1", + "spec": "Magnetometer", + "text": "Uncalibrated Magnetometer reading parsing algorithm", + "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-reading-parsing-algorithm" + }, + "snapshot": { + "number": "8.2.1", + "spec": "Magnetometer", + "text": "Uncalibrated Magnetometer reading parsing algorithm", + "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-reading-parsing-algorithm" + } + }, "#uncalibrated-magnetometer-x": { "current": { - "number": "5.2.1", + "number": "6.2.1", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.x", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-x" }, "snapshot": { - "number": "5.2.1", + "number": "6.2.1", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.x", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-x" @@ -435,13 +477,13 @@ }, "#uncalibrated-magnetometer-xBias": { "current": { - "number": "5.2.4", + "number": "6.2.4", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.xBias", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-xBias" }, "snapshot": { - "number": "5.2.4", + "number": "6.2.4", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.xBias", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-xBias" @@ -449,13 +491,13 @@ }, "#uncalibrated-magnetometer-y": { "current": { - "number": "5.2.2", + "number": "6.2.2", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.y", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-y" }, "snapshot": { - "number": "5.2.2", + "number": "6.2.2", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.y", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-y" @@ -463,13 +505,13 @@ }, "#uncalibrated-magnetometer-yBias": { "current": { - "number": "5.2.5", + "number": "6.2.5", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.yBias", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-yBias" }, "snapshot": { - "number": "5.2.5", + "number": "6.2.5", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.yBias", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-yBias" @@ -477,13 +519,13 @@ }, "#uncalibrated-magnetometer-z": { "current": { - "number": "5.2.3", + "number": "6.2.3", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.z", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-z" }, "snapshot": { - "number": "5.2.3", + "number": "6.2.3", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.z", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-z" @@ -491,13 +533,13 @@ }, "#uncalibrated-magnetometer-zBias": { "current": { - "number": "5.2.6", + "number": "6.2.6", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.zBias", "url": "https://w3c.github.io/magnetometer/#uncalibrated-magnetometer-zBias" }, "snapshot": { - "number": "5.2.6", + "number": "6.2.6", "spec": "Magnetometer", "text": "UncalibratedMagnetometer.zBias", "url": "https://www.w3.org/TR/magnetometer/#uncalibrated-magnetometer-zBias" @@ -505,15 +547,15 @@ }, "#usecases-and-requirements": { "current": { - "number": "9", + "number": "", "spec": "Magnetometer", - "text": "Use Cases and Requirements", + "text": "10. Use Cases and Requirements", "url": "https://w3c.github.io/magnetometer/#usecases-and-requirements" }, "snapshot": { - "number": "9", + "number": "", "spec": "Magnetometer", - "text": "Use Cases and Requirements", + "text": "10. Use Cases and Requirements", "url": "https://www.w3.org/TR/magnetometer/#usecases-and-requirements" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-managed-configuration.json b/bikeshed/spec-data/readonly/headings/headings-managed-configuration.json new file mode 100644 index 0000000000..17ae0ffcd6 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-managed-configuration.json @@ -0,0 +1,210 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Abstract", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#abstract" + } + }, + "#data-integrity-verification": { + "current": { + "number": "1.4", + "spec": "Managed Configuration API", + "text": "Data integrity verification", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#data-integrity-verification" + } + }, + "#data-model-section": { + "current": { + "number": "1.3", + "spec": "Managed Configuration API", + "text": "Data model", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#data-model-section" + } + }, + "#getmanagedconfiguration-method": { + "current": { + "number": "3.1", + "spec": "Managed Configuration API", + "text": "getManagedConfiguration() method", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#getmanagedconfiguration-method" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "IDL Index", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Index", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#index-defined-here" + } + }, + "#managed-attribute": { + "current": { + "number": "2.1", + "spec": "Managed Configuration API", + "text": "managed attribute", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#managed-attribute" + } + }, + "#managed-configuration": { + "current": { + "number": "1.2", + "spec": "Managed Configuration API", + "text": "Managed configuration", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#managed-configuration" + } + }, + "#managed-devices": { + "current": { + "number": "1.1", + "spec": "Managed Configuration API", + "text": "Managed devices", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#managed-devices" + } + }, + "#model": { + "current": { + "number": "1", + "spec": "Managed Configuration API", + "text": "Model", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#model" + } + }, + "#navigator-extensions": { + "current": { + "number": "2", + "spec": "Managed Configuration API", + "text": "Extensions to the Navigator interface", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#navigator-extensions" + } + }, + "#navigatormanageddata-interface": { + "current": { + "number": "3", + "spec": "Managed Configuration API", + "text": "NavigatorManagedData interface", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#navigatormanageddata-interface" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Normative References", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#normative" + } + }, + "#onmanagedconfigurationchange-attribute": { + "current": { + "number": "3.2", + "spec": "Managed Configuration API", + "text": "onmanagedconfigurationchange attribute", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#onmanagedconfigurationchange-attribute" + } + }, + "#privacy-considerations": { + "current": { + "number": "5", + "spec": "Managed Configuration API", + "text": "Privacy considerations", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#privacy-considerations" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Draft Community Group Report, 18 July 2021", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#profile-and-date" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "References", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#references" + } + }, + "#security-considerations": { + "current": { + "number": "4", + "spec": "Managed Configuration API", + "text": "Security considerations", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#security-considerations" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Status of this document", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#status" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Managed Configuration API", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Table of Contents", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Conformance", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Conformant Algorithms", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Managed Configuration API", + "text": "Document conventions", + "url": "https://wicg.github.io/WebApiDevice/managed_config/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-manifest-app-info.json b/bikeshed/spec-data/readonly/headings/headings-manifest-app-info.json index 6f56f0a154..93dca72f60 100644 --- a/bikeshed/spec-data/readonly/headings/headings-manifest-app-info.json +++ b/bikeshed/spec-data/readonly/headings/headings-manifest-app-info.json @@ -43,13 +43,13 @@ }, "#form_factor-member": { "current": { - "number": "4", + "number": "3.3", "spec": "Web App Manifest - Application Information", "text": "form_factor member", "url": "https://w3c.github.io/manifest-app-info/#form_factor-member" }, "snapshot": { - "number": "4", + "number": "3.3", "spec": "Web App Manifest - Application Information", "text": "form_factor member", "url": "https://www.w3.org/TR/manifest-app-info/#form_factor-member" diff --git a/bikeshed/spec-data/readonly/headings/headings-manifest-incubations.json b/bikeshed/spec-data/readonly/headings/headings-manifest-incubations.json index 7fce8ad1f1..a9947176ef 100644 --- a/bikeshed/spec-data/readonly/headings/headings-manifest-incubations.json +++ b/bikeshed/spec-data/readonly/headings/headings-manifest-incubations.json @@ -1,7 +1,7 @@ { "#accept-member": { "current": { - "number": "5.1.4", + "number": "7.1.4", "spec": "Manifest Incubations", "text": "accept member", "url": "https://wicg.github.io/manifest-incubations/#accept-member" @@ -9,7 +9,7 @@ }, "#action-member": { "current": { - "number": "5.1.1", + "number": "7.1.1", "spec": "Manifest Incubations", "text": "action member", "url": "https://wicg.github.io/manifest-incubations/#action-member" @@ -17,7 +17,7 @@ }, "#appbannerpromptoutcome-enum": { "current": { - "number": "8.1.3", + "number": "10.1.3", "spec": "Manifest Incubations", "text": "AppBannerPromptOutcome enum", "url": "https://wicg.github.io/manifest-incubations/#appbannerpromptoutcome-enum" @@ -25,20 +25,44 @@ }, "#beforeinstallpromptevent-interface": { "current": { - "number": "8.1", + "number": "10.1", "spec": "Manifest Incubations", "text": "BeforeInstallPromptEvent Interface", "url": "https://wicg.github.io/manifest-incubations/#beforeinstallpromptevent-interface" } }, + "#concepts": { + "current": { + "number": "1.1", + "spec": "Manifest Incubations", + "text": "Concepts", + "url": "https://wicg.github.io/manifest-incubations/#concepts" + } + }, "#conformance": { "current": { - "number": "9", + "number": "", "spec": "Manifest Incubations", - "text": "Conformance", + "text": "11. Conformance", "url": "https://wicg.github.io/manifest-incubations/#conformance" } }, + "#defining-draggable-regions": { + "current": { + "number": "1.3", + "spec": "Manifest Incubations", + "text": "Defining draggable regions", + "url": "https://wicg.github.io/manifest-incubations/#defining-draggable-regions" + } + }, + "#display-mode-extensions": { + "current": { + "number": "1.2", + "spec": "Manifest Incubations", + "text": "Display mode extensions", + "url": "https://wicg.github.io/manifest-incubations/#display-mode-extensions" + } + }, "#display_override-member": { "current": { "number": "1", @@ -47,9 +71,25 @@ "url": "https://wicg.github.io/manifest-incubations/#display_override-member" } }, + "#display_override-usage-example": { + "current": { + "number": "1.2.1", + "spec": "Manifest Incubations", + "text": "display_override usage example", + "url": "https://wicg.github.io/manifest-incubations/#display_override-usage-example" + } + }, + "#every-window-has-a-home-tab": { + "current": { + "number": "3.1.1", + "spec": "Manifest Incubations", + "text": "Every window has a home tab", + "url": "https://wicg.github.io/manifest-incubations/#every-window-has-a-home-tab" + } + }, "#example-manifest-with-file-handlers": { "current": { - "number": "5.7", + "number": "7.7", "spec": "Manifest Incubations", "text": "Example manifest with file handlers", "url": "https://wicg.github.io/manifest-incubations/#example-manifest-with-file-handlers" @@ -57,15 +97,23 @@ }, "#execute-a-file-handler-launch": { "current": { - "number": "5.3", + "number": "7.3", "spec": "Manifest Incubations", "text": "Execute a file handler launch", "url": "https://wicg.github.io/manifest-incubations/#execute-a-file-handler-launch" } }, + "#extensions-to-processing-the-manifest": { + "current": { + "number": "2", + "spec": "Manifest Incubations", + "text": "Extensions to processing the manifest", + "url": "https://wicg.github.io/manifest-incubations/#extensions-to-processing-the-manifest" + } + }, "#extensions-to-the-window-object": { "current": { - "number": "8.2", + "number": "10.2", "spec": "Manifest Incubations", "text": "Extensions to the Window object", "url": "https://wicg.github.io/manifest-incubations/#extensions-to-the-window-object" @@ -73,7 +121,7 @@ }, "#file-handler-items": { "current": { - "number": "5.1", + "number": "7.1", "spec": "Manifest Incubations", "text": "File Handler Items", "url": "https://wicg.github.io/manifest-incubations/#file-handler-items" @@ -81,7 +129,7 @@ }, "#file_handlers-member": { "current": { - "number": "5", + "number": "7", "spec": "Manifest Incubations", "text": "file_handlers member", "url": "https://wicg.github.io/manifest-incubations/#file_handlers-member" @@ -89,15 +137,31 @@ }, "#handling-a-protocol-launch": { "current": { - "number": "4.2.3", + "number": "6.2.3", "spec": "Manifest Incubations", "text": "Handling a protocol launch", "url": "https://wicg.github.io/manifest-incubations/#handling-a-protocol-launch" } }, + "#home-tab-invariants": { + "current": { + "number": "3.1.3", + "spec": "Manifest Incubations", + "text": "Home tab invariants", + "url": "https://wicg.github.io/manifest-incubations/#home-tab-invariants" + } + }, + "#home_tab-member": { + "current": { + "number": "3.1", + "spec": "Manifest Incubations", + "text": "home_tab member", + "url": "https://wicg.github.io/manifest-incubations/#home_tab-member" + } + }, "#icons-member": { "current": { - "number": "5.1.3", + "number": "7.1.3", "spec": "Manifest Incubations", "text": "icons member", "url": "https://wicg.github.io/manifest-incubations/#icons-member" @@ -105,7 +169,7 @@ }, "#installability-signals-0": { "current": { - "number": "7.2", + "number": "9.2", "spec": "Manifest Incubations", "text": "Installability signals", "url": "https://wicg.github.io/manifest-incubations/#installability-signals-0" @@ -113,7 +177,7 @@ }, "#installable-web-applications": { "current": { - "number": "7", + "number": "9", "spec": "Manifest Incubations", "text": "Installable web applications", "url": "https://wicg.github.io/manifest-incubations/#installable-web-applications" @@ -121,15 +185,15 @@ }, "#installation-events": { "current": { - "number": "8", + "number": "", "spec": "Manifest Incubations", - "text": "Installation Events", + "text": "10. Installation Events", "url": "https://wicg.github.io/manifest-incubations/#installation-events" } }, "#installation-process": { "current": { - "number": "7.1", + "number": "9.1", "spec": "Manifest Incubations", "text": "Installation process", "url": "https://wicg.github.io/manifest-incubations/#installation-process" @@ -137,7 +201,7 @@ }, "#installation-prompts": { "current": { - "number": "6", + "number": "8", "spec": "Manifest Incubations", "text": "Installation prompts", "url": "https://wicg.github.io/manifest-incubations/#installation-prompts" @@ -145,7 +209,7 @@ }, "#launch_type-member": { "current": { - "number": "5.1.5", + "number": "7.1.5", "spec": "Manifest Incubations", "text": "launch_type member", "url": "https://wicg.github.io/manifest-incubations/#launch_type-member" @@ -153,7 +217,7 @@ }, "#launching-the-new_note_url": { "current": { - "number": "3.5", + "number": "5.5", "spec": "Manifest Incubations", "text": "Launching the new_note_url", "url": "https://wicg.github.io/manifest-incubations/#launching-the-new_note_url" @@ -161,20 +225,36 @@ }, "#name-member": { "current": { - "number": "5.1.2", + "number": "7.1.2", "spec": "Manifest Incubations", "text": "name member", "url": "https://wicg.github.io/manifest-incubations/#name-member" } }, + "#navigations-concerning-the-home-tab-scope": { + "current": { + "number": "3.1.2", + "spec": "Manifest Incubations", + "text": "Navigations concerning the home tab scope", + "url": "https://wicg.github.io/manifest-incubations/#navigations-concerning-the-home-tab-scope" + } + }, "#new_note_url-member": { "current": { - "number": "3.1", + "number": "5.1", "spec": "Manifest Incubations", "text": "new_note_url member", "url": "https://wicg.github.io/manifest-incubations/#new_note_url-member" } }, + "#new_tab_button-member": { + "current": { + "number": "3.2", + "spec": "Manifest Incubations", + "text": "new_tab_button member", + "url": "https://wicg.github.io/manifest-incubations/#new_tab_button-member" + } + }, "#normative-references": { "current": { "number": "A.1", @@ -185,7 +265,7 @@ }, "#note_taking-member": { "current": { - "number": "3", + "number": "5", "spec": "Manifest Incubations", "text": "note_taking member", "url": "https://wicg.github.io/manifest-incubations/#note_taking-member" @@ -193,7 +273,7 @@ }, "#onappinstalled-attribute": { "current": { - "number": "8.2.1", + "number": "10.2.1", "spec": "Manifest Incubations", "text": "onappinstalled attribute", "url": "https://wicg.github.io/manifest-incubations/#onappinstalled-attribute" @@ -201,7 +281,7 @@ }, "#onbeforeinstallprompt-attribute": { "current": { - "number": "8.2.2", + "number": "10.2.2", "spec": "Manifest Incubations", "text": "onbeforeinstallprompt attribute", "url": "https://wicg.github.io/manifest-incubations/#onbeforeinstallprompt-attribute" @@ -209,7 +289,7 @@ }, "#privacy-consideration-default-file-handler": { "current": { - "number": "5.5", + "number": "7.5", "spec": "Manifest Incubations", "text": "Privacy consideration: Default file handler.", "url": "https://wicg.github.io/manifest-incubations/#privacy-consideration-default-file-handler" @@ -217,7 +297,7 @@ }, "#privacy-consideration-default-protocol-handler": { "current": { - "number": "4.3", + "number": "6.3", "spec": "Manifest Incubations", "text": "Privacy consideration: Default protocol handler", "url": "https://wicg.github.io/manifest-incubations/#privacy-consideration-default-protocol-handler" @@ -225,7 +305,7 @@ }, "#privacy-consideration-name-and-icon": { "current": { - "number": "5.6", + "number": "7.6", "spec": "Manifest Incubations", "text": "Privacy consideration: Name and icon.", "url": "https://wicg.github.io/manifest-incubations/#privacy-consideration-name-and-icon" @@ -233,23 +313,39 @@ }, "#processing-file-handler-items": { "current": { - "number": "5.2", + "number": "7.2", "spec": "Manifest Incubations", "text": "Processing file handler items", "url": "https://wicg.github.io/manifest-incubations/#processing-file-handler-items" } }, + "#processing-the-home_tab-member": { + "current": { + "number": "3.3.1", + "spec": "Manifest Incubations", + "text": "Processing the home_tab member", + "url": "https://wicg.github.io/manifest-incubations/#processing-the-home_tab-member" + } + }, "#processing-the-new_note_url-member": { "current": { - "number": "3.4", + "number": "5.4", "spec": "Manifest Incubations", "text": "Processing the new_note_url member", "url": "https://wicg.github.io/manifest-incubations/#processing-the-new_note_url-member" } }, + "#processing-the-new_tab_button-member": { + "current": { + "number": "3.3.2", + "spec": "Manifest Incubations", + "text": "Processing the new_tab_button member", + "url": "https://wicg.github.io/manifest-incubations/#processing-the-new_tab_button-member" + } + }, "#processing-the-note_taking-member": { "current": { - "number": "3.3", + "number": "5.3", "spec": "Manifest Incubations", "text": "Processing the note_taking member", "url": "https://wicg.github.io/manifest-incubations/#processing-the-note_taking-member" @@ -257,23 +353,47 @@ }, "#processing-the-protocol_handlers-member": { "current": { - "number": "4.1", + "number": "6.1", "spec": "Manifest Incubations", "text": "Processing the protocol_handlers member", "url": "https://wicg.github.io/manifest-incubations/#processing-the-protocol_handlers-member" } }, + "#processing-the-scope_patterns-member": { + "current": { + "number": "3.3.3", + "spec": "Manifest Incubations", + "text": "Processing the scope_patterns member", + "url": "https://wicg.github.io/manifest-incubations/#processing-the-scope_patterns-member" + } + }, + "#processing-the-tab_strip-member": { + "current": { + "number": "3.3", + "spec": "Manifest Incubations", + "text": "Processing the tab_strip member", + "url": "https://wicg.github.io/manifest-incubations/#processing-the-tab_strip-member" + } + }, "#prompt-method": { "current": { - "number": "8.1.1", + "number": "10.1.1", "spec": "Manifest Incubations", "text": "prompt() method", "url": "https://wicg.github.io/manifest-incubations/#prompt-method" } }, + "#protocol-handler-items": { + "current": { + "number": "6.2", + "spec": "Manifest Incubations", + "text": "Protocol handler items", + "url": "https://wicg.github.io/manifest-incubations/#protocol-handler-items" + } + }, "#protocol-member": { "current": { - "number": "4.2.1", + "number": "6.2.1", "spec": "Manifest Incubations", "text": "protocol member", "url": "https://wicg.github.io/manifest-incubations/#protocol-member" @@ -281,20 +401,12 @@ }, "#protocol_handlers-member": { "current": { - "number": "4", + "number": "6", "spec": "Manifest Incubations", "text": "protocol_handlers member", "url": "https://wicg.github.io/manifest-incubations/#protocol_handlers-member" } }, - "#protocolhandler-items": { - "current": { - "number": "4.2", - "spec": "Manifest Incubations", - "text": "ProtocolHandler items", - "url": "https://wicg.github.io/manifest-incubations/#protocolhandler-items" - } - }, "#references": { "current": { "number": "A", @@ -305,7 +417,7 @@ }, "#registering-file-handlers": { "current": { - "number": "5.4", + "number": "7.4", "spec": "Manifest Incubations", "text": "Registering file handlers", "url": "https://wicg.github.io/manifest-incubations/#registering-file-handlers" @@ -313,12 +425,20 @@ }, "#share_target-member": { "current": { - "number": "2", + "number": "4", "spec": "Manifest Incubations", "text": "share_target member", "url": "https://wicg.github.io/manifest-incubations/#share_target-member" } }, + "#tab_strip-member": { + "current": { + "number": "3", + "spec": "Manifest Incubations", + "text": "tab_strip member", + "url": "https://wicg.github.io/manifest-incubations/#tab_strip-member" + } + }, "#title": { "current": { "number": "", @@ -337,7 +457,7 @@ }, "#url-member": { "current": { - "number": "4.2.2", + "number": "6.2.2", "spec": "Manifest Incubations", "text": "url member", "url": "https://wicg.github.io/manifest-incubations/#url-member" @@ -345,7 +465,7 @@ }, "#usage-example": { "current": { - "number": "1.1", + "number": "3.4", "spec": "Manifest Incubations", "text": "Usage Example", "url": "https://wicg.github.io/manifest-incubations/#usage-example" @@ -353,7 +473,7 @@ }, "#usage-example-0": { "current": { - "number": "3.2", + "number": "5.2", "spec": "Manifest Incubations", "text": "Usage Example", "url": "https://wicg.github.io/manifest-incubations/#usage-example-0" @@ -361,7 +481,7 @@ }, "#usage-example-1": { "current": { - "number": "8.1.2", + "number": "10.1.2", "spec": "Manifest Incubations", "text": "Usage example", "url": "https://wicg.github.io/manifest-incubations/#usage-example-1" diff --git a/bikeshed/spec-data/readonly/headings/headings-mathml-aam.json b/bikeshed/spec-data/readonly/headings/headings-mathml-aam.json index 2021794d03..939cc3f9e0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mathml-aam.json +++ b/bikeshed/spec-data/readonly/headings/headings-mathml-aam.json @@ -1,8 +1,8 @@ { "#ack_funders": { "current": { - "number": "B.3", - "spec": "MathML Accessiblity API Mappings 1.0", + "number": "B.2", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Enabling funders", "url": "https://w3c.github.io/mathml-aam/#ack_funders" } @@ -10,31 +10,39 @@ "#ack_group": { "current": { "number": "B.1", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Participants active in the ARIA WG at the time of publication", "url": "https://w3c.github.io/mathml-aam/#ack_group" } }, - "#ack_others": { - "current": { - "number": "B.2", - "spec": "MathML Accessiblity API Mappings 1.0", - "text": "Other ARIA contributors, commenters, and previously active participants", - "url": "https://w3c.github.io/mathml-aam/#ack_others" - } - }, "#acknowledgements": { "current": { "number": "B", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Acknowledgments", "url": "https://w3c.github.io/mathml-aam/#acknowledgements" } }, + "#annotation": { + "current": { + "number": "3.4.1", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "annotation", + "url": "https://w3c.github.io/mathml-aam/#annotation" + } + }, + "#annotation-xml": { + "current": { + "number": "3.4.2", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "annotation-xml", + "url": "https://w3c.github.io/mathml-aam/#annotation-xml" + } + }, "#changelog": { "current": { "number": "A", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Change Log", "url": "https://w3c.github.io/mathml-aam/#changelog" } @@ -42,7 +50,7 @@ "#conformance": { "current": { "number": "2", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Conformance", "url": "https://w3c.github.io/mathml-aam/#conformance" } @@ -50,23 +58,15 @@ "#deprecated": { "current": { "number": "2.1", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Deprecated", "url": "https://w3c.github.io/mathml-aam/#deprecated" } }, - "#glossary": { - "current": { - "number": "3", - "spec": "MathML Accessiblity API Mappings 1.0", - "text": "Important Terms", - "url": "https://w3c.github.io/mathml-aam/#glossary" - } - }, "#informative-references": { "current": { "number": "C.2", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Informative references", "url": "https://w3c.github.io/mathml-aam/#informative-references" } @@ -74,63 +74,279 @@ "#introduction": { "current": { "number": "1", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Introduction", "url": "https://w3c.github.io/mathml-aam/#introduction" } }, + "#maction": { + "current": { + "number": "3.4.3", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "maction", + "url": "https://w3c.github.io/mathml-aam/#maction" + } + }, "#mapping-mathml-to-accessibility-apis": { "current": { - "number": "4", - "spec": "MathML Accessiblity API Mappings 1.0", + "number": "3", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Mapping MathML to Accessibility APIs", "url": "https://w3c.github.io/mathml-aam/#mapping-mathml-to-accessibility-apis" } }, "#mapping_conflicts": { "current": { - "number": "4.2", - "spec": "MathML Accessiblity API Mappings 1.0", + "number": "3.2", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Conflicts between native semantics and WAI-ARIA", "url": "https://w3c.github.io/mathml-aam/#mapping_conflicts" } }, "#mapping_general": { "current": { - "number": "4.1", - "spec": "MathML Accessiblity API Mappings 1.0", + "number": "3.1", + "spec": "MathML Accessibility API Mappings 1.0", "text": "General rules for exposing WAI-ARIA semantics", "url": "https://w3c.github.io/mathml-aam/#mapping_general" } }, "#mapping_nodirect": { "current": { - "number": "4.3", - "spec": "MathML Accessiblity API Mappings 1.0", + "number": "3.3", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Exposing features that do not directly map to accessibility API", "url": "https://w3c.github.io/mathml-aam/#mapping_nodirect" } }, - "#mathml-attribute-mappings": { + "#math": { "current": { - "number": "4.5", - "spec": "MathML Accessiblity API Mappings 1.0", - "text": "MathML Attribute Mappings", - "url": "https://w3c.github.io/mathml-aam/#mathml-attribute-mappings" + "number": "3.4.4", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "math", + "url": "https://w3c.github.io/mathml-aam/#math" } }, "#mathml-element-mappings": { "current": { - "number": "4.4", - "spec": "MathML Accessiblity API Mappings 1.0", + "number": "3.4", + "spec": "MathML Accessibility API Mappings 1.0", "text": "MathML Element Mappings", "url": "https://w3c.github.io/mathml-aam/#mathml-element-mappings" } }, + "#merror": { + "current": { + "number": "3.4.5", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "merror", + "url": "https://w3c.github.io/mathml-aam/#merror" + } + }, + "#mfrac": { + "current": { + "number": "3.4.6", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mfrac", + "url": "https://w3c.github.io/mathml-aam/#mfrac" + } + }, + "#mi": { + "current": { + "number": "3.4.7", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mi", + "url": "https://w3c.github.io/mathml-aam/#mi" + } + }, + "#mmultiscripts": { + "current": { + "number": "3.4.8", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mmultiscripts", + "url": "https://w3c.github.io/mathml-aam/#mmultiscripts" + } + }, + "#mn": { + "current": { + "number": "3.4.9", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mn", + "url": "https://w3c.github.io/mathml-aam/#mn" + } + }, + "#mo": { + "current": { + "number": "3.4.10", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mo", + "url": "https://w3c.github.io/mathml-aam/#mo" + } + }, + "#mover": { + "current": { + "number": "3.4.11", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mover", + "url": "https://w3c.github.io/mathml-aam/#mover" + } + }, + "#mpadded": { + "current": { + "number": "3.4.12", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mpadded", + "url": "https://w3c.github.io/mathml-aam/#mpadded" + } + }, + "#mphantom": { + "current": { + "number": "3.4.13", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mphantom", + "url": "https://w3c.github.io/mathml-aam/#mphantom" + } + }, + "#mprescripts": { + "current": { + "number": "3.4.14", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mprescripts", + "url": "https://w3c.github.io/mathml-aam/#mprescripts" + } + }, + "#mroot": { + "current": { + "number": "3.4.15", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mroot", + "url": "https://w3c.github.io/mathml-aam/#mroot" + } + }, + "#mrow": { + "current": { + "number": "3.4.16", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mrow", + "url": "https://w3c.github.io/mathml-aam/#mrow" + } + }, + "#ms": { + "current": { + "number": "3.4.17", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "ms", + "url": "https://w3c.github.io/mathml-aam/#ms" + } + }, + "#mspace": { + "current": { + "number": "3.4.18", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mspace", + "url": "https://w3c.github.io/mathml-aam/#mspace" + } + }, + "#msqrt": { + "current": { + "number": "3.4.19", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "msqrt", + "url": "https://w3c.github.io/mathml-aam/#msqrt" + } + }, + "#mstyle": { + "current": { + "number": "3.4.20", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mstyle", + "url": "https://w3c.github.io/mathml-aam/#mstyle" + } + }, + "#msub": { + "current": { + "number": "3.4.21", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "msub", + "url": "https://w3c.github.io/mathml-aam/#msub" + } + }, + "#msubsup": { + "current": { + "number": "3.4.22", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "msubsup", + "url": "https://w3c.github.io/mathml-aam/#msubsup" + } + }, + "#msup": { + "current": { + "number": "3.4.23", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "msup", + "url": "https://w3c.github.io/mathml-aam/#msup" + } + }, + "#mtable": { + "current": { + "number": "3.4.24", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mtable", + "url": "https://w3c.github.io/mathml-aam/#mtable" + } + }, + "#mtd": { + "current": { + "number": "3.4.25", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mtd", + "url": "https://w3c.github.io/mathml-aam/#mtd" + } + }, + "#mtext": { + "current": { + "number": "3.4.26", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mtext", + "url": "https://w3c.github.io/mathml-aam/#mtext" + } + }, + "#mtr": { + "current": { + "number": "3.4.27", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "mtr", + "url": "https://w3c.github.io/mathml-aam/#mtr" + } + }, + "#munder": { + "current": { + "number": "3.4.28", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "munder", + "url": "https://w3c.github.io/mathml-aam/#munder" + } + }, + "#munderover": { + "current": { + "number": "3.4.29", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "munderover", + "url": "https://w3c.github.io/mathml-aam/#munderover" + } + }, + "#none": { + "current": { + "number": "3.4.30", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "none", + "url": "https://w3c.github.io/mathml-aam/#none" + } + }, "#normative-references": { "current": { "number": "C.1", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Normative references", "url": "https://w3c.github.io/mathml-aam/#normative-references" } @@ -138,15 +354,23 @@ "#references": { "current": { "number": "C", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "References", "url": "https://w3c.github.io/mathml-aam/#references" } }, + "#semantics": { + "current": { + "number": "3.4.31", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "semantics", + "url": "https://w3c.github.io/mathml-aam/#semantics" + } + }, "#substantive-changes-since-the-creation-of-this-specification": { "current": { "number": "A.2", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Substantive changes since the creation of this specification", "url": "https://w3c.github.io/mathml-aam/#substantive-changes-since-the-creation-of-this-specification" } @@ -154,7 +378,7 @@ "#substantive-changes-since-the-last-public-working-draft": { "current": { "number": "A.1", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Substantive changes since the last public working draft", "url": "https://w3c.github.io/mathml-aam/#substantive-changes-since-the-last-public-working-draft" } @@ -162,15 +386,15 @@ "#title": { "current": { "number": "", - "spec": "MathML Accessiblity API Mappings 1.0", - "text": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", + "text": "MathML Accessibility API Mappings 1.0", "url": "https://w3c.github.io/mathml-aam/#title" } }, "#toc": { "current": { "number": "", - "spec": "MathML Accessiblity API Mappings 1.0", + "spec": "MathML Accessibility API Mappings 1.0", "text": "Table of Contents", "url": "https://w3c.github.io/mathml-aam/#toc" } diff --git a/bikeshed/spec-data/readonly/headings/headings-mathml-core.json b/bikeshed/spec-data/readonly/headings/headings-mathml-core.json index e08478ece1..48a7f9adf1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mathml-core.json +++ b/bikeshed/spec-data/readonly/headings/headings-mathml-core.json @@ -75,6 +75,12 @@ "spec": "MathML Core", "text": "Anonymous <mrow> boxes", "url": "https://w3c.github.io/mathml-core/#anonymous-mrow-boxes" + }, + "snapshot": { + "number": "3.1.3", + "spec": "MathML Core", + "text": "Anonymous <mrow> boxes", + "url": "https://www.w3.org/TR/mathml-core/#anonymous-mrow-boxes" } }, "#attributes-common-to-html-and-mathml-elements": { @@ -105,20 +111,18 @@ "url": "https://www.w3.org/TR/mathml-core/#base-with-overscript" } }, - "#base-with-prescripts-and-postscripts": { - "snapshot": { - "number": "3.4.3.1", - "spec": "MathML Core", - "text": "Base with prescripts and postscripts", - "url": "https://www.w3.org/TR/mathml-core/#base-with-prescripts-and-postscripts" - } - }, "#base-with-prescripts-and-postscripts-0": { "current": { "number": "3.4.3.1", "spec": "MathML Core", "text": "Base with prescripts and postscripts", "url": "https://w3c.github.io/mathml-core/#base-with-prescripts-and-postscripts-0" + }, + "snapshot": { + "number": "3.4.3.1", + "spec": "MathML Core", + "text": "Base with prescripts and postscripts", + "url": "https://www.w3.org/TR/mathml-core/#base-with-prescripts-and-postscripts-0" } }, "#base-with-subscript": { @@ -359,14 +363,6 @@ "url": "https://www.w3.org/TR/mathml-core/#conformance" } }, - "#conformance-0": { - "snapshot": { - "number": "G.1", - "spec": "MathML Core", - "text": "Conformance", - "url": "https://www.w3.org/TR/mathml-core/#conformance-0" - } - }, "#css-extensions-for-math-layout": { "current": { "number": "4", @@ -437,14 +433,6 @@ "url": "https://www.w3.org/TR/mathml-core/#displaystyle-and-scriptlevel-in-scripts" } }, - "#document-conventions": { - "snapshot": { - "number": "G.1.1", - "spec": "MathML Core", - "text": "Document conventions", - "url": "https://www.w3.org/TR/mathml-core/#document-conventions" - } - }, "#dom-and-javascript": { "current": { "number": "2.2.3", @@ -455,7 +443,7 @@ "snapshot": { "number": "2.2.3", "spec": "MathML Core", - "text": "DOM and Javascript", + "text": "DOM and JavaScript", "url": "https://www.w3.org/TR/mathml-core/#dom-and-javascript" } }, @@ -669,20 +657,6 @@ "url": "https://www.w3.org/TR/mathml-core/#html-and-svg" } }, - "#identifier-mi": { - "current": { - "number": "3.2.2", - "spec": "MathML Core", - "text": "Identifier <mi>", - "url": "https://w3c.github.io/mathml-core/#identifier-mi" - }, - "snapshot": { - "number": "3.2.2", - "spec": "MathML Core", - "text": "Identifier <mi>", - "url": "https://www.w3.org/TR/mathml-core/#identifier-mi" - } - }, "#informative-references": { "current": { "number": "H.2", @@ -899,6 +873,12 @@ "spec": "MathML Core", "text": "Mathematical Alphanumeric Symbols", "url": "https://w3c.github.io/mathml-core/#mathematical-alphanumeric-symbols" + }, + "snapshot": { + "number": "C", + "spec": "MathML Core", + "text": "Mathematical Alphanumeric Symbols", + "url": "https://www.w3.org/TR/mathml-core/#mathematical-alphanumeric-symbols" } }, "#mathml-elements-and-attributes": { @@ -957,14 +937,6 @@ "url": "https://www.w3.org/TR/mathml-core/#new-display-math-value" } }, - "#new-text-transform-mappings": { - "snapshot": { - "number": "C", - "spec": "MathML Core", - "text": "New text-transform Mappings", - "url": "https://www.w3.org/TR/mathml-core/#new-text-transform-mappings" - } - }, "#new-text-transform-values": { "current": { "number": "4.2", @@ -975,7 +947,7 @@ "snapshot": { "number": "4.2", "spec": "MathML Core", - "text": "New text-transform values", + "text": "New text-transform value", "url": "https://www.w3.org/TR/mathml-core/#new-text-transform-values" } }, @@ -1079,10 +1051,16 @@ }, "#other-valid-attributes": { "current": { - "number": "2.1.8", + "number": "2.1.7", "spec": "MathML Core", "text": "Attributes Reserved as Valid", "url": "https://w3c.github.io/mathml-core/#other-valid-attributes" + }, + "snapshot": { + "number": "2.1.7", + "spec": "MathML Core", + "text": "Attributes Reserved as Valid", + "url": "https://www.w3.org/TR/mathml-core/#other-valid-attributes" } }, "#prescripts-and-tensor-indices-mmultiscripts": { @@ -1345,7 +1323,7 @@ "url": "https://w3c.github.io/mathml-core/#stacking-contexts" }, "snapshot": { - "number": "3.1.3", + "number": "3.1.4", "spec": "MathML Core", "text": "Stacking contexts", "url": "https://www.w3.org/TR/mathml-core/#stacking-contexts" @@ -1479,13 +1457,13 @@ }, "#the-displaystyle-and-scriptlevel-attributes": { "current": { - "number": "2.1.7", + "number": "2.1.6", "spec": "MathML Core", "text": "The displaystyle and scriptlevel attributes", "url": "https://w3c.github.io/mathml-core/#the-displaystyle-and-scriptlevel-attributes" }, "snapshot": { - "number": "2.1.7", + "number": "2.1.6", "spec": "MathML Core", "text": "The displaystyle and scriptlevel attributes", "url": "https://www.w3.org/TR/mathml-core/#the-displaystyle-and-scriptlevel-attributes" @@ -1515,7 +1493,7 @@ "snapshot": { "number": "4.5", "spec": "MathML Core", - "text": "New value math-depth property", + "text": "The math-depth property", "url": "https://www.w3.org/TR/mathml-core/#the-math-script-level-property" } }, @@ -1547,18 +1525,18 @@ "url": "https://www.w3.org/TR/mathml-core/#the-math-style-property" } }, - "#the-mathvariant-attribute": { + "#the-mi-element": { "current": { - "number": "2.1.6", + "number": "3.2.2", "spec": "MathML Core", - "text": "The mathvariant attribute", - "url": "https://w3c.github.io/mathml-core/#the-mathvariant-attribute" + "text": "Identifier <mi>", + "url": "https://w3c.github.io/mathml-core/#the-mi-element" }, "snapshot": { - "number": "2.1.6", + "number": "3.2.2", "spec": "MathML Core", - "text": "The mathvariant attribute", - "url": "https://www.w3.org/TR/mathml-core/#the-mathvariant-attribute" + "text": "Identifier <mi>", + "url": "https://www.w3.org/TR/mathml-core/#the-mi-element" } }, "#the-top-level-math-element": { diff --git a/bikeshed/spec-data/readonly/headings/headings-mathml4.json b/bikeshed/spec-data/readonly/headings/headings-mathml4.json new file mode 100644 index 0000000000..e235ebf87e --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-mathml4.json @@ -0,0 +1,7490 @@ +{ + "#a-simple-alignment-algorithm": { + "current": { + "number": "3.5.5.7", + "spec": "MathML 4.0", + "text": "A simple alignment algorithm", + "url": "https://w3c.github.io/mathml/#a-simple-alignment-algorithm" + }, + "snapshot": { + "number": "3.5.5.7", + "spec": "MathML 4.0", + "text": "A simple alignment algorithm", + "url": "https://www.w3.org/TR/mathml4/#a-simple-alignment-algorithm" + } + }, + "#a-single-carry-mscarry": { + "current": { + "number": "3.6.6", + "spec": "MathML 4.0", + "text": "A Single Carry <mscarry>", + "url": "https://w3c.github.io/mathml/#a-single-carry-mscarry" + }, + "snapshot": { + "number": "3.6.6", + "spec": "MathML 4.0", + "text": "A Single Carry <mscarry>", + "url": "https://www.w3.org/TR/mathml4/#a-single-carry-mscarry" + } + }, + "#a-warning-about-literal-and-hint": { + "snapshot": { + "number": "5.1.4", + "spec": "MathML 4.0", + "text": "A Warning about literal and hint", + "url": "https://www.w3.org/TR/mathml4/#a-warning-about-literal-and-hint" + } + }, + "#a-warning-about-literal-and-property": { + "current": { + "number": "5.6", + "spec": "MathML 4.0", + "text": "A Warning about literal and property", + "url": "https://w3c.github.io/mathml/#a-warning-about-literal-and-property" + } + }, + "#accessibility-benefits-of-using-mathml": { + "current": { + "number": "C.2", + "spec": "MathML 4.0", + "text": "Accessibility benefits of using MathML", + "url": "https://w3c.github.io/mathml/#accessibility-benefits-of-using-mathml" + }, + "snapshot": { + "number": "C.2", + "spec": "MathML 4.0", + "text": "Accessibility benefits of using MathML", + "url": "https://www.w3.org/TR/mathml4/#accessibility-benefits-of-using-mathml" + } + }, + "#accessibility-guidance": { + "current": { + "number": "C.3", + "spec": "MathML 4.0", + "text": "Accessibility Guidance", + "url": "https://w3c.github.io/mathml/#accessibility-guidance" + }, + "snapshot": { + "number": "C.3", + "spec": "MathML 4.0", + "text": "Accessibility Guidance", + "url": "https://www.w3.org/TR/mathml4/#accessibility-guidance" + } + }, + "#accessibility-tree": { + "current": { + "number": "C.3.1.1", + "spec": "MathML 4.0", + "text": "Accessibility tree", + "url": "https://w3c.github.io/mathml/#accessibility-tree" + }, + "snapshot": { + "number": "C.3.1.1", + "spec": "MathML 4.0", + "text": "Accessibility tree", + "url": "https://www.w3.org/TR/mathml4/#accessibility-tree" + } + }, + "#acknowledgments": { + "current": { + "number": "H.2", + "spec": "MathML 4.0", + "text": "Acknowledgments", + "url": "https://w3c.github.io/mathml/#acknowledgments" + }, + "snapshot": { + "number": "H.2", + "spec": "MathML 4.0", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/mathml4/#acknowledgments" + } + }, + "#addition-and-subtraction": { + "current": { + "number": "3.6.8.1", + "spec": "MathML 4.0", + "text": "Addition and Subtraction", + "url": "https://w3c.github.io/mathml/#addition-and-subtraction" + }, + "snapshot": { + "number": "3.6.8.1", + "spec": "MathML 4.0", + "text": "Addition and Subtraction", + "url": "https://www.w3.org/TR/mathml4/#addition-and-subtraction" + } + }, + "#additional-notes-about-units": { + "current": { + "number": "2.1.5.2.1", + "spec": "MathML 4.0", + "text": "Additional notes about units", + "url": "https://w3c.github.io/mathml/#additional-notes-about-units" + }, + "snapshot": { + "number": "2.1.5.2.1", + "spec": "MathML 4.0", + "text": "Additional notes about units", + "url": "https://www.w3.org/TR/mathml4/#additional-notes-about-units" + } + }, + "#adjust-space-around-content-mpadded": { + "current": { + "number": "3.3.6", + "spec": "MathML 4.0", + "text": "Adjust Space Around Content <mpadded>", + "url": "https://w3c.github.io/mathml/#adjust-space-around-content-mpadded" + }, + "snapshot": { + "number": "3.3.6", + "spec": "MathML 4.0", + "text": "Adjust Space Around Content <mpadded>", + "url": "https://www.w3.org/TR/mathml4/#adjust-space-around-content-mpadded" + } + }, + "#alignment-markers-maligngroup-malignmark": { + "current": { + "number": "3.5.5", + "spec": "MathML 4.0", + "text": "Alignment Markers <maligngroup/>, <malignmark/>", + "url": "https://w3c.github.io/mathml/#alignment-markers-maligngroup-malignmark" + }, + "snapshot": { + "number": "3.5.5", + "spec": "MathML 4.0", + "text": "Alignment Markers <maligngroup/>, <malignmark/>", + "url": "https://www.w3.org/TR/mathml4/#alignment-markers-maligngroup-malignmark" + } + }, + "#alternate-representations": { + "current": { + "number": "6.2", + "spec": "MathML 4.0", + "text": "Alternate representations", + "url": "https://w3c.github.io/mathml/#alternate-representations" + }, + "snapshot": { + "number": "5.2.2", + "spec": "MathML 4.0", + "text": "Alternate representations", + "url": "https://www.w3.org/TR/mathml4/#alternate-representations" + } + }, + "#always-use-markup": { + "current": { + "number": "C.4.1.1", + "spec": "MathML 4.0", + "text": "Always use markup", + "url": "https://w3c.github.io/mathml/#always-use-markup" + }, + "snapshot": { + "number": "C.4.1.1", + "spec": "MathML 4.0", + "text": "Always use markup", + "url": "https://www.w3.org/TR/mathml4/#always-use-markup" + } + }, + "#an-acyclicity-constraint": { + "current": { + "number": "4.2.7.2", + "spec": "MathML 4.0", + "text": "An Acyclicity Constraint", + "url": "https://w3c.github.io/mathml/#an-acyclicity-constraint" + }, + "snapshot": { + "number": "4.2.7.2", + "spec": "MathML 4.0", + "text": "An Acyclicity Constraint", + "url": "https://www.w3.org/TR/mathml4/#an-acyclicity-constraint" + } + }, + "#annotating-mathml": { + "snapshot": { + "number": "5", + "spec": "MathML 4.0", + "text": "Annotating MathML", + "url": "https://www.w3.org/TR/mathml4/#annotating-mathml" + } + }, + "#annotating-mathml-intent": { + "current": { + "number": "5", + "spec": "MathML 4.0", + "text": "Annotating MathML: intent", + "url": "https://w3c.github.io/mathml/#annotating-mathml-intent" + } + }, + "#annotating-mathml-semantics": { + "current": { + "number": "6", + "spec": "MathML 4.0", + "text": "Annotating MathML: semantics", + "url": "https://w3c.github.io/mathml/#annotating-mathml-semantics" + } + }, + "#annotation-elements": { + "snapshot": { + "number": "5.2", + "spec": "MathML 4.0", + "text": "Annotation Elements", + "url": "https://www.w3.org/TR/mathml4/#annotation-elements" + } + }, + "#annotation-keys": { + "current": { + "number": "6.1", + "spec": "MathML 4.0", + "text": "Annotation keys", + "url": "https://w3c.github.io/mathml/#annotation-keys" + }, + "snapshot": { + "number": "5.2.1", + "spec": "MathML 4.0", + "text": "Annotation keys", + "url": "https://www.w3.org/TR/mathml4/#annotation-keys" + } + }, + "#annotation-references": { + "current": { + "number": "6.4", + "spec": "MathML 4.0", + "text": "Annotation references", + "url": "https://w3c.github.io/mathml/#annotation-references" + }, + "snapshot": { + "number": "5.2.4", + "spec": "MathML 4.0", + "text": "Annotation references", + "url": "https://www.w3.org/TR/mathml4/#annotation-references" + } + }, + "#anomalous-mathematical-characters": { + "current": { + "number": "8.4", + "spec": "MathML 4.0", + "text": "Anomalous Mathematical Characters", + "url": "https://w3c.github.io/mathml/#anomalous-mathematical-characters" + }, + "snapshot": { + "number": "7.4", + "spec": "MathML 4.0", + "text": "Anomalous Mathematical Characters", + "url": "https://www.w3.org/TR/mathml4/#anomalous-mathematical-characters" + } + }, + "#apply-to-list": { + "current": { + "number": "F.6.3", + "spec": "MathML 4.0", + "text": "Apply to list", + "url": "https://w3c.github.io/mathml/#apply-to-list" + }, + "snapshot": { + "number": "F.6.3", + "spec": "MathML 4.0", + "text": "Apply to list", + "url": "https://www.w3.org/TR/mathml4/#apply-to-list" + } + }, + "#arithmetic-constants-exponentiale-imaginaryi-notanumber-true-false-pi-eulergamma-infinity": { + "current": { + "number": "4.3.9.1", + "spec": "MathML 4.0", + "text": "Arithmetic Constants: <exponentiale/>, <imaginaryi/>, <notanumber/>, <true/>, <false/>, <pi/>, <eulergamma/>, <infinity/>", + "url": "https://w3c.github.io/mathml/#arithmetic-constants-exponentiale-imaginaryi-notanumber-true-false-pi-eulergamma-infinity" + }, + "snapshot": { + "number": "4.3.9.1", + "spec": "MathML 4.0", + "text": "Arithmetic Constants: <exponentiale/>, <imaginaryi/>, <notanumber/>, <true/>, <false/>, <pi/>, <eulergamma/>, <infinity/>", + "url": "https://www.w3.org/TR/mathml4/#arithmetic-constants-exponentiale-imaginaryi-notanumber-true-false-pi-eulergamma-infinity" + } + }, + "#attributes": { + "current": { + "number": "2.2.1", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes" + }, + "snapshot": { + "number": "2.2.1", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes" + } + }, + "#attributes-0": { + "current": { + "number": "3.2.1.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-0" + }, + "snapshot": { + "number": "3.2.1.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-0" + } + }, + "#attributes-1": { + "current": { + "number": "3.2.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-1" + }, + "snapshot": { + "number": "3.2.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-1" + } + }, + "#attributes-10": { + "current": { + "number": "3.3.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-10" + }, + "snapshot": { + "number": "3.3.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-10" + } + }, + "#attributes-11": { + "current": { + "number": "3.3.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-11" + }, + "snapshot": { + "number": "3.3.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-11" + } + }, + "#attributes-12": { + "current": { + "number": "3.3.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-12" + }, + "snapshot": { + "number": "3.3.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-12" + } + }, + "#attributes-13": { + "current": { + "number": "3.3.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-13" + }, + "snapshot": { + "number": "3.3.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-13" + } + }, + "#attributes-14": { + "current": { + "number": "3.3.8.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-14" + }, + "snapshot": { + "number": "3.3.8.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-14" + } + }, + "#attributes-15": { + "current": { + "number": "3.3.9.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-15" + }, + "snapshot": { + "number": "3.3.9.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-15" + } + }, + "#attributes-16": { + "current": { + "number": "3.4.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-16" + }, + "snapshot": { + "number": "3.4.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-16" + } + }, + "#attributes-17": { + "current": { + "number": "3.4.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-17" + }, + "snapshot": { + "number": "3.4.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-17" + } + }, + "#attributes-18": { + "current": { + "number": "3.4.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-18" + }, + "snapshot": { + "number": "3.4.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-18" + } + }, + "#attributes-19": { + "current": { + "number": "3.4.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-19" + }, + "snapshot": { + "number": "3.4.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-19" + } + }, + "#attributes-2": { + "current": { + "number": "3.2.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-2" + }, + "snapshot": { + "number": "3.2.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-2" + } + }, + "#attributes-20": { + "current": { + "number": "3.4.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-20" + }, + "snapshot": { + "number": "3.4.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-20" + } + }, + "#attributes-21": { + "current": { + "number": "3.4.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-21" + }, + "snapshot": { + "number": "3.4.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-21" + } + }, + "#attributes-22": { + "current": { + "number": "3.4.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-22" + }, + "snapshot": { + "number": "3.4.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-22" + } + }, + "#attributes-23": { + "current": { + "number": "3.5.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-23" + }, + "snapshot": { + "number": "3.5.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-23" + } + }, + "#attributes-24": { + "current": { + "number": "3.5.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-24" + }, + "snapshot": { + "number": "3.5.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-24" + } + }, + "#attributes-25": { + "current": { + "number": "3.5.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-25" + }, + "snapshot": { + "number": "3.5.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-25" + } + }, + "#attributes-26": { + "current": { + "number": "3.5.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-26" + }, + "snapshot": { + "number": "3.5.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-26" + } + }, + "#attributes-27": { + "current": { + "number": "3.6.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-27" + }, + "snapshot": { + "number": "3.6.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-27" + } + }, + "#attributes-28": { + "current": { + "number": "3.6.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-28" + }, + "snapshot": { + "number": "3.6.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-28" + } + }, + "#attributes-29": { + "current": { + "number": "3.6.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-29" + }, + "snapshot": { + "number": "3.6.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-29" + } + }, + "#attributes-3": { + "current": { + "number": "3.2.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-3" + }, + "snapshot": { + "number": "3.2.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-3" + } + }, + "#attributes-30": { + "current": { + "number": "3.6.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-30" + }, + "snapshot": { + "number": "3.6.4.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-30" + } + }, + "#attributes-31": { + "current": { + "number": "3.6.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-31" + }, + "snapshot": { + "number": "3.6.5.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-31" + } + }, + "#attributes-32": { + "current": { + "number": "3.6.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-32" + }, + "snapshot": { + "number": "3.6.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-32" + } + }, + "#attributes-33": { + "current": { + "number": "3.6.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-33" + }, + "snapshot": { + "number": "3.6.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-33" + } + }, + "#attributes-34": { + "current": { + "number": "3.7.1.1", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-34" + }, + "snapshot": { + "number": "3.7.1.1", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-34" + } + }, + "#attributes-35": { + "current": { + "number": "6.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-35" + }, + "snapshot": { + "number": "5.2.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-35" + } + }, + "#attributes-36": { + "current": { + "number": "6.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-36" + }, + "snapshot": { + "number": "5.2.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-36" + } + }, + "#attributes-4": { + "current": { + "number": "3.2.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-4" + }, + "snapshot": { + "number": "3.2.6.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-4" + } + }, + "#attributes-5": { + "current": { + "number": "3.2.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-5" + }, + "snapshot": { + "number": "3.2.7.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-5" + } + }, + "#attributes-6": { + "current": { + "number": "3.2.8.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-6" + }, + "snapshot": { + "number": "3.2.8.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-6" + } + }, + "#attributes-7": { + "current": { + "number": "3.3.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-7" + }, + "snapshot": { + "number": "3.3.1.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-7" + } + }, + "#attributes-8": { + "current": { + "number": "3.3.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-8" + }, + "snapshot": { + "number": "3.3.2.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-8" + } + }, + "#attributes-9": { + "current": { + "number": "3.3.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://w3c.github.io/mathml/#attributes-9" + }, + "snapshot": { + "number": "3.3.3.2", + "spec": "MathML 4.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/mathml4/#attributes-9" + } + }, + "#attributes-for-unspecified-data": { + "current": { + "number": "D.3", + "spec": "MathML 4.0", + "text": "Attributes for unspecified data", + "url": "https://w3c.github.io/mathml/#attributes-for-unspecified-data" + }, + "snapshot": { + "number": "D.3", + "spec": "MathML 4.0", + "text": "Attributes for unspecified data", + "url": "https://www.w3.org/TR/mathml4/#attributes-for-unspecified-data" + } + }, + "#attributes-shared-by-all-mathml-elements": { + "current": { + "number": "2.1.6", + "spec": "MathML 4.0", + "text": "Attributes Shared by all MathML Elements", + "url": "https://w3c.github.io/mathml/#attributes-shared-by-all-mathml-elements" + }, + "snapshot": { + "number": "2.1.6", + "spec": "MathML 4.0", + "text": "Attributes Shared by all MathML Elements", + "url": "https://www.w3.org/TR/mathml4/#attributes-shared-by-all-mathml-elements" + } + }, + "#attribution-via-semantics": { + "current": { + "number": "4.2.8", + "spec": "MathML 4.0", + "text": "Attribution via semantics", + "url": "https://w3c.github.io/mathml/#attribution-via-semantics" + }, + "snapshot": { + "number": "4.2.8", + "spec": "MathML 4.0", + "text": "Attribution via semantics", + "url": "https://www.w3.org/TR/mathml4/#attribution-via-semantics" + } + }, + "#basic-transfer-flavor-names-and-contents": { + "current": { + "number": "7.3.1", + "spec": "MathML 4.0", + "text": "Basic Transfer Flavor Names and Contents", + "url": "https://w3c.github.io/mathml/#basic-transfer-flavor-names-and-contents" + }, + "snapshot": { + "number": "6.3.1", + "spec": "MathML 4.0", + "text": "Basic Transfer Flavor Names and Contents", + "url": "https://www.w3.org/TR/mathml4/#basic-transfer-flavor-names-and-contents" + } + }, + "#bidirectional-layout-in-token-elements": { + "current": { + "number": "3.1.5.2", + "spec": "MathML 4.0", + "text": "Bidirectional Layout in Token Elements", + "url": "https://w3c.github.io/mathml/#bidirectional-layout-in-token-elements" + }, + "snapshot": { + "number": "3.1.5.2", + "spec": "MathML 4.0", + "text": "Bidirectional Layout in Token Elements", + "url": "https://www.w3.org/TR/mathml4/#bidirectional-layout-in-token-elements" + } + }, + "#binary-arithmetic-operators-quotient-divide-minus-power-rem-root": { + "current": { + "number": "4.3.6.1", + "spec": "MathML 4.0", + "text": "Binary Arithmetic Operators: <quotient/>, <divide/>, <minus/>, <power/>, <rem/>, <root/>", + "url": "https://w3c.github.io/mathml/#binary-arithmetic-operators-quotient-divide-minus-power-rem-root" + }, + "snapshot": { + "number": "4.3.6.1", + "spec": "MathML 4.0", + "text": "Binary Arithmetic Operators: <quotient/>, <divide/>, <minus/>, <power/>, <rem/>, <root/>", + "url": "https://www.w3.org/TR/mathml4/#binary-arithmetic-operators-quotient-divide-minus-power-rem-root" + } + }, + "#binary-linear-algebra-operators-vectorproduct-scalarproduct-outerproduct": { + "current": { + "number": "4.3.6.4", + "spec": "MathML 4.0", + "text": "Binary Linear Algebra Operators: <vectorproduct/>, <scalarproduct/>, <outerproduct/>", + "url": "https://w3c.github.io/mathml/#binary-linear-algebra-operators-vectorproduct-scalarproduct-outerproduct" + }, + "snapshot": { + "number": "4.3.6.4", + "spec": "MathML 4.0", + "text": "Binary Linear Algebra Operators: <vectorproduct/>, <scalarproduct/>, <outerproduct/>", + "url": "https://www.w3.org/TR/mathml4/#binary-linear-algebra-operators-vectorproduct-scalarproduct-outerproduct" + } + }, + "#binary-logical-operators-implies-equivalent": { + "current": { + "number": "4.3.6.2", + "spec": "MathML 4.0", + "text": "Binary Logical Operators: <implies/>, <equivalent/>", + "url": "https://w3c.github.io/mathml/#binary-logical-operators-implies-equivalent" + }, + "snapshot": { + "number": "4.3.6.2", + "spec": "MathML 4.0", + "text": "Binary Logical Operators: <implies/>, <equivalent/>", + "url": "https://www.w3.org/TR/mathml4/#binary-logical-operators-implies-equivalent" + } + }, + "#binary-operators": { + "current": { + "number": "4.3.6", + "spec": "MathML 4.0", + "text": "Binary Operators", + "url": "https://w3c.github.io/mathml/#binary-operators" + }, + "snapshot": { + "number": "4.3.6", + "spec": "MathML 4.0", + "text": "Binary Operators", + "url": "https://www.w3.org/TR/mathml4/#binary-operators" + } + }, + "#binary-relations-neq-approx-factorof-tendsto": { + "current": { + "number": "4.3.6.3", + "spec": "MathML 4.0", + "text": "Binary Relations: <neq/>, <approx/>, <factorof/>, <tendsto/>", + "url": "https://w3c.github.io/mathml/#binary-relations-neq-approx-factorof-tendsto" + }, + "snapshot": { + "number": "4.3.6.3", + "spec": "MathML 4.0", + "text": "Binary Relations: <neq/>, <approx/>, <factorof/>, <tendsto/>", + "url": "https://www.w3.org/TR/mathml4/#binary-relations-neq-approx-factorof-tendsto" + } + }, + "#binary-set-operators-in-notin-notsubset-notprsubset-setdiff": { + "current": { + "number": "4.3.6.5", + "spec": "MathML 4.0", + "text": "Binary Set Operators: <in/>, <notin/>, <notsubset/>, <notprsubset/>, <setdiff/>", + "url": "https://w3c.github.io/mathml/#binary-set-operators-in-notin-notsubset-notprsubset-setdiff" + }, + "snapshot": { + "number": "4.3.6.5", + "spec": "MathML 4.0", + "text": "Binary Set Operators: <in/>, <notin/>, <notsubset/>, <notprsubset/>, <setdiff/>", + "url": "https://www.w3.org/TR/mathml4/#binary-set-operators-in-notin-notsubset-notprsubset-setdiff" + } + }, + "#bind-action-to-sub-expression": { + "current": { + "number": "3.7.1", + "spec": "MathML 4.0", + "text": "Bind Action to Sub-Expression", + "url": "https://w3c.github.io/mathml/#bind-action-to-sub-expression" + }, + "snapshot": { + "number": "3.7.1", + "spec": "MathML 4.0", + "text": "Bind Action to Sub-Expression", + "url": "https://www.w3.org/TR/mathml4/#bind-action-to-sub-expression" + } + }, + "#bindings": { + "current": { + "number": "4.2.6.1", + "spec": "MathML 4.0", + "text": "Bindings", + "url": "https://w3c.github.io/mathml/#bindings" + }, + "snapshot": { + "number": "4.2.6.1", + "spec": "MathML 4.0", + "text": "Bindings", + "url": "https://www.w3.org/TR/mathml4/#bindings" + } + }, + "#bindings-and-bound-variables-bind-and-bvar": { + "current": { + "number": "4.2.6", + "spec": "MathML 4.0", + "text": "Bindings and Bound Variables <bind> and <bvar>", + "url": "https://w3c.github.io/mathml/#bindings-and-bound-variables-bind-and-bvar" + }, + "snapshot": { + "number": "4.2.6", + "spec": "MathML 4.0", + "text": "Bindings and Bound Variables <bind> and <bvar>", + "url": "https://www.w3.org/TR/mathml4/#bindings-and-bound-variables-bind-and-bvar" + } + }, + "#bindings-with-apply": { + "current": { + "number": "4.3.2", + "spec": "MathML 4.0", + "text": "Bindings with <apply>", + "url": "https://w3c.github.io/mathml/#bindings-with-apply" + }, + "snapshot": { + "number": "4.3.2", + "spec": "MathML 4.0", + "text": "Bindings with <apply>", + "url": "https://www.w3.org/TR/mathml4/#bindings-with-apply" + } + }, + "#bound-variables": { + "current": { + "number": "4.2.6.2", + "spec": "MathML 4.0", + "text": "Bound Variables", + "url": "https://w3c.github.io/mathml/#bound-variables" + }, + "snapshot": { + "number": "4.2.6.2", + "spec": "MathML 4.0", + "text": "Bound Variables", + "url": "https://www.w3.org/TR/mathml4/#bound-variables" + } + }, + "#carries-borrows-and-crossouts-mscarries": { + "current": { + "number": "3.6.5", + "spec": "MathML 4.0", + "text": "Carries, Borrows, and Crossouts <mscarries>", + "url": "https://w3c.github.io/mathml/#carries-borrows-and-crossouts-mscarries" + }, + "snapshot": { + "number": "3.6.5", + "spec": "MathML 4.0", + "text": "Carries, Borrows, and Crossouts <mscarries>", + "url": "https://www.w3.org/TR/mathml4/#carries-borrows-and-crossouts-mscarries" + } + }, + "#changes-0": { + "current": { + "number": "I", + "spec": "MathML 4.0", + "text": "Changes", + "url": "https://w3c.github.io/mathml/#changes-0" + }, + "snapshot": { + "number": "I", + "spec": "MathML 4.0", + "text": "Changes", + "url": "https://www.w3.org/TR/mathml4/#changes-0" + } + }, + "#changes-between-mathml-3-0-second-edition-and-mathml-4-0": { + "current": { + "number": "I.1", + "spec": "MathML 4.0", + "text": "Changes between MathML 3.0 Second Edition and MathML 4.0", + "url": "https://w3c.github.io/mathml/#changes-between-mathml-3-0-second-edition-and-mathml-4-0" + }, + "snapshot": { + "number": "I.1", + "spec": "MathML 4.0", + "text": "Changes between MathML 3.0 Second Edition and MathML 4.0", + "url": "https://www.w3.org/TR/mathml4/#changes-between-mathml-3-0-second-edition-and-mathml-4-0" + } + }, + "#characters-entities-and-fonts": { + "current": { + "number": "8", + "spec": "MathML 4.0", + "text": "Characters, Entities and Fonts", + "url": "https://w3c.github.io/mathml/#characters-entities-and-fonts" + }, + "snapshot": { + "number": "7", + "spec": "MathML 4.0", + "text": "Characters, Entities and Fonts", + "url": "https://www.w3.org/TR/mathml4/#characters-entities-and-fonts" + } + }, + "#chars_hyph-minus": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Minus", + "url": "https://w3c.github.io/mathml/#chars_hyph-minus" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Minus", + "url": "https://www.w3.org/TR/mathml4/#chars_hyph-minus" + } + }, + "#chars_keyboard_subs": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Other Keyboard Substitutions", + "url": "https://w3c.github.io/mathml/#chars_keyboard_subs" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Other Keyboard Substitutions", + "url": "https://www.w3.org/TR/mathml4/#chars_keyboard_subs" + } + }, + "#chars_prime-quote": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Apostrophes, Quotes and Primes", + "url": "https://w3c.github.io/mathml/#chars_prime-quote" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Apostrophes, Quotes and Primes", + "url": "https://www.w3.org/TR/mathml4/#chars_prime-quote" + } + }, + "#chg_accessibility": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to C. MathML Accessibility", + "url": "https://w3c.github.io/mathml/#chg_accessibility" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to C. MathML Accessibility", + "url": "https://www.w3.org/TR/mathml4/#chg_accessibility" + } + }, + "#chg_contm": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 4. Content Markup", + "url": "https://w3c.github.io/mathml/#chg_contm" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 4. Content Markup", + "url": "https://www.w3.org/TR/mathml4/#chg_contm" + } + }, + "#chg_emdia_types": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to Media Types", + "url": "https://w3c.github.io/mathml/#chg_emdia_types" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to Media Types", + "url": "https://www.w3.org/TR/mathml4/#chg_emdia_types" + } + }, + "#chg_front": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to the Frontmatter", + "url": "https://w3c.github.io/mathml/#chg_front" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to the Frontmatter", + "url": "https://www.w3.org/TR/mathml4/#chg_front" + } + }, + "#chg_fund": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 2. MathML Fundamentals", + "url": "https://w3c.github.io/mathml/#chg_fund" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 2. MathML Fundamentals", + "url": "https://www.w3.org/TR/mathml4/#chg_fund" + } + }, + "#chg_mixing": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 6. Annotating MathML: semantics", + "url": "https://w3c.github.io/mathml/#chg_mixing" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 5. Annotating MathML", + "url": "https://www.w3.org/TR/mathml4/#chg_mixing" + } + }, + "#chg_mixing_intent": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 5. Annotating MathML: intent", + "url": "https://w3c.github.io/mathml/#chg_mixing_intent" + } + }, + "#chg_opdict": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to B. Operator Dictionary", + "url": "https://w3c.github.io/mathml/#chg_opdict" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to B. Operator Dictionary", + "url": "https://www.w3.org/TR/mathml4/#chg_opdict" + } + }, + "#chg_parsing": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to A. Parsing MathML", + "url": "https://w3c.github.io/mathml/#chg_parsing" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to A. Parsing MathML", + "url": "https://www.w3.org/TR/mathml4/#chg_parsing" + } + }, + "#chg_presm": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 3. Presentation Markup", + "url": "https://w3c.github.io/mathml/#chg_presm" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 3. Presentation Markup", + "url": "https://www.w3.org/TR/mathml4/#chg_presm" + } + }, + "#chg_transform": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to E.3 The Content MathML Operators and F. The Strict Content MathML Transformation", + "url": "https://w3c.github.io/mathml/#chg_transform" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to E.3 The Content MathML Operators and F. The Strict Content MathML Transformation", + "url": "https://www.w3.org/TR/mathml4/#chg_transform" + } + }, + "#chg_world-interactions": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 7. Interactions with the Host Environment", + "url": "https://w3c.github.io/mathml/#chg_world-interactions" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Changes to 6. Interactions with the Host Environment", + "url": "https://www.w3.org/TR/mathml4/#chg_world-interactions" + } + }, + "#children-versus-arguments": { + "current": { + "number": "2.1.3", + "spec": "MathML 4.0", + "text": "Children versus Arguments", + "url": "https://w3c.github.io/mathml/#children-versus-arguments" + }, + "snapshot": { + "number": "2.1.3", + "spec": "MathML 4.0", + "text": "Children versus Arguments", + "url": "https://www.w3.org/TR/mathml4/#children-versus-arguments" + } + }, + "#collapsing-whitespace-in-input": { + "current": { + "number": "2.1.7", + "spec": "MathML 4.0", + "text": "Collapsing Whitespace in Input", + "url": "https://w3c.github.io/mathml/#collapsing-whitespace-in-input" + }, + "snapshot": { + "number": "2.1.7", + "spec": "MathML 4.0", + "text": "Collapsing Whitespace in Input", + "url": "https://www.w3.org/TR/mathml4/#collapsing-whitespace-in-input" + } + }, + "#combining-characters": { + "current": { + "number": "8.4.3", + "spec": "MathML 4.0", + "text": "Combining Characters", + "url": "https://w3c.github.io/mathml/#combining-characters" + }, + "snapshot": { + "number": "7.4.3", + "spec": "MathML 4.0", + "text": "Combining Characters", + "url": "https://www.w3.org/TR/mathml4/#combining-characters" + } + }, + "#combining-mathml-and-other-formats": { + "current": { + "number": "7.4", + "spec": "MathML 4.0", + "text": "Combining MathML and Other Formats", + "url": "https://w3c.github.io/mathml/#combining-mathml-and-other-formats" + }, + "snapshot": { + "number": "6.4", + "spec": "MathML 4.0", + "text": "Combining MathML and Other Formats", + "url": "https://www.w3.org/TR/mathml4/#combining-mathml-and-other-formats" + } + }, + "#combining-presentation-and-content-markup": { + "current": { + "number": "6.8", + "spec": "MathML 4.0", + "text": "Combining Presentation and Content Markup", + "url": "https://w3c.github.io/mathml/#combining-presentation-and-content-markup" + }, + "snapshot": { + "number": "5.2.8", + "spec": "MathML 4.0", + "text": "Combining Presentation and Content Markup", + "url": "https://www.w3.org/TR/mathml4/#combining-presentation-and-content-markup" + } + }, + "#compressed-view": { + "current": { + "number": "B.3.1", + "spec": "MathML 4.0", + "text": "Compressed view", + "url": "https://w3c.github.io/mathml/#compressed-view" + }, + "snapshot": { + "number": "B.3.1", + "spec": "MathML 4.0", + "text": "Compressed view", + "url": "https://www.w3.org/TR/mathml4/#compressed-view" + } + }, + "#conformance": { + "current": { + "number": "D", + "spec": "MathML 4.0", + "text": "Conformance", + "url": "https://w3c.github.io/mathml/#conformance" + }, + "snapshot": { + "number": "D", + "spec": "MathML 4.0", + "text": "Conformance", + "url": "https://www.w3.org/TR/mathml4/#conformance" + } + }, + "#constants": { + "current": { + "number": "4.3.9", + "spec": "MathML 4.0", + "text": "Constants", + "url": "https://w3c.github.io/mathml/#constants" + }, + "snapshot": { + "number": "4.3.9", + "spec": "MathML 4.0", + "text": "Constants", + "url": "https://www.w3.org/TR/mathml4/#constants" + } + }, + "#container-markup": { + "current": { + "number": "4.3.1", + "spec": "MathML 4.0", + "text": "Container Markup", + "url": "https://w3c.github.io/mathml/#container-markup" + }, + "snapshot": { + "number": "4.3.1", + "spec": "MathML 4.0", + "text": "Container Markup", + "url": "https://www.w3.org/TR/mathml4/#container-markup" + } + }, + "#container-markup-for-binding-constructors": { + "current": { + "number": "4.3.1.2", + "spec": "MathML 4.0", + "text": "Container Markup for Binding Constructors", + "url": "https://w3c.github.io/mathml/#container-markup-for-binding-constructors" + }, + "snapshot": { + "number": "4.3.1.2", + "spec": "MathML 4.0", + "text": "Container Markup for Binding Constructors", + "url": "https://www.w3.org/TR/mathml4/#container-markup-for-binding-constructors" + } + }, + "#container-markup-for-constructor-symbols": { + "current": { + "number": "4.3.1.1", + "spec": "MathML 4.0", + "text": "Container Markup for Constructor Symbols", + "url": "https://w3c.github.io/mathml/#container-markup-for-constructor-symbols" + }, + "snapshot": { + "number": "4.3.1.1", + "spec": "MathML 4.0", + "text": "Container Markup for Constructor Symbols", + "url": "https://www.w3.org/TR/mathml4/#container-markup-for-constructor-symbols" + } + }, + "#content-authors": { + "current": { + "number": "C.4", + "spec": "MathML 4.0", + "text": "Content Authors", + "url": "https://w3c.github.io/mathml/#content-authors" + }, + "snapshot": { + "number": "C.4", + "spec": "MathML 4.0", + "text": "Content Authors", + "url": "https://www.w3.org/TR/mathml4/#content-authors" + } + }, + "#content-dictionaries": { + "current": { + "number": "4.1.6", + "spec": "MathML 4.0", + "text": "Content Dictionaries", + "url": "https://w3c.github.io/mathml/#content-dictionaries" + }, + "snapshot": { + "number": "4.1.6", + "spec": "MathML 4.0", + "text": "Content Dictionaries", + "url": "https://www.w3.org/TR/mathml4/#content-dictionaries" + } + }, + "#content-equivalents": { + "current": { + "number": "6.3", + "spec": "MathML 4.0", + "text": "Content equivalents", + "url": "https://w3c.github.io/mathml/#content-equivalents" + }, + "snapshot": { + "number": "5.2.3", + "spec": "MathML 4.0", + "text": "Content equivalents", + "url": "https://www.w3.org/TR/mathml4/#content-equivalents" + } + }, + "#content-expressions": { + "current": { + "number": "4.1.2", + "spec": "MathML 4.0", + "text": "Content Expressions", + "url": "https://w3c.github.io/mathml/#content-expressions" + }, + "snapshot": { + "number": "4.1.2", + "spec": "MathML 4.0", + "text": "Content Expressions", + "url": "https://www.w3.org/TR/mathml4/#content-expressions" + } + }, + "#content-identifiers-ci": { + "current": { + "number": "4.2.2", + "spec": "MathML 4.0", + "text": "Content Identifiers <ci>", + "url": "https://w3c.github.io/mathml/#content-identifiers-ci" + }, + "snapshot": { + "number": "4.2.2", + "spec": "MathML 4.0", + "text": "Content Identifiers <ci>", + "url": "https://www.w3.org/TR/mathml4/#content-identifiers-ci" + } + }, + "#content-markup": { + "current": { + "number": "4", + "spec": "MathML 4.0", + "text": "Content Markup", + "url": "https://w3c.github.io/mathml/#content-markup" + }, + "snapshot": { + "number": "4", + "spec": "MathML 4.0", + "text": "Content Markup", + "url": "https://www.w3.org/TR/mathml4/#content-markup" + } + }, + "#content-markup-in-presentation-markup": { + "current": { + "number": "6.8.2", + "spec": "MathML 4.0", + "text": "Content Markup in Presentation Markup", + "url": "https://w3c.github.io/mathml/#content-markup-in-presentation-markup" + }, + "snapshot": { + "number": "5.2.8.2", + "spec": "MathML 4.0", + "text": "Content Markup in Presentation Markup", + "url": "https://www.w3.org/TR/mathml4/#content-markup-in-presentation-markup" + } + }, + "#content-mathml": { + "current": { + "number": "A.2.4", + "spec": "MathML 4.0", + "text": "Content MathML", + "url": "https://w3c.github.io/mathml/#content-mathml" + }, + "snapshot": { + "number": "A.2.4", + "spec": "MathML 4.0", + "text": "Content MathML", + "url": "https://www.w3.org/TR/mathml4/#content-mathml" + } + }, + "#content-mathml-elements-encoding-expression-structure": { + "current": { + "number": "4.2", + "spec": "MathML 4.0", + "text": "Content MathML Elements Encoding Expression Structure", + "url": "https://w3c.github.io/mathml/#content-mathml-elements-encoding-expression-structure" + }, + "snapshot": { + "number": "4.2", + "spec": "MathML 4.0", + "text": "Content MathML Elements Encoding Expression Structure", + "url": "https://www.w3.org/TR/mathml4/#content-mathml-elements-encoding-expression-structure" + } + }, + "#content-mathml-for-specific-structures": { + "current": { + "number": "4.3", + "spec": "MathML 4.0", + "text": "Content MathML for Specific Structures", + "url": "https://w3c.github.io/mathml/#content-mathml-for-specific-structures" + }, + "snapshot": { + "number": "4.3", + "spec": "MathML 4.0", + "text": "Content MathML for Specific Structures", + "url": "https://www.w3.org/TR/mathml4/#content-mathml-for-specific-structures" + } + }, + "#content-symbols-csymbol": { + "current": { + "number": "4.2.3", + "spec": "MathML 4.0", + "text": "Content Symbols <csymbol>", + "url": "https://w3c.github.io/mathml/#content-symbols-csymbol" + }, + "snapshot": { + "number": "4.2.3", + "spec": "MathML 4.0", + "text": "Content Symbols <csymbol>", + "url": "https://www.w3.org/TR/mathml4/#content-symbols-csymbol" + } + }, + "#control-of-linebreaks": { + "current": { + "number": "3.1.7.1", + "spec": "MathML 4.0", + "text": "Control of Linebreaks", + "url": "https://w3c.github.io/mathml/#control-of-linebreaks" + }, + "snapshot": { + "number": "3.1.7.1", + "spec": "MathML 4.0", + "text": "Control of Linebreaks", + "url": "https://www.w3.org/TR/mathml4/#control-of-linebreaks" + } + }, + "#default-value-of-the-form-attribute": { + "current": { + "number": "3.2.5.6.2", + "spec": "MathML 4.0", + "text": "Default value of the form attribute", + "url": "https://w3c.github.io/mathml/#default-value-of-the-form-attribute" + }, + "snapshot": { + "number": "3.2.5.6.2", + "spec": "MathML 4.0", + "text": "Default value of the form attribute", + "url": "https://www.w3.org/TR/mathml4/#default-value-of-the-form-attribute" + } + }, + "#default-values-of-attributes": { + "current": { + "number": "2.1.5.3", + "spec": "MathML 4.0", + "text": "Default values of attributes", + "url": "https://w3c.github.io/mathml/#default-values-of-attributes" + }, + "snapshot": { + "number": "2.1.5.3", + "spec": "MathML 4.0", + "text": "Default values of attributes", + "url": "https://www.w3.org/TR/mathml4/#default-values-of-attributes" + } + }, + "#definition-of-space-like-elements": { + "current": { + "number": "3.2.7.4", + "spec": "MathML 4.0", + "text": "Definition of space-like elements", + "url": "https://w3c.github.io/mathml/#definition-of-space-like-elements" + }, + "snapshot": { + "number": "3.2.7.4", + "spec": "MathML 4.0", + "text": "Definition of space-like elements", + "url": "https://www.w3.org/TR/mathml4/#definition-of-space-like-elements" + } + }, + "#deprecated-mathml-1-x-and-mathml-2-x-features": { + "current": { + "number": "D.1.2", + "spec": "MathML 4.0", + "text": "Deprecated MathML 1.x and MathML 2.x Features", + "url": "https://w3c.github.io/mathml/#deprecated-mathml-1-x-and-mathml-2-x-features" + }, + "snapshot": { + "number": "D.1.2", + "spec": "MathML 4.0", + "text": "Deprecated MathML 1.x and MathML 2.x Features", + "url": "https://www.w3.org/TR/mathml4/#deprecated-mathml-1-x-and-mathml-2-x-features" + } + }, + "#derivatives": { + "current": { + "number": "F.2.1", + "spec": "MathML 4.0", + "text": "Derivatives", + "url": "https://w3c.github.io/mathml/#derivatives" + }, + "snapshot": { + "number": "F.2.1", + "spec": "MathML 4.0", + "text": "Derivatives", + "url": "https://www.w3.org/TR/mathml4/#derivatives" + } + }, + "#description": { + "current": { + "number": "3.2.1.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description" + }, + "snapshot": { + "number": "3.2.1.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description" + } + }, + "#description-0": { + "current": { + "number": "3.2.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-0" + }, + "snapshot": { + "number": "3.2.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-0" + } + }, + "#description-1": { + "current": { + "number": "3.2.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-1" + }, + "snapshot": { + "number": "3.2.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-1" + } + }, + "#description-10": { + "current": { + "number": "3.3.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-10" + }, + "snapshot": { + "number": "3.3.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-10" + } + }, + "#description-11": { + "current": { + "number": "3.3.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-11" + }, + "snapshot": { + "number": "3.3.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-11" + } + }, + "#description-12": { + "current": { + "number": "3.3.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-12" + }, + "snapshot": { + "number": "3.3.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-12" + } + }, + "#description-13": { + "current": { + "number": "3.3.8.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-13" + }, + "snapshot": { + "number": "3.3.8.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-13" + } + }, + "#description-14": { + "current": { + "number": "3.3.9.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-14" + }, + "snapshot": { + "number": "3.3.9.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-14" + } + }, + "#description-15": { + "current": { + "number": "3.4.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-15" + }, + "snapshot": { + "number": "3.4.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-15" + } + }, + "#description-16": { + "current": { + "number": "3.4.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-16" + }, + "snapshot": { + "number": "3.4.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-16" + } + }, + "#description-17": { + "current": { + "number": "3.4.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-17" + }, + "snapshot": { + "number": "3.4.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-17" + } + }, + "#description-18": { + "current": { + "number": "3.4.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-18" + }, + "snapshot": { + "number": "3.4.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-18" + } + }, + "#description-19": { + "current": { + "number": "3.4.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-19" + }, + "snapshot": { + "number": "3.4.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-19" + } + }, + "#description-2": { + "current": { + "number": "3.2.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-2" + }, + "snapshot": { + "number": "3.2.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-2" + } + }, + "#description-20": { + "current": { + "number": "3.4.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-20" + }, + "snapshot": { + "number": "3.4.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-20" + } + }, + "#description-21": { + "current": { + "number": "3.4.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-21" + }, + "snapshot": { + "number": "3.4.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-21" + } + }, + "#description-22": { + "current": { + "number": "3.5.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-22" + }, + "snapshot": { + "number": "3.5.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-22" + } + }, + "#description-23": { + "current": { + "number": "3.5.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-23" + }, + "snapshot": { + "number": "3.5.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-23" + } + }, + "#description-24": { + "current": { + "number": "3.5.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-24" + }, + "snapshot": { + "number": "3.5.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-24" + } + }, + "#description-25": { + "current": { + "number": "3.5.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-25" + }, + "snapshot": { + "number": "3.5.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-25" + } + }, + "#description-26": { + "current": { + "number": "3.5.5.2", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-26" + }, + "snapshot": { + "number": "3.5.5.2", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-26" + } + }, + "#description-27": { + "current": { + "number": "3.6.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-27" + }, + "snapshot": { + "number": "3.6.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-27" + } + }, + "#description-28": { + "current": { + "number": "3.6.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-28" + }, + "snapshot": { + "number": "3.6.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-28" + } + }, + "#description-29": { + "current": { + "number": "3.6.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-29" + }, + "snapshot": { + "number": "3.6.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-29" + } + }, + "#description-3": { + "current": { + "number": "3.2.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-3" + }, + "snapshot": { + "number": "3.2.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-3" + } + }, + "#description-30": { + "current": { + "number": "3.6.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-30" + }, + "snapshot": { + "number": "3.6.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-30" + } + }, + "#description-31": { + "current": { + "number": "3.6.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-31" + }, + "snapshot": { + "number": "3.6.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-31" + } + }, + "#description-32": { + "current": { + "number": "3.6.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-32" + }, + "snapshot": { + "number": "3.6.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-32" + } + }, + "#description-33": { + "current": { + "number": "3.6.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-33" + }, + "snapshot": { + "number": "3.6.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-33" + } + }, + "#description-34": { + "current": { + "number": "6.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-34" + }, + "snapshot": { + "number": "5.2.5.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-34" + } + }, + "#description-35": { + "current": { + "number": "6.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-35" + }, + "snapshot": { + "number": "5.2.6.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-35" + } + }, + "#description-36": { + "current": { + "number": "6.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-36" + }, + "snapshot": { + "number": "5.2.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-36" + } + }, + "#description-4": { + "current": { + "number": "3.2.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-4" + }, + "snapshot": { + "number": "3.2.7.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-4" + } + }, + "#description-5": { + "current": { + "number": "3.2.8.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-5" + }, + "snapshot": { + "number": "3.2.8.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-5" + } + }, + "#description-6": { + "current": { + "number": "3.3.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-6" + }, + "snapshot": { + "number": "3.3.1.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-6" + } + }, + "#description-7": { + "current": { + "number": "3.3.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-7" + }, + "snapshot": { + "number": "3.3.2.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-7" + } + }, + "#description-8": { + "current": { + "number": "3.3.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-8" + }, + "snapshot": { + "number": "3.3.3.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-8" + } + }, + "#description-9": { + "current": { + "number": "3.3.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://w3c.github.io/mathml/#description-9" + }, + "snapshot": { + "number": "3.3.4.1", + "spec": "MathML 4.0", + "text": "Description", + "url": "https://www.w3.org/TR/mathml4/#description-9" + } + }, + "#detailed-rendering-rules-for-mo-elements": { + "current": { + "number": "3.2.5.6", + "spec": "MathML 4.0", + "text": "Detailed rendering rules for <mo> elements", + "url": "https://w3c.github.io/mathml/#detailed-rendering-rules-for-mo-elements" + }, + "snapshot": { + "number": "3.2.5.6", + "spec": "MathML 4.0", + "text": "Detailed rendering rules for <mo> elements", + "url": "https://www.w3.org/TR/mathml4/#detailed-rendering-rules-for-mo-elements" + } + }, + "#dictionary-based-attributes": { + "current": { + "number": "3.2.5.2.1", + "spec": "MathML 4.0", + "text": "Dictionary-based attributes", + "url": "https://w3c.github.io/mathml/#dictionary-based-attributes" + }, + "snapshot": { + "number": "3.2.5.2.1", + "spec": "MathML 4.0", + "text": "Dictionary-based attributes", + "url": "https://www.w3.org/TR/mathml4/#dictionary-based-attributes" + } + }, + "#differentiation-diff": { + "current": { + "number": "4.3.8.2", + "spec": "MathML 4.0", + "text": "Differentiation <diff/>", + "url": "https://w3c.github.io/mathml/#differentiation-diff" + }, + "snapshot": { + "number": "4.3.8.2", + "spec": "MathML 4.0", + "text": "Differentiation <diff/>", + "url": "https://www.w3.org/TR/mathml4/#differentiation-diff" + } + }, + "#directionality": { + "current": { + "number": "3.1.5", + "spec": "MathML 4.0", + "text": "Directionality", + "url": "https://w3c.github.io/mathml/#directionality" + }, + "snapshot": { + "number": "3.1.5", + "spec": "MathML 4.0", + "text": "Directionality", + "url": "https://www.w3.org/TR/mathml4/#directionality" + } + }, + "#discussion": { + "current": { + "number": "7.3.3", + "spec": "MathML 4.0", + "text": "Discussion", + "url": "https://w3c.github.io/mathml/#discussion" + }, + "snapshot": { + "number": "6.3.3", + "spec": "MathML 4.0", + "text": "Discussion", + "url": "https://www.w3.org/TR/mathml4/#discussion" + } + }, + "#displaystyle-and-scriptlevel": { + "current": { + "number": "3.1.6", + "spec": "MathML 4.0", + "text": "Displaystyle and Scriptlevel", + "url": "https://w3c.github.io/mathml/#displaystyle-and-scriptlevel" + }, + "snapshot": { + "number": "3.1.6", + "spec": "MathML 4.0", + "text": "Displaystyle and Scriptlevel", + "url": "https://www.w3.org/TR/mathml4/#displaystyle-and-scriptlevel" + } + }, + "#elementary-math": { + "current": { + "number": "3.6", + "spec": "MathML 4.0", + "text": "Elementary Math", + "url": "https://w3c.github.io/mathml/#elementary-math" + }, + "snapshot": { + "number": "3.6", + "spec": "MathML 4.0", + "text": "Elementary Math", + "url": "https://www.w3.org/TR/mathml4/#elementary-math" + } + }, + "#elementary-math-examples": { + "current": { + "number": "3.6.8", + "spec": "MathML 4.0", + "text": "Elementary Math Examples", + "url": "https://w3c.github.io/mathml/#elementary-math-examples" + }, + "snapshot": { + "number": "3.6.8", + "spec": "MathML 4.0", + "text": "Elementary Math Examples", + "url": "https://www.w3.org/TR/mathml4/#elementary-math-examples" + } + }, + "#elementary-math-layout": { + "current": { + "number": "3.1.8.5", + "spec": "MathML 4.0", + "text": "Elementary Math Layout", + "url": "https://w3c.github.io/mathml/#elementary-math-layout" + }, + "snapshot": { + "number": "3.1.8.5", + "spec": "MathML 4.0", + "text": "Elementary Math Layout", + "url": "https://www.w3.org/TR/mathml4/#elementary-math-layout" + } + }, + "#elementary-math-notation": { + "current": { + "number": "C.4.2.6", + "spec": "MathML 4.0", + "text": "Elementary Math Notation", + "url": "https://w3c.github.io/mathml/#elementary-math-notation" + }, + "snapshot": { + "number": "C.4.2.6", + "spec": "MathML 4.0", + "text": "Elementary Math Notation", + "url": "https://www.w3.org/TR/mathml4/#elementary-math-notation" + } + }, + "#elements-with-special-behaviors": { + "current": { + "number": "3.1.4", + "spec": "MathML 4.0", + "text": "Elements with Special Behaviors", + "url": "https://w3c.github.io/mathml/#elements-with-special-behaviors" + }, + "snapshot": { + "number": "3.1.4", + "spec": "MathML 4.0", + "text": "Elements with Special Behaviors", + "url": "https://www.w3.org/TR/mathml4/#elements-with-special-behaviors" + } + }, + "#eliminate-domainofapplication": { + "current": { + "number": "F.6", + "spec": "MathML 4.0", + "text": "Eliminate domainofapplication", + "url": "https://w3c.github.io/mathml/#eliminate-domainofapplication" + }, + "snapshot": { + "number": "F.6", + "spec": "MathML 4.0", + "text": "Eliminate domainofapplication", + "url": "https://www.w3.org/TR/mathml4/#eliminate-domainofapplication" + } + }, + "#embedding-html-in-mathml": { + "current": { + "number": "3.2.2.1", + "spec": "MathML 4.0", + "text": "Embedding HTML in MathML", + "url": "https://w3c.github.io/mathml/#embedding-html-in-mathml" + }, + "snapshot": { + "number": "3.2.2.1", + "spec": "MathML 4.0", + "text": "Embedding HTML in MathML", + "url": "https://www.w3.org/TR/mathml4/#embedding-html-in-mathml" + } + }, + "#enclose-expression-inside-notation-menclose": { + "current": { + "number": "3.3.9", + "spec": "MathML 4.0", + "text": "Enclose Expression Inside Notation <menclose>", + "url": "https://w3c.github.io/mathml/#enclose-expression-inside-notation-menclose" + }, + "snapshot": { + "number": "3.3.9", + "spec": "MathML 4.0", + "text": "Enclose Expression Inside Notation <menclose>", + "url": "https://www.w3.org/TR/mathml4/#enclose-expression-inside-notation-menclose" + } + }, + "#encoded-bytes-cbytes": { + "current": { + "number": "4.2.10", + "spec": "MathML 4.0", + "text": "Encoded Bytes <cbytes>", + "url": "https://w3c.github.io/mathml/#encoded-bytes-cbytes" + }, + "snapshot": { + "number": "4.2.10", + "spec": "MathML 4.0", + "text": "Encoded Bytes <cbytes>", + "url": "https://www.w3.org/TR/mathml4/#encoded-bytes-cbytes" + } + }, + "#enlivening-expressions": { + "current": { + "number": "3.1.8.6", + "spec": "MathML 4.0", + "text": "Enlivening Expressions", + "url": "https://w3c.github.io/mathml/#enlivening-expressions" + }, + "snapshot": { + "number": "3.1.8.6", + "spec": "MathML 4.0", + "text": "Enlivening Expressions", + "url": "https://www.w3.org/TR/mathml4/#enlivening-expressions" + } + }, + "#enlivening-expressions-0": { + "current": { + "number": "3.7", + "spec": "MathML 4.0", + "text": "Enlivening Expressions", + "url": "https://w3c.github.io/mathml/#enlivening-expressions-0" + }, + "snapshot": { + "number": "3.7", + "spec": "MathML 4.0", + "text": "Enlivening Expressions", + "url": "https://www.w3.org/TR/mathml4/#enlivening-expressions-0" + } + }, + "#entry-in-table-or-matrix-mtd": { + "current": { + "number": "3.5.4", + "spec": "MathML 4.0", + "text": "Entry in Table or Matrix <mtd>", + "url": "https://w3c.github.io/mathml/#entry-in-table-or-matrix-mtd" + }, + "snapshot": { + "number": "3.5.4", + "spec": "MathML 4.0", + "text": "Entry in Table or Matrix <mtd>", + "url": "https://www.w3.org/TR/mathml4/#entry-in-table-or-matrix-mtd" + } + }, + "#equation-numbering": { + "current": { + "number": "3.5.3.3", + "spec": "MathML 4.0", + "text": "Equation Numbering", + "url": "https://w3c.github.io/mathml/#equation-numbering" + }, + "snapshot": { + "number": "3.5.3.3", + "spec": "MathML 4.0", + "text": "Equation Numbering", + "url": "https://www.w3.org/TR/mathml4/#equation-numbering" + } + }, + "#error-markup-cerror": { + "current": { + "number": "4.2.9", + "spec": "MathML 4.0", + "text": "Error Markup <cerror>", + "url": "https://w3c.github.io/mathml/#error-markup-cerror" + }, + "snapshot": { + "number": "4.2.9", + "spec": "MathML 4.0", + "text": "Error Markup <cerror>", + "url": "https://www.w3.org/TR/mathml4/#error-markup-cerror" + } + }, + "#error-message-merror": { + "current": { + "number": "3.3.5", + "spec": "MathML 4.0", + "text": "Error Message <merror>", + "url": "https://w3c.github.io/mathml/#error-message-merror" + }, + "snapshot": { + "number": "3.3.5", + "spec": "MathML 4.0", + "text": "Error Message <merror>", + "url": "https://www.w3.org/TR/mathml4/#error-message-merror" + } + }, + "#example": { + "current": { + "number": "3.2.1.1.3", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example" + }, + "snapshot": { + "number": "3.2.1.1.3", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example" + } + }, + "#example-0": { + "current": { + "number": "3.3.5.3", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-0" + }, + "snapshot": { + "number": "3.3.5.3", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-0" + } + }, + "#example-1": { + "current": { + "number": "3.5.3.4", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-1" + }, + "snapshot": { + "number": "3.5.3.4", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-1" + } + }, + "#example-10": { + "current": { + "number": "4.3.10.5.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-10" + }, + "snapshot": { + "number": "4.3.10.5.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-10" + } + }, + "#example-2": { + "current": { + "number": "4.3.5.1.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-2" + }, + "snapshot": { + "number": "4.3.5.1.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-2" + } + }, + "#example-3": { + "current": { + "number": "4.3.5.1.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-3" + }, + "snapshot": { + "number": "4.3.5.1.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-3" + } + }, + "#example-4": { + "current": { + "number": "4.3.5.8.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-4" + }, + "snapshot": { + "number": "4.3.5.8.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-4" + } + }, + "#example-5": { + "current": { + "number": "4.3.7.1.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-5" + }, + "snapshot": { + "number": "4.3.7.1.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-5" + } + }, + "#example-6": { + "current": { + "number": "4.3.7.5.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-6" + }, + "snapshot": { + "number": "4.3.7.5.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-6" + } + }, + "#example-7": { + "current": { + "number": "4.3.8.1.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-7" + }, + "snapshot": { + "number": "4.3.8.1.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-7" + } + }, + "#example-8": { + "current": { + "number": "4.3.8.2.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-8" + }, + "snapshot": { + "number": "4.3.8.2.2", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-8" + } + }, + "#example-9": { + "current": { + "number": "4.3.10.3.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://w3c.github.io/mathml/#example-9" + }, + "snapshot": { + "number": "4.3.10.3.1", + "spec": "MathML 4.0", + "text": "Example", + "url": "https://www.w3.org/TR/mathml4/#example-9" + } + }, + "#example-of-stretchy-attributes": { + "current": { + "number": "3.2.5.7.1", + "spec": "MathML 4.0", + "text": "Example of stretchy attributes", + "url": "https://w3c.github.io/mathml/#example-of-stretchy-attributes" + }, + "snapshot": { + "number": "3.2.5.7.1", + "spec": "MathML 4.0", + "text": "Example of stretchy attributes", + "url": "https://www.w3.org/TR/mathml4/#example-of-stretchy-attributes" + } + }, + "#examples": { + "current": { + "number": "3.2.3.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples" + }, + "snapshot": { + "number": "3.2.3.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples" + } + }, + "#examples-0": { + "current": { + "number": "3.2.4.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-0" + }, + "snapshot": { + "number": "3.2.4.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-0" + } + }, + "#examples-1": { + "current": { + "number": "3.2.5.5.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-1" + }, + "snapshot": { + "number": "3.2.5.5.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-1" + } + }, + "#examples-10": { + "current": { + "number": "3.3.8.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-10" + }, + "snapshot": { + "number": "3.3.8.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-10" + } + }, + "#examples-11": { + "current": { + "number": "3.3.9.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-11" + }, + "snapshot": { + "number": "3.3.9.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-11" + } + }, + "#examples-12": { + "current": { + "number": "3.4.3.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-12" + }, + "snapshot": { + "number": "3.4.3.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-12" + } + }, + "#examples-13": { + "current": { + "number": "3.4.4.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-13" + }, + "snapshot": { + "number": "3.4.4.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-13" + } + }, + "#examples-14": { + "current": { + "number": "3.4.5.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-14" + }, + "snapshot": { + "number": "3.4.5.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-14" + } + }, + "#examples-15": { + "current": { + "number": "3.4.6.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-15" + }, + "snapshot": { + "number": "3.4.6.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-15" + } + }, + "#examples-16": { + "current": { + "number": "3.4.7.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-16" + }, + "snapshot": { + "number": "3.4.7.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-16" + } + }, + "#examples-17": { + "current": { + "number": "3.5.1.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-17" + }, + "snapshot": { + "number": "3.5.1.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-17" + } + }, + "#examples-18": { + "current": { + "number": "4.3.5.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-18" + }, + "snapshot": { + "number": "4.3.5.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-18" + } + }, + "#examples-19": { + "current": { + "number": "4.3.5.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-19" + }, + "snapshot": { + "number": "4.3.5.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-19" + } + }, + "#examples-2": { + "current": { + "number": "3.2.6.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-2" + }, + "snapshot": { + "number": "3.2.6.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-2" + } + }, + "#examples-20": { + "current": { + "number": "4.3.5.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-20" + }, + "snapshot": { + "number": "4.3.5.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-20" + } + }, + "#examples-21": { + "current": { + "number": "4.3.5.5.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-21" + }, + "snapshot": { + "number": "4.3.5.5.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-21" + } + }, + "#examples-22": { + "current": { + "number": "4.3.5.6.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-22" + }, + "snapshot": { + "number": "4.3.5.6.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-22" + } + }, + "#examples-23": { + "current": { + "number": "4.3.5.7.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-23" + }, + "snapshot": { + "number": "4.3.5.7.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-23" + } + }, + "#examples-24": { + "current": { + "number": "4.3.5.8.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-24" + }, + "snapshot": { + "number": "4.3.5.8.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-24" + } + }, + "#examples-25": { + "current": { + "number": "4.3.5.10.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-25" + }, + "snapshot": { + "number": "4.3.5.10.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-25" + } + }, + "#examples-26": { + "current": { + "number": "4.3.5.11.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-26" + }, + "snapshot": { + "number": "4.3.5.11.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-26" + } + }, + "#examples-27": { + "current": { + "number": "4.3.5.12.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-27" + }, + "snapshot": { + "number": "4.3.5.12.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-27" + } + }, + "#examples-28": { + "current": { + "number": "4.3.5.13.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-28" + }, + "snapshot": { + "number": "4.3.5.13.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-28" + } + }, + "#examples-29": { + "current": { + "number": "4.3.6.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-29" + }, + "snapshot": { + "number": "4.3.6.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-29" + } + }, + "#examples-3": { + "current": { + "number": "3.2.7.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-3" + }, + "snapshot": { + "number": "3.2.7.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-3" + } + }, + "#examples-30": { + "current": { + "number": "4.3.6.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-30" + }, + "snapshot": { + "number": "4.3.6.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-30" + } + }, + "#examples-31": { + "current": { + "number": "4.3.6.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-31" + }, + "snapshot": { + "number": "4.3.6.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-31" + } + }, + "#examples-32": { + "current": { + "number": "4.3.6.3.2", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-32" + }, + "snapshot": { + "number": "4.3.6.3.2", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-32" + } + }, + "#examples-33": { + "current": { + "number": "4.3.6.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-33" + }, + "snapshot": { + "number": "4.3.6.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-33" + } + }, + "#examples-34": { + "current": { + "number": "4.3.6.5.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-34" + }, + "snapshot": { + "number": "4.3.6.5.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-34" + } + }, + "#examples-35": { + "current": { + "number": "4.3.7.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-35" + }, + "snapshot": { + "number": "4.3.7.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-35" + } + }, + "#examples-36": { + "current": { + "number": "4.3.7.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-36" + }, + "snapshot": { + "number": "4.3.7.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-36" + } + }, + "#examples-37": { + "current": { + "number": "4.3.7.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-37" + }, + "snapshot": { + "number": "4.3.7.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-37" + } + }, + "#examples-38": { + "current": { + "number": "4.3.7.6.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-38" + }, + "snapshot": { + "number": "4.3.7.6.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-38" + } + }, + "#examples-39": { + "current": { + "number": "4.3.7.7.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-39" + }, + "snapshot": { + "number": "4.3.7.7.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-39" + } + }, + "#examples-4": { + "current": { + "number": "3.3.1.4", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-4" + }, + "snapshot": { + "number": "3.3.1.4", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-4" + } + }, + "#examples-40": { + "current": { + "number": "4.3.7.7.2", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-40" + }, + "snapshot": { + "number": "4.3.7.7.2", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-40" + } + }, + "#examples-41": { + "current": { + "number": "4.3.7.8.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-41" + }, + "snapshot": { + "number": "4.3.7.8.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-41" + } + }, + "#examples-42": { + "current": { + "number": "4.3.7.9.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-42" + }, + "snapshot": { + "number": "4.3.7.9.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-42" + } + }, + "#examples-43": { + "current": { + "number": "4.3.8.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-43" + }, + "snapshot": { + "number": "4.3.8.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-43" + } + }, + "#examples-44": { + "current": { + "number": "4.3.8.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-44" + }, + "snapshot": { + "number": "4.3.8.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-44" + } + }, + "#examples-45": { + "current": { + "number": "4.3.8.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-45" + }, + "snapshot": { + "number": "4.3.8.3.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-45" + } + }, + "#examples-46": { + "current": { + "number": "4.3.8.3.2", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-46" + }, + "snapshot": { + "number": "4.3.8.3.2", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-46" + } + }, + "#examples-47": { + "current": { + "number": "4.3.9.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-47" + }, + "snapshot": { + "number": "4.3.9.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-47" + } + }, + "#examples-48": { + "current": { + "number": "4.3.9.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-48" + }, + "snapshot": { + "number": "4.3.9.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-48" + } + }, + "#examples-49": { + "current": { + "number": "4.3.10.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-49" + }, + "snapshot": { + "number": "4.3.10.1.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-49" + } + }, + "#examples-5": { + "current": { + "number": "3.3.2.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-5" + }, + "snapshot": { + "number": "3.3.2.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-5" + } + }, + "#examples-50": { + "current": { + "number": "4.3.10.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-50" + }, + "snapshot": { + "number": "4.3.10.2.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-50" + } + }, + "#examples-51": { + "current": { + "number": "4.3.10.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-51" + }, + "snapshot": { + "number": "4.3.10.4.1", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-51" + } + }, + "#examples-52": { + "current": { + "number": "7.3.4", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-52" + }, + "snapshot": { + "number": "6.3.4", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-52" + } + }, + "#examples-6": { + "current": { + "number": "3.3.3.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-6" + }, + "snapshot": { + "number": "3.3.3.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-6" + } + }, + "#examples-7": { + "current": { + "number": "3.3.4.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-7" + }, + "snapshot": { + "number": "3.3.4.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-7" + } + }, + "#examples-8": { + "current": { + "number": "3.3.6.4", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-8" + }, + "snapshot": { + "number": "3.3.6.4", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-8" + } + }, + "#examples-9": { + "current": { + "number": "3.3.7.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://w3c.github.io/mathml/#examples-9" + }, + "snapshot": { + "number": "3.3.7.3", + "spec": "MathML 4.0", + "text": "Examples", + "url": "https://www.w3.org/TR/mathml4/#examples-9" + } + }, + "#examples-elements-specified-by-condition": { + "current": { + "number": "4.3.5.9.2", + "spec": "MathML 4.0", + "text": "Examples (Elements specified by condition)", + "url": "https://w3c.github.io/mathml/#examples-elements-specified-by-condition" + }, + "snapshot": { + "number": "4.3.5.9.2", + "spec": "MathML 4.0", + "text": "Examples (Elements specified by condition)", + "url": "https://www.w3.org/TR/mathml4/#examples-elements-specified-by-condition" + } + }, + "#examples-explicit-elements": { + "current": { + "number": "4.3.5.9.1", + "spec": "MathML 4.0", + "text": "Examples (Explicit elements)", + "url": "https://w3c.github.io/mathml/#examples-explicit-elements" + }, + "snapshot": { + "number": "4.3.5.9.1", + "spec": "MathML 4.0", + "text": "Examples (Explicit elements)", + "url": "https://www.w3.org/TR/mathml4/#examples-explicit-elements" + } + }, + "#examples-of-complex-representations-of-numbers": { + "current": { + "number": "3.2.4.4.1", + "spec": "MathML 4.0", + "text": "Examples of complex representations of numbers", + "url": "https://w3c.github.io/mathml/#examples-of-complex-representations-of-numbers" + }, + "snapshot": { + "number": "3.2.4.4.1", + "spec": "MathML 4.0", + "text": "Examples of complex representations of numbers", + "url": "https://www.w3.org/TR/mathml4/#examples-of-complex-representations-of-numbers" + } + }, + "#examples-of-linebreaking": { + "current": { + "number": "3.1.7.2", + "spec": "MathML 4.0", + "text": "Examples of Linebreaking", + "url": "https://w3c.github.io/mathml/#examples-of-linebreaking" + }, + "snapshot": { + "number": "3.1.7.2", + "spec": "MathML 4.0", + "text": "Examples of Linebreaking", + "url": "https://www.w3.org/TR/mathml4/#examples-of-linebreaking" + } + }, + "#examples-qualifiers": { + "current": { + "number": "4.3.5.7.2", + "spec": "MathML 4.0", + "text": "Examples (Qualifiers)", + "url": "https://w3c.github.io/mathml/#examples-qualifiers" + }, + "snapshot": { + "number": "4.3.5.7.2", + "spec": "MathML 4.0", + "text": "Examples (Qualifiers)", + "url": "https://www.w3.org/TR/mathml4/#examples-qualifiers" + } + }, + "#examples-with-fences-and-separators": { + "current": { + "number": "3.2.5.4", + "spec": "MathML 4.0", + "text": "Examples with fences and separators", + "url": "https://w3c.github.io/mathml/#examples-with-fences-and-separators" + }, + "snapshot": { + "number": "3.2.5.4", + "spec": "MathML 4.0", + "text": "Examples with fences and separators", + "url": "https://www.w3.org/TR/mathml4/#examples-with-fences-and-separators" + } + }, + "#examples-with-ordinary-operators": { + "current": { + "number": "3.2.5.3", + "spec": "MathML 4.0", + "text": "Examples with ordinary operators", + "url": "https://w3c.github.io/mathml/#examples-with-ordinary-operators" + }, + "snapshot": { + "number": "3.2.5.3", + "spec": "MathML 4.0", + "text": "Examples with ordinary operators", + "url": "https://www.w3.org/TR/mathml4/#examples-with-ordinary-operators" + } + }, + "#exception-for-embellished-operators": { + "current": { + "number": "3.2.5.6.3", + "spec": "MathML 4.0", + "text": "Exception for embellished operators", + "url": "https://w3c.github.io/mathml/#exception-for-embellished-operators" + }, + "snapshot": { + "number": "3.2.5.6.3", + "spec": "MathML 4.0", + "text": "Exception for embellished operators", + "url": "https://www.w3.org/TR/mathml4/#exception-for-embellished-operators" + } + }, + "#expression-concepts": { + "current": { + "number": "4.1.3", + "spec": "MathML 4.0", + "text": "Expression Concepts", + "url": "https://w3c.github.io/mathml/#expression-concepts" + }, + "snapshot": { + "number": "4.1.3", + "spec": "MathML 4.0", + "text": "Expression Concepts", + "url": "https://www.w3.org/TR/mathml4/#expression-concepts" + } + }, + "#expression-inside-pair-of-fences-mfenced": { + "current": { + "number": "3.3.8", + "spec": "MathML 4.0", + "text": "Expression Inside Pair of Fences <mfenced>", + "url": "https://w3c.github.io/mathml/#expression-inside-pair-of-fences-mfenced" + }, + "snapshot": { + "number": "3.3.8", + "spec": "MathML 4.0", + "text": "Expression Inside Pair of Fences <mfenced>", + "url": "https://www.w3.org/TR/mathml4/#expression-inside-pair-of-fences-mfenced" + } + }, + "#fill-in-the-blanks": { + "current": { + "number": "C.4.2.7", + "spec": "MathML 4.0", + "text": "Fill-in-the-Blanks", + "url": "https://w3c.github.io/mathml/#fill-in-the-blanks" + }, + "snapshot": { + "number": "C.4.2.7", + "spec": "MathML 4.0", + "text": "Fill-in-the-Blanks", + "url": "https://www.w3.org/TR/mathml4/#fill-in-the-blanks" + } + }, + "#fractions-mfrac": { + "current": { + "number": "3.3.2", + "spec": "MathML 4.0", + "text": "Fractions <mfrac>", + "url": "https://w3c.github.io/mathml/#fractions-mfrac" + }, + "snapshot": { + "number": "3.3.2", + "spec": "MathML 4.0", + "text": "Fractions <mfrac>", + "url": "https://www.w3.org/TR/mathml4/#fractions-mfrac" + } + }, + "#full-mathml": { + "current": { + "number": "A.2.5", + "spec": "MathML 4.0", + "text": "Full MathML", + "url": "https://w3c.github.io/mathml/#full-mathml" + }, + "snapshot": { + "number": "A.2.5", + "spec": "MathML 4.0", + "text": "Full MathML", + "url": "https://www.w3.org/TR/mathml4/#full-mathml" + } + }, + "#function-application-apply": { + "current": { + "number": "4.2.5", + "spec": "MathML 4.0", + "text": "Function Application <apply>", + "url": "https://w3c.github.io/mathml/#function-application-apply" + }, + "snapshot": { + "number": "4.2.5", + "spec": "MathML 4.0", + "text": "Function Application <apply>", + "url": "https://www.w3.org/TR/mathml4/#function-application-apply" + } + }, + "#general-considerations": { + "current": { + "number": "2.1.1", + "spec": "MathML 4.0", + "text": "General Considerations", + "url": "https://w3c.github.io/mathml/#general-considerations" + }, + "snapshot": { + "number": "2.1.1", + "spec": "MathML 4.0", + "text": "General Considerations", + "url": "https://www.w3.org/TR/mathml4/#general-considerations" + } + }, + "#general-layout-schemata": { + "current": { + "number": "3.1.8.2", + "spec": "MathML 4.0", + "text": "General Layout Schemata", + "url": "https://w3c.github.io/mathml/#general-layout-schemata" + }, + "snapshot": { + "number": "3.1.8.2", + "spec": "MathML 4.0", + "text": "General Layout Schemata", + "url": "https://www.w3.org/TR/mathml4/#general-layout-schemata" + } + }, + "#general-layout-schemata-0": { + "current": { + "number": "3.3", + "spec": "MathML 4.0", + "text": "General Layout Schemata", + "url": "https://w3c.github.io/mathml/#general-layout-schemata-0" + }, + "snapshot": { + "number": "3.3", + "spec": "MathML 4.0", + "text": "General Layout Schemata", + "url": "https://www.w3.org/TR/mathml4/#general-layout-schemata-0" + } + }, + "#group-rows-with-similar-positions-msgroup": { + "current": { + "number": "3.6.3", + "spec": "MathML 4.0", + "text": "Group Rows with Similar Positions <msgroup>", + "url": "https://w3c.github.io/mathml/#group-rows-with-similar-positions-msgroup" + }, + "snapshot": { + "number": "3.6.3", + "spec": "MathML 4.0", + "text": "Group Rows with Similar Positions <msgroup>", + "url": "https://www.w3.org/TR/mathml4/#group-rows-with-similar-positions-msgroup" + } + }, + "#handling-of-errors": { + "current": { + "number": "D.2", + "spec": "MathML 4.0", + "text": "Handling of Errors", + "url": "https://w3c.github.io/mathml/#handling-of-errors" + }, + "snapshot": { + "number": "D.2", + "spec": "MathML 4.0", + "text": "Handling of Errors", + "url": "https://www.w3.org/TR/mathml4/#handling-of-errors" + } + }, + "#horizontal-line-msline": { + "current": { + "number": "3.6.7", + "spec": "MathML 4.0", + "text": "Horizontal Line <msline/>", + "url": "https://w3c.github.io/mathml/#horizontal-line-msline" + }, + "snapshot": { + "number": "3.6.7", + "spec": "MathML 4.0", + "text": "Horizontal Line <msline/>", + "url": "https://www.w3.org/TR/mathml4/#horizontal-line-msline" + } + }, + "#horizontal-stretching-rules": { + "current": { + "number": "3.2.5.7.3", + "spec": "MathML 4.0", + "text": "Horizontal Stretching Rules", + "url": "https://w3c.github.io/mathml/#horizontal-stretching-rules" + }, + "snapshot": { + "number": "3.2.5.7.3", + "spec": "MathML 4.0", + "text": "Horizontal Stretching Rules", + "url": "https://www.w3.org/TR/mathml4/#horizontal-stretching-rules" + } + }, + "#horizontally-group-sub-expressions-mrow": { + "current": { + "number": "3.3.1", + "spec": "MathML 4.0", + "text": "Horizontally Group Sub-Expressions <mrow>", + "url": "https://w3c.github.io/mathml/#horizontally-group-sub-expressions-mrow" + }, + "snapshot": { + "number": "3.3.1", + "spec": "MathML 4.0", + "text": "Horizontally Group Sub-Expressions <mrow>", + "url": "https://www.w3.org/TR/mathml4/#horizontally-group-sub-expressions-mrow" + } + }, + "#identifier-mi": { + "current": { + "number": "3.2.3", + "spec": "MathML 4.0", + "text": "Identifier <mi>", + "url": "https://w3c.github.io/mathml/#identifier-mi" + }, + "snapshot": { + "number": "3.2.3", + "spec": "MathML 4.0", + "text": "Identifier <mi>", + "url": "https://www.w3.org/TR/mathml4/#identifier-mi" + } + }, + "#indentation-attributes": { + "current": { + "number": "3.2.5.2.3", + "spec": "MathML 4.0", + "text": "Indentation attributes", + "url": "https://w3c.github.io/mathml/#indentation-attributes" + }, + "snapshot": { + "number": "3.2.5.2.3", + "spec": "MathML 4.0", + "text": "Indentation attributes", + "url": "https://www.w3.org/TR/mathml4/#indentation-attributes" + } + }, + "#index-of-elements": { + "current": { + "number": "G.1", + "spec": "MathML 4.0", + "text": "Index of elements", + "url": "https://w3c.github.io/mathml/#index-of-elements" + }, + "snapshot": { + "number": "G.1", + "spec": "MathML 4.0", + "text": "Index of elements", + "url": "https://www.w3.org/TR/mathml4/#index-of-elements" + } + }, + "#indexing-of-the-operator-dictionary": { + "current": { + "number": "B.1", + "spec": "MathML 4.0", + "text": "Indexing of the operator dictionary", + "url": "https://w3c.github.io/mathml/#indexing-of-the-operator-dictionary" + }, + "snapshot": { + "number": "B.1", + "spec": "MathML 4.0", + "text": "Indexing of the operator dictionary", + "url": "https://www.w3.org/TR/mathml4/#indexing-of-the-operator-dictionary" + } + }, + "#inferred-mrow-s": { + "current": { + "number": "3.1.3.1", + "spec": "MathML 4.0", + "text": "Inferred <mrow>s", + "url": "https://w3c.github.io/mathml/#inferred-mrow-s" + }, + "snapshot": { + "number": "3.1.3.1", + "spec": "MathML 4.0", + "text": "Inferred <mrow>s", + "url": "https://www.w3.org/TR/mathml4/#inferred-mrow-s" + } + }, + "#informative-references": { + "current": { + "number": "J.2", + "spec": "MathML 4.0", + "text": "Informative references", + "url": "https://w3c.github.io/mathml/#informative-references" + }, + "snapshot": { + "number": "J.2", + "spec": "MathML 4.0", + "text": "Informative references", + "url": "https://www.w3.org/TR/mathml4/#informative-references" + } + }, + "#integral-int": { + "current": { + "number": "4.3.8.1", + "spec": "MathML 4.0", + "text": "Integral <int/>", + "url": "https://w3c.github.io/mathml/#integral-int" + }, + "snapshot": { + "number": "4.3.8.1", + "spec": "MathML 4.0", + "text": "Integral <int/>", + "url": "https://www.w3.org/TR/mathml4/#integral-int" + } + }, + "#integrals": { + "current": { + "number": "F.2.2", + "spec": "MathML 4.0", + "text": "Integrals", + "url": "https://w3c.github.io/mathml/#integrals" + }, + "snapshot": { + "number": "F.2.2", + "spec": "MathML 4.0", + "text": "Integrals", + "url": "https://www.w3.org/TR/mathml4/#integrals" + } + }, + "#integrals-0": { + "current": { + "number": "F.5.3", + "spec": "MathML 4.0", + "text": "Integrals", + "url": "https://w3c.github.io/mathml/#integrals-0" + }, + "snapshot": { + "number": "F.5.3", + "spec": "MathML 4.0", + "text": "Integrals", + "url": "https://www.w3.org/TR/mathml4/#integrals-0" + } + }, + "#intent-concept-dictionaries": { + "current": { + "number": "5.2", + "spec": "MathML 4.0", + "text": "Intent Concept Dictionaries", + "url": "https://w3c.github.io/mathml/#intent-concept-dictionaries" + }, + "snapshot": { + "number": "5.1.2", + "spec": "MathML 4.0", + "text": "Intent Concept Dictionaries", + "url": "https://www.w3.org/TR/mathml4/#intent-concept-dictionaries" + } + }, + "#intent-error-handling": { + "current": { + "number": "5.5", + "spec": "MathML 4.0", + "text": "Intent Error Handling", + "url": "https://w3c.github.io/mathml/#intent-error-handling" + } + }, + "#intent-error-recovery": { + "current": { + "number": "5.5.1", + "spec": "MathML 4.0", + "text": "Intent Error Recovery", + "url": "https://w3c.github.io/mathml/#intent-error-recovery" + } + }, + "#intent-examples": { + "current": { + "number": "5.7", + "spec": "MathML 4.0", + "text": "Intent Examples", + "url": "https://w3c.github.io/mathml/#intent-examples" + }, + "snapshot": { + "number": "5.1.3", + "spec": "MathML 4.0", + "text": "Intent Examples", + "url": "https://www.w3.org/TR/mathml4/#intent-examples" + } + }, + "#intent-properties": { + "current": { + "number": "5.3", + "spec": "MathML 4.0", + "text": "Intent Properties", + "url": "https://w3c.github.io/mathml/#intent-properties" + } + }, + "#intent-self-references": { + "current": { + "number": "5.4", + "spec": "MathML 4.0", + "text": "Intent Self References", + "url": "https://w3c.github.io/mathml/#intent-self-references" + } + }, + "#interactions-with-the-host-environment": { + "current": { + "number": "7", + "spec": "MathML 4.0", + "text": "Interactions with the Host Environment", + "url": "https://w3c.github.io/mathml/#interactions-with-the-host-environment" + }, + "snapshot": { + "number": "6", + "spec": "MathML 4.0", + "text": "Interactions with the Host Environment", + "url": "https://www.w3.org/TR/mathml4/#interactions-with-the-host-environment" + } + }, + "#interval-interval": { + "current": { + "number": "4.3.10.3", + "spec": "MathML 4.0", + "text": "Interval <interval>", + "url": "https://w3c.github.io/mathml/#interval-interval" + }, + "snapshot": { + "number": "4.3.10.3", + "spec": "MathML 4.0", + "text": "Interval <interval>", + "url": "https://www.w3.org/TR/mathml4/#interval-interval" + } + }, + "#intervals": { + "current": { + "number": "F.3.1", + "spec": "MathML 4.0", + "text": "Intervals", + "url": "https://w3c.github.io/mathml/#intervals" + }, + "snapshot": { + "number": "F.3.1", + "spec": "MathML 4.0", + "text": "Intervals", + "url": "https://www.w3.org/TR/mathml4/#intervals" + } + }, + "#intervals-vectors-matrices": { + "current": { + "number": "F.4.2", + "spec": "MathML 4.0", + "text": "Intervals, vectors, matrices", + "url": "https://w3c.github.io/mathml/#intervals-vectors-matrices" + }, + "snapshot": { + "number": "F.4.2", + "spec": "MathML 4.0", + "text": "Intervals, vectors, matrices", + "url": "https://www.w3.org/TR/mathml4/#intervals-vectors-matrices" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://w3c.github.io/mathml/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/mathml4/#introduction" + } + }, + "#introduction-0": { + "current": { + "number": "3.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://w3c.github.io/mathml/#introduction-0" + }, + "snapshot": { + "number": "3.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/mathml4/#introduction-0" + } + }, + "#introduction-1": { + "current": { + "number": "4.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://w3c.github.io/mathml/#introduction-1" + }, + "snapshot": { + "number": "4.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/mathml4/#introduction-1" + } + }, + "#introduction-2": { + "current": { + "number": "7.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://w3c.github.io/mathml/#introduction-2" + }, + "snapshot": { + "number": "6.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/mathml4/#introduction-2" + } + }, + "#introduction-3": { + "current": { + "number": "8.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://w3c.github.io/mathml/#introduction-3" + }, + "snapshot": { + "number": "7.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/mathml4/#introduction-3" + } + }, + "#introduction-4": { + "current": { + "number": "C.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://w3c.github.io/mathml/#introduction-4" + }, + "snapshot": { + "number": "C.1", + "spec": "MathML 4.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/mathml4/#introduction-4" + } + }, + "#invisible-operators": { + "current": { + "number": "3.2.5.5", + "spec": "MathML 4.0", + "text": "Invisible operators", + "url": "https://w3c.github.io/mathml/#invisible-operators" + }, + "snapshot": { + "number": "3.2.5.5", + "spec": "MathML 4.0", + "text": "Invisible operators", + "url": "https://www.w3.org/TR/mathml4/#invisible-operators" + } + }, + "#invisible-operators-0": { + "current": { + "number": "C.4.2.1", + "spec": "MathML 4.0", + "text": "Invisible Operators", + "url": "https://w3c.github.io/mathml/#invisible-operators-0" + }, + "snapshot": { + "number": "C.4.2.1", + "spec": "MathML 4.0", + "text": "Invisible Operators", + "url": "https://www.w3.org/TR/mathml4/#invisible-operators-0" + } + }, + "#invoking-mathml-processors": { + "current": { + "number": "7.2", + "spec": "MathML 4.0", + "text": "Invoking MathML Processors", + "url": "https://w3c.github.io/mathml/#invoking-mathml-processors" + }, + "snapshot": { + "number": "6.2", + "spec": "MathML 4.0", + "text": "Invoking MathML Processors", + "url": "https://www.w3.org/TR/mathml4/#invoking-mathml-processors" + } + }, + "#issue-summary": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Issue summary", + "url": "https://w3c.github.io/mathml/#issue-summary" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Issue summary", + "url": "https://www.w3.org/TR/mathml4/#issue-summary" + } + }, + "#keyboard-characters": { + "current": { + "number": "8.4.1", + "spec": "MathML 4.0", + "text": "Keyboard Characters", + "url": "https://w3c.github.io/mathml/#keyboard-characters" + }, + "snapshot": { + "number": "7.4.1", + "spec": "MathML 4.0", + "text": "Keyboard Characters", + "url": "https://www.w3.org/TR/mathml4/#keyboard-characters" + } + }, + "#labeled-row-in-table-or-matrix-mlabeledtr": { + "current": { + "number": "3.5.3", + "spec": "MathML 4.0", + "text": "Labeled Row in Table or Matrix <mlabeledtr>", + "url": "https://w3c.github.io/mathml/#labeled-row-in-table-or-matrix-mlabeledtr" + }, + "snapshot": { + "number": "3.5.3", + "spec": "MathML 4.0", + "text": "Labeled Row in Table or Matrix <mlabeledtr>", + "url": "https://www.w3.org/TR/mathml4/#labeled-row-in-table-or-matrix-mlabeledtr" + } + }, + "#lambda-expressions": { + "current": { + "number": "F.4.3", + "spec": "MathML 4.0", + "text": "Lambda expressions", + "url": "https://w3c.github.io/mathml/#lambda-expressions" + }, + "snapshot": { + "number": "F.4.3", + "spec": "MathML 4.0", + "text": "Lambda expressions", + "url": "https://www.w3.org/TR/mathml4/#lambda-expressions" + } + }, + "#lambda-lambda": { + "current": { + "number": "4.3.10.2", + "spec": "MathML 4.0", + "text": "Lambda <lambda>", + "url": "https://w3c.github.io/mathml/#lambda-lambda" + }, + "snapshot": { + "number": "4.3.10.2", + "spec": "MathML 4.0", + "text": "Lambda <lambda>", + "url": "https://www.w3.org/TR/mathml4/#lambda-lambda" + } + }, + "#legacy-mathml": { + "current": { + "number": "A.2.6", + "spec": "MathML 4.0", + "text": "Legacy MathML", + "url": "https://w3c.github.io/mathml/#legacy-mathml" + }, + "snapshot": { + "number": "A.2.6", + "spec": "MathML 4.0", + "text": "Legacy MathML", + "url": "https://www.w3.org/TR/mathml4/#legacy-mathml" + } + }, + "#legal-grouping-of-space-like-elements": { + "current": { + "number": "3.2.7.5", + "spec": "MathML 4.0", + "text": "Legal grouping of space-like elements", + "url": "https://w3c.github.io/mathml/#legal-grouping-of-space-like-elements" + }, + "snapshot": { + "number": "3.2.7.5", + "spec": "MathML 4.0", + "text": "Legal grouping of space-like elements", + "url": "https://www.w3.org/TR/mathml4/#legal-grouping-of-space-like-elements" + } + }, + "#length-valued-attributes": { + "current": { + "number": "2.1.5.2", + "spec": "MathML 4.0", + "text": "Length Valued Attributes", + "url": "https://w3c.github.io/mathml/#length-valued-attributes" + }, + "snapshot": { + "number": "2.1.5.2", + "spec": "MathML 4.0", + "text": "Length Valued Attributes", + "url": "https://www.w3.org/TR/mathml4/#length-valued-attributes" + } + }, + "#limits": { + "current": { + "number": "F.2.3", + "spec": "MathML 4.0", + "text": "Limits", + "url": "https://w3c.github.io/mathml/#limits" + }, + "snapshot": { + "number": "F.2.3", + "spec": "MathML 4.0", + "text": "Limits", + "url": "https://www.w3.org/TR/mathml4/#limits" + } + }, + "#limits-limit": { + "current": { + "number": "4.3.10.4", + "spec": "MathML 4.0", + "text": "Limits <limit/>", + "url": "https://w3c.github.io/mathml/#limits-limit" + }, + "snapshot": { + "number": "4.3.10.4", + "spec": "MathML 4.0", + "text": "Limits <limit/>", + "url": "https://www.w3.org/TR/mathml4/#limits-limit" + } + }, + "#linebreaking-attributes": { + "current": { + "number": "3.2.5.2.2", + "spec": "MathML 4.0", + "text": "Linebreaking attributes", + "url": "https://w3c.github.io/mathml/#linebreaking-attributes" + }, + "snapshot": { + "number": "3.2.5.2.2", + "spec": "MathML 4.0", + "text": "Linebreaking attributes", + "url": "https://www.w3.org/TR/mathml4/#linebreaking-attributes" + } + }, + "#linebreaking-of-expressions": { + "current": { + "number": "3.1.7", + "spec": "MathML 4.0", + "text": "Linebreaking of Expressions", + "url": "https://w3c.github.io/mathml/#linebreaking-of-expressions" + }, + "snapshot": { + "number": "3.1.7", + "spec": "MathML 4.0", + "text": "Linebreaking of Expressions", + "url": "https://www.w3.org/TR/mathml4/#linebreaking-of-expressions" + } + }, + "#linking": { + "current": { + "number": "7.4.4", + "spec": "MathML 4.0", + "text": "Linking", + "url": "https://w3c.github.io/mathml/#linking" + }, + "snapshot": { + "number": "6.4.4", + "spec": "MathML 4.0", + "text": "Linking", + "url": "https://www.w3.org/TR/mathml4/#linking" + } + }, + "#logarithm-log-logbase": { + "current": { + "number": "4.3.7.9", + "spec": "MathML 4.0", + "text": "Logarithm <log/> , <logbase>", + "url": "https://w3c.github.io/mathml/#logarithm-log-logbase" + }, + "snapshot": { + "number": "4.3.7.9", + "spec": "MathML 4.0", + "text": "Logarithm <log/> , <logbase>", + "url": "https://www.w3.org/TR/mathml4/#logarithm-log-logbase" + } + }, + "#logarithms": { + "current": { + "number": "F.2.6", + "spec": "MathML 4.0", + "text": "Logarithms", + "url": "https://w3c.github.io/mathml/#logarithms" + }, + "snapshot": { + "number": "F.2.6", + "spec": "MathML 4.0", + "text": "Logarithms", + "url": "https://www.w3.org/TR/mathml4/#logarithms" + } + }, + "#long-division": { + "current": { + "number": "3.6.8.3", + "spec": "MathML 4.0", + "text": "Long Division", + "url": "https://w3c.github.io/mathml/#long-division" + }, + "snapshot": { + "number": "3.6.8.3", + "spec": "MathML 4.0", + "text": "Long Division", + "url": "https://www.w3.org/TR/mathml4/#long-division" + } + }, + "#long-division-mlongdiv": { + "current": { + "number": "3.6.2", + "spec": "MathML 4.0", + "text": "Long Division <mlongdiv>", + "url": "https://w3c.github.io/mathml/#long-division-mlongdiv" + }, + "snapshot": { + "number": "3.6.2", + "spec": "MathML 4.0", + "text": "Long Division <mlongdiv>", + "url": "https://www.w3.org/TR/mathml4/#long-division-mlongdiv" + } + }, + "#making-sub-expressions-invisible-mphantom": { + "current": { + "number": "3.3.7", + "spec": "MathML 4.0", + "text": "Making Sub-Expressions Invisible <mphantom>", + "url": "https://w3c.github.io/mathml/#making-sub-expressions-invisible-mphantom" + }, + "snapshot": { + "number": "3.3.7", + "spec": "MathML 4.0", + "text": "Making Sub-Expressions Invisible <mphantom>", + "url": "https://www.w3.org/TR/mathml4/#making-sub-expressions-invisible-mphantom" + } + }, + "#mathematical-alphanumeric-symbols": { + "current": { + "number": "8.2", + "spec": "MathML 4.0", + "text": "Mathematical Alphanumeric Symbols", + "url": "https://w3c.github.io/mathml/#mathematical-alphanumeric-symbols" + }, + "snapshot": { + "number": "7.2", + "spec": "MathML 4.0", + "text": "Mathematical Alphanumeric Symbols", + "url": "https://www.w3.org/TR/mathml4/#mathematical-alphanumeric-symbols" + } + }, + "#mathematics-and-its-notation": { + "current": { + "number": "1.1", + "spec": "MathML 4.0", + "text": "Mathematics and its Notation", + "url": "https://w3c.github.io/mathml/#mathematics-and-its-notation" + }, + "snapshot": { + "number": "1.1", + "spec": "MathML 4.0", + "text": "Mathematics and its Notation", + "url": "https://www.w3.org/TR/mathml4/#mathematics-and-its-notation" + } + }, + "#mathematics-attributes-common-to-presentation-elements": { + "current": { + "number": "3.1.9", + "spec": "MathML 4.0", + "text": "Mathematics attributes common to presentation elements", + "url": "https://w3c.github.io/mathml/#mathematics-attributes-common-to-presentation-elements" + }, + "snapshot": { + "number": "3.1.9", + "spec": "MathML 4.0", + "text": "Mathematics attributes common to presentation elements", + "url": "https://www.w3.org/TR/mathml4/#mathematics-attributes-common-to-presentation-elements" + } + }, + "#mathematics-style-attributes-common-to-token-elements": { + "current": { + "number": "3.2.2", + "spec": "MathML 4.0", + "text": "Mathematics style attributes common to token elements", + "url": "https://w3c.github.io/mathml/#mathematics-style-attributes-common-to-token-elements" + }, + "snapshot": { + "number": "3.2.2", + "spec": "MathML 4.0", + "text": "Mathematics style attributes common to token elements", + "url": "https://www.w3.org/TR/mathml4/#mathematics-style-attributes-common-to-token-elements" + } + }, + "#mathml-accessibility": { + "current": { + "number": "C", + "spec": "MathML 4.0", + "text": "MathML Accessibility", + "url": "https://w3c.github.io/mathml/#mathml-accessibility" + }, + "snapshot": { + "number": "C", + "spec": "MathML 4.0", + "text": "MathML Accessibility", + "url": "https://www.w3.org/TR/mathml4/#mathml-accessibility" + } + }, + "#mathml-and-graphical-markup": { + "current": { + "number": "7.4.5", + "spec": "MathML 4.0", + "text": "MathML and Graphical Markup", + "url": "https://w3c.github.io/mathml/#mathml-and-graphical-markup" + }, + "snapshot": { + "number": "6.4.5", + "spec": "MathML 4.0", + "text": "MathML and Graphical Markup", + "url": "https://www.w3.org/TR/mathml4/#mathml-and-graphical-markup" + } + }, + "#mathml-and-namespaces": { + "current": { + "number": "2.1.2", + "spec": "MathML 4.0", + "text": "MathML and Namespaces", + "url": "https://w3c.github.io/mathml/#mathml-and-namespaces" + }, + "snapshot": { + "number": "2.1.2", + "spec": "MathML 4.0", + "text": "MathML and Namespaces", + "url": "https://www.w3.org/TR/mathml4/#mathml-and-namespaces" + } + }, + "#mathml-and-rendering": { + "current": { + "number": "2.1.4", + "spec": "MathML 4.0", + "text": "MathML and Rendering", + "url": "https://w3c.github.io/mathml/#mathml-and-rendering" + }, + "snapshot": { + "number": "2.1.4", + "spec": "MathML 4.0", + "text": "MathML and Rendering", + "url": "https://www.w3.org/TR/mathml4/#mathml-and-rendering" + } + }, + "#mathml-attribute-values": { + "current": { + "number": "2.1.5", + "spec": "MathML 4.0", + "text": "MathML Attribute Values", + "url": "https://w3c.github.io/mathml/#mathml-attribute-values" + }, + "snapshot": { + "number": "2.1.5", + "spec": "MathML 4.0", + "text": "MathML Attribute Values", + "url": "https://www.w3.org/TR/mathml4/#mathml-attribute-values" + } + }, + "#mathml-conformance": { + "current": { + "number": "D.1", + "spec": "MathML 4.0", + "text": "MathML Conformance", + "url": "https://w3c.github.io/mathml/#mathml-conformance" + }, + "snapshot": { + "number": "D.1", + "spec": "MathML 4.0", + "text": "MathML Conformance", + "url": "https://www.w3.org/TR/mathml4/#mathml-conformance" + } + }, + "#mathml-core": { + "current": { + "number": "A.2.1", + "spec": "MathML 4.0", + "text": "MathML Core", + "url": "https://w3c.github.io/mathml/#mathml-core" + }, + "snapshot": { + "number": "A.2.1", + "spec": "MathML 4.0", + "text": "MathML Core", + "url": "https://www.w3.org/TR/mathml4/#mathml-core" + } + }, + "#mathml-core-attributes": { + "current": { + "number": "3.1.9.1", + "spec": "MathML 4.0", + "text": "MathML Core Attributes", + "url": "https://w3c.github.io/mathml/#mathml-core-attributes" + }, + "snapshot": { + "number": "3.1.9.1", + "spec": "MathML 4.0", + "text": "MathML Core Attributes", + "url": "https://www.w3.org/TR/mathml4/#mathml-core-attributes" + } + }, + "#mathml-extension-mechanisms-and-conformance": { + "current": { + "number": "D.1.3", + "spec": "MathML 4.0", + "text": "MathML Extension Mechanisms and Conformance", + "url": "https://w3c.github.io/mathml/#mathml-extension-mechanisms-and-conformance" + }, + "snapshot": { + "number": "D.1.3", + "spec": "MathML 4.0", + "text": "MathML Extension Mechanisms and Conformance", + "url": "https://www.w3.org/TR/mathml4/#mathml-extension-mechanisms-and-conformance" + } + }, + "#mathml-fundamentals": { + "current": { + "number": "2", + "spec": "MathML 4.0", + "text": "MathML Fundamentals", + "url": "https://w3c.github.io/mathml/#mathml-fundamentals" + }, + "snapshot": { + "number": "2", + "spec": "MathML 4.0", + "text": "MathML Fundamentals", + "url": "https://www.w3.org/TR/mathml4/#mathml-fundamentals" + } + }, + "#mathml-index": { + "current": { + "number": "G", + "spec": "MathML 4.0", + "text": "MathML Index", + "url": "https://w3c.github.io/mathml/#mathml-index" + }, + "snapshot": { + "number": "G", + "spec": "MathML 4.0", + "text": "MathML Index", + "url": "https://www.w3.org/TR/mathml4/#mathml-index" + } + }, + "#mathml-notes": { + "current": { + "number": "1.4", + "spec": "MathML 4.0", + "text": "MathML Notes", + "url": "https://w3c.github.io/mathml/#mathml-notes" + }, + "snapshot": { + "number": "1.4", + "spec": "MathML 4.0", + "text": "MathML Notes", + "url": "https://www.w3.org/TR/mathml4/#mathml-notes" + } + }, + "#mathml-representation-of-an-alignment-example": { + "current": { + "number": "3.5.5.6", + "spec": "MathML 4.0", + "text": "MathML representation of an alignment example", + "url": "https://w3c.github.io/mathml/#mathml-representation-of-an-alignment-example" + }, + "snapshot": { + "number": "3.5.5.6", + "spec": "MathML 4.0", + "text": "MathML representation of an alignment example", + "url": "https://www.w3.org/TR/mathml4/#mathml-representation-of-an-alignment-example" + } + }, + "#mathml-syntax-and-grammar": { + "current": { + "number": "2.1", + "spec": "MathML 4.0", + "text": "MathML Syntax and Grammar", + "url": "https://w3c.github.io/mathml/#mathml-syntax-and-grammar" + }, + "snapshot": { + "number": "2.1", + "spec": "MathML 4.0", + "text": "MathML Syntax and Grammar", + "url": "https://www.w3.org/TR/mathml4/#mathml-syntax-and-grammar" + } + }, + "#mathml-test-suite-and-validator": { + "current": { + "number": "D.1.1", + "spec": "MathML 4.0", + "text": "MathML Test Suite and Validator", + "url": "https://w3c.github.io/mathml/#mathml-test-suite-and-validator" + }, + "snapshot": { + "number": "D.1.1", + "spec": "MathML 4.0", + "text": "MathML Test Suite and Validator", + "url": "https://www.w3.org/TR/mathml4/#mathml-test-suite-and-validator" + } + }, + "#meanings-of-size-and-position-attributes": { + "current": { + "number": "3.3.6.3", + "spec": "MathML 4.0", + "text": "Meanings of size and position attributes", + "url": "https://w3c.github.io/mathml/#meanings-of-size-and-position-attributes" + }, + "snapshot": { + "number": "3.3.6.3", + "spec": "MathML 4.0", + "text": "Meanings of size and position attributes", + "url": "https://www.w3.org/TR/mathml4/#meanings-of-size-and-position-attributes" + } + }, + "#mixing-mathml-and-html": { + "current": { + "number": "7.4.3", + "spec": "MathML 4.0", + "text": "Mixing MathML and HTML", + "url": "https://w3c.github.io/mathml/#mixing-mathml-and-html" + }, + "snapshot": { + "number": "6.4.3", + "spec": "MathML 4.0", + "text": "Mixing MathML and HTML", + "url": "https://www.w3.org/TR/mathml4/#mixing-mathml-and-html" + } + }, + "#mixing-mathml-and-non-xml-contexts": { + "current": { + "number": "7.4.2", + "spec": "MathML 4.0", + "text": "Mixing MathML and non-XML contexts", + "url": "https://w3c.github.io/mathml/#mixing-mathml-and-non-xml-contexts" + }, + "snapshot": { + "number": "6.4.2", + "spec": "MathML 4.0", + "text": "Mixing MathML and non-XML contexts", + "url": "https://www.w3.org/TR/mathml4/#mixing-mathml-and-non-xml-contexts" + } + }, + "#mixing-mathml-and-xhtml": { + "current": { + "number": "7.4.1", + "spec": "MathML 4.0", + "text": "Mixing MathML and XHTML", + "url": "https://w3c.github.io/mathml/#mixing-mathml-and-xhtml" + }, + "snapshot": { + "number": "6.4.1", + "spec": "MathML 4.0", + "text": "Mixing MathML and XHTML", + "url": "https://www.w3.org/TR/mathml4/#mixing-mathml-and-xhtml" + } + }, + "#moment-moment-momentabout": { + "current": { + "number": "4.3.7.8", + "spec": "MathML 4.0", + "text": "Moment <moment/>, <momentabout>", + "url": "https://w3c.github.io/mathml/#moment-moment-momentabout" + }, + "snapshot": { + "number": "4.3.7.8", + "spec": "MathML 4.0", + "text": "Moment <moment/>, <momentabout>", + "url": "https://www.w3.org/TR/mathml4/#moment-moment-momentabout" + } + }, + "#moments": { + "current": { + "number": "F.2.7", + "spec": "MathML 4.0", + "text": "Moments", + "url": "https://w3c.github.io/mathml/#moments" + }, + "snapshot": { + "number": "F.2.7", + "spec": "MathML 4.0", + "text": "Moments", + "url": "https://www.w3.org/TR/mathml4/#moments" + } + }, + "#mrow-of-one-argument": { + "current": { + "number": "3.3.1.3.1", + "spec": "MathML 4.0", + "text": "<mrow> of one argument", + "url": "https://w3c.github.io/mathml/#mrow-of-one-argument" + }, + "snapshot": { + "number": "3.3.1.3.1", + "spec": "MathML 4.0", + "text": "<mrow> of one argument", + "url": "https://www.w3.org/TR/mathml4/#mrow-of-one-argument" + } + }, + "#multiple-conditions": { + "current": { + "number": "F.3.2", + "spec": "MathML 4.0", + "text": "Multiple conditions", + "url": "https://w3c.github.io/mathml/#multiple-conditions" + }, + "snapshot": { + "number": "F.3.2", + "spec": "MathML 4.0", + "text": "Multiple conditions", + "url": "https://www.w3.org/TR/mathml4/#multiple-conditions" + } + }, + "#multiple-domainofapplications": { + "current": { + "number": "F.3.3", + "spec": "MathML 4.0", + "text": "Multiple domainofapplications", + "url": "https://w3c.github.io/mathml/#multiple-domainofapplications" + }, + "snapshot": { + "number": "F.3.3", + "spec": "MathML 4.0", + "text": "Multiple domainofapplications", + "url": "https://www.w3.org/TR/mathml4/#multiple-domainofapplications" + } + }, + "#multiplication": { + "current": { + "number": "3.6.8.2", + "spec": "MathML 4.0", + "text": "Multiplication", + "url": "https://w3c.github.io/mathml/#multiplication" + }, + "snapshot": { + "number": "3.6.8.2", + "spec": "MathML 4.0", + "text": "Multiplication", + "url": "https://www.w3.org/TR/mathml4/#multiplication" + } + }, + "#n-ary-arithmetic-operators-plus-times-gcd-lcm": { + "current": { + "number": "4.3.5.1", + "spec": "MathML 4.0", + "text": "N-ary Arithmetic Operators: <plus/>, <times/>, <gcd/>, <lcm/>", + "url": "https://w3c.github.io/mathml/#n-ary-arithmetic-operators-plus-times-gcd-lcm" + }, + "snapshot": { + "number": "4.3.5.1", + "spec": "MathML 4.0", + "text": "N-ary Arithmetic Operators: <plus/>, <times/>, <gcd/>, <lcm/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-arithmetic-operators-plus-times-gcd-lcm" + } + }, + "#n-ary-arithmetic-relations-eq-gt-lt-geq-leq": { + "current": { + "number": "4.3.5.10", + "spec": "MathML 4.0", + "text": "N-ary Arithmetic Relations: <eq/>, <gt/>, <lt/>, <geq/>, <leq/>", + "url": "https://w3c.github.io/mathml/#n-ary-arithmetic-relations-eq-gt-lt-geq-leq" + }, + "snapshot": { + "number": "4.3.5.10", + "spec": "MathML 4.0", + "text": "N-ary Arithmetic Relations: <eq/>, <gt/>, <lt/>, <geq/>, <leq/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-arithmetic-relations-eq-gt-lt-geq-leq" + } + }, + "#n-ary-functional-operators-compose": { + "current": { + "number": "4.3.5.4", + "spec": "MathML 4.0", + "text": "N-ary Functional Operators: <compose/>", + "url": "https://w3c.github.io/mathml/#n-ary-functional-operators-compose" + }, + "snapshot": { + "number": "4.3.5.4", + "spec": "MathML 4.0", + "text": "N-ary Functional Operators: <compose/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-functional-operators-compose" + } + }, + "#n-ary-linear-algebra-operators-selector": { + "current": { + "number": "4.3.5.6", + "spec": "MathML 4.0", + "text": "N-ary Linear Algebra Operators: <selector/>", + "url": "https://w3c.github.io/mathml/#n-ary-linear-algebra-operators-selector" + }, + "snapshot": { + "number": "4.3.5.6", + "spec": "MathML 4.0", + "text": "N-ary Linear Algebra Operators: <selector/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-linear-algebra-operators-selector" + } + }, + "#n-ary-logical-operators-and-or-xor": { + "current": { + "number": "4.3.5.5", + "spec": "MathML 4.0", + "text": "N-ary Logical Operators: <and/>, <or/>, <xor/>", + "url": "https://w3c.github.io/mathml/#n-ary-logical-operators-and-or-xor" + }, + "snapshot": { + "number": "4.3.5.5", + "spec": "MathML 4.0", + "text": "N-ary Logical Operators: <and/>, <or/>, <xor/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-logical-operators-and-or-xor" + } + }, + "#n-ary-matrix-constructors-vector-matrix-matrixrow": { + "current": { + "number": "4.3.5.8", + "spec": "MathML 4.0", + "text": "N-ary Matrix Constructors: <vector/>, <matrix/>, <matrixrow/>", + "url": "https://w3c.github.io/mathml/#n-ary-matrix-constructors-vector-matrix-matrixrow" + }, + "snapshot": { + "number": "4.3.5.8", + "spec": "MathML 4.0", + "text": "N-ary Matrix Constructors: <vector/>, <matrix/>, <matrixrow/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-matrix-constructors-vector-matrix-matrixrow" + } + }, + "#n-ary-operators": { + "current": { + "number": "4.3.5", + "spec": "MathML 4.0", + "text": "N-ary Operators", + "url": "https://w3c.github.io/mathml/#n-ary-operators" + }, + "snapshot": { + "number": "4.3.5", + "spec": "MathML 4.0", + "text": "N-ary Operators", + "url": "https://www.w3.org/TR/mathml4/#n-ary-operators" + } + }, + "#n-ary-product-product": { + "current": { + "number": "4.3.5.3", + "spec": "MathML 4.0", + "text": "N-ary Product <product/>", + "url": "https://w3c.github.io/mathml/#n-ary-product-product" + }, + "snapshot": { + "number": "4.3.5.3", + "spec": "MathML 4.0", + "text": "N-ary Product <product/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-product-product" + } + }, + "#n-ary-set-operators-union-intersect-cartesianproduct": { + "current": { + "number": "4.3.5.7", + "spec": "MathML 4.0", + "text": "N-ary Set Operators: <union/>, <intersect/>, <cartesianproduct/>", + "url": "https://w3c.github.io/mathml/#n-ary-set-operators-union-intersect-cartesianproduct" + }, + "snapshot": { + "number": "4.3.5.7", + "spec": "MathML 4.0", + "text": "N-ary Set Operators: <union/>, <intersect/>, <cartesianproduct/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-set-operators-union-intersect-cartesianproduct" + } + }, + "#n-ary-set-theoretic-constructors-set-list": { + "current": { + "number": "4.3.5.9", + "spec": "MathML 4.0", + "text": "N-ary Set Theoretic Constructors: <set>, <list>", + "url": "https://w3c.github.io/mathml/#n-ary-set-theoretic-constructors-set-list" + }, + "snapshot": { + "number": "4.3.5.9", + "spec": "MathML 4.0", + "text": "N-ary Set Theoretic Constructors: <set>, <list>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-set-theoretic-constructors-set-list" + } + }, + "#n-ary-set-theoretic-relations-subset-prsubset": { + "current": { + "number": "4.3.5.11", + "spec": "MathML 4.0", + "text": "N-ary Set Theoretic Relations: <subset/>, <prsubset/>", + "url": "https://w3c.github.io/mathml/#n-ary-set-theoretic-relations-subset-prsubset" + }, + "snapshot": { + "number": "4.3.5.11", + "spec": "MathML 4.0", + "text": "N-ary Set Theoretic Relations: <subset/>, <prsubset/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-set-theoretic-relations-subset-prsubset" + } + }, + "#n-ary-sum-sum": { + "current": { + "number": "4.3.5.2", + "spec": "MathML 4.0", + "text": "N-ary Sum <sum/>", + "url": "https://w3c.github.io/mathml/#n-ary-sum-sum" + }, + "snapshot": { + "number": "4.3.5.2", + "spec": "MathML 4.0", + "text": "N-ary Sum <sum/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-sum-sum" + } + }, + "#n-ary-unary-arithmetic-operators-min-max": { + "current": { + "number": "4.3.5.12", + "spec": "MathML 4.0", + "text": "N-ary/Unary Arithmetic Operators: <min/>, <max/>", + "url": "https://w3c.github.io/mathml/#n-ary-unary-arithmetic-operators-min-max" + }, + "snapshot": { + "number": "4.3.5.12", + "spec": "MathML 4.0", + "text": "N-ary/Unary Arithmetic Operators: <min/>, <max/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-unary-arithmetic-operators-min-max" + } + }, + "#n-ary-unary-operators": { + "current": { + "number": "F.5.1", + "spec": "MathML 4.0", + "text": "N-ary/unary operators", + "url": "https://w3c.github.io/mathml/#n-ary-unary-operators" + }, + "snapshot": { + "number": "F.5.1", + "spec": "MathML 4.0", + "text": "N-ary/unary operators", + "url": "https://www.w3.org/TR/mathml4/#n-ary-unary-operators" + } + }, + "#n-ary-unary-statistical-operators-mean-median-mode-sdev-variance": { + "current": { + "number": "4.3.5.13", + "spec": "MathML 4.0", + "text": "N-ary/Unary Statistical Operators: <mean/>, <median/>, <mode/>, <sdev/>, <variance/>", + "url": "https://w3c.github.io/mathml/#n-ary-unary-statistical-operators-mean-median-mode-sdev-variance" + }, + "snapshot": { + "number": "4.3.5.13", + "spec": "MathML 4.0", + "text": "N-ary/Unary Statistical Operators: <mean/>, <median/>, <mode/>, <sdev/>, <variance/>", + "url": "https://www.w3.org/TR/mathml4/#n-ary-unary-statistical-operators-mean-median-mode-sdev-variance" + } + }, + "#names-of-mathml-encodings": { + "current": { + "number": "7.2.4", + "spec": "MathML 4.0", + "text": "Names of MathML Encodings", + "url": "https://w3c.github.io/mathml/#names-of-mathml-encodings" + }, + "snapshot": { + "number": "6.2.4", + "spec": "MathML 4.0", + "text": "Names of MathML Encodings", + "url": "https://www.w3.org/TR/mathml4/#names-of-mathml-encodings" + } + }, + "#natural-language-mathematics": { + "current": { + "number": "C.4.2.9", + "spec": "MathML 4.0", + "text": "Natural-language Mathematics", + "url": "https://w3c.github.io/mathml/#natural-language-mathematics" + }, + "snapshot": { + "number": "C.4.2.9", + "spec": "MathML 4.0", + "text": "Natural-language Mathematics", + "url": "https://www.w3.org/TR/mathml4/#natural-language-mathematics" + } + }, + "#non-marking-characters": { + "current": { + "number": "8.3", + "spec": "MathML 4.0", + "text": "Non-Marking Characters", + "url": "https://w3c.github.io/mathml/#non-marking-characters" + }, + "snapshot": { + "number": "7.3", + "spec": "MathML 4.0", + "text": "Non-Marking Characters", + "url": "https://www.w3.org/TR/mathml4/#non-marking-characters" + } + }, + "#non-strict-uses-of-ci": { + "current": { + "number": "4.2.2.2", + "spec": "MathML 4.0", + "text": "Non-Strict uses of <ci>", + "url": "https://w3c.github.io/mathml/#non-strict-uses-of-ci" + }, + "snapshot": { + "number": "4.2.2.2", + "spec": "MathML 4.0", + "text": "Non-Strict uses of <ci>", + "url": "https://www.w3.org/TR/mathml4/#non-strict-uses-of-ci" + } + }, + "#non-strict-uses-of-cn": { + "current": { + "number": "4.2.1.3", + "spec": "MathML 4.0", + "text": "Non-Strict uses of <cn>", + "url": "https://w3c.github.io/mathml/#non-strict-uses-of-cn" + }, + "snapshot": { + "number": "4.2.1.3", + "spec": "MathML 4.0", + "text": "Non-Strict uses of <cn>", + "url": "https://www.w3.org/TR/mathml4/#non-strict-uses-of-cn" + } + }, + "#non-strict-uses-of-csymbol": { + "current": { + "number": "4.2.3.2", + "spec": "MathML 4.0", + "text": "Non-Strict uses of <csymbol>", + "url": "https://w3c.github.io/mathml/#non-strict-uses-of-csymbol" + }, + "snapshot": { + "number": "4.2.3.2", + "spec": "MathML 4.0", + "text": "Non-Strict uses of <csymbol>", + "url": "https://www.w3.org/TR/mathml4/#non-strict-uses-of-csymbol" + } + }, + "#normalize-container-markup": { + "current": { + "number": "F.4", + "spec": "MathML 4.0", + "text": "Normalize container markup", + "url": "https://w3c.github.io/mathml/#normalize-container-markup" + }, + "snapshot": { + "number": "F.4", + "spec": "MathML 4.0", + "text": "Normalize container markup", + "url": "https://www.w3.org/TR/mathml4/#normalize-container-markup" + } + }, + "#normative-references": { + "current": { + "number": "J.1", + "spec": "MathML 4.0", + "text": "Normative references", + "url": "https://w3c.github.io/mathml/#normative-references" + }, + "snapshot": { + "number": "J.1", + "spec": "MathML 4.0", + "text": "Normative references", + "url": "https://www.w3.org/TR/mathml4/#normative-references" + } + }, + "#notes-on-lspace-and-rspace-attributes": { + "current": { + "number": "B.2", + "spec": "MathML 4.0", + "text": "Notes on lspace and rspace attributes", + "url": "https://w3c.github.io/mathml/#notes-on-lspace-and-rspace-attributes" + }, + "snapshot": { + "number": "B.2", + "spec": "MathML 4.0", + "text": "Notes on lspace and rspace attributes", + "url": "https://www.w3.org/TR/mathml4/#notes-on-lspace-and-rspace-attributes" + } + }, + "#number-mn": { + "current": { + "number": "3.2.4", + "spec": "MathML 4.0", + "text": "Number <mn>", + "url": "https://w3c.github.io/mathml/#number-mn" + }, + "snapshot": { + "number": "3.2.4", + "spec": "MathML 4.0", + "text": "Number <mn>", + "url": "https://www.w3.org/TR/mathml4/#number-mn" + } + }, + "#numbers": { + "current": { + "number": "C.4.2.4", + "spec": "MathML 4.0", + "text": "Numbers", + "url": "https://w3c.github.io/mathml/#numbers" + }, + "snapshot": { + "number": "C.4.2.4", + "spec": "MathML 4.0", + "text": "Numbers", + "url": "https://www.w3.org/TR/mathml4/#numbers" + } + }, + "#numbers-0": { + "current": { + "number": "F.7.1", + "spec": "MathML 4.0", + "text": "Numbers", + "url": "https://w3c.github.io/mathml/#numbers-0" + }, + "snapshot": { + "number": "F.7.1", + "spec": "MathML 4.0", + "text": "Numbers", + "url": "https://www.w3.org/TR/mathml4/#numbers-0" + } + }, + "#numbers-cn": { + "current": { + "number": "4.2.1", + "spec": "MathML 4.0", + "text": "Numbers <cn>", + "url": "https://w3c.github.io/mathml/#numbers-cn" + }, + "snapshot": { + "number": "4.2.1", + "spec": "MathML 4.0", + "text": "Numbers <cn>", + "url": "https://www.w3.org/TR/mathml4/#numbers-cn" + } + }, + "#numbers-that-should-not-be-written-using-mn-alone": { + "current": { + "number": "3.2.4.4", + "spec": "MathML 4.0", + "text": "Numbers that should not be written using <mn> alone", + "url": "https://w3c.github.io/mathml/#numbers-that-should-not-be-written-using-mn-alone" + }, + "snapshot": { + "number": "3.2.4.4", + "spec": "MathML 4.0", + "text": "Numbers that should not be written using <mn> alone", + "url": "https://www.w3.org/TR/mathml4/#numbers-that-should-not-be-written-using-mn-alone" + } + }, + "#operator-classes": { + "current": { + "number": "4.3.4", + "spec": "MathML 4.0", + "text": "Operator Classes", + "url": "https://w3c.github.io/mathml/#operator-classes" + }, + "snapshot": { + "number": "4.3.4", + "spec": "MathML 4.0", + "text": "Operator Classes", + "url": "https://www.w3.org/TR/mathml4/#operator-classes" + } + }, + "#operator-dictionary": { + "current": { + "number": "B", + "spec": "MathML 4.0", + "text": "Operator Dictionary", + "url": "https://w3c.github.io/mathml/#operator-dictionary" + }, + "snapshot": { + "number": "B", + "spec": "MathML 4.0", + "text": "Operator Dictionary", + "url": "https://www.w3.org/TR/mathml4/#operator-dictionary" + } + }, + "#operator-dictionary-entries": { + "current": { + "number": "B.3", + "spec": "MathML 4.0", + "text": "Operator dictionary entries", + "url": "https://w3c.github.io/mathml/#operator-dictionary-entries" + }, + "snapshot": { + "number": "B.3", + "spec": "MathML 4.0", + "text": "Operator dictionary entries", + "url": "https://www.w3.org/TR/mathml4/#operator-dictionary-entries" + } + }, + "#operator-fence-separator-or-accent-mo": { + "current": { + "number": "3.2.5", + "spec": "MathML 4.0", + "text": "Operator, Fence, Separator or Accent <mo>", + "url": "https://w3c.github.io/mathml/#operator-fence-separator-or-accent-mo" + }, + "snapshot": { + "number": "3.2.5", + "spec": "MathML 4.0", + "text": "Operator, Fence, Separator or Accent <mo>", + "url": "https://www.w3.org/TR/mathml4/#operator-fence-separator-or-accent-mo" + } + }, + "#order-of-processing-attributes-versus-style-sheets": { + "current": { + "number": "7.5.1", + "spec": "MathML 4.0", + "text": "Order of processing attributes versus style sheets", + "url": "https://w3c.github.io/mathml/#order-of-processing-attributes-versus-style-sheets" + }, + "snapshot": { + "number": "6.5.1", + "spec": "MathML 4.0", + "text": "Order of processing attributes versus style sheets", + "url": "https://www.w3.org/TR/mathml4/#order-of-processing-attributes-versus-style-sheets" + } + }, + "#overall-directionality-of-mathematics-formulas": { + "current": { + "number": "3.1.5.1", + "spec": "MathML 4.0", + "text": "Overall Directionality of Mathematics Formulas", + "url": "https://w3c.github.io/mathml/#overall-directionality-of-mathematics-formulas" + }, + "snapshot": { + "number": "3.1.5.1", + "spec": "MathML 4.0", + "text": "Overall Directionality of Mathematics Formulas", + "url": "https://www.w3.org/TR/mathml4/#overall-directionality-of-mathematics-formulas" + } + }, + "#overarching-guidance": { + "current": { + "number": "C.4.1", + "spec": "MathML 4.0", + "text": "Overarching guidance", + "url": "https://w3c.github.io/mathml/#overarching-guidance" + }, + "snapshot": { + "number": "C.4.1", + "spec": "MathML 4.0", + "text": "Overarching guidance", + "url": "https://www.w3.org/TR/mathml4/#overarching-guidance" + } + }, + "#overscript-mover": { + "current": { + "number": "3.4.5", + "spec": "MathML 4.0", + "text": "Overscript <mover>", + "url": "https://w3c.github.io/mathml/#overscript-mover" + }, + "snapshot": { + "number": "3.4.5", + "spec": "MathML 4.0", + "text": "Overscript <mover>", + "url": "https://www.w3.org/TR/mathml4/#overscript-mover" + } + }, + "#overview": { + "current": { + "number": "1.2", + "spec": "MathML 4.0", + "text": "Overview", + "url": "https://w3c.github.io/mathml/#overview" + }, + "snapshot": { + "number": "1.2", + "spec": "MathML 4.0", + "text": "Overview", + "url": "https://www.w3.org/TR/mathml4/#overview" + } + }, + "#parallel-markup": { + "current": { + "number": "6.9", + "spec": "MathML 4.0", + "text": "Parallel Markup", + "url": "https://w3c.github.io/mathml/#parallel-markup" + }, + "snapshot": { + "number": "5.2.9", + "spec": "MathML 4.0", + "text": "Parallel Markup", + "url": "https://www.w3.org/TR/mathml4/#parallel-markup" + } + }, + "#parallel-markup-via-cross-references": { + "current": { + "number": "6.9.2", + "spec": "MathML 4.0", + "text": "Parallel Markup via Cross-References", + "url": "https://w3c.github.io/mathml/#parallel-markup-via-cross-references" + }, + "snapshot": { + "number": "5.2.9.2", + "spec": "MathML 4.0", + "text": "Parallel Markup via Cross-References", + "url": "https://www.w3.org/TR/mathml4/#parallel-markup-via-cross-references" + } + }, + "#parsing-mathml": { + "current": { + "number": "A", + "spec": "MathML 4.0", + "text": "Parsing MathML", + "url": "https://w3c.github.io/mathml/#parsing-mathml" + }, + "snapshot": { + "number": "A", + "spec": "MathML 4.0", + "text": "Parsing MathML", + "url": "https://www.w3.org/TR/mathml4/#parsing-mathml" + } + }, + "#partial-differentiation-partialdiff": { + "current": { + "number": "4.3.8.3", + "spec": "MathML 4.0", + "text": "Partial Differentiation <partialdiff/>", + "url": "https://w3c.github.io/mathml/#partial-differentiation-partialdiff" + }, + "snapshot": { + "number": "4.3.8.3", + "spec": "MathML 4.0", + "text": "Partial Differentiation <partialdiff/>", + "url": "https://www.w3.org/TR/mathml4/#partial-differentiation-partialdiff" + } + }, + "#piecewise-declaration-piecewise-piece-otherwise": { + "current": { + "number": "4.3.10.5", + "spec": "MathML 4.0", + "text": "Piecewise declaration <piecewise>, <piece>, <otherwise>", + "url": "https://w3c.github.io/mathml/#piecewise-declaration-piecewise-piece-otherwise" + }, + "snapshot": { + "number": "4.3.10.5", + "spec": "MathML 4.0", + "text": "Piecewise declaration <piecewise>, <piece>, <otherwise>", + "url": "https://www.w3.org/TR/mathml4/#piecewise-declaration-piecewise-piece-otherwise" + } + }, + "#piecewise-functions": { + "current": { + "number": "F.4.4", + "spec": "MathML 4.0", + "text": "Piecewise functions", + "url": "https://w3c.github.io/mathml/#piecewise-functions" + }, + "snapshot": { + "number": "F.4.4", + "spec": "MathML 4.0", + "text": "Piecewise functions", + "url": "https://www.w3.org/TR/mathml4/#piecewise-functions" + } + }, + "#precise-rule-for-proper-grouping": { + "current": { + "number": "3.3.1.3.2", + "spec": "MathML 4.0", + "text": "Precise rule for proper grouping", + "url": "https://w3c.github.io/mathml/#precise-rule-for-proper-grouping" + }, + "snapshot": { + "number": "3.3.1.3.2", + "spec": "MathML 4.0", + "text": "Precise rule for proper grouping", + "url": "https://www.w3.org/TR/mathml4/#precise-rule-for-proper-grouping" + } + }, + "#predicate-on-list": { + "current": { + "number": "F.6.2", + "spec": "MathML 4.0", + "text": "Predicate on list", + "url": "https://w3c.github.io/mathml/#predicate-on-list" + }, + "snapshot": { + "number": "F.6.2", + "spec": "MathML 4.0", + "text": "Predicate on list", + "url": "https://www.w3.org/TR/mathml4/#predicate-on-list" + } + }, + "#prescripts-and-tensor-indices-mmultiscripts-mprescripts-none-munder": { + "current": { + "number": "3.4.7", + "spec": "MathML 4.0", + "text": "Prescripts and Tensor Indices <mmultiscripts>, <mprescripts/>, <none/> <munder>", + "url": "https://w3c.github.io/mathml/#prescripts-and-tensor-indices-mmultiscripts-mprescripts-none-munder" + }, + "snapshot": { + "number": "3.4.7", + "spec": "MathML 4.0", + "text": "Prescripts and Tensor Indices <mmultiscripts>, <mprescripts/>, <none/> <munder>", + "url": "https://www.w3.org/TR/mathml4/#prescripts-and-tensor-indices-mmultiscripts-mprescripts-none-munder" + } + }, + "#presentation-markup": { + "current": { + "number": "3", + "spec": "MathML 4.0", + "text": "Presentation Markup", + "url": "https://w3c.github.io/mathml/#presentation-markup" + }, + "snapshot": { + "number": "3", + "spec": "MathML 4.0", + "text": "Presentation Markup", + "url": "https://www.w3.org/TR/mathml4/#presentation-markup" + } + }, + "#presentation-markup-in-content-markup": { + "current": { + "number": "6.8.1", + "spec": "MathML 4.0", + "text": "Presentation Markup in Content Markup", + "url": "https://w3c.github.io/mathml/#presentation-markup-in-content-markup" + }, + "snapshot": { + "number": "5.2.8.1", + "spec": "MathML 4.0", + "text": "Presentation Markup in Content Markup", + "url": "https://www.w3.org/TR/mathml4/#presentation-markup-in-content-markup" + } + }, + "#presentation-mathml": { + "current": { + "number": "A.2.2", + "spec": "MathML 4.0", + "text": "Presentation MathML", + "url": "https://w3c.github.io/mathml/#presentation-mathml" + }, + "snapshot": { + "number": "A.2.2", + "spec": "MathML 4.0", + "text": "Presentation MathML", + "url": "https://www.w3.org/TR/mathml4/#presentation-mathml" + } + }, + "#presentation-mathml-structure": { + "current": { + "number": "3.1.1", + "spec": "MathML 4.0", + "text": "Presentation MathML Structure", + "url": "https://w3c.github.io/mathml/#presentation-mathml-structure" + }, + "snapshot": { + "number": "3.1.1", + "spec": "MathML 4.0", + "text": "Presentation MathML Structure", + "url": "https://www.w3.org/TR/mathml4/#presentation-mathml-structure" + } + }, + "#privacy-considerations": { + "current": { + "number": "D.4", + "spec": "MathML 4.0", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/mathml/#privacy-considerations" + }, + "snapshot": { + "number": "D.4", + "spec": "MathML 4.0", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/mathml4/#privacy-considerations" + } + }, + "#proper-grouping-of-sub-expressions": { + "current": { + "number": "C.4.2.2", + "spec": "MathML 4.0", + "text": "Proper Grouping of Sub-expressions", + "url": "https://w3c.github.io/mathml/#proper-grouping-of-sub-expressions" + }, + "snapshot": { + "number": "C.4.2.2", + "spec": "MathML 4.0", + "text": "Proper Grouping of Sub-expressions", + "url": "https://www.w3.org/TR/mathml4/#proper-grouping-of-sub-expressions" + } + }, + "#proper-grouping-of-sub-expressions-using-mrow": { + "current": { + "number": "3.3.1.3", + "spec": "MathML 4.0", + "text": "Proper grouping of sub-expressions using <mrow>", + "url": "https://w3c.github.io/mathml/#proper-grouping-of-sub-expressions-using-mrow" + }, + "snapshot": { + "number": "3.3.1.3", + "spec": "MathML 4.0", + "text": "Proper grouping of sub-expressions using <mrow>", + "url": "https://www.w3.org/TR/mathml4/#proper-grouping-of-sub-expressions-using-mrow" + } + }, + "#pseudo-scripts": { + "current": { + "number": "8.4.2", + "spec": "MathML 4.0", + "text": "Pseudo-scripts", + "url": "https://w3c.github.io/mathml/#pseudo-scripts" + }, + "snapshot": { + "number": "7.4.2", + "spec": "MathML 4.0", + "text": "Pseudo-scripts", + "url": "https://www.w3.org/TR/mathml4/#pseudo-scripts" + } + }, + "#qualifiers": { + "current": { + "number": "4.3.3", + "spec": "MathML 4.0", + "text": "Qualifiers", + "url": "https://w3c.github.io/mathml/#qualifiers" + }, + "snapshot": { + "number": "4.3.3", + "spec": "MathML 4.0", + "text": "Qualifiers", + "url": "https://www.w3.org/TR/mathml4/#qualifiers" + } + }, + "#quantifiers": { + "current": { + "number": "F.5.2", + "spec": "MathML 4.0", + "text": "Quantifiers", + "url": "https://w3c.github.io/mathml/#quantifiers" + }, + "snapshot": { + "number": "F.5.2", + "spec": "MathML 4.0", + "text": "Quantifiers", + "url": "https://www.w3.org/TR/mathml4/#quantifiers" + } + }, + "#quantifiers-forall-exists": { + "current": { + "number": "4.3.10.1", + "spec": "MathML 4.0", + "text": "Quantifiers: <forall/>, <exists/>", + "url": "https://w3c.github.io/mathml/#quantifiers-forall-exists" + }, + "snapshot": { + "number": "4.3.10.1", + "spec": "MathML 4.0", + "text": "Quantifiers: <forall/>, <exists/>", + "url": "https://www.w3.org/TR/mathml4/#quantifiers-forall-exists" + } + }, + "#radicals-msqrt-mroot": { + "current": { + "number": "3.3.3", + "spec": "MathML 4.0", + "text": "Radicals <msqrt>, <mroot>", + "url": "https://w3c.github.io/mathml/#radicals-msqrt-mroot" + }, + "snapshot": { + "number": "3.3.3", + "spec": "MathML 4.0", + "text": "Radicals <msqrt>, <mroot>", + "url": "https://www.w3.org/TR/mathml4/#radicals-msqrt-mroot" + } + }, + "#recognizing-mathml-in-html": { + "current": { + "number": "7.2.2", + "spec": "MathML 4.0", + "text": "Recognizing MathML in HTML", + "url": "https://w3c.github.io/mathml/#recognizing-mathml-in-html" + }, + "snapshot": { + "number": "6.2.2", + "spec": "MathML 4.0", + "text": "Recognizing MathML in HTML", + "url": "https://www.w3.org/TR/mathml4/#recognizing-mathml-in-html" + } + }, + "#recognizing-mathml-in-xml": { + "current": { + "number": "7.2.1", + "spec": "MathML 4.0", + "text": "Recognizing MathML in XML", + "url": "https://w3c.github.io/mathml/#recognizing-mathml-in-xml" + }, + "snapshot": { + "number": "6.2.1", + "spec": "MathML 4.0", + "text": "Recognizing MathML in XML", + "url": "https://www.w3.org/TR/mathml4/#recognizing-mathml-in-xml" + } + }, + "#recommended-behaviors-when-transferring": { + "current": { + "number": "7.3.2", + "spec": "MathML 4.0", + "text": "Recommended Behaviors when Transferring", + "url": "https://w3c.github.io/mathml/#recommended-behaviors-when-transferring" + }, + "snapshot": { + "number": "6.3.2", + "spec": "MathML 4.0", + "text": "Recommended Behaviors when Transferring", + "url": "https://www.w3.org/TR/mathml4/#recommended-behaviors-when-transferring" + } + }, + "#references": { + "current": { + "number": "J", + "spec": "MathML 4.0", + "text": "References", + "url": "https://w3c.github.io/mathml/#references" + }, + "snapshot": { + "number": "J", + "spec": "MathML 4.0", + "text": "References", + "url": "https://www.w3.org/TR/mathml4/#references" + } + }, + "#relation-to-mathml-core": { + "current": { + "number": "1.3", + "spec": "MathML 4.0", + "text": "Relation to MathML Core", + "url": "https://w3c.github.io/mathml/#relation-to-mathml-core" + }, + "snapshot": { + "number": "1.3", + "spec": "MathML 4.0", + "text": "Relation to MathML Core", + "url": "https://www.w3.org/TR/mathml4/#relation-to-mathml-core" + } + }, + "#removal-notice": { + "current": { + "number": "3.5.5.1", + "spec": "MathML 4.0", + "text": "Removal Notice", + "url": "https://w3c.github.io/mathml/#removal-notice" + }, + "snapshot": { + "number": "3.5.5.1", + "spec": "MathML 4.0", + "text": "Removal Notice", + "url": "https://www.w3.org/TR/mathml4/#removal-notice" + } + }, + "#renaming-bound-variables": { + "current": { + "number": "4.2.6.3", + "spec": "MathML 4.0", + "text": "Renaming Bound Variables", + "url": "https://w3c.github.io/mathml/#renaming-bound-variables" + }, + "snapshot": { + "number": "4.2.6.3", + "spec": "MathML 4.0", + "text": "Renaming Bound Variables", + "url": "https://www.w3.org/TR/mathml4/#renaming-bound-variables" + } + }, + "#rendering-applications": { + "current": { + "number": "4.2.5.2", + "spec": "MathML 4.0", + "text": "Rendering Applications", + "url": "https://w3c.github.io/mathml/#rendering-applications" + }, + "snapshot": { + "number": "4.2.5.2", + "spec": "MathML 4.0", + "text": "Rendering Applications", + "url": "https://www.w3.org/TR/mathml4/#rendering-applications" + } + }, + "#rendering-binding-constructions": { + "current": { + "number": "4.2.6.4", + "spec": "MathML 4.0", + "text": "Rendering Binding Constructions", + "url": "https://w3c.github.io/mathml/#rendering-binding-constructions" + }, + "snapshot": { + "number": "4.2.6.4", + "spec": "MathML 4.0", + "text": "Rendering Binding Constructions", + "url": "https://www.w3.org/TR/mathml4/#rendering-binding-constructions" + } + }, + "#rendering-cn-sep-represented-numbers": { + "current": { + "number": "4.2.1.1", + "spec": "MathML 4.0", + "text": "Rendering <cn>,<sep/>-Represented Numbers", + "url": "https://w3c.github.io/mathml/#rendering-cn-sep-represented-numbers" + }, + "snapshot": { + "number": "4.2.1.1", + "spec": "MathML 4.0", + "text": "Rendering <cn>,<sep/>-Represented Numbers", + "url": "https://www.w3.org/TR/mathml4/#rendering-cn-sep-represented-numbers" + } + }, + "#rendering-content-identifiers": { + "current": { + "number": "4.2.2.3", + "spec": "MathML 4.0", + "text": "Rendering Content Identifiers", + "url": "https://w3c.github.io/mathml/#rendering-content-identifiers" + }, + "snapshot": { + "number": "4.2.2.3", + "spec": "MathML 4.0", + "text": "Rendering Content Identifiers", + "url": "https://www.w3.org/TR/mathml4/#rendering-content-identifiers" + } + }, + "#rendering-expressions-with-structure-sharing": { + "current": { + "number": "4.2.7.4", + "spec": "MathML 4.0", + "text": "Rendering Expressions with Structure Sharing", + "url": "https://w3c.github.io/mathml/#rendering-expressions-with-structure-sharing" + }, + "snapshot": { + "number": "4.2.7.4", + "spec": "MathML 4.0", + "text": "Rendering Expressions with Structure Sharing", + "url": "https://www.w3.org/TR/mathml4/#rendering-expressions-with-structure-sharing" + } + }, + "#rendering-symbols": { + "current": { + "number": "4.2.3.3", + "spec": "MathML 4.0", + "text": "Rendering Symbols", + "url": "https://w3c.github.io/mathml/#rendering-symbols" + }, + "snapshot": { + "number": "4.2.3.3", + "spec": "MathML 4.0", + "text": "Rendering Symbols", + "url": "https://www.w3.org/TR/mathml4/#rendering-symbols" + } + }, + "#repeating-decimal": { + "current": { + "number": "3.6.8.4", + "spec": "MathML 4.0", + "text": "Repeating decimal", + "url": "https://w3c.github.io/mathml/#repeating-decimal" + }, + "snapshot": { + "number": "3.6.8.4", + "spec": "MathML 4.0", + "text": "Repeating decimal", + "url": "https://www.w3.org/TR/mathml4/#repeating-decimal" + } + }, + "#required-arguments": { + "current": { + "number": "3.1.3", + "spec": "MathML 4.0", + "text": "Required Arguments", + "url": "https://w3c.github.io/mathml/#required-arguments" + }, + "snapshot": { + "number": "3.1.3", + "spec": "MathML 4.0", + "text": "Required Arguments", + "url": "https://www.w3.org/TR/mathml4/#required-arguments" + } + }, + "#resource-types-for-mathml-documents": { + "current": { + "number": "7.2.3", + "spec": "MathML 4.0", + "text": "Resource Types for MathML Documents", + "url": "https://w3c.github.io/mathml/#resource-types-for-mathml-documents" + }, + "snapshot": { + "number": "6.2.3", + "spec": "MathML 4.0", + "text": "Resource Types for MathML Documents", + "url": "https://www.w3.org/TR/mathml4/#resource-types-for-mathml-documents" + } + }, + "#restricted-function": { + "current": { + "number": "F.6.1", + "spec": "MathML 4.0", + "text": "Restricted function", + "url": "https://w3c.github.io/mathml/#restricted-function" + }, + "snapshot": { + "number": "F.6.1", + "spec": "MathML 4.0", + "text": "Restricted function", + "url": "https://www.w3.org/TR/mathml4/#restricted-function" + } + }, + "#rewrite-attributes": { + "current": { + "number": "F.9", + "spec": "MathML 4.0", + "text": "Rewrite attributes", + "url": "https://w3c.github.io/mathml/#rewrite-attributes" + }, + "snapshot": { + "number": "F.9", + "spec": "MathML 4.0", + "text": "Rewrite attributes", + "url": "https://www.w3.org/TR/mathml4/#rewrite-attributes" + } + }, + "#rewrite-attributes-0": { + "current": { + "number": "F.9.3", + "spec": "MathML 4.0", + "text": "Rewrite attributes", + "url": "https://w3c.github.io/mathml/#rewrite-attributes-0" + }, + "snapshot": { + "number": "F.9.3", + "spec": "MathML 4.0", + "text": "Rewrite attributes", + "url": "https://www.w3.org/TR/mathml4/#rewrite-attributes-0" + } + }, + "#rewrite-definitionurl-and-encoding-attributes": { + "current": { + "number": "F.9.2", + "spec": "MathML 4.0", + "text": "Rewrite definitionURL and encoding attributes", + "url": "https://w3c.github.io/mathml/#rewrite-definitionurl-and-encoding-attributes" + }, + "snapshot": { + "number": "F.9.2", + "spec": "MathML 4.0", + "text": "Rewrite definitionURL and encoding attributes", + "url": "https://www.w3.org/TR/mathml4/#rewrite-definitionurl-and-encoding-attributes" + } + }, + "#rewrite-domainofapplication-qualifiers": { + "current": { + "number": "F.5", + "spec": "MathML 4.0", + "text": "Rewrite domainofapplication qualifiers", + "url": "https://w3c.github.io/mathml/#rewrite-domainofapplication-qualifiers" + }, + "snapshot": { + "number": "F.5", + "spec": "MathML 4.0", + "text": "Rewrite domainofapplication qualifiers", + "url": "https://www.w3.org/TR/mathml4/#rewrite-domainofapplication-qualifiers" + } + }, + "#rewrite-idiomatic-qualifiers": { + "current": { + "number": "F.2", + "spec": "MathML 4.0", + "text": "Rewrite idiomatic qualifiers", + "url": "https://w3c.github.io/mathml/#rewrite-idiomatic-qualifiers" + }, + "snapshot": { + "number": "F.2", + "spec": "MathML 4.0", + "text": "Rewrite idiomatic qualifiers", + "url": "https://www.w3.org/TR/mathml4/#rewrite-idiomatic-qualifiers" + } + }, + "#rewrite-non-strict-bind": { + "current": { + "number": "F.1", + "spec": "MathML 4.0", + "text": "Rewrite non-strict bind", + "url": "https://w3c.github.io/mathml/#rewrite-non-strict-bind" + }, + "snapshot": { + "number": "F.1", + "spec": "MathML 4.0", + "text": "Rewrite non-strict bind", + "url": "https://www.w3.org/TR/mathml4/#rewrite-non-strict-bind" + } + }, + "#rewrite-operators": { + "current": { + "number": "F.8", + "spec": "MathML 4.0", + "text": "Rewrite operators", + "url": "https://w3c.github.io/mathml/#rewrite-operators" + }, + "snapshot": { + "number": "F.8", + "spec": "MathML 4.0", + "text": "Rewrite operators", + "url": "https://www.w3.org/TR/mathml4/#rewrite-operators" + } + }, + "#rewrite-the-emptyset-operator": { + "current": { + "number": "F.8.4", + "spec": "MathML 4.0", + "text": "Rewrite the emptyset operator", + "url": "https://w3c.github.io/mathml/#rewrite-the-emptyset-operator" + }, + "snapshot": { + "number": "F.8.4", + "spec": "MathML 4.0", + "text": "Rewrite the emptyset operator", + "url": "https://www.w3.org/TR/mathml4/#rewrite-the-emptyset-operator" + } + }, + "#rewrite-the-minus-operator": { + "current": { + "number": "F.8.1", + "spec": "MathML 4.0", + "text": "Rewrite the minus operator", + "url": "https://w3c.github.io/mathml/#rewrite-the-minus-operator" + }, + "snapshot": { + "number": "F.8.1", + "spec": "MathML 4.0", + "text": "Rewrite the minus operator", + "url": "https://www.w3.org/TR/mathml4/#rewrite-the-minus-operator" + } + }, + "#rewrite-the-set-operators": { + "current": { + "number": "F.8.2", + "spec": "MathML 4.0", + "text": "Rewrite the set operators", + "url": "https://w3c.github.io/mathml/#rewrite-the-set-operators" + }, + "snapshot": { + "number": "F.8.2", + "spec": "MathML 4.0", + "text": "Rewrite the set operators", + "url": "https://www.w3.org/TR/mathml4/#rewrite-the-set-operators" + } + }, + "#rewrite-the-statistical-operators": { + "current": { + "number": "F.8.3", + "spec": "MathML 4.0", + "text": "Rewrite the statistical operators", + "url": "https://w3c.github.io/mathml/#rewrite-the-statistical-operators" + }, + "snapshot": { + "number": "F.8.3", + "spec": "MathML 4.0", + "text": "Rewrite the statistical operators", + "url": "https://www.w3.org/TR/mathml4/#rewrite-the-statistical-operators" + } + }, + "#rewrite-the-type-attribute": { + "current": { + "number": "F.9.1", + "spec": "MathML 4.0", + "text": "Rewrite the type attribute", + "url": "https://w3c.github.io/mathml/#rewrite-the-type-attribute" + }, + "snapshot": { + "number": "F.9.1", + "spec": "MathML 4.0", + "text": "Rewrite the type attribute", + "url": "https://www.w3.org/TR/mathml4/#rewrite-the-type-attribute" + } + }, + "#rewrite-to-domainofapplication": { + "current": { + "number": "F.3", + "spec": "MathML 4.0", + "text": "Rewrite to domainofapplication", + "url": "https://w3c.github.io/mathml/#rewrite-to-domainofapplication" + }, + "snapshot": { + "number": "F.3", + "spec": "MathML 4.0", + "text": "Rewrite to domainofapplication", + "url": "https://www.w3.org/TR/mathml4/#rewrite-to-domainofapplication" + } + }, + "#rewrite-token-elements": { + "current": { + "number": "F.7", + "spec": "MathML 4.0", + "text": "Rewrite token elements", + "url": "https://w3c.github.io/mathml/#rewrite-token-elements" + }, + "snapshot": { + "number": "F.7", + "spec": "MathML 4.0", + "text": "Rewrite token elements", + "url": "https://www.w3.org/TR/mathml4/#rewrite-token-elements" + } + }, + "#roots": { + "current": { + "number": "F.2.5", + "spec": "MathML 4.0", + "text": "Roots", + "url": "https://w3c.github.io/mathml/#roots" + }, + "snapshot": { + "number": "F.2.5", + "spec": "MathML 4.0", + "text": "Roots", + "url": "https://www.w3.org/TR/mathml4/#roots" + } + }, + "#row-in-table-or-matrix-mtr": { + "current": { + "number": "3.5.2", + "spec": "MathML 4.0", + "text": "Row in Table or Matrix <mtr>", + "url": "https://w3c.github.io/mathml/#row-in-table-or-matrix-mtr" + }, + "snapshot": { + "number": "3.5.2", + "spec": "MathML 4.0", + "text": "Row in Table or Matrix <mtr>", + "url": "https://www.w3.org/TR/mathml4/#row-in-table-or-matrix-mtr" + } + }, + "#rows-in-elementary-math-msrow": { + "current": { + "number": "3.6.4", + "spec": "MathML 4.0", + "text": "Rows in Elementary Math <msrow>", + "url": "https://w3c.github.io/mathml/#rows-in-elementary-math-msrow" + }, + "snapshot": { + "number": "3.6.4", + "spec": "MathML 4.0", + "text": "Rows in Elementary Math <msrow>", + "url": "https://www.w3.org/TR/mathml4/#rows-in-elementary-math-msrow" + } + }, + "#rules-common-to-both-vertical-and-horizontal-stretching": { + "current": { + "number": "3.2.5.7.4", + "spec": "MathML 4.0", + "text": "Rules Common to both Vertical and Horizontal Stretching", + "url": "https://w3c.github.io/mathml/#rules-common-to-both-vertical-and-horizontal-stretching" + }, + "snapshot": { + "number": "3.2.5.7.4", + "spec": "MathML 4.0", + "text": "Rules Common to both Vertical and Horizontal Stretching", + "url": "https://www.w3.org/TR/mathml4/#rules-common-to-both-vertical-and-horizontal-stretching" + } + }, + "#script-and-limit-schemata": { + "current": { + "number": "3.1.8.3", + "spec": "MathML 4.0", + "text": "Script and Limit Schemata", + "url": "https://w3c.github.io/mathml/#script-and-limit-schemata" + }, + "snapshot": { + "number": "3.1.8.3", + "spec": "MathML 4.0", + "text": "Script and Limit Schemata", + "url": "https://www.w3.org/TR/mathml4/#script-and-limit-schemata" + } + }, + "#script-and-limit-schemata-0": { + "current": { + "number": "3.4", + "spec": "MathML 4.0", + "text": "Script and Limit Schemata", + "url": "https://w3c.github.io/mathml/#script-and-limit-schemata-0" + }, + "snapshot": { + "number": "3.4", + "spec": "MathML 4.0", + "text": "Script and Limit Schemata", + "url": "https://www.w3.org/TR/mathml4/#script-and-limit-schemata-0" + } + }, + "#security-considerations": { + "current": { + "number": "D.5", + "spec": "MathML 4.0", + "text": "Security Considerations", + "url": "https://w3c.github.io/mathml/#security-considerations" + }, + "snapshot": { + "number": "D.5", + "spec": "MathML 4.0", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/mathml4/#security-considerations" + } + }, + "#semantics-and-presentation": { + "current": { + "number": "3.8", + "spec": "MathML 4.0", + "text": "Semantics and Presentation", + "url": "https://w3c.github.io/mathml/#semantics-and-presentation" + }, + "snapshot": { + "number": "3.8", + "spec": "MathML 4.0", + "text": "Semantics and Presentation", + "url": "https://www.w3.org/TR/mathml4/#semantics-and-presentation" + } + }, + "#set-theory-constants-integers-reals-rationals-naturalnumbers-complexes-primes-emptyset": { + "current": { + "number": "4.3.9.2", + "spec": "MathML 4.0", + "text": "Set Theory Constants: <integers/>, <reals/>, <rationals/>, <naturalnumbers/>, <complexes/>, <primes/>, <emptyset/>", + "url": "https://w3c.github.io/mathml/#set-theory-constants-integers-reals-rationals-naturalnumbers-complexes-primes-emptyset" + }, + "snapshot": { + "number": "4.3.9.2", + "spec": "MathML 4.0", + "text": "Set Theory Constants: <integers/>, <reals/>, <rationals/>, <naturalnumbers/>, <complexes/>, <primes/>, <emptyset/>", + "url": "https://www.w3.org/TR/mathml4/#set-theory-constants-integers-reals-rationals-naturalnumbers-complexes-primes-emptyset" + } + }, + "#sets-and-lists": { + "current": { + "number": "F.4.1", + "spec": "MathML 4.0", + "text": "Sets and Lists", + "url": "https://w3c.github.io/mathml/#sets-and-lists" + }, + "snapshot": { + "number": "F.4.1", + "spec": "MathML 4.0", + "text": "Sets and Lists", + "url": "https://www.w3.org/TR/mathml4/#sets-and-lists" + } + }, + "#sortable-table-view": { + "current": { + "number": "B.3.2", + "spec": "MathML 4.0", + "text": "Sortable Table View", + "url": "https://w3c.github.io/mathml/#sortable-table-view" + }, + "snapshot": { + "number": "B.3.2", + "spec": "MathML 4.0", + "text": "Sortable Table View", + "url": "https://www.w3.org/TR/mathml4/#sortable-table-view" + } + }, + "#space-mspace": { + "current": { + "number": "3.2.7", + "spec": "MathML 4.0", + "text": "Space <mspace/>", + "url": "https://w3c.github.io/mathml/#space-mspace" + }, + "snapshot": { + "number": "3.2.7", + "spec": "MathML 4.0", + "text": "Space <mspace/>", + "url": "https://www.w3.org/TR/mathml4/#space-mspace" + } + }, + "#spacing": { + "current": { + "number": "C.4.2.3", + "spec": "MathML 4.0", + "text": "Spacing", + "url": "https://w3c.github.io/mathml/#spacing" + }, + "snapshot": { + "number": "C.4.2.3", + "spec": "MathML 4.0", + "text": "Spacing", + "url": "https://www.w3.org/TR/mathml4/#spacing" + } + }, + "#spacing-around-an-operator": { + "current": { + "number": "3.2.5.6.4", + "spec": "MathML 4.0", + "text": "Spacing around an operator", + "url": "https://w3c.github.io/mathml/#spacing-around-an-operator" + }, + "snapshot": { + "number": "3.2.5.6.4", + "spec": "MathML 4.0", + "text": "Spacing around an operator", + "url": "https://www.w3.org/TR/mathml4/#spacing-around-an-operator" + } + }, + "#special-element-forms": { + "current": { + "number": "4.3.10", + "spec": "MathML 4.0", + "text": "Special Element forms", + "url": "https://w3c.github.io/mathml/#special-element-forms" + }, + "snapshot": { + "number": "4.3.10", + "spec": "MathML 4.0", + "text": "Special Element forms", + "url": "https://www.w3.org/TR/mathml4/#special-element-forms" + } + }, + "#specific-markup-guidance": { + "current": { + "number": "C.4.2", + "spec": "MathML 4.0", + "text": "Specific Markup Guidance", + "url": "https://w3c.github.io/mathml/#specific-markup-guidance" + }, + "snapshot": { + "number": "C.4.2", + "spec": "MathML 4.0", + "text": "Specific Markup Guidance", + "url": "https://www.w3.org/TR/mathml4/#specific-markup-guidance" + } + }, + "#specifying-alignment-groups": { + "current": { + "number": "3.5.5.3", + "spec": "MathML 4.0", + "text": "Specifying alignment groups", + "url": "https://w3c.github.io/mathml/#specifying-alignment-groups" + }, + "snapshot": { + "number": "3.5.5.3", + "spec": "MathML 4.0", + "text": "Specifying alignment groups", + "url": "https://www.w3.org/TR/mathml4/#specifying-alignment-groups" + } + }, + "#specifying-alignment-points-using-malignmark": { + "current": { + "number": "3.5.5.5", + "spec": "MathML 4.0", + "text": "Specifying alignment points using <malignmark/>", + "url": "https://w3c.github.io/mathml/#specifying-alignment-points-using-malignmark" + }, + "snapshot": { + "number": "3.5.5.5", + "spec": "MathML 4.0", + "text": "Specifying alignment points using <malignmark/>", + "url": "https://www.w3.org/TR/mathml4/#specifying-alignment-points-using-malignmark" + } + }, + "#stacks-of-characters-mstack": { + "current": { + "number": "3.6.1", + "spec": "MathML 4.0", + "text": "Stacks of Characters <mstack>", + "url": "https://w3c.github.io/mathml/#stacks-of-characters-mstack" + }, + "snapshot": { + "number": "3.6.1", + "spec": "MathML 4.0", + "text": "Stacks of Characters <mstack>", + "url": "https://www.w3.org/TR/mathml4/#stacks-of-characters-mstack" + } + }, + "#stretching-of-operators-fences-and-accents": { + "current": { + "number": "3.2.5.7", + "spec": "MathML 4.0", + "text": "Stretching of operators, fences and accents", + "url": "https://w3c.github.io/mathml/#stretching-of-operators-fences-and-accents" + }, + "snapshot": { + "number": "3.2.5.7", + "spec": "MathML 4.0", + "text": "Stretching of operators, fences and accents", + "url": "https://www.w3.org/TR/mathml4/#stretching-of-operators-fences-and-accents" + } + }, + "#strict-content-mathml": { + "current": { + "number": "4.1.5", + "spec": "MathML 4.0", + "text": "Strict Content MathML", + "url": "https://w3c.github.io/mathml/#strict-content-mathml" + }, + "snapshot": { + "number": "4.1.5", + "spec": "MathML 4.0", + "text": "Strict Content MathML", + "url": "https://www.w3.org/TR/mathml4/#strict-content-mathml" + } + }, + "#strict-content-mathml-0": { + "current": { + "number": "4.2.5.1", + "spec": "MathML 4.0", + "text": "Strict Content MathML", + "url": "https://w3c.github.io/mathml/#strict-content-mathml-0" + }, + "snapshot": { + "number": "4.2.5.1", + "spec": "MathML 4.0", + "text": "Strict Content MathML", + "url": "https://www.w3.org/TR/mathml4/#strict-content-mathml-0" + } + }, + "#strict-content-mathml-1": { + "current": { + "number": "A.2.3", + "spec": "MathML 4.0", + "text": "Strict Content MathML", + "url": "https://w3c.github.io/mathml/#strict-content-mathml-1" + }, + "snapshot": { + "number": "A.2.3", + "spec": "MathML 4.0", + "text": "Strict Content MathML", + "url": "https://www.w3.org/TR/mathml4/#strict-content-mathml-1" + } + }, + "#strict-uses-of-ci": { + "current": { + "number": "4.2.2.1", + "spec": "MathML 4.0", + "text": "Strict uses of <ci>", + "url": "https://w3c.github.io/mathml/#strict-uses-of-ci" + }, + "snapshot": { + "number": "4.2.2.1", + "spec": "MathML 4.0", + "text": "Strict uses of <ci>", + "url": "https://www.w3.org/TR/mathml4/#strict-uses-of-ci" + } + }, + "#strict-uses-of-cn": { + "current": { + "number": "4.2.1.2", + "spec": "MathML 4.0", + "text": "Strict uses of <cn>", + "url": "https://w3c.github.io/mathml/#strict-uses-of-cn" + }, + "snapshot": { + "number": "4.2.1.2", + "spec": "MathML 4.0", + "text": "Strict uses of <cn>", + "url": "https://www.w3.org/TR/mathml4/#strict-uses-of-cn" + } + }, + "#strict-uses-of-csymbol": { + "current": { + "number": "4.2.3.1", + "spec": "MathML 4.0", + "text": "Strict uses of <csymbol>", + "url": "https://w3c.github.io/mathml/#strict-uses-of-csymbol" + }, + "snapshot": { + "number": "4.2.3.1", + "spec": "MathML 4.0", + "text": "Strict uses of <csymbol>", + "url": "https://www.w3.org/TR/mathml4/#strict-uses-of-csymbol" + } + }, + "#string-literal-ms": { + "current": { + "number": "3.2.8", + "spec": "MathML 4.0", + "text": "String Literal <ms>", + "url": "https://w3c.github.io/mathml/#string-literal-ms" + }, + "snapshot": { + "number": "3.2.8", + "spec": "MathML 4.0", + "text": "String Literal <ms>", + "url": "https://www.w3.org/TR/mathml4/#string-literal-ms" + } + }, + "#string-literals-cs": { + "current": { + "number": "4.2.4", + "spec": "MathML 4.0", + "text": "String Literals <cs>", + "url": "https://w3c.github.io/mathml/#string-literals-cs" + }, + "snapshot": { + "number": "4.2.4", + "spec": "MathML 4.0", + "text": "String Literals <cs>", + "url": "https://www.w3.org/TR/mathml4/#string-literals-cs" + } + }, + "#structure-sharing-and-binding": { + "current": { + "number": "4.2.7.3", + "spec": "MathML 4.0", + "text": "Structure Sharing and Binding", + "url": "https://w3c.github.io/mathml/#structure-sharing-and-binding" + }, + "snapshot": { + "number": "4.2.7.3", + "spec": "MathML 4.0", + "text": "Structure Sharing and Binding", + "url": "https://www.w3.org/TR/mathml4/#structure-sharing-and-binding" + } + }, + "#structure-sharing-share": { + "current": { + "number": "4.2.7", + "spec": "MathML 4.0", + "text": "Structure Sharing <share>", + "url": "https://w3c.github.io/mathml/#structure-sharing-share" + }, + "snapshot": { + "number": "4.2.7", + "spec": "MathML 4.0", + "text": "Structure Sharing <share>", + "url": "https://www.w3.org/TR/mathml4/#structure-sharing-share" + } + }, + "#style-change-mstyle": { + "current": { + "number": "3.3.4", + "spec": "MathML 4.0", + "text": "Style Change <mstyle>", + "url": "https://w3c.github.io/mathml/#style-change-mstyle" + }, + "snapshot": { + "number": "3.3.4", + "spec": "MathML 4.0", + "text": "Style Change <mstyle>", + "url": "https://www.w3.org/TR/mathml4/#style-change-mstyle" + } + }, + "#subscript-msub": { + "current": { + "number": "3.4.1", + "spec": "MathML 4.0", + "text": "Subscript <msub>", + "url": "https://w3c.github.io/mathml/#subscript-msub" + }, + "snapshot": { + "number": "3.4.1", + "spec": "MathML 4.0", + "text": "Subscript <msub>", + "url": "https://www.w3.org/TR/mathml4/#subscript-msub" + } + }, + "#subscript-superscript-pair-msubsup": { + "current": { + "number": "3.4.3", + "spec": "MathML 4.0", + "text": "Subscript-superscript Pair <msubsup>", + "url": "https://w3c.github.io/mathml/#subscript-superscript-pair-msubsup" + }, + "snapshot": { + "number": "3.4.3", + "spec": "MathML 4.0", + "text": "Subscript-superscript Pair <msubsup>", + "url": "https://www.w3.org/TR/mathml4/#subscript-superscript-pair-msubsup" + } + }, + "#such-that": { + "current": { + "number": "F.6.4", + "spec": "MathML 4.0", + "text": "Such that", + "url": "https://w3c.github.io/mathml/#such-that" + }, + "snapshot": { + "number": "F.6.4", + "spec": "MathML 4.0", + "text": "Such that", + "url": "https://www.w3.org/TR/mathml4/#such-that" + } + }, + "#summary-of-presentation-elements": { + "current": { + "number": "3.1.8", + "spec": "MathML 4.0", + "text": "Summary of Presentation Elements", + "url": "https://w3c.github.io/mathml/#summary-of-presentation-elements" + }, + "snapshot": { + "number": "3.1.8", + "spec": "MathML 4.0", + "text": "Summary of Presentation Elements", + "url": "https://www.w3.org/TR/mathml4/#summary-of-presentation-elements" + } + }, + "#sums-and-products": { + "current": { + "number": "F.2.4", + "spec": "MathML 4.0", + "text": "Sums and Products", + "url": "https://w3c.github.io/mathml/#sums-and-products" + }, + "snapshot": { + "number": "F.2.4", + "spec": "MathML 4.0", + "text": "Sums and Products", + "url": "https://www.w3.org/TR/mathml4/#sums-and-products" + } + }, + "#sums-and-products-0": { + "current": { + "number": "F.5.4", + "spec": "MathML 4.0", + "text": "Sums and products", + "url": "https://w3c.github.io/mathml/#sums-and-products-0" + }, + "snapshot": { + "number": "F.5.4", + "spec": "MathML 4.0", + "text": "Sums and products", + "url": "https://www.w3.org/TR/mathml4/#sums-and-products-0" + } + }, + "#superscript-msup": { + "current": { + "number": "3.4.2", + "spec": "MathML 4.0", + "text": "Superscript <msup>", + "url": "https://w3c.github.io/mathml/#superscript-msup" + }, + "snapshot": { + "number": "3.4.2", + "spec": "MathML 4.0", + "text": "Superscript <msup>", + "url": "https://www.w3.org/TR/mathml4/#superscript-msup" + } + }, + "#superscripts-and-subscripts": { + "current": { + "number": "C.4.2.5", + "spec": "MathML 4.0", + "text": "Superscripts and Subscripts", + "url": "https://w3c.github.io/mathml/#superscripts-and-subscripts" + }, + "snapshot": { + "number": "C.4.2.5", + "spec": "MathML 4.0", + "text": "Superscripts and Subscripts", + "url": "https://www.w3.org/TR/mathml4/#superscripts-and-subscripts" + } + }, + "#syntax-notation-used-in-the-mathml-specification": { + "current": { + "number": "2.1.5.1", + "spec": "MathML 4.0", + "text": "Syntax notation used in the MathML specification", + "url": "https://w3c.github.io/mathml/#syntax-notation-used-in-the-mathml-specification" + }, + "snapshot": { + "number": "2.1.5.1", + "spec": "MathML 4.0", + "text": "Syntax notation used in the MathML specification", + "url": "https://www.w3.org/TR/mathml4/#syntax-notation-used-in-the-mathml-specification" + } + }, + "#table-cells-that-are-not-divided-into-alignment-groups": { + "current": { + "number": "3.5.5.4", + "spec": "MathML 4.0", + "text": "Table cells that are not divided into alignment groups", + "url": "https://w3c.github.io/mathml/#table-cells-that-are-not-divided-into-alignment-groups" + }, + "snapshot": { + "number": "3.5.5.4", + "spec": "MathML 4.0", + "text": "Table cells that are not divided into alignment groups", + "url": "https://www.w3.org/TR/mathml4/#table-cells-that-are-not-divided-into-alignment-groups" + } + }, + "#table-of-argument-requirements": { + "current": { + "number": "3.1.3.2", + "spec": "MathML 4.0", + "text": "Table of argument requirements", + "url": "https://w3c.github.io/mathml/#table-of-argument-requirements" + }, + "snapshot": { + "number": "3.1.3.2", + "spec": "MathML 4.0", + "text": "Table of argument requirements", + "url": "https://www.w3.org/TR/mathml4/#table-of-argument-requirements" + } + }, + "#table-or-matrix-mtable": { + "current": { + "number": "3.5.1", + "spec": "MathML 4.0", + "text": "Table or Matrix <mtable>", + "url": "https://w3c.github.io/mathml/#table-or-matrix-mtable" + }, + "snapshot": { + "number": "3.5.1", + "spec": "MathML 4.0", + "text": "Table or Matrix <mtable>", + "url": "https://www.w3.org/TR/mathml4/#table-or-matrix-mtable" + } + }, + "#tables": { + "current": { + "number": "5.7.1", + "spec": "MathML 4.0", + "text": "Tables", + "url": "https://w3c.github.io/mathml/#tables" + }, + "snapshot": { + "number": "5.1.5", + "spec": "MathML 4.0", + "text": "Tables", + "url": "https://www.w3.org/TR/mathml4/#tables" + } + }, + "#tables-and-lists": { + "current": { + "number": "C.4.2.8", + "spec": "MathML 4.0", + "text": "Tables and Lists", + "url": "https://w3c.github.io/mathml/#tables-and-lists" + }, + "snapshot": { + "number": "C.4.2.8", + "spec": "MathML 4.0", + "text": "Tables and Lists", + "url": "https://www.w3.org/TR/mathml4/#tables-and-lists" + } + }, + "#tables-and-matrices": { + "current": { + "number": "3.1.8.4", + "spec": "MathML 4.0", + "text": "Tables and Matrices", + "url": "https://w3c.github.io/mathml/#tables-and-matrices" + }, + "snapshot": { + "number": "3.1.8.4", + "spec": "MathML 4.0", + "text": "Tables and Matrices", + "url": "https://www.w3.org/TR/mathml4/#tables-and-matrices" + } + }, + "#tabular-math": { + "current": { + "number": "3.5", + "spec": "MathML 4.0", + "text": "Tabular Math", + "url": "https://w3c.github.io/mathml/#tabular-math" + }, + "snapshot": { + "number": "3.5", + "spec": "MathML 4.0", + "text": "Tabular Math", + "url": "https://www.w3.org/TR/mathml4/#tabular-math" + } + }, + "#terminology-used-in-this-chapter": { + "current": { + "number": "3.1.2", + "spec": "MathML 4.0", + "text": "Terminology Used In This Chapter", + "url": "https://w3c.github.io/mathml/#terminology-used-in-this-chapter" + }, + "snapshot": { + "number": "3.1.2", + "spec": "MathML 4.0", + "text": "Terminology Used In This Chapter", + "url": "https://www.w3.org/TR/mathml4/#terminology-used-in-this-chapter" + } + }, + "#text-mtext": { + "current": { + "number": "3.2.6", + "spec": "MathML 4.0", + "text": "Text <mtext>", + "url": "https://w3c.github.io/mathml/#text-mtext" + }, + "snapshot": { + "number": "3.2.6", + "spec": "MathML 4.0", + "text": "Text <mtext>", + "url": "https://www.w3.org/TR/mathml4/#text-mtext" + } + }, + "#the-annotation-element": { + "current": { + "number": "6.6", + "spec": "MathML 4.0", + "text": "The <annotation> element", + "url": "https://w3c.github.io/mathml/#the-annotation-element" + }, + "snapshot": { + "number": "5.2.6", + "spec": "MathML 4.0", + "text": "The <annotation> element", + "url": "https://www.w3.org/TR/mathml4/#the-annotation-element" + } + }, + "#the-annotation-xml-element": { + "current": { + "number": "6.7", + "spec": "MathML 4.0", + "text": "The <annotation-xml> element", + "url": "https://w3c.github.io/mathml/#the-annotation-xml-element" + }, + "snapshot": { + "number": "5.2.7", + "spec": "MathML 4.0", + "text": "The <annotation-xml> element", + "url": "https://www.w3.org/TR/mathml4/#the-annotation-xml-element" + } + }, + "#the-content-mathml-attributes": { + "current": { + "number": "E.2", + "spec": "MathML 4.0", + "text": "The Content MathML Attributes", + "url": "https://w3c.github.io/mathml/#the-content-mathml-attributes" + }, + "snapshot": { + "number": "E.2", + "spec": "MathML 4.0", + "text": "The Content MathML Attributes", + "url": "https://www.w3.org/TR/mathml4/#the-content-mathml-attributes" + } + }, + "#the-content-mathml-constructors": { + "current": { + "number": "E.1", + "spec": "MathML 4.0", + "text": "The Content MathML Constructors", + "url": "https://w3c.github.io/mathml/#the-content-mathml-constructors" + }, + "snapshot": { + "number": "E.1", + "spec": "MathML 4.0", + "text": "The Content MathML Constructors", + "url": "https://www.w3.org/TR/mathml4/#the-content-mathml-constructors" + } + }, + "#the-content-mathml-operators": { + "current": { + "number": "E", + "spec": "MathML 4.0", + "text": "The Content MathML Operators", + "url": "https://w3c.github.io/mathml/#the-content-mathml-operators" + }, + "snapshot": { + "number": "E", + "spec": "MathML 4.0", + "text": "The Content MathML Operators", + "url": "https://www.w3.org/TR/mathml4/#the-content-mathml-operators" + } + }, + "#the-content-mathml-operators-0": { + "current": { + "number": "E.3", + "spec": "MathML 4.0", + "text": "The Content MathML Operators", + "url": "https://w3c.github.io/mathml/#the-content-mathml-operators-0" + }, + "snapshot": { + "number": "E.3", + "spec": "MathML 4.0", + "text": "The Content MathML Operators", + "url": "https://www.w3.org/TR/mathml4/#the-content-mathml-operators-0" + } + }, + "#the-grammar-for-intent": { + "current": { + "number": "5.1", + "spec": "MathML 4.0", + "text": "The Grammar for intent", + "url": "https://w3c.github.io/mathml/#the-grammar-for-intent" + }, + "snapshot": { + "number": "5.1.1", + "spec": "MathML 4.0", + "text": "The Grammar for intent", + "url": "https://www.w3.org/TR/mathml4/#the-grammar-for-intent" + } + }, + "#the-intent-attribute": { + "snapshot": { + "number": "5.1", + "spec": "MathML 4.0", + "text": "The intent attribute", + "url": "https://www.w3.org/TR/mathml4/#the-intent-attribute" + } + }, + "#the-math-working-group-membership": { + "current": { + "number": "H.1", + "spec": "MathML 4.0", + "text": "The Math Working Group Membership", + "url": "https://w3c.github.io/mathml/#the-math-working-group-membership" + }, + "snapshot": { + "number": "H.1", + "spec": "MathML 4.0", + "text": "The Math Working Group Membership", + "url": "https://www.w3.org/TR/mathml4/#the-math-working-group-membership" + } + }, + "#the-operator-dictionary": { + "current": { + "number": "3.2.5.6.1", + "spec": "MathML 4.0", + "text": "The operator dictionary", + "url": "https://w3c.github.io/mathml/#the-operator-dictionary" + }, + "snapshot": { + "number": "3.2.5.6.1", + "spec": "MathML 4.0", + "text": "The operator dictionary", + "url": "https://www.w3.org/TR/mathml4/#the-operator-dictionary" + } + }, + "#the-purpose-of-content-markup": { + "current": { + "number": "4.1.1", + "spec": "MathML 4.0", + "text": "The Purpose of Content Markup", + "url": "https://w3c.github.io/mathml/#the-purpose-of-content-markup" + }, + "snapshot": { + "number": "4.1.1", + "spec": "MathML 4.0", + "text": "The Purpose of Content Markup", + "url": "https://www.w3.org/TR/mathml4/#the-purpose-of-content-markup" + } + }, + "#the-semantics-element": { + "current": { + "number": "6.5", + "spec": "MathML 4.0", + "text": "The <semantics> element", + "url": "https://w3c.github.io/mathml/#the-semantics-element" + }, + "snapshot": { + "number": "5.2.5", + "spec": "MathML 4.0", + "text": "The <semantics> element", + "url": "https://www.w3.org/TR/mathml4/#the-semantics-element" + } + }, + "#the-share-element": { + "current": { + "number": "4.2.7.1", + "spec": "MathML 4.0", + "text": "The share element", + "url": "https://w3c.github.io/mathml/#the-share-element" + }, + "snapshot": { + "number": "4.2.7.1", + "spec": "MathML 4.0", + "text": "The share element", + "url": "https://www.w3.org/TR/mathml4/#the-share-element" + } + }, + "#the-strict-content-mathml-transformation": { + "current": { + "number": "F", + "spec": "MathML 4.0", + "text": "The Strict Content MathML Transformation", + "url": "https://w3c.github.io/mathml/#the-strict-content-mathml-transformation" + }, + "snapshot": { + "number": "F", + "spec": "MathML 4.0", + "text": "The Strict Content MathML Transformation", + "url": "https://www.w3.org/TR/mathml4/#the-strict-content-mathml-transformation" + } + }, + "#the-top-level-math-element": { + "current": { + "number": "2.2", + "spec": "MathML 4.0", + "text": "The Top-Level <math> Element", + "url": "https://w3c.github.io/mathml/#the-top-level-math-element" + }, + "snapshot": { + "number": "2.2", + "spec": "MathML 4.0", + "text": "The Top-Level <math> Element", + "url": "https://www.w3.org/TR/mathml4/#the-top-level-math-element" + } + }, + "#title": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Mathematical Markup Language (MathML) Version 4.0", + "url": "https://w3c.github.io/mathml/#title" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Mathematical Markup Language (MathML) Version 4.0", + "url": "https://www.w3.org/TR/mathml4/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Table of Contents", + "url": "https://w3c.github.io/mathml/#toc" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/mathml4/#toc" + } + }, + "#token-element-content-characters-mglyph": { + "current": { + "number": "3.2.1", + "spec": "MathML 4.0", + "text": "Token Element Content Characters, <mglyph/>", + "url": "https://w3c.github.io/mathml/#token-element-content-characters-mglyph" + }, + "snapshot": { + "number": "3.2.1", + "spec": "MathML 4.0", + "text": "Token Element Content Characters, <mglyph/>", + "url": "https://www.w3.org/TR/mathml4/#token-element-content-characters-mglyph" + } + }, + "#token-elements": { + "current": { + "number": "3.1.8.1", + "spec": "MathML 4.0", + "text": "Token Elements", + "url": "https://w3c.github.io/mathml/#token-elements" + }, + "snapshot": { + "number": "3.1.8.1", + "spec": "MathML 4.0", + "text": "Token Elements", + "url": "https://www.w3.org/TR/mathml4/#token-elements" + } + }, + "#token-elements-0": { + "current": { + "number": "3.2", + "spec": "MathML 4.0", + "text": "Token Elements", + "url": "https://w3c.github.io/mathml/#token-elements-0" + }, + "snapshot": { + "number": "3.2", + "spec": "MathML 4.0", + "text": "Token Elements", + "url": "https://www.w3.org/TR/mathml4/#token-elements-0" + } + }, + "#token-presentation": { + "current": { + "number": "F.7.2", + "spec": "MathML 4.0", + "text": "Token presentation", + "url": "https://w3c.github.io/mathml/#token-presentation" + }, + "snapshot": { + "number": "F.7.2", + "spec": "MathML 4.0", + "text": "Token presentation", + "url": "https://www.w3.org/TR/mathml4/#token-presentation" + } + }, + "#top-level-parallel-markup": { + "current": { + "number": "6.9.1", + "spec": "MathML 4.0", + "text": "Top-level Parallel Markup", + "url": "https://w3c.github.io/mathml/#top-level-parallel-markup" + }, + "snapshot": { + "number": "5.2.9.1", + "spec": "MathML 4.0", + "text": "Top-level Parallel Markup", + "url": "https://www.w3.org/TR/mathml4/#top-level-parallel-markup" + } + }, + "#transferring-mathml": { + "current": { + "number": "7.3", + "spec": "MathML 4.0", + "text": "Transferring MathML", + "url": "https://w3c.github.io/mathml/#transferring-mathml" + }, + "snapshot": { + "number": "6.3", + "spec": "MathML 4.0", + "text": "Transferring MathML", + "url": "https://www.w3.org/TR/mathml4/#transferring-mathml" + } + }, + "#unary-arithmetic-operators-factorial-abs-conjugate-arg-real-imaginary-floor-ceiling-exp-minus-root": { + "current": { + "number": "4.3.7.2", + "spec": "MathML 4.0", + "text": "Unary Arithmetic Operators: <factorial/>, <abs/>, <conjugate/>, <arg/>, <real/>, <imaginary/>, <floor/>, <ceiling/>, <exp/>, <minus/>, <root/>", + "url": "https://w3c.github.io/mathml/#unary-arithmetic-operators-factorial-abs-conjugate-arg-real-imaginary-floor-ceiling-exp-minus-root" + }, + "snapshot": { + "number": "4.3.7.2", + "spec": "MathML 4.0", + "text": "Unary Arithmetic Operators: <factorial/>, <abs/>, <conjugate/>, <arg/>, <real/>, <imaginary/>, <floor/>, <ceiling/>, <exp/>, <minus/>, <root/>", + "url": "https://www.w3.org/TR/mathml4/#unary-arithmetic-operators-factorial-abs-conjugate-arg-real-imaginary-floor-ceiling-exp-minus-root" + } + }, + "#unary-elementary-operators-sin-cos-tan-sec-csc-cot-sinh-cosh-tanh-sech-csch-coth-arcsin-arccos-arctan-arccosh-arccot-arccoth-arccsc-arccsch-arcsec-arcsech-arcsinh-arctanh": { + "current": { + "number": "4.3.7.6", + "spec": "MathML 4.0", + "text": "Unary Elementary Operators: <sin/>, <cos/>, <tan/>, <sec/>, <csc/>, <cot/>, <sinh/>, <cosh/>, <tanh/>, <sech/>, <csch/>, <coth/>, <arcsin/>, <arccos/>, <arctan/>, <arccosh/>, <arccot/>, <arccoth/>, <arccsc/>, <arccsch/>, <arcsec/>, <arcsech/>, <arcsinh/>, <arctanh/>", + "url": "https://w3c.github.io/mathml/#unary-elementary-operators-sin-cos-tan-sec-csc-cot-sinh-cosh-tanh-sech-csch-coth-arcsin-arccos-arctan-arccosh-arccot-arccoth-arccsc-arccsch-arcsec-arcsech-arcsinh-arctanh" + }, + "snapshot": { + "number": "4.3.7.6", + "spec": "MathML 4.0", + "text": "Unary Elementary Operators: <sin/>, <cos/>, <tan/>, <sec/>, <csc/>, <cot/>, <sinh/>, <cosh/>, <tanh/>, <sech/>, <csch/>, <coth/>, <arcsin/>, <arccos/>, <arctan/>, <arccosh/>, <arccot/>, <arccoth/>, <arccsc/>, <arccsch/>, <arcsec/>, <arcsech/>, <arcsinh/>, <arctanh/>", + "url": "https://www.w3.org/TR/mathml4/#unary-elementary-operators-sin-cos-tan-sec-csc-cot-sinh-cosh-tanh-sech-csch-coth-arcsin-arccos-arctan-arccosh-arccot-arccoth-arccsc-arccsch-arcsec-arcsech-arcsinh-arctanh" + } + }, + "#unary-functional-operators-inverse-ident-domain-codomain-image-ln": { + "current": { + "number": "4.3.7.4", + "spec": "MathML 4.0", + "text": "Unary Functional Operators: <inverse/>, <ident/>, <domain/>, <codomain/>, <image/>, <ln/>,", + "url": "https://w3c.github.io/mathml/#unary-functional-operators-inverse-ident-domain-codomain-image-ln" + }, + "snapshot": { + "number": "4.3.7.4", + "spec": "MathML 4.0", + "text": "Unary Functional Operators: <inverse/>, <ident/>, <domain/>, <codomain/>, <image/>, <ln/>,", + "url": "https://www.w3.org/TR/mathml4/#unary-functional-operators-inverse-ident-domain-codomain-image-ln" + } + }, + "#unary-linear-algebra-operators-determinant-transpose": { + "current": { + "number": "4.3.7.3", + "spec": "MathML 4.0", + "text": "Unary Linear Algebra Operators: <determinant/>, <transpose/>", + "url": "https://w3c.github.io/mathml/#unary-linear-algebra-operators-determinant-transpose" + }, + "snapshot": { + "number": "4.3.7.3", + "spec": "MathML 4.0", + "text": "Unary Linear Algebra Operators: <determinant/>, <transpose/>", + "url": "https://www.w3.org/TR/mathml4/#unary-linear-algebra-operators-determinant-transpose" + } + }, + "#unary-logical-operators-not": { + "current": { + "number": "4.3.7.1", + "spec": "MathML 4.0", + "text": "Unary Logical Operators: <not/>", + "url": "https://w3c.github.io/mathml/#unary-logical-operators-not" + }, + "snapshot": { + "number": "4.3.7.1", + "spec": "MathML 4.0", + "text": "Unary Logical Operators: <not/>", + "url": "https://www.w3.org/TR/mathml4/#unary-logical-operators-not" + } + }, + "#unary-operators": { + "current": { + "number": "4.3.7", + "spec": "MathML 4.0", + "text": "Unary Operators", + "url": "https://w3c.github.io/mathml/#unary-operators" + }, + "snapshot": { + "number": "4.3.7", + "spec": "MathML 4.0", + "text": "Unary Operators", + "url": "https://www.w3.org/TR/mathml4/#unary-operators" + } + }, + "#unary-qualified-calculus-operators": { + "current": { + "number": "4.3.8", + "spec": "MathML 4.0", + "text": "Unary Qualified Calculus Operators", + "url": "https://w3c.github.io/mathml/#unary-qualified-calculus-operators" + }, + "snapshot": { + "number": "4.3.8", + "spec": "MathML 4.0", + "text": "Unary Qualified Calculus Operators", + "url": "https://www.w3.org/TR/mathml4/#unary-qualified-calculus-operators" + } + }, + "#unary-set-operators-card": { + "current": { + "number": "4.3.7.5", + "spec": "MathML 4.0", + "text": "Unary Set Operators: <card/>", + "url": "https://w3c.github.io/mathml/#unary-set-operators-card" + }, + "snapshot": { + "number": "4.3.7.5", + "spec": "MathML 4.0", + "text": "Unary Set Operators: <card/>", + "url": "https://www.w3.org/TR/mathml4/#unary-set-operators-card" + } + }, + "#unary-vector-calculus-operators-divergence-grad-curl-laplacian": { + "current": { + "number": "4.3.7.7", + "spec": "MathML 4.0", + "text": "Unary Vector Calculus Operators: <divergence/>, <grad/>, <curl/>, <laplacian/>", + "url": "https://w3c.github.io/mathml/#unary-vector-calculus-operators-divergence-grad-curl-laplacian" + }, + "snapshot": { + "number": "4.3.7.7", + "spec": "MathML 4.0", + "text": "Unary Vector Calculus Operators: <divergence/>, <grad/>, <curl/>, <laplacian/>", + "url": "https://www.w3.org/TR/mathml4/#unary-vector-calculus-operators-divergence-grad-curl-laplacian" + } + }, + "#underscript-munder": { + "current": { + "number": "3.4.4", + "spec": "MathML 4.0", + "text": "Underscript <munder>", + "url": "https://w3c.github.io/mathml/#underscript-munder" + }, + "snapshot": { + "number": "3.4.4", + "spec": "MathML 4.0", + "text": "Underscript <munder>", + "url": "https://www.w3.org/TR/mathml4/#underscript-munder" + } + }, + "#underscript-overscript-pair-munderover": { + "current": { + "number": "3.4.6", + "spec": "MathML 4.0", + "text": "Underscript-overscript Pair <munderover>", + "url": "https://w3c.github.io/mathml/#underscript-overscript-pair-munderover" + }, + "snapshot": { + "number": "3.4.6", + "spec": "MathML 4.0", + "text": "Underscript-overscript Pair <munderover>", + "url": "https://www.w3.org/TR/mathml4/#underscript-overscript-pair-munderover" + } + }, + "#use-intent-and-arg-attributes": { + "current": { + "number": "C.4.1.2", + "spec": "MathML 4.0", + "text": "Use intent and arg attributes", + "url": "https://w3c.github.io/mathml/#use-intent-and-arg-attributes" + }, + "snapshot": { + "number": "C.4.1.2", + "spec": "MathML 4.0", + "text": "Use intent and arg attributes", + "url": "https://www.w3.org/TR/mathml4/#use-intent-and-arg-attributes" + } + }, + "#user-agents": { + "current": { + "number": "C.3.1", + "spec": "MathML 4.0", + "text": "User Agents", + "url": "https://w3c.github.io/mathml/#user-agents" + }, + "snapshot": { + "number": "C.3.1", + "spec": "MathML 4.0", + "text": "User Agents", + "url": "https://www.w3.org/TR/mathml4/#user-agents" + } + }, + "#uses-of-degree": { + "current": { + "number": "4.3.3.2", + "spec": "MathML 4.0", + "text": "Uses of <degree>", + "url": "https://w3c.github.io/mathml/#uses-of-degree" + }, + "snapshot": { + "number": "4.3.3.2", + "spec": "MathML 4.0", + "text": "Uses of <degree>", + "url": "https://www.w3.org/TR/mathml4/#uses-of-degree" + } + }, + "#uses-of-domainofapplication-interval-condition-lowlimit-and-uplimit": { + "current": { + "number": "4.3.3.1", + "spec": "MathML 4.0", + "text": "Uses of <domainofapplication>, <interval>, <condition>, <lowlimit> and <uplimit>", + "url": "https://w3c.github.io/mathml/#uses-of-domainofapplication-interval-condition-lowlimit-and-uplimit" + }, + "snapshot": { + "number": "4.3.3.1", + "spec": "MathML 4.0", + "text": "Uses of <domainofapplication>, <interval>, <condition>, <lowlimit> and <uplimit>", + "url": "https://www.w3.org/TR/mathml4/#uses-of-domainofapplication-interval-condition-lowlimit-and-uplimit" + } + }, + "#uses-of-momentabout-and-logbase": { + "current": { + "number": "4.3.3.3", + "spec": "MathML 4.0", + "text": "Uses of <momentabout> and <logbase>", + "url": "https://w3c.github.io/mathml/#uses-of-momentabout-and-logbase" + }, + "snapshot": { + "number": "4.3.3.3", + "spec": "MathML 4.0", + "text": "Uses of <momentabout> and <logbase>", + "url": "https://www.w3.org/TR/mathml4/#uses-of-momentabout-and-logbase" + } + }, + "#using-annotation-xml-in-html-documents": { + "current": { + "number": "6.7.3", + "spec": "MathML 4.0", + "text": "Using annotation-xml in HTML documents", + "url": "https://w3c.github.io/mathml/#using-annotation-xml-in-html-documents" + }, + "snapshot": { + "number": "5.2.7.3", + "spec": "MathML 4.0", + "text": "Using annotation-xml in HTML documents", + "url": "https://www.w3.org/TR/mathml4/#using-annotation-xml-in-html-documents" + } + }, + "#using-css-with-mathml": { + "current": { + "number": "7.5", + "spec": "MathML 4.0", + "text": "Using CSS with MathML", + "url": "https://w3c.github.io/mathml/#using-css-with-mathml" + }, + "snapshot": { + "number": "6.5", + "spec": "MathML 4.0", + "text": "Using CSS with MathML", + "url": "https://www.w3.org/TR/mathml4/#using-css-with-mathml" + } + }, + "#using-images-to-represent-symbols-mglyph": { + "current": { + "number": "3.2.1.1", + "spec": "MathML 4.0", + "text": "Using images to represent symbols <mglyph/>", + "url": "https://w3c.github.io/mathml/#using-images-to-represent-symbols-mglyph" + }, + "snapshot": { + "number": "3.2.1.1", + "spec": "MathML 4.0", + "text": "Using images to represent symbols <mglyph/>", + "url": "https://www.w3.org/TR/mathml4/#using-images-to-represent-symbols-mglyph" + } + }, + "#using-the-mathml-dtd": { + "current": { + "number": "A.3", + "spec": "MathML 4.0", + "text": "Using the MathML DTD", + "url": "https://w3c.github.io/mathml/#using-the-mathml-dtd" + }, + "snapshot": { + "number": "A.3", + "spec": "MathML 4.0", + "text": "Using the MathML DTD", + "url": "https://www.w3.org/TR/mathml4/#using-the-mathml-dtd" + } + }, + "#using-the-mathml-xml-schema": { + "current": { + "number": "A.4", + "spec": "MathML 4.0", + "text": "Using the MathML XML Schema", + "url": "https://w3c.github.io/mathml/#using-the-mathml-xml-schema" + }, + "snapshot": { + "number": "A.4", + "spec": "MathML 4.0", + "text": "Using the MathML XML Schema", + "url": "https://www.w3.org/TR/mathml4/#using-the-mathml-xml-schema" + } + }, + "#using-the-relaxng-schema-for-mathml": { + "current": { + "number": "A.2", + "spec": "MathML 4.0", + "text": "Using the RelaxNG Schema for MathML", + "url": "https://w3c.github.io/mathml/#using-the-relaxng-schema-for-mathml" + }, + "snapshot": { + "number": "A.2", + "spec": "MathML 4.0", + "text": "Using the RelaxNG Schema for MathML", + "url": "https://www.w3.org/TR/mathml4/#using-the-relaxng-schema-for-mathml" + } + }, + "#validating-mathml": { + "current": { + "number": "A.1", + "spec": "MathML 4.0", + "text": "Validating MathML", + "url": "https://w3c.github.io/mathml/#validating-mathml" + }, + "snapshot": { + "number": "A.1", + "spec": "MathML 4.0", + "text": "Validating MathML", + "url": "https://www.w3.org/TR/mathml4/#validating-mathml" + } + }, + "#variable-binding": { + "current": { + "number": "4.1.4", + "spec": "MathML 4.0", + "text": "Variable Binding", + "url": "https://w3c.github.io/mathml/#variable-binding" + }, + "snapshot": { + "number": "4.1.4", + "spec": "MathML 4.0", + "text": "Variable Binding", + "url": "https://www.w3.org/TR/mathml4/#variable-binding" + } + }, + "#vertical-stretching-rules": { + "current": { + "number": "3.2.5.7.2", + "spec": "MathML 4.0", + "text": "Vertical Stretching Rules", + "url": "https://w3c.github.io/mathml/#vertical-stretching-rules" + }, + "snapshot": { + "number": "3.2.5.7.2", + "spec": "MathML 4.0", + "text": "Vertical Stretching Rules", + "url": "https://www.w3.org/TR/mathml4/#vertical-stretching-rules" + } + }, + "#working-group-membership-and-acknowledgments": { + "current": { + "number": "H", + "spec": "MathML 4.0", + "text": "Working Group Membership and Acknowledgments", + "url": "https://w3c.github.io/mathml/#working-group-membership-and-acknowledgments" + }, + "snapshot": { + "number": "H", + "spec": "MathML 4.0", + "text": "Working Group Membership and Acknowledgments", + "url": "https://www.w3.org/TR/mathml4/#working-group-membership-and-acknowledgments" + } + }, + "#world_ex1": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 1", + "url": "https://w3c.github.io/mathml/#world_ex1" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 1", + "url": "https://www.w3.org/TR/mathml4/#world_ex1" + } + }, + "#world_ex2": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 2", + "url": "https://w3c.github.io/mathml/#world_ex2" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 2", + "url": "https://www.w3.org/TR/mathml4/#world_ex2" + } + }, + "#world_ex3": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 3", + "url": "https://w3c.github.io/mathml/#world_ex3" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 3", + "url": "https://www.w3.org/TR/mathml4/#world_ex3" + } + }, + "#world_ex4": { + "current": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 4", + "url": "https://w3c.github.io/mathml/#world_ex4" + }, + "snapshot": { + "number": "", + "spec": "MathML 4.0", + "text": "Example 4", + "url": "https://www.w3.org/TR/mathml4/#world_ex4" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-media-source-2.json b/bikeshed/spec-data/readonly/headings/headings-media-source-2.json index a7ad0df624..00aaf41b45 100644 --- a/bikeshed/spec-data/readonly/headings/headings-media-source-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-media-source-2.json @@ -17,39 +17,95 @@ "current": { "number": "", "spec": "Media Source Extensions™", - "text": "13. Acknowledgments", + "text": "17. Acknowledgments", "url": "https://w3c.github.io/media-source/#acknowledgements" }, "snapshot": { "number": "", "spec": "Media Source Extensions™", - "text": "13. Acknowledgments", + "text": "17. Acknowledgments", "url": "https://www.w3.org/TR/media-source-2/#acknowledgements" } }, "#active-source-buffer-changes": { "current": { - "number": "2.5.5", + "number": "3.15.5", "spec": "Media Source Extensions™", "text": "Changes to selected/enabled track state", "url": "https://w3c.github.io/media-source/#active-source-buffer-changes" }, "snapshot": { - "number": "2.5.5", + "number": "3.15.5", "spec": "Media Source Extensions™", "text": "Changes to selected/enabled track state", "url": "https://www.w3.org/TR/media-source-2/#active-source-buffer-changes" } }, + "#activesourcebuffers-attribute": { + "current": { + "number": "3.3", + "spec": "Media Source Extensions™", + "text": "activeSourceBuffers attribute", + "url": "https://w3c.github.io/media-source/#activesourcebuffers-attribute" + }, + "snapshot": { + "number": "3.3", + "spec": "Media Source Extensions™", + "text": "activeSourceBuffers attribute", + "url": "https://www.w3.org/TR/media-source-2/#activesourcebuffers-attribute" + } + }, + "#addsourcebuffer-method": { + "current": { + "number": "3.7", + "spec": "Media Source Extensions™", + "text": "addSourceBuffer() method", + "url": "https://w3c.github.io/media-source/#addsourcebuffer-method" + }, + "snapshot": { + "number": "3.7", + "spec": "Media Source Extensions™", + "text": "addSourceBuffer() method", + "url": "https://www.w3.org/TR/media-source-2/#addsourcebuffer-method" + } + }, + "#algorithms": { + "current": { + "number": "7.3", + "spec": "Media Source Extensions™", + "text": "Algorithms", + "url": "https://w3c.github.io/media-source/#algorithms" + }, + "snapshot": { + "number": "7.3", + "spec": "Media Source Extensions™", + "text": "Algorithms", + "url": "https://www.w3.org/TR/media-source-2/#algorithms" + } + }, + "#algorithms-0": { + "current": { + "number": "9.3", + "spec": "Media Source Extensions™", + "text": "Algorithms", + "url": "https://w3c.github.io/media-source/#algorithms-0" + }, + "snapshot": { + "number": "9.3", + "spec": "Media Source Extensions™", + "text": "Algorithms", + "url": "https://www.w3.org/TR/media-source-2/#algorithms-0" + } + }, "#attributes": { "current": { - "number": "2.1", + "number": "5.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://w3c.github.io/media-source/#attributes" }, "snapshot": { - "number": "2.1", + "number": "5.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://www.w3.org/TR/media-source-2/#attributes" @@ -57,13 +113,13 @@ }, "#attributes-0": { "current": { - "number": "4.1", + "number": "6.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://w3c.github.io/media-source/#attributes-0" }, "snapshot": { - "number": "4.1", + "number": "6.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://www.w3.org/TR/media-source-2/#attributes-0" @@ -71,13 +127,13 @@ }, "#attributes-1": { "current": { - "number": "5.1", + "number": "7.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://w3c.github.io/media-source/#attributes-1" }, "snapshot": { - "number": "5.1", + "number": "7.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://www.w3.org/TR/media-source-2/#attributes-1" @@ -85,13 +141,13 @@ }, "#attributes-2": { "current": { - "number": "", + "number": "8.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://w3c.github.io/media-source/#attributes-2" }, "snapshot": { - "number": "", + "number": "8.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://www.w3.org/TR/media-source-2/#attributes-2" @@ -99,13 +155,13 @@ }, "#attributes-3": { "current": { - "number": "", + "number": "9.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://w3c.github.io/media-source/#attributes-3" }, "snapshot": { - "number": "", + "number": "9.1", "spec": "Media Source Extensions™", "text": "Attributes", "url": "https://www.w3.org/TR/media-source-2/#attributes-3" @@ -125,85 +181,183 @@ "url": "https://www.w3.org/TR/media-source-2/#attributes-4" } }, + "#attributes-5": { + "current": { + "number": "", + "spec": "Media Source Extensions™", + "text": "Attributes", + "url": "https://w3c.github.io/media-source/#attributes-5" + }, + "snapshot": { + "number": "", + "spec": "Media Source Extensions™", + "text": "Attributes", + "url": "https://www.w3.org/TR/media-source-2/#attributes-5" + } + }, + "#attributes-6": { + "current": { + "number": "", + "spec": "Media Source Extensions™", + "text": "Attributes", + "url": "https://w3c.github.io/media-source/#attributes-6" + }, + "snapshot": { + "number": "", + "spec": "Media Source Extensions™", + "text": "Attributes", + "url": "https://www.w3.org/TR/media-source-2/#attributes-6" + } + }, "#audio-track-extensions": { "current": { - "number": "7", + "number": "", "spec": "Media Source Extensions™", - "text": "AudioTrack Extensions", + "text": "11. AudioTrack extensions", "url": "https://w3c.github.io/media-source/#audio-track-extensions" }, "snapshot": { - "number": "7", + "number": "", "spec": "Media Source Extensions™", - "text": "AudioTrack Extensions", + "text": "11. AudioTrack extensions", "url": "https://www.w3.org/TR/media-source-2/#audio-track-extensions" } }, "#buffer-monitoring": { "current": { - "number": "2.5.4", + "number": "3.15.4", "spec": "Media Source Extensions™", "text": "SourceBuffer Monitoring", "url": "https://w3c.github.io/media-source/#buffer-monitoring" }, "snapshot": { - "number": "2.5.4", + "number": "3.15.4", "spec": "Media Source Extensions™", "text": "SourceBuffer Monitoring", "url": "https://www.w3.org/TR/media-source-2/#buffer-monitoring" } }, + "#buffered-change": { + "current": { + "number": "9.3.1", + "spec": "Media Source Extensions™", + "text": "Buffered Change", + "url": "https://w3c.github.io/media-source/#buffered-change" + }, + "snapshot": { + "number": "9.3.1", + "spec": "Media Source Extensions™", + "text": "Buffered Change", + "url": "https://www.w3.org/TR/media-source-2/#buffered-change" + } + }, + "#bufferedchangeevent-interface": { + "current": { + "number": "8", + "spec": "Media Source Extensions™", + "text": "BufferedChangeEvent interface", + "url": "https://w3c.github.io/media-source/#bufferedchangeevent-interface" + }, + "snapshot": { + "number": "8", + "spec": "Media Source Extensions™", + "text": "BufferedChangeEvent interface", + "url": "https://www.w3.org/TR/media-source-2/#bufferedchangeevent-interface" + } + }, "#byte-stream-formats": { "current": { "number": "", "spec": "Media Source Extensions™", - "text": "10. Byte Stream Formats", + "text": "14. Byte Stream Formats", "url": "https://w3c.github.io/media-source/#byte-stream-formats" }, "snapshot": { "number": "", "spec": "Media Source Extensions™", - "text": "10. Byte Stream Formats", + "text": "14. Byte Stream Formats", "url": "https://www.w3.org/TR/media-source-2/#byte-stream-formats" } }, + "#canconstructindedicatedworker-attribute": { + "current": { + "number": "3.6", + "spec": "Media Source Extensions™", + "text": "canConstructInDedicatedWorker attribute", + "url": "https://w3c.github.io/media-source/#canconstructindedicatedworker-attribute" + }, + "snapshot": { + "number": "3.6", + "spec": "Media Source Extensions™", + "text": "canConstructInDedicatedWorker attribute", + "url": "https://www.w3.org/TR/media-source-2/#canconstructindedicatedworker-attribute" + } + }, + "#clearliveseekablerange-method": { + "current": { + "number": "3.11", + "spec": "Media Source Extensions™", + "text": "clearLiveSeekableRange() method", + "url": "https://w3c.github.io/media-source/#clearliveseekablerange-method" + }, + "snapshot": { + "number": "3.11", + "spec": "Media Source Extensions™", + "text": "clearLiveSeekableRange() method", + "url": "https://www.w3.org/TR/media-source-2/#clearliveseekablerange-method" + } + }, "#conformance": { "current": { "number": "", "spec": "Media Source Extensions™", - "text": "11. Conformance", + "text": "15. Conformance", "url": "https://w3c.github.io/media-source/#conformance" }, "snapshot": { "number": "", "spec": "Media Source Extensions™", - "text": "11. Conformance", + "text": "15. Conformance", "url": "https://www.w3.org/TR/media-source-2/#conformance" } }, "#definitions": { "current": { - "number": "1.2", + "number": "2", "spec": "Media Source Extensions™", "text": "Definitions", "url": "https://w3c.github.io/media-source/#definitions" }, "snapshot": { - "number": "1.2", + "number": "2", "spec": "Media Source Extensions™", "text": "Definitions", "url": "https://www.w3.org/TR/media-source-2/#definitions" } }, + "#duration-attribute": { + "current": { + "number": "3.5", + "spec": "Media Source Extensions™", + "text": "duration attribute", + "url": "https://w3c.github.io/media-source/#duration-attribute" + }, + "snapshot": { + "number": "3.5", + "spec": "Media Source Extensions™", + "text": "duration attribute", + "url": "https://www.w3.org/TR/media-source-2/#duration-attribute" + } + }, "#duration-change-algorithm": { "current": { - "number": "2.5.6", + "number": "3.15.6", "spec": "Media Source Extensions™", "text": "Duration change", "url": "https://w3c.github.io/media-source/#duration-change-algorithm" }, "snapshot": { - "number": "2.5.6", + "number": "3.15.6", "spec": "Media Source Extensions™", "text": "Duration change", "url": "https://www.w3.org/TR/media-source-2/#duration-change-algorithm" @@ -211,29 +365,71 @@ }, "#end-of-stream-algorithm": { "current": { - "number": "2.5.7", + "number": "3.15.7", "spec": "Media Source Extensions™", "text": "End of stream", "url": "https://w3c.github.io/media-source/#end-of-stream-algorithm" }, "snapshot": { - "number": "2.5.7", + "number": "3.15.7", "spec": "Media Source Extensions™", "text": "End of stream", "url": "https://www.w3.org/TR/media-source-2/#end-of-stream-algorithm" } }, + "#endofstream-method": { + "current": { + "number": "3.9", + "spec": "Media Source Extensions™", + "text": "endOfStream() method", + "url": "https://w3c.github.io/media-source/#endofstream-method" + }, + "snapshot": { + "number": "3.9", + "spec": "Media Source Extensions™", + "text": "endOfStream() method", + "url": "https://www.w3.org/TR/media-source-2/#endofstream-method" + } + }, + "#event-summary": { + "current": { + "number": "7.2", + "spec": "Media Source Extensions™", + "text": "Event Summary", + "url": "https://w3c.github.io/media-source/#event-summary" + }, + "snapshot": { + "number": "7.2", + "spec": "Media Source Extensions™", + "text": "Event Summary", + "url": "https://www.w3.org/TR/media-source-2/#event-summary" + } + }, + "#event-summary-0": { + "current": { + "number": "9.2", + "spec": "Media Source Extensions™", + "text": "Event Summary", + "url": "https://w3c.github.io/media-source/#event-summary-0" + }, + "snapshot": { + "number": "9.2", + "spec": "Media Source Extensions™", + "text": "Event Summary", + "url": "https://www.w3.org/TR/media-source-2/#event-summary-0" + } + }, "#examples": { "current": { "number": "", "spec": "Media Source Extensions™", - "text": "12. Examples", + "text": "16. Examples", "url": "https://w3c.github.io/media-source/#examples" }, "snapshot": { "number": "", "spec": "Media Source Extensions™", - "text": "12. Examples", + "text": "16. Examples", "url": "https://www.w3.org/TR/media-source-2/#examples" } }, @@ -251,59 +447,73 @@ "url": "https://www.w3.org/TR/media-source-2/#goals" } }, + "#handle-attribute": { + "current": { + "number": "3.1", + "spec": "Media Source Extensions™", + "text": "handle attribute", + "url": "https://w3c.github.io/media-source/#handle-attribute" + }, + "snapshot": { + "number": "3.1", + "spec": "Media Source Extensions™", + "text": "handle attribute", + "url": "https://www.w3.org/TR/media-source-2/#handle-attribute" + } + }, "#htmlmediaelement-extensions": { "current": { - "number": "6", + "number": "", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement Extensions", + "text": "10. HTMLMediaElement Extensions", "url": "https://w3c.github.io/media-source/#htmlmediaelement-extensions" }, "snapshot": { - "number": "6", + "number": "", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement Extensions", + "text": "10. HTMLMediaElement Extensions", "url": "https://www.w3.org/TR/media-source-2/#htmlmediaelement-extensions" } }, "#htmlmediaelement-extensions-buffered": { "current": { - "number": "6.2", + "number": "10.2", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement.buffered", + "text": "HTMLMediaElement's buffered", "url": "https://w3c.github.io/media-source/#htmlmediaelement-extensions-buffered" }, "snapshot": { - "number": "6.2", + "number": "10.2", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement.buffered", + "text": "HTMLMediaElement's buffered", "url": "https://www.w3.org/TR/media-source-2/#htmlmediaelement-extensions-buffered" } }, "#htmlmediaelement-extensions-seekable": { "current": { - "number": "6.1", + "number": "10.1", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement.seekable", + "text": "HTMLMediaElement's seekable", "url": "https://w3c.github.io/media-source/#htmlmediaelement-extensions-seekable" }, "snapshot": { - "number": "6.1", + "number": "10.1", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement.seekable", + "text": "HTMLMediaElement's seekable", "url": "https://www.w3.org/TR/media-source-2/#htmlmediaelement-extensions-seekable" } }, "#htmlmediaelement-extensions-srcobject": { "current": { - "number": "6.3", + "number": "10.3", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement.srcObject", + "text": "HTMLMediaElement's srcObject", "url": "https://w3c.github.io/media-source/#htmlmediaelement-extensions-srcobject" }, "snapshot": { - "number": "6.3", + "number": "10.3", "spec": "Media Source Extensions™", - "text": "HTMLMediaElement.srcObject", + "text": "HTMLMediaElement's srcObject", "url": "https://www.w3.org/TR/media-source-2/#htmlmediaelement-extensions-srcobject" } }, @@ -349,29 +559,85 @@ "url": "https://www.w3.org/TR/media-source-2/#issue-summary" } }, + "#istypesupported-method": { + "current": { + "number": "3.12", + "spec": "Media Source Extensions™", + "text": "isTypeSupported() method", + "url": "https://w3c.github.io/media-source/#istypesupported-method" + }, + "snapshot": { + "number": "3.12", + "spec": "Media Source Extensions™", + "text": "isTypeSupported() method", + "url": "https://www.w3.org/TR/media-source-2/#istypesupported-method" + } + }, + "#managedmediasource-interface": { + "current": { + "number": "7", + "spec": "Media Source Extensions™", + "text": "ManagedMediaSource interface", + "url": "https://w3c.github.io/media-source/#managedmediasource-interface" + }, + "snapshot": { + "number": "7", + "spec": "Media Source Extensions™", + "text": "ManagedMediaSource interface", + "url": "https://www.w3.org/TR/media-source-2/#managedmediasource-interface" + } + }, + "#managedsourcebuffer-interface": { + "current": { + "number": "9", + "spec": "Media Source Extensions™", + "text": "ManagedSourceBuffer interface", + "url": "https://w3c.github.io/media-source/#managedsourcebuffer-interface" + }, + "snapshot": { + "number": "9", + "spec": "Media Source Extensions™", + "text": "ManagedSourceBuffer interface", + "url": "https://www.w3.org/TR/media-source-2/#managedsourcebuffer-interface" + } + }, + "#managedsourcebuffer-monitoring": { + "current": { + "number": "7.3.1", + "spec": "Media Source Extensions™", + "text": "ManagedSourceBuffer Monitoring", + "url": "https://w3c.github.io/media-source/#managedsourcebuffer-monitoring" + }, + "snapshot": { + "number": "7.3.1", + "spec": "Media Source Extensions™", + "text": "ManagedSourceBuffer Monitoring", + "url": "https://www.w3.org/TR/media-source-2/#managedsourcebuffer-monitoring" + } + }, "#mediasource": { "current": { - "number": "2", + "number": "3", "spec": "Media Source Extensions™", - "text": "MediaSource Object", + "text": "MediaSource interface", "url": "https://w3c.github.io/media-source/#mediasource" }, "snapshot": { - "number": "2", + "number": "3", "spec": "Media Source Extensions™", - "text": "MediaSource Object", + "text": "MediaSource interface", "url": "https://www.w3.org/TR/media-source-2/#mediasource" } }, "#mediasource-algorithms": { "current": { - "number": "2.5", + "number": "3.15", "spec": "Media Source Extensions™", "text": "Algorithms", "url": "https://w3c.github.io/media-source/#mediasource-algorithms" }, "snapshot": { - "number": "2.5", + "number": "3.15", "spec": "Media Source Extensions™", "text": "Algorithms", "url": "https://www.w3.org/TR/media-source-2/#mediasource-algorithms" @@ -379,13 +645,13 @@ }, "#mediasource-attach": { "current": { - "number": "2.5.1", + "number": "3.15.1", "spec": "Media Source Extensions™", "text": "Attaching to a media element", "url": "https://w3c.github.io/media-source/#mediasource-attach" }, "snapshot": { - "number": "2.5.1", + "number": "3.15.1", "spec": "Media Source Extensions™", "text": "Attaching to a media element", "url": "https://www.w3.org/TR/media-source-2/#mediasource-attach" @@ -393,13 +659,13 @@ }, "#mediasource-detach": { "current": { - "number": "2.5.2", + "number": "3.15.2", "spec": "Media Source Extensions™", "text": "Detaching from a media element", "url": "https://w3c.github.io/media-source/#mediasource-detach" }, "snapshot": { - "number": "2.5.2", + "number": "3.15.2", "spec": "Media Source Extensions™", "text": "Detaching from a media element", "url": "https://www.w3.org/TR/media-source-2/#mediasource-detach" @@ -407,13 +673,13 @@ }, "#mediasource-events": { "current": { - "number": "2.3", + "number": "3.13", "spec": "Media Source Extensions™", "text": "Event Summary", "url": "https://w3c.github.io/media-source/#mediasource-events" }, "snapshot": { - "number": "2.3", + "number": "3.13", "spec": "Media Source Extensions™", "text": "Event Summary", "url": "https://www.w3.org/TR/media-source-2/#mediasource-events" @@ -421,13 +687,13 @@ }, "#mediasource-in-worker-communication-model": { "current": { - "number": "2.4", + "number": "3.14", "spec": "Media Source Extensions™", "text": "Cross-context communication model", "url": "https://w3c.github.io/media-source/#mediasource-in-worker-communication-model" }, "snapshot": { - "number": "2.4", + "number": "3.14", "spec": "Media Source Extensions™", "text": "Cross-context communication model", "url": "https://www.w3.org/TR/media-source-2/#mediasource-in-worker-communication-model" @@ -435,13 +701,13 @@ }, "#mediasource-seeking": { "current": { - "number": "2.5.3", + "number": "3.15.3", "spec": "Media Source Extensions™", "text": "Seeking", "url": "https://w3c.github.io/media-source/#mediasource-seeking" }, "snapshot": { - "number": "2.5.3", + "number": "3.15.3", "spec": "Media Source Extensions™", "text": "Seeking", "url": "https://www.w3.org/TR/media-source-2/#mediasource-seeking" @@ -449,69 +715,83 @@ }, "#mediasourcehandle": { "current": { - "number": "3", + "number": "4", "spec": "Media Source Extensions™", - "text": "MediaSourceHandle Object", + "text": "MediaSourceHandle interface", "url": "https://w3c.github.io/media-source/#mediasourcehandle" }, "snapshot": { - "number": "3", + "number": "4", "spec": "Media Source Extensions™", - "text": "MediaSourceHandle Object", + "text": "MediaSourceHandle interface", "url": "https://www.w3.org/TR/media-source-2/#mediasourcehandle" } }, - "#methods": { + "#memory-cleanup": { "current": { - "number": "2.2", + "number": "7.3.2", "spec": "Media Source Extensions™", - "text": "Methods", - "url": "https://w3c.github.io/media-source/#methods" + "text": "Memory Cleanup", + "url": "https://w3c.github.io/media-source/#memory-cleanup" }, "snapshot": { - "number": "2.2", + "number": "7.3.2", "spec": "Media Source Extensions™", - "text": "Methods", - "url": "https://www.w3.org/TR/media-source-2/#methods" + "text": "Memory Cleanup", + "url": "https://www.w3.org/TR/media-source-2/#memory-cleanup" } }, - "#methods-0": { + "#memory-cleanup-0": { "current": { - "number": "4.2", + "number": "9.3.2", "spec": "Media Source Extensions™", - "text": "Methods", - "url": "https://w3c.github.io/media-source/#methods-0" + "text": "Memory cleanup", + "url": "https://w3c.github.io/media-source/#memory-cleanup-0" }, "snapshot": { - "number": "4.2", + "number": "9.3.2", "spec": "Media Source Extensions™", - "text": "Methods", - "url": "https://www.w3.org/TR/media-source-2/#methods-0" + "text": "Memory cleanup", + "url": "https://www.w3.org/TR/media-source-2/#memory-cleanup-0" } }, - "#methods-1": { + "#methods": { "current": { "number": "5.2", "spec": "Media Source Extensions™", "text": "Methods", - "url": "https://w3c.github.io/media-source/#methods-1" + "url": "https://w3c.github.io/media-source/#methods" }, "snapshot": { "number": "5.2", "spec": "Media Source Extensions™", "text": "Methods", - "url": "https://www.w3.org/TR/media-source-2/#methods-1" + "url": "https://www.w3.org/TR/media-source-2/#methods" + } + }, + "#methods-0": { + "current": { + "number": "6.2", + "spec": "Media Source Extensions™", + "text": "Methods", + "url": "https://w3c.github.io/media-source/#methods-0" + }, + "snapshot": { + "number": "6.2", + "spec": "Media Source Extensions™", + "text": "Methods", + "url": "https://www.w3.org/TR/media-source-2/#methods-0" } }, "#mirror-if-necessary-algorithm": { "current": { - "number": "2.5.8", + "number": "3.15.8", "spec": "Media Source Extensions™", "text": "Mirror if necessary", "url": "https://w3c.github.io/media-source/#mirror-if-necessary-algorithm" }, "snapshot": { - "number": "2.5.8", + "number": "3.15.8", "spec": "Media Source Extensions™", "text": "Mirror if necessary", "url": "https://www.w3.org/TR/media-source-2/#mirror-if-necessary-algorithm" @@ -531,6 +811,20 @@ "url": "https://www.w3.org/TR/media-source-2/#normative-references" } }, + "#readystate-attribute": { + "current": { + "number": "3.4", + "spec": "Media Source Extensions™", + "text": "readyState attribute", + "url": "https://w3c.github.io/media-source/#readystate-attribute" + }, + "snapshot": { + "number": "3.4", + "spec": "Media Source Extensions™", + "text": "readyState attribute", + "url": "https://www.w3.org/TR/media-source-2/#readystate-attribute" + } + }, "#references": { "current": { "number": "C", @@ -545,29 +839,57 @@ "url": "https://www.w3.org/TR/media-source-2/#references" } }, + "#removesourcebuffer-method": { + "current": { + "number": "3.8", + "spec": "Media Source Extensions™", + "text": "removeSourceBuffer() method", + "url": "https://w3c.github.io/media-source/#removesourcebuffer-method" + }, + "snapshot": { + "number": "3.8", + "spec": "Media Source Extensions™", + "text": "removeSourceBuffer() method", + "url": "https://www.w3.org/TR/media-source-2/#removesourcebuffer-method" + } + }, + "#setliveseekablerange-method": { + "current": { + "number": "3.10", + "spec": "Media Source Extensions™", + "text": "setLiveSeekableRange() method", + "url": "https://w3c.github.io/media-source/#setliveseekablerange-method" + }, + "snapshot": { + "number": "3.10", + "spec": "Media Source Extensions™", + "text": "setLiveSeekableRange() method", + "url": "https://www.w3.org/TR/media-source-2/#setliveseekablerange-method" + } + }, "#sourcebuffer": { "current": { - "number": "4", + "number": "5", "spec": "Media Source Extensions™", - "text": "SourceBuffer Object", + "text": "SourceBuffer interface", "url": "https://w3c.github.io/media-source/#sourcebuffer" }, "snapshot": { - "number": "4", + "number": "5", "spec": "Media Source Extensions™", - "text": "SourceBuffer Object", + "text": "SourceBuffer interface", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer" } }, "#sourcebuffer-algorithms": { "current": { - "number": "4.5", + "number": "5.5", "spec": "Media Source Extensions™", "text": "Algorithms", "url": "https://w3c.github.io/media-source/#sourcebuffer-algorithms" }, "snapshot": { - "number": "4.5", + "number": "5.5", "spec": "Media Source Extensions™", "text": "Algorithms", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-algorithms" @@ -575,13 +897,13 @@ }, "#sourcebuffer-append-error": { "current": { - "number": "4.5.3", + "number": "5.5.3", "spec": "Media Source Extensions™", "text": "Append Error", "url": "https://w3c.github.io/media-source/#sourcebuffer-append-error" }, "snapshot": { - "number": "4.5.3", + "number": "5.5.3", "spec": "Media Source Extensions™", "text": "Append Error", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-append-error" @@ -589,13 +911,13 @@ }, "#sourcebuffer-audio-splice-frame-algorithm": { "current": { - "number": "4.5.11", + "number": "5.5.11", "spec": "Media Source Extensions™", "text": "Audio Splice Frame", "url": "https://w3c.github.io/media-source/#sourcebuffer-audio-splice-frame-algorithm" }, "snapshot": { - "number": "4.5.11", + "number": "5.5.11", "spec": "Media Source Extensions™", "text": "Audio Splice Frame", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-audio-splice-frame-algorithm" @@ -603,13 +925,13 @@ }, "#sourcebuffer-audio-splice-rendering-algorithm": { "current": { - "number": "4.5.12", + "number": "5.5.12", "spec": "Media Source Extensions™", "text": "Audio Splice Rendering", "url": "https://w3c.github.io/media-source/#sourcebuffer-audio-splice-rendering-algorithm" }, "snapshot": { - "number": "4.5.12", + "number": "5.5.12", "spec": "Media Source Extensions™", "text": "Audio Splice Rendering", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-audio-splice-rendering-algorithm" @@ -617,13 +939,13 @@ }, "#sourcebuffer-buffer-append": { "current": { - "number": "4.5.5", + "number": "5.5.5", "spec": "Media Source Extensions™", "text": "Buffer Append", "url": "https://w3c.github.io/media-source/#sourcebuffer-buffer-append" }, "snapshot": { - "number": "4.5.5", + "number": "5.5.5", "spec": "Media Source Extensions™", "text": "Buffer Append", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-buffer-append" @@ -631,13 +953,13 @@ }, "#sourcebuffer-coded-frame-eviction": { "current": { - "number": "4.5.10", + "number": "5.5.10", "spec": "Media Source Extensions™", "text": "Coded Frame Eviction", "url": "https://w3c.github.io/media-source/#sourcebuffer-coded-frame-eviction" }, "snapshot": { - "number": "4.5.10", + "number": "5.5.10", "spec": "Media Source Extensions™", "text": "Coded Frame Eviction", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-coded-frame-eviction" @@ -645,13 +967,13 @@ }, "#sourcebuffer-coded-frame-processing": { "current": { - "number": "4.5.8", + "number": "5.5.8", "spec": "Media Source Extensions™", "text": "Coded Frame Processing", "url": "https://w3c.github.io/media-source/#sourcebuffer-coded-frame-processing" }, "snapshot": { - "number": "4.5.8", + "number": "5.5.8", "spec": "Media Source Extensions™", "text": "Coded Frame Processing", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-coded-frame-processing" @@ -659,13 +981,13 @@ }, "#sourcebuffer-coded-frame-removal": { "current": { - "number": "4.5.9", + "number": "5.5.9", "spec": "Media Source Extensions™", "text": "Coded Frame Removal", "url": "https://w3c.github.io/media-source/#sourcebuffer-coded-frame-removal" }, "snapshot": { - "number": "4.5.9", + "number": "5.5.9", "spec": "Media Source Extensions™", "text": "Coded Frame Removal", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-coded-frame-removal" @@ -673,13 +995,13 @@ }, "#sourcebuffer-events": { "current": { - "number": "4.4", + "number": "5.4", "spec": "Media Source Extensions™", "text": "Event Summary", "url": "https://w3c.github.io/media-source/#sourcebuffer-events" }, "snapshot": { - "number": "4.4", + "number": "5.4", "spec": "Media Source Extensions™", "text": "Event Summary", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-events" @@ -687,13 +1009,13 @@ }, "#sourcebuffer-init-segment-received": { "current": { - "number": "4.5.7", + "number": "5.5.7", "spec": "Media Source Extensions™", "text": "Initialization Segment Received", "url": "https://w3c.github.io/media-source/#sourcebuffer-init-segment-received" }, "snapshot": { - "number": "4.5.7", + "number": "5.5.7", "spec": "Media Source Extensions™", "text": "Initialization Segment Received", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-init-segment-received" @@ -701,13 +1023,13 @@ }, "#sourcebuffer-prepare-append": { "current": { - "number": "4.5.4", + "number": "5.5.4", "spec": "Media Source Extensions™", "text": "Prepare Append", "url": "https://w3c.github.io/media-source/#sourcebuffer-prepare-append" }, "snapshot": { - "number": "4.5.4", + "number": "5.5.4", "spec": "Media Source Extensions™", "text": "Prepare Append", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-prepare-append" @@ -715,13 +1037,13 @@ }, "#sourcebuffer-range-removal": { "current": { - "number": "4.5.6", + "number": "5.5.6", "spec": "Media Source Extensions™", "text": "Range Removal", "url": "https://w3c.github.io/media-source/#sourcebuffer-range-removal" }, "snapshot": { - "number": "4.5.6", + "number": "5.5.6", "spec": "Media Source Extensions™", "text": "Range Removal", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-range-removal" @@ -729,13 +1051,13 @@ }, "#sourcebuffer-reset-parser-state": { "current": { - "number": "4.5.2", + "number": "5.5.2", "spec": "Media Source Extensions™", "text": "Reset Parser State", "url": "https://w3c.github.io/media-source/#sourcebuffer-reset-parser-state" }, "snapshot": { - "number": "4.5.2", + "number": "5.5.2", "spec": "Media Source Extensions™", "text": "Reset Parser State", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-reset-parser-state" @@ -743,13 +1065,13 @@ }, "#sourcebuffer-segment-parser-loop": { "current": { - "number": "4.5.1", + "number": "5.5.1", "spec": "Media Source Extensions™", "text": "Segment Parser Loop", "url": "https://w3c.github.io/media-source/#sourcebuffer-segment-parser-loop" }, "snapshot": { - "number": "4.5.1", + "number": "5.5.1", "spec": "Media Source Extensions™", "text": "Segment Parser Loop", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-segment-parser-loop" @@ -757,13 +1079,13 @@ }, "#sourcebuffer-text-splice-frame-algorithm": { "current": { - "number": "4.5.13", + "number": "5.5.13", "spec": "Media Source Extensions™", "text": "Text Splice Frame", "url": "https://w3c.github.io/media-source/#sourcebuffer-text-splice-frame-algorithm" }, "snapshot": { - "number": "4.5.13", + "number": "5.5.13", "spec": "Media Source Extensions™", "text": "Text Splice Frame", "url": "https://www.w3.org/TR/media-source-2/#sourcebuffer-text-splice-frame-algorithm" @@ -771,43 +1093,57 @@ }, "#sourcebufferlist": { "current": { - "number": "5", + "number": "6", "spec": "Media Source Extensions™", - "text": "SourceBufferList Object", + "text": "SourceBufferList interface", "url": "https://w3c.github.io/media-source/#sourcebufferlist" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Media Source Extensions™", - "text": "SourceBufferList Object", + "text": "SourceBufferList interface", "url": "https://www.w3.org/TR/media-source-2/#sourcebufferlist" } }, "#sourcebufferlist-events": { "current": { - "number": "5.3", + "number": "6.3", "spec": "Media Source Extensions™", "text": "Event Summary", "url": "https://w3c.github.io/media-source/#sourcebufferlist-events" }, "snapshot": { - "number": "5.3", + "number": "6.3", "spec": "Media Source Extensions™", "text": "Event Summary", "url": "https://www.w3.org/TR/media-source-2/#sourcebufferlist-events" } }, + "#sourcebuffers-attribute": { + "current": { + "number": "3.2", + "spec": "Media Source Extensions™", + "text": "sourceBuffers attribute", + "url": "https://w3c.github.io/media-source/#sourcebuffers-attribute" + }, + "snapshot": { + "number": "3.2", + "spec": "Media Source Extensions™", + "text": "sourceBuffers attribute", + "url": "https://www.w3.org/TR/media-source-2/#sourcebuffers-attribute" + } + }, "#text-track-extensions": { "current": { - "number": "9", + "number": "", "spec": "Media Source Extensions™", - "text": "TextTrack Extensions", + "text": "13. TextTrack extensions", "url": "https://w3c.github.io/media-source/#text-track-extensions" }, "snapshot": { - "number": "9", + "number": "", "spec": "Media Source Extensions™", - "text": "TextTrack Extensions", + "text": "13. TextTrack extensions", "url": "https://www.w3.org/TR/media-source-2/#text-track-extensions" } }, @@ -841,13 +1177,13 @@ }, "#track-buffers": { "current": { - "number": "4.3", + "number": "5.3", "spec": "Media Source Extensions™", "text": "Track Buffers", "url": "https://w3c.github.io/media-source/#track-buffers" }, "snapshot": { - "number": "4.3", + "number": "5.3", "spec": "Media Source Extensions™", "text": "Track Buffers", "url": "https://www.w3.org/TR/media-source-2/#track-buffers" @@ -855,29 +1191,57 @@ }, "#transfer": { "current": { - "number": "3.1", + "number": "4.1", "spec": "Media Source Extensions™", "text": "Transfer", "url": "https://w3c.github.io/media-source/#transfer" }, "snapshot": { - "number": "3.1", + "number": "4.1", "spec": "Media Source Extensions™", "text": "Transfer", "url": "https://www.w3.org/TR/media-source-2/#transfer" } }, + "#using-a-managed-media-source": { + "current": { + "number": "16.2", + "spec": "Media Source Extensions™", + "text": "Using a Managed Media Source", + "url": "https://w3c.github.io/media-source/#using-a-managed-media-source" + }, + "snapshot": { + "number": "16.2", + "spec": "Media Source Extensions™", + "text": "Using a Managed Media Source", + "url": "https://www.w3.org/TR/media-source-2/#using-a-managed-media-source" + } + }, + "#using-media-source-extensions": { + "current": { + "number": "16.1", + "spec": "Media Source Extensions™", + "text": "Using Media Source Extensions", + "url": "https://w3c.github.io/media-source/#using-media-source-extensions" + }, + "snapshot": { + "number": "16.1", + "spec": "Media Source Extensions™", + "text": "Using Media Source Extensions", + "url": "https://www.w3.org/TR/media-source-2/#using-media-source-extensions" + } + }, "#video-track-extensions": { "current": { - "number": "8", + "number": "", "spec": "Media Source Extensions™", - "text": "VideoTrack Extensions", + "text": "12. VideoTrack extensions", "url": "https://w3c.github.io/media-source/#video-track-extensions" }, "snapshot": { - "number": "8", + "number": "", "spec": "Media Source Extensions™", - "text": "VideoTrack Extensions", + "text": "12. VideoTrack extensions", "url": "https://www.w3.org/TR/media-source-2/#video-track-extensions" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-mediacapture-fromelement.json b/bikeshed/spec-data/readonly/headings/headings-mediacapture-fromelement.json index be66a1850e..4c98c42368 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mediacapture-fromelement.json +++ b/bikeshed/spec-data/readonly/headings/headings-mediacapture-fromelement.json @@ -49,7 +49,7 @@ "url": "https://w3c.github.io/mediacapture-fromelement/#changes-since-2015-tbd-tbd" }, "snapshot": { - "number": "", + "number": "6.1", "spec": "Media Capture from DOM Elements", "text": "Changes since 2015-tbd-tbd", "url": "https://www.w3.org/TR/mediacapture-fromelement/#changes-since-2015-tbd-tbd" diff --git a/bikeshed/spec-data/readonly/headings/headings-mediacapture-streams.json b/bikeshed/spec-data/readonly/headings/headings-mediacapture-streams.json index ab07f3ac24..3c59705227 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mediacapture-streams.json +++ b/bikeshed/spec-data/readonly/headings/headings-mediacapture-streams.json @@ -125,6 +125,20 @@ "url": "https://www.w3.org/TR/mediacapture-streams/#attributes-5" } }, + "#attributes-6": { + "current": { + "number": "", + "spec": "Media Capture and Streams", + "text": "Attributes", + "url": "https://w3c.github.io/mediacapture-main/#attributes-6" + }, + "snapshot": { + "number": "", + "spec": "Media Capture and Streams", + "text": "Attributes", + "url": "https://www.w3.org/TR/mediacapture-streams/#attributes-6" + } + }, "#callback-navigatorusermediaerrorcallback-parameters": { "current": { "number": "", @@ -209,6 +223,20 @@ "url": "https://www.w3.org/TR/mediacapture-streams/#constrainable-properties" } }, + "#constraint-types": { + "current": { + "number": "11.2", + "spec": "Media Capture and Streams", + "text": "Constraint Types", + "url": "https://w3c.github.io/mediacapture-main/#constraint-types" + }, + "snapshot": { + "number": "11.2", + "spec": "Media Capture and Streams", + "text": "Constraint Types", + "url": "https://www.w3.org/TR/mediacapture-streams/#constraint-types" + } + }, "#constraints": { "current": { "number": "11.5", @@ -265,6 +293,20 @@ "url": "https://www.w3.org/TR/mediacapture-streams/#constructors-1" } }, + "#constructors-2": { + "current": { + "number": "", + "spec": "Media Capture and Streams", + "text": "Constructors", + "url": "https://w3c.github.io/mediacapture-main/#constructors-2" + }, + "snapshot": { + "number": "", + "spec": "Media Capture and Streams", + "text": "Constructors", + "url": "https://www.w3.org/TR/mediacapture-streams/#constructors-2" + } + }, "#context-capturing-state": { "current": { "number": "9.2.5", @@ -293,32 +335,46 @@ "url": "https://www.w3.org/TR/mediacapture-streams/#defining-a-new-constrainable-property" } }, - "#defining-a-new-media-type-beyond-the-existing-audio-and-video-types": { + "#defining-a-new-kind-of-media-beyond-audio-and-video": { "current": { "number": "17.1", "spec": "Media Capture and Streams", - "text": "Defining a new media type (beyond the existing Audio and Video types)", - "url": "https://w3c.github.io/mediacapture-main/#defining-a-new-media-type-beyond-the-existing-audio-and-video-types" + "text": "Defining a new kind of media (beyond audio and video)", + "url": "https://w3c.github.io/mediacapture-main/#defining-a-new-kind-of-media-beyond-audio-and-video" }, "snapshot": { "number": "17.1", "spec": "Media Capture and Streams", - "text": "Defining a new media type (beyond the existing Audio and Video types)", - "url": "https://www.w3.org/TR/mediacapture-streams/#defining-a-new-media-type-beyond-the-existing-audio-and-video-types" + "text": "Defining a new kind of media (beyond audio and video)", + "url": "https://www.w3.org/TR/mediacapture-streams/#defining-a-new-kind-of-media-beyond-audio-and-video" } }, - "#defining-new-consumers-of-mediastreams-and-mediastreamtracks": { + "#defining-a-new-sink-for-mediastreamtrack-and-mediastream": { "current": { "number": "17.3", "spec": "Media Capture and Streams", - "text": "Defining new consumers of MediaStreams and MediaStreamTracks", - "url": "https://w3c.github.io/mediacapture-main/#defining-new-consumers-of-mediastreams-and-mediastreamtracks" + "text": "Defining a new sink for MediaStreamTrack and MediaStream", + "url": "https://w3c.github.io/mediacapture-main/#defining-a-new-sink-for-mediastreamtrack-and-mediastream" }, "snapshot": { "number": "17.3", "spec": "Media Capture and Streams", - "text": "Defining new consumers of MediaStreams and MediaStreamTracks", - "url": "https://www.w3.org/TR/mediacapture-streams/#defining-new-consumers-of-mediastreams-and-mediastreamtracks" + "text": "Defining a new sink for MediaStreamTrack and MediaStream", + "url": "https://www.w3.org/TR/mediacapture-streams/#defining-a-new-sink-for-mediastreamtrack-and-mediastream" + } + }, + "#defining-a-new-source-of-mediastreamtrack": { + "current": { + "number": "17.4", + "spec": "Media Capture and Streams", + "text": "Defining a new source of MediaStreamTrack", + "url": "https://w3c.github.io/mediacapture-main/#defining-a-new-source-of-mediastreamtrack" + }, + "snapshot": { + "number": "17.4", + "spec": "Media Capture and Streams", + "text": "Defining a new source of MediaStreamTrack", + "url": "https://www.w3.org/TR/mediacapture-streams/#defining-a-new-source-of-mediastreamtrack" } }, "#device-info": { @@ -349,6 +405,20 @@ "url": "https://www.w3.org/TR/mediacapture-streams/#device-information-exposure" } }, + "#devicechangeevent": { + "current": { + "number": "9.5", + "spec": "Media Capture and Streams", + "text": "DeviceChangeEvent", + "url": "https://w3c.github.io/mediacapture-main/#devicechangeevent" + }, + "snapshot": { + "number": "9.5", + "spec": "Media Capture and Streams", + "text": "DeviceChangeEvent", + "url": "https://www.w3.org/TR/mediacapture-streams/#devicechangeevent" + } + }, "#dictionary-constrainbooleanparameters-members": { "current": { "number": "", @@ -419,6 +489,20 @@ "url": "https://www.w3.org/TR/mediacapture-streams/#dictionary-constrainulongrange-members" } }, + "#dictionary-devicechangeeventinit-members": { + "current": { + "number": "", + "spec": "Media Capture and Streams", + "text": "Dictionary DeviceChangeEventInit Members", + "url": "https://w3c.github.io/mediacapture-main/#dictionary-devicechangeeventinit-members" + }, + "snapshot": { + "number": "", + "spec": "Media Capture and Streams", + "text": "Dictionary DeviceChangeEventInit Members", + "url": "https://www.w3.org/TR/mediacapture-streams/#dictionary-devicechangeeventinit-members" + } + }, "#dictionary-doublerange-members": { "current": { "number": "", @@ -743,32 +827,18 @@ }, "#life-cycle": { "current": { - "number": "4.3.1.1", + "number": "4.3.1.2", "spec": "Media Capture and Streams", "text": "Life-cycle", "url": "https://w3c.github.io/mediacapture-main/#life-cycle" }, "snapshot": { - "number": "4.3.1.1", + "number": "4.3.1.2", "spec": "Media Capture and Streams", "text": "Life-cycle", "url": "https://www.w3.org/TR/mediacapture-streams/#life-cycle" } }, - "#life-cycle-and-media-flow": { - "current": { - "number": "4.3.1", - "spec": "Media Capture and Streams", - "text": "Life-cycle and Media Flow", - "url": "https://w3c.github.io/mediacapture-main/#life-cycle-and-media-flow" - }, - "snapshot": { - "number": "4.3.1", - "spec": "Media Capture and Streams", - "text": "Life-cycle and Media Flow", - "url": "https://www.w3.org/TR/mediacapture-streams/#life-cycle-and-media-flow" - } - }, "#local-content": { "current": { "number": "", @@ -785,18 +855,32 @@ }, "#media-flow": { "current": { - "number": "4.3.1.2", + "number": "4.3.1.1", "spec": "Media Capture and Streams", "text": "Media Flow", "url": "https://w3c.github.io/mediacapture-main/#media-flow" }, "snapshot": { - "number": "4.3.1.2", + "number": "4.3.1.1", "spec": "Media Capture and Streams", "text": "Media Flow", "url": "https://www.w3.org/TR/mediacapture-streams/#media-flow" } }, + "#media-flow-and-life-cycle": { + "current": { + "number": "4.3.1", + "spec": "Media Capture and Streams", + "text": "Media Flow and Life-cycle", + "url": "https://w3c.github.io/mediacapture-main/#media-flow-and-life-cycle" + }, + "snapshot": { + "number": "4.3.1", + "spec": "Media Capture and Streams", + "text": "Media Flow and Life-cycle", + "url": "https://www.w3.org/TR/mediacapture-streams/#media-flow-and-life-cycle" + } + }, "#media-stream-track-interface-definition": { "current": { "number": "4.3.3", @@ -1328,19 +1412,5 @@ "text": "Tracks and Constraints", "url": "https://www.w3.org/TR/mediacapture-streams/#tracks-and-constraints" } - }, - "#types-for-constrainable-properties": { - "current": { - "number": "11.2", - "spec": "Media Capture and Streams", - "text": "Types for Constrainable Properties", - "url": "https://w3c.github.io/mediacapture-main/#types-for-constrainable-properties" - }, - "snapshot": { - "number": "11.2", - "spec": "Media Capture and Streams", - "text": "Types for Constrainable Properties", - "url": "https://www.w3.org/TR/mediacapture-streams/#types-for-constrainable-properties" - } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-mediaqueries-3.json b/bikeshed/spec-data/readonly/headings/headings-mediaqueries-3.json index c5c6a4b205..1a0e2d0788 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mediaqueries-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-mediaqueries-3.json @@ -71,13 +71,13 @@ }, "#changes-2010": { "current": { - "number": "7.2", + "number": "7.3", "spec": "Media Queries 3", "text": "Changes Since the 27 July 2010 Candidate Recommendation", "url": "https://drafts.csswg.org/mediaqueries-3/#changes-2010" }, "snapshot": { - "number": "7.2", + "number": "7.3", "spec": "Media Queries 3", "text": "Changes Since the 27 July 2010 Candidate Recommendation", "url": "https://www.w3.org/TR/mediaqueries-3/#changes-2010" @@ -85,18 +85,32 @@ }, "#changes-2012": { "current": { - "number": "7.1", + "number": "7.2", "spec": "Media Queries 3", "text": "Changes Since the 19 June 2012 Recommendation", "url": "https://drafts.csswg.org/mediaqueries-3/#changes-2012" }, "snapshot": { - "number": "7.1", + "number": "7.2", "spec": "Media Queries 3", "text": "Changes Since the 19 June 2012 Recommendation", "url": "https://www.w3.org/TR/mediaqueries-3/#changes-2012" } }, + "#changes-2022": { + "current": { + "number": "7.1", + "spec": "Media Queries 3", + "text": "Changes Since the 05 April 2022 Recommendation", + "url": "https://drafts.csswg.org/mediaqueries-3/#changes-2022" + }, + "snapshot": { + "number": "7.1", + "spec": "Media Queries 3", + "text": "Changes Since the 05 April 2022 Recommendation", + "url": "https://www.w3.org/TR/mediaqueries-3/#changes-2022" + } + }, "#color": { "current": { "number": "4.8", @@ -293,6 +307,20 @@ "url": "https://www.w3.org/TR/mediaqueries-3/#other-references" } }, + "#privacy": { + "current": { + "number": "", + "spec": "Media Queries 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/mediaqueries-3/#privacy" + }, + "snapshot": { + "number": "", + "spec": "Media Queries 3", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/mediaqueries-3/#privacy" + } + }, "#references": { "current": { "number": "", @@ -349,6 +377,20 @@ "url": "https://www.w3.org/TR/mediaqueries-3/#scan" } }, + "#security": { + "current": { + "number": "", + "spec": "Media Queries 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/mediaqueries-3/#security" + }, + "snapshot": { + "number": "", + "spec": "Media Queries 3", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/mediaqueries-3/#security" + } + }, "#status": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-mediaqueries-4.json b/bikeshed/spec-data/readonly/headings/headings-mediaqueries-4.json index cda8d4bb3f..a085729a6e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mediaqueries-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-mediaqueries-4.json @@ -429,15 +429,15 @@ }, "#mf-deprecated": { "current": { - "number": "", + "number": "A", "spec": "Media Queries 4", - "text": "Appendix A: Deprecated Media Features", + "text": "Deprecated Media Features", "url": "https://drafts.csswg.org/mediaqueries-4/#mf-deprecated" }, "snapshot": { - "number": "", + "number": "A", "spec": "Media Queries 4", - "text": "Appendix A: Deprecated Media Features", + "text": "Deprecated Media Features", "url": "https://www.w3.org/TR/mediaqueries-4/#mf-deprecated" } }, @@ -722,12 +722,6 @@ } }, "#priv-sec": { - "current": { - "number": "8", - "spec": "Media Queries 4", - "text": "Privacy and Security Considerations", - "url": "https://drafts.csswg.org/mediaqueries-4/#priv-sec" - }, "snapshot": { "number": "8", "spec": "Media Queries 4", @@ -735,6 +729,14 @@ "url": "https://www.w3.org/TR/mediaqueries-4/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "Media Queries 4", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/mediaqueries-4/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -791,6 +793,14 @@ "url": "https://www.w3.org/TR/mediaqueries-4/#scan" } }, + "#security": { + "current": { + "number": "", + "spec": "Media Queries 4", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/mediaqueries-4/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-mediaqueries-5.json b/bikeshed/spec-data/readonly/headings/headings-mediaqueries-5.json index 929aec924e..158e48f0d5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mediaqueries-5.json +++ b/bikeshed/spec-data/readonly/headings/headings-mediaqueries-5.json @@ -583,15 +583,15 @@ }, "#mf-deprecated": { "current": { - "number": "", + "number": "A", "spec": "Media Queries 5", - "text": "Appendix A: Deprecated Media Features", + "text": "Deprecated Media Features", "url": "https://drafts.csswg.org/mediaqueries-5/#mf-deprecated" }, "snapshot": { - "number": "", + "number": "A", "spec": "Media Queries 5", - "text": "Appendix A: Deprecated Media Features", + "text": "Deprecated Media Features", "url": "https://www.w3.org/TR/mediaqueries-5/#mf-deprecated" } }, @@ -1031,18 +1031,26 @@ }, "#priv-sec": { "current": { - "number": "", + "number": "B", "spec": "Media Queries 5", - "text": "Appendix B: Privacy and Security Considerations", + "text": "Privacy and Security Considerations", "url": "https://drafts.csswg.org/mediaqueries-5/#priv-sec" }, "snapshot": { - "number": "", + "number": "B", "spec": "Media Queries 5", - "text": "Appendix B: Privacy and Security Considerations", + "text": "Privacy and Security Considerations", "url": "https://www.w3.org/TR/mediaqueries-5/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "Media Queries 5", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/mediaqueries-5/#privacy" + } + }, "#property-index": { "current": { "number": "", @@ -1127,6 +1135,14 @@ "url": "https://www.w3.org/TR/mediaqueries-5/#scripting" } }, + "#security": { + "current": { + "number": "", + "spec": "Media Queries 5", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/mediaqueries-5/#security" + } + }, "#sotd": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-mediasession.json b/bikeshed/spec-data/readonly/headings/headings-mediasession.json index eeba084890..dc4e9bf1e0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mediasession.json +++ b/bikeshed/spec-data/readonly/headings/headings-mediasession.json @@ -29,46 +29,18 @@ }, "#actions-model": { "current": { - "number": "5.4", + "number": "3.4", "spec": "Media Session", "text": "Actions", "url": "https://w3c.github.io/mediasession/#actions-model" }, "snapshot": { - "number": "5.4", + "number": "3.4", "spec": "Media Session", "text": "Actions", "url": "https://www.w3.org/TR/mediasession/#actions-model" } }, - "#conformance": { - "current": { - "number": "2", - "spec": "Media Session", - "text": "Conformance", - "url": "https://w3c.github.io/mediasession/#conformance" - }, - "snapshot": { - "number": "2", - "spec": "Media Session", - "text": "Conformance", - "url": "https://www.w3.org/TR/mediasession/#conformance" - } - }, - "#dependencies": { - "current": { - "number": "3", - "spec": "Media Session", - "text": "Dependencies", - "url": "https://w3c.github.io/mediasession/#dependencies" - }, - "snapshot": { - "number": "3", - "spec": "Media Session", - "text": "Dependencies", - "url": "https://www.w3.org/TR/mediasession/#dependencies" - } - }, "#examples": { "current": { "number": "", @@ -99,13 +71,13 @@ }, "#incognito-mode-privacy": { "current": { - "number": "4.2", + "number": "2.2", "spec": "Media Session", "text": "Incognito mode", "url": "https://w3c.github.io/mediasession/#incognito-mode-privacy" }, "snapshot": { - "number": "4.2", + "number": "2.2", "spec": "Media Session", "text": "Incognito mode", "url": "https://www.w3.org/TR/mediasession/#incognito-mode-privacy" @@ -183,13 +155,13 @@ }, "#media-session-actions-privacy": { "current": { - "number": "4.3", + "number": "2.3", "spec": "Media Session", "text": "Media Session Actions", "url": "https://w3c.github.io/mediasession/#media-session-actions-privacy" }, "snapshot": { - "number": "4.3", + "number": "2.3", "spec": "Media Session", "text": "Media Session Actions", "url": "https://www.w3.org/TR/mediasession/#media-session-actions-privacy" @@ -197,13 +169,13 @@ }, "#media-session-routing": { "current": { - "number": "5.2", + "number": "3.2", "spec": "Media Session", "text": "Routing", "url": "https://w3c.github.io/mediasession/#media-session-routing" }, "snapshot": { - "number": "5.2", + "number": "3.2", "spec": "Media Session", "text": "Routing", "url": "https://www.w3.org/TR/mediasession/#media-session-routing" @@ -211,13 +183,13 @@ }, "#metadata": { "current": { - "number": "5.3", + "number": "3.3", "spec": "Media Session", "text": "Metadata", "url": "https://w3c.github.io/mediasession/#metadata" }, "snapshot": { - "number": "5.3", + "number": "3.3", "spec": "Media Session", "text": "Metadata", "url": "https://www.w3.org/TR/mediasession/#metadata" @@ -225,13 +197,13 @@ }, "#model": { "current": { - "number": "5", + "number": "3", "spec": "Media Session", "text": "Model", "url": "https://w3c.github.io/mediasession/#model" }, "snapshot": { - "number": "5", + "number": "3", "spec": "Media Session", "text": "Model", "url": "https://www.w3.org/TR/mediasession/#model" @@ -251,32 +223,46 @@ "url": "https://www.w3.org/TR/mediasession/#normative" } }, + "#permissions-policy": { + "current": { + "number": "", + "spec": "Media Session", + "text": "10. Permissions Policy Integration", + "url": "https://w3c.github.io/mediasession/#permissions-policy" + }, + "snapshot": { + "number": "", + "spec": "Media Session", + "text": "10. Permissions Policy Integration", + "url": "https://www.w3.org/TR/mediasession/#permissions-policy" + } + }, "#playback-state-model": { "current": { - "number": "5.1", + "number": "3.1", "spec": "Media Session", "text": "Playback State", "url": "https://w3c.github.io/mediasession/#playback-state-model" }, "snapshot": { - "number": "5.1", + "number": "3.1", "spec": "Media Session", "text": "Playback State", "url": "https://www.w3.org/TR/mediasession/#playback-state-model" } }, - "#position-state": { + "#position-state-sec": { "current": { - "number": "5.5", + "number": "3.5", "spec": "Media Session", "text": "Position State", - "url": "https://w3c.github.io/mediasession/#position-state" + "url": "https://w3c.github.io/mediasession/#position-state-sec" }, "snapshot": { - "number": "5.5", + "number": "3.5", "spec": "Media Session", "text": "Position State", - "url": "https://www.w3.org/TR/mediasession/#position-state" + "url": "https://www.w3.org/TR/mediasession/#position-state-sec" } }, "#references": { @@ -295,13 +281,13 @@ }, "#security-privacy-considerations": { "current": { - "number": "4", + "number": "2", "spec": "Media Session", "text": "Security and Privacy Considerations", "url": "https://w3c.github.io/mediasession/#security-privacy-considerations" }, "snapshot": { - "number": "4", + "number": "2", "spec": "Media Session", "text": "Security and Privacy Considerations", "url": "https://www.w3.org/TR/mediasession/#security-privacy-considerations" @@ -321,15 +307,29 @@ "url": "https://www.w3.org/TR/mediasession/#sotd" } }, + "#the-chapterinformation-interface": { + "current": { + "number": "6", + "spec": "Media Session", + "text": "The ChapterInformation interface", + "url": "https://w3c.github.io/mediasession/#the-chapterinformation-interface" + }, + "snapshot": { + "number": "6", + "spec": "Media Session", + "text": "The ChapterInformation interface", + "url": "https://www.w3.org/TR/mediasession/#the-chapterinformation-interface" + } + }, "#the-mediaimage-dictionary": { "current": { - "number": "8", + "number": "7", "spec": "Media Session", "text": "The MediaImage dictionary", "url": "https://w3c.github.io/mediasession/#the-mediaimage-dictionary" }, "snapshot": { - "number": "8", + "number": "7", "spec": "Media Session", "text": "The MediaImage dictionary", "url": "https://www.w3.org/TR/mediasession/#the-mediaimage-dictionary" @@ -337,13 +337,13 @@ }, "#the-mediametadata-interface": { "current": { - "number": "7", + "number": "5", "spec": "Media Session", "text": "The MediaMetadata interface", "url": "https://w3c.github.io/mediasession/#the-mediametadata-interface" }, "snapshot": { - "number": "7", + "number": "5", "spec": "Media Session", "text": "The MediaMetadata interface", "url": "https://www.w3.org/TR/mediasession/#the-mediametadata-interface" @@ -351,13 +351,13 @@ }, "#the-mediapositionstate-dictionary": { "current": { - "number": "9", + "number": "8", "spec": "Media Session", "text": "The MediaPositionState dictionary", "url": "https://w3c.github.io/mediasession/#the-mediapositionstate-dictionary" }, "snapshot": { - "number": "9", + "number": "8", "spec": "Media Session", "text": "The MediaPositionState dictionary", "url": "https://www.w3.org/TR/mediasession/#the-mediapositionstate-dictionary" @@ -365,13 +365,13 @@ }, "#the-mediasession-interface": { "current": { - "number": "6", + "number": "4", "spec": "Media Session", "text": "The MediaSession interface", "url": "https://w3c.github.io/mediasession/#the-mediasession-interface" }, "snapshot": { - "number": "6", + "number": "4", "spec": "Media Session", "text": "The MediaSession interface", "url": "https://www.w3.org/TR/mediasession/#the-mediasession-interface" @@ -379,15 +379,15 @@ }, "#the-mediasessionactiondetails-dictionary": { "current": { - "number": "", + "number": "9", "spec": "Media Session", - "text": "10. The MediaSessionActionDetails dictionary", + "text": "The MediaSessionActionDetails dictionary", "url": "https://w3c.github.io/mediasession/#the-mediasessionactiondetails-dictionary" }, "snapshot": { - "number": "", + "number": "9", "spec": "Media Session", - "text": "10. The MediaSessionActionDetails dictionary", + "text": "The MediaSessionActionDetails dictionary", "url": "https://www.w3.org/TR/mediasession/#the-mediasessionactiondetails-dictionary" } }, @@ -395,13 +395,13 @@ "current": { "number": "", "spec": "Media Session", - "text": "Media Session Standard", + "text": "Media Session", "url": "https://w3c.github.io/mediasession/#title" }, "snapshot": { "number": "", "spec": "Media Session", - "text": "Media Session Standard", + "text": "Media Session", "url": "https://www.w3.org/TR/mediasession/#title" } }, @@ -421,13 +421,13 @@ }, "#user-interface-guidelines": { "current": { - "number": "4.1", + "number": "2.1", "spec": "Media Session", "text": "User interface guidelines", "url": "https://w3c.github.io/mediasession/#user-interface-guidelines" }, "snapshot": { - "number": "4.1", + "number": "2.1", "spec": "Media Session", "text": "User interface guidelines", "url": "https://www.w3.org/TR/mediasession/#user-interface-guidelines" diff --git a/bikeshed/spec-data/readonly/headings/headings-mimesniff.json b/bikeshed/spec-data/readonly/headings/headings-mimesniff.json index d54c1d438a..02df3724f4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mimesniff.json +++ b/bikeshed/spec-data/readonly/headings/headings-mimesniff.json @@ -255,14 +255,6 @@ "url": "https://mimesniff.spec.whatwg.org/#sniffing-a-mislabeled-binary-resource" } }, - "#sniffing-a-mislabeled-feed": { - "current": { - "number": "7.3", - "spec": "MIME Sniffing", - "text": "Sniffing a mislabeled feed", - "url": "https://mimesniff.spec.whatwg.org/#sniffing-a-mislabeled-feed" - } - }, "#sniffing-in-a-browsing-context": { "current": { "number": "8.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-miniapp-lifecycle.json b/bikeshed/spec-data/readonly/headings/headings-miniapp-lifecycle.json index 0a6eb14145..0456d6e968 100644 --- a/bikeshed/spec-data/readonly/headings/headings-miniapp-lifecycle.json +++ b/bikeshed/spec-data/readonly/headings/headings-miniapp-lifecycle.json @@ -363,6 +363,20 @@ "url": "https://www.w3.org/TR/miniapp-lifecycle/#onglobalshown-event-handler-attribute" } }, + "#onglobalunloaded-event-handler-attribute": { + "current": { + "number": "2.4.8", + "spec": "MiniApp Lifecycle", + "text": "onglobalunloaded event handler attribute", + "url": "https://w3c.github.io/miniapp-lifecycle/#onglobalunloaded-event-handler-attribute" + }, + "snapshot": { + "number": "2.4.8", + "spec": "MiniApp Lifecycle", + "text": "onglobalunloaded event handler attribute", + "url": "https://www.w3.org/TR/miniapp-lifecycle/#onglobalunloaded-event-handler-attribute" + } + }, "#onpagehidden-event-handler-attribute": { "current": { "number": "3.4.6", diff --git a/bikeshed/spec-data/readonly/headings/headings-mixed-content.json b/bikeshed/spec-data/readonly/headings/headings-mixed-content.json index 73b9e309a8..3c66d98b23 100644 --- a/bikeshed/spec-data/readonly/headings/headings-mixed-content.json +++ b/bikeshed/spec-data/readonly/headings/headings-mixed-content.json @@ -97,30 +97,6 @@ "url": "https://www.w3.org/TR/mixed-content/#category-upgradeable" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "Mixed Content", - "text": "Conformance", - "url": "https://www.w3.org/TR/mixed-content/#conformance" - } - }, - "#conformant-algorithms": { - "snapshot": { - "number": "", - "spec": "Mixed Content", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/mixed-content/#conformant-algorithms" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "Mixed Content", - "text": "Document conventions", - "url": "https://www.w3.org/TR/mixed-content/#conventions" - } - }, "#existing-mix-algorithms": { "current": { "number": "4.2", @@ -275,14 +251,6 @@ "url": "https://www.w3.org/TR/mixed-content/#obsolescences" } }, - "#profile-and-date": { - "snapshot": { - "number": "", - "spec": "Mixed Content", - "text": "W3C Candidate Recommendation Draft, 4 October 2021", - "url": "https://www.w3.org/TR/mixed-content/#profile-and-date" - } - }, "#references": { "current": { "number": "", @@ -373,14 +341,12 @@ "spec": "Mixed Content", "text": "Status of this document", "url": "https://w3c.github.io/webappsec-mixed-content/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "Mixed Content", "text": "Status of this document", - "url": "https://www.w3.org/TR/mixed-content/#status" + "url": "https://www.w3.org/TR/mixed-content/#sotd" } }, "#strict-checking": { diff --git a/bikeshed/spec-data/readonly/headings/headings-model-element.json b/bikeshed/spec-data/readonly/headings/headings-model-element.json index 7da007833e..063998ec92 100644 --- a/bikeshed/spec-data/readonly/headings/headings-model-element.json +++ b/bikeshed/spec-data/readonly/headings/headings-model-element.json @@ -3,21 +3,29 @@ "current": { "number": "", "spec": "The <model> element", - "text": "17. Accessibility", + "text": "19. Accessibility", "url": "https://immersive-web.github.io/model-element/#accessibility" } }, "#adding-a-model-to-a-document": { "current": { - "number": "1.1", + "number": "3.1", "spec": "The <model> element", "text": "Adding a model to a document", "url": "https://immersive-web.github.io/model-element/#adding-a-model-to-a-document" } }, + "#animation-mixing-and-blending": { + "current": { + "number": "2.2", + "spec": "The <model> element", + "text": "Animation mixing and blending", + "url": "https://immersive-web.github.io/model-element/#animation-mixing-and-blending" + } + }, "#autoplay-attribute": { "current": { - "number": "2.1", + "number": "4.1", "spec": "The <model> element", "text": "autoplay attribute", "url": "https://immersive-web.github.io/model-element/#autoplay-attribute" @@ -27,7 +35,7 @@ "current": { "number": "", "spec": "The <model> element", - "text": "21. Change log", + "text": "23. Change log", "url": "https://immersive-web.github.io/model-element/#change-log" } }, @@ -35,13 +43,13 @@ "current": { "number": "", "spec": "The <model> element", - "text": "19. Conformance", + "text": "21. Conformance", "url": "https://immersive-web.github.io/model-element/#conformance" } }, "#content-security-policy": { "current": { - "number": "16.3", + "number": "18.3", "spec": "The <model> element", "text": "Content Security Policy", "url": "https://immersive-web.github.io/model-element/#content-security-policy" @@ -49,7 +57,7 @@ }, "#controls": { "current": { - "number": "6", + "number": "8", "spec": "The <model> element", "text": "Controls", "url": "https://immersive-web.github.io/model-element/#controls" @@ -57,7 +65,7 @@ }, "#controls-attribute": { "current": { - "number": "2.3", + "number": "4.3", "spec": "The <model> element", "text": "controls attribute", "url": "https://immersive-web.github.io/model-element/#controls-attribute" @@ -65,7 +73,7 @@ }, "#cors": { "current": { - "number": "16.1", + "number": "18.1", "spec": "The <model> element", "text": "CORS", "url": "https://immersive-web.github.io/model-element/#cors" @@ -73,7 +81,7 @@ }, "#crossorigin-attribute": { "current": { - "number": "2.4", + "number": "4.4", "spec": "The <model> element", "text": "crossorigin attribute", "url": "https://immersive-web.github.io/model-element/#crossorigin-attribute" @@ -83,13 +91,13 @@ "current": { "number": "", "spec": "The <model> element", - "text": "12. CSS integrations", + "text": "14. CSS integrations", "url": "https://immersive-web.github.io/model-element/#css-integrations" } }, "#embedded-content": { "current": { - "number": "7.2", + "number": "9.2", "spec": "The <model> element", "text": "Embedded content", "url": "https://immersive-web.github.io/model-element/#embedded-content" @@ -97,7 +105,7 @@ }, "#enabling-interactivity": { "current": { - "number": "1.2", + "number": "3.2", "spec": "The <model> element", "text": "Enabling interactivity", "url": "https://immersive-web.github.io/model-element/#enabling-interactivity" @@ -105,15 +113,15 @@ }, "#events": { "current": { - "number": "8", + "number": "", "spec": "The <model> element", - "text": "Events", + "text": "10. Events", "url": "https://immersive-web.github.io/model-element/#events" } }, "#examples": { "current": { - "number": "1", + "number": "3", "spec": "The <model> element", "text": "Examples", "url": "https://immersive-web.github.io/model-element/#examples" @@ -123,13 +131,13 @@ "current": { "number": "", "spec": "The <model> element", - "text": "14. Fetch integration", + "text": "16. Fetch integration", "url": "https://immersive-web.github.io/model-element/#fetch-integration" } }, "#for-authors": { "current": { - "number": "17.2", + "number": "19.2", "spec": "The <model> element", "text": "For authors", "url": "https://immersive-web.github.io/model-element/#for-authors" @@ -137,7 +145,7 @@ }, "#for-implementers": { "current": { - "number": "17.3", + "number": "19.3", "spec": "The <model> element", "text": "For implementers", "url": "https://immersive-web.github.io/model-element/#for-implementers" @@ -145,7 +153,7 @@ }, "#format-concerns": { "current": { - "number": "16.4", + "number": "18.4", "spec": "The <model> element", "text": "Format concerns", "url": "https://immersive-web.github.io/model-element/#format-concerns" @@ -153,15 +161,15 @@ }, "#formats": { "current": { - "number": "9", + "number": "", "spec": "The <model> element", - "text": "Formats", + "text": "11. Formats", "url": "https://immersive-web.github.io/model-element/#formats" } }, "#formats-and-cors": { "current": { - "number": "16.2", + "number": "18.2", "spec": "The <model> element", "text": "Formats and CORS", "url": "https://immersive-web.github.io/model-element/#formats-and-cors" @@ -171,13 +179,13 @@ "current": { "number": "", "spec": "The <model> element", - "text": "13. Fullscreen integration", + "text": "15. Fullscreen integration", "url": "https://immersive-web.github.io/model-element/#fullscreen-integration" } }, "#fullscreen-presentation-state-the-fullscreen-pseudo-class": { "current": { - "number": "12.3", + "number": "14.3", "spec": "The <model> element", "text": "Fullscreen Presentation State: the :fullscreen pseudo-class", "url": "https://immersive-web.github.io/model-element/#fullscreen-presentation-state-the-fullscreen-pseudo-class" @@ -185,7 +193,7 @@ }, "#height-attribute": { "current": { - "number": "2.5", + "number": "4.5", "spec": "The <model> element", "text": "height attribute", "url": "https://immersive-web.github.io/model-element/#height-attribute" @@ -195,7 +203,7 @@ "current": { "number": "", "spec": "The <model> element", - "text": "11. HTML Integrations", + "text": "13. HTML Integrations", "url": "https://immersive-web.github.io/model-element/#html-integrations" } }, @@ -233,7 +241,7 @@ }, "#integrations-with-source-element": { "current": { - "number": "11.2", + "number": "13.2", "spec": "The <model> element", "text": "Integrations with source element", "url": "https://immersive-web.github.io/model-element/#integrations-with-source-element" @@ -241,7 +249,7 @@ }, "#interaction": { "current": { - "number": "5", + "number": "7", "spec": "The <model> element", "text": "Interaction", "url": "https://immersive-web.github.io/model-element/#interaction" @@ -249,23 +257,31 @@ }, "#interactive-attribute": { "current": { - "number": "2.2", + "number": "4.2", "spec": "The <model> element", "text": "interactive attribute", "url": "https://immersive-web.github.io/model-element/#interactive-attribute" } }, + "#introduction": { + "current": { + "number": "1", + "spec": "The <model> element", + "text": "Introduction", + "url": "https://immersive-web.github.io/model-element/#introduction" + } + }, "#issue-summary": { "current": { "number": "", "spec": "The <model> element", - "text": "20. Issue summary", + "text": "22. Issue summary", "url": "https://immersive-web.github.io/model-element/#issue-summary" } }, "#link-rel-ar": { "current": { - "number": "11.3", + "number": "13.3", "spec": "The <model> element", "text": "Link rel=\"ar\"", "url": "https://immersive-web.github.io/model-element/#link-rel-ar" @@ -273,7 +289,7 @@ }, "#loading-attribute": { "current": { - "number": "2.6", + "number": "4.6", "spec": "The <model> element", "text": "loading attribute", "url": "https://immersive-web.github.io/model-element/#loading-attribute" @@ -281,7 +297,7 @@ }, "#loop-attribute": { "current": { - "number": "2.7", + "number": "4.7", "spec": "The <model> element", "text": "loop attribute", "url": "https://immersive-web.github.io/model-element/#loop-attribute" @@ -289,7 +305,7 @@ }, "#making-model-accessible": { "current": { - "number": "1.5", + "number": "3.5", "spec": "The <model> element", "text": "Making model accessible", "url": "https://immersive-web.github.io/model-element/#making-model-accessible" @@ -297,7 +313,7 @@ }, "#media-playback-states-playing-paused-seeking": { "current": { - "number": "12.1", + "number": "14.1", "spec": "The <model> element", "text": "Media Playback States (:playing, :paused, :seeking)", "url": "https://immersive-web.github.io/model-element/#media-playback-states-playing-paused-seeking" @@ -307,13 +323,13 @@ "current": { "number": "", "spec": "The <model> element", - "text": "18. MIME", + "text": "20. MIME", "url": "https://immersive-web.github.io/model-element/#mime" } }, "#mime-sniffing": { "current": { - "number": "18.1", + "number": "20.1", "spec": "The <model> element", "text": "MIME Sniffing", "url": "https://immersive-web.github.io/model-element/#mime-sniffing" @@ -321,7 +337,7 @@ }, "#model-destination": { "current": { - "number": "14.1", + "number": "16.1", "spec": "The <model> element", "text": "\"model\" destination", "url": "https://immersive-web.github.io/model-element/#model-destination" @@ -329,7 +345,7 @@ }, "#muted-attribute": { "current": { - "number": "2.8", + "number": "4.8", "spec": "The <model> element", "text": "muted attribute", "url": "https://immersive-web.github.io/model-element/#muted-attribute" @@ -345,23 +361,31 @@ }, "#orientation-camera": { "current": { - "number": "7.1", + "number": "9.1", "spec": "The <model> element", "text": "Orientation/camera", "url": "https://immersive-web.github.io/model-element/#orientation-camera" } }, + "#out-of-scope": { + "current": { + "number": "2", + "spec": "The <model> element", + "text": "Out of scope", + "url": "https://immersive-web.github.io/model-element/#out-of-scope" + } + }, "#overlap-with-media-elements": { "current": { "number": "", "spec": "The <model> element", - "text": "10. Overlap with \"media elements\"", + "text": "12. Overlap with \"media elements\"", "url": "https://immersive-web.github.io/model-element/#overlap-with-media-elements" } }, "#poster-attribute": { "current": { - "number": "2.9", + "number": "4.9", "spec": "The <model> element", "text": "poster attribute", "url": "https://immersive-web.github.io/model-element/#poster-attribute" @@ -369,7 +393,7 @@ }, "#preload-link-relationship": { "current": { - "number": "11.1", + "number": "13.1", "spec": "The <model> element", "text": "Preload link relationship", "url": "https://immersive-web.github.io/model-element/#preload-link-relationship" @@ -379,13 +403,13 @@ "current": { "number": "", "spec": "The <model> element", - "text": "15. Privacy considerations", + "text": "17. Privacy considerations", "url": "https://immersive-web.github.io/model-element/#privacy-considerations" } }, "#providing-fallback-content-for-legacy-user-agents": { "current": { - "number": "1.4", + "number": "3.4", "spec": "The <model> element", "text": "Providing fallback content for legacy user agents", "url": "https://immersive-web.github.io/model-element/#providing-fallback-content-for-legacy-user-agents" @@ -401,7 +425,7 @@ }, "#rendering": { "current": { - "number": "7", + "number": "9", "spec": "The <model> element", "text": "Rendering", "url": "https://immersive-web.github.io/model-element/#rendering" @@ -409,23 +433,31 @@ }, "#requirements-for-providing-text-to-act-as-an-alternative-for-3d-content": { "current": { - "number": "17.1", + "number": "19.1", "spec": "The <model> element", "text": "Requirements for providing text to act as an alternative for 3D content", "url": "https://immersive-web.github.io/model-element/#requirements-for-providing-text-to-act-as-an-alternative-for-3d-content" } }, + "#scene-graph-inspection-and-manipulation": { + "current": { + "number": "2.1", + "spec": "The <model> element", + "text": "Scene graph inspection and manipulation", + "url": "https://immersive-web.github.io/model-element/#scene-graph-inspection-and-manipulation" + } + }, "#security-considerations": { "current": { "number": "", "spec": "The <model> element", - "text": "16. Security considerations", + "text": "18. Security considerations", "url": "https://immersive-web.github.io/model-element/#security-considerations" } }, "#source-element-integration": { "current": { - "number": "4", + "number": "6", "spec": "The <model> element", "text": "source element integration", "url": "https://immersive-web.github.io/model-element/#source-element-integration" @@ -433,15 +465,31 @@ }, "#src-attribute": { "current": { - "number": "2.10", + "number": "4.10", "spec": "The <model> element", "text": "src attribute", "url": "https://immersive-web.github.io/model-element/#src-attribute" } }, + "#stateful-interaction-with-model-contents": { + "current": { + "number": "2.3", + "spec": "The <model> element", + "text": "Stateful interaction with model contents", + "url": "https://immersive-web.github.io/model-element/#stateful-interaction-with-model-contents" + } + }, + "#subresource-loading": { + "current": { + "number": "2.4", + "spec": "The <model> element", + "text": "Subresource loading", + "url": "https://immersive-web.github.io/model-element/#subresource-loading" + } + }, "#supporting-multiple-formats": { "current": { - "number": "1.3", + "number": "3.3", "spec": "The <model> element", "text": "Supporting multiple formats", "url": "https://immersive-web.github.io/model-element/#supporting-multiple-formats" @@ -449,7 +497,7 @@ }, "#the-htmlmodelelement-interface": { "current": { - "number": "3", + "number": "5", "spec": "The <model> element", "text": "The HTMLModelElement interface", "url": "https://immersive-web.github.io/model-element/#the-htmlmodelelement-interface" @@ -457,7 +505,7 @@ }, "#the-model-element": { "current": { - "number": "2", + "number": "4", "spec": "The <model> element", "text": "The model element", "url": "https://immersive-web.github.io/model-element/#the-model-element" @@ -465,7 +513,7 @@ }, "#the-muted-and-volume-locked-pseudo-classes": { "current": { - "number": "12.2", + "number": "14.2", "spec": "The <model> element", "text": "The :muted and :volume-locked pseudo-classes", "url": "https://immersive-web.github.io/model-element/#the-muted-and-volume-locked-pseudo-classes" @@ -473,7 +521,7 @@ }, "#the-source-element-s-parent-is-a-model-element": { "current": { - "number": "4.1", + "number": "6.1", "spec": "The <model> element", "text": "The source element's parent is a model element", "url": "https://immersive-web.github.io/model-element/#the-source-element-s-parent-is-a-model-element" @@ -497,7 +545,7 @@ }, "#width-attribute": { "current": { - "number": "2.11", + "number": "4.11", "spec": "The <model> element", "text": "width attribute", "url": "https://immersive-web.github.io/model-element/#width-attribute" diff --git a/bikeshed/spec-data/readonly/headings/headings-motion-1.json b/bikeshed/spec-data/readonly/headings/headings-motion-1.json index 46181fad80..5116cb3b15 100644 --- a/bikeshed/spec-data/readonly/headings/headings-motion-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-motion-1.json @@ -28,12 +28,6 @@ } }, "#calculating-path-transform": { - "current": { - "number": "2.5.1", - "spec": "Motion Path 1", - "text": "Calculating the path transform", - "url": "https://drafts.fxtf.org/motion-1/#calculating-path-transform" - }, "snapshot": { "number": "4.5.1", "spec": "Motion Path 1", @@ -42,12 +36,6 @@ } }, "#calculating-the-computed-distance-along-a-path": { - "current": { - "number": "2.2.1", - "spec": "Motion Path 1", - "text": "Calculating the computed distance along a path", - "url": "https://drafts.fxtf.org/motion-1/#calculating-the-computed-distance-along-a-path" - }, "snapshot": { "number": "4.2.1", "spec": "Motion Path 1", @@ -69,6 +57,22 @@ "url": "https://www.w3.org/TR/motion-1/#changes" } }, + "#changes-20150409": { + "current": { + "number": "", + "spec": "Motion Path 1", + "text": "Changes since the 9 April 2015 First Public Working Draft", + "url": "https://drafts.fxtf.org/motion-1/#changes-20150409" + } + }, + "#changes-20181218": { + "current": { + "number": "", + "spec": "Motion Path 1", + "text": "Changes since the 18 December 2018 Working Draft", + "url": "https://drafts.fxtf.org/motion-1/#changes-20181218" + } + }, "#conform-classes": { "snapshot": { "number": "", @@ -257,7 +261,7 @@ "current": { "number": "2.4", "spec": "Motion Path 1", - "text": "Define an anchor point: The offset-anchor property", + "text": "The Element’s Anchor Point: the offset-anchor property", "url": "https://drafts.fxtf.org/motion-1/#offset-anchor-property" }, "snapshot": { @@ -271,7 +275,7 @@ "current": { "number": "2.2", "spec": "Motion Path 1", - "text": "Position on the path: The offset-distance property", + "text": "Position On The Path: the offset-distance property", "url": "https://drafts.fxtf.org/motion-1/#offset-distance-property" }, "snapshot": { @@ -285,7 +289,7 @@ "current": { "number": "2.1", "spec": "Motion Path 1", - "text": "Defining A Path: The offset-path property", + "text": "Defining A Path: the offset-path property", "url": "https://drafts.fxtf.org/motion-1/#offset-path-property" }, "snapshot": { @@ -299,7 +303,7 @@ "current": { "number": "2.3", "spec": "Motion Path 1", - "text": "Define the starting point of the path: The offset-position property", + "text": "Starting Point Of The Path: the offset-position property", "url": "https://drafts.fxtf.org/motion-1/#offset-position-property" }, "snapshot": { @@ -313,7 +317,7 @@ "current": { "number": "2.5", "spec": "Motion Path 1", - "text": "Rotation at point: The offset-rotate property", + "text": "Rotating To Match The Path: the offset-rotate property", "url": "https://drafts.fxtf.org/motion-1/#offset-rotate-property" }, "snapshot": { @@ -327,7 +331,7 @@ "current": { "number": "2.6", "spec": "Motion Path 1", - "text": "Offset shorthand: The offset property", + "text": "The offset Shorthand", "url": "https://drafts.fxtf.org/motion-1/#offset-shorthand" }, "snapshot": { @@ -337,6 +341,22 @@ "url": "https://www.w3.org/TR/motion-1/#offset-shorthand" } }, + "#path-distance": { + "current": { + "number": "2.2.1", + "spec": "Motion Path 1", + "text": "Calculating the computed distance along a path", + "url": "https://drafts.fxtf.org/motion-1/#path-distance" + } + }, + "#paths": { + "current": { + "number": "3", + "spec": "Motion Path 1", + "text": "Equivalent Paths For <basic-shape>", + "url": "https://drafts.fxtf.org/motion-1/#paths" + } + }, "#placement": { "current": { "number": "1.1", @@ -361,7 +381,7 @@ }, "#privacy": { "current": { - "number": "3", + "number": "4", "spec": "Motion Path 1", "text": "Privacy Considerations", "url": "https://drafts.fxtf.org/motion-1/#privacy" @@ -405,19 +425,21 @@ }, "#security": { "current": { - "number": "4", + "number": "5", "spec": "Motion Path 1", "text": "Security Considerations", "url": "https://drafts.fxtf.org/motion-1/#security" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Motion Path 1", "text": "Status of this document", - "url": "https://drafts.fxtf.org/motion-1/#status" - }, + "url": "https://drafts.fxtf.org/motion-1/#sotd" + } + }, + "#status": { "snapshot": { "number": "", "spec": "Motion Path 1", @@ -461,6 +483,14 @@ "url": "https://www.w3.org/TR/motion-1/#toc" } }, + "#transform": { + "current": { + "number": "2.7", + "spec": "Motion Path 1", + "text": "Calculating The Offset Transform", + "url": "https://drafts.fxtf.org/motion-1/#transform" + } + }, "#values": { "current": { "number": "1.2", diff --git a/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-isobmff.json b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-isobmff.json new file mode 100644 index 0000000000..db3fa0ee11 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-isobmff.json @@ -0,0 +1,156 @@ +{ + "#acknowledgements": { + "current": { + "number": "7", + "spec": "ISO BMFF Byte Stream Format", + "text": "Acknowledgments", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#acknowledgements" + }, + "snapshot": { + "number": "7", + "spec": "ISO BMFF Byte Stream Format", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#acknowledgements" + } + }, + "#conformance": { + "current": { + "number": "6", + "spec": "ISO BMFF Byte Stream Format", + "text": "Conformance", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "ISO BMFF Byte Stream Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#conformance" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "ISO BMFF Byte Stream Format", + "text": "Introduction", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "ISO BMFF Byte Stream Format", + "text": "Introduction", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#introduction" + } + }, + "#iso-init-segments": { + "current": { + "number": "3", + "spec": "ISO BMFF Byte Stream Format", + "text": "Initialization Segments", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#iso-init-segments" + }, + "snapshot": { + "number": "3", + "spec": "ISO BMFF Byte Stream Format", + "text": "Initialization Segments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#iso-init-segments" + } + }, + "#iso-media-segments": { + "current": { + "number": "4", + "spec": "ISO BMFF Byte Stream Format", + "text": "Media Segments", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#iso-media-segments" + }, + "snapshot": { + "number": "4", + "spec": "ISO BMFF Byte Stream Format", + "text": "Media Segments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#iso-media-segments" + } + }, + "#iso-random-access-points": { + "current": { + "number": "5", + "spec": "ISO BMFF Byte Stream Format", + "text": "Random Access Points", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#iso-random-access-points" + }, + "snapshot": { + "number": "5", + "spec": "ISO BMFF Byte Stream Format", + "text": "Random Access Points", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#iso-random-access-points" + } + }, + "#mime-parameters": { + "current": { + "number": "2", + "spec": "ISO BMFF Byte Stream Format", + "text": "MIME-type parameters", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#mime-parameters" + }, + "snapshot": { + "number": "2", + "spec": "ISO BMFF Byte Stream Format", + "text": "MIME-type parameters", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#mime-parameters" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "ISO BMFF Byte Stream Format", + "text": "Normative references", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "ISO BMFF Byte Stream Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "ISO BMFF Byte Stream Format", + "text": "References", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#references" + }, + "snapshot": { + "number": "A", + "spec": "ISO BMFF Byte Stream Format", + "text": "References", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "ISO BMFF Byte Stream Format", + "text": "ISO BMFF Byte Stream Format", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#title" + }, + "snapshot": { + "number": "", + "spec": "ISO BMFF Byte Stream Format", + "text": "ISO BMFF Byte Stream Format", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "ISO BMFF Byte Stream Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/mse-byte-stream-format-isobmff/#toc" + }, + "snapshot": { + "number": "", + "spec": "ISO BMFF Byte Stream Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-mp2t.json b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-mp2t.json new file mode 100644 index 0000000000..eeeac1dff8 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-mp2t.json @@ -0,0 +1,184 @@ +{ + "#acknowledgements": { + "current": { + "number": "9", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Acknowledgments", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#acknowledgements" + }, + "snapshot": { + "number": "9", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#acknowledgements" + } + }, + "#conformance": { + "current": { + "number": "8", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Conformance", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#conformance" + }, + "snapshot": { + "number": "8", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#conformance" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Introduction", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Introduction", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#introduction" + } + }, + "#mime-parameters": { + "current": { + "number": "2", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "MIME-type info", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#mime-parameters" + }, + "snapshot": { + "number": "2", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "MIME-type info", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#mime-parameters" + } + }, + "#mpeg2ts-discontinuities": { + "current": { + "number": "7", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Timestamp Rollover & Discontinuities", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#mpeg2ts-discontinuities" + }, + "snapshot": { + "number": "7", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Timestamp Rollover & Discontinuities", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#mpeg2ts-discontinuities" + } + }, + "#mpeg2ts-general": { + "current": { + "number": "3", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "General Transport Stream Requirements", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#mpeg2ts-general" + }, + "snapshot": { + "number": "3", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "General Transport Stream Requirements", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#mpeg2ts-general" + } + }, + "#mpeg2ts-init-segments": { + "current": { + "number": "4", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Initialization Segments", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#mpeg2ts-init-segments" + }, + "snapshot": { + "number": "4", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Initialization Segments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#mpeg2ts-init-segments" + } + }, + "#mpeg2ts-media-segments": { + "current": { + "number": "5", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Media Segments", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#mpeg2ts-media-segments" + }, + "snapshot": { + "number": "5", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Media Segments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#mpeg2ts-media-segments" + } + }, + "#mpeg2ts-random-access-points": { + "current": { + "number": "6", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Random Access Points", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#mpeg2ts-random-access-points" + }, + "snapshot": { + "number": "6", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Random Access Points", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#mpeg2ts-random-access-points" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Normative references", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "References", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#references" + }, + "snapshot": { + "number": "A", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "References", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "MPEG-2 TS Byte Stream Format", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#title" + }, + "snapshot": { + "number": "", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "MPEG-2 TS Byte Stream Format", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/mse-byte-stream-format-mp2t/#toc" + }, + "snapshot": { + "number": "", + "spec": "MPEG-2 TS Byte Stream Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-mpeg-audio.json b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-mpeg-audio.json new file mode 100644 index 0000000000..6dba8d9b85 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-mpeg-audio.json @@ -0,0 +1,156 @@ +{ + "#conformance": { + "current": { + "number": "6", + "spec": "MPEG Audio Byte Stream Format", + "text": "Conformance", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "MPEG Audio Byte Stream Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#conformance" + } + }, + "#icecast": { + "current": { + "number": "4.1", + "spec": "MPEG Audio Byte Stream Format", + "text": "Icecast headers", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#icecast" + }, + "snapshot": { + "number": "4.1", + "spec": "MPEG Audio Byte Stream Format", + "text": "Icecast headers", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#icecast" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "MPEG Audio Byte Stream Format", + "text": "Introduction", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "MPEG Audio Byte Stream Format", + "text": "Introduction", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#introduction" + } + }, + "#mime-types": { + "current": { + "number": "2", + "spec": "MPEG Audio Byte Stream Format", + "text": "MIME-types", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#mime-types" + }, + "snapshot": { + "number": "2", + "spec": "MPEG Audio Byte Stream Format", + "text": "MIME-types", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#mime-types" + } + }, + "#mpeg-audio-frames": { + "current": { + "number": "3", + "spec": "MPEG Audio Byte Stream Format", + "text": "MPEG Audio Frames", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#mpeg-audio-frames" + }, + "snapshot": { + "number": "3", + "spec": "MPEG Audio Byte Stream Format", + "text": "MPEG Audio Frames", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#mpeg-audio-frames" + } + }, + "#mpeg-metadata": { + "current": { + "number": "4", + "spec": "MPEG Audio Byte Stream Format", + "text": "Metadata Frames", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#mpeg-metadata" + }, + "snapshot": { + "number": "4", + "spec": "MPEG Audio Byte Stream Format", + "text": "Metadata Frames", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#mpeg-metadata" + } + }, + "#mpeg-segments": { + "current": { + "number": "5", + "spec": "MPEG Audio Byte Stream Format", + "text": "Segment Definitions", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#mpeg-segments" + }, + "snapshot": { + "number": "5", + "spec": "MPEG Audio Byte Stream Format", + "text": "Segment Definitions", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#mpeg-segments" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "MPEG Audio Byte Stream Format", + "text": "Normative references", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "MPEG Audio Byte Stream Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "MPEG Audio Byte Stream Format", + "text": "References", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#references" + }, + "snapshot": { + "number": "A", + "spec": "MPEG Audio Byte Stream Format", + "text": "References", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "MPEG Audio Byte Stream Format", + "text": "MPEG Audio Byte Stream Format", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#title" + }, + "snapshot": { + "number": "", + "spec": "MPEG Audio Byte Stream Format", + "text": "MPEG Audio Byte Stream Format", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "MPEG Audio Byte Stream Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/#toc" + }, + "snapshot": { + "number": "", + "spec": "MPEG Audio Byte Stream Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-registry.json b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-registry.json new file mode 100644 index 0000000000..59d20fe386 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-registry.json @@ -0,0 +1,114 @@ +{ + "#entry-requirements": { + "current": { + "number": "3", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Registration Entry Requirements", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#entry-requirements" + }, + "snapshot": { + "number": "3", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Registration Entry Requirements", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#entry-requirements" + } + }, + "#informative-references": { + "current": { + "number": "A.1", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Informative references", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#informative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Informative references", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#informative-references" + } + }, + "#organization": { + "current": { + "number": "2", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Organization", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#organization" + }, + "snapshot": { + "number": "2", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Organization", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#organization" + } + }, + "#purpose": { + "current": { + "number": "1", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Purpose", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#purpose" + }, + "snapshot": { + "number": "1", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Purpose", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#purpose" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "References", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#references" + }, + "snapshot": { + "number": "A", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "References", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#references" + } + }, + "#registry": { + "current": { + "number": "4", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Registry", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#registry" + }, + "snapshot": { + "number": "4", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Registry", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#registry" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Media Source Extensions Byte Stream Format Registry", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#title" + }, + "snapshot": { + "number": "", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Media Source Extensions Byte Stream Format Registry", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Table of Contents", + "url": "https://w3c.github.io/mse-byte-stream-format-registry/#toc" + }, + "snapshot": { + "number": "", + "spec": "Media Source Extensions Byte Stream Format Registry", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/mse-byte-stream-format-registry/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-webm.json b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-webm.json new file mode 100644 index 0000000000..6a6558b0a4 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-mse-byte-stream-format-webm.json @@ -0,0 +1,156 @@ +{ + "#acknowledgements": { + "current": { + "number": "7", + "spec": "WebM Byte Stream Format", + "text": "Acknowledgments", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#acknowledgements" + }, + "snapshot": { + "number": "7", + "spec": "WebM Byte Stream Format", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#acknowledgements" + } + }, + "#conformance": { + "current": { + "number": "6", + "spec": "WebM Byte Stream Format", + "text": "Conformance", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "WebM Byte Stream Format", + "text": "Conformance", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#conformance" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "WebM Byte Stream Format", + "text": "Introduction", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "WebM Byte Stream Format", + "text": "Introduction", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#introduction" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "WebM Byte Stream Format", + "text": "Normative references", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#normative-references" + }, + "snapshot": { + "number": "A.1", + "spec": "WebM Byte Stream Format", + "text": "Normative references", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#normative-references" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "WebM Byte Stream Format", + "text": "References", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#references" + }, + "snapshot": { + "number": "A", + "spec": "WebM Byte Stream Format", + "text": "References", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#references" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebM Byte Stream Format", + "text": "WebM Byte Stream Format", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#title" + }, + "snapshot": { + "number": "", + "spec": "WebM Byte Stream Format", + "text": "WebM Byte Stream Format", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WebM Byte Stream Format", + "text": "Table of Contents", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#toc" + }, + "snapshot": { + "number": "", + "spec": "WebM Byte Stream Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#toc" + } + }, + "#webm-init-segments": { + "current": { + "number": "3", + "spec": "WebM Byte Stream Format", + "text": "Initialization Segments", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#webm-init-segments" + }, + "snapshot": { + "number": "3", + "spec": "WebM Byte Stream Format", + "text": "Initialization Segments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#webm-init-segments" + } + }, + "#webm-media-segments": { + "current": { + "number": "4", + "spec": "WebM Byte Stream Format", + "text": "Media Segments", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#webm-media-segments" + }, + "snapshot": { + "number": "4", + "spec": "WebM Byte Stream Format", + "text": "Media Segments", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#webm-media-segments" + } + }, + "#webm-mime-parameters": { + "current": { + "number": "2", + "spec": "WebM Byte Stream Format", + "text": "MIME-type parameters", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#webm-mime-parameters" + }, + "snapshot": { + "number": "2", + "spec": "WebM Byte Stream Format", + "text": "MIME-type parameters", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#webm-mime-parameters" + } + }, + "#webm-random-access-points": { + "current": { + "number": "5", + "spec": "WebM Byte Stream Format", + "text": "Random Access Points", + "url": "https://w3c.github.io/mse-byte-stream-format-webm/#webm-random-access-points" + }, + "snapshot": { + "number": "5", + "spec": "WebM Byte Stream Format", + "text": "Random Access Points", + "url": "https://www.w3.org/TR/mse-byte-stream-format-webm/#webm-random-access-points" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-nav-tracking-mitigations.json b/bikeshed/spec-data/readonly/headings/headings-nav-tracking-mitigations.json new file mode 100644 index 0000000000..e18b955d21 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-nav-tracking-mitigations.json @@ -0,0 +1,370 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Abstract", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#abstract" + } + }, + "#acknowledgements": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Acknowledgements", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#acknowledgements" + } + }, + "#alternatives": { + "current": { + "number": "5", + "spec": "Navigational-Tracking Mitigations", + "text": "Considered Alternatives", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#alternatives" + } + }, + "#bounce-tracking-mitigation-stateful-bounce-detection": { + "current": { + "number": "6.2.3", + "spec": "Navigational-Tracking Mitigations", + "text": "Stateful Bounce Detection", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigation-stateful-bounce-detection" + } + }, + "#bounce-tracking-mitigations": { + "current": { + "number": "6", + "spec": "Navigational-Tracking Mitigations", + "text": "Bounce Tracking Mitigations", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations" + } + }, + "#bounce-tracking-mitigations-activation-monkey-patch": { + "current": { + "number": "6.2.1", + "spec": "Navigational-Tracking Mitigations", + "text": "User Activation Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-activation-monkey-patch" + } + }, + "#bounce-tracking-mitigations-algorithms": { + "current": { + "number": "6.2", + "spec": "Navigational-Tracking Mitigations", + "text": "Algorithms", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-algorithms" + } + }, + "#bounce-tracking-mitigations-automation": { + "current": { + "number": "6.3", + "spec": "Navigational-Tracking Mitigations", + "text": "User Agent Automation", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-automation" + } + }, + "#bounce-tracking-mitigations-data-model": { + "current": { + "number": "6.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Data Model", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-data-model" + } + }, + "#bounce-tracking-mitigations-data-model-constants": { + "current": { + "number": "6.1.3", + "spec": "Navigational-Tracking Mitigations", + "text": "Constants", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-data-model-constants" + } + }, + "#bounce-tracking-mitigations-data-model-global": { + "current": { + "number": "6.1.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Global Data", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-data-model-global" + } + }, + "#bounce-tracking-mitigations-data-model-per-tab": { + "current": { + "number": "6.1.2", + "spec": "Navigational-Tracking Mitigations", + "text": "Per-Tab Data", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-data-model-per-tab" + } + }, + "#bounce-tracking-mitigations-deletion": { + "current": { + "number": "6.2.5", + "spec": "Navigational-Tracking Mitigations", + "text": "Deletion", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-deletion" + } + }, + "#bounce-tracking-mitigations-document-load-monkey-patch": { + "current": { + "number": "6.2.3.6", + "spec": "Navigational-Tracking Mitigations", + "text": "Document Loaded Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-document-load-monkey-patch" + } + }, + "#bounce-tracking-mitigations-nav-start-monkey-patch": { + "current": { + "number": "6.2.3.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Start Navigation Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-nav-start-monkey-patch" + } + }, + "#bounce-tracking-mitigations-navigation-state-diagram": { + "current": { + "number": "6.2.3.7", + "spec": "Navigational-Tracking Mitigations", + "text": "Navigation State Diagram", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-navigation-state-diagram" + } + }, + "#bounce-tracking-mitigations-network-cookie-write-monkey-patch": { + "current": { + "number": "6.2.3.2", + "spec": "Navigational-Tracking Mitigations", + "text": "Network Cookie Write Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-network-cookie-write-monkey-patch" + } + }, + "#bounce-tracking-mitigations-response-received-monkey-patch": { + "current": { + "number": "6.2.3.5", + "spec": "Navigational-Tracking Mitigations", + "text": "Response Received Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-response-received-monkey-patch" + } + }, + "#bounce-tracking-mitigations-service-worker-activation-monkey-patch": { + "current": { + "number": "6.2.3.3", + "spec": "Navigational-Tracking Mitigations", + "text": "Service Worker Activation Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-service-worker-activation-monkey-patch" + } + }, + "#bounce-tracking-mitigations-storage-access-monkey-patch": { + "current": { + "number": "6.2.3.4", + "spec": "Navigational-Tracking Mitigations", + "text": "Storage Access Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-storage-access-monkey-patch" + } + }, + "#bounce-tracking-mitigations-timers": { + "current": { + "number": "6.2.4", + "spec": "Navigational-Tracking Mitigations", + "text": "Timers", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-timers" + } + }, + "#bounce-tracking-mitigations-web-authentication-monkey-patch": { + "current": { + "number": "6.2.2", + "spec": "Navigational-Tracking Mitigations", + "text": "Web Authentication Monkey Patch", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#bounce-tracking-mitigations-web-authentication-monkey-patch" + } + }, + "#deployed-mitigations": { + "current": { + "number": "5.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Deployed Mitigations", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#deployed-mitigations" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Index", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Terms defined by reference", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Terms defined by this specification", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Informative References", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#informative" + } + }, + "#infra": { + "current": { + "number": "2", + "spec": "Navigational-Tracking Mitigations", + "text": "Infrastructure", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#infra" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Navigational-Tracking Mitigations", + "text": "Introduction", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Issues Index", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#issues-index" + } + }, + "#mitigations-brave": { + "current": { + "number": "5.1.3", + "spec": "Navigational-Tracking Mitigations", + "text": "Brave", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#mitigations-brave" + } + }, + "#mitigations-firefox": { + "current": { + "number": "5.1.2", + "spec": "Navigational-Tracking Mitigations", + "text": "Firefox", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#mitigations-firefox" + } + }, + "#mitigations-safari": { + "current": { + "number": "5.1.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Safari", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#mitigations-safari" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Normative References", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#normative" + } + }, + "#privacy-and-security-considerations": { + "current": { + "number": "7", + "spec": "Navigational-Tracking Mitigations", + "text": "Privacy and Security Considerations", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#privacy-and-security-considerations" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "References", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#references" + } + }, + "#run-bounce-tracking-mitigations-command": { + "current": { + "number": "6.3.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Run Bounce Tracking Mitigations", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#run-bounce-tracking-mitigations-command" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Status of this document", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#status" + } + }, + "#subtitle": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Draft Community Group Report, 22 July 2024", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#subtitle" + } + }, + "#terminology": { + "current": { + "number": "3", + "spec": "Navigational-Tracking Mitigations", + "text": "Terminology", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#terminology" + } + }, + "#threat-actors": { + "current": { + "number": "4.1", + "spec": "Navigational-Tracking Mitigations", + "text": "Threat actors", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#threat-actors" + } + }, + "#threat-model": { + "current": { + "number": "4", + "spec": "Navigational-Tracking Mitigations", + "text": "Threat model", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#threat-model" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Navigational-Tracking Mitigations", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Table of Contents", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Conformance", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Navigational-Tracking Mitigations", + "text": "Document conventions", + "url": "https://privacycg.github.io/nav-tracking-mitigations/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-navigation-api.json b/bikeshed/spec-data/readonly/headings/headings-navigation-api.json deleted file mode 100644 index 5a9544dcb3..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-navigation-api.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "#NavigationHistoryEntry-class": { - "current": { - "number": "3", - "spec": "Navigation API", - "text": "Navigation API history entries", - "url": "https://wicg.github.io/navigation-api/#NavigationHistoryEntry-class" - } - }, - "#abstract": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Abstract", - "url": "https://wicg.github.io/navigation-api/#abstract" - } - }, - "#call-site-patch": { - "current": { - "number": "4.15", - "spec": "Navigation API", - "text": "Various call site patches", - "url": "https://wicg.github.io/navigation-api/#call-site-patch" - } - }, - "#call-site-patch-entrylist": { - "current": { - "number": "4.15.2", - "spec": "Navigation API", - "text": "Form entry list", - "url": "https://wicg.github.io/navigation-api/#call-site-patch-entrylist" - } - }, - "#call-site-patch-userinvolvement": { - "current": { - "number": "4.15.1", - "spec": "Navigation API", - "text": "User navigation involvement", - "url": "https://wicg.github.io/navigation-api/#call-site-patch-userinvolvement" - } - }, - "#cancel-navigation": { - "current": { - "number": "4.12", - "spec": "Navigation API", - "text": "Canceling navigations", - "url": "https://wicg.github.io/navigation-api/#cancel-navigation" - } - }, - "#current-entry": { - "current": { - "number": "1.2", - "spec": "Navigation API", - "text": "The current entry", - "url": "https://wicg.github.io/navigation-api/#current-entry" - } - }, - "#entries-api": { - "current": { - "number": "1.1", - "spec": "Navigation API", - "text": "Introspecting the navigation API history entry list", - "url": "https://wicg.github.io/navigation-api/#entries-api" - } - }, - "#finalize-patch": { - "current": { - "number": "4.7", - "spec": "Navigation API", - "text": "Finalize a cross-document navigation", - "url": "https://wicg.github.io/navigation-api/#finalize-patch" - } - }, - "#focus-patches": { - "current": { - "number": "4.16", - "spec": "Navigation API", - "text": "Focus tracking", - "url": "https://wicg.github.io/navigation-api/#focus-patches" - } - }, - "#fragment-patch": { - "current": { - "number": "4.3", - "spec": "Navigation API", - "text": "Navigate to a fragment", - "url": "https://wicg.github.io/navigation-api/#fragment-patch" - } - }, - "#global": { - "current": { - "number": "1", - "spec": "Navigation API", - "text": "The Navigation class", - "url": "https://wicg.github.io/navigation-api/#global" - } - }, - "#global-events": { - "current": { - "number": "1.6", - "spec": "Navigation API", - "text": "Event handlers", - "url": "https://wicg.github.io/navigation-api/#global-events" - } - }, - "#global-navigate": { - "current": { - "number": "1.4", - "spec": "Navigation API", - "text": "Navigating", - "url": "https://wicg.github.io/navigation-api/#global-navigate" - } - }, - "#global-traversing": { - "current": { - "number": "1.5", - "spec": "Navigation API", - "text": "Traversing", - "url": "https://wicg.github.io/navigation-api/#global-traversing" - } - }, - "#idl-index": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "IDL Index", - "url": "https://wicg.github.io/navigation-api/#idl-index" - } - }, - "#index": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Index", - "url": "https://wicg.github.io/navigation-api/#index" - } - }, - "#index-defined-elsewhere": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Terms defined by reference", - "url": "https://wicg.github.io/navigation-api/#index-defined-elsewhere" - } - }, - "#index-defined-here": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Terms defined by this specification", - "url": "https://wicg.github.io/navigation-api/#index-defined-here" - } - }, - "#informative": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Informative References", - "url": "https://wicg.github.io/navigation-api/#informative" - } - }, - "#navigate-event": { - "current": { - "number": "2", - "spec": "Navigation API", - "text": "The navigate event", - "url": "https://wicg.github.io/navigation-api/#navigate-event" - } - }, - "#navigate-event-class": { - "current": { - "number": "2.1", - "spec": "Navigation API", - "text": "The NavigateEvent class", - "url": "https://wicg.github.io/navigation-api/#navigate-event-class" - } - }, - "#navigate-event-destination": { - "current": { - "number": "2.2", - "spec": "Navigation API", - "text": "The NavigationDestination class", - "url": "https://wicg.github.io/navigation-api/#navigate-event-destination" - } - }, - "#navigate-event-download-patches": { - "current": { - "number": "4.11", - "spec": "Navigation API", - "text": "Download a hyperlink", - "url": "https://wicg.github.io/navigation-api/#navigate-event-download-patches" - } - }, - "#navigate-event-firing": { - "current": { - "number": "2.3", - "spec": "Navigation API", - "text": "Firing the event", - "url": "https://wicg.github.io/navigation-api/#navigate-event-firing" - } - }, - "#navigate-event-traversal-patches": { - "current": { - "number": "4.13", - "spec": "Navigation API", - "text": "Check if unloading is user-canceled", - "url": "https://wicg.github.io/navigation-api/#navigate-event-traversal-patches" - } - }, - "#navigate-patch": { - "current": { - "number": "4.2", - "spec": "Navigation API", - "text": "Navigate", - "url": "https://wicg.github.io/navigation-api/#navigate-patch" - } - }, - "#new-failed-populate-note": { - "current": { - "number": "4.18", - "spec": "Navigation API", - "text": "Helpful note: failed attempt to populate", - "url": "https://wicg.github.io/navigation-api/#new-failed-populate-note" - } - }, - "#new-user-navigation-involvement": { - "current": { - "number": "4.14", - "spec": "Navigation API", - "text": "User navigation involvement", - "url": "https://wicg.github.io/navigation-api/#new-user-navigation-involvement" - } - }, - "#normative": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Normative References", - "url": "https://wicg.github.io/navigation-api/#normative" - } - }, - "#ongoing-state": { - "current": { - "number": "1.3", - "spec": "Navigation API", - "text": "Ongoing navigation tracking", - "url": "https://wicg.github.io/navigation-api/#ongoing-state" - } - }, - "#patches": { - "current": { - "number": "4", - "spec": "Navigation API", - "text": "HTML Standard monkeypatches", - "url": "https://wicg.github.io/navigation-api/#patches" - } - }, - "#push-replace-state-patch": { - "current": { - "number": "4.4", - "spec": "Navigation API", - "text": "Shared history push/replace state steps", - "url": "https://wicg.github.io/navigation-api/#push-replace-state-patch" - } - }, - "#reactivate-patch": { - "current": { - "number": "4.8", - "spec": "Navigation API", - "text": "Reactivate", - "url": "https://wicg.github.io/navigation-api/#reactivate-patch" - } - }, - "#references": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "References", - "url": "https://wicg.github.io/navigation-api/#references" - } - }, - "#reload-patch": { - "current": { - "number": "4.9", - "spec": "Navigation API", - "text": "Reload", - "url": "https://wicg.github.io/navigation-api/#reload-patch" - } - }, - "#scroll-restoration-patches": { - "current": { - "number": "4.17", - "spec": "Navigation API", - "text": "Scroll restoration", - "url": "https://wicg.github.io/navigation-api/#scroll-restoration-patches" - } - }, - "#security-privacy": { - "current": { - "number": "5", - "spec": "Navigation API", - "text": "Security and privacy considerations", - "url": "https://wicg.github.io/navigation-api/#security-privacy" - } - }, - "#session-history-new-she-fields": { - "current": { - "number": "4.1", - "spec": "Navigation API", - "text": "New session history entry items", - "url": "https://wicg.github.io/navigation-api/#session-history-new-she-fields" - } - }, - "#sp-cross-site-tracking": { - "current": { - "number": "5.1", - "spec": "Navigation API", - "text": "Cross-site tracking", - "url": "https://wicg.github.io/navigation-api/#sp-cross-site-tracking" - } - }, - "#sp-navigation-monitoring-interception": { - "current": { - "number": "5.2", - "spec": "Navigation API", - "text": "Navigation monitoring and interception", - "url": "https://wicg.github.io/navigation-api/#sp-navigation-monitoring-interception" - } - }, - "#sp-ua-ui": { - "current": { - "number": "5.4", - "spec": "Navigation API", - "text": "Other user agent UI", - "url": "https://wicg.github.io/navigation-api/#sp-ua-ui" - } - }, - "#sp-url-updates": { - "current": { - "number": "5.3", - "spec": "Navigation API", - "text": "URL updates", - "url": "https://wicg.github.io/navigation-api/#sp-url-updates" - } - }, - "#status": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Status of this document", - "url": "https://wicg.github.io/navigation-api/#status" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Navigation API", - "url": "https://wicg.github.io/navigation-api/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "Navigation API", - "text": "Table of Contents", - "url": "https://wicg.github.io/navigation-api/#toc" - } - }, - "#traverse-patch": { - "current": { - "number": "4.10", - "spec": "Navigation API", - "text": "Traversal", - "url": "https://wicg.github.io/navigation-api/#traverse-patch" - } - }, - "#uhus-patch": { - "current": { - "number": "4.5", - "spec": "Navigation API", - "text": "URL and history update steps", - "url": "https://wicg.github.io/navigation-api/#uhus-patch" - } - }, - "#update-for-history-step-patch": { - "current": { - "number": "4.6", - "spec": "Navigation API", - "text": "Update document for history state application", - "url": "https://wicg.github.io/navigation-api/#update-for-history-step-patch" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-network-error-logging-1.json b/bikeshed/spec-data/readonly/headings/headings-network-error-logging.json similarity index 77% rename from bikeshed/spec-data/readonly/headings/headings-network-error-logging-1.json rename to bikeshed/spec-data/readonly/headings/headings-network-error-logging.json index 8775531760..edfa9a16a5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-network-error-logging-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-network-error-logging.json @@ -10,21 +10,21 @@ "number": "A", "spec": "Network Error Logging", "text": "Acknowledgments", - "url": "https://www.w3.org/TR/network-error-logging-1/#acknowledgments" + "url": "https://www.w3.org/TR/network-error-logging/#acknowledgments" } }, - "#choose-a-policy-for-an-origin": { + "#choose-a-policy-for-a-request": { "current": { "number": "5.1", "spec": "Network Error Logging", - "text": "Choose a policy for an origin", - "url": "https://w3c.github.io/network-error-logging/#choose-a-policy-for-an-origin" + "text": "Choose a policy for a request", + "url": "https://w3c.github.io/network-error-logging/#choose-a-policy-for-a-request" }, "snapshot": { "number": "5.1", "spec": "Network Error Logging", - "text": "Choose a policy for an origin", - "url": "https://www.w3.org/TR/network-error-logging-1/#choose-a-policy-for-an-origin" + "text": "Choose a policy for a request", + "url": "https://www.w3.org/TR/network-error-logging/#choose-a-policy-for-a-request" } }, "#concepts": { @@ -38,7 +38,7 @@ "number": "3", "spec": "Network Error Logging", "text": "Concepts", - "url": "https://www.w3.org/TR/network-error-logging-1/#concepts" + "url": "https://www.w3.org/TR/network-error-logging/#concepts" } }, "#conformance": { @@ -47,14 +47,12 @@ "spec": "Network Error Logging", "text": "Conformance", "url": "https://w3c.github.io/network-error-logging/#conformance" - } - }, - "#conformance-requirements": { + }, "snapshot": { "number": "2", "spec": "Network Error Logging", - "text": "Conformance requirements", - "url": "https://www.w3.org/TR/network-error-logging-1/#conformance-requirements" + "text": "Conformance", + "url": "https://www.w3.org/TR/network-error-logging/#conformance" } }, "#deliver-a-network-report-0": { @@ -63,6 +61,12 @@ "spec": "Network Error Logging", "text": "Deliver a network report", "url": "https://w3c.github.io/network-error-logging/#deliver-a-network-report-0" + }, + "snapshot": { + "number": "5.5", + "spec": "Network Error Logging", + "text": "Deliver a network report", + "url": "https://www.w3.org/TR/network-error-logging/#deliver-a-network-report-0" } }, "#dependencies": { @@ -76,7 +80,7 @@ "number": "2.1", "spec": "Network Error Logging", "text": "Dependencies", - "url": "https://www.w3.org/TR/network-error-logging-1/#dependencies" + "url": "https://www.w3.org/TR/network-error-logging/#dependencies" } }, "#dns-misconfiguration": { @@ -90,7 +94,7 @@ "number": "7.3", "spec": "Network Error Logging", "text": "DNS misconfiguration", - "url": "https://www.w3.org/TR/network-error-logging-1/#dns-misconfiguration" + "url": "https://www.w3.org/TR/network-error-logging/#dns-misconfiguration" } }, "#dns-resolution-errors": { @@ -104,7 +108,7 @@ "number": "6.1", "spec": "Network Error Logging", "text": "DNS resolution errors", - "url": "https://www.w3.org/TR/network-error-logging-1/#dns-resolution-errors" + "url": "https://www.w3.org/TR/network-error-logging/#dns-resolution-errors" } }, "#examples": { @@ -118,7 +122,7 @@ "number": "7", "spec": "Network Error Logging", "text": "Examples", - "url": "https://www.w3.org/TR/network-error-logging-1/#examples" + "url": "https://www.w3.org/TR/network-error-logging/#examples" } }, "#extract-request-headers": { @@ -127,6 +131,12 @@ "spec": "Network Error Logging", "text": "Extract request headers", "url": "https://w3c.github.io/network-error-logging/#extract-request-headers" + }, + "snapshot": { + "number": "5.2", + "spec": "Network Error Logging", + "text": "Extract request headers", + "url": "https://www.w3.org/TR/network-error-logging/#extract-request-headers" } }, "#extract-response-headers": { @@ -135,14 +145,12 @@ "spec": "Network Error Logging", "text": "Extract response headers", "url": "https://w3c.github.io/network-error-logging/#extract-response-headers" - } - }, - "#generate-a-network-error-report": { + }, "snapshot": { - "number": "5.2", + "number": "5.3", "spec": "Network Error Logging", - "text": "Generate a network error report", - "url": "https://www.w3.org/TR/network-error-logging-1/#generate-a-network-error-report" + "text": "Extract response headers", + "url": "https://www.w3.org/TR/network-error-logging/#extract-response-headers" } }, "#generate-a-network-error-report-0": { @@ -151,6 +159,12 @@ "spec": "Network Error Logging", "text": "Generate a network error report", "url": "https://w3c.github.io/network-error-logging/#generate-a-network-error-report-0" + }, + "snapshot": { + "number": "5.4", + "spec": "Network Error Logging", + "text": "Generate a network error report", + "url": "https://www.w3.org/TR/network-error-logging/#generate-a-network-error-report-0" } }, "#iana-considerations": { @@ -164,15 +178,7 @@ "number": "", "spec": "Network Error Logging", "text": "10. IANA Considerations", - "url": "https://www.w3.org/TR/network-error-logging-1/#iana-considerations" - } - }, - "#informative-references": { - "snapshot": { - "number": "B.2", - "spec": "Network Error Logging", - "text": "Informative references", - "url": "https://www.w3.org/TR/network-error-logging-1/#informative-references" + "url": "https://www.w3.org/TR/network-error-logging/#iana-considerations" } }, "#introduction": { @@ -186,7 +192,7 @@ "number": "1", "spec": "Network Error Logging", "text": "Introduction", - "url": "https://www.w3.org/TR/network-error-logging-1/#introduction" + "url": "https://www.w3.org/TR/network-error-logging/#introduction" } }, "#monitoring-cache-validation": { @@ -195,6 +201,12 @@ "spec": "Network Error Logging", "text": "Monitoring cache validation", "url": "https://w3c.github.io/network-error-logging/#monitoring-cache-validation" + }, + "snapshot": { + "number": "7.4", + "spec": "Network Error Logging", + "text": "Monitoring cache validation", + "url": "https://www.w3.org/TR/network-error-logging/#monitoring-cache-validation" } }, "#nel": { @@ -208,7 +220,7 @@ "number": "10.1", "spec": "Network Error Logging", "text": "NEL", - "url": "https://www.w3.org/TR/network-error-logging-1/#nel" + "url": "https://www.w3.org/TR/network-error-logging/#nel" } }, "#nel-policies": { @@ -222,7 +234,7 @@ "number": "3.4", "spec": "Network Error Logging", "text": "NEL policies", - "url": "https://www.w3.org/TR/network-error-logging-1/#nel-policies" + "url": "https://www.w3.org/TR/network-error-logging/#nel-policies" } }, "#nel-response-header": { @@ -236,7 +248,7 @@ "number": "4.1", "spec": "Network Error Logging", "text": "NEL response header", - "url": "https://www.w3.org/TR/network-error-logging-1/#nel-response-header" + "url": "https://www.w3.org/TR/network-error-logging/#nel-response-header" } }, "#network-error-reports": { @@ -250,7 +262,7 @@ "number": "3.3", "spec": "Network Error Logging", "text": "Network error reports", - "url": "https://www.w3.org/TR/network-error-logging-1/#network-error-reports" + "url": "https://www.w3.org/TR/network-error-logging/#network-error-reports" } }, "#network-errors": { @@ -264,7 +276,7 @@ "number": "3.2", "spec": "Network Error Logging", "text": "Network errors", - "url": "https://www.w3.org/TR/network-error-logging-1/#network-errors" + "url": "https://www.w3.org/TR/network-error-logging/#network-errors" } }, "#network-requests": { @@ -278,7 +290,7 @@ "number": "3.1", "spec": "Network Error Logging", "text": "Network requests", - "url": "https://www.w3.org/TR/network-error-logging-1/#network-requests" + "url": "https://www.w3.org/TR/network-error-logging/#network-requests" } }, "#normative-references": { @@ -292,7 +304,7 @@ "number": "B.1", "spec": "Network Error Logging", "text": "Normative references", - "url": "https://www.w3.org/TR/network-error-logging-1/#normative-references" + "url": "https://www.w3.org/TR/network-error-logging/#normative-references" } }, "#origins-with-multiple-ip-addresses": { @@ -303,10 +315,10 @@ "url": "https://w3c.github.io/network-error-logging/#origins-with-multiple-ip-addresses" }, "snapshot": { - "number": "7.4", + "number": "7.5", "spec": "Network Error Logging", "text": "Origins with multiple IP addresses", - "url": "https://www.w3.org/TR/network-error-logging-1/#origins-with-multiple-ip-addresses" + "url": "https://www.w3.org/TR/network-error-logging/#origins-with-multiple-ip-addresses" } }, "#policy-cache": { @@ -320,7 +332,7 @@ "number": "3.6", "spec": "Network Error Logging", "text": "Policy cache", - "url": "https://www.w3.org/TR/network-error-logging-1/#policy-cache" + "url": "https://www.w3.org/TR/network-error-logging/#policy-cache" } }, "#policy-delivery": { @@ -334,7 +346,7 @@ "number": "4", "spec": "Network Error Logging", "text": "Policy delivery", - "url": "https://www.w3.org/TR/network-error-logging-1/#policy-delivery" + "url": "https://www.w3.org/TR/network-error-logging/#policy-delivery" } }, "#predefined-network-error-types": { @@ -348,7 +360,7 @@ "number": "6", "spec": "Network Error Logging", "text": "Predefined network error types", - "url": "https://www.w3.org/TR/network-error-logging-1/#predefined-network-error-types" + "url": "https://www.w3.org/TR/network-error-logging/#predefined-network-error-types" } }, "#privacy-considerations": { @@ -362,7 +374,7 @@ "number": "9", "spec": "Network Error Logging", "text": "Privacy Considerations", - "url": "https://www.w3.org/TR/network-error-logging-1/#privacy-considerations" + "url": "https://www.w3.org/TR/network-error-logging/#privacy-considerations" } }, "#process-policy-headers": { @@ -376,7 +388,7 @@ "number": "4.2", "spec": "Network Error Logging", "text": "Process policy headers", - "url": "https://www.w3.org/TR/network-error-logging-1/#process-policy-headers" + "url": "https://www.w3.org/TR/network-error-logging/#process-policy-headers" } }, "#references": { @@ -390,7 +402,7 @@ "number": "B", "spec": "Network Error Logging", "text": "References", - "url": "https://www.w3.org/TR/network-error-logging-1/#references" + "url": "https://www.w3.org/TR/network-error-logging/#references" } }, "#report-delivery": { @@ -404,7 +416,7 @@ "number": "5", "spec": "Network Error Logging", "text": "Report delivery", - "url": "https://www.w3.org/TR/network-error-logging-1/#report-delivery" + "url": "https://www.w3.org/TR/network-error-logging/#report-delivery" } }, "#reporting-of-first-party-subresource-fetch-failures": { @@ -418,7 +430,7 @@ "number": "8.2", "spec": "Network Error Logging", "text": "Reporting of First-party Subresource Fetch Failures", - "url": "https://www.w3.org/TR/network-error-logging-1/#reporting-of-first-party-subresource-fetch-failures" + "url": "https://www.w3.org/TR/network-error-logging/#reporting-of-first-party-subresource-fetch-failures" } }, "#reporting-of-navigation-failures": { @@ -432,7 +444,7 @@ "number": "8.1", "spec": "Network Error Logging", "text": "Reporting of Navigation Failures", - "url": "https://www.w3.org/TR/network-error-logging-1/#reporting-of-navigation-failures" + "url": "https://www.w3.org/TR/network-error-logging/#reporting-of-navigation-failures" } }, "#reporting-of-third-party-subresource-fetch-failures": { @@ -446,7 +458,7 @@ "number": "8.3", "spec": "Network Error Logging", "text": "Reporting of Third-party Subresource Fetch Failures", - "url": "https://www.w3.org/TR/network-error-logging-1/#reporting-of-third-party-subresource-fetch-failures" + "url": "https://www.w3.org/TR/network-error-logging/#reporting-of-third-party-subresource-fetch-failures" } }, "#sample-network-error-reports": { @@ -460,7 +472,7 @@ "number": "7.2", "spec": "Network Error Logging", "text": "Sample Network Error Reports", - "url": "https://www.w3.org/TR/network-error-logging-1/#sample-network-error-reports" + "url": "https://www.w3.org/TR/network-error-logging/#sample-network-error-reports" } }, "#sample-policy-definitions": { @@ -474,7 +486,7 @@ "number": "7.1", "spec": "Network Error Logging", "text": "Sample Policy Definitions", - "url": "https://www.w3.org/TR/network-error-logging-1/#sample-policy-definitions" + "url": "https://www.w3.org/TR/network-error-logging/#sample-policy-definitions" } }, "#sampling-rates": { @@ -488,7 +500,7 @@ "number": "3.5", "spec": "Network Error Logging", "text": "Sampling rates", - "url": "https://www.w3.org/TR/network-error-logging-1/#sampling-rates" + "url": "https://www.w3.org/TR/network-error-logging/#sampling-rates" } }, "#secure-connection-establishment-errors": { @@ -502,7 +514,7 @@ "number": "6.2", "spec": "Network Error Logging", "text": "Secure connection establishment errors", - "url": "https://www.w3.org/TR/network-error-logging-1/#secure-connection-establishment-errors" + "url": "https://www.w3.org/TR/network-error-logging/#secure-connection-establishment-errors" } }, "#the-failure_fraction-member": { @@ -516,7 +528,7 @@ "number": "4.1.5", "spec": "Network Error Logging", "text": "The failure_fraction member", - "url": "https://www.w3.org/TR/network-error-logging-1/#the-failure_fraction-member" + "url": "https://www.w3.org/TR/network-error-logging/#the-failure_fraction-member" } }, "#the-include_subdomains-member": { @@ -530,7 +542,7 @@ "number": "4.1.3", "spec": "Network Error Logging", "text": "The include_subdomains member", - "url": "https://www.w3.org/TR/network-error-logging-1/#the-include_subdomains-member" + "url": "https://www.w3.org/TR/network-error-logging/#the-include_subdomains-member" } }, "#the-max_age-member": { @@ -544,7 +556,7 @@ "number": "4.1.2", "spec": "Network Error Logging", "text": "The max_age member", - "url": "https://www.w3.org/TR/network-error-logging-1/#the-max_age-member" + "url": "https://www.w3.org/TR/network-error-logging/#the-max_age-member" } }, "#the-report_to-member": { @@ -558,7 +570,7 @@ "number": "4.1.1", "spec": "Network Error Logging", "text": "The report_to member", - "url": "https://www.w3.org/TR/network-error-logging-1/#the-report_to-member" + "url": "https://www.w3.org/TR/network-error-logging/#the-report_to-member" } }, "#the-request_headers-member": { @@ -567,6 +579,12 @@ "spec": "Network Error Logging", "text": "The request_headers member", "url": "https://w3c.github.io/network-error-logging/#the-request_headers-member" + }, + "snapshot": { + "number": "4.1.6", + "spec": "Network Error Logging", + "text": "The request_headers member", + "url": "https://www.w3.org/TR/network-error-logging/#the-request_headers-member" } }, "#the-response_headers-member": { @@ -575,6 +593,12 @@ "spec": "Network Error Logging", "text": "The response_headers member", "url": "https://w3c.github.io/network-error-logging/#the-response_headers-member" + }, + "snapshot": { + "number": "4.1.7", + "spec": "Network Error Logging", + "text": "The response_headers member", + "url": "https://www.w3.org/TR/network-error-logging/#the-response_headers-member" } }, "#the-success_fraction-member": { @@ -588,7 +612,7 @@ "number": "4.1.4", "spec": "Network Error Logging", "text": "The success_fraction member", - "url": "https://www.w3.org/TR/network-error-logging-1/#the-success_fraction-member" + "url": "https://www.w3.org/TR/network-error-logging/#the-success_fraction-member" } }, "#title": { @@ -602,7 +626,7 @@ "number": "", "spec": "Network Error Logging", "text": "Network Error Logging", - "url": "https://www.w3.org/TR/network-error-logging-1/#title" + "url": "https://www.w3.org/TR/network-error-logging/#title" } }, "#toc": { @@ -616,7 +640,7 @@ "number": "", "spec": "Network Error Logging", "text": "Table of Contents", - "url": "https://www.w3.org/TR/network-error-logging-1/#toc" + "url": "https://www.w3.org/TR/network-error-logging/#toc" } }, "#transmission-of-request-and-response-errors": { @@ -630,7 +654,7 @@ "number": "6.3", "spec": "Network Error Logging", "text": "Transmission of request and response errors", - "url": "https://www.w3.org/TR/network-error-logging-1/#transmission-of-request-and-response-errors" + "url": "https://www.w3.org/TR/network-error-logging/#transmission-of-request-and-response-errors" } }, "#use-cases": { @@ -644,7 +668,7 @@ "number": "8", "spec": "Network Error Logging", "text": "Use cases", - "url": "https://www.w3.org/TR/network-error-logging-1/#use-cases" + "url": "https://www.w3.org/TR/network-error-logging/#use-cases" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-network-reporting.json b/bikeshed/spec-data/readonly/headings/headings-network-reporting.json new file mode 100644 index 0000000000..bea41bd0b0 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-network-reporting.json @@ -0,0 +1,370 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Abstract", + "url": "https://w3c.github.io/reporting/network-reporting.html#abstract" + } + }, + "#capability-urls": { + "current": { + "number": "8.1", + "spec": "Network Reporting API", + "text": "Capability URLs", + "url": "https://w3c.github.io/reporting/network-reporting.html#capability-urls" + } + }, + "#choose-endpoint": { + "current": { + "number": "5.1", + "spec": "Network Reporting API", + "text": "Choose an endpoint from a group", + "url": "https://w3c.github.io/reporting/network-reporting.html#choose-endpoint" + } + }, + "#clear-cache": { + "current": { + "number": "9.5", + "spec": "Network Reporting API", + "text": "Clearing the reporting cache", + "url": "https://w3c.github.io/reporting/network-reporting.html#clear-cache" + } + }, + "#concept": { + "current": { + "number": "2", + "spec": "Network Reporting API", + "text": "Concepts", + "url": "https://w3c.github.io/reporting/network-reporting.html#concept" + } + }, + "#concept-client": { + "current": { + "number": "2.3", + "spec": "Network Reporting API", + "text": "Clients", + "url": "https://w3c.github.io/reporting/network-reporting.html#concept-client" + } + }, + "#concept-endpoint-groups": { + "current": { + "number": "2.1", + "spec": "Network Reporting API", + "text": "Endpoint groups", + "url": "https://w3c.github.io/reporting/network-reporting.html#concept-endpoint-groups" + } + }, + "#concept-failover-load-balancing": { + "current": { + "number": "2.4", + "spec": "Network Reporting API", + "text": "Failover and load balancing", + "url": "https://w3c.github.io/reporting/network-reporting.html#concept-failover-load-balancing" + } + }, + "#concept-network-endpoint": { + "current": { + "number": "2.2", + "spec": "Network Reporting API", + "text": "Network reporting endpoints", + "url": "https://w3c.github.io/reporting/network-reporting.html#concept-network-endpoint" + } + }, + "#concept-storage": { + "current": { + "number": "2.5", + "spec": "Network Reporting API", + "text": "Storage", + "url": "https://w3c.github.io/reporting/network-reporting.html#concept-storage" + } + }, + "#correlation": { + "current": { + "number": "9.3", + "spec": "Network Reporting API", + "text": "Cross-origin correlation", + "url": "https://w3c.github.io/reporting/network-reporting.html#correlation" + } + }, + "#delivery": { + "current": { + "number": "6.1", + "spec": "Network Reporting API", + "text": "Delivery", + "url": "https://w3c.github.io/reporting/network-reporting.html#delivery" + } + }, + "#disable": { + "current": { + "number": "9.6", + "spec": "Network Reporting API", + "text": "Disabling Reporting", + "url": "https://w3c.github.io/reporting/network-reporting.html#disable" + } + }, + "#endpoint-delivery": { + "current": { + "number": "3", + "spec": "Network Reporting API", + "text": "Endpoint Delivery", + "url": "https://w3c.github.io/reporting/network-reporting.html#endpoint-delivery" + } + }, + "#endpoints-member": { + "current": { + "number": "3.1.4", + "spec": "Network Reporting API", + "text": "The endpoints member", + "url": "https://w3c.github.io/reporting/network-reporting.html#endpoints-member" + } + }, + "#endpoints-priority-member": { + "current": { + "number": "3.1.6", + "spec": "Network Reporting API", + "text": "The endpoints.priority member", + "url": "https://w3c.github.io/reporting/network-reporting.html#endpoints-priority-member" + } + }, + "#endpoints-url-member": { + "current": { + "number": "3.1.5", + "spec": "Network Reporting API", + "text": "The endpoints.url member", + "url": "https://w3c.github.io/reporting/network-reporting.html#endpoints-url-member" + } + }, + "#endpoints-weight-member": { + "current": { + "number": "3.1.7", + "spec": "Network Reporting API", + "text": "The endpoints.weight member", + "url": "https://w3c.github.io/reporting/network-reporting.html#endpoints-weight-member" + } + }, + "#examples": { + "current": { + "number": "1.2", + "spec": "Network Reporting API", + "text": "Examples", + "url": "https://w3c.github.io/reporting/network-reporting.html#examples" + } + }, + "#fingerprinting-clock-skew": { + "current": { + "number": "9.2", + "spec": "Network Reporting API", + "text": "Clock Skew", + "url": "https://w3c.github.io/reporting/network-reporting.html#fingerprinting-clock-skew" + } + }, + "#gc": { + "current": { + "number": "6.2", + "spec": "Network Reporting API", + "text": "Garbage Collection", + "url": "https://w3c.github.io/reporting/network-reporting.html#gc" + } + }, + "#guarantees": { + "current": { + "number": "1.1", + "spec": "Network Reporting API", + "text": "Guarantees", + "url": "https://w3c.github.io/reporting/network-reporting.html#guarantees" + } + }, + "#id-member": { + "current": { + "number": "3.1.1", + "spec": "Network Reporting API", + "text": "The group member", + "url": "https://w3c.github.io/reporting/network-reporting.html#id-member" + } + }, + "#implementation": { + "current": { + "number": "6", + "spec": "Network Reporting API", + "text": "Implementation Considerations", + "url": "https://w3c.github.io/reporting/network-reporting.html#implementation" + } + }, + "#include-subdomains-member": { + "current": { + "number": "3.1.2", + "spec": "Network Reporting API", + "text": "The include_subdomains member", + "url": "https://w3c.github.io/reporting/network-reporting.html#include-subdomains-member" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Index", + "url": "https://w3c.github.io/reporting/network-reporting.html#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/reporting/network-reporting.html#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/reporting/network-reporting.html#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Informative References", + "url": "https://w3c.github.io/reporting/network-reporting.html#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Network Reporting API", + "text": "Introduction", + "url": "https://w3c.github.io/reporting/network-reporting.html#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Issues Index", + "url": "https://w3c.github.io/reporting/network-reporting.html#issues-index" + } + }, + "#max-age-member": { + "current": { + "number": "3.1.3", + "spec": "Network Reporting API", + "text": "The max_age member", + "url": "https://w3c.github.io/reporting/network-reporting.html#max-age-member" + } + }, + "#network-leakage": { + "current": { + "number": "9.1", + "spec": "Network Reporting API", + "text": "Network Leakage", + "url": "https://w3c.github.io/reporting/network-reporting.html#network-leakage" + } + }, + "#network_reporting_endpoints-policy-item": { + "current": { + "number": "3.1", + "spec": "Network Reporting API", + "text": "The \"network_reporting_endpoints\" policy item", + "url": "https://w3c.github.io/reporting/network-reporting.html#network_reporting_endpoints-policy-item" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Normative References", + "url": "https://w3c.github.io/reporting/network-reporting.html#normative" + } + }, + "#privacy": { + "current": { + "number": "9", + "spec": "Network Reporting API", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/reporting/network-reporting.html#privacy" + } + }, + "#process-configuration": { + "current": { + "number": "3.2", + "spec": "Network Reporting API", + "text": "Process origin policy configuration", + "url": "https://w3c.github.io/reporting/network-reporting.html#process-configuration" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "References", + "url": "https://w3c.github.io/reporting/network-reporting.html#references" + } + }, + "#report-delivery": { + "current": { + "number": "5", + "spec": "Network Reporting API", + "text": "Report Delivery", + "url": "https://w3c.github.io/reporting/network-reporting.html#report-delivery" + } + }, + "#report-generation": { + "current": { + "number": "4", + "spec": "Network Reporting API", + "text": "Report Generation", + "url": "https://w3c.github.io/reporting/network-reporting.html#report-generation" + } + }, + "#sample-reports": { + "current": { + "number": "7", + "spec": "Network Reporting API", + "text": "Sample Reports", + "url": "https://w3c.github.io/reporting/network-reporting.html#sample-reports" + } + }, + "#security": { + "current": { + "number": "8", + "spec": "Network Reporting API", + "text": "Security Considerations", + "url": "https://w3c.github.io/reporting/network-reporting.html#security" + } + }, + "#send-reports": { + "current": { + "number": "5.2", + "spec": "Network Reporting API", + "text": "Send reports", + "url": "https://w3c.github.io/reporting/network-reporting.html#send-reports" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Status of this document", + "url": "https://w3c.github.io/reporting/network-reporting.html#sotd" + } + }, + "#subdomains": { + "current": { + "number": "9.4", + "spec": "Network Reporting API", + "text": "Subdomains", + "url": "https://w3c.github.io/reporting/network-reporting.html#subdomains" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Network Reporting API", + "text": "Table of Contents", + "url": "https://w3c.github.io/reporting/network-reporting.html#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-no-vary-search.json b/bikeshed/spec-data/readonly/headings/headings-no-vary-search.json new file mode 100644 index 0000000000..1894971571 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-no-vary-search.json @@ -0,0 +1,138 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Abstract", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#abstract" + } + }, + "#comparing": { + "current": { + "number": "5", + "spec": "No-Vary-Search", + "text": "Comparing", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#comparing" + } + }, + "#header-definition": { + "current": { + "number": "2", + "spec": "No-Vary-Search", + "text": "HTTP header field definition", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#header-definition" + } + }, + "#index": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Index", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Informative References", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#informative" + } + }, + "#model": { + "current": { + "number": "3", + "spec": "No-Vary-Search", + "text": "Data model", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#model" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Normative References", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#normative" + } + }, + "#parsing": { + "current": { + "number": "4", + "spec": "No-Vary-Search", + "text": "Parsing", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#parsing" + } + }, + "#privacy-considerations": { + "current": { + "number": "7", + "spec": "No-Vary-Search", + "text": "Privacy considerations", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#privacy-considerations" + } + }, + "#references": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "References", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#references" + } + }, + "#security-considerations": { + "current": { + "number": "6", + "spec": "No-Vary-Search", + "text": "Security considerations", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#security-considerations" + } + }, + "#status": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Status of this document", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#status" + } + }, + "#status-and-venue": { + "current": { + "number": "1", + "spec": "No-Vary-Search", + "text": "Status and venue note", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#status-and-venue" + } + }, + "#title": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "No-Vary-Search", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "No-Vary-Search", + "text": "Table of Contents", + "url": "https://wicg.github.io/nav-speculation/no-vary-search.html#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-notifications.json b/bikeshed/spec-data/readonly/headings/headings-notifications.json index bf0603094e..372815452e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-notifications.json +++ b/bikeshed/spec-data/readonly/headings/headings-notifications.json @@ -27,7 +27,7 @@ "current": { "number": "2.9", "spec": "Notifications API", - "text": "Alerting the user", + "text": "Alerting the end user", "url": "https://notifications.spec.whatwg.org/#alerting-the-user" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-openscreenprotocol.json b/bikeshed/spec-data/readonly/headings/headings-openscreenprotocol.json index f872a0f751..82be0537d9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-openscreenprotocol.json +++ b/bikeshed/spec-data/readonly/headings/headings-openscreenprotocol.json @@ -29,32 +29,102 @@ }, "#appendix-a": { "current": { - "number": "", + "number": "A", "spec": "Open Screen Protocol", - "text": "Appendix A: Messages", + "text": "Messages", "url": "https://w3c.github.io/openscreenprotocol/#appendix-a" }, "snapshot": { - "number": "", + "number": "A", "spec": "Open Screen Protocol", - "text": "Appendix A: Messages", + "text": "Messages", "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-a" } }, "#appendix-b": { "current": { - "number": "", + "number": "B", "spec": "Open Screen Protocol", - "text": "Appendix B: Message Type Key Ranges", + "text": "Message Type Key Ranges", "url": "https://w3c.github.io/openscreenprotocol/#appendix-b" }, "snapshot": { - "number": "", + "number": "B", "spec": "Open Screen Protocol", - "text": "Appendix B: Message Type Key Ranges", + "text": "Message Type Key Ranges", "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-b" } }, + "#appendix-c": { + "current": { + "number": "C", + "spec": "Open Screen Protocol", + "text": "PSK Encoding Schemes", + "url": "https://w3c.github.io/openscreenprotocol/#appendix-c" + }, + "snapshot": { + "number": "C", + "spec": "Open Screen Protocol", + "text": "PSK Encoding Schemes", + "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-c" + } + }, + "#appendix-c-base-10": { + "current": { + "number": "", + "spec": "Open Screen Protocol", + "text": "Base-10 Numeric", + "url": "https://w3c.github.io/openscreenprotocol/#appendix-c-base-10" + }, + "snapshot": { + "number": "", + "spec": "Open Screen Protocol", + "text": "Base-10 Numeric", + "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-c-base-10" + } + }, + "#appendix-c-qr-code": { + "current": { + "number": "", + "spec": "Open Screen Protocol", + "text": "QR Code", + "url": "https://w3c.github.io/openscreenprotocol/#appendix-c-qr-code" + }, + "snapshot": { + "number": "", + "spec": "Open Screen Protocol", + "text": "QR Code", + "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-c-qr-code" + } + }, + "#appendix-d": { + "current": { + "number": "D", + "spec": "Open Screen Protocol", + "text": "Entire Flow Chart", + "url": "https://w3c.github.io/openscreenprotocol/#appendix-d" + }, + "snapshot": { + "number": "D", + "spec": "Open Screen Protocol", + "text": "Entire Flow Chart", + "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-d" + } + }, + "#appendix-e": { + "current": { + "number": "E", + "spec": "Open Screen Protocol", + "text": "Media Time Conversions", + "url": "https://w3c.github.io/openscreenprotocol/#appendix-e" + }, + "snapshot": { + "number": "E", + "spec": "Open Screen Protocol", + "text": "Media Time Conversions", + "url": "https://www.w3.org/TR/openscreenprotocol/#appendix-e" + } + }, "#authentication": { "current": { "number": "6", @@ -97,6 +167,20 @@ "url": "https://www.w3.org/TR/openscreenprotocol/#certificates" } }, + "#computing-agent-fingerprint": { + "current": { + "number": "3.1", + "spec": "Open Screen Protocol", + "text": "Computing the Agent Fingerprint", + "url": "https://w3c.github.io/openscreenprotocol/#computing-agent-fingerprint" + }, + "snapshot": { + "number": "3.1", + "spec": "Open Screen Protocol", + "text": "Computing the Agent Fingerprint", + "url": "https://www.w3.org/TR/openscreenprotocol/#computing-agent-fingerprint" + } + }, "#cross-origin-state": { "current": { "number": "13.2.2", @@ -153,20 +237,6 @@ "url": "https://www.w3.org/TR/openscreenprotocol/#discovery" } }, - "#incognito-mode": { - "current": { - "number": "13.2.4", - "spec": "Open Screen Protocol", - "text": "Incognito Mode", - "url": "https://w3c.github.io/openscreenprotocol/#incognito-mode" - }, - "snapshot": { - "number": "13.2.4", - "spec": "Open Screen Protocol", - "text": "Incognito Mode", - "url": "https://www.w3.org/TR/openscreenprotocol/#incognito-mode" - } - }, "#index": { "current": { "number": "", @@ -475,6 +545,20 @@ "url": "https://www.w3.org/TR/openscreenprotocol/#presentation-protocol" } }, + "#private-browsing-mode": { + "current": { + "number": "13.2.4", + "spec": "Open Screen Protocol", + "text": "Private Browsing Mode", + "url": "https://w3c.github.io/openscreenprotocol/#private-browsing-mode" + }, + "snapshot": { + "number": "13.2.4", + "spec": "Open Screen Protocol", + "text": "Private Browsing Mode", + "url": "https://www.w3.org/TR/openscreenprotocol/#private-browsing-mode" + } + }, "#protocol-extension-fields": { "current": { "number": "12.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-orientation-event.json b/bikeshed/spec-data/readonly/headings/headings-orientation-event.json index 5ffa0b84a0..c24f4d50c7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-orientation-event.json +++ b/bikeshed/spec-data/readonly/headings/headings-orientation-event.json @@ -1,126 +1,266 @@ { + "#a11y": { + "current": { + "number": "8", + "spec": "Device Orientation and Motion", + "text": "Accessibility considerations", + "url": "https://w3c.github.io/deviceorientation/#a11y" + }, + "snapshot": { + "number": "8", + "spec": "Device Orientation and Motion", + "text": "Accessibility considerations", + "url": "https://www.w3.org/TR/orientation-event/#a11y" + } + }, + "#absolute-orientation-virtual-sensors": { + "current": { + "number": "9.1.2", + "spec": "Device Orientation and Motion", + "text": "The \"absolute-orientation\" virtual sensor type", + "url": "https://w3c.github.io/deviceorientation/#absolute-orientation-virtual-sensors" + }, + "snapshot": { + "number": "9.1.2", + "spec": "Device Orientation and Motion", + "text": "The \"absolute-orientation\" virtual sensor type", + "url": "https://www.w3.org/TR/orientation-event/#absolute-orientation-virtual-sensors" + } + }, "#abstract": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Abstract", "url": "https://w3c.github.io/deviceorientation/#abstract" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Abstract", "url": "https://www.w3.org/TR/orientation-event/#abstract" } }, + "#accelerometer-virtual-sensors": { + "current": { + "number": "9.2.1", + "spec": "Device Orientation and Motion", + "text": "The \"accelerometer\" virtual sensor type", + "url": "https://w3c.github.io/deviceorientation/#accelerometer-virtual-sensors" + }, + "snapshot": { + "number": "9.2.1", + "spec": "Device Orientation and Motion", + "text": "The \"accelerometer\" virtual sensor type", + "url": "https://www.w3.org/TR/orientation-event/#accelerometer-virtual-sensors" + } + }, "#acknowledgments": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Acknowledgments", "url": "https://w3c.github.io/deviceorientation/#acknowledgments" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Acknowledgments", "url": "https://www.w3.org/TR/orientation-event/#acknowledgments" } }, - "#compassneedscalibration": { + "#api": { "current": { - "number": "4.3", - "spec": "DeviceOrientation Event", - "text": "compassneedscalibration Event", - "url": "https://w3c.github.io/deviceorientation/#compassneedscalibration" + "number": "6", + "spec": "Device Orientation and Motion", + "text": "API", + "url": "https://w3c.github.io/deviceorientation/#api" }, "snapshot": { - "number": "4.3", - "spec": "DeviceOrientation Event", - "text": "compassneedscalibration Event", - "url": "https://www.w3.org/TR/orientation-event/#compassneedscalibration" + "number": "6", + "spec": "Device Orientation and Motion", + "text": "API", + "url": "https://www.w3.org/TR/orientation-event/#api" } }, - "#conformance-requirements": { + "#automation": { "current": { - "number": "1", - "spec": "DeviceOrientation Event", - "text": "Conformance requirements", - "url": "https://w3c.github.io/deviceorientation/#conformance-requirements" + "number": "9", + "spec": "Device Orientation and Motion", + "text": "Automation", + "url": "https://w3c.github.io/deviceorientation/#automation" }, "snapshot": { - "number": "1", - "spec": "DeviceOrientation Event", - "text": "Conformance requirements", - "url": "https://www.w3.org/TR/orientation-event/#conformance-requirements" + "number": "9", + "spec": "Device Orientation and Motion", + "text": "Automation", + "url": "https://www.w3.org/TR/orientation-event/#automation" } }, - "#controlling-a-game": { + "#changes": { "current": { - "number": "6.1.1", - "spec": "DeviceOrientation Event", - "text": "Controlling a game", - "url": "https://w3c.github.io/deviceorientation/#controlling-a-game" + "number": "", + "spec": "Device Orientation and Motion", + "text": "10. Changes", + "url": "https://w3c.github.io/deviceorientation/#changes" }, "snapshot": { - "number": "6.1.1", - "spec": "DeviceOrientation Event", - "text": "Controlling a game", - "url": "https://www.w3.org/TR/orientation-event/#controlling-a-game" + "number": "", + "spec": "Device Orientation and Motion", + "text": "10. Changes", + "url": "https://www.w3.org/TR/orientation-event/#changes" } }, - "#description": { + "#choice-of-reference-coordinate-system": { "current": { - "number": "4", - "spec": "DeviceOrientation Event", - "text": "Description", - "url": "https://w3c.github.io/deviceorientation/#description" + "number": "3.1.1", + "spec": "Device Orientation and Motion", + "text": "Choice of reference coordinate system", + "url": "https://w3c.github.io/deviceorientation/#choice-of-reference-coordinate-system" }, "snapshot": { - "number": "4", - "spec": "DeviceOrientation Event", - "text": "Description", - "url": "https://www.w3.org/TR/orientation-event/#description" + "number": "3.1.1", + "spec": "Device Orientation and Motion", + "text": "Choice of reference coordinate system", + "url": "https://www.w3.org/TR/orientation-event/#choice-of-reference-coordinate-system" + } + }, + "#device-motion-automation": { + "current": { + "number": "9.2", + "spec": "Device Orientation and Motion", + "text": "Device Motion Automation", + "url": "https://w3c.github.io/deviceorientation/#device-motion-automation" + }, + "snapshot": { + "number": "9.2", + "spec": "Device Orientation and Motion", + "text": "Device Motion Automation", + "url": "https://www.w3.org/TR/orientation-event/#device-motion-automation" + } + }, + "#device-motion-event-acceleration-api": { + "current": { + "number": "6.3.1", + "spec": "Device Orientation and Motion", + "text": "The DeviceMotionEventAcceleration interface", + "url": "https://w3c.github.io/deviceorientation/#device-motion-event-acceleration-api" + }, + "snapshot": { + "number": "6.3.1", + "spec": "Device Orientation and Motion", + "text": "The DeviceMotionEventAcceleration interface", + "url": "https://www.w3.org/TR/orientation-event/#device-motion-event-acceleration-api" + } + }, + "#device-motion-event-api": { + "current": { + "number": "6.3.3", + "spec": "Device Orientation and Motion", + "text": "The DeviceMotionEvent interface", + "url": "https://w3c.github.io/deviceorientation/#device-motion-event-api" + }, + "snapshot": { + "number": "6.3.3", + "spec": "Device Orientation and Motion", + "text": "The DeviceMotionEvent interface", + "url": "https://www.w3.org/TR/orientation-event/#device-motion-event-api" + } + }, + "#device-motion-event-rotation-rate-api": { + "current": { + "number": "6.3.2", + "spec": "Device Orientation and Motion", + "text": "The DeviceMotionEventRotationRate interface", + "url": "https://w3c.github.io/deviceorientation/#device-motion-event-rotation-rate-api" + }, + "snapshot": { + "number": "6.3.2", + "spec": "Device Orientation and Motion", + "text": "The DeviceMotionEventRotationRate interface", + "url": "https://www.w3.org/TR/orientation-event/#device-motion-event-rotation-rate-api" + } + }, + "#device-motion-model": { + "current": { + "number": "3.2", + "spec": "Device Orientation and Motion", + "text": "Device Motion", + "url": "https://w3c.github.io/deviceorientation/#device-motion-model" + }, + "snapshot": { + "number": "3.2", + "spec": "Device Orientation and Motion", + "text": "Device Motion", + "url": "https://www.w3.org/TR/orientation-event/#device-motion-model" + } + }, + "#device-orientation-automation": { + "current": { + "number": "9.1", + "spec": "Device Orientation and Motion", + "text": "Device Orientation Automation", + "url": "https://w3c.github.io/deviceorientation/#device-orientation-automation" + }, + "snapshot": { + "number": "9.1", + "spec": "Device Orientation and Motion", + "text": "Device Orientation Automation", + "url": "https://www.w3.org/TR/orientation-event/#device-orientation-automation" + } + }, + "#device-orientation-model": { + "current": { + "number": "3.1", + "spec": "Device Orientation and Motion", + "text": "Device Orientation", + "url": "https://w3c.github.io/deviceorientation/#device-orientation-model" + }, + "snapshot": { + "number": "3.1", + "spec": "Device Orientation and Motion", + "text": "Device Orientation", + "url": "https://www.w3.org/TR/orientation-event/#device-orientation-model" } }, "#devicemotion": { "current": { - "number": "4.4", - "spec": "DeviceOrientation Event", + "number": "6.3", + "spec": "Device Orientation and Motion", "text": "devicemotion Event", "url": "https://w3c.github.io/deviceorientation/#devicemotion" }, "snapshot": { - "number": "4.4", - "spec": "DeviceOrientation Event", + "number": "6.3", + "spec": "Device Orientation and Motion", "text": "devicemotion Event", "url": "https://www.w3.org/TR/orientation-event/#devicemotion" } }, "#deviceorientation": { "current": { - "number": "4.1", - "spec": "DeviceOrientation Event", + "number": "6.1", + "spec": "Device Orientation and Motion", "text": "deviceorientation Event", "url": "https://w3c.github.io/deviceorientation/#deviceorientation" }, "snapshot": { - "number": "4.1", - "spec": "DeviceOrientation Event", + "number": "6.1", + "spec": "Device Orientation and Motion", "text": "deviceorientation Event", "url": "https://www.w3.org/TR/orientation-event/#deviceorientation" } }, "#deviceorientationabsolute": { "current": { - "number": "4.2", - "spec": "DeviceOrientation Event", + "number": "6.2", + "spec": "Device Orientation and Motion", "text": "deviceorientationabsolute Event", "url": "https://w3c.github.io/deviceorientation/#deviceorientationabsolute" }, "snapshot": { - "number": "4.2", - "spec": "DeviceOrientation Event", + "number": "6.2", + "spec": "Device Orientation and Motion", "text": "deviceorientationabsolute Event", "url": "https://www.w3.org/TR/orientation-event/#deviceorientationabsolute" } @@ -128,55 +268,41 @@ "#examples": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "A Examples", "url": "https://w3c.github.io/deviceorientation/#examples" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "A Examples", "url": "https://www.w3.org/TR/orientation-event/#examples" } }, - "#gesture-recognition": { - "current": { - "number": "6.1.2", - "spec": "DeviceOrientation Event", - "text": "Gesture recognition", - "url": "https://w3c.github.io/deviceorientation/#gesture-recognition" - }, - "snapshot": { - "number": "6.1.2", - "spec": "DeviceOrientation Event", - "text": "Gesture recognition", - "url": "https://www.w3.org/TR/orientation-event/#gesture-recognition" - } - }, - "#id=permission-model": { + "#gyroscope-virtual-sensors": { "current": { - "number": "4.5", - "spec": "DeviceOrientation Event", - "text": "Permission model", - "url": "https://w3c.github.io/deviceorientation/#id=permission-model" + "number": "9.2.3", + "spec": "Device Orientation and Motion", + "text": "The \"gyroscope\" virtual sensor type", + "url": "https://w3c.github.io/deviceorientation/#gyroscope-virtual-sensors" }, "snapshot": { - "number": "4.5", - "spec": "DeviceOrientation Event", - "text": "Permission model", - "url": "https://www.w3.org/TR/orientation-event/#id=permission-model" + "number": "9.2.3", + "spec": "Device Orientation and Motion", + "text": "The \"gyroscope\" virtual sensor type", + "url": "https://www.w3.org/TR/orientation-event/#gyroscope-virtual-sensors" } }, "#idl-index": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "IDL Index", "url": "https://w3c.github.io/deviceorientation/#idl-index" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "IDL Index", "url": "https://www.w3.org/TR/orientation-event/#idl-index" } @@ -184,13 +310,13 @@ "#index": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Index", "url": "https://w3c.github.io/deviceorientation/#index" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Index", "url": "https://www.w3.org/TR/orientation-event/#index" } @@ -198,13 +324,13 @@ "#index-defined-elsewhere": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Terms defined by reference", "url": "https://w3c.github.io/deviceorientation/#index-defined-elsewhere" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Terms defined by reference", "url": "https://www.w3.org/TR/orientation-event/#index-defined-elsewhere" } @@ -212,13 +338,13 @@ "#index-defined-here": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Terms defined by this specification", "url": "https://w3c.github.io/deviceorientation/#index-defined-here" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Terms defined by this specification", "url": "https://www.w3.org/TR/orientation-event/#index-defined-here" } @@ -226,111 +352,153 @@ "#informative": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Informative References", "url": "https://w3c.github.io/deviceorientation/#informative" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Informative References", "url": "https://www.w3.org/TR/orientation-event/#informative" } }, "#introduction": { "current": { - "number": "2", - "spec": "DeviceOrientation Event", + "number": "1", + "spec": "Device Orientation and Motion", "text": "Introduction", "url": "https://w3c.github.io/deviceorientation/#introduction" }, "snapshot": { - "number": "2", - "spec": "DeviceOrientation Event", + "number": "1", + "spec": "Device Orientation and Motion", "text": "Introduction", "url": "https://www.w3.org/TR/orientation-event/#introduction" } }, - "#mapping": { + "#linear-acceleration-virtual-sensors": { + "current": { + "number": "9.2.2", + "spec": "Device Orientation and Motion", + "text": "The \"linear-acceleration\" virtual sensor type", + "url": "https://w3c.github.io/deviceorientation/#linear-acceleration-virtual-sensors" + }, + "snapshot": { + "number": "9.2.2", + "spec": "Device Orientation and Motion", + "text": "The \"linear-acceleration\" virtual sensor type", + "url": "https://www.w3.org/TR/orientation-event/#linear-acceleration-virtual-sensors" + } + }, + "#model": { "current": { - "number": "6.1.3", - "spec": "DeviceOrientation Event", - "text": "Mapping", - "url": "https://w3c.github.io/deviceorientation/#mapping" + "number": "3", + "spec": "Device Orientation and Motion", + "text": "Model", + "url": "https://w3c.github.io/deviceorientation/#model" }, "snapshot": { - "number": "6.1.3", - "spec": "DeviceOrientation Event", - "text": "Mapping", - "url": "https://www.w3.org/TR/orientation-event/#mapping" + "number": "3", + "spec": "Device Orientation and Motion", + "text": "Model", + "url": "https://www.w3.org/TR/orientation-event/#model" } }, "#normative": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Normative References", "url": "https://w3c.github.io/deviceorientation/#normative" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Normative References", "url": "https://www.w3.org/TR/orientation-event/#normative" } }, + "#parse-orientation-data-reading-algorithm": { + "current": { + "number": "9.1.1", + "spec": "Device Orientation and Motion", + "text": "Parse orientation reading data algorithm", + "url": "https://w3c.github.io/deviceorientation/#parse-orientation-data-reading-algorithm" + }, + "snapshot": { + "number": "9.1.1", + "spec": "Device Orientation and Motion", + "text": "Parse orientation reading data algorithm", + "url": "https://www.w3.org/TR/orientation-event/#parse-orientation-data-reading-algorithm" + } + }, + "#permissions-integration": { + "current": { + "number": "4", + "spec": "Device Orientation and Motion", + "text": "Permissions", + "url": "https://w3c.github.io/deviceorientation/#permissions-integration" + }, + "snapshot": { + "number": "4", + "spec": "Device Orientation and Motion", + "text": "Permissions", + "url": "https://www.w3.org/TR/orientation-event/#permissions-integration" + } + }, "#references": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "References", "url": "https://w3c.github.io/deviceorientation/#references" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "References", "url": "https://www.w3.org/TR/orientation-event/#references" } }, - "#requirements": { + "#relative-orientation-virtual-sensors": { "current": { - "number": "6.2", - "spec": "DeviceOrientation Event", - "text": "Requirements", - "url": "https://w3c.github.io/deviceorientation/#requirements" + "number": "9.1.3", + "spec": "Device Orientation and Motion", + "text": "The \"relative-orientation\" virtual sensor type", + "url": "https://w3c.github.io/deviceorientation/#relative-orientation-virtual-sensors" }, "snapshot": { - "number": "6.2", - "spec": "DeviceOrientation Event", - "text": "Requirements", - "url": "https://www.w3.org/TR/orientation-event/#requirements" + "number": "9.1.3", + "spec": "Device Orientation and Motion", + "text": "The \"relative-orientation\" virtual sensor type", + "url": "https://www.w3.org/TR/orientation-event/#relative-orientation-virtual-sensors" } }, "#scope": { "current": { - "number": "3", - "spec": "DeviceOrientation Event", + "number": "2", + "spec": "Device Orientation and Motion", "text": "Scope", "url": "https://w3c.github.io/deviceorientation/#scope" }, "snapshot": { - "number": "3", - "spec": "DeviceOrientation Event", + "number": "2", + "spec": "Device Orientation and Motion", "text": "Scope", "url": "https://www.w3.org/TR/orientation-event/#scope" } }, "#security-and-privacy": { "current": { - "number": "5", - "spec": "DeviceOrientation Event", + "number": "7", + "spec": "Device Orientation and Motion", "text": "Security and privacy considerations", "url": "https://w3c.github.io/deviceorientation/#security-and-privacy" }, "snapshot": { - "number": "5", - "spec": "DeviceOrientation Event", + "number": "7", + "spec": "Device Orientation and Motion", "text": "Security and privacy considerations", "url": "https://www.w3.org/TR/orientation-event/#security-and-privacy" } @@ -338,83 +506,111 @@ "#sotd": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Status of this document", "url": "https://w3c.github.io/deviceorientation/#sotd" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Status of this document", "url": "https://www.w3.org/TR/orientation-event/#sotd" } }, + "#taks-source": { + "current": { + "number": "5", + "spec": "Device Orientation and Motion", + "text": "Task Source", + "url": "https://w3c.github.io/deviceorientation/#taks-source" + }, + "snapshot": { + "number": "5", + "spec": "Device Orientation and Motion", + "text": "Task Source", + "url": "https://www.w3.org/TR/orientation-event/#taks-source" + } + }, "#title": { "current": { "number": "", - "spec": "DeviceOrientation Event", - "text": "DeviceOrientation Event Specification", + "spec": "Device Orientation and Motion", + "text": "Device Orientation and Motion", "url": "https://w3c.github.io/deviceorientation/#title" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", - "text": "DeviceOrientation Event Specification", + "spec": "Device Orientation and Motion", + "text": "Device Orientation and Motion", "url": "https://www.w3.org/TR/orientation-event/#title" } }, "#toc": { "current": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Table of Contents", "url": "https://w3c.github.io/deviceorientation/#toc" }, "snapshot": { "number": "", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Table of Contents", "url": "https://www.w3.org/TR/orientation-event/#toc" } }, - "#use-cases": { + "#w3c-conformance": { "current": { - "number": "6.1", - "spec": "DeviceOrientation Event", - "text": "Use-Cases", - "url": "https://w3c.github.io/deviceorientation/#use-cases" + "number": "", + "spec": "Device Orientation and Motion", + "text": "Conformance", + "url": "https://w3c.github.io/deviceorientation/#w3c-conformance" }, "snapshot": { - "number": "6.1", - "spec": "DeviceOrientation Event", - "text": "Use-Cases", - "url": "https://www.w3.org/TR/orientation-event/#use-cases" + "number": "", + "spec": "Device Orientation and Motion", + "text": "Conformance", + "url": "https://www.w3.org/TR/orientation-event/#w3c-conformance" } }, - "#use-cases-and-requirements": { + "#w3c-conformant-algorithms": { "current": { - "number": "6", - "spec": "DeviceOrientation Event", - "text": "Use-Cases and Requirements", - "url": "https://w3c.github.io/deviceorientation/#use-cases-and-requirements" + "number": "", + "spec": "Device Orientation and Motion", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/deviceorientation/#w3c-conformant-algorithms" }, "snapshot": { - "number": "6", - "spec": "DeviceOrientation Event", - "text": "Use-Cases and Requirements", - "url": "https://www.w3.org/TR/orientation-event/#use-cases-and-requirements" + "number": "", + "spec": "Device Orientation and Motion", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/orientation-event/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Device Orientation and Motion", + "text": "Document conventions", + "url": "https://w3c.github.io/deviceorientation/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Device Orientation and Motion", + "text": "Document conventions", + "url": "https://www.w3.org/TR/orientation-event/#w3c-conventions" } }, "#worked-example": { "current": { "number": "A.1", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Calculating compass heading", "url": "https://w3c.github.io/deviceorientation/#worked-example" }, "snapshot": { "number": "A.1", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Calculating compass heading", "url": "https://www.w3.org/TR/orientation-event/#worked-example" } @@ -422,13 +618,13 @@ "#worked-example-2": { "current": { "number": "A.2", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Alternate device orientation representations", "url": "https://w3c.github.io/deviceorientation/#worked-example-2" }, "snapshot": { "number": "A.2", - "spec": "DeviceOrientation Event", + "spec": "Device Orientation and Motion", "text": "Alternate device orientation representations", "url": "https://www.w3.org/TR/orientation-event/#worked-example-2" } diff --git a/bikeshed/spec-data/readonly/headings/headings-orientation-sensor.json b/bikeshed/spec-data/readonly/headings/headings-orientation-sensor.json index 2ebc93d4e2..25dc41ee5c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-orientation-sensor.json +++ b/bikeshed/spec-data/readonly/headings/headings-orientation-sensor.json @@ -1,4 +1,18 @@ { + "#absolute-orientation-sensor-automation": { + "current": { + "number": "8.2", + "spec": "Orientation Sensor", + "text": "Absolute Orientation Sensor automation", + "url": "https://w3c.github.io/orientation-sensor/#absolute-orientation-sensor-automation" + }, + "snapshot": { + "number": "8.2", + "spec": "Orientation Sensor", + "text": "Absolute Orientation Sensor automation", + "url": "https://www.w3.org/TR/orientation-sensor/#absolute-orientation-sensor-automation" + } + }, "#absoluteorientationsensor-interface": { "current": { "number": "6.2", @@ -125,6 +139,20 @@ "url": "https://www.w3.org/TR/orientation-sensor/#construct-an-orientation-sensor-object" } }, + "#convert-quaternion-to-rotation-matrix": { + "current": { + "number": "7.2", + "spec": "Orientation Sensor", + "text": "Convert quaternion to rotation matrix", + "url": "https://w3c.github.io/orientation-sensor/#convert-quaternion-to-rotation-matrix" + }, + "snapshot": { + "number": "7.2", + "spec": "Orientation Sensor", + "text": "Convert quaternion to rotation matrix", + "url": "https://www.w3.org/TR/orientation-sensor/#convert-quaternion-to-rotation-matrix" + } + }, "#examples": { "current": { "number": "3", @@ -139,6 +167,20 @@ "url": "https://www.w3.org/TR/orientation-sensor/#examples" } }, + "#helper-create-quaternion-from-euler-angles": { + "current": { + "number": "7.3", + "spec": "Orientation Sensor", + "text": "Create a quaternion from Euler angles", + "url": "https://w3c.github.io/orientation-sensor/#helper-create-quaternion-from-euler-angles" + }, + "snapshot": { + "number": "7.3", + "spec": "Orientation Sensor", + "text": "Create a quaternion from Euler angles", + "url": "https://www.w3.org/TR/orientation-sensor/#helper-create-quaternion-from-euler-angles" + } + }, "#idl-index": { "current": { "number": "", @@ -223,20 +265,6 @@ "url": "https://www.w3.org/TR/orientation-sensor/#intro" } }, - "#mock-orientation-sensor-type": { - "current": { - "number": "8.1", - "spec": "Orientation Sensor", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/orientation-sensor/#mock-orientation-sensor-type" - }, - "snapshot": { - "number": "8.1", - "spec": "Orientation Sensor", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/orientation-sensor/#mock-orientation-sensor-type" - } - }, "#model": { "current": { "number": "5", @@ -251,6 +279,20 @@ "url": "https://www.w3.org/TR/orientation-sensor/#model" } }, + "#modifications-to-other-specifications": { + "current": { + "number": "8.1", + "spec": "Orientation Sensor", + "text": "Modifications to other specifications", + "url": "https://w3c.github.io/orientation-sensor/#modifications-to-other-specifications" + }, + "snapshot": { + "number": "8.1", + "spec": "Orientation Sensor", + "text": "Modifications to other specifications", + "url": "https://www.w3.org/TR/orientation-sensor/#modifications-to-other-specifications" + } + }, "#normative": { "current": { "number": "", @@ -307,32 +349,32 @@ "url": "https://www.w3.org/TR/orientation-sensor/#orientationsensor-quaternion" } }, - "#profile-and-date": { + "#references": { "current": { "number": "", "spec": "Orientation Sensor", - "text": "Editor’s Draft, 2 September 2021", - "url": "https://w3c.github.io/orientation-sensor/#profile-and-date" + "text": "References", + "url": "https://w3c.github.io/orientation-sensor/#references" }, "snapshot": { "number": "", "spec": "Orientation Sensor", - "text": "W3C Working Draft, 2 September 2021", - "url": "https://www.w3.org/TR/orientation-sensor/#profile-and-date" + "text": "References", + "url": "https://www.w3.org/TR/orientation-sensor/#references" } }, - "#references": { + "#relative-orientation-sensor-automation": { "current": { - "number": "", + "number": "8.3", "spec": "Orientation Sensor", - "text": "References", - "url": "https://w3c.github.io/orientation-sensor/#references" + "text": "Relative Orientation Sensor automation", + "url": "https://w3c.github.io/orientation-sensor/#relative-orientation-sensor-automation" }, "snapshot": { - "number": "", + "number": "8.3", "spec": "Orientation Sensor", - "text": "References", - "url": "https://www.w3.org/TR/orientation-sensor/#references" + "text": "Relative Orientation Sensor automation", + "url": "https://www.w3.org/TR/orientation-sensor/#relative-orientation-sensor-automation" } }, "#relativeorientationsensor-interface": { diff --git a/bikeshed/spec-data/readonly/headings/headings-paint-timing.json b/bikeshed/spec-data/readonly/headings/headings-paint-timing.json index 8d9c24847e..9b692c9960 100644 --- a/bikeshed/spec-data/readonly/headings/headings-paint-timing.json +++ b/bikeshed/spec-data/readonly/headings/headings-paint-timing.json @@ -2,13 +2,13 @@ "#abstract": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Abstract", "url": "https://w3c.github.io/paint-timing/#abstract" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Abstract", "url": "https://www.w3.org/TR/paint-timing/#abstract" } @@ -16,57 +16,83 @@ "#acknowledgements": { "current": { "number": "5", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Acknowledgements", "url": "https://w3c.github.io/paint-timing/#acknowledgements" }, "snapshot": { "number": "5", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Acknowledgements", "url": "https://www.w3.org/TR/paint-timing/#acknowledgements" } }, "#example": { "current": { - "number": "1.1", - "spec": "Paint Timing 1", + "number": "1.2", + "spec": "Paint Timing", "text": "Usage example", "url": "https://w3c.github.io/paint-timing/#example" }, "snapshot": { - "number": "1.1", - "spec": "Paint Timing 1", - "text": "Usage Example", + "number": "1.2", + "spec": "Paint Timing", + "text": "Usage example", "url": "https://www.w3.org/TR/paint-timing/#example" } }, + "#exposed-for-paint-timing": { + "current": { + "number": "4.4.1", + "spec": "Paint Timing", + "text": "Exposed for paint timing", + "url": "https://w3c.github.io/paint-timing/#exposed-for-paint-timing" + }, + "snapshot": { + "number": "4.4.1", + "spec": "Paint Timing", + "text": "Exposed for paint timing", + "url": "https://www.w3.org/TR/paint-timing/#exposed-for-paint-timing" + } + }, "#first-contentful-paint": { "current": { - "number": "4.1.1", - "spec": "Paint Timing 1", + "number": "4.3.1", + "spec": "Paint Timing", "text": "First Contentful Paint", "url": "https://w3c.github.io/paint-timing/#first-contentful-paint" + }, + "snapshot": { + "number": "4.3.1", + "spec": "Paint Timing", + "text": "First Contentful Paint", + "url": "https://www.w3.org/TR/paint-timing/#first-contentful-paint" } }, - "#html-event-loop-processing-model": { + "#first-paint-and-first-contentful-paint": { + "current": { + "number": "1.1", + "spec": "Paint Timing", + "text": "First Paint and First Contentful Paint", + "url": "https://w3c.github.io/paint-timing/#first-paint-and-first-contentful-paint" + }, "snapshot": { - "number": "4.1.1", - "spec": "Paint Timing 1", - "text": "HTML: event loop processing model", - "url": "https://www.w3.org/TR/paint-timing/#html-event-loop-processing-model" + "number": "1.1", + "spec": "Paint Timing", + "text": "First Paint and First Contentful Paint", + "url": "https://www.w3.org/TR/paint-timing/#first-paint-and-first-contentful-paint" } }, "#idl-index": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "IDL Index", "url": "https://w3c.github.io/paint-timing/#idl-index" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "IDL Index", "url": "https://www.w3.org/TR/paint-timing/#idl-index" } @@ -74,13 +100,13 @@ "#index": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Index", "url": "https://w3c.github.io/paint-timing/#index" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Index", "url": "https://www.w3.org/TR/paint-timing/#index" } @@ -88,13 +114,13 @@ "#index-defined-elsewhere": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Terms defined by reference", "url": "https://w3c.github.io/paint-timing/#index-defined-elsewhere" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Terms defined by reference", "url": "https://www.w3.org/TR/paint-timing/#index-defined-elsewhere" } @@ -102,27 +128,41 @@ "#index-defined-here": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Terms defined by this specification", "url": "https://w3c.github.io/paint-timing/#index-defined-here" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Terms defined by this specification", "url": "https://www.w3.org/TR/paint-timing/#index-defined-here" } }, + "#informative": { + "current": { + "number": "", + "spec": "Paint Timing", + "text": "Informative References", + "url": "https://w3c.github.io/paint-timing/#informative" + }, + "snapshot": { + "number": "", + "spec": "Paint Timing", + "text": "Informative References", + "url": "https://www.w3.org/TR/paint-timing/#informative" + } + }, "#intro": { "current": { "number": "1", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Introduction", "url": "https://w3c.github.io/paint-timing/#intro" }, "snapshot": { "number": "1", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Introduction", "url": "https://www.w3.org/TR/paint-timing/#intro" } @@ -130,193 +170,295 @@ "#issues-index": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Issues Index", "url": "https://w3c.github.io/paint-timing/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "Paint Timing", + "text": "Issues Index", + "url": "https://www.w3.org/TR/paint-timing/#issues-index" } }, "#mark-paint-timing": { "current": { - "number": "4.1.2", - "spec": "Paint Timing 1", + "number": "4.3.2", + "spec": "Paint Timing", "text": "Mark paint timing", "url": "https://w3c.github.io/paint-timing/#mark-paint-timing" }, "snapshot": { - "number": "4.2.1", - "spec": "Paint Timing 1", - "text": "Mark Paint Timing", + "number": "4.3.2", + "spec": "Paint Timing", + "text": "Mark paint timing", "url": "https://www.w3.org/TR/paint-timing/#mark-paint-timing" } }, - "#mod": { - "snapshot": { - "number": "4.1", - "spec": "Paint Timing 1", - "text": "Modifications to other specifications", - "url": "https://www.w3.org/TR/paint-timing/#mod" - } - }, "#normative": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Normative References", "url": "https://w3c.github.io/paint-timing/#normative" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Normative References", "url": "https://www.w3.org/TR/paint-timing/#normative" } }, + "#process-image-that-finished-loading": { + "current": { + "number": "4.2.3", + "spec": "Paint Timing", + "text": "Process image that finished loading", + "url": "https://w3c.github.io/paint-timing/#process-image-that-finished-loading" + }, + "snapshot": { + "number": "4.2.3", + "spec": "Paint Timing", + "text": "Process image that finished loading", + "url": "https://www.w3.org/TR/paint-timing/#process-image-that-finished-loading" + } + }, "#references": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "References", "url": "https://w3c.github.io/paint-timing/#references" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "References", "url": "https://www.w3.org/TR/paint-timing/#references" } }, "#report-paint-timing": { "current": { - "number": "4.1.3", - "spec": "Paint Timing 1", + "number": "4.3.3", + "spec": "Paint Timing", "text": "Report paint timing", "url": "https://w3c.github.io/paint-timing/#report-paint-timing" }, "snapshot": { - "number": "4.2.2", - "spec": "Paint Timing 1", - "text": "Report Paint Timing", + "number": "4.3.3", + "spec": "Paint Timing", + "text": "Report paint timing", "url": "https://www.w3.org/TR/paint-timing/#report-paint-timing" } }, "#sec-PerformancePaintTiming": { "current": { "number": "3", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "The PerformancePaintTiming interface", "url": "https://w3c.github.io/paint-timing/#sec-PerformancePaintTiming" }, "snapshot": { - "number": "3.1", - "spec": "Paint Timing 1", - "text": "PerformancePaintTiming interface", + "number": "3", + "spec": "Paint Timing", + "text": "The PerformancePaintTiming interface", "url": "https://www.w3.org/TR/paint-timing/#sec-PerformancePaintTiming" } }, - "#sec-paint-timing": { + "#sec-associated-image-requests": { + "current": { + "number": "4.1", + "spec": "Paint Timing", + "text": "Associated Image Requests", + "url": "https://w3c.github.io/paint-timing/#sec-associated-image-requests" + }, "snapshot": { - "number": "3", - "spec": "Paint Timing 1", - "text": "Paint Timing", - "url": "https://www.w3.org/TR/paint-timing/#sec-paint-timing" + "number": "4.1", + "spec": "Paint Timing", + "text": "Associated Image Requests", + "url": "https://www.w3.org/TR/paint-timing/#sec-associated-image-requests" + } + }, + "#sec-common-algorithms": { + "current": { + "number": "4.4", + "spec": "Paint Timing", + "text": "Common algorithms", + "url": "https://w3c.github.io/paint-timing/#sec-common-algorithms" + }, + "snapshot": { + "number": "4.4", + "spec": "Paint Timing", + "text": "Common algorithms", + "url": "https://www.w3.org/TR/paint-timing/#sec-common-algorithms" + } + }, + "#sec-modifications-CSS": { + "current": { + "number": "4.2.1", + "spec": "Paint Timing", + "text": "Modifications to the CSS specification", + "url": "https://w3c.github.io/paint-timing/#sec-modifications-CSS" + }, + "snapshot": { + "number": "4.2.1", + "spec": "Paint Timing", + "text": "Modifications to the CSS specification", + "url": "https://www.w3.org/TR/paint-timing/#sec-modifications-CSS" + } + }, + "#sec-modifications-dom": { + "current": { + "number": "4.2.2", + "spec": "Paint Timing", + "text": "Modifications to the HTML specification", + "url": "https://w3c.github.io/paint-timing/#sec-modifications-dom" + }, + "snapshot": { + "number": "4.2.2", + "spec": "Paint Timing", + "text": "Modifications to the HTML specification", + "url": "https://www.w3.org/TR/paint-timing/#sec-modifications-dom" } }, "#sec-processing-model": { "current": { "number": "4", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Processing model", "url": "https://w3c.github.io/paint-timing/#sec-processing-model" }, "snapshot": { "number": "4", - "spec": "Paint Timing 1", - "text": "Processing Model", + "spec": "Paint Timing", + "text": "Processing model", "url": "https://www.w3.org/TR/paint-timing/#sec-processing-model" } }, + "#sec-recording-paint-timing": { + "current": { + "number": "4.2", + "spec": "Paint Timing", + "text": "Recording paint timing", + "url": "https://w3c.github.io/paint-timing/#sec-recording-paint-timing" + }, + "snapshot": { + "number": "4.2", + "spec": "Paint Timing", + "text": "Recording paint timing", + "url": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing" + } + }, "#sec-reporting-paint-timing": { "current": { - "number": "4.1", - "spec": "Paint Timing 1", + "number": "4.3", + "spec": "Paint Timing", "text": "Reporting paint timing", "url": "https://w3c.github.io/paint-timing/#sec-reporting-paint-timing" }, "snapshot": { - "number": "4.2", - "spec": "Paint Timing 1", - "text": "Reporting Paint Timing", + "number": "4.3", + "spec": "Paint Timing", + "text": "Reporting paint timing", "url": "https://www.w3.org/TR/paint-timing/#sec-reporting-paint-timing" } }, "#sec-terminology": { "current": { "number": "2", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Terminology", "url": "https://w3c.github.io/paint-timing/#sec-terminology" }, "snapshot": { "number": "2", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Terminology", "url": "https://www.w3.org/TR/paint-timing/#sec-terminology" } }, - "#status": { + "#sotd": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Status of this document", - "url": "https://w3c.github.io/paint-timing/#status" + "url": "https://w3c.github.io/paint-timing/#sotd" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Status of this document", - "url": "https://www.w3.org/TR/paint-timing/#status" - } - }, - "#subtitle": { - "current": { - "number": "", - "spec": "Paint Timing 1", - "text": "Editor’s Draft, 16 February 2021", - "url": "https://w3c.github.io/paint-timing/#subtitle" - }, - "snapshot": { - "number": "", - "spec": "Paint Timing 1", - "text": "W3C First Public Working Draft, 7 September 2017", - "url": "https://www.w3.org/TR/paint-timing/#subtitle" + "url": "https://www.w3.org/TR/paint-timing/#sotd" } }, "#title": { "current": { "number": "", - "spec": "Paint Timing 1", - "text": "Paint Timing 1", + "spec": "Paint Timing", + "text": "Paint Timing", "url": "https://w3c.github.io/paint-timing/#title" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", - "text": "Paint Timing 1", + "spec": "Paint Timing", + "text": "Paint Timing", "url": "https://www.w3.org/TR/paint-timing/#title" } }, "#toc": { "current": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Table of Contents", "url": "https://w3c.github.io/paint-timing/#toc" }, "snapshot": { "number": "", - "spec": "Paint Timing 1", + "spec": "Paint Timing", "text": "Table of Contents", "url": "https://www.w3.org/TR/paint-timing/#toc" } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Paint Timing", + "text": "Conformance", + "url": "https://w3c.github.io/paint-timing/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Paint Timing", + "text": "Conformance", + "url": "https://www.w3.org/TR/paint-timing/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Paint Timing", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/paint-timing/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Paint Timing", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/paint-timing/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Paint Timing", + "text": "Document conventions", + "url": "https://w3c.github.io/paint-timing/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Paint Timing", + "text": "Document conventions", + "url": "https://www.w3.org/TR/paint-timing/#w3c-conventions" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-partitioned-cookies.json b/bikeshed/spec-data/readonly/headings/headings-partitioned-cookies.json index edf57565f3..737b66868e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-partitioned-cookies.json +++ b/bikeshed/spec-data/readonly/headings/headings-partitioned-cookies.json @@ -2,241 +2,241 @@ "#appendix-A": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Acknowledgments", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#appendix-A" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#appendix-A" } }, "#appendix-B": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Author's Address", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#appendix-B" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#appendix-B" } }, "#section-1": { "current": { "number": "1", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Introduction", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-1" } }, "#section-2": { "current": { "number": "2", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Conventions and Definitions", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2" } }, "#section-2.1": { "current": { "number": "2.1", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "The Partitioned attribute", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.1" } }, "#section-2.2": { "current": { "number": "2.2", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Computing the cookie partition key", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.2" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.2" } }, "#section-2.3": { "current": { "number": "2.3", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Using Set-Cookie with Partitioned", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.3" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.3" } }, "#section-2.4": { "current": { "number": "2.4", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Partitioned Cookies with the Same Name/Domain/Path", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.4" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.4" } }, "#section-2.5": { "current": { "number": "2.5", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Attaching a Partitioned Cookie to a Request", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.5" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-2.5" } }, "#section-3": { "current": { "number": "3", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Security Considerations", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3" } }, "#section-3.1": { "current": { "number": "3.1", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Partitioned requires Secure", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.1" } }, "#section-3.2": { "current": { "number": "3.2", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Partitioned cookies and XSS attacks", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.2" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.2" } }, "#section-3.3": { "current": { "number": "3.3", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Partitioned cookies and CSRF attacks", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.3" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.3" } }, "#section-3.4": { "current": { "number": "3.4", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "State proliferation for denial of service", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.4" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.4" } }, "#section-3.5": { "current": { "number": "3.5", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Partitioned cookies improve user privacy", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.5" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.5" } }, "#section-3.6": { "current": { "number": "3.6", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Avoiding cross-partition leaks", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.6" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-3.6" } }, "#section-4": { "current": { "number": "4", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Implementation Considerations", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4" } }, "#section-4.1": { "current": { "number": "4.1", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Applying Limits to Partitioned Cookie Jars", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4.1" } }, "#section-4.2": { "current": { "number": "4.2", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Third-Party Cookie Controls", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4.2" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4.2" } }, "#section-4.3": { "current": { "number": "4.3", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Partitioned Cookies and Clear-Site-Data", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4.3" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-4.3" } }, "#section-5": { "current": { "number": "5", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "IANA Considerations", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-5" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-5" } }, "#section-6": { "current": { "number": "6", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "References", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-6" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-6" } }, "#section-6.1": { "current": { "number": "6.1", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Normative References", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-6.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-6.1" } }, "#section-6.2": { "current": { "number": "6.2", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Informative References", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-6.2" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-6.2" } }, "#section-abstract": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Abstract", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-abstract" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-abstract" } }, "#section-boilerplate.1": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Status of This Memo", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-boilerplate.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-boilerplate.1" } }, "#section-boilerplate.2": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Copyright Notice", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-boilerplate.2" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-boilerplate.2" } }, "#section-note.1": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "About This Document", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-note.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-note.1" } }, "#section-toc.1": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Table of Contents", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-toc.1" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#section-toc.1" } }, "#title": { "current": { "number": "", - "spec": "Cookies Having Independent Partitioned State specification", + "spec": "Cookies Having Independent Partitioned State", "text": "Cookies Having Independent Partitioned State specification", - "url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#title" + "url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html#title" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-passkey-endpoints.json b/bikeshed/spec-data/readonly/headings/headings-passkey-endpoints.json new file mode 100644 index 0000000000..8e784eaac0 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-passkey-endpoints.json @@ -0,0 +1,154 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Abstract", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#abstract" + } + }, + "#acknowedgements": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Acknowledgements", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#acknowedgements" + } + }, + "#clients": { + "current": { + "number": "3.2", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Client Processing", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#clients" + } + }, + "#iana": { + "current": { + "number": "4", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "IANA considerations", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#iana" + } + }, + "#index": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Index", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#index-defined-elsewhere" + } + }, + "#infra": { + "current": { + "number": "2", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Infrastructure", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#infra" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Introduction", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#intro" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Normative References", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#normative" + } + }, + "#references": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "References", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#references" + } + }, + "#response": { + "current": { + "number": "3.1", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Server Response", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#response" + } + }, + "#semantics": { + "current": { + "number": "3", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Passkey Endpoints URLs", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#semantics" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Status of this document", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#sotd" + } + }, + "#the-change-password-well-known-uri": { + "current": { + "number": "4.1", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "The passkey-endpoints well-known URI", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#the-change-password-well-known-uri" + } + }, + "#title": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "A Well-Known URL for Passkey Endpoints", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Table of Contents", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Conformance", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "A Well-Known URL for Passkey Endpoints", + "text": "Document conventions", + "url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-payment-request-1.1.json b/bikeshed/spec-data/readonly/headings/headings-payment-request-1.1.json deleted file mode 100644 index e6910507df..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-payment-request-1.1.json +++ /dev/null @@ -1,1080 +0,0 @@ -{ - "#abort-method": { - "current": { - "number": "3.4", - "spec": "Payment Request API 1.1", - "text": "abort() method", - "url": "https://w3c.github.io/payment-request/#abort-method" - }, - "snapshot": { - "number": "3.4", - "spec": "Payment Request API 1.1", - "text": "abort() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#abort-method" - } - }, - "#abort-the-update": { - "current": { - "number": "14.6.1", - "spec": "Payment Request API 1.1", - "text": "Abort the update", - "url": "https://w3c.github.io/payment-request/#abort-the-update" - }, - "snapshot": { - "number": "14.6.1", - "spec": "Payment Request API 1.1", - "text": "Abort the update", - "url": "https://www.w3.org/TR/payment-request-1.1/#abort-the-update" - } - }, - "#accessibility-considerations": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "16. Accessibility Considerations", - "url": "https://w3c.github.io/payment-request/#accessibility-considerations" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "16. Accessibility Considerations", - "url": "https://www.w3.org/TR/payment-request-1.1/#accessibility-considerations" - } - }, - "#acknowledgements": { - "current": { - "number": "B", - "spec": "Payment Request API 1.1", - "text": "Acknowledgements", - "url": "https://w3c.github.io/payment-request/#acknowledgements" - }, - "snapshot": { - "number": "B", - "spec": "Payment Request API 1.1", - "text": "Acknowledgements", - "url": "https://www.w3.org/TR/payment-request-1.1/#acknowledgements" - } - }, - "#algorithms": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "14. Algorithms", - "url": "https://w3c.github.io/payment-request/#algorithms" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "14. Algorithms", - "url": "https://www.w3.org/TR/payment-request-1.1/#algorithms" - } - }, - "#can-make-payment-algorithm": { - "current": { - "number": "14.1", - "spec": "Payment Request API 1.1", - "text": "Can make payment algorithm", - "url": "https://w3c.github.io/payment-request/#can-make-payment-algorithm" - }, - "snapshot": { - "number": "14.1", - "spec": "Payment Request API 1.1", - "text": "Can make payment algorithm", - "url": "https://www.w3.org/TR/payment-request-1.1/#can-make-payment-algorithm" - } - }, - "#canmakepayment-method": { - "current": { - "number": "3.5", - "spec": "Payment Request API 1.1", - "text": "canMakePayment() method", - "url": "https://w3c.github.io/payment-request/#canmakepayment-method" - }, - "snapshot": { - "number": "3.5", - "spec": "Payment Request API 1.1", - "text": "canMakePayment() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-method" - } - }, - "#canmakepayment-protections-0": { - "current": { - "number": "15.8", - "spec": "Payment Request API 1.1", - "text": "canMakePayment() protections", - "url": "https://w3c.github.io/payment-request/#canmakepayment-protections-0" - }, - "snapshot": { - "number": "15.8", - "spec": "Payment Request API 1.1", - "text": "canMakePayment() protections", - "url": "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-protections-0" - } - }, - "#changelog": { - "current": { - "number": "C", - "spec": "Payment Request API 1.1", - "text": "Changelog", - "url": "https://w3c.github.io/payment-request/#changelog" - }, - "snapshot": { - "number": "C", - "spec": "Payment Request API 1.1", - "text": "Changelog", - "url": "https://www.w3.org/TR/payment-request-1.1/#changelog" - } - }, - "#changes-since-last-publication": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "Changes since last publication", - "url": "https://w3c.github.io/payment-request/#changes-since-last-publication" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "Changes since last publication", - "url": "https://www.w3.org/TR/payment-request-1.1/#changes-since-last-publication" - } - }, - "#complete-method": { - "current": { - "number": "11.5", - "spec": "Payment Request API 1.1", - "text": "complete() method", - "url": "https://w3c.github.io/payment-request/#complete-method" - }, - "snapshot": { - "number": "11.5", - "spec": "Payment Request API 1.1", - "text": "complete() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#complete-method" - } - }, - "#conditional-modifications-to-payment-request": { - "current": { - "number": "2.3", - "spec": "Payment Request API 1.1", - "text": "Conditional modifications to payment request", - "url": "https://w3c.github.io/payment-request/#conditional-modifications-to-payment-request" - }, - "snapshot": { - "number": "2.3", - "spec": "Payment Request API 1.1", - "text": "Conditional modifications to payment request", - "url": "https://www.w3.org/TR/payment-request-1.1/#conditional-modifications-to-payment-request" - } - }, - "#conformance": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "18. Conformance", - "url": "https://w3c.github.io/payment-request/#conformance" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "18. Conformance", - "url": "https://www.w3.org/TR/payment-request-1.1/#conformance" - } - }, - "#constructing-a-paymentrequest": { - "current": { - "number": "2.4", - "spec": "Payment Request API 1.1", - "text": "Constructing a PaymentRequest", - "url": "https://w3c.github.io/payment-request/#constructing-a-paymentrequest" - }, - "snapshot": { - "number": "2.4", - "spec": "Payment Request API 1.1", - "text": "Constructing a PaymentRequest", - "url": "https://www.w3.org/TR/payment-request-1.1/#constructing-a-paymentrequest" - } - }, - "#constructor": { - "current": { - "number": "3.1", - "spec": "Payment Request API 1.1", - "text": "Constructor", - "url": "https://w3c.github.io/payment-request/#constructor" - }, - "snapshot": { - "number": "3.1", - "spec": "Payment Request API 1.1", - "text": "Constructor", - "url": "https://www.w3.org/TR/payment-request-1.1/#constructor" - } - }, - "#constructor-0": { - "current": { - "number": "13.3.1", - "spec": "Payment Request API 1.1", - "text": "Constructor", - "url": "https://w3c.github.io/payment-request/#constructor-0" - }, - "snapshot": { - "number": "13.3.1", - "spec": "Payment Request API 1.1", - "text": "Constructor", - "url": "https://www.w3.org/TR/payment-request-1.1/#constructor-0" - } - }, - "#cross-origin-payment-requests": { - "current": { - "number": "15.3", - "spec": "Payment Request API 1.1", - "text": "Cross-origin payment requests", - "url": "https://w3c.github.io/payment-request/#cross-origin-payment-requests" - }, - "snapshot": { - "number": "15.3", - "spec": "Payment Request API 1.1", - "text": "Cross-origin payment requests", - "url": "https://www.w3.org/TR/payment-request-1.1/#cross-origin-payment-requests" - } - }, - "#data-usage-0": { - "current": { - "number": "15.6", - "spec": "Payment Request API 1.1", - "text": "Data usage", - "url": "https://w3c.github.io/payment-request/#data-usage-0" - }, - "snapshot": { - "number": "15.6", - "spec": "Payment Request API 1.1", - "text": "Data usage", - "url": "https://www.w3.org/TR/payment-request-1.1/#data-usage-0" - } - }, - "#declaring-multiple-ways-of-paying": { - "current": { - "number": "2.1", - "spec": "Payment Request API 1.1", - "text": "Declaring multiple ways of paying", - "url": "https://w3c.github.io/payment-request/#declaring-multiple-ways-of-paying" - }, - "snapshot": { - "number": "2.1", - "spec": "Payment Request API 1.1", - "text": "Declaring multiple ways of paying", - "url": "https://www.w3.org/TR/payment-request-1.1/#declaring-multiple-ways-of-paying" - } - }, - "#dependencies": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "17. Dependencies", - "url": "https://w3c.github.io/payment-request/#dependencies" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "17. Dependencies", - "url": "https://www.w3.org/TR/payment-request-1.1/#dependencies" - } - }, - "#describing-what-is-being-paid-for": { - "current": { - "number": "2.2", - "spec": "Payment Request API 1.1", - "text": "Describing what is being paid for", - "url": "https://w3c.github.io/payment-request/#describing-what-is-being-paid-for" - }, - "snapshot": { - "number": "2.2", - "spec": "Payment Request API 1.1", - "text": "Describing what is being paid for", - "url": "https://www.w3.org/TR/payment-request-1.1/#describing-what-is-being-paid-for" - } - }, - "#details-attribute": { - "current": { - "number": "11.3", - "spec": "Payment Request API 1.1", - "text": "details attribute", - "url": "https://w3c.github.io/payment-request/#details-attribute" - }, - "snapshot": { - "number": "11.3", - "spec": "Payment Request API 1.1", - "text": "details attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#details-attribute" - } - }, - "#encryption-of-data-fields": { - "current": { - "number": "15.4", - "spec": "Payment Request API 1.1", - "text": "Encryption of data fields", - "url": "https://w3c.github.io/payment-request/#encryption-of-data-fields" - }, - "snapshot": { - "number": "15.4", - "spec": "Payment Request API 1.1", - "text": "Encryption of data fields", - "url": "https://www.w3.org/TR/payment-request-1.1/#encryption-of-data-fields" - } - }, - "#events": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "13. Events", - "url": "https://w3c.github.io/payment-request/#events" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "13. Events", - "url": "https://www.w3.org/TR/payment-request-1.1/#events" - } - }, - "#examples-of-usage": { - "current": { - "number": "2", - "spec": "Payment Request API 1.1", - "text": "Examples of usage", - "url": "https://w3c.github.io/payment-request/#examples-of-usage" - }, - "snapshot": { - "number": "2", - "spec": "Payment Request API 1.1", - "text": "Examples of usage", - "url": "https://www.w3.org/TR/payment-request-1.1/#examples-of-usage" - } - }, - "#exposing-user-information": { - "current": { - "number": "15.7", - "spec": "Payment Request API 1.1", - "text": "Exposing user information", - "url": "https://w3c.github.io/payment-request/#exposing-user-information" - }, - "snapshot": { - "number": "15.7", - "spec": "Payment Request API 1.1", - "text": "Exposing user information", - "url": "https://www.w3.org/TR/payment-request-1.1/#exposing-user-information" - } - }, - "#goals": { - "current": { - "number": "1.1", - "spec": "Payment Request API 1.1", - "text": "Goals and scope", - "url": "https://w3c.github.io/payment-request/#goals" - }, - "snapshot": { - "number": "1.1", - "spec": "Payment Request API 1.1", - "text": "Goals and scope", - "url": "https://www.w3.org/TR/payment-request-1.1/#goals" - } - }, - "#how-user-agents-match-payment-handlers": { - "current": { - "number": "15.5", - "spec": "Payment Request API 1.1", - "text": "How user agents match payment handlers", - "url": "https://w3c.github.io/payment-request/#how-user-agents-match-payment-handlers" - }, - "snapshot": { - "number": "15.5", - "spec": "Payment Request API 1.1", - "text": "How user agents match payment handlers", - "url": "https://www.w3.org/TR/payment-request-1.1/#how-user-agents-match-payment-handlers" - } - }, - "#id-attribute": { - "current": { - "number": "3.2", - "spec": "Payment Request API 1.1", - "text": "id attribute", - "url": "https://w3c.github.io/payment-request/#id-attribute" - }, - "snapshot": { - "number": "3.2", - "spec": "Payment Request API 1.1", - "text": "id attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#id-attribute" - } - }, - "#idl-index": { - "current": { - "number": "A", - "spec": "Payment Request API 1.1", - "text": "IDL Index", - "url": "https://w3c.github.io/payment-request/#idl-index" - }, - "snapshot": { - "number": "A", - "spec": "Payment Request API 1.1", - "text": "IDL Index", - "url": "https://www.w3.org/TR/payment-request-1.1/#idl-index" - } - }, - "#informative-references": { - "current": { - "number": "D.2", - "spec": "Payment Request API 1.1", - "text": "Informative references", - "url": "https://w3c.github.io/payment-request/#informative-references" - }, - "snapshot": { - "number": "D.2", - "spec": "Payment Request API 1.1", - "text": "Informative references", - "url": "https://www.w3.org/TR/payment-request-1.1/#informative-references" - } - }, - "#internal-slots": { - "current": { - "number": "3.7", - "spec": "Payment Request API 1.1", - "text": "Internal Slots", - "url": "https://w3c.github.io/payment-request/#internal-slots" - }, - "snapshot": { - "number": "3.7", - "spec": "Payment Request API 1.1", - "text": "Internal Slots", - "url": "https://www.w3.org/TR/payment-request-1.1/#internal-slots" - } - }, - "#internal-slots-0": { - "current": { - "number": "11.6", - "spec": "Payment Request API 1.1", - "text": "Internal Slots", - "url": "https://w3c.github.io/payment-request/#internal-slots-0" - }, - "snapshot": { - "number": "11.6", - "spec": "Payment Request API 1.1", - "text": "Internal Slots", - "url": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-0" - } - }, - "#internal-slots-1": { - "current": { - "number": "13.3.3", - "spec": "Payment Request API 1.1", - "text": "Internal Slots", - "url": "https://w3c.github.io/payment-request/#internal-slots-1" - }, - "snapshot": { - "number": "13.3.3", - "spec": "Payment Request API 1.1", - "text": "Internal Slots", - "url": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-1" - } - }, - "#introduction": { - "current": { - "number": "1", - "spec": "Payment Request API 1.1", - "text": "Introduction", - "url": "https://w3c.github.io/payment-request/#introduction" - }, - "snapshot": { - "number": "1", - "spec": "Payment Request API 1.1", - "text": "Introduction", - "url": "https://www.w3.org/TR/payment-request-1.1/#introduction" - } - }, - "#methoddetails-attribute": { - "current": { - "number": "13.2.1", - "spec": "Payment Request API 1.1", - "text": "methodDetails attribute", - "url": "https://w3c.github.io/payment-request/#methoddetails-attribute" - }, - "snapshot": { - "number": "13.2.1", - "spec": "Payment Request API 1.1", - "text": "methodDetails attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#methoddetails-attribute" - } - }, - "#methodname-attribute": { - "current": { - "number": "11.2", - "spec": "Payment Request API 1.1", - "text": "methodName attribute", - "url": "https://w3c.github.io/payment-request/#methodname-attribute" - }, - "snapshot": { - "number": "11.2", - "spec": "Payment Request API 1.1", - "text": "methodName attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute" - } - }, - "#methodname-attribute-0": { - "current": { - "number": "13.2.2", - "spec": "Payment Request API 1.1", - "text": "methodName attribute", - "url": "https://w3c.github.io/payment-request/#methodname-attribute-0" - }, - "snapshot": { - "number": "13.2.2", - "spec": "Payment Request API 1.1", - "text": "methodName attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute-0" - } - }, - "#normative-references": { - "current": { - "number": "D.1", - "spec": "Payment Request API 1.1", - "text": "Normative references", - "url": "https://w3c.github.io/payment-request/#normative-references" - }, - "snapshot": { - "number": "D.1", - "spec": "Payment Request API 1.1", - "text": "Normative references", - "url": "https://www.w3.org/TR/payment-request-1.1/#normative-references" - } - }, - "#onpaymentmethodchange-attribute": { - "current": { - "number": "3.6", - "spec": "Payment Request API 1.1", - "text": "onpaymentmethodchange attribute", - "url": "https://w3c.github.io/payment-request/#onpaymentmethodchange-attribute" - }, - "snapshot": { - "number": "3.6", - "spec": "Payment Request API 1.1", - "text": "onpaymentmethodchange attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#onpaymentmethodchange-attribute" - } - }, - "#payment-details-dictionaries": { - "current": { - "number": "6", - "spec": "Payment Request API 1.1", - "text": "Payment details dictionaries", - "url": "https://w3c.github.io/payment-request/#payment-details-dictionaries" - }, - "snapshot": { - "number": "6", - "spec": "Payment Request API 1.1", - "text": "Payment details dictionaries", - "url": "https://www.w3.org/TR/payment-request-1.1/#payment-details-dictionaries" - } - }, - "#payment-method-changed-algorithm": { - "current": { - "number": "14.2", - "spec": "Payment Request API 1.1", - "text": "Payment method changed algorithm", - "url": "https://w3c.github.io/payment-request/#payment-method-changed-algorithm" - }, - "snapshot": { - "number": "14.2", - "spec": "Payment Request API 1.1", - "text": "Payment method changed algorithm", - "url": "https://www.w3.org/TR/payment-request-1.1/#payment-method-changed-algorithm" - } - }, - "#paymentcomplete-enum": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "10. PaymentComplete enum", - "url": "https://w3c.github.io/payment-request/#paymentcomplete-enum" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "10. PaymentComplete enum", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum" - } - }, - "#paymentcompletedetails-dictionary": { - "current": { - "number": "9", - "spec": "Payment Request API 1.1", - "text": "PaymentCompleteDetails dictionary", - "url": "https://w3c.github.io/payment-request/#paymentcompletedetails-dictionary" - }, - "snapshot": { - "number": "9", - "spec": "Payment Request API 1.1", - "text": "PaymentCompleteDetails dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentcompletedetails-dictionary" - } - }, - "#paymentcurrencyamount-dictionary": { - "current": { - "number": "5", - "spec": "Payment Request API 1.1", - "text": "PaymentCurrencyAmount dictionary", - "url": "https://w3c.github.io/payment-request/#paymentcurrencyamount-dictionary" - }, - "snapshot": { - "number": "5", - "spec": "Payment Request API 1.1", - "text": "PaymentCurrencyAmount dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentcurrencyamount-dictionary" - } - }, - "#paymentdetailsbase-dictionary": { - "current": { - "number": "6.1", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsBase dictionary", - "url": "https://w3c.github.io/payment-request/#paymentdetailsbase-dictionary" - }, - "snapshot": { - "number": "6.1", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsBase dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary" - } - }, - "#paymentdetailsinit-dictionary": { - "current": { - "number": "6.2", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsInit dictionary", - "url": "https://w3c.github.io/payment-request/#paymentdetailsinit-dictionary" - }, - "snapshot": { - "number": "6.2", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsInit dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsinit-dictionary" - } - }, - "#paymentdetailsmodifier-dictionary": { - "current": { - "number": "7", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsModifier dictionary", - "url": "https://w3c.github.io/payment-request/#paymentdetailsmodifier-dictionary" - }, - "snapshot": { - "number": "7", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsModifier dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary" - } - }, - "#paymentdetailsupdate-dictionary": { - "current": { - "number": "6.3", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsUpdate dictionary", - "url": "https://w3c.github.io/payment-request/#paymentdetailsupdate-dictionary" - }, - "snapshot": { - "number": "6.3", - "spec": "Payment Request API 1.1", - "text": "PaymentDetailsUpdate dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary" - } - }, - "#paymentitem-dictionary": { - "current": { - "number": "8", - "spec": "Payment Request API 1.1", - "text": "PaymentItem dictionary", - "url": "https://w3c.github.io/payment-request/#paymentitem-dictionary" - }, - "snapshot": { - "number": "8", - "spec": "Payment Request API 1.1", - "text": "PaymentItem dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary" - } - }, - "#paymentmethodchangeevent-interface": { - "current": { - "number": "13.2", - "spec": "Payment Request API 1.1", - "text": "PaymentMethodChangeEvent interface", - "url": "https://w3c.github.io/payment-request/#paymentmethodchangeevent-interface" - }, - "snapshot": { - "number": "13.2", - "spec": "Payment Request API 1.1", - "text": "PaymentMethodChangeEvent interface", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeevent-interface" - } - }, - "#paymentmethodchangeeventinit-dictionary": { - "current": { - "number": "13.2.3", - "spec": "Payment Request API 1.1", - "text": "PaymentMethodChangeEventInit dictionary", - "url": "https://w3c.github.io/payment-request/#paymentmethodchangeeventinit-dictionary" - }, - "snapshot": { - "number": "13.2.3", - "spec": "Payment Request API 1.1", - "text": "PaymentMethodChangeEventInit dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeeventinit-dictionary" - } - }, - "#paymentmethoddata-dictionary": { - "current": { - "number": "4", - "spec": "Payment Request API 1.1", - "text": "PaymentMethodData dictionary", - "url": "https://w3c.github.io/payment-request/#paymentmethoddata-dictionary" - }, - "snapshot": { - "number": "4", - "spec": "Payment Request API 1.1", - "text": "PaymentMethodData dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentmethoddata-dictionary" - } - }, - "#paymentrequest-interface": { - "current": { - "number": "3", - "spec": "Payment Request API 1.1", - "text": "PaymentRequest interface", - "url": "https://w3c.github.io/payment-request/#paymentrequest-interface" - }, - "snapshot": { - "number": "3", - "spec": "Payment Request API 1.1", - "text": "PaymentRequest interface", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface" - } - }, - "#paymentrequest-updated-algorithm": { - "current": { - "number": "14.3", - "spec": "Payment Request API 1.1", - "text": "PaymentRequest updated algorithm", - "url": "https://w3c.github.io/payment-request/#paymentrequest-updated-algorithm" - }, - "snapshot": { - "number": "14.3", - "spec": "Payment Request API 1.1", - "text": "PaymentRequest updated algorithm", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-updated-algorithm" - } - }, - "#paymentrequestupdateevent-interface": { - "current": { - "number": "13.3", - "spec": "Payment Request API 1.1", - "text": "PaymentRequestUpdateEvent interface", - "url": "https://w3c.github.io/payment-request/#paymentrequestupdateevent-interface" - }, - "snapshot": { - "number": "13.3", - "spec": "Payment Request API 1.1", - "text": "PaymentRequestUpdateEvent interface", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateevent-interface" - } - }, - "#paymentrequestupdateeventinit-dictionary": { - "current": { - "number": "13.3.4", - "spec": "Payment Request API 1.1", - "text": "PaymentRequestUpdateEventInit dictionary", - "url": "https://w3c.github.io/payment-request/#paymentrequestupdateeventinit-dictionary" - }, - "snapshot": { - "number": "13.3.4", - "spec": "Payment Request API 1.1", - "text": "PaymentRequestUpdateEventInit dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateeventinit-dictionary" - } - }, - "#paymentresponse-interface": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "11. PaymentResponse interface", - "url": "https://w3c.github.io/payment-request/#paymentresponse-interface" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "11. PaymentResponse interface", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentresponse-interface" - } - }, - "#paymentvalidationerrors-dictionary": { - "current": { - "number": "11.1.1", - "spec": "Payment Request API 1.1", - "text": "PaymentValidationErrors dictionary", - "url": "https://w3c.github.io/payment-request/#paymentvalidationerrors-dictionary" - }, - "snapshot": { - "number": "11.1.1", - "spec": "Payment Request API 1.1", - "text": "PaymentValidationErrors dictionary", - "url": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary" - } - }, - "#permissions-policy": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "12. Permissions Policy integration", - "url": "https://w3c.github.io/payment-request/#permissions-policy" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "12. Permissions Policy integration", - "url": "https://www.w3.org/TR/payment-request-1.1/#permissions-policy" - } - }, - "#posting-payment-response-back-to-a-server": { - "current": { - "number": "2.5", - "spec": "Payment Request API 1.1", - "text": "POSTing payment response back to a server", - "url": "https://w3c.github.io/payment-request/#posting-payment-response-back-to-a-server" - }, - "snapshot": { - "number": "2.5", - "spec": "Payment Request API 1.1", - "text": "POSTing payment response back to a server", - "url": "https://www.w3.org/TR/payment-request-1.1/#posting-payment-response-back-to-a-server" - } - }, - "#privacy": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "15. Privacy and Security Considerations", - "url": "https://w3c.github.io/payment-request/#privacy" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "15. Privacy and Security Considerations", - "url": "https://www.w3.org/TR/payment-request-1.1/#privacy" - } - }, - "#references": { - "current": { - "number": "D", - "spec": "Payment Request API 1.1", - "text": "References", - "url": "https://w3c.github.io/payment-request/#references" - }, - "snapshot": { - "number": "D", - "spec": "Payment Request API 1.1", - "text": "References", - "url": "https://www.w3.org/TR/payment-request-1.1/#references" - } - }, - "#requestid-attribute": { - "current": { - "number": "11.4", - "spec": "Payment Request API 1.1", - "text": "requestId attribute", - "url": "https://w3c.github.io/payment-request/#requestid-attribute" - }, - "snapshot": { - "number": "11.4", - "spec": "Payment Request API 1.1", - "text": "requestId attribute", - "url": "https://www.w3.org/TR/payment-request-1.1/#requestid-attribute" - } - }, - "#retry-method": { - "current": { - "number": "11.1", - "spec": "Payment Request API 1.1", - "text": "retry() method", - "url": "https://w3c.github.io/payment-request/#retry-method" - }, - "snapshot": { - "number": "11.1", - "spec": "Payment Request API 1.1", - "text": "retry() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#retry-method" - } - }, - "#secure-contexts": { - "current": { - "number": "15.2", - "spec": "Payment Request API 1.1", - "text": "Secure contexts", - "url": "https://w3c.github.io/payment-request/#secure-contexts" - }, - "snapshot": { - "number": "15.2", - "spec": "Payment Request API 1.1", - "text": "Secure contexts", - "url": "https://www.w3.org/TR/payment-request-1.1/#secure-contexts" - } - }, - "#show-method": { - "current": { - "number": "3.3", - "spec": "Payment Request API 1.1", - "text": "show() method", - "url": "https://w3c.github.io/payment-request/#show-method" - }, - "snapshot": { - "number": "3.3", - "spec": "Payment Request API 1.1", - "text": "show() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#show-method" - } - }, - "#summary": { - "current": { - "number": "13.1", - "spec": "Payment Request API 1.1", - "text": "Summary", - "url": "https://w3c.github.io/payment-request/#summary" - }, - "snapshot": { - "number": "13.1", - "spec": "Payment Request API 1.1", - "text": "Summary", - "url": "https://www.w3.org/TR/payment-request-1.1/#summary" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "Payment Request API 1.1", - "url": "https://w3c.github.io/payment-request/#title" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "Payment Request API 1.1", - "url": "https://www.w3.org/TR/payment-request-1.1/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "Table of Contents", - "url": "https://w3c.github.io/payment-request/#toc" - }, - "snapshot": { - "number": "", - "spec": "Payment Request API 1.1", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/payment-request-1.1/#toc" - } - }, - "#update-a-paymentrequest-s-details-algorithm": { - "current": { - "number": "14.6", - "spec": "Payment Request API 1.1", - "text": "Update a PaymentRequest's details algorithm", - "url": "https://w3c.github.io/payment-request/#update-a-paymentrequest-s-details-algorithm" - }, - "snapshot": { - "number": "14.6", - "spec": "Payment Request API 1.1", - "text": "Update a PaymentRequest's details algorithm", - "url": "https://www.w3.org/TR/payment-request-1.1/#update-a-paymentrequest-s-details-algorithm" - } - }, - "#updatewith-method": { - "current": { - "number": "13.3.2", - "spec": "Payment Request API 1.1", - "text": "updateWith() method", - "url": "https://w3c.github.io/payment-request/#updatewith-method" - }, - "snapshot": { - "number": "13.3.2", - "spec": "Payment Request API 1.1", - "text": "updateWith() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#updatewith-method" - } - }, - "#user-aborts-the-payment-request-algorithm": { - "current": { - "number": "14.5", - "spec": "Payment Request API 1.1", - "text": "User aborts the payment request algorithm", - "url": "https://w3c.github.io/payment-request/#user-aborts-the-payment-request-algorithm" - }, - "snapshot": { - "number": "14.5", - "spec": "Payment Request API 1.1", - "text": "User aborts the payment request algorithm", - "url": "https://www.w3.org/TR/payment-request-1.1/#user-aborts-the-payment-request-algorithm" - } - }, - "#user-accepts-the-payment-request-algorithm": { - "current": { - "number": "14.4", - "spec": "Payment Request API 1.1", - "text": "User accepts the payment request algorithm", - "url": "https://w3c.github.io/payment-request/#user-accepts-the-payment-request-algorithm" - }, - "snapshot": { - "number": "14.4", - "spec": "Payment Request API 1.1", - "text": "User accepts the payment request algorithm", - "url": "https://www.w3.org/TR/payment-request-1.1/#user-accepts-the-payment-request-algorithm" - } - }, - "#user-protections-with-show-method": { - "current": { - "number": "15.1", - "spec": "Payment Request API 1.1", - "text": "User protections with show() method", - "url": "https://w3c.github.io/payment-request/#user-protections-with-show-method" - }, - "snapshot": { - "number": "15.1", - "spec": "Payment Request API 1.1", - "text": "User protections with show() method", - "url": "https://www.w3.org/TR/payment-request-1.1/#user-protections-with-show-method" - } - }, - "#using-with-cross-origin-iframes": { - "current": { - "number": "2.6", - "spec": "Payment Request API 1.1", - "text": "Using with cross-origin iframes", - "url": "https://w3c.github.io/payment-request/#using-with-cross-origin-iframes" - }, - "snapshot": { - "number": "2.6", - "spec": "Payment Request API 1.1", - "text": "Using with cross-origin iframes", - "url": "https://www.w3.org/TR/payment-request-1.1/#using-with-cross-origin-iframes" - } - }, - "#validity-checkers": { - "current": { - "number": "5.1", - "spec": "Payment Request API 1.1", - "text": "Validity checkers", - "url": "https://w3c.github.io/payment-request/#validity-checkers" - }, - "snapshot": { - "number": "5.1", - "spec": "Payment Request API 1.1", - "text": "Validity checkers", - "url": "https://www.w3.org/TR/payment-request-1.1/#validity-checkers" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-payment-request.json b/bikeshed/spec-data/readonly/headings/headings-payment-request.json new file mode 100644 index 0000000000..65006bdefa --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-payment-request.json @@ -0,0 +1,1402 @@ +{ + "#abort-method": { + "current": { + "number": "3.4", + "spec": "Payment Request API", + "text": "abort() method", + "url": "https://w3c.github.io/payment-request/#abort-method" + }, + "snapshot": { + "number": "3.4", + "spec": "Payment Request API", + "text": "abort() method", + "url": "https://www.w3.org/TR/payment-request/#abort-method" + } + }, + "#abort-the-update": { + "current": { + "number": "18.9.1", + "spec": "Payment Request API", + "text": "Abort the update", + "url": "https://w3c.github.io/payment-request/#abort-the-update" + }, + "snapshot": { + "number": "18.9.1", + "spec": "Payment Request API", + "text": "Abort the update", + "url": "https://www.w3.org/TR/payment-request/#abort-the-update" + } + }, + "#accessibility-considerations": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "20. Accessibility Considerations", + "url": "https://w3c.github.io/payment-request/#accessibility-considerations" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "20. Accessibility Considerations", + "url": "https://www.w3.org/TR/payment-request/#accessibility-considerations" + } + }, + "#acknowledgements": { + "current": { + "number": "B", + "spec": "Payment Request API", + "text": "Acknowledgements", + "url": "https://w3c.github.io/payment-request/#acknowledgements" + }, + "snapshot": { + "number": "B", + "spec": "Payment Request API", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/payment-request/#acknowledgements" + } + }, + "#adding-shipping-options": { + "current": { + "number": "2.3", + "spec": "Payment Request API", + "text": "Adding shipping options", + "url": "https://w3c.github.io/payment-request/#adding-shipping-options" + }, + "snapshot": { + "number": "2.3", + "spec": "Payment Request API", + "text": "Adding shipping options", + "url": "https://www.w3.org/TR/payment-request/#adding-shipping-options" + } + }, + "#addresserrors-dictionary": { + "current": { + "number": "15.1", + "spec": "Payment Request API", + "text": "AddressErrors dictionary", + "url": "https://w3c.github.io/payment-request/#addresserrors-dictionary" + }, + "snapshot": { + "number": "15.1", + "spec": "Payment Request API", + "text": "AddressErrors dictionary", + "url": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary" + } + }, + "#algorithms": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "18. Algorithms", + "url": "https://w3c.github.io/payment-request/#algorithms" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "18. Algorithms", + "url": "https://www.w3.org/TR/payment-request/#algorithms" + } + }, + "#can-make-payment-algorithm": { + "current": { + "number": "18.1", + "spec": "Payment Request API", + "text": "Can make payment algorithm", + "url": "https://w3c.github.io/payment-request/#can-make-payment-algorithm" + }, + "snapshot": { + "number": "18.1", + "spec": "Payment Request API", + "text": "Can make payment algorithm", + "url": "https://www.w3.org/TR/payment-request/#can-make-payment-algorithm" + } + }, + "#canmakepayment-method": { + "current": { + "number": "3.5", + "spec": "Payment Request API", + "text": "canMakePayment() method", + "url": "https://w3c.github.io/payment-request/#canmakepayment-method" + }, + "snapshot": { + "number": "3.5", + "spec": "Payment Request API", + "text": "canMakePayment() method", + "url": "https://www.w3.org/TR/payment-request/#canmakepayment-method" + } + }, + "#canmakepayment-protections-0": { + "current": { + "number": "19.8", + "spec": "Payment Request API", + "text": "canMakePayment() protections", + "url": "https://w3c.github.io/payment-request/#canmakepayment-protections-0" + }, + "snapshot": { + "number": "19.8", + "spec": "Payment Request API", + "text": "canMakePayment() protections", + "url": "https://www.w3.org/TR/payment-request/#canmakepayment-protections-0" + } + }, + "#changelog": { + "current": { + "number": "C", + "spec": "Payment Request API", + "text": "Changelog", + "url": "https://w3c.github.io/payment-request/#changelog" + }, + "snapshot": { + "number": "C", + "spec": "Payment Request API", + "text": "Changelog", + "url": "https://www.w3.org/TR/payment-request/#changelog" + } + }, + "#complete-method": { + "current": { + "number": "14.10", + "spec": "Payment Request API", + "text": "complete() method", + "url": "https://w3c.github.io/payment-request/#complete-method" + }, + "snapshot": { + "number": "14.10", + "spec": "Payment Request API", + "text": "complete() method", + "url": "https://www.w3.org/TR/payment-request/#complete-method" + } + }, + "#conditional-modifications-to-payment-request": { + "current": { + "number": "2.4", + "spec": "Payment Request API", + "text": "Conditional modifications to payment request", + "url": "https://w3c.github.io/payment-request/#conditional-modifications-to-payment-request" + }, + "snapshot": { + "number": "2.4", + "spec": "Payment Request API", + "text": "Conditional modifications to payment request", + "url": "https://www.w3.org/TR/payment-request/#conditional-modifications-to-payment-request" + } + }, + "#conformance": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "22. Conformance", + "url": "https://w3c.github.io/payment-request/#conformance" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "22. Conformance", + "url": "https://www.w3.org/TR/payment-request/#conformance" + } + }, + "#constructing-a-paymentrequest": { + "current": { + "number": "2.6", + "spec": "Payment Request API", + "text": "Constructing a PaymentRequest", + "url": "https://w3c.github.io/payment-request/#constructing-a-paymentrequest" + }, + "snapshot": { + "number": "2.6", + "spec": "Payment Request API", + "text": "Constructing a PaymentRequest", + "url": "https://www.w3.org/TR/payment-request/#constructing-a-paymentrequest" + } + }, + "#constructor": { + "current": { + "number": "3.1", + "spec": "Payment Request API", + "text": "Constructor", + "url": "https://w3c.github.io/payment-request/#constructor" + }, + "snapshot": { + "number": "3.1", + "spec": "Payment Request API", + "text": "Constructor", + "url": "https://www.w3.org/TR/payment-request/#constructor" + } + }, + "#constructor-0": { + "current": { + "number": "17.3.1", + "spec": "Payment Request API", + "text": "Constructor", + "url": "https://w3c.github.io/payment-request/#constructor-0" + }, + "snapshot": { + "number": "17.3.1", + "spec": "Payment Request API", + "text": "Constructor", + "url": "https://www.w3.org/TR/payment-request/#constructor-0" + } + }, + "#cross-origin-payment-requests": { + "current": { + "number": "19.3", + "spec": "Payment Request API", + "text": "Cross-origin payment requests", + "url": "https://w3c.github.io/payment-request/#cross-origin-payment-requests" + }, + "snapshot": { + "number": "19.3", + "spec": "Payment Request API", + "text": "Cross-origin payment requests", + "url": "https://www.w3.org/TR/payment-request/#cross-origin-payment-requests" + } + }, + "#data-usage-0": { + "current": { + "number": "19.6", + "spec": "Payment Request API", + "text": "Data usage", + "url": "https://w3c.github.io/payment-request/#data-usage-0" + }, + "snapshot": { + "number": "19.6", + "spec": "Payment Request API", + "text": "Data usage", + "url": "https://www.w3.org/TR/payment-request/#data-usage-0" + } + }, + "#declaring-multiple-ways-of-paying": { + "current": { + "number": "2.1", + "spec": "Payment Request API", + "text": "Declaring multiple ways of paying", + "url": "https://w3c.github.io/payment-request/#declaring-multiple-ways-of-paying" + }, + "snapshot": { + "number": "2.1", + "spec": "Payment Request API", + "text": "Declaring multiple ways of paying", + "url": "https://www.w3.org/TR/payment-request/#declaring-multiple-ways-of-paying" + } + }, + "#dependencies": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "21. Dependencies", + "url": "https://w3c.github.io/payment-request/#dependencies" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "21. Dependencies", + "url": "https://www.w3.org/TR/payment-request/#dependencies" + } + }, + "#describing-what-is-being-paid-for": { + "current": { + "number": "2.2", + "spec": "Payment Request API", + "text": "Describing what is being paid for", + "url": "https://w3c.github.io/payment-request/#describing-what-is-being-paid-for" + }, + "snapshot": { + "number": "2.2", + "spec": "Payment Request API", + "text": "Describing what is being paid for", + "url": "https://www.w3.org/TR/payment-request/#describing-what-is-being-paid-for" + } + }, + "#details-attribute": { + "current": { + "number": "14.3", + "spec": "Payment Request API", + "text": "details attribute", + "url": "https://w3c.github.io/payment-request/#details-attribute" + }, + "snapshot": { + "number": "14.3", + "spec": "Payment Request API", + "text": "details attribute", + "url": "https://www.w3.org/TR/payment-request/#details-attribute" + } + }, + "#encryption-of-data-fields": { + "current": { + "number": "19.4", + "spec": "Payment Request API", + "text": "Encryption of data fields", + "url": "https://w3c.github.io/payment-request/#encryption-of-data-fields" + }, + "snapshot": { + "number": "19.4", + "spec": "Payment Request API", + "text": "Encryption of data fields", + "url": "https://www.w3.org/TR/payment-request/#encryption-of-data-fields" + } + }, + "#events": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "17. Events", + "url": "https://w3c.github.io/payment-request/#events" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "17. Events", + "url": "https://www.w3.org/TR/payment-request/#events" + } + }, + "#examples-of-usage": { + "current": { + "number": "2", + "spec": "Payment Request API", + "text": "Examples of usage", + "url": "https://w3c.github.io/payment-request/#examples-of-usage" + }, + "snapshot": { + "number": "2", + "spec": "Payment Request API", + "text": "Examples of usage", + "url": "https://www.w3.org/TR/payment-request/#examples-of-usage" + } + }, + "#exposing-user-information": { + "current": { + "number": "19.7", + "spec": "Payment Request API", + "text": "Exposing user information", + "url": "https://w3c.github.io/payment-request/#exposing-user-information" + }, + "snapshot": { + "number": "19.7", + "spec": "Payment Request API", + "text": "Exposing user information", + "url": "https://www.w3.org/TR/payment-request/#exposing-user-information" + } + }, + "#fine-grained-error-reporting": { + "current": { + "number": "2.8", + "spec": "Payment Request API", + "text": "Fine-grained error reporting", + "url": "https://w3c.github.io/payment-request/#fine-grained-error-reporting" + }, + "snapshot": { + "number": "2.8", + "spec": "Payment Request API", + "text": "Fine-grained error reporting", + "url": "https://www.w3.org/TR/payment-request/#fine-grained-error-reporting" + } + }, + "#goals": { + "current": { + "number": "1.1", + "spec": "Payment Request API", + "text": "Goals and scope", + "url": "https://w3c.github.io/payment-request/#goals" + }, + "snapshot": { + "number": "1.1", + "spec": "Payment Request API", + "text": "Goals and scope", + "url": "https://www.w3.org/TR/payment-request/#goals" + } + }, + "#handling-events-and-updating-the-payment-request": { + "current": { + "number": "2.7", + "spec": "Payment Request API", + "text": "Handling events and updating the payment request", + "url": "https://w3c.github.io/payment-request/#handling-events-and-updating-the-payment-request" + }, + "snapshot": { + "number": "2.7", + "spec": "Payment Request API", + "text": "Handling events and updating the payment request", + "url": "https://www.w3.org/TR/payment-request/#handling-events-and-updating-the-payment-request" + } + }, + "#how-user-agents-match-payment-handlers": { + "current": { + "number": "19.5", + "spec": "Payment Request API", + "text": "How user agents match payment handlers", + "url": "https://w3c.github.io/payment-request/#how-user-agents-match-payment-handlers" + }, + "snapshot": { + "number": "19.5", + "spec": "Payment Request API", + "text": "How user agents match payment handlers", + "url": "https://www.w3.org/TR/payment-request/#how-user-agents-match-payment-handlers" + } + }, + "#id-attribute": { + "current": { + "number": "3.2", + "spec": "Payment Request API", + "text": "id attribute", + "url": "https://w3c.github.io/payment-request/#id-attribute" + }, + "snapshot": { + "number": "3.2", + "spec": "Payment Request API", + "text": "id attribute", + "url": "https://www.w3.org/TR/payment-request/#id-attribute" + } + }, + "#idl-index": { + "current": { + "number": "A", + "spec": "Payment Request API", + "text": "IDL Index", + "url": "https://w3c.github.io/payment-request/#idl-index" + }, + "snapshot": { + "number": "A", + "spec": "Payment Request API", + "text": "IDL Index", + "url": "https://www.w3.org/TR/payment-request/#idl-index" + } + }, + "#informative-references": { + "current": { + "number": "D.2", + "spec": "Payment Request API", + "text": "Informative references", + "url": "https://w3c.github.io/payment-request/#informative-references" + }, + "snapshot": { + "number": "D.2", + "spec": "Payment Request API", + "text": "Informative references", + "url": "https://www.w3.org/TR/payment-request/#informative-references" + } + }, + "#internal-slots": { + "current": { + "number": "3.12", + "spec": "Payment Request API", + "text": "Internal Slots", + "url": "https://w3c.github.io/payment-request/#internal-slots" + }, + "snapshot": { + "number": "3.12", + "spec": "Payment Request API", + "text": "Internal Slots", + "url": "https://www.w3.org/TR/payment-request/#internal-slots" + } + }, + "#internal-slots-0": { + "current": { + "number": "14.12", + "spec": "Payment Request API", + "text": "Internal Slots", + "url": "https://w3c.github.io/payment-request/#internal-slots-0" + }, + "snapshot": { + "number": "14.12", + "spec": "Payment Request API", + "text": "Internal Slots", + "url": "https://www.w3.org/TR/payment-request/#internal-slots-0" + } + }, + "#internal-slots-1": { + "current": { + "number": "17.3.3", + "spec": "Payment Request API", + "text": "Internal Slots", + "url": "https://w3c.github.io/payment-request/#internal-slots-1" + }, + "snapshot": { + "number": "17.3.3", + "spec": "Payment Request API", + "text": "Internal Slots", + "url": "https://www.w3.org/TR/payment-request/#internal-slots-1" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Payment Request API", + "text": "Introduction", + "url": "https://w3c.github.io/payment-request/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "Payment Request API", + "text": "Introduction", + "url": "https://www.w3.org/TR/payment-request/#introduction" + } + }, + "#methoddetails-attribute": { + "current": { + "number": "17.2.1", + "spec": "Payment Request API", + "text": "methodDetails attribute", + "url": "https://w3c.github.io/payment-request/#methoddetails-attribute" + }, + "snapshot": { + "number": "17.2.1", + "spec": "Payment Request API", + "text": "methodDetails attribute", + "url": "https://www.w3.org/TR/payment-request/#methoddetails-attribute" + } + }, + "#methodname-attribute": { + "current": { + "number": "14.2", + "spec": "Payment Request API", + "text": "methodName attribute", + "url": "https://w3c.github.io/payment-request/#methodname-attribute" + }, + "snapshot": { + "number": "14.2", + "spec": "Payment Request API", + "text": "methodName attribute", + "url": "https://www.w3.org/TR/payment-request/#methodname-attribute" + } + }, + "#methodname-attribute-0": { + "current": { + "number": "17.2.2", + "spec": "Payment Request API", + "text": "methodName attribute", + "url": "https://w3c.github.io/payment-request/#methodname-attribute-0" + }, + "snapshot": { + "number": "17.2.2", + "spec": "Payment Request API", + "text": "methodName attribute", + "url": "https://www.w3.org/TR/payment-request/#methodname-attribute-0" + } + }, + "#normative-references": { + "current": { + "number": "D.1", + "spec": "Payment Request API", + "text": "Normative references", + "url": "https://w3c.github.io/payment-request/#normative-references" + }, + "snapshot": { + "number": "D.1", + "spec": "Payment Request API", + "text": "Normative references", + "url": "https://www.w3.org/TR/payment-request/#normative-references" + } + }, + "#onpayerdetailchange-attribute": { + "current": { + "number": "14.11", + "spec": "Payment Request API", + "text": "onpayerdetailchange attribute", + "url": "https://w3c.github.io/payment-request/#onpayerdetailchange-attribute" + }, + "snapshot": { + "number": "14.11", + "spec": "Payment Request API", + "text": "onpayerdetailchange attribute", + "url": "https://www.w3.org/TR/payment-request/#onpayerdetailchange-attribute" + } + }, + "#onpaymentmethodchange-attribute": { + "current": { + "number": "3.11", + "spec": "Payment Request API", + "text": "onpaymentmethodchange attribute", + "url": "https://w3c.github.io/payment-request/#onpaymentmethodchange-attribute" + }, + "snapshot": { + "number": "3.11", + "spec": "Payment Request API", + "text": "onpaymentmethodchange attribute", + "url": "https://www.w3.org/TR/payment-request/#onpaymentmethodchange-attribute" + } + }, + "#onshippingaddresschange-attribute": { + "current": { + "number": "3.8", + "spec": "Payment Request API", + "text": "onshippingaddresschange attribute", + "url": "https://w3c.github.io/payment-request/#onshippingaddresschange-attribute" + }, + "snapshot": { + "number": "3.8", + "spec": "Payment Request API", + "text": "onshippingaddresschange attribute", + "url": "https://www.w3.org/TR/payment-request/#onshippingaddresschange-attribute" + } + }, + "#onshippingoptionchange-attribute": { + "current": { + "number": "3.10", + "spec": "Payment Request API", + "text": "onshippingoptionchange attribute", + "url": "https://w3c.github.io/payment-request/#onshippingoptionchange-attribute" + }, + "snapshot": { + "number": "3.10", + "spec": "Payment Request API", + "text": "onshippingoptionchange attribute", + "url": "https://www.w3.org/TR/payment-request/#onshippingoptionchange-attribute" + } + }, + "#payer-detail-changed-algorithm": { + "current": { + "number": "18.6", + "spec": "Payment Request API", + "text": "Payer detail changed algorithm", + "url": "https://w3c.github.io/payment-request/#payer-detail-changed-algorithm" + }, + "snapshot": { + "number": "18.6", + "spec": "Payment Request API", + "text": "Payer detail changed algorithm", + "url": "https://www.w3.org/TR/payment-request/#payer-detail-changed-algorithm" + } + }, + "#payeremail-attribute": { + "current": { + "number": "14.7", + "spec": "Payment Request API", + "text": "payerEmail attribute", + "url": "https://w3c.github.io/payment-request/#payeremail-attribute" + }, + "snapshot": { + "number": "14.7", + "spec": "Payment Request API", + "text": "payerEmail attribute", + "url": "https://www.w3.org/TR/payment-request/#payeremail-attribute" + } + }, + "#payererrors-dictionary": { + "current": { + "number": "14.1.2", + "spec": "Payment Request API", + "text": "PayerErrors dictionary", + "url": "https://w3c.github.io/payment-request/#payererrors-dictionary" + }, + "snapshot": { + "number": "14.1.2", + "spec": "Payment Request API", + "text": "PayerErrors dictionary", + "url": "https://www.w3.org/TR/payment-request/#payererrors-dictionary" + } + }, + "#payername-attribute": { + "current": { + "number": "14.6", + "spec": "Payment Request API", + "text": "payerName attribute", + "url": "https://w3c.github.io/payment-request/#payername-attribute" + }, + "snapshot": { + "number": "14.6", + "spec": "Payment Request API", + "text": "payerName attribute", + "url": "https://www.w3.org/TR/payment-request/#payername-attribute" + } + }, + "#payerphone-attribute": { + "current": { + "number": "14.8", + "spec": "Payment Request API", + "text": "payerPhone attribute", + "url": "https://w3c.github.io/payment-request/#payerphone-attribute" + }, + "snapshot": { + "number": "14.8", + "spec": "Payment Request API", + "text": "payerPhone attribute", + "url": "https://www.w3.org/TR/payment-request/#payerphone-attribute" + } + }, + "#payment-details-dictionaries": { + "current": { + "number": "6", + "spec": "Payment Request API", + "text": "Payment details dictionaries", + "url": "https://w3c.github.io/payment-request/#payment-details-dictionaries" + }, + "snapshot": { + "number": "6", + "spec": "Payment Request API", + "text": "Payment details dictionaries", + "url": "https://www.w3.org/TR/payment-request/#payment-details-dictionaries" + } + }, + "#payment-method-changed-algorithm": { + "current": { + "number": "18.4", + "spec": "Payment Request API", + "text": "Payment method changed algorithm", + "url": "https://w3c.github.io/payment-request/#payment-method-changed-algorithm" + }, + "snapshot": { + "number": "18.4", + "spec": "Payment Request API", + "text": "Payment method changed algorithm", + "url": "https://www.w3.org/TR/payment-request/#payment-method-changed-algorithm" + } + }, + "#paymentcomplete-enum": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "12. PaymentComplete enum", + "url": "https://w3c.github.io/payment-request/#paymentcomplete-enum" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "12. PaymentComplete enum", + "url": "https://www.w3.org/TR/payment-request/#paymentcomplete-enum" + } + }, + "#paymentcompletedetails-dictionary": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "11. PaymentCompleteDetails dictionary", + "url": "https://w3c.github.io/payment-request/#paymentcompletedetails-dictionary" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "11. PaymentCompleteDetails dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentcompletedetails-dictionary" + } + }, + "#paymentcurrencyamount-dictionary": { + "current": { + "number": "5", + "spec": "Payment Request API", + "text": "PaymentCurrencyAmount dictionary", + "url": "https://w3c.github.io/payment-request/#paymentcurrencyamount-dictionary" + }, + "snapshot": { + "number": "5", + "spec": "Payment Request API", + "text": "PaymentCurrencyAmount dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentcurrencyamount-dictionary" + } + }, + "#paymentdetailsbase-dictionary": { + "current": { + "number": "6.1", + "spec": "Payment Request API", + "text": "PaymentDetailsBase dictionary", + "url": "https://w3c.github.io/payment-request/#paymentdetailsbase-dictionary" + }, + "snapshot": { + "number": "6.1", + "spec": "Payment Request API", + "text": "PaymentDetailsBase dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary" + } + }, + "#paymentdetailsinit-dictionary": { + "current": { + "number": "6.2", + "spec": "Payment Request API", + "text": "PaymentDetailsInit dictionary", + "url": "https://w3c.github.io/payment-request/#paymentdetailsinit-dictionary" + }, + "snapshot": { + "number": "6.2", + "spec": "Payment Request API", + "text": "PaymentDetailsInit dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentdetailsinit-dictionary" + } + }, + "#paymentdetailsmodifier-dictionary": { + "current": { + "number": "7", + "spec": "Payment Request API", + "text": "PaymentDetailsModifier dictionary", + "url": "https://w3c.github.io/payment-request/#paymentdetailsmodifier-dictionary" + }, + "snapshot": { + "number": "7", + "spec": "Payment Request API", + "text": "PaymentDetailsModifier dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary" + } + }, + "#paymentdetailsupdate-dictionary": { + "current": { + "number": "6.3", + "spec": "Payment Request API", + "text": "PaymentDetailsUpdate dictionary", + "url": "https://w3c.github.io/payment-request/#paymentdetailsupdate-dictionary" + }, + "snapshot": { + "number": "6.3", + "spec": "Payment Request API", + "text": "PaymentDetailsUpdate dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary" + } + }, + "#paymentitem-dictionary": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "10. PaymentItem dictionary", + "url": "https://w3c.github.io/payment-request/#paymentitem-dictionary" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "10. PaymentItem dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentitem-dictionary" + } + }, + "#paymentmethodchangeevent-interface": { + "current": { + "number": "17.2", + "spec": "Payment Request API", + "text": "PaymentMethodChangeEvent interface", + "url": "https://w3c.github.io/payment-request/#paymentmethodchangeevent-interface" + }, + "snapshot": { + "number": "17.2", + "spec": "Payment Request API", + "text": "PaymentMethodChangeEvent interface", + "url": "https://www.w3.org/TR/payment-request/#paymentmethodchangeevent-interface" + } + }, + "#paymentmethodchangeeventinit-dictionary": { + "current": { + "number": "17.2.3", + "spec": "Payment Request API", + "text": "PaymentMethodChangeEventInit dictionary", + "url": "https://w3c.github.io/payment-request/#paymentmethodchangeeventinit-dictionary" + }, + "snapshot": { + "number": "17.2.3", + "spec": "Payment Request API", + "text": "PaymentMethodChangeEventInit dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentmethodchangeeventinit-dictionary" + } + }, + "#paymentmethoddata-dictionary": { + "current": { + "number": "4", + "spec": "Payment Request API", + "text": "PaymentMethodData dictionary", + "url": "https://w3c.github.io/payment-request/#paymentmethoddata-dictionary" + }, + "snapshot": { + "number": "4", + "spec": "Payment Request API", + "text": "PaymentMethodData dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentmethoddata-dictionary" + } + }, + "#paymentoptions-dictionary": { + "current": { + "number": "9", + "spec": "Payment Request API", + "text": "PaymentOptions dictionary", + "url": "https://w3c.github.io/payment-request/#paymentoptions-dictionary" + }, + "snapshot": { + "number": "9", + "spec": "Payment Request API", + "text": "PaymentOptions dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary" + } + }, + "#paymentrequest-interface": { + "current": { + "number": "3", + "spec": "Payment Request API", + "text": "PaymentRequest interface", + "url": "https://w3c.github.io/payment-request/#paymentrequest-interface" + }, + "snapshot": { + "number": "3", + "spec": "Payment Request API", + "text": "PaymentRequest interface", + "url": "https://www.w3.org/TR/payment-request/#paymentrequest-interface" + } + }, + "#paymentrequest-updated-algorithm": { + "current": { + "number": "18.5", + "spec": "Payment Request API", + "text": "PaymentRequest updated algorithm", + "url": "https://w3c.github.io/payment-request/#paymentrequest-updated-algorithm" + }, + "snapshot": { + "number": "18.5", + "spec": "Payment Request API", + "text": "PaymentRequest updated algorithm", + "url": "https://www.w3.org/TR/payment-request/#paymentrequest-updated-algorithm" + } + }, + "#paymentrequestupdateevent-interface": { + "current": { + "number": "17.3", + "spec": "Payment Request API", + "text": "PaymentRequestUpdateEvent interface", + "url": "https://w3c.github.io/payment-request/#paymentrequestupdateevent-interface" + }, + "snapshot": { + "number": "17.3", + "spec": "Payment Request API", + "text": "PaymentRequestUpdateEvent interface", + "url": "https://www.w3.org/TR/payment-request/#paymentrequestupdateevent-interface" + } + }, + "#paymentrequestupdateeventinit-dictionary": { + "current": { + "number": "17.3.4", + "spec": "Payment Request API", + "text": "PaymentRequestUpdateEventInit dictionary", + "url": "https://w3c.github.io/payment-request/#paymentrequestupdateeventinit-dictionary" + }, + "snapshot": { + "number": "17.3.4", + "spec": "Payment Request API", + "text": "PaymentRequestUpdateEventInit dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentrequestupdateeventinit-dictionary" + } + }, + "#paymentresponse-interface": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "14. PaymentResponse interface", + "url": "https://w3c.github.io/payment-request/#paymentresponse-interface" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "14. PaymentResponse interface", + "url": "https://www.w3.org/TR/payment-request/#paymentresponse-interface" + } + }, + "#paymentshippingoption-dictionary": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "13. PaymentShippingOption dictionary", + "url": "https://w3c.github.io/payment-request/#paymentshippingoption-dictionary" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "13. PaymentShippingOption dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary" + } + }, + "#paymentshippingtype-enum": { + "current": { + "number": "8", + "spec": "Payment Request API", + "text": "PaymentShippingType enum", + "url": "https://w3c.github.io/payment-request/#paymentshippingtype-enum" + }, + "snapshot": { + "number": "8", + "spec": "Payment Request API", + "text": "PaymentShippingType enum", + "url": "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum" + } + }, + "#paymentvalidationerrors-dictionary": { + "current": { + "number": "14.1.1", + "spec": "Payment Request API", + "text": "PaymentValidationErrors dictionary", + "url": "https://w3c.github.io/payment-request/#paymentvalidationerrors-dictionary" + }, + "snapshot": { + "number": "14.1.1", + "spec": "Payment Request API", + "text": "PaymentValidationErrors dictionary", + "url": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary" + } + }, + "#permissions-policy": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "16. Permissions Policy integration", + "url": "https://w3c.github.io/payment-request/#permissions-policy" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "16. Permissions Policy integration", + "url": "https://www.w3.org/TR/payment-request/#permissions-policy" + } + }, + "#posting-payment-response-back-to-a-server": { + "current": { + "number": "2.9", + "spec": "Payment Request API", + "text": "POSTing payment response back to a server", + "url": "https://w3c.github.io/payment-request/#posting-payment-response-back-to-a-server" + }, + "snapshot": { + "number": "2.9", + "spec": "Payment Request API", + "text": "POSTing payment response back to a server", + "url": "https://www.w3.org/TR/payment-request/#posting-payment-response-back-to-a-server" + } + }, + "#privacy": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "19. Privacy and Security Considerations", + "url": "https://w3c.github.io/payment-request/#privacy" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "19. Privacy and Security Considerations", + "url": "https://www.w3.org/TR/payment-request/#privacy" + } + }, + "#references": { + "current": { + "number": "D", + "spec": "Payment Request API", + "text": "References", + "url": "https://w3c.github.io/payment-request/#references" + }, + "snapshot": { + "number": "D", + "spec": "Payment Request API", + "text": "References", + "url": "https://www.w3.org/TR/payment-request/#references" + } + }, + "#requestid-attribute": { + "current": { + "number": "14.9", + "spec": "Payment Request API", + "text": "requestId attribute", + "url": "https://w3c.github.io/payment-request/#requestid-attribute" + }, + "snapshot": { + "number": "14.9", + "spec": "Payment Request API", + "text": "requestId attribute", + "url": "https://www.w3.org/TR/payment-request/#requestid-attribute" + } + }, + "#requesting-specific-information-from-the-end-user": { + "current": { + "number": "2.5", + "spec": "Payment Request API", + "text": "Requesting specific information from the end user", + "url": "https://w3c.github.io/payment-request/#requesting-specific-information-from-the-end-user" + }, + "snapshot": { + "number": "2.5", + "spec": "Payment Request API", + "text": "Requesting specific information from the end user", + "url": "https://www.w3.org/TR/payment-request/#requesting-specific-information-from-the-end-user" + } + }, + "#retry-method": { + "current": { + "number": "14.1", + "spec": "Payment Request API", + "text": "retry() method", + "url": "https://w3c.github.io/payment-request/#retry-method" + }, + "snapshot": { + "number": "14.1", + "spec": "Payment Request API", + "text": "retry() method", + "url": "https://www.w3.org/TR/payment-request/#retry-method" + } + }, + "#secure-contexts": { + "current": { + "number": "19.2", + "spec": "Payment Request API", + "text": "Secure contexts", + "url": "https://w3c.github.io/payment-request/#secure-contexts" + }, + "snapshot": { + "number": "19.2", + "spec": "Payment Request API", + "text": "Secure contexts", + "url": "https://www.w3.org/TR/payment-request/#secure-contexts" + } + }, + "#shipping-address-changed-algorithm": { + "current": { + "number": "18.2", + "spec": "Payment Request API", + "text": "Shipping address changed algorithm", + "url": "https://w3c.github.io/payment-request/#shipping-address-changed-algorithm" + }, + "snapshot": { + "number": "18.2", + "spec": "Payment Request API", + "text": "Shipping address changed algorithm", + "url": "https://www.w3.org/TR/payment-request/#shipping-address-changed-algorithm" + } + }, + "#shipping-and-billing-addresses": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "15. Shipping and billing addresses", + "url": "https://w3c.github.io/payment-request/#shipping-and-billing-addresses" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "15. Shipping and billing addresses", + "url": "https://www.w3.org/TR/payment-request/#shipping-and-billing-addresses" + } + }, + "#shipping-option-changed-algorithm": { + "current": { + "number": "18.3", + "spec": "Payment Request API", + "text": "Shipping option changed algorithm", + "url": "https://w3c.github.io/payment-request/#shipping-option-changed-algorithm" + }, + "snapshot": { + "number": "18.3", + "spec": "Payment Request API", + "text": "Shipping option changed algorithm", + "url": "https://www.w3.org/TR/payment-request/#shipping-option-changed-algorithm" + } + }, + "#shippingaddress-attribute": { + "current": { + "number": "3.6", + "spec": "Payment Request API", + "text": "shippingAddress attribute", + "url": "https://w3c.github.io/payment-request/#shippingaddress-attribute" + }, + "snapshot": { + "number": "3.6", + "spec": "Payment Request API", + "text": "shippingAddress attribute", + "url": "https://www.w3.org/TR/payment-request/#shippingaddress-attribute" + } + }, + "#shippingaddress-attribute-0": { + "current": { + "number": "14.4", + "spec": "Payment Request API", + "text": "shippingAddress attribute", + "url": "https://w3c.github.io/payment-request/#shippingaddress-attribute-0" + }, + "snapshot": { + "number": "14.4", + "spec": "Payment Request API", + "text": "shippingAddress attribute", + "url": "https://www.w3.org/TR/payment-request/#shippingaddress-attribute-0" + } + }, + "#shippingoption-attribute": { + "current": { + "number": "3.9", + "spec": "Payment Request API", + "text": "shippingOption attribute", + "url": "https://w3c.github.io/payment-request/#shippingoption-attribute" + }, + "snapshot": { + "number": "3.9", + "spec": "Payment Request API", + "text": "shippingOption attribute", + "url": "https://www.w3.org/TR/payment-request/#shippingoption-attribute" + } + }, + "#shippingoption-attribute-0": { + "current": { + "number": "14.5", + "spec": "Payment Request API", + "text": "shippingOption attribute", + "url": "https://w3c.github.io/payment-request/#shippingoption-attribute-0" + }, + "snapshot": { + "number": "14.5", + "spec": "Payment Request API", + "text": "shippingOption attribute", + "url": "https://www.w3.org/TR/payment-request/#shippingoption-attribute-0" + } + }, + "#shippingtype-attribute": { + "current": { + "number": "3.7", + "spec": "Payment Request API", + "text": "shippingType attribute", + "url": "https://w3c.github.io/payment-request/#shippingtype-attribute" + }, + "snapshot": { + "number": "3.7", + "spec": "Payment Request API", + "text": "shippingType attribute", + "url": "https://www.w3.org/TR/payment-request/#shippingtype-attribute" + } + }, + "#show-method": { + "current": { + "number": "3.3", + "spec": "Payment Request API", + "text": "show() method", + "url": "https://w3c.github.io/payment-request/#show-method" + }, + "snapshot": { + "number": "3.3", + "spec": "Payment Request API", + "text": "show() method", + "url": "https://www.w3.org/TR/payment-request/#show-method" + } + }, + "#summary": { + "current": { + "number": "17.1", + "spec": "Payment Request API", + "text": "Summary", + "url": "https://w3c.github.io/payment-request/#summary" + }, + "snapshot": { + "number": "17.1", + "spec": "Payment Request API", + "text": "Summary", + "url": "https://www.w3.org/TR/payment-request/#summary" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "Payment Request API", + "url": "https://w3c.github.io/payment-request/#title" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "Payment Request API", + "url": "https://www.w3.org/TR/payment-request/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Payment Request API", + "text": "Table of Contents", + "url": "https://w3c.github.io/payment-request/#toc" + }, + "snapshot": { + "number": "", + "spec": "Payment Request API", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/payment-request/#toc" + } + }, + "#update-a-paymentrequest-s-details-algorithm": { + "current": { + "number": "18.9", + "spec": "Payment Request API", + "text": "Update a PaymentRequest's details algorithm", + "url": "https://w3c.github.io/payment-request/#update-a-paymentrequest-s-details-algorithm" + }, + "snapshot": { + "number": "18.9", + "spec": "Payment Request API", + "text": "Update a PaymentRequest's details algorithm", + "url": "https://www.w3.org/TR/payment-request/#update-a-paymentrequest-s-details-algorithm" + } + }, + "#updatewith-method": { + "current": { + "number": "17.3.2", + "spec": "Payment Request API", + "text": "updateWith() method", + "url": "https://w3c.github.io/payment-request/#updatewith-method" + }, + "snapshot": { + "number": "17.3.2", + "spec": "Payment Request API", + "text": "updateWith() method", + "url": "https://www.w3.org/TR/payment-request/#updatewith-method" + } + }, + "#user-aborts-the-payment-request-algorithm": { + "current": { + "number": "18.8", + "spec": "Payment Request API", + "text": "User aborts the payment request algorithm", + "url": "https://w3c.github.io/payment-request/#user-aborts-the-payment-request-algorithm" + }, + "snapshot": { + "number": "18.8", + "spec": "Payment Request API", + "text": "User aborts the payment request algorithm", + "url": "https://www.w3.org/TR/payment-request/#user-aborts-the-payment-request-algorithm" + } + }, + "#user-accepts-the-payment-request-algorithm": { + "current": { + "number": "18.7", + "spec": "Payment Request API", + "text": "User accepts the payment request algorithm", + "url": "https://w3c.github.io/payment-request/#user-accepts-the-payment-request-algorithm" + }, + "snapshot": { + "number": "18.7", + "spec": "Payment Request API", + "text": "User accepts the payment request algorithm", + "url": "https://www.w3.org/TR/payment-request/#user-accepts-the-payment-request-algorithm" + } + }, + "#user-protections-with-show-method": { + "current": { + "number": "19.1", + "spec": "Payment Request API", + "text": "User protections with show() method", + "url": "https://w3c.github.io/payment-request/#user-protections-with-show-method" + }, + "snapshot": { + "number": "19.1", + "spec": "Payment Request API", + "text": "User protections with show() method", + "url": "https://www.w3.org/TR/payment-request/#user-protections-with-show-method" + } + }, + "#using-with-cross-origin-iframes": { + "current": { + "number": "2.10", + "spec": "Payment Request API", + "text": "Using with cross-origin iframes", + "url": "https://w3c.github.io/payment-request/#using-with-cross-origin-iframes" + }, + "snapshot": { + "number": "2.10", + "spec": "Payment Request API", + "text": "Using with cross-origin iframes", + "url": "https://www.w3.org/TR/payment-request/#using-with-cross-origin-iframes" + } + }, + "#validity-checkers": { + "current": { + "number": "5.1", + "spec": "Payment Request API", + "text": "Validity checkers", + "url": "https://w3c.github.io/payment-request/#validity-checkers" + }, + "snapshot": { + "number": "5.1", + "spec": "Payment Request API", + "text": "Validity checkers", + "url": "https://www.w3.org/TR/payment-request/#validity-checkers" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-performance-timeline.json b/bikeshed/spec-data/readonly/headings/headings-performance-timeline.json index 3cf271e1d6..3faf79141a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-performance-timeline.json +++ b/bikeshed/spec-data/readonly/headings/headings-performance-timeline.json @@ -43,13 +43,13 @@ }, "#determine-if-a-performance-entry-buffer-is-full": { "current": { - "number": "6.5", + "number": "6.6", "spec": "Performance Timeline", "text": "Determine if a performance entry buffer is full", "url": "https://w3c.github.io/performance-timeline/#determine-if-a-performance-entry-buffer-is-full" }, "snapshot": { - "number": "6.5", + "number": "6.6", "spec": "Performance Timeline", "text": "Determine if a performance entry buffer is full", "url": "https://www.w3.org/TR/performance-timeline/#determine-if-a-performance-entry-buffer-is-full" @@ -85,13 +85,13 @@ }, "#filter-buffer-by-name-and-type": { "current": { - "number": "6.4", + "number": "6.5", "spec": "Performance Timeline", "text": "Filter buffer by name and type", "url": "https://w3c.github.io/performance-timeline/#filter-buffer-by-name-and-type" }, "snapshot": { - "number": "6.4", + "number": "6.5", "spec": "Performance Timeline", "text": "Filter buffer by name and type", "url": "https://www.w3.org/TR/performance-timeline/#filter-buffer-by-name-and-type" @@ -99,18 +99,32 @@ }, "#filter-buffer-map-by-name-and-type": { "current": { - "number": "6.3", + "number": "6.4", "spec": "Performance Timeline", "text": "Filter buffer map by name and type", "url": "https://w3c.github.io/performance-timeline/#filter-buffer-map-by-name-and-type" }, "snapshot": { - "number": "6.3", + "number": "6.4", "spec": "Performance Timeline", "text": "Filter buffer map by name and type", "url": "https://www.w3.org/TR/performance-timeline/#filter-buffer-map-by-name-and-type" } }, + "#generate-a-performance-entry-id": { + "current": { + "number": "6.7", + "spec": "Performance Timeline", + "text": "Generate a Performance Entry id", + "url": "https://w3c.github.io/performance-timeline/#generate-a-performance-entry-id" + }, + "snapshot": { + "number": "6.7", + "spec": "Performance Timeline", + "text": "Generate a Performance Entry id", + "url": "https://www.w3.org/TR/performance-timeline/#generate-a-performance-entry-id" + } + }, "#getentries-method": { "current": { "number": "3.1.1", @@ -349,6 +363,20 @@ "url": "https://www.w3.org/TR/performance-timeline/#processing" } }, + "#queue-a-navigation-performanceentry": { + "current": { + "number": "6.2", + "spec": "Performance Timeline", + "text": "Queue a navigation PerformanceEntry", + "url": "https://w3c.github.io/performance-timeline/#queue-a-navigation-performanceentry" + }, + "snapshot": { + "number": "6.2", + "spec": "Performance Timeline", + "text": "Queue a navigation PerformanceEntry", + "url": "https://www.w3.org/TR/performance-timeline/#queue-a-navigation-performanceentry" + } + }, "#queue-a-performanceentry": { "current": { "number": "6.1", @@ -365,13 +393,13 @@ }, "#queue-the-performanceobserver-task": { "current": { - "number": "6.2", + "number": "6.3", "spec": "Performance Timeline", "text": "Queue the PerformanceObserver task", "url": "https://w3c.github.io/performance-timeline/#queue-the-performanceobserver-task" }, "snapshot": { - "number": "6.2", + "number": "6.3", "spec": "Performance Timeline", "text": "Queue the PerformanceObserver task", "url": "https://www.w3.org/TR/performance-timeline/#queue-the-performanceobserver-task" diff --git a/bikeshed/spec-data/readonly/headings/headings-permissions-policy-1.json b/bikeshed/spec-data/readonly/headings/headings-permissions-policy-1.json index 394765c476..864a7b489f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-permissions-policy-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-permissions-policy-1.json @@ -13,17 +13,31 @@ "url": "https://www.w3.org/TR/permissions-policy-1/#abstract" } }, + "#algo-check-permissions-policy": { + "current": { + "number": "9.9", + "spec": "Permissions Policy", + "text": "Check permissions policy", + "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-check-permissions-policy" + }, + "snapshot": { + "number": "9.9", + "spec": "Permissions Policy", + "text": "Check permissions policy", + "url": "https://www.w3.org/TR/permissions-policy-1/#algo-check-permissions-policy" + } + }, "#algo-construct-policy": { "current": { "number": "9.2", "spec": "Permissions Policy", - "text": "Construct policy from dictionary and origin Info about the 'Construct policy from dictionary and origin' definition.#construct-policyReferenced in: 9.1. Process response policy", + "text": "Construct policy from dictionary and origin", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-construct-policy" }, "snapshot": { "number": "9.2", "spec": "Permissions Policy", - "text": "Construct policy from dictionary and origin Info about the 'Construct policy from dictionary and origin' definition.#construct-policyReferenced in: 9.1. Process response policy", + "text": "Construct policy from dictionary and origin", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-construct-policy" } }, @@ -31,13 +45,13 @@ "current": { "number": "9.5", "spec": "Permissions Policy", - "text": "Create a Permissions Policy for a navigable Info about the 'Create a Permissions Policy for a navigable' definition.#create-for-navigableReferenced in: 9.6. Create a Permissions Policy for a navigable from response", + "text": "Create a Permissions Policy for a navigable", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-create-for-navigable" }, "snapshot": { "number": "9.5", "spec": "Permissions Policy", - "text": "Create a Permissions Policy for a navigable Info about the 'Create a Permissions Policy for a navigable' definition.#create-for-navigableReferenced in: 9.6. Create a Permissions Policy for a navigable from response", + "text": "Create a Permissions Policy for a navigable", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-create-for-navigable" } }, @@ -59,27 +73,55 @@ "current": { "number": "9.7", "spec": "Permissions Policy", - "text": "Define an inherited policy for feature in container at origin Info about the 'Define an inherited policy for feature in container at origin' definition.#define-inherited-policy-in-containerReferenced in: 7.2. The permissionsPolicy object 9.5. Create a Permissions Policy for a navigable", + "text": "Define an inherited policy for feature in container at origin", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-define-inherited-policy-in-container" }, "snapshot": { "number": "9.7", "spec": "Permissions Policy", - "text": "Define an inherited policy for feature in container at origin Info about the 'Define an inherited policy for feature in container at origin' definition.#define-inherited-policy-in-containerReferenced in: 7.2. The permissionsPolicy object 9.5. Create a Permissions Policy for a navigable", + "text": "Define an inherited policy for feature in container at origin", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-define-inherited-policy-in-container" } }, - "#algo-is-feature-enabled": { + "#algo-get-feature-value-for-origin": { "current": { "number": "9.8", "spec": "Permissions Policy", - "text": "Is feature enabled in document for origin? Info about the 'Is feature enabled in document for origin?' definition.#is-feature-enabledReferenced in: 9.7. Define an inherited policy for feature in container at origin (2) 9.10. Should request be allowed to use feature?", - "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-is-feature-enabled" + "text": "Get feature value for origin", + "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-get-feature-value-for-origin" }, "snapshot": { "number": "9.8", "spec": "Permissions Policy", - "text": "Is feature enabled in document for origin? Info about the 'Is feature enabled in document for origin?' definition.#is-feature-enabledReferenced in: 9.7. Define an inherited policy for feature in container at origin (2) 9.10. Should request be allowed to use feature?", + "text": "Get feature value for origin", + "url": "https://www.w3.org/TR/permissions-policy-1/#algo-get-feature-value-for-origin" + } + }, + "#algo-get-reporting-endpoint": { + "current": { + "number": "9.11", + "spec": "Permissions Policy", + "text": "Get the reporting endpoint for a feature", + "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-get-reporting-endpoint" + }, + "snapshot": { + "number": "9.11", + "spec": "Permissions Policy", + "text": "Get the reporting endpoint for a feature", + "url": "https://www.w3.org/TR/permissions-policy-1/#algo-get-reporting-endpoint" + } + }, + "#algo-is-feature-enabled": { + "current": { + "number": "9.10", + "spec": "Permissions Policy", + "text": "Is feature enabled in document for origin?", + "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-is-feature-enabled" + }, + "snapshot": { + "number": "9.10", + "spec": "Permissions Policy", + "text": "Is feature enabled in document for origin?", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-is-feature-enabled" } }, @@ -87,13 +129,13 @@ "current": { "number": "9.3", "spec": "Permissions Policy", - "text": "Parse policy directive Info about the 'Parse policy directive' definition.#parse-policy-directiveReferenced in: 9.4. Process permissions policy attributes", + "text": "Parse policy directive", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-parse-policy-directive" }, "snapshot": { "number": "9.3", "spec": "Permissions Policy", - "text": "Parse policy directive Info about the 'Parse policy directive' definition.#parse-policy-directiveReferenced in: 9.4. Process permissions policy attributes", + "text": "Parse policy directive", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-parse-policy-directive" } }, @@ -101,13 +143,13 @@ "current": { "number": "9.4", "spec": "Permissions Policy", - "text": "Process permissions policy attributes Info about the 'Process permissions policy attributes' definition.#process-policy-attributesReferenced in: 9.7. Define an inherited policy for feature in container at origin", + "text": "Process permissions policy attributes", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-process-policy-attributes" }, "snapshot": { "number": "9.4", "spec": "Permissions Policy", - "text": "Process permissions policy attributes Info about the 'Process permissions policy attributes' definition.#process-policy-attributesReferenced in: 9.7. Define an inherited policy for feature in container at origin", + "text": "Process permissions policy attributes", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-process-policy-attributes" } }, @@ -115,25 +157,25 @@ "current": { "number": "9.1", "spec": "Permissions Policy", - "text": "Process response policy Info about the 'Process response policy' definition.#process-response-policyReferenced in: 9.6. Create a Permissions Policy for a navigable from response", + "text": "Process response policy", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-process-response-policy" }, "snapshot": { "number": "9.1", "spec": "Permissions Policy", - "text": "Process response policy Info about the 'Process response policy' definition.#process-response-policyReferenced in: 9.6. Create a Permissions Policy for a navigable from response", + "text": "Process response policy", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-process-response-policy" } }, "#algo-report-permissions-policy-violation": { "current": { - "number": "9.9", + "number": "9.12", "spec": "Permissions Policy", "text": "Generate report for violation of permissions policy on settings", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-report-permissions-policy-violation" }, "snapshot": { - "number": "9.9", + "number": "9.12", "spec": "Permissions Policy", "text": "Generate report for violation of permissions policy on settings", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-report-permissions-policy-violation" @@ -141,13 +183,13 @@ }, "#algo-should-request-be-allowed-to-use-feature": { "current": { - "number": "9.10", + "number": "9.13", "spec": "Permissions Policy", "text": "Should request be allowed to use feature?", "url": "https://w3c.github.io/webappsec-permissions-policy/#algo-should-request-be-allowed-to-use-feature" }, "snapshot": { - "number": "9.10", + "number": "9.13", "spec": "Permissions Policy", "text": "Should request be allowed to use feature?", "url": "https://www.w3.org/TR/permissions-policy-1/#algo-should-request-be-allowed-to-use-feature" @@ -169,13 +211,13 @@ }, "#allowlists": { "current": { - "number": "4.8", + "number": "4.7", "spec": "Permissions Policy", "text": "Allowlists", "url": "https://w3c.github.io/webappsec-permissions-policy/#allowlists" }, "snapshot": { - "number": "4.8", + "number": "4.7", "spec": "Permissions Policy", "text": "Allowlists", "url": "https://www.w3.org/TR/permissions-policy-1/#allowlists" @@ -199,67 +241,81 @@ "current": { "number": "", "spec": "Permissions Policy", - "text": "12. Change log", + "text": "13. Change log", "url": "https://w3c.github.io/webappsec-permissions-policy/#change-log" }, "snapshot": { "number": "", "spec": "Permissions Policy", - "text": "12. Change log", + "text": "13. Change log", "url": "https://www.w3.org/TR/permissions-policy-1/#change-log" } }, "#changes-since-fpwd": { "current": { - "number": "12.1", + "number": "13.1", "spec": "Permissions Policy", "text": "Changes since FPWD", "url": "https://w3c.github.io/webappsec-permissions-policy/#changes-since-fpwd" }, "snapshot": { - "number": "12.1", + "number": "13.1", "spec": "Permissions Policy", "text": "Changes since FPWD", "url": "https://www.w3.org/TR/permissions-policy-1/#changes-since-fpwd" } }, - "#container-policies": { + "#changes-to-html": { "current": { - "number": "4.6", + "number": "10.1", "spec": "Permissions Policy", - "text": "Container policies", - "url": "https://w3c.github.io/webappsec-permissions-policy/#container-policies" + "text": "Changes to the HTML specification", + "url": "https://w3c.github.io/webappsec-permissions-policy/#changes-to-html" }, "snapshot": { - "number": "4.6", + "number": "10.1", "spec": "Permissions Policy", - "text": "Container policies", - "url": "https://www.w3.org/TR/permissions-policy-1/#container-policies" + "text": "Changes to the HTML specification", + "url": "https://www.w3.org/TR/permissions-policy-1/#changes-to-html" } }, - "#declared-policies": { + "#changes-to-other-specifications": { "current": { - "number": "4.4", + "number": "", "spec": "Permissions Policy", - "text": "Declared policies", - "url": "https://w3c.github.io/webappsec-permissions-policy/#declared-policies" + "text": "10. Changes to other specifications", + "url": "https://w3c.github.io/webappsec-permissions-policy/#changes-to-other-specifications" }, "snapshot": { - "number": "4.4", + "number": "", "spec": "Permissions Policy", - "text": "Declared policies", - "url": "https://www.w3.org/TR/permissions-policy-1/#declared-policies" + "text": "10. Changes to other specifications", + "url": "https://www.w3.org/TR/permissions-policy-1/#changes-to-other-specifications" + } + }, + "#container-policies": { + "current": { + "number": "4.5", + "spec": "Permissions Policy", + "text": "Container policies", + "url": "https://w3c.github.io/webappsec-permissions-policy/#container-policies" + }, + "snapshot": { + "number": "4.5", + "spec": "Permissions Policy", + "text": "Container policies", + "url": "https://www.w3.org/TR/permissions-policy-1/#container-policies" } }, "#default-allowlists": { "current": { - "number": "4.9", + "number": "4.8", "spec": "Permissions Policy", "text": "Default Allowlists", "url": "https://w3c.github.io/webappsec-permissions-policy/#default-allowlists" }, "snapshot": { - "number": "4.9", + "number": "4.8", "spec": "Permissions Policy", "text": "Default Allowlists", "url": "https://www.w3.org/TR/permissions-policy-1/#default-allowlists" @@ -335,29 +391,29 @@ "url": "https://www.w3.org/TR/permissions-policy-1/#frame-policies" } }, - "#framwork": { + "#framework": { "current": { "number": "4", "spec": "Permissions Policy", "text": "Framework", - "url": "https://w3c.github.io/webappsec-permissions-policy/#framwork" + "url": "https://w3c.github.io/webappsec-permissions-policy/#framework" }, "snapshot": { "number": "4", "spec": "Permissions Policy", "text": "Framework", - "url": "https://www.w3.org/TR/permissions-policy-1/#framwork" + "url": "https://www.w3.org/TR/permissions-policy-1/#framework" } }, "#header-policies": { "current": { - "number": "4.5", + "number": "4.4", "spec": "Permissions Policy", "text": "Header policies", "url": "https://w3c.github.io/webappsec-permissions-policy/#header-policies" }, "snapshot": { - "number": "4.5", + "number": "4.4", "spec": "Permissions Policy", "text": "Header policies", "url": "https://www.w3.org/TR/permissions-policy-1/#header-policies" @@ -367,13 +423,13 @@ "current": { "number": "", "spec": "Permissions Policy", - "text": "10. IANA Considerations", + "text": "11. IANA Considerations", "url": "https://w3c.github.io/webappsec-permissions-policy/#iana-considerations" }, "snapshot": { "number": "", "spec": "Permissions Policy", - "text": "10. IANA Considerations", + "text": "11. IANA Considerations", "url": "https://www.w3.org/TR/permissions-policy-1/#iana-considerations" } }, @@ -591,16 +647,30 @@ "current": { "number": "6.1", "spec": "Permissions Policy", - "text": "Permissions-Policy HTTP Header Field", + "text": "`Permissions-Policy` HTTP Header Field", "url": "https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-http-header-field" }, "snapshot": { "number": "6.1", "spec": "Permissions Policy", - "text": "Permissions-Policy HTTP Header Field", + "text": "`Permissions-Policy` HTTP Header Field", "url": "https://www.w3.org/TR/permissions-policy-1/#permissions-policy-http-header-field" } }, + "#permissions-policy-report-only-http-header-field": { + "current": { + "number": "8.1", + "spec": "Permissions Policy", + "text": "`Permissions-Policy-Report-Only` HTTP Header Field", + "url": "https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-report-only-http-header-field" + }, + "snapshot": { + "number": "8.1", + "spec": "Permissions Policy", + "text": "`Permissions-Policy-Report-Only` HTTP Header Field", + "url": "https://www.w3.org/TR/permissions-policy-1/#permissions-policy-report-only-http-header-field" + } + }, "#policies": { "current": { "number": "4.2", @@ -617,13 +687,13 @@ }, "#policy-directives": { "current": { - "number": "4.7", + "number": "4.6", "spec": "Permissions Policy", "text": "Policy directives", "url": "https://w3c.github.io/webappsec-permissions-policy/#policy-directives" }, "snapshot": { - "number": "4.7", + "number": "4.6", "spec": "Permissions Policy", "text": "Policy directives", "url": "https://www.w3.org/TR/permissions-policy-1/#policy-directives" @@ -633,25 +703,25 @@ "current": { "number": "", "spec": "Permissions Policy", - "text": "11. Privacy and Security", + "text": "12. Privacy and Security", "url": "https://w3c.github.io/webappsec-permissions-policy/#privacy" }, "snapshot": { "number": "", "spec": "Permissions Policy", - "text": "11. Privacy and Security", + "text": "12. Privacy and Security", "url": "https://www.w3.org/TR/permissions-policy-1/#privacy" } }, "#privacy-alter-behavior": { "current": { - "number": "11.2", + "number": "12.2", "spec": "Permissions Policy", "text": "Unanticipated behavior changes", "url": "https://w3c.github.io/webappsec-permissions-policy/#privacy-alter-behavior" }, "snapshot": { - "number": "11.2", + "number": "12.2", "spec": "Permissions Policy", "text": "Unanticipated behavior changes", "url": "https://www.w3.org/TR/permissions-policy-1/#privacy-alter-behavior" @@ -659,13 +729,13 @@ }, "#privacy-expose-behavior": { "current": { - "number": "11.1", + "number": "12.1", "spec": "Permissions Policy", "text": "Exposure of cross-origin behavior", "url": "https://w3c.github.io/webappsec-permissions-policy/#privacy-expose-behavior" }, "snapshot": { - "number": "11.1", + "number": "12.1", "spec": "Permissions Policy", "text": "Exposure of cross-origin behavior", "url": "https://www.w3.org/TR/permissions-policy-1/#privacy-expose-behavior" @@ -673,13 +743,13 @@ }, "#privacy-expose-policy": { "current": { - "number": "11.3", + "number": "12.3", "spec": "Permissions Policy", "text": "Exposure of embedding policy", "url": "https://w3c.github.io/webappsec-permissions-policy/#privacy-expose-policy" }, "snapshot": { - "number": "11.3", + "number": "12.3", "spec": "Permissions Policy", "text": "Exposure of embedding policy", "url": "https://www.w3.org/TR/permissions-policy-1/#privacy-expose-policy" diff --git a/bikeshed/spec-data/readonly/headings/headings-permissions-registry.json b/bikeshed/spec-data/readonly/headings/headings-permissions-registry.json new file mode 100644 index 0000000000..85f63ccc62 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-permissions-registry.json @@ -0,0 +1,66 @@ +{ + "#change-process": { + "current": { + "number": "2", + "spec": "Permissions Registry", + "text": "Change Process", + "url": "https://w3c.github.io/permissions-registry/#change-process" + } + }, + "#informative-references": { + "current": { + "number": "A.1", + "spec": "Permissions Registry", + "text": "Informative references", + "url": "https://w3c.github.io/permissions-registry/#informative-references" + } + }, + "#purpose": { + "current": { + "number": "1", + "spec": "Permissions Registry", + "text": "Purpose", + "url": "https://w3c.github.io/permissions-registry/#purpose" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Permissions Registry", + "text": "References", + "url": "https://w3c.github.io/permissions-registry/#references" + } + }, + "#registry-table-of-provisional-permissions": { + "current": { + "number": "4", + "spec": "Permissions Registry", + "text": "Registry table of provisional permissions", + "url": "https://w3c.github.io/permissions-registry/#registry-table-of-provisional-permissions" + } + }, + "#registry-table-of-standardized-permissions": { + "current": { + "number": "3", + "spec": "Permissions Registry", + "text": "Registry table of standardized permissions", + "url": "https://w3c.github.io/permissions-registry/#registry-table-of-standardized-permissions" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Permissions Registry", + "text": "Permissions Registry", + "url": "https://w3c.github.io/permissions-registry/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Permissions Registry", + "text": "Table of Contents", + "url": "https://w3c.github.io/permissions-registry/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-permissions.json b/bikeshed/spec-data/readonly/headings/headings-permissions.json index 6030395074..d2b15e56c1 100644 --- a/bikeshed/spec-data/readonly/headings/headings-permissions.json +++ b/bikeshed/spec-data/readonly/headings/headings-permissions.json @@ -1,13 +1,13 @@ { "#acknowledgments": { "current": { - "number": "F", + "number": "G", "spec": "Permissions", "text": "Acknowledgments", "url": "https://w3c.github.io/permissions/#acknowledgments" }, "snapshot": { - "number": "F", + "number": "G", "spec": "Permissions", "text": "Acknowledgments", "url": "https://www.w3.org/TR/permissions/#acknowledgments" @@ -55,6 +55,62 @@ "url": "https://www.w3.org/TR/permissions/#automated-testing" } }, + "#automated-testing-with-webdriver": { + "current": { + "number": "B.1", + "spec": "Permissions", + "text": "Automated testing with [WebDriver]", + "url": "https://w3c.github.io/permissions/#automated-testing-with-webdriver" + }, + "snapshot": { + "number": "B.1", + "spec": "Permissions", + "text": "Automated testing with [WebDriver]", + "url": "https://www.w3.org/TR/permissions/#automated-testing-with-webdriver" + } + }, + "#automated-testing-with-webdriver-bidi": { + "current": { + "number": "B.2", + "spec": "Permissions", + "text": "Automated testing with [WebDriver-BiDi]", + "url": "https://w3c.github.io/permissions/#automated-testing-with-webdriver-bidi" + }, + "snapshot": { + "number": "B.2", + "spec": "Permissions", + "text": "Automated testing with [WebDriver-BiDi]", + "url": "https://www.w3.org/TR/permissions/#automated-testing-with-webdriver-bidi" + } + }, + "#change-process": { + "current": { + "number": "C.2", + "spec": "Permissions", + "text": "Change Process", + "url": "https://w3c.github.io/permissions/#change-process" + }, + "snapshot": { + "number": "C.2", + "spec": "Permissions", + "text": "Change Process", + "url": "https://www.w3.org/TR/permissions/#change-process" + } + }, + "#commands": { + "current": { + "number": "B.2.1.3", + "spec": "Permissions", + "text": "Commands", + "url": "https://w3c.github.io/permissions/#commands" + }, + "snapshot": { + "number": "B.2.1.3", + "spec": "Permissions", + "text": "Commands", + "url": "https://www.w3.org/TR/permissions/#commands" + } + }, "#conformance": { "current": { "number": "7", @@ -83,6 +139,20 @@ "url": "https://www.w3.org/TR/permissions/#creating-instances" } }, + "#definition": { + "current": { + "number": "B.2.1.1", + "spec": "Permissions", + "text": "Definition", + "url": "https://w3c.github.io/permissions/#definition" + }, + "snapshot": { + "number": "B.2.1.1", + "spec": "Permissions", + "text": "Definition", + "url": "https://www.w3.org/TR/permissions/#definition" + } + }, "#examples-of-usage": { "current": { "number": "2", @@ -127,13 +197,13 @@ }, "#idl-index": { "current": { - "number": "E", + "number": "F", "spec": "Permissions", "text": "IDL Index", "url": "https://w3c.github.io/permissions/#idl-index" }, "snapshot": { - "number": "E", + "number": "F", "spec": "Permissions", "text": "IDL Index", "url": "https://www.w3.org/TR/permissions/#idl-index" @@ -141,13 +211,13 @@ }, "#informative-references": { "current": { - "number": "G.2", + "number": "H.2", "spec": "Permissions", "text": "Informative references", "url": "https://w3c.github.io/permissions/#informative-references" }, "snapshot": { - "number": "G.2", + "number": "H.2", "spec": "Permissions", "text": "Informative references", "url": "https://www.w3.org/TR/permissions/#informative-references" @@ -197,13 +267,13 @@ }, "#normative-references": { "current": { - "number": "G.1", + "number": "H.1", "spec": "Permissions", "text": "Normative references", "url": "https://w3c.github.io/permissions/#normative-references" }, "snapshot": { - "number": "G.1", + "number": "H.1", "spec": "Permissions", "text": "Normative references", "url": "https://www.w3.org/TR/permissions/#normative-references" @@ -279,6 +349,20 @@ "url": "https://www.w3.org/TR/permissions/#permissions-interface-0" } }, + "#permissions-registry": { + "current": { + "number": "C", + "spec": "Permissions", + "text": "Permissions Registry", + "url": "https://w3c.github.io/permissions/#permissions-registry" + }, + "snapshot": { + "number": "C", + "spec": "Permissions", + "text": "Permissions Registry", + "url": "https://www.w3.org/TR/permissions/#permissions-registry" + } + }, "#permissions-task-source": { "current": { "number": "3.4", @@ -323,13 +407,13 @@ }, "#privacy-considerations-0": { "current": { - "number": "C", + "number": "D", "spec": "Permissions", "text": "Privacy considerations", "url": "https://w3c.github.io/permissions/#privacy-considerations-0" }, "snapshot": { - "number": "C", + "number": "D", "spec": "Permissions", "text": "Privacy considerations", "url": "https://www.w3.org/TR/permissions/#privacy-considerations-0" @@ -349,6 +433,20 @@ "url": "https://www.w3.org/TR/permissions/#prompt-the-user-to-choose" } }, + "#purpose": { + "current": { + "number": "C.1", + "spec": "Permissions", + "text": "Purpose", + "url": "https://w3c.github.io/permissions/#purpose" + }, + "snapshot": { + "number": "C.1", + "spec": "Permissions", + "text": "Purpose", + "url": "https://www.w3.org/TR/permissions/#purpose" + } + }, "#query-method-0": { "current": { "number": "6.2.1", @@ -393,18 +491,46 @@ }, "#references": { "current": { - "number": "G", + "number": "H", "spec": "Permissions", "text": "References", "url": "https://w3c.github.io/permissions/#references" }, "snapshot": { - "number": "G", + "number": "H", "spec": "Permissions", "text": "References", "url": "https://www.w3.org/TR/permissions/#references" } }, + "#registry-table-of-provisional-permissions": { + "current": { + "number": "C.4", + "spec": "Permissions", + "text": "Registry table of provisional permissions", + "url": "https://w3c.github.io/permissions/#registry-table-of-provisional-permissions" + }, + "snapshot": { + "number": "C.4", + "spec": "Permissions", + "text": "Registry table of provisional permissions", + "url": "https://www.w3.org/TR/permissions/#registry-table-of-provisional-permissions" + } + }, + "#registry-table-of-standardized-permissions": { + "current": { + "number": "C.3", + "spec": "Permissions", + "text": "Registry table of standardized permissions", + "url": "https://w3c.github.io/permissions/#registry-table-of-standardized-permissions" + }, + "snapshot": { + "number": "C.3", + "spec": "Permissions", + "text": "Registry table of standardized permissions", + "url": "https://www.w3.org/TR/permissions/#registry-table-of-standardized-permissions" + } + }, "#relationship-to-the-permissions-policy-specification": { "current": { "number": "A", @@ -435,13 +561,13 @@ }, "#security-considerations": { "current": { - "number": "D", + "number": "E", "spec": "Permissions", "text": "Security considerations", "url": "https://w3c.github.io/permissions/#security-considerations" }, "snapshot": { - "number": "D", + "number": "E", "spec": "Permissions", "text": "Security considerations", "url": "https://www.w3.org/TR/permissions/#security-considerations" @@ -449,13 +575,13 @@ }, "#set-permission": { "current": { - "number": "B.1", + "number": "B.1.1", "spec": "Permissions", "text": "Set Permission", "url": "https://w3c.github.io/permissions/#set-permission" }, "snapshot": { - "number": "B.1", + "number": "B.1.1", "spec": "Permissions", "text": "Set Permission", "url": "https://www.w3.org/TR/permissions/#set-permission" @@ -503,6 +629,62 @@ "url": "https://www.w3.org/TR/permissions/#subtitle" } }, + "#the-permissions-module": { + "current": { + "number": "B.2.1", + "spec": "Permissions", + "text": "The permissions Module", + "url": "https://w3c.github.io/permissions/#the-permissions-module" + }, + "snapshot": { + "number": "B.2.1", + "spec": "Permissions", + "text": "The permissions Module", + "url": "https://www.w3.org/TR/permissions/#the-permissions-module" + } + }, + "#the-permissions-permissiondescriptor-type": { + "current": { + "number": "B.2.1.2.1", + "spec": "Permissions", + "text": "The permissions.PermissionDescriptor Type", + "url": "https://w3c.github.io/permissions/#the-permissions-permissiondescriptor-type" + }, + "snapshot": { + "number": "B.2.1.2.1", + "spec": "Permissions", + "text": "The permissions.PermissionDescriptor Type", + "url": "https://www.w3.org/TR/permissions/#the-permissions-permissiondescriptor-type" + } + }, + "#the-permissions-permissionstate-type": { + "current": { + "number": "B.2.1.2.2", + "spec": "Permissions", + "text": "The permissions.PermissionState Type", + "url": "https://w3c.github.io/permissions/#the-permissions-permissionstate-type" + }, + "snapshot": { + "number": "B.2.1.2.2", + "spec": "Permissions", + "text": "The permissions.PermissionState Type", + "url": "https://www.w3.org/TR/permissions/#the-permissions-permissionstate-type" + } + }, + "#the-permissions-setpermission-command": { + "current": { + "number": "B.2.1.3.1", + "spec": "Permissions", + "text": "The permissions.setPermission Command", + "url": "https://w3c.github.io/permissions/#the-permissions-setpermission-command" + }, + "snapshot": { + "number": "B.2.1.3.1", + "spec": "Permissions", + "text": "The permissions.setPermission Command", + "url": "https://www.w3.org/TR/permissions/#the-permissions-setpermission-command" + } + }, "#title": { "current": { "number": "", @@ -530,5 +712,19 @@ "text": "Table of Contents", "url": "https://www.w3.org/TR/permissions/#toc" } + }, + "#types": { + "current": { + "number": "B.2.1.2", + "spec": "Permissions", + "text": "Types", + "url": "https://w3c.github.io/permissions/#types" + }, + "snapshot": { + "number": "B.2.1.2", + "spec": "Permissions", + "text": "Types", + "url": "https://www.w3.org/TR/permissions/#types" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-png-3.json b/bikeshed/spec-data/readonly/headings/headings-png-3.json new file mode 100644 index 0000000000..52d0ba0421 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-png-3.json @@ -0,0 +1,2508 @@ +{ + "#10Compression": { + "current": { + "number": "", + "spec": "PNG", + "text": "10. Compression", + "url": "https://w3c.github.io/png/#10Compression" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "10. Compression", + "url": "https://www.w3.org/TR/png-3/#10Compression" + } + }, + "#10CompressionCM0": { + "current": { + "number": "10.1", + "spec": "PNG", + "text": "Compression method 0", + "url": "https://w3c.github.io/png/#10CompressionCM0" + }, + "snapshot": { + "number": "10.1", + "spec": "PNG", + "text": "Compression method 0", + "url": "https://www.w3.org/TR/png-3/#10CompressionCM0" + } + }, + "#10CompressionFSL": { + "current": { + "number": "10.2", + "spec": "PNG", + "text": "Compression of the sequence of filtered scanlines", + "url": "https://w3c.github.io/png/#10CompressionFSL" + }, + "snapshot": { + "number": "10.2", + "spec": "PNG", + "text": "Compression of the sequence of filtered scanlines", + "url": "https://www.w3.org/TR/png-3/#10CompressionFSL" + } + }, + "#10CompressionOtherUses": { + "current": { + "number": "10.3", + "spec": "PNG", + "text": "Other uses of compression", + "url": "https://w3c.github.io/png/#10CompressionOtherUses" + }, + "snapshot": { + "number": "10.3", + "spec": "PNG", + "text": "Other uses of compression", + "url": "https://www.w3.org/TR/png-3/#10CompressionOtherUses" + } + }, + "#11AcGen": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#11AcGen" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#11AcGen" + } + }, + "#11Ancillary-chunks": { + "current": { + "number": "11.3", + "spec": "PNG", + "text": "Ancillary chunks", + "url": "https://w3c.github.io/png/#11Ancillary-chunks" + }, + "snapshot": { + "number": "11.3", + "spec": "PNG", + "text": "Ancillary chunks", + "url": "https://www.w3.org/TR/png-3/#11Ancillary-chunks" + } + }, + "#11CcGen": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#11CcGen" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#11CcGen" + } + }, + "#11Chunks": { + "current": { + "number": "", + "spec": "PNG", + "text": "11. Chunk specifications", + "url": "https://w3c.github.io/png/#11Chunks" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "11. Chunk specifications", + "url": "https://www.w3.org/TR/png-3/#11Chunks" + } + }, + "#11Critical-chunks": { + "current": { + "number": "11.2", + "spec": "PNG", + "text": "Critical chunks", + "url": "https://w3c.github.io/png/#11Critical-chunks" + }, + "snapshot": { + "number": "11.2", + "spec": "PNG", + "text": "Critical chunks", + "url": "https://www.w3.org/TR/png-3/#11Critical-chunks" + } + }, + "#11IDAT": { + "current": { + "number": "11.2.3", + "spec": "PNG", + "text": "IDAT Image data", + "url": "https://w3c.github.io/png/#11IDAT" + }, + "snapshot": { + "number": "11.2.3", + "spec": "PNG", + "text": "IDAT Image data", + "url": "https://www.w3.org/TR/png-3/#11IDAT" + } + }, + "#11IEND": { + "current": { + "number": "11.2.4", + "spec": "PNG", + "text": "IEND Image trailer", + "url": "https://w3c.github.io/png/#11IEND" + }, + "snapshot": { + "number": "11.2.4", + "spec": "PNG", + "text": "IEND Image trailer", + "url": "https://www.w3.org/TR/png-3/#11IEND" + } + }, + "#11IHDR": { + "current": { + "number": "11.2.1", + "spec": "PNG", + "text": "IHDR Image header", + "url": "https://w3c.github.io/png/#11IHDR" + }, + "snapshot": { + "number": "11.2.1", + "spec": "PNG", + "text": "IHDR Image header", + "url": "https://www.w3.org/TR/png-3/#11IHDR" + } + }, + "#11Introduction": { + "current": { + "number": "11.1", + "spec": "PNG", + "text": "General", + "url": "https://w3c.github.io/png/#11Introduction" + }, + "snapshot": { + "number": "11.1", + "spec": "PNG", + "text": "General", + "url": "https://www.w3.org/TR/png-3/#11Introduction" + } + }, + "#11PLTE": { + "current": { + "number": "11.2.2", + "spec": "PNG", + "text": "PLTE Palette", + "url": "https://w3c.github.io/png/#11PLTE" + }, + "snapshot": { + "number": "11.2.2", + "spec": "PNG", + "text": "PLTE Palette", + "url": "https://www.w3.org/TR/png-3/#11PLTE" + } + }, + "#11addnlcolinfo": { + "current": { + "number": "11.3.2", + "spec": "PNG", + "text": "Color space information", + "url": "https://w3c.github.io/png/#11addnlcolinfo" + }, + "snapshot": { + "number": "11.3.2", + "spec": "PNG", + "text": "Color space information", + "url": "https://www.w3.org/TR/png-3/#11addnlcolinfo" + } + }, + "#11addnlsiinfo": { + "current": { + "number": "11.3.4", + "spec": "PNG", + "text": "Miscellaneous information", + "url": "https://w3c.github.io/png/#11addnlsiinfo" + }, + "snapshot": { + "number": "11.3.4", + "spec": "PNG", + "text": "Miscellaneous information", + "url": "https://www.w3.org/TR/png-3/#11addnlsiinfo" + } + }, + "#11bKGD": { + "current": { + "number": "11.3.4.1", + "spec": "PNG", + "text": "bKGD Background color", + "url": "https://w3c.github.io/png/#11bKGD" + }, + "snapshot": { + "number": "11.3.4.1", + "spec": "PNG", + "text": "bKGD Background color", + "url": "https://www.w3.org/TR/png-3/#11bKGD" + } + }, + "#11cHRM": { + "current": { + "number": "11.3.2.1", + "spec": "PNG", + "text": "cHRM Primary chromaticities and white point", + "url": "https://w3c.github.io/png/#11cHRM" + }, + "snapshot": { + "number": "11.3.2.1", + "spec": "PNG", + "text": "cHRM Primary chromaticities and white point", + "url": "https://www.w3.org/TR/png-3/#11cHRM" + } + }, + "#11gAMA": { + "current": { + "number": "11.3.2.2", + "spec": "PNG", + "text": "gAMA Image gamma", + "url": "https://w3c.github.io/png/#11gAMA" + }, + "snapshot": { + "number": "11.3.2.2", + "spec": "PNG", + "text": "gAMA Image gamma", + "url": "https://www.w3.org/TR/png-3/#11gAMA" + } + }, + "#11hIST": { + "current": { + "number": "11.3.4.2", + "spec": "PNG", + "text": "hIST Image histogram", + "url": "https://w3c.github.io/png/#11hIST" + }, + "snapshot": { + "number": "11.3.4.2", + "spec": "PNG", + "text": "hIST Image histogram", + "url": "https://www.w3.org/TR/png-3/#11hIST" + } + }, + "#11iCCP": { + "current": { + "number": "11.3.2.3", + "spec": "PNG", + "text": "iCCP Embedded ICC profile", + "url": "https://w3c.github.io/png/#11iCCP" + }, + "snapshot": { + "number": "11.3.2.3", + "spec": "PNG", + "text": "iCCP Embedded ICC profile", + "url": "https://www.w3.org/TR/png-3/#11iCCP" + } + }, + "#11iTXt": { + "current": { + "number": "11.3.3.4", + "spec": "PNG", + "text": "iTXt International textual data", + "url": "https://w3c.github.io/png/#11iTXt" + }, + "snapshot": { + "number": "11.3.3.4", + "spec": "PNG", + "text": "iTXt International textual data", + "url": "https://www.w3.org/TR/png-3/#11iTXt" + } + }, + "#11keywords": { + "current": { + "number": "11.3.3.1", + "spec": "PNG", + "text": "Keywords and text strings", + "url": "https://w3c.github.io/png/#11keywords" + }, + "snapshot": { + "number": "11.3.3.1", + "spec": "PNG", + "text": "Keywords and text strings", + "url": "https://www.w3.org/TR/png-3/#11keywords" + } + }, + "#11pHYs": { + "current": { + "number": "11.3.4.3", + "spec": "PNG", + "text": "pHYs Physical pixel dimensions", + "url": "https://w3c.github.io/png/#11pHYs" + }, + "snapshot": { + "number": "11.3.4.3", + "spec": "PNG", + "text": "pHYs Physical pixel dimensions", + "url": "https://www.w3.org/TR/png-3/#11pHYs" + } + }, + "#11sBIT": { + "current": { + "number": "11.3.2.4", + "spec": "PNG", + "text": "sBIT Significant bits", + "url": "https://w3c.github.io/png/#11sBIT" + }, + "snapshot": { + "number": "11.3.2.4", + "spec": "PNG", + "text": "sBIT Significant bits", + "url": "https://www.w3.org/TR/png-3/#11sBIT" + } + }, + "#11sPLT": { + "current": { + "number": "11.3.4.4", + "spec": "PNG", + "text": "sPLT Suggested palette", + "url": "https://w3c.github.io/png/#11sPLT" + }, + "snapshot": { + "number": "11.3.4.4", + "spec": "PNG", + "text": "sPLT Suggested palette", + "url": "https://www.w3.org/TR/png-3/#11sPLT" + } + }, + "#11sRGB": { + "current": { + "number": "11.3.2.5", + "spec": "PNG", + "text": "sRGB Standard RGB color space", + "url": "https://w3c.github.io/png/#11sRGB" + }, + "snapshot": { + "number": "11.3.2.5", + "spec": "PNG", + "text": "sRGB Standard RGB color space", + "url": "https://www.w3.org/TR/png-3/#11sRGB" + } + }, + "#11tEXt": { + "current": { + "number": "11.3.3.2", + "spec": "PNG", + "text": "tEXt Textual data", + "url": "https://w3c.github.io/png/#11tEXt" + }, + "snapshot": { + "number": "11.3.3.2", + "spec": "PNG", + "text": "tEXt Textual data", + "url": "https://www.w3.org/TR/png-3/#11tEXt" + } + }, + "#11tIME": { + "current": { + "number": "11.3.5.1", + "spec": "PNG", + "text": "tIME Image last-modification time", + "url": "https://w3c.github.io/png/#11tIME" + }, + "snapshot": { + "number": "11.3.5.1", + "spec": "PNG", + "text": "tIME Image last-modification time", + "url": "https://www.w3.org/TR/png-3/#11tIME" + } + }, + "#11tRNS": { + "current": { + "number": "11.3.1.1", + "spec": "PNG", + "text": "tRNS Transparency", + "url": "https://w3c.github.io/png/#11tRNS" + }, + "snapshot": { + "number": "11.3.1.1", + "spec": "PNG", + "text": "tRNS Transparency", + "url": "https://www.w3.org/TR/png-3/#11tRNS" + } + }, + "#11textIntro": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#11textIntro" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#11textIntro" + } + }, + "#11textinfo": { + "current": { + "number": "11.3.3", + "spec": "PNG", + "text": "Textual information", + "url": "https://w3c.github.io/png/#11textinfo" + }, + "snapshot": { + "number": "11.3.3", + "spec": "PNG", + "text": "Textual information", + "url": "https://www.w3.org/TR/png-3/#11textinfo" + } + }, + "#11timestampinfo": { + "current": { + "number": "11.3.5", + "spec": "PNG", + "text": "Time stamp information", + "url": "https://w3c.github.io/png/#11timestampinfo" + }, + "snapshot": { + "number": "11.3.5", + "spec": "PNG", + "text": "Time stamp information", + "url": "https://www.w3.org/TR/png-3/#11timestampinfo" + } + }, + "#11transinfo": { + "current": { + "number": "11.3.1", + "spec": "PNG", + "text": "Transparency information", + "url": "https://w3c.github.io/png/#11transinfo" + }, + "snapshot": { + "number": "11.3.1", + "spec": "PNG", + "text": "Transparency information", + "url": "https://www.w3.org/TR/png-3/#11transinfo" + } + }, + "#11zTXt": { + "current": { + "number": "11.3.3.3", + "spec": "PNG", + "text": "zTXt Compressed textual data", + "url": "https://w3c.github.io/png/#11zTXt" + }, + "snapshot": { + "number": "11.3.3.3", + "spec": "PNG", + "text": "zTXt Compressed textual data", + "url": "https://www.w3.org/TR/png-3/#11zTXt" + } + }, + "#12Alpha-channel-creation": { + "current": { + "number": "12.3", + "spec": "PNG", + "text": "Alpha channel creation", + "url": "https://w3c.github.io/png/#12Alpha-channel-creation" + }, + "snapshot": { + "number": "12.3", + "spec": "PNG", + "text": "Alpha channel creation", + "url": "https://www.w3.org/TR/png-3/#12Alpha-channel-creation" + } + }, + "#12Ancillary": { + "current": { + "number": "12.10.3", + "spec": "PNG", + "text": "Ancillary chunks", + "url": "https://w3c.github.io/png/#12Ancillary" + }, + "snapshot": { + "number": "12.10.3", + "spec": "PNG", + "text": "Ancillary chunks", + "url": "https://www.w3.org/TR/png-3/#12Ancillary" + } + }, + "#12Chunk-processing": { + "current": { + "number": "12.10", + "spec": "PNG", + "text": "Chunking", + "url": "https://w3c.github.io/png/#12Chunk-processing" + }, + "snapshot": { + "number": "12.10", + "spec": "PNG", + "text": "Chunking", + "url": "https://www.w3.org/TR/png-3/#12Chunk-processing" + } + }, + "#12Compression": { + "current": { + "number": "12.8", + "spec": "PNG", + "text": "Compression", + "url": "https://w3c.github.io/png/#12Compression" + }, + "snapshot": { + "number": "12.8", + "spec": "PNG", + "text": "Compression", + "url": "https://www.w3.org/TR/png-3/#12Compression" + } + }, + "#12Encoder-colour-handling": { + "current": { + "number": "12.2", + "spec": "PNG", + "text": "Encoder color handling", + "url": "https://w3c.github.io/png/#12Encoder-colour-handling" + }, + "snapshot": { + "number": "12.2", + "spec": "PNG", + "text": "Encoder color handling", + "url": "https://www.w3.org/TR/png-3/#12Encoder-colour-handling" + } + }, + "#12Encoder-gamma-handling": { + "current": { + "number": "12.1", + "spec": "PNG", + "text": "Encoder gamma handling", + "url": "https://w3c.github.io/png/#12Encoder-gamma-handling" + }, + "snapshot": { + "number": "12.1", + "spec": "PNG", + "text": "Encoder gamma handling", + "url": "https://www.w3.org/TR/png-3/#12Encoder-gamma-handling" + } + }, + "#12Encoders": { + "current": { + "number": "", + "spec": "PNG", + "text": "12. PNG Encoders", + "url": "https://w3c.github.io/png/#12Encoders" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "12. PNG Encoders", + "url": "https://www.w3.org/TR/png-3/#12Encoders" + } + }, + "#12Filter-selection": { + "current": { + "number": "12.7", + "spec": "PNG", + "text": "Filter selection", + "url": "https://w3c.github.io/png/#12Filter-selection" + }, + "snapshot": { + "number": "12.7", + "spec": "PNG", + "text": "Filter selection", + "url": "https://www.w3.org/TR/png-3/#12Filter-selection" + } + }, + "#12Interlacing": { + "current": { + "number": "12.6", + "spec": "PNG", + "text": "Interlacing", + "url": "https://w3c.github.io/png/#12Interlacing" + }, + "snapshot": { + "number": "12.6", + "spec": "PNG", + "text": "Interlacing", + "url": "https://www.w3.org/TR/png-3/#12Interlacing" + } + }, + "#12Introduction": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#12Introduction" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#12Introduction" + } + }, + "#12Private-type-and-method-codes": { + "current": { + "number": "12.10.2", + "spec": "PNG", + "text": "Use of non-reserved field values", + "url": "https://w3c.github.io/png/#12Private-type-and-method-codes" + }, + "snapshot": { + "number": "12.10.2", + "spec": "PNG", + "text": "Use of non-reserved field values", + "url": "https://www.w3.org/TR/png-3/#12Private-type-and-method-codes" + } + }, + "#12Sample-depth-scaling": { + "current": { + "number": "12.4", + "spec": "PNG", + "text": "Sample depth scaling", + "url": "https://w3c.github.io/png/#12Sample-depth-scaling" + }, + "snapshot": { + "number": "12.4", + "spec": "PNG", + "text": "Sample depth scaling", + "url": "https://www.w3.org/TR/png-3/#12Sample-depth-scaling" + } + }, + "#12Suggested-palettes": { + "current": { + "number": "12.5", + "spec": "PNG", + "text": "Suggested palettes", + "url": "https://w3c.github.io/png/#12Suggested-palettes" + }, + "snapshot": { + "number": "12.5", + "spec": "PNG", + "text": "Suggested palettes", + "url": "https://www.w3.org/TR/png-3/#12Suggested-palettes" + } + }, + "#12Text-chunk-processing": { + "current": { + "number": "12.9", + "spec": "PNG", + "text": "Text chunk processing", + "url": "https://w3c.github.io/png/#12Text-chunk-processing" + }, + "snapshot": { + "number": "12.9", + "spec": "PNG", + "text": "Text chunk processing", + "url": "https://www.w3.org/TR/png-3/#12Text-chunk-processing" + } + }, + "#12Use-of-private-chunks": { + "current": { + "number": "12.10.1", + "spec": "PNG", + "text": "Use of private chunks", + "url": "https://w3c.github.io/png/#12Use-of-private-chunks" + }, + "snapshot": { + "number": "12.10.1", + "spec": "PNG", + "text": "Use of private chunks", + "url": "https://www.w3.org/TR/png-3/#12Use-of-private-chunks" + } + }, + "#13Alpha-channel-processing": { + "current": { + "number": "13.16", + "spec": "PNG", + "text": "Alpha channel processing", + "url": "https://w3c.github.io/png/#13Alpha-channel-processing" + }, + "snapshot": { + "number": "13.16", + "spec": "PNG", + "text": "Alpha channel processing", + "url": "https://www.w3.org/TR/png-3/#13Alpha-channel-processing" + } + }, + "#13Background-colour": { + "current": { + "number": "13.15", + "spec": "PNG", + "text": "Background color", + "url": "https://w3c.github.io/png/#13Background-colour" + }, + "snapshot": { + "number": "13.15", + "spec": "PNG", + "text": "Background color", + "url": "https://www.w3.org/TR/png-3/#13Background-colour" + } + }, + "#13Chunking": { + "current": { + "number": "13.5", + "spec": "PNG", + "text": "Chunking", + "url": "https://w3c.github.io/png/#13Chunking" + }, + "snapshot": { + "number": "13.5", + "spec": "PNG", + "text": "Chunking", + "url": "https://www.w3.org/TR/png-3/#13Chunking" + } + }, + "#13Decoder-colour-handling": { + "current": { + "number": "13.14", + "spec": "PNG", + "text": "Decoder color handling", + "url": "https://w3c.github.io/png/#13Decoder-colour-handling" + }, + "snapshot": { + "number": "13.14", + "spec": "PNG", + "text": "Decoder color handling", + "url": "https://www.w3.org/TR/png-3/#13Decoder-colour-handling" + } + }, + "#13Decoder-gamma-handling": { + "current": { + "number": "13.13", + "spec": "PNG", + "text": "Decoder gamma handling", + "url": "https://w3c.github.io/png/#13Decoder-gamma-handling" + }, + "snapshot": { + "number": "13.13", + "spec": "PNG", + "text": "Decoder gamma handling", + "url": "https://www.w3.org/TR/png-3/#13Decoder-gamma-handling" + } + }, + "#13Decoders": { + "current": { + "number": "", + "spec": "PNG", + "text": "13. PNG decoders and viewers", + "url": "https://w3c.github.io/png/#13Decoders" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "13. PNG decoders and viewers", + "url": "https://www.w3.org/TR/png-3/#13Decoders" + } + }, + "#13Decompression": { + "current": { + "number": "13.8", + "spec": "PNG", + "text": "Decompression", + "url": "https://w3c.github.io/png/#13Decompression" + }, + "snapshot": { + "number": "13.8", + "spec": "PNG", + "text": "Decompression", + "url": "https://www.w3.org/TR/png-3/#13Decompression" + } + }, + "#13Error-checking": { + "current": { + "number": "13.2", + "spec": "PNG", + "text": "Error checking", + "url": "https://w3c.github.io/png/#13Error-checking" + }, + "snapshot": { + "number": "13.2", + "spec": "PNG", + "text": "Error checking", + "url": "https://www.w3.org/TR/png-3/#13Error-checking" + } + }, + "#13Filtering": { + "current": { + "number": "13.9", + "spec": "PNG", + "text": "Filtering", + "url": "https://w3c.github.io/png/#13Filtering" + }, + "snapshot": { + "number": "13.9", + "spec": "PNG", + "text": "Filtering", + "url": "https://www.w3.org/TR/png-3/#13Filtering" + } + }, + "#13Histogram-and-suggested-palette-usage": { + "current": { + "number": "13.17", + "spec": "PNG", + "text": "Histogram and suggested palette usage", + "url": "https://w3c.github.io/png/#13Histogram-and-suggested-palette-usage" + }, + "snapshot": { + "number": "13.17", + "spec": "PNG", + "text": "Histogram and suggested palette usage", + "url": "https://www.w3.org/TR/png-3/#13Histogram-and-suggested-palette-usage" + } + }, + "#13Introduction": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#13Introduction" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#13Introduction" + } + }, + "#13Pixel-dimensions": { + "current": { + "number": "13.6", + "spec": "PNG", + "text": "Pixel dimensions", + "url": "https://w3c.github.io/png/#13Pixel-dimensions" + }, + "snapshot": { + "number": "13.6", + "spec": "PNG", + "text": "Pixel dimensions", + "url": "https://www.w3.org/TR/png-3/#13Pixel-dimensions" + } + }, + "#13Progressive-display": { + "current": { + "number": "13.10", + "spec": "PNG", + "text": "Interlacing and progressive display", + "url": "https://w3c.github.io/png/#13Progressive-display" + }, + "snapshot": { + "number": "13.10", + "spec": "PNG", + "text": "Interlacing and progressive display", + "url": "https://www.w3.org/TR/png-3/#13Progressive-display" + } + }, + "#13Sample-depth-rescaling": { + "current": { + "number": "13.12", + "spec": "PNG", + "text": "Sample depth rescaling", + "url": "https://w3c.github.io/png/#13Sample-depth-rescaling" + }, + "snapshot": { + "number": "13.12", + "spec": "PNG", + "text": "Sample depth rescaling", + "url": "https://www.w3.org/TR/png-3/#13Sample-depth-rescaling" + } + }, + "#13Security-considerations": { + "current": { + "number": "13.3", + "spec": "PNG", + "text": "Security considerations", + "url": "https://w3c.github.io/png/#13Security-considerations" + }, + "snapshot": { + "number": "13.3", + "spec": "PNG", + "text": "Security considerations", + "url": "https://www.w3.org/TR/png-3/#13Security-considerations" + } + }, + "#13Text-chunk-processing": { + "current": { + "number": "13.7", + "spec": "PNG", + "text": "Text chunk processing", + "url": "https://w3c.github.io/png/#13Text-chunk-processing" + }, + "snapshot": { + "number": "13.7", + "spec": "PNG", + "text": "Text chunk processing", + "url": "https://www.w3.org/TR/png-3/#13Text-chunk-processing" + } + }, + "#13Truecolour-image-handling": { + "current": { + "number": "13.11", + "spec": "PNG", + "text": "Truecolor image handling", + "url": "https://w3c.github.io/png/#13Truecolour-image-handling" + }, + "snapshot": { + "number": "13.11", + "spec": "PNG", + "text": "Truecolor image handling", + "url": "https://www.w3.org/TR/png-3/#13Truecolour-image-handling" + } + }, + "#14Additional-chunk-types": { + "current": { + "number": "14.1", + "spec": "PNG", + "text": "Additional chunk types", + "url": "https://w3c.github.io/png/#14Additional-chunk-types" + }, + "snapshot": { + "number": "14.1", + "spec": "PNG", + "text": "Additional chunk types", + "url": "https://www.w3.org/TR/png-3/#14Additional-chunk-types" + } + }, + "#14EditorsExt": { + "current": { + "number": "", + "spec": "PNG", + "text": "14. Editors", + "url": "https://w3c.github.io/png/#14EditorsExt" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "14. Editors", + "url": "https://www.w3.org/TR/png-3/#14EditorsExt" + } + }, + "#14Ordering": { + "current": { + "number": "14.2", + "spec": "PNG", + "text": "Behavior of PNG editors", + "url": "https://w3c.github.io/png/#14Ordering" + }, + "snapshot": { + "number": "14.2", + "spec": "PNG", + "text": "Behavior of PNG editors", + "url": "https://www.w3.org/TR/png-3/#14Ordering" + } + }, + "#14Ordering-of-ancillary-chunks": { + "current": { + "number": "14.3.2", + "spec": "PNG", + "text": "Ordering of ancillary chunks", + "url": "https://w3c.github.io/png/#14Ordering-of-ancillary-chunks" + }, + "snapshot": { + "number": "14.3.2", + "spec": "PNG", + "text": "Ordering of ancillary chunks", + "url": "https://www.w3.org/TR/png-3/#14Ordering-of-ancillary-chunks" + } + }, + "#14Ordering-of-chunks": { + "current": { + "number": "14.3", + "spec": "PNG", + "text": "Ordering of chunks", + "url": "https://w3c.github.io/png/#14Ordering-of-chunks" + }, + "snapshot": { + "number": "14.3", + "spec": "PNG", + "text": "Ordering of chunks", + "url": "https://www.w3.org/TR/png-3/#14Ordering-of-chunks" + } + }, + "#14Ordering-of-critical-chunks": { + "current": { + "number": "14.3.1", + "spec": "PNG", + "text": "Ordering of critical chunks", + "url": "https://w3c.github.io/png/#14Ordering-of-critical-chunks" + }, + "snapshot": { + "number": "14.3.1", + "spec": "PNG", + "text": "Ordering of critical chunks", + "url": "https://www.w3.org/TR/png-3/#14Ordering-of-critical-chunks" + } + }, + "#15ConfIntro": { + "current": { + "number": "15.2", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#15ConfIntro" + }, + "snapshot": { + "number": "15.2", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#15ConfIntro" + } + }, + "#15ConfObjectives": { + "current": { + "number": "15.2.1", + "spec": "PNG", + "text": "Objectives", + "url": "https://w3c.github.io/png/#15ConfObjectives" + }, + "snapshot": { + "number": "15.2.1", + "spec": "PNG", + "text": "Objectives", + "url": "https://www.w3.org/TR/png-3/#15ConfObjectives" + } + }, + "#15ConfScope": { + "current": { + "number": "15.2.2", + "spec": "PNG", + "text": "Scope", + "url": "https://w3c.github.io/png/#15ConfScope" + }, + "snapshot": { + "number": "15.2.2", + "spec": "PNG", + "text": "Scope", + "url": "https://www.w3.org/TR/png-3/#15ConfScope" + } + }, + "#15ConformanceConf": { + "current": { + "number": "15.3", + "spec": "PNG", + "text": "Conformance conditions", + "url": "https://w3c.github.io/png/#15ConformanceConf" + }, + "snapshot": { + "number": "15.3", + "spec": "PNG", + "text": "Conformance conditions", + "url": "https://www.w3.org/TR/png-3/#15ConformanceConf" + } + }, + "#15ConformanceDecoder": { + "current": { + "number": "15.3.3", + "spec": "PNG", + "text": "Conformance of PNG decoders", + "url": "https://w3c.github.io/png/#15ConformanceDecoder" + }, + "snapshot": { + "number": "15.3.3", + "spec": "PNG", + "text": "Conformance of PNG decoders", + "url": "https://www.w3.org/TR/png-3/#15ConformanceDecoder" + } + }, + "#15ConformanceEditor": { + "current": { + "number": "15.3.4", + "spec": "PNG", + "text": "Conformance of PNG editors", + "url": "https://w3c.github.io/png/#15ConformanceEditor" + }, + "snapshot": { + "number": "15.3.4", + "spec": "PNG", + "text": "Conformance of PNG editors", + "url": "https://www.w3.org/TR/png-3/#15ConformanceEditor" + } + }, + "#15ConformanceEncoder": { + "current": { + "number": "15.3.2", + "spec": "PNG", + "text": "Conformance of PNG encoders", + "url": "https://w3c.github.io/png/#15ConformanceEncoder" + }, + "snapshot": { + "number": "15.3.2", + "spec": "PNG", + "text": "Conformance of PNG encoders", + "url": "https://www.w3.org/TR/png-3/#15ConformanceEncoder" + } + }, + "#15FileConformance": { + "current": { + "number": "15.3.1", + "spec": "PNG", + "text": "Conformance of PNG datastreams", + "url": "https://w3c.github.io/png/#15FileConformance" + }, + "snapshot": { + "number": "15.3.1", + "spec": "PNG", + "text": "Conformance of PNG datastreams", + "url": "https://www.w3.org/TR/png-3/#15FileConformance" + } + }, + "#4Concepts.APNGSequence": { + "current": { + "number": "4.9.2", + "spec": "PNG", + "text": "Sequence numbers", + "url": "https://w3c.github.io/png/#4Concepts.APNGSequence" + }, + "snapshot": { + "number": "4.9.2", + "spec": "PNG", + "text": "Sequence numbers", + "url": "https://www.w3.org/TR/png-3/#4Concepts.APNGSequence" + } + }, + "#4Concepts.Alpha-indexing": { + "current": { + "number": "4.4.4", + "spec": "PNG", + "text": "Alpha compaction", + "url": "https://w3c.github.io/png/#4Concepts.Alpha-indexing" + }, + "snapshot": { + "number": "4.4.4", + "spec": "PNG", + "text": "Alpha compaction", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Alpha-indexing" + } + }, + "#4Concepts.AncillInfo": { + "current": { + "number": "4.7", + "spec": "PNG", + "text": "Additional information", + "url": "https://w3c.github.io/png/#4Concepts.AncillInfo" + }, + "snapshot": { + "number": "4.7", + "spec": "PNG", + "text": "Additional information", + "url": "https://www.w3.org/TR/png-3/#4Concepts.AncillInfo" + } + }, + "#4Concepts.ColourSpaces": { + "current": { + "number": "4.3", + "spec": "PNG", + "text": "Color spaces", + "url": "https://w3c.github.io/png/#4Concepts.ColourSpaces" + }, + "snapshot": { + "number": "4.3", + "spec": "PNG", + "text": "Color spaces", + "url": "https://www.w3.org/TR/png-3/#4Concepts.ColourSpaces" + } + }, + "#4Concepts.Encoding": { + "current": { + "number": "4.6", + "spec": "PNG", + "text": "Encoding the PNG image", + "url": "https://w3c.github.io/png/#4Concepts.Encoding" + }, + "snapshot": { + "number": "4.6", + "spec": "PNG", + "text": "Encoding the PNG image", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Encoding" + } + }, + "#4Concepts.EncodingChunking": { + "current": { + "number": "4.6.5", + "spec": "PNG", + "text": "Chunking", + "url": "https://w3c.github.io/png/#4Concepts.EncodingChunking" + }, + "snapshot": { + "number": "4.6.5", + "spec": "PNG", + "text": "Chunking", + "url": "https://www.w3.org/TR/png-3/#4Concepts.EncodingChunking" + } + }, + "#4Concepts.EncodingCompression": { + "current": { + "number": "4.6.4", + "spec": "PNG", + "text": "Compression", + "url": "https://w3c.github.io/png/#4Concepts.EncodingCompression" + }, + "snapshot": { + "number": "4.6.4", + "spec": "PNG", + "text": "Compression", + "url": "https://www.w3.org/TR/png-3/#4Concepts.EncodingCompression" + } + }, + "#4Concepts.EncodingFiltering": { + "current": { + "number": "4.6.3", + "spec": "PNG", + "text": "Filtering", + "url": "https://w3c.github.io/png/#4Concepts.EncodingFiltering" + }, + "snapshot": { + "number": "4.6.3", + "spec": "PNG", + "text": "Filtering", + "url": "https://www.w3.org/TR/png-3/#4Concepts.EncodingFiltering" + } + }, + "#4Concepts.EncodingIntro": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#4Concepts.EncodingIntro" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#4Concepts.EncodingIntro" + } + }, + "#4Concepts.EncodingPassAbs": { + "current": { + "number": "4.6.1", + "spec": "PNG", + "text": "Pass extraction", + "url": "https://w3c.github.io/png/#4Concepts.EncodingPassAbs" + }, + "snapshot": { + "number": "4.6.1", + "spec": "PNG", + "text": "Pass extraction", + "url": "https://www.w3.org/TR/png-3/#4Concepts.EncodingPassAbs" + } + }, + "#4Concepts.EncodingScanlineAbs": { + "current": { + "number": "4.6.2", + "spec": "PNG", + "text": "Scanline serialization", + "url": "https://w3c.github.io/png/#4Concepts.EncodingScanlineAbs" + }, + "snapshot": { + "number": "4.6.2", + "spec": "PNG", + "text": "Scanline serialization", + "url": "https://www.w3.org/TR/png-3/#4Concepts.EncodingScanlineAbs" + } + }, + "#4Concepts.Errors": { + "current": { + "number": "4.10", + "spec": "PNG", + "text": "Error handling", + "url": "https://w3c.github.io/png/#4Concepts.Errors" + }, + "snapshot": { + "number": "4.10", + "spec": "PNG", + "text": "Error handling", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Errors" + } + }, + "#4Concepts.Format": { + "current": { + "number": "4.8", + "spec": "PNG", + "text": "PNG datastream", + "url": "https://w3c.github.io/png/#4Concepts.Format" + }, + "snapshot": { + "number": "4.8", + "spec": "PNG", + "text": "PNG datastream", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Format" + } + }, + "#4Concepts.FormatChunks": { + "current": { + "number": "4.8.1", + "spec": "PNG", + "text": "Chunks", + "url": "https://w3c.github.io/png/#4Concepts.FormatChunks" + }, + "snapshot": { + "number": "4.8.1", + "spec": "PNG", + "text": "Chunks", + "url": "https://www.w3.org/TR/png-3/#4Concepts.FormatChunks" + } + }, + "#4Concepts.FormatTypes": { + "current": { + "number": "4.8.2", + "spec": "PNG", + "text": "Chunk types", + "url": "https://w3c.github.io/png/#4Concepts.FormatTypes" + }, + "snapshot": { + "number": "4.8.2", + "spec": "PNG", + "text": "Chunk types", + "url": "https://www.w3.org/TR/png-3/#4Concepts.FormatTypes" + } + }, + "#4Concepts.Implied-alpha": { + "current": { + "number": "4.4.1", + "spec": "PNG", + "text": "Alpha separation", + "url": "https://w3c.github.io/png/#4Concepts.Implied-alpha" + }, + "snapshot": { + "number": "4.4.1", + "spec": "PNG", + "text": "Alpha separation", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Implied-alpha" + } + }, + "#4Concepts.Indexing": { + "current": { + "number": "4.4.2", + "spec": "PNG", + "text": "Indexing", + "url": "https://w3c.github.io/png/#4Concepts.Indexing" + }, + "snapshot": { + "number": "4.4.2", + "spec": "PNG", + "text": "Indexing", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Indexing" + } + }, + "#4Concepts.Introduction": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#4Concepts.Introduction" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Introduction" + } + }, + "#4Concepts.PNGImage": { + "current": { + "number": "4.5", + "spec": "PNG", + "text": "PNG image", + "url": "https://w3c.github.io/png/#4Concepts.PNGImage" + }, + "snapshot": { + "number": "4.5", + "spec": "PNG", + "text": "PNG image", + "url": "https://www.w3.org/TR/png-3/#4Concepts.PNGImage" + } + }, + "#4Concepts.PNGImageTransformation": { + "current": { + "number": "4.4", + "spec": "PNG", + "text": "Reference image to PNG image transformation", + "url": "https://w3c.github.io/png/#4Concepts.PNGImageTransformation" + }, + "snapshot": { + "number": "4.4", + "spec": "PNG", + "text": "Reference image to PNG image transformation", + "url": "https://www.w3.org/TR/png-3/#4Concepts.PNGImageTransformation" + } + }, + "#4Concepts.RGBMerging": { + "current": { + "number": "4.4.3", + "spec": "PNG", + "text": "RGB merging", + "url": "https://w3c.github.io/png/#4Concepts.RGBMerging" + }, + "snapshot": { + "number": "4.4.3", + "spec": "PNG", + "text": "RGB merging", + "url": "https://www.w3.org/TR/png-3/#4Concepts.RGBMerging" + } + }, + "#4Concepts.Registration": { + "current": { + "number": "4.11", + "spec": "PNG", + "text": "Extensions", + "url": "https://w3c.github.io/png/#4Concepts.Registration" + }, + "snapshot": { + "number": "4.11", + "spec": "PNG", + "text": "Extensions", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Registration" + } + }, + "#4Concepts.Scaling": { + "current": { + "number": "4.4.5", + "spec": "PNG", + "text": "Sample depth scaling", + "url": "https://w3c.github.io/png/#4Concepts.Scaling" + }, + "snapshot": { + "number": "4.4.5", + "spec": "PNG", + "text": "Sample depth scaling", + "url": "https://www.w3.org/TR/png-3/#4Concepts.Scaling" + } + }, + "#5CRC-algorithm": { + "current": { + "number": "5.5", + "spec": "PNG", + "text": "CRC algorithm", + "url": "https://w3c.github.io/png/#5CRC-algorithm" + }, + "snapshot": { + "number": "5.5", + "spec": "PNG", + "text": "CRC algorithm", + "url": "https://www.w3.org/TR/png-3/#5CRC-algorithm" + } + }, + "#5Chunk-layout": { + "current": { + "number": "5.3", + "spec": "PNG", + "text": "Chunk layout", + "url": "https://w3c.github.io/png/#5Chunk-layout" + }, + "snapshot": { + "number": "5.3", + "spec": "PNG", + "text": "Chunk layout", + "url": "https://www.w3.org/TR/png-3/#5Chunk-layout" + } + }, + "#5Chunk-naming-conventions": { + "current": { + "number": "5.4", + "spec": "PNG", + "text": "Chunk naming conventions", + "url": "https://w3c.github.io/png/#5Chunk-naming-conventions" + }, + "snapshot": { + "number": "5.4", + "spec": "PNG", + "text": "Chunk naming conventions", + "url": "https://www.w3.org/TR/png-3/#5Chunk-naming-conventions" + } + }, + "#5ChunkOrdering": { + "current": { + "number": "5.6", + "spec": "PNG", + "text": "Chunk ordering", + "url": "https://w3c.github.io/png/#5ChunkOrdering" + }, + "snapshot": { + "number": "5.6", + "spec": "PNG", + "text": "Chunk ordering", + "url": "https://www.w3.org/TR/png-3/#5ChunkOrdering" + } + }, + "#5DataRep": { + "current": { + "number": "5", + "spec": "PNG", + "text": "Datastream structure", + "url": "https://w3c.github.io/png/#5DataRep" + }, + "snapshot": { + "number": "5", + "spec": "PNG", + "text": "Datastream structure", + "url": "https://www.w3.org/TR/png-3/#5DataRep" + } + }, + "#5Introduction": { + "current": { + "number": "5.1", + "spec": "PNG", + "text": "PNG datastream", + "url": "https://w3c.github.io/png/#5Introduction" + }, + "snapshot": { + "number": "5.1", + "spec": "PNG", + "text": "PNG datastream", + "url": "https://www.w3.org/TR/png-3/#5Introduction" + } + }, + "#5PNG-file-signature": { + "current": { + "number": "5.2", + "spec": "PNG", + "text": "PNG signature", + "url": "https://w3c.github.io/png/#5PNG-file-signature" + }, + "snapshot": { + "number": "5.2", + "spec": "PNG", + "text": "PNG signature", + "url": "https://www.w3.org/TR/png-3/#5PNG-file-signature" + } + }, + "#6AlphaRepresentation": { + "current": { + "number": "6.2", + "spec": "PNG", + "text": "Alpha representation", + "url": "https://w3c.github.io/png/#6AlphaRepresentation" + }, + "snapshot": { + "number": "6.2", + "spec": "PNG", + "text": "Alpha representation", + "url": "https://www.w3.org/TR/png-3/#6AlphaRepresentation" + } + }, + "#6Colour-values": { + "current": { + "number": "6.1", + "spec": "PNG", + "text": "Color types and values", + "url": "https://w3c.github.io/png/#6Colour-values" + }, + "snapshot": { + "number": "6.1", + "spec": "PNG", + "text": "Color types and values", + "url": "https://www.w3.org/TR/png-3/#6Colour-values" + } + }, + "#6Transformation": { + "current": { + "number": "6", + "spec": "PNG", + "text": "Reference image to PNG image transformation", + "url": "https://w3c.github.io/png/#6Transformation" + }, + "snapshot": { + "number": "6", + "spec": "PNG", + "text": "Reference image to PNG image transformation", + "url": "https://www.w3.org/TR/png-3/#6Transformation" + } + }, + "#7Filtering": { + "current": { + "number": "7.3", + "spec": "PNG", + "text": "Filtering", + "url": "https://w3c.github.io/png/#7Filtering" + }, + "snapshot": { + "number": "7.3", + "spec": "PNG", + "text": "Filtering", + "url": "https://www.w3.org/TR/png-3/#7Filtering" + } + }, + "#7Integers-and-byte-order": { + "current": { + "number": "7.1", + "spec": "PNG", + "text": "Integers and byte order", + "url": "https://w3c.github.io/png/#7Integers-and-byte-order" + }, + "snapshot": { + "number": "7.1", + "spec": "PNG", + "text": "Integers and byte order", + "url": "https://www.w3.org/TR/png-3/#7Integers-and-byte-order" + } + }, + "#7Scanline": { + "current": { + "number": "7.2", + "spec": "PNG", + "text": "Scanlines", + "url": "https://w3c.github.io/png/#7Scanline" + }, + "snapshot": { + "number": "7.2", + "spec": "PNG", + "text": "Scanlines", + "url": "https://www.w3.org/TR/png-3/#7Scanline" + } + }, + "#7Transformation": { + "current": { + "number": "7", + "spec": "PNG", + "text": "Encoding the PNG image as a PNG datastream", + "url": "https://w3c.github.io/png/#7Transformation" + }, + "snapshot": { + "number": "7", + "spec": "PNG", + "text": "Encoding the PNG image as a PNG datastream", + "url": "https://www.w3.org/TR/png-3/#7Transformation" + } + }, + "#8Interlace": { + "current": { + "number": "8", + "spec": "PNG", + "text": "Interlacing and pass extraction", + "url": "https://w3c.github.io/png/#8Interlace" + }, + "snapshot": { + "number": "8", + "spec": "PNG", + "text": "Interlacing and pass extraction", + "url": "https://www.w3.org/TR/png-3/#8Interlace" + } + }, + "#8InterlaceIntro": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#8InterlaceIntro" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#8InterlaceIntro" + } + }, + "#8InterlaceMethods": { + "current": { + "number": "8.1", + "spec": "PNG", + "text": "Interlace methods", + "url": "https://w3c.github.io/png/#8InterlaceMethods" + }, + "snapshot": { + "number": "8.1", + "spec": "PNG", + "text": "Interlace methods", + "url": "https://www.w3.org/TR/png-3/#8InterlaceMethods" + } + }, + "#9Filter-type-3-Average": { + "current": { + "number": "9.3", + "spec": "PNG", + "text": "Filter type 3: Average", + "url": "https://w3c.github.io/png/#9Filter-type-3-Average" + }, + "snapshot": { + "number": "9.3", + "spec": "PNG", + "text": "Filter type 3: Average", + "url": "https://www.w3.org/TR/png-3/#9Filter-type-3-Average" + } + }, + "#9Filter-type-4-Paeth": { + "current": { + "number": "9.4", + "spec": "PNG", + "text": "Filter type 4: Paeth", + "url": "https://w3c.github.io/png/#9Filter-type-4-Paeth" + }, + "snapshot": { + "number": "9.4", + "spec": "PNG", + "text": "Filter type 4: Paeth", + "url": "https://www.w3.org/TR/png-3/#9Filter-type-4-Paeth" + } + }, + "#9Filter-types": { + "current": { + "number": "9.2", + "spec": "PNG", + "text": "Filter types for filter method 0", + "url": "https://w3c.github.io/png/#9Filter-types" + }, + "snapshot": { + "number": "9.2", + "spec": "PNG", + "text": "Filter types for filter method 0", + "url": "https://www.w3.org/TR/png-3/#9Filter-types" + } + }, + "#9Filters": { + "current": { + "number": "9", + "spec": "PNG", + "text": "Filtering", + "url": "https://w3c.github.io/png/#9Filters" + }, + "snapshot": { + "number": "9", + "spec": "PNG", + "text": "Filtering", + "url": "https://www.w3.org/TR/png-3/#9Filters" + } + }, + "#9FtIntro": { + "current": { + "number": "9.1", + "spec": "PNG", + "text": "Filter methods and filter types", + "url": "https://w3c.github.io/png/#9FtIntro" + }, + "snapshot": { + "number": "9.1", + "spec": "PNG", + "text": "Filter methods and filter types", + "url": "https://www.w3.org/TR/png-3/#9FtIntro" + } + }, + "#A-Conventions": { + "current": { + "number": "A", + "spec": "PNG", + "text": "Internet Media Types", + "url": "https://w3c.github.io/png/#A-Conventions" + }, + "snapshot": { + "number": "A", + "spec": "PNG", + "text": "Internet Media Types", + "url": "https://www.w3.org/TR/png-3/#A-Conventions" + } + }, + "#B-NewChunksAppendix": { + "current": { + "number": "B", + "spec": "PNG", + "text": "Guidelines for private chunk types", + "url": "https://w3c.github.io/png/#B-NewChunksAppendix" + }, + "snapshot": { + "number": "B", + "spec": "PNG", + "text": "Guidelines for private chunk types", + "url": "https://www.w3.org/TR/png-3/#B-NewChunksAppendix" + } + }, + "#C-GammaAppendix": { + "current": { + "number": "C", + "spec": "PNG", + "text": "Gamma and chromaticity", + "url": "https://w3c.github.io/png/#C-GammaAppendix" + }, + "snapshot": { + "number": "C", + "spec": "PNG", + "text": "Gamma and chromaticity", + "url": "https://www.w3.org/TR/png-3/#C-GammaAppendix" + } + }, + "#D-CRCAppendix": { + "current": { + "number": "D", + "spec": "PNG", + "text": "Sample CRC implementation", + "url": "https://w3c.github.io/png/#D-CRCAppendix" + }, + "snapshot": { + "number": "D", + "spec": "PNG", + "text": "Sample CRC implementation", + "url": "https://www.w3.org/TR/png-3/#D-CRCAppendix" + } + }, + "#E-Intro": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#E-Intro" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#E-Intro" + } + }, + "#E-PNG-home-page": { + "current": { + "number": "E.2", + "spec": "PNG", + "text": "PNG web site", + "url": "https://w3c.github.io/png/#E-PNG-home-page" + }, + "snapshot": { + "number": "E.2", + "spec": "PNG", + "text": "PNG web site", + "url": "https://www.w3.org/TR/png-3/#E-PNG-home-page" + } + }, + "#E-Resources": { + "current": { + "number": "E", + "spec": "PNG", + "text": "Online resources", + "url": "https://w3c.github.io/png/#E-Resources" + }, + "snapshot": { + "number": "E", + "spec": "PNG", + "text": "Online resources", + "url": "https://www.w3.org/TR/png-3/#E-Resources" + } + }, + "#E-Sample-implementation": { + "current": { + "number": "E.3", + "spec": "PNG", + "text": "Sample implementation and test images", + "url": "https://w3c.github.io/png/#E-Sample-implementation" + }, + "snapshot": { + "number": "E.3", + "spec": "PNG", + "text": "Sample implementation and test images", + "url": "https://www.w3.org/TR/png-3/#E-Sample-implementation" + } + }, + "#E-icc-profile-specs": { + "current": { + "number": "E.1", + "spec": "PNG", + "text": "ICC profile specifications", + "url": "https://w3c.github.io/png/#E-icc-profile-specs" + }, + "snapshot": { + "number": "E.1", + "spec": "PNG", + "text": "ICC profile specifications", + "url": "https://www.w3.org/TR/png-3/#E-icc-profile-specs" + } + }, + "#F-ChangeList": { + "current": { + "number": "F", + "spec": "PNG", + "text": "Changes", + "url": "https://w3c.github.io/png/#F-ChangeList" + }, + "snapshot": { + "number": "F", + "spec": "PNG", + "text": "Changes", + "url": "https://www.w3.org/TR/png-3/#F-ChangeList" + } + }, + "#Privacy-considerations": { + "current": { + "number": "13.4", + "spec": "PNG", + "text": "Privacy considerations", + "url": "https://w3c.github.io/png/#Privacy-considerations" + }, + "snapshot": { + "number": "13.4", + "spec": "PNG", + "text": "Privacy considerations", + "url": "https://www.w3.org/TR/png-3/#Privacy-considerations" + } + }, + "#acTL-chunk": { + "current": { + "number": "11.3.6.1", + "spec": "PNG", + "text": "acTL Animation Control Chunk", + "url": "https://w3c.github.io/png/#acTL-chunk" + }, + "snapshot": { + "number": "11.3.6.1", + "spec": "PNG", + "text": "acTL Animation Control Chunk", + "url": "https://www.w3.org/TR/png-3/#acTL-chunk" + } + }, + "#animation-information": { + "current": { + "number": "11.3.6", + "spec": "PNG", + "text": "Animation information", + "url": "https://w3c.github.io/png/#animation-information" + }, + "snapshot": { + "number": "11.3.6", + "spec": "PNG", + "text": "Animation information", + "url": "https://www.w3.org/TR/png-3/#animation-information" + } + }, + "#apng-canvas": { + "current": { + "number": "4.9.4", + "spec": "PNG", + "text": "Canvas", + "url": "https://w3c.github.io/png/#apng-canvas" + }, + "snapshot": { + "number": "4.9.4", + "spec": "PNG", + "text": "Canvas", + "url": "https://www.w3.org/TR/png-3/#apng-canvas" + } + }, + "#apng-frame-based-animation": { + "current": { + "number": "4.9", + "spec": "PNG", + "text": "APNG: frame-based animation", + "url": "https://w3c.github.io/png/#apng-frame-based-animation" + }, + "snapshot": { + "number": "4.9", + "spec": "PNG", + "text": "APNG: frame-based animation", + "url": "https://www.w3.org/TR/png-3/#apng-frame-based-animation" + } + }, + "#apng-output-buffer": { + "current": { + "number": "4.9.3", + "spec": "PNG", + "text": "Output buffer", + "url": "https://w3c.github.io/png/#apng-output-buffer" + }, + "snapshot": { + "number": "4.9.3", + "spec": "PNG", + "text": "Output buffer", + "url": "https://www.w3.org/TR/png-3/#apng-output-buffer" + } + }, + "#cICP-chunk": { + "current": { + "number": "11.3.2.6", + "spec": "PNG", + "text": "cICP Coding-independent code points for video signal type identification", + "url": "https://w3c.github.io/png/#cICP-chunk" + }, + "snapshot": { + "number": "11.3.2.6", + "spec": "PNG", + "text": "cICP Coding-independent code points for video signal type identification", + "url": "https://www.w3.org/TR/png-3/#cICP-chunk" + } + }, + "#cLLi-chunk": { + "current": { + "number": "11.3.2.8", + "spec": "PNG", + "text": "cLLi Content Light Level Information", + "url": "https://w3c.github.io/png/#cLLi-chunk" + }, + "snapshot": { + "number": "11.3.2.8", + "spec": "PNG", + "text": "cLLi Content Light Level Information", + "url": "https://www.w3.org/TR/png-3/#cLLi-chunk" + } + }, + "#changes-between-first-and-second-editions": { + "current": { + "number": "F.5", + "spec": "PNG", + "text": "Changes between First and Second Editions", + "url": "https://w3c.github.io/png/#changes-between-first-and-second-editions" + }, + "snapshot": { + "number": "F.5", + "spec": "PNG", + "text": "Changes between First and Second Editions", + "url": "https://www.w3.org/TR/png-3/#changes-between-first-and-second-editions" + } + }, + "#changes-since-the-candidate-recommendation-snapshot-of-21-september-2023-third-edition": { + "current": { + "number": "F.1", + "spec": "PNG", + "text": "Changes since the Candidate Recommendation Snapshot of 21 September 2023 (Third Edition)", + "url": "https://w3c.github.io/png/#changes-since-the-candidate-recommendation-snapshot-of-21-september-2023-third-edition" + }, + "snapshot": { + "number": "F.1", + "spec": "PNG", + "text": "Changes since the Candidate Recommendation Snapshot of 21 September 2023 (Third Edition)", + "url": "https://www.w3.org/TR/png-3/#changes-since-the-candidate-recommendation-snapshot-of-21-september-2023-third-edition" + } + }, + "#changes-since-the-first-public-working-draft-of-25-october-2022-third-edition": { + "current": { + "number": "F.3", + "spec": "PNG", + "text": "Changes since the First Public Working Draft of 25 October 2022 (Third Edition)", + "url": "https://w3c.github.io/png/#changes-since-the-first-public-working-draft-of-25-october-2022-third-edition" + }, + "snapshot": { + "number": "F.3", + "spec": "PNG", + "text": "Changes since the First Public Working Draft of 25 October 2022 (Third Edition)", + "url": "https://www.w3.org/TR/png-3/#changes-since-the-first-public-working-draft-of-25-october-2022-third-edition" + } + }, + "#changes-since-the-w3c-recommendation-of-10-november-2003-png-second-edition": { + "current": { + "number": "F.4", + "spec": "PNG", + "text": "Changes since the W3C Recommendation of 10 November 2003 (PNG Second Edition)", + "url": "https://w3c.github.io/png/#changes-since-the-w3c-recommendation-of-10-november-2003-png-second-edition" + }, + "snapshot": { + "number": "F.4", + "spec": "PNG", + "text": "Changes since the W3C Recommendation of 10 November 2003 (PNG Second Edition)", + "url": "https://www.w3.org/TR/png-3/#changes-since-the-w3c-recommendation-of-10-november-2003-png-second-edition" + } + }, + "#changes-since-the-working-draft-of-20-july-2023-third-edition": { + "current": { + "number": "F.2", + "spec": "PNG", + "text": "Changes since the Working Draft of 20 July 2023 (Third Edition)", + "url": "https://w3c.github.io/png/#changes-since-the-working-draft-of-20-july-2023-third-edition" + }, + "snapshot": { + "number": "F.2", + "spec": "PNG", + "text": "Changes since the Working Draft of 20 July 2023 (Third Edition)", + "url": "https://www.w3.org/TR/png-3/#changes-since-the-working-draft-of-20-july-2023-third-edition" + } + }, + "#concepts": { + "current": { + "number": "4", + "spec": "PNG", + "text": "Concepts", + "url": "https://w3c.github.io/png/#concepts" + }, + "snapshot": { + "number": "4", + "spec": "PNG", + "text": "Concepts", + "url": "https://www.w3.org/TR/png-3/#concepts" + } + }, + "#conformance": { + "current": { + "number": "", + "spec": "PNG", + "text": "15. Conformance", + "url": "https://w3c.github.io/png/#conformance" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "15. Conformance", + "url": "https://www.w3.org/TR/png-3/#conformance" + } + }, + "#conformance-0": { + "current": { + "number": "15.1", + "spec": "PNG", + "text": "Conformance", + "url": "https://w3c.github.io/png/#conformance-0" + }, + "snapshot": { + "number": "15.1", + "spec": "PNG", + "text": "Conformance", + "url": "https://www.w3.org/TR/png-3/#conformance-0" + } + }, + "#eXIf": { + "current": { + "number": "11.3.4.5", + "spec": "PNG", + "text": "eXIf Exchangeable Image File (Exif) Profile", + "url": "https://w3c.github.io/png/#eXIf" + }, + "snapshot": { + "number": "11.3.4.5", + "spec": "PNG", + "text": "eXIf Exchangeable Image File (Exif) Profile", + "url": "https://www.w3.org/TR/png-3/#eXIf" + } + }, + "#error-handling": { + "current": { + "number": "13.1", + "spec": "PNG", + "text": "Error handling", + "url": "https://w3c.github.io/png/#error-handling" + }, + "snapshot": { + "number": "13.1", + "spec": "PNG", + "text": "Error handling", + "url": "https://www.w3.org/TR/png-3/#error-handling" + } + }, + "#exif-general-recommendations": { + "current": { + "number": "11.3.4.5.1", + "spec": "PNG", + "text": "eXIf General Recommendations", + "url": "https://w3c.github.io/png/#exif-general-recommendations" + }, + "snapshot": { + "number": "11.3.4.5.1", + "spec": "PNG", + "text": "eXIf General Recommendations", + "url": "https://www.w3.org/TR/png-3/#exif-general-recommendations" + } + }, + "#exif-recommendations-for-decoders": { + "current": { + "number": "11.3.4.5.2", + "spec": "PNG", + "text": "eXIf Recommendations for Decoders", + "url": "https://w3c.github.io/png/#exif-recommendations-for-decoders" + }, + "snapshot": { + "number": "11.3.4.5.2", + "spec": "PNG", + "text": "eXIf Recommendations for Decoders", + "url": "https://www.w3.org/TR/png-3/#exif-recommendations-for-decoders" + } + }, + "#exif-recommendations-for-encoders": { + "current": { + "number": "11.3.4.5.3", + "spec": "PNG", + "text": "eXIf Recommendations for Encoders", + "url": "https://w3c.github.io/png/#exif-recommendations-for-encoders" + }, + "snapshot": { + "number": "11.3.4.5.3", + "spec": "PNG", + "text": "eXIf Recommendations for Encoders", + "url": "https://www.w3.org/TR/png-3/#exif-recommendations-for-encoders" + } + }, + "#fcTL-chunk": { + "current": { + "number": "11.3.6.2", + "spec": "PNG", + "text": "fcTL Frame Control Chunk", + "url": "https://w3c.github.io/png/#fcTL-chunk" + }, + "snapshot": { + "number": "11.3.6.2", + "spec": "PNG", + "text": "fcTL Frame Control Chunk", + "url": "https://www.w3.org/TR/png-3/#fcTL-chunk" + } + }, + "#fdAT-chunk": { + "current": { + "number": "11.3.6.3", + "spec": "PNG", + "text": "fdAT Frame Data Chunk", + "url": "https://w3c.github.io/png/#fdAT-chunk" + }, + "snapshot": { + "number": "11.3.6.3", + "spec": "PNG", + "text": "fdAT Frame Data Chunk", + "url": "https://www.w3.org/TR/png-3/#fdAT-chunk" + } + }, + "#image-apng": { + "current": { + "number": "A.2", + "spec": "PNG", + "text": "image/apng", + "url": "https://w3c.github.io/png/#image-apng" + }, + "snapshot": { + "number": "A.2", + "spec": "PNG", + "text": "image/apng", + "url": "https://www.w3.org/TR/png-3/#image-apng" + } + }, + "#image-png": { + "current": { + "number": "A.1", + "spec": "PNG", + "text": "image/png", + "url": "https://w3c.github.io/png/#image-png" + }, + "snapshot": { + "number": "A.1", + "spec": "PNG", + "text": "image/png", + "url": "https://www.w3.org/TR/png-3/#image-png" + } + }, + "#images": { + "current": { + "number": "4.2", + "spec": "PNG", + "text": "Images", + "url": "https://w3c.github.io/png/#images" + }, + "snapshot": { + "number": "4.2", + "spec": "PNG", + "text": "Images", + "url": "https://www.w3.org/TR/png-3/#images" + } + }, + "#informative-references": { + "current": { + "number": "G.2", + "spec": "PNG", + "text": "Informative references", + "url": "https://w3c.github.io/png/#informative-references" + }, + "snapshot": { + "number": "G.2", + "spec": "PNG", + "text": "Informative references", + "url": "https://www.w3.org/TR/png-3/#informative-references" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#introduction" + } + }, + "#introduction-0": { + "current": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://w3c.github.io/png/#introduction-0" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Introduction", + "url": "https://www.w3.org/TR/png-3/#introduction-0" + } + }, + "#mDCv-chunk": { + "current": { + "number": "11.3.2.7", + "spec": "PNG", + "text": "mDCv Mastering Display Color Volume", + "url": "https://w3c.github.io/png/#mDCv-chunk" + }, + "snapshot": { + "number": "11.3.2.7", + "spec": "PNG", + "text": "mDCv Mastering Display Color Volume", + "url": "https://www.w3.org/TR/png-3/#mDCv-chunk" + } + }, + "#normative-references": { + "current": { + "number": "G.1", + "spec": "PNG", + "text": "Normative references", + "url": "https://w3c.github.io/png/#normative-references" + }, + "snapshot": { + "number": "G.1", + "spec": "PNG", + "text": "Normative references", + "url": "https://www.w3.org/TR/png-3/#normative-references" + } + }, + "#references": { + "current": { + "number": "G", + "spec": "PNG", + "text": "References", + "url": "https://w3c.github.io/png/#references" + }, + "snapshot": { + "number": "G", + "spec": "PNG", + "text": "References", + "url": "https://www.w3.org/TR/png-3/#references" + } + }, + "#scope": { + "current": { + "number": "2", + "spec": "PNG", + "text": "Scope", + "url": "https://w3c.github.io/png/#scope" + }, + "snapshot": { + "number": "2", + "spec": "PNG", + "text": "Scope", + "url": "https://www.w3.org/TR/png-3/#scope" + } + }, + "#sec-defining-new-chunks": { + "current": { + "number": "5.7", + "spec": "PNG", + "text": "Defining chunks", + "url": "https://w3c.github.io/png/#sec-defining-new-chunks" + }, + "snapshot": { + "number": "5.7", + "spec": "PNG", + "text": "Defining chunks", + "url": "https://www.w3.org/TR/png-3/#sec-defining-new-chunks" + } + }, + "#sec-defining-private-chunks": { + "current": { + "number": "5.7.3", + "spec": "PNG", + "text": "Defining private chunks", + "url": "https://w3c.github.io/png/#sec-defining-private-chunks" + }, + "snapshot": { + "number": "5.7.3", + "spec": "PNG", + "text": "Defining private chunks", + "url": "https://www.w3.org/TR/png-3/#sec-defining-private-chunks" + } + }, + "#sec-defining-public-chunks": { + "current": { + "number": "5.7.2", + "spec": "PNG", + "text": "Defining public chunks", + "url": "https://w3c.github.io/png/#sec-defining-public-chunks" + }, + "snapshot": { + "number": "5.7.2", + "spec": "PNG", + "text": "Defining public chunks", + "url": "https://www.w3.org/TR/png-3/#sec-defining-public-chunks" + } + }, + "#sec-defining-public-chunks-general": { + "current": { + "number": "5.7.1", + "spec": "PNG", + "text": "General", + "url": "https://w3c.github.io/png/#sec-defining-public-chunks-general" + }, + "snapshot": { + "number": "5.7.1", + "spec": "PNG", + "text": "General", + "url": "https://www.w3.org/TR/png-3/#sec-defining-public-chunks-general" + } + }, + "#sec-field-value-extensibility": { + "current": { + "number": "5.8", + "spec": "PNG", + "text": "Private field values", + "url": "https://w3c.github.io/png/#sec-field-value-extensibility" + }, + "snapshot": { + "number": "5.8", + "spec": "PNG", + "text": "Private field values", + "url": "https://www.w3.org/TR/png-3/#sec-field-value-extensibility" + } + }, + "#static-and-animated-images": { + "current": { + "number": "4.1", + "spec": "PNG", + "text": "Static and Animated images", + "url": "https://w3c.github.io/png/#static-and-animated-images" + }, + "snapshot": { + "number": "4.1", + "spec": "PNG", + "text": "Static and Animated images", + "url": "https://www.w3.org/TR/png-3/#static-and-animated-images" + } + }, + "#structure": { + "current": { + "number": "4.9.1", + "spec": "PNG", + "text": "Structure", + "url": "https://w3c.github.io/png/#structure" + }, + "snapshot": { + "number": "4.9.1", + "spec": "PNG", + "text": "Structure", + "url": "https://www.w3.org/TR/png-3/#structure" + } + }, + "#terms-definitions-and-abbreviated-terms": { + "current": { + "number": "3", + "spec": "PNG", + "text": "Terms, definitions, and abbreviated terms", + "url": "https://w3c.github.io/png/#terms-definitions-and-abbreviated-terms" + }, + "snapshot": { + "number": "3", + "spec": "PNG", + "text": "Terms, definitions, and abbreviated terms", + "url": "https://www.w3.org/TR/png-3/#terms-definitions-and-abbreviated-terms" + } + }, + "#title": { + "current": { + "number": "", + "spec": "PNG", + "text": "Portable Network Graphics (PNG) Specification (Third Edition)", + "url": "https://w3c.github.io/png/#title" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Portable Network Graphics (PNG) Specification (Third Edition)", + "url": "https://www.w3.org/TR/png-3/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "PNG", + "text": "Table of Contents", + "url": "https://w3c.github.io/png/#toc" + }, + "snapshot": { + "number": "", + "spec": "PNG", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/png-3/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-png-spec.json b/bikeshed/spec-data/readonly/headings/headings-png-spec.json deleted file mode 100644 index 41daa30733..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-png-spec.json +++ /dev/null @@ -1,1418 +0,0 @@ -{ - "#10Compression": { - "current": { - "number": "", - "spec": "PNG", - "text": "10. Compression", - "url": "https://w3c.github.io/PNG-spec/#10Compression" - } - }, - "#10CompressionCM0": { - "current": { - "number": "10.1", - "spec": "PNG", - "text": "Compression method 0", - "url": "https://w3c.github.io/PNG-spec/#10CompressionCM0" - } - }, - "#10CompressionFSL": { - "current": { - "number": "10.2", - "spec": "PNG", - "text": "Compression of the sequence of filtered scanlines", - "url": "https://w3c.github.io/PNG-spec/#10CompressionFSL" - } - }, - "#10CompressionOtherUses": { - "current": { - "number": "10.3", - "spec": "PNG", - "text": "Other uses of compression", - "url": "https://w3c.github.io/PNG-spec/#10CompressionOtherUses" - } - }, - "#11AcGen": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#11AcGen" - } - }, - "#11Ancillary-chunks": { - "current": { - "number": "11.3", - "spec": "PNG", - "text": "Ancillary chunks", - "url": "https://w3c.github.io/PNG-spec/#11Ancillary-chunks" - } - }, - "#11CcGen": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#11CcGen" - } - }, - "#11Chunks": { - "current": { - "number": "", - "spec": "PNG", - "text": "11. Chunk specifications", - "url": "https://w3c.github.io/PNG-spec/#11Chunks" - } - }, - "#11Critical-chunks": { - "current": { - "number": "11.2", - "spec": "PNG", - "text": "Critical chunks", - "url": "https://w3c.github.io/PNG-spec/#11Critical-chunks" - } - }, - "#11IDAT": { - "current": { - "number": "11.2.3", - "spec": "PNG", - "text": "IDAT Image data", - "url": "https://w3c.github.io/PNG-spec/#11IDAT" - } - }, - "#11IEND": { - "current": { - "number": "11.2.4", - "spec": "PNG", - "text": "IEND Image trailer", - "url": "https://w3c.github.io/PNG-spec/#11IEND" - } - }, - "#11IHDR": { - "current": { - "number": "11.2.1", - "spec": "PNG", - "text": "IHDR Image header", - "url": "https://w3c.github.io/PNG-spec/#11IHDR" - } - }, - "#11Introduction": { - "current": { - "number": "11.1", - "spec": "PNG", - "text": "General", - "url": "https://w3c.github.io/PNG-spec/#11Introduction" - } - }, - "#11PLTE": { - "current": { - "number": "11.2.2", - "spec": "PNG", - "text": "PLTE Palette", - "url": "https://w3c.github.io/PNG-spec/#11PLTE" - } - }, - "#11addnlcolinfo": { - "current": { - "number": "11.3.2", - "spec": "PNG", - "text": "Colour space information", - "url": "https://w3c.github.io/PNG-spec/#11addnlcolinfo" - } - }, - "#11addnlsiinfo": { - "current": { - "number": "11.3.4", - "spec": "PNG", - "text": "Miscellaneous information", - "url": "https://w3c.github.io/PNG-spec/#11addnlsiinfo" - } - }, - "#11bKGD": { - "current": { - "number": "11.3.4.1", - "spec": "PNG", - "text": "bKGD Background colour", - "url": "https://w3c.github.io/PNG-spec/#11bKGD" - } - }, - "#11cHRM": { - "current": { - "number": "11.3.2.1", - "spec": "PNG", - "text": "cHRM Primary chromaticities and white point", - "url": "https://w3c.github.io/PNG-spec/#11cHRM" - } - }, - "#11gAMA": { - "current": { - "number": "11.3.2.2", - "spec": "PNG", - "text": "gAMA Image gamma", - "url": "https://w3c.github.io/PNG-spec/#11gAMA" - } - }, - "#11hIST": { - "current": { - "number": "11.3.4.2", - "spec": "PNG", - "text": "hIST Image histogram", - "url": "https://w3c.github.io/PNG-spec/#11hIST" - } - }, - "#11iCCP": { - "current": { - "number": "11.3.2.3", - "spec": "PNG", - "text": "iCCP Embedded ICC profile", - "url": "https://w3c.github.io/PNG-spec/#11iCCP" - } - }, - "#11iTXt": { - "current": { - "number": "11.3.3.4", - "spec": "PNG", - "text": "iTXt International textual data", - "url": "https://w3c.github.io/PNG-spec/#11iTXt" - } - }, - "#11keywords": { - "current": { - "number": "11.3.3.1", - "spec": "PNG", - "text": "Keywords and text strings", - "url": "https://w3c.github.io/PNG-spec/#11keywords" - } - }, - "#11pHYs": { - "current": { - "number": "11.3.4.3", - "spec": "PNG", - "text": "pHYs Physical pixel dimensions", - "url": "https://w3c.github.io/PNG-spec/#11pHYs" - } - }, - "#11sBIT": { - "current": { - "number": "11.3.2.4", - "spec": "PNG", - "text": "sBIT Significant bits", - "url": "https://w3c.github.io/PNG-spec/#11sBIT" - } - }, - "#11sPLT": { - "current": { - "number": "11.3.4.4", - "spec": "PNG", - "text": "sPLT Suggested palette", - "url": "https://w3c.github.io/PNG-spec/#11sPLT" - } - }, - "#11sRGB": { - "current": { - "number": "11.3.2.5", - "spec": "PNG", - "text": "sRGB Standard RGB colour space", - "url": "https://w3c.github.io/PNG-spec/#11sRGB" - } - }, - "#11tEXt": { - "current": { - "number": "11.3.3.2", - "spec": "PNG", - "text": "tEXt Textual data", - "url": "https://w3c.github.io/PNG-spec/#11tEXt" - } - }, - "#11tIME": { - "current": { - "number": "11.3.5.1", - "spec": "PNG", - "text": "tIME Image last-modification time", - "url": "https://w3c.github.io/PNG-spec/#11tIME" - } - }, - "#11tRNS": { - "current": { - "number": "11.3.1.1", - "spec": "PNG", - "text": "tRNS Transparency", - "url": "https://w3c.github.io/PNG-spec/#11tRNS" - } - }, - "#11textIntro": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#11textIntro" - } - }, - "#11textinfo": { - "current": { - "number": "11.3.3", - "spec": "PNG", - "text": "Textual information", - "url": "https://w3c.github.io/PNG-spec/#11textinfo" - } - }, - "#11timestampinfo": { - "current": { - "number": "11.3.5", - "spec": "PNG", - "text": "Time stamp information", - "url": "https://w3c.github.io/PNG-spec/#11timestampinfo" - } - }, - "#11transinfo": { - "current": { - "number": "11.3.1", - "spec": "PNG", - "text": "Transparency information", - "url": "https://w3c.github.io/PNG-spec/#11transinfo" - } - }, - "#11zTXt": { - "current": { - "number": "11.3.3.3", - "spec": "PNG", - "text": "zTXt Compressed textual data", - "url": "https://w3c.github.io/PNG-spec/#11zTXt" - } - }, - "#12Alpha-channel-creation": { - "current": { - "number": "12.3", - "spec": "PNG", - "text": "Alpha channel creation", - "url": "https://w3c.github.io/PNG-spec/#12Alpha-channel-creation" - } - }, - "#12Ancillary": { - "current": { - "number": "12.10.3", - "spec": "PNG", - "text": "Ancillary chunks", - "url": "https://w3c.github.io/PNG-spec/#12Ancillary" - } - }, - "#12Chunk-processing": { - "current": { - "number": "12.10", - "spec": "PNG", - "text": "Chunking", - "url": "https://w3c.github.io/PNG-spec/#12Chunk-processing" - } - }, - "#12Compression": { - "current": { - "number": "12.8", - "spec": "PNG", - "text": "Compression", - "url": "https://w3c.github.io/PNG-spec/#12Compression" - } - }, - "#12Encoder-colour-handling": { - "current": { - "number": "12.2", - "spec": "PNG", - "text": "Encoder colour handling", - "url": "https://w3c.github.io/PNG-spec/#12Encoder-colour-handling" - } - }, - "#12Encoder-gamma-handling": { - "current": { - "number": "12.1", - "spec": "PNG", - "text": "Encoder gamma handling", - "url": "https://w3c.github.io/PNG-spec/#12Encoder-gamma-handling" - } - }, - "#12Encoders": { - "current": { - "number": "", - "spec": "PNG", - "text": "12. PNG Encoders", - "url": "https://w3c.github.io/PNG-spec/#12Encoders" - } - }, - "#12Filter-selection": { - "current": { - "number": "12.7", - "spec": "PNG", - "text": "Filter selection", - "url": "https://w3c.github.io/PNG-spec/#12Filter-selection" - } - }, - "#12Interlacing": { - "current": { - "number": "12.6", - "spec": "PNG", - "text": "Interlacing", - "url": "https://w3c.github.io/PNG-spec/#12Interlacing" - } - }, - "#12Introduction": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#12Introduction" - } - }, - "#12Private-type-and-method-codes": { - "current": { - "number": "12.10.2", - "spec": "PNG", - "text": "Use of non-reserved field values", - "url": "https://w3c.github.io/PNG-spec/#12Private-type-and-method-codes" - } - }, - "#12Sample-depth-scaling": { - "current": { - "number": "12.4", - "spec": "PNG", - "text": "Sample depth scaling", - "url": "https://w3c.github.io/PNG-spec/#12Sample-depth-scaling" - } - }, - "#12Suggested-palettes": { - "current": { - "number": "12.5", - "spec": "PNG", - "text": "Suggested palettes", - "url": "https://w3c.github.io/PNG-spec/#12Suggested-palettes" - } - }, - "#12Text-chunk-processing": { - "current": { - "number": "12.9", - "spec": "PNG", - "text": "Text chunk processing", - "url": "https://w3c.github.io/PNG-spec/#12Text-chunk-processing" - } - }, - "#12Use-of-private-chunks": { - "current": { - "number": "12.10.1", - "spec": "PNG", - "text": "Use of private chunks", - "url": "https://w3c.github.io/PNG-spec/#12Use-of-private-chunks" - } - }, - "#13Alpha-channel-processing": { - "current": { - "number": "13.16", - "spec": "PNG", - "text": "Alpha channel processing", - "url": "https://w3c.github.io/PNG-spec/#13Alpha-channel-processing" - } - }, - "#13Background-colour": { - "current": { - "number": "13.15", - "spec": "PNG", - "text": "Background colour", - "url": "https://w3c.github.io/PNG-spec/#13Background-colour" - } - }, - "#13Chunking": { - "current": { - "number": "13.5", - "spec": "PNG", - "text": "Chunking", - "url": "https://w3c.github.io/PNG-spec/#13Chunking" - } - }, - "#13Decoder-colour-handling": { - "current": { - "number": "13.14", - "spec": "PNG", - "text": "Decoder colour handling", - "url": "https://w3c.github.io/PNG-spec/#13Decoder-colour-handling" - } - }, - "#13Decoder-gamma-handling": { - "current": { - "number": "13.13", - "spec": "PNG", - "text": "Decoder gamma handling", - "url": "https://w3c.github.io/PNG-spec/#13Decoder-gamma-handling" - } - }, - "#13Decoders": { - "current": { - "number": "", - "spec": "PNG", - "text": "13. PNG decoders and viewers", - "url": "https://w3c.github.io/PNG-spec/#13Decoders" - } - }, - "#13Decompression": { - "current": { - "number": "13.8", - "spec": "PNG", - "text": "Decompression", - "url": "https://w3c.github.io/PNG-spec/#13Decompression" - } - }, - "#13Error-checking": { - "current": { - "number": "13.2", - "spec": "PNG", - "text": "Error checking", - "url": "https://w3c.github.io/PNG-spec/#13Error-checking" - } - }, - "#13Filtering": { - "current": { - "number": "13.9", - "spec": "PNG", - "text": "Filtering", - "url": "https://w3c.github.io/PNG-spec/#13Filtering" - } - }, - "#13Histogram-and-suggested-palette-usage": { - "current": { - "number": "13.17", - "spec": "PNG", - "text": "Histogram and suggested palette usage", - "url": "https://w3c.github.io/PNG-spec/#13Histogram-and-suggested-palette-usage" - } - }, - "#13Introduction": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#13Introduction" - } - }, - "#13Pixel-dimensions": { - "current": { - "number": "13.6", - "spec": "PNG", - "text": "Pixel dimensions", - "url": "https://w3c.github.io/PNG-spec/#13Pixel-dimensions" - } - }, - "#13Progressive-display": { - "current": { - "number": "13.10", - "spec": "PNG", - "text": "Interlacing and progressive display", - "url": "https://w3c.github.io/PNG-spec/#13Progressive-display" - } - }, - "#13Sample-depth-rescaling": { - "current": { - "number": "13.12", - "spec": "PNG", - "text": "Sample depth rescaling", - "url": "https://w3c.github.io/PNG-spec/#13Sample-depth-rescaling" - } - }, - "#13Security-considerations": { - "current": { - "number": "13.3", - "spec": "PNG", - "text": "Security considerations", - "url": "https://w3c.github.io/PNG-spec/#13Security-considerations" - } - }, - "#13Text-chunk-processing": { - "current": { - "number": "13.7", - "spec": "PNG", - "text": "Text chunk processing", - "url": "https://w3c.github.io/PNG-spec/#13Text-chunk-processing" - } - }, - "#13Truecolour-image-handling": { - "current": { - "number": "13.11", - "spec": "PNG", - "text": "Truecolour image handling", - "url": "https://w3c.github.io/PNG-spec/#13Truecolour-image-handling" - } - }, - "#14Additional-chunk-types": { - "current": { - "number": "14.1", - "spec": "PNG", - "text": "Additional chunk types", - "url": "https://w3c.github.io/PNG-spec/#14Additional-chunk-types" - } - }, - "#14EditorsExt": { - "current": { - "number": "", - "spec": "PNG", - "text": "14. Editors", - "url": "https://w3c.github.io/PNG-spec/#14EditorsExt" - } - }, - "#14Ordering": { - "current": { - "number": "14.2", - "spec": "PNG", - "text": "Behaviour of PNG editors", - "url": "https://w3c.github.io/PNG-spec/#14Ordering" - } - }, - "#14Ordering-of-ancillary-chunks": { - "current": { - "number": "14.3.2", - "spec": "PNG", - "text": "Ordering of ancillary chunks", - "url": "https://w3c.github.io/PNG-spec/#14Ordering-of-ancillary-chunks" - } - }, - "#14Ordering-of-chunks": { - "current": { - "number": "14.3", - "spec": "PNG", - "text": "Ordering of chunks", - "url": "https://w3c.github.io/PNG-spec/#14Ordering-of-chunks" - } - }, - "#14Ordering-of-critical-chunks": { - "current": { - "number": "14.3.1", - "spec": "PNG", - "text": "Ordering of critical chunks", - "url": "https://w3c.github.io/PNG-spec/#14Ordering-of-critical-chunks" - } - }, - "#15ConfIntro": { - "current": { - "number": "15.2", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#15ConfIntro" - } - }, - "#15ConfObjectives": { - "current": { - "number": "15.2.1", - "spec": "PNG", - "text": "Objectives", - "url": "https://w3c.github.io/PNG-spec/#15ConfObjectives" - } - }, - "#15ConfScope": { - "current": { - "number": "15.2.2", - "spec": "PNG", - "text": "Scope", - "url": "https://w3c.github.io/PNG-spec/#15ConfScope" - } - }, - "#15ConformanceConf": { - "current": { - "number": "15.3", - "spec": "PNG", - "text": "Conformance conditions", - "url": "https://w3c.github.io/PNG-spec/#15ConformanceConf" - } - }, - "#15ConformanceDecoder": { - "current": { - "number": "15.3.3", - "spec": "PNG", - "text": "Conformance of PNG decoders", - "url": "https://w3c.github.io/PNG-spec/#15ConformanceDecoder" - } - }, - "#15ConformanceEditor": { - "current": { - "number": "15.3.4", - "spec": "PNG", - "text": "Conformance of PNG editors", - "url": "https://w3c.github.io/PNG-spec/#15ConformanceEditor" - } - }, - "#15ConformanceEncoder": { - "current": { - "number": "15.3.2", - "spec": "PNG", - "text": "Conformance of PNG encoders", - "url": "https://w3c.github.io/PNG-spec/#15ConformanceEncoder" - } - }, - "#15FileConformance": { - "current": { - "number": "15.3.1", - "spec": "PNG", - "text": "Conformance of PNG datastreams", - "url": "https://w3c.github.io/PNG-spec/#15FileConformance" - } - }, - "#4Concepts.APNGSequence": { - "current": { - "number": "4.9.2", - "spec": "PNG", - "text": "Sequence numbers", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.APNGSequence" - } - }, - "#4Concepts.AncillInfo": { - "current": { - "number": "4.7", - "spec": "PNG", - "text": "Additional information", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.AncillInfo" - } - }, - "#4Concepts.ColourSpaces": { - "current": { - "number": "4.3", - "spec": "PNG", - "text": "Colour spaces", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.ColourSpaces" - } - }, - "#4Concepts.Encoding": { - "current": { - "number": "4.6", - "spec": "PNG", - "text": "Encoding the PNG image", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Encoding" - } - }, - "#4Concepts.EncodingChunking": { - "current": { - "number": "4.6.5", - "spec": "PNG", - "text": "Chunking", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.EncodingChunking" - } - }, - "#4Concepts.EncodingCompression": { - "current": { - "number": "4.6.4", - "spec": "PNG", - "text": "Compression", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.EncodingCompression" - } - }, - "#4Concepts.EncodingFiltering": { - "current": { - "number": "4.6.3", - "spec": "PNG", - "text": "Filtering", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.EncodingFiltering" - } - }, - "#4Concepts.EncodingIntro": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.EncodingIntro" - } - }, - "#4Concepts.EncodingPassAbs": { - "current": { - "number": "4.6.1", - "spec": "PNG", - "text": "Pass extraction", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.EncodingPassAbs" - } - }, - "#4Concepts.EncodingScanlineAbs": { - "current": { - "number": "4.6.2", - "spec": "PNG", - "text": "Scanline serialization", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.EncodingScanlineAbs" - } - }, - "#4Concepts.Errors": { - "current": { - "number": "4.10", - "spec": "PNG", - "text": "Error handling", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Errors" - } - }, - "#4Concepts.Format": { - "current": { - "number": "4.8", - "spec": "PNG", - "text": "PNG datastream", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Format" - } - }, - "#4Concepts.FormatChunks": { - "current": { - "number": "4.8.1", - "spec": "PNG", - "text": "Chunks", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.FormatChunks" - } - }, - "#4Concepts.FormatTypes": { - "current": { - "number": "4.8.2", - "spec": "PNG", - "text": "Chunk types", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.FormatTypes" - } - }, - "#4Concepts.Implied-alpha": { - "current": { - "number": "4.4.1", - "spec": "PNG", - "text": "Alpha separation", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Implied-alpha" - } - }, - "#4Concepts.Indexing": { - "current": { - "number": "4.4.2", - "spec": "PNG", - "text": "Indexing", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Indexing" - } - }, - "#4Concepts.Introduction": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Introduction" - } - }, - "#4Concepts.PNGImage": { - "current": { - "number": "4.5", - "spec": "PNG", - "text": "PNG image", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.PNGImage" - } - }, - "#4Concepts.PNGImageTransformation": { - "current": { - "number": "4.4", - "spec": "PNG", - "text": "Reference image to PNG image transformation", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.PNGImageTransformation" - } - }, - "#4Concepts.RGBMerging": { - "current": { - "number": "4.4.3", - "spec": "PNG", - "text": "RGB merging", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.RGBMerging" - } - }, - "#4Concepts.Registration": { - "current": { - "number": "4.11", - "spec": "PNG", - "text": "Extensions", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Registration" - } - }, - "#4Concepts.Scaling": { - "current": { - "number": "4.4.5", - "spec": "PNG", - "text": "Sample depth scaling", - "url": "https://w3c.github.io/PNG-spec/#4Concepts.Scaling" - } - }, - "#5CRC-algorithm": { - "current": { - "number": "5.5", - "spec": "PNG", - "text": "CRC algorithm", - "url": "https://w3c.github.io/PNG-spec/#5CRC-algorithm" - } - }, - "#5Chunk-layout": { - "current": { - "number": "5.3", - "spec": "PNG", - "text": "Chunk layout", - "url": "https://w3c.github.io/PNG-spec/#5Chunk-layout" - } - }, - "#5Chunk-naming-conventions": { - "current": { - "number": "5.4", - "spec": "PNG", - "text": "Chunk naming conventions", - "url": "https://w3c.github.io/PNG-spec/#5Chunk-naming-conventions" - } - }, - "#5ChunkOrdering": { - "current": { - "number": "5.6", - "spec": "PNG", - "text": "Chunk ordering", - "url": "https://w3c.github.io/PNG-spec/#5ChunkOrdering" - } - }, - "#5DataRep": { - "current": { - "number": "5", - "spec": "PNG", - "text": "Datastream structure", - "url": "https://w3c.github.io/PNG-spec/#5DataRep" - } - }, - "#5Introduction": { - "current": { - "number": "5.1", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#5Introduction" - } - }, - "#5PNG-file-signature": { - "current": { - "number": "5.2", - "spec": "PNG", - "text": "PNG signature", - "url": "https://w3c.github.io/PNG-spec/#5PNG-file-signature" - } - }, - "#6AlphaRepresentation": { - "current": { - "number": "6.2", - "spec": "PNG", - "text": "Alpha representation", - "url": "https://w3c.github.io/PNG-spec/#6AlphaRepresentation" - } - }, - "#6Colour-values": { - "current": { - "number": "6.1", - "spec": "PNG", - "text": "Colour types and values", - "url": "https://w3c.github.io/PNG-spec/#6Colour-values" - } - }, - "#6Transformation": { - "current": { - "number": "6", - "spec": "PNG", - "text": "Reference image to PNG image transformation", - "url": "https://w3c.github.io/PNG-spec/#6Transformation" - } - }, - "#7Filtering": { - "current": { - "number": "7.3", - "spec": "PNG", - "text": "Filtering", - "url": "https://w3c.github.io/PNG-spec/#7Filtering" - } - }, - "#7Integers-and-byte-order": { - "current": { - "number": "7.1", - "spec": "PNG", - "text": "Integers and byte order", - "url": "https://w3c.github.io/PNG-spec/#7Integers-and-byte-order" - } - }, - "#7Scanline": { - "current": { - "number": "7.2", - "spec": "PNG", - "text": "Scanlines", - "url": "https://w3c.github.io/PNG-spec/#7Scanline" - } - }, - "#7Transformation": { - "current": { - "number": "7", - "spec": "PNG", - "text": "Encoding the PNG image as a PNG datastream", - "url": "https://w3c.github.io/PNG-spec/#7Transformation" - } - }, - "#8Interlace": { - "current": { - "number": "8", - "spec": "PNG", - "text": "Interlacing and pass extraction", - "url": "https://w3c.github.io/PNG-spec/#8Interlace" - } - }, - "#8InterlaceIntro": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#8InterlaceIntro" - } - }, - "#8InterlaceMethods": { - "current": { - "number": "8.1", - "spec": "PNG", - "text": "Interlace methods", - "url": "https://w3c.github.io/PNG-spec/#8InterlaceMethods" - } - }, - "#9Filter-type-3-Average": { - "current": { - "number": "9.3", - "spec": "PNG", - "text": "Filter type 3: Average", - "url": "https://w3c.github.io/PNG-spec/#9Filter-type-3-Average" - } - }, - "#9Filter-type-4-Paeth": { - "current": { - "number": "9.4", - "spec": "PNG", - "text": "Filter type 4: Paeth", - "url": "https://w3c.github.io/PNG-spec/#9Filter-type-4-Paeth" - } - }, - "#9Filter-types": { - "current": { - "number": "9.2", - "spec": "PNG", - "text": "Filter types for filter method 0", - "url": "https://w3c.github.io/PNG-spec/#9Filter-types" - } - }, - "#9Filters": { - "current": { - "number": "9", - "spec": "PNG", - "text": "Filtering", - "url": "https://w3c.github.io/PNG-spec/#9Filters" - } - }, - "#9FtIntro": { - "current": { - "number": "9.1", - "spec": "PNG", - "text": "Filter methods and filter types", - "url": "https://w3c.github.io/PNG-spec/#9FtIntro" - } - }, - "#A-Conventions": { - "current": { - "number": "A", - "spec": "PNG", - "text": "Internet Media Types", - "url": "https://w3c.github.io/PNG-spec/#A-Conventions" - } - }, - "#B-NewChunksAppendix": { - "current": { - "number": "B", - "spec": "PNG", - "text": "Guidelines for private chunk types", - "url": "https://w3c.github.io/PNG-spec/#B-NewChunksAppendix" - } - }, - "#C-GammaAppendix": { - "current": { - "number": "C", - "spec": "PNG", - "text": "Gamma and chromaticity", - "url": "https://w3c.github.io/PNG-spec/#C-GammaAppendix" - } - }, - "#D-CRCAppendix": { - "current": { - "number": "D", - "spec": "PNG", - "text": "Sample CRC implementation", - "url": "https://w3c.github.io/PNG-spec/#D-CRCAppendix" - } - }, - "#E-Archive-sites": { - "current": { - "number": "E.1", - "spec": "PNG", - "text": "Archive sites", - "url": "https://w3c.github.io/PNG-spec/#E-Archive-sites" - } - }, - "#E-Intro": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#E-Intro" - } - }, - "#E-PNG-home-page": { - "current": { - "number": "E.3", - "spec": "PNG", - "text": "PNG web site", - "url": "https://w3c.github.io/PNG-spec/#E-PNG-home-page" - } - }, - "#E-Resources": { - "current": { - "number": "E", - "spec": "PNG", - "text": "Online resources", - "url": "https://w3c.github.io/PNG-spec/#E-Resources" - } - }, - "#E-Sample-implementation": { - "current": { - "number": "E.4", - "spec": "PNG", - "text": "Sample implementation and test images", - "url": "https://w3c.github.io/PNG-spec/#E-Sample-implementation" - } - }, - "#E-icc-profile-specs": { - "current": { - "number": "E.2", - "spec": "PNG", - "text": "ICC profile specifications", - "url": "https://w3c.github.io/PNG-spec/#E-icc-profile-specs" - } - }, - "#F-ChageList": { - "current": { - "number": "F", - "spec": "PNG", - "text": "Changes", - "url": "https://w3c.github.io/PNG-spec/#F-ChageList" - } - }, - "#Privacy-considerations": { - "current": { - "number": "13.4", - "spec": "PNG", - "text": "Privacy considerations", - "url": "https://w3c.github.io/PNG-spec/#Privacy-considerations" - } - }, - "#abbreviated-terms": { - "current": { - "number": "3.2", - "spec": "PNG", - "text": "Abbreviated terms", - "url": "https://w3c.github.io/PNG-spec/#abbreviated-terms" - } - }, - "#acTL-chunk": { - "current": { - "number": "11.3.6.1", - "spec": "PNG", - "text": "acTL Animation Control Chunk", - "url": "https://w3c.github.io/PNG-spec/#acTL-chunk" - } - }, - "#alpha-compaction": { - "current": { - "number": "4.4.4", - "spec": "PNG", - "text": "Alpha compaction", - "url": "https://w3c.github.io/PNG-spec/#alpha-compaction" - } - }, - "#animation-information": { - "current": { - "number": "11.3.6", - "spec": "PNG", - "text": "Animation information", - "url": "https://w3c.github.io/PNG-spec/#animation-information" - } - }, - "#apng-frame-based-animation": { - "current": { - "number": "4.9", - "spec": "PNG", - "text": "APNG: frame-based animation", - "url": "https://w3c.github.io/PNG-spec/#apng-frame-based-animation" - } - }, - "#cICP-chunk": { - "current": { - "number": "11.3.2.6", - "spec": "PNG", - "text": "cICP Coding-independent code points for video signal type identification", - "url": "https://w3c.github.io/PNG-spec/#cICP-chunk" - } - }, - "#changes-between-first-and-second-editions": { - "current": { - "number": "F.2", - "spec": "PNG", - "text": "Changes between First and Second Editions", - "url": "https://w3c.github.io/PNG-spec/#changes-between-first-and-second-editions" - } - }, - "#changes-since-the-w3c-recommendation-of-10-november-2003-png-second-edition": { - "current": { - "number": "F.1", - "spec": "PNG", - "text": "Changes since the W3C Recommendation of 10 November 2003 (PNG Second Edition)", - "url": "https://w3c.github.io/PNG-spec/#changes-since-the-w3c-recommendation-of-10-november-2003-png-second-edition" - } - }, - "#concepts": { - "current": { - "number": "4", - "spec": "PNG", - "text": "Concepts", - "url": "https://w3c.github.io/PNG-spec/#concepts" - } - }, - "#conformance": { - "current": { - "number": "", - "spec": "PNG", - "text": "15. Conformance", - "url": "https://w3c.github.io/PNG-spec/#conformance" - } - }, - "#conformance-0": { - "current": { - "number": "15.1", - "spec": "PNG", - "text": "Conformance", - "url": "https://w3c.github.io/PNG-spec/#conformance-0" - } - }, - "#definitions": { - "current": { - "number": "3.1", - "spec": "PNG", - "text": "Definitions", - "url": "https://w3c.github.io/PNG-spec/#definitions" - } - }, - "#eXIf": { - "current": { - "number": "11.3.4.5", - "spec": "PNG", - "text": "eXIf Exchangeable Image File (Exif) Profile", - "url": "https://w3c.github.io/PNG-spec/#eXIf" - } - }, - "#error-handling": { - "current": { - "number": "13.1", - "spec": "PNG", - "text": "Error handling", - "url": "https://w3c.github.io/PNG-spec/#error-handling" - } - }, - "#exif-general-recommendations": { - "current": { - "number": "11.3.4.5.1", - "spec": "PNG", - "text": "eXIf General Recommendations", - "url": "https://w3c.github.io/PNG-spec/#exif-general-recommendations" - } - }, - "#exif-recommendations-for-decoders": { - "current": { - "number": "11.3.4.5.2", - "spec": "PNG", - "text": "eXIf Recommendations for Decoders", - "url": "https://w3c.github.io/PNG-spec/#exif-recommendations-for-decoders" - } - }, - "#exif-recommendations-for-encoders": { - "current": { - "number": "11.3.4.5.3", - "spec": "PNG", - "text": "eXIf Recommendations for Encoders", - "url": "https://w3c.github.io/PNG-spec/#exif-recommendations-for-encoders" - } - }, - "#fcTL-chunk": { - "current": { - "number": "11.3.6.2", - "spec": "PNG", - "text": "fcTL Frame Control Chunk", - "url": "https://w3c.github.io/PNG-spec/#fcTL-chunk" - } - }, - "#fdAT-chunk": { - "current": { - "number": "11.3.6.3", - "spec": "PNG", - "text": "fdAT Frame Data Chunk", - "url": "https://w3c.github.io/PNG-spec/#fdAT-chunk" - } - }, - "#image-apng": { - "current": { - "number": "A.2", - "spec": "PNG", - "text": "image/apng", - "url": "https://w3c.github.io/PNG-spec/#image-apng" - } - }, - "#image-png": { - "current": { - "number": "A.1", - "spec": "PNG", - "text": "image/png", - "url": "https://w3c.github.io/PNG-spec/#image-png" - } - }, - "#images": { - "current": { - "number": "4.2", - "spec": "PNG", - "text": "Images", - "url": "https://w3c.github.io/PNG-spec/#images" - } - }, - "#informative-references": { - "current": { - "number": "G.2", - "spec": "PNG", - "text": "Informative references", - "url": "https://w3c.github.io/PNG-spec/#informative-references" - } - }, - "#introduction": { - "current": { - "number": "1", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#introduction" - } - }, - "#introduction-0": { - "current": { - "number": "", - "spec": "PNG", - "text": "Introduction", - "url": "https://w3c.github.io/PNG-spec/#introduction-0" - } - }, - "#mDCv-chunk": { - "current": { - "number": "11.3.2.7", - "spec": "PNG", - "text": "mDCv Mastering Display Color Volume", - "url": "https://w3c.github.io/PNG-spec/#mDCv-chunk" - } - }, - "#mLUm-chunk": { - "current": { - "number": "11.3.2.8", - "spec": "PNG", - "text": "mLUm Metadata for Maximum Single-Pixel and Frame-Average Luminance Levels", - "url": "https://w3c.github.io/PNG-spec/#mLUm-chunk" - } - }, - "#normative-references": { - "current": { - "number": "G.1", - "spec": "PNG", - "text": "Normative references", - "url": "https://w3c.github.io/PNG-spec/#normative-references" - } - }, - "#references": { - "current": { - "number": "G", - "spec": "PNG", - "text": "References", - "url": "https://w3c.github.io/PNG-spec/#references" - } - }, - "#scope": { - "current": { - "number": "2", - "spec": "PNG", - "text": "Scope", - "url": "https://w3c.github.io/PNG-spec/#scope" - } - }, - "#sec-defining-new-chunks": { - "current": { - "number": "5.7", - "spec": "PNG", - "text": "Defining chunks", - "url": "https://w3c.github.io/PNG-spec/#sec-defining-new-chunks" - } - }, - "#sec-defining-private-chunks": { - "current": { - "number": "5.7.3", - "spec": "PNG", - "text": "Defining private chunks", - "url": "https://w3c.github.io/PNG-spec/#sec-defining-private-chunks" - } - }, - "#sec-defining-public-chunks": { - "current": { - "number": "5.7.2", - "spec": "PNG", - "text": "Defining public chunks", - "url": "https://w3c.github.io/PNG-spec/#sec-defining-public-chunks" - } - }, - "#sec-defining-public-chunks-general": { - "current": { - "number": "5.7.1", - "spec": "PNG", - "text": "General", - "url": "https://w3c.github.io/PNG-spec/#sec-defining-public-chunks-general" - } - }, - "#sec-field-value-extensibility": { - "current": { - "number": "5.8", - "spec": "PNG", - "text": "Private field values", - "url": "https://w3c.github.io/PNG-spec/#sec-field-value-extensibility" - } - }, - "#static-and-animated-images": { - "current": { - "number": "4.1", - "spec": "PNG", - "text": "Static and Animated images", - "url": "https://w3c.github.io/PNG-spec/#static-and-animated-images" - } - }, - "#structure": { - "current": { - "number": "4.9.1", - "spec": "PNG", - "text": "Structure", - "url": "https://w3c.github.io/PNG-spec/#structure" - } - }, - "#terms-definitions-and-abbreviated-terms": { - "current": { - "number": "3", - "spec": "PNG", - "text": "Terms, definitions, and abbreviated terms", - "url": "https://w3c.github.io/PNG-spec/#terms-definitions-and-abbreviated-terms" - } - }, - "#title": { - "current": { - "number": "", - "spec": "PNG", - "text": "Portable Network Graphics (PNG) Specification (Third Edition)", - "url": "https://w3c.github.io/PNG-spec/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "PNG", - "text": "Table of Contents", - "url": "https://w3c.github.io/PNG-spec/#toc" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-pointerevents3.json b/bikeshed/spec-data/readonly/headings/headings-pointerevents3.json index 5a16f291cb..4277fcec08 100644 --- a/bikeshed/spec-data/readonly/headings/headings-pointerevents3.json +++ b/bikeshed/spec-data/readonly/headings/headings-pointerevents3.json @@ -113,15 +113,15 @@ }, "#converting-between-tiltx-tilty-and-altitudeangle-azimuthangle": { "current": { - "number": "", + "number": "4.1.4", "spec": "Pointer Events", - "text": "12. Converting between tiltX / tiltY and altitudeAngle / azimuthAngle", + "text": "Converting between tiltX / tiltY and altitudeAngle / azimuthAngle", "url": "https://w3c.github.io/pointerevents/#converting-between-tiltx-tilty-and-altitudeangle-azimuthangle" }, "snapshot": { - "number": "", + "number": "4.1.4", "spec": "Pointer Events", - "text": "12. Converting between tiltX / tiltY and altitudeAngle / azimuthAngle", + "text": "Converting between tiltX / tiltY and altitudeAngle / azimuthAngle", "url": "https://www.w3.org/TR/pointerevents3/#converting-between-tiltx-tilty-and-altitudeangle-azimuthangle" } }, @@ -167,6 +167,48 @@ "url": "https://www.w3.org/TR/pointerevents3/#determining-supported-direct-manipulation-behavior" } }, + "#event-attributes": { + "current": { + "number": "4.2.12.1", + "spec": "Pointer Events", + "text": "Event attributes", + "url": "https://w3c.github.io/pointerevents/#event-attributes" + }, + "snapshot": { + "number": "4.2.12.1", + "spec": "Pointer Events", + "text": "Event attributes", + "url": "https://www.w3.org/TR/pointerevents3/#event-attributes" + } + }, + "#event-coordinates": { + "current": { + "number": "4.2.12.2", + "spec": "Pointer Events", + "text": "Event coordinates", + "url": "https://w3c.github.io/pointerevents/#event-coordinates" + }, + "snapshot": { + "number": "4.2.12.2", + "spec": "Pointer Events", + "text": "Event coordinates", + "url": "https://www.w3.org/TR/pointerevents3/#event-coordinates" + } + }, + "#event-dispatch": { + "current": { + "number": "4.2.12.3", + "spec": "Pointer Events", + "text": "Event dispatch", + "url": "https://w3c.github.io/pointerevents/#event-dispatch" + }, + "snapshot": { + "number": "4.2.12.3", + "spec": "Pointer Events", + "text": "Event dispatch", + "url": "https://www.w3.org/TR/pointerevents3/#event-dispatch" + } + }, "#examples": { "current": { "number": "3", @@ -241,13 +283,13 @@ "current": { "number": "", "spec": "Pointer Events", - "text": "14. Glossary", + "text": "13. Glossary", "url": "https://w3c.github.io/pointerevents/#glossary" }, "snapshot": { "number": "", "spec": "Pointer Events", - "text": "14. Glossary", + "text": "13. Glossary", "url": "https://www.w3.org/TR/pointerevents3/#glossary" } }, @@ -507,13 +549,13 @@ "current": { "number": "", "spec": "Pointer Events", - "text": "13. Security and privacy considerations", + "text": "12. Security and privacy considerations", "url": "https://w3c.github.io/pointerevents/#security-and-privacy-considerations" }, "snapshot": { "number": "", "spec": "Pointer Events", - "text": "13. Security and privacy considerations", + "text": "12. Security and privacy considerations", "url": "https://www.w3.org/TR/pointerevents3/#security-and-privacy-considerations" } }, @@ -535,13 +577,13 @@ "current": { "number": "", "spec": "Pointer Events", - "text": "Level 3", + "text": "Level 4", "url": "https://w3c.github.io/pointerevents/#subtitle" }, "snapshot": { "number": "", "spec": "Pointer Events", - "text": "Level 3", + "text": "Level 4", "url": "https://www.w3.org/TR/pointerevents3/#subtitle" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-pointerlock-2.json b/bikeshed/spec-data/readonly/headings/headings-pointerlock-2.json index 3e3a9590aa..801a37db99 100644 --- a/bikeshed/spec-data/readonly/headings/headings-pointerlock-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-pointerlock-2.json @@ -27,6 +27,20 @@ "url": "https://www.w3.org/TR/pointerlock-2/#conformance" } }, + "#exit-pointer-lock": { + "current": { + "number": "2.4", + "spec": "Pointer Lock 2.0", + "text": "Exit Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#exit-pointer-lock" + }, + "snapshot": { + "number": "2.4", + "spec": "Pointer Lock 2.0", + "text": "Exit Pointer Lock", + "url": "https://www.w3.org/TR/pointerlock-2/#exit-pointer-lock" + } + }, "#extensions-to-the-document-interface": { "current": { "number": "4", @@ -55,20 +69,6 @@ "url": "https://www.w3.org/TR/pointerlock-2/#extensions-to-the-documentorshadowroot-mixin" } }, - "#extensions-to-the-element-interface": { - "current": { - "number": "3", - "spec": "Pointer Lock 2.0", - "text": "Extensions to the Element Interface", - "url": "https://w3c.github.io/pointerlock/#extensions-to-the-element-interface" - }, - "snapshot": { - "number": "3", - "spec": "Pointer Lock 2.0", - "text": "Extensions to the Element Interface", - "url": "https://www.w3.org/TR/pointerlock-2/#extensions-to-the-element-interface" - } - }, "#extensions-to-the-mouseevent-interface": { "current": { "number": "6", @@ -223,20 +223,48 @@ "url": "https://www.w3.org/TR/pointerlock-2/#normative-references" } }, - "#pointerlockchange-and-pointerlockerror-events": { + "#pointer-lock-and-interfaces": { "current": { "number": "2", "spec": "Pointer Lock 2.0", + "text": "Pointer Lock and Interfaces", + "url": "https://w3c.github.io/pointerlock/#pointer-lock-and-interfaces" + }, + "snapshot": { + "number": "2", + "spec": "Pointer Lock 2.0", + "text": "Pointer Lock and Interfaces", + "url": "https://www.w3.org/TR/pointerlock-2/#pointer-lock-and-interfaces" + } + }, + "#pointerlockchange-and-pointerlockerror-events": { + "current": { + "number": "2.3", + "spec": "Pointer Lock 2.0", "text": "pointerlockchange and pointerlockerror Events", "url": "https://w3c.github.io/pointerlock/#pointerlockchange-and-pointerlockerror-events" }, "snapshot": { - "number": "2", + "number": "2.3", "spec": "Pointer Lock 2.0", "text": "pointerlockchange and pointerlockerror Events", "url": "https://www.w3.org/TR/pointerlock-2/#pointerlockchange-and-pointerlockerror-events" } }, + "#pointerlockoptions-dictionary": { + "current": { + "number": "2.2", + "spec": "Pointer Lock 2.0", + "text": "PointerLockOptions dictionary", + "url": "https://w3c.github.io/pointerlock/#pointerlockoptions-dictionary" + }, + "snapshot": { + "number": "2.2", + "spec": "Pointer Lock 2.0", + "text": "PointerLockOptions dictionary", + "url": "https://www.w3.org/TR/pointerlock-2/#pointerlockoptions-dictionary" + } + }, "#references": { "current": { "number": "B", @@ -279,6 +307,20 @@ "url": "https://www.w3.org/TR/pointerlock-2/#relative-view-port-rotation-of-free-moving-virtual-actors" } }, + "#requestPointerLock": { + "current": { + "number": "3", + "spec": "Pointer Lock 2.0", + "text": "Extensions to the Element Interface", + "url": "https://w3c.github.io/pointerlock/#requestPointerLock" + }, + "snapshot": { + "number": "3", + "spec": "Pointer Lock 2.0", + "text": "Extensions to the Element Interface", + "url": "https://www.w3.org/TR/pointerlock-2/#requestPointerLock" + } + }, "#requirements": { "current": { "number": "8", @@ -321,6 +363,20 @@ "url": "https://www.w3.org/TR/pointerlock-2/#synthetic-cursor-interaction-with-html-dom-ui" } }, + "#the-pointer-lock-state-definition": { + "current": { + "number": "2.1", + "spec": "Pointer Lock 2.0", + "text": "The pointer lock state definition", + "url": "https://w3c.github.io/pointerlock/#the-pointer-lock-state-definition" + }, + "snapshot": { + "number": "2.1", + "spec": "Pointer Lock 2.0", + "text": "The pointer lock state definition", + "url": "https://www.w3.org/TR/pointerlock-2/#the-pointer-lock-state-definition" + } + }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-prefetch.json b/bikeshed/spec-data/readonly/headings/headings-prefetch.json index 266a48045e..44d5b55d89 100644 --- a/bikeshed/spec-data/readonly/headings/headings-prefetch.json +++ b/bikeshed/spec-data/readonly/headings/headings-prefetch.json @@ -17,7 +17,7 @@ }, "#cookies": { "current": { - "number": "4", + "number": "5", "spec": "Prefetch", "text": "Cookies", "url": "https://wicg.github.io/nav-speculation/prefetch.html#cookies" @@ -71,6 +71,14 @@ "url": "https://wicg.github.io/nav-speculation/prefetch.html#issues-index" } }, + "#navigation-timing-patches": { + "current": { + "number": "3", + "spec": "Prefetch", + "text": "Navigation Timing Patches", + "url": "https://wicg.github.io/nav-speculation/prefetch.html#navigation-timing-patches" + } + }, "#normative": { "current": { "number": "", @@ -81,12 +89,20 @@ }, "#prefetch-algorithms": { "current": { - "number": "3", + "number": "4", "spec": "Prefetch", "text": "Prefetch algorithms", "url": "https://wicg.github.io/nav-speculation/prefetch.html#prefetch-algorithms" } }, + "#privacy-considerations": { + "current": { + "number": "8", + "spec": "Prefetch", + "text": "Privacy considerations", + "url": "https://wicg.github.io/nav-speculation/prefetch.html#privacy-considerations" + } + }, "#references": { "current": { "number": "", @@ -97,12 +113,20 @@ }, "#sec-purpose-header": { "current": { - "number": "5", + "number": "6", "spec": "Prefetch", "text": "The Sec-Purpose HTTP request header", "url": "https://wicg.github.io/nav-speculation/prefetch.html#sec-purpose-header" } }, + "#security-considerations": { + "current": { + "number": "7", + "spec": "Prefetch", + "text": "Security considerations", + "url": "https://wicg.github.io/nav-speculation/prefetch.html#security-considerations" + } + }, "#status": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-prerendering-revamped.json b/bikeshed/spec-data/readonly/headings/headings-prerendering-revamped.json index ffa5f1a725..f4f1b3a1a4 100644 --- a/bikeshed/spec-data/readonly/headings/headings-prerendering-revamped.json +++ b/bikeshed/spec-data/readonly/headings/headings-prerendering-revamped.json @@ -17,7 +17,7 @@ }, "#audio-output-patch": { "current": { - "number": "6.3.17", + "number": "5.3.18", "spec": "Prerendering Revamped", "text": "Audio Output Devices API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#audio-output-patch" @@ -25,7 +25,7 @@ }, "#autoplay-patch": { "current": { - "number": "6.3.15", + "number": "5.3.15", "spec": "Prerendering Revamped", "text": "Media Autoplay", "url": "https://wicg.github.io/nav-speculation/prerendering.html#autoplay-patch" @@ -33,7 +33,7 @@ }, "#background-fetch-patch": { "current": { - "number": "6.3.19", + "number": "5.3.20", "spec": "Prerendering Revamped", "text": "Background Fetch", "url": "https://wicg.github.io/nav-speculation/prerendering.html#background-fetch-patch" @@ -65,15 +65,23 @@ }, "#credential-manamgenet-patch": { "current": { - "number": "6.3.25", + "number": "5.3.26", "spec": "Prerendering Revamped", "text": "Credential Management", "url": "https://wicg.github.io/nav-speculation/prerendering.html#credential-manamgenet-patch" } }, + "#custom-scheme-handlers-patch": { + "current": { + "number": "5.3.29", + "spec": "Prerendering Revamped", + "text": "Custom Scheme Handlers", + "url": "https://wicg.github.io/nav-speculation/prerendering.html#custom-scheme-handlers-patch" + } + }, "#delay-async-apis": { "current": { - "number": "6.3", + "number": "5.3", "spec": "Prerendering Revamped", "text": "Delaying async API results", "url": "https://wicg.github.io/nav-speculation/prerendering.html#delay-async-apis" @@ -81,7 +89,7 @@ }, "#delay-while-prerendering": { "current": { - "number": "6.3.1", + "number": "5.3.1", "spec": "Prerendering Revamped", "text": "The [DelayWhilePrerendering] extended attribute", "url": "https://wicg.github.io/nav-speculation/prerendering.html#delay-while-prerendering" @@ -97,7 +105,7 @@ }, "#eme-patch": { "current": { - "number": "6.3.14", + "number": "5.3.14", "spec": "Prerendering Revamped", "text": "Encrypted Media Extensions", "url": "https://wicg.github.io/nav-speculation/prerendering.html#eme-patch" @@ -113,7 +121,7 @@ }, "#implicitly-restricted": { "current": { - "number": "6.4", + "number": "5.4", "spec": "Prerendering Revamped", "text": "Implicitly restricted APIs", "url": "https://wicg.github.io/nav-speculation/prerendering.html#implicitly-restricted" @@ -185,7 +193,7 @@ }, "#intrusive-behaviors": { "current": { - "number": "6", + "number": "5", "spec": "Prerendering Revamped", "text": "Preventing intrusive behaviors", "url": "https://wicg.github.io/nav-speculation/prerendering.html#intrusive-behaviors" @@ -201,7 +209,7 @@ }, "#media-capture-patch": { "current": { - "number": "6.3.16", + "number": "5.3.16", "spec": "Prerendering Revamped", "text": "Media Capture and Streams", "url": "https://wicg.github.io/nav-speculation/prerendering.html#media-capture-patch" @@ -231,14 +239,6 @@ "url": "https://wicg.github.io/nav-speculation/prerendering.html#navigation" } }, - "#nonsense-behaviors": { - "current": { - "number": "5", - "spec": "Prerendering Revamped", - "text": "Preventing nonsensical behaviors", - "url": "https://wicg.github.io/nav-speculation/prerendering.html#nonsense-behaviors" - } - }, "#normative": { "current": { "number": "", @@ -249,7 +249,7 @@ }, "#patch-battery": { "current": { - "number": "6.3.11", + "number": "5.3.11", "spec": "Prerendering Revamped", "text": "Battery Status API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-battery" @@ -257,7 +257,7 @@ }, "#patch-broadcast-channel": { "current": { - "number": "6.3.3", + "number": "5.3.3", "spec": "Prerendering Revamped", "text": "BroadcastChannel", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-broadcast-channel" @@ -265,7 +265,7 @@ }, "#patch-downloading": { "current": { - "number": "6.1", + "number": "5.1", "spec": "Prerendering Revamped", "text": "Downloading resources", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-downloading" @@ -273,7 +273,7 @@ }, "#patch-gamepads": { "current": { - "number": "6.3.13", + "number": "5.3.13", "spec": "Prerendering Revamped", "text": "Gamepad", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-gamepads" @@ -281,7 +281,7 @@ }, "#patch-generic-sensor": { "current": { - "number": "6.3.9", + "number": "5.3.9", "spec": "Prerendering Revamped", "text": "Generic Sensor API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-generic-sensor" @@ -289,7 +289,7 @@ }, "#patch-geolocation": { "current": { - "number": "6.3.4", + "number": "5.3.4", "spec": "Prerendering Revamped", "text": "Geolocation API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-geolocation" @@ -297,7 +297,7 @@ }, "#patch-idle-detection": { "current": { - "number": "6.3.8", + "number": "5.3.8", "spec": "Prerendering Revamped", "text": "Idle Detection API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-idle-detection" @@ -305,7 +305,7 @@ }, "#patch-midi": { "current": { - "number": "6.3.7", + "number": "5.3.7", "spec": "Prerendering Revamped", "text": "Web MIDI API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-midi" @@ -313,7 +313,7 @@ }, "#patch-modals": { "current": { - "number": "6.2", + "number": "5.2", "spec": "Prerendering Revamped", "text": "User prompts", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-modals" @@ -321,7 +321,7 @@ }, "#patch-notifications": { "current": { - "number": "6.3.6", + "number": "5.3.6", "spec": "Prerendering Revamped", "text": "Notifications API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-notifications" @@ -329,7 +329,7 @@ }, "#patch-orientation-lock": { "current": { - "number": "6.3.12", + "number": "5.3.12", "spec": "Prerendering Revamped", "text": "Screen Orientation API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-orientation-lock" @@ -337,7 +337,7 @@ }, "#patch-serial": { "current": { - "number": "6.3.5", + "number": "5.3.5", "spec": "Prerendering Revamped", "text": "Web Serial API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-serial" @@ -345,7 +345,7 @@ }, "#patch-service-workers": { "current": { - "number": "6.3.2", + "number": "5.3.2", "spec": "Prerendering Revamped", "text": "Service Workers", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-service-workers" @@ -353,20 +353,12 @@ }, "#patch-web-nfc": { "current": { - "number": "6.3.10", + "number": "5.3.10", "spec": "Prerendering Revamped", "text": "Web NFC", "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-web-nfc" } }, - "#patch-window-apis": { - "current": { - "number": "5.1", - "spec": "Prerendering Revamped", - "text": "APIs for creating and navigating browsing contexts by name", - "url": "https://wicg.github.io/nav-speculation/prerendering.html#patch-window-apis" - } - }, "#performance-navigation-timing-extension": { "current": { "number": "3.3", @@ -377,7 +369,7 @@ }, "#persist-patch": { "current": { - "number": "6.3.20", + "number": "5.3.21", "spec": "Prerendering Revamped", "text": "Storage API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#persist-patch" @@ -399,9 +391,17 @@ "url": "https://wicg.github.io/nav-speculation/prerendering.html#prerendering-navigables" } }, + "#privacy-considerations": { + "current": { + "number": "7", + "spec": "Prerendering Revamped", + "text": "Privacy considerations", + "url": "https://wicg.github.io/nav-speculation/prerendering.html#privacy-considerations" + } + }, "#push-patch": { "current": { - "number": "6.3.18", + "number": "5.3.19", "spec": "Prerendering Revamped", "text": "Push API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#push-patch" @@ -415,6 +415,14 @@ "url": "https://wicg.github.io/nav-speculation/prerendering.html#references" } }, + "#security-considerations": { + "current": { + "number": "6", + "spec": "Prerendering Revamped", + "text": "Security considerations", + "url": "https://wicg.github.io/nav-speculation/prerendering.html#security-considerations" + } + }, "#status": { "current": { "number": "", @@ -447,9 +455,17 @@ "url": "https://wicg.github.io/nav-speculation/prerendering.html#toc" } }, + "#web-audio-patch": { + "current": { + "number": "5.3.17", + "spec": "Prerendering Revamped", + "text": "Web Audio API", + "url": "https://wicg.github.io/nav-speculation/prerendering.html#web-audio-patch" + } + }, "#web-bluetooth-patch": { "current": { - "number": "6.3.22", + "number": "5.3.23", "spec": "Prerendering Revamped", "text": "Web Bluetooth", "url": "https://wicg.github.io/nav-speculation/prerendering.html#web-bluetooth-patch" @@ -457,7 +473,7 @@ }, "#web-locks-patch": { "current": { - "number": "6.3.27", + "number": "5.3.28", "spec": "Prerendering Revamped", "text": "Web Locks API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#web-locks-patch" @@ -465,7 +481,7 @@ }, "#web-speech-patch": { "current": { - "number": "6.3.26", + "number": "5.3.27", "spec": "Prerendering Revamped", "text": "Web Speech API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#web-speech-patch" @@ -473,7 +489,7 @@ }, "#webhid-patch": { "current": { - "number": "6.3.23", + "number": "5.3.24", "spec": "Prerendering Revamped", "text": "WebHID API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#webhid-patch" @@ -481,7 +497,7 @@ }, "#webusb-patch": { "current": { - "number": "6.3.21", + "number": "5.3.22", "spec": "Prerendering Revamped", "text": "WebUSB API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#webusb-patch" @@ -489,7 +505,7 @@ }, "#webxr-patch": { "current": { - "number": "6.3.24", + "number": "5.3.25", "spec": "Prerendering Revamped", "text": "WebXR Device API", "url": "https://wicg.github.io/nav-speculation/prerendering.html#webxr-patch" diff --git a/bikeshed/spec-data/readonly/headings/headings-private-aggregation-api.json b/bikeshed/spec-data/readonly/headings/headings-private-aggregation-api.json new file mode 100644 index 0000000000..8141055be7 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-private-aggregation-api.json @@ -0,0 +1,594 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Abstract", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#abstract" + } + }, + "#aggregatable-report": { + "current": { + "number": "4.6", + "spec": "Private Aggregation API", + "text": "Aggregatable report", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregatable-report" + } + }, + "#aggregation-coordinator-structure": { + "current": { + "number": "4.7", + "spec": "Private Aggregation API", + "text": "Aggregation coordinator", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#aggregation-coordinator-structure" + } + }, + "#algorithms": { + "current": { + "number": "9", + "spec": "Private Aggregation API", + "text": "Algorithms", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#algorithms" + } + }, + "#alternative-considered": { + "current": { + "number": "1.3", + "spec": "Private Aggregation API", + "text": "Alternative considered", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#alternative-considered" + } + }, + "#batching-scope": { + "current": { + "number": "4.1", + "spec": "Private Aggregation API", + "text": "Batching scope", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#batching-scope" + } + }, + "#clearing-site-data": { + "current": { + "number": "13.2", + "spec": "Private Aggregation API", + "text": "Clearing site data", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#clearing-site-data" + } + }, + "#clearing-storage": { + "current": { + "number": "5.1", + "spec": "Private Aggregation API", + "text": "Clearing storage", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#clearing-storage" + } + }, + "#constants": { + "current": { + "number": "6", + "spec": "Private Aggregation API", + "text": "Constants", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#constants" + } + }, + "#context-type": { + "current": { + "number": "4.8", + "spec": "Private Aggregation API", + "text": "Context type", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#context-type" + } + }, + "#contribution-cache-entry": { + "current": { + "number": "4.5", + "spec": "Private Aggregation API", + "text": "Contribution cache entry", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#contribution-cache-entry" + } + }, + "#cross-network-reporting-origin-leakage": { + "current": { + "number": "13.3.1", + "spec": "Private Aggregation API", + "text": "Cross-network reporting origin leakage", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#cross-network-reporting-origin-leakage" + } + }, + "#cross-site-information-disclosure": { + "current": { + "number": "13.1", + "spec": "Private Aggregation API", + "text": "Cross-site information disclosure", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#cross-site-information-disclosure" + } + }, + "#debug-details": { + "current": { + "number": "4.4", + "spec": "Private Aggregation API", + "text": "Debug details", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-details" + } + }, + "#debug-scope": { + "current": { + "number": "4.2", + "spec": "Private Aggregation API", + "text": "Debug scope", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#debug-scope" + } + }, + "#exported-algorithms": { + "current": { + "number": "9.1", + "spec": "Private Aggregation API", + "text": "Exported algorithms", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#exported-algorithms" + } + }, + "#exposed-interface": { + "current": { + "number": "2", + "spec": "Private Aggregation API", + "text": "Exposed interface", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#exposed-interface" + } + }, + "#exposing": { + "current": { + "number": "3", + "spec": "Private Aggregation API", + "text": "Exposing to global scopes", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#exposing" + } + }, + "#extending-auction-config": { + "current": { + "number": "12.3.1", + "spec": "Private Aggregation API", + "text": "Extending auction config", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#extending-auction-config" + } + }, + "#extending-interest-group": { + "current": { + "number": "12.3.2", + "spec": "Private Aggregation API", + "text": "Extending interest group", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#extending-interest-group" + } + }, + "#extending-interestgroupreportingscriptrunnerglobalscope": { + "current": { + "number": "12.3.9", + "spec": "Private Aggregation API", + "text": "Extending InterestGroupReportingScriptRunnerGlobalScope", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#extending-interestgroupreportingscriptrunnerglobalscope" + } + }, + "#extending-interestgroupscriptrunnerglobalscope": { + "current": { + "number": "12.3.8", + "spec": "Private Aggregation API", + "text": "Extending InterestGroupScriptRunnerGlobalScope", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#extending-interestgroupscriptrunnerglobalscope" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "IDL Index", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#idl-index" + } + }, + "#implementation-defined-values": { + "current": { + "number": "7", + "spec": "Private Aggregation API", + "text": "Implementation-defined values", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#implementation-defined-values" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Index", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Terms defined by reference", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Terms defined by this specification", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Informative References", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Private Aggregation API", + "text": "Introduction", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Issues Index", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#issues-index" + } + }, + "#motivation": { + "current": { + "number": "1.1", + "spec": "Private Aggregation API", + "text": "Motivation", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#motivation" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Normative References", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#normative" + } + }, + "#on-event-contribution-cache": { + "current": { + "number": "12.3.7", + "spec": "Private Aggregation API", + "text": "On event contribution cache", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache" + } + }, + "#on-event-contribution-cache-entry": { + "current": { + "number": "12.3.6", + "spec": "Private Aggregation API", + "text": "On event contribution cache entry", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#on-event-contribution-cache-entry" + } + }, + "#overview": { + "current": { + "number": "1.2", + "spec": "Private Aggregation API", + "text": "Overview", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#overview" + } + }, + "#permissions-policy-integration": { + "current": { + "number": "8", + "spec": "Private Aggregation API", + "text": "Permissions Policy integration", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#permissions-policy-integration" + } + }, + "#permissions-policy-state": { + "current": { + "number": "12.3.3", + "spec": "Private Aggregation API", + "text": "Permissions policy state", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#permissions-policy-state" + } + }, + "#pre-specified-report-parameters-structure": { + "current": { + "number": "4.9", + "spec": "Private Aggregation API", + "text": "Pre-specified report parameters", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#pre-specified-report-parameters-structure" + } + }, + "#privacy-considerations": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "13. Privacy considerations", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#privacy-considerations" + } + }, + "#privacy-parameters": { + "current": { + "number": "13.1.6", + "spec": "Private Aggregation API", + "text": "Privacy parameters", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#privacy-parameters" + } + }, + "#protected-audience-api-algorithm-modifications": { + "current": { + "number": "12.4", + "spec": "Private Aggregation API", + "text": "Algorithm modifications", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protected-audience-api-algorithm-modifications" + } + }, + "#protected-audience-api-monkey-patches": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "12. Protected Audience API monkey patches", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protected-audience-api-monkey-patches" + } + }, + "#protected-audience-api-specific-new-algorithms": { + "current": { + "number": "12.5", + "spec": "Private Aggregation API", + "text": "New algorithms", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protected-audience-api-specific-new-algorithms" + } + }, + "#protected-audience-api-specific-structures": { + "current": { + "number": "12.3", + "spec": "Private Aggregation API", + "text": "Structures", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protected-audience-api-specific-structures" + } + }, + "#protected-audience-api-specific-webidl": { + "current": { + "number": "12.1", + "spec": "Private Aggregation API", + "text": "New WebIDL", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protected-audience-api-specific-webidl" + } + }, + "#protected-audience-api-webidl-modifications": { + "current": { + "number": "12.2", + "spec": "Private Aggregation API", + "text": "WebIDL modifications", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protected-audience-api-webidl-modifications" + } + }, + "#protecting-against-leaks-via-payload-size": { + "current": { + "number": "13.1.4", + "spec": "Private Aggregation API", + "text": "Protecting against leaks via payload size", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protecting-against-leaks-via-payload-size" + } + }, + "#protecting-against-leaks-via-the-number-of-reports": { + "current": { + "number": "13.1.3", + "spec": "Private Aggregation API", + "text": "Protecting against leaks via the number of reports", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protecting-against-leaks-via-the-number-of-reports" + } + }, + "#protecting-the-histogram-contributions": { + "current": { + "number": "14.2", + "spec": "Private Aggregation API", + "text": "Protecting the histogram contributions", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#protecting-the-histogram-contributions" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "References", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#references" + } + }, + "#reporting-delay-concerns": { + "current": { + "number": "13.3", + "spec": "Private Aggregation API", + "text": "Reporting delay concerns", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#reporting-delay-concerns" + } + }, + "#restricted-contribution-processing": { + "current": { + "number": "13.1.1", + "spec": "Private Aggregation API", + "text": "Restricted contribution processing", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#restricted-contribution-processing" + } + }, + "#same-origin-policy": { + "current": { + "number": "14.1", + "spec": "Private Aggregation API", + "text": "Same-origin policy", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#same-origin-policy" + } + }, + "#scheduling-reports": { + "current": { + "number": "9.2", + "spec": "Private Aggregation API", + "text": "Scheduling reports", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#scheduling-reports" + } + }, + "#scoping-details": { + "current": { + "number": "4.3", + "spec": "Private Aggregation API", + "text": "Scoping details", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#scoping-details" + } + }, + "#security-considerations": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "14. Security considerations", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#security-considerations" + } + }, + "#sending-reports": { + "current": { + "number": "9.3", + "spec": "Private Aggregation API", + "text": "Sending reports", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#sending-reports" + } + }, + "#serializing-reports": { + "current": { + "number": "9.4", + "spec": "Private Aggregation API", + "text": "Serializing reports", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#serializing-reports" + } + }, + "#set-local-testing-mode": { + "current": { + "number": "10.1", + "spec": "Private Aggregation API", + "text": "Set local testing mode", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#set-local-testing-mode" + } + }, + "#shared-storage-api-monkey-patches": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "11. Shared Storage API monkey patches", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#shared-storage-api-monkey-patches" + } + }, + "#shared-storage-implementation-defined-values": { + "current": { + "number": "11.1", + "spec": "Private Aggregation API", + "text": "Implementation-defined values", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#shared-storage-implementation-defined-values" + } + }, + "#signal-base-value": { + "current": { + "number": "12.3.4", + "spec": "Private Aggregation API", + "text": "Signal base value", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#signal-base-value" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Status of this document", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#sotd" + } + }, + "#storage": { + "current": { + "number": "5", + "spec": "Private Aggregation API", + "text": "Storage", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#storage" + } + }, + "#structures": { + "current": { + "number": "4", + "spec": "Private Aggregation API", + "text": "Structures", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#structures" + } + }, + "#temporary-debugging-mechanism": { + "current": { + "number": "13.1.5", + "spec": "Private Aggregation API", + "text": "Temporary debugging mechanism", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#temporary-debugging-mechanism" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Private Aggregation API", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Table of Contents", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#toc" + } + }, + "#unencrypted-metadata": { + "current": { + "number": "13.1.2", + "spec": "Private Aggregation API", + "text": "Unencrypted metadata", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#unencrypted-metadata" + } + }, + "#user-agent-automation": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "10. User-agent automation", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#user-agent-automation" + } + }, + "#user-presence-tracking": { + "current": { + "number": "13.3.2", + "spec": "Private Aggregation API", + "text": "User-presence tracking", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#user-presence-tracking" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Conformance", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Private Aggregation API", + "text": "Document conventions", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#w3c-conventions" + } + }, + "#worklet-function": { + "current": { + "number": "12.3.5", + "spec": "Private Aggregation API", + "text": "Worklet function", + "url": "https://patcg-individual-drafts.github.io/private-aggregation-api/#worklet-function" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-local-network-access.json b/bikeshed/spec-data/readonly/headings/headings-private-network-access.json similarity index 55% rename from bikeshed/spec-data/readonly/headings/headings-local-network-access.json rename to bikeshed/spec-data/readonly/headings/headings-private-network-access.json index 9c98622c82..14e5fcdb2c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-local-network-access.json +++ b/bikeshed/spec-data/readonly/headings/headings-private-network-access.json @@ -4,7 +4,7 @@ "number": "", "spec": "Private Network Access", "text": "Abstract", - "url": "https://wicg.github.io/local-network-access/#abstract" + "url": "https://wicg.github.io/private-network-access/#abstract" } }, "#acknowledgements": { @@ -12,15 +12,15 @@ "number": "7", "spec": "Private Network Access", "text": "Acknowledgements", - "url": "https://wicg.github.io/local-network-access/#acknowledgements" + "url": "https://wicg.github.io/private-network-access/#acknowledgements" } }, "#cors-preflight": { "current": { - "number": "3.1.2", + "number": "3.4.1", "spec": "Private Network Access", "text": "CORS preflight", - "url": "https://wicg.github.io/local-network-access/#cors-preflight" + "url": "https://wicg.github.io/private-network-access/#cors-preflight" } }, "#cross-network-confusion": { @@ -28,7 +28,7 @@ "number": "5.5", "spec": "Private Network Access", "text": "Cross-network confusion", - "url": "https://wicg.github.io/local-network-access/#cross-network-confusion" + "url": "https://wicg.github.io/private-network-access/#cross-network-confusion" } }, "#csp": { @@ -36,7 +36,7 @@ "number": "2.4", "spec": "Private Network Access", "text": "The treat-as-public-address Content Security Policy Directive", - "url": "https://wicg.github.io/local-network-access/#csp" + "url": "https://wicg.github.io/private-network-access/#csp" } }, "#dns-rebinding": { @@ -44,7 +44,7 @@ "number": "5.3", "spec": "Private Network Access", "text": "DNS Rebinding", - "url": "https://wicg.github.io/local-network-access/#dns-rebinding" + "url": "https://wicg.github.io/private-network-access/#dns-rebinding" } }, "#example-deny-by-default": { @@ -52,7 +52,15 @@ "number": "1.2.1", "spec": "Private Network Access", "text": "Secure by Default", - "url": "https://wicg.github.io/local-network-access/#example-deny-by-default" + "url": "https://wicg.github.io/private-network-access/#example-deny-by-default" + } + }, + "#example-mixed-content": { + "current": { + "number": "1.2.4", + "spec": "Private Network Access", + "text": "Mixed Content", + "url": "https://wicg.github.io/private-network-access/#example-mixed-content" } }, "#example-opt-in": { @@ -60,7 +68,7 @@ "number": "1.2.2", "spec": "Private Network Access", "text": "Opting-In", - "url": "https://wicg.github.io/local-network-access/#example-opt-in" + "url": "https://wicg.github.io/private-network-access/#example-opt-in" } }, "#examples": { @@ -68,7 +76,7 @@ "number": "1.2", "spec": "Private Network Access", "text": "Examples", - "url": "https://wicg.github.io/local-network-access/#examples" + "url": "https://wicg.github.io/private-network-access/#examples" } }, "#feature-detect": { @@ -76,7 +84,23 @@ "number": "2.5", "spec": "Private Network Access", "text": "Feature Detection", - "url": "https://wicg.github.io/local-network-access/#feature-detect" + "url": "https://wicg.github.io/private-network-access/#feature-detect" + } + }, + "#fetch-api": { + "current": { + "number": "3.4.3", + "spec": "Private Network Access", + "text": "Fetch API", + "url": "https://wicg.github.io/private-network-access/#fetch-api" + } + }, + "#fetching": { + "current": { + "number": "3.4.2", + "spec": "Private Network Access", + "text": "Fetching", + "url": "https://wicg.github.io/private-network-access/#fetching" } }, "#file-url": { @@ -84,15 +108,15 @@ "number": "4.1", "spec": "Private Network Access", "text": "Where do file URLs fit?", - "url": "https://wicg.github.io/local-network-access/#file-url" + "url": "https://wicg.github.io/private-network-access/#file-url" } }, "#forbidden-header-names": { "current": { - "number": "3.1.3", + "number": "3.4.4", "spec": "Private Network Access", "text": "Forbidden header names", - "url": "https://wicg.github.io/local-network-access/#forbidden-header-names" + "url": "https://wicg.github.io/private-network-access/#forbidden-header-names" } }, "#framework": { @@ -100,7 +124,7 @@ "number": "2", "spec": "Private Network Access", "text": "Framework", - "url": "https://wicg.github.io/local-network-access/#framework" + "url": "https://wicg.github.io/private-network-access/#framework" } }, "#goals": { @@ -108,7 +132,7 @@ "number": "1.1", "spec": "Private Network Access", "text": "Goals", - "url": "https://wicg.github.io/local-network-access/#goals" + "url": "https://wicg.github.io/private-network-access/#goals" } }, "#headers": { @@ -116,7 +140,7 @@ "number": "2.3", "spec": "Private Network Access", "text": "Additional CORS Headers", - "url": "https://wicg.github.io/local-network-access/#headers" + "url": "https://wicg.github.io/private-network-access/#headers" } }, "#http-cache": { @@ -124,7 +148,7 @@ "number": "4.3", "spec": "Private Network Access", "text": "HTTP Cache", - "url": "https://wicg.github.io/local-network-access/#http-cache" + "url": "https://wicg.github.io/private-network-access/#http-cache" } }, "#http-cache-main-resources": { @@ -132,7 +156,7 @@ "number": "4.3.1", "spec": "Private Network Access", "text": "Main resources", - "url": "https://wicg.github.io/local-network-access/#http-cache-main-resources" + "url": "https://wicg.github.io/private-network-access/#http-cache-main-resources" } }, "#http-cache-poisoning": { @@ -140,7 +164,7 @@ "number": "5.6.2", "spec": "Private Network Access", "text": "HTTP cache poisoning", - "url": "https://wicg.github.io/local-network-access/#http-cache-poisoning" + "url": "https://wicg.github.io/private-network-access/#http-cache-poisoning" } }, "#http-cache-security": { @@ -148,7 +172,7 @@ "number": "5.6", "spec": "Private Network Access", "text": "HTTP cache", - "url": "https://wicg.github.io/local-network-access/#http-cache-security" + "url": "https://wicg.github.io/private-network-access/#http-cache-security" } }, "#http-cache-security-subresources": { @@ -156,7 +180,7 @@ "number": "5.6.1", "spec": "Private Network Access", "text": "Applying checks to subresources", - "url": "https://wicg.github.io/local-network-access/#http-cache-security-subresources" + "url": "https://wicg.github.io/private-network-access/#http-cache-security-subresources" } }, "#http-cache-subresources": { @@ -164,7 +188,7 @@ "number": "4.3.2", "spec": "Private Network Access", "text": "Subresources", - "url": "https://wicg.github.io/local-network-access/#http-cache-subresources" + "url": "https://wicg.github.io/private-network-access/#http-cache-subresources" } }, "#iana-considerations": { @@ -172,7 +196,15 @@ "number": "6", "spec": "Private Network Access", "text": "IANA Considerations", - "url": "https://wicg.github.io/local-network-access/#iana-considerations" + "url": "https://wicg.github.io/private-network-access/#iana-considerations" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Private Network Access", + "text": "IDL Index", + "url": "https://wicg.github.io/private-network-access/#idl-index" } }, "#implementation-considerations": { @@ -180,7 +212,7 @@ "number": "4", "spec": "Private Network Access", "text": "Implementation Considerations", - "url": "https://wicg.github.io/local-network-access/#implementation-considerations" + "url": "https://wicg.github.io/private-network-access/#implementation-considerations" } }, "#index": { @@ -188,7 +220,7 @@ "number": "", "spec": "Private Network Access", "text": "Index", - "url": "https://wicg.github.io/local-network-access/#index" + "url": "https://wicg.github.io/private-network-access/#index" } }, "#index-defined-elsewhere": { @@ -196,7 +228,7 @@ "number": "", "spec": "Private Network Access", "text": "Terms defined by reference", - "url": "https://wicg.github.io/local-network-access/#index-defined-elsewhere" + "url": "https://wicg.github.io/private-network-access/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -204,7 +236,7 @@ "number": "", "spec": "Private Network Access", "text": "Terms defined by this specification", - "url": "https://wicg.github.io/local-network-access/#index-defined-here" + "url": "https://wicg.github.io/private-network-access/#index-defined-here" } }, "#informative": { @@ -212,31 +244,47 @@ "number": "", "spec": "Private Network Access", "text": "Informative References", - "url": "https://wicg.github.io/local-network-access/#informative" + "url": "https://wicg.github.io/private-network-access/#informative" } }, "#integration-fetch": { "current": { - "number": "3.1", + "number": "3.4", "spec": "Private Network Access", "text": "Integration with Fetch", - "url": "https://wicg.github.io/local-network-access/#integration-fetch" + "url": "https://wicg.github.io/private-network-access/#integration-fetch" } }, "#integration-html": { "current": { - "number": "3.3", + "number": "3.6", "spec": "Private Network Access", "text": "Integration with HTML", - "url": "https://wicg.github.io/local-network-access/#integration-html" + "url": "https://wicg.github.io/private-network-access/#integration-html" } }, - "#integration-websockets": { + "#integration-mixed-content": { + "current": { + "number": "3.3", + "spec": "Private Network Access", + "text": "Integration with Mixed Content", + "url": "https://wicg.github.io/private-network-access/#integration-mixed-content" + } + }, + "#integration-permissions": { "current": { "number": "3.2", "spec": "Private Network Access", + "text": "Integration with Permissions", + "url": "https://wicg.github.io/private-network-access/#integration-permissions" + } + }, + "#integration-websockets": { + "current": { + "number": "3.5", + "spec": "Private Network Access", "text": "Integration with WebSockets", - "url": "https://wicg.github.io/local-network-access/#integration-websockets" + "url": "https://wicg.github.io/private-network-access/#integration-websockets" } }, "#integrations": { @@ -244,7 +292,7 @@ "number": "3", "spec": "Private Network Access", "text": "Integrations", - "url": "https://wicg.github.io/local-network-access/#integrations" + "url": "https://wicg.github.io/private-network-access/#integrations" } }, "#intro": { @@ -252,7 +300,7 @@ "number": "1", "spec": "Private Network Access", "text": "Introduction", - "url": "https://wicg.github.io/local-network-access/#intro" + "url": "https://wicg.github.io/private-network-access/#intro" } }, "#ip-address-space-heading": { @@ -260,7 +308,7 @@ "number": "2.1", "spec": "Private Network Access", "text": "IP Address Space", - "url": "https://wicg.github.io/local-network-access/#ip-address-space-heading" + "url": "https://wicg.github.io/private-network-access/#ip-address-space-heading" } }, "#issues-index": { @@ -268,7 +316,7 @@ "number": "", "spec": "Private Network Access", "text": "Issues Index", - "url": "https://wicg.github.io/local-network-access/#issues-index" + "url": "https://wicg.github.io/private-network-access/#issues-index" } }, "#mixed-content": { @@ -276,7 +324,7 @@ "number": "5.2", "spec": "Private Network Access", "text": "Mixed Content", - "url": "https://wicg.github.io/local-network-access/#mixed-content" + "url": "https://wicg.github.io/private-network-access/#mixed-content" } }, "#normative": { @@ -284,7 +332,15 @@ "number": "", "spec": "Private Network Access", "text": "Normative References", - "url": "https://wicg.github.io/local-network-access/#normative" + "url": "https://wicg.github.io/private-network-access/#normative" + } + }, + "#permission-prompt": { + "current": { + "number": "2.6", + "spec": "Private Network Access", + "text": "Permission Prompt", + "url": "https://wicg.github.io/private-network-access/#permission-prompt" } }, "#private-network-request-heading": { @@ -292,7 +348,7 @@ "number": "2.2", "spec": "Private Network Access", "text": "Private Network Request", - "url": "https://wicg.github.io/local-network-access/#private-network-request-heading" + "url": "https://wicg.github.io/private-network-access/#private-network-request-heading" } }, "#proxies": { @@ -300,7 +356,7 @@ "number": "4.2", "spec": "Private Network Access", "text": "Proxies", - "url": "https://wicg.github.io/local-network-access/#proxies" + "url": "https://wicg.github.io/private-network-access/#proxies" } }, "#references": { @@ -308,7 +364,15 @@ "number": "", "spec": "Private Network Access", "text": "References", - "url": "https://wicg.github.io/local-network-access/#references" + "url": "https://wicg.github.io/private-network-access/#references" + } + }, + "#rollout-difficulties": { + "current": { + "number": "4.4", + "spec": "Private Network Access", + "text": "Rollout difficulties", + "url": "https://wicg.github.io/private-network-access/#rollout-difficulties" } }, "#scope-mitigation": { @@ -316,15 +380,15 @@ "number": "5.4", "spec": "Private Network Access", "text": "Scope of Mitigation", - "url": "https://wicg.github.io/local-network-access/#scope-mitigation" + "url": "https://wicg.github.io/private-network-access/#scope-mitigation" } }, "#secure-context-restriction": { "current": { - "number": "3.1.1", + "number": "3.1", "spec": "Private Network Access", "text": "Secure context restriction", - "url": "https://wicg.github.io/local-network-access/#secure-context-restriction" + "url": "https://wicg.github.io/private-network-access/#secure-context-restriction" } }, "#security-and-privacy-considerations": { @@ -332,7 +396,7 @@ "number": "5", "spec": "Private Network Access", "text": "Security and Privacy Considerations", - "url": "https://wicg.github.io/local-network-access/#security-and-privacy-considerations" + "url": "https://wicg.github.io/private-network-access/#security-and-privacy-considerations" } }, "#shortlinks": { @@ -340,7 +404,7 @@ "number": "1.2.3", "spec": "Private Network Access", "text": "Navigation", - "url": "https://wicg.github.io/local-network-access/#shortlinks" + "url": "https://wicg.github.io/private-network-access/#shortlinks" } }, "#status": { @@ -348,7 +412,7 @@ "number": "", "spec": "Private Network Access", "text": "Status of this document", - "url": "https://wicg.github.io/local-network-access/#status" + "url": "https://wicg.github.io/private-network-access/#status" } }, "#toc": { @@ -356,7 +420,7 @@ "number": "", "spec": "Private Network Access", "text": "Table of Contents", - "url": "https://wicg.github.io/local-network-access/#toc" + "url": "https://wicg.github.io/private-network-access/#toc" } }, "#user-mediation": { @@ -364,15 +428,15 @@ "number": "5.1", "spec": "Private Network Access", "text": "User Mediation", - "url": "https://wicg.github.io/local-network-access/#user-mediation" + "url": "https://wicg.github.io/private-network-access/#user-mediation" } }, "#workers": { "current": { - "number": "3.4", + "number": "3.7", "spec": "Private Network Access", "text": "Workers", - "url": "https://wicg.github.io/local-network-access/#workers" + "url": "https://wicg.github.io/private-network-access/#workers" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-proximity.json b/bikeshed/spec-data/readonly/headings/headings-proximity.json index 13266dfbe1..ee8fbf6ea3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-proximity.json +++ b/bikeshed/spec-data/readonly/headings/headings-proximity.json @@ -15,13 +15,13 @@ }, "#abstract-operations": { "current": { - "number": "6", + "number": "7", "spec": "Proximity Sensor", "text": "Abstract Operations", "url": "https://w3c.github.io/proximity/#abstract-operations" }, "snapshot": { - "number": "6", + "number": "7", "spec": "Proximity Sensor", "text": "Abstract Operations", "url": "https://www.w3.org/TR/proximity/#abstract-operations" @@ -29,27 +29,27 @@ }, "#acknowledgements": { "current": { - "number": "9", + "number": "", "spec": "Proximity Sensor", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://w3c.github.io/proximity/#acknowledgements" }, "snapshot": { - "number": "9", + "number": "", "spec": "Proximity Sensor", - "text": "Acknowledgements", + "text": "10. Acknowledgements", "url": "https://www.w3.org/TR/proximity/#acknowledgements" } }, "#api": { "current": { - "number": "5", + "number": "6", "spec": "Proximity Sensor", "text": "API", "url": "https://w3c.github.io/proximity/#api" }, "snapshot": { - "number": "5", + "number": "6", "spec": "Proximity Sensor", "text": "API", "url": "https://www.w3.org/TR/proximity/#api" @@ -57,13 +57,13 @@ }, "#automation": { "current": { - "number": "7", + "number": "8", "spec": "Proximity Sensor", "text": "Automation", "url": "https://w3c.github.io/proximity/#automation" }, "snapshot": { - "number": "7", + "number": "8", "spec": "Proximity Sensor", "text": "Automation", "url": "https://www.w3.org/TR/proximity/#automation" @@ -73,25 +73,25 @@ "current": { "number": "", "spec": "Proximity Sensor", - "text": "10. Conformance", + "text": "11. Conformance", "url": "https://w3c.github.io/proximity/#conformance" }, "snapshot": { "number": "", "spec": "Proximity Sensor", - "text": "10. Conformance", + "text": "11. Conformance", "url": "https://www.w3.org/TR/proximity/#conformance" } }, "#construct-a-proximity-sensor-object": { "current": { - "number": "6.1", + "number": "7.1", "spec": "Proximity Sensor", "text": "Construct a proximity sensor object", "url": "https://w3c.github.io/proximity/#construct-a-proximity-sensor-object" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "Proximity Sensor", "text": "Construct a proximity sensor object", "url": "https://www.w3.org/TR/proximity/#construct-a-proximity-sensor-object" @@ -183,41 +183,27 @@ }, "#limitations-proximity-sensors": { "current": { - "number": "8", + "number": "9", "spec": "Proximity Sensor", "text": "Limitations of Proximity Sensors", "url": "https://w3c.github.io/proximity/#limitations-proximity-sensors" }, "snapshot": { - "number": "8", + "number": "9", "spec": "Proximity Sensor", "text": "Limitations of Proximity Sensors", "url": "https://www.w3.org/TR/proximity/#limitations-proximity-sensors" } }, - "#mock-proximity-sensor-type": { - "current": { - "number": "7.1", - "spec": "Proximity Sensor", - "text": "Mock Sensor Type", - "url": "https://w3c.github.io/proximity/#mock-proximity-sensor-type" - }, - "snapshot": { - "number": "7.1", - "spec": "Proximity Sensor", - "text": "Mock Sensor Type", - "url": "https://www.w3.org/TR/proximity/#mock-proximity-sensor-type" - } - }, "#model": { "current": { - "number": "4", + "number": "5", "spec": "Proximity Sensor", "text": "Model", "url": "https://w3c.github.io/proximity/#model" }, "snapshot": { - "number": "4", + "number": "5", "spec": "Proximity Sensor", "text": "Model", "url": "https://www.w3.org/TR/proximity/#model" @@ -237,15 +223,43 @@ "url": "https://www.w3.org/TR/proximity/#normative" } }, + "#permissions-policy-integration": { + "current": { + "number": "4", + "spec": "Proximity Sensor", + "text": "Permissions Policy integration", + "url": "https://w3c.github.io/proximity/#permissions-policy-integration" + }, + "snapshot": { + "number": "4", + "spec": "Proximity Sensor", + "text": "Permissions Policy integration", + "url": "https://www.w3.org/TR/proximity/#permissions-policy-integration" + } + }, + "#proximity-reading-parsing-algorithm": { + "current": { + "number": "8.1", + "spec": "Proximity Sensor", + "text": "Proximity reading parsing algorithm", + "url": "https://w3c.github.io/proximity/#proximity-reading-parsing-algorithm" + }, + "snapshot": { + "number": "8.1", + "spec": "Proximity Sensor", + "text": "Proximity reading parsing algorithm", + "url": "https://www.w3.org/TR/proximity/#proximity-reading-parsing-algorithm" + } + }, "#proximity-sensor-distance": { "current": { - "number": "5.1.1", + "number": "6.1.1", "spec": "Proximity Sensor", "text": "The distance attribute", "url": "https://w3c.github.io/proximity/#proximity-sensor-distance" }, "snapshot": { - "number": "5.1.1", + "number": "6.1.1", "spec": "Proximity Sensor", "text": "The distance attribute", "url": "https://www.w3.org/TR/proximity/#proximity-sensor-distance" @@ -253,13 +267,13 @@ }, "#proximity-sensor-interface": { "current": { - "number": "5.1", + "number": "6.1", "spec": "Proximity Sensor", "text": "The ProximitySensor Interface", "url": "https://w3c.github.io/proximity/#proximity-sensor-interface" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "Proximity Sensor", "text": "The ProximitySensor Interface", "url": "https://www.w3.org/TR/proximity/#proximity-sensor-interface" @@ -267,13 +281,13 @@ }, "#proximity-sensor-max": { "current": { - "number": "5.1.2", + "number": "6.1.2", "spec": "Proximity Sensor", "text": "The max attribute", "url": "https://w3c.github.io/proximity/#proximity-sensor-max" }, "snapshot": { - "number": "5.1.2", + "number": "6.1.2", "spec": "Proximity Sensor", "text": "The max attribute", "url": "https://www.w3.org/TR/proximity/#proximity-sensor-max" @@ -281,13 +295,13 @@ }, "#proximity-sensor-near": { "current": { - "number": "5.1.3", + "number": "6.1.3", "spec": "Proximity Sensor", "text": "The near attribute", "url": "https://w3c.github.io/proximity/#proximity-sensor-near" }, "snapshot": { - "number": "5.1.3", + "number": "6.1.3", "spec": "Proximity Sensor", "text": "The near attribute", "url": "https://www.w3.org/TR/proximity/#proximity-sensor-near" diff --git a/bikeshed/spec-data/readonly/headings/headings-pub-manifest.json b/bikeshed/spec-data/readonly/headings/headings-pub-manifest.json new file mode 100644 index 0000000000..db53dc4454 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-pub-manifest.json @@ -0,0 +1,1444 @@ +{ + "#Entity": { + "current": { + "number": "A.1.2", + "spec": "Publication Manifest", + "text": "The Entity Dictionary", + "url": "https://w3c.github.io/pub-manifest/#Entity" + }, + "snapshot": { + "number": "A.1.2", + "spec": "Publication Manifest", + "text": "The Entity Dictionary", + "url": "https://www.w3.org/TR/pub-manifest/#Entity" + } + }, + "#LinkedResource": { + "current": { + "number": "A.1.1", + "spec": "Publication Manifest", + "text": "The LinkedResource Dictionary", + "url": "https://w3c.github.io/pub-manifest/#LinkedResource" + }, + "snapshot": { + "number": "A.1.1", + "spec": "Publication Manifest", + "text": "The LinkedResource Dictionary", + "url": "https://www.w3.org/TR/pub-manifest/#LinkedResource" + } + }, + "#LocalizableString": { + "current": { + "number": "A.1.3", + "spec": "Publication Manifest", + "text": "The LocalizableString Dictionary", + "url": "https://w3c.github.io/pub-manifest/#LocalizableString" + }, + "snapshot": { + "number": "A.1.3", + "spec": "Publication Manifest", + "text": "The LocalizableString Dictionary", + "url": "https://www.w3.org/TR/pub-manifest/#LocalizableString" + } + }, + "#abridged": { + "current": { + "number": "4.7.1.1", + "spec": "Publication Manifest", + "text": "Abridged", + "url": "https://w3c.github.io/pub-manifest/#abridged" + }, + "snapshot": { + "number": "4.7.1.1", + "spec": "Publication Manifest", + "text": "Abridged", + "url": "https://www.w3.org/TR/pub-manifest/#abridged" + } + }, + "#accessibility": { + "current": { + "number": "4.7.1.2", + "spec": "Publication Manifest", + "text": "Accessibility", + "url": "https://w3c.github.io/pub-manifest/#accessibility" + }, + "snapshot": { + "number": "4.7.1.2", + "spec": "Publication Manifest", + "text": "Accessibility", + "url": "https://www.w3.org/TR/pub-manifest/#accessibility" + } + }, + "#accessibility-report": { + "current": { + "number": "4.8.2.1", + "spec": "Publication Manifest", + "text": "Accessibility Report", + "url": "https://w3c.github.io/pub-manifest/#accessibility-report" + }, + "snapshot": { + "number": "4.8.2.1", + "spec": "Publication Manifest", + "text": "Accessibility Report", + "url": "https://www.w3.org/TR/pub-manifest/#accessibility-report" + } + }, + "#ack": { + "current": { + "number": "I", + "spec": "Publication Manifest", + "text": "Acknowledgements", + "url": "https://w3c.github.io/pub-manifest/#ack" + }, + "snapshot": { + "number": "I", + "spec": "Publication Manifest", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/pub-manifest/#ack" + } + }, + "#add-default-values": { + "current": { + "number": "7.4.3", + "spec": "Publication Manifest", + "text": "Add Default Values", + "url": "https://w3c.github.io/pub-manifest/#add-default-values" + }, + "snapshot": { + "number": "7.4.3", + "spec": "Publication Manifest", + "text": "Add Default Values", + "url": "https://www.w3.org/TR/pub-manifest/#add-default-values" + } + }, + "#address": { + "current": { + "number": "4.7.1.3", + "spec": "Publication Manifest", + "text": "Address", + "url": "https://w3c.github.io/pub-manifest/#address" + }, + "snapshot": { + "number": "4.7.1.3", + "spec": "Publication Manifest", + "text": "Address", + "url": "https://www.w3.org/TR/pub-manifest/#address" + } + }, + "#app-internal-rep-data-model": { + "current": { + "number": "A", + "spec": "Publication Manifest", + "text": "Internal Representation Data Model", + "url": "https://w3c.github.io/pub-manifest/#app-internal-rep-data-model" + }, + "snapshot": { + "number": "A", + "spec": "Publication Manifest", + "text": "Internal Representation Data Model", + "url": "https://www.w3.org/TR/pub-manifest/#app-internal-rep-data-model" + } + }, + "#app-manifest-examples": { + "current": { + "number": "F", + "spec": "Publication Manifest", + "text": "Manifest Examples", + "url": "https://w3c.github.io/pub-manifest/#app-manifest-examples" + }, + "snapshot": { + "number": "F", + "spec": "Publication Manifest", + "text": "Manifest Examples", + "url": "https://www.w3.org/TR/pub-manifest/#app-manifest-examples" + } + }, + "#app-properties-index": { + "current": { + "number": "G", + "spec": "Publication Manifest", + "text": "Properties Index", + "url": "https://w3c.github.io/pub-manifest/#app-properties-index" + }, + "snapshot": { + "number": "G", + "spec": "Publication Manifest", + "text": "Properties Index", + "url": "https://www.w3.org/TR/pub-manifest/#app-properties-index" + } + }, + "#app-rel-index": { + "current": { + "number": "H", + "spec": "Publication Manifest", + "text": "Resource Relations Index", + "url": "https://w3c.github.io/pub-manifest/#app-rel-index" + }, + "snapshot": { + "number": "H", + "spec": "Publication Manifest", + "text": "Resource Relations Index", + "url": "https://www.w3.org/TR/pub-manifest/#app-rel-index" + } + }, + "#app-select-alternate": { + "current": { + "number": "B", + "spec": "Publication Manifest", + "text": "Selecting an Alternate Resource", + "url": "https://w3c.github.io/pub-manifest/#app-select-alternate" + }, + "snapshot": { + "number": "B", + "spec": "Publication Manifest", + "text": "Selecting an Alternate Resource", + "url": "https://www.w3.org/TR/pub-manifest/#app-select-alternate" + } + }, + "#app-toc-html": { + "current": { + "number": "C.2", + "spec": "Publication Manifest", + "text": "HTML Structure", + "url": "https://w3c.github.io/pub-manifest/#app-toc-html" + }, + "snapshot": { + "number": "C.2", + "spec": "Publication Manifest", + "text": "HTML Structure", + "url": "https://www.w3.org/TR/pub-manifest/#app-toc-html" + } + }, + "#app-toc-html-examples": { + "current": { + "number": "C.2.1", + "spec": "Publication Manifest", + "text": "Examples", + "url": "https://w3c.github.io/pub-manifest/#app-toc-html-examples" + }, + "snapshot": { + "number": "C.2.1", + "spec": "Publication Manifest", + "text": "Examples", + "url": "https://www.w3.org/TR/pub-manifest/#app-toc-html-examples" + } + }, + "#app-toc-html-intro": { + "current": { + "number": "C.1", + "spec": "Publication Manifest", + "text": "Introduction", + "url": "https://w3c.github.io/pub-manifest/#app-toc-html-intro" + }, + "snapshot": { + "number": "C.1", + "spec": "Publication Manifest", + "text": "Introduction", + "url": "https://www.w3.org/TR/pub-manifest/#app-toc-html-intro" + } + }, + "#app-toc-structure": { + "current": { + "number": "C", + "spec": "Publication Manifest", + "text": "Machine-Processable Table of Contents", + "url": "https://w3c.github.io/pub-manifest/#app-toc-structure" + }, + "snapshot": { + "number": "C", + "spec": "Publication Manifest", + "text": "Machine-Processable Table of Contents", + "url": "https://www.w3.org/TR/pub-manifest/#app-toc-structure" + } + }, + "#app-toc-ua": { + "current": { + "number": "C.3", + "spec": "Publication Manifest", + "text": "User Agent Processing", + "url": "https://w3c.github.io/pub-manifest/#app-toc-ua" + }, + "snapshot": { + "number": "C.3", + "spec": "Publication Manifest", + "text": "User Agent Processing", + "url": "https://www.w3.org/TR/pub-manifest/#app-toc-ua" + } + }, + "#audiobook": { + "current": { + "number": "F.3", + "spec": "Publication Manifest", + "text": "Audiobook", + "url": "https://w3c.github.io/pub-manifest/#audiobook" + }, + "snapshot": { + "number": "F.3", + "spec": "Publication Manifest", + "text": "Audiobook", + "url": "https://www.w3.org/TR/pub-manifest/#audiobook" + } + }, + "#basic-manifest": { + "current": { + "number": "F.1", + "spec": "Publication Manifest", + "text": "Basic Manifest", + "url": "https://w3c.github.io/pub-manifest/#basic-manifest" + }, + "snapshot": { + "number": "F.1", + "spec": "Publication Manifest", + "text": "Basic Manifest", + "url": "https://www.w3.org/TR/pub-manifest/#basic-manifest" + } + }, + "#canonical-identifier": { + "current": { + "number": "4.7.1.4", + "spec": "Publication Manifest", + "text": "Canonical Identifier", + "url": "https://w3c.github.io/pub-manifest/#canonical-identifier" + }, + "snapshot": { + "number": "4.7.1.4", + "spec": "Publication Manifest", + "text": "Canonical Identifier", + "url": "https://www.w3.org/TR/pub-manifest/#canonical-identifier" + } + }, + "#change-log": { + "current": { + "number": "D", + "spec": "Publication Manifest", + "text": "Change Log", + "url": "https://w3c.github.io/pub-manifest/#change-log" + }, + "snapshot": { + "number": "D", + "spec": "Publication Manifest", + "text": "Change Log", + "url": "https://www.w3.org/TR/pub-manifest/#change-log" + } + }, + "#conformance": { + "current": { + "number": "3", + "spec": "Publication Manifest", + "text": "Conformance", + "url": "https://w3c.github.io/pub-manifest/#conformance" + }, + "snapshot": { + "number": "3", + "spec": "Publication Manifest", + "text": "Conformance", + "url": "https://www.w3.org/TR/pub-manifest/#conformance" + } + }, + "#contents": { + "current": { + "number": "4.8.1.3", + "spec": "Publication Manifest", + "text": "Table of Contents", + "url": "https://w3c.github.io/pub-manifest/#contents" + }, + "snapshot": { + "number": "4.8.1.3", + "spec": "Publication Manifest", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/pub-manifest/#contents" + } + }, + "#convert-absolute-url": { + "current": { + "number": "7.4.1.1", + "spec": "Publication Manifest", + "text": "Convert to Absolute URL", + "url": "https://w3c.github.io/pub-manifest/#convert-absolute-url" + }, + "snapshot": { + "number": "7.4.1.1", + "spec": "Publication Manifest", + "text": "Convert to Absolute URL", + "url": "https://www.w3.org/TR/pub-manifest/#convert-absolute-url" + } + }, + "#cover": { + "current": { + "number": "4.8.1.1", + "spec": "Publication Manifest", + "text": "Cover", + "url": "https://w3c.github.io/pub-manifest/#cover" + }, + "snapshot": { + "number": "4.8.1.1", + "spec": "Publication Manifest", + "text": "Cover", + "url": "https://www.w3.org/TR/pub-manifest/#cover" + } + }, + "#creators": { + "current": { + "number": "4.7.1.5", + "spec": "Publication Manifest", + "text": "Creators", + "url": "https://w3c.github.io/pub-manifest/#creators" + }, + "snapshot": { + "number": "4.7.1.5", + "spec": "Publication Manifest", + "text": "Creators", + "url": "https://www.w3.org/TR/pub-manifest/#creators" + } + }, + "#default-reading-order": { + "current": { + "number": "4.7.2.1", + "spec": "Publication Manifest", + "text": "Default Reading Order", + "url": "https://w3c.github.io/pub-manifest/#default-reading-order" + }, + "snapshot": { + "number": "4.7.2.1", + "spec": "Publication Manifest", + "text": "Default Reading Order", + "url": "https://www.w3.org/TR/pub-manifest/#default-reading-order" + } + }, + "#descriptive-properties": { + "current": { + "number": "4.7.1", + "spec": "Publication Manifest", + "text": "Descriptive Properties", + "url": "https://w3c.github.io/pub-manifest/#descriptive-properties" + }, + "snapshot": { + "number": "4.7.1", + "spec": "Publication Manifest", + "text": "Descriptive Properties", + "url": "https://www.w3.org/TR/pub-manifest/#descriptive-properties" + } + }, + "#duration": { + "current": { + "number": "4.7.1.6", + "spec": "Publication Manifest", + "text": "Duration", + "url": "https://w3c.github.io/pub-manifest/#duration" + }, + "snapshot": { + "number": "4.7.1.6", + "spec": "Publication Manifest", + "text": "Duration", + "url": "https://www.w3.org/TR/pub-manifest/#duration" + } + }, + "#explicit-implied-objects": { + "current": { + "number": "4.2.4", + "spec": "Publication Manifest", + "text": "Explicit and Implied Objects", + "url": "https://w3c.github.io/pub-manifest/#explicit-implied-objects" + }, + "snapshot": { + "number": "4.2.4", + "spec": "Publication Manifest", + "text": "Explicit and Implied Objects", + "url": "https://www.w3.org/TR/pub-manifest/#explicit-implied-objects" + } + }, + "#extensibility": { + "current": { + "number": "4.7.3", + "spec": "Publication Manifest", + "text": "Extensibility", + "url": "https://w3c.github.io/pub-manifest/#extensibility" + }, + "snapshot": { + "number": "4.7.3", + "spec": "Publication Manifest", + "text": "Extensibility", + "url": "https://www.w3.org/TR/pub-manifest/#extensibility" + } + }, + "#extensibility-linked-records": { + "current": { + "number": "4.7.3.1", + "spec": "Publication Manifest", + "text": "Linked records", + "url": "https://w3c.github.io/pub-manifest/#extensibility-linked-records" + }, + "snapshot": { + "number": "4.7.3.1", + "spec": "Publication Manifest", + "text": "Linked records", + "url": "https://www.w3.org/TR/pub-manifest/#extensibility-linked-records" + } + }, + "#extensibility-manifest-properties": { + "current": { + "number": "4.7.3.2", + "spec": "Publication Manifest", + "text": "Additional Manifest Properties", + "url": "https://w3c.github.io/pub-manifest/#extensibility-manifest-properties" + }, + "snapshot": { + "number": "4.7.3.2", + "spec": "Publication Manifest", + "text": "Additional Manifest Properties", + "url": "https://www.w3.org/TR/pub-manifest/#extensibility-manifest-properties" + } + }, + "#extensions": { + "current": { + "number": "8", + "spec": "Publication Manifest", + "text": "Modular Extensions", + "url": "https://w3c.github.io/pub-manifest/#extensions" + }, + "snapshot": { + "number": "8", + "spec": "Publication Manifest", + "text": "Modular Extensions", + "url": "https://www.w3.org/TR/pub-manifest/#extensions" + } + }, + "#get-unique-urls": { + "current": { + "number": "7.4.2.3", + "spec": "Publication Manifest", + "text": "Get Unique URLs", + "url": "https://w3c.github.io/pub-manifest/#get-unique-urls" + }, + "snapshot": { + "number": "7.4.2.3", + "spec": "Publication Manifest", + "text": "Get Unique URLs", + "url": "https://www.w3.org/TR/pub-manifest/#get-unique-urls" + } + }, + "#global-data-checks": { + "current": { + "number": "7.4.2.1", + "spec": "Publication Manifest", + "text": "Global Data Checks", + "url": "https://w3c.github.io/pub-manifest/#global-data-checks" + }, + "snapshot": { + "number": "7.4.2.1", + "spec": "Publication Manifest", + "text": "Global Data Checks", + "url": "https://www.w3.org/TR/pub-manifest/#global-data-checks" + } + }, + "#iana-consideration": { + "current": { + "number": "E", + "spec": "Publication Manifest", + "text": "IANA considerations", + "url": "https://w3c.github.io/pub-manifest/#iana-consideration" + }, + "snapshot": { + "number": "E", + "spec": "Publication Manifest", + "text": "IANA considerations", + "url": "https://www.w3.org/TR/pub-manifest/#iana-consideration" + } + }, + "#inLanguage": { + "current": { + "number": "4.7.1.9", + "spec": "Publication Manifest", + "text": "Publication Language", + "url": "https://w3c.github.io/pub-manifest/#inLanguage" + }, + "snapshot": { + "number": "4.7.1.9", + "spec": "Publication Manifest", + "text": "Publication Language", + "url": "https://www.w3.org/TR/pub-manifest/#inLanguage" + } + }, + "#informative-references": { + "current": { + "number": "J.2", + "spec": "Publication Manifest", + "text": "Informative references", + "url": "https://w3c.github.io/pub-manifest/#informative-references" + }, + "snapshot": { + "number": "J.2", + "spec": "Publication Manifest", + "text": "Informative references", + "url": "https://www.w3.org/TR/pub-manifest/#informative-references" + } + }, + "#informative-rel": { + "current": { + "number": "4.8.2", + "spec": "Publication Manifest", + "text": "Informative Resources", + "url": "https://w3c.github.io/pub-manifest/#informative-rel" + }, + "snapshot": { + "number": "4.8.2", + "spec": "Publication Manifest", + "text": "Informative Resources", + "url": "https://www.w3.org/TR/pub-manifest/#informative-rel" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Publication Manifest", + "text": "Introduction", + "url": "https://w3c.github.io/pub-manifest/#intro" + }, + "snapshot": { + "number": "1", + "spec": "Publication Manifest", + "text": "Introduction", + "url": "https://www.w3.org/TR/pub-manifest/#intro" + } + }, + "#last-modification-date": { + "current": { + "number": "4.7.1.7", + "spec": "Publication Manifest", + "text": "Last Modification Date", + "url": "https://w3c.github.io/pub-manifest/#last-modification-date" + }, + "snapshot": { + "number": "4.7.1.7", + "spec": "Publication Manifest", + "text": "Last Modification Date", + "url": "https://www.w3.org/TR/pub-manifest/#last-modification-date" + } + }, + "#link-relation-type-registration": { + "current": { + "number": "E.1", + "spec": "Publication Manifest", + "text": "Link relation type registration", + "url": "https://w3c.github.io/pub-manifest/#link-relation-type-registration" + }, + "snapshot": { + "number": "E.1", + "spec": "Publication Manifest", + "text": "Link relation type registration", + "url": "https://www.w3.org/TR/pub-manifest/#link-relation-type-registration" + } + }, + "#links": { + "current": { + "number": "4.7.2.3", + "spec": "Publication Manifest", + "text": "Links", + "url": "https://w3c.github.io/pub-manifest/#links" + }, + "snapshot": { + "number": "4.7.2.3", + "spec": "Publication Manifest", + "text": "Links", + "url": "https://www.w3.org/TR/pub-manifest/#links" + } + }, + "#manifest": { + "current": { + "number": "4", + "spec": "Publication Manifest", + "text": "Publication Manifest", + "url": "https://w3c.github.io/pub-manifest/#manifest" + }, + "snapshot": { + "number": "4", + "spec": "Publication Manifest", + "text": "Publication Manifest", + "url": "https://www.w3.org/TR/pub-manifest/#manifest" + } + }, + "#manifest-context": { + "current": { + "number": "4.3", + "spec": "Publication Manifest", + "text": "Manifest Contexts", + "url": "https://w3c.github.io/pub-manifest/#manifest-context" + }, + "snapshot": { + "number": "4.3", + "spec": "Publication Manifest", + "text": "Manifest Contexts", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-context" + } + }, + "#manifest-discovery": { + "current": { + "number": "6", + "spec": "Publication Manifest", + "text": "Manifest Discovery", + "url": "https://w3c.github.io/pub-manifest/#manifest-discovery" + }, + "snapshot": { + "number": "6", + "spec": "Publication Manifest", + "text": "Manifest Discovery", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-discovery" + } + }, + "#manifest-embed": { + "current": { + "number": "6.2", + "spec": "Publication Manifest", + "text": "Embedding", + "url": "https://w3c.github.io/pub-manifest/#manifest-embed" + }, + "snapshot": { + "number": "6.2", + "spec": "Publication Manifest", + "text": "Embedding", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-embed" + } + }, + "#manifest-format": { + "current": { + "number": "1.2", + "spec": "Publication Manifest", + "text": "Manifest Format", + "url": "https://w3c.github.io/pub-manifest/#manifest-format" + }, + "snapshot": { + "number": "1.2", + "spec": "Publication Manifest", + "text": "Manifest Format", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-format" + } + }, + "#manifest-jsonld": { + "current": { + "number": "1.3", + "spec": "Publication Manifest", + "text": "JSON-LD Authoring and Processing", + "url": "https://w3c.github.io/pub-manifest/#manifest-jsonld" + }, + "snapshot": { + "number": "1.3", + "spec": "Publication Manifest", + "text": "JSON-LD Authoring and Processing", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-jsonld" + } + }, + "#manifest-lang-dir": { + "current": { + "number": "4.4", + "spec": "Publication Manifest", + "text": "Manifest Language and Direction", + "url": "https://w3c.github.io/pub-manifest/#manifest-lang-dir" + }, + "snapshot": { + "number": "4.4", + "spec": "Publication Manifest", + "text": "Manifest Language and Direction", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-lang-dir" + } + }, + "#manifest-lang-dir-global": { + "current": { + "number": "4.4.1", + "spec": "Publication Manifest", + "text": "Global Declarations", + "url": "https://w3c.github.io/pub-manifest/#manifest-lang-dir-global" + }, + "snapshot": { + "number": "4.4.1", + "spec": "Publication Manifest", + "text": "Global Declarations", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-lang-dir-global" + } + }, + "#manifest-lang-dir-local": { + "current": { + "number": "4.4.2", + "spec": "Publication Manifest", + "text": "Item-Specific Declarations", + "url": "https://w3c.github.io/pub-manifest/#manifest-lang-dir-local" + }, + "snapshot": { + "number": "4.4.2", + "spec": "Publication Manifest", + "text": "Item-Specific Declarations", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-lang-dir-local" + } + }, + "#manifest-link": { + "current": { + "number": "6.1", + "spec": "Publication Manifest", + "text": "Linking", + "url": "https://w3c.github.io/pub-manifest/#manifest-link" + }, + "snapshot": { + "number": "6.1", + "spec": "Publication Manifest", + "text": "Linking", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-link" + } + }, + "#manifest-other-discovery": { + "current": { + "number": "6.3", + "spec": "Publication Manifest", + "text": "Other Discovery Methods", + "url": "https://w3c.github.io/pub-manifest/#manifest-other-discovery" + }, + "snapshot": { + "number": "6.3", + "spec": "Publication Manifest", + "text": "Other Discovery Methods", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-other-discovery" + } + }, + "#manifest-processing": { + "current": { + "number": "7", + "spec": "Publication Manifest", + "text": "Processing a Manifest", + "url": "https://w3c.github.io/pub-manifest/#manifest-processing" + }, + "snapshot": { + "number": "7", + "spec": "Publication Manifest", + "text": "Processing a Manifest", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-processing" + } + }, + "#manifest-properties": { + "current": { + "number": "4.7", + "spec": "Publication Manifest", + "text": "Properties", + "url": "https://w3c.github.io/pub-manifest/#manifest-properties" + }, + "snapshot": { + "number": "4.7", + "spec": "Publication Manifest", + "text": "Properties", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-properties" + } + }, + "#manifest-rel": { + "current": { + "number": "4.8", + "spec": "Publication Manifest", + "text": "Resource Relations", + "url": "https://w3c.github.io/pub-manifest/#manifest-rel" + }, + "snapshot": { + "number": "4.8", + "spec": "Publication Manifest", + "text": "Resource Relations", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-rel" + } + }, + "#manifest-requirements": { + "current": { + "number": "4.1", + "spec": "Publication Manifest", + "text": "Requirements", + "url": "https://w3c.github.io/pub-manifest/#manifest-requirements" + }, + "snapshot": { + "number": "4.1", + "spec": "Publication Manifest", + "text": "Requirements", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-requirements" + } + }, + "#manifest-schemaorg": { + "current": { + "number": "1.4", + "spec": "Publication Manifest", + "text": "Relationship to Schema.org", + "url": "https://w3c.github.io/pub-manifest/#manifest-schemaorg" + }, + "snapshot": { + "number": "1.4", + "spec": "Publication Manifest", + "text": "Relationship to Schema.org", + "url": "https://www.w3.org/TR/pub-manifest/#manifest-schemaorg" + } + }, + "#normalize-data": { + "current": { + "number": "7.4.1", + "spec": "Publication Manifest", + "text": "Normalize Data", + "url": "https://w3c.github.io/pub-manifest/#normalize-data" + }, + "snapshot": { + "number": "7.4.1", + "spec": "Publication Manifest", + "text": "Normalize Data", + "url": "https://www.w3.org/TR/pub-manifest/#normalize-data" + } + }, + "#normative-references": { + "current": { + "number": "J.1", + "spec": "Publication Manifest", + "text": "Normative references", + "url": "https://w3c.github.io/pub-manifest/#normative-references" + }, + "snapshot": { + "number": "J.1", + "spec": "Publication Manifest", + "text": "Normative references", + "url": "https://www.w3.org/TR/pub-manifest/#normative-references" + } + }, + "#page-list": { + "current": { + "number": "4.8.1.2", + "spec": "Publication Manifest", + "text": "Page List", + "url": "https://w3c.github.io/pub-manifest/#page-list" + }, + "snapshot": { + "number": "4.8.1.2", + "spec": "Publication Manifest", + "text": "Page List", + "url": "https://www.w3.org/TR/pub-manifest/#page-list" + } + }, + "#preview": { + "current": { + "number": "4.8.2.2", + "spec": "Publication Manifest", + "text": "Preview", + "url": "https://w3c.github.io/pub-manifest/#preview" + }, + "snapshot": { + "number": "4.8.2.2", + "spec": "Publication Manifest", + "text": "Preview", + "url": "https://www.w3.org/TR/pub-manifest/#preview" + } + }, + "#privacy-policy": { + "current": { + "number": "4.8.2.3", + "spec": "Publication Manifest", + "text": "Privacy Policy", + "url": "https://w3c.github.io/pub-manifest/#privacy-policy" + }, + "snapshot": { + "number": "4.8.2.3", + "spec": "Publication Manifest", + "text": "Privacy Policy", + "url": "https://www.w3.org/TR/pub-manifest/#privacy-policy" + } + }, + "#processing-algorithm": { + "current": { + "number": "7.4", + "spec": "Publication Manifest", + "text": "Generate the Internal Representation", + "url": "https://w3c.github.io/pub-manifest/#processing-algorithm" + }, + "snapshot": { + "number": "7.4", + "spec": "Publication Manifest", + "text": "Generate the Internal Representation", + "url": "https://www.w3.org/TR/pub-manifest/#processing-algorithm" + } + }, + "#processing-contexts": { + "current": { + "number": "7.3", + "spec": "Publication Manifest", + "text": "Processing Contexts", + "url": "https://w3c.github.io/pub-manifest/#processing-contexts" + }, + "snapshot": { + "number": "7.3", + "spec": "Publication Manifest", + "text": "Processing Contexts", + "url": "https://www.w3.org/TR/pub-manifest/#processing-contexts" + } + }, + "#processing-errors": { + "current": { + "number": "7.2", + "spec": "Publication Manifest", + "text": "Error Handling", + "url": "https://w3c.github.io/pub-manifest/#processing-errors" + }, + "snapshot": { + "number": "7.2", + "spec": "Publication Manifest", + "text": "Error Handling", + "url": "https://www.w3.org/TR/pub-manifest/#processing-errors" + } + }, + "#processing-intro": { + "current": { + "number": "7.1", + "spec": "Publication Manifest", + "text": "Introduction", + "url": "https://w3c.github.io/pub-manifest/#processing-intro" + }, + "snapshot": { + "number": "7.1", + "spec": "Publication Manifest", + "text": "Introduction", + "url": "https://www.w3.org/TR/pub-manifest/#processing-intro" + } + }, + "#profile-conformance": { + "current": { + "number": "4.6", + "spec": "Publication Manifest", + "text": "Profile Conformance", + "url": "https://w3c.github.io/pub-manifest/#profile-conformance" + }, + "snapshot": { + "number": "4.6", + "spec": "Publication Manifest", + "text": "Profile Conformance", + "url": "https://www.w3.org/TR/pub-manifest/#profile-conformance" + } + }, + "#properties-value-categories": { + "current": { + "number": "4.2", + "spec": "Publication Manifest", + "text": "Value Categories", + "url": "https://w3c.github.io/pub-manifest/#properties-value-categories" + }, + "snapshot": { + "number": "4.2", + "spec": "Publication Manifest", + "text": "Value Categories", + "url": "https://www.w3.org/TR/pub-manifest/#properties-value-categories" + } + }, + "#pub-title": { + "current": { + "number": "4.7.1.11", + "spec": "Publication Manifest", + "text": "Title", + "url": "https://w3c.github.io/pub-manifest/#pub-title" + }, + "snapshot": { + "number": "4.7.1.11", + "spec": "Publication Manifest", + "text": "Title", + "url": "https://www.w3.org/TR/pub-manifest/#pub-title" + } + }, + "#publication-date": { + "current": { + "number": "4.7.1.8", + "spec": "Publication Manifest", + "text": "Publication Date", + "url": "https://w3c.github.io/pub-manifest/#publication-date" + }, + "snapshot": { + "number": "4.7.1.8", + "spec": "Publication Manifest", + "text": "Publication Date", + "url": "https://www.w3.org/TR/pub-manifest/#publication-date" + } + }, + "#publication-resources": { + "current": { + "number": "5", + "spec": "Publication Manifest", + "text": "Publication Resources", + "url": "https://w3c.github.io/pub-manifest/#publication-resources" + }, + "snapshot": { + "number": "5", + "spec": "Publication Manifest", + "text": "Publication Resources", + "url": "https://www.w3.org/TR/pub-manifest/#publication-resources" + } + }, + "#publication-types": { + "current": { + "number": "4.5", + "spec": "Publication Manifest", + "text": "Publication Types", + "url": "https://w3c.github.io/pub-manifest/#publication-types" + }, + "snapshot": { + "number": "4.5", + "spec": "Publication Manifest", + "text": "Publication Types", + "url": "https://www.w3.org/TR/pub-manifest/#publication-types" + } + }, + "#reading-progression-direction": { + "current": { + "number": "4.7.1.10", + "spec": "Publication Manifest", + "text": "Reading Progression Direction", + "url": "https://w3c.github.io/pub-manifest/#reading-progression-direction" + }, + "snapshot": { + "number": "4.7.1.10", + "spec": "Publication Manifest", + "text": "Reading Progression Direction", + "url": "https://www.w3.org/TR/pub-manifest/#reading-progression-direction" + } + }, + "#references": { + "current": { + "number": "J", + "spec": "Publication Manifest", + "text": "References", + "url": "https://w3c.github.io/pub-manifest/#references" + }, + "snapshot": { + "number": "J", + "spec": "Publication Manifest", + "text": "References", + "url": "https://www.w3.org/TR/pub-manifest/#references" + } + }, + "#rel-extensions": { + "current": { + "number": "4.8.3", + "spec": "Publication Manifest", + "text": "Extensions", + "url": "https://w3c.github.io/pub-manifest/#rel-extensions" + }, + "snapshot": { + "number": "4.8.3", + "spec": "Publication Manifest", + "text": "Extensions", + "url": "https://www.w3.org/TR/pub-manifest/#rel-extensions" + } + }, + "#remove-empty-arrays": { + "current": { + "number": "7.4.2.4", + "spec": "Publication Manifest", + "text": "Remove Empty Arrays", + "url": "https://w3c.github.io/pub-manifest/#remove-empty-arrays" + }, + "snapshot": { + "number": "7.4.2.4", + "spec": "Publication Manifest", + "text": "Remove Empty Arrays", + "url": "https://www.w3.org/TR/pub-manifest/#remove-empty-arrays" + } + }, + "#resource-categorization-properties": { + "current": { + "number": "4.7.2", + "spec": "Publication Manifest", + "text": "Resource Categorization Properties", + "url": "https://w3c.github.io/pub-manifest/#resource-categorization-properties" + }, + "snapshot": { + "number": "4.7.2", + "spec": "Publication Manifest", + "text": "Resource Categorization Properties", + "url": "https://www.w3.org/TR/pub-manifest/#resource-categorization-properties" + } + }, + "#resource-list": { + "current": { + "number": "4.7.2.2", + "spec": "Publication Manifest", + "text": "Resource List", + "url": "https://w3c.github.io/pub-manifest/#resource-list" + }, + "snapshot": { + "number": "4.7.2.2", + "spec": "Publication Manifest", + "text": "Resource List", + "url": "https://www.w3.org/TR/pub-manifest/#resource-list" + } + }, + "#scope": { + "current": { + "number": "1.1", + "spec": "Publication Manifest", + "text": "Scope", + "url": "https://w3c.github.io/pub-manifest/#scope" + }, + "snapshot": { + "number": "1.1", + "spec": "Publication Manifest", + "text": "Scope", + "url": "https://www.w3.org/TR/pub-manifest/#scope" + } + }, + "#security-privacy": { + "current": { + "number": "9", + "spec": "Publication Manifest", + "text": "Security and Privacy Considerations", + "url": "https://w3c.github.io/pub-manifest/#security-privacy" + }, + "snapshot": { + "number": "9", + "spec": "Publication Manifest", + "text": "Security and Privacy Considerations", + "url": "https://www.w3.org/TR/pub-manifest/#security-privacy" + } + }, + "#single-document-publication": { + "current": { + "number": "F.2", + "spec": "Publication Manifest", + "text": "Single-Document Publication", + "url": "https://w3c.github.io/pub-manifest/#single-document-publication" + }, + "snapshot": { + "number": "F.2", + "spec": "Publication Manifest", + "text": "Single-Document Publication", + "url": "https://www.w3.org/TR/pub-manifest/#single-document-publication" + } + }, + "#structural-rel": { + "current": { + "number": "4.8.1", + "spec": "Publication Manifest", + "text": "Structural Resources", + "url": "https://w3c.github.io/pub-manifest/#structural-rel" + }, + "snapshot": { + "number": "4.8.1", + "spec": "Publication Manifest", + "text": "Structural Resources", + "url": "https://www.w3.org/TR/pub-manifest/#structural-rel" + } + }, + "#terminology": { + "current": { + "number": "2", + "spec": "Publication Manifest", + "text": "Terminology", + "url": "https://w3c.github.io/pub-manifest/#terminology" + }, + "snapshot": { + "number": "2", + "spec": "Publication Manifest", + "text": "Terminology", + "url": "https://www.w3.org/TR/pub-manifest/#terminology" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Publication Manifest", + "text": "Publication Manifest", + "url": "https://w3c.github.io/pub-manifest/#title" + }, + "snapshot": { + "number": "", + "spec": "Publication Manifest", + "text": "Publication Manifest", + "url": "https://www.w3.org/TR/pub-manifest/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Publication Manifest", + "text": "Table of Contents", + "url": "https://w3c.github.io/pub-manifest/#toc" + }, + "snapshot": { + "number": "", + "spec": "Publication Manifest", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/pub-manifest/#toc" + } + }, + "#validate-data": { + "current": { + "number": "7.4.2", + "spec": "Publication Manifest", + "text": "Data Validation", + "url": "https://w3c.github.io/pub-manifest/#validate-data" + }, + "snapshot": { + "number": "7.4.2", + "spec": "Publication Manifest", + "text": "Data Validation", + "url": "https://www.w3.org/TR/pub-manifest/#validate-data" + } + }, + "#value-array": { + "current": { + "number": "4.2.7", + "spec": "Publication Manifest", + "text": "Arrays", + "url": "https://w3c.github.io/pub-manifest/#value-array" + }, + "snapshot": { + "number": "4.2.7", + "spec": "Publication Manifest", + "text": "Arrays", + "url": "https://www.w3.org/TR/pub-manifest/#value-array" + } + }, + "#value-boolean": { + "current": { + "number": "4.2.3", + "spec": "Publication Manifest", + "text": "Booleans", + "url": "https://w3c.github.io/pub-manifest/#value-boolean" + }, + "snapshot": { + "number": "4.2.3", + "spec": "Publication Manifest", + "text": "Booleans", + "url": "https://www.w3.org/TR/pub-manifest/#value-boolean" + } + }, + "#value-entity": { + "current": { + "number": "4.2.4.2", + "spec": "Publication Manifest", + "text": "Entities", + "url": "https://w3c.github.io/pub-manifest/#value-entity" + }, + "snapshot": { + "number": "4.2.4.2", + "spec": "Publication Manifest", + "text": "Entities", + "url": "https://www.w3.org/TR/pub-manifest/#value-entity" + } + }, + "#value-id": { + "current": { + "number": "4.2.6", + "spec": "Publication Manifest", + "text": "Identifiers", + "url": "https://w3c.github.io/pub-manifest/#value-id" + }, + "snapshot": { + "number": "4.2.6", + "spec": "Publication Manifest", + "text": "Identifiers", + "url": "https://www.w3.org/TR/pub-manifest/#value-id" + } + }, + "#value-linked-resource": { + "current": { + "number": "4.2.4.3", + "spec": "Publication Manifest", + "text": "Linked Resources", + "url": "https://w3c.github.io/pub-manifest/#value-linked-resource" + }, + "snapshot": { + "number": "4.2.4.3", + "spec": "Publication Manifest", + "text": "Linked Resources", + "url": "https://www.w3.org/TR/pub-manifest/#value-linked-resource" + } + }, + "#value-literal": { + "current": { + "number": "4.2.1", + "spec": "Publication Manifest", + "text": "Literals", + "url": "https://w3c.github.io/pub-manifest/#value-literal" + }, + "snapshot": { + "number": "4.2.1", + "spec": "Publication Manifest", + "text": "Literals", + "url": "https://www.w3.org/TR/pub-manifest/#value-literal" + } + }, + "#value-localizable-string": { + "current": { + "number": "4.2.4.1", + "spec": "Publication Manifest", + "text": "Localizable Strings", + "url": "https://w3c.github.io/pub-manifest/#value-localizable-string" + }, + "snapshot": { + "number": "4.2.4.1", + "spec": "Publication Manifest", + "text": "Localizable Strings", + "url": "https://www.w3.org/TR/pub-manifest/#value-localizable-string" + } + }, + "#value-number": { + "current": { + "number": "4.2.2", + "spec": "Publication Manifest", + "text": "Numbers", + "url": "https://w3c.github.io/pub-manifest/#value-number" + }, + "snapshot": { + "number": "4.2.2", + "spec": "Publication Manifest", + "text": "Numbers", + "url": "https://www.w3.org/TR/pub-manifest/#value-number" + } + }, + "#value-object": { + "current": { + "number": "4.2.4.4", + "spec": "Publication Manifest", + "text": "Objects", + "url": "https://w3c.github.io/pub-manifest/#value-object" + }, + "snapshot": { + "number": "4.2.4.4", + "spec": "Publication Manifest", + "text": "Objects", + "url": "https://www.w3.org/TR/pub-manifest/#value-object" + } + }, + "#value-url": { + "current": { + "number": "4.2.5", + "spec": "Publication Manifest", + "text": "URLs", + "url": "https://w3c.github.io/pub-manifest/#value-url" + }, + "snapshot": { + "number": "4.2.5", + "spec": "Publication Manifest", + "text": "URLs", + "url": "https://www.w3.org/TR/pub-manifest/#value-url" + } + }, + "#verify-value-category": { + "current": { + "number": "7.4.2.2", + "spec": "Publication Manifest", + "text": "Verify Value Category", + "url": "https://w3c.github.io/pub-manifest/#verify-value-category" + }, + "snapshot": { + "number": "7.4.2.2", + "spec": "Publication Manifest", + "text": "Verify Value Category", + "url": "https://www.w3.org/TR/pub-manifest/#verify-value-category" + } + }, + "#webidl-wpm": { + "current": { + "number": "A.1", + "spec": "Publication Manifest", + "text": "The PublicationManifest Dictionary", + "url": "https://w3c.github.io/pub-manifest/#webidl-wpm" + }, + "snapshot": { + "number": "A.1", + "spec": "Publication Manifest", + "text": "The PublicationManifest Dictionary", + "url": "https://www.w3.org/TR/pub-manifest/#webidl-wpm" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf-canon.json b/bikeshed/spec-data/readonly/headings/headings-rdf-canon.json index bc1fe20c4d..a9630ed4c9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf-canon.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf-canon.json @@ -1,13 +1,13 @@ { "#ack": { "current": { - "number": "D", + "number": "G", "spec": "RDF Dataset Canonicalization", "text": "Acknowledgements", "url": "https://w3c.github.io/rdf-canon/spec/#ack" }, "snapshot": { - "number": "D", + "number": "G", "spec": "RDF Dataset Canonicalization", "text": "Acknowledgements", "url": "https://www.w3.org/TR/rdf-canon/#ack" @@ -125,6 +125,20 @@ "url": "https://www.w3.org/TR/rdf-canon/#canon-terms" } }, + "#canonical-quads": { + "current": { + "number": "A", + "spec": "RDF Dataset Canonicalization", + "text": "A Canonical form of N-Quads", + "url": "https://w3c.github.io/rdf-canon/spec/#canonical-quads" + }, + "snapshot": { + "number": "A", + "spec": "RDF Dataset Canonicalization", + "text": "A Canonical form of N-Quads", + "url": "https://www.w3.org/TR/rdf-canon/#canonical-quads" + } + }, "#canonicalization": { "current": { "number": "4", @@ -139,15 +153,29 @@ "url": "https://www.w3.org/TR/rdf-canon/#canonicalization" } }, + "#changes-from-cr": { + "current": { + "number": "F", + "spec": "RDF Dataset Canonicalization", + "text": "Changes since the Candidate Recommentation Snapshot of 31 October 2023", + "url": "https://w3c.github.io/rdf-canon/spec/#changes-from-cr" + }, + "snapshot": { + "number": "F", + "spec": "RDF Dataset Canonicalization", + "text": "Changes since the Candidate Recommentation Snapshot of 31 October 2023", + "url": "https://www.w3.org/TR/rdf-canon/#changes-from-cr" + } + }, "#changes-from-fpwd": { "current": { - "number": "C", + "number": "E", "spec": "RDF Dataset Canonicalization", "text": "Changes since the First Public Working Draft of 24 November 2022", "url": "https://w3c.github.io/rdf-canon/spec/#changes-from-fpwd" }, "snapshot": { - "number": "C", + "number": "E", "spec": "RDF Dataset Canonicalization", "text": "Changes since the First Public Working Draft of 24 November 2022", "url": "https://www.w3.org/TR/rdf-canon/#changes-from-fpwd" @@ -167,15 +195,29 @@ "url": "https://www.w3.org/TR/rdf-canon/#conformance" } }, + "#dataset-bn-graph-ex": { + "current": { + "number": "9.3", + "spec": "RDF Dataset Canonicalization", + "text": "Dataset with Blank Node Named Graph", + "url": "https://w3c.github.io/rdf-canon/spec/#dataset-bn-graph-ex" + }, + "snapshot": { + "number": "9.3", + "spec": "RDF Dataset Canonicalization", + "text": "Dataset with Blank Node Named Graph", + "url": "https://www.w3.org/TR/rdf-canon/#dataset-bn-graph-ex" + } + }, "#dataset-poisoning": { "current": { - "number": "6.1", + "number": "7.1", "spec": "RDF Dataset Canonicalization", "text": "Dataset Poisoning", "url": "https://w3c.github.io/rdf-canon/spec/#dataset-poisoning" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "RDF Dataset Canonicalization", "text": "Dataset Poisoning", "url": "https://www.w3.org/TR/rdf-canon/#dataset-poisoning" @@ -183,13 +225,13 @@ }, "#double-circle-ex": { "current": { - "number": "8.2", + "number": "9.2", "spec": "RDF Dataset Canonicalization", "text": "Double Circle", "url": "https://w3c.github.io/rdf-canon/spec/#double-circle-ex" }, "snapshot": { - "number": "8.2", + "number": "9.2", "spec": "RDF Dataset Canonicalization", "text": "Double Circle", "url": "https://www.w3.org/TR/rdf-canon/#double-circle-ex" @@ -197,13 +239,13 @@ }, "#duplicate-paths-ex": { "current": { - "number": "8.1", + "number": "9.1", "spec": "RDF Dataset Canonicalization", "text": "Duplicate Paths", "url": "https://w3c.github.io/rdf-canon/spec/#duplicate-paths-ex" }, "snapshot": { - "number": "8.1", + "number": "9.1", "spec": "RDF Dataset Canonicalization", "text": "Duplicate Paths", "url": "https://www.w3.org/TR/rdf-canon/#duplicate-paths-ex" @@ -211,32 +253,18 @@ }, "#examples": { "current": { - "number": "8", + "number": "9", "spec": "RDF Dataset Canonicalization", "text": "Examples", "url": "https://w3c.github.io/rdf-canon/spec/#examples" }, "snapshot": { - "number": "8", + "number": "9", "spec": "RDF Dataset Canonicalization", "text": "Examples", "url": "https://www.w3.org/TR/rdf-canon/#examples" } }, - "#formal-verification-incomplete": { - "current": { - "number": "6.2", - "spec": "RDF Dataset Canonicalization", - "text": "Formal Verification Incomplete", - "url": "https://w3c.github.io/rdf-canon/spec/#formal-verification-incomplete" - }, - "snapshot": { - "number": "6.2", - "spec": "RDF Dataset Canonicalization", - "text": "Formal Verification Incomplete", - "url": "https://www.w3.org/TR/rdf-canon/#formal-verification-incomplete" - } - }, "#hash-1d-quads": { "current": { "number": "4.6", @@ -421,13 +449,13 @@ }, "#index": { "current": { - "number": "B", + "number": "D", "spec": "RDF Dataset Canonicalization", "text": "Index", "url": "https://w3c.github.io/rdf-canon/spec/#index" }, "snapshot": { - "number": "B", + "number": "D", "spec": "RDF Dataset Canonicalization", "text": "Index", "url": "https://www.w3.org/TR/rdf-canon/#index" @@ -435,13 +463,13 @@ }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "D.2", "spec": "RDF Dataset Canonicalization", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-canon/spec/#index-defined-elsewhere" }, "snapshot": { - "number": "B.2", + "number": "D.2", "spec": "RDF Dataset Canonicalization", "text": "Terms defined by reference", "url": "https://www.w3.org/TR/rdf-canon/#index-defined-elsewhere" @@ -449,13 +477,13 @@ }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "D.1", "spec": "RDF Dataset Canonicalization", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-canon/spec/#index-defined-here" }, "snapshot": { - "number": "B.1", + "number": "D.1", "spec": "RDF Dataset Canonicalization", "text": "Terms defined by this specification", "url": "https://www.w3.org/TR/rdf-canon/#index-defined-here" @@ -463,18 +491,32 @@ }, "#informative-references": { "current": { - "number": "E.2", + "number": "H.2", "spec": "RDF Dataset Canonicalization", "text": "Informative references", "url": "https://w3c.github.io/rdf-canon/spec/#informative-references" }, "snapshot": { - "number": "E.2", + "number": "H.2", "spec": "RDF Dataset Canonicalization", "text": "Informative references", "url": "https://www.w3.org/TR/rdf-canon/#informative-references" } }, + "#insecure-hash-algorithms": { + "current": { + "number": "7.2", + "spec": "RDF Dataset Canonicalization", + "text": "Insecure Hash Algorithms", + "url": "https://w3c.github.io/rdf-canon/spec/#insecure-hash-algorithms" + }, + "snapshot": { + "number": "7.2", + "spec": "RDF Dataset Canonicalization", + "text": "Insecure Hash Algorithms", + "url": "https://www.w3.org/TR/rdf-canon/#insecure-hash-algorithms" + } + }, "#intro-uses": { "current": { "number": "1.1", @@ -547,13 +589,13 @@ }, "#normative-references": { "current": { - "number": "E.1", + "number": "H.1", "spec": "RDF Dataset Canonicalization", "text": "Normative references", "url": "https://w3c.github.io/rdf-canon/spec/#normative-references" }, "snapshot": { - "number": "E.1", + "number": "H.1", "spec": "RDF Dataset Canonicalization", "text": "Normative references", "url": "https://www.w3.org/TR/rdf-canon/#normative-references" @@ -561,13 +603,13 @@ }, "#privacy-considerations": { "current": { - "number": "5", + "number": "6", "spec": "RDF Dataset Canonicalization", "text": "Privacy Considerations", "url": "https://w3c.github.io/rdf-canon/spec/#privacy-considerations" }, "snapshot": { - "number": "5", + "number": "6", "spec": "RDF Dataset Canonicalization", "text": "Privacy Considerations", "url": "https://www.w3.org/TR/rdf-canon/#privacy-considerations" @@ -575,13 +617,13 @@ }, "#references": { "current": { - "number": "E", + "number": "H", "spec": "RDF Dataset Canonicalization", "text": "References", "url": "https://w3c.github.io/rdf-canon/spec/#references" }, "snapshot": { - "number": "E", + "number": "H", "spec": "RDF Dataset Canonicalization", "text": "References", "url": "https://www.w3.org/TR/rdf-canon/#references" @@ -589,30 +631,30 @@ }, "#security-considerations": { "current": { - "number": "6", + "number": "7", "spec": "RDF Dataset Canonicalization", "text": "Security Considerations", "url": "https://w3c.github.io/rdf-canon/spec/#security-considerations" }, "snapshot": { - "number": "6", + "number": "7", "spec": "RDF Dataset Canonicalization", "text": "Security Considerations", "url": "https://www.w3.org/TR/rdf-canon/#security-considerations" } }, - "#selective-disclosure-schemes": { + "#serialization": { "current": { - "number": "5.1", + "number": "5", "spec": "RDF Dataset Canonicalization", - "text": "Selective Disclosure Schemes", - "url": "https://w3c.github.io/rdf-canon/spec/#selective-disclosure-schemes" + "text": "Serialization", + "url": "https://w3c.github.io/rdf-canon/spec/#serialization" }, "snapshot": { - "number": "5.1", + "number": "5", "spec": "RDF Dataset Canonicalization", - "text": "Selective Disclosure Schemes", - "url": "https://www.w3.org/TR/rdf-canon/#selective-disclosure-schemes" + "text": "Serialization", + "url": "https://www.w3.org/TR/rdf-canon/#serialization" } }, "#subtitle": { @@ -699,29 +741,43 @@ "url": "https://www.w3.org/TR/rdf-canon/#typo-conventions" } }, - "#urgna2021": { + "#urdna2015": { "current": { - "number": "A", + "number": "B", + "spec": "RDF Dataset Canonicalization", + "text": "URDNA2015", + "url": "https://w3c.github.io/rdf-canon/spec/#urdna2015" + }, + "snapshot": { + "number": "B", + "spec": "RDF Dataset Canonicalization", + "text": "URDNA2015", + "url": "https://www.w3.org/TR/rdf-canon/#urdna2015" + } + }, + "#urgna2012": { + "current": { + "number": "C", "spec": "RDF Dataset Canonicalization", "text": "URGNA2012", - "url": "https://w3c.github.io/rdf-canon/spec/#urgna2021" + "url": "https://w3c.github.io/rdf-canon/spec/#urgna2012" }, "snapshot": { - "number": "A", + "number": "C", "spec": "RDF Dataset Canonicalization", "text": "URGNA2012", - "url": "https://www.w3.org/TR/rdf-canon/#urgna2021" + "url": "https://www.w3.org/TR/rdf-canon/#urgna2012" } }, "#use-cases": { "current": { - "number": "7", + "number": "8", "spec": "RDF Dataset Canonicalization", "text": "Use Cases", "url": "https://w3c.github.io/rdf-canon/spec/#use-cases" }, "snapshot": { - "number": "7", + "number": "8", "spec": "RDF Dataset Canonicalization", "text": "Use Cases", "url": "https://www.w3.org/TR/rdf-canon/#use-cases" diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-concepts.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-concepts.json index 25a03d4e7f..61c5a1a7ef 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-concepts.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-concepts.json @@ -1,50 +1,72 @@ { "#acknowledgments-for-rdf-1-0": { "current": { - "number": "A.1", + "number": "F.1", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Acknowledgments for RDF 1.0", "url": "https://w3c.github.io/rdf-concepts/spec/#acknowledgments-for-rdf-1-0" + }, + "snapshot": { + "number": "F.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Acknowledgments for RDF 1.0", + "url": "https://www.w3.org/TR/rdf12-concepts/#acknowledgments-for-rdf-1-0" } }, "#acknowledgments-for-rdf-1-1": { "current": { - "number": "A.2", + "number": "F.2", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-concepts/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "F.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-concepts/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { "current": { - "number": "A.3", + "number": "F.3", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-concepts/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "F.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-concepts/#acknowledgments-for-rdf-1-2" } }, "#change-over-time": { "current": { - "number": "1.5", + "number": "1.6", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF and Change over Time", "url": "https://w3c.github.io/rdf-concepts/spec/#change-over-time" - } - }, - "#changes-11": { - "current": { - "number": "B", + }, + "snapshot": { + "number": "1.6", "spec": "RDF 1.2 Concepts and Abstract Syntax", - "text": "Changes between RDF 1.0 and RDF 1.1", - "url": "https://w3c.github.io/rdf-concepts/spec/#changes-11" + "text": "RDF and Change over Time", + "url": "https://www.w3.org/TR/rdf12-concepts/#change-over-time" } }, "#changes-12": { "current": { - "number": "C", + "number": "G", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-concepts/spec/#changes-12" + }, + "snapshot": { + "number": "G", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-concepts/#changes-12" } }, "#conformance": { @@ -53,6 +75,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Conformance", "url": "https://w3c.github.io/rdf-concepts/spec/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Conformance", + "url": "https://www.w3.org/TR/rdf12-concepts/#conformance" } }, "#data-model": { @@ -61,22 +89,40 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Graph-based Data Model", "url": "https://w3c.github.io/rdf-concepts/spec/#data-model" + }, + "snapshot": { + "number": "1.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Graph-based Data Model", + "url": "https://www.w3.org/TR/rdf12-concepts/#data-model" } }, "#datatype-iris": { "current": { - "number": "5.4", + "number": "5.2", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Datatype IRIs", "url": "https://w3c.github.io/rdf-concepts/spec/#datatype-iris" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Datatype IRIs", + "url": "https://www.w3.org/TR/rdf12-concepts/#datatype-iris" } }, "#entailment": { "current": { - "number": "1.7", + "number": "1.8", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Equivalence, Entailment and Inconsistency", "url": "https://w3c.github.io/rdf-concepts/spec/#entailment" + }, + "snapshot": { + "number": "1.8", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Equivalence, Entailment and Inconsistency", + "url": "https://www.w3.org/TR/rdf12-concepts/#entailment" } }, "#graph-isomorphism": { @@ -85,102 +131,208 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Graph Comparison", "url": "https://w3c.github.io/rdf-concepts/spec/#graph-isomorphism" + }, + "snapshot": { + "number": "3.6", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Graph Comparison", + "url": "https://www.w3.org/TR/rdf12-concepts/#graph-isomorphism" } }, "#index": { "current": { - "number": "D", + "number": "H", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Index", "url": "https://w3c.github.io/rdf-concepts/spec/#index" + }, + "snapshot": { + "number": "H", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-concepts/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "D.2", + "number": "H.2", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-concepts/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "H.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-concepts/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "D.1", + "number": "H.1", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-concepts/spec/#index-defined-here" + }, + "snapshot": { + "number": "H.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-concepts/#index-defined-here" } }, "#informative-references": { "current": { - "number": "F.2", + "number": "J.2", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Informative references", "url": "https://w3c.github.io/rdf-concepts/spec/#informative-references" + }, + "snapshot": { + "number": "J.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-concepts/#informative-references" } }, "#internationalization": { "current": { - "number": "", + "number": "D", "spec": "RDF 1.2 Concepts and Abstract Syntax", - "text": "10. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/rdf-concepts/spec/#internationalization" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/rdf12-concepts/#internationalization" } }, - "#issue-summary": { + "#iri-abnf": { "current": { "number": "E", "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "IRI Grammar", + "url": "https://w3c.github.io/rdf-concepts/spec/#iri-abnf" + }, + "snapshot": { + "number": "E", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "IRI Grammar", + "url": "https://www.w3.org/TR/rdf12-concepts/#iri-abnf" + } + }, + "#issue-summary": { + "current": { + "number": "I", + "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Issue summary", "url": "https://w3c.github.io/rdf-concepts/spec/#issue-summary" + }, + "snapshot": { + "number": "I", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Issue summary", + "url": "https://www.w3.org/TR/rdf12-concepts/#issue-summary" } }, "#managing-graphs": { "current": { - "number": "1.6", + "number": "1.7", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Working with Multiple RDF Graphs", "url": "https://w3c.github.io/rdf-concepts/spec/#managing-graphs" + }, + "snapshot": { + "number": "1.7", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Working with Multiple RDF Graphs", + "url": "https://www.w3.org/TR/rdf12-concepts/#managing-graphs" } }, "#normative-references": { "current": { - "number": "F.1", + "number": "J.1", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Normative references", "url": "https://w3c.github.io/rdf-concepts/spec/#normative-references" + }, + "snapshot": { + "number": "J.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-concepts/#normative-references" } }, "#privacy": { "current": { - "number": "8", + "number": "B", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Privacy Considerations", "url": "https://w3c.github.io/rdf-concepts/spec/#privacy" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/rdf12-concepts/#privacy" } }, "#rdf-documents": { "current": { - "number": "1.8", + "number": "1.9", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF Documents and Syntaxes", "url": "https://w3c.github.io/rdf-concepts/spec/#rdf-documents" + }, + "snapshot": { + "number": "1.9", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "RDF Documents and Syntaxes", + "url": "https://www.w3.org/TR/rdf12-concepts/#rdf-documents" + } + }, + "#rdf-strings": { + "current": { + "number": "2.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Strings in RDF", + "url": "https://w3c.github.io/rdf-concepts/spec/#rdf-strings" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Strings in RDF", + "url": "https://www.w3.org/TR/rdf12-concepts/#rdf-strings" } }, "#references": { "current": { - "number": "F", + "number": "J", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "References", "url": "https://w3c.github.io/rdf-concepts/spec/#references" + }, + "snapshot": { + "number": "J", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-concepts/#references" } }, "#referents": { "current": { - "number": "1.3", + "number": "1.4", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "The Referent of an IRI", "url": "https://w3c.github.io/rdf-concepts/spec/#referents" + }, + "snapshot": { + "number": "1.4", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "The Referent of an IRI", + "url": "https://www.w3.org/TR/rdf12-concepts/#referents" } }, "#related": { @@ -189,6 +341,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-concepts/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-concepts/#related" } }, "#resources-and-statements": { @@ -197,14 +355,26 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Resources and Statements", "url": "https://w3c.github.io/rdf-concepts/spec/#resources-and-statements" + }, + "snapshot": { + "number": "1.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Resources and Statements", + "url": "https://www.w3.org/TR/rdf12-concepts/#resources-and-statements" } }, "#section-Acknowledgments": { "current": { - "number": "A", + "number": "F", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-concepts/spec/#section-Acknowledgments" + }, + "snapshot": { + "number": "F", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-Acknowledgments" } }, "#section-Datatypes": { @@ -213,6 +383,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Datatypes", "url": "https://w3c.github.io/rdf-concepts/spec/#section-Datatypes" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Datatypes", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-Datatypes" } }, "#section-Graph-Literal": { @@ -221,6 +397,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Literals", "url": "https://w3c.github.io/rdf-concepts/spec/#section-Graph-Literal" + }, + "snapshot": { + "number": "3.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Literals", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-Graph-Literal" } }, "#section-IRIs": { @@ -229,6 +411,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "IRIs", "url": "https://w3c.github.io/rdf-concepts/spec/#section-IRIs" + }, + "snapshot": { + "number": "3.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "IRIs", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-IRIs" } }, "#section-Introduction": { @@ -237,14 +425,40 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Introduction", "url": "https://w3c.github.io/rdf-concepts/spec/#section-Introduction" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-Introduction" } }, "#section-XMLLiteral": { "current": { - "number": "5.3", + "number": "A.2", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "The rdf:XMLLiteral Datatype", "url": "https://w3c.github.io/rdf-concepts/spec/#section-XMLLiteral" + }, + "snapshot": { + "number": "A.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "The rdf:XMLLiteral Datatype", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-XMLLiteral" + } + }, + "#section-additional-datatypes": { + "current": { + "number": "A", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Additional Datatypes", + "url": "https://w3c.github.io/rdf-concepts/spec/#section-additional-datatypes" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Additional Datatypes", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-additional-datatypes" } }, "#section-blank-nodes": { @@ -253,6 +467,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Blank Nodes", "url": "https://w3c.github.io/rdf-concepts/spec/#section-blank-nodes" + }, + "snapshot": { + "number": "3.4", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Blank Nodes", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-blank-nodes" } }, "#section-dataset": { @@ -261,6 +481,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF Datasets", "url": "https://w3c.github.io/rdf-concepts/spec/#section-dataset" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "RDF Datasets", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-dataset" } }, "#section-dataset-conneg": { @@ -269,6 +495,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Content Negotiation of RDF Datasets", "url": "https://w3c.github.io/rdf-concepts/spec/#section-dataset-conneg" + }, + "snapshot": { + "number": "4.2", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Content Negotiation of RDF Datasets", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-dataset-conneg" } }, "#section-dataset-isomorphism": { @@ -277,6 +509,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF Dataset Comparison", "url": "https://w3c.github.io/rdf-concepts/spec/#section-dataset-isomorphism" + }, + "snapshot": { + "number": "4.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "RDF Dataset Comparison", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-dataset-isomorphism" } }, "#section-dataset-quad": { @@ -285,6 +523,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Dataset as a Set of Quads", "url": "https://w3c.github.io/rdf-concepts/spec/#section-dataset-quad" + }, + "snapshot": { + "number": "4.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Dataset as a Set of Quads", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-dataset-quad" } }, "#section-fragID": { @@ -293,6 +537,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Fragment Identifiers", "url": "https://w3c.github.io/rdf-concepts/spec/#section-fragID" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Fragment Identifiers", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-fragID" } }, "#section-generalized-rdf": { @@ -301,14 +551,40 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Generalized RDF Triples, Graphs, and Datasets", "url": "https://w3c.github.io/rdf-concepts/spec/#section-generalized-rdf" + }, + "snapshot": { + "number": "7", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Generalized RDF Triples, Graphs, and Datasets", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-generalized-rdf" } }, "#section-html": { "current": { - "number": "5.2", + "number": "A.1", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "The rdf:HTML Datatype", "url": "https://w3c.github.io/rdf-concepts/spec/#section-html" + }, + "snapshot": { + "number": "A.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "The rdf:HTML Datatype", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-html" + } + }, + "#section-json": { + "current": { + "number": "A.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "The rdf:JSON Datatype", + "url": "https://w3c.github.io/rdf-concepts/spec/#section-json" + }, + "snapshot": { + "number": "A.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "The rdf:JSON Datatype", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-json" } }, "#section-rdf-graph": { @@ -317,6 +593,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF Graphs", "url": "https://w3c.github.io/rdf-concepts/spec/#section-rdf-graph" + }, + "snapshot": { + "number": "3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "RDF Graphs", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-rdf-graph" } }, "#section-skolemization": { @@ -325,6 +607,40 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Replacing Blank Nodes with IRIs", "url": "https://w3c.github.io/rdf-concepts/spec/#section-skolemization" + }, + "snapshot": { + "number": "3.5", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Replacing Blank Nodes with IRIs", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-skolemization" + } + }, + "#section-text-direction": { + "current": { + "number": "3.3.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Initial Text Direction", + "url": "https://w3c.github.io/rdf-concepts/spec/#section-text-direction" + }, + "snapshot": { + "number": "3.3.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Initial Text Direction", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-text-direction" + } + }, + "#section-triple-terms": { + "current": { + "number": "1.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Triple Terms", + "url": "https://w3c.github.io/rdf-concepts/spec/#section-triple-terms" + }, + "snapshot": { + "number": "1.3", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Triple Terms", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-triple-terms" } }, "#section-triples": { @@ -333,14 +649,26 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Triples", "url": "https://w3c.github.io/rdf-concepts/spec/#section-triples" + }, + "snapshot": { + "number": "3.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Triples", + "url": "https://www.w3.org/TR/rdf12-concepts/#section-triples" } }, "#security": { "current": { - "number": "9", + "number": "C", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Security Considerations", "url": "https://w3c.github.io/rdf-concepts/spec/#security" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/rdf12-concepts/#security" } }, "#title": { @@ -349,6 +677,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF 1.2 Concepts and Abstract Syntax", "url": "https://w3c.github.io/rdf-concepts/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "RDF 1.2 Concepts and Abstract Syntax", + "url": "https://www.w3.org/TR/rdf12-concepts/#title" } }, "#toc": { @@ -357,14 +691,26 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-concepts/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-concepts/#toc" } }, "#vocabularies": { "current": { - "number": "1.4", + "number": "1.5", "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "RDF Vocabularies and Namespace IRIs", "url": "https://w3c.github.io/rdf-concepts/spec/#vocabularies" + }, + "snapshot": { + "number": "1.5", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "RDF Vocabularies and Namespace IRIs", + "url": "https://www.w3.org/TR/rdf12-concepts/#vocabularies" } }, "#xsd-datatypes": { @@ -373,6 +719,12 @@ "spec": "RDF 1.2 Concepts and Abstract Syntax", "text": "The XML Schema Built-in Datatypes", "url": "https://w3c.github.io/rdf-concepts/spec/#xsd-datatypes" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 Concepts and Abstract Syntax", + "text": "The XML Schema Built-in Datatypes", + "url": "https://www.w3.org/TR/rdf12-concepts/#xsd-datatypes" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-n-quads.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-n-quads.json index 239f3e0ff5..33aa741b55 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-n-quads.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-n-quads.json @@ -1,26 +1,44 @@ { "#BNodes": { "current": { - "number": "2.4", + "number": "2.5", "spec": "RDF 1.2 N-Quads", "text": "RDF Blank Nodes", "url": "https://w3c.github.io/rdf-n-quads/spec/#BNodes" + }, + "snapshot": { + "number": "2.5", + "spec": "RDF 1.2 N-Quads", + "text": "RDF Blank Nodes", + "url": "https://www.w3.org/TR/rdf12-n-quads/#BNodes" } }, "#acknowledgments-for-rdf-1-1": { "current": { - "number": "7.1", + "number": "D.1", "spec": "RDF 1.2 N-Quads", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-n-quads/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "D.1", + "spec": "RDF 1.2 N-Quads", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-n-quads/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { "current": { - "number": "7.2", + "number": "D.2", "spec": "RDF 1.2 N-Quads", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-n-quads/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "D.2", + "spec": "RDF 1.2 N-Quads", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-n-quads/#acknowledgments-for-rdf-1-2" } }, "#canonical-quads": { @@ -29,22 +47,26 @@ "spec": "RDF 1.2 N-Quads", "text": "A Canonical form of N-Quads", "url": "https://w3c.github.io/rdf-n-quads/spec/#canonical-quads" - } - }, - "#changes-11": { - "current": { - "number": "A", + }, + "snapshot": { + "number": "3", "spec": "RDF 1.2 N-Quads", - "text": "Changes between publication as Note and RDF 1.1 Recommendation", - "url": "https://w3c.github.io/rdf-n-quads/spec/#changes-11" + "text": "A Canonical form of N-Quads", + "url": "https://www.w3.org/TR/rdf12-n-quads/#canonical-quads" } }, "#changes-12": { "current": { - "number": "B", + "number": "E", "spec": "RDF 1.2 N-Quads", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-n-quads/spec/#changes-12" + }, + "snapshot": { + "number": "E", + "spec": "RDF 1.2 N-Quads", + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-n-quads/#changes-12" } }, "#conformance": { @@ -53,46 +75,82 @@ "spec": "RDF 1.2 N-Quads", "text": "Conformance", "url": "https://w3c.github.io/rdf-n-quads/spec/#conformance" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 N-Quads", + "text": "Conformance", + "url": "https://www.w3.org/TR/rdf12-n-quads/#conformance" } }, "#index": { "current": { - "number": "D", + "number": "F", "spec": "RDF 1.2 N-Quads", "text": "Index", "url": "https://w3c.github.io/rdf-n-quads/spec/#index" + }, + "snapshot": { + "number": "F", + "spec": "RDF 1.2 N-Quads", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-n-quads/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "D.2", + "number": "F.2", "spec": "RDF 1.2 N-Quads", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-n-quads/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "F.2", + "spec": "RDF 1.2 N-Quads", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-n-quads/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "D.1", + "number": "F.1", "spec": "RDF 1.2 N-Quads", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-n-quads/spec/#index-defined-here" + }, + "snapshot": { + "number": "F.1", + "spec": "RDF 1.2 N-Quads", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-n-quads/#index-defined-here" } }, "#informative-references": { "current": { - "number": "F.2", + "number": "H.2", "spec": "RDF 1.2 N-Quads", "text": "Informative references", "url": "https://w3c.github.io/rdf-n-quads/spec/#informative-references" + }, + "snapshot": { + "number": "H.2", + "spec": "RDF 1.2 N-Quads", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-n-quads/#informative-references" } }, "#issue-summary": { "current": { - "number": "E", + "number": "G", "spec": "RDF 1.2 N-Quads", "text": "Issue summary", "url": "https://w3c.github.io/rdf-n-quads/spec/#issue-summary" + }, + "snapshot": { + "number": "G", + "spec": "RDF 1.2 N-Quads", + "text": "Issue summary", + "url": "https://www.w3.org/TR/rdf12-n-quads/#issue-summary" } }, "#n-quads-grammar": { @@ -101,14 +159,40 @@ "spec": "RDF 1.2 N-Quads", "text": "N-Quads Grammar", "url": "https://w3c.github.io/rdf-n-quads/spec/#n-quads-grammar" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 N-Quads", + "text": "N-Quads Grammar", + "url": "https://www.w3.org/TR/rdf12-n-quads/#n-quads-grammar" } }, "#normative-references": { "current": { - "number": "F.1", + "number": "H.1", "spec": "RDF 1.2 N-Quads", "text": "Normative references", "url": "https://w3c.github.io/rdf-n-quads/spec/#normative-references" + }, + "snapshot": { + "number": "H.1", + "spec": "RDF 1.2 N-Quads", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-n-quads/#normative-references" + } + }, + "#privacy-considerations": { + "current": { + "number": "A", + "spec": "RDF 1.2 N-Quads", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/rdf-n-quads/spec/#privacy-considerations" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 N-Quads", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/rdf12-n-quads/#privacy-considerations" } }, "#rdf-dataset-construction": { @@ -117,14 +201,26 @@ "spec": "RDF 1.2 N-Quads", "text": "RDF Dataset Construction", "url": "https://w3c.github.io/rdf-n-quads/spec/#rdf-dataset-construction" + }, + "snapshot": { + "number": "6.2", + "spec": "RDF 1.2 N-Quads", + "text": "RDF Dataset Construction", + "url": "https://www.w3.org/TR/rdf12-n-quads/#rdf-dataset-construction" } }, "#references": { "current": { - "number": "F", + "number": "H", "spec": "RDF 1.2 N-Quads", "text": "References", "url": "https://w3c.github.io/rdf-n-quads/spec/#references" + }, + "snapshot": { + "number": "H", + "spec": "RDF 1.2 N-Quads", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-n-quads/#references" } }, "#related": { @@ -133,6 +229,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-n-quads/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Quads", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-n-quads/#related" } }, "#sec-grammar-comments": { @@ -141,6 +243,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Comments", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-grammar-comments" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 N-Quads", + "text": "Comments", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-grammar-comments" } }, "#sec-grammar-grammar": { @@ -149,6 +257,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Grammar", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-grammar-grammar" + }, + "snapshot": { + "number": "5.3", + "spec": "RDF 1.2 N-Quads", + "text": "Grammar", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-grammar-grammar" } }, "#sec-grammar-ws": { @@ -157,6 +271,12 @@ "spec": "RDF 1.2 N-Quads", "text": "White Space", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-grammar-ws" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 N-Quads", + "text": "White Space", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-grammar-ws" } }, "#sec-intro": { @@ -165,22 +285,40 @@ "spec": "RDF 1.2 N-Quads", "text": "Introduction", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-intro" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 N-Quads", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-intro" } }, "#sec-iri": { "current": { - "number": "2.2", + "number": "2.3", "spec": "RDF 1.2 N-Quads", "text": "IRIs", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-iri" + }, + "snapshot": { + "number": "2.3", + "spec": "RDF 1.2 N-Quads", + "text": "IRIs", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-iri" } }, "#sec-literals": { "current": { - "number": "2.3", + "number": "2.4", "spec": "RDF 1.2 N-Quads", "text": "RDF Literals", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-literals" + }, + "snapshot": { + "number": "2.4", + "spec": "RDF 1.2 N-Quads", + "text": "RDF Literals", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-literals" } }, "#sec-mediaReg": { @@ -189,6 +327,12 @@ "spec": "RDF 1.2 N-Quads", "text": "N-Quads Internet Media Type, File Extension and Macintosh File Type", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-mediaReg" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 N-Quads", + "text": "N-Quads Internet Media Type, File Extension and Macintosh File Type", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-mediaReg" } }, "#sec-mediatype": { @@ -197,6 +341,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Media Type and Content Encoding", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-mediatype" + }, + "snapshot": { + "number": "4.1", + "spec": "RDF 1.2 N-Quads", + "text": "Media Type and Content Encoding", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-mediatype" } }, "#sec-n-quads-language": { @@ -205,6 +355,12 @@ "spec": "RDF 1.2 N-Quads", "text": "N-Quads Language", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-n-quads-language" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 N-Quads", + "text": "N-Quads Language", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-n-quads-language" } }, "#sec-other-media-types": { @@ -213,6 +369,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Other Media Types", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-other-media-types" + }, + "snapshot": { + "number": "4.1.1", + "spec": "RDF 1.2 N-Quads", + "text": "Other Media Types", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-other-media-types" } }, "#sec-parsing": { @@ -221,6 +383,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Parsing", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-parsing" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 N-Quads", + "text": "Parsing", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-parsing" } }, "#sec-parsing-terms": { @@ -229,14 +397,54 @@ "spec": "RDF 1.2 N-Quads", "text": "RDF Term Constructors", "url": "https://w3c.github.io/rdf-n-quads/spec/#sec-parsing-terms" + }, + "snapshot": { + "number": "6.1", + "spec": "RDF 1.2 N-Quads", + "text": "RDF Term Constructors", + "url": "https://www.w3.org/TR/rdf12-n-quads/#sec-parsing-terms" } }, "#section-ack": { "current": { - "number": "7", + "number": "D", "spec": "RDF 1.2 N-Quads", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-n-quads/spec/#section-ack" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 N-Quads", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-n-quads/#section-ack" + } + }, + "#security": { + "current": { + "number": "B", + "spec": "RDF 1.2 N-Quads", + "text": "Security Considerations", + "url": "https://w3c.github.io/rdf-n-quads/spec/#security" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 N-Quads", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/rdf12-n-quads/#security" + } + }, + "#selected-terminal-literal-strings": { + "current": { + "number": "5.4", + "spec": "RDF 1.2 N-Quads", + "text": "Selected Terminal Literal Strings", + "url": "https://w3c.github.io/rdf-n-quads/spec/#selected-terminal-literal-strings" + }, + "snapshot": { + "number": "5.4", + "spec": "RDF 1.2 N-Quads", + "text": "Selected Terminal Literal Strings", + "url": "https://www.w3.org/TR/rdf12-n-quads/#selected-terminal-literal-strings" } }, "#simple-triples": { @@ -245,6 +453,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Simple Statements", "url": "https://w3c.github.io/rdf-n-quads/spec/#simple-triples" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 N-Quads", + "text": "Simple Statements", + "url": "https://www.w3.org/TR/rdf12-n-quads/#simple-triples" } }, "#subtitle": { @@ -253,6 +467,12 @@ "spec": "RDF 1.2 N-Quads", "text": "A line-based syntax for RDF datasets", "url": "https://w3c.github.io/rdf-n-quads/spec/#subtitle" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Quads", + "text": "A line-based syntax for RDF datasets", + "url": "https://www.w3.org/TR/rdf12-n-quads/#subtitle" } }, "#terminals": { @@ -261,6 +481,12 @@ "spec": "RDF 1.2 N-Quads", "text": "Productions for terminals", "url": "https://w3c.github.io/rdf-n-quads/spec/#terminals" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Quads", + "text": "Productions for terminals", + "url": "https://www.w3.org/TR/rdf12-n-quads/#terminals" } }, "#title": { @@ -269,6 +495,12 @@ "spec": "RDF 1.2 N-Quads", "text": "RDF 1.2 N-Quads", "url": "https://w3c.github.io/rdf-n-quads/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Quads", + "text": "RDF 1.2 N-Quads", + "url": "https://www.w3.org/TR/rdf12-n-quads/#title" } }, "#toc": { @@ -277,6 +509,26 @@ "spec": "RDF 1.2 N-Quads", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-n-quads/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Quads", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-n-quads/#toc" + } + }, + "#triple-terms": { + "current": { + "number": "2.2", + "spec": "RDF 1.2 N-Quads", + "text": "Triple Terms", + "url": "https://w3c.github.io/rdf-n-quads/spec/#triple-terms" + }, + "snapshot": { + "number": "2.2", + "spec": "RDF 1.2 N-Quads", + "text": "Triple Terms", + "url": "https://www.w3.org/TR/rdf12-n-quads/#triple-terms" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-n-triples.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-n-triples.json index 4fbcc76b10..8233afd546 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-n-triples.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-n-triples.json @@ -1,154 +1,240 @@ { "#BNodes": { "current": { - "number": "2.4", + "number": "2.5", "spec": "RDF 1.2 N-Triples", "text": "RDF Blank Nodes", "url": "https://w3c.github.io/rdf-n-triples/spec/#BNodes" + }, + "snapshot": { + "number": "2.5", + "spec": "RDF 1.2 N-Triples", + "text": "RDF Blank Nodes", + "url": "https://www.w3.org/TR/rdf12-n-triples/#BNodes" } }, "#acknowledgments-for-rdf-1-1": { "current": { - "number": "9.1", + "number": "D.1", "spec": "RDF 1.2 N-Triples", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-n-triples/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "D.1", + "spec": "RDF 1.2 N-Triples", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-n-triples/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { "current": { - "number": "9.2", + "number": "D.2", "spec": "RDF 1.2 N-Triples", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-n-triples/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "D.2", + "spec": "RDF 1.2 N-Triples", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-n-triples/#acknowledgments-for-rdf-1-2" } }, "#canonical-ntriples": { "current": { - "number": "4", + "number": "3", "spec": "RDF 1.2 N-Triples", "text": "A Canonical form of N-Triples", "url": "https://w3c.github.io/rdf-n-triples/spec/#canonical-ntriples" - } - }, - "#changes-11": { - "current": { - "number": "A", + }, + "snapshot": { + "number": "3", "spec": "RDF 1.2 N-Triples", - "text": "Changes between publication as Note and RDF 1.1 Recommendation", - "url": "https://w3c.github.io/rdf-n-triples/spec/#changes-11" + "text": "A Canonical form of N-Triples", + "url": "https://www.w3.org/TR/rdf12-n-triples/#canonical-ntriples" } }, "#changes-12": { "current": { - "number": "B", + "number": "E", "spec": "RDF 1.2 N-Triples", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-n-triples/spec/#changes-12" + }, + "snapshot": { + "number": "E", + "spec": "RDF 1.2 N-Triples", + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-n-triples/#changes-12" } }, "#conformance": { "current": { - "number": "5", + "number": "4", "spec": "RDF 1.2 N-Triples", "text": "Conformance", "url": "https://w3c.github.io/rdf-n-triples/spec/#conformance" - } - }, - "#conformance-0": { - "current": { - "number": "5.1", + }, + "snapshot": { + "number": "4", "spec": "RDF 1.2 N-Triples", "text": "Conformance", - "url": "https://w3c.github.io/rdf-n-triples/spec/#conformance-0" + "url": "https://www.w3.org/TR/rdf12-n-triples/#conformance" } }, "#index": { "current": { - "number": "D", + "number": "F", "spec": "RDF 1.2 N-Triples", "text": "Index", "url": "https://w3c.github.io/rdf-n-triples/spec/#index" + }, + "snapshot": { + "number": "F", + "spec": "RDF 1.2 N-Triples", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-n-triples/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "D.2", + "number": "F.2", "spec": "RDF 1.2 N-Triples", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-n-triples/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "F.2", + "spec": "RDF 1.2 N-Triples", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-n-triples/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "D.1", + "number": "F.1", "spec": "RDF 1.2 N-Triples", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-n-triples/spec/#index-defined-here" + }, + "snapshot": { + "number": "F.1", + "spec": "RDF 1.2 N-Triples", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-n-triples/#index-defined-here" } }, "#informative-references": { "current": { - "number": "F.2", + "number": "H.2", "spec": "RDF 1.2 N-Triples", "text": "Informative references", "url": "https://w3c.github.io/rdf-n-triples/spec/#informative-references" + }, + "snapshot": { + "number": "H.2", + "spec": "RDF 1.2 N-Triples", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-n-triples/#informative-references" } }, "#issue-summary": { "current": { - "number": "E", + "number": "G", "spec": "RDF 1.2 N-Triples", "text": "Issue summary", "url": "https://w3c.github.io/rdf-n-triples/spec/#issue-summary" - } - }, - "#n-triples-changes": { - "current": { - "number": "3", + }, + "snapshot": { + "number": "G", "spec": "RDF 1.2 N-Triples", - "text": "Changes from RDF Test Cases format", - "url": "https://w3c.github.io/rdf-n-triples/spec/#n-triples-changes" + "text": "Issue summary", + "url": "https://www.w3.org/TR/rdf12-n-triples/#issue-summary" } }, "#n-triples-grammar": { "current": { - "number": "7", + "number": "5", "spec": "RDF 1.2 N-Triples", "text": "N-Triples Grammar", "url": "https://w3c.github.io/rdf-n-triples/spec/#n-triples-grammar" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 N-Triples", + "text": "N-Triples Grammar", + "url": "https://www.w3.org/TR/rdf12-n-triples/#n-triples-grammar" } }, "#n-triples-mediatype": { "current": { - "number": "6", + "number": "4.1", "spec": "RDF 1.2 N-Triples", "text": "Media Type and Content Encoding", "url": "https://w3c.github.io/rdf-n-triples/spec/#n-triples-mediatype" + }, + "snapshot": { + "number": "4.1", + "spec": "RDF 1.2 N-Triples", + "text": "Media Type and Content Encoding", + "url": "https://www.w3.org/TR/rdf12-n-triples/#n-triples-mediatype" } }, "#normative-references": { "current": { - "number": "F.1", + "number": "H.1", "spec": "RDF 1.2 N-Triples", "text": "Normative references", "url": "https://w3c.github.io/rdf-n-triples/spec/#normative-references" + }, + "snapshot": { + "number": "H.1", + "spec": "RDF 1.2 N-Triples", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-n-triples/#normative-references" + } + }, + "#privacy-considerations": { + "current": { + "number": "A", + "spec": "RDF 1.2 N-Triples", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/rdf-n-triples/spec/#privacy-considerations" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 N-Triples", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/rdf12-n-triples/#privacy-considerations" } }, "#rdf-triple-construction": { "current": { - "number": "8.2", + "number": "6.2", "spec": "RDF 1.2 N-Triples", "text": "RDF Triple Construction", "url": "https://w3c.github.io/rdf-n-triples/spec/#rdf-triple-construction" + }, + "snapshot": { + "number": "6.2", + "spec": "RDF 1.2 N-Triples", + "text": "RDF Triple Construction", + "url": "https://www.w3.org/TR/rdf12-n-triples/#rdf-triple-construction" } }, "#references": { "current": { - "number": "F", + "number": "H", "spec": "RDF 1.2 N-Triples", "text": "References", "url": "https://w3c.github.io/rdf-n-triples/spec/#references" + }, + "snapshot": { + "number": "H", + "spec": "RDF 1.2 N-Triples", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-n-triples/#references" } }, "#related": { @@ -157,30 +243,54 @@ "spec": "RDF 1.2 N-Triples", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-n-triples/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Triples", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-n-triples/#related" } }, "#sec-grammar-comments": { "current": { - "number": "7.2", + "number": "5.2", "spec": "RDF 1.2 N-Triples", "text": "Comments", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-grammar-comments" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 N-Triples", + "text": "Comments", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-grammar-comments" } }, "#sec-grammar-grammar": { "current": { - "number": "7.3", + "number": "5.3", "spec": "RDF 1.2 N-Triples", "text": "Grammar", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-grammar-grammar" + }, + "snapshot": { + "number": "5.3", + "spec": "RDF 1.2 N-Triples", + "text": "Grammar", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-grammar-grammar" } }, "#sec-grammar-ws": { "current": { - "number": "7.1", + "number": "5.1", "spec": "RDF 1.2 N-Triples", "text": "White Space", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-grammar-ws" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 N-Triples", + "text": "White Space", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-grammar-ws" } }, "#sec-intro": { @@ -189,22 +299,40 @@ "spec": "RDF 1.2 N-Triples", "text": "Introduction", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-intro" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 N-Triples", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-intro" } }, "#sec-iri": { "current": { - "number": "2.2", + "number": "2.3", "spec": "RDF 1.2 N-Triples", "text": "IRIs", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-iri" + }, + "snapshot": { + "number": "2.3", + "spec": "RDF 1.2 N-Triples", + "text": "IRIs", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-iri" } }, "#sec-literals": { "current": { - "number": "2.3", + "number": "2.4", "spec": "RDF 1.2 N-Triples", "text": "RDF Literals", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-literals" + }, + "snapshot": { + "number": "2.4", + "spec": "RDF 1.2 N-Triples", + "text": "RDF Literals", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-literals" } }, "#sec-mediaReg-n-triples": { @@ -213,6 +341,12 @@ "spec": "RDF 1.2 N-Triples", "text": "N-Triples Internet Media Type, File Extension and Macintosh File Type", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-mediaReg-n-triples" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 N-Triples", + "text": "N-Triples Internet Media Type, File Extension and Macintosh File Type", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-mediaReg-n-triples" } }, "#sec-n-triples-language": { @@ -221,38 +355,96 @@ "spec": "RDF 1.2 N-Triples", "text": "N-Triples Language", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-n-triples-language" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 N-Triples", + "text": "N-Triples Language", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-n-triples-language" } }, "#sec-other-media-types": { "current": { - "number": "6.1", + "number": "4.1.1", "spec": "RDF 1.2 N-Triples", "text": "Other Media Types", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-other-media-types" + }, + "snapshot": { + "number": "4.1.1", + "spec": "RDF 1.2 N-Triples", + "text": "Other Media Types", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-other-media-types" } }, "#sec-parsing": { "current": { - "number": "8", + "number": "6", "spec": "RDF 1.2 N-Triples", "text": "Parsing", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-parsing" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 N-Triples", + "text": "Parsing", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-parsing" } }, "#sec-parsing-terms": { "current": { - "number": "8.1", + "number": "6.1", "spec": "RDF 1.2 N-Triples", "text": "RDF Term Constructors", "url": "https://w3c.github.io/rdf-n-triples/spec/#sec-parsing-terms" + }, + "snapshot": { + "number": "6.1", + "spec": "RDF 1.2 N-Triples", + "text": "RDF Term Constructors", + "url": "https://www.w3.org/TR/rdf12-n-triples/#sec-parsing-terms" } }, "#section-ack": { "current": { - "number": "9", + "number": "D", "spec": "RDF 1.2 N-Triples", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-n-triples/spec/#section-ack" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 N-Triples", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-n-triples/#section-ack" + } + }, + "#security": { + "current": { + "number": "B", + "spec": "RDF 1.2 N-Triples", + "text": "Security Considerations", + "url": "https://w3c.github.io/rdf-n-triples/spec/#security" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 N-Triples", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/rdf12-n-triples/#security" + } + }, + "#selected-terminal-literal-strings": { + "current": { + "number": "5.4", + "spec": "RDF 1.2 N-Triples", + "text": "Selected Terminal Literal Strings", + "url": "https://w3c.github.io/rdf-n-triples/spec/#selected-terminal-literal-strings" + }, + "snapshot": { + "number": "5.4", + "spec": "RDF 1.2 N-Triples", + "text": "Selected Terminal Literal Strings", + "url": "https://www.w3.org/TR/rdf12-n-triples/#selected-terminal-literal-strings" } }, "#simple-triples": { @@ -261,6 +453,12 @@ "spec": "RDF 1.2 N-Triples", "text": "Simple Triples", "url": "https://w3c.github.io/rdf-n-triples/spec/#simple-triples" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 N-Triples", + "text": "Simple Triples", + "url": "https://www.w3.org/TR/rdf12-n-triples/#simple-triples" } }, "#subtitle": { @@ -269,6 +467,12 @@ "spec": "RDF 1.2 N-Triples", "text": "A line-based syntax for an RDF graph", "url": "https://w3c.github.io/rdf-n-triples/spec/#subtitle" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Triples", + "text": "A line-based syntax for an RDF graph", + "url": "https://www.w3.org/TR/rdf12-n-triples/#subtitle" } }, "#terminals": { @@ -277,6 +481,12 @@ "spec": "RDF 1.2 N-Triples", "text": "Productions for terminals", "url": "https://w3c.github.io/rdf-n-triples/spec/#terminals" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Triples", + "text": "Productions for terminals", + "url": "https://www.w3.org/TR/rdf12-n-triples/#terminals" } }, "#title": { @@ -285,6 +495,12 @@ "spec": "RDF 1.2 N-Triples", "text": "RDF 1.2 N-Triples", "url": "https://w3c.github.io/rdf-n-triples/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Triples", + "text": "RDF 1.2 N-Triples", + "url": "https://www.w3.org/TR/rdf12-n-triples/#title" } }, "#toc": { @@ -293,6 +509,26 @@ "spec": "RDF 1.2 N-Triples", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-n-triples/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 N-Triples", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-n-triples/#toc" + } + }, + "#triple-terms": { + "current": { + "number": "2.2", + "spec": "RDF 1.2 N-Triples", + "text": "Triple Terms", + "url": "https://w3c.github.io/rdf-n-triples/spec/#triple-terms" + }, + "snapshot": { + "number": "2.2", + "spec": "RDF 1.2 N-Triples", + "text": "Triple Terms", + "url": "https://www.w3.org/TR/rdf12-n-triples/#triple-terms" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-schema.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-schema.json index b1c60bf9ba..870fb91b04 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-schema.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-schema.json @@ -5,6 +5,12 @@ "spec": "RDF 1.2 Schema", "text": "Change since 2004 Recommendation", "url": "https://w3c.github.io/rdf-schema/spec/#PER-changes" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 Schema", + "text": "Change since 2004 Recommendation", + "url": "https://www.w3.org/TR/rdf12-schema/#PER-changes" } }, "#acknowledgments-for-2004-recommendation": { @@ -13,6 +19,12 @@ "spec": "RDF 1.2 Schema", "text": "Acknowledgments for 2004 Recommendation", "url": "https://w3c.github.io/rdf-schema/spec/#acknowledgments-for-2004-recommendation" + }, + "snapshot": { + "number": "A.1", + "spec": "RDF 1.2 Schema", + "text": "Acknowledgments for 2004 Recommendation", + "url": "https://www.w3.org/TR/rdf12-schema/#acknowledgments-for-2004-recommendation" } }, "#acknowledgments-for-rdf-1-1": { @@ -21,6 +33,12 @@ "spec": "RDF 1.2 Schema", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-schema/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "A.2", + "spec": "RDF 1.2 Schema", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-schema/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { @@ -29,6 +47,12 @@ "spec": "RDF 1.2 Schema", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-schema/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "A.3", + "spec": "RDF 1.2 Schema", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-schema/#acknowledgments-for-rdf-1-2" } }, "#ch_Acknowledgments": { @@ -37,6 +61,12 @@ "spec": "RDF 1.2 Schema", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-schema/spec/#ch_Acknowledgments" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 Schema", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_Acknowledgments" } }, "#ch_alt": { @@ -45,6 +75,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:Alt", "url": "https://w3c.github.io/rdf-schema/spec/#ch_alt" + }, + "snapshot": { + "number": "5.1.4", + "spec": "RDF 1.2 Schema", + "text": "rdf:Alt", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_alt" } }, "#ch_bag": { @@ -53,6 +89,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:Bag", "url": "https://w3c.github.io/rdf-schema/spec/#ch_bag" + }, + "snapshot": { + "number": "5.1.2", + "spec": "RDF 1.2 Schema", + "text": "rdf:Bag", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_bag" } }, "#ch_class": { @@ -61,6 +103,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:Class", "url": "https://w3c.github.io/rdf-schema/spec/#ch_class" + }, + "snapshot": { + "number": "2.2", + "spec": "RDF 1.2 Schema", + "text": "rdfs:Class", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_class" } }, "#ch_classes": { @@ -69,6 +117,12 @@ "spec": "RDF 1.2 Schema", "text": "Classes", "url": "https://w3c.github.io/rdf-schema/spec/#ch_classes" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 Schema", + "text": "Classes", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_classes" } }, "#ch_collectionvocab": { @@ -77,6 +131,12 @@ "spec": "RDF 1.2 Schema", "text": "RDF Collections", "url": "https://w3c.github.io/rdf-schema/spec/#ch_collectionvocab" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 Schema", + "text": "RDF Collections", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_collectionvocab" } }, "#ch_comment": { @@ -85,6 +145,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:comment", "url": "https://w3c.github.io/rdf-schema/spec/#ch_comment" + }, + "snapshot": { + "number": "3.7", + "spec": "RDF 1.2 Schema", + "text": "rdfs:comment", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_comment" } }, "#ch_container": { @@ -93,6 +159,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:Container", "url": "https://w3c.github.io/rdf-schema/spec/#ch_container" + }, + "snapshot": { + "number": "5.1.1", + "spec": "RDF 1.2 Schema", + "text": "rdfs:Container", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_container" } }, "#ch_containermembershipproperty": { @@ -101,6 +173,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:ContainerMembershipProperty", "url": "https://w3c.github.io/rdf-schema/spec/#ch_containermembershipproperty" + }, + "snapshot": { + "number": "5.1.5", + "spec": "RDF 1.2 Schema", + "text": "rdfs:ContainerMembershipProperty", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_containermembershipproperty" } }, "#ch_containervocab": { @@ -109,6 +187,12 @@ "spec": "RDF 1.2 Schema", "text": "Container Classes and Properties", "url": "https://w3c.github.io/rdf-schema/spec/#ch_containervocab" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 Schema", + "text": "Container Classes and Properties", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_containervocab" } }, "#ch_datatype": { @@ -117,6 +201,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:Datatype", "url": "https://w3c.github.io/rdf-schema/spec/#ch_datatype" + }, + "snapshot": { + "number": "2.4", + "spec": "RDF 1.2 Schema", + "text": "rdfs:Datatype", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_datatype" } }, "#ch_domain": { @@ -125,6 +215,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:domain", "url": "https://w3c.github.io/rdf-schema/spec/#ch_domain" + }, + "snapshot": { + "number": "3.2", + "spec": "RDF 1.2 Schema", + "text": "rdfs:domain", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_domain" } }, "#ch_domainrange": { @@ -133,6 +229,12 @@ "spec": "RDF 1.2 Schema", "text": "Using the Domain and Range vocabulary", "url": "https://w3c.github.io/rdf-schema/spec/#ch_domainrange" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 Schema", + "text": "Using the Domain and Range vocabulary", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_domainrange" } }, "#ch_first": { @@ -141,6 +243,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:first", "url": "https://w3c.github.io/rdf-schema/spec/#ch_first" + }, + "snapshot": { + "number": "5.2.2", + "spec": "RDF 1.2 Schema", + "text": "rdf:first", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_first" } }, "#ch_html": { @@ -149,6 +257,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:HTML", "url": "https://w3c.github.io/rdf-schema/spec/#ch_html" + }, + "snapshot": { + "number": "2.6", + "spec": "RDF 1.2 Schema", + "text": "rdf:HTML", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_html" } }, "#ch_introduction": { @@ -157,6 +271,12 @@ "spec": "RDF 1.2 Schema", "text": "Introduction", "url": "https://w3c.github.io/rdf-schema/spec/#ch_introduction" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 Schema", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_introduction" } }, "#ch_isdefinedby": { @@ -165,6 +285,26 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:isDefinedBy", "url": "https://w3c.github.io/rdf-schema/spec/#ch_isdefinedby" + }, + "snapshot": { + "number": "5.4.2", + "spec": "RDF 1.2 Schema", + "text": "rdfs:isDefinedBy", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_isdefinedby" + } + }, + "#ch_json": { + "current": { + "number": "2.8", + "spec": "RDF 1.2 Schema", + "text": "rdf:JSON", + "url": "https://w3c.github.io/rdf-schema/spec/#ch_json" + }, + "snapshot": { + "number": "2.8", + "spec": "RDF 1.2 Schema", + "text": "rdf:JSON", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_json" } }, "#ch_label": { @@ -173,6 +313,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:label", "url": "https://w3c.github.io/rdf-schema/spec/#ch_label" + }, + "snapshot": { + "number": "3.6", + "spec": "RDF 1.2 Schema", + "text": "rdfs:label", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_label" } }, "#ch_langstring": { @@ -181,6 +327,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:langString", "url": "https://w3c.github.io/rdf-schema/spec/#ch_langstring" + }, + "snapshot": { + "number": "2.5", + "spec": "RDF 1.2 Schema", + "text": "rdf:langString", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_langstring" } }, "#ch_list": { @@ -189,6 +341,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:List", "url": "https://w3c.github.io/rdf-schema/spec/#ch_list" + }, + "snapshot": { + "number": "5.2.1", + "spec": "RDF 1.2 Schema", + "text": "rdf:List", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_list" } }, "#ch_literal": { @@ -197,6 +355,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:Literal", "url": "https://w3c.github.io/rdf-schema/spec/#ch_literal" + }, + "snapshot": { + "number": "2.3", + "spec": "RDF 1.2 Schema", + "text": "rdfs:Literal", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_literal" } }, "#ch_member": { @@ -205,6 +369,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:member", "url": "https://w3c.github.io/rdf-schema/spec/#ch_member" + }, + "snapshot": { + "number": "5.1.6", + "spec": "RDF 1.2 Schema", + "text": "rdfs:member", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_member" } }, "#ch_nil": { @@ -213,6 +383,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:nil", "url": "https://w3c.github.io/rdf-schema/spec/#ch_nil" + }, + "snapshot": { + "number": "5.2.4", + "spec": "RDF 1.2 Schema", + "text": "rdf:nil", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_nil" } }, "#ch_object": { @@ -221,6 +397,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:object", "url": "https://w3c.github.io/rdf-schema/spec/#ch_object" + }, + "snapshot": { + "number": "5.3.4", + "spec": "RDF 1.2 Schema", + "text": "rdf:object", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_object" } }, "#ch_othervocab": { @@ -229,6 +411,12 @@ "spec": "RDF 1.2 Schema", "text": "Other vocabulary", "url": "https://w3c.github.io/rdf-schema/spec/#ch_othervocab" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 Schema", + "text": "Other vocabulary", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_othervocab" } }, "#ch_predicate": { @@ -237,6 +425,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:predicate", "url": "https://w3c.github.io/rdf-schema/spec/#ch_predicate" + }, + "snapshot": { + "number": "5.3.3", + "spec": "RDF 1.2 Schema", + "text": "rdf:predicate", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_predicate" } }, "#ch_properties": { @@ -245,14 +439,26 @@ "spec": "RDF 1.2 Schema", "text": "Properties", "url": "https://w3c.github.io/rdf-schema/spec/#ch_properties" + }, + "snapshot": { + "number": "3", + "spec": "RDF 1.2 Schema", + "text": "Properties", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_properties" } }, "#ch_property": { "current": { - "number": "2.8", + "number": "2.9", "spec": "RDF 1.2 Schema", "text": "rdf:Property", "url": "https://w3c.github.io/rdf-schema/spec/#ch_property" + }, + "snapshot": { + "number": "2.9", + "spec": "RDF 1.2 Schema", + "text": "rdf:Property", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_property" } }, "#ch_range": { @@ -261,6 +467,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:range", "url": "https://w3c.github.io/rdf-schema/spec/#ch_range" + }, + "snapshot": { + "number": "3.1", + "spec": "RDF 1.2 Schema", + "text": "rdfs:range", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_range" } }, "#ch_reificationvocab": { @@ -269,6 +481,12 @@ "spec": "RDF 1.2 Schema", "text": "Reification Vocabulary", "url": "https://w3c.github.io/rdf-schema/spec/#ch_reificationvocab" + }, + "snapshot": { + "number": "5.3", + "spec": "RDF 1.2 Schema", + "text": "Reification Vocabulary", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_reificationvocab" } }, "#ch_resource": { @@ -277,6 +495,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:Resource", "url": "https://w3c.github.io/rdf-schema/spec/#ch_resource" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 Schema", + "text": "rdfs:Resource", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_resource" } }, "#ch_rest": { @@ -285,6 +509,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:rest", "url": "https://w3c.github.io/rdf-schema/spec/#ch_rest" + }, + "snapshot": { + "number": "5.2.3", + "spec": "RDF 1.2 Schema", + "text": "rdf:rest", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_rest" } }, "#ch_seealso": { @@ -293,6 +523,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:seeAlso", "url": "https://w3c.github.io/rdf-schema/spec/#ch_seealso" + }, + "snapshot": { + "number": "5.4.1", + "spec": "RDF 1.2 Schema", + "text": "rdfs:seeAlso", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_seealso" } }, "#ch_seq": { @@ -301,6 +537,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:Seq", "url": "https://w3c.github.io/rdf-schema/spec/#ch_seq" + }, + "snapshot": { + "number": "5.1.3", + "spec": "RDF 1.2 Schema", + "text": "rdf:Seq", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_seq" } }, "#ch_statement": { @@ -309,6 +551,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:Statement", "url": "https://w3c.github.io/rdf-schema/spec/#ch_statement" + }, + "snapshot": { + "number": "5.3.1", + "spec": "RDF 1.2 Schema", + "text": "rdf:Statement", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_statement" } }, "#ch_subclassof": { @@ -317,6 +565,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:subClassOf", "url": "https://w3c.github.io/rdf-schema/spec/#ch_subclassof" + }, + "snapshot": { + "number": "3.4", + "spec": "RDF 1.2 Schema", + "text": "rdfs:subClassOf", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_subclassof" } }, "#ch_subject": { @@ -325,6 +579,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:subject", "url": "https://w3c.github.io/rdf-schema/spec/#ch_subject" + }, + "snapshot": { + "number": "5.3.2", + "spec": "RDF 1.2 Schema", + "text": "rdf:subject", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_subject" } }, "#ch_subpropertyof": { @@ -333,6 +593,12 @@ "spec": "RDF 1.2 Schema", "text": "rdfs:subPropertyOf", "url": "https://w3c.github.io/rdf-schema/spec/#ch_subpropertyof" + }, + "snapshot": { + "number": "3.5", + "spec": "RDF 1.2 Schema", + "text": "rdfs:subPropertyOf", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_subpropertyof" } }, "#ch_sumclasses": { @@ -341,6 +607,12 @@ "spec": "RDF 1.2 Schema", "text": "RDF classes", "url": "https://w3c.github.io/rdf-schema/spec/#ch_sumclasses" + }, + "snapshot": { + "number": "6.1", + "spec": "RDF 1.2 Schema", + "text": "RDF classes", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_sumclasses" } }, "#ch_summary": { @@ -349,6 +621,12 @@ "spec": "RDF 1.2 Schema", "text": "RDF Schema summary", "url": "https://w3c.github.io/rdf-schema/spec/#ch_summary" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 Schema", + "text": "RDF Schema summary", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_summary" } }, "#ch_sumproperties": { @@ -357,6 +635,12 @@ "spec": "RDF 1.2 Schema", "text": "RDF properties", "url": "https://w3c.github.io/rdf-schema/spec/#ch_sumproperties" + }, + "snapshot": { + "number": "6.2", + "spec": "RDF 1.2 Schema", + "text": "RDF properties", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_sumproperties" } }, "#ch_type": { @@ -365,6 +649,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:type", "url": "https://w3c.github.io/rdf-schema/spec/#ch_type" + }, + "snapshot": { + "number": "3.3", + "spec": "RDF 1.2 Schema", + "text": "rdf:type", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_type" } }, "#ch_utilvocab": { @@ -373,6 +663,12 @@ "spec": "RDF 1.2 Schema", "text": "Utility Properties", "url": "https://w3c.github.io/rdf-schema/spec/#ch_utilvocab" + }, + "snapshot": { + "number": "5.4", + "spec": "RDF 1.2 Schema", + "text": "Utility Properties", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_utilvocab" } }, "#ch_value": { @@ -381,6 +677,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:value", "url": "https://w3c.github.io/rdf-schema/spec/#ch_value" + }, + "snapshot": { + "number": "5.4.3", + "spec": "RDF 1.2 Schema", + "text": "rdf:value", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_value" } }, "#ch_xmlliteral": { @@ -389,6 +691,12 @@ "spec": "RDF 1.2 Schema", "text": "rdf:XMLLiteral", "url": "https://w3c.github.io/rdf-schema/spec/#ch_xmlliteral" + }, + "snapshot": { + "number": "2.7", + "spec": "RDF 1.2 Schema", + "text": "rdf:XMLLiteral", + "url": "https://www.w3.org/TR/rdf12-schema/#ch_xmlliteral" } }, "#changes-12": { @@ -397,6 +705,12 @@ "spec": "RDF 1.2 Schema", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-schema/spec/#changes-12" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 Schema", + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-schema/#changes-12" } }, "#index": { @@ -405,6 +719,12 @@ "spec": "RDF 1.2 Schema", "text": "Index", "url": "https://w3c.github.io/rdf-schema/spec/#index" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 Schema", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-schema/#index" } }, "#index-defined-elsewhere": { @@ -413,6 +733,12 @@ "spec": "RDF 1.2 Schema", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-schema/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "D.2", + "spec": "RDF 1.2 Schema", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-schema/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -421,6 +747,12 @@ "spec": "RDF 1.2 Schema", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-schema/spec/#index-defined-here" + }, + "snapshot": { + "number": "D.1", + "spec": "RDF 1.2 Schema", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-schema/#index-defined-here" } }, "#informative-references": { @@ -429,6 +761,12 @@ "spec": "RDF 1.2 Schema", "text": "Informative references", "url": "https://w3c.github.io/rdf-schema/spec/#informative-references" + }, + "snapshot": { + "number": "E.1", + "spec": "RDF 1.2 Schema", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-schema/#informative-references" } }, "#references": { @@ -437,6 +775,12 @@ "spec": "RDF 1.2 Schema", "text": "References", "url": "https://w3c.github.io/rdf-schema/spec/#references" + }, + "snapshot": { + "number": "E", + "spec": "RDF 1.2 Schema", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-schema/#references" } }, "#related": { @@ -445,6 +789,12 @@ "spec": "RDF 1.2 Schema", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-schema/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Schema", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-schema/#related" } }, "#title": { @@ -453,6 +803,12 @@ "spec": "RDF 1.2 Schema", "text": "RDF 1.2 Schema", "url": "https://w3c.github.io/rdf-schema/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Schema", + "text": "RDF 1.2 Schema", + "url": "https://www.w3.org/TR/rdf12-schema/#title" } }, "#toc": { @@ -461,6 +817,12 @@ "spec": "RDF 1.2 Schema", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-schema/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Schema", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-schema/#toc" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-semantics.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-semantics.json index edd63f71e4..df9f4db203 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-semantics.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-semantics.json @@ -5,22 +5,26 @@ "spec": "RDF 1.2 Semantics", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-semantics/spec/#Acknowledgments" - } - }, - "#ChangeLog-11": { - "current": { - "number": "F", + }, + "snapshot": { + "number": "E", "spec": "RDF 1.2 Semantics", - "text": "Changes since RDF 1.0", - "url": "https://w3c.github.io/rdf-semantics/spec/#ChangeLog-11" + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-semantics/#Acknowledgments" } }, "#ChangeLog-12": { "current": { - "number": "G", + "number": "F", "spec": "RDF 1.2 Semantics", - "text": "Changes since RDF 1.1", + "text": "Substantive changes since RDF 1.1", "url": "https://w3c.github.io/rdf-semantics/spec/#ChangeLog-12" + }, + "snapshot": { + "number": "F", + "spec": "RDF 1.2 Semantics", + "text": "Substantive changes since RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-semantics/#ChangeLog-12" } }, "#D_entailment": { @@ -29,6 +33,12 @@ "spec": "RDF 1.2 Semantics", "text": "Datatype entailment", "url": "https://w3c.github.io/rdf-semantics/spec/#D_entailment" + }, + "snapshot": { + "number": "7.2", + "spec": "RDF 1.2 Semantics", + "text": "Datatype entailment", + "url": "https://www.w3.org/TR/rdf12-semantics/#D_entailment" } }, "#D_interpretations": { @@ -37,6 +47,12 @@ "spec": "RDF 1.2 Semantics", "text": "D-interpretations", "url": "https://w3c.github.io/rdf-semantics/spec/#D_interpretations" + }, + "snapshot": { + "number": "7.1", + "spec": "RDF 1.2 Semantics", + "text": "D-interpretations", + "url": "https://www.w3.org/TR/rdf12-semantics/#D_interpretations" } }, "#Reif": { @@ -45,6 +61,12 @@ "spec": "RDF 1.2 Semantics", "text": "Reification", "url": "https://w3c.github.io/rdf-semantics/spec/#Reif" + }, + "snapshot": { + "number": "D.1", + "spec": "RDF 1.2 Semantics", + "text": "Reification", + "url": "https://www.w3.org/TR/rdf12-semantics/#Reif" } }, "#appendices-0": { @@ -53,6 +75,12 @@ "spec": "RDF 1.2 Semantics", "text": "11. Appendices", "url": "https://w3c.github.io/rdf-semantics/spec/#appendices-0" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Semantics", + "text": "11. Appendices", + "url": "https://www.w3.org/TR/rdf12-semantics/#appendices-0" } }, "#blank_nodes": { @@ -61,6 +89,12 @@ "spec": "RDF 1.2 Semantics", "text": "Blank nodes", "url": "https://w3c.github.io/rdf-semantics/spec/#blank_nodes" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 Semantics", + "text": "Blank nodes", + "url": "https://www.w3.org/TR/rdf12-semantics/#blank_nodes" } }, "#collections": { @@ -69,6 +103,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDF collections", "url": "https://w3c.github.io/rdf-semantics/spec/#collections" + }, + "snapshot": { + "number": "D.3", + "spec": "RDF 1.2 Semantics", + "text": "RDF collections", + "url": "https://www.w3.org/TR/rdf12-semantics/#collections" } }, "#conformance": { @@ -77,6 +117,12 @@ "spec": "RDF 1.2 Semantics", "text": "Conformance", "url": "https://w3c.github.io/rdf-semantics/spec/#conformance" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 Semantics", + "text": "Conformance", + "url": "https://www.w3.org/TR/rdf12-semantics/#conformance" } }, "#containers": { @@ -85,6 +131,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDF containers", "url": "https://w3c.github.io/rdf-semantics/spec/#containers" + }, + "snapshot": { + "number": "D.2", + "spec": "RDF 1.2 Semantics", + "text": "RDF containers", + "url": "https://www.w3.org/TR/rdf12-semantics/#containers" } }, "#datatype_entailment_patterns": { @@ -93,6 +145,12 @@ "spec": "RDF 1.2 Semantics", "text": "Patterns of datatype entailment (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#datatype_entailment_patterns" + }, + "snapshot": { + "number": "7.2.1", + "spec": "RDF 1.2 Semantics", + "text": "Patterns of datatype entailment (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#datatype_entailment_patterns" } }, "#datatypes": { @@ -101,6 +159,12 @@ "spec": "RDF 1.2 Semantics", "text": "Literals and datatypes", "url": "https://w3c.github.io/rdf-semantics/spec/#datatypes" + }, + "snapshot": { + "number": "7", + "spec": "RDF 1.2 Semantics", + "text": "Literals and datatypes", + "url": "https://www.w3.org/TR/rdf12-semantics/#datatypes" } }, "#entailment_rules": { @@ -109,6 +173,12 @@ "spec": "RDF 1.2 Semantics", "text": "Entailment rules (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#entailment_rules" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 Semantics", + "text": "Entailment rules (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#entailment_rules" } }, "#extensions": { @@ -117,6 +187,12 @@ "spec": "RDF 1.2 Semantics", "text": "Semantic Extensions and Entailment Regimes", "url": "https://w3c.github.io/rdf-semantics/spec/#extensions" + }, + "snapshot": { + "number": "3", + "spec": "RDF 1.2 Semantics", + "text": "Semantic Extensions and Entailment Regimes", + "url": "https://www.w3.org/TR/rdf12-semantics/#extensions" } }, "#finite_interpretations": { @@ -125,38 +201,68 @@ "spec": "RDF 1.2 Semantics", "text": "Finite interpretations", "url": "https://w3c.github.io/rdf-semantics/spec/#finite_interpretations" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 Semantics", + "text": "Finite interpretations", + "url": "https://www.w3.org/TR/rdf12-semantics/#finite_interpretations" } }, "#index": { "current": { - "number": "H", + "number": "G", "spec": "RDF 1.2 Semantics", "text": "Index", "url": "https://w3c.github.io/rdf-semantics/spec/#index" + }, + "snapshot": { + "number": "G", + "spec": "RDF 1.2 Semantics", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-semantics/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "H.2", + "number": "G.2", "spec": "RDF 1.2 Semantics", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-semantics/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "G.2", + "spec": "RDF 1.2 Semantics", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-semantics/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "H.1", + "number": "G.1", "spec": "RDF 1.2 Semantics", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-semantics/spec/#index-defined-here" + }, + "snapshot": { + "number": "G.1", + "spec": "RDF 1.2 Semantics", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-semantics/#index-defined-here" } }, "#informative-references": { "current": { - "number": "I.2", + "number": "H.2", "spec": "RDF 1.2 Semantics", "text": "Informative references", "url": "https://w3c.github.io/rdf-semantics/spec/#informative-references" + }, + "snapshot": { + "number": "H.2", + "spec": "RDF 1.2 Semantics", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-semantics/#informative-references" } }, "#introduction-0": { @@ -165,14 +271,26 @@ "spec": "RDF 1.2 Semantics", "text": "Introduction", "url": "https://w3c.github.io/rdf-semantics/spec/#introduction-0" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 Semantics", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-semantics/#introduction-0" } }, "#normative-references": { "current": { - "number": "I.1", + "number": "H.1", "spec": "RDF 1.2 Semantics", "text": "Normative references", "url": "https://w3c.github.io/rdf-semantics/spec/#normative-references" + }, + "snapshot": { + "number": "H.1", + "spec": "RDF 1.2 Semantics", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-semantics/#normative-references" } }, "#notation": { @@ -181,6 +299,12 @@ "spec": "RDF 1.2 Semantics", "text": "Notation and Terminology", "url": "https://w3c.github.io/rdf-semantics/spec/#notation" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 Semantics", + "text": "Notation and Terminology", + "url": "https://www.w3.org/TR/rdf12-semantics/#notation" } }, "#notes-0": { @@ -189,6 +313,12 @@ "spec": "RDF 1.2 Semantics", "text": "Notes", "url": "https://w3c.github.io/rdf-semantics/spec/#notes-0" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Semantics", + "text": "Notes", + "url": "https://www.w3.org/TR/rdf12-semantics/#notes-0" } }, "#proofs": { @@ -197,6 +327,12 @@ "spec": "RDF 1.2 Semantics", "text": "Proofs of some results (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#proofs" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 Semantics", + "text": "Proofs of some results (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#proofs" } }, "#rdf_d_interpretations": { @@ -205,6 +341,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDF Interpretations", "url": "https://w3c.github.io/rdf-semantics/spec/#rdf_d_interpretations" + }, + "snapshot": { + "number": "8", + "spec": "RDF 1.2 Semantics", + "text": "RDF Interpretations", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdf_d_interpretations" } }, "#rdf_datasets": { @@ -213,6 +355,12 @@ "spec": "RDF 1.2 Semantics", "text": "10. RDF Datasets", "url": "https://w3c.github.io/rdf-semantics/spec/#rdf_datasets" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Semantics", + "text": "10. RDF Datasets", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdf_datasets" } }, "#rdf_entail": { @@ -221,6 +369,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDF entailment", "url": "https://w3c.github.io/rdf-semantics/spec/#rdf_entail" + }, + "snapshot": { + "number": "8.1", + "spec": "RDF 1.2 Semantics", + "text": "RDF entailment", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdf_entail" } }, "#rdf_entailment_patterns": { @@ -229,6 +383,12 @@ "spec": "RDF 1.2 Semantics", "text": "Patterns of RDF entailment (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#rdf_entailment_patterns" + }, + "snapshot": { + "number": "8.1.1", + "spec": "RDF 1.2 Semantics", + "text": "Patterns of RDF entailment (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdf_entailment_patterns" } }, "#rdfs_entailment": { @@ -237,6 +397,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDFS entailment", "url": "https://w3c.github.io/rdf-semantics/spec/#rdfs_entailment" + }, + "snapshot": { + "number": "9.2", + "spec": "RDF 1.2 Semantics", + "text": "RDFS entailment", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdfs_entailment" } }, "#rdfs_interpretations": { @@ -245,6 +411,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDFS Interpretations", "url": "https://w3c.github.io/rdf-semantics/spec/#rdfs_interpretations" + }, + "snapshot": { + "number": "9", + "spec": "RDF 1.2 Semantics", + "text": "RDFS Interpretations", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdfs_interpretations" } }, "#rdfs_literal_note": { @@ -253,6 +425,12 @@ "spec": "RDF 1.2 Semantics", "text": "A note on rdfs:Literal (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#rdfs_literal_note" + }, + "snapshot": { + "number": "9.1", + "spec": "RDF 1.2 Semantics", + "text": "A note on rdfs:Literal (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdfs_literal_note" } }, "#rdfs_patterns": { @@ -261,14 +439,26 @@ "spec": "RDF 1.2 Semantics", "text": "Patterns of RDFS entailment (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#rdfs_patterns" + }, + "snapshot": { + "number": "9.2.1", + "spec": "RDF 1.2 Semantics", + "text": "Patterns of RDFS entailment (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#rdfs_patterns" } }, "#references": { "current": { - "number": "I", + "number": "H", "spec": "RDF 1.2 Semantics", "text": "References", "url": "https://w3c.github.io/rdf-semantics/spec/#references" + }, + "snapshot": { + "number": "H", + "spec": "RDF 1.2 Semantics", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-semantics/#references" } }, "#related": { @@ -277,6 +467,12 @@ "spec": "RDF 1.2 Semantics", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-semantics/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Semantics", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-semantics/#related" } }, "#shared_blank_nodes": { @@ -285,6 +481,12 @@ "spec": "RDF 1.2 Semantics", "text": "Shared blank nodes (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#shared_blank_nodes" + }, + "snapshot": { + "number": "5.1.1", + "spec": "RDF 1.2 Semantics", + "text": "Shared blank nodes (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#shared_blank_nodes" } }, "#simple": { @@ -293,6 +495,12 @@ "spec": "RDF 1.2 Semantics", "text": "Simple Interpretations", "url": "https://w3c.github.io/rdf-semantics/spec/#simple" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 Semantics", + "text": "Simple Interpretations", + "url": "https://www.w3.org/TR/rdf12-semantics/#simple" } }, "#simple_entailment_properties": { @@ -301,6 +509,12 @@ "spec": "RDF 1.2 Semantics", "text": "Properties of simple entailment (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#simple_entailment_properties" + }, + "snapshot": { + "number": "5.3", + "spec": "RDF 1.2 Semantics", + "text": "Properties of simple entailment (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#simple_entailment_properties" } }, "#simpleentailment": { @@ -309,6 +523,12 @@ "spec": "RDF 1.2 Semantics", "text": "Simple Entailment", "url": "https://w3c.github.io/rdf-semantics/spec/#simpleentailment" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 Semantics", + "text": "Simple Entailment", + "url": "https://www.w3.org/TR/rdf12-semantics/#simpleentailment" } }, "#skolemization": { @@ -317,6 +537,12 @@ "spec": "RDF 1.2 Semantics", "text": "Skolemization (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#skolemization" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 Semantics", + "text": "Skolemization (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#skolemization" } }, "#title": { @@ -325,6 +551,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDF 1.2 Semantics", "url": "https://w3c.github.io/rdf-semantics/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Semantics", + "text": "RDF 1.2 Semantics", + "url": "https://www.w3.org/TR/rdf12-semantics/#title" } }, "#toc": { @@ -333,6 +565,12 @@ "spec": "RDF 1.2 Semantics", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-semantics/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Semantics", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-semantics/#toc" } }, "#unions_merges": { @@ -341,6 +579,12 @@ "spec": "RDF 1.2 Semantics", "text": "Shared blank nodes, unions and merges", "url": "https://w3c.github.io/rdf-semantics/spec/#unions_merges" + }, + "snapshot": { + "number": "4.1", + "spec": "RDF 1.2 Semantics", + "text": "Shared blank nodes, unions and merges", + "url": "https://www.w3.org/TR/rdf12-semantics/#unions_merges" } }, "#whatnot": { @@ -349,6 +593,12 @@ "spec": "RDF 1.2 Semantics", "text": "RDF reification, containers and collections (Informative)", "url": "https://w3c.github.io/rdf-semantics/spec/#whatnot" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 Semantics", + "text": "RDF reification, containers and collections (Informative)", + "url": "https://www.w3.org/TR/rdf12-semantics/#whatnot" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-trig.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-trig.json index 899a17adaf..88585b715c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-trig.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-trig.json @@ -1,34 +1,58 @@ { "#Acknowledgments": { "current": { - "number": "6", + "number": "D", "spec": "RDF 1.2 TriG", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-trig/spec/#Acknowledgments" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 TriG", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-trig/#Acknowledgments" } }, "#acknowledgments-for-rdf-1-1": { "current": { - "number": "6.1", + "number": "D.1", "spec": "RDF 1.2 TriG", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-trig/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "D.1", + "spec": "RDF 1.2 TriG", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-trig/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { "current": { - "number": "6.2", + "number": "D.2", "spec": "RDF 1.2 TriG", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-trig/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "D.2", + "spec": "RDF 1.2 TriG", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-trig/#acknowledgments-for-rdf-1-2" } }, "#collection": { "current": { - "number": "5.3.2.3", + "number": "5.3.5", "spec": "RDF 1.2 TriG", "text": "Collections", "url": "https://w3c.github.io/rdf-trig/spec/#collection" + }, + "snapshot": { + "number": "5.3.5", + "spec": "RDF 1.2 TriG", + "text": "Collections", + "url": "https://www.w3.org/TR/rdf12-trig/#collection" } }, "#conformance": { @@ -37,6 +61,12 @@ "spec": "RDF 1.2 TriG", "text": "Conformance", "url": "https://w3c.github.io/rdf-trig/spec/#conformance" + }, + "snapshot": { + "number": "3", + "spec": "RDF 1.2 TriG", + "text": "Conformance", + "url": "https://www.w3.org/TR/rdf12-trig/#conformance" } }, "#grammar-ebnf": { @@ -45,54 +75,96 @@ "spec": "RDF 1.2 TriG", "text": "Grammar", "url": "https://w3c.github.io/rdf-trig/spec/#grammar-ebnf" + }, + "snapshot": { + "number": "4.5", + "spec": "RDF 1.2 TriG", + "text": "Grammar", + "url": "https://www.w3.org/TR/rdf12-trig/#grammar-ebnf" } }, "#index": { "current": { - "number": "D", + "number": "F", "spec": "RDF 1.2 TriG", "text": "Index", "url": "https://w3c.github.io/rdf-trig/spec/#index" + }, + "snapshot": { + "number": "F", + "spec": "RDF 1.2 TriG", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-trig/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "D.2", + "number": "F.2", "spec": "RDF 1.2 TriG", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-trig/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "F.2", + "spec": "RDF 1.2 TriG", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-trig/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "D.1", + "number": "F.1", "spec": "RDF 1.2 TriG", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-trig/spec/#index-defined-here" + }, + "snapshot": { + "number": "F.1", + "spec": "RDF 1.2 TriG", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-trig/#index-defined-here" } }, "#informative-references": { "current": { - "number": "E.2", + "number": "G.2", "spec": "RDF 1.2 TriG", "text": "Informative references", "url": "https://w3c.github.io/rdf-trig/spec/#informative-references" + }, + "snapshot": { + "number": "G.2", + "spec": "RDF 1.2 TriG", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-trig/#informative-references" } }, "#normative-references": { "current": { - "number": "E.1", + "number": "G.1", "spec": "RDF 1.2 TriG", "text": "Normative references", "url": "https://w3c.github.io/rdf-trig/spec/#normative-references" + }, + "snapshot": { + "number": "G.1", + "spec": "RDF 1.2 TriG", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-trig/#normative-references" } }, "#other-terms": { "current": { - "number": "2.3", + "number": "2.4", "spec": "RDF 1.2 TriG", "text": "Other Terms", "url": "https://w3c.github.io/rdf-trig/spec/#other-terms" + }, + "snapshot": { + "number": "2.4", + "spec": "RDF 1.2 TriG", + "text": "Other Terms", + "url": "https://www.w3.org/TR/rdf12-trig/#other-terms" } }, "#output-graph": { @@ -101,22 +173,68 @@ "spec": "RDF 1.2 TriG", "text": "Output Graph", "url": "https://w3c.github.io/rdf-trig/spec/#output-graph" + }, + "snapshot": { + "number": "5.3.1", + "spec": "RDF 1.2 TriG", + "text": "Output Graph", + "url": "https://www.w3.org/TR/rdf12-trig/#output-graph" + } + }, + "#privacy-considerations": { + "current": { + "number": "A", + "spec": "RDF 1.2 TriG", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/rdf-trig/spec/#privacy-considerations" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 TriG", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/rdf12-trig/#privacy-considerations" } }, "#propertyList": { "current": { - "number": "5.3.2.2", + "number": "5.3.4", "spec": "RDF 1.2 TriG", "text": "Property Lists", "url": "https://w3c.github.io/rdf-trig/spec/#propertyList" + }, + "snapshot": { + "number": "5.3.4", + "spec": "RDF 1.2 TriG", + "text": "Property Lists", + "url": "https://www.w3.org/TR/rdf12-trig/#propertyList" + } + }, + "#quoted-triples": { + "current": { + "number": "2.3", + "spec": "RDF 1.2 TriG", + "text": "Quoted Triples", + "url": "https://w3c.github.io/rdf-trig/spec/#quoted-triples" + }, + "snapshot": { + "number": "2.3", + "spec": "RDF 1.2 TriG", + "text": "Quoted Triples", + "url": "https://www.w3.org/TR/rdf12-trig/#quoted-triples" } }, "#references": { "current": { - "number": "E", + "number": "G", "spec": "RDF 1.2 TriG", "text": "References", "url": "https://w3c.github.io/rdf-trig/spec/#references" + }, + "snapshot": { + "number": "G", + "spec": "RDF 1.2 TriG", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-trig/#references" } }, "#related": { @@ -125,22 +243,26 @@ "spec": "RDF 1.2 TriG", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-trig/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 TriG", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-trig/#related" } }, "#sec-changes": { "current": { - "number": "B", + "number": "E", "spec": "RDF 1.2 TriG", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-trig/spec/#sec-changes" - } - }, - "#sec-differences": { - "current": { - "number": "A", + }, + "snapshot": { + "number": "E", "spec": "RDF 1.2 TriG", - "text": "Changes between the earlier version and RDF 1.1 Recommendation", - "url": "https://w3c.github.io/rdf-trig/spec/#sec-differences" + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-changes" } }, "#sec-escapes": { @@ -149,6 +271,12 @@ "spec": "RDF 1.2 TriG", "text": "Escape Sequences", "url": "https://w3c.github.io/rdf-trig/spec/#sec-escapes" + }, + "snapshot": { + "number": "4.4", + "spec": "RDF 1.2 TriG", + "text": "Escape Sequences", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-escapes" } }, "#sec-grammar": { @@ -157,6 +285,12 @@ "spec": "RDF 1.2 TriG", "text": "TriG Grammar", "url": "https://w3c.github.io/rdf-trig/spec/#sec-grammar" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 TriG", + "text": "TriG Grammar", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-grammar" } }, "#sec-grammar-comments": { @@ -165,6 +299,12 @@ "spec": "RDF 1.2 TriG", "text": "Comments", "url": "https://w3c.github.io/rdf-trig/spec/#sec-grammar-comments" + }, + "snapshot": { + "number": "4.2", + "spec": "RDF 1.2 TriG", + "text": "Comments", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-grammar-comments" } }, "#sec-grammar-ws": { @@ -173,6 +313,12 @@ "spec": "RDF 1.2 TriG", "text": "White Space", "url": "https://w3c.github.io/rdf-trig/spec/#sec-grammar-ws" + }, + "snapshot": { + "number": "4.1", + "spec": "RDF 1.2 TriG", + "text": "White Space", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-grammar-ws" } }, "#sec-graph-statements": { @@ -181,6 +327,12 @@ "spec": "RDF 1.2 TriG", "text": "Graph Statements", "url": "https://w3c.github.io/rdf-trig/spec/#sec-graph-statements" + }, + "snapshot": { + "number": "2.2", + "spec": "RDF 1.2 TriG", + "text": "Graph Statements", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-graph-statements" } }, "#sec-intro": { @@ -189,6 +341,12 @@ "spec": "RDF 1.2 TriG", "text": "Introduction", "url": "https://w3c.github.io/rdf-trig/spec/#sec-intro" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 TriG", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-intro" } }, "#sec-iri-references": { @@ -197,6 +355,12 @@ "spec": "RDF 1.2 TriG", "text": "IRI References", "url": "https://w3c.github.io/rdf-trig/spec/#sec-iri-references" + }, + "snapshot": { + "number": "4.3", + "spec": "RDF 1.2 TriG", + "text": "IRI References", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-iri-references" } }, "#sec-mediaReg": { @@ -205,6 +369,12 @@ "spec": "RDF 1.2 TriG", "text": "Media Type Registration", "url": "https://w3c.github.io/rdf-trig/spec/#sec-mediaReg" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 TriG", + "text": "Media Type Registration", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-mediaReg" } }, "#sec-mime": { @@ -213,6 +383,12 @@ "spec": "RDF 1.2 TriG", "text": "Media Type and Content Encoding", "url": "https://w3c.github.io/rdf-trig/spec/#sec-mime" + }, + "snapshot": { + "number": "3.1", + "spec": "RDF 1.2 TriG", + "text": "Media Type and Content Encoding", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-mime" } }, "#sec-parsing": { @@ -221,6 +397,12 @@ "spec": "RDF 1.2 TriG", "text": "Parsing", "url": "https://w3c.github.io/rdf-trig/spec/#sec-parsing" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 TriG", + "text": "Parsing", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-parsing" } }, "#sec-parsing-state": { @@ -229,6 +411,12 @@ "spec": "RDF 1.2 TriG", "text": "Parser State", "url": "https://w3c.github.io/rdf-trig/spec/#sec-parsing-state" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 TriG", + "text": "Parser State", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-parsing-state" } }, "#sec-parsing-terms": { @@ -237,6 +425,12 @@ "spec": "RDF 1.2 TriG", "text": "RDF Term Constructors", "url": "https://w3c.github.io/rdf-trig/spec/#sec-parsing-terms" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 TriG", + "text": "RDF Term Constructors", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-parsing-terms" } }, "#sec-parsing-triples": { @@ -245,6 +439,12 @@ "spec": "RDF 1.2 TriG", "text": "RDF Triples Construction", "url": "https://w3c.github.io/rdf-trig/spec/#sec-parsing-triples" + }, + "snapshot": { + "number": "5.3", + "spec": "RDF 1.2 TriG", + "text": "RDF Triples Construction", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-parsing-triples" } }, "#sec-trig-intro": { @@ -253,6 +453,12 @@ "spec": "RDF 1.2 TriG", "text": "TriG Language", "url": "https://w3c.github.io/rdf-trig/spec/#sec-trig-intro" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 TriG", + "text": "TriG Language", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-trig-intro" } }, "#sec-triple-statements": { @@ -261,6 +467,40 @@ "spec": "RDF 1.2 TriG", "text": "Triple Statements", "url": "https://w3c.github.io/rdf-trig/spec/#sec-triple-statements" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 TriG", + "text": "Triple Statements", + "url": "https://www.w3.org/TR/rdf12-trig/#sec-triple-statements" + } + }, + "#security": { + "current": { + "number": "B", + "spec": "RDF 1.2 TriG", + "text": "Security Considerations", + "url": "https://w3c.github.io/rdf-trig/spec/#security" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 TriG", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/rdf12-trig/#security" + } + }, + "#selected-terminal-literal-strings": { + "current": { + "number": "4.6", + "spec": "RDF 1.2 TriG", + "text": "Selected Terminal Literal Strings", + "url": "https://w3c.github.io/rdf-trig/spec/#selected-terminal-literal-strings" + }, + "snapshot": { + "number": "4.6", + "spec": "RDF 1.2 TriG", + "text": "Selected Terminal Literal Strings", + "url": "https://www.w3.org/TR/rdf12-trig/#selected-terminal-literal-strings" } }, "#subtitle": { @@ -269,6 +509,12 @@ "spec": "RDF 1.2 TriG", "text": "RDF Dataset Language", "url": "https://w3c.github.io/rdf-trig/spec/#subtitle" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 TriG", + "text": "RDF Dataset Language", + "url": "https://www.w3.org/TR/rdf12-trig/#subtitle" } }, "#terminals": { @@ -277,14 +523,26 @@ "spec": "RDF 1.2 TriG", "text": "Productions for terminals", "url": "https://w3c.github.io/rdf-trig/spec/#terminals" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 TriG", + "text": "Productions for terminals", + "url": "https://www.w3.org/TR/rdf12-trig/#terminals" } }, "#terms-blanks-nodes": { "current": { - "number": "2.3.1", + "number": "2.4.1", "spec": "RDF 1.2 TriG", "text": "Special Considerations for Blank Nodes", "url": "https://w3c.github.io/rdf-trig/spec/#terms-blanks-nodes" + }, + "snapshot": { + "number": "2.4.1", + "spec": "RDF 1.2 TriG", + "text": "Special Considerations for Blank Nodes", + "url": "https://www.w3.org/TR/rdf12-trig/#terms-blanks-nodes" } }, "#title": { @@ -293,6 +551,12 @@ "spec": "RDF 1.2 TriG", "text": "RDF 1.2 TriG", "url": "https://w3c.github.io/rdf-trig/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 TriG", + "text": "RDF 1.2 TriG", + "url": "https://www.w3.org/TR/rdf12-trig/#title" } }, "#toc": { @@ -301,6 +565,12 @@ "spec": "RDF 1.2 TriG", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-trig/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 TriG", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-trig/#toc" } }, "#triple-output": { @@ -309,14 +579,26 @@ "spec": "RDF 1.2 TriG", "text": "Triple Output", "url": "https://w3c.github.io/rdf-trig/spec/#triple-output" + }, + "snapshot": { + "number": "5.3.2", + "spec": "RDF 1.2 TriG", + "text": "Triple Output", + "url": "https://www.w3.org/TR/rdf12-trig/#triple-output" } }, "#triple-production": { "current": { - "number": "5.3.2.1", + "number": "5.3.3", "spec": "RDF 1.2 TriG", "text": "Triple Production", "url": "https://w3c.github.io/rdf-trig/spec/#triple-production" + }, + "snapshot": { + "number": "5.3.3", + "spec": "RDF 1.2 TriG", + "text": "Triple Production", + "url": "https://www.w3.org/TR/rdf12-trig/#triple-production" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-turtle.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-turtle.json index 5b2a699ebb..b013416545 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-turtle.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-turtle.json @@ -5,6 +5,12 @@ "spec": "RDF 1.2 Turtle", "text": "RDF Blank Nodes", "url": "https://w3c.github.io/rdf-turtle/spec/#BNodes" + }, + "snapshot": { + "number": "2.6", + "spec": "RDF 1.2 Turtle", + "text": "RDF Blank Nodes", + "url": "https://www.w3.org/TR/rdf12-turtle/#BNodes" } }, "#abbrev": { @@ -13,22 +19,68 @@ "spec": "RDF 1.2 Turtle", "text": "Numbers", "url": "https://w3c.github.io/rdf-turtle/spec/#abbrev" + }, + "snapshot": { + "number": "2.5.2", + "spec": "RDF 1.2 Turtle", + "text": "Numbers", + "url": "https://www.w3.org/TR/rdf12-turtle/#abbrev" } }, "#acknowledgments-for-rdf-1-1": { "current": { - "number": "C.1", + "number": "E.1", "spec": "RDF 1.2 Turtle", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-turtle/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "E.1", + "spec": "RDF 1.2 Turtle", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-turtle/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { "current": { - "number": "C.2", + "number": "E.2", "spec": "RDF 1.2 Turtle", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-turtle/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "E.2", + "spec": "RDF 1.2 Turtle", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-turtle/#acknowledgments-for-rdf-1-2" + } + }, + "#annotation-syntax": { + "current": { + "number": "2.10.1", + "spec": "RDF 1.2 Turtle", + "text": "Annotation Syntax", + "url": "https://w3c.github.io/rdf-turtle/spec/#annotation-syntax" + }, + "snapshot": { + "number": "2.10.1", + "spec": "RDF 1.2 Turtle", + "text": "Annotation Syntax", + "url": "https://www.w3.org/TR/rdf12-turtle/#annotation-syntax" + } + }, + "#annotations": { + "current": { + "number": "7.3.3", + "spec": "RDF 1.2 Turtle", + "text": "Annotations:", + "url": "https://w3c.github.io/rdf-turtle/spec/#annotations" + }, + "snapshot": { + "number": "7.3.3", + "spec": "RDF 1.2 Turtle", + "text": "Annotations:", + "url": "https://www.w3.org/TR/rdf12-turtle/#annotations" } }, "#booleans": { @@ -37,22 +89,26 @@ "spec": "RDF 1.2 Turtle", "text": "Booleans", "url": "https://w3c.github.io/rdf-turtle/spec/#booleans" - } - }, - "#changes-11": { - "current": { - "number": "D", + }, + "snapshot": { + "number": "2.5.3", "spec": "RDF 1.2 Turtle", - "text": "Changes between Team Submission and RDF 1.1", - "url": "https://w3c.github.io/rdf-turtle/spec/#changes-11" + "text": "Booleans", + "url": "https://www.w3.org/TR/rdf12-turtle/#booleans" } }, "#changes-12": { "current": { - "number": "E", + "number": "F", "spec": "RDF 1.2 Turtle", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-turtle/spec/#changes-12" + }, + "snapshot": { + "number": "F", + "spec": "RDF 1.2 Turtle", + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-turtle/#changes-12" } }, "#collections": { @@ -61,14 +117,26 @@ "spec": "RDF 1.2 Turtle", "text": "Collections", "url": "https://w3c.github.io/rdf-turtle/spec/#collections" + }, + "snapshot": { + "number": "2.8", + "spec": "RDF 1.2 Turtle", + "text": "Collections", + "url": "https://www.w3.org/TR/rdf12-turtle/#collections" } }, "#collections-0": { "current": { - "number": "7.3.2", + "number": "7.3.5", "spec": "RDF 1.2 Turtle", "text": "Collections:", "url": "https://w3c.github.io/rdf-turtle/spec/#collections-0" + }, + "snapshot": { + "number": "7.3.5", + "spec": "RDF 1.2 Turtle", + "text": "Collections:", + "url": "https://www.w3.org/TR/rdf12-turtle/#collections-0" } }, "#conformance": { @@ -77,6 +145,12 @@ "spec": "RDF 1.2 Turtle", "text": "Conformance", "url": "https://w3c.github.io/rdf-turtle/spec/#conformance" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 Turtle", + "text": "Conformance", + "url": "https://www.w3.org/TR/rdf12-turtle/#conformance" } }, "#in-html": { @@ -85,6 +159,12 @@ "spec": "RDF 1.2 Turtle", "text": "Embedding Turtle in HTML documents", "url": "https://w3c.github.io/rdf-turtle/spec/#in-html" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 Turtle", + "text": "Embedding Turtle in HTML documents", + "url": "https://www.w3.org/TR/rdf12-turtle/#in-html" } }, "#in-html-parsing": { @@ -93,38 +173,68 @@ "spec": "RDF 1.2 Turtle", "text": "Parsing Turtle in HTML", "url": "https://w3c.github.io/rdf-turtle/spec/#in-html-parsing" + }, + "snapshot": { + "number": "A.2", + "spec": "RDF 1.2 Turtle", + "text": "Parsing Turtle in HTML", + "url": "https://www.w3.org/TR/rdf12-turtle/#in-html-parsing" } }, "#index": { "current": { - "number": "F", + "number": "G", "spec": "RDF 1.2 Turtle", "text": "Index", "url": "https://w3c.github.io/rdf-turtle/spec/#index" + }, + "snapshot": { + "number": "G", + "spec": "RDF 1.2 Turtle", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-turtle/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "F.2", + "number": "G.2", "spec": "RDF 1.2 Turtle", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-turtle/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "G.2", + "spec": "RDF 1.2 Turtle", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-turtle/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "F.1", + "number": "G.1", "spec": "RDF 1.2 Turtle", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-turtle/spec/#index-defined-here" + }, + "snapshot": { + "number": "G.1", + "spec": "RDF 1.2 Turtle", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-turtle/#index-defined-here" } }, "#informative-references": { "current": { - "number": "G.2", + "number": "H.2", "spec": "RDF 1.2 Turtle", "text": "Informative references", "url": "https://w3c.github.io/rdf-turtle/spec/#informative-references" + }, + "snapshot": { + "number": "H.2", + "spec": "RDF 1.2 Turtle", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-turtle/#informative-references" } }, "#language-features": { @@ -133,6 +243,12 @@ "spec": "RDF 1.2 Turtle", "text": "Turtle Language", "url": "https://w3c.github.io/rdf-turtle/spec/#language-features" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 Turtle", + "text": "Turtle Language", + "url": "https://www.w3.org/TR/rdf12-turtle/#language-features" } }, "#literals": { @@ -141,14 +257,26 @@ "spec": "RDF 1.2 Turtle", "text": "RDF Literals", "url": "https://w3c.github.io/rdf-turtle/spec/#literals" + }, + "snapshot": { + "number": "2.5", + "spec": "RDF 1.2 Turtle", + "text": "RDF Literals", + "url": "https://www.w3.org/TR/rdf12-turtle/#literals" } }, "#normative-references": { "current": { - "number": "G.1", + "number": "H.1", "spec": "RDF 1.2 Turtle", "text": "Normative references", "url": "https://w3c.github.io/rdf-turtle/spec/#normative-references" + }, + "snapshot": { + "number": "H.1", + "spec": "RDF 1.2 Turtle", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-turtle/#normative-references" } }, "#object-lists": { @@ -157,6 +285,12 @@ "spec": "RDF 1.2 Turtle", "text": "Object Lists", "url": "https://w3c.github.io/rdf-turtle/spec/#object-lists" + }, + "snapshot": { + "number": "2.3", + "spec": "RDF 1.2 Turtle", + "text": "Object Lists", + "url": "https://www.w3.org/TR/rdf12-turtle/#object-lists" } }, "#predicate-lists": { @@ -165,22 +299,82 @@ "spec": "RDF 1.2 Turtle", "text": "Predicate Lists", "url": "https://w3c.github.io/rdf-turtle/spec/#predicate-lists" + }, + "snapshot": { + "number": "2.2", + "spec": "RDF 1.2 Turtle", + "text": "Predicate Lists", + "url": "https://www.w3.org/TR/rdf12-turtle/#predicate-lists" + } + }, + "#privacy-considerations": { + "current": { + "number": "B", + "spec": "RDF 1.2 Turtle", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/rdf-turtle/spec/#privacy-considerations" + }, + "snapshot": { + "number": "B", + "spec": "RDF 1.2 Turtle", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/rdf12-turtle/#privacy-considerations" } }, "#property-lists": { "current": { - "number": "7.3.1", + "number": "7.3.4", "spec": "RDF 1.2 Turtle", "text": "Property Lists:", "url": "https://w3c.github.io/rdf-turtle/spec/#property-lists" + }, + "snapshot": { + "number": "7.3.4", + "spec": "RDF 1.2 Turtle", + "text": "Property Lists:", + "url": "https://www.w3.org/TR/rdf12-turtle/#property-lists" } }, "#references": { "current": { - "number": "G", + "number": "H", "spec": "RDF 1.2 Turtle", "text": "References", "url": "https://w3c.github.io/rdf-turtle/spec/#references" + }, + "snapshot": { + "number": "H", + "spec": "RDF 1.2 Turtle", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-turtle/#references" + } + }, + "#reified-triples": { + "current": { + "number": "2.10", + "spec": "RDF 1.2 Turtle", + "text": "Reified Triples", + "url": "https://w3c.github.io/rdf-turtle/spec/#reified-triples" + }, + "snapshot": { + "number": "2.10", + "spec": "RDF 1.2 Turtle", + "text": "Reified Triples", + "url": "https://www.w3.org/TR/rdf12-turtle/#reified-triples" + } + }, + "#reifiers": { + "current": { + "number": "7.3.2", + "spec": "RDF 1.2 Turtle", + "text": "Reifiers:", + "url": "https://w3c.github.io/rdf-turtle/spec/#reifiers" + }, + "snapshot": { + "number": "7.3.2", + "spec": "RDF 1.2 Turtle", + "text": "Reifiers:", + "url": "https://www.w3.org/TR/rdf12-turtle/#reifiers" } }, "#related": { @@ -189,14 +383,26 @@ "spec": "RDF 1.2 Turtle", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-turtle/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Turtle", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-turtle/#related" } }, "#sec-acks": { "current": { - "number": "C", + "number": "E", "spec": "RDF 1.2 Turtle", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-acks" + }, + "snapshot": { + "number": "E", + "spec": "RDF 1.2 Turtle", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-acks" } }, "#sec-diff-sparql": { @@ -205,6 +411,12 @@ "spec": "RDF 1.2 Turtle", "text": "Turtle compared to SPARQL", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-diff-sparql" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 Turtle", + "text": "Turtle compared to SPARQL", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-diff-sparql" } }, "#sec-escapes": { @@ -213,6 +425,12 @@ "spec": "RDF 1.2 Turtle", "text": "Escape Sequences", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-escapes" + }, + "snapshot": { + "number": "6.4", + "spec": "RDF 1.2 Turtle", + "text": "Escape Sequences", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-escapes" } }, "#sec-examples": { @@ -221,6 +439,12 @@ "spec": "RDF 1.2 Turtle", "text": "Examples", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-examples" + }, + "snapshot": { + "number": "3", + "spec": "RDF 1.2 Turtle", + "text": "Examples", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-examples" } }, "#sec-grammar": { @@ -229,6 +453,12 @@ "spec": "RDF 1.2 Turtle", "text": "Turtle Grammar", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-grammar" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 Turtle", + "text": "Turtle Grammar", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-grammar" } }, "#sec-grammar-comments": { @@ -237,6 +467,12 @@ "spec": "RDF 1.2 Turtle", "text": "Comments", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-grammar-comments" + }, + "snapshot": { + "number": "6.2", + "spec": "RDF 1.2 Turtle", + "text": "Comments", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-grammar-comments" } }, "#sec-grammar-grammar": { @@ -245,6 +481,12 @@ "spec": "RDF 1.2 Turtle", "text": "Grammar", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-grammar-grammar" + }, + "snapshot": { + "number": "6.5", + "spec": "RDF 1.2 Turtle", + "text": "Grammar", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-grammar-grammar" } }, "#sec-grammar-ws": { @@ -253,6 +495,12 @@ "spec": "RDF 1.2 Turtle", "text": "White Space", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-grammar-ws" + }, + "snapshot": { + "number": "6.1", + "spec": "RDF 1.2 Turtle", + "text": "White Space", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-grammar-ws" } }, "#sec-intro": { @@ -261,6 +509,12 @@ "spec": "RDF 1.2 Turtle", "text": "Introduction", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-intro" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 Turtle", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-intro" } }, "#sec-iri": { @@ -269,6 +523,12 @@ "spec": "RDF 1.2 Turtle", "text": "IRIs", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-iri" + }, + "snapshot": { + "number": "2.4", + "spec": "RDF 1.2 Turtle", + "text": "IRIs", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-iri" } }, "#sec-iri-references": { @@ -277,14 +537,26 @@ "spec": "RDF 1.2 Turtle", "text": "IRI References", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-iri-references" + }, + "snapshot": { + "number": "6.3", + "spec": "RDF 1.2 Turtle", + "text": "IRI References", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-iri-references" } }, "#sec-mediaReg": { "current": { - "number": "B", + "number": "D", "spec": "RDF 1.2 Turtle", "text": "Internet Media Type, File Extension and Macintosh File Type", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-mediaReg" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 Turtle", + "text": "Internet Media Type, File Extension and Macintosh File Type", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-mediaReg" } }, "#sec-mime": { @@ -293,6 +565,12 @@ "spec": "RDF 1.2 Turtle", "text": "Media Type and Content Encoding", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-mime" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 Turtle", + "text": "Media Type and Content Encoding", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-mime" } }, "#sec-parsing": { @@ -301,6 +579,12 @@ "spec": "RDF 1.2 Turtle", "text": "Parsing", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-parsing" + }, + "snapshot": { + "number": "7", + "spec": "RDF 1.2 Turtle", + "text": "Parsing", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-parsing" } }, "#sec-parsing-example": { @@ -309,6 +593,12 @@ "spec": "RDF 1.2 Turtle", "text": "Parsing Example", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-parsing-example" + }, + "snapshot": { + "number": "7.4", + "spec": "RDF 1.2 Turtle", + "text": "Parsing Example", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-parsing-example" } }, "#sec-parsing-state": { @@ -317,6 +607,12 @@ "spec": "RDF 1.2 Turtle", "text": "Parser State", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-parsing-state" + }, + "snapshot": { + "number": "7.1", + "spec": "RDF 1.2 Turtle", + "text": "Parser State", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-parsing-state" } }, "#sec-parsing-terms": { @@ -325,6 +621,12 @@ "spec": "RDF 1.2 Turtle", "text": "RDF Term Constructors", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-parsing-terms" + }, + "snapshot": { + "number": "7.2", + "spec": "RDF 1.2 Turtle", + "text": "RDF Term Constructors", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-parsing-terms" } }, "#sec-parsing-triples": { @@ -333,6 +635,40 @@ "spec": "RDF 1.2 Turtle", "text": "RDF Triples Constructors", "url": "https://w3c.github.io/rdf-turtle/spec/#sec-parsing-triples" + }, + "snapshot": { + "number": "7.3", + "spec": "RDF 1.2 Turtle", + "text": "RDF Triples Constructors", + "url": "https://www.w3.org/TR/rdf12-turtle/#sec-parsing-triples" + } + }, + "#security": { + "current": { + "number": "C", + "spec": "RDF 1.2 Turtle", + "text": "Security Considerations", + "url": "https://w3c.github.io/rdf-turtle/spec/#security" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 Turtle", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/rdf12-turtle/#security" + } + }, + "#selected-terminal-literal-strings": { + "current": { + "number": "6.6", + "spec": "RDF 1.2 Turtle", + "text": "Selected Terminal Literal Strings", + "url": "https://w3c.github.io/rdf-turtle/spec/#selected-terminal-literal-strings" + }, + "snapshot": { + "number": "6.6", + "spec": "RDF 1.2 Turtle", + "text": "Selected Terminal Literal Strings", + "url": "https://www.w3.org/TR/rdf12-turtle/#selected-terminal-literal-strings" } }, "#simple-triples": { @@ -341,6 +677,12 @@ "spec": "RDF 1.2 Turtle", "text": "Simple Triples", "url": "https://w3c.github.io/rdf-turtle/spec/#simple-triples" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 Turtle", + "text": "Simple Triples", + "url": "https://www.w3.org/TR/rdf12-turtle/#simple-triples" } }, "#subtitle": { @@ -349,6 +691,12 @@ "spec": "RDF 1.2 Turtle", "text": "Terse RDF Triple Language", "url": "https://w3c.github.io/rdf-turtle/spec/#subtitle" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Turtle", + "text": "Terse RDF Triple Language", + "url": "https://www.w3.org/TR/rdf12-turtle/#subtitle" } }, "#terminals": { @@ -357,6 +705,12 @@ "spec": "RDF 1.2 Turtle", "text": "Productions for terminals", "url": "https://w3c.github.io/rdf-turtle/spec/#terminals" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Turtle", + "text": "Productions for terminals", + "url": "https://www.w3.org/TR/rdf12-turtle/#terminals" } }, "#title": { @@ -365,6 +719,12 @@ "spec": "RDF 1.2 Turtle", "text": "RDF 1.2 Turtle", "url": "https://w3c.github.io/rdf-turtle/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Turtle", + "text": "RDF 1.2 Turtle", + "url": "https://www.w3.org/TR/rdf12-turtle/#title" } }, "#toc": { @@ -373,6 +733,40 @@ "spec": "RDF 1.2 Turtle", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-turtle/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 Turtle", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-turtle/#toc" + } + }, + "#triple-terms": { + "current": { + "number": "2.9", + "spec": "RDF 1.2 Turtle", + "text": "Triple Terms", + "url": "https://w3c.github.io/rdf-turtle/spec/#triple-terms" + }, + "snapshot": { + "number": "2.9", + "spec": "RDF 1.2 Turtle", + "text": "Triple Terms", + "url": "https://www.w3.org/TR/rdf12-turtle/#triple-terms" + } + }, + "#triple-terms-0": { + "current": { + "number": "7.3.1", + "spec": "RDF 1.2 Turtle", + "text": "Triple Terms:", + "url": "https://w3c.github.io/rdf-turtle/spec/#triple-terms-0" + }, + "snapshot": { + "number": "7.3.1", + "spec": "RDF 1.2 Turtle", + "text": "Triple Terms:", + "url": "https://www.w3.org/TR/rdf12-turtle/#triple-terms-0" } }, "#turtle-literals": { @@ -381,14 +775,26 @@ "spec": "RDF 1.2 Turtle", "text": "Quoted Literals", "url": "https://w3c.github.io/rdf-turtle/spec/#turtle-literals" + }, + "snapshot": { + "number": "2.5.1", + "spec": "RDF 1.2 Turtle", + "text": "Quoted Literals", + "url": "https://www.w3.org/TR/rdf12-turtle/#turtle-literals" } }, "#unlabeled-bnodes": { "current": { "number": "2.7", "spec": "RDF 1.2 Turtle", - "text": "Nesting Unlabeled Blank Nodes in Turtle", + "text": "Nesting of Blank Nodes without Blank Node Identifiers", "url": "https://w3c.github.io/rdf-turtle/spec/#unlabeled-bnodes" + }, + "snapshot": { + "number": "2.7", + "spec": "RDF 1.2 Turtle", + "text": "Nesting of Blank Nodes without Blank Node Identifiers", + "url": "https://www.w3.org/TR/rdf12-turtle/#unlabeled-bnodes" } }, "#xhtml": { @@ -397,6 +803,12 @@ "spec": "RDF 1.2 Turtle", "text": "XHTML", "url": "https://w3c.github.io/rdf-turtle/spec/#xhtml" + }, + "snapshot": { + "number": "A.1", + "spec": "RDF 1.2 Turtle", + "text": "XHTML", + "url": "https://www.w3.org/TR/rdf12-turtle/#xhtml" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rdf12-xml.json b/bikeshed/spec-data/readonly/headings/headings-rdf12-xml.json index 5f5de176a6..3fbc0fa319 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rdf12-xml.json +++ b/bikeshed/spec-data/readonly/headings/headings-rdf12-xml.json @@ -1,26 +1,44 @@ { "#RDF": { "current": { - "number": "7.2.9", + "number": "6.2.9", "spec": "RDF 1.2 XML Syntax", "text": "Production RDF", "url": "https://w3c.github.io/rdf-xml/spec/#RDF" + }, + "snapshot": { + "number": "6.2.9", + "spec": "RDF 1.2 XML Syntax", + "text": "Production RDF", + "url": "https://www.w3.org/TR/rdf12-xml/#RDF" } }, "#URI-reference": { "current": { - "number": "7.2.32", + "number": "6.2.32", "spec": "RDF 1.2 XML Syntax", "text": "Production IRI", "url": "https://w3c.github.io/rdf-xml/spec/#URI-reference" + }, + "snapshot": { + "number": "6.2.32", + "spec": "RDF 1.2 XML Syntax", + "text": "Production IRI", + "url": "https://www.w3.org/TR/rdf12-xml/#URI-reference" } }, "#aboutAttr": { "current": { - "number": "7.2.24", + "number": "6.2.24", "spec": "RDF 1.2 XML Syntax", "text": "Production aboutAttr", "url": "https://w3c.github.io/rdf-xml/spec/#aboutAttr" + }, + "snapshot": { + "number": "6.2.24", + "spec": "RDF 1.2 XML Syntax", + "text": "Production aboutAttr", + "url": "https://www.w3.org/TR/rdf12-xml/#aboutAttr" } }, "#acknowledgments-for-rdf-1-1": { @@ -29,6 +47,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Acknowledgments for RDF 1.1", "url": "https://w3c.github.io/rdf-xml/spec/#acknowledgments-for-rdf-1-1" + }, + "snapshot": { + "number": "A.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Acknowledgments for RDF 1.1", + "url": "https://www.w3.org/TR/rdf12-xml/#acknowledgments-for-rdf-1-1" } }, "#acknowledgments-for-rdf-1-2": { @@ -37,6 +61,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Acknowledgments for RDF 1.2", "url": "https://w3c.github.io/rdf-xml/spec/#acknowledgments-for-rdf-1-2" + }, + "snapshot": { + "number": "A.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Acknowledgments for RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-xml/#acknowledgments-for-rdf-1-2" } }, "#acknowledgments-the-original-specification": { @@ -45,22 +75,26 @@ "spec": "RDF 1.2 XML Syntax", "text": "Acknowledgments the original specification", "url": "https://w3c.github.io/rdf-xml/spec/#acknowledgments-the-original-specification" + }, + "snapshot": { + "number": "A.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Acknowledgments the original specification", + "url": "https://www.w3.org/TR/rdf12-xml/#acknowledgments-the-original-specification" } }, "#changes-12": { "current": { - "number": "C", + "number": "B", "spec": "RDF 1.2 XML Syntax", "text": "Changes between RDF 1.1 and RDF 1.2", "url": "https://w3c.github.io/rdf-xml/spec/#changes-12" - } - }, - "#changes-rdf11": { - "current": { + }, + "snapshot": { "number": "B", "spec": "RDF 1.2 XML Syntax", - "text": "Changes for RDF 1.1 Recommendation", - "url": "https://w3c.github.io/rdf-xml/spec/#changes-rdf11" + "text": "Changes between RDF 1.1 and RDF 1.2", + "url": "https://www.w3.org/TR/rdf12-xml/#changes-12" } }, "#conformance": { @@ -69,262 +103,474 @@ "spec": "RDF 1.2 XML Syntax", "text": "Conformance", "url": "https://w3c.github.io/rdf-xml/spec/#conformance" + }, + "snapshot": { + "number": "3", + "spec": "RDF 1.2 XML Syntax", + "text": "Conformance", + "url": "https://www.w3.org/TR/rdf12-xml/#conformance" } }, "#coreSyntaxTerms": { "current": { - "number": "7.2.2", + "number": "6.2.2", "spec": "RDF 1.2 XML Syntax", "text": "Production coreSyntaxTerms", "url": "https://w3c.github.io/rdf-xml/spec/#coreSyntaxTerms" + }, + "snapshot": { + "number": "6.2.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Production coreSyntaxTerms", + "url": "https://www.w3.org/TR/rdf12-xml/#coreSyntaxTerms" } }, "#datatypeAttr": { "current": { - "number": "7.2.27", + "number": "6.2.27", "spec": "RDF 1.2 XML Syntax", "text": "Production datatypeAttr", "url": "https://w3c.github.io/rdf-xml/spec/#datatypeAttr" + }, + "snapshot": { + "number": "6.2.27", + "spec": "RDF 1.2 XML Syntax", + "text": "Production datatypeAttr", + "url": "https://www.w3.org/TR/rdf12-xml/#datatypeAttr" } }, "#doc": { "current": { - "number": "7.2.8", + "number": "6.2.8", "spec": "RDF 1.2 XML Syntax", "text": "Production doc", "url": "https://w3c.github.io/rdf-xml/spec/#doc" + }, + "snapshot": { + "number": "6.2.8", + "spec": "RDF 1.2 XML Syntax", + "text": "Production doc", + "url": "https://www.w3.org/TR/rdf12-xml/#doc" } }, "#emptyPropertyElt": { "current": { - "number": "7.2.21", + "number": "6.2.21", "spec": "RDF 1.2 XML Syntax", "text": "Production emptyPropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#emptyPropertyElt" + }, + "snapshot": { + "number": "6.2.21", + "spec": "RDF 1.2 XML Syntax", + "text": "Production emptyPropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#emptyPropertyElt" } }, "#idAttr": { "current": { - "number": "7.2.22", + "number": "6.2.22", "spec": "RDF 1.2 XML Syntax", "text": "Production idAttr", "url": "https://w3c.github.io/rdf-xml/spec/#idAttr" + }, + "snapshot": { + "number": "6.2.22", + "spec": "RDF 1.2 XML Syntax", + "text": "Production idAttr", + "url": "https://www.w3.org/TR/rdf12-xml/#idAttr" } }, "#index": { "current": { - "number": "E", + "number": "D", "spec": "RDF 1.2 XML Syntax", "text": "Index", "url": "https://w3c.github.io/rdf-xml/spec/#index" + }, + "snapshot": { + "number": "D", + "spec": "RDF 1.2 XML Syntax", + "text": "Index", + "url": "https://www.w3.org/TR/rdf12-xml/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "E.2", + "number": "D.2", "spec": "RDF 1.2 XML Syntax", "text": "Terms defined by reference", "url": "https://w3c.github.io/rdf-xml/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "D.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/rdf12-xml/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "E.1", + "number": "D.1", "spec": "RDF 1.2 XML Syntax", "text": "Terms defined by this specification", "url": "https://w3c.github.io/rdf-xml/spec/#index-defined-here" + }, + "snapshot": { + "number": "D.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/rdf12-xml/#index-defined-here" } }, "#informative-references": { "current": { - "number": "F.2", + "number": "E.2", "spec": "RDF 1.2 XML Syntax", "text": "Informative references", "url": "https://w3c.github.io/rdf-xml/spec/#informative-references" + }, + "snapshot": { + "number": "E.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Informative references", + "url": "https://www.w3.org/TR/rdf12-xml/#informative-references" } }, "#literal": { "current": { - "number": "7.2.33", + "number": "6.2.33", "spec": "RDF 1.2 XML Syntax", "text": "Production literal", "url": "https://w3c.github.io/rdf-xml/spec/#literal" + }, + "snapshot": { + "number": "6.2.33", + "spec": "RDF 1.2 XML Syntax", + "text": "Production literal", + "url": "https://www.w3.org/TR/rdf12-xml/#literal" } }, "#literalPropertyElt": { "current": { - "number": "7.2.16", + "number": "6.2.16", "spec": "RDF 1.2 XML Syntax", "text": "Production literalPropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#literalPropertyElt" + }, + "snapshot": { + "number": "6.2.16", + "spec": "RDF 1.2 XML Syntax", + "text": "Production literalPropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#literalPropertyElt" } }, "#nodeElement": { "current": { - "number": "7.2.11", + "number": "6.2.11", "spec": "RDF 1.2 XML Syntax", "text": "Production nodeElement", "url": "https://w3c.github.io/rdf-xml/spec/#nodeElement" + }, + "snapshot": { + "number": "6.2.11", + "spec": "RDF 1.2 XML Syntax", + "text": "Production nodeElement", + "url": "https://www.w3.org/TR/rdf12-xml/#nodeElement" } }, "#nodeElementList": { "current": { - "number": "7.2.10", + "number": "6.2.10", "spec": "RDF 1.2 XML Syntax", "text": "Production nodeElementList", "url": "https://w3c.github.io/rdf-xml/spec/#nodeElementList" + }, + "snapshot": { + "number": "6.2.10", + "spec": "RDF 1.2 XML Syntax", + "text": "Production nodeElementList", + "url": "https://www.w3.org/TR/rdf12-xml/#nodeElementList" } }, "#nodeElementURIs": { "current": { - "number": "7.2.5", + "number": "6.2.5", "spec": "RDF 1.2 XML Syntax", "text": "Production nodeElementURIs", "url": "https://w3c.github.io/rdf-xml/spec/#nodeElementURIs" + }, + "snapshot": { + "number": "6.2.5", + "spec": "RDF 1.2 XML Syntax", + "text": "Production nodeElementURIs", + "url": "https://www.w3.org/TR/rdf12-xml/#nodeElementURIs" } }, "#nodeIdAttr": { "current": { - "number": "7.2.23", + "number": "6.2.23", "spec": "RDF 1.2 XML Syntax", "text": "Production nodeIdAttr", "url": "https://w3c.github.io/rdf-xml/spec/#nodeIdAttr" + }, + "snapshot": { + "number": "6.2.23", + "spec": "RDF 1.2 XML Syntax", + "text": "Production nodeIdAttr", + "url": "https://www.w3.org/TR/rdf12-xml/#nodeIdAttr" } }, "#normative-references": { "current": { - "number": "F.1", + "number": "E.1", "spec": "RDF 1.2 XML Syntax", "text": "Normative references", "url": "https://w3c.github.io/rdf-xml/spec/#normative-references" + }, + "snapshot": { + "number": "E.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Normative references", + "url": "https://www.w3.org/TR/rdf12-xml/#normative-references" } }, "#oldTerms": { "current": { - "number": "7.2.4", + "number": "6.2.4", "spec": "RDF 1.2 XML Syntax", "text": "Production oldTerms", "url": "https://w3c.github.io/rdf-xml/spec/#oldTerms" + }, + "snapshot": { + "number": "6.2.4", + "spec": "RDF 1.2 XML Syntax", + "text": "Production oldTerms", + "url": "https://www.w3.org/TR/rdf12-xml/#oldTerms" } }, "#parseCollection": { "current": { - "number": "7.2.30", + "number": "6.2.30", "spec": "RDF 1.2 XML Syntax", "text": "Production parseCollection", "url": "https://w3c.github.io/rdf-xml/spec/#parseCollection" + }, + "snapshot": { + "number": "6.2.30", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseCollection", + "url": "https://www.w3.org/TR/rdf12-xml/#parseCollection" } }, "#parseLiteral": { "current": { - "number": "7.2.28", + "number": "6.2.28", "spec": "RDF 1.2 XML Syntax", "text": "Production parseLiteral", "url": "https://w3c.github.io/rdf-xml/spec/#parseLiteral" + }, + "snapshot": { + "number": "6.2.28", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseLiteral", + "url": "https://www.w3.org/TR/rdf12-xml/#parseLiteral" } }, "#parseOther": { "current": { - "number": "7.2.31", + "number": "6.2.31", "spec": "RDF 1.2 XML Syntax", "text": "Production parseOther", "url": "https://w3c.github.io/rdf-xml/spec/#parseOther" + }, + "snapshot": { + "number": "6.2.31", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseOther", + "url": "https://www.w3.org/TR/rdf12-xml/#parseOther" } }, "#parseResource": { "current": { - "number": "7.2.29", + "number": "6.2.29", "spec": "RDF 1.2 XML Syntax", "text": "Production parseResource", "url": "https://w3c.github.io/rdf-xml/spec/#parseResource" + }, + "snapshot": { + "number": "6.2.29", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseResource", + "url": "https://www.w3.org/TR/rdf12-xml/#parseResource" } }, "#parseTypeCollectionPropertyElt": { "current": { - "number": "7.2.19", + "number": "6.2.19", "spec": "RDF 1.2 XML Syntax", "text": "Production parseTypeCollectionPropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#parseTypeCollectionPropertyElt" + }, + "snapshot": { + "number": "6.2.19", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseTypeCollectionPropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#parseTypeCollectionPropertyElt" } }, "#parseTypeLiteralPropertyElt": { "current": { - "number": "7.2.17", + "number": "6.2.17", "spec": "RDF 1.2 XML Syntax", "text": "Production parseTypeLiteralPropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#parseTypeLiteralPropertyElt" + }, + "snapshot": { + "number": "6.2.17", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseTypeLiteralPropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#parseTypeLiteralPropertyElt" } }, "#parseTypeOtherPropertyElt": { "current": { - "number": "7.2.20", + "number": "6.2.20", "spec": "RDF 1.2 XML Syntax", "text": "Production parseTypeOtherPropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#parseTypeOtherPropertyElt" + }, + "snapshot": { + "number": "6.2.20", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseTypeOtherPropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#parseTypeOtherPropertyElt" } }, "#parseTypeResourcePropertyElt": { "current": { - "number": "7.2.18", + "number": "6.2.18", "spec": "RDF 1.2 XML Syntax", "text": "Production parseTypeResourcePropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#parseTypeResourcePropertyElt" + }, + "snapshot": { + "number": "6.2.18", + "spec": "RDF 1.2 XML Syntax", + "text": "Production parseTypeResourcePropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#parseTypeResourcePropertyElt" + } + }, + "#privacy-considerations": { + "current": { + "number": "3.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/rdf-xml/spec/#privacy-considerations" + }, + "snapshot": { + "number": "3.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/rdf12-xml/#privacy-considerations" } }, "#propertyAttr": { "current": { - "number": "7.2.25", + "number": "6.2.25", "spec": "RDF 1.2 XML Syntax", "text": "Production propertyAttr", "url": "https://w3c.github.io/rdf-xml/spec/#propertyAttr" + }, + "snapshot": { + "number": "6.2.25", + "spec": "RDF 1.2 XML Syntax", + "text": "Production propertyAttr", + "url": "https://www.w3.org/TR/rdf12-xml/#propertyAttr" } }, "#propertyAttributeURIs": { "current": { - "number": "7.2.7", + "number": "6.2.7", "spec": "RDF 1.2 XML Syntax", "text": "Production propertyAttributeURIs", "url": "https://w3c.github.io/rdf-xml/spec/#propertyAttributeURIs" + }, + "snapshot": { + "number": "6.2.7", + "spec": "RDF 1.2 XML Syntax", + "text": "Production propertyAttributeURIs", + "url": "https://www.w3.org/TR/rdf12-xml/#propertyAttributeURIs" } }, "#propertyElementURIs": { "current": { - "number": "7.2.6", + "number": "6.2.6", "spec": "RDF 1.2 XML Syntax", "text": "Production propertyElementURIs", "url": "https://w3c.github.io/rdf-xml/spec/#propertyElementURIs" + }, + "snapshot": { + "number": "6.2.6", + "spec": "RDF 1.2 XML Syntax", + "text": "Production propertyElementURIs", + "url": "https://www.w3.org/TR/rdf12-xml/#propertyElementURIs" } }, "#propertyElt": { "current": { - "number": "7.2.14", + "number": "6.2.14", "spec": "RDF 1.2 XML Syntax", "text": "Production propertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#propertyElt" + }, + "snapshot": { + "number": "6.2.14", + "spec": "RDF 1.2 XML Syntax", + "text": "Production propertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#propertyElt" } }, "#propertyEltList": { "current": { - "number": "7.2.13", + "number": "6.2.13", "spec": "RDF 1.2 XML Syntax", "text": "Production propertyEltList", "url": "https://w3c.github.io/rdf-xml/spec/#propertyEltList" + }, + "snapshot": { + "number": "6.2.13", + "spec": "RDF 1.2 XML Syntax", + "text": "Production propertyEltList", + "url": "https://www.w3.org/TR/rdf12-xml/#propertyEltList" } }, "#rdf-id": { "current": { - "number": "7.2.34", + "number": "6.2.34", "spec": "RDF 1.2 XML Syntax", "text": "Production rdf-id", "url": "https://w3c.github.io/rdf-xml/spec/#rdf-id" + }, + "snapshot": { + "number": "6.2.34", + "spec": "RDF 1.2 XML Syntax", + "text": "Production rdf-id", + "url": "https://www.w3.org/TR/rdf12-xml/#rdf-id" } }, "#references": { "current": { - "number": "F", + "number": "E", "spec": "RDF 1.2 XML Syntax", "text": "References", "url": "https://w3c.github.io/rdf-xml/spec/#references" + }, + "snapshot": { + "number": "E", + "spec": "RDF 1.2 XML Syntax", + "text": "References", + "url": "https://www.w3.org/TR/rdf12-xml/#references" } }, "#related": { @@ -333,22 +579,40 @@ "spec": "RDF 1.2 XML Syntax", "text": "Set of Documents", "url": "https://w3c.github.io/rdf-xml/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 XML Syntax", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/rdf12-xml/#related" } }, "#resourceAttr": { "current": { - "number": "7.2.26", + "number": "6.2.26", "spec": "RDF 1.2 XML Syntax", "text": "Production resourceAttr", "url": "https://w3c.github.io/rdf-xml/spec/#resourceAttr" + }, + "snapshot": { + "number": "6.2.26", + "spec": "RDF 1.2 XML Syntax", + "text": "Production resourceAttr", + "url": "https://www.w3.org/TR/rdf12-xml/#resourceAttr" } }, "#resourcePropertyElt": { "current": { - "number": "7.2.15", + "number": "6.2.15", "spec": "RDF 1.2 XML Syntax", "text": "Production resourcePropertyElt", "url": "https://w3c.github.io/rdf-xml/spec/#resourcePropertyElt" + }, + "snapshot": { + "number": "6.2.15", + "spec": "RDF 1.2 XML Syntax", + "text": "Production resourcePropertyElt", + "url": "https://www.w3.org/TR/rdf12-xml/#resourcePropertyElt" } }, "#section-Acknowledgments": { @@ -357,78 +621,138 @@ "spec": "RDF 1.2 XML Syntax", "text": "Acknowledgments", "url": "https://w3c.github.io/rdf-xml/spec/#section-Acknowledgments" + }, + "snapshot": { + "number": "A", + "spec": "RDF 1.2 XML Syntax", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Acknowledgments" } }, "#section-Data-Model": { "current": { - "number": "6", + "number": "5", "spec": "RDF 1.2 XML Syntax", "text": "Syntax Data Model", "url": "https://w3c.github.io/rdf-xml/spec/#section-Data-Model" + }, + "snapshot": { + "number": "5", + "spec": "RDF 1.2 XML Syntax", + "text": "Syntax Data Model", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Data-Model" } }, "#section-Global": { "current": { - "number": "5", + "number": "4", "spec": "RDF 1.2 XML Syntax", "text": "Global Issues", "url": "https://w3c.github.io/rdf-xml/spec/#section-Global" + }, + "snapshot": { + "number": "4", + "spec": "RDF 1.2 XML Syntax", + "text": "Global Issues", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Global" } }, "#section-Identifiers": { "current": { - "number": "5.2", + "number": "4.2", "spec": "RDF 1.2 XML Syntax", "text": "Identifiers", "url": "https://w3c.github.io/rdf-xml/spec/#section-Identifiers" + }, + "snapshot": { + "number": "4.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Identifiers", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Identifiers" } }, "#section-Infoset-Grammar": { "current": { - "number": "7", + "number": "6", "spec": "RDF 1.2 XML Syntax", "text": "RDF/XML Grammar", "url": "https://w3c.github.io/rdf-xml/spec/#section-Infoset-Grammar" + }, + "snapshot": { + "number": "6", + "spec": "RDF 1.2 XML Syntax", + "text": "RDF/XML Grammar", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Infoset-Grammar" } }, "#section-Infoset-Grammar-Action": { "current": { - "number": "6.3.3", + "number": "5.3.3", "spec": "RDF 1.2 XML Syntax", "text": "Grammar Action Notation", "url": "https://w3c.github.io/rdf-xml/spec/#section-Infoset-Grammar-Action" + }, + "snapshot": { + "number": "5.3.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar Action Notation", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Infoset-Grammar-Action" } }, "#section-Infoset-Grammar-General": { "current": { - "number": "6.3.1", + "number": "5.3.1", "spec": "RDF 1.2 XML Syntax", "text": "Grammar General Notation", "url": "https://w3c.github.io/rdf-xml/spec/#section-Infoset-Grammar-General" + }, + "snapshot": { + "number": "5.3.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar General Notation", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Infoset-Grammar-General" } }, "#section-Infoset-Grammar-Matching": { "current": { - "number": "6.3.2", + "number": "5.3.2", "spec": "RDF 1.2 XML Syntax", "text": "Grammar Event Matching Notation", "url": "https://w3c.github.io/rdf-xml/spec/#section-Infoset-Grammar-Matching" + }, + "snapshot": { + "number": "5.3.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar Event Matching Notation", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Infoset-Grammar-Matching" } }, "#section-Infoset-Grammar-Notation": { "current": { - "number": "6.3", + "number": "5.3", "spec": "RDF 1.2 XML Syntax", "text": "Grammar Notation", "url": "https://w3c.github.io/rdf-xml/spec/#section-Infoset-Grammar-Notation" + }, + "snapshot": { + "number": "5.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar Notation", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Infoset-Grammar-Notation" } }, "#section-Infoset-Mapping": { "current": { - "number": "6.2", + "number": "5.2", "spec": "RDF 1.2 XML Syntax", "text": "Information Set Mapping", "url": "https://w3c.github.io/rdf-xml/spec/#section-Infoset-Mapping" + }, + "snapshot": { + "number": "5.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Information Set Mapping", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Infoset-Mapping" } }, "#section-Introduction": { @@ -437,70 +761,124 @@ "spec": "RDF 1.2 XML Syntax", "text": "Introduction", "url": "https://w3c.github.io/rdf-xml/spec/#section-Introduction" + }, + "snapshot": { + "number": "1", + "spec": "RDF 1.2 XML Syntax", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Introduction" } }, "#section-List-Expand": { "current": { - "number": "7.4", + "number": "6.4", "spec": "RDF 1.2 XML Syntax", "text": "List Expansion Rules", "url": "https://w3c.github.io/rdf-xml/spec/#section-List-Expand" + }, + "snapshot": { + "number": "6.4", + "spec": "RDF 1.2 XML Syntax", + "text": "List Expansion Rules", + "url": "https://www.w3.org/TR/rdf12-xml/#section-List-Expand" } }, "#section-MIME-Type": { "current": { - "number": "4", + "number": "3.1", "spec": "RDF 1.2 XML Syntax", - "text": "RDF MIME Type, File Extension and Macintosh File Type", + "text": "RDF/XML Internet Media Type, File Extension, and Macintosh File Type", "url": "https://w3c.github.io/rdf-xml/spec/#section-MIME-Type" + }, + "snapshot": { + "number": "3.1", + "spec": "RDF 1.2 XML Syntax", + "text": "RDF/XML Internet Media Type, File Extension, and Macintosh File Type", + "url": "https://www.w3.org/TR/rdf12-xml/#section-MIME-Type" } }, "#section-Namespace": { "current": { - "number": "5.1", + "number": "4.1", "spec": "RDF 1.2 XML Syntax", "text": "The RDF Namespace and Vocabulary", "url": "https://w3c.github.io/rdf-xml/spec/#section-Namespace" + }, + "snapshot": { + "number": "4.1", + "spec": "RDF 1.2 XML Syntax", + "text": "The RDF Namespace and Vocabulary", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Namespace" } }, "#section-Nodes": { "current": { - "number": "6.1", + "number": "5.1", "spec": "RDF 1.2 XML Syntax", "text": "Events", "url": "https://w3c.github.io/rdf-xml/spec/#section-Nodes" + }, + "snapshot": { + "number": "5.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Events", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Nodes" } }, "#section-RELAXNG-Schema": { "current": { - "number": "D.1", + "number": "C.1", "spec": "RDF 1.2 XML Syntax", "text": "RELAX NG Compact Schema", "url": "https://w3c.github.io/rdf-xml/spec/#section-RELAXNG-Schema" + }, + "snapshot": { + "number": "C.1", + "spec": "RDF 1.2 XML Syntax", + "text": "RELAX NG Compact Schema", + "url": "https://www.w3.org/TR/rdf12-xml/#section-RELAXNG-Schema" } }, "#section-Reification": { "current": { - "number": "7.3", + "number": "6.3", "spec": "RDF 1.2 XML Syntax", "text": "Reification Rules", "url": "https://w3c.github.io/rdf-xml/spec/#section-Reification" + }, + "snapshot": { + "number": "6.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Reification Rules", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Reification" } }, "#section-Schemas": { "current": { - "number": "D", + "number": "C", "spec": "RDF 1.2 XML Syntax", "text": "Syntax Schemas", "url": "https://w3c.github.io/rdf-xml/spec/#section-Schemas" + }, + "snapshot": { + "number": "C", + "spec": "RDF 1.2 XML Syntax", + "text": "Syntax Schemas", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Schemas" } }, "#section-Serialising": { "current": { - "number": "8", + "number": "7", "spec": "RDF 1.2 XML Syntax", "text": "Serializing an RDF Graph to RDF/XML", "url": "https://w3c.github.io/rdf-xml/spec/#section-Serialising" + }, + "snapshot": { + "number": "7", + "spec": "RDF 1.2 XML Syntax", + "text": "Serializing an RDF Graph to RDF/XML", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Serialising" } }, "#section-Syntax": { @@ -509,6 +887,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "An XML Syntax for RDF", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax" + }, + "snapshot": { + "number": "2", + "spec": "RDF 1.2 XML Syntax", + "text": "An XML Syntax for RDF", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax" } }, "#section-Syntax-ID-xml-base": { @@ -517,6 +901,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Abbreviating URIs: rdf:ID and xml:base", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-ID-xml-base" + }, + "snapshot": { + "number": "2.14", + "spec": "RDF 1.2 XML Syntax", + "text": "Abbreviating URIs: rdf:ID and xml:base", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-ID-xml-base" } }, "#section-Syntax-XML-literals": { @@ -525,6 +915,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "XML Literals: rdf:parseType=\"Literal\"", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-XML-literals" + }, + "snapshot": { + "number": "2.8", + "spec": "RDF 1.2 XML Syntax", + "text": "XML Literals: rdf:parseType=\"Literal\"", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-XML-literals" } }, "#section-Syntax-blank-nodes": { @@ -533,6 +929,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Identifying Blank Nodes: rdf:nodeID", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-blank-nodes" + }, + "snapshot": { + "number": "2.10", + "spec": "RDF 1.2 XML Syntax", + "text": "Identifying Blank Nodes: rdf:nodeID", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-blank-nodes" } }, "#section-Syntax-complete-document": { @@ -541,6 +943,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Completing the Document: Document Element and XML Declaration", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-complete-document" + }, + "snapshot": { + "number": "2.6", + "spec": "RDF 1.2 XML Syntax", + "text": "Completing the Document: Document Element and XML Declaration", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-complete-document" } }, "#section-Syntax-datatyped-literals": { @@ -549,6 +957,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Typed Literals: rdf:datatype", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-datatyped-literals" + }, + "snapshot": { + "number": "2.9", + "spec": "RDF 1.2 XML Syntax", + "text": "Typed Literals: rdf:datatype", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-datatyped-literals" } }, "#section-Syntax-empty-property-elements": { @@ -557,6 +971,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Empty Property Elements", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-empty-property-elements" + }, + "snapshot": { + "number": "2.4", + "spec": "RDF 1.2 XML Syntax", + "text": "Empty Property Elements", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-empty-property-elements" } }, "#section-Syntax-intro": { @@ -565,6 +985,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Introduction", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-intro" + }, + "snapshot": { + "number": "2.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Introduction", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-intro" } }, "#section-Syntax-languages": { @@ -573,6 +999,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Languages: xml:lang", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-languages" + }, + "snapshot": { + "number": "2.7", + "spec": "RDF 1.2 XML Syntax", + "text": "Languages: xml:lang", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-languages" } }, "#section-Syntax-list-elements": { @@ -581,6 +1013,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Container Membership Property Elements: rdf:li and rdf:_n", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-list-elements" + }, + "snapshot": { + "number": "2.15", + "spec": "RDF 1.2 XML Syntax", + "text": "Container Membership Property Elements: rdf:li and rdf:_n", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-list-elements" } }, "#section-Syntax-multiple-property-elements": { @@ -589,6 +1027,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Multiple Property Elements", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-multiple-property-elements" + }, + "snapshot": { + "number": "2.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Multiple Property Elements", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-multiple-property-elements" } }, "#section-Syntax-node-property-elements": { @@ -597,6 +1041,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Node Elements and Property Elements", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-node-property-elements" + }, + "snapshot": { + "number": "2.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Node Elements and Property Elements", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-node-property-elements" } }, "#section-Syntax-parsetype-Collection": { @@ -605,6 +1055,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Collections: rdf:parseType=\"Collection\"", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-parsetype-Collection" + }, + "snapshot": { + "number": "2.16", + "spec": "RDF 1.2 XML Syntax", + "text": "Collections: rdf:parseType=\"Collection\"", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-parsetype-Collection" } }, "#section-Syntax-parsetype-resource": { @@ -613,6 +1069,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Omitting Blank Nodes: rdf:parseType=\"Resource\"", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-parsetype-resource" + }, + "snapshot": { + "number": "2.11", + "spec": "RDF 1.2 XML Syntax", + "text": "Omitting Blank Nodes: rdf:parseType=\"Resource\"", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-parsetype-resource" } }, "#section-Syntax-property-attributes": { @@ -621,6 +1083,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Property Attributes", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-property-attributes" + }, + "snapshot": { + "number": "2.5", + "spec": "RDF 1.2 XML Syntax", + "text": "Property Attributes", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-property-attributes" } }, "#section-Syntax-property-attributes-on-property-element": { @@ -629,6 +1097,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Omitting Nodes: Property Attributes on an empty Property Element", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-property-attributes-on-property-element" + }, + "snapshot": { + "number": "2.12", + "spec": "RDF 1.2 XML Syntax", + "text": "Omitting Nodes: Property Attributes on an empty Property Element", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-property-attributes-on-property-element" } }, "#section-Syntax-reifying": { @@ -637,6 +1111,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "Reifying Statements: rdf:ID", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-reifying" + }, + "snapshot": { + "number": "2.17", + "spec": "RDF 1.2 XML Syntax", + "text": "Reifying Statements: rdf:ID", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-reifying" } }, "#section-Syntax-typed-nodes": { @@ -645,134 +1125,250 @@ "spec": "RDF 1.2 XML Syntax", "text": "Typed Node Elements", "url": "https://w3c.github.io/rdf-xml/spec/#section-Syntax-typed-nodes" + }, + "snapshot": { + "number": "2.13", + "spec": "RDF 1.2 XML Syntax", + "text": "Typed Node Elements", + "url": "https://www.w3.org/TR/rdf12-xml/#section-Syntax-typed-nodes" } }, "#section-attribute-node": { "current": { - "number": "6.1.4", + "number": "5.1.4", "spec": "RDF 1.2 XML Syntax", "text": "Attribute Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-attribute-node" + }, + "snapshot": { + "number": "5.1.4", + "spec": "RDF 1.2 XML Syntax", + "text": "Attribute Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-attribute-node" } }, "#section-baseURIs": { "current": { - "number": "5.3", + "number": "4.3", "spec": "RDF 1.2 XML Syntax", "text": "Resolving IRIs", "url": "https://w3c.github.io/rdf-xml/spec/#section-baseURIs" + }, + "snapshot": { + "number": "4.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Resolving IRIs", + "url": "https://www.w3.org/TR/rdf12-xml/#section-baseURIs" } }, "#section-blank-nodeid-event": { "current": { - "number": "6.1.7", + "number": "5.1.7", "spec": "RDF 1.2 XML Syntax", "text": "Blank Node Identifier Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-blank-nodeid-event" + }, + "snapshot": { + "number": "5.1.7", + "spec": "RDF 1.2 XML Syntax", + "text": "Blank Node Identifier Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-blank-nodeid-event" } }, "#section-constraints": { "current": { - "number": "5.4", + "number": "4.4", "spec": "RDF 1.2 XML Syntax", "text": "Constraints", "url": "https://w3c.github.io/rdf-xml/spec/#section-constraints" + }, + "snapshot": { + "number": "4.4", + "spec": "RDF 1.2 XML Syntax", + "text": "Constraints", + "url": "https://www.w3.org/TR/rdf12-xml/#section-constraints" } }, "#section-element-node": { "current": { - "number": "6.1.2", + "number": "5.1.2", "spec": "RDF 1.2 XML Syntax", "text": "Element Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-element-node" + }, + "snapshot": { + "number": "5.1.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Element Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-element-node" } }, "#section-end-element-node": { "current": { - "number": "6.1.3", + "number": "5.1.3", "spec": "RDF 1.2 XML Syntax", "text": "End Element Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-end-element-node" + }, + "snapshot": { + "number": "5.1.3", + "spec": "RDF 1.2 XML Syntax", + "text": "End Element Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-end-element-node" } }, "#section-grammar-productions": { "current": { - "number": "7.2", + "number": "6.2", "spec": "RDF 1.2 XML Syntax", "text": "Grammar Productions", "url": "https://w3c.github.io/rdf-xml/spec/#section-grammar-productions" + }, + "snapshot": { + "number": "6.2", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar Productions", + "url": "https://www.w3.org/TR/rdf12-xml/#section-grammar-productions" } }, "#section-grammar-summary": { "current": { - "number": "7.1", + "number": "6.1", "spec": "RDF 1.2 XML Syntax", "text": "Grammar summary", "url": "https://w3c.github.io/rdf-xml/spec/#section-grammar-summary" + }, + "snapshot": { + "number": "6.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar summary", + "url": "https://www.w3.org/TR/rdf12-xml/#section-grammar-summary" } }, "#section-identifier-node": { "current": { - "number": "6.1.6", + "number": "5.1.6", "spec": "RDF 1.2 XML Syntax", "text": "IRI Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-identifier-node" + }, + "snapshot": { + "number": "5.1.6", + "spec": "RDF 1.2 XML Syntax", + "text": "IRI Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-identifier-node" } }, "#section-literal-node": { "current": { - "number": "6.1.8", + "number": "5.1.8", "spec": "RDF 1.2 XML Syntax", "text": "Plain Literal Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-literal-node" + }, + "snapshot": { + "number": "5.1.8", + "spec": "RDF 1.2 XML Syntax", + "text": "Plain Literal Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-literal-node" } }, "#section-rdf-in-SVG": { "current": { - "number": "9", + "number": "8", "spec": "RDF 1.2 XML Syntax", "text": "Using RDF/XML with SVG", "url": "https://w3c.github.io/rdf-xml/spec/#section-rdf-in-SVG" + }, + "snapshot": { + "number": "8", + "spec": "RDF 1.2 XML Syntax", + "text": "Using RDF/XML with SVG", + "url": "https://www.w3.org/TR/rdf12-xml/#section-rdf-in-SVG" } }, "#section-root-node": { "current": { - "number": "6.1.1", + "number": "5.1.1", "spec": "RDF 1.2 XML Syntax", "text": "Root Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-root-node" + }, + "snapshot": { + "number": "5.1.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Root Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-root-node" } }, "#section-text-node": { "current": { - "number": "6.1.5", + "number": "5.1.5", "spec": "RDF 1.2 XML Syntax", "text": "Text Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-text-node" + }, + "snapshot": { + "number": "5.1.5", + "spec": "RDF 1.2 XML Syntax", + "text": "Text Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-text-node" } }, "#section-typed-literal-node": { "current": { - "number": "6.1.9", + "number": "5.1.9", "spec": "RDF 1.2 XML Syntax", "text": "Typed Literal Event", "url": "https://w3c.github.io/rdf-xml/spec/#section-typed-literal-node" + }, + "snapshot": { + "number": "5.1.9", + "spec": "RDF 1.2 XML Syntax", + "text": "Typed Literal Event", + "url": "https://www.w3.org/TR/rdf12-xml/#section-typed-literal-node" + } + }, + "#security": { + "current": { + "number": "3.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Security Considerations", + "url": "https://w3c.github.io/rdf-xml/spec/#security" + }, + "snapshot": { + "number": "3.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/rdf12-xml/#security" } }, "#start": { "current": { - "number": "7.2.1", + "number": "6.2.1", "spec": "RDF 1.2 XML Syntax", "text": "Grammar start", "url": "https://w3c.github.io/rdf-xml/spec/#start" + }, + "snapshot": { + "number": "6.2.1", + "spec": "RDF 1.2 XML Syntax", + "text": "Grammar start", + "url": "https://www.w3.org/TR/rdf12-xml/#start" } }, "#syntaxTerms": { "current": { - "number": "7.2.3", + "number": "6.2.3", "spec": "RDF 1.2 XML Syntax", "text": "Production syntaxTerms", "url": "https://w3c.github.io/rdf-xml/spec/#syntaxTerms" + }, + "snapshot": { + "number": "6.2.3", + "spec": "RDF 1.2 XML Syntax", + "text": "Production syntaxTerms", + "url": "https://www.w3.org/TR/rdf12-xml/#syntaxTerms" } }, "#title": { @@ -781,6 +1377,12 @@ "spec": "RDF 1.2 XML Syntax", "text": "RDF 1.2 XML Syntax", "url": "https://w3c.github.io/rdf-xml/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 XML Syntax", + "text": "RDF 1.2 XML Syntax", + "url": "https://www.w3.org/TR/rdf12-xml/#title" } }, "#toc": { @@ -789,14 +1391,26 @@ "spec": "RDF 1.2 XML Syntax", "text": "Table of Contents", "url": "https://w3c.github.io/rdf-xml/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "RDF 1.2 XML Syntax", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/rdf12-xml/#toc" } }, "#ws": { "current": { - "number": "7.2.12", + "number": "6.2.12", "spec": "RDF 1.2 XML Syntax", "text": "Production ws", "url": "https://w3c.github.io/rdf-xml/spec/#ws" + }, + "snapshot": { + "number": "6.2.12", + "spec": "RDF 1.2 XML Syntax", + "text": "Production ws", + "url": "https://www.w3.org/TR/rdf12-xml/#ws" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-real-world-meshing.json b/bikeshed/spec-data/readonly/headings/headings-real-world-meshing.json new file mode 100644 index 0000000000..648aa9c053 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-real-world-meshing.json @@ -0,0 +1,194 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Abstract", + "url": "https://immersive-web.github.io/real-world-meshing/#abstract" + } + }, + "#ack": { + "current": { + "number": "7", + "spec": "WebXR Mesh Detection", + "text": "Acknowledgements", + "url": "https://immersive-web.github.io/real-world-meshing/#ack" + } + }, + "#anchor-feature-descriptor": { + "current": { + "number": "2.1", + "spec": "WebXR Mesh Detection", + "text": "Feature descriptor", + "url": "https://immersive-web.github.io/real-world-meshing/#anchor-feature-descriptor" + } + }, + "#anchor-feature-initialization": { + "current": { + "number": "2", + "spec": "WebXR Mesh Detection", + "text": "Initialization", + "url": "https://immersive-web.github.io/real-world-meshing/#anchor-feature-initialization" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "IDL Index", + "url": "https://immersive-web.github.io/real-world-meshing/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Index", + "url": "https://immersive-web.github.io/real-world-meshing/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Terms defined by reference", + "url": "https://immersive-web.github.io/real-world-meshing/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Terms defined by this specification", + "url": "https://immersive-web.github.io/real-world-meshing/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Informative References", + "url": "https://immersive-web.github.io/real-world-meshing/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "WebXR Mesh Detection", + "text": "Introduction", + "url": "https://immersive-web.github.io/real-world-meshing/#intro" + } + }, + "#mesh": { + "current": { + "number": "3.1", + "spec": "WebXR Mesh Detection", + "text": "XRMesh", + "url": "https://immersive-web.github.io/real-world-meshing/#mesh" + } + }, + "#mesh-set": { + "current": { + "number": "4.1", + "spec": "WebXR Mesh Detection", + "text": "XRMeshSet", + "url": "https://immersive-web.github.io/real-world-meshing/#mesh-set" + } + }, + "#meshes-section": { + "current": { + "number": "3", + "spec": "WebXR Mesh Detection", + "text": "Meshs", + "url": "https://immersive-web.github.io/real-world-meshing/#meshes-section" + } + }, + "#native-device-concepts": { + "current": { + "number": "5", + "spec": "WebXR Mesh Detection", + "text": "Native device concepts", + "url": "https://immersive-web.github.io/real-world-meshing/#native-device-concepts" + } + }, + "#native-mesh-detection-section": { + "current": { + "number": "5.1", + "spec": "WebXR Mesh Detection", + "text": "Native mesh detection", + "url": "https://immersive-web.github.io/real-world-meshing/#native-mesh-detection-section" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Normative References", + "url": "https://immersive-web.github.io/real-world-meshing/#normative" + } + }, + "#obtaining-meshes": { + "current": { + "number": "4", + "spec": "WebXR Mesh Detection", + "text": "Obtaining detected meshes", + "url": "https://immersive-web.github.io/real-world-meshing/#obtaining-meshes" + } + }, + "#privacy-security": { + "current": { + "number": "6", + "spec": "WebXR Mesh Detection", + "text": "Privacy & Security Considerations", + "url": "https://immersive-web.github.io/real-world-meshing/#privacy-security" + } + }, + "#references": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "References", + "url": "https://immersive-web.github.io/real-world-meshing/#references" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Status of this document", + "url": "https://immersive-web.github.io/real-world-meshing/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "WebXR Mesh Detection Module", + "url": "https://immersive-web.github.io/real-world-meshing/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Table of Contents", + "url": "https://immersive-web.github.io/real-world-meshing/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Conformance", + "url": "https://immersive-web.github.io/real-world-meshing/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "WebXR Mesh Detection", + "text": "Document conventions", + "url": "https://immersive-web.github.io/real-world-meshing/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-requeststorageaccessfororigin.json b/bikeshed/spec-data/readonly/headings/headings-requeststorageaccessfor.json similarity index 64% rename from bikeshed/spec-data/readonly/headings/headings-requeststorageaccessfororigin.json rename to bikeshed/spec-data/readonly/headings/headings-requeststorageaccessfor.json index 420998a3c7..d0c0c53624 100644 --- a/bikeshed/spec-data/readonly/headings/headings-requeststorageaccessfororigin.json +++ b/bikeshed/spec-data/readonly/headings/headings-requeststorageaccessfor.json @@ -2,217 +2,209 @@ "#abstract": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Abstract", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#abstract" + "url": "https://privacycg.github.io/requestStorageAccessFor/#abstract" } }, "#fetch-integration": { "current": { "number": "5", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Fetch Integration", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#fetch-integration" + "url": "https://privacycg.github.io/requestStorageAccessFor/#fetch-integration" } }, "#idl-index": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "IDL Index", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#idl-index" + "url": "https://privacycg.github.io/requestStorageAccessFor/#idl-index" } }, "#index": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Index", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#index" + "url": "https://privacycg.github.io/requestStorageAccessFor/#index" } }, "#index-defined-elsewhere": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Terms defined by reference", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#index-defined-elsewhere" + "url": "https://privacycg.github.io/requestStorageAccessFor/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Terms defined by this specification", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#index-defined-here" + "url": "https://privacycg.github.io/requestStorageAccessFor/#index-defined-here" } }, "#infra": { "current": { "number": "2", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Infrastructure", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#infra" + "url": "https://privacycg.github.io/requestStorageAccessFor/#infra" } }, "#intro": { "current": { "number": "1", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Introduction", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#intro" + "url": "https://privacycg.github.io/requestStorageAccessFor/#intro" } }, "#issues-index": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Issues Index", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#issues-index" + "url": "https://privacycg.github.io/requestStorageAccessFor/#issues-index" } }, "#normative": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Normative References", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#normative" + "url": "https://privacycg.github.io/requestStorageAccessFor/#normative" } }, "#notification-abuse": { "current": { "number": "8.2", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Notification Abuse", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#notification-abuse" + "url": "https://privacycg.github.io/requestStorageAccessFor/#notification-abuse" } }, "#permissions-integration": { "current": { "number": "4", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Permissions Integration", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#permissions-integration" + "url": "https://privacycg.github.io/requestStorageAccessFor/#permissions-integration" } }, "#privacy": { "current": { "number": "7", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Privacy considerations", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#privacy" + "url": "https://privacycg.github.io/requestStorageAccessFor/#privacy" } }, "#references": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "References", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#references" + "url": "https://privacycg.github.io/requestStorageAccessFor/#references" } }, "#security": { "current": { "number": "8", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Security considerations", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#security" + "url": "https://privacycg.github.io/requestStorageAccessFor/#security" } }, "#status": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Status of this document", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#status" + "url": "https://privacycg.github.io/requestStorageAccessFor/#status" } }, "#storage-access-api-integration": { "current": { "number": "6", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Storage Access API Integration", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#storage-access-api-integration" + "url": "https://privacycg.github.io/requestStorageAccessFor/#storage-access-api-integration" } }, "#subresources": { "current": { "number": "8.1", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Subresource Requests", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#subresources" + "url": "https://privacycg.github.io/requestStorageAccessFor/#subresources" } }, "#subtitle": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", - "text": "Draft Community Group Report, 20 February 2023", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#subtitle" + "spec": "requestStorageAccessFor API", + "text": "Draft Community Group Report, 16 January 2024", + "url": "https://privacycg.github.io/requestStorageAccessFor/#subtitle" } }, "#the-document-object": { "current": { "number": "3.1", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Changes to Document", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#the-document-object" + "url": "https://privacycg.github.io/requestStorageAccessFor/#the-document-object" } }, "#the-rsa-for-api": { "current": { "number": "3", - "spec": "requestStorageAccessForOrigin API", - "text": "The requestStorageAccessForOrigin API", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#the-rsa-for-api" + "spec": "requestStorageAccessFor API", + "text": "The requestStorageAccessFor API", + "url": "https://privacycg.github.io/requestStorageAccessFor/#the-rsa-for-api" } }, "#title": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", - "text": "requestStorageAccessForOrigin API", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#title" + "spec": "requestStorageAccessFor API", + "text": "requestStorageAccessFor API", + "url": "https://privacycg.github.io/requestStorageAccessFor/#title" } }, "#toc": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Table of Contents", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#toc" + "url": "https://privacycg.github.io/requestStorageAccessFor/#toc" } }, "#ua-policies": { "current": { "number": "3.2", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "User Agent top-level storage access policies", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#ua-policies" + "url": "https://privacycg.github.io/requestStorageAccessFor/#ua-policies" } }, "#w3c-conformance": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Conformance", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#w3c-conformance" - } - }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "requestStorageAccessForOrigin API", - "text": "Conformant Algorithms", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#w3c-conformant-algorithms" + "url": "https://privacycg.github.io/requestStorageAccessFor/#w3c-conformance" } }, "#w3c-conventions": { "current": { "number": "", - "spec": "requestStorageAccessForOrigin API", + "spec": "requestStorageAccessFor API", "text": "Document conventions", - "url": "https://privacycg.github.io/requestStorageAccessForOrigin/#w3c-conventions" + "url": "https://privacycg.github.io/requestStorageAccessFor/#w3c-conventions" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-resource-hints.json b/bikeshed/spec-data/readonly/headings/headings-resource-hints.json deleted file mode 100644 index 589e0afb75..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-resource-hints.json +++ /dev/null @@ -1,380 +0,0 @@ -{ - "#acknowledgments": { - "current": { - "number": "A", - "spec": "Resource Hints", - "text": "Acknowledgments", - "url": "https://w3c.github.io/resource-hints/#acknowledgments" - }, - "snapshot": { - "number": "A", - "spec": "Resource Hints", - "text": "Acknowledgments", - "url": "https://www.w3.org/TR/resource-hints/#acknowledgments" - } - }, - "#anonymizing-redirect-preconnect": { - "current": { - "number": "4.2", - "spec": "Resource Hints", - "text": "Anonymizing redirect (preconnect)", - "url": "https://w3c.github.io/resource-hints/#anonymizing-redirect-preconnect" - }, - "snapshot": { - "number": "4.2", - "spec": "Resource Hints", - "text": "Anonymizing redirect (preconnect)", - "url": "https://www.w3.org/TR/resource-hints/#anonymizing-redirect-preconnect" - } - }, - "#conformance": { - "current": { - "number": "6", - "spec": "Resource Hints", - "text": "Conformance", - "url": "https://w3c.github.io/resource-hints/#conformance" - }, - "snapshot": { - "number": "6", - "spec": "Resource Hints", - "text": "Conformance", - "url": "https://www.w3.org/TR/resource-hints/#conformance" - } - }, - "#dns-prefetch": { - "current": { - "number": "2.1", - "spec": "Resource Hints", - "text": "DNS Prefetch", - "url": "https://w3c.github.io/resource-hints/#dns-prefetch" - }, - "snapshot": { - "number": "2.1", - "spec": "Resource Hints", - "text": "DNS Prefetch", - "url": "https://www.w3.org/TR/resource-hints/#dns-prefetch" - } - }, - "#dns-prefetch-link-relation-type": { - "current": { - "number": "7.1", - "spec": "Resource Hints", - "text": "dns-prefetch Link Relation Type", - "url": "https://w3c.github.io/resource-hints/#dns-prefetch-link-relation-type" - }, - "snapshot": { - "number": "7.1", - "spec": "Resource Hints", - "text": "dns-prefetch Link Relation Type", - "url": "https://www.w3.org/TR/resource-hints/#dns-prefetch-link-relation-type" - } - }, - "#dynamic-request-url-preconnect": { - "current": { - "number": "4.1", - "spec": "Resource Hints", - "text": "Dynamic request URL (preconnect)", - "url": "https://w3c.github.io/resource-hints/#dynamic-request-url-preconnect" - }, - "snapshot": { - "number": "4.1", - "spec": "Resource Hints", - "text": "Dynamic request URL (preconnect)", - "url": "https://www.w3.org/TR/resource-hints/#dynamic-request-url-preconnect" - } - }, - "#fetching-the-resource-hint-link": { - "current": { - "number": "3.1", - "spec": "Resource Hints", - "text": "Fetching the resource hint link", - "url": "https://w3c.github.io/resource-hints/#fetching-the-resource-hint-link" - }, - "snapshot": { - "number": "3.1", - "spec": "Resource Hints", - "text": "Fetching the resource hint link", - "url": "https://www.w3.org/TR/resource-hints/#fetching-the-resource-hint-link" - } - }, - "#iana-considerations": { - "current": { - "number": "7", - "spec": "Resource Hints", - "text": "IANA Considerations", - "url": "https://w3c.github.io/resource-hints/#iana-considerations" - }, - "snapshot": { - "number": "7", - "spec": "Resource Hints", - "text": "IANA Considerations", - "url": "https://www.w3.org/TR/resource-hints/#iana-considerations" - } - }, - "#introduction": { - "current": { - "number": "1", - "spec": "Resource Hints", - "text": "Introduction", - "url": "https://w3c.github.io/resource-hints/#introduction" - }, - "snapshot": { - "number": "1", - "spec": "Resource Hints", - "text": "Introduction", - "url": "https://www.w3.org/TR/resource-hints/#introduction" - } - }, - "#load-and-error-events": { - "current": { - "number": "3.2", - "spec": "Resource Hints", - "text": "Load and error events", - "url": "https://w3c.github.io/resource-hints/#load-and-error-events" - }, - "snapshot": { - "number": "3.2", - "spec": "Resource Hints", - "text": "Load and error events", - "url": "https://www.w3.org/TR/resource-hints/#load-and-error-events" - } - }, - "#normative-references": { - "current": { - "number": "B.1", - "spec": "Resource Hints", - "text": "Normative references", - "url": "https://w3c.github.io/resource-hints/#normative-references" - }, - "snapshot": { - "number": "B.1", - "spec": "Resource Hints", - "text": "Normative references", - "url": "https://www.w3.org/TR/resource-hints/#normative-references" - } - }, - "#preconnect": { - "current": { - "number": "2.2", - "spec": "Resource Hints", - "text": "Preconnect", - "url": "https://w3c.github.io/resource-hints/#preconnect" - }, - "snapshot": { - "number": "2.2", - "spec": "Resource Hints", - "text": "Preconnect", - "url": "https://www.w3.org/TR/resource-hints/#preconnect" - } - }, - "#preconnect-link-relation-type": { - "current": { - "number": "7.2", - "spec": "Resource Hints", - "text": "preconnect Link Relation Type", - "url": "https://w3c.github.io/resource-hints/#preconnect-link-relation-type" - }, - "snapshot": { - "number": "7.2", - "spec": "Resource Hints", - "text": "preconnect Link Relation Type", - "url": "https://www.w3.org/TR/resource-hints/#preconnect-link-relation-type" - } - }, - "#prefetch": { - "current": { - "number": "2.3", - "spec": "Resource Hints", - "text": "Prefetch", - "url": "https://w3c.github.io/resource-hints/#prefetch" - }, - "snapshot": { - "number": "2.3", - "spec": "Resource Hints", - "text": "Prefetch", - "url": "https://www.w3.org/TR/resource-hints/#prefetch" - } - }, - "#prefetch-link-relation-type": { - "current": { - "number": "7.3", - "spec": "Resource Hints", - "text": "prefetch Link Relation Type", - "url": "https://w3c.github.io/resource-hints/#prefetch-link-relation-type" - }, - "snapshot": { - "number": "7.3", - "spec": "Resource Hints", - "text": "prefetch Link Relation Type", - "url": "https://www.w3.org/TR/resource-hints/#prefetch-link-relation-type" - } - }, - "#prerender": { - "current": { - "number": "2.4", - "spec": "Resource Hints", - "text": "Prerender", - "url": "https://w3c.github.io/resource-hints/#prerender" - }, - "snapshot": { - "number": "2.4", - "spec": "Resource Hints", - "text": "Prerender", - "url": "https://www.w3.org/TR/resource-hints/#prerender" - } - }, - "#prerender-link-relation-type": { - "current": { - "number": "7.4", - "spec": "Resource Hints", - "text": "prerender Link Relation Type", - "url": "https://w3c.github.io/resource-hints/#prerender-link-relation-type" - }, - "snapshot": { - "number": "7.4", - "spec": "Resource Hints", - "text": "prerender Link Relation Type", - "url": "https://www.w3.org/TR/resource-hints/#prerender-link-relation-type" - } - }, - "#prerendering-prerender": { - "current": { - "number": "4.5", - "spec": "Resource Hints", - "text": "Prerendering (prerender)", - "url": "https://w3c.github.io/resource-hints/#prerendering-prerender" - }, - "snapshot": { - "number": "4.5", - "spec": "Resource Hints", - "text": "Prerendering (prerender)", - "url": "https://www.w3.org/TR/resource-hints/#prerendering-prerender" - } - }, - "#process": { - "current": { - "number": "3", - "spec": "Resource Hints", - "text": "Process", - "url": "https://w3c.github.io/resource-hints/#process" - }, - "snapshot": { - "number": "3", - "spec": "Resource Hints", - "text": "Process", - "url": "https://www.w3.org/TR/resource-hints/#process" - } - }, - "#reactive-resource-prefetching-prefetch": { - "current": { - "number": "4.4", - "spec": "Resource Hints", - "text": "Reactive resource prefetching (prefetch)", - "url": "https://w3c.github.io/resource-hints/#reactive-resource-prefetching-prefetch" - }, - "snapshot": { - "number": "4.4", - "spec": "Resource Hints", - "text": "Reactive resource prefetching (prefetch)", - "url": "https://www.w3.org/TR/resource-hints/#reactive-resource-prefetching-prefetch" - } - }, - "#references": { - "current": { - "number": "B", - "spec": "Resource Hints", - "text": "References", - "url": "https://w3c.github.io/resource-hints/#references" - }, - "snapshot": { - "number": "B", - "spec": "Resource Hints", - "text": "References", - "url": "https://www.w3.org/TR/resource-hints/#references" - } - }, - "#resource-hints": { - "current": { - "number": "2", - "spec": "Resource Hints", - "text": "Resource Hints", - "url": "https://w3c.github.io/resource-hints/#resource-hints" - }, - "snapshot": { - "number": "2", - "spec": "Resource Hints", - "text": "Resource Hints", - "url": "https://www.w3.org/TR/resource-hints/#resource-hints" - } - }, - "#security-and-privacy": { - "current": { - "number": "5", - "spec": "Resource Hints", - "text": "Security and Privacy", - "url": "https://w3c.github.io/resource-hints/#security-and-privacy" - }, - "snapshot": { - "number": "5", - "spec": "Resource Hints", - "text": "Security and Privacy", - "url": "https://www.w3.org/TR/resource-hints/#security-and-privacy" - } - }, - "#speculative-resource-prefetching-prefetch": { - "current": { - "number": "4.3", - "spec": "Resource Hints", - "text": "Speculative resource prefetching (prefetch)", - "url": "https://w3c.github.io/resource-hints/#speculative-resource-prefetching-prefetch" - }, - "snapshot": { - "number": "4.3", - "spec": "Resource Hints", - "text": "Speculative resource prefetching (prefetch)", - "url": "https://www.w3.org/TR/resource-hints/#speculative-resource-prefetching-prefetch" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Resource Hints", - "text": "Resource Hints", - "url": "https://w3c.github.io/resource-hints/#title" - }, - "snapshot": { - "number": "", - "spec": "Resource Hints", - "text": "Resource Hints", - "url": "https://www.w3.org/TR/resource-hints/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "Resource Hints", - "text": "Table of Contents", - "url": "https://w3c.github.io/resource-hints/#toc" - }, - "snapshot": { - "number": "", - "spec": "Resource Hints", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/resource-hints/#toc" - } - }, - "#use-cases": { - "current": { - "number": "4", - "spec": "Resource Hints", - "text": "Use cases", - "url": "https://w3c.github.io/resource-hints/#use-cases" - }, - "snapshot": { - "number": "4", - "spec": "Resource Hints", - "text": "Use cases", - "url": "https://www.w3.org/TR/resource-hints/#use-cases" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-responsive-image-client-hints.json b/bikeshed/spec-data/readonly/headings/headings-responsive-image-client-hints.json index f6fddcc4be..6230681d51 100644 --- a/bikeshed/spec-data/readonly/headings/headings-responsive-image-client-hints.json +++ b/bikeshed/spec-data/readonly/headings/headings-responsive-image-client-hints.json @@ -135,14 +135,6 @@ "url": "https://wicg.github.io/responsive-image-client-hints/#processing" } }, - "#profile-and-date": { - "current": { - "number": "", - "spec": "Responsive Image Client Hints", - "text": "Draft Community Group Report, 1 September 2021", - "url": "https://wicg.github.io/responsive-image-client-hints/#profile-and-date" - } - }, "#references": { "current": { "number": "", @@ -247,14 +239,6 @@ "url": "https://wicg.github.io/responsive-image-client-hints/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Responsive Image Client Hints", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/responsive-image-client-hints/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc6265.json b/bikeshed/spec-data/readonly/headings/headings-rfc6265.json index 1bda6054df..7e5160e29c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc6265.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc6265.json @@ -169,9 +169,9 @@ }, "#n-acknowledgements": { "current": { - "number": "", + "number": "A", "spec": "HTTP State Management Mechanism", - "text": "Appendix A. Acknowledgements", + "text": "Acknowledgements", "url": "https://httpwg.org/specs/rfc6265.html#n-acknowledgements" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc6265bis.json b/bikeshed/spec-data/readonly/headings/headings-rfc6265bis.json index d44cb28d82..13b5316c0b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc6265bis.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc6265bis.json @@ -1,116 +1,12 @@ { "#appendix-A": { "current": { - "number": "", + "number": "A", "spec": "Cookies: HTTP State Management Mechanism", - "text": "Appendix A. Changes", + "text": "Changes from RFC 6265", "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A" } }, - "#appendix-A.1": { - "current": { - "number": "A.1", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-00", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.1" - } - }, - "#appendix-A.10": { - "current": { - "number": "A.10", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-09", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.10" - } - }, - "#appendix-A.11": { - "current": { - "number": "A.11", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-10", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.11" - } - }, - "#appendix-A.12": { - "current": { - "number": "A.12", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-11", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.12" - } - }, - "#appendix-A.13": { - "current": { - "number": "A.13", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-12", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.13" - } - }, - "#appendix-A.2": { - "current": { - "number": "A.2", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-01", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.2" - } - }, - "#appendix-A.3": { - "current": { - "number": "A.3", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-02", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.3" - } - }, - "#appendix-A.4": { - "current": { - "number": "A.4", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-03", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.4" - } - }, - "#appendix-A.5": { - "current": { - "number": "A.5", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-04", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.5" - } - }, - "#appendix-A.6": { - "current": { - "number": "A.6", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-05", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.6" - } - }, - "#appendix-A.7": { - "current": { - "number": "A.7", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-06", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.7" - } - }, - "#appendix-A.8": { - "current": { - "number": "A.8", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-07", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.8" - } - }, - "#appendix-A.9": { - "current": { - "number": "A.9", - "spec": "Cookies: HTTP State Management Mechanism", - "text": "draft-ietf-httpbis-rfc6265bis-08", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#appendix-A.9" - } - }, "#appendix-B": { "current": { "number": "", @@ -207,6 +103,38 @@ "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-3.1" } }, + "#section-3.2": { + "current": { + "number": "3.2", + "spec": "Cookies: HTTP State Management Mechanism", + "text": "Which Requirements to Implement", + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-3.2" + } + }, + "#section-3.2.1": { + "current": { + "number": "3.2.1", + "spec": "Cookies: HTTP State Management Mechanism", + "text": "Cookie Producing Implementations", + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-3.2.1" + } + }, + "#section-3.2.2": { + "current": { + "number": "3.2.2", + "spec": "Cookies: HTTP State Management Mechanism", + "text": "Cookie Consuming Implementations", + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-3.2.2" + } + }, + "#section-3.2.2.1": { + "current": { + "number": "3.2.2.1", + "spec": "Cookies: HTTP State Management Mechanism", + "text": "Programming Languages & Software Frameworks", + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-3.2.2.1" + } + }, "#section-4": { "current": { "number": "4", @@ -451,120 +379,128 @@ "current": { "number": "5.5", "spec": "Cookies: HTTP State Management Mechanism", - "text": "The Set-Cookie Header Field", + "text": "Cookie Lifetime Limits", "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5" } }, - "#section-5.5.1": { + "#section-5.6": { "current": { - "number": "5.5.1", + "number": "5.6", + "spec": "Cookies: HTTP State Management Mechanism", + "text": "The Set-Cookie Header Field", + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6" + } + }, + "#section-5.6.1": { + "current": { + "number": "5.6.1", "spec": "Cookies: HTTP State Management Mechanism", "text": "The Expires Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.1" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.1" } }, - "#section-5.5.2": { + "#section-5.6.2": { "current": { - "number": "5.5.2", + "number": "5.6.2", "spec": "Cookies: HTTP State Management Mechanism", "text": "The Max-Age Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.2" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.2" } }, - "#section-5.5.3": { + "#section-5.6.3": { "current": { - "number": "5.5.3", + "number": "5.6.3", "spec": "Cookies: HTTP State Management Mechanism", "text": "The Domain Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.3" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.3" } }, - "#section-5.5.4": { + "#section-5.6.4": { "current": { - "number": "5.5.4", + "number": "5.6.4", "spec": "Cookies: HTTP State Management Mechanism", "text": "The Path Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.4" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.4" } }, - "#section-5.5.5": { + "#section-5.6.5": { "current": { - "number": "5.5.5", + "number": "5.6.5", "spec": "Cookies: HTTP State Management Mechanism", "text": "The Secure Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.5" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.5" } }, - "#section-5.5.6": { + "#section-5.6.6": { "current": { - "number": "5.5.6", + "number": "5.6.6", "spec": "Cookies: HTTP State Management Mechanism", "text": "The HttpOnly Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.6" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.6" } }, - "#section-5.5.7": { + "#section-5.6.7": { "current": { - "number": "5.5.7", + "number": "5.6.7", "spec": "Cookies: HTTP State Management Mechanism", "text": "The SameSite Attribute", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.7" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.7" } }, - "#section-5.5.7.1": { + "#section-5.6.7.1": { "current": { - "number": "5.5.7.1", + "number": "5.6.7.1", "spec": "Cookies: HTTP State Management Mechanism", "text": "\"Strict\" and \"Lax\" enforcement", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.7.1" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.7.1" } }, - "#section-5.5.7.2": { + "#section-5.6.7.2": { "current": { - "number": "5.5.7.2", + "number": "5.6.7.2", "spec": "Cookies: HTTP State Management Mechanism", "text": "\"Lax-Allowing-Unsafe\" enforcement", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.5.7.2" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6.7.2" } }, - "#section-5.6": { + "#section-5.7": { "current": { - "number": "5.6", + "number": "5.7", "spec": "Cookies: HTTP State Management Mechanism", "text": "Storage Model", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.6" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.7" } }, - "#section-5.7": { + "#section-5.8": { "current": { - "number": "5.7", + "number": "5.8", "spec": "Cookies: HTTP State Management Mechanism", "text": "Retrieval Model", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.7" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.8" } }, - "#section-5.7.1": { + "#section-5.8.1": { "current": { - "number": "5.7.1", + "number": "5.8.1", "spec": "Cookies: HTTP State Management Mechanism", "text": "The Cookie Header Field", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.7.1" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.8.1" } }, - "#section-5.7.2": { + "#section-5.8.2": { "current": { - "number": "5.7.2", + "number": "5.8.2", "spec": "Cookies: HTTP State Management Mechanism", "text": "Non-HTTP APIs", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.7.2" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.8.2" } }, - "#section-5.7.3": { + "#section-5.8.3": { "current": { - "number": "5.7.3", + "number": "5.8.3", "spec": "Cookies: HTTP State Management Mechanism", "text": "Retrieval Algorithm", - "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.7.3" + "url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-rfc6265bis.html#section-5.8.3" } }, "#section-6": { diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc6266.json b/bikeshed/spec-data/readonly/headings/headings-rfc6266.json index a597239487..0f4b8d6df0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc6266.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc6266.json @@ -1,17 +1,17 @@ { "#advice.generating": { "current": { - "number": "", + "number": "D", "spec": "Content-Disposition in HTTP", - "text": "Appendix D. Advice on Generating Content-Disposition Header Fields", + "text": "Advice on Generating Content-Disposition Header Fields", "url": "https://httpwg.org/specs/rfc6266.html#advice.generating" } }, "#alternatives": { "current": { - "number": "", + "number": "C", "spec": "Content-Disposition in HTTP", - "text": "Appendix C. Alternative Approaches to Internationalization", + "text": "Alternative Approaches to Internationalization", "url": "https://httpwg.org/specs/rfc6266.html#alternatives" } }, @@ -41,9 +41,9 @@ }, "#changes.from.rfc2616": { "current": { - "number": "", + "number": "A", "spec": "Content-Disposition in HTTP", - "text": "Appendix A. Changes from the RFC 2616 Definition", + "text": "Changes from the RFC 2616 Definition", "url": "https://httpwg.org/specs/rfc6266.html#changes.from.rfc2616" } }, @@ -57,9 +57,9 @@ }, "#diffs.compared.to.rfc2183": { "current": { - "number": "", + "number": "B", "spec": "Content-Disposition in HTTP", - "text": "Appendix B. Differences Compared to RFC 2183", + "text": "Differences Compared to RFC 2183", "url": "https://httpwg.org/specs/rfc6266.html#diffs.compared.to.rfc2183" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7230.json b/bikeshed/spec-data/readonly/headings/headings-rfc7230.json index 62bc1c6c77..fe963693d8 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7230.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7230.json @@ -129,17 +129,17 @@ }, "#collected.abnf": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1 Message Syntax and Routing", - "text": "Appendix B. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc7230.html#collected.abnf" } }, "#compatibility": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1 Message Syntax and Routing", - "text": "Appendix A. HTTP Version History", + "text": "HTTP Version History", "url": "https://httpwg.org/specs/rfc7230.html#compatibility" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7231.json b/bikeshed/spec-data/readonly/headings/headings-rfc7231.json index ddb901c7c4..6004071de5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7231.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7231.json @@ -121,9 +121,9 @@ }, "#changes.from.rfc.2616": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1 Semantics and Content", - "text": "Appendix B. Changes from RFC 2616", + "text": "Changes from RFC 2616", "url": "https://httpwg.org/specs/rfc7231.html#changes.from.rfc.2616" } }, @@ -137,9 +137,9 @@ }, "#collected.abnf": { "current": { - "number": "", + "number": "D", "spec": "HTTP/1.1 Semantics and Content", - "text": "Appendix D. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc7231.html#collected.abnf" } }, @@ -265,9 +265,9 @@ }, "#differences.between.http.and.mime": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1 Semantics and Content", - "text": "Appendix A. Differences between HTTP and MIME", + "text": "Differences between HTTP and MIME", "url": "https://httpwg.org/specs/rfc7231.html#differences.between.http.and.mime" } }, @@ -497,9 +497,9 @@ }, "#imported.abnf": { "current": { - "number": "", + "number": "C", "spec": "HTTP/1.1 Semantics and Content", - "text": "Appendix C. Imported ABNF", + "text": "Imported ABNF", "url": "https://httpwg.org/specs/rfc7231.html#imported.abnf" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7232.json b/bikeshed/spec-data/readonly/headings/headings-rfc7232.json index 261f6149f1..0e23c366e2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7232.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7232.json @@ -17,17 +17,17 @@ }, "#changes.from.rfc.2616": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1 Conditional Requests", - "text": "Appendix A. Changes from RFC 2616", + "text": "Changes from RFC 2616", "url": "https://httpwg.org/specs/rfc7232.html#changes.from.rfc.2616" } }, "#collected.abnf": { "current": { - "number": "", + "number": "C", "spec": "HTTP/1.1 Conditional Requests", - "text": "Appendix C. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc7232.html#collected.abnf" } }, @@ -137,9 +137,9 @@ }, "#imported.abnf": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1 Conditional Requests", - "text": "Appendix B. Imported ABNF", + "text": "Imported ABNF", "url": "https://httpwg.org/specs/rfc7232.html#imported.abnf" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7233.json b/bikeshed/spec-data/readonly/headings/headings-rfc7233.json index 827eb50d0c..130e7e4e58 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7233.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7233.json @@ -25,17 +25,17 @@ }, "#changes.from.rfc.2616": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1 Range Requests", - "text": "Appendix B. Changes from RFC 2616", + "text": "Changes from RFC 2616", "url": "https://httpwg.org/specs/rfc7233.html#changes.from.rfc.2616" } }, "#collected.abnf": { "current": { - "number": "", + "number": "D", "spec": "HTTP/1.1 Range Requests", - "text": "Appendix D. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc7233.html#collected.abnf" } }, @@ -97,9 +97,9 @@ }, "#imported.abnf": { "current": { - "number": "", + "number": "C", "spec": "HTTP/1.1 Range Requests", - "text": "Appendix C. Imported ABNF", + "text": "Imported ABNF", "url": "https://httpwg.org/specs/rfc7233.html#imported.abnf" } }, @@ -113,9 +113,9 @@ }, "#internet.media.type.multipart.byteranges": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1 Range Requests", - "text": "Appendix A. Internet Media Type multipart/byteranges", + "text": "Internet Media Type multipart/byteranges", "url": "https://httpwg.org/specs/rfc7233.html#internet.media.type.multipart.byteranges" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7234.json b/bikeshed/spec-data/readonly/headings/headings-rfc7234.json index 7cb83cf775..690b5eac3b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7234.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7234.json @@ -241,17 +241,17 @@ }, "#changes.from.rfc.2616": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1 Caching", - "text": "Appendix A. Changes from RFC 2616", + "text": "Changes from RFC 2616", "url": "https://httpwg.org/specs/rfc7234.html#changes.from.rfc.2616" } }, "#collected.abnf": { "current": { - "number": "", + "number": "C", "spec": "HTTP/1.1 Caching", - "text": "Appendix C. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc7234.html#collected.abnf" } }, @@ -393,9 +393,9 @@ }, "#imported.abnf": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1 Caching", - "text": "Appendix B. Imported ABNF", + "text": "Imported ABNF", "url": "https://httpwg.org/specs/rfc7234.html#imported.abnf" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7235.json b/bikeshed/spec-data/readonly/headings/headings-rfc7235.json index 7930e95b52..faebd3ed81 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7235.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7235.json @@ -57,17 +57,17 @@ }, "#changes.from.rfc.2616": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1 Authentication", - "text": "Appendix A. Changes from RFCs 2616 and 2617", + "text": "Changes from RFCs 2616 and 2617", "url": "https://httpwg.org/specs/rfc7235.html#changes.from.rfc.2616" } }, "#collected.abnf": { "current": { - "number": "", + "number": "C", "spec": "HTTP/1.1 Authentication", - "text": "Appendix C. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc7235.html#collected.abnf" } }, @@ -145,9 +145,9 @@ }, "#imported.abnf": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1 Authentication", - "text": "Appendix B. Imported ABNF", + "text": "Imported ABNF", "url": "https://httpwg.org/specs/rfc7235.html#imported.abnf" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7538.json b/bikeshed/spec-data/readonly/headings/headings-rfc7538.json deleted file mode 100644 index 36f793a972..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7538.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "#acknowledgements": { - "current": { - "number": "", - "spec": "Permanent Redirect", - "text": "Acknowledgements", - "url": "https://httpwg.org/specs/rfc7538.html#acknowledgements" - } - }, - "#deployment.considerations": { - "current": { - "number": "4", - "spec": "Permanent Redirect", - "text": "Deployment Considerations", - "url": "https://httpwg.org/specs/rfc7538.html#deployment.considerations" - } - }, - "#iana.considerations": { - "current": { - "number": "6", - "spec": "Permanent Redirect", - "text": "IANA Considerations", - "url": "https://httpwg.org/specs/rfc7538.html#iana.considerations" - } - }, - "#introduction": { - "current": { - "number": "1", - "spec": "Permanent Redirect", - "text": "Introduction", - "url": "https://httpwg.org/specs/rfc7538.html#introduction" - } - }, - "#notational.conventions": { - "current": { - "number": "2", - "spec": "Permanent Redirect", - "text": "Notational Conventions", - "url": "https://httpwg.org/specs/rfc7538.html#notational.conventions" - } - }, - "#rfc.abstract": { - "current": { - "number": "", - "spec": "Permanent Redirect", - "text": "Abstract", - "url": "https://httpwg.org/specs/rfc7538.html#rfc.abstract" - } - }, - "#rfc.references": { - "current": { - "number": "7", - "spec": "Permanent Redirect", - "text": "References", - "url": "https://httpwg.org/specs/rfc7538.html#rfc.references" - } - }, - "#rfc.section.7.1": { - "current": { - "number": "7.1", - "spec": "Permanent Redirect", - "text": "Normative References", - "url": "https://httpwg.org/specs/rfc7538.html#rfc.section.7.1" - } - }, - "#rfc.section.7.2": { - "current": { - "number": "7.2", - "spec": "Permanent Redirect", - "text": "Informative References", - "url": "https://httpwg.org/specs/rfc7538.html#rfc.section.7.2" - } - }, - "#security.considerations": { - "current": { - "number": "5", - "spec": "Permanent Redirect", - "text": "Security Considerations", - "url": "https://httpwg.org/specs/rfc7538.html#security.considerations" - } - }, - "#status.308": { - "current": { - "number": "3", - "spec": "Permanent Redirect", - "text": "308 Permanent Redirect", - "url": "https://httpwg.org/specs/rfc7538.html#status.308" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7540.json b/bikeshed/spec-data/readonly/headings/headings-rfc7540.json deleted file mode 100644 index 1f71e060e0..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7540.json +++ /dev/null @@ -1,802 +0,0 @@ -{ - "#BadCipherSuites": { - "current": { - "number": "", - "spec": "HTTP/2", - "text": "Appendix A. TLS 1.2 Cipher Suite Black List", - "url": "https://httpwg.org/specs/rfc7540.html#BadCipherSuites" - } - }, - "#CONNECT": { - "current": { - "number": "8.3", - "spec": "HTTP/2", - "text": "The CONNECT Method", - "url": "https://httpwg.org/specs/rfc7540.html#CONNECT" - } - }, - "#CONTINUATION": { - "current": { - "number": "6.10", - "spec": "HTTP/2", - "text": "CONTINUATION", - "url": "https://httpwg.org/specs/rfc7540.html#CONTINUATION" - } - }, - "#CompressCookie": { - "current": { - "number": "8.1.2.5", - "spec": "HTTP/2", - "text": "Compressing the Cookie Header Field", - "url": "https://httpwg.org/specs/rfc7540.html#CompressCookie" - } - }, - "#ConnectionErrorHandler": { - "current": { - "number": "5.4.1", - "spec": "HTTP/2", - "text": "Connection Error Handling", - "url": "https://httpwg.org/specs/rfc7540.html#ConnectionErrorHandler" - } - }, - "#ConnectionHeader": { - "current": { - "number": "3.5", - "spec": "HTTP/2", - "text": "HTTP/2 Connection Preface", - "url": "https://httpwg.org/specs/rfc7540.html#ConnectionHeader" - } - }, - "#DATA": { - "current": { - "number": "6.1", - "spec": "HTTP/2", - "text": "DATA", - "url": "https://httpwg.org/specs/rfc7540.html#DATA" - } - }, - "#DisableFlowControl": { - "current": { - "number": "5.2.2", - "spec": "HTTP/2", - "text": "Appropriate Use of Flow Control", - "url": "https://httpwg.org/specs/rfc7540.html#DisableFlowControl" - } - }, - "#ErrorCodes": { - "current": { - "number": "7", - "spec": "HTTP/2", - "text": "Error Codes", - "url": "https://httpwg.org/specs/rfc7540.html#ErrorCodes" - } - }, - "#ErrorHandler": { - "current": { - "number": "5.4", - "spec": "HTTP/2", - "text": "Error Handling", - "url": "https://httpwg.org/specs/rfc7540.html#ErrorHandler" - } - }, - "#FlowControl": { - "current": { - "number": "5.2", - "spec": "HTTP/2", - "text": "Flow Control", - "url": "https://httpwg.org/specs/rfc7540.html#FlowControl" - } - }, - "#FrameHeader": { - "current": { - "number": "4.1", - "spec": "HTTP/2", - "text": "Frame Format", - "url": "https://httpwg.org/specs/rfc7540.html#FrameHeader" - } - }, - "#FrameSize": { - "current": { - "number": "4.2", - "spec": "HTTP/2", - "text": "Frame Size", - "url": "https://httpwg.org/specs/rfc7540.html#FrameSize" - } - }, - "#FrameTypes": { - "current": { - "number": "6", - "spec": "HTTP/2", - "text": "Frame Definitions", - "url": "https://httpwg.org/specs/rfc7540.html#FrameTypes" - } - }, - "#FramingLayer": { - "current": { - "number": "4", - "spec": "HTTP/2", - "text": "HTTP Frames", - "url": "https://httpwg.org/specs/rfc7540.html#FramingLayer" - } - }, - "#GOAWAY": { - "current": { - "number": "6.8", - "spec": "HTTP/2", - "text": "GOAWAY", - "url": "https://httpwg.org/specs/rfc7540.html#GOAWAY" - } - }, - "#HEADERS": { - "current": { - "number": "6.2", - "spec": "HTTP/2", - "text": "HEADERS", - "url": "https://httpwg.org/specs/rfc7540.html#HEADERS" - } - }, - "#HTTPLayer": { - "current": { - "number": "8", - "spec": "HTTP/2", - "text": "HTTP Message Exchanges", - "url": "https://httpwg.org/specs/rfc7540.html#HTTPLayer" - } - }, - "#HeaderBlock": { - "current": { - "number": "4.3", - "spec": "HTTP/2", - "text": "Header Compression and Decompression", - "url": "https://httpwg.org/specs/rfc7540.html#HeaderBlock" - } - }, - "#Http2SettingsHeader": { - "current": { - "number": "3.2.1", - "spec": "HTTP/2", - "text": "HTTP2-Settings Header Field", - "url": "https://httpwg.org/specs/rfc7540.html#Http2SettingsHeader" - } - }, - "#HttpExtra": { - "current": { - "number": "9", - "spec": "HTTP/2", - "text": "Additional HTTP Requirements/Considerations", - "url": "https://httpwg.org/specs/rfc7540.html#HttpExtra" - } - }, - "#HttpHeaders": { - "current": { - "number": "8.1.2", - "spec": "HTTP/2", - "text": "HTTP Header Fields", - "url": "https://httpwg.org/specs/rfc7540.html#HttpHeaders" - } - }, - "#HttpRequest": { - "current": { - "number": "8.1.2.3", - "spec": "HTTP/2", - "text": "Request Pseudo-Header Fields", - "url": "https://httpwg.org/specs/rfc7540.html#HttpRequest" - } - }, - "#HttpResponse": { - "current": { - "number": "8.1.2.4", - "spec": "HTTP/2", - "text": "Response Pseudo-Header Fields", - "url": "https://httpwg.org/specs/rfc7540.html#HttpResponse" - } - }, - "#HttpSequence": { - "current": { - "number": "8.1", - "spec": "HTTP/2", - "text": "HTTP Request/Response Exchange", - "url": "https://httpwg.org/specs/rfc7540.html#HttpSequence" - } - }, - "#InitialWindowSize": { - "current": { - "number": "6.9.2", - "spec": "HTTP/2", - "text": "Initial Flow-Control Window Size", - "url": "https://httpwg.org/specs/rfc7540.html#InitialWindowSize" - } - }, - "#MaxHeaderBlock": { - "current": { - "number": "10.5.1", - "spec": "HTTP/2", - "text": "Limits on Header Block Size", - "url": "https://httpwg.org/specs/rfc7540.html#MaxHeaderBlock" - } - }, - "#MisdirectedRequest": { - "current": { - "number": "9.1.2", - "spec": "HTTP/2", - "text": "The 421 (Misdirected Request) Status Code", - "url": "https://httpwg.org/specs/rfc7540.html#MisdirectedRequest" - } - }, - "#Overview": { - "current": { - "number": "2", - "spec": "HTTP/2", - "text": "HTTP/2 Protocol Overview", - "url": "https://httpwg.org/specs/rfc7540.html#Overview" - } - }, - "#PING": { - "current": { - "number": "6.7", - "spec": "HTTP/2", - "text": "PING", - "url": "https://httpwg.org/specs/rfc7540.html#PING" - } - }, - "#PRIORITY": { - "current": { - "number": "6.3", - "spec": "HTTP/2", - "text": "PRIORITY", - "url": "https://httpwg.org/specs/rfc7540.html#PRIORITY" - } - }, - "#PUSH_PROMISE": { - "current": { - "number": "6.6", - "spec": "HTTP/2", - "text": "PUSH_PROMISE", - "url": "https://httpwg.org/specs/rfc7540.html#PUSH_PROMISE" - } - }, - "#PseudoHeaderFields": { - "current": { - "number": "8.1.2.1", - "spec": "HTTP/2", - "text": "Pseudo-Header Fields", - "url": "https://httpwg.org/specs/rfc7540.html#PseudoHeaderFields" - } - }, - "#PushRequests": { - "current": { - "number": "8.2.1", - "spec": "HTTP/2", - "text": "Push Requests", - "url": "https://httpwg.org/specs/rfc7540.html#PushRequests" - } - }, - "#PushResources": { - "current": { - "number": "8.2", - "spec": "HTTP/2", - "text": "Server Push", - "url": "https://httpwg.org/specs/rfc7540.html#PushResources" - } - }, - "#PushResponses": { - "current": { - "number": "8.2.2", - "spec": "HTTP/2", - "text": "Push Responses", - "url": "https://httpwg.org/specs/rfc7540.html#PushResponses" - } - }, - "#RST_STREAM": { - "current": { - "number": "6.4", - "spec": "HTTP/2", - "text": "RST_STREAM", - "url": "https://httpwg.org/specs/rfc7540.html#RST_STREAM" - } - }, - "#Reliability": { - "current": { - "number": "8.1.4", - "spec": "HTTP/2", - "text": "Request Reliability Mechanisms in HTTP/2", - "url": "https://httpwg.org/specs/rfc7540.html#Reliability" - } - }, - "#SETTINGS": { - "current": { - "number": "6.5", - "spec": "HTTP/2", - "text": "SETTINGS", - "url": "https://httpwg.org/specs/rfc7540.html#SETTINGS" - } - }, - "#SettingFormat": { - "current": { - "number": "6.5.1", - "spec": "HTTP/2", - "text": "SETTINGS Format", - "url": "https://httpwg.org/specs/rfc7540.html#SettingFormat" - } - }, - "#SettingValues": { - "current": { - "number": "6.5.2", - "spec": "HTTP/2", - "text": "Defined SETTINGS Parameters", - "url": "https://httpwg.org/specs/rfc7540.html#SettingValues" - } - }, - "#SettingsSync": { - "current": { - "number": "6.5.3", - "spec": "HTTP/2", - "text": "Settings Synchronization", - "url": "https://httpwg.org/specs/rfc7540.html#SettingsSync" - } - }, - "#StreamErrorHandler": { - "current": { - "number": "5.4.2", - "spec": "HTTP/2", - "text": "Stream Error Handling", - "url": "https://httpwg.org/specs/rfc7540.html#StreamErrorHandler" - } - }, - "#StreamIdentifiers": { - "current": { - "number": "5.1.1", - "spec": "HTTP/2", - "text": "Stream Identifiers", - "url": "https://httpwg.org/specs/rfc7540.html#StreamIdentifiers" - } - }, - "#StreamPriority": { - "current": { - "number": "5.3", - "spec": "HTTP/2", - "text": "Stream Priority", - "url": "https://httpwg.org/specs/rfc7540.html#StreamPriority" - } - }, - "#StreamStates": { - "current": { - "number": "5.1", - "spec": "HTTP/2", - "text": "Stream States", - "url": "https://httpwg.org/specs/rfc7540.html#StreamStates" - } - }, - "#StreamsLayer": { - "current": { - "number": "5", - "spec": "HTTP/2", - "text": "Streams and Multiplexing", - "url": "https://httpwg.org/specs/rfc7540.html#StreamsLayer" - } - }, - "#TLSUsage": { - "current": { - "number": "9.2", - "spec": "HTTP/2", - "text": "Use of TLS Features", - "url": "https://httpwg.org/specs/rfc7540.html#TLSUsage" - } - }, - "#WINDOW_UPDATE": { - "current": { - "number": "6.9", - "spec": "HTTP/2", - "text": "WINDOW_UPDATE", - "url": "https://httpwg.org/specs/rfc7540.html#WINDOW_UPDATE" - } - }, - "#authority": { - "current": { - "number": "10.1", - "spec": "HTTP/2", - "text": "Server Authority", - "url": "https://httpwg.org/specs/rfc7540.html#authority" - } - }, - "#connectDos": { - "current": { - "number": "10.5.2", - "spec": "HTTP/2", - "text": "CONNECT Issues", - "url": "https://httpwg.org/specs/rfc7540.html#connectDos" - } - }, - "#discover-http": { - "current": { - "number": "3.2", - "spec": "HTTP/2", - "text": "Starting HTTP/2 for \"http\" URIs", - "url": "https://httpwg.org/specs/rfc7540.html#discover-http" - } - }, - "#discover-https": { - "current": { - "number": "3.3", - "spec": "HTTP/2", - "text": "Starting HTTP/2 for \"https\" URIs", - "url": "https://httpwg.org/specs/rfc7540.html#discover-https" - } - }, - "#dos": { - "current": { - "number": "10.5", - "spec": "HTTP/2", - "text": "Denial-of-Service Considerations", - "url": "https://httpwg.org/specs/rfc7540.html#dos" - } - }, - "#extensibility": { - "current": { - "number": "5.5", - "spec": "HTTP/2", - "text": "Extending HTTP/2", - "url": "https://httpwg.org/specs/rfc7540.html#extensibility" - } - }, - "#fc-principles": { - "current": { - "number": "5.2.1", - "spec": "HTTP/2", - "text": "Flow-Control Principles", - "url": "https://httpwg.org/specs/rfc7540.html#fc-principles" - } - }, - "#iana": { - "current": { - "number": "", - "spec": "HTTP/2", - "text": "11. IANA Considerations", - "url": "https://httpwg.org/specs/rfc7540.html#iana" - } - }, - "#iana-MisdirectedRequest": { - "current": { - "number": "11.7", - "spec": "HTTP/2", - "text": "The 421 (Misdirected Request) HTTP Status Code", - "url": "https://httpwg.org/specs/rfc7540.html#iana-MisdirectedRequest" - } - }, - "#iana-alpn": { - "current": { - "number": "11.1", - "spec": "HTTP/2", - "text": "Registration of HTTP/2 Identification Strings", - "url": "https://httpwg.org/specs/rfc7540.html#iana-alpn" - } - }, - "#iana-errors": { - "current": { - "number": "11.4", - "spec": "HTTP/2", - "text": "Error Code Registry", - "url": "https://httpwg.org/specs/rfc7540.html#iana-errors" - } - }, - "#iana-frames": { - "current": { - "number": "11.2", - "spec": "HTTP/2", - "text": "Frame Type Registry", - "url": "https://httpwg.org/specs/rfc7540.html#iana-frames" - } - }, - "#iana-h2c": { - "current": { - "number": "11.8", - "spec": "HTTP/2", - "text": "The h2c Upgrade Token", - "url": "https://httpwg.org/specs/rfc7540.html#iana-h2c" - } - }, - "#iana-settings": { - "current": { - "number": "11.3", - "spec": "HTTP/2", - "text": "Settings Registry", - "url": "https://httpwg.org/specs/rfc7540.html#iana-settings" - } - }, - "#informational-responses": { - "current": { - "number": "8.1.1", - "spec": "HTTP/2", - "text": "Upgrading from HTTP/2", - "url": "https://httpwg.org/specs/rfc7540.html#informational-responses" - } - }, - "#intro": { - "current": { - "number": "1", - "spec": "HTTP/2", - "text": "Introduction", - "url": "https://httpwg.org/specs/rfc7540.html#intro" - } - }, - "#known-http": { - "current": { - "number": "3.4", - "spec": "HTTP/2", - "text": "Starting HTTP/2 with Prior Knowledge", - "url": "https://httpwg.org/specs/rfc7540.html#known-http" - } - }, - "#malformed": { - "current": { - "number": "8.1.2.6", - "spec": "HTTP/2", - "text": "Malformed Requests and Responses", - "url": "https://httpwg.org/specs/rfc7540.html#malformed" - } - }, - "#n-acknowledgements": { - "current": { - "number": "", - "spec": "HTTP/2", - "text": "Acknowledgements", - "url": "https://httpwg.org/specs/rfc7540.html#n-acknowledgements" - } - }, - "#n-cacheability-of-pushed-responses": { - "current": { - "number": "10.4", - "spec": "HTTP/2", - "text": "Cacheability of Pushed Responses", - "url": "https://httpwg.org/specs/rfc7540.html#n-cacheability-of-pushed-responses" - } - }, - "#n-connection-management": { - "current": { - "number": "9.1", - "spec": "HTTP/2", - "text": "Connection Management", - "url": "https://httpwg.org/specs/rfc7540.html#n-connection-management" - } - }, - "#n-connection-specific-header-fields": { - "current": { - "number": "8.1.2.2", - "spec": "HTTP/2", - "text": "Connection-Specific Header Fields", - "url": "https://httpwg.org/specs/rfc7540.html#n-connection-specific-header-fields" - } - }, - "#n-connection-termination": { - "current": { - "number": "5.4.3", - "spec": "HTTP/2", - "text": "Connection Termination", - "url": "https://httpwg.org/specs/rfc7540.html#n-connection-termination" - } - }, - "#n-conventions-and-terminology": { - "current": { - "number": "2.2", - "spec": "HTTP/2", - "text": "Conventions and Terminology", - "url": "https://httpwg.org/specs/rfc7540.html#n-conventions-and-terminology" - } - }, - "#n-cross-protocol-attacks": { - "current": { - "number": "10.2", - "spec": "HTTP/2", - "text": "Cross-Protocol Attacks", - "url": "https://httpwg.org/specs/rfc7540.html#n-cross-protocol-attacks" - } - }, - "#n-dependency-weighting": { - "current": { - "number": "5.3.2", - "spec": "HTTP/2", - "text": "Dependency Weighting", - "url": "https://httpwg.org/specs/rfc7540.html#n-dependency-weighting" - } - }, - "#n-document-organization": { - "current": { - "number": "2.1", - "spec": "HTTP/2", - "text": "Document Organization", - "url": "https://httpwg.org/specs/rfc7540.html#n-document-organization" - } - }, - "#n-examples": { - "current": { - "number": "8.1.3", - "spec": "HTTP/2", - "text": "Examples", - "url": "https://httpwg.org/specs/rfc7540.html#n-examples" - } - }, - "#n-http2-settings-header-field-registration": { - "current": { - "number": "11.5", - "spec": "HTTP/2", - "text": "HTTP2-Settings Header Field Registration", - "url": "https://httpwg.org/specs/rfc7540.html#n-http2-settings-header-field-registration" - } - }, - "#n-intermediary-encapsulation-attacks": { - "current": { - "number": "10.3", - "spec": "HTTP/2", - "text": "Intermediary Encapsulation Attacks", - "url": "https://httpwg.org/specs/rfc7540.html#n-intermediary-encapsulation-attacks" - } - }, - "#n-pri-method-registration": { - "current": { - "number": "11.6", - "spec": "HTTP/2", - "text": "PRI Method Registration", - "url": "https://httpwg.org/specs/rfc7540.html#n-pri-method-registration" - } - }, - "#n-privacy-considerations": { - "current": { - "number": "10.8", - "spec": "HTTP/2", - "text": "Privacy Considerations", - "url": "https://httpwg.org/specs/rfc7540.html#n-privacy-considerations" - } - }, - "#n-reducing-the-stream-window-size": { - "current": { - "number": "6.9.3", - "spec": "HTTP/2", - "text": "Reducing the Stream Window Size", - "url": "https://httpwg.org/specs/rfc7540.html#n-reducing-the-stream-window-size" - } - }, - "#n-stream-concurrency": { - "current": { - "number": "5.1.2", - "spec": "HTTP/2", - "text": "Stream Concurrency", - "url": "https://httpwg.org/specs/rfc7540.html#n-stream-concurrency" - } - }, - "#n-the-flow-control-window": { - "current": { - "number": "6.9.1", - "spec": "HTTP/2", - "text": "The Flow-Control Window", - "url": "https://httpwg.org/specs/rfc7540.html#n-the-flow-control-window" - } - }, - "#n-tls-1.2-cipher-suites": { - "current": { - "number": "9.2.2", - "spec": "HTTP/2", - "text": "TLS 1.2 Cipher Suites", - "url": "https://httpwg.org/specs/rfc7540.html#n-tls-1.2-cipher-suites" - } - }, - "#n-tls-1.2-features": { - "current": { - "number": "9.2.1", - "spec": "HTTP/2", - "text": "TLS 1.2 Features", - "url": "https://httpwg.org/specs/rfc7540.html#n-tls-1.2-features" - } - }, - "#n-use-of-compression": { - "current": { - "number": "10.6", - "spec": "HTTP/2", - "text": "Use of Compression", - "url": "https://httpwg.org/specs/rfc7540.html#n-use-of-compression" - } - }, - "#padding": { - "current": { - "number": "10.7", - "spec": "HTTP/2", - "text": "Use of Padding", - "url": "https://httpwg.org/specs/rfc7540.html#padding" - } - }, - "#pri-default": { - "current": { - "number": "5.3.5", - "spec": "HTTP/2", - "text": "Default Priorities", - "url": "https://httpwg.org/specs/rfc7540.html#pri-default" - } - }, - "#pri-depend": { - "current": { - "number": "5.3.1", - "spec": "HTTP/2", - "text": "Stream Dependencies", - "url": "https://httpwg.org/specs/rfc7540.html#pri-depend" - } - }, - "#priority-gc": { - "current": { - "number": "5.3.4", - "spec": "HTTP/2", - "text": "Prioritization State Management", - "url": "https://httpwg.org/specs/rfc7540.html#priority-gc" - } - }, - "#reprioritize": { - "current": { - "number": "5.3.3", - "spec": "HTTP/2", - "text": "Reprioritization", - "url": "https://httpwg.org/specs/rfc7540.html#reprioritize" - } - }, - "#reuse": { - "current": { - "number": "9.1.1", - "spec": "HTTP/2", - "text": "Connection Reuse", - "url": "https://httpwg.org/specs/rfc7540.html#reuse" - } - }, - "#rfc.abstract": { - "current": { - "number": "", - "spec": "HTTP/2", - "text": "Abstract", - "url": "https://httpwg.org/specs/rfc7540.html#rfc.abstract" - } - }, - "#rfc.references": { - "current": { - "number": "", - "spec": "HTTP/2", - "text": "12. References", - "url": "https://httpwg.org/specs/rfc7540.html#rfc.references" - } - }, - "#rfc.section.12.1": { - "current": { - "number": "12.1", - "spec": "HTTP/2", - "text": "Normative References", - "url": "https://httpwg.org/specs/rfc7540.html#rfc.section.12.1" - } - }, - "#rfc.section.12.2": { - "current": { - "number": "12.2", - "spec": "HTTP/2", - "text": "Informative References", - "url": "https://httpwg.org/specs/rfc7540.html#rfc.section.12.2" - } - }, - "#security": { - "current": { - "number": "", - "spec": "HTTP/2", - "text": "10. Security Considerations", - "url": "https://httpwg.org/specs/rfc7540.html#security" - } - }, - "#starting": { - "current": { - "number": "3", - "spec": "HTTP/2", - "text": "Starting HTTP/2", - "url": "https://httpwg.org/specs/rfc7540.html#starting" - } - }, - "#versioning": { - "current": { - "number": "3.1", - "spec": "HTTP/2", - "text": "HTTP/2 Version Identification", - "url": "https://httpwg.org/specs/rfc7540.html#versioning" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7616.json b/bikeshed/spec-data/readonly/headings/headings-rfc7616.json index 821d433a09..8d8214678f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7616.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7616.json @@ -89,9 +89,9 @@ }, "#n-acknowledgments": { "current": { - "number": "", + "number": "B", "spec": "HTTP Digest Access Authentication", - "text": "Appendix B. Acknowledgments", + "text": "Acknowledgments", "url": "https://httpwg.org/specs/rfc7616.html#n-acknowledgments" } }, @@ -329,9 +329,9 @@ }, "#rfc2617.changes": { "current": { - "number": "", + "number": "A", "spec": "HTTP Digest Access Authentication", - "text": "Appendix A. Changes from RFC 2617", + "text": "Changes from RFC 2617", "url": "https://httpwg.org/specs/rfc7616.html#rfc2617.changes" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7617.json b/bikeshed/spec-data/readonly/headings/headings-rfc7617.json index 440db4066b..0c15db4bd9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7617.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7617.json @@ -49,17 +49,17 @@ }, "#n-changes-from-rfc-2617": { "current": { - "number": "", + "number": "A", "spec": "The 'Basic' HTTP Authentication Scheme", - "text": "Appendix A. Changes from RFC 2617", + "text": "Changes from RFC 2617", "url": "https://httpwg.org/specs/rfc7617.html#n-changes-from-rfc-2617" } }, "#n-deployment-considerations-for-the-_charset_-parameter": { "current": { - "number": "", + "number": "B", "spec": "The 'Basic' HTTP Authentication Scheme", - "text": "Appendix B. Deployment Considerations for the 'charset' Parameter", + "text": "Deployment Considerations for the 'charset' Parameter", "url": "https://httpwg.org/specs/rfc7617.html#n-deployment-considerations-for-the-_charset_-parameter" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc7725.json b/bikeshed/spec-data/readonly/headings/headings-rfc7725.json index b996d54e34..76045fbe31 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc7725.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc7725.json @@ -9,9 +9,9 @@ }, "#n-acknowledgements": { "current": { - "number": "", + "number": "A", "spec": "An HTTP Status Code to Report Legal Obstacles", - "text": "Appendix A. Acknowledgements", + "text": "Acknowledgements", "url": "https://httpwg.org/specs/rfc7725.html#n-acknowledgements" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc8288.json b/bikeshed/spec-data/readonly/headings/headings-rfc8288.json index d87e0866ef..9065f47884 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc8288.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc8288.json @@ -17,9 +17,9 @@ }, "#changes-from-rfc-5988": { "current": { - "number": "", + "number": "C", "spec": "Web Linking", - "text": "Appendix C. Changes from RFC 5988", + "text": "Changes from RFC 5988", "url": "https://httpwg.org/specs/rfc8288.html#changes-from-rfc-5988" } }, @@ -177,17 +177,17 @@ }, "#notes-on-other-link-serialisations": { "current": { - "number": "", + "number": "A", "spec": "Web Linking", - "text": "Appendix A. Notes on Other Link Serialisations", + "text": "Notes on Other Link Serialisations", "url": "https://httpwg.org/specs/rfc8288.html#notes-on-other-link-serialisations" } }, "#parse": { "current": { - "number": "", + "number": "B", "spec": "Web Linking", - "text": "Appendix B. Algorithms for Parsing Link Header Fields", + "text": "Algorithms for Parsing Link Header Fields", "url": "https://httpwg.org/specs/rfc8288.html#parse" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc8297.json b/bikeshed/spec-data/readonly/headings/headings-rfc8297.json new file mode 100644 index 0000000000..b824417877 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-rfc8297.json @@ -0,0 +1,82 @@ +{ + "#acknowledgements": { + "current": { + "number": "A", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Acknowledgements", + "url": "https://httpwg.org/specs/rfc8297.html#acknowledgements" + } + }, + "#early-hints": { + "current": { + "number": "2", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "HTTP Status Code 103: Early Hints", + "url": "https://httpwg.org/specs/rfc8297.html#early-hints" + } + }, + "#iana-considerations": { + "current": { + "number": "4", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "IANA Considerations", + "url": "https://httpwg.org/specs/rfc8297.html#iana-considerations" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Introduction", + "url": "https://httpwg.org/specs/rfc8297.html#introduction" + } + }, + "#notational-conventions": { + "current": { + "number": "1.1", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Notational Conventions", + "url": "https://httpwg.org/specs/rfc8297.html#notational-conventions" + } + }, + "#rfc.abstract": { + "current": { + "number": "", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Abstract", + "url": "https://httpwg.org/specs/rfc8297.html#rfc.abstract" + } + }, + "#rfc.references": { + "current": { + "number": "5", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "References", + "url": "https://httpwg.org/specs/rfc8297.html#rfc.references" + } + }, + "#rfc.section.5.1": { + "current": { + "number": "5.1", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Normative References", + "url": "https://httpwg.org/specs/rfc8297.html#rfc.section.5.1" + } + }, + "#rfc.section.5.2": { + "current": { + "number": "5.2", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Informative References", + "url": "https://httpwg.org/specs/rfc8297.html#rfc.section.5.2" + } + }, + "#security-considerations": { + "current": { + "number": "3", + "spec": "An HTTP Status Code for Indicating Hints", + "text": "Security Considerations", + "url": "https://httpwg.org/specs/rfc8297.html#security-considerations" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc8878.json b/bikeshed/spec-data/readonly/headings/headings-rfc8878.json new file mode 100644 index 0000000000..a2f6375906 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-rfc8878.json @@ -0,0 +1,586 @@ +{ + "#rfcnum": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "RFC 8878", + "url": "https://www.rfc-editor.org/rfc/rfc8878#rfcnum" + } + }, + "#section-1": { + "current": { + "number": "1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Introduction", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-1" + } + }, + "#section-2": { + "current": { + "number": "2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Definitions", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-2" + } + }, + "#section-3": { + "current": { + "number": "3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Compression Algorithm", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3" + } + }, + "#section-3.1": { + "current": { + "number": "3.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Frames", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1" + } + }, + "#section-3.1.1": { + "current": { + "number": "3.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Zstandard Frames", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1" + } + }, + "#section-3.1.1.1": { + "current": { + "number": "3.1.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Frame Header", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1" + } + }, + "#section-3.1.1.1.1": { + "current": { + "number": "3.1.1.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Frame_Header_Descriptor", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1" + } + }, + "#section-3.1.1.1.1.1": { + "current": { + "number": "3.1.1.1.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Frame_Content_Size_Flag", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1.1" + } + }, + "#section-3.1.1.1.1.2": { + "current": { + "number": "3.1.1.1.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Single_Segment_Flag", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1.2" + } + }, + "#section-3.1.1.1.1.3": { + "current": { + "number": "3.1.1.1.1.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Unused Bit", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1.3" + } + }, + "#section-3.1.1.1.1.4": { + "current": { + "number": "3.1.1.1.1.4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Reserved Bit", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1.4" + } + }, + "#section-3.1.1.1.1.5": { + "current": { + "number": "3.1.1.1.1.5", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Content_Checksum_Flag", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1.5" + } + }, + "#section-3.1.1.1.1.6": { + "current": { + "number": "3.1.1.1.1.6", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Dictionary_ID_Flag", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.1.6" + } + }, + "#section-3.1.1.1.2": { + "current": { + "number": "3.1.1.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Window Descriptor", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.2" + } + }, + "#section-3.1.1.1.3": { + "current": { + "number": "3.1.1.1.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Dictionary_ID", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.3" + } + }, + "#section-3.1.1.1.4": { + "current": { + "number": "3.1.1.1.4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Frame_Content_Size", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.1.4" + } + }, + "#section-3.1.1.2": { + "current": { + "number": "3.1.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Blocks", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.2" + } + }, + "#section-3.1.1.2.1": { + "current": { + "number": "3.1.1.2.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Last_Block", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.2.1" + } + }, + "#section-3.1.1.2.2": { + "current": { + "number": "3.1.1.2.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Block_Type", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.2.2" + } + }, + "#section-3.1.1.2.3": { + "current": { + "number": "3.1.1.2.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Block_Size", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.2.3" + } + }, + "#section-3.1.1.2.4": { + "current": { + "number": "3.1.1.2.4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Block_Content and Block_Maximum_Size", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.2.4" + } + }, + "#section-3.1.1.3": { + "current": { + "number": "3.1.1.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Compressed Blocks", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3" + } + }, + "#section-3.1.1.3.1": { + "current": { + "number": "3.1.1.3.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Literals_Section_Header", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1" + } + }, + "#section-3.1.1.3.1.1": { + "current": { + "number": "3.1.1.3.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Literals_Section_Header", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1.1" + } + }, + "#section-3.1.1.3.1.2": { + "current": { + "number": "3.1.1.3.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Raw_Literals_Block", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1.2" + } + }, + "#section-3.1.1.3.1.3": { + "current": { + "number": "3.1.1.3.1.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "RLE_Literals_Block", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1.3" + } + }, + "#section-3.1.1.3.1.4": { + "current": { + "number": "3.1.1.3.1.4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Compressed_Literals_Block and Treeless_Literals_Block", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1.4" + } + }, + "#section-3.1.1.3.1.5": { + "current": { + "number": "3.1.1.3.1.5", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Huffman_Tree_Description", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1.5" + } + }, + "#section-3.1.1.3.1.6": { + "current": { + "number": "3.1.1.3.1.6", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Jump_Table", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.1.6" + } + }, + "#section-3.1.1.3.2": { + "current": { + "number": "3.1.1.3.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Sequences_Section", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2" + } + }, + "#section-3.1.1.3.2.1": { + "current": { + "number": "3.1.1.3.2.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Sequences_Section_Header", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.1" + } + }, + "#section-3.1.1.3.2.1.1": { + "current": { + "number": "3.1.1.3.2.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Sequence Codes for Lengths and Offsets", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.1.1" + } + }, + "#section-3.1.1.3.2.1.2": { + "current": { + "number": "3.1.1.3.2.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Decoding Sequences", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.1.2" + } + }, + "#section-3.1.1.3.2.2": { + "current": { + "number": "3.1.1.3.2.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Default Distributions", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.2" + } + }, + "#section-3.1.1.3.2.2.1": { + "current": { + "number": "3.1.1.3.2.2.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Literals Length Codes", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.2.1" + } + }, + "#section-3.1.1.3.2.2.2": { + "current": { + "number": "3.1.1.3.2.2.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Match Length Codes", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.2.2" + } + }, + "#section-3.1.1.3.2.2.3": { + "current": { + "number": "3.1.1.3.2.2.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Offset Codes", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.3.2.2.3" + } + }, + "#section-3.1.1.4": { + "current": { + "number": "3.1.1.4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Sequence Execution", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.4" + } + }, + "#section-3.1.1.5": { + "current": { + "number": "3.1.1.5", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Repeat Offsets", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.1.5" + } + }, + "#section-3.1.2": { + "current": { + "number": "3.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Skippable Frames", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-3.1.2" + } + }, + "#section-4": { + "current": { + "number": "4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Entropy Encoding", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4" + } + }, + "#section-4.1": { + "current": { + "number": "4.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "FSE", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.1" + } + }, + "#section-4.1.1": { + "current": { + "number": "4.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "FSE Table Description", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.1.1" + } + }, + "#section-4.2": { + "current": { + "number": "4.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Huffman Coding", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.2" + } + }, + "#section-4.2.1": { + "current": { + "number": "4.2.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Huffman Tree Description", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.2.1" + } + }, + "#section-4.2.1.1": { + "current": { + "number": "4.2.1.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Huffman Tree Header", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.2.1.1" + } + }, + "#section-4.2.1.2": { + "current": { + "number": "4.2.1.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "FSE Compression of Huffman Weights", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.2.1.2" + } + }, + "#section-4.2.1.3": { + "current": { + "number": "4.2.1.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Conversion from Weights to Huffman Prefix Codes", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.2.1.3" + } + }, + "#section-4.2.2": { + "current": { + "number": "4.2.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Huffman-Coded Streams", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-4.2.2" + } + }, + "#section-5": { + "current": { + "number": "5", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Dictionary Format", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-5" + } + }, + "#section-6": { + "current": { + "number": "6", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Use of Dictionaries", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-6" + } + }, + "#section-7": { + "current": { + "number": "7", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "IANA Considerations", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-7" + } + }, + "#section-7.1": { + "current": { + "number": "7.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "The 'application/zstd' Media Type", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-7.1" + } + }, + "#section-7.2": { + "current": { + "number": "7.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Content Encoding", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-7.2" + } + }, + "#section-7.3": { + "current": { + "number": "7.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Structured Syntax Suffix", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-7.3" + } + }, + "#section-7.4": { + "current": { + "number": "7.4", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Dictionaries", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-7.4" + } + }, + "#section-8": { + "current": { + "number": "8", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Security Considerations", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-8" + } + }, + "#section-9": { + "current": { + "number": "9", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "References", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-9" + } + }, + "#section-9.1": { + "current": { + "number": "9.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Normative References", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-9.1" + } + }, + "#section-9.2": { + "current": { + "number": "9.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Informative References", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-9.2" + } + }, + "#section-a.1": { + "current": { + "number": "A.1", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Literals Length Code Table", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-a.1" + } + }, + "#section-a.2": { + "current": { + "number": "A.2", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Match Length Code Table", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-a.2" + } + }, + "#section-a.3": { + "current": { + "number": "A.3", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Offset Code Table", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-a.3" + } + }, + "#section-abstract": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Abstract", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-abstract" + } + }, + "#section-appendix.a": { + "current": { + "number": "A", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Decoding Tables for Predefined Codes", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-appendix.a" + } + }, + "#section-appendix.b": { + "current": { + "number": "B", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Changes since RFC 8478", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-appendix.b" + } + }, + "#section-appendix.c": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Acknowledgments", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-appendix.c" + } + }, + "#section-appendix.d": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Authors' Addresses", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-appendix.d" + } + }, + "#section-boilerplate.1": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Status of This Memo", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-boilerplate.1" + } + }, + "#section-boilerplate.2": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Copyright Notice", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-boilerplate.2" + } + }, + "#section-toc.1": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Table of Contents", + "url": "https://www.rfc-editor.org/rfc/rfc8878#section-toc.1" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Zstandard Compression and the 'application/zstd' Media Type", + "text": "Zstandard Compression and the 'application/zstd' Media Type", + "url": "https://www.rfc-editor.org/rfc/rfc8878#title" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9110.json b/bikeshed/spec-data/readonly/headings/headings-rfc9110.json index d196632018..178a25b3d0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc9110.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9110.json @@ -241,9 +241,9 @@ }, "#changes.from.previous.rfcs": { "current": { - "number": "", + "number": "B", "spec": "HTTP Semantics", - "text": "Appendix B. Changes from Previous RFCs", + "text": "Changes from Previous RFCs", "url": "https://httpwg.org/specs/rfc9110.html#changes.from.previous.rfcs" } }, @@ -329,9 +329,9 @@ }, "#collected.abnf": { "current": { - "number": "", + "number": "A", "spec": "HTTP Semantics", - "text": "Appendix A. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc9110.html#collected.abnf" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9111.json b/bikeshed/spec-data/readonly/headings/headings-rfc9111.json index c47eb5e2bc..42a0a9542b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc9111.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9111.json @@ -257,17 +257,17 @@ }, "#changes.from.rfc.7234": { "current": { - "number": "", + "number": "B", "spec": "HTTP Caching", - "text": "Appendix B. Changes from RFC 7234", + "text": "Changes from RFC 7234", "url": "https://httpwg.org/specs/rfc9111.html#changes.from.rfc.7234" } }, "#collected.abnf": { "current": { - "number": "", + "number": "A", "spec": "HTTP Caching", - "text": "Appendix A. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc9111.html#collected.abnf" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9112.json b/bikeshed/spec-data/readonly/headings/headings-rfc9112.json index 65a857efe8..fa85d16cdc 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc9112.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9112.json @@ -65,9 +65,9 @@ }, "#changes": { "current": { - "number": "", + "number": "C", "spec": "HTTP/1.1", - "text": "Appendix C. Changes from Previous RFCs", + "text": "Changes from Previous RFCs", "url": "https://httpwg.org/specs/rfc9112.html#changes" } }, @@ -129,9 +129,9 @@ }, "#collected.abnf": { "current": { - "number": "", + "number": "A", "spec": "HTTP/1.1", - "text": "Appendix A. Collected ABNF", + "text": "Collected ABNF", "url": "https://httpwg.org/specs/rfc9112.html#collected.abnf" } }, @@ -201,9 +201,9 @@ }, "#differences.between.http.and.mime": { "current": { - "number": "", + "number": "B", "spec": "HTTP/1.1", - "text": "Appendix B. Differences between HTTP and MIME", + "text": "Differences between HTTP and MIME", "url": "https://httpwg.org/specs/rfc9112.html#differences.between.http.and.mime" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9113.json b/bikeshed/spec-data/readonly/headings/headings-rfc9113.json index f5bfa01133..507cfb5217 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc9113.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9113.json @@ -1,9 +1,9 @@ { "#BadCipherSuites": { "current": { - "number": "", + "number": "A", "spec": "HTTP/2", - "text": "Appendix A. Prohibited TLS 1.2 Cipher Suites", + "text": "Prohibited TLS 1.2 Cipher Suites", "url": "https://httpwg.org/specs/rfc9113.html#BadCipherSuites" } }, @@ -713,9 +713,9 @@ }, "#revision-updates": { "current": { - "number": "", + "number": "B", "spec": "HTTP/2", - "text": "Appendix B. Changes from RFC 7540", + "text": "Changes from RFC 7540", "url": "https://httpwg.org/specs/rfc9113.html#revision-updates" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9114.json b/bikeshed/spec-data/readonly/headings/headings-rfc9114.json index 21fb5e045f..39103a92d6 100644 --- a/bikeshed/spec-data/readonly/headings/headings-rfc9114.json +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9114.json @@ -289,9 +289,9 @@ }, "#h2-considerations": { "current": { - "number": "", + "number": "A", "spec": "HTTP/3", - "text": "Appendix A. Considerations for Transitioning from HTTP/2", + "text": "Considerations for Transitioning from HTTP/2", "url": "https://httpwg.org/specs/rfc9114.html#h2-considerations" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9218.json b/bikeshed/spec-data/readonly/headings/headings-rfc9218.json new file mode 100644 index 0000000000..2387b401ca --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9218.json @@ -0,0 +1,274 @@ +{ + "#acknowledgements": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Acknowledgements", + "url": "https://httpwg.org/specs/rfc9218.html#acknowledgements" + } + }, + "#advice-when-using-extensible-priorities-as-the-alternative": { + "current": { + "number": "2.1.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Advice when Using Extensible Priorities as the Alternative", + "url": "https://httpwg.org/specs/rfc9218.html#advice-when-using-extensible-priorities-as-the-alternative" + } + }, + "#applicability-of-the-extensible-priority-scheme": { + "current": { + "number": "3", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Applicability of the Extensible Priority Scheme", + "url": "https://httpwg.org/specs/rfc9218.html#applicability-of-the-extensible-priority-scheme" + } + }, + "#client-scheduling": { + "current": { + "number": "9", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Client Scheduling", + "url": "https://httpwg.org/specs/rfc9218.html#client-scheduling" + } + }, + "#coalescing": { + "current": { + "number": "13.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Coalescing Intermediaries", + "url": "https://httpwg.org/specs/rfc9218.html#coalescing" + } + }, + "#connect-scheduling": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "11. Scheduling and the CONNECT Method", + "url": "https://httpwg.org/specs/rfc9218.html#connect-scheduling" + } + }, + "#disabling": { + "current": { + "number": "2.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Disabling RFC 7540 Stream Priorities", + "url": "https://httpwg.org/specs/rfc9218.html#disabling" + } + }, + "#fairness": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "13. Fairness", + "url": "https://httpwg.org/specs/rfc9218.html#fairness" + } + }, + "#frame": { + "current": { + "number": "7", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "The PRIORITY_UPDATE Frame", + "url": "https://httpwg.org/specs/rfc9218.html#frame" + } + }, + "#h1-backends": { + "current": { + "number": "13.2", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "HTTP/1.x Back Ends", + "url": "https://httpwg.org/specs/rfc9218.html#h1-backends" + } + }, + "#h2-update-frame": { + "current": { + "number": "7.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "HTTP/2 PRIORITY_UPDATE Frame", + "url": "https://httpwg.org/specs/rfc9218.html#h2-update-frame" + } + }, + "#h3-update-frame": { + "current": { + "number": "7.2", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "HTTP/3 PRIORITY_UPDATE Frame", + "url": "https://httpwg.org/specs/rfc9218.html#h3-update-frame" + } + }, + "#header-field": { + "current": { + "number": "5", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "The Priority HTTP Header Field", + "url": "https://httpwg.org/specs/rfc9218.html#header-field" + } + }, + "#header-field-rationale": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "14. Why Use an End-to-End Header Field?", + "url": "https://httpwg.org/specs/rfc9218.html#header-field-rationale" + } + }, + "#iana-considerations": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "16. IANA Considerations", + "url": "https://httpwg.org/specs/rfc9218.html#iana-considerations" + } + }, + "#incremental": { + "current": { + "number": "4.2", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Incremental", + "url": "https://httpwg.org/specs/rfc9218.html#incremental" + } + }, + "#intentional-unfairness": { + "current": { + "number": "13.3", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Intentional Introduction of Unfairness", + "url": "https://httpwg.org/specs/rfc9218.html#intentional-unfairness" + } + }, + "#intermediaries-with-multiple-backend-connections": { + "current": { + "number": "10.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Intermediaries with Multiple Backend Connections", + "url": "https://httpwg.org/specs/rfc9218.html#intermediaries-with-multiple-backend-connections" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Introduction", + "url": "https://httpwg.org/specs/rfc9218.html#introduction" + } + }, + "#merging": { + "current": { + "number": "8", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Merging Client- and Server-Driven Priority Parameters", + "url": "https://httpwg.org/specs/rfc9218.html#merging" + } + }, + "#motivation": { + "current": { + "number": "2", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Motivation for Replacing RFC 7540 Stream Priorities", + "url": "https://httpwg.org/specs/rfc9218.html#motivation" + } + }, + "#new-parameters": { + "current": { + "number": "4.3", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Defining New Priority Parameters", + "url": "https://httpwg.org/specs/rfc9218.html#new-parameters" + } + }, + "#notational-conventions": { + "current": { + "number": "1.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Notational Conventions", + "url": "https://httpwg.org/specs/rfc9218.html#notational-conventions" + } + }, + "#parameters": { + "current": { + "number": "4", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Priority Parameters", + "url": "https://httpwg.org/specs/rfc9218.html#parameters" + } + }, + "#register": { + "current": { + "number": "4.3.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Registration", + "url": "https://httpwg.org/specs/rfc9218.html#register" + } + }, + "#reprioritization": { + "current": { + "number": "6", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Reprioritization", + "url": "https://httpwg.org/specs/rfc9218.html#reprioritization" + } + }, + "#retransmission-scheduling": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "12. Retransmission Scheduling", + "url": "https://httpwg.org/specs/rfc9218.html#retransmission-scheduling" + } + }, + "#rfc.abstract": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Abstract", + "url": "https://httpwg.org/specs/rfc9218.html#rfc.abstract" + } + }, + "#rfc.section.17": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "17. References", + "url": "https://httpwg.org/specs/rfc9218.html#rfc.section.17" + } + }, + "#rfc.section.17.1": { + "current": { + "number": "17.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Normative References", + "url": "https://httpwg.org/specs/rfc9218.html#rfc.section.17.1" + } + }, + "#rfc.section.17.2": { + "current": { + "number": "17.2", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Informative References", + "url": "https://httpwg.org/specs/rfc9218.html#rfc.section.17.2" + } + }, + "#security-considerations": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "15. Security Considerations", + "url": "https://httpwg.org/specs/rfc9218.html#security-considerations" + } + }, + "#server-scheduling": { + "current": { + "number": "", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "10. Server Scheduling", + "url": "https://httpwg.org/specs/rfc9218.html#server-scheduling" + } + }, + "#urgency": { + "current": { + "number": "4.1", + "spec": "Extensible Prioritization Scheme for HTTP", + "text": "Urgency", + "url": "https://httpwg.org/specs/rfc9218.html#urgency" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-rfc9530.json b/bikeshed/spec-data/readonly/headings/headings-rfc9530.json new file mode 100644 index 0000000000..d0ba23a777 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-rfc9530.json @@ -0,0 +1,378 @@ +{ + "#acknowledgements": { + "current": { + "number": "", + "spec": "Digest Fields", + "text": "Acknowledgements", + "url": "https://httpwg.org/specs/rfc9530.html#acknowledgements" + } + }, + "#algorithms": { + "current": { + "number": "5", + "spec": "Digest Fields", + "text": "Hash Algorithm Considerations and Registration", + "url": "https://httpwg.org/specs/rfc9530.html#algorithms" + } + }, + "#client-and-server-provide-full-representation-data": { + "current": { + "number": "B.4", + "spec": "Digest Fields", + "text": "Client and Server Provide Full Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#client-and-server-provide-full-representation-data" + } + }, + "#client-and-server-provide-full-representation-data-1": { + "current": { + "number": "B.6", + "spec": "Digest Fields", + "text": "Client and Server Provide Full Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#client-and-server-provide-full-representation-data-1" + } + }, + "#client-provides-full-representation-data-server-provides-no-representation-data": { + "current": { + "number": "B.5", + "spec": "Digest Fields", + "text": "Client Provides Full Representation Data and Server Provides No Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#client-provides-full-representation-data-server-provides-no-representation-data" + } + }, + "#concept-overview": { + "current": { + "number": "1.2", + "spec": "Digest Fields", + "text": "Concept Overview", + "url": "https://httpwg.org/specs/rfc9530.html#concept-overview" + } + }, + "#content-digest": { + "current": { + "number": "2", + "spec": "Digest Fields", + "text": "The Content-Digest Field", + "url": "https://httpwg.org/specs/rfc9530.html#content-digest" + } + }, + "#deprecate-the-hypertext-transfer-protocol-http-digest-algorithm-values-registry": { + "current": { + "number": "7.3", + "spec": "Digest Fields", + "text": "Deprecate the Hypertext Transfer Protocol (HTTP) Digest Algorithm Values Registry", + "url": "https://httpwg.org/specs/rfc9530.html#deprecate-the-hypertext-transfer-protocol-http-digest-algorithm-values-registry" + } + }, + "#digest-and-content-location": { + "current": { + "number": "3.2", + "spec": "Digest Fields", + "text": "Repr-Digest and Content-Location in Responses", + "url": "https://httpwg.org/specs/rfc9530.html#digest-and-content-location" + } + }, + "#digest-with-patch": { + "current": { + "number": "B.9", + "spec": "Digest Fields", + "text": "Digest with PATCH", + "url": "https://httpwg.org/specs/rfc9530.html#digest-with-patch" + } + }, + "#document-structure": { + "current": { + "number": "1.1", + "spec": "Digest Fields", + "text": "Document Structure", + "url": "https://httpwg.org/specs/rfc9530.html#document-structure" + } + }, + "#end-to-end-integrity": { + "current": { + "number": "6.2", + "spec": "Digest Fields", + "text": "End-to-End Integrity", + "url": "https://httpwg.org/specs/rfc9530.html#end-to-end-integrity" + } + }, + "#error-responses": { + "current": { + "number": "B.10", + "spec": "Digest Fields", + "text": "Error Responses", + "url": "https://httpwg.org/specs/rfc9530.html#error-responses" + } + }, + "#establish-hash-algorithm-registry": { + "current": { + "number": "7.2", + "spec": "Digest Fields", + "text": "Creation of the Hash Algorithms for HTTP Digest Fields Registry", + "url": "https://httpwg.org/specs/rfc9530.html#establish-hash-algorithm-registry" + } + }, + "#ex-server-selects-unsupported-algorithm": { + "current": { + "number": "C.2", + "spec": "Digest Fields", + "text": "Server Selects Algorithm Unsupported by Client", + "url": "https://httpwg.org/specs/rfc9530.html#ex-server-selects-unsupported-algorithm" + } + }, + "#example-full-representation": { + "current": { + "number": "B.1", + "spec": "Digest Fields", + "text": "Server Returns Full Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#example-full-representation" + } + }, + "#examples-solicited": { + "current": { + "number": "C", + "spec": "Digest Fields", + "text": "Examples of Want-Repr-Digest Solicited Digest", + "url": "https://httpwg.org/specs/rfc9530.html#examples-solicited" + } + }, + "#examples-unsolicited": { + "current": { + "number": "B", + "spec": "Digest Fields", + "text": "Examples of Unsolicited Digest", + "url": "https://httpwg.org/specs/rfc9530.html#examples-unsolicited" + } + }, + "#http-field-name-registration": { + "current": { + "number": "7.1", + "spec": "Digest Fields", + "text": "HTTP Field Name Registration", + "url": "https://httpwg.org/specs/rfc9530.html#http-field-name-registration" + } + }, + "#iana-considerations": { + "current": { + "number": "7", + "spec": "Digest Fields", + "text": "IANA Considerations", + "url": "https://httpwg.org/specs/rfc9530.html#iana-considerations" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Digest Fields", + "text": "Introduction", + "url": "https://httpwg.org/specs/rfc9530.html#introduction" + } + }, + "#migrating": { + "current": { + "number": "E", + "spec": "Digest Fields", + "text": "Migrating from RFC 3230", + "url": "https://httpwg.org/specs/rfc9530.html#migrating" + } + }, + "#notational-conventions": { + "current": { + "number": "1.4", + "spec": "Digest Fields", + "text": "Notational Conventions", + "url": "https://httpwg.org/specs/rfc9530.html#notational-conventions" + } + }, + "#obsolete-3230": { + "current": { + "number": "1.3", + "spec": "Digest Fields", + "text": "Obsoleting RFC 3230", + "url": "https://httpwg.org/specs/rfc9530.html#obsolete-3230" + } + }, + "#post-not-request-uri": { + "current": { + "number": "B.7", + "spec": "Digest Fields", + "text": "POST Response Does Not Reference the Request URI", + "url": "https://httpwg.org/specs/rfc9530.html#post-not-request-uri" + } + }, + "#post-referencing-status": { + "current": { + "number": "B.8", + "spec": "Digest Fields", + "text": "POST Response Describes the Request Status", + "url": "https://httpwg.org/specs/rfc9530.html#post-referencing-status" + } + }, + "#representation-digest": { + "current": { + "number": "3", + "spec": "Digest Fields", + "text": "The Repr-Digest Field", + "url": "https://httpwg.org/specs/rfc9530.html#representation-digest" + } + }, + "#resource-representation": { + "current": { + "number": "A", + "spec": "Digest Fields", + "text": "Resource Representation and Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#resource-representation" + } + }, + "#rfc.abstract": { + "current": { + "number": "", + "spec": "Digest Fields", + "text": "Abstract", + "url": "https://httpwg.org/specs/rfc9530.html#rfc.abstract" + } + }, + "#rfc.section.8": { + "current": { + "number": "8", + "spec": "Digest Fields", + "text": "References", + "url": "https://httpwg.org/specs/rfc9530.html#rfc.section.8" + } + }, + "#rfc.section.8.1": { + "current": { + "number": "8.1", + "spec": "Digest Fields", + "text": "Normative References", + "url": "https://httpwg.org/specs/rfc9530.html#rfc.section.8.1" + } + }, + "#rfc.section.8.2": { + "current": { + "number": "8.2", + "spec": "Digest Fields", + "text": "Informative References", + "url": "https://httpwg.org/specs/rfc9530.html#rfc.section.8.2" + } + }, + "#sample-digest-values": { + "current": { + "number": "D", + "spec": "Digest Fields", + "text": "Sample Digest Values", + "url": "https://httpwg.org/specs/rfc9530.html#sample-digest-values" + } + }, + "#sec-agility": { + "current": { + "number": "6.6", + "spec": "Digest Fields", + "text": "Algorithm Agility", + "url": "https://httpwg.org/specs/rfc9530.html#sec-agility" + } + }, + "#sec-exhaustion": { + "current": { + "number": "6.7", + "spec": "Digest Fields", + "text": "Resource Exhaustion", + "url": "https://httpwg.org/specs/rfc9530.html#sec-exhaustion" + } + }, + "#sec-limitations": { + "current": { + "number": "6.1", + "spec": "Digest Fields", + "text": "HTTP Messages Are Not Protected in Full", + "url": "https://httpwg.org/specs/rfc9530.html#sec-limitations" + } + }, + "#security": { + "current": { + "number": "6", + "spec": "Digest Fields", + "text": "Security Considerations", + "url": "https://httpwg.org/specs/rfc9530.html#security" + } + }, + "#server-does-not-support-client-algorithm-and-returns-an-error": { + "current": { + "number": "C.3", + "spec": "Digest Fields", + "text": "Server Does Not Support Client Algorithm and Returns an Error", + "url": "https://httpwg.org/specs/rfc9530.html#server-does-not-support-client-algorithm-and-returns-an-error" + } + }, + "#server-returns-no-representation-data": { + "current": { + "number": "B.2", + "spec": "Digest Fields", + "text": "Server Returns No Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#server-returns-no-representation-data" + } + }, + "#server-returns-partial-representation-data": { + "current": { + "number": "B.3", + "spec": "Digest Fields", + "text": "Server Returns Partial Representation Data", + "url": "https://httpwg.org/specs/rfc9530.html#server-returns-partial-representation-data" + } + }, + "#server-selects-clients-least-preferred-algorithm": { + "current": { + "number": "C.1", + "spec": "Digest Fields", + "text": "Server Selects Client's Least Preferred Algorithm", + "url": "https://httpwg.org/specs/rfc9530.html#server-selects-clients-least-preferred-algorithm" + } + }, + "#state-changing-requests": { + "current": { + "number": "3.1", + "spec": "Digest Fields", + "text": "Using Repr-Digest in State-Changing Requests", + "url": "https://httpwg.org/specs/rfc9530.html#state-changing-requests" + } + }, + "#usage-in-signatures": { + "current": { + "number": "6.3", + "spec": "Digest Fields", + "text": "Usage in Signatures", + "url": "https://httpwg.org/specs/rfc9530.html#usage-in-signatures" + } + }, + "#usage-in-trailer-fields": { + "current": { + "number": "6.4", + "spec": "Digest Fields", + "text": "Usage in Trailer Fields", + "url": "https://httpwg.org/specs/rfc9530.html#usage-in-trailer-fields" + } + }, + "#use-with-trailer-fields-and-transfer-coding": { + "current": { + "number": "B.11", + "spec": "Digest Fields", + "text": "Use with Trailer Fields and Transfer Coding", + "url": "https://httpwg.org/specs/rfc9530.html#use-with-trailer-fields-and-transfer-coding" + } + }, + "#variations-within-content-encoding": { + "current": { + "number": "6.5", + "spec": "Digest Fields", + "text": "Variations within Content-Encoding", + "url": "https://httpwg.org/specs/rfc9530.html#variations-within-content-encoding" + } + }, + "#want-fields": { + "current": { + "number": "4", + "spec": "Digest Fields", + "text": "Integrity Preference Fields", + "url": "https://httpwg.org/specs/rfc9530.html#want-fields" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-saa-non-cookie-storage.json b/bikeshed/spec-data/readonly/headings/headings-saa-non-cookie-storage.json new file mode 100644 index 0000000000..d467598132 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-saa-non-cookie-storage.json @@ -0,0 +1,242 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Abstract", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#abstract" + } + }, + "#broadcast-channel": { + "current": { + "number": "2.3.8", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Broadcast Channel", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#broadcast-channel" + } + }, + "#cache-storage": { + "current": { + "number": "2.3.4", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Cache Storage", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#cache-storage" + } + }, + "#document-changes": { + "current": { + "number": "2.1", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Changes to Document", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#document-changes" + } + }, + "#dom-storage": { + "current": { + "number": "2.3.1", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Web storage", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#dom-storage" + } + }, + "#extending-saa-to-non-cookie-storage": { + "current": { + "number": "2", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Extending SAA to non-cookie storage", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#extending-saa-to-non-cookie-storage" + } + }, + "#file-api": { + "current": { + "number": "2.3.7", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "File API", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#file-api" + } + }, + "#file-system": { + "current": { + "number": "2.3.5", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "File System", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#file-system" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "IDL Index", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Index", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Terms defined by reference", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Terms defined by this specification", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#index-defined-here" + } + }, + "#indexed-db": { + "current": { + "number": "2.3.2", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Indexed Database API", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#indexed-db" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Informative References", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Introduction", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Issues Index", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Normative References", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#normative" + } + }, + "#privacy": { + "current": { + "number": "3", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Security & Privacy considerations", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#privacy" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "References", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#references" + } + }, + "#request-storage-access-changes": { + "current": { + "number": "2.2", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Changes to requestStorageAccess()", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#request-storage-access-changes" + } + }, + "#shared-worker": { + "current": { + "number": "2.3.9", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Shared Workers", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#shared-worker" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Status of this document", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#status" + } + }, + "#storage": { + "current": { + "number": "2.3", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Changes to various client-side storage mechanisms", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#storage" + } + }, + "#storage-manager": { + "current": { + "number": "2.3.6", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Storage Manager", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#storage-manager" + } + }, + "#subtitle": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Draft Community Group Report, 5 June 2024", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#subtitle" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Extending Storage Access API (SAA) to non-cookie storage", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Table of Contents", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Conformance", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Document conventions", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#w3c-conventions" + } + }, + "#web-locks": { + "current": { + "number": "2.3.3", + "spec": "Extending Storage Access API to non-cookie storage", + "text": "Web Locks API", + "url": "https://privacycg.github.io/saa-non-cookie-storage/#web-locks" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sanitizer-api.json b/bikeshed/spec-data/readonly/headings/headings-sanitizer-api.json index b10504c71c..4791e9dc77 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sanitizer-api.json +++ b/bikeshed/spec-data/readonly/headings/headings-sanitizer-api.json @@ -15,28 +15,20 @@ "url": "https://wicg.github.io/sanitizer-api/#ack" } }, - "#algorithms": { + "#alg-support": { "current": { - "number": "3", - "spec": "HTML Sanitizer API", - "text": "Algorithms", - "url": "https://wicg.github.io/sanitizer-api/#algorithms" - } - }, - "#api-algorithms": { - "current": { - "number": "3.1", + "number": "3.3", "spec": "HTML Sanitizer API", - "text": "API Implementation", - "url": "https://wicg.github.io/sanitizer-api/#api-algorithms" + "text": "Supporting Algorithms", + "url": "https://wicg.github.io/sanitizer-api/#alg-support" } }, - "#api-string-handling": { + "#algorithms": { "current": { - "number": "2.2", + "number": "3", "spec": "HTML Sanitizer API", - "text": "String Handling", - "url": "https://wicg.github.io/sanitizer-api/#api-string-handling" + "text": "Algorithms", + "url": "https://wicg.github.io/sanitizer-api/#algorithms" } }, "#api-summary": { @@ -47,38 +39,6 @@ "url": "https://wicg.github.io/sanitizer-api/#api-summary" } }, - "#attr-match-list": { - "current": { - "number": "2.3.1", - "spec": "HTML Sanitizer API", - "text": "Attribute Match Lists", - "url": "https://wicg.github.io/sanitizer-api/#attr-match-list" - } - }, - "#baseline-attributes": { - "current": { - "number": "", - "spec": "HTML Sanitizer API", - "text": "The Baseline Attribute Allow List", - "url": "https://wicg.github.io/sanitizer-api/#baseline-attributes" - } - }, - "#baseline-elements": { - "current": { - "number": "", - "spec": "HTML Sanitizer API", - "text": "The Baseline Element Allow List", - "url": "https://wicg.github.io/sanitizer-api/#baseline-elements" - } - }, - "#builtins-justification": { - "current": { - "number": "", - "spec": "HTML Sanitizer API", - "text": "Built-ins Justification", - "url": "https://wicg.github.io/sanitizer-api/#builtins-justification" - } - }, "#config": { "current": { "number": "2.3", @@ -87,36 +47,20 @@ "url": "https://wicg.github.io/sanitizer-api/#config" } }, - "#configuration": { - "current": { - "number": "3.4", - "spec": "HTML Sanitizer API", - "text": "Matching Against The Configuration", - "url": "https://wicg.github.io/sanitizer-api/#configuration" - } - }, - "#constants": { - "current": { - "number": "", - "spec": "HTML Sanitizer API", - "text": "Appendix A: Built-in Constants", - "url": "https://wicg.github.io/sanitizer-api/#constants" - } - }, - "#default-configuration-dictionary": { + "#configobject": { "current": { - "number": "", + "number": "2.2", "spec": "HTML Sanitizer API", - "text": "The Default Configuration Dictionary", - "url": "https://wicg.github.io/sanitizer-api/#default-configuration-dictionary" + "text": "SetHTML options and the configuration object.", + "url": "https://wicg.github.io/sanitizer-api/#configobject" } }, - "#defaults": { + "#configuration-processing": { "current": { - "number": "3.5", + "number": "3.2", "spec": "HTML Sanitizer API", - "text": "Baseline and Defaults", - "url": "https://wicg.github.io/sanitizer-api/#defaults" + "text": "Configuration Processing", + "url": "https://wicg.github.io/sanitizer-api/#configuration-processing" } }, "#dom-clobbering": { @@ -143,14 +87,6 @@ "url": "https://wicg.github.io/sanitizer-api/#goals" } }, - "#helper-algorithms": { - "current": { - "number": "3.2", - "spec": "HTML Sanitizer API", - "text": "Helper Definitions", - "url": "https://wicg.github.io/sanitizer-api/#helper-algorithms" - } - }, "#idl-index": { "current": { "number": "", @@ -199,14 +135,6 @@ "url": "https://wicg.github.io/sanitizer-api/#intro" } }, - "#issues-index": { - "current": { - "number": "", - "spec": "HTML Sanitizer API", - "text": "Issues Index", - "url": "https://wicg.github.io/sanitizer-api/#issues-index" - } - }, "#mutated-xss": { "current": { "number": "4.4", @@ -231,12 +159,20 @@ "url": "https://wicg.github.io/sanitizer-api/#references" } }, - "#sanitizer-algorithms": { + "#sanitization": { "current": { - "number": "3.3", + "number": "3.1", "spec": "HTML Sanitizer API", "text": "Sanitization Algorithms", - "url": "https://wicg.github.io/sanitizer-api/#sanitizer-algorithms" + "url": "https://wicg.github.io/sanitizer-api/#sanitization" + } + }, + "#sanitization-defaults": { + "current": { + "number": "3.4", + "spec": "HTML Sanitizer API", + "text": "Defaults", + "url": "https://wicg.github.io/sanitizer-api/#sanitization-defaults" } }, "#sanitizer-api": { @@ -279,46 +215,6 @@ "url": "https://wicg.github.io/sanitizer-api/#status" } }, - "#string-context-case-1": { - "current": { - "number": "1.3.1", - "spec": "HTML Sanitizer API", - "text": "Case 1: Sanitizing With Nodes, Only.", - "url": "https://wicg.github.io/sanitizer-api/#string-context-case-1" - } - }, - "#string-context-case-2": { - "current": { - "number": "1.3.2", - "spec": "HTML Sanitizer API", - "text": "Case 2: Sanitizing a String with Implied Context.", - "url": "https://wicg.github.io/sanitizer-api/#string-context-case-2" - } - }, - "#string-context-case-3": { - "current": { - "number": "1.3.3", - "spec": "HTML Sanitizer API", - "text": "Case 3: Sanitizing a String with a Given Context.", - "url": "https://wicg.github.io/sanitizer-api/#string-context-case-3" - } - }, - "#string-context-case-other": { - "current": { - "number": "1.3.4", - "spec": "HTML Sanitizer API", - "text": "The Other Case", - "url": "https://wicg.github.io/sanitizer-api/#string-context-case-other" - } - }, - "#strings": { - "current": { - "number": "1.3", - "spec": "HTML Sanitizer API", - "text": "The Trouble With Strings", - "url": "https://wicg.github.io/sanitizer-api/#strings" - } - }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-scheduling-apis.json b/bikeshed/spec-data/readonly/headings/headings-scheduling-apis.json index 9cc1966de8..b6df0a753b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-scheduling-apis.json +++ b/bikeshed/spec-data/readonly/headings/headings-scheduling-apis.json @@ -127,6 +127,22 @@ "url": "https://wicg.github.io/scheduling-apis/#sec-patches-html-event-loop-processing" } }, + "#sec-patches-html-hostcalljobcallback": { + "current": { + "number": "4.1.5", + "spec": "Prioritized Task Scheduling", + "text": "HostCallJobCallback(callback, V, argumentsList)", + "url": "https://wicg.github.io/scheduling-apis/#sec-patches-html-hostcalljobcallback" + } + }, + "#sec-patches-html-hostmakejobcallback": { + "current": { + "number": "4.1.4", + "spec": "Prioritized Task Scheduling", + "text": "HostMakeJobCallback(callable)", + "url": "https://wicg.github.io/scheduling-apis/#sec-patches-html-hostmakejobcallback" + } + }, "#sec-patches-html-windoworworkerglobalscope": { "current": { "number": "4.1.1", @@ -135,6 +151,22 @@ "url": "https://wicg.github.io/scheduling-apis/#sec-patches-html-windoworworkerglobalscope" } }, + "#sec-patches-invoke-idle-callbacks": { + "current": { + "number": "4.2.1", + "spec": "Prioritized Task Scheduling", + "text": "Invoke idle callbacks algorithm", + "url": "https://wicg.github.io/scheduling-apis/#sec-patches-invoke-idle-callbacks" + } + }, + "#sec-patches-requestidlecallback": { + "current": { + "number": "4.2", + "spec": "Prioritized Task Scheduling", + "text": "requestIdleCallback()", + "url": "https://wicg.github.io/scheduling-apis/#sec-patches-requestidlecallback" + } + }, "#sec-privacy": { "current": { "number": "6", @@ -159,12 +191,12 @@ "url": "https://wicg.github.io/scheduling-apis/#sec-scheduler" } }, - "#sec-scheduler-alg-scheduling-tasks": { + "#sec-scheduler-alg-scheduling-tasks-and-continuations": { "current": { "number": "2.4.2", "spec": "Prioritized Task Scheduling", - "text": "Scheduling Tasks", - "url": "https://wicg.github.io/scheduling-apis/#sec-scheduler-alg-scheduling-tasks" + "text": "Scheduling Tasks and Continuations", + "url": "https://wicg.github.io/scheduling-apis/#sec-scheduler-alg-scheduling-tasks-and-continuations" } }, "#sec-scheduler-alg-select-next-task": { @@ -175,12 +207,12 @@ "url": "https://wicg.github.io/scheduling-apis/#sec-scheduler-alg-select-next-task" } }, - "#sec-scheduling-tasks": { + "#sec-scheduling-tasks-and-continuations": { "current": { "number": "2", "spec": "Prioritized Task Scheduling", - "text": "Scheduling Tasks", - "url": "https://wicg.github.io/scheduling-apis/#sec-scheduling-tasks" + "text": "Scheduling Tasks and Continuations", + "url": "https://wicg.github.io/scheduling-apis/#sec-scheduling-tasks-and-continuations" } }, "#sec-scheduling-tasks-definitions": { @@ -243,7 +275,7 @@ "current": { "number": "2.1", "spec": "Prioritized Task Scheduling", - "text": "Task Priorities", + "text": "Task and Continuation Priorities", "url": "https://wicg.github.io/scheduling-apis/#sec-task-priorities" } }, @@ -263,6 +295,14 @@ "url": "https://wicg.github.io/scheduling-apis/#sec-task-signal" } }, + "#sec-task-signal-garbage-collection": { + "current": { + "number": "3.3.1", + "spec": "Prioritized Task Scheduling", + "text": "Garbage Collection", + "url": "https://wicg.github.io/scheduling-apis/#sec-task-signal-garbage-collection" + } + }, "#status": { "current": { "number": "", @@ -295,14 +335,6 @@ "url": "https://wicg.github.io/scheduling-apis/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Prioritized Task Scheduling", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/scheduling-apis/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-screen-capture.json b/bikeshed/spec-data/readonly/headings/headings-screen-capture.json index 0be33e04e7..f13c136b31 100644 --- a/bikeshed/spec-data/readonly/headings/headings-screen-capture.json +++ b/bikeshed/spec-data/readonly/headings/headings-screen-capture.json @@ -155,13 +155,13 @@ }, "#cursorcaptureconstraint": { "current": { - "number": "5.4.13", + "number": "5.4.14", "spec": "Screen Capture", "text": "CursorCaptureConstraint", "url": "https://w3c.github.io/mediacapture-screen-share/#cursorcaptureconstraint" }, "snapshot": { - "number": "5.4.13", + "number": "5.4.14", "spec": "Screen Capture", "text": "CursorCaptureConstraint", "url": "https://www.w3.org/TR/screen-capture/#cursorcaptureconstraint" @@ -197,13 +197,13 @@ }, "#displaycapturesurfacetype": { "current": { - "number": "5.4.12", + "number": "5.4.13", "spec": "Screen Capture", "text": "DisplayCaptureSurfaceType", "url": "https://w3c.github.io/mediacapture-screen-share/#displaycapturesurfacetype" }, "snapshot": { - "number": "5.4.12", + "number": "5.4.13", "spec": "Screen Capture", "text": "DisplayCaptureSurfaceType", "url": "https://www.w3.org/TR/screen-capture/#displaycapturesurfacetype" @@ -211,13 +211,13 @@ }, "#displaymediastreamoptions": { "current": { - "number": "5.4.7", + "number": "5.4.8", "spec": "Screen Capture", "text": "DisplayMediaStreamOptions", "url": "https://w3c.github.io/mediacapture-screen-share/#displaymediastreamoptions" }, "snapshot": { - "number": "5.4.7", + "number": "5.4.8", "spec": "Screen Capture", "text": "DisplayMediaStreamOptions", "url": "https://www.w3.org/TR/screen-capture/#displaymediastreamoptions" @@ -267,13 +267,13 @@ }, "#extensions-to-mediatrackcapabilities": { "current": { - "number": "5.4.11", + "number": "5.4.12", "spec": "Screen Capture", "text": "Extensions to MediaTrackCapabilities", "url": "https://w3c.github.io/mediacapture-screen-share/#extensions-to-mediatrackcapabilities" }, "snapshot": { - "number": "5.4.11", + "number": "5.4.12", "spec": "Screen Capture", "text": "Extensions to MediaTrackCapabilities", "url": "https://www.w3.org/TR/screen-capture/#extensions-to-mediatrackcapabilities" @@ -281,13 +281,13 @@ }, "#extensions-to-mediatrackconstraintset": { "current": { - "number": "5.4.9", + "number": "5.4.10", "spec": "Screen Capture", "text": "Extensions to MediaTrackConstraintSet", "url": "https://w3c.github.io/mediacapture-screen-share/#extensions-to-mediatrackconstraintset" }, "snapshot": { - "number": "5.4.9", + "number": "5.4.10", "spec": "Screen Capture", "text": "Extensions to MediaTrackConstraintSet", "url": "https://www.w3.org/TR/screen-capture/#extensions-to-mediatrackconstraintset" @@ -295,13 +295,13 @@ }, "#extensions-to-mediatracksettings": { "current": { - "number": "5.4.10", + "number": "5.4.11", "spec": "Screen Capture", "text": "Extensions to MediaTrackSettings", "url": "https://w3c.github.io/mediacapture-screen-share/#extensions-to-mediatracksettings" }, "snapshot": { - "number": "5.4.10", + "number": "5.4.11", "spec": "Screen Capture", "text": "Extensions to MediaTrackSettings", "url": "https://www.w3.org/TR/screen-capture/#extensions-to-mediatracksettings" @@ -309,13 +309,13 @@ }, "#extensions-to-mediatracksupportedconstraints": { "current": { - "number": "5.4.8", + "number": "5.4.9", "spec": "Screen Capture", "text": "Extensions to MediaTrackSupportedConstraints", "url": "https://w3c.github.io/mediacapture-screen-share/#extensions-to-mediatracksupportedconstraints" }, "snapshot": { - "number": "5.4.8", + "number": "5.4.9", "spec": "Screen Capture", "text": "Extensions to MediaTrackSupportedConstraints", "url": "https://www.w3.org/TR/screen-capture/#extensions-to-mediatracksupportedconstraints" @@ -377,6 +377,20 @@ "url": "https://www.w3.org/TR/screen-capture/#mediadevices-additions" } }, + "#monitortypesurfacesenum": { + "current": { + "number": "5.4.7", + "spec": "Screen Capture", + "text": "MonitorTypeSurfacesEnum", + "url": "https://w3c.github.io/mediacapture-screen-share/#monitortypesurfacesenum" + }, + "snapshot": { + "number": "5.4.7", + "spec": "Screen Capture", + "text": "MonitorTypeSurfacesEnum", + "url": "https://www.w3.org/TR/screen-capture/#monitortypesurfacesenum" + } + }, "#normative-references": { "current": { "number": "A.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-screen-orientation.json b/bikeshed/spec-data/readonly/headings/headings-screen-orientation.json index 704967a9cf..4bfe0908b6 100644 --- a/bikeshed/spec-data/readonly/headings/headings-screen-orientation.json +++ b/bikeshed/spec-data/readonly/headings/headings-screen-orientation.json @@ -43,13 +43,13 @@ }, "#angle-attribute": { "current": { - "number": "5.5", + "number": "5.6", "spec": "Screen Orientation", "text": "angle attribute", "url": "https://w3c.github.io/screen-orientation/#angle-attribute" }, "snapshot": { - "number": "5.5", + "number": "5.6", "spec": "Screen Orientation", "text": "angle attribute", "url": "https://www.w3.org/TR/screen-orientation/#angle-attribute" @@ -83,6 +83,20 @@ "url": "https://www.w3.org/TR/screen-orientation/#appmanifest-interaction" } }, + "#common-safety-checks": { + "current": { + "number": "5.4", + "spec": "Screen Orientation", + "text": "Common Safety Checks", + "url": "https://w3c.github.io/screen-orientation/#common-safety-checks" + }, + "snapshot": { + "number": "5.4", + "spec": "Screen Orientation", + "text": "Common Safety Checks", + "url": "https://www.w3.org/TR/screen-orientation/#common-safety-checks" + } + }, "#concepts": { "current": { "number": "2", @@ -337,13 +351,13 @@ }, "#onchange-event-handler-attribute": { "current": { - "number": "5.6", + "number": "5.7", "spec": "Screen Orientation", "text": "onchange event handler attribute", "url": "https://w3c.github.io/screen-orientation/#onchange-event-handler-attribute" }, "snapshot": { - "number": "5.6", + "number": "5.7", "spec": "Screen Orientation", "text": "onchange event handler attribute", "url": "https://www.w3.org/TR/screen-orientation/#onchange-event-handler-attribute" @@ -505,13 +519,13 @@ }, "#type-attribute": { "current": { - "number": "5.4", + "number": "5.5", "spec": "Screen Orientation", "text": "type attribute", "url": "https://w3c.github.io/screen-orientation/#type-attribute" }, "snapshot": { - "number": "5.4", + "number": "5.5", "spec": "Screen Orientation", "text": "type attribute", "url": "https://www.w3.org/TR/screen-orientation/#type-attribute" diff --git a/bikeshed/spec-data/readonly/headings/headings-screen-wake-lock.json b/bikeshed/spec-data/readonly/headings/headings-screen-wake-lock.json index 56ea989c5a..60c4582b21 100644 --- a/bikeshed/spec-data/readonly/headings/headings-screen-wake-lock.json +++ b/bikeshed/spec-data/readonly/headings/headings-screen-wake-lock.json @@ -1,13 +1,13 @@ { "#acknowledgments": { "current": { - "number": "B", + "number": "A", "spec": "Screen Wake Lock API", "text": "Acknowledgments", "url": "https://w3c.github.io/screen-wake-lock/#acknowledgments" }, "snapshot": { - "number": "B", + "number": "A", "spec": "Screen Wake Lock API", "text": "Acknowledgments", "url": "https://www.w3.org/TR/screen-wake-lock/#acknowledgments" @@ -43,13 +43,13 @@ }, "#changes": { "current": { - "number": "C", + "number": "B", "spec": "Screen Wake Lock API", "text": "Changes", "url": "https://w3c.github.io/screen-wake-lock/#changes" }, "snapshot": { - "number": "C", + "number": "B", "spec": "Screen Wake Lock API", "text": "Changes", "url": "https://www.w3.org/TR/screen-wake-lock/#changes" @@ -57,13 +57,13 @@ }, "#changes-20171214": { "current": { - "number": "C.1", + "number": "B.1", "spec": "Screen Wake Lock API", "text": "Changes since the 14 December 2017 CR", "url": "https://w3c.github.io/screen-wake-lock/#changes-20171214" }, "snapshot": { - "number": "C.1", + "number": "B.1", "spec": "Screen Wake Lock API", "text": "Changes since the 14 December 2017 CR", "url": "https://www.w3.org/TR/screen-wake-lock/#changes-20171214" @@ -183,27 +183,69 @@ }, "#idl-index": { "current": { - "number": "A", + "number": "D", "spec": "Screen Wake Lock API", "text": "IDL Index", "url": "https://w3c.github.io/screen-wake-lock/#idl-index" }, "snapshot": { - "number": "A", + "number": "D", "spec": "Screen Wake Lock API", "text": "IDL Index", "url": "https://www.w3.org/TR/screen-wake-lock/#idl-index" } }, + "#index": { + "current": { + "number": "C", + "spec": "Screen Wake Lock API", + "text": "Index", + "url": "https://w3c.github.io/screen-wake-lock/#index" + }, + "snapshot": { + "number": "C", + "spec": "Screen Wake Lock API", + "text": "Index", + "url": "https://www.w3.org/TR/screen-wake-lock/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "C.2", + "spec": "Screen Wake Lock API", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/screen-wake-lock/#index-defined-elsewhere" + }, + "snapshot": { + "number": "C.2", + "spec": "Screen Wake Lock API", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/screen-wake-lock/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "C.1", + "spec": "Screen Wake Lock API", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/screen-wake-lock/#index-defined-here" + }, + "snapshot": { + "number": "C.1", + "spec": "Screen Wake Lock API", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/screen-wake-lock/#index-defined-here" + } + }, "#informative-references": { "current": { - "number": "D.2", + "number": "E.2", "spec": "Screen Wake Lock API", "text": "Informative references", "url": "https://w3c.github.io/screen-wake-lock/#informative-references" }, "snapshot": { - "number": "D.2", + "number": "E.2", "spec": "Screen Wake Lock API", "text": "Informative references", "url": "https://www.w3.org/TR/screen-wake-lock/#informative-references" @@ -267,13 +309,13 @@ }, "#normative-references": { "current": { - "number": "D.1", + "number": "E.1", "spec": "Screen Wake Lock API", "text": "Normative references", "url": "https://w3c.github.io/screen-wake-lock/#normative-references" }, "snapshot": { - "number": "D.1", + "number": "E.1", "spec": "Screen Wake Lock API", "text": "Normative references", "url": "https://www.w3.org/TR/screen-wake-lock/#normative-references" @@ -323,13 +365,13 @@ }, "#references": { "current": { - "number": "D", + "number": "E", "spec": "Screen Wake Lock API", "text": "References", "url": "https://w3c.github.io/screen-wake-lock/#references" }, "snapshot": { - "number": "D", + "number": "E", "spec": "Screen Wake Lock API", "text": "References", "url": "https://www.w3.org/TR/screen-wake-lock/#references" diff --git a/bikeshed/spec-data/readonly/headings/headings-scroll-animations-1.json b/bikeshed/spec-data/readonly/headings/headings-scroll-animations-1.json index d3242e5b46..62208d21ae 100644 --- a/bikeshed/spec-data/readonly/headings/headings-scroll-animations-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-scroll-animations-1.json @@ -2,55 +2,155 @@ "#abstract": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Abstract", "url": "https://drafts.csswg.org/scroll-animations-1/#abstract" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Abstract", "url": "https://www.w3.org/TR/scroll-animations-1/#abstract" } }, + "#animation-range": { + "current": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Specifying an Animation’s Timeline Range: the animation-range shorthand", + "url": "https://drafts.csswg.org/scroll-animations-1/#animation-range" + }, + "snapshot": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Specifying an Animation’s Timeline Range: the animation-range shorthand", + "url": "https://www.w3.org/TR/scroll-animations-1/#animation-range" + } + }, + "#animation-range-end": { + "current": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Specifying an Animation’s Timeline Range End: the animation-range-end property", + "url": "https://drafts.csswg.org/scroll-animations-1/#animation-range-end" + }, + "snapshot": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Specifying an Animation’s Timeline Range End: the animation-range-end property", + "url": "https://www.w3.org/TR/scroll-animations-1/#animation-range-end" + } + }, + "#animation-range-start": { + "current": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Specifying an Animation’s Timeline Range Start: the animation-range-start property", + "url": "https://drafts.csswg.org/scroll-animations-1/#animation-range-start" + }, + "snapshot": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Specifying an Animation’s Timeline Range Start: the animation-range-start property", + "url": "https://www.w3.org/TR/scroll-animations-1/#animation-range-start" + } + }, "#async-scrolling": { "current": { "number": "1.2", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Relationship to asynchronous scrolling", "url": "https://drafts.csswg.org/scroll-animations-1/#async-scrolling" }, "snapshot": { "number": "1.2", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Relationship to asynchronous scrolling", "url": "https://www.w3.org/TR/scroll-animations-1/#async-scrolling" } }, - "#avoiding-cycles": { + "#changes": { + "current": { + "number": "8", + "spec": "Scroll-driven Animations", + "text": "Changes", + "url": "https://drafts.csswg.org/scroll-animations-1/#changes" + }, + "snapshot": { + "number": "8", + "spec": "Scroll-driven Animations", + "text": "Changes", + "url": "https://www.w3.org/TR/scroll-animations-1/#changes" + } + }, + "#event-loop": { + "current": { + "number": "5.1", + "spec": "Scroll-driven Animations", + "text": "HTML Processing Model: Event loop", + "url": "https://drafts.csswg.org/scroll-animations-1/#event-loop" + } + }, + "#events": { + "current": { + "number": "4.3", + "spec": "Scroll-driven Animations", + "text": "Animation Events", + "url": "https://drafts.csswg.org/scroll-animations-1/#events" + }, + "snapshot": { + "number": "4.3", + "spec": "Scroll-driven Animations", + "text": "Animation Events", + "url": "https://www.w3.org/TR/scroll-animations-1/#events" + } + }, + "#finite-attachment": { + "current": { + "number": "4.1", + "spec": "Scroll-driven Animations", + "text": "Finite Timeline Calculations", + "url": "https://drafts.csswg.org/scroll-animations-1/#finite-attachment" + }, + "snapshot": { + "number": "4.1", + "spec": "Scroll-driven Animations", + "text": "Finite Timeline Calculations", + "url": "https://www.w3.org/TR/scroll-animations-1/#finite-attachment" + } + }, + "#frames": { "current": { "number": "5", - "spec": "Scroll-linked Animations", - "text": "Avoiding cycles with layout", - "url": "https://drafts.csswg.org/scroll-animations-1/#avoiding-cycles" + "spec": "Scroll-driven Animations", + "text": "Frame Calculation Details", + "url": "https://drafts.csswg.org/scroll-animations-1/#frames" }, "snapshot": { "number": "5", - "spec": "Scroll-linked Animations", - "text": "Avoiding cycles with layout", - "url": "https://www.w3.org/TR/scroll-animations-1/#avoiding-cycles" + "spec": "Scroll-driven Animations", + "text": "Frame Calculation Details", + "url": "https://www.w3.org/TR/scroll-animations-1/#frames" + } + }, + "#html-processing-model-event-loop": { + "snapshot": { + "number": "5.1", + "spec": "Scroll-driven Animations", + "text": "HTML Processing Model: Event loop", + "url": "https://www.w3.org/TR/scroll-animations-1/#html-processing-model-event-loop" } }, "#idl-index": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "IDL Index", "url": "https://drafts.csswg.org/scroll-animations-1/#idl-index" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "IDL Index", "url": "https://www.w3.org/TR/scroll-animations-1/#idl-index" } @@ -58,13 +158,13 @@ "#index": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Index", "url": "https://drafts.csswg.org/scroll-animations-1/#index" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Index", "url": "https://www.w3.org/TR/scroll-animations-1/#index" } @@ -72,13 +172,13 @@ "#index-defined-elsewhere": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/scroll-animations-1/#index-defined-elsewhere" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Terms defined by reference", "url": "https://www.w3.org/TR/scroll-animations-1/#index-defined-elsewhere" } @@ -86,13 +186,13 @@ "#index-defined-here": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/scroll-animations-1/#index-defined-here" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Terms defined by this specification", "url": "https://www.w3.org/TR/scroll-animations-1/#index-defined-here" } @@ -100,13 +200,13 @@ "#informative": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Informative References", "url": "https://drafts.csswg.org/scroll-animations-1/#informative" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Informative References", "url": "https://www.w3.org/TR/scroll-animations-1/#informative" } @@ -114,13 +214,13 @@ "#intro": { "current": { "number": "1", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Introduction", "url": "https://drafts.csswg.org/scroll-animations-1/#intro" }, "snapshot": { "number": "1", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Introduction", "url": "https://www.w3.org/TR/scroll-animations-1/#intro" } @@ -128,13 +228,13 @@ "#issues-index": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Issues Index", "url": "https://drafts.csswg.org/scroll-animations-1/#issues-index" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Issues Index", "url": "https://www.w3.org/TR/scroll-animations-1/#issues-index" } @@ -142,57 +242,63 @@ "#named-range-animation-declaration": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Attaching Animations to Timeline Ranges", "url": "https://drafts.csswg.org/scroll-animations-1/#named-range-animation-declaration" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Attaching Animations to Timeline Ranges", "url": "https://www.w3.org/TR/scroll-animations-1/#named-range-animation-declaration" } }, "#named-range-get-time": { - "current": { - "number": "", - "spec": "Scroll-linked Animations", - "text": "Reporting Timeline Range Progress: the getCurrentTime() method", - "url": "https://drafts.csswg.org/scroll-animations-1/#named-range-get-time" - } - }, - "#named-range-getTime": { "snapshot": { "number": "", - "spec": "Scroll-linked Animations", - "text": "Reporting Timeline Range Progress: the getTime() method", - "url": "https://www.w3.org/TR/scroll-animations-1/#named-range-getTime" + "spec": "Scroll-driven Animations", + "text": "Reporting Timeline Range Progress: the getCurrentTime() method", + "url": "https://www.w3.org/TR/scroll-animations-1/#named-range-get-time" } }, "#named-range-keyframes": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Named Timeline Range Keyframe Selectors", "url": "https://drafts.csswg.org/scroll-animations-1/#named-range-keyframes" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Named Timeline Range Keyframe Selectors", "url": "https://www.w3.org/TR/scroll-animations-1/#named-range-keyframes" } }, + "#named-ranges": { + "current": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Named Timeline Ranges", + "url": "https://drafts.csswg.org/scroll-animations-1/#named-ranges" + }, + "snapshot": { + "number": "", + "spec": "Scroll-driven Animations", + "text": "Named Timeline Ranges", + "url": "https://www.w3.org/TR/scroll-animations-1/#named-ranges" + } + }, "#normative": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Normative References", "url": "https://drafts.csswg.org/scroll-animations-1/#normative" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Normative References", "url": "https://www.w3.org/TR/scroll-animations-1/#normative" } @@ -200,27 +306,41 @@ "#other-specs": { "current": { "number": "1.1", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Relationship to other specifications", "url": "https://drafts.csswg.org/scroll-animations-1/#other-specs" }, "snapshot": { "number": "1.1", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Relationship to other specifications", "url": "https://www.w3.org/TR/scroll-animations-1/#other-specs" } }, + "#privacy-considerations": { + "current": { + "number": "6", + "spec": "Scroll-driven Animations", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/scroll-animations-1/#privacy-considerations" + }, + "snapshot": { + "number": "6", + "spec": "Scroll-driven Animations", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/scroll-animations-1/#privacy-considerations" + } + }, "#property-index": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Property Index", "url": "https://drafts.csswg.org/scroll-animations-1/#property-index" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Property Index", "url": "https://www.w3.org/TR/scroll-animations-1/#property-index" } @@ -228,69 +348,97 @@ "#references": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "References", "url": "https://drafts.csswg.org/scroll-animations-1/#references" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "References", "url": "https://www.w3.org/TR/scroll-animations-1/#references" } }, + "#scroll-driven-attachment": { + "current": { + "number": "4", + "spec": "Scroll-driven Animations", + "text": "Attaching Animations to Scroll-driven Timelines", + "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-driven-attachment" + }, + "snapshot": { + "number": "4", + "spec": "Scroll-driven Animations", + "text": "Attaching Animations to Scroll-driven Timelines", + "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-driven-attachment" + } + }, "#scroll-notation": { "current": { - "number": "2.1.1", - "spec": "Scroll-linked Animations", + "number": "2.2.1", + "spec": "Scroll-driven Animations", "text": "The scroll() notation", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-notation" }, "snapshot": { - "number": "2.1.1", - "spec": "Scroll-linked Animations", + "number": "2.2.1", + "spec": "Scroll-driven Animations", "text": "The scroll() notation", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-notation" } }, "#scroll-timeline-axis": { "current": { - "number": "2.2.2", - "spec": "Scroll-linked Animations", + "number": "2.3.2", + "spec": "Scroll-driven Animations", "text": "Axis of a Scroll Progress Timeline: the scroll-timeline-axis property", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timeline-axis" }, "snapshot": { - "number": "2.2.2", - "spec": "Scroll-linked Animations", + "number": "2.3.2", + "spec": "Scroll-driven Animations", "text": "Axis of a Scroll Progress Timeline: the scroll-timeline-axis property", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timeline-axis" } }, "#scroll-timeline-name": { "current": { - "number": "2.2.1", - "spec": "Scroll-linked Animations", + "number": "2.3.1", + "spec": "Scroll-driven Animations", "text": "Naming a Scroll Progress Timeline: the scroll-timeline-name property", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timeline-name" }, "snapshot": { - "number": "2.2.1", - "spec": "Scroll-linked Animations", + "number": "2.3.1", + "spec": "Scroll-driven Animations", "text": "Naming a Scroll Progress Timeline: the scroll-timeline-name property", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timeline-name" } }, + "#scroll-timeline-progress": { + "current": { + "number": "2.1", + "spec": "Scroll-driven Animations", + "text": "Calculating Progress for a Scroll Progress Timeline", + "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timeline-progress" + }, + "snapshot": { + "number": "2.1", + "spec": "Scroll-driven Animations", + "text": "Calculating Progress for a Scroll Progress Timeline", + "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timeline-progress" + } + }, "#scroll-timeline-shorthand": { "current": { - "number": "2.2.3", - "spec": "Scroll-linked Animations", + "number": "2.3.3", + "spec": "Scroll-driven Animations", "text": "Scroll Timeline Shorthand: the scroll-timeline shorthand", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timeline-shorthand" }, "snapshot": { - "number": "2.2.3", - "spec": "Scroll-linked Animations", + "number": "2.3.3", + "spec": "Scroll-driven Animations", "text": "Scroll Timeline Shorthand: the scroll-timeline shorthand", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timeline-shorthand" } @@ -298,125 +446,167 @@ "#scroll-timelines": { "current": { "number": "2", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Scroll Progress Timelines", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timelines" }, "snapshot": { "number": "2", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Scroll Progress Timelines", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timelines" } }, "#scroll-timelines-anonymous": { "current": { - "number": "2.1", - "spec": "Scroll-linked Animations", + "number": "2.2", + "spec": "Scroll-driven Animations", "text": "Anonymous Scroll Progress Timelines", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timelines-anonymous" }, "snapshot": { - "number": "2.1", - "spec": "Scroll-linked Animations", + "number": "2.2", + "spec": "Scroll-driven Animations", "text": "Anonymous Scroll Progress Timelines", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timelines-anonymous" } }, "#scroll-timelines-named": { "current": { - "number": "2.2", - "spec": "Scroll-linked Animations", + "number": "2.3", + "spec": "Scroll-driven Animations", "text": "Named Scroll Progress Timelines", "url": "https://drafts.csswg.org/scroll-animations-1/#scroll-timelines-named" }, "snapshot": { - "number": "2.2", - "spec": "Scroll-linked Animations", + "number": "2.3", + "spec": "Scroll-driven Animations", "text": "Named Scroll Progress Timelines", "url": "https://www.w3.org/TR/scroll-animations-1/#scroll-timelines-named" } }, "#scrolltimeline-interface": { "current": { - "number": "2.1.2", - "spec": "Scroll-linked Animations", + "number": "2.2.2", + "spec": "Scroll-driven Animations", "text": "The ScrollTimeline Interface", "url": "https://drafts.csswg.org/scroll-animations-1/#scrolltimeline-interface" }, "snapshot": { - "number": "2.1.2", - "spec": "Scroll-linked Animations", + "number": "2.2.2", + "spec": "Scroll-driven Animations", "text": "The ScrollTimeline Interface", "url": "https://www.w3.org/TR/scroll-animations-1/#scrolltimeline-interface" } }, + "#security-considerations": { + "current": { + "number": "7", + "spec": "Scroll-driven Animations", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/scroll-animations-1/#security-considerations" + }, + "snapshot": { + "number": "7", + "spec": "Scroll-driven Animations", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/scroll-animations-1/#security-considerations" + } + }, "#sotd": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Status of this document", "url": "https://drafts.csswg.org/scroll-animations-1/#sotd" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Status of this document", "url": "https://www.w3.org/TR/scroll-animations-1/#sotd" } }, + "#timeline-name-scope": { + "current": { + "number": "B", + "spec": "Scroll-driven Animations", + "text": "Timeline Name Scope", + "url": "https://drafts.csswg.org/scroll-animations-1/#timeline-name-scope" + }, + "snapshot": { + "number": "B", + "spec": "Scroll-driven Animations", + "text": "Timeline Name Scope", + "url": "https://www.w3.org/TR/scroll-animations-1/#timeline-name-scope" + } + }, "#timeline-ranges": { "current": { - "number": "", - "spec": "Scroll-linked Animations", - "text": "Appendix A: Named Timeline Ranges", + "number": "A", + "spec": "Scroll-driven Animations", + "text": "Timeline Ranges", "url": "https://drafts.csswg.org/scroll-animations-1/#timeline-ranges" }, "snapshot": { - "number": "", - "spec": "Scroll-linked Animations", - "text": "Appendix A: Named Timeline Ranges", + "number": "A", + "spec": "Scroll-driven Animations", + "text": "Timeline Ranges", "url": "https://www.w3.org/TR/scroll-animations-1/#timeline-ranges" } }, "#timeline-scope": { "current": { - "number": "4", - "spec": "Scroll-linked Animations", - "text": "Named Timeline Scoping", + "number": "", + "spec": "Scroll-driven Animations", + "text": "Declaring a Named Timeline’s Scope: the timeline-scope property", "url": "https://drafts.csswg.org/scroll-animations-1/#timeline-scope" }, "snapshot": { - "number": "4", - "spec": "Scroll-linked Animations", - "text": "Named Timeline Scoping", + "number": "", + "spec": "Scroll-driven Animations", + "text": "Declaring a Named Timeline’s Scope: the timeline-scope property", "url": "https://www.w3.org/TR/scroll-animations-1/#timeline-scope" } }, + "#timeline-scoping": { + "current": { + "number": "4.2", + "spec": "Scroll-driven Animations", + "text": "Named Timeline Scoping and Lookup", + "url": "https://drafts.csswg.org/scroll-animations-1/#timeline-scoping" + }, + "snapshot": { + "number": "4.2", + "spec": "Scroll-driven Animations", + "text": "Named Timeline Scoping and Lookup", + "url": "https://www.w3.org/TR/scroll-animations-1/#timeline-scoping" + } + }, "#title": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Scroll-driven Animations", "url": "https://drafts.csswg.org/scroll-animations-1/#title" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", - "text": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", + "text": "Scroll-driven Animations", "url": "https://www.w3.org/TR/scroll-animations-1/#title" } }, "#toc": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Table of Contents", "url": "https://drafts.csswg.org/scroll-animations-1/#toc" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Table of Contents", "url": "https://www.w3.org/TR/scroll-animations-1/#toc" } @@ -424,83 +614,97 @@ "#values": { "current": { "number": "1.3", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Value Definitions", "url": "https://drafts.csswg.org/scroll-animations-1/#values" }, "snapshot": { "number": "1.3", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Value Definitions", "url": "https://www.w3.org/TR/scroll-animations-1/#values" } }, "#view-notation": { "current": { - "number": "3.2.1", - "spec": "Scroll-linked Animations", + "number": "3.3.1", + "spec": "Scroll-driven Animations", "text": "The view() notation", "url": "https://drafts.csswg.org/scroll-animations-1/#view-notation" }, "snapshot": { - "number": "3.2.1", - "spec": "Scroll-linked Animations", + "number": "3.3.1", + "spec": "Scroll-driven Animations", "text": "The view() notation", "url": "https://www.w3.org/TR/scroll-animations-1/#view-notation" } }, "#view-timeline-axis": { "current": { - "number": "3.3.2", - "spec": "Scroll-linked Animations", + "number": "3.4.2", + "spec": "Scroll-driven Animations", "text": "Axis of a View Progress Timeline: the view-timeline-axis property", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timeline-axis" }, "snapshot": { - "number": "3.3.2", - "spec": "Scroll-linked Animations", + "number": "3.4.2", + "spec": "Scroll-driven Animations", "text": "Axis of a View Progress Timeline: the view-timeline-axis property", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timeline-axis" } }, "#view-timeline-inset": { "current": { - "number": "3.3.3", - "spec": "Scroll-linked Animations", + "number": "3.4.3", + "spec": "Scroll-driven Animations", "text": "Inset of a View Progress Timeline: the view-timeline-inset property", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timeline-inset" }, "snapshot": { - "number": "3.3.3", - "spec": "Scroll-linked Animations", + "number": "3.4.3", + "spec": "Scroll-driven Animations", "text": "Inset of a View Progress Timeline: the view-timeline-inset property", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timeline-inset" } }, "#view-timeline-name": { "current": { - "number": "3.3.1", - "spec": "Scroll-linked Animations", + "number": "3.4.1", + "spec": "Scroll-driven Animations", "text": "Naming a View Progress Timeline: the view-timeline-name property", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timeline-name" }, "snapshot": { - "number": "3.3.1", - "spec": "Scroll-linked Animations", + "number": "3.4.1", + "spec": "Scroll-driven Animations", "text": "Naming a View Progress Timeline: the view-timeline-name property", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timeline-name" } }, + "#view-timeline-progress": { + "current": { + "number": "3.2", + "spec": "Scroll-driven Animations", + "text": "Calculating Progress for a View Progress Timeline", + "url": "https://drafts.csswg.org/scroll-animations-1/#view-timeline-progress" + }, + "snapshot": { + "number": "3.2", + "spec": "Scroll-driven Animations", + "text": "Calculating Progress for a View Progress Timeline", + "url": "https://www.w3.org/TR/scroll-animations-1/#view-timeline-progress" + } + }, "#view-timeline-shorthand": { "current": { - "number": "3.3.4", - "spec": "Scroll-linked Animations", + "number": "3.4.4", + "spec": "Scroll-driven Animations", "text": "View Timeline Shorthand: the view-timeline shorthand", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timeline-shorthand" }, "snapshot": { - "number": "3.3.4", - "spec": "Scroll-linked Animations", + "number": "3.4.4", + "spec": "Scroll-driven Animations", "text": "View Timeline Shorthand: the view-timeline shorthand", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timeline-shorthand" } @@ -508,41 +712,41 @@ "#view-timelines": { "current": { "number": "3", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "View Progress Timelines", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timelines" }, "snapshot": { "number": "3", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "View Progress Timelines", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timelines" } }, "#view-timelines-anonymous": { "current": { - "number": "3.2", - "spec": "Scroll-linked Animations", + "number": "3.3", + "spec": "Scroll-driven Animations", "text": "Anonymous View Progress Timelines", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timelines-anonymous" }, "snapshot": { - "number": "3.2", - "spec": "Scroll-linked Animations", + "number": "3.3", + "spec": "Scroll-driven Animations", "text": "Anonymous View Progress Timelines", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timelines-anonymous" } }, "#view-timelines-named": { "current": { - "number": "3.3", - "spec": "Scroll-linked Animations", + "number": "3.4", + "spec": "Scroll-driven Animations", "text": "Named View Progress Timelines", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timelines-named" }, "snapshot": { - "number": "3.3", - "spec": "Scroll-linked Animations", + "number": "3.4", + "spec": "Scroll-driven Animations", "text": "Named View Progress Timelines", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timelines-named" } @@ -550,27 +754,27 @@ "#view-timelines-ranges": { "current": { "number": "3.1", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "View Progress Timeline Ranges", "url": "https://drafts.csswg.org/scroll-animations-1/#view-timelines-ranges" }, "snapshot": { "number": "3.1", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "View Progress Timeline Ranges", "url": "https://www.w3.org/TR/scroll-animations-1/#view-timelines-ranges" } }, "#viewtimeline-interface": { "current": { - "number": "3.2.2", - "spec": "Scroll-linked Animations", + "number": "3.3.2", + "spec": "Scroll-driven Animations", "text": "The ViewTimeline Interface", "url": "https://drafts.csswg.org/scroll-animations-1/#viewtimeline-interface" }, "snapshot": { - "number": "3.2.2", - "spec": "Scroll-linked Animations", + "number": "3.3.2", + "spec": "Scroll-driven Animations", "text": "The ViewTimeline Interface", "url": "https://www.w3.org/TR/scroll-animations-1/#viewtimeline-interface" } @@ -578,13 +782,13 @@ "#w3c-conform-future-proofing": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/scroll-animations-1/#w3c-conform-future-proofing" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Implementations of Unstable and Proprietary Features", "url": "https://www.w3.org/TR/scroll-animations-1/#w3c-conform-future-proofing" } @@ -592,13 +796,13 @@ "#w3c-conformance": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Conformance", "url": "https://drafts.csswg.org/scroll-animations-1/#w3c-conformance" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Conformance", "url": "https://www.w3.org/TR/scroll-animations-1/#w3c-conformance" } @@ -606,13 +810,13 @@ "#w3c-conformance-classes": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Conformance classes", "url": "https://drafts.csswg.org/scroll-animations-1/#w3c-conformance-classes" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Conformance classes", "url": "https://www.w3.org/TR/scroll-animations-1/#w3c-conformance-classes" } @@ -620,13 +824,13 @@ "#w3c-conventions": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Document conventions", "url": "https://drafts.csswg.org/scroll-animations-1/#w3c-conventions" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Document conventions", "url": "https://www.w3.org/TR/scroll-animations-1/#w3c-conventions" } @@ -634,13 +838,13 @@ "#w3c-partial": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Partial implementations", "url": "https://drafts.csswg.org/scroll-animations-1/#w3c-partial" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Partial implementations", "url": "https://www.w3.org/TR/scroll-animations-1/#w3c-partial" } @@ -648,13 +852,13 @@ "#w3c-testing": { "current": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/scroll-animations-1/#w3c-testing" }, "snapshot": { "number": "", - "spec": "Scroll-linked Animations", + "spec": "Scroll-driven Animations", "text": "Non-experimental implementations", "url": "https://www.w3.org/TR/scroll-animations-1/#w3c-testing" } diff --git a/bikeshed/spec-data/readonly/headings/headings-scroll-to-text-fragment.json b/bikeshed/spec-data/readonly/headings/headings-scroll-to-text-fragment.json index bea20f44a5..5e898894b0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-scroll-to-text-fragment.json +++ b/bikeshed/spec-data/readonly/headings/headings-scroll-to-text-fragment.json @@ -2,15 +2,23 @@ "#abstract": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Abstract", "url": "https://wicg.github.io/scroll-to-text-fragment/#abstract" } }, + "#applying-directives-to-a-document": { + "current": { + "number": "3.3.2", + "spec": "URL Fragment Text Directives", + "text": "Applying directives to a document", + "url": "https://wicg.github.io/scroll-to-text-fragment/#applying-directives-to-a-document" + } + }, "#bidi-considerations": { "current": { "number": "3.2.2", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "BiDi Considerations", "url": "https://wicg.github.io/scroll-to-text-fragment/#bidi-considerations" } @@ -18,7 +26,7 @@ "#context-terms": { "current": { "number": "3.2.1", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Context Terms", "url": "https://wicg.github.io/scroll-to-text-fragment/#context-terms" } @@ -26,7 +34,7 @@ "#description": { "current": { "number": "3", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Description", "url": "https://wicg.github.io/scroll-to-text-fragment/#description" } @@ -34,31 +42,39 @@ "#determine-if-fragment-id-is-needed": { "current": { "number": "4.3", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Determine If Fragment Id Is Needed", "url": "https://wicg.github.io/scroll-to-text-fragment/#determine-if-fragment-id-is-needed" } }, "#document-policy-integration": { "current": { - "number": "3.7", - "spec": "Text Fragments", + "number": "3.8", + "spec": "URL Fragment Text Directives", "text": "Document Policy Integration", "url": "https://wicg.github.io/scroll-to-text-fragment/#document-policy-integration" } }, + "#extracting-the-fragment-directive": { + "current": { + "number": "3.3.1", + "spec": "URL Fragment Text Directives", + "text": "Extracting the fragment directive", + "url": "https://wicg.github.io/scroll-to-text-fragment/#extracting-the-fragment-directive" + } + }, "#feature-detectability": { "current": { - "number": "3.8", - "spec": "Text Fragments", + "number": "3.9", + "spec": "URL Fragment Text Directives", "text": "Feature Detectability", "url": "https://wicg.github.io/scroll-to-text-fragment/#feature-detectability" } }, "#finding-ranges-in-a-document": { "current": { - "number": "3.5.1", - "spec": "Text Fragments", + "number": "3.6.1", + "spec": "URL Fragment Text Directives", "text": "Finding Ranges in a Document", "url": "https://wicg.github.io/scroll-to-text-fragment/#finding-ranges-in-a-document" } @@ -66,7 +82,7 @@ "#fragment-directive-grammar": { "current": { "number": "3.3.3", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Fragment directive grammar", "url": "https://wicg.github.io/scroll-to-text-fragment/#fragment-directive-grammar" } @@ -74,7 +90,7 @@ "#generating-text-fragment-directives": { "current": { "number": "4", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Generating Text Fragment Directives", "url": "https://wicg.github.io/scroll-to-text-fragment/#generating-text-fragment-directives" } @@ -82,7 +98,7 @@ "#idl-index": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "IDL Index", "url": "https://wicg.github.io/scroll-to-text-fragment/#idl-index" } @@ -90,7 +106,7 @@ "#index": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Index", "url": "https://wicg.github.io/scroll-to-text-fragment/#index" } @@ -98,7 +114,7 @@ "#index-defined-elsewhere": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Terms defined by reference", "url": "https://wicg.github.io/scroll-to-text-fragment/#index-defined-elsewhere" } @@ -106,15 +122,15 @@ "#index-defined-here": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Terms defined by this specification", "url": "https://wicg.github.io/scroll-to-text-fragment/#index-defined-here" } }, "#indicating-the-text-match": { "current": { - "number": "3.6", - "spec": "Text Fragments", + "number": "3.7", + "spec": "URL Fragment Text Directives", "text": "Indicating The Text Match", "url": "https://wicg.github.io/scroll-to-text-fragment/#indicating-the-text-match" } @@ -122,7 +138,7 @@ "#indication": { "current": { "number": "3.1", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Indication", "url": "https://wicg.github.io/scroll-to-text-fragment/#indication" } @@ -130,7 +146,7 @@ "#informative": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Informative References", "url": "https://wicg.github.io/scroll-to-text-fragment/#informative" } @@ -138,7 +154,7 @@ "#infrastructure": { "current": { "number": "1", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Infrastructure", "url": "https://wicg.github.io/scroll-to-text-fragment/#infrastructure" } @@ -146,31 +162,47 @@ "#introduction": { "current": { "number": "2", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Introduction", "url": "https://wicg.github.io/scroll-to-text-fragment/#introduction" } }, + "#invoking-text-directives": { + "current": { + "number": "3.4.1", + "spec": "URL Fragment Text Directives", + "text": "Invoking Text Directives", + "url": "https://wicg.github.io/scroll-to-text-fragment/#invoking-text-directives" + } + }, "#issues-index": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Issues Index", "url": "https://wicg.github.io/scroll-to-text-fragment/#issues-index" } }, + "#link-lifetime": { + "current": { + "number": "2.2", + "spec": "URL Fragment Text Directives", + "text": "Link Lifetime", + "url": "https://wicg.github.io/scroll-to-text-fragment/#link-lifetime" + } + }, "#motivation": { "current": { - "number": "3.4.1", - "spec": "Text Fragments", + "number": "3.5.1", + "spec": "URL Fragment Text Directives", "text": "Motivation", "url": "https://wicg.github.io/scroll-to-text-fragment/#motivation" } }, "#navigating-to-text-fragment": { "current": { - "number": "3.5", - "spec": "Text Fragments", + "number": "3.6", + "spec": "URL Fragment Text Directives", "text": "Navigating to a Text Fragment", "url": "https://wicg.github.io/scroll-to-text-fragment/#navigating-to-text-fragment" } @@ -178,71 +210,63 @@ "#normative": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Normative References", "url": "https://wicg.github.io/scroll-to-text-fragment/#normative" } }, - "#parsing-the-fragment-directive": { - "current": { - "number": "3.3.2", - "spec": "Text Fragments", - "text": "Parsing the fragment directive", - "url": "https://wicg.github.io/scroll-to-text-fragment/#parsing-the-fragment-directive" - } - }, "#prefer-exact-matching-to-range-based": { "current": { "number": "4.1", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Prefer Exact Matching To Range-based", "url": "https://wicg.github.io/scroll-to-text-fragment/#prefer-exact-matching-to-range-based" } }, - "#processing-the-fragment-directive": { - "current": { - "number": "3.3.1", - "spec": "Text Fragments", - "text": "Processing the fragment directive", - "url": "https://wicg.github.io/scroll-to-text-fragment/#processing-the-fragment-directive" - } - }, "#references": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "References", "url": "https://wicg.github.io/scroll-to-text-fragment/#references" } }, + "#restricting-scroll-on-load": { + "current": { + "number": "3.5.5", + "spec": "URL Fragment Text Directives", + "text": "Restricting Scroll on Load", + "url": "https://wicg.github.io/scroll-to-text-fragment/#restricting-scroll-on-load" + } + }, "#restricting-the-text-fragment": { "current": { - "number": "3.4.4", - "spec": "Text Fragments", + "number": "3.5.4", + "spec": "URL Fragment Text Directives", "text": "Restricting the Text Fragment", "url": "https://wicg.github.io/scroll-to-text-fragment/#restricting-the-text-fragment" } }, "#scroll-on-navigation": { "current": { - "number": "3.4.2", - "spec": "Text Fragments", + "number": "3.5.2", + "spec": "URL Fragment Text Directives", "text": "Scroll On Navigation", "url": "https://wicg.github.io/scroll-to-text-fragment/#scroll-on-navigation" } }, "#search-timing": { "current": { - "number": "3.4.3", - "spec": "Text Fragments", + "number": "3.5.3", + "spec": "URL Fragment Text Directives", "text": "Search Timing", "url": "https://wicg.github.io/scroll-to-text-fragment/#search-timing" } }, "#security-and-privacy": { "current": { - "number": "3.4", - "spec": "Text Fragments", + "number": "3.5", + "spec": "URL Fragment Text Directives", "text": "Security and Privacy", "url": "https://wicg.github.io/scroll-to-text-fragment/#security-and-privacy" } @@ -250,7 +274,7 @@ "#status": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Status of this document", "url": "https://wicg.github.io/scroll-to-text-fragment/#status" } @@ -258,15 +282,23 @@ "#syntax": { "current": { "number": "3.2", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Syntax", "url": "https://wicg.github.io/scroll-to-text-fragment/#syntax" } }, + "#text-directives": { + "current": { + "number": "3.4", + "spec": "URL Fragment Text Directives", + "text": "Text Directives", + "url": "https://wicg.github.io/scroll-to-text-fragment/#text-directives" + } + }, "#the-fragment-directive": { "current": { "number": "3.3", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "The Fragment Directive", "url": "https://wicg.github.io/scroll-to-text-fragment/#the-fragment-directive" } @@ -274,47 +306,47 @@ "#title": { "current": { "number": "", - "spec": "Text Fragments", - "text": "Text Fragments", + "spec": "URL Fragment Text Directives", + "text": "URL Fragment Text Directives", "url": "https://wicg.github.io/scroll-to-text-fragment/#title" } }, "#toc": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Table of Contents", "url": "https://wicg.github.io/scroll-to-text-fragment/#toc" } }, "#urls-in-bookmarks": { "current": { - "number": "3.6.1.2", - "spec": "Text Fragments", + "number": "3.7.1.2", + "spec": "URL Fragment Text Directives", "text": "Bookmarks", "url": "https://wicg.github.io/scroll-to-text-fragment/#urls-in-bookmarks" } }, "#urls-in-location-bar": { "current": { - "number": "3.6.1.1", - "spec": "Text Fragments", + "number": "3.7.1.1", + "spec": "URL Fragment Text Directives", "text": "Location Bar", "url": "https://wicg.github.io/scroll-to-text-fragment/#urls-in-location-bar" } }, "#urls-in-sharing": { "current": { - "number": "3.6.1.3", - "spec": "Text Fragments", + "number": "3.7.1.3", + "spec": "URL Fragment Text Directives", "text": "Sharing", "url": "https://wicg.github.io/scroll-to-text-fragment/#urls-in-sharing" } }, "#urls-in-ua-features": { "current": { - "number": "3.6.1", - "spec": "Text Fragments", + "number": "3.7.1", + "spec": "URL Fragment Text Directives", "text": "URLs in UA features", "url": "https://wicg.github.io/scroll-to-text-fragment/#urls-in-ua-features" } @@ -322,7 +354,7 @@ "#use-cases": { "current": { "number": "2.1", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Use cases", "url": "https://wicg.github.io/scroll-to-text-fragment/#use-cases" } @@ -330,7 +362,7 @@ "#use-context-only-when-necessary": { "current": { "number": "4.2", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Use Context Only When Necessary", "url": "https://wicg.github.io/scroll-to-text-fragment/#use-context-only-when-necessary" } @@ -338,7 +370,7 @@ "#user-sharing": { "current": { "number": "2.1.2", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "User sharing", "url": "https://wicg.github.io/scroll-to-text-fragment/#user-sharing" } @@ -346,23 +378,15 @@ "#w3c-conformance": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Conformance", "url": "https://wicg.github.io/scroll-to-text-fragment/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Text Fragments", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/scroll-to-text-fragment/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Document conventions", "url": "https://wicg.github.io/scroll-to-text-fragment/#w3c-conventions" } @@ -370,15 +394,15 @@ "#web-text-references": { "current": { "number": "2.1.1", - "spec": "Text Fragments", + "spec": "URL Fragment Text Directives", "text": "Web text references", "url": "https://wicg.github.io/scroll-to-text-fragment/#web-text-references" } }, "#word-boundaries": { "current": { - "number": "3.5.2", - "spec": "Text Fragments", + "number": "3.6.2", + "spec": "URL Fragment Text Directives", "text": "Word Boundaries", "url": "https://wicg.github.io/scroll-to-text-fragment/#word-boundaries" } diff --git a/bikeshed/spec-data/readonly/headings/headings-secure-contexts.json b/bikeshed/spec-data/readonly/headings/headings-secure-contexts.json index 155c2b9b55..ddc1455c0f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-secure-contexts.json +++ b/bikeshed/spec-data/readonly/headings/headings-secure-contexts.json @@ -55,48 +55,6 @@ "url": "https://www.w3.org/TR/secure-contexts/#ancestors" } }, - "#conformance": { - "current": { - "number": "", - "spec": "Secure Contexts", - "text": "Conformance", - "url": "https://w3c.github.io/webappsec-secure-contexts/#conformance" - }, - "snapshot": { - "number": "", - "spec": "Secure Contexts", - "text": "Conformance", - "url": "https://www.w3.org/TR/secure-contexts/#conformance" - } - }, - "#conformant-algorithms": { - "current": { - "number": "", - "spec": "Secure Contexts", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webappsec-secure-contexts/#conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Secure Contexts", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/secure-contexts/#conformant-algorithms" - } - }, - "#conventions": { - "current": { - "number": "", - "spec": "Secure Contexts", - "text": "Document conventions", - "url": "https://w3c.github.io/webappsec-secure-contexts/#conventions" - }, - "snapshot": { - "number": "", - "spec": "Secure Contexts", - "text": "Document conventions", - "url": "https://www.w3.org/TR/secure-contexts/#conventions" - } - }, "#development-environments": { "current": { "number": "7.2", @@ -475,20 +433,6 @@ "url": "https://www.w3.org/TR/secure-contexts/#privacy-considerations" } }, - "#profile-and-date": { - "current": { - "number": "", - "spec": "Secure Contexts", - "text": "Editor’s Draft, 18 September 2021", - "url": "https://w3c.github.io/webappsec-secure-contexts/#profile-and-date" - }, - "snapshot": { - "number": "", - "spec": "Secure Contexts", - "text": "W3C Candidate Recommendation Draft, 18 September 2021", - "url": "https://www.w3.org/TR/secure-contexts/#profile-and-date" - } - }, "#references": { "current": { "number": "", @@ -531,18 +475,18 @@ "url": "https://www.w3.org/TR/secure-contexts/#shared-workers" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "Secure Contexts", "text": "Status of this document", - "url": "https://w3c.github.io/webappsec-secure-contexts/#status" + "url": "https://w3c.github.io/webappsec-secure-contexts/#sotd" }, "snapshot": { "number": "", "spec": "Secure Contexts", "text": "Status of this document", - "url": "https://www.w3.org/TR/secure-contexts/#status" + "url": "https://www.w3.org/TR/secure-contexts/#sotd" } }, "#threat-active": { diff --git a/bikeshed/spec-data/readonly/headings/headings-secure-payment-confirmation.json b/bikeshed/spec-data/readonly/headings/headings-secure-payment-confirmation.json index ee22891d39..eca84d3317 100644 --- a/bikeshed/spec-data/readonly/headings/headings-secure-payment-confirmation.json +++ b/bikeshed/spec-data/readonly/headings/headings-secure-payment-confirmation.json @@ -209,6 +209,34 @@ "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-common-data-structures" } }, + "#sctn-i18n-considerations": { + "current": { + "number": "", + "spec": "Secure Payment Confirmation", + "text": "13. Internationalization Considerations", + "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-i18n-considerations" + }, + "snapshot": { + "number": "", + "spec": "Secure Payment Confirmation", + "text": "13. Internationalization Considerations", + "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-i18n-considerations" + } + }, + "#sctn-iana-considerations": { + "current": { + "number": "", + "spec": "Secure Payment Confirmation", + "text": "14. IANA Considerations", + "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-iana-considerations" + }, + "snapshot": { + "number": "", + "spec": "Secure Payment Confirmation", + "text": "14. IANA Considerations", + "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-iana-considerations" + } + }, "#sctn-intro": { "current": { "number": "1", @@ -223,6 +251,34 @@ "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-intro" } }, + "#sctn-modify-payment-request-constructor": { + "current": { + "number": "4.1.3", + "spec": "Secure Payment Confirmation", + "text": "Modification of Payment Request constructor", + "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-modify-payment-request-constructor" + }, + "snapshot": { + "number": "4.1.3", + "spec": "Secure Payment Confirmation", + "text": "Modification of Payment Request constructor", + "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-modify-payment-request-constructor" + } + }, + "#sctn-modify-user-activation-requirement": { + "current": { + "number": "4.1.4", + "spec": "Secure Payment Confirmation", + "text": "Modification of user activation requirement", + "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-modify-user-activation-requirement" + }, + "snapshot": { + "number": "4.1.4", + "spec": "Secure Payment Confirmation", + "text": "Modification of user activation requirement", + "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-modify-user-activation-requirement" + } + }, "#sctn-payment-extension-registration": { "current": { "number": "5", @@ -239,13 +295,13 @@ }, "#sctn-payment-method-additional-data-type": { "current": { - "number": "4.1.4", + "number": "4.1.6", "spec": "Secure Payment Confirmation", "text": "Payment Method additional data type", "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-payment-method-additional-data-type" }, "snapshot": { - "number": "4.1.4", + "number": "4.1.6", "spec": "Secure Payment Confirmation", "text": "Payment Method additional data type", "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-payment-method-additional-data-type" @@ -447,15 +503,29 @@ "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-sample-scenarios" } }, + "#sctn-secure-payment-confirmation-available-api": { + "current": { + "number": "4.1.7", + "spec": "Secure Payment Confirmation", + "text": "Checking if Secure Payment Confirmation is available", + "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-secure-payment-confirmation-available-api" + }, + "snapshot": { + "number": "4.1.7", + "spec": "Secure Payment Confirmation", + "text": "Checking if Secure Payment Confirmation is available", + "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-secure-payment-confirmation-available-api" + } + }, "#sctn-securepaymentconfirmationrequest-dictionary": { "current": { - "number": "4.1.3", + "number": "4.1.5", "spec": "Secure Payment Confirmation", "text": "SecurePaymentConfirmationRequest Dictionary", "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-securepaymentconfirmationrequest-dictionary" }, "snapshot": { - "number": "4.1.3", + "number": "4.1.5", "spec": "Secure Payment Confirmation", "text": "SecurePaymentConfirmationRequest Dictionary", "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-securepaymentconfirmationrequest-dictionary" @@ -545,15 +615,29 @@ "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-security-payment-attack" } }, + "#sctn-security-user-activation-requirement": { + "current": { + "number": "10.3", + "spec": "Secure Payment Confirmation", + "text": "Lack of user activation requirement", + "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-security-user-activation-requirement" + }, + "snapshot": { + "number": "10.3", + "spec": "Secure Payment Confirmation", + "text": "Lack of user activation requirement", + "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-security-user-activation-requirement" + } + }, "#sctn-steps-to-check-if-a-payment-can-be-made": { "current": { - "number": "4.1.6", + "number": "4.1.9", "spec": "Secure Payment Confirmation", "text": "Steps to check if a payment can be made", "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-steps-to-check-if-a-payment-can-be-made" }, "snapshot": { - "number": "4.1.6", + "number": "4.1.9", "spec": "Secure Payment Confirmation", "text": "Steps to check if a payment can be made", "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-steps-to-check-if-a-payment-can-be-made" @@ -561,13 +645,13 @@ }, "#sctn-steps-to-respond-to-a-payment-request": { "current": { - "number": "4.1.8", + "number": "4.1.11", "spec": "Secure Payment Confirmation", "text": "Steps to respond to a payment request", "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-steps-to-respond-to-a-payment-request" }, "snapshot": { - "number": "4.1.8", + "number": "4.1.11", "spec": "Secure Payment Confirmation", "text": "Steps to respond to a payment request", "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-steps-to-respond-to-a-payment-request" @@ -575,13 +659,13 @@ }, "#sctn-steps-to-validate-payment-method-data": { "current": { - "number": "4.1.5", + "number": "4.1.8", "spec": "Secure Payment Confirmation", "text": "Steps to validate payment method data", "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-steps-to-validate-payment-method-data" }, "snapshot": { - "number": "4.1.5", + "number": "4.1.8", "spec": "Secure Payment Confirmation", "text": "Steps to validate payment method data", "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-steps-to-validate-payment-method-data" @@ -603,13 +687,13 @@ }, "#sctn-transaction-confirmation-ux": { "current": { - "number": "4.1.7", + "number": "4.1.10", "spec": "Secure Payment Confirmation", "text": "Displaying a transaction confirmation UX", "url": "https://w3c.github.io/secure-payment-confirmation/#sctn-transaction-confirmation-ux" }, "snapshot": { - "number": "4.1.7", + "number": "4.1.10", "spec": "Secure Payment Confirmation", "text": "Displaying a transaction confirmation UX", "url": "https://www.w3.org/TR/secure-payment-confirmation/#sctn-transaction-confirmation-ux" diff --git a/bikeshed/spec-data/readonly/headings/headings-selection-api.json b/bikeshed/spec-data/readonly/headings/headings-selection-api.json index 721b9ab73f..3e2effe99f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-selection-api.json +++ b/bikeshed/spec-data/readonly/headings/headings-selection-api.json @@ -111,6 +111,14 @@ "url": "https://www.w3.org/TR/selection-api/#extensions-to-window-interface" } }, + "#firing-selectionhange-event": { + "current": { + "number": "6.2.2", + "spec": "Selection API", + "text": "Firing selectionhange event", + "url": "https://w3c.github.io/selection-api/#firing-selectionhange-event" + } + }, "#normative-references": { "current": { "number": "B.1", @@ -153,6 +161,14 @@ "url": "https://www.w3.org/TR/selection-api/#responding-to-dom-mutations" } }, + "#scheduling-selectionhange-event": { + "current": { + "number": "6.2.1", + "spec": "Selection API", + "text": "Scheduling selectionhange event", + "url": "https://w3c.github.io/selection-api/#scheduling-selectionhange-event" + } + }, "#security-and-privacy-considerations": { "current": { "number": "8", diff --git a/bikeshed/spec-data/readonly/headings/headings-selectors-3.json b/bikeshed/spec-data/readonly/headings/headings-selectors-3.json index 7681a333b8..b24c00c64d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-selectors-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-selectors-3.json @@ -699,6 +699,14 @@ "url": "https://www.w3.org/TR/selectors-3/#only-of-type-pseudo" } }, + "#privacy": { + "current": { + "number": "", + "spec": "Selectors 3", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/selectors-3/#privacy" + } + }, "#profiling": { "current": { "number": "", @@ -769,6 +777,14 @@ "url": "https://www.w3.org/TR/selectors-3/#root-pseudo" } }, + "#security": { + "current": { + "number": "", + "spec": "Selectors 3", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/selectors-3/#security" + } + }, "#selection": { "current": { "number": "7.3", @@ -941,13 +957,13 @@ "current": { "number": "", "spec": "Selectors 3", - "text": "12 TestsSelectors Level 3", + "text": "Selectors Level 3", "url": "https://drafts.csswg.org/selectors-3/#title" }, "snapshot": { "number": "", "spec": "Selectors 3", - "text": "12 TestsSelectors Level 3", + "text": "Selectors Level 3", "url": "https://www.w3.org/TR/selectors-3/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-selectors-4.json b/bikeshed/spec-data/readonly/headings/headings-selectors-4.json index 687954b7c5..5f740bb946 100644 --- a/bikeshed/spec-data/readonly/headings/headings-selectors-4.json +++ b/bikeshed/spec-data/readonly/headings/headings-selectors-4.json @@ -351,15 +351,15 @@ }, "#compat": { "current": { - "number": "", + "number": "B", "spec": "Selectors 4", - "text": "Appendix B: Obsolete but Required -webkit- Parsing Quirks for Web Compat", + "text": "Obsolete but Required -webkit- Parsing Quirks for Web Compat", "url": "https://drafts.csswg.org/selectors-4/#compat" }, "snapshot": { - "number": "", + "number": "B", "spec": "Selectors 4", - "text": "Appendix B: Obsolete but Required -webkit- Parsing Quirks for Web Compat", + "text": "Obsolete but Required -webkit- Parsing Quirks for Web Compat", "url": "https://www.w3.org/TR/selectors-4/#compat" } }, @@ -435,15 +435,15 @@ }, "#dom-mapping": { "current": { - "number": "", + "number": "A", "spec": "Selectors 4", - "text": "Appendix A: Guidance on Mapping Source Documents & Data to an Element Tree", + "text": "Guidance on Mapping Source Documents & Data to an Element Tree", "url": "https://drafts.csswg.org/selectors-4/#dom-mapping" }, "snapshot": { - "number": "", + "number": "A", "spec": "Selectors 4", - "text": "Appendix A: Guidance on Mapping Source Documents & Data to an Element Tree", + "text": "Guidance on Mapping Source Documents & Data to an Element Tree", "url": "https://www.w3.org/TR/selectors-4/#dom-mapping" } }, @@ -475,6 +475,14 @@ "url": "https://www.w3.org/TR/selectors-4/#enableddisabled" } }, + "#featureless-elements": { + "current": { + "number": "3.2.1", + "spec": "Selectors 4", + "text": "Featureless Elements", + "url": "https://drafts.csswg.org/selectors-4/#featureless-elements" + } + }, "#forgiving-selector": { "current": { "number": "18.1", @@ -1008,12 +1016,6 @@ } }, "#priv-sec": { - "current": { - "number": "", - "spec": "Selectors 4", - "text": "22. Privacy and Security Considerations", - "url": "https://drafts.csswg.org/selectors-4/#priv-sec" - }, "snapshot": { "number": "", "spec": "Selectors 4", @@ -1021,6 +1023,14 @@ "url": "https://www.w3.org/TR/selectors-4/#priv-sec" } }, + "#privacy": { + "current": { + "number": "", + "spec": "Selectors 4", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/selectors-4/#privacy" + } + }, "#pseudo-classes": { "current": { "number": "3.5", @@ -1203,6 +1213,14 @@ "url": "https://www.w3.org/TR/selectors-4/#scoping" } }, + "#security": { + "current": { + "number": "", + "spec": "Selectors 4", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/selectors-4/#security" + } + }, "#sotd": { "current": { "number": "", @@ -1801,7 +1819,7 @@ "snapshot": { "number": "", "spec": "Selectors 4", - "text": "133 TestsSelectors Level 4", + "text": "Selectors Level 4", "url": "https://www.w3.org/TR/selectors-4/#title" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-selectors-5.json b/bikeshed/spec-data/readonly/headings/headings-selectors-5.json new file mode 100644 index 0000000000..14799ca07b --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-selectors-5.json @@ -0,0 +1,234 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Abstract", + "url": "https://drafts.csswg.org/selectors-5/#abstract" + } + }, + "#acknowledgements": { + "current": { + "number": "6", + "spec": "Selectors 5", + "text": "Acknowledgements", + "url": "https://drafts.csswg.org/selectors-5/#acknowledgements" + } + }, + "#changes": { + "current": { + "number": "5", + "spec": "Selectors 5", + "text": "Changes", + "url": "https://drafts.csswg.org/selectors-5/#changes" + } + }, + "#changes-level-4": { + "current": { + "number": "5.1", + "spec": "Selectors 5", + "text": "Changes Since Level 4", + "url": "https://drafts.csswg.org/selectors-5/#changes-level-4" + } + }, + "#combinators": { + "current": { + "number": "4", + "spec": "Selectors 5", + "text": "Combinators", + "url": "https://drafts.csswg.org/selectors-5/#combinators" + } + }, + "#custom-state": { + "current": { + "number": "3", + "spec": "Selectors 5", + "text": "Exposing custom state: the :state() pseudo-class", + "url": "https://drafts.csswg.org/selectors-5/#custom-state" + } + }, + "#idref-combinators": { + "current": { + "number": "4.1", + "spec": "Selectors 5", + "text": "Reference combinators /ref/", + "url": "https://drafts.csswg.org/selectors-5/#idref-combinators" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Index", + "url": "https://drafts.csswg.org/selectors-5/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Terms defined by reference", + "url": "https://drafts.csswg.org/selectors-5/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Terms defined by this specification", + "url": "https://drafts.csswg.org/selectors-5/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Informative References", + "url": "https://drafts.csswg.org/selectors-5/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Selectors 5", + "text": "Introduction", + "url": "https://drafts.csswg.org/selectors-5/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Issues Index", + "url": "https://drafts.csswg.org/selectors-5/#issues-index" + } + }, + "#local-pseudo": { + "current": { + "number": "2.1", + "spec": "Selectors 5", + "text": "The local link pseudo-class :local-link", + "url": "https://drafts.csswg.org/selectors-5/#local-pseudo" + } + }, + "#location": { + "current": { + "number": "2", + "spec": "Selectors 5", + "text": "Location Pseudo-classes", + "url": "https://drafts.csswg.org/selectors-5/#location" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Normative References", + "url": "https://drafts.csswg.org/selectors-5/#normative" + } + }, + "#placement": { + "current": { + "number": "1.1", + "spec": "Selectors 5", + "text": "Module Interactions", + "url": "https://drafts.csswg.org/selectors-5/#placement" + } + }, + "#privacy": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/selectors-5/#privacy" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "References", + "url": "https://drafts.csswg.org/selectors-5/#references" + } + }, + "#security": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Security Considerations", + "url": "https://drafts.csswg.org/selectors-5/#security" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Status of this document", + "url": "https://drafts.csswg.org/selectors-5/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Selectors Level 5", + "url": "https://drafts.csswg.org/selectors-5/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Table of Contents", + "url": "https://drafts.csswg.org/selectors-5/#toc" + } + }, + "#w3c-conform-future-proofing": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://drafts.csswg.org/selectors-5/#w3c-conform-future-proofing" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Conformance", + "url": "https://drafts.csswg.org/selectors-5/#w3c-conformance" + } + }, + "#w3c-conformance-classes": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Conformance classes", + "url": "https://drafts.csswg.org/selectors-5/#w3c-conformance-classes" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Document conventions", + "url": "https://drafts.csswg.org/selectors-5/#w3c-conventions" + } + }, + "#w3c-partial": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Partial implementations", + "url": "https://drafts.csswg.org/selectors-5/#w3c-partial" + } + }, + "#w3c-testing": { + "current": { + "number": "", + "spec": "Selectors 5", + "text": "Non-experimental implementations", + "url": "https://drafts.csswg.org/selectors-5/#w3c-testing" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-selectors-nonelement-1.json b/bikeshed/spec-data/readonly/headings/headings-selectors-nonelement-1.json index 1d9798cb19..3ceb76a5af 100644 --- a/bikeshed/spec-data/readonly/headings/headings-selectors-nonelement-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-selectors-nonelement-1.json @@ -5,12 +5,6 @@ "spec": "Non-element Selectors 1", "text": "Abstract", "url": "https://drafts.csswg.org/selectors-nonelement-1/#abstract" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Abstract", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#abstract" } }, "#attribute-node-selectors": { @@ -19,12 +13,6 @@ "spec": "Non-element Selectors 1", "text": "Attribute node selector", "url": "https://drafts.csswg.org/selectors-nonelement-1/#attribute-node-selectors" - }, - "snapshot": { - "number": "2.1", - "spec": "Non-element Selectors 1", - "text": "Attribute node selector", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#attribute-node-selectors" } }, "#index": { @@ -33,12 +21,6 @@ "spec": "Non-element Selectors 1", "text": "Index", "url": "https://drafts.csswg.org/selectors-nonelement-1/#index" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Index", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#index" } }, "#index-defined-elsewhere": { @@ -47,12 +29,6 @@ "spec": "Non-element Selectors 1", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/selectors-nonelement-1/#index-defined-elsewhere" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Terms defined by reference", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -61,12 +37,6 @@ "spec": "Non-element Selectors 1", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/selectors-nonelement-1/#index-defined-here" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Terms defined by this specification", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#index-defined-here" } }, "#informative": { @@ -75,12 +45,6 @@ "spec": "Non-element Selectors 1", "text": "Informative References", "url": "https://drafts.csswg.org/selectors-nonelement-1/#informative" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Informative References", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#informative" } }, "#intro": { @@ -89,12 +53,6 @@ "spec": "Non-element Selectors 1", "text": "Introduction", "url": "https://drafts.csswg.org/selectors-nonelement-1/#intro" - }, - "snapshot": { - "number": "1", - "spec": "Non-element Selectors 1", - "text": "Introduction", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#intro" } }, "#non-element-selectors": { @@ -103,12 +61,6 @@ "spec": "Non-element Selectors 1", "text": "Non-element Selectors", "url": "https://drafts.csswg.org/selectors-nonelement-1/#non-element-selectors" - }, - "snapshot": { - "number": "2", - "spec": "Non-element Selectors 1", - "text": "Non-element Selectors", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#non-element-selectors" } }, "#normative": { @@ -117,12 +69,14 @@ "spec": "Non-element Selectors 1", "text": "Normative References", "url": "https://drafts.csswg.org/selectors-nonelement-1/#normative" - }, - "snapshot": { + } + }, + "#privacy": { + "current": { "number": "", "spec": "Non-element Selectors 1", - "text": "Normative References", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#normative" + "text": "Privacy Considerations", + "url": "https://drafts.csswg.org/selectors-nonelement-1/#privacy" } }, "#references": { @@ -131,36 +85,22 @@ "spec": "Non-element Selectors 1", "text": "References", "url": "https://drafts.csswg.org/selectors-nonelement-1/#references" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "References", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#references" } }, - "#sotd": { + "#security": { "current": { "number": "", "spec": "Non-element Selectors 1", - "text": "Status of this document", - "url": "https://drafts.csswg.org/selectors-nonelement-1/#sotd" + "text": "Security Considerations", + "url": "https://drafts.csswg.org/selectors-nonelement-1/#security" } }, - "#status": { - "snapshot": { + "#sotd": { + "current": { "number": "", "spec": "Non-element Selectors 1", "text": "Status of this document", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#status" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "W3C Working Group Note, 2 April 2019", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#subtitle" + "url": "https://drafts.csswg.org/selectors-nonelement-1/#sotd" } }, "#title": { @@ -169,12 +109,6 @@ "spec": "Non-element Selectors 1", "text": "Non-element Selectors Module Level 1", "url": "https://drafts.csswg.org/selectors-nonelement-1/#title" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Non-element Selectors Module Level 1", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#title" } }, "#toc": { @@ -183,12 +117,6 @@ "spec": "Non-element Selectors 1", "text": "Table of Contents", "url": "https://drafts.csswg.org/selectors-nonelement-1/#toc" - }, - "snapshot": { - "number": "", - "spec": "Non-element Selectors 1", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/selectors-nonelement-1/#toc" } }, "#w3c-conform-future-proofing": { diff --git a/bikeshed/spec-data/readonly/headings/headings-serial.json b/bikeshed/spec-data/readonly/headings/headings-serial.json index 2583d1cd44..1317ed0a79 100644 --- a/bikeshed/spec-data/readonly/headings/headings-serial.json +++ b/bikeshed/spec-data/readonly/headings/headings-serial.json @@ -7,9 +7,17 @@ "url": "https://wicg.github.io/serial/#acknowledgements" } }, + "#blocklist": { + "current": { + "number": "5", + "spec": "Web Serial API", + "text": "Blocklist", + "url": "https://wicg.github.io/serial/#blocklist" + } + }, "#close-method": { "current": { - "number": "4.9", + "number": "4.10", "spec": "Web Serial API", "text": "close() method", "url": "https://wicg.github.io/serial/#close-method" @@ -17,12 +25,20 @@ }, "#conformance": { "current": { - "number": "8", + "number": "9", "spec": "Web Serial API", "text": "Conformance", "url": "https://wicg.github.io/serial/#conformance" } }, + "#connected-attribute": { + "current": { + "number": "4.5", + "spec": "Web Serial API", + "text": "connected attribute", + "url": "https://wicg.github.io/serial/#connected-attribute" + } + }, "#extensions-to-the-navigator-interface": { "current": { "number": "1", @@ -49,7 +65,7 @@ }, "#forget-method": { "current": { - "number": "4.10", + "number": "4.11", "spec": "Web Serial API", "text": "forget() method", "url": "https://wicg.github.io/serial/#forget-method" @@ -73,7 +89,7 @@ }, "#getsignals-method": { "current": { - "number": "4.8", + "number": "4.9", "spec": "Web Serial API", "text": "getSignals() method", "url": "https://wicg.github.io/serial/#getsignals-method" @@ -89,7 +105,7 @@ }, "#integrations": { "current": { - "number": "5", + "number": "6", "spec": "Web Serial API", "text": "Integrations", "url": "https://wicg.github.io/serial/#integrations" @@ -153,7 +169,7 @@ }, "#permissions-policy": { "current": { - "number": "5.1", + "number": "6.1", "spec": "Web Serial API", "text": "Permissions Policy", "url": "https://wicg.github.io/serial/#permissions-policy" @@ -161,7 +177,7 @@ }, "#privacy": { "current": { - "number": "7", + "number": "8", "spec": "Web Serial API", "text": "Privacy considerations", "url": "https://wicg.github.io/serial/#privacy" @@ -169,7 +185,7 @@ }, "#readable-attribute": { "current": { - "number": "4.5", + "number": "4.6", "spec": "Web Serial API", "text": "readable attribute", "url": "https://wicg.github.io/serial/#readable-attribute" @@ -193,7 +209,7 @@ }, "#security": { "current": { - "number": "6", + "number": "7", "spec": "Web Serial API", "text": "Security considerations", "url": "https://wicg.github.io/serial/#security" @@ -225,7 +241,7 @@ }, "#serialinputsignals-dictionary": { "current": { - "number": "4.8.1", + "number": "4.9.1", "spec": "Web Serial API", "text": "SerialInputSignals dictionary", "url": "https://wicg.github.io/serial/#serialinputsignals-dictionary" @@ -241,7 +257,7 @@ }, "#serialoutputsignals-dictionary": { "current": { - "number": "4.7.1", + "number": "4.8.1", "spec": "Web Serial API", "text": "SerialOutputSignals dictionary", "url": "https://wicg.github.io/serial/#serialoutputsignals-dictionary" @@ -281,7 +297,7 @@ }, "#setsignals-method": { "current": { - "number": "4.7", + "number": "4.8", "spec": "Web Serial API", "text": "setSignals() method", "url": "https://wicg.github.io/serial/#setsignals-method" @@ -313,7 +329,7 @@ }, "#writable-attribute": { "current": { - "number": "4.6", + "number": "4.7", "spec": "Web Serial API", "text": "writable attribute", "url": "https://wicg.github.io/serial/#writable-attribute" diff --git a/bikeshed/spec-data/readonly/headings/headings-service-workers.json b/bikeshed/spec-data/readonly/headings/headings-service-workers.json index 3149c72102..d8b12f6e2b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-service-workers.json +++ b/bikeshed/spec-data/readonly/headings/headings-service-workers.json @@ -31,7 +31,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Activate Info about the 'Activate' definition.#activateReferenced in: 3.5. Events (2) 4.7. Events Install (2) Try Activate Handle User Agent Shutdown", + "text": "Activate", "url": "https://w3c.github.io/ServiceWorker/#activation-algorithm" }, "snapshot": { @@ -43,23 +43,31 @@ }, "#algorithms": { "current": { - "number": "", + "number": "A", "spec": "Service Workers", - "text": "Appendix A: Algorithms", + "text": "Algorithms", "url": "https://w3c.github.io/ServiceWorker/#algorithms" }, "snapshot": { - "number": "", + "number": "A", "spec": "Service Workers", - "text": "Appendix A: Algorithms", + "text": "Algorithms", "url": "https://www.w3.org/TR/service-workers/#algorithms" } }, + "#all-fetch-listeners-are-empty-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "All Fetch Listeners Are Empty", + "url": "https://w3c.github.io/ServiceWorker/#all-fetch-listeners-are-empty-algorithm" + } + }, "#batch-cache-operations-algorithm": { "current": { "number": "", "spec": "Service Workers", - "text": "Batch Cache Operations Info about the 'Batch Cache Operations' definition.#batch-cache-operationsReferenced in: 5.4.4. addAll(requests) 5.4.5. put(request, response) 5.4.6. delete(request, options)", + "text": "Batch Cache Operations", "url": "https://w3c.github.io/ServiceWorker/#batch-cache-operations-algorithm" }, "snapshot": { @@ -311,7 +319,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Clear Registration Info about the 'Clear Registration' definition.#clear-registrationReferenced in: Handle User Agent Shutdown Unregister (2) Try Clear Registration", + "text": "Clear Registration", "url": "https://w3c.github.io/ServiceWorker/#clear-registration-algorithm" }, "snapshot": { @@ -619,7 +627,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Create Client Info about the 'Create Client' definition.#create-clientReferenced in: 4.3.2. matchAll(options) Resolve Get Client Promise", + "text": "Create Client", "url": "https://w3c.github.io/ServiceWorker/#create-client-algorithm" }, "snapshot": { @@ -629,11 +637,19 @@ "url": "https://www.w3.org/TR/service-workers/#create-client-algorithm" } }, + "#create-fetch-event-and-dispatch-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Create Fetch Event and Dispatch", + "url": "https://w3c.github.io/ServiceWorker/#create-fetch-event-and-dispatch-algorithm" + } + }, "#create-job-algorithm": { "current": { "number": "", "spec": "Service Workers", - "text": "Create Job Info about the 'Create Job' definition.#create-jobReferenced in: 3.2.8. update() 3.2.9. unregister() Start Register Soft Update", + "text": "Create Job", "url": "https://w3c.github.io/ServiceWorker/#create-job-algorithm" }, "snapshot": { @@ -647,7 +663,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Create Window Client Info about the 'Create Window Client' definition.#create-window-clientReferenced in: 4.2.10. focus() 4.2.11. navigate(url) 4.3.2. matchAll(options) 4.3.3. openWindow(url) Resolve Get Client Promise", + "text": "Create Window Client", "url": "https://w3c.github.io/ServiceWorker/#create-windowclient-algorithm" }, "snapshot": { @@ -715,7 +731,7 @@ }, "#execution-context-events": { "current": { - "number": "4.7", + "number": "4.8", "spec": "Service Workers", "text": "Events", "url": "https://w3c.github.io/ServiceWorker/#execution-context-events" @@ -743,7 +759,7 @@ }, "#extendablemessage-event-data": { "current": { - "number": "4.6.1", + "number": "4.7.1", "spec": "Service Workers", "text": "event.data", "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-data" @@ -757,7 +773,7 @@ }, "#extendablemessage-event-lasteventid": { "current": { - "number": "4.6.3", + "number": "4.7.3", "spec": "Service Workers", "text": "event.lastEventId", "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-lasteventid" @@ -771,7 +787,7 @@ }, "#extendablemessage-event-origin": { "current": { - "number": "4.6.2", + "number": "4.7.2", "spec": "Service Workers", "text": "event.origin", "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-origin" @@ -785,7 +801,7 @@ }, "#extendablemessage-event-ports": { "current": { - "number": "4.6.5", + "number": "4.7.5", "spec": "Service Workers", "text": "event.ports", "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-ports" @@ -799,7 +815,7 @@ }, "#extendablemessage-event-source": { "current": { - "number": "4.6.4", + "number": "4.7.4", "spec": "Service Workers", "text": "event.source", "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-source" @@ -813,7 +829,7 @@ }, "#extendablemessageevent-interface": { "current": { - "number": "4.6", + "number": "4.7", "spec": "Service Workers", "text": "ExtendableMessageEvent", "url": "https://w3c.github.io/ServiceWorker/#extendablemessageevent-interface" @@ -827,15 +843,15 @@ }, "#extended-http-headers": { "current": { - "number": "", + "number": "B", "spec": "Service Workers", - "text": "Appendix B: Extended HTTP headers", + "text": "Extended HTTP headers", "url": "https://w3c.github.io/ServiceWorker/#extended-http-headers" }, "snapshot": { - "number": "", + "number": "B", "spec": "Service Workers", - "text": "Appendix B: Extended HTTP headers", + "text": "Extended HTTP headers", "url": "https://www.w3.org/TR/service-workers/#extended-http-headers" } }, @@ -897,7 +913,7 @@ }, "#fetch-event-clientid": { "current": { - "number": "4.5.3", + "number": "4.6.3", "spec": "Service Workers", "text": "event.clientId", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-clientid" @@ -911,7 +927,7 @@ }, "#fetch-event-handled": { "current": { - "number": "4.5.6", + "number": "4.6.6", "spec": "Service Workers", "text": "event.handled", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-handled" @@ -925,7 +941,7 @@ }, "#fetch-event-preloadresponse": { "current": { - "number": "4.5.2", + "number": "4.6.2", "spec": "Service Workers", "text": "event.preloadResponse", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-preloadresponse" @@ -939,7 +955,7 @@ }, "#fetch-event-replacesClientId": { "current": { - "number": "4.5.5", + "number": "4.6.5", "spec": "Service Workers", "text": "event.replacesClientId", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-replacesClientId" @@ -953,7 +969,7 @@ }, "#fetch-event-request": { "current": { - "number": "4.5.1", + "number": "4.6.1", "spec": "Service Workers", "text": "event.request", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-request" @@ -967,7 +983,7 @@ }, "#fetch-event-respondwith": { "current": { - "number": "4.5.7", + "number": "4.6.7", "spec": "Service Workers", "text": "event.respondWith(r)", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-respondwith" @@ -981,7 +997,7 @@ }, "#fetch-event-resultingclientid": { "current": { - "number": "4.5.4", + "number": "4.6.4", "spec": "Service Workers", "text": "event.resultingClientId", "url": "https://w3c.github.io/ServiceWorker/#fetch-event-resultingclientid" @@ -995,7 +1011,7 @@ }, "#fetchevent-interface": { "current": { - "number": "4.5", + "number": "4.6", "spec": "Service Workers", "text": "FetchEvent", "url": "https://w3c.github.io/ServiceWorker/#fetchevent-interface" @@ -1011,7 +1027,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Finish Job Info about the 'Finish Job' definition.#finish-jobReferenced in: Register (2) (3) (4) Update (2) (3) (4) (5) Install (2) Unregister (2) (3)", + "text": "Finish Job", "url": "https://w3c.github.io/ServiceWorker/#finish-job-algorithm" }, "snapshot": { @@ -1025,7 +1041,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Fire Functional Event Info about the 'Fire Functional Event' definition.#fire-functional-eventReferenced in: 7.4. Firing Functional Events Fire Functional Event (2)", + "text": "Fire Functional Event", "url": "https://w3c.github.io/ServiceWorker/#fire-functional-event-algorithm" }, "snapshot": { @@ -1053,7 +1069,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Get Frame Type Info about the 'Get Frame Type' definition.#get-frame-typeReferenced in: 4.2.10. focus() 4.2.11. navigate(url) 4.3.2. matchAll(options) 4.3.3. openWindow(url) Resolve Get Client Promise", + "text": "Get Frame Type", "url": "https://w3c.github.io/ServiceWorker/#get-frametype-algorithm" }, "snapshot": { @@ -1067,7 +1083,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Get Newest Worker Info about the 'Get Newest Worker' definition.#get-newest-workerReferenced in: 3.2.8. update() Register Update Soft Update Install", + "text": "Get Newest Worker", "url": "https://w3c.github.io/ServiceWorker/#get-newest-worker-algorithm" }, "snapshot": { @@ -1081,7 +1097,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Get Registration Info about the 'Get Registration' definition.#get-registrationReferenced in: Register Update Unregister Match Service Worker Registration", + "text": "Get Registration", "url": "https://w3c.github.io/ServiceWorker/#get-registration-algorithm" }, "snapshot": { @@ -1091,6 +1107,14 @@ "url": "https://www.w3.org/TR/service-workers/#get-registration-algorithm" } }, + "#get-router-source-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Get Router Source", + "url": "https://w3c.github.io/ServiceWorker/#get-router-source-algorithm" + } + }, "#global-caches": { "current": { "number": "5.3.1", @@ -1207,7 +1231,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Install Info about the 'Install' definition.#installReferenced in: 3.5. Events 4.7. Events Update", + "text": "Install", "url": "https://w3c.github.io/ServiceWorker/#installation-algorithm" }, "snapshot": { @@ -1217,11 +1241,19 @@ "url": "https://www.w3.org/TR/service-workers/#installation-algorithm" } }, + "#installevent-interface": { + "current": { + "number": "4.5", + "spec": "Service Workers", + "text": "InstallEvent", + "url": "https://w3c.github.io/ServiceWorker/#installevent-interface" + } + }, "#is-async-module-algorithm": { "current": { "number": "", "spec": "Service Workers", - "text": "Is Async Module Info about the 'Is Async Module' definition.#is-async-moduleReferenced in: Update Is Async Module", + "text": "Is Async Module", "url": "https://w3c.github.io/ServiceWorker/#is-async-module-algorithm" }, "snapshot": { @@ -1245,6 +1277,22 @@ "url": "https://www.w3.org/TR/service-workers/#issues-index" } }, + "#lookup-race-response-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Lookup Race Response", + "url": "https://w3c.github.io/ServiceWorker/#lookup-race-response-algorithm" + } + }, + "#match-router-condition-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Match Router Condition", + "url": "https://w3c.github.io/ServiceWorker/#match-router-condition-algorithm" + } + }, "#model": { "current": { "number": "2", @@ -1515,7 +1563,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Notify Controller Change Info about the 'Notify Controller Change' definition.#notify-controller-changeReferenced in: 4.3.4. claim() Activate", + "text": "Notify Controller Change", "url": "https://w3c.github.io/ServiceWorker/#notify-controller-change-algorithm" }, "snapshot": { @@ -1529,7 +1577,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Handle Service Worker Client Unload Info about the 'Handle Service Worker Client Unload' definition.#handle-service-worker-client-unloadReferenced in: 4.3.4. claim() Install Unregister", + "text": "Handle Service Worker Client Unload", "url": "https://w3c.github.io/ServiceWorker/#on-client-unload-algorithm" }, "snapshot": { @@ -1543,7 +1591,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Handle Fetch Info about the 'Handle Fetch' definition.#handle-fetchReferenced in: 3.4.3. register(scriptURL, options) 4.5.7. event.respondWith(r) (2) 4.7. Events (2) 6.7. Implementer Concerns Handle Fetch", + "text": "Handle Fetch", "url": "https://w3c.github.io/ServiceWorker/#on-fetch-request-algorithm" }, "snapshot": { @@ -1557,7 +1605,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Handle User Agent Shutdown Info about the 'Handle User Agent Shutdown' definition.#handle-user-agent-shutdownReferenced in: 2.7. User Agent Shutdown", + "text": "Handle User Agent Shutdown", "url": "https://w3c.github.io/ServiceWorker/#on-user-agent-shutdown-algorithm" }, "snapshot": { @@ -1595,6 +1643,14 @@ "url": "https://www.w3.org/TR/service-workers/#origin-restriction" } }, + "#parse-urlpattern-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Parse URL Pattern", + "url": "https://w3c.github.io/ServiceWorker/#parse-urlpattern-algorithm" + } + }, "#path-restriction": { "current": { "number": "6.5", @@ -1627,7 +1683,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Query Cache Info about the 'Query Cache' definition.#query-cacheReferenced in: 5.4.2. matchAll(request, options) 5.4.7. keys(request, options) Batch Cache Operations (2) (3)", + "text": "Query Cache", "url": "https://w3c.github.io/ServiceWorker/#query-cache-algorithm" }, "snapshot": { @@ -1655,7 +1711,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Register Info about the 'Register' definition.#registerReferenced in: 2.3.1. Lifetime 4.1. ServiceWorkerGlobalScope Run Job", + "text": "Register", "url": "https://w3c.github.io/ServiceWorker/#register-algorithm" }, "snapshot": { @@ -1665,11 +1721,19 @@ "url": "https://www.w3.org/TR/service-workers/#register-algorithm" } }, + "#register-router-method": { + "current": { + "number": "4.5.1", + "spec": "Service Workers", + "text": "event.addRoutes(rules)", + "url": "https://w3c.github.io/ServiceWorker/#register-router-method" + } + }, "#reject-job-promise-algorithm": { "current": { "number": "", "spec": "Service Workers", - "text": "Reject Job Promise Info about the 'Reject Job Promise' definition.#reject-job-promiseReferenced in: Register (2) (3) Update (2) (3) (4) (5) (6) (7) Unregister", + "text": "Reject Job Promise", "url": "https://w3c.github.io/ServiceWorker/#reject-job-promise-algorithm" }, "snapshot": { @@ -1683,7 +1747,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Request Matches Cached Item Info about the 'Request Matches Cached Item' definition.#request-matches-cached-itemReferenced in: Query Cache", + "text": "Request Matches Cached Item", "url": "https://w3c.github.io/ServiceWorker/#request-matches-cached-item-algorithm" }, "snapshot": { @@ -1697,7 +1761,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Resolve Get Client Promise Info about the 'Resolve Get Client Promise' definition.#resolve-get-client-promiseReferenced in: 4.3.1. get(id)", + "text": "Resolve Get Client Promise", "url": "https://w3c.github.io/ServiceWorker/#resolve-get-client-promise-algorithm" }, "snapshot": { @@ -1711,7 +1775,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Resolve Job Promise Info about the 'Resolve Job Promise' definition.#resolve-job-promiseReferenced in: Register Update Install Unregister (2)", + "text": "Resolve Job Promise", "url": "https://w3c.github.io/ServiceWorker/#resolve-job-promise-algorithm" }, "snapshot": { @@ -1725,7 +1789,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Run Job Info about the 'Run Job' definition.#run-jobReferenced in: Schedule Job Finish Job", + "text": "Run Job", "url": "https://w3c.github.io/ServiceWorker/#run-job-algorithm" }, "snapshot": { @@ -1739,7 +1803,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Run Service Worker Info about the 'Run Service Worker' definition.#run-service-workerReferenced in: 3.1.5. postMessage(message, options) 6.2. Content Security Policy Update (2) Install Activate Handle Fetch Fire Functional Event", + "text": "Run Service Worker", "url": "https://w3c.github.io/ServiceWorker/#run-service-worker-algorithm" }, "snapshot": { @@ -1753,7 +1817,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Schedule Job Info about the 'Schedule Job' definition.#schedule-jobReferenced in: 3.2.8. update() 3.2.9. unregister() Start Register Soft Update", + "text": "Schedule Job", "url": "https://w3c.github.io/ServiceWorker/#schedule-job-algorithm" }, "snapshot": { @@ -1767,7 +1831,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Match Service Worker Registration Info about the 'Match Service Worker Registration' definition.#match-service-worker-registrationReferenced in: 2.5.1. The window client case 2.5.2. The worker client case 3.1.2. scriptURL 3.4.2. ready 3.4.4. getRegistration(clientURL) 4.3.4. claim() Activate Handle Fetch", + "text": "Match Service Worker Registration", "url": "https://w3c.github.io/ServiceWorker/#scope-match-algorithm" }, "snapshot": { @@ -1991,7 +2055,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Service Worker Has No Pending Events Info about the 'Service Worker Has No Pending Events' definition.#service-worker-has-no-pending-eventsReferenced in: 4.4. ExtendableEvent Try Activate Try Clear Registration (2) (3)", + "text": "Service Worker Has No Pending Events", "url": "https://w3c.github.io/ServiceWorker/#service-worker-has-no-pending-events-algorithm" }, "snapshot": { @@ -2285,7 +2349,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Set Registration Info about the 'Set Registration' definition.#set-registrationReferenced in: Register", + "text": "Set Registration", "url": "https://w3c.github.io/ServiceWorker/#set-registration-algorithm" }, "snapshot": { @@ -2295,11 +2359,19 @@ "url": "https://www.w3.org/TR/service-workers/#set-registration-algorithm" } }, + "#setup-serviceworkerglobalscope": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Setup ServiceWorkerGlobalScope", + "url": "https://w3c.github.io/ServiceWorker/#setup-serviceworkerglobalscope" + } + }, "#should-skip-event-algorithm": { "current": { "number": "", "spec": "Service Workers", - "text": "Should Skip Event Info about the 'Should Skip Event' definition.#should-skip-eventReferenced in: 3.1.5. postMessage(message, options) Install Activate Handle Fetch Fire Functional Event", + "text": "Should Skip Event", "url": "https://w3c.github.io/ServiceWorker/#should-skip-event-algorithm" }, "snapshot": { @@ -2313,7 +2385,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Soft Update Info about the 'Soft Update' definition.#soft-updateReferenced in: Update Handle Fetch (2) Fire Functional Event (2) (3)", + "text": "Soft Update", "url": "https://w3c.github.io/ServiceWorker/#soft-update-algorithm" }, "snapshot": { @@ -2341,7 +2413,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Start Register Info about the 'Start Register' definition.#start-registerReferenced in: 3.4.3. register(scriptURL, options)", + "text": "Start Register", "url": "https://w3c.github.io/ServiceWorker/#start-register-algorithm" }, "snapshot": { @@ -2383,7 +2455,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Terminate Service Worker Info about the 'Terminate Service Worker' definition.#terminate-service-workerReferenced in: 2.1.1. Lifetime 2.3. Service Worker Registration 4.4. ExtendableEvent Install Activate Run Service Worker Handle Service Worker Client Unload Clear Registration (2) (3)", + "text": "Terminate Service Worker", "url": "https://w3c.github.io/ServiceWorker/#terminate-service-worker-algorithm" }, "snapshot": { @@ -2425,7 +2497,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Try Activate Info about the 'Try Activate' definition.#try-activateReferenced in: 4.1.4. skipWaiting() 4.4. ExtendableEvent Install (2) Handle Service Worker Client Unload", + "text": "Try Activate", "url": "https://w3c.github.io/ServiceWorker/#try-activate-algorithm" }, "snapshot": { @@ -2439,7 +2511,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Try Clear Registration Info about the 'Try Clear Registration' definition.#try-clear-registrationReferenced in: 4.4. ExtendableEvent Handle Service Worker Client Unload Unregister (2)", + "text": "Try Clear Registration", "url": "https://w3c.github.io/ServiceWorker/#try-clear-registration-algorithm" }, "snapshot": { @@ -2453,7 +2525,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Unregister Info about the 'Unregister' definition.#unregisterReferenced in: Run Job", + "text": "Unregister", "url": "https://w3c.github.io/ServiceWorker/#unregister-algorithm" }, "snapshot": { @@ -2467,7 +2539,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Update Info about the 'Update' definition.#updateReferenced in: Run Job Register Update", + "text": "Update", "url": "https://w3c.github.io/ServiceWorker/#update-algorithm" }, "snapshot": { @@ -2481,7 +2553,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Update Registration State Info about the 'Update Registration State' definition.#update-registration-stateReferenced in: Install (2) (3) (4) Activate (2) Clear Registration (2) (3)", + "text": "Update Registration State", "url": "https://w3c.github.io/ServiceWorker/#update-registration-state-algorithm" }, "snapshot": { @@ -2495,7 +2567,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Update Service Worker Extended Events Set Info about the 'Update Service Worker Extended Events Set' definition.#update-service-worker-extended-events-setReferenced in: 3.1.5. postMessage(message, options) Handle Fetch Fire Functional Event", + "text": "Update Service Worker Extended Events Set", "url": "https://w3c.github.io/ServiceWorker/#update-service-worker-extended-events-set-algorithm" }, "snapshot": { @@ -2509,7 +2581,7 @@ "current": { "number": "", "spec": "Service Workers", - "text": "Update Worker State Info about the 'Update Worker State' definition.#update-worker-stateReferenced in: Install (2) (3) (4) (5) Activate (2) (3) Clear Registration (2) (3)", + "text": "Update Worker State", "url": "https://w3c.github.io/ServiceWorker/#update-state-algorithm" }, "snapshot": { @@ -2533,6 +2605,14 @@ "url": "https://www.w3.org/TR/service-workers/#user-agent-shutdown" } }, + "#verify-router-rule-algorithm": { + "current": { + "number": "", + "spec": "Service Workers", + "text": "Verify Router Condition", + "url": "https://w3c.github.io/ServiceWorker/#verify-router-rule-algorithm" + } + }, "#w3c-conformance": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-shape-detection-api.json b/bikeshed/spec-data/readonly/headings/headings-shape-detection-api.json index 98ab6f8197..33f75edb40 100644 --- a/bikeshed/spec-data/readonly/headings/headings-shape-detection-api.json +++ b/bikeshed/spec-data/readonly/headings/headings-shape-detection-api.json @@ -223,14 +223,6 @@ "url": "https://wicg.github.io/shape-detection-api/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Accelerated Shape Detection in Images", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/shape-detection-api/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-shared-storage.json b/bikeshed/spec-data/readonly/headings/headings-shared-storage.json new file mode 100644 index 0000000000..437cd8bdc0 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-shared-storage.json @@ -0,0 +1,490 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Abstract", + "url": "https://wicg.github.io/shared-storage/#abstract" + } + }, + "#add-module-monkey-patch": { + "current": { + "number": "2.2.6", + "spec": "Shared Storage API", + "text": "Monkey Patch for addModule()", + "url": "https://wicg.github.io/shared-storage/#add-module-monkey-patch" + } + }, + "#backend": { + "current": { + "number": "3", + "spec": "Shared Storage API", + "text": "Shared Storage’s Backend", + "url": "https://wicg.github.io/shared-storage/#backend" + } + }, + "#budgets": { + "current": { + "number": "2.6", + "spec": "Shared Storage API", + "text": "Entropy Budgets", + "url": "https://wicg.github.io/shared-storage/#budgets" + } + }, + "#clear": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "10. Clear Site Data Integration", + "url": "https://wicg.github.io/shared-storage/#clear" + } + }, + "#create-a-new-worklet-via-shared-storage": { + "current": { + "number": "5.2", + "spec": "Shared Storage API", + "text": "Create a new worklet via SharedStorage", + "url": "https://wicg.github.io/shared-storage/#create-a-new-worklet-via-shared-storage" + } + }, + "#create-a-worklet-global-scope-monkey-patch": { + "current": { + "number": "2.2.2", + "spec": "Shared Storage API", + "text": "Monkey Patch for create a worklet global scope", + "url": "https://wicg.github.io/shared-storage/#create-a-worklet-global-scope-monkey-patch" + } + }, + "#database": { + "current": { + "number": "3.2", + "spec": "Shared Storage API", + "text": "The Shared Storage Database", + "url": "https://wicg.github.io/shared-storage/#database" + } + }, + "#database-algorithms": { + "current": { + "number": "3.3", + "spec": "Shared Storage API", + "text": "The Database Algorithms", + "url": "https://wicg.github.io/shared-storage/#database-algorithms" + } + }, + "#fetch-a-worklet-script-graph-monkey-patch": { + "current": { + "number": "2.2.3", + "spec": "Shared Storage API", + "text": "Monkey Patch for fetch a worklet script graph", + "url": "https://wicg.github.io/shared-storage/#fetch-a-worklet-script-graph-monkey-patch" + } + }, + "#fetch-attr": { + "current": { + "number": "8.1", + "spec": "Shared Storage API", + "text": "sharedStorageWritable Key", + "url": "https://wicg.github.io/shared-storage/#fetch-attr" + } + }, + "#fetch-monkeypatches": { + "current": { + "number": "8", + "spec": "Shared Storage API", + "text": "Fetch Monkey Patches", + "url": "https://wicg.github.io/shared-storage/#fetch-monkeypatches" + } + }, + "#getter": { + "current": { + "number": "5.4", + "spec": "Shared Storage API", + "text": "Getter Methods", + "url": "https://wicg.github.io/shared-storage/#getter" + } + }, + "#global-scope": { + "current": { + "number": "2.3", + "spec": "Shared Storage API", + "text": "The SharedStorageWorkletGlobalScope", + "url": "https://wicg.github.io/shared-storage/#global-scope" + } + }, + "#headers": { + "current": { + "number": "8.3", + "spec": "Shared Storage API", + "text": "Shared Storage HTTP Headers", + "url": "https://wicg.github.io/shared-storage/#headers" + } + }, + "#html-algo": { + "current": { + "number": "7.2", + "spec": "Shared Storage API", + "text": "HTML Algorithm Modifications", + "url": "https://wicg.github.io/shared-storage/#html-algo" + } + }, + "#html-attr": { + "current": { + "number": "7.1", + "spec": "Shared Storage API", + "text": "sharedStorageWritable & sharedstoragewritable Attributes", + "url": "https://wicg.github.io/shared-storage/#html-attr" + } + }, + "#html-monkeypatches": { + "current": { + "number": "7", + "spec": "Shared Storage API", + "text": "HTML Monkey Patches", + "url": "https://wicg.github.io/shared-storage/#html-monkeypatches" + } + }, + "#http": { + "current": { + "number": "6", + "spec": "Shared Storage API", + "text": "Triggering Operations Via HTTP Response Header", + "url": "https://wicg.github.io/shared-storage/#http" + } + }, + "#http-fetch-monkey-patch": { + "current": { + "number": "2.2.5", + "spec": "Shared Storage API", + "text": "Monkey Patch for HTTP fetch", + "url": "https://wicg.github.io/shared-storage/#http-fetch-monkey-patch" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "IDL Index", + "url": "https://wicg.github.io/shared-storage/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Index", + "url": "https://wicg.github.io/shared-storage/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/shared-storage/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/shared-storage/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Informative References", + "url": "https://wicg.github.io/shared-storage/#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Shared Storage API", + "text": "Introduction", + "url": "https://wicg.github.io/shared-storage/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Issues Index", + "url": "https://wicg.github.io/shared-storage/#issues-index" + } + }, + "#iteration": { + "current": { + "number": "5.5", + "spec": "Shared Storage API", + "text": "Iteration", + "url": "https://wicg.github.io/shared-storage/#iteration" + } + }, + "#mod-create-nav": { + "current": { + "number": "7.2.2", + "spec": "Shared Storage API", + "text": "Modification to Create navigation params by fetching Algorithm", + "url": "https://wicg.github.io/shared-storage/#mod-create-nav" + } + }, + "#mod-fetch-algo": { + "current": { + "number": "8.2", + "spec": "Shared Storage API", + "text": "Fetch Algorithm Modifications", + "url": "https://wicg.github.io/shared-storage/#mod-fetch-algo" + } + }, + "#mod-http-fetch": { + "current": { + "number": "8.2.3", + "spec": "Shared Storage API", + "text": "Modification to HTTP fetch Algorithm", + "url": "https://wicg.github.io/shared-storage/#mod-http-fetch" + } + }, + "#mod-http-net-fetch": { + "current": { + "number": "8.2.2", + "spec": "Shared Storage API", + "text": "Modification to HTTP network or cache fetch Algorithm", + "url": "https://wicg.github.io/shared-storage/#mod-http-net-fetch" + } + }, + "#mod-request-con": { + "current": { + "number": "8.2.1", + "spec": "Shared Storage API", + "text": "Modification to the Request Constructor Algorithm", + "url": "https://wicg.github.io/shared-storage/#mod-request-con" + } + }, + "#mod-update-img": { + "current": { + "number": "7.2.1", + "spec": "Shared Storage API", + "text": "Modification to Update the image data Algorithm", + "url": "https://wicg.github.io/shared-storage/#mod-update-img" + } + }, + "#nav-budget": { + "current": { + "number": "2.6.1", + "spec": "Shared Storage API", + "text": "Navigation Entropy Budget", + "url": "https://wicg.github.io/shared-storage/#nav-budget" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Normative References", + "url": "https://wicg.github.io/shared-storage/#normative" + } + }, + "#permission": { + "current": { + "number": "9", + "spec": "Shared Storage API", + "text": "Permissions Policy Integration", + "url": "https://wicg.github.io/shared-storage/#permission" + } + }, + "#privacy": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "11. Privacy Considerations", + "url": "https://wicg.github.io/shared-storage/#privacy" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "References", + "url": "https://wicg.github.io/shared-storage/#references" + } + }, + "#report-budget": { + "current": { + "number": "2.6.2", + "spec": "Shared Storage API", + "text": "Reporting Entropy Budget", + "url": "https://wicg.github.io/shared-storage/#report-budget" + } + }, + "#reporting": { + "current": { + "number": "2.5", + "spec": "Shared Storage API", + "text": "SharedStorageUrlWithMetadata and Reporting", + "url": "https://wicg.github.io/shared-storage/#reporting" + } + }, + "#request-destination-monkey-patch": { + "current": { + "number": "2.3.1", + "spec": "Shared Storage API", + "text": "Monkey Patch for request destination", + "url": "https://wicg.github.io/shared-storage/#request-destination-monkey-patch" + } + }, + "#request-header": { + "current": { + "number": "8.3.1", + "spec": "Shared Storage API", + "text": "`Sec-Shared-Storage-Writable` Request Header", + "url": "https://wicg.github.io/shared-storage/#request-header" + } + }, + "#response-header": { + "current": { + "number": "8.3.2", + "spec": "Shared Storage API", + "text": "`Shared-Storage-Write` Response Header", + "url": "https://wicg.github.io/shared-storage/#response-header" + } + }, + "#run-op-shared-storage": { + "current": { + "number": "5.1", + "spec": "Shared Storage API", + "text": "Run Operation Methods on SharedStorage", + "url": "https://wicg.github.io/shared-storage/#run-op-shared-storage" + } + }, + "#run-op-shared-storage-worklet": { + "current": { + "number": "2.1", + "spec": "Shared Storage API", + "text": "Run Operation Methods on SharedStorageWorklet", + "url": "https://wicg.github.io/shared-storage/#run-op-shared-storage-worklet" + } + }, + "#scope-algo": { + "current": { + "number": "2.4", + "spec": "Shared Storage API", + "text": "SharedStorageWorkletGlobalScope algorithms", + "url": "https://wicg.github.io/shared-storage/#scope-algo" + } + }, + "#set-up-a-worklet-environment-settings-object-monkey-patch": { + "current": { + "number": "2.2.1", + "spec": "Shared Storage API", + "text": "Monkey Patch for set up a worklet environment settings object", + "url": "https://wicg.github.io/shared-storage/#set-up-a-worklet-environment-settings-object-monkey-patch" + } + }, + "#setter": { + "current": { + "number": "5.3", + "spec": "Shared Storage API", + "text": "Setter/Deleter Methods", + "url": "https://wicg.github.io/shared-storage/#setter" + } + }, + "#shared-storage-cross-origin-worklet-allowed": { + "current": { + "number": "2.2.4", + "spec": "Shared Storage API", + "text": "The `Shared-Storage-Cross-Origin-Worklet-Allowed` HTTP response header", + "url": "https://wicg.github.io/shared-storage/#shared-storage-cross-origin-worklet-allowed" + } + }, + "#shared-storage-interface": { + "current": { + "number": "5", + "spec": "Shared Storage API", + "text": "The SharedStorage Interface", + "url": "https://wicg.github.io/shared-storage/#shared-storage-interface" + } + }, + "#ss-fetch-algo": { + "current": { + "number": "8.4", + "spec": "Shared Storage API", + "text": "Shared Storage Fetch-Related Algorithms", + "url": "https://wicg.github.io/shared-storage/#ss-fetch-algo" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Status of this document", + "url": "https://wicg.github.io/shared-storage/#status" + } + }, + "#storage-monkey-patch": { + "current": { + "number": "3.1", + "spec": "Shared Storage API", + "text": "Monkey Patch for the Storage Model", + "url": "https://wicg.github.io/shared-storage/#storage-monkey-patch" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Shared Storage API", + "url": "https://wicg.github.io/shared-storage/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Table of Contents", + "url": "https://wicg.github.io/shared-storage/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Conformance", + "url": "https://wicg.github.io/shared-storage/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Shared Storage API", + "text": "Document conventions", + "url": "https://wicg.github.io/shared-storage/#w3c-conventions" + } + }, + "#window-extension": { + "current": { + "number": "4", + "spec": "Shared Storage API", + "text": "Extension to the Window interface", + "url": "https://wicg.github.io/shared-storage/#window-extension" + } + }, + "#worklet": { + "current": { + "number": "2", + "spec": "Shared Storage API", + "text": "The SharedStorageWorklet Interface", + "url": "https://wicg.github.io/shared-storage/#worklet" + } + }, + "#worklet-monkey-patch": { + "current": { + "number": "2.2", + "spec": "Shared Storage API", + "text": "Monkey Patch for Worklets", + "url": "https://wicg.github.io/shared-storage/#worklet-monkey-patch" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-soft-navigations.json b/bikeshed/spec-data/readonly/headings/headings-soft-navigations.json new file mode 100644 index 0000000000..7e22275378 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-soft-navigations.json @@ -0,0 +1,362 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Abstract", + "url": "https://wicg.github.io/soft-navigations/#abstract" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "IDL Index", + "url": "https://wicg.github.io/soft-navigations/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Index", + "url": "https://wicg.github.io/soft-navigations/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/soft-navigations/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/soft-navigations/#index-defined-here" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Issues Index", + "url": "https://wicg.github.io/soft-navigations/#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Normative References", + "url": "https://wicg.github.io/soft-navigations/#normative" + } + }, + "#priv-sec": { + "current": { + "number": "8", + "spec": "Soft Navigations", + "text": "Security & privacy considerations", + "url": "https://wicg.github.io/soft-navigations/#priv-sec" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "References", + "url": "https://wicg.github.io/soft-navigations/#references" + } + }, + "#sec-algos": { + "current": { + "number": "3", + "spec": "Soft Navigations", + "text": "Algorithms", + "url": "https://wicg.github.io/soft-navigations/#sec-algos" + } + }, + "#sec-callbacks": { + "current": { + "number": "7.6", + "spec": "Soft Navigations", + "text": "Callbacks", + "url": "https://wicg.github.io/soft-navigations/#sec-callbacks" + } + }, + "#sec-contentful-paint": { + "current": { + "number": "3.4", + "spec": "Soft Navigations", + "text": "Contentful paint", + "url": "https://wicg.github.io/soft-navigations/#sec-contentful-paint" + } + }, + "#sec-continuations": { + "current": { + "number": "7.7", + "spec": "Soft Navigations", + "text": "Continuations", + "url": "https://wicg.github.io/soft-navigations/#sec-continuations" + } + }, + "#sec-current-task": { + "current": { + "number": "6.3.1", + "spec": "Soft Navigations", + "text": "Get current task", + "url": "https://wicg.github.io/soft-navigations/#sec-current-task" + } + }, + "#sec-current-task-id": { + "current": { + "number": "6.3.2", + "spec": "Soft Navigations", + "text": "Get current task ID", + "url": "https://wicg.github.io/soft-navigations/#sec-current-task-id" + } + }, + "#sec-entry": { + "current": { + "number": "3.1", + "spec": "Soft Navigations", + "text": "Soft navigation entry", + "url": "https://wicg.github.io/soft-navigations/#sec-entry" + } + }, + "#sec-event-loop": { + "current": { + "number": "7.2", + "spec": "Soft Navigations", + "text": "Event Loop additions", + "url": "https://wicg.github.io/soft-navigations/#sec-event-loop" + } + }, + "#sec-hostcalljobcallback": { + "current": { + "number": "7.7.2", + "spec": "Soft Navigations", + "text": "HostCallJobCallback", + "url": "https://wicg.github.io/soft-navigations/#sec-hostcalljobcallback" + } + }, + "#sec-hostmakejobcallback": { + "current": { + "number": "7.7.1", + "spec": "Soft Navigations", + "text": "HostMakeJobCallback ##{#sec-hostmakejobcallback}", + "url": "https://wicg.github.io/soft-navigations/#sec-hostmakejobcallback" + } + }, + "#sec-html": { + "current": { + "number": "4", + "spec": "Soft Navigations", + "text": "HTML integration", + "url": "https://wicg.github.io/soft-navigations/#sec-html" + } + }, + "#sec-html-document": { + "current": { + "number": "4.1", + "spec": "Soft Navigations", + "text": "Document", + "url": "https://wicg.github.io/soft-navigations/#sec-html-document" + } + }, + "#sec-html-events": { + "current": { + "number": "4.3", + "spec": "Soft Navigations", + "text": "Event dispatch", + "url": "https://wicg.github.io/soft-navigations/#sec-html-events" + } + }, + "#sec-html-history": { + "current": { + "number": "4.2", + "spec": "Soft Navigations", + "text": "History", + "url": "https://wicg.github.io/soft-navigations/#sec-html-history" + } + }, + "#sec-html-node": { + "current": { + "number": "4.4", + "spec": "Soft Navigations", + "text": "Node", + "url": "https://wicg.github.io/soft-navigations/#sec-html-node" + } + }, + "#sec-interaction": { + "current": { + "number": "3.2", + "spec": "Soft Navigations", + "text": "Interaction", + "url": "https://wicg.github.io/soft-navigations/#sec-interaction" + } + }, + "#sec-interface": { + "current": { + "number": "2", + "spec": "Soft Navigations", + "text": "The SoftNavigationEntry interface", + "url": "https://wicg.github.io/soft-navigations/#sec-interface" + } + }, + "#sec-intro": { + "current": { + "number": "1", + "spec": "Soft Navigations", + "text": "Introduction", + "url": "https://wicg.github.io/soft-navigations/#sec-intro" + } + }, + "#sec-is-ancestor": { + "current": { + "number": "6.2", + "spec": "Soft Navigations", + "text": "Is ancestor", + "url": "https://wicg.github.io/soft-navigations/#sec-is-ancestor" + } + }, + "#sec-is-ancestor-in-set": { + "current": { + "number": "6.3", + "spec": "Soft Navigations", + "text": "Is ancestor in set", + "url": "https://wicg.github.io/soft-navigations/#sec-is-ancestor-in-set" + } + }, + "#sec-lcp-integration": { + "current": { + "number": "5", + "spec": "Soft Navigations", + "text": "LCP integration", + "url": "https://wicg.github.io/soft-navigations/#sec-lcp-integration" + } + }, + "#sec-messageport": { + "current": { + "number": "7.8", + "spec": "Soft Navigations", + "text": "MessagePorts", + "url": "https://wicg.github.io/soft-navigations/#sec-messageport" + } + }, + "#sec-same-document-commit": { + "current": { + "number": "3.3", + "spec": "Soft Navigations", + "text": "Same document commit", + "url": "https://wicg.github.io/soft-navigations/#sec-same-document-commit" + } + }, + "#sec-same-document-navigations": { + "current": { + "number": "7.9", + "spec": "Soft Navigations", + "text": "Same-document navigations", + "url": "https://wicg.github.io/soft-navigations/#sec-same-document-navigations" + } + }, + "#sec-script": { + "current": { + "number": "7.3", + "spec": "Soft Navigations", + "text": "Script execution", + "url": "https://wicg.github.io/soft-navigations/#sec-script" + } + }, + "#sec-task": { + "current": { + "number": "7.1", + "spec": "Soft Navigations", + "text": "Task additions", + "url": "https://wicg.github.io/soft-navigations/#sec-task" + } + }, + "#sec-task-attribution-algorithms": { + "current": { + "number": "6", + "spec": "Soft Navigations", + "text": "Task Attibution Algorithms", + "url": "https://wicg.github.io/soft-navigations/#sec-task-attribution-algorithms" + } + }, + "#sec-task-attribution-integration": { + "current": { + "number": "7", + "spec": "Soft Navigations", + "text": "TaskAttribution integration", + "url": "https://wicg.github.io/soft-navigations/#sec-task-attribution-integration" + } + }, + "#sec-task-attribution-intro": { + "current": { + "number": "1.1", + "spec": "Soft Navigations", + "text": "Task Attribution", + "url": "https://wicg.github.io/soft-navigations/#sec-task-attribution-intro" + } + }, + "#sec-task-queueing": { + "current": { + "number": "7.4", + "spec": "Soft Navigations", + "text": "Task queueing", + "url": "https://wicg.github.io/soft-navigations/#sec-task-queueing" + } + }, + "#sec-task-scope": { + "current": { + "number": "6.1", + "spec": "Soft Navigations", + "text": "Task scope", + "url": "https://wicg.github.io/soft-navigations/#sec-task-scope" + } + }, + "#sec-timers": { + "current": { + "number": "7.5", + "spec": "Soft Navigations", + "text": "Timers", + "url": "https://wicg.github.io/soft-navigations/#sec-timers" + } + }, + "#sec-view-transitions": { + "current": { + "number": "7.10", + "spec": "Soft Navigations", + "text": "View transitions", + "url": "https://wicg.github.io/soft-navigations/#sec-view-transitions" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Status of this document", + "url": "https://wicg.github.io/soft-navigations/#status" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Soft Navigations", + "url": "https://wicg.github.io/soft-navigations/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Soft Navigations", + "text": "Table of Contents", + "url": "https://wicg.github.io/soft-navigations/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sourcemap.json b/bikeshed/spec-data/readonly/headings/headings-sourcemap.json new file mode 100644 index 0000000000..f60f023904 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-sourcemap.json @@ -0,0 +1,266 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Abstract", + "url": "https://tc39.es/source-map/#abstract" + } + }, + "#background": { + "current": { + "number": "1", + "spec": "Source Map", + "text": "Background", + "url": "https://tc39.es/source-map/#background" + } + }, + "#conventions": { + "current": { + "number": "6", + "spec": "Source Map", + "text": "Conventions", + "url": "https://tc39.es/source-map/#conventions" + } + }, + "#extensions": { + "current": { + "number": "4.3", + "spec": "Source Map", + "text": "Extensions", + "url": "https://tc39.es/source-map/#extensions" + } + }, + "#extraction-methods-for-css-sources": { + "current": { + "number": "6.2.2.2", + "spec": "Source Map", + "text": "Extraction methods for CSS sources", + "url": "https://tc39.es/source-map/#extraction-methods-for-css-sources" + } + }, + "#extraction-methods-for-javascript-sources": { + "current": { + "number": "6.2.2.1", + "spec": "Source Map", + "text": "Extraction methods for JavaScript sources", + "url": "https://tc39.es/source-map/#extraction-methods-for-javascript-sources" + } + }, + "#extraction-methods-for-webassembly-binaries": { + "current": { + "number": "6.2.2.3", + "spec": "Source Map", + "text": "Extraction methods for WebAssembly binaries", + "url": "https://tc39.es/source-map/#extraction-methods-for-webassembly-binaries" + } + }, + "#fetching-source-maps": { + "current": { + "number": "9", + "spec": "Source Map", + "text": "Fetching Source Maps", + "url": "https://tc39.es/source-map/#fetching-source-maps" + } + }, + "#general-goals": { + "current": { + "number": "3", + "spec": "Source Map", + "text": "General Goals", + "url": "https://tc39.es/source-map/#general-goals" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Index", + "url": "https://tc39.es/source-map/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Terms defined by reference", + "url": "https://tc39.es/source-map/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Terms defined by this specification", + "url": "https://tc39.es/source-map/#index-defined-here" + } + }, + "#index-map": { + "current": { + "number": "5", + "spec": "Source Map", + "text": "Index Map", + "url": "https://tc39.es/source-map/#index-map" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Informative References", + "url": "https://tc39.es/source-map/#informative" + } + }, + "#introduction": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Introduction", + "url": "https://tc39.es/source-map/#introduction" + } + }, + "#language-neutral-stack-mapping-notes": { + "current": { + "number": "7", + "spec": "Source Map", + "text": "Language Neutral Stack Mapping Notes", + "url": "https://tc39.es/source-map/#language-neutral-stack-mapping-notes" + } + }, + "#license": { + "current": { + "number": "", + "spec": "Source Map", + "text": "License", + "url": "https://tc39.es/source-map/#license" + } + }, + "#linking-evald-code-to-named-generated-code": { + "current": { + "number": "6.3", + "spec": "Source Map", + "text": "Linking eval’d code to named generated code", + "url": "https://tc39.es/source-map/#linking-evald-code-to-named-generated-code" + } + }, + "#linking-generated-code": { + "current": { + "number": "6.2", + "spec": "Source Map", + "text": "Linking generated code to source maps", + "url": "https://tc39.es/source-map/#linking-generated-code" + } + }, + "#linking-through-http-headers": { + "current": { + "number": "6.2.1", + "spec": "Source Map", + "text": "Linking through HTTP headers", + "url": "https://tc39.es/source-map/#linking-through-http-headers" + } + }, + "#linking-through-inline-annotations": { + "current": { + "number": "6.2.2", + "spec": "Source Map", + "text": "Linking through inline annotations", + "url": "https://tc39.es/source-map/#linking-through-inline-annotations" + } + }, + "#mappings-structure": { + "current": { + "number": "4.1", + "spec": "Source Map", + "text": "Mappings Structure", + "url": "https://tc39.es/source-map/#mappings-structure" + } + }, + "#multi-level-mapping-notes": { + "current": { + "number": "8", + "spec": "Source Map", + "text": "Multi-level Mapping Notes", + "url": "https://tc39.es/source-map/#multi-level-mapping-notes" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Normative References", + "url": "https://tc39.es/source-map/#normative" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Stage 0: Strawman, 21 August 2024", + "url": "https://tc39.es/source-map/#profile-and-date" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Source Map", + "text": "References", + "url": "https://tc39.es/source-map/#references" + } + }, + "#resolving-sources": { + "current": { + "number": "4.2", + "spec": "Source Map", + "text": "Resolving Sources", + "url": "https://tc39.es/source-map/#resolving-sources" + } + }, + "#section": { + "current": { + "number": "5.1", + "spec": "Source Map", + "text": "Section", + "url": "https://tc39.es/source-map/#section" + } + }, + "#source-map-format": { + "current": { + "number": "4", + "spec": "Source Map", + "text": "Source Map Format", + "url": "https://tc39.es/source-map/#source-map-format" + } + }, + "#source-map-naming": { + "current": { + "number": "6.1", + "spec": "Source Map", + "text": "Source Map Naming", + "url": "https://tc39.es/source-map/#source-map-naming" + } + }, + "#terminology": { + "current": { + "number": "2", + "spec": "Source Map", + "text": "Terminology", + "url": "https://tc39.es/source-map/#terminology" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Source Map", + "url": "https://tc39.es/source-map/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Source Map", + "text": "Table of Contents", + "url": "https://tc39.es/source-map/#toc" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-concepts.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-concepts.json index 7c7fbea365..a3d363175e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-concepts.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-concepts.json @@ -175,14 +175,6 @@ "url": "https://w3c.github.io/sparql-concepts/spec/#sparql11-update" } }, - "#sparql12-documents": { - "current": { - "number": "", - "spec": "SPARQL 1.2 Overview", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-concepts/spec/#sparql12-documents" - } - }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-entailment.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-entailment.json index 6b6fb17186..cb87b0749d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-entailment.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-entailment.json @@ -5,6 +5,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "12. Appendix: Mapping from BGPs to the extended OWL 2 Structural Specification", "url": "https://w3c.github.io/sparql-entailment/spec/#AppendixMapping" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "12. Appendix: Mapping from BGPs to the extended OWL 2 Structural Specification", + "url": "https://www.w3.org/TR/sparql12-entailment/#AppendixMapping" } }, "#AppendixProofs": { @@ -13,6 +19,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "13. Appendix: Proofs", "url": "https://w3c.github.io/sparql-entailment/spec/#AppendixProofs" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "13. Appendix: Proofs", + "url": "https://www.w3.org/TR/sparql12-entailment/#AppendixProofs" } }, "#CanonicalLit": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "The D-Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#CanonicalLit" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "The D-Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#CanonicalLit" } }, "#Conventions": { @@ -29,6 +47,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Document Conventions", "url": "https://w3c.github.io/sparql-entailment/spec/#Conventions" + }, + "snapshot": { + "number": "1.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Document Conventions", + "url": "https://www.w3.org/TR/sparql12-entailment/#Conventions" } }, "#DEntRegime": { @@ -37,6 +61,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "D-Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#DEntRegime" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "D-Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#DEntRegime" } }, "#DataSets": { @@ -45,6 +75,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Entailment Regimes and Data Sets (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#DataSets" + }, + "snapshot": { + "number": "9", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Entailment Regimes and Data Sets (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#DataSets" } }, "#GeneralNotes": { @@ -53,6 +89,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "General Notes on Entailment Regimes (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#GeneralNotes" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "General Notes on Entailment Regimes (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#GeneralNotes" } }, "#OWL2-RDFBS-Profiles": { @@ -61,6 +103,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "OWL 2 Profiles and Entailment Checkers", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2-RDFBS-Profiles" + }, + "snapshot": { + "number": "6.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "OWL 2 Profiles and Entailment Checkers", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2-RDFBS-Profiles" } }, "#OWL2DL": { @@ -69,6 +117,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "OWL 2 DL", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2DL" + }, + "snapshot": { + "number": "6.4.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "OWL 2 DL", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2DL" } }, "#OWL2EL": { @@ -77,6 +131,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "The OWL 2 EL Profile", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2EL" + }, + "snapshot": { + "number": "6.4.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "The OWL 2 EL Profile", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2EL" } }, "#OWL2ProfilesDS": { @@ -85,6 +145,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "OWL 2 Entailment Checkers and Profiles", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2ProfilesDS" + }, + "snapshot": { + "number": "7.5", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "OWL 2 Entailment Checkers and Profiles", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2ProfilesDS" } }, "#OWL2QL": { @@ -93,6 +159,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "The OWL 2 QL Profile", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2QL" + }, + "snapshot": { + "number": "6.4.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "The OWL 2 QL Profile", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2QL" } }, "#OWL2RLDS": { @@ -101,6 +173,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "The OWL 2 RL Profile", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2RLDS" + }, + "snapshot": { + "number": "6.4.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "The OWL 2 RL Profile", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2RLDS" } }, "#OWL2RLRDFBSComputing": { @@ -109,6 +187,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Computing Query Answers for the OWL 2 RL Profile with RDF-Based Semantics (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#OWL2RLRDFBSComputing" + }, + "snapshot": { + "number": "6.4.5", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Computing Query Answers for the OWL 2 RL Profile with RDF-Based Semantics (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWL2RLRDFBSComputing" } }, "#OWLDSConstraints": { @@ -117,6 +201,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "BGP Constraints for OWL 2 DL", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSConstraints" + }, + "snapshot": { + "number": "7.3.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "BGP Constraints for OWL 2 DL", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSConstraints" } }, "#OWLDSEnRegime": { @@ -125,6 +215,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "OWL 2 Direct Semantics Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSEnRegime" + }, + "snapshot": { + "number": "7", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "OWL 2 Direct Semantics Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSEnRegime" } }, "#OWLDSEntRegime": { @@ -133,6 +229,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "The OWL 2 Direct Semantics Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSEntRegime" + }, + "snapshot": { + "number": "7.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "The OWL 2 Direct Semantics Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSEntRegime" } }, "#OWLDSExtGrammar": { @@ -141,6 +243,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Extended Grammar for OWL 2 Direct Semantics BGPs", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSExtGrammar" + }, + "snapshot": { + "number": "7.1.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Extended Grammar for OWL 2 Direct Semantics BGPs", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSExtGrammar" } }, "#OWLDSHigherOrder": { @@ -149,6 +257,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Higher-Order Queries (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSHigherOrder" + }, + "snapshot": { + "number": "7.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Higher-Order Queries (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSHigherOrder" } }, "#OWLDSImports": { @@ -157,6 +271,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "OWL Import Directives", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSImports" + }, + "snapshot": { + "number": "7.1.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "OWL Import Directives", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSImports" } }, "#OWLDSIntro": { @@ -165,6 +285,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Introduction", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSIntro" + }, + "snapshot": { + "number": "7.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSIntro" } }, "#OWLDSLiteralVars": { @@ -173,6 +299,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Queries with Variables in Literal Positions", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSLiteralVars" + }, + "snapshot": { + "number": "7.3.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Queries with Variables in Literal Positions", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSLiteralVars" } }, "#OWLDSRestrictions": { @@ -181,6 +313,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Restrictions on Solutions (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLDSRestrictions" + }, + "snapshot": { + "number": "7.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Restrictions on Solutions (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLDSRestrictions" } }, "#OWLParsing": { @@ -189,6 +327,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Parsing BGPs into Objects of the Extended OWL 2 Structural Specification", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLParsing" + }, + "snapshot": { + "number": "12.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Parsing BGPs into Objects of the Extended OWL 2 Structural Specification", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLParsing" } }, "#OWLRDFBSComputing": { @@ -197,6 +341,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Computing Query Answers under the RDF-Based Semantics (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLRDFBSComputing" + }, + "snapshot": { + "number": "6.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Computing Query Answers under the RDF-Based Semantics (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLRDFBSComputing" } }, "#OWLRDFBSEntRegime": { @@ -205,6 +355,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "OWL 2 RDF-Based Semantics Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLRDFBSEntRegime" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "OWL 2 RDF-Based Semantics Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLRDFBSEntRegime" } }, "#OWLRDFBSEntailments": { @@ -213,6 +369,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Entailments under the OWL 2 RDF-Based Semantics (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLRDFBSEntailments" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Entailments under the OWL 2 RDF-Based Semantics (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLRDFBSEntailments" } }, "#OWLRDFBSRestrictions": { @@ -221,6 +383,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Restriction on Solutions", "url": "https://w3c.github.io/sparql-entailment/spec/#OWLRDFBSRestrictions" + }, + "snapshot": { + "number": "6.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Restriction on Solutions", + "url": "https://www.w3.org/TR/sparql12-entailment/#OWLRDFBSRestrictions" } }, "#PropertyPaths": { @@ -229,6 +397,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "10. Entailment Regimes and Property Paths (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#PropertyPaths" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "10. Entailment Regimes and Property Paths (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#PropertyPaths" } }, "#PropertyPathsLimitations": { @@ -237,6 +411,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Limitations of Property Paths in Combination with Entailment Regimes", "url": "https://w3c.github.io/sparql-entailment/spec/#PropertyPathsLimitations" + }, + "snapshot": { + "number": "10.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Limitations of Property Paths in Combination with Entailment Regimes", + "url": "https://www.w3.org/TR/sparql12-entailment/#PropertyPathsLimitations" } }, "#RDFEntRegime": { @@ -245,6 +425,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "RDF Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#RDFEntRegime" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "RDF Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#RDFEntRegime" } }, "#RDFSEntRegime": { @@ -253,6 +439,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "RDFS Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#RDFSEntRegime" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "RDFS Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#RDFSEntRegime" } }, "#RIFCoreEnt": { @@ -261,6 +453,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "RIF Core Entailment", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFCoreEnt" + }, + "snapshot": { + "number": "8", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "RIF Core Entailment", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFCoreEnt" } }, "#RIFCustomRuleSets": { @@ -269,6 +467,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Custom Rulesets for Common Vocabulary Interpretations (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFCustomRuleSets" + }, + "snapshot": { + "number": "8.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Custom Rulesets for Common Vocabulary Interpretations (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFCustomRuleSets" } }, "#RIFDereferencing": { @@ -277,6 +481,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Dereferencing RIF Documents (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFDereferencing" + }, + "snapshot": { + "number": "8.4.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Dereferencing RIF Documents (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFDereferencing" } }, "#RIFDocReferences": { @@ -285,6 +495,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Referencing a RIF Document", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFDocReferences" + }, + "snapshot": { + "number": "8.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Referencing a RIF Document", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFDocReferences" } }, "#RIFDocsAsNamedGraphs": { @@ -293,6 +509,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Encoding RIF documents within named graphs in the dataset", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFDocsAsNamedGraphs" + }, + "snapshot": { + "number": "8.4.2.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Encoding RIF documents within named graphs in the dataset", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFDocsAsNamedGraphs" } }, "#RIFFiniteAnswers": { @@ -301,6 +523,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Finite Answer Set Conditions (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFFiniteAnswers" + }, + "snapshot": { + "number": "8.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Finite Answer Set Conditions (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFFiniteAnswers" } }, "#RIFHTTPDereferencing": { @@ -309,6 +537,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "HTTP Dereferencing", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFHTTPDereferencing" + }, + "snapshot": { + "number": "8.4.2.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "HTTP Dereferencing", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFHTTPDereferencing" } }, "#RIFUsedWithProfile": { @@ -317,6 +551,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Semantics of rif:usedWithProfile", "url": "https://w3c.github.io/sparql-entailment/spec/#RIFUsedWithProfile" + }, + "snapshot": { + "number": "8.4.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Semantics of rif:usedWithProfile", + "url": "https://www.w3.org/TR/sparql12-entailment/#RIFUsedWithProfile" } }, "#SimpeRIFCoreEntRegime": { @@ -325,6 +565,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "(Simple) RIF Core Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#SimpeRIFCoreEntRegime" + }, + "snapshot": { + "number": "8.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "(Simple) RIF Core Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#SimpeRIFCoreEntRegime" } }, "#Updates": { @@ -333,6 +579,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "11. Entailment Regimes and Updates (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#Updates" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "11. Entailment Regimes and Updates (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#Updates" } }, "#VarTyping": { @@ -341,6 +593,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Variable Typing", "url": "https://w3c.github.io/sparql-entailment/spec/#VarTyping" + }, + "snapshot": { + "number": "7.1.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Variable Typing", + "url": "https://www.w3.org/TR/sparql12-entailment/#VarTyping" } }, "#aggregates": { @@ -349,6 +607,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Aggregates and Blank Nodes", "url": "https://w3c.github.io/sparql-entailment/spec/#aggregates" + }, + "snapshot": { + "number": "3.5", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Aggregates and Blank Nodes", + "url": "https://www.w3.org/TR/sparql12-entailment/#aggregates" } }, "#axiomaticTriples": { @@ -357,6 +621,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Answers from Axiomatic Triples", "url": "https://w3c.github.io/sparql-entailment/spec/#axiomaticTriples" + }, + "snapshot": { + "number": "3.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Answers from Axiomatic Triples", + "url": "https://www.w3.org/TR/sparql12-entailment/#axiomaticTriples" } }, "#bgpMatchingExtensions": { @@ -365,6 +635,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Extensions to Basic Graph Pattern Matching", "url": "https://w3c.github.io/sparql-entailment/spec/#bgpMatchingExtensions" + }, + "snapshot": { + "number": "1.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Extensions to Basic Graph Pattern Matching", + "url": "https://www.w3.org/TR/sparql12-entailment/#bgpMatchingExtensions" } }, "#bnodes": { @@ -373,6 +649,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Blank Nodes in the Queried Graph", "url": "https://w3c.github.io/sparql-entailment/spec/#bnodes" + }, + "snapshot": { + "number": "3.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Blank Nodes in the Queried Graph", + "url": "https://www.w3.org/TR/sparql12-entailment/#bnodes" } }, "#booleanQueries": { @@ -381,6 +663,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Boolean Queries", "url": "https://w3c.github.io/sparql-entailment/spec/#booleanQueries" + }, + "snapshot": { + "number": "3.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Boolean Queries", + "url": "https://www.w3.org/TR/sparql12-entailment/#booleanQueries" } }, "#canonicalRep": { @@ -389,6 +677,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "XML Schema Datatypes and Canonical Lexical Representations", "url": "https://w3c.github.io/sparql-entailment/spec/#canonicalRep" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "XML Schema Datatypes and Canonical Lexical Representations", + "url": "https://www.w3.org/TR/sparql12-entailment/#canonicalRep" } }, "#changes-from-sparql11": { @@ -397,6 +691,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Change Log", "url": "https://w3c.github.io/sparql-entailment/spec/#changes-from-sparql11" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Change Log", + "url": "https://www.w3.org/TR/sparql12-entailment/#changes-from-sparql11" } }, "#conformance": { @@ -405,6 +705,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "14. Conformance", "url": "https://w3c.github.io/sparql-entailment/spec/#conformance" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "14. Conformance", + "url": "https://www.w3.org/TR/sparql12-entailment/#conformance" } }, "#conformance-0": { @@ -413,6 +719,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Conformance", "url": "https://w3c.github.io/sparql-entailment/spec/#conformance-0" + }, + "snapshot": { + "number": "14.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-entailment/#conformance-0" } }, "#entEffects": { @@ -421,6 +733,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Effects of Different Entailment Regimes", "url": "https://w3c.github.io/sparql-entailment/spec/#entEffects" + }, + "snapshot": { + "number": "1.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Effects of Different Entailment Regimes", + "url": "https://www.w3.org/TR/sparql12-entailment/#entEffects" } }, "#entRegimeParts": { @@ -429,6 +747,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Parts of an Entailment Regime", "url": "https://w3c.github.io/sparql-entailment/spec/#entRegimeParts" + }, + "snapshot": { + "number": "1.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Parts of an Entailment Regime", + "url": "https://www.w3.org/TR/sparql12-entailment/#entRegimeParts" } }, "#inconsistencies": { @@ -437,6 +761,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Inconsistencies (Informative)", "url": "https://w3c.github.io/sparql-entailment/spec/#inconsistencies" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Inconsistencies (Informative)", + "url": "https://www.w3.org/TR/sparql12-entailment/#inconsistencies" } }, "#index": { @@ -445,6 +775,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Index", "url": "https://w3c.github.io/sparql-entailment/spec/#index" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-entailment/#index" } }, "#index-defined-elsewhere": { @@ -453,6 +789,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-entailment/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "B.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-entailment/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -461,6 +803,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-entailment/spec/#index-defined-here" + }, + "snapshot": { + "number": "B.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-entailment/#index-defined-here" } }, "#informative-references": { @@ -469,6 +817,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Informative references", "url": "https://w3c.github.io/sparql-entailment/spec/#informative-references" + }, + "snapshot": { + "number": "C.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Informative references", + "url": "https://www.w3.org/TR/sparql12-entailment/#informative-references" } }, "#internationalization": { @@ -477,6 +831,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "17. Internationalization Considerations", "url": "https://w3c.github.io/sparql-entailment/spec/#internationalization" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "17. Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-entailment/#internationalization" } }, "#literalSubjects": { @@ -485,6 +845,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Literals in the Subject Position", "url": "https://w3c.github.io/sparql-entailment/spec/#literalSubjects" + }, + "snapshot": { + "number": "3.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Literals in the Subject Position", + "url": "https://www.w3.org/TR/sparql12-entailment/#literalSubjects" } }, "#namespaces": { @@ -493,6 +859,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Namespaces", "url": "https://w3c.github.io/sparql-entailment/spec/#namespaces" + }, + "snapshot": { + "number": "1.1.2", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Namespaces", + "url": "https://www.w3.org/TR/sparql12-entailment/#namespaces" } }, "#normative-references": { @@ -501,6 +873,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Normative references", "url": "https://w3c.github.io/sparql-entailment/spec/#normative-references" + }, + "snapshot": { + "number": "C.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Normative references", + "url": "https://www.w3.org/TR/sparql12-entailment/#normative-references" } }, "#prelims": { @@ -509,6 +887,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Preliminary Definitions", "url": "https://w3c.github.io/sparql-entailment/spec/#prelims" + }, + "snapshot": { + "number": "1.1.3", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Preliminary Definitions", + "url": "https://www.w3.org/TR/sparql12-entailment/#prelims" } }, "#privacy": { @@ -517,6 +901,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "15. Privacy Considerations", "url": "https://w3c.github.io/sparql-entailment/spec/#privacy" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "15. Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-entailment/#privacy" } }, "#references": { @@ -525,6 +915,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "References", "url": "https://w3c.github.io/sparql-entailment/spec/#references" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-entailment/#references" } }, "#resultDesc": { @@ -533,6 +929,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Result Descriptions", "url": "https://w3c.github.io/sparql-entailment/spec/#resultDesc" + }, + "snapshot": { + "number": "1.1.4", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Result Descriptions", + "url": "https://www.w3.org/TR/sparql12-entailment/#resultDesc" } }, "#sec-intro": { @@ -541,6 +943,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Introduction", "url": "https://w3c.github.io/sparql-entailment/spec/#sec-intro" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-entailment/#sec-intro" } }, "#security": { @@ -549,6 +957,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "16. Security Considerations", "url": "https://w3c.github.io/sparql-entailment/spec/#security" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "16. Security Considerations", + "url": "https://www.w3.org/TR/sparql12-entailment/#security" } }, "#set-of-documents": { @@ -557,6 +971,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-entailment/spec/#set-of-documents" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-entailment/#set-of-documents" } }, "#syntax": { @@ -565,6 +985,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Graph Syntax", "url": "https://w3c.github.io/sparql-entailment/spec/#syntax" + }, + "snapshot": { + "number": "1.1.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Graph Syntax", + "url": "https://www.w3.org/TR/sparql12-entailment/#syntax" } }, "#title": { @@ -573,6 +999,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "SPARQL 1.2 Entailment Regimes", "url": "https://w3c.github.io/sparql-entailment/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "SPARQL 1.2 Entailment Regimes", + "url": "https://www.w3.org/TR/sparql12-entailment/#title" } }, "#toc": { @@ -581,6 +1013,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-entailment/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-entailment/#toc" } }, "#uncheckedInconsistencies": { @@ -589,6 +1027,12 @@ "spec": "SPARQL 1.2 Entailment Regimes", "text": "Effects of Unchecked Inconsistencies", "url": "https://w3c.github.io/sparql-entailment/spec/#uncheckedInconsistencies" + }, + "snapshot": { + "number": "4.1.1", + "spec": "SPARQL 1.2 Entailment Regimes", + "text": "Effects of Unchecked Inconsistencies", + "url": "https://www.w3.org/TR/sparql12-entailment/#uncheckedInconsistencies" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-federated-query.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-federated-query.json index 5b3a285ba8..694244a787 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-federated-query.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-federated-query.json @@ -5,6 +5,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SPARQL 1.1 Simple Federation Extension Algebra", "url": "https://w3c.github.io/sparql-federated-query/spec/#algebra_service" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Federated Query", + "text": "SPARQL 1.1 Simple Federation Extension Algebra", + "url": "https://www.w3.org/TR/sparql12-federated-query/#algebra_service" } }, "#algebra_service_examples": { @@ -13,14 +19,28 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SERVICE Examples", "url": "https://w3c.github.io/sparql-federated-query/spec/#algebra_service_examples" + }, + "snapshot": { + "number": "4.2.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "SERVICE Examples", + "url": "https://www.w3.org/TR/sparql12-federated-query/#algebra_service_examples" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { + "number": "A", + "spec": "SPARQL 1.2 Federated Query", + "text": "Changes between SPARQL 1.1 Federated Query and SPARQL 1.2 Federated Query", + "url": "https://w3c.github.io/sparql-federated-query/spec/#changes-1-1" + } + }, + "#changes-from-sparql11": { + "snapshot": { "number": "A", "spec": "SPARQL 1.2 Federated Query", "text": "Change Log", - "url": "https://w3c.github.io/sparql-federated-query/spec/#changes-from-sparql11" + "url": "https://www.w3.org/TR/sparql12-federated-query/#changes-from-sparql11" } }, "#conformance": { @@ -29,6 +49,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Conformance", "url": "https://w3c.github.io/sparql-federated-query/spec/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Federated Query", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-federated-query/#conformance" } }, "#conformance-0": { @@ -37,6 +63,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Conformance", "url": "https://w3c.github.io/sparql-federated-query/spec/#conformance-0" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-federated-query/#conformance-0" } }, "#defn_service": { @@ -45,6 +77,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Translation to the SPARQL Algebra", "url": "https://w3c.github.io/sparql-federated-query/spec/#defn_service" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Translation to the SPARQL Algebra", + "url": "https://www.w3.org/TR/sparql12-federated-query/#defn_service" } }, "#docConventions": { @@ -53,6 +91,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Document Conventions", "url": "https://w3c.github.io/sparql-federated-query/spec/#docConventions" + }, + "snapshot": { + "number": "2.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Document Conventions", + "url": "https://www.w3.org/TR/sparql12-federated-query/#docConventions" } }, "#docNamespaces": { @@ -61,6 +105,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Namespaces", "url": "https://w3c.github.io/sparql-federated-query/spec/#docNamespaces" + }, + "snapshot": { + "number": "2.1.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Namespaces", + "url": "https://www.w3.org/TR/sparql12-federated-query/#docNamespaces" } }, "#docResultDesc": { @@ -69,6 +119,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Result Descriptions", "url": "https://w3c.github.io/sparql-federated-query/spec/#docResultDesc" + }, + "snapshot": { + "number": "2.1.2", + "spec": "SPARQL 1.2 Federated Query", + "text": "Result Descriptions", + "url": "https://www.w3.org/TR/sparql12-federated-query/#docResultDesc" } }, "#docTerminology": { @@ -77,6 +133,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Terminology", "url": "https://w3c.github.io/sparql-federated-query/spec/#docTerminology" + }, + "snapshot": { + "number": "2.1.3", + "spec": "SPARQL 1.2 Federated Query", + "text": "Terminology", + "url": "https://www.w3.org/TR/sparql12-federated-query/#docTerminology" } }, "#fedSemantics": { @@ -85,38 +147,68 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SPARQL 1.1 Simple Federation Extension: semantics", "url": "https://w3c.github.io/sparql-federated-query/spec/#fedSemantics" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Federated Query", + "text": "SPARQL 1.1 Simple Federation Extension: semantics", + "url": "https://www.w3.org/TR/sparql12-federated-query/#fedSemantics" } }, "#index": { "current": { - "number": "B", + "number": "E", "spec": "SPARQL 1.2 Federated Query", "text": "Index", "url": "https://w3c.github.io/sparql-federated-query/spec/#index" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Federated Query", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-federated-query/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "E.2", "spec": "SPARQL 1.2 Federated Query", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-federated-query/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "B.2", + "spec": "SPARQL 1.2 Federated Query", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-federated-query/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "E.1", "spec": "SPARQL 1.2 Federated Query", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-federated-query/spec/#index-defined-here" + }, + "snapshot": { + "number": "B.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-federated-query/#index-defined-here" } }, "#internationalization": { "current": { + "number": "D", + "spec": "SPARQL 1.2 Federated Query", + "text": "Internationalization Considerations", + "url": "https://w3c.github.io/sparql-federated-query/spec/#internationalization" + }, + "snapshot": { "number": "", "spec": "SPARQL 1.2 Federated Query", "text": "13. Internationalization Considerations", - "url": "https://w3c.github.io/sparql-federated-query/spec/#internationalization" + "url": "https://www.w3.org/TR/sparql12-federated-query/#internationalization" } }, "#introduction": { @@ -125,14 +217,26 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Introduction", "url": "https://w3c.github.io/sparql-federated-query/spec/#introduction" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Federated Query", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-federated-query/#introduction" } }, "#normative-references": { "current": { - "number": "C.1", + "number": "F.1", "spec": "SPARQL 1.2 Federated Query", "text": "Normative references", "url": "https://w3c.github.io/sparql-federated-query/spec/#normative-references" + }, + "snapshot": { + "number": "C.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Normative references", + "url": "https://www.w3.org/TR/sparql12-federated-query/#normative-references" } }, "#optionalTwoServices": { @@ -141,22 +245,40 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SPARQL query with OPTIONAL to two remote SPARQL endpoints", "url": "https://w3c.github.io/sparql-federated-query/spec/#optionalTwoServices" + }, + "snapshot": { + "number": "3.2", + "spec": "SPARQL 1.2 Federated Query", + "text": "SPARQL query with OPTIONAL to two remote SPARQL endpoints", + "url": "https://www.w3.org/TR/sparql12-federated-query/#optionalTwoServices" } }, "#privacy": { "current": { + "number": "B", + "spec": "SPARQL 1.2 Federated Query", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/sparql-federated-query/spec/#privacy" + }, + "snapshot": { "number": "", "spec": "SPARQL 1.2 Federated Query", "text": "11. Privacy Considerations", - "url": "https://w3c.github.io/sparql-federated-query/spec/#privacy" + "url": "https://www.w3.org/TR/sparql12-federated-query/#privacy" } }, "#references": { "current": { - "number": "C", + "number": "F", "spec": "SPARQL 1.2 Federated Query", "text": "References", "url": "https://w3c.github.io/sparql-federated-query/spec/#references" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Federated Query", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-federated-query/#references" } }, "#related": { @@ -165,6 +287,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-federated-query/spec/#related" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-federated-query/#related" } }, "#sec-acknowledgements": { @@ -173,6 +301,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Acknowledgements", "url": "https://w3c.github.io/sparql-federated-query/spec/#sec-acknowledgements" + }, + "snapshot": { + "number": "9", + "spec": "SPARQL 1.2 Federated Query", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/sparql12-federated-query/#sec-acknowledgements" } }, "#sec-bibliography": { @@ -181,6 +315,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "References", "url": "https://w3c.github.io/sparql-federated-query/spec/#sec-bibliography" + }, + "snapshot": { + "number": "8", + "spec": "SPARQL 1.2 Federated Query", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-federated-query/#sec-bibliography" } }, "#sec-cvsLog": { @@ -189,6 +329,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "10. CVS History (Last Call and after)", "url": "https://w3c.github.io/sparql-federated-query/spec/#sec-cvsLog" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Federated Query", + "text": "10. CVS History (Last Call and after)", + "url": "https://www.w3.org/TR/sparql12-federated-query/#sec-cvsLog" } }, "#sec-non-normative-refs": { @@ -197,6 +343,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Other References", "url": "https://w3c.github.io/sparql-federated-query/spec/#sec-non-normative-refs" + }, + "snapshot": { + "number": "8.2", + "spec": "SPARQL 1.2 Federated Query", + "text": "Other References", + "url": "https://www.w3.org/TR/sparql12-federated-query/#sec-non-normative-refs" } }, "#sec-normative-refs": { @@ -205,22 +357,40 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Normative References", "url": "https://w3c.github.io/sparql-federated-query/spec/#sec-normative-refs" + }, + "snapshot": { + "number": "8.1", + "spec": "SPARQL 1.2 Federated Query", + "text": "Normative References", + "url": "https://www.w3.org/TR/sparql12-federated-query/#sec-normative-refs" } }, "#security": { "current": { + "number": "C", + "spec": "SPARQL 1.2 Federated Query", + "text": "Security Considerations", + "url": "https://w3c.github.io/sparql-federated-query/spec/#security" + }, + "snapshot": { "number": "", "spec": "SPARQL 1.2 Federated Query", "text": "12. Security Considerations", - "url": "https://w3c.github.io/sparql-federated-query/spec/#security" + "url": "https://www.w3.org/TR/sparql12-federated-query/#security" } }, "#security-original": { "current": { "number": "7", "spec": "SPARQL 1.2 Federated Query", - "text": "Security Considerations (Informative)", + "text": "Security Considerations", "url": "https://w3c.github.io/sparql-federated-query/spec/#security-original" + }, + "snapshot": { + "number": "7", + "spec": "SPARQL 1.2 Federated Query", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-federated-query/#security-original" } }, "#service": { @@ -229,6 +399,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SPARQL 1.1 Federated Query Extension", "url": "https://w3c.github.io/sparql-federated-query/spec/#service" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Federated Query", + "text": "SPARQL 1.1 Federated Query Extension", + "url": "https://www.w3.org/TR/sparql12-federated-query/#service" } }, "#serviceFailure": { @@ -237,6 +413,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Service Execution Failure", "url": "https://w3c.github.io/sparql-federated-query/spec/#serviceFailure" + }, + "snapshot": { + "number": "3.3", + "spec": "SPARQL 1.2 Federated Query", + "text": "Service Execution Failure", + "url": "https://www.w3.org/TR/sparql12-federated-query/#serviceFailure" } }, "#simpleService": { @@ -245,14 +427,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Simple query to a remote SPARQL endpoint", "url": "https://w3c.github.io/sparql-federated-query/spec/#simpleService" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "3.1", "spec": "SPARQL 1.2 Federated Query", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-federated-query/spec/#sparql12-documents" + "text": "Simple query to a remote SPARQL endpoint", + "url": "https://www.w3.org/TR/sparql12-federated-query/#simpleService" } }, "#title": { @@ -261,6 +441,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SPARQL 1.2 Federated Query", "url": "https://w3c.github.io/sparql-federated-query/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Federated Query", + "text": "SPARQL 1.2 Federated Query", + "url": "https://www.w3.org/TR/sparql12-federated-query/#title" } }, "#toc": { @@ -269,6 +455,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-federated-query/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Federated Query", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-federated-query/#toc" } }, "#values": { @@ -277,6 +469,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "Interplay of SERVICE and VALUES (Informative)", "url": "https://w3c.github.io/sparql-federated-query/spec/#values" + }, + "snapshot": { + "number": "3.4", + "spec": "SPARQL 1.2 Federated Query", + "text": "Interplay of SERVICE and VALUES (Informative)", + "url": "https://www.w3.org/TR/sparql12-federated-query/#values" } }, "#variableService": { @@ -285,6 +483,12 @@ "spec": "SPARQL 1.2 Federated Query", "text": "SERVICE Variables (Informative)", "url": "https://w3c.github.io/sparql-federated-query/spec/#variableService" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Federated Query", + "text": "SERVICE Variables (Informative)", + "url": "https://www.w3.org/TR/sparql12-federated-query/#variableService" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-graph-store-protocol.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-graph-store-protocol.json index 6b6ea7f3fa..4a408b726c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-graph-store-protocol.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-graph-store-protocol.json @@ -5,6 +5,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "11. Acknowledgements", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#ackacknowledgements" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "11. Acknowledgements", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#ackacknowledgements" } }, "#changes": { @@ -13,6 +19,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Changes", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#changes" + }, + "snapshot": { + "number": "9", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Changes", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#changes" } }, "#changes-from-sparql11": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Change Log", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#changes-from-sparql11" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Change Log", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#changes-from-sparql11" } }, "#conformance": { @@ -29,6 +47,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Conformance", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#conformance" + }, + "snapshot": { + "number": "8", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#conformance" } }, "#conformance-0": { @@ -37,6 +61,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Conformance", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#conformance-0" + }, + "snapshot": { + "number": "8.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#conformance-0" } }, "#direct-graph-identification": { @@ -45,6 +75,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Direct Graph Identification", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#direct-graph-identification" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Direct Graph Identification", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#direct-graph-identification" } }, "#graph-identification": { @@ -53,6 +89,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Graph Identification", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#graph-identification" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Graph Identification", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#graph-identification" } }, "#graph-management": { @@ -61,6 +103,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Graph Management Operations", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#graph-management" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Graph Management Operations", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#graph-management" } }, "#http-delete": { @@ -69,6 +117,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "HTTP DELETE", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#http-delete" + }, + "snapshot": { + "number": "6.4", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "HTTP DELETE", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-delete" } }, "#http-get": { @@ -77,6 +131,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "HTTP GET", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#http-get" + }, + "snapshot": { + "number": "6.2", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "HTTP GET", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-get" } }, "#http-head": { @@ -85,6 +145,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "HTTP HEAD", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#http-head" + }, + "snapshot": { + "number": "6.6", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "HTTP HEAD", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-head" } }, "#http-patch": { @@ -93,6 +159,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "HTTP PATCH (Informative)", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#http-patch" + }, + "snapshot": { + "number": "6.7", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "HTTP PATCH (Informative)", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-patch" } }, "#http-post": { @@ -101,6 +173,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "HTTP POST", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#http-post" + }, + "snapshot": { + "number": "6.5", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "HTTP POST", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-post" } }, "#http-put": { @@ -109,6 +187,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "HTTP PUT", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#http-put" + }, + "snapshot": { + "number": "6.3", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "HTTP PUT", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-put" } }, "#httpRange-14": { @@ -117,6 +201,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Ambiguity Regarding the Range of HTTP GET (Informative)", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#httpRange-14" + }, + "snapshot": { + "number": "6.2.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Ambiguity Regarding the Range of HTTP GET (Informative)", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#httpRange-14" } }, "#index": { @@ -125,6 +215,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Index", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#index" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#index" } }, "#index-defined-elsewhere": { @@ -133,6 +229,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "B.2", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -141,6 +243,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#index-defined-here" + }, + "snapshot": { + "number": "B.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#index-defined-here" } }, "#indirect-graph-identification": { @@ -149,6 +257,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Indirect Graph Identification", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#indirect-graph-identification" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Indirect Graph Identification", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#indirect-graph-identification" } }, "#internationalization": { @@ -157,6 +271,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "14. Internationalization Considerations", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#internationalization" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "14. Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#internationalization" } }, "#introduction": { @@ -165,6 +285,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Introduction", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#introduction" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#introduction" } }, "#normative-references": { @@ -173,6 +299,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Normative references", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#normative-references" + }, + "snapshot": { + "number": "C.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Normative references", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#normative-references" } }, "#privacy": { @@ -181,6 +313,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "12. Privacy Considerations", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#privacy" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "12. Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#privacy" } }, "#protocol-model": { @@ -189,6 +327,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Protocol Model", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#protocol-model" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Protocol Model", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#protocol-model" } }, "#references": { @@ -197,6 +341,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "References", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#references" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#references" } }, "#related": { @@ -205,6 +355,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#related" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#related" } }, "#sec-bibliography": { @@ -213,6 +369,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "10. References", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#sec-bibliography" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "10. References", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#sec-bibliography" } }, "#section-Normative-References": { @@ -221,6 +383,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Normative References", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#section-Normative-References" + }, + "snapshot": { + "number": "10.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Normative References", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#section-Normative-References" } }, "#section-informative-references": { @@ -229,6 +397,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Informative References", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#section-informative-references" + }, + "snapshot": { + "number": "10.2", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Informative References", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#section-informative-references" } }, "#security": { @@ -237,6 +411,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "13. Security Considerations", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#security" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "13. Security Considerations", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#security" } }, "#security-original": { @@ -245,14 +425,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Security Considerations", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#security-original" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "7", "spec": "SPARQL 1.2 Graph Store Protocol", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#sparql12-documents" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#security-original" } }, "#status-codes": { @@ -261,6 +439,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Status Codes", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#status-codes" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Status Codes", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#status-codes" } }, "#terminology": { @@ -269,6 +453,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Terminology", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#terminology" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Terminology", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#terminology" } }, "#title": { @@ -277,6 +467,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "SPARQL 1.2 Graph Store Protocol", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "SPARQL 1.2 Graph Store Protocol", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#title" } }, "#toc": { @@ -285,6 +481,12 @@ "spec": "SPARQL 1.2 Graph Store Protocol", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-graph-store-protocol/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Graph Store Protocol", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/#toc" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-protocol.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-protocol.json index dc64696b19..9a50e34d84 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-protocol.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-protocol.json @@ -5,6 +5,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "ASK with simple RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#ask-simple" + }, + "snapshot": { + "number": "4.1.4", + "spec": "SPARQL 1.2 Protocol", + "text": "ASK with simple RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#ask-simple" } }, "#base-iri": { @@ -13,22 +19,40 @@ "spec": "SPARQL 1.2 Protocol", "text": "Determining the Base IRI", "url": "https://w3c.github.io/sparql-protocol/spec/#base-iri" + }, + "snapshot": { + "number": "3.3", + "spec": "SPARQL 1.2 Protocol", + "text": "Determining the Base IRI", + "url": "https://www.w3.org/TR/sparql12-protocol/#base-iri" } }, - "#changes": { + "#changes-1-0": { "current": { - "number": "7", + "number": "B", + "spec": "SPARQL 1.2 Protocol", + "text": "Changes between SPARQL 1.0 Protocol and SPARQL 1.1 Protocol", + "url": "https://w3c.github.io/sparql-protocol/spec/#changes-1-0" + }, + "snapshot": { + "number": "B", "spec": "SPARQL 1.2 Protocol", - "text": "Changes Since Previous Recommendation (Informative)", - "url": "https://w3c.github.io/sparql-protocol/spec/#changes" + "text": "Changes between SPARQL 1.0 Protocol and SPARQL 1.1 Protocol", + "url": "https://www.w3.org/TR/sparql12-protocol/#changes-1-0" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Protocol", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-protocol/spec/#changes-from-sparql11" + "text": "Changes between SPARQL 1.1 Protocol and SPARQL 1.2 Protocol", + "url": "https://w3c.github.io/sparql-protocol/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Protocol", + "text": "Changes between SPARQL 1.1 Protocol and SPARQL 1.2 Protocol", + "url": "https://www.w3.org/TR/sparql12-protocol/#changes-1-1" } }, "#conformance": { @@ -37,6 +61,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Conformance", "url": "https://w3c.github.io/sparql-protocol/spec/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Protocol", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-protocol/#conformance" } }, "#conformance-0": { @@ -45,6 +75,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Conformance", "url": "https://w3c.github.io/sparql-protocol/spec/#conformance-0" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-protocol/#conformance-0" } }, "#conneg": { @@ -53,6 +89,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Accepted Response Formats", "url": "https://w3c.github.io/sparql-protocol/spec/#conneg" + }, + "snapshot": { + "number": "3.1.5", + "spec": "SPARQL 1.2 Protocol", + "text": "Accepted Response Formats", + "url": "https://www.w3.org/TR/sparql12-protocol/#conneg" } }, "#construct-simple": { @@ -61,6 +103,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "CONSTRUCT with simple RDF dataset and HTTP content negotiation", "url": "https://w3c.github.io/sparql-protocol/spec/#construct-simple" + }, + "snapshot": { + "number": "4.1.3", + "spec": "SPARQL 1.2 Protocol", + "text": "CONSTRUCT with simple RDF dataset and HTTP content negotiation", + "url": "https://www.w3.org/TR/sparql12-protocol/#construct-simple" } }, "#conventions": { @@ -69,6 +117,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Document Conventions", "url": "https://w3c.github.io/sparql-protocol/spec/#conventions" + }, + "snapshot": { + "number": "2.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Document Conventions", + "url": "https://www.w3.org/TR/sparql12-protocol/#conventions" } }, "#dataset": { @@ -77,6 +131,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Specifying an RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#dataset" + }, + "snapshot": { + "number": "3.1.4", + "spec": "SPARQL 1.2 Protocol", + "text": "Specifying an RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#dataset" } }, "#describe-simple": { @@ -85,6 +145,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "DESCRIBE with simple RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#describe-simple" + }, + "snapshot": { + "number": "4.1.5", + "spec": "SPARQL 1.2 Protocol", + "text": "DESCRIBE with simple RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#describe-simple" } }, "#examples": { @@ -93,38 +159,68 @@ "spec": "SPARQL 1.2 Protocol", "text": "Example SPARQL Protocol Requests (informative)", "url": "https://w3c.github.io/sparql-protocol/spec/#examples" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Protocol", + "text": "Example SPARQL Protocol Requests (informative)", + "url": "https://www.w3.org/TR/sparql12-protocol/#examples" } }, "#index": { "current": { - "number": "B", + "number": "F", "spec": "SPARQL 1.2 Protocol", "text": "Index", "url": "https://w3c.github.io/sparql-protocol/spec/#index" + }, + "snapshot": { + "number": "F", + "spec": "SPARQL 1.2 Protocol", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-protocol/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "F.2", "spec": "SPARQL 1.2 Protocol", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-protocol/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "F.2", + "spec": "SPARQL 1.2 Protocol", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-protocol/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "F.1", "spec": "SPARQL 1.2 Protocol", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-protocol/spec/#index-defined-here" + }, + "snapshot": { + "number": "F.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-protocol/#index-defined-here" } }, "#internationalization": { "current": { - "number": "", + "number": "E", "spec": "SPARQL 1.2 Protocol", - "text": "11. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-protocol/spec/#internationalization" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Protocol", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-protocol/#internationalization" } }, "#intro": { @@ -133,14 +229,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "Introduction", "url": "https://w3c.github.io/sparql-protocol/spec/#intro" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Protocol", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-protocol/#intro" } }, "#normative-references": { "current": { - "number": "C.1", + "number": "G.1", "spec": "SPARQL 1.2 Protocol", "text": "Normative references", "url": "https://w3c.github.io/sparql-protocol/spec/#normative-references" + }, + "snapshot": { + "number": "G.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Normative references", + "url": "https://www.w3.org/TR/sparql12-protocol/#normative-references" } }, "#policy": { @@ -149,6 +257,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Policy Considerations", "url": "https://w3c.github.io/sparql-protocol/spec/#policy" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Protocol", + "text": "Policy Considerations", + "url": "https://www.w3.org/TR/sparql12-protocol/#policy" } }, "#policy-security": { @@ -157,14 +271,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "Security", "url": "https://w3c.github.io/sparql-protocol/spec/#policy-security" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Security", + "url": "https://www.w3.org/TR/sparql12-protocol/#policy-security" } }, "#privacy": { "current": { - "number": "9", + "number": "C", "spec": "SPARQL 1.2 Protocol", "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-protocol/spec/#privacy" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Protocol", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-protocol/#privacy" } }, "#protocol": { @@ -173,6 +299,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SPARQL Protocol Operations", "url": "https://w3c.github.io/sparql-protocol/spec/#protocol" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Protocol", + "text": "SPARQL Protocol Operations", + "url": "https://www.w3.org/TR/sparql12-protocol/#protocol" } }, "#query-bindings-http-examples": { @@ -181,6 +313,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Examples of SPARQL Query", "url": "https://w3c.github.io/sparql-protocol/spec/#query-bindings-http-examples" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Examples of SPARQL Query", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-bindings-http-examples" } }, "#query-failure": { @@ -189,14 +327,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "Failure Responses", "url": "https://w3c.github.io/sparql-protocol/spec/#query-failure" + }, + "snapshot": { + "number": "3.1.7", + "spec": "SPARQL 1.2 Protocol", + "text": "Failure Responses", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-failure" } }, "#query-operation": { "current": { "number": "3.1", "spec": "SPARQL 1.2 Protocol", - "text": "query operation", + "text": "Query Operation", "url": "https://w3c.github.io/sparql-protocol/spec/#query-operation" + }, + "snapshot": { + "number": "3.1", + "spec": "SPARQL 1.2 Protocol", + "text": "Query Operation", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-operation" } }, "#query-success": { @@ -205,6 +355,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Success Responses", "url": "https://w3c.github.io/sparql-protocol/spec/#query-success" + }, + "snapshot": { + "number": "3.1.6", + "spec": "SPARQL 1.2 Protocol", + "text": "Success Responses", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-success" } }, "#query-via-get": { @@ -213,6 +369,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "query via GET", "url": "https://w3c.github.io/sparql-protocol/spec/#query-via-get" + }, + "snapshot": { + "number": "3.1.1", + "spec": "SPARQL 1.2 Protocol", + "text": "query via GET", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-via-get" } }, "#query-via-post-direct": { @@ -221,6 +383,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "query via POST directly", "url": "https://w3c.github.io/sparql-protocol/spec/#query-via-post-direct" + }, + "snapshot": { + "number": "3.1.3", + "spec": "SPARQL 1.2 Protocol", + "text": "query via POST directly", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-via-post-direct" } }, "#query-via-post-urlencoded": { @@ -229,14 +397,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "query via POST with URL-encoded parameters", "url": "https://w3c.github.io/sparql-protocol/spec/#query-via-post-urlencoded" + }, + "snapshot": { + "number": "3.1.2", + "spec": "SPARQL 1.2 Protocol", + "text": "query via POST with URL-encoded parameters", + "url": "https://www.w3.org/TR/sparql12-protocol/#query-via-post-urlencoded" } }, "#references": { "current": { - "number": "C", + "number": "G", "spec": "SPARQL 1.2 Protocol", "text": "References", "url": "https://w3c.github.io/sparql-protocol/spec/#references" + }, + "snapshot": { + "number": "G", + "spec": "SPARQL 1.2 Protocol", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-protocol/#references" } }, "#related": { @@ -245,38 +425,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-protocol/spec/#related" - } - }, - "#sec-bibliography": { - "current": { - "number": "8", - "spec": "SPARQL 1.2 Protocol", - "text": "References", - "url": "https://w3c.github.io/sparql-protocol/spec/#sec-bibliography" - } - }, - "#sec-existing-stds": { - "current": { - "number": "8.1", - "spec": "SPARQL 1.2 Protocol", - "text": "Normative References", - "url": "https://w3c.github.io/sparql-protocol/spec/#sec-existing-stds" - } - }, - "#sec-other-references": { - "current": { - "number": "8.2", + }, + "snapshot": { + "number": "1", "spec": "SPARQL 1.2 Protocol", - "text": "Other References", - "url": "https://w3c.github.io/sparql-protocol/spec/#sec-other-references" + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-protocol/#related" } }, "#security": { "current": { - "number": "", + "number": "D", "spec": "SPARQL 1.2 Protocol", - "text": "10. Security Considerations", + "text": "Security Considerations", "url": "https://w3c.github.io/sparql-protocol/spec/#security" + }, + "snapshot": { + "number": "D", + "spec": "SPARQL 1.2 Protocol", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-protocol/#security" } }, "#select-ambiguous": { @@ -285,6 +453,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with ambiguous RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#select-ambiguous" + }, + "snapshot": { + "number": "4.1.8", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with ambiguous RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-ambiguous" } }, "#select-complex": { @@ -293,6 +467,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with complex RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#select-complex" + }, + "snapshot": { + "number": "4.1.6", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with complex RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-complex" } }, "#select-kanji": { @@ -301,6 +481,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with internationalization", "url": "https://w3c.github.io/sparql-protocol/spec/#select-kanji" + }, + "snapshot": { + "number": "4.1.13", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with internationalization", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-kanji" } }, "#select-longpost": { @@ -309,6 +495,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Long SELECT query using POST with URL encoding", "url": "https://w3c.github.io/sparql-protocol/spec/#select-longpost" + }, + "snapshot": { + "number": "4.1.11", + "spec": "SPARQL 1.2 Protocol", + "text": "Long SELECT query using POST with URL encoding", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-longpost" } }, "#select-longpost-direct": { @@ -317,6 +509,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Long SELECT query using direct POST", "url": "https://w3c.github.io/sparql-protocol/spec/#select-longpost-direct" + }, + "snapshot": { + "number": "4.1.12", + "spec": "SPARQL 1.2 Protocol", + "text": "Long SELECT query using direct POST", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-longpost-direct" } }, "#select-malformed": { @@ -325,6 +523,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with malformed query fault", "url": "https://w3c.github.io/sparql-protocol/spec/#select-malformed" + }, + "snapshot": { + "number": "4.1.9", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with malformed query fault", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-malformed" } }, "#select-queryonly": { @@ -333,6 +537,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with query-only RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#select-queryonly" + }, + "snapshot": { + "number": "4.1.7", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with query-only RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-queryonly" + } + }, + "#select-quoted": { + "current": { + "number": "4.1.14", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with quoted triple patterns", + "url": "https://w3c.github.io/sparql-protocol/spec/#select-quoted" + }, + "snapshot": { + "number": "4.1.14", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with quoted triple patterns", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-quoted" } }, "#select-refused": { @@ -341,6 +565,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with query request refused fault", "url": "https://w3c.github.io/sparql-protocol/spec/#select-refused" + }, + "snapshot": { + "number": "4.1.10", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with query request refused fault", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-refused" } }, "#select-simple": { @@ -349,6 +579,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with simple RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#select-simple" + }, + "snapshot": { + "number": "4.1.2", + "spec": "SPARQL 1.2 Protocol", + "text": "SELECT with simple RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-simple" } }, "#select-svcsupplied": { @@ -357,14 +593,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SELECT with service-supplied RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#select-svcsupplied" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "4.1.1", "spec": "SPARQL 1.2 Protocol", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-protocol/spec/#sparql12-documents" + "text": "SELECT with service-supplied RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#select-svcsupplied" } }, "#terminology": { @@ -373,6 +607,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Terminology", "url": "https://w3c.github.io/sparql-protocol/spec/#terminology" + }, + "snapshot": { + "number": "2.2", + "spec": "SPARQL 1.2 Protocol", + "text": "Terminology", + "url": "https://www.w3.org/TR/sparql12-protocol/#terminology" } }, "#title": { @@ -381,6 +621,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "SPARQL 1.2 Protocol", "url": "https://w3c.github.io/sparql-protocol/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Protocol", + "text": "SPARQL 1.2 Protocol", + "url": "https://www.w3.org/TR/sparql12-protocol/#title" } }, "#toc": { @@ -389,6 +635,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-protocol/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Protocol", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-protocol/#toc" } }, "#update-bindings-http-examples": { @@ -397,6 +649,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Examples of SPARQL Update", "url": "https://w3c.github.io/sparql-protocol/spec/#update-bindings-http-examples" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Protocol", + "text": "Examples of SPARQL Update", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-bindings-http-examples" } }, "#update-dataset": { @@ -405,6 +663,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Specifying an RDF Dataset", "url": "https://w3c.github.io/sparql-protocol/spec/#update-dataset" + }, + "snapshot": { + "number": "3.2.3", + "spec": "SPARQL 1.2 Protocol", + "text": "Specifying an RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-dataset" } }, "#update-direct-multi-dataset": { @@ -413,6 +677,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Multi-operation UPDATE specifying dataset and using POST directly", "url": "https://w3c.github.io/sparql-protocol/spec/#update-direct-multi-dataset" + }, + "snapshot": { + "number": "4.2.6", + "spec": "SPARQL 1.2 Protocol", + "text": "Multi-operation UPDATE specifying dataset and using POST directly", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-direct-multi-dataset" } }, "#update-direct-simple": { @@ -421,6 +691,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "UPDATE using POST directly", "url": "https://w3c.github.io/sparql-protocol/spec/#update-direct-simple" + }, + "snapshot": { + "number": "4.2.2", + "spec": "SPARQL 1.2 Protocol", + "text": "UPDATE using POST directly", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-direct-simple" } }, "#update-direct-simple-dataset": { @@ -429,6 +705,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "UPDATE specifying dataset and using POST directly", "url": "https://w3c.github.io/sparql-protocol/spec/#update-direct-simple-dataset" + }, + "snapshot": { + "number": "4.2.3", + "spec": "SPARQL 1.2 Protocol", + "text": "UPDATE specifying dataset and using POST directly", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-direct-simple-dataset" } }, "#update-failure": { @@ -437,14 +719,26 @@ "spec": "SPARQL 1.2 Protocol", "text": "Failure Responses", "url": "https://w3c.github.io/sparql-protocol/spec/#update-failure" + }, + "snapshot": { + "number": "3.2.5", + "spec": "SPARQL 1.2 Protocol", + "text": "Failure Responses", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-failure" } }, "#update-operation": { "current": { "number": "3.2", "spec": "SPARQL 1.2 Protocol", - "text": "update operation", + "text": "Update Operation", "url": "https://w3c.github.io/sparql-protocol/spec/#update-operation" + }, + "snapshot": { + "number": "3.2", + "spec": "SPARQL 1.2 Protocol", + "text": "Update Operation", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-operation" } }, "#update-success": { @@ -453,6 +747,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Success Responses", "url": "https://w3c.github.io/sparql-protocol/spec/#update-success" + }, + "snapshot": { + "number": "3.2.4", + "spec": "SPARQL 1.2 Protocol", + "text": "Success Responses", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-success" } }, "#update-urlencoded-multi": { @@ -461,6 +761,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Multi-operation UPDATE using URL-encoded parameters", "url": "https://w3c.github.io/sparql-protocol/spec/#update-urlencoded-multi" + }, + "snapshot": { + "number": "4.2.4", + "spec": "SPARQL 1.2 Protocol", + "text": "Multi-operation UPDATE using URL-encoded parameters", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-multi" } }, "#update-urlencoded-multi-dataset": { @@ -469,6 +775,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "Multi-operation UPDATE specifying dataset and using URL-encoded parameters", "url": "https://w3c.github.io/sparql-protocol/spec/#update-urlencoded-multi-dataset" + }, + "snapshot": { + "number": "4.2.5", + "spec": "SPARQL 1.2 Protocol", + "text": "Multi-operation UPDATE specifying dataset and using URL-encoded parameters", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-multi-dataset" } }, "#update-urlencoded-simple": { @@ -477,6 +789,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "UPDATE using URL-encoded parameters", "url": "https://w3c.github.io/sparql-protocol/spec/#update-urlencoded-simple" + }, + "snapshot": { + "number": "4.2.1", + "spec": "SPARQL 1.2 Protocol", + "text": "UPDATE using URL-encoded parameters", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-simple" } }, "#update-via-post-direct": { @@ -485,6 +803,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "update via POST directly", "url": "https://w3c.github.io/sparql-protocol/spec/#update-via-post-direct" + }, + "snapshot": { + "number": "3.2.2", + "spec": "SPARQL 1.2 Protocol", + "text": "update via POST directly", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-via-post-direct" } }, "#update-via-post-urlencoded": { @@ -493,6 +817,12 @@ "spec": "SPARQL 1.2 Protocol", "text": "update via POST with URL-encoded parameters", "url": "https://w3c.github.io/sparql-protocol/spec/#update-via-post-urlencoded" + }, + "snapshot": { + "number": "3.2.1", + "spec": "SPARQL 1.2 Protocol", + "text": "update via POST with URL-encoded parameters", + "url": "https://www.w3.org/TR/sparql12-protocol/#update-via-post-urlencoded" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-query.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-query.json index 24212aae4c..bcc4d8bda7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-query.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-query.json @@ -5,6 +5,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SPARQL Basic Graph Pattern Matching", "url": "https://w3c.github.io/sparql-query/spec/#BGPsparql" + }, + "snapshot": { + "number": "18.3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "SPARQL Basic Graph Pattern Matching", + "url": "https://www.w3.org/TR/sparql12-query/#BGPsparql" } }, "#BGPsparqlBNodes": { @@ -13,6 +19,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Treatment of Blank Nodes", "url": "https://w3c.github.io/sparql-query/spec/#BGPsparqlBNodes" + }, + "snapshot": { + "number": "18.3.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Treatment of Blank Nodes", + "url": "https://www.w3.org/TR/sparql12-query/#BGPsparqlBNodes" } }, "#BasicGraphPattern": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Basic Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#BasicGraphPattern" + }, + "snapshot": { + "number": "18.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Basic Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#BasicGraphPattern" } }, "#BasicGraphPatterns": { @@ -29,14 +47,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Basic Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#BasicGraphPatterns" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Basic Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#BasicGraphPatterns" } }, "#BlankNodesInResults": { "current": { "number": "2.4", "spec": "SPARQL 1.2 Query Language", - "text": "Blank Node Labels in Query Results", + "text": "Blank Node Identifiers in Query Results", "url": "https://w3c.github.io/sparql-query/spec/#BlankNodesInResults" + }, + "snapshot": { + "number": "2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Blank Node Identifiers in Query Results", + "url": "https://www.w3.org/TR/sparql12-query/#BlankNodesInResults" } }, "#CreatingValuesWithExpressions": { @@ -45,6 +75,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Creating Values with Expressions", "url": "https://w3c.github.io/sparql-query/spec/#CreatingValuesWithExpressions" + }, + "snapshot": { + "number": "2.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Creating Values with Expressions", + "url": "https://www.w3.org/TR/sparql12-query/#CreatingValuesWithExpressions" } }, "#FunctionMapping": { @@ -53,6 +89,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "XPath Constructor Functions", "url": "https://w3c.github.io/sparql-query/spec/#FunctionMapping" + }, + "snapshot": { + "number": "17.5", + "spec": "SPARQL 1.2 Query Language", + "text": "XPath Constructor Functions", + "url": "https://www.w3.org/TR/sparql12-query/#FunctionMapping" } }, "#GraphPattern": { @@ -61,6 +103,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#GraphPattern" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Query Language", + "text": "Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#GraphPattern" } }, "#GroupPatterns": { @@ -69,6 +117,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Group Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#GroupPatterns" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Group Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#GroupPatterns" } }, "#MultipleMatches": { @@ -77,6 +131,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Multiple Matches", "url": "https://w3c.github.io/sparql-query/spec/#MultipleMatches" + }, + "snapshot": { + "number": "2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Multiple Matches", + "url": "https://www.w3.org/TR/sparql12-query/#MultipleMatches" } }, "#MultipleOptionals": { @@ -85,6 +145,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Multiple Optional Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#MultipleOptionals" + }, + "snapshot": { + "number": "6.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Multiple Optional Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#MultipleOptionals" } }, "#OperatorMapping": { @@ -93,6 +159,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Operator Mapping", "url": "https://w3c.github.io/sparql-query/spec/#OperatorMapping" + }, + "snapshot": { + "number": "17.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Operator Mapping", + "url": "https://www.w3.org/TR/sparql12-query/#OperatorMapping" } }, "#OptionalAndConstraints": { @@ -101,6 +173,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Constraints in Optional Pattern Matching", "url": "https://w3c.github.io/sparql-query/spec/#OptionalAndConstraints" + }, + "snapshot": { + "number": "6.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Constraints in Optional Pattern Matching", + "url": "https://www.w3.org/TR/sparql12-query/#OptionalAndConstraints" } }, "#OptionalMatching": { @@ -109,6 +187,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Optional Pattern Matching", "url": "https://w3c.github.io/sparql-query/spec/#OptionalMatching" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Optional Pattern Matching", + "url": "https://www.w3.org/TR/sparql12-query/#OptionalMatching" } }, "#PropertyPathPatterns": { @@ -117,6 +201,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Property Path Patterns", "url": "https://w3c.github.io/sparql-query/spec/#PropertyPathPatterns" + }, + "snapshot": { + "number": "18.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Property Path Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#PropertyPathPatterns" } }, "#QSynBlankNodes": { @@ -125,6 +215,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Syntax for Blank Nodes", "url": "https://w3c.github.io/sparql-query/spec/#QSynBlankNodes" + }, + "snapshot": { + "number": "4.1.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Syntax for Blank Nodes", + "url": "https://www.w3.org/TR/sparql12-query/#QSynBlankNodes" } }, "#QSynIRI": { @@ -133,6 +229,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Syntax for IRIs", "url": "https://w3c.github.io/sparql-query/spec/#QSynIRI" + }, + "snapshot": { + "number": "4.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Syntax for IRIs", + "url": "https://www.w3.org/TR/sparql12-query/#QSynIRI" } }, "#QSynLiterals": { @@ -141,6 +243,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Syntax for Literals", "url": "https://w3c.github.io/sparql-query/spec/#QSynLiterals" + }, + "snapshot": { + "number": "4.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Syntax for Literals", + "url": "https://www.w3.org/TR/sparql12-query/#QSynLiterals" } }, "#QSynTriples": { @@ -149,6 +257,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Syntax for Triple Patterns", "url": "https://w3c.github.io/sparql-query/spec/#QSynTriples" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Syntax for Triple Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#QSynTriples" } }, "#QSynVariables": { @@ -157,6 +271,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Syntax for Query Variables", "url": "https://w3c.github.io/sparql-query/spec/#QSynVariables" + }, + "snapshot": { + "number": "4.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Syntax for Query Variables", + "url": "https://www.w3.org/TR/sparql12-query/#QSynVariables" } }, "#QueryForms": { @@ -165,6 +285,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "16. Query Forms", "url": "https://w3c.github.io/sparql-query/spec/#QueryForms" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "16. Query Forms", + "url": "https://www.w3.org/TR/sparql12-query/#QueryForms" } }, "#SolModandCONSTRUCT": { @@ -173,6 +299,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Solution Modifiers and CONSTRUCT", "url": "https://w3c.github.io/sparql-query/spec/#SolModandCONSTRUCT" + }, + "snapshot": { + "number": "16.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Solution Modifiers and CONSTRUCT", + "url": "https://www.w3.org/TR/sparql12-query/#SolModandCONSTRUCT" } }, "#SparqlOps": { @@ -181,6 +313,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Function Definitions", "url": "https://w3c.github.io/sparql-query/spec/#SparqlOps" + }, + "snapshot": { + "number": "17.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Function Definitions", + "url": "https://www.w3.org/TR/sparql12-query/#SparqlOps" } }, "#WritingSimpleQueries": { @@ -189,6 +327,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Writing a Simple Query", "url": "https://w3c.github.io/sparql-query/spec/#WritingSimpleQueries" + }, + "snapshot": { + "number": "2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Writing a Simple Query", + "url": "https://www.w3.org/TR/sparql12-query/#WritingSimpleQueries" } }, "#abbrevRdfType": { @@ -197,14 +341,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "rdf:type", "url": "https://w3c.github.io/sparql-query/spec/#abbrevRdfType" + }, + "snapshot": { + "number": "4.2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "rdf:type", + "url": "https://www.w3.org/TR/sparql12-query/#abbrevRdfType" } }, - "#accessByLabel": { + "#accessByIdentifier": { "current": { "number": "13.3.1", "spec": "SPARQL 1.2 Query Language", "text": "Accessing Graph Names", - "url": "https://w3c.github.io/sparql-query/spec/#accessByLabel" + "url": "https://w3c.github.io/sparql-query/spec/#accessByIdentifier" + }, + "snapshot": { + "number": "13.3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Accessing Graph Names", + "url": "https://www.w3.org/TR/sparql12-query/#accessByIdentifier" } }, "#accessingRdfGraphs": { @@ -213,6 +369,110 @@ "spec": "SPARQL 1.2 Query Language", "text": "Accessing Graphs in the RDF Dataset", "url": "https://w3c.github.io/sparql-query/spec/#accessingRdfGraphs" + }, + "snapshot": { + "number": "16.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Accessing Graphs in the RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-query/#accessingRdfGraphs" + } + }, + "#aggAvg": { + "current": { + "number": "18.5.1.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Avg", + "url": "https://w3c.github.io/sparql-query/spec/#aggAvg" + }, + "snapshot": { + "number": "18.5.1.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Avg", + "url": "https://www.w3.org/TR/sparql12-query/#aggAvg" + } + }, + "#aggCount": { + "current": { + "number": "18.5.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Count", + "url": "https://w3c.github.io/sparql-query/spec/#aggCount" + }, + "snapshot": { + "number": "18.5.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Count", + "url": "https://www.w3.org/TR/sparql12-query/#aggCount" + } + }, + "#aggGroupConcat": { + "current": { + "number": "18.5.1.7", + "spec": "SPARQL 1.2 Query Language", + "text": "GroupConcat", + "url": "https://w3c.github.io/sparql-query/spec/#aggGroupConcat" + }, + "snapshot": { + "number": "18.5.1.7", + "spec": "SPARQL 1.2 Query Language", + "text": "GroupConcat", + "url": "https://www.w3.org/TR/sparql12-query/#aggGroupConcat" + } + }, + "#aggMax": { + "current": { + "number": "18.5.1.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Max", + "url": "https://w3c.github.io/sparql-query/spec/#aggMax" + }, + "snapshot": { + "number": "18.5.1.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Max", + "url": "https://www.w3.org/TR/sparql12-query/#aggMax" + } + }, + "#aggMin": { + "current": { + "number": "18.5.1.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Min", + "url": "https://w3c.github.io/sparql-query/spec/#aggMin" + }, + "snapshot": { + "number": "18.5.1.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Min", + "url": "https://www.w3.org/TR/sparql12-query/#aggMin" + } + }, + "#aggSample": { + "current": { + "number": "18.5.1.8", + "spec": "SPARQL 1.2 Query Language", + "text": "Sample", + "url": "https://w3c.github.io/sparql-query/spec/#aggSample" + }, + "snapshot": { + "number": "18.5.1.8", + "spec": "SPARQL 1.2 Query Language", + "text": "Sample", + "url": "https://www.w3.org/TR/sparql12-query/#aggSample" + } + }, + "#aggSum": { + "current": { + "number": "18.5.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Sum", + "url": "https://w3c.github.io/sparql-query/spec/#aggSum" + }, + "snapshot": { + "number": "18.5.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Sum", + "url": "https://www.w3.org/TR/sparql12-query/#aggSum" } }, "#aggregateAlgebra": { @@ -221,6 +481,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Aggregate Algebra", "url": "https://w3c.github.io/sparql-query/spec/#aggregateAlgebra" + }, + "snapshot": { + "number": "18.5.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Aggregate Algebra", + "url": "https://www.w3.org/TR/sparql12-query/#aggregateAlgebra" } }, "#aggregateExample": { @@ -229,6 +495,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Aggregate Example", "url": "https://w3c.github.io/sparql-query/spec/#aggregateExample" + }, + "snapshot": { + "number": "11.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Aggregate Example", + "url": "https://www.w3.org/TR/sparql12-query/#aggregateExample" } }, "#aggregateExample2": { @@ -237,6 +509,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Aggregate Example (with errors)", "url": "https://w3c.github.io/sparql-query/spec/#aggregateExample2" + }, + "snapshot": { + "number": "11.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Aggregate Example (with errors)", + "url": "https://www.w3.org/TR/sparql12-query/#aggregateExample2" } }, "#aggregateRestrictions": { @@ -245,6 +523,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Aggregate Projection Restrictions", "url": "https://w3c.github.io/sparql-query/spec/#aggregateRestrictions" + }, + "snapshot": { + "number": "11.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Aggregate Projection Restrictions", + "url": "https://www.w3.org/TR/sparql12-query/#aggregateRestrictions" } }, "#aggregates": { @@ -253,6 +537,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "11. Aggregates", "url": "https://w3c.github.io/sparql-query/spec/#aggregates" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "11. Aggregates", + "url": "https://www.w3.org/TR/sparql12-query/#aggregates" } }, "#alternatives": { @@ -261,6 +551,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Matching Alternatives", "url": "https://w3c.github.io/sparql-query/spec/#alternatives" + }, + "snapshot": { + "number": "7", + "spec": "SPARQL 1.2 Query Language", + "text": "Matching Alternatives", + "url": "https://www.w3.org/TR/sparql12-query/#alternatives" } }, "#ask": { @@ -269,6 +565,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "ASK", "url": "https://w3c.github.io/sparql-query/spec/#ask" + }, + "snapshot": { + "number": "16.3", + "spec": "SPARQL 1.2 Query Language", + "text": "ASK", + "url": "https://www.w3.org/TR/sparql12-query/#ask" } }, "#assignment": { @@ -277,6 +579,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "10. Assignment", "url": "https://w3c.github.io/sparql-query/spec/#assignment" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "10. Assignment", + "url": "https://www.w3.org/TR/sparql12-query/#assignment" } }, "#basic-federated-query": { @@ -285,6 +593,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "14. Basic Federated Query", "url": "https://w3c.github.io/sparql-query/spec/#basic-federated-query" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "14. Basic Federated Query", + "url": "https://www.w3.org/TR/sparql12-query/#basic-federated-query" } }, "#basicpatterns": { @@ -293,14 +607,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Making Simple Queries (Informative)", "url": "https://w3c.github.io/sparql-query/spec/#basicpatterns" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Query Language", + "text": "Making Simple Queries (Informative)", + "url": "https://www.w3.org/TR/sparql12-query/#basicpatterns" } }, - "#bgpBNodeLabels": { + "#bgpBNodeIdentifiers": { "current": { "number": "5.1.1", "spec": "SPARQL 1.2 Query Language", - "text": "Blank Node Labels", - "url": "https://w3c.github.io/sparql-query/spec/#bgpBNodeLabels" + "text": "Blank Node Identifiers", + "url": "https://w3c.github.io/sparql-query/spec/#bgpBNodeIdentifiers" + }, + "snapshot": { + "number": "5.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Blank Node Identifiers", + "url": "https://www.w3.org/TR/sparql12-query/#bgpBNodeIdentifiers" } }, "#bgpExtend": { @@ -309,6 +635,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Extending Basic Graph Pattern Matching", "url": "https://w3c.github.io/sparql-query/spec/#bgpExtend" + }, + "snapshot": { + "number": "5.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Extending Basic Graph Pattern Matching", + "url": "https://www.w3.org/TR/sparql12-query/#bgpExtend" } }, "#bind": { @@ -317,14 +649,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "BIND: Assigning to Variables", "url": "https://w3c.github.io/sparql-query/spec/#bind" + }, + "snapshot": { + "number": "10.1", + "spec": "SPARQL 1.2 Query Language", + "text": "BIND: Assigning to Variables", + "url": "https://www.w3.org/TR/sparql12-query/#bind" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Query Language", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-query/spec/#changes-from-sparql11" + "text": "Changes between SPARQL 1.1 Query Language and SPARQL 1.2 Query Language", + "url": "https://w3c.github.io/sparql-query/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Query Language", + "text": "Changes between SPARQL 1.1 Query Language and SPARQL 1.2 Query Language", + "url": "https://www.w3.org/TR/sparql12-query/#changes-1-1" } }, "#codepointEscape": { @@ -333,6 +677,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Codepoint Escape Sequences", "url": "https://w3c.github.io/sparql-query/spec/#codepointEscape" + }, + "snapshot": { + "number": "19.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Codepoint Escape Sequences", + "url": "https://www.w3.org/TR/sparql12-query/#codepointEscape" } }, "#collections": { @@ -341,6 +691,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "RDF Collections", "url": "https://w3c.github.io/sparql-query/spec/#collections" + }, + "snapshot": { + "number": "4.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "RDF Collections", + "url": "https://www.w3.org/TR/sparql12-query/#collections" } }, "#conformance": { @@ -349,6 +705,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "20. Conformance", "url": "https://w3c.github.io/sparql-query/spec/#conformance" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "20. Conformance", + "url": "https://www.w3.org/TR/sparql12-query/#conformance" } }, "#conformance-0": { @@ -357,6 +719,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Conformance", "url": "https://w3c.github.io/sparql-query/spec/#conformance-0" + }, + "snapshot": { + "number": "20.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-query/#conformance-0" } }, "#construct": { @@ -365,6 +733,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "CONSTRUCT", "url": "https://w3c.github.io/sparql-query/spec/#construct" + }, + "snapshot": { + "number": "16.2", + "spec": "SPARQL 1.2 Query Language", + "text": "CONSTRUCT", + "url": "https://www.w3.org/TR/sparql12-query/#construct" } }, "#constructGraph": { @@ -373,6 +747,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Building RDF Graphs", "url": "https://w3c.github.io/sparql-query/spec/#constructGraph" + }, + "snapshot": { + "number": "2.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Building RDF Graphs", + "url": "https://www.w3.org/TR/sparql12-query/#constructGraph" } }, "#constructWhere": { @@ -381,6 +761,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "CONSTRUCT WHERE", "url": "https://w3c.github.io/sparql-query/spec/#constructWhere" + }, + "snapshot": { + "number": "16.2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "CONSTRUCT WHERE", + "url": "https://www.w3.org/TR/sparql12-query/#constructWhere" } }, "#convertGraphPattern": { @@ -389,6 +775,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Converting Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#convertGraphPattern" + }, + "snapshot": { + "number": "18.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Converting Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#convertGraphPattern" } }, "#convertGroupAggSelectExpressions": { @@ -397,6 +789,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Converting Groups, Aggregates, HAVING, final VALUES clause and SELECT Expressions", "url": "https://w3c.github.io/sparql-query/spec/#convertGroupAggSelectExpressions" + }, + "snapshot": { + "number": "18.2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Converting Groups, Aggregates, HAVING, final VALUES clause and SELECT Expressions", + "url": "https://www.w3.org/TR/sparql12-query/#convertGroupAggSelectExpressions" } }, "#convertSolMod": { @@ -405,62 +803,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Converting Solution Modifiers", "url": "https://w3c.github.io/sparql-query/spec/#convertSolMod" - } - }, - "#defn_aggAvg": { - "current": { - "number": "18.5.1.4", - "spec": "SPARQL 1.2 Query Language", - "text": "Avg", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggAvg" - } - }, - "#defn_aggCount": { - "current": { - "number": "18.5.1.2", - "spec": "SPARQL 1.2 Query Language", - "text": "Count", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggCount" - } - }, - "#defn_aggGroupConcat": { - "current": { - "number": "18.5.1.7", - "spec": "SPARQL 1.2 Query Language", - "text": "GroupConcat", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggGroupConcat" - } - }, - "#defn_aggMax": { - "current": { - "number": "18.5.1.6", - "spec": "SPARQL 1.2 Query Language", - "text": "Max", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggMax" - } - }, - "#defn_aggMin": { - "current": { - "number": "18.5.1.5", - "spec": "SPARQL 1.2 Query Language", - "text": "Min", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggMin" - } - }, - "#defn_aggSample": { - "current": { - "number": "18.5.1.8", - "spec": "SPARQL 1.2 Query Language", - "text": "Sample", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggSample" - } - }, - "#defn_aggSum": { - "current": { - "number": "18.5.1.3", + }, + "snapshot": { + "number": "18.2.5", "spec": "SPARQL 1.2 Query Language", - "text": "Sum", - "url": "https://w3c.github.io/sparql-query/spec/#defn_aggSum" + "text": "Converting Solution Modifiers", + "url": "https://www.w3.org/TR/sparql12-query/#convertSolMod" } }, "#describe": { @@ -469,6 +817,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "DESCRIBE (Informative)", "url": "https://w3c.github.io/sparql-query/spec/#describe" + }, + "snapshot": { + "number": "16.4", + "spec": "SPARQL 1.2 Query Language", + "text": "DESCRIBE (Informative)", + "url": "https://www.w3.org/TR/sparql12-query/#describe" } }, "#descriptionsOfResources": { @@ -477,6 +831,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Descriptions of Resources", "url": "https://w3c.github.io/sparql-query/spec/#descriptionsOfResources" + }, + "snapshot": { + "number": "16.4.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Descriptions of Resources", + "url": "https://www.w3.org/TR/sparql12-query/#descriptionsOfResources" } }, "#docConventions": { @@ -485,6 +845,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Document Conventions", "url": "https://w3c.github.io/sparql-query/spec/#docConventions" + }, + "snapshot": { + "number": "1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Document Conventions", + "url": "https://www.w3.org/TR/sparql12-query/#docConventions" } }, "#docDataDesc": { @@ -493,6 +859,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Data Descriptions", "url": "https://w3c.github.io/sparql-query/spec/#docDataDesc" + }, + "snapshot": { + "number": "1.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Data Descriptions", + "url": "https://www.w3.org/TR/sparql12-query/#docDataDesc" } }, "#docNamespaces": { @@ -501,6 +873,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Namespaces", "url": "https://w3c.github.io/sparql-query/spec/#docNamespaces" + }, + "snapshot": { + "number": "1.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Namespaces", + "url": "https://www.w3.org/TR/sparql12-query/#docNamespaces" } }, "#docOutline": { @@ -509,6 +887,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Document Outline", "url": "https://w3c.github.io/sparql-query/spec/#docOutline" + }, + "snapshot": { + "number": "1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Document Outline", + "url": "https://www.w3.org/TR/sparql12-query/#docOutline" } }, "#docResultDesc": { @@ -517,6 +901,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Result Descriptions", "url": "https://w3c.github.io/sparql-query/spec/#docResultDesc" + }, + "snapshot": { + "number": "1.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Result Descriptions", + "url": "https://www.w3.org/TR/sparql12-query/#docResultDesc" } }, "#docTerminology": { @@ -525,6 +915,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Terminology", "url": "https://w3c.github.io/sparql-query/spec/#docTerminology" + }, + "snapshot": { + "number": "1.2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Terminology", + "url": "https://www.w3.org/TR/sparql12-query/#docTerminology" } }, "#ebv": { @@ -533,6 +929,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Effective Boolean Value (EBV)", "url": "https://w3c.github.io/sparql-query/spec/#ebv" + }, + "snapshot": { + "number": "17.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Effective Boolean Value (EBV)", + "url": "https://www.w3.org/TR/sparql12-query/#ebv" } }, "#emptyGroupPattern": { @@ -541,6 +943,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Empty Group Pattern", "url": "https://w3c.github.io/sparql-query/spec/#emptyGroupPattern" + }, + "snapshot": { + "number": "5.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Empty Group Pattern", + "url": "https://www.w3.org/TR/sparql12-query/#emptyGroupPattern" } }, "#evaluation": { @@ -549,6 +957,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Filter Evaluation", "url": "https://w3c.github.io/sparql-query/spec/#evaluation" + }, + "snapshot": { + "number": "17.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Filter Evaluation", + "url": "https://www.w3.org/TR/sparql12-query/#evaluation" } }, "#example": { @@ -557,6 +971,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Example", "url": "https://w3c.github.io/sparql-query/spec/#example" + }, + "snapshot": { + "number": "12.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Example", + "url": "https://www.w3.org/TR/sparql12-query/#example" } }, "#exampleDatasets": { @@ -565,6 +985,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Examples of RDF Datasets", "url": "https://w3c.github.io/sparql-query/spec/#exampleDatasets" + }, + "snapshot": { + "number": "13.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Examples of RDF Datasets", + "url": "https://www.w3.org/TR/sparql12-query/#exampleDatasets" } }, "#explicitIRIs": { @@ -573,6 +999,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Explicit IRIs", "url": "https://w3c.github.io/sparql-query/spec/#explicitIRIs" + }, + "snapshot": { + "number": "16.4.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Explicit IRIs", + "url": "https://www.w3.org/TR/sparql12-query/#explicitIRIs" } }, "#expressions": { @@ -581,6 +1013,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "17. Expressions and Testing Values", "url": "https://w3c.github.io/sparql-query/spec/#expressions" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "17. Expressions and Testing Values", + "url": "https://www.w3.org/TR/sparql12-query/#expressions" } }, "#extensionFunctions": { @@ -589,22 +1027,40 @@ "spec": "SPARQL 1.2 Query Language", "text": "Extensible Value Testing", "url": "https://w3c.github.io/sparql-query/spec/#extensionFunctions" + }, + "snapshot": { + "number": "17.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Extensible Value Testing", + "url": "https://www.w3.org/TR/sparql12-query/#extensionFunctions" } }, "#func-RDFterm-equal": { "current": { - "number": "17.4.1.7", + "number": "17.4.2.1", "spec": "SPARQL 1.2 Query Language", "text": "RDFterm-equal", "url": "https://w3c.github.io/sparql-query/spec/#func-RDFterm-equal" + }, + "snapshot": { + "number": "17.4.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "RDFterm-equal", + "url": "https://www.w3.org/TR/sparql12-query/#func-RDFterm-equal" } }, "#func-abs": { "current": { "number": "17.4.4.1", "spec": "SPARQL 1.2 Query Language", - "text": "abs", + "text": "ABS", "url": "https://w3c.github.io/sparql-query/spec/#func-abs" + }, + "snapshot": { + "number": "17.4.4.1", + "spec": "SPARQL 1.2 Query Language", + "text": "ABS", + "url": "https://www.w3.org/TR/sparql12-query/#func-abs" } }, "#func-arg-compatibility": { @@ -613,30 +1069,54 @@ "spec": "SPARQL 1.2 Query Language", "text": "Argument Compatibility Rules", "url": "https://w3c.github.io/sparql-query/spec/#func-arg-compatibility" + }, + "snapshot": { + "number": "17.4.3.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Argument Compatibility Rules", + "url": "https://www.w3.org/TR/sparql12-query/#func-arg-compatibility" } }, "#func-bnode": { "current": { - "number": "17.4.2.9", + "number": "17.4.2.11", "spec": "SPARQL 1.2 Query Language", "text": "BNODE", "url": "https://w3c.github.io/sparql-query/spec/#func-bnode" + }, + "snapshot": { + "number": "17.4.2.11", + "spec": "SPARQL 1.2 Query Language", + "text": "BNODE", + "url": "https://www.w3.org/TR/sparql12-query/#func-bnode" } }, "#func-bound": { "current": { "number": "17.4.1.1", "spec": "SPARQL 1.2 Query Language", - "text": "bound", + "text": "BOUND", "url": "https://w3c.github.io/sparql-query/spec/#func-bound" + }, + "snapshot": { + "number": "17.4.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "BOUND", + "url": "https://www.w3.org/TR/sparql12-query/#func-bound" } }, "#func-ceil": { "current": { "number": "17.4.4.3", "spec": "SPARQL 1.2 Query Language", - "text": "ceil", + "text": "CEIL", "url": "https://w3c.github.io/sparql-query/spec/#func-ceil" + }, + "snapshot": { + "number": "17.4.4.3", + "spec": "SPARQL 1.2 Query Language", + "text": "CEIL", + "url": "https://www.w3.org/TR/sparql12-query/#func-ceil" } }, "#func-coalesce": { @@ -645,6 +1125,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "COALESCE", "url": "https://w3c.github.io/sparql-query/spec/#func-coalesce" + }, + "snapshot": { + "number": "17.4.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "COALESCE", + "url": "https://www.w3.org/TR/sparql12-query/#func-coalesce" } }, "#func-concat": { @@ -653,6 +1139,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "CONCAT", "url": "https://w3c.github.io/sparql-query/spec/#func-concat" + }, + "snapshot": { + "number": "17.4.3.12", + "spec": "SPARQL 1.2 Query Language", + "text": "CONCAT", + "url": "https://www.w3.org/TR/sparql12-query/#func-concat" } }, "#func-contains": { @@ -661,14 +1153,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "CONTAINS", "url": "https://w3c.github.io/sparql-query/spec/#func-contains" + }, + "snapshot": { + "number": "17.4.3.8", + "spec": "SPARQL 1.2 Query Language", + "text": "CONTAINS", + "url": "https://www.w3.org/TR/sparql12-query/#func-contains" } }, "#func-datatype": { "current": { - "number": "17.4.2.7", + "number": "17.4.2.9", "spec": "SPARQL 1.2 Query Language", - "text": "datatype", + "text": "DATATYPE", "url": "https://w3c.github.io/sparql-query/spec/#func-datatype" + }, + "snapshot": { + "number": "17.4.2.9", + "spec": "SPARQL 1.2 Query Language", + "text": "DATATYPE", + "url": "https://www.w3.org/TR/sparql12-query/#func-datatype" } }, "#func-date-time": { @@ -677,14 +1181,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Functions on Dates and Times", "url": "https://w3c.github.io/sparql-query/spec/#func-date-time" + }, + "snapshot": { + "number": "17.4.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Functions on Dates and Times", + "url": "https://www.w3.org/TR/sparql12-query/#func-date-time" } }, "#func-day": { "current": { "number": "17.4.5.4", "spec": "SPARQL 1.2 Query Language", - "text": "day", + "text": "DAY", "url": "https://w3c.github.io/sparql-query/spec/#func-day" + }, + "snapshot": { + "number": "17.4.5.4", + "spec": "SPARQL 1.2 Query Language", + "text": "DAY", + "url": "https://www.w3.org/TR/sparql12-query/#func-day" } }, "#func-encode": { @@ -693,6 +1209,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "ENCODE_FOR_URI", "url": "https://w3c.github.io/sparql-query/spec/#func-encode" + }, + "snapshot": { + "number": "17.4.3.11", + "spec": "SPARQL 1.2 Query Language", + "text": "ENCODE_FOR_URI", + "url": "https://www.w3.org/TR/sparql12-query/#func-encode" } }, "#func-filter-exists": { @@ -701,14 +1223,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "NOT EXISTS and EXISTS", "url": "https://w3c.github.io/sparql-query/spec/#func-filter-exists" + }, + "snapshot": { + "number": "17.4.1.4", + "spec": "SPARQL 1.2 Query Language", + "text": "NOT EXISTS and EXISTS", + "url": "https://www.w3.org/TR/sparql12-query/#func-filter-exists" } }, "#func-floor": { "current": { "number": "17.4.4.4", "spec": "SPARQL 1.2 Query Language", - "text": "floor", + "text": "FLOOR", "url": "https://w3c.github.io/sparql-query/spec/#func-floor" + }, + "snapshot": { + "number": "17.4.4.4", + "spec": "SPARQL 1.2 Query Language", + "text": "FLOOR", + "url": "https://www.w3.org/TR/sparql12-query/#func-floor" } }, "#func-forms": { @@ -717,22 +1251,40 @@ "spec": "SPARQL 1.2 Query Language", "text": "Functional Forms", "url": "https://w3c.github.io/sparql-query/spec/#func-forms" + }, + "snapshot": { + "number": "17.4.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Functional Forms", + "url": "https://www.w3.org/TR/sparql12-query/#func-forms" } }, "#func-hash": { "current": { - "number": "17.4.6", + "number": "17.4.7", "spec": "SPARQL 1.2 Query Language", "text": "Hash Functions", "url": "https://w3c.github.io/sparql-query/spec/#func-hash" + }, + "snapshot": { + "number": "17.4.7", + "spec": "SPARQL 1.2 Query Language", + "text": "Hash Functions", + "url": "https://www.w3.org/TR/sparql12-query/#func-hash" } }, "#func-hours": { "current": { "number": "17.4.5.5", "spec": "SPARQL 1.2 Query Language", - "text": "hours", + "text": "HOURS", "url": "https://w3c.github.io/sparql-query/spec/#func-hours" + }, + "snapshot": { + "number": "17.4.5.5", + "spec": "SPARQL 1.2 Query Language", + "text": "HOURS", + "url": "https://www.w3.org/TR/sparql12-query/#func-hours" } }, "#func-if": { @@ -741,70 +1293,124 @@ "spec": "SPARQL 1.2 Query Language", "text": "IF", "url": "https://w3c.github.io/sparql-query/spec/#func-if" + }, + "snapshot": { + "number": "17.4.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "IF", + "url": "https://www.w3.org/TR/sparql12-query/#func-if" } }, "#func-in": { "current": { - "number": "17.4.1.9", + "number": "17.4.1.7", "spec": "SPARQL 1.2 Query Language", "text": "IN", "url": "https://w3c.github.io/sparql-query/spec/#func-in" + }, + "snapshot": { + "number": "17.4.1.7", + "spec": "SPARQL 1.2 Query Language", + "text": "IN", + "url": "https://www.w3.org/TR/sparql12-query/#func-in" } }, "#func-iri": { "current": { - "number": "17.4.2.8", + "number": "17.4.2.10", "spec": "SPARQL 1.2 Query Language", "text": "IRI", "url": "https://w3c.github.io/sparql-query/spec/#func-iri" + }, + "snapshot": { + "number": "17.4.2.10", + "spec": "SPARQL 1.2 Query Language", + "text": "IRI", + "url": "https://www.w3.org/TR/sparql12-query/#func-iri" } }, "#func-isBlank": { "current": { - "number": "17.4.2.2", + "number": "17.4.2.4", "spec": "SPARQL 1.2 Query Language", - "text": "isBlank", + "text": "isBLANK", "url": "https://w3c.github.io/sparql-query/spec/#func-isBlank" + }, + "snapshot": { + "number": "17.4.2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "isBLANK", + "url": "https://www.w3.org/TR/sparql12-query/#func-isBlank" } }, "#func-isIRI": { "current": { - "number": "17.4.2.1", + "number": "17.4.2.3", "spec": "SPARQL 1.2 Query Language", "text": "isIRI", "url": "https://w3c.github.io/sparql-query/spec/#func-isIRI" + }, + "snapshot": { + "number": "17.4.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "isIRI", + "url": "https://www.w3.org/TR/sparql12-query/#func-isIRI" } }, "#func-isLiteral": { "current": { - "number": "17.4.2.3", + "number": "17.4.2.5", "spec": "SPARQL 1.2 Query Language", - "text": "isLiteral", + "text": "isLITERAL", "url": "https://w3c.github.io/sparql-query/spec/#func-isLiteral" + }, + "snapshot": { + "number": "17.4.2.5", + "spec": "SPARQL 1.2 Query Language", + "text": "isLITERAL", + "url": "https://www.w3.org/TR/sparql12-query/#func-isLiteral" } }, "#func-isNumeric": { "current": { - "number": "17.4.2.4", + "number": "17.4.2.6", "spec": "SPARQL 1.2 Query Language", - "text": "isNumeric", + "text": "isNUMERIC", "url": "https://w3c.github.io/sparql-query/spec/#func-isNumeric" + }, + "snapshot": { + "number": "17.4.2.6", + "spec": "SPARQL 1.2 Query Language", + "text": "isNUMERIC", + "url": "https://www.w3.org/TR/sparql12-query/#func-isNumeric" } }, "#func-lang": { "current": { - "number": "17.4.2.6", + "number": "17.4.2.8", "spec": "SPARQL 1.2 Query Language", - "text": "lang", + "text": "LANG", "url": "https://w3c.github.io/sparql-query/spec/#func-lang" + }, + "snapshot": { + "number": "17.4.2.8", + "spec": "SPARQL 1.2 Query Language", + "text": "LANG", + "url": "https://www.w3.org/TR/sparql12-query/#func-lang" } }, "#func-langMatches": { "current": { "number": "17.4.3.13", "spec": "SPARQL 1.2 Query Language", - "text": "langMatches", + "text": "langMATCHES", "url": "https://w3c.github.io/sparql-query/spec/#func-langMatches" + }, + "snapshot": { + "number": "17.4.3.13", + "spec": "SPARQL 1.2 Query Language", + "text": "langMATCHES", + "url": "https://www.w3.org/TR/sparql12-query/#func-langMatches" } }, "#func-lcase": { @@ -813,6 +1419,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "LCASE", "url": "https://w3c.github.io/sparql-query/spec/#func-lcase" + }, + "snapshot": { + "number": "17.4.3.5", + "spec": "SPARQL 1.2 Query Language", + "text": "LCASE", + "url": "https://www.w3.org/TR/sparql12-query/#func-lcase" } }, "#func-logical-and": { @@ -821,6 +1433,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "logical-and", "url": "https://w3c.github.io/sparql-query/spec/#func-logical-and" + }, + "snapshot": { + "number": "17.4.1.6", + "spec": "SPARQL 1.2 Query Language", + "text": "logical-and", + "url": "https://www.w3.org/TR/sparql12-query/#func-logical-and" } }, "#func-logical-or": { @@ -829,54 +1447,138 @@ "spec": "SPARQL 1.2 Query Language", "text": "logical-or", "url": "https://w3c.github.io/sparql-query/spec/#func-logical-or" + }, + "snapshot": { + "number": "17.4.1.5", + "spec": "SPARQL 1.2 Query Language", + "text": "logical-or", + "url": "https://www.w3.org/TR/sparql12-query/#func-logical-or" } }, "#func-md5": { "current": { - "number": "17.4.6.1", + "number": "17.4.7.1", "spec": "SPARQL 1.2 Query Language", "text": "MD5", "url": "https://w3c.github.io/sparql-query/spec/#func-md5" + }, + "snapshot": { + "number": "17.4.7.1", + "spec": "SPARQL 1.2 Query Language", + "text": "MD5", + "url": "https://www.w3.org/TR/sparql12-query/#func-md5" } }, "#func-minutes": { "current": { "number": "17.4.5.6", "spec": "SPARQL 1.2 Query Language", - "text": "minutes", + "text": "MINUTES", "url": "https://w3c.github.io/sparql-query/spec/#func-minutes" + }, + "snapshot": { + "number": "17.4.5.6", + "spec": "SPARQL 1.2 Query Language", + "text": "MINUTES", + "url": "https://www.w3.org/TR/sparql12-query/#func-minutes" } }, "#func-month": { "current": { "number": "17.4.5.3", "spec": "SPARQL 1.2 Query Language", - "text": "month", + "text": "MONTH", "url": "https://w3c.github.io/sparql-query/spec/#func-month" + }, + "snapshot": { + "number": "17.4.5.3", + "spec": "SPARQL 1.2 Query Language", + "text": "MONTH", + "url": "https://www.w3.org/TR/sparql12-query/#func-month" } }, "#func-not-in": { "current": { - "number": "17.4.1.10", + "number": "17.4.1.8", "spec": "SPARQL 1.2 Query Language", "text": "NOT IN", "url": "https://w3c.github.io/sparql-query/spec/#func-not-in" + }, + "snapshot": { + "number": "17.4.1.8", + "spec": "SPARQL 1.2 Query Language", + "text": "NOT IN", + "url": "https://www.w3.org/TR/sparql12-query/#func-not-in" } }, "#func-now": { "current": { "number": "17.4.5.1", "spec": "SPARQL 1.2 Query Language", - "text": "now", - "url": "https://w3c.github.io/sparql-query/spec/#func-now" + "text": "NOW", + "url": "https://w3c.github.io/sparql-query/spec/#func-now" + }, + "snapshot": { + "number": "17.4.5.1", + "spec": "SPARQL 1.2 Query Language", + "text": "NOW", + "url": "https://www.w3.org/TR/sparql12-query/#func-now" + } + }, + "#func-numerics": { + "current": { + "number": "17.4.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Functions on Numerics", + "url": "https://w3c.github.io/sparql-query/spec/#func-numerics" + }, + "snapshot": { + "number": "17.4.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Functions on Numerics", + "url": "https://www.w3.org/TR/sparql12-query/#func-numerics" + } + }, + "#func-object": { + "current": { + "number": "17.4.6.4", + "spec": "SPARQL 1.2 Query Language", + "text": "OBJECT", + "url": "https://w3c.github.io/sparql-query/spec/#func-object" + }, + "snapshot": { + "number": "17.4.6.4", + "spec": "SPARQL 1.2 Query Language", + "text": "OBJECT", + "url": "https://www.w3.org/TR/sparql12-query/#func-object" + } + }, + "#func-predicate": { + "current": { + "number": "17.4.6.3", + "spec": "SPARQL 1.2 Query Language", + "text": "PREDICATE", + "url": "https://w3c.github.io/sparql-query/spec/#func-predicate" + }, + "snapshot": { + "number": "17.4.6.3", + "spec": "SPARQL 1.2 Query Language", + "text": "PREDICATE", + "url": "https://www.w3.org/TR/sparql12-query/#func-predicate" } }, - "#func-numerics": { + "#func-quoted-triples": { "current": { - "number": "17.4.4", + "number": "17.4.6", "spec": "SPARQL 1.2 Query Language", - "text": "Functions on Numerics", - "url": "https://w3c.github.io/sparql-query/spec/#func-numerics" + "text": "Functions on Quoted Triples", + "url": "https://w3c.github.io/sparql-query/spec/#func-quoted-triples" + }, + "snapshot": { + "number": "17.4.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Functions on Quoted Triples", + "url": "https://www.w3.org/TR/sparql12-query/#func-quoted-triples" } }, "#func-rdfTerms": { @@ -885,6 +1587,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Functions on RDF Terms", "url": "https://w3c.github.io/sparql-query/spec/#func-rdfTerms" + }, + "snapshot": { + "number": "17.4.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Functions on RDF Terms", + "url": "https://www.w3.org/TR/sparql12-query/#func-rdfTerms" } }, "#func-regex": { @@ -893,6 +1601,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "REGEX", "url": "https://w3c.github.io/sparql-query/spec/#func-regex" + }, + "snapshot": { + "number": "17.4.3.14", + "spec": "SPARQL 1.2 Query Language", + "text": "REGEX", + "url": "https://www.w3.org/TR/sparql12-query/#func-regex" } }, "#func-replace": { @@ -901,70 +1615,124 @@ "spec": "SPARQL 1.2 Query Language", "text": "REPLACE", "url": "https://w3c.github.io/sparql-query/spec/#func-replace" + }, + "snapshot": { + "number": "17.4.3.15", + "spec": "SPARQL 1.2 Query Language", + "text": "REPLACE", + "url": "https://www.w3.org/TR/sparql12-query/#func-replace" } }, "#func-round": { "current": { "number": "17.4.4.2", "spec": "SPARQL 1.2 Query Language", - "text": "round", + "text": "ROUND", "url": "https://w3c.github.io/sparql-query/spec/#func-round" + }, + "snapshot": { + "number": "17.4.4.2", + "spec": "SPARQL 1.2 Query Language", + "text": "ROUND", + "url": "https://www.w3.org/TR/sparql12-query/#func-round" } }, "#func-sameTerm": { "current": { - "number": "17.4.1.8", + "number": "17.4.2.2", "spec": "SPARQL 1.2 Query Language", "text": "sameTerm", "url": "https://w3c.github.io/sparql-query/spec/#func-sameTerm" + }, + "snapshot": { + "number": "17.4.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "sameTerm", + "url": "https://www.w3.org/TR/sparql12-query/#func-sameTerm" } }, "#func-seconds": { "current": { "number": "17.4.5.7", "spec": "SPARQL 1.2 Query Language", - "text": "seconds", + "text": "SECONDS", "url": "https://w3c.github.io/sparql-query/spec/#func-seconds" + }, + "snapshot": { + "number": "17.4.5.7", + "spec": "SPARQL 1.2 Query Language", + "text": "SECONDS", + "url": "https://www.w3.org/TR/sparql12-query/#func-seconds" } }, "#func-sha1": { "current": { - "number": "17.4.6.2", + "number": "17.4.7.2", "spec": "SPARQL 1.2 Query Language", "text": "SHA1", "url": "https://w3c.github.io/sparql-query/spec/#func-sha1" + }, + "snapshot": { + "number": "17.4.7.2", + "spec": "SPARQL 1.2 Query Language", + "text": "SHA1", + "url": "https://www.w3.org/TR/sparql12-query/#func-sha1" } }, "#func-sha256": { "current": { - "number": "17.4.6.3", + "number": "17.4.7.3", "spec": "SPARQL 1.2 Query Language", "text": "SHA256", "url": "https://w3c.github.io/sparql-query/spec/#func-sha256" + }, + "snapshot": { + "number": "17.4.7.3", + "spec": "SPARQL 1.2 Query Language", + "text": "SHA256", + "url": "https://www.w3.org/TR/sparql12-query/#func-sha256" } }, "#func-sha384": { "current": { - "number": "17.4.6.4", + "number": "17.4.7.4", "spec": "SPARQL 1.2 Query Language", "text": "SHA384", "url": "https://w3c.github.io/sparql-query/spec/#func-sha384" + }, + "snapshot": { + "number": "17.4.7.4", + "spec": "SPARQL 1.2 Query Language", + "text": "SHA384", + "url": "https://www.w3.org/TR/sparql12-query/#func-sha384" } }, "#func-sha512": { "current": { - "number": "17.4.6.5", + "number": "17.4.7.5", "spec": "SPARQL 1.2 Query Language", "text": "SHA512", "url": "https://w3c.github.io/sparql-query/spec/#func-sha512" + }, + "snapshot": { + "number": "17.4.7.5", + "spec": "SPARQL 1.2 Query Language", + "text": "SHA512", + "url": "https://www.w3.org/TR/sparql12-query/#func-sha512" } }, "#func-str": { "current": { - "number": "17.4.2.5", + "number": "17.4.2.7", "spec": "SPARQL 1.2 Query Language", - "text": "str", + "text": "STR", "url": "https://w3c.github.io/sparql-query/spec/#func-str" + }, + "snapshot": { + "number": "17.4.2.7", + "spec": "SPARQL 1.2 Query Language", + "text": "STR", + "url": "https://www.w3.org/TR/sparql12-query/#func-str" } }, "#func-strafter": { @@ -973,6 +1741,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "STRAFTER", "url": "https://w3c.github.io/sparql-query/spec/#func-strafter" + }, + "snapshot": { + "number": "17.4.3.10", + "spec": "SPARQL 1.2 Query Language", + "text": "STRAFTER", + "url": "https://www.w3.org/TR/sparql12-query/#func-strafter" } }, "#func-strbefore": { @@ -981,14 +1755,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "STRBEFORE", "url": "https://w3c.github.io/sparql-query/spec/#func-strbefore" + }, + "snapshot": { + "number": "17.4.3.9", + "spec": "SPARQL 1.2 Query Language", + "text": "STRBEFORE", + "url": "https://www.w3.org/TR/sparql12-query/#func-strbefore" } }, "#func-strdt": { "current": { - "number": "17.4.2.10", + "number": "17.4.2.12", "spec": "SPARQL 1.2 Query Language", "text": "STRDT", "url": "https://w3c.github.io/sparql-query/spec/#func-strdt" + }, + "snapshot": { + "number": "17.4.2.12", + "spec": "SPARQL 1.2 Query Language", + "text": "STRDT", + "url": "https://www.w3.org/TR/sparql12-query/#func-strdt" } }, "#func-strends": { @@ -997,6 +1783,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "STRENDS", "url": "https://w3c.github.io/sparql-query/spec/#func-strends" + }, + "snapshot": { + "number": "17.4.3.7", + "spec": "SPARQL 1.2 Query Language", + "text": "STRENDS", + "url": "https://www.w3.org/TR/sparql12-query/#func-strends" } }, "#func-string": { @@ -1005,6 +1797,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "String arguments", "url": "https://w3c.github.io/sparql-query/spec/#func-string" + }, + "snapshot": { + "number": "17.4.3.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "String arguments", + "url": "https://www.w3.org/TR/sparql12-query/#func-string" } }, "#func-strings": { @@ -1013,14 +1811,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Functions on Strings", "url": "https://w3c.github.io/sparql-query/spec/#func-strings" + }, + "snapshot": { + "number": "17.4.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Functions on Strings", + "url": "https://www.w3.org/TR/sparql12-query/#func-strings" } }, "#func-strlang": { "current": { - "number": "17.4.2.11", + "number": "17.4.2.13", "spec": "SPARQL 1.2 Query Language", "text": "STRLANG", "url": "https://w3c.github.io/sparql-query/spec/#func-strlang" + }, + "snapshot": { + "number": "17.4.2.13", + "spec": "SPARQL 1.2 Query Language", + "text": "STRLANG", + "url": "https://www.w3.org/TR/sparql12-query/#func-strlang" } }, "#func-strlen": { @@ -1029,6 +1839,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "STRLEN", "url": "https://w3c.github.io/sparql-query/spec/#func-strlen" + }, + "snapshot": { + "number": "17.4.3.2", + "spec": "SPARQL 1.2 Query Language", + "text": "STRLEN", + "url": "https://www.w3.org/TR/sparql12-query/#func-strlen" } }, "#func-strstarts": { @@ -1037,14 +1853,40 @@ "spec": "SPARQL 1.2 Query Language", "text": "STRSTARTS", "url": "https://w3c.github.io/sparql-query/spec/#func-strstarts" + }, + "snapshot": { + "number": "17.4.3.6", + "spec": "SPARQL 1.2 Query Language", + "text": "STRSTARTS", + "url": "https://www.w3.org/TR/sparql12-query/#func-strstarts" } }, "#func-struuid": { "current": { - "number": "17.4.2.13", + "number": "17.4.2.15", "spec": "SPARQL 1.2 Query Language", "text": "STRUUID", "url": "https://w3c.github.io/sparql-query/spec/#func-struuid" + }, + "snapshot": { + "number": "17.4.2.15", + "spec": "SPARQL 1.2 Query Language", + "text": "STRUUID", + "url": "https://www.w3.org/TR/sparql12-query/#func-struuid" + } + }, + "#func-subject": { + "current": { + "number": "17.4.6.2", + "spec": "SPARQL 1.2 Query Language", + "text": "SUBJECT", + "url": "https://w3c.github.io/sparql-query/spec/#func-subject" + }, + "snapshot": { + "number": "17.4.6.2", + "spec": "SPARQL 1.2 Query Language", + "text": "SUBJECT", + "url": "https://www.w3.org/TR/sparql12-query/#func-subject" } }, "#func-substr": { @@ -1053,22 +1895,54 @@ "spec": "SPARQL 1.2 Query Language", "text": "SUBSTR", "url": "https://w3c.github.io/sparql-query/spec/#func-substr" + }, + "snapshot": { + "number": "17.4.3.3", + "spec": "SPARQL 1.2 Query Language", + "text": "SUBSTR", + "url": "https://www.w3.org/TR/sparql12-query/#func-substr" } }, "#func-timezone": { "current": { "number": "17.4.5.8", "spec": "SPARQL 1.2 Query Language", - "text": "timezone", + "text": "TIMEZONE", "url": "https://w3c.github.io/sparql-query/spec/#func-timezone" + }, + "snapshot": { + "number": "17.4.5.8", + "spec": "SPARQL 1.2 Query Language", + "text": "TIMEZONE", + "url": "https://www.w3.org/TR/sparql12-query/#func-timezone" + } + }, + "#func-triple": { + "current": { + "number": "17.4.6.1", + "spec": "SPARQL 1.2 Query Language", + "text": "TRIPLE", + "url": "https://w3c.github.io/sparql-query/spec/#func-triple" + }, + "snapshot": { + "number": "17.4.6.1", + "spec": "SPARQL 1.2 Query Language", + "text": "TRIPLE", + "url": "https://www.w3.org/TR/sparql12-query/#func-triple" } }, "#func-tz": { "current": { "number": "17.4.5.9", "spec": "SPARQL 1.2 Query Language", - "text": "tz", + "text": "TZ", "url": "https://w3c.github.io/sparql-query/spec/#func-tz" + }, + "snapshot": { + "number": "17.4.5.9", + "spec": "SPARQL 1.2 Query Language", + "text": "TZ", + "url": "https://www.w3.org/TR/sparql12-query/#func-tz" } }, "#func-ucase": { @@ -1077,22 +1951,40 @@ "spec": "SPARQL 1.2 Query Language", "text": "UCASE", "url": "https://w3c.github.io/sparql-query/spec/#func-ucase" + }, + "snapshot": { + "number": "17.4.3.4", + "spec": "SPARQL 1.2 Query Language", + "text": "UCASE", + "url": "https://www.w3.org/TR/sparql12-query/#func-ucase" } }, "#func-uuid": { "current": { - "number": "17.4.2.12", + "number": "17.4.2.14", "spec": "SPARQL 1.2 Query Language", "text": "UUID", "url": "https://w3c.github.io/sparql-query/spec/#func-uuid" + }, + "snapshot": { + "number": "17.4.2.14", + "spec": "SPARQL 1.2 Query Language", + "text": "UUID", + "url": "https://www.w3.org/TR/sparql12-query/#func-uuid" } }, "#func-year": { "current": { "number": "17.4.5.2", "spec": "SPARQL 1.2 Query Language", - "text": "year", + "text": "YEAR", "url": "https://w3c.github.io/sparql-query/spec/#func-year" + }, + "snapshot": { + "number": "17.4.5.2", + "spec": "SPARQL 1.2 Query Language", + "text": "YEAR", + "url": "https://www.w3.org/TR/sparql12-query/#func-year" } }, "#grammar": { @@ -1101,14 +1993,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "19. SPARQL Grammar", "url": "https://w3c.github.io/sparql-query/spec/#grammar" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "19. SPARQL Grammar", + "url": "https://www.w3.org/TR/sparql12-query/#grammar" } }, "#grammarBNodes": { "current": { "number": "19.6", "spec": "SPARQL 1.2 Query Language", - "text": "Blank Nodes and Blank Node Labels", + "text": "Blank Nodes and Blank Node Identifiers", "url": "https://w3c.github.io/sparql-query/spec/#grammarBNodes" + }, + "snapshot": { + "number": "19.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Blank Nodes and Blank Node Identifiers", + "url": "https://www.w3.org/TR/sparql12-query/#grammarBNodes" } }, "#grammarComments": { @@ -1117,6 +2021,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Comments", "url": "https://w3c.github.io/sparql-query/spec/#grammarComments" + }, + "snapshot": { + "number": "19.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Comments", + "url": "https://www.w3.org/TR/sparql12-query/#grammarComments" } }, "#grammarEscapes": { @@ -1125,6 +2035,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Escape sequences in strings", "url": "https://w3c.github.io/sparql-query/spec/#grammarEscapes" + }, + "snapshot": { + "number": "19.7", + "spec": "SPARQL 1.2 Query Language", + "text": "Escape sequences in strings", + "url": "https://www.w3.org/TR/sparql12-query/#grammarEscapes" } }, "#groupExamples": { @@ -1133,6 +2049,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Group Graph Pattern Examples", "url": "https://w3c.github.io/sparql-query/spec/#groupExamples" + }, + "snapshot": { + "number": "5.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Group Graph Pattern Examples", + "url": "https://www.w3.org/TR/sparql12-query/#groupExamples" } }, "#groupby": { @@ -1141,6 +2063,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "GROUP BY", "url": "https://w3c.github.io/sparql-query/spec/#groupby" + }, + "snapshot": { + "number": "11.2", + "spec": "SPARQL 1.2 Query Language", + "text": "GROUP BY", + "url": "https://www.w3.org/TR/sparql12-query/#groupby" } }, "#having": { @@ -1149,6 +2077,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "HAVING", "url": "https://w3c.github.io/sparql-query/spec/#having" + }, + "snapshot": { + "number": "11.3", + "spec": "SPARQL 1.2 Query Language", + "text": "HAVING", + "url": "https://www.w3.org/TR/sparql12-query/#having" } }, "#identifyingResources": { @@ -1157,6 +2091,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Identifying Resources", "url": "https://w3c.github.io/sparql-query/spec/#identifyingResources" + }, + "snapshot": { + "number": "16.4.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Identifying Resources", + "url": "https://www.w3.org/TR/sparql12-query/#identifyingResources" } }, "#idp1887976": { @@ -1165,14 +2105,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Strings in SPARQL Functions", "url": "https://w3c.github.io/sparql-query/spec/#idp1887976" - } - }, - "#idp1915512": { - "current": { - "number": "17.4.3.1.3", + }, + "snapshot": { + "number": "17.4.3.1", "spec": "SPARQL 1.2 Query Language", - "text": "String Literal Return Type", - "url": "https://w3c.github.io/sparql-query/spec/#idp1915512" + "text": "Strings in SPARQL Functions", + "url": "https://www.w3.org/TR/sparql12-query/#idp1887976" } }, "#idp2130040": { @@ -1181,14 +2119,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "RAND", "url": "https://w3c.github.io/sparql-query/spec/#idp2130040" + }, + "snapshot": { + "number": "17.4.4.5", + "spec": "SPARQL 1.2 Query Language", + "text": "RAND", + "url": "https://www.w3.org/TR/sparql12-query/#idp2130040" } }, "#idp2427544": { "current": { - "number": "18.1.10", + "number": "18.1.8", "spec": "SPARQL 1.2 Query Language", "text": "SPARQL Query", "url": "https://w3c.github.io/sparql-query/spec/#idp2427544" + }, + "snapshot": { + "number": "18.1.8", + "spec": "SPARQL 1.2 Query Language", + "text": "SPARQL Query", + "url": "https://www.w3.org/TR/sparql12-query/#idp2427544" } }, "#idp899488": { @@ -1197,38 +2147,68 @@ "spec": "SPARQL 1.2 Query Language", "text": "Example: Inner FILTERs", "url": "https://w3c.github.io/sparql-query/spec/#idp899488" + }, + "snapshot": { + "number": "8.3.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Example: Inner FILTERs", + "url": "https://www.w3.org/TR/sparql12-query/#idp899488" } }, "#index": { "current": { - "number": "B", + "number": "E", "spec": "SPARQL 1.2 Query Language", "text": "Index", "url": "https://w3c.github.io/sparql-query/spec/#index" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Query Language", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-query/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "E.2", "spec": "SPARQL 1.2 Query Language", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-query/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "E.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-query/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "E.1", "spec": "SPARQL 1.2 Query Language", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-query/spec/#index-defined-here" + }, + "snapshot": { + "number": "E.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-query/#index-defined-here" } }, "#informative-references": { "current": { - "number": "C.2", + "number": "F.2", "spec": "SPARQL 1.2 Query Language", "text": "Informative references", "url": "https://w3c.github.io/sparql-query/spec/#informative-references" + }, + "snapshot": { + "number": "F.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Informative references", + "url": "https://www.w3.org/TR/sparql12-query/#informative-references" } }, "#initDefinitions": { @@ -1237,6 +2217,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Initial Definitions", "url": "https://w3c.github.io/sparql-query/spec/#initDefinitions" + }, + "snapshot": { + "number": "18.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Initial Definitions", + "url": "https://www.w3.org/TR/sparql12-query/#initDefinitions" } }, "#inline-data": { @@ -1245,6 +2231,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "VALUES: Providing inline data", "url": "https://w3c.github.io/sparql-query/spec/#inline-data" + }, + "snapshot": { + "number": "10.2", + "spec": "SPARQL 1.2 Query Language", + "text": "VALUES: Providing inline data", + "url": "https://www.w3.org/TR/sparql12-query/#inline-data" } }, "#inline-data-examples": { @@ -1253,6 +2245,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "VALUES Examples", "url": "https://w3c.github.io/sparql-query/spec/#inline-data-examples" + }, + "snapshot": { + "number": "10.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "VALUES Examples", + "url": "https://www.w3.org/TR/sparql12-query/#inline-data-examples" } }, "#inline-data-syntax": { @@ -1261,14 +2259,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "VALUES syntax", "url": "https://w3c.github.io/sparql-query/spec/#inline-data-syntax" + }, + "snapshot": { + "number": "10.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "VALUES syntax", + "url": "https://www.w3.org/TR/sparql12-query/#inline-data-syntax" } }, "#internationalization": { "current": { - "number": "", + "number": "D", "spec": "SPARQL 1.2 Query Language", - "text": "24. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-query/spec/#internationalization" + }, + "snapshot": { + "number": "D", + "spec": "SPARQL 1.2 Query Language", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-query/#internationalization" } }, "#introduction": { @@ -1277,6 +2287,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Introduction", "url": "https://w3c.github.io/sparql-query/spec/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Query Language", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-query/#introduction" } }, "#invocation": { @@ -1285,6 +2301,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Invocation", "url": "https://w3c.github.io/sparql-query/spec/#invocation" + }, + "snapshot": { + "number": "17.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Invocation", + "url": "https://www.w3.org/TR/sparql12-query/#invocation" } }, "#iriRefs": { @@ -1293,6 +2315,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "IRI References", "url": "https://w3c.github.io/sparql-query/spec/#iriRefs" + }, + "snapshot": { + "number": "19.5", + "spec": "SPARQL 1.2 Query Language", + "text": "IRI References", + "url": "https://www.w3.org/TR/sparql12-query/#iriRefs" + } + }, + "#istriple": { + "current": { + "number": "17.4.6.5", + "spec": "SPARQL 1.2 Query Language", + "text": "isTRIPLE", + "url": "https://w3c.github.io/sparql-query/spec/#istriple" + }, + "snapshot": { + "number": "17.4.6.5", + "spec": "SPARQL 1.2 Query Language", + "text": "isTRIPLE", + "url": "https://www.w3.org/TR/sparql12-query/#istriple" } }, "#matchArbDT": { @@ -1301,6 +2343,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Matching Literals with Arbitrary Datatypes", "url": "https://w3c.github.io/sparql-query/spec/#matchArbDT" + }, + "snapshot": { + "number": "2.3.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Matching Literals with Arbitrary Datatypes", + "url": "https://www.w3.org/TR/sparql12-query/#matchArbDT" } }, "#matchLangTags": { @@ -1309,6 +2357,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Matching Literals with Language Tags", "url": "https://w3c.github.io/sparql-query/spec/#matchLangTags" + }, + "snapshot": { + "number": "2.3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Matching Literals with Language Tags", + "url": "https://www.w3.org/TR/sparql12-query/#matchLangTags" } }, "#matchNumber": { @@ -1317,6 +2371,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Matching Literals with Numeric Types", "url": "https://w3c.github.io/sparql-query/spec/#matchNumber" + }, + "snapshot": { + "number": "2.3.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Matching Literals with Numeric Types", + "url": "https://www.w3.org/TR/sparql12-query/#matchNumber" } }, "#matchingRDFLiterals": { @@ -1325,6 +2385,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Matching RDF Literals", "url": "https://w3c.github.io/sparql-query/spec/#matchingRDFLiterals" + }, + "snapshot": { + "number": "2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Matching RDF Literals", + "url": "https://www.w3.org/TR/sparql12-query/#matchingRDFLiterals" } }, "#mediaType": { @@ -1333,6 +2399,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "21. Internet Media Type, File Extension and Macintosh File Type", "url": "https://w3c.github.io/sparql-query/spec/#mediaType" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "21. Internet Media Type, File Extension and Macintosh File Type", + "url": "https://www.w3.org/TR/sparql12-query/#mediaType" } }, "#modDistinct": { @@ -1341,6 +2413,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "DISTINCT", "url": "https://w3c.github.io/sparql-query/spec/#modDistinct" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "DISTINCT", + "url": "https://www.w3.org/TR/sparql12-query/#modDistinct" } }, "#modDuplicates": { @@ -1349,6 +2427,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Duplicate Solutions", "url": "https://w3c.github.io/sparql-query/spec/#modDuplicates" + }, + "snapshot": { + "number": "15.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Duplicate Solutions", + "url": "https://www.w3.org/TR/sparql12-query/#modDuplicates" } }, "#modOffset": { @@ -1357,6 +2441,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "OFFSET", "url": "https://w3c.github.io/sparql-query/spec/#modOffset" + }, + "snapshot": { + "number": "15.4", + "spec": "SPARQL 1.2 Query Language", + "text": "OFFSET", + "url": "https://www.w3.org/TR/sparql12-query/#modOffset" } }, "#modOrderBy": { @@ -1365,6 +2455,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "ORDER BY", "url": "https://w3c.github.io/sparql-query/spec/#modOrderBy" + }, + "snapshot": { + "number": "15.1", + "spec": "SPARQL 1.2 Query Language", + "text": "ORDER BY", + "url": "https://www.w3.org/TR/sparql12-query/#modOrderBy" } }, "#modProjection": { @@ -1373,6 +2469,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Projection", "url": "https://w3c.github.io/sparql-query/spec/#modProjection" + }, + "snapshot": { + "number": "15.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Projection", + "url": "https://www.w3.org/TR/sparql12-query/#modProjection" } }, "#modReduced": { @@ -1381,6 +2483,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "REDUCED", "url": "https://w3c.github.io/sparql-query/spec/#modReduced" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "REDUCED", + "url": "https://www.w3.org/TR/sparql12-query/#modReduced" } }, "#modResultLimit": { @@ -1389,6 +2497,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "LIMIT", "url": "https://w3c.github.io/sparql-query/spec/#modResultLimit" + }, + "snapshot": { + "number": "15.5", + "spec": "SPARQL 1.2 Query Language", + "text": "LIMIT", + "url": "https://www.w3.org/TR/sparql12-query/#modResultLimit" } }, "#namedAndDefaultGraph": { @@ -1397,6 +2511,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Named and Default Graphs", "url": "https://w3c.github.io/sparql-query/spec/#namedAndDefaultGraph" + }, + "snapshot": { + "number": "13.3.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Named and Default Graphs", + "url": "https://www.w3.org/TR/sparql12-query/#namedAndDefaultGraph" } }, "#namedGraphs": { @@ -1405,6 +2525,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Specifying Named Graphs", "url": "https://w3c.github.io/sparql-query/spec/#namedGraphs" + }, + "snapshot": { + "number": "13.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Specifying Named Graphs", + "url": "https://www.w3.org/TR/sparql12-query/#namedGraphs" } }, "#neg-example-1": { @@ -1413,6 +2539,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Example: Sharing of variables", "url": "https://w3c.github.io/sparql-query/spec/#neg-example-1" + }, + "snapshot": { + "number": "8.3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Example: Sharing of variables", + "url": "https://www.w3.org/TR/sparql12-query/#neg-example-1" } }, "#neg-example-2": { @@ -1421,6 +2553,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Example: Fixed pattern", "url": "https://w3c.github.io/sparql-query/spec/#neg-example-2" + }, + "snapshot": { + "number": "8.3.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Example: Fixed pattern", + "url": "https://www.w3.org/TR/sparql12-query/#neg-example-2" } }, "#neg-exists": { @@ -1429,6 +2567,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Testing For the Presence of a Pattern", "url": "https://w3c.github.io/sparql-query/spec/#neg-exists" + }, + "snapshot": { + "number": "8.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Testing For the Presence of a Pattern", + "url": "https://www.w3.org/TR/sparql12-query/#neg-exists" } }, "#neg-minus": { @@ -1437,6 +2581,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Removing Possible Solutions", "url": "https://w3c.github.io/sparql-query/spec/#neg-minus" + }, + "snapshot": { + "number": "8.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Removing Possible Solutions", + "url": "https://www.w3.org/TR/sparql12-query/#neg-minus" } }, "#neg-notexists": { @@ -1445,6 +2595,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Testing For the Absence of a Pattern", "url": "https://w3c.github.io/sparql-query/spec/#neg-notexists" + }, + "snapshot": { + "number": "8.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Testing For the Absence of a Pattern", + "url": "https://www.w3.org/TR/sparql12-query/#neg-notexists" } }, "#neg-notexists-minus": { @@ -1453,6 +2609,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Relationship and differences between NOT EXISTS and MINUS", "url": "https://w3c.github.io/sparql-query/spec/#neg-notexists-minus" + }, + "snapshot": { + "number": "8.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Relationship and differences between NOT EXISTS and MINUS", + "url": "https://www.w3.org/TR/sparql12-query/#neg-notexists-minus" } }, "#neg-pattern": { @@ -1461,6 +2623,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Filtering Using Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#neg-pattern" + }, + "snapshot": { + "number": "8.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Filtering Using Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#neg-pattern" } }, "#negation": { @@ -1469,14 +2637,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Negation", "url": "https://w3c.github.io/sparql-query/spec/#negation" + }, + "snapshot": { + "number": "8", + "spec": "SPARQL 1.2 Query Language", + "text": "Negation", + "url": "https://www.w3.org/TR/sparql12-query/#negation" } }, "#normative-references": { "current": { - "number": "C.1", + "number": "F.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Normative references", + "url": "https://w3c.github.io/sparql-query/spec/#normative-references" + }, + "snapshot": { + "number": "F.1", "spec": "SPARQL 1.2 Query Language", "text": "Normative references", - "url": "https://w3c.github.io/sparql-query/spec/#normative-references" + "url": "https://www.w3.org/TR/sparql12-query/#normative-references" } }, "#objLists": { @@ -1485,6 +2665,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Object Lists", "url": "https://w3c.github.io/sparql-query/spec/#objLists" + }, + "snapshot": { + "number": "4.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Object Lists", + "url": "https://www.w3.org/TR/sparql12-query/#objLists" } }, "#operandDataTypes": { @@ -1493,6 +2679,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Operand Data Types", "url": "https://w3c.github.io/sparql-query/spec/#operandDataTypes" + }, + "snapshot": { + "number": "17.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Operand Data Types", + "url": "https://www.w3.org/TR/sparql12-query/#operandDataTypes" } }, "#operatorExtensibility": { @@ -1501,6 +2693,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Operator Extensibility", "url": "https://w3c.github.io/sparql-query/spec/#operatorExtensibility" + }, + "snapshot": { + "number": "17.3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Operator Extensibility", + "url": "https://www.w3.org/TR/sparql12-query/#operatorExtensibility" } }, "#optionals": { @@ -1509,6 +2707,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Including Optional Values", "url": "https://w3c.github.io/sparql-query/spec/#optionals" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Query Language", + "text": "Including Optional Values", + "url": "https://www.w3.org/TR/sparql12-query/#optionals" } }, "#otherTermConstraints": { @@ -1517,6 +2721,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Other Term Constraints", "url": "https://w3c.github.io/sparql-query/spec/#otherTermConstraints" + }, + "snapshot": { + "number": "3.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Other Term Constraints", + "url": "https://www.w3.org/TR/sparql12-query/#otherTermConstraints" } }, "#pp-language": { @@ -1525,6 +2735,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Property Path Syntax", "url": "https://w3c.github.io/sparql-query/spec/#pp-language" + }, + "snapshot": { + "number": "9.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Property Path Syntax", + "url": "https://www.w3.org/TR/sparql12-query/#pp-language" } }, "#predObjLists": { @@ -1533,6 +2749,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Predicate-Object Lists", "url": "https://w3c.github.io/sparql-query/spec/#predObjLists" + }, + "snapshot": { + "number": "4.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Predicate-Object Lists", + "url": "https://www.w3.org/TR/sparql12-query/#predObjLists" } }, "#prefNames": { @@ -1541,14 +2763,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Prefixed Names", "url": "https://w3c.github.io/sparql-query/spec/#prefNames" + }, + "snapshot": { + "number": "4.1.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Prefixed Names", + "url": "https://www.w3.org/TR/sparql12-query/#prefNames" } }, "#privacy": { "current": { - "number": "", + "number": "B", "spec": "SPARQL 1.2 Query Language", - "text": "22. Privacy Considerations", + "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-query/spec/#privacy" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Query Language", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-query/#privacy" } }, "#propertypath-arbitrary-length": { @@ -1557,6 +2791,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Arbitrary Length Path Matching", "url": "https://w3c.github.io/sparql-query/spec/#propertypath-arbitrary-length" + }, + "snapshot": { + "number": "9.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Arbitrary Length Path Matching", + "url": "https://www.w3.org/TR/sparql12-query/#propertypath-arbitrary-length" } }, "#propertypath-examples": { @@ -1565,6 +2805,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Examples", "url": "https://w3c.github.io/sparql-query/spec/#propertypath-examples" + }, + "snapshot": { + "number": "9.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Examples", + "url": "https://www.w3.org/TR/sparql12-query/#propertypath-examples" } }, "#propertypath-syntaxforms": { @@ -1573,6 +2819,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Property Paths and Equivalent Patterns", "url": "https://w3c.github.io/sparql-query/spec/#propertypath-syntaxforms" + }, + "snapshot": { + "number": "9.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Property Paths and Equivalent Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#propertypath-syntaxforms" } }, "#propertypaths": { @@ -1581,6 +2833,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Property Paths", "url": "https://w3c.github.io/sparql-query/spec/#propertypaths" + }, + "snapshot": { + "number": "9", + "spec": "SPARQL 1.2 Query Language", + "text": "Property Paths", + "url": "https://www.w3.org/TR/sparql12-query/#propertypaths" } }, "#queryDataset": { @@ -1589,6 +2847,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Querying the Dataset", "url": "https://w3c.github.io/sparql-query/spec/#queryDataset" + }, + "snapshot": { + "number": "13.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Querying the Dataset", + "url": "https://www.w3.org/TR/sparql12-query/#queryDataset" } }, "#queryString": { @@ -1597,6 +2861,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SPARQL Request String", "url": "https://w3c.github.io/sparql-query/spec/#queryString" + }, + "snapshot": { + "number": "19.1", + "spec": "SPARQL 1.2 Query Language", + "text": "SPARQL Request String", + "url": "https://www.w3.org/TR/sparql12-query/#queryString" } }, "#rdfDataset": { @@ -1605,14 +2875,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "13. RDF Dataset", "url": "https://w3c.github.io/sparql-query/spec/#rdfDataset" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "13. RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-query/#rdfDataset" } }, "#references": { "current": { - "number": "C", + "number": "F", "spec": "SPARQL 1.2 Query Language", "text": "References", "url": "https://w3c.github.io/sparql-query/spec/#references" + }, + "snapshot": { + "number": "F", + "spec": "SPARQL 1.2 Query Language", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-query/#references" } }, "#relIRIs": { @@ -1621,6 +2903,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Relative IRIs", "url": "https://w3c.github.io/sparql-query/spec/#relIRIs" + }, + "snapshot": { + "number": "4.1.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Relative IRIs", + "url": "https://www.w3.org/TR/sparql12-query/#relIRIs" } }, "#related": { @@ -1629,14 +2917,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-query/spec/#related" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-query/#related" } }, - "#restrictByLabel": { + "#restrictByIdentifier": { "current": { "number": "13.3.2", "spec": "SPARQL 1.2 Query Language", "text": "Restricting by Graph IRI", - "url": "https://w3c.github.io/sparql-query/spec/#restrictByLabel" + "url": "https://w3c.github.io/sparql-query/spec/#restrictByIdentifier" + }, + "snapshot": { + "number": "13.3.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Restricting by Graph IRI", + "url": "https://www.w3.org/TR/sparql12-query/#restrictByIdentifier" } }, "#restrictInQuery": { @@ -1645,6 +2945,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Restricting Possible Graph IRIs", "url": "https://w3c.github.io/sparql-query/spec/#restrictInQuery" + }, + "snapshot": { + "number": "13.3.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Restricting Possible Graph IRIs", + "url": "https://www.w3.org/TR/sparql12-query/#restrictInQuery" } }, "#restrictNumber": { @@ -1653,6 +2959,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Restricting Numeric Values", "url": "https://w3c.github.io/sparql-query/spec/#restrictNumber" + }, + "snapshot": { + "number": "3.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Restricting Numeric Values", + "url": "https://www.w3.org/TR/sparql12-query/#restrictNumber" } }, "#restrictString": { @@ -1661,6 +2973,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Restricting the Value of Strings", "url": "https://w3c.github.io/sparql-query/spec/#restrictString" + }, + "snapshot": { + "number": "3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Restricting the Value of Strings", + "url": "https://www.w3.org/TR/sparql12-query/#restrictString" } }, "#scopeFilters": { @@ -1669,14 +2987,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Scope of Filters", "url": "https://w3c.github.io/sparql-query/spec/#scopeFilters" + }, + "snapshot": { + "number": "5.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Scope of Filters", + "url": "https://www.w3.org/TR/sparql12-query/#scopeFilters" } }, "#security": { "current": { - "number": "", + "number": "C", "spec": "SPARQL 1.2 Query Language", - "text": "23. Security Considerations (Informative)", + "text": "Security Considerations", "url": "https://w3c.github.io/sparql-query/spec/#security" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Query Language", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-query/#security" } }, "#select": { @@ -1685,6 +3015,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SELECT", "url": "https://w3c.github.io/sparql-query/spec/#select" + }, + "snapshot": { + "number": "16.1", + "spec": "SPARQL 1.2 Query Language", + "text": "SELECT", + "url": "https://www.w3.org/TR/sparql12-query/#select" } }, "#selectExpressions": { @@ -1693,6 +3029,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SELECT Expressions", "url": "https://w3c.github.io/sparql-query/spec/#selectExpressions" + }, + "snapshot": { + "number": "16.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "SELECT Expressions", + "url": "https://www.w3.org/TR/sparql12-query/#selectExpressions" } }, "#selectproject": { @@ -1701,6 +3043,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Projection", "url": "https://w3c.github.io/sparql-query/spec/#selectproject" + }, + "snapshot": { + "number": "16.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Projection", + "url": "https://www.w3.org/TR/sparql12-query/#selectproject" } }, "#setFunctions": { @@ -1709,14 +3057,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Set Functions", "url": "https://w3c.github.io/sparql-query/spec/#setFunctions" - } - }, - "#simple_literal": { - "current": { - "number": "18.1.2", + }, + "snapshot": { + "number": "18.5.1.1", "spec": "SPARQL 1.2 Query Language", - "text": "Simple Literal", - "url": "https://w3c.github.io/sparql-query/spec/#simple_literal" + "text": "Set Functions", + "url": "https://www.w3.org/TR/sparql12-query/#setFunctions" } }, "#solutionModifiers": { @@ -1725,6 +3071,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "15. Solution Sequences and Modifiers", "url": "https://w3c.github.io/sparql-query/spec/#solutionModifiers" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "15. Solution Sequences and Modifiers", + "url": "https://www.w3.org/TR/sparql12-query/#solutionModifiers" } }, "#sparqlAddFilters": { @@ -1733,6 +3085,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Filters of Group", "url": "https://w3c.github.io/sparql-query/spec/#sparqlAddFilters" + }, + "snapshot": { + "number": "18.2.2.7", + "spec": "SPARQL 1.2 Query Language", + "text": "Filters of Group", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlAddFilters" } }, "#sparqlAlgebra": { @@ -1741,6 +3099,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SPARQL Algebra", "url": "https://w3c.github.io/sparql-query/spec/#sparqlAlgebra" + }, + "snapshot": { + "number": "18.5", + "spec": "SPARQL 1.2 Query Language", + "text": "SPARQL Algebra", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlAlgebra" } }, "#sparqlAlgebraEval": { @@ -1749,6 +3113,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Evaluation Semantics", "url": "https://w3c.github.io/sparql-query/spec/#sparqlAlgebraEval" + }, + "snapshot": { + "number": "18.5.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Evaluation Semantics", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlAlgebraEval" } }, "#sparqlAlgebraExamples": { @@ -1757,6 +3127,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Examples of Mapped Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlAlgebraExamples" + }, + "snapshot": { + "number": "18.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Examples of Mapped Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlAlgebraExamples" } }, "#sparqlAlgebraFinalValues": { @@ -1765,6 +3141,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "VALUES", "url": "https://w3c.github.io/sparql-query/spec/#sparqlAlgebraFinalValues" + }, + "snapshot": { + "number": "18.2.4.3", + "spec": "SPARQL 1.2 Query Language", + "text": "VALUES", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlAlgebraFinalValues" } }, "#sparqlAlgebraOutcome": { @@ -1773,6 +3155,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Final Algebra Expression", "url": "https://w3c.github.io/sparql-query/spec/#sparqlAlgebraOutcome" + }, + "snapshot": { + "number": "18.2.5.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Final Algebra Expression", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlAlgebraOutcome" } }, "#sparqlBGPExtend": { @@ -1781,6 +3169,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Extending SPARQL Basic Graph Matching", "url": "https://w3c.github.io/sparql-query/spec/#sparqlBGPExtend" + }, + "snapshot": { + "number": "18.5.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Extending SPARQL Basic Graph Matching", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlBGPExtend" } }, "#sparqlBGPExtend-notes": { @@ -1789,22 +3183,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Notes", "url": "https://w3c.github.io/sparql-query/spec/#sparqlBGPExtend-notes" + }, + "snapshot": { + "number": "18.5.3.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Notes", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlBGPExtend-notes" } }, "#sparqlBasicGraphPatterns": { "current": { - "number": "18.1.6", + "number": "18.1.4", "spec": "SPARQL 1.2 Query Language", "text": "Basic Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlBasicGraphPatterns" - } - }, - "#sparqlBasicTerms": { - "current": { - "number": "18.1.1", + }, + "snapshot": { + "number": "18.1.4", "spec": "SPARQL 1.2 Query Language", - "text": "RDF Terms", - "url": "https://w3c.github.io/sparql-query/spec/#sparqlBasicTerms" + "text": "Basic Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlBasicGraphPatterns" } }, "#sparqlCollectFilters": { @@ -1813,14 +3211,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Collect FILTER Elements", "url": "https://w3c.github.io/sparql-query/spec/#sparqlCollectFilters" + }, + "snapshot": { + "number": "18.2.2.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Collect FILTER Elements", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlCollectFilters" } }, "#sparqlDataset": { "current": { - "number": "18.1.3", + "number": "18.1.1", "spec": "SPARQL 1.2 Query Language", "text": "RDF Dataset", "url": "https://w3c.github.io/sparql-query/spec/#sparqlDataset" + }, + "snapshot": { + "number": "18.1.1", + "spec": "SPARQL 1.2 Query Language", + "text": "RDF Dataset", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlDataset" } }, "#sparqlDefinition": { @@ -1829,6 +3239,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "18. Definition of SPARQL", "url": "https://w3c.github.io/sparql-query/spec/#sparqlDefinition" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "18. Definition of SPARQL", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlDefinition" } }, "#sparqlDistinct": { @@ -1837,6 +3253,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "DISTINCT", "url": "https://w3c.github.io/sparql-query/spec/#sparqlDistinct" + }, + "snapshot": { + "number": "18.2.5.3", + "spec": "SPARQL 1.2 Query Language", + "text": "DISTINCT", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlDistinct" } }, "#sparqlExpandForms": { @@ -1845,6 +3267,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Expand Syntax Forms", "url": "https://w3c.github.io/sparql-query/spec/#sparqlExpandForms" + }, + "snapshot": { + "number": "18.2.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Expand Syntax Forms", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlExpandForms" } }, "#sparqlGrammar": { @@ -1853,6 +3281,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Grammar", "url": "https://w3c.github.io/sparql-query/spec/#sparqlGrammar" + }, + "snapshot": { + "number": "19.8", + "spec": "SPARQL 1.2 Query Language", + "text": "Grammar", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlGrammar" } }, "#sparqlGroupAggregate": { @@ -1861,6 +3295,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Grouping and Aggregation", "url": "https://w3c.github.io/sparql-query/spec/#sparqlGroupAggregate" + }, + "snapshot": { + "number": "18.2.4.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Grouping and Aggregation", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlGroupAggregate" } }, "#sparqlHavingClause": { @@ -1869,6 +3309,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "HAVING", "url": "https://w3c.github.io/sparql-query/spec/#sparqlHavingClause" + }, + "snapshot": { + "number": "18.2.4.2", + "spec": "SPARQL 1.2 Query Language", + "text": "HAVING", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlHavingClause" } }, "#sparqlOffsetLimit": { @@ -1877,6 +3323,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "OFFSET and LIMIT", "url": "https://w3c.github.io/sparql-query/spec/#sparqlOffsetLimit" + }, + "snapshot": { + "number": "18.2.5.5", + "spec": "SPARQL 1.2 Query Language", + "text": "OFFSET and LIMIT", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlOffsetLimit" } }, "#sparqlOrderBy": { @@ -1885,6 +3337,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "ORDER BY", "url": "https://w3c.github.io/sparql-query/spec/#sparqlOrderBy" + }, + "snapshot": { + "number": "18.2.5.1", + "spec": "SPARQL 1.2 Query Language", + "text": "ORDER BY", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlOrderBy" } }, "#sparqlProjection": { @@ -1893,14 +3351,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Projection", "url": "https://w3c.github.io/sparql-query/spec/#sparqlProjection" + }, + "snapshot": { + "number": "18.2.5.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Projection", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlProjection" } }, "#sparqlPropertyPaths": { "current": { - "number": "18.1.7", + "number": "18.1.5", "spec": "SPARQL 1.2 Query Language", "text": "Property Path Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlPropertyPaths" + }, + "snapshot": { + "number": "18.1.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Property Path Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlPropertyPaths" } }, "#sparqlQuery": { @@ -1909,14 +3379,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Translation to the SPARQL Algebra", "url": "https://w3c.github.io/sparql-query/spec/#sparqlQuery" + }, + "snapshot": { + "number": "18.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Translation to the SPARQL Algebra", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlQuery" } }, "#sparqlQueryVariables": { "current": { - "number": "18.1.4", + "number": "18.1.2", "spec": "SPARQL 1.2 Query Language", "text": "Query Variables", "url": "https://w3c.github.io/sparql-query/spec/#sparqlQueryVariables" + }, + "snapshot": { + "number": "18.1.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Query Variables", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlQueryVariables" } }, "#sparqlReduced": { @@ -1925,6 +3407,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "REDUCED", "url": "https://w3c.github.io/sparql-query/spec/#sparqlReduced" + }, + "snapshot": { + "number": "18.2.5.4", + "spec": "SPARQL 1.2 Query Language", + "text": "REDUCED", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlReduced" } }, "#sparqlSelectExpressions": { @@ -1933,6 +3421,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SELECT Expressions", "url": "https://w3c.github.io/sparql-query/spec/#sparqlSelectExpressions" + }, + "snapshot": { + "number": "18.2.4.4", + "spec": "SPARQL 1.2 Query Language", + "text": "SELECT Expressions", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlSelectExpressions" } }, "#sparqlSimplification": { @@ -1941,22 +3435,40 @@ "spec": "SPARQL 1.2 Query Language", "text": "Simplification step", "url": "https://w3c.github.io/sparql-query/spec/#sparqlSimplification" + }, + "snapshot": { + "number": "18.2.2.8", + "spec": "SPARQL 1.2 Query Language", + "text": "Simplification step", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlSimplification" } }, "#sparqlSolMod": { "current": { - "number": "18.1.9", + "number": "18.1.7", "spec": "SPARQL 1.2 Query Language", "text": "Solution Sequence Modifiers", "url": "https://w3c.github.io/sparql-query/spec/#sparqlSolMod" + }, + "snapshot": { + "number": "18.1.7", + "spec": "SPARQL 1.2 Query Language", + "text": "Solution Sequence Modifiers", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlSolMod" } }, "#sparqlSolutions": { "current": { - "number": "18.1.8", + "number": "18.1.6", "spec": "SPARQL 1.2 Query Language", "text": "Solution Mapping", "url": "https://w3c.github.io/sparql-query/spec/#sparqlSolutions" + }, + "snapshot": { + "number": "18.1.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Solution Mapping", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlSolutions" } }, "#sparqlSyntax": { @@ -1965,6 +3477,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SPARQL Syntax", "url": "https://w3c.github.io/sparql-query/spec/#sparqlSyntax" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Query Language", + "text": "SPARQL Syntax", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlSyntax" } }, "#sparqlTranslateBasicGraphPatterns": { @@ -1973,6 +3491,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Translate Basic Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlTranslateBasicGraphPatterns" + }, + "snapshot": { + "number": "18.2.2.5", + "spec": "SPARQL 1.2 Query Language", + "text": "Translate Basic Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlTranslateBasicGraphPatterns" } }, "#sparqlTranslateGraphPatterns": { @@ -1981,6 +3505,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Translate Graph Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlTranslateGraphPatterns" + }, + "snapshot": { + "number": "18.2.2.6", + "spec": "SPARQL 1.2 Query Language", + "text": "Translate Graph Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlTranslateGraphPatterns" } }, "#sparqlTranslatePathExpressions": { @@ -1989,6 +3519,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Translate Property Path Expressions", "url": "https://w3c.github.io/sparql-query/spec/#sparqlTranslatePathExpressions" + }, + "snapshot": { + "number": "18.2.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Translate Property Path Expressions", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlTranslatePathExpressions" } }, "#sparqlTranslatePathPatterns": { @@ -1997,14 +3533,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Translate Property Path Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlTranslatePathPatterns" + }, + "snapshot": { + "number": "18.2.2.4", + "spec": "SPARQL 1.2 Query Language", + "text": "Translate Property Path Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlTranslatePathPatterns" } }, "#sparqlTriplePatterns": { "current": { - "number": "18.1.5", + "number": "18.1.3", "spec": "SPARQL 1.2 Query Language", "text": "Triple Patterns", "url": "https://w3c.github.io/sparql-query/spec/#sparqlTriplePatterns" + }, + "snapshot": { + "number": "18.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Triple Patterns", + "url": "https://www.w3.org/TR/sparql12-query/#sparqlTriplePatterns" } }, "#specDataset": { @@ -2013,6 +3561,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Combining FROM and FROM NAMED", "url": "https://w3c.github.io/sparql-query/spec/#specDataset" + }, + "snapshot": { + "number": "13.2.3", + "spec": "SPARQL 1.2 Query Language", + "text": "Combining FROM and FROM NAMED", + "url": "https://www.w3.org/TR/sparql12-query/#specDataset" } }, "#specifyingDataset": { @@ -2021,6 +3575,26 @@ "spec": "SPARQL 1.2 Query Language", "text": "Specifying RDF Datasets", "url": "https://w3c.github.io/sparql-query/spec/#specifyingDataset" + }, + "snapshot": { + "number": "13.2", + "spec": "SPARQL 1.2 Query Language", + "text": "Specifying RDF Datasets", + "url": "https://www.w3.org/TR/sparql12-query/#specifyingDataset" + } + }, + "#string-literal-return-type": { + "current": { + "number": "17.4.3.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "String Literal Return Type", + "url": "https://w3c.github.io/sparql-query/spec/#string-literal-return-type" + }, + "snapshot": { + "number": "17.4.3.1.3", + "spec": "SPARQL 1.2 Query Language", + "text": "String Literal Return Type", + "url": "https://www.w3.org/TR/sparql12-query/#string-literal-return-type" } }, "#subqueries": { @@ -2029,6 +3603,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "12. Subqueries", "url": "https://w3c.github.io/sparql-query/spec/#subqueries" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "12. Subqueries", + "url": "https://www.w3.org/TR/sparql12-query/#subqueries" } }, "#syntaxTerms": { @@ -2037,6 +3617,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "RDF Term Syntax", "url": "https://w3c.github.io/sparql-query/spec/#syntaxTerms" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Query Language", + "text": "RDF Term Syntax", + "url": "https://www.w3.org/TR/sparql12-query/#syntaxTerms" } }, "#templatesWithBNodes": { @@ -2045,6 +3631,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Templates with Blank Nodes", "url": "https://w3c.github.io/sparql-query/spec/#templatesWithBNodes" + }, + "snapshot": { + "number": "16.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Templates with Blank Nodes", + "url": "https://www.w3.org/TR/sparql12-query/#templatesWithBNodes" } }, "#termConstraint": { @@ -2053,6 +3645,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "RDF Term Constraints (Informative)", "url": "https://w3c.github.io/sparql-query/spec/#termConstraint" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Query Language", + "text": "RDF Term Constraints (Informative)", + "url": "https://www.w3.org/TR/sparql12-query/#termConstraint" } }, "#title": { @@ -2061,6 +3659,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "SPARQL 1.2 Query Language", "url": "https://w3c.github.io/sparql-query/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "SPARQL 1.2 Query Language", + "url": "https://www.w3.org/TR/sparql12-query/#title" } }, "#toc": { @@ -2069,6 +3673,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-query/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Language", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-query/#toc" } }, "#unnamedGraph": { @@ -2077,6 +3687,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Specifying the Default Graph", "url": "https://w3c.github.io/sparql-query/spec/#unnamedGraph" + }, + "snapshot": { + "number": "13.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Specifying the Default Graph", + "url": "https://www.w3.org/TR/sparql12-query/#unnamedGraph" } }, "#variableScope": { @@ -2085,6 +3701,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "Variable Scope", "url": "https://w3c.github.io/sparql-query/spec/#variableScope" + }, + "snapshot": { + "number": "18.2.1", + "spec": "SPARQL 1.2 Query Language", + "text": "Variable Scope", + "url": "https://www.w3.org/TR/sparql12-query/#variableScope" } }, "#whitespace": { @@ -2093,6 +3715,12 @@ "spec": "SPARQL 1.2 Query Language", "text": "White Space", "url": "https://w3c.github.io/sparql-query/spec/#whitespace" + }, + "snapshot": { + "number": "19.3", + "spec": "SPARQL 1.2 Query Language", + "text": "White Space", + "url": "https://www.w3.org/TR/sparql12-query/#whitespace" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-results-csv-tsv.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-results-csv-tsv.json index bbf594b187..6df1b45a32 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-results-csv-tsv.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-results-csv-tsv.json @@ -1,10 +1,16 @@ { - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#changes-from-sparql11" + "text": "Changes between SPARQL 1.1 Query Results CSV and TSV Formats and SPARQL 1.2 Query Results CSV and TSV Formats", + "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Changes between SPARQL 1.1 Query Results CSV and TSV Formats and SPARQL 1.2 Query Results CSV and TSV Formats", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#changes-1-1" } }, "#conformance": { @@ -13,6 +19,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Conformance", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#conformance" } }, "#conformance-0": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Conformance", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#conformance-0" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#conformance-0" } }, "#csv-example": { @@ -29,14 +47,40 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Example of CSV-Serialized Results", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#csv-example" + }, + "snapshot": { + "number": "4.3", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example of CSV-Serialized Results", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-example" + } + }, + "#csv-example-quoted": { + "current": { + "number": "4.4", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example of CSV-Serialized Results with Quoted Triples", + "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#csv-example-quoted" + }, + "snapshot": { + "number": "4.4", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example of CSV-Serialized Results with Quoted Triples", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-example-quoted" } }, "#csv-table": { "current": { "number": "4", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "CSV - Comma Separated values", + "text": "CSV — Comma Separated values", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#csv-table" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "CSV — Comma Separated values", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-table" } }, "#csv-terms": { @@ -45,6 +89,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Serializing RDF Terms", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#csv-terms" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Serializing RDF Terms", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-terms" } }, "#example1": { @@ -53,6 +103,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Example", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#example1" + }, + "snapshot": { + "number": "2.1", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#example1" } }, "#general-comments": { @@ -61,46 +117,68 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Transmission issues using CSV and TSV Formats", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#general-comments" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Transmission issues using CSV and TSV Formats", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#general-comments" } }, "#index": { "current": { - "number": "B", + "number": "E", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Index", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#index" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "E.2", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "E.2", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "E.1", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#index-defined-here" - } - }, - "#informative-references": { - "current": { - "number": "C.2", + }, + "snapshot": { + "number": "E.1", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "Informative references", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#informative-references" + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#index-defined-here" } }, "#internationalization": { "current": { - "number": "", + "number": "D", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "10. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#internationalization" + }, + "snapshot": { + "number": "D", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#internationalization" } }, "#introduction": { @@ -109,62 +187,54 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Introduction", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#introduction" - } - }, - "#non-normative-references-1": { - "current": { - "number": "7.2", + }, + "snapshot": { + "number": "2", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "Non-normative References", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#non-normative-references-1" + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#introduction" } }, "#normative-references": { "current": { - "number": "C.1", + "number": "F.1", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Normative references", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#normative-references" - } - }, - "#normative-references-0": { - "current": { - "number": "C.3", + }, + "snapshot": { + "number": "F.1", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Normative references", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#normative-references-0" - } - }, - "#normative-references-1": { - "current": { - "number": "7.1", - "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "Normative References", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#normative-references-1" + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#normative-references" } }, "#privacy": { "current": { - "number": "8", + "number": "B", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#privacy" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#privacy" } }, "#references": { "current": { - "number": "C", + "number": "F", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "References", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#references" - } - }, - "#references-1": { - "current": { - "number": "7", + }, + "snapshot": { + "number": "F", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "References (merge)", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#references-1" + "text": "References", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#references" } }, "#related": { @@ -173,14 +243,26 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#related" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#related" } }, "#security": { "current": { - "number": "9", + "number": "C", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Security Considerations", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#security" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#security" } }, "#serializing-results": { @@ -189,14 +271,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Serializing the Results Table", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#serializing-results" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "4.1", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#sparql12-documents" + "text": "Serializing the Results Table", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#serializing-results" } }, "#title": { @@ -205,6 +285,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "SPARQL 1.2 Query Results CSV and TSV Formats", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "SPARQL 1.2 Query Results CSV and TSV Formats", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#title" } }, "#toc": { @@ -213,14 +299,26 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#toc" } }, "#tsv": { "current": { "number": "5", "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", - "text": "TSV - Tab Separated values", + "text": "TSV — Tab Separated values", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#tsv" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "TSV — Tab Separated values", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv" } }, "#tsv-example": { @@ -229,6 +327,26 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Example of TSV-Serialized Results", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#tsv-example" + }, + "snapshot": { + "number": "5.3", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example of TSV-Serialized Results", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-example" + } + }, + "#tsv-example-quoted": { + "current": { + "number": "5.4", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example of TSV-Serialized Results with Quoted Triples", + "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#tsv-example-quoted" + }, + "snapshot": { + "number": "5.4", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Example of TSV-Serialized Results with Quoted Triples", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-example-quoted" } }, "#tsv-table": { @@ -237,6 +355,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Serializing the Results Table", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#tsv-table" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Serializing the Results Table", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-table" } }, "#tsv-terms": { @@ -245,6 +369,12 @@ "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", "text": "Serializing RDF Terms", "url": "https://w3c.github.io/sparql-results-csv-tsv/spec/#tsv-terms" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Query Results CSV and TSV Formats", + "text": "Serializing RDF Terms", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-terms" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-results-json.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-results-json.json index 82db2cb3cf..f18a4060c2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-results-json.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-results-json.json @@ -5,6 +5,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"boolean\"", "url": "https://w3c.github.io/sparql-results-json/spec/#ask-boolean" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"boolean\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#ask-boolean" } }, "#ask-head": { @@ -13,6 +19,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"head\"", "url": "https://w3c.github.io/sparql-results-json/spec/#ask-head" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"head\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#ask-head" } }, "#ask-link": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"link\"", "url": "https://w3c.github.io/sparql-results-json/spec/#ask-link" + }, + "snapshot": { + "number": "5.1.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"link\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#ask-link" } }, "#ask-result-form": { @@ -29,70 +47,138 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Boolean Results", "url": "https://w3c.github.io/sparql-results-json/spec/#ask-result-form" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Boolean Results", + "url": "https://www.w3.org/TR/sparql12-results-json/#ask-result-form" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-results-json/spec/#changes-from-sparql11" - } - }, - "#content-type": { - "current": { - "number": "7", + "text": "Changes between SPARQL 1.1 Query Results JSON Format and SPARQL 1.2 Query Results JSON Format", + "url": "https://w3c.github.io/sparql-results-json/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "Internet Media Type, File Extension and Macintosh File Type", - "url": "https://w3c.github.io/sparql-results-json/spec/#content-type" + "text": "Changes between SPARQL 1.1 Query Results JSON Format and SPARQL 1.2 Query Results JSON Format", + "url": "https://www.w3.org/TR/sparql12-results-json/#changes-1-1" } }, "#example": { "current": { "number": "6", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "Example", + "text": "Examples", "url": "https://w3c.github.io/sparql-results-json/spec/#example" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Examples", + "url": "https://www.w3.org/TR/sparql12-results-json/#example" + } + }, + "#example-bindings": { + "current": { + "number": "6.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Variable Binding Results Examples", + "url": "https://w3c.github.io/sparql-results-json/spec/#example-bindings" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Variable Binding Results Examples", + "url": "https://www.w3.org/TR/sparql12-results-json/#example-bindings" + } + }, + "#example-bindings-quoted": { + "current": { + "number": "6.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Variable Binding Results Examples with Quoted Triples", + "url": "https://w3c.github.io/sparql-results-json/spec/#example-bindings-quoted" + }, + "snapshot": { + "number": "6.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Variable Binding Results Examples with Quoted Triples", + "url": "https://www.w3.org/TR/sparql12-results-json/#example-bindings-quoted" } }, "#index": { "current": { - "number": "B", + "number": "E", "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Index", "url": "https://w3c.github.io/sparql-results-json/spec/#index" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-results-json/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "E.2", "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-results-json/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "E.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-results-json/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "E.1", "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-results-json/spec/#index-defined-here" + }, + "snapshot": { + "number": "E.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-results-json/#index-defined-here" } }, "#informative-references": { "current": { - "number": "C.1", + "number": "F.1", "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Informative references", "url": "https://w3c.github.io/sparql-results-json/spec/#informative-references" + }, + "snapshot": { + "number": "F.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Informative references", + "url": "https://www.w3.org/TR/sparql12-results-json/#informative-references" } }, "#internationalization": { "current": { - "number": "", + "number": "D", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "11. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-results-json/spec/#internationalization" + }, + "snapshot": { + "number": "D", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-results-json/#internationalization" } }, "#introduction": { @@ -101,6 +187,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Introduction", "url": "https://w3c.github.io/sparql-results-json/spec/#introduction" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-results-json/#introduction" } }, "#json-result-object": { @@ -109,22 +201,54 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "JSON Results Object", "url": "https://w3c.github.io/sparql-results-json/spec/#json-result-object" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "JSON Results Object", + "url": "https://www.w3.org/TR/sparql12-results-json/#json-result-object" + } + }, + "#media-type": { + "current": { + "number": "7", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Internet Media Type, File Extension and Macintosh File Type", + "url": "https://w3c.github.io/sparql-results-json/spec/#media-type" + }, + "snapshot": { + "number": "7", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Internet Media Type, File Extension and Macintosh File Type", + "url": "https://www.w3.org/TR/sparql12-results-json/#media-type" } }, "#privacy": { "current": { - "number": "9", + "number": "B", "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-results-json/spec/#privacy" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-results-json/#privacy" } }, "#references": { "current": { - "number": "C", + "number": "F", "spec": "SPARQL 1.2 Query Results JSON Format", "text": "References", "url": "https://w3c.github.io/sparql-results-json/spec/#references" + }, + "snapshot": { + "number": "F", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-results-json/#references" } }, "#related": { @@ -133,38 +257,26 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-results-json/spec/#related" - } - }, - "#sec-bibliography": { - "current": { - "number": "8", - "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "References", - "url": "https://w3c.github.io/sparql-results-json/spec/#sec-bibliography" - } - }, - "#sec-non-normative-refs": { - "current": { - "number": "8.2", - "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "Other References", - "url": "https://w3c.github.io/sparql-results-json/spec/#sec-non-normative-refs" - } - }, - "#sec-normative-refs": { - "current": { - "number": "8.1", + }, + "snapshot": { + "number": "1", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "Normative References", - "url": "https://w3c.github.io/sparql-results-json/spec/#sec-normative-refs" + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-results-json/#related" } }, "#security": { "current": { - "number": "", + "number": "C", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "10. Security Considerations", + "text": "Security Considerations", "url": "https://w3c.github.io/sparql-results-json/spec/#security" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-results-json/#security" } }, "#select-bindings": { @@ -173,6 +285,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"bindings\"", "url": "https://w3c.github.io/sparql-results-json/spec/#select-bindings" + }, + "snapshot": { + "number": "4.2.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"bindings\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-bindings" } }, "#select-encode-terms": { @@ -181,6 +299,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Encoding RDF terms", "url": "https://w3c.github.io/sparql-results-json/spec/#select-encode-terms" + }, + "snapshot": { + "number": "4.2.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Encoding RDF terms", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-encode-terms" } }, "#select-head": { @@ -189,6 +313,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"head\"", "url": "https://w3c.github.io/sparql-results-json/spec/#select-head" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"head\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-head" } }, "#select-link": { @@ -197,6 +327,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"link\"", "url": "https://w3c.github.io/sparql-results-json/spec/#select-link" + }, + "snapshot": { + "number": "4.1.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"link\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-link" } }, "#select-results": { @@ -205,6 +341,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"results\"", "url": "https://w3c.github.io/sparql-results-json/spec/#select-results" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "\"results\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-results" } }, "#select-results-form": { @@ -213,6 +355,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Variable Binding Results", "url": "https://w3c.github.io/sparql-results-json/spec/#select-results-form" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Variable Binding Results", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-results-form" } }, "#select-vars": { @@ -221,14 +369,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "\"vars\"", "url": "https://w3c.github.io/sparql-results-json/spec/#select-vars" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "4.1.1", "spec": "SPARQL 1.2 Query Results JSON Format", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-results-json/spec/#sparql12-documents" + "text": "\"vars\"", + "url": "https://www.w3.org/TR/sparql12-results-json/#select-vars" } }, "#title": { @@ -237,6 +383,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "SPARQL 1.2 Query Results JSON Format", "url": "https://w3c.github.io/sparql-results-json/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "SPARQL 1.2 Query Results JSON Format", + "url": "https://www.w3.org/TR/sparql12-results-json/#title" } }, "#toc": { @@ -245,6 +397,12 @@ "spec": "SPARQL 1.2 Query Results JSON Format", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-results-json/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results JSON Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-results-json/#toc" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-results-xml.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-results-xml.json index 7012afeeff..c8d4898ce9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-results-xml.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-results-xml.json @@ -1,10 +1,16 @@ { "#boolean-examples": { "current": { - "number": "4.2", + "number": "4.3", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Boolean Results Examples", "url": "https://w3c.github.io/sparql-results-xml/spec/#boolean-examples" + }, + "snapshot": { + "number": "4.3", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Boolean Results Examples", + "url": "https://www.w3.org/TR/sparql12-results-xml/#boolean-examples" } }, "#boolean-results": { @@ -13,22 +19,26 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Boolean Results", "url": "https://w3c.github.io/sparql-results-xml/spec/#boolean-results" - } - }, - "#changes": { - "current": { - "number": "6", + }, + "snapshot": { + "number": "3.3.2", "spec": "SPARQL 1.2 Query Results XML Format", - "text": "Changes", - "url": "https://w3c.github.io/sparql-results-xml/spec/#changes" + "text": "Boolean Results", + "url": "https://www.w3.org/TR/sparql12-results-xml/#boolean-results" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Query Results XML Format", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-results-xml/spec/#changes-from-sparql11" + "text": "Changes between SPARQL Query Results XML Format (Second Edition) and SPARQL 1.2 Query Results XML Format", + "url": "https://w3c.github.io/sparql-results-xml/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Changes between SPARQL Query Results XML Format (Second Edition) and SPARQL 1.2 Query Results XML Format", + "url": "https://www.w3.org/TR/sparql12-results-xml/#changes-1-1" } }, "#definition": { @@ -37,6 +47,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Definition", "url": "https://w3c.github.io/sparql-results-xml/spec/#definition" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Definition", + "url": "https://www.w3.org/TR/sparql12-results-xml/#definition" } }, "#docElement": { @@ -45,6 +61,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Document Element", "url": "https://w3c.github.io/sparql-results-xml/spec/#docElement" + }, + "snapshot": { + "number": "3.1", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Document Element", + "url": "https://www.w3.org/TR/sparql12-results-xml/#docElement" } }, "#examples": { @@ -53,6 +75,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Examples", "url": "https://w3c.github.io/sparql-results-xml/spec/#examples" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Examples", + "url": "https://www.w3.org/TR/sparql12-results-xml/#examples" } }, "#head": { @@ -61,46 +89,82 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Header", "url": "https://w3c.github.io/sparql-results-xml/spec/#head" + }, + "snapshot": { + "number": "3.2", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Header", + "url": "https://www.w3.org/TR/sparql12-results-xml/#head" } }, "#index": { "current": { - "number": "B", + "number": "F", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Index", "url": "https://w3c.github.io/sparql-results-xml/spec/#index" + }, + "snapshot": { + "number": "F", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-results-xml/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "F.2", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-results-xml/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "F.2", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-results-xml/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "F.1", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-results-xml/spec/#index-defined-here" + }, + "snapshot": { + "number": "F.1", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-results-xml/#index-defined-here" } }, "#informative-references": { "current": { - "number": "C.1", + "number": "G.1", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Informative references", "url": "https://w3c.github.io/sparql-results-xml/spec/#informative-references" + }, + "snapshot": { + "number": "G.1", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Informative references", + "url": "https://www.w3.org/TR/sparql12-results-xml/#informative-references" } }, "#internationalization": { "current": { - "number": "", + "number": "E", "spec": "SPARQL 1.2 Query Results XML Format", - "text": "10. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-results-xml/spec/#internationalization" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-results-xml/#internationalization" } }, "#internet-media-type-registration-form": { @@ -109,6 +173,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Internet Media Type Registration Form", "url": "https://w3c.github.io/sparql-results-xml/spec/#internet-media-type-registration-form" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Internet Media Type Registration Form", + "url": "https://www.w3.org/TR/sparql12-results-xml/#internet-media-type-registration-form" } }, "#introduction": { @@ -117,38 +187,54 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Introduction", "url": "https://w3c.github.io/sparql-results-xml/spec/#introduction" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-results-xml/#introduction" } }, - "#mime": { + "#mediatype": { "current": { - "number": "7", + "number": "B", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Internet Media Type, File Extension and Macintosh File Type", + "url": "https://w3c.github.io/sparql-results-xml/spec/#mediatype" + }, + "snapshot": { + "number": "B", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Internet Media Type, File Extension and Macintosh File Type", - "url": "https://w3c.github.io/sparql-results-xml/spec/#mime" + "url": "https://www.w3.org/TR/sparql12-results-xml/#mediatype" } }, "#privacy": { "current": { - "number": "8", + "number": "C", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-results-xml/spec/#privacy" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-results-xml/#privacy" } }, "#references": { "current": { - "number": "C", + "number": "G", "spec": "SPARQL 1.2 Query Results XML Format", "text": "References", "url": "https://w3c.github.io/sparql-results-xml/spec/#references" - } - }, - "#references-0": { - "current": { - "number": "", + }, + "snapshot": { + "number": "G", "spec": "SPARQL 1.2 Query Results XML Format", "text": "References", - "url": "https://w3c.github.io/sparql-results-xml/spec/#references-0" + "url": "https://www.w3.org/TR/sparql12-results-xml/#references" } }, "#related": { @@ -157,6 +243,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-results-xml/spec/#related" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-results-xml/#related" } }, "#results": { @@ -165,6 +257,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Results", "url": "https://w3c.github.io/sparql-results-xml/spec/#results" + }, + "snapshot": { + "number": "3.3", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Results", + "url": "https://www.w3.org/TR/sparql12-results-xml/#results" } }, "#schemas": { @@ -173,22 +271,26 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "XML Schemas", "url": "https://w3c.github.io/sparql-results-xml/spec/#schemas" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "XML Schemas", + "url": "https://www.w3.org/TR/sparql12-results-xml/#schemas" } }, "#security": { "current": { - "number": "9", + "number": "D", "spec": "SPARQL 1.2 Query Results XML Format", "text": "Security Considerations", "url": "https://w3c.github.io/sparql-results-xml/spec/#security" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "D", "spec": "SPARQL 1.2 Query Results XML Format", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-results-xml/spec/#sparql12-documents" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-results-xml/#security" } }, "#title": { @@ -197,6 +299,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "SPARQL 1.2 Query Results XML Format", "url": "https://w3c.github.io/sparql-results-xml/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "SPARQL 1.2 Query Results XML Format", + "url": "https://www.w3.org/TR/sparql12-results-xml/#title" } }, "#toc": { @@ -205,6 +313,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-results-xml/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-results-xml/#toc" } }, "#vb-examples": { @@ -213,6 +327,26 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Variable Binding Results Examples", "url": "https://w3c.github.io/sparql-results-xml/spec/#vb-examples" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Variable Binding Results Examples", + "url": "https://www.w3.org/TR/sparql12-results-xml/#vb-examples" + } + }, + "#vb-quoted-examples": { + "current": { + "number": "4.2", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Variable Binding Results Examples with Quoted Triples", + "url": "https://w3c.github.io/sparql-results-xml/spec/#vb-quoted-examples" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Variable Binding Results Examples with Quoted Triples", + "url": "https://www.w3.org/TR/sparql12-results-xml/#vb-quoted-examples" } }, "#vb-results": { @@ -221,6 +355,12 @@ "spec": "SPARQL 1.2 Query Results XML Format", "text": "Variable Binding Results", "url": "https://w3c.github.io/sparql-results-xml/spec/#vb-results" + }, + "snapshot": { + "number": "3.3.1", + "spec": "SPARQL 1.2 Query Results XML Format", + "text": "Variable Binding Results", + "url": "https://www.w3.org/TR/sparql12-results-xml/#vb-results" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-service-description.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-service-description.json index 681f9a1c51..def7526ee5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-service-description.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-service-description.json @@ -5,14 +5,26 @@ "spec": "SPARQL 1.2 Service Description", "text": "Accessing a Service Description", "url": "https://w3c.github.io/sparql-service-description/spec/#accessing" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Service Description", + "text": "Accessing a Service Description", + "url": "https://www.w3.org/TR/sparql12-service-description/#accessing" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Service Description", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-service-description/spec/#changes-from-sparql11" + "text": "Changes between SPARQL 1.1 Service Description and SPARQL 1.2 Service Description", + "url": "https://w3c.github.io/sparql-service-description/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Service Description", + "text": "Changes between SPARQL 1.1 Service Description and SPARQL 1.2 Service Description", + "url": "https://www.w3.org/TR/sparql12-service-description/#changes-1-1" } }, "#classes": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Classes", "url": "https://w3c.github.io/sparql-service-description/spec/#classes" + }, + "snapshot": { + "number": "4.3", + "spec": "SPARQL 1.2 Service Description", + "text": "Classes", + "url": "https://www.w3.org/TR/sparql12-service-description/#classes" } }, "#conformance": { @@ -29,6 +47,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Conformance", "url": "https://w3c.github.io/sparql-service-description/spec/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Service Description", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-service-description/#conformance" } }, "#conformance-0": { @@ -37,6 +61,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Conformance", "url": "https://w3c.github.io/sparql-service-description/spec/#conformance-0" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Service Description", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-service-description/#conformance-0" } }, "#example": { @@ -45,6 +75,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Example (Informative)", "url": "https://w3c.github.io/sparql-service-description/spec/#example" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Service Description", + "text": "Example (Informative)", + "url": "https://www.w3.org/TR/sparql12-service-description/#example" } }, "#example-rdfxml": { @@ -53,6 +89,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "RDF/XML Service Description", "url": "https://w3c.github.io/sparql-service-description/spec/#example-rdfxml" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Service Description", + "text": "RDF/XML Service Description", + "url": "https://www.w3.org/TR/sparql12-service-description/#example-rdfxml" } }, "#example-turtle": { @@ -61,30 +103,54 @@ "spec": "SPARQL 1.2 Service Description", "text": "Turtle Service Description", "url": "https://w3c.github.io/sparql-service-description/spec/#example-turtle" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Service Description", + "text": "Turtle Service Description", + "url": "https://www.w3.org/TR/sparql12-service-description/#example-turtle" } }, "#index": { "current": { - "number": "B", + "number": "E", "spec": "SPARQL 1.2 Service Description", "text": "Index", "url": "https://w3c.github.io/sparql-service-description/spec/#index" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Service Description", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-service-description/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "E.2", "spec": "SPARQL 1.2 Service Description", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-service-description/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "E.2", + "spec": "SPARQL 1.2 Service Description", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-service-description/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "E.1", "spec": "SPARQL 1.2 Service Description", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-service-description/spec/#index-defined-here" + }, + "snapshot": { + "number": "E.1", + "spec": "SPARQL 1.2 Service Description", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-service-description/#index-defined-here" } }, "#instances": { @@ -93,14 +159,26 @@ "spec": "SPARQL 1.2 Service Description", "text": "Instances", "url": "https://w3c.github.io/sparql-service-description/spec/#instances" + }, + "snapshot": { + "number": "4.4", + "spec": "SPARQL 1.2 Service Description", + "text": "Instances", + "url": "https://www.w3.org/TR/sparql12-service-description/#instances" } }, "#internationalization": { "current": { - "number": "", + "number": "D", "spec": "SPARQL 1.2 Service Description", - "text": "10. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-service-description/spec/#internationalization" + }, + "snapshot": { + "number": "D", + "spec": "SPARQL 1.2 Service Description", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-service-description/#internationalization" } }, "#intro": { @@ -109,6 +187,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Introduction", "url": "https://w3c.github.io/sparql-service-description/spec/#intro" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Service Description", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-service-description/#intro" } }, "#lang-sparql10query": { @@ -117,6 +201,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:SPARQL10Query", "url": "https://w3c.github.io/sparql-service-description/spec/#lang-sparql10query" + }, + "snapshot": { + "number": "4.4.1", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL10Query", + "url": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql10query" } }, "#lang-sparql11query": { @@ -125,6 +215,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:SPARQL11Query", "url": "https://w3c.github.io/sparql-service-description/spec/#lang-sparql11query" + }, + "snapshot": { + "number": "4.4.2", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL11Query", + "url": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql11query" } }, "#lang-sparql11update": { @@ -133,6 +229,40 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:SPARQL11Update", "url": "https://w3c.github.io/sparql-service-description/spec/#lang-sparql11update" + }, + "snapshot": { + "number": "4.4.3", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL11Update", + "url": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql11update" + } + }, + "#lang-sparql12query": { + "current": { + "number": "4.4.4", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL12Query", + "url": "https://w3c.github.io/sparql-service-description/spec/#lang-sparql12query" + }, + "snapshot": { + "number": "4.4.4", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL12Query", + "url": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql12query" + } + }, + "#lang-sparql12update": { + "current": { + "number": "4.4.5", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL12Update", + "url": "https://w3c.github.io/sparql-service-description/spec/#lang-sparql12update" + }, + "snapshot": { + "number": "4.4.5", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:SPARQL12Update", + "url": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql12update" } }, "#namespace": { @@ -141,30 +271,54 @@ "spec": "SPARQL 1.2 Service Description", "text": "SPARQL Service Description Namespace and OWL Ontology", "url": "https://w3c.github.io/sparql-service-description/spec/#namespace" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Service Description", + "text": "SPARQL Service Description Namespace and OWL Ontology", + "url": "https://www.w3.org/TR/sparql12-service-description/#namespace" } }, "#normative-references": { "current": { - "number": "C.1", + "number": "F.1", "spec": "SPARQL 1.2 Service Description", "text": "Normative references", "url": "https://w3c.github.io/sparql-service-description/spec/#normative-references" + }, + "snapshot": { + "number": "F.1", + "spec": "SPARQL 1.2 Service Description", + "text": "Normative references", + "url": "https://www.w3.org/TR/sparql12-service-description/#normative-references" } }, "#other-instances": { "current": { - "number": "4.4.9", + "number": "4.4.11", "spec": "SPARQL 1.2 Service Description", "text": "Other Instances", "url": "https://w3c.github.io/sparql-service-description/spec/#other-instances" + }, + "snapshot": { + "number": "4.4.11", + "spec": "SPARQL 1.2 Service Description", + "text": "Other Instances", + "url": "https://www.w3.org/TR/sparql12-service-description/#other-instances" } }, "#privacy": { "current": { - "number": "8", + "number": "B", "spec": "SPARQL 1.2 Service Description", "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-service-description/spec/#privacy" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Service Description", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-service-description/#privacy" } }, "#properties": { @@ -173,14 +327,26 @@ "spec": "SPARQL 1.2 Service Description", "text": "Properties", "url": "https://w3c.github.io/sparql-service-description/spec/#properties" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Service Description", + "text": "Properties", + "url": "https://www.w3.org/TR/sparql12-service-description/#properties" } }, "#references": { "current": { - "number": "C", + "number": "F", "spec": "SPARQL 1.2 Service Description", "text": "References", "url": "https://w3c.github.io/sparql-service-description/spec/#references" + }, + "snapshot": { + "number": "F", + "spec": "SPARQL 1.2 Service Description", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-service-description/#references" } }, "#related": { @@ -189,6 +355,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-service-description/spec/#related" + }, + "snapshot": { + "number": "1", + "spec": "SPARQL 1.2 Service Description", + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-service-description/#related" } }, "#sd-Aggregate": { @@ -197,6 +369,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Aggregate", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Aggregate" + }, + "snapshot": { + "number": "4.3.5", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Aggregate", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Aggregate" } }, "#sd-Dataset": { @@ -205,6 +383,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Dataset", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Dataset" + }, + "snapshot": { + "number": "4.3.9", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Dataset", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Dataset" } }, "#sd-EntailmentProfile": { @@ -213,6 +397,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:EntailmentProfile", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-EntailmentProfile" + }, + "snapshot": { + "number": "4.3.7", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:EntailmentProfile", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-EntailmentProfile" } }, "#sd-EntailmentRegime": { @@ -221,6 +411,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:EntailmentRegime", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-EntailmentRegime" + }, + "snapshot": { + "number": "4.3.6", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:EntailmentRegime", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-EntailmentRegime" } }, "#sd-Feature": { @@ -229,6 +425,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Feature", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Feature" + }, + "snapshot": { + "number": "4.3.2", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Feature", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Feature" } }, "#sd-Function": { @@ -237,6 +439,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Function", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Function" + }, + "snapshot": { + "number": "4.3.4", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Function", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Function" } }, "#sd-Graph": { @@ -245,6 +453,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Graph", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Graph" + }, + "snapshot": { + "number": "4.3.10", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Graph", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Graph" } }, "#sd-GraphCollection": { @@ -253,6 +467,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:GraphCollection", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-GraphCollection" + }, + "snapshot": { + "number": "4.3.8", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:GraphCollection", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-GraphCollection" } }, "#sd-Language": { @@ -261,6 +481,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Language", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Language" + }, + "snapshot": { + "number": "4.3.3", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Language", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Language" } }, "#sd-NamedGraph": { @@ -269,6 +495,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:NamedGraph", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-NamedGraph" + }, + "snapshot": { + "number": "4.3.11", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:NamedGraph", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-NamedGraph" } }, "#sd-Service": { @@ -277,6 +509,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:Service", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-Service" + }, + "snapshot": { + "number": "4.3.1", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:Service", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-Service" } }, "#sd-availableGraphs": { @@ -285,14 +523,26 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:availableGraphs", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-availableGraphs" + }, + "snapshot": { + "number": "4.2.13", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:availableGraphs", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-availableGraphs" } }, "#sd-basicfederatedquery": { "current": { - "number": "4.4.8", + "number": "4.4.10", "spec": "SPARQL 1.2 Service Description", "text": "sd:BasicFederatedQuery", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-basicfederatedquery" + }, + "snapshot": { + "number": "4.4.10", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:BasicFederatedQuery", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-basicfederatedquery" } }, "#sd-defaultDataset": { @@ -301,6 +551,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:defaultDataset", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-defaultDataset" + }, + "snapshot": { + "number": "4.2.12", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:defaultDataset", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultDataset" } }, "#sd-defaultEntailmentRegime": { @@ -309,6 +565,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:defaultEntailmentRegime", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-defaultEntailmentRegime" + }, + "snapshot": { + "number": "4.2.3", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:defaultEntailmentRegime", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultEntailmentRegime" } }, "#sd-defaultGraph": { @@ -317,6 +579,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:defaultGraph", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-defaultGraph" + }, + "snapshot": { + "number": "4.2.16", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:defaultGraph", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultGraph" } }, "#sd-defaultSupportedEntailmentProfile": { @@ -325,22 +593,40 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:defaultSupportedEntailmentProfile", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-defaultSupportedEntailmentProfile" + }, + "snapshot": { + "number": "4.2.5", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:defaultSupportedEntailmentProfile", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultSupportedEntailmentProfile" } }, "#sd-dereferencesuris": { "current": { - "number": "4.4.4", + "number": "4.4.6", "spec": "SPARQL 1.2 Service Description", "text": "sd:DereferencesURIs", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-dereferencesuris" + }, + "snapshot": { + "number": "4.4.6", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:DereferencesURIs", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-dereferencesuris" } }, "#sd-emptygraphs": { "current": { - "number": "4.4.7", + "number": "4.4.9", "spec": "SPARQL 1.2 Service Description", "text": "sd:EmptyGraphs", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-emptygraphs" + }, + "snapshot": { + "number": "4.4.9", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:EmptyGraphs", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-emptygraphs" } }, "#sd-endpoint": { @@ -349,6 +635,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:endpoint", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-endpoint" + }, + "snapshot": { + "number": "4.2.1", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:endpoint", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-endpoint" } }, "#sd-entailmentRegime": { @@ -357,6 +649,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:entailmentRegime", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-entailmentRegime" + }, + "snapshot": { + "number": "4.2.4", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:entailmentRegime", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-entailmentRegime" } }, "#sd-extensionAggregate": { @@ -365,6 +663,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:extensionAggregate", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-extensionAggregate" + }, + "snapshot": { + "number": "4.2.8", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:extensionAggregate", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-extensionAggregate" } }, "#sd-extensionFunction": { @@ -373,6 +677,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:extensionFunction", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-extensionFunction" + }, + "snapshot": { + "number": "4.2.7", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:extensionFunction", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-extensionFunction" } }, "#sd-feature": { @@ -381,6 +691,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:feature", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-feature" + }, + "snapshot": { + "number": "4.2.2", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:feature", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-feature" } }, "#sd-graph": { @@ -389,6 +705,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:graph", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-graph" + }, + "snapshot": { + "number": "4.2.19", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:graph", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-graph" } }, "#sd-inputFormat": { @@ -397,6 +719,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:inputFormat", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-inputFormat" + }, + "snapshot": { + "number": "4.2.15", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:inputFormat", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-inputFormat" } }, "#sd-languageExtension": { @@ -405,6 +733,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:languageExtension", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-languageExtension" + }, + "snapshot": { + "number": "4.2.9", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:languageExtension", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-languageExtension" } }, "#sd-name": { @@ -413,6 +747,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:name", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-name" + }, + "snapshot": { + "number": "4.2.18", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:name", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-name" } }, "#sd-namedGraph": { @@ -421,6 +761,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:namedGraph", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-namedGraph" + }, + "snapshot": { + "number": "4.2.17", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:namedGraph", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-namedGraph" } }, "#sd-propertyFeature": { @@ -429,14 +775,26 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:propertyFeature", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-propertyFeature" + }, + "snapshot": { + "number": "4.2.11", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:propertyFeature", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-propertyFeature" } }, "#sd-requiresdataset": { "current": { - "number": "4.4.6", + "number": "4.4.8", "spec": "SPARQL 1.2 Service Description", "text": "sd:RequiresDataset", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-requiresdataset" + }, + "snapshot": { + "number": "4.4.8", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:RequiresDataset", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-requiresdataset" } }, "#sd-resultFormat": { @@ -445,6 +803,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:resultFormat", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-resultFormat" + }, + "snapshot": { + "number": "4.2.14", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:resultFormat", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-resultFormat" } }, "#sd-supportedEntailmentProfile": { @@ -453,6 +817,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:supportedEntailmentProfile", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-supportedEntailmentProfile" + }, + "snapshot": { + "number": "4.2.6", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:supportedEntailmentProfile", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-supportedEntailmentProfile" } }, "#sd-supportedLanguage": { @@ -461,54 +831,40 @@ "spec": "SPARQL 1.2 Service Description", "text": "sd:supportedLanguage", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-supportedLanguage" + }, + "snapshot": { + "number": "4.2.10", + "spec": "SPARQL 1.2 Service Description", + "text": "sd:supportedLanguage", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-supportedLanguage" } }, "#sd-uniondefaultgraph": { "current": { - "number": "4.4.5", + "number": "4.4.7", "spec": "SPARQL 1.2 Service Description", "text": "sd:UnionDefaultGraph", "url": "https://w3c.github.io/sparql-service-description/spec/#sd-uniondefaultgraph" - } - }, - "#sec-bibliography": { - "current": { - "number": "7", - "spec": "SPARQL 1.2 Service Description", - "text": "References", - "url": "https://w3c.github.io/sparql-service-description/spec/#sec-bibliography" - } - }, - "#sec-non-normative-refs": { - "current": { - "number": "7.2", - "spec": "SPARQL 1.2 Service Description", - "text": "Other References", - "url": "https://w3c.github.io/sparql-service-description/spec/#sec-non-normative-refs" - } - }, - "#sec-normative-refs": { - "current": { - "number": "7.1", + }, + "snapshot": { + "number": "4.4.7", "spec": "SPARQL 1.2 Service Description", - "text": "Normative References", - "url": "https://w3c.github.io/sparql-service-description/spec/#sec-normative-refs" + "text": "sd:UnionDefaultGraph", + "url": "https://www.w3.org/TR/sparql12-service-description/#sd-uniondefaultgraph" } }, "#security": { "current": { - "number": "9", + "number": "C", "spec": "SPARQL 1.2 Service Description", "text": "Security Considerations", "url": "https://w3c.github.io/sparql-service-description/spec/#security" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "C", "spec": "SPARQL 1.2 Service Description", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-service-description/spec/#sparql12-documents" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-service-description/#security" } }, "#terminology": { @@ -517,6 +873,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Terminology", "url": "https://w3c.github.io/sparql-service-description/spec/#terminology" + }, + "snapshot": { + "number": "2.1", + "spec": "SPARQL 1.2 Service Description", + "text": "Terminology", + "url": "https://www.w3.org/TR/sparql12-service-description/#terminology" } }, "#title": { @@ -525,6 +887,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "SPARQL 1.2 Service Description", "url": "https://w3c.github.io/sparql-service-description/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Service Description", + "text": "SPARQL 1.2 Service Description", + "url": "https://www.w3.org/TR/sparql12-service-description/#title" } }, "#toc": { @@ -533,6 +901,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-service-description/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Service Description", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-service-description/#toc" } }, "#vocab": { @@ -541,6 +915,12 @@ "spec": "SPARQL 1.2 Service Description", "text": "Service Description Vocabulary", "url": "https://w3c.github.io/sparql-service-description/spec/#vocab" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Service Description", + "text": "Service Description Vocabulary", + "url": "https://www.w3.org/TR/sparql12-service-description/#vocab" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-sparql12-update.json b/bikeshed/spec-data/readonly/headings/headings-sparql12-update.json index e6e030e689..1d1093ba7e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-sparql12-update.json +++ b/bikeshed/spec-data/readonly/headings/headings-sparql12-update.json @@ -5,14 +5,26 @@ "spec": "SPARQL 1.2 Update", "text": "ADD", "url": "https://w3c.github.io/sparql-update/spec/#add" + }, + "snapshot": { + "number": "4.2.5", + "spec": "SPARQL 1.2 Update", + "text": "ADD", + "url": "https://www.w3.org/TR/sparql12-update/#add" } }, - "#changes-from-sparql11": { + "#changes-1-1": { "current": { "number": "A", "spec": "SPARQL 1.2 Update", - "text": "Change Log", - "url": "https://w3c.github.io/sparql-update/spec/#changes-from-sparql11" + "text": "Changes between SPARQL 1.1 Update and SPARQL 1.2 Update", + "url": "https://w3c.github.io/sparql-update/spec/#changes-1-1" + }, + "snapshot": { + "number": "A", + "spec": "SPARQL 1.2 Update", + "text": "Changes between SPARQL 1.1 Update and SPARQL 1.2 Update", + "url": "https://www.w3.org/TR/sparql12-update/#changes-1-1" } }, "#clear": { @@ -21,6 +33,12 @@ "spec": "SPARQL 1.2 Update", "text": "CLEAR", "url": "https://w3c.github.io/sparql-update/spec/#clear" + }, + "snapshot": { + "number": "4.1.5", + "spec": "SPARQL 1.2 Update", + "text": "CLEAR", + "url": "https://www.w3.org/TR/sparql12-update/#clear" } }, "#conformance": { @@ -29,6 +47,12 @@ "spec": "SPARQL 1.2 Update", "text": "Conformance", "url": "https://w3c.github.io/sparql-update/spec/#conformance" + }, + "snapshot": { + "number": "6", + "spec": "SPARQL 1.2 Update", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-update/#conformance" } }, "#conformance-0": { @@ -37,6 +61,12 @@ "spec": "SPARQL 1.2 Update", "text": "Conformance", "url": "https://w3c.github.io/sparql-update/spec/#conformance-0" + }, + "snapshot": { + "number": "6.1", + "spec": "SPARQL 1.2 Update", + "text": "Conformance", + "url": "https://www.w3.org/TR/sparql12-update/#conformance-0" } }, "#copy": { @@ -45,6 +75,12 @@ "spec": "SPARQL 1.2 Update", "text": "COPY", "url": "https://w3c.github.io/sparql-update/spec/#copy" + }, + "snapshot": { + "number": "4.2.3", + "spec": "SPARQL 1.2 Update", + "text": "COPY", + "url": "https://www.w3.org/TR/sparql12-update/#copy" } }, "#create": { @@ -53,6 +89,12 @@ "spec": "SPARQL 1.2 Update", "text": "CREATE", "url": "https://w3c.github.io/sparql-update/spec/#create" + }, + "snapshot": { + "number": "4.2.1", + "spec": "SPARQL 1.2 Update", + "text": "CREATE", + "url": "https://www.w3.org/TR/sparql12-update/#create" } }, "#def_clearOperation": { @@ -61,6 +103,12 @@ "spec": "SPARQL 1.2 Update", "text": "Clear Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_clearOperation" + }, + "snapshot": { + "number": "5.3.5", + "spec": "SPARQL 1.2 Update", + "text": "Clear Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_clearOperation" } }, "#def_createOperation": { @@ -69,6 +117,12 @@ "spec": "SPARQL 1.2 Update", "text": "Create Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_createOperation" + }, + "snapshot": { + "number": "5.4.1", + "spec": "SPARQL 1.2 Update", + "text": "Create Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_createOperation" } }, "#def_datasetDiff": { @@ -77,22 +131,40 @@ "spec": "SPARQL 1.2 Update", "text": "Dataset-DIFF", "url": "https://w3c.github.io/sparql-update/spec/#def_datasetDiff" + }, + "snapshot": { + "number": "5.2.2", + "spec": "SPARQL 1.2 Update", + "text": "Dataset-DIFF", + "url": "https://www.w3.org/TR/sparql12-update/#def_datasetDiff" } }, "#def_datasetPattern": { "current": { "number": "5.2.4", "spec": "SPARQL 1.2 Update", - "text": "Dataset( QuadPattern, P, DS, GS )", + "text": "Dataset ( QuadPattern, P, DS, GS )", "url": "https://w3c.github.io/sparql-update/spec/#def_datasetPattern" + }, + "snapshot": { + "number": "5.2.4", + "spec": "SPARQL 1.2 Update", + "text": "Dataset ( QuadPattern, P, DS, GS )", + "url": "https://www.w3.org/TR/sparql12-update/#def_datasetPattern" } }, "#def_datasetQuadPattern": { "current": { "number": "5.2.3", "spec": "SPARQL 1.2 Update", - "text": "Dataset( QuadPattern, μ, DS, GS )", + "text": "Dataset ( QuadPattern, μ, DS, GS )", "url": "https://w3c.github.io/sparql-update/spec/#def_datasetQuadPattern" + }, + "snapshot": { + "number": "5.2.3", + "spec": "SPARQL 1.2 Update", + "text": "Dataset ( QuadPattern, μ, DS, GS )", + "url": "https://www.w3.org/TR/sparql12-update/#def_datasetQuadPattern" } }, "#def_datasetUnion": { @@ -101,6 +173,12 @@ "spec": "SPARQL 1.2 Update", "text": "Dataset-UNION", "url": "https://w3c.github.io/sparql-update/spec/#def_datasetUnion" + }, + "snapshot": { + "number": "5.2.1", + "spec": "SPARQL 1.2 Update", + "text": "Dataset-UNION", + "url": "https://www.w3.org/TR/sparql12-update/#def_datasetUnion" } }, "#def_deletedataoperation": { @@ -109,6 +187,12 @@ "spec": "SPARQL 1.2 Update", "text": "Delete Data Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_deletedataoperation" + }, + "snapshot": { + "number": "5.3.2", + "spec": "SPARQL 1.2 Update", + "text": "Delete Data Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_deletedataoperation" } }, "#def_deleteinsertoperation": { @@ -117,6 +201,12 @@ "spec": "SPARQL 1.2 Update", "text": "Delete Insert Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_deleteinsertoperation" + }, + "snapshot": { + "number": "5.3.3", + "spec": "SPARQL 1.2 Update", + "text": "Delete Insert Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_deleteinsertoperation" } }, "#def_dropOperation": { @@ -125,6 +215,12 @@ "spec": "SPARQL 1.2 Update", "text": "Drop Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_dropOperation" + }, + "snapshot": { + "number": "5.4.2", + "spec": "SPARQL 1.2 Update", + "text": "Drop Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_dropOperation" } }, "#def_graphstore": { @@ -133,6 +229,12 @@ "spec": "SPARQL 1.2 Update", "text": "Graph Store", "url": "https://w3c.github.io/sparql-update/spec/#def_graphstore" + }, + "snapshot": { + "number": "5.1.1", + "spec": "SPARQL 1.2 Update", + "text": "Graph Store", + "url": "https://www.w3.org/TR/sparql12-update/#def_graphstore" } }, "#def_insertdataoperation": { @@ -141,6 +243,12 @@ "spec": "SPARQL 1.2 Update", "text": "Insert Data Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_insertdataoperation" + }, + "snapshot": { + "number": "5.3.1", + "spec": "SPARQL 1.2 Update", + "text": "Insert Data Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_insertdataoperation" } }, "#def_loadoperation": { @@ -149,6 +257,12 @@ "spec": "SPARQL 1.2 Update", "text": "Load Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_loadoperation" + }, + "snapshot": { + "number": "5.3.4", + "spec": "SPARQL 1.2 Update", + "text": "Load Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_loadoperation" } }, "#def_updateoperation": { @@ -157,6 +271,12 @@ "spec": "SPARQL 1.2 Update", "text": "Abstract Update Operation", "url": "https://w3c.github.io/sparql-update/spec/#def_updateoperation" + }, + "snapshot": { + "number": "5.1.2", + "spec": "SPARQL 1.2 Update", + "text": "Abstract Update Operation", + "url": "https://www.w3.org/TR/sparql12-update/#def_updateoperation" } }, "#delete": { @@ -165,6 +285,12 @@ "spec": "SPARQL 1.2 Update", "text": "DELETE (Informative)", "url": "https://w3c.github.io/sparql-update/spec/#delete" + }, + "snapshot": { + "number": "4.1.3.1", + "spec": "SPARQL 1.2 Update", + "text": "DELETE (Informative)", + "url": "https://www.w3.org/TR/sparql12-update/#delete" } }, "#deleteData": { @@ -173,6 +299,12 @@ "spec": "SPARQL 1.2 Update", "text": "DELETE DATA", "url": "https://w3c.github.io/sparql-update/spec/#deleteData" + }, + "snapshot": { + "number": "4.1.2", + "spec": "SPARQL 1.2 Update", + "text": "DELETE DATA", + "url": "https://www.w3.org/TR/sparql12-update/#deleteData" } }, "#deleteInsert": { @@ -181,6 +313,12 @@ "spec": "SPARQL 1.2 Update", "text": "DELETE/INSERT", "url": "https://w3c.github.io/sparql-update/spec/#deleteInsert" + }, + "snapshot": { + "number": "4.1.3", + "spec": "SPARQL 1.2 Update", + "text": "DELETE/INSERT", + "url": "https://www.w3.org/TR/sparql12-update/#deleteInsert" } }, "#deleteWhere": { @@ -189,6 +327,12 @@ "spec": "SPARQL 1.2 Update", "text": "DELETE WHERE", "url": "https://w3c.github.io/sparql-update/spec/#deleteWhere" + }, + "snapshot": { + "number": "4.1.3.3", + "spec": "SPARQL 1.2 Update", + "text": "DELETE WHERE", + "url": "https://www.w3.org/TR/sparql12-update/#deleteWhere" } }, "#documentConventions": { @@ -197,6 +341,12 @@ "spec": "SPARQL 1.2 Update", "text": "Document Conventions", "url": "https://w3c.github.io/sparql-update/spec/#documentConventions" + }, + "snapshot": { + "number": "2.1", + "spec": "SPARQL 1.2 Update", + "text": "Document Conventions", + "url": "https://www.w3.org/TR/sparql12-update/#documentConventions" } }, "#drop": { @@ -205,6 +355,12 @@ "spec": "SPARQL 1.2 Update", "text": "DROP", "url": "https://w3c.github.io/sparql-update/spec/#drop" + }, + "snapshot": { + "number": "4.2.2", + "spec": "SPARQL 1.2 Update", + "text": "DROP", + "url": "https://www.w3.org/TR/sparql12-update/#drop" } }, "#entailmentConsistency": { @@ -213,6 +369,12 @@ "spec": "SPARQL 1.2 Update", "text": "Entailment and Consistency", "url": "https://w3c.github.io/sparql-update/spec/#entailmentConsistency" + }, + "snapshot": { + "number": "3.3", + "spec": "SPARQL 1.2 Update", + "text": "Entailment and Consistency", + "url": "https://www.w3.org/TR/sparql12-update/#entailmentConsistency" } }, "#formalModel": { @@ -221,6 +383,12 @@ "spec": "SPARQL 1.2 Update", "text": "SPARQL Update Formal Model", "url": "https://w3c.github.io/sparql-update/spec/#formalModel" + }, + "snapshot": { + "number": "5", + "spec": "SPARQL 1.2 Update", + "text": "SPARQL Update Formal Model", + "url": "https://www.w3.org/TR/sparql12-update/#formalModel" } }, "#formalModelAuxiliary": { @@ -229,6 +397,12 @@ "spec": "SPARQL 1.2 Update", "text": "Auxiliary Definitions", "url": "https://w3c.github.io/sparql-update/spec/#formalModelAuxiliary" + }, + "snapshot": { + "number": "5.2", + "spec": "SPARQL 1.2 Update", + "text": "Auxiliary Definitions", + "url": "https://www.w3.org/TR/sparql12-update/#formalModelAuxiliary" } }, "#formalModelGeneral": { @@ -237,6 +411,12 @@ "spec": "SPARQL 1.2 Update", "text": "General Definitions", "url": "https://w3c.github.io/sparql-update/spec/#formalModelGeneral" + }, + "snapshot": { + "number": "5.1", + "spec": "SPARQL 1.2 Update", + "text": "General Definitions", + "url": "https://www.w3.org/TR/sparql12-update/#formalModelGeneral" } }, "#formalModelGraphMgt": { @@ -245,6 +425,12 @@ "spec": "SPARQL 1.2 Update", "text": "Graph Management Operations", "url": "https://w3c.github.io/sparql-update/spec/#formalModelGraphMgt" + }, + "snapshot": { + "number": "5.4", + "spec": "SPARQL 1.2 Update", + "text": "Graph Management Operations", + "url": "https://www.w3.org/TR/sparql12-update/#formalModelGraphMgt" } }, "#formalModelGraphUpdate": { @@ -253,14 +439,26 @@ "spec": "SPARQL 1.2 Update", "text": "Graph Update Operations", "url": "https://w3c.github.io/sparql-update/spec/#formalModelGraphUpdate" + }, + "snapshot": { + "number": "5.3", + "spec": "SPARQL 1.2 Update", + "text": "Graph Update Operations", + "url": "https://www.w3.org/TR/sparql12-update/#formalModelGraphUpdate" } }, "#grammar": { "current": { "number": "9", "spec": "SPARQL 1.2 Update", - "text": "SPARQL 1.1 Update Grammar", + "text": "SPARQL 1.2 Update Grammar", "url": "https://w3c.github.io/sparql-update/spec/#grammar" + }, + "snapshot": { + "number": "9", + "spec": "SPARQL 1.2 Update", + "text": "SPARQL 1.2 Update Grammar", + "url": "https://www.w3.org/TR/sparql12-update/#grammar" } }, "#graphManagement": { @@ -269,6 +467,12 @@ "spec": "SPARQL 1.2 Update", "text": "Graph Management", "url": "https://w3c.github.io/sparql-update/spec/#graphManagement" + }, + "snapshot": { + "number": "4.2", + "spec": "SPARQL 1.2 Update", + "text": "Graph Management", + "url": "https://www.w3.org/TR/sparql12-update/#graphManagement" } }, "#graphStore": { @@ -277,6 +481,12 @@ "spec": "SPARQL 1.2 Update", "text": "The Graph Store", "url": "https://w3c.github.io/sparql-update/spec/#graphStore" + }, + "snapshot": { + "number": "3", + "spec": "SPARQL 1.2 Update", + "text": "The Graph Store", + "url": "https://www.w3.org/TR/sparql12-update/#graphStore" } }, "#graphStoreQueryServices": { @@ -285,6 +495,12 @@ "spec": "SPARQL 1.2 Update", "text": "Graph Store and SPARQL Query Services", "url": "https://w3c.github.io/sparql-update/spec/#graphStoreQueryServices" + }, + "snapshot": { + "number": "3.1", + "spec": "SPARQL 1.2 Update", + "text": "Graph Store and SPARQL Query Services", + "url": "https://www.w3.org/TR/sparql12-update/#graphStoreQueryServices" } }, "#graphUpdate": { @@ -293,30 +509,54 @@ "spec": "SPARQL 1.2 Update", "text": "Graph Update", "url": "https://w3c.github.io/sparql-update/spec/#graphUpdate" + }, + "snapshot": { + "number": "4.1", + "spec": "SPARQL 1.2 Update", + "text": "Graph Update", + "url": "https://www.w3.org/TR/sparql12-update/#graphUpdate" } }, "#index": { "current": { - "number": "B", + "number": "E", "spec": "SPARQL 1.2 Update", "text": "Index", "url": "https://w3c.github.io/sparql-update/spec/#index" + }, + "snapshot": { + "number": "E", + "spec": "SPARQL 1.2 Update", + "text": "Index", + "url": "https://www.w3.org/TR/sparql12-update/#index" } }, "#index-defined-elsewhere": { "current": { - "number": "B.2", + "number": "E.2", "spec": "SPARQL 1.2 Update", "text": "Terms defined by reference", "url": "https://w3c.github.io/sparql-update/spec/#index-defined-elsewhere" + }, + "snapshot": { + "number": "E.2", + "spec": "SPARQL 1.2 Update", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/sparql12-update/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { - "number": "B.1", + "number": "E.1", "spec": "SPARQL 1.2 Update", "text": "Terms defined by this specification", "url": "https://w3c.github.io/sparql-update/spec/#index-defined-here" + }, + "snapshot": { + "number": "E.1", + "spec": "SPARQL 1.2 Update", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/sparql12-update/#index-defined-here" } }, "#insert": { @@ -325,6 +565,12 @@ "spec": "SPARQL 1.2 Update", "text": "INSERT (Informative)", "url": "https://w3c.github.io/sparql-update/spec/#insert" + }, + "snapshot": { + "number": "4.1.3.2", + "spec": "SPARQL 1.2 Update", + "text": "INSERT (Informative)", + "url": "https://www.w3.org/TR/sparql12-update/#insert" } }, "#insertData": { @@ -333,14 +579,26 @@ "spec": "SPARQL 1.2 Update", "text": "INSERT DATA", "url": "https://w3c.github.io/sparql-update/spec/#insertData" + }, + "snapshot": { + "number": "4.1.1", + "spec": "SPARQL 1.2 Update", + "text": "INSERT DATA", + "url": "https://www.w3.org/TR/sparql12-update/#insertData" } }, "#internationalization": { "current": { - "number": "", + "number": "D", "spec": "SPARQL 1.2 Update", - "text": "13. Internationalization Considerations", + "text": "Internationalization Considerations", "url": "https://w3c.github.io/sparql-update/spec/#internationalization" + }, + "snapshot": { + "number": "D", + "spec": "SPARQL 1.2 Update", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/sparql12-update/#internationalization" } }, "#languageForm": { @@ -349,6 +607,12 @@ "spec": "SPARQL 1.2 Update", "text": "Language Form", "url": "https://w3c.github.io/sparql-update/spec/#languageForm" + }, + "snapshot": { + "number": "2.1.1", + "spec": "SPARQL 1.2 Update", + "text": "Language Form", + "url": "https://www.w3.org/TR/sparql12-update/#languageForm" } }, "#load": { @@ -357,6 +621,12 @@ "spec": "SPARQL 1.2 Update", "text": "LOAD", "url": "https://w3c.github.io/sparql-update/spec/#load" + }, + "snapshot": { + "number": "4.1.4", + "spec": "SPARQL 1.2 Update", + "text": "LOAD", + "url": "https://www.w3.org/TR/sparql12-update/#load" } }, "#mappingRequestsToOperations": { @@ -365,6 +635,12 @@ "spec": "SPARQL 1.2 Update", "text": "Mapping Update Requests to the Formal Model", "url": "https://w3c.github.io/sparql-update/spec/#mappingRequestsToOperations" + }, + "snapshot": { + "number": "5.5", + "spec": "SPARQL 1.2 Update", + "text": "Mapping Update Requests to the Formal Model", + "url": "https://www.w3.org/TR/sparql12-update/#mappingRequestsToOperations" } }, "#mediaType": { @@ -373,6 +649,12 @@ "spec": "SPARQL 1.2 Update", "text": "Internet Media Type, File Extension and Macintosh File Type", "url": "https://w3c.github.io/sparql-update/spec/#mediaType" + }, + "snapshot": { + "number": "8", + "spec": "SPARQL 1.2 Update", + "text": "Internet Media Type, File Extension and Macintosh File Type", + "url": "https://www.w3.org/TR/sparql12-update/#mediaType" } }, "#move": { @@ -381,38 +663,54 @@ "spec": "SPARQL 1.2 Update", "text": "MOVE", "url": "https://w3c.github.io/sparql-update/spec/#move" + }, + "snapshot": { + "number": "4.2.4", + "spec": "SPARQL 1.2 Update", + "text": "MOVE", + "url": "https://www.w3.org/TR/sparql12-update/#move" } }, "#normative-references": { "current": { - "number": "C.1", + "number": "F.1", "spec": "SPARQL 1.2 Update", "text": "Normative references", "url": "https://w3c.github.io/sparql-update/spec/#normative-references" - } - }, - "#null": { - "current": { - "number": "10.2", + }, + "snapshot": { + "number": "F.1", "spec": "SPARQL 1.2 Update", - "text": "Other References", - "url": "https://w3c.github.io/sparql-update/spec/#null" + "text": "Normative references", + "url": "https://www.w3.org/TR/sparql12-update/#normative-references" } }, "#privacy": { "current": { - "number": "", + "number": "B", "spec": "SPARQL 1.2 Update", - "text": "11. Privacy Considerations", + "text": "Privacy Considerations", "url": "https://w3c.github.io/sparql-update/spec/#privacy" + }, + "snapshot": { + "number": "B", + "spec": "SPARQL 1.2 Update", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/sparql12-update/#privacy" } }, "#references": { "current": { - "number": "C", + "number": "F", "spec": "SPARQL 1.2 Update", "text": "References", "url": "https://w3c.github.io/sparql-update/spec/#references" + }, + "snapshot": { + "number": "F", + "spec": "SPARQL 1.2 Update", + "text": "References", + "url": "https://www.w3.org/TR/sparql12-update/#references" } }, "#related": { @@ -421,22 +719,12 @@ "spec": "SPARQL 1.2 Update", "text": "Set of Documents", "url": "https://w3c.github.io/sparql-update/spec/#related" - } - }, - "#sec-bibliography": { - "current": { - "number": "", - "spec": "SPARQL 1.2 Update", - "text": "10. References", - "url": "https://w3c.github.io/sparql-update/spec/#sec-bibliography" - } - }, - "#sec-existing-stds": { - "current": { - "number": "10.1", + }, + "snapshot": { + "number": "1", "spec": "SPARQL 1.2 Update", - "text": "Normative References", - "url": "https://w3c.github.io/sparql-update/spec/#sec-existing-stds" + "text": "Set of Documents", + "url": "https://www.w3.org/TR/sparql12-update/#related" } }, "#sec-intro": { @@ -445,30 +733,40 @@ "spec": "SPARQL 1.2 Update", "text": "Introduction", "url": "https://w3c.github.io/sparql-update/spec/#sec-intro" + }, + "snapshot": { + "number": "2", + "spec": "SPARQL 1.2 Update", + "text": "Introduction", + "url": "https://www.w3.org/TR/sparql12-update/#sec-intro" } }, "#security": { "current": { - "number": "", + "number": "C", "spec": "SPARQL 1.2 Update", - "text": "12. Security Considerations", + "text": "Security Considerations", "url": "https://w3c.github.io/sparql-update/spec/#security" + }, + "snapshot": { + "number": "C", + "spec": "SPARQL 1.2 Update", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-update/#security" } }, "#security-original": { "current": { "number": "7", "spec": "SPARQL 1.2 Update", - "text": "Security Considerations (Informative)", + "text": "Security Considerations", "url": "https://w3c.github.io/sparql-update/spec/#security-original" - } - }, - "#sparql12-documents": { - "current": { - "number": "", + }, + "snapshot": { + "number": "7", "spec": "SPARQL 1.2 Update", - "text": "SPARQL 1.2 Documents", - "url": "https://w3c.github.io/sparql-update/spec/#sparql12-documents" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/sparql12-update/#security-original" } }, "#terminology": { @@ -477,6 +775,12 @@ "spec": "SPARQL 1.2 Update", "text": "Terminology", "url": "https://w3c.github.io/sparql-update/spec/#terminology" + }, + "snapshot": { + "number": "2.1.2", + "spec": "SPARQL 1.2 Update", + "text": "Terminology", + "url": "https://www.w3.org/TR/sparql12-update/#terminology" } }, "#title": { @@ -485,6 +789,12 @@ "spec": "SPARQL 1.2 Update", "text": "SPARQL 1.2 Update", "url": "https://w3c.github.io/sparql-update/spec/#title" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Update", + "text": "SPARQL 1.2 Update", + "url": "https://www.w3.org/TR/sparql12-update/#title" } }, "#toc": { @@ -493,22 +803,40 @@ "spec": "SPARQL 1.2 Update", "text": "Table of Contents", "url": "https://w3c.github.io/sparql-update/spec/#toc" + }, + "snapshot": { + "number": "", + "spec": "SPARQL 1.2 Update", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/sparql12-update/#toc" } }, "#updateLanguage": { "current": { "number": "4", "spec": "SPARQL 1.2 Update", - "text": "SPARQL 1.1 Update Language", + "text": "SPARQL 1.2 Update Language", "url": "https://w3c.github.io/sparql-update/spec/#updateLanguage" + }, + "snapshot": { + "number": "4", + "spec": "SPARQL 1.2 Update", + "text": "SPARQL 1.2 Update Language", + "url": "https://www.w3.org/TR/sparql12-update/#updateLanguage" } }, "#updateServices": { "current": { "number": "3.2", "spec": "SPARQL 1.2 Update", - "text": "SPARQL 1.1 Update Services", + "text": "SPARQL 1.2 Update Services", "url": "https://w3c.github.io/sparql-update/spec/#updateServices" + }, + "snapshot": { + "number": "3.2", + "spec": "SPARQL 1.2 Update", + "text": "SPARQL 1.2 Update Services", + "url": "https://www.w3.org/TR/sparql12-update/#updateServices" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-speculation-rules.json b/bikeshed/spec-data/readonly/headings/headings-speculation-rules.json index 6ce6300c45..d74a38d01c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-speculation-rules.json +++ b/bikeshed/spec-data/readonly/headings/headings-speculation-rules.json @@ -7,6 +7,70 @@ "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#abstract" } }, + "#content-security-policy": { + "current": { + "number": "2", + "spec": "Speculation Rules", + "text": "Content Security Policy", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy" + } + }, + "#content-security-policy-patches-allow-all-inline": { + "current": { + "number": "2.5", + "spec": "Speculation Rules", + "text": "Does a source list allow all inline behavior for type?", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-allow-all-inline" + } + }, + "#content-security-policy-patches-directives": { + "current": { + "number": "2.1", + "spec": "Speculation Rules", + "text": "Directives", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-directives" + } + }, + "#content-security-policy-patches-effective-directive": { + "current": { + "number": "2.7", + "spec": "Speculation Rules", + "text": "Get the effective directive for request", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-effective-directive" + } + }, + "#content-security-policy-patches-match-element-to-source-list": { + "current": { + "number": "2.6", + "spec": "Speculation Rules", + "text": "Does element match source list for type and source?", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-match-element-to-source-list" + } + }, + "#content-security-policy-patches-script-src": { + "current": { + "number": "2.4", + "spec": "Speculation Rules", + "text": "script-src", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-script-src" + } + }, + "#content-security-policy-patches-should-block-inline": { + "current": { + "number": "2.3", + "spec": "Speculation Rules", + "text": "Should element’s inline type behavior be blocked by Content Security Policy?", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-should-block-inline" + } + }, + "#content-security-policy-patches-source-lists": { + "current": { + "number": "2.2", + "spec": "Speculation Rules", + "text": "Source Lists", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#content-security-policy-patches-source-lists" + } + }, "#document-rule-predicate-matching": { "current": { "number": "1.8", @@ -23,6 +87,22 @@ "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#external-speculation-rule-sets" } }, + "#fetch": { + "current": { + "number": "3", + "spec": "Speculation Rules", + "text": "Fetch", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#fetch" + } + }, + "#fetch-destination": { + "current": { + "number": "3.1", + "spec": "Speculation Rules", + "text": "Destination", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#fetch-destination" + } + }, "#index": { "current": { "number": "", @@ -63,6 +143,14 @@ "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#issues-index" } }, + "#mixed-content": { + "current": { + "number": "4.5", + "spec": "Speculation Rules", + "text": "Mixed content", + "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#mixed-content" + } + }, "#normative": { "current": { "number": "", @@ -73,7 +161,7 @@ }, "#privacy-considerations": { "current": { - "number": "3", + "number": "5", "spec": "Speculation Rules", "text": "Privacy considerations", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#privacy-considerations" @@ -81,7 +169,7 @@ }, "#privacy-heuristics": { "current": { - "number": "3.1", + "number": "5.1", "spec": "Speculation Rules", "text": "Heuristics", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#privacy-heuristics" @@ -89,7 +177,7 @@ }, "#privacy-identity-joining": { "current": { - "number": "3.4", + "number": "5.4", "spec": "Speculation Rules", "text": "Identity joining", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#privacy-identity-joining" @@ -97,7 +185,7 @@ }, "#privacy-intent": { "current": { - "number": "3.2", + "number": "5.2", "spec": "Speculation Rules", "text": "Intent", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#privacy-intent" @@ -105,7 +193,7 @@ }, "#privacy-partitioning": { "current": { - "number": "3.3", + "number": "5.3", "spec": "Speculation Rules", "text": "Partitioning", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#privacy-partitioning" @@ -113,7 +201,7 @@ }, "#privacy-visited-links": { "current": { - "number": "3.5", + "number": "5.5", "spec": "Speculation Rules", "text": "Visited links", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#privacy-visited-links" @@ -129,7 +217,7 @@ }, "#security-considerations": { "current": { - "number": "2", + "number": "4", "spec": "Speculation Rules", "text": "Security considerations", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#security-considerations" @@ -137,7 +225,7 @@ }, "#security-csrf": { "current": { - "number": "2.1", + "number": "4.1", "spec": "Speculation Rules", "text": "Cross-site request forgery", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#security-csrf" @@ -145,7 +233,7 @@ }, "#security-ip-anonymization": { "current": { - "number": "2.4", + "number": "4.4", "spec": "Speculation Rules", "text": "IP anonymization", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#security-ip-anonymization" @@ -153,7 +241,7 @@ }, "#security-xss": { "current": { - "number": "2.2", + "number": "4.2", "spec": "Speculation Rules", "text": "Cross-site scripting", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#security-xss" @@ -241,7 +329,7 @@ }, "#type-confusion": { "current": { - "number": "2.3", + "number": "4.3", "spec": "Speculation Rules", "text": "Type confusion", "url": "https://wicg.github.io/nav-speculation/speculation-rules.html#type-confusion" diff --git a/bikeshed/spec-data/readonly/headings/headings-storage-access.json b/bikeshed/spec-data/readonly/headings/headings-storage-access.json index 45ced90f9f..198bd784ac 100644 --- a/bikeshed/spec-data/readonly/headings/headings-storage-access.json +++ b/bikeshed/spec-data/readonly/headings/headings-storage-access.json @@ -211,7 +211,7 @@ "current": { "number": "", "spec": "The Storage Access API", - "text": "Draft Community Group Report, 14 February 2023", + "text": "Draft Community Group Report, 19 February 2024", "url": "https://privacycg.github.io/storage-access/#subtitle" } }, @@ -263,14 +263,6 @@ "url": "https://privacycg.github.io/storage-access/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "The Storage Access API", - "text": "Conformant Algorithms", - "url": "https://privacycg.github.io/storage-access/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-storage-buckets.json b/bikeshed/spec-data/readonly/headings/headings-storage-buckets.json new file mode 100644 index 0000000000..66c5c3914d --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-storage-buckets.json @@ -0,0 +1,218 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Abstract", + "url": "https://wicg.github.io/storage-buckets/#abstract" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "IDL Index", + "url": "https://wicg.github.io/storage-buckets/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Index", + "url": "https://wicg.github.io/storage-buckets/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/storage-buckets/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/storage-buckets/#index-defined-here" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Issues Index", + "url": "https://wicg.github.io/storage-buckets/#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Normative References", + "url": "https://wicg.github.io/storage-buckets/#normative" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "References", + "url": "https://wicg.github.io/storage-buckets/#references" + } + }, + "#security-privacy": { + "current": { + "number": "3", + "spec": "Storage Buckets API", + "text": "Security and privacy considerations", + "url": "https://wicg.github.io/storage-buckets/#security-privacy" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Status of this document", + "url": "https://wicg.github.io/storage-buckets/#status" + } + }, + "#storage-bucket": { + "current": { + "number": "2", + "spec": "Storage Buckets API", + "text": "The StorageBucket interface", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket" + } + }, + "#storage-bucket-caches": { + "current": { + "number": "2.4.2", + "spec": "Storage Buckets API", + "text": "Using CacheStorage", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-caches" + } + }, + "#storage-bucket-clear-site-data": { + "current": { + "number": "2.5", + "spec": "Storage Buckets API", + "text": "Clear Site Data integration", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-clear-site-data" + } + }, + "#storage-bucket-delete": { + "current": { + "number": "1.2", + "spec": "Storage Buckets API", + "text": "Deleting a bucket", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-delete" + } + }, + "#storage-bucket-endpoints": { + "current": { + "number": "2.4", + "spec": "Storage Buckets API", + "text": "Using storage endpoints", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-endpoints" + } + }, + "#storage-bucket-expiration": { + "current": { + "number": "2.3", + "spec": "Storage Buckets API", + "text": "Expiration", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-expiration" + } + }, + "#storage-bucket-getdirectory": { + "current": { + "number": "2.4.3", + "spec": "Storage Buckets API", + "text": "Using a Bucket File System", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-getdirectory" + } + }, + "#storage-bucket-indexeddb": { + "current": { + "number": "2.4.1", + "spec": "Storage Buckets API", + "text": "Using Indexed Database", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-indexeddb" + } + }, + "#storage-bucket-keys": { + "current": { + "number": "1.3", + "spec": "Storage Buckets API", + "text": "Enumerating buckets", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-keys" + } + }, + "#storage-bucket-manager": { + "current": { + "number": "1", + "spec": "Storage Buckets API", + "text": "The StorageBucketManager interface", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-manager" + } + }, + "#storage-bucket-open": { + "current": { + "number": "1.1", + "spec": "Storage Buckets API", + "text": "Creating a bucket", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-open" + } + }, + "#storage-bucket-persistence": { + "current": { + "number": "2.1", + "spec": "Storage Buckets API", + "text": "Persistence", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-persistence" + } + }, + "#storage-bucket-quota": { + "current": { + "number": "2.2", + "spec": "Storage Buckets API", + "text": "Quota", + "url": "https://wicg.github.io/storage-buckets/#storage-bucket-quota" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Storage Buckets API", + "url": "https://wicg.github.io/storage-buckets/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Table of Contents", + "url": "https://wicg.github.io/storage-buckets/#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Conformance", + "url": "https://wicg.github.io/storage-buckets/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Storage Buckets API", + "text": "Document conventions", + "url": "https://wicg.github.io/storage-buckets/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-svg-animations.json b/bikeshed/spec-data/readonly/headings/headings-svg-animations.json index 2847af3fa4..2f843184bc 100644 --- a/bikeshed/spec-data/readonly/headings/headings-svg-animations.json +++ b/bikeshed/spec-data/readonly/headings/headings-svg-animations.json @@ -323,7 +323,7 @@ "current": { "number": "", "spec": "SVG Animations 2", - "text": "W3C Editor’s Draft 10 January 2023", + "text": "W3C Editor’s Draft 08 March 2023", "url": "https://svgwg.org/specs/animations/#pagesubtitle" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-svg-integration.json b/bikeshed/spec-data/readonly/headings/headings-svg-integration.json index a7457b4392..6496ae046f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-svg-integration.json +++ b/bikeshed/spec-data/readonly/headings/headings-svg-integration.json @@ -165,7 +165,7 @@ "current": { "number": "", "spec": "SVG Integration", - "text": "W3C Editor’s Draft 10 January 2023", + "text": "W3C Editor’s Draft 08 March 2023", "url": "https://svgwg.org/specs/integration/#pagesubtitle" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-svg-strokes.json b/bikeshed/spec-data/readonly/headings/headings-svg-strokes.json index 2234973ae2..21118bfd93 100644 --- a/bikeshed/spec-data/readonly/headings/headings-svg-strokes.json +++ b/bikeshed/spec-data/readonly/headings/headings-svg-strokes.json @@ -199,7 +199,7 @@ "current": { "number": "", "spec": "SVG Strokes", - "text": "W3C Editor’s Draft 10 January 2023", + "text": "W3C Editor’s Draft 08 March 2023", "url": "https://svgwg.org/specs/strokes/#pagesubtitle" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-svg11.json b/bikeshed/spec-data/readonly/headings/headings-svg11.json index 79f4ef81f2..39111a6ce7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-svg11.json +++ b/bikeshed/spec-data/readonly/headings/headings-svg11.json @@ -5815,15 +5815,15 @@ }, "/mimereg#mimereg": { "current": { - "number": "", + "number": "P", "spec": "SVG", - "text": "Appendix P: Media Type Registration for image/svg+xml", + "text": "Media Type Registration for image/svg+xml", "url": "https://www.w3.org/TR/SVG11/mimereg.html#mimereg" }, "snapshot": { - "number": "", + "number": "P", "spec": "SVG", - "text": "Appendix P: Media Type Registration for image/svg+xml", + "text": "Media Type Registration for image/svg+xml", "url": "https://www.w3.org/TR/SVG11/mimereg.html#mimereg" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-svg2.json b/bikeshed/spec-data/readonly/headings/headings-svg2.json index 87ff39007d..b41837efc6 100644 --- a/bikeshed/spec-data/readonly/headings/headings-svg2.json +++ b/bikeshed/spec-data/readonly/headings/headings-svg2.json @@ -1244,7 +1244,7 @@ "current": { "number": "", "spec": "SVG 2", - "text": "W3C Editor’s Draft 10 January 2023", + "text": "W3C Editor’s Draft 08 March 2023", "url": "https://svgwg.org/svg2-draft/#pagesubtitle" }, "snapshot": { @@ -1258,7 +1258,7 @@ "current": { "number": "", "spec": "SVG 2", - "text": "No TestsScalable Vector Graphics (SVG) 2", + "text": "Scalable Vector Graphics (SVG) 2", "url": "https://svgwg.org/svg2-draft/#pagetitle" }, "snapshot": { @@ -3789,15 +3789,15 @@ }, "/mimereg#mimereg": { "current": { - "number": "", + "number": "J", "spec": "SVG 2", - "text": "Appendix J: Media Type Registration for image/svg+xml", + "text": "Media Type Registration for image/svg+xml", "url": "https://svgwg.org/svg2-draft/mimereg.html#mimereg" }, "snapshot": { - "number": "", + "number": "J", "spec": "SVG 2", - "text": "Appendix J: Media Type Registration for image/svg+xml", + "text": "Media Type Registration for image/svg+xml", "url": "https://www.w3.org/TR/SVG2/mimereg.html#mimereg" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-array-find-from-last.json b/bikeshed/spec-data/readonly/headings/headings-tc39-array-find-from-last.json deleted file mode 100644 index 9786ae90eb..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-array-find-from-last.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "#sec-%typedarray%.prototype.findlast": { - "current": { - "number": "4", - "spec": "Proposal-array-find-from-last", - "text": "%TypedArray%.prototype.findLast ( predicate [ , thisArg ] )", - "url": "https://tc39.es/proposal-array-find-from-last/#sec-%typedarray%.prototype.findlast" - } - }, - "#sec-%typedarray%.prototype.findlastindex": { - "current": { - "number": "5", - "spec": "Proposal-array-find-from-last", - "text": "%TypedArray%.prototype.findLastIndex ( predicate [ , thisArg ] )", - "url": "https://tc39.es/proposal-array-find-from-last/#sec-%typedarray%.prototype.findlastindex" - } - }, - "#sec-array.prototype-@@unscopables": { - "current": { - "number": "3", - "spec": "Proposal-array-find-from-last", - "text": "Array.prototype [ @@unscopables ]", - "url": "https://tc39.es/proposal-array-find-from-last/#sec-array.prototype-@@unscopables" - } - }, - "#sec-array.prototype.findlast": { - "current": { - "number": "1", - "spec": "Proposal-array-find-from-last", - "text": "Array.prototype.findLast ( predicate [ , thisArg ] )", - "url": "https://tc39.es/proposal-array-find-from-last/#sec-array.prototype.findlast" - } - }, - "#sec-array.prototype.findlastindex": { - "current": { - "number": "2", - "spec": "Proposal-array-find-from-last", - "text": "Array.prototype.findLastIndex ( predicate [ , thisArg ] )", - "url": "https://tc39.es/proposal-array-find-from-last/#sec-array.prototype.findlastindex" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-array-from-async.json b/bikeshed/spec-data/readonly/headings/headings-tc39-array-from-async.json index b4ef04731c..016aaea5ee 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-array-from-async.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-array-from-async.json @@ -15,30 +15,6 @@ "url": "https://tc39.es/proposal-array-from-async/#sec-array.fromAsync" } }, - "#sec-async-function-objects": { - "current": { - "number": "1.2", - "spec": "2022", - "text": "AsyncFunction Objects", - "url": "https://tc39.es/proposal-array-from-async/#sec-async-function-objects" - } - }, - "#sec-async-functions-abstract-operations": { - "current": { - "number": "1.2.1", - "spec": "2022", - "text": "Async Functions Abstract Operations", - "url": "https://tc39.es/proposal-array-from-async/#sec-async-functions-abstract-operations" - } - }, - "#sec-asyncblockstart": { - "current": { - "number": "1.2.1.1", - "spec": "2022", - "text": "AsyncBlockStart ( promiseCapability, asyncBody, asyncContext )", - "url": "https://tc39.es/proposal-array-from-async/#sec-asyncblockstart" - } - }, "#sec-control-abstraction-objects": { "current": { "number": "1", diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-array-grouping.json b/bikeshed/spec-data/readonly/headings/headings-tc39-array-grouping.json index 2a50402def..373ee9aa4a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-array-grouping.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-array-grouping.json @@ -1,42 +1,58 @@ { "#sec-add-value-to-keyed-group": { "current": { - "number": "2.3", + "number": "4.2", "spec": "Array Grouping", "text": "AddValueToKeyedGroup ( groups, key, value )", "url": "https://tc39.es/proposal-array-grouping/#sec-add-value-to-keyed-group" } }, - "#sec-array.prototype-@@unscopables": { + "#sec-group-by": { "current": { - "number": "2.4", + "number": "4.1", "spec": "Array Grouping", - "text": "Array.prototype [ @@unscopables ]", - "url": "https://tc39.es/proposal-array-grouping/#sec-array.prototype-@@unscopables" + "text": "GroupBy ( items, callbackfn, keyCoercion )", + "url": "https://tc39.es/proposal-array-grouping/#sec-group-by" } }, - "#sec-array.prototype.group": { + "#sec-group-by-helpers": { + "current": { + "number": "4", + "spec": "Array Grouping", + "text": "Group By Helpers", + "url": "https://tc39.es/proposal-array-grouping/#sec-group-by-helpers" + } + }, + "#sec-map.groupby": { + "current": { + "number": "3.1", + "spec": "Array Grouping", + "text": "Map.groupBy ( items, callbackfn )", + "url": "https://tc39.es/proposal-array-grouping/#sec-map.groupby" + } + }, + "#sec-object.groupby": { "current": { "number": "2.1", "spec": "Array Grouping", - "text": "Array.prototype.group ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/proposal-array-grouping/#sec-array.prototype.group" + "text": "Object.groupBy ( items, callbackfn )", + "url": "https://tc39.es/proposal-array-grouping/#sec-object.groupby" } }, - "#sec-array.prototype.grouptomap": { + "#sec-properties-of-the-map-constructor": { "current": { - "number": "2.2", + "number": "3", "spec": "Array Grouping", - "text": "Array.prototype.groupToMap ( callbackfn [ , thisArg ] )", - "url": "https://tc39.es/proposal-array-grouping/#sec-array.prototype.grouptomap" + "text": "Properties of the Map Constructor (24.1.2)", + "url": "https://tc39.es/proposal-array-grouping/#sec-properties-of-the-map-constructor" } }, - "#sec-properties-of-the-array-prototype-object": { + "#sec-properties-of-the-object-constructor": { "current": { "number": "2", "spec": "Array Grouping", - "text": "Properties of the Array Prototype Object (22.1.3)", - "url": "https://tc39.es/proposal-array-grouping/#sec-properties-of-the-array-prototype-object" + "text": "Properties of the Object Constructor (20.1.2)", + "url": "https://tc39.es/proposal-array-grouping/#sec-properties-of-the-object-constructor" } }, "#sec-scope": { diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-arraybuffer-base64.json b/bikeshed/spec-data/readonly/headings/headings-tc39-arraybuffer-base64.json new file mode 100644 index 0000000000..a8bbeb3c96 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-arraybuffer-base64.json @@ -0,0 +1,122 @@ +{ + "#sec-decodebase64chunk": { + "current": { + "number": "10.2", + "spec": "Uint8Array to/from base64", + "text": "DecodeBase64Chunk ( chunk [ , throwOnExtraBits ] )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-decodebase64chunk" + } + }, + "#sec-frombase64": { + "current": { + "number": "10.3", + "spec": "Uint8Array to/from base64", + "text": "FromBase64 ( string, alphabet, lastChunkHandling [ , maxLength ] )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64" + } + }, + "#sec-fromhex": { + "current": { + "number": "10.4", + "spec": "Uint8Array to/from base64", + "text": "FromHex ( string [ , maxLength ] )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-fromhex" + } + }, + "#sec-getoptionsobject": { + "current": { + "number": "10.5", + "spec": "Uint8Array to/from base64", + "text": "GetOptionsObject ( options )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-getoptionsobject" + } + }, + "#sec-getuint8arraybytes": { + "current": { + "number": "8", + "spec": "Uint8Array to/from base64", + "text": "GetUint8ArrayBytes ( ta )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-getuint8arraybytes" + } + }, + "#sec-helpers": { + "current": { + "number": "10", + "spec": "Uint8Array to/from base64", + "text": "Helpers", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-helpers" + } + }, + "#sec-skipasciiwhitespace": { + "current": { + "number": "10.1", + "spec": "Uint8Array to/from base64", + "text": "SkipAsciiWhitespace ( string, index )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-skipasciiwhitespace" + } + }, + "#sec-uint8array.frombase64": { + "current": { + "number": "3", + "spec": "Uint8Array to/from base64", + "text": "Uint8Array.fromBase64 ( string [ , options ] )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.frombase64" + } + }, + "#sec-uint8array.fromhex": { + "current": { + "number": "5", + "spec": "Uint8Array to/from base64", + "text": "Uint8Array.fromHex ( string )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.fromhex" + } + }, + "#sec-uint8array.prototype.setfrombase64": { + "current": { + "number": "4", + "spec": "Uint8Array to/from base64", + "text": "Uint8Array.prototype.setFromBase64 ( string [ , options ] )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.prototype.setfrombase64" + } + }, + "#sec-uint8array.prototype.setfromhex": { + "current": { + "number": "6", + "spec": "Uint8Array to/from base64", + "text": "Uint8Array.prototype.setFromHex ( string )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.prototype.setfromhex" + } + }, + "#sec-uint8array.prototype.tobase64": { + "current": { + "number": "1", + "spec": "Uint8Array to/from base64", + "text": "Uint8Array.prototype.toBase64 ( [ options ] )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.prototype.tobase64" + } + }, + "#sec-uint8array.prototype.tohex": { + "current": { + "number": "2", + "spec": "Uint8Array to/from base64", + "text": "Uint8Array.prototype.toHex ( )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.prototype.tohex" + } + }, + "#sec-validateuint8array": { + "current": { + "number": "7", + "spec": "Uint8Array to/from base64", + "text": "ValidateUint8Array ( ta )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-validateuint8array" + } + }, + "#sec-writeuint8arraybytes": { + "current": { + "number": "9", + "spec": "Uint8Array to/from base64", + "text": "SetUint8ArrayBytes ( into, bytes )", + "url": "https://tc39.es/proposal-arraybuffer-base64/spec/#sec-writeuint8arraybytes" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-async-explicit-resource-management.json b/bikeshed/spec-data/readonly/headings/headings-tc39-async-explicit-resource-management.json new file mode 100644 index 0000000000..2b47bf173c --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-async-explicit-resource-management.json @@ -0,0 +1,1258 @@ +{ + "#sec-%25asynciteratorprototype%25-%40%40asyncdispose": { + "current": { + "number": "12.1.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "%AsyncIteratorPrototype% [ @@asyncDispose ] ( )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-%25asynciteratorprototype%25-%40%40asyncdispose" + } + }, + "#sec-%25asynciteratorprototype%25-object": { + "current": { + "number": "12.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The %AsyncIteratorPrototype% Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-%25asynciteratorprototype%25-object" + } + }, + "#sec-%25iteratorprototype%25-%40%40dispose": { + "current": { + "number": "12.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "%IteratorPrototype% [ @@dispose ] ( )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-%25iteratorprototype%25-%40%40dispose" + } + }, + "#sec-%25iteratorprototype%25-object": { + "current": { + "number": "12.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The %IteratorPrototype% Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-%25iteratorprototype%25-object" + } + }, + "#sec-abstract-operations": { + "current": { + "number": "2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Abstract Operations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-abstract-operations" + } + }, + "#sec-adddisposableresource-disposable-v-hint-disposemethod": { + "current": { + "number": "2.2.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AddDisposableResource ( disposeCapability, V, hint [ , method ] )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-adddisposableresource-disposable-v-hint-disposemethod" + } + }, + "#sec-aggregate-error-objects": { + "current": { + "number": "11.1.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AggregateError Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-aggregate-error-objects" + } + }, + "#sec-async-function-definitions": { + "current": { + "number": "8.5", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Async Function Definitions", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-async-function-definitions" + } + }, + "#sec-async-function-definitions-runtime-semantics-evaluation": { + "current": { + "number": "8.5.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-async-function-definitions-runtime-semantics-evaluation" + } + }, + "#sec-async-function-definitions-static-semantics-early-errors": { + "current": { + "number": "8.5.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: Early Errors", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-async-function-definitions-static-semantics-early-errors" + } + }, + "#sec-async-function-objects": { + "current": { + "number": "12.7", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncFunction Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-async-function-objects" + } + }, + "#sec-async-functions-abstract-operations": { + "current": { + "number": "12.7.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Async Functions Abstract Operations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-async-functions-abstract-operations" + } + }, + "#sec-async-generator-function-definitions": { + "current": { + "number": "8.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Async Generator Function Definitions", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-async-generator-function-definitions" + } + }, + "#sec-asyncblockstart": { + "current": { + "number": "12.7.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncBlockStart ( promiseCapability, asyncBody, asyncContext )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncblockstart" + } + }, + "#sec-asyncdisposable-interface": { + "current": { + "number": "12.2.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The AsyncDisposable Interface", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposable-interface" + } + }, + "#sec-asyncdisposablestack": { + "current": { + "number": "12.4.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack ( )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack" + } + }, + "#sec-asyncdisposablestack-constructor": { + "current": { + "number": "12.4.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The AsyncDisposableStack Constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack-constructor" + } + }, + "#sec-asyncdisposablestack-objects": { + "current": { + "number": "12.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack-objects" + } + }, + "#sec-asyncdisposablestack.prototype-%40%40asyncDispose": { + "current": { + "number": "12.4.3.7", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype [ @@asyncDispose ] ()", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype-%40%40asyncDispose" + } + }, + "#sec-asyncdisposablestack.prototype-%40%40toStringTag": { + "current": { + "number": "12.4.3.8", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype [ @@toStringTag ]", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype-%40%40toStringTag" + } + }, + "#sec-asyncdisposablestack.prototype.adopt": { + "current": { + "number": "12.4.3.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.adopt( value, onDisposeAsync )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype.adopt" + } + }, + "#sec-asyncdisposablestack.prototype.defer": { + "current": { + "number": "12.4.3.5", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.defer( onDisposeAsync )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype.defer" + } + }, + "#sec-asyncdisposablestack.prototype.disposeAsync": { + "current": { + "number": "12.4.3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.disposeAsync()", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype.disposeAsync" + } + }, + "#sec-asyncdisposablestack.prototype.move": { + "current": { + "number": "12.4.3.6", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.move()", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype.move" + } + }, + "#sec-asyncdisposablestack.prototype.use": { + "current": { + "number": "12.4.3.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.use( value )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncdisposablestack.prototype.use" + } + }, + "#sec-asyncgenerator-abstract-operations": { + "current": { + "number": "12.6.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncGenerator Abstract Operations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncgenerator-abstract-operations" + } + }, + "#sec-asyncgenerator-objects": { + "current": { + "number": "12.6", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncGenerator Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncgenerator-objects" + } + }, + "#sec-asyncgeneratorstart": { + "current": { + "number": "12.6.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "AsyncGeneratorStart ( generator, generatorBody )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-asyncgeneratorstart" + } + }, + "#sec-block": { + "current": { + "number": "7.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Block", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-block" + } + }, + "#sec-block-runtime-semantics-evaluation": { + "current": { + "number": "7.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-block-runtime-semantics-evaluation" + } + }, + "#sec-blockdeclarationinstantiation": { + "current": { + "number": "7.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "BlockDeclarationInstantiation ( code, env )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-blockdeclarationinstantiation" + } + }, + "#sec-class-definitions": { + "current": { + "number": "8.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Class Definitions", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-class-definitions" + } + }, + "#sec-common-resource-management-interfaces": { + "current": { + "number": "12.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Common Resource Management Interfaces", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-common-resource-management-interfaces" + } + }, + "#sec-control-abstraction-objects": { + "current": { + "number": "12", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Control Abstraction Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-control-abstraction-objects" + } + }, + "#sec-createdisposableresource": { + "current": { + "number": "2.2.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "CreateDisposableResource ( V, hint [ , method ] )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-createdisposableresource" + } + }, + "#sec-declarations-and-the-variable-statement": { + "current": { + "number": "7.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Declarations and the Variable Statement", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-declarations-and-the-variable-statement" + } + }, + "#sec-declarative-environment-records": { + "current": { + "number": "4.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Declarative Environment Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-declarative-environment-records" + } + }, + "#sec-declarative-environment-records-initializebinding-n-v": { + "current": { + "number": "4.1.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "InitializeBinding ( N, V, hint )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-declarative-environment-records-initializebinding-n-v" + } + }, + "#sec-destructuring-binding-patterns": { + "current": { + "number": "7.2.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Destructuring Binding Patterns", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-destructuring-binding-patterns" + } + }, + "#sec-destructuring-binding-patterns-runtime-semantics-restbindinginitialization": { + "current": { + "number": "7.2.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: RestBindingInitialization", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-destructuring-binding-patterns-runtime-semantics-restbindinginitialization" + } + }, + "#sec-disposable-interface": { + "current": { + "number": "12.2.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The Disposable Interface", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposable-interface" + } + }, + "#sec-disposableresource-records": { + "current": { + "number": "2.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableResource Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposableresource-records" + } + }, + "#sec-disposablestack": { + "current": { + "number": "12.3.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack ( )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack" + } + }, + "#sec-disposablestack-constructor": { + "current": { + "number": "12.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The DisposableStack Constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack-constructor" + } + }, + "#sec-disposablestack-objects": { + "current": { + "number": "12.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack-objects" + } + }, + "#sec-disposablestack.prototype-%40%40dispose": { + "current": { + "number": "12.3.3.7", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype [ @@dispose ] ()", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype-%40%40dispose" + } + }, + "#sec-disposablestack.prototype-%40%40toStringTag": { + "current": { + "number": "12.3.3.8", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype [ @@toStringTag ]", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype-%40%40toStringTag" + } + }, + "#sec-disposablestack.prototype.adopt": { + "current": { + "number": "12.3.3.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype.adopt( value, onDispose )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype.adopt" + } + }, + "#sec-disposablestack.prototype.defer": { + "current": { + "number": "12.3.3.5", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype.defer( onDispose )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype.defer" + } + }, + "#sec-disposablestack.prototype.dispose": { + "current": { + "number": "12.3.3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype.dispose ()", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype.dispose" + } + }, + "#sec-disposablestack.prototype.move": { + "current": { + "number": "12.3.3.6", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype.move()", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype.move" + } + }, + "#sec-disposablestack.prototype.use": { + "current": { + "number": "12.3.3.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposableStack.prototype.use( value )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposablestack.prototype.use" + } + }, + "#sec-dispose": { + "current": { + "number": "2.2.6", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Dispose ( V, hint, method )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-dispose" + } + }, + "#sec-disposecapability-records": { + "current": { + "number": "2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposeCapability Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposecapability-records" + } + }, + "#sec-disposeresources-disposable-completion-errors": { + "current": { + "number": "2.2.7", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "DisposeResources ( disposeCapability, completion )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-disposeresources-disposable-completion-errors" + } + }, + "#sec-ecmascript-data-types-and-values": { + "current": { + "number": "1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Data Types and Values", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-data-types-and-values" + } + }, + "#sec-ecmascript-function-objects": { + "current": { + "number": "5.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Function Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-function-objects" + } + }, + "#sec-ecmascript-language-expressions": { + "current": { + "number": "6", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Language: Expressions", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-language-expressions" + } + }, + "#sec-ecmascript-language-functions-and-classes": { + "current": { + "number": "8", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Language: Functions and Classes", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-language-functions-and-classes" + } + }, + "#sec-ecmascript-language-scripts-and-modules": { + "current": { + "number": "9", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Language: Scripts and Modules", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-language-scripts-and-modules" + } + }, + "#sec-ecmascript-language-statements-and-declarations": { + "current": { + "number": "7", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Language: Statements and Declarations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-language-statements-and-declarations" + } + }, + "#sec-ecmascript-language-types": { + "current": { + "number": "1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Language Types", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-language-types" + } + }, + "#sec-ecmascript-language-types-symbol-type": { + "current": { + "number": "1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The Symbol Type", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-language-types-symbol-type" + } + }, + "#sec-ecmascript-specification-types": { + "current": { + "number": "1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ECMAScript Specification Types", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ecmascript-specification-types" + } + }, + "#sec-environment-records": { + "current": { + "number": "4.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Environment Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-environment-records" + } + }, + "#sec-error-objects": { + "current": { + "number": "11.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Error Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-error-objects" + } + }, + "#sec-eval-x": { + "current": { + "number": "10.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "eval ( x )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-eval-x" + } + }, + "#sec-evaldeclarationinstantiation": { + "current": { + "number": "10.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "EvalDeclarationInstantiation ( body, varEnv, lexEnv, privateEnv, strict )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-evaldeclarationinstantiation" + } + }, + "#sec-executable-code-and-execution-contexts": { + "current": { + "number": "4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Executable Code and Execution Contexts", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-executable-code-and-execution-contexts" + } + }, + "#sec-exports": { + "current": { + "number": "9.1.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Exports", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-exports" + } + }, + "#sec-for-in-and-for-of-statements": { + "current": { + "number": "7.3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The for-in, for-of, and for-await-of Statements", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-for-in-and-for-of-statements" + } + }, + "#sec-for-statement": { + "current": { + "number": "7.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The for Statement", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-for-statement" + } + }, + "#sec-function-definitions": { + "current": { + "number": "8.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Function Definitions", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-function-definitions" + } + }, + "#sec-function-properties-of-the-global-object": { + "current": { + "number": "10.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Function Properties of the Global Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-function-properties-of-the-global-object" + } + }, + "#sec-functiondeclarationinstantiation": { + "current": { + "number": "5.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "FunctionDeclarationInstantiation ( func, argumentsList )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-functiondeclarationinstantiation" + } + }, + "#sec-fundamental-objects": { + "current": { + "number": "11", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Fundamental Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-fundamental-objects" + } + }, + "#sec-generator-abstract-operations": { + "current": { + "number": "12.5.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Generator Abstract Operations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-generator-abstract-operations" + } + }, + "#sec-generator-function-definitions": { + "current": { + "number": "8.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Generator Function Definitions", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-generator-function-definitions" + } + }, + "#sec-generator-objects": { + "current": { + "number": "12.5", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Generator Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-generator-objects" + } + }, + "#sec-generatorstart": { + "current": { + "number": "12.5.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "GeneratorStart ( generator, generatorBody )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-generatorstart" + } + }, + "#sec-get-asyncdisposablestack.prototype.disposed": { + "current": { + "number": "12.4.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "get AsyncDisposableStack.prototype.disposed", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-get-asyncdisposablestack.prototype.disposed" + } + }, + "#sec-get-disposablestack.prototype.disposed": { + "current": { + "number": "12.3.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "get DisposableStack.prototype.disposed", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-get-disposablestack.prototype.disposed" + } + }, + "#sec-getdisposemethod": { + "current": { + "number": "2.2.5", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "GetDisposeMethod ( V, hint )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-getdisposemethod" + } + }, + "#sec-global-environment-records": { + "current": { + "number": "4.1.1.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Global Environment Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-global-environment-records" + } + }, + "#sec-global-environment-records-initializebinding-n-v": { + "current": { + "number": "4.1.1.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "InitializeBinding ( N, V, hint )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-global-environment-records-initializebinding-n-v" + } + }, + "#sec-global-object": { + "current": { + "number": "10", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The Global Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-global-object" + } + }, + "#sec-initializereferencedbinding": { + "current": { + "number": "1.2.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "InitializeReferencedBinding ( V, W, hint )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-initializereferencedbinding" + } + }, + "#sec-iteration": { + "current": { + "number": "12.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Iteration", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-iteration" + } + }, + "#sec-iteration-statements": { + "current": { + "number": "7.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Iteration Statements", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-iteration-statements" + } + }, + "#sec-let-and-const-declarations": { + "current": { + "number": "7.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Let and Const, Const, and Using Declarations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-let-and-const-declarations" + } + }, + "#sec-let-and-const-declarations-runtime-semantics-bindingevaluation": { + "current": { + "number": "7.2.1.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: BindingEvaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-let-and-const-declarations-runtime-semantics-bindingevaluation" + } + }, + "#sec-let-and-const-declarations-runtime-semantics-evaluation": { + "current": { + "number": "7.2.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-let-and-const-declarations-runtime-semantics-evaluation" + } + }, + "#sec-let-and-const-declarations-static-semantics-early-errors": { + "current": { + "number": "7.2.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: Early Errors", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-let-and-const-declarations-static-semantics-early-errors" + } + }, + "#sec-module-semantics": { + "current": { + "number": "9.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Module Semantics", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-module-semantics" + } + }, + "#sec-modules": { + "current": { + "number": "9.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Modules", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-modules" + } + }, + "#sec-nativeerror-object-structure": { + "current": { + "number": "11.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "NativeError Object Structure", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-nativeerror-object-structure" + } + }, + "#sec-newdisposecapability": { + "current": { + "number": "2.2.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "NewDisposeCapability ( )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-newdisposecapability" + } + }, + "#sec-object-environment-records": { + "current": { + "number": "4.1.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Object Environment Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-object-environment-records" + } + }, + "#sec-object-environment-records-initializebinding-n-v": { + "current": { + "number": "4.1.1.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "InitializeBinding ( N, V, hint )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-object-environment-records-initializebinding-n-v" + } + }, + "#sec-object-type": { + "current": { + "number": "1.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The Object Type", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-object-type" + } + }, + "#sec-operations-on-disposable-objects": { + "current": { + "number": "2.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Operations on Disposable Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-operations-on-disposable-objects" + } + }, + "#sec-ordinary-and-exotic-objects-behaviours": { + "current": { + "number": "5", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Ordinary and Exotic Objects Behaviours", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-ordinary-and-exotic-objects-behaviours" + } + }, + "#sec-properties-of-aggregate-error-instances": { + "current": { + "number": "11.1.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of AggregateError Instances", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-aggregate-error-instances" + } + }, + "#sec-properties-of-asyncdisposablestack-instances": { + "current": { + "number": "12.4.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of AsyncDisposableStack Instances", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-asyncdisposablestack-instances" + } + }, + "#sec-properties-of-disposablestack-instances": { + "current": { + "number": "12.3.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of DisposableStack Instances", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-disposablestack-instances" + } + }, + "#sec-properties-of-error-instances": { + "current": { + "number": "11.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of Error Instances", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-error-instances" + } + }, + "#sec-properties-of-nativeerror-instances": { + "current": { + "number": "11.1.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of NativeError Instances", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-nativeerror-instances" + } + }, + "#sec-properties-of-suppressederror-instances": { + "current": { + "number": "11.1.4.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of SuppressedError Instances", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-suppressederror-instances" + } + }, + "#sec-properties-of-the-asyncdisposablestack-constructor": { + "current": { + "number": "12.4.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of the AsyncDisposableStack Constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-the-asyncdisposablestack-constructor" + } + }, + "#sec-properties-of-the-asyncdisposablestack-prototype-object": { + "current": { + "number": "12.4.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of the AsyncDisposableStack Prototype Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-the-asyncdisposablestack-prototype-object" + } + }, + "#sec-properties-of-the-disposablestack-constructor": { + "current": { + "number": "12.3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of the DisposableStack Constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-the-disposablestack-constructor" + } + }, + "#sec-properties-of-the-disposablestack-prototype-object": { + "current": { + "number": "12.3.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of the DisposableStack Prototype Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-the-disposablestack-prototype-object" + } + }, + "#sec-properties-of-the-suppressederror-constructors": { + "current": { + "number": "11.1.4.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of the SuppressedError Constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-the-suppressederror-constructors" + } + }, + "#sec-properties-of-the-suppressederror-prototype-objects": { + "current": { + "number": "11.1.4.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Properties of the SuppressedError Prototype Object", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-properties-of-the-suppressederror-prototype-objects" + } + }, + "#sec-reference-record-specification-type": { + "current": { + "number": "1.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The Reference Record Specification Type", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-reference-record-specification-type" + } + }, + "#sec-resource-management": { + "current": { + "number": "12.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Resource Management", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-resource-management" + } + }, + "#sec-runtime-semantics-classdefinitionevaluation": { + "current": { + "number": "8.4.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: ClassDefinitionEvaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-classdefinitionevaluation" + } + }, + "#sec-runtime-semantics-evaluateclassstaticblockbody": { + "current": { + "number": "8.4.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: EvaluateClassStaticBlockBody", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-evaluateclassstaticblockbody" + } + }, + "#sec-runtime-semantics-evaluatefunctionbody": { + "current": { + "number": "8.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: EvaluateFunctionBody", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-evaluatefunctionbody" + } + }, + "#sec-runtime-semantics-fordeclarationbindinginstantiation": { + "current": { + "number": "7.3.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: ForDeclarationBindingInstantiation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-fordeclarationbindinginstantiation" + } + }, + "#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset": { + "current": { + "number": "7.3.2.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ForIn/OfBodyEvaluation ( lhs, stmt, iteratorRecord, iterationKind, lhsKind, labelSet [ , iteratorKind ] )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset" + } + }, + "#sec-runtime-semantics-forloopevaluation": { + "current": { + "number": "7.3.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: ForLoopEvaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-forloopevaluation" + } + }, + "#sec-runtime-semantics-instantiateasyncfunctionexpression": { + "current": { + "number": "8.5.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: InstantiateAsyncFunctionExpression", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-instantiateasyncfunctionexpression" + } + }, + "#sec-runtime-semantics-instantiateasyncgeneratorfunctionexpression": { + "current": { + "number": "8.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: InstantiateAsyncGeneratorFunctionExpression", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-instantiateasyncgeneratorfunctionexpression" + } + }, + "#sec-runtime-semantics-instantiategeneratorfunctionexpression": { + "current": { + "number": "8.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: InstantiateGeneratorFunctionExpression", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-instantiategeneratorfunctionexpression" + } + }, + "#sec-runtime-semantics-instantiateordinaryfunctionexpression": { + "current": { + "number": "8.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: InstantiateOrdinaryFunctionExpression", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-instantiateordinaryfunctionexpression" + } + }, + "#sec-runtime-semantics-iteratorbindinginitialization": { + "current": { + "number": "3.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: IteratorBindingInitialization", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-iteratorbindinginitialization" + } + }, + "#sec-runtime-semantics-keyedbindinginitialization": { + "current": { + "number": "7.2.2.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: KeyedBindingInitialization", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-runtime-semantics-keyedbindinginitialization" + } + }, + "#sec-source-text-module-record-execute-module": { + "current": { + "number": "9.1.1.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "ExecuteModule ( [ capability ] )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-source-text-module-record-execute-module" + } + }, + "#sec-source-text-module-record-initialize-environment": { + "current": { + "number": "9.1.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "InitializeEnvironment ( )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-source-text-module-record-initialize-environment" + } + }, + "#sec-source-text-module-records": { + "current": { + "number": "9.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Source Text Module Records", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-source-text-module-records" + } + }, + "#sec-static-semantics-assignmenttargettype": { + "current": { + "number": "3.3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: AssignmentTargetType", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-assignmenttargettype" + } + }, + "#sec-static-semantics-boundnames": { + "current": { + "number": "3.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: BoundNames", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-boundnames" + } + }, + "#sec-static-semantics-hascallintailposition": { + "current": { + "number": "8.6.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: HasCallInTailPosition", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-hascallintailposition" + } + }, + "#sec-static-semantics-hasunterminatedusingdeclaration": { + "current": { + "number": "8.6.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: HasUnterminatedUsingDeclaration", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-hasunterminatedusingdeclaration" + } + }, + "#sec-static-semantics-isawaitusingdeclaration": { + "current": { + "number": "3.1.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: IsAwaitUsingDeclaration", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-isawaitusingdeclaration" + } + }, + "#sec-static-semantics-isconstantdeclaration": { + "current": { + "number": "3.1.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: IsConstantDeclaration", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-isconstantdeclaration" + } + }, + "#sec-static-semantics-isfunctiondefinition": { + "current": { + "number": "3.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: IsFunctionDefinition", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-isfunctiondefinition" + } + }, + "#sec-static-semantics-isusingdeclaration": { + "current": { + "number": "3.1.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Static Semantics: IsUsingDeclaration", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-static-semantics-isusingdeclaration" + } + }, + "#sec-suppressederror": { + "current": { + "number": "11.1.4.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "SuppressedError ( error, suppressed, message [ , options ] )", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror" + } + }, + "#sec-suppressederror-constructor": { + "current": { + "number": "11.1.4.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The SuppressedError Constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror-constructor" + } + }, + "#sec-suppressederror-objects": { + "current": { + "number": "11.1.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "SuppressedError Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror-objects" + } + }, + "#sec-suppressederror.prototype": { + "current": { + "number": "11.1.4.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "SuppressedError.prototype", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror.prototype" + } + }, + "#sec-suppressederror.prototype.constructor": { + "current": { + "number": "11.1.4.3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "SuppressedError.prototype.constructor", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror.prototype.constructor" + } + }, + "#sec-suppressederror.prototype.message": { + "current": { + "number": "11.1.4.3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "SuppressedError.prototype.message", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror.prototype.message" + } + }, + "#sec-suppressederror.prototype.name": { + "current": { + "number": "11.1.4.3.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "SuppressedError.prototype.name", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-suppressederror.prototype.name" + } + }, + "#sec-switch-statement": { + "current": { + "number": "7.4", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The switch Statement", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-switch-statement" + } + }, + "#sec-switch-statement-runtime-semantics-evaluation": { + "current": { + "number": "7.4.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-switch-statement-runtime-semantics-evaluation" + } + }, + "#sec-syntax-directed-operations": { + "current": { + "number": "3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Syntax-Directed Operations", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-syntax-directed-operations" + } + }, + "#sec-syntax-directed-operations-function-name-inference": { + "current": { + "number": "3.2", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Function Name Inference", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-syntax-directed-operations-function-name-inference" + } + }, + "#sec-syntax-directed-operations-miscellaneous": { + "current": { + "number": "3.3", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Miscellaneous", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-syntax-directed-operations-miscellaneous" + } + }, + "#sec-syntax-directed-operations-scope-analysis": { + "current": { + "number": "3.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Scope Analysis", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-syntax-directed-operations-scope-analysis" + } + }, + "#sec-tail-position-calls": { + "current": { + "number": "8.6", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Tail Position Calls", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-tail-position-calls" + } + }, + "#sec-the-environment-record-type-hierarchy": { + "current": { + "number": "4.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "The Environment Record Type Hierarchy", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-the-environment-record-type-hierarchy" + } + }, + "#sec-unary-operators": { + "current": { + "number": "6.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Unary Operators", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-unary-operators" + } + }, + "#sec-well-known-intrinsic-objects": { + "current": { + "number": "1.1.2.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Well-Known Intrinsic Objects", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-well-known-intrinsic-objects" + } + }, + "#sec-well-known-symbols": { + "current": { + "number": "1.1.1.1", + "spec": "ECMAScript Async Explicit Resource Management", + "text": "Well-Known Symbols", + "url": "https://tc39.es/proposal-async-explicit-resource-management/#sec-well-known-symbols" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-atomics-wait-async.json b/bikeshed/spec-data/readonly/headings/headings-tc39-atomics-wait-async.json deleted file mode 100644 index aacb1f155a..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-atomics-wait-async.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "#atomics.waitasync": { - "current": { - "number": "1.12", - "spec": "Atomics.waitAsync", - "text": "Atomics.waitAsync ( typedArray, index, value, timeout )", - "url": "https://tc39.es/proposal-atomics-wait-async/#atomics.waitasync" - } - }, - "#sec-addwaiter": { - "current": { - "number": "1.6", - "spec": "Atomics.waitAsync", - "text": "AddWaiter ( WL, WwaiterRecord )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-addwaiter" - } - }, - "#sec-atomics.wait": { - "current": { - "number": "1.11", - "spec": "Atomics.waitAsync", - "text": "Atomics.wait ( typedArray, index, value, timeout )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-atomics.wait" - } - }, - "#sec-dowait": { - "current": { - "number": "1.10", - "spec": "Atomics.waitAsync", - "text": "DoWait ( mode, typedArray, index, value, timeout )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-dowait" - } - }, - "#sec-entercriticalsection": { - "current": { - "number": "1.3", - "spec": "Atomics.waitAsync", - "text": "EnterCriticalSection ( WL )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-entercriticalsection" - } - }, - "#sec-getwaiterlist": { - "current": { - "number": "1.2", - "spec": "Atomics.waitAsync", - "text": "GetWaiterList ( block, i )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-getwaiterlist" - } - }, - "#sec-hostresolveinagent": { - "current": { - "number": "1.1", - "spec": "Atomics.waitAsync", - "text": "HostResolveInAgent ( agentSignifier, promiseCapability, resolution)", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-hostresolveinagent" - } - }, - "#sec-leavecriticalsection": { - "current": { - "number": "1.4", - "spec": "Atomics.waitAsync", - "text": "LeaveCriticalSection ( WL )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-leavecriticalsection" - } - }, - "#sec-notifywaiter": { - "current": { - "number": "1.9", - "spec": "Atomics.waitAsync", - "text": "NotifyWaiter ( WL, WwaiterRecord )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-notifywaiter" - } - }, - "#sec-removewaiter": { - "current": { - "number": "1.7", - "spec": "Atomics.waitAsync", - "text": "RemoveWaiter ( WL, WwaiterRecord )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-removewaiter" - } - }, - "#sec-semantics": { - "current": { - "number": "1", - "spec": "Atomics.waitAsync", - "text": "Semantics", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-semantics" - } - }, - "#sec-suspend": { - "current": { - "number": "1.8", - "spec": "Atomics.waitAsync", - "text": "Suspend ( WL, W, timeout )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-suspend" - } - }, - "#sec-triggertimeout": { - "current": { - "number": "1.5", - "spec": "Atomics.waitAsync", - "text": "TriggerTimeout( WL, waiterRecord )", - "url": "https://tc39.es/proposal-atomics-wait-async/#sec-triggertimeout" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-canonical-tz.json b/bikeshed/spec-data/readonly/headings/headings-tc39-canonical-tz.json new file mode 100644 index 0000000000..ea918a5a10 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-canonical-tz.json @@ -0,0 +1,98 @@ +{ + "#sec-canonical-tz-262": { + "current": { + "number": "1", + "spec": "Time Zone Canonicalization", + "text": "Amendments to the ECMAScript® 2024 Language Specification", + "url": "https://tc39.es/proposal-canonical-tz/#sec-canonical-tz-262" + } + }, + "#sec-canonical-tz-intl": { + "current": { + "number": "2", + "spec": "Time Zone Canonicalization", + "text": "Amendments to the ECMAScript® 2024 Internationalization API Specification", + "url": "https://tc39.es/proposal-canonical-tz/#sec-canonical-tz-intl" + } + }, + "#sec-temporal-createtemporaltimezone": { + "current": { + "number": "1.1.3.1", + "spec": "Time Zone Canonicalization", + "text": "CreateTemporalTimeZone ( identifier [ , newTarget ] )", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal-createtemporaltimezone" + } + }, + "#sec-temporal-initializedatetimeformat": { + "current": { + "number": "2.3", + "spec": "Time Zone Canonicalization", + "text": "InitializeDateTimeFormat ( dateTimeFormat, locales, options [ , toLocaleStringTimeZone ] )", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal-initializedatetimeformat" + } + }, + "#sec-temporal-timezone-abstract-ops": { + "current": { + "number": "1.1.3", + "spec": "Time Zone Canonicalization", + "text": "Abstract operations", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal-timezone-abstract-ops" + } + }, + "#sec-temporal-timezone-objects": { + "current": { + "number": "1.1", + "spec": "Time Zone Canonicalization", + "text": "Temporal.TimeZone Objects", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal-timezone-objects" + } + }, + "#sec-temporal-timezoneequals": { + "current": { + "number": "1.1.3.3", + "spec": "Time Zone Canonicalization", + "text": "TimeZoneEquals ( one, two )", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal-timezoneequals" + } + }, + "#sec-temporal-totemporaltimezoneslotvalue": { + "current": { + "number": "1.1.3.2", + "spec": "Time Zone Canonicalization", + "text": "ToTemporalTimeZoneSlotValue ( temporalTimeZoneLike )", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal-totemporaltimezoneslotvalue" + } + }, + "#sec-temporal.timezone": { + "current": { + "number": "1.1.1", + "spec": "Time Zone Canonicalization", + "text": "Temporal.TimeZone ( identifier )", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal.timezone" + } + }, + "#sec-temporal.timezone.prototype.equals": { + "current": { + "number": "1.1.2", + "spec": "Time Zone Canonicalization", + "text": "Temporal.TimeZone.prototype.equals ( timeZoneLike )", + "url": "https://tc39.es/proposal-canonical-tz/#sec-temporal.timezone.prototype.equals" + } + }, + "#sec-use-of-iana-time-zone-database": { + "current": { + "number": "2.1", + "spec": "Time Zone Canonicalization", + "text": "Use of the IANA Time Zone Database", + "url": "https://tc39.es/proposal-canonical-tz/#sec-use-of-iana-time-zone-database" + } + }, + "#sup-temporal.zoneddatetime.prototype.tolocalestring": { + "current": { + "number": "2.2", + "spec": "Time Zone Canonicalization", + "text": "Temporal.ZonedDateTime.prototype.toLocaleString ( [ locales [ , options ] ] )", + "url": "https://tc39.es/proposal-canonical-tz/#sup-temporal.zoneddatetime.prototype.tolocalestring" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-change-array-by-copy.json b/bikeshed/spec-data/readonly/headings/headings-tc39-change-array-by-copy.json deleted file mode 100644 index fb2dd21b4e..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-change-array-by-copy.json +++ /dev/null @@ -1,170 +0,0 @@ -{ - "#sec-%typedarray%-intrinsic-object": { - "current": { - "number": "1.2.2", - "spec": "Change Array by copy", - "text": "The %TypedArray% Intrinsic Object", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%-intrinsic-object" - } - }, - "#sec-%typedarray%.prototype.sort": { - "current": { - "number": "1.2.2.1.1", - "spec": "Change Array by copy", - "text": "%TypedArray%.prototype.sort ( comparefn )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.sort" - } - }, - "#sec-%typedarray%.prototype.toReversed": { - "current": { - "number": "1.2.2.1.3", - "spec": "Change Array by copy", - "text": "%TypedArray%.prototype.toReversed ( )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.toReversed" - } - }, - "#sec-%typedarray%.prototype.toSorted": { - "current": { - "number": "1.2.2.1.4", - "spec": "Change Array by copy", - "text": "%TypedArray%.prototype.toSorted ( comparefn )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.toSorted" - } - }, - "#sec-%typedarray%.prototype.with": { - "current": { - "number": "1.2.2.1.5", - "spec": "Change Array by copy", - "text": "%TypedArray%.prototype.with ( index, value )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.with" - } - }, - "#sec-abstract-operations-for-typedarray-objects": { - "current": { - "number": "1.2.1", - "spec": "Change Array by copy", - "text": "Abstract Operations for TypedArray Objects", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-abstract-operations-for-typedarray-objects" - } - }, - "#sec-array-objects": { - "current": { - "number": "1.1", - "spec": "Change Array by copy", - "text": "Array Objects", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array-objects" - } - }, - "#sec-array.prototype-@@unscopables": { - "current": { - "number": "1.1.1.8", - "spec": "Change Array by copy", - "text": "Array.prototype [ @@unscopables ]", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype-@@unscopables" - } - }, - "#sec-array.prototype.sort": { - "current": { - "number": "1.1.1.1", - "spec": "Change Array by copy", - "text": "Array.prototype.sort ( comparefn )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.sort" - } - }, - "#sec-array.prototype.toReversed": { - "current": { - "number": "1.1.1.4", - "spec": "Change Array by copy", - "text": "Array.prototype.toReversed ( )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.toReversed" - } - }, - "#sec-array.prototype.toSorted": { - "current": { - "number": "1.1.1.5", - "spec": "Change Array by copy", - "text": "Array.prototype.toSorted ( comparefn )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.toSorted" - } - }, - "#sec-array.prototype.toSpliced": { - "current": { - "number": "1.1.1.6", - "spec": "Change Array by copy", - "text": "Array.prototype.toSpliced ( start, deleteCount, ...items )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.toSpliced" - } - }, - "#sec-array.prototype.with": { - "current": { - "number": "1.1.1.7", - "spec": "Change Array by copy", - "text": "Array.prototype.with ( index, value )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.with" - } - }, - "#sec-comparearrayelements": { - "current": { - "number": "1.1.1.2", - "spec": "Change Array by copy", - "text": "CompareArrayElements ( x, y, comparefn )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-comparearrayelements" - } - }, - "#sec-comparetypedarrayelements": { - "current": { - "number": "1.2.2.1.2", - "spec": "Change Array by copy", - "text": "CompareTypedArrayElements ( x, y, comparefn )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-comparetypedarrayelements" - } - }, - "#sec-indexed-collections": { - "current": { - "number": "1", - "spec": "Change Array by copy", - "text": "Indexed Collections", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-indexed-collections" - } - }, - "#sec-properties-of-the-%typedarrayprototype%-object": { - "current": { - "number": "1.2.2.1", - "spec": "Change Array by copy", - "text": "Properties of the %TypedArray% Prototype Object", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-properties-of-the-%typedarrayprototype%-object" - } - }, - "#sec-properties-of-the-array-prototype-object": { - "current": { - "number": "1.1.1", - "spec": "Change Array by copy", - "text": "Properties of the Array Prototype Object", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-properties-of-the-array-prototype-object" - } - }, - "#sec-sortindexedproperties": { - "current": { - "number": "1.1.1.3", - "spec": "Change Array by copy", - "text": "SortIndexedProperties ( obj, len, SortCompare, skipHoles )", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-sortindexedproperties" - } - }, - "#sec-typedarray-objects": { - "current": { - "number": "1.2", - "spec": "Change Array by copy", - "text": "TypedArray Objects", - "url": "https://tc39.es/proposal-change-array-by-copy/#sec-typedarray-objects" - } - }, - "#typedarray-create-same-type": { - "current": { - "number": "1.2.1.1", - "spec": "Change Array by copy", - "text": "TypedArrayCreateSameType ( exemplar, argumentList )", - "url": "https://tc39.es/proposal-change-array-by-copy/#typedarray-create-same-type" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-decorators.json b/bikeshed/spec-data/readonly/headings/headings-tc39-decorators.json index d2b61b7511..d92783fd65 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-decorators.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-decorators.json @@ -2,7 +2,7 @@ "#decorator-semantics": { "current": { "number": "5", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Decorator semantics", "url": "https://tc39.es/proposal-decorators/#decorator-semantics" } @@ -10,7 +10,7 @@ "#initialize-class-elements": { "current": { "number": "3.12", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "InitializeClassElements(F, proto)", "url": "https://tc39.es/proposal-decorators/#initialize-class-elements" } @@ -18,7 +18,7 @@ "#initialize-public-instance-elements": { "current": { "number": "3.11", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "InitializeInstanceElements ( O, constructor )", "url": "https://tc39.es/proposal-decorators/#initialize-public-instance-elements" } @@ -26,7 +26,7 @@ "#runtime-semantics-class-definition-evaluation": { "current": { "number": "3.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: ClassDefinitionEvaluation", "url": "https://tc39.es/proposal-decorators/#runtime-semantics-class-definition-evaluation" } @@ -34,7 +34,7 @@ "#runtime-semantics-class-field-definition-evaluation": { "current": { "number": "3.4", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: ClassFieldDefinitionEvaluation", "url": "https://tc39.es/proposal-decorators/#runtime-semantics-class-field-definition-evaluation" } @@ -42,7 +42,7 @@ "#sec-add-element-placement": { "current": { "number": "5.7", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "AddElementPlacement (element, placements [, silent])", "url": "https://tc39.es/proposal-decorators/#sec-add-element-placement" } @@ -50,7 +50,7 @@ "#sec-assign-private-names": { "current": { "number": "3.13", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "AssignPrivateNames ( elements )", "url": "https://tc39.es/proposal-decorators/#sec-assign-private-names" } @@ -58,7 +58,7 @@ "#sec-class-definitions-runtime-semantics-evaluation": { "current": { "number": "3.6", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: Evaluation", "url": "https://tc39.es/proposal-decorators/#sec-class-definitions-runtime-semantics-evaluation" } @@ -66,7 +66,7 @@ "#sec-classes-specification-types": { "current": { "number": "2.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Classes Specification Types", "url": "https://tc39.es/proposal-decorators/#sec-classes-specification-types" } @@ -74,7 +74,7 @@ "#sec-coalesce-class-elements": { "current": { "number": "3.8", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "CoalesceClassElements ( elements )", "url": "https://tc39.es/proposal-decorators/#sec-coalesce-class-elements" } @@ -82,7 +82,7 @@ "#sec-coalesce-getter-setter": { "current": { "number": "3.7", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "CoalesceGetterSetter ( element, other )", "url": "https://tc39.es/proposal-decorators/#sec-coalesce-getter-setter" } @@ -90,7 +90,7 @@ "#sec-createintrinsics": { "current": { "number": "4.4", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "CreateIntrinsics ( realmRec )", "url": "https://tc39.es/proposal-decorators/#sec-createintrinsics" } @@ -98,7 +98,7 @@ "#sec-decorate-class": { "current": { "number": "5.4", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "DecorateClass ( elements, decorators )", "url": "https://tc39.es/proposal-decorators/#sec-decorate-class" } @@ -106,7 +106,7 @@ "#sec-decorate-constructor": { "current": { "number": "5.6", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "DecorateConstructor ( elements, decorators )", "url": "https://tc39.es/proposal-decorators/#sec-decorate-constructor" } @@ -114,7 +114,7 @@ "#sec-decorate-element": { "current": { "number": "5.5", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "DecorateElement ( element, placements )", "url": "https://tc39.es/proposal-decorators/#sec-decorate-element" } @@ -122,7 +122,7 @@ "#sec-decorator-functions": { "current": { "number": "5.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Decorator Functions", "url": "https://tc39.es/proposal-decorators/#sec-decorator-functions" } @@ -130,7 +130,7 @@ "#sec-decorator-runtime-semantics-decoratorevaluation": { "current": { "number": "5.2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: DecoratorEvaluation", "url": "https://tc39.es/proposal-decorators/#sec-decorator-runtime-semantics-decoratorevaluation" } @@ -138,7 +138,7 @@ "#sec-default-method-descriptor": { "current": { "number": "3.2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "DefaultMethodDescriptor ( key, closure, enumerable, placement )", "url": "https://tc39.es/proposal-decorators/#sec-default-method-descriptor" } @@ -146,7 +146,7 @@ "#sec-define-field": { "current": { "number": "3.9", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "DefineField(receiver, descriptor)", "url": "https://tc39.es/proposal-decorators/#sec-define-field" } @@ -154,7 +154,7 @@ "#sec-elementdescriptor-specification-type": { "current": { "number": "2.1.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "The ElementDescriptor Specification Type", "url": "https://tc39.es/proposal-decorators/#sec-elementdescriptor-specification-type" } @@ -162,7 +162,7 @@ "#sec-from-class-descriptor": { "current": { "number": "5.15", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "FromClassDescriptor ( elements )", "url": "https://tc39.es/proposal-decorators/#sec-from-class-descriptor" } @@ -170,7 +170,7 @@ "#sec-from-element-descriptor": { "current": { "number": "5.10", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "FromElementDescriptor ( element )", "url": "https://tc39.es/proposal-decorators/#sec-from-element-descriptor" } @@ -178,7 +178,7 @@ "#sec-from-element-descriptors": { "current": { "number": "5.9", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "FromElementDescriptors ( elements )", "url": "https://tc39.es/proposal-decorators/#sec-from-element-descriptors" } @@ -186,7 +186,7 @@ "#sec-internal-algorithms": { "current": { "number": "3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Class algorithms", "url": "https://tc39.es/proposal-decorators/#sec-internal-algorithms" } @@ -194,7 +194,7 @@ "#sec-method-definitions-runtime-semantics-decoratorlistevaluation": { "current": { "number": "5.3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: DecoratorListEvaluation", "url": "https://tc39.es/proposal-decorators/#sec-method-definitions-runtime-semantics-decoratorlistevaluation" } @@ -202,7 +202,7 @@ "#sec-method-definitions-runtime-semantics-propertydefinitionevaluation": { "current": { "number": "3.3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: ClassElementEvaluation", "url": "https://tc39.es/proposal-decorators/#sec-method-definitions-runtime-semantics-propertydefinitionevaluation" } @@ -210,7 +210,7 @@ "#sec-new-ecmascript-specification-types": { "current": { "number": "2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "New ECMAScript Specification Types", "url": "https://tc39.es/proposal-decorators/#sec-new-ecmascript-specification-types" } @@ -218,7 +218,7 @@ "#sec-new-syntax": { "current": { "number": "1.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "New Productions", "url": "https://tc39.es/proposal-decorators/#sec-new-syntax" } @@ -226,7 +226,7 @@ "#sec-non-ecmascript-functions": { "current": { "number": "7", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Non-ECMAScript Functions", "url": "https://tc39.es/proposal-decorators/#sec-non-ecmascript-functions" } @@ -234,7 +234,7 @@ "#sec-private-description": { "current": { "number": "4.3.1.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "%PrivateName% ( )", "url": "https://tc39.es/proposal-decorators/#sec-private-description" } @@ -242,7 +242,7 @@ "#sec-private-name-constructor": { "current": { "number": "4.3.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "The %PrivateName% Constructor", "url": "https://tc39.es/proposal-decorators/#sec-private-name-constructor" } @@ -250,7 +250,7 @@ "#sec-private-name-get": { "current": { "number": "4.3.1.3.2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "%PrivateName%.prototype.get ( object )", "url": "https://tc39.es/proposal-decorators/#sec-private-name-get" } @@ -258,7 +258,7 @@ "#sec-private-name-object": { "current": { "number": "4.3.1.2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "PrivateNameObject ( name )", "url": "https://tc39.es/proposal-decorators/#sec-private-name-object" } @@ -266,7 +266,7 @@ "#sec-private-name-objects": { "current": { "number": "4.3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Private Name Objects", "url": "https://tc39.es/proposal-decorators/#sec-private-name-objects" } @@ -274,7 +274,7 @@ "#sec-private-name-set": { "current": { "number": "4.3.1.3.3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "%PrivateName%.prototype.set ( object, value )", "url": "https://tc39.es/proposal-decorators/#sec-private-name-set" } @@ -282,23 +282,23 @@ "#sec-private-name-this-private-name": { "current": { "number": "4.3.1.3.7", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "GetPrivateName ( O )", "url": "https://tc39.es/proposal-decorators/#sec-private-name-this-private-name" } }, - "#sec-private-name.prototype-@@tostringtag": { + "#sec-private-name.prototype-%40%40tostringtag": { "current": { "number": "4.3.1.3.6", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "PrivateName.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-decorators/#sec-private-name.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-decorators/#sec-private-name.prototype-%40%40tostringtag" } }, "#sec-private-name.prototype.constructor": { "current": { "number": "4.3.1.3.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "%PrivateName%.prototype.constructor", "url": "https://tc39.es/proposal-decorators/#sec-private-name.prototype.constructor" } @@ -306,7 +306,7 @@ "#sec-private-name.prototype.description": { "current": { "number": "4.3.1.3.4", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "get %PrivateName%.prototype.description ( )", "url": "https://tc39.es/proposal-decorators/#sec-private-name.prototype.description" } @@ -314,7 +314,7 @@ "#sec-private-name.prototype.tostring": { "current": { "number": "4.3.1.3.5", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "%PrivateName%.prototype.toString ( )", "url": "https://tc39.es/proposal-decorators/#sec-private-name.prototype.tostring" } @@ -322,7 +322,7 @@ "#sec-private-names": { "current": { "number": "4", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Private Names and references", "url": "https://tc39.es/proposal-decorators/#sec-private-names" } @@ -330,7 +330,7 @@ "#sec-privatefielddefine": { "current": { "number": "3.10", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "PrivateFieldDefine (P, O, desc)", "url": "https://tc39.es/proposal-decorators/#sec-privatefielddefine" } @@ -338,7 +338,7 @@ "#sec-privatefieldget": { "current": { "number": "4.1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "PrivateFieldGet (P, O )", "url": "https://tc39.es/proposal-decorators/#sec-privatefieldget" } @@ -346,7 +346,7 @@ "#sec-privatefieldset": { "current": { "number": "4.2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "PrivateFieldSet (P, O, value )", "url": "https://tc39.es/proposal-decorators/#sec-privatefieldset" } @@ -354,7 +354,7 @@ "#sec-properties-of-private-name-instances": { "current": { "number": "4.3.1.4", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Properties of PrivateName Instances", "url": "https://tc39.es/proposal-decorators/#sec-properties-of-private-name-instances" } @@ -362,7 +362,7 @@ "#sec-properties-of-the-private-name-prototype-object": { "current": { "number": "4.3.1.3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Properties of the %PrivateNamePrototype% Object", "url": "https://tc39.es/proposal-decorators/#sec-properties-of-the-private-name-prototype-object" } @@ -370,7 +370,7 @@ "#sec-remove-element-placement": { "current": { "number": "5.8", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "RemoveElementPlacement (element, placements)", "url": "https://tc39.es/proposal-decorators/#sec-remove-element-placement" } @@ -378,7 +378,7 @@ "#sec-runtime-semantics-bindingclassdeclarationevaluation": { "current": { "number": "3.5", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Runtime Semantics: BindingClassDeclarationEvaluation", "url": "https://tc39.es/proposal-decorators/#sec-runtime-semantics-bindingclassdeclarationevaluation" } @@ -386,7 +386,7 @@ "#sec-strict-mode-code": { "current": { "number": "6", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Strict Mode Code", "url": "https://tc39.es/proposal-decorators/#sec-strict-mode-code" } @@ -394,7 +394,7 @@ "#sec-syntax": { "current": { "number": "1", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Syntax", "url": "https://tc39.es/proposal-decorators/#sec-syntax" } @@ -402,7 +402,7 @@ "#sec-syntax-early-errors": { "current": { "number": "1.3", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Static Semantics: Early Errors", "url": "https://tc39.es/proposal-decorators/#sec-syntax-early-errors" } @@ -410,7 +410,7 @@ "#sec-to-class-descriptor": { "current": { "number": "5.16", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "ToClassDescriptor ( classDescriptor )", "url": "https://tc39.es/proposal-decorators/#sec-to-class-descriptor" } @@ -418,7 +418,7 @@ "#sec-to-decorator-property-descriptor": { "current": { "number": "5.12", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "ToDecoratorPropertyDescriptor ( elementObject )", "url": "https://tc39.es/proposal-decorators/#sec-to-decorator-property-descriptor" } @@ -426,7 +426,7 @@ "#sec-to-element-descriptor": { "current": { "number": "5.13", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "ToElementDescriptor ( elementObject )", "url": "https://tc39.es/proposal-decorators/#sec-to-element-descriptor" } @@ -434,7 +434,7 @@ "#sec-to-element-descriptors": { "current": { "number": "5.11", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "ToElementDescriptors ( elementObjects )", "url": "https://tc39.es/proposal-decorators/#sec-to-element-descriptors" } @@ -442,7 +442,7 @@ "#sec-to-element-extras": { "current": { "number": "5.14", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "ToElementExtras ( elementObject )", "url": "https://tc39.es/proposal-decorators/#sec-to-element-extras" } @@ -450,7 +450,7 @@ "#sec-updated-syntax": { "current": { "number": "1.2", - "spec": "Decorators proposal", + "spec": "Decorators", "text": "Updated Productions", "url": "https://tc39.es/proposal-decorators/#sec-updated-syntax" } diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-dynamic-code-brand-checks.json b/bikeshed/spec-data/readonly/headings/headings-tc39-dynamic-code-brand-checks.json new file mode 100644 index 0000000000..2905c13be8 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-dynamic-code-brand-checks.json @@ -0,0 +1,34 @@ +{ + "#sec-createdynamicfunction": { + "current": { + "number": "4", + "spec": "Dynamic Code Brand Checks", + "text": "CreateDynamicFunction ( constructor, newTarget, kind, parameterArgs, bodyArg )", + "url": "https://tc39.es/proposal-dynamic-code-brand-checks/#sec-createdynamicfunction" + } + }, + "#sec-hostensurecancompilestrings": { + "current": { + "number": "2", + "spec": "Dynamic Code Brand Checks", + "text": "HostEnsureCanCompileStrings ( calleeRealm, parameterStrings, bodyString, direct, codeString, compilationType, parameterArgs, bodyArg )", + "url": "https://tc39.es/proposal-dynamic-code-brand-checks/#sec-hostensurecancompilestrings" + } + }, + "#sec-hostgetcodeforeval": { + "current": { + "number": "1", + "spec": "Dynamic Code Brand Checks", + "text": "HostGetCodeForEval ( argument )", + "url": "https://tc39.es/proposal-dynamic-code-brand-checks/#sec-hostgetcodeforeval" + } + }, + "#sec-performeval": { + "current": { + "number": "3", + "spec": "Dynamic Code Brand Checks", + "text": "PerformEval ( x, strictCaller, direct )", + "url": "https://tc39.es/proposal-dynamic-code-brand-checks/#sec-performeval" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-explicit-resource-management.json b/bikeshed/spec-data/readonly/headings/headings-tc39-explicit-resource-management.json index aa5eed57b9..a517534a8d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-explicit-resource-management.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-explicit-resource-management.json @@ -1,18 +1,34 @@ { - "#sec-%iteratorprototype%-@@dispose": { + "#sec-%25asynciteratorprototype%25-%40%40asyncdispose": { "current": { - "number": "11.1.1.1", + "number": "12.1.2.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "%AsyncIteratorPrototype% [ @@asyncDispose ] ( )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-%25asynciteratorprototype%25-%40%40asyncdispose" + } + }, + "#sec-%25asynciteratorprototype%25-object": { + "current": { + "number": "12.1.2", + "spec": "ECMAScript Explicit Resource Management", + "text": "The %AsyncIteratorPrototype% Object", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-%25asynciteratorprototype%25-object" + } + }, + "#sec-%25iteratorprototype%25-%40%40dispose": { + "current": { + "number": "12.1.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "%IteratorPrototype% [ @@dispose ] ( )", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-%iteratorprototype%-@@dispose" + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-%25iteratorprototype%25-%40%40dispose" } }, - "#sec-%iteratorprototype%-object": { + "#sec-%25iteratorprototype%25-object": { "current": { - "number": "11.1.1", + "number": "12.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "The %IteratorPrototype% Object", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-%iteratorprototype%-object" + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-%25iteratorprototype%25-object" } }, "#sec-abstract-operations": { @@ -23,17 +39,17 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-abstract-operations" } }, - "#sec-adddisposableresource-disposable-v-hint-disposemethod": { + "#sec-adddisposableresource": { "current": { "number": "2.1.4", "spec": "ECMAScript Explicit Resource Management", "text": "AddDisposableResource ( disposeCapability, V, hint [ , method ] )", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-adddisposableresource-disposable-v-hint-disposemethod" + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-adddisposableresource" } }, "#sec-aggregate-error-objects": { "current": { - "number": "10.1.3", + "number": "11.1.3", "spec": "ECMAScript Explicit Resource Management", "text": "AggregateError Objects", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-aggregate-error-objects" @@ -41,71 +57,135 @@ }, "#sec-async-function-definitions": { "current": { - "number": "7.5", + "number": "8.5", "spec": "ECMAScript Explicit Resource Management", "text": "Async Function Definitions", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-async-function-definitions" } }, - "#sec-async-function-objects": { + "#sec-async-function-definitions-runtime-semantics-evaluation": { "current": { - "number": "11.6", + "number": "8.5.3", "spec": "ECMAScript Explicit Resource Management", - "text": "AsyncFunction Objects", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-async-function-objects" + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-async-function-definitions-runtime-semantics-evaluation" } }, - "#sec-async-functions-abstract-operations": { + "#sec-async-function-definitions-static-semantics-early-errors": { "current": { - "number": "11.6.1", + "number": "8.5.1", "spec": "ECMAScript Explicit Resource Management", - "text": "Async Functions Abstract Operations", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-async-functions-abstract-operations" + "text": "Static Semantics: Early Errors", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-async-function-definitions-static-semantics-early-errors" } }, "#sec-async-generator-function-definitions": { "current": { - "number": "7.3", + "number": "8.3", "spec": "ECMAScript Explicit Resource Management", "text": "Async Generator Function Definitions", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-async-generator-function-definitions" } }, - "#sec-asyncblockstart": { + "#sec-asyncdisposable-interface": { + "current": { + "number": "12.2.1.2", + "spec": "ECMAScript Explicit Resource Management", + "text": "The AsyncDisposable Interface", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposable-interface" + } + }, + "#sec-asyncdisposablestack": { + "current": { + "number": "12.4.1.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "AsyncDisposableStack ( )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack" + } + }, + "#sec-asyncdisposablestack-constructor": { + "current": { + "number": "12.4.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "The AsyncDisposableStack Constructor", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack-constructor" + } + }, + "#sec-asyncdisposablestack-objects": { + "current": { + "number": "12.4", + "spec": "ECMAScript Explicit Resource Management", + "text": "AsyncDisposableStack Objects", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack-objects" + } + }, + "#sec-asyncdisposablestack.prototype": { + "current": { + "number": "12.4.2.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "AsyncDisposableStack.prototype", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype" + } + }, + "#sec-asyncdisposablestack.prototype-%40%40asyncDispose": { "current": { - "number": "11.6.1.1", + "number": "12.4.3.7", "spec": "ECMAScript Explicit Resource Management", - "text": "AsyncBlockStart ( promiseCapability, asyncBody, asyncContext )", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncblockstart" + "text": "AsyncDisposableStack.prototype [ @@asyncDispose ] ()", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype-%40%40asyncDispose" } }, - "#sec-asyncgenerator-abstract-operations": { + "#sec-asyncdisposablestack.prototype-%40%40toStringTag": { "current": { - "number": "11.5.1", + "number": "12.4.3.8", "spec": "ECMAScript Explicit Resource Management", - "text": "AsyncGenerator Abstract Operations", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncgenerator-abstract-operations" + "text": "AsyncDisposableStack.prototype [ @@toStringTag ]", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype-%40%40toStringTag" } }, - "#sec-asyncgenerator-objects": { + "#sec-asyncdisposablestack.prototype.adopt": { "current": { - "number": "11.5", + "number": "12.4.3.1", "spec": "ECMAScript Explicit Resource Management", - "text": "AsyncGenerator Objects", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncgenerator-objects" + "text": "AsyncDisposableStack.prototype.adopt( value, onDisposeAsync )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype.adopt" } }, - "#sec-asyncgeneratorstart": { + "#sec-asyncdisposablestack.prototype.defer": { "current": { - "number": "11.5.1.1", + "number": "12.4.3.2", "spec": "ECMAScript Explicit Resource Management", - "text": "AsyncGeneratorStart ( generator, generatorBody )", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncgeneratorstart" + "text": "AsyncDisposableStack.prototype.defer( onDisposeAsync )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype.defer" + } + }, + "#sec-asyncdisposablestack.prototype.disposeAsync": { + "current": { + "number": "12.4.3.3", + "spec": "ECMAScript Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.disposeAsync()", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype.disposeAsync" + } + }, + "#sec-asyncdisposablestack.prototype.move": { + "current": { + "number": "12.4.3.5", + "spec": "ECMAScript Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.move()", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype.move" + } + }, + "#sec-asyncdisposablestack.prototype.use": { + "current": { + "number": "12.4.3.6", + "spec": "ECMAScript Explicit Resource Management", + "text": "AsyncDisposableStack.prototype.use( value )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-asyncdisposablestack.prototype.use" } }, "#sec-block": { "current": { - "number": "6.1", + "number": "7.1", "spec": "ECMAScript Explicit Resource Management", "text": "Block", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-block" @@ -113,7 +193,7 @@ }, "#sec-block-runtime-semantics-evaluation": { "current": { - "number": "6.1.1", + "number": "7.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: Evaluation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-block-runtime-semantics-evaluation" @@ -121,7 +201,7 @@ }, "#sec-blockdeclarationinstantiation": { "current": { - "number": "6.1.2", + "number": "7.1.2", "spec": "ECMAScript Explicit Resource Management", "text": "BlockDeclarationInstantiation ( code, env )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-blockdeclarationinstantiation" @@ -129,7 +209,7 @@ }, "#sec-class-definitions": { "current": { - "number": "7.4", + "number": "8.4", "spec": "ECMAScript Explicit Resource Management", "text": "Class Definitions", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-class-definitions" @@ -137,7 +217,7 @@ }, "#sec-common-resource-management-interfaces": { "current": { - "number": "11.2.1", + "number": "12.2.1", "spec": "ECMAScript Explicit Resource Management", "text": "Common Resource Management Interfaces", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-common-resource-management-interfaces" @@ -145,7 +225,7 @@ }, "#sec-control-abstraction-objects": { "current": { - "number": "11", + "number": "12", "spec": "ECMAScript Explicit Resource Management", "text": "Control Abstraction Objects", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-control-abstraction-objects" @@ -161,7 +241,7 @@ }, "#sec-declarations-and-the-variable-statement": { "current": { - "number": "6.2", + "number": "7.2", "spec": "ECMAScript Explicit Resource Management", "text": "Declarations and the Variable Statement", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-declarations-and-the-variable-statement" @@ -185,7 +265,7 @@ }, "#sec-destructuring-binding-patterns": { "current": { - "number": "6.2.2", + "number": "7.2.2", "spec": "ECMAScript Explicit Resource Management", "text": "Destructuring Binding Patterns", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-destructuring-binding-patterns" @@ -193,7 +273,7 @@ }, "#sec-destructuring-binding-patterns-runtime-semantics-restbindinginitialization": { "current": { - "number": "6.2.2.1", + "number": "7.2.2.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: RestBindingInitialization", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-destructuring-binding-patterns-runtime-semantics-restbindinginitialization" @@ -201,7 +281,7 @@ }, "#sec-disposable-interface": { "current": { - "number": "11.2.1.1", + "number": "12.2.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "The Disposable Interface", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposable-interface" @@ -217,23 +297,15 @@ }, "#sec-disposablestack": { "current": { - "number": "11.3.1.1", + "number": "12.3.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack ( )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack" } }, - "#sec-disposablestack-adopt-callback-functions": { - "current": { - "number": "11.3.3.4.1", - "spec": "ECMAScript Explicit Resource Management", - "text": "DisposableStack Adopt Callback Functions", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack-adopt-callback-functions" - } - }, "#sec-disposablestack-constructor": { "current": { - "number": "11.3.1", + "number": "12.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "The DisposableStack Constructor", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack-constructor" @@ -241,31 +313,39 @@ }, "#sec-disposablestack-objects": { "current": { - "number": "11.3", + "number": "12.3", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack Objects", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack-objects" } }, - "#sec-disposablestack.prototype-@@dispose": { + "#sec-disposablestack.prototype": { + "current": { + "number": "12.3.2.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "DisposableStack.prototype", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype" + } + }, + "#sec-disposablestack.prototype-%40%40dispose": { "current": { - "number": "11.3.3.7", + "number": "12.3.3.7", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype [ @@dispose ] ()", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype-@@dispose" + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype-%40%40dispose" } }, - "#sec-disposablestack.prototype-@@toStringTag": { + "#sec-disposablestack.prototype-%40%40toStringTag": { "current": { - "number": "11.3.3.8", + "number": "12.3.3.8", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype-@@toStringTag" + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype-%40%40toStringTag" } }, "#sec-disposablestack.prototype.adopt": { "current": { - "number": "11.3.3.4", + "number": "12.3.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype.adopt( value, onDispose )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype.adopt" @@ -273,7 +353,7 @@ }, "#sec-disposablestack.prototype.defer": { "current": { - "number": "11.3.3.5", + "number": "12.3.3.2", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype.defer( onDispose )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype.defer" @@ -281,7 +361,7 @@ }, "#sec-disposablestack.prototype.dispose": { "current": { - "number": "11.3.3.2", + "number": "12.3.3.3", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype.dispose ()", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype.dispose" @@ -289,7 +369,7 @@ }, "#sec-disposablestack.prototype.move": { "current": { - "number": "11.3.3.6", + "number": "12.3.3.5", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype.move()", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype.move" @@ -297,7 +377,7 @@ }, "#sec-disposablestack.prototype.use": { "current": { - "number": "11.3.3.3", + "number": "12.3.3.6", "spec": "ECMAScript Explicit Resource Management", "text": "DisposableStack.prototype.use( value )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposablestack.prototype.use" @@ -319,12 +399,12 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposecapability-records" } }, - "#sec-disposeresources-disposable-completion-errors": { + "#sec-disposeresources": { "current": { "number": "2.1.8", "spec": "ECMAScript Explicit Resource Management", "text": "DisposeResources ( disposeCapability, completion )", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposeresources-disposable-completion-errors" + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-disposeresources" } }, "#sec-ecmascript-data-types-and-values": { @@ -343,9 +423,17 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-ecmascript-function-objects" } }, + "#sec-ecmascript-language-expressions": { + "current": { + "number": "6", + "spec": "ECMAScript Explicit Resource Management", + "text": "ECMAScript Language: Expressions", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-ecmascript-language-expressions" + } + }, "#sec-ecmascript-language-functions-and-classes": { "current": { - "number": "7", + "number": "8", "spec": "ECMAScript Explicit Resource Management", "text": "ECMAScript Language: Functions and Classes", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-ecmascript-language-functions-and-classes" @@ -353,7 +441,7 @@ }, "#sec-ecmascript-language-scripts-and-modules": { "current": { - "number": "8", + "number": "9", "spec": "ECMAScript Explicit Resource Management", "text": "ECMAScript Language: Scripts and Modules", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-ecmascript-language-scripts-and-modules" @@ -361,7 +449,7 @@ }, "#sec-ecmascript-language-statements-and-declarations": { "current": { - "number": "6", + "number": "7", "spec": "ECMAScript Explicit Resource Management", "text": "ECMAScript Language: Statements and Declarations", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-ecmascript-language-statements-and-declarations" @@ -409,7 +497,7 @@ }, "#sec-error-objects": { "current": { - "number": "10.1", + "number": "11.1", "spec": "ECMAScript Explicit Resource Management", "text": "Error Objects", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-error-objects" @@ -417,7 +505,7 @@ }, "#sec-eval-x": { "current": { - "number": "9.1.1", + "number": "10.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "eval ( x )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-eval-x" @@ -425,7 +513,7 @@ }, "#sec-evaldeclarationinstantiation": { "current": { - "number": "9.1.1.1", + "number": "10.1.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "EvalDeclarationInstantiation ( body, varEnv, lexEnv, privateEnv, strict )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-evaldeclarationinstantiation" @@ -441,7 +529,7 @@ }, "#sec-exports": { "current": { - "number": "8.1.1.2", + "number": "9.1.1.2", "spec": "ECMAScript Explicit Resource Management", "text": "Exports", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-exports" @@ -449,23 +537,15 @@ }, "#sec-for-in-and-for-of-statements": { "current": { - "number": "6.3.2", + "number": "7.3.2", "spec": "ECMAScript Explicit Resource Management", "text": "The for-in, for-of, and for-await-of Statements", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-for-in-and-for-of-statements" } }, - "#sec-for-in-and-for-of-statements-static-semantics-early-errors": { - "current": { - "number": "6.3.2.1", - "spec": "ECMAScript Explicit Resource Management", - "text": "Static Semantics: Early Errors", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-for-in-and-for-of-statements-static-semantics-early-errors" - } - }, "#sec-for-statement": { "current": { - "number": "6.3.1", + "number": "7.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "The for Statement", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-for-statement" @@ -473,15 +553,23 @@ }, "#sec-function-definitions": { "current": { - "number": "7.1", + "number": "8.1", "spec": "ECMAScript Explicit Resource Management", "text": "Function Definitions", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-function-definitions" } }, + "#sec-function-definitions-runtime-semantics-evaluation": { + "current": { + "number": "8.1.2", + "spec": "ECMAScript Explicit Resource Management", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-function-definitions-runtime-semantics-evaluation" + } + }, "#sec-function-properties-of-the-global-object": { "current": { - "number": "9.1", + "number": "10.1", "spec": "ECMAScript Explicit Resource Management", "text": "Function Properties of the Global Object", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-function-properties-of-the-global-object" @@ -497,47 +585,31 @@ }, "#sec-fundamental-objects": { "current": { - "number": "10", + "number": "11", "spec": "ECMAScript Explicit Resource Management", "text": "Fundamental Objects", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-fundamental-objects" } }, - "#sec-generator-abstract-operations": { - "current": { - "number": "11.4.1", - "spec": "ECMAScript Explicit Resource Management", - "text": "Generator Abstract Operations", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-generator-abstract-operations" - } - }, "#sec-generator-function-definitions": { "current": { - "number": "7.2", + "number": "8.2", "spec": "ECMAScript Explicit Resource Management", "text": "Generator Function Definitions", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-generator-function-definitions" } }, - "#sec-generator-objects": { - "current": { - "number": "11.4", - "spec": "ECMAScript Explicit Resource Management", - "text": "Generator Objects", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-generator-objects" - } - }, - "#sec-generatorstart": { + "#sec-get-asyncdisposablestack.prototype.disposed": { "current": { - "number": "11.4.1.1", + "number": "12.4.3.4", "spec": "ECMAScript Explicit Resource Management", - "text": "GeneratorStart ( generator, generatorBody )", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-generatorstart" + "text": "get AsyncDisposableStack.prototype.disposed", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-get-asyncdisposablestack.prototype.disposed" } }, "#sec-get-disposablestack.prototype.disposed": { "current": { - "number": "11.3.3.1", + "number": "12.3.3.4", "spec": "ECMAScript Explicit Resource Management", "text": "get DisposableStack.prototype.disposed", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-get-disposablestack.prototype.disposed" @@ -569,7 +641,7 @@ }, "#sec-global-object": { "current": { - "number": "9", + "number": "10", "spec": "ECMAScript Explicit Resource Management", "text": "The Global Object", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-global-object" @@ -585,7 +657,7 @@ }, "#sec-iteration": { "current": { - "number": "11.1", + "number": "12.1", "spec": "ECMAScript Explicit Resource Management", "text": "Iteration", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-iteration" @@ -593,7 +665,7 @@ }, "#sec-iteration-statements": { "current": { - "number": "6.3", + "number": "7.3", "spec": "ECMAScript Explicit Resource Management", "text": "Iteration Statements", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-iteration-statements" @@ -601,15 +673,15 @@ }, "#sec-let-and-const-declarations": { "current": { - "number": "6.2.1", + "number": "7.2.1", "spec": "ECMAScript Explicit Resource Management", - "text": "Let and Const, Const, and Using Declarations", + "text": "Let and Const, Const, Using, and Await Using Declarations", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-let-and-const-declarations" } }, "#sec-let-and-const-declarations-runtime-semantics-bindingevaluation": { "current": { - "number": "6.2.1.3", + "number": "7.2.1.3", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: BindingEvaluation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-let-and-const-declarations-runtime-semantics-bindingevaluation" @@ -617,7 +689,7 @@ }, "#sec-let-and-const-declarations-runtime-semantics-evaluation": { "current": { - "number": "6.2.1.2", + "number": "7.2.1.2", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: Evaluation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-let-and-const-declarations-runtime-semantics-evaluation" @@ -625,7 +697,7 @@ }, "#sec-let-and-const-declarations-static-semantics-early-errors": { "current": { - "number": "6.2.1.1", + "number": "7.2.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Static Semantics: Early Errors", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-let-and-const-declarations-static-semantics-early-errors" @@ -633,7 +705,7 @@ }, "#sec-module-semantics": { "current": { - "number": "8.1.1", + "number": "9.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Module Semantics", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-module-semantics" @@ -641,7 +713,7 @@ }, "#sec-modules": { "current": { - "number": "8.1", + "number": "9.1", "spec": "ECMAScript Explicit Resource Management", "text": "Modules", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-modules" @@ -649,7 +721,7 @@ }, "#sec-nativeerror-object-structure": { "current": { - "number": "10.1.2", + "number": "11.1.2", "spec": "ECMAScript Explicit Resource Management", "text": "NativeError Object Structure", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-nativeerror-object-structure" @@ -671,6 +743,22 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-newdisposecapability" } }, + "#sec-newfunctionenvironment": { + "current": { + "number": "4.1.2.2", + "spec": "ECMAScript Explicit Resource Management", + "text": "NewFunctionEnvironment ( F, newTarget )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-newfunctionenvironment" + } + }, + "#sec-newmoduleenvironment": { + "current": { + "number": "4.1.2.3", + "spec": "ECMAScript Explicit Resource Management", + "text": "NewModuleEnvironment ( E )", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-newmoduleenvironment" + } + }, "#sec-object-environment-records": { "current": { "number": "4.1.1.2", @@ -713,15 +801,23 @@ }, "#sec-properties-of-aggregate-error-instances": { "current": { - "number": "10.1.3.1", + "number": "11.1.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of AggregateError Instances", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-aggregate-error-instances" } }, + "#sec-properties-of-asyncdisposablestack-instances": { + "current": { + "number": "12.4.4", + "spec": "ECMAScript Explicit Resource Management", + "text": "Properties of AsyncDisposableStack Instances", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-asyncdisposablestack-instances" + } + }, "#sec-properties-of-disposablestack-instances": { "current": { - "number": "11.3.4", + "number": "12.3.4", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of DisposableStack Instances", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-disposablestack-instances" @@ -729,7 +825,7 @@ }, "#sec-properties-of-error-instances": { "current": { - "number": "10.1.1", + "number": "11.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of Error Instances", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-error-instances" @@ -737,7 +833,7 @@ }, "#sec-properties-of-nativeerror-instances": { "current": { - "number": "10.1.2.1", + "number": "11.1.2.1", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of NativeError Instances", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-nativeerror-instances" @@ -745,15 +841,31 @@ }, "#sec-properties-of-suppressederror-instances": { "current": { - "number": "10.1.4.4", + "number": "11.1.4.4", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of SuppressedError Instances", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-suppressederror-instances" } }, + "#sec-properties-of-the-asyncdisposablestack-constructor": { + "current": { + "number": "12.4.2", + "spec": "ECMAScript Explicit Resource Management", + "text": "Properties of the AsyncDisposableStack Constructor", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-the-asyncdisposablestack-constructor" + } + }, + "#sec-properties-of-the-asyncdisposablestack-prototype-object": { + "current": { + "number": "12.4.3", + "spec": "ECMAScript Explicit Resource Management", + "text": "Properties of the AsyncDisposableStack Prototype Object", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-the-asyncdisposablestack-prototype-object" + } + }, "#sec-properties-of-the-disposablestack-constructor": { "current": { - "number": "11.3.2", + "number": "12.3.2", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of the DisposableStack Constructor", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-the-disposablestack-constructor" @@ -761,7 +873,7 @@ }, "#sec-properties-of-the-disposablestack-prototype-object": { "current": { - "number": "11.3.3", + "number": "12.3.3", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of the DisposableStack Prototype Object", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-the-disposablestack-prototype-object" @@ -769,7 +881,7 @@ }, "#sec-properties-of-the-suppressederror-constructors": { "current": { - "number": "10.1.4.2", + "number": "11.1.4.2", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of the SuppressedError Constructor", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-the-suppressederror-constructors" @@ -777,7 +889,7 @@ }, "#sec-properties-of-the-suppressederror-prototype-objects": { "current": { - "number": "10.1.4.3", + "number": "11.1.4.3", "spec": "ECMAScript Explicit Resource Management", "text": "Properties of the SuppressedError Prototype Object", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-properties-of-the-suppressederror-prototype-objects" @@ -793,7 +905,7 @@ }, "#sec-resource-management": { "current": { - "number": "11.2", + "number": "12.2", "spec": "ECMAScript Explicit Resource Management", "text": "Resource Management", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-resource-management" @@ -801,7 +913,7 @@ }, "#sec-runtime-semantics-classdefinitionevaluation": { "current": { - "number": "7.4.2", + "number": "8.4.2", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: ClassDefinitionEvaluation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-classdefinitionevaluation" @@ -809,23 +921,15 @@ }, "#sec-runtime-semantics-evaluateclassstaticblockbody": { "current": { - "number": "7.4.1", + "number": "8.4.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: EvaluateClassStaticBlockBody", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-evaluateclassstaticblockbody" } }, - "#sec-runtime-semantics-evaluatefunctionbody": { - "current": { - "number": "7.1.1", - "spec": "ECMAScript Explicit Resource Management", - "text": "Runtime Semantics: EvaluateFunctionBody", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-evaluatefunctionbody" - } - }, "#sec-runtime-semantics-fordeclarationbindinginstantiation": { "current": { - "number": "6.3.2.2", + "number": "7.3.2.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: ForDeclarationBindingInstantiation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-fordeclarationbindinginstantiation" @@ -833,7 +937,7 @@ }, "#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset": { "current": { - "number": "6.3.2.3", + "number": "7.3.2.2", "spec": "ECMAScript Explicit Resource Management", "text": "ForIn/OfBodyEvaluation ( lhs, stmt, iteratorRecord, iterationKind, lhsKind, labelSet [ , iteratorKind ] )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset" @@ -841,7 +945,7 @@ }, "#sec-runtime-semantics-forloopevaluation": { "current": { - "number": "6.3.1.1", + "number": "7.3.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: ForLoopEvaluation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-forloopevaluation" @@ -849,7 +953,7 @@ }, "#sec-runtime-semantics-instantiateasyncfunctionexpression": { "current": { - "number": "7.5.1", + "number": "8.5.2", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: InstantiateAsyncFunctionExpression", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-instantiateasyncfunctionexpression" @@ -857,7 +961,7 @@ }, "#sec-runtime-semantics-instantiateasyncgeneratorfunctionexpression": { "current": { - "number": "7.3.1", + "number": "8.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: InstantiateAsyncGeneratorFunctionExpression", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-instantiateasyncgeneratorfunctionexpression" @@ -865,7 +969,7 @@ }, "#sec-runtime-semantics-instantiategeneratorfunctionexpression": { "current": { - "number": "7.2.1", + "number": "8.2.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: InstantiateGeneratorFunctionExpression", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-instantiategeneratorfunctionexpression" @@ -873,7 +977,7 @@ }, "#sec-runtime-semantics-instantiateordinaryfunctionexpression": { "current": { - "number": "7.1.2", + "number": "8.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: InstantiateOrdinaryFunctionExpression", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-instantiateordinaryfunctionexpression" @@ -881,7 +985,7 @@ }, "#sec-runtime-semantics-iteratorbindinginitialization": { "current": { - "number": "3.2.1", + "number": "3.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: IteratorBindingInitialization", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-iteratorbindinginitialization" @@ -889,7 +993,7 @@ }, "#sec-runtime-semantics-keyedbindinginitialization": { "current": { - "number": "6.2.2.2", + "number": "7.2.2.2", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: KeyedBindingInitialization", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-runtime-semantics-keyedbindinginitialization" @@ -897,7 +1001,7 @@ }, "#sec-source-text-module-record-execute-module": { "current": { - "number": "8.1.1.1.2", + "number": "9.1.1.1.2", "spec": "ECMAScript Explicit Resource Management", "text": "ExecuteModule ( [ capability ] )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-source-text-module-record-execute-module" @@ -905,7 +1009,7 @@ }, "#sec-source-text-module-record-initialize-environment": { "current": { - "number": "8.1.1.1.1", + "number": "9.1.1.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "InitializeEnvironment ( )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-source-text-module-record-initialize-environment" @@ -913,18 +1017,18 @@ }, "#sec-source-text-module-records": { "current": { - "number": "8.1.1.1", + "number": "9.1.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "Source Text Module Records", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-source-text-module-records" } }, - "#sec-statement-rules": { + "#sec-static-semantics-assignmenttargettype": { "current": { - "number": "7.6.1.1", + "number": "3.3.2", "spec": "ECMAScript Explicit Resource Management", - "text": "Statement Rules", - "url": "https://tc39.es/proposal-explicit-resource-management/#sec-statement-rules" + "text": "Static Semantics: AssignmentTargetType", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-static-semantics-assignmenttargettype" } }, "#sec-static-semantics-boundnames": { @@ -937,7 +1041,7 @@ }, "#sec-static-semantics-hascallintailposition": { "current": { - "number": "7.6.1", + "number": "8.6.1", "spec": "ECMAScript Explicit Resource Management", "text": "Static Semantics: HasCallInTailPosition", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-static-semantics-hascallintailposition" @@ -945,12 +1049,20 @@ }, "#sec-static-semantics-hasunterminatedusingdeclaration": { "current": { - "number": "7.6.2", + "number": "8.6.2", "spec": "ECMAScript Explicit Resource Management", "text": "Static Semantics: HasUnterminatedUsingDeclaration", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-static-semantics-hasunterminatedusingdeclaration" } }, + "#sec-static-semantics-isawaitusingdeclaration": { + "current": { + "number": "3.1.4", + "spec": "ECMAScript Explicit Resource Management", + "text": "Static Semantics: IsAwaitUsingDeclaration", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-static-semantics-isawaitusingdeclaration" + } + }, "#sec-static-semantics-isconstantdeclaration": { "current": { "number": "3.1.2", @@ -959,6 +1071,14 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-static-semantics-isconstantdeclaration" } }, + "#sec-static-semantics-isfunctiondefinition": { + "current": { + "number": "3.2.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "Static Semantics: IsFunctionDefinition", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-static-semantics-isfunctiondefinition" + } + }, "#sec-static-semantics-isusingdeclaration": { "current": { "number": "3.1.3", @@ -969,7 +1089,7 @@ }, "#sec-suppressederror": { "current": { - "number": "10.1.4.1.1", + "number": "11.1.4.1.1", "spec": "ECMAScript Explicit Resource Management", "text": "SuppressedError ( error, suppressed, message )", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror" @@ -977,7 +1097,7 @@ }, "#sec-suppressederror-constructor": { "current": { - "number": "10.1.4.1", + "number": "11.1.4.1", "spec": "ECMAScript Explicit Resource Management", "text": "The SuppressedError Constructor", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror-constructor" @@ -985,7 +1105,7 @@ }, "#sec-suppressederror-objects": { "current": { - "number": "10.1.4", + "number": "11.1.4", "spec": "ECMAScript Explicit Resource Management", "text": "SuppressedError Objects", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror-objects" @@ -993,7 +1113,7 @@ }, "#sec-suppressederror.prototype": { "current": { - "number": "10.1.4.2.1", + "number": "11.1.4.2.1", "spec": "ECMAScript Explicit Resource Management", "text": "SuppressedError.prototype", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror.prototype" @@ -1001,7 +1121,7 @@ }, "#sec-suppressederror.prototype.constructor": { "current": { - "number": "10.1.4.3.1", + "number": "11.1.4.3.1", "spec": "ECMAScript Explicit Resource Management", "text": "SuppressedError.prototype.constructor", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror.prototype.constructor" @@ -1009,7 +1129,7 @@ }, "#sec-suppressederror.prototype.message": { "current": { - "number": "10.1.4.3.2", + "number": "11.1.4.3.2", "spec": "ECMAScript Explicit Resource Management", "text": "SuppressedError.prototype.message", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror.prototype.message" @@ -1017,7 +1137,7 @@ }, "#sec-suppressederror.prototype.name": { "current": { - "number": "10.1.4.3.3", + "number": "11.1.4.3.3", "spec": "ECMAScript Explicit Resource Management", "text": "SuppressedError.prototype.name", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-suppressederror.prototype.name" @@ -1025,7 +1145,7 @@ }, "#sec-switch-statement": { "current": { - "number": "6.4", + "number": "7.4", "spec": "ECMAScript Explicit Resource Management", "text": "The switch Statement", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-switch-statement" @@ -1033,7 +1153,7 @@ }, "#sec-switch-statement-runtime-semantics-evaluation": { "current": { - "number": "6.4.1", + "number": "7.4.1", "spec": "ECMAScript Explicit Resource Management", "text": "Runtime Semantics: Evaluation", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-switch-statement-runtime-semantics-evaluation" @@ -1047,10 +1167,18 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-syntax-directed-operations" } }, - "#sec-syntax-directed-operations-miscellaneous": { + "#sec-syntax-directed-operations-function-name-inference": { "current": { "number": "3.2", "spec": "ECMAScript Explicit Resource Management", + "text": "Function Name Inference", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-syntax-directed-operations-function-name-inference" + } + }, + "#sec-syntax-directed-operations-miscellaneous": { + "current": { + "number": "3.3", + "spec": "ECMAScript Explicit Resource Management", "text": "Miscellaneous", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-syntax-directed-operations-miscellaneous" } @@ -1065,7 +1193,7 @@ }, "#sec-tail-position-calls": { "current": { - "number": "7.6", + "number": "8.6", "spec": "ECMAScript Explicit Resource Management", "text": "Tail Position Calls", "url": "https://tc39.es/proposal-explicit-resource-management/#sec-tail-position-calls" @@ -1079,6 +1207,14 @@ "url": "https://tc39.es/proposal-explicit-resource-management/#sec-the-environment-record-type-hierarchy" } }, + "#sec-unary-operators": { + "current": { + "number": "6.1", + "spec": "ECMAScript Explicit Resource Management", + "text": "Unary Operators", + "url": "https://tc39.es/proposal-explicit-resource-management/#sec-unary-operators" + } + }, "#sec-well-known-intrinsic-objects": { "current": { "number": "1.1.2.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-float16array.json b/bikeshed/spec-data/readonly/headings/headings-tc39-float16array.json new file mode 100644 index 0000000000..37e8dac2b4 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-float16array.json @@ -0,0 +1,90 @@ +{ + "#sec-constructor-properties-of-the-global-object": { + "current": { + "number": "2", + "spec": "Float16Array", + "text": "Constructor Properties of the Global Object", + "url": "https://tc39.es/proposal-float16array/#sec-constructor-properties-of-the-global-object" + } + }, + "#sec-dataview.prototype.getfloat16": { + "current": { + "number": "7.1", + "spec": "Float16Array", + "text": "DataView.prototype.getFloat16 ( byteOffset [ , littleEndian ] )", + "url": "https://tc39.es/proposal-float16array/#sec-dataview.prototype.getfloat16" + } + }, + "#sec-dataview.prototype.setfloat16": { + "current": { + "number": "7.2", + "spec": "Float16Array", + "text": "DataView.prototype.setFloat16 ( byteOffset, value [ , littleEndian ] )", + "url": "https://tc39.es/proposal-float16array/#sec-dataview.prototype.setfloat16" + } + }, + "#sec-float16array": { + "current": { + "number": "2.1", + "spec": "Float16Array", + "text": "Float16Array ( . . . )", + "url": "https://tc39.es/proposal-float16array/#sec-float16array" + } + }, + "#sec-function-properties-of-the-math-object": { + "current": { + "number": "3", + "spec": "Float16Array", + "text": "Function Properties of the Math Object", + "url": "https://tc39.es/proposal-float16array/#sec-function-properties-of-the-math-object" + } + }, + "#sec-math.f16round": { + "current": { + "number": "3.1", + "spec": "Float16Array", + "text": "Math.f16round ( x )", + "url": "https://tc39.es/proposal-float16array/#sec-math.f16round" + } + }, + "#sec-numerictorawbytes": { + "current": { + "number": "6", + "spec": "Float16Array", + "text": "NumericToRawBytes ( type, value, isLittleEndian )", + "url": "https://tc39.es/proposal-float16array/#sec-numerictorawbytes" + } + }, + "#sec-properties-of-the-dataview-prototype-object": { + "current": { + "number": "7", + "spec": "Float16Array", + "text": "Properties of the DataView Prototype Object", + "url": "https://tc39.es/proposal-float16array/#sec-properties-of-the-dataview-prototype-object" + } + }, + "#sec-proposal-intro": { + "current": { + "number": "1", + "spec": "Float16Array", + "text": "Introduction", + "url": "https://tc39.es/proposal-float16array/#sec-proposal-intro" + } + }, + "#sec-rawbytestonumeric": { + "current": { + "number": "5", + "spec": "Float16Array", + "text": "RawBytesToNumeric ( type, rawBytes, isLittleEndian )", + "url": "https://tc39.es/proposal-float16array/#sec-rawbytestonumeric" + } + }, + "#sec-typedarray-objects": { + "current": { + "number": "4", + "spec": "Float16Array", + "text": "TypedArray Objects", + "url": "https://tc39.es/proposal-float16array/#sec-typedarray-objects" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-import-assertions.json b/bikeshed/spec-data/readonly/headings/headings-tc39-import-assertions.json deleted file mode 100644 index 1e761c2c8d..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-import-assertions.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "#sec-FinishLoadingImportedModule": { - "current": { - "number": "2.3", - "spec": "import assertions", - "text": "FinishLoadingImportedModule ( referrer, specifiermoduleRequest, payload, result )", - "url": "https://tc39.es/proposal-import-assertions/#sec-FinishLoadingImportedModule" - } - }, - "#sec-FinishLoadingImportedModule-AssertionsEqual": { - "current": { - "number": "2.3.1", - "spec": "import assertions", - "text": "AssertionsEqual(left, right)", - "url": "https://tc39.es/proposal-import-assertions/#sec-FinishLoadingImportedModule-AssertionsEqual" - } - }, - "#sec-assert-clause-early-errors": { - "current": { - "number": "2.5", - "spec": "import assertions", - "text": "Static Semantics: Early Errors", - "url": "https://tc39.es/proposal-import-assertions/#sec-assert-clause-early-errors" - } - }, - "#sec-assert-clause-to-assertions": { - "current": { - "number": "2.6", - "spec": "import assertions", - "text": "Static Semantics: AssertClauseToAssertions", - "url": "https://tc39.es/proposal-import-assertions/#sec-assert-clause-to-assertions" - } - }, - "#sec-assertion-key-string-value": { - "current": { - "number": "2.7", - "spec": "import assertions", - "text": "Static Semantics: StringValue", - "url": "https://tc39.es/proposal-import-assertions/#sec-assertion-key-string-value" - } - }, - "#sec-evaluate-import-call": { - "current": { - "number": "2.1.1.1", - "spec": "import assertions", - "text": "EvaluateImportCall ( specifierExpression [ , optionsExpression ] )", - "url": "https://tc39.es/proposal-import-assertions/#sec-evaluate-import-call" - } - }, - "#sec-hostgetsupportedimportassertions": { - "current": { - "number": "2.4", - "spec": "import assertions", - "text": "Static Semantics: HostGetSupportedImportAssertions ()", - "url": "https://tc39.es/proposal-import-assertions/#sec-hostgetsupportedimportassertions" - } - }, - "#sec-hostloadimportedmodule": { - "current": { - "number": "2.2", - "spec": "import assertions", - "text": "HostLoadImportedModule ( referrer, specifiermoduleRequest, hostDefined, payload )", - "url": "https://tc39.es/proposal-import-assertions/#sec-hostloadimportedmodule" - } - }, - "#sec-import-call-runtime-semantics-evaluation": { - "current": { - "number": "2.1.1", - "spec": "import assertions", - "text": "Runtime Semantics: Evaluation", - "url": "https://tc39.es/proposal-import-assertions/#sec-import-call-runtime-semantics-evaluation" - } - }, - "#sec-import-calls": { - "current": { - "number": "2.1", - "spec": "import assertions", - "text": "Import Calls", - "url": "https://tc39.es/proposal-import-assertions/#sec-import-calls" - } - }, - "#sec-modulerequest-record": { - "current": { - "number": "2.8", - "spec": "import assertions", - "text": "ModuleRequest Records", - "url": "https://tc39.es/proposal-import-assertions/#sec-modulerequest-record" - } - }, - "#sec-semantics": { - "current": { - "number": "2", - "spec": "import assertions", - "text": "Semantics", - "url": "https://tc39.es/proposal-import-assertions/#sec-semantics" - } - }, - "#sec-static-semantics-modulerequests": { - "current": { - "number": "2.9", - "spec": "import assertions", - "text": "Static Semantics: ModuleRequests", - "url": "https://tc39.es/proposal-import-assertions/#sec-static-semantics-modulerequests" - } - }, - "#sec-syntax": { - "current": { - "number": "1", - "spec": "import assertions", - "text": "Syntax", - "url": "https://tc39.es/proposal-import-assertions/#sec-syntax" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-import-attributes.json b/bikeshed/spec-data/readonly/headings/headings-tc39-import-attributes.json new file mode 100644 index 0000000000..5a8833e1f5 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-import-attributes.json @@ -0,0 +1,186 @@ +{ + "#sec-AllImportAttributesSupported": { + "current": { + "number": "16.2.1.10", + "spec": "Import Attributes", + "text": "AllImportAttributesSupported ( attributes )", + "url": "https://tc39.es/proposal-import-attributes/#sec-AllImportAttributesSupported" + } + }, + "#sec-FinishLoadingImportedModule": { + "current": { + "number": "16.2.1.9", + "spec": "Import Attributes", + "text": "FinishLoadingImportedModule ( referrer, specifier, moduleRequest, payload, result )", + "url": "https://tc39.es/proposal-import-attributes/#sec-FinishLoadingImportedModule" + } + }, + "#sec-HostLoadImportedModule": { + "current": { + "number": "16.2.1.8", + "spec": "Import Attributes", + "text": "HostLoadImportedModule ( referrer, specifier, moduleRequest, hostDefined, payload )", + "url": "https://tc39.es/proposal-import-attributes/#sec-HostLoadImportedModule" + } + }, + "#sec-InnerModuleLoading": { + "current": { + "number": "16.2.1.5.1.1", + "spec": "Import Attributes", + "text": "InnerModuleLoading ( state, module )", + "url": "https://tc39.es/proposal-import-attributes/#sec-InnerModuleLoading" + } + }, + "#sec-LoadRequestedModules": { + "current": { + "number": "16.2.1.5.1", + "spec": "Import Attributes", + "text": "LoadRequestedModules ( [ hostDefined ] )", + "url": "https://tc39.es/proposal-import-attributes/#sec-LoadRequestedModules" + } + }, + "#sec-ModuleRequestsEqual": { + "current": { + "number": "16.2.1.1.1", + "spec": "Import Attributes", + "text": "ModuleRequestsEqual ( left, right )", + "url": "https://tc39.es/proposal-import-attributes/#sec-ModuleRequestsEqual" + } + }, + "#sec-cyclic-module-records": { + "current": { + "number": "16.2.1.5", + "spec": "Import Attributes", + "text": "Cyclic Module Records", + "url": "https://tc39.es/proposal-import-attributes/#sec-cyclic-module-records" + } + }, + "#sec-ecmascript-language-expressions": { + "current": { + "number": "13", + "spec": "Import Attributes", + "text": "ECMAScript Language: Expressions", + "url": "https://tc39.es/proposal-import-attributes/#sec-ecmascript-language-expressions" + } + }, + "#sec-ecmascript-language-scripts-and-modules": { + "current": { + "number": "16", + "spec": "Import Attributes", + "text": "ECMAScript Language: Scripts and Modules", + "url": "https://tc39.es/proposal-import-attributes/#sec-ecmascript-language-scripts-and-modules" + } + }, + "#sec-evaluate-import-call": { + "current": { + "number": "13.3.10.2", + "spec": "Import Attributes", + "text": "EvaluateImportCall ( specifierExpression [ , optionsExpression ] )", + "url": "https://tc39.es/proposal-import-attributes/#sec-evaluate-import-call" + } + }, + "#sec-exports": { + "current": { + "number": "16.2.3", + "spec": "Import Attributes", + "text": "Exports", + "url": "https://tc39.es/proposal-import-attributes/#sec-exports" + } + }, + "#sec-hostgetsupportedimportattributes": { + "current": { + "number": "16.2.1.10.1", + "spec": "Import Attributes", + "text": "HostGetSupportedImportAttributes ( )", + "url": "https://tc39.es/proposal-import-attributes/#sec-hostgetsupportedimportattributes" + } + }, + "#sec-import-call-runtime-semantics-evaluation": { + "current": { + "number": "13.3.10.1", + "spec": "Import Attributes", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-import-attributes/#sec-import-call-runtime-semantics-evaluation" + } + }, + "#sec-import-calls": { + "current": { + "number": "13.3.10", + "spec": "Import Attributes", + "text": "Import Calls", + "url": "https://tc39.es/proposal-import-attributes/#sec-import-calls" + } + }, + "#sec-imports": { + "current": { + "number": "16.2.2", + "spec": "Import Attributes", + "text": "Imports", + "url": "https://tc39.es/proposal-import-attributes/#sec-imports" + } + }, + "#sec-imports-static-semantics-early-errors": { + "current": { + "number": "16.2.2.1", + "spec": "Import Attributes", + "text": "Static Semantics: Early Errors", + "url": "https://tc39.es/proposal-import-attributes/#sec-imports-static-semantics-early-errors" + } + }, + "#sec-left-hand-side-expressions": { + "current": { + "number": "13.3", + "spec": "Import Attributes", + "text": "Left-Hand-Side Expressions", + "url": "https://tc39.es/proposal-import-attributes/#sec-left-hand-side-expressions" + } + }, + "#sec-module-semantics": { + "current": { + "number": "16.2.1", + "spec": "Import Attributes", + "text": "Module Semantics", + "url": "https://tc39.es/proposal-import-attributes/#sec-module-semantics" + } + }, + "#sec-modulerequest-record": { + "current": { + "number": "16.2.1.1", + "spec": "Import Attributes", + "text": "ModuleRequest and ImportAttribute Records", + "url": "https://tc39.es/proposal-import-attributes/#sec-modulerequest-record" + } + }, + "#sec-modules": { + "current": { + "number": "16.2", + "spec": "Import Attributes", + "text": "Modules", + "url": "https://tc39.es/proposal-import-attributes/#sec-modules" + } + }, + "#sec-source-text-module-records": { + "current": { + "number": "16.2.1.6", + "spec": "Import Attributes", + "text": "Source Text Module Records", + "url": "https://tc39.es/proposal-import-attributes/#sec-source-text-module-records" + } + }, + "#sec-static-semantics-modulerequests": { + "current": { + "number": "16.2.1.3", + "spec": "Import Attributes", + "text": "Static Semantics: ModuleRequests", + "url": "https://tc39.es/proposal-import-attributes/#sec-static-semantics-modulerequests" + } + }, + "#sec-with-clause-to-attributes": { + "current": { + "number": "16.2.2.2", + "spec": "Import Attributes", + "text": "Static Semantics: WithClauseToAttributes", + "url": "https://tc39.es/proposal-import-attributes/#sec-with-clause-to-attributes" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-duration-format.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-duration-format.json index b715b55236..6f1240ec50 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-duration-format.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-duration-format.json @@ -31,12 +31,12 @@ "url": "https://tc39.es/proposal-intl-duration-format/#sec-Intl.DurationFormat.prototype" } }, - "#sec-Intl.DurationFormat.prototype-@@tostringtag": { + "#sec-Intl.DurationFormat.prototype-%40%40tostringtag": { "current": { "number": "1.4.2", "spec": "Intl.DurationFormat", "text": "Intl.DurationFormat.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-intl-duration-format/#sec-Intl.DurationFormat.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-intl-duration-format/#sec-Intl.DurationFormat.prototype-%40%40tostringtag" } }, "#sec-Intl.DurationFormat.prototype.constructor": { @@ -79,6 +79,14 @@ "url": "https://tc39.es/proposal-intl-duration-format/#sec-Intl.DurationFormat.supportedLocalesOf" } }, + "#sec-addfractionaldigits": { + "current": { + "number": "1.1.7", + "spec": "Intl.DurationFormat", + "text": "AddFractionalDigits ( durationFormat, duration )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-addfractionaldigits" + } + }, "#sec-duration-records": { "current": { "number": "1.1.1", @@ -87,19 +95,51 @@ "url": "https://tc39.es/proposal-intl-duration-format/#sec-duration-records" } }, - "#sec-durationrecordsign": { + "#sec-durationsign": { "current": { "number": "1.1.4", "spec": "Intl.DurationFormat", - "text": "DurationRecordSign ( record )", - "url": "https://tc39.es/proposal-intl-duration-format/#sec-durationrecordsign" + "text": "DurationSign ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-durationsign" + } + }, + "#sec-formatnumerichours": { + "current": { + "number": "1.1.9", + "spec": "Intl.DurationFormat", + "text": "FormatNumericHours ( durationFormat, hoursValue, signDisplayed )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-formatnumerichours" + } + }, + "#sec-formatnumericminutes": { + "current": { + "number": "1.1.10", + "spec": "Intl.DurationFormat", + "text": "FormatNumericMinutes ( durationFormat, minutesValue, hoursDisplayed, signDisplayed )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-formatnumericminutes" + } + }, + "#sec-formatnumericseconds": { + "current": { + "number": "1.1.11", + "spec": "Intl.DurationFormat", + "text": "FormatNumericSeconds ( durationFormat, secondsValue, minutesDisplayed, signDisplayed )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-formatnumericseconds" + } + }, + "#sec-formatnumericunits": { + "current": { + "number": "1.1.12", + "spec": "Intl.DurationFormat", + "text": "FormatNumericUnits ( durationFormat, duration, firstNumericUnit, signDisplayed )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-formatnumericunits" } }, "#sec-getdurationunitoptions": { "current": { "number": "1.1.6", "spec": "Intl.DurationFormat", - "text": "GetDurationUnitOptions ( unit, options, baseStyle, stylesList, digitalBase, prevStyle )", + "text": "GetDurationUnitOptions ( unit, options, baseStyle, stylesList, digitalBase, prevStyle, twoDigitHours )", "url": "https://tc39.es/proposal-intl-duration-format/#sec-getdurationunitoptions" } }, @@ -119,17 +159,33 @@ "url": "https://tc39.es/proposal-intl-duration-format/#sec-intl-durationformat-constructor" } }, - "#sec-isvaliddurationrecord": { + "#sec-isvalidduration": { "current": { "number": "1.1.5", "spec": "Intl.DurationFormat", - "text": "IsValidDurationRecord ( record )", - "url": "https://tc39.es/proposal-intl-duration-format/#sec-isvaliddurationrecord" + "text": "IsValidDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-isvalidduration" + } + }, + "#sec-listformatparts": { + "current": { + "number": "1.1.13", + "spec": "Intl.DurationFormat", + "text": "ListFormatParts ( durationFormat, partitionedPartsList )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-listformatparts" + } + }, + "#sec-nextunitfractional": { + "current": { + "number": "1.1.8", + "spec": "Intl.DurationFormat", + "text": "NextUnitFractional ( durationFormat, unit )", + "url": "https://tc39.es/proposal-intl-duration-format/#sec-nextunitfractional" } }, "#sec-partitiondurationformatpattern": { "current": { - "number": "1.1.7", + "number": "1.1.14", "spec": "Intl.DurationFormat", "text": "PartitionDurationFormatPattern ( durationFormat, duration )", "url": "https://tc39.es/proposal-intl-duration-format/#sec-partitiondurationformatpattern" @@ -167,12 +223,12 @@ "url": "https://tc39.es/proposal-intl-duration-format/#sec-todurationrecord" } }, - "#sec-tointegerwithoutrounding": { + "#sec-tointegerifintegral": { "current": { "number": "1.1.2", "spec": "Intl.DurationFormat", "text": "ToIntegerIfIntegral ( argument )", - "url": "https://tc39.es/proposal-intl-duration-format/#sec-tointegerwithoutrounding" + "url": "https://tc39.es/proposal-intl-duration-format/#sec-tointegerifintegral" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-enumeration.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-enumeration.json deleted file mode 100644 index 12888d5cc2..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-enumeration.json +++ /dev/null @@ -1,282 +0,0 @@ -{ - "#intl-object": { - "current": { - "number": "2", - "spec": "Intl Enumeration API", - "text": "The Intl Object", - "url": "https://tc39.es/proposal-intl-enumeration/#intl-object" - } - }, - "#locales-currencies-tz": { - "current": { - "number": "1", - "spec": "Intl Enumeration API", - "text": "Identification of Locales, Currencies, Time Zones, and Measurement Units, Numbering Systems, Collations, and Calendars", - "url": "https://tc39.es/proposal-intl-enumeration/#locales-currencies-tz" - } - }, - "#sec-availablecanonicalcalendars": { - "current": { - "number": "1.8.1", - "spec": "Intl Enumeration API", - "text": "AvailableCanonicalCalendars ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-availablecanonicalcalendars" - } - }, - "#sec-availablecanonicalcollations": { - "current": { - "number": "1.7.1", - "spec": "Intl Enumeration API", - "text": "AvailableCanonicalCollations ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-availablecanonicalcollations" - } - }, - "#sec-availablecanonicalcurrencies": { - "current": { - "number": "1.3.2", - "spec": "Intl Enumeration API", - "text": "AvailableCanonicalCurrencies ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-availablecanonicalcurrencies" - } - }, - "#sec-availablecanonicalnumberingsystems": { - "current": { - "number": "1.6.1", - "spec": "Intl Enumeration API", - "text": "AvailableCanonicalNumberingSystems ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-availablecanonicalnumberingsystems" - } - }, - "#sec-availablecanonicaltimezones": { - "current": { - "number": "1.4.4", - "spec": "Intl Enumeration API", - "text": "AvailableCanonicalTimeZones ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-availablecanonicaltimezones" - } - }, - "#sec-availablecanonicalunits": { - "current": { - "number": "1.5.3", - "spec": "Intl Enumeration API", - "text": "AvailableCanonicalUnits ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-availablecanonicalunits" - } - }, - "#sec-calendar-types": { - "current": { - "number": "1.8", - "spec": "Intl Enumeration API", - "text": "Calendar Types", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-calendar-types" - } - }, - "#sec-canonicalizetimezonename": { - "current": { - "number": "1.4.2", - "spec": "Intl Enumeration API", - "text": "CanonicalizeTimeZoneName ( timeZone )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-canonicalizetimezonename" - } - }, - "#sec-case-sensitivity-and-case-mapping": { - "current": { - "number": "1.1", - "spec": "Intl Enumeration API", - "text": "Case Sensitivity and Case Mapping", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-case-sensitivity-and-case-mapping" - } - }, - "#sec-collation-types": { - "current": { - "number": "1.7", - "spec": "Intl Enumeration API", - "text": "Collation Types", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-collation-types" - } - }, - "#sec-constructor-properties-of-the-intl-object": { - "current": { - "number": "2.1", - "spec": "Intl Enumeration API", - "text": "Constructor Properties of the Intl Object", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-constructor-properties-of-the-intl-object" - } - }, - "#sec-currency-codes": { - "current": { - "number": "1.3", - "spec": "Intl Enumeration API", - "text": "Currency Codes", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-currency-codes" - } - }, - "#sec-defaulttimezone": { - "current": { - "number": "1.4.3", - "spec": "Intl Enumeration API", - "text": "DefaultTimeZone ( )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-defaulttimezone" - } - }, - "#sec-function-properties-of-the-intl-object": { - "current": { - "number": "2.2", - "spec": "Intl Enumeration API", - "text": "Function Properties of the Intl Object", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-function-properties-of-the-intl-object" - } - }, - "#sec-intl.collator-intro": { - "current": { - "number": "2.1.1", - "spec": "Intl Enumeration API", - "text": "Intl.Collator ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.collator-intro" - } - }, - "#sec-intl.datetimeformat-intro": { - "current": { - "number": "2.1.2", - "spec": "Intl Enumeration API", - "text": "Intl.DateTimeFormat ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.datetimeformat-intro" - } - }, - "#sec-intl.displaynames-intro": { - "current": { - "number": "2.1.3", - "spec": "Intl Enumeration API", - "text": "Intl.DisplayNames ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.displaynames-intro" - } - }, - "#sec-intl.getcanonicallocales": { - "current": { - "number": "2.2.1", - "spec": "Intl Enumeration API", - "text": "Intl.getCanonicalLocales ( locales )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.getcanonicallocales" - } - }, - "#sec-intl.listformat-intro": { - "current": { - "number": "2.1.4", - "spec": "Intl Enumeration API", - "text": "Intl.ListFormat ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.listformat-intro" - } - }, - "#sec-intl.locale-intro": { - "current": { - "number": "2.1.5", - "spec": "Intl Enumeration API", - "text": "Intl.Locale ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.locale-intro" - } - }, - "#sec-intl.numberformat-intro": { - "current": { - "number": "2.1.6", - "spec": "Intl Enumeration API", - "text": "Intl.NumberFormat ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.numberformat-intro" - } - }, - "#sec-intl.pluralrules-intro": { - "current": { - "number": "2.1.7", - "spec": "Intl Enumeration API", - "text": "Intl.PluralRules ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.pluralrules-intro" - } - }, - "#sec-intl.relativetimeformat-intro": { - "current": { - "number": "2.1.8", - "spec": "Intl Enumeration API", - "text": "Intl.RelativeTimeFormat ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.relativetimeformat-intro" - } - }, - "#sec-intl.segmenter-intro": { - "current": { - "number": "2.1.9", - "spec": "Intl Enumeration API", - "text": "Intl.Segmenter ( . . . )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.segmenter-intro" - } - }, - "#sec-intl.supportedvaluesof": { - "current": { - "number": "2.2.2", - "spec": "Intl Enumeration API", - "text": "Intl.supportedValuesOf ( key )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-intl.supportedvaluesof" - } - }, - "#sec-issanctionedsingleunitidentifier": { - "current": { - "number": "1.5.2", - "spec": "Intl Enumeration API", - "text": "IsSanctionedSingleUnitIdentifier ( unitIdentifier )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-issanctionedsingleunitidentifier" - } - }, - "#sec-isvalidtimezonename": { - "current": { - "number": "1.4.1", - "spec": "Intl Enumeration API", - "text": "IsValidTimeZoneName ( timeZone )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-isvalidtimezonename" - } - }, - "#sec-iswellformedcurrencycode": { - "current": { - "number": "1.3.1", - "spec": "Intl Enumeration API", - "text": "IsWellFormedCurrencyCode ( currency )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-iswellformedcurrencycode" - } - }, - "#sec-iswellformedunitidentifier": { - "current": { - "number": "1.5.1", - "spec": "Intl Enumeration API", - "text": "IsWellFormedUnitIdentifier ( unitIdentifier )", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-iswellformedunitidentifier" - } - }, - "#sec-language-tags": { - "current": { - "number": "1.2", - "spec": "Intl Enumeration API", - "text": "Language Tags", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-language-tags" - } - }, - "#sec-measurement-unit-identifiers": { - "current": { - "number": "1.5", - "spec": "Intl Enumeration API", - "text": "Measurement Unit Identifiers", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-measurement-unit-identifiers" - } - }, - "#sec-numberingsystem-identifiers": { - "current": { - "number": "1.6", - "spec": "Intl Enumeration API", - "text": "Numbering System Identifiers", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-numberingsystem-identifiers" - } - }, - "#sec-time-zone-names": { - "current": { - "number": "1.4", - "spec": "Intl Enumeration API", - "text": "Time Zone Names", - "url": "https://tc39.es/proposal-intl-enumeration/#sec-time-zone-names" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-extend-timezonename.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-extend-timezonename.json deleted file mode 100644 index ba78a8e694..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-extend-timezonename.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "#datetimeformat-objects": { - "current": { - "number": "1", - "spec": "Extend TimeZoneName Option", - "text": "DateTimeFormat Objects", - "url": "https://tc39.es/proposal-intl-extend-timezonename/#datetimeformat-objects" - } - }, - "#sec-basicformatmatcher": { - "current": { - "number": "1.1.1", - "spec": "Extend TimeZoneName Option", - "text": "BasicFormatMatcher ( options, formats )", - "url": "https://tc39.es/proposal-intl-extend-timezonename/#sec-basicformatmatcher" - } - }, - "#sec-datetimeformat-abstracts": { - "current": { - "number": "1.1", - "spec": "Extend TimeZoneName Option", - "text": "Abstract Operations For DateTimeFormat Objects", - "url": "https://tc39.es/proposal-intl-extend-timezonename/#sec-datetimeformat-abstracts" - } - }, - "#sec-formatdatetimepattern": { - "current": { - "number": "1.1.2", - "spec": "Extend TimeZoneName Option", - "text": "FormatDateTimePattern ( dateTimeFormat, patternParts, x, rangeFormatOptions )", - "url": "https://tc39.es/proposal-intl-extend-timezonename/#sec-formatdatetimepattern" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-locale-info.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-locale-info.json index 8696260a0a..6509085189 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-locale-info.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-locale-info.json @@ -23,12 +23,12 @@ "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype" } }, - "#sec-Intl.Locale.prototype-@@tostringtag": { + "#sec-Intl.Locale.prototype-%40%40tostringtag": { "current": { "number": "1.4.2", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype-%40%40tostringtag" } }, "#sec-Intl.Locale.prototype.baseName": { @@ -71,9 +71,17 @@ "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.constructor" } }, + "#sec-Intl.Locale.prototype.firstDayOfWeek": { + "current": { + "number": "1.4.10", + "spec": "Intl Locale Info", + "text": "get Intl.Locale.prototype.firstDayOfWeek", + "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.firstDayOfWeek" + } + }, "#sec-Intl.Locale.prototype.getCalendars": { "current": { - "number": "1.4.16", + "number": "1.4.17", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getCalendars ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getCalendars" @@ -81,7 +89,7 @@ }, "#sec-Intl.Locale.prototype.getCollations": { "current": { - "number": "1.4.17", + "number": "1.4.18", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getCollations ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getCollations" @@ -89,7 +97,7 @@ }, "#sec-Intl.Locale.prototype.getHourCycles": { "current": { - "number": "1.4.18", + "number": "1.4.19", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getHourCycles ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getHourCycles" @@ -97,7 +105,7 @@ }, "#sec-Intl.Locale.prototype.getNumberingSystems": { "current": { - "number": "1.4.19", + "number": "1.4.20", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getNumberingSystems ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getNumberingSystems" @@ -105,7 +113,7 @@ }, "#sec-Intl.Locale.prototype.getTextInfo": { "current": { - "number": "1.4.21", + "number": "1.4.22", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getTextInfo ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getTextInfo" @@ -113,7 +121,7 @@ }, "#sec-Intl.Locale.prototype.getTimeZones": { "current": { - "number": "1.4.20", + "number": "1.4.21", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getTimeZones ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getTimeZones" @@ -121,7 +129,7 @@ }, "#sec-Intl.Locale.prototype.getWeekInfo": { "current": { - "number": "1.4.22", + "number": "1.4.23", "spec": "Intl Locale Info", "text": "Intl.Locale.prototype.getWeekInfo ( )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getWeekInfo" @@ -129,7 +137,7 @@ }, "#sec-Intl.Locale.prototype.hourCycle": { "current": { - "number": "1.4.10", + "number": "1.4.11", "spec": "Intl Locale Info", "text": "get Intl.Locale.prototype.hourCycle", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.hourCycle" @@ -137,7 +145,7 @@ }, "#sec-Intl.Locale.prototype.language": { "current": { - "number": "1.4.13", + "number": "1.4.14", "spec": "Intl Locale Info", "text": "get Intl.Locale.prototype.language", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.language" @@ -161,7 +169,7 @@ }, "#sec-Intl.Locale.prototype.numberingSystem": { "current": { - "number": "1.4.12", + "number": "1.4.13", "spec": "Intl Locale Info", "text": "get Intl.Locale.prototype.numberingSystem", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.numberingSystem" @@ -169,7 +177,7 @@ }, "#sec-Intl.Locale.prototype.numeric": { "current": { - "number": "1.4.11", + "number": "1.4.12", "spec": "Intl Locale Info", "text": "get Intl.Locale.prototype.numeric", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.numeric" @@ -177,7 +185,7 @@ }, "#sec-Intl.Locale.prototype.region": { "current": { - "number": "1.4.15", + "number": "1.4.16", "spec": "Intl Locale Info", "text": "get Intl.Locale.prototype.region", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.region" @@ -185,7 +193,7 @@ }, "#sec-Intl.Locale.prototype.script": { "current": { - "number": "1.4.14", + "number": "1.4.15", "spec": "Intl Locale Info", "text": "get Intl.Locale.prototype.script", "url": "https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.script" @@ -295,6 +303,14 @@ "url": "https://tc39.es/proposal-intl-locale-info/#sec-properties-of-intl-locale-constructor" } }, + "#sec-properties-of-intl-locale-instances": { + "current": { + "number": "1.5", + "spec": "Intl Locale Info", + "text": "Properties of Intl.Locale Instances", + "url": "https://tc39.es/proposal-intl-locale-info/#sec-properties-of-intl-locale-instances" + } + }, "#sec-properties-of-intl-locale-prototype-object": { "current": { "number": "1.4", @@ -303,6 +319,14 @@ "url": "https://tc39.es/proposal-intl-locale-info/#sec-properties-of-intl-locale-prototype-object" } }, + "#sec-string-to-weekday-value": { + "current": { + "number": "1.1.9", + "spec": "Intl Locale Info", + "text": "StringToWeekdayValue ( fw )", + "url": "https://tc39.es/proposal-intl-locale-info/#sec-string-to-weekday-value" + } + }, "#sec-time-zones-of-locale": { "current": { "number": "1.1.6", @@ -313,10 +337,18 @@ }, "#sec-week-info-of-locale": { "current": { - "number": "1.1.8", + "number": "1.1.10", "spec": "Intl Locale Info", "text": "WeekInfoOfLocale ( loc )", "url": "https://tc39.es/proposal-intl-locale-info/#sec-week-info-of-locale" } + }, + "#sec-weekday-to-string": { + "current": { + "number": "1.1.8", + "spec": "Intl Locale Info", + "text": "WeekdayToString ( fw )", + "url": "https://tc39.es/proposal-intl-locale-info/#sec-weekday-to-string" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-negotiation.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-negotiation.json deleted file mode 100644 index bce6767cda..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-negotiation.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "#locale-and-parameter-negotiation": { - "current": { - "number": "1", - "spec": "Intl Parameter Resolution", - "text": "Locale and Parameter Negotiation", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#locale-and-parameter-negotiation" - } - }, - "#sec-abstract-operations": { - "current": { - "number": "1.2", - "spec": "Intl Parameter Resolution", - "text": "Abstract Operations", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-abstract-operations" - } - }, - "#sec-bestavailablelocale": { - "current": { - "number": "1.2.2", - "spec": "Intl Parameter Resolution", - "text": "BestAvailableLocale ( availableLocales, locale )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-bestavailablelocale" - } - }, - "#sec-bestfitmatcher": { - "current": { - "number": "1.2.4", - "spec": "Intl Parameter Resolution", - "text": "BestFitMatcher ( availableLocales, requestedLocales )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-bestfitmatcher" - } - }, - "#sec-bestfitsupportedlocales": { - "current": { - "number": "1.2.9", - "spec": "Intl Parameter Resolution", - "text": "BestFitSupportedLocales ( availableLocales, requestedLocales )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-bestfitsupportedlocales" - } - }, - "#sec-canonicalizelocalelist": { - "current": { - "number": "1.2.1", - "spec": "Intl Parameter Resolution", - "text": "CanonicalizeLocaleList ( locales )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-canonicalizelocalelist" - } - }, - "#sec-coerceoptionstoobject": { - "current": { - "number": "1.2.12", - "spec": "Intl Parameter Resolution", - "text": "CoerceOptionsToObject ( options )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-coerceoptionstoobject" - } - }, - "#sec-defaultnumberoption": { - "current": { - "number": "1.2.15", - "spec": "Intl Parameter Resolution", - "text": "DefaultNumberOption ( value, minimum, maximum, fallback )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-defaultnumberoption" - } - }, - "#sec-getbooleanorstringnumberformatoption": { - "current": { - "number": "1.2.14", - "spec": "Intl Parameter Resolution", - "text": "GetBooleanOrStringNumberFormatOption ( options, property, stringValues, fallback )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-getbooleanorstringnumberformatoption" - } - }, - "#sec-getnumberoption": { - "current": { - "number": "1.2.16", - "spec": "Intl Parameter Resolution", - "text": "GetNumberOption ( options, property, minimum, maximum, fallback )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-getnumberoption" - } - }, - "#sec-getoption": { - "current": { - "number": "1.2.13", - "spec": "Intl Parameter Resolution", - "text": "GetOption ( options, property, type, values, default )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-getoption" - } - }, - "#sec-getoptionsobject": { - "current": { - "number": "1.2.11", - "spec": "Intl Parameter Resolution", - "text": "GetOptionsObject ( options )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-getoptionsobject" - } - }, - "#sec-insert-unicode-extension-and-canonicalize": { - "current": { - "number": "1.2.6", - "spec": "Intl Parameter Resolution", - "text": "InsertUnicodeExtensionAndCanonicalize ( locale, extension )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-insert-unicode-extension-and-canonicalize" - } - }, - "#sec-internal-slots": { - "current": { - "number": "1.1", - "spec": "Intl Parameter Resolution", - "text": "Internal slots of Service Constructors", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-internal-slots" - } - }, - "#sec-lookupmatcher": { - "current": { - "number": "1.2.3", - "spec": "Intl Parameter Resolution", - "text": "LookupMatcher ( availableLocales, requestedLocales )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-lookupmatcher" - } - }, - "#sec-lookupsupportedlocales": { - "current": { - "number": "1.2.8", - "spec": "Intl Parameter Resolution", - "text": "LookupSupportedLocales ( availableLocales, requestedLocales )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-lookupsupportedlocales" - } - }, - "#sec-partitionpattern": { - "current": { - "number": "1.2.17", - "spec": "Intl Parameter Resolution", - "text": "PartitionPattern ( pattern )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-partitionpattern" - } - }, - "#sec-resolvelocale": { - "current": { - "number": "1.2.7", - "spec": "Intl Parameter Resolution", - "text": "ResolveLocale ( availableLocales, requestedLocales, options, relevantExtensionKeys, localeData )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-resolvelocale" - } - }, - "#sec-supportedlocales": { - "current": { - "number": "1.2.10", - "spec": "Intl Parameter Resolution", - "text": "SupportedLocales ( availableLocales, requestedLocales, options )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-supportedlocales" - } - }, - "#sec-unicode-extension-components": { - "current": { - "number": "1.2.5", - "spec": "Intl Parameter Resolution", - "text": "UnicodeExtensionComponents ( extension )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html#sec-unicode-extension-components" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-numberformat.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-numberformat.json deleted file mode 100644 index bc1ef737b5..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-numberformat.json +++ /dev/null @@ -1,354 +0,0 @@ -{ - "#numberformat-objects": { - "current": { - "number": "1", - "spec": "Intl.NumberFormat", - "text": "NumberFormat Objects", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#numberformat-objects" - } - }, - "#sec-applyunsignedroundingmode": { - "current": { - "number": "1.5.18", - "spec": "Intl.NumberFormat", - "text": "ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-applyunsignedroundingmode" - } - }, - "#sec-chainnumberformat": { - "current": { - "number": "1.1.1.1", - "spec": "Intl.NumberFormat", - "text": "ChainNumberFormat ( numberFormat, newTarget, this )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-chainnumberformat" - } - }, - "#sec-collapsenumberrange": { - "current": { - "number": "1.5.21", - "spec": "Intl.NumberFormat", - "text": "CollapseNumberRange ( result )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-collapsenumberrange" - } - }, - "#sec-computeexponent": { - "current": { - "number": "1.5.13", - "spec": "Intl.NumberFormat", - "text": "ComputeExponent ( numberFormat, x )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-computeexponent" - } - }, - "#sec-computeexponentformagnitude": { - "current": { - "number": "1.5.14", - "spec": "Intl.NumberFormat", - "text": "ComputeExponentForMagnitude ( numberFormat, magnitude )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-computeexponentformagnitude" - } - }, - "#sec-currencydigits": { - "current": { - "number": "1.5.1", - "spec": "Intl.NumberFormat", - "text": "CurrencyDigits ( currency )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-currencydigits" - } - }, - "#sec-formatapproximately": { - "current": { - "number": "1.5.20", - "spec": "Intl.NumberFormat", - "text": "FormatApproximately ( numberFormat, result )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-formatapproximately" - } - }, - "#sec-formatnumber": { - "current": { - "number": "1.5.6", - "spec": "Intl.NumberFormat", - "text": "FormatNumeric ( numberFormat, x )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-formatnumber" - } - }, - "#sec-formatnumberstring": { - "current": { - "number": "1.5.3", - "spec": "Intl.NumberFormat", - "text": "FormatNumericToString ( intlObject, x )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-formatnumberstring" - } - }, - "#sec-formatnumbertoparts": { - "current": { - "number": "1.5.7", - "spec": "Intl.NumberFormat", - "text": "FormatNumericToParts ( numberFormat, x )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-formatnumbertoparts" - } - }, - "#sec-formatnumericrange": { - "current": { - "number": "1.5.22", - "spec": "Intl.NumberFormat", - "text": "FormatNumericRange( numberFormat, x, y )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-formatnumericrange" - } - }, - "#sec-formatnumericrangetoparts": { - "current": { - "number": "1.5.23", - "spec": "Intl.NumberFormat", - "text": "FormatNumericRangeToParts( numberFormat, x, y )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-formatnumericrangetoparts" - } - }, - "#sec-getnotationsubpattern": { - "current": { - "number": "1.5.12", - "spec": "Intl.NumberFormat", - "text": "GetNotationSubPattern ( numberFormat, exponent )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-getnotationsubpattern" - } - }, - "#sec-getnumberformatpattern": { - "current": { - "number": "1.5.11", - "spec": "Intl.NumberFormat", - "text": "GetNumberFormatPattern ( numberFormat, x )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-getnumberformatpattern" - } - }, - "#sec-getunsignedroundingmode": { - "current": { - "number": "1.5.17", - "spec": "Intl.NumberFormat", - "text": "GetUnsignedRoundingMode ( roundingMode, isNegative )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-getunsignedroundingmode" - } - }, - "#sec-initializenumberformat": { - "current": { - "number": "1.1.2", - "spec": "Intl.NumberFormat", - "text": "InitializeNumberFormat ( numberFormat, locales, options )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-initializenumberformat" - } - }, - "#sec-intl-numberformat-constructor": { - "current": { - "number": "1.1", - "spec": "Intl.NumberFormat", - "text": "The Intl.NumberFormat Constructor", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl-numberformat-constructor" - } - }, - "#sec-intl.numberformat": { - "current": { - "number": "1.1.1", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat ( [ locales [ , options ] ] )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat" - } - }, - "#sec-intl.numberformat-internal-slots": { - "current": { - "number": "1.2.3", - "spec": "Intl.NumberFormat", - "text": "Internal slots", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat-internal-slots" - } - }, - "#sec-intl.numberformat.prototype": { - "current": { - "number": "1.2.1", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype" - } - }, - "#sec-intl.numberformat.prototype-@@tostringtag": { - "current": { - "number": "1.3.2", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype-@@tostringtag" - } - }, - "#sec-intl.numberformat.prototype.constructor": { - "current": { - "number": "1.3.1", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype.constructor", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype.constructor" - } - }, - "#sec-intl.numberformat.prototype.format": { - "current": { - "number": "1.3.3", - "spec": "Intl.NumberFormat", - "text": "get Intl.NumberFormat.prototype.format", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype.format" - } - }, - "#sec-intl.numberformat.prototype.formatrange": { - "current": { - "number": "1.3.5", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype.formatRange ( start, end )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype.formatrange" - } - }, - "#sec-intl.numberformat.prototype.formatrangetoparts": { - "current": { - "number": "1.3.6", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype.formatRangeToParts ( start, end )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype.formatrangetoparts" - } - }, - "#sec-intl.numberformat.prototype.formattoparts": { - "current": { - "number": "1.3.4", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype.formatToParts ( value )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype.formattoparts" - } - }, - "#sec-intl.numberformat.prototype.resolvedoptions": { - "current": { - "number": "1.3.7", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.prototype.resolvedOptions ( )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.prototype.resolvedoptions" - } - }, - "#sec-intl.numberformat.supportedlocalesof": { - "current": { - "number": "1.2.2", - "spec": "Intl.NumberFormat", - "text": "Intl.NumberFormat.supportedLocalesOf ( locales [ , options ] )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-intl.numberformat.supportedlocalesof" - } - }, - "#sec-number-format-functions": { - "current": { - "number": "1.5.2", - "spec": "Intl.NumberFormat", - "text": "Number Format Functions", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-number-format-functions" - } - }, - "#sec-numberformat-abstracts": { - "current": { - "number": "1.5", - "spec": "Intl.NumberFormat", - "text": "Abstract Operations for NumberFormat Objects", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-numberformat-abstracts" - } - }, - "#sec-partitionnotationsubpattern": { - "current": { - "number": "1.5.5", - "spec": "Intl.NumberFormat", - "text": "PartitionNotationSubPattern ( numberFormat, x, n, exponent )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-partitionnotationsubpattern" - } - }, - "#sec-partitionnumberpattern": { - "current": { - "number": "1.5.4", - "spec": "Intl.NumberFormat", - "text": "PartitionNumberPattern ( numberFormat, x )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-partitionnumberpattern" - } - }, - "#sec-partitionnumberrangepattern": { - "current": { - "number": "1.5.19", - "spec": "Intl.NumberFormat", - "text": "PartitionNumberRangePattern ( numberFormat, x, y )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-partitionnumberrangepattern" - } - }, - "#sec-properties-of-intl-numberformat-constructor": { - "current": { - "number": "1.2", - "spec": "Intl.NumberFormat", - "text": "Properties of the Intl.NumberFormat Constructor", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-properties-of-intl-numberformat-constructor" - } - }, - "#sec-properties-of-intl-numberformat-instances": { - "current": { - "number": "1.4", - "spec": "Intl.NumberFormat", - "text": "Properties of Intl.NumberFormat Instances", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-properties-of-intl-numberformat-instances" - } - }, - "#sec-properties-of-intl-numberformat-prototype-object": { - "current": { - "number": "1.3", - "spec": "Intl.NumberFormat", - "text": "Properties of the Intl.NumberFormat Prototype Object", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-properties-of-intl-numberformat-prototype-object" - } - }, - "#sec-runtime-semantics-stringintlmv": { - "current": { - "number": "1.5.15", - "spec": "Intl.NumberFormat", - "text": "Runtime Semantics: StringIntlMV", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-runtime-semantics-stringintlmv" - } - }, - "#sec-setnfdigitoptions": { - "current": { - "number": "1.1.3", - "spec": "Intl.NumberFormat", - "text": "SetNumberFormatDigitOptions ( intlObj, options, mnfdDefault, mxfdDefault, notation )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-setnfdigitoptions" - } - }, - "#sec-setnumberformatunitoptions": { - "current": { - "number": "1.1.4", - "spec": "Intl.NumberFormat", - "text": "SetNumberFormatUnitOptions ( intlObj, options )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-setnumberformatunitoptions" - } - }, - "#sec-tointlmathematicalvalue": { - "current": { - "number": "1.5.16", - "spec": "Intl.NumberFormat", - "text": "ToIntlMathematicalValue ( value )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-tointlmathematicalvalue" - } - }, - "#sec-torawfixed": { - "current": { - "number": "1.5.9", - "spec": "Intl.NumberFormat", - "text": "ToRawFixed ( x, minFraction, maxFraction, roundingIncrement, unsignedRoundingMode )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-torawfixed" - } - }, - "#sec-torawprecision": { - "current": { - "number": "1.5.8", - "spec": "Intl.NumberFormat", - "text": "ToRawPrecision ( x, minPrecision, maxPrecision, unsignedRoundingMode )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-torawprecision" - } - }, - "#sec-unwrapnumberformat": { - "current": { - "number": "1.5.10", - "spec": "Intl.NumberFormat", - "text": "UnwrapNumberFormat ( nf )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html#sec-unwrapnumberformat" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-pluralrules.json b/bikeshed/spec-data/readonly/headings/headings-tc39-intl-pluralrules.json deleted file mode 100644 index f07547ca73..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-intl-pluralrules.json +++ /dev/null @@ -1,170 +0,0 @@ -{ - "#pluralrules-objects": { - "current": { - "number": "1", - "spec": "Intl.PluralRules", - "text": "PluralRules Objects", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#pluralrules-objects" - } - }, - "#sec-getoperands": { - "current": { - "number": "1.5.1", - "spec": "Intl.PluralRules", - "text": "GetOperands ( s )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-getoperands" - } - }, - "#sec-initializepluralrules": { - "current": { - "number": "1.1.2", - "spec": "Intl.PluralRules", - "text": "InitializePluralRules ( pluralRules, locales, options )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-initializepluralrules" - } - }, - "#sec-intl-pluralrules-abstracts": { - "current": { - "number": "1.5", - "spec": "Intl.PluralRules", - "text": "Abstract Operations for PluralRules Objects", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl-pluralrules-abstracts" - } - }, - "#sec-intl-pluralrules-constructor": { - "current": { - "number": "1.1", - "spec": "Intl.PluralRules", - "text": "The Intl.PluralRules Constructor", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl-pluralrules-constructor" - } - }, - "#sec-intl.pluralrules": { - "current": { - "number": "1.1.1", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules ( [ locales [ , options ] ] )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules" - } - }, - "#sec-intl.pluralrules-internal-slots": { - "current": { - "number": "1.2.3", - "spec": "Intl.PluralRules", - "text": "Internal slots", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules-internal-slots" - } - }, - "#sec-intl.pluralrules.prototype": { - "current": { - "number": "1.2.1", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.prototype", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.prototype" - } - }, - "#sec-intl.pluralrules.prototype-tostringtag": { - "current": { - "number": "1.3.2", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.prototype-tostringtag" - } - }, - "#sec-intl.pluralrules.prototype.constructor": { - "current": { - "number": "1.3.1", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.prototype.constructor", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.prototype.constructor" - } - }, - "#sec-intl.pluralrules.prototype.resolvedoptions": { - "current": { - "number": "1.3.5", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.prototype.resolvedOptions ( )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.prototype.resolvedoptions" - } - }, - "#sec-intl.pluralrules.prototype.select": { - "current": { - "number": "1.3.3", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.prototype.select ( value )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.prototype.select" - } - }, - "#sec-intl.pluralrules.prototype.selectrange": { - "current": { - "number": "1.3.4", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.prototype.selectRange ( start, end )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.prototype.selectrange" - } - }, - "#sec-intl.pluralrules.supportedlocalesof": { - "current": { - "number": "1.2.2", - "spec": "Intl.PluralRules", - "text": "Intl.PluralRules.supportedLocalesOf ( locales [ , options ] )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-intl.pluralrules.supportedlocalesof" - } - }, - "#sec-pluralruleselect": { - "current": { - "number": "1.5.2", - "spec": "Intl.PluralRules", - "text": "PluralRuleSelect ( locale, type, n, operands )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-pluralruleselect" - } - }, - "#sec-pluralruleselectrange": { - "current": { - "number": "1.5.4", - "spec": "Intl.PluralRules", - "text": "PluralRuleSelectRange ( locale, type, xp, yp )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-pluralruleselectrange" - } - }, - "#sec-properties-of-intl-pluralrules-constructor": { - "current": { - "number": "1.2", - "spec": "Intl.PluralRules", - "text": "Properties of the Intl.PluralRules Constructor", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-properties-of-intl-pluralrules-constructor" - } - }, - "#sec-properties-of-intl-pluralrules-instances": { - "current": { - "number": "1.4", - "spec": "Intl.PluralRules", - "text": "Properties of Intl.PluralRules Instances", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-properties-of-intl-pluralrules-instances" - } - }, - "#sec-properties-of-intl-pluralrules-prototype-object": { - "current": { - "number": "1.3", - "spec": "Intl.PluralRules", - "text": "Properties of the Intl.PluralRules Prototype Object", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-properties-of-intl-pluralrules-prototype-object" - } - }, - "#sec-resolveplural": { - "current": { - "number": "1.5.3", - "spec": "Intl.PluralRules", - "text": "ResolvePlural ( pluralRules, n )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-resolveplural" - } - }, - "#sec-resolvepluralrange": { - "current": { - "number": "1.5.5", - "spec": "Intl.PluralRules", - "text": "ResolvePluralRange ( pluralRules, x, y )", - "url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html#sec-resolvepluralrange" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-is-usv-string.json b/bikeshed/spec-data/readonly/headings/headings-tc39-is-usv-string.json deleted file mode 100644 index 74ac1f5706..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-is-usv-string.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "#sec-properties-of-the-string-prototype-object": { - "current": { - "number": "22.1.3", - "spec": "Well-Formed Unicode Strings", - "text": "Properties of the String Prototype Object", - "url": "https://tc39.es/proposal-is-usv-string/#sec-properties-of-the-string-prototype-object" - } - }, - "#sec-string.prototype.iswellformed": { - "current": { - "number": "22.1.3.10", - "spec": "Well-Formed Unicode Strings", - "text": "String.prototype.isWellFormed ( )", - "url": "https://tc39.es/proposal-is-usv-string/#sec-string.prototype.iswellformed" - } - }, - "#sec-string.prototype.towellformed": { - "current": { - "number": "22.1.3.11", - "spec": "Well-Formed Unicode Strings", - "text": "String.prototype.toWellFormed ( )", - "url": "https://tc39.es/proposal-is-usv-string/#sec-string.prototype.towellformed" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-iterator-helpers.json b/bikeshed/spec-data/readonly/headings/headings-tc39-iterator-helpers.json index 2e21e0fc1b..9a6b011f3e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-iterator-helpers.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-iterator-helpers.json @@ -1,34 +1,42 @@ { - "#sec-%iteratorhelperprototype%-@@tostringtag": { + "#sec-%25iteratorhelperprototype%25-%40%40tostringtag": { "current": { "number": "3.1.2.1.3", "spec": "Iterator Helpers", "text": "%IteratorHelperPrototype% [ @@toStringTag ]", - "url": "https://tc39.es/proposal-iterator-helpers/#sec-%iteratorhelperprototype%-@@tostringtag" + "url": "https://tc39.es/proposal-iterator-helpers/#sec-%25iteratorhelperprototype%25-%40%40tostringtag" } }, - "#sec-%iteratorhelperprototype%-object": { + "#sec-%25iteratorhelperprototype%25-object": { "current": { "number": "3.1.2.1", "spec": "Iterator Helpers", "text": "The %IteratorHelperPrototype% Object", - "url": "https://tc39.es/proposal-iterator-helpers/#sec-%iteratorhelperprototype%-object" + "url": "https://tc39.es/proposal-iterator-helpers/#sec-%25iteratorhelperprototype%25-object" } }, - "#sec-%iteratorhelperprototype%.next": { + "#sec-%25iteratorhelperprototype%25.next": { "current": { "number": "3.1.2.1.1", "spec": "Iterator Helpers", "text": "%IteratorHelperPrototype%.next ( )", - "url": "https://tc39.es/proposal-iterator-helpers/#sec-%iteratorhelperprototype%.next" + "url": "https://tc39.es/proposal-iterator-helpers/#sec-%25iteratorhelperprototype%25.next" } }, - "#sec-%iteratorhelperprototype%.return": { + "#sec-%25iteratorhelperprototype%25.return": { "current": { "number": "3.1.2.1.2", "spec": "Iterator Helpers", "text": "%IteratorHelperPrototype%.return ( )", - "url": "https://tc39.es/proposal-iterator-helpers/#sec-%iteratorhelperprototype%.return" + "url": "https://tc39.es/proposal-iterator-helpers/#sec-%25iteratorhelperprototype%25.return" + } + }, + "#sec-SetterThatIgnoresPrototypeProperties": { + "current": { + "number": "2.1", + "spec": "Iterator Helpers", + "text": "SetterThatIgnoresPrototypeProperties ( this, home, p, v )", + "url": "https://tc39.es/proposal-iterator-helpers/#sec-SetterThatIgnoresPrototypeProperties" } }, "#sec-abstract-operations": { @@ -47,9 +55,33 @@ "url": "https://tc39.es/proposal-iterator-helpers/#sec-control-abstraction-objects" } }, + "#sec-createiteratorfromclosure": { + "current": { + "number": "4.1", + "spec": "Iterator Helpers", + "text": "CreateIteratorFromClosure ( closure, generatorBrand, generatorPrototype [ , extraSlots ] )", + "url": "https://tc39.es/proposal-iterator-helpers/#sec-createiteratorfromclosure" + } + }, + "#sec-get-iteratorprototype-%40%40tostringtag": { + "current": { + "number": "3.1.3.13.1", + "spec": "Iterator Helpers", + "text": "get Iterator.prototype [ @@toStringTag ]", + "url": "https://tc39.es/proposal-iterator-helpers/#sec-get-iteratorprototype-%40%40tostringtag" + } + }, + "#sec-get-iteratorprototype-constructor": { + "current": { + "number": "3.1.3.1.1", + "spec": "Iterator Helpers", + "text": "get Iterator.prototype.constructor", + "url": "https://tc39.es/proposal-iterator-helpers/#sec-get-iteratorprototype-constructor" + } + }, "#sec-getiteratordirect": { "current": { - "number": "2.1.1", + "number": "2.2.1", "spec": "Iterator Helpers", "text": "GetIteratorDirect ( obj )", "url": "https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect" @@ -57,9 +89,9 @@ }, "#sec-getiteratorflattenable": { "current": { - "number": "2.1.2", + "number": "2.2.2", "spec": "Iterator Helpers", - "text": "GetIteratorFlattenable ( obj, hint )", + "text": "GetIteratorFlattenable ( obj, stringHandling )", "url": "https://tc39.es/proposal-iterator-helpers/#sec-getiteratorflattenable" } }, @@ -127,12 +159,12 @@ "url": "https://tc39.es/proposal-iterator-helpers/#sec-iteratorprototype" } }, - "#sec-iteratorprototype-@@tostringtag": { + "#sec-iteratorprototype-%40%40tostringtag": { "current": { "number": "3.1.3.13", "spec": "Iterator Helpers", "text": "Iterator.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-iterator-helpers/#sec-iteratorprototype-@@tostringtag" + "url": "https://tc39.es/proposal-iterator-helpers/#sec-iteratorprototype-%40%40tostringtag" } }, "#sec-iteratorprototype.constructor": { @@ -233,7 +265,7 @@ }, "#sec-operations-on-iterator-objects": { "current": { - "number": "2.1", + "number": "2.2", "spec": "Iterator Helpers", "text": "Operations on Iterator Objects", "url": "https://tc39.es/proposal-iterator-helpers/#sec-operations-on-iterator-objects" @@ -247,6 +279,22 @@ "url": "https://tc39.es/proposal-iterator-helpers/#sec-properties-of-the-iterator-constructor" } }, + "#sec-set-iteratorprototype-%40%40tostringtag": { + "current": { + "number": "3.1.3.13.2", + "spec": "Iterator Helpers", + "text": "set Iterator.prototype [ @@toStringTag ]", + "url": "https://tc39.es/proposal-iterator-helpers/#sec-set-iteratorprototype-%40%40tostringtag" + } + }, + "#sec-set-iteratorprototype-constructor": { + "current": { + "number": "3.1.3.1.2", + "spec": "Iterator Helpers", + "text": "set Iterator.prototype.constructor", + "url": "https://tc39.es/proposal-iterator-helpers/#sec-set-iteratorprototype-constructor" + } + }, "#sec-well-known-intrinsic-objects": { "current": { "number": "1", @@ -278,5 +326,13 @@ "text": "%WrapForValidIteratorPrototype%.return ( )", "url": "https://tc39.es/proposal-iterator-helpers/#sec-wrapforvaliditeratorprototype.return" } + }, + "#updated-abstract-operations": { + "current": { + "number": "4", + "spec": "Iterator Helpers", + "text": "Updated Abstract Operations", + "url": "https://tc39.es/proposal-iterator-helpers/#updated-abstract-operations" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-json-modules.json b/bikeshed/spec-data/readonly/headings/headings-tc39-json-modules.json index 953fd0d685..ee5738441a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-json-modules.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-json-modules.json @@ -1,7 +1,15 @@ { + "#sec-HostLoadImportedModule": { + "current": { + "number": "1.1", + "spec": "JSON modules", + "text": "HostLoadImportedModule ( referrer, moduleRequest, hostDefined, payload )", + "url": "https://tc39.es/proposal-json-modules/#sec-HostLoadImportedModule" + } + }, "#sec-create-default-export-synthetic-module": { "current": { - "number": "1.3", + "number": "1.2.4", "spec": "JSON modules", "text": "CreateDefaultExportSyntheticModule ( defaultExport )", "url": "https://tc39.es/proposal-json-modules/#sec-create-default-export-synthetic-module" @@ -11,21 +19,13 @@ "current": { "number": "1.2.1", "spec": "JSON modules", - "text": "CreateSyntheticModule ( exportNames, evaluationSteps, realm, hostDefined )", + "text": "CreateSyntheticModule ( exportNames, evaluationSteps, realm )", "url": "https://tc39.es/proposal-json-modules/#sec-createsyntheticmodule" } }, - "#sec-hostresolveimportedmodule": { - "current": { - "number": "1.1", - "spec": "JSON modules", - "text": "Runtime Semantics: HostResolveImportedModule ( referencingScriptOrModule, moduleRequest )", - "url": "https://tc39.es/proposal-json-modules/#sec-hostresolveimportedmodule" - } - }, "#sec-parse-json-module": { "current": { - "number": "1.4", + "number": "1.2.5", "spec": "JSON modules", "text": "ParseJSONModule ( source )", "url": "https://tc39.es/proposal-json-modules/#sec-parse-json-module" @@ -49,12 +49,28 @@ }, "#sec-smr-Evaluate": { "current": { - "number": "1.2.3.4", + "number": "1.2.3.5", "spec": "JSON modules", "text": "Evaluate ( )", "url": "https://tc39.es/proposal-json-modules/#sec-smr-Evaluate" } }, + "#sec-smr-Link": { + "current": { + "number": "1.2.3.4", + "spec": "JSON modules", + "text": "Link ( )", + "url": "https://tc39.es/proposal-json-modules/#sec-smr-Link" + } + }, + "#sec-smr-LoadRequestedModules": { + "current": { + "number": "1.2.3.1", + "spec": "JSON modules", + "text": "LoadRequestedModules ( )", + "url": "https://tc39.es/proposal-json-modules/#sec-smr-LoadRequestedModules" + } + }, "#sec-smr-concrete-methods": { "current": { "number": "1.2.3", @@ -65,25 +81,17 @@ }, "#sec-smr-getexportednames": { "current": { - "number": "1.2.3.1", + "number": "1.2.3.2", "spec": "JSON modules", - "text": "GetExportedNames( exportStarSet )", + "text": "GetExportedNames ( )", "url": "https://tc39.es/proposal-json-modules/#sec-smr-getexportednames" } }, - "#sec-smr-instantiate": { - "current": { - "number": "1.2.3.3", - "spec": "JSON modules", - "text": "Instantiate ( )", - "url": "https://tc39.es/proposal-json-modules/#sec-smr-instantiate" - } - }, "#sec-smr-resolveexport": { "current": { - "number": "1.2.3.2", + "number": "1.2.3.3", "spec": "JSON modules", - "text": "ResolveExport( exportName, resolveSet )", + "text": "ResolveExport ( exportName )", "url": "https://tc39.es/proposal-json-modules/#sec-smr-resolveexport" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-json-parse-with-source.json b/bikeshed/spec-data/readonly/headings/headings-tc39-json-parse-with-source.json index 6ccb05fca1..01c5c297e0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-json-parse-with-source.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-json-parse-with-source.json @@ -1,9 +1,17 @@ { + "#sec-createjsonparserecord": { + "current": { + "number": "1.2.2", + "spec": "JSON.parse source text access", + "text": "CreateJSONParseRecord ( parseNode, key, val )", + "url": "https://tc39.es/proposal-json-parse-with-source/#sec-createjsonparserecord" + } + }, "#sec-internalizejsonproperty": { "current": { - "number": "1.2.1", + "number": "1.2.3", "spec": "JSON.parse source text access", - "text": "InternalizeJSONProperty ( holder, name, reviver, valNode )", + "text": "InternalizeJSONProperty ( holder, name, reviver, parseRecord )", "url": "https://tc39.es/proposal-json-parse-with-source/#sec-internalizejsonproperty" } }, @@ -15,6 +23,14 @@ "url": "https://tc39.es/proposal-json-parse-with-source/#sec-json-object" } }, + "#sec-json-parse-record": { + "current": { + "number": "1.2.1", + "spec": "JSON.parse source text access", + "text": "JSON Parse Record", + "url": "https://tc39.es/proposal-json-parse-with-source/#sec-json-parse-record" + } + }, "#sec-json.israwjson": { "current": { "number": "1.1", @@ -63,17 +79,17 @@ "url": "https://tc39.es/proposal-json-parse-with-source/#sec-static-semantics-arrayliteralcontentnodes" } }, - "#sec-static-semantics-propertydefinitionlist": { + "#sec-static-semantics-propertydefinitionnodes": { "current": { "number": "3", "spec": "JSON.parse source text access", - "text": "Static Semantics: PropertyDefinitionList", - "url": "https://tc39.es/proposal-json-parse-with-source/#sec-static-semantics-propertydefinitionlist" + "text": "Static Semantics: PropertyDefinitionNodes", + "url": "https://tc39.es/proposal-json-parse-with-source/#sec-static-semantics-propertydefinitionnodes" } }, "#sec-static-semantics-shallowestcontainedjsonvalue": { "current": { - "number": "1.2.2", + "number": "1.2.4", "spec": "JSON.parse source text access", "text": "Static Semantics: ShallowestContainedJSONValue", "url": "https://tc39.es/proposal-json-parse-with-source/#sec-static-semantics-shallowestcontainedjsonvalue" diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-promise-try.json b/bikeshed/spec-data/readonly/headings/headings-tc39-promise-try.json new file mode 100644 index 0000000000..540f53cceb --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-promise-try.json @@ -0,0 +1,10 @@ +{ + "#sec-promise.try": { + "current": { + "number": "1", + "spec": "Promise.try", + "text": "Promise.try ( callbackfn, ...args )", + "url": "https://tc39.es/proposal-promise-try/#sec-promise.try" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-promise-with-resolvers.json b/bikeshed/spec-data/readonly/headings/headings-tc39-promise-with-resolvers.json new file mode 100644 index 0000000000..f86f678847 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-promise-with-resolvers.json @@ -0,0 +1,34 @@ +{ + "#sec-control-abstraction-objects": { + "current": { + "number": "1", + "spec": "2023", + "text": "Control Abstraction Objects", + "url": "https://tc39.es/proposal-promise-with-resolvers/#sec-control-abstraction-objects" + } + }, + "#sec-promise-objects": { + "current": { + "number": "1.1", + "spec": "2023", + "text": "Promise Objects", + "url": "https://tc39.es/proposal-promise-with-resolvers/#sec-promise-objects" + } + }, + "#sec-promise.withResolvers": { + "current": { + "number": "1.1.1.1", + "spec": "2023", + "text": "Promise.withResolvers ( )", + "url": "https://tc39.es/proposal-promise-with-resolvers/#sec-promise.withResolvers" + } + }, + "#sec-properties-of-the-promise-constructor": { + "current": { + "number": "1.1.1", + "spec": "2023", + "text": "Properties of the Promise Constructor", + "url": "https://tc39.es/proposal-promise-with-resolvers/#sec-properties-of-the-promise-constructor" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-regex-escaping.json b/bikeshed/spec-data/readonly/headings/headings-tc39-regex-escaping.json new file mode 100644 index 0000000000..795899dff0 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-regex-escaping.json @@ -0,0 +1,42 @@ +{ + "#sec-encodeforregexpescape": { + "current": { + "number": "22.2.5.3", + "spec": "RegExp.escape", + "text": "EncodeForRegExpEscape ( c )", + "url": "https://tc39.es/proposal-regex-escaping/#sec-encodeforregexpescape" + } + }, + "#sec-properties-of-the-regexp-constructor": { + "current": { + "number": "22.2.5", + "spec": "RegExp.escape", + "text": "Properties of the RegExp Constructor", + "url": "https://tc39.es/proposal-regex-escaping/#sec-properties-of-the-regexp-constructor" + } + }, + "#sec-regexp-regular-expression-objects": { + "current": { + "number": "22.2", + "spec": "RegExp.escape", + "text": "RegExp (Regular Expression) Objects", + "url": "https://tc39.es/proposal-regex-escaping/#sec-regexp-regular-expression-objects" + } + }, + "#sec-regexp.escape": { + "current": { + "number": "22.2.5.2", + "spec": "RegExp.escape", + "text": "RegExp.escape ( S )", + "url": "https://tc39.es/proposal-regex-escaping/#sec-regexp.escape" + } + }, + "#sec-text-processing": { + "current": { + "number": "22", + "spec": "RegExp.escape", + "text": "Text Processing", + "url": "https://tc39.es/proposal-regex-escaping/#sec-text-processing" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-resizablearraybuffer.json b/bikeshed/spec-data/readonly/headings/headings-tc39-resizablearraybuffer.json deleted file mode 100644 index cba356a615..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-resizablearraybuffer.json +++ /dev/null @@ -1,562 +0,0 @@ -{ - "#omitted-for-brevity": { - "current": { - "number": "8", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Mechanical Changes Omitted for Brevity", - "url": "https://tc39.es/proposal-resizablearraybuffer/#omitted-for-brevity" - } - }, - "#sec-%typedarray%.prototype.copywithin": { - "current": { - "number": "4.1.5", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "%TypedArray%.prototype.copyWithin ( target, start [ , end ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-%typedarray%.prototype.copywithin" - } - }, - "#sec-%typedarray%.prototype.fill": { - "current": { - "number": "4.1.6", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "%TypedArray%.prototype.fill ( value [ , start [ , end ] ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-%typedarray%.prototype.fill" - } - }, - "#sec-%typedarray%.prototype.slice": { - "current": { - "number": "4.1.7", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "%TypedArray%.prototype.slice ( start, end )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-%typedarray%.prototype.slice" - } - }, - "#sec-%typedarray%.prototype.subarray": { - "current": { - "number": "4.1.8", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "%TypedArray%.prototype.subarray ( begin, end )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-%typedarray%.prototype.subarray" - } - }, - "#sec-abstract-operations-for-arraybuffer-objects-mods": { - "current": { - "number": "1.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Abstract Operations for ArrayBuffer Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-abstract-operations-for-arraybuffer-objects-mods" - } - }, - "#sec-abstract-operations-for-atomics-mods": { - "current": { - "number": "6.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Abstract Operations for Atomics", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-abstract-operations-for-atomics-mods" - } - }, - "#sec-abstract-operations-for-dataview-objects-mods": { - "current": { - "number": "5.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Abstract Operations For DataView Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-abstract-operations-for-dataview-objects-mods" - } - }, - "#sec-abstract-operations-for-sharedarraybuffer-objects-mods": { - "current": { - "number": "2.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Abstract Operations for SharedArrayBuffer Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-abstract-operations-for-sharedarraybuffer-objects-mods" - } - }, - "#sec-allocatearraybuffer": { - "current": { - "number": "1.1.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "AllocateArrayBuffer ( constructor, byteLength [ , maxByteLength ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-allocatearraybuffer" - } - }, - "#sec-allocatesharedarraybuffer": { - "current": { - "number": "2.1.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "AllocateSharedArrayBuffer ( constructor, byteLength [ , maxByteLength ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-allocatesharedarraybuffer" - } - }, - "#sec-arraybuffer-constructor": { - "current": { - "number": "1.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "The ArrayBuffer Constructor", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-arraybuffer-constructor" - } - }, - "#sec-arraybuffer-length": { - "current": { - "number": "1.2.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "ArrayBuffer ( length [ , options ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-arraybuffer-length" - } - }, - "#sec-arraybuffer-objects-mods": { - "current": { - "number": "1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to ArrayBuffer Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-arraybuffer-objects-mods" - } - }, - "#sec-arraybuffer.prototype.resize": { - "current": { - "number": "1.3.5", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "ArrayBuffer.prototype.resize ( newLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-arraybuffer.prototype.resize" - } - }, - "#sec-arraybuffer.prototype.slice": { - "current": { - "number": "1.3.4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "ArrayBuffer.prototype.slice ( start, end )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-arraybuffer.prototype.slice" - } - }, - "#sec-arraybufferlength": { - "current": { - "number": "1.1.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "ArrayBufferByteLength ( arrayBuffer, order )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-arraybufferlength" - } - }, - "#sec-atomicreadmodifywrite": { - "current": { - "number": "6.2.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "AtomicReadModifyWrite ( typedArray, index, value, op )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-atomicreadmodifywrite" - } - }, - "#sec-atomics-mods": { - "current": { - "number": "6", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Atomics", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-atomics-mods" - } - }, - "#sec-atomics.compareexchange": { - "current": { - "number": "6.1.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Atomics.compareExchange ( typedArray, index, expectedValue, replacementValue )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-atomics.compareexchange" - } - }, - "#sec-atomics.store": { - "current": { - "number": "6.1.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Atomics.store ( typedArray, index, value )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-atomics.store" - } - }, - "#sec-dataview-buffer-byteoffset-bytelength": { - "current": { - "number": "5.2.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "DataView ( buffer [ , byteOffset [ , byteLength ] ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-dataview-buffer-byteoffset-bytelength" - } - }, - "#sec-dataview-constructor-mods": { - "current": { - "number": "5.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to the DataView Constructor", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-dataview-constructor-mods" - } - }, - "#sec-dataview-objects-mods": { - "current": { - "number": "5", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to DataView Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-dataview-objects-mods" - } - }, - "#sec-detacharraybuffer": { - "current": { - "number": "1.1.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "DetachArrayBuffer ( arrayBuffer [ , key ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-detacharraybuffer" - } - }, - "#sec-get-%typedarray%.prototype.bytelength": { - "current": { - "number": "4.1.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get %TypedArray%.prototype.byteLength", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-%typedarray%.prototype.bytelength" - } - }, - "#sec-get-%typedarray%.prototype.byteoffset": { - "current": { - "number": "4.1.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get %TypedArray%.prototype.byteOffset", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-%typedarray%.prototype.byteoffset" - } - }, - "#sec-get-%typedarray%.prototype.length": { - "current": { - "number": "4.1.4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get %TypedArray%.prototype.length", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-%typedarray%.prototype.length" - } - }, - "#sec-get-arraybuffer-@@species": { - "current": { - "number": "1.3.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get ArrayBuffer [ @@species ]", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-arraybuffer-@@species" - } - }, - "#sec-get-arraybuffer.prototype.maxbytelength": { - "current": { - "number": "1.3.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get ArrayBuffer.prototype.maxByteLength", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-arraybuffer.prototype.maxbytelength" - } - }, - "#sec-get-arraybuffer.prototype.resizable": { - "current": { - "number": "1.3.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get ArrayBuffer.prototype.resizable", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-arraybuffer.prototype.resizable" - } - }, - "#sec-get-dataview.prototype.bytelength": { - "current": { - "number": "5.3.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get DataView.prototype.byteLength", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-dataview.prototype.bytelength" - } - }, - "#sec-get-dataview.prototype.byteoffset": { - "current": { - "number": "5.3.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get DataView.prototype.byteOffset", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-dataview.prototype.byteoffset" - } - }, - "#sec-get-sharedarraybuffer.prototype.bytelength": { - "current": { - "number": "2.3.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get SharedArrayBuffer.prototype.byteLength", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-sharedarraybuffer.prototype.bytelength" - } - }, - "#sec-get-sharedarraybuffer.prototype.growable": { - "current": { - "number": "2.3.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get SharedArrayBuffer.prototype.growable", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-sharedarraybuffer.prototype.growable" - } - }, - "#sec-get-sharedarraybuffer.prototype.maxbytelength": { - "current": { - "number": "2.3.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "get SharedArrayBuffer.prototype.maxByteLength", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-get-sharedarraybuffer.prototype.maxbytelength" - } - }, - "#sec-getarraybuffermaxbytelengthoption": { - "current": { - "number": "1.1.6", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "GetArrayBufferMaxByteLengthOption ( options )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-getarraybuffermaxbytelengthoption" - } - }, - "#sec-getviewbytelength": { - "current": { - "number": "5.1.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "GetViewByteLength ( view, getBufferByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-getviewbytelength" - } - }, - "#sec-getviewvalue": { - "current": { - "number": "5.1.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "GetViewValue ( view, requestIndex, isLittleEndian, type )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-getviewvalue" - } - }, - "#sec-hostgrowsharedarraybuffer": { - "current": { - "number": "2.1.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "HostGrowSharedArrayBuffer ( buffer, newByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-hostgrowsharedarraybuffer" - } - }, - "#sec-hostresizearraybuffer": { - "current": { - "number": "1.1.7", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "HostResizeArrayBuffer ( buffer, newByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-hostresizearraybuffer" - } - }, - "#sec-initializetypedarrayfromarraybuffer": { - "current": { - "number": "4.2.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "InitializeTypedArrayFromArrayBuffer ( O, buffer, byteOffset, length )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-initializetypedarrayfromarraybuffer" - } - }, - "#sec-initializetypedarrayfromtypedarray": { - "current": { - "number": "4.2.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "InitializeTypedArrayFromTypedArray ( O, srcArray )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-initializetypedarrayfromtypedarray" - } - }, - "#sec-integer-indexed-exotic-objects-mods": { - "current": { - "number": "3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Integer-Indexed Exotic Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-integer-indexed-exotic-objects-mods" - } - }, - "#sec-integer-indexed-exotic-objects-ownpropertykeys": { - "current": { - "number": "3.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "[[OwnPropertyKeys]] ( )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-integer-indexed-exotic-objects-ownpropertykeys" - } - }, - "#sec-integerindexedobjectbytelength": { - "current": { - "number": "3.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IntegerIndexedObjectByteLength ( O, getBufferByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-integerindexedobjectbytelength" - } - }, - "#sec-integerindexedobjectlength": { - "current": { - "number": "3.4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IntegerIndexedObjectLength ( O, getBufferByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-integerindexedobjectlength" - } - }, - "#sec-isarraybufferviewoutofbounds": { - "current": { - "number": "3.6", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IsArrayBufferViewOutOfBounds ( O )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-isarraybufferviewoutofbounds" - } - }, - "#sec-isintegerindexedobjectoutofbounds": { - "current": { - "number": "3.5", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IsIntegerIndexedObjectOutOfBounds ( O, getBufferByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-isintegerindexedobjectoutofbounds" - } - }, - "#sec-isresizablearraybuffer": { - "current": { - "number": "1.1.5", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IsResizableArrayBuffer ( arrayBuffer )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-isresizablearraybuffer" - } - }, - "#sec-isvalidintegerindex": { - "current": { - "number": "3.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IsValidIntegerIndex ( O, index )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-isvalidintegerindex" - } - }, - "#sec-isviewoutofbounds": { - "current": { - "number": "5.1.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "IsViewOutOfBounds ( view, getBufferByteLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-isviewoutofbounds" - } - }, - "#sec-makeidempotentarraybufferbytelengthgetter": { - "current": { - "number": "1.1.4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "MakeIdempotentArrayBufferByteLengthGetter ( order )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-makeidempotentarraybufferbytelengthgetter" - } - }, - "#sec-maxbytelength-guidelines": { - "current": { - "number": "7", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Resizable ArrayBuffer and growable SharedArrayBuffer Guidelines", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-maxbytelength-guidelines" - } - }, - "#sec-properties-of-the-%typedarrayprototype%-object-mods": { - "current": { - "number": "4.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Properties of the %TypedArray.prototype% Object", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-properties-of-the-%typedarrayprototype%-object-mods" - } - }, - "#sec-properties-of-the-arraybuffer-prototype-object-mods": { - "current": { - "number": "1.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to the Properties of the ArrayBuffer Prototype Object", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-properties-of-the-arraybuffer-prototype-object-mods" - } - }, - "#sec-properties-of-the-atomics-object-mods": { - "current": { - "number": "6.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Properties of the Atomics Object", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-properties-of-the-atomics-object-mods" - } - }, - "#sec-properties-of-the-dataview-prototype-object-mods": { - "current": { - "number": "5.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to Properties of the DataView Prototype Object", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-properties-of-the-dataview-prototype-object-mods" - } - }, - "#sec-properties-of-the-sharedarraybuffer-prototype-object-mods": { - "current": { - "number": "2.3", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to the Properties of the SharedArrayBuffer Prototype Object", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-properties-of-the-sharedarraybuffer-prototype-object-mods" - } - }, - "#sec-settypedarrayfromtypedarray": { - "current": { - "number": "4.1.9", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "SetTypedArrayFromTypedArray ( target, targetOffset, source )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-settypedarrayfromtypedarray" - } - }, - "#sec-setviewvalue": { - "current": { - "number": "5.1.4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "SetViewValue ( view, requestIndex, isLittleEndian, type, value )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-setviewvalue" - } - }, - "#sec-sharedarraybuffer-constructor": { - "current": { - "number": "2.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "The SharedArrayBuffer Constructor", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-sharedarraybuffer-constructor" - } - }, - "#sec-sharedarraybuffer-length": { - "current": { - "number": "2.2.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "SharedArrayBuffer ( length [ , options ] )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-sharedarraybuffer-length" - } - }, - "#sec-sharedarraybuffer-objects-mods": { - "current": { - "number": "2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to SharedArrayBuffer Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-sharedarraybuffer-objects-mods" - } - }, - "#sec-sharedarraybuffer.prototype.grow": { - "current": { - "number": "2.3.4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "SharedArrayBuffer.prototype.grow ( newLength )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-sharedarraybuffer.prototype.grow" - } - }, - "#sec-sharedarraybuffer.prototype.slice": { - "current": { - "number": "2.3.5", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "SharedArrayBuffer.prototype.slice ( start, end )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-sharedarraybuffer.prototype.slice" - } - }, - "#sec-typedarray-constructors-mods": { - "current": { - "number": "4.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to the TypedArray Constructors", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-typedarray-constructors-mods" - } - }, - "#sec-typedarray-objects-mods": { - "current": { - "number": "4", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "Modifications to TypedArray Objects", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-typedarray-objects-mods" - } - }, - "#sec-validateatomicaccess": { - "current": { - "number": "6.2.2", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "ValidateAtomicAccess ( typedArray, requestIndex )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-validateatomicaccess" - } - }, - "#sec-validatetypedarray": { - "current": { - "number": "4.1.1", - "spec": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "text": "ValidateTypedArray ( O )", - "url": "https://tc39.es/proposal-resizablearraybuffer/#sec-validatetypedarray" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-set-methods.json b/bikeshed/spec-data/readonly/headings/headings-tc39-set-methods.json index 8e551dfb5f..a0d5953ca3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-set-methods.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-set-methods.json @@ -1,12 +1,4 @@ { - "#sec-getkeysiterator": { - "current": { - "number": "10", - "spec": "Set methods", - "text": "GetKeysIterator ( setRec )", - "url": "https://tc39.es/proposal-set-methods/#sec-getkeysiterator" - } - }, "#sec-getsetrecord": { "current": { "number": "9", @@ -81,10 +73,26 @@ }, "#sec-setdatahas": { "current": { - "number": "11", + "number": "10", "spec": "Set methods", - "text": "SetDataHas ( resultSetData, value )", + "text": "SetDataHas ( setData, value )", "url": "https://tc39.es/proposal-set-methods/#sec-setdatahas" } + }, + "#sec-setdataindex": { + "current": { + "number": "11", + "spec": "Set methods", + "text": "SetDataIndex ( setData, value )", + "url": "https://tc39.es/proposal-set-methods/#sec-setdataindex" + } + }, + "#sec-setdatasize": { + "current": { + "number": "12", + "spec": "Set methods", + "text": "SetDataSize ( setData )", + "url": "https://tc39.es/proposal-set-methods/#sec-setdatasize" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-shadowrealm.json b/bikeshed/spec-data/readonly/headings/headings-tc39-shadowrealm.json index 6b14c706b4..c17cd21260 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-shadowrealm.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-shadowrealm.json @@ -7,6 +7,22 @@ "url": "https://tc39.es/proposal-shadowrealm/#sec-copynameandlength" } }, + "#sec-create-type-error-copy": { + "current": { + "number": "2.2", + "spec": "ShadowRealm API", + "text": "CreateTypeErrorCopy ( realmRecord, originalError )", + "url": "https://tc39.es/proposal-shadowrealm/#sec-create-type-error-copy" + } + }, + "#sec-export-getter-functions": { + "current": { + "number": "3.1.4.1", + "spec": "ShadowRealm API", + "text": "ExportGetter functions", + "url": "https://tc39.es/proposal-shadowrealm/#sec-export-getter-functions" + } + }, "#sec-function.prototype.bind": { "current": { "number": "3.1.2.1", @@ -23,17 +39,25 @@ "url": "https://tc39.es/proposal-shadowrealm/#sec-getwrappedvalue" } }, - "#sec-host-initialize-shadow-shadowrealm": { + "#sec-hostinitializeshadowrealm": { "current": { "number": "3.6.1", "spec": "ShadowRealm API", - "text": "Runtime Semantics: HostInitializeShadowRealm ( realm )", - "url": "https://tc39.es/proposal-shadowrealm/#sec-host-initialize-shadow-shadowrealm" + "text": "HostInitializeShadowRealm ( realm )", + "url": "https://tc39.es/proposal-shadowrealm/#sec-hostinitializeshadowrealm" + } + }, + "#sec-import-value-error-functions": { + "current": { + "number": "3.1.4.2", + "spec": "ShadowRealm API", + "text": "ImportValueError functions", + "url": "https://tc39.es/proposal-shadowrealm/#sec-import-value-error-functions" } }, "#sec-ordinary-wrapped-function-call": { "current": { - "number": "2.2", + "number": "2.3", "spec": "ShadowRealm API", "text": "OrdinaryWrappedFunctionCall ( F, thisArgument, argumentsList )", "url": "https://tc39.es/proposal-shadowrealm/#sec-ordinary-wrapped-function-call" @@ -49,7 +73,7 @@ }, "#sec-prepare-for-wrapped-function-call": { "current": { - "number": "2.3", + "number": "2.4", "spec": "ShadowRealm API", "text": "PrepareForWrappedFunctionCall ( F )", "url": "https://tc39.es/proposal-shadowrealm/#sec-prepare-for-wrapped-function-call" @@ -127,12 +151,12 @@ "url": "https://tc39.es/proposal-shadowrealm/#sec-shadowrealm.prototype" } }, - "#sec-shadowrealm.prototype-@@tostringtag": { + "#sec-shadowrealm.prototype-%40%40tostringtag": { "current": { "number": "3.4.3", "spec": "ShadowRealm API", "text": "ShadowRealm.prototype [ @@toStringTag ]", - "url": "https://tc39.es/proposal-shadowrealm/#sec-shadowrealm.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-shadowrealm/#sec-shadowrealm.prototype-%40%40tostringtag" } }, "#sec-shadowrealm.prototype.evaluate": { @@ -171,7 +195,7 @@ "current": { "number": "1", "spec": "ShadowRealm API", - "text": "Well-known intrinsic objects", + "text": "Well-Known intrinsic objects", "url": "https://tc39.es/proposal-shadowrealm/#sec-well-known-intrinsic-objects" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-source-phase-imports.json b/bikeshed/spec-data/readonly/headings/headings-tc39-source-phase-imports.json new file mode 100644 index 0000000000..6767afb51f --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-source-phase-imports.json @@ -0,0 +1,330 @@ +{ + "#sec-%25abstractmodulesource%25": { + "current": { + "number": "28.1.1.1", + "spec": "Source Phase Imports", + "text": "%AbstractModuleSource% ( )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-%25abstractmodulesource%25" + } + }, + "#sec-%25abstractmodulesource%25-constructor": { + "current": { + "number": "28.1.1", + "spec": "Source Phase Imports", + "text": "The %AbstractModuleSource% Constructor", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-%25abstractmodulesource%25-constructor" + } + }, + "#sec-%25abstractmodulesource%25.prototype": { + "current": { + "number": "28.1.2.1", + "spec": "Source Phase Imports", + "text": "%AbstractModuleSource%.prototype", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-%25abstractmodulesource%25.prototype" + } + }, + "#sec-%25abstractmodulesource%25.prototype.constructor": { + "current": { + "number": "28.1.3.1", + "spec": "Source Phase Imports", + "text": "%AbstractModuleSource%.prototype.constructor", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-%25abstractmodulesource%25.prototype.constructor" + } + }, + "#sec-ContinueDynamicImport": { + "current": { + "number": "13.3.10.2.1", + "spec": "Source Phase Imports", + "text": "ContinueDynamicImport ( promiseCapability, phase, moduleCompletion )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-ContinueDynamicImport" + } + }, + "#sec-ContinueModuleLoading": { + "current": { + "number": "16.1.1.5.1.2", + "spec": "Source Phase Imports", + "text": "ContinueModuleLoading ( state, phase, moduleCompletion )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-ContinueModuleLoading" + } + }, + "#sec-FinishLoadingImportedModule": { + "current": { + "number": "16.1.1.8", + "spec": "Source Phase Imports", + "text": "FinishLoadingImportedModule ( referrer, specifier, moduleRequest, payload, result )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-FinishLoadingImportedModule" + } + }, + "#sec-HostGetModuleSourceName": { + "current": { + "number": "16.1.1.9", + "spec": "Source Phase Imports", + "text": "HostGetModuleSourceName ( moduleSource )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-HostGetModuleSourceName" + } + }, + "#sec-HostLoadImportedModule": { + "current": { + "number": "16.1.1.7", + "spec": "Source Phase Imports", + "text": "HostLoadImportedModule ( referrer, specifier, moduleRequest, hostDefined, payload )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-HostLoadImportedModule" + } + }, + "#sec-InnerModuleLinking": { + "current": { + "number": "16.1.1.5.2.1", + "spec": "Source Phase Imports", + "text": "InnerModuleLinking ( module, stack, index )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-InnerModuleLinking" + } + }, + "#sec-InnerModuleLoading": { + "current": { + "number": "16.1.1.5.1.1", + "spec": "Source Phase Imports", + "text": "InnerModuleLoading ( state, module, loadType )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-InnerModuleLoading" + } + }, + "#sec-LoadRequestedModules": { + "current": { + "number": "16.1.1.5.1", + "spec": "Source Phase Imports", + "text": "LoadRequestedModules ( [ hostDefined ] )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-LoadRequestedModules" + } + }, + "#sec-abstract-module-records": { + "current": { + "number": "16.1.1.4", + "spec": "Source Phase Imports", + "text": "Abstract Module Records", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-abstract-module-records" + } + }, + "#sec-cyclic-module-records": { + "current": { + "number": "16.1.1.5", + "spec": "Source Phase Imports", + "text": "Cyclic Module Records", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-cyclic-module-records" + } + }, + "#sec-ecmascript-data-types-and-values": { + "current": { + "number": "1", + "spec": "Source Phase Imports", + "text": "ECMAScript Data Types and Values", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-ecmascript-data-types-and-values" + } + }, + "#sec-ecmascript-language-expressions": { + "current": { + "number": "13", + "spec": "Source Phase Imports", + "text": "ECMAScript Language: Expressions", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-ecmascript-language-expressions" + } + }, + "#sec-ecmascript-language-scripts-and-modules": { + "current": { + "number": "16", + "spec": "Source Phase Imports", + "text": "ECMAScript Language: Scripts and Modules", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-ecmascript-language-scripts-and-modules" + } + }, + "#sec-ecmascript-language-types": { + "current": { + "number": "1.1", + "spec": "Source Phase Imports", + "text": "ECMAScript Language Types", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-ecmascript-language-types" + } + }, + "#sec-evaluate-import-call": { + "current": { + "number": "13.3.10.2", + "spec": "Source Phase Imports", + "text": "EvaluateImportCall ( specifierExpression, phase )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-evaluate-import-call" + } + }, + "#sec-get-%25abstractmodulesource%25.prototype.%40%40tostringtag": { + "current": { + "number": "28.1.3.2", + "spec": "Source Phase Imports", + "text": "get %AbstractModuleSource%.prototype [ @@toStringTag ]", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-get-%25abstractmodulesource%25.prototype.%40%40tostringtag" + } + }, + "#sec-import-call-runtime-semantics-evaluation": { + "current": { + "number": "13.3.10.1", + "spec": "Source Phase Imports", + "text": "Runtime Semantics: Evaluation", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-import-call-runtime-semantics-evaluation" + } + }, + "#sec-import-calls": { + "current": { + "number": "13.3.10", + "spec": "Source Phase Imports", + "text": "Import Calls", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-import-calls" + } + }, + "#sec-imports": { + "current": { + "number": "16.2", + "spec": "Source Phase Imports", + "text": "Imports", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-imports" + } + }, + "#sec-innermoduleevaluation": { + "current": { + "number": "16.1.1.5.3.1", + "spec": "Source Phase Imports", + "text": "InnerModuleEvaluation ( module, stack, index )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-innermoduleevaluation" + } + }, + "#sec-left-hand-side-expressions": { + "current": { + "number": "13.3", + "spec": "Source Phase Imports", + "text": "Left-Hand-Side Expressions", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-left-hand-side-expressions" + } + }, + "#sec-module-semantics": { + "current": { + "number": "16.1.1", + "spec": "Source Phase Imports", + "text": "Module Semantics", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-module-semantics" + } + }, + "#sec-module-source-objects": { + "current": { + "number": "28.1", + "spec": "Source Phase Imports", + "text": "Module Source Objects", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-module-source-objects" + } + }, + "#sec-moduledeclarationlinking": { + "current": { + "number": "16.1.1.5.2", + "spec": "Source Phase Imports", + "text": "Link ( )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-moduledeclarationlinking" + } + }, + "#sec-moduleevaluation": { + "current": { + "number": "16.1.1.5.3", + "spec": "Source Phase Imports", + "text": "Evaluate ( )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-moduleevaluation" + } + }, + "#sec-modulerequest-record": { + "current": { + "number": "16.1.1.1", + "spec": "Source Phase Imports", + "text": "ModuleRequest Records", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-modulerequest-record" + } + }, + "#sec-modules": { + "current": { + "number": "16.1", + "spec": "Source Phase Imports", + "text": "Modules", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-modules" + } + }, + "#sec-object-type": { + "current": { + "number": "1.1.1", + "spec": "Source Phase Imports", + "text": "Object Type", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-object-type" + } + }, + "#sec-properties-of-the-%25abstractmodulesource%25-intrinsic-object": { + "current": { + "number": "28.1.2", + "spec": "Source Phase Imports", + "text": "Properties of the %AbstractModuleSource% Intrinsic Object", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-properties-of-the-%25abstractmodulesource%25-intrinsic-object" + } + }, + "#sec-properties-of-the-%25abstractmodulesource%25-prototype-object": { + "current": { + "number": "28.1.3", + "spec": "Source Phase Imports", + "text": "Properties of the %AbstractModuleSource% Prototype Object", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-properties-of-the-%25abstractmodulesource%25-prototype-object" + } + }, + "#sec-reflection": { + "current": { + "number": "28", + "spec": "Source Phase Imports", + "text": "Reflection", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-reflection" + } + }, + "#sec-source-text-module-record-getmodulesource": { + "current": { + "number": "16.1.1.6.1", + "spec": "Source Phase Imports", + "text": "GetModuleSource ( )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-source-text-module-record-getmodulesource" + } + }, + "#sec-source-text-module-record-initialize-environment": { + "current": { + "number": "16.1.1.6.2", + "spec": "Source Phase Imports", + "text": "InitializeEnvironment ( )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-source-text-module-record-initialize-environment" + } + }, + "#sec-source-text-module-records": { + "current": { + "number": "16.1.1.6", + "spec": "Source Phase Imports", + "text": "Source Text Module Records", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-source-text-module-records" + } + }, + "#sec-static-semantics-importentries": { + "current": { + "number": "16.2.1", + "spec": "Source Phase Imports", + "text": "Static Semantics: ImportEntries ( )", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-static-semantics-importentries" + } + }, + "#sec-static-semantics-modulerequests": { + "current": { + "number": "16.1.1.3", + "spec": "Source Phase Imports", + "text": "Static Semantics: ModuleRequests", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-static-semantics-modulerequests" + } + }, + "#sec-well-known-intrinsic-objects": { + "current": { + "number": "1.1.1.1", + "spec": "Source Phase Imports", + "text": "Well-Known Intrinsic Objects", + "url": "https://tc39.es/proposal-source-phase-imports/#sec-well-known-intrinsic-objects" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-symbols-as-weakmap-keys.json b/bikeshed/spec-data/readonly/headings/headings-tc39-symbols-as-weakmap-keys.json deleted file mode 100644 index c456831924..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-symbols-as-weakmap-keys.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "#sec-addtokeptobjects": { - "current": { - "number": "1.2", - "spec": "Symbol as WeakMap Keys", - "text": "AddToKeptObjects (\n object: an Object,\n value: an Object or a Symbol,\n ): unused", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-addtokeptobjects" - } - }, - "#sec-canbeheldweakly-abstract-operation": { - "current": { - "number": "2", - "spec": "Symbol as WeakMap Keys", - "text": "CanBeHeldWeakly (\n v: unknown\n ): a Boolean", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-canbeheldweakly-abstract-operation" - } - }, - "#sec-executable-code-and-execution-contexts": { - "current": { - "number": "1", - "spec": "Symbol as WeakMap Keys", - "text": "Executable Code and Execution Contexts", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-executable-code-and-execution-contexts" - } - }, - "#sec-finalization-registry.prototype.register": { - "current": { - "number": "5.2", - "spec": "Symbol as WeakMap Keys", - "text": "FinalizationRegistry.prototype.register ( target, heldValue [ , unregisterToken ] )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-finalization-registry.prototype.register" - } - }, - "#sec-finalization-registry.prototype.unregister": { - "current": { - "number": "5.3", - "spec": "Symbol as WeakMap Keys", - "text": "FinalizationRegistry.prototype.unregister ( unregisterToken )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-finalization-registry.prototype.unregister" - } - }, - "#sec-modifications-of-weakmap": { - "current": { - "number": "3", - "spec": "Symbol as WeakMap Keys", - "text": "Modifications to the properties of WeakMap.prototype", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-modifications-of-weakmap" - } - }, - "#sec-modifications-of-weakref-finalization": { - "current": { - "number": "5", - "spec": "Symbol as WeakMap Keys", - "text": "Modifications to WeakRef and FinalizationRegistry", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-modifications-of-weakref-finalization" - } - }, - "#sec-modifications-of-weakset": { - "current": { - "number": "4", - "spec": "Symbol as WeakMap Keys", - "text": "Modifications to the properties of WeakSet.prototype", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-modifications-of-weakset" - } - }, - "#sec-weak-ref-target": { - "current": { - "number": "5.1", - "spec": "Symbol as WeakMap Keys", - "text": "WeakRef ( target )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weak-ref-target" - } - }, - "#sec-weakmap.prototype.delete": { - "current": { - "number": "3.1", - "spec": "Symbol as WeakMap Keys", - "text": "WeakMap.prototype.delete ( key )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakmap.prototype.delete" - } - }, - "#sec-weakmap.prototype.get": { - "current": { - "number": "3.2", - "spec": "Symbol as WeakMap Keys", - "text": "WeakMap.prototype.get ( key )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakmap.prototype.get" - } - }, - "#sec-weakmap.prototype.has": { - "current": { - "number": "3.3", - "spec": "Symbol as WeakMap Keys", - "text": "WeakMap.prototype.has ( key )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakmap.prototype.has" - } - }, - "#sec-weakmap.prototype.set": { - "current": { - "number": "3.4", - "spec": "Symbol as WeakMap Keys", - "text": "WeakMap.prototype.set ( key, value )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakmap.prototype.set" - } - }, - "#sec-weakref-processing-model": { - "current": { - "number": "1.1", - "spec": "Symbol as WeakMap Keys", - "text": "Processing Model of WeakRef and FinalizationRegistry Objects", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakref-processing-model" - } - }, - "#sec-weakset.prototype.add": { - "current": { - "number": "4.1", - "spec": "Symbol as WeakMap Keys", - "text": "WeakSet.prototype.add ( value )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakset.prototype.add" - } - }, - "#sec-weakset.prototype.delete": { - "current": { - "number": "4.2", - "spec": "Symbol as WeakMap Keys", - "text": "WeakSet.prototype.delete ( value )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakset.prototype.delete" - } - }, - "#sec-weakset.prototype.has": { - "current": { - "number": "4.3", - "spec": "Symbol as WeakMap Keys", - "text": "WeakSet.prototype.has ( value )", - "url": "https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-weakset.prototype.has" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tc39-temporal.json b/bikeshed/spec-data/readonly/headings/headings-tc39-temporal.json index 800848c860..ccc78463a3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tc39-temporal.json +++ b/bikeshed/spec-data/readonly/headings/headings-tc39-temporal.json @@ -1,64 +1,104 @@ { + "#intl-object": { + "current": { + "number": "15.5", + "spec": "Temporal", + "text": "The Intl Object", + "url": "https://tc39.es/proposal-temporal/#intl-object" + } + }, "#locale-sensitive-functions": { "current": { - "number": "15.7", - "spec": "Temporal proposal", + "number": "15.12", + "spec": "Temporal", "text": "Locale Sensitive Functions of the ECMAScript Language Specification", "url": "https://tc39.es/proposal-temporal/#locale-sensitive-functions" } }, "#sec-Intl.DateTimeFormat.prototype.formatRangeToParts": { "current": { - "number": "15.5.3", - "spec": "Temporal proposal", + "number": "15.10.3", + "spec": "Temporal", "text": "Intl.DateTimeFormat.prototype.formatRangeToParts ( startDate, endDate )", "url": "https://tc39.es/proposal-temporal/#sec-Intl.DateTimeFormat.prototype.formatRangeToParts" } }, "#sec-Intl.DateTimeFormat.prototype.formatToParts": { "current": { - "number": "15.5.1", - "spec": "Temporal proposal", + "number": "15.10.1", + "spec": "Temporal", "text": "Intl.DateTimeFormat.prototype.formatToParts ( date )", "url": "https://tc39.es/proposal-temporal/#sec-Intl.DateTimeFormat.prototype.formatToParts" } }, "#sec-abstract-operations": { "current": { - "number": "15.3", - "spec": "Temporal proposal", + "number": "15.6", + "spec": "Temporal", "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-abstract-operations" } }, - "#sec-abstracts": { + "#sec-applyunsignedroundingmode": { "current": { - "number": "15.7.11", - "spec": "Temporal proposal", - "text": "Abstract Operations", - "url": "https://tc39.es/proposal-temporal/#sec-abstracts" + "number": "13.30", + "spec": "Temporal", + "text": "ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-applyunsignedroundingmode" + } + }, + "#sec-applyunsignedroundingmode-deleted": { + "current": { + "number": "15.6.4", + "spec": "Temporal", + "text": "ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-applyunsignedroundingmode-deleted" + } + }, + "#sec-availablecalendars": { + "current": { + "number": "12.1.2", + "spec": "Temporal", + "text": "AvailableCalendars ( )", + "url": "https://tc39.es/proposal-temporal/#sec-availablecalendars" + } + }, + "#sec-availablecalendars-deleted": { + "current": { + "number": "15.4.1", + "spec": "Temporal", + "text": "AvailableCalendars ( )", + "url": "https://tc39.es/proposal-temporal/#sec-availablecalendars-deleted" } }, - "#sec-availabletimezones": { + "#sec-availablecanonicaltimezones": { "current": { - "number": "11.1.3", - "spec": "Temporal proposal", - "text": "AvailableTimeZones ( )", - "url": "https://tc39.es/proposal-temporal/#sec-availabletimezones" + "number": "15.3.3", + "spec": "Temporal", + "text": "AvailableCanonicalTimeZones ( )", + "url": "https://tc39.es/proposal-temporal/#sec-availablecanonicaltimezones" } }, "#sec-calendar-types": { "current": { "number": "12.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Calendar Types", "url": "https://tc39.es/proposal-temporal/#sec-calendar-types" } }, + "#sec-calendar-types-deleted": { + "current": { + "number": "15.4", + "spec": "Temporal", + "text": "Calendar Types", + "url": "https://tc39.es/proposal-temporal/#sec-calendar-types-deleted" + } + }, "#sec-canonicalizetimezonename": { "current": { - "number": "11.1.2", - "spec": "Temporal proposal", + "number": "15.3.2", + "spec": "Temporal", "text": "CanonicalizeTimeZoneName ( timeZone )", "url": "https://tc39.es/proposal-temporal/#sec-canonicalizetimezonename" } @@ -66,87 +106,135 @@ "#sec-constructor-properties-of-the-temporal-object": { "current": { "number": "1.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Constructor Properties of the Temporal Object", "url": "https://tc39.es/proposal-temporal/#sec-constructor-properties-of-the-temporal-object" } }, "#sec-copydataproperties": { "current": { - "number": "14.7", - "spec": "Temporal proposal", + "number": "14.4", + "spec": "Temporal", "text": "CopyDataProperties ( target, source, excludedItems, excludedKeys [ , excludedValues ] )", "url": "https://tc39.es/proposal-temporal/#sec-copydataproperties" } }, + "#sec-createdatetimeformat": { + "current": { + "number": "15.7.1", + "spec": "Temporal", + "text": "CreateDateTimeFormat ( newTarget, locales, options, required, defaults [ , toLocaleStringTimeZone ] )", + "url": "https://tc39.es/proposal-temporal/#sec-createdatetimeformat" + } + }, + "#sec-date-equations": { + "current": { + "number": "13.4", + "spec": "Temporal", + "text": "Date Equations", + "url": "https://tc39.es/proposal-temporal/#sec-date-equations" + } + }, "#sec-date.prototype.totemporalinstant": { "current": { - "number": "14.8.1", - "spec": "Temporal proposal", + "number": "14.9.1", + "spec": "Temporal", "text": "Date.prototype.toTemporalInstant ( )", "url": "https://tc39.es/proposal-temporal/#sec-date.prototype.totemporalinstant" } }, "#sec-datetime-format-functions": { "current": { - "number": "15.4.2", - "spec": "Temporal proposal", + "number": "15.9.2", + "spec": "Temporal", "text": "DateTime Format Functions", "url": "https://tc39.es/proposal-temporal/#sec-datetime-format-functions" } }, "#sec-datetimeformat-abstracts": { "current": { - "number": "15.4", - "spec": "Temporal proposal", - "text": "Abstract Operations For DateTimeFormat Objects", + "number": "15.9", + "spec": "Temporal", + "text": "Abstract Operations for DateTimeFormat Objects", "url": "https://tc39.es/proposal-temporal/#sec-datetimeformat-abstracts" } }, + "#sec-datetimeformat-value-format-records": { + "current": { + "number": "15.9.13", + "spec": "Temporal", + "text": "Value Format Records", + "url": "https://tc39.es/proposal-temporal/#sec-datetimeformat-value-format-records" + } + }, "#sec-ecmascript-language-types-string-type": { "current": { "number": "14.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The String Type", "url": "https://tc39.es/proposal-temporal/#sec-ecmascript-language-types-string-type" } }, + "#sec-epochdaystoepochms": { + "current": { + "number": "13.3", + "spec": "Temporal", + "text": "EpochDaysToEpochMs ( day, time )", + "url": "https://tc39.es/proposal-temporal/#sec-epochdaystoepochms" + } + }, "#sec-formatdatetime": { "current": { - "number": "15.4.5", - "spec": "Temporal proposal", + "number": "15.9.5", + "spec": "Temporal", "text": "FormatDateTime ( dateTimeFormat, x )", "url": "https://tc39.es/proposal-temporal/#sec-formatdatetime" } }, "#sec-formatdatetimepattern": { "current": { - "number": "15.4.3", - "spec": "Temporal proposal", - "text": "FormatDateTimePattern ( dateTimeFormat, pattern, patternParts, xepochNanoseconds, rangeFormatOptions )", + "number": "15.9.3", + "spec": "Temporal", + "text": "FormatDateTimePattern ( dateTimeFormat, format, pattern, x, epochNanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-formatdatetimepattern" } }, "#sec-formatdatetimerange": { "current": { - "number": "15.4.8", - "spec": "Temporal proposal", + "number": "15.9.8", + "spec": "Temporal", "text": "FormatDateTimeRange ( dateTimeFormat, x, y )", "url": "https://tc39.es/proposal-temporal/#sec-formatdatetimerange" } }, "#sec-formatdatetimerangetoparts": { "current": { - "number": "15.4.9", - "spec": "Temporal proposal", + "number": "15.9.9", + "spec": "Temporal", "text": "FormatDateTimeRangeToParts ( dateTimeFormat, x, y )", "url": "https://tc39.es/proposal-temporal/#sec-formatdatetimerangetoparts" } }, + "#sec-formatdatetimetoparts": { + "current": { + "number": "15.9.6", + "spec": "Temporal", + "text": "FormatDateTimeToParts ( dateTimeFormat, x )", + "url": "https://tc39.es/proposal-temporal/#sec-formatdatetimetoparts" + } + }, + "#sec-function-properties-of-the-intl-object": { + "current": { + "number": "15.5.1", + "spec": "Temporal", + "text": "Function Properties of the Intl Object", + "url": "https://tc39.es/proposal-temporal/#sec-function-properties-of-the-intl-object" + } + }, "#sec-function-properties-of-the-temporal-now-object": { "current": { "number": "2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Function Properties of the Temporal.Now Object", "url": "https://tc39.es/proposal-temporal/#sec-function-properties-of-the-temporal-now-object" } @@ -154,7 +242,7 @@ "#sec-get-temporal.calendar.prototype.id": { "current": { "number": "12.5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Calendar.prototype.id", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.calendar.prototype.id" } @@ -162,7 +250,7 @@ "#sec-get-temporal.duration.prototype.blank": { "current": { "number": "7.3.14", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.blank", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.blank" } @@ -170,7 +258,7 @@ "#sec-get-temporal.duration.prototype.days": { "current": { "number": "7.3.6", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.days", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.days" } @@ -178,7 +266,7 @@ "#sec-get-temporal.duration.prototype.hours": { "current": { "number": "7.3.7", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.hours", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.hours" } @@ -186,7 +274,7 @@ "#sec-get-temporal.duration.prototype.microseconds": { "current": { "number": "7.3.11", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.microseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.microseconds" } @@ -194,7 +282,7 @@ "#sec-get-temporal.duration.prototype.milliseconds": { "current": { "number": "7.3.10", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.milliseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.milliseconds" } @@ -202,7 +290,7 @@ "#sec-get-temporal.duration.prototype.minutes": { "current": { "number": "7.3.8", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.minutes", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.minutes" } @@ -210,7 +298,7 @@ "#sec-get-temporal.duration.prototype.months": { "current": { "number": "7.3.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.months", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.months" } @@ -218,7 +306,7 @@ "#sec-get-temporal.duration.prototype.nanoseconds": { "current": { "number": "7.3.12", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.nanoseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.nanoseconds" } @@ -226,7 +314,7 @@ "#sec-get-temporal.duration.prototype.seconds": { "current": { "number": "7.3.9", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.seconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.seconds" } @@ -234,7 +322,7 @@ "#sec-get-temporal.duration.prototype.sign": { "current": { "number": "7.3.13", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.sign", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.sign" } @@ -242,7 +330,7 @@ "#sec-get-temporal.duration.prototype.weeks": { "current": { "number": "7.3.5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.weeks", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.weeks" } @@ -250,359 +338,343 @@ "#sec-get-temporal.duration.prototype.years": { "current": { "number": "7.3.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.Duration.prototype.years", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.duration.prototype.years" } }, - "#sec-get-temporal.instant.prototype.epochmicroseconds": { - "current": { - "number": "8.3.5", - "spec": "Temporal proposal", - "text": "get Temporal.Instant.prototype.epochMicroseconds", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.instant.prototype.epochmicroseconds" - } - }, "#sec-get-temporal.instant.prototype.epochmilliseconds": { "current": { - "number": "8.3.4", - "spec": "Temporal proposal", + "number": "8.3.3", + "spec": "Temporal", "text": "get Temporal.Instant.prototype.epochMilliseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.instant.prototype.epochmilliseconds" } }, "#sec-get-temporal.instant.prototype.epochnanoseconds": { "current": { - "number": "8.3.6", - "spec": "Temporal proposal", + "number": "8.3.4", + "spec": "Temporal", "text": "get Temporal.Instant.prototype.epochNanoseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.instant.prototype.epochnanoseconds" } }, - "#sec-get-temporal.instant.prototype.epochseconds": { - "current": { - "number": "8.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.Instant.prototype.epochSeconds", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.instant.prototype.epochseconds" - } - }, - "#sec-get-temporal.plaindate.prototype.calendar": { + "#sec-get-temporal.plaindate.prototype.calendarid": { "current": { "number": "3.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.PlainDate.prototype.calendar", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.calendar" + "spec": "Temporal", + "text": "get Temporal.PlainDate.prototype.calendarId", + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.calendarid" } }, "#sec-get-temporal.plaindate.prototype.day": { "current": { - "number": "3.3.7", - "spec": "Temporal proposal", + "number": "3.3.9", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.day", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.day" } }, "#sec-get-temporal.plaindate.prototype.dayofweek": { "current": { - "number": "3.3.8", - "spec": "Temporal proposal", + "number": "3.3.10", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.dayOfWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.dayofweek" } }, "#sec-get-temporal.plaindate.prototype.dayofyear": { "current": { - "number": "3.3.9", - "spec": "Temporal proposal", + "number": "3.3.11", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.dayOfYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.dayofyear" } }, "#sec-get-temporal.plaindate.prototype.daysinmonth": { "current": { - "number": "3.3.13", - "spec": "Temporal proposal", + "number": "3.3.15", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.daysInMonth", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.daysinmonth" } }, "#sec-get-temporal.plaindate.prototype.daysinweek": { "current": { - "number": "3.3.12", - "spec": "Temporal proposal", + "number": "3.3.14", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.daysInWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.daysinweek" } }, "#sec-get-temporal.plaindate.prototype.daysinyear": { "current": { - "number": "3.3.14", - "spec": "Temporal proposal", + "number": "3.3.16", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.daysInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.daysinyear" } }, "#sec-get-temporal.plaindate.prototype.era": { "current": { - "number": "15.7.5.2", - "spec": "Temporal proposal", + "number": "3.3.4", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.era", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.era" } }, "#sec-get-temporal.plaindate.prototype.erayear": { "current": { - "number": "15.7.5.3", - "spec": "Temporal proposal", + "number": "3.3.5", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.eraYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.erayear" } }, "#sec-get-temporal.plaindate.prototype.inleapyear": { "current": { - "number": "3.3.16", - "spec": "Temporal proposal", + "number": "3.3.18", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.inLeapYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.inleapyear" } }, "#sec-get-temporal.plaindate.prototype.month": { "current": { - "number": "3.3.5", - "spec": "Temporal proposal", + "number": "3.3.7", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.month", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.month" } }, - "#sec-get-temporal.plaindate.prototype.monthCode": { + "#sec-get-temporal.plaindate.prototype.monthcode": { "current": { - "number": "3.3.6", - "spec": "Temporal proposal", + "number": "3.3.8", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.monthCode", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.monthCode" + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.monthcode" } }, "#sec-get-temporal.plaindate.prototype.monthsinyear": { "current": { - "number": "3.3.15", - "spec": "Temporal proposal", + "number": "3.3.17", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.monthsInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.monthsinyear" } }, "#sec-get-temporal.plaindate.prototype.weekofyear": { "current": { - "number": "3.3.10", - "spec": "Temporal proposal", + "number": "3.3.12", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.weekOfYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.weekofyear" } }, "#sec-get-temporal.plaindate.prototype.year": { "current": { - "number": "3.3.4", - "spec": "Temporal proposal", + "number": "3.3.6", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.year", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.year" } }, "#sec-get-temporal.plaindate.prototype.yearofweek": { "current": { - "number": "3.3.11", - "spec": "Temporal proposal", + "number": "3.3.13", + "spec": "Temporal", "text": "get Temporal.PlainDate.prototype.yearOfWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.yearofweek" } }, - "#sec-get-temporal.plaindatetime.prototype.calendar": { + "#sec-get-temporal.plaindatetime.prototype.calendarid": { "current": { "number": "5.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.PlainDateTime.prototype.calendar", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.calendar" + "spec": "Temporal", + "text": "get Temporal.PlainDateTime.prototype.calendarId", + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.calendarid" } }, "#sec-get-temporal.plaindatetime.prototype.day": { "current": { - "number": "5.3.7", - "spec": "Temporal proposal", + "number": "5.3.9", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.day", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.day" } }, "#sec-get-temporal.plaindatetime.prototype.dayofweek": { "current": { - "number": "5.3.14", - "spec": "Temporal proposal", + "number": "5.3.16", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.dayOfWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.dayofweek" } }, "#sec-get-temporal.plaindatetime.prototype.dayofyear": { "current": { - "number": "5.3.15", - "spec": "Temporal proposal", + "number": "5.3.17", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.dayOfYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.dayofyear" } }, "#sec-get-temporal.plaindatetime.prototype.daysinmonth": { "current": { - "number": "5.3.19", - "spec": "Temporal proposal", + "number": "5.3.21", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.daysInMonth", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.daysinmonth" } }, "#sec-get-temporal.plaindatetime.prototype.daysinweek": { "current": { - "number": "5.3.18", - "spec": "Temporal proposal", + "number": "5.3.20", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.daysInWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.daysinweek" } }, "#sec-get-temporal.plaindatetime.prototype.daysinyear": { "current": { - "number": "5.3.20", - "spec": "Temporal proposal", + "number": "5.3.22", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.daysInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.daysinyear" } }, "#sec-get-temporal.plaindatetime.prototype.era": { "current": { - "number": "15.7.6.2", - "spec": "Temporal proposal", + "number": "5.3.4", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.era", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.era" } }, "#sec-get-temporal.plaindatetime.prototype.erayear": { "current": { - "number": "15.7.6.3", - "spec": "Temporal proposal", + "number": "5.3.5", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.eraYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.erayear" } }, "#sec-get-temporal.plaindatetime.prototype.hour": { "current": { - "number": "5.3.8", - "spec": "Temporal proposal", + "number": "5.3.10", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.hour", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.hour" } }, "#sec-get-temporal.plaindatetime.prototype.inleapyear": { "current": { - "number": "5.3.22", - "spec": "Temporal proposal", + "number": "5.3.24", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.inLeapYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.inleapyear" } }, "#sec-get-temporal.plaindatetime.prototype.microsecond": { "current": { - "number": "5.3.12", - "spec": "Temporal proposal", + "number": "5.3.14", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.microsecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.microsecond" } }, "#sec-get-temporal.plaindatetime.prototype.millisecond": { "current": { - "number": "5.3.11", - "spec": "Temporal proposal", + "number": "5.3.13", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.millisecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.millisecond" } }, "#sec-get-temporal.plaindatetime.prototype.minute": { "current": { - "number": "5.3.9", - "spec": "Temporal proposal", + "number": "5.3.11", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.minute", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.minute" } }, "#sec-get-temporal.plaindatetime.prototype.month": { "current": { - "number": "5.3.5", - "spec": "Temporal proposal", + "number": "5.3.7", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.month", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.month" } }, "#sec-get-temporal.plaindatetime.prototype.monthcode": { "current": { - "number": "5.3.6", - "spec": "Temporal proposal", + "number": "5.3.8", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.monthCode", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.monthcode" } }, "#sec-get-temporal.plaindatetime.prototype.monthsinyear": { "current": { - "number": "5.3.21", - "spec": "Temporal proposal", + "number": "5.3.23", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.monthsInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.monthsinyear" } }, "#sec-get-temporal.plaindatetime.prototype.nanosecond": { "current": { - "number": "5.3.13", - "spec": "Temporal proposal", + "number": "5.3.15", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.nanosecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.nanosecond" } }, "#sec-get-temporal.plaindatetime.prototype.second": { "current": { - "number": "5.3.10", - "spec": "Temporal proposal", + "number": "5.3.12", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.second", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.second" } }, "#sec-get-temporal.plaindatetime.prototype.weekofyear": { "current": { - "number": "5.3.16", - "spec": "Temporal proposal", + "number": "5.3.18", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.weekOfYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.weekofyear" } }, "#sec-get-temporal.plaindatetime.prototype.year": { "current": { - "number": "5.3.4", - "spec": "Temporal proposal", + "number": "5.3.6", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.year", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.year" } }, "#sec-get-temporal.plaindatetime.prototype.yearofweek": { "current": { - "number": "5.3.17", - "spec": "Temporal proposal", + "number": "5.3.19", + "spec": "Temporal", "text": "get Temporal.PlainDateTime.prototype.yearOfWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaindatetime.prototype.yearofweek" } }, - "#sec-get-temporal.plainmonthday.prototype.calendar": { + "#sec-get-temporal.plainmonthday.prototype.calendarid": { "current": { "number": "10.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.PlainMonthDay.prototype.calendar", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainmonthday.prototype.calendar" + "spec": "Temporal", + "text": "get Temporal.PlainMonthDay.prototype.calendarId", + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainmonthday.prototype.calendarid" } }, "#sec-get-temporal.plainmonthday.prototype.day": { "current": { "number": "10.3.5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.PlainMonthDay.prototype.day", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainmonthday.prototype.day" } @@ -610,167 +682,159 @@ "#sec-get-temporal.plainmonthday.prototype.monthcode": { "current": { "number": "10.3.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.PlainMonthDay.prototype.monthCode", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainmonthday.prototype.monthcode" } }, - "#sec-get-temporal.plaintime.prototype.calendar": { - "current": { - "number": "4.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.PlainTime.prototype.calendar", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.calendar" - } - }, "#sec-get-temporal.plaintime.prototype.hour": { "current": { - "number": "4.3.4", - "spec": "Temporal proposal", + "number": "4.3.3", + "spec": "Temporal", "text": "get Temporal.PlainTime.prototype.hour", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.hour" } }, "#sec-get-temporal.plaintime.prototype.microsecond": { "current": { - "number": "4.3.8", - "spec": "Temporal proposal", + "number": "4.3.7", + "spec": "Temporal", "text": "get Temporal.PlainTime.prototype.microsecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.microsecond" } }, "#sec-get-temporal.plaintime.prototype.millisecond": { "current": { - "number": "4.3.7", - "spec": "Temporal proposal", + "number": "4.3.6", + "spec": "Temporal", "text": "get Temporal.PlainTime.prototype.millisecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.millisecond" } }, "#sec-get-temporal.plaintime.prototype.minute": { "current": { - "number": "4.3.5", - "spec": "Temporal proposal", + "number": "4.3.4", + "spec": "Temporal", "text": "get Temporal.PlainTime.prototype.minute", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.minute" } }, "#sec-get-temporal.plaintime.prototype.nanosecond": { "current": { - "number": "4.3.9", - "spec": "Temporal proposal", + "number": "4.3.8", + "spec": "Temporal", "text": "get Temporal.PlainTime.prototype.nanosecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.nanosecond" } }, "#sec-get-temporal.plaintime.prototype.second": { "current": { - "number": "4.3.6", - "spec": "Temporal proposal", + "number": "4.3.5", + "spec": "Temporal", "text": "get Temporal.PlainTime.prototype.second", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plaintime.prototype.second" } }, - "#sec-get-temporal.plainyearmonth.prototype.calendar": { + "#sec-get-temporal.plainyearmonth.prototype.calendarid": { "current": { "number": "9.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.PlainYearMonth.prototype.calendar", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.calendar" + "spec": "Temporal", + "text": "get Temporal.PlainYearMonth.prototype.calendarId", + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.calendarid" } }, "#sec-get-temporal.plainyearmonth.prototype.daysinmonth": { "current": { - "number": "9.3.8", - "spec": "Temporal proposal", + "number": "9.3.10", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.daysInMonth", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.daysinmonth" } }, "#sec-get-temporal.plainyearmonth.prototype.daysinyear": { "current": { - "number": "9.3.7", - "spec": "Temporal proposal", + "number": "9.3.9", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.daysInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.daysinyear" } }, "#sec-get-temporal.plainyearmonth.prototype.era": { "current": { - "number": "15.7.9.2", - "spec": "Temporal proposal", + "number": "9.3.4", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.era", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.era" } }, "#sec-get-temporal.plainyearmonth.prototype.erayear": { "current": { - "number": "15.7.9.3", - "spec": "Temporal proposal", + "number": "9.3.5", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.eraYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.erayear" } }, "#sec-get-temporal.plainyearmonth.prototype.inleapyear": { "current": { - "number": "9.3.10", - "spec": "Temporal proposal", + "number": "9.3.12", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.inLeapYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.inleapyear" } }, "#sec-get-temporal.plainyearmonth.prototype.month": { "current": { - "number": "9.3.5", - "spec": "Temporal proposal", + "number": "9.3.7", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.month", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.month" } }, - "#sec-get-temporal.plainyearmonth.prototype.monthCode": { + "#sec-get-temporal.plainyearmonth.prototype.monthcode": { "current": { - "number": "9.3.6", - "spec": "Temporal proposal", + "number": "9.3.8", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.monthCode", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.monthCode" + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.monthcode" } }, "#sec-get-temporal.plainyearmonth.prototype.monthsinyear": { "current": { - "number": "9.3.9", - "spec": "Temporal proposal", + "number": "9.3.11", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.monthsInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.monthsinyear" } }, "#sec-get-temporal.plainyearmonth.prototype.year": { "current": { - "number": "9.3.4", - "spec": "Temporal proposal", + "number": "9.3.6", + "spec": "Temporal", "text": "get Temporal.PlainYearMonth.prototype.year", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.plainyearmonth.prototype.year" } }, "#sec-get-temporal.timezone.prototype.id": { "current": { - "number": "11.4.3", - "spec": "Temporal proposal", + "number": "11.3.3", + "spec": "Temporal", "text": "get Temporal.TimeZone.prototype.id", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.timezone.prototype.id" } }, - "#sec-get-temporal.zoneddatetime.prototype.calendar": { + "#sec-get-temporal.zoneddatetime.prototype.calendarid": { "current": { "number": "6.3.3", - "spec": "Temporal proposal", - "text": "get Temporal.ZonedDateTime.prototype.calendar", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.calendar" + "spec": "Temporal", + "text": "get Temporal.ZonedDateTime.prototype.calendarId", + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.calendarid" } }, "#sec-get-temporal.zoneddatetime.prototype.day": { "current": { - "number": "6.3.8", - "spec": "Temporal proposal", + "number": "6.3.10", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.day", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.day" } @@ -778,7 +842,7 @@ "#sec-get-temporal.zoneddatetime.prototype.dayofweek": { "current": { "number": "6.3.19", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.dayOfWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.dayofweek" } @@ -786,7 +850,7 @@ "#sec-get-temporal.zoneddatetime.prototype.dayofyear": { "current": { "number": "6.3.20", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.dayOfYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.dayofyear" } @@ -794,7 +858,7 @@ "#sec-get-temporal.zoneddatetime.prototype.daysinmonth": { "current": { "number": "6.3.25", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.daysInMonth", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.daysinmonth" } @@ -802,7 +866,7 @@ "#sec-get-temporal.zoneddatetime.prototype.daysinweek": { "current": { "number": "6.3.24", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.daysInWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.daysinweek" } @@ -810,23 +874,15 @@ "#sec-get-temporal.zoneddatetime.prototype.daysinyear": { "current": { "number": "6.3.26", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.daysInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.daysinyear" } }, - "#sec-get-temporal.zoneddatetime.prototype.epochmicroseconds": { - "current": { - "number": "6.3.17", - "spec": "Temporal proposal", - "text": "get Temporal.ZonedDateTime.prototype.epochMicroseconds", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.epochmicroseconds" - } - }, "#sec-get-temporal.zoneddatetime.prototype.epochmilliseconds": { "current": { - "number": "6.3.16", - "spec": "Temporal proposal", + "number": "6.3.17", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.epochMilliseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.epochmilliseconds" } @@ -834,39 +890,31 @@ "#sec-get-temporal.zoneddatetime.prototype.epochnanoseconds": { "current": { "number": "6.3.18", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.epochNanoseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.epochnanoseconds" } }, - "#sec-get-temporal.zoneddatetime.prototype.epochseconds": { - "current": { - "number": "6.3.15", - "spec": "Temporal proposal", - "text": "get Temporal.ZonedDateTime.prototype.epochSeconds", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.epochseconds" - } - }, "#sec-get-temporal.zoneddatetime.prototype.era": { "current": { - "number": "15.7.10.2", - "spec": "Temporal proposal", + "number": "6.3.5", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.era", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.era" } }, "#sec-get-temporal.zoneddatetime.prototype.erayear": { "current": { - "number": "15.7.10.3", - "spec": "Temporal proposal", + "number": "6.3.6", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.eraYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.erayear" } }, "#sec-get-temporal.zoneddatetime.prototype.hour": { "current": { - "number": "6.3.9", - "spec": "Temporal proposal", + "number": "6.3.11", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.hour", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.hour" } @@ -874,7 +922,7 @@ "#sec-get-temporal.zoneddatetime.prototype.hoursinday": { "current": { "number": "6.3.23", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.hoursInDay", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.hoursinday" } @@ -882,47 +930,47 @@ "#sec-get-temporal.zoneddatetime.prototype.inleapyear": { "current": { "number": "6.3.28", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.inLeapYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.inleapyear" } }, "#sec-get-temporal.zoneddatetime.prototype.microsecond": { "current": { - "number": "6.3.13", - "spec": "Temporal proposal", + "number": "6.3.15", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.microsecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.microsecond" } }, "#sec-get-temporal.zoneddatetime.prototype.millisecond": { "current": { - "number": "6.3.12", - "spec": "Temporal proposal", + "number": "6.3.14", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.millisecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.millisecond" } }, "#sec-get-temporal.zoneddatetime.prototype.minute": { "current": { - "number": "6.3.10", - "spec": "Temporal proposal", + "number": "6.3.12", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.minute", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.minute" } }, "#sec-get-temporal.zoneddatetime.prototype.month": { "current": { - "number": "6.3.6", - "spec": "Temporal proposal", + "number": "6.3.8", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.month", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.month" } }, "#sec-get-temporal.zoneddatetime.prototype.monthcode": { "current": { - "number": "6.3.7", - "spec": "Temporal proposal", + "number": "6.3.9", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.monthCode", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.monthcode" } @@ -930,15 +978,15 @@ "#sec-get-temporal.zoneddatetime.prototype.monthsinyear": { "current": { "number": "6.3.27", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.monthsInYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.monthsinyear" } }, "#sec-get-temporal.zoneddatetime.prototype.nanosecond": { "current": { - "number": "6.3.14", - "spec": "Temporal proposal", + "number": "6.3.16", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.nanosecond", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.nanosecond" } @@ -946,7 +994,7 @@ "#sec-get-temporal.zoneddatetime.prototype.offset": { "current": { "number": "6.3.30", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.offset", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.offset" } @@ -954,39 +1002,39 @@ "#sec-get-temporal.zoneddatetime.prototype.offsetnanoseconds": { "current": { "number": "6.3.29", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.offsetNanoseconds", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.offsetnanoseconds" } }, "#sec-get-temporal.zoneddatetime.prototype.second": { "current": { - "number": "6.3.11", - "spec": "Temporal proposal", + "number": "6.3.13", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.second", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.second" } }, - "#sec-get-temporal.zoneddatetime.prototype.timezone": { + "#sec-get-temporal.zoneddatetime.prototype.timezoneid": { "current": { "number": "6.3.4", - "spec": "Temporal proposal", - "text": "get Temporal.ZonedDateTime.prototype.timeZone", - "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.timezone" + "spec": "Temporal", + "text": "get Temporal.ZonedDateTime.prototype.timeZoneId", + "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.timezoneid" } }, "#sec-get-temporal.zoneddatetime.prototype.weekofyear": { "current": { "number": "6.3.21", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.weekOfYear", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.weekofyear" } }, "#sec-get-temporal.zoneddatetime.prototype.year": { "current": { - "number": "6.3.5", - "spec": "Temporal proposal", + "number": "6.3.7", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.year", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.year" } @@ -994,87 +1042,159 @@ "#sec-get-temporal.zoneddatetime.prototype.yearofweek": { "current": { "number": "6.3.22", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "get Temporal.ZonedDateTime.prototype.yearOfWeek", "url": "https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.yearofweek" } }, + "#sec-getavailablenamedtimezoneidentifier": { + "current": { + "number": "11.5.8", + "spec": "Temporal", + "text": "GetAvailableNamedTimeZoneIdentifier ( timeZoneIdentifier )", + "url": "https://tc39.es/proposal-temporal/#sec-getavailablenamedtimezoneidentifier" + } + }, + "#sec-getdatetimeformat": { + "current": { + "number": "15.9.1", + "spec": "Temporal", + "text": "GetDateTimeFormat ( formats, matcher, options, required, defaults, inherit )", + "url": "https://tc39.es/proposal-temporal/#sec-getdatetimeformat" + } + }, "#sec-getoption": { "current": { - "number": "13.3", - "spec": "Temporal proposal", + "number": "13.7", + "spec": "Temporal", "text": "GetOption ( options, property, type, values, default )", "url": "https://tc39.es/proposal-temporal/#sec-getoption" } }, "#sec-getoption-deleted": { "current": { - "number": "15.3.2", - "spec": "Temporal proposal", + "number": "15.6.2", + "spec": "Temporal", "text": "GetOption ( options, property, type, values, default )", "url": "https://tc39.es/proposal-temporal/#sec-getoption-deleted" } }, "#sec-getoptionsobject": { "current": { - "number": "13.2", - "spec": "Temporal proposal", + "number": "13.6", + "spec": "Temporal", "text": "GetOptionsObject ( options )", "url": "https://tc39.es/proposal-temporal/#sec-getoptionsobject" } }, "#sec-getoptionsobject-deleted": { "current": { - "number": "15.3.1", - "spec": "Temporal proposal", + "number": "15.6.1", + "spec": "Temporal", "text": "GetOptionsObject ( options )", "url": "https://tc39.es/proposal-temporal/#sec-getoptionsobject-deleted" } }, + "#sec-getunsignedroundingmode": { + "current": { + "number": "13.29", + "spec": "Temporal", + "text": "GetUnsignedRoundingMode ( roundingMode, sign )", + "url": "https://tc39.es/proposal-temporal/#sec-getunsignedroundingmode" + } + }, + "#sec-getunsignedroundingmode-deleted": { + "current": { + "number": "15.6.3", + "spec": "Temporal", + "text": "GetUnsignedRoundingMode ( roundingMode, sign )", + "url": "https://tc39.es/proposal-temporal/#sec-getunsignedroundingmode-deleted" + } + }, + "#sec-hostsystemutcepochnanoseconds": { + "current": { + "number": "2.3.1", + "spec": "Temporal", + "text": "HostSystemUTCEpochNanoseconds ( global )", + "url": "https://tc39.es/proposal-temporal/#sec-hostsystemutcepochnanoseconds" + } + }, + "#sec-intl-datetimeformat-constructor": { + "current": { + "number": "15.7", + "spec": "Temporal", + "text": "The Intl.DateTimeFormat Constructor", + "url": "https://tc39.es/proposal-temporal/#sec-intl-datetimeformat-constructor" + } + }, + "#sec-intl.datetimeformat-internal-slots": { + "current": { + "number": "15.8.1", + "spec": "Temporal", + "text": "Internal slots", + "url": "https://tc39.es/proposal-temporal/#sec-intl.datetimeformat-internal-slots" + } + }, "#sec-intl.datetimeformat.prototype.formatRange": { "current": { - "number": "15.5.2", - "spec": "Temporal proposal", + "number": "15.10.2", + "spec": "Temporal", "text": "Intl.DateTimeFormat.prototype.formatRange ( startDate, endDate )", "url": "https://tc39.es/proposal-temporal/#sec-intl.datetimeformat.prototype.formatRange" } }, "#sec-intl.datetimeformat.prototype.resolvedoptions": { "current": { - "number": "15.5.4", - "spec": "Temporal proposal", + "number": "15.10.4", + "spec": "Temporal", "text": "Intl.DateTimeFormat.prototype.resolvedOptions ( )", "url": "https://tc39.es/proposal-temporal/#sec-intl.datetimeformat.prototype.resolvedoptions" } }, - "#sec-isavailabletimezonename": { + "#sec-intl.supportedvaluesof": { "current": { - "number": "11.1.1", - "spec": "Temporal proposal", - "text": "IsAvailableTimeZoneName ( timeZone )", - "url": "https://tc39.es/proposal-temporal/#sec-isavailabletimezonename" + "number": "15.5.1.1", + "spec": "Temporal", + "text": "Intl.supportedValuesOf ( key )", + "url": "https://tc39.es/proposal-temporal/#sec-intl.supportedvaluesof" + } + }, + "#sec-isodatetoepochdays": { + "current": { + "number": "13.2", + "spec": "Temporal", + "text": "ISODateToEpochDays ( year, month, date )", + "url": "https://tc39.es/proposal-temporal/#sec-isodatetoepochdays" + } + }, + "#sec-isvalidtimezonename": { + "current": { + "number": "15.3.1", + "spec": "Temporal", + "text": "IsValidTimeZoneName ( timeZone )", + "url": "https://tc39.es/proposal-temporal/#sec-isvalidtimezonename" } }, - "#sec-iterabletolistoftype": { + "#sec-iteratortolistoftype": { "current": { "number": "13.1", - "spec": "Temporal proposal", - "text": "IterableToListOfType ( items, elementTypes )", - "url": "https://tc39.es/proposal-temporal/#sec-iterabletolistoftype" + "spec": "Temporal", + "text": "IteratorToListOfType ( iteratorRecord, elementTypes )", + "url": "https://tc39.es/proposal-temporal/#sec-iteratortolistoftype" } }, - "#sec-literals-numeric-literals": { + "#sec-localtime": { "current": { - "number": "14.5", - "spec": "Temporal proposal", - "text": "Numeric Literals", - "url": "https://tc39.es/proposal-temporal/#sec-literals-numeric-literals" + "number": "14.6.5", + "spec": "Temporal", + "text": "LocalTime ( t )", + "url": "https://tc39.es/proposal-temporal/#sec-localtime" } }, "#sec-mathematical-operations": { "current": { - "number": "14.6", - "spec": "Temporal proposal", + "number": "14.3", + "spec": "Temporal", "text": "Mathematical Operations", "url": "https://tc39.es/proposal-temporal/#sec-mathematical-operations" } @@ -1082,39 +1202,63 @@ "#sec-other-properties-of-the-temporal-object": { "current": { "number": "1.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Other Properties of the Temporal Object", "url": "https://tc39.es/proposal-temporal/#sec-other-properties-of-the-temporal-object" } }, + "#sec-overview-of-date-objects-and-definitions-of-abstract-operations": { + "current": { + "number": "14.6", + "spec": "Temporal", + "text": "Overview of Date Objects and Definitions of Abstract Operations", + "url": "https://tc39.es/proposal-temporal/#sec-overview-of-date-objects-and-definitions-of-abstract-operations" + } + }, + "#sec-parsetimezoneidentifier": { + "current": { + "number": "11.5.26", + "spec": "Temporal", + "text": "ParseTimeZoneIdentifier ( identifier )", + "url": "https://tc39.es/proposal-temporal/#sec-parsetimezoneidentifier" + } + }, "#sec-partitiondatetimepattern": { "current": { - "number": "15.4.4", - "spec": "Temporal proposal", + "number": "15.9.4", + "spec": "Temporal", "text": "PartitionDateTimePattern ( dateTimeFormat, x )", "url": "https://tc39.es/proposal-temporal/#sec-partitiondatetimepattern" } }, "#sec-partitiondatetimerangepattern": { "current": { - "number": "15.4.7", - "spec": "Temporal proposal", + "number": "15.9.7", + "spec": "Temporal", "text": "PartitionDateTimeRangePattern ( dateTimeFormat, x, y )", "url": "https://tc39.es/proposal-temporal/#sec-partitiondatetimerangepattern" } }, + "#sec-properties-of-intl-datetimeformat-constructor": { + "current": { + "number": "15.8", + "spec": "Temporal", + "text": "Properties of the Intl.DateTimeFormat Constructor", + "url": "https://tc39.es/proposal-temporal/#sec-properties-of-intl-datetimeformat-constructor" + } + }, "#sec-properties-of-intl-datetimeformat-instances": { "current": { - "number": "15.6", - "spec": "Temporal proposal", + "number": "15.11", + "spec": "Temporal", "text": "Properties of Intl.DateTimeFormat Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-intl-datetimeformat-instances" } }, "#sec-properties-of-intl-datetimeformat-prototype-object": { "current": { - "number": "15.5", - "spec": "Temporal proposal", + "number": "15.10", + "spec": "Temporal", "text": "Properties of the Intl.DateTimeFormat Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-intl-datetimeformat-prototype-object" } @@ -1122,7 +1266,7 @@ "#sec-properties-of-temporal-calendar-instances": { "current": { "number": "12.6", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.Calendar Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-calendar-instances" } @@ -1130,7 +1274,7 @@ "#sec-properties-of-temporal-duration-instances": { "current": { "number": "7.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.Duration Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-duration-instances" } @@ -1138,7 +1282,7 @@ "#sec-properties-of-temporal-instant-instances": { "current": { "number": "8.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.Instant Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-instant-instances" } @@ -1146,7 +1290,7 @@ "#sec-properties-of-temporal-plaindate-instances": { "current": { "number": "3.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.PlainDate Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-plaindate-instances" } @@ -1154,7 +1298,7 @@ "#sec-properties-of-temporal-plaindatetime-instances": { "current": { "number": "5.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.PlainDateTime Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-plaindatetime-instances" } @@ -1162,7 +1306,7 @@ "#sec-properties-of-temporal-plainmonthday-instances": { "current": { "number": "10.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.PlainMonthDay Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-plainmonthday-instances" } @@ -1170,7 +1314,7 @@ "#sec-properties-of-temporal-plaintime-instances": { "current": { "number": "4.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.PlainTime Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-plaintime-instances" } @@ -1178,15 +1322,15 @@ "#sec-properties-of-temporal-plainyearmonth-instances": { "current": { "number": "9.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.PlainYearMonth Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-plainyearmonth-instances" } }, "#sec-properties-of-temporal-timezone-instances": { "current": { - "number": "11.5", - "spec": "Temporal proposal", + "number": "11.4", + "spec": "Temporal", "text": "Properties of Temporal.TimeZone Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-timezone-instances" } @@ -1194,7 +1338,7 @@ "#sec-properties-of-temporal-zoneddatetime-instances": { "current": { "number": "6.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of Temporal.ZonedDateTime Instances", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-temporal-zoneddatetime-instances" } @@ -1202,7 +1346,7 @@ "#sec-properties-of-the-temporal-calendar-constructor": { "current": { "number": "12.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.Calendar Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-calendar-constructor" } @@ -1210,7 +1354,7 @@ "#sec-properties-of-the-temporal-calendar-prototype-object": { "current": { "number": "12.5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.Calendar Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-calendar-prototype-object" } @@ -1218,7 +1362,7 @@ "#sec-properties-of-the-temporal-duration-constructor": { "current": { "number": "7.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.Duration Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-duration-constructor" } @@ -1226,7 +1370,7 @@ "#sec-properties-of-the-temporal-duration-prototype-object": { "current": { "number": "7.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.Duration Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-duration-prototype-object" } @@ -1234,7 +1378,7 @@ "#sec-properties-of-the-temporal-instant-constructor": { "current": { "number": "8.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.Instant Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-instant-constructor" } @@ -1242,7 +1386,7 @@ "#sec-properties-of-the-temporal-instant-prototype-object": { "current": { "number": "8.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.Instant Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-instant-prototype-object" } @@ -1250,7 +1394,7 @@ "#sec-properties-of-the-temporal-plaindate-constructor": { "current": { "number": "3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainDate Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plaindate-constructor" } @@ -1258,7 +1402,7 @@ "#sec-properties-of-the-temporal-plaindate-prototype-object": { "current": { "number": "3.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainDate Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plaindate-prototype-object" } @@ -1266,7 +1410,7 @@ "#sec-properties-of-the-temporal-plaindatetime-constructor": { "current": { "number": "5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainDateTime Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plaindatetime-constructor" } @@ -1274,7 +1418,7 @@ "#sec-properties-of-the-temporal-plaindatetime-prototype-object": { "current": { "number": "5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainDateTime Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plaindatetime-prototype-object" } @@ -1282,7 +1426,7 @@ "#sec-properties-of-the-temporal-plainmonthday-constructor": { "current": { "number": "10.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainMonthDay Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plainmonthday-constructor" } @@ -1290,7 +1434,7 @@ "#sec-properties-of-the-temporal-plainmonthday-prototype-object": { "current": { "number": "10.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainMonthDay Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plainmonthday-prototype-object" } @@ -1298,7 +1442,7 @@ "#sec-properties-of-the-temporal-plaintime-constructor": { "current": { "number": "4.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainTime Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plaintime-constructor" } @@ -1306,7 +1450,7 @@ "#sec-properties-of-the-temporal-plaintime-prototype-object": { "current": { "number": "4.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainTime Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plaintime-prototype-object" } @@ -1314,7 +1458,7 @@ "#sec-properties-of-the-temporal-plainyearmonth-constructor": { "current": { "number": "9.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainYearMonth Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plainyearmonth-constructor" } @@ -1322,23 +1466,23 @@ "#sec-properties-of-the-temporal-plainyearmonth-prototype-object": { "current": { "number": "9.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.PlainYearMonth Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-plainyearmonth-prototype-object" } }, "#sec-properties-of-the-temporal-timezone-constructor": { "current": { - "number": "11.3", - "spec": "Temporal proposal", + "number": "11.2", + "spec": "Temporal", "text": "Properties of the Temporal.TimeZone Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-timezone-constructor" } }, "#sec-properties-of-the-temporal-timezone-prototype-object": { "current": { - "number": "11.4", - "spec": "Temporal proposal", + "number": "11.3", + "spec": "Temporal", "text": "Properties of the Temporal.TimeZone Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-timezone-prototype-object" } @@ -1346,7 +1490,7 @@ "#sec-properties-of-the-temporal-zoneddatetime-constructor": { "current": { "number": "6.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.ZonedDateTime Constructor", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-zoneddatetime-constructor" } @@ -1354,223 +1498,231 @@ "#sec-properties-of-the-temporal-zoneddatetime-prototype-object": { "current": { "number": "6.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Properties of the Temporal.ZonedDateTime Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-properties-of-the-temporal-zoneddatetime-prototype-object" } }, - "#sec-sortstringlistbycodeunit": { + "#sec-snapshotownproperties": { "current": { - "number": "14.4", - "spec": "Temporal proposal", - "text": "SortStringListByCodeUnit ( strings )", - "url": "https://tc39.es/proposal-temporal/#sec-sortstringlistbycodeunit" + "number": "14.5", + "spec": "Temporal", + "text": "SnapshotOwnProperties ( source, proto [ , excludedKeys [ , excludedValues ] ] )", + "url": "https://tc39.es/proposal-temporal/#sec-snapshotownproperties" + } + }, + "#sec-systemtimezoneidentifier": { + "current": { + "number": "14.6.3", + "spec": "Temporal", + "text": "SystemTimeZoneIdentifier ( )", + "url": "https://tc39.es/proposal-temporal/#sec-systemtimezoneidentifier" } }, - "#sec-temporal-@@tostringtag": { + "#sec-temporal-%40%40tostringtag": { "current": { "number": "1.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal [ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-%40%40tostringtag" } }, "#sec-temporal-abstract-ops": { "current": { "number": "13", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-abstract-ops" } }, - "#sec-temporal-adddatetime": { + "#sec-temporal-add24hourdaystonormalizedtimeduration": { "current": { - "number": "5.5.8", - "spec": "Temporal proposal", - "text": "AddDateTime ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond, calendar, years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddatetime" + "number": "7.5.23", + "spec": "Temporal", + "text": "Add24HourDaysToNormalizedTimeDuration ( d, days )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-add24hourdaystonormalizedtimeduration" } }, - "#sec-temporal-addduration": { + "#sec-temporal-adddate": { "current": { - "number": "7.5.22", - "spec": "Temporal proposal", - "text": "AddDuration ( y1, mon1, w1, d1, h1, min1, s1, ms1, mus1, ns1, y2, mon2, w2, d2, h2, min2, s2, ms2, mus2, ns2, relativeTo )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-addduration" + "number": "3.5.14", + "spec": "Temporal", + "text": "AddDate ( calendarRec, plainDate, duration [ , options ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddate" } }, - "#sec-temporal-adddurationtoOrsubtractdurationfromzoneddatetime": { + "#sec-temporal-adddatetime": { "current": { - "number": "6.5.9", - "spec": "Temporal proposal", - "text": "AddDurationToOrSubtractDurationFromZonedDateTime ( operation, zonedDateTime, temporalDurationLike, options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoOrsubtractdurationfromzoneddatetime" + "number": "5.5.9", + "spec": "Temporal", + "text": "AddDateTime ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond, calendarRec, years, months, weeks, days, norm, options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddatetime" } }, - "#sec-temporal-adddurationtoorsubtractdurationfromduration": { + "#sec-temporal-adddaystozoneddatetime": { "current": { - "number": "7.5.29", - "spec": "Temporal proposal", - "text": "AddDurationToOrSubtractDurationFromDuration ( operation, duration, other, options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoorsubtractdurationfromduration" + "number": "6.5.6", + "spec": "Temporal", + "text": "AddDaysToZonedDateTime ( instant, dateTime, timeZoneRec, calendar, days [ , overflow ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddaystozoneddatetime" + } + }, + "#sec-temporal-adddurations": { + "current": { + "number": "7.5.46", + "spec": "Temporal", + "text": "AddDurations ( operation, duration, other )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurations" } }, "#sec-temporal-adddurationtoorsubtractdurationfrominstant": { "current": { - "number": "8.5.11", - "spec": "Temporal proposal", + "number": "8.5.10", + "spec": "Temporal", "text": "AddDurationToOrSubtractDurationFromInstant ( operation, instant, temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoorsubtractdurationfrominstant" } }, "#sec-temporal-adddurationtoorsubtractdurationfromplaindatetime": { "current": { - "number": "5.5.12", - "spec": "Temporal proposal", + "number": "5.5.14", + "spec": "Temporal", "text": "AddDurationToOrSubtractDurationFromPlainDateTime ( operation, dateTime, temporalDurationLike, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoorsubtractdurationfromplaindatetime" } }, "#sec-temporal-adddurationtoorsubtractdurationfromplaintime": { "current": { - "number": "4.5.14", - "spec": "Temporal proposal", + "number": "4.5.16", + "spec": "Temporal", "text": "AddDurationToOrSubtractDurationFromPlainTime ( operation, temporalTime, temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoorsubtractdurationfromplaintime" } }, "#sec-temporal-adddurationtoorsubtractdurationfromplainyearmonth": { "current": { - "number": "9.5.8", - "spec": "Temporal proposal", + "number": "9.5.9", + "spec": "Temporal", "text": "AddDurationToOrSubtractDurationFromPlainYearMonth ( operation, yearMonth, temporalDurationLike, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoorsubtractdurationfromplainyearmonth" } }, + "#sec-temporal-adddurationtoorsubtractdurationfromzoneddatetime": { + "current": { + "number": "6.5.10", + "spec": "Temporal", + "text": "AddDurationToOrSubtractDurationFromZonedDateTime ( operation, zonedDateTime, temporalDurationLike, options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoorsubtractdurationfromzoneddatetime" + } + }, "#sec-temporal-addinstant": { "current": { - "number": "8.5.6", - "spec": "Temporal proposal", - "text": "AddInstant ( epochNanoseconds, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", + "number": "8.5.5", + "spec": "Temporal", + "text": "AddInstant ( epochNanoseconds, norm )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-addinstant" } }, "#sec-temporal-addisodate": { "current": { - "number": "3.5.11", - "spec": "Temporal proposal", + "number": "3.5.13", + "spec": "Temporal", "text": "AddISODate ( year, month, day, years, months, weeks, days, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-addisodate" } }, - "#sec-temporal-addtime": { - "current": { - "number": "4.5.11", - "spec": "Temporal proposal", - "text": "AddTime ( hour, minute, second, millisecond, microsecond, nanosecond, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-addtime" - } - }, - "#sec-temporal-addzoneddatetime": { - "current": { - "number": "6.5.5", - "spec": "Temporal proposal", - "text": "AddZonedDateTime ( epochNanoseconds, timeZone, calendar, years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds [ , options ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-addzoneddatetime" - } - }, - "#sec-temporal-adjustroundeddurationdays": { - "current": { - "number": "7.5.27", - "spec": "Temporal proposal", - "text": "AdjustRoundedDurationDays ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, increment, unit, roundingMode, relativeTo )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-adjustroundeddurationdays" - } - }, - "#sec-temporal-applyunsignedroundingmode": { + "#sec-temporal-addnormalizedtimeduration": { "current": { - "number": "13.23", - "spec": "Temporal proposal", - "text": "ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-applyunsignedroundingmode" + "number": "7.5.22", + "spec": "Temporal", + "text": "AddNormalizedTimeDuration ( one, two )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-addnormalizedtimeduration" } }, - "#sec-temporal-availablecalendars": { + "#sec-temporal-addnormalizedtimedurationtoepochnanoseconds": { "current": { - "number": "12.1.2", - "spec": "Temporal proposal", - "text": "AvailableCalendars ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-availablecalendars" + "number": "7.5.24", + "spec": "Temporal", + "text": "AddNormalizedTimeDurationToEpochNanoseconds ( d, epochNs )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-addnormalizedtimedurationtoepochnanoseconds" } }, - "#sec-temporal-balanceduration": { + "#sec-temporal-addtime": { "current": { - "number": "7.5.18", - "spec": "Temporal proposal", - "text": "BalanceDuration ( days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, largestUnit [ , relativeTo ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-balanceduration" + "number": "4.5.13", + "spec": "Temporal", + "text": "AddTime ( hour, minute, second, millisecond, microsecond, nanosecond, norm )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-addtime" } }, - "#sec-temporal-balancedurationrelative": { + "#sec-temporal-addzoneddatetime": { "current": { - "number": "7.5.21", - "spec": "Temporal proposal", - "text": "BalanceDurationRelative ( years, months, weeks, days, largestUnit, relativeTo )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-balancedurationrelative" + "number": "6.5.5", + "spec": "Temporal", + "text": "AddZonedDateTime ( epochNanoseconds, timeZoneRec, calendarRec, years, months, weeks, days, norm [ , precalculatedPlainDateTime [ , options ] ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-addzoneddatetime" } }, "#sec-temporal-balanceisodate": { "current": { - "number": "3.5.8", - "spec": "Temporal proposal", + "number": "3.5.10", + "spec": "Temporal", "text": "BalanceISODate ( year, month, day )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-balanceisodate" } }, "#sec-temporal-balanceisodatetime": { "current": { - "number": "5.5.4", - "spec": "Temporal proposal", + "number": "5.5.5", + "spec": "Temporal", "text": "BalanceISODateTime ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-balanceisodatetime" } }, "#sec-temporal-balanceisoyearmonth": { "current": { - "number": "9.5.4", - "spec": "Temporal proposal", + "number": "9.5.5", + "spec": "Temporal", "text": "BalanceISOYearMonth ( year, month )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-balanceisoyearmonth" } }, - "#sec-temporal-balancepossiblyinfiniteduration": { - "current": { - "number": "7.5.19", - "spec": "Temporal proposal", - "text": "BalancePossiblyInfiniteDuration ( days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, largestUnit [ , relativeTo ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-balancepossiblyinfiniteduration" - } - }, "#sec-temporal-balancetime": { "current": { - "number": "4.5.5", - "spec": "Temporal proposal", + "number": "4.5.7", + "spec": "Temporal", "text": "BalanceTime ( hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-balancetime" } }, - "#sec-temporal-calculateoffsetshift": { + "#sec-temporal-balancetimeduration": { "current": { - "number": "7.5.16", - "spec": "Temporal proposal", - "text": "CalculateOffsetShift ( relativeTo, y, mon, w, d )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-calculateoffsetshift" + "number": "7.5.35", + "spec": "Temporal", + "text": "BalanceTimeDuration ( norm, largestUnit )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-balancetimeduration" + } + }, + "#sec-temporal-bubblerelativeduration": { + "current": { + "number": "7.5.43", + "spec": "Temporal", + "text": "BubbleRelativeDuration ( sign, duration, nudgedEpochNs, dateTime, calendarRec, timeZoneRec, largestUnit, smallestUnit )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-bubblerelativeduration" + } + }, + "#sec-temporal-calendar": { + "current": { + "number": "1.2.1", + "spec": "Temporal", + "text": "Temporal.Calendar ( . . . )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendar" } }, "#sec-temporal-calendar-abstract-ops": { "current": { "number": "12.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Abstract Operations for Temporal.Calendar Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendar-abstract-ops" } @@ -1578,407 +1730,463 @@ "#sec-temporal-calendar-constructor": { "current": { "number": "12.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.Calendar Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendar-constructor" } }, + "#sec-temporal-calendar-field-descriptor-record": { + "current": { + "number": "13.51.1", + "spec": "Temporal", + "text": "Calendar Field Descriptor Record", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendar-field-descriptor-record" + } + }, + "#sec-temporal-calendar-methods-records": { + "current": { + "number": "12.2.1", + "spec": "Temporal", + "text": "Calendar Methods Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendar-methods-records" + } + }, "#sec-temporal-calendar-objects": { "current": { "number": "12", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendar-objects" } }, "#sec-temporal-calendardateadd": { "current": { - "number": "12.2.6", - "spec": "Temporal proposal", - "text": "CalendarDateAdd ( calendar, date, duration [ , options [ , dateAdd ] ] )", + "number": "12.2.10", + "spec": "Temporal", + "text": "CalendarDateAdd ( calendarRec, date, duration [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateadd" } }, "#sec-temporal-calendardateaddition": { "current": { - "number": "15.7.1.5", - "spec": "Temporal proposal", + "number": "12.2.50", + "spec": "Temporal", "text": "CalendarDateAddition ( calendar, date, duration, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateaddition" } }, "#sec-temporal-calendardateday": { "current": { - "number": "15.7.1.12", - "spec": "Temporal proposal", + "number": "12.2.57", + "spec": "Temporal", "text": "CalendarDateDay ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateday" } }, "#sec-temporal-calendardatedayofweek": { "current": { - "number": "15.7.1.13", - "spec": "Temporal proposal", + "number": "12.2.58", + "spec": "Temporal", "text": "CalendarDateDayOfWeek ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatedayofweek" } }, "#sec-temporal-calendardatedayofyear": { "current": { - "number": "15.7.1.14", - "spec": "Temporal proposal", + "number": "12.2.59", + "spec": "Temporal", "text": "CalendarDateDayOfYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatedayofyear" } }, "#sec-temporal-calendardatedaysinmonth": { "current": { - "number": "15.7.1.17", - "spec": "Temporal proposal", + "number": "12.2.62", + "spec": "Temporal", "text": "CalendarDateDaysInMonth ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatedaysinmonth" } }, "#sec-temporal-calendardatedaysinweek": { "current": { - "number": "15.7.1.16", - "spec": "Temporal proposal", + "number": "12.2.61", + "spec": "Temporal", "text": "CalendarDateDaysInWeek ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatedaysinweek" } }, "#sec-temporal-calendardatedaysinyear": { "current": { - "number": "15.7.1.18", - "spec": "Temporal proposal", + "number": "12.2.63", + "spec": "Temporal", "text": "CalendarDateDaysInYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatedaysinyear" } }, "#sec-temporal-calendardatedifference": { "current": { - "number": "15.7.1.6", - "spec": "Temporal proposal", + "number": "12.2.51", + "spec": "Temporal", "text": "CalendarDateDifference ( calendar, one, two, largestUnit )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatedifference" } }, "#sec-temporal-calendardateera": { "current": { - "number": "15.7.1.7", - "spec": "Temporal proposal", + "number": "12.2.52", + "spec": "Temporal", "text": "CalendarDateEra ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateera" } }, "#sec-temporal-calendardateerayear": { "current": { - "number": "15.7.1.8", - "spec": "Temporal proposal", + "number": "12.2.53", + "spec": "Temporal", "text": "CalendarDateEraYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateerayear" } }, - "#sec-temporal-calendardatefields": { - "current": { - "number": "15.7.1.21", - "spec": "Temporal proposal", - "text": "CalendarDateFields ( calendar, fields )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatefields" - } - }, "#sec-temporal-calendardatefromfields": { "current": { - "number": "12.2.24", - "spec": "Temporal proposal", - "text": "CalendarDateFromFields ( calendar, fields [ , options ] )", + "number": "12.2.32", + "spec": "Temporal", + "text": "CalendarDateFromFields ( calendarRec, fields [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatefromfields" } }, "#sec-temporal-calendardateinleapyear": { "current": { - "number": "15.7.1.20", - "spec": "Temporal proposal", + "number": "12.2.65", + "spec": "Temporal", "text": "CalendarDateInLeapYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateinleapyear" } }, "#sec-temporal-calendardatemonth": { "current": { - "number": "15.7.1.10", - "spec": "Temporal proposal", + "number": "12.2.55", + "spec": "Temporal", "text": "CalendarDateMonth ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatemonth" } }, "#sec-temporal-calendardatemonthcode": { "current": { - "number": "15.7.1.11", - "spec": "Temporal proposal", + "number": "12.2.56", + "spec": "Temporal", "text": "CalendarDateMonthCode ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatemonthcode" } }, "#sec-temporal-calendardatemonthsinyear": { "current": { - "number": "15.7.1.19", - "spec": "Temporal proposal", + "number": "12.2.64", + "spec": "Temporal", "text": "CalendarDateMonthsInYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatemonthsinyear" } }, "#sec-temporal-calendardatetoiso": { "current": { - "number": "15.7.1.3", - "spec": "Temporal proposal", + "number": "12.2.48", + "spec": "Temporal", "text": "CalendarDateToISO ( calendar, fields, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardatetoiso" } }, "#sec-temporal-calendardateuntil": { "current": { - "number": "12.2.7", - "spec": "Temporal proposal", - "text": "CalendarDateUntil ( calendar, one, two, options [ , dateUntil ] )", + "number": "12.2.11", + "spec": "Temporal", + "text": "CalendarDateUntil ( calendarRec, one, two, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateuntil" } }, "#sec-temporal-calendardateweekofyear": { "current": { - "number": "15.7.1.15", - "spec": "Temporal proposal", + "number": "12.2.60", + "spec": "Temporal", "text": "CalendarDateWeekOfYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateweekofyear" } }, "#sec-temporal-calendardateyear": { "current": { - "number": "15.7.1.9", - "spec": "Temporal proposal", + "number": "12.2.54", + "spec": "Temporal", "text": "CalendarDateYear ( calendar, date )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardateyear" } }, "#sec-temporal-calendarday": { "current": { - "number": "12.2.11", - "spec": "Temporal proposal", - "text": "CalendarDay ( calendar, dateLike )", + "number": "12.2.17", + "spec": "Temporal", + "text": "CalendarDay ( calendarRec, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarday" } }, "#sec-temporal-calendardayofweek": { "current": { - "number": "12.2.12", - "spec": "Temporal proposal", + "number": "12.2.18", + "spec": "Temporal", "text": "CalendarDayOfWeek ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardayofweek" } }, "#sec-temporal-calendardayofyear": { "current": { - "number": "12.2.13", - "spec": "Temporal proposal", + "number": "12.2.19", + "spec": "Temporal", "text": "CalendarDayOfYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardayofyear" } }, "#sec-temporal-calendardaysinmonth": { "current": { - "number": "12.2.17", - "spec": "Temporal proposal", + "number": "12.2.23", + "spec": "Temporal", "text": "CalendarDaysInMonth ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardaysinmonth" } }, "#sec-temporal-calendardaysinweek": { "current": { - "number": "12.2.16", - "spec": "Temporal proposal", + "number": "12.2.22", + "spec": "Temporal", "text": "CalendarDaysInWeek ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardaysinweek" } }, "#sec-temporal-calendardaysinyear": { "current": { - "number": "12.2.18", - "spec": "Temporal proposal", + "number": "12.2.24", + "spec": "Temporal", "text": "CalendarDaysInYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendardaysinyear" } }, "#sec-temporal-calendarequals": { "current": { - "number": "12.2.29", - "spec": "Temporal proposal", + "number": "12.2.37", + "spec": "Temporal", "text": "CalendarEquals ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarequals" } }, "#sec-temporal-calendarera": { "current": { - "number": "15.7.1.1", - "spec": "Temporal proposal", + "number": "12.2.12", + "spec": "Temporal", "text": "CalendarEra ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarera" } }, "#sec-temporal-calendarerayear": { "current": { - "number": "15.7.1.2", - "spec": "Temporal proposal", + "number": "12.2.13", + "spec": "Temporal", "text": "CalendarEraYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarerayear" } }, - "#sec-temporal-calendarfieldkeystoignore": { + "#sec-temporal-calendarfielddescriptors": { "current": { - "number": "15.7.1.22", - "spec": "Temporal proposal", - "text": "CalendarFieldKeysToIgnore ( calendar, keys )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarfieldkeystoignore" + "number": "12.2.66", + "spec": "Temporal", + "text": "CalendarFieldDescriptors ( calendar, type )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarfielddescriptors" } }, - "#sec-temporal-calendarfields": { + "#sec-temporal-calendarfieldkeystoignore": { "current": { - "number": "12.2.4", - "spec": "Temporal proposal", - "text": "CalendarFields ( calendar, fieldNames )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarfields" + "number": "12.2.67", + "spec": "Temporal", + "text": "CalendarFieldKeysToIgnore ( calendar, keys )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarfieldkeystoignore" } }, "#sec-temporal-calendarinleapyear": { "current": { - "number": "12.2.20", - "spec": "Temporal proposal", + "number": "12.2.26", + "spec": "Temporal", "text": "CalendarInLeapYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarinleapyear" } }, "#sec-temporal-calendarmergefields": { "current": { - "number": "12.2.5", - "spec": "Temporal proposal", - "text": "CalendarMergeFields ( calendar, fields, additionalFields )", + "number": "12.2.9", + "spec": "Temporal", + "text": "CalendarMergeFields ( calendarRec, fields, additionalFields )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmergefields" } }, + "#sec-temporal-calendarmethodsrecordcall": { + "current": { + "number": "12.2.7", + "spec": "Temporal", + "text": "CalendarMethodsRecordCall ( calendarRec, methodName, arguments )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmethodsrecordcall" + } + }, + "#sec-temporal-calendarmethodsrecordhaslookedup": { + "current": { + "number": "12.2.5", + "spec": "Temporal", + "text": "CalendarMethodsRecordHasLookedUp ( calendarRec, methodName )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmethodsrecordhaslookedup" + } + }, + "#sec-temporal-calendarmethodsrecordisbuiltin": { + "current": { + "number": "12.2.6", + "spec": "Temporal", + "text": "CalendarMethodsRecordIsBuiltin ( calendarRec )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmethodsrecordisbuiltin" + } + }, + "#sec-temporal-calendarmethodsrecordlookup": { + "current": { + "number": "12.2.4", + "spec": "Temporal", + "text": "CalendarMethodsRecordLookup ( calendarRec, methodName )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmethodsrecordlookup" + } + }, "#sec-temporal-calendarmonth": { "current": { - "number": "12.2.9", - "spec": "Temporal proposal", + "number": "12.2.15", + "spec": "Temporal", "text": "CalendarMonth ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmonth" } }, "#sec-temporal-calendarmonthcode": { "current": { - "number": "12.2.10", - "spec": "Temporal proposal", + "number": "12.2.16", + "spec": "Temporal", "text": "CalendarMonthCode ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthcode" } }, "#sec-temporal-calendarmonthdayfromfields": { "current": { - "number": "12.2.26", - "spec": "Temporal proposal", - "text": "CalendarMonthDayFromFields ( calendar, fields [ , options ] )", + "number": "12.2.34", + "spec": "Temporal", + "text": "CalendarMonthDayFromFields ( calendarRec, fields [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthdayfromfields" } }, "#sec-temporal-calendarmonthdaytoisoreferencedate": { "current": { - "number": "15.7.1.4", - "spec": "Temporal proposal", + "number": "12.2.49", + "spec": "Temporal", "text": "CalendarMonthDayToISOReferenceDate ( calendar, fields, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthdaytoisoreferencedate" } }, "#sec-temporal-calendarmonthsinyear": { "current": { - "number": "12.2.19", - "spec": "Temporal proposal", + "number": "12.2.25", + "spec": "Temporal", "text": "CalendarMonthsInYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthsinyear" } }, + "#sec-temporal-calendarresolvefields": { + "current": { + "number": "12.2.68", + "spec": "Temporal", + "text": "CalendarResolveFields ( calendar, fields, type )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarresolvefields" + } + }, "#sec-temporal-calendarweekofyear": { "current": { - "number": "12.2.14", - "spec": "Temporal proposal", + "number": "12.2.20", + "spec": "Temporal", "text": "CalendarWeekOfYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendarweekofyear" } }, "#sec-temporal-calendaryear": { "current": { - "number": "12.2.8", - "spec": "Temporal proposal", + "number": "12.2.14", + "spec": "Temporal", "text": "CalendarYear ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendaryear" } }, "#sec-temporal-calendaryearmonthfromfields": { "current": { - "number": "12.2.25", - "spec": "Temporal proposal", - "text": "CalendarYearMonthFromFields ( calendar, fields [ , options ] )", + "number": "12.2.33", + "spec": "Temporal", + "text": "CalendarYearMonthFromFields ( calendarRec, fields [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendaryearmonthfromfields" } }, "#sec-temporal-calendaryearofweek": { "current": { - "number": "12.2.15", - "spec": "Temporal proposal", + "number": "12.2.21", + "spec": "Temporal", "text": "CalendarYearOfWeek ( calendar, dateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-calendaryearofweek" } }, + "#sec-temporal-combinedateandnormalizedtimeduration": { + "current": { + "number": "7.5.11", + "spec": "Temporal", + "text": "CombineDateAndNormalizedTimeDuration ( dateDurationRecord, norm )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-combinedateandnormalizedtimeduration" + } + }, "#sec-temporal-compareepochnanoseconds": { "current": { - "number": "8.5.5", - "spec": "Temporal proposal", + "number": "8.5.4", + "spec": "Temporal", "text": "CompareEpochNanoseconds ( epochNanosecondsOne, epochNanosecondsTwo )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-compareepochnanoseconds" } }, "#sec-temporal-compareisodate": { "current": { - "number": "3.5.12", - "spec": "Temporal proposal", + "number": "3.5.15", + "spec": "Temporal", "text": "CompareISODate ( y1, m1, d1, y2, m2, d2 )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-compareisodate" } }, "#sec-temporal-compareisodatetime": { "current": { - "number": "5.5.7", - "spec": "Temporal proposal", + "number": "5.5.8", + "spec": "Temporal", "text": "CompareISODateTime ( y1, mon1, d1, h1, min1, s1, ms1, mus1, ns1, y2, mon2, d2, h2, min2, s2, ms2, mus2, ns2 )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-compareisodatetime" } }, - "#sec-temporal-comparetemporaltime": { + "#sec-temporal-comparenormalizedtimeduration": { "current": { - "number": "4.5.10", - "spec": "Temporal proposal", - "text": "CompareTemporalTime ( h1, min1, s1, ms1, mus1, ns1, h2, min2, s2, ms2, mus2, ns2 )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-comparetemporaltime" + "number": "7.5.25", + "spec": "Temporal", + "text": "CompareNormalizedTimeDuration ( one, two )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-comparenormalizedtimeduration" } }, - "#sec-temporal-consolidatecalendars": { + "#sec-temporal-comparetemporaltime": { "current": { - "number": "12.2.30", - "spec": "Temporal proposal", - "text": "ConsolidateCalendars ( one, two )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-consolidatecalendars" + "number": "4.5.12", + "spec": "Temporal", + "text": "CompareTemporalTime ( h1, min1, s1, ms1, mus1, ns1, h2, min2, s2, ms2, mus2, ns2 )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-comparetemporaltime" } }, "#sec-temporal-constraintime": { "current": { - "number": "4.5.6", - "spec": "Temporal proposal", + "number": "4.5.8", + "spec": "Temporal", "text": "ConstrainTime ( hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-constraintime" } @@ -1986,39 +2194,63 @@ "#sec-temporal-create-iso-date-record": { "current": { "number": "3.5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "CreateISODateRecord ( year, month, day )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-create-iso-date-record" } }, + "#sec-temporal-createcalendarmethodsrecord": { + "current": { + "number": "12.2.2", + "spec": "Temporal", + "text": "CreateCalendarMethodsRecord ( calendar, methods )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-createcalendarmethodsrecord" + } + }, + "#sec-temporal-createcalendarmethodsrecordfromrelativeto": { + "current": { + "number": "12.2.3", + "spec": "Temporal", + "text": "CreateCalendarMethodsRecordFromRelativeTo ( plainRelativeTo, zonedRelativeTo, methods )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-createcalendarmethodsrecordfromrelativeto" + } + }, "#sec-temporal-createdatedurationrecord": { "current": { - "number": "7.5.6", - "spec": "Temporal proposal", + "number": "7.5.8", + "spec": "Temporal", "text": "CreateDateDurationRecord ( years, months, weeks, days )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createdatedurationrecord" } }, "#sec-temporal-createdurationrecord": { "current": { - "number": "7.5.5", - "spec": "Temporal proposal", + "number": "7.5.7", + "spec": "Temporal", "text": "CreateDurationRecord ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createdurationrecord" } }, "#sec-temporal-createnegatedtemporalduration": { "current": { - "number": "7.5.15", - "spec": "Temporal proposal", + "number": "7.5.19", + "spec": "Temporal", "text": "CreateNegatedTemporalDuration ( duration )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createnegatedtemporalduration" } }, + "#sec-temporal-createnormalizeddurationrecord": { + "current": { + "number": "7.5.10", + "spec": "Temporal", + "text": "CreateNormalizedDurationRecord ( years, months, weeks, days, norm )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-createnormalizeddurationrecord" + } + }, "#sec-temporal-createtemporalcalendar": { "current": { - "number": "12.2.1", - "spec": "Temporal proposal", + "number": "12.2.8", + "spec": "Temporal", "text": "CreateTemporalCalendar ( identifier [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporalcalendar" } @@ -2026,23 +2258,23 @@ "#sec-temporal-createtemporaldate": { "current": { "number": "3.5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "CreateTemporalDate ( isoYear, isoMonth, isoDay, calendar [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporaldate" } }, "#sec-temporal-createtemporaldatetime": { "current": { - "number": "5.5.5", - "spec": "Temporal proposal", + "number": "5.5.6", + "spec": "Temporal", "text": "CreateTemporalDateTime ( isoYear, isoMonth, isoDay, hour, minute, second, millisecond, microsecond, nanosecond, calendar [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporaldatetime" } }, "#sec-temporal-createtemporalduration": { "current": { - "number": "7.5.14", - "spec": "Temporal proposal", + "number": "7.5.18", + "spec": "Temporal", "text": "CreateTemporalDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporalduration" } @@ -2050,7 +2282,7 @@ "#sec-temporal-createtemporalinstant": { "current": { "number": "8.5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "CreateTemporalInstant ( epochNanoseconds [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporalinstant" } @@ -2058,31 +2290,31 @@ "#sec-temporal-createtemporalmonthday": { "current": { "number": "10.5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "CreateTemporalMonthDay ( isoMonth, isoDay, calendar, referenceISOYear [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporalmonthday" } }, "#sec-temporal-createtemporaltime": { "current": { - "number": "4.5.7", - "spec": "Temporal proposal", + "number": "4.5.9", + "spec": "Temporal", "text": "CreateTemporalTime ( hour, minute, second, millisecond, microsecond, nanosecond [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporaltime" } }, "#sec-temporal-createtemporaltimezone": { "current": { - "number": "11.6.1", - "spec": "Temporal proposal", + "number": "11.5.7", + "spec": "Temporal", "text": "CreateTemporalTimeZone ( identifier [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporaltimezone" } }, "#sec-temporal-createtemporalyearmonth": { "current": { - "number": "9.5.5", - "spec": "Temporal proposal", + "number": "9.5.6", + "spec": "Temporal", "text": "CreateTemporalYearMonth ( isoYear, isoMonth, calendar, referenceISODay [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporalyearmonth" } @@ -2090,143 +2322,207 @@ "#sec-temporal-createtemporalzoneddatetime": { "current": { "number": "6.5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "CreateTemporalZonedDateTime ( epochNanoseconds, timeZone, calendar [ , newTarget ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtemporalzoneddatetime" } }, "#sec-temporal-createtimedurationrecord": { "current": { - "number": "7.5.7", - "spec": "Temporal proposal", + "number": "7.5.9", + "spec": "Temporal", "text": "CreateTimeDurationRecord ( days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtimedurationrecord" } }, + "#sec-temporal-createtimezonemethodsrecord": { + "current": { + "number": "11.5.2", + "spec": "Temporal", + "text": "CreateTimeZoneMethodsRecord ( timeZone, methods )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-createtimezonemethodsrecord" + } + }, + "#sec-temporal-date": { + "current": { + "number": "14.7.1", + "spec": "Temporal", + "text": "Date ( ...values )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-date" + } + }, + "#sec-temporal-date-constructor": { + "current": { + "number": "14.7", + "spec": "Temporal", + "text": "The Date Constructor", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-date-constructor" + } + }, "#sec-temporal-date-duration-records": { "current": { "number": "7.5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Date Duration Records", "url": "https://tc39.es/proposal-temporal/#sec-temporal-date-duration-records" } }, + "#sec-temporal-date.now": { + "current": { + "number": "14.8.1", + "spec": "Temporal", + "text": "Date.now ( )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-date.now" + } + }, "#sec-temporal-daysuntil": { "current": { - "number": "7.5.23", - "spec": "Temporal proposal", + "number": "7.5.37", + "spec": "Temporal", "text": "DaysUntil ( earlier, later )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-daysuntil" } }, "#sec-temporal-defaulttemporallargestunit": { "current": { - "number": "7.5.12", - "spec": "Temporal proposal", + "number": "7.5.16", + "spec": "Temporal", "text": "DefaultTemporalLargestUnit ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-defaulttemporallargestunit" } }, + "#sec-temporal-differencedate": { + "current": { + "number": "3.5.7", + "spec": "Temporal", + "text": "DifferenceDate ( calendarRec, one, two, options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencedate" + } + }, "#sec-temporal-differenceinstant": { "current": { - "number": "8.5.7", - "spec": "Temporal proposal", - "text": "DifferenceInstant ( ns1, ns2, roundingIncrement, smallestUnit, largestUnit, roundingMode )", + "number": "8.5.6", + "spec": "Temporal", + "text": "DifferenceInstant ( ns1, ns2, roundingIncrement, smallestUnit, roundingMode )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differenceinstant" } }, "#sec-temporal-differenceisodate": { "current": { - "number": "3.5.5", - "spec": "Temporal proposal", + "number": "3.5.6", + "spec": "Temporal", "text": "DifferenceISODate ( y1, m1, d1, y2, m2, d2, largestUnit )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differenceisodate" } }, "#sec-temporal-differenceisodatetime": { "current": { - "number": "5.5.10", - "spec": "Temporal proposal", - "text": "DifferenceISODateTime ( y1, mon1, d1, h1, min1, s1, ms1, mus1, ns1, y2, mon2, d2, h2, min2, s2, ms2, mus2, ns2, calendar, largestUnit, options )", + "number": "5.5.11", + "spec": "Temporal", + "text": "DifferenceISODateTime ( y1, mon1, d1, h1, min1, s1, ms1, mus1, ns1, y2, mon2, d2, h2, min2, s2, ms2, mus2, ns2, calendarRec, largestUnit, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differenceisodatetime" } }, + "#sec-temporal-differenceplaindatetimewithrounding": { + "current": { + "number": "5.5.12", + "spec": "Temporal", + "text": "DifferencePlainDateTimeWithRounding ( y1, mon1, d1, h1, min1, s1, ms1, mus1, ns1, y2, mon2, d2, h2, min2, s2, ms2, mus2, ns2, calendarRec, largestUnit, roundingIncrement, smallestUnit, roundingMode, resolvedOptions )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-differenceplaindatetimewithrounding" + } + }, "#sec-temporal-differencetemporalinstant": { "current": { - "number": "8.5.10", - "spec": "Temporal proposal", + "number": "8.5.9", + "spec": "Temporal", "text": "DifferenceTemporalInstant ( operation, instant, other, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalinstant" } }, "#sec-temporal-differencetemporalplaindate": { "current": { - "number": "3.5.13", - "spec": "Temporal proposal", + "number": "3.5.16", + "spec": "Temporal", "text": "DifferenceTemporalPlainDate ( operation, temporalDate, other, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalplaindate" } }, "#sec-temporal-differencetemporalplaindatetime": { "current": { - "number": "5.5.11", - "spec": "Temporal proposal", + "number": "5.5.13", + "spec": "Temporal", "text": "DifferenceTemporalPlainDateTime ( operation, dateTime, other, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalplaindatetime" } }, "#sec-temporal-differencetemporalplaintime": { "current": { - "number": "4.5.13", - "spec": "Temporal proposal", + "number": "4.5.15", + "spec": "Temporal", "text": "DifferenceTemporalPlainTime ( operation, temporalTime, other, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalplaintime" } }, "#sec-temporal-differencetemporalplainyearmonth": { "current": { - "number": "9.5.7", - "spec": "Temporal proposal", + "number": "9.5.8", + "spec": "Temporal", "text": "DifferenceTemporalPlainYearMonth ( operation, yearMonth, other, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalplainyearmonth" } }, "#sec-temporal-differencetemporalzoneddatetime": { "current": { - "number": "6.5.8", - "spec": "Temporal proposal", + "number": "6.5.9", + "spec": "Temporal", "text": "DifferenceTemporalZonedDateTime ( operation, zonedDateTime, other, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalzoneddatetime" } }, "#sec-temporal-differencetime": { "current": { - "number": "4.5.1", - "spec": "Temporal proposal", + "number": "4.5.2", + "spec": "Temporal", "text": "DifferenceTime ( h1, min1, s1, ms1, mus1, ns1, h2, min2, s2, ms2, mus2, ns2 )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencetime" } }, "#sec-temporal-differencezoneddatetime": { "current": { - "number": "6.5.6", - "spec": "Temporal proposal", - "text": "DifferenceZonedDateTime ( ns1, ns2, timeZone, calendar, largestUnit, options )", + "number": "6.5.7", + "spec": "Temporal", + "text": "DifferenceZonedDateTime ( ns1, ns2, timeZoneRec, calendarRec, largestUnit, options, startDateTime )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencezoneddatetime" } }, + "#sec-temporal-differencezoneddatetimewithrounding": { + "current": { + "number": "6.5.8", + "spec": "Temporal", + "text": "DifferenceZonedDateTimeWithRounding ( ns1, ns2, calendarRec, timeZoneRec, precalculatedPlainDateTime, resolvedOptions, largestUnit, roundingIncrement, smallestUnit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-differencezoneddatetimewithrounding" + } + }, "#sec-temporal-disambiguatepossibleinstants": { "current": { - "number": "11.6.12", - "spec": "Temporal proposal", - "text": "DisambiguatePossibleInstants ( possibleInstants, timeZone, dateTime, disambiguation )", + "number": "11.5.23", + "spec": "Temporal", + "text": "DisambiguatePossibleInstants ( possibleInstants, timeZoneRec, dateTime, disambiguation )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-disambiguatepossibleinstants" } }, + "#sec-temporal-dividenormalizedtimeduration": { + "current": { + "number": "7.5.26", + "spec": "Temporal", + "text": "DivideNormalizedTimeDuration ( d, divisor )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-dividenormalizedtimeduration" + } + }, "#sec-temporal-duration": { "current": { - "number": "1.2.8", - "spec": "Temporal proposal", + "number": "1.2.9", + "spec": "Temporal", "text": "Temporal.Duration ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-duration" } @@ -2234,7 +2530,7 @@ "#sec-temporal-duration-abstract-ops": { "current": { "number": "7.5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-duration-abstract-ops" } @@ -2242,15 +2538,23 @@ "#sec-temporal-duration-constructor": { "current": { "number": "7.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.Duration Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-duration-constructor" } }, + "#sec-temporal-duration-nudge-result-records": { + "current": { + "number": "7.5.39", + "spec": "Temporal", + "text": "Duration Nudge Result Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-duration-nudge-result-records" + } + }, "#sec-temporal-duration-objects": { "current": { "number": "7", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-duration-objects" } @@ -2258,263 +2562,319 @@ "#sec-temporal-duration-records": { "current": { "number": "7.5.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Duration Records", "url": "https://tc39.es/proposal-temporal/#sec-temporal-duration-records" } }, "#sec-temporal-durationsign": { "current": { - "number": "7.5.10", - "spec": "Temporal proposal", + "number": "7.5.14", + "spec": "Temporal", "text": "DurationSign ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-durationsign" } }, "#sec-temporal-formatcalendarannotation": { "current": { - "number": "12.2.28", - "spec": "Temporal proposal", + "number": "12.2.36", + "spec": "Temporal", "text": "FormatCalendarAnnotation ( id, showCalendar )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatcalendarannotation" } }, - "#sec-temporal-formatdatetimetoparts": { - "current": { - "number": "15.4.6", - "spec": "Temporal proposal", - "text": "FormatDateTimeToParts ( dateTimeFormat, x )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatdatetimetoparts" - } - }, - "#sec-temporal-formatisotimezoneoffsetstring": { + "#sec-temporal-formatdatetimeutcoffsetrounded": { "current": { - "number": "11.6.6", - "spec": "Temporal proposal", - "text": "FormatISOTimeZoneOffsetString ( offsetNanoseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatisotimezoneoffsetstring" + "number": "11.5.14", + "spec": "Temporal", + "text": "FormatDateTimeUTCOffsetRounded ( offsetNanoseconds )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatdatetimeutcoffsetrounded" } }, - "#sec-temporal-formatsecondsstringpart": { + "#sec-temporal-formatfractionalseconds": { "current": { - "number": "13.21", - "spec": "Temporal proposal", - "text": "FormatSecondsStringPart ( second, millisecond, microsecond, nanosecond, precision )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatsecondsstringpart" + "number": "13.27", + "spec": "Temporal", + "text": "FormatFractionalSeconds ( subSecondNanoseconds, precision )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatfractionalseconds" } }, - "#sec-temporal-formattimezoneoffsetstring": { + "#sec-temporal-formatoffsettimezoneidentifier": { "current": { - "number": "11.6.5", - "spec": "Temporal proposal", - "text": "FormatTimeZoneOffsetString ( offsetNanoseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-formattimezoneoffsetstring" + "number": "11.5.12", + "spec": "Temporal", + "text": "FormatOffsetTimeZoneIdentifier ( offsetMinutes [ , style ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatoffsettimezoneidentifier" } }, - "#sec-temporal-getbuiltincalendar": { + "#sec-temporal-formattimestring": { "current": { - "number": "12.2.2", - "spec": "Temporal proposal", - "text": "GetBuiltinCalendar ( id )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getbuiltincalendar" + "number": "13.28", + "spec": "Temporal", + "text": "FormatTimeString ( hour, minute, second, subSecondNanoseconds, precision [ , style ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-formattimestring" } }, - "#sec-temporal-getdatetimeformatpattern": { + "#sec-temporal-formatutcoffsetnanoseconds": { "current": { - "number": "15.4.12", - "spec": "Temporal proposal", - "text": "GetDateTimeFormatPattern ( dateStyle, timeStyle, matcher, formatOptions, dataLocaleData, hc, resolvedCalendar, hasExplicitFormatComponents )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getdatetimeformatpattern" + "number": "11.5.13", + "spec": "Temporal", + "text": "FormatUTCOffsetNanoseconds ( offsetNanoseconds )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-formatutcoffsetnanoseconds" } }, "#sec-temporal-getdifferencesettings": { "current": { - "number": "13.43", - "spec": "Temporal proposal", + "number": "13.54", + "spec": "Temporal", "text": "GetDifferenceSettings ( operation, options, unitGroup, disallowedUnits, fallbackSmallestUnit, smallestLargestDefaultUnit )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-getdifferencesettings" } }, - "#sec-temporal-getianatimezonenexttransition": { + "#sec-temporal-getdirectionoption": { "current": { - "number": "11.6.3", - "spec": "Temporal proposal", - "text": "GetNamedTimeZoneNextTransition ( timeZoneIdentifier, epochNanoseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getianatimezonenexttransition" + "number": "13.16", + "spec": "Temporal", + "text": "GetDirectionOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getdirectionoption" } }, - "#sec-temporal-getianatimezoneprevioustransition": { + "#sec-temporal-getinstantfor": { "current": { - "number": "11.6.4", - "spec": "Temporal proposal", - "text": "GetNamedTimeZonePreviousTransition ( timeZoneIdentifier, epochNanoseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getianatimezoneprevioustransition" + "number": "11.5.22", + "spec": "Temporal", + "text": "GetInstantFor ( timeZoneRec, dateTime, disambiguation )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getinstantfor" } }, - "#sec-temporal-getinstantfor": { + "#sec-temporal-getisopartsfromepoch": { "current": { - "number": "11.6.11", - "spec": "Temporal proposal", - "text": "GetInstantFor ( timeZone, dateTime, disambiguation )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getinstantfor" + "number": "11.5.9", + "spec": "Temporal", + "text": "GetISOPartsFromEpoch ( epochNanoseconds )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getisopartsfromepoch" } }, - "#sec-temporal-getiso8601calendar": { + "#sec-temporal-getnamedtimezonenexttransition": { "current": { - "number": "12.2.3", - "spec": "Temporal proposal", - "text": "GetISO8601Calendar ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getiso8601calendar" + "number": "11.5.10", + "spec": "Temporal", + "text": "GetNamedTimeZoneNextTransition ( timeZoneIdentifier, epochNanoseconds )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getnamedtimezonenexttransition" } }, - "#sec-temporal-getisopartsfromepoch": { + "#sec-temporal-getnamedtimezoneprevioustransition": { "current": { - "number": "11.6.2", - "spec": "Temporal proposal", - "text": "GetISOPartsFromEpoch ( epochNanoseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getisopartsfromepoch" + "number": "11.5.11", + "spec": "Temporal", + "text": "GetNamedTimeZonePreviousTransition ( timeZoneIdentifier, epochNanoseconds )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getnamedtimezoneprevioustransition" } }, "#sec-temporal-getoffsetnanosecondsfor": { "current": { - "number": "11.6.8", - "spec": "Temporal proposal", - "text": "GetOffsetNanosecondsFor ( timeZone, instant )", + "number": "11.5.19", + "spec": "Temporal", + "text": "GetOffsetNanosecondsFor ( timeZoneRec, instant )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-getoffsetnanosecondsfor" } }, "#sec-temporal-getoffsetstringfor": { "current": { - "number": "11.6.9", - "spec": "Temporal proposal", - "text": "GetOffsetStringFor ( timeZone, instant )", + "number": "11.5.20", + "spec": "Temporal", + "text": "GetOffsetStringFor ( timeZoneRec, instant )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-getoffsetstringfor" } }, "#sec-temporal-getplaindatetimefor": { "current": { - "number": "11.6.10", - "spec": "Temporal proposal", - "text": "GetPlainDateTimeFor ( timeZone, instant, calendar )", + "number": "11.5.21", + "spec": "Temporal", + "text": "GetPlainDateTimeFor ( timeZoneRec, instant, calendar [ , precalculatedOffsetNanoseconds ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-getplaindatetimefor" } }, "#sec-temporal-getpossibleinstantsfor": { "current": { - "number": "11.6.13", - "spec": "Temporal proposal", - "text": "GetPossibleInstantsFor ( timeZone, dateTime )", + "number": "11.5.24", + "spec": "Temporal", + "text": "GetPossibleInstantsFor ( timeZoneRec, dateTime )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-getpossibleinstantsfor" } }, - "#sec-temporal-gettemporalcalendarwithisodefault": { + "#sec-temporal-getroundingincrementoption": { "current": { - "number": "12.2.23", - "spec": "Temporal proposal", - "text": "GetTemporalCalendarWithISODefault ( item )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalcalendarwithisodefault" + "number": "13.17", + "spec": "Temporal", + "text": "GetRoundingIncrementOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getroundingincrementoption" } }, - "#sec-temporal-gettemporalunit": { + "#sec-temporal-getroundingmodeoption": { "current": { - "number": "13.16", - "spec": "Temporal proposal", - "text": "GetTemporalUnit ( normalizedOptions, key, unitGroup, default [ , extraValues ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalunit" + "number": "13.10", + "spec": "Temporal", + "text": "GetRoundingModeOption ( options, fallback )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getroundingmodeoption" + } + }, + "#sec-temporal-gettemporalcalendarslotvaluewithisodefault": { + "current": { + "number": "12.2.29", + "spec": "Temporal", + "text": "GetTemporalCalendarSlotValueWithISODefault ( item )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalcalendarslotvaluewithisodefault" + } + }, + "#sec-temporal-gettemporaldisambiguationoption": { + "current": { + "number": "13.9", + "spec": "Temporal", + "text": "GetTemporalDisambiguationOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporaldisambiguationoption" } }, - "#sec-temporal-getunsignedroundingmode": { + "#sec-temporal-gettemporalfractionalseconddigitsoption": { + "current": { + "number": "13.19", + "spec": "Temporal", + "text": "GetTemporalFractionalSecondDigitsOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalfractionalseconddigitsoption" + } + }, + "#sec-temporal-gettemporaloffsetoption": { + "current": { + "number": "13.12", + "spec": "Temporal", + "text": "GetTemporalOffsetOption ( options, fallback )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporaloffsetoption" + } + }, + "#sec-temporal-gettemporaloverflowoption": { + "current": { + "number": "13.8", + "spec": "Temporal", + "text": "GetTemporalOverflowOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporaloverflowoption" + } + }, + "#sec-temporal-gettemporalrelativetooption": { "current": { "number": "13.22", - "spec": "Temporal proposal", - "text": "GetUnsignedRoundingMode ( roundingMode, isNegative )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-getunsignedroundingmode" + "spec": "Temporal", + "text": "GetTemporalRelativeToOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalrelativetooption" } }, - "#sec-temporal-handledatetimeothers": { + "#sec-temporal-gettemporalshowcalendarnameoption": { "current": { - "number": "15.4.20", - "spec": "Temporal proposal", - "text": "HandleDateTimeOthers ( dateTimeFormat, x )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimeothers" + "number": "13.13", + "spec": "Temporal", + "text": "GetTemporalShowCalendarNameOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalshowcalendarnameoption" } }, - "#sec-temporal-handledatetimevalue": { + "#sec-temporal-gettemporalshowoffsetoption": { "current": { - "number": "15.4.21", - "spec": "Temporal proposal", - "text": "HandleDateTimeValue ( dateTimeFormat, x )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevalue" + "number": "13.15", + "spec": "Temporal", + "text": "GetTemporalShowOffsetOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalshowoffsetoption" } }, - "#sec-temporal-handledatetimevaluetemporaldate": { + "#sec-temporal-gettemporalshowtimezonenameoption": { "current": { - "number": "15.4.13", - "spec": "Temporal proposal", + "number": "13.14", + "spec": "Temporal", + "text": "GetTemporalShowTimeZoneNameOption ( options )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalshowtimezonenameoption" + } + }, + "#sec-temporal-gettemporalunitvaluedoption": { + "current": { + "number": "13.21", + "spec": "Temporal", + "text": "GetTemporalUnitValuedOption ( options, key, unitGroup, default [ , extraValues ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-gettemporalunitvaluedoption" + } + }, + "#sec-temporal-getutcepochnanoseconds": { + "current": { + "number": "14.6.1", + "spec": "Temporal", + "text": "GetUTCEpochNanoseconds ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond [ , offsetNanoseconds ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-getutcepochnanoseconds" + } + }, + "#sec-temporal-handledatetimeothers": { + "current": { + "number": "15.9.20", + "spec": "Temporal", + "text": "HandleDateTimeOthers ( dateTimeFormat, x )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimeothers" + } + }, + "#sec-temporal-handledatetimetemporaldate": { + "current": { + "number": "15.9.14", + "spec": "Temporal", "text": "HandleDateTimeTemporalDate ( dateTimeFormat, temporalDate )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporaldate" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimetemporaldate" } }, - "#sec-temporal-handledatetimevaluetemporaldatetime": { + "#sec-temporal-handledatetimetemporaldatetime": { "current": { - "number": "15.4.17", - "spec": "Temporal proposal", + "number": "15.9.18", + "spec": "Temporal", "text": "HandleDateTimeTemporalDateTime ( dateTimeFormat, dateTime )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporaldatetime" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimetemporaldatetime" } }, - "#sec-temporal-handledatetimevaluetemporalinstant": { + "#sec-temporal-handledatetimetemporalinstant": { "current": { - "number": "15.4.18", - "spec": "Temporal proposal", + "number": "15.9.19", + "spec": "Temporal", "text": "HandleDateTimeTemporalInstant ( dateTimeFormat, instant )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporalinstant" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimetemporalinstant" } }, - "#sec-temporal-handledatetimevaluetemporalmonthday": { + "#sec-temporal-handledatetimetemporalmonthday": { "current": { - "number": "15.4.15", - "spec": "Temporal proposal", + "number": "15.9.16", + "spec": "Temporal", "text": "HandleDateTimeTemporalMonthDay ( dateTimeFormat, temporalMonthDay )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporalmonthday" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimetemporalmonthday" } }, - "#sec-temporal-handledatetimevaluetemporaltime": { + "#sec-temporal-handledatetimetemporaltime": { "current": { - "number": "15.4.16", - "spec": "Temporal proposal", + "number": "15.9.17", + "spec": "Temporal", "text": "HandleDateTimeTemporalTime ( dateTimeFormat, temporalTime )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporaltime" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimetemporaltime" } }, - "#sec-temporal-handledatetimevaluetemporalyearmonth": { + "#sec-temporal-handledatetimetemporalyearmonth": { "current": { - "number": "15.4.14", - "spec": "Temporal proposal", + "number": "15.9.15", + "spec": "Temporal", "text": "HandleDateTimeTemporalYearMonth ( dateTimeFormat, temporalYearMonth )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporalyearmonth" - } - }, - "#sec-temporal-handledatetimevaluetemporalzoneddatetime": { - "current": { - "number": "15.4.19", - "spec": "Temporal proposal", - "text": "HandleDateTimeTemporalZonedDateTime ( dateTimeFormat, zonedDateTime )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevaluetemporalzoneddatetime" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimetemporalyearmonth" } }, - "#sec-temporal-initializedatetimeformat": { + "#sec-temporal-handledatetimevalue": { "current": { - "number": "15.4.1", - "spec": "Temporal proposal", - "text": "InitializeDateTimeFormat ( dateTimeFormat, locales, options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-initializedatetimeformat" + "number": "15.9.21", + "spec": "Temporal", + "text": "HandleDateTimeValue ( dateTimeFormat, x )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-handledatetimevalue" } }, "#sec-temporal-instant": { "current": { - "number": "1.2.1", - "spec": "Temporal proposal", + "number": "1.2.2", + "spec": "Temporal", "text": "Temporal.Instant ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-instant" } @@ -2522,15 +2882,15 @@ "#sec-temporal-instant-abstract-ops": { "current": { "number": "8.5", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-instant-abstract-ops" } }, "#sec-temporal-instant-constructor": { "current": { "number": "8.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.Instant Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-instant-constructor" } @@ -2538,7 +2898,7 @@ "#sec-temporal-instant-objects": { "current": { "number": "8", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-instant-objects" } @@ -2546,7 +2906,7 @@ "#sec-temporal-instant-range": { "current": { "number": "8.4.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant range", "url": "https://tc39.es/proposal-temporal/#sec-temporal-instant-range" } @@ -2554,23 +2914,23 @@ "#sec-temporal-interpretisodatetimeoffset": { "current": { "number": "6.5.1", - "spec": "Temporal proposal", - "text": "InterpretISODateTimeOffset ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond, offsetBehaviour, offsetNanoseconds, timeZone, disambiguation, offsetOption, matchBehaviour )", + "spec": "Temporal", + "text": "InterpretISODateTimeOffset ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond, offsetBehaviour, offsetNanoseconds, timeZoneRec, disambiguation, offsetOption, matchBehaviour )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-interpretisodatetimeoffset" } }, "#sec-temporal-interprettemporaldatetimefields": { "current": { - "number": "5.5.2", - "spec": "Temporal proposal", - "text": "InterpretTemporalDateTimeFields ( calendar, fields, options )", + "number": "5.5.3", + "spec": "Temporal", + "text": "InterpretTemporalDateTimeFields ( calendarRec, fields, options )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-interprettemporaldatetimefields" } }, "#sec-temporal-intl": { "current": { "number": "15", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Amendments to the ECMAScript® 2023 Internationalization API Specification", "url": "https://tc39.es/proposal-temporal/#sec-temporal-intl" } @@ -2578,111 +2938,199 @@ "#sec-temporal-isbuiltincalendar": { "current": { "number": "12.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "IsBuiltinCalendar ( id )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isbuiltincalendar" } }, + "#sec-temporal-iscalendarunit": { + "current": { + "number": "13.24", + "spec": "Temporal", + "text": "IsCalendarUnit ( unit )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iscalendarunit" + } + }, "#sec-temporal-iso-date-records": { "current": { "number": "3.5.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "ISO Date Records", "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso-date-records" } }, + "#sec-temporal-iso-date-time-parse-records": { + "current": { + "number": "13.35", + "spec": "Temporal", + "text": "ISO Date-Time Parse Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso-date-time-parse-records" + } + }, + "#sec-temporal-iso-date-time-records": { + "current": { + "number": "5.5.1", + "spec": "Temporal", + "text": "ISO Date-Time Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso-date-time-records" + } + }, + "#sec-temporal-iso-month-day-parse-records": { + "current": { + "number": "13.42", + "spec": "Temporal", + "text": "ISO Month-Day Parse Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso-month-day-parse-records" + } + }, + "#sec-temporal-iso-string-time-zone-parse-records": { + "current": { + "number": "13.34", + "spec": "Temporal", + "text": "ISO String Time Zone Parse Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso-string-time-zone-parse-records" + } + }, + "#sec-temporal-iso-year-month-records": { + "current": { + "number": "9.5.1", + "spec": "Temporal", + "text": "ISO Year-Month Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso-year-month-records" + } + }, "#sec-temporal-iso8601grammar": { "current": { - "number": "13.26", - "spec": "Temporal proposal", + "number": "13.33", + "spec": "Temporal", "text": "ISO 8601 grammar", "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar" } }, - "#sec-temporal-iso8601grammar-early-errors": { + "#sec-temporal-iso8601grammar-static-semantics-early-errors": { "current": { - "number": "13.26.1", - "spec": "Temporal proposal", - "text": "Early errors", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar-early-errors" + "number": "13.33.3", + "spec": "Temporal", + "text": "Static Semantics: Early Errors", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar-static-semantics-early-errors" + } + }, + "#sec-temporal-iso8601grammar-static-semantics-isvaliddate": { + "current": { + "number": "13.33.2", + "spec": "Temporal", + "text": "Static Semantics: IsValidDate", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar-static-semantics-isvaliddate" + } + }, + "#sec-temporal-iso8601grammar-static-semantics-isvalidmonthday": { + "current": { + "number": "13.33.1", + "spec": "Temporal", + "text": "Static Semantics: IsValidMonthDay", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar-static-semantics-isvalidmonthday" } }, "#sec-temporal-isodatefromfields": { "current": { - "number": "12.2.35", - "spec": "Temporal proposal", - "text": "ISODateFromFields ( fields, options )", + "number": "12.2.42", + "spec": "Temporal", + "text": "ISODateFromFields ( fields, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isodatefromfields" } }, + "#sec-temporal-isodatesurpasses": { + "current": { + "number": "3.5.5", + "spec": "Temporal", + "text": "ISODateSurpasses ( sign, y1, m1, d1, y2, m2, d2 )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-isodatesurpasses" + } + }, "#sec-temporal-isodatetimewithinlimits": { "current": { - "number": "5.5.1", - "spec": "Temporal proposal", + "number": "5.5.2", + "spec": "Temporal", "text": "ISODateTimeWithinLimits ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isodatetimewithinlimits" } }, "#sec-temporal-isodaysinmonth": { "current": { - "number": "12.2.31", - "spec": "Temporal proposal", + "number": "12.2.38", + "spec": "Temporal", "text": "ISODaysInMonth ( year, month )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isodaysinmonth" } }, "#sec-temporal-isofieldkeystoignore": { "current": { - "number": "12.2.38", - "spec": "Temporal proposal", + "number": "12.2.45", + "spec": "Temporal", "text": "ISOFieldKeysToIgnore ( keys )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isofieldkeystoignore" } }, "#sec-temporal-isomonthcode": { "current": { - "number": "12.2.33", - "spec": "Temporal proposal", + "number": "12.2.40", + "spec": "Temporal", "text": "ISOMonthCode ( month )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isomonthcode" } }, "#sec-temporal-isomonthdayfromfields": { "current": { - "number": "12.2.37", - "spec": "Temporal proposal", - "text": "ISOMonthDayFromFields ( fields, options )", + "number": "12.2.44", + "spec": "Temporal", + "text": "ISOMonthDayFromFields ( fields, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isomonthdayfromfields" } }, + "#sec-temporal-isoresolvemonth": { + "current": { + "number": "12.2.41", + "spec": "Temporal", + "text": "ISOResolveMonth ( fields )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-isoresolvemonth" + } + }, "#sec-temporal-isoyearmonthfromfields": { "current": { - "number": "12.2.36", - "spec": "Temporal proposal", - "text": "ISOYearMonthFromFields ( fields, options )", + "number": "12.2.43", + "spec": "Temporal", + "text": "ISOYearMonthFromFields ( fields, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isoyearmonthfromfields" } }, "#sec-temporal-isoyearmonthwithinlimits": { "current": { - "number": "9.5.3", - "spec": "Temporal proposal", + "number": "9.5.4", + "spec": "Temporal", "text": "ISOYearMonthWithinLimits ( year, month )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isoyearmonthwithinlimits" } }, + "#sec-temporal-ispartialtemporalobject": { + "current": { + "number": "13.26", + "spec": "Temporal", + "text": "IsPartialTemporalObject ( object )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-ispartialtemporalobject" + } + }, "#sec-temporal-istemporalobject": { "current": { - "number": "15.4.10", - "spec": "Temporal proposal", + "number": "15.9.11", + "spec": "Temporal", "text": "IsTemporalObject ( value )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-istemporalobject" } }, "#sec-temporal-isvalidduration": { "current": { - "number": "7.5.11", - "spec": "Temporal proposal", + "number": "7.5.15", + "spec": "Temporal", "text": "IsValidDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isvalidduration" } @@ -2690,31 +3138,31 @@ "#sec-temporal-isvalidepochnanoseconds": { "current": { "number": "8.5.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "IsValidEpochNanoseconds ( epochNanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isvalidepochnanoseconds" } }, "#sec-temporal-isvalidisodate": { "current": { - "number": "3.5.7", - "spec": "Temporal proposal", + "number": "3.5.9", + "spec": "Temporal", "text": "IsValidISODate ( year, month, day )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isvalidisodate" } }, "#sec-temporal-isvalidtime": { "current": { - "number": "4.5.4", - "spec": "Temporal proposal", + "number": "4.5.6", + "spec": "Temporal", "text": "IsValidTime ( hour, minute, second, millisecond, microsecond, nanosecond )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-isvalidtime" } }, "#sec-temporal-largeroftwotemporalunits": { "current": { - "number": "13.18", - "spec": "Temporal proposal", + "number": "13.23", + "spec": "Temporal", "text": "LargerOfTwoTemporalUnits ( u1, u2 )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-largeroftwotemporalunits" } @@ -2722,215 +3170,279 @@ "#sec-temporal-legacy-date-objects": { "current": { "number": "14", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Amendments to the ECMAScript® 2023 Language Specification", "url": "https://tc39.es/proposal-temporal/#sec-temporal-legacy-date-objects" } }, "#sec-temporal-maximumtemporaldurationroundingincrement": { "current": { - "number": "13.19", - "spec": "Temporal proposal", + "number": "13.25", + "spec": "Temporal", "text": "MaximumTemporalDurationRoundingIncrement ( unit )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-maximumtemporaldurationroundingincrement" } }, "#sec-temporal-maybeformatcalendarannotation": { "current": { - "number": "12.2.27", - "spec": "Temporal proposal", - "text": "MaybeFormatCalendarAnnotation ( calendarObject, showCalendar )", + "number": "12.2.35", + "spec": "Temporal", + "text": "MaybeFormatCalendarAnnotation ( calendar, showCalendar )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-maybeformatcalendarannotation" } }, - "#sec-temporal-mergelists": { + "#sec-temporal-negateroundingmode": { "current": { - "number": "14.3", - "spec": "Temporal proposal", - "text": "MergeLists ( a, b )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-mergelists" + "number": "13.11", + "spec": "Temporal", + "text": "NegateRoundingMode ( roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-negateroundingmode" } }, - "#sec-temporal-moverelativedate": { + "#sec-temporal-normalized-duration-records": { "current": { - "number": "7.5.24", - "spec": "Temporal proposal", - "text": "MoveRelativeDate ( calendar, relativeTo, duration, dateAdd )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-moverelativedate" + "number": "7.5.6", + "spec": "Temporal", + "text": "Normalized Duration Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalized-duration-records" } }, - "#sec-temporal-moverelativezoneddatetime": { + "#sec-temporal-normalized-time-duration-records": { "current": { - "number": "7.5.25", - "spec": "Temporal proposal", - "text": "MoveRelativeZonedDateTime ( zonedDateTime, years, months, weeks, days )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-moverelativezoneddatetime" + "number": "7.5.5", + "spec": "Temporal", + "text": "Normalized Time Duration Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalized-time-duration-records" } }, - "#sec-temporal-nanosecondstodays": { + "#sec-temporal-normalizedtimedurationabs": { "current": { - "number": "6.5.7", - "spec": "Temporal proposal", - "text": "NanosecondsToDays ( nanoseconds, relativeTo )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-nanosecondstodays" + "number": "7.5.21", + "spec": "Temporal", + "text": "NormalizedTimeDurationAbs ( d )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizedtimedurationabs" } }, - "#sec-temporal-negatetemporalroundingmode": { + "#sec-temporal-normalizedtimedurationfromepochnanosecondsdifference": { "current": { - "number": "13.7", - "spec": "Temporal proposal", - "text": "NegateTemporalRoundingMode ( roundingMode )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-negatetemporalroundingmode" + "number": "7.5.27", + "spec": "Temporal", + "text": "NormalizedTimeDurationFromEpochNanosecondsDifference ( one, two )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizedtimedurationfromepochnanosecondsdifference" + } + }, + "#sec-temporal-normalizedtimedurationiszero": { + "current": { + "number": "7.5.28", + "spec": "Temporal", + "text": "NormalizedTimeDurationIsZero ( d )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizedtimedurationiszero" + } + }, + "#sec-temporal-normalizedtimedurationseconds": { + "current": { + "number": "7.5.30", + "spec": "Temporal", + "text": "NormalizedTimeDurationSeconds ( d )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizedtimedurationseconds" + } + }, + "#sec-temporal-normalizedtimedurationsign": { + "current": { + "number": "7.5.31", + "spec": "Temporal", + "text": "NormalizedTimeDurationSign ( d )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizedtimedurationsign" + } + }, + "#sec-temporal-normalizedtimedurationsubseconds": { + "current": { + "number": "7.5.32", + "spec": "Temporal", + "text": "NormalizedTimeDurationSubseconds ( d )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizedtimedurationsubseconds" + } + }, + "#sec-temporal-normalizetimeduration": { + "current": { + "number": "7.5.20", + "spec": "Temporal", + "text": "NormalizeTimeDuration ( hours, minutes, seconds, milliseconds, microseconds, nanoseconds )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-normalizetimeduration" } }, "#sec-temporal-now": { "current": { "number": "1.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Now", "url": "https://tc39.es/proposal-temporal/#sec-temporal-now" } }, - "#sec-temporal-now-@@tostringtag": { + "#sec-temporal-now-%40%40tostringtag": { "current": { "number": "2.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Now [ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-now-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal-now-%40%40tostringtag" } }, "#sec-temporal-now-abstract-ops": { "current": { "number": "2.3", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-now-abstract-ops" } }, "#sec-temporal-now-object": { "current": { "number": "2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.Now Object", "url": "https://tc39.es/proposal-temporal/#sec-temporal-now-object" } }, + "#sec-temporal-nudgetocalendarunit": { + "current": { + "number": "7.5.40", + "spec": "Temporal", + "text": "NudgeToCalendarUnit ( sign, duration, destEpochNs, dateTime, calendarRec, timeZoneRec, increment, unit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-nudgetocalendarunit" + } + }, + "#sec-temporal-nudgetodayortime": { + "current": { + "number": "7.5.42", + "spec": "Temporal", + "text": "NudgeToDayOrTime ( duration, destEpochNs, largestUnit, increment, smallestUnit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-nudgetodayortime" + } + }, + "#sec-temporal-nudgetozonedtime": { + "current": { + "number": "7.5.41", + "spec": "Temporal", + "text": "NudgeToZonedTime ( sign, duration, dateTime, calendarRec, timeZoneRec, increment, unit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-nudgetozonedtime" + } + }, + "#sec-temporal-objectimplementstemporalcalendarprotocol": { + "current": { + "number": "12.2.27", + "spec": "Temporal", + "text": "ObjectImplementsTemporalCalendarProtocol ( object )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-objectimplementstemporalcalendarprotocol" + } + }, + "#sec-temporal-objectimplementstemporaltimezoneprotocol": { + "current": { + "number": "11.5.15", + "spec": "Temporal", + "text": "ObjectImplementsTemporalTimeZoneProtocol ( object )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-objectimplementstemporaltimezoneprotocol" + } + }, "#sec-temporal-objects": { "current": { "number": "1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal Object", "url": "https://tc39.es/proposal-temporal/#sec-temporal-objects" } }, "#sec-temporal-padisoyear": { "current": { - "number": "3.5.9", - "spec": "Temporal proposal", + "number": "3.5.11", + "spec": "Temporal", "text": "PadISOYear ( y )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-padisoyear" } }, "#sec-temporal-parseisodatetime": { "current": { - "number": "13.27", - "spec": "Temporal proposal", + "number": "13.36", + "spec": "Temporal", "text": "ParseISODateTime ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parseisodatetime" } }, "#sec-temporal-parsetemporalcalendarstring": { "current": { - "number": "13.30", - "spec": "Temporal proposal", - "text": "ParseTemporalCalendarString ( isoString )", + "number": "13.39", + "spec": "Temporal", + "text": "ParseTemporalCalendarString ( string )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalcalendarstring" } }, - "#sec-temporal-parsetemporaldatestring": { - "current": { - "number": "13.31", - "spec": "Temporal proposal", - "text": "ParseTemporalDateString ( isoString )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldatestring" - } - }, "#sec-temporal-parsetemporaldatetimestring": { "current": { - "number": "13.32", - "spec": "Temporal proposal", + "number": "13.40", + "spec": "Temporal", "text": "ParseTemporalDateTimeString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldatetimestring" } }, "#sec-temporal-parsetemporaldurationstring": { "current": { - "number": "13.33", - "spec": "Temporal proposal", + "number": "13.41", + "spec": "Temporal", "text": "ParseTemporalDurationString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldurationstring" } }, - "#sec-temporal-parsetemporalinstant": { - "current": { - "number": "8.5.4", - "spec": "Temporal proposal", - "text": "ParseTemporalInstant ( isoString )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalinstant" - } - }, "#sec-temporal-parsetemporalinstantstring": { "current": { - "number": "13.28", - "spec": "Temporal proposal", + "number": "13.37", + "spec": "Temporal", "text": "ParseTemporalInstantString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalinstantstring" } }, "#sec-temporal-parsetemporalmonthdaystring": { "current": { - "number": "13.34", - "spec": "Temporal proposal", + "number": "13.43", + "spec": "Temporal", "text": "ParseTemporalMonthDayString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalmonthdaystring" } }, "#sec-temporal-parsetemporalrelativetostring": { "current": { - "number": "13.35", - "spec": "Temporal proposal", + "number": "13.44", + "spec": "Temporal", "text": "ParseTemporalRelativeToString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalrelativetostring" } }, "#sec-temporal-parsetemporaltimestring": { "current": { - "number": "13.36", - "spec": "Temporal proposal", + "number": "13.45", + "spec": "Temporal", "text": "ParseTemporalTimeString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaltimestring" } }, "#sec-temporal-parsetemporaltimezonestring": { "current": { - "number": "13.37", - "spec": "Temporal proposal", + "number": "13.46", + "spec": "Temporal", "text": "ParseTemporalTimeZoneString ( timeZoneString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaltimezonestring" } }, "#sec-temporal-parsetemporalyearmonthstring": { "current": { - "number": "13.38", - "spec": "Temporal proposal", + "number": "13.47", + "spec": "Temporal", "text": "ParseTemporalYearMonthString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalyearmonthstring" } }, "#sec-temporal-parsetemporalzoneddatetimestring": { "current": { - "number": "13.29", - "spec": "Temporal proposal", + "number": "13.38", + "spec": "Temporal", "text": "ParseTemporalZonedDateTimeString ( isoString )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalzoneddatetimestring" } @@ -2938,15 +3450,15 @@ "#sec-temporal-partial-duration-records": { "current": { "number": "7.5.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Partial Duration Records", "url": "https://tc39.es/proposal-temporal/#sec-temporal-partial-duration-records" } }, "#sec-temporal-plaindate": { "current": { - "number": "1.2.3", - "spec": "Temporal proposal", + "number": "1.2.4", + "spec": "Temporal", "text": "Temporal.PlainDate ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindate" } @@ -2954,7 +3466,7 @@ "#sec-temporal-plaindate-abstract-ops": { "current": { "number": "3.5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Abstract Operations for Temporal.PlainDate Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindate-abstract-ops" } @@ -2962,7 +3474,7 @@ "#sec-temporal-plaindate-constructor": { "current": { "number": "3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.PlainDate Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindate-constructor" } @@ -2970,15 +3482,15 @@ "#sec-temporal-plaindate-objects": { "current": { "number": "3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindate-objects" } }, "#sec-temporal-plaindatetime": { "current": { - "number": "1.2.2", - "spec": "Temporal proposal", + "number": "1.2.3", + "spec": "Temporal", "text": "Temporal.PlainDateTime ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindatetime" } @@ -2986,15 +3498,15 @@ "#sec-temporal-plaindatetime-abstract-ops": { "current": { "number": "5.5", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindatetime-abstract-ops" } }, "#sec-temporal-plaindatetime-constructor": { "current": { "number": "5.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.PlainDateTime Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindatetime-constructor" } @@ -3002,15 +3514,15 @@ "#sec-temporal-plaindatetime-objects": { "current": { "number": "5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaindatetime-objects" } }, "#sec-temporal-plainmonthday": { "current": { - "number": "1.2.6", - "spec": "Temporal proposal", + "number": "1.2.7", + "spec": "Temporal", "text": "Temporal.PlainMonthDay ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainmonthday" } @@ -3018,15 +3530,15 @@ "#sec-temporal-plainmonthday-abstract-ops": { "current": { "number": "10.5", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainmonthday-abstract-ops" } }, "#sec-temporal-plainmonthday-constructor": { "current": { "number": "10.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.PlainMonthDay Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainmonthday-constructor" } @@ -3034,15 +3546,15 @@ "#sec-temporal-plainmonthday-objects": { "current": { "number": "10", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainmonthday-objects" } }, "#sec-temporal-plaintime": { "current": { - "number": "1.2.4", - "spec": "Temporal proposal", + "number": "1.2.5", + "spec": "Temporal", "text": "Temporal.PlainTime ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaintime" } @@ -3050,15 +3562,15 @@ "#sec-temporal-plaintime-abstract-ops": { "current": { "number": "4.5", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaintime-abstract-ops" } }, "#sec-temporal-plaintime-constructor": { "current": { "number": "4.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.PlainTime Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaintime-constructor" } @@ -3066,15 +3578,15 @@ "#sec-temporal-plaintime-objects": { "current": { "number": "4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plaintime-objects" } }, "#sec-temporal-plainyearmonth": { "current": { - "number": "1.2.5", - "spec": "Temporal proposal", + "number": "1.2.6", + "spec": "Temporal", "text": "Temporal.PlainYearMonth ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainyearmonth" } @@ -3082,15 +3594,15 @@ "#sec-temporal-plainyearmonth-abstract-ops": { "current": { "number": "9.5", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainyearmonth-abstract-ops" } }, "#sec-temporal-plainyearmonth-constructor": { "current": { "number": "9.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.PlainYearMonth Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainyearmonth-constructor" } @@ -3098,191 +3610,223 @@ "#sec-temporal-plainyearmonth-objects": { "current": { "number": "9", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-plainyearmonth-objects" } }, + "#sec-temporal-preparecalendarfields": { + "current": { + "number": "13.53", + "spec": "Temporal", + "text": "PrepareCalendarFields ( calendarRec, fields, calendarFieldNames, nonCalendarFieldNames, requiredFieldNames )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-preparecalendarfields" + } + }, + "#sec-temporal-preparecalendarfieldsandfieldnames": { + "current": { + "number": "13.52", + "spec": "Temporal", + "text": "PrepareCalendarFieldsAndFieldNames ( calendarRec, fields, calendarFieldNames [ , nonCalendarFieldNames [ , requiredFieldNames ] ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-preparecalendarfieldsandfieldnames" + } + }, "#sec-temporal-preparetemporalfields": { "current": { - "number": "13.42", - "spec": "Temporal proposal", - "text": "PrepareTemporalFields ( fields, fieldNames, requiredFields )", + "number": "13.51", + "spec": "Temporal", + "text": "PrepareTemporalFields ( fields, fieldNames, requiredFields [ , extraFieldDescriptors [ , duplicateBehaviour ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-preparetemporalfields" } }, - "#sec-temporal-properties-of-the-legacy-date-prototype-object": { + "#sec-temporal-properties-of-the-date-constructor": { "current": { "number": "14.8", - "spec": "Temporal proposal", + "spec": "Temporal", + "text": "Properties of the Date Constructor", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-properties-of-the-date-constructor" + } + }, + "#sec-temporal-properties-of-the-legacy-date-prototype-object": { + "current": { + "number": "14.9", + "spec": "Temporal", "text": "Properties of the Date Prototype Object", "url": "https://tc39.es/proposal-temporal/#sec-temporal-properties-of-the-legacy-date-prototype-object" } }, "#sec-temporal-regulateisodate": { "current": { - "number": "3.5.6", - "spec": "Temporal proposal", + "number": "3.5.8", + "spec": "Temporal", "text": "RegulateISODate ( year, month, day, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-regulateisodate" } }, "#sec-temporal-regulateisoyearmonth": { "current": { - "number": "9.5.2", - "spec": "Temporal proposal", + "number": "9.5.3", + "spec": "Temporal", "text": "RegulateISOYearMonth ( year, month, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-regulateisoyearmonth" } }, "#sec-temporal-regulatetime": { "current": { - "number": "4.5.3", - "spec": "Temporal proposal", + "number": "4.5.5", + "spec": "Temporal", "text": "RegulateTime ( hour, minute, second, millisecond, microsecond, nanosecond, overflow )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-regulatetime" } }, - "#sec-temporal-rejectobjectwithcalendarortimezone": { - "current": { - "number": "13.20", - "spec": "Temporal proposal", - "text": "RejectObjectWithCalendarOrTimeZone ( object )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-rejectobjectwithcalendarortimezone" - } - }, - "#sec-temporal-resolveisomonth": { - "current": { - "number": "12.2.34", - "spec": "Temporal proposal", - "text": "ResolveISOMonth ( fields )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-resolveisomonth" - } - }, - "#sec-temporal-roundduration": { + "#sec-temporal-roundisodatetime": { "current": { - "number": "7.5.26", - "spec": "Temporal proposal", - "text": "RoundDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, increment, unit, roundingMode [ , relativeTo ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundduration" + "number": "5.5.10", + "spec": "Temporal", + "text": "RoundISODateTime ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond, increment, unit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundisodatetime" } }, - "#sec-temporal-roundisodatetime": { + "#sec-temporal-roundnormalizedtimedurationtoincrement": { "current": { - "number": "5.5.9", - "spec": "Temporal proposal", - "text": "RoundISODateTime ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond, increment, unit, roundingMode [ , dayLength ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundisodatetime" + "number": "7.5.29", + "spec": "Temporal", + "text": "RoundNormalizedTimeDurationToIncrement ( d, increment, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundnormalizedtimedurationtoincrement" } }, "#sec-temporal-roundnumbertoincrement": { "current": { - "number": "13.24", - "spec": "Temporal proposal", + "number": "13.31", + "spec": "Temporal", "text": "RoundNumberToIncrement ( x, increment, roundingMode )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundnumbertoincrement" } }, "#sec-temporal-roundnumbertoincrementasifpositive": { "current": { - "number": "13.25", - "spec": "Temporal proposal", + "number": "13.32", + "spec": "Temporal", "text": "RoundNumberToIncrementAsIfPositive ( x, increment, roundingMode )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundnumbertoincrementasifpositive" } }, + "#sec-temporal-roundrelativeduration": { + "current": { + "number": "7.5.44", + "spec": "Temporal", + "text": "RoundRelativeDuration ( duration, destEpochNs, dateTime, calendarRec, timeZoneRec, largestUnit, increment, smallestUnit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundrelativeduration" + } + }, "#sec-temporal-roundtemporalinstant": { "current": { - "number": "8.5.8", - "spec": "Temporal proposal", + "number": "8.5.7", + "spec": "Temporal", "text": "RoundTemporalInstant ( ns, increment, unit, roundingMode )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundtemporalinstant" } }, "#sec-temporal-roundtime": { "current": { - "number": "4.5.12", - "spec": "Temporal proposal", - "text": "RoundTime ( hour, minute, second, millisecond, microsecond, nanosecond, increment, unit, roundingMode [ , dayLengthNs ] )", + "number": "4.5.14", + "spec": "Temporal", + "text": "RoundTime ( hour, minute, second, millisecond, microsecond, nanosecond, increment, unit, roundingMode )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundtime" } }, + "#sec-temporal-roundtimeduration": { + "current": { + "number": "7.5.38", + "spec": "Temporal", + "text": "RoundTimeDuration ( days, norm, increment, unit, roundingMode )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-roundtimeduration" + } + }, "#sec-temporal-sametemporaltype": { "current": { - "number": "15.4.11", - "spec": "Temporal proposal", + "number": "15.9.12", + "spec": "Temporal", "text": "SameTemporalType ( x, y )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-sametemporaltype" } }, + "#sec-temporal-subtractnormalizedtimeduration": { + "current": { + "number": "7.5.33", + "spec": "Temporal", + "text": "SubtractNormalizedTimeDuration ( one, two )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-subtractnormalizedtimeduration" + } + }, "#sec-temporal-systemdatetime": { "current": { - "number": "2.3.4", - "spec": "Temporal proposal", - "text": "SystemDateTime ( temporalTimeZoneLike, calendarLike )", + "number": "2.3.5", + "spec": "Temporal", + "text": "SystemDateTime ( temporalTimeZoneLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-systemdatetime" } }, "#sec-temporal-systeminstant": { "current": { - "number": "2.3.3", - "spec": "Temporal proposal", + "number": "2.3.4", + "spec": "Temporal", "text": "SystemInstant ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-systeminstant" } }, - "#sec-temporal-systemtimezone": { + "#sec-temporal-systemutcepochmilliseconds": { "current": { - "number": "2.3.1", - "spec": "Temporal proposal", - "text": "SystemTimeZone ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-systemtimezone" + "number": "2.3.2", + "spec": "Temporal", + "text": "SystemUTCEpochMilliseconds ( )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-systemutcepochmilliseconds" } }, "#sec-temporal-systemutcepochnanoseconds": { "current": { - "number": "2.3.2", - "spec": "Temporal proposal", + "number": "2.3.3", + "spec": "Temporal", "text": "SystemUTCEpochNanoseconds ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-systemutcepochnanoseconds" } }, "#sec-temporal-systemzoneddatetime": { "current": { - "number": "2.3.5", - "spec": "Temporal proposal", - "text": "SystemZonedDateTime ( temporalTimeZoneLike, calendarLike )", + "number": "2.3.6", + "spec": "Temporal", + "text": "SystemZonedDateTime ( temporalTimeZoneLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-systemzoneddatetime" } }, "#sec-temporal-temporaldatetimetostring": { "current": { - "number": "5.5.6", - "spec": "Temporal proposal", + "number": "5.5.7", + "spec": "Temporal", "text": "TemporalDateTimeToString ( isoYear, isoMonth, isoDay, hour, minute, second, millisecond, microsecond, nanosecond, calendar, precision, showCalendar )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporaldatetimetostring" } }, "#sec-temporal-temporaldatetostring": { "current": { - "number": "3.5.10", - "spec": "Temporal proposal", + "number": "3.5.12", + "spec": "Temporal", "text": "TemporalDateToString ( temporalDate, showCalendar )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporaldatetostring" } }, "#sec-temporal-temporaldurationtostring": { "current": { - "number": "7.5.28", - "spec": "Temporal proposal", - "text": "TemporalDurationToString ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, precision )", + "number": "7.5.45", + "spec": "Temporal", + "text": "TemporalDurationToString ( years, months, weeks, days, hours, minutes, normSeconds, precision )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporaldurationtostring" } }, "#sec-temporal-temporalinstanttostring": { "current": { - "number": "8.5.9", - "spec": "Temporal proposal", + "number": "8.5.8", + "spec": "Temporal", "text": "TemporalInstantToString ( instant, timeZone, precision )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporalinstanttostring" } @@ -3290,23 +3834,23 @@ "#sec-temporal-temporalmonthdaytostring": { "current": { "number": "10.5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "TemporalMonthDayToString ( monthDay, showCalendar )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporalmonthdaytostring" } }, "#sec-temporal-temporaltimetostring": { "current": { - "number": "4.5.9", - "spec": "Temporal proposal", + "number": "4.5.11", + "spec": "Temporal", "text": "TemporalTimeToString ( hour, minute, second, millisecond, microsecond, nanosecond, precision )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporaltimetostring" } }, "#sec-temporal-temporalyearmonthtostring": { "current": { - "number": "9.5.6", - "spec": "Temporal proposal", + "number": "9.5.7", + "spec": "Temporal", "text": "TemporalYearMonthToString ( yearMonth, showCalendar )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporalyearmonthtostring" } @@ -3314,7 +3858,7 @@ "#sec-temporal-temporalzoneddatetimetostring": { "current": { "number": "6.5.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "TemporalZonedDateTimeToString ( zonedDateTime, precision, showCalendar, showTimeZone, showOffset [ , increment [ , unit [ , roundingMode ] ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-temporalzoneddatetimetostring" } @@ -3322,31 +3866,47 @@ "#sec-temporal-time-duration-records": { "current": { "number": "7.5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Time Duration Records", "url": "https://tc39.es/proposal-temporal/#sec-temporal-time-duration-records" } }, + "#sec-temporal-time-records": { + "current": { + "number": "4.5.1", + "spec": "Temporal", + "text": "Time Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-time-records" + } + }, + "#sec-temporal-time-zone-methods-records": { + "current": { + "number": "11.5.1", + "spec": "Temporal", + "text": "Time Zone Methods Records", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-time-zone-methods-records" + } + }, "#sec-temporal-timezone": { "current": { - "number": "1.2.7", - "spec": "Temporal proposal", + "number": "1.2.8", + "spec": "Temporal", "text": "Temporal.TimeZone ( . . . )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezone" } }, "#sec-temporal-timezone-abstract-ops": { "current": { - "number": "11.6", - "spec": "Temporal proposal", - "text": "Abstract operations", + "number": "11.5", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezone-abstract-ops" } }, "#sec-temporal-timezone-constructor": { "current": { - "number": "11.2", - "spec": "Temporal proposal", + "number": "11.1", + "spec": "Temporal", "text": "The Temporal.TimeZone Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezone-constructor" } @@ -3354,151 +3914,135 @@ "#sec-temporal-timezone-objects": { "current": { "number": "11", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.TimeZone Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezone-objects" } }, "#sec-temporal-timezoneequals": { "current": { - "number": "11.6.14", - "spec": "Temporal proposal", + "number": "11.5.25", + "spec": "Temporal", "text": "TimeZoneEquals ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezoneequals" } }, - "#sec-temporal-tocalendarnameoption": { + "#sec-temporal-timezonemethodsrecordcall": { "current": { - "number": "13.9", - "spec": "Temporal proposal", - "text": "ToCalendarNameOption ( normalizedOptions )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-tocalendarnameoption" + "number": "11.5.6", + "spec": "Temporal", + "text": "TimeZoneMethodsRecordCall ( timeZoneRec, methodName, arguments )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezonemethodsrecordcall" } }, - "#sec-temporal-tofractionalseconddigits": { + "#sec-temporal-timezonemethodsrecordhaslookedup": { "current": { - "number": "13.14", - "spec": "Temporal proposal", - "text": "ToFractionalSecondDigits ( normalizedOptions )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-tofractionalseconddigits" + "number": "11.5.4", + "spec": "Temporal", + "text": "TimeZoneMethodsRecordHasLookedUp ( timeZoneRec, methodName )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezonemethodsrecordhaslookedup" + } + }, + "#sec-temporal-timezonemethodsrecordisbuiltin": { + "current": { + "number": "11.5.5", + "spec": "Temporal", + "text": "TimeZoneMethodsRecordIsBuiltin ( timeZoneRec )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezonemethodsrecordisbuiltin" + } + }, + "#sec-temporal-timezonemethodsrecordlookup": { + "current": { + "number": "11.5.3", + "spec": "Temporal", + "text": "TimeZoneMethodsRecordLookup ( timeZoneRec, methodName )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-timezonemethodsrecordlookup" } }, "#sec-temporal-toisodayofweek": { "current": { - "number": "12.2.40", - "spec": "Temporal proposal", + "number": "12.2.47", + "spec": "Temporal", "text": "ToISODayOfWeek ( year, month, day )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-toisodayofweek" } }, "#sec-temporal-toisodayofyear": { "current": { - "number": "12.2.39", - "spec": "Temporal proposal", + "number": "12.2.46", + "spec": "Temporal", "text": "ToISODayOfYear ( year, month, day )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-toisodayofyear" } }, "#sec-temporal-toisoweekofyear": { "current": { - "number": "12.2.32", - "spec": "Temporal proposal", + "number": "12.2.39", + "spec": "Temporal", "text": "ToISOWeekOfYear ( year, month, day )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-toisoweekofyear" } }, - "#sec-temporal-tolocaltime": { - "current": { - "number": "15.4.22", - "spec": "Temporal proposal", - "text": "ToLocalTime ( t, calendar, timeZone )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-tolocaltime" - } - }, - "#sec-temporal-torelativetemporalobject": { - "current": { - "number": "13.17", - "spec": "Temporal proposal", - "text": "ToRelativeTemporalObject ( options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-torelativetemporalobject" - } - }, "#sec-temporal-tosecondsstringprecisionrecord": { "current": { - "number": "13.15", - "spec": "Temporal proposal", + "number": "13.20", + "spec": "Temporal", "text": "ToSecondsStringPrecisionRecord ( smallestUnit, fractionalDigitCount )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-tosecondsstringprecisionrecord" } }, - "#sec-temporal-toshowoffsetoption": { - "current": { - "number": "13.11", - "spec": "Temporal proposal", - "text": "ToShowOffsetOption ( normalizedOptions )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-toshowoffsetoption" - } - }, - "#sec-temporal-totaldurationnanoseconds": { + "#sec-temporal-totemporalcalendaridentifier": { "current": { - "number": "7.5.17", - "spec": "Temporal proposal", - "text": "TotalDurationNanoseconds ( days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, offsetShift )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totaldurationnanoseconds" + "number": "12.2.30", + "spec": "Temporal", + "text": "ToTemporalCalendarIdentifier ( calendarSlotValue )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendaridentifier" } }, - "#sec-temporal-totemporalcalendar": { + "#sec-temporal-totemporalcalendarobject": { "current": { - "number": "12.2.21", - "spec": "Temporal proposal", - "text": "ToTemporalCalendar ( temporalCalendarLike )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendar" + "number": "12.2.31", + "spec": "Temporal", + "text": "ToTemporalCalendarObject ( calendarSlotValue )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendarobject" } }, - "#sec-temporal-totemporalcalendarwithisodefault": { + "#sec-temporal-totemporalcalendarslotvalue": { "current": { - "number": "12.2.22", - "spec": "Temporal proposal", - "text": "ToTemporalCalendarWithISODefault ( temporalCalendarLike )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendarwithisodefault" + "number": "12.2.28", + "spec": "Temporal", + "text": "ToTemporalCalendarSlotValue ( temporalCalendarLike [ , default ] )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendarslotvalue" } }, "#sec-temporal-totemporaldate": { "current": { "number": "3.5.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "ToTemporalDate ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaldate" } }, "#sec-temporal-totemporaldatetime": { "current": { - "number": "5.5.3", - "spec": "Temporal proposal", + "number": "5.5.4", + "spec": "Temporal", "text": "ToTemporalDateTime ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaldatetime" } }, - "#sec-temporal-totemporaldisambiguation": { - "current": { - "number": "13.5", - "spec": "Temporal proposal", - "text": "ToTemporalDisambiguation ( options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaldisambiguation" - } - }, "#sec-temporal-totemporalduration": { "current": { - "number": "7.5.8", - "spec": "Temporal proposal", + "number": "7.5.12", + "spec": "Temporal", "text": "ToTemporalDuration ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalduration" } }, "#sec-temporal-totemporaldurationrecord": { "current": { - "number": "7.5.9", - "spec": "Temporal proposal", + "number": "7.5.13", + "spec": "Temporal", "text": "ToTemporalDurationRecord ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaldurationrecord" } @@ -3506,7 +4050,7 @@ "#sec-temporal-totemporalinstant": { "current": { "number": "8.5.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "ToTemporalInstant ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalinstant" } @@ -3514,79 +4058,71 @@ "#sec-temporal-totemporalmonthday": { "current": { "number": "10.5.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "ToTemporalMonthDay ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalmonthday" } }, - "#sec-temporal-totemporaloffset": { - "current": { - "number": "13.8", - "spec": "Temporal proposal", - "text": "ToTemporalOffset ( options, fallback )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaloffset" - } - }, - "#sec-temporal-totemporaloverflow": { - "current": { - "number": "13.4", - "spec": "Temporal proposal", - "text": "ToTemporalOverflow ( options )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaloverflow" - } - }, "#sec-temporal-totemporalpartialdurationrecord": { "current": { - "number": "7.5.13", - "spec": "Temporal proposal", + "number": "7.5.17", + "spec": "Temporal", "text": "ToTemporalPartialDurationRecord ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalpartialdurationrecord" } }, - "#sec-temporal-totemporalroundingincrement": { - "current": { - "number": "13.12", - "spec": "Temporal proposal", - "text": "ToTemporalRoundingIncrement ( normalizedOptions )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalroundingincrement" - } - }, - "#sec-temporal-totemporalroundingmode": { - "current": { - "number": "13.6", - "spec": "Temporal proposal", - "text": "ToTemporalRoundingMode ( normalizedOptions, fallback )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalroundingmode" - } - }, "#sec-temporal-totemporaltime": { "current": { - "number": "4.5.2", - "spec": "Temporal proposal", + "number": "4.5.3", + "spec": "Temporal", "text": "ToTemporalTime ( item [ , overflow ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltime" } }, + "#sec-temporal-totemporaltimeormidnight": { + "current": { + "number": "4.5.4", + "spec": "Temporal", + "text": "ToTemporalTimeOrMidnight ( item )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimeormidnight" + } + }, "#sec-temporal-totemporaltimerecord": { "current": { - "number": "4.5.8", - "spec": "Temporal proposal", + "number": "4.5.10", + "spec": "Temporal", "text": "ToTemporalTimeRecord ( temporalTimeLike [ , completeness ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimerecord" } }, - "#sec-temporal-totemporaltimezone": { + "#sec-temporal-totemporaltimezoneidentifier": { + "current": { + "number": "11.5.17", + "spec": "Temporal", + "text": "ToTemporalTimeZoneIdentifier ( timeZoneSlotValue )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimezoneidentifier" + } + }, + "#sec-temporal-totemporaltimezoneobject": { + "current": { + "number": "11.5.18", + "spec": "Temporal", + "text": "ToTemporalTimeZoneObject ( timeZoneSlotValue )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimezoneobject" + } + }, + "#sec-temporal-totemporaltimezoneslotvalue": { "current": { - "number": "11.6.7", - "spec": "Temporal proposal", - "text": "ToTemporalTimeZone ( temporalTimeZoneLike )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimezone" + "number": "11.5.16", + "spec": "Temporal", + "text": "ToTemporalTimeZoneSlotValue ( temporalTimeZoneLike )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimezoneslotvalue" } }, "#sec-temporal-totemporalyearmonth": { "current": { - "number": "9.5.1", - "spec": "Temporal proposal", + "number": "9.5.2", + "spec": "Temporal", "text": "ToTemporalYearMonth ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalyearmonth" } @@ -3594,39 +4130,47 @@ "#sec-temporal-totemporalzoneddatetime": { "current": { "number": "6.5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "ToTemporalZonedDateTime ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal-totemporalzoneddatetime" } }, - "#sec-temporal-totimezonenameoption": { + "#sec-temporal-unbalancedatedurationrelative": { "current": { - "number": "13.10", - "spec": "Temporal proposal", - "text": "ToTimeZoneNameOption ( normalizedOptions )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-totimezonenameoption" + "number": "7.5.36", + "spec": "Temporal", + "text": "UnbalanceDateDurationRelative ( years, months, weeks, days, plainRelativeTo, calendarRec )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-unbalancedatedurationrelative" } }, - "#sec-temporal-unbalancedurationrelative": { + "#sec-temporal-units": { "current": { - "number": "7.5.20", - "spec": "Temporal proposal", - "text": "UnbalanceDurationRelative ( years, months, weeks, days, largestUnit, relativeTo )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal-unbalancedurationrelative" + "number": "13.5", + "spec": "Temporal", + "text": "Units", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-units" + } + }, + "#sec-temporal-zoneddatetime": { + "current": { + "number": "1.2.10", + "spec": "Temporal", + "text": "Temporal.ZonedDateTime ( . . . )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal-zoneddatetime" } }, "#sec-temporal-zoneddatetime-abstract-ops": { "current": { "number": "6.5", - "spec": "Temporal proposal", - "text": "Abstract operations", + "spec": "Temporal", + "text": "Abstract Operations", "url": "https://tc39.es/proposal-temporal/#sec-temporal-zoneddatetime-abstract-ops" } }, "#sec-temporal-zoneddatetime-constructor": { "current": { "number": "6.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Temporal.ZonedDateTime Constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal-zoneddatetime-constructor" } @@ -3634,7 +4178,7 @@ "#sec-temporal-zoneddatetime-objects": { "current": { "number": "6", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime Objects", "url": "https://tc39.es/proposal-temporal/#sec-temporal-zoneddatetime-objects" } @@ -3642,7 +4186,7 @@ "#sec-temporal.calendar": { "current": { "number": "12.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar ( id )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar" } @@ -3650,7 +4194,7 @@ "#sec-temporal.calendar.from": { "current": { "number": "12.4.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.from ( calendarLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.from" } @@ -3658,23 +4202,23 @@ "#sec-temporal.calendar.prototype": { "current": { "number": "12.4.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype" } }, - "#sec-temporal.calendar.prototype-@@tostringtag": { + "#sec-temporal.calendar.prototype-%40%40tostringtag": { "current": { "number": "12.5.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype-%40%40tostringtag" } }, "#sec-temporal.calendar.prototype.constructor": { "current": { "number": "12.5.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.constructor" } @@ -3682,7 +4226,7 @@ "#sec-temporal.calendar.prototype.dateadd": { "current": { "number": "12.5.7", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.dateAdd ( date, duration [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.dateadd" } @@ -3690,7 +4234,7 @@ "#sec-temporal.calendar.prototype.datefromfields": { "current": { "number": "12.5.4", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.dateFromFields ( fields [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.datefromfields" } @@ -3698,111 +4242,111 @@ "#sec-temporal.calendar.prototype.dateuntil": { "current": { "number": "12.5.8", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.dateUntil ( one, two [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.dateuntil" } }, "#sec-temporal.calendar.prototype.day": { "current": { - "number": "12.5.12", - "spec": "Temporal proposal", + "number": "12.5.14", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.day ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.day" } }, "#sec-temporal.calendar.prototype.dayofweek": { "current": { - "number": "12.5.13", - "spec": "Temporal proposal", + "number": "12.5.15", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.dayOfWeek ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.dayofweek" } }, "#sec-temporal.calendar.prototype.dayofyear": { "current": { - "number": "12.5.14", - "spec": "Temporal proposal", + "number": "12.5.16", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.dayOfYear ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.dayofyear" } }, "#sec-temporal.calendar.prototype.daysinmonth": { "current": { - "number": "12.5.18", - "spec": "Temporal proposal", + "number": "12.5.20", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.daysInMonth ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.daysinmonth" } }, "#sec-temporal.calendar.prototype.daysinweek": { "current": { - "number": "12.5.17", - "spec": "Temporal proposal", + "number": "12.5.19", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.daysInWeek ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.daysinweek" } }, "#sec-temporal.calendar.prototype.daysinyear": { "current": { - "number": "12.5.19", - "spec": "Temporal proposal", + "number": "12.5.21", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.daysInYear ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.daysinyear" } }, "#sec-temporal.calendar.prototype.era": { "current": { - "number": "15.7.2.6", - "spec": "Temporal proposal", + "number": "12.5.9", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.era ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.era" } }, "#sec-temporal.calendar.prototype.erayear": { "current": { - "number": "15.7.2.7", - "spec": "Temporal proposal", + "number": "12.5.10", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.eraYear ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.erayear" } }, "#sec-temporal.calendar.prototype.fields": { "current": { - "number": "12.5.22", - "spec": "Temporal proposal", + "number": "12.5.24", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.fields ( fields )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.fields" } }, "#sec-temporal.calendar.prototype.inleapyear": { "current": { - "number": "12.5.21", - "spec": "Temporal proposal", + "number": "12.5.23", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.inLeapYear ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.inleapyear" } }, "#sec-temporal.calendar.prototype.mergefields": { "current": { - "number": "12.5.23", - "spec": "Temporal proposal", + "number": "12.5.25", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.mergeFields ( fields, additionalFields )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.mergefields" } }, "#sec-temporal.calendar.prototype.month": { "current": { - "number": "12.5.10", - "spec": "Temporal proposal", + "number": "12.5.12", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.month ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.month" } }, "#sec-temporal.calendar.prototype.monthcode": { "current": { - "number": "12.5.11", - "spec": "Temporal proposal", + "number": "12.5.13", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.monthCode ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.monthcode" } @@ -3810,47 +4354,47 @@ "#sec-temporal.calendar.prototype.monthdayfromfields": { "current": { "number": "12.5.6", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.monthDayFromFields ( fields [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.monthdayfromfields" } }, "#sec-temporal.calendar.prototype.monthsinyear": { "current": { - "number": "12.5.20", - "spec": "Temporal proposal", + "number": "12.5.22", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.monthsInYear ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.monthsinyear" } }, "#sec-temporal.calendar.prototype.tojson": { "current": { - "number": "12.5.25", - "spec": "Temporal proposal", + "number": "12.5.27", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.tojson" } }, "#sec-temporal.calendar.prototype.tostring": { "current": { - "number": "12.5.24", - "spec": "Temporal proposal", + "number": "12.5.26", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.toString ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.tostring" } }, "#sec-temporal.calendar.prototype.weekofyear": { "current": { - "number": "12.5.15", - "spec": "Temporal proposal", + "number": "12.5.17", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.weekOfYear ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.weekofyear" } }, "#sec-temporal.calendar.prototype.year": { "current": { - "number": "12.5.9", - "spec": "Temporal proposal", + "number": "12.5.11", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.year ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.year" } @@ -3858,15 +4402,15 @@ "#sec-temporal.calendar.prototype.yearmonthfromfields": { "current": { "number": "12.5.5", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.yearMonthFromFields ( fields [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.yearmonthfromfields" } }, "#sec-temporal.calendar.prototype.yearofweek": { "current": { - "number": "12.5.16", - "spec": "Temporal proposal", + "number": "12.5.18", + "spec": "Temporal", "text": "Temporal.Calendar.prototype.yearOfWeek ( temporalDateLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.yearofweek" } @@ -3874,7 +4418,7 @@ "#sec-temporal.duration": { "current": { "number": "7.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration ( [ years [ , months [ , weeks [ , days [ , hours [ , minutes [ , seconds [ , milliseconds [ , microseconds [ , nanoseconds ] ] ] ] ] ] ] ] ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration" } @@ -3882,7 +4426,7 @@ "#sec-temporal.duration.compare": { "current": { "number": "7.2.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.compare ( one, two [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.compare" } @@ -3890,7 +4434,7 @@ "#sec-temporal.duration.from": { "current": { "number": "7.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.from ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.from" } @@ -3898,23 +4442,23 @@ "#sec-temporal.duration.prototype": { "current": { "number": "7.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype" } }, - "#sec-temporal.duration.prototype-@@tostringtag": { + "#sec-temporal.duration.prototype-%40%40tostringtag": { "current": { "number": "7.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype-%40%40tostringtag" } }, "#sec-temporal.duration.prototype.abs": { "current": { "number": "7.3.17", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.abs ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.abs" } @@ -3922,15 +4466,15 @@ "#sec-temporal.duration.prototype.add": { "current": { "number": "7.3.18", - "spec": "Temporal proposal", - "text": "Temporal.Duration.prototype.add ( other [ , options ] )", + "spec": "Temporal", + "text": "Temporal.Duration.prototype.add ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.add" } }, "#sec-temporal.duration.prototype.constructor": { "current": { "number": "7.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.constructor" } @@ -3938,7 +4482,7 @@ "#sec-temporal.duration.prototype.negated": { "current": { "number": "7.3.16", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.negated ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.negated" } @@ -3946,7 +4490,7 @@ "#sec-temporal.duration.prototype.round": { "current": { "number": "7.3.20", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.round ( roundTo )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.round" } @@ -3954,15 +4498,15 @@ "#sec-temporal.duration.prototype.subtract": { "current": { "number": "7.3.19", - "spec": "Temporal proposal", - "text": "Temporal.Duration.prototype.subtract ( other [ , options ] )", + "spec": "Temporal", + "text": "Temporal.Duration.prototype.subtract ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.subtract" } }, "#sec-temporal.duration.prototype.tojson": { "current": { "number": "7.3.23", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.tojson" } @@ -3970,7 +4514,7 @@ "#sec-temporal.duration.prototype.tolocalestring": { "current": { "number": "7.3.24", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.tolocalestring" } @@ -3978,7 +4522,7 @@ "#sec-temporal.duration.prototype.tostring": { "current": { "number": "7.3.22", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.tostring" } @@ -3986,7 +4530,7 @@ "#sec-temporal.duration.prototype.total": { "current": { "number": "7.3.21", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.total ( totalOf )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.total" } @@ -3994,7 +4538,7 @@ "#sec-temporal.duration.prototype.valueof": { "current": { "number": "7.3.25", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.valueof" } @@ -4002,7 +4546,7 @@ "#sec-temporal.duration.prototype.with": { "current": { "number": "7.3.15", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Duration.prototype.with ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype.with" } @@ -4010,15 +4554,15 @@ "#sec-temporal.instant": { "current": { "number": "8.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant ( epochNanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant" } }, "#sec-temporal.instant.compare": { "current": { - "number": "8.2.7", - "spec": "Temporal proposal", + "number": "8.2.5", + "spec": "Temporal", "text": "Temporal.Instant.compare ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.compare" } @@ -4026,63 +4570,47 @@ "#sec-temporal.instant.from": { "current": { "number": "8.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant.from ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.from" } }, - "#sec-temporal.instant.fromepochmicroseconds": { - "current": { - "number": "8.2.5", - "spec": "Temporal proposal", - "text": "Temporal.Instant.fromEpochMicroseconds ( epochMicroseconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.fromepochmicroseconds" - } - }, "#sec-temporal.instant.fromepochmilliseconds": { "current": { - "number": "8.2.4", - "spec": "Temporal proposal", + "number": "8.2.3", + "spec": "Temporal", "text": "Temporal.Instant.fromEpochMilliseconds ( epochMilliseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.fromepochmilliseconds" } }, "#sec-temporal.instant.fromepochnanoseconds": { "current": { - "number": "8.2.6", - "spec": "Temporal proposal", + "number": "8.2.4", + "spec": "Temporal", "text": "Temporal.Instant.fromEpochNanoseconds ( epochNanoseconds )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.fromepochnanoseconds" } }, - "#sec-temporal.instant.fromepochseconds": { - "current": { - "number": "8.2.3", - "spec": "Temporal proposal", - "text": "Temporal.Instant.fromEpochSeconds ( epochSeconds )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.fromepochseconds" - } - }, "#sec-temporal.instant.prototype": { "current": { "number": "8.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype" } }, - "#sec-temporal.instant.prototype-@@tostringtag": { + "#sec-temporal.instant.prototype-%40%40tostringtag": { "current": { "number": "8.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype-%40%40tostringtag" } }, "#sec-temporal.instant.prototype.add": { "current": { - "number": "8.3.7", - "spec": "Temporal proposal", + "number": "8.3.5", + "spec": "Temporal", "text": "Temporal.Instant.prototype.add ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.add" } @@ -4090,95 +4618,87 @@ "#sec-temporal.instant.prototype.constructor": { "current": { "number": "8.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Instant.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.constructor" } }, "#sec-temporal.instant.prototype.equals": { "current": { - "number": "8.3.12", - "spec": "Temporal proposal", + "number": "8.3.10", + "spec": "Temporal", "text": "Temporal.Instant.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.equals" } }, "#sec-temporal.instant.prototype.round": { "current": { - "number": "8.3.11", - "spec": "Temporal proposal", + "number": "8.3.9", + "spec": "Temporal", "text": "Temporal.Instant.prototype.round ( roundTo )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.round" } }, "#sec-temporal.instant.prototype.since": { "current": { - "number": "8.3.10", - "spec": "Temporal proposal", + "number": "8.3.8", + "spec": "Temporal", "text": "Temporal.Instant.prototype.since ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.since" } }, "#sec-temporal.instant.prototype.subtract": { "current": { - "number": "8.3.8", - "spec": "Temporal proposal", + "number": "8.3.6", + "spec": "Temporal", "text": "Temporal.Instant.prototype.subtract ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.subtract" } }, "#sec-temporal.instant.prototype.tojson": { "current": { - "number": "8.3.15", - "spec": "Temporal proposal", + "number": "8.3.13", + "spec": "Temporal", "text": "Temporal.Instant.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.tojson" } }, "#sec-temporal.instant.prototype.tolocalestring": { "current": { - "number": "8.3.14", - "spec": "Temporal proposal", + "number": "8.3.12", + "spec": "Temporal", "text": "Temporal.Instant.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.tolocalestring" } }, "#sec-temporal.instant.prototype.tostring": { "current": { - "number": "8.3.13", - "spec": "Temporal proposal", + "number": "8.3.11", + "spec": "Temporal", "text": "Temporal.Instant.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.tostring" } }, - "#sec-temporal.instant.prototype.tozoneddatetime": { - "current": { - "number": "8.3.17", - "spec": "Temporal proposal", - "text": "Temporal.Instant.prototype.toZonedDateTime ( item )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.tozoneddatetime" - } - }, "#sec-temporal.instant.prototype.tozoneddatetimeiso": { "current": { - "number": "8.3.18", - "spec": "Temporal proposal", + "number": "8.3.15", + "spec": "Temporal", "text": "Temporal.Instant.prototype.toZonedDateTimeISO ( timeZone )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.tozoneddatetimeiso" } }, "#sec-temporal.instant.prototype.until": { "current": { - "number": "8.3.9", - "spec": "Temporal proposal", + "number": "8.3.7", + "spec": "Temporal", "text": "Temporal.Instant.prototype.until ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.until" } }, "#sec-temporal.instant.prototype.valueof": { "current": { - "number": "8.3.16", - "spec": "Temporal proposal", + "number": "8.3.14", + "spec": "Temporal", "text": "Temporal.Instant.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype.valueof" } @@ -4186,71 +4706,47 @@ "#sec-temporal.now.instant": { "current": { "number": "2.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.Now.instant ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.instant" } }, - "#sec-temporal.now.plaindate": { - "current": { - "number": "2.2.7", - "spec": "Temporal proposal", - "text": "Temporal.Now.plainDate ( calendarLike [ , temporalTimeZoneLike ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.plaindate" - } - }, "#sec-temporal.now.plaindateiso": { "current": { - "number": "2.2.8", - "spec": "Temporal proposal", + "number": "2.2.5", + "spec": "Temporal", "text": "Temporal.Now.plainDateISO ( [ temporalTimeZoneLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.plaindateiso" } }, - "#sec-temporal.now.plaindatetime": { - "current": { - "number": "2.2.3", - "spec": "Temporal proposal", - "text": "Temporal.Now.plainDateTime ( calendarLike [ , temporalTimeZoneLike ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.plaindatetime" - } - }, "#sec-temporal.now.plaindatetimeiso": { "current": { - "number": "2.2.4", - "spec": "Temporal proposal", + "number": "2.2.3", + "spec": "Temporal", "text": "Temporal.Now.plainDateTimeISO ( [ temporalTimeZoneLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.plaindatetimeiso" } }, "#sec-temporal.now.plaintimeiso": { "current": { - "number": "2.2.9", - "spec": "Temporal proposal", + "number": "2.2.6", + "spec": "Temporal", "text": "Temporal.Now.plainTimeISO ( [ temporalTimeZoneLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.plaintimeiso" } }, - "#sec-temporal.now.timezone": { + "#sec-temporal.now.timezoneid": { "current": { "number": "2.2.1", - "spec": "Temporal proposal", - "text": "Temporal.Now.timeZone ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.timezone" - } - }, - "#sec-temporal.now.zoneddatetime": { - "current": { - "number": "2.2.5", - "spec": "Temporal proposal", - "text": "Temporal.Now.zonedDateTime ( calendarLike [ , temporalTimeZoneLike ] )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.zoneddatetime" + "spec": "Temporal", + "text": "Temporal.Now.timeZoneId ( )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.timezoneid" } }, "#sec-temporal.now.zoneddatetimeiso": { "current": { - "number": "2.2.6", - "spec": "Temporal proposal", + "number": "2.2.4", + "spec": "Temporal", "text": "Temporal.Now.zonedDateTimeISO ( [ temporalTimeZoneLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.now.zoneddatetimeiso" } @@ -4258,7 +4754,7 @@ "#sec-temporal.plaindate": { "current": { "number": "3.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate ( isoYear, isoMonth, isoDay [ , calendarLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate" } @@ -4266,7 +4762,7 @@ "#sec-temporal.plaindate.compare": { "current": { "number": "3.2.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate.compare ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.compare" } @@ -4274,7 +4770,7 @@ "#sec-temporal.plaindate.from": { "current": { "number": "3.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate.from ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.from" } @@ -4282,23 +4778,23 @@ "#sec-temporal.plaindate.prototype": { "current": { "number": "3.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype" } }, - "#sec-temporal.plaindate.prototype-@@tostringtag": { + "#sec-temporal.plaindate.prototype-%40%40tostringtag": { "current": { "number": "3.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype-%40%40tostringtag" } }, "#sec-temporal.plaindate.prototype.add": { "current": { - "number": "3.3.20", - "spec": "Temporal proposal", + "number": "3.3.22", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.add ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.add" } @@ -4306,127 +4802,127 @@ "#sec-temporal.plaindate.prototype.constructor": { "current": { "number": "3.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.constructor" } }, "#sec-temporal.plaindate.prototype.equals": { "current": { - "number": "3.3.26", - "spec": "Temporal proposal", + "number": "3.3.28", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.equals" } }, "#sec-temporal.plaindate.prototype.getisofields": { "current": { - "number": "3.3.19", - "spec": "Temporal proposal", + "number": "3.3.21", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.getISOFields ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.getisofields" } }, "#sec-temporal.plaindate.prototype.since": { "current": { - "number": "3.3.25", - "spec": "Temporal proposal", + "number": "3.3.27", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.since ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.since" } }, "#sec-temporal.plaindate.prototype.subtract": { "current": { - "number": "3.3.21", - "spec": "Temporal proposal", + "number": "3.3.23", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.subtract ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.subtract" } }, "#sec-temporal.plaindate.prototype.tojson": { "current": { - "number": "3.3.31", - "spec": "Temporal proposal", + "number": "3.3.33", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.tojson" } }, "#sec-temporal.plaindate.prototype.tolocalestring": { "current": { - "number": "3.3.30", - "spec": "Temporal proposal", + "number": "3.3.32", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.tolocalestring" } }, "#sec-temporal.plaindate.prototype.toplaindatetime": { "current": { - "number": "3.3.27", - "spec": "Temporal proposal", + "number": "3.3.29", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toPlainDateTime ( [ temporalTime ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.toplaindatetime" } }, "#sec-temporal.plaindate.prototype.toplainmonthday": { "current": { - "number": "3.3.18", - "spec": "Temporal proposal", + "number": "3.3.20", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toPlainMonthDay ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.toplainmonthday" } }, "#sec-temporal.plaindate.prototype.toplainyearmonth": { "current": { - "number": "3.3.17", - "spec": "Temporal proposal", + "number": "3.3.19", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toPlainYearMonth ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.toplainyearmonth" } }, "#sec-temporal.plaindate.prototype.tostring": { "current": { - "number": "3.3.29", - "spec": "Temporal proposal", + "number": "3.3.31", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.tostring" } }, "#sec-temporal.plaindate.prototype.tozoneddatetime": { "current": { - "number": "3.3.28", - "spec": "Temporal proposal", + "number": "3.3.30", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toZonedDateTime ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.tozoneddatetime" } }, "#sec-temporal.plaindate.prototype.until": { "current": { - "number": "3.3.24", - "spec": "Temporal proposal", + "number": "3.3.26", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.until ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.until" } }, "#sec-temporal.plaindate.prototype.valueof": { "current": { - "number": "3.3.32", - "spec": "Temporal proposal", + "number": "3.3.34", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.valueof" } }, "#sec-temporal.plaindate.prototype.with": { "current": { - "number": "3.3.22", - "spec": "Temporal proposal", + "number": "3.3.24", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.with ( temporalDateLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.with" } }, "#sec-temporal.plaindate.prototype.withcalendar": { "current": { - "number": "3.3.23", - "spec": "Temporal proposal", + "number": "3.3.25", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.withCalendar ( calendarLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.withcalendar" } @@ -4434,7 +4930,7 @@ "#sec-temporal.plaindatetime": { "current": { "number": "5.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime ( isoYear, isoMonth, isoDay [ , hour [ , minute [ , second [ , millisecond [ , microsecond [ , nanosecond [ , calendarLike ] ] ] ] ] ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime" } @@ -4442,7 +4938,7 @@ "#sec-temporal.plaindatetime.compare": { "current": { "number": "5.2.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime.compare ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.compare" } @@ -4450,7 +4946,7 @@ "#sec-temporal.plaindatetime.from": { "current": { "number": "5.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime.from ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.from" } @@ -4458,23 +4954,23 @@ "#sec-temporal.plaindatetime.prototype": { "current": { "number": "5.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype" } }, - "#sec-temporal.plaindatetime.prototype-@@tostringtag": { + "#sec-temporal.plaindatetime.prototype-%40%40tostringtag": { "current": { "number": "5.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype-%40%40tostringtag" } }, "#sec-temporal.plaindatetime.prototype.add": { "current": { - "number": "5.3.27", - "spec": "Temporal proposal", + "number": "5.3.28", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.add ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.add" } @@ -4482,159 +4978,135 @@ "#sec-temporal.plaindatetime.prototype.constructor": { "current": { "number": "5.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.constructor" } }, "#sec-temporal.plaindatetime.prototype.equals": { "current": { - "number": "5.3.32", - "spec": "Temporal proposal", + "number": "5.3.33", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.equals" } }, "#sec-temporal.plaindatetime.prototype.getisofields": { "current": { - "number": "5.3.42", - "spec": "Temporal proposal", + "number": "5.3.41", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.getISOFields ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.getisofields" } }, "#sec-temporal.plaindatetime.prototype.round": { "current": { - "number": "5.3.31", - "spec": "Temporal proposal", + "number": "5.3.32", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.round ( roundTo )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.round" } }, "#sec-temporal.plaindatetime.prototype.since": { "current": { - "number": "5.3.30", - "spec": "Temporal proposal", + "number": "5.3.31", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.since ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.since" } }, "#sec-temporal.plaindatetime.prototype.subtract": { "current": { - "number": "5.3.28", - "spec": "Temporal proposal", + "number": "5.3.29", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.subtract ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.subtract" } }, "#sec-temporal.plaindatetime.prototype.tojson": { "current": { - "number": "5.3.35", - "spec": "Temporal proposal", + "number": "5.3.36", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.tojson" } }, "#sec-temporal.plaindatetime.prototype.tolocalestring": { "current": { - "number": "5.3.34", - "spec": "Temporal proposal", + "number": "5.3.35", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.tolocalestring" } }, "#sec-temporal.plaindatetime.prototype.toplaindate": { "current": { - "number": "5.3.38", - "spec": "Temporal proposal", + "number": "5.3.39", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toPlainDate ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.toplaindate" } }, - "#sec-temporal.plaindatetime.prototype.toplainmonthday": { - "current": { - "number": "5.3.40", - "spec": "Temporal proposal", - "text": "Temporal.PlainDateTime.prototype.toPlainMonthDay ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.toplainmonthday" - } - }, "#sec-temporal.plaindatetime.prototype.toplaintime": { "current": { - "number": "5.3.41", - "spec": "Temporal proposal", + "number": "5.3.40", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toPlainTime ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.toplaintime" } }, - "#sec-temporal.plaindatetime.prototype.toplainyearmonth": { - "current": { - "number": "5.3.39", - "spec": "Temporal proposal", - "text": "Temporal.PlainDateTime.prototype.toPlainYearMonth ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.toplainyearmonth" - } - }, "#sec-temporal.plaindatetime.prototype.tostring": { "current": { - "number": "5.3.33", - "spec": "Temporal proposal", + "number": "5.3.34", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.tostring" } }, "#sec-temporal.plaindatetime.prototype.tozoneddatetime": { "current": { - "number": "5.3.37", - "spec": "Temporal proposal", + "number": "5.3.38", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toZonedDateTime ( temporalTimeZoneLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.tozoneddatetime" } }, "#sec-temporal.plaindatetime.prototype.until": { "current": { - "number": "5.3.29", - "spec": "Temporal proposal", + "number": "5.3.30", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.until ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.until" } }, "#sec-temporal.plaindatetime.prototype.valueof": { "current": { - "number": "5.3.36", - "spec": "Temporal proposal", + "number": "5.3.37", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.valueof" } }, "#sec-temporal.plaindatetime.prototype.with": { "current": { - "number": "5.3.23", - "spec": "Temporal proposal", + "number": "5.3.25", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.with ( temporalDateTimeLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.with" } }, "#sec-temporal.plaindatetime.prototype.withcalendar": { "current": { - "number": "5.3.26", - "spec": "Temporal proposal", + "number": "5.3.27", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.withCalendar ( calendarLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.withcalendar" } }, - "#sec-temporal.plaindatetime.prototype.withplaindate": { - "current": { - "number": "5.3.25", - "spec": "Temporal proposal", - "text": "Temporal.PlainDateTime.prototype.withPlainDate ( plainDateLike )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.withplaindate" - } - }, "#sec-temporal.plaindatetime.prototype.withplaintime": { "current": { - "number": "5.3.24", - "spec": "Temporal proposal", + "number": "5.3.26", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.withPlainTime ( [ plainTimeLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype.withplaintime" } @@ -4642,7 +5114,7 @@ "#sec-temporal.plainmonthday": { "current": { "number": "10.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay ( isoMonth, isoDay [ , calendarLike [ , referenceISOYear ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday" } @@ -4650,7 +5122,7 @@ "#sec-temporal.plainmonthday.from": { "current": { "number": "10.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.from ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.from" } @@ -4658,23 +5130,23 @@ "#sec-temporal.plainmonthday.prototype": { "current": { "number": "10.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype" } }, - "#sec-temporal.plainmonthday.prototype-@@tostringtag": { + "#sec-temporal.plainmonthday.prototype-%40%40tostringtag": { "current": { "number": "10.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype-%40%40tostringtag" } }, "#sec-temporal.plainmonthday.prototype.constructor": { "current": { "number": "10.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.constructor" } @@ -4682,7 +5154,7 @@ "#sec-temporal.plainmonthday.prototype.equals": { "current": { "number": "10.3.7", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.equals" } @@ -4690,7 +5162,7 @@ "#sec-temporal.plainmonthday.prototype.getisofields": { "current": { "number": "10.3.13", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.getISOFields ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.getisofields" } @@ -4698,7 +5170,7 @@ "#sec-temporal.plainmonthday.prototype.tojson": { "current": { "number": "10.3.10", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.tojson" } @@ -4706,7 +5178,7 @@ "#sec-temporal.plainmonthday.prototype.tolocalestring": { "current": { "number": "10.3.9", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.tolocalestring" } @@ -4714,7 +5186,7 @@ "#sec-temporal.plainmonthday.prototype.toplaindate": { "current": { "number": "10.3.12", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.toPlainDate ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.toplaindate" } @@ -4722,7 +5194,7 @@ "#sec-temporal.plainmonthday.prototype.tostring": { "current": { "number": "10.3.8", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.tostring" } @@ -4730,7 +5202,7 @@ "#sec-temporal.plainmonthday.prototype.valueof": { "current": { "number": "10.3.11", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.valueof" } @@ -4738,7 +5210,7 @@ "#sec-temporal.plainmonthday.prototype.with": { "current": { "number": "10.3.6", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.with ( temporalMonthDayLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype.with" } @@ -4746,7 +5218,7 @@ "#sec-temporal.plaintime": { "current": { "number": "4.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime ( [ hour [ , minute [ , second [ , millisecond [ , microsecond [ , nanosecond ] ] ] ] ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime" } @@ -4754,7 +5226,7 @@ "#sec-temporal.plaintime.compare": { "current": { "number": "4.2.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime.compare ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.compare" } @@ -4762,7 +5234,7 @@ "#sec-temporal.plaintime.from": { "current": { "number": "4.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime.from ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.from" } @@ -4770,23 +5242,23 @@ "#sec-temporal.plaintime.prototype": { "current": { "number": "4.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype" } }, - "#sec-temporal.plaintime.prototype-@@tostringtag": { + "#sec-temporal.plaintime.prototype-%40%40tostringtag": { "current": { "number": "4.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype-%40%40tostringtag" } }, "#sec-temporal.plaintime.prototype.add": { "current": { - "number": "4.3.10", - "spec": "Temporal proposal", + "number": "4.3.9", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.add ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.add" } @@ -4794,111 +5266,95 @@ "#sec-temporal.plaintime.prototype.constructor": { "current": { "number": "4.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.constructor" } }, "#sec-temporal.plaintime.prototype.equals": { "current": { - "number": "4.3.16", - "spec": "Temporal proposal", + "number": "4.3.15", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.equals" } }, "#sec-temporal.plaintime.prototype.getisofields": { "current": { - "number": "4.3.19", - "spec": "Temporal proposal", + "number": "4.3.16", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.getISOFields ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.getisofields" } }, "#sec-temporal.plaintime.prototype.round": { "current": { - "number": "4.3.15", - "spec": "Temporal proposal", + "number": "4.3.14", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.round ( roundTo )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.round" } }, "#sec-temporal.plaintime.prototype.since": { "current": { - "number": "4.3.14", - "spec": "Temporal proposal", + "number": "4.3.13", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.since ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.since" } }, "#sec-temporal.plaintime.prototype.subtract": { "current": { - "number": "4.3.11", - "spec": "Temporal proposal", + "number": "4.3.10", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.subtract ( temporalDurationLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.subtract" } }, "#sec-temporal.plaintime.prototype.tojson": { "current": { - "number": "4.3.22", - "spec": "Temporal proposal", + "number": "4.3.19", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.tojson" } }, "#sec-temporal.plaintime.prototype.tolocalestring": { "current": { - "number": "4.3.21", - "spec": "Temporal proposal", + "number": "4.3.18", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.tolocalestring" } }, - "#sec-temporal.plaintime.prototype.toplaindatetime": { - "current": { - "number": "4.3.17", - "spec": "Temporal proposal", - "text": "Temporal.PlainTime.prototype.toPlainDateTime ( temporalDate )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.toplaindatetime" - } - }, "#sec-temporal.plaintime.prototype.tostring": { "current": { - "number": "4.3.20", - "spec": "Temporal proposal", + "number": "4.3.17", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.tostring" } }, - "#sec-temporal.plaintime.prototype.tozoneddatetime": { - "current": { - "number": "4.3.18", - "spec": "Temporal proposal", - "text": "Temporal.PlainTime.prototype.toZonedDateTime ( item )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.tozoneddatetime" - } - }, "#sec-temporal.plaintime.prototype.until": { "current": { - "number": "4.3.13", - "spec": "Temporal proposal", + "number": "4.3.12", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.until ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.until" } }, "#sec-temporal.plaintime.prototype.valueof": { "current": { - "number": "4.3.23", - "spec": "Temporal proposal", + "number": "4.3.20", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.valueof" } }, "#sec-temporal.plaintime.prototype.with": { "current": { - "number": "4.3.12", - "spec": "Temporal proposal", + "number": "4.3.11", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.with ( temporalTimeLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype.with" } @@ -4906,7 +5362,7 @@ "#sec-temporal.plainyearmonth": { "current": { "number": "9.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth ( isoYear, isoMonth [ , calendarLike [ , referenceISODay ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth" } @@ -4914,7 +5370,7 @@ "#sec-temporal.plainyearmonth.compare": { "current": { "number": "9.2.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.compare ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.compare" } @@ -4922,7 +5378,7 @@ "#sec-temporal.plainyearmonth.from": { "current": { "number": "9.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.from ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.from" } @@ -4930,23 +5386,23 @@ "#sec-temporal.plainyearmonth.prototype": { "current": { "number": "9.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype" } }, - "#sec-temporal.plainyearmonth.prototype-@@tostringtag": { + "#sec-temporal.plainyearmonth.prototype-%40%40tostringtag": { "current": { "number": "9.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype-%40%40tostringtag" } }, "#sec-temporal.plainyearmonth.prototype.add": { "current": { - "number": "9.3.12", - "spec": "Temporal proposal", + "number": "9.3.14", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.add ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.add" } @@ -4954,207 +5410,191 @@ "#sec-temporal.plainyearmonth.prototype.constructor": { "current": { "number": "9.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.constructor" } }, "#sec-temporal.plainyearmonth.prototype.equals": { "current": { - "number": "9.3.16", - "spec": "Temporal proposal", + "number": "9.3.18", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.equals" } }, "#sec-temporal.plainyearmonth.prototype.getisofields": { "current": { - "number": "9.3.22", - "spec": "Temporal proposal", + "number": "9.3.24", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.getISOFields ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.getisofields" } }, "#sec-temporal.plainyearmonth.prototype.since": { "current": { - "number": "9.3.15", - "spec": "Temporal proposal", + "number": "9.3.17", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.since ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.since" } }, "#sec-temporal.plainyearmonth.prototype.subtract": { "current": { - "number": "9.3.13", - "spec": "Temporal proposal", + "number": "9.3.15", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.subtract ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.subtract" } }, "#sec-temporal.plainyearmonth.prototype.tojson": { "current": { - "number": "9.3.19", - "spec": "Temporal proposal", + "number": "9.3.21", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.tojson" } }, "#sec-temporal.plainyearmonth.prototype.tolocalestring": { "current": { - "number": "9.3.18", - "spec": "Temporal proposal", + "number": "9.3.20", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.tolocalestring" } }, "#sec-temporal.plainyearmonth.prototype.toplaindate": { "current": { - "number": "9.3.21", - "spec": "Temporal proposal", + "number": "9.3.23", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.toPlainDate ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.toplaindate" } }, "#sec-temporal.plainyearmonth.prototype.tostring": { "current": { - "number": "9.3.17", - "spec": "Temporal proposal", + "number": "9.3.19", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.tostring" } }, "#sec-temporal.plainyearmonth.prototype.until": { "current": { - "number": "9.3.14", - "spec": "Temporal proposal", + "number": "9.3.16", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.until ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.until" } }, "#sec-temporal.plainyearmonth.prototype.valueof": { "current": { - "number": "9.3.20", - "spec": "Temporal proposal", + "number": "9.3.22", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.valueof" } }, "#sec-temporal.plainyearmonth.prototype.with": { "current": { - "number": "9.3.11", - "spec": "Temporal proposal", + "number": "9.3.13", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.with ( temporalYearMonthLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype.with" } }, "#sec-temporal.timezone": { "current": { - "number": "11.2.1", - "spec": "Temporal proposal", + "number": "11.1.1", + "spec": "Temporal", "text": "Temporal.TimeZone ( identifier )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone" } }, "#sec-temporal.timezone.from": { "current": { - "number": "11.3.2", - "spec": "Temporal proposal", + "number": "11.2.2", + "spec": "Temporal", "text": "Temporal.TimeZone.from ( item )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.from" } }, "#sec-temporal.timezone.prototype": { "current": { - "number": "11.3.1", - "spec": "Temporal proposal", + "number": "11.2.1", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype" } }, - "#sec-temporal.timezone.prototype-@@tostringtag": { + "#sec-temporal.timezone.prototype-%40%40tostringtag": { "current": { - "number": "11.4.2", - "spec": "Temporal proposal", + "number": "11.3.2", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype-%40%40tostringtag" } }, "#sec-temporal.timezone.prototype.constructor": { "current": { - "number": "11.4.1", - "spec": "Temporal proposal", + "number": "11.3.1", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.constructor" } }, "#sec-temporal.timezone.prototype.getinstantfor": { "current": { - "number": "11.4.7", - "spec": "Temporal proposal", + "number": "11.3.7", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.getInstantFor ( dateTime [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getinstantfor" } }, - "#sec-temporal.timezone.prototype.getnexttransition": { - "current": { - "number": "11.4.9", - "spec": "Temporal proposal", - "text": "Temporal.TimeZone.prototype.getNextTransition ( startingPoint )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getnexttransition" - } - }, "#sec-temporal.timezone.prototype.getoffsetnanosecondsfor": { "current": { - "number": "11.4.4", - "spec": "Temporal proposal", + "number": "11.3.4", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.getOffsetNanosecondsFor ( instant )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getoffsetnanosecondsfor" } }, "#sec-temporal.timezone.prototype.getoffsetstringfor": { "current": { - "number": "11.4.5", - "spec": "Temporal proposal", + "number": "11.3.5", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.getOffsetStringFor ( instant )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getoffsetstringfor" } }, "#sec-temporal.timezone.prototype.getplaindatetimefor": { "current": { - "number": "11.4.6", - "spec": "Temporal proposal", + "number": "11.3.6", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.getPlainDateTimeFor ( instant [ , calendarLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getplaindatetimefor" } }, "#sec-temporal.timezone.prototype.getpossibleinstantsfor": { "current": { - "number": "11.4.8", - "spec": "Temporal proposal", + "number": "11.3.8", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.getPossibleInstantsFor ( dateTime )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getpossibleinstantsfor" } }, - "#sec-temporal.timezone.prototype.getprevioustransition": { - "current": { - "number": "11.4.10", - "spec": "Temporal proposal", - "text": "Temporal.TimeZone.prototype.getPreviousTransition ( startingPoint )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.getprevioustransition" - } - }, "#sec-temporal.timezone.prototype.tojson": { "current": { - "number": "11.4.12", - "spec": "Temporal proposal", + "number": "11.3.10", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.tojson" } }, "#sec-temporal.timezone.prototype.tostring": { "current": { - "number": "11.4.11", - "spec": "Temporal proposal", + "number": "11.3.9", + "spec": "Temporal", "text": "Temporal.TimeZone.prototype.toString ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype.tostring" } @@ -5162,7 +5602,7 @@ "#sec-temporal.zoneddatetime": { "current": { "number": "6.1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime ( epochNanoseconds, timeZoneLike [ , calendarLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime" } @@ -5170,7 +5610,7 @@ "#sec-temporal.zoneddatetime.compare": { "current": { "number": "6.2.3", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.compare ( one, two )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.compare" } @@ -5178,7 +5618,7 @@ "#sec-temporal.zoneddatetime.from": { "current": { "number": "6.2.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.from ( item [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.from" } @@ -5186,23 +5626,23 @@ "#sec-temporal.zoneddatetime.prototype": { "current": { "number": "6.2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype" } }, - "#sec-temporal.zoneddatetime.prototype-@@tostringtag": { + "#sec-temporal.zoneddatetime.prototype-%40%40tostringtag": { "current": { "number": "6.3.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype[ @@toStringTag ]", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype-@@tostringtag" + "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype-%40%40tostringtag" } }, "#sec-temporal.zoneddatetime.prototype.add": { "current": { - "number": "6.3.36", - "spec": "Temporal proposal", + "number": "6.3.35", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.add ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.add" } @@ -5210,55 +5650,63 @@ "#sec-temporal.zoneddatetime.prototype.constructor": { "current": { "number": "6.3.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.constructor", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.constructor" } }, "#sec-temporal.zoneddatetime.prototype.equals": { "current": { - "number": "6.3.41", - "spec": "Temporal proposal", + "number": "6.3.40", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.equals ( other )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.equals" } }, "#sec-temporal.zoneddatetime.prototype.getisofields": { "current": { - "number": "6.3.53", - "spec": "Temporal proposal", + "number": "6.3.51", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.getISOFields ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.getisofields" } }, + "#sec-temporal.zoneddatetime.prototype.gettimezonetransition": { + "current": { + "number": "6.3.46", + "spec": "Temporal", + "text": "Temporal.ZonedDateTime.prototype.getTimeZoneTransition ( directionParam )", + "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.gettimezonetransition" + } + }, "#sec-temporal.zoneddatetime.prototype.round": { "current": { - "number": "6.3.40", - "spec": "Temporal proposal", + "number": "6.3.39", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.round ( roundTo )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.round" } }, "#sec-temporal.zoneddatetime.prototype.since": { "current": { - "number": "6.3.39", - "spec": "Temporal proposal", + "number": "6.3.38", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.since ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.since" } }, "#sec-temporal.zoneddatetime.prototype.startofday": { "current": { - "number": "6.3.46", - "spec": "Temporal proposal", + "number": "6.3.45", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.startOfDay ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.startofday" } }, "#sec-temporal.zoneddatetime.prototype.subtract": { "current": { - "number": "6.3.37", - "spec": "Temporal proposal", + "number": "6.3.36", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.subtract ( temporalDurationLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.subtract" } @@ -5266,23 +5714,23 @@ "#sec-temporal.zoneddatetime.prototype.toinstant": { "current": { "number": "6.3.47", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toInstant ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.toinstant" } }, "#sec-temporal.zoneddatetime.prototype.tojson": { "current": { - "number": "6.3.44", - "spec": "Temporal proposal", + "number": "6.3.43", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toJSON ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.tojson" } }, "#sec-temporal.zoneddatetime.prototype.tolocalestring": { "current": { - "number": "6.3.43", - "spec": "Temporal proposal", + "number": "6.3.42", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.tolocalestring" } @@ -5290,7 +5738,7 @@ "#sec-temporal.zoneddatetime.prototype.toplaindate": { "current": { "number": "6.3.48", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toPlainDate ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.toplaindate" } @@ -5298,55 +5746,39 @@ "#sec-temporal.zoneddatetime.prototype.toplaindatetime": { "current": { "number": "6.3.50", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toPlainDateTime ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.toplaindatetime" } }, - "#sec-temporal.zoneddatetime.prototype.toplainmonthday": { - "current": { - "number": "6.3.52", - "spec": "Temporal proposal", - "text": "Temporal.ZonedDateTime.prototype.toPlainMonthDay ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.toplainmonthday" - } - }, "#sec-temporal.zoneddatetime.prototype.toplaintime": { "current": { "number": "6.3.49", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toPlainTime ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.toplaintime" } }, - "#sec-temporal.zoneddatetime.prototype.toplainyearmonth": { - "current": { - "number": "6.3.51", - "spec": "Temporal proposal", - "text": "Temporal.ZonedDateTime.prototype.toPlainYearMonth ( )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.toplainyearmonth" - } - }, "#sec-temporal.zoneddatetime.prototype.tostring": { "current": { - "number": "6.3.42", - "spec": "Temporal proposal", + "number": "6.3.41", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toString ( [ options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.tostring" } }, "#sec-temporal.zoneddatetime.prototype.until": { "current": { - "number": "6.3.38", - "spec": "Temporal proposal", + "number": "6.3.37", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.until ( other [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.until" } }, "#sec-temporal.zoneddatetime.prototype.valueof": { "current": { - "number": "6.3.45", - "spec": "Temporal proposal", + "number": "6.3.44", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.valueOf ( )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.valueof" } @@ -5354,79 +5786,135 @@ "#sec-temporal.zoneddatetime.prototype.with": { "current": { "number": "6.3.31", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.with ( temporalZonedDateTimeLike [ , options ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.with" } }, "#sec-temporal.zoneddatetime.prototype.withcalendar": { "current": { - "number": "6.3.35", - "spec": "Temporal proposal", + "number": "6.3.34", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.withCalendar ( calendarLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.withcalendar" } }, - "#sec-temporal.zoneddatetime.prototype.withplaindate": { - "current": { - "number": "6.3.33", - "spec": "Temporal proposal", - "text": "Temporal.ZonedDateTime.prototype.withPlainDate ( plainDateLike )", - "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.withplaindate" - } - }, "#sec-temporal.zoneddatetime.prototype.withplaintime": { "current": { "number": "6.3.32", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.withPlainTime ( [ plainTimeLike ] )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.withplaintime" } }, "#sec-temporal.zoneddatetime.prototype.withtimezone": { "current": { - "number": "6.3.34", - "spec": "Temporal proposal", + "number": "6.3.33", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.withTimeZone ( timeZoneLike )", "url": "https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype.withtimezone" } }, - "#sec-time-zone-names": { + "#sec-time-zone-identifiers": { "current": { - "number": "11.1", - "spec": "Temporal proposal", + "number": "14.6.2", + "spec": "Temporal", + "text": "Time Zone Identifiers", + "url": "https://tc39.es/proposal-temporal/#sec-time-zone-identifiers" + } + }, + "#sec-time-zone-names-deleted": { + "current": { + "number": "15.3", + "spec": "Temporal", "text": "Time Zone Names", - "url": "https://tc39.es/proposal-temporal/#sec-time-zone-names" + "url": "https://tc39.es/proposal-temporal/#sec-time-zone-names-deleted" + } + }, + "#sec-time-zone-offset-strings": { + "current": { + "number": "14.6.4", + "spec": "Temporal", + "text": "Time Zone Offset String FormatFormats", + "url": "https://tc39.es/proposal-temporal/#sec-time-zone-offset-strings" + } + }, + "#sec-timestring": { + "current": { + "number": "14.6.7", + "spec": "Temporal", + "text": "TimeString ( tv )", + "url": "https://tc39.es/proposal-temporal/#sec-timestring" + } + }, + "#sec-timezoneestring": { + "current": { + "number": "14.6.8", + "spec": "Temporal", + "text": "TimeZoneString ( tv )", + "url": "https://tc39.es/proposal-temporal/#sec-timezoneestring" + } + }, + "#sec-todatetimeformattable": { + "current": { + "number": "15.9.10", + "spec": "Temporal", + "text": "ToDateTimeFormattable ( value )", + "url": "https://tc39.es/proposal-temporal/#sec-todatetimeformattable" } }, "#sec-tointegerifintegral": { "current": { - "number": "13.41", - "spec": "Temporal proposal", + "number": "13.50", + "spec": "Temporal", "text": "ToIntegerIfIntegral ( argument )", "url": "https://tc39.es/proposal-temporal/#sec-tointegerifintegral" } }, "#sec-tointegerwithtruncation": { "current": { - "number": "13.40", - "spec": "Temporal proposal", + "number": "13.49", + "spec": "Temporal", "text": "ToIntegerWithTruncation ( argument )", "url": "https://tc39.es/proposal-temporal/#sec-tointegerwithtruncation" } }, + "#sec-tolocaltime": { + "current": { + "number": "15.9.22", + "spec": "Temporal", + "text": "ToLocalTime ( epochNs, calendar, timeZoneIdentifier )", + "url": "https://tc39.es/proposal-temporal/#sec-tolocaltime" + } + }, "#sec-topositiveintegerwithtruncation": { "current": { - "number": "13.39", - "spec": "Temporal proposal", + "number": "13.48", + "spec": "Temporal", "text": "ToPositiveIntegerWithTruncation ( argument )", "url": "https://tc39.es/proposal-temporal/#sec-topositiveintegerwithtruncation" } }, + "#sec-use-of-iana-time-zone-database": { + "current": { + "number": "15.2", + "spec": "Temporal", + "text": "Use of the IANA Time Zone Database", + "url": "https://tc39.es/proposal-temporal/#sec-use-of-iana-time-zone-database" + } + }, + "#sec-utc-t": { + "current": { + "number": "14.6.6", + "spec": "Temporal", + "text": "UTC ( t )", + "url": "https://tc39.es/proposal-temporal/#sec-utc-t" + } + }, "#sec-validatetemporalroundingincrement": { "current": { - "number": "13.13", - "spec": "Temporal proposal", + "number": "13.18", + "spec": "Temporal", "text": "ValidateTemporalRoundingIncrement ( increment, dividend, inclusive )", "url": "https://tc39.es/proposal-temporal/#sec-validatetemporalroundingincrement" } @@ -5434,7 +5922,7 @@ "#sec-value-properties-of-the-temporal-now-object": { "current": { "number": "2.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Value Properties of the Temporal.Now Object", "url": "https://tc39.es/proposal-temporal/#sec-value-properties-of-the-temporal-now-object" } @@ -5442,7 +5930,7 @@ "#sec-value-properties-of-the-temporal-object": { "current": { "number": "1.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Value Properties of the Temporal Object", "url": "https://tc39.es/proposal-temporal/#sec-value-properties-of-the-temporal-object" } @@ -5450,361 +5938,161 @@ "#sec-year-week-record-specification-type": { "current": { "number": "14.2", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "The Year-Week Record Specification Type", "url": "https://tc39.es/proposal-temporal/#sec-year-week-record-specification-type" } }, - "#sup-availabletimezones": { + "#sec-zerotimeduration": { "current": { - "number": "15.2.3", - "spec": "Temporal proposal", - "text": "AvailableTimeZones ( )", - "url": "https://tc39.es/proposal-temporal/#sup-availabletimezones" + "number": "7.5.34", + "spec": "Temporal", + "text": "ZeroTimeDuration ( )", + "url": "https://tc39.es/proposal-temporal/#sec-zerotimeduration" } }, - "#sup-canonicalizetimezonename": { + "#sup-availablenamedtimezoneidentifiers": { "current": { - "number": "15.2.2", - "spec": "Temporal proposal", - "text": "CanonicalizeTimeZoneName ( timeZone )", - "url": "https://tc39.es/proposal-temporal/#sup-canonicalizetimezonename" + "number": "15.2.1", + "spec": "Temporal", + "text": "AvailableNamedTimeZoneIdentifiers ( )", + "url": "https://tc39.es/proposal-temporal/#sup-availablenamedtimezoneidentifiers" } }, "#sup-case-sensitivity-and-case-mapping": { "current": { "number": "15.1", - "spec": "Temporal proposal", + "spec": "Temporal", "text": "Case Sensitivity and Case Mapping", "url": "https://tc39.es/proposal-temporal/#sup-case-sensitivity-and-case-mapping" } }, - "#sup-isvalidtimezonename": { - "current": { - "number": "15.2.1", - "spec": "Temporal proposal", - "text": "IsValidTimeZoneName ( timeZone )", - "url": "https://tc39.es/proposal-temporal/#sup-isvalidtimezonename" - } - }, - "#sup-properties-of-the-temporal-calendar-prototype-object": { - "current": { - "number": "15.7.2", - "spec": "Temporal proposal", - "text": "Properties of the Temporal.Calendar Prototype Object", - "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-calendar-prototype-object" - } - }, "#sup-properties-of-the-temporal-duration-prototype-object": { "current": { - "number": "15.7.3", - "spec": "Temporal proposal", + "number": "15.12.1", + "spec": "Temporal", "text": "Properties of the Temporal.Duration Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-duration-prototype-object" } }, "#sup-properties-of-the-temporal-instant-prototype-object": { "current": { - "number": "15.7.4", - "spec": "Temporal proposal", + "number": "15.12.2", + "spec": "Temporal", "text": "Properties of the Temporal.Instant Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-instant-prototype-object" } }, "#sup-properties-of-the-temporal-plaindate-prototype-object": { "current": { - "number": "15.7.5", - "spec": "Temporal proposal", + "number": "15.12.3", + "spec": "Temporal", "text": "Properties of the Temporal.PlainDate Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-plaindate-prototype-object" } }, "#sup-properties-of-the-temporal-plaindatetime-prototype-object": { "current": { - "number": "15.7.6", - "spec": "Temporal proposal", + "number": "15.12.4", + "spec": "Temporal", "text": "Properties of the Temporal.PlainDateTime Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-plaindatetime-prototype-object" } }, "#sup-properties-of-the-temporal-plainmonthday-prototype-object": { "current": { - "number": "15.7.7", - "spec": "Temporal proposal", + "number": "15.12.5", + "spec": "Temporal", "text": "Properties of the Temporal.PlainMonthDay Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-plainmonthday-prototype-object" } }, "#sup-properties-of-the-temporal-plaintime-prototype-object": { "current": { - "number": "15.7.8", - "spec": "Temporal proposal", + "number": "15.12.6", + "spec": "Temporal", "text": "Properties of the Temporal.PlainTime Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-plaintime-prototype-object" } }, "#sup-properties-of-the-temporal-plainyearmonth-prototype-object": { "current": { - "number": "15.7.9", - "spec": "Temporal proposal", + "number": "15.12.7", + "spec": "Temporal", "text": "Properties of the Temporal.PlainYearMonth Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-plainyearmonth-prototype-object" } }, "#sup-properties-of-the-temporal-zoneddatetime-prototype-object": { "current": { - "number": "15.7.10", - "spec": "Temporal proposal", + "number": "15.12.8", + "spec": "Temporal", "text": "Properties of the Temporal.ZonedDateTime Prototype Object", "url": "https://tc39.es/proposal-temporal/#sup-properties-of-the-temporal-zoneddatetime-prototype-object" } }, - "#sup-temporal-calendar-abstract-ops": { - "current": { - "number": "15.7.1", - "spec": "Temporal proposal", - "text": "Abstract Operations for Temporal.Calendar Objects", - "url": "https://tc39.es/proposal-temporal/#sup-temporal-calendar-abstract-ops" - } - }, - "#sup-temporal-preparetemporalfields": { - "current": { - "number": "15.7.11.1", - "spec": "Temporal proposal", - "text": "PrepareTemporalFields ( fields, fieldNames, requiredFields )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal-preparetemporalfields" - } - }, - "#sup-temporal.calendar.prototype.dateadd": { - "current": { - "number": "15.7.2.4", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.dateAdd ( date, duration [ , options ] )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.dateadd" - } - }, - "#sup-temporal.calendar.prototype.datefromfields": { - "current": { - "number": "15.7.2.1", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.dateFromFields ( fields [ , options ] )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.datefromfields" - } - }, - "#sup-temporal.calendar.prototype.dateuntil": { - "current": { - "number": "15.7.2.5", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.dateUntil ( one, two [ , options ] )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.dateuntil" - } - }, - "#sup-temporal.calendar.prototype.day": { - "current": { - "number": "15.7.2.11", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.day ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.day" - } - }, - "#sup-temporal.calendar.prototype.dayofweek": { - "current": { - "number": "15.7.2.12", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.dayOfWeek ( dateOrDateTime )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.dayofweek" - } - }, - "#sup-temporal.calendar.prototype.dayofyear": { - "current": { - "number": "15.7.2.13", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.dayOfYear ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.dayofyear" - } - }, - "#sup-temporal.calendar.prototype.daysinmonth": { - "current": { - "number": "15.7.2.17", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.daysInMonth ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.daysinmonth" - } - }, - "#sup-temporal.calendar.prototype.daysinweek": { - "current": { - "number": "15.7.2.16", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.daysInWeek ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.daysinweek" - } - }, - "#sup-temporal.calendar.prototype.daysinyear": { - "current": { - "number": "15.7.2.18", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.daysInYear ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.daysinyear" - } - }, - "#sup-temporal.calendar.prototype.fields": { - "current": { - "number": "15.7.2.21", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.fields ( fields )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.fields" - } - }, - "#sup-temporal.calendar.prototype.inleapyear": { - "current": { - "number": "15.7.2.20", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.inLeapYear ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.inleapyear" - } - }, - "#sup-temporal.calendar.prototype.mergefields": { - "current": { - "number": "15.7.2.22", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.mergeFields ( fields, additionalFields )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.mergefields" - } - }, - "#sup-temporal.calendar.prototype.month": { - "current": { - "number": "15.7.2.9", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.month ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.month" - } - }, - "#sup-temporal.calendar.prototype.monthcode": { - "current": { - "number": "15.7.2.10", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.monthCode ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.monthcode" - } - }, - "#sup-temporal.calendar.prototype.monthdayfromfields": { - "current": { - "number": "15.7.2.3", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.monthDayFromFields ( fields [ , options ] )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.monthdayfromfields" - } - }, - "#sup-temporal.calendar.prototype.monthsinyear": { - "current": { - "number": "15.7.2.19", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.monthsInYear ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.monthsinyear" - } - }, - "#sup-temporal.calendar.prototype.weekofyear": { - "current": { - "number": "15.7.2.14", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.weekOfYear ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.weekofyear" - } - }, - "#sup-temporal.calendar.prototype.year": { - "current": { - "number": "15.7.2.8", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.year ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.year" - } - }, - "#sup-temporal.calendar.prototype.yearmonthfromfields": { - "current": { - "number": "15.7.2.2", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.yearMonthFromFields ( fields [ , options ] )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.yearmonthfromfields" - } - }, - "#sup-temporal.calendar.prototype.yearofweek": { - "current": { - "number": "15.7.2.15", - "spec": "Temporal proposal", - "text": "Temporal.Calendar.prototype.yearOfWeek ( temporalDateLike )", - "url": "https://tc39.es/proposal-temporal/#sup-temporal.calendar.prototype.yearofweek" - } - }, "#sup-temporal.duration.prototype.tolocalestring": { "current": { - "number": "15.7.3.1", - "spec": "Temporal proposal", + "number": "15.12.1.1", + "spec": "Temporal", "text": "Temporal.Duration.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.duration.prototype.tolocalestring" } }, "#sup-temporal.instant.prototype.tolocalestring": { "current": { - "number": "15.7.4.1", - "spec": "Temporal proposal", + "number": "15.12.2.1", + "spec": "Temporal", "text": "Temporal.Instant.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.instant.prototype.tolocalestring" } }, "#sup-temporal.plaindate.prototype.tolocalestring": { "current": { - "number": "15.7.5.1", - "spec": "Temporal proposal", + "number": "15.12.3.1", + "spec": "Temporal", "text": "Temporal.PlainDate.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.plaindate.prototype.tolocalestring" } }, "#sup-temporal.plaindatetime.prototype.tolocalestring": { "current": { - "number": "15.7.6.1", - "spec": "Temporal proposal", + "number": "15.12.4.1", + "spec": "Temporal", "text": "Temporal.PlainDateTime.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.plaindatetime.prototype.tolocalestring" } }, "#sup-temporal.plainmonthday.prototype.tolocalestring": { "current": { - "number": "15.7.7.1", - "spec": "Temporal proposal", + "number": "15.12.5.1", + "spec": "Temporal", "text": "Temporal.PlainMonthDay.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.plainmonthday.prototype.tolocalestring" } }, "#sup-temporal.plaintime.prototype.tolocalestring": { "current": { - "number": "15.7.8.1", - "spec": "Temporal proposal", + "number": "15.12.6.1", + "spec": "Temporal", "text": "Temporal.PlainTime.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.plaintime.prototype.tolocalestring" } }, "#sup-temporal.plainyearmonth.prototype.tolocalestring": { "current": { - "number": "15.7.9.1", - "spec": "Temporal proposal", + "number": "15.12.7.1", + "spec": "Temporal", "text": "Temporal.PlainYearMonth.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.plainyearmonth.prototype.tolocalestring" } }, "#sup-temporal.zoneddatetime.prototype.tolocalestring": { "current": { - "number": "15.7.10.1", - "spec": "Temporal proposal", + "number": "15.12.8.1", + "spec": "Temporal", "text": "Temporal.ZonedDateTime.prototype.toLocaleString ( [ locales [ , options ] ] )", "url": "https://tc39.es/proposal-temporal/#sup-temporal.zoneddatetime.prototype.tolocalestring" } - }, - "#sup-time-zone-names": { - "current": { - "number": "15.2", - "spec": "Temporal proposal", - "text": "Time Zone Names", - "url": "https://tc39.es/proposal-temporal/#sup-time-zone-names" - } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-testutils.json b/bikeshed/spec-data/readonly/headings/headings-testutils.json index 220d82ffc2..730fa97ccf 100644 --- a/bikeshed/spec-data/readonly/headings/headings-testutils.json +++ b/bikeshed/spec-data/readonly/headings/headings-testutils.json @@ -95,14 +95,6 @@ "url": "https://testutils.spec.whatwg.org/#references" } }, - "#subtitle": { - "current": { - "number": "", - "spec": "Test Utils", - "text": "Living Standard — Last Updated 17 October 2022", - "url": "https://testutils.spec.whatwg.org/#subtitle" - } - }, "#the-testutils-namespace": { "current": { "number": "4", diff --git a/bikeshed/spec-data/readonly/headings/headings-text-detection-api.json b/bikeshed/spec-data/readonly/headings/headings-text-detection-api.json index e9074ae4ed..3fcd9da6d0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-text-detection-api.json +++ b/bikeshed/spec-data/readonly/headings/headings-text-detection-api.json @@ -167,14 +167,6 @@ "url": "https://wicg.github.io/shape-detection-api/text.html#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Accelerated Text Detection in Images", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/shape-detection-api/text.html#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-topics.json b/bikeshed/spec-data/readonly/headings/headings-topics.json new file mode 100644 index 0000000000..0cf4cff92b --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-topics.json @@ -0,0 +1,314 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Abstract", + "url": "https://patcg-individual-drafts.github.io/topics/#abstract" + } + }, + "#append-or-modify-a-request-sec-browsing-topics-header-header": { + "current": { + "number": "15.8", + "spec": "Topics API", + "text": "Append or modify a request Sec-Browsing-Topics header", + "url": "https://patcg-individual-drafts.github.io/topics/#append-or-modify-a-request-sec-browsing-topics-header-header" + } + }, + "#browsing-topic-dictionary-header": { + "current": { + "number": "4", + "spec": "Topics API", + "text": "BrowsingTopic dictionary", + "url": "https://patcg-individual-drafts.github.io/topics/#browsing-topic-dictionary-header" + } + }, + "#browsing-topics-attribute-in-request-init-header": { + "current": { + "number": "15.3", + "spec": "Topics API", + "text": "browsingTopics attribute in RequestInit", + "url": "https://patcg-individual-drafts.github.io/topics/#browsing-topics-attribute-in-request-init-header" + } + }, + "#browsing-topics-content-attribute-for-iframe-element-header": { + "current": { + "number": "15.2", + "spec": "Topics API", + "text": "browsingtopics content attribute for HTMLIframeElement", + "url": "https://patcg-individual-drafts.github.io/topics/#browsing-topics-content-attribute-for-iframe-element-header" + } + }, + "#collect-page-topics-calculation-input-data-header": { + "current": { + "number": "7", + "spec": "Topics API", + "text": "Collect page topics calculation input data", + "url": "https://patcg-individual-drafts.github.io/topics/#collect-page-topics-calculation-input-data-header" + } + }, + "#collect-topics-caller-domain-header": { + "current": { + "number": "8", + "spec": "Topics API", + "text": "Collect topics caller domain", + "url": "https://patcg-individual-drafts.github.io/topics/#collect-topics-caller-domain-header" + } + }, + "#derive-top-5-topics-header": { + "current": { + "number": "9", + "spec": "Topics API", + "text": "Derive top 5 topics", + "url": "https://patcg-individual-drafts.github.io/topics/#derive-top-5-topics-header" + } + }, + "#determine-topics-calculation-input-data-header": { + "current": { + "number": "6", + "spec": "Topics API", + "text": "Determine topics calculation input data", + "url": "https://patcg-individual-drafts.github.io/topics/#determine-topics-calculation-input-data-header" + } + }, + "#document-id-header": { + "current": { + "number": "5", + "spec": "Topics API", + "text": "document ID", + "url": "https://patcg-individual-drafts.github.io/topics/#document-id-header" + } + }, + "#epochs-for-caller-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "11. Epochs for caller", + "url": "https://patcg-individual-drafts.github.io/topics/#epochs-for-caller-header" + } + }, + "#fetch-and-iframe-integration-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "15. fetch() and iframe integration", + "url": "https://patcg-individual-drafts.github.io/topics/#fetch-and-iframe-integration-header" + } + }, + "#get-the-number-of-distinct-versions-in-epochs-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "12. Get the number of distinct versions in epochs", + "url": "https://patcg-individual-drafts.github.io/topics/#get-the-number-of-distinct-versions-in-epochs-header" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Topics API", + "text": "IDL Index", + "url": "https://patcg-individual-drafts.github.io/topics/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Index", + "url": "https://patcg-individual-drafts.github.io/topics/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Terms defined by reference", + "url": "https://patcg-individual-drafts.github.io/topics/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Terms defined by this specification", + "url": "https://patcg-individual-drafts.github.io/topics/#index-defined-here" + } + }, + "#introduction-header": { + "current": { + "number": "1", + "spec": "Topics API", + "text": "Introduction", + "url": "https://patcg-individual-drafts.github.io/topics/#introduction-header" + } + }, + "#modification-to-create-navigation-params-by-fetching-steps-header": { + "current": { + "number": "15.5", + "spec": "Topics API", + "text": "Modification to \"create navigation params by fetching\" steps", + "url": "https://patcg-individual-drafts.github.io/topics/#modification-to-create-navigation-params-by-fetching-steps-header" + } + }, + "#modification-to-http-fetch-steps-header": { + "current": { + "number": "15.10", + "spec": "Topics API", + "text": "Modification to HTTP fetch steps", + "url": "https://patcg-individual-drafts.github.io/topics/#modification-to-http-fetch-steps-header" + } + }, + "#modification-to-http-network-or-cache-fetch-algorithm-header": { + "current": { + "number": "15.7", + "spec": "Topics API", + "text": "Modification to HTTP-network-or-cache fetch algorithm", + "url": "https://patcg-individual-drafts.github.io/topics/#modification-to-http-network-or-cache-fetch-algorithm-header" + } + }, + "#modification-to-request-constructor-steps-header": { + "current": { + "number": "15.4", + "spec": "Topics API", + "text": "Modification to request constructor steps", + "url": "https://patcg-individual-drafts.github.io/topics/#modification-to-request-constructor-steps-header" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Normative References", + "url": "https://patcg-individual-drafts.github.io/topics/#normative" + } + }, + "#periodically-calculate-user-topics-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "10. Periodically calculate user topics", + "url": "https://patcg-individual-drafts.github.io/topics/#periodically-calculate-user-topics-header" + } + }, + "#permissions-policy-integration-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "16. Permissions policy integration", + "url": "https://patcg-individual-drafts.github.io/topics/#permissions-policy-integration-header" + } + }, + "#privacy-considerations-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "17. Privacy considerations", + "url": "https://patcg-individual-drafts.github.io/topics/#privacy-considerations-header" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Topics API", + "text": "References", + "url": "https://patcg-individual-drafts.github.io/topics/#references" + } + }, + "#send-browsing-topics-header-boolean-associated-with-request-header": { + "current": { + "number": "15.1", + "spec": "Topics API", + "text": "send browsing topics header boolean associated with Request", + "url": "https://patcg-individual-drafts.github.io/topics/#send-browsing-topics-header-boolean-associated-with-request-header" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Status of this document", + "url": "https://patcg-individual-drafts.github.io/topics/#sotd" + } + }, + "#terminology-and-types-header": { + "current": { + "number": "2", + "spec": "Topics API", + "text": "Terminology and types", + "url": "https://patcg-individual-drafts.github.io/topics/#terminology-and-types-header" + } + }, + "#the-javascript-api-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "14. The JavaScript API", + "url": "https://patcg-individual-drafts.github.io/topics/#the-javascript-api-header" + } + }, + "#the-observe-browsing-topics-http-response-header-header": { + "current": { + "number": "15.9", + "spec": "Topics API", + "text": "The `Observe-Browsing-Topics` HTTP response header", + "url": "https://patcg-individual-drafts.github.io/topics/#the-observe-browsing-topics-http-response-header-header" + } + }, + "#the-sec-browsing-topics-http-request-header-header": { + "current": { + "number": "15.6", + "spec": "Topics API", + "text": "The `Sec-Browsing-Topics` HTTP request header", + "url": "https://patcg-individual-drafts.github.io/topics/#the-sec-browsing-topics-http-request-header-header" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Topics API", + "url": "https://patcg-individual-drafts.github.io/topics/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Table of Contents", + "url": "https://patcg-individual-drafts.github.io/topics/#toc" + } + }, + "#topics-for-caller-header": { + "current": { + "number": "", + "spec": "Topics API", + "text": "13. Topics for caller", + "url": "https://patcg-individual-drafts.github.io/topics/#topics-for-caller-header" + } + }, + "#user-agent-associated-state-header": { + "current": { + "number": "3", + "spec": "Topics API", + "text": "User agent associated state", + "url": "https://patcg-individual-drafts.github.io/topics/#user-agent-associated-state-header" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Conformance", + "url": "https://patcg-individual-drafts.github.io/topics/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Topics API", + "text": "Document conventions", + "url": "https://patcg-individual-drafts.github.io/topics/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-tracking-dnt.json b/bikeshed/spec-data/readonly/headings/headings-tracking-dnt.json index 2f58609d1b..b4fcd9e056 100644 --- a/bikeshed/spec-data/readonly/headings/headings-tracking-dnt.json +++ b/bikeshed/spec-data/readonly/headings/headings-tracking-dnt.json @@ -5,26 +5,14 @@ "spec": "DNT", "text": "Under Construction (!)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-!" - }, - "snapshot": { - "number": "7.2.2", - "spec": "DNT", - "text": "Under Construction (!)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-!" } }, - "#TSV-?": { + "#TSV-%3F": { "current": { "number": "7.2.3", "spec": "DNT", "text": "Dynamic (?)", - "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-?" - }, - "snapshot": { - "number": "7.2.3", - "spec": "DNT", - "text": "Dynamic (?)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-?" + "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-%3F" } }, "#TSV-C": { @@ -33,12 +21,6 @@ "spec": "DNT", "text": "Consent (C)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-C" - }, - "snapshot": { - "number": "7.2.7", - "spec": "DNT", - "text": "Consent (C)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-C" } }, "#TSV-D": { @@ -47,12 +29,6 @@ "spec": "DNT", "text": "Disregarding (D)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-D" - }, - "snapshot": { - "number": "7.2.9", - "spec": "DNT", - "text": "Disregarding (D)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-D" } }, "#TSV-G": { @@ -61,12 +37,6 @@ "spec": "DNT", "text": "Gateway (G)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-G" - }, - "snapshot": { - "number": "7.2.4", - "spec": "DNT", - "text": "Gateway (G)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-G" } }, "#TSV-N": { @@ -75,12 +45,6 @@ "spec": "DNT", "text": "Not Tracking (N)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-N" - }, - "snapshot": { - "number": "7.2.5", - "spec": "DNT", - "text": "Not Tracking (N)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-N" } }, "#TSV-P": { @@ -89,12 +53,6 @@ "spec": "DNT", "text": "Potential Consent (P)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-P" - }, - "snapshot": { - "number": "7.2.8", - "spec": "DNT", - "text": "Potential Consent (P)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-P" } }, "#TSV-T": { @@ -103,12 +61,6 @@ "spec": "DNT", "text": "Tracking (T)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-T" - }, - "snapshot": { - "number": "7.2.6", - "spec": "DNT", - "text": "Tracking (T)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-T" } }, "#TSV-U": { @@ -117,12 +69,6 @@ "spec": "DNT", "text": "Updated (U)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-U" - }, - "snapshot": { - "number": "7.2.10", - "spec": "DNT", - "text": "Updated (U)", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-U" } }, "#TSV-defn": { @@ -131,12 +77,6 @@ "spec": "DNT", "text": "Definition", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV-defn" - }, - "snapshot": { - "number": "7.2.1", - "spec": "DNT", - "text": "Definition", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV-defn" } }, "#TSV.extension": { @@ -145,12 +85,6 @@ "spec": "DNT", "text": "Extensions to the Tracking Status Value", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#TSV.extension" - }, - "snapshot": { - "number": "7.2.11", - "spec": "DNT", - "text": "Extensions to the Tracking Status Value", - "url": "https://www.w3.org/TR/tracking-dnt/#TSV.extension" } }, "#Tk-header-defn": { @@ -159,12 +93,6 @@ "spec": "DNT", "text": "Definition", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#Tk-header-defn" - }, - "snapshot": { - "number": "7.3.1", - "spec": "DNT", - "text": "Definition", - "url": "https://www.w3.org/TR/tracking-dnt/#Tk-header-defn" } }, "#acks": { @@ -173,12 +101,6 @@ "spec": "DNT", "text": "Acknowledgements", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#acks" - }, - "snapshot": { - "number": "A", - "spec": "DNT", - "text": "Acknowledgements", - "url": "https://www.w3.org/TR/tracking-dnt/#acks" } }, "#changes": { @@ -187,12 +109,6 @@ "spec": "DNT", "text": "Changes", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#changes" - }, - "snapshot": { - "number": "C", - "spec": "DNT", - "text": "Changes", - "url": "https://www.w3.org/TR/tracking-dnt/#changes" } }, "#changes-CR1": { @@ -201,12 +117,6 @@ "spec": "DNT", "text": "Since First CR", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#changes-CR1" - }, - "snapshot": { - "number": "C.2", - "spec": "DNT", - "text": "Since First CR", - "url": "https://www.w3.org/TR/tracking-dnt/#changes-CR1" } }, "#changes-CR2": { @@ -215,12 +125,6 @@ "spec": "DNT", "text": "Since Second CR", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#changes-CR2" - }, - "snapshot": { - "number": "C.1", - "spec": "DNT", - "text": "Since Second CR", - "url": "https://www.w3.org/TR/tracking-dnt/#changes-CR2" } }, "#determining": { @@ -229,12 +133,6 @@ "spec": "DNT", "text": "Determining User Preference", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#determining" - }, - "snapshot": { - "number": "4", - "spec": "DNT", - "text": "Determining User Preference", - "url": "https://www.w3.org/TR/tracking-dnt/#determining" } }, "#dnt-extensions": { @@ -243,12 +141,6 @@ "spec": "DNT", "text": "Extensions to the DNT Field Value", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#dnt-extensions" - }, - "snapshot": { - "number": "5.2.1", - "spec": "DNT", - "text": "Extensions to the DNT Field Value", - "url": "https://www.w3.org/TR/tracking-dnt/#dnt-extensions" } }, "#dnt-header-field": { @@ -257,12 +149,6 @@ "spec": "DNT", "text": "DNT Header Field for HTTP Requests", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#dnt-header-field" - }, - "snapshot": { - "number": "5.2", - "spec": "DNT", - "text": "DNT Header Field for HTTP Requests", - "url": "https://www.w3.org/TR/tracking-dnt/#dnt-header-field" } }, "#exception-checking": { @@ -271,12 +157,6 @@ "spec": "DNT", "text": "Checking for an Exception", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-checking" - }, - "snapshot": { - "number": "6.4", - "spec": "DNT", - "text": "Checking for an Exception", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-checking" } }, "#exception-granting": { @@ -285,12 +165,6 @@ "spec": "DNT", "text": "Granting an Exception", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-granting" - }, - "snapshot": { - "number": "6.3", - "spec": "DNT", - "text": "Granting an Exception", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-granting" } }, "#exception-javascript-api": { @@ -299,12 +173,6 @@ "spec": "DNT", "text": "Client-side Scripting API", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-javascript-api" - }, - "snapshot": { - "number": "6.6", - "spec": "DNT", - "text": "Client-side Scripting API", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-javascript-api" } }, "#exception-javascript-api-cancel": { @@ -313,12 +181,6 @@ "spec": "DNT", "text": "API to Remove a Tracking Exception", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-javascript-api-cancel" - }, - "snapshot": { - "number": "6.6.2", - "spec": "DNT", - "text": "API to Remove a Tracking Exception", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-javascript-api-cancel" } }, "#exception-javascript-api-confirm": { @@ -327,12 +189,6 @@ "spec": "DNT", "text": "API to Confirm a Tracking Exception", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-javascript-api-confirm" - }, - "snapshot": { - "number": "6.6.3", - "spec": "DNT", - "text": "API to Confirm a Tracking Exception", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-javascript-api-confirm" } }, "#exception-javascript-api-store": { @@ -341,12 +197,6 @@ "spec": "DNT", "text": "API to Store a Tracking Exception", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-javascript-api-store" - }, - "snapshot": { - "number": "6.6.1", - "spec": "DNT", - "text": "API to Store a Tracking Exception", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-javascript-api-store" } }, "#exception-management": { @@ -355,12 +205,6 @@ "spec": "DNT", "text": "User Agent Management of Exceptions", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-management" - }, - "snapshot": { - "number": "6.7", - "spec": "DNT", - "text": "User Agent Management of Exceptions", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-management" } }, "#exception-overview": { @@ -369,12 +213,6 @@ "spec": "DNT", "text": "Overview", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-overview" - }, - "snapshot": { - "number": "6.1", - "spec": "DNT", - "text": "Overview", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-overview" } }, "#exception-revoking": { @@ -383,12 +221,6 @@ "spec": "DNT", "text": "Revoking an Exception", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-revoking" - }, - "snapshot": { - "number": "6.5", - "spec": "DNT", - "text": "Revoking an Exception", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-revoking" } }, "#exception-scope": { @@ -397,12 +229,6 @@ "spec": "DNT", "text": "Site-specific or Web-wide", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exception-scope" - }, - "snapshot": { - "number": "6.2", - "spec": "DNT", - "text": "Site-specific or Web-wide", - "url": "https://www.w3.org/TR/tracking-dnt/#exception-scope" } }, "#exceptions": { @@ -411,12 +237,6 @@ "spec": "DNT", "text": "User-Granted Exceptions", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#exceptions" - }, - "snapshot": { - "number": "6", - "spec": "DNT", - "text": "User-Granted Exceptions", - "url": "https://www.w3.org/TR/tracking-dnt/#exceptions" } }, "#expressing": { @@ -425,12 +245,6 @@ "spec": "DNT", "text": "Expressing a Tracking Preference", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#expressing" - }, - "snapshot": { - "number": "5", - "spec": "DNT", - "text": "Expressing a Tracking Preference", - "url": "https://www.w3.org/TR/tracking-dnt/#expressing" } }, "#expression-format": { @@ -439,12 +253,6 @@ "spec": "DNT", "text": "Expression Format", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#expression-format" - }, - "snapshot": { - "number": "5.1", - "spec": "DNT", - "text": "Expression Format", - "url": "https://www.w3.org/TR/tracking-dnt/#expression-format" } }, "#informative-references": { @@ -453,12 +261,6 @@ "spec": "DNT", "text": "Informative references", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#informative-references" - }, - "snapshot": { - "number": "D.2", - "spec": "DNT", - "text": "Informative references", - "url": "https://www.w3.org/TR/tracking-dnt/#informative-references" } }, "#interactive-status-change": { @@ -467,12 +269,6 @@ "spec": "DNT", "text": "Indicating an Interactive Status Change", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#interactive-status-change" - }, - "snapshot": { - "number": "7.3.3", - "spec": "DNT", - "text": "Indicating an Interactive Status Change", - "url": "https://www.w3.org/TR/tracking-dnt/#interactive-status-change" } }, "#introduction": { @@ -481,12 +277,6 @@ "spec": "DNT", "text": "Introduction", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#introduction" - }, - "snapshot": { - "number": "1", - "spec": "DNT", - "text": "Introduction", - "url": "https://www.w3.org/TR/tracking-dnt/#introduction" } }, "#js-dom": { @@ -495,12 +285,6 @@ "spec": "DNT", "text": "JavaScript Property to Detect Preference", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#js-dom" - }, - "snapshot": { - "number": "5.3", - "spec": "DNT", - "text": "JavaScript Property to Detect Preference", - "url": "https://www.w3.org/TR/tracking-dnt/#js-dom" } }, "#normative-references": { @@ -509,12 +293,6 @@ "spec": "DNT", "text": "Normative references", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#normative-references" - }, - "snapshot": { - "number": "D.1", - "spec": "DNT", - "text": "Normative references", - "url": "https://www.w3.org/TR/tracking-dnt/#normative-references" } }, "#notation": { @@ -523,12 +301,6 @@ "spec": "DNT", "text": "Formal Syntax", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#notation" - }, - "snapshot": { - "number": "3.2", - "spec": "DNT", - "text": "Formal Syntax", - "url": "https://www.w3.org/TR/tracking-dnt/#notation" } }, "#notational": { @@ -537,12 +309,6 @@ "spec": "DNT", "text": "Notational Conventions", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#notational" - }, - "snapshot": { - "number": "3", - "spec": "DNT", - "text": "Notational Conventions", - "url": "https://www.w3.org/TR/tracking-dnt/#notational" } }, "#other-protocols": { @@ -551,12 +317,6 @@ "spec": "DNT", "text": "Tracking Preference Expressed in Other Protocols", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#other-protocols" - }, - "snapshot": { - "number": "5.4", - "spec": "DNT", - "text": "Tracking Preference Expressed in Other Protocols", - "url": "https://www.w3.org/TR/tracking-dnt/#other-protocols" } }, "#privacy": { @@ -565,12 +325,6 @@ "spec": "DNT", "text": "10. Privacy Considerations", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#privacy" - }, - "snapshot": { - "number": "", - "spec": "DNT", - "text": "10. Privacy Considerations", - "url": "https://www.w3.org/TR/tracking-dnt/#privacy" } }, "#privacy.fingerprinting": { @@ -579,12 +333,6 @@ "spec": "DNT", "text": "Fingerprinting", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#privacy.fingerprinting" - }, - "snapshot": { - "number": "10.2", - "spec": "DNT", - "text": "Fingerprinting", - "url": "https://www.w3.org/TR/tracking-dnt/#privacy.fingerprinting" } }, "#privacy.history": { @@ -593,12 +341,6 @@ "spec": "DNT", "text": "Stored Exceptions are Stored History", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#privacy.history" - }, - "snapshot": { - "number": "10.3", - "spec": "DNT", - "text": "Stored Exceptions are Stored History", - "url": "https://www.w3.org/TR/tracking-dnt/#privacy.history" } }, "#privacy.not-preconfigured": { @@ -607,12 +349,6 @@ "spec": "DNT", "text": "Why DNT:1 is Not Preconfigured by Default", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#privacy.not-preconfigured" - }, - "snapshot": { - "number": "10.1", - "spec": "DNT", - "text": "Why DNT:1 is Not Preconfigured by Default", - "url": "https://www.w3.org/TR/tracking-dnt/#privacy.not-preconfigured" } }, "#references": { @@ -621,12 +357,6 @@ "spec": "DNT", "text": "References", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#references" - }, - "snapshot": { - "number": "D", - "spec": "DNT", - "text": "References", - "url": "https://www.w3.org/TR/tracking-dnt/#references" } }, "#referring-status-id": { @@ -635,12 +365,6 @@ "spec": "DNT", "text": "Referring to a Request-specific Tracking Status Resource", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#referring-status-id" - }, - "snapshot": { - "number": "7.3.2", - "spec": "DNT", - "text": "Referring to a Request-specific Tracking Status Resource", - "url": "https://www.w3.org/TR/tracking-dnt/#referring-status-id" } }, "#reg.DNT": { @@ -649,12 +373,6 @@ "spec": "DNT", "text": "Registration of DNT Header Field", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#reg.DNT" - }, - "snapshot": { - "number": "B.2", - "spec": "DNT", - "text": "Registration of DNT Header Field", - "url": "https://www.w3.org/TR/tracking-dnt/#reg.DNT" } }, "#reg.Tk": { @@ -663,12 +381,6 @@ "spec": "DNT", "text": "Registration of Tk Header Field", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#reg.Tk" - }, - "snapshot": { - "number": "B.3", - "spec": "DNT", - "text": "Registration of Tk Header Field", - "url": "https://www.w3.org/TR/tracking-dnt/#reg.Tk" } }, "#reg.tracking-status.json": { @@ -677,12 +389,6 @@ "spec": "DNT", "text": "Registration of application/tracking-status+json", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#reg.tracking-status.json" - }, - "snapshot": { - "number": "B.1", - "spec": "DNT", - "text": "Registration of application/tracking-status+json", - "url": "https://www.w3.org/TR/tracking-dnt/#reg.tracking-status.json" } }, "#reg.well-known.dnt": { @@ -691,12 +397,6 @@ "spec": "DNT", "text": "Registration of URI /.well-known/dnt", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#reg.well-known.dnt" - }, - "snapshot": { - "number": "B.4", - "spec": "DNT", - "text": "Registration of URI /.well-known/dnt", - "url": "https://www.w3.org/TR/tracking-dnt/#reg.well-known.dnt" } }, "#registrations": { @@ -705,12 +405,6 @@ "spec": "DNT", "text": "Registrations", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#registrations" - }, - "snapshot": { - "number": "B", - "spec": "DNT", - "text": "Registrations", - "url": "https://www.w3.org/TR/tracking-dnt/#registrations" } }, "#rep.audit": { @@ -719,12 +413,6 @@ "spec": "DNT", "text": "Audit Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.audit" - }, - "snapshot": { - "number": "7.5.7", - "spec": "DNT", - "text": "Audit Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.audit" } }, "#rep.compliance": { @@ -733,12 +421,6 @@ "spec": "DNT", "text": "Compliance Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.compliance" - }, - "snapshot": { - "number": "7.5.3", - "spec": "DNT", - "text": "Compliance Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.compliance" } }, "#rep.config": { @@ -747,12 +429,6 @@ "spec": "DNT", "text": "Config Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.config" - }, - "snapshot": { - "number": "7.5.9", - "spec": "DNT", - "text": "Config Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.config" } }, "#rep.controller": { @@ -761,12 +437,6 @@ "spec": "DNT", "text": "Controller Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.controller" - }, - "snapshot": { - "number": "7.5.5", - "spec": "DNT", - "text": "Controller Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.controller" } }, "#rep.extension": { @@ -775,12 +445,6 @@ "spec": "DNT", "text": "Extensions to the Status Object", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.extension" - }, - "snapshot": { - "number": "7.5.10", - "spec": "DNT", - "text": "Extensions to the Status Object", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.extension" } }, "#rep.policy": { @@ -789,12 +453,6 @@ "spec": "DNT", "text": "Policy Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.policy" - }, - "snapshot": { - "number": "7.5.8", - "spec": "DNT", - "text": "Policy Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.policy" } }, "#rep.qualifiers": { @@ -803,12 +461,6 @@ "spec": "DNT", "text": "Qualifiers Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.qualifiers" - }, - "snapshot": { - "number": "7.5.4", - "spec": "DNT", - "text": "Qualifiers Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.qualifiers" } }, "#rep.same-party": { @@ -817,12 +469,6 @@ "spec": "DNT", "text": "Same-party Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.same-party" - }, - "snapshot": { - "number": "7.5.6", - "spec": "DNT", - "text": "Same-party Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.same-party" } }, "#rep.status-object": { @@ -831,12 +477,6 @@ "spec": "DNT", "text": "Status Object", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.status-object" - }, - "snapshot": { - "number": "7.5.1", - "spec": "DNT", - "text": "Status Object", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.status-object" } }, "#rep.tracking": { @@ -845,12 +485,6 @@ "spec": "DNT", "text": "Tracking Property", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#rep.tracking" - }, - "snapshot": { - "number": "7.5.2", - "spec": "DNT", - "text": "Tracking Property", - "url": "https://www.w3.org/TR/tracking-dnt/#rep.tracking" } }, "#request-specific-status-resource": { @@ -859,12 +493,6 @@ "spec": "DNT", "text": "Request-specific Tracking Status", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#request-specific-status-resource" - }, - "snapshot": { - "number": "7.4.2", - "spec": "DNT", - "text": "Request-specific Tracking Status", - "url": "https://www.w3.org/TR/tracking-dnt/#request-specific-status-resource" } }, "#requirements": { @@ -873,12 +501,6 @@ "spec": "DNT", "text": "Requirements", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#requirements" - }, - "snapshot": { - "number": "3.1", - "spec": "DNT", - "text": "Requirements", - "url": "https://www.w3.org/TR/tracking-dnt/#requirements" } }, "#responding": { @@ -887,12 +509,6 @@ "spec": "DNT", "text": "Communicating a Tracking Status", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#responding" - }, - "snapshot": { - "number": "7", - "spec": "DNT", - "text": "Communicating a Tracking Status", - "url": "https://www.w3.org/TR/tracking-dnt/#responding" } }, "#response-error": { @@ -901,12 +517,6 @@ "spec": "DNT", "text": "Status Code for Tracking Required", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#response-error" - }, - "snapshot": { - "number": "7.6", - "spec": "DNT", - "text": "Status Code for Tracking Required", - "url": "https://www.w3.org/TR/tracking-dnt/#response-error" } }, "#response-header-field": { @@ -915,12 +525,6 @@ "spec": "DNT", "text": "Tk Header Field for HTTP Responses", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#response-header-field" - }, - "snapshot": { - "number": "7.3", - "spec": "DNT", - "text": "Tk Header Field for HTTP Responses", - "url": "https://www.w3.org/TR/tracking-dnt/#response-header-field" } }, "#response-overview": { @@ -929,12 +533,6 @@ "spec": "DNT", "text": "Overview", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#response-overview" - }, - "snapshot": { - "number": "7.1", - "spec": "DNT", - "text": "Overview", - "url": "https://www.w3.org/TR/tracking-dnt/#response-overview" } }, "#security": { @@ -943,12 +541,6 @@ "spec": "DNT", "text": "Security Considerations", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#security" - }, - "snapshot": { - "number": "9", - "spec": "DNT", - "text": "Security Considerations", - "url": "https://www.w3.org/TR/tracking-dnt/#security" } }, "#site-wide-status-resource": { @@ -957,12 +549,6 @@ "spec": "DNT", "text": "Site-wide Tracking Status", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#site-wide-status-resource" - }, - "snapshot": { - "number": "7.4.1", - "spec": "DNT", - "text": "Site-wide Tracking Status", - "url": "https://www.w3.org/TR/tracking-dnt/#site-wide-status-resource" } }, "#status-caching": { @@ -971,12 +557,6 @@ "spec": "DNT", "text": "Caching", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#status-caching" - }, - "snapshot": { - "number": "7.4.4", - "spec": "DNT", - "text": "Caching", - "url": "https://www.w3.org/TR/tracking-dnt/#status-caching" } }, "#status-checks-not-tracked": { @@ -985,12 +565,6 @@ "spec": "DNT", "text": "Status Checks are Not Tracked", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#status-checks-not-tracked" - }, - "snapshot": { - "number": "7.4.3", - "spec": "DNT", - "text": "Status Checks are Not Tracked", - "url": "https://www.w3.org/TR/tracking-dnt/#status-checks-not-tracked" } }, "#status-representation": { @@ -999,12 +573,6 @@ "spec": "DNT", "text": "Tracking Status Representation", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#status-representation" - }, - "snapshot": { - "number": "7.5", - "spec": "DNT", - "text": "Tracking Status Representation", - "url": "https://www.w3.org/TR/tracking-dnt/#status-representation" } }, "#status-resource": { @@ -1013,12 +581,6 @@ "spec": "DNT", "text": "Tracking Status Resource", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#status-resource" - }, - "snapshot": { - "number": "7.4", - "spec": "DNT", - "text": "Tracking Status Resource", - "url": "https://www.w3.org/TR/tracking-dnt/#status-resource" } }, "#terminology": { @@ -1027,12 +589,6 @@ "spec": "DNT", "text": "Terminology", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#terminology" - }, - "snapshot": { - "number": "2", - "spec": "DNT", - "text": "Terminology", - "url": "https://www.w3.org/TR/tracking-dnt/#terminology" } }, "#terminology.activity": { @@ -1041,12 +597,6 @@ "spec": "DNT", "text": "Activity", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#terminology.activity" - }, - "snapshot": { - "number": "2.3", - "spec": "DNT", - "text": "Activity", - "url": "https://www.w3.org/TR/tracking-dnt/#terminology.activity" } }, "#terminology.data": { @@ -1055,12 +605,6 @@ "spec": "DNT", "text": "Data", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#terminology.data" - }, - "snapshot": { - "number": "2.5", - "spec": "DNT", - "text": "Data", - "url": "https://www.w3.org/TR/tracking-dnt/#terminology.data" } }, "#terminology.html": { @@ -1069,12 +613,6 @@ "spec": "DNT", "text": "HTML", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#terminology.html" - }, - "snapshot": { - "number": "2.2", - "spec": "DNT", - "text": "HTML", - "url": "https://www.w3.org/TR/tracking-dnt/#terminology.html" } }, "#terminology.http": { @@ -1083,12 +621,6 @@ "spec": "DNT", "text": "HTTP", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#terminology.http" - }, - "snapshot": { - "number": "2.1", - "spec": "DNT", - "text": "HTTP", - "url": "https://www.w3.org/TR/tracking-dnt/#terminology.http" } }, "#terminology.participants": { @@ -1097,12 +629,6 @@ "spec": "DNT", "text": "Participants", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#terminology.participants" - }, - "snapshot": { - "number": "2.4", - "spec": "DNT", - "text": "Participants", - "url": "https://www.w3.org/TR/tracking-dnt/#terminology.participants" } }, "#title": { @@ -1111,12 +637,6 @@ "spec": "DNT", "text": "Tracking Preference Expression (DNT)", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#title" - }, - "snapshot": { - "number": "", - "spec": "DNT", - "text": "Tracking Preference Expression (DNT)", - "url": "https://www.w3.org/TR/tracking-dnt/#title" } }, "#toc": { @@ -1125,12 +645,6 @@ "spec": "DNT", "text": "Table of Contents", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#toc" - }, - "snapshot": { - "number": "", - "spec": "DNT", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/tracking-dnt/#toc" } }, "#tracking-status-value": { @@ -1139,12 +653,6 @@ "spec": "DNT", "text": "Tracking Status Value", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#tracking-status-value" - }, - "snapshot": { - "number": "7.2", - "spec": "DNT", - "text": "Tracking Status Value", - "url": "https://www.w3.org/TR/tracking-dnt/#tracking-status-value" } }, "#use-cases": { @@ -1153,12 +661,6 @@ "spec": "DNT", "text": "Use Cases", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#use-cases" - }, - "snapshot": { - "number": "8", - "spec": "DNT", - "text": "Use Cases", - "url": "https://www.w3.org/TR/tracking-dnt/#use-cases" } }, "#using-deployment": { @@ -1167,12 +669,6 @@ "spec": "DNT", "text": "Discovering Deployment", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#using-deployment" - }, - "snapshot": { - "number": "8.1", - "spec": "DNT", - "text": "Discovering Deployment", - "url": "https://www.w3.org/TR/tracking-dnt/#using-deployment" } }, "#using-preflight": { @@ -1181,12 +677,6 @@ "spec": "DNT", "text": "Preflight Checks", "url": "https://w3c.github.io/dnt/drafts/tracking-dnt.html#using-preflight" - }, - "snapshot": { - "number": "8.2", - "spec": "DNT", - "text": "Preflight Checks", - "url": "https://www.w3.org/TR/tracking-dnt/#using-preflight" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-trust-token-api.json b/bikeshed/spec-data/readonly/headings/headings-trust-token-api.json new file mode 100644 index 0000000000..21ed0d70eb --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-trust-token-api.json @@ -0,0 +1,514 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Abstract", + "url": "https://wicg.github.io/trust-token-api/#abstract" + } + }, + "#acknowledgments": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Acknowledgments", + "url": "https://wicg.github.io/trust-token-api/#acknowledgments" + } + }, + "#algorithms": { + "current": { + "number": "5", + "spec": "Private State Token API", + "text": "Algorithms", + "url": "https://wicg.github.io/trust-token-api/#algorithms" + } + }, + "#api-usage-limits": { + "current": { + "number": "13.3.1", + "spec": "Private State Token API", + "text": "Mitigation: Dynamic Issuance/Redemption Limits", + "url": "https://wicg.github.io/trust-token-api/#api-usage-limits" + } + }, + "#background": { + "current": { + "number": "2", + "spec": "Private State Token API", + "text": "Background", + "url": "https://wicg.github.io/trust-token-api/#background" + } + }, + "#cross-site-info": { + "current": { + "number": "13.3", + "spec": "Private State Token API", + "text": "Cross-site Information Transfer", + "url": "https://wicg.github.io/trust-token-api/#cross-site-info" + } + }, + "#data-clear": { + "current": { + "number": "11.3", + "spec": "Private State Token API", + "text": "Clearing PST Data", + "url": "https://wicg.github.io/trust-token-api/#data-clear" + } + }, + "#definitions": { + "current": { + "number": "6.1", + "spec": "Private State Token API", + "text": "Definitions", + "url": "https://wicg.github.io/trust-token-api/#definitions" + } + }, + "#fetch-integration": { + "current": { + "number": "6", + "spec": "Private State Token API", + "text": "Integration with Fetch", + "url": "https://wicg.github.io/trust-token-api/#fetch-integration" + } + }, + "#fetch-request": { + "current": { + "number": "6.2", + "spec": "Private State Token API", + "text": "Modifications to request", + "url": "https://wicg.github.io/trust-token-api/#fetch-request" + } + }, + "#goals": { + "current": { + "number": "1", + "spec": "Private State Token API", + "text": "Goals", + "url": "https://wicg.github.io/trust-token-api/#goals" + } + }, + "#http-fetch": { + "current": { + "number": "6.4", + "spec": "Private State Token API", + "text": "Modifications to HTTP fetch steps", + "url": "https://wicg.github.io/trust-token-api/#http-fetch" + } + }, + "#http-network-or-cache-fetch": { + "current": { + "number": "6.3", + "spec": "Private State Token API", + "text": "Modifications to http-network-or-cache fetch", + "url": "https://wicg.github.io/trust-token-api/#http-network-or-cache-fetch" + } + }, + "#iana-considerations": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "15. IANA Considerations", + "url": "https://wicg.github.io/trust-token-api/#iana-considerations" + } + }, + "#iana-sec-private-state-token": { + "current": { + "number": "15.1", + "spec": "Private State Token API", + "text": "'Sec-Private-State-Token' Header Field", + "url": "https://wicg.github.io/trust-token-api/#iana-sec-private-state-token" + } + }, + "#iana-sec-private-state-token-crypto-version": { + "current": { + "number": "15.3", + "spec": "Private State Token API", + "text": "'Sec-Private-State-Token-Crypto-Version' Header Field", + "url": "https://wicg.github.io/trust-token-api/#iana-sec-private-state-token-crypto-version" + } + }, + "#iana-sec-private-state-token-lifetime": { + "current": { + "number": "15.2", + "spec": "Private State Token API", + "text": "'Sec-Private-State-Token-Lifetime' Header Field", + "url": "https://wicg.github.io/trust-token-api/#iana-sec-private-state-token-lifetime" + } + }, + "#iana-sec-redemption-record": { + "current": { + "number": "15.4", + "spec": "Private State Token API", + "text": "'Sec-Redemption-Record' Header Field", + "url": "https://wicg.github.io/trust-token-api/#iana-sec-redemption-record" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "IDL Index", + "url": "https://wicg.github.io/trust-token-api/#idl-index" + } + }, + "#iframe-integration": { + "current": { + "number": "7", + "spec": "Private State Token API", + "text": "Integration with iframe", + "url": "https://wicg.github.io/trust-token-api/#iframe-integration" + } + }, + "#iframe-private-token": { + "current": { + "number": "7.1", + "spec": "Private State Token API", + "text": "privateToken content attribute for HTMLIframeElement", + "url": "https://wicg.github.io/trust-token-api/#iframe-private-token" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Index", + "url": "https://wicg.github.io/trust-token-api/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/trust-token-api/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/trust-token-api/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Informative References", + "url": "https://wicg.github.io/trust-token-api/#informative" + } + }, + "#issue-request": { + "current": { + "number": "9.1", + "spec": "Private State Token API", + "text": "Creating An Issue Request", + "url": "https://wicg.github.io/trust-token-api/#issue-request" + } + }, + "#issue-response": { + "current": { + "number": "9.3", + "spec": "Private State Token API", + "text": "Handling Issue Responses", + "url": "https://wicg.github.io/trust-token-api/#issue-response" + } + }, + "#issuer-exhaustion": { + "current": { + "number": "14.2", + "spec": "Private State Token API", + "text": "Preventing Issuer Exhaustion", + "url": "https://wicg.github.io/trust-token-api/#issuer-exhaustion" + } + }, + "#issuer-public-keys": { + "current": { + "number": "3", + "spec": "Private State Token API", + "text": "Issuer Public Keys", + "url": "https://wicg.github.io/trust-token-api/#issuer-public-keys" + } + }, + "#issuer-registration": { + "current": { + "number": "3.1", + "spec": "Private State Token API", + "text": "Issuer Key Fetching/Registration", + "url": "https://wicg.github.io/trust-token-api/#issuer-registration" + } + }, + "#issuer-signing-tokens": { + "current": { + "number": "9.2", + "spec": "Private State Token API", + "text": "Issuer Signing Tokens", + "url": "https://wicg.github.io/trust-token-api/#issuer-signing-tokens" + } + }, + "#issuing-protocol": { + "current": { + "number": "9", + "spec": "Private State Token API", + "text": "Issuing Protocol", + "url": "https://wicg.github.io/trust-token-api/#issuing-protocol" + } + }, + "#limit-encoded-info": { + "current": { + "number": "13.2", + "spec": "Private State Token API", + "text": "Limiting Encoded Information", + "url": "https://wicg.github.io/trust-token-api/#limit-encoded-info" + } + }, + "#navigation-params-modifications": { + "current": { + "number": "7.2", + "spec": "Private State Token API", + "text": "Modification to \"create navigation params by fetching\" steps", + "url": "https://wicg.github.io/trust-token-api/#navigation-params-modifications" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Normative References", + "url": "https://wicg.github.io/trust-token-api/#normative" + } + }, + "#per-issuer-limits": { + "current": { + "number": "13.3.2", + "spec": "Private State Token API", + "text": "Mitigation: Per-Site Issuer Limits", + "url": "https://wicg.github.io/trust-token-api/#per-issuer-limits" + } + }, + "#preventing-double-spend": { + "current": { + "number": "14.3", + "spec": "Private State Token API", + "text": "Preventing Double Spending", + "url": "https://wicg.github.io/trust-token-api/#preventing-double-spend" + } + }, + "#privacy": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "13. Privacy Considerations", + "url": "https://wicg.github.io/trust-token-api/#privacy" + } + }, + "#pst-http-header-fields": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "12. Private State Token HTTP Header Fields", + "url": "https://wicg.github.io/trust-token-api/#pst-http-header-fields" + } + }, + "#query-apis": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "11. Query APIs", + "url": "https://wicg.github.io/trust-token-api/#query-apis" + } + }, + "#redeem-response": { + "current": { + "number": "10.1", + "spec": "Private State Token API", + "text": "Handling Redeem Responses", + "url": "https://wicg.github.io/trust-token-api/#redeem-response" + } + }, + "#redeeming-tokens": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "10. Redeeming Tokens", + "url": "https://wicg.github.io/trust-token-api/#redeeming-tokens" + } + }, + "#redemption-record-query": { + "current": { + "number": "11.2", + "spec": "Private State Token API", + "text": "Redemption Record Query", + "url": "https://wicg.github.io/trust-token-api/#redemption-record-query" + } + }, + "#redemption-records": { + "current": { + "number": "10.2", + "spec": "Private State Token API", + "text": "Redemption Records", + "url": "https://wicg.github.io/trust-token-api/#redemption-records" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "References", + "url": "https://wicg.github.io/trust-token-api/#references" + } + }, + "#sec-private-state-token": { + "current": { + "number": "12.1", + "spec": "Private State Token API", + "text": "The 'Sec-Private-State-Token' Header Field", + "url": "https://wicg.github.io/trust-token-api/#sec-private-state-token" + } + }, + "#sec-private-state-token-crypto-version": { + "current": { + "number": "12.3", + "spec": "Private State Token API", + "text": "The 'Sec-Private-State-Token-Crypto-Version' Header Field", + "url": "https://wicg.github.io/trust-token-api/#sec-private-state-token-crypto-version" + } + }, + "#sec-private-state-token-lifetime": { + "current": { + "number": "12.2", + "spec": "Private State Token API", + "text": "The 'Sec-Private-State-Token-Lifetime' Header Field", + "url": "https://wicg.github.io/trust-token-api/#sec-private-state-token-lifetime" + } + }, + "#sec-redemption-record": { + "current": { + "number": "12.4", + "spec": "Private State Token API", + "text": "The 'Sec-Redemption-Record' Header Field", + "url": "https://wicg.github.io/trust-token-api/#sec-redemption-record" + } + }, + "#security": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "14. Security Considerations", + "url": "https://wicg.github.io/trust-token-api/#security" + } + }, + "#side-channel-fingerprinting": { + "current": { + "number": "13.2.1", + "spec": "Private State Token API", + "text": "Potential Attack: Side Channel Fingerprinting", + "url": "https://wicg.github.io/trust-token-api/#side-channel-fingerprinting" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Status of this document", + "url": "https://wicg.github.io/trust-token-api/#status" + } + }, + "#the-document-object": { + "current": { + "number": "10.3", + "spec": "Private State Token API", + "text": "Changes to Document", + "url": "https://wicg.github.io/trust-token-api/#the-document-object" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Private State Token API", + "url": "https://wicg.github.io/trust-token-api/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Table of Contents", + "url": "https://wicg.github.io/trust-token-api/#toc" + } + }, + "#token-exhaustion": { + "current": { + "number": "14.1", + "spec": "Private State Token API", + "text": "Preventing Token Exhaustion", + "url": "https://wicg.github.io/trust-token-api/#token-exhaustion" + } + }, + "#token-query": { + "current": { + "number": "11.1", + "spec": "Private State Token API", + "text": "Token Query", + "url": "https://wicg.github.io/trust-token-api/#token-query" + } + }, + "#unlinkability": { + "current": { + "number": "13.1", + "spec": "Private State Token API", + "text": "Unlinkability", + "url": "https://wicg.github.io/trust-token-api/#unlinkability" + } + }, + "#voprf-methods": { + "current": { + "number": "4", + "spec": "Private State Token API", + "text": "VOPRF Methods", + "url": "https://wicg.github.io/trust-token-api/#voprf-methods" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Conformance", + "url": "https://wicg.github.io/trust-token-api/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Private State Token API", + "text": "Document conventions", + "url": "https://wicg.github.io/trust-token-api/#w3c-conventions" + } + }, + "#xhr": { + "current": { + "number": "8", + "spec": "Private State Token API", + "text": "Integration with XMLHttpRequest", + "url": "https://wicg.github.io/trust-token-api/#xhr" + } + }, + "#xhr-send-monkeypatch": { + "current": { + "number": "8.2", + "spec": "Private State Token API", + "text": "send() monkeypatch", + "url": "https://wicg.github.io/trust-token-api/#xhr-send-monkeypatch" + } + }, + "#xhr-set-private-token": { + "current": { + "number": "8.1", + "spec": "Private State Token API", + "text": "Attach PrivateToken", + "url": "https://wicg.github.io/trust-token-api/#xhr-set-private-token" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-trusted-types.json b/bikeshed/spec-data/readonly/headings/headings-trusted-types.json index d570db83c6..c62eb42610 100644 --- a/bikeshed/spec-data/readonly/headings/headings-trusted-types.json +++ b/bikeshed/spec-data/readonly/headings/headings-trusted-types.json @@ -1,18 +1,4 @@ { - "#StringContext": { - "current": { - "number": "4.2", - "spec": "Trusted Types", - "text": "[StringContext]", - "url": "https://w3c.github.io/trusted-types/dist/spec/#StringContext" - }, - "snapshot": { - "number": "4.2", - "spec": "Trusted Types", - "text": "[StringContext]", - "url": "https://www.w3.org/TR/trusted-types/#StringContext" - } - }, "#abstract": { "current": { "number": "", @@ -43,32 +29,18 @@ }, "#best-practices-for-policy-design": { "current": { - "number": "5.5", + "number": "5.4", "spec": "Trusted Types", "text": "Best practices for policy design", "url": "https://w3c.github.io/trusted-types/dist/spec/#best-practices-for-policy-design" }, "snapshot": { - "number": "5.5", + "number": "5.4", "spec": "Trusted Types", "text": "Best practices for policy design", "url": "https://www.w3.org/TR/trusted-types/#best-practices-for-policy-design" } }, - "#check-templatedness-algorithm": { - "current": { - "number": "3.4", - "spec": "Trusted Types", - "text": "Check templatedness of an object", - "url": "https://w3c.github.io/trusted-types/dist/spec/#check-templatedness-algorithm" - }, - "snapshot": { - "number": "3.4", - "spec": "Trusted Types", - "text": "Check templatedness of an object", - "url": "https://www.w3.org/TR/trusted-types/#check-templatedness-algorithm" - } - }, "#content-security-policy-hdr": { "current": { "number": "2.4.1", @@ -97,20 +69,6 @@ "url": "https://www.w3.org/TR/trusted-types/#create-a-trusted-type-algorithm" } }, - "#create-a-trusted-type-from-literal-algorithm": { - "current": { - "number": "3.3", - "spec": "Trusted Types", - "text": "Create a Trusted Type from literal", - "url": "https://w3c.github.io/trusted-types/dist/spec/#create-a-trusted-type-from-literal-algorithm" - }, - "snapshot": { - "number": "3.3", - "spec": "Trusted Types", - "text": "Create a Trusted Type from literal", - "url": "https://www.w3.org/TR/trusted-types/#create-a-trusted-type-from-literal-algorithm" - } - }, "#create-trusted-type-policy-algorithm": { "current": { "number": "3.1", @@ -141,32 +99,18 @@ }, "#csp-eval": { "current": { - "number": "4.9.6", + "number": "4.3.6", "spec": "Trusted Types", "text": "Support for dynamic code compilation", "url": "https://w3c.github.io/trusted-types/dist/spec/#csp-eval" }, "snapshot": { - "number": "4.9.6", + "number": "4.3.6", "spec": "Trusted Types", "text": "Support for dynamic code compilation", "url": "https://www.w3.org/TR/trusted-types/#csp-eval" } }, - "#csp-violation-object-hdr": { - "current": { - "number": "4.9.5", - "spec": "Trusted Types", - "text": "Violation object changes", - "url": "https://w3c.github.io/trusted-types/dist/spec/#csp-violation-object-hdr" - }, - "snapshot": { - "number": "4.9.5", - "spec": "Trusted Types", - "text": "Violation object changes", - "url": "https://www.w3.org/TR/trusted-types/#csp-violation-object-hdr" - } - }, "#default-policy-hdr": { "current": { "number": "2.3.4", @@ -195,15 +139,29 @@ "url": "https://www.w3.org/TR/trusted-types/#deprecated-features" } }, + "#does-sink-require-trusted-types": { + "current": { + "number": "4.3.3", + "spec": "Trusted Types", + "text": "Does sink type require trusted types?", + "url": "https://w3c.github.io/trusted-types/dist/spec/#does-sink-require-trusted-types" + }, + "snapshot": { + "number": "4.3.3", + "spec": "Trusted Types", + "text": "Does sink type require trusted types?", + "url": "https://www.w3.org/TR/trusted-types/#does-sink-require-trusted-types" + } + }, "#dom-xss-injection-sinks": { "current": { - "number": "2.1.2", + "number": "2.1.1", "spec": "Trusted Types", "text": "DOM XSS injection sinks", "url": "https://w3c.github.io/trusted-types/dist/spec/#dom-xss-injection-sinks" }, "snapshot": { - "number": "2.1.2", + "number": "2.1.1", "spec": "Trusted Types", "text": "DOM XSS injection sinks", "url": "https://www.w3.org/TR/trusted-types/#dom-xss-injection-sinks" @@ -223,85 +181,29 @@ "url": "https://www.w3.org/TR/trusted-types/#enforcement-hdr" } }, - "#enforcement-in-event-handler-content-attributes": { - "current": { - "number": "4.3.6", - "spec": "Trusted Types", - "text": "Enforcement in event handler content attributes", - "url": "https://w3c.github.io/trusted-types/dist/spec/#enforcement-in-event-handler-content-attributes" - }, - "snapshot": { - "number": "4.3.6", - "spec": "Trusted Types", - "text": "Enforcement in event handler content attributes", - "url": "https://www.w3.org/TR/trusted-types/#enforcement-in-event-handler-content-attributes" - } - }, "#enforcement-in-scripts": { "current": { - "number": "4.3.3", + "number": "4.1.2", "spec": "Trusted Types", "text": "Enforcement for scripts", "url": "https://w3c.github.io/trusted-types/dist/spec/#enforcement-in-scripts" }, "snapshot": { - "number": "4.3.3", + "number": "4.1.2", "spec": "Trusted Types", "text": "Enforcement for scripts", "url": "https://www.w3.org/TR/trusted-types/#enforcement-in-scripts" } }, - "#enforcement-in-sinks": { - "current": { - "number": "4.3.4", - "spec": "Trusted Types", - "text": "Enforcement in element attributes", - "url": "https://w3c.github.io/trusted-types/dist/spec/#enforcement-in-sinks" - }, - "snapshot": { - "number": "4.3.4", - "spec": "Trusted Types", - "text": "Enforcement in element attributes", - "url": "https://www.w3.org/TR/trusted-types/#enforcement-in-sinks" - } - }, - "#enforcement-in-timer-functions": { - "current": { - "number": "4.3.5", - "spec": "Trusted Types", - "text": "Enforcement in timer functions", - "url": "https://w3c.github.io/trusted-types/dist/spec/#enforcement-in-timer-functions" - }, - "snapshot": { - "number": "4.3.5", - "spec": "Trusted Types", - "text": "Enforcement in timer functions", - "url": "https://www.w3.org/TR/trusted-types/#enforcement-in-timer-functions" - } - }, - "#extensions-to-the-document-interface": { - "current": { - "number": "4.3.2", - "spec": "Trusted Types", - "text": "Extensions to the Document interface", - "url": "https://w3c.github.io/trusted-types/dist/spec/#extensions-to-the-document-interface" - }, - "snapshot": { - "number": "4.3.2", - "spec": "Trusted Types", - "text": "Extensions to the Document interface", - "url": "https://www.w3.org/TR/trusted-types/#extensions-to-the-document-interface" - } - }, "#extensions-to-the-windoworworkerglobalscope-interface": { "current": { - "number": "4.3.1", + "number": "4.1.1", "spec": "Trusted Types", "text": "Extensions to the WindowOrWorkerGlobalScope interface", "url": "https://w3c.github.io/trusted-types/dist/spec/#extensions-to-the-windoworworkerglobalscope-interface" }, "snapshot": { - "number": "4.3.1", + "number": "4.1.1", "spec": "Trusted Types", "text": "Extensions to the WindowOrWorkerGlobalScope interface", "url": "https://www.w3.org/TR/trusted-types/#extensions-to-the-windoworworkerglobalscope-interface" @@ -323,72 +225,58 @@ }, "#get-trusted-type-compliant-string-algorithm": { "current": { - "number": "3.5", + "number": "3.4", "spec": "Trusted Types", "text": "Get Trusted Type compliant string", "url": "https://w3c.github.io/trusted-types/dist/spec/#get-trusted-type-compliant-string-algorithm" }, "snapshot": { - "number": "3.5", + "number": "3.4", "spec": "Trusted Types", "text": "Get Trusted Type compliant string", "url": "https://www.w3.org/TR/trusted-types/#get-trusted-type-compliant-string-algorithm" } }, - "#goals": { + "#get-trusted-type-data-for-attribute": { "current": { - "number": "1.1", + "number": "3.8", "spec": "Trusted Types", - "text": "Goals", - "url": "https://w3c.github.io/trusted-types/dist/spec/#goals" + "text": "Get Trusted Type data for attribute", + "url": "https://w3c.github.io/trusted-types/dist/spec/#get-trusted-type-data-for-attribute" }, "snapshot": { - "number": "1.1", + "number": "3.8", "spec": "Trusted Types", - "text": "Goals", - "url": "https://www.w3.org/TR/trusted-types/#goals" + "text": "Get Trusted Type data for attribute", + "url": "https://www.w3.org/TR/trusted-types/#get-trusted-type-data-for-attribute" } }, - "#html-injection-sinks": { + "#get-trusted-type-policy-value-algorithm": { "current": { - "number": "2.1.1", - "spec": "Trusted Types", - "text": "HTML injection sinks", - "url": "https://w3c.github.io/trusted-types/dist/spec/#html-injection-sinks" - }, - "snapshot": { - "number": "2.1.1", - "spec": "Trusted Types", - "text": "HTML injection sinks", - "url": "https://www.w3.org/TR/trusted-types/#html-injection-sinks" - } - }, - "#html-validate-the-string-in-context": { - "current": { - "number": "4.3.7", + "number": "3.3", "spec": "Trusted Types", - "text": "Validate the string in context", - "url": "https://w3c.github.io/trusted-types/dist/spec/#html-validate-the-string-in-context" + "text": "Get Trusted Type policy value", + "url": "https://w3c.github.io/trusted-types/dist/spec/#get-trusted-type-policy-value-algorithm" }, "snapshot": { - "number": "4.3.7", + "number": "3.3", "spec": "Trusted Types", - "text": "Validate the string in context", - "url": "https://www.w3.org/TR/trusted-types/#html-validate-the-string-in-context" + "text": "Get Trusted Type policy value", + "url": "https://www.w3.org/TR/trusted-types/#get-trusted-type-policy-value-algorithm" } }, - "#html-workers": { + "#goals": { "current": { - "number": "4.3.8", + "number": "1.1", "spec": "Trusted Types", - "text": "Web Workers", - "url": "https://w3c.github.io/trusted-types/dist/spec/#html-workers" + "text": "Goals", + "url": "https://w3c.github.io/trusted-types/dist/spec/#goals" }, "snapshot": { - "number": "4.3.8", + "number": "1.1", "spec": "Trusted Types", - "text": "Web Workers", - "url": "https://www.w3.org/TR/trusted-types/#html-workers" + "text": "Goals", + "url": "https://www.w3.org/TR/trusted-types/#goals" } }, "#implementation-considerations": { @@ -477,13 +365,13 @@ }, "#integration-with-content-security-policy": { "current": { - "number": "4.9", + "number": "4.3", "spec": "Trusted Types", "text": "Integration with Content Security Policy", "url": "https://w3c.github.io/trusted-types/dist/spec/#integration-with-content-security-policy" }, "snapshot": { - "number": "4.9", + "number": "4.3", "spec": "Trusted Types", "text": "Integration with Content Security Policy", "url": "https://www.w3.org/TR/trusted-types/#integration-with-content-security-policy" @@ -491,74 +379,32 @@ }, "#integration-with-dom": { "current": { - "number": "4.6", + "number": "4.2", "spec": "Trusted Types", "text": "Integration with DOM", "url": "https://w3c.github.io/trusted-types/dist/spec/#integration-with-dom" }, "snapshot": { - "number": "4.6", + "number": "4.2", "spec": "Trusted Types", "text": "Integration with DOM", "url": "https://www.w3.org/TR/trusted-types/#integration-with-dom" } }, - "#integration-with-dom-parsing": { - "current": { - "number": "4.7", - "spec": "Trusted Types", - "text": "Integration with DOM Parsing", - "url": "https://w3c.github.io/trusted-types/dist/spec/#integration-with-dom-parsing" - }, - "snapshot": { - "number": "4.7", - "spec": "Trusted Types", - "text": "Integration with DOM Parsing", - "url": "https://www.w3.org/TR/trusted-types/#integration-with-dom-parsing" - } - }, - "#integration-with-exec-command": { - "current": { - "number": "4.8", - "spec": "Trusted Types", - "text": "Integration with execCommand", - "url": "https://w3c.github.io/trusted-types/dist/spec/#integration-with-exec-command" - }, - "snapshot": { - "number": "4.8", - "spec": "Trusted Types", - "text": "Integration with execCommand", - "url": "https://www.w3.org/TR/trusted-types/#integration-with-exec-command" - } - }, "#integration-with-html": { "current": { - "number": "4.3", + "number": "4.1", "spec": "Trusted Types", "text": "Integration with HTML", "url": "https://w3c.github.io/trusted-types/dist/spec/#integration-with-html" }, "snapshot": { - "number": "4.3", + "number": "4.1", "spec": "Trusted Types", "text": "Integration with HTML", "url": "https://www.w3.org/TR/trusted-types/#integration-with-html" } }, - "#integration-with-svg": { - "current": { - "number": "4.5", - "spec": "Trusted Types", - "text": "Integration with SVG", - "url": "https://w3c.github.io/trusted-types/dist/spec/#integration-with-svg" - }, - "snapshot": { - "number": "4.5", - "spec": "Trusted Types", - "text": "Integration with SVG", - "url": "https://www.w3.org/TR/trusted-types/#integration-with-svg" - } - }, "#integrations": { "current": { "number": "4", @@ -629,20 +475,6 @@ "url": "https://www.w3.org/TR/trusted-types/#normative" } }, - "#plugins": { - "current": { - "number": "5.3", - "spec": "Trusted Types", - "text": "Plugin navigation", - "url": "https://w3c.github.io/trusted-types/dist/spec/#plugins" - }, - "snapshot": { - "number": "5.3", - "spec": "Trusted Types", - "text": "Plugin navigation", - "url": "https://www.w3.org/TR/trusted-types/#plugins" - } - }, "#policies-hdr": { "current": { "number": "2.3", @@ -657,18 +489,18 @@ "url": "https://www.w3.org/TR/trusted-types/#policies-hdr" } }, - "#prepare-script-url-and-text": { + "#prepare-script-text": { "current": { - "number": "3.7", + "number": "3.6", "spec": "Trusted Types", - "text": "Prepare the script URL and text", - "url": "https://w3c.github.io/trusted-types/dist/spec/#prepare-script-url-and-text" + "text": "Prepare the script text", + "url": "https://w3c.github.io/trusted-types/dist/spec/#prepare-script-text" }, "snapshot": { - "number": "3.7", + "number": "3.6", "spec": "Trusted Types", - "text": "Prepare the script URL and text", - "url": "https://www.w3.org/TR/trusted-types/#prepare-script-url-and-text" + "text": "Prepare the script text", + "url": "https://www.w3.org/TR/trusted-types/#prepare-script-text" } }, "#privacy-considerations": { @@ -687,13 +519,13 @@ }, "#process-value-with-a-default-policy-algorithm": { "current": { - "number": "3.6", + "number": "3.5", "spec": "Trusted Types", "text": "Process value with a default policy", "url": "https://w3c.github.io/trusted-types/dist/spec/#process-value-with-a-default-policy-algorithm" }, "snapshot": { - "number": "3.6", + "number": "3.5", "spec": "Trusted Types", "text": "Process value with a default policy", "url": "https://www.w3.org/TR/trusted-types/#process-value-with-a-default-policy-algorithm" @@ -715,13 +547,13 @@ }, "#require-trusted-types-for-csp-directive": { "current": { - "number": "4.9.1", + "number": "4.3.1", "spec": "Trusted Types", "text": "require-trusted-types-for directive", "url": "https://w3c.github.io/trusted-types/dist/spec/#require-trusted-types-for-csp-directive" }, "snapshot": { - "number": "4.9.1", + "number": "4.3.1", "spec": "Trusted Types", "text": "require-trusted-types-for directive", "url": "https://www.w3.org/TR/trusted-types/#require-trusted-types-for-csp-directive" @@ -729,13 +561,13 @@ }, "#require-trusted-types-for-pre-navigation-check": { "current": { - "number": "4.9.1.1", + "number": "4.3.1.1", "spec": "Trusted Types", "text": "require-trusted-types-for Pre-Navigation check", "url": "https://w3c.github.io/trusted-types/dist/spec/#require-trusted-types-for-pre-navigation-check" }, "snapshot": { - "number": "4.9.1.1", + "number": "4.3.1.1", "spec": "Trusted Types", "text": "require-trusted-types-for Pre-Navigation check", "url": "https://www.w3.org/TR/trusted-types/#require-trusted-types-for-pre-navigation-check" @@ -743,13 +575,13 @@ }, "#script-gadgets": { "current": { - "number": "5.4", + "number": "5.3", "spec": "Trusted Types", "text": "Script gadgets", "url": "https://w3c.github.io/trusted-types/dist/spec/#script-gadgets" }, "snapshot": { - "number": "5.4", + "number": "5.3", "spec": "Trusted Types", "text": "Script gadgets", "url": "https://www.w3.org/TR/trusted-types/#script-gadgets" @@ -769,29 +601,29 @@ "url": "https://www.w3.org/TR/trusted-types/#security-considerations" } }, - "#setting-slot-values": { + "#setting-slot-values-from-parser": { "current": { - "number": "4.3.3.2", + "number": "4.1.2.6", "spec": "Trusted Types", - "text": "Setting slot values", - "url": "https://w3c.github.io/trusted-types/dist/spec/#setting-slot-values" + "text": "Setting slot values from parser", + "url": "https://w3c.github.io/trusted-types/dist/spec/#setting-slot-values-from-parser" }, "snapshot": { - "number": "4.3.3.2", + "number": "4.1.2.6", "spec": "Trusted Types", - "text": "Setting slot values", - "url": "https://www.w3.org/TR/trusted-types/#setting-slot-values" + "text": "Setting slot values from parser", + "url": "https://www.w3.org/TR/trusted-types/#setting-slot-values-from-parser" } }, "#should-block-create-policy": { "current": { - "number": "4.9.4", + "number": "4.3.5", "spec": "Trusted Types", "text": "Should Trusted Type policy creation be blocked by Content Security Policy?", "url": "https://w3c.github.io/trusted-types/dist/spec/#should-block-create-policy" }, "snapshot": { - "number": "4.9.4", + "number": "4.3.5", "spec": "Trusted Types", "text": "Should Trusted Type policy creation be blocked by Content Security Policy?", "url": "https://www.w3.org/TR/trusted-types/#should-block-create-policy" @@ -799,13 +631,13 @@ }, "#should-block-sink-type-mismatch": { "current": { - "number": "4.9.3", + "number": "4.3.4", "spec": "Trusted Types", "text": "Should sink type mismatch violation be blocked by Content Security Policy?", "url": "https://w3c.github.io/trusted-types/dist/spec/#should-block-sink-type-mismatch" }, "snapshot": { - "number": "4.9.3", + "number": "4.3.4", "spec": "Trusted Types", "text": "Should sink type mismatch violation be blocked by Content Security Policy?", "url": "https://www.w3.org/TR/trusted-types/#should-block-sink-type-mismatch" @@ -813,13 +645,13 @@ }, "#slot-value-verification": { "current": { - "number": "4.3.3.3", + "number": "4.1.2.7", "spec": "Trusted Types", "text": "Slot value verification", "url": "https://w3c.github.io/trusted-types/dist/spec/#slot-value-verification" }, "snapshot": { - "number": "4.3.3.3", + "number": "4.1.2.7", "spec": "Trusted Types", "text": "Slot value verification", "url": "https://www.w3.org/TR/trusted-types/#slot-value-verification" @@ -827,13 +659,13 @@ }, "#slots-with-trusted-values": { "current": { - "number": "4.3.3.1", + "number": "4.1.2.1", "spec": "Trusted Types", "text": "Slots with trusted values", "url": "https://w3c.github.io/trusted-types/dist/spec/#slots-with-trusted-values" }, "snapshot": { - "number": "4.3.3.1", + "number": "4.1.2.1", "spec": "Trusted Types", "text": "Slots with trusted values", "url": "https://www.w3.org/TR/trusted-types/#slots-with-trusted-values" @@ -853,18 +685,60 @@ "url": "https://www.w3.org/TR/trusted-types/#sotd" } }, - "#sw-integration": { + "#the-innerText-idl-attribute": { + "current": { + "number": "4.1.2.2", + "spec": "Trusted Types", + "text": "The innerText IDL attribute", + "url": "https://w3c.github.io/trusted-types/dist/spec/#the-innerText-idl-attribute" + }, + "snapshot": { + "number": "4.1.2.2", + "spec": "Trusted Types", + "text": "The innerText IDL attribute", + "url": "https://www.w3.org/TR/trusted-types/#the-innerText-idl-attribute" + } + }, + "#the-src-idl-attribute": { + "current": { + "number": "4.1.2.5", + "spec": "Trusted Types", + "text": "The src IDL attribute", + "url": "https://w3c.github.io/trusted-types/dist/spec/#the-src-idl-attribute" + }, + "snapshot": { + "number": "4.1.2.5", + "spec": "Trusted Types", + "text": "The src IDL attribute", + "url": "https://www.w3.org/TR/trusted-types/#the-src-idl-attribute" + } + }, + "#the-text-idl-attribute": { + "current": { + "number": "4.1.2.4", + "spec": "Trusted Types", + "text": "The text IDL attribute", + "url": "https://w3c.github.io/trusted-types/dist/spec/#the-text-idl-attribute" + }, + "snapshot": { + "number": "4.1.2.4", + "spec": "Trusted Types", + "text": "The text IDL attribute", + "url": "https://www.w3.org/TR/trusted-types/#the-text-idl-attribute" + } + }, + "#the-textContent-idl-attribute": { "current": { - "number": "4.4", + "number": "4.1.2.3", "spec": "Trusted Types", - "text": "Integration with Service Workers", - "url": "https://w3c.github.io/trusted-types/dist/spec/#sw-integration" + "text": "The textContent IDL attribute", + "url": "https://w3c.github.io/trusted-types/dist/spec/#the-textContent-idl-attribute" }, "snapshot": { - "number": "4.4", + "number": "4.1.2.3", "spec": "Trusted Types", - "text": "Integration with Service Workers", - "url": "https://www.w3.org/TR/trusted-types/#sw-integration" + "text": "The textContent IDL attribute", + "url": "https://www.w3.org/TR/trusted-types/#the-textContent-idl-attribute" } }, "#title": { @@ -995,13 +869,13 @@ }, "#trusted-types-csp-directive": { "current": { - "number": "4.9.2", + "number": "4.3.2", "spec": "Trusted Types", "text": "trusted-types directive", "url": "https://w3c.github.io/trusted-types/dist/spec/#trusted-types-csp-directive" }, "snapshot": { - "number": "4.9.2", + "number": "4.3.2", "spec": "Trusted Types", "text": "trusted-types directive", "url": "https://www.w3.org/TR/trusted-types/#trusted-types-csp-directive" @@ -1021,6 +895,20 @@ "url": "https://www.w3.org/TR/trusted-types/#use-cases" } }, + "#validate-attribute-mutation": { + "current": { + "number": "3.7", + "spec": "Trusted Types", + "text": "Get Trusted Types-compliant attribute value", + "url": "https://w3c.github.io/trusted-types/dist/spec/#validate-attribute-mutation" + }, + "snapshot": { + "number": "3.7", + "spec": "Trusted Types", + "text": "Get Trusted Types-compliant attribute value", + "url": "https://www.w3.org/TR/trusted-types/#validate-attribute-mutation" + } + }, "#vendor-specific-extensions-and-addons": { "current": { "number": "7.1", @@ -1076,61 +964,5 @@ "text": "Document conventions", "url": "https://www.w3.org/TR/trusted-types/#w3c-conventions" } - }, - "#webidl-applicable-to-types": { - "current": { - "number": "4.2.1", - "spec": "Trusted Types", - "text": "Extended attributes applicable to types", - "url": "https://w3c.github.io/trusted-types/dist/spec/#webidl-applicable-to-types" - }, - "snapshot": { - "number": "4.2.1", - "spec": "Trusted Types", - "text": "Extended attributes applicable to types", - "url": "https://www.w3.org/TR/trusted-types/#webidl-applicable-to-types" - } - }, - "#webidl-integration": { - "current": { - "number": "4.1", - "spec": "Trusted Types", - "text": "Integration with WebIDL", - "url": "https://w3c.github.io/trusted-types/dist/spec/#webidl-integration" - }, - "snapshot": { - "number": "4.1", - "spec": "Trusted Types", - "text": "Integration with WebIDL", - "url": "https://www.w3.org/TR/trusted-types/#webidl-integration" - } - }, - "#webidl-type-conversion": { - "current": { - "number": "4.2.2", - "spec": "Trusted Types", - "text": "Type conversion", - "url": "https://w3c.github.io/trusted-types/dist/spec/#webidl-type-conversion" - }, - "snapshot": { - "number": "4.2.2", - "spec": "Trusted Types", - "text": "Type conversion", - "url": "https://www.w3.org/TR/trusted-types/#webidl-type-conversion" - } - }, - "#webidl-validate-the-string-in-context": { - "current": { - "number": "4.2.3", - "spec": "Trusted Types", - "text": "Validate the string in context", - "url": "https://w3c.github.io/trusted-types/dist/spec/#webidl-validate-the-string-in-context" - }, - "snapshot": { - "number": "4.2.3", - "spec": "Trusted Types", - "text": "Validate the string in context", - "url": "https://www.w3.org/TR/trusted-types/#webidl-validate-the-string-in-context" - } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-turtledove.json b/bikeshed/spec-data/readonly/headings/headings-turtledove.json new file mode 100644 index 0000000000..69aff87c54 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-turtledove.json @@ -0,0 +1,498 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Abstract", + "url": "https://wicg.github.io/turtledove/#abstract" + } + }, + "#ad-auction-additional-bid-header": { + "current": { + "number": "13.3", + "spec": "Protected Audience", + "text": "The `Ad-Auction-Additional-Bid` HTTP response header.", + "url": "https://wicg.github.io/turtledove/#ad-auction-additional-bid-header" + } + }, + "#ad-auction-signals-header": { + "current": { + "number": "13.2", + "spec": "Protected Audience", + "text": "The `Ad-Auction-Signals` HTTP response header", + "url": "https://wicg.github.io/turtledove/#ad-auction-signals-header" + } + }, + "#additional-bids-and-negative-targeting": { + "current": { + "number": "6", + "spec": "Protected Audience", + "text": "Additional Bids and Negative Targeting", + "url": "https://wicg.github.io/turtledove/#additional-bids-and-negative-targeting" + } + }, + "#additional-bids-section": { + "current": { + "number": "6.2", + "spec": "Protected Audience", + "text": "Additional Bids", + "url": "https://wicg.github.io/turtledove/#additional-bids-section" + } + }, + "#auction-config-header": { + "current": { + "number": "14.3", + "spec": "Protected Audience", + "text": "Auction config", + "url": "https://wicg.github.io/turtledove/#auction-config-header" + } + }, + "#bid-generators": { + "current": { + "number": "14.4", + "spec": "Protected Audience", + "text": "Bid generator", + "url": "https://wicg.github.io/turtledove/#bid-generators" + } + }, + "#bidding-global-scope": { + "current": { + "number": "8.3.1", + "spec": "Protected Audience", + "text": "InterestGroupBiddingScriptRunnerGlobalScope", + "url": "https://wicg.github.io/turtledove/#bidding-global-scope" + } + }, + "#canloadadauctionfencedframe": { + "current": { + "number": "4.2", + "spec": "Protected Audience", + "text": "canLoadAdAuctionFencedFrame()", + "url": "https://wicg.github.io/turtledove/#canloadadauctionfencedframe" + } + }, + "#clearoriginjoinedAdInterestGroups": { + "current": { + "number": "3.2", + "spec": "Protected Audience", + "text": "clearOriginJoinedAdInterestGroups()", + "url": "https://wicg.github.io/turtledove/#clearoriginjoinedAdInterestGroups" + } + }, + "#common-algorithms": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "11. Common Algorithms", + "url": "https://wicg.github.io/turtledove/#common-algorithms" + } + }, + "#create-auction-nonce": { + "current": { + "number": "6.1", + "spec": "Protected Audience", + "text": "createAuctionNonce()", + "url": "https://wicg.github.io/turtledove/#create-auction-nonce" + } + }, + "#currency-tag": { + "current": { + "number": "14.2", + "spec": "Protected Audience", + "text": "Currency tag", + "url": "https://wicg.github.io/turtledove/#currency-tag" + } + }, + "#direct-from-seller-signals-section": { + "current": { + "number": "14.8", + "spec": "Protected Audience", + "text": "Direct from seller signals", + "url": "https://wicg.github.io/turtledove/#direct-from-seller-signals-section" + } + }, + "#downsampling-header": { + "current": { + "number": "5.1.1", + "spec": "Protected Audience", + "text": "Downsampling", + "url": "https://wicg.github.io/turtledove/#downsampling-header" + } + }, + "#feature-detection": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "10. Feature Detection", + "url": "https://wicg.github.io/turtledove/#feature-detection" + } + }, + "#fetch-patch-for-auction-headers": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "13. Fetch Patch for Auction Headers", + "url": "https://wicg.github.io/turtledove/#fetch-patch-for-auction-headers" + } + }, + "#for-debugging-only-header": { + "current": { + "number": "5.1", + "spec": "Protected Audience", + "text": "forDebuggingOnly", + "url": "https://wicg.github.io/turtledove/#for-debugging-only-header" + } + }, + "#generated-bid-header": { + "current": { + "number": "14.7", + "spec": "Protected Audience", + "text": "Generated bid", + "url": "https://wicg.github.io/turtledove/#generated-bid-header" + } + }, + "#getInterestGroupAdAuctionData": { + "current": { + "number": "4.3", + "spec": "Protected Audience", + "text": "getInterestGroupAdAuctionData()", + "url": "https://wicg.github.io/turtledove/#getInterestGroupAdAuctionData" + } + }, + "#global-scopes": { + "current": { + "number": "8.3", + "spec": "Protected Audience", + "text": "Global scopes", + "url": "https://wicg.github.io/turtledove/#global-scopes" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "IDL Index", + "url": "https://wicg.github.io/turtledove/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Index", + "url": "https://wicg.github.io/turtledove/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/turtledove/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/turtledove/#index-defined-here" + } + }, + "#interest-group-header": { + "current": { + "number": "14.1", + "spec": "Protected Audience", + "text": "Interest group", + "url": "https://wicg.github.io/turtledove/#interest-group-header" + } + }, + "#interest-group-storage-maintenance": { + "current": { + "number": "2.2", + "spec": "Protected Audience", + "text": "Interest Group Storage Maintenance", + "url": "https://wicg.github.io/turtledove/#interest-group-storage-maintenance" + } + }, + "#interest-group-updates": { + "current": { + "number": "9", + "spec": "Protected Audience", + "text": "Interest Group Updates", + "url": "https://wicg.github.io/turtledove/#interest-group-updates" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "Protected Audience", + "text": "Introduction", + "url": "https://wicg.github.io/turtledove/#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Issues Index", + "url": "https://wicg.github.io/turtledove/#issues-index" + } + }, + "#join-ad-interest-groups": { + "current": { + "number": "2.1", + "spec": "Protected Audience", + "text": "joinAdInterestGroup()", + "url": "https://wicg.github.io/turtledove/#join-ad-interest-groups" + } + }, + "#joining-interest-groups": { + "current": { + "number": "2", + "spec": "Protected Audience", + "text": "Joining Interest Groups", + "url": "https://wicg.github.io/turtledove/#joining-interest-groups" + } + }, + "#k-anonymity": { + "current": { + "number": "7", + "spec": "Protected Audience", + "text": "K-anonymity", + "url": "https://wicg.github.io/turtledove/#k-anonymity" + } + }, + "#leading-bid-info-header": { + "current": { + "number": "14.10", + "spec": "Protected Audience", + "text": "Leading bid info", + "url": "https://wicg.github.io/turtledove/#leading-bid-info-header" + } + }, + "#leaveadinterestgroup": { + "current": { + "number": "3.1", + "spec": "Protected Audience", + "text": "leaveAdInterestGroup()", + "url": "https://wicg.github.io/turtledove/#leaveadinterestgroup" + } + }, + "#leaving-interest-groups": { + "current": { + "number": "3", + "spec": "Protected Audience", + "text": "Leaving Interest Groups", + "url": "https://wicg.github.io/turtledove/#leaving-interest-groups" + } + }, + "#negative-interest-groups": { + "current": { + "number": "6.3.1", + "spec": "Protected Audience", + "text": "Negative Interest Groups", + "url": "https://wicg.github.io/turtledove/#negative-interest-groups" + } + }, + "#negative-targeting-section": { + "current": { + "number": "6.3", + "spec": "Protected Audience", + "text": "Negative Targeting", + "url": "https://wicg.github.io/turtledove/#negative-targeting-section" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Normative References", + "url": "https://wicg.github.io/turtledove/#normative" + } + }, + "#permissions-policy-integration": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "12. Permissions Policy Integration", + "url": "https://wicg.github.io/turtledove/#permissions-policy-integration" + } + }, + "#platform-contribution-header": { + "current": { + "number": "5.2.1", + "spec": "Protected Audience", + "text": "Platform contribution", + "url": "https://wicg.github.io/turtledove/#platform-contribution-header" + } + }, + "#privacy-considerations": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "15. Privacy Considerations", + "url": "https://wicg.github.io/turtledove/#privacy-considerations" + } + }, + "#rappor-header": { + "current": { + "number": "5.2.2", + "spec": "Protected Audience", + "text": "Apply noise (RAPPOR)", + "url": "https://wicg.github.io/turtledove/#rappor-header" + } + }, + "#real-time-reporting-header": { + "current": { + "number": "5.2", + "spec": "Protected Audience", + "text": "realTimeReporting", + "url": "https://wicg.github.io/turtledove/#real-time-reporting-header" + } + }, + "#realm-and-agent": { + "current": { + "number": "8.1", + "spec": "Protected Audience", + "text": "Realm and agent", + "url": "https://wicg.github.io/turtledove/#realm-and-agent" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "References", + "url": "https://wicg.github.io/turtledove/#references" + } + }, + "#reporting": { + "current": { + "number": "5", + "spec": "Protected Audience", + "text": "Reporting", + "url": "https://wicg.github.io/turtledove/#reporting" + } + }, + "#reporting-global-scope": { + "current": { + "number": "8.3.3", + "spec": "Protected Audience", + "text": "InterestGroupReportingScriptRunnerGlobalScope", + "url": "https://wicg.github.io/turtledove/#reporting-global-scope" + } + }, + "#runadauction": { + "current": { + "number": "4.1", + "spec": "Protected Audience", + "text": "runAdAuction()", + "url": "https://wicg.github.io/turtledove/#runadauction" + } + }, + "#running-ad-auctions": { + "current": { + "number": "4", + "spec": "Protected Audience", + "text": "Running Ad Auctions", + "url": "https://wicg.github.io/turtledove/#running-ad-auctions" + } + }, + "#score-ad-output-header": { + "current": { + "number": "14.9", + "spec": "Protected Audience", + "text": "Score ad output", + "url": "https://wicg.github.io/turtledove/#score-ad-output-header" + } + }, + "#scoring-global-scope": { + "current": { + "number": "8.3.2", + "spec": "Protected Audience", + "text": "InterestGroupScoringScriptRunnerGlobalScope", + "url": "https://wicg.github.io/turtledove/#scoring-global-scope" + } + }, + "#script-evaluation": { + "current": { + "number": "8.2", + "spec": "Protected Audience", + "text": "Script evaluation", + "url": "https://wicg.github.io/turtledove/#script-evaluation" + } + }, + "#script-fetcher-section": { + "current": { + "number": "14.5", + "spec": "Protected Audience", + "text": "Script fetcher", + "url": "https://wicg.github.io/turtledove/#script-fetcher-section" + } + }, + "#script-runners": { + "current": { + "number": "8", + "spec": "Protected Audience", + "text": "Script Runners", + "url": "https://wicg.github.io/turtledove/#script-runners" + } + }, + "#sec-ad-auction-fetch-header": { + "current": { + "number": "13.1", + "spec": "Protected Audience", + "text": "The `Sec-Ad-Auction-Fetch` HTTP request header", + "url": "https://wicg.github.io/turtledove/#sec-ad-auction-fetch-header" + } + }, + "#security-considerations": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "16. Security Considerations", + "url": "https://wicg.github.io/turtledove/#security-considerations" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Status of this document", + "url": "https://wicg.github.io/turtledove/#status" + } + }, + "#structures": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "14. Structures", + "url": "https://wicg.github.io/turtledove/#structures" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Protected Audience (formerly FLEDGE)", + "url": "https://wicg.github.io/turtledove/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Protected Audience", + "text": "Table of Contents", + "url": "https://wicg.github.io/turtledove/#toc" + } + }, + "#trusted-bidder-signals-batcher": { + "current": { + "number": "14.6", + "spec": "Protected Audience", + "text": "Trusted bidding signals batcher", + "url": "https://wicg.github.io/turtledove/#trusted-bidder-signals-batcher" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-ua-client-hints.json b/bikeshed/spec-data/readonly/headings/headings-ua-client-hints.json index b0af2188cf..4951ad962f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-ua-client-hints.json +++ b/bikeshed/spec-data/readonly/headings/headings-ua-client-hints.json @@ -207,17 +207,25 @@ "url": "https://wicg.github.io/ua-client-hints/#iana-bitness" } }, - "#iana-full-version": { + "#iana-form-factors": { "current": { "number": "7.4", "spec": "User-Agent Client Hints", + "text": "'Sec-CH-UA-Form-Factors' Header Field", + "url": "https://wicg.github.io/ua-client-hints/#iana-form-factors" + } + }, + "#iana-full-version": { + "current": { + "number": "7.5", + "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-Full-Version' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-full-version" } }, "#iana-full-version-list": { "current": { - "number": "7.5", + "number": "7.6", "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-Full-Version-List' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-full-version-list" @@ -225,7 +233,7 @@ }, "#iana-mobile": { "current": { - "number": "7.6", + "number": "7.7", "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-Mobile' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-mobile" @@ -233,7 +241,7 @@ }, "#iana-model": { "current": { - "number": "7.7", + "number": "7.8", "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-Model' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-model" @@ -241,7 +249,7 @@ }, "#iana-platform": { "current": { - "number": "7.8", + "number": "7.9", "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-Platform' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-platform" @@ -249,7 +257,7 @@ }, "#iana-platform-version": { "current": { - "number": "7.9", + "number": "7.10", "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-Platform-Version' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-platform-version" @@ -265,7 +273,7 @@ }, "#iana-user-agent": { "current": { - "number": "7.11", + "number": "7.12", "spec": "User-Agent Client Hints", "text": "'User-Agent' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-user-agent" @@ -273,7 +281,7 @@ }, "#iana-wow64": { "current": { - "number": "7.10", + "number": "7.11", "spec": "User-Agent Client Hints", "text": "'Sec-CH-UA-WoW64' Header Field", "url": "https://wicg.github.io/ua-client-hints/#iana-wow64" @@ -479,17 +487,25 @@ "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-bitness" } }, - "#sec-ch-ua-full-version": { + "#sec-ch-ua-form-factors": { "current": { "number": "3.4", "spec": "User-Agent Client Hints", + "text": "The 'Sec-CH-UA-Form-Factors' Header Field", + "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors" + } + }, + "#sec-ch-ua-full-version": { + "current": { + "number": "3.5", + "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-Full-Version' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-full-version" } }, "#sec-ch-ua-full-version-list": { "current": { - "number": "3.5", + "number": "3.6", "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-Full-Version-List' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-full-version-list" @@ -497,7 +513,7 @@ }, "#sec-ch-ua-mobile": { "current": { - "number": "3.6", + "number": "3.7", "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-Mobile' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-mobile" @@ -505,7 +521,7 @@ }, "#sec-ch-ua-model": { "current": { - "number": "3.7", + "number": "3.8", "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-Model' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-model" @@ -513,7 +529,7 @@ }, "#sec-ch-ua-platform": { "current": { - "number": "3.8", + "number": "3.9", "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-Platform' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-platform" @@ -521,7 +537,7 @@ }, "#sec-ch-ua-platform-version": { "current": { - "number": "3.9", + "number": "3.10", "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-Platform-Version' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-platform-version" @@ -529,7 +545,7 @@ }, "#sec-ch-ua-wow64": { "current": { - "number": "3.10", + "number": "3.11", "spec": "User-Agent Client Hints", "text": "The 'Sec-CH-UA-WoW64' Header Field", "url": "https://wicg.github.io/ua-client-hints/#sec-ch-ua-wow64" @@ -622,5 +638,21 @@ "text": "Vulnerability filtering", "url": "https://wicg.github.io/ua-client-hints/#vulnerability-filtering-use-case" } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "User-Agent Client Hints", + "text": "Conformance", + "url": "https://wicg.github.io/ua-client-hints/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "User-Agent Client Hints", + "text": "Document conventions", + "url": "https://wicg.github.io/ua-client-hints/#w3c-conventions" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-uievents-code.json b/bikeshed/spec-data/readonly/headings/headings-uievents-code.json index eb81585efc..7de18d6f89 100644 --- a/bikeshed/spec-data/readonly/headings/headings-uievents-code.json +++ b/bikeshed/spec-data/readonly/headings/headings-uievents-code.json @@ -19,6 +19,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Accessibility", "url": "https://w3c.github.io/uievents-code/#accessibility" + }, + "snapshot": { + "number": "4", + "spec": "UI Events KeyboardEvent code Values", + "text": "Accessibility", + "url": "https://www.w3.org/TR/uievents-code/#accessibility" } }, "#acknowledgements-contributors": { @@ -29,7 +35,7 @@ "url": "https://w3c.github.io/uievents-code/#acknowledgements-contributors" }, "snapshot": { - "number": "4", + "number": "8", "spec": "UI Events KeyboardEvent code Values", "text": "Acknowledgements", "url": "https://www.w3.org/TR/uievents-code/#acknowledgements-contributors" @@ -49,36 +55,18 @@ "url": "https://www.w3.org/TR/uievents-code/#code-value-tables" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent code Values", - "text": "Conformance", - "url": "https://www.w3.org/TR/uievents-code/#conformance" - } - }, - "#conformant-algorithms": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent code Values", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/uievents-code/#conformant-algorithms" - } - }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent code Values", - "text": "Document conventions", - "url": "https://www.w3.org/TR/uievents-code/#conventions" - } - }, "#i18n": { "current": { "number": "5", "spec": "UI Events KeyboardEvent code Values", "text": "I18n", "url": "https://w3c.github.io/uievents-code/#i18n" + }, + "snapshot": { + "number": "5", + "spec": "UI Events KeyboardEvent code Values", + "text": "I18n", + "url": "https://www.w3.org/TR/uievents-code/#i18n" } }, "#index": { @@ -159,7 +147,7 @@ "url": "https://w3c.github.io/uievents-code/#key-alphanumeric-functional" }, "snapshot": { - "number": "3.1.1.2", + "number": "3.1.2", "spec": "UI Events KeyboardEvent code Values", "text": "Functional Keys", "url": "https://www.w3.org/TR/uievents-code/#key-alphanumeric-functional" @@ -173,7 +161,7 @@ "url": "https://w3c.github.io/uievents-code/#key-alphanumeric-section" }, "snapshot": { - "number": "3.1.1", + "number": "3.1", "spec": "UI Events KeyboardEvent code Values", "text": "Alphanumeric Section", "url": "https://www.w3.org/TR/uievents-code/#key-alphanumeric-section" @@ -187,7 +175,7 @@ "url": "https://w3c.github.io/uievents-code/#key-alphanumeric-writing-system" }, "snapshot": { - "number": "3.1.1.1", + "number": "3.1.1", "spec": "UI Events KeyboardEvent code Values", "text": "Writing System Keys", "url": "https://www.w3.org/TR/uievents-code/#key-alphanumeric-writing-system" @@ -201,7 +189,7 @@ "url": "https://w3c.github.io/uievents-code/#key-arrowpad-section" }, "snapshot": { - "number": "3.1.3", + "number": "3.3", "spec": "UI Events KeyboardEvent code Values", "text": "Arrow Pad Section", "url": "https://www.w3.org/TR/uievents-code/#key-arrowpad-section" @@ -215,7 +203,7 @@ "url": "https://w3c.github.io/uievents-code/#key-controlpad-section" }, "snapshot": { - "number": "3.1.2", + "number": "3.2", "spec": "UI Events KeyboardEvent code Values", "text": "Control Pad Section", "url": "https://www.w3.org/TR/uievents-code/#key-controlpad-section" @@ -229,7 +217,7 @@ "url": "https://w3c.github.io/uievents-code/#key-function-section" }, "snapshot": { - "number": "3.1.5", + "number": "3.5", "spec": "UI Events KeyboardEvent code Values", "text": "Function Section", "url": "https://www.w3.org/TR/uievents-code/#key-function-section" @@ -243,7 +231,7 @@ "url": "https://w3c.github.io/uievents-code/#key-legacy" }, "snapshot": { - "number": "3.1.7", + "number": "3.7", "spec": "UI Events KeyboardEvent code Values", "text": "Legacy, Non-Standard and Special Keys", "url": "https://www.w3.org/TR/uievents-code/#key-legacy" @@ -257,7 +245,7 @@ "url": "https://w3c.github.io/uievents-code/#key-media" }, "snapshot": { - "number": "3.1.6", + "number": "3.6", "spec": "UI Events KeyboardEvent code Values", "text": "Media Keys", "url": "https://www.w3.org/TR/uievents-code/#key-media" @@ -271,7 +259,7 @@ "url": "https://w3c.github.io/uievents-code/#key-numpad-section" }, "snapshot": { - "number": "3.1.4", + "number": "3.4", "spec": "UI Events KeyboardEvent code Values", "text": "Numpad Section", "url": "https://www.w3.org/TR/uievents-code/#key-numpad-section" @@ -389,14 +377,6 @@ "url": "https://www.w3.org/TR/uievents-code/#keyboard-common-layouts" } }, - "#keyboard-key-codes": { - "snapshot": { - "number": "3.1", - "spec": "UI Events KeyboardEvent code Values", - "text": "Key Codes for Standard Keyboards", - "url": "https://www.w3.org/TR/uievents-code/#keyboard-key-codes" - } - }, "#keyboard-laptops": { "current": { "number": "2.1.9", @@ -487,6 +467,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Keyboard Layouts For Other Locales", "url": "https://w3c.github.io/uievents-code/#other-locales" + }, + "snapshot": { + "number": "2.1.10", + "spec": "UI Events KeyboardEvent code Values", + "text": "Keyboard Layouts For Other Locales", + "url": "https://www.w3.org/TR/uievents-code/#other-locales" } }, "#privacy": { @@ -495,6 +481,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Privacy Considerations", "url": "https://w3c.github.io/uievents-code/#privacy" + }, + "snapshot": { + "number": "7", + "spec": "UI Events KeyboardEvent code Values", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/uievents-code/#privacy" } }, "#references": { @@ -531,6 +523,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Security Considerations", "url": "https://w3c.github.io/uievents-code/#security" + }, + "snapshot": { + "number": "6", + "spec": "UI Events KeyboardEvent code Values", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/uievents-code/#security" } }, "#sotd": { @@ -539,14 +537,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Status of this document", "url": "https://w3c.github.io/uievents-code/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "UI Events KeyboardEvent code Values", "text": "Status of this document", - "url": "https://www.w3.org/TR/uievents-code/#status" + "url": "https://www.w3.org/TR/uievents-code/#sotd" } }, "#style-conventions": { @@ -563,14 +559,6 @@ "url": "https://www.w3.org/TR/uievents-code/#style-conventions" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent code Values", - "text": "W3C Candidate Recommendation, 01 June 2017", - "url": "https://www.w3.org/TR/uievents-code/#subtitle" - } - }, "#toc": { "current": { "number": "", @@ -591,6 +579,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Conformance", "url": "https://w3c.github.io/uievents-code/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "UI Events KeyboardEvent code Values", + "text": "Conformance", + "url": "https://www.w3.org/TR/uievents-code/#w3c-conformance" } }, "#w3c-conformant-algorithms": { @@ -599,6 +593,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Conformant Algorithms", "url": "https://w3c.github.io/uievents-code/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "UI Events KeyboardEvent code Values", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/uievents-code/#w3c-conformant-algorithms" } }, "#w3c-conventions": { @@ -607,6 +607,12 @@ "spec": "UI Events KeyboardEvent code Values", "text": "Document conventions", "url": "https://w3c.github.io/uievents-code/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "UI Events KeyboardEvent code Values", + "text": "Document conventions", + "url": "https://www.w3.org/TR/uievents-code/#w3c-conventions" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-uievents-key.json b/bikeshed/spec-data/readonly/headings/headings-uievents-key.json index 9db2fdd02b..0d32c957a0 100644 --- a/bikeshed/spec-data/readonly/headings/headings-uievents-key.json +++ b/bikeshed/spec-data/readonly/headings/headings-uievents-key.json @@ -19,6 +19,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Accessibility", "url": "https://w3c.github.io/uievents-key/#accessibility" + }, + "snapshot": { + "number": "4", + "spec": "UI Events KeyboardEvent key Values", + "text": "Accessibility", + "url": "https://www.w3.org/TR/uievents-key/#accessibility" } }, "#acknowledgements-contributors": { @@ -29,28 +35,12 @@ "url": "https://w3c.github.io/uievents-key/#acknowledgements-contributors" }, "snapshot": { - "number": "4", + "number": "8", "spec": "UI Events KeyboardEvent key Values", "text": "Acknowledgements", "url": "https://www.w3.org/TR/uievents-key/#acknowledgements-contributors" } }, - "#conformance": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent key Values", - "text": "Conformance", - "url": "https://www.w3.org/TR/uievents-key/#conformance" - } - }, - "#conformant-algorithms": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent key Values", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/uievents-key/#conformant-algorithms" - } - }, "#control": { "current": { "number": "2.1.1", @@ -65,14 +55,6 @@ "url": "https://www.w3.org/TR/uievents-key/#control" } }, - "#conventions": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent key Values", - "text": "Document conventions", - "url": "https://www.w3.org/TR/uievents-key/#conventions" - } - }, "#h-clipboard-read": { "current": { "number": "2.2.1", @@ -93,6 +75,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "I18n", "url": "https://w3c.github.io/uievents-key/#i18n" + }, + "snapshot": { + "number": "5", + "spec": "UI Events KeyboardEvent key Values", + "text": "I18n", + "url": "https://www.w3.org/TR/uievents-key/#i18n" } }, "#index": { @@ -479,6 +467,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Privacy Considerations", "url": "https://w3c.github.io/uievents-key/#privacy" + }, + "snapshot": { + "number": "7", + "spec": "UI Events KeyboardEvent key Values", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/uievents-key/#privacy" } }, "#references": { @@ -501,6 +495,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Security Considerations", "url": "https://w3c.github.io/uievents-key/#security" + }, + "snapshot": { + "number": "6", + "spec": "UI Events KeyboardEvent key Values", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/uievents-key/#security" } }, "#selecting-key-attribute-values": { @@ -523,14 +523,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Status of this document", "url": "https://w3c.github.io/uievents-key/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "UI Events KeyboardEvent key Values", "text": "Status of this document", - "url": "https://www.w3.org/TR/uievents-key/#status" + "url": "https://www.w3.org/TR/uievents-key/#sotd" } }, "#style-conventions": { @@ -547,14 +545,6 @@ "url": "https://www.w3.org/TR/uievents-key/#style-conventions" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "UI Events KeyboardEvent key Values", - "text": "W3C Candidate Recommendation, 01 June 2017", - "url": "https://www.w3.org/TR/uievents-key/#subtitle" - } - }, "#toc": { "current": { "number": "", @@ -575,6 +565,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Conformance", "url": "https://w3c.github.io/uievents-key/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "UI Events KeyboardEvent key Values", + "text": "Conformance", + "url": "https://www.w3.org/TR/uievents-key/#w3c-conformance" } }, "#w3c-conformant-algorithms": { @@ -583,6 +579,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Conformant Algorithms", "url": "https://w3c.github.io/uievents-key/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "UI Events KeyboardEvent key Values", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/uievents-key/#w3c-conformant-algorithms" } }, "#w3c-conventions": { @@ -591,6 +593,12 @@ "spec": "UI Events KeyboardEvent key Values", "text": "Document conventions", "url": "https://w3c.github.io/uievents-key/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "UI Events KeyboardEvent key Values", + "text": "Document conventions", + "url": "https://www.w3.org/TR/uievents-key/#w3c-conventions" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-uievents.json b/bikeshed/spec-data/readonly/headings/headings-uievents.json index 46ddbc4cee..0cc9246c84 100644 --- a/bikeshed/spec-data/readonly/headings/headings-uievents.json +++ b/bikeshed/spec-data/readonly/headings/headings-uievents.json @@ -17,137 +17,67 @@ "current": { "number": "", "spec": "UI Events", - "text": "13. Acknowledgements", + "text": "11. Acknowledgements", "url": "https://w3c.github.io/uievents/#acknowledgements-contributors" }, "snapshot": { "number": "", "spec": "UI Events", - "text": "13. Acknowledgements", + "text": "11. Acknowledgements", "url": "https://www.w3.org/TR/uievents/#acknowledgements-contributors" } }, - "#cancelability-of-wheel-events": { - "current": { - "number": "5.4.2.2", - "spec": "UI Events", - "text": "cancelability of wheel events", - "url": "https://w3c.github.io/uievents/#cancelability-of-wheel-events" - }, - "snapshot": { - "number": "5.4.2.2", - "spec": "UI Events", - "text": "cancelability of wheel events", - "url": "https://www.w3.org/TR/uievents/#cancelability-of-wheel-events" - } - }, - "#changes-DOMEvents2to3Changes": { - "current": { - "number": "12.1", - "spec": "UI Events", - "text": "Changes between DOM Level 2 Events and UI Events", - "url": "https://w3c.github.io/uievents/#changes-DOMEvents2to3Changes" - }, - "snapshot": { - "number": "12.1", - "spec": "UI Events", - "text": "Changes between DOM Level 2 Events and UI Events", - "url": "https://www.w3.org/TR/uievents/#changes-DOMEvents2to3Changes" - } - }, - "#changes-DOMEvents2to3Changes-event-types": { - "current": { - "number": "12.1.2", - "spec": "UI Events", - "text": "Changes to DOM Level 2 event types", - "url": "https://w3c.github.io/uievents/#changes-DOMEvents2to3Changes-event-types" - }, - "snapshot": { - "number": "12.1.2", - "spec": "UI Events", - "text": "Changes to DOM Level 2 event types", - "url": "https://www.w3.org/TR/uievents/#changes-DOMEvents2to3Changes-event-types" - } - }, - "#changes-DOMEvents2to3Changes-flow": { - "current": { - "number": "12.1.1", - "spec": "UI Events", - "text": "Changes to DOM Level 2 event flow", - "url": "https://w3c.github.io/uievents/#changes-DOMEvents2to3Changes-flow" - }, - "snapshot": { - "number": "12.1.1", - "spec": "UI Events", - "text": "Changes to DOM Level 2 event flow", - "url": "https://www.w3.org/TR/uievents/#changes-DOMEvents2to3Changes-flow" - } - }, - "#changes-DOMLevel2to3Changes": { - "current": { - "number": "12.1.3", - "spec": "UI Events", - "text": "Changes to DOM Level 2 Events interfaces", - "url": "https://w3c.github.io/uievents/#changes-DOMLevel2to3Changes" - }, - "snapshot": { - "number": "12.1.3", - "spec": "UI Events", - "text": "Changes to DOM Level 2 Events interfaces", - "url": "https://www.w3.org/TR/uievents/#changes-DOMLevel2to3Changes" - } - }, - "#changes-DOMLevel3Addons": { + "#calculate-dom-path-id": { "current": { - "number": "12.1.4", + "number": "5.1.2", "spec": "UI Events", - "text": "New Interfaces", - "url": "https://w3c.github.io/uievents/#changes-DOMLevel3Addons" + "text": "calculate DOM path", + "url": "https://w3c.github.io/uievents/#calculate-dom-path-id" }, "snapshot": { - "number": "12.1.4", + "number": "5.1.2", "spec": "UI Events", - "text": "New Interfaces", - "url": "https://www.w3.org/TR/uievents/#changes-DOMLevel3Addons" + "text": "calculate DOM path", + "url": "https://www.w3.org/TR/uievents/#calculate-dom-path-id" } }, - "#changes-drafts": { + "#calculate-mouseevent-button-attribute-id": { "current": { - "number": "12.2", + "number": "3.4.3.8", "spec": "UI Events", - "text": "Changes between different drafts of UI Events", - "url": "https://w3c.github.io/uievents/#changes-drafts" + "text": "calculate MouseEvent button attribute", + "url": "https://w3c.github.io/uievents/#calculate-mouseevent-button-attribute-id" }, "snapshot": { - "number": "12.2", + "number": "3.4.3.8", "spec": "UI Events", - "text": "Changes between different drafts of UI Events", - "url": "https://www.w3.org/TR/uievents/#changes-drafts" + "text": "calculate MouseEvent button attribute", + "url": "https://www.w3.org/TR/uievents/#calculate-mouseevent-button-attribute-id" } }, - "#changes-from-earlier-versions": { + "#cancelability-of-wheel-events": { "current": { - "number": "", + "number": "3.5.2.2", "spec": "UI Events", - "text": "12. Changes", - "url": "https://w3c.github.io/uievents/#changes-from-earlier-versions" + "text": "cancelability of wheel events", + "url": "https://w3c.github.io/uievents/#cancelability-of-wheel-events" }, "snapshot": { - "number": "", + "number": "3.5.2.2", "spec": "UI Events", - "text": "12. Changes", - "url": "https://www.w3.org/TR/uievents/#changes-from-earlier-versions" + "text": "cancelability of wheel events", + "url": "https://www.w3.org/TR/uievents/#cancelability-of-wheel-events" } }, "#code-examples": { "current": { - "number": "6.2.3", + "number": "4.2.3", "spec": "UI Events", "text": "code Examples", "url": "https://w3c.github.io/uievents/#code-examples" }, "snapshot": { - "number": "6.2.3", + "number": "4.2.3", "spec": "UI Events", "text": "code Examples", "url": "https://www.w3.org/TR/uievents/#code-examples" @@ -155,13 +85,13 @@ }, "#code-motivation": { "current": { - "number": "6.2.1", + "number": "4.2.1", "spec": "UI Events", "text": "Motivation for the code Attribute", "url": "https://w3c.github.io/uievents/#code-motivation" }, "snapshot": { - "number": "6.2.1", + "number": "4.2.1", "spec": "UI Events", "text": "Motivation for the code Attribute", "url": "https://www.w3.org/TR/uievents/#code-motivation" @@ -169,13 +99,13 @@ }, "#code-virtual-keyboards": { "current": { - "number": "6.2.4", + "number": "4.2.4", "spec": "UI Events", "text": "code and Virtual Keyboards", "url": "https://w3c.github.io/uievents/#code-virtual-keyboards" }, "snapshot": { - "number": "6.2.4", + "number": "4.2.4", "spec": "UI Events", "text": "code and Virtual Keyboards", "url": "https://www.w3.org/TR/uievents/#code-virtual-keyboards" @@ -237,113 +167,99 @@ "url": "https://www.w3.org/TR/uievents/#conf-specs" } }, - "#determine-keydown-keyup-keyCode": { - "current": { - "number": "8.3.1", - "spec": "UI Events", - "text": "How to determine keyCode for keydown and keyup events", - "url": "https://w3c.github.io/uievents/#determine-keydown-keyup-keyCode" - }, - "snapshot": { - "number": "8.3.1", - "spec": "UI Events", - "text": "How to determine keyCode for keydown and keyup events", - "url": "https://www.w3.org/TR/uievents/#determine-keydown-keyup-keyCode" - } - }, - "#determine-keypress-keyCode": { + "#create-a-cancelable-mouseevent-id": { "current": { - "number": "8.3.2", + "number": "3.4.3.6", "spec": "UI Events", - "text": "How to determine keyCode for keypress events", - "url": "https://w3c.github.io/uievents/#determine-keypress-keyCode" + "text": "create a cancelable MouseEvent", + "url": "https://w3c.github.io/uievents/#create-a-cancelable-mouseevent-id" }, "snapshot": { - "number": "8.3.2", + "number": "3.4.3.6", "spec": "UI Events", - "text": "How to determine keyCode for keypress events", - "url": "https://www.w3.org/TR/uievents/#determine-keypress-keyCode" + "text": "create a cancelable MouseEvent", + "url": "https://www.w3.org/TR/uievents/#create-a-cancelable-mouseevent-id" } }, - "#dom-event-architecture": { + "#create-a-non-cancelable-mouseevent-id": { "current": { - "number": "3", + "number": "3.4.3.7", "spec": "UI Events", - "text": "DOM Event Architecture", - "url": "https://w3c.github.io/uievents/#dom-event-architecture" + "text": "create a non-cancelable MouseEvent", + "url": "https://w3c.github.io/uievents/#create-a-non-cancelable-mouseevent-id" }, "snapshot": { - "number": "3", + "number": "3.4.3.7", "spec": "UI Events", - "text": "DOM Event Architecture", - "url": "https://www.w3.org/TR/uievents/#dom-event-architecture" + "text": "create a non-cancelable MouseEvent", + "url": "https://www.w3.org/TR/uievents/#create-a-non-cancelable-mouseevent-id" } }, - "#event-constructors": { + "#create-a-pointerevent-id": { "current": { - "number": "3.6", + "number": "5.3.2", "spec": "UI Events", - "text": "Constructing Mouse and Keyboard Events", - "url": "https://w3c.github.io/uievents/#event-constructors" + "text": "create a PointerEvent", + "url": "https://w3c.github.io/uievents/#create-a-pointerevent-id" }, "snapshot": { - "number": "3.6", + "number": "5.3.2", "spec": "UI Events", - "text": "Constructing Mouse and Keyboard Events", - "url": "https://www.w3.org/TR/uievents/#event-constructors" + "text": "create a PointerEvent", + "url": "https://www.w3.org/TR/uievents/#create-a-pointerevent-id" } }, - "#event-flow": { + "#create-pointerevent-from-mouseevent-id": { "current": { - "number": "3.1", + "number": "5.3.3", "spec": "UI Events", - "text": "Event dispatch and DOM event flow", - "url": "https://w3c.github.io/uievents/#event-flow" + "text": "create PointerEvent from MouseEvent", + "url": "https://w3c.github.io/uievents/#create-pointerevent-from-mouseevent-id" }, "snapshot": { - "number": "3.1", + "number": "5.3.3", "spec": "UI Events", - "text": "Event dispatch and DOM event flow", - "url": "https://www.w3.org/TR/uievents/#event-flow" + "text": "create PointerEvent from MouseEvent", + "url": "https://www.w3.org/TR/uievents/#create-pointerevent-from-mouseevent-id" } }, - "#event-flow-activation": { + "#determine-keydown-keyup-keyCode": { "current": { - "number": "3.5", + "number": "7.3.1", "spec": "UI Events", - "text": "Activation triggers and behavior", - "url": "https://w3c.github.io/uievents/#event-flow-activation" + "text": "How to determine keyCode for keydown and keyup events", + "url": "https://w3c.github.io/uievents/#determine-keydown-keyup-keyCode" }, "snapshot": { - "number": "3.5", + "number": "7.3.1", "spec": "UI Events", - "text": "Activation triggers and behavior", - "url": "https://www.w3.org/TR/uievents/#event-flow-activation" + "text": "How to determine keyCode for keydown and keyup events", + "url": "https://www.w3.org/TR/uievents/#determine-keydown-keyup-keyCode" } }, - "#event-flow-default-cancel": { + "#determine-keypress-keyCode": { "current": { - "number": "3.2", + "number": "7.3.2", "spec": "UI Events", - "text": "Default actions and cancelable events", - "url": "https://w3c.github.io/uievents/#event-flow-default-cancel" + "text": "How to determine keyCode for keypress events", + "url": "https://w3c.github.io/uievents/#determine-keypress-keyCode" }, "snapshot": { - "number": "3.2", + "number": "7.3.2", "spec": "UI Events", - "text": "Default actions and cancelable events", - "url": "https://www.w3.org/TR/uievents/#event-flow-default-cancel" + "text": "How to determine keyCode for keypress events", + "url": "https://www.w3.org/TR/uievents/#determine-keypress-keyCode" } }, "#event-interfaces": { "current": { - "number": "4", + "number": "3", "spec": "UI Events", "text": "Basic Event Interfaces", "url": "https://w3c.github.io/uievents/#event-interfaces" }, "snapshot": { - "number": "4", + "number": "3", "spec": "UI Events", "text": "Basic Event Interfaces", "url": "https://www.w3.org/TR/uievents/#event-interfaces" @@ -351,13 +267,13 @@ }, "#event-modifier-initializers": { "current": { - "number": "5.3.2", + "number": "3.4.2", "spec": "UI Events", "text": "Event Modifier Initializers", "url": "https://w3c.github.io/uievents/#event-modifier-initializers" }, "snapshot": { - "number": "5.3.2", + "number": "3.4.2", "spec": "UI Events", "text": "Event Modifier Initializers", "url": "https://www.w3.org/TR/uievents/#event-modifier-initializers" @@ -365,13 +281,13 @@ }, "#event-type-DOMActivate": { "current": { - "number": "9.1.1.1", + "number": "8.1.1.1", "spec": "UI Events", "text": "DOMActivate", "url": "https://w3c.github.io/uievents/#event-type-DOMActivate" }, "snapshot": { - "number": "9.1.1.1", + "number": "8.1.1.1", "spec": "UI Events", "text": "DOMActivate", "url": "https://www.w3.org/TR/uievents/#event-type-DOMActivate" @@ -379,13 +295,13 @@ }, "#event-type-DOMAttrModified": { "current": { - "number": "9.4.2.1", + "number": "8.5.2.1", "spec": "UI Events", "text": "DOMAttrModified", "url": "https://w3c.github.io/uievents/#event-type-DOMAttrModified" }, "snapshot": { - "number": "9.4.2.1", + "number": "8.5.2.1", "spec": "UI Events", "text": "DOMAttrModified", "url": "https://www.w3.org/TR/uievents/#event-type-DOMAttrModified" @@ -393,13 +309,13 @@ }, "#event-type-DOMCharacterDataModified": { "current": { - "number": "9.4.2.2", + "number": "8.5.2.2", "spec": "UI Events", "text": "DOMCharacterDataModified", "url": "https://w3c.github.io/uievents/#event-type-DOMCharacterDataModified" }, "snapshot": { - "number": "9.4.2.2", + "number": "8.5.2.2", "spec": "UI Events", "text": "DOMCharacterDataModified", "url": "https://www.w3.org/TR/uievents/#event-type-DOMCharacterDataModified" @@ -407,13 +323,13 @@ }, "#event-type-DOMFocusIn": { "current": { - "number": "9.2.1.1", + "number": "8.2.1.1", "spec": "UI Events", "text": "DOMFocusIn", "url": "https://w3c.github.io/uievents/#event-type-DOMFocusIn" }, "snapshot": { - "number": "9.2.1.1", + "number": "8.2.1.1", "spec": "UI Events", "text": "DOMFocusIn", "url": "https://www.w3.org/TR/uievents/#event-type-DOMFocusIn" @@ -421,13 +337,13 @@ }, "#event-type-DOMFocusOut": { "current": { - "number": "9.2.1.2", + "number": "8.2.1.2", "spec": "UI Events", "text": "DOMFocusOut", "url": "https://w3c.github.io/uievents/#event-type-DOMFocusOut" }, "snapshot": { - "number": "9.2.1.2", + "number": "8.2.1.2", "spec": "UI Events", "text": "DOMFocusOut", "url": "https://www.w3.org/TR/uievents/#event-type-DOMFocusOut" @@ -435,13 +351,13 @@ }, "#event-type-DOMNodeInserted": { "current": { - "number": "9.4.2.3", + "number": "8.5.2.3", "spec": "UI Events", "text": "DOMNodeInserted", "url": "https://w3c.github.io/uievents/#event-type-DOMNodeInserted" }, "snapshot": { - "number": "9.4.2.3", + "number": "8.5.2.3", "spec": "UI Events", "text": "DOMNodeInserted", "url": "https://www.w3.org/TR/uievents/#event-type-DOMNodeInserted" @@ -449,13 +365,13 @@ }, "#event-type-DOMNodeInsertedIntoDocument": { "current": { - "number": "9.4.2.4", + "number": "8.5.2.4", "spec": "UI Events", "text": "DOMNodeInsertedIntoDocument", "url": "https://w3c.github.io/uievents/#event-type-DOMNodeInsertedIntoDocument" }, "snapshot": { - "number": "9.4.2.4", + "number": "8.5.2.4", "spec": "UI Events", "text": "DOMNodeInsertedIntoDocument", "url": "https://www.w3.org/TR/uievents/#event-type-DOMNodeInsertedIntoDocument" @@ -463,13 +379,13 @@ }, "#event-type-DOMNodeRemoved": { "current": { - "number": "9.4.2.5", + "number": "8.5.2.5", "spec": "UI Events", "text": "DOMNodeRemoved", "url": "https://w3c.github.io/uievents/#event-type-DOMNodeRemoved" }, "snapshot": { - "number": "9.4.2.5", + "number": "8.5.2.5", "spec": "UI Events", "text": "DOMNodeRemoved", "url": "https://www.w3.org/TR/uievents/#event-type-DOMNodeRemoved" @@ -477,13 +393,13 @@ }, "#event-type-DOMNodeRemovedFromDocument": { "current": { - "number": "9.4.2.6", + "number": "8.5.2.6", "spec": "UI Events", "text": "DOMNodeRemovedFromDocument", "url": "https://w3c.github.io/uievents/#event-type-DOMNodeRemovedFromDocument" }, "snapshot": { - "number": "9.4.2.6", + "number": "8.5.2.6", "spec": "UI Events", "text": "DOMNodeRemovedFromDocument", "url": "https://www.w3.org/TR/uievents/#event-type-DOMNodeRemovedFromDocument" @@ -491,13 +407,13 @@ }, "#event-type-DOMSubtreeModified": { "current": { - "number": "9.4.2.7", + "number": "8.5.2.7", "spec": "UI Events", "text": "DOMSubtreeModified", "url": "https://w3c.github.io/uievents/#event-type-DOMSubtreeModified" }, "snapshot": { - "number": "9.4.2.7", + "number": "8.5.2.7", "spec": "UI Events", "text": "DOMSubtreeModified", "url": "https://www.w3.org/TR/uievents/#event-type-DOMSubtreeModified" @@ -505,13 +421,13 @@ }, "#event-type-abort": { "current": { - "number": "5.1.2.3", + "number": "3.2.3.3", "spec": "UI Events", "text": "abort", "url": "https://w3c.github.io/uievents/#event-type-abort" }, "snapshot": { - "number": "5.1.2.3", + "number": "3.2.3.3", "spec": "UI Events", "text": "abort", "url": "https://www.w3.org/TR/uievents/#event-type-abort" @@ -519,13 +435,13 @@ }, "#event-type-auxclick": { "current": { - "number": "5.3.4.1", + "number": "3.4.5.1", "spec": "UI Events", "text": "auxclick", "url": "https://w3c.github.io/uievents/#event-type-auxclick" }, "snapshot": { - "number": "5.3.4.1", + "number": "3.4.5.1", "spec": "UI Events", "text": "auxclick", "url": "https://www.w3.org/TR/uievents/#event-type-auxclick" @@ -533,13 +449,13 @@ }, "#event-type-beforeinput": { "current": { - "number": "5.5.3.1", + "number": "3.6.3.1", "spec": "UI Events", "text": "beforeinput", "url": "https://w3c.github.io/uievents/#event-type-beforeinput" }, "snapshot": { - "number": "5.5.3.1", + "number": "3.6.3.1", "spec": "UI Events", "text": "beforeinput", "url": "https://www.w3.org/TR/uievents/#event-type-beforeinput" @@ -547,13 +463,13 @@ }, "#event-type-blur": { "current": { - "number": "5.2.4.1", + "number": "3.3.4.1", "spec": "UI Events", "text": "blur", "url": "https://w3c.github.io/uievents/#event-type-blur" }, "snapshot": { - "number": "5.2.4.1", + "number": "3.3.4.1", "spec": "UI Events", "text": "blur", "url": "https://www.w3.org/TR/uievents/#event-type-blur" @@ -561,13 +477,13 @@ }, "#event-type-click": { "current": { - "number": "5.3.4.2", + "number": "3.4.5.2", "spec": "UI Events", "text": "click", "url": "https://w3c.github.io/uievents/#event-type-click" }, "snapshot": { - "number": "5.3.4.2", + "number": "3.4.5.2", "spec": "UI Events", "text": "click", "url": "https://www.w3.org/TR/uievents/#event-type-click" @@ -575,13 +491,13 @@ }, "#event-type-compositionend": { "current": { - "number": "5.7.7.3", + "number": "3.8.7.3", "spec": "UI Events", "text": "compositionend", "url": "https://w3c.github.io/uievents/#event-type-compositionend" }, "snapshot": { - "number": "5.7.7.3", + "number": "3.8.7.3", "spec": "UI Events", "text": "compositionend", "url": "https://www.w3.org/TR/uievents/#event-type-compositionend" @@ -589,13 +505,13 @@ }, "#event-type-compositionstart": { "current": { - "number": "5.7.7.1", + "number": "3.8.7.1", "spec": "UI Events", "text": "compositionstart", "url": "https://w3c.github.io/uievents/#event-type-compositionstart" }, "snapshot": { - "number": "5.7.7.1", + "number": "3.8.7.1", "spec": "UI Events", "text": "compositionstart", "url": "https://www.w3.org/TR/uievents/#event-type-compositionstart" @@ -603,13 +519,13 @@ }, "#event-type-compositionupdate": { "current": { - "number": "5.7.7.2", + "number": "3.8.7.2", "spec": "UI Events", "text": "compositionupdate", "url": "https://w3c.github.io/uievents/#event-type-compositionupdate" }, "snapshot": { - "number": "5.7.7.2", + "number": "3.8.7.2", "spec": "UI Events", "text": "compositionupdate", "url": "https://www.w3.org/TR/uievents/#event-type-compositionupdate" @@ -617,13 +533,13 @@ }, "#event-type-contextmenu": { "current": { - "number": "5.3.4.3", + "number": "3.4.5.3", "spec": "UI Events", "text": "contextmenu", "url": "https://w3c.github.io/uievents/#event-type-contextmenu" }, "snapshot": { - "number": "5.3.4.3", + "number": "3.4.5.3", "spec": "UI Events", "text": "contextmenu", "url": "https://www.w3.org/TR/uievents/#event-type-contextmenu" @@ -631,13 +547,13 @@ }, "#event-type-dblclick": { "current": { - "number": "5.3.4.4", + "number": "3.4.5.4", "spec": "UI Events", "text": "dblclick", "url": "https://w3c.github.io/uievents/#event-type-dblclick" }, "snapshot": { - "number": "5.3.4.4", + "number": "3.4.5.4", "spec": "UI Events", "text": "dblclick", "url": "https://www.w3.org/TR/uievents/#event-type-dblclick" @@ -645,13 +561,13 @@ }, "#event-type-error": { "current": { - "number": "5.1.2.4", + "number": "3.2.3.4", "spec": "UI Events", "text": "error", "url": "https://w3c.github.io/uievents/#event-type-error" }, "snapshot": { - "number": "5.1.2.4", + "number": "3.2.3.4", "spec": "UI Events", "text": "error", "url": "https://www.w3.org/TR/uievents/#event-type-error" @@ -659,13 +575,13 @@ }, "#event-type-focus": { "current": { - "number": "5.2.4.2", + "number": "3.3.4.2", "spec": "UI Events", "text": "focus", "url": "https://w3c.github.io/uievents/#event-type-focus" }, "snapshot": { - "number": "5.2.4.2", + "number": "3.3.4.2", "spec": "UI Events", "text": "focus", "url": "https://www.w3.org/TR/uievents/#event-type-focus" @@ -673,13 +589,13 @@ }, "#event-type-focusin": { "current": { - "number": "5.2.4.3", + "number": "3.3.4.3", "spec": "UI Events", "text": "focusin", "url": "https://w3c.github.io/uievents/#event-type-focusin" }, "snapshot": { - "number": "5.2.4.3", + "number": "3.3.4.3", "spec": "UI Events", "text": "focusin", "url": "https://www.w3.org/TR/uievents/#event-type-focusin" @@ -687,13 +603,13 @@ }, "#event-type-focusout": { "current": { - "number": "5.2.4.4", + "number": "3.3.4.4", "spec": "UI Events", "text": "focusout", "url": "https://w3c.github.io/uievents/#event-type-focusout" }, "snapshot": { - "number": "5.2.4.4", + "number": "3.3.4.4", "spec": "UI Events", "text": "focusout", "url": "https://www.w3.org/TR/uievents/#event-type-focusout" @@ -701,13 +617,13 @@ }, "#event-type-input": { "current": { - "number": "5.5.3.2", + "number": "3.6.3.2", "spec": "UI Events", "text": "input", "url": "https://w3c.github.io/uievents/#event-type-input" }, "snapshot": { - "number": "5.5.3.2", + "number": "3.6.3.2", "spec": "UI Events", "text": "input", "url": "https://www.w3.org/TR/uievents/#event-type-input" @@ -715,13 +631,13 @@ }, "#event-type-keydown": { "current": { - "number": "5.6.4.1", + "number": "3.7.5.1", "spec": "UI Events", "text": "keydown", "url": "https://w3c.github.io/uievents/#event-type-keydown" }, "snapshot": { - "number": "5.6.4.1", + "number": "3.7.5.1", "spec": "UI Events", "text": "keydown", "url": "https://www.w3.org/TR/uievents/#event-type-keydown" @@ -729,13 +645,13 @@ }, "#event-type-keypress": { "current": { - "number": "9.3.1.1", + "number": "8.3.1.1", "spec": "UI Events", "text": "keypress", "url": "https://w3c.github.io/uievents/#event-type-keypress" }, "snapshot": { - "number": "9.3.1.1", + "number": "8.3.1.1", "spec": "UI Events", "text": "keypress", "url": "https://www.w3.org/TR/uievents/#event-type-keypress" @@ -743,13 +659,13 @@ }, "#event-type-keyup": { "current": { - "number": "5.6.4.2", + "number": "3.7.5.2", "spec": "UI Events", "text": "keyup", "url": "https://w3c.github.io/uievents/#event-type-keyup" }, "snapshot": { - "number": "5.6.4.2", + "number": "3.7.5.2", "spec": "UI Events", "text": "keyup", "url": "https://www.w3.org/TR/uievents/#event-type-keyup" @@ -757,13 +673,13 @@ }, "#event-type-load": { "current": { - "number": "5.1.2.1", + "number": "3.2.3.1", "spec": "UI Events", "text": "load", "url": "https://w3c.github.io/uievents/#event-type-load" }, "snapshot": { - "number": "5.1.2.1", + "number": "3.2.3.1", "spec": "UI Events", "text": "load", "url": "https://www.w3.org/TR/uievents/#event-type-load" @@ -771,13 +687,13 @@ }, "#event-type-mousedown": { "current": { - "number": "5.3.4.5", + "number": "3.4.5.5", "spec": "UI Events", "text": "mousedown", "url": "https://w3c.github.io/uievents/#event-type-mousedown" }, "snapshot": { - "number": "5.3.4.5", + "number": "3.4.5.5", "spec": "UI Events", "text": "mousedown", "url": "https://www.w3.org/TR/uievents/#event-type-mousedown" @@ -785,13 +701,13 @@ }, "#event-type-mouseenter": { "current": { - "number": "5.3.4.6", + "number": "3.4.5.6", "spec": "UI Events", "text": "mouseenter", "url": "https://w3c.github.io/uievents/#event-type-mouseenter" }, "snapshot": { - "number": "5.3.4.6", + "number": "3.4.5.6", "spec": "UI Events", "text": "mouseenter", "url": "https://www.w3.org/TR/uievents/#event-type-mouseenter" @@ -799,13 +715,13 @@ }, "#event-type-mouseleave": { "current": { - "number": "5.3.4.7", + "number": "3.4.5.7", "spec": "UI Events", "text": "mouseleave", "url": "https://w3c.github.io/uievents/#event-type-mouseleave" }, "snapshot": { - "number": "5.3.4.7", + "number": "3.4.5.7", "spec": "UI Events", "text": "mouseleave", "url": "https://www.w3.org/TR/uievents/#event-type-mouseleave" @@ -813,13 +729,13 @@ }, "#event-type-mousemove": { "current": { - "number": "5.3.4.8", + "number": "3.4.5.8", "spec": "UI Events", "text": "mousemove", "url": "https://w3c.github.io/uievents/#event-type-mousemove" }, "snapshot": { - "number": "5.3.4.8", + "number": "3.4.5.8", "spec": "UI Events", "text": "mousemove", "url": "https://www.w3.org/TR/uievents/#event-type-mousemove" @@ -827,13 +743,13 @@ }, "#event-type-mouseout": { "current": { - "number": "5.3.4.9", + "number": "3.4.5.9", "spec": "UI Events", "text": "mouseout", "url": "https://w3c.github.io/uievents/#event-type-mouseout" }, "snapshot": { - "number": "5.3.4.9", + "number": "3.4.5.9", "spec": "UI Events", "text": "mouseout", "url": "https://www.w3.org/TR/uievents/#event-type-mouseout" @@ -841,13 +757,13 @@ }, "#event-type-mouseover": { "current": { - "number": "5.3.4.10", + "number": "3.4.5.10", "spec": "UI Events", "text": "mouseover", "url": "https://w3c.github.io/uievents/#event-type-mouseover" }, "snapshot": { - "number": "5.3.4.10", + "number": "3.4.5.10", "spec": "UI Events", "text": "mouseover", "url": "https://www.w3.org/TR/uievents/#event-type-mouseover" @@ -855,13 +771,13 @@ }, "#event-type-mouseup": { "current": { - "number": "5.3.4.11", + "number": "3.4.5.11", "spec": "UI Events", "text": "mouseup", "url": "https://w3c.github.io/uievents/#event-type-mouseup" }, "snapshot": { - "number": "5.3.4.11", + "number": "3.4.5.11", "spec": "UI Events", "text": "mouseup", "url": "https://www.w3.org/TR/uievents/#event-type-mouseup" @@ -869,13 +785,13 @@ }, "#event-type-select": { "current": { - "number": "5.1.2.5", + "number": "3.2.3.5", "spec": "UI Events", "text": "select", "url": "https://w3c.github.io/uievents/#event-type-select" }, "snapshot": { - "number": "5.1.2.5", + "number": "3.2.3.5", "spec": "UI Events", "text": "select", "url": "https://www.w3.org/TR/uievents/#event-type-select" @@ -883,13 +799,13 @@ }, "#event-type-unload": { "current": { - "number": "5.1.2.2", + "number": "3.2.3.2", "spec": "UI Events", "text": "unload", "url": "https://w3c.github.io/uievents/#event-type-unload" }, "snapshot": { - "number": "5.1.2.2", + "number": "3.2.3.2", "spec": "UI Events", "text": "unload", "url": "https://www.w3.org/TR/uievents/#event-type-unload" @@ -897,41 +813,27 @@ }, "#event-type-wheel": { "current": { - "number": "5.4.2.1", + "number": "3.5.2.1", "spec": "UI Events", "text": "wheel", "url": "https://w3c.github.io/uievents/#event-type-wheel" }, "snapshot": { - "number": "5.4.2.1", + "number": "3.5.2.1", "spec": "UI Events", "text": "wheel", "url": "https://www.w3.org/TR/uievents/#event-type-wheel" } }, - "#event-types": { - "current": { - "number": "5", - "spec": "UI Events", - "text": "Event Types", - "url": "https://w3c.github.io/uievents/#event-types" - }, - "snapshot": { - "number": "5", - "spec": "UI Events", - "text": "Event Types", - "url": "https://www.w3.org/TR/uievents/#event-types" - } - }, "#event-types-list": { "current": { - "number": "4.1", + "number": "3.1", "spec": "UI Events", "text": "List of Event Types", "url": "https://w3c.github.io/uievents/#event-types-list" }, "snapshot": { - "number": "4.1", + "number": "3.1", "spec": "UI Events", "text": "List of Event Types", "url": "https://www.w3.org/TR/uievents/#event-types-list" @@ -939,13 +841,13 @@ }, "#events-composition-canceling": { "current": { - "number": "5.7.4", + "number": "3.8.4", "spec": "UI Events", "text": "Canceling Composition Events", "url": "https://w3c.github.io/uievents/#events-composition-canceling" }, "snapshot": { - "number": "5.7.4", + "number": "3.8.4", "spec": "UI Events", "text": "Canceling Composition Events", "url": "https://www.w3.org/TR/uievents/#events-composition-canceling" @@ -953,13 +855,13 @@ }, "#events-composition-handwriting": { "current": { - "number": "5.7.3", + "number": "3.8.3", "spec": "UI Events", "text": "Handwriting Recognition Systems", "url": "https://w3c.github.io/uievents/#events-composition-handwriting" }, "snapshot": { - "number": "5.7.3", + "number": "3.8.3", "spec": "UI Events", "text": "Handwriting Recognition Systems", "url": "https://www.w3.org/TR/uievents/#events-composition-handwriting" @@ -967,13 +869,13 @@ }, "#events-composition-input-events": { "current": { - "number": "5.7.6", + "number": "3.8.6", "spec": "UI Events", "text": "Input Events During Composition", "url": "https://w3c.github.io/uievents/#events-composition-input-events" }, "snapshot": { - "number": "5.7.6", + "number": "3.8.6", "spec": "UI Events", "text": "Input Events During Composition", "url": "https://www.w3.org/TR/uievents/#events-composition-input-events" @@ -981,13 +883,13 @@ }, "#events-composition-key-events": { "current": { - "number": "5.7.5", + "number": "3.8.5", "spec": "UI Events", "text": "Key Events During Composition", "url": "https://w3c.github.io/uievents/#events-composition-key-events" }, "snapshot": { - "number": "5.7.5", + "number": "3.8.5", "spec": "UI Events", "text": "Key Events During Composition", "url": "https://www.w3.org/TR/uievents/#events-composition-key-events" @@ -995,13 +897,13 @@ }, "#events-composition-order": { "current": { - "number": "5.7.2", + "number": "3.8.2", "spec": "UI Events", "text": "Composition Event Order", "url": "https://w3c.github.io/uievents/#events-composition-order" }, "snapshot": { - "number": "5.7.2", + "number": "3.8.2", "spec": "UI Events", "text": "Composition Event Order", "url": "https://www.w3.org/TR/uievents/#events-composition-order" @@ -1009,13 +911,13 @@ }, "#events-composition-types": { "current": { - "number": "5.7.7", + "number": "3.8.7", "spec": "UI Events", "text": "Composition Event Types", "url": "https://w3c.github.io/uievents/#events-composition-types" }, "snapshot": { - "number": "5.7.7", + "number": "3.8.7", "spec": "UI Events", "text": "Composition Event Types", "url": "https://www.w3.org/TR/uievents/#events-composition-types" @@ -1023,13 +925,13 @@ }, "#events-compositionevents": { "current": { - "number": "5.7", + "number": "3.8", "spec": "UI Events", "text": "Composition Events", "url": "https://w3c.github.io/uievents/#events-compositionevents" }, "snapshot": { - "number": "5.7", + "number": "3.8", "spec": "UI Events", "text": "Composition Events", "url": "https://www.w3.org/TR/uievents/#events-compositionevents" @@ -1037,13 +939,13 @@ }, "#events-focus-types": { "current": { - "number": "5.2.4", + "number": "3.3.4", "spec": "UI Events", "text": "Focus Event Types", "url": "https://w3c.github.io/uievents/#events-focus-types" }, "snapshot": { - "number": "5.2.4", + "number": "3.3.4", "spec": "UI Events", "text": "Focus Event Types", "url": "https://www.w3.org/TR/uievents/#events-focus-types" @@ -1051,13 +953,13 @@ }, "#events-focusevent": { "current": { - "number": "5.2", + "number": "3.3", "spec": "UI Events", "text": "Focus Events", "url": "https://w3c.github.io/uievents/#events-focusevent" }, "snapshot": { - "number": "5.2", + "number": "3.3", "spec": "UI Events", "text": "Focus Events", "url": "https://www.w3.org/TR/uievents/#events-focusevent" @@ -1065,13 +967,13 @@ }, "#events-focusevent-doc-focus": { "current": { - "number": "5.2.3", + "number": "3.3.3", "spec": "UI Events", "text": "Document Focus and Focus Context", "url": "https://w3c.github.io/uievents/#events-focusevent-doc-focus" }, "snapshot": { - "number": "5.2.3", + "number": "3.3.3", "spec": "UI Events", "text": "Document Focus and Focus Context", "url": "https://www.w3.org/TR/uievents/#events-focusevent-doc-focus" @@ -1079,13 +981,13 @@ }, "#events-focusevent-event-order": { "current": { - "number": "5.2.2", + "number": "3.3.2", "spec": "UI Events", "text": "Focus Event Order", "url": "https://w3c.github.io/uievents/#events-focusevent-event-order" }, "snapshot": { - "number": "5.2.2", + "number": "3.3.2", "spec": "UI Events", "text": "Focus Event Order", "url": "https://www.w3.org/TR/uievents/#events-focusevent-event-order" @@ -1093,13 +995,13 @@ }, "#events-input-types": { "current": { - "number": "5.5.3", + "number": "3.6.3", "spec": "UI Events", "text": "Input Event Types", "url": "https://w3c.github.io/uievents/#events-input-types" }, "snapshot": { - "number": "5.5.3", + "number": "3.6.3", "spec": "UI Events", "text": "Input Event Types", "url": "https://www.w3.org/TR/uievents/#events-input-types" @@ -1107,13 +1009,13 @@ }, "#events-inputevent-event-order": { "current": { - "number": "5.5.2", + "number": "3.6.2", "spec": "UI Events", "text": "Input Event Order", "url": "https://w3c.github.io/uievents/#events-inputevent-event-order" }, "snapshot": { - "number": "5.5.2", + "number": "3.6.2", "spec": "UI Events", "text": "Input Event Order", "url": "https://www.w3.org/TR/uievents/#events-inputevent-event-order" @@ -1121,13 +1023,13 @@ }, "#events-inputevents": { "current": { - "number": "5.5", + "number": "3.6", "spec": "UI Events", "text": "Input Events", "url": "https://w3c.github.io/uievents/#events-inputevents" }, "snapshot": { - "number": "5.5", + "number": "3.6", "spec": "UI Events", "text": "Input Events", "url": "https://www.w3.org/TR/uievents/#events-inputevents" @@ -1135,13 +1037,13 @@ }, "#events-keyboard-event-order": { "current": { - "number": "5.6.3", + "number": "3.7.4", "spec": "UI Events", "text": "Keyboard Event Order", "url": "https://w3c.github.io/uievents/#events-keyboard-event-order" }, "snapshot": { - "number": "5.6.3", + "number": "3.7.4", "spec": "UI Events", "text": "Keyboard Event Order", "url": "https://www.w3.org/TR/uievents/#events-keyboard-event-order" @@ -1149,13 +1051,13 @@ }, "#events-keyboard-key-location": { "current": { - "number": "5.6.2", + "number": "3.7.2", "spec": "UI Events", "text": "Keyboard Event Key Location", "url": "https://w3c.github.io/uievents/#events-keyboard-key-location" }, "snapshot": { - "number": "5.6.2", + "number": "3.7.2", "spec": "UI Events", "text": "Keyboard Event Key Location", "url": "https://www.w3.org/TR/uievents/#events-keyboard-key-location" @@ -1163,13 +1065,13 @@ }, "#events-keyboard-types": { "current": { - "number": "5.6.4", + "number": "3.7.5", "spec": "UI Events", "text": "Keyboard Event Types", "url": "https://w3c.github.io/uievents/#events-keyboard-types" }, "snapshot": { - "number": "5.6.4", + "number": "3.7.5", "spec": "UI Events", "text": "Keyboard Event Types", "url": "https://www.w3.org/TR/uievents/#events-keyboard-types" @@ -1177,13 +1079,13 @@ }, "#events-keyboardevents": { "current": { - "number": "5.6", + "number": "3.7", "spec": "UI Events", "text": "Keyboard Events", "url": "https://w3c.github.io/uievents/#events-keyboardevents" }, "snapshot": { - "number": "5.6", + "number": "3.7", "spec": "UI Events", "text": "Keyboard Events", "url": "https://www.w3.org/TR/uievents/#events-keyboardevents" @@ -1191,13 +1093,13 @@ }, "#events-mouse-types": { "current": { - "number": "5.3.4", + "number": "3.4.5", "spec": "UI Events", "text": "Mouse Event Types", "url": "https://w3c.github.io/uievents/#events-mouse-types" }, "snapshot": { - "number": "5.3.4", + "number": "3.4.5", "spec": "UI Events", "text": "Mouse Event Types", "url": "https://www.w3.org/TR/uievents/#events-mouse-types" @@ -1205,13 +1107,13 @@ }, "#events-mouseevent-event-order": { "current": { - "number": "5.3.3", + "number": "3.4.4", "spec": "UI Events", "text": "Mouse Event Order", "url": "https://w3c.github.io/uievents/#events-mouseevent-event-order" }, "snapshot": { - "number": "5.3.3", + "number": "3.4.4", "spec": "UI Events", "text": "Mouse Event Order", "url": "https://www.w3.org/TR/uievents/#events-mouseevent-event-order" @@ -1219,13 +1121,13 @@ }, "#events-mouseevents": { "current": { - "number": "5.3", + "number": "3.4", "spec": "UI Events", "text": "Mouse Events", "url": "https://w3c.github.io/uievents/#events-mouseevents" }, "snapshot": { - "number": "5.3", + "number": "3.4", "spec": "UI Events", "text": "Mouse Events", "url": "https://www.w3.org/TR/uievents/#events-mouseevents" @@ -1233,27 +1135,27 @@ }, "#events-uievent-types": { "current": { - "number": "5.1.2", + "number": "3.2.3", "spec": "UI Events", - "text": "UI Event Types", + "text": "UIEvent Types", "url": "https://w3c.github.io/uievents/#events-uievent-types" }, "snapshot": { - "number": "5.1.2", + "number": "3.2.3", "spec": "UI Events", - "text": "UI Event Types", + "text": "UIEvent Types", "url": "https://www.w3.org/TR/uievents/#events-uievent-types" } }, "#events-uievents": { "current": { - "number": "5.1", + "number": "3.2", "spec": "UI Events", "text": "User Interface Events", "url": "https://w3c.github.io/uievents/#events-uievents" }, "snapshot": { - "number": "5.1", + "number": "3.2", "spec": "UI Events", "text": "User Interface Events", "url": "https://www.w3.org/TR/uievents/#events-uievents" @@ -1261,13 +1163,13 @@ }, "#events-wheel-types": { "current": { - "number": "5.4.2", + "number": "3.5.2", "spec": "UI Events", "text": "Wheel Event Types", "url": "https://w3c.github.io/uievents/#events-wheel-types" }, "snapshot": { - "number": "5.4.2", + "number": "3.5.2", "spec": "UI Events", "text": "Wheel Event Types", "url": "https://www.w3.org/TR/uievents/#events-wheel-types" @@ -1275,13 +1177,13 @@ }, "#events-wheelevents": { "current": { - "number": "5.4", + "number": "3.5", "spec": "UI Events", "text": "Wheel Events", "url": "https://w3c.github.io/uievents/#events-wheelevents" }, "snapshot": { - "number": "5.4", + "number": "3.5", "spec": "UI Events", "text": "Wheel Events", "url": "https://www.w3.org/TR/uievents/#events-wheelevents" @@ -1289,27 +1191,27 @@ }, "#extending-events": { "current": { - "number": "", + "number": "9", "spec": "UI Events", - "text": "10. Extending Events", + "text": "Extending Events", "url": "https://w3c.github.io/uievents/#extending-events" }, "snapshot": { - "number": "", + "number": "9", "spec": "UI Events", - "text": "10. Extending Events", + "text": "Extending Events", "url": "https://www.w3.org/TR/uievents/#extending-events" } }, "#extending-events-Custom_Events": { "current": { - "number": "10.2", + "number": "9.2", "spec": "UI Events", "text": "Custom Events", "url": "https://w3c.github.io/uievents/#extending-events-Custom_Events" }, "snapshot": { - "number": "10.2", + "number": "9.2", "spec": "UI Events", "text": "Custom Events", "url": "https://www.w3.org/TR/uievents/#extending-events-Custom_Events" @@ -1317,13 +1219,13 @@ }, "#extending-events-Impl_Extensions": { "current": { - "number": "10.3", + "number": "9.3", "spec": "UI Events", "text": "Implementation-Specific Extensions", "url": "https://w3c.github.io/uievents/#extending-events-Impl_Extensions" }, "snapshot": { - "number": "10.3", + "number": "9.3", "spec": "UI Events", "text": "Implementation-Specific Extensions", "url": "https://www.w3.org/TR/uievents/#extending-events-Impl_Extensions" @@ -1331,13 +1233,13 @@ }, "#extending-events-intro": { "current": { - "number": "10.1", + "number": "9.1", "spec": "UI Events", "text": "Introduction", "url": "https://w3c.github.io/uievents/#extending-events-intro" }, "snapshot": { - "number": "10.1", + "number": "9.1", "spec": "UI Events", "text": "Introduction", "url": "https://www.w3.org/TR/uievents/#extending-events-intro" @@ -1345,27 +1247,83 @@ }, "#extending-events-prefixes": { "current": { - "number": "10.3.1", + "number": "9.3.1", "spec": "UI Events", "text": "Known Implementation-Specific Prefixes", "url": "https://w3c.github.io/uievents/#extending-events-prefixes" }, "snapshot": { - "number": "10.3.1", + "number": "9.3.1", "spec": "UI Events", "text": "Known Implementation-Specific Prefixes", "url": "https://www.w3.org/TR/uievents/#extending-events-prefixes" } }, + "#external-algorithms": { + "current": { + "number": "5", + "spec": "UI Events", + "text": "External Algorithms", + "url": "https://w3c.github.io/uievents/#external-algorithms" + }, + "snapshot": { + "number": "5", + "spec": "UI Events", + "text": "External Algorithms", + "url": "https://www.w3.org/TR/uievents/#external-algorithms" + } + }, + "#external-dom-algorithms": { + "current": { + "number": "5.1", + "spec": "UI Events", + "text": "Core DOM Algorithms", + "url": "https://w3c.github.io/uievents/#external-dom-algorithms" + }, + "snapshot": { + "number": "5.1", + "spec": "UI Events", + "text": "Core DOM Algorithms", + "url": "https://www.w3.org/TR/uievents/#external-dom-algorithms" + } + }, + "#external-pointerevent-algorithms": { + "current": { + "number": "5.3", + "spec": "UI Events", + "text": "PointerEvent Algorithms", + "url": "https://w3c.github.io/uievents/#external-pointerevent-algorithms" + }, + "snapshot": { + "number": "5.3", + "spec": "UI Events", + "text": "PointerEvent Algorithms", + "url": "https://www.w3.org/TR/uievents/#external-pointerevent-algorithms" + } + }, + "#external-pointerlock-algorithms": { + "current": { + "number": "5.2", + "spec": "UI Events", + "text": "PointerLock Algorithms", + "url": "https://w3c.github.io/uievents/#external-pointerlock-algorithms" + }, + "snapshot": { + "number": "5.2", + "spec": "UI Events", + "text": "PointerLock Algorithms", + "url": "https://www.w3.org/TR/uievents/#external-pointerlock-algorithms" + } + }, "#fixed-virtual-key-codes": { "current": { - "number": "8.3.3", + "number": "7.3.3", "spec": "UI Events", "text": "Fixed virtual key codes", "url": "https://w3c.github.io/uievents/#fixed-virtual-key-codes" }, "snapshot": { - "number": "8.3.3", + "number": "7.3.3", "spec": "UI Events", "text": "Fixed virtual key codes", "url": "https://www.w3.org/TR/uievents/#fixed-virtual-key-codes" @@ -1375,25 +1333,109 @@ "current": { "number": "", "spec": "UI Events", - "text": "14. Glossary", + "text": "12. Glossary", "url": "https://w3c.github.io/uievents/#glossary" }, "snapshot": { "number": "", "spec": "UI Events", - "text": "14. Glossary", + "text": "12. Glossary", "url": "https://www.w3.org/TR/uievents/#glossary" } }, + "#handle-native-mouse-click-id": { + "current": { + "number": "3.4.3.12", + "spec": "UI Events", + "text": "handle native mouse click", + "url": "https://w3c.github.io/uievents/#handle-native-mouse-click-id" + }, + "snapshot": { + "number": "3.4.3.12", + "spec": "UI Events", + "text": "handle native mouse click", + "url": "https://www.w3.org/TR/uievents/#handle-native-mouse-click-id" + } + }, + "#handle-native-mouse-double-click-id": { + "current": { + "number": "3.4.3.14", + "spec": "UI Events", + "text": "handle native mouse double click", + "url": "https://w3c.github.io/uievents/#handle-native-mouse-double-click-id" + }, + "snapshot": { + "number": "3.4.3.14", + "spec": "UI Events", + "text": "handle native mouse double click", + "url": "https://www.w3.org/TR/uievents/#handle-native-mouse-double-click-id" + } + }, + "#handle-native-mouse-down-id": { + "current": { + "number": "3.4.3.10", + "spec": "UI Events", + "text": "handle native mouse down", + "url": "https://w3c.github.io/uievents/#handle-native-mouse-down-id" + }, + "snapshot": { + "number": "3.4.3.10", + "spec": "UI Events", + "text": "handle native mouse down", + "url": "https://www.w3.org/TR/uievents/#handle-native-mouse-down-id" + } + }, + "#handle-native-mouse-move-id": { + "current": { + "number": "3.4.3.15", + "spec": "UI Events", + "text": "handle native mouse move", + "url": "https://w3c.github.io/uievents/#handle-native-mouse-move-id" + }, + "snapshot": { + "number": "3.4.3.15", + "spec": "UI Events", + "text": "handle native mouse move", + "url": "https://www.w3.org/TR/uievents/#handle-native-mouse-move-id" + } + }, + "#handle-native-mouse-up-id": { + "current": { + "number": "3.4.3.11", + "spec": "UI Events", + "text": "handle native mouse up", + "url": "https://w3c.github.io/uievents/#handle-native-mouse-up-id" + }, + "snapshot": { + "number": "3.4.3.11", + "spec": "UI Events", + "text": "handle native mouse up", + "url": "https://www.w3.org/TR/uievents/#handle-native-mouse-up-id" + } + }, + "#hit-test-id": { + "current": { + "number": "5.1.1", + "spec": "UI Events", + "text": "hit test", + "url": "https://w3c.github.io/uievents/#hit-test-id" + }, + "snapshot": { + "number": "5.1.1", + "spec": "UI Events", + "text": "hit test", + "url": "https://www.w3.org/TR/uievents/#hit-test-id" + } + }, "#idl-compositionevent": { "current": { - "number": "5.7.1.1", + "number": "3.8.1.1", "spec": "UI Events", "text": "CompositionEvent", "url": "https://w3c.github.io/uievents/#idl-compositionevent" }, "snapshot": { - "number": "5.7.1.1", + "number": "3.8.1.1", "spec": "UI Events", "text": "CompositionEvent", "url": "https://www.w3.org/TR/uievents/#idl-compositionevent" @@ -1401,13 +1443,13 @@ }, "#idl-compositioneventinit": { "current": { - "number": "5.7.1.2", + "number": "3.8.1.2", "spec": "UI Events", "text": "CompositionEventInit", "url": "https://w3c.github.io/uievents/#idl-compositioneventinit" }, "snapshot": { - "number": "5.7.1.2", + "number": "3.8.1.2", "spec": "UI Events", "text": "CompositionEventInit", "url": "https://www.w3.org/TR/uievents/#idl-compositioneventinit" @@ -1415,13 +1457,13 @@ }, "#idl-focusevent": { "current": { - "number": "5.2.1.1", + "number": "3.3.1.1", "spec": "UI Events", "text": "FocusEvent", "url": "https://w3c.github.io/uievents/#idl-focusevent" }, "snapshot": { - "number": "5.2.1.1", + "number": "3.3.1.1", "spec": "UI Events", "text": "FocusEvent", "url": "https://www.w3.org/TR/uievents/#idl-focusevent" @@ -1429,13 +1471,13 @@ }, "#idl-focuseventinit": { "current": { - "number": "5.2.1.2", + "number": "3.3.1.2", "spec": "UI Events", "text": "FocusEventInit", "url": "https://w3c.github.io/uievents/#idl-focuseventinit" }, "snapshot": { - "number": "5.2.1.2", + "number": "3.3.1.2", "spec": "UI Events", "text": "FocusEventInit", "url": "https://www.w3.org/TR/uievents/#idl-focuseventinit" @@ -1457,13 +1499,13 @@ }, "#idl-inputevent": { "current": { - "number": "5.5.1.1", + "number": "3.6.1.1", "spec": "UI Events", "text": "InputEvent", "url": "https://w3c.github.io/uievents/#idl-inputevent" }, "snapshot": { - "number": "5.5.1.1", + "number": "3.6.1.1", "spec": "UI Events", "text": "InputEvent", "url": "https://www.w3.org/TR/uievents/#idl-inputevent" @@ -1471,13 +1513,13 @@ }, "#idl-inputeventinit": { "current": { - "number": "5.5.1.2", + "number": "3.6.1.2", "spec": "UI Events", "text": "InputEventInit", "url": "https://w3c.github.io/uievents/#idl-inputeventinit" }, "snapshot": { - "number": "5.5.1.2", + "number": "3.6.1.2", "spec": "UI Events", "text": "InputEventInit", "url": "https://www.w3.org/TR/uievents/#idl-inputeventinit" @@ -1485,13 +1527,13 @@ }, "#idl-interface-CompositionEvent-initializers": { "current": { - "number": "7.1.4", + "number": "6.1.4", "spec": "UI Events", "text": "Initializers for interface CompositionEvent", "url": "https://w3c.github.io/uievents/#idl-interface-CompositionEvent-initializers" }, "snapshot": { - "number": "7.1.4", + "number": "6.1.4", "spec": "UI Events", "text": "Initializers for interface CompositionEvent", "url": "https://www.w3.org/TR/uievents/#idl-interface-CompositionEvent-initializers" @@ -1499,13 +1541,13 @@ }, "#idl-interface-KeyboardEvent-initializers": { "current": { - "number": "7.1.3", + "number": "6.1.3", "spec": "UI Events", "text": "Initializers for interface KeyboardEvent", "url": "https://w3c.github.io/uievents/#idl-interface-KeyboardEvent-initializers" }, "snapshot": { - "number": "7.1.3", + "number": "6.1.3", "spec": "UI Events", "text": "Initializers for interface KeyboardEvent", "url": "https://www.w3.org/TR/uievents/#idl-interface-KeyboardEvent-initializers" @@ -1513,13 +1555,13 @@ }, "#idl-interface-MouseEvent-initializers": { "current": { - "number": "7.1.2", + "number": "6.1.2", "spec": "UI Events", "text": "Initializers for interface MouseEvent", "url": "https://w3c.github.io/uievents/#idl-interface-MouseEvent-initializers" }, "snapshot": { - "number": "7.1.2", + "number": "6.1.2", "spec": "UI Events", "text": "Initializers for interface MouseEvent", "url": "https://www.w3.org/TR/uievents/#idl-interface-MouseEvent-initializers" @@ -1527,13 +1569,13 @@ }, "#idl-interface-UIEvent-initializers": { "current": { - "number": "7.1.1", + "number": "6.1.1", "spec": "UI Events", "text": "Initializers for interface UIEvent", "url": "https://w3c.github.io/uievents/#idl-interface-UIEvent-initializers" }, "snapshot": { - "number": "7.1.1", + "number": "6.1.1", "spec": "UI Events", "text": "Initializers for interface UIEvent", "url": "https://www.w3.org/TR/uievents/#idl-interface-UIEvent-initializers" @@ -1541,13 +1583,13 @@ }, "#idl-keyboardevent": { "current": { - "number": "5.6.1.1", + "number": "3.7.1.1", "spec": "UI Events", "text": "KeyboardEvent", "url": "https://w3c.github.io/uievents/#idl-keyboardevent" }, "snapshot": { - "number": "5.6.1.1", + "number": "3.7.1.1", "spec": "UI Events", "text": "KeyboardEvent", "url": "https://www.w3.org/TR/uievents/#idl-keyboardevent" @@ -1555,13 +1597,13 @@ }, "#idl-keyboardeventinit": { "current": { - "number": "5.6.1.2", + "number": "3.7.1.2", "spec": "UI Events", "text": "KeyboardEventInit", "url": "https://w3c.github.io/uievents/#idl-keyboardeventinit" }, "snapshot": { - "number": "5.6.1.2", + "number": "3.7.1.2", "spec": "UI Events", "text": "KeyboardEventInit", "url": "https://www.w3.org/TR/uievents/#idl-keyboardeventinit" @@ -1569,13 +1611,13 @@ }, "#idl-mouseevent": { "current": { - "number": "5.3.1.1", + "number": "3.4.1.1", "spec": "UI Events", "text": "MouseEvent", "url": "https://w3c.github.io/uievents/#idl-mouseevent" }, "snapshot": { - "number": "5.3.1.1", + "number": "3.4.1.1", "spec": "UI Events", "text": "MouseEvent", "url": "https://www.w3.org/TR/uievents/#idl-mouseevent" @@ -1583,13 +1625,13 @@ }, "#idl-mouseeventinit": { "current": { - "number": "5.3.1.2", + "number": "3.4.1.2", "spec": "UI Events", "text": "MouseEventInit", "url": "https://w3c.github.io/uievents/#idl-mouseeventinit" }, "snapshot": { - "number": "5.3.1.2", + "number": "3.4.1.2", "spec": "UI Events", "text": "MouseEventInit", "url": "https://www.w3.org/TR/uievents/#idl-mouseeventinit" @@ -1597,13 +1639,13 @@ }, "#idl-uievent": { "current": { - "number": "5.1.1.1", + "number": "3.2.1.1", "spec": "UI Events", "text": "UIEvent", "url": "https://w3c.github.io/uievents/#idl-uievent" }, "snapshot": { - "number": "5.1.1.1", + "number": "3.2.1.1", "spec": "UI Events", "text": "UIEvent", "url": "https://www.w3.org/TR/uievents/#idl-uievent" @@ -1611,13 +1653,13 @@ }, "#idl-uieventinit": { "current": { - "number": "5.1.1.2", + "number": "3.2.1.2", "spec": "UI Events", "text": "UIEventInit", "url": "https://w3c.github.io/uievents/#idl-uieventinit" }, "snapshot": { - "number": "5.1.1.2", + "number": "3.2.1.2", "spec": "UI Events", "text": "UIEventInit", "url": "https://www.w3.org/TR/uievents/#idl-uieventinit" @@ -1625,13 +1667,13 @@ }, "#idl-wheelevent": { "current": { - "number": "5.4.1.1", + "number": "3.5.1.1", "spec": "UI Events", "text": "WheelEvent", "url": "https://w3c.github.io/uievents/#idl-wheelevent" }, "snapshot": { - "number": "5.4.1.1", + "number": "3.5.1.1", "spec": "UI Events", "text": "WheelEvent", "url": "https://www.w3.org/TR/uievents/#idl-wheelevent" @@ -1639,13 +1681,13 @@ }, "#idl-wheeleventinit": { "current": { - "number": "5.4.1.2", + "number": "3.5.1.2", "spec": "UI Events", "text": "WheelEventInit", "url": "https://w3c.github.io/uievents/#idl-wheeleventinit" }, "snapshot": { - "number": "5.4.1.2", + "number": "3.5.1.2", "spec": "UI Events", "text": "WheelEventInit", "url": "https://www.w3.org/TR/uievents/#idl-wheeleventinit" @@ -1707,43 +1749,99 @@ "url": "https://www.w3.org/TR/uievents/#informative" } }, - "#interface-compositionevent": { + "#initialize-a-mouseevent-id": { "current": { - "number": "5.7.1", + "number": "3.4.3.4", "spec": "UI Events", - "text": "Interface CompositionEvent", - "url": "https://w3c.github.io/uievents/#interface-compositionevent" + "text": "initialize a MouseEvent", + "url": "https://w3c.github.io/uievents/#initialize-a-mouseevent-id" }, "snapshot": { - "number": "5.7.1", + "number": "3.4.3.4", "spec": "UI Events", - "text": "Interface CompositionEvent", - "url": "https://www.w3.org/TR/uievents/#interface-compositionevent" + "text": "initialize a MouseEvent", + "url": "https://www.w3.org/TR/uievents/#initialize-a-mouseevent-id" } }, - "#interface-focusevent": { + "#initialize-a-pointerevent-id": { "current": { - "number": "5.2.1", + "number": "5.3.1", "spec": "UI Events", - "text": "Interface FocusEvent", - "url": "https://w3c.github.io/uievents/#interface-focusevent" + "text": "initialize a PointerEvent", + "url": "https://w3c.github.io/uievents/#initialize-a-pointerevent-id" }, "snapshot": { - "number": "5.2.1", + "number": "5.3.1", "spec": "UI Events", - "text": "Interface FocusEvent", - "url": "https://www.w3.org/TR/uievents/#interface-focusevent" + "text": "initialize a PointerEvent", + "url": "https://www.w3.org/TR/uievents/#initialize-a-pointerevent-id" } }, - "#interface-inputevent": { + "#initialize-a-uievent-id": { "current": { - "number": "5.5.1", + "number": "3.2.2.1", "spec": "UI Events", - "text": "Interface InputEvent", - "url": "https://w3c.github.io/uievents/#interface-inputevent" + "text": "initialize a UIEvent", + "url": "https://w3c.github.io/uievents/#initialize-a-uievent-id" }, "snapshot": { - "number": "5.5.1", + "number": "3.2.2.1", + "spec": "UI Events", + "text": "initialize a UIEvent", + "url": "https://www.w3.org/TR/uievents/#initialize-a-uievent-id" + } + }, + "#initialize-pointerlock-attributes-for-mouseevent-id": { + "current": { + "number": "5.2.2", + "spec": "UI Events", + "text": "initialize PointerLock attributes for MouseEvent", + "url": "https://w3c.github.io/uievents/#initialize-pointerlock-attributes-for-mouseevent-id" + }, + "snapshot": { + "number": "5.2.2", + "spec": "UI Events", + "text": "initialize PointerLock attributes for MouseEvent", + "url": "https://www.w3.org/TR/uievents/#initialize-pointerlock-attributes-for-mouseevent-id" + } + }, + "#interface-compositionevent": { + "current": { + "number": "3.8.1", + "spec": "UI Events", + "text": "Interface CompositionEvent", + "url": "https://w3c.github.io/uievents/#interface-compositionevent" + }, + "snapshot": { + "number": "3.8.1", + "spec": "UI Events", + "text": "Interface CompositionEvent", + "url": "https://www.w3.org/TR/uievents/#interface-compositionevent" + } + }, + "#interface-focusevent": { + "current": { + "number": "3.3.1", + "spec": "UI Events", + "text": "Interface FocusEvent", + "url": "https://w3c.github.io/uievents/#interface-focusevent" + }, + "snapshot": { + "number": "3.3.1", + "spec": "UI Events", + "text": "Interface FocusEvent", + "url": "https://www.w3.org/TR/uievents/#interface-focusevent" + } + }, + "#interface-inputevent": { + "current": { + "number": "3.6.1", + "spec": "UI Events", + "text": "Interface InputEvent", + "url": "https://w3c.github.io/uievents/#interface-inputevent" + }, + "snapshot": { + "number": "3.6.1", "spec": "UI Events", "text": "Interface InputEvent", "url": "https://www.w3.org/TR/uievents/#interface-inputevent" @@ -1751,13 +1849,13 @@ }, "#interface-keyboardevent": { "current": { - "number": "5.6.1", + "number": "3.7.1", "spec": "UI Events", "text": "Interface KeyboardEvent", "url": "https://w3c.github.io/uievents/#interface-keyboardevent" }, "snapshot": { - "number": "5.6.1", + "number": "3.7.1", "spec": "UI Events", "text": "Interface KeyboardEvent", "url": "https://www.w3.org/TR/uievents/#interface-keyboardevent" @@ -1765,13 +1863,13 @@ }, "#interface-mouseevent": { "current": { - "number": "5.3.1", + "number": "3.4.1", "spec": "UI Events", "text": "Interface MouseEvent", "url": "https://w3c.github.io/uievents/#interface-mouseevent" }, "snapshot": { - "number": "5.3.1", + "number": "3.4.1", "spec": "UI Events", "text": "Interface MouseEvent", "url": "https://www.w3.org/TR/uievents/#interface-mouseevent" @@ -1779,13 +1877,13 @@ }, "#interface-mutationevent": { "current": { - "number": "9.4.1", + "number": "8.5.1", "spec": "UI Events", "text": "Interface MutationEvent", "url": "https://w3c.github.io/uievents/#interface-mutationevent" }, "snapshot": { - "number": "9.4.1", + "number": "8.5.1", "spec": "UI Events", "text": "Interface MutationEvent", "url": "https://www.w3.org/TR/uievents/#interface-mutationevent" @@ -1793,13 +1891,13 @@ }, "#interface-uievent": { "current": { - "number": "5.1.1", + "number": "3.2.1", "spec": "UI Events", "text": "Interface UIEvent", "url": "https://w3c.github.io/uievents/#interface-uievent" }, "snapshot": { - "number": "5.1.1", + "number": "3.2.1", "spec": "UI Events", "text": "Interface UIEvent", "url": "https://www.w3.org/TR/uievents/#interface-uievent" @@ -1807,27 +1905,41 @@ }, "#interface-wheelevent": { "current": { - "number": "5.4.1", + "number": "3.5.1", "spec": "UI Events", "text": "Interface WheelEvent", "url": "https://w3c.github.io/uievents/#interface-wheelevent" }, "snapshot": { - "number": "5.4.1", + "number": "3.5.1", "spec": "UI Events", "text": "Interface WheelEvent", "url": "https://www.w3.org/TR/uievents/#interface-wheelevent" } }, + "#issues-index": { + "current": { + "number": "", + "spec": "UI Events", + "text": "Issues Index", + "url": "https://w3c.github.io/uievents/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "UI Events", + "text": "Issues Index", + "url": "https://www.w3.org/TR/uievents/#issues-index" + } + }, "#key-legends": { "current": { - "number": "6.1.1", + "number": "4.1.1", "spec": "UI Events", "text": "Key Legends", "url": "https://w3c.github.io/uievents/#key-legends" }, "snapshot": { - "number": "6.1.1", + "number": "4.1.1", "spec": "UI Events", "text": "Key Legends", "url": "https://www.w3.org/TR/uievents/#key-legends" @@ -1835,27 +1947,69 @@ }, "#keyboard-input": { "current": { - "number": "6.1", + "number": "4.1", "spec": "UI Events", "text": "Keyboard Input", "url": "https://w3c.github.io/uievents/#keyboard-input" }, "snapshot": { - "number": "6.1", + "number": "4.1", "spec": "UI Events", "text": "Keyboard Input", "url": "https://www.w3.org/TR/uievents/#keyboard-input" } }, + "#keyboardevent-algorithms": { + "current": { + "number": "3.7.3", + "spec": "UI Events", + "text": "KeyboardEvent Algorithms", + "url": "https://w3c.github.io/uievents/#keyboardevent-algorithms" + }, + "snapshot": { + "number": "3.7.3", + "spec": "UI Events", + "text": "KeyboardEvent Algorithms", + "url": "https://www.w3.org/TR/uievents/#keyboardevent-algorithms" + } + }, + "#keyboardevent-global-state": { + "current": { + "number": "3.7.3.1", + "spec": "UI Events", + "text": "Global State for KeyboardEvent", + "url": "https://w3c.github.io/uievents/#keyboardevent-global-state" + }, + "snapshot": { + "number": "3.7.3.1", + "spec": "UI Events", + "text": "Global State for KeyboardEvent", + "url": "https://www.w3.org/TR/uievents/#keyboardevent-global-state" + } + }, + "#keyboardevent-global-ua": { + "current": { + "number": "3.7.3.1.1", + "spec": "UI Events", + "text": "User Agent-Level State", + "url": "https://w3c.github.io/uievents/#keyboardevent-global-ua" + }, + "snapshot": { + "number": "3.7.3.1.1", + "spec": "UI Events", + "text": "User Agent-Level State", + "url": "https://www.w3.org/TR/uievents/#keyboardevent-global-ua" + } + }, "#keypress-event-order": { "current": { - "number": "9.3.2", + "number": "8.3.2", "spec": "UI Events", "text": "keypress event order", "url": "https://w3c.github.io/uievents/#keypress-event-order" }, "snapshot": { - "number": "9.3.2", + "number": "8.3.2", "spec": "UI Events", "text": "keypress event order", "url": "https://www.w3.org/TR/uievents/#keypress-event-order" @@ -1863,13 +2017,13 @@ }, "#keys": { "current": { - "number": "6", + "number": "4", "spec": "UI Events", "text": "Keyboard events and key values", "url": "https://w3c.github.io/uievents/#keys" }, "snapshot": { - "number": "6", + "number": "4", "spec": "UI Events", "text": "Keyboard events and key values", "url": "https://www.w3.org/TR/uievents/#keys" @@ -1877,13 +2031,13 @@ }, "#keys-IME": { "current": { - "number": "6.3.3", + "number": "4.3.3", "spec": "UI Events", "text": "Input Method Editors", "url": "https://w3c.github.io/uievents/#keys-IME" }, "snapshot": { - "number": "6.3.3", + "number": "4.3.3", "spec": "UI Events", "text": "Input Method Editors", "url": "https://www.w3.org/TR/uievents/#keys-IME" @@ -1891,13 +2045,13 @@ }, "#keys-IME-keys": { "current": { - "number": "6.3.3.1", + "number": "4.3.3.1", "spec": "UI Events", "text": "Input Method Editor mode keys", "url": "https://w3c.github.io/uievents/#keys-IME-keys" }, "snapshot": { - "number": "6.3.3.1", + "number": "4.3.3.1", "spec": "UI Events", "text": "Input Method Editor mode keys", "url": "https://www.w3.org/TR/uievents/#keys-IME-keys" @@ -1905,13 +2059,13 @@ }, "#keys-cancelable-keys": { "current": { - "number": "6.3.4", + "number": "4.3.4", "spec": "UI Events", "text": "Default actions and cancelable keyboard events", "url": "https://w3c.github.io/uievents/#keys-cancelable-keys" }, "snapshot": { - "number": "6.3.4", + "number": "4.3.4", "spec": "UI Events", "text": "Default actions and cancelable keyboard events", "url": "https://www.w3.org/TR/uievents/#keys-cancelable-keys" @@ -1919,13 +2073,13 @@ }, "#keys-codevalues": { "current": { - "number": "6.2", + "number": "4.2", "spec": "UI Events", "text": "Key codes", "url": "https://w3c.github.io/uievents/#keys-codevalues" }, "snapshot": { - "number": "6.2", + "number": "4.2", "spec": "UI Events", "text": "Key codes", "url": "https://www.w3.org/TR/uievents/#keys-codevalues" @@ -1933,13 +2087,13 @@ }, "#keys-dead": { "current": { - "number": "6.3.2", + "number": "4.3.2", "spec": "UI Events", "text": "Dead keys", "url": "https://w3c.github.io/uievents/#keys-dead" }, "snapshot": { - "number": "6.3.2", + "number": "4.3.2", "spec": "UI Events", "text": "Dead keys", "url": "https://www.w3.org/TR/uievents/#keys-dead" @@ -1947,13 +2101,13 @@ }, "#keys-keyvalues": { "current": { - "number": "6.3", + "number": "4.3", "spec": "UI Events", "text": "Keyboard Event key Values", "url": "https://w3c.github.io/uievents/#keys-keyvalues" }, "snapshot": { - "number": "6.3", + "number": "4.3", "spec": "UI Events", "text": "Keyboard Event key Values", "url": "https://www.w3.org/TR/uievents/#keys-keyvalues" @@ -1961,13 +2115,13 @@ }, "#keys-modifiers": { "current": { - "number": "6.3.1", + "number": "4.3.1", "spec": "UI Events", "text": "Modifier keys", "url": "https://w3c.github.io/uievents/#keys-modifiers" }, "snapshot": { - "number": "6.3.1", + "number": "4.3.1", "spec": "UI Events", "text": "Modifier keys", "url": "https://www.w3.org/TR/uievents/#keys-modifiers" @@ -1975,13 +2129,13 @@ }, "#legacy-KeyboardEvent": { "current": { - "number": "8.2", + "number": "7.2", "spec": "UI Events", "text": "Legacy KeyboardEvent supplemental interface", "url": "https://w3c.github.io/uievents/#legacy-KeyboardEvent" }, "snapshot": { - "number": "8.2", + "number": "7.2", "spec": "UI Events", "text": "Legacy KeyboardEvent supplemental interface", "url": "https://www.w3.org/TR/uievents/#legacy-KeyboardEvent" @@ -1989,13 +2143,13 @@ }, "#legacy-UIEvent": { "current": { - "number": "8.1", + "number": "7.1", "spec": "UI Events", "text": "Legacy UIEvent supplemental interface", "url": "https://w3c.github.io/uievents/#legacy-UIEvent" }, "snapshot": { - "number": "8.1", + "number": "7.1", "spec": "UI Events", "text": "Legacy UIEvent supplemental interface", "url": "https://www.w3.org/TR/uievents/#legacy-UIEvent" @@ -2003,13 +2157,13 @@ }, "#legacy-dictionary-KeyboardEventInit": { "current": { - "number": "8.2.2", + "number": "7.2.2", "spec": "UI Events", "text": "Interface KeyboardEventInit (supplemental)", "url": "https://w3c.github.io/uievents/#legacy-dictionary-KeyboardEventInit" }, "snapshot": { - "number": "8.2.2", + "number": "7.2.2", "spec": "UI Events", "text": "Interface KeyboardEventInit (supplemental)", "url": "https://www.w3.org/TR/uievents/#legacy-dictionary-KeyboardEventInit" @@ -2017,13 +2171,13 @@ }, "#legacy-dictionary-UIEventInit": { "current": { - "number": "8.1.2", + "number": "7.1.2", "spec": "UI Events", "text": "Interface UIEventInit (supplemental)", "url": "https://w3c.github.io/uievents/#legacy-dictionary-UIEventInit" }, "snapshot": { - "number": "8.1.2", + "number": "7.1.2", "spec": "UI Events", "text": "Interface UIEventInit (supplemental)", "url": "https://www.w3.org/TR/uievents/#legacy-dictionary-UIEventInit" @@ -2031,13 +2185,13 @@ }, "#legacy-event-initializer-interfaces": { "current": { - "number": "7.1", + "number": "6.1", "spec": "UI Events", "text": "Legacy Event Initializer Interfaces", "url": "https://w3c.github.io/uievents/#legacy-event-initializer-interfaces" }, "snapshot": { - "number": "7.1", + "number": "6.1", "spec": "UI Events", "text": "Legacy Event Initializer Interfaces", "url": "https://www.w3.org/TR/uievents/#legacy-event-initializer-interfaces" @@ -2045,13 +2199,13 @@ }, "#legacy-event-initializers": { "current": { - "number": "7", + "number": "6", "spec": "UI Events", "text": "Legacy Event Initializers", "url": "https://w3c.github.io/uievents/#legacy-event-initializers" }, "snapshot": { - "number": "7", + "number": "6", "spec": "UI Events", "text": "Legacy Event Initializers", "url": "https://www.w3.org/TR/uievents/#legacy-event-initializers" @@ -2059,13 +2213,13 @@ }, "#legacy-event-types": { "current": { - "number": "9", + "number": "8", "spec": "UI Events", "text": "Legacy Event Types", "url": "https://w3c.github.io/uievents/#legacy-event-types" }, "snapshot": { - "number": "9", + "number": "8", "spec": "UI Events", "text": "Legacy Event Types", "url": "https://www.w3.org/TR/uievents/#legacy-event-types" @@ -2073,13 +2227,13 @@ }, "#legacy-focusevent-event-order": { "current": { - "number": "9.2.2", + "number": "8.2.2", "spec": "UI Events", "text": "Legacy FocusEvent event order", "url": "https://w3c.github.io/uievents/#legacy-focusevent-event-order" }, "snapshot": { - "number": "9.2.2", + "number": "8.2.2", "spec": "UI Events", "text": "Legacy FocusEvent event order", "url": "https://www.w3.org/TR/uievents/#legacy-focusevent-event-order" @@ -2087,13 +2241,13 @@ }, "#legacy-focusevent-event-types": { "current": { - "number": "9.2.1", + "number": "8.2.1", "spec": "UI Events", "text": "Legacy FocusEvent event types", "url": "https://w3c.github.io/uievents/#legacy-focusevent-event-types" }, "snapshot": { - "number": "9.2.1", + "number": "8.2.1", "spec": "UI Events", "text": "Legacy FocusEvent event types", "url": "https://www.w3.org/TR/uievents/#legacy-focusevent-event-types" @@ -2101,13 +2255,13 @@ }, "#legacy-focusevent-events": { "current": { - "number": "9.2", + "number": "8.2", "spec": "UI Events", "text": "Legacy FocusEvent events", "url": "https://w3c.github.io/uievents/#legacy-focusevent-events" }, "snapshot": { - "number": "9.2", + "number": "8.2", "spec": "UI Events", "text": "Legacy FocusEvent events", "url": "https://www.w3.org/TR/uievents/#legacy-focusevent-events" @@ -2115,13 +2269,13 @@ }, "#legacy-interface-KeyboardEvent": { "current": { - "number": "8.2.1", + "number": "7.2.1", "spec": "UI Events", "text": "Interface KeyboardEvent (supplemental)", "url": "https://w3c.github.io/uievents/#legacy-interface-KeyboardEvent" }, "snapshot": { - "number": "8.2.1", + "number": "7.2.1", "spec": "UI Events", "text": "Interface KeyboardEvent (supplemental)", "url": "https://www.w3.org/TR/uievents/#legacy-interface-KeyboardEvent" @@ -2129,13 +2283,13 @@ }, "#legacy-interface-UIEvent": { "current": { - "number": "8.1.1", + "number": "7.1.1", "spec": "UI Events", "text": "Interface UIEvent (supplemental)", "url": "https://w3c.github.io/uievents/#legacy-interface-UIEvent" }, "snapshot": { - "number": "8.1.1", + "number": "7.1.1", "spec": "UI Events", "text": "Interface UIEvent (supplemental)", "url": "https://www.w3.org/TR/uievents/#legacy-interface-UIEvent" @@ -2143,13 +2297,13 @@ }, "#legacy-key-attributes": { "current": { - "number": "8", + "number": "7", "spec": "UI Events", "text": "Legacy Key & Mouse Event Attributes", "url": "https://w3c.github.io/uievents/#legacy-key-attributes" }, "snapshot": { - "number": "8", + "number": "7", "spec": "UI Events", "text": "Legacy Key & Mouse Event Attributes", "url": "https://www.w3.org/TR/uievents/#legacy-key-attributes" @@ -2157,13 +2311,13 @@ }, "#legacy-key-models": { "current": { - "number": "8.3", + "number": "7.3", "spec": "UI Events", "text": "Legacy key models", "url": "https://w3c.github.io/uievents/#legacy-key-models" }, "snapshot": { - "number": "8.3", + "number": "7.3", "spec": "UI Events", "text": "Legacy key models", "url": "https://www.w3.org/TR/uievents/#legacy-key-models" @@ -2171,13 +2325,13 @@ }, "#legacy-keyboardevent-event-types": { "current": { - "number": "9.3.1", + "number": "8.3.1", "spec": "UI Events", "text": "Legacy KeyboardEvent event types", "url": "https://w3c.github.io/uievents/#legacy-keyboardevent-event-types" }, "snapshot": { - "number": "9.3.1", + "number": "8.3.1", "spec": "UI Events", "text": "Legacy KeyboardEvent event types", "url": "https://www.w3.org/TR/uievents/#legacy-keyboardevent-event-types" @@ -2185,13 +2339,13 @@ }, "#legacy-keyboardevent-events": { "current": { - "number": "9.3", + "number": "8.3", "spec": "UI Events", "text": "Legacy KeyboardEvent events", "url": "https://w3c.github.io/uievents/#legacy-keyboardevent-events" }, "snapshot": { - "number": "9.3", + "number": "8.3", "spec": "UI Events", "text": "Legacy KeyboardEvent events", "url": "https://www.w3.org/TR/uievents/#legacy-keyboardevent-events" @@ -2199,13 +2353,13 @@ }, "#legacy-mutationevent-event-types": { "current": { - "number": "9.4.2", + "number": "8.5.2", "spec": "UI Events", "text": "Legacy MutationEvent event types", "url": "https://w3c.github.io/uievents/#legacy-mutationevent-event-types" }, "snapshot": { - "number": "9.4.2", + "number": "8.5.2", "spec": "UI Events", "text": "Legacy MutationEvent event types", "url": "https://www.w3.org/TR/uievents/#legacy-mutationevent-event-types" @@ -2213,27 +2367,41 @@ }, "#legacy-mutationevent-events": { "current": { - "number": "9.4", + "number": "8.5", "spec": "UI Events", "text": "Legacy MutationEvent events", "url": "https://w3c.github.io/uievents/#legacy-mutationevent-events" }, "snapshot": { - "number": "9.4", + "number": "8.5", "spec": "UI Events", "text": "Legacy MutationEvent events", "url": "https://www.w3.org/TR/uievents/#legacy-mutationevent-events" } }, + "#legacy-textevent-events": { + "current": { + "number": "8.4", + "spec": "UI Events", + "text": "Legacy TextEvent events", + "url": "https://w3c.github.io/uievents/#legacy-textevent-events" + }, + "snapshot": { + "number": "8.4", + "spec": "UI Events", + "text": "Legacy TextEvent events", + "url": "https://www.w3.org/TR/uievents/#legacy-textevent-events" + } + }, "#legacy-uievent-event-order": { "current": { - "number": "9.1.2", + "number": "8.1.2", "spec": "UI Events", "text": "Activation event order", "url": "https://w3c.github.io/uievents/#legacy-uievent-event-order" }, "snapshot": { - "number": "9.1.2", + "number": "8.1.2", "spec": "UI Events", "text": "Activation event order", "url": "https://www.w3.org/TR/uievents/#legacy-uievent-event-order" @@ -2241,13 +2409,13 @@ }, "#legacy-uievent-event-types": { "current": { - "number": "9.1.1", + "number": "8.1.1", "spec": "UI Events", "text": "Legacy UIEvent event types", "url": "https://w3c.github.io/uievents/#legacy-uievent-event-types" }, "snapshot": { - "number": "9.1.1", + "number": "8.1.1", "spec": "UI Events", "text": "Legacy UIEvent event types", "url": "https://www.w3.org/TR/uievents/#legacy-uievent-event-types" @@ -2255,18 +2423,228 @@ }, "#legacy-uievent-events": { "current": { - "number": "9.1", + "number": "8.1", "spec": "UI Events", "text": "Legacy UIEvent events", "url": "https://w3c.github.io/uievents/#legacy-uievent-events" }, "snapshot": { - "number": "9.1", + "number": "8.1", "spec": "UI Events", "text": "Legacy UIEvent events", "url": "https://www.w3.org/TR/uievents/#legacy-uievent-events" } }, + "#maybe-send-pointerdown-event-id": { + "current": { + "number": "5.3.9", + "spec": "UI Events", + "text": "maybe send pointerdown event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointerdown-event-id" + }, + "snapshot": { + "number": "5.3.9", + "spec": "UI Events", + "text": "maybe send pointerdown event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointerdown-event-id" + } + }, + "#maybe-send-pointerenter-event-id": { + "current": { + "number": "5.3.7", + "spec": "UI Events", + "text": "maybe send pointerenter event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointerenter-event-id" + }, + "snapshot": { + "number": "5.3.7", + "spec": "UI Events", + "text": "maybe send pointerenter event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointerenter-event-id" + } + }, + "#maybe-send-pointerleave-event-id": { + "current": { + "number": "5.3.5", + "spec": "UI Events", + "text": "maybe send pointerleave event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointerleave-event-id" + }, + "snapshot": { + "number": "5.3.5", + "spec": "UI Events", + "text": "maybe send pointerleave event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointerleave-event-id" + } + }, + "#maybe-send-pointermove-event-id": { + "current": { + "number": "5.3.8", + "spec": "UI Events", + "text": "maybe send pointermove event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointermove-event-id" + }, + "snapshot": { + "number": "5.3.8", + "spec": "UI Events", + "text": "maybe send pointermove event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointermove-event-id" + } + }, + "#maybe-send-pointerout-event-id": { + "current": { + "number": "5.3.4", + "spec": "UI Events", + "text": "maybe send pointerout event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointerout-event-id" + }, + "snapshot": { + "number": "5.3.4", + "spec": "UI Events", + "text": "maybe send pointerout event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointerout-event-id" + } + }, + "#maybe-send-pointerover-event-id": { + "current": { + "number": "5.3.6", + "spec": "UI Events", + "text": "maybe send pointerover event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointerover-event-id" + }, + "snapshot": { + "number": "5.3.6", + "spec": "UI Events", + "text": "maybe send pointerover event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointerover-event-id" + } + }, + "#maybe-send-pointerup-event-id": { + "current": { + "number": "5.3.10", + "spec": "UI Events", + "text": "maybe send pointerup event", + "url": "https://w3c.github.io/uievents/#maybe-send-pointerup-event-id" + }, + "snapshot": { + "number": "5.3.10", + "spec": "UI Events", + "text": "maybe send pointerup event", + "url": "https://www.w3.org/TR/uievents/#maybe-send-pointerup-event-id" + } + }, + "#maybe-show-context-menu-id": { + "current": { + "number": "3.4.3.16", + "spec": "UI Events", + "text": "maybe show context menu", + "url": "https://w3c.github.io/uievents/#maybe-show-context-menu-id" + }, + "snapshot": { + "number": "3.4.3.16", + "spec": "UI Events", + "text": "maybe show context menu", + "url": "https://www.w3.org/TR/uievents/#maybe-show-context-menu-id" + } + }, + "#mouse-event-constructors": { + "current": { + "number": "3.4.2.1", + "spec": "UI Events", + "text": "Constructing Mouse Events", + "url": "https://w3c.github.io/uievents/#mouse-event-constructors" + }, + "snapshot": { + "number": "3.4.2.1", + "spec": "UI Events", + "text": "Constructing Mouse Events", + "url": "https://www.w3.org/TR/uievents/#mouse-event-constructors" + } + }, + "#mouseevent-algorithms": { + "current": { + "number": "3.4.3", + "spec": "UI Events", + "text": "MouseEvent Algorithms", + "url": "https://w3c.github.io/uievents/#mouseevent-algorithms" + }, + "snapshot": { + "number": "3.4.3", + "spec": "UI Events", + "text": "MouseEvent Algorithms", + "url": "https://www.w3.org/TR/uievents/#mouseevent-algorithms" + } + }, + "#mouseevent-global-state": { + "current": { + "number": "3.4.3.2", + "spec": "UI Events", + "text": "Global State for MouseEvent", + "url": "https://w3c.github.io/uievents/#mouseevent-global-state" + }, + "snapshot": { + "number": "3.4.3.2", + "spec": "UI Events", + "text": "Global State for MouseEvent", + "url": "https://www.w3.org/TR/uievents/#mouseevent-global-state" + } + }, + "#mouseevent-global-ua": { + "current": { + "number": "3.4.3.2.1", + "spec": "UI Events", + "text": "User Agent-Level State", + "url": "https://w3c.github.io/uievents/#mouseevent-global-ua" + }, + "snapshot": { + "number": "3.4.3.2.1", + "spec": "UI Events", + "text": "User Agent-Level State", + "url": "https://www.w3.org/TR/uievents/#mouseevent-global-ua" + } + }, + "#mouseevent-global-window": { + "current": { + "number": "3.4.3.2.2", + "spec": "UI Events", + "text": "Window-Level State", + "url": "https://w3c.github.io/uievents/#mouseevent-global-window" + }, + "snapshot": { + "number": "3.4.3.2.2", + "spec": "UI Events", + "text": "Window-Level State", + "url": "https://www.w3.org/TR/uievents/#mouseevent-global-window" + } + }, + "#mouseevent-internal-state": { + "current": { + "number": "3.4.3.3", + "spec": "UI Events", + "text": "Internal State for MouseEvent", + "url": "https://w3c.github.io/uievents/#mouseevent-internal-state" + }, + "snapshot": { + "number": "3.4.3.3", + "spec": "UI Events", + "text": "Internal State for MouseEvent", + "url": "https://www.w3.org/TR/uievents/#mouseevent-internal-state" + } + }, + "#mouseevent-native-requirements": { + "current": { + "number": "3.4.3.1", + "spec": "UI Events", + "text": "Native OS Requirements", + "url": "https://w3c.github.io/uievents/#mouseevent-native-requirements" + }, + "snapshot": { + "number": "3.4.3.1", + "spec": "UI Events", + "text": "Native OS Requirements", + "url": "https://www.w3.org/TR/uievents/#mouseevent-native-requirements" + } + }, "#normative": { "current": { "number": "", @@ -2283,18 +2661,46 @@ }, "#optionally-fixed-virtual-key-codes": { "current": { - "number": "8.3.4", + "number": "7.3.4", "spec": "UI Events", "text": "Optionally fixed virtual key codes", "url": "https://w3c.github.io/uievents/#optionally-fixed-virtual-key-codes" }, "snapshot": { - "number": "8.3.4", + "number": "7.3.4", "spec": "UI Events", "text": "Optionally fixed virtual key codes", "url": "https://www.w3.org/TR/uievents/#optionally-fixed-virtual-key-codes" } }, + "#pointer-lock-global-state": { + "current": { + "number": "5.2.1", + "spec": "UI Events", + "text": "Global State for PointerLock", + "url": "https://w3c.github.io/uievents/#pointer-lock-global-state" + }, + "snapshot": { + "number": "5.2.1", + "spec": "UI Events", + "text": "Global State for PointerLock", + "url": "https://www.w3.org/TR/uievents/#pointer-lock-global-state" + } + }, + "#pointer-lock-global-window": { + "current": { + "number": "5.2.1.1", + "spec": "UI Events", + "text": "Window-Level State", + "url": "https://w3c.github.io/uievents/#pointer-lock-global-window" + }, + "snapshot": { + "number": "5.2.1.1", + "spec": "UI Events", + "text": "Window-Level State", + "url": "https://www.w3.org/TR/uievents/#pointer-lock-global-window" + } + }, "#references": { "current": { "number": "", @@ -2311,13 +2717,13 @@ }, "#relationship-between-key-code": { "current": { - "number": "6.2.2", + "number": "4.2.2", "spec": "UI Events", "text": "The Relationship Between key and code", "url": "https://w3c.github.io/uievents/#relationship-between-key-code" }, "snapshot": { - "number": "6.2.2", + "number": "4.2.2", "spec": "UI Events", "text": "The Relationship Between key and code", "url": "https://www.w3.org/TR/uievents/#relationship-between-key-code" @@ -2327,16 +2733,72 @@ "current": { "number": "", "spec": "UI Events", - "text": "11. Security Considerations", + "text": "10. Security Considerations", "url": "https://w3c.github.io/uievents/#security-considerations" }, "snapshot": { "number": "", "spec": "UI Events", - "text": "11. Security Considerations", + "text": "10. Security Considerations", "url": "https://www.w3.org/TR/uievents/#security-considerations" } }, + "#send-click-event-id": { + "current": { + "number": "3.4.3.13", + "spec": "UI Events", + "text": "send click event", + "url": "https://w3c.github.io/uievents/#send-click-event-id" + }, + "snapshot": { + "number": "3.4.3.13", + "spec": "UI Events", + "text": "send click event", + "url": "https://www.w3.org/TR/uievents/#send-click-event-id" + } + }, + "#set-mouse-event-modifiers-id": { + "current": { + "number": "3.4.3.5", + "spec": "UI Events", + "text": "set mouse event modifiers", + "url": "https://w3c.github.io/uievents/#set-mouse-event-modifiers-id" + }, + "snapshot": { + "number": "3.4.3.5", + "spec": "UI Events", + "text": "set mouse event modifiers", + "url": "https://www.w3.org/TR/uievents/#set-mouse-event-modifiers-id" + } + }, + "#set-mouseevent-attributes-from-native-id": { + "current": { + "number": "3.4.3.9", + "spec": "UI Events", + "text": "set MouseEvent attributes from native", + "url": "https://w3c.github.io/uievents/#set-mouseevent-attributes-from-native-id" + }, + "snapshot": { + "number": "3.4.3.9", + "spec": "UI Events", + "text": "set MouseEvent attributes from native", + "url": "https://www.w3.org/TR/uievents/#set-mouseevent-attributes-from-native-id" + } + }, + "#set-pointerlock-attributes-for-mousemove-id": { + "current": { + "number": "5.2.3", + "spec": "UI Events", + "text": "set PointerLock attributes for mousemove", + "url": "https://w3c.github.io/uievents/#set-pointerlock-attributes-for-mousemove-id" + }, + "snapshot": { + "number": "5.2.3", + "spec": "UI Events", + "text": "set PointerLock attributes for mousemove", + "url": "https://www.w3.org/TR/uievents/#set-pointerlock-attributes-for-mousemove-id" + } + }, "#sotd": { "current": { "number": "", @@ -2365,20 +2827,6 @@ "url": "https://www.w3.org/TR/uievents/#style-conventions" } }, - "#sync-async": { - "current": { - "number": "3.3", - "spec": "UI Events", - "text": "Synchronous and asynchronous events", - "url": "https://w3c.github.io/uievents/#sync-async" - }, - "snapshot": { - "number": "3.3", - "spec": "UI Events", - "text": "Synchronous and asynchronous events", - "url": "https://www.w3.org/TR/uievents/#sync-async" - } - }, "#toc": { "current": { "number": "", @@ -2393,20 +2841,6 @@ "url": "https://www.w3.org/TR/uievents/#toc" } }, - "#trusted-events": { - "current": { - "number": "3.4", - "spec": "UI Events", - "text": "Trusted events", - "url": "https://w3c.github.io/uievents/#trusted-events" - }, - "snapshot": { - "number": "3.4", - "spec": "UI Events", - "text": "Trusted events", - "url": "https://www.w3.org/TR/uievents/#trusted-events" - } - }, "#ui-events-conformance": { "current": { "number": "1.2", @@ -2449,6 +2883,20 @@ "url": "https://www.w3.org/TR/uievents/#ui-events-overview" } }, + "#uievent-algorithms": { + "current": { + "number": "3.2.2", + "spec": "UI Events", + "text": "UIEvent Algorithms", + "url": "https://w3c.github.io/uievents/#uievent-algorithms" + }, + "snapshot": { + "number": "3.2.2", + "spec": "UI Events", + "text": "UIEvent Algorithms", + "url": "https://www.w3.org/TR/uievents/#uievent-algorithms" + } + }, "#w3c-conformance": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-url.json b/bikeshed/spec-data/readonly/headings/headings-url.json index da83927f69..99515cdbcf 100644 --- a/bikeshed/spec-data/readonly/headings/headings-url.json +++ b/bikeshed/spec-data/readonly/headings/headings-url.json @@ -23,12 +23,12 @@ "url": "https://url.spec.whatwg.org/#api" } }, - "#application/x-www-form-urlencoded": { + "#application%2Fx-www-form-urlencoded": { "current": { "number": "5", "spec": "URL", "text": "application/x-www-form-urlencoded", - "url": "https://url.spec.whatwg.org/#application/x-www-form-urlencoded" + "url": "https://url.spec.whatwg.org/#application%2Fx-www-form-urlencoded" } }, "#goals": { diff --git a/bikeshed/spec-data/readonly/headings/headings-urlpattern.json b/bikeshed/spec-data/readonly/headings/headings-urlpattern.json index 1f2a7c0e3c..dda62b518c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-urlpattern.json +++ b/bikeshed/spec-data/readonly/headings/headings-urlpattern.json @@ -2,201 +2,273 @@ "#abstract": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Abstract", - "url": "https://wicg.github.io/urlpattern/#abstract" + "url": "https://urlpattern.spec.whatwg.org/#abstract" + } + }, + "#acknowledgments": { + "current": { + "number": "", + "spec": "URL Pattern", + "text": "Acknowledgments", + "url": "https://urlpattern.spec.whatwg.org/#acknowledgments" } }, "#canon": { "current": { "number": "3", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Canonicalization", - "url": "https://wicg.github.io/urlpattern/#canon" + "url": "https://urlpattern.spec.whatwg.org/#canon" } }, "#canon-encoding-callbacks": { "current": { "number": "3.1", - "spec": "URLPattern API", - "text": "Encoding Callbacks", - "url": "https://wicg.github.io/urlpattern/#canon-encoding-callbacks" + "spec": "URL Pattern", + "text": "Encoding callbacks", + "url": "https://urlpattern.spec.whatwg.org/#canon-encoding-callbacks" } }, "#canon-processing-for-init": { "current": { "number": "3.2", - "spec": "URLPattern API", - "text": "URLPatternInit Processing", - "url": "https://wicg.github.io/urlpattern/#canon-processing-for-init" + "spec": "URL Pattern", + "text": "URLPatternInit processing", + "url": "https://urlpattern.spec.whatwg.org/#canon-processing-for-init" } }, "#constructor-string-parsing": { "current": { - "number": "1.2", - "spec": "URLPattern API", - "text": "Constructor String Parsing", - "url": "https://wicg.github.io/urlpattern/#constructor-string-parsing" + "number": "1.6", + "spec": "URL Pattern", + "text": "Constructor string parsing", + "url": "https://urlpattern.spec.whatwg.org/#constructor-string-parsing" } }, "#converting-part-lists-to-pattern-strings": { "current": { "number": "2.3", - "spec": "URLPattern API", - "text": "Converting Part Lists to Pattern Strings", - "url": "https://wicg.github.io/urlpattern/#converting-part-lists-to-pattern-strings" + "spec": "URL Pattern", + "text": "Converting part lists to pattern strings", + "url": "https://urlpattern.spec.whatwg.org/#converting-part-lists-to-pattern-strings" } }, "#converting-part-lists-to-regular-expressions": { "current": { "number": "2.2", - "spec": "URLPattern API", - "text": "Converting Part Lists to Regular Expressions", - "url": "https://wicg.github.io/urlpattern/#converting-part-lists-to-regular-expressions" + "spec": "URL Pattern", + "text": "Converting part lists to regular expressions", + "url": "https://urlpattern.spec.whatwg.org/#converting-part-lists-to-regular-expressions" + } + }, + "#high-level-operations": { + "current": { + "number": "1.4", + "spec": "URL Pattern", + "text": "High-level operations", + "url": "https://urlpattern.spec.whatwg.org/#high-level-operations" } }, "#idl-index": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "IDL Index", - "url": "https://wicg.github.io/urlpattern/#idl-index" + "url": "https://urlpattern.spec.whatwg.org/#idl-index" } }, "#index": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Index", - "url": "https://wicg.github.io/urlpattern/#index" + "url": "https://urlpattern.spec.whatwg.org/#index" } }, "#index-defined-elsewhere": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Terms defined by reference", - "url": "https://wicg.github.io/urlpattern/#index-defined-elsewhere" + "url": "https://urlpattern.spec.whatwg.org/#index-defined-elsewhere" } }, "#index-defined-here": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Terms defined by this specification", - "url": "https://wicg.github.io/urlpattern/#index-defined-here" + "url": "https://urlpattern.spec.whatwg.org/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "URL Pattern", + "text": "Informative References", + "url": "https://urlpattern.spec.whatwg.org/#informative" + } + }, + "#introduction": { + "current": { + "number": "1.1", + "spec": "URL Pattern", + "text": "Introduction", + "url": "https://urlpattern.spec.whatwg.org/#introduction" + } + }, + "#ipr": { + "current": { + "number": "", + "spec": "URL Pattern", + "text": "Intellectual property rights", + "url": "https://urlpattern.spec.whatwg.org/#ipr" } }, "#normative": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Normative References", - "url": "https://wicg.github.io/urlpattern/#normative" + "url": "https://urlpattern.spec.whatwg.org/#normative" } }, "#options-header": { "current": { "number": "2.1.4", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Options", - "url": "https://wicg.github.io/urlpattern/#options-header" + "url": "https://urlpattern.spec.whatwg.org/#options-header" + } + }, + "#other-specs": { + "current": { + "number": "4", + "spec": "URL Pattern", + "text": "Using URL patterns in other specifications", + "url": "https://urlpattern.spec.whatwg.org/#other-specs" + } + }, + "#other-specs-javascript": { + "current": { + "number": "4.1", + "spec": "URL Pattern", + "text": "Integrating with JavaScript APIs", + "url": "https://urlpattern.spec.whatwg.org/#other-specs-javascript" + } + }, + "#other-specs-json": { + "current": { + "number": "4.2", + "spec": "URL Pattern", + "text": "Integrating with JSON data formats", + "url": "https://urlpattern.spec.whatwg.org/#other-specs-json" } }, "#parsing": { "current": { "number": "2.1.5", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Parsing", - "url": "https://wicg.github.io/urlpattern/#parsing" + "url": "https://urlpattern.spec.whatwg.org/#parsing" } }, - "#parsing-patterns": { + "#parsing-pattern-strings": { "current": { "number": "2.1", - "spec": "URLPattern API", - "text": "Parsing Patterns", - "url": "https://wicg.github.io/urlpattern/#parsing-patterns" + "spec": "URL Pattern", + "text": "Parsing pattern strings", + "url": "https://urlpattern.spec.whatwg.org/#parsing-pattern-strings" } }, "#parts": { "current": { "number": "2.1.3", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Parts", - "url": "https://wicg.github.io/urlpattern/#parts" + "url": "https://urlpattern.spec.whatwg.org/#parts" } }, - "#patterns": { + "#pattern-strings": { "current": { "number": "2", - "spec": "URLPattern API", - "text": "Patterns", - "url": "https://wicg.github.io/urlpattern/#patterns" + "spec": "URL Pattern", + "text": "Pattern strings", + "url": "https://urlpattern.spec.whatwg.org/#pattern-strings" } }, "#references": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "References", - "url": "https://wicg.github.io/urlpattern/#references" - } - }, - "#status": { - "current": { - "number": "", - "spec": "URLPattern API", - "text": "Status of this document", - "url": "https://wicg.github.io/urlpattern/#status" + "url": "https://urlpattern.spec.whatwg.org/#references" } }, "#title": { "current": { "number": "", - "spec": "URLPattern API", - "text": "URLPattern API", - "url": "https://wicg.github.io/urlpattern/#title" + "spec": "URL Pattern", + "text": "URL Pattern", + "url": "https://urlpattern.spec.whatwg.org/#title" } }, "#toc": { "current": { "number": "", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Table of Contents", - "url": "https://wicg.github.io/urlpattern/#toc" + "url": "https://urlpattern.spec.whatwg.org/#toc" } }, "#tokenizing": { "current": { "number": "2.1.2", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Tokenizing", - "url": "https://wicg.github.io/urlpattern/#tokenizing" + "url": "https://urlpattern.spec.whatwg.org/#tokenizing" } }, "#tokens": { "current": { "number": "2.1.1", - "spec": "URLPattern API", + "spec": "URL Pattern", "text": "Tokens", - "url": "https://wicg.github.io/urlpattern/#tokens" + "url": "https://urlpattern.spec.whatwg.org/#tokens" + } + }, + "#url-pattern-struct": { + "current": { + "number": "1.3", + "spec": "URL Pattern", + "text": "The URL pattern struct", + "url": "https://urlpattern.spec.whatwg.org/#url-pattern-struct" } }, "#urlpattern-class": { "current": { - "number": "1", - "spec": "URLPattern API", + "number": "1.2", + "spec": "URL Pattern", "text": "The URLPattern class", - "url": "https://wicg.github.io/urlpattern/#urlpattern-class" + "url": "https://urlpattern.spec.whatwg.org/#urlpattern-class" } }, "#urlpattern-internals": { "current": { - "number": "1.1", - "spec": "URLPattern API", + "number": "1.5", + "spec": "URL Pattern", "text": "Internals", - "url": "https://wicg.github.io/urlpattern/#urlpattern-internals" + "url": "https://urlpattern.spec.whatwg.org/#urlpattern-internals" + } + }, + "#urlpatterns": { + "current": { + "number": "1", + "spec": "URL Pattern", + "text": "URL patterns", + "url": "https://urlpattern.spec.whatwg.org/#urlpatterns" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-user-preference-media-features-headers.json b/bikeshed/spec-data/readonly/headings/headings-user-preference-media-features-headers.json index d6e65f360f..6225ebbbd7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-user-preference-media-features-headers.json +++ b/bikeshed/spec-data/readonly/headings/headings-user-preference-media-features-headers.json @@ -9,7 +9,7 @@ }, "#acknowledgements%3EAcknowledgements": { "current": { - "number": "5", + "number": "6", "spec": "User Preference Media Features Client Hints Headers", "text": "Acknowledgements", "url": "https://wicg.github.io/user-preference-media-features-headers/#acknowledgements%3EAcknowledgements" @@ -79,6 +79,14 @@ "url": "https://wicg.github.io/user-preference-media-features-headers/#policy-controlled-features" } }, + "#privacy-considerations": { + "current": { + "number": "4", + "spec": "User Preference Media Features Client Hints Headers", + "text": "Privacy Considerations", + "url": "https://wicg.github.io/user-preference-media-features-headers/#privacy-considerations" + } + }, "#references": { "current": { "number": "", @@ -129,7 +137,7 @@ }, "#security-considerations": { "current": { - "number": "4", + "number": "5", "spec": "User Preference Media Features Client Hints Headers", "text": "Security Considerations", "url": "https://wicg.github.io/user-preference-media-features-headers/#security-considerations" @@ -183,14 +191,6 @@ "url": "https://wicg.github.io/user-preference-media-features-headers/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "User Preference Media Features Client Hints Headers", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/user-preference-media-features-headers/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-user-timing.json b/bikeshed/spec-data/readonly/headings/headings-user-timing.json index 4c3e70fa88..45b535b089 100644 --- a/bikeshed/spec-data/readonly/headings/headings-user-timing.json +++ b/bikeshed/spec-data/readonly/headings/headings-user-timing.json @@ -225,13 +225,13 @@ }, "#privacy-security": { "current": { - "number": "5", + "number": "6", "spec": "User Timing", "text": "Privacy and Security", "url": "https://w3c.github.io/user-timing/#privacy-security" }, "snapshot": { - "number": "5", + "number": "6", "spec": "User Timing", "text": "Privacy and Security", "url": "https://www.w3.org/TR/user-timing/#privacy-security" @@ -251,6 +251,20 @@ "url": "https://www.w3.org/TR/user-timing/#processing" } }, + "#recommended-mark-names": { + "current": { + "number": "5", + "spec": "User Timing", + "text": "Recommended mark names", + "url": "https://w3c.github.io/user-timing/#recommended-mark-names" + }, + "snapshot": { + "number": "5", + "spec": "User Timing", + "text": "Recommended mark names", + "url": "https://www.w3.org/TR/user-timing/#recommended-mark-names" + } + }, "#references": { "current": { "number": "B", diff --git a/bikeshed/spec-data/readonly/headings/headings-vc-data-integrity.json b/bikeshed/spec-data/readonly/headings/headings-vc-data-integrity.json new file mode 100644 index 0000000000..c17049ed06 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-vc-data-integrity.json @@ -0,0 +1,892 @@ +{ + "#accessibility-considerations": { + "current": { + "number": "7", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Accessibility Considerations", + "url": "https://w3c.github.io/vc-data-integrity/#accessibility-considerations" + }, + "snapshot": { + "number": "7", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Accessibility Considerations", + "url": "https://www.w3.org/TR/vc-data-integrity/#accessibility-considerations" + } + }, + "#acknowledgements": { + "current": { + "number": "C", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Acknowledgements", + "url": "https://w3c.github.io/vc-data-integrity/#acknowledgements" + }, + "snapshot": { + "number": "C", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/vc-data-integrity/#acknowledgements" + } + }, + "#add-proof": { + "current": { + "number": "4.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Add Proof", + "url": "https://w3c.github.io/vc-data-integrity/#add-proof" + }, + "snapshot": { + "number": "4.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Add Proof", + "url": "https://www.w3.org/TR/vc-data-integrity/#add-proof" + } + }, + "#add-proof-set-chain": { + "current": { + "number": "4.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Add Proof Set/Chain", + "url": "https://w3c.github.io/vc-data-integrity/#add-proof-set-chain" + }, + "snapshot": { + "number": "4.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Add Proof Set/Chain", + "url": "https://www.w3.org/TR/vc-data-integrity/#add-proof-set-chain" + } + }, + "#agility-and-layering": { + "current": { + "number": "5.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Agility and Layering", + "url": "https://w3c.github.io/vc-data-integrity/#agility-and-layering" + }, + "snapshot": { + "number": "5.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Agility and Layering", + "url": "https://www.w3.org/TR/vc-data-integrity/#agility-and-layering" + } + }, + "#algorithms": { + "current": { + "number": "4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Algorithms", + "url": "https://w3c.github.io/vc-data-integrity/#algorithms" + }, + "snapshot": { + "number": "4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Algorithms", + "url": "https://www.w3.org/TR/vc-data-integrity/#algorithms" + } + }, + "#canonicalization-method-correctness": { + "current": { + "number": "5.12", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Canonicalization Method Correctness", + "url": "https://w3c.github.io/vc-data-integrity/#canonicalization-method-correctness" + }, + "snapshot": { + "number": "5.12", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Canonicalization Method Correctness", + "url": "https://www.w3.org/TR/vc-data-integrity/#canonicalization-method-correctness" + } + }, + "#canonicalization-method-privacy": { + "current": { + "number": "6.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Canonicalization Method Privacy", + "url": "https://w3c.github.io/vc-data-integrity/#canonicalization-method-privacy" + }, + "snapshot": { + "number": "6.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Canonicalization Method Privacy", + "url": "https://www.w3.org/TR/vc-data-integrity/#canonicalization-method-privacy" + } + }, + "#canonicalization-method-security": { + "current": { + "number": "5.11", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Canonicalization Method Security", + "url": "https://w3c.github.io/vc-data-integrity/#canonicalization-method-security" + }, + "snapshot": { + "number": "5.11", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Canonicalization Method Security", + "url": "https://www.w3.org/TR/vc-data-integrity/#canonicalization-method-security" + } + }, + "#conformance": { + "current": { + "number": "1.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Conformance", + "url": "https://w3c.github.io/vc-data-integrity/#conformance" + }, + "snapshot": { + "number": "1.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Conformance", + "url": "https://www.w3.org/TR/vc-data-integrity/#conformance" + } + }, + "#context-injection": { + "current": { + "number": "2.4.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Context Injection", + "url": "https://w3c.github.io/vc-data-integrity/#context-injection" + }, + "snapshot": { + "number": "2.4.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Context Injection", + "url": "https://www.w3.org/TR/vc-data-integrity/#context-injection" + } + }, + "#context-validation": { + "current": { + "number": "4.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Context Validation", + "url": "https://w3c.github.io/vc-data-integrity/#context-validation" + }, + "snapshot": { + "number": "4.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Context Validation", + "url": "https://www.w3.org/TR/vc-data-integrity/#context-validation" + } + }, + "#contexts-and-vocabularies": { + "current": { + "number": "2.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Contexts and Vocabularies", + "url": "https://w3c.github.io/vc-data-integrity/#contexts-and-vocabularies" + }, + "snapshot": { + "number": "2.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Contexts and Vocabularies", + "url": "https://www.w3.org/TR/vc-data-integrity/#contexts-and-vocabularies" + } + }, + "#conventions-for-naming-cryptography-suites": { + "current": { + "number": "5.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Conventions for Naming Cryptography Suites", + "url": "https://w3c.github.io/vc-data-integrity/#conventions-for-naming-cryptography-suites" + }, + "snapshot": { + "number": "5.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Conventions for Naming Cryptography Suites", + "url": "https://www.w3.org/TR/vc-data-integrity/#conventions-for-naming-cryptography-suites" + } + }, + "#cryptographic-suites": { + "current": { + "number": "3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Cryptographic Suites", + "url": "https://w3c.github.io/vc-data-integrity/#cryptographic-suites" + }, + "snapshot": { + "number": "3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Cryptographic Suites", + "url": "https://www.w3.org/TR/vc-data-integrity/#cryptographic-suites" + } + }, + "#data-model": { + "current": { + "number": "2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Data Model", + "url": "https://w3c.github.io/vc-data-integrity/#data-model" + }, + "snapshot": { + "number": "2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Data Model", + "url": "https://www.w3.org/TR/vc-data-integrity/#data-model" + } + }, + "#data-opacity": { + "current": { + "number": "5.7", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Data Opacity", + "url": "https://w3c.github.io/vc-data-integrity/#data-opacity" + }, + "snapshot": { + "number": "5.7", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Data Opacity", + "url": "https://www.w3.org/TR/vc-data-integrity/#data-opacity" + } + }, + "#dataintegrityproof": { + "current": { + "number": "3.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "DataIntegrityProof", + "url": "https://w3c.github.io/vc-data-integrity/#dataintegrityproof" + }, + "snapshot": { + "number": "3.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "DataIntegrityProof", + "url": "https://www.w3.org/TR/vc-data-integrity/#dataintegrityproof" + } + }, + "#datatypes": { + "current": { + "number": "2.4.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Datatypes", + "url": "https://w3c.github.io/vc-data-integrity/#datatypes" + }, + "snapshot": { + "number": "2.4.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Datatypes", + "url": "https://www.w3.org/TR/vc-data-integrity/#datatypes" + } + }, + "#design-goals-and-rationale": { + "current": { + "number": "1.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Design Goals and Rationale", + "url": "https://w3c.github.io/vc-data-integrity/#design-goals-and-rationale" + }, + "snapshot": { + "number": "1.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Design Goals and Rationale", + "url": "https://www.w3.org/TR/vc-data-integrity/#design-goals-and-rationale" + } + }, + "#fingerprinting-network-requests": { + "current": { + "number": "6.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Fingerprinting Network Requests", + "url": "https://w3c.github.io/vc-data-integrity/#fingerprinting-network-requests" + }, + "snapshot": { + "number": "6.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Fingerprinting Network Requests", + "url": "https://www.w3.org/TR/vc-data-integrity/#fingerprinting-network-requests" + } + }, + "#how-it-works": { + "current": { + "number": "1.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "How it Works", + "url": "https://w3c.github.io/vc-data-integrity/#how-it-works" + }, + "snapshot": { + "number": "1.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "How it Works", + "url": "https://www.w3.org/TR/vc-data-integrity/#how-it-works" + } + }, + "#informative-references": { + "current": { + "number": "D.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Informative references", + "url": "https://w3c.github.io/vc-data-integrity/#informative-references" + }, + "snapshot": { + "number": "D.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Informative references", + "url": "https://www.w3.org/TR/vc-data-integrity/#informative-references" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Introduction", + "url": "https://w3c.github.io/vc-data-integrity/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/vc-data-integrity/#introduction" + } + }, + "#network-requests": { + "current": { + "number": "5.13", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Network Requests", + "url": "https://w3c.github.io/vc-data-integrity/#network-requests" + }, + "snapshot": { + "number": "5.13", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Network Requests", + "url": "https://www.w3.org/TR/vc-data-integrity/#network-requests" + } + }, + "#normative-references": { + "current": { + "number": "D.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Normative references", + "url": "https://w3c.github.io/vc-data-integrity/#normative-references" + }, + "snapshot": { + "number": "D.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Normative references", + "url": "https://www.w3.org/TR/vc-data-integrity/#normative-references" + } + }, + "#other-privacy-considerations": { + "current": { + "number": "6.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Other Privacy Considerations", + "url": "https://w3c.github.io/vc-data-integrity/#other-privacy-considerations" + }, + "snapshot": { + "number": "6.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Other Privacy Considerations", + "url": "https://www.w3.org/TR/vc-data-integrity/#other-privacy-considerations" + } + }, + "#other-security-considerations": { + "current": { + "number": "5.14", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Other Security Considerations", + "url": "https://w3c.github.io/vc-data-integrity/#other-security-considerations" + }, + "snapshot": { + "number": "5.14", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Other Security Considerations", + "url": "https://www.w3.org/TR/vc-data-integrity/#other-security-considerations" + } + }, + "#presenting-time-values": { + "current": { + "number": "7.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Presenting Time Values", + "url": "https://w3c.github.io/vc-data-integrity/#presenting-time-values" + }, + "snapshot": { + "number": "7.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Presenting Time Values", + "url": "https://www.w3.org/TR/vc-data-integrity/#presenting-time-values" + } + }, + "#previous-proofs": { + "current": { + "number": "6.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Previous Proofs", + "url": "https://w3c.github.io/vc-data-integrity/#previous-proofs" + }, + "snapshot": { + "number": "6.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Previous Proofs", + "url": "https://www.w3.org/TR/vc-data-integrity/#previous-proofs" + } + }, + "#privacy-considerations": { + "current": { + "number": "6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/vc-data-integrity/#privacy-considerations" + }, + "snapshot": { + "number": "6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/vc-data-integrity/#privacy-considerations" + } + }, + "#processing-errors": { + "current": { + "number": "4.7", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Processing Errors", + "url": "https://w3c.github.io/vc-data-integrity/#processing-errors" + }, + "snapshot": { + "number": "4.7", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Processing Errors", + "url": "https://www.w3.org/TR/vc-data-integrity/#processing-errors" + } + }, + "#processing-model": { + "current": { + "number": "4.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Processing Model", + "url": "https://w3c.github.io/vc-data-integrity/#processing-model" + }, + "snapshot": { + "number": "4.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Processing Model", + "url": "https://www.w3.org/TR/vc-data-integrity/#processing-model" + } + }, + "#proof-chains": { + "current": { + "number": "2.1.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Chains", + "url": "https://w3c.github.io/vc-data-integrity/#proof-chains" + }, + "snapshot": { + "number": "2.1.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Chains", + "url": "https://www.w3.org/TR/vc-data-integrity/#proof-chains" + } + }, + "#proof-graphs": { + "current": { + "number": "2.1.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Graphs", + "url": "https://w3c.github.io/vc-data-integrity/#proof-graphs" + }, + "snapshot": { + "number": "2.1.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Graphs", + "url": "https://www.w3.org/TR/vc-data-integrity/#proof-graphs" + } + }, + "#proof-purpose-validation": { + "current": { + "number": "5.10", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Purpose Validation", + "url": "https://w3c.github.io/vc-data-integrity/#proof-purpose-validation" + }, + "snapshot": { + "number": "5.10", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Purpose Validation", + "url": "https://www.w3.org/TR/vc-data-integrity/#proof-purpose-validation" + } + }, + "#proof-purposes": { + "current": { + "number": "2.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Purposes", + "url": "https://w3c.github.io/vc-data-integrity/#proof-purposes" + }, + "snapshot": { + "number": "2.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Purposes", + "url": "https://www.w3.org/TR/vc-data-integrity/#proof-purposes" + } + }, + "#proof-sets": { + "current": { + "number": "2.1.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Sets", + "url": "https://w3c.github.io/vc-data-integrity/#proof-sets" + }, + "snapshot": { + "number": "2.1.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proof Sets", + "url": "https://www.w3.org/TR/vc-data-integrity/#proof-sets" + } + }, + "#proofs": { + "current": { + "number": "2.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proofs", + "url": "https://w3c.github.io/vc-data-integrity/#proofs" + }, + "snapshot": { + "number": "2.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Proofs", + "url": "https://www.w3.org/TR/vc-data-integrity/#proofs" + } + }, + "#protected-information": { + "current": { + "number": "5.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Protected Information", + "url": "https://w3c.github.io/vc-data-integrity/#protected-information" + }, + "snapshot": { + "number": "5.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Protected Information", + "url": "https://www.w3.org/TR/vc-data-integrity/#protected-information" + } + }, + "#protecting-application-developers": { + "current": { + "number": "5.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Protecting Application Developers", + "url": "https://w3c.github.io/vc-data-integrity/#protecting-application-developers" + }, + "snapshot": { + "number": "5.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Protecting Application Developers", + "url": "https://www.w3.org/TR/vc-data-integrity/#protecting-application-developers" + } + }, + "#references": { + "current": { + "number": "D", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "References", + "url": "https://w3c.github.io/vc-data-integrity/#references" + }, + "snapshot": { + "number": "D", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "References", + "url": "https://www.w3.org/TR/vc-data-integrity/#references" + } + }, + "#relationship-to-linked-data": { + "current": { + "number": "2.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Relationship to Linked Data", + "url": "https://w3c.github.io/vc-data-integrity/#relationship-to-linked-data" + }, + "snapshot": { + "number": "2.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Relationship to Linked Data", + "url": "https://www.w3.org/TR/vc-data-integrity/#relationship-to-linked-data" + } + }, + "#relationship-to-verifiable-credentials": { + "current": { + "number": "2.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Relationship to Verifiable Credentials", + "url": "https://w3c.github.io/vc-data-integrity/#relationship-to-verifiable-credentials" + }, + "snapshot": { + "number": "2.6", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Relationship to Verifiable Credentials", + "url": "https://www.w3.org/TR/vc-data-integrity/#relationship-to-verifiable-credentials" + } + }, + "#resource-integrity": { + "current": { + "number": "2.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Resource Integrity", + "url": "https://w3c.github.io/vc-data-integrity/#resource-integrity" + }, + "snapshot": { + "number": "2.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Resource Integrity", + "url": "https://www.w3.org/TR/vc-data-integrity/#resource-integrity" + } + }, + "#revision-history": { + "current": { + "number": "B", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Revision History", + "url": "https://w3c.github.io/vc-data-integrity/#revision-history" + }, + "snapshot": { + "number": "B", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Revision History", + "url": "https://www.w3.org/TR/vc-data-integrity/#revision-history" + } + }, + "#securing-data-losslessly": { + "current": { + "number": "2.4.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Securing Data Losslessly", + "url": "https://w3c.github.io/vc-data-integrity/#securing-data-losslessly" + }, + "snapshot": { + "number": "2.4.3", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Securing Data Losslessly", + "url": "https://www.w3.org/TR/vc-data-integrity/#securing-data-losslessly" + } + }, + "#security-considerations": { + "current": { + "number": "5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Security Considerations", + "url": "https://w3c.github.io/vc-data-integrity/#security-considerations" + }, + "snapshot": { + "number": "5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/vc-data-integrity/#security-considerations" + } + }, + "#selective-disclosure": { + "current": { + "number": "6.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Selective Disclosure", + "url": "https://w3c.github.io/vc-data-integrity/#selective-disclosure" + }, + "snapshot": { + "number": "6.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Selective Disclosure", + "url": "https://www.w3.org/TR/vc-data-integrity/#selective-disclosure" + } + }, + "#subtitle": { + "current": { + "number": "", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Securing the Integrity of Verifiable Credential Data", + "url": "https://w3c.github.io/vc-data-integrity/#subtitle" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Securing the Integrity of Verifiable Credential Data", + "url": "https://www.w3.org/TR/vc-data-integrity/#subtitle" + } + }, + "#terminology": { + "current": { + "number": "1.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Terminology", + "url": "https://w3c.github.io/vc-data-integrity/#terminology" + }, + "snapshot": { + "number": "1.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Terminology", + "url": "https://www.w3.org/TR/vc-data-integrity/#terminology" + } + }, + "#the-cryptosuitestring-datatype": { + "current": { + "number": "2.4.4.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "The cryptosuiteString Datatype", + "url": "https://w3c.github.io/vc-data-integrity/#the-cryptosuitestring-datatype" + }, + "snapshot": { + "number": "2.4.4.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "The cryptosuiteString Datatype", + "url": "https://www.w3.org/TR/vc-data-integrity/#the-cryptosuitestring-datatype" + } + }, + "#the-multibase-datatype": { + "snapshot": { + "number": "2.4.4.2", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "The multibase Datatype", + "url": "https://www.w3.org/TR/vc-data-integrity/#the-multibase-datatype" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verifiable Credential Data Integrity 1.0", + "url": "https://w3c.github.io/vc-data-integrity/#title" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verifiable Credential Data Integrity 1.0", + "url": "https://www.w3.org/TR/vc-data-integrity/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Table of Contents", + "url": "https://w3c.github.io/vc-data-integrity/#toc" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/vc-data-integrity/#toc" + } + }, + "#transformations": { + "current": { + "number": "5.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Transformations", + "url": "https://w3c.github.io/vc-data-integrity/#transformations" + }, + "snapshot": { + "number": "5.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Transformations", + "url": "https://www.w3.org/TR/vc-data-integrity/#transformations" + } + }, + "#understanding-proof-sets-and-proof-chains": { + "current": { + "number": "A", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Understanding Proof Sets and Proof Chains", + "url": "https://w3c.github.io/vc-data-integrity/#understanding-proof-sets-and-proof-chains" + }, + "snapshot": { + "number": "A", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Understanding Proof Sets and Proof Chains", + "url": "https://www.w3.org/TR/vc-data-integrity/#understanding-proof-sets-and-proof-chains" + } + }, + "#unlinkability": { + "current": { + "number": "6.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Unlinkability", + "url": "https://w3c.github.io/vc-data-integrity/#unlinkability" + }, + "snapshot": { + "number": "6.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Unlinkability", + "url": "https://www.w3.org/TR/vc-data-integrity/#unlinkability" + } + }, + "#validating-contexts": { + "current": { + "number": "2.4.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Validating Contexts", + "url": "https://w3c.github.io/vc-data-integrity/#validating-contexts" + }, + "snapshot": { + "number": "2.4.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Validating Contexts", + "url": "https://www.w3.org/TR/vc-data-integrity/#validating-contexts" + } + }, + "#verification-method-binding": { + "current": { + "number": "5.8", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verification Method Binding", + "url": "https://w3c.github.io/vc-data-integrity/#verification-method-binding" + }, + "snapshot": { + "number": "5.8", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verification Method Binding", + "url": "https://www.w3.org/TR/vc-data-integrity/#verification-method-binding" + } + }, + "#verification-relationship-validation": { + "current": { + "number": "5.9", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verification Relationship Validation", + "url": "https://w3c.github.io/vc-data-integrity/#verification-relationship-validation" + }, + "snapshot": { + "number": "5.9", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verification Relationship Validation", + "url": "https://www.w3.org/TR/vc-data-integrity/#verification-relationship-validation" + } + }, + "#verify-proof": { + "current": { + "number": "4.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verify Proof", + "url": "https://w3c.github.io/vc-data-integrity/#verify-proof" + }, + "snapshot": { + "number": "4.4", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verify Proof", + "url": "https://www.w3.org/TR/vc-data-integrity/#verify-proof" + } + }, + "#verify-proof-sets-and-chains": { + "current": { + "number": "4.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verify Proof Sets and Chains", + "url": "https://w3c.github.io/vc-data-integrity/#verify-proof-sets-and-chains" + }, + "snapshot": { + "number": "4.5", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Verify Proof Sets and Chains", + "url": "https://www.w3.org/TR/vc-data-integrity/#verify-proof-sets-and-chains" + } + }, + "#versioning-cryptography-suites": { + "current": { + "number": "5.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Versioning Cryptography Suites", + "url": "https://w3c.github.io/vc-data-integrity/#versioning-cryptography-suites" + }, + "snapshot": { + "number": "5.1", + "spec": "Verifiable Credential Data Integrity 1.0", + "text": "Versioning Cryptography Suites", + "url": "https://www.w3.org/TR/vc-data-integrity/#versioning-cryptography-suites" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-vc-data-model-2.0.json b/bikeshed/spec-data/readonly/headings/headings-vc-data-model-2.0.json new file mode 100644 index 0000000000..c1f141548f --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-vc-data-model-2.0.json @@ -0,0 +1,2328 @@ +{ + "#acceptable-use": { + "current": { + "number": "9.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Acceptable Use", + "url": "https://w3c.github.io/vc-data-model/#acceptable-use" + }, + "snapshot": { + "number": "9.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Acceptable Use", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#acceptable-use" + } + }, + "#accessibility-considerations": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "10. Accessibility Considerations", + "url": "https://w3c.github.io/vc-data-model/#accessibility-considerations" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "10. Accessibility Considerations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#accessibility-considerations" + } + }, + "#acknowledgements": { + "current": { + "number": "F", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Acknowledgements", + "url": "https://w3c.github.io/vc-data-model/#acknowledgements" + }, + "snapshot": { + "number": "F", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#acknowledgements" + } + }, + "#additional-diagrams-for-verifiable-presentations": { + "current": { + "number": "D", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Additional Diagrams for Verifiable Presentations", + "url": "https://w3c.github.io/vc-data-model/#additional-diagrams-for-verifiable-presentations" + }, + "snapshot": { + "number": "D", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Additional Diagrams for Verifiable Presentations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#additional-diagrams-for-verifiable-presentations" + } + }, + "#advanced-concepts": { + "current": { + "number": "5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Advanced Concepts", + "url": "https://w3c.github.io/vc-data-model/#advanced-concepts" + }, + "snapshot": { + "number": "5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Advanced Concepts", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#advanced-concepts" + } + }, + "#aggregation-of-credentials": { + "current": { + "number": "8.13", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Aggregation of Credentials", + "url": "https://w3c.github.io/vc-data-model/#aggregation-of-credentials" + }, + "snapshot": { + "number": "8.13", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Aggregation of Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#aggregation-of-credentials" + } + }, + "#algorithms": { + "current": { + "number": "7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Algorithms", + "url": "https://w3c.github.io/vc-data-model/#algorithms" + }, + "snapshot": { + "number": "7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Algorithms", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#algorithms" + } + }, + "#artificial-intelligence-and-machine-learning": { + "current": { + "number": "A.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "\"Artificial Intelligence\" and \"Machine Learning\"", + "url": "https://w3c.github.io/vc-data-model/#artificial-intelligence-and-machine-learning" + }, + "snapshot": { + "number": "A.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "\"Artificial Intelligence\" and \"Machine Learning\"", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#artificial-intelligence-and-machine-learning" + } + }, + "#authorization": { + "current": { + "number": "5.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Authorization", + "url": "https://w3c.github.io/vc-data-model/#authorization" + }, + "snapshot": { + "number": "5.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Authorization", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#authorization" + } + }, + "#base-context": { + "current": { + "number": "B.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Base Context", + "url": "https://w3c.github.io/vc-data-model/#base-context" + }, + "snapshot": { + "number": "B.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Base Context", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#base-context" + } + }, + "#basic-concepts": { + "current": { + "number": "4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Basic Concepts", + "url": "https://w3c.github.io/vc-data-model/#basic-concepts" + }, + "snapshot": { + "number": "4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Basic Concepts", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#basic-concepts" + } + }, + "#bearer-credentials": { + "current": { + "number": "8.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Bearer Credentials", + "url": "https://w3c.github.io/vc-data-model/#bearer-credentials" + }, + "snapshot": { + "number": "8.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Bearer Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#bearer-credentials" + } + }, + "#bundling-dependent-claims": { + "current": { + "number": "9.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Bundling Dependent Claims", + "url": "https://w3c.github.io/vc-data-model/#bundling-dependent-claims" + }, + "snapshot": { + "number": "9.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Bundling Dependent Claims", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#bundling-dependent-claims" + } + }, + "#claims": { + "current": { + "number": "3.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claims", + "url": "https://w3c.github.io/vc-data-model/#claims" + }, + "snapshot": { + "number": "3.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claims", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#claims" + } + }, + "#code-injection": { + "current": { + "number": "9.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Code Injection", + "url": "https://w3c.github.io/vc-data-model/#code-injection" + }, + "snapshot": { + "number": "9.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Code Injection", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#code-injection" + } + }, + "#conformance": { + "current": { + "number": "1.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Conformance", + "url": "https://w3c.github.io/vc-data-model/#conformance" + }, + "snapshot": { + "number": "1.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Conformance", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#conformance" + } + }, + "#content-integrity-protection": { + "current": { + "number": "9.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Content Integrity Protection", + "url": "https://w3c.github.io/vc-data-model/#content-integrity-protection" + }, + "snapshot": { + "number": "9.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Content Integrity Protection", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#content-integrity-protection" + } + }, + "#contexts": { + "current": { + "number": "4.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Contexts", + "url": "https://w3c.github.io/vc-data-model/#contexts" + }, + "snapshot": { + "number": "4.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Contexts", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#contexts" + } + }, + "#contexts-vocabularies-types-and-credential-schemas": { + "current": { + "number": "B", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Contexts, Vocabularies, Types, and Credential Schemas", + "url": "https://w3c.github.io/vc-data-model/#contexts-vocabularies-types-and-credential-schemas" + }, + "snapshot": { + "number": "B", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Contexts, Vocabularies, Types, and Credential Schemas", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#contexts-vocabularies-types-and-credential-schemas" + } + }, + "#core-data-model": { + "current": { + "number": "3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Core Data Model", + "url": "https://w3c.github.io/vc-data-model/#core-data-model" + }, + "snapshot": { + "number": "3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Core Data Model", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#core-data-model" + } + }, + "#correlation-during-validation": { + "current": { + "number": "8.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Correlation During Validation", + "url": "https://w3c.github.io/vc-data-model/#correlation-during-validation" + }, + "snapshot": { + "number": "8.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Correlation During Validation", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#correlation-during-validation" + } + }, + "#credential-subject": { + "current": { + "number": "4.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credential Subject", + "url": "https://w3c.github.io/vc-data-model/#credential-subject" + }, + "snapshot": { + "number": "4.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credential Subject", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#credential-subject" + } + }, + "#credential-subject-0": { + "current": { + "number": "A.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credential Subject", + "url": "https://w3c.github.io/vc-data-model/#credential-subject-0" + }, + "snapshot": { + "number": "A.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credential Subject", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#credential-subject-0" + } + }, + "#credential-type": { + "current": { + "number": "A.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credential Type", + "url": "https://w3c.github.io/vc-data-model/#credential-type" + }, + "snapshot": { + "number": "A.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credential Type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#credential-type" + } + }, + "#credentials": { + "current": { + "number": "3.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credentials", + "url": "https://w3c.github.io/vc-data-model/#credentials" + }, + "snapshot": { + "number": "3.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#credentials" + } + }, + "#cryptography-suites-and-libraries": { + "current": { + "number": "9.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Cryptography Suites and Libraries", + "url": "https://w3c.github.io/vc-data-model/#cryptography-suites-and-libraries" + }, + "snapshot": { + "number": "9.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Cryptography Suites and Libraries", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#cryptography-suites-and-libraries" + } + }, + "#data-first-approaches": { + "current": { + "number": "10.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Data First Approaches", + "url": "https://w3c.github.io/vc-data-model/#data-first-approaches" + }, + "snapshot": { + "number": "10.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Data First Approaches", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#data-first-approaches" + } + }, + "#data-schemas": { + "current": { + "number": "4.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Data Schemas", + "url": "https://w3c.github.io/vc-data-model/#data-schemas" + }, + "snapshot": { + "number": "4.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Data Schemas", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#data-schemas" + } + }, + "#data-theft": { + "current": { + "number": "8.17", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Data Theft", + "url": "https://w3c.github.io/vc-data-model/#data-theft" + }, + "snapshot": { + "number": "8.17", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Data Theft", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#data-theft" + } + }, + "#datatypes": { + "current": { + "number": "B.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Datatypes", + "url": "https://w3c.github.io/vc-data-model/#datatypes" + }, + "snapshot": { + "number": "B.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Datatypes", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#datatypes" + } + }, + "#device-theft-and-impersonation": { + "current": { + "number": "9.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Device Theft and Impersonation", + "url": "https://w3c.github.io/vc-data-model/#device-theft-and-impersonation" + }, + "snapshot": { + "number": "9.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Device Theft and Impersonation", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#device-theft-and-impersonation" + } + }, + "#device-tracking-and-fingerprinting": { + "current": { + "number": "8.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Device Tracking and Fingerprinting", + "url": "https://w3c.github.io/vc-data-model/#device-tracking-and-fingerprinting" + }, + "snapshot": { + "number": "8.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Device Tracking and Fingerprinting", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#device-tracking-and-fingerprinting" + } + }, + "#differences-between-contexts-types-and-credentialschemas": { + "current": { + "number": "B.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Differences between Contexts, Types, and CredentialSchemas", + "url": "https://w3c.github.io/vc-data-model/#differences-between-contexts-types-and-credentialschemas" + }, + "snapshot": { + "number": "B.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Differences between Contexts, Types, and CredentialSchemas", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#differences-between-contexts-types-and-credentialschemas" + } + }, + "#ecosystem-compatibility": { + "current": { + "number": "5.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Ecosystem Compatibility", + "url": "https://w3c.github.io/vc-data-model/#ecosystem-compatibility" + }, + "snapshot": { + "number": "5.11", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Ecosystem Compatibility", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#ecosystem-compatibility" + } + }, + "#ecosystem-overview": { + "current": { + "number": "1.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Ecosystem Overview", + "url": "https://w3c.github.io/vc-data-model/#ecosystem-overview" + }, + "snapshot": { + "number": "1.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Ecosystem Overview", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#ecosystem-overview" + } + }, + "#enveloped-verifiable-credentials": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Enveloped Verifiable Credentials", + "url": "https://w3c.github.io/vc-data-model/#enveloped-verifiable-credentials" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Enveloped Verifiable Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#enveloped-verifiable-credentials" + } + }, + "#enveloped-verifiable-presentations": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Enveloped Verifiable Presentations", + "url": "https://w3c.github.io/vc-data-model/#enveloped-verifiable-presentations" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Enveloped Verifiable Presentations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#enveloped-verifiable-presentations" + } + }, + "#evidence": { + "current": { + "number": "5.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Evidence", + "url": "https://w3c.github.io/vc-data-model/#evidence" + }, + "snapshot": { + "number": "5.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Evidence", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#evidence" + } + }, + "#extensibility": { + "current": { + "number": "5.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Extensibility", + "url": "https://w3c.github.io/vc-data-model/#extensibility" + }, + "snapshot": { + "number": "5.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Extensibility", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#extensibility" + } + }, + "#favor-abstract-claims": { + "current": { + "number": "8.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Favor Abstract Claims", + "url": "https://w3c.github.io/vc-data-model/#favor-abstract-claims" + }, + "snapshot": { + "number": "8.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Favor Abstract Claims", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#favor-abstract-claims" + } + }, + "#fitness-for-purpose": { + "current": { + "number": "A.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Fitness for Purpose", + "url": "https://w3c.github.io/vc-data-model/#fitness-for-purpose" + }, + "snapshot": { + "number": "A.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Fitness for Purpose", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#fitness-for-purpose" + } + }, + "#frequency-of-claim-issuance": { + "current": { + "number": "8.18", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Frequency of Claim Issuance", + "url": "https://w3c.github.io/vc-data-model/#frequency-of-claim-issuance" + }, + "snapshot": { + "number": "8.18", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Frequency of Claim Issuance", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#frequency-of-claim-issuance" + } + }, + "#getting-started": { + "current": { + "number": "4.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Getting Started", + "url": "https://w3c.github.io/vc-data-model/#getting-started" + }, + "snapshot": { + "number": "4.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Getting Started", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#getting-started" + } + }, + "#highly-dynamic-information": { + "current": { + "number": "9.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Highly Dynamic Information", + "url": "https://w3c.github.io/vc-data-model/#highly-dynamic-information" + }, + "snapshot": { + "number": "9.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Highly Dynamic Information", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#highly-dynamic-information" + } + }, + "#holder": { + "current": { + "number": "A.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Holder", + "url": "https://w3c.github.io/vc-data-model/#holder" + }, + "snapshot": { + "number": "A.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Holder", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#holder" + } + }, + "#iana-considerations": { + "current": { + "number": "C", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "IANA Considerations", + "url": "https://w3c.github.io/vc-data-model/#iana-considerations" + }, + "snapshot": { + "number": "C", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "IANA Considerations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#iana-considerations" + } + }, + "#identifier-based-correlation": { + "current": { + "number": "8.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Identifier-Based Correlation", + "url": "https://w3c.github.io/vc-data-model/#identifier-based-correlation" + }, + "snapshot": { + "number": "8.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Identifier-Based Correlation", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#identifier-based-correlation" + } + }, + "#identifiers": { + "current": { + "number": "4.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Identifiers", + "url": "https://w3c.github.io/vc-data-model/#identifiers" + }, + "snapshot": { + "number": "4.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Identifiers", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#identifiers" + } + }, + "#inappropriate-use": { + "current": { + "number": "9.9.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Inappropriate Use", + "url": "https://w3c.github.io/vc-data-model/#inappropriate-use" + }, + "snapshot": { + "number": "9.9.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Inappropriate Use", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#inappropriate-use" + } + }, + "#informative-references": { + "current": { + "number": "G.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Informative references", + "url": "https://w3c.github.io/vc-data-model/#informative-references" + }, + "snapshot": { + "number": "G.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Informative references", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#informative-references" + } + }, + "#integrity-of-related-resources": { + "current": { + "number": "5.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Integrity of Related Resources", + "url": "https://w3c.github.io/vc-data-model/#integrity-of-related-resources" + }, + "snapshot": { + "number": "5.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Integrity of Related Resources", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#integrity-of-related-resources" + } + }, + "#internationalization-considerations": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "11. Internationalization Considerations", + "url": "https://w3c.github.io/vc-data-model/#internationalization-considerations" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "11. Internationalization Considerations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#internationalization-considerations" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Introduction", + "url": "https://w3c.github.io/vc-data-model/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Introduction", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#introduction" + } + }, + "#issuance-date": { + "current": { + "number": "A.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuance Date", + "url": "https://w3c.github.io/vc-data-model/#issuance-date" + }, + "snapshot": { + "number": "A.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuance Date", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#issuance-date" + } + }, + "#issuer": { + "current": { + "number": "4.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuer", + "url": "https://w3c.github.io/vc-data-model/#issuer" + }, + "snapshot": { + "number": "4.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuer", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#issuer" + } + }, + "#issuer-0": { + "current": { + "number": "A.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuer", + "url": "https://w3c.github.io/vc-data-model/#issuer-0" + }, + "snapshot": { + "number": "A.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuer", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#issuer-0" + } + }, + "#issuer-cooperation-impacts-on-privacy": { + "current": { + "number": "8.21", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuer Cooperation Impacts on Privacy", + "url": "https://w3c.github.io/vc-data-model/#issuer-cooperation-impacts-on-privacy" + }, + "snapshot": { + "number": "8.21", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Issuer Cooperation Impacts on Privacy", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#issuer-cooperation-impacts-on-privacy" + } + }, + "#json-ld": { + "current": { + "number": "6.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "JSON-LD", + "url": "https://w3c.github.io/vc-data-model/#json-ld" + }, + "snapshot": { + "number": "6.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "JSON-LD", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#json-ld" + } + }, + "#key-management": { + "current": { + "number": "9.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Key Management", + "url": "https://w3c.github.io/vc-data-model/#key-management" + }, + "snapshot": { + "number": "9.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Key Management", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#key-management" + } + }, + "#language-and-base-direction": { + "current": { + "number": "11.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Language and Base Direction", + "url": "https://w3c.github.io/vc-data-model/#language-and-base-direction" + }, + "snapshot": { + "number": "11.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Language and Base Direction", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#language-and-base-direction" + } + }, + "#legal-processes": { + "current": { + "number": "8.15", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Legal Processes", + "url": "https://w3c.github.io/vc-data-model/#legal-processes" + }, + "snapshot": { + "number": "8.15", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Legal Processes", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#legal-processes" + } + }, + "#lists-and-arrays": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Lists and Arrays", + "url": "https://w3c.github.io/vc-data-model/#lists-and-arrays" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Lists and Arrays", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#lists-and-arrays" + } + }, + "#man-in-the-middle-mitm-attack": { + "current": { + "number": "9.5.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Man-in-the-Middle (MITM) Attack", + "url": "https://w3c.github.io/vc-data-model/#man-in-the-middle-mitm-attack" + }, + "snapshot": { + "number": "9.5.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Man-in-the-Middle (MITM) Attack", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#man-in-the-middle-mitm-attack" + } + }, + "#man-in-the-middle-mitm-replay-and-cloning-attacks": { + "current": { + "number": "9.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Man-in-the-Middle (MITM), Replay, and Cloning Attacks", + "url": "https://w3c.github.io/vc-data-model/#man-in-the-middle-mitm-replay-and-cloning-attacks" + }, + "snapshot": { + "number": "9.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Man-in-the-Middle (MITM), Replay, and Cloning Attacks", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#man-in-the-middle-mitm-replay-and-cloning-attacks" + } + }, + "#media-type-precision": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Media Type Precision", + "url": "https://w3c.github.io/vc-data-model/#media-type-precision" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Media Type Precision", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#media-type-precision" + } + }, + "#media-types": { + "current": { + "number": "6.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Media Types", + "url": "https://w3c.github.io/vc-data-model/#media-types" + }, + "snapshot": { + "number": "6.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Media Types", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#media-types" + } + }, + "#metadata-based-correlation": { + "current": { + "number": "8.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Metadata-based Correlation", + "url": "https://w3c.github.io/vc-data-model/#metadata-based-correlation" + }, + "snapshot": { + "number": "8.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Metadata-based Correlation", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#metadata-based-correlation" + } + }, + "#names-and-descriptions": { + "current": { + "number": "4.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Names and Descriptions", + "url": "https://w3c.github.io/vc-data-model/#names-and-descriptions" + }, + "snapshot": { + "number": "4.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Names and Descriptions", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#names-and-descriptions" + } + }, + "#normative-references": { + "current": { + "number": "G.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Normative references", + "url": "https://w3c.github.io/vc-data-model/#normative-references" + }, + "snapshot": { + "number": "G.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Normative references", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#normative-references" + } + }, + "#notable-json-ld-features": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Notable JSON-LD Features", + "url": "https://w3c.github.io/vc-data-model/#notable-json-ld-features" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Notable JSON-LD Features", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#notable-json-ld-features" + } + }, + "#personally-identifiable-information": { + "current": { + "number": "8.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Personally Identifiable Information", + "url": "https://w3c.github.io/vc-data-model/#personally-identifiable-information" + }, + "snapshot": { + "number": "8.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Personally Identifiable Information", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#personally-identifiable-information" + } + }, + "#prefer-single-use-credentials": { + "current": { + "number": "8.19", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Prefer Single-Use Credentials", + "url": "https://w3c.github.io/vc-data-model/#prefer-single-use-credentials" + }, + "snapshot": { + "number": "8.19", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Prefer Single-Use Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#prefer-single-use-credentials" + } + }, + "#presentations": { + "current": { + "number": "3.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Presentations", + "url": "https://w3c.github.io/vc-data-model/#presentations" + }, + "snapshot": { + "number": "3.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Presentations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#presentations" + } + }, + "#presentations-including-holder-claims": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Presentations Including Holder Claims", + "url": "https://w3c.github.io/vc-data-model/#presentations-including-holder-claims" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Presentations Including Holder Claims", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#presentations-including-holder-claims" + } + }, + "#presentations-using-derived-credentials": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Presentations Using Derived Credentials", + "url": "https://w3c.github.io/vc-data-model/#presentations-using-derived-credentials" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Presentations Using Derived Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#presentations-using-derived-credentials" + } + }, + "#privacy-considerations": { + "current": { + "number": "8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/vc-data-model/#privacy-considerations" + }, + "snapshot": { + "number": "8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#privacy-considerations" + } + }, + "#private-browsing": { + "current": { + "number": "8.20", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Private Browsing", + "url": "https://w3c.github.io/vc-data-model/#private-browsing" + }, + "snapshot": { + "number": "8.20", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Private Browsing", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#private-browsing" + } + }, + "#problem-details": { + "current": { + "number": "7.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Problem Details", + "url": "https://w3c.github.io/vc-data-model/#problem-details" + }, + "snapshot": { + "number": "7.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Problem Details", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#problem-details" + } + }, + "#proofs-signatures": { + "current": { + "number": "A.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Proofs (Signatures)", + "url": "https://w3c.github.io/vc-data-model/#proofs-signatures" + }, + "snapshot": { + "number": "A.6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Proofs (Signatures)", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#proofs-signatures" + } + }, + "#providing-default-language-and-direction": { + "current": { + "number": "11.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Providing Default Language and Direction", + "url": "https://w3c.github.io/vc-data-model/#providing-default-language-and-direction" + }, + "snapshot": { + "number": "11.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Providing Default Language and Direction", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#providing-default-language-and-direction" + } + }, + "#references": { + "current": { + "number": "G", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "References", + "url": "https://w3c.github.io/vc-data-model/#references" + }, + "snapshot": { + "number": "G", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "References", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#references" + } + }, + "#refreshing": { + "current": { + "number": "5.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Refreshing", + "url": "https://w3c.github.io/vc-data-model/#refreshing" + }, + "snapshot": { + "number": "5.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Refreshing", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#refreshing" + } + }, + "#replay-attack": { + "current": { + "number": "9.5.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Replay Attack", + "url": "https://w3c.github.io/vc-data-model/#replay-attack" + }, + "snapshot": { + "number": "9.5.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Replay Attack", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#replay-attack" + } + }, + "#representing-time": { + "current": { + "number": "5.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Representing Time", + "url": "https://w3c.github.io/vc-data-model/#representing-time" + }, + "snapshot": { + "number": "5.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Representing Time", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#representing-time" + } + }, + "#reserved-extension-points": { + "current": { + "number": "5.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Reserved Extension Points", + "url": "https://w3c.github.io/vc-data-model/#reserved-extension-points" + }, + "snapshot": { + "number": "5.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Reserved Extension Points", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#reserved-extension-points" + } + }, + "#restrictions-on-json-ld": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Restrictions on JSON-LD", + "url": "https://w3c.github.io/vc-data-model/#restrictions-on-json-ld" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Restrictions on JSON-LD", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#restrictions-on-json-ld" + } + }, + "#revision-history": { + "current": { + "number": "E", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Revision History", + "url": "https://w3c.github.io/vc-data-model/#revision-history" + }, + "snapshot": { + "number": "E", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Revision History", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#revision-history" + } + }, + "#schema": { + "current": { + "number": "A.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Schema", + "url": "https://w3c.github.io/vc-data-model/#schema" + }, + "snapshot": { + "number": "A.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Schema", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#schema" + } + }, + "#sd-jwt-claim--QiHe16kQlCbMyLS8sDvthzZrUt56kbCJDGgpFmaupA": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim--QiHe16kQlCbMyLS8sDvthzZrUt56kbCJDGgpFmaupA" + } + }, + "#sd-jwt-claim--Rv12Ii9Fzrk3HU9Hk5AMeGGPH3hvlG-MuLSaxX8fWc": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim--Rv12Ii9Fzrk3HU9Hk5AMeGGPH3hvlG-MuLSaxX8fWc" + } + }, + "#sd-jwt-claim-0XFR47xOGEKj_V8_b2uLm4NE1t2sKeTlzFOqPjbZrd4": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-0XFR47xOGEKj_V8_b2uLm4NE1t2sKeTlzFOqPjbZrd4" + } + }, + "#sd-jwt-claim-0uvMKzgbFJJ39-6Y9gnKR1GAQ3ZcyseFDRqmADOZP5s": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-0uvMKzgbFJJ39-6Y9gnKR1GAQ3ZcyseFDRqmADOZP5s" + } + }, + "#sd-jwt-claim-1b6Jt-Ignwn6IbUqX_KC8auMlvVYK6qj-P3xxXOPdlw": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1b6Jt-Ignwn6IbUqX_KC8auMlvVYK6qj-P3xxXOPdlw" + } + }, + "#sd-jwt-claim-21qouPU-okPSavBbFPK9dwd7xpzBhHKUYcRIADMJHUU": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-21qouPU-okPSavBbFPK9dwd7xpzBhHKUYcRIADMJHUU" + } + }, + "#sd-jwt-claim-4py-pyJu8-tVx2ZywrMSs1gz4YhaVC3Nf_YNPVqM15I": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4py-pyJu8-tVx2ZywrMSs1gz4YhaVC3Nf_YNPVqM15I" + } + }, + "#sd-jwt-claim-4z6yaZD6SPZuoSc_hxPB_4uhMcs3XwhIB9LuM1UsyBQ": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4z6yaZD6SPZuoSc_hxPB_4uhMcs3XwhIB9LuM1UsyBQ" + } + }, + "#sd-jwt-claim-6eUprqQIka-Y1CW0KaZOgOuP-Ul9BQl4uHB-6BbtOnQ": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-6eUprqQIka-Y1CW0KaZOgOuP-Ul9BQl4uHB-6BbtOnQ" + } + }, + "#sd-jwt-claim-7t4fUmul-pwzV0WVghg99mdK65is_h_5RE22I4JCQ4Q": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7t4fUmul-pwzV0WVghg99mdK65is_h_5RE22I4JCQ4Q" + } + }, + "#sd-jwt-claim-95dD0AN38mD8SEKj2Nhjpn2YICG9a9345AxbFiZI2d0": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-95dD0AN38mD8SEKj2Nhjpn2YICG9a9345AxbFiZI2d0" + } + }, + "#sd-jwt-claim-9dFp9O6YNkj-HhoZsxQbecMfdyZzmHxonT5IViTX7tk": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-9dFp9O6YNkj-HhoZsxQbecMfdyZzmHxonT5IViTX7tk" + } + }, + "#sd-jwt-claim-AntK09BfrGAY0pLHvgN8NiHKpUNOZWU253NtlzASCHY": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-AntK09BfrGAY0pLHvgN8NiHKpUNOZWU253NtlzASCHY" + } + }, + "#sd-jwt-claim-B8ktdEidsS306yq56jd4ZBDR99ebNz2h5b967W0LD6M": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-B8ktdEidsS306yq56jd4ZBDR99ebNz2h5b967W0LD6M" + } + }, + "#sd-jwt-claim-BZPC0zsku7g72bYWiZ7uub-KdU8OlFMPrzmFrjtSKCw": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-BZPC0zsku7g72bYWiZ7uub-KdU8OlFMPrzmFrjtSKCw" + } + }, + "#sd-jwt-claim-DzlLGVqDAyp_uunhkKlmqZSEb42PRWtclWMX7AgRb0Y": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DzlLGVqDAyp_uunhkKlmqZSEb42PRWtclWMX7AgRb0Y" + } + }, + "#sd-jwt-claim-E1mf_qo_KExC2cEQzCkdbfsKjzK5dm1geqTjej4DCmQ": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-E1mf_qo_KExC2cEQzCkdbfsKjzK5dm1geqTjej4DCmQ" + } + }, + "#sd-jwt-claim-FBjtdV0aOxCHaMrMYphIunEOaQsrh9rlYXH0xLT94RI": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FBjtdV0aOxCHaMrMYphIunEOaQsrh9rlYXH0xLT94RI" + } + }, + "#sd-jwt-claim-G5_5Yqe_nDYG0AxqiRMpsvNYCIWdaoqvD91OPpqpvWI": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-G5_5Yqe_nDYG0AxqiRMpsvNYCIWdaoqvD91OPpqpvWI" + } + }, + "#sd-jwt-claim-GhuJ3M6UIs2dXPPO2brrpig1Q2ib44KFAl59GRCtN00": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-GhuJ3M6UIs2dXPPO2brrpig1Q2ib44KFAl59GRCtN00" + } + }, + "#sd-jwt-claim-IRlf-bX8Mz3NHIY-xG2LzvHQYtKMypJ5bqeeiosAr8w": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-IRlf-bX8Mz3NHIY-xG2LzvHQYtKMypJ5bqeeiosAr8w" + } + }, + "#sd-jwt-claim-JBKZDpn9ofH7lQ0_V5vMAbzAPDhoraY4FnaK5PaUQU8": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-JBKZDpn9ofH7lQ0_V5vMAbzAPDhoraY4FnaK5PaUQU8" + } + }, + "#sd-jwt-claim-KrosJ0oftv38irZJalXyquOwVoX6aq54cS0CP8u4hu0": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-KrosJ0oftv38irZJalXyquOwVoX6aq54cS0CP8u4hu0" + } + }, + "#sd-jwt-claim-KxBsiSJ-HEe_ilFRmYkgpgpZ_jgh1J1rkqtR16I_8P4": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-KxBsiSJ-HEe_ilFRmYkgpgpZ_jgh1J1rkqtR16I_8P4" + } + }, + "#sd-jwt-claim-M30w9treGtm0PyWEQ4MiLS2juJopMDg6GP97ufVRQYI": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-M30w9treGtm0PyWEQ4MiLS2juJopMDg6GP97ufVRQYI" + } + }, + "#sd-jwt-claim-Mw4AvWzhoJxvMiyWbBUr9c7IgSt0bmDQMsFJf6N81EE": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Mw4AvWzhoJxvMiyWbBUr9c7IgSt0bmDQMsFJf6N81EE" + } + }, + "#sd-jwt-claim-OA19b3EjnCFLcOdxCL05sYP2hGBzwZw3vGUgSswXZYk": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-OA19b3EjnCFLcOdxCL05sYP2hGBzwZw3vGUgSswXZYk" + } + }, + "#sd-jwt-claim-OyMMUvpI0c70pK-NCCWQmZnOQqSO6SYo9soZz3zdBr8": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-OyMMUvpI0c70pK-NCCWQmZnOQqSO6SYo9soZz3zdBr8" + } + }, + "#sd-jwt-claim-P1_8z90CYs8a-QhA1T3G8LqKcp6iDoDYqZXhdS4trQY": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-P1_8z90CYs8a-QhA1T3G8LqKcp6iDoDYqZXhdS4trQY" + } + }, + "#sd-jwt-claim-Pp4hh5tNzu7hngfGUt0_iOn06sAvKn7d_AbXPRtmM_4": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Pp4hh5tNzu7hngfGUt0_iOn06sAvKn7d_AbXPRtmM_4" + } + }, + "#sd-jwt-claim-Rolhw3G_2HUYtrhtMF_oc1qgbS_pxzTptkVDG9RMynQ": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Rolhw3G_2HUYtrhtMF_oc1qgbS_pxzTptkVDG9RMynQ" + } + }, + "#sd-jwt-claim-SqIhzLb0iZKQA7vVJg2VL3OODz81Aaoyg_6BEU2sMAA": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-SqIhzLb0iZKQA7vVJg2VL3OODz81Aaoyg_6BEU2sMAA" + } + }, + "#sd-jwt-claim-TL4ap7CLVI5qW8YiqiGxhUpGYl2xQnGmr915_f2HWTE": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-TL4ap7CLVI5qW8YiqiGxhUpGYl2xQnGmr915_f2HWTE" + } + }, + "#sd-jwt-claim-TS-a2IJB71ZO8qy2YqETVRT4yrAYR79o3InytrG0gAM": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-TS-a2IJB71ZO8qy2YqETVRT4yrAYR79o3InytrG0gAM" + } + }, + "#sd-jwt-claim-UVoTe0XIXgvcVZ_b0ifCHpfVKL7Oo1w026ujqNx6S3k": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UVoTe0XIXgvcVZ_b0ifCHpfVKL7Oo1w026ujqNx6S3k" + } + }, + "#sd-jwt-claim-WuRSPy28u1kUIYvcqIrsyYm5ct7Tx3SBsZHTM535EYc": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-WuRSPy28u1kUIYvcqIrsyYm5ct7Tx3SBsZHTM535EYc" + } + }, + "#sd-jwt-claim-XV1Id6zrocfVd6Ybaebbc7ReUZM8hLxfnwmlySgTR4k": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-XV1Id6zrocfVd6Ybaebbc7ReUZM8hLxfnwmlySgTR4k" + } + }, + "#sd-jwt-claim-Xc9sDaWpQKSOgS6AxWgA_SiXQSruQ-0bz5cmSN8FNt8": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Xc9sDaWpQKSOgS6AxWgA_SiXQSruQ-0bz5cmSN8FNt8" + } + }, + "#sd-jwt-claim-XpAwNOyvgrbrrnehBGom7F-UhNQlSJ1LHoeQ7b9JUQ0": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-XpAwNOyvgrbrrnehBGom7F-UhNQlSJ1LHoeQ7b9JUQ0" + } + }, + "#sd-jwt-claim-YdyKpRwmp-dFWhT-AZ-vcjI6UO9L3h9uTrSmGZuHMtU": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-YdyKpRwmp-dFWhT-AZ-vcjI6UO9L3h9uTrSmGZuHMtU" + } + }, + "#sd-jwt-claim-YiY6qmorzIrEdhd6s1j0zsmVXhK1UwyBhQ8AWCaNzMg": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-YiY6qmorzIrEdhd6s1j0zsmVXhK1UwyBhQ8AWCaNzMg" + } + }, + "#sd-jwt-claim-YkyHhsD8UTzuchQSCo8dzeyA1mMhDA43GKWkvG-wJU8": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-YkyHhsD8UTzuchQSCo8dzeyA1mMhDA43GKWkvG-wJU8" + } + }, + "#sd-jwt-claim-ZBvchAk-Xi7JwU29-G4P463dBJBhB6o2qlvR5oaEqu8": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ZBvchAk-Xi7JwU29-G4P463dBJBhB6o2qlvR5oaEqu8" + } + }, + "#sd-jwt-claim-ZXev6DfXg40Go4tb_bswY7b_j8u9XirptTqwhkmQVfA": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ZXev6DfXg40Go4tb_bswY7b_j8u9XirptTqwhkmQVfA" + } + }, + "#sd-jwt-claim-Zal8rVcO7vEVaYhGxofarGawFU0GQ2uQI9wsZ2uyI5Q": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Zal8rVcO7vEVaYhGxofarGawFU0GQ2uQI9wsZ2uyI5Q" + } + }, + "#sd-jwt-claim-Zs_GHbGpUlUfIylBMWIcpqtBhLJ1vfs6dEzKGFoDqvk": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Zs_GHbGpUlUfIylBMWIcpqtBhLJ1vfs6dEzKGFoDqvk" + } + }, + "#sd-jwt-claim-aZxGblSIozsazvHipMqmn1sftKrI-SiBn7hlTxwtowM": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-aZxGblSIozsazvHipMqmn1sftKrI-SiBn7hlTxwtowM" + } + }, + "#sd-jwt-claim-auqHIRREQOvo10xH7n2TeFJCivCY_WKQNhMGnG7f-b8": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-auqHIRREQOvo10xH7n2TeFJCivCY_WKQNhMGnG7f-b8" + } + }, + "#sd-jwt-claim-azBlw2AOcAq7QYuy_cdepv0sGVDPx7FOVD4zmvLfTnc": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-azBlw2AOcAq7QYuy_cdepv0sGVDPx7FOVD4zmvLfTnc" + } + }, + "#sd-jwt-claim-bW94lOb1B84cFw6LRGBg8KiLHMjBdzMYp6e1Wj3Rc24": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-bW94lOb1B84cFw6LRGBg8KiLHMjBdzMYp6e1Wj3Rc24" + } + }, + "#sd-jwt-claim-cOQoyDUbG1BY2x71mytpce-4SnkecUjxNzVEJO1f5yo": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-cOQoyDUbG1BY2x71mytpce-4SnkecUjxNzVEJO1f5yo" + } + }, + "#sd-jwt-claim-eRWCIiPBfs2PhoWSob3xNoDkNs6T4eMnszVsunU6OzY": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-eRWCIiPBfs2PhoWSob3xNoDkNs6T4eMnszVsunU6OzY" + } + }, + "#sd-jwt-claim-fCOCfyIrItk1Vf9c9r9eJKw7T0BTZWJ_qEX3dmJUYu8": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-fCOCfyIrItk1Vf9c9r9eJKw7T0BTZWJ_qEX3dmJUYu8" + } + }, + "#sd-jwt-claim-gIOF6M4gmji097Hx_p_fCDTEBkCKHn9-61Zt5O5Zn6Y": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-gIOF6M4gmji097Hx_p_fCDTEBkCKHn9-61Zt5O5Zn6Y" + } + }, + "#sd-jwt-claim-h2FCWjVqnzH3Nzg95BTZkbGOoQy7Jey1giJkz-lHgik": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-h2FCWjVqnzH3Nzg95BTZkbGOoQy7Jey1giJkz-lHgik" + } + }, + "#sd-jwt-claim-hG8H78C_BUpGt5eZvwMlB7CzAX_lTuZ_cdPKEc0XB44": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-hG8H78C_BUpGt5eZvwMlB7CzAX_lTuZ_cdPKEc0XB44" + } + }, + "#sd-jwt-claim-hLzyyUQ0JxHB8fXSaaRKe9GV_3xeu-R1gRfKLyxyu74": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-hLzyyUQ0JxHB8fXSaaRKe9GV_3xeu-R1gRfKLyxyu74" + } + }, + "#sd-jwt-claim-hMJWabB3UTF-zuX8O0zi4-JIrHig7EXlRX8odyZjLQU": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-hMJWabB3UTF-zuX8O0zi4-JIrHig7EXlRX8odyZjLQU" + } + }, + "#sd-jwt-claim-iLufKlIIcke16bEl2Vl3fs2WSEcjPkOhx5FIUUjRLXs": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iLufKlIIcke16bEl2Vl3fs2WSEcjPkOhx5FIUUjRLXs" + } + }, + "#sd-jwt-claim-j8gB4jsV2pii8psyJjEo4hFVUiKi0mAFGMpHiOmIpZU": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-j8gB4jsV2pii8psyJjEo4hFVUiKi0mAFGMpHiOmIpZU" + } + }, + "#sd-jwt-claim-kOJrsW5PfmbIy_ki2Yrgi7h1ftAaVNloOaiJlVnjcI4": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-kOJrsW5PfmbIy_ki2Yrgi7h1ftAaVNloOaiJlVnjcI4" + } + }, + "#sd-jwt-claim-lqzD_321ZPp2eBFwfip8I8f2dE2A8srd96bhiyQzBUI": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-lqzD_321ZPp2eBFwfip8I8f2dE2A8srd96bhiyQzBUI" + } + }, + "#sd-jwt-claim-o0hcqUxip94JRWwL7NxRQmBZjZ8t-ceyfMHCsFcXU2w": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-o0hcqUxip94JRWwL7NxRQmBZjZ8t-ceyfMHCsFcXU2w" + } + }, + "#sd-jwt-claim-qPsJIbPh_7QC84Jb9E299Q4-B9KXLp2GI3W0djVjf2E": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-qPsJIbPh_7QC84Jb9E299Q4-B9KXLp2GI3W0djVjf2E" + } + }, + "#sd-jwt-claim-qnoV1ctggL_mjf-hpROI-k1CpC-QT-_YMCoOQWVDSsU": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-qnoV1ctggL_mjf-hpROI-k1CpC-QT-_YMCoOQWVDSsU" + } + }, + "#sd-jwt-claim-r5zEZTU9CAH17t0JDcNUUbLZQ1I_OiIsZ09AcIjpu3M": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-r5zEZTU9CAH17t0JDcNUUbLZQ1I_OiIsZ09AcIjpu3M" + } + }, + "#sd-jwt-claim-usbISPMHNFmd8M3IlgjfA8sTLyL7PGDD94VDqvs33Ko": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-usbISPMHNFmd8M3IlgjfA8sTLyL7PGDD94VDqvs33Ko" + } + }, + "#sd-jwt-claim-vy_ujp1HqsBuT6KEvnxcuiiruCFnnWGfQ4WPG34yTNg": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vy_ujp1HqsBuT6KEvnxcuiiruCFnnWGfQ4WPG34yTNg" + } + }, + "#sd-jwt-claim-wsO1omZbjJNTdJw4u2xbvRbKE1VIMATYB_8Feu1uC9I": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wsO1omZbjJNTdJw4u2xbvRbKE1VIMATYB_8Feu1uC9I" + } + }, + "#sd-jwt-claim-xofXFAXc_MerAta1oavEk3mEaT1Bg-bnWdgHFUPVvFM": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-xofXFAXc_MerAta1oavEk3mEaT1Bg-bnWdgHFUPVvFM" + } + }, + "#sd-jwt-claim-yzHBRiadx8F6GBDY-vJylA1eAglUJZ4_GJA-Pwe_GHA": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: id", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yzHBRiadx8F6GBDY-vJylA1eAglUJZ4_GJA-Pwe_GHA" + } + }, + "#sd-jwt-claim-za_z8MjHorFHc09J-lwIJJTpVa2oFWa9M_fgKDm1ayo": { + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Claim: type", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-za_z8MjHorFHc09J-lwIJJTpVa2oFWa9M_fgKDm1ayo" + } + }, + "#securing-mechanism-specifications": { + "current": { + "number": "5.13", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Securing Mechanism Specifications", + "url": "https://w3c.github.io/vc-data-model/#securing-mechanism-specifications" + }, + "snapshot": { + "number": "5.13", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Securing Mechanism Specifications", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#securing-mechanism-specifications" + } + }, + "#securing-mechanisms": { + "current": { + "number": "4.12", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Securing Mechanisms", + "url": "https://w3c.github.io/vc-data-model/#securing-mechanisms" + }, + "snapshot": { + "number": "4.12", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Securing Mechanisms", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#securing-mechanisms" + } + }, + "#security-considerations": { + "current": { + "number": "9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Security Considerations", + "url": "https://w3c.github.io/vc-data-model/#security-considerations" + }, + "snapshot": { + "number": "9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#security-considerations" + } + }, + "#semantic-interoperability": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Semantic Interoperability", + "url": "https://w3c.github.io/vc-data-model/#semantic-interoperability" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Semantic Interoperability", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#semantic-interoperability" + } + }, + "#sharing-information-with-the-wrong-party": { + "current": { + "number": "8.16", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Sharing Information with the Wrong Party", + "url": "https://w3c.github.io/vc-data-model/#sharing-information-with-the-wrong-party" + }, + "snapshot": { + "number": "8.16", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Sharing Information with the Wrong Party", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#sharing-information-with-the-wrong-party" + } + }, + "#signature-based-correlation": { + "current": { + "number": "8.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Signature-Based Correlation", + "url": "https://w3c.github.io/vc-data-model/#signature-based-correlation" + }, + "snapshot": { + "number": "8.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Signature-Based Correlation", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#signature-based-correlation" + } + }, + "#software-trust-boundaries": { + "current": { + "number": "8.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Software Trust Boundaries", + "url": "https://w3c.github.io/vc-data-model/#software-trust-boundaries" + }, + "snapshot": { + "number": "8.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Software Trust Boundaries", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#software-trust-boundaries" + } + }, + "#spectrum-of-privacy": { + "current": { + "number": "8.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Spectrum of Privacy", + "url": "https://w3c.github.io/vc-data-model/#spectrum-of-privacy" + }, + "snapshot": { + "number": "8.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Spectrum of Privacy", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#spectrum-of-privacy" + } + }, + "#spoofing-attack": { + "current": { + "number": "9.5.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Spoofing Attack", + "url": "https://w3c.github.io/vc-data-model/#spoofing-attack" + }, + "snapshot": { + "number": "9.5.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Spoofing Attack", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#spoofing-attack" + } + }, + "#status": { + "current": { + "number": "4.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Status", + "url": "https://w3c.github.io/vc-data-model/#status" + }, + "snapshot": { + "number": "4.10", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Status", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#status" + } + }, + "#status-0": { + "current": { + "number": "A.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Status", + "url": "https://w3c.github.io/vc-data-model/#status-0" + }, + "snapshot": { + "number": "A.8", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Status", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#status-0" + } + }, + "#storage-providers-and-data-mining": { + "current": { + "number": "8.12", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Storage Providers and Data Mining", + "url": "https://w3c.github.io/vc-data-model/#storage-providers-and-data-mining" + }, + "snapshot": { + "number": "8.12", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Storage Providers and Data Mining", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#storage-providers-and-data-mining" + } + }, + "#syntaxes": { + "current": { + "number": "6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Syntaxes", + "url": "https://w3c.github.io/vc-data-model/#syntaxes" + }, + "snapshot": { + "number": "6", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Syntaxes", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#syntaxes" + } + }, + "#terminology": { + "current": { + "number": "2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Terminology", + "url": "https://w3c.github.io/vc-data-model/#terminology" + }, + "snapshot": { + "number": "2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Terminology", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#terminology" + } + }, + "#terms-of-use": { + "current": { + "number": "5.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Terms of Use", + "url": "https://w3c.github.io/vc-data-model/#terms-of-use" + }, + "snapshot": { + "number": "5.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Terms of Use", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#terms-of-use" + } + }, + "#the-principle-of-data-minimization": { + "current": { + "number": "8.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "The Principle of Data Minimization", + "url": "https://w3c.github.io/vc-data-model/#the-principle-of-data-minimization" + }, + "snapshot": { + "number": "8.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "The Principle of Data Minimization", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#the-principle-of-data-minimization" + } + }, + "#the-sristring-datatype": { + "current": { + "number": "B.3.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "The sriString Datatype", + "url": "https://w3c.github.io/vc-data-model/#the-sristring-datatype" + }, + "snapshot": { + "number": "B.3.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "The sriString Datatype", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#the-sristring-datatype" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Credentials Data Model v2.0", + "url": "https://w3c.github.io/vc-data-model/#title" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Credentials Data Model v2.0", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Table of Contents", + "url": "https://w3c.github.io/vc-data-model/#toc" + }, + "snapshot": { + "number": "", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#toc" + } + }, + "#trust-model": { + "current": { + "number": "5.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Trust Model", + "url": "https://w3c.github.io/vc-data-model/#trust-model" + }, + "snapshot": { + "number": "5.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Trust Model", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#trust-model" + } + }, + "#type-specific-credential-processing": { + "current": { + "number": "6.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Type-Specific Credential Processing", + "url": "https://w3c.github.io/vc-data-model/#type-specific-credential-processing" + }, + "snapshot": { + "number": "6.3", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Type-Specific Credential Processing", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#type-specific-credential-processing" + } + }, + "#types": { + "current": { + "number": "4.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Types", + "url": "https://w3c.github.io/vc-data-model/#types" + }, + "snapshot": { + "number": "4.5", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Types", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#types" + } + }, + "#unauthorized-use": { + "current": { + "number": "9.9.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Unauthorized Use", + "url": "https://w3c.github.io/vc-data-model/#unauthorized-use" + }, + "snapshot": { + "number": "9.9.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Unauthorized Use", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#unauthorized-use" + } + }, + "#unsigned-claims": { + "current": { + "number": "9.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Unsigned Claims", + "url": "https://w3c.github.io/vc-data-model/#unsigned-claims" + }, + "snapshot": { + "number": "9.4", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Unsigned Claims", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#unsigned-claims" + } + }, + "#usage-patterns": { + "current": { + "number": "8.14", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Usage Patterns", + "url": "https://w3c.github.io/vc-data-model/#usage-patterns" + }, + "snapshot": { + "number": "8.14", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Usage Patterns", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#usage-patterns" + } + }, + "#validation": { + "current": { + "number": "A", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Validation", + "url": "https://w3c.github.io/vc-data-model/#validation" + }, + "snapshot": { + "number": "A", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Validation", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#validation" + } + }, + "#validity-period": { + "current": { + "number": "4.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Validity Period", + "url": "https://w3c.github.io/vc-data-model/#validity-period" + }, + "snapshot": { + "number": "4.9", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Validity Period", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#validity-period" + } + }, + "#validity-periods": { + "current": { + "number": "A.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Validity Periods", + "url": "https://w3c.github.io/vc-data-model/#validity-periods" + }, + "snapshot": { + "number": "A.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Validity Periods", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#validity-periods" + } + }, + "#vc-ld-media-type": { + "current": { + "number": "C.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "application/vc", + "url": "https://w3c.github.io/vc-data-model/#vc-ld-media-type" + }, + "snapshot": { + "number": "C.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "application/vc", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#vc-ld-media-type" + } + }, + "#verifiable-credential-graphs": { + "current": { + "number": "5.12", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Credential Graphs", + "url": "https://w3c.github.io/vc-data-model/#verifiable-credential-graphs" + }, + "snapshot": { + "number": "5.12", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Credential Graphs", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#verifiable-credential-graphs" + } + }, + "#verifiable-credentials": { + "current": { + "number": "4.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Credentials", + "url": "https://w3c.github.io/vc-data-model/#verifiable-credentials" + }, + "snapshot": { + "number": "4.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Credentials", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#verifiable-credentials" + } + }, + "#verifiable-presentations": { + "current": { + "number": "4.13", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Presentations", + "url": "https://w3c.github.io/vc-data-model/#verifiable-presentations" + }, + "snapshot": { + "number": "4.13", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verifiable Presentations", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#verifiable-presentations" + } + }, + "#verification": { + "current": { + "number": "7.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verification", + "url": "https://w3c.github.io/vc-data-model/#verification" + }, + "snapshot": { + "number": "7.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Verification", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#verification" + } + }, + "#vocabularies": { + "current": { + "number": "B.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Vocabularies", + "url": "https://w3c.github.io/vc-data-model/#vocabularies" + }, + "snapshot": { + "number": "B.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Vocabularies", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#vocabularies" + } + }, + "#vp-ld-media-type": { + "current": { + "number": "C.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "application/vp", + "url": "https://w3c.github.io/vc-data-model/#vp-ld-media-type" + }, + "snapshot": { + "number": "C.2", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "application/vp", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#vp-ld-media-type" + } + }, + "#what-is-a-verifiable-credential": { + "current": { + "number": "1.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "What is a Verifiable Credential?", + "url": "https://w3c.github.io/vc-data-model/#what-is-a-verifiable-credential" + }, + "snapshot": { + "number": "1.1", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "What is a Verifiable Credential?", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#what-is-a-verifiable-credential" + } + }, + "#zero-knowledge-proofs": { + "current": { + "number": "5.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Zero-Knowledge Proofs", + "url": "https://w3c.github.io/vc-data-model/#zero-knowledge-proofs" + }, + "snapshot": { + "number": "5.7", + "spec": "Verifiable Credentials Data Model v2.0", + "text": "Zero-Knowledge Proofs", + "url": "https://www.w3.org/TR/vc-data-model-2.0/#zero-knowledge-proofs" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-video-rvfc.json b/bikeshed/spec-data/readonly/headings/headings-video-rvfc.json index 73d0946b47..1af7cffd84 100644 --- a/bikeshed/spec-data/readonly/headings/headings-video-rvfc.json +++ b/bikeshed/spec-data/readonly/headings/headings-video-rvfc.json @@ -127,28 +127,28 @@ "url": "https://wicg.github.io/video-rvfc/#toc" } }, - "#video-frame-metadata-callback": { + "#video-frame-callback-metadata": { "current": { "number": "2", "spec": "HTMLVideoElement.requestVideoFrameCallback()", "text": "VideoFrameCallbackMetadata", - "url": "https://wicg.github.io/video-rvfc/#video-frame-metadata-callback" + "url": "https://wicg.github.io/video-rvfc/#video-frame-callback-metadata" } }, - "#video-frame-metadata-callback-attributes": { + "#video-frame-callback-metadata-attributes": { "current": { "number": "2.2", "spec": "HTMLVideoElement.requestVideoFrameCallback()", "text": "Attributes", - "url": "https://wicg.github.io/video-rvfc/#video-frame-metadata-callback-attributes" + "url": "https://wicg.github.io/video-rvfc/#video-frame-callback-metadata-attributes" } }, - "#video-frame-metadata-callback-definitions": { + "#video-frame-callback-metadata-definitions": { "current": { "number": "2.1", "spec": "HTMLVideoElement.requestVideoFrameCallback()", "text": "Definitions", - "url": "https://wicg.github.io/video-rvfc/#video-frame-metadata-callback-definitions" + "url": "https://wicg.github.io/video-rvfc/#video-frame-callback-metadata-definitions" } }, "#video-frame-request-callback": { @@ -191,14 +191,6 @@ "url": "https://wicg.github.io/video-rvfc/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "HTMLVideoElement.requestVideoFrameCallback()", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/video-rvfc/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-w3c-patent-policy.json b/bikeshed/spec-data/readonly/headings/headings-w3c-patent-policy.json index f392f14ce7..e67895ca99 100644 --- a/bikeshed/spec-data/readonly/headings/headings-w3c-patent-policy.json +++ b/bikeshed/spec-data/readonly/headings/headings-w3c-patent-policy.json @@ -1,10 +1,10 @@ { - "##spec-licensing-commitments": { + "#%23spec-licensing-commitments": { "current": { "number": "3.5", "spec": "W3C Patent Policy", "text": "Specification Licensing Commitments", - "url": "https://www.w3.org/Consortium/Patent-Policy/##spec-licensing-commitments" + "url": "https://www.w3.org/Consortium/Patent-Policy/#%23spec-licensing-commitments" } }, "#abstract": { diff --git a/bikeshed/spec-data/readonly/headings/headings-w3c-process.json b/bikeshed/spec-data/readonly/headings/headings-w3c-process.json index 774712d0ae..4a4caab111 100644 --- a/bikeshed/spec-data/readonly/headings/headings-w3c-process.json +++ b/bikeshed/spec-data/readonly/headings/headings-w3c-process.json @@ -33,7 +33,7 @@ }, "#AB-TAG-vacated": { "current": { - "number": "3.3.3.5", + "number": "3.3.3.6", "spec": "W3C Process Document", "text": "Elected Groups Vacated Seats", "url": "https://www.w3.org/Consortium/Process/#AB-TAG-vacated" @@ -183,20 +183,20 @@ "url": "https://www.w3.org/Consortium/Process/#Liaisons" } }, - "#MemberBenefits": { + "#MemberAssoc": { "current": { - "number": "2.1.1", + "number": "2.1.2.1", "spec": "W3C Process Document", - "text": "Rights of Members", - "url": "https://www.w3.org/Consortium/Process/#MemberBenefits" + "text": "Membership Associations", + "url": "https://www.w3.org/Consortium/Process/#MemberAssoc" } }, - "#MemberConsortia": { + "#MemberBenefits": { "current": { - "number": "2.1.2.1", + "number": "2.1.1", "spec": "W3C Process Document", - "text": "Membership Consortia", - "url": "https://www.w3.org/Consortium/Process/#MemberConsortia" + "text": "Rights of Members", + "url": "https://www.w3.org/Consortium/Process/#MemberBenefits" } }, "#MemberRelated": { @@ -247,12 +247,12 @@ "url": "https://www.w3.org/Consortium/Process/#Policies" } }, - "#RelatedAndConsortiumMembers": { + "#RelatedAndAssociatedMembers": { "current": { "number": "2.1.2", "spec": "W3C Process Document", - "text": "Member Consortia and Related Members", - "url": "https://www.w3.org/Consortium/Process/#RelatedAndConsortiumMembers" + "text": "Member Associations and Related Members", + "url": "https://www.w3.org/Consortium/Process/#RelatedAndAssociatedMembers" } }, "#Reports": { @@ -327,6 +327,14 @@ "url": "https://www.w3.org/Consortium/Process/#TAG" } }, + "#TAG-appointments": { + "current": { + "number": "3.3.3.4", + "spec": "W3C Process Document", + "text": "Technical Architecture Group Appointments", + "url": "https://www.w3.org/Consortium/Process/#TAG-appointments" + } + }, "#Team": { "current": { "number": "2.2", @@ -351,22 +359,6 @@ "url": "https://www.w3.org/Consortium/Process/#Votes" } }, - "#WGAppeals": { - "current": { - "number": "5.5", - "spec": "W3C Process Document", - "text": "Chair Decision and Group Decision Appeals", - "url": "https://www.w3.org/Consortium/Process/#WGAppeals" - } - }, - "#WGArchiveMinorityViews": { - "current": { - "number": "5.6", - "spec": "W3C Process Document", - "text": "Recording and Reporting Formal Objections", - "url": "https://www.w3.org/Consortium/Process/#WGArchiveMinorityViews" - } - }, "#WGChairReopen": { "current": { "number": "5.4", @@ -391,6 +383,14 @@ "url": "https://www.w3.org/Consortium/Process/#WGCharterDevelopment" } }, + "#ab-bod-liaison": { + "current": { + "number": "3.3.1.4", + "spec": "W3C Process Document", + "text": "Liaisons between the Advisory Board and the Board of Directors", + "url": "https://www.w3.org/Consortium/Process/#ab-bod-liaison" + } + }, "#ab-comm": { "current": { "number": "3.3.1.3", @@ -409,7 +409,7 @@ }, "#abandon-draft": { "current": { - "number": "6.3.12.1", + "number": "6.3.13.1", "spec": "W3C Process Document", "text": "Abandoning an Unfinished Recommendation", "url": "https://www.w3.org/Consortium/Process/#abandon-draft" @@ -447,6 +447,14 @@ "url": "https://www.w3.org/Consortium/Process/#acks" } }, + "#addressing-fo": { + "current": { + "number": "5.6", + "spec": "W3C Process Document", + "text": "Addressing Formal Objections", + "url": "https://www.w3.org/Consortium/Process/#addressing-fo" + } + }, "#candidate-amendments": { "current": { "number": "6.2.5", @@ -479,12 +487,12 @@ "url": "https://www.w3.org/Consortium/Process/#changes" } }, - "#changes-2020": { + "#changes-2023-1": { "current": { "number": "", "spec": "W3C Process Document", - "text": "Changes since the 15 September 2020 Process", - "url": "https://www.w3.org/Consortium/Process/#changes-2020" + "text": "Changes since the 12 June 2023 Process", + "url": "https://www.w3.org/Consortium/Process/#changes-2023-1" } }, "#changes-previous": { @@ -559,9 +567,81 @@ "url": "https://www.w3.org/Consortium/Process/#correction-classes" } }, + "#council": { + "current": { + "number": "5.6.2", + "spec": "W3C Process Document", + "text": "W3C Council", + "url": "https://www.w3.org/Consortium/Process/#council" + } + }, + "#council-appeals": { + "current": { + "number": "5.6.2.8", + "spec": "W3C Process Document", + "text": "Appealing Council Decisions", + "url": "https://www.w3.org/Consortium/Process/#council-appeals" + } + }, + "#council-chairing": { + "current": { + "number": "5.6.2.5", + "spec": "W3C Process Document", + "text": "Council Chairing", + "url": "https://www.w3.org/Consortium/Process/#council-chairing" + } + }, + "#council-composition": { + "current": { + "number": "5.6.2.1", + "spec": "W3C Process Document", + "text": "Council Composition", + "url": "https://www.w3.org/Consortium/Process/#council-composition" + } + }, + "#council-decision": { + "current": { + "number": "5.6.2.7", + "spec": "W3C Process Document", + "text": "Council Decision Report", + "url": "https://www.w3.org/Consortium/Process/#council-decision" + } + }, + "#council-delegation": { + "current": { + "number": "5.6.2.2", + "spec": "W3C Process Document", + "text": "Extraordinary Delegation", + "url": "https://www.w3.org/Consortium/Process/#council-delegation" + } + }, + "#council-deliberations": { + "current": { + "number": "5.6.2.6", + "spec": "W3C Process Document", + "text": "Council Deliberations", + "url": "https://www.w3.org/Consortium/Process/#council-deliberations" + } + }, + "#council-participation": { + "current": { + "number": "5.6.2.3", + "spec": "W3C Process Document", + "text": "Council Participation, Dismissal, and Renunciation", + "url": "https://www.w3.org/Consortium/Process/#council-participation" + } + }, + "#council-short-circuit": { + "current": { + "number": "5.6.2.4", + "spec": "W3C Process Document", + "text": "Unanimous Short Circuit", + "url": "https://www.w3.org/Consortium/Process/#council-short-circuit" + } + }, "#deactivation": { "current": { - "number": "6.3.12.4", + "number": "6.3.13.4", "spec": "W3C Process Document", "text": "Process for Rescinding, Obsoleting, Superseding, Restoring a Recommendation", "url": "https://www.w3.org/Consortium/Process/#deactivation" @@ -703,6 +783,14 @@ "url": "https://www.w3.org/Consortium/Process/#index" } }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "W3C Process Document", + "text": "Terms defined by reference", + "url": "https://www.w3.org/Consortium/Process/#index-defined-elsewhere" + } + }, "#index-defined-here": { "current": { "number": "", @@ -743,12 +831,12 @@ "url": "https://www.w3.org/Consortium/Process/#managing-dissent" } }, - "#maturity-levels": { + "#maturity-stages": { "current": { "number": "6.3.1", "spec": "W3C Process Document", - "text": "Maturity Levels on the Recommendation Track", - "url": "https://www.w3.org/Consortium/Process/#maturity-levels" + "text": "Maturity Stages on the Recommendation Track", + "url": "https://www.w3.org/Consortium/Process/#maturity-stages" } }, "#meeting-minutes": { @@ -799,14 +887,6 @@ "url": "https://www.w3.org/Consortium/Process/#member-rep-wg" } }, - "#memo": { - "current": { - "number": "6.4.3", - "spec": "W3C Process Document", - "text": "Elevating Group Notes to W3C Statement status", - "url": "https://www.w3.org/Consortium/Process/#memo" - } - }, "#normative": { "current": { "number": "", @@ -827,18 +907,10 @@ "current": { "number": "", "spec": "W3C Process Document", - "text": "Relation of Process Document to Patent Policy", + "text": "Relation of Process Document to Patent Policy and Other Policies", "url": "https://www.w3.org/Consortium/Process/#pp" } }, - "#profile-and-date": { - "current": { - "number": "", - "spec": "W3C Process Document", - "text": "2 November 2021", - "url": "https://www.w3.org/Consortium/Process/#profile-and-date" - } - }, "#pub-com": { "current": { "number": "7.1", @@ -881,7 +953,7 @@ }, "#random": { "current": { - "number": "3.3.3.4", + "number": "3.3.3.5", "spec": "W3C Process Document", "text": "Verifiable Random Selection Procedure", "url": "https://www.w3.org/Consortium/Process/#random" @@ -889,7 +961,7 @@ }, "#rec-rescind": { "current": { - "number": "6.3.12.3", + "number": "6.3.13.3", "spec": "W3C Process Document", "text": "Abandoning a W3C Recommendation", "url": "https://www.w3.org/Consortium/Process/#rec-rescind" @@ -903,6 +975,14 @@ "url": "https://www.w3.org/Consortium/Process/#rec-track" } }, + "#rec-track-regression": { + "current": { + "number": "6.3.12", + "spec": "W3C Process Document", + "text": "Regression on the Recommendation Track", + "url": "https://www.w3.org/Consortium/Process/#rec-track-regression" + } + }, "#recs-and-notes": { "current": { "number": "6.1", @@ -959,6 +1039,14 @@ "url": "https://www.w3.org/Consortium/Process/#reg-table-update" } }, + "#registering-objections": { + "current": { + "number": "5.5", + "spec": "W3C Process Document", + "text": "Registering Formal Objections", + "url": "https://www.w3.org/Consortium/Process/#registering-objections" + } + }, "#registries": { "current": { "number": "6.5", @@ -969,7 +1057,7 @@ }, "#rescind-cr": { "current": { - "number": "6.3.12.2", + "number": "6.3.13.2", "spec": "W3C Process Document", "text": "Rescinding a Candidate Recommendation", "url": "https://www.w3.org/Consortium/Process/#rescind-cr" @@ -1047,12 +1135,12 @@ "url": "https://www.w3.org/Consortium/Process/#revising-wd" } }, - "#status": { + "#sotd": { "current": { "number": "", "spec": "W3C Process Document", - "text": "Status of this Document", - "url": "https://www.w3.org/Consortium/Process/#status" + "text": "Status of this document", + "url": "https://www.w3.org/Consortium/Process/#sotd" } }, "#streamlined-update": { @@ -1095,6 +1183,14 @@ "url": "https://www.w3.org/Consortium/Process/#tag-role" } }, + "#team-fo-mediation": { + "current": { + "number": "5.6.1", + "spec": "W3C Process Document", + "text": "Investigation and Mediation by the Team", + "url": "https://www.w3.org/Consortium/Process/#team-fo-mediation" + } + }, "#team-rep-ig": { "current": { "number": "3.4.3.6", @@ -1139,13 +1235,13 @@ "current": { "number": "3.1.3", "spec": "W3C Process Document", - "text": "Tooling for Discussions and Publications", + "text": "Tooling and Archiving for Discussions and Publications", "url": "https://www.w3.org/Consortium/Process/#tooling" } }, "#tr-end": { "current": { - "number": "6.3.12", + "number": "6.3.13", "spec": "W3C Process Document", "text": "Retiring Recommendation Track Documents", "url": "https://www.w3.org/Consortium/Process/#tr-end" @@ -1191,6 +1287,14 @@ "url": "https://www.w3.org/Consortium/Process/#update-reqs" } }, + "#w3c-statement": { + "current": { + "number": "6.4.3", + "spec": "W3C Process Document", + "text": "Elevating Group Notes to W3C Statement status", + "url": "https://www.w3.org/Consortium/Process/#w3c-statement" + } + }, "#wide-review": { "current": { "number": "6.2.2.1", diff --git a/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.2.json b/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.2.json index 748427ac1a..a6e205dd0b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.2.json +++ b/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.2.json @@ -27,14 +27,6 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#Properties" } }, - "#abstract": { - "snapshot": { - "number": "", - "spec": "WAI-ARIA", - "text": "Abstract", - "url": "https://www.w3.org/TR/wai-aria-1.2/#abstract" - } - }, "#abstract_roles": { "current": { "number": "5.3.1", @@ -79,13 +71,13 @@ }, "#ack_funders": { "current": { - "number": "C.3", + "number": "C.2", "spec": "WAI-ARIA", "text": "Enabling funders", "url": "https://w3c.github.io/aria/#ack_funders" }, "snapshot": { - "number": "E.3", + "number": "C.3", "spec": "WAI-ARIA", "text": "Enabling funders", "url": "https://www.w3.org/TR/wai-aria-1.2/#ack_funders" @@ -99,21 +91,15 @@ "url": "https://w3c.github.io/aria/#ack_group" }, "snapshot": { - "number": "E.1", + "number": "C.1", "spec": "WAI-ARIA", "text": "Participants active in the ARIA WG at the time of publication", "url": "https://www.w3.org/TR/wai-aria-1.2/#ack_group" } }, "#ack_others": { - "current": { - "number": "C.2", - "spec": "WAI-ARIA", - "text": "Other ARIA contributors, commenters, and previously active participants", - "url": "https://w3c.github.io/aria/#ack_others" - }, "snapshot": { - "number": "E.2", + "number": "C.2", "spec": "WAI-ARIA", "text": "Other ARIA contributors, commenters, and previously active participants", "url": "https://www.w3.org/TR/wai-aria-1.2/#ack_others" @@ -127,7 +113,7 @@ "url": "https://w3c.github.io/aria/#acknowledgements" }, "snapshot": { - "number": "E", + "number": "C", "spec": "WAI-ARIA", "text": "Acknowledgments", "url": "https://www.w3.org/TR/wai-aria-1.2/#acknowledgements" @@ -273,14 +259,6 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#baseConcept" } }, - "#candidate-recommendation-exit-criteria": { - "snapshot": { - "number": "B", - "spec": "WAI-ARIA", - "text": "Candidate Recommendation Exit Criteria", - "url": "https://www.w3.org/TR/wai-aria-1.2/#candidate-recommendation-exit-criteria" - } - }, "#changelog": { "current": { "number": "B", @@ -289,9 +267,9 @@ "url": "https://w3c.github.io/aria/#changelog" }, "snapshot": { - "number": "D", + "number": "B", "spec": "WAI-ARIA", - "text": "Change Log", + "text": "Substantive changes since the WAI-ARIA 1.1 Recommendation", "url": "https://www.w3.org/TR/wai-aria-1.2/#changelog" } }, @@ -365,6 +343,14 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#conformance_checkers" } }, + "#dedication": { + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "Dedication", + "url": "https://www.w3.org/TR/wai-aria-1.2/#dedication" + } + }, "#deprecated": { "current": { "number": "3.5", @@ -646,12 +632,6 @@ } }, "#idl_element": { - "current": { - "number": "10.3", - "spec": "WAI-ARIA", - "text": "ARIAMixin Mixed in to Element", - "url": "https://w3c.github.io/aria/#idl_element" - }, "snapshot": { "number": "10.3", "spec": "WAI-ARIA", @@ -661,7 +641,7 @@ }, "#idl_example_usage": { "current": { - "number": "10.4", + "number": "10.3", "spec": "WAI-ARIA", "text": "Example IDL Attribute Usage", "url": "https://w3c.github.io/aria/#idl_example_usage" @@ -709,7 +689,7 @@ "url": "https://w3c.github.io/aria/#informative-references" }, "snapshot": { - "number": "F.2", + "number": "D.2", "spec": "WAI-ARIA", "text": "Informative references", "url": "https://www.w3.org/TR/wai-aria-1.2/#informative-references" @@ -799,14 +779,6 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#isAbstract" } }, - "#items-at-risk": { - "snapshot": { - "number": "C", - "spec": "WAI-ARIA", - "text": "Items at Risk", - "url": "https://www.w3.org/TR/wai-aria-1.2/#items-at-risk" - } - }, "#landmark_roles": { "current": { "number": "5.3.4", @@ -835,6 +807,14 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#live_region_roles" } }, + "#major-feature-in-this-release": { + "current": { + "number": "B.1", + "spec": "WAI-ARIA", + "text": "Major feature in this release", + "url": "https://w3c.github.io/aria/#major-feature-in-this-release" + } + }, "#managingfocus": { "current": { "number": "4.3", @@ -909,7 +889,7 @@ "current": { "number": "5.2.6", "spec": "WAI-ARIA", - "text": "Required Owned Elements", + "text": "Allowed Accessibility Child Roles", "url": "https://w3c.github.io/aria/#mustContain" }, "snapshot": { @@ -997,7 +977,7 @@ "url": "https://w3c.github.io/aria/#normative-references" }, "snapshot": { - "number": "F.1", + "number": "D.1", "spec": "WAI-ARIA", "text": "Normative references", "url": "https://www.w3.org/TR/wai-aria-1.2/#normative-references" @@ -1056,12 +1036,6 @@ } }, "#privacy-and-security-considerations": { - "current": { - "number": "", - "spec": "WAI-ARIA", - "text": "11. Privacy and Security Considerations", - "url": "https://w3c.github.io/aria/#privacy-and-security-considerations" - }, "snapshot": { "number": "", "spec": "WAI-ARIA", @@ -1069,6 +1043,14 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#privacy-and-security-considerations" } }, + "#privacy-considerations": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "12. Privacy Considerations", + "url": "https://w3c.github.io/aria/#privacy-considerations" + } + }, "#prohibitedattributes": { "current": { "number": "5.2.5", @@ -1147,7 +1129,7 @@ "url": "https://w3c.github.io/aria/#references" }, "snapshot": { - "number": "F", + "number": "D", "spec": "WAI-ARIA", "text": "References", "url": "https://www.w3.org/TR/wai-aria-1.2/#references" @@ -1241,7 +1223,7 @@ "current": { "number": "5.2.7", "spec": "WAI-ARIA", - "text": "Required Context Role", + "text": "Required Accessibility Parent Role", "url": "https://w3c.github.io/aria/#scope" }, "snapshot": { @@ -1251,12 +1233,12 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#scope" } }, - "#sotd": { - "snapshot": { + "#security-considerations": { + "current": { "number": "", "spec": "WAI-ARIA", - "text": "Status of This Document", - "url": "https://www.w3.org/TR/wai-aria-1.2/#sotd" + "text": "11. Security Considerations", + "url": "https://w3c.github.io/aria/#security-considerations" } }, "#state_changes": { @@ -1365,42 +1347,12 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#subclassroles" } }, - "#substantive-changes-since-the-last-public-working-draft": { + "#substantive-changes-since-aria-1-2": { "current": { "number": "B.2", "spec": "WAI-ARIA", - "text": "Substantive changes since the last public working draft", - "url": "https://w3c.github.io/aria/#substantive-changes-since-the-last-public-working-draft" - } - }, - "#substantive-changes-since-the-previous-candidate-recommendation": { - "snapshot": { - "number": "D.1", - "spec": "WAI-ARIA", - "text": "Substantive changes since the previous Candidate Recommendation", - "url": "https://www.w3.org/TR/wai-aria-1.2/#substantive-changes-since-the-previous-candidate-recommendation" - } - }, - "#substantive-changes-since-the-wai-aria-1-1-recommendation": { - "current": { - "number": "B.3", - "spec": "WAI-ARIA", - "text": "Substantive changes since the WAI-ARIA 1.1 Recommendation", - "url": "https://w3c.github.io/aria/#substantive-changes-since-the-wai-aria-1-1-recommendation" - }, - "snapshot": { - "number": "D.2", - "spec": "WAI-ARIA", - "text": "Substantive changes since the WAI-ARIA 1.1 Recommendation", - "url": "https://www.w3.org/TR/wai-aria-1.2/#substantive-changes-since-the-wai-aria-1-1-recommendation" - } - }, - "#substantive-changes-targeted-for-the-1-3-release": { - "current": { - "number": "B.1", - "spec": "WAI-ARIA", - "text": "Substantive changes targeted for the 1.3 release", - "url": "https://w3c.github.io/aria/#substantive-changes-targeted-for-the-1-3-release" + "text": "Substantive changes since ARIA 1.2", + "url": "https://w3c.github.io/aria/#substantive-changes-since-aria-1-2" } }, "#superclassrole": { @@ -1545,6 +1497,14 @@ "url": "https://www.w3.org/TR/wai-aria-1.2/#tree_inclusion" } }, + "#tree_relationships": { + "current": { + "number": "7.3", + "spec": "WAI-ARIA", + "text": "Relationships in the Accessibility Tree", + "url": "https://w3c.github.io/aria/#tree_relationships" + } + }, "#typemapping": { "current": { "number": "A", diff --git a/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.3.json b/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.3.json new file mode 100644 index 0000000000..a8407d845c --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-wai-aria-1.3.json @@ -0,0 +1,1620 @@ +{ + "#ARIAMixin": { + "current": { + "number": "10.1", + "spec": "WAI-ARIA", + "text": "Interface Mixin ARIAMixin", + "url": "https://w3c.github.io/aria/#ARIAMixin" + }, + "snapshot": { + "number": "10.1", + "spec": "WAI-ARIA", + "text": "Interface Mixin ARIAMixin", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ARIAMixin" + } + }, + "#Properties": { + "current": { + "number": "5.2", + "spec": "WAI-ARIA", + "text": "Characteristics of Roles", + "url": "https://w3c.github.io/aria/#Properties" + }, + "snapshot": { + "number": "5.2", + "spec": "WAI-ARIA", + "text": "Characteristics of Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#Properties" + } + }, + "#abstract_roles": { + "current": { + "number": "5.3.1", + "spec": "WAI-ARIA", + "text": "Abstract Roles", + "url": "https://w3c.github.io/aria/#abstract_roles" + }, + "snapshot": { + "number": "5.3.1", + "spec": "WAI-ARIA", + "text": "Abstract Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#abstract_roles" + } + }, + "#accessibility_tree": { + "current": { + "number": "7", + "spec": "WAI-ARIA", + "text": "Accessibility Tree", + "url": "https://w3c.github.io/aria/#accessibility_tree" + }, + "snapshot": { + "number": "7", + "spec": "WAI-ARIA", + "text": "Accessibility Tree", + "url": "https://www.w3.org/TR/wai-aria-1.3/#accessibility_tree" + } + }, + "#accessibilityroleandproperties-correspondence": { + "current": { + "number": "10.2", + "spec": "WAI-ARIA", + "text": "ARIA Attribute Correspondence", + "url": "https://w3c.github.io/aria/#accessibilityroleandproperties-correspondence" + }, + "snapshot": { + "number": "10.2", + "spec": "WAI-ARIA", + "text": "ARIA Attribute Correspondence", + "url": "https://www.w3.org/TR/wai-aria-1.3/#accessibilityroleandproperties-correspondence" + } + }, + "#ack_funders": { + "current": { + "number": "C.2", + "spec": "WAI-ARIA", + "text": "Enabling funders", + "url": "https://w3c.github.io/aria/#ack_funders" + }, + "snapshot": { + "number": "C.2", + "spec": "WAI-ARIA", + "text": "Enabling funders", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ack_funders" + } + }, + "#ack_group": { + "current": { + "number": "C.1", + "spec": "WAI-ARIA", + "text": "Participants active in the ARIA WG at the time of publication", + "url": "https://w3c.github.io/aria/#ack_group" + }, + "snapshot": { + "number": "C.1", + "spec": "WAI-ARIA", + "text": "Participants active in the ARIA WG at the time of publication", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ack_group" + } + }, + "#acknowledgements": { + "current": { + "number": "C", + "spec": "WAI-ARIA", + "text": "Acknowledgments", + "url": "https://w3c.github.io/aria/#acknowledgements" + }, + "snapshot": { + "number": "C", + "spec": "WAI-ARIA", + "text": "Acknowledgments", + "url": "https://www.w3.org/TR/wai-aria-1.3/#acknowledgements" + } + }, + "#aria-attributes": { + "current": { + "number": "6.3", + "spec": "WAI-ARIA", + "text": "ARIA Attributes", + "url": "https://w3c.github.io/aria/#aria-attributes" + }, + "snapshot": { + "number": "6.3", + "spec": "WAI-ARIA", + "text": "ARIA Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#aria-attributes" + } + }, + "#at_support": { + "current": { + "number": "1.6", + "spec": "WAI-ARIA", + "text": "Assistive Technologies", + "url": "https://w3c.github.io/aria/#at_support" + }, + "snapshot": { + "number": "1.6", + "spec": "WAI-ARIA", + "text": "Assistive Technologies", + "url": "https://www.w3.org/TR/wai-aria-1.3/#at_support" + } + }, + "#attrs_dragdrop": { + "current": { + "number": "6.6.3", + "spec": "WAI-ARIA", + "text": "Drag-and-Drop Attributes", + "url": "https://w3c.github.io/aria/#attrs_dragdrop" + }, + "snapshot": { + "number": "6.6.3", + "spec": "WAI-ARIA", + "text": "Drag-and-Drop Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#attrs_dragdrop" + } + }, + "#attrs_liveregions": { + "current": { + "number": "6.6.2", + "spec": "WAI-ARIA", + "text": "Live Region Attributes", + "url": "https://w3c.github.io/aria/#attrs_liveregions" + }, + "snapshot": { + "number": "6.6.2", + "spec": "WAI-ARIA", + "text": "Live Region Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#attrs_liveregions" + } + }, + "#attrs_relationships": { + "current": { + "number": "6.6.4", + "spec": "WAI-ARIA", + "text": "Relationship Attributes", + "url": "https://w3c.github.io/aria/#attrs_relationships" + }, + "snapshot": { + "number": "6.6.4", + "spec": "WAI-ARIA", + "text": "Relationship Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#attrs_relationships" + } + }, + "#attrs_widgets": { + "current": { + "number": "6.6.1", + "spec": "WAI-ARIA", + "text": "Widget Attributes", + "url": "https://w3c.github.io/aria/#attrs_widgets" + }, + "snapshot": { + "number": "6.6.1", + "spec": "WAI-ARIA", + "text": "Widget Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#attrs_widgets" + } + }, + "#authoring_practices": { + "current": { + "number": "1.5", + "spec": "WAI-ARIA", + "text": "Authoring Practices", + "url": "https://w3c.github.io/aria/#authoring_practices" + }, + "snapshot": { + "number": "1.5", + "spec": "WAI-ARIA", + "text": "Authoring Practices", + "url": "https://www.w3.org/TR/wai-aria-1.3/#authoring_practices" + } + }, + "#authoring_testing": { + "current": { + "number": "1.5.2", + "spec": "WAI-ARIA", + "text": "Testing Practices and Tools", + "url": "https://w3c.github.io/aria/#authoring_testing" + }, + "snapshot": { + "number": "1.5.2", + "spec": "WAI-ARIA", + "text": "Testing Practices and Tools", + "url": "https://www.w3.org/TR/wai-aria-1.3/#authoring_testing" + } + }, + "#authoring_tools": { + "current": { + "number": "1.5.1", + "spec": "WAI-ARIA", + "text": "Authoring Tools", + "url": "https://w3c.github.io/aria/#authoring_tools" + }, + "snapshot": { + "number": "1.5.1", + "spec": "WAI-ARIA", + "text": "Authoring Tools", + "url": "https://www.w3.org/TR/wai-aria-1.3/#authoring_tools" + } + }, + "#baseConcept": { + "current": { + "number": "5.1.4", + "spec": "WAI-ARIA", + "text": "Base Concept", + "url": "https://w3c.github.io/aria/#baseConcept" + }, + "snapshot": { + "number": "5.1.4", + "spec": "WAI-ARIA", + "text": "Base Concept", + "url": "https://www.w3.org/TR/wai-aria-1.3/#baseConcept" + } + }, + "#changelog": { + "current": { + "number": "B", + "spec": "WAI-ARIA", + "text": "Change Log", + "url": "https://w3c.github.io/aria/#changelog" + }, + "snapshot": { + "number": "B", + "spec": "WAI-ARIA", + "text": "Change Log", + "url": "https://www.w3.org/TR/wai-aria-1.3/#changelog" + } + }, + "#childrenArePresentational": { + "current": { + "number": "5.2.9", + "spec": "WAI-ARIA", + "text": "Presentational Children", + "url": "https://w3c.github.io/aria/#childrenArePresentational" + }, + "snapshot": { + "number": "5.2.9", + "spec": "WAI-ARIA", + "text": "Presentational Children", + "url": "https://www.w3.org/TR/wai-aria-1.3/#childrenArePresentational" + } + }, + "#co-evolution": { + "current": { + "number": "1.4", + "spec": "WAI-ARIA", + "text": "Co-Evolution of WAI-ARIA and Host Languages", + "url": "https://w3c.github.io/aria/#co-evolution" + }, + "snapshot": { + "number": "1.4", + "spec": "WAI-ARIA", + "text": "Co-Evolution of WAI-ARIA and Host Languages", + "url": "https://www.w3.org/TR/wai-aria-1.3/#co-evolution" + } + }, + "#conflict_resolution_presentation_none": { + "current": { + "number": "9.3", + "spec": "WAI-ARIA", + "text": "Presentational Roles Conflict Resolution", + "url": "https://w3c.github.io/aria/#conflict_resolution_presentation_none" + }, + "snapshot": { + "number": "9.3", + "spec": "WAI-ARIA", + "text": "Presentational Roles Conflict Resolution", + "url": "https://www.w3.org/TR/wai-aria-1.3/#conflict_resolution_presentation_none" + } + }, + "#conformance": { + "current": { + "number": "3", + "spec": "WAI-ARIA", + "text": "Conformance", + "url": "https://w3c.github.io/aria/#conformance" + }, + "snapshot": { + "number": "3", + "spec": "WAI-ARIA", + "text": "Conformance", + "url": "https://www.w3.org/TR/wai-aria-1.3/#conformance" + } + }, + "#conformance_checkers": { + "current": { + "number": "3.4", + "spec": "WAI-ARIA", + "text": "Conformance Checkers", + "url": "https://w3c.github.io/aria/#conformance_checkers" + }, + "snapshot": { + "number": "3.4", + "spec": "WAI-ARIA", + "text": "Conformance Checkers", + "url": "https://www.w3.org/TR/wai-aria-1.3/#conformance_checkers" + } + }, + "#deprecated": { + "current": { + "number": "3.5", + "spec": "WAI-ARIA", + "text": "Deprecated Requirements", + "url": "https://w3c.github.io/aria/#deprecated" + }, + "snapshot": { + "number": "3.5", + "spec": "WAI-ARIA", + "text": "Deprecated Requirements", + "url": "https://www.w3.org/TR/wai-aria-1.3/#deprecated" + } + }, + "#descriptioncomputation": { + "current": { + "number": "5.2.8.2", + "spec": "WAI-ARIA", + "text": "Description Computation", + "url": "https://w3c.github.io/aria/#descriptioncomputation" + }, + "snapshot": { + "number": "5.2.8.2", + "spec": "WAI-ARIA", + "text": "Description Computation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#descriptioncomputation" + } + }, + "#document-handling_author-errors": { + "current": { + "number": "9", + "spec": "WAI-ARIA", + "text": "Handling Author Errors", + "url": "https://w3c.github.io/aria/#document-handling_author-errors" + }, + "snapshot": { + "number": "9", + "spec": "WAI-ARIA", + "text": "Handling Author Errors", + "url": "https://www.w3.org/TR/wai-aria-1.3/#document-handling_author-errors" + } + }, + "#document-handling_author-errors_roles": { + "current": { + "number": "9.1", + "spec": "WAI-ARIA", + "text": "Roles", + "url": "https://w3c.github.io/aria/#document-handling_author-errors_roles" + }, + "snapshot": { + "number": "9.1", + "spec": "WAI-ARIA", + "text": "Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#document-handling_author-errors_roles" + } + }, + "#document-handling_author-errors_states-properties": { + "current": { + "number": "9.2", + "spec": "WAI-ARIA", + "text": "States and Properties", + "url": "https://w3c.github.io/aria/#document-handling_author-errors_states-properties" + }, + "snapshot": { + "number": "9.2", + "spec": "WAI-ARIA", + "text": "States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#document-handling_author-errors_states-properties" + } + }, + "#document-handling_css-selectors": { + "current": { + "number": "8.7", + "spec": "WAI-ARIA", + "text": "CSS Selectors", + "url": "https://w3c.github.io/aria/#document-handling_css-selectors" + }, + "snapshot": { + "number": "8.7", + "spec": "WAI-ARIA", + "text": "CSS Selectors", + "url": "https://www.w3.org/TR/wai-aria-1.3/#document-handling_css-selectors" + } + }, + "#document_structure_roles": { + "current": { + "number": "5.3.3", + "spec": "WAI-ARIA", + "text": "Document Structure Roles", + "url": "https://w3c.github.io/aria/#document_structure_roles" + }, + "snapshot": { + "number": "5.3.3", + "spec": "WAI-ARIA", + "text": "Document Structure Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#document_structure_roles" + } + }, + "#enumerated-attribute-values": { + "current": { + "number": "6.3.1", + "spec": "WAI-ARIA", + "text": "Multi-value Attribute Values", + "url": "https://w3c.github.io/aria/#enumerated-attribute-values" + }, + "snapshot": { + "number": "6.3.1", + "spec": "WAI-ARIA", + "text": "Multi-value Attribute Values", + "url": "https://www.w3.org/TR/wai-aria-1.3/#enumerated-attribute-values" + } + }, + "#enumerated-attribute-values-html": { + "current": { + "number": "6.3.4", + "spec": "WAI-ARIA", + "text": "ARIA nullable DOMString Attributes", + "url": "https://w3c.github.io/aria/#enumerated-attribute-values-html" + }, + "snapshot": { + "number": "6.3.4", + "spec": "WAI-ARIA", + "text": "ARIA nullable DOMString Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#enumerated-attribute-values-html" + } + }, + "#enumeration-example": { + "current": { + "number": "6.3.4.1", + "spec": "WAI-ARIA", + "text": "Example Attribute Usage", + "url": "https://w3c.github.io/aria/#enumeration-example" + }, + "snapshot": { + "number": "6.3.4.1", + "spec": "WAI-ARIA", + "text": "Example Attribute Usage", + "url": "https://www.w3.org/TR/wai-aria-1.3/#enumeration-example" + } + }, + "#global_states": { + "current": { + "number": "6.5", + "spec": "WAI-ARIA", + "text": "Global States and Properties", + "url": "https://w3c.github.io/aria/#global_states" + }, + "snapshot": { + "number": "6.5", + "spec": "WAI-ARIA", + "text": "Global States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#global_states" + } + }, + "#host_general_attrs": { + "current": { + "number": "8.2", + "spec": "WAI-ARIA", + "text": "State and Property Attributes", + "url": "https://w3c.github.io/aria/#host_general_attrs" + }, + "snapshot": { + "number": "8.2", + "spec": "WAI-ARIA", + "text": "State and Property Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#host_general_attrs" + } + }, + "#host_general_conflict": { + "current": { + "number": "8.5", + "spec": "WAI-ARIA", + "text": "Conflicts with Host Language Semantics", + "url": "https://w3c.github.io/aria/#host_general_conflict" + }, + "snapshot": { + "number": "8.5", + "spec": "WAI-ARIA", + "text": "Conflicts with Host Language Semantics", + "url": "https://www.w3.org/TR/wai-aria-1.3/#host_general_conflict" + } + }, + "#host_general_focus": { + "current": { + "number": "8.3", + "spec": "WAI-ARIA", + "text": "Focus Navigation", + "url": "https://w3c.github.io/aria/#host_general_focus" + }, + "snapshot": { + "number": "8.3", + "spec": "WAI-ARIA", + "text": "Focus Navigation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#host_general_focus" + } + }, + "#host_general_role": { + "current": { + "number": "8.1", + "spec": "WAI-ARIA", + "text": "Role Attribute", + "url": "https://w3c.github.io/aria/#host_general_role" + }, + "snapshot": { + "number": "8.1", + "spec": "WAI-ARIA", + "text": "Role Attribute", + "url": "https://www.w3.org/TR/wai-aria-1.3/#host_general_role" + } + }, + "#host_languages": { + "current": { + "number": "8", + "spec": "WAI-ARIA", + "text": "Implementation in Host Languages", + "url": "https://w3c.github.io/aria/#host_languages" + }, + "snapshot": { + "number": "8", + "spec": "WAI-ARIA", + "text": "Implementation in Host Languages", + "url": "https://www.w3.org/TR/wai-aria-1.3/#host_languages" + } + }, + "#idl-interface": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "10. IDL Interface", + "url": "https://w3c.github.io/aria/#idl-interface" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "10. IDL Interface", + "url": "https://www.w3.org/TR/wai-aria-1.3/#idl-interface" + } + }, + "#idl-reflection-attribute-values": { + "current": { + "number": "6.3.2", + "spec": "WAI-ARIA", + "text": "IDL reflection of ARIA attributes", + "url": "https://w3c.github.io/aria/#idl-reflection-attribute-values" + }, + "snapshot": { + "number": "6.3.2", + "spec": "WAI-ARIA", + "text": "IDL reflection of ARIA attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#idl-reflection-attribute-values" + } + }, + "#idl_attr_disambiguation": { + "current": { + "number": "10.2.1", + "spec": "WAI-ARIA", + "text": "Disambiguation Pattern", + "url": "https://w3c.github.io/aria/#idl_attr_disambiguation" + }, + "snapshot": { + "number": "10.2.1", + "spec": "WAI-ARIA", + "text": "Disambiguation Pattern", + "url": "https://www.w3.org/TR/wai-aria-1.3/#idl_attr_disambiguation" + } + }, + "#idl_attr_exceptions": { + "current": { + "number": "10.2.2", + "spec": "WAI-ARIA", + "text": "IDL Attribute Name Notes or Exceptions", + "url": "https://w3c.github.io/aria/#idl_attr_exceptions" + }, + "snapshot": { + "number": "10.2.2", + "spec": "WAI-ARIA", + "text": "IDL Attribute Name Notes or Exceptions", + "url": "https://www.w3.org/TR/wai-aria-1.3/#idl_attr_exceptions" + } + }, + "#idl_element": { + "snapshot": { + "number": "10.3", + "spec": "WAI-ARIA", + "text": "ARIAMixin Mixed in to Element", + "url": "https://www.w3.org/TR/wai-aria-1.3/#idl_element" + } + }, + "#idl_example_usage": { + "current": { + "number": "10.3", + "spec": "WAI-ARIA", + "text": "Example IDL Attribute Usage", + "url": "https://w3c.github.io/aria/#idl_example_usage" + }, + "snapshot": { + "number": "10.4", + "spec": "WAI-ARIA", + "text": "Example IDL Attribute Usage", + "url": "https://www.w3.org/TR/wai-aria-1.3/#idl_example_usage" + } + }, + "#implicit_semantics": { + "current": { + "number": "8.4", + "spec": "WAI-ARIA", + "text": "Implicit WAI-ARIA Semantics", + "url": "https://w3c.github.io/aria/#implicit_semantics" + }, + "snapshot": { + "number": "8.4", + "spec": "WAI-ARIA", + "text": "Implicit WAI-ARIA Semantics", + "url": "https://www.w3.org/TR/wai-aria-1.3/#implicit_semantics" + } + }, + "#implictValueForRole": { + "current": { + "number": "5.2.10", + "spec": "WAI-ARIA", + "text": "Implicit Value for Role", + "url": "https://w3c.github.io/aria/#implictValueForRole" + }, + "snapshot": { + "number": "5.2.10", + "spec": "WAI-ARIA", + "text": "Implicit Value for Role", + "url": "https://www.w3.org/TR/wai-aria-1.3/#implictValueForRole" + } + }, + "#informative-references": { + "current": { + "number": "D.2", + "spec": "WAI-ARIA", + "text": "Informative references", + "url": "https://w3c.github.io/aria/#informative-references" + }, + "snapshot": { + "number": "D.2", + "spec": "WAI-ARIA", + "text": "Informative references", + "url": "https://www.w3.org/TR/wai-aria-1.3/#informative-references" + } + }, + "#inheritedattributes": { + "current": { + "number": "5.2.4", + "spec": "WAI-ARIA", + "text": "Inherited States and Properties", + "url": "https://w3c.github.io/aria/#inheritedattributes" + }, + "snapshot": { + "number": "5.2.4", + "spec": "WAI-ARIA", + "text": "Inherited States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#inheritedattributes" + } + }, + "#intro_ria_accessibility": { + "current": { + "number": "1.1", + "spec": "WAI-ARIA", + "text": "Rich Internet Application Accessibility", + "url": "https://w3c.github.io/aria/#intro_ria_accessibility" + }, + "snapshot": { + "number": "1.1", + "spec": "WAI-ARIA", + "text": "Rich Internet Application Accessibility", + "url": "https://www.w3.org/TR/wai-aria-1.3/#intro_ria_accessibility" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "WAI-ARIA", + "text": "Introduction", + "url": "https://w3c.github.io/aria/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "WAI-ARIA", + "text": "Introduction", + "url": "https://www.w3.org/TR/wai-aria-1.3/#introduction" + } + }, + "#introroles": { + "current": { + "number": "4.1", + "spec": "WAI-ARIA", + "text": "WAI-ARIA Roles", + "url": "https://w3c.github.io/aria/#introroles" + }, + "snapshot": { + "number": "4.1", + "spec": "WAI-ARIA", + "text": "WAI-ARIA Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#introroles" + } + }, + "#introstates": { + "current": { + "number": "4.2", + "spec": "WAI-ARIA", + "text": "WAI-ARIA States and Properties", + "url": "https://w3c.github.io/aria/#introstates" + }, + "snapshot": { + "number": "4.2", + "spec": "WAI-ARIA", + "text": "WAI-ARIA States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#introstates" + } + }, + "#isAbstract": { + "current": { + "number": "5.2.1", + "spec": "WAI-ARIA", + "text": "Abstract Roles", + "url": "https://w3c.github.io/aria/#isAbstract" + }, + "snapshot": { + "number": "5.2.1", + "spec": "WAI-ARIA", + "text": "Abstract Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#isAbstract" + } + }, + "#landmark_roles": { + "current": { + "number": "5.3.4", + "spec": "WAI-ARIA", + "text": "Landmark Roles", + "url": "https://w3c.github.io/aria/#landmark_roles" + }, + "snapshot": { + "number": "5.3.4", + "spec": "WAI-ARIA", + "text": "Landmark Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#landmark_roles" + } + }, + "#live_region_roles": { + "current": { + "number": "5.3.5", + "spec": "WAI-ARIA", + "text": "Live Region Roles", + "url": "https://w3c.github.io/aria/#live_region_roles" + }, + "snapshot": { + "number": "5.3.5", + "spec": "WAI-ARIA", + "text": "Live Region Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#live_region_roles" + } + }, + "#major-feature-in-this-release": { + "current": { + "number": "B.1", + "spec": "WAI-ARIA", + "text": "Major feature in this release", + "url": "https://w3c.github.io/aria/#major-feature-in-this-release" + }, + "snapshot": { + "number": "B.1", + "spec": "WAI-ARIA", + "text": "Major feature in this release", + "url": "https://www.w3.org/TR/wai-aria-1.3/#major-feature-in-this-release" + } + }, + "#managingfocus": { + "current": { + "number": "4.3", + "spec": "WAI-ARIA", + "text": "Managing Focus and Supporting Keyboard Navigation", + "url": "https://w3c.github.io/aria/#managingfocus" + }, + "snapshot": { + "number": "4.3", + "spec": "WAI-ARIA", + "text": "Managing Focus and Supporting Keyboard Navigation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#managingfocus" + } + }, + "#managingfocus_authors": { + "current": { + "number": "4.3.1", + "spec": "WAI-ARIA", + "text": "Information for Authors", + "url": "https://w3c.github.io/aria/#managingfocus_authors" + }, + "snapshot": { + "number": "4.3.1", + "spec": "WAI-ARIA", + "text": "Information for Authors", + "url": "https://www.w3.org/TR/wai-aria-1.3/#managingfocus_authors" + } + }, + "#managingfocus_useragents": { + "current": { + "number": "4.3.2", + "spec": "WAI-ARIA", + "text": "Information for User Agents", + "url": "https://w3c.github.io/aria/#managingfocus_useragents" + }, + "snapshot": { + "number": "4.3.2", + "spec": "WAI-ARIA", + "text": "Information for User Agents", + "url": "https://www.w3.org/TR/wai-aria-1.3/#managingfocus_useragents" + } + }, + "#mapping_additional_relations_error_processing": { + "current": { + "number": "8.6.1", + "spec": "WAI-ARIA", + "text": "ID Reference Error Processing", + "url": "https://w3c.github.io/aria/#mapping_additional_relations_error_processing" + }, + "snapshot": { + "number": "8.6.1", + "spec": "WAI-ARIA", + "text": "ID Reference Error Processing", + "url": "https://www.w3.org/TR/wai-aria-1.3/#mapping_additional_relations_error_processing" + } + }, + "#mathml-example-with-embedded-tex-annotation": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "MathML Example with Embedded TeX Annotation", + "url": "https://w3c.github.io/aria/#mathml-example-with-embedded-tex-annotation" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "MathML Example with Embedded TeX Annotation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#mathml-example-with-embedded-tex-annotation" + } + }, + "#mustContain": { + "current": { + "number": "5.2.6", + "spec": "WAI-ARIA", + "text": "Allowed Accessibility Child Roles", + "url": "https://w3c.github.io/aria/#mustContain" + }, + "snapshot": { + "number": "5.2.6", + "spec": "WAI-ARIA", + "text": "Allowed Accessibility Child Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#mustContain" + } + }, + "#namecalculation": { + "current": { + "number": "5.2.8", + "spec": "WAI-ARIA", + "text": "Accessible Name Calculation", + "url": "https://w3c.github.io/aria/#namecalculation" + }, + "snapshot": { + "number": "5.2.8", + "spec": "WAI-ARIA", + "text": "Accessible Name Calculation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#namecalculation" + } + }, + "#namecomputation": { + "current": { + "number": "5.2.8.1", + "spec": "WAI-ARIA", + "text": "Name Computation", + "url": "https://w3c.github.io/aria/#namecomputation" + }, + "snapshot": { + "number": "5.2.8.1", + "spec": "WAI-ARIA", + "text": "Name Computation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#namecomputation" + } + }, + "#namefromauthor": { + "current": { + "number": "5.2.8.4", + "spec": "WAI-ARIA", + "text": "Roles Supporting Name from Author", + "url": "https://w3c.github.io/aria/#namefromauthor" + }, + "snapshot": { + "number": "5.2.8.4", + "spec": "WAI-ARIA", + "text": "Roles Supporting Name from Author", + "url": "https://www.w3.org/TR/wai-aria-1.3/#namefromauthor" + } + }, + "#namefromcontent": { + "current": { + "number": "5.2.8.5", + "spec": "WAI-ARIA", + "text": "Roles Supporting Name from Content", + "url": "https://w3c.github.io/aria/#namefromcontent" + }, + "snapshot": { + "number": "5.2.8.5", + "spec": "WAI-ARIA", + "text": "Roles Supporting Name from Content", + "url": "https://www.w3.org/TR/wai-aria-1.3/#namefromcontent" + } + }, + "#namefromprohibited": { + "current": { + "number": "5.2.8.6", + "spec": "WAI-ARIA", + "text": "Roles which cannot be named (Name prohibited)", + "url": "https://w3c.github.io/aria/#namefromprohibited" + }, + "snapshot": { + "number": "5.2.8.6", + "spec": "WAI-ARIA", + "text": "Roles which cannot be named (Name prohibited)", + "url": "https://www.w3.org/TR/wai-aria-1.3/#namefromprohibited" + } + }, + "#normative-references": { + "current": { + "number": "D.1", + "spec": "WAI-ARIA", + "text": "Normative references", + "url": "https://w3c.github.io/aria/#normative-references" + }, + "snapshot": { + "number": "D.1", + "spec": "WAI-ARIA", + "text": "Normative references", + "url": "https://www.w3.org/TR/wai-aria-1.3/#normative-references" + } + }, + "#os-aapi-attribute-mapping": { + "current": { + "number": "6.3.3", + "spec": "WAI-ARIA", + "text": "Operating System Accessibility API mapping of multi-value ARIA attributes", + "url": "https://w3c.github.io/aria/#os-aapi-attribute-mapping" + }, + "snapshot": { + "number": "6.3.3", + "spec": "WAI-ARIA", + "text": "Operating System Accessibility API mapping of multi-value ARIA attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#os-aapi-attribute-mapping" + } + }, + "#plain-html-or-polyfill-dom-result-of-the-mathml-quadratic-formula": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "Plain HTML or Polyfill DOM Result of the MathML Quadratic Formula", + "url": "https://w3c.github.io/aria/#plain-html-or-polyfill-dom-result-of-the-mathml-quadratic-formula" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "Plain HTML or Polyfill DOM Result of the MathML Quadratic Formula", + "url": "https://www.w3.org/TR/wai-aria-1.3/#plain-html-or-polyfill-dom-result-of-the-mathml-quadratic-formula" + } + }, + "#presentational-role-inheritance": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "Presentational Role Inheritance", + "url": "https://w3c.github.io/aria/#presentational-role-inheritance" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "Presentational Role Inheritance", + "url": "https://www.w3.org/TR/wai-aria-1.3/#presentational-role-inheritance" + } + }, + "#privacy-considerations": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "12. Privacy Considerations", + "url": "https://w3c.github.io/aria/#privacy-considerations" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "12. Privacy Considerations", + "url": "https://www.w3.org/TR/wai-aria-1.3/#privacy-considerations" + } + }, + "#prohibitedattributes": { + "current": { + "number": "5.2.5", + "spec": "WAI-ARIA", + "text": "Prohibited States and Properties", + "url": "https://w3c.github.io/aria/#prohibitedattributes" + }, + "snapshot": { + "number": "5.2.5", + "spec": "WAI-ARIA", + "text": "Prohibited States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#prohibitedattributes" + } + }, + "#propcharacteristic_inheritsintoroles": { + "current": { + "number": "6.2.3", + "spec": "WAI-ARIA", + "text": "Inherits into Roles", + "url": "https://w3c.github.io/aria/#propcharacteristic_inheritsintoroles" + }, + "snapshot": { + "number": "6.2.3", + "spec": "WAI-ARIA", + "text": "Inherits into Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#propcharacteristic_inheritsintoroles" + } + }, + "#propcharacteristic_relatedconcept": { + "current": { + "number": "6.2.1", + "spec": "WAI-ARIA", + "text": "Related Concepts", + "url": "https://w3c.github.io/aria/#propcharacteristic_relatedconcept" + }, + "snapshot": { + "number": "6.2.1", + "spec": "WAI-ARIA", + "text": "Related Concepts", + "url": "https://www.w3.org/TR/wai-aria-1.3/#propcharacteristic_relatedconcept" + } + }, + "#propcharacteristic_usedinrole": { + "current": { + "number": "6.2.2", + "spec": "WAI-ARIA", + "text": "Used in Roles", + "url": "https://w3c.github.io/aria/#propcharacteristic_usedinrole" + }, + "snapshot": { + "number": "6.2.2", + "spec": "WAI-ARIA", + "text": "Used in Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#propcharacteristic_usedinrole" + } + }, + "#propcharacteristic_value": { + "current": { + "number": "6.2.4", + "spec": "WAI-ARIA", + "text": "Value", + "url": "https://w3c.github.io/aria/#propcharacteristic_value" + }, + "snapshot": { + "number": "6.2.4", + "spec": "WAI-ARIA", + "text": "Value", + "url": "https://www.w3.org/TR/wai-aria-1.3/#propcharacteristic_value" + } + }, + "#references": { + "current": { + "number": "D", + "spec": "WAI-ARIA", + "text": "References", + "url": "https://w3c.github.io/aria/#references" + }, + "snapshot": { + "number": "D", + "spec": "WAI-ARIA", + "text": "References", + "url": "https://www.w3.org/TR/wai-aria-1.3/#references" + } + }, + "#relatedConcept": { + "current": { + "number": "5.1.3", + "spec": "WAI-ARIA", + "text": "Related Concepts", + "url": "https://w3c.github.io/aria/#relatedConcept" + }, + "snapshot": { + "number": "5.1.3", + "spec": "WAI-ARIA", + "text": "Related Concepts", + "url": "https://www.w3.org/TR/wai-aria-1.3/#relatedConcept" + } + }, + "#relationshipsconcepts": { + "current": { + "number": "5.1", + "spec": "WAI-ARIA", + "text": "Relationships Between Concepts", + "url": "https://w3c.github.io/aria/#relationshipsconcepts" + }, + "snapshot": { + "number": "5.1", + "spec": "WAI-ARIA", + "text": "Relationships Between Concepts", + "url": "https://www.w3.org/TR/wai-aria-1.3/#relationshipsconcepts" + } + }, + "#requiredState": { + "current": { + "number": "5.2.2", + "spec": "WAI-ARIA", + "text": "Required States and Properties", + "url": "https://w3c.github.io/aria/#requiredState" + }, + "snapshot": { + "number": "5.2.2", + "spec": "WAI-ARIA", + "text": "Required States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#requiredState" + } + }, + "#role_definitions": { + "current": { + "number": "5.4", + "spec": "WAI-ARIA", + "text": "Definition of Roles", + "url": "https://w3c.github.io/aria/#role_definitions" + }, + "snapshot": { + "number": "5.4", + "spec": "WAI-ARIA", + "text": "Definition of Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#role_definitions" + } + }, + "#roles": { + "current": { + "number": "5", + "spec": "WAI-ARIA", + "text": "The Roles Model", + "url": "https://w3c.github.io/aria/#roles" + }, + "snapshot": { + "number": "5", + "spec": "WAI-ARIA", + "text": "The Roles Model", + "url": "https://www.w3.org/TR/wai-aria-1.3/#roles" + } + }, + "#roles_categorization": { + "current": { + "number": "5.3", + "spec": "WAI-ARIA", + "text": "Categorization of Roles", + "url": "https://w3c.github.io/aria/#roles_categorization" + }, + "snapshot": { + "number": "5.3", + "spec": "WAI-ARIA", + "text": "Categorization of Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#roles_categorization" + } + }, + "#scope": { + "current": { + "number": "5.2.7", + "spec": "WAI-ARIA", + "text": "Required Accessibility Parent Role", + "url": "https://w3c.github.io/aria/#scope" + }, + "snapshot": { + "number": "5.2.7", + "spec": "WAI-ARIA", + "text": "Required Accessibility Parent Role", + "url": "https://www.w3.org/TR/wai-aria-1.3/#scope" + } + }, + "#security-considerations": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "11. Security Considerations", + "url": "https://w3c.github.io/aria/#security-considerations" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "11. Security Considerations", + "url": "https://www.w3.org/TR/wai-aria-1.3/#security-considerations" + } + }, + "#state_changes": { + "current": { + "number": "6.7", + "spec": "WAI-ARIA", + "text": "State change notification", + "url": "https://w3c.github.io/aria/#state_changes" + }, + "snapshot": { + "number": "6.7", + "spec": "WAI-ARIA", + "text": "State change notification", + "url": "https://www.w3.org/TR/wai-aria-1.3/#state_changes" + } + }, + "#state_prop_att": { + "current": { + "number": "6.2", + "spec": "WAI-ARIA", + "text": "Characteristics of States and Properties", + "url": "https://w3c.github.io/aria/#state_prop_att" + }, + "snapshot": { + "number": "6.2", + "spec": "WAI-ARIA", + "text": "Characteristics of States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#state_prop_att" + } + }, + "#state_prop_def": { + "current": { + "number": "6.8", + "spec": "WAI-ARIA", + "text": "Definitions of States and Properties (all aria-* attributes)", + "url": "https://w3c.github.io/aria/#state_prop_def" + }, + "snapshot": { + "number": "6.8", + "spec": "WAI-ARIA", + "text": "Definitions of States and Properties (all aria-* attributes)", + "url": "https://www.w3.org/TR/wai-aria-1.3/#state_prop_def" + } + }, + "#state_prop_taxonomy": { + "current": { + "number": "6.6", + "spec": "WAI-ARIA", + "text": "Taxonomy of WAI-ARIA States and Properties", + "url": "https://w3c.github.io/aria/#state_prop_taxonomy" + }, + "snapshot": { + "number": "6.6", + "spec": "WAI-ARIA", + "text": "Taxonomy of WAI-ARIA States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#state_prop_taxonomy" + } + }, + "#state_property_processing": { + "current": { + "number": "8.6", + "spec": "WAI-ARIA", + "text": "State and Property Attribute Processing", + "url": "https://w3c.github.io/aria/#state_property_processing" + }, + "snapshot": { + "number": "8.6", + "spec": "WAI-ARIA", + "text": "State and Property Attribute Processing", + "url": "https://www.w3.org/TR/wai-aria-1.3/#state_property_processing" + } + }, + "#states_and_properties": { + "current": { + "number": "6", + "spec": "WAI-ARIA", + "text": "Supported States and Properties", + "url": "https://w3c.github.io/aria/#states_and_properties" + }, + "snapshot": { + "number": "6", + "spec": "WAI-ARIA", + "text": "Supported States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#states_and_properties" + } + }, + "#statevsprop": { + "current": { + "number": "6.1", + "spec": "WAI-ARIA", + "text": "Clarification of States versus Properties", + "url": "https://w3c.github.io/aria/#statevsprop" + }, + "snapshot": { + "number": "6.1", + "spec": "WAI-ARIA", + "text": "Clarification of States versus Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#statevsprop" + } + }, + "#subclassroles": { + "current": { + "number": "5.1.2", + "spec": "WAI-ARIA", + "text": "Subclass Roles", + "url": "https://w3c.github.io/aria/#subclassroles" + }, + "snapshot": { + "number": "5.1.2", + "spec": "WAI-ARIA", + "text": "Subclass Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#subclassroles" + } + }, + "#substantive-changes-since-aria-1-2": { + "current": { + "number": "B.2", + "spec": "WAI-ARIA", + "text": "Substantive changes since ARIA 1.2", + "url": "https://w3c.github.io/aria/#substantive-changes-since-aria-1-2" + }, + "snapshot": { + "number": "B.2", + "spec": "WAI-ARIA", + "text": "Substantive changes since ARIA 1.2", + "url": "https://www.w3.org/TR/wai-aria-1.3/#substantive-changes-since-aria-1-2" + } + }, + "#superclassrole": { + "current": { + "number": "5.1.1", + "spec": "WAI-ARIA", + "text": "Superclass Role", + "url": "https://w3c.github.io/aria/#superclassrole" + }, + "snapshot": { + "number": "5.1.1", + "spec": "WAI-ARIA", + "text": "Superclass Role", + "url": "https://www.w3.org/TR/wai-aria-1.3/#superclassrole" + } + }, + "#supportedState": { + "current": { + "number": "5.2.3", + "spec": "WAI-ARIA", + "text": "Supported States and Properties", + "url": "https://w3c.github.io/aria/#supportedState" + }, + "snapshot": { + "number": "5.2.3", + "spec": "WAI-ARIA", + "text": "Supported States and Properties", + "url": "https://www.w3.org/TR/wai-aria-1.3/#supportedState" + } + }, + "#target-audience": { + "current": { + "number": "1.2", + "spec": "WAI-ARIA", + "text": "Target Audience", + "url": "https://w3c.github.io/aria/#target-audience" + }, + "snapshot": { + "number": "1.2", + "spec": "WAI-ARIA", + "text": "Target Audience", + "url": "https://www.w3.org/TR/wai-aria-1.3/#target-audience" + } + }, + "#terms": { + "current": { + "number": "2", + "spec": "WAI-ARIA", + "text": "Important Terms", + "url": "https://w3c.github.io/aria/#terms" + }, + "snapshot": { + "number": "2", + "spec": "WAI-ARIA", + "text": "Important Terms", + "url": "https://www.w3.org/TR/wai-aria-1.3/#terms" + } + }, + "#textalternativecomputation": { + "current": { + "number": "5.2.8.3", + "spec": "WAI-ARIA", + "text": "Accessible Name and Description Computation", + "url": "https://w3c.github.io/aria/#textalternativecomputation" + }, + "snapshot": { + "number": "5.2.8.3", + "spec": "WAI-ARIA", + "text": "Accessible Name and Description Computation", + "url": "https://www.w3.org/TR/wai-aria-1.3/#textalternativecomputation" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "Accessible Rich Internet Applications (WAI-ARIA) 1.3", + "url": "https://w3c.github.io/aria/#title" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "Accessible Rich Internet Applications (WAI-ARIA) 1.3", + "url": "https://www.w3.org/TR/wai-aria-1.3/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WAI-ARIA", + "text": "Table of Contents", + "url": "https://w3c.github.io/aria/#toc" + }, + "snapshot": { + "number": "", + "spec": "WAI-ARIA", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/wai-aria-1.3/#toc" + } + }, + "#translatable-attributes": { + "current": { + "number": "6.4", + "spec": "WAI-ARIA", + "text": "Translatable Attributes", + "url": "https://w3c.github.io/aria/#translatable-attributes" + }, + "snapshot": { + "number": "6.4", + "spec": "WAI-ARIA", + "text": "Translatable Attributes", + "url": "https://www.w3.org/TR/wai-aria-1.3/#translatable-attributes" + } + }, + "#tree_exclusion": { + "current": { + "number": "7.1", + "spec": "WAI-ARIA", + "text": "Excluding Elements from the Accessibility Tree", + "url": "https://w3c.github.io/aria/#tree_exclusion" + }, + "snapshot": { + "number": "7.1", + "spec": "WAI-ARIA", + "text": "Excluding Elements from the Accessibility Tree", + "url": "https://www.w3.org/TR/wai-aria-1.3/#tree_exclusion" + } + }, + "#tree_inclusion": { + "current": { + "number": "7.2", + "spec": "WAI-ARIA", + "text": "Including Elements in the Accessibility Tree", + "url": "https://w3c.github.io/aria/#tree_inclusion" + }, + "snapshot": { + "number": "7.2", + "spec": "WAI-ARIA", + "text": "Including Elements in the Accessibility Tree", + "url": "https://www.w3.org/TR/wai-aria-1.3/#tree_inclusion" + } + }, + "#tree_relationships": { + "current": { + "number": "7.3", + "spec": "WAI-ARIA", + "text": "Relationships in the Accessibility Tree", + "url": "https://w3c.github.io/aria/#tree_relationships" + }, + "snapshot": { + "number": "7.3", + "spec": "WAI-ARIA", + "text": "Relationships in the Accessibility Tree", + "url": "https://www.w3.org/TR/wai-aria-1.3/#tree_relationships" + } + }, + "#typemapping": { + "current": { + "number": "A", + "spec": "WAI-ARIA", + "text": "Mapping WAI-ARIA Value types to languages", + "url": "https://w3c.github.io/aria/#typemapping" + }, + "snapshot": { + "number": "A", + "spec": "WAI-ARIA", + "text": "Mapping WAI-ARIA Value types to languages", + "url": "https://www.w3.org/TR/wai-aria-1.3/#typemapping" + } + }, + "#ua-support": { + "current": { + "number": "1.3", + "spec": "WAI-ARIA", + "text": "User Agent Support", + "url": "https://w3c.github.io/aria/#ua-support" + }, + "snapshot": { + "number": "1.3", + "spec": "WAI-ARIA", + "text": "User Agent Support", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ua-support" + } + }, + "#ua_dom": { + "current": { + "number": "3.2", + "spec": "WAI-ARIA", + "text": "All WAI-ARIA in DOM", + "url": "https://w3c.github.io/aria/#ua_dom" + }, + "snapshot": { + "number": "3.2", + "spec": "WAI-ARIA", + "text": "All WAI-ARIA in DOM", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ua_dom" + } + }, + "#ua_domchanges": { + "current": { + "number": "3.3", + "spec": "WAI-ARIA", + "text": "Assistive Technology Notifications Communicated to Web Applications", + "url": "https://w3c.github.io/aria/#ua_domchanges" + }, + "snapshot": { + "number": "3.3", + "spec": "WAI-ARIA", + "text": "Assistive Technology Notifications Communicated to Web Applications", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ua_domchanges" + } + }, + "#ua_noninterference": { + "current": { + "number": "3.1", + "spec": "WAI-ARIA", + "text": "Non-interference with the Host Language", + "url": "https://w3c.github.io/aria/#ua_noninterference" + }, + "snapshot": { + "number": "3.1", + "spec": "WAI-ARIA", + "text": "Non-interference with the Host Language", + "url": "https://www.w3.org/TR/wai-aria-1.3/#ua_noninterference" + } + }, + "#usage": { + "current": { + "number": "4", + "spec": "WAI-ARIA", + "text": "Using WAI-ARIA", + "url": "https://w3c.github.io/aria/#usage" + }, + "snapshot": { + "number": "4", + "spec": "WAI-ARIA", + "text": "Using WAI-ARIA", + "url": "https://www.w3.org/TR/wai-aria-1.3/#usage" + } + }, + "#widget_roles": { + "current": { + "number": "5.3.2", + "spec": "WAI-ARIA", + "text": "Widget Roles", + "url": "https://w3c.github.io/aria/#widget_roles" + }, + "snapshot": { + "number": "5.3.2", + "spec": "WAI-ARIA", + "text": "Widget Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#widget_roles" + } + }, + "#window_roles": { + "current": { + "number": "5.3.6", + "spec": "WAI-ARIA", + "text": "Window Roles", + "url": "https://w3c.github.io/aria/#window_roles" + }, + "snapshot": { + "number": "5.3.6", + "spec": "WAI-ARIA", + "text": "Window Roles", + "url": "https://www.w3.org/TR/wai-aria-1.3/#window_roles" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-wasm-core-1.json b/bikeshed/spec-data/readonly/headings/headings-wasm-core-2.json similarity index 72% rename from bikeshed/spec-data/readonly/headings/headings-wasm-core-1.json rename to bikeshed/spec-data/readonly/headings/headings-wasm-core-2.json index 4ba01ecd8a..d7d9d6f35d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-wasm-core-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-wasm-core-2.json @@ -1,1594 +1,16 @@ { - "#--hrefsyntax-datamathsfdatax-hrefsyntax-datamathsfoffsethrefsyntax-exprmathitexpr-hrefsyntax-datamathsfinitbast": { - "snapshot": { - "number": "3.4.6.1", - "spec": "WebAssembly Core", - "text": "{data x,offset expr,init b∗}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-datamathsfdatax-hrefsyntax-datamathsfoffsethrefsyntax-exprmathitexpr-hrefsyntax-datamathsfinitbast" - } - }, - "#--hrefsyntax-elemmathsftablex-hrefsyntax-elemmathsfoffsethrefsyntax-exprmathitexpr-hrefsyntax-elemmathsfinityast": { - "snapshot": { - "number": "3.4.5.1", - "spec": "WebAssembly Core", - "text": "{table x,offset expr,init y∗}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-elemmathsftablex-hrefsyntax-elemmathsfoffsethrefsyntax-exprmathitexpr-hrefsyntax-elemmathsfinityast" - } - }, - "#--hrefsyntax-exportmathsfnamehrefsyntax-namemathitname-hrefsyntax-exportmathsfdeschrefsyntax-exportdescmathitexportdesc": { - "snapshot": { - "number": "3.4.8.1", - "spec": "WebAssembly Core", - "text": "{name name,desc exportdesc}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-exportmathsfnamehrefsyntax-namemathitname-hrefsyntax-exportmathsfdeschrefsyntax-exportdescmathitexportdesc" - } - }, - "#--hrefsyntax-funcmathsftypex-hrefsyntax-funcmathsflocalstast-hrefsyntax-funcmathsfbodyhrefsyntax-exprmathitexpr": { - "snapshot": { - "number": "3.4.1.1", - "spec": "WebAssembly Core", - "text": "{type x,locals t∗,body expr}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-funcmathsftypex-hrefsyntax-funcmathsflocalstast-hrefsyntax-funcmathsfbodyhrefsyntax-exprmathitexpr" - } - }, - "#--hrefsyntax-globalmathsftypehrefsyntax-mutmathitmutt-hrefsyntax-globalmathsfinithrefsyntax-exprmathitexpr": { - "snapshot": { - "number": "3.4.4.1", - "spec": "WebAssembly Core", - "text": "{type mut t,init expr}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-globalmathsftypehrefsyntax-mutmathitmutt-hrefsyntax-globalmathsfinithrefsyntax-exprmathitexpr" - } - }, - "#--hrefsyntax-importmathsfmodulehrefsyntax-namemathitname_1-hrefsyntax-importmathsfnamehrefsyntax-namemathitname_2-hrefsyntax-importmathsfdeschrefsyntax-importdescmathitimportdesc": { - "snapshot": { - "number": "3.4.9.1", - "spec": "WebAssembly Core", - "text": "{module name1​,name name2​,desc importdesc}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-importmathsfmodulehrefsyntax-namemathitname_1-hrefsyntax-importmathsfnamehrefsyntax-namemathitname_2-hrefsyntax-importmathsfdeschrefsyntax-importdescmathitimportdesc" - } - }, - "#--hrefsyntax-limitsmathsfminn-hrefsyntax-limitsmathsfmaxm": { - "snapshot": { - "number": "3.2.1.1", - "spec": "WebAssembly Core", - "text": "{min n,max m?}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-limitsmathsfminn-hrefsyntax-limitsmathsfmaxm" - } - }, - "#--hrefsyntax-memmathsftypehrefsyntax-memtypemathitmemtype": { - "snapshot": { - "number": "3.4.3.1", - "spec": "WebAssembly Core", - "text": "{type memtype}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-memmathsftypehrefsyntax-memtypemathitmemtype" - } - }, - "#--hrefsyntax-startmathsffuncx": { - "snapshot": { - "number": "3.4.7.1", - "spec": "WebAssembly Core", - "text": "{func x}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-startmathsffuncx" - } - }, - "#--hrefsyntax-tablemathsftypehrefsyntax-tabletypemathittabletype": { - "snapshot": { - "number": "3.4.2.1", - "spec": "WebAssembly Core", - "text": "{type tabletype}", - "url": "https://www.w3.org/TR/wasm-core-1/#--hrefsyntax-tablemathsftypehrefsyntax-tabletypemathittabletype" - } - }, - "#-hrefop-convert-smathrmconvertmathsfs_m-n-i": { - "snapshot": { - "number": "4.3.4.9", - "spec": "WebAssembly Core", - "text": "convertsM,N​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-convert-smathrmconvertmathsfs_m-n-i" - } - }, - "#-hrefop-convert-umathrmconvertmathsfu_m-n-i": { - "snapshot": { - "number": "4.3.4.8", - "spec": "WebAssembly Core", - "text": "convertuM,N​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-convert-umathrmconvertmathsfu_m-n-i" - } - }, - "#-hrefop-demotemathrmdemote_m-n-z": { - "snapshot": { - "number": "4.3.4.7", - "spec": "WebAssembly Core", - "text": "demoteM,N​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-demotemathrmdemote_m-n-z" - } - }, - "#-hrefop-extend-smathrmextendmathsfs_m-n-i": { - "snapshot": { - "number": "4.3.4.2", - "spec": "WebAssembly Core", - "text": "extendsM,N​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-extend-smathrmextendmathsfs_m-n-i" - } - }, - "#-hrefop-extend-umathrmextendmathsfu_m-n-i": { - "snapshot": { - "number": "4.3.4.1", - "spec": "WebAssembly Core", - "text": "extenduM,N​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-extend-umathrmextendmathsfu_m-n-i" - } - }, - "#-hrefop-fabsmathrmfabs_n-z": { - "snapshot": { - "number": "4.3.3.10", - "spec": "WebAssembly Core", - "text": "fabsN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fabsmathrmfabs_n-z" - } - }, - "#-hrefop-faddmathrmfadd_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.3", - "spec": "WebAssembly Core", - "text": "faddN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-faddmathrmfadd_n-z_1-z_2" - } - }, - "#-hrefop-fceilmathrmfceil_n-z": { - "snapshot": { - "number": "4.3.3.13", - "spec": "WebAssembly Core", - "text": "fceilN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fceilmathrmfceil_n-z" - } - }, - "#-hrefop-fcopysignmathrmfcopysign_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.9", - "spec": "WebAssembly Core", - "text": "fcopysignN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fcopysignmathrmfcopysign_n-z_1-z_2" - } - }, - "#-hrefop-fdivmathrmfdiv_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.6", - "spec": "WebAssembly Core", - "text": "fdivN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fdivmathrmfdiv_n-z_1-z_2" - } - }, - "#-hrefop-feqmathrmfeq_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.17", - "spec": "WebAssembly Core", - "text": "feqN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-feqmathrmfeq_n-z_1-z_2" - } - }, - "#-hrefop-ffloormathrmffloor_n-z": { - "snapshot": { - "number": "4.3.3.14", - "spec": "WebAssembly Core", - "text": "ffloorN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ffloormathrmffloor_n-z" - } - }, - "#-hrefop-fgemathrmfge_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.22", - "spec": "WebAssembly Core", - "text": "fgeN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fgemathrmfge_n-z_1-z_2" - } - }, - "#-hrefop-fgtmathrmfgt_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.20", - "spec": "WebAssembly Core", - "text": "fgtN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fgtmathrmfgt_n-z_1-z_2" - } - }, - "#-hrefop-flemathrmfle_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.21", - "spec": "WebAssembly Core", - "text": "fleN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-flemathrmfle_n-z_1-z_2" - } - }, - "#-hrefop-fltmathrmflt_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.19", - "spec": "WebAssembly Core", - "text": "fltN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fltmathrmflt_n-z_1-z_2" - } - }, - "#-hrefop-fmaxmathrmfmax_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.8", - "spec": "WebAssembly Core", - "text": "fmaxN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fmaxmathrmfmax_n-z_1-z_2" - } - }, - "#-hrefop-fminmathrmfmin_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.7", - "spec": "WebAssembly Core", - "text": "fminN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fminmathrmfmin_n-z_1-z_2" - } - }, - "#-hrefop-fmulmathrmfmul_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.5", - "spec": "WebAssembly Core", - "text": "fmulN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fmulmathrmfmul_n-z_1-z_2" - } - }, - "#-hrefop-fnearestmathrmfnearest_n-z": { - "snapshot": { - "number": "4.3.3.16", - "spec": "WebAssembly Core", - "text": "fnearestN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fnearestmathrmfnearest_n-z" - } - }, - "#-hrefop-fnegmathrmfneg_n-z": { - "snapshot": { - "number": "4.3.3.11", - "spec": "WebAssembly Core", - "text": "fnegN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fnegmathrmfneg_n-z" - } - }, - "#-hrefop-fnemathrmfne_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.18", - "spec": "WebAssembly Core", - "text": "fneN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fnemathrmfne_n-z_1-z_2" - } - }, - "#-hrefop-fsqrtmathrmfsqrt_n-z": { - "snapshot": { - "number": "4.3.3.12", - "spec": "WebAssembly Core", - "text": "fsqrtN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fsqrtmathrmfsqrt_n-z" - } - }, - "#-hrefop-fsubmathrmfsub_n-z_1-z_2": { - "snapshot": { - "number": "4.3.3.4", - "spec": "WebAssembly Core", - "text": "fsubN​(z1​,z2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-fsubmathrmfsub_n-z_1-z_2" - } - }, - "#-hrefop-ftruncmathrmftrunc_n-z": { - "snapshot": { - "number": "4.3.3.15", - "spec": "WebAssembly Core", - "text": "ftruncN​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ftruncmathrmftrunc_n-z" - } - }, - "#-hrefop-iaddmathrmiadd_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.3", - "spec": "WebAssembly Core", - "text": "iaddN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-iaddmathrmiadd_n-i_1-i_2" - } - }, - "#-hrefop-iandmathrmiand_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.10", - "spec": "WebAssembly Core", - "text": "iandN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-iandmathrmiand_n-i_1-i_2" - } - }, - "#-hrefop-iclzmathrmiclz_n-i": { - "snapshot": { - "number": "4.3.2.18", - "spec": "WebAssembly Core", - "text": "iclzN​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-iclzmathrmiclz_n-i" - } - }, - "#-hrefop-ictzmathrmictz_n-i": { - "snapshot": { - "number": "4.3.2.19", - "spec": "WebAssembly Core", - "text": "ictzN​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ictzmathrmictz_n-i" - } - }, - "#-hrefop-idiv-smathrmidiv_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.7", - "spec": "WebAssembly Core", - "text": "idiv_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-idiv-smathrmidiv_s_n-i_1-i_2" - } - }, - "#-hrefop-idiv-umathrmidiv_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.6", - "spec": "WebAssembly Core", - "text": "idiv_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-idiv-umathrmidiv_u_n-i_1-i_2" - } - }, - "#-hrefop-ieqmathrmieq_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.22", - "spec": "WebAssembly Core", - "text": "ieqN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ieqmathrmieq_n-i_1-i_2" - } - }, - "#-hrefop-ieqzmathrmieqz_n-i": { - "snapshot": { - "number": "4.3.2.21", - "spec": "WebAssembly Core", - "text": "ieqzN​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ieqzmathrmieqz_n-i" - } - }, - "#-hrefop-ige-smathrmige_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.31", - "spec": "WebAssembly Core", - "text": "ige_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ige-smathrmige_s_n-i_1-i_2" - } - }, - "#-hrefop-ige-umathrmige_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.30", - "spec": "WebAssembly Core", - "text": "ige_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ige-umathrmige_u_n-i_1-i_2" - } - }, - "#-hrefop-igt-smathrmigt_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.27", - "spec": "WebAssembly Core", - "text": "igt_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-igt-smathrmigt_s_n-i_1-i_2" - } - }, - "#-hrefop-igt-umathrmigt_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.26", - "spec": "WebAssembly Core", - "text": "igt_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-igt-umathrmigt_u_n-i_1-i_2" - } - }, - "#-hrefop-ile-smathrmile_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.29", - "spec": "WebAssembly Core", - "text": "ile_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ile-smathrmile_s_n-i_1-i_2" - } - }, - "#-hrefop-ile-umathrmile_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.28", - "spec": "WebAssembly Core", - "text": "ile_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ile-umathrmile_u_n-i_1-i_2" - } - }, - "#-hrefop-ilt-smathrmilt_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.25", - "spec": "WebAssembly Core", - "text": "ilt_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ilt-smathrmilt_s_n-i_1-i_2" - } - }, - "#-hrefop-ilt-umathrmilt_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.24", - "spec": "WebAssembly Core", - "text": "ilt_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ilt-umathrmilt_u_n-i_1-i_2" - } - }, - "#-hrefop-imulmathrmimul_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.5", - "spec": "WebAssembly Core", - "text": "imulN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-imulmathrmimul_n-i_1-i_2" - } - }, - "#-hrefop-inemathrmine_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.23", - "spec": "WebAssembly Core", - "text": "ineN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-inemathrmine_n-i_1-i_2" - } - }, - "#-hrefop-iormathrmior_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.11", - "spec": "WebAssembly Core", - "text": "iorN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-iormathrmior_n-i_1-i_2" - } - }, - "#-hrefop-ipopcntmathrmipopcnt_n-i": { - "snapshot": { - "number": "4.3.2.20", - "spec": "WebAssembly Core", - "text": "ipopcntN​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ipopcntmathrmipopcnt_n-i" - } - }, - "#-hrefop-irem-smathrmirem_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.9", - "spec": "WebAssembly Core", - "text": "irem_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-irem-smathrmirem_s_n-i_1-i_2" - } - }, - "#-hrefop-irem-umathrmirem_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.8", - "spec": "WebAssembly Core", - "text": "irem_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-irem-umathrmirem_u_n-i_1-i_2" - } - }, - "#-hrefop-irotlmathrmirotl_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.16", - "spec": "WebAssembly Core", - "text": "irotlN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-irotlmathrmirotl_n-i_1-i_2" - } - }, - "#-hrefop-irotrmathrmirotr_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.17", - "spec": "WebAssembly Core", - "text": "irotrN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-irotrmathrmirotr_n-i_1-i_2" - } - }, - "#-hrefop-ishlmathrmishl_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.13", - "spec": "WebAssembly Core", - "text": "ishlN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ishlmathrmishl_n-i_1-i_2" - } - }, - "#-hrefop-ishr-smathrmishr_s_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.15", - "spec": "WebAssembly Core", - "text": "ishr_sN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ishr-smathrmishr_s_n-i_1-i_2" - } - }, - "#-hrefop-ishr-umathrmishr_u_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.14", - "spec": "WebAssembly Core", - "text": "ishr_uN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ishr-umathrmishr_u_n-i_1-i_2" - } - }, - "#-hrefop-isubmathrmisub_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.4", - "spec": "WebAssembly Core", - "text": "isubN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-isubmathrmisub_n-i_1-i_2" - } - }, - "#-hrefop-ixormathrmixor_n-i_1-i_2": { - "snapshot": { - "number": "4.3.2.12", - "spec": "WebAssembly Core", - "text": "ixorN​(i1​,i2​)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-ixormathrmixor_n-i_1-i_2" - } - }, - "#-hrefop-promotemathrmpromote_m-n-z": { - "snapshot": { - "number": "4.3.4.6", - "spec": "WebAssembly Core", - "text": "promoteM,N​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-promotemathrmpromote_m-n-z" - } - }, - "#-hrefop-reinterpretmathrmreinterpret_t_1-t_2-c": { - "snapshot": { - "number": "4.3.4.10", - "spec": "WebAssembly Core", - "text": "reinterprett1​,t2​​(c)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-reinterpretmathrmreinterpret_t_1-t_2-c" - } - }, - "#-hrefop-trunc-smathrmtruncmathsfs_m-n-z": { - "snapshot": { - "number": "4.3.4.5", - "spec": "WebAssembly Core", - "text": "truncsM,N​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-trunc-smathrmtruncmathsfs_m-n-z" - } - }, - "#-hrefop-trunc-umathrmtruncmathsfu_m-n-z": { - "snapshot": { - "number": "4.3.4.4", - "spec": "WebAssembly Core", - "text": "truncuM,N​(z)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-trunc-umathrmtruncmathsfu_m-n-z" - } - }, - "#-hrefop-wrapmathrmwrap_m-n-i": { - "snapshot": { - "number": "4.3.4.3", - "spec": "WebAssembly Core", - "text": "wrapM,N​(i)", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefop-wrapmathrmwrap_m-n-i" - } - }, - "#-hrefsyntax-exportdescmathsffuncx": { - "snapshot": { - "number": "3.4.8.2", - "spec": "WebAssembly Core", - "text": "func x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-exportdescmathsffuncx" - } - }, - "#-hrefsyntax-exportdescmathsfglobalx": { - "snapshot": { - "number": "3.4.8.5", - "spec": "WebAssembly Core", - "text": "global x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-exportdescmathsfglobalx" - } - }, - "#-hrefsyntax-exportdescmathsfmemx": { - "snapshot": { - "number": "3.4.8.4", - "spec": "WebAssembly Core", - "text": "mem x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-exportdescmathsfmemx" - } - }, - "#-hrefsyntax-exportdescmathsftablex": { - "snapshot": { - "number": "3.4.8.3", - "spec": "WebAssembly Core", - "text": "table x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-exportdescmathsftablex" - } - }, - "#-hrefsyntax-externtypemathsffunchrefsyntax-functypemathitfunctype": { - "snapshot": { - "number": "3.2.6.1", - "spec": "WebAssembly Core", - "text": "func functype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externtypemathsffunchrefsyntax-functypemathitfunctype" - } - }, - "#-hrefsyntax-externtypemathsfglobalhrefsyntax-globaltypemathitglobaltype": { - "snapshot": { - "number": "3.2.6.4", - "spec": "WebAssembly Core", - "text": "global globaltype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externtypemathsfglobalhrefsyntax-globaltypemathitglobaltype" - } - }, - "#-hrefsyntax-externtypemathsfmemhrefsyntax-memtypemathitmemtype": { - "snapshot": { - "number": "3.2.6.3", - "spec": "WebAssembly Core", - "text": "mem memtype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externtypemathsfmemhrefsyntax-memtypemathitmemtype" - } - }, - "#-hrefsyntax-externtypemathsftablehrefsyntax-tabletypemathittabletype": { - "snapshot": { - "number": "3.2.6.2", - "spec": "WebAssembly Core", - "text": "table tabletype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externtypemathsftablehrefsyntax-tabletypemathittabletype" - } - }, - "#-hrefsyntax-externvalmathsffunca": { - "snapshot": { - "number": "4.5.1.1", - "spec": "WebAssembly Core", - "text": "func a", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externvalmathsffunca" - } - }, - "#-hrefsyntax-externvalmathsfglobala": { - "snapshot": { - "number": "4.5.1.4", - "spec": "WebAssembly Core", - "text": "global a", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externvalmathsfglobala" - } - }, - "#-hrefsyntax-externvalmathsfmema": { - "snapshot": { - "number": "4.5.1.3", - "spec": "WebAssembly Core", - "text": "mem a", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externvalmathsfmema" - } - }, - "#-hrefsyntax-externvalmathsftablea": { - "snapshot": { - "number": "4.5.1.2", - "spec": "WebAssembly Core", - "text": "table a", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-externvalmathsftablea" - } - }, - "#-hrefsyntax-framemathsfframe_nfhrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "framen​{F} instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-framemathsfframe_nfhrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend" - } - }, - "#-hrefsyntax-importdescmathsffuncx": { - "snapshot": { - "number": "3.4.9.2", - "spec": "WebAssembly Core", - "text": "func x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-importdescmathsffuncx" - } - }, - "#-hrefsyntax-importdescmathsfglobalhrefsyntax-globaltypemathitglobaltype": { - "snapshot": { - "number": "3.4.9.5", - "spec": "WebAssembly Core", - "text": "global globaltype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-importdescmathsfglobalhrefsyntax-globaltypemathitglobaltype" - } - }, - "#-hrefsyntax-importdescmathsfmemhrefsyntax-memtypemathitmemtype": { - "snapshot": { - "number": "3.4.9.4", - "spec": "WebAssembly Core", - "text": "mem memtype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-importdescmathsfmemhrefsyntax-memtypemathitmemtype" - } - }, - "#-hrefsyntax-importdescmathsftablehrefsyntax-tabletypemathittabletype": { - "snapshot": { - "number": "3.4.9.3", - "spec": "WebAssembly Core", - "text": "table tabletype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-importdescmathsftablehrefsyntax-tabletypemathittabletype" - } - }, - "#-hrefsyntax-init-datamathsfinit_datahrefsyntax-memaddrmathitmemaddrobn": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "init_data memaddr o bn", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-init-datamathsfinit_datahrefsyntax-memaddrmathitmemaddrobn" - } - }, - "#-hrefsyntax-init-elemmathsfinit_elemhrefsyntax-tableaddrmathittableaddroxn": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "init_elem tableaddr o xn", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-init-elemmathsfinit_elemhrefsyntax-tableaddrmathittableaddroxn" - } - }, - "#-hrefsyntax-instr-controlmathsfblockthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend": { - "snapshot": { - "number": "3.3.5.3", - "spec": "WebAssembly Core", - "text": "block [t?] instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfblockthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend" - } - }, - "#-hrefsyntax-instr-controlmathsfblockthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend%E2%91%A0": { - "snapshot": { - "number": "4.4.5.3", - "spec": "WebAssembly Core", - "text": "block [t?] instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfblockthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfbr_ifl": { - "snapshot": { - "number": "3.3.5.7", - "spec": "WebAssembly Core", - "text": "br_if l", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfbr_ifl" - } - }, - "#-hrefsyntax-instr-controlmathsfbr_ifl%E2%91%A0": { - "snapshot": { - "number": "4.4.5.7", - "spec": "WebAssembly Core", - "text": "br_if l", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfbr_ifl%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfbr_tablelastl_n": { - "snapshot": { - "number": "3.3.5.8", - "spec": "WebAssembly Core", - "text": "br_table l∗ lN​", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfbr_tablelastl_n" - } - }, - "#-hrefsyntax-instr-controlmathsfbr_tablelastl_n%E2%91%A0": { - "snapshot": { - "number": "4.4.5.8", - "spec": "WebAssembly Core", - "text": "br_table l∗ lN​", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfbr_tablelastl_n%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfbrl": { - "snapshot": { - "number": "3.3.5.6", - "spec": "WebAssembly Core", - "text": "br l", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfbrl" - } - }, - "#-hrefsyntax-instr-controlmathsfbrl%E2%91%A0": { - "snapshot": { - "number": "4.4.5.6", - "spec": "WebAssembly Core", - "text": "br l", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfbrl%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfcall_indirectx": { - "snapshot": { - "number": "3.3.5.11", - "spec": "WebAssembly Core", - "text": "call_indirect x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfcall_indirectx" - } - }, - "#-hrefsyntax-instr-controlmathsfcall_indirectx%E2%91%A0": { - "snapshot": { - "number": "4.4.5.11", - "spec": "WebAssembly Core", - "text": "call_indirect x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfcall_indirectx%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfcallx": { - "snapshot": { - "number": "3.3.5.10", - "spec": "WebAssembly Core", - "text": "call x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfcallx" - } - }, - "#-hrefsyntax-instr-controlmathsfcallx%E2%91%A0": { - "snapshot": { - "number": "4.4.5.10", - "spec": "WebAssembly Core", - "text": "call x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfcallx%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfifthrefsyntax-instrmathitinstr_1asthrefsyntax-instr-controlmathsfelsehrefsyntax-instrmathitinstr_2asthrefsyntax-instr-controlmathsfend": { - "snapshot": { - "number": "3.3.5.5", - "spec": "WebAssembly Core", - "text": "if [t?] instr1∗​ else instr2∗​ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfifthrefsyntax-instrmathitinstr_1asthrefsyntax-instr-controlmathsfelsehrefsyntax-instrmathitinstr_2asthrefsyntax-instr-controlmathsfend" - } - }, - "#-hrefsyntax-instr-controlmathsfifthrefsyntax-instrmathitinstr_1asthrefsyntax-instr-controlmathsfelsehrefsyntax-instrmathitinstr_2asthrefsyntax-instr-controlmathsfend%E2%91%A0": { - "snapshot": { - "number": "4.4.5.5", - "spec": "WebAssembly Core", - "text": "if [t?] instr1∗​ else instr2∗​ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfifthrefsyntax-instrmathitinstr_1asthrefsyntax-instr-controlmathsfelsehrefsyntax-instrmathitinstr_2asthrefsyntax-instr-controlmathsfend%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfloopthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend": { - "snapshot": { - "number": "3.3.5.4", - "spec": "WebAssembly Core", - "text": "loop [t?] instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfloopthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend" - } - }, - "#-hrefsyntax-instr-controlmathsfloopthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend%E2%91%A0": { - "snapshot": { - "number": "4.4.5.4", - "spec": "WebAssembly Core", - "text": "loop [t?] instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfloopthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfnop": { - "snapshot": { - "number": "3.3.5.1", - "spec": "WebAssembly Core", - "text": "nop", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfnop" - } - }, - "#-hrefsyntax-instr-controlmathsfnop%E2%91%A0": { - "snapshot": { - "number": "4.4.5.1", - "spec": "WebAssembly Core", - "text": "nop", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfnop%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfreturn": { - "snapshot": { - "number": "3.3.5.9", - "spec": "WebAssembly Core", - "text": "return", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfreturn" - } - }, - "#-hrefsyntax-instr-controlmathsfreturn%E2%91%A0": { - "snapshot": { - "number": "4.4.5.9", - "spec": "WebAssembly Core", - "text": "return", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfreturn%E2%91%A0" - } - }, - "#-hrefsyntax-instr-controlmathsfunreachable": { - "snapshot": { - "number": "3.3.5.2", - "spec": "WebAssembly Core", - "text": "unreachable", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfunreachable" - } - }, - "#-hrefsyntax-instr-controlmathsfunreachable%E2%91%A0": { - "snapshot": { - "number": "4.4.5.2", - "spec": "WebAssembly Core", - "text": "unreachable", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-controlmathsfunreachable%E2%91%A0" - } - }, - "#-hrefsyntax-instr-memorymathsfmemorygrow": { - "snapshot": { - "number": "3.3.4.6", - "spec": "WebAssembly Core", - "text": "memory.grow", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-memorymathsfmemorygrow" - } - }, - "#-hrefsyntax-instr-memorymathsfmemorygrow%E2%91%A0": { - "snapshot": { - "number": "4.4.4.4", - "spec": "WebAssembly Core", - "text": "memory.grow", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-memorymathsfmemorygrow%E2%91%A0" - } - }, - "#-hrefsyntax-instr-memorymathsfmemorysize": { - "snapshot": { - "number": "3.3.4.5", - "spec": "WebAssembly Core", - "text": "memory.size", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-memorymathsfmemorysize" - } - }, - "#-hrefsyntax-instr-memorymathsfmemorysize%E2%91%A0": { - "snapshot": { - "number": "4.4.4.3", - "spec": "WebAssembly Core", - "text": "memory.size", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-memorymathsfmemorysize%E2%91%A0" - } - }, - "#-hrefsyntax-instr-parametricmathsfdrop": { - "snapshot": { - "number": "3.3.2.1", - "spec": "WebAssembly Core", - "text": "drop", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-parametricmathsfdrop" - } - }, - "#-hrefsyntax-instr-parametricmathsfdrop%E2%91%A0": { - "snapshot": { - "number": "4.4.2.1", - "spec": "WebAssembly Core", - "text": "drop", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-parametricmathsfdrop%E2%91%A0" - } - }, - "#-hrefsyntax-instr-parametricmathsfselect": { - "snapshot": { - "number": "3.3.2.2", - "spec": "WebAssembly Core", - "text": "select", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-parametricmathsfselect" - } - }, - "#-hrefsyntax-instr-parametricmathsfselect%E2%91%A0": { - "snapshot": { - "number": "4.4.2.2", - "spec": "WebAssembly Core", - "text": "select", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-parametricmathsfselect%E2%91%A0" - } - }, - "#-hrefsyntax-instr-variablemathsfglobalgetx": { - "snapshot": { - "number": "3.3.3.4", - "spec": "WebAssembly Core", - "text": "global.get x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsfglobalgetx" - } - }, - "#-hrefsyntax-instr-variablemathsfglobalgetx%E2%91%A0": { - "snapshot": { - "number": "4.4.3.4", - "spec": "WebAssembly Core", - "text": "global.get x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsfglobalgetx%E2%91%A0" - } - }, - "#-hrefsyntax-instr-variablemathsfglobalsetx": { - "snapshot": { - "number": "3.3.3.5", - "spec": "WebAssembly Core", - "text": "global.set x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsfglobalsetx" - } - }, - "#-hrefsyntax-instr-variablemathsfglobalsetx%E2%91%A0": { - "snapshot": { - "number": "4.4.3.5", - "spec": "WebAssembly Core", - "text": "global.set x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsfglobalsetx%E2%91%A0" - } - }, - "#-hrefsyntax-instr-variablemathsflocalgetx": { - "snapshot": { - "number": "3.3.3.1", - "spec": "WebAssembly Core", - "text": "local.get x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsflocalgetx" - } - }, - "#-hrefsyntax-instr-variablemathsflocalgetx%E2%91%A0": { - "snapshot": { - "number": "4.4.3.1", - "spec": "WebAssembly Core", - "text": "local.get x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsflocalgetx%E2%91%A0" - } - }, - "#-hrefsyntax-instr-variablemathsflocalsetx": { - "snapshot": { - "number": "3.3.3.2", - "spec": "WebAssembly Core", - "text": "local.set x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsflocalsetx" - } - }, - "#-hrefsyntax-instr-variablemathsflocalsetx%E2%91%A0": { - "snapshot": { - "number": "4.4.3.2", - "spec": "WebAssembly Core", - "text": "local.set x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsflocalsetx%E2%91%A0" - } - }, - "#-hrefsyntax-instr-variablemathsflocalteex": { - "snapshot": { - "number": "3.3.3.3", - "spec": "WebAssembly Core", - "text": "local.tee x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsflocalteex" - } - }, - "#-hrefsyntax-instr-variablemathsflocalteex%E2%91%A0": { - "snapshot": { - "number": "4.4.3.3", - "spec": "WebAssembly Core", - "text": "local.tee x", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instr-variablemathsflocalteex%E2%91%A0" - } - }, - "#-hrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend": { - "snapshot": { - "number": "3.3.7.1", - "spec": "WebAssembly Core", - "text": "instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend" - } - }, - "#-hrefsyntax-invokemathsfinvokehrefsyntax-funcaddrmathitfuncaddr": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "invoke funcaddr", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-invokemathsfinvokehrefsyntax-funcaddrmathitfuncaddr" - } - }, - "#-hrefsyntax-labelmathsflabel_nhrefsyntax-instrmathitinstr_0asthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "labeln​{instr0∗​} instr∗ end", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-labelmathsflabel_nhrefsyntax-instrmathitinstr_0asthrefsyntax-instrmathitinstrasthrefsyntax-instr-controlmathsfend" - } - }, - "#-hrefsyntax-limitsmathitlimits": { - "snapshot": { - "number": "3.2.4.1", - "spec": "WebAssembly Core", - "text": "limits", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-limitsmathitlimits" - } - }, - "#-hrefsyntax-limitsmathitlimitshrefsyntax-elemtypemathitelemtype": { - "snapshot": { - "number": "3.2.3.1", - "spec": "WebAssembly Core", - "text": "limits elemtype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-limitsmathitlimitshrefsyntax-elemtypemathitelemtype" - } - }, - "#-hrefsyntax-mutmathitmuthrefsyntax-valtypemathitvaltype": { - "snapshot": { - "number": "3.2.5.1", - "spec": "WebAssembly Core", - "text": "mut valtype", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-mutmathitmuthrefsyntax-valtypemathitvaltype" - } - }, - "#-hrefsyntax-trapmathsftrap": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "trap", - "url": "https://www.w3.org/TR/wasm-core-1/#-hrefsyntax-trapmathsftrap" - } - }, - "#-mathrmfunc_alloc-hrefsyntax-storemathitstore-hrefsyntax-functypemathitfunctype-hrefsyntax-hostfuncmathithostfunc--hrefsyntax-storemathitstore-hrefsyntax-funcaddrmathitfuncaddr": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "func_alloc(store,functype,hostfunc):(store,funcaddr)", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmfunc_alloc-hrefsyntax-storemathitstore-hrefsyntax-functypemathitfunctype-hrefsyntax-hostfuncmathithostfunc--hrefsyntax-storemathitstore-hrefsyntax-funcaddrmathitfuncaddr" - } - }, - "#-mathrmfunc_invoke-hrefsyntax-storemathitstore-hrefsyntax-funcaddrmathitfuncaddr-hrefsyntax-valmathitvalast--hrefsyntax-storemathitstore-hrefsyntax-valmathitvalast--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "func_invoke(store,funcaddr,val∗):(store,val∗ ∣ error)", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmfunc_invoke-hrefsyntax-storemathitstore-hrefsyntax-funcaddrmathitfuncaddr-hrefsyntax-valmathitvalast--hrefsyntax-storemathitstore-hrefsyntax-valmathitvalast--hrefembed-errormathiterror" - } - }, - "#-mathrmfunc_type-hrefsyntax-storemathitstore-hrefsyntax-funcaddrmathitfuncaddr--hrefsyntax-functypemathitfunctype": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "func_type(store,funcaddr):functype", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmfunc_type-hrefsyntax-storemathitstore-hrefsyntax-funcaddrmathitfuncaddr--hrefsyntax-functypemathitfunctype" - } - }, - "#-mathrmglobal_alloc-hrefsyntax-storemathitstore-hrefsyntax-globaltypemathitglobaltype-hrefsyntax-valmathitval--hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "global_alloc(store,globaltype,val):(store,globaladdr)", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmglobal_alloc-hrefsyntax-storemathitstore-hrefsyntax-globaltypemathitglobaltype-hrefsyntax-valmathitval--hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr" - } - }, - "#-mathrmglobal_read-hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr--hrefsyntax-valmathitval": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "global_read(store,globaladdr):val", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmglobal_read-hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr--hrefsyntax-valmathitval" - } - }, - "#-mathrmglobal_type-hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr--hrefsyntax-globaltypemathitglobaltype": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "global_type(store,globaladdr):globaltype", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmglobal_type-hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr--hrefsyntax-globaltypemathitglobaltype" - } - }, - "#-mathrmglobal_write-hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr-hrefsyntax-valmathitval--hrefsyntax-storemathitstore--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "global_write(store,globaladdr,val):store ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmglobal_write-hrefsyntax-storemathitstore-hrefsyntax-globaladdrmathitglobaladdr-hrefsyntax-valmathitval--hrefsyntax-storemathitstore--hrefembed-errormathiterror" - } - }, - "#-mathrminstance_export-hrefsyntax-moduleinstmathitmoduleinst-hrefsyntax-namemathitname--hrefsyntax-externvalmathitexternval--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "instance_export(moduleinst,name):externval ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrminstance_export-hrefsyntax-moduleinstmathitmoduleinst-hrefsyntax-namemathitname--hrefsyntax-externvalmathitexternval--hrefembed-errormathiterror" - } - }, - "#-mathrmmem_alloc-hrefsyntax-storemathitstore-hrefsyntax-memtypemathitmemtype--hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "mem_alloc(store,memtype):(store,memaddr)", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmem_alloc-hrefsyntax-storemathitstore-hrefsyntax-memtypemathitmemtype--hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr" - } - }, - "#-mathrmmem_grow-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr-nhrefsyntax-intmathitu32--hrefsyntax-storemathitstore--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "mem_grow(store,memaddr,n:u32):store ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmem_grow-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr-nhrefsyntax-intmathitu32--hrefsyntax-storemathitstore--hrefembed-errormathiterror" - } - }, - "#-mathrmmem_read-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr-ihrefsyntax-intmathitu32--hrefsyntax-bytemathitbyte--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "mem_read(store,memaddr,i:u32):byte ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmem_read-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr-ihrefsyntax-intmathitu32--hrefsyntax-bytemathitbyte--hrefembed-errormathiterror" - } - }, - "#-mathrmmem_size-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr--hrefsyntax-intmathitu32": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "mem_size(store,memaddr):u32", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmem_size-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr--hrefsyntax-intmathitu32" - } - }, - "#-mathrmmem_type-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr--hrefsyntax-memtypemathitmemtype": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "mem_type(store,memaddr):memtype", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmem_type-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr--hrefsyntax-memtypemathitmemtype" - } - }, - "#-mathrmmem_write-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr-ihrefsyntax-intmathitu32-hrefsyntax-bytemathitbyte--hrefsyntax-storemathitstore--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "mem_write(store,memaddr,i:u32,byte):store ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmem_write-hrefsyntax-storemathitstore-hrefsyntax-memaddrmathitmemaddr-ihrefsyntax-intmathitu32-hrefsyntax-bytemathitbyte--hrefsyntax-storemathitstore--hrefembed-errormathiterror" - } - }, - "#-mathrmmodule_decode-hrefsyntax-bytemathitbyteast--hrefsyntax-modulemathitmodule--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "module_decode(byte∗):module ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmodule_decode-hrefsyntax-bytemathitbyteast--hrefsyntax-modulemathitmodule--hrefembed-errormathiterror" - } - }, - "#-mathrmmodule_exports-hrefsyntax-modulemathitmodule--hrefsyntax-namemathitname-hrefsyntax-externtypemathitexterntypeast": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "module_exports(module):(name,externtype)∗", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmodule_exports-hrefsyntax-modulemathitmodule--hrefsyntax-namemathitname-hrefsyntax-externtypemathitexterntypeast" - } - }, - "#-mathrmmodule_imports-hrefsyntax-modulemathitmodule--hrefsyntax-namemathitname-hrefsyntax-namemathitname-hrefsyntax-externtypemathitexterntypeast": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "module_imports(module):(name,name,externtype)∗", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmodule_imports-hrefsyntax-modulemathitmodule--hrefsyntax-namemathitname-hrefsyntax-namemathitname-hrefsyntax-externtypemathitexterntypeast" - } - }, - "#-mathrmmodule_instantiate-hrefsyntax-storemathitstore-hrefsyntax-modulemathitmodule-hrefsyntax-externvalmathitexternvalast--hrefsyntax-storemathitstore-hrefsyntax-moduleinstmathitmoduleinst--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "module_instantiate(store,module,externval∗):(store,moduleinst ∣ error)", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmodule_instantiate-hrefsyntax-storemathitstore-hrefsyntax-modulemathitmodule-hrefsyntax-externvalmathitexternvalast--hrefsyntax-storemathitstore-hrefsyntax-moduleinstmathitmoduleinst--hrefembed-errormathiterror" - } - }, - "#-mathrmmodule_parse-hrefsyntax-namemathitcharast--hrefsyntax-modulemathitmodule--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "module_parse(char∗):module ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmodule_parse-hrefsyntax-namemathitcharast--hrefsyntax-modulemathitmodule--hrefembed-errormathiterror" - } - }, - "#-mathrmmodule_validate-hrefsyntax-modulemathitmodule--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "module_validate(module):error?", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmmodule_validate-hrefsyntax-modulemathitmodule--hrefembed-errormathiterror" - } - }, - "#-mathrmstore_init--hrefsyntax-storemathitstore": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "store_init():store", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmstore_init--hrefsyntax-storemathitstore" - } - }, - "#-mathrmtable_alloc-hrefsyntax-storemathitstore-hrefsyntax-tabletypemathittabletype--hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "table_alloc(store,tabletype):(store,tableaddr)", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmtable_alloc-hrefsyntax-storemathitstore-hrefsyntax-tabletypemathittabletype--hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr" - } - }, - "#-mathrmtable_grow-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr-nhrefsyntax-intmathitu32--hrefsyntax-storemathitstore--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "table_grow(store,tableaddr,n:u32):store ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmtable_grow-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr-nhrefsyntax-intmathitu32--hrefsyntax-storemathitstore--hrefembed-errormathiterror" - } - }, - "#-mathrmtable_read-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr-ihrefsyntax-intmathitu32--hrefsyntax-funcaddrmathitfuncaddr--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "table_read(store,tableaddr,i:u32):funcaddr? ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmtable_read-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr-ihrefsyntax-intmathitu32--hrefsyntax-funcaddrmathitfuncaddr--hrefembed-errormathiterror" - } - }, - "#-mathrmtable_size-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr--hrefsyntax-intmathitu32": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "table_size(store,tableaddr):u32", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmtable_size-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr--hrefsyntax-intmathitu32" - } - }, - "#-mathrmtable_type-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr--hrefsyntax-tabletypemathittabletype": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "table_type(store,tableaddr):tabletype", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmtable_type-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr--hrefsyntax-tabletypemathittabletype" - } - }, - "#-mathrmtable_write-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr-ihrefsyntax-intmathitu32-hrefsyntax-funcaddrmathitfuncaddr--hrefsyntax-storemathitstore--hrefembed-errormathiterror": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "table_write(store,tableaddr,i:u32,funcaddr?):store ∣ error", - "url": "https://www.w3.org/TR/wasm-core-1/#-mathrmtable_write-hrefsyntax-storemathitstore-hrefsyntax-tableaddrmathittableaddr-ihrefsyntax-intmathitu32-hrefsyntax-funcaddrmathitfuncaddr--hrefsyntax-storemathitstore--hrefembed-errormathiterror" - } - }, - "#-t_1n-hrefsyntax-functyperightarrow-t_2m": { - "snapshot": { - "number": "3.2.2.1", - "spec": "WebAssembly Core", - "text": "[t1n​]→[t2m​]", - "url": "https://www.w3.org/TR/wasm-core-1/#-t_1n-hrefsyntax-functyperightarrow-t_2m" - } - }, - "#-t_2mathsfhrefsyntax-cvtopmathitcvtopmathsf_t_1mathsf_hrefsyntax-sxmathitsx": { - "snapshot": { - "number": "3.3.1.6", - "spec": "WebAssembly Core", - "text": "t2​.cvtop_t1​_sx?", - "url": "https://www.w3.org/TR/wasm-core-1/#-t_2mathsfhrefsyntax-cvtopmathitcvtopmathsf_t_1mathsf_hrefsyntax-sxmathitsx" - } - }, - "#-t_2mathsfhrefsyntax-cvtopmathitcvtopmathsf_t_1mathsf_hrefsyntax-sxmathitsx%E2%91%A0": { - "snapshot": { - "number": "4.4.1.6", - "spec": "WebAssembly Core", - "text": "t2​.cvtop_t1​_sx?", - "url": "https://www.w3.org/TR/wasm-core-1/#-t_2mathsfhrefsyntax-cvtopmathitcvtopmathsf_t_1mathsf_hrefsyntax-sxmathitsx%E2%91%A0" - } - }, - "#-tmathsfhrefsyntax-binopmathitbinop": { - "snapshot": { - "number": "3.3.1.3", - "spec": "WebAssembly Core", - "text": "t.binop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-binopmathitbinop" - } - }, - "#-tmathsfhrefsyntax-binopmathitbinop%E2%91%A0": { - "snapshot": { - "number": "4.4.1.3", - "spec": "WebAssembly Core", - "text": "t.binop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-binopmathitbinop%E2%91%A0" - } - }, - "#-tmathsfhrefsyntax-instr-memorymathsfloadhrefsyntax-memargmathitmemarg": { - "snapshot": { - "number": "3.3.4.1", - "spec": "WebAssembly Core", - "text": "t.load memarg", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-memorymathsfloadhrefsyntax-memargmathitmemarg" - } - }, - "#-tmathsfhrefsyntax-instr-memorymathsfloadhrefsyntax-memargmathitmemarg-and--tmathsfhrefsyntax-instr-memorymathsfloadnmathsf_hrefsyntax-sxmathitsxhrefsyntax-memargmathitmemarg": { - "snapshot": { - "number": "4.4.4.1", - "spec": "WebAssembly Core", - "text": "t.load memarg and t.loadN_sx memarg", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-memorymathsfloadhrefsyntax-memargmathitmemarg-and--tmathsfhrefsyntax-instr-memorymathsfloadnmathsf_hrefsyntax-sxmathitsxhrefsyntax-memargmathitmemarg" - } - }, - "#-tmathsfhrefsyntax-instr-memorymathsfloadnmathsf_hrefsyntax-sxmathitsxhrefsyntax-memargmathitmemarg": { - "snapshot": { - "number": "3.3.4.2", - "spec": "WebAssembly Core", - "text": "t.loadN_sx memarg", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-memorymathsfloadnmathsf_hrefsyntax-sxmathitsxhrefsyntax-memargmathitmemarg" - } - }, - "#-tmathsfhrefsyntax-instr-memorymathsfstorehrefsyntax-memargmathitmemarg": { - "snapshot": { - "number": "3.3.4.3", - "spec": "WebAssembly Core", - "text": "t.store memarg", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-memorymathsfstorehrefsyntax-memargmathitmemarg" - } - }, - "#-tmathsfhrefsyntax-instr-memorymathsfstorehrefsyntax-memargmathitmemarg-and--tmathsfhrefsyntax-instr-memorymathsfstorenhrefsyntax-memargmathitmemarg": { - "snapshot": { - "number": "4.4.4.2", - "spec": "WebAssembly Core", - "text": "t.store memarg and t.storeN memarg", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-memorymathsfstorehrefsyntax-memargmathitmemarg-and--tmathsfhrefsyntax-instr-memorymathsfstorenhrefsyntax-memargmathitmemarg" - } - }, - "#-tmathsfhrefsyntax-instr-memorymathsfstorenhrefsyntax-memargmathitmemarg": { - "snapshot": { - "number": "3.3.4.4", - "spec": "WebAssembly Core", - "text": "t.storeN memarg", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-memorymathsfstorenhrefsyntax-memargmathitmemarg" - } - }, - "#-tmathsfhrefsyntax-instr-numericmathsfconstc": { - "snapshot": { - "number": "3.3.1.1", - "spec": "WebAssembly Core", - "text": "t.const c", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-numericmathsfconstc" - } - }, - "#-tmathsfhrefsyntax-instr-numericmathsfconstc%E2%91%A0": { - "snapshot": { - "number": "4.4.1.1", - "spec": "WebAssembly Core", - "text": "t.const c", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-instr-numericmathsfconstc%E2%91%A0" - } - }, - "#-tmathsfhrefsyntax-relopmathitrelop": { - "snapshot": { - "number": "3.3.1.5", - "spec": "WebAssembly Core", - "text": "t.relop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-relopmathitrelop" - } - }, - "#-tmathsfhrefsyntax-relopmathitrelop%E2%91%A0": { - "snapshot": { - "number": "4.4.1.5", - "spec": "WebAssembly Core", - "text": "t.relop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-relopmathitrelop%E2%91%A0" - } - }, - "#-tmathsfhrefsyntax-testopmathittestop": { - "snapshot": { - "number": "3.3.1.4", - "spec": "WebAssembly Core", - "text": "t.testop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-testopmathittestop" - } - }, - "#-tmathsfhrefsyntax-testopmathittestop%E2%91%A0": { - "snapshot": { - "number": "4.4.1.4", - "spec": "WebAssembly Core", - "text": "t.testop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-testopmathittestop%E2%91%A0" - } - }, - "#-tmathsfhrefsyntax-unopmathitunop": { - "snapshot": { - "number": "3.3.1.2", - "spec": "WebAssembly Core", - "text": "t.unop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-unopmathitunop" - } - }, - "#-tmathsfhrefsyntax-unopmathitunop%E2%91%A0": { - "snapshot": { - "number": "4.4.1.2", - "spec": "WebAssembly Core", - "text": "t.unop", - "url": "https://www.w3.org/TR/wasm-core-1/#-tmathsfhrefsyntax-unopmathitunop%E2%91%A0" - } - }, - "#a-appendix": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "A Appendix", - "url": "https://www.w3.org/TR/wasm-core-1/#a-appendix" - } - }, - "#a1-embedding": { - "snapshot": { - "number": "A.1", - "spec": "WebAssembly Core", - "text": "Embedding", - "url": "https://www.w3.org/TR/wasm-core-1/#a1-embedding" - } - }, - "#a2-implementation-limitations": { - "snapshot": { - "number": "A.2", - "spec": "WebAssembly Core", - "text": "Implementation Limitations", - "url": "https://www.w3.org/TR/wasm-core-1/#a2-implementation-limitations" - } - }, - "#a3-validation-algorithm": { - "snapshot": { - "number": "A.3", - "spec": "WebAssembly Core", - "text": "Validation Algorithm", - "url": "https://www.w3.org/TR/wasm-core-1/#a3-validation-algorithm" - } - }, - "#a4-custom-sections": { - "snapshot": { - "number": "A.4", - "spec": "WebAssembly Core", - "text": "Custom Sections", - "url": "https://www.w3.org/TR/wasm-core-1/#a4-custom-sections" - } - }, - "#a5-soundness": { - "snapshot": { - "number": "A.5", - "spec": "WebAssembly Core", - "text": "Soundness", - "url": "https://www.w3.org/TR/wasm-core-1/#a5-soundness" - } - }, - "#a6-index-of-types": { - "snapshot": { - "number": "A.6", - "spec": "WebAssembly Core", - "text": "Index of Types", - "url": "https://www.w3.org/TR/wasm-core-1/#a6-index-of-types" - } - }, - "#a7-index-of-instructions": { - "snapshot": { - "number": "A.7", - "spec": "WebAssembly Core", - "text": "Index of Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#a7-index-of-instructions" - } - }, - "#a8-index-of-semantic-rules": { - "snapshot": { - "number": "A.8", - "spec": "WebAssembly Core", - "text": "Index of Semantic Rules", - "url": "https://www.w3.org/TR/wasm-core-1/#a8-index-of-semantic-rules" - } - }, - "#abbreviations": { - "current": { - "number": "6.1.2", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://webassembly.github.io/spec/core/bikeshed/#abbreviations" - } - }, - "#abbreviations%E2%91%A0": { - "snapshot": { - "number": "6.1.2", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0" - } - }, - "#abbreviations%E2%91%A0%E2%91%A0": { - "snapshot": { - "number": "6.6.7.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%91%A0" - } - }, - "#abbreviations%E2%91%A0%E2%91%A1": { - "snapshot": { - "number": "6.6.8.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%91%A1" - } - }, - "#abbreviations%E2%91%A0%E2%91%A2": { - "snapshot": { - "number": "6.6.9.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%91%A2" - } - }, - "#abbreviations%E2%91%A0%E2%91%A3": { - "snapshot": { - "number": "6.6.11.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%91%A3" - } - }, - "#abbreviations%E2%91%A0%E2%91%A4": { - "snapshot": { - "number": "6.6.12.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%91%A4" - } - }, - "#abbreviations%E2%91%A0%E2%91%A5": { - "snapshot": { - "number": "6.6.13.1", + "#abbreviations": { + "current": { + "number": "6.1.2", "spec": "WebAssembly Core", "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%91%A5" - } - }, - "#abbreviations%E2%91%A0%E2%93%AA": { + "url": "https://webassembly.github.io/spec/core/bikeshed/#abbreviations" + }, "snapshot": { - "number": "6.6.6.1", + "number": "6.1.2", "spec": "WebAssembly Core", "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#abbreviations" } }, "#abbreviations%E2%91%A1": { @@ -1597,14 +19,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#abbreviations%E2%91%A1" - } - }, - "#abbreviations%E2%91%A2": { + }, "snapshot": { - "number": "6.4.3.1", + "number": "6.4.5.1", "spec": "WebAssembly Core", "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#abbreviations%E2%91%A1" } }, "#abbreviations%E2%91%A3": { @@ -1613,14 +33,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#abbreviations%E2%91%A3" - } - }, - "#abbreviations%E2%91%A4": { + }, "snapshot": { "number": "6.5.2.1", "spec": "WebAssembly Core", "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#abbreviations%E2%91%A3" } }, "#abbreviations%E2%91%A6": { @@ -1634,23 +52,7 @@ "number": "6.6.3.1", "spec": "WebAssembly Core", "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A6" - } - }, - "#abbreviations%E2%91%A7": { - "snapshot": { - "number": "6.6.4.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A7" - } - }, - "#abbreviations%E2%91%A8": { - "snapshot": { - "number": "6.6.5.1", - "spec": "WebAssembly Core", - "text": "Abbreviations", - "url": "https://www.w3.org/TR/wasm-core-1/#abbreviations%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#abbreviations%E2%91%A6" } }, "#abstract": { @@ -1664,7 +66,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Abstract", - "url": "https://www.w3.org/TR/wasm-core-1/#abstract" + "url": "https://www.w3.org/TR/wasm-core-2/#abstract" } }, "#activation-frames": { @@ -1673,14 +75,12 @@ "spec": "WebAssembly Core", "text": "Activation Frames", "url": "https://webassembly.github.io/spec/core/bikeshed/#activation-frames" - } - }, - "#activations-and-frames%E2%91%A0": { + }, "snapshot": { - "number": "4.2.12.3", + "number": "4.2.14.3", "spec": "WebAssembly Core", - "text": "Activations and Frames", - "url": "https://www.w3.org/TR/wasm-core-1/#activations-and-frames%E2%91%A0" + "text": "Activation Frames", + "url": "https://www.w3.org/TR/wasm-core-2/#activation-frames" } }, "#addresses": { @@ -1689,14 +89,12 @@ "spec": "WebAssembly Core", "text": "Addresses", "url": "https://webassembly.github.io/spec/core/bikeshed/#addresses" - } - }, - "#addresses%E2%91%A0": { + }, "snapshot": { "number": "4.2.4", "spec": "WebAssembly Core", "text": "Addresses", - "url": "https://www.w3.org/TR/wasm-core-1/#addresses%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#addresses" } }, "#administrative-instructions": { @@ -1705,14 +103,12 @@ "spec": "WebAssembly Core", "text": "Administrative Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#administrative-instructions" - } - }, - "#administrative-instructions%E2%91%A0": { + }, "snapshot": { - "number": "4.2.13", + "number": "4.2.15", "spec": "WebAssembly Core", "text": "Administrative Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#administrative-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#administrative-instructions" } }, "#administrative-instructions%E2%91%A1": { @@ -1721,14 +117,12 @@ "spec": "WebAssembly Core", "text": "Administrative Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#administrative-instructions%E2%91%A1" - } - }, - "#administrative-instructions%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Administrative Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#administrative-instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#administrative-instructions%E2%91%A1" } }, "#alloc-module": { @@ -1737,6 +131,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#alloc-module" + }, + "snapshot": { + "number": "4.5.3.10", + "spec": "WebAssembly Core", + "text": "Modules", + "url": "https://www.w3.org/TR/wasm-core-2/#alloc-module" } }, "#allocation": { @@ -1745,14 +145,12 @@ "spec": "WebAssembly Core", "text": "Allocation", "url": "https://webassembly.github.io/spec/core/bikeshed/#allocation" - } - }, - "#allocation%E2%91%A0": { + }, "snapshot": { "number": "4.5.3", "spec": "WebAssembly Core", "text": "Allocation", - "url": "https://www.w3.org/TR/wasm-core-1/#allocation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#allocation" } }, "#appendix": { @@ -1761,6 +159,12 @@ "spec": "WebAssembly Core", "text": "A Appendix", "url": "https://webassembly.github.io/spec/core/bikeshed/#appendix" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "A Appendix", + "url": "https://www.w3.org/TR/wasm-core-2/#appendix" } }, "#auxiliary-notation": { @@ -1769,14 +173,12 @@ "spec": "WebAssembly Core", "text": "Auxiliary Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#auxiliary-notation" - } - }, - "#auxiliary-notation%E2%91%A0": { + }, "snapshot": { "number": "2.1.2", "spec": "WebAssembly Core", "text": "Auxiliary Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#auxiliary-notation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#auxiliary-notation" } }, "#auxiliary-notation%E2%91%A1": { @@ -1785,14 +187,12 @@ "spec": "WebAssembly Core", "text": "Auxiliary Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#auxiliary-notation%E2%91%A1" - } - }, - "#auxiliary-notation%E2%91%A2": { + }, "snapshot": { "number": "5.1.2", "spec": "WebAssembly Core", "text": "Auxiliary Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#auxiliary-notation%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#auxiliary-notation%E2%91%A1" } }, "#binary-format": { @@ -1801,14 +201,12 @@ "spec": "WebAssembly Core", "text": "Binary Format", "url": "https://webassembly.github.io/spec/core/bikeshed/#binary-format" - } - }, - "#binary-format%E2%91%A0": { + }, "snapshot": { "number": "5", "spec": "WebAssembly Core", "text": "Binary Format", - "url": "https://www.w3.org/TR/wasm-core-1/#binary-format%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#binary-format" } }, "#binary-format%E2%91%A1": { @@ -1817,14 +215,12 @@ "spec": "WebAssembly Core", "text": "Binary Format", "url": "https://webassembly.github.io/spec/core/bikeshed/#binary-format%E2%91%A1" - } - }, - "#binary-format%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Binary Format", - "url": "https://www.w3.org/TR/wasm-core-1/#binary-format%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#binary-format%E2%91%A1" } }, "#binary-module": { @@ -1833,6 +229,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#binary-module" + }, + "snapshot": { + "number": "5.5.16", + "spec": "WebAssembly Core", + "text": "Modules", + "url": "https://www.w3.org/TR/wasm-core-2/#binary-module" } }, "#block-contexts": { @@ -1841,14 +243,12 @@ "spec": "WebAssembly Core", "text": "Block Contexts", "url": "https://webassembly.github.io/spec/core/bikeshed/#block-contexts" - } - }, - "#block-contexts%E2%91%A0": { + }, "snapshot": { - "number": "4.2.13.1", + "number": "4.2.15.1", "spec": "WebAssembly Core", "text": "Block Contexts", - "url": "https://www.w3.org/TR/wasm-core-1/#block-contexts%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#block-contexts" } }, "#block-types": { @@ -1857,6 +257,12 @@ "spec": "WebAssembly Core", "text": "Block Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#block-types" + }, + "snapshot": { + "number": "3.2.2", + "spec": "WebAssembly Core", + "text": "Block Types", + "url": "https://www.w3.org/TR/wasm-core-2/#block-types" } }, "#blocks": { @@ -1865,14 +271,12 @@ "spec": "WebAssembly Core", "text": "Blocks", "url": "https://webassembly.github.io/spec/core/bikeshed/#blocks" - } - }, - "#blocks%E2%91%A0": { + }, "snapshot": { - "number": "4.4.6", + "number": "4.4.9", "spec": "WebAssembly Core", "text": "Blocks", - "url": "https://www.w3.org/TR/wasm-core-1/#blocks%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#blocks" } }, "#boolean-interpretation": { @@ -1881,14 +285,12 @@ "spec": "WebAssembly Core", "text": "Boolean Interpretation", "url": "https://webassembly.github.io/spec/core/bikeshed/#boolean-interpretation" - } - }, - "#boolean-interpretation%E2%91%A0": { + }, "snapshot": { "number": "4.3.2.2", "spec": "WebAssembly Core", "text": "Boolean Interpretation", - "url": "https://www.w3.org/TR/wasm-core-1/#boolean-interpretation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#boolean-interpretation" } }, "#bulk-memory-and-table-instructions": { @@ -1897,6 +299,12 @@ "spec": "WebAssembly Core", "text": "Bulk memory and table instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#bulk-memory-and-table-instructions" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Bulk memory and table instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#bulk-memory-and-table-instructions" } }, "#bytes": { @@ -1905,14 +313,12 @@ "spec": "WebAssembly Core", "text": "Bytes", "url": "https://webassembly.github.io/spec/core/bikeshed/#bytes" - } - }, - "#bytes%E2%91%A0": { + }, "snapshot": { "number": "2.2.1", "spec": "WebAssembly Core", "text": "Bytes", - "url": "https://www.w3.org/TR/wasm-core-1/#bytes%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#bytes" } }, "#bytes%E2%91%A1": { @@ -1921,14 +327,12 @@ "spec": "WebAssembly Core", "text": "Bytes", "url": "https://webassembly.github.io/spec/core/bikeshed/#bytes%E2%91%A1" - } - }, - "#bytes%E2%91%A2": { + }, "snapshot": { "number": "5.2.1", "spec": "WebAssembly Core", "text": "Bytes", - "url": "https://www.w3.org/TR/wasm-core-1/#bytes%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#bytes%E2%91%A1" } }, "#change-history": { @@ -1937,6 +341,12 @@ "spec": "WebAssembly Core", "text": "Change History", "url": "https://webassembly.github.io/spec/core/bikeshed/#change-history" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Change History", + "url": "https://www.w3.org/TR/wasm-core-2/#change-history" } }, "#characters": { @@ -1945,14 +355,12 @@ "spec": "WebAssembly Core", "text": "Characters", "url": "https://webassembly.github.io/spec/core/bikeshed/#characters" - } - }, - "#characters%E2%91%A0": { + }, "snapshot": { "number": "6.2.1", "spec": "WebAssembly Core", "text": "Characters", - "url": "https://www.w3.org/TR/wasm-core-1/#characters%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#characters" } }, "#code-section": { @@ -1961,14 +369,12 @@ "spec": "WebAssembly Core", "text": "Code Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#code-section" - } - }, - "#code-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.13", "spec": "WebAssembly Core", "text": "Code Section", - "url": "https://www.w3.org/TR/wasm-core-1/#code-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#code-section" } }, "#comments": { @@ -1977,14 +383,12 @@ "spec": "WebAssembly Core", "text": "Comments", "url": "https://webassembly.github.io/spec/core/bikeshed/#comments" - } - }, - "#comments%E2%91%A0": { + }, "snapshot": { "number": "6.2.4", "spec": "WebAssembly Core", "text": "Comments", - "url": "https://www.w3.org/TR/wasm-core-1/#comments%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#comments" } }, "#concepts": { @@ -1993,14 +397,12 @@ "spec": "WebAssembly Core", "text": "Concepts", "url": "https://webassembly.github.io/spec/core/bikeshed/#concepts" - } - }, - "#concepts%E2%91%A0": { + }, "snapshot": { - "number": "1.3.1", + "number": "1.2.1", "spec": "WebAssembly Core", "text": "Concepts", - "url": "https://www.w3.org/TR/wasm-core-1/#concepts%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#concepts" } }, "#configuration-validity": { @@ -2009,14 +411,12 @@ "spec": "WebAssembly Core", "text": "Configuration Validity", "url": "https://webassembly.github.io/spec/core/bikeshed/#configuration-validity" - } - }, - "#configuration-validity%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Configuration Validity", - "url": "https://www.w3.org/TR/wasm-core-1/#configuration-validity%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#configuration-validity" } }, "#configurations": { @@ -2025,22 +425,12 @@ "spec": "WebAssembly Core", "text": "Configurations", "url": "https://webassembly.github.io/spec/core/bikeshed/#configurations" - } - }, - "#configurations%E2%91%A0": { + }, "snapshot": { - "number": "4.2.13.2", + "number": "4.2.15.2", "spec": "WebAssembly Core", "text": "Configurations", - "url": "https://www.w3.org/TR/wasm-core-1/#configurations%E2%91%A0" - } - }, - "#configurations--st": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Configurations S;T", - "url": "https://www.w3.org/TR/wasm-core-1/#configurations--st" + "url": "https://www.w3.org/TR/wasm-core-2/#configurations" } }, "#configurations-s-t": { @@ -2049,14 +439,12 @@ "spec": "WebAssembly Core", "text": "Configurations S;T", "url": "https://webassembly.github.io/spec/core/bikeshed/#configurations-s-t" - } - }, - "#conformance": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", - "text": "Conformance", - "url": "https://www.w3.org/TR/wasm-core-1/#conformance" + "text": "Configurations S;T", + "url": "https://www.w3.org/TR/wasm-core-2/#configurations-s-t" } }, "#constant-expressions": { @@ -2065,14 +453,12 @@ "spec": "WebAssembly Core", "text": "Constant Expressions", "url": "https://webassembly.github.io/spec/core/bikeshed/#constant-expressions" - } - }, - "#constant-expressions%E2%91%A0": { + }, "snapshot": { - "number": "3.3.7.2", + "number": "3.3.10.2", "spec": "WebAssembly Core", "text": "Constant Expressions", - "url": "https://www.w3.org/TR/wasm-core-1/#constant-expressions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#constant-expressions" } }, "#constantness": { @@ -2081,14 +467,12 @@ "spec": "WebAssembly Core", "text": "Constantness", "url": "https://webassembly.github.io/spec/core/bikeshed/#constantness" - } - }, - "#constantness%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Constantness", - "url": "https://www.w3.org/TR/wasm-core-1/#constantness%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#constantness" } }, "#contexts": { @@ -2097,14 +481,12 @@ "spec": "WebAssembly Core", "text": "Contexts", "url": "https://webassembly.github.io/spec/core/bikeshed/#contexts" - } - }, - "#contexts%E2%91%A0": { + }, "snapshot": { "number": "3.1.1", "spec": "WebAssembly Core", "text": "Contexts", - "url": "https://www.w3.org/TR/wasm-core-1/#contexts%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#contexts" } }, "#contexts%E2%91%A1": { @@ -2113,14 +495,12 @@ "spec": "WebAssembly Core", "text": "Contexts", "url": "https://webassembly.github.io/spec/core/bikeshed/#contexts%E2%91%A1" - } - }, - "#contexts%E2%91%A2": { + }, "snapshot": { "number": "6.1.3", "spec": "WebAssembly Core", "text": "Contexts", - "url": "https://www.w3.org/TR/wasm-core-1/#contexts%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#contexts%E2%91%A1" } }, "#control-instructions": { @@ -2129,14 +509,12 @@ "spec": "WebAssembly Core", "text": "Control Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#control-instructions" - } - }, - "#control-instructions%E2%91%A0": { + }, "snapshot": { - "number": "2.4.5", + "number": "2.4.8", "spec": "WebAssembly Core", "text": "Control Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#control-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#control-instructions" } }, "#control-instructions%E2%91%A1": { @@ -2145,14 +523,12 @@ "spec": "WebAssembly Core", "text": "Control Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#control-instructions%E2%91%A1" - } - }, - "#control-instructions%E2%91%A2": { + }, "snapshot": { - "number": "3.3.5", + "number": "3.3.8", "spec": "WebAssembly Core", "text": "Control Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#control-instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#control-instructions%E2%91%A1" } }, "#control-instructions%E2%91%A3": { @@ -2161,14 +537,12 @@ "spec": "WebAssembly Core", "text": "Control Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#control-instructions%E2%91%A3" - } - }, - "#control-instructions%E2%91%A4": { + }, "snapshot": { - "number": "4.4.5", + "number": "4.4.8", "spec": "WebAssembly Core", "text": "Control Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#control-instructions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#control-instructions%E2%91%A3" } }, "#control-instructions%E2%91%A5": { @@ -2177,14 +551,12 @@ "spec": "WebAssembly Core", "text": "Control Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#control-instructions%E2%91%A5" - } - }, - "#control-instructions%E2%91%A6": { + }, "snapshot": { "number": "5.4.1", "spec": "WebAssembly Core", "text": "Control Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#control-instructions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#control-instructions%E2%91%A5" } }, "#control-instructions%E2%91%A7": { @@ -2193,14 +565,12 @@ "spec": "WebAssembly Core", "text": "Control Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#control-instructions%E2%91%A7" - } - }, - "#control-instructions%E2%91%A8": { + }, "snapshot": { "number": "6.5.2", "spec": "WebAssembly Core", "text": "Control Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#control-instructions%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#control-instructions%E2%91%A7" } }, "#convention": { @@ -2209,14 +579,12 @@ "spec": "WebAssembly Core", "text": "Convention", "url": "https://webassembly.github.io/spec/core/bikeshed/#convention" - } - }, - "#convention%E2%91%A0": { + }, "snapshot": { - "number": "2.2.4.1", + "number": "2.2.5.1", "spec": "WebAssembly Core", "text": "Convention", - "url": "https://www.w3.org/TR/wasm-core-1/#convention%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#convention" } }, "#convention%E2%91%A1": { @@ -2225,14 +593,12 @@ "spec": "WebAssembly Core", "text": "Convention", "url": "https://webassembly.github.io/spec/core/bikeshed/#convention%E2%91%A1" - } - }, - "#convention%E2%91%A2": { + }, "snapshot": { - "number": "4.2.3.1", + "number": "4.2.1.1", "spec": "WebAssembly Core", "text": "Convention", - "url": "https://www.w3.org/TR/wasm-core-1/#convention%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#convention%E2%91%A1" } }, "#conventions": { @@ -2241,14 +607,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions" - } - }, - "#conventions%E2%91%A0": { + }, "snapshot": { "number": "2.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions" } }, "#conventions%E2%91%A0%E2%91%A0": { @@ -2257,22 +621,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A0%E2%91%A0" - } - }, - "#conventions%E2%91%A0%E2%91%A1": { - "snapshot": { - "number": "2.5.1.1", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0%E2%91%A1" - } - }, - "#conventions%E2%91%A0%E2%91%A2": { + }, "snapshot": { - "number": "2.5.10.1", + "number": "2.4.1.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A0%E2%91%A0" } }, "#conventions%E2%91%A0%E2%91%A3": { @@ -2281,14 +635,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A0%E2%91%A3" - } - }, - "#conventions%E2%91%A0%E2%91%A4": { + }, "snapshot": { - "number": "3.1", + "number": "2.5.1.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A0%E2%91%A3" } }, "#conventions%E2%91%A0%E2%91%A6": { @@ -2299,10 +651,10 @@ "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A0%E2%91%A6" }, "snapshot": { - "number": "4.1", + "number": "3.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A0%E2%91%A6" } }, "#conventions%E2%91%A0%E2%91%A8": { @@ -2313,18 +665,10 @@ "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A0%E2%91%A8" }, "snapshot": { - "number": "4.2.11.1", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0%E2%91%A8" - } - }, - "#conventions%E2%91%A0%E2%93%AA": { - "snapshot": { - "number": "2.4.1.1", + "number": "4.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A0%E2%91%A8" } }, "#conventions%E2%91%A1": { @@ -2333,6 +677,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A1" + }, + "snapshot": { + "number": "2.2.1.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A1" } }, "#conventions%E2%91%A1%E2%91%A0": { @@ -2341,14 +691,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A1%E2%91%A0" - } - }, - "#conventions%E2%91%A1%E2%91%A1": { + }, "snapshot": { - "number": "5.1", + "number": "4.2.13.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A1%E2%91%A1" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A1%E2%91%A0" } }, "#conventions%E2%91%A1%E2%91%A3": { @@ -2357,20 +705,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A1%E2%91%A3" - }, - "snapshot": { - "number": "6.1", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A1%E2%91%A3" - } - }, - "#conventions%E2%91%A1%E2%91%A4": { + }, "snapshot": { - "number": "6.1.3.1", + "number": "5.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A1%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A1%E2%91%A3" } }, "#conventions%E2%91%A1%E2%91%A5": { @@ -2379,14 +719,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A1%E2%91%A5" - } - }, - "#conventions%E2%91%A1%E2%91%A6": { + }, "snapshot": { - "number": "6.3.5.1", + "number": "6.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A1%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A1%E2%91%A5" } }, "#conventions%E2%91%A1%E2%91%A8": { @@ -2395,38 +733,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A1%E2%91%A8" - } - }, - "#conventions%E2%91%A1%E2%93%AA": { - "snapshot": { - "number": "4.2.12.4", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A1%E2%93%AA" - } - }, - "#conventions%E2%91%A2": { - "snapshot": { - "number": "2.2.1.1", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A2" - } - }, - "#conventions%E2%91%A3": { - "snapshot": { - "number": "2.2.2.1", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A3" - } - }, - "#conventions%E2%91%A4": { + }, "snapshot": { - "number": "2.2.3.1", + "number": "6.3.5.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A1%E2%91%A8" } }, "#conventions%E2%91%A5": { @@ -2435,22 +747,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conventions%E2%91%A5" - } - }, - "#conventions%E2%91%A6": { + }, "snapshot": { "number": "2.3.1.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A6" - } - }, - "#conventions%E2%91%A7": { - "snapshot": { - "number": "2.3.8.1", - "spec": "WebAssembly Core", - "text": "Conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#conventions%E2%91%A7" + "url": "https://www.w3.org/TR/wasm-core-2/#conventions%E2%91%A5" } }, "#conversions": { @@ -2459,14 +761,12 @@ "spec": "WebAssembly Core", "text": "Conversions", "url": "https://webassembly.github.io/spec/core/bikeshed/#conversions" - } - }, - "#conversions%E2%91%A0": { + }, "snapshot": { "number": "4.3.4", "spec": "WebAssembly Core", "text": "Conversions", - "url": "https://www.w3.org/TR/wasm-core-1/#conversions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#conversions" } }, "#custom-section": { @@ -2475,14 +775,12 @@ "spec": "WebAssembly Core", "text": "Custom Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#custom-section" - } - }, - "#custom-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.3", "spec": "WebAssembly Core", "text": "Custom Section", - "url": "https://www.w3.org/TR/wasm-core-1/#custom-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#custom-section" } }, "#custom-sections": { @@ -2491,6 +789,12 @@ "spec": "WebAssembly Core", "text": "Custom Sections", "url": "https://webassembly.github.io/spec/core/bikeshed/#custom-sections" + }, + "snapshot": { + "number": "A.4", + "spec": "WebAssembly Core", + "text": "Custom Sections", + "url": "https://www.w3.org/TR/wasm-core-2/#custom-sections" } }, "#data-count-section": { @@ -2499,6 +803,12 @@ "spec": "WebAssembly Core", "text": "Data Count Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-count-section" + }, + "snapshot": { + "number": "5.5.15", + "spec": "WebAssembly Core", + "text": "Data Count Section", + "url": "https://www.w3.org/TR/wasm-core-2/#data-count-section" } }, "#data-instance-xref-exec-runtime-syntax-datainst-mathit-datainst": { @@ -2507,6 +817,12 @@ "spec": "WebAssembly Core", "text": "Data Instance datainst", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-instance-xref-exec-runtime-syntax-datainst-mathit-datainst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Data Instance datainst", + "url": "https://www.w3.org/TR/wasm-core-2/#data-instance-xref-exec-runtime-syntax-datainst-mathit-datainst" } }, "#data-instances": { @@ -2515,6 +831,12 @@ "spec": "WebAssembly Core", "text": "Data Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-instances" + }, + "snapshot": { + "number": "4.2.11", + "spec": "WebAssembly Core", + "text": "Data Instances", + "url": "https://www.w3.org/TR/wasm-core-2/#data-instances" } }, "#data-instances-xref-exec-runtime-syntax-datainst-mathsf-data-b-ast": { @@ -2523,6 +845,12 @@ "spec": "WebAssembly Core", "text": "Data Instances {data b∗}", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-instances-xref-exec-runtime-syntax-datainst-mathsf-data-b-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Data Instances {data b∗}", + "url": "https://www.w3.org/TR/wasm-core-2/#data-instances-xref-exec-runtime-syntax-datainst-mathsf-data-b-ast" } }, "#data-section": { @@ -2531,14 +859,12 @@ "spec": "WebAssembly Core", "text": "Data Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-section" - } - }, - "#data-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.14", "spec": "WebAssembly Core", "text": "Data Section", - "url": "https://www.w3.org/TR/wasm-core-1/#data-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#data-section" } }, "#data-segments": { @@ -2547,14 +873,12 @@ "spec": "WebAssembly Core", "text": "Data Segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-segments" - } - }, - "#data-segments%E2%91%A0": { + }, "snapshot": { "number": "2.5.8", "spec": "WebAssembly Core", "text": "Data Segments", - "url": "https://www.w3.org/TR/wasm-core-1/#data-segments%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#data-segments" } }, "#data-segments%E2%91%A1": { @@ -2563,14 +887,12 @@ "spec": "WebAssembly Core", "text": "Data Segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-segments%E2%91%A1" - } - }, - "#data-segments%E2%91%A2": { + }, "snapshot": { "number": "3.4.6", "spec": "WebAssembly Core", "text": "Data Segments", - "url": "https://www.w3.org/TR/wasm-core-1/#data-segments%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#data-segments%E2%91%A1" } }, "#data-segments%E2%91%A3": { @@ -2579,14 +901,12 @@ "spec": "WebAssembly Core", "text": "Data segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-segments%E2%91%A3" - } - }, - "#data-segments%E2%91%A4": { + }, "snapshot": { - "number": "6.6.12", + "number": "4.5.3.7", "spec": "WebAssembly Core", - "text": "Data Segments", - "url": "https://www.w3.org/TR/wasm-core-1/#data-segments%E2%91%A4" + "text": "Data segments", + "url": "https://www.w3.org/TR/wasm-core-2/#data-segments%E2%91%A3" } }, "#data-segments%E2%91%A5": { @@ -2595,6 +915,12 @@ "spec": "WebAssembly Core", "text": "Data Segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-segments%E2%91%A5" + }, + "snapshot": { + "number": "6.6.12", + "spec": "WebAssembly Core", + "text": "Data Segments", + "url": "https://www.w3.org/TR/wasm-core-2/#data-segments%E2%91%A5" } }, "#data-structures": { @@ -2603,14 +929,12 @@ "spec": "WebAssembly Core", "text": "Data Structures", "url": "https://webassembly.github.io/spec/core/bikeshed/#data-structures" - } - }, - "#data-structures%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Data Structures", - "url": "https://www.w3.org/TR/wasm-core-1/#data-structures%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#data-structures" } }, "#dependencies": { @@ -2619,14 +943,12 @@ "spec": "WebAssembly Core", "text": "Dependencies", "url": "https://webassembly.github.io/spec/core/bikeshed/#dependencies" - } - }, - "#dependencies%E2%91%A0": { + }, "snapshot": { - "number": "1.2.1", + "number": "1.1.4", "spec": "WebAssembly Core", "text": "Dependencies", - "url": "https://www.w3.org/TR/wasm-core-1/#dependencies%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#dependencies" } }, "#design-goals": { @@ -2635,22 +957,12 @@ "spec": "WebAssembly Core", "text": "Design Goals", "url": "https://webassembly.github.io/spec/core/bikeshed/#design-goals" - } - }, - "#design-goals%E2%91%A0": { + }, "snapshot": { "number": "1.1.1", "spec": "WebAssembly Core", "text": "Design Goals", - "url": "https://www.w3.org/TR/wasm-core-1/#design-goals%E2%91%A0" - } - }, - "#document-conventions": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Document conventions", - "url": "https://www.w3.org/TR/wasm-core-1/#document-conventions" + "url": "https://www.w3.org/TR/wasm-core-2/#design-goals" } }, "#element-instance-xref-exec-runtime-syntax-eleminst-mathit-eleminst": { @@ -2659,6 +971,12 @@ "spec": "WebAssembly Core", "text": "Element Instance eleminst", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-instance-xref-exec-runtime-syntax-eleminst-mathit-eleminst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Element Instance eleminst", + "url": "https://www.w3.org/TR/wasm-core-2/#element-instance-xref-exec-runtime-syntax-eleminst-mathit-eleminst" } }, "#element-instances": { @@ -2667,14 +985,26 @@ "spec": "WebAssembly Core", "text": "Element Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-instances" + }, + "snapshot": { + "number": "4.2.10", + "spec": "WebAssembly Core", + "text": "Element Instances", + "url": "https://www.w3.org/TR/wasm-core-2/#element-instances" } }, - "#element-instances-xref-exec-runtime-syntax-eleminst-mathsf-elem-mathit-fa-ast": { + "#element-instances-xref-exec-runtime-syntax-eleminst-mathsf-type-t-xref-exec-runtime-syntax-eleminst-mathsf-elem-xref-exec-runtime-syntax-ref-mathit-ref-ast": { "current": { "number": "", "spec": "WebAssembly Core", - "text": "Element Instances {elem fa∗}", - "url": "https://webassembly.github.io/spec/core/bikeshed/#element-instances-xref-exec-runtime-syntax-eleminst-mathsf-elem-mathit-fa-ast" + "text": "Element Instances {type t,elem ref∗}", + "url": "https://webassembly.github.io/spec/core/bikeshed/#element-instances-xref-exec-runtime-syntax-eleminst-mathsf-type-t-xref-exec-runtime-syntax-eleminst-mathsf-elem-xref-exec-runtime-syntax-ref-mathit-ref-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Element Instances {type t,elem ref∗}", + "url": "https://www.w3.org/TR/wasm-core-2/#element-instances-xref-exec-runtime-syntax-eleminst-mathsf-type-t-xref-exec-runtime-syntax-eleminst-mathsf-elem-xref-exec-runtime-syntax-ref-mathit-ref-ast" } }, "#element-section": { @@ -2683,14 +1013,12 @@ "spec": "WebAssembly Core", "text": "Element Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-section" - } - }, - "#element-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.12", "spec": "WebAssembly Core", "text": "Element Section", - "url": "https://www.w3.org/TR/wasm-core-1/#element-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#element-section" } }, "#element-segments": { @@ -2699,14 +1027,12 @@ "spec": "WebAssembly Core", "text": "Element Segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-segments" - } - }, - "#element-segments%E2%91%A0": { + }, "snapshot": { "number": "2.5.7", "spec": "WebAssembly Core", "text": "Element Segments", - "url": "https://www.w3.org/TR/wasm-core-1/#element-segments%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#element-segments" } }, "#element-segments%E2%91%A1": { @@ -2715,14 +1041,12 @@ "spec": "WebAssembly Core", "text": "Element Segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-segments%E2%91%A1" - } - }, - "#element-segments%E2%91%A2": { + }, "snapshot": { "number": "3.4.5", "spec": "WebAssembly Core", "text": "Element Segments", - "url": "https://www.w3.org/TR/wasm-core-1/#element-segments%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#element-segments%E2%91%A1" } }, "#element-segments%E2%91%A3": { @@ -2731,14 +1055,12 @@ "spec": "WebAssembly Core", "text": "Element segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-segments%E2%91%A3" - } - }, - "#element-segments%E2%91%A4": { + }, "snapshot": { - "number": "6.6.11", + "number": "4.5.3.6", "spec": "WebAssembly Core", - "text": "Element Segments", - "url": "https://www.w3.org/TR/wasm-core-1/#element-segments%E2%91%A4" + "text": "Element segments", + "url": "https://www.w3.org/TR/wasm-core-2/#element-segments%E2%91%A3" } }, "#element-segments%E2%91%A5": { @@ -2747,6 +1069,12 @@ "spec": "WebAssembly Core", "text": "Element Segments", "url": "https://webassembly.github.io/spec/core/bikeshed/#element-segments%E2%91%A5" + }, + "snapshot": { + "number": "6.6.11", + "spec": "WebAssembly Core", + "text": "Element Segments", + "url": "https://www.w3.org/TR/wasm-core-2/#element-segments%E2%91%A5" } }, "#embedding": { @@ -2755,14 +1083,12 @@ "spec": "WebAssembly Core", "text": "Embedding", "url": "https://webassembly.github.io/spec/core/bikeshed/#embedding" - } - }, - "#empty-instruction-sequence--epsilon": { + }, "snapshot": { - "number": "3.3.6.1", + "number": "A.1", "spec": "WebAssembly Core", - "text": "Empty Instruction Sequence: ϵ", - "url": "https://www.w3.org/TR/wasm-core-1/#empty-instruction-sequence--epsilon" + "text": "Embedding", + "url": "https://www.w3.org/TR/wasm-core-2/#embedding" } }, "#empty-instruction-sequence-epsilon": { @@ -2771,14 +1097,12 @@ "spec": "WebAssembly Core", "text": "Empty Instruction Sequence: ϵ", "url": "https://webassembly.github.io/spec/core/bikeshed/#empty-instruction-sequence-epsilon" - } - }, - "#entering--hrefsyntax-instrmathitinstrast-with-label--l": { + }, "snapshot": { - "number": "4.4.6.1", + "number": "3.3.9.1", "spec": "WebAssembly Core", - "text": "Entering instr∗ with label L", - "url": "https://www.w3.org/TR/wasm-core-1/#entering--hrefsyntax-instrmathitinstrast-with-label--l" + "text": "Empty Instruction Sequence: ϵ", + "url": "https://www.w3.org/TR/wasm-core-2/#empty-instruction-sequence-epsilon" } }, "#entering-xref-syntax-instructions-syntax-instr-mathit-instr-ast-with-label-l": { @@ -2787,6 +1111,12 @@ "spec": "WebAssembly Core", "text": "Entering instr∗ with label L", "url": "https://webassembly.github.io/spec/core/bikeshed/#entering-xref-syntax-instructions-syntax-instr-mathit-instr-ast-with-label-l" + }, + "snapshot": { + "number": "4.4.9.1", + "spec": "WebAssembly Core", + "text": "Entering instr∗ with label L", + "url": "https://www.w3.org/TR/wasm-core-2/#entering-xref-syntax-instructions-syntax-instr-mathit-instr-ast-with-label-l" } }, "#errors": { @@ -2795,14 +1125,12 @@ "spec": "WebAssembly Core", "text": "Errors", "url": "https://webassembly.github.io/spec/core/bikeshed/#errors" - } - }, - "#errors%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Errors", - "url": "https://www.w3.org/TR/wasm-core-1/#errors%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#errors" } }, "#evaluation-contexts": { @@ -2811,14 +1139,12 @@ "spec": "WebAssembly Core", "text": "Evaluation Contexts", "url": "https://webassembly.github.io/spec/core/bikeshed/#evaluation-contexts" - } - }, - "#evaluation-contexts%E2%91%A0": { + }, "snapshot": { - "number": "4.2.13.3", + "number": "4.2.15.3", "spec": "WebAssembly Core", "text": "Evaluation Contexts", - "url": "https://www.w3.org/TR/wasm-core-1/#evaluation-contexts%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#evaluation-contexts" } }, "#exec-expand": { @@ -2827,6 +1153,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#exec-expand" + }, + "snapshot": { + "number": "4.2.14.4", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#exec-expand" } }, "#execution%E2%91%A0": { @@ -2835,14 +1167,12 @@ "spec": "WebAssembly Core", "text": "Execution", "url": "https://webassembly.github.io/spec/core/bikeshed/#execution%E2%91%A0" - } - }, - "#execution%E2%91%A1": { + }, "snapshot": { "number": "4", "spec": "WebAssembly Core", "text": "Execution", - "url": "https://www.w3.org/TR/wasm-core-1/#execution%E2%91%A1" + "url": "https://www.w3.org/TR/wasm-core-2/#execution%E2%91%A0" } }, "#execution%E2%91%A2": { @@ -2851,14 +1181,12 @@ "spec": "WebAssembly Core", "text": "Execution", "url": "https://webassembly.github.io/spec/core/bikeshed/#execution%E2%91%A2" - } - }, - "#execution%E2%91%A3": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Execution", - "url": "https://www.w3.org/TR/wasm-core-1/#execution%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#execution%E2%91%A2" } }, "#execution%E2%91%A4": { @@ -2867,22 +1195,12 @@ "spec": "WebAssembly Core", "text": "Execution", "url": "https://webassembly.github.io/spec/core/bikeshed/#execution%E2%91%A4" - } - }, - "#execution%E2%91%A5": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Execution", - "url": "https://www.w3.org/TR/wasm-core-1/#execution%E2%91%A5" - } - }, - "#exiting--hrefsyntax-instrmathitinstrast-with-label--l": { - "snapshot": { - "number": "4.4.6.2", - "spec": "WebAssembly Core", - "text": "Exiting instr∗ with label L", - "url": "https://www.w3.org/TR/wasm-core-1/#exiting--hrefsyntax-instrmathitinstrast-with-label--l" + "url": "https://www.w3.org/TR/wasm-core-2/#execution%E2%91%A4" } }, "#exiting-xref-syntax-instructions-syntax-instr-mathit-instr-ast-with-label-l": { @@ -2891,6 +1209,12 @@ "spec": "WebAssembly Core", "text": "Exiting instr∗ with label L", "url": "https://webassembly.github.io/spec/core/bikeshed/#exiting-xref-syntax-instructions-syntax-instr-mathit-instr-ast-with-label-l" + }, + "snapshot": { + "number": "4.4.9.2", + "spec": "WebAssembly Core", + "text": "Exiting instr∗ with label L", + "url": "https://www.w3.org/TR/wasm-core-2/#exiting-xref-syntax-instructions-syntax-instr-mathit-instr-ast-with-label-l" } }, "#export-instances": { @@ -2899,22 +1223,12 @@ "spec": "WebAssembly Core", "text": "Export Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#export-instances" - } - }, - "#export-instances%E2%91%A0": { + }, "snapshot": { - "number": "4.2.10", + "number": "4.2.12", "spec": "WebAssembly Core", "text": "Export Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#export-instances%E2%91%A0" - } - }, - "#export-instances---hrefsyntax-exportinstmathsfnamehrefsyntax-namemathitname-hrefsyntax-exportinstmathsfvaluehrefsyntax-externvalmathitexternval": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Export Instances {name name,value externval}", - "url": "https://www.w3.org/TR/wasm-core-1/#export-instances---hrefsyntax-exportinstmathsfnamehrefsyntax-namemathitname-hrefsyntax-exportinstmathsfvaluehrefsyntax-externvalmathitexternval" + "url": "https://www.w3.org/TR/wasm-core-2/#export-instances" } }, "#export-instances-xref-exec-runtime-syntax-exportinst-mathsf-name-xref-syntax-values-syntax-name-mathit-name-xref-exec-runtime-syntax-exportinst-mathsf-value-xref-exec-runtime-syntax-externval-mathit-externval": { @@ -2923,6 +1237,12 @@ "spec": "WebAssembly Core", "text": "Export Instances {name name,value externval}", "url": "https://webassembly.github.io/spec/core/bikeshed/#export-instances-xref-exec-runtime-syntax-exportinst-mathsf-name-xref-syntax-values-syntax-name-mathit-name-xref-exec-runtime-syntax-exportinst-mathsf-value-xref-exec-runtime-syntax-externval-mathit-externval" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Export Instances {name name,value externval}", + "url": "https://www.w3.org/TR/wasm-core-2/#export-instances-xref-exec-runtime-syntax-exportinst-mathsf-name-xref-syntax-values-syntax-name-mathit-name-xref-exec-runtime-syntax-exportinst-mathsf-value-xref-exec-runtime-syntax-externval-mathit-externval" } }, "#export-section": { @@ -2931,14 +1251,12 @@ "spec": "WebAssembly Core", "text": "Export Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#export-section" - } - }, - "#export-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.10", "spec": "WebAssembly Core", "text": "Export Section", - "url": "https://www.w3.org/TR/wasm-core-1/#export-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#export-section" } }, "#exports": { @@ -2947,14 +1265,12 @@ "spec": "WebAssembly Core", "text": "Exports", "url": "https://webassembly.github.io/spec/core/bikeshed/#exports" - } - }, - "#exports%E2%91%A0": { + }, "snapshot": { "number": "2.5.10", "spec": "WebAssembly Core", "text": "Exports", - "url": "https://www.w3.org/TR/wasm-core-1/#exports%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#exports" } }, "#exports%E2%91%A1": { @@ -2963,14 +1279,12 @@ "spec": "WebAssembly Core", "text": "Exports", "url": "https://webassembly.github.io/spec/core/bikeshed/#exports%E2%91%A1" - } - }, - "#exports%E2%91%A2": { + }, "snapshot": { "number": "3.4.8", "spec": "WebAssembly Core", "text": "Exports", - "url": "https://www.w3.org/TR/wasm-core-1/#exports%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#exports%E2%91%A1" } }, "#exports%E2%91%A3": { @@ -2979,14 +1293,12 @@ "spec": "WebAssembly Core", "text": "Exports", "url": "https://webassembly.github.io/spec/core/bikeshed/#exports%E2%91%A3" - } - }, - "#exports%E2%91%A4": { + }, "snapshot": { "number": "6.6.9", "spec": "WebAssembly Core", "text": "Exports", - "url": "https://www.w3.org/TR/wasm-core-1/#exports%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#exports%E2%91%A3" } }, "#expressions": { @@ -2995,14 +1307,12 @@ "spec": "WebAssembly Core", "text": "Expressions", "url": "https://webassembly.github.io/spec/core/bikeshed/#expressions" - } - }, - "#expressions%E2%91%A0": { + }, "snapshot": { - "number": "2.4.6", + "number": "2.4.9", "spec": "WebAssembly Core", "text": "Expressions", - "url": "https://www.w3.org/TR/wasm-core-1/#expressions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#expressions" } }, "#expressions%E2%91%A1": { @@ -3011,14 +1321,12 @@ "spec": "WebAssembly Core", "text": "Expressions", "url": "https://webassembly.github.io/spec/core/bikeshed/#expressions%E2%91%A1" - } - }, - "#expressions%E2%91%A2": { + }, "snapshot": { - "number": "3.3.7", + "number": "3.3.10", "spec": "WebAssembly Core", "text": "Expressions", - "url": "https://www.w3.org/TR/wasm-core-1/#expressions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#expressions%E2%91%A1" } }, "#expressions%E2%91%A3": { @@ -3027,14 +1335,12 @@ "spec": "WebAssembly Core", "text": "Expressions", "url": "https://webassembly.github.io/spec/core/bikeshed/#expressions%E2%91%A3" - } - }, - "#expressions%E2%91%A4": { + }, "snapshot": { - "number": "4.4.8", + "number": "4.4.11", "spec": "WebAssembly Core", "text": "Expressions", - "url": "https://www.w3.org/TR/wasm-core-1/#expressions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#expressions%E2%91%A3" } }, "#expressions%E2%91%A5": { @@ -3043,14 +1349,12 @@ "spec": "WebAssembly Core", "text": "Expressions", "url": "https://webassembly.github.io/spec/core/bikeshed/#expressions%E2%91%A5" - } - }, - "#expressions%E2%91%A6": { + }, "snapshot": { - "number": "5.4.6", + "number": "5.4.9", "spec": "WebAssembly Core", "text": "Expressions", - "url": "https://www.w3.org/TR/wasm-core-1/#expressions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#expressions%E2%91%A5" } }, "#expressions%E2%91%A7": { @@ -3059,14 +1363,12 @@ "spec": "WebAssembly Core", "text": "Expressions", "url": "https://webassembly.github.io/spec/core/bikeshed/#expressions%E2%91%A7" - } - }, - "#expressions%E2%91%A8": { + }, "snapshot": { - "number": "6.5.8", + "number": "6.5.11", "spec": "WebAssembly Core", "text": "Expressions", - "url": "https://www.w3.org/TR/wasm-core-1/#expressions%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#expressions%E2%91%A7" } }, "#extend-store": { @@ -3075,6 +1377,12 @@ "spec": "WebAssembly Core", "text": "Store S", "url": "https://webassembly.github.io/spec/core/bikeshed/#extend-store" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Store S", + "url": "https://www.w3.org/TR/wasm-core-2/#extend-store" } }, "#external-references-xref-exec-runtime-syntax-ref-extern-mathsf-ref-extern-a": { @@ -3083,6 +1391,12 @@ "spec": "WebAssembly Core", "text": "External References ref.extern a", "url": "https://webassembly.github.io/spec/core/bikeshed/#external-references-xref-exec-runtime-syntax-ref-extern-mathsf-ref-extern-a" + }, + "snapshot": { + "number": "4.5.2.4", + "spec": "WebAssembly Core", + "text": "External References ref.extern a", + "url": "https://www.w3.org/TR/wasm-core-2/#external-references-xref-exec-runtime-syntax-ref-extern-mathsf-ref-extern-a" } }, "#external-types": { @@ -3091,14 +1405,12 @@ "spec": "WebAssembly Core", "text": "External Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#external-types" - } - }, - "#external-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.8", + "number": "2.3.11", "spec": "WebAssembly Core", "text": "External Types", - "url": "https://www.w3.org/TR/wasm-core-1/#external-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#external-types" } }, "#external-types%E2%91%A1": { @@ -3107,14 +1419,12 @@ "spec": "WebAssembly Core", "text": "External Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#external-types%E2%91%A1" - } - }, - "#external-types%E2%91%A2": { + }, "snapshot": { - "number": "3.2.6", + "number": "3.2.7", "spec": "WebAssembly Core", "text": "External Types", - "url": "https://www.w3.org/TR/wasm-core-1/#external-types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#external-types%E2%91%A1" } }, "#external-typing": { @@ -3123,14 +1433,12 @@ "spec": "WebAssembly Core", "text": "External Typing", "url": "https://webassembly.github.io/spec/core/bikeshed/#external-typing" - } - }, - "#external-typing%E2%91%A0": { + }, "snapshot": { "number": "4.5.1", "spec": "WebAssembly Core", "text": "External Typing", - "url": "https://www.w3.org/TR/wasm-core-1/#external-typing%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#external-typing" } }, "#external-values": { @@ -3139,14 +1447,12 @@ "spec": "WebAssembly Core", "text": "External Values", "url": "https://webassembly.github.io/spec/core/bikeshed/#external-values" - } - }, - "#external-values%E2%91%A0": { + }, "snapshot": { - "number": "4.2.11", + "number": "4.2.13", "spec": "WebAssembly Core", "text": "External Values", - "url": "https://www.w3.org/TR/wasm-core-1/#external-values%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#external-values" } }, "#floating-point": { @@ -3155,14 +1461,12 @@ "spec": "WebAssembly Core", "text": "Floating-Point", "url": "https://webassembly.github.io/spec/core/bikeshed/#floating-point" - } - }, - "#floating-point%E2%91%A0": { + }, "snapshot": { "number": "2.2.3", "spec": "WebAssembly Core", "text": "Floating-Point", - "url": "https://www.w3.org/TR/wasm-core-1/#floating-point%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#floating-point" } }, "#floating-point%E2%91%A1": { @@ -3171,14 +1475,12 @@ "spec": "WebAssembly Core", "text": "Floating-Point", "url": "https://webassembly.github.io/spec/core/bikeshed/#floating-point%E2%91%A1" - } - }, - "#floating-point%E2%91%A2": { + }, "snapshot": { "number": "4.3.1.2", "spec": "WebAssembly Core", "text": "Floating-Point", - "url": "https://www.w3.org/TR/wasm-core-1/#floating-point%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#floating-point%E2%91%A1" } }, "#floating-point%E2%91%A3": { @@ -3187,14 +1489,12 @@ "spec": "WebAssembly Core", "text": "Floating-Point", "url": "https://webassembly.github.io/spec/core/bikeshed/#floating-point%E2%91%A3" - } - }, - "#floating-point%E2%91%A4": { + }, "snapshot": { "number": "5.2.3", "spec": "WebAssembly Core", "text": "Floating-Point", - "url": "https://www.w3.org/TR/wasm-core-1/#floating-point%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#floating-point%E2%91%A3" } }, "#floating-point%E2%91%A5": { @@ -3203,14 +1503,12 @@ "spec": "WebAssembly Core", "text": "Floating-Point", "url": "https://webassembly.github.io/spec/core/bikeshed/#floating-point%E2%91%A5" - } - }, - "#floating-point%E2%91%A6": { + }, "snapshot": { "number": "6.3.2", "spec": "WebAssembly Core", "text": "Floating-Point", - "url": "https://www.w3.org/TR/wasm-core-1/#floating-point%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#floating-point%E2%91%A5" } }, "#floating-point-operations": { @@ -3219,14 +1517,12 @@ "spec": "WebAssembly Core", "text": "Floating-Point Operations", "url": "https://webassembly.github.io/spec/core/bikeshed/#floating-point-operations" - } - }, - "#floating-point-operations%E2%91%A0": { + }, "snapshot": { "number": "4.3.3", "spec": "WebAssembly Core", "text": "Floating-Point Operations", - "url": "https://www.w3.org/TR/wasm-core-1/#floating-point-operations%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#floating-point-operations" } }, "#folded-instructions": { @@ -3235,14 +1531,12 @@ "spec": "WebAssembly Core", "text": "Folded Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#folded-instructions" - } - }, - "#folded-instructions%E2%91%A0": { + }, "snapshot": { - "number": "6.5.7", + "number": "6.5.10", "spec": "WebAssembly Core", "text": "Folded Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#folded-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#folded-instructions" } }, "#formal-notation": { @@ -3251,14 +1545,12 @@ "spec": "WebAssembly Core", "text": "Formal Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#formal-notation" - } - }, - "#formal-notation%E2%91%A0": { + }, "snapshot": { "number": "3.1.3", "spec": "WebAssembly Core", "text": "Formal Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#formal-notation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#formal-notation" } }, "#formal-notation%E2%91%A1": { @@ -3267,22 +1559,12 @@ "spec": "WebAssembly Core", "text": "Formal Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#formal-notation%E2%91%A1" - } - }, - "#formal-notation%E2%91%A2": { + }, "snapshot": { "number": "4.1.2", "spec": "WebAssembly Core", "text": "Formal Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#formal-notation%E2%91%A2" - } - }, - "#frames--hrefsyntax-framemathsflocalshrefsyntax-valmathitvalast-hrefsyntax-framemathsfmodulehrefsyntax-moduleinstmathitmoduleinst": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Frames {locals val∗,module moduleinst}", - "url": "https://www.w3.org/TR/wasm-core-1/#frames--hrefsyntax-framemathsflocalshrefsyntax-valmathitvalast-hrefsyntax-framemathsfmodulehrefsyntax-moduleinstmathitmoduleinst" + "url": "https://www.w3.org/TR/wasm-core-2/#formal-notation%E2%91%A1" } }, "#frames-xref-exec-runtime-syntax-frame-mathsf-locals-xref-exec-runtime-syntax-val-mathit-val-ast-xref-exec-runtime-syntax-frame-mathsf-module-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst": { @@ -3291,6 +1573,12 @@ "spec": "WebAssembly Core", "text": "Frames {locals val∗,module moduleinst}", "url": "https://webassembly.github.io/spec/core/bikeshed/#frames-xref-exec-runtime-syntax-frame-mathsf-locals-xref-exec-runtime-syntax-val-mathit-val-ast-xref-exec-runtime-syntax-frame-mathsf-module-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Frames {locals val∗,module moduleinst}", + "url": "https://www.w3.org/TR/wasm-core-2/#frames-xref-exec-runtime-syntax-frame-mathsf-locals-xref-exec-runtime-syntax-val-mathit-val-ast-xref-exec-runtime-syntax-frame-mathsf-module-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst" } }, "#function-calls": { @@ -3299,22 +1587,12 @@ "spec": "WebAssembly Core", "text": "Function Calls", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-calls" - } - }, - "#function-calls%E2%91%A0": { + }, "snapshot": { - "number": "4.4.7", + "number": "4.4.10", "spec": "WebAssembly Core", "text": "Function Calls", - "url": "https://www.w3.org/TR/wasm-core-1/#function-calls%E2%91%A0" - } - }, - "#function-instance--hrefsyntax-funcinstmathitfuncinst": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Function Instance funcinst", - "url": "https://www.w3.org/TR/wasm-core-1/#function-instance--hrefsyntax-funcinstmathitfuncinst" + "url": "https://www.w3.org/TR/wasm-core-2/#function-calls" } }, "#function-instance-xref-exec-runtime-syntax-funcinst-mathit-funcinst": { @@ -3323,6 +1601,12 @@ "spec": "WebAssembly Core", "text": "Function Instance funcinst", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-instance-xref-exec-runtime-syntax-funcinst-mathit-funcinst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Function Instance funcinst", + "url": "https://www.w3.org/TR/wasm-core-2/#function-instance-xref-exec-runtime-syntax-funcinst-mathit-funcinst" } }, "#function-instances": { @@ -3331,22 +1615,12 @@ "spec": "WebAssembly Core", "text": "Function Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-instances" - } - }, - "#function-instances%E2%91%A0": { + }, "snapshot": { "number": "4.2.6", "spec": "WebAssembly Core", "text": "Function Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#function-instances%E2%91%A0" - } - }, - "#function-instances--hrefsyntax-funcinstmathsftypehrefsyntax-functypemathitfunctype-hrefsyntax-funcinstmathsfmodulehrefsyntax-moduleinstmathitmoduleinst-hrefsyntax-funcinstmathsfcodehrefsyntax-funcmathitfunc": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Function Instances {type functype,module moduleinst,code func}", - "url": "https://www.w3.org/TR/wasm-core-1/#function-instances--hrefsyntax-funcinstmathsftypehrefsyntax-functypemathitfunctype-hrefsyntax-funcinstmathsfmodulehrefsyntax-moduleinstmathitmoduleinst-hrefsyntax-funcinstmathsfcodehrefsyntax-funcmathitfunc" + "url": "https://www.w3.org/TR/wasm-core-2/#function-instances" } }, "#function-instances-xref-exec-runtime-syntax-funcinst-mathsf-type-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-funcinst-mathsf-module-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-exec-runtime-syntax-funcinst-mathsf-code-xref-syntax-modules-syntax-func-mathit-func": { @@ -3355,6 +1629,12 @@ "spec": "WebAssembly Core", "text": "Function Instances {type functype,module moduleinst,code func}", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-instances-xref-exec-runtime-syntax-funcinst-mathsf-type-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-funcinst-mathsf-module-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-exec-runtime-syntax-funcinst-mathsf-code-xref-syntax-modules-syntax-func-mathit-func" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Function Instances {type functype,module moduleinst,code func}", + "url": "https://www.w3.org/TR/wasm-core-2/#function-instances-xref-exec-runtime-syntax-funcinst-mathsf-type-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-funcinst-mathsf-module-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-exec-runtime-syntax-funcinst-mathsf-code-xref-syntax-modules-syntax-func-mathit-func" } }, "#function-names": { @@ -3363,14 +1643,12 @@ "spec": "WebAssembly Core", "text": "Function Names", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-names" - } - }, - "#function-names%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Function Names", - "url": "https://www.w3.org/TR/wasm-core-1/#function-names%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#function-names" } }, "#function-references-xref-exec-runtime-syntax-ref-mathsf-ref-a": { @@ -3379,6 +1657,12 @@ "spec": "WebAssembly Core", "text": "Function References ref a", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-references-xref-exec-runtime-syntax-ref-mathsf-ref-a" + }, + "snapshot": { + "number": "4.5.2.3", + "spec": "WebAssembly Core", + "text": "Function References ref a", + "url": "https://www.w3.org/TR/wasm-core-2/#function-references-xref-exec-runtime-syntax-ref-mathsf-ref-a" } }, "#function-section": { @@ -3387,14 +1671,12 @@ "spec": "WebAssembly Core", "text": "Function Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-section" - } - }, - "#function-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.6", "spec": "WebAssembly Core", "text": "Function Section", - "url": "https://www.w3.org/TR/wasm-core-1/#function-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#function-section" } }, "#function-types": { @@ -3403,14 +1685,12 @@ "spec": "WebAssembly Core", "text": "Function Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-types" - } - }, - "#function-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.3", + "number": "2.3.6", "spec": "WebAssembly Core", "text": "Function Types", - "url": "https://www.w3.org/TR/wasm-core-1/#function-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#function-types" } }, "#function-types%E2%91%A1": { @@ -3419,14 +1699,12 @@ "spec": "WebAssembly Core", "text": "Function Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-types%E2%91%A1" - } - }, - "#function-types%E2%91%A2": { + }, "snapshot": { - "number": "3.2.2", + "number": "3.2.3", "spec": "WebAssembly Core", "text": "Function Types", - "url": "https://www.w3.org/TR/wasm-core-1/#function-types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#function-types%E2%91%A1" } }, "#function-types%E2%91%A3": { @@ -3435,14 +1713,12 @@ "spec": "WebAssembly Core", "text": "Function Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-types%E2%91%A3" - } - }, - "#function-types%E2%91%A4": { + }, "snapshot": { - "number": "5.3.3", + "number": "5.3.6", "spec": "WebAssembly Core", "text": "Function Types", - "url": "https://www.w3.org/TR/wasm-core-1/#function-types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#function-types%E2%91%A3" } }, "#function-types%E2%91%A5": { @@ -3451,14 +1727,12 @@ "spec": "WebAssembly Core", "text": "Function Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#function-types%E2%91%A5" - } - }, - "#function-types%E2%91%A6": { + }, "snapshot": { - "number": "6.4.3", + "number": "6.4.5", "spec": "WebAssembly Core", "text": "Function Types", - "url": "https://www.w3.org/TR/wasm-core-1/#function-types%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#function-types%E2%91%A5" } }, "#functions": { @@ -3467,14 +1741,12 @@ "spec": "WebAssembly Core", "text": "Functions", "url": "https://webassembly.github.io/spec/core/bikeshed/#functions" - } - }, - "#functions%E2%91%A0": { + }, "snapshot": { "number": "2.5.3", "spec": "WebAssembly Core", "text": "Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#functions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#functions" } }, "#functions%E2%91%A0%E2%93%AA": { @@ -3488,7 +1760,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#functions%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#functions%E2%91%A0%E2%93%AA" } }, "#functions%E2%91%A1": { @@ -3497,14 +1769,12 @@ "spec": "WebAssembly Core", "text": "Functions", "url": "https://webassembly.github.io/spec/core/bikeshed/#functions%E2%91%A1" - } - }, - "#functions%E2%91%A2": { + }, "snapshot": { - "number": "3.4.1", + "number": "3.2.8.2", "spec": "WebAssembly Core", "text": "Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#functions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#functions%E2%91%A1" } }, "#functions%E2%91%A3": { @@ -3513,14 +1783,12 @@ "spec": "WebAssembly Core", "text": "Functions", "url": "https://webassembly.github.io/spec/core/bikeshed/#functions%E2%91%A3" - } - }, - "#functions%E2%91%A4": { + }, "snapshot": { - "number": "4.5.2.2", + "number": "3.4.1", "spec": "WebAssembly Core", "text": "Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#functions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#functions%E2%91%A3" } }, "#functions%E2%91%A5": { @@ -3534,7 +1802,7 @@ "number": "4.5.3.1", "spec": "WebAssembly Core", "text": "Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#functions%E2%91%A5" + "url": "https://www.w3.org/TR/wasm-core-2/#functions%E2%91%A5" } }, "#functions%E2%91%A7": { @@ -3548,15 +1816,7 @@ "number": "6.6.5", "spec": "WebAssembly Core", "text": "Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#functions%E2%91%A7" - } - }, - "#global-instance--hrefsyntax-globalinstmathitglobalinst": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Global Instance globalinst", - "url": "https://www.w3.org/TR/wasm-core-1/#global-instance--hrefsyntax-globalinstmathitglobalinst" + "url": "https://www.w3.org/TR/wasm-core-2/#functions%E2%91%A7" } }, "#global-instance-xref-exec-runtime-syntax-globalinst-mathit-globalinst": { @@ -3565,6 +1825,12 @@ "spec": "WebAssembly Core", "text": "Global Instance globalinst", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-instance-xref-exec-runtime-syntax-globalinst-mathit-globalinst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Global Instance globalinst", + "url": "https://www.w3.org/TR/wasm-core-2/#global-instance-xref-exec-runtime-syntax-globalinst-mathit-globalinst" } }, "#global-instances": { @@ -3573,22 +1839,12 @@ "spec": "WebAssembly Core", "text": "Global Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-instances" - } - }, - "#global-instances%E2%91%A0": { + }, "snapshot": { "number": "4.2.9", "spec": "WebAssembly Core", "text": "Global Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#global-instances%E2%91%A0" - } - }, - "#global-instances---hrefsyntax-globalinstmathsfvalue-threfsyntax-instr-numericmathsfconstc-hrefsyntax-globalinstmathsfmuthrefsyntax-mutmathitmut": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Global Instances {value (t.const c),mut mut}", - "url": "https://www.w3.org/TR/wasm-core-1/#global-instances---hrefsyntax-globalinstmathsfvalue-threfsyntax-instr-numericmathsfconstc-hrefsyntax-globalinstmathsfmuthrefsyntax-mutmathitmut" + "url": "https://www.w3.org/TR/wasm-core-2/#global-instances" } }, "#global-instances-xref-exec-runtime-syntax-globalinst-mathsf-type-xref-syntax-types-syntax-mut-mathit-mut-t-xref-exec-runtime-syntax-globalinst-mathsf-value-xref-exec-runtime-syntax-val-mathit-val": { @@ -3597,6 +1853,12 @@ "spec": "WebAssembly Core", "text": "Global Instances {type (mut t),value val}", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-instances-xref-exec-runtime-syntax-globalinst-mathsf-type-xref-syntax-types-syntax-mut-mathit-mut-t-xref-exec-runtime-syntax-globalinst-mathsf-value-xref-exec-runtime-syntax-val-mathit-val" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Global Instances {type (mut t),value val}", + "url": "https://www.w3.org/TR/wasm-core-2/#global-instances-xref-exec-runtime-syntax-globalinst-mathsf-type-xref-syntax-types-syntax-mut-mathit-mut-t-xref-exec-runtime-syntax-globalinst-mathsf-value-xref-exec-runtime-syntax-val-mathit-val" } }, "#global-section": { @@ -3605,14 +1867,12 @@ "spec": "WebAssembly Core", "text": "Global Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-section" - } - }, - "#global-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.9", "spec": "WebAssembly Core", "text": "Global Section", - "url": "https://www.w3.org/TR/wasm-core-1/#global-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#global-section" } }, "#global-types": { @@ -3621,14 +1881,12 @@ "spec": "WebAssembly Core", "text": "Global Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-types" - } - }, - "#global-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.7", + "number": "2.3.10", "spec": "WebAssembly Core", "text": "Global Types", - "url": "https://www.w3.org/TR/wasm-core-1/#global-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#global-types" } }, "#global-types%E2%91%A1": { @@ -3637,14 +1895,12 @@ "spec": "WebAssembly Core", "text": "Global Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-types%E2%91%A1" - } - }, - "#global-types%E2%91%A2": { + }, "snapshot": { - "number": "3.2.5", + "number": "3.2.6", "spec": "WebAssembly Core", "text": "Global Types", - "url": "https://www.w3.org/TR/wasm-core-1/#global-types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#global-types%E2%91%A1" } }, "#global-types%E2%91%A3": { @@ -3653,14 +1909,12 @@ "spec": "WebAssembly Core", "text": "Global Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-types%E2%91%A3" - } - }, - "#global-types%E2%91%A4": { + }, "snapshot": { - "number": "5.3.7", + "number": "5.3.10", "spec": "WebAssembly Core", "text": "Global Types", - "url": "https://www.w3.org/TR/wasm-core-1/#global-types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#global-types%E2%91%A3" } }, "#global-types%E2%91%A5": { @@ -3669,14 +1923,12 @@ "spec": "WebAssembly Core", "text": "Global Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#global-types%E2%91%A5" - } - }, - "#global-types%E2%91%A6": { + }, "snapshot": { - "number": "6.4.7", + "number": "6.4.9", "spec": "WebAssembly Core", "text": "Global Types", - "url": "https://www.w3.org/TR/wasm-core-1/#global-types%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#global-types%E2%91%A5" } }, "#globals": { @@ -3685,14 +1937,12 @@ "spec": "WebAssembly Core", "text": "Globals", "url": "https://webassembly.github.io/spec/core/bikeshed/#globals" - } - }, - "#globals%E2%91%A0": { + }, "snapshot": { "number": "2.5.6", "spec": "WebAssembly Core", "text": "Globals", - "url": "https://www.w3.org/TR/wasm-core-1/#globals%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#globals" } }, "#globals%E2%91%A0%E2%93%AA": { @@ -3706,7 +1956,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Globals", - "url": "https://www.w3.org/TR/wasm-core-1/#globals%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#globals%E2%91%A0%E2%93%AA" } }, "#globals%E2%91%A1": { @@ -3715,14 +1965,12 @@ "spec": "WebAssembly Core", "text": "Globals", "url": "https://webassembly.github.io/spec/core/bikeshed/#globals%E2%91%A1" - } - }, - "#globals%E2%91%A2": { + }, "snapshot": { - "number": "3.4.4", + "number": "3.2.8.5", "spec": "WebAssembly Core", "text": "Globals", - "url": "https://www.w3.org/TR/wasm-core-1/#globals%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#globals%E2%91%A1" } }, "#globals%E2%91%A3": { @@ -3731,14 +1979,12 @@ "spec": "WebAssembly Core", "text": "Globals", "url": "https://webassembly.github.io/spec/core/bikeshed/#globals%E2%91%A3" - } - }, - "#globals%E2%91%A4": { + }, "snapshot": { - "number": "4.5.2.5", + "number": "3.4.4", "spec": "WebAssembly Core", "text": "Globals", - "url": "https://www.w3.org/TR/wasm-core-1/#globals%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#globals%E2%91%A3" } }, "#globals%E2%91%A5": { @@ -3752,7 +1998,7 @@ "number": "4.5.3.5", "spec": "WebAssembly Core", "text": "Globals", - "url": "https://www.w3.org/TR/wasm-core-1/#globals%E2%91%A5" + "url": "https://www.w3.org/TR/wasm-core-2/#globals%E2%91%A5" } }, "#globals%E2%91%A7": { @@ -3766,7 +2012,7 @@ "number": "6.6.8", "spec": "WebAssembly Core", "text": "Globals", - "url": "https://www.w3.org/TR/wasm-core-1/#globals%E2%91%A7" + "url": "https://www.w3.org/TR/wasm-core-2/#globals%E2%91%A7" } }, "#grammar%E2%91%A0": { @@ -3775,14 +2021,12 @@ "spec": "WebAssembly Core", "text": "Grammar", "url": "https://webassembly.github.io/spec/core/bikeshed/#grammar%E2%91%A0" - } - }, - "#grammar%E2%91%A1": { + }, "snapshot": { "number": "5.1.1", "spec": "WebAssembly Core", "text": "Grammar", - "url": "https://www.w3.org/TR/wasm-core-1/#grammar%E2%91%A1" + "url": "https://www.w3.org/TR/wasm-core-2/#grammar%E2%91%A0" } }, "#grammar%E2%91%A2": { @@ -3791,14 +2035,12 @@ "spec": "WebAssembly Core", "text": "Grammar", "url": "https://webassembly.github.io/spec/core/bikeshed/#grammar%E2%91%A2" - } - }, - "#grammar%E2%91%A3": { + }, "snapshot": { "number": "6.1.1", "spec": "WebAssembly Core", "text": "Grammar", - "url": "https://www.w3.org/TR/wasm-core-1/#grammar%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#grammar%E2%91%A2" } }, "#grammar-notation": { @@ -3807,14 +2049,12 @@ "spec": "WebAssembly Core", "text": "Grammar Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#grammar-notation" - } - }, - "#grammar-notation%E2%91%A0": { + }, "snapshot": { "number": "2.1.1", "spec": "WebAssembly Core", "text": "Grammar Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#grammar-notation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#grammar-notation" } }, "#growing-memories": { @@ -3823,14 +2063,12 @@ "spec": "WebAssembly Core", "text": "Growing memories", "url": "https://webassembly.github.io/spec/core/bikeshed/#growing-memories" - } - }, - "#growing-memories%E2%91%A0": { + }, "snapshot": { - "number": "4.5.3.7", + "number": "4.5.3.9", "spec": "WebAssembly Core", "text": "Growing memories", - "url": "https://www.w3.org/TR/wasm-core-1/#growing-memories%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#growing-memories" } }, "#growing-tables": { @@ -3839,22 +2077,12 @@ "spec": "WebAssembly Core", "text": "Growing tables", "url": "https://webassembly.github.io/spec/core/bikeshed/#growing-tables" - } - }, - "#growing-tables%E2%91%A0": { + }, "snapshot": { - "number": "4.5.3.6", + "number": "4.5.3.8", "spec": "WebAssembly Core", "text": "Growing tables", - "url": "https://www.w3.org/TR/wasm-core-1/#growing-tables%E2%91%A0" - } - }, - "#host-function-instances--hrefsyntax-funcinstmathsftypehrefsyntax-functypemathitfunctype-hrefsyntax-funcinstmathsfhostcodemathithf": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Host Function Instances {type functype,hostcode hf}", - "url": "https://www.w3.org/TR/wasm-core-1/#host-function-instances--hrefsyntax-funcinstmathsftypehrefsyntax-functypemathitfunctype-hrefsyntax-funcinstmathsfhostcodemathithf" + "url": "https://www.w3.org/TR/wasm-core-2/#growing-tables" } }, "#host-function-instances-xref-exec-runtime-syntax-funcinst-mathsf-type-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-funcinst-mathsf-hostcode-mathit-hf": { @@ -3863,6 +2091,12 @@ "spec": "WebAssembly Core", "text": "Host Function Instances {type functype,hostcode hf}", "url": "https://webassembly.github.io/spec/core/bikeshed/#host-function-instances-xref-exec-runtime-syntax-funcinst-mathsf-type-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-funcinst-mathsf-hostcode-mathit-hf" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Host Function Instances {type functype,hostcode hf}", + "url": "https://www.w3.org/TR/wasm-core-2/#host-function-instances-xref-exec-runtime-syntax-funcinst-mathsf-type-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-funcinst-mathsf-hostcode-mathit-hf" } }, "#host-functions": { @@ -3871,14 +2105,12 @@ "spec": "WebAssembly Core", "text": "Host Functions", "url": "https://webassembly.github.io/spec/core/bikeshed/#host-functions" - } - }, - "#host-functions%E2%91%A0": { + }, "snapshot": { - "number": "4.4.7.3", + "number": "4.4.10.3", "spec": "WebAssembly Core", "text": "Host Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#host-functions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#host-functions" } }, "#host-functions%E2%91%A1": { @@ -3887,14 +2119,12 @@ "spec": "WebAssembly Core", "text": "Host Functions", "url": "https://webassembly.github.io/spec/core/bikeshed/#host-functions%E2%91%A1" - } - }, - "#host-functions%E2%91%A2": { + }, "snapshot": { "number": "4.5.3.2", "spec": "WebAssembly Core", "text": "Host Functions", - "url": "https://www.w3.org/TR/wasm-core-1/#host-functions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#host-functions%E2%91%A1" } }, "#id1%E2%91%A0%E2%91%A3": { @@ -3903,6 +2133,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A0%E2%91%A3" + }, + "snapshot": { + "number": "6.1.3.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id1%E2%91%A0%E2%91%A3" } }, "#id1%E2%91%A0%E2%91%A4": { @@ -3911,6 +2147,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A0%E2%91%A4" + }, + "snapshot": { + "number": "6.5.6.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#id1%E2%91%A0%E2%91%A4" } }, "#id1%E2%91%A0%E2%91%A5": { @@ -3919,6 +2161,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A0%E2%91%A5" + }, + "snapshot": { + "number": "6.6.4.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#id1%E2%91%A0%E2%91%A5" } }, "#id1%E2%91%A1": { @@ -3927,6 +2175,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A1" + }, + "snapshot": { + "number": "2.2.2.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id1%E2%91%A1" } }, "#id1%E2%91%A2": { @@ -3935,6 +2189,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A2" + }, + "snapshot": { + "number": "2.3.2.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id1%E2%91%A2" } }, "#id1%E2%91%A4": { @@ -3942,7 +2202,13 @@ "number": "2.5.10.1", "spec": "WebAssembly Core", "text": "Conventions", - "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A4" + "url": "https://webassembly.github.io/spec/core/bikeshed/#id1%E2%91%A4" + }, + "snapshot": { + "number": "2.5.10.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id1%E2%91%A4" } }, "#id10": { @@ -3951,6 +2217,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#id10" + }, + "snapshot": { + "number": "6.6.13.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#id10" } }, "#id2%E2%91%A1": { @@ -3959,6 +2231,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#id2%E2%91%A1" + }, + "snapshot": { + "number": "2.2.3.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id2%E2%91%A1" } }, "#id2%E2%91%A2": { @@ -3967,6 +2245,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#id2%E2%91%A2" + }, + "snapshot": { + "number": "2.3.4.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id2%E2%91%A2" } }, "#id3%E2%91%A0": { @@ -3975,6 +2259,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#id3%E2%91%A0" + }, + "snapshot": { + "number": "2.3.11.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#id3%E2%91%A0" } }, "#id3%E2%91%A1": { @@ -3983,6 +2273,12 @@ "spec": "WebAssembly Core", "text": "Convention", "url": "https://webassembly.github.io/spec/core/bikeshed/#id3%E2%91%A1" + }, + "snapshot": { + "number": "4.2.3.1", + "spec": "WebAssembly Core", + "text": "Convention", + "url": "https://www.w3.org/TR/wasm-core-2/#id3%E2%91%A1" } }, "#id5": { @@ -3991,6 +2287,12 @@ "spec": "WebAssembly Core", "text": "Values", "url": "https://webassembly.github.io/spec/core/bikeshed/#id5" + }, + "snapshot": { + "number": "4.2.14.1", + "spec": "WebAssembly Core", + "text": "Values", + "url": "https://www.w3.org/TR/wasm-core-2/#id5" } }, "#id6%E2%91%A0": { @@ -3999,6 +2301,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#id6%E2%91%A0" + }, + "snapshot": { + "number": "6.6.9.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#id6%E2%91%A0" } }, "#id7": { @@ -4007,6 +2315,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#id7" + }, + "snapshot": { + "number": "6.6.11.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#id7" } }, "#id8": { @@ -4015,14 +2329,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#id8" - } - }, - "#identifiers%E2%91%A0": { + }, "snapshot": { - "number": "6.3.5", + "number": "6.6.12.1", "spec": "WebAssembly Core", - "text": "Identifiers", - "url": "https://www.w3.org/TR/wasm-core-1/#identifiers%E2%91%A0" + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#id8" } }, "#implementation-limitations": { @@ -4031,22 +2343,12 @@ "spec": "WebAssembly Core", "text": "Implementation Limitations", "url": "https://webassembly.github.io/spec/core/bikeshed/#implementation-limitations" - } - }, - "#import-matching%E2%91%A0": { - "snapshot": { - "number": "4.5.2", - "spec": "WebAssembly Core", - "text": "Import Matching", - "url": "https://www.w3.org/TR/wasm-core-1/#import-matching%E2%91%A0" - } - }, - "#import-matching%E2%91%A2": { + }, "snapshot": { - "number": "", + "number": "A.2", "spec": "WebAssembly Core", - "text": "Import Matching", - "url": "https://www.w3.org/TR/wasm-core-1/#import-matching%E2%91%A2" + "text": "Implementation Limitations", + "url": "https://www.w3.org/TR/wasm-core-2/#implementation-limitations" } }, "#import-section": { @@ -4055,14 +2357,12 @@ "spec": "WebAssembly Core", "text": "Import Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#import-section" - } - }, - "#import-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.5", "spec": "WebAssembly Core", "text": "Import Section", - "url": "https://www.w3.org/TR/wasm-core-1/#import-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#import-section" } }, "#import-subtyping": { @@ -4071,6 +2371,12 @@ "spec": "WebAssembly Core", "text": "Import Subtyping", "url": "https://webassembly.github.io/spec/core/bikeshed/#import-subtyping" + }, + "snapshot": { + "number": "3.2.8", + "spec": "WebAssembly Core", + "text": "Import Subtyping", + "url": "https://www.w3.org/TR/wasm-core-2/#import-subtyping" } }, "#imports": { @@ -4079,14 +2385,12 @@ "spec": "WebAssembly Core", "text": "Imports", "url": "https://webassembly.github.io/spec/core/bikeshed/#imports" - } - }, - "#imports%E2%91%A0": { + }, "snapshot": { "number": "2.5.11", "spec": "WebAssembly Core", "text": "Imports", - "url": "https://www.w3.org/TR/wasm-core-1/#imports%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#imports" } }, "#imports%E2%91%A1": { @@ -4095,14 +2399,12 @@ "spec": "WebAssembly Core", "text": "Imports", "url": "https://webassembly.github.io/spec/core/bikeshed/#imports%E2%91%A1" - } - }, - "#imports%E2%91%A2": { + }, "snapshot": { "number": "3.4.9", "spec": "WebAssembly Core", "text": "Imports", - "url": "https://www.w3.org/TR/wasm-core-1/#imports%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#imports%E2%91%A1" } }, "#imports%E2%91%A3": { @@ -4111,14 +2413,12 @@ "spec": "WebAssembly Core", "text": "Imports", "url": "https://webassembly.github.io/spec/core/bikeshed/#imports%E2%91%A3" - } - }, - "#imports%E2%91%A4": { + }, "snapshot": { "number": "6.6.4", "spec": "WebAssembly Core", "text": "Imports", - "url": "https://www.w3.org/TR/wasm-core-1/#imports%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#imports%E2%91%A3" } }, "#index-of-instructions": { @@ -4127,6 +2427,12 @@ "spec": "WebAssembly Core", "text": "Index of Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#index-of-instructions" + }, + "snapshot": { + "number": "A.7", + "spec": "WebAssembly Core", + "text": "Index of Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#index-of-instructions" } }, "#index-of-semantic-rules": { @@ -4135,6 +2441,12 @@ "spec": "WebAssembly Core", "text": "Index of Semantic Rules", "url": "https://webassembly.github.io/spec/core/bikeshed/#index-of-semantic-rules" + }, + "snapshot": { + "number": "A.8", + "spec": "WebAssembly Core", + "text": "Index of Semantic Rules", + "url": "https://www.w3.org/TR/wasm-core-2/#index-of-semantic-rules" } }, "#index-of-types": { @@ -4143,6 +2455,12 @@ "spec": "WebAssembly Core", "text": "Index of Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#index-of-types" + }, + "snapshot": { + "number": "A.6", + "spec": "WebAssembly Core", + "text": "Index of Types", + "url": "https://www.w3.org/TR/wasm-core-2/#index-of-types" } }, "#indices": { @@ -4151,14 +2469,12 @@ "spec": "WebAssembly Core", "text": "Indices", "url": "https://webassembly.github.io/spec/core/bikeshed/#indices" - } - }, - "#indices%E2%91%A0": { + }, "snapshot": { "number": "2.5.1", "spec": "WebAssembly Core", "text": "Indices", - "url": "https://www.w3.org/TR/wasm-core-1/#indices%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#indices" } }, "#indices%E2%91%A1": { @@ -4167,14 +2483,12 @@ "spec": "WebAssembly Core", "text": "Indices", "url": "https://webassembly.github.io/spec/core/bikeshed/#indices%E2%91%A1" - } - }, - "#indices%E2%91%A2": { + }, "snapshot": { "number": "5.5.1", "spec": "WebAssembly Core", "text": "Indices", - "url": "https://www.w3.org/TR/wasm-core-1/#indices%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#indices%E2%91%A1" } }, "#indices%E2%91%A3": { @@ -4183,14 +2497,12 @@ "spec": "WebAssembly Core", "text": "Indices", "url": "https://webassembly.github.io/spec/core/bikeshed/#indices%E2%91%A3" - } - }, - "#indices%E2%91%A4": { + }, "snapshot": { "number": "6.6.1", "spec": "WebAssembly Core", "text": "Indices", - "url": "https://www.w3.org/TR/wasm-core-1/#indices%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#indices%E2%91%A3" } }, "#instantiation%E2%91%A0": { @@ -4199,14 +2511,12 @@ "spec": "WebAssembly Core", "text": "Instantiation", "url": "https://webassembly.github.io/spec/core/bikeshed/#instantiation%E2%91%A0" - } - }, - "#instantiation%E2%91%A1": { + }, "snapshot": { "number": "4.5.4", "spec": "WebAssembly Core", "text": "Instantiation", - "url": "https://www.w3.org/TR/wasm-core-1/#instantiation%E2%91%A1" + "url": "https://www.w3.org/TR/wasm-core-2/#instantiation%E2%91%A0" } }, "#instruction-sequences": { @@ -4215,14 +2525,12 @@ "spec": "WebAssembly Core", "text": "Instruction Sequences", "url": "https://webassembly.github.io/spec/core/bikeshed/#instruction-sequences" - } - }, - "#instruction-sequences%E2%91%A0": { + }, "snapshot": { - "number": "3.3.6", + "number": "3.3.9", "spec": "WebAssembly Core", "text": "Instruction Sequences", - "url": "https://www.w3.org/TR/wasm-core-1/#instruction-sequences%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#instruction-sequences" } }, "#instructions": { @@ -4231,14 +2539,12 @@ "spec": "WebAssembly Core", "text": "Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#instructions" - } - }, - "#instructions%E2%91%A0": { + }, "snapshot": { "number": "2.4", "spec": "WebAssembly Core", "text": "Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#instructions" } }, "#instructions%E2%91%A1": { @@ -4247,14 +2553,12 @@ "spec": "WebAssembly Core", "text": "Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#instructions%E2%91%A1" - } - }, - "#instructions%E2%91%A2": { + }, "snapshot": { "number": "3.3", "spec": "WebAssembly Core", "text": "Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#instructions%E2%91%A1" } }, "#instructions%E2%91%A3": { @@ -4263,14 +2567,12 @@ "spec": "WebAssembly Core", "text": "Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#instructions%E2%91%A3" - } - }, - "#instructions%E2%91%A4": { + }, "snapshot": { "number": "4.4", "spec": "WebAssembly Core", "text": "Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#instructions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#instructions%E2%91%A3" } }, "#instructions%E2%91%A5": { @@ -4279,14 +2581,12 @@ "spec": "WebAssembly Core", "text": "Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#instructions%E2%91%A5" - } - }, - "#instructions%E2%91%A6": { + }, "snapshot": { "number": "5.4", "spec": "WebAssembly Core", "text": "Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#instructions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#instructions%E2%91%A5" } }, "#instructions%E2%91%A7": { @@ -4295,14 +2595,12 @@ "spec": "WebAssembly Core", "text": "Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#instructions%E2%91%A7" - } - }, - "#instructions%E2%91%A8": { + }, "snapshot": { "number": "6.5", "spec": "WebAssembly Core", "text": "Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#instructions%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#instructions%E2%91%A7" } }, "#integer-operations": { @@ -4311,14 +2609,12 @@ "spec": "WebAssembly Core", "text": "Integer Operations", "url": "https://webassembly.github.io/spec/core/bikeshed/#integer-operations" - } - }, - "#integer-operations%E2%91%A0": { + }, "snapshot": { "number": "4.3.2", "spec": "WebAssembly Core", "text": "Integer Operations", - "url": "https://www.w3.org/TR/wasm-core-1/#integer-operations%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#integer-operations" } }, "#integers": { @@ -4327,14 +2623,12 @@ "spec": "WebAssembly Core", "text": "Integers", "url": "https://webassembly.github.io/spec/core/bikeshed/#integers" - } - }, - "#integers%E2%91%A0": { + }, "snapshot": { "number": "2.2.2", "spec": "WebAssembly Core", "text": "Integers", - "url": "https://www.w3.org/TR/wasm-core-1/#integers%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#integers" } }, "#integers%E2%91%A1": { @@ -4343,14 +2637,12 @@ "spec": "WebAssembly Core", "text": "Integers", "url": "https://webassembly.github.io/spec/core/bikeshed/#integers%E2%91%A1" - } - }, - "#integers%E2%91%A2": { + }, "snapshot": { "number": "4.3.1.1", "spec": "WebAssembly Core", "text": "Integers", - "url": "https://www.w3.org/TR/wasm-core-1/#integers%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#integers%E2%91%A1" } }, "#integers%E2%91%A3": { @@ -4359,14 +2651,12 @@ "spec": "WebAssembly Core", "text": "Integers", "url": "https://webassembly.github.io/spec/core/bikeshed/#integers%E2%91%A3" - } - }, - "#integers%E2%91%A4": { + }, "snapshot": { "number": "5.2.2", "spec": "WebAssembly Core", "text": "Integers", - "url": "https://www.w3.org/TR/wasm-core-1/#integers%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#integers%E2%91%A3" } }, "#integers%E2%91%A5": { @@ -4375,14 +2665,12 @@ "spec": "WebAssembly Core", "text": "Integers", "url": "https://webassembly.github.io/spec/core/bikeshed/#integers%E2%91%A5" - } - }, - "#integers%E2%91%A6": { + }, "snapshot": { "number": "6.3.1", "spec": "WebAssembly Core", "text": "Integers", - "url": "https://www.w3.org/TR/wasm-core-1/#integers%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#integers%E2%91%A5" } }, "#introduction": { @@ -4391,14 +2679,12 @@ "spec": "WebAssembly Core", "text": "Introduction", "url": "https://webassembly.github.io/spec/core/bikeshed/#introduction" - } - }, - "#introduction%E2%91%A0": { + }, "snapshot": { "number": "1", "spec": "WebAssembly Core", "text": "Introduction", - "url": "https://www.w3.org/TR/wasm-core-1/#introduction%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#introduction" } }, "#introduction%E2%91%A1": { @@ -4407,14 +2693,12 @@ "spec": "WebAssembly Core", "text": "Introduction", "url": "https://webassembly.github.io/spec/core/bikeshed/#introduction%E2%91%A1" - } - }, - "#introduction%E2%91%A2": { + }, "snapshot": { "number": "1.1", "spec": "WebAssembly Core", "text": "Introduction", - "url": "https://www.w3.org/TR/wasm-core-1/#introduction%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#introduction%E2%91%A1" } }, "#invocation%E2%91%A0": { @@ -4423,22 +2707,12 @@ "spec": "WebAssembly Core", "text": "Invocation", "url": "https://webassembly.github.io/spec/core/bikeshed/#invocation%E2%91%A0" - } - }, - "#invocation%E2%91%A1": { + }, "snapshot": { "number": "4.5.5", "spec": "WebAssembly Core", "text": "Invocation", - "url": "https://www.w3.org/TR/wasm-core-1/#invocation%E2%91%A1" - } - }, - "#invocation-of-function-address--a": { - "snapshot": { - "number": "4.4.7.1", - "spec": "WebAssembly Core", - "text": "Invocation of function address a", - "url": "https://www.w3.org/TR/wasm-core-1/#invocation-of-function-address--a" + "url": "https://www.w3.org/TR/wasm-core-2/#invocation%E2%91%A0" } }, "#invocation-of-function-address-a": { @@ -4447,6 +2721,12 @@ "spec": "WebAssembly Core", "text": "Invocation of function address a", "url": "https://webassembly.github.io/spec/core/bikeshed/#invocation-of-function-address-a" + }, + "snapshot": { + "number": "4.4.10.1", + "spec": "WebAssembly Core", + "text": "Invocation of function address a", + "url": "https://www.w3.org/TR/wasm-core-2/#invocation-of-function-address-a" } }, "#labels": { @@ -4455,14 +2735,12 @@ "spec": "WebAssembly Core", "text": "Labels", "url": "https://webassembly.github.io/spec/core/bikeshed/#labels" - } - }, - "#labels%E2%91%A0": { + }, "snapshot": { - "number": "4.2.12.2", + "number": "4.2.14.2", "spec": "WebAssembly Core", "text": "Labels", - "url": "https://www.w3.org/TR/wasm-core-1/#labels%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#labels" } }, "#labels%E2%91%A1": { @@ -4471,14 +2749,12 @@ "spec": "WebAssembly Core", "text": "Labels", "url": "https://webassembly.github.io/spec/core/bikeshed/#labels%E2%91%A1" - } - }, - "#labels%E2%91%A2": { + }, "snapshot": { "number": "6.5.1", "spec": "WebAssembly Core", "text": "Labels", - "url": "https://www.w3.org/TR/wasm-core-1/#labels%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#labels%E2%91%A1" } }, "#lexical-format": { @@ -4487,14 +2763,12 @@ "spec": "WebAssembly Core", "text": "Lexical Format", "url": "https://webassembly.github.io/spec/core/bikeshed/#lexical-format" - } - }, - "#lexical-format%E2%91%A0": { + }, "snapshot": { "number": "6.2", "spec": "WebAssembly Core", "text": "Lexical Format", - "url": "https://www.w3.org/TR/wasm-core-1/#lexical-format%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#lexical-format" } }, "#limits": { @@ -4503,14 +2777,12 @@ "spec": "WebAssembly Core", "text": "Limits", "url": "https://webassembly.github.io/spec/core/bikeshed/#limits" - } - }, - "#limits%E2%91%A0": { + }, "snapshot": { - "number": "2.3.4", + "number": "2.3.7", "spec": "WebAssembly Core", "text": "Limits", - "url": "https://www.w3.org/TR/wasm-core-1/#limits%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#limits" } }, "#limits%E2%91%A1": { @@ -4519,14 +2791,12 @@ "spec": "WebAssembly Core", "text": "Limits", "url": "https://webassembly.github.io/spec/core/bikeshed/#limits%E2%91%A1" - } - }, - "#limits%E2%91%A2": { + }, "snapshot": { "number": "3.2.1", "spec": "WebAssembly Core", "text": "Limits", - "url": "https://www.w3.org/TR/wasm-core-1/#limits%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#limits%E2%91%A1" } }, "#limits%E2%91%A4": { @@ -4537,10 +2807,10 @@ "url": "https://webassembly.github.io/spec/core/bikeshed/#limits%E2%91%A4" }, "snapshot": { - "number": "4.5.2.1", + "number": "5.3.7", "spec": "WebAssembly Core", "text": "Limits", - "url": "https://www.w3.org/TR/wasm-core-1/#limits%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#limits%E2%91%A4" } }, "#limits%E2%91%A6": { @@ -4551,18 +2821,10 @@ "url": "https://webassembly.github.io/spec/core/bikeshed/#limits%E2%91%A6" }, "snapshot": { - "number": "5.3.4", - "spec": "WebAssembly Core", - "text": "Limits", - "url": "https://www.w3.org/TR/wasm-core-1/#limits%E2%91%A6" - } - }, - "#limits%E2%91%A8": { - "snapshot": { - "number": "6.4.4", + "number": "6.4.6", "spec": "WebAssembly Core", "text": "Limits", - "url": "https://www.w3.org/TR/wasm-core-1/#limits%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#limits%E2%91%A6" } }, "#local-names": { @@ -4571,14 +2833,12 @@ "spec": "WebAssembly Core", "text": "Local Names", "url": "https://webassembly.github.io/spec/core/bikeshed/#local-names" - } - }, - "#local-names%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Local Names", - "url": "https://www.w3.org/TR/wasm-core-1/#local-names%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#local-names" } }, "#match-limits": { @@ -4587,6 +2847,12 @@ "spec": "WebAssembly Core", "text": "Limits", "url": "https://webassembly.github.io/spec/core/bikeshed/#match-limits" + }, + "snapshot": { + "number": "3.2.8.1", + "spec": "WebAssembly Core", + "text": "Limits", + "url": "https://www.w3.org/TR/wasm-core-2/#match-limits" } }, "#matching": { @@ -4595,6 +2861,12 @@ "spec": "WebAssembly Core", "text": "Matching", "url": "https://webassembly.github.io/spec/core/bikeshed/#matching" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Matching", + "url": "https://www.w3.org/TR/wasm-core-2/#matching" } }, "#mathrm-func-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-hostfunc-mathit-hostfunc-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr": { @@ -4603,6 +2875,12 @@ "spec": "WebAssembly Core", "text": "func_alloc(store,functype,hostfunc):(store,funcaddr)", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-func-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-hostfunc-mathit-hostfunc-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "func_alloc(store,functype,hostfunc):(store,funcaddr)", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-func-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-functype-mathit-functype-xref-exec-runtime-syntax-hostfunc-mathit-hostfunc-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr" } }, "#mathrm-func-invoke-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr-xref-exec-runtime-syntax-val-mathit-val-ast-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-val-mathit-val-ast-xref-appendix-embedding-embed-error-mathit-error": { @@ -4611,6 +2889,12 @@ "spec": "WebAssembly Core", "text": "func_invoke(store,funcaddr,val∗):(store,val∗ ∣ error)", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-func-invoke-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr-xref-exec-runtime-syntax-val-mathit-val-ast-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-val-mathit-val-ast-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "func_invoke(store,funcaddr,val∗):(store,val∗ ∣ error)", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-func-invoke-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr-xref-exec-runtime-syntax-val-mathit-val-ast-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-val-mathit-val-ast-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-func-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr-xref-syntax-types-syntax-functype-mathit-functype": { @@ -4619,6 +2903,12 @@ "spec": "WebAssembly Core", "text": "func_type(store,funcaddr):functype", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-func-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr-xref-syntax-types-syntax-functype-mathit-functype" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "func_type(store,funcaddr):functype", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-func-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr-xref-syntax-types-syntax-functype-mathit-functype" } }, "#mathrm-global-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-globaltype-mathit-globaltype-xref-exec-runtime-syntax-val-mathit-val-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr": { @@ -4627,6 +2917,12 @@ "spec": "WebAssembly Core", "text": "global_alloc(store,globaltype,val):(store,globaladdr)", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-global-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-globaltype-mathit-globaltype-xref-exec-runtime-syntax-val-mathit-val-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "global_alloc(store,globaltype,val):(store,globaladdr)", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-global-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-globaltype-mathit-globaltype-xref-exec-runtime-syntax-val-mathit-val-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr" } }, "#mathrm-global-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-exec-runtime-syntax-val-mathit-val": { @@ -4635,6 +2931,12 @@ "spec": "WebAssembly Core", "text": "global_read(store,globaladdr):val", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-global-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-exec-runtime-syntax-val-mathit-val" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "global_read(store,globaladdr):val", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-global-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-exec-runtime-syntax-val-mathit-val" } }, "#mathrm-global-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-syntax-types-syntax-globaltype-mathit-globaltype": { @@ -4643,6 +2945,12 @@ "spec": "WebAssembly Core", "text": "global_type(store,globaladdr):globaltype", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-global-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-syntax-types-syntax-globaltype-mathit-globaltype" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "global_type(store,globaladdr):globaltype", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-global-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-syntax-types-syntax-globaltype-mathit-globaltype" } }, "#mathrm-global-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-exec-runtime-syntax-val-mathit-val-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error": { @@ -4651,6 +2959,12 @@ "spec": "WebAssembly Core", "text": "global_write(store,globaladdr,val):store ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-global-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-exec-runtime-syntax-val-mathit-val-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "global_write(store,globaladdr,val):store ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-global-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-globaladdr-mathit-globaladdr-xref-exec-runtime-syntax-val-mathit-val-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-instance-export-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-syntax-values-syntax-name-mathit-name-xref-exec-runtime-syntax-externval-mathit-externval-xref-appendix-embedding-embed-error-mathit-error": { @@ -4659,6 +2973,12 @@ "spec": "WebAssembly Core", "text": "instance_export(moduleinst,name):externval ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-instance-export-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-syntax-values-syntax-name-mathit-name-xref-exec-runtime-syntax-externval-mathit-externval-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "instance_export(moduleinst,name):externval ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-instance-export-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-syntax-values-syntax-name-mathit-name-xref-exec-runtime-syntax-externval-mathit-externval-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-mem-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-memtype-mathit-memtype-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr": { @@ -4667,6 +2987,12 @@ "spec": "WebAssembly Core", "text": "mem_alloc(store,memtype):(store,memaddr)", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-memtype-mathit-memtype-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "mem_alloc(store,memtype):(store,memaddr)", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-mem-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-memtype-mathit-memtype-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr" } }, "#mathrm-mem-grow-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-n-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error": { @@ -4675,6 +3001,12 @@ "spec": "WebAssembly Core", "text": "mem_grow(store,memaddr,n:u32):store ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-grow-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-n-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "mem_grow(store,memaddr,n:u32):store ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-mem-grow-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-n-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-mem-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-appendix-embedding-embed-error-mathit-error": { @@ -4682,7 +3014,13 @@ "number": "", "spec": "WebAssembly Core", "text": "mem_read(store,memaddr,i:u32):byte ∣ error", - "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-appendix-embedding-embed-error-mathit-error" + "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "mem_read(store,memaddr,i:u32):byte ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-mem-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-mem-size-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-xref-syntax-values-syntax-int-mathit-u32": { @@ -4691,6 +3029,12 @@ "spec": "WebAssembly Core", "text": "mem_size(store,memaddr):u32", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-size-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-xref-syntax-values-syntax-int-mathit-u32" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "mem_size(store,memaddr):u32", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-mem-size-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-xref-syntax-values-syntax-int-mathit-u32" } }, "#mathrm-mem-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-xref-syntax-types-syntax-memtype-mathit-memtype": { @@ -4699,6 +3043,12 @@ "spec": "WebAssembly Core", "text": "mem_type(store,memaddr):memtype", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-xref-syntax-types-syntax-memtype-mathit-memtype" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "mem_type(store,memaddr):memtype", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-mem-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-xref-syntax-types-syntax-memtype-mathit-memtype" } }, "#mathrm-mem-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error": { @@ -4707,6 +3057,12 @@ "spec": "WebAssembly Core", "text": "mem_write(store,memaddr,i:u32,byte):store ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-mem-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "mem_write(store,memaddr,i:u32,byte):store ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-mem-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-memaddr-mathit-memaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-syntax-values-syntax-byte-mathit-byte-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-module-decode-xref-syntax-values-syntax-byte-mathit-byte-ast-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error": { @@ -4715,6 +3071,12 @@ "spec": "WebAssembly Core", "text": "module_decode(byte∗):module ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-module-decode-xref-syntax-values-syntax-byte-mathit-byte-ast-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "module_decode(byte∗):module ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-module-decode-xref-syntax-values-syntax-byte-mathit-byte-ast-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-module-exports-xref-syntax-modules-syntax-module-mathit-module-xref-syntax-values-syntax-name-mathit-name-xref-syntax-types-syntax-externtype-mathit-externtype-ast": { @@ -4723,6 +3085,12 @@ "spec": "WebAssembly Core", "text": "module_exports(module):(name,externtype)∗", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-module-exports-xref-syntax-modules-syntax-module-mathit-module-xref-syntax-values-syntax-name-mathit-name-xref-syntax-types-syntax-externtype-mathit-externtype-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "module_exports(module):(name,externtype)∗", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-module-exports-xref-syntax-modules-syntax-module-mathit-module-xref-syntax-values-syntax-name-mathit-name-xref-syntax-types-syntax-externtype-mathit-externtype-ast" } }, "#mathrm-module-imports-xref-syntax-modules-syntax-module-mathit-module-xref-syntax-values-syntax-name-mathit-name-xref-syntax-values-syntax-name-mathit-name-xref-syntax-types-syntax-externtype-mathit-externtype-ast": { @@ -4731,6 +3099,12 @@ "spec": "WebAssembly Core", "text": "module_imports(module):(name,name,externtype)∗", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-module-imports-xref-syntax-modules-syntax-module-mathit-module-xref-syntax-values-syntax-name-mathit-name-xref-syntax-values-syntax-name-mathit-name-xref-syntax-types-syntax-externtype-mathit-externtype-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "module_imports(module):(name,name,externtype)∗", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-module-imports-xref-syntax-modules-syntax-module-mathit-module-xref-syntax-values-syntax-name-mathit-name-xref-syntax-values-syntax-name-mathit-name-xref-syntax-types-syntax-externtype-mathit-externtype-ast" } }, "#mathrm-module-instantiate-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-modules-syntax-module-mathit-module-xref-exec-runtime-syntax-externval-mathit-externval-ast-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-appendix-embedding-embed-error-mathit-error": { @@ -4739,6 +3113,12 @@ "spec": "WebAssembly Core", "text": "module_instantiate(store,module,externval∗):(store,moduleinst ∣ error)", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-module-instantiate-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-modules-syntax-module-mathit-module-xref-exec-runtime-syntax-externval-mathit-externval-ast-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "module_instantiate(store,module,externval∗):(store,moduleinst ∣ error)", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-module-instantiate-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-modules-syntax-module-mathit-module-xref-exec-runtime-syntax-externval-mathit-externval-ast-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-module-parse-xref-syntax-values-syntax-name-mathit-char-ast-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error": { @@ -4747,6 +3127,12 @@ "spec": "WebAssembly Core", "text": "module_parse(char∗):module ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-module-parse-xref-syntax-values-syntax-name-mathit-char-ast-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "module_parse(char∗):module ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-module-parse-xref-syntax-values-syntax-name-mathit-char-ast-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-module-validate-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error": { @@ -4755,6 +3141,12 @@ "spec": "WebAssembly Core", "text": "module_validate(module):error?", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-module-validate-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "module_validate(module):error?", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-module-validate-xref-syntax-modules-syntax-module-mathit-module-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-store-init-xref-exec-runtime-syntax-store-mathit-store": { @@ -4763,14 +3155,26 @@ "spec": "WebAssembly Core", "text": "store_init():store", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-store-init-xref-exec-runtime-syntax-store-mathit-store" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "store_init():store", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-store-init-xref-exec-runtime-syntax-store-mathit-store" } }, - "#mathrm-table-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-tabletype-mathit-tabletype-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-exec-runtime-syntax-ref-mathit-ref": { + "#mathrm-table-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-tabletype-mathit-tabletype-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr": { "current": { "number": "", "spec": "WebAssembly Core", - "text": "table_alloc(store,tabletype):(store,tableaddr,ref)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-tabletype-mathit-tabletype-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-exec-runtime-syntax-ref-mathit-ref" + "text": "table_alloc(store,tabletype,ref):(store,tableaddr)", + "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-tabletype-mathit-tabletype-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "table_alloc(store,tabletype,ref):(store,tableaddr)", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-table-alloc-xref-exec-runtime-syntax-store-mathit-store-xref-syntax-types-syntax-tabletype-mathit-tabletype-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr" } }, "#mathrm-table-grow-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-n-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error": { @@ -4779,6 +3183,12 @@ "spec": "WebAssembly Core", "text": "table_grow(store,tableaddr,n:u32,ref):store ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-grow-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-n-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "table_grow(store,tableaddr,n:u32,ref):store ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-table-grow-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-n-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-table-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-appendix-embedding-embed-error-mathit-error": { @@ -4787,6 +3197,12 @@ "spec": "WebAssembly Core", "text": "table_read(store,tableaddr,i:u32):ref ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "table_read(store,tableaddr,i:u32):ref ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-table-read-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathrm-table-size-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-syntax-values-syntax-int-mathit-u32": { @@ -4795,6 +3211,12 @@ "spec": "WebAssembly Core", "text": "table_size(store,tableaddr):u32", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-size-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-syntax-values-syntax-int-mathit-u32" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "table_size(store,tableaddr):u32", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-table-size-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-syntax-values-syntax-int-mathit-u32" } }, "#mathrm-table-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-syntax-types-syntax-tabletype-mathit-tabletype": { @@ -4803,6 +3225,12 @@ "spec": "WebAssembly Core", "text": "table_type(store,tableaddr):tabletype", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-syntax-types-syntax-tabletype-mathit-tabletype" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "table_type(store,tableaddr):tabletype", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-table-type-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-xref-syntax-types-syntax-tabletype-mathit-tabletype" } }, "#mathrm-table-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error": { @@ -4811,6 +3239,12 @@ "spec": "WebAssembly Core", "text": "table_write(store,tableaddr,i:u32,ref):store ∣ error", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathrm-table-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "table_write(store,tableaddr,i:u32,ref):store ∣ error", + "url": "https://www.w3.org/TR/wasm-core-2/#mathrm-table-write-xref-exec-runtime-syntax-store-mathit-store-xref-exec-runtime-syntax-tableaddr-mathit-tableaddr-i-xref-syntax-values-syntax-int-mathit-u32-xref-exec-runtime-syntax-ref-mathit-ref-xref-exec-runtime-syntax-store-mathit-store-xref-appendix-embedding-embed-error-mathit-error" } }, "#mathsf-i32x4-xref-syntax-instructions-syntax-instr-vec-mathsf-dot-mathsf-i16x8-s": { @@ -4819,6 +3253,12 @@ "spec": "WebAssembly Core", "text": "i32x4.dot_i16x8_s", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-i32x4-xref-syntax-instructions-syntax-instr-vec-mathsf-dot-mathsf-i16x8-s" + }, + "snapshot": { + "number": "4.4.3.21", + "spec": "WebAssembly Core", + "text": "i32x4.dot_i16x8_s", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-i32x4-xref-syntax-instructions-syntax-instr-vec-mathsf-dot-mathsf-i16x8-s" } }, "#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-shuffle-x-ast": { @@ -4827,6 +3267,12 @@ "spec": "WebAssembly Core", "text": "i8x16.shuffle x∗", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-shuffle-x-ast" + }, + "snapshot": { + "number": "4.4.3.7", + "spec": "WebAssembly Core", + "text": "i8x16.shuffle x∗", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-shuffle-x-ast" } }, "#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-shuffle-xref-syntax-instructions-syntax-laneidx-mathit-laneidx-16": { @@ -4835,6 +3281,12 @@ "spec": "WebAssembly Core", "text": "i8x16.shuffle laneidx16", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-shuffle-xref-syntax-instructions-syntax-laneidx-mathit-laneidx-16" + }, + "snapshot": { + "number": "3.3.3.7", + "spec": "WebAssembly Core", + "text": "i8x16.shuffle laneidx16", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-shuffle-xref-syntax-instructions-syntax-laneidx-mathit-laneidx-16" } }, "#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-swizzle": { @@ -4843,6 +3295,12 @@ "spec": "WebAssembly Core", "text": "i8x16.swizzle", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-swizzle" + }, + "snapshot": { + "number": "3.3.3.6", + "spec": "WebAssembly Core", + "text": "i8x16.swizzle", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-swizzle" } }, "#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-swizzle%E2%91%A0": { @@ -4851,6 +3309,12 @@ "spec": "WebAssembly Core", "text": "i8x16.swizzle", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-swizzle%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.6", + "spec": "WebAssembly Core", + "text": "i8x16.swizzle", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-i8x16-xref-syntax-instructions-syntax-instr-vec-mathsf-swizzle%E2%91%A0" } }, "#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-xref-syntax-instructions-syntax-laneidx-mathit-laneidx": { @@ -4859,6 +3323,12 @@ "spec": "WebAssembly Core", "text": "v128.loadN_lane memarg laneidx", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" + }, + "snapshot": { + "number": "3.3.7.8", + "spec": "WebAssembly Core", + "text": "v128.loadN_lane memarg laneidx", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" } }, "#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-splat-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -4867,6 +3337,12 @@ "spec": "WebAssembly Core", "text": "v128.loadN_splat memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-splat-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.6", + "spec": "WebAssembly Core", + "text": "v128.loadN_splat memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-splat-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-x-m-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -4875,6 +3351,12 @@ "spec": "WebAssembly Core", "text": "v128.loadNxM_sx memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-x-m-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.5", + "spec": "WebAssembly Core", + "text": "v128.loadNxM_sx memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-x-m-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-zero-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -4883,6 +3365,12 @@ "spec": "WebAssembly Core", "text": "v128.loadN_zero memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-zero-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.7", + "spec": "WebAssembly Core", + "text": "v128.loadN_zero memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-zero-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-xref-syntax-instructions-syntax-laneidx-mathit-laneidx": { @@ -4891,6 +3379,12 @@ "spec": "WebAssembly Core", "text": "v128.storeN_lane memarg laneidx", "url": "https://webassembly.github.io/spec/core/bikeshed/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" + }, + "snapshot": { + "number": "3.3.7.9", + "spec": "WebAssembly Core", + "text": "v128.storeN_lane memarg laneidx", + "url": "https://www.w3.org/TR/wasm-core-2/#mathsf-v128-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" } }, "#memories": { @@ -4899,14 +3393,12 @@ "spec": "WebAssembly Core", "text": "Memories", "url": "https://webassembly.github.io/spec/core/bikeshed/#memories" - } - }, - "#memories%E2%91%A0": { + }, "snapshot": { "number": "2.5.5", "spec": "WebAssembly Core", "text": "Memories", - "url": "https://www.w3.org/TR/wasm-core-1/#memories%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#memories" } }, "#memories%E2%91%A0%E2%93%AA": { @@ -4920,7 +3412,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Memories", - "url": "https://www.w3.org/TR/wasm-core-1/#memories%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#memories%E2%91%A0%E2%93%AA" } }, "#memories%E2%91%A1": { @@ -4929,14 +3421,12 @@ "spec": "WebAssembly Core", "text": "Memories", "url": "https://webassembly.github.io/spec/core/bikeshed/#memories%E2%91%A1" - } - }, - "#memories%E2%91%A2": { + }, "snapshot": { - "number": "3.4.3", + "number": "3.2.8.4", "spec": "WebAssembly Core", "text": "Memories", - "url": "https://www.w3.org/TR/wasm-core-1/#memories%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#memories%E2%91%A1" } }, "#memories%E2%91%A3": { @@ -4945,14 +3435,12 @@ "spec": "WebAssembly Core", "text": "Memories", "url": "https://webassembly.github.io/spec/core/bikeshed/#memories%E2%91%A3" - } - }, - "#memories%E2%91%A4": { + }, "snapshot": { - "number": "4.5.2.4", + "number": "3.4.3", "spec": "WebAssembly Core", "text": "Memories", - "url": "https://www.w3.org/TR/wasm-core-1/#memories%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#memories%E2%91%A3" } }, "#memories%E2%91%A5": { @@ -4966,7 +3454,7 @@ "number": "4.5.3.4", "spec": "WebAssembly Core", "text": "Memories", - "url": "https://www.w3.org/TR/wasm-core-1/#memories%E2%91%A5" + "url": "https://www.w3.org/TR/wasm-core-2/#memories%E2%91%A5" } }, "#memories%E2%91%A7": { @@ -4980,15 +3468,7 @@ "number": "6.6.7", "spec": "WebAssembly Core", "text": "Memories", - "url": "https://www.w3.org/TR/wasm-core-1/#memories%E2%91%A7" - } - }, - "#memory-instance--hrefsyntax-meminstmathitmeminst": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Memory Instance meminst", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instance--hrefsyntax-meminstmathitmeminst" + "url": "https://www.w3.org/TR/wasm-core-2/#memories%E2%91%A7" } }, "#memory-instance-xref-exec-runtime-syntax-meminst-mathit-meminst": { @@ -4997,6 +3477,12 @@ "spec": "WebAssembly Core", "text": "Memory Instance meminst", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instance-xref-exec-runtime-syntax-meminst-mathit-meminst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Memory Instance meminst", + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instance-xref-exec-runtime-syntax-meminst-mathit-meminst" } }, "#memory-instances": { @@ -5005,22 +3491,12 @@ "spec": "WebAssembly Core", "text": "Memory Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instances" - } - }, - "#memory-instances%E2%91%A0": { + }, "snapshot": { "number": "4.2.8", "spec": "WebAssembly Core", "text": "Memory Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instances%E2%91%A0" - } - }, - "#memory-instances---hrefsyntax-meminstmathsfdatabn-hrefsyntax-meminstmathsfmaxm": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Memory Instances {data bn,max m?}", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instances---hrefsyntax-meminstmathsfdatabn-hrefsyntax-meminstmathsfmaxm" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instances" } }, "#memory-instances-xref-exec-runtime-syntax-meminst-mathsf-type-xref-syntax-types-syntax-limits-mathit-limits-xref-exec-runtime-syntax-meminst-mathsf-data-b-ast": { @@ -5029,6 +3505,12 @@ "spec": "WebAssembly Core", "text": "Memory Instances {type limits,data b∗}", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instances-xref-exec-runtime-syntax-meminst-mathsf-type-xref-syntax-types-syntax-limits-mathit-limits-xref-exec-runtime-syntax-meminst-mathsf-data-b-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Memory Instances {type limits,data b∗}", + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instances-xref-exec-runtime-syntax-meminst-mathsf-type-xref-syntax-types-syntax-limits-mathit-limits-xref-exec-runtime-syntax-meminst-mathsf-data-b-ast" } }, "#memory-instructions": { @@ -5037,14 +3519,12 @@ "spec": "WebAssembly Core", "text": "Memory Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instructions" - } - }, - "#memory-instructions%E2%91%A0": { + }, "snapshot": { - "number": "2.4.4", + "number": "2.4.7", "spec": "WebAssembly Core", "text": "Memory Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instructions" } }, "#memory-instructions%E2%91%A1": { @@ -5053,14 +3533,12 @@ "spec": "WebAssembly Core", "text": "Memory Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instructions%E2%91%A1" - } - }, - "#memory-instructions%E2%91%A2": { + }, "snapshot": { - "number": "3.3.4", + "number": "3.3.7", "spec": "WebAssembly Core", "text": "Memory Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instructions%E2%91%A1" } }, "#memory-instructions%E2%91%A3": { @@ -5069,14 +3547,12 @@ "spec": "WebAssembly Core", "text": "Memory Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instructions%E2%91%A3" - } - }, - "#memory-instructions%E2%91%A4": { + }, "snapshot": { - "number": "4.4.4", + "number": "4.4.7", "spec": "WebAssembly Core", "text": "Memory Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instructions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instructions%E2%91%A3" } }, "#memory-instructions%E2%91%A5": { @@ -5085,14 +3561,12 @@ "spec": "WebAssembly Core", "text": "Memory Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instructions%E2%91%A5" - } - }, - "#memory-instructions%E2%91%A6": { + }, "snapshot": { - "number": "5.4.4", + "number": "5.4.6", "spec": "WebAssembly Core", "text": "Memory Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instructions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instructions%E2%91%A5" } }, "#memory-instructions%E2%91%A7": { @@ -5101,14 +3575,12 @@ "spec": "WebAssembly Core", "text": "Memory Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-instructions%E2%91%A7" - } - }, - "#memory-instructions%E2%91%A8": { + }, "snapshot": { - "number": "6.5.5", + "number": "6.5.7", "spec": "WebAssembly Core", "text": "Memory Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-instructions%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-instructions%E2%91%A7" } }, "#memory-section": { @@ -5117,14 +3589,12 @@ "spec": "WebAssembly Core", "text": "Memory Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-section" - } - }, - "#memory-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.8", "spec": "WebAssembly Core", "text": "Memory Section", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-section" } }, "#memory-types": { @@ -5133,14 +3603,12 @@ "spec": "WebAssembly Core", "text": "Memory Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-types" - } - }, - "#memory-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.5", + "number": "2.3.8", "spec": "WebAssembly Core", "text": "Memory Types", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-types" } }, "#memory-types%E2%91%A1": { @@ -5149,14 +3617,12 @@ "spec": "WebAssembly Core", "text": "Memory Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-types%E2%91%A1" - } - }, - "#memory-types%E2%91%A2": { + }, "snapshot": { - "number": "3.2.4", + "number": "3.2.5", "spec": "WebAssembly Core", "text": "Memory Types", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-types%E2%91%A1" } }, "#memory-types%E2%91%A3": { @@ -5165,14 +3631,12 @@ "spec": "WebAssembly Core", "text": "Memory Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-types%E2%91%A3" - } - }, - "#memory-types%E2%91%A4": { + }, "snapshot": { - "number": "5.3.5", + "number": "5.3.8", "spec": "WebAssembly Core", "text": "Memory Types", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-types%E2%91%A3" } }, "#memory-types%E2%91%A5": { @@ -5181,14 +3645,12 @@ "spec": "WebAssembly Core", "text": "Memory Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#memory-types%E2%91%A5" - } - }, - "#memory-types%E2%91%A6": { + }, "snapshot": { - "number": "6.4.5", + "number": "6.4.7", "spec": "WebAssembly Core", "text": "Memory Types", - "url": "https://www.w3.org/TR/wasm-core-1/#memory-types%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#memory-types%E2%91%A5" } }, "#module-instances": { @@ -5197,14 +3659,12 @@ "spec": "WebAssembly Core", "text": "Module Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#module-instances" - } - }, - "#module-instances%E2%91%A0": { + }, "snapshot": { "number": "4.2.5", "spec": "WebAssembly Core", "text": "Module Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#module-instances%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#module-instances" } }, "#module-instances%E2%91%A1": { @@ -5213,22 +3673,12 @@ "spec": "WebAssembly Core", "text": "Module Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#module-instances%E2%91%A1" - } - }, - "#module-instances%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Module Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#module-instances%E2%91%A2" - } - }, - "#module-instances--hrefsyntax-moduleinstmathitmoduleinst": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Module Instances moduleinst", - "url": "https://www.w3.org/TR/wasm-core-1/#module-instances--hrefsyntax-moduleinstmathitmoduleinst" + "url": "https://www.w3.org/TR/wasm-core-2/#module-instances%E2%91%A1" } }, "#module-instances-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst": { @@ -5237,6 +3687,12 @@ "spec": "WebAssembly Core", "text": "Module Instances moduleinst", "url": "https://webassembly.github.io/spec/core/bikeshed/#module-instances-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Module Instances moduleinst", + "url": "https://www.w3.org/TR/wasm-core-2/#module-instances-xref-exec-runtime-syntax-moduleinst-mathit-moduleinst" } }, "#module-names": { @@ -5245,14 +3701,12 @@ "spec": "WebAssembly Core", "text": "Module Names", "url": "https://webassembly.github.io/spec/core/bikeshed/#module-names" - } - }, - "#module-names%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Module Names", - "url": "https://www.w3.org/TR/wasm-core-1/#module-names%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#module-names" } }, "#modules": { @@ -5261,14 +3715,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#modules" - } - }, - "#modules%E2%91%A0": { + }, "snapshot": { "number": "2.5", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#modules" } }, "#modules%E2%91%A0%E2%91%A0": { @@ -5277,46 +3729,26 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#modules%E2%91%A0%E2%91%A0" - } - }, - "#modules%E2%91%A0%E2%91%A1": { + }, "snapshot": { "number": "6.6", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A0%E2%91%A1" - } - }, - "#modules%E2%91%A0%E2%91%A2": { - "snapshot": { - "number": "6.6.13", - "spec": "WebAssembly Core", - "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A0%E2%91%A2" - } - }, - "#modules%E2%91%A0%E2%91%A3": { - "current": { - "number": "", - "spec": "WebAssembly Core", - "text": "Modules", - "url": "https://webassembly.github.io/spec/core/bikeshed/#modules%E2%91%A0%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#modules%E2%91%A0%E2%91%A0" } }, - "#modules%E2%91%A0%E2%91%A4": { - "snapshot": { + "#modules%E2%91%A0%E2%91%A3": { + "current": { "number": "", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A0%E2%91%A4" - } - }, - "#modules%E2%91%A0%E2%93%AA": { + "url": "https://webassembly.github.io/spec/core/bikeshed/#modules%E2%91%A0%E2%91%A3" + }, "snapshot": { - "number": "5.5.15", + "number": "", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#modules%E2%91%A0%E2%91%A3" } }, "#modules%E2%91%A1": { @@ -5325,22 +3757,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#modules%E2%91%A1" - } - }, - "#modules%E2%91%A2": { + }, "snapshot": { "number": "3.4", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A2" - } - }, - "#modules%E2%91%A3": { - "snapshot": { - "number": "3.4.10", - "spec": "WebAssembly Core", - "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#modules%E2%91%A1" } }, "#modules%E2%91%A4": { @@ -5349,22 +3771,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#modules%E2%91%A4" - } - }, - "#modules%E2%91%A5": { + }, "snapshot": { "number": "4.5", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A5" - } - }, - "#modules%E2%91%A6": { - "snapshot": { - "number": "4.5.3.8", - "spec": "WebAssembly Core", - "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#modules%E2%91%A4" } }, "#modules%E2%91%A7": { @@ -5373,14 +3785,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#modules%E2%91%A7" - } - }, - "#modules%E2%91%A8": { + }, "snapshot": { "number": "5.5", "spec": "WebAssembly Core", "text": "Modules", - "url": "https://www.w3.org/TR/wasm-core-1/#modules%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#modules%E2%91%A7" } }, "#multiple-tables": { @@ -5389,6 +3799,12 @@ "spec": "WebAssembly Core", "text": "Multiple tables", "url": "https://webassembly.github.io/spec/core/bikeshed/#multiple-tables" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Multiple tables", + "url": "https://www.w3.org/TR/wasm-core-2/#multiple-tables" } }, "#multiple-values": { @@ -5397,6 +3813,12 @@ "spec": "WebAssembly Core", "text": "Multiple values", "url": "https://webassembly.github.io/spec/core/bikeshed/#multiple-values" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Multiple values", + "url": "https://www.w3.org/TR/wasm-core-2/#multiple-values" } }, "#name-maps": { @@ -5405,14 +3827,12 @@ "spec": "WebAssembly Core", "text": "Name Maps", "url": "https://webassembly.github.io/spec/core/bikeshed/#name-maps" - } - }, - "#name-maps%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Name Maps", - "url": "https://www.w3.org/TR/wasm-core-1/#name-maps%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#name-maps" } }, "#name-section": { @@ -5421,14 +3841,12 @@ "spec": "WebAssembly Core", "text": "Name Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#name-section" - } - }, - "#name-section%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Name Section", - "url": "https://www.w3.org/TR/wasm-core-1/#name-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#name-section" } }, "#names": { @@ -5437,14 +3855,12 @@ "spec": "WebAssembly Core", "text": "Names", "url": "https://webassembly.github.io/spec/core/bikeshed/#names" - } - }, - "#names%E2%91%A0": { + }, "snapshot": { - "number": "2.2.4", + "number": "2.2.5", "spec": "WebAssembly Core", "text": "Names", - "url": "https://www.w3.org/TR/wasm-core-1/#names%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#names" } }, "#names%E2%91%A1": { @@ -5453,14 +3869,12 @@ "spec": "WebAssembly Core", "text": "Names", "url": "https://webassembly.github.io/spec/core/bikeshed/#names%E2%91%A1" - } - }, - "#names%E2%91%A2": { + }, "snapshot": { "number": "5.2.4", "spec": "WebAssembly Core", "text": "Names", - "url": "https://www.w3.org/TR/wasm-core-1/#names%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#names%E2%91%A1" } }, "#names%E2%91%A3": { @@ -5469,14 +3883,12 @@ "spec": "WebAssembly Core", "text": "Names", "url": "https://webassembly.github.io/spec/core/bikeshed/#names%E2%91%A3" - } - }, - "#names%E2%91%A4": { + }, "snapshot": { "number": "6.3.4", "spec": "WebAssembly Core", "text": "Names", - "url": "https://www.w3.org/TR/wasm-core-1/#names%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#names%E2%91%A3" } }, "#nan-propagation": { @@ -5485,30 +3897,12 @@ "spec": "WebAssembly Core", "text": "NaN Propagation", "url": "https://webassembly.github.io/spec/core/bikeshed/#nan-propagation" - } - }, - "#nan-propagation%E2%91%A0": { + }, "snapshot": { "number": "4.3.3.2", "spec": "WebAssembly Core", "text": "NaN Propagation", - "url": "https://www.w3.org/TR/wasm-core-1/#nan-propagation%E2%91%A0" - } - }, - "#navigation%E2%91%A0": { - "current": { - "number": "", - "spec": "WebAssembly Core", - "text": "Navigation", - "url": "https://webassembly.github.io/spec/core/bikeshed/#navigation%E2%91%A0" - } - }, - "#non-empty-instruction-sequence--hrefsyntax-instrmathitinstrasthrefsyntax-instrmathitinstr_n": { - "snapshot": { - "number": "3.3.6.2", - "spec": "WebAssembly Core", - "text": "Non-empty Instruction Sequence: instr∗ instrN​", - "url": "https://www.w3.org/TR/wasm-core-1/#non-empty-instruction-sequence--hrefsyntax-instrmathitinstrasthrefsyntax-instrmathitinstr_n" + "url": "https://www.w3.org/TR/wasm-core-2/#nan-propagation" } }, "#non-empty-instruction-sequence-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-mathit-instr-n": { @@ -5517,6 +3911,12 @@ "spec": "WebAssembly Core", "text": "Non-empty Instruction Sequence: instr∗ instrN​", "url": "https://webassembly.github.io/spec/core/bikeshed/#non-empty-instruction-sequence-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-mathit-instr-n" + }, + "snapshot": { + "number": "3.3.9.2", + "spec": "WebAssembly Core", + "text": "Non-empty Instruction Sequence: instr∗ instrN​", + "url": "https://www.w3.org/TR/wasm-core-2/#non-empty-instruction-sequence-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-mathit-instr-n" } }, "#non-trapping-float-to-int-conversions": { @@ -5525,6 +3925,12 @@ "spec": "WebAssembly Core", "text": "Non-trapping float-to-int conversions", "url": "https://webassembly.github.io/spec/core/bikeshed/#non-trapping-float-to-int-conversions" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Non-trapping float-to-int conversions", + "url": "https://www.w3.org/TR/wasm-core-2/#non-trapping-float-to-int-conversions" } }, "#normative": { @@ -5538,7 +3944,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Normative References", - "url": "https://www.w3.org/TR/wasm-core-1/#normative" + "url": "https://www.w3.org/TR/wasm-core-2/#normative" } }, "#null-references-xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t": { @@ -5547,6 +3953,12 @@ "spec": "WebAssembly Core", "text": "Null References ref.null t", "url": "https://webassembly.github.io/spec/core/bikeshed/#null-references-xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t" + }, + "snapshot": { + "number": "4.5.2.2", + "spec": "WebAssembly Core", + "text": "Null References ref.null t", + "url": "https://www.w3.org/TR/wasm-core-2/#null-references-xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t" } }, "#number-types": { @@ -5555,6 +3967,12 @@ "spec": "WebAssembly Core", "text": "Number Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#number-types" + }, + "snapshot": { + "number": "2.3.1", + "spec": "WebAssembly Core", + "text": "Number Types", + "url": "https://www.w3.org/TR/wasm-core-2/#number-types" } }, "#number-types%E2%91%A1": { @@ -5563,6 +3981,12 @@ "spec": "WebAssembly Core", "text": "Number Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#number-types%E2%91%A1" + }, + "snapshot": { + "number": "5.3.1", + "spec": "WebAssembly Core", + "text": "Number Types", + "url": "https://www.w3.org/TR/wasm-core-2/#number-types%E2%91%A1" } }, "#number-types%E2%91%A3": { @@ -5571,6 +3995,12 @@ "spec": "WebAssembly Core", "text": "Number Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#number-types%E2%91%A3" + }, + "snapshot": { + "number": "6.4.1", + "spec": "WebAssembly Core", + "text": "Number Types", + "url": "https://www.w3.org/TR/wasm-core-2/#number-types%E2%91%A3" } }, "#numeric-instructions": { @@ -5579,14 +4009,12 @@ "spec": "WebAssembly Core", "text": "Numeric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#numeric-instructions" - } - }, - "#numeric-instructions%E2%91%A0": { + }, "snapshot": { "number": "2.4.1", "spec": "WebAssembly Core", "text": "Numeric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#numeric-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#numeric-instructions" } }, "#numeric-instructions%E2%91%A1": { @@ -5595,14 +4023,12 @@ "spec": "WebAssembly Core", "text": "Numeric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#numeric-instructions%E2%91%A1" - } - }, - "#numeric-instructions%E2%91%A2": { + }, "snapshot": { "number": "3.3.1", "spec": "WebAssembly Core", "text": "Numeric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#numeric-instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#numeric-instructions%E2%91%A1" } }, "#numeric-instructions%E2%91%A3": { @@ -5611,14 +4037,12 @@ "spec": "WebAssembly Core", "text": "Numeric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#numeric-instructions%E2%91%A3" - } - }, - "#numeric-instructions%E2%91%A4": { + }, "snapshot": { "number": "4.4.1", "spec": "WebAssembly Core", "text": "Numeric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#numeric-instructions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#numeric-instructions%E2%91%A3" } }, "#numeric-instructions%E2%91%A5": { @@ -5627,14 +4051,12 @@ "spec": "WebAssembly Core", "text": "Numeric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#numeric-instructions%E2%91%A5" - } - }, - "#numeric-instructions%E2%91%A6": { + }, "snapshot": { - "number": "5.4.5", + "number": "5.4.7", "spec": "WebAssembly Core", "text": "Numeric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#numeric-instructions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#numeric-instructions%E2%91%A5" } }, "#numeric-instructions%E2%91%A7": { @@ -5643,14 +4065,12 @@ "spec": "WebAssembly Core", "text": "Numeric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#numeric-instructions%E2%91%A7" - } - }, - "#numeric-instructions%E2%91%A8": { + }, "snapshot": { - "number": "6.5.6", + "number": "6.5.8", "spec": "WebAssembly Core", "text": "Numeric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#numeric-instructions%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#numeric-instructions%E2%91%A7" } }, "#numeric-values-t-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c": { @@ -5659,6 +4079,12 @@ "spec": "WebAssembly Core", "text": "Numeric Values t.const c", "url": "https://webassembly.github.io/spec/core/bikeshed/#numeric-values-t-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c" + }, + "snapshot": { + "number": "4.5.2.1", + "spec": "WebAssembly Core", + "text": "Numeric Values t.const c", + "url": "https://www.w3.org/TR/wasm-core-2/#numeric-values-t-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c" } }, "#numerics": { @@ -5667,14 +4093,12 @@ "spec": "WebAssembly Core", "text": "Numerics", "url": "https://webassembly.github.io/spec/core/bikeshed/#numerics" - } - }, - "#numerics%E2%91%A0": { + }, "snapshot": { "number": "4.3", "spec": "WebAssembly Core", "text": "Numerics", - "url": "https://www.w3.org/TR/wasm-core-1/#numerics%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#numerics" } }, "#overview": { @@ -5683,14 +4107,12 @@ "spec": "WebAssembly Core", "text": "Overview", "url": "https://webassembly.github.io/spec/core/bikeshed/#overview" - } - }, - "#overview%E2%91%A0": { + }, "snapshot": { - "number": "1.3", + "number": "1.2", "spec": "WebAssembly Core", "text": "Overview", - "url": "https://www.w3.org/TR/wasm-core-1/#overview%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#overview" } }, "#parametric-instructions": { @@ -5699,14 +4121,12 @@ "spec": "WebAssembly Core", "text": "Parametric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#parametric-instructions" - } - }, - "#parametric-instructions%E2%91%A0": { + }, "snapshot": { - "number": "2.4.2", + "number": "2.4.4", "spec": "WebAssembly Core", "text": "Parametric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#parametric-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#parametric-instructions" } }, "#parametric-instructions%E2%91%A1": { @@ -5715,14 +4135,12 @@ "spec": "WebAssembly Core", "text": "Parametric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#parametric-instructions%E2%91%A1" - } - }, - "#parametric-instructions%E2%91%A2": { + }, "snapshot": { - "number": "3.3.2", + "number": "3.3.4", "spec": "WebAssembly Core", "text": "Parametric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#parametric-instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#parametric-instructions%E2%91%A1" } }, "#parametric-instructions%E2%91%A3": { @@ -5731,14 +4149,12 @@ "spec": "WebAssembly Core", "text": "Parametric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#parametric-instructions%E2%91%A3" - } - }, - "#parametric-instructions%E2%91%A4": { + }, "snapshot": { - "number": "4.4.2", + "number": "4.4.4", "spec": "WebAssembly Core", "text": "Parametric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#parametric-instructions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#parametric-instructions%E2%91%A3" } }, "#parametric-instructions%E2%91%A5": { @@ -5747,14 +4163,12 @@ "spec": "WebAssembly Core", "text": "Parametric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#parametric-instructions%E2%91%A5" - } - }, - "#parametric-instructions%E2%91%A6": { + }, "snapshot": { - "number": "5.4.2", + "number": "5.4.3", "spec": "WebAssembly Core", "text": "Parametric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#parametric-instructions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#parametric-instructions%E2%91%A5" } }, "#parametric-instructions%E2%91%A7": { @@ -5763,22 +4177,12 @@ "spec": "WebAssembly Core", "text": "Parametric Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#parametric-instructions%E2%91%A7" - } - }, - "#parametric-instructions%E2%91%A8": { + }, "snapshot": { - "number": "6.5.3", + "number": "6.5.4", "spec": "WebAssembly Core", "text": "Parametric Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#parametric-instructions%E2%91%A8" - } - }, - "#pre--and-post-conditions": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Pre- and Post-Conditions", - "url": "https://www.w3.org/TR/wasm-core-1/#pre--and-post-conditions" + "url": "https://www.w3.org/TR/wasm-core-2/#parametric-instructions%E2%91%A7" } }, "#pre-and-post-conditions": { @@ -5787,6 +4191,12 @@ "spec": "WebAssembly Core", "text": "Pre- and Post-Conditions", "url": "https://webassembly.github.io/spec/core/bikeshed/#pre-and-post-conditions" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Pre- and Post-Conditions", + "url": "https://www.w3.org/TR/wasm-core-2/#pre-and-post-conditions" } }, "#prose-notation": { @@ -5795,14 +4205,12 @@ "spec": "WebAssembly Core", "text": "Prose Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#prose-notation" - } - }, - "#prose-notation%E2%91%A0": { + }, "snapshot": { "number": "3.1.2", "spec": "WebAssembly Core", "text": "Prose Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#prose-notation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#prose-notation" } }, "#prose-notation%E2%91%A1": { @@ -5811,14 +4219,12 @@ "spec": "WebAssembly Core", "text": "Prose Notation", "url": "https://webassembly.github.io/spec/core/bikeshed/#prose-notation%E2%91%A1" - } - }, - "#prose-notation%E2%91%A2": { + }, "snapshot": { "number": "4.1.1", "spec": "WebAssembly Core", "text": "Prose Notation", - "url": "https://www.w3.org/TR/wasm-core-1/#prose-notation%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#prose-notation%E2%91%A1" } }, "#reference-instructions": { @@ -5827,6 +4233,12 @@ "spec": "WebAssembly Core", "text": "Reference Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-instructions" + }, + "snapshot": { + "number": "2.4.3", + "spec": "WebAssembly Core", + "text": "Reference Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-instructions" } }, "#reference-instructions%E2%91%A1": { @@ -5835,6 +4247,12 @@ "spec": "WebAssembly Core", "text": "Reference Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-instructions%E2%91%A1" + }, + "snapshot": { + "number": "3.3.2", + "spec": "WebAssembly Core", + "text": "Reference Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-instructions%E2%91%A1" } }, "#reference-instructions%E2%91%A3": { @@ -5843,6 +4261,12 @@ "spec": "WebAssembly Core", "text": "Reference Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-instructions%E2%91%A3" + }, + "snapshot": { + "number": "4.4.2", + "spec": "WebAssembly Core", + "text": "Reference Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-instructions%E2%91%A3" } }, "#reference-instructions%E2%91%A5": { @@ -5851,6 +4275,12 @@ "spec": "WebAssembly Core", "text": "Reference Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-instructions%E2%91%A5" + }, + "snapshot": { + "number": "5.4.2", + "spec": "WebAssembly Core", + "text": "Reference Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-instructions%E2%91%A5" } }, "#reference-instructions%E2%91%A7": { @@ -5859,6 +4289,12 @@ "spec": "WebAssembly Core", "text": "Reference Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-instructions%E2%91%A7" + }, + "snapshot": { + "number": "6.5.3", + "spec": "WebAssembly Core", + "text": "Reference Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-instructions%E2%91%A7" } }, "#reference-types": { @@ -5867,6 +4303,12 @@ "spec": "WebAssembly Core", "text": "Reference Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-types" + }, + "snapshot": { + "number": "2.3.3", + "spec": "WebAssembly Core", + "text": "Reference Types", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-types" } }, "#reference-types%E2%91%A1": { @@ -5875,6 +4317,12 @@ "spec": "WebAssembly Core", "text": "Reference Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-types%E2%91%A1" + }, + "snapshot": { + "number": "5.3.3", + "spec": "WebAssembly Core", + "text": "Reference Types", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-types%E2%91%A1" } }, "#reference-types%E2%91%A3": { @@ -5883,6 +4331,12 @@ "spec": "WebAssembly Core", "text": "Reference Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-types%E2%91%A3" + }, + "snapshot": { + "number": "6.4.3", + "spec": "WebAssembly Core", + "text": "Reference Types", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-types%E2%91%A3" } }, "#reference-types%E2%91%A5": { @@ -5891,6 +4345,12 @@ "spec": "WebAssembly Core", "text": "Reference types", "url": "https://webassembly.github.io/spec/core/bikeshed/#reference-types%E2%91%A5" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Reference types", + "url": "https://www.w3.org/TR/wasm-core-2/#reference-types%E2%91%A5" } }, "#references": { @@ -5904,7 +4364,7 @@ "number": "", "spec": "WebAssembly Core", "text": "References", - "url": "https://www.w3.org/TR/wasm-core-1/#references" + "url": "https://www.w3.org/TR/wasm-core-2/#references" } }, "#release-2-0": { @@ -5913,6 +4373,12 @@ "spec": "WebAssembly Core", "text": "Release 2.0", "url": "https://webassembly.github.io/spec/core/bikeshed/#release-2-0" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Release 2.0", + "url": "https://www.w3.org/TR/wasm-core-2/#release-2-0" } }, "#representations": { @@ -5921,14 +4387,12 @@ "spec": "WebAssembly Core", "text": "Representations", "url": "https://webassembly.github.io/spec/core/bikeshed/#representations" - } - }, - "#representations%E2%91%A0": { + }, "snapshot": { "number": "4.3.1", "spec": "WebAssembly Core", "text": "Representations", - "url": "https://www.w3.org/TR/wasm-core-1/#representations%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#representations" } }, "#result-types": { @@ -5937,14 +4401,12 @@ "spec": "WebAssembly Core", "text": "Result Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#result-types" - } - }, - "#result-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.2", + "number": "2.3.5", "spec": "WebAssembly Core", "text": "Result Types", - "url": "https://www.w3.org/TR/wasm-core-1/#result-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#result-types" } }, "#result-types%E2%91%A1": { @@ -5953,22 +4415,12 @@ "spec": "WebAssembly Core", "text": "Result Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#result-types%E2%91%A1" - } - }, - "#result-types%E2%91%A2": { - "snapshot": { - "number": "5.3.2", - "spec": "WebAssembly Core", - "text": "Result Types", - "url": "https://www.w3.org/TR/wasm-core-1/#result-types%E2%91%A2" - } - }, - "#result-types%E2%91%A4": { + }, "snapshot": { - "number": "6.4.2", + "number": "5.3.5", "spec": "WebAssembly Core", "text": "Result Types", - "url": "https://www.w3.org/TR/wasm-core-1/#result-types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#result-types%E2%91%A1" } }, "#results": { @@ -5977,38 +4429,26 @@ "spec": "WebAssembly Core", "text": "Results", "url": "https://webassembly.github.io/spec/core/bikeshed/#results" - } - }, - "#results%E2%91%A0": { + }, "snapshot": { "number": "4.2.2", "spec": "WebAssembly Core", "text": "Results", - "url": "https://www.w3.org/TR/wasm-core-1/#results%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#results" } }, "#results%E2%91%A1": { "current": { "number": "", - "spec": "WebAssembly Core", - "text": "Results", - "url": "https://webassembly.github.io/spec/core/bikeshed/#results%E2%91%A1" - } - }, - "#results--hrefsyntax-trapmathsftrap": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Results trap", - "url": "https://www.w3.org/TR/wasm-core-1/#results--hrefsyntax-trapmathsftrap" - } - }, - "#results--hrefsyntax-valmathitvalast": { + "spec": "WebAssembly Core", + "text": "Results", + "url": "https://webassembly.github.io/spec/core/bikeshed/#results%E2%91%A1" + }, "snapshot": { "number": "", "spec": "WebAssembly Core", - "text": "Results val∗", - "url": "https://www.w3.org/TR/wasm-core-1/#results--hrefsyntax-valmathitvalast" + "text": "Results", + "url": "https://www.w3.org/TR/wasm-core-2/#results%E2%91%A1" } }, "#results-xref-exec-runtime-syntax-trap-mathsf-trap": { @@ -6017,6 +4457,12 @@ "spec": "WebAssembly Core", "text": "Results trap", "url": "https://webassembly.github.io/spec/core/bikeshed/#results-xref-exec-runtime-syntax-trap-mathsf-trap" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Results trap", + "url": "https://www.w3.org/TR/wasm-core-2/#results-xref-exec-runtime-syntax-trap-mathsf-trap" } }, "#results-xref-exec-runtime-syntax-val-mathit-val-ast": { @@ -6025,6 +4471,12 @@ "spec": "WebAssembly Core", "text": "Results val∗", "url": "https://webassembly.github.io/spec/core/bikeshed/#results-xref-exec-runtime-syntax-val-mathit-val-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Results val∗", + "url": "https://www.w3.org/TR/wasm-core-2/#results-xref-exec-runtime-syntax-val-mathit-val-ast" } }, "#returning-from-a-function": { @@ -6033,14 +4485,12 @@ "spec": "WebAssembly Core", "text": "Returning from a function", "url": "https://webassembly.github.io/spec/core/bikeshed/#returning-from-a-function" - } - }, - "#returning-from-a-function%E2%91%A0": { + }, "snapshot": { - "number": "4.4.7.2", + "number": "4.4.10.2", "spec": "WebAssembly Core", "text": "Returning from a function", - "url": "https://www.w3.org/TR/wasm-core-1/#returning-from-a-function%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#returning-from-a-function" } }, "#rounding": { @@ -6049,14 +4499,12 @@ "spec": "WebAssembly Core", "text": "Rounding", "url": "https://webassembly.github.io/spec/core/bikeshed/#rounding" - } - }, - "#rounding%E2%91%A0": { + }, "snapshot": { "number": "4.3.3.1", "spec": "WebAssembly Core", "text": "Rounding", - "url": "https://www.w3.org/TR/wasm-core-1/#rounding%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#rounding" } }, "#runtime-structure": { @@ -6065,14 +4513,12 @@ "spec": "WebAssembly Core", "text": "Runtime Structure", "url": "https://webassembly.github.io/spec/core/bikeshed/#runtime-structure" - } - }, - "#runtime-structure%E2%91%A0": { + }, "snapshot": { "number": "4.2", "spec": "WebAssembly Core", "text": "Runtime Structure", - "url": "https://www.w3.org/TR/wasm-core-1/#runtime-structure%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#runtime-structure" } }, "#scope": { @@ -6081,14 +4527,12 @@ "spec": "WebAssembly Core", "text": "Scope", "url": "https://webassembly.github.io/spec/core/bikeshed/#scope" - } - }, - "#scope%E2%91%A0": { + }, "snapshot": { "number": "1.1.2", "spec": "WebAssembly Core", "text": "Scope", - "url": "https://www.w3.org/TR/wasm-core-1/#scope%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#scope" } }, "#sections": { @@ -6097,14 +4541,12 @@ "spec": "WebAssembly Core", "text": "Sections", "url": "https://webassembly.github.io/spec/core/bikeshed/#sections" - } - }, - "#sections%E2%91%A0": { + }, "snapshot": { "number": "5.5.2", "spec": "WebAssembly Core", "text": "Sections", - "url": "https://www.w3.org/TR/wasm-core-1/#sections%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#sections" } }, "#security-considerations": { @@ -6113,14 +4555,12 @@ "spec": "WebAssembly Core", "text": "Security Considerations", "url": "https://webassembly.github.io/spec/core/bikeshed/#security-considerations" - } - }, - "#security-considerations%E2%91%A0": { + }, "snapshot": { - "number": "1.2", + "number": "1.1.3", "spec": "WebAssembly Core", "text": "Security Considerations", - "url": "https://www.w3.org/TR/wasm-core-1/#security-considerations%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#security-considerations" } }, "#semantic-phases": { @@ -6129,14 +4569,12 @@ "spec": "WebAssembly Core", "text": "Semantic Phases", "url": "https://webassembly.github.io/spec/core/bikeshed/#semantic-phases" - } - }, - "#semantic-phases%E2%91%A0": { + }, "snapshot": { - "number": "1.3.2", + "number": "1.2.2", "spec": "WebAssembly Core", "text": "Semantic Phases", - "url": "https://www.w3.org/TR/wasm-core-1/#semantic-phases%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#semantic-phases" } }, "#sign-extension-instructions": { @@ -6145,6 +4583,12 @@ "spec": "WebAssembly Core", "text": "Sign extension instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#sign-extension-instructions" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Sign extension instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#sign-extension-instructions" } }, "#sign-interpretation": { @@ -6153,14 +4597,12 @@ "spec": "WebAssembly Core", "text": "Sign Interpretation", "url": "https://webassembly.github.io/spec/core/bikeshed/#sign-interpretation" - } - }, - "#sign-interpretation%E2%91%A0": { + }, "snapshot": { "number": "4.3.2.1", "spec": "WebAssembly Core", "text": "Sign Interpretation", - "url": "https://www.w3.org/TR/wasm-core-1/#sign-interpretation%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#sign-interpretation" } }, "#sotd": { @@ -6169,6 +4611,12 @@ "spec": "WebAssembly Core", "text": "Status of this document", "url": "https://webassembly.github.io/spec/core/bikeshed/#sotd" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Status of this document", + "url": "https://www.w3.org/TR/wasm-core-2/#sotd" } }, "#soundness": { @@ -6177,6 +4625,12 @@ "spec": "WebAssembly Core", "text": "Soundness", "url": "https://webassembly.github.io/spec/core/bikeshed/#soundness" + }, + "snapshot": { + "number": "A.5", + "spec": "WebAssembly Core", + "text": "Soundness", + "url": "https://www.w3.org/TR/wasm-core-2/#soundness" } }, "#stack": { @@ -6185,14 +4639,12 @@ "spec": "WebAssembly Core", "text": "Stack", "url": "https://webassembly.github.io/spec/core/bikeshed/#stack" - } - }, - "#stack%E2%91%A0": { + }, "snapshot": { - "number": "4.2.12", + "number": "4.2.14", "spec": "WebAssembly Core", "text": "Stack", - "url": "https://www.w3.org/TR/wasm-core-1/#stack%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#stack" } }, "#start-function": { @@ -6201,14 +4653,12 @@ "spec": "WebAssembly Core", "text": "Start Function", "url": "https://webassembly.github.io/spec/core/bikeshed/#start-function" - } - }, - "#start-function%E2%91%A0": { + }, "snapshot": { "number": "2.5.9", "spec": "WebAssembly Core", "text": "Start Function", - "url": "https://www.w3.org/TR/wasm-core-1/#start-function%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#start-function" } }, "#start-function%E2%91%A1": { @@ -6217,14 +4667,12 @@ "spec": "WebAssembly Core", "text": "Start Function", "url": "https://webassembly.github.io/spec/core/bikeshed/#start-function%E2%91%A1" - } - }, - "#start-function%E2%91%A2": { + }, "snapshot": { "number": "3.4.7", "spec": "WebAssembly Core", "text": "Start Function", - "url": "https://www.w3.org/TR/wasm-core-1/#start-function%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#start-function%E2%91%A1" } }, "#start-function%E2%91%A3": { @@ -6233,14 +4681,12 @@ "spec": "WebAssembly Core", "text": "Start Function", "url": "https://webassembly.github.io/spec/core/bikeshed/#start-function%E2%91%A3" - } - }, - "#start-function%E2%91%A4": { + }, "snapshot": { "number": "6.6.10", "spec": "WebAssembly Core", "text": "Start Function", - "url": "https://www.w3.org/TR/wasm-core-1/#start-function%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#start-function%E2%91%A3" } }, "#start-section": { @@ -6249,38 +4695,26 @@ "spec": "WebAssembly Core", "text": "Start Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#start-section" - } - }, - "#start-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.11", "spec": "WebAssembly Core", "text": "Start Section", - "url": "https://www.w3.org/TR/wasm-core-1/#start-section%E2%91%A0" - } - }, - "#status": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Status of this document", - "url": "https://www.w3.org/TR/wasm-core-1/#status" + "url": "https://www.w3.org/TR/wasm-core-2/#start-section" } }, "#storage": { "current": { - "number": "4.3.1.3", + "number": "4.3.1.4", "spec": "WebAssembly Core", "text": "Storage", "url": "https://webassembly.github.io/spec/core/bikeshed/#storage" - } - }, - "#storage%E2%91%A0": { + }, "snapshot": { - "number": "4.3.1.3", + "number": "4.3.1.4", "spec": "WebAssembly Core", "text": "Storage", - "url": "https://www.w3.org/TR/wasm-core-1/#storage%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#storage" } }, "#store": { @@ -6289,14 +4723,12 @@ "spec": "WebAssembly Core", "text": "Store", "url": "https://webassembly.github.io/spec/core/bikeshed/#store" - } - }, - "#store%E2%91%A0": { + }, "snapshot": { "number": "4.2.3", "spec": "WebAssembly Core", "text": "Store", - "url": "https://www.w3.org/TR/wasm-core-1/#store%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#store" } }, "#store%E2%91%A1": { @@ -6305,30 +4737,12 @@ "spec": "WebAssembly Core", "text": "Store", "url": "https://webassembly.github.io/spec/core/bikeshed/#store%E2%91%A1" - } - }, - "#store%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Store", - "url": "https://www.w3.org/TR/wasm-core-1/#store%E2%91%A2" - } - }, - "#store--s": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Store S", - "url": "https://www.w3.org/TR/wasm-core-1/#store--s" - } - }, - "#store--s%E2%91%A0": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Store S", - "url": "https://www.w3.org/TR/wasm-core-1/#store--s%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#store%E2%91%A1" } }, "#store-extension": { @@ -6337,14 +4751,12 @@ "spec": "WebAssembly Core", "text": "Store Extension", "url": "https://webassembly.github.io/spec/core/bikeshed/#store-extension" - } - }, - "#store-extension%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Store Extension", - "url": "https://www.w3.org/TR/wasm-core-1/#store-extension%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#store-extension" } }, "#store-extension%E2%91%A1": { @@ -6353,14 +4765,12 @@ "spec": "WebAssembly Core", "text": "Store Extension", "url": "https://webassembly.github.io/spec/core/bikeshed/#store-extension%E2%91%A1" - } - }, - "#store-extension%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Store Extension", - "url": "https://www.w3.org/TR/wasm-core-1/#store-extension%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#store-extension%E2%91%A1" } }, "#store-s": { @@ -6369,6 +4779,12 @@ "spec": "WebAssembly Core", "text": "Store S", "url": "https://webassembly.github.io/spec/core/bikeshed/#store-s" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Store S", + "url": "https://www.w3.org/TR/wasm-core-2/#store-s" } }, "#store-validity": { @@ -6377,14 +4793,12 @@ "spec": "WebAssembly Core", "text": "Store Validity", "url": "https://webassembly.github.io/spec/core/bikeshed/#store-validity" - } - }, - "#store-validity%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Store Validity", - "url": "https://www.w3.org/TR/wasm-core-1/#store-validity%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#store-validity" } }, "#strings": { @@ -6393,14 +4807,12 @@ "spec": "WebAssembly Core", "text": "Strings", "url": "https://webassembly.github.io/spec/core/bikeshed/#strings" - } - }, - "#strings%E2%91%A0": { + }, "snapshot": { "number": "6.3.3", "spec": "WebAssembly Core", "text": "Strings", - "url": "https://www.w3.org/TR/wasm-core-1/#strings%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#strings" } }, "#structure": { @@ -6409,14 +4821,12 @@ "spec": "WebAssembly Core", "text": "Structure", "url": "https://webassembly.github.io/spec/core/bikeshed/#structure" - } - }, - "#structure%E2%91%A0": { + }, "snapshot": { "number": "2", "spec": "WebAssembly Core", "text": "Structure", - "url": "https://www.w3.org/TR/wasm-core-1/#structure%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#structure" } }, "#structure%E2%91%A1": { @@ -6425,14 +4835,12 @@ "spec": "WebAssembly Core", "text": "Structure", "url": "https://webassembly.github.io/spec/core/bikeshed/#structure%E2%91%A1" - } - }, - "#structure%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Structure", - "url": "https://www.w3.org/TR/wasm-core-1/#structure%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#structure%E2%91%A1" } }, "#subsections": { @@ -6441,22 +4849,12 @@ "spec": "WebAssembly Core", "text": "Subsections", "url": "https://webassembly.github.io/spec/core/bikeshed/#subsections" - } - }, - "#subsections%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Subsections", - "url": "https://www.w3.org/TR/wasm-core-1/#subsections%E2%91%A0" - } - }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "W3C Recommendation, 5 December 2019", - "url": "https://www.w3.org/TR/wasm-core-1/#subtitle" + "url": "https://www.w3.org/TR/wasm-core-2/#subsections" } }, "#syntactic-limits": { @@ -6465,14 +4863,12 @@ "spec": "WebAssembly Core", "text": "Syntactic Limits", "url": "https://webassembly.github.io/spec/core/bikeshed/#syntactic-limits" - } - }, - "#syntactic-limits%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Syntactic Limits", - "url": "https://www.w3.org/TR/wasm-core-1/#syntactic-limits%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#syntactic-limits" } }, "#syntax-vcvtop": { @@ -6481,6 +4877,12 @@ "spec": "WebAssembly Core", "text": "Conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#syntax-vcvtop" + }, + "snapshot": { + "number": "2.4.2.1", + "spec": "WebAssembly Core", + "text": "Conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#syntax-vcvtop" } }, "#t-1-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extract-lane-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-x": { @@ -6489,6 +4891,12 @@ "spec": "WebAssembly Core", "text": "t1​xN.extract_lane_sx? x", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-1-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extract-lane-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-x" + }, + "snapshot": { + "number": "4.4.3.9", + "spec": "WebAssembly Core", + "text": "t1​xN.extract_lane_sx? x", + "url": "https://www.w3.org/TR/wasm-core-2/#t-1-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extract-lane-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-x" } }, "#t-1-n-xref-syntax-types-syntax-functype-rightarrow-t-2-m": { @@ -6497,6 +4905,12 @@ "spec": "WebAssembly Core", "text": "[t1n​]→[t2m​]", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-1-n-xref-syntax-types-syntax-functype-rightarrow-t-2-m" + }, + "snapshot": { + "number": "3.2.3.1", + "spec": "WebAssembly Core", + "text": "[t1n​]→[t2m​]", + "url": "https://www.w3.org/TR/wasm-core-2/#t-1-n-xref-syntax-types-syntax-functype-rightarrow-t-2-m" } }, "#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extadd-pairwise-t-1-mathsf-x-m-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -6505,6 +4919,12 @@ "spec": "WebAssembly Core", "text": "t2​xN.extadd_pairwise_t1​xM_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extadd-pairwise-t-1-mathsf-x-m-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "4.4.3.23", + "spec": "WebAssembly Core", + "text": "t2​xN.extadd_pairwise_t1​xM_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extadd-pairwise-t-1-mathsf-x-m-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extmul-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -6513,6 +4933,12 @@ "spec": "WebAssembly Core", "text": "t2​xN.extmul_half_t1​xM_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extmul-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "4.4.3.22", + "spec": "WebAssembly Core", + "text": "t2​xN.extmul_half_t1​xM_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extmul-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-narrow-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -6521,6 +4947,12 @@ "spec": "WebAssembly Core", "text": "t2​xN.narrow_t1​xM_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-narrow-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "4.4.3.17", + "spec": "WebAssembly Core", + "text": "t2​xN.narrow_t1​xM_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-narrow-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -6529,14 +4961,26 @@ "spec": "WebAssembly Core", "text": "t2​xN.vcvtop_t1​xM_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "4.4.3.18", + "spec": "WebAssembly Core", + "text": "t2​xN.vcvtop_t1​xM_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero": { "current": { "number": "4.4.3.20", "spec": "WebAssembly Core", - "text": "t2​xN.vcvtop_t1​xM_sx_zero", + "text": "t2​xN.vcvtop_t1​xM_sx?_zero", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero" + }, + "snapshot": { + "number": "4.4.3.20", + "spec": "WebAssembly Core", + "text": "t2​xN.vcvtop_t1​xM_sx?_zero", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero" } }, "#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -6545,6 +4989,12 @@ "spec": "WebAssembly Core", "text": "t2​xN.vcvtop_half_t1​xM_sx?", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "4.4.3.19", + "spec": "WebAssembly Core", + "text": "t2​xN.vcvtop_half_t1​xM_sx?", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-t-1-mathsf-x-m-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#t-2-mathsf-xref-syntax-instructions-syntax-cvtop-mathit-cvtop-mathsf-t-1-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -6553,6 +5003,12 @@ "spec": "WebAssembly Core", "text": "t2​.cvtop_t1​_sx?", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-xref-syntax-instructions-syntax-cvtop-mathit-cvtop-mathsf-t-1-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "3.3.1.6", + "spec": "WebAssembly Core", + "text": "t2​.cvtop_t1​_sx?", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-xref-syntax-instructions-syntax-cvtop-mathit-cvtop-mathsf-t-1-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#t-2-mathsf-xref-syntax-instructions-syntax-cvtop-mathit-cvtop-mathsf-t-1-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx%E2%91%A0": { @@ -6561,6 +5017,12 @@ "spec": "WebAssembly Core", "text": "t2​.cvtop_t1​_sx?", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-2-mathsf-xref-syntax-instructions-syntax-cvtop-mathit-cvtop-mathsf-t-1-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx%E2%91%A0" + }, + "snapshot": { + "number": "4.4.1.6", + "spec": "WebAssembly Core", + "text": "t2​.cvtop_t1​_sx?", + "url": "https://www.w3.org/TR/wasm-core-2/#t-2-mathsf-xref-syntax-instructions-syntax-cvtop-mathit-cvtop-mathsf-t-1-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx%E2%91%A0" } }, "#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-bitmask": { @@ -6569,6 +5031,12 @@ "spec": "WebAssembly Core", "text": "txN.bitmask", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-bitmask" + }, + "snapshot": { + "number": "4.4.3.16", + "spec": "WebAssembly Core", + "text": "txN.bitmask", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-bitmask" } }, "#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vishiftop-mathit-vishiftop": { @@ -6577,6 +5045,12 @@ "spec": "WebAssembly Core", "text": "txN.vishiftop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vishiftop-mathit-vishiftop" + }, + "snapshot": { + "number": "4.4.3.14", + "spec": "WebAssembly Core", + "text": "txN.vishiftop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vishiftop-mathit-vishiftop" } }, "#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vrelop-mathit-vrelop": { @@ -6585,6 +5059,12 @@ "spec": "WebAssembly Core", "text": "txN.vrelop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vrelop-mathit-vrelop" + }, + "snapshot": { + "number": "4.4.3.13", + "spec": "WebAssembly Core", + "text": "txN.vrelop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-x-n-mathsf-xref-syntax-instructions-syntax-vrelop-mathit-vrelop" } }, "#t-mathsf-xref-syntax-instructions-syntax-binop-mathit-binop": { @@ -6593,6 +5073,12 @@ "spec": "WebAssembly Core", "text": "t.binop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-binop-mathit-binop" + }, + "snapshot": { + "number": "3.3.1.3", + "spec": "WebAssembly Core", + "text": "t.binop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-binop-mathit-binop" } }, "#t-mathsf-xref-syntax-instructions-syntax-binop-mathit-binop%E2%91%A0": { @@ -6601,6 +5087,12 @@ "spec": "WebAssembly Core", "text": "t.binop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-binop-mathit-binop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.1.3", + "spec": "WebAssembly Core", + "text": "t.binop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-binop-mathit-binop%E2%91%A0" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -6609,6 +5101,12 @@ "spec": "WebAssembly Core", "text": "t.loadN_sx memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.2", + "spec": "WebAssembly Core", + "text": "t.loadN_sx memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -6617,6 +5115,12 @@ "spec": "WebAssembly Core", "text": "t.load memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.1", + "spec": "WebAssembly Core", + "text": "t.load memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-xref-syntax-instructions-syntax-memarg-mathit-memarg-and-t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -6625,6 +5129,12 @@ "spec": "WebAssembly Core", "text": "t.load memarg and t.loadN_sx memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-xref-syntax-instructions-syntax-memarg-mathit-memarg-and-t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "4.4.7.1", + "spec": "WebAssembly Core", + "text": "t.load memarg and t.loadN_sx memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-xref-syntax-instructions-syntax-memarg-mathit-memarg-and-t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -6633,6 +5143,12 @@ "spec": "WebAssembly Core", "text": "t.storeN memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.4", + "spec": "WebAssembly Core", + "text": "t.storeN memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -6641,6 +5157,12 @@ "spec": "WebAssembly Core", "text": "t.store memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "3.3.7.3", + "spec": "WebAssembly Core", + "text": "t.store memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-xref-syntax-instructions-syntax-memarg-mathit-memarg-and-t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -6649,6 +5171,12 @@ "spec": "WebAssembly Core", "text": "t.store memarg and t.storeN memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-xref-syntax-instructions-syntax-memarg-mathit-memarg-and-t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "4.4.7.6", + "spec": "WebAssembly Core", + "text": "t.store memarg and t.storeN memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-xref-syntax-instructions-syntax-memarg-mathit-memarg-and-t-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c": { @@ -6657,6 +5185,12 @@ "spec": "WebAssembly Core", "text": "t.const c", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c" + }, + "snapshot": { + "number": "3.3.1.1", + "spec": "WebAssembly Core", + "text": "t.const c", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c" } }, "#t-mathsf-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c%E2%91%A0": { @@ -6665,6 +5199,12 @@ "spec": "WebAssembly Core", "text": "t.const c", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c%E2%91%A0" + }, + "snapshot": { + "number": "4.4.1.1", + "spec": "WebAssembly Core", + "text": "t.const c", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-instr-numeric-mathsf-const-c%E2%91%A0" } }, "#t-mathsf-xref-syntax-instructions-syntax-relop-mathit-relop": { @@ -6673,6 +5213,12 @@ "spec": "WebAssembly Core", "text": "t.relop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-relop-mathit-relop" + }, + "snapshot": { + "number": "3.3.1.5", + "spec": "WebAssembly Core", + "text": "t.relop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-relop-mathit-relop" } }, "#t-mathsf-xref-syntax-instructions-syntax-relop-mathit-relop%E2%91%A0": { @@ -6681,6 +5227,12 @@ "spec": "WebAssembly Core", "text": "t.relop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-relop-mathit-relop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.1.5", + "spec": "WebAssembly Core", + "text": "t.relop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-relop-mathit-relop%E2%91%A0" } }, "#t-mathsf-xref-syntax-instructions-syntax-testop-mathit-testop": { @@ -6689,6 +5241,12 @@ "spec": "WebAssembly Core", "text": "t.testop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-testop-mathit-testop" + }, + "snapshot": { + "number": "3.3.1.4", + "spec": "WebAssembly Core", + "text": "t.testop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-testop-mathit-testop" } }, "#t-mathsf-xref-syntax-instructions-syntax-testop-mathit-testop%E2%91%A0": { @@ -6697,6 +5255,12 @@ "spec": "WebAssembly Core", "text": "t.testop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-testop-mathit-testop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.1.4", + "spec": "WebAssembly Core", + "text": "t.testop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-testop-mathit-testop%E2%91%A0" } }, "#t-mathsf-xref-syntax-instructions-syntax-unop-mathit-unop": { @@ -6705,6 +5269,12 @@ "spec": "WebAssembly Core", "text": "t.unop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-unop-mathit-unop" + }, + "snapshot": { + "number": "3.3.1.2", + "spec": "WebAssembly Core", + "text": "t.unop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-unop-mathit-unop" } }, "#t-mathsf-xref-syntax-instructions-syntax-unop-mathit-unop%E2%91%A0": { @@ -6713,14 +5283,12 @@ "spec": "WebAssembly Core", "text": "t.unop", "url": "https://webassembly.github.io/spec/core/bikeshed/#t-mathsf-xref-syntax-instructions-syntax-unop-mathit-unop%E2%91%A0" - } - }, - "#table-instance--hrefsyntax-tableinstmathittableinst": { + }, "snapshot": { - "number": "", + "number": "4.4.1.2", "spec": "WebAssembly Core", - "text": "Table Instance tableinst", - "url": "https://www.w3.org/TR/wasm-core-1/#table-instance--hrefsyntax-tableinstmathittableinst" + "text": "t.unop", + "url": "https://www.w3.org/TR/wasm-core-2/#t-mathsf-xref-syntax-instructions-syntax-unop-mathit-unop%E2%91%A0" } }, "#table-instance-xref-exec-runtime-syntax-tableinst-mathit-tableinst": { @@ -6729,6 +5297,12 @@ "spec": "WebAssembly Core", "text": "Table Instance tableinst", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instance-xref-exec-runtime-syntax-tableinst-mathit-tableinst" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Table Instance tableinst", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instance-xref-exec-runtime-syntax-tableinst-mathit-tableinst" } }, "#table-instances": { @@ -6737,22 +5311,12 @@ "spec": "WebAssembly Core", "text": "Table Instances", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instances" - } - }, - "#table-instances%E2%91%A0": { + }, "snapshot": { "number": "4.2.7", "spec": "WebAssembly Core", "text": "Table Instances", - "url": "https://www.w3.org/TR/wasm-core-1/#table-instances%E2%91%A0" - } - }, - "#table-instances---hrefsyntax-tableinstmathsfelem-mathitfan-hrefsyntax-tableinstmathsfmaxm": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Table Instances {elem (fa?)n,max m?}", - "url": "https://www.w3.org/TR/wasm-core-1/#table-instances---hrefsyntax-tableinstmathsfelem-mathitfan-hrefsyntax-tableinstmathsfmaxm" + "url": "https://www.w3.org/TR/wasm-core-2/#table-instances" } }, "#table-instances-xref-exec-runtime-syntax-tableinst-mathsf-type-xref-syntax-types-syntax-limits-mathit-limits-t-xref-exec-runtime-syntax-tableinst-mathsf-elem-xref-exec-runtime-syntax-ref-mathit-ref-ast": { @@ -6761,6 +5325,12 @@ "spec": "WebAssembly Core", "text": "Table Instances {type (limits t),elem ref∗}", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instances-xref-exec-runtime-syntax-tableinst-mathsf-type-xref-syntax-types-syntax-limits-mathit-limits-t-xref-exec-runtime-syntax-tableinst-mathsf-elem-xref-exec-runtime-syntax-ref-mathit-ref-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Table Instances {type (limits t),elem ref∗}", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instances-xref-exec-runtime-syntax-tableinst-mathsf-type-xref-syntax-types-syntax-limits-mathit-limits-t-xref-exec-runtime-syntax-tableinst-mathsf-elem-xref-exec-runtime-syntax-ref-mathit-ref-ast" } }, "#table-instructions": { @@ -6769,6 +5339,12 @@ "spec": "WebAssembly Core", "text": "Table Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instructions" + }, + "snapshot": { + "number": "2.4.6", + "spec": "WebAssembly Core", + "text": "Table Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instructions" } }, "#table-instructions%E2%91%A0%E2%93%AA": { @@ -6777,6 +5353,12 @@ "spec": "WebAssembly Core", "text": "Table instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instructions%E2%91%A0%E2%93%AA" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Table instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instructions%E2%91%A0%E2%93%AA" } }, "#table-instructions%E2%91%A1": { @@ -6785,6 +5367,12 @@ "spec": "WebAssembly Core", "text": "Table Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instructions%E2%91%A1" + }, + "snapshot": { + "number": "3.3.6", + "spec": "WebAssembly Core", + "text": "Table Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instructions%E2%91%A1" } }, "#table-instructions%E2%91%A3": { @@ -6793,6 +5381,12 @@ "spec": "WebAssembly Core", "text": "Table Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instructions%E2%91%A3" + }, + "snapshot": { + "number": "4.4.6", + "spec": "WebAssembly Core", + "text": "Table Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instructions%E2%91%A3" } }, "#table-instructions%E2%91%A5": { @@ -6801,6 +5395,12 @@ "spec": "WebAssembly Core", "text": "Table Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instructions%E2%91%A5" + }, + "snapshot": { + "number": "5.4.5", + "spec": "WebAssembly Core", + "text": "Table Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instructions%E2%91%A5" } }, "#table-instructions%E2%91%A7": { @@ -6809,6 +5409,12 @@ "spec": "WebAssembly Core", "text": "Table Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-instructions%E2%91%A7" + }, + "snapshot": { + "number": "6.5.6", + "spec": "WebAssembly Core", + "text": "Table Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#table-instructions%E2%91%A7" } }, "#table-section": { @@ -6817,14 +5423,12 @@ "spec": "WebAssembly Core", "text": "Table Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-section" - } - }, - "#table-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.7", "spec": "WebAssembly Core", "text": "Table Section", - "url": "https://www.w3.org/TR/wasm-core-1/#table-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#table-section" } }, "#table-types": { @@ -6833,14 +5437,12 @@ "spec": "WebAssembly Core", "text": "Table Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-types" - } - }, - "#table-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.6", + "number": "2.3.9", "spec": "WebAssembly Core", "text": "Table Types", - "url": "https://www.w3.org/TR/wasm-core-1/#table-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#table-types" } }, "#table-types%E2%91%A1": { @@ -6849,14 +5451,12 @@ "spec": "WebAssembly Core", "text": "Table Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-types%E2%91%A1" - } - }, - "#table-types%E2%91%A2": { + }, "snapshot": { - "number": "3.2.3", + "number": "3.2.4", "spec": "WebAssembly Core", "text": "Table Types", - "url": "https://www.w3.org/TR/wasm-core-1/#table-types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#table-types%E2%91%A1" } }, "#table-types%E2%91%A3": { @@ -6865,14 +5465,12 @@ "spec": "WebAssembly Core", "text": "Table Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-types%E2%91%A3" - } - }, - "#table-types%E2%91%A4": { + }, "snapshot": { - "number": "5.3.6", + "number": "5.3.9", "spec": "WebAssembly Core", "text": "Table Types", - "url": "https://www.w3.org/TR/wasm-core-1/#table-types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#table-types%E2%91%A3" } }, "#table-types%E2%91%A5": { @@ -6881,14 +5479,12 @@ "spec": "WebAssembly Core", "text": "Table Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#table-types%E2%91%A5" - } - }, - "#table-types%E2%91%A6": { + }, "snapshot": { - "number": "6.4.6", + "number": "6.4.8", "spec": "WebAssembly Core", "text": "Table Types", - "url": "https://www.w3.org/TR/wasm-core-1/#table-types%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#table-types%E2%91%A5" } }, "#tables": { @@ -6897,14 +5493,12 @@ "spec": "WebAssembly Core", "text": "Tables", "url": "https://webassembly.github.io/spec/core/bikeshed/#tables" - } - }, - "#tables%E2%91%A0": { + }, "snapshot": { "number": "2.5.4", "spec": "WebAssembly Core", "text": "Tables", - "url": "https://www.w3.org/TR/wasm-core-1/#tables%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#tables" } }, "#tables%E2%91%A0%E2%93%AA": { @@ -6918,7 +5512,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Tables", - "url": "https://www.w3.org/TR/wasm-core-1/#tables%E2%91%A0%E2%93%AA" + "url": "https://www.w3.org/TR/wasm-core-2/#tables%E2%91%A0%E2%93%AA" } }, "#tables%E2%91%A1": { @@ -6927,14 +5521,12 @@ "spec": "WebAssembly Core", "text": "Tables", "url": "https://webassembly.github.io/spec/core/bikeshed/#tables%E2%91%A1" - } - }, - "#tables%E2%91%A2": { + }, "snapshot": { - "number": "3.4.2", + "number": "3.2.8.3", "spec": "WebAssembly Core", "text": "Tables", - "url": "https://www.w3.org/TR/wasm-core-1/#tables%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#tables%E2%91%A1" } }, "#tables%E2%91%A3": { @@ -6943,14 +5535,12 @@ "spec": "WebAssembly Core", "text": "Tables", "url": "https://webassembly.github.io/spec/core/bikeshed/#tables%E2%91%A3" - } - }, - "#tables%E2%91%A4": { + }, "snapshot": { - "number": "4.5.2.3", + "number": "3.4.2", "spec": "WebAssembly Core", "text": "Tables", - "url": "https://www.w3.org/TR/wasm-core-1/#tables%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#tables%E2%91%A3" } }, "#tables%E2%91%A5": { @@ -6964,7 +5554,7 @@ "number": "4.5.3.3", "spec": "WebAssembly Core", "text": "Tables", - "url": "https://www.w3.org/TR/wasm-core-1/#tables%E2%91%A5" + "url": "https://www.w3.org/TR/wasm-core-2/#tables%E2%91%A5" } }, "#tables%E2%91%A7": { @@ -6978,7 +5568,7 @@ "number": "6.6.6", "spec": "WebAssembly Core", "text": "Tables", - "url": "https://www.w3.org/TR/wasm-core-1/#tables%E2%91%A7" + "url": "https://www.w3.org/TR/wasm-core-2/#tables%E2%91%A7" } }, "#text-format": { @@ -6987,14 +5577,12 @@ "spec": "WebAssembly Core", "text": "Text Format", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-format" - } - }, - "#text-format%E2%91%A0": { + }, "snapshot": { "number": "6", "spec": "WebAssembly Core", "text": "Text Format", - "url": "https://www.w3.org/TR/wasm-core-1/#text-format%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#text-format" } }, "#text-format%E2%91%A2": { @@ -7003,14 +5591,12 @@ "spec": "WebAssembly Core", "text": "Text Format", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-format%E2%91%A2" - } - }, - "#text-format%E2%91%A3": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Text Format", - "url": "https://www.w3.org/TR/wasm-core-1/#text-format%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#text-format%E2%91%A2" } }, "#text-func-abbrev": { @@ -7019,6 +5605,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-func-abbrev" + }, + "snapshot": { + "number": "6.6.5.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#text-func-abbrev" } }, "#text-global-abbrev": { @@ -7027,6 +5619,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-global-abbrev" + }, + "snapshot": { + "number": "6.6.8.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#text-global-abbrev" } }, "#text-id": { @@ -7035,6 +5633,12 @@ "spec": "WebAssembly Core", "text": "Identifiers", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-id" + }, + "snapshot": { + "number": "6.3.5", + "spec": "WebAssembly Core", + "text": "Identifiers", + "url": "https://www.w3.org/TR/wasm-core-2/#text-id" } }, "#text-mem-abbrev": { @@ -7043,6 +5647,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-mem-abbrev" + }, + "snapshot": { + "number": "6.6.7.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#text-mem-abbrev" } }, "#text-module": { @@ -7051,6 +5661,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-module" + }, + "snapshot": { + "number": "6.6.13", + "spec": "WebAssembly Core", + "text": "Modules", + "url": "https://www.w3.org/TR/wasm-core-2/#text-module" } }, "#text-table-abbrev": { @@ -7059,6 +5675,12 @@ "spec": "WebAssembly Core", "text": "Abbreviations", "url": "https://webassembly.github.io/spec/core/bikeshed/#text-table-abbrev" + }, + "snapshot": { + "number": "6.6.6.1", + "spec": "WebAssembly Core", + "text": "Abbreviations", + "url": "https://www.w3.org/TR/wasm-core-2/#text-table-abbrev" } }, "#theorems": { @@ -7067,22 +5689,12 @@ "spec": "WebAssembly Core", "text": "Theorems", "url": "https://webassembly.github.io/spec/core/bikeshed/#theorems" - } - }, - "#theorems%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Theorems", - "url": "https://www.w3.org/TR/wasm-core-1/#theorems%E2%91%A0" - } - }, - "#threads--fhrefsyntax-instrmathitinstrast": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Threads F;instr∗", - "url": "https://www.w3.org/TR/wasm-core-1/#threads--fhrefsyntax-instrmathitinstrast" + "url": "https://www.w3.org/TR/wasm-core-2/#theorems" } }, "#threads-f-xref-syntax-instructions-syntax-instr-mathit-instr-ast": { @@ -7091,6 +5703,12 @@ "spec": "WebAssembly Core", "text": "Threads F;instr∗", "url": "https://webassembly.github.io/spec/core/bikeshed/#threads-f-xref-syntax-instructions-syntax-instr-mathit-instr-ast" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Threads F;instr∗", + "url": "https://www.w3.org/TR/wasm-core-2/#threads-f-xref-syntax-instructions-syntax-instr-mathit-instr-ast" } }, "#title": { @@ -7104,7 +5722,7 @@ "number": "", "spec": "WebAssembly Core", "text": "WebAssembly Core Specification", - "url": "https://www.w3.org/TR/wasm-core-1/#title" + "url": "https://www.w3.org/TR/wasm-core-2/#title" } }, "#toc": { @@ -7118,7 +5736,7 @@ "number": "", "spec": "WebAssembly Core", "text": "Table of Contents", - "url": "https://www.w3.org/TR/wasm-core-1/#toc" + "url": "https://www.w3.org/TR/wasm-core-2/#toc" } }, "#tokens": { @@ -7127,14 +5745,12 @@ "spec": "WebAssembly Core", "text": "Tokens", "url": "https://webassembly.github.io/spec/core/bikeshed/#tokens" - } - }, - "#tokens%E2%91%A0": { + }, "snapshot": { "number": "6.2.2", "spec": "WebAssembly Core", "text": "Tokens", - "url": "https://www.w3.org/TR/wasm-core-1/#tokens%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#tokens" } }, "#type-section": { @@ -7143,14 +5759,12 @@ "spec": "WebAssembly Core", "text": "Type Section", "url": "https://webassembly.github.io/spec/core/bikeshed/#type-section" - } - }, - "#type-section%E2%91%A0": { + }, "snapshot": { "number": "5.5.4", "spec": "WebAssembly Core", "text": "Type Section", - "url": "https://www.w3.org/TR/wasm-core-1/#type-section%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#type-section" } }, "#type-uses": { @@ -7159,14 +5773,12 @@ "spec": "WebAssembly Core", "text": "Type Uses", "url": "https://webassembly.github.io/spec/core/bikeshed/#type-uses" - } - }, - "#type-uses%E2%91%A0": { + }, "snapshot": { "number": "6.6.3", "spec": "WebAssembly Core", "text": "Type Uses", - "url": "https://www.w3.org/TR/wasm-core-1/#type-uses%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#type-uses" } }, "#types": { @@ -7175,22 +5787,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types" - } - }, - "#types%E2%91%A0": { + }, "snapshot": { "number": "2.3", "spec": "WebAssembly Core", "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A0" - } - }, - "#types%E2%91%A0%E2%91%A0": { - "snapshot": { - "number": "6.6.2", - "spec": "WebAssembly Core", - "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A0%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#types" } }, "#types%E2%91%A0%E2%91%A1": { @@ -7199,14 +5801,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types%E2%91%A0%E2%91%A1" - } - }, - "#types%E2%91%A0%E2%91%A2": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A0%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#types%E2%91%A0%E2%91%A1" } }, "#types%E2%91%A0%E2%93%AA": { @@ -7215,6 +5815,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types%E2%91%A0%E2%93%AA" + }, + "snapshot": { + "number": "6.6.2", + "spec": "WebAssembly Core", + "text": "Types", + "url": "https://www.w3.org/TR/wasm-core-2/#types%E2%91%A0%E2%93%AA" } }, "#types%E2%91%A1": { @@ -7223,14 +5829,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types%E2%91%A1" - } - }, - "#types%E2%91%A2": { + }, "snapshot": { "number": "2.5.2", "spec": "WebAssembly Core", "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#types%E2%91%A1" } }, "#types%E2%91%A3": { @@ -7239,14 +5843,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types%E2%91%A3" - } - }, - "#types%E2%91%A4": { + }, "snapshot": { "number": "3.2", "spec": "WebAssembly Core", "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#types%E2%91%A3" } }, "#types%E2%91%A5": { @@ -7255,14 +5857,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types%E2%91%A5" - } - }, - "#types%E2%91%A6": { + }, "snapshot": { "number": "5.3", "spec": "WebAssembly Core", "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#types%E2%91%A5" } }, "#types%E2%91%A7": { @@ -7271,14 +5871,12 @@ "spec": "WebAssembly Core", "text": "Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#types%E2%91%A7" - } - }, - "#types%E2%91%A8": { + }, "snapshot": { "number": "6.4", "spec": "WebAssembly Core", "text": "Types", - "url": "https://www.w3.org/TR/wasm-core-1/#types%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#types%E2%91%A7" } }, "#typing-of-runtime-constructs": { @@ -7287,14 +5885,12 @@ "spec": "WebAssembly Core", "text": "Typing of Runtime Constructs", "url": "https://webassembly.github.io/spec/core/bikeshed/#typing-of-runtime-constructs" - } - }, - "#typing-of-runtime-constructs%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Typing of Runtime Constructs", - "url": "https://www.w3.org/TR/wasm-core-1/#typing-of-runtime-constructs%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#typing-of-runtime-constructs" } }, "#typing-of-static-constructs": { @@ -7303,14 +5899,12 @@ "spec": "WebAssembly Core", "text": "Typing of Static Constructs", "url": "https://webassembly.github.io/spec/core/bikeshed/#typing-of-static-constructs" - } - }, - "#typing-of-static-constructs%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Typing of Static Constructs", - "url": "https://www.w3.org/TR/wasm-core-1/#typing-of-static-constructs%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#typing-of-static-constructs" } }, "#valid-module": { @@ -7319,6 +5913,12 @@ "spec": "WebAssembly Core", "text": "Modules", "url": "https://webassembly.github.io/spec/core/bikeshed/#valid-module" + }, + "snapshot": { + "number": "3.4.10", + "spec": "WebAssembly Core", + "text": "Modules", + "url": "https://www.w3.org/TR/wasm-core-2/#valid-module" } }, "#validation%E2%91%A0": { @@ -7327,14 +5927,12 @@ "spec": "WebAssembly Core", "text": "Validation", "url": "https://webassembly.github.io/spec/core/bikeshed/#validation%E2%91%A0" - } - }, - "#validation%E2%91%A1": { + }, "snapshot": { "number": "3", "spec": "WebAssembly Core", "text": "Validation", - "url": "https://www.w3.org/TR/wasm-core-1/#validation%E2%91%A1" + "url": "https://www.w3.org/TR/wasm-core-2/#validation%E2%91%A0" } }, "#validation%E2%91%A2": { @@ -7343,14 +5941,12 @@ "spec": "WebAssembly Core", "text": "Validation", "url": "https://webassembly.github.io/spec/core/bikeshed/#validation%E2%91%A2" - } - }, - "#validation%E2%91%A3": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Validation", - "url": "https://www.w3.org/TR/wasm-core-1/#validation%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#validation%E2%91%A2" } }, "#validation-algorithm": { @@ -7359,6 +5955,12 @@ "spec": "WebAssembly Core", "text": "Validation Algorithm", "url": "https://webassembly.github.io/spec/core/bikeshed/#validation-algorithm" + }, + "snapshot": { + "number": "A.3", + "spec": "WebAssembly Core", + "text": "Validation Algorithm", + "url": "https://www.w3.org/TR/wasm-core-2/#validation-algorithm" } }, "#validation-of-opcode-sequences": { @@ -7367,14 +5969,12 @@ "spec": "WebAssembly Core", "text": "Validation of Opcode Sequences", "url": "https://webassembly.github.io/spec/core/bikeshed/#validation-of-opcode-sequences" - } - }, - "#validation-of-opcode-sequences%E2%91%A0": { + }, "snapshot": { "number": "", "spec": "WebAssembly Core", "text": "Validation of Opcode Sequences", - "url": "https://www.w3.org/TR/wasm-core-1/#validation-of-opcode-sequences%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#validation-of-opcode-sequences" } }, "#value-types": { @@ -7383,14 +5983,12 @@ "spec": "WebAssembly Core", "text": "Value Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#value-types" - } - }, - "#value-types%E2%91%A0": { + }, "snapshot": { - "number": "2.3.1", + "number": "2.3.4", "spec": "WebAssembly Core", "text": "Value Types", - "url": "https://www.w3.org/TR/wasm-core-1/#value-types%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#value-types" } }, "#value-types%E2%91%A1": { @@ -7399,14 +5997,12 @@ "spec": "WebAssembly Core", "text": "Value Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#value-types%E2%91%A1" - } - }, - "#value-types%E2%91%A2": { + }, "snapshot": { - "number": "5.3.1", + "number": "5.3.4", "spec": "WebAssembly Core", "text": "Value Types", - "url": "https://www.w3.org/TR/wasm-core-1/#value-types%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#value-types%E2%91%A1" } }, "#value-types%E2%91%A3": { @@ -7415,14 +6011,12 @@ "spec": "WebAssembly Core", "text": "Value Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#value-types%E2%91%A3" - } - }, - "#value-types%E2%91%A4": { + }, "snapshot": { - "number": "6.4.1", + "number": "6.4.4", "spec": "WebAssembly Core", "text": "Value Types", - "url": "https://www.w3.org/TR/wasm-core-1/#value-types%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#value-types%E2%91%A3" } }, "#value-typing": { @@ -7431,6 +6025,12 @@ "spec": "WebAssembly Core", "text": "Value Typing", "url": "https://webassembly.github.io/spec/core/bikeshed/#value-typing" + }, + "snapshot": { + "number": "4.5.2", + "spec": "WebAssembly Core", + "text": "Value Typing", + "url": "https://www.w3.org/TR/wasm-core-2/#value-typing" } }, "#values": { @@ -7439,14 +6039,12 @@ "spec": "WebAssembly Core", "text": "Values", "url": "https://webassembly.github.io/spec/core/bikeshed/#values" - } - }, - "#values%E2%91%A0": { + }, "snapshot": { "number": "2.2", "spec": "WebAssembly Core", "text": "Values", - "url": "https://www.w3.org/TR/wasm-core-1/#values%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#values" } }, "#values%E2%91%A1": { @@ -7455,22 +6053,12 @@ "spec": "WebAssembly Core", "text": "Values", "url": "https://webassembly.github.io/spec/core/bikeshed/#values%E2%91%A1" - } - }, - "#values%E2%91%A2": { + }, "snapshot": { "number": "4.2.1", "spec": "WebAssembly Core", "text": "Values", - "url": "https://www.w3.org/TR/wasm-core-1/#values%E2%91%A2" - } - }, - "#values%E2%91%A3": { - "snapshot": { - "number": "4.2.12.1", - "spec": "WebAssembly Core", - "text": "Values", - "url": "https://www.w3.org/TR/wasm-core-1/#values%E2%91%A3" + "url": "https://www.w3.org/TR/wasm-core-2/#values%E2%91%A1" } }, "#values%E2%91%A4": { @@ -7479,14 +6067,12 @@ "spec": "WebAssembly Core", "text": "Values", "url": "https://webassembly.github.io/spec/core/bikeshed/#values%E2%91%A4" - } - }, - "#values%E2%91%A5": { + }, "snapshot": { "number": "5.2", "spec": "WebAssembly Core", "text": "Values", - "url": "https://www.w3.org/TR/wasm-core-1/#values%E2%91%A5" + "url": "https://www.w3.org/TR/wasm-core-2/#values%E2%91%A4" } }, "#values%E2%91%A6": { @@ -7495,30 +6081,12 @@ "spec": "WebAssembly Core", "text": "Values", "url": "https://webassembly.github.io/spec/core/bikeshed/#values%E2%91%A6" - } - }, - "#values%E2%91%A7": { + }, "snapshot": { "number": "6.3", "spec": "WebAssembly Core", "text": "Values", - "url": "https://www.w3.org/TR/wasm-core-1/#values%E2%91%A7" - } - }, - "#values--threfsyntax-instr-numericmathsfconstc": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Values t.const c", - "url": "https://www.w3.org/TR/wasm-core-1/#values--threfsyntax-instr-numericmathsfconstc" - } - }, - "#values-and-results%E2%91%A0": { - "snapshot": { - "number": "", - "spec": "WebAssembly Core", - "text": "Values and Results", - "url": "https://www.w3.org/TR/wasm-core-1/#values-and-results%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#values%E2%91%A6" } }, "#variable-instructions": { @@ -7527,14 +6095,12 @@ "spec": "WebAssembly Core", "text": "Variable Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#variable-instructions" - } - }, - "#variable-instructions%E2%91%A0": { + }, "snapshot": { - "number": "2.4.3", + "number": "2.4.5", "spec": "WebAssembly Core", "text": "Variable Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#variable-instructions%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#variable-instructions" } }, "#variable-instructions%E2%91%A1": { @@ -7543,14 +6109,12 @@ "spec": "WebAssembly Core", "text": "Variable Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#variable-instructions%E2%91%A1" - } - }, - "#variable-instructions%E2%91%A2": { + }, "snapshot": { - "number": "3.3.3", + "number": "3.3.5", "spec": "WebAssembly Core", "text": "Variable Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#variable-instructions%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#variable-instructions%E2%91%A1" } }, "#variable-instructions%E2%91%A3": { @@ -7559,14 +6123,12 @@ "spec": "WebAssembly Core", "text": "Variable Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#variable-instructions%E2%91%A3" - } - }, - "#variable-instructions%E2%91%A4": { + }, "snapshot": { - "number": "4.4.3", + "number": "4.4.5", "spec": "WebAssembly Core", "text": "Variable Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#variable-instructions%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#variable-instructions%E2%91%A3" } }, "#variable-instructions%E2%91%A5": { @@ -7575,14 +6137,12 @@ "spec": "WebAssembly Core", "text": "Variable Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#variable-instructions%E2%91%A5" - } - }, - "#variable-instructions%E2%91%A6": { + }, "snapshot": { - "number": "5.4.3", + "number": "5.4.4", "spec": "WebAssembly Core", "text": "Variable Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#variable-instructions%E2%91%A6" + "url": "https://www.w3.org/TR/wasm-core-2/#variable-instructions%E2%91%A5" } }, "#variable-instructions%E2%91%A7": { @@ -7591,14 +6151,12 @@ "spec": "WebAssembly Core", "text": "Variable Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#variable-instructions%E2%91%A7" - } - }, - "#variable-instructions%E2%91%A8": { + }, "snapshot": { - "number": "6.5.4", + "number": "6.5.5", "spec": "WebAssembly Core", "text": "Variable Instructions", - "url": "https://www.w3.org/TR/wasm-core-1/#variable-instructions%E2%91%A8" + "url": "https://www.w3.org/TR/wasm-core-2/#variable-instructions%E2%91%A7" } }, "#vector-instructions": { @@ -7607,6 +6165,12 @@ "spec": "WebAssembly Core", "text": "Vector Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-instructions" + }, + "snapshot": { + "number": "2.4.2", + "spec": "WebAssembly Core", + "text": "Vector Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-instructions" } }, "#vector-instructions%E2%91%A0%E2%93%AA": { @@ -7615,6 +6179,12 @@ "spec": "WebAssembly Core", "text": "Vector instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-instructions%E2%91%A0%E2%93%AA" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Vector instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-instructions%E2%91%A0%E2%93%AA" } }, "#vector-instructions%E2%91%A1": { @@ -7623,6 +6193,12 @@ "spec": "WebAssembly Core", "text": "Vector Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-instructions%E2%91%A1" + }, + "snapshot": { + "number": "3.3.3", + "spec": "WebAssembly Core", + "text": "Vector Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-instructions%E2%91%A1" } }, "#vector-instructions%E2%91%A3": { @@ -7631,6 +6207,12 @@ "spec": "WebAssembly Core", "text": "Vector Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-instructions%E2%91%A3" + }, + "snapshot": { + "number": "4.4.3", + "spec": "WebAssembly Core", + "text": "Vector Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-instructions%E2%91%A3" } }, "#vector-instructions%E2%91%A5": { @@ -7639,6 +6221,12 @@ "spec": "WebAssembly Core", "text": "Vector Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-instructions%E2%91%A5" + }, + "snapshot": { + "number": "5.4.8", + "spec": "WebAssembly Core", + "text": "Vector Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-instructions%E2%91%A5" } }, "#vector-instructions%E2%91%A7": { @@ -7647,6 +6235,12 @@ "spec": "WebAssembly Core", "text": "Vector Instructions", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-instructions%E2%91%A7" + }, + "snapshot": { + "number": "6.5.9", + "spec": "WebAssembly Core", + "text": "Vector Instructions", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-instructions%E2%91%A7" } }, "#vector-types": { @@ -7655,6 +6249,12 @@ "spec": "WebAssembly Core", "text": "Vector Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-types" + }, + "snapshot": { + "number": "2.3.2", + "spec": "WebAssembly Core", + "text": "Vector Types", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-types" } }, "#vector-types%E2%91%A1": { @@ -7663,6 +6263,12 @@ "spec": "WebAssembly Core", "text": "Vector Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-types%E2%91%A1" + }, + "snapshot": { + "number": "5.3.2", + "spec": "WebAssembly Core", + "text": "Vector Types", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-types%E2%91%A1" } }, "#vector-types%E2%91%A3": { @@ -7671,6 +6277,12 @@ "spec": "WebAssembly Core", "text": "Vector Types", "url": "https://webassembly.github.io/spec/core/bikeshed/#vector-types%E2%91%A3" + }, + "snapshot": { + "number": "6.4.2", + "spec": "WebAssembly Core", + "text": "Vector Types", + "url": "https://www.w3.org/TR/wasm-core-2/#vector-types%E2%91%A3" } }, "#vectors": { @@ -7679,14 +6291,12 @@ "spec": "WebAssembly Core", "text": "Vectors", "url": "https://webassembly.github.io/spec/core/bikeshed/#vectors" - } - }, - "#vectors%E2%91%A0": { + }, "snapshot": { "number": "2.1.3", "spec": "WebAssembly Core", "text": "Vectors", - "url": "https://www.w3.org/TR/wasm-core-1/#vectors%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#vectors" } }, "#vectors%E2%91%A1": { @@ -7695,30 +6305,26 @@ "spec": "WebAssembly Core", "text": "Vectors", "url": "https://webassembly.github.io/spec/core/bikeshed/#vectors%E2%91%A1" - } - }, - "#vectors%E2%91%A2": { + }, "snapshot": { - "number": "5.1.3", + "number": "2.2.4", "spec": "WebAssembly Core", "text": "Vectors", - "url": "https://www.w3.org/TR/wasm-core-1/#vectors%E2%91%A2" + "url": "https://www.w3.org/TR/wasm-core-2/#vectors%E2%91%A1" } }, "#vectors%E2%91%A3": { "current": { - "number": "4.3.1.4", + "number": "4.3.1.3", "spec": "WebAssembly Core", "text": "Vectors", "url": "https://webassembly.github.io/spec/core/bikeshed/#vectors%E2%91%A3" - } - }, - "#vectors%E2%91%A4": { + }, "snapshot": { - "number": "6.1.4", + "number": "4.3.1.3", "spec": "WebAssembly Core", "text": "Vectors", - "url": "https://www.w3.org/TR/wasm-core-1/#vectors%E2%91%A4" + "url": "https://www.w3.org/TR/wasm-core-2/#vectors%E2%91%A3" } }, "#vectors%E2%91%A5": { @@ -7727,6 +6333,12 @@ "spec": "WebAssembly Core", "text": "Vectors", "url": "https://webassembly.github.io/spec/core/bikeshed/#vectors%E2%91%A5" + }, + "snapshot": { + "number": "5.1.3", + "spec": "WebAssembly Core", + "text": "Vectors", + "url": "https://www.w3.org/TR/wasm-core-2/#vectors%E2%91%A5" } }, "#vectors%E2%91%A7": { @@ -7735,6 +6347,12 @@ "spec": "WebAssembly Core", "text": "Vectors", "url": "https://webassembly.github.io/spec/core/bikeshed/#vectors%E2%91%A7" + }, + "snapshot": { + "number": "6.1.4", + "spec": "WebAssembly Core", + "text": "Vectors", + "url": "https://www.w3.org/TR/wasm-core-2/#vectors%E2%91%A7" } }, "#w3c-conformance": { @@ -7743,6 +6361,12 @@ "spec": "WebAssembly Core", "text": "Conformance", "url": "https://webassembly.github.io/spec/core/bikeshed/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Conformance", + "url": "https://www.w3.org/TR/wasm-core-2/#w3c-conformance" } }, "#w3c-conformant-algorithms": { @@ -7751,6 +6375,12 @@ "spec": "WebAssembly Core", "text": "Conformant Algorithms", "url": "https://webassembly.github.io/spec/core/bikeshed/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/wasm-core-2/#w3c-conformant-algorithms" } }, "#w3c-conventions": { @@ -7759,6 +6389,12 @@ "spec": "WebAssembly Core", "text": "Document conventions", "url": "https://webassembly.github.io/spec/core/bikeshed/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "Document conventions", + "url": "https://www.w3.org/TR/wasm-core-2/#w3c-conventions" } }, "#white-space": { @@ -7767,14 +6403,12 @@ "spec": "WebAssembly Core", "text": "White Space", "url": "https://webassembly.github.io/spec/core/bikeshed/#white-space" - } - }, - "#white-space%E2%91%A0": { + }, "snapshot": { "number": "6.2.3", "spec": "WebAssembly Core", "text": "White Space", - "url": "https://www.w3.org/TR/wasm-core-1/#white-space%E2%91%A0" + "url": "https://www.w3.org/TR/wasm-core-2/#white-space" } }, "#xref-exec-numerics-op-convert-s-mathrm-convert-mathsf-s-m-n-i": { @@ -7783,6 +6417,12 @@ "spec": "WebAssembly Core", "text": "convertsM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-convert-s-mathrm-convert-mathsf-s-m-n-i" + }, + "snapshot": { + "number": "4.3.4.11", + "spec": "WebAssembly Core", + "text": "convertsM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-convert-s-mathrm-convert-mathsf-s-m-n-i" } }, "#xref-exec-numerics-op-convert-u-mathrm-convert-mathsf-u-m-n-i": { @@ -7791,6 +6431,12 @@ "spec": "WebAssembly Core", "text": "convertuM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-convert-u-mathrm-convert-mathsf-u-m-n-i" + }, + "snapshot": { + "number": "4.3.4.10", + "spec": "WebAssembly Core", + "text": "convertuM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-convert-u-mathrm-convert-mathsf-u-m-n-i" } }, "#xref-exec-numerics-op-demote-mathrm-demote-m-n-z": { @@ -7799,6 +6445,12 @@ "spec": "WebAssembly Core", "text": "demoteM,N​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-demote-mathrm-demote-m-n-z" + }, + "snapshot": { + "number": "4.3.4.9", + "spec": "WebAssembly Core", + "text": "demoteM,N​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-demote-mathrm-demote-m-n-z" } }, "#xref-exec-numerics-op-extend-s-mathrm-extend-mathsf-s-m-n-i": { @@ -7807,6 +6459,12 @@ "spec": "WebAssembly Core", "text": "extendsM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-extend-s-mathrm-extend-mathsf-s-m-n-i" + }, + "snapshot": { + "number": "4.3.4.2", + "spec": "WebAssembly Core", + "text": "extendsM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-extend-s-mathrm-extend-mathsf-s-m-n-i" } }, "#xref-exec-numerics-op-extend-u-mathrm-extend-mathsf-u-m-n-i": { @@ -7815,6 +6473,12 @@ "spec": "WebAssembly Core", "text": "extenduM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-extend-u-mathrm-extend-mathsf-u-m-n-i" + }, + "snapshot": { + "number": "4.3.4.1", + "spec": "WebAssembly Core", + "text": "extenduM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-extend-u-mathrm-extend-mathsf-u-m-n-i" } }, "#xref-exec-numerics-op-fabs-mathrm-fabs-n-z": { @@ -7823,6 +6487,12 @@ "spec": "WebAssembly Core", "text": "fabsN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fabs-mathrm-fabs-n-z" + }, + "snapshot": { + "number": "4.3.3.10", + "spec": "WebAssembly Core", + "text": "fabsN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fabs-mathrm-fabs-n-z" } }, "#xref-exec-numerics-op-fadd-mathrm-fadd-n-z-1-z-2": { @@ -7831,6 +6501,12 @@ "spec": "WebAssembly Core", "text": "faddN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fadd-mathrm-fadd-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.3", + "spec": "WebAssembly Core", + "text": "faddN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fadd-mathrm-fadd-n-z-1-z-2" } }, "#xref-exec-numerics-op-fceil-mathrm-fceil-n-z": { @@ -7839,6 +6515,12 @@ "spec": "WebAssembly Core", "text": "fceilN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fceil-mathrm-fceil-n-z" + }, + "snapshot": { + "number": "4.3.3.13", + "spec": "WebAssembly Core", + "text": "fceilN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fceil-mathrm-fceil-n-z" } }, "#xref-exec-numerics-op-fcopysign-mathrm-fcopysign-n-z-1-z-2": { @@ -7847,6 +6529,12 @@ "spec": "WebAssembly Core", "text": "fcopysignN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fcopysign-mathrm-fcopysign-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.9", + "spec": "WebAssembly Core", + "text": "fcopysignN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fcopysign-mathrm-fcopysign-n-z-1-z-2" } }, "#xref-exec-numerics-op-fdiv-mathrm-fdiv-n-z-1-z-2": { @@ -7855,6 +6543,12 @@ "spec": "WebAssembly Core", "text": "fdivN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fdiv-mathrm-fdiv-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.6", + "spec": "WebAssembly Core", + "text": "fdivN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fdiv-mathrm-fdiv-n-z-1-z-2" } }, "#xref-exec-numerics-op-feq-mathrm-feq-n-z-1-z-2": { @@ -7863,6 +6557,12 @@ "spec": "WebAssembly Core", "text": "feqN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-feq-mathrm-feq-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.17", + "spec": "WebAssembly Core", + "text": "feqN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-feq-mathrm-feq-n-z-1-z-2" } }, "#xref-exec-numerics-op-ffloor-mathrm-ffloor-n-z": { @@ -7871,6 +6571,12 @@ "spec": "WebAssembly Core", "text": "ffloorN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ffloor-mathrm-ffloor-n-z" + }, + "snapshot": { + "number": "4.3.3.14", + "spec": "WebAssembly Core", + "text": "ffloorN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ffloor-mathrm-ffloor-n-z" } }, "#xref-exec-numerics-op-fge-mathrm-fge-n-z-1-z-2": { @@ -7879,6 +6585,12 @@ "spec": "WebAssembly Core", "text": "fgeN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fge-mathrm-fge-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.22", + "spec": "WebAssembly Core", + "text": "fgeN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fge-mathrm-fge-n-z-1-z-2" } }, "#xref-exec-numerics-op-fgt-mathrm-fgt-n-z-1-z-2": { @@ -7887,6 +6599,12 @@ "spec": "WebAssembly Core", "text": "fgtN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fgt-mathrm-fgt-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.20", + "spec": "WebAssembly Core", + "text": "fgtN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fgt-mathrm-fgt-n-z-1-z-2" } }, "#xref-exec-numerics-op-fle-mathrm-fle-n-z-1-z-2": { @@ -7895,6 +6613,12 @@ "spec": "WebAssembly Core", "text": "fleN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fle-mathrm-fle-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.21", + "spec": "WebAssembly Core", + "text": "fleN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fle-mathrm-fle-n-z-1-z-2" } }, "#xref-exec-numerics-op-flt-mathrm-flt-n-z-1-z-2": { @@ -7903,6 +6627,12 @@ "spec": "WebAssembly Core", "text": "fltN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-flt-mathrm-flt-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.19", + "spec": "WebAssembly Core", + "text": "fltN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-flt-mathrm-flt-n-z-1-z-2" } }, "#xref-exec-numerics-op-fmax-mathrm-fmax-n-z-1-z-2": { @@ -7911,6 +6641,12 @@ "spec": "WebAssembly Core", "text": "fmaxN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fmax-mathrm-fmax-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.8", + "spec": "WebAssembly Core", + "text": "fmaxN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fmax-mathrm-fmax-n-z-1-z-2" } }, "#xref-exec-numerics-op-fmin-mathrm-fmin-n-z-1-z-2": { @@ -7919,6 +6655,12 @@ "spec": "WebAssembly Core", "text": "fminN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fmin-mathrm-fmin-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.7", + "spec": "WebAssembly Core", + "text": "fminN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fmin-mathrm-fmin-n-z-1-z-2" } }, "#xref-exec-numerics-op-fmul-mathrm-fmul-n-z-1-z-2": { @@ -7927,6 +6669,12 @@ "spec": "WebAssembly Core", "text": "fmulN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fmul-mathrm-fmul-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.5", + "spec": "WebAssembly Core", + "text": "fmulN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fmul-mathrm-fmul-n-z-1-z-2" } }, "#xref-exec-numerics-op-fne-mathrm-fne-n-z-1-z-2": { @@ -7935,6 +6683,12 @@ "spec": "WebAssembly Core", "text": "fneN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fne-mathrm-fne-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.18", + "spec": "WebAssembly Core", + "text": "fneN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fne-mathrm-fne-n-z-1-z-2" } }, "#xref-exec-numerics-op-fnearest-mathrm-fnearest-n-z": { @@ -7943,6 +6697,12 @@ "spec": "WebAssembly Core", "text": "fnearestN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fnearest-mathrm-fnearest-n-z" + }, + "snapshot": { + "number": "4.3.3.16", + "spec": "WebAssembly Core", + "text": "fnearestN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fnearest-mathrm-fnearest-n-z" } }, "#xref-exec-numerics-op-fneg-mathrm-fneg-n-z": { @@ -7951,6 +6711,12 @@ "spec": "WebAssembly Core", "text": "fnegN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fneg-mathrm-fneg-n-z" + }, + "snapshot": { + "number": "4.3.3.11", + "spec": "WebAssembly Core", + "text": "fnegN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fneg-mathrm-fneg-n-z" } }, "#xref-exec-numerics-op-fpmax-mathrm-fpmax-n-z-1-z-2": { @@ -7959,6 +6725,12 @@ "spec": "WebAssembly Core", "text": "fpmaxN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fpmax-mathrm-fpmax-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.24", + "spec": "WebAssembly Core", + "text": "fpmaxN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fpmax-mathrm-fpmax-n-z-1-z-2" } }, "#xref-exec-numerics-op-fpmin-mathrm-fpmin-n-z-1-z-2": { @@ -7966,7 +6738,13 @@ "number": "4.3.3.23", "spec": "WebAssembly Core", "text": "fpminN​(z1​,z2​)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fpmin-mathrm-fpmin-n-z-1-z-2" + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fpmin-mathrm-fpmin-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.23", + "spec": "WebAssembly Core", + "text": "fpminN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fpmin-mathrm-fpmin-n-z-1-z-2" } }, "#xref-exec-numerics-op-fsqrt-mathrm-fsqrt-n-z": { @@ -7975,6 +6753,12 @@ "spec": "WebAssembly Core", "text": "fsqrtN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fsqrt-mathrm-fsqrt-n-z" + }, + "snapshot": { + "number": "4.3.3.12", + "spec": "WebAssembly Core", + "text": "fsqrtN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fsqrt-mathrm-fsqrt-n-z" } }, "#xref-exec-numerics-op-fsub-mathrm-fsub-n-z-1-z-2": { @@ -7983,6 +6767,12 @@ "spec": "WebAssembly Core", "text": "fsubN​(z1​,z2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-fsub-mathrm-fsub-n-z-1-z-2" + }, + "snapshot": { + "number": "4.3.3.4", + "spec": "WebAssembly Core", + "text": "fsubN​(z1​,z2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-fsub-mathrm-fsub-n-z-1-z-2" } }, "#xref-exec-numerics-op-ftrunc-mathrm-ftrunc-n-z": { @@ -7991,6 +6781,12 @@ "spec": "WebAssembly Core", "text": "ftruncN​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ftrunc-mathrm-ftrunc-n-z" + }, + "snapshot": { + "number": "4.3.3.15", + "spec": "WebAssembly Core", + "text": "ftruncN​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ftrunc-mathrm-ftrunc-n-z" } }, "#xref-exec-numerics-op-iabs-mathrm-iabs-n-i": { @@ -7999,6 +6795,12 @@ "spec": "WebAssembly Core", "text": "iabsN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iabs-mathrm-iabs-n-i" + }, + "snapshot": { + "number": "4.3.2.36", + "spec": "WebAssembly Core", + "text": "iabsN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iabs-mathrm-iabs-n-i" } }, "#xref-exec-numerics-op-iadd-mathrm-iadd-n-i-1-i-2": { @@ -8007,22 +6809,40 @@ "spec": "WebAssembly Core", "text": "iaddN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iadd-mathrm-iadd-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.3", + "spec": "WebAssembly Core", + "text": "iaddN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iadd-mathrm-iadd-n-i-1-i-2" } }, - "#xref-exec-numerics-op-iaddsat-s-mathrm-iaddsat-s-n-i-1-i-2": { + "#xref-exec-numerics-op-iadd-sat-s-mathrm-iadd-sat-s-n-i-1-i-2": { "current": { "number": "4.3.2.43", "spec": "WebAssembly Core", - "text": "iaddsat_sN​(i1​,i2​)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iaddsat-s-mathrm-iaddsat-s-n-i-1-i-2" + "text": "iadd_sat_sN​(i1​,i2​)", + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iadd-sat-s-mathrm-iadd-sat-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.43", + "spec": "WebAssembly Core", + "text": "iadd_sat_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iadd-sat-s-mathrm-iadd-sat-s-n-i-1-i-2" } }, - "#xref-exec-numerics-op-iaddsat-u-mathrm-iaddsat-u-n-i-1-i-2": { + "#xref-exec-numerics-op-iadd-sat-u-mathrm-iadd-sat-u-n-i-1-i-2": { "current": { "number": "4.3.2.42", "spec": "WebAssembly Core", - "text": "iaddsat_uN​(i1​,i2​)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iaddsat-u-mathrm-iaddsat-u-n-i-1-i-2" + "text": "iadd_sat_uN​(i1​,i2​)", + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iadd-sat-u-mathrm-iadd-sat-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.42", + "spec": "WebAssembly Core", + "text": "iadd_sat_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iadd-sat-u-mathrm-iadd-sat-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-iand-mathrm-iand-n-i-1-i-2": { @@ -8031,6 +6851,12 @@ "spec": "WebAssembly Core", "text": "iandN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iand-mathrm-iand-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.11", + "spec": "WebAssembly Core", + "text": "iandN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iand-mathrm-iand-n-i-1-i-2" } }, "#xref-exec-numerics-op-iandnot-mathrm-iandnot-n-i-1-i-2": { @@ -8039,6 +6865,12 @@ "spec": "WebAssembly Core", "text": "iandnotN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iandnot-mathrm-iandnot-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.12", + "spec": "WebAssembly Core", + "text": "iandnotN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iandnot-mathrm-iandnot-n-i-1-i-2" } }, "#xref-exec-numerics-op-iavgr-u-mathrm-iavgr-u-n-i-1-i-2": { @@ -8047,6 +6879,12 @@ "spec": "WebAssembly Core", "text": "iavgr_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iavgr-u-mathrm-iavgr-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.46", + "spec": "WebAssembly Core", + "text": "iavgr_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iavgr-u-mathrm-iavgr-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-ibitselect-mathrm-ibitselect-n-i-1-i-2-i-3": { @@ -8055,6 +6893,12 @@ "spec": "WebAssembly Core", "text": "ibitselectN​(i1​,i2​,i3​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ibitselect-mathrm-ibitselect-n-i-1-i-2-i-3" + }, + "snapshot": { + "number": "4.3.2.35", + "spec": "WebAssembly Core", + "text": "ibitselectN​(i1​,i2​,i3​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ibitselect-mathrm-ibitselect-n-i-1-i-2-i-3" } }, "#xref-exec-numerics-op-iclz-mathrm-iclz-n-i": { @@ -8063,6 +6907,12 @@ "spec": "WebAssembly Core", "text": "iclzN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iclz-mathrm-iclz-n-i" + }, + "snapshot": { + "number": "4.3.2.20", + "spec": "WebAssembly Core", + "text": "iclzN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iclz-mathrm-iclz-n-i" } }, "#xref-exec-numerics-op-ictz-mathrm-ictz-n-i": { @@ -8071,6 +6921,12 @@ "spec": "WebAssembly Core", "text": "ictzN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ictz-mathrm-ictz-n-i" + }, + "snapshot": { + "number": "4.3.2.21", + "spec": "WebAssembly Core", + "text": "ictzN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ictz-mathrm-ictz-n-i" } }, "#xref-exec-numerics-op-idiv-s-mathrm-idiv-s-n-i-1-i-2": { @@ -8079,6 +6935,12 @@ "spec": "WebAssembly Core", "text": "idiv_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-idiv-s-mathrm-idiv-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.7", + "spec": "WebAssembly Core", + "text": "idiv_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-idiv-s-mathrm-idiv-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-idiv-u-mathrm-idiv-u-n-i-1-i-2": { @@ -8087,6 +6949,12 @@ "spec": "WebAssembly Core", "text": "idiv_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-idiv-u-mathrm-idiv-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.6", + "spec": "WebAssembly Core", + "text": "idiv_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-idiv-u-mathrm-idiv-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-ieq-mathrm-ieq-n-i-1-i-2": { @@ -8095,6 +6963,12 @@ "spec": "WebAssembly Core", "text": "ieqN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ieq-mathrm-ieq-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.24", + "spec": "WebAssembly Core", + "text": "ieqN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ieq-mathrm-ieq-n-i-1-i-2" } }, "#xref-exec-numerics-op-ieqz-mathrm-ieqz-n-i": { @@ -8103,6 +6977,12 @@ "spec": "WebAssembly Core", "text": "ieqzN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ieqz-mathrm-ieqz-n-i" + }, + "snapshot": { + "number": "4.3.2.23", + "spec": "WebAssembly Core", + "text": "ieqzN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ieqz-mathrm-ieqz-n-i" } }, "#xref-exec-numerics-op-iextendn-s-mathrm-iextend-m-mathrm-s-n-i": { @@ -8111,6 +6991,12 @@ "spec": "WebAssembly Core", "text": "iextendM_sN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iextendn-s-mathrm-iextend-m-mathrm-s-n-i" + }, + "snapshot": { + "number": "4.3.2.34", + "spec": "WebAssembly Core", + "text": "iextendM_sN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iextendn-s-mathrm-iextend-m-mathrm-s-n-i" } }, "#xref-exec-numerics-op-ige-s-mathrm-ige-s-n-i-1-i-2": { @@ -8119,6 +7005,12 @@ "spec": "WebAssembly Core", "text": "ige_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ige-s-mathrm-ige-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.33", + "spec": "WebAssembly Core", + "text": "ige_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ige-s-mathrm-ige-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-ige-u-mathrm-ige-u-n-i-1-i-2": { @@ -8127,6 +7019,12 @@ "spec": "WebAssembly Core", "text": "ige_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ige-u-mathrm-ige-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.32", + "spec": "WebAssembly Core", + "text": "ige_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ige-u-mathrm-ige-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-igt-s-mathrm-igt-s-n-i-1-i-2": { @@ -8135,6 +7033,12 @@ "spec": "WebAssembly Core", "text": "igt_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-igt-s-mathrm-igt-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.29", + "spec": "WebAssembly Core", + "text": "igt_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-igt-s-mathrm-igt-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-igt-u-mathrm-igt-u-n-i-1-i-2": { @@ -8143,6 +7047,12 @@ "spec": "WebAssembly Core", "text": "igt_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-igt-u-mathrm-igt-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.28", + "spec": "WebAssembly Core", + "text": "igt_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-igt-u-mathrm-igt-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-ile-s-mathrm-ile-s-n-i-1-i-2": { @@ -8151,6 +7061,12 @@ "spec": "WebAssembly Core", "text": "ile_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ile-s-mathrm-ile-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.31", + "spec": "WebAssembly Core", + "text": "ile_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ile-s-mathrm-ile-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-ile-u-mathrm-ile-u-n-i-1-i-2": { @@ -8159,6 +7075,12 @@ "spec": "WebAssembly Core", "text": "ile_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ile-u-mathrm-ile-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.30", + "spec": "WebAssembly Core", + "text": "ile_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ile-u-mathrm-ile-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-ilt-s-mathrm-ilt-s-n-i-1-i-2": { @@ -8167,6 +7089,12 @@ "spec": "WebAssembly Core", "text": "ilt_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ilt-s-mathrm-ilt-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.27", + "spec": "WebAssembly Core", + "text": "ilt_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ilt-s-mathrm-ilt-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-ilt-u-mathrm-ilt-u-n-i-1-i-2": { @@ -8175,6 +7103,12 @@ "spec": "WebAssembly Core", "text": "ilt_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ilt-u-mathrm-ilt-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.26", + "spec": "WebAssembly Core", + "text": "ilt_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ilt-u-mathrm-ilt-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-imax-s-mathrm-imax-s-n-i-1-i-2": { @@ -8183,6 +7117,12 @@ "spec": "WebAssembly Core", "text": "imax_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-imax-s-mathrm-imax-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.41", + "spec": "WebAssembly Core", + "text": "imax_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-imax-s-mathrm-imax-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-imax-u-mathrm-imax-u-n-i-1-i-2": { @@ -8191,6 +7131,12 @@ "spec": "WebAssembly Core", "text": "imax_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-imax-u-mathrm-imax-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.40", + "spec": "WebAssembly Core", + "text": "imax_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-imax-u-mathrm-imax-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-imin-s-mathrm-imin-s-n-i-1-i-2": { @@ -8199,6 +7145,12 @@ "spec": "WebAssembly Core", "text": "imin_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-imin-s-mathrm-imin-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.39", + "spec": "WebAssembly Core", + "text": "imin_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-imin-s-mathrm-imin-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-imin-u-mathrm-imin-u-n-i-1-i-2": { @@ -8207,6 +7159,12 @@ "spec": "WebAssembly Core", "text": "imin_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-imin-u-mathrm-imin-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.38", + "spec": "WebAssembly Core", + "text": "imin_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-imin-u-mathrm-imin-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-imul-mathrm-imul-n-i-1-i-2": { @@ -8215,6 +7173,12 @@ "spec": "WebAssembly Core", "text": "imulN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-imul-mathrm-imul-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.5", + "spec": "WebAssembly Core", + "text": "imulN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-imul-mathrm-imul-n-i-1-i-2" } }, "#xref-exec-numerics-op-ine-mathrm-ine-n-i-1-i-2": { @@ -8223,6 +7187,12 @@ "spec": "WebAssembly Core", "text": "ineN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ine-mathrm-ine-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.25", + "spec": "WebAssembly Core", + "text": "ineN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ine-mathrm-ine-n-i-1-i-2" } }, "#xref-exec-numerics-op-ineg-mathrm-ineg-n-i": { @@ -8231,6 +7201,12 @@ "spec": "WebAssembly Core", "text": "inegN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ineg-mathrm-ineg-n-i" + }, + "snapshot": { + "number": "4.3.2.37", + "spec": "WebAssembly Core", + "text": "inegN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ineg-mathrm-ineg-n-i" } }, "#xref-exec-numerics-op-inot-mathrm-inot-n-i": { @@ -8239,6 +7215,12 @@ "spec": "WebAssembly Core", "text": "inotN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-inot-mathrm-inot-n-i" + }, + "snapshot": { + "number": "4.3.2.10", + "spec": "WebAssembly Core", + "text": "inotN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-inot-mathrm-inot-n-i" } }, "#xref-exec-numerics-op-ior-mathrm-ior-n-i-1-i-2": { @@ -8247,6 +7229,12 @@ "spec": "WebAssembly Core", "text": "iorN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ior-mathrm-ior-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.13", + "spec": "WebAssembly Core", + "text": "iorN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ior-mathrm-ior-n-i-1-i-2" } }, "#xref-exec-numerics-op-ipopcnt-mathrm-ipopcnt-n-i": { @@ -8255,6 +7243,12 @@ "spec": "WebAssembly Core", "text": "ipopcntN​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ipopcnt-mathrm-ipopcnt-n-i" + }, + "snapshot": { + "number": "4.3.2.22", + "spec": "WebAssembly Core", + "text": "ipopcntN​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ipopcnt-mathrm-ipopcnt-n-i" } }, "#xref-exec-numerics-op-iq15mulrsat-s-mathrm-iq15mulrsat-s-n-i-1-i-2": { @@ -8263,6 +7257,12 @@ "spec": "WebAssembly Core", "text": "iq15mulrsat_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-iq15mulrsat-s-mathrm-iq15mulrsat-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.47", + "spec": "WebAssembly Core", + "text": "iq15mulrsat_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-iq15mulrsat-s-mathrm-iq15mulrsat-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-irem-s-mathrm-irem-s-n-i-1-i-2": { @@ -8271,6 +7271,12 @@ "spec": "WebAssembly Core", "text": "irem_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-irem-s-mathrm-irem-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.9", + "spec": "WebAssembly Core", + "text": "irem_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-irem-s-mathrm-irem-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-irem-u-mathrm-irem-u-n-i-1-i-2": { @@ -8279,6 +7285,12 @@ "spec": "WebAssembly Core", "text": "irem_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-irem-u-mathrm-irem-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.8", + "spec": "WebAssembly Core", + "text": "irem_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-irem-u-mathrm-irem-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-irotl-mathrm-irotl-n-i-1-i-2": { @@ -8287,6 +7299,12 @@ "spec": "WebAssembly Core", "text": "irotlN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-irotl-mathrm-irotl-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.18", + "spec": "WebAssembly Core", + "text": "irotlN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-irotl-mathrm-irotl-n-i-1-i-2" } }, "#xref-exec-numerics-op-irotr-mathrm-irotr-n-i-1-i-2": { @@ -8295,6 +7313,12 @@ "spec": "WebAssembly Core", "text": "irotrN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-irotr-mathrm-irotr-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.19", + "spec": "WebAssembly Core", + "text": "irotrN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-irotr-mathrm-irotr-n-i-1-i-2" } }, "#xref-exec-numerics-op-ishl-mathrm-ishl-n-i-1-i-2": { @@ -8303,6 +7327,12 @@ "spec": "WebAssembly Core", "text": "ishlN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ishl-mathrm-ishl-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.15", + "spec": "WebAssembly Core", + "text": "ishlN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ishl-mathrm-ishl-n-i-1-i-2" } }, "#xref-exec-numerics-op-ishr-s-mathrm-ishr-s-n-i-1-i-2": { @@ -8311,6 +7341,12 @@ "spec": "WebAssembly Core", "text": "ishr_sN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ishr-s-mathrm-ishr-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.17", + "spec": "WebAssembly Core", + "text": "ishr_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ishr-s-mathrm-ishr-s-n-i-1-i-2" } }, "#xref-exec-numerics-op-ishr-u-mathrm-ishr-u-n-i-1-i-2": { @@ -8319,6 +7355,12 @@ "spec": "WebAssembly Core", "text": "ishr_uN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ishr-u-mathrm-ishr-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.16", + "spec": "WebAssembly Core", + "text": "ishr_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ishr-u-mathrm-ishr-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-isub-mathrm-isub-n-i-1-i-2": { @@ -8327,22 +7369,40 @@ "spec": "WebAssembly Core", "text": "isubN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-isub-mathrm-isub-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.4", + "spec": "WebAssembly Core", + "text": "isubN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-isub-mathrm-isub-n-i-1-i-2" } }, - "#xref-exec-numerics-op-isubsat-s-mathrm-isubsat-s-n-i-1-i-2": { + "#xref-exec-numerics-op-isub-sat-s-mathrm-isub-sat-s-n-i-1-i-2": { "current": { "number": "4.3.2.45", "spec": "WebAssembly Core", - "text": "isubsat_sN​(i1​,i2​)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-isubsat-s-mathrm-isubsat-s-n-i-1-i-2" + "text": "isub_sat_sN​(i1​,i2​)", + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-isub-sat-s-mathrm-isub-sat-s-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.45", + "spec": "WebAssembly Core", + "text": "isub_sat_sN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-isub-sat-s-mathrm-isub-sat-s-n-i-1-i-2" } }, - "#xref-exec-numerics-op-isubsat-u-mathrm-isubsat-u-n-i-1-i-2": { + "#xref-exec-numerics-op-isub-sat-u-mathrm-isub-sat-u-n-i-1-i-2": { "current": { "number": "4.3.2.44", "spec": "WebAssembly Core", - "text": "isubsat_uN​(i1​,i2​)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-isubsat-u-mathrm-isubsat-u-n-i-1-i-2" + "text": "isub_sat_uN​(i1​,i2​)", + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-isub-sat-u-mathrm-isub-sat-u-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.44", + "spec": "WebAssembly Core", + "text": "isub_sat_uN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-isub-sat-u-mathrm-isub-sat-u-n-i-1-i-2" } }, "#xref-exec-numerics-op-ixor-mathrm-ixor-n-i-1-i-2": { @@ -8351,6 +7411,12 @@ "spec": "WebAssembly Core", "text": "ixorN​(i1​,i2​)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-ixor-mathrm-ixor-n-i-1-i-2" + }, + "snapshot": { + "number": "4.3.2.14", + "spec": "WebAssembly Core", + "text": "ixorN​(i1​,i2​)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-ixor-mathrm-ixor-n-i-1-i-2" } }, "#xref-exec-numerics-op-narrow-s-mathrm-narrow-mathsf-s-m-n-i": { @@ -8359,6 +7425,12 @@ "spec": "WebAssembly Core", "text": "narrowsM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-narrow-s-mathrm-narrow-mathsf-s-m-n-i" + }, + "snapshot": { + "number": "4.3.4.13", + "spec": "WebAssembly Core", + "text": "narrowsM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-narrow-s-mathrm-narrow-mathsf-s-m-n-i" } }, "#xref-exec-numerics-op-narrow-u-mathrm-narrow-mathsf-u-m-n-i": { @@ -8367,6 +7439,12 @@ "spec": "WebAssembly Core", "text": "narrowuM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-narrow-u-mathrm-narrow-mathsf-u-m-n-i" + }, + "snapshot": { + "number": "4.3.4.14", + "spec": "WebAssembly Core", + "text": "narrowuM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-narrow-u-mathrm-narrow-mathsf-u-m-n-i" } }, "#xref-exec-numerics-op-promote-mathrm-promote-m-n-z": { @@ -8374,7 +7452,13 @@ "number": "4.3.4.8", "spec": "WebAssembly Core", "text": "promoteM,N​(z)", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-promote-mathrm-promote-m-n-z" + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-promote-mathrm-promote-m-n-z" + }, + "snapshot": { + "number": "4.3.4.8", + "spec": "WebAssembly Core", + "text": "promoteM,N​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-promote-mathrm-promote-m-n-z" } }, "#xref-exec-numerics-op-reinterpret-mathrm-reinterpret-t-1-t-2-c": { @@ -8383,6 +7467,12 @@ "spec": "WebAssembly Core", "text": "reinterprett1​,t2​​(c)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-reinterpret-mathrm-reinterpret-t-1-t-2-c" + }, + "snapshot": { + "number": "4.3.4.12", + "spec": "WebAssembly Core", + "text": "reinterprett1​,t2​​(c)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-reinterpret-mathrm-reinterpret-t-1-t-2-c" } }, "#xref-exec-numerics-op-trunc-s-mathrm-trunc-mathsf-s-m-n-z": { @@ -8391,6 +7481,12 @@ "spec": "WebAssembly Core", "text": "truncsM,N​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-trunc-s-mathrm-trunc-mathsf-s-m-n-z" + }, + "snapshot": { + "number": "4.3.4.5", + "spec": "WebAssembly Core", + "text": "truncsM,N​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-trunc-s-mathrm-trunc-mathsf-s-m-n-z" } }, "#xref-exec-numerics-op-trunc-sat-s-mathrm-trunc-sat-s-m-n-z": { @@ -8399,6 +7495,12 @@ "spec": "WebAssembly Core", "text": "trunc_sat_sM,N​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-trunc-sat-s-mathrm-trunc-sat-s-m-n-z" + }, + "snapshot": { + "number": "4.3.4.7", + "spec": "WebAssembly Core", + "text": "trunc_sat_sM,N​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-trunc-sat-s-mathrm-trunc-sat-s-m-n-z" } }, "#xref-exec-numerics-op-trunc-sat-u-mathrm-trunc-sat-u-m-n-z": { @@ -8407,6 +7509,12 @@ "spec": "WebAssembly Core", "text": "trunc_sat_uM,N​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-trunc-sat-u-mathrm-trunc-sat-u-m-n-z" + }, + "snapshot": { + "number": "4.3.4.6", + "spec": "WebAssembly Core", + "text": "trunc_sat_uM,N​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-trunc-sat-u-mathrm-trunc-sat-u-m-n-z" } }, "#xref-exec-numerics-op-trunc-u-mathrm-trunc-mathsf-u-m-n-z": { @@ -8415,6 +7523,12 @@ "spec": "WebAssembly Core", "text": "truncuM,N​(z)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-trunc-u-mathrm-trunc-mathsf-u-m-n-z" + }, + "snapshot": { + "number": "4.3.4.4", + "spec": "WebAssembly Core", + "text": "truncuM,N​(z)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-trunc-u-mathrm-trunc-mathsf-u-m-n-z" } }, "#xref-exec-numerics-op-wrap-mathrm-wrap-m-n-i": { @@ -8423,6 +7537,12 @@ "spec": "WebAssembly Core", "text": "wrapM,N​(i)", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-numerics-op-wrap-mathrm-wrap-m-n-i" + }, + "snapshot": { + "number": "4.3.4.3", + "spec": "WebAssembly Core", + "text": "wrapM,N​(i)", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-numerics-op-wrap-mathrm-wrap-m-n-i" } }, "#xref-exec-runtime-syntax-externval-mathsf-func-a": { @@ -8431,6 +7551,12 @@ "spec": "WebAssembly Core", "text": "func a", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-externval-mathsf-func-a" + }, + "snapshot": { + "number": "4.5.1.1", + "spec": "WebAssembly Core", + "text": "func a", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-externval-mathsf-func-a" } }, "#xref-exec-runtime-syntax-externval-mathsf-global-a": { @@ -8439,6 +7565,12 @@ "spec": "WebAssembly Core", "text": "global a", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-externval-mathsf-global-a" + }, + "snapshot": { + "number": "4.5.1.4", + "spec": "WebAssembly Core", + "text": "global a", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-externval-mathsf-global-a" } }, "#xref-exec-runtime-syntax-externval-mathsf-mem-a": { @@ -8447,6 +7579,12 @@ "spec": "WebAssembly Core", "text": "mem a", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-externval-mathsf-mem-a" + }, + "snapshot": { + "number": "4.5.1.3", + "spec": "WebAssembly Core", + "text": "mem a", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-externval-mathsf-mem-a" } }, "#xref-exec-runtime-syntax-externval-mathsf-table-a": { @@ -8455,6 +7593,12 @@ "spec": "WebAssembly Core", "text": "table a", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-externval-mathsf-table-a" + }, + "snapshot": { + "number": "4.5.1.2", + "spec": "WebAssembly Core", + "text": "table a", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-externval-mathsf-table-a" } }, "#xref-exec-runtime-syntax-frame-mathsf-frame-n-f-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end": { @@ -8463,6 +7607,12 @@ "spec": "WebAssembly Core", "text": "framen​{F} instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-frame-mathsf-frame-n-f-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "framen​{F} instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-frame-mathsf-frame-n-f-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" } }, "#xref-exec-runtime-syntax-invoke-mathsf-invoke-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr": { @@ -8471,6 +7621,12 @@ "spec": "WebAssembly Core", "text": "invoke funcaddr", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-invoke-mathsf-invoke-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "invoke funcaddr", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-invoke-mathsf-invoke-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr" } }, "#xref-exec-runtime-syntax-label-mathsf-label-n-xref-syntax-instructions-syntax-instr-mathit-instr-0-ast-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end": { @@ -8479,6 +7635,12 @@ "spec": "WebAssembly Core", "text": "labeln​{instr0∗​} instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-label-mathsf-label-n-xref-syntax-instructions-syntax-instr-mathit-instr-0-ast-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "labeln​{instr0∗​} instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-label-mathsf-label-n-xref-syntax-instructions-syntax-instr-mathit-instr-0-ast-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" } }, "#xref-exec-runtime-syntax-ref-extern-mathsf-ref-extern-xref-exec-runtime-syntax-externaddr-mathit-externaddr": { @@ -8487,6 +7649,12 @@ "spec": "WebAssembly Core", "text": "ref.extern externaddr", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-ref-extern-mathsf-ref-extern-xref-exec-runtime-syntax-externaddr-mathit-externaddr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "ref.extern externaddr", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-ref-extern-mathsf-ref-extern-xref-exec-runtime-syntax-externaddr-mathit-externaddr" } }, "#xref-exec-runtime-syntax-ref-mathsf-ref-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr": { @@ -8495,6 +7663,12 @@ "spec": "WebAssembly Core", "text": "ref funcaddr", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-ref-mathsf-ref-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "ref funcaddr", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-ref-mathsf-ref-xref-exec-runtime-syntax-funcaddr-mathit-funcaddr" } }, "#xref-exec-runtime-syntax-trap-mathsf-trap": { @@ -8503,6 +7677,12 @@ "spec": "WebAssembly Core", "text": "trap", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-exec-runtime-syntax-trap-mathsf-trap" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly Core", + "text": "trap", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-exec-runtime-syntax-trap-mathsf-trap" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-block-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end": { @@ -8511,6 +7691,12 @@ "spec": "WebAssembly Core", "text": "block blocktype instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-block-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" + }, + "snapshot": { + "number": "3.3.8.3", + "spec": "WebAssembly Core", + "text": "block blocktype instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-block-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-block-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0": { @@ -8519,6 +7705,12 @@ "spec": "WebAssembly Core", "text": "block blocktype instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-block-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.3", + "spec": "WebAssembly Core", + "text": "block blocktype instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-block-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-br-if-l": { @@ -8527,6 +7719,12 @@ "spec": "WebAssembly Core", "text": "br_if l", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-br-if-l" + }, + "snapshot": { + "number": "3.3.8.7", + "spec": "WebAssembly Core", + "text": "br_if l", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-br-if-l" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-br-if-l%E2%91%A0": { @@ -8535,6 +7733,12 @@ "spec": "WebAssembly Core", "text": "br_if l", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-br-if-l%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.7", + "spec": "WebAssembly Core", + "text": "br_if l", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-br-if-l%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-br-l": { @@ -8543,6 +7747,12 @@ "spec": "WebAssembly Core", "text": "br l", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-br-l" + }, + "snapshot": { + "number": "3.3.8.6", + "spec": "WebAssembly Core", + "text": "br l", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-br-l" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-br-l%E2%91%A0": { @@ -8551,6 +7761,12 @@ "spec": "WebAssembly Core", "text": "br l", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-br-l%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.6", + "spec": "WebAssembly Core", + "text": "br l", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-br-l%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-br-table-l-ast-l-n": { @@ -8559,6 +7775,12 @@ "spec": "WebAssembly Core", "text": "br_table l∗ lN​", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-br-table-l-ast-l-n" + }, + "snapshot": { + "number": "3.3.8.8", + "spec": "WebAssembly Core", + "text": "br_table l∗ lN​", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-br-table-l-ast-l-n" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-br-table-l-ast-l-n%E2%91%A0": { @@ -8567,6 +7789,12 @@ "spec": "WebAssembly Core", "text": "br_table l∗ lN​", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-br-table-l-ast-l-n%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.8", + "spec": "WebAssembly Core", + "text": "br_table l∗ lN​", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-br-table-l-ast-l-n%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-call-indirect-x-y": { @@ -8575,6 +7803,12 @@ "spec": "WebAssembly Core", "text": "call_indirect x y", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-call-indirect-x-y" + }, + "snapshot": { + "number": "3.3.8.11", + "spec": "WebAssembly Core", + "text": "call_indirect x y", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-call-indirect-x-y" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-call-indirect-x-y%E2%91%A0": { @@ -8583,6 +7817,12 @@ "spec": "WebAssembly Core", "text": "call_indirect x y", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-call-indirect-x-y%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.11", + "spec": "WebAssembly Core", + "text": "call_indirect x y", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-call-indirect-x-y%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-call-x": { @@ -8591,6 +7831,12 @@ "spec": "WebAssembly Core", "text": "call x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-call-x" + }, + "snapshot": { + "number": "3.3.8.10", + "spec": "WebAssembly Core", + "text": "call x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-call-x" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-call-x%E2%91%A0": { @@ -8599,6 +7845,12 @@ "spec": "WebAssembly Core", "text": "call x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-call-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.10", + "spec": "WebAssembly Core", + "text": "call x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-call-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-if-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-1-ast-xref-syntax-instructions-syntax-instr-control-mathsf-else-xref-syntax-instructions-syntax-instr-mathit-instr-2-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end": { @@ -8607,6 +7859,12 @@ "spec": "WebAssembly Core", "text": "if blocktype instr1∗​ else instr2∗​ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-if-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-1-ast-xref-syntax-instructions-syntax-instr-control-mathsf-else-xref-syntax-instructions-syntax-instr-mathit-instr-2-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" + }, + "snapshot": { + "number": "3.3.8.5", + "spec": "WebAssembly Core", + "text": "if blocktype instr1∗​ else instr2∗​ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-if-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-1-ast-xref-syntax-instructions-syntax-instr-control-mathsf-else-xref-syntax-instructions-syntax-instr-mathit-instr-2-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-if-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-1-ast-xref-syntax-instructions-syntax-instr-control-mathsf-else-xref-syntax-instructions-syntax-instr-mathit-instr-2-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0": { @@ -8615,6 +7873,12 @@ "spec": "WebAssembly Core", "text": "if blocktype instr1∗​ else instr2∗​ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-if-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-1-ast-xref-syntax-instructions-syntax-instr-control-mathsf-else-xref-syntax-instructions-syntax-instr-mathit-instr-2-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.5", + "spec": "WebAssembly Core", + "text": "if blocktype instr1∗​ else instr2∗​ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-if-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-1-ast-xref-syntax-instructions-syntax-instr-control-mathsf-else-xref-syntax-instructions-syntax-instr-mathit-instr-2-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-loop-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end": { @@ -8623,6 +7887,12 @@ "spec": "WebAssembly Core", "text": "loop blocktype instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-loop-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" + }, + "snapshot": { + "number": "3.3.8.4", + "spec": "WebAssembly Core", + "text": "loop blocktype instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-loop-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-loop-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0": { @@ -8631,6 +7901,12 @@ "spec": "WebAssembly Core", "text": "loop blocktype instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-loop-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.4", + "spec": "WebAssembly Core", + "text": "loop blocktype instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-loop-xref-syntax-instructions-syntax-blocktype-mathit-blocktype-xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-nop": { @@ -8639,6 +7915,12 @@ "spec": "WebAssembly Core", "text": "nop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-nop" + }, + "snapshot": { + "number": "3.3.8.1", + "spec": "WebAssembly Core", + "text": "nop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-nop" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-nop%E2%91%A0": { @@ -8647,6 +7929,12 @@ "spec": "WebAssembly Core", "text": "nop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-nop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.1", + "spec": "WebAssembly Core", + "text": "nop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-nop%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-return": { @@ -8655,6 +7943,12 @@ "spec": "WebAssembly Core", "text": "return", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-return" + }, + "snapshot": { + "number": "3.3.8.9", + "spec": "WebAssembly Core", + "text": "return", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-return" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-return%E2%91%A0": { @@ -8663,6 +7957,12 @@ "spec": "WebAssembly Core", "text": "return", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-return%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.9", + "spec": "WebAssembly Core", + "text": "return", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-return%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-unreachable": { @@ -8671,6 +7971,12 @@ "spec": "WebAssembly Core", "text": "unreachable", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-unreachable" + }, + "snapshot": { + "number": "3.3.8.2", + "spec": "WebAssembly Core", + "text": "unreachable", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-unreachable" } }, "#xref-syntax-instructions-syntax-instr-control-mathsf-unreachable%E2%91%A0": { @@ -8679,6 +7985,12 @@ "spec": "WebAssembly Core", "text": "unreachable", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-control-mathsf-unreachable%E2%91%A0" + }, + "snapshot": { + "number": "4.4.8.2", + "spec": "WebAssembly Core", + "text": "unreachable", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-control-mathsf-unreachable%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end": { @@ -8687,6 +7999,12 @@ "spec": "WebAssembly Core", "text": "instr∗ end", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" + }, + "snapshot": { + "number": "3.3.10.1", + "spec": "WebAssembly Core", + "text": "instr∗ end", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-mathit-instr-ast-xref-syntax-instructions-syntax-instr-control-mathsf-end" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-data-drop-x": { @@ -8695,6 +8013,12 @@ "spec": "WebAssembly Core", "text": "data.drop x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-data-drop-x" + }, + "snapshot": { + "number": "3.3.7.15", + "spec": "WebAssembly Core", + "text": "data.drop x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-data-drop-x" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-data-drop-x%E2%91%A0": { @@ -8703,6 +8027,12 @@ "spec": "WebAssembly Core", "text": "data.drop x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-data-drop-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.7.13", + "spec": "WebAssembly Core", + "text": "data.drop x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-data-drop-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-copy": { @@ -8711,6 +8041,12 @@ "spec": "WebAssembly Core", "text": "memory.copy", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-copy" + }, + "snapshot": { + "number": "3.3.7.13", + "spec": "WebAssembly Core", + "text": "memory.copy", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-copy" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-copy%E2%91%A0": { @@ -8719,6 +8055,12 @@ "spec": "WebAssembly Core", "text": "memory.copy", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-copy%E2%91%A0" + }, + "snapshot": { + "number": "4.4.7.11", + "spec": "WebAssembly Core", + "text": "memory.copy", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-copy%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-fill": { @@ -8727,6 +8069,12 @@ "spec": "WebAssembly Core", "text": "memory.fill", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-fill" + }, + "snapshot": { + "number": "3.3.7.12", + "spec": "WebAssembly Core", + "text": "memory.fill", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-fill" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-fill%E2%91%A0": { @@ -8735,6 +8083,12 @@ "spec": "WebAssembly Core", "text": "memory.fill", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-fill%E2%91%A0" + }, + "snapshot": { + "number": "4.4.7.10", + "spec": "WebAssembly Core", + "text": "memory.fill", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-fill%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-grow": { @@ -8743,6 +8097,12 @@ "spec": "WebAssembly Core", "text": "memory.grow", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-grow" + }, + "snapshot": { + "number": "3.3.7.11", + "spec": "WebAssembly Core", + "text": "memory.grow", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-grow" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-grow%E2%91%A0": { @@ -8751,6 +8111,12 @@ "spec": "WebAssembly Core", "text": "memory.grow", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-grow%E2%91%A0" + }, + "snapshot": { + "number": "4.4.7.9", + "spec": "WebAssembly Core", + "text": "memory.grow", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-grow%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-init-x": { @@ -8759,6 +8125,12 @@ "spec": "WebAssembly Core", "text": "memory.init x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-init-x" + }, + "snapshot": { + "number": "3.3.7.14", + "spec": "WebAssembly Core", + "text": "memory.init x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-init-x" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-init-x%E2%91%A0": { @@ -8767,6 +8139,12 @@ "spec": "WebAssembly Core", "text": "memory.init x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-init-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.7.12", + "spec": "WebAssembly Core", + "text": "memory.init x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-init-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-size": { @@ -8775,6 +8153,12 @@ "spec": "WebAssembly Core", "text": "memory.size", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-size" + }, + "snapshot": { + "number": "3.3.7.10", + "spec": "WebAssembly Core", + "text": "memory.size", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-size" } }, "#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-size%E2%91%A0": { @@ -8783,6 +8167,12 @@ "spec": "WebAssembly Core", "text": "memory.size", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-size%E2%91%A0" + }, + "snapshot": { + "number": "4.4.7.8", + "spec": "WebAssembly Core", + "text": "memory.size", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-memory-mathsf-memory-size%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-parametric-mathsf-drop": { @@ -8791,6 +8181,12 @@ "spec": "WebAssembly Core", "text": "drop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-parametric-mathsf-drop" + }, + "snapshot": { + "number": "3.3.4.1", + "spec": "WebAssembly Core", + "text": "drop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-parametric-mathsf-drop" } }, "#xref-syntax-instructions-syntax-instr-parametric-mathsf-drop%E2%91%A0": { @@ -8799,6 +8195,12 @@ "spec": "WebAssembly Core", "text": "drop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-parametric-mathsf-drop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.4.1", + "spec": "WebAssembly Core", + "text": "drop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-parametric-mathsf-drop%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-parametric-mathsf-select-t-ast": { @@ -8807,6 +8209,12 @@ "spec": "WebAssembly Core", "text": "select (t∗)?", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-parametric-mathsf-select-t-ast" + }, + "snapshot": { + "number": "3.3.4.2", + "spec": "WebAssembly Core", + "text": "select (t∗)?", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-parametric-mathsf-select-t-ast" } }, "#xref-syntax-instructions-syntax-instr-parametric-mathsf-select-t-ast%E2%91%A0": { @@ -8815,6 +8223,12 @@ "spec": "WebAssembly Core", "text": "select (t∗)?", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-parametric-mathsf-select-t-ast%E2%91%A0" + }, + "snapshot": { + "number": "4.4.4.2", + "spec": "WebAssembly Core", + "text": "select (t∗)?", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-parametric-mathsf-select-t-ast%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-func-x": { @@ -8823,6 +8237,12 @@ "spec": "WebAssembly Core", "text": "ref.func x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-func-x" + }, + "snapshot": { + "number": "3.3.2.3", + "spec": "WebAssembly Core", + "text": "ref.func x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-func-x" } }, "#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-func-x%E2%91%A0": { @@ -8831,6 +8251,12 @@ "spec": "WebAssembly Core", "text": "ref.func x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-func-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.2.3", + "spec": "WebAssembly Core", + "text": "ref.func x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-func-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-is-null": { @@ -8839,6 +8265,12 @@ "spec": "WebAssembly Core", "text": "ref.is_null", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-is-null" + }, + "snapshot": { + "number": "3.3.2.2", + "spec": "WebAssembly Core", + "text": "ref.is_null", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-is-null" } }, "#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-is-null%E2%91%A0": { @@ -8847,6 +8279,12 @@ "spec": "WebAssembly Core", "text": "ref.is_null", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-is-null%E2%91%A0" + }, + "snapshot": { + "number": "4.4.2.2", + "spec": "WebAssembly Core", + "text": "ref.is_null", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-is-null%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t": { @@ -8855,6 +8293,12 @@ "spec": "WebAssembly Core", "text": "ref.null t", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t" + }, + "snapshot": { + "number": "3.3.2.1", + "spec": "WebAssembly Core", + "text": "ref.null t", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t" } }, "#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t%E2%91%A0": { @@ -8863,6 +8307,12 @@ "spec": "WebAssembly Core", "text": "ref.null t", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t%E2%91%A0" + }, + "snapshot": { + "number": "4.4.2.1", + "spec": "WebAssembly Core", + "text": "ref.null t", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-ref-mathsf-ref-null-t%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-elem-drop-x": { @@ -8871,6 +8321,12 @@ "spec": "WebAssembly Core", "text": "elem.drop x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-elem-drop-x" + }, + "snapshot": { + "number": "3.3.6.8", + "spec": "WebAssembly Core", + "text": "elem.drop x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-elem-drop-x" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-elem-drop-x%E2%91%A0": { @@ -8879,6 +8335,12 @@ "spec": "WebAssembly Core", "text": "elem.drop x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-elem-drop-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.8", + "spec": "WebAssembly Core", + "text": "elem.drop x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-elem-drop-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-copy-x-y": { @@ -8887,6 +8349,12 @@ "spec": "WebAssembly Core", "text": "table.copy x y", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-copy-x-y" + }, + "snapshot": { + "number": "3.3.6.6", + "spec": "WebAssembly Core", + "text": "table.copy x y", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-copy-x-y" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-copy-x-y%E2%91%A0": { @@ -8895,6 +8363,12 @@ "spec": "WebAssembly Core", "text": "table.copy x y", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-copy-x-y%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.6", + "spec": "WebAssembly Core", + "text": "table.copy x y", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-copy-x-y%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-fill-x": { @@ -8903,6 +8377,12 @@ "spec": "WebAssembly Core", "text": "table.fill x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-fill-x" + }, + "snapshot": { + "number": "3.3.6.5", + "spec": "WebAssembly Core", + "text": "table.fill x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-fill-x" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-fill-x%E2%91%A0": { @@ -8911,6 +8391,12 @@ "spec": "WebAssembly Core", "text": "table.fill x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-fill-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.5", + "spec": "WebAssembly Core", + "text": "table.fill x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-fill-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-get-x": { @@ -8919,6 +8405,12 @@ "spec": "WebAssembly Core", "text": "table.get x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-get-x" + }, + "snapshot": { + "number": "3.3.6.1", + "spec": "WebAssembly Core", + "text": "table.get x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-get-x" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-get-x%E2%91%A0": { @@ -8927,6 +8419,12 @@ "spec": "WebAssembly Core", "text": "table.get x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-get-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.1", + "spec": "WebAssembly Core", + "text": "table.get x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-get-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-grow-x": { @@ -8935,6 +8433,12 @@ "spec": "WebAssembly Core", "text": "table.grow x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-grow-x" + }, + "snapshot": { + "number": "3.3.6.4", + "spec": "WebAssembly Core", + "text": "table.grow x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-grow-x" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-grow-x%E2%91%A0": { @@ -8943,6 +8447,12 @@ "spec": "WebAssembly Core", "text": "table.grow x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-grow-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.4", + "spec": "WebAssembly Core", + "text": "table.grow x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-grow-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-init-x-y": { @@ -8951,6 +8461,12 @@ "spec": "WebAssembly Core", "text": "table.init x y", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-init-x-y" + }, + "snapshot": { + "number": "3.3.6.7", + "spec": "WebAssembly Core", + "text": "table.init x y", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-init-x-y" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-init-x-y%E2%91%A0": { @@ -8959,6 +8475,12 @@ "spec": "WebAssembly Core", "text": "table.init x y", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-init-x-y%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.7", + "spec": "WebAssembly Core", + "text": "table.init x y", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-init-x-y%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-set-x": { @@ -8967,6 +8489,12 @@ "spec": "WebAssembly Core", "text": "table.set x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-set-x" + }, + "snapshot": { + "number": "3.3.6.2", + "spec": "WebAssembly Core", + "text": "table.set x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-set-x" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-set-x%E2%91%A0": { @@ -8975,6 +8503,12 @@ "spec": "WebAssembly Core", "text": "table.set x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-set-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.2", + "spec": "WebAssembly Core", + "text": "table.set x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-set-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-size-x": { @@ -8983,6 +8517,12 @@ "spec": "WebAssembly Core", "text": "table.size x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-size-x" + }, + "snapshot": { + "number": "3.3.6.3", + "spec": "WebAssembly Core", + "text": "table.size x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-size-x" } }, "#xref-syntax-instructions-syntax-instr-table-mathsf-table-size-x%E2%91%A0": { @@ -8991,6 +8531,12 @@ "spec": "WebAssembly Core", "text": "table.size x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-table-mathsf-table-size-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.6.3", + "spec": "WebAssembly Core", + "text": "table.size x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-table-mathsf-table-size-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-global-get-x": { @@ -8999,6 +8545,12 @@ "spec": "WebAssembly Core", "text": "global.get x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-get-x" + }, + "snapshot": { + "number": "3.3.5.4", + "spec": "WebAssembly Core", + "text": "global.get x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-get-x" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-global-get-x%E2%91%A0": { @@ -9007,6 +8559,12 @@ "spec": "WebAssembly Core", "text": "global.get x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-get-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.5.4", + "spec": "WebAssembly Core", + "text": "global.get x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-get-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-global-set-x": { @@ -9015,6 +8573,12 @@ "spec": "WebAssembly Core", "text": "global.set x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-set-x" + }, + "snapshot": { + "number": "3.3.5.5", + "spec": "WebAssembly Core", + "text": "global.set x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-set-x" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-global-set-x%E2%91%A0": { @@ -9023,6 +8587,12 @@ "spec": "WebAssembly Core", "text": "global.set x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-set-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.5.5", + "spec": "WebAssembly Core", + "text": "global.set x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-global-set-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-local-get-x": { @@ -9031,6 +8601,12 @@ "spec": "WebAssembly Core", "text": "local.get x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-get-x" + }, + "snapshot": { + "number": "3.3.5.1", + "spec": "WebAssembly Core", + "text": "local.get x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-get-x" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-local-get-x%E2%91%A0": { @@ -9039,6 +8615,12 @@ "spec": "WebAssembly Core", "text": "local.get x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-get-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.5.1", + "spec": "WebAssembly Core", + "text": "local.get x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-get-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-local-set-x": { @@ -9047,6 +8629,12 @@ "spec": "WebAssembly Core", "text": "local.set x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-set-x" + }, + "snapshot": { + "number": "3.3.5.2", + "spec": "WebAssembly Core", + "text": "local.set x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-set-x" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-local-set-x%E2%91%A0": { @@ -9055,6 +8643,12 @@ "spec": "WebAssembly Core", "text": "local.set x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-set-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.5.2", + "spec": "WebAssembly Core", + "text": "local.set x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-set-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-local-tee-x": { @@ -9063,6 +8657,12 @@ "spec": "WebAssembly Core", "text": "local.tee x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-tee-x" + }, + "snapshot": { + "number": "3.3.5.3", + "spec": "WebAssembly Core", + "text": "local.tee x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-tee-x" } }, "#xref-syntax-instructions-syntax-instr-variable-mathsf-local-tee-x%E2%91%A0": { @@ -9071,6 +8671,12 @@ "spec": "WebAssembly Core", "text": "local.tee x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-tee-x%E2%91%A0" + }, + "snapshot": { + "number": "4.4.5.3", + "spec": "WebAssembly Core", + "text": "local.tee x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-instr-variable-mathsf-local-tee-x%E2%91%A0" } }, "#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-dot-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-s": { @@ -9079,6 +8685,12 @@ "spec": "WebAssembly Core", "text": "ishape1​.dot_ishape2​_s", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-dot-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-s" + }, + "snapshot": { + "number": "3.3.3.19", + "spec": "WebAssembly Core", + "text": "ishape1​.dot_ishape2​_s", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-dot-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-s" } }, "#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extadd-pairwise-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -9087,6 +8699,12 @@ "spec": "WebAssembly Core", "text": "ishape1​.extadd_pairwise_ishape2​_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extadd-pairwise-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "3.3.3.21", + "spec": "WebAssembly Core", + "text": "ishape1​.extadd_pairwise_ishape2​_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extadd-pairwise-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extmul-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -9095,6 +8713,12 @@ "spec": "WebAssembly Core", "text": "ishape1​.extmul_half_ishape2​_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extmul-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "3.3.3.20", + "spec": "WebAssembly Core", + "text": "ishape1​.extmul_half_ishape2​_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extmul-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-narrow-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx": { @@ -9103,6 +8727,12 @@ "spec": "WebAssembly Core", "text": "ishape1​.narrow_ishape2​_sx", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-narrow-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" + }, + "snapshot": { + "number": "3.3.3.17", + "spec": "WebAssembly Core", + "text": "ishape1​.narrow_ishape2​_sx", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-ishape-1-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-narrow-mathsf-xref-syntax-instructions-syntax-shape-mathit-ishape-2-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx" } }, "#xref-syntax-instructions-syntax-shape-mathit-ishape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-bitmask": { @@ -9111,6 +8741,12 @@ "spec": "WebAssembly Core", "text": "ishape.bitmask", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-ishape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-bitmask" + }, + "snapshot": { + "number": "3.3.3.18", + "spec": "WebAssembly Core", + "text": "ishape.bitmask", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-ishape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-bitmask" } }, "#xref-syntax-instructions-syntax-shape-mathit-ishape-mathsf-xref-syntax-instructions-syntax-vishiftop-mathit-vishiftop": { @@ -9119,6 +8755,12 @@ "spec": "WebAssembly Core", "text": "ishape.vishiftop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-ishape-mathsf-xref-syntax-instructions-syntax-vishiftop-mathit-vishiftop" + }, + "snapshot": { + "number": "3.3.3.14", + "spec": "WebAssembly Core", + "text": "ishape.vishiftop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-ishape-mathsf-xref-syntax-instructions-syntax-vishiftop-mathit-vishiftop" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-all-true": { @@ -9127,6 +8769,12 @@ "spec": "WebAssembly Core", "text": "shape.all_true", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-all-true" + }, + "snapshot": { + "number": "4.4.3.15", + "spec": "WebAssembly Core", + "text": "shape.all_true", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-all-true" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extract-lane-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-laneidx-mathit-laneidx": { @@ -9135,6 +8783,12 @@ "spec": "WebAssembly Core", "text": "shape.extract_lane_sx? laneidx", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extract-lane-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" + }, + "snapshot": { + "number": "3.3.3.9", + "spec": "WebAssembly Core", + "text": "shape.extract_lane_sx? laneidx", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-extract-lane-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-replace-lane-x": { @@ -9143,6 +8797,12 @@ "spec": "WebAssembly Core", "text": "shape.replace_lane x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-replace-lane-x" + }, + "snapshot": { + "number": "4.4.3.10", + "spec": "WebAssembly Core", + "text": "shape.replace_lane x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-replace-lane-x" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-replace-lane-xref-syntax-instructions-syntax-laneidx-mathit-laneidx": { @@ -9151,6 +8811,12 @@ "spec": "WebAssembly Core", "text": "shape.replace_lane laneidx", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-replace-lane-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" + }, + "snapshot": { + "number": "3.3.3.10", + "spec": "WebAssembly Core", + "text": "shape.replace_lane laneidx", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-replace-lane-xref-syntax-instructions-syntax-laneidx-mathit-laneidx" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-splat": { @@ -9159,6 +8825,12 @@ "spec": "WebAssembly Core", "text": "shape.splat", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-splat" + }, + "snapshot": { + "number": "3.3.3.8", + "spec": "WebAssembly Core", + "text": "shape.splat", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-splat" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-splat%E2%91%A0": { @@ -9167,6 +8839,12 @@ "spec": "WebAssembly Core", "text": "shape.splat", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-splat%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.8", + "spec": "WebAssembly Core", + "text": "shape.splat", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-splat%E2%91%A0" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vbinop-mathit-vbinop": { @@ -9175,6 +8853,12 @@ "spec": "WebAssembly Core", "text": "shape.vbinop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vbinop-mathit-vbinop" + }, + "snapshot": { + "number": "3.3.3.12", + "spec": "WebAssembly Core", + "text": "shape.vbinop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vbinop-mathit-vbinop" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vbinop-mathit-vbinop%E2%91%A0": { @@ -9183,6 +8867,12 @@ "spec": "WebAssembly Core", "text": "shape.vbinop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vbinop-mathit-vbinop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.12", + "spec": "WebAssembly Core", + "text": "shape.vbinop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vbinop-mathit-vbinop%E2%91%A0" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero": { @@ -9190,7 +8880,13 @@ "number": "3.3.3.16", "spec": "WebAssembly Core", "text": "shape.vcvtop_half?_shape_sx?_zero?", - "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero" + "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero" + }, + "snapshot": { + "number": "3.3.3.16", + "spec": "WebAssembly Core", + "text": "shape.vcvtop_half?_shape_sx?_zero?", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vcvtop-mathit-vcvtop-mathsf-xref-syntax-instructions-syntax-half-mathit-half-mathsf-xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-sx-mathit-sx-mathsf-zero" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vrelop-mathit-vrelop": { @@ -9199,6 +8895,12 @@ "spec": "WebAssembly Core", "text": "shape.vrelop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vrelop-mathit-vrelop" + }, + "snapshot": { + "number": "3.3.3.13", + "spec": "WebAssembly Core", + "text": "shape.vrelop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vrelop-mathit-vrelop" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vtestop-mathit-vtestop": { @@ -9207,6 +8909,12 @@ "spec": "WebAssembly Core", "text": "shape.vtestop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vtestop-mathit-vtestop" + }, + "snapshot": { + "number": "3.3.3.15", + "spec": "WebAssembly Core", + "text": "shape.vtestop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vtestop-mathit-vtestop" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vunop-mathit-vunop": { @@ -9215,6 +8923,12 @@ "spec": "WebAssembly Core", "text": "shape.vunop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vunop-mathit-vunop" + }, + "snapshot": { + "number": "3.3.3.11", + "spec": "WebAssembly Core", + "text": "shape.vunop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vunop-mathit-vunop" } }, "#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vunop-mathit-vunop%E2%91%A0": { @@ -9223,6 +8937,12 @@ "spec": "WebAssembly Core", "text": "shape.vunop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vunop-mathit-vunop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.11", + "spec": "WebAssembly Core", + "text": "shape.vunop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-instructions-syntax-shape-mathit-shape-mathsf-xref-syntax-instructions-syntax-vunop-mathit-vunop%E2%91%A0" } }, "#xref-syntax-modules-syntax-data-mathsf-init-b-ast-xref-syntax-modules-syntax-data-mathsf-mode-xref-syntax-modules-syntax-datamode-mathit-datamode": { @@ -9231,6 +8951,12 @@ "spec": "WebAssembly Core", "text": "{init b∗,mode datamode}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-data-mathsf-init-b-ast-xref-syntax-modules-syntax-data-mathsf-mode-xref-syntax-modules-syntax-datamode-mathit-datamode" + }, + "snapshot": { + "number": "3.4.6.1", + "spec": "WebAssembly Core", + "text": "{init b∗,mode datamode}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-data-mathsf-init-b-ast-xref-syntax-modules-syntax-data-mathsf-mode-xref-syntax-modules-syntax-datamode-mathit-datamode" } }, "#xref-syntax-modules-syntax-datamode-mathsf-active-xref-syntax-modules-syntax-data-mathsf-memory-x-xref-syntax-modules-syntax-data-mathsf-offset-xref-syntax-instructions-syntax-expr-mathit-expr": { @@ -9239,6 +8965,12 @@ "spec": "WebAssembly Core", "text": "active {memory x,offset expr}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-datamode-mathsf-active-xref-syntax-modules-syntax-data-mathsf-memory-x-xref-syntax-modules-syntax-data-mathsf-offset-xref-syntax-instructions-syntax-expr-mathit-expr" + }, + "snapshot": { + "number": "3.4.6.3", + "spec": "WebAssembly Core", + "text": "active {memory x,offset expr}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-datamode-mathsf-active-xref-syntax-modules-syntax-data-mathsf-memory-x-xref-syntax-modules-syntax-data-mathsf-offset-xref-syntax-instructions-syntax-expr-mathit-expr" } }, "#xref-syntax-modules-syntax-datamode-mathsf-passive": { @@ -9247,6 +8979,12 @@ "spec": "WebAssembly Core", "text": "passive", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-datamode-mathsf-passive" + }, + "snapshot": { + "number": "3.4.6.2", + "spec": "WebAssembly Core", + "text": "passive", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-datamode-mathsf-passive" } }, "#xref-syntax-modules-syntax-elem-mathsf-type-t-xref-syntax-modules-syntax-elem-mathsf-init-e-ast-xref-syntax-modules-syntax-elem-mathsf-mode-xref-syntax-modules-syntax-elemmode-mathit-elemmode": { @@ -9255,6 +8993,12 @@ "spec": "WebAssembly Core", "text": "{type t,init e∗,mode elemmode}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-elem-mathsf-type-t-xref-syntax-modules-syntax-elem-mathsf-init-e-ast-xref-syntax-modules-syntax-elem-mathsf-mode-xref-syntax-modules-syntax-elemmode-mathit-elemmode" + }, + "snapshot": { + "number": "3.4.5.1", + "spec": "WebAssembly Core", + "text": "{type t,init e∗,mode elemmode}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-elem-mathsf-type-t-xref-syntax-modules-syntax-elem-mathsf-init-e-ast-xref-syntax-modules-syntax-elem-mathsf-mode-xref-syntax-modules-syntax-elemmode-mathit-elemmode" } }, "#xref-syntax-modules-syntax-elemmode-mathsf-active-xref-syntax-modules-syntax-elem-mathsf-table-x-xref-syntax-modules-syntax-elem-mathsf-offset-xref-syntax-instructions-syntax-expr-mathit-expr": { @@ -9263,6 +9007,12 @@ "spec": "WebAssembly Core", "text": "active {table x,offset expr}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-elemmode-mathsf-active-xref-syntax-modules-syntax-elem-mathsf-table-x-xref-syntax-modules-syntax-elem-mathsf-offset-xref-syntax-instructions-syntax-expr-mathit-expr" + }, + "snapshot": { + "number": "3.4.5.3", + "spec": "WebAssembly Core", + "text": "active {table x,offset expr}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-elemmode-mathsf-active-xref-syntax-modules-syntax-elem-mathsf-table-x-xref-syntax-modules-syntax-elem-mathsf-offset-xref-syntax-instructions-syntax-expr-mathit-expr" } }, "#xref-syntax-modules-syntax-elemmode-mathsf-declarative": { @@ -9271,6 +9021,12 @@ "spec": "WebAssembly Core", "text": "declarative", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-elemmode-mathsf-declarative" + }, + "snapshot": { + "number": "3.4.5.4", + "spec": "WebAssembly Core", + "text": "declarative", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-elemmode-mathsf-declarative" } }, "#xref-syntax-modules-syntax-elemmode-mathsf-passive": { @@ -9279,6 +9035,12 @@ "spec": "WebAssembly Core", "text": "passive", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-elemmode-mathsf-passive" + }, + "snapshot": { + "number": "3.4.5.2", + "spec": "WebAssembly Core", + "text": "passive", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-elemmode-mathsf-passive" } }, "#xref-syntax-modules-syntax-export-mathsf-name-xref-syntax-values-syntax-name-mathit-name-xref-syntax-modules-syntax-export-mathsf-desc-xref-syntax-modules-syntax-exportdesc-mathit-exportdesc": { @@ -9287,6 +9049,12 @@ "spec": "WebAssembly Core", "text": "{name name,desc exportdesc}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-export-mathsf-name-xref-syntax-values-syntax-name-mathit-name-xref-syntax-modules-syntax-export-mathsf-desc-xref-syntax-modules-syntax-exportdesc-mathit-exportdesc" + }, + "snapshot": { + "number": "3.4.8.1", + "spec": "WebAssembly Core", + "text": "{name name,desc exportdesc}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-export-mathsf-name-xref-syntax-values-syntax-name-mathit-name-xref-syntax-modules-syntax-export-mathsf-desc-xref-syntax-modules-syntax-exportdesc-mathit-exportdesc" } }, "#xref-syntax-modules-syntax-exportdesc-mathsf-func-x": { @@ -9295,6 +9063,12 @@ "spec": "WebAssembly Core", "text": "func x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-exportdesc-mathsf-func-x" + }, + "snapshot": { + "number": "3.4.8.2", + "spec": "WebAssembly Core", + "text": "func x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-exportdesc-mathsf-func-x" } }, "#xref-syntax-modules-syntax-exportdesc-mathsf-global-x": { @@ -9303,6 +9077,12 @@ "spec": "WebAssembly Core", "text": "global x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-exportdesc-mathsf-global-x" + }, + "snapshot": { + "number": "3.4.8.5", + "spec": "WebAssembly Core", + "text": "global x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-exportdesc-mathsf-global-x" } }, "#xref-syntax-modules-syntax-exportdesc-mathsf-mem-x": { @@ -9311,6 +9091,12 @@ "spec": "WebAssembly Core", "text": "mem x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-exportdesc-mathsf-mem-x" + }, + "snapshot": { + "number": "3.4.8.4", + "spec": "WebAssembly Core", + "text": "mem x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-exportdesc-mathsf-mem-x" } }, "#xref-syntax-modules-syntax-exportdesc-mathsf-table-x": { @@ -9319,6 +9105,12 @@ "spec": "WebAssembly Core", "text": "table x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-exportdesc-mathsf-table-x" + }, + "snapshot": { + "number": "3.4.8.3", + "spec": "WebAssembly Core", + "text": "table x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-exportdesc-mathsf-table-x" } }, "#xref-syntax-modules-syntax-func-mathsf-type-x-xref-syntax-modules-syntax-func-mathsf-locals-t-ast-xref-syntax-modules-syntax-func-mathsf-body-xref-syntax-instructions-syntax-expr-mathit-expr": { @@ -9327,6 +9119,12 @@ "spec": "WebAssembly Core", "text": "{type x,locals t∗,body expr}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-func-mathsf-type-x-xref-syntax-modules-syntax-func-mathsf-locals-t-ast-xref-syntax-modules-syntax-func-mathsf-body-xref-syntax-instructions-syntax-expr-mathit-expr" + }, + "snapshot": { + "number": "3.4.1.1", + "spec": "WebAssembly Core", + "text": "{type x,locals t∗,body expr}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-func-mathsf-type-x-xref-syntax-modules-syntax-func-mathsf-locals-t-ast-xref-syntax-modules-syntax-func-mathsf-body-xref-syntax-instructions-syntax-expr-mathit-expr" } }, "#xref-syntax-modules-syntax-global-mathsf-type-xref-syntax-types-syntax-mut-mathit-mut-t-xref-syntax-modules-syntax-global-mathsf-init-xref-syntax-instructions-syntax-expr-mathit-expr": { @@ -9335,6 +9133,12 @@ "spec": "WebAssembly Core", "text": "{type mut t,init expr}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-global-mathsf-type-xref-syntax-types-syntax-mut-mathit-mut-t-xref-syntax-modules-syntax-global-mathsf-init-xref-syntax-instructions-syntax-expr-mathit-expr" + }, + "snapshot": { + "number": "3.4.4.1", + "spec": "WebAssembly Core", + "text": "{type mut t,init expr}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-global-mathsf-type-xref-syntax-types-syntax-mut-mathit-mut-t-xref-syntax-modules-syntax-global-mathsf-init-xref-syntax-instructions-syntax-expr-mathit-expr" } }, "#xref-syntax-modules-syntax-import-mathsf-module-xref-syntax-values-syntax-name-mathit-name-1-xref-syntax-modules-syntax-import-mathsf-name-xref-syntax-values-syntax-name-mathit-name-2-xref-syntax-modules-syntax-import-mathsf-desc-xref-syntax-modules-syntax-importdesc-mathit-importdesc": { @@ -9343,6 +9147,12 @@ "spec": "WebAssembly Core", "text": "{module name1​,name name2​,desc importdesc}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-import-mathsf-module-xref-syntax-values-syntax-name-mathit-name-1-xref-syntax-modules-syntax-import-mathsf-name-xref-syntax-values-syntax-name-mathit-name-2-xref-syntax-modules-syntax-import-mathsf-desc-xref-syntax-modules-syntax-importdesc-mathit-importdesc" + }, + "snapshot": { + "number": "3.4.9.1", + "spec": "WebAssembly Core", + "text": "{module name1​,name name2​,desc importdesc}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-import-mathsf-module-xref-syntax-values-syntax-name-mathit-name-1-xref-syntax-modules-syntax-import-mathsf-name-xref-syntax-values-syntax-name-mathit-name-2-xref-syntax-modules-syntax-import-mathsf-desc-xref-syntax-modules-syntax-importdesc-mathit-importdesc" } }, "#xref-syntax-modules-syntax-importdesc-mathsf-func-x": { @@ -9351,6 +9161,12 @@ "spec": "WebAssembly Core", "text": "func x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-importdesc-mathsf-func-x" + }, + "snapshot": { + "number": "3.4.9.2", + "spec": "WebAssembly Core", + "text": "func x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-importdesc-mathsf-func-x" } }, "#xref-syntax-modules-syntax-importdesc-mathsf-global-xref-syntax-types-syntax-globaltype-mathit-globaltype": { @@ -9359,6 +9175,12 @@ "spec": "WebAssembly Core", "text": "global globaltype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-importdesc-mathsf-global-xref-syntax-types-syntax-globaltype-mathit-globaltype" + }, + "snapshot": { + "number": "3.4.9.5", + "spec": "WebAssembly Core", + "text": "global globaltype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-importdesc-mathsf-global-xref-syntax-types-syntax-globaltype-mathit-globaltype" } }, "#xref-syntax-modules-syntax-importdesc-mathsf-mem-xref-syntax-types-syntax-memtype-mathit-memtype": { @@ -9367,6 +9189,12 @@ "spec": "WebAssembly Core", "text": "mem memtype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-importdesc-mathsf-mem-xref-syntax-types-syntax-memtype-mathit-memtype" + }, + "snapshot": { + "number": "3.4.9.4", + "spec": "WebAssembly Core", + "text": "mem memtype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-importdesc-mathsf-mem-xref-syntax-types-syntax-memtype-mathit-memtype" } }, "#xref-syntax-modules-syntax-importdesc-mathsf-table-xref-syntax-types-syntax-tabletype-mathit-tabletype": { @@ -9375,6 +9203,12 @@ "spec": "WebAssembly Core", "text": "table tabletype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-importdesc-mathsf-table-xref-syntax-types-syntax-tabletype-mathit-tabletype" + }, + "snapshot": { + "number": "3.4.9.3", + "spec": "WebAssembly Core", + "text": "table tabletype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-importdesc-mathsf-table-xref-syntax-types-syntax-tabletype-mathit-tabletype" } }, "#xref-syntax-modules-syntax-mem-mathsf-type-xref-syntax-types-syntax-memtype-mathit-memtype": { @@ -9383,6 +9217,12 @@ "spec": "WebAssembly Core", "text": "{type memtype}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-mem-mathsf-type-xref-syntax-types-syntax-memtype-mathit-memtype" + }, + "snapshot": { + "number": "3.4.3.1", + "spec": "WebAssembly Core", + "text": "{type memtype}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-mem-mathsf-type-xref-syntax-types-syntax-memtype-mathit-memtype" } }, "#xref-syntax-modules-syntax-start-mathsf-func-x": { @@ -9391,6 +9231,12 @@ "spec": "WebAssembly Core", "text": "{func x}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-start-mathsf-func-x" + }, + "snapshot": { + "number": "3.4.7.1", + "spec": "WebAssembly Core", + "text": "{func x}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-start-mathsf-func-x" } }, "#xref-syntax-modules-syntax-table-mathsf-type-xref-syntax-types-syntax-tabletype-mathit-tabletype": { @@ -9399,6 +9245,12 @@ "spec": "WebAssembly Core", "text": "{type tabletype}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-table-mathsf-type-xref-syntax-types-syntax-tabletype-mathit-tabletype" + }, + "snapshot": { + "number": "3.4.2.1", + "spec": "WebAssembly Core", + "text": "{type tabletype}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-table-mathsf-type-xref-syntax-types-syntax-tabletype-mathit-tabletype" } }, "#xref-syntax-modules-syntax-typeidx-mathit-typeidx": { @@ -9407,6 +9259,12 @@ "spec": "WebAssembly Core", "text": "typeidx", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-modules-syntax-typeidx-mathit-typeidx" + }, + "snapshot": { + "number": "3.2.2.1", + "spec": "WebAssembly Core", + "text": "typeidx", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-modules-syntax-typeidx-mathit-typeidx" } }, "#xref-syntax-types-syntax-externtype-mathsf-func-xref-syntax-types-syntax-functype-mathit-functype": { @@ -9415,6 +9273,12 @@ "spec": "WebAssembly Core", "text": "func functype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-externtype-mathsf-func-xref-syntax-types-syntax-functype-mathit-functype" + }, + "snapshot": { + "number": "3.2.7.1", + "spec": "WebAssembly Core", + "text": "func functype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-externtype-mathsf-func-xref-syntax-types-syntax-functype-mathit-functype" } }, "#xref-syntax-types-syntax-externtype-mathsf-global-xref-syntax-types-syntax-globaltype-mathit-globaltype": { @@ -9423,6 +9287,12 @@ "spec": "WebAssembly Core", "text": "global globaltype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-externtype-mathsf-global-xref-syntax-types-syntax-globaltype-mathit-globaltype" + }, + "snapshot": { + "number": "3.2.7.4", + "spec": "WebAssembly Core", + "text": "global globaltype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-externtype-mathsf-global-xref-syntax-types-syntax-globaltype-mathit-globaltype" } }, "#xref-syntax-types-syntax-externtype-mathsf-mem-xref-syntax-types-syntax-memtype-mathit-memtype": { @@ -9431,6 +9301,12 @@ "spec": "WebAssembly Core", "text": "mem memtype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-externtype-mathsf-mem-xref-syntax-types-syntax-memtype-mathit-memtype" + }, + "snapshot": { + "number": "3.2.7.3", + "spec": "WebAssembly Core", + "text": "mem memtype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-externtype-mathsf-mem-xref-syntax-types-syntax-memtype-mathit-memtype" } }, "#xref-syntax-types-syntax-externtype-mathsf-table-xref-syntax-types-syntax-tabletype-mathit-tabletype": { @@ -9439,6 +9315,12 @@ "spec": "WebAssembly Core", "text": "table tabletype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-externtype-mathsf-table-xref-syntax-types-syntax-tabletype-mathit-tabletype" + }, + "snapshot": { + "number": "3.2.7.2", + "spec": "WebAssembly Core", + "text": "table tabletype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-externtype-mathsf-table-xref-syntax-types-syntax-tabletype-mathit-tabletype" } }, "#xref-syntax-types-syntax-limits-mathit-limits": { @@ -9447,6 +9329,12 @@ "spec": "WebAssembly Core", "text": "limits", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-limits-mathit-limits" + }, + "snapshot": { + "number": "3.2.5.1", + "spec": "WebAssembly Core", + "text": "limits", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-limits-mathit-limits" } }, "#xref-syntax-types-syntax-limits-mathit-limits-xref-syntax-types-syntax-reftype-mathit-reftype": { @@ -9455,6 +9343,12 @@ "spec": "WebAssembly Core", "text": "limits reftype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-limits-mathit-limits-xref-syntax-types-syntax-reftype-mathit-reftype" + }, + "snapshot": { + "number": "3.2.4.1", + "spec": "WebAssembly Core", + "text": "limits reftype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-limits-mathit-limits-xref-syntax-types-syntax-reftype-mathit-reftype" } }, "#xref-syntax-types-syntax-limits-mathsf-min-n-xref-syntax-types-syntax-limits-mathsf-max-m": { @@ -9463,6 +9357,12 @@ "spec": "WebAssembly Core", "text": "{min n,max m?}", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-limits-mathsf-min-n-xref-syntax-types-syntax-limits-mathsf-max-m" + }, + "snapshot": { + "number": "3.2.1.1", + "spec": "WebAssembly Core", + "text": "{min n,max m?}", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-limits-mathsf-min-n-xref-syntax-types-syntax-limits-mathsf-max-m" } }, "#xref-syntax-types-syntax-mut-mathit-mut-xref-syntax-types-syntax-valtype-mathit-valtype": { @@ -9471,6 +9371,12 @@ "spec": "WebAssembly Core", "text": "mut valtype", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-mut-mathit-mut-xref-syntax-types-syntax-valtype-mathit-valtype" + }, + "snapshot": { + "number": "3.2.6.1", + "spec": "WebAssembly Core", + "text": "mut valtype", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-mut-mathit-mut-xref-syntax-types-syntax-valtype-mathit-valtype" } }, "#xref-syntax-types-syntax-valtype-mathit-valtype": { @@ -9479,6 +9385,12 @@ "spec": "WebAssembly Core", "text": "[valtype?]", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathit-valtype" + }, + "snapshot": { + "number": "3.2.2.2", + "spec": "WebAssembly Core", + "text": "[valtype?]", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathit-valtype" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-m-mathsf-x-n-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -9487,6 +9399,12 @@ "spec": "WebAssembly Core", "text": "v128.loadMxN_sx memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-m-mathsf-x-n-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "4.4.7.2", + "spec": "WebAssembly Core", + "text": "v128.loadMxN_sx memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-m-mathsf-x-n-xref-syntax-instructions-syntax-sx-mathit-sx-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-x": { @@ -9495,6 +9413,12 @@ "spec": "WebAssembly Core", "text": "v128.loadN_lane memarg x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-x" + }, + "snapshot": { + "number": "4.4.7.5", + "spec": "WebAssembly Core", + "text": "v128.loadN_lane memarg x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-x" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-splat-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -9503,6 +9427,12 @@ "spec": "WebAssembly Core", "text": "v128.loadN_splat memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-splat-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "4.4.7.3", + "spec": "WebAssembly Core", + "text": "v128.loadN_splat memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-splat-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-zero-xref-syntax-instructions-syntax-memarg-mathit-memarg": { @@ -9511,6 +9441,12 @@ "spec": "WebAssembly Core", "text": "v128.loadN_zero memarg", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-zero-xref-syntax-instructions-syntax-memarg-mathit-memarg" + }, + "snapshot": { + "number": "4.4.7.4", + "spec": "WebAssembly Core", + "text": "v128.loadN_zero memarg", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-load-n-mathsf-zero-xref-syntax-instructions-syntax-memarg-mathit-memarg" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-x": { @@ -9519,6 +9455,12 @@ "spec": "WebAssembly Core", "text": "v128.storeN_lane memarg x", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-x" + }, + "snapshot": { + "number": "4.4.7.7", + "spec": "WebAssembly Core", + "text": "v128.storeN_lane memarg x", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-memory-mathsf-store-n-mathsf-lane-xref-syntax-instructions-syntax-memarg-mathit-memarg-x" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-any-true": { @@ -9527,6 +9469,12 @@ "spec": "WebAssembly Core", "text": "v128.any_true", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-any-true" + }, + "snapshot": { + "number": "4.4.3.5", + "spec": "WebAssembly Core", + "text": "v128.any_true", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-any-true" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-const-c": { @@ -9535,6 +9483,12 @@ "spec": "WebAssembly Core", "text": "v128.const c", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-const-c" + }, + "snapshot": { + "number": "3.3.3.1", + "spec": "WebAssembly Core", + "text": "v128.const c", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-const-c" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-const-c%E2%91%A0": { @@ -9543,6 +9497,12 @@ "spec": "WebAssembly Core", "text": "v128.const c", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-const-c%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.1", + "spec": "WebAssembly Core", + "text": "v128.const c", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-instr-vec-mathsf-const-c%E2%91%A0" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvbinop-mathit-vvbinop": { @@ -9551,6 +9511,12 @@ "spec": "WebAssembly Core", "text": "v128.vvbinop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvbinop-mathit-vvbinop" + }, + "snapshot": { + "number": "3.3.3.3", + "spec": "WebAssembly Core", + "text": "v128.vvbinop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvbinop-mathit-vvbinop" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvbinop-mathit-vvbinop%E2%91%A0": { @@ -9559,6 +9525,12 @@ "spec": "WebAssembly Core", "text": "v128.vvbinop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvbinop-mathit-vvbinop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.3", + "spec": "WebAssembly Core", + "text": "v128.vvbinop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvbinop-mathit-vvbinop%E2%91%A0" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvternop-mathit-vvternop": { @@ -9567,6 +9539,12 @@ "spec": "WebAssembly Core", "text": "v128.vvternop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvternop-mathit-vvternop" + }, + "snapshot": { + "number": "3.3.3.4", + "spec": "WebAssembly Core", + "text": "v128.vvternop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvternop-mathit-vvternop" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvternop-mathit-vvternop%E2%91%A0": { @@ -9575,6 +9553,12 @@ "spec": "WebAssembly Core", "text": "v128.vvternop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvternop-mathit-vvternop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.4", + "spec": "WebAssembly Core", + "text": "v128.vvternop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvternop-mathit-vvternop%E2%91%A0" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvtestop-mathit-vvtestop": { @@ -9583,6 +9567,12 @@ "spec": "WebAssembly Core", "text": "v128.vvtestop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvtestop-mathit-vvtestop" + }, + "snapshot": { + "number": "3.3.3.5", + "spec": "WebAssembly Core", + "text": "v128.vvtestop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvtestop-mathit-vvtestop" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvunop-mathit-vvunop": { @@ -9591,6 +9581,12 @@ "spec": "WebAssembly Core", "text": "v128.vvunop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvunop-mathit-vvunop" + }, + "snapshot": { + "number": "3.3.3.2", + "spec": "WebAssembly Core", + "text": "v128.vvunop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvunop-mathit-vvunop" } }, "#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvunop-mathit-vvunop%E2%91%A0": { @@ -9599,6 +9595,12 @@ "spec": "WebAssembly Core", "text": "v128.vvunop", "url": "https://webassembly.github.io/spec/core/bikeshed/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvunop-mathit-vvunop%E2%91%A0" + }, + "snapshot": { + "number": "4.4.3.2", + "spec": "WebAssembly Core", + "text": "v128.vvunop", + "url": "https://www.w3.org/TR/wasm-core-2/#xref-syntax-types-syntax-valtype-mathsf-v128-mathsf-xref-syntax-instructions-syntax-vvunop-mathit-vvunop%E2%91%A0" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-wasm-js-api-2.json b/bikeshed/spec-data/readonly/headings/headings-wasm-js-api-2.json index 02b6248cc1..ae17fa262c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-wasm-js-api-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-wasm-js-api-2.json @@ -131,6 +131,12 @@ "spec": "WebAssembly JavaScript Interface", "text": "Informative References", "url": "https://webassembly.github.io/spec/js-api/#informative" + }, + "snapshot": { + "number": "", + "spec": "WebAssembly JavaScript Interface", + "text": "Informative References", + "url": "https://www.w3.org/TR/wasm-js-api-2/#informative" } }, "#instances": { @@ -343,14 +349,6 @@ "url": "https://www.w3.org/TR/wasm-js-api-2/#store" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "WebAssembly JavaScript Interface", - "text": "Version 2.0", - "url": "https://www.w3.org/TR/wasm-js-api-2/#subtitle" - } - }, "#tables": { "current": { "number": "4.4", diff --git a/bikeshed/spec-data/readonly/headings/headings-wasm-web-api-2.json b/bikeshed/spec-data/readonly/headings/headings-wasm-web-api-2.json index c78b870117..4c98e44cdf 100644 --- a/bikeshed/spec-data/readonly/headings/headings-wasm-web-api-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-wasm-web-api-2.json @@ -167,14 +167,6 @@ "url": "https://www.w3.org/TR/wasm-web-api-2/#streaming-modules" } }, - "#subtitle": { - "snapshot": { - "number": "", - "spec": "WebAssembly Web API", - "text": "Version 2.0", - "url": "https://www.w3.org/TR/wasm-web-api-2/#subtitle" - } - }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-web-animations-1.json b/bikeshed/spec-data/readonly/headings/headings-web-animations-1.json index a8858c2c8a..2fb49f1bce 100644 --- a/bikeshed/spec-data/readonly/headings/headings-web-animations-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-web-animations-1.json @@ -99,7 +99,7 @@ }, "#animation-effect-calculations-overview": { "current": { - "number": "4.8.1", + "number": "4.7.1", "spec": "Web Animations", "text": "Overview", "url": "https://drafts.csswg.org/web-animations-1/#animation-effect-calculations-overview" @@ -113,7 +113,7 @@ }, "#animation-effect-phases-and-states": { "current": { - "number": "4.5.5", + "number": "4.6.6", "spec": "Web Animations", "text": "Animation effect phases and states", "url": "https://drafts.csswg.org/web-animations-1/#animation-effect-phases-and-states" @@ -127,7 +127,7 @@ }, "#animation-effects": { "current": { - "number": "4.5", + "number": "4.6", "spec": "Web Animations", "text": "Animation effects", "url": "https://drafts.csswg.org/web-animations-1/#animation-effects" @@ -141,9 +141,9 @@ }, "#animation-effects-and-animations": { "current": { - "number": "4.5.1", + "number": "4.6.2", "spec": "Web Animations", - "text": "Relationship between animation effects and animations", + "text": "Associated animation and timeline", "url": "https://drafts.csswg.org/web-animations-1/#animation-effects-and-animations" }, "snapshot": { @@ -155,7 +155,7 @@ }, "#animation-events-section": { "current": { - "number": "4.4.18", + "number": "4.5.18", "spec": "Web Animations", "text": "Animation events", "url": "https://drafts.csswg.org/web-animations-1/#animation-events-section" @@ -167,6 +167,14 @@ "url": "https://www.w3.org/TR/web-animations-1/#animation-events-section" } }, + "#animation-frame-loop": { + "current": { + "number": "4.4", + "spec": "Web Animations", + "text": "Animation Frames", + "url": "https://drafts.csswg.org/web-animations-1/#animation-frame-loop" + } + }, "#animation-model": { "current": { "number": "5", @@ -183,7 +191,7 @@ }, "#animation-playback-event-types": { "current": { - "number": "4.4.18.3", + "number": "4.5.18.3", "spec": "Web Animations", "text": "Types of animation playback events", "url": "https://drafts.csswg.org/web-animations-1/#animation-playback-event-types" @@ -197,7 +205,7 @@ }, "#animation-playback-events-section": { "current": { - "number": "4.4.18.2", + "number": "4.5.18.2", "spec": "Web Animations", "text": "Animation playback events", "url": "https://drafts.csswg.org/web-animations-1/#animation-playback-events-section" @@ -225,21 +233,21 @@ }, "#animation-types": { "current": { - "number": "", + "number": "A", "spec": "Web Animations", - "text": "Appendix A: Animation types of existing properties", + "text": "Animation types of existing properties", "url": "https://drafts.csswg.org/web-animations-1/#animation-types" }, "snapshot": { - "number": "", + "number": "A", "spec": "Web Animations", - "text": "Appendix A: Animation types of existing properties", + "text": "Animation types of existing properties", "url": "https://www.w3.org/TR/web-animations-1/#animation-types" } }, "#animations": { "current": { - "number": "4.4", + "number": "4.5", "spec": "Web Animations", "text": "Animations", "url": "https://drafts.csswg.org/web-animations-1/#animations" @@ -280,12 +288,6 @@ } }, "#calculating-the-active-duration": { - "current": { - "number": "4.8.2", - "spec": "Web Animations", - "text": "Calculating the active duration", - "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-active-duration" - }, "snapshot": { "number": "4.8.2", "spec": "Web Animations", @@ -295,7 +297,7 @@ }, "#calculating-the-active-time": { "current": { - "number": "4.8.3.1", + "number": "4.7.2", "spec": "Web Animations", "text": "Calculating the active time", "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-active-time" @@ -309,9 +311,9 @@ }, "#calculating-the-current-iteration": { "current": { - "number": "4.8.4", + "number": "4.7.5", "spec": "Web Animations", - "text": "Calculating the current iteration", + "text": "Calculating the current iteration index", "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-current-iteration" }, "snapshot": { @@ -323,7 +325,7 @@ }, "#calculating-the-directed-progress": { "current": { - "number": "4.9.1", + "number": "4.7.6", "spec": "Web Animations", "text": "Calculating the directed progress", "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-directed-progress" @@ -337,7 +339,7 @@ }, "#calculating-the-overall-progress": { "current": { - "number": "4.8.3.2", + "number": "4.7.3", "spec": "Web Animations", "text": "Calculating the overall progress", "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-overall-progress" @@ -365,7 +367,7 @@ }, "#calculating-the-simple-iteration-progress": { "current": { - "number": "4.8.3.3", + "number": "4.7.4", "spec": "Web Animations", "text": "Calculating the simple iteration progress", "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-simple-iteration-progress" @@ -379,7 +381,7 @@ }, "#calculating-the-transformed-progress": { "current": { - "number": "4.10.1", + "number": "4.7.7", "spec": "Web Animations", "text": "Calculating the transformed progress", "url": "https://drafts.csswg.org/web-animations-1/#calculating-the-transformed-progress" @@ -393,7 +395,7 @@ }, "#canceling-an-animation-section": { "current": { - "number": "4.4.14", + "number": "4.5.14", "spec": "Web Animations", "text": "Canceling an animation", "url": "https://drafts.csswg.org/web-animations-1/#canceling-an-animation-section" @@ -463,7 +465,7 @@ }, "#controlling-iteration": { "current": { - "number": "4.7.2", + "number": "4.6.9.2", "spec": "Web Animations", "text": "Controlling iteration", "url": "https://drafts.csswg.org/web-animations-1/#controlling-iteration" @@ -477,9 +479,9 @@ }, "#core-animation-effect-calculations": { "current": { - "number": "4.8", + "number": "4.7", "spec": "Web Animations", - "text": "Core animation effect calculations", + "text": "Calculating progress", "url": "https://drafts.csswg.org/web-animations-1/#core-animation-effect-calculations" }, "snapshot": { @@ -519,7 +521,7 @@ }, "#direction-control": { "current": { - "number": "4.9", + "number": "4.6.10", "spec": "Web Animations", "text": "Direction control", "url": "https://drafts.csswg.org/web-animations-1/#direction-control" @@ -545,6 +547,14 @@ "url": "https://www.w3.org/TR/web-animations-1/#document-timelines" } }, + "#document-wallclock-time": { + "current": { + "number": "4.3.1.2", + "spec": "Web Animations", + "text": "Relationship to wall-clock time", + "url": "https://drafts.csswg.org/web-animations-1/#document-wallclock-time" + } + }, "#effect-composition": { "current": { "number": "5.4.4", @@ -559,6 +569,14 @@ "url": "https://www.w3.org/TR/web-animations-1/#effect-composition" } }, + "#effect-time-spaces": { + "current": { + "number": "4.6.4", + "spec": "Web Animations", + "text": "Time spaces", + "url": "https://drafts.csswg.org/web-animations-1/#effect-time-spaces" + } + }, "#extensions-to-the-document-interface": { "current": { "number": "6.9", @@ -603,9 +621,9 @@ }, "#fill-behavior": { "current": { - "number": "4.6", + "number": "4.6.8", "spec": "Web Animations", - "text": "Fill behavior", + "text": "Fill behavior and fill modes", "url": "https://drafts.csswg.org/web-animations-1/#fill-behavior" }, "snapshot": { @@ -616,12 +634,6 @@ } }, "#fill-modes": { - "current": { - "number": "4.6.1", - "spec": "Web Animations", - "text": "Fill modes", - "url": "https://drafts.csswg.org/web-animations-1/#fill-modes" - }, "snapshot": { "number": "4.6.1", "spec": "Web Animations", @@ -631,7 +643,7 @@ }, "#finishing-an-animation-section": { "current": { - "number": "4.4.13", + "number": "4.5.13", "spec": "Web Animations", "text": "Finishing an animation", "url": "https://drafts.csswg.org/web-animations-1/#finishing-an-animation-section" @@ -771,7 +783,7 @@ }, "#interval-timing": { "current": { - "number": "4.7.4", + "number": "4.6.9.3", "spec": "Web Animations", "text": "Interval timing", "url": "https://drafts.csswg.org/web-animations-1/#interval-timing" @@ -827,7 +839,7 @@ }, "#iteration-intervals": { "current": { - "number": "4.7.1", + "number": "4.6.9.1", "spec": "Web Animations", "text": "Iteration intervals", "url": "https://drafts.csswg.org/web-animations-1/#iteration-intervals" @@ -840,12 +852,6 @@ } }, "#iteration-time-space": { - "current": { - "number": "4.7.3", - "spec": "Web Animations", - "text": "Iteration time space", - "url": "https://drafts.csswg.org/web-animations-1/#iteration-time-space" - }, "snapshot": { "number": "4.7.3", "spec": "Web Animations", @@ -883,7 +889,7 @@ }, "#local-time-section": { "current": { - "number": "4.5.4", + "number": "4.6.3", "spec": "Web Animations", "text": "Local time", "url": "https://drafts.csswg.org/web-animations-1/#local-time-section" @@ -939,7 +945,7 @@ }, "#pausing-an-animation-section": { "current": { - "number": "4.4.9", + "number": "4.5.9", "spec": "Web Animations", "text": "Pausing an animation", "url": "https://drafts.csswg.org/web-animations-1/#pausing-an-animation-section" @@ -953,7 +959,7 @@ }, "#play-states": { "current": { - "number": "4.4.17", + "number": "4.5.17", "spec": "Web Animations", "text": "Play states", "url": "https://drafts.csswg.org/web-animations-1/#play-states" @@ -967,7 +973,7 @@ }, "#playing-an-animation-section": { "current": { - "number": "4.4.8", + "number": "4.5.8", "spec": "Web Animations", "text": "Playing an animation", "url": "https://drafts.csswg.org/web-animations-1/#playing-an-animation-section" @@ -1037,7 +1043,7 @@ }, "#reaching-the-end": { "current": { - "number": "4.4.10", + "number": "4.5.10", "spec": "Web Animations", "text": "Reaching the end", "url": "https://drafts.csswg.org/web-animations-1/#reaching-the-end" @@ -1079,10 +1085,16 @@ }, "#relevant-animations-section": { "current": { - "number": "4.5.6", + "number": "4.6.7", "spec": "Web Animations", "text": "Relevant animations", "url": "https://drafts.csswg.org/web-animations-1/#relevant-animations-section" + }, + "snapshot": { + "number": "4.5.6", + "spec": "Web Animations", + "text": "Relevant animations", + "url": "https://www.w3.org/TR/web-animations-1/#relevant-animations-section" } }, "#removing-replaced-animations": { @@ -1101,7 +1113,7 @@ }, "#repeating": { "current": { - "number": "4.7", + "number": "4.6.9", "spec": "Web Animations", "text": "Repeating", "url": "https://drafts.csswg.org/web-animations-1/#repeating" @@ -1129,7 +1141,7 @@ }, "#reversing-an-animation-section": { "current": { - "number": "4.4.16", + "number": "4.5.16", "spec": "Web Animations", "text": "Reversing an animation", "url": "https://drafts.csswg.org/web-animations-1/#reversing-an-animation-section" @@ -1143,7 +1155,7 @@ }, "#seamlessly-updating-the-playback-rate-of-an-animation": { "current": { - "number": "4.4.15.2", + "number": "4.5.15.2", "spec": "Web Animations", "text": "Seamlessly updating the playback rate of an animation", "url": "https://drafts.csswg.org/web-animations-1/#seamlessly-updating-the-playback-rate-of-an-animation" @@ -1157,7 +1169,7 @@ }, "#setting-the-associated-effect": { "current": { - "number": "4.4.2", + "number": "4.5.3", "spec": "Web Animations", "text": "Setting the associated effect of an animation", "url": "https://drafts.csswg.org/web-animations-1/#setting-the-associated-effect" @@ -1171,7 +1183,7 @@ }, "#setting-the-current-time-of-an-animation": { "current": { - "number": "4.4.4", + "number": "4.5.4", "spec": "Web Animations", "text": "Setting the current time of an animation", "url": "https://drafts.csswg.org/web-animations-1/#setting-the-current-time-of-an-animation" @@ -1185,7 +1197,7 @@ }, "#setting-the-playback-rate-of-an-animation": { "current": { - "number": "4.4.15.1", + "number": "4.5.15.1", "spec": "Web Animations", "text": "Setting the playback rate of an animation", "url": "https://drafts.csswg.org/web-animations-1/#setting-the-playback-rate-of-an-animation" @@ -1199,7 +1211,7 @@ }, "#setting-the-start-time-of-an-animation": { "current": { - "number": "4.4.5", + "number": "4.5.5", "spec": "Web Animations", "text": "Setting the start time of an animation", "url": "https://drafts.csswg.org/web-animations-1/#setting-the-start-time-of-an-animation" @@ -1213,7 +1225,7 @@ }, "#setting-the-timeline": { "current": { - "number": "4.4.1", + "number": "4.5.2", "spec": "Web Animations", "text": "Setting the timeline of an animation", "url": "https://drafts.csswg.org/web-animations-1/#setting-the-timeline" @@ -1241,7 +1253,7 @@ }, "#sorting-animation-events": { "current": { - "number": "4.4.18.1", + "number": "4.5.18.1", "spec": "Web Animations", "text": "Sorting animation events", "url": "https://drafts.csswg.org/web-animations-1/#sorting-animation-events" @@ -1283,7 +1295,7 @@ }, "#speed-control": { "current": { - "number": "4.4.15", + "number": "4.5.15", "spec": "Web Animations", "text": "Speed control", "url": "https://drafts.csswg.org/web-animations-1/#speed-control" @@ -1309,9 +1321,17 @@ "url": "https://www.w3.org/TR/web-animations-1/#stateless" } }, + "#the-active-duration": { + "current": { + "number": "4.6.5.2", + "spec": "Web Animations", + "text": "The active duration", + "url": "https://drafts.csswg.org/web-animations-1/#the-active-duration" + } + }, "#the-active-interval": { "current": { - "number": "4.5.3", + "number": "4.6.5", "spec": "Web Animations", "text": "The active interval", "url": "https://drafts.csswg.org/web-animations-1/#the-active-interval" @@ -1451,7 +1471,7 @@ }, "#the-current-finished-promise": { "current": { - "number": "4.4.11", + "number": "4.5.11", "spec": "Web Animations", "text": "The current finished promise", "url": "https://drafts.csswg.org/web-animations-1/#the-current-finished-promise" @@ -1465,7 +1485,7 @@ }, "#the-current-ready-promise": { "current": { - "number": "4.4.7", + "number": "4.5.7", "spec": "Web Animations", "text": "The current ready promise", "url": "https://drafts.csswg.org/web-animations-1/#the-current-ready-promise" @@ -1479,9 +1499,9 @@ }, "#the-current-time-of-an-animation": { "current": { - "number": "4.4.3", + "number": "4.5.1", "spec": "Web Animations", - "text": "The current time of an animation", + "text": "Calculating the current time of an animation", "url": "https://drafts.csswg.org/web-animations-1/#the-current-time-of-an-animation" }, "snapshot": { @@ -1493,7 +1513,7 @@ }, "#the-documents-default-timeline": { "current": { - "number": "4.3.2", + "number": "4.3.1.1", "spec": "Web Animations", "text": "The default document timeline", "url": "https://drafts.csswg.org/web-animations-1/#the-documents-default-timeline" @@ -1561,6 +1581,14 @@ "url": "https://www.w3.org/TR/web-animations-1/#the-effecttiming-dictionaries" } }, + "#the-end-delay": { + "current": { + "number": "4.6.5.3", + "spec": "Web Animations", + "text": "The end delay and animation effect end time", + "url": "https://drafts.csswg.org/web-animations-1/#the-end-delay" + } + }, "#the-fillmode-enumeration": { "current": { "number": "6.5.2", @@ -1577,9 +1605,9 @@ }, "#the-iteration-progress": { "current": { - "number": "4.11", + "number": "4.7.8", "spec": "Web Animations", - "text": "The iteration progress", + "text": "Yielding the iteration progress", "url": "https://drafts.csswg.org/web-animations-1/#the-iteration-progress" }, "snapshot": { @@ -1631,11 +1659,19 @@ "url": "https://www.w3.org/TR/web-animations-1/#the-playbackdirection-enumeration" } }, + "#the-start-delay": { + "current": { + "number": "4.6.5.1", + "spec": "Web Animations", + "text": "The start delay", + "url": "https://drafts.csswg.org/web-animations-1/#the-start-delay" + } + }, "#time-transformations": { "current": { - "number": "4.10", + "number": "4.6.11", "spec": "Web Animations", - "text": "Time transformations", + "text": "Easing (effect timing transformations)", "url": "https://drafts.csswg.org/web-animations-1/#time-transformations" }, "snapshot": { @@ -1705,7 +1741,7 @@ "current": { "number": "4.1", "spec": "Web Animations", - "text": "Timing model overview", + "text": "Timing model characteristics", "url": "https://drafts.csswg.org/web-animations-1/#timing-model-overview" }, "snapshot": { @@ -1744,12 +1780,6 @@ } }, "#transforming-the-local-time": { - "current": { - "number": "4.8.3", - "spec": "Web Animations", - "text": "Transforming the local time", - "url": "https://drafts.csswg.org/web-animations-1/#transforming-the-local-time" - }, "snapshot": { "number": "4.8.3", "spec": "Web Animations", @@ -1759,7 +1789,7 @@ }, "#types-of-animation-effects": { "current": { - "number": "4.5.2", + "number": "4.6.1", "spec": "Web Animations", "text": "Types of animation effects", "url": "https://drafts.csswg.org/web-animations-1/#types-of-animation-effects" @@ -1787,7 +1817,7 @@ }, "#updating-the-finished-state": { "current": { - "number": "4.4.12", + "number": "4.5.12", "spec": "Web Animations", "text": "Updating the finished state", "url": "https://drafts.csswg.org/web-animations-1/#updating-the-finished-state" @@ -1899,7 +1929,7 @@ }, "#waiting-for-the-associated-effect": { "current": { - "number": "4.4.6", + "number": "4.5.6", "spec": "Web Animations", "text": "Waiting for the associated effect", "url": "https://drafts.csswg.org/web-animations-1/#waiting-for-the-associated-effect" diff --git a/bikeshed/spec-data/readonly/headings/headings-web-animations-2.json b/bikeshed/spec-data/readonly/headings/headings-web-animations-2.json index 3f1d4482c2..265a537798 100644 --- a/bikeshed/spec-data/readonly/headings/headings-web-animations-2.json +++ b/bikeshed/spec-data/readonly/headings/headings-web-animations-2.json @@ -5,6 +5,12 @@ "spec": "Web Animations 2", "text": "Abstract", "url": "https://drafts.csswg.org/web-animations-2/#abstract" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Abstract", + "url": "https://www.w3.org/TR/web-animations-2/#abstract" } }, "#animation-effect-calculations-overview": { @@ -13,6 +19,12 @@ "spec": "Web Animations 2", "text": "Overview", "url": "https://drafts.csswg.org/web-animations-2/#animation-effect-calculations-overview" + }, + "snapshot": { + "number": "3.7.1", + "spec": "Web Animations 2", + "text": "Overview", + "url": "https://www.w3.org/TR/web-animations-2/#animation-effect-calculations-overview" } }, "#animation-effect-phases-and-states": { @@ -21,6 +33,12 @@ "spec": "Web Animations 2", "text": "Animation effect phases and states", "url": "https://drafts.csswg.org/web-animations-2/#animation-effect-phases-and-states" + }, + "snapshot": { + "number": "3.4.4", + "spec": "Web Animations 2", + "text": "Animation effect phases and states", + "url": "https://www.w3.org/TR/web-animations-2/#animation-effect-phases-and-states" } }, "#animation-effect-speed-control": { @@ -29,6 +47,12 @@ "spec": "Web Animations 2", "text": "Animation effect speed control", "url": "https://drafts.csswg.org/web-animations-2/#animation-effect-speed-control" + }, + "snapshot": { + "number": "3.6", + "spec": "Web Animations 2", + "text": "Animation effect speed control", + "url": "https://www.w3.org/TR/web-animations-2/#animation-effect-speed-control" } }, "#animation-effects": { @@ -37,6 +61,12 @@ "spec": "Web Animations 2", "text": "Animation effects", "url": "https://drafts.csswg.org/web-animations-2/#animation-effects" + }, + "snapshot": { + "number": "3.4", + "spec": "Web Animations 2", + "text": "Animation effects", + "url": "https://www.w3.org/TR/web-animations-2/#animation-effects" } }, "#animation-model": { @@ -45,6 +75,12 @@ "spec": "Web Animations 2", "text": "Animation model", "url": "https://drafts.csswg.org/web-animations-2/#animation-model" + }, + "snapshot": { + "number": "4", + "spec": "Web Animations 2", + "text": "Animation model", + "url": "https://www.w3.org/TR/web-animations-2/#animation-model" } }, "#animation-types": { @@ -53,6 +89,12 @@ "spec": "Web Animations 2", "text": "Animation types", "url": "https://drafts.csswg.org/web-animations-2/#animation-types" + }, + "snapshot": { + "number": "4.1", + "spec": "Web Animations 2", + "text": "Animation types", + "url": "https://www.w3.org/TR/web-animations-2/#animation-types" } }, "#animations": { @@ -61,6 +103,20 @@ "spec": "Web Animations 2", "text": "Animations", "url": "https://drafts.csswg.org/web-animations-2/#animations" + }, + "snapshot": { + "number": "3.3", + "spec": "Web Animations 2", + "text": "Animations", + "url": "https://www.w3.org/TR/web-animations-2/#animations" + } + }, + "#auto-aligning-start-time": { + "current": { + "number": "3.3.7.1", + "spec": "Web Animations 2", + "text": "Auto-aligning the start time", + "url": "https://drafts.csswg.org/web-animations-2/#auto-aligning-start-time" } }, "#calculating-the-active-duration": { @@ -69,6 +125,12 @@ "spec": "Web Animations 2", "text": "Calculating the active duration", "url": "https://drafts.csswg.org/web-animations-2/#calculating-the-active-duration" + }, + "snapshot": { + "number": "3.7.2", + "spec": "Web Animations 2", + "text": "Calculating the active duration", + "url": "https://www.w3.org/TR/web-animations-2/#calculating-the-active-duration" } }, "#calculating-the-active-time": { @@ -77,6 +139,12 @@ "spec": "Web Animations 2", "text": "Calculating the active time", "url": "https://drafts.csswg.org/web-animations-2/#calculating-the-active-time" + }, + "snapshot": { + "number": "3.7.3.1", + "spec": "Web Animations 2", + "text": "Calculating the active time", + "url": "https://www.w3.org/TR/web-animations-2/#calculating-the-active-time" } }, "#calculating-the-overall-progress": { @@ -85,6 +153,12 @@ "spec": "Web Animations 2", "text": "Calculating the overall progress", "url": "https://drafts.csswg.org/web-animations-2/#calculating-the-overall-progress" + }, + "snapshot": { + "number": "3.7.3.2", + "spec": "Web Animations 2", + "text": "Calculating the overall progress", + "url": "https://www.w3.org/TR/web-animations-2/#calculating-the-overall-progress" } }, "#calculating-the-transformed-progress": { @@ -93,6 +167,12 @@ "spec": "Web Animations 2", "text": "Calculating the transformed progress", "url": "https://drafts.csswg.org/web-animations-2/#calculating-the-transformed-progress" + }, + "snapshot": { + "number": "3.8.1", + "spec": "Web Animations 2", + "text": "Calculating the transformed progress", + "url": "https://www.w3.org/TR/web-animations-2/#calculating-the-transformed-progress" } }, "#calculating-the-transformed-time": { @@ -101,6 +181,12 @@ "spec": "Web Animations 2", "text": "Calculating the transformed time", "url": "https://drafts.csswg.org/web-animations-2/#calculating-the-transformed-time" + }, + "snapshot": { + "number": "3.8.2", + "spec": "Web Animations 2", + "text": "Calculating the transformed time", + "url": "https://www.w3.org/TR/web-animations-2/#calculating-the-transformed-time" } }, "#canceling-an-animation-section": { @@ -109,6 +195,12 @@ "spec": "Web Animations 2", "text": "Canceling an animation", "url": "https://drafts.csswg.org/web-animations-2/#canceling-an-animation-section" + }, + "snapshot": { + "number": "3.3.9", + "spec": "Web Animations 2", + "text": "Canceling an animation", + "url": "https://www.w3.org/TR/web-animations-2/#canceling-an-animation-section" } }, "#changes-since-level-1": { @@ -117,6 +209,12 @@ "spec": "Web Animations 2", "text": "Changes since level 1", "url": "https://drafts.csswg.org/web-animations-2/#changes-since-level-1" + }, + "snapshot": { + "number": "2", + "spec": "Web Animations 2", + "text": "Changes since level 1", + "url": "https://www.w3.org/TR/web-animations-2/#changes-since-level-1" } }, "#combining-effects": { @@ -125,6 +223,12 @@ "spec": "Web Animations 2", "text": "Combining effects", "url": "https://drafts.csswg.org/web-animations-2/#combining-effects" + }, + "snapshot": { + "number": "4.3", + "spec": "Web Animations 2", + "text": "Combining effects", + "url": "https://www.w3.org/TR/web-animations-2/#combining-effects" } }, "#core-animation-effect-calculations": { @@ -133,6 +237,12 @@ "spec": "Web Animations 2", "text": "Core animation effect calculations", "url": "https://drafts.csswg.org/web-animations-2/#core-animation-effect-calculations" + }, + "snapshot": { + "number": "3.7", + "spec": "Web Animations 2", + "text": "Core animation effect calculations", + "url": "https://www.w3.org/TR/web-animations-2/#core-animation-effect-calculations" } }, "#creating-a-new-keyframeeffect-object": { @@ -141,6 +251,12 @@ "spec": "Web Animations 2", "text": "Creating a new KeyframeEffect object", "url": "https://drafts.csswg.org/web-animations-2/#creating-a-new-keyframeeffect-object" + }, + "snapshot": { + "number": "5.10.1", + "spec": "Web Animations 2", + "text": "Creating a new KeyframeEffect object", + "url": "https://www.w3.org/TR/web-animations-2/#creating-a-new-keyframeeffect-object" } }, "#custom-effects": { @@ -149,6 +265,12 @@ "spec": "Web Animations 2", "text": "Custom effects", "url": "https://drafts.csswg.org/web-animations-2/#custom-effects" + }, + "snapshot": { + "number": "4.5", + "spec": "Web Animations 2", + "text": "Custom effects", + "url": "https://www.w3.org/TR/web-animations-2/#custom-effects" } }, "#definitions-for-manipulating-hierarchies": { @@ -157,6 +279,12 @@ "spec": "Web Animations 2", "text": "Definitions for manipulating hierarchies", "url": "https://drafts.csswg.org/web-animations-2/#definitions-for-manipulating-hierarchies" + }, + "snapshot": { + "number": "5.7.2", + "spec": "Web Animations 2", + "text": "Definitions for manipulating hierarchies", + "url": "https://www.w3.org/TR/web-animations-2/#definitions-for-manipulating-hierarchies" } }, "#delta": { @@ -165,6 +293,12 @@ "spec": "Web Animations 2", "text": "Delta specification", "url": "https://drafts.csswg.org/web-animations-2/#delta" + }, + "snapshot": { + "number": "1", + "spec": "Web Animations 2", + "text": "Delta specification", + "url": "https://www.w3.org/TR/web-animations-2/#delta" } }, "#effect-accumulation-section": { @@ -173,6 +307,12 @@ "spec": "Web Animations 2", "text": "Effect accumulation", "url": "https://drafts.csswg.org/web-animations-2/#effect-accumulation-section" + }, + "snapshot": { + "number": "4.4", + "spec": "Web Animations 2", + "text": "Effect accumulation", + "url": "https://www.w3.org/TR/web-animations-2/#effect-accumulation-section" } }, "#execution-order-of-custom-effects": { @@ -181,6 +321,12 @@ "spec": "Web Animations 2", "text": "Execution order of custom effects", "url": "https://drafts.csswg.org/web-animations-2/#execution-order-of-custom-effects" + }, + "snapshot": { + "number": "4.5.2", + "spec": "Web Animations 2", + "text": "Execution order of custom effects", + "url": "https://www.w3.org/TR/web-animations-2/#execution-order-of-custom-effects" } }, "#fill-modes": { @@ -189,6 +335,12 @@ "spec": "Web Animations 2", "text": "Fill modes", "url": "https://drafts.csswg.org/web-animations-2/#fill-modes" + }, + "snapshot": { + "number": "3.4.5", + "spec": "Web Animations 2", + "text": "Fill modes", + "url": "https://www.w3.org/TR/web-animations-2/#fill-modes" } }, "#grouping-and-synchronization": { @@ -197,6 +349,12 @@ "spec": "Web Animations 2", "text": "Grouping and synchronization", "url": "https://drafts.csswg.org/web-animations-2/#grouping-and-synchronization" + }, + "snapshot": { + "number": "3.9", + "spec": "Web Animations 2", + "text": "Grouping and synchronization", + "url": "https://www.w3.org/TR/web-animations-2/#grouping-and-synchronization" } }, "#hierarchical": { @@ -205,6 +363,12 @@ "spec": "Web Animations 2", "text": "Hierarchical", "url": "https://drafts.csswg.org/web-animations-2/#hierarchical" + }, + "snapshot": { + "number": "3.1.1", + "spec": "Web Animations 2", + "text": "Hierarchical", + "url": "https://www.w3.org/TR/web-animations-2/#hierarchical" } }, "#idl-index": { @@ -213,6 +377,12 @@ "spec": "Web Animations 2", "text": "IDL Index", "url": "https://drafts.csswg.org/web-animations-2/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "IDL Index", + "url": "https://www.w3.org/TR/web-animations-2/#idl-index" } }, "#index": { @@ -221,6 +391,12 @@ "spec": "Web Animations 2", "text": "Index", "url": "https://drafts.csswg.org/web-animations-2/#index" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Index", + "url": "https://www.w3.org/TR/web-animations-2/#index" } }, "#index-defined-elsewhere": { @@ -229,6 +405,12 @@ "spec": "Web Animations 2", "text": "Terms defined by reference", "url": "https://drafts.csswg.org/web-animations-2/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/web-animations-2/#index-defined-elsewhere" } }, "#index-defined-here": { @@ -237,14 +419,20 @@ "spec": "Web Animations 2", "text": "Terms defined by this specification", "url": "https://drafts.csswg.org/web-animations-2/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/web-animations-2/#index-defined-here" } }, "#informative": { - "current": { + "snapshot": { "number": "", "spec": "Web Animations 2", "text": "Informative References", - "url": "https://drafts.csswg.org/web-animations-2/#informative" + "url": "https://www.w3.org/TR/web-animations-2/#informative" } }, "#interval-timing": { @@ -253,6 +441,12 @@ "spec": "Web Animations 2", "text": "Interval timing", "url": "https://drafts.csswg.org/web-animations-2/#interval-timing" + }, + "snapshot": { + "number": "3.5.3", + "spec": "Web Animations 2", + "text": "Interval timing", + "url": "https://www.w3.org/TR/web-animations-2/#interval-timing" } }, "#issues-index": { @@ -261,6 +455,12 @@ "spec": "Web Animations 2", "text": "Issues Index", "url": "https://drafts.csswg.org/web-animations-2/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Issues Index", + "url": "https://www.w3.org/TR/web-animations-2/#issues-index" } }, "#iteration-intervals": { @@ -269,6 +469,12 @@ "spec": "Web Animations 2", "text": "Iteration intervals", "url": "https://drafts.csswg.org/web-animations-2/#iteration-intervals" + }, + "snapshot": { + "number": "3.5.1", + "spec": "Web Animations 2", + "text": "Iteration intervals", + "url": "https://www.w3.org/TR/web-animations-2/#iteration-intervals" } }, "#iteration-time-space": { @@ -277,6 +483,12 @@ "spec": "Web Animations 2", "text": "Iteration time space", "url": "https://drafts.csswg.org/web-animations-2/#iteration-time-space" + }, + "snapshot": { + "number": "3.5.2", + "spec": "Web Animations 2", + "text": "Iteration time space", + "url": "https://www.w3.org/TR/web-animations-2/#iteration-time-space" } }, "#keyframe-effects": { @@ -285,6 +497,20 @@ "spec": "Web Animations 2", "text": "Keyframe Effects", "url": "https://drafts.csswg.org/web-animations-2/#keyframe-effects" + }, + "snapshot": { + "number": "4.2", + "spec": "Web Animations 2", + "text": "Keyframe Effects", + "url": "https://www.w3.org/TR/web-animations-2/#keyframe-effects" + } + }, + "#keyframe-offset-type": { + "current": { + "number": "5.10.2", + "spec": "Web Animations 2", + "text": "Modification to the *Keyframe dictionaries", + "url": "https://drafts.csswg.org/web-animations-2/#keyframe-offset-type" } }, "#local-time-and-inherited-time": { @@ -293,14 +519,26 @@ "spec": "Web Animations 2", "text": "Local time and inherited time", "url": "https://drafts.csswg.org/web-animations-2/#local-time-and-inherited-time" + }, + "snapshot": { + "number": "3.4.3", + "spec": "Web Animations 2", + "text": "Local time and inherited time", + "url": "https://www.w3.org/TR/web-animations-2/#local-time-and-inherited-time" } }, "#model-liveness": { "current": { - "number": "5.15", + "number": "5.16", "spec": "Web Animations 2", "text": "Model liveness", "url": "https://drafts.csswg.org/web-animations-2/#model-liveness" + }, + "snapshot": { + "number": "5.15", + "spec": "Web Animations 2", + "text": "Model liveness", + "url": "https://www.w3.org/TR/web-animations-2/#model-liveness" } }, "#normative": { @@ -309,6 +547,12 @@ "spec": "Web Animations 2", "text": "Normative References", "url": "https://drafts.csswg.org/web-animations-2/#normative" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Normative References", + "url": "https://www.w3.org/TR/web-animations-2/#normative" } }, "#not-animatable-section": { @@ -317,6 +561,12 @@ "spec": "Web Animations 2", "text": "Not animatable", "url": "https://drafts.csswg.org/web-animations-2/#not-animatable-section" + }, + "snapshot": { + "number": "4.1.1", + "spec": "Web Animations 2", + "text": "Not animatable", + "url": "https://www.w3.org/TR/web-animations-2/#not-animatable-section" } }, "#pausing-an-animation-section": { @@ -325,6 +575,12 @@ "spec": "Web Animations 2", "text": "Pausing an animation", "url": "https://drafts.csswg.org/web-animations-2/#pausing-an-animation-section" + }, + "snapshot": { + "number": "3.3.8", + "spec": "Web Animations 2", + "text": "Pausing an animation", + "url": "https://www.w3.org/TR/web-animations-2/#pausing-an-animation-section" } }, "#playing-an-animation-section": { @@ -333,6 +589,12 @@ "spec": "Web Animations 2", "text": "Playing an animation", "url": "https://drafts.csswg.org/web-animations-2/#playing-an-animation-section" + }, + "snapshot": { + "number": "3.3.7", + "spec": "Web Animations 2", + "text": "Playing an animation", + "url": "https://www.w3.org/TR/web-animations-2/#playing-an-animation-section" } }, "#priv": { @@ -341,6 +603,12 @@ "spec": "Web Animations 2", "text": "Privacy Considerations", "url": "https://drafts.csswg.org/web-animations-2/#priv" + }, + "snapshot": { + "number": "6", + "spec": "Web Animations 2", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/web-animations-2/#priv" } }, "#processing-a-timing-argument": { @@ -349,6 +617,12 @@ "spec": "Web Animations 2", "text": "Processing a timing argument", "url": "https://drafts.csswg.org/web-animations-2/#processing-a-timing-argument" + }, + "snapshot": { + "number": "5.7.1", + "spec": "Web Animations 2", + "text": "Processing a timing argument", + "url": "https://www.w3.org/TR/web-animations-2/#processing-a-timing-argument" } }, "#programming-interface": { @@ -357,6 +631,12 @@ "spec": "Web Animations 2", "text": "Programming interface", "url": "https://drafts.csswg.org/web-animations-2/#programming-interface" + }, + "snapshot": { + "number": "5", + "spec": "Web Animations 2", + "text": "Programming interface", + "url": "https://www.w3.org/TR/web-animations-2/#programming-interface" } }, "#references": { @@ -365,6 +645,12 @@ "spec": "Web Animations 2", "text": "References", "url": "https://drafts.csswg.org/web-animations-2/#references" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "References", + "url": "https://www.w3.org/TR/web-animations-2/#references" } }, "#relationship-of-group-time-to-child-time": { @@ -373,6 +659,12 @@ "spec": "Web Animations 2", "text": "Relationship of group time to child time", "url": "https://drafts.csswg.org/web-animations-2/#relationship-of-group-time-to-child-time" + }, + "snapshot": { + "number": "3.9.1", + "spec": "Web Animations 2", + "text": "Relationship of group time to child time", + "url": "https://www.w3.org/TR/web-animations-2/#relationship-of-group-time-to-child-time" } }, "#repeating": { @@ -381,6 +673,12 @@ "spec": "Web Animations 2", "text": "Repeating", "url": "https://drafts.csswg.org/web-animations-2/#repeating" + }, + "snapshot": { + "number": "3.5", + "spec": "Web Animations 2", + "text": "Repeating", + "url": "https://www.w3.org/TR/web-animations-2/#repeating" } }, "#sec": { @@ -389,6 +687,12 @@ "spec": "Web Animations 2", "text": "Security Considerations", "url": "https://drafts.csswg.org/web-animations-2/#sec" + }, + "snapshot": { + "number": "7", + "spec": "Web Animations 2", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/web-animations-2/#sec" } }, "#sequence-effects": { @@ -397,6 +701,12 @@ "spec": "Web Animations 2", "text": "Sequence effects", "url": "https://drafts.csswg.org/web-animations-2/#sequence-effects" + }, + "snapshot": { + "number": "3.9.4", + "spec": "Web Animations 2", + "text": "Sequence effects", + "url": "https://www.w3.org/TR/web-animations-2/#sequence-effects" } }, "#setting-the-current-time-of-an-animation": { @@ -405,6 +715,12 @@ "spec": "Web Animations 2", "text": "Setting the current time of an Animation", "url": "https://drafts.csswg.org/web-animations-2/#setting-the-current-time-of-an-animation" + }, + "snapshot": { + "number": "3.3.5", + "spec": "Web Animations 2", + "text": "Setting the current time of an Animation", + "url": "https://www.w3.org/TR/web-animations-2/#setting-the-current-time-of-an-animation" } }, "#setting-the-start-time-of-an-animation": { @@ -413,6 +729,12 @@ "spec": "Web Animations 2", "text": "Setting the start time of an Animation", "url": "https://drafts.csswg.org/web-animations-2/#setting-the-start-time-of-an-animation" + }, + "snapshot": { + "number": "3.3.6", + "spec": "Web Animations 2", + "text": "Setting the start time of an Animation", + "url": "https://www.w3.org/TR/web-animations-2/#setting-the-start-time-of-an-animation" } }, "#setting-the-target-effect": { @@ -421,6 +743,12 @@ "spec": "Web Animations 2", "text": "Setting the target effect of an animation", "url": "https://drafts.csswg.org/web-animations-2/#setting-the-target-effect" + }, + "snapshot": { + "number": "3.3.2", + "spec": "Web Animations 2", + "text": "Setting the target effect of an animation", + "url": "https://www.w3.org/TR/web-animations-2/#setting-the-target-effect" } }, "#setting-the-timeline": { @@ -429,6 +757,12 @@ "spec": "Web Animations 2", "text": "Setting the timeline of an animation", "url": "https://drafts.csswg.org/web-animations-2/#setting-the-timeline" + }, + "snapshot": { + "number": "3.3.1", + "spec": "Web Animations 2", + "text": "Setting the timeline of an animation", + "url": "https://www.w3.org/TR/web-animations-2/#setting-the-timeline" } }, "#sotd": { @@ -437,6 +771,12 @@ "spec": "Web Animations 2", "text": "Status of this document", "url": "https://drafts.csswg.org/web-animations-2/#sotd" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Status of this document", + "url": "https://www.w3.org/TR/web-animations-2/#sotd" } }, "#speed-control": { @@ -445,6 +785,12 @@ "spec": "Web Animations 2", "text": "Speed control", "url": "https://drafts.csswg.org/web-animations-2/#speed-control" + }, + "snapshot": { + "number": "3.3.10", + "spec": "Web Animations 2", + "text": "Speed control", + "url": "https://www.w3.org/TR/web-animations-2/#speed-control" } }, "#the-active-interval": { @@ -453,6 +799,12 @@ "spec": "Web Animations 2", "text": "The active interval", "url": "https://drafts.csswg.org/web-animations-2/#the-active-interval" + }, + "snapshot": { + "number": "3.4.2", + "spec": "Web Animations 2", + "text": "The active interval", + "url": "https://www.w3.org/TR/web-animations-2/#the-active-interval" } }, "#the-animatable-interface": { @@ -461,6 +813,20 @@ "spec": "Web Animations 2", "text": "The Animatable interface", "url": "https://drafts.csswg.org/web-animations-2/#the-animatable-interface" + }, + "snapshot": { + "number": "5.13", + "spec": "Web Animations 2", + "text": "The Animatable interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-animatable-interface" + } + }, + "#the-animatable-interface-mixin": { + "current": { + "number": "5.14", + "spec": "Web Animations 2", + "text": "The Animatable interface mixin", + "url": "https://drafts.csswg.org/web-animations-2/#the-animatable-interface-mixin" } }, "#the-animation-interface": { @@ -469,6 +835,12 @@ "spec": "Web Animations 2", "text": "The Animation interface", "url": "https://drafts.csswg.org/web-animations-2/#the-animation-interface" + }, + "snapshot": { + "number": "5.2", + "spec": "Web Animations 2", + "text": "The Animation interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-animation-interface" } }, "#the-animationeffect-interface": { @@ -477,6 +849,12 @@ "spec": "Web Animations 2", "text": "The AnimationEffect interface", "url": "https://drafts.csswg.org/web-animations-2/#the-animationeffect-interface" + }, + "snapshot": { + "number": "5.3", + "spec": "Web Animations 2", + "text": "The AnimationEffect interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-animationeffect-interface" } }, "#the-animationnodelist-interface": { @@ -485,14 +863,26 @@ "spec": "Web Animations 2", "text": "The AnimationNodeList interface", "url": "https://drafts.csswg.org/web-animations-2/#the-animationnodelist-interface" + }, + "snapshot": { + "number": "5.8", + "spec": "Web Animations 2", + "text": "The AnimationNodeList interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-animationnodelist-interface" } }, "#the-animationplaybackevent-interface": { "current": { - "number": "5.14", + "number": "5.15", "spec": "Web Animations 2", "text": "The AnimationPlaybackEvent interface", "url": "https://drafts.csswg.org/web-animations-2/#the-animationplaybackevent-interface" + }, + "snapshot": { + "number": "5.14", + "spec": "Web Animations 2", + "text": "The AnimationPlaybackEvent interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-animationplaybackevent-interface" } }, "#the-animationtimeline-interface": { @@ -501,6 +891,12 @@ "spec": "Web Animations 2", "text": "The AnimationTimeline interface", "url": "https://drafts.csswg.org/web-animations-2/#the-animationtimeline-interface" + }, + "snapshot": { + "number": "5.1", + "spec": "Web Animations 2", + "text": "The AnimationTimeline interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-animationtimeline-interface" } }, "#the-computedeffecttiming-dictionary": { @@ -509,6 +905,12 @@ "spec": "Web Animations 2", "text": "The ComputedEffectTiming dictionary", "url": "https://drafts.csswg.org/web-animations-2/#the-computedeffecttiming-dictionary" + }, + "snapshot": { + "number": "5.6", + "spec": "Web Animations 2", + "text": "The ComputedEffectTiming dictionary", + "url": "https://www.w3.org/TR/web-animations-2/#the-computedeffecttiming-dictionary" } }, "#the-effect-stack": { @@ -517,6 +919,12 @@ "spec": "Web Animations 2", "text": "The effect stack", "url": "https://drafts.csswg.org/web-animations-2/#the-effect-stack" + }, + "snapshot": { + "number": "4.3.1", + "spec": "Web Animations 2", + "text": "The effect stack", + "url": "https://www.w3.org/TR/web-animations-2/#the-effect-stack" } }, "#the-effect-value-of-a-keyframe-animation-effect": { @@ -525,6 +933,12 @@ "spec": "Web Animations 2", "text": "The effect value of a keyframe effect", "url": "https://drafts.csswg.org/web-animations-2/#the-effect-value-of-a-keyframe-animation-effect" + }, + "snapshot": { + "number": "4.2.1", + "spec": "Web Animations 2", + "text": "The effect value of a keyframe effect", + "url": "https://www.w3.org/TR/web-animations-2/#the-effect-value-of-a-keyframe-animation-effect" } }, "#the-effectcallback-callback-function": { @@ -533,6 +947,12 @@ "spec": "Web Animations 2", "text": "The EffectCallback callback function", "url": "https://drafts.csswg.org/web-animations-2/#the-effectcallback-callback-function" + }, + "snapshot": { + "number": "5.12", + "spec": "Web Animations 2", + "text": "The EffectCallback callback function", + "url": "https://www.w3.org/TR/web-animations-2/#the-effectcallback-callback-function" } }, "#the-effecttiming-dictionaries": { @@ -541,6 +961,12 @@ "spec": "Web Animations 2", "text": "The EffectTiming and OptionalEffectTiming dictionaries", "url": "https://drafts.csswg.org/web-animations-2/#the-effecttiming-dictionaries" + }, + "snapshot": { + "number": "5.4", + "spec": "Web Animations 2", + "text": "The EffectTiming and OptionalEffectTiming dictionaries", + "url": "https://www.w3.org/TR/web-animations-2/#the-effecttiming-dictionaries" } }, "#the-fillmode-enumeration": { @@ -549,6 +975,12 @@ "spec": "Web Animations 2", "text": "The FillMode enumeration", "url": "https://drafts.csswg.org/web-animations-2/#the-fillmode-enumeration" + }, + "snapshot": { + "number": "5.6.1", + "spec": "Web Animations 2", + "text": "The FillMode enumeration", + "url": "https://www.w3.org/TR/web-animations-2/#the-fillmode-enumeration" } }, "#the-groupeffect-interface": { @@ -557,6 +989,12 @@ "spec": "Web Animations 2", "text": "The GroupEffect interface", "url": "https://drafts.csswg.org/web-animations-2/#the-groupeffect-interface" + }, + "snapshot": { + "number": "5.7", + "spec": "Web Animations 2", + "text": "The GroupEffect interface", + "url": "https://www.w3.org/TR/web-animations-2/#the-groupeffect-interface" } }, "#the-intrinsic-iteration-duration-of-a-group-effect": { @@ -565,6 +1003,12 @@ "spec": "Web Animations 2", "text": "The intrinsic iteration duration of a group effect", "url": "https://drafts.csswg.org/web-animations-2/#the-intrinsic-iteration-duration-of-a-group-effect" + }, + "snapshot": { + "number": "3.9.3", + "spec": "Web Animations 2", + "text": "The intrinsic iteration duration of a group effect", + "url": "https://www.w3.org/TR/web-animations-2/#the-intrinsic-iteration-duration-of-a-group-effect" } }, "#the-intrinsic-iteration-duration-of-a-sequence-effect": { @@ -573,6 +1017,12 @@ "spec": "Web Animations 2", "text": "The intrinsic iteration duration of a sequence effect", "url": "https://drafts.csswg.org/web-animations-2/#the-intrinsic-iteration-duration-of-a-sequence-effect" + }, + "snapshot": { + "number": "3.9.4.2", + "spec": "Web Animations 2", + "text": "The intrinsic iteration duration of a sequence effect", + "url": "https://www.w3.org/TR/web-animations-2/#the-intrinsic-iteration-duration-of-a-sequence-effect" } }, "#the-iterationcompositeoperation-enumeration": { @@ -581,6 +1031,12 @@ "spec": "Web Animations 2", "text": "The IterationCompositeOperation enumeration", "url": "https://drafts.csswg.org/web-animations-2/#the-iterationcompositeoperation-enumeration" + }, + "snapshot": { + "number": "5.11", + "spec": "Web Animations 2", + "text": "The IterationCompositeOperation enumeration", + "url": "https://www.w3.org/TR/web-animations-2/#the-iterationcompositeoperation-enumeration" } }, "#the-keyframeeffect-interface": { @@ -589,14 +1045,34 @@ "spec": "Web Animations 2", "text": "The KeyframeEffect interfaces", "url": "https://drafts.csswg.org/web-animations-2/#the-keyframeeffect-interface" + }, + "snapshot": { + "number": "5.10", + "spec": "Web Animations 2", + "text": "The KeyframeEffect interfaces", + "url": "https://www.w3.org/TR/web-animations-2/#the-keyframeeffect-interface" } }, "#the-keyframeeffectoptions-dictionary": { "current": { - "number": "5.10.2", + "number": "5.10.3", "spec": "Web Animations 2", "text": "The KeyframeEffectOptions dictionary", "url": "https://drafts.csswg.org/web-animations-2/#the-keyframeeffectoptions-dictionary" + }, + "snapshot": { + "number": "5.10.2", + "spec": "Web Animations 2", + "text": "The KeyframeEffectOptions dictionary", + "url": "https://www.w3.org/TR/web-animations-2/#the-keyframeeffectoptions-dictionary" + } + }, + "#the-progress-of-an-animation": { + "current": { + "number": "3.3.11", + "spec": "Web Animations 2", + "text": "Calculating the progress of an animation", + "url": "https://drafts.csswg.org/web-animations-2/#the-progress-of-an-animation" } }, "#the-sequenceeffect-interface": { @@ -605,6 +1081,12 @@ "spec": "Web Animations 2", "text": "The SequenceEffect interfaces", "url": "https://drafts.csswg.org/web-animations-2/#the-sequenceeffect-interface" + }, + "snapshot": { + "number": "5.9", + "spec": "Web Animations 2", + "text": "The SequenceEffect interfaces", + "url": "https://www.w3.org/TR/web-animations-2/#the-sequenceeffect-interface" } }, "#the-start-time-of-children-of-a-group-effect": { @@ -613,6 +1095,12 @@ "spec": "Web Animations 2", "text": "The start time of children of a group effect", "url": "https://drafts.csswg.org/web-animations-2/#the-start-time-of-children-of-a-group-effect" + }, + "snapshot": { + "number": "3.9.2", + "spec": "Web Animations 2", + "text": "The start time of children of a group effect", + "url": "https://www.w3.org/TR/web-animations-2/#the-start-time-of-children-of-a-group-effect" } }, "#the-start-time-of-children-of-a-sequence-effect": { @@ -621,6 +1109,12 @@ "spec": "Web Animations 2", "text": "The start time of children of a sequence effect", "url": "https://drafts.csswg.org/web-animations-2/#the-start-time-of-children-of-a-sequence-effect" + }, + "snapshot": { + "number": "3.9.4.1", + "spec": "Web Animations 2", + "text": "The start time of children of a sequence effect", + "url": "https://www.w3.org/TR/web-animations-2/#the-start-time-of-children-of-a-sequence-effect" } }, "#time-transformations": { @@ -629,6 +1123,12 @@ "spec": "Web Animations 2", "text": "Time transformations", "url": "https://drafts.csswg.org/web-animations-2/#time-transformations" + }, + "snapshot": { + "number": "3.8", + "spec": "Web Animations 2", + "text": "Time transformations", + "url": "https://www.w3.org/TR/web-animations-2/#time-transformations" } }, "#timelines": { @@ -637,6 +1137,12 @@ "spec": "Web Animations 2", "text": "Timelines", "url": "https://drafts.csswg.org/web-animations-2/#timelines" + }, + "snapshot": { + "number": "3.2", + "spec": "Web Animations 2", + "text": "Timelines", + "url": "https://www.w3.org/TR/web-animations-2/#timelines" } }, "#timing-model": { @@ -645,6 +1151,12 @@ "spec": "Web Animations 2", "text": "Timing model", "url": "https://drafts.csswg.org/web-animations-2/#timing-model" + }, + "snapshot": { + "number": "3", + "spec": "Web Animations 2", + "text": "Timing model", + "url": "https://www.w3.org/TR/web-animations-2/#timing-model" } }, "#timing-model-overview": { @@ -653,6 +1165,12 @@ "spec": "Web Animations 2", "text": "Timing model overview", "url": "https://drafts.csswg.org/web-animations-2/#timing-model-overview" + }, + "snapshot": { + "number": "3.1", + "spec": "Web Animations 2", + "text": "Timing model overview", + "url": "https://www.w3.org/TR/web-animations-2/#timing-model-overview" } }, "#title": { @@ -661,6 +1179,12 @@ "spec": "Web Animations 2", "text": "Web Animations Level 2", "url": "https://drafts.csswg.org/web-animations-2/#title" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Web Animations Level 2", + "url": "https://www.w3.org/TR/web-animations-2/#title" } }, "#toc": { @@ -669,6 +1193,12 @@ "spec": "Web Animations 2", "text": "Table of Contents", "url": "https://drafts.csswg.org/web-animations-2/#toc" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/web-animations-2/#toc" } }, "#transforming-the-local-time": { @@ -677,6 +1207,12 @@ "spec": "Web Animations 2", "text": "Transforming the local time", "url": "https://drafts.csswg.org/web-animations-2/#transforming-the-local-time" + }, + "snapshot": { + "number": "3.7.3", + "spec": "Web Animations 2", + "text": "Transforming the local time", + "url": "https://www.w3.org/TR/web-animations-2/#transforming-the-local-time" } }, "#types-of-animation-effects": { @@ -685,6 +1221,12 @@ "spec": "Web Animations 2", "text": "Types of animation effects", "url": "https://drafts.csswg.org/web-animations-2/#types-of-animation-effects" + }, + "snapshot": { + "number": "3.4.1", + "spec": "Web Animations 2", + "text": "Types of animation effects", + "url": "https://www.w3.org/TR/web-animations-2/#types-of-animation-effects" } }, "#updating-animationeffect-timing": { @@ -693,6 +1235,12 @@ "spec": "Web Animations 2", "text": "Updating the timing of an AnimationEffect", "url": "https://drafts.csswg.org/web-animations-2/#updating-animationeffect-timing" + }, + "snapshot": { + "number": "5.5", + "spec": "Web Animations 2", + "text": "Updating the timing of an AnimationEffect", + "url": "https://www.w3.org/TR/web-animations-2/#updating-animationeffect-timing" } }, "#updating-custom-effects": { @@ -701,6 +1249,12 @@ "spec": "Web Animations 2", "text": "Sampling custom effects", "url": "https://drafts.csswg.org/web-animations-2/#updating-custom-effects" + }, + "snapshot": { + "number": "4.5.1", + "spec": "Web Animations 2", + "text": "Sampling custom effects", + "url": "https://www.w3.org/TR/web-animations-2/#updating-custom-effects" } }, "#validating-a-css-numberish-time": { @@ -709,6 +1263,12 @@ "spec": "Web Animations 2", "text": "Validating a CSSNumberish time", "url": "https://drafts.csswg.org/web-animations-2/#validating-a-css-numberish-time" + }, + "snapshot": { + "number": "3.3.4", + "spec": "Web Animations 2", + "text": "Validating a CSSNumberish time", + "url": "https://www.w3.org/TR/web-animations-2/#validating-a-css-numberish-time" } }, "#w3c-conform-future-proofing": { @@ -717,6 +1277,12 @@ "spec": "Web Animations 2", "text": "Implementations of Unstable and Proprietary Features", "url": "https://drafts.csswg.org/web-animations-2/#w3c-conform-future-proofing" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Implementations of Unstable and Proprietary Features", + "url": "https://www.w3.org/TR/web-animations-2/#w3c-conform-future-proofing" } }, "#w3c-conformance": { @@ -725,6 +1291,12 @@ "spec": "Web Animations 2", "text": "Conformance", "url": "https://drafts.csswg.org/web-animations-2/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Conformance", + "url": "https://www.w3.org/TR/web-animations-2/#w3c-conformance" } }, "#w3c-conformance-classes": { @@ -733,6 +1305,12 @@ "spec": "Web Animations 2", "text": "Conformance classes", "url": "https://drafts.csswg.org/web-animations-2/#w3c-conformance-classes" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Conformance classes", + "url": "https://www.w3.org/TR/web-animations-2/#w3c-conformance-classes" } }, "#w3c-conventions": { @@ -741,6 +1319,12 @@ "spec": "Web Animations 2", "text": "Document conventions", "url": "https://drafts.csswg.org/web-animations-2/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Document conventions", + "url": "https://www.w3.org/TR/web-animations-2/#w3c-conventions" } }, "#w3c-partial": { @@ -749,6 +1333,12 @@ "spec": "Web Animations 2", "text": "Partial implementations", "url": "https://drafts.csswg.org/web-animations-2/#w3c-partial" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Partial implementations", + "url": "https://www.w3.org/TR/web-animations-2/#w3c-partial" } }, "#w3c-testing": { @@ -757,6 +1347,12 @@ "spec": "Web Animations 2", "text": "Non-experimental implementations", "url": "https://drafts.csswg.org/web-animations-2/#w3c-testing" + }, + "snapshot": { + "number": "", + "spec": "Web Animations 2", + "text": "Non-experimental implementations", + "url": "https://www.w3.org/TR/web-animations-2/#w3c-testing" } }, "#waiting-for-the-associated-effect": { @@ -765,6 +1361,12 @@ "spec": "Web Animations 2", "text": "Waiting for the associated effect", "url": "https://drafts.csswg.org/web-animations-2/#waiting-for-the-associated-effect" + }, + "snapshot": { + "number": "3.3.3", + "spec": "Web Animations 2", + "text": "Waiting for the associated effect", + "url": "https://www.w3.org/TR/web-animations-2/#waiting-for-the-associated-effect" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-web-bluetooth-scanning.json b/bikeshed/spec-data/readonly/headings/headings-web-bluetooth-scanning.json new file mode 100644 index 0000000000..0eeb7b353f --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-web-bluetooth-scanning.json @@ -0,0 +1,210 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Abstract", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#abstract" + } + }, + "#advertising-events": { + "current": { + "number": "5.1", + "spec": "Web Bluetooth Scanning", + "text": "Responding to advertising events", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#advertising-events" + } + }, + "#changes": { + "current": { + "number": "6", + "spec": "Web Bluetooth Scanning", + "text": "Changes to existing interfaces", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#changes" + } + }, + "#events": { + "current": { + "number": "5", + "spec": "Web Bluetooth Scanning", + "text": "Event handling", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#events" + } + }, + "#handling-full-activity-loss": { + "current": { + "number": "4.2", + "spec": "Web Bluetooth Scanning", + "text": "Handling Document Loss of Full Activity", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#handling-full-activity-loss" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "IDL Index", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Index", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Terms defined by reference", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Terms defined by this specification", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Informative References", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#informative" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Web Bluetooth Scanning", + "text": "Introduction", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#introduction" + } + }, + "#introduction-examples": { + "current": { + "number": "1.1", + "spec": "Web Bluetooth Scanning", + "text": "Examples", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#introduction-examples" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Issues Index", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Normative References", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#normative" + } + }, + "#permission": { + "current": { + "number": "4.3", + "spec": "Web Bluetooth Scanning", + "text": "Permission to scan", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#permission" + } + }, + "#privacy": { + "current": { + "number": "2", + "spec": "Web Bluetooth Scanning", + "text": "Privacy considerations", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#privacy" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "References", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#references" + } + }, + "#scan-control": { + "current": { + "number": "4.1", + "spec": "Web Bluetooth Scanning", + "text": "Controlling a BLE scan", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#scan-control" + } + }, + "#scanning": { + "current": { + "number": "4", + "spec": "Web Bluetooth Scanning", + "text": "Scanning for BLE advertisements", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#scanning" + } + }, + "#security": { + "current": { + "number": "3", + "spec": "Web Bluetooth Scanning", + "text": "Security considerations", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#security" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Status of this document", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#sotd" + } + }, + "#terminology": { + "current": { + "number": "7", + "spec": "Web Bluetooth Scanning", + "text": "Terminology and conventions", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#terminology" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Web Bluetooth Scanning", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Table of Contents", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Conformance", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Web Bluetooth Scanning", + "text": "Document conventions", + "url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-web-bluetooth.json b/bikeshed/spec-data/readonly/headings/headings-web-bluetooth.json index cc1ee38be6..f4efe50a1c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-web-bluetooth.json +++ b/bikeshed/spec-data/readonly/headings/headings-web-bluetooth.json @@ -7,6 +7,14 @@ "url": "https://webbluetoothcg.github.io/web-bluetooth/#abstract" } }, + "#advertising-data-filter": { + "current": { + "number": "8", + "spec": "Web Bluetooth", + "text": "Advertising Data Filter", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#advertising-data-filter" + } + }, "#advertising-events": { "current": { "number": "5.2.3", @@ -23,6 +31,14 @@ "url": "https://webbluetoothcg.github.io/web-bluetooth/#attacks-on-devices" } }, + "#automated-testing": { + "current": { + "number": "", + "spec": "Web Bluetooth", + "text": "12. Automated testing", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#automated-testing" + } + }, "#availability": { "current": { "number": "4.2", @@ -39,6 +55,38 @@ "url": "https://webbluetoothcg.github.io/web-bluetooth/#availability-fingerprint" } }, + "#bidi-commands": { + "current": { + "number": "12.1.3", + "spec": "Web Bluetooth", + "text": "Commands", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bidi-commands" + } + }, + "#bidi-errors": { + "current": { + "number": "12.1.2", + "spec": "Web Bluetooth", + "text": "Errors", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bidi-errors" + } + }, + "#bidi-events": { + "current": { + "number": "12.1.4", + "spec": "Web Bluetooth", + "text": "Events", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bidi-events" + } + }, + "#bidi-types": { + "current": { + "number": "12.1.1", + "spec": "Web Bluetooth", + "text": "Types", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bidi-types" + } + }, "#bluetooth-cache": { "current": { "number": "6.1.2", @@ -55,6 +103,54 @@ "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-device-identifiers" } }, + "#bluetooth-handlerequestdeviceprompt-command": { + "current": { + "number": "12.1.3.1", + "spec": "Web Bluetooth", + "text": "The bluetooth.handleRequestDevicePrompt Command", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-handlerequestdeviceprompt-command" + } + }, + "#bluetooth-module": { + "current": { + "number": "12.1", + "spec": "Web Bluetooth", + "text": "The bluetooth module", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-module" + } + }, + "#bluetooth-requestdevice-type": { + "current": { + "number": "12.1.1.1", + "spec": "Web Bluetooth", + "text": "The bluetooth.RequestDevice Type", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-requestdevice-type" + } + }, + "#bluetooth-requestdeviceinfo-type": { + "current": { + "number": "12.1.1.2", + "spec": "Web Bluetooth", + "text": "The bluetooth.RequestDeviceInfo Type", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-requestdeviceinfo-type" + } + }, + "#bluetooth-requestdeviceprompt-type": { + "current": { + "number": "12.1.1.3", + "spec": "Web Bluetooth", + "text": "The bluetooth.RequestDevicePrompt Type", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-requestdeviceprompt-type" + } + }, + "#bluetooth-requestdevicepromptupdated-event": { + "current": { + "number": "12.1.4.1", + "spec": "Web Bluetooth", + "text": "The bluetooth.requestDevicePromptUpdated Event", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth-requestdevicepromptupdated-event" + } + }, "#bluetooth-tree": { "current": { "number": "6.6.1", @@ -291,7 +387,7 @@ "current": { "number": "", "spec": "Web Bluetooth", - "text": "10. Integrations", + "text": "11. Integrations", "url": "https://webbluetoothcg.github.io/web-bluetooth/#integrations" } }, @@ -329,9 +425,9 @@ }, "#navigator-extensions": { "current": { - "number": "9", + "number": "", "spec": "Web Bluetooth", - "text": "Extensions to the Navigator Interface", + "text": "10. Extensions to the Navigator Interface", "url": "https://webbluetoothcg.github.io/web-bluetooth/#navigator-extensions" } }, @@ -361,7 +457,7 @@ }, "#permissions-policy": { "current": { - "number": "10.1", + "number": "11.1", "spec": "Web Bluetooth", "text": "Permissions Policy", "url": "https://webbluetoothcg.github.io/web-bluetooth/#permissions-policy" @@ -443,16 +539,16 @@ "current": { "number": "", "spec": "Web Bluetooth", - "text": "11. Terminology and Conventions", + "text": "13. Terminology and Conventions", "url": "https://webbluetoothcg.github.io/web-bluetooth/#terminology" } }, - "#the-gatt-blocklist": { + "#the-blocklist": { "current": { - "number": "8", + "number": "9", "spec": "Web Bluetooth", - "text": "The GATT Blocklist", - "url": "https://webbluetoothcg.github.io/web-bluetooth/#the-gatt-blocklist" + "text": "The Blocklist", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#the-blocklist" } }, "#title": { @@ -495,14 +591,6 @@ "url": "https://webbluetoothcg.github.io/web-bluetooth/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Web Bluetooth", - "text": "Conformant Algorithms", - "url": "https://webbluetoothcg.github.io/web-bluetooth/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-web-preferences-api.json b/bikeshed/spec-data/readonly/headings/headings-web-preferences-api.json new file mode 100644 index 0000000000..f6dc307ccc --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-web-preferences-api.json @@ -0,0 +1,330 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Abstract", + "url": "https://wicg.github.io/web-preferences-api/#abstract" + } + }, + "#clear-override-method": { + "current": { + "number": "3.6.6", + "spec": "Web Preferences API", + "text": "clearOverride method", + "url": "https://wicg.github.io/web-preferences-api/#clear-override-method" + } + }, + "#colorscheme-attribute": { + "current": { + "number": "3.1", + "spec": "Web Preferences API", + "text": "colorScheme attribute", + "url": "https://wicg.github.io/web-preferences-api/#colorscheme-attribute" + } + }, + "#contrast-attribute": { + "current": { + "number": "3.2", + "spec": "Web Preferences API", + "text": "contrast attribute", + "url": "https://wicg.github.io/web-preferences-api/#contrast-attribute" + } + }, + "#extensions-to-the-navigator-interface": { + "current": { + "number": "2", + "spec": "Web Preferences API", + "text": "Extensions to the Navigator interface", + "url": "https://wicg.github.io/web-preferences-api/#extensions-to-the-navigator-interface" + } + }, + "#fingerprinting": { + "current": { + "number": "5.2", + "spec": "Web Preferences API", + "text": "Avoiding fingerprinting", + "url": "https://wicg.github.io/web-preferences-api/#fingerprinting" + } + }, + "#garbage-collection": { + "current": { + "number": "3.6.7", + "spec": "Web Preferences API", + "text": "Garbage Collection", + "url": "https://wicg.github.io/web-preferences-api/#garbage-collection" + } + }, + "#get-validValues": { + "current": { + "number": "4.4", + "spec": "Web Preferences API", + "text": "Getting valid values for a preference", + "url": "https://wicg.github.io/web-preferences-api/#get-validValues" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "IDL Index", + "url": "https://wicg.github.io/web-preferences-api/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Index", + "url": "https://wicg.github.io/web-preferences-api/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Terms defined by reference", + "url": "https://wicg.github.io/web-preferences-api/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Terms defined by this specification", + "url": "https://wicg.github.io/web-preferences-api/#index-defined-here" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Issues Index", + "url": "https://wicg.github.io/web-preferences-api/#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Normative References", + "url": "https://wicg.github.io/web-preferences-api/#normative" + } + }, + "#onchange-attribute": { + "current": { + "number": "3.6.4", + "spec": "Web Preferences API", + "text": "onchange event handler attribute", + "url": "https://wicg.github.io/web-preferences-api/#onchange-attribute" + } + }, + "#override-attribute": { + "current": { + "number": "3.6.1", + "spec": "Web Preferences API", + "text": "override attribute", + "url": "https://wicg.github.io/web-preferences-api/#override-attribute" + } + }, + "#permissions": { + "current": { + "number": "5.3", + "spec": "Web Preferences API", + "text": "Permissions & User Activation", + "url": "https://wicg.github.io/web-preferences-api/#permissions" + } + }, + "#preference-manager": { + "current": { + "number": "3", + "spec": "Web Preferences API", + "text": "PreferenceManager interface", + "url": "https://wicg.github.io/web-preferences-api/#preference-manager" + } + }, + "#preferenceobject-interface": { + "current": { + "number": "3.6", + "spec": "Web Preferences API", + "text": "PreferenceObject interface", + "url": "https://wicg.github.io/web-preferences-api/#preferenceobject-interface" + } + }, + "#preferences-attribute": { + "current": { + "number": "2.1", + "spec": "Web Preferences API", + "text": "preferences attribute", + "url": "https://wicg.github.io/web-preferences-api/#preferences-attribute" + } + }, + "#reduceddata-attribute": { + "current": { + "number": "3.5", + "spec": "Web Preferences API", + "text": "reducedData attribute", + "url": "https://wicg.github.io/web-preferences-api/#reduceddata-attribute" + } + }, + "#reducedmotion-attribute": { + "current": { + "number": "3.3", + "spec": "Web Preferences API", + "text": "reducedMotion attribute", + "url": "https://wicg.github.io/web-preferences-api/#reducedmotion-attribute" + } + }, + "#reducedtransparency-attribute": { + "current": { + "number": "3.4", + "spec": "Web Preferences API", + "text": "reducedTransparency attribute", + "url": "https://wicg.github.io/web-preferences-api/#reducedtransparency-attribute" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "References", + "url": "https://wicg.github.io/web-preferences-api/#references" + } + }, + "#request-override-method": { + "current": { + "number": "3.6.5", + "spec": "Web Preferences API", + "text": "requestOverride() method", + "url": "https://wicg.github.io/web-preferences-api/#request-override-method" + } + }, + "#sec-acknowledgements": { + "current": { + "number": "6", + "spec": "Web Preferences API", + "text": "Acknowledgements", + "url": "https://wicg.github.io/web-preferences-api/#sec-acknowledgements" + } + }, + "#sec-intro": { + "current": { + "number": "1", + "spec": "Web Preferences API", + "text": "Introduction", + "url": "https://wicg.github.io/web-preferences-api/#sec-intro" + } + }, + "#sec-security": { + "current": { + "number": "5", + "spec": "Web Preferences API", + "text": "Security and Privacy Considerations", + "url": "https://wicg.github.io/web-preferences-api/#sec-security" + } + }, + "#status": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Status of this document", + "url": "https://wicg.github.io/web-preferences-api/#status" + } + }, + "#storage": { + "current": { + "number": "5.1", + "spec": "Web Preferences API", + "text": "Storage of preference overrides", + "url": "https://wicg.github.io/web-preferences-api/#storage" + } + }, + "#sub-resources": { + "current": { + "number": "5.4", + "spec": "Web Preferences API", + "text": "Sub-resources", + "url": "https://wicg.github.io/web-preferences-api/#sub-resources" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Web Preferences API", + "url": "https://wicg.github.io/web-preferences-api/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Table of Contents", + "url": "https://wicg.github.io/web-preferences-api/#toc" + } + }, + "#usage-clearing-a-preference-override": { + "current": { + "number": "4.2", + "spec": "Web Preferences API", + "text": "Clearing a preference override", + "url": "https://wicg.github.io/web-preferences-api/#usage-clearing-a-preference-override" + } + }, + "#usage-examples": { + "current": { + "number": "4", + "spec": "Web Preferences API", + "text": "Usage Examples", + "url": "https://wicg.github.io/web-preferences-api/#usage-examples" + } + }, + "#usage-getting-a-preference-override": { + "current": { + "number": "4.3", + "spec": "Web Preferences API", + "text": "Getting a preference override", + "url": "https://wicg.github.io/web-preferences-api/#usage-getting-a-preference-override" + } + }, + "#usage-request-a-preference-override": { + "current": { + "number": "4.1", + "spec": "Web Preferences API", + "text": "Requesting a preference override", + "url": "https://wicg.github.io/web-preferences-api/#usage-request-a-preference-override" + } + }, + "#validValues-attribute": { + "current": { + "number": "3.6.3", + "spec": "Web Preferences API", + "text": "validValues attribute", + "url": "https://wicg.github.io/web-preferences-api/#validValues-attribute" + } + }, + "#value-attribute": { + "current": { + "number": "3.6.2", + "spec": "Web Preferences API", + "text": "value attribute", + "url": "https://wicg.github.io/web-preferences-api/#value-attribute" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Conformance", + "url": "https://wicg.github.io/web-preferences-api/#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Web Preferences API", + "text": "Document conventions", + "url": "https://wicg.github.io/web-preferences-api/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-web-share.json b/bikeshed/spec-data/readonly/headings/headings-web-share.json index 6d5e2ed689..16963ed924 100644 --- a/bikeshed/spec-data/readonly/headings/headings-web-share.json +++ b/bikeshed/spec-data/readonly/headings/headings-web-share.json @@ -5,14 +5,12 @@ "spec": "Web Share API", "text": "Accessibility considerations", "url": "https://w3c.github.io/web-share/#a11y" - } - }, - "#accessibility-considerations": { + }, "snapshot": { "number": "5", "spec": "Web Share API", "text": "Accessibility considerations", - "url": "https://www.w3.org/TR/web-share/#accessibility-considerations" + "url": "https://www.w3.org/TR/web-share/#a11y" } }, "#acknowledgments": { @@ -63,14 +61,12 @@ "spec": "Web Share API", "text": "Changelog", "url": "https://w3c.github.io/web-share/#changelog" - } - }, - "#changlog": { + }, "snapshot": { "number": "9", "spec": "Web Share API", - "text": "Changlog", - "url": "https://www.w3.org/TR/web-share/#changlog" + "text": "Changelog", + "url": "https://www.w3.org/TR/web-share/#changelog" } }, "#checking-if-members-are-supported": { @@ -167,7 +163,7 @@ "snapshot": { "number": "", "spec": "Web Share API", - "text": "implementation status", + "text": "Implementation status", "url": "https://www.w3.org/TR/web-share/#implementation-status" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-web-smart-card.json b/bikeshed/spec-data/readonly/headings/headings-web-smart-card.json new file mode 100644 index 0000000000..a19a7f89b0 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-web-smart-card.json @@ -0,0 +1,354 @@ +{ + "#auxiliary-algorithms-and-definitions": { + "current": { + "number": "4.4", + "spec": "Web Smart Card API", + "text": "Auxiliary algorithms and definitions", + "url": "https://wicg.github.io/web-smart-card/#auxiliary-algorithms-and-definitions" + } + }, + "#auxiliary-algorithms-and-definitions-0": { + "current": { + "number": "5.3.2", + "spec": "Web Smart Card API", + "text": "Auxiliary algorithms and definitions", + "url": "https://wicg.github.io/web-smart-card/#auxiliary-algorithms-and-definitions-0" + } + }, + "#conformance": { + "current": { + "number": "8", + "spec": "Web Smart Card API", + "text": "Conformance", + "url": "https://wicg.github.io/web-smart-card/#conformance" + } + }, + "#connect-method": { + "current": { + "number": "4.3", + "spec": "Web Smart Card API", + "text": "connect() method", + "url": "https://wicg.github.io/web-smart-card/#connect-method" + } + }, + "#control-method": { + "current": { + "number": "5.5", + "spec": "Web Smart Card API", + "text": "control() method", + "url": "https://wicg.github.io/web-smart-card/#control-method" + } + }, + "#disconnect-method": { + "current": { + "number": "5.1", + "spec": "Web Smart Card API", + "text": "disconnect() method", + "url": "https://wicg.github.io/web-smart-card/#disconnect-method" + } + }, + "#establishcontext-method": { + "current": { + "number": "3.1", + "spec": "Web Smart Card API", + "text": "establishContext() method", + "url": "https://wicg.github.io/web-smart-card/#establishcontext-method" + } + }, + "#extensions-to-the-navigator-interface": { + "current": { + "number": "1", + "spec": "Web Smart Card API", + "text": "Extensions to the Navigator interface", + "url": "https://wicg.github.io/web-smart-card/#extensions-to-the-navigator-interface" + } + }, + "#extensions-to-the-workernavigator-interface": { + "current": { + "number": "2", + "spec": "Web Smart Card API", + "text": "Extensions to the WorkerNavigator interface", + "url": "https://wicg.github.io/web-smart-card/#extensions-to-the-workernavigator-interface" + } + }, + "#getattribute-method": { + "current": { + "number": "5.6", + "spec": "Web Smart Card API", + "text": "getAttribute() method", + "url": "https://wicg.github.io/web-smart-card/#getattribute-method" + } + }, + "#getstatuschange-method": { + "current": { + "number": "4.2", + "spec": "Web Smart Card API", + "text": "getStatusChange() method", + "url": "https://wicg.github.io/web-smart-card/#getstatuschange-method" + } + }, + "#integrations": { + "current": { + "number": "7", + "spec": "Web Smart Card API", + "text": "Integrations", + "url": "https://wicg.github.io/web-smart-card/#integrations" + } + }, + "#listreaders-method": { + "current": { + "number": "4.1", + "spec": "Web Smart Card API", + "text": "listReaders() method", + "url": "https://wicg.github.io/web-smart-card/#listreaders-method" + } + }, + "#normative-references": { + "current": { + "number": "A.1", + "spec": "Web Smart Card API", + "text": "Normative references", + "url": "https://wicg.github.io/web-smart-card/#normative-references" + } + }, + "#permissions-policy": { + "current": { + "number": "7.1", + "spec": "Web Smart Card API", + "text": "Permissions Policy", + "url": "https://wicg.github.io/web-smart-card/#permissions-policy" + } + }, + "#references": { + "current": { + "number": "A", + "spec": "Web Smart Card API", + "text": "References", + "url": "https://wicg.github.io/web-smart-card/#references" + } + }, + "#setattribute-method": { + "current": { + "number": "5.7", + "spec": "Web Smart Card API", + "text": "setAttribute() method", + "url": "https://wicg.github.io/web-smart-card/#setattribute-method" + } + }, + "#smartcard-attribute": { + "current": { + "number": "1.1", + "spec": "Web Smart Card API", + "text": "smartCard attribute", + "url": "https://wicg.github.io/web-smart-card/#smartcard-attribute" + } + }, + "#smartcard-attribute-0": { + "current": { + "number": "2.1", + "spec": "Web Smart Card API", + "text": "smartCard attribute", + "url": "https://wicg.github.io/web-smart-card/#smartcard-attribute-0" + } + }, + "#smartcardaccessmode-enum": { + "current": { + "number": "4.3.3", + "spec": "Web Smart Card API", + "text": "SmartCardAccessMode enum", + "url": "https://wicg.github.io/web-smart-card/#smartcardaccessmode-enum" + } + }, + "#smartcardconnection-interface": { + "current": { + "number": "5", + "spec": "Web Smart Card API", + "text": "SmartCardConnection interface", + "url": "https://wicg.github.io/web-smart-card/#smartcardconnection-interface" + } + }, + "#smartcardconnectionstate-enum": { + "current": { + "number": "5.4.1.1", + "spec": "Web Smart Card API", + "text": "SmartCardConnectionState enum", + "url": "https://wicg.github.io/web-smart-card/#smartcardconnectionstate-enum" + } + }, + "#smartcardconnectionstatus-dictionary": { + "current": { + "number": "5.4.1", + "spec": "Web Smart Card API", + "text": "SmartCardConnectionStatus dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardconnectionstatus-dictionary" + } + }, + "#smartcardconnectoptions-dictionary": { + "current": { + "number": "4.3.4", + "spec": "Web Smart Card API", + "text": "SmartCardConnectOptions dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardconnectoptions-dictionary" + } + }, + "#smartcardconnectresult-dictionary": { + "current": { + "number": "4.3.2", + "spec": "Web Smart Card API", + "text": "SmartCardConnectResult dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardconnectresult-dictionary" + } + }, + "#smartcardcontext-interface": { + "current": { + "number": "4", + "spec": "Web Smart Card API", + "text": "SmartCardContext interface", + "url": "https://wicg.github.io/web-smart-card/#smartcardcontext-interface" + } + }, + "#smartcarddisposition-enum": { + "current": { + "number": "5.1.1", + "spec": "Web Smart Card API", + "text": "SmartCardDisposition enum", + "url": "https://wicg.github.io/web-smart-card/#smartcarddisposition-enum" + } + }, + "#smartcarderror-interface": { + "current": { + "number": "6", + "spec": "Web Smart Card API", + "text": "SmartCardError interface", + "url": "https://wicg.github.io/web-smart-card/#smartcarderror-interface" + } + }, + "#smartcarderroroptions-dictionary": { + "current": { + "number": "6.1", + "spec": "Web Smart Card API", + "text": "SmartCardErrorOptions dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcarderroroptions-dictionary" + } + }, + "#smartcardgetstatuschangeoptions-dictionary": { + "current": { + "number": "4.2.3", + "spec": "Web Smart Card API", + "text": "SmartCardGetStatusChangeOptions dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardgetstatuschangeoptions-dictionary" + } + }, + "#smartcardprotocol-enum": { + "current": { + "number": "4.3.1", + "spec": "Web Smart Card API", + "text": "SmartCardProtocol enum", + "url": "https://wicg.github.io/web-smart-card/#smartcardprotocol-enum" + } + }, + "#smartcardreaderstateflagsin-dictionary": { + "current": { + "number": "4.2.1.1", + "spec": "Web Smart Card API", + "text": "SmartCardReaderStateFlagsIn dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardreaderstateflagsin-dictionary" + } + }, + "#smartcardreaderstateflagsout-dictionary": { + "current": { + "number": "4.2.2.1", + "spec": "Web Smart Card API", + "text": "SmartCardReaderStateFlagsOut dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardreaderstateflagsout-dictionary" + } + }, + "#smartcardreaderstatein-dictionary": { + "current": { + "number": "4.2.1", + "spec": "Web Smart Card API", + "text": "SmartCardReaderStateIn dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardreaderstatein-dictionary" + } + }, + "#smartcardreaderstateout-dictionary": { + "current": { + "number": "4.2.2", + "spec": "Web Smart Card API", + "text": "SmartCardReaderStateOut dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardreaderstateout-dictionary" + } + }, + "#smartcardresourcemanager-interface": { + "current": { + "number": "3", + "spec": "Web Smart Card API", + "text": "SmartCardResourceManager interface", + "url": "https://wicg.github.io/web-smart-card/#smartcardresourcemanager-interface" + } + }, + "#smartcardresponsecode-enum": { + "current": { + "number": "6.2", + "spec": "Web Smart Card API", + "text": "SmartCardResponseCode enum", + "url": "https://wicg.github.io/web-smart-card/#smartcardresponsecode-enum" + } + }, + "#smartcardtransactionoptions-dictionary": { + "current": { + "number": "5.3.1", + "spec": "Web Smart Card API", + "text": "SmartCardTransactionOptions dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardtransactionoptions-dictionary" + } + }, + "#smartcardtransmitoptions-dictionary": { + "current": { + "number": "5.2.1", + "spec": "Web Smart Card API", + "text": "SmartCardTransmitOptions dictionary", + "url": "https://wicg.github.io/web-smart-card/#smartcardtransmitoptions-dictionary" + } + }, + "#starttransaction-method": { + "current": { + "number": "5.3", + "spec": "Web Smart Card API", + "text": "startTransaction() method", + "url": "https://wicg.github.io/web-smart-card/#starttransaction-method" + } + }, + "#status-method": { + "current": { + "number": "5.4", + "spec": "Web Smart Card API", + "text": "status() method", + "url": "https://wicg.github.io/web-smart-card/#status-method" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Web Smart Card API", + "text": "Web Smart Card API", + "url": "https://wicg.github.io/web-smart-card/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Web Smart Card API", + "text": "Table of Contents", + "url": "https://wicg.github.io/web-smart-card/#toc" + } + }, + "#transmit-method": { + "current": { + "number": "5.2", + "spec": "Web Smart Card API", + "text": "transmit() method", + "url": "https://wicg.github.io/web-smart-card/#transmit-method" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webaudio.json b/bikeshed/spec-data/readonly/headings/headings-webaudio.json index 9b160699e2..54a051e0d9 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webaudio.json +++ b/bikeshed/spec-data/readonly/headings/headings-webaudio.json @@ -3271,6 +3271,14 @@ "url": "https://www.w3.org/TR/webaudio/#dynamic-lifetime-example" } }, + "#error-handling-on-a-running-audio-context": { + "current": { + "number": "2.5", + "spec": "Web Audio API", + "text": "Handling an error from System Audio Resources on the AudioContext", + "url": "https://webaudio.github.io/web-audio-api/#error-handling-on-a-running-audio-context" + } + }, "#example1-AudioParam": { "current": { "number": "1.6.4", @@ -3731,7 +3739,7 @@ }, "#unloading-a-document": { "current": { - "number": "2.5", + "number": "2.6", "spec": "Web Audio API", "text": "Unloading a document", "url": "https://webaudio.github.io/web-audio-api/#unloading-a-document" diff --git a/bikeshed/spec-data/readonly/headings/headings-webauthn-3.json b/bikeshed/spec-data/readonly/headings/headings-webauthn-3.json index ff50aa2f32..87e5eac464 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webauthn-3.json +++ b/bikeshed/spec-data/readonly/headings/headings-webauthn-3.json @@ -59,7 +59,7 @@ "current": { "number": "5.5", "spec": "Web Authentication", - "text": "Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions Info about the 'PublicKeyCredentialRequestOptions' definition.#dictdef-publickeycredentialrequestoptionsReferenced in: 5.1.2. CredentialRequestOptions Dictionary Extension 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.1.4.2. Issuing a Credential Request to an Authenticator (2) 5.1.9. Deserialize Authentication ceremony options - PublicKeyCredential’s parseRequestOptionsFromJSON() Methods (2) (3) (4) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) (2) 5.8.1.2. Limited Verification Algorithm 6.5. Attestation 7. WebAuthn Relying Party Operations 7.2. Verifying an Authentication Assertion 13.4.3. Cryptographic Challenges 14.6.2. Username Enumeration )", + "text": "Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions)", "url": "https://w3c.github.io/webauthn/#dictionary-assertion-options" }, "snapshot": { @@ -73,7 +73,7 @@ "current": { "number": "5.4.4", "spec": "Web Authentication", - "text": "Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria Info about the 'AuthenticatorSelectionCriteria' definition.#dictdef-authenticatorselectioncriteriaReferenced in: 5.1.8. Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) (2) 5.4.4. Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria) (2) )", + "text": "Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria)", "url": "https://w3c.github.io/webauthn/#dictionary-authenticatorSelection" }, "snapshot": { @@ -87,7 +87,7 @@ "current": { "number": "5.8.1", "spec": "Web Authentication", - "text": "Client Data Used in WebAuthn Signatures (dictionary CollectedClientData Info about the 'CollectedClientData' definition.#dictdef-collectedclientdataReferenced in: 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.8.1. Client Data Used in WebAuthn Signatures (dictionary CollectedClientData) (2) (3) (4) 5.8.1.1. Serialization (2) (3) 5.8.1.2. Limited Verification Algorithm (2) 5.8.1.3. Future development (2) )", + "text": "Client Data Used in WebAuthn Signatures (dictionary CollectedClientData)", "url": "https://w3c.github.io/webauthn/#dictionary-client-data" }, "snapshot": { @@ -101,7 +101,7 @@ "current": { "number": "5.8.3", "spec": "Web Authentication", - "text": "Credential Descriptor (dictionary PublicKeyCredentialDescriptor Info about the 'PublicKeyCredentialDescriptor' definition.#dictdef-publickeycredentialdescriptorReferenced in: 4. Terminology 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method (2) (3) (4) 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) (2) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) (2) 5.8.3. Credential Descriptor (dictionary PublicKeyCredentialDescriptor) (2) (3) 6.3.2. The authenticatorMakeCredential Operation 6.3.3. The authenticatorGetAssertion Operation 10.1.2. FIDO AppID Exclusion Extension (appidExclude) )", + "text": "Credential Descriptor (dictionary PublicKeyCredentialDescriptor)", "url": "https://w3c.github.io/webauthn/#dictionary-credential-descriptor" }, "snapshot": { @@ -115,7 +115,7 @@ "current": { "number": "5.3", "spec": "Web Authentication", - "text": "Parameters for Credential Generation (dictionary PublicKeyCredentialParameters Info about the 'PublicKeyCredentialParameters' definition.#dictdef-publickeycredentialparametersReferenced in: 5.1.8. Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method 5.3. Parameters for Credential Generation (dictionary PublicKeyCredentialParameters) (2) 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) (2) )", + "text": "Parameters for Credential Generation (dictionary PublicKeyCredentialParameters)", "url": "https://w3c.github.io/webauthn/#dictionary-credential-params" }, "snapshot": { @@ -129,7 +129,7 @@ "current": { "number": "5.4", "spec": "Web Authentication", - "text": "Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions Info about the 'PublicKeyCredentialCreationOptions' definition.#dictdef-publickeycredentialcreationoptionsReferenced in: 5.1.1. CredentialCreationOptions Dictionary Extension 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method 5.1.8. Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method (2) (3) (4) 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) 5.8.1.2. Limited Verification Algorithm 7. WebAuthn Relying Party Operations 7.1. Registering a New Credential 13.4.3. Cryptographic Challenges )", + "text": "Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions)", "url": "https://w3c.github.io/webauthn/#dictionary-makecredentialoptions" }, "snapshot": { @@ -143,7 +143,7 @@ "current": { "number": "5.4.1", "spec": "Web Authentication", - "text": "Public Key Entity Description (dictionary PublicKeyCredentialEntity Info about the 'PublicKeyCredentialEntity' definition.#dictdef-publickeycredentialentityReferenced in: 5.4.1. Public Key Entity Description (dictionary PublicKeyCredentialEntity) (2) (3) 5.4.2. Relying Party Parameters for Credential Generation (dictionary PublicKeyCredentialRpEntity) 5.4.3. User Account Parameters for Credential Generation (dictionary PublicKeyCredentialUserEntity) )", + "text": "Public Key Entity Description (dictionary PublicKeyCredentialEntity)", "url": "https://w3c.github.io/webauthn/#dictionary-pkcredentialentity" }, "snapshot": { @@ -157,7 +157,7 @@ "current": { "number": "5.4.2", "spec": "Web Authentication", - "text": "Relying Party Parameters for Credential Generation (dictionary PublicKeyCredentialRpEntity Info about the 'PublicKeyCredentialRpEntity' definition.#dictdef-publickeycredentialrpentityReferenced in: 5.1.8. Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) (2) 5.4.1. Public Key Entity Description (dictionary PublicKeyCredentialEntity) 5.4.2. Relying Party Parameters for Credential Generation (dictionary PublicKeyCredentialRpEntity) (2) 6.3.2. The authenticatorMakeCredential Operation )", + "text": "Relying Party Parameters for Credential Generation (dictionary PublicKeyCredentialRpEntity)", "url": "https://w3c.github.io/webauthn/#dictionary-rp-credential-params" }, "snapshot": { @@ -171,7 +171,7 @@ "current": { "number": "5.4.3", "spec": "Web Authentication", - "text": "User Account Parameters for Credential Generation (dictionary PublicKeyCredentialUserEntity Info about the 'PublicKeyCredentialUserEntity' definition.#dictdef-publickeycredentialuserentityReferenced in: 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) (2) 5.4.1. Public Key Entity Description (dictionary PublicKeyCredentialEntity) 5.4.3. User Account Parameters for Credential Generation (dictionary PublicKeyCredentialUserEntity) (2) 6.3.2. The authenticatorMakeCredential Operation 6.4. String Handling 14.4.2. Privacy of personally identifying information Stored in Authenticators )", + "text": "User Account Parameters for Credential Generation (dictionary PublicKeyCredentialUserEntity)", "url": "https://w3c.github.io/webauthn/#dictionary-user-credential-params" }, "snapshot": { @@ -185,7 +185,7 @@ "current": { "number": "5.4.5", "spec": "Web Authentication", - "text": "Authenticator Attachment Enumeration (enum AuthenticatorAttachment Info about the 'AuthenticatorAttachment' definition.#enumdef-authenticatorattachmentReferenced in: 5.1. PublicKeyCredential Interface 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.4.4. Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria) 5.4.5. Authenticator Attachment Enumeration (enum AuthenticatorAttachment) (2) )", + "text": "Authenticator Attachment Enumeration (enum AuthenticatorAttachment)", "url": "https://w3c.github.io/webauthn/#enum-attachment" }, "snapshot": { @@ -199,7 +199,7 @@ "current": { "number": "5.4.7", "spec": "Web Authentication", - "text": "Attestation Conveyance Info about the 'Attestation Conveyance' definition.#attestation-conveyanceReferenced in: 4. Terminology 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) 5.4.7. Attestation Conveyance Preference Enumeration (enum AttestationConveyancePreference) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) 6.5.4. Attestation Types 10.2.2.2. Extension Definition Preference Enumeration (enum AttestationConveyancePreference Info about the 'AttestationConveyancePreference' definition.#enumdef-attestationconveyancepreferenceReferenced in: 5.2.1.1. Easily accessing credential data 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) 5.4.7. Attestation Conveyance Preference Enumeration (enum AttestationConveyancePreference) (2) (3) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) 10.2.2.2. Extension Definition )", + "text": "Attestation Conveyance Preference Enumeration (enum AttestationConveyancePreference)", "url": "https://w3c.github.io/webauthn/#enum-attestation-convey" }, "snapshot": { @@ -209,11 +209,19 @@ "url": "https://www.w3.org/TR/webauthn-3/#enum-attestation-convey" } }, + "#enum-clientCapability": { + "current": { + "number": "5.8.7", + "spec": "Web Authentication", + "text": "Client Capability Enumeration (enum ClientCapability)", + "url": "https://w3c.github.io/webauthn/#enum-clientCapability" + } + }, "#enum-credentialType": { "current": { "number": "5.8.2", "spec": "Web Authentication", - "text": "Credential Type Enumeration (enum PublicKeyCredentialType Info about the 'PublicKeyCredentialType' definition.#enumdef-publickeycredentialtypeReferenced in: 4. Terminology 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method (2) (3) 5.3. Parameters for Credential Generation (dictionary PublicKeyCredentialParameters) 5.8.2. Credential Type Enumeration (enum PublicKeyCredentialType) (2) 5.8.3. Credential Descriptor (dictionary PublicKeyCredentialDescriptor) 6.3.2. The authenticatorMakeCredential Operation (2) (3) 6.3.5. The silentCredentialDiscovery operation )", + "text": "Credential Type Enumeration (enum PublicKeyCredentialType)", "url": "https://w3c.github.io/webauthn/#enum-credentialType" }, "snapshot": { @@ -223,11 +231,25 @@ "url": "https://www.w3.org/TR/webauthn-3/#enum-credentialType" } }, + "#enum-hints": { + "current": { + "number": "5.8.8", + "spec": "Web Authentication", + "text": "User-agent Hints Enumeration (enum PublicKeyCredentialHints)", + "url": "https://w3c.github.io/webauthn/#enum-hints" + }, + "snapshot": { + "number": "5.8.7", + "spec": "Web Authentication", + "text": "User-agent Hints Enumeration (enum PublicKeyCredentialHints)", + "url": "https://www.w3.org/TR/webauthn-3/#enum-hints" + } + }, "#enum-residentKeyRequirement": { "current": { "number": "5.4.6", "spec": "Web Authentication", - "text": "Resident Key Requirement Enumeration (enum ResidentKeyRequirement Info about the 'ResidentKeyRequirement' definition.#enumdef-residentkeyrequirementReferenced in: 5.4.4. Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria) (2) 5.4.6. Resident Key Requirement Enumeration (enum ResidentKeyRequirement) (2) )", + "text": "Resident Key Requirement Enumeration (enum ResidentKeyRequirement)", "url": "https://w3c.github.io/webauthn/#enum-residentKeyRequirement" }, "snapshot": { @@ -241,7 +263,7 @@ "current": { "number": "5.8.4", "spec": "Web Authentication", - "text": "Authenticator Transport Enumeration (enum AuthenticatorTransport Info about the 'AuthenticatorTransport' definition.#enumdef-authenticatortransportReferenced in: 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method 5.2.1. Information About Public Key Credential (interface AuthenticatorAttestationResponse) 5.8.3. Credential Descriptor (dictionary PublicKeyCredentialDescriptor) 5.8.4. Authenticator Transport Enumeration (enum AuthenticatorTransport) (2) 11.2. Virtual Authenticators 11.3. Add Virtual Authenticator )", + "text": "Authenticator Transport Enumeration (enum AuthenticatorTransport)", "url": "https://w3c.github.io/webauthn/#enum-transport" }, "snapshot": { @@ -255,7 +277,7 @@ "current": { "number": "5.8.6", "spec": "Web Authentication", - "text": "User Verification Requirement Enumeration (enum UserVerificationRequirement Info about the 'UserVerificationRequirement' definition.#enumdef-userverificationrequirementReferenced in: 5.4.4. Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria) (2) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) (2) 5.8.6. User Verification Requirement Enumeration (enum UserVerificationRequirement) (2) 10.1.4. Pseudo-random function extension (prf) )", + "text": "User Verification Requirement Enumeration (enum UserVerificationRequirement)", "url": "https://w3c.github.io/webauthn/#enum-userVerificationRequirement" }, "snapshot": { @@ -339,7 +361,7 @@ "current": { "number": "5.2.2", "spec": "Web Authentication", - "text": "Web Authentication Assertion (interface AuthenticatorAssertionResponse Info about the 'AuthenticatorAssertionResponse' definition.#authenticatorassertionresponseReferenced in: 4. Terminology 5.1. PublicKeyCredential Interface 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.2.2. Web Authentication Assertion (interface AuthenticatorAssertionResponse) (2) (3) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) 6.5.1. Attestation in assertions (2) 7. WebAuthn Relying Party Operations 7.2. Verifying an Authentication Assertion 14.6.2. Username Enumeration )", + "text": "Web Authentication Assertion (interface AuthenticatorAssertionResponse)", "url": "https://w3c.github.io/webauthn/#iface-authenticatorassertionresponse" }, "snapshot": { @@ -353,7 +375,7 @@ "current": { "number": "5.2.1", "spec": "Web Authentication", - "text": "Information About Public Key Credential (interface AuthenticatorAttestationResponse Info about the 'AuthenticatorAttestationResponse' definition.#authenticatorattestationresponseReferenced in: 5.1. PublicKeyCredential Interface 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method 5.2.1. Information About Public Key Credential (interface AuthenticatorAttestationResponse) (2) 5.2.1.1. Easily accessing credential data 5.2.2. Web Authentication Assertion (interface AuthenticatorAssertionResponse) 6.5.1. Attestation in assertions 7. WebAuthn Relying Party Operations 7.1. Registering a New Credential (2) )", + "text": "Information About Public Key Credential (interface AuthenticatorAttestationResponse)", "url": "https://w3c.github.io/webauthn/#iface-authenticatorattestationresponse" }, "snapshot": { @@ -367,7 +389,7 @@ "current": { "number": "5.2", "spec": "Web Authentication", - "text": "Authenticator Responses (interface AuthenticatorResponse Info about the 'AuthenticatorResponse' definition.#authenticatorresponseReferenced in: 5.1. PublicKeyCredential Interface (2) 5.2. Authenticator Responses (interface AuthenticatorResponse) (2) 5.2.1. Information About Public Key Credential (interface AuthenticatorAttestationResponse) (2) 5.2.2. Web Authentication Assertion (interface AuthenticatorAssertionResponse) (2) )", + "text": "Authenticator Responses (interface AuthenticatorResponse)", "url": "https://w3c.github.io/webauthn/#iface-authenticatorresponse" }, "snapshot": { @@ -381,7 +403,7 @@ "current": { "number": "5.1", "spec": "Web Authentication", - "text": "PublicKeyCredential Info about the 'PublicKeyCredential' definition.#publickeycredentialReferenced in: 1. Introduction 5.1. PublicKeyCredential Interface (2) (3) (4) (5) (6) (7) (8) (9) (10) 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method (2) 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.1.5. Store an Existing Credential - PublicKeyCredential’s [[Store]](credential, sameOriginWithAncestors) Method (2) 5.1.7. Availability of User-Verifying Platform Authenticator - PublicKeyCredential’s isUserVerifyingPlatformAuthenticatorAvailable() Method 5.1.8. Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method 5.1.9. Deserialize Authentication ceremony options - PublicKeyCredential’s parseRequestOptionsFromJSON() Methods 5.4.4. Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria) 5.8.3. Credential Descriptor (dictionary PublicKeyCredentialDescriptor) (2) (3) (4) 7. WebAuthn Relying Party Operations 10.1.3. Credential Properties Extension (credProps) 13.4.4. Attestation Limitations Interface", + "text": "PublicKeyCredential Interface", "url": "https://w3c.github.io/webauthn/#iface-pkcredential" }, "snapshot": { @@ -479,16 +501,14 @@ "current": { "number": "10.1.4", "spec": "Web Authentication", - "text": "Pseudo-random function extension (prf Info about the 'prf' definition.#prfReferenced in: 10.1.4. Pseudo-random function extension (prf) 11.1.1. Authenticator Extension Capabilities )", + "text": "Pseudo-random function extension (prf)", "url": "https://w3c.github.io/webauthn/#prf-extension" - } - }, - "#profile-and-date": { + }, "snapshot": { - "number": "", + "number": "10.1.4", "spec": "Web Authentication", - "text": "W3C First Public Working Draft, 27 April 2021", - "url": "https://www.w3.org/TR/webauthn-3/#profile-and-date" + "text": "Pseudo-random function extension (prf)", + "url": "https://www.w3.org/TR/webauthn-3/#prf-extension" } }, "#references": { @@ -621,7 +641,7 @@ "current": { "number": "5", "spec": "Web Authentication", - "text": "Web Authentication API Info about the 'Web Authentication API' definition.#web-authentication-apiReferenced in: 1. Introduction (2) (3) 4. Terminology (2) (3) (4) (5) (6) (7) (8) 5.1.7. Availability of User-Verifying Platform Authenticator - PublicKeyCredential’s isUserVerifyingPlatformAuthenticatorAvailable() Method 5.9. Permissions Policy integration 5.10. Using Web Authentication within iframe elements (2) 13. Security Considerations 14.1. De-anonymization Prevention Measures (2)", + "text": "Web Authentication API", "url": "https://w3c.github.io/webauthn/#sctn-api" }, "snapshot": { @@ -639,7 +659,7 @@ "url": "https://w3c.github.io/webauthn/#sctn-appid-exclude-extension" }, "snapshot": { - "number": "10.2", + "number": "10.1.2", "spec": "Web Authentication", "text": "FIDO AppID Exclusion Extension (appidExclude)", "url": "https://www.w3.org/TR/webauthn-3/#sctn-appid-exclude-extension" @@ -649,11 +669,11 @@ "current": { "number": "10.1.1", "spec": "Web Authentication", - "text": "FIDO AppID Info about the 'AppID' definition.#appidReferenced in: 3. Dependencies 7.2. Verifying an Authentication Assertion Extension (appid)", + "text": "FIDO AppID Extension (appid)", "url": "https://w3c.github.io/webauthn/#sctn-appid-extension" }, "snapshot": { - "number": "10.1", + "number": "10.1.1", "spec": "Web Authentication", "text": "FIDO AppID Extension (appid)", "url": "https://www.w3.org/TR/webauthn-3/#sctn-appid-extension" @@ -731,24 +751,24 @@ }, "#sctn-attestation-formats": { "current": { - "number": "6.5.3", + "number": "6.5.2", "spec": "Web Authentication", "text": "Attestation Statement Formats", "url": "https://w3c.github.io/webauthn/#sctn-attestation-formats" }, "snapshot": { - "number": "6.5.2", + "number": "6.5.3", "spec": "Web Authentication", "text": "Attestation Statement Formats", "url": "https://www.w3.org/TR/webauthn-3/#sctn-attestation-formats" } }, "#sctn-attestation-in-assertions": { - "current": { + "snapshot": { "number": "6.5.1", "spec": "Web Authentication", "text": "Attestation in assertions", - "url": "https://w3c.github.io/webauthn/#sctn-attestation-in-assertions" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-attestation-in-assertions" } }, "#sctn-attestation-limitations": { @@ -781,13 +801,13 @@ }, "#sctn-attestation-types": { "current": { - "number": "6.5.4", + "number": "6.5.3", "spec": "Web Authentication", "text": "Attestation Types", "url": "https://w3c.github.io/webauthn/#sctn-attestation-types" }, "snapshot": { - "number": "6.5.3", + "number": "6.5.4", "spec": "Web Authentication", "text": "Attestation Types", "url": "https://www.w3.org/TR/webauthn-3/#sctn-attestation-types" @@ -795,13 +815,13 @@ }, "#sctn-attested-credential-data": { "current": { - "number": "6.5.2", + "number": "6.5.1", "spec": "Web Authentication", "text": "Attested Credential Data", "url": "https://w3c.github.io/webauthn/#sctn-attested-credential-data" }, "snapshot": { - "number": "6.5.1", + "number": "6.5.2", "spec": "Web Authentication", "text": "Attested Credential Data", "url": "https://www.w3.org/TR/webauthn-3/#sctn-attested-credential-data" @@ -825,7 +845,7 @@ "current": { "number": "6.2.3", "spec": "Web Authentication", - "text": "Authentication Factor Capability Info about the 'Authentication Factor Capability' definition.#authentication-factor-capabilityReferenced in: 6.2. Authenticator Taxonomy (2) (3)", + "text": "Authentication Factor Capability", "url": "https://w3c.github.io/webauthn/#sctn-authentication-factor-capability" }, "snapshot": { @@ -839,7 +859,7 @@ "current": { "number": "6.2.1", "spec": "Web Authentication", - "text": "Authenticator Attachment Modality Info about the 'Authenticator Attachment Modality' definition.#authenticator-attachment-modalityReferenced in: 5.1. PublicKeyCredential Interface (2) 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method (2) 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.4.4. Authenticator Selection Criteria (dictionary AuthenticatorSelectionCriteria) 5.4.5. Authenticator Attachment Enumeration (enum AuthenticatorAttachment) (2) (3) (4) (5) 6.2. Authenticator Taxonomy (2) (3)", + "text": "Authenticator Attachment Modality", "url": "https://w3c.github.io/webauthn/#sctn-authenticator-attachment-modality" }, "snapshot": { @@ -853,11 +873,11 @@ "current": { "number": "10.1.3", "spec": "Web Authentication", - "text": "Credential Properties Extension (credProps Info about the 'credProps' definition.#credpropsReferenced in: 1.3.3. Authentication 5.4.6. Resident Key Requirement Enumeration (enum ResidentKeyRequirement) (2) )", + "text": "Credential Properties Extension (credProps)", "url": "https://w3c.github.io/webauthn/#sctn-authenticator-credential-properties-extension" }, "snapshot": { - "number": "10.4", + "number": "10.1.3", "spec": "Web Authentication", "text": "Credential Properties Extension (credProps)", "url": "https://www.w3.org/TR/webauthn-3/#sctn-authenticator-credential-properties-extension" @@ -881,7 +901,7 @@ "current": { "number": "11.1.1", "spec": "Web Authentication", - "text": "Authenticator Extension Capabilities Info about the 'Authenticator Extension Capabilities' definition.#authenticator-extension-capabilitiesReferenced in: 11.1.1. Authenticator Extension Capabilities (2) (3)", + "text": "Authenticator Extension Capabilities", "url": "https://w3c.github.io/webauthn/#sctn-authenticator-extension-capabilities" }, "snapshot": { @@ -895,7 +915,7 @@ "current": { "number": "9.5", "spec": "Web Authentication", - "text": "Authenticator Extension Processing Info about the 'Authenticator Extension Processing' definition.#authenticator-extension-processingReferenced in: 6.3.2. The authenticatorMakeCredential Operation 6.3.3. The authenticatorGetAssertion Operation 9. WebAuthn Extensions 9.2. Defining Extensions 9.5. Authenticator Extension Processing 11.1.1. Authenticator Extension Capabilities", + "text": "Authenticator Extension Processing", "url": "https://w3c.github.io/webauthn/#sctn-authenticator-extension-processing" }, "snapshot": { @@ -909,7 +929,7 @@ "current": { "number": "6", "spec": "Web Authentication", - "text": "WebAuthn Authenticator Model Info about the 'Authenticator Model' definition.#authenticator-modelReferenced in: 4. Terminology (2) 6. WebAuthn Authenticator Model 11.2. Virtual Authenticators 13.2. Physical Proximity between Client and Authenticator", + "text": "WebAuthn Authenticator Model", "url": "https://w3c.github.io/webauthn/#sctn-authenticator-model" }, "snapshot": { @@ -923,7 +943,7 @@ "current": { "number": "6.3", "spec": "Web Authentication", - "text": "Authenticator Operations Info about the 'Authenticator Operations' definition.#authenticator-operationsReferenced in: 4. Terminology", + "text": "Authenticator Operations", "url": "https://w3c.github.io/webauthn/#sctn-authenticator-ops" }, "snapshot": { @@ -965,7 +985,7 @@ "current": { "number": "11.5", "spec": "Web Authentication", - "text": "Add Credential Info about the 'Add Credential' definition.#add-credentialReferenced in: 11.5. Add Credential 11.6. Get Credentials", + "text": "Add Credential", "url": "https://w3c.github.io/webauthn/#sctn-automation-add-credential" }, "snapshot": { @@ -979,7 +999,7 @@ "current": { "number": "11.3", "spec": "Web Authentication", - "text": "Add Virtual Authenticator Info about the 'Add Virtual Authenticator' definition.#add-virtual-authenticatorReferenced in: 11.3. Add Virtual Authenticator", + "text": "Add Virtual Authenticator", "url": "https://w3c.github.io/webauthn/#sctn-automation-add-virtual-authenticator" }, "snapshot": { @@ -993,7 +1013,7 @@ "current": { "number": "11.6", "spec": "Web Authentication", - "text": "Get Credentials Info about the 'Get Credentials' definition.#get-credentialsReferenced in: 11.6. Get Credentials", + "text": "Get Credentials", "url": "https://w3c.github.io/webauthn/#sctn-automation-get-credentials" }, "snapshot": { @@ -1007,7 +1027,7 @@ "current": { "number": "11.8", "spec": "Web Authentication", - "text": "Remove All Credentials Info about the 'Remove All Credentials' definition.#remove-all-credentialsReferenced in: 11.8. Remove All Credentials", + "text": "Remove All Credentials", "url": "https://w3c.github.io/webauthn/#sctn-automation-remove-all-credentials" }, "snapshot": { @@ -1021,7 +1041,7 @@ "current": { "number": "11.7", "spec": "Web Authentication", - "text": "Remove Credential Info about the 'Remove Credential' definition.#remove-credentialReferenced in: 11.7. Remove Credential", + "text": "Remove Credential", "url": "https://w3c.github.io/webauthn/#sctn-automation-remove-credential" }, "snapshot": { @@ -1035,7 +1055,7 @@ "current": { "number": "11.4", "spec": "Web Authentication", - "text": "Remove Virtual Authenticator Info about the 'Remove Virtual Authenticator' definition.#remove-virtual-authenticatorReferenced in: 11.4. Remove Virtual Authenticator", + "text": "Remove Virtual Authenticator", "url": "https://w3c.github.io/webauthn/#sctn-automation-remove-virtual-authenticator" }, "snapshot": { @@ -1045,11 +1065,19 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-automation-remove-virtual-authenticator" } }, + "#sctn-automation-set-credential-properties": { + "current": { + "number": "11.10", + "spec": "Web Authentication", + "text": "Set Credential Properties", + "url": "https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties" + } + }, "#sctn-automation-set-user-verified": { "current": { "number": "11.9", "spec": "Web Authentication", - "text": "Set User Verified Info about the 'Set User Verified' definition.#set-user-verifiedReferenced in: 11.9. Set User Verified", + "text": "Set User Verified", "url": "https://w3c.github.io/webauthn/#sctn-automation-set-user-verified" }, "snapshot": { @@ -1063,7 +1091,7 @@ "current": { "number": "11.2", "spec": "Web Authentication", - "text": "Virtual Authenticators Info about the 'Virtual Authenticators' definition.#virtual-authenticatorsReferenced in: 11.1. WebAuthn WebDriver Extension Capability (2) 11.2. Virtual Authenticators (2) (3) (4) (5) (6) (7) (8) (9) (10) 11.3. Add Virtual Authenticator (2) 11.4. Remove Virtual Authenticator (2) (3) 11.5. Add Credential (2) (3) 11.6. Get Credentials (2) 11.7. Remove Credential (2) (3) 11.8. Remove All Credentials (2) (3) 11.9. Set User Verified (2) (3)", + "text": "Virtual Authenticators", "url": "https://w3c.github.io/webauthn/#sctn-automation-virtual-authenticators" }, "snapshot": { @@ -1147,7 +1175,7 @@ "current": { "number": "9.4", "spec": "Web Authentication", - "text": "Client Extension Processing Info about the 'Client Extension Processing' definition.#client-extension-processingReferenced in: 5.1. PublicKeyCredential Interface 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method (2) 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method (2) 5.1.4.2. Issuing a Credential Request to an Authenticator 9. WebAuthn Extensions (2) (3) (4) 9.2. Defining Extensions", + "text": "Client Extension Processing", "url": "https://w3c.github.io/webauthn/#sctn-client-extension-processing" }, "snapshot": { @@ -1163,6 +1191,20 @@ "spec": "Web Authentication", "text": "Code injection attacks", "url": "https://w3c.github.io/webauthn/#sctn-code-injection" + }, + "snapshot": { + "number": "13.4.8", + "spec": "Web Authentication", + "text": "Code injection attacks", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-code-injection" + } + }, + "#sctn-compound-attestation": { + "current": { + "number": "8.9", + "spec": "Web Authentication", + "text": "Compound Attestation Statement Format", + "url": "https://w3c.github.io/webauthn/#sctn-compound-attestation" } }, "#sctn-conformance": { @@ -1249,6 +1291,14 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-conforming-user-agents" } }, + "#sctn-create-request-exceptions": { + "current": { + "number": "5.1.3.1", + "spec": "Web Authentication", + "text": "Create Request Exceptions", + "url": "https://w3c.github.io/webauthn/#sctn-create-request-exceptions" + } + }, "#sctn-createCredential": { "current": { "number": "5.1.3", @@ -1269,6 +1319,12 @@ "spec": "Web Authentication", "text": "Credential Backup State", "url": "https://w3c.github.io/webauthn/#sctn-credential-backup" + }, + "snapshot": { + "number": "6.1.3", + "spec": "Web Authentication", + "text": "Credential Backup State", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-credential-backup" } }, "#sctn-credential-id-privacy-leak": { @@ -1389,6 +1445,12 @@ "spec": "Web Authentication", "text": "Authenticator Extensions", "url": "https://w3c.github.io/webauthn/#sctn-defined-authenticator-extensions" + }, + "snapshot": { + "number": "10.2", + "spec": "Web Authentication", + "text": "Authenticator Extensions", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-defined-authenticator-extensions" } }, "#sctn-defined-client-extensions": { @@ -1397,6 +1459,12 @@ "spec": "Web Authentication", "text": "Client Extensions", "url": "https://w3c.github.io/webauthn/#sctn-defined-client-extensions" + }, + "snapshot": { + "number": "10.1", + "spec": "Web Authentication", + "text": "Client Extensions", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-defined-client-extensions" } }, "#sctn-defined-extensions": { @@ -1428,74 +1496,82 @@ } }, "#sctn-device-publickey-attestation-aaguid": { - "current": { + "snapshot": { "number": "10.2.2.2.1", "spec": "Web Authentication", "text": "AAGUIDs", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-attestation-aaguid" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-attestation-aaguid" } }, "#sctn-device-publickey-attestation-calculations": { - "current": { + "snapshot": { "number": "10.2.2.2.2", "spec": "Web Authentication", "text": "Attestation calculations", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-attestation-calculations" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-attestation-calculations" } }, "#sctn-device-publickey-extension": { - "current": { + "snapshot": { "number": "10.2.2", "spec": "Web Authentication", - "text": "Device-bound public key extension (devicePubKey Info about the 'devicePubKey' definition.#devicepubkeyReferenced in: 4. Terminology 7.1. Registering a New Credential 7.2. Verifying an Authentication Assertion 10.2.2. Device-bound public key extension (devicePubKey) (2) (3) 10.2.2.2.1. AAGUIDs 10.2.2.3. devicePubKey Extension Output Verification Procedures (2) )", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-extension" + "text": "Device-bound public key extension (devicePubKey)", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-extension" } }, "#sctn-device-publickey-extension-definition": { - "current": { + "snapshot": { "number": "10.2.2.2", "spec": "Web Authentication", "text": "Extension Definition", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-extension-definition" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-extension-definition" } }, "#sctn-device-publickey-extension-usage": { - "current": { + "snapshot": { "number": "10.2.2.1", "spec": "Web Authentication", "text": "Relying Party Usage", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-extension-usage" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-extension-usage" } }, "#sctn-device-publickey-extension-verification": { - "current": { + "snapshot": { "number": "10.2.2.3", "spec": "Web Authentication", "text": "devicePubKey Extension Output Verification Procedures", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-extension-verification" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-extension-verification" } }, "#sctn-device-publickey-extension-verification-create": { - "current": { + "snapshot": { "number": "10.2.2.3.1", "spec": "Web Authentication", "text": "Registration (create())", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-extension-verification-create" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-extension-verification-create" } }, "#sctn-device-publickey-extension-verification-get": { - "current": { + "snapshot": { "number": "10.2.2.3.2", "spec": "Web Authentication", "text": "Authentication (get())", - "url": "https://w3c.github.io/webauthn/#sctn-device-publickey-extension-verification-get" + "url": "https://www.w3.org/TR/webauthn-3/#sctn-device-publickey-extension-verification-get" + } + }, + "#sctn-disclosing-client-capabilities": { + "current": { + "number": "14.5.4", + "spec": "Web Authentication", + "text": "Disclosing Client Capabilities", + "url": "https://w3c.github.io/webauthn/#sctn-disclosing-client-capabilities" } }, "#sctn-discover-from-external-source": { "current": { "number": "5.1.4.1", "spec": "Web Authentication", - "text": "PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Info about the '[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)' definition.#dom-publickeycredential-discoverfromexternalsource-slotReferenced in: 4. Terminology 5.1. PublicKeyCredential Interface 5.1.4. Use an Existing Credential to Make an Assertion - PublicKeyCredential’s [[Get]](options) Method 5.1.4.2. Issuing a Credential Request to an Authenticator (2) 5.4.5. Authenticator Attachment Enumeration (enum AuthenticatorAttachment) 5.6. Abort Operations with AbortSignal (2) (3) (4) (5) 5.9. Permissions Policy integration 5.10. Using Web Authentication within iframe elements 10.1.5. Large blob storage extension (largeBlob) 14.5.2. Authentication Ceremony Privacy Method", + "text": "PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method", "url": "https://w3c.github.io/webauthn/#sctn-discover-from-external-source" }, "snapshot": { @@ -1507,13 +1583,13 @@ }, "#sctn-encoded-credPubKey-examples": { "current": { - "number": "6.5.2.1", + "number": "6.5.1.1", "spec": "Web Authentication", "text": "Examples of credentialPublicKey Values Encoded in COSE_Key Format", "url": "https://w3c.github.io/webauthn/#sctn-encoded-credPubKey-examples" }, "snapshot": { - "number": "6.5.1.1", + "number": "6.5.2.1", "spec": "Web Authentication", "text": "Examples of credentialPublicKey Values Encoded in COSE_Key Format", "url": "https://www.w3.org/TR/webauthn-3/#sctn-encoded-credPubKey-examples" @@ -1565,7 +1641,7 @@ "current": { "number": "9", "spec": "Web Authentication", - "text": "WebAuthn Extensions Info about the 'WebAuthn Extensions' definition.#webauthn-extensionsReferenced in: 4. Terminology (2) 5.4. Options for Credential Creation (dictionary PublicKeyCredentialCreationOptions) 5.5. Options for Assertion Generation (dictionary PublicKeyCredentialRequestOptions) 5.7. WebAuthn Extensions Inputs and Outputs 5.7.1. Authentication Extensions Client Inputs (dictionary AuthenticationExtensionsClientInputs) 5.7.2. Authentication Extensions Client Outputs (dictionary AuthenticationExtensionsClientOutputs) 5.7.3. Authentication Extensions Authenticator Inputs (CDDL type AuthenticationExtensionsAuthenticatorInputs) 5.7.4. Authentication Extensions Authenticator Outputs (CDDL type AuthenticationExtensionsAuthenticatorOutputs) 9. WebAuthn Extensions (2) (3)", + "text": "WebAuthn Extensions", "url": "https://w3c.github.io/webauthn/#sctn-extensions" }, "snapshot": { @@ -1647,18 +1723,26 @@ }, "#sctn-generating-an-attestation-object": { "current": { - "number": "6.5.5", + "number": "6.5.4", "spec": "Web Authentication", "text": "Generating an Attestation Object", "url": "https://w3c.github.io/webauthn/#sctn-generating-an-attestation-object" }, "snapshot": { - "number": "6.5.4", + "number": "6.5.5", "spec": "Web Authentication", "text": "Generating an Attestation Object", "url": "https://www.w3.org/TR/webauthn-3/#sctn-generating-an-attestation-object" } }, + "#sctn-get-request-exceptions": { + "current": { + "number": "5.1.4.3", + "spec": "Web Authentication", + "text": "Get Request Exceptions", + "url": "https://w3c.github.io/webauthn/#sctn-get-request-exceptions" + } + }, "#sctn-getAssertion": { "current": { "number": "5.1.4", @@ -1673,6 +1757,14 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-getAssertion" } }, + "#sctn-getClientCapabilities": { + "current": { + "number": "5.1.7", + "spec": "Web Authentication", + "text": "Availability of client capabilities - PublicKeyCredential’s getClientCapabilities() Method", + "url": "https://w3c.github.io/webauthn/#sctn-getClientCapabilities" + } + }, "#sctn-iframe-guidance": { "current": { "number": "5.10", @@ -1701,9 +1793,17 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-intro" } }, + "#sctn-isPasskeyPlatformAuthenticatorAvailable": { + "snapshot": { + "number": "5.1.8", + "spec": "Web Authentication", + "text": "Availability of a passkey platform authenticator - PublicKeyCredential’s isPasskeyPlatformAuthenticatorAvailable() Method", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-isPasskeyPlatformAuthenticatorAvailable" + } + }, "#sctn-isUserVerifyingPlatformAuthenticatorAvailable": { "current": { - "number": "5.1.7", + "number": "5.1.6", "spec": "Web Authentication", "text": "Availability of User-Verifying Platform Authenticator - PublicKeyCredential’s isUserVerifyingPlatformAuthenticatorAvailable() Method", "url": "https://w3c.github.io/webauthn/#sctn-isUserVerifyingPlatformAuthenticatorAvailable" @@ -1719,8 +1819,14 @@ "current": { "number": "5.1.4.2", "spec": "Web Authentication", - "text": "Issuing a Credential Request to an Authenticator Info about the 'Issuing a Credential Request to an Authenticator' definition.#publickeycredential-issuing-a-credential-request-to-an-authenticatorReferenced in: 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method (2) 5.1.4.2. Issuing a Credential Request to an Authenticator", + "text": "Issuing a Credential Request to an Authenticator", "url": "https://w3c.github.io/webauthn/#sctn-issuing-cred-request-to-authenticator" + }, + "snapshot": { + "number": "5.1.4.2", + "spec": "Web Authentication", + "text": "Issuing a Credential Request to an Authenticator", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-issuing-cred-request-to-authenticator" } }, "#sctn-key-attstn-cert-requirements": { @@ -1741,11 +1847,11 @@ "current": { "number": "10.1.5", "spec": "Web Authentication", - "text": "Large blob storage extension (largeBlob Info about the 'largeBlob' definition.#largeblobReferenced in: 10.1.5. Large blob storage extension (largeBlob) (2) 11.1.1. Authenticator Extension Capabilities 11.5. Add Credential )", + "text": "Large blob storage extension (largeBlob)", "url": "https://w3c.github.io/webauthn/#sctn-large-blob-extension" }, "snapshot": { - "number": "10.5", + "number": "10.1.5", "spec": "Web Authentication", "text": "Large blob storage extension (largeBlob)", "url": "https://www.w3.org/TR/webauthn-3/#sctn-large-blob-extension" @@ -1797,7 +1903,7 @@ "current": { "number": "6.3.4", "spec": "Web Authentication", - "text": "The authenticatorCancel Info about the 'authenticatorCancel' definition.#authenticatorcancelReferenced in: 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method (2) (3) (4) (5) (6) 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method (2) (3) (4) (5) 6.3.2. The authenticatorMakeCredential Operation 6.3.3. The authenticatorGetAssertion Operation Operation", + "text": "The authenticatorCancel Operation", "url": "https://w3c.github.io/webauthn/#sctn-op-cancel" }, "snapshot": { @@ -1811,7 +1917,7 @@ "current": { "number": "6.3.3", "spec": "Web Authentication", - "text": "The authenticatorGetAssertion Info about the 'authenticatorGetAssertion' definition.#authenticatorgetassertionReferenced in: 4. Terminology (2) (3) 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method 5.1.4.2. Issuing a Credential Request to an Authenticator (2) (3) 6. WebAuthn Authenticator Model 6.1. Authenticator Data 6.1.1. Signature Counter Considerations (2) (3) (4) 6.1.2. FIDO U2F Signature Format Compatibility 6.3.4. The authenticatorCancel Operation (2) 9. WebAuthn Extensions 9.2. Defining Extensions 9.5. Authenticator Extension Processing (2) 10.1.1. FIDO AppID Extension (appid) 10.2.2.2. Extension Definition Operation", + "text": "The authenticatorGetAssertion Operation", "url": "https://w3c.github.io/webauthn/#sctn-op-get-assertion" }, "snapshot": { @@ -1839,7 +1945,7 @@ "current": { "number": "6.3.2", "spec": "Web Authentication", - "text": "The authenticatorMakeCredential Info about the 'authenticatorMakeCredential' definition.#authenticatormakecredentialReferenced in: 4. Terminology (2) (3) (4) (5) 5.1.3. Create a New Credential - PublicKeyCredential’s [[Create]](origin, options, sameOriginWithAncestors) Method (2) 5.4.1. Public Key Entity Description (dictionary PublicKeyCredentialEntity) (2) 5.4.3. User Account Parameters for Credential Generation (dictionary PublicKeyCredentialUserEntity) 6. WebAuthn Authenticator Model 6.1.1. Signature Counter Considerations (2) 6.1.3. Credential Backup State 6.3.4. The authenticatorCancel Operation (2) 9. WebAuthn Extensions 9.2. Defining Extensions 9.5. Authenticator Extension Processing (2) 10.1.3. Credential Properties Extension (credProps) 10.2.2.2. Extension Definition Operation", + "text": "The authenticatorMakeCredential Operation", "url": "https://w3c.github.io/webauthn/#sctn-op-make-cred" }, "snapshot": { @@ -1853,8 +1959,14 @@ "current": { "number": "6.3.5", "spec": "Web Authentication", - "text": "The silentCredentialDiscovery Info about the 'silentCredentialDiscovery' definition.#silentcredentialdiscoveryReferenced in: 5.1.4.1. PublicKeyCredential’s [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) Method (2) (3) operation", + "text": "The silentCredentialDiscovery operation", "url": "https://w3c.github.io/webauthn/#sctn-op-silent-discovery" + }, + "snapshot": { + "number": "6.3.5", + "spec": "Web Authentication", + "text": "The silentCredentialDiscovery operation", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-op-silent-discovery" } }, "#sctn-os-account-privacy": { @@ -1919,6 +2031,12 @@ "spec": "Web Authentication", "text": "Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method", "url": "https://w3c.github.io/webauthn/#sctn-parseCreationOptionsFromJSON" + }, + "snapshot": { + "number": "5.1.9", + "spec": "Web Authentication", + "text": "Deserialize Registration ceremony options - PublicKeyCredential’s parseCreationOptionsFromJSON() Method", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-parseCreationOptionsFromJSON" } }, "#sctn-parseRequestOptionsFromJSON": { @@ -1927,6 +2045,12 @@ "spec": "Web Authentication", "text": "Deserialize Authentication ceremony options - PublicKeyCredential’s parseRequestOptionsFromJSON() Methods", "url": "https://w3c.github.io/webauthn/#sctn-parseRequestOptionsFromJSON" + }, + "snapshot": { + "number": "5.1.10", + "spec": "Web Authentication", + "text": "Deserialize Authentication ceremony options - PublicKeyCredential’s parseRequestOptionsFromJSON() Methods", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-parseRequestOptionsFromJSON" } }, "#sctn-permissions-policy": { @@ -1972,12 +2096,6 @@ } }, "#sctn-preventSilentAccessCredential": { - "current": { - "number": "5.1.6", - "spec": "Web Authentication", - "text": "Preventing Silent Access to an Existing Credential - PublicKeyCredential’s [[preventSilentAccess]](credential, sameOriginWithAncestors) Method", - "url": "https://w3c.github.io/webauthn/#sctn-preventSilentAccessCredential" - }, "snapshot": { "number": "5.1.6", "spec": "Web Authentication", @@ -2083,6 +2201,14 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-registering-a-new-credential" } }, + "#sctn-related-origins": { + "current": { + "number": "5.11", + "spec": "Web Authentication", + "text": "Using Web Authentication across related origins", + "url": "https://w3c.github.io/webauthn/#sctn-related-origins" + } + }, "#sctn-revoked-attestation-certificates": { "current": { "number": "13.4.5", @@ -2269,7 +2395,7 @@ "current": { "number": "6.1.1", "spec": "Web Authentication", - "text": "Signature Counter Info about the 'Signature Counter' definition.#signature-counterReferenced in: 4. Terminology 6.1. Authenticator Data 6.1.1. Signature Counter Considerations (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) 6.3.2. The authenticatorMakeCredential Operation (2) (3) (4) (5) (6) 6.3.3. The authenticatorGetAssertion Operation (2) (3) (4) 11.5. Add Credential (2) Considerations", + "text": "Signature Counter Considerations", "url": "https://w3c.github.io/webauthn/#sctn-sign-counter" }, "snapshot": { @@ -2281,13 +2407,13 @@ }, "#sctn-signature-attestation-types": { "current": { - "number": "6.5.6", + "number": "6.5.5", "spec": "Web Authentication", "text": "Signature Formats for Packed Attestation, FIDO U2F Attestation, and Assertion Signatures", "url": "https://w3c.github.io/webauthn/#sctn-signature-attestation-types" }, "snapshot": { - "number": "6.5.5", + "number": "6.5.6", "spec": "Web Authentication", "text": "Signature Formats for Packed Attestation, FIDO U2F Attestation, and Assertion Signatures", "url": "https://www.w3.org/TR/webauthn-3/#sctn-signature-attestation-types" @@ -2363,6 +2489,22 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-strings-truncation" } }, + "#sctn-strings-truncation-authenticator": { + "current": { + "number": "6.4.1.2", + "spec": "Web Authentication", + "text": "String Truncation by Authenticators", + "url": "https://w3c.github.io/webauthn/#sctn-strings-truncation-authenticator" + } + }, + "#sctn-strings-truncation-client": { + "current": { + "number": "6.4.1.1", + "spec": "Web Authentication", + "text": "String Truncation by Clients", + "url": "https://w3c.github.io/webauthn/#sctn-strings-truncation-client" + } + }, "#sctn-supporting-data-structures": { "current": { "number": "5.8", @@ -2391,6 +2533,14 @@ "url": "https://www.w3.org/TR/webauthn-3/#sctn-terminology" } }, + "#sctn-timeout-recommended-range": { + "current": { + "number": "15.1", + "spec": "Web Authentication", + "text": "Recommended Range for Ceremony Timeouts", + "url": "https://w3c.github.io/webauthn/#sctn-timeout-recommended-range" + } + }, "#sctn-tpm-attestation": { "current": { "number": "8.3", @@ -2518,17 +2668,33 @@ } }, "#sctn-uvm-extension": { - "current": { + "snapshot": { "number": "10.2.1", "spec": "Web Authentication", - "text": "User Verification Method Info about the 'User Verification Method' definition.#user-verification-methodReferenced in: 11.1.1. Authenticator Extension Capabilities 11.2. Virtual Authenticators (2) 11.3. Add Virtual Authenticator Extension (uvm)", - "url": "https://w3c.github.io/webauthn/#sctn-uvm-extension" + "text": "User Verification Method Extension (uvm)", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-uvm-extension" + } + }, + "#sctn-validating-origin": { + "current": { + "number": "13.4.9", + "spec": "Web Authentication", + "text": "Validating the origin of a credential", + "url": "https://w3c.github.io/webauthn/#sctn-validating-origin" }, "snapshot": { - "number": "10.3", + "number": "13.4.9", "spec": "Web Authentication", - "text": "User Verification Method Extension (uvm)", - "url": "https://www.w3.org/TR/webauthn-3/#sctn-uvm-extension" + "text": "Validating the origin of a credential", + "url": "https://www.w3.org/TR/webauthn-3/#sctn-validating-origin" + } + }, + "#sctn-validating-relation-origin": { + "current": { + "number": "5.11.1", + "spec": "Web Authentication", + "text": "Validating Related Origins", + "url": "https://w3c.github.io/webauthn/#sctn-validating-relation-origin" } }, "#sctn-verifying-assertion": { @@ -2551,14 +2717,12 @@ "spec": "Web Authentication", "text": "Status of this document", "url": "https://w3c.github.io/webauthn/#sotd" - } - }, - "#status": { + }, "snapshot": { "number": "", "spec": "Web Authentication", "text": "Status of this document", - "url": "https://www.w3.org/TR/webauthn-3/#status" + "url": "https://www.w3.org/TR/webauthn-3/#sotd" } }, "#toc": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-aac-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-aac-codec-registration.json index e7ecf0095b..88f2fa7e1a 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-aac-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-aac-codec-registration.json @@ -293,20 +293,6 @@ "url": "https://www.w3.org/TR/webcodecs-aac-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "AAC WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/aac_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "AAC WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-aac-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-alaw-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-alaw-codec-registration.json index e4b13f7858..8acf23c96d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-alaw-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-alaw-codec-registration.json @@ -223,20 +223,6 @@ "url": "https://www.w3.org/TR/webcodecs-alaw-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "A-law PCM WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/alaw_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "A-law PCM WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-alaw-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-av1-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-av1-codec-registration.json index 06e788d34c..54f8a2e537 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-av1-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-av1-codec-registration.json @@ -13,6 +13,20 @@ "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#abstract" } }, + "#av1-encode-options": { + "current": { + "number": "5.1", + "spec": "AV1 WebCodecs Registration", + "text": "VideoEncoderEncodeOptionsForAv1", + "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#av1-encode-options" + }, + "snapshot": { + "number": "5.1", + "spec": "AV1 WebCodecs Registration", + "text": "VideoEncoderEncodeOptionsForAv1", + "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#av1-encode-options" + } + }, "#encodedvideochunk-data": { "current": { "number": "2", @@ -55,6 +69,20 @@ "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#fully-qualified-codec-strings" } }, + "#idl-index": { + "current": { + "number": "", + "spec": "AV1 WebCodecs Registration", + "text": "IDL Index", + "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#idl-index" + }, + "snapshot": { + "number": "", + "spec": "AV1 WebCodecs Registration", + "text": "IDL Index", + "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#idl-index" + } + }, "#index": { "current": { "number": "", @@ -83,6 +111,20 @@ "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#index-defined-elsewhere" } }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "AV1 WebCodecs Registration", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "AV1 WebCodecs Registration", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#index-defined-here" + } + }, "#informative": { "current": { "number": "", @@ -113,13 +155,13 @@ }, "#privacy-considerations": { "current": { - "number": "5", + "number": "6", "spec": "AV1 WebCodecs Registration", "text": "Privacy Considerations", "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#privacy-considerations" }, "snapshot": { - "number": "5", + "number": "6", "spec": "AV1 WebCodecs Registration", "text": "Privacy Considerations", "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#privacy-considerations" @@ -141,13 +183,13 @@ }, "#security-considerations": { "current": { - "number": "6", + "number": "7", "spec": "AV1 WebCodecs Registration", "text": "Security Considerations", "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#security-considerations" }, "snapshot": { - "number": "6", + "number": "7", "spec": "AV1 WebCodecs Registration", "text": "Security Considerations", "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#security-considerations" @@ -209,32 +251,32 @@ "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#videodecoderconfig-description" } }, - "#w3c-conformance": { + "#videoencoderencodeoptions-extensions": { "current": { - "number": "", + "number": "5", "spec": "AV1 WebCodecs Registration", - "text": "Conformance", - "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#videoencoderencodeoptions-extensions" }, "snapshot": { - "number": "", + "number": "5", "spec": "AV1 WebCodecs Registration", - "text": "Conformance", - "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#videoencoderencodeoptions-extensions" } }, - "#w3c-conformant-algorithms": { + "#w3c-conformance": { "current": { "number": "", "spec": "AV1 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://w3c.github.io/webcodecs/av1_codec_registration.html#w3c-conformance" }, "snapshot": { "number": "", "spec": "AV1 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://www.w3.org/TR/webcodecs-av1-codec-registration/#w3c-conformance" } }, "#w3c-conventions": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-avc-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-avc-codec-registration.json index e30316edbd..7a88c48c9d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-avc-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-avc-codec-registration.json @@ -27,6 +27,20 @@ "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#avc-bitstream-format" } }, + "#avc-encode-options": { + "current": { + "number": "6.1", + "spec": "H.264", + "text": "VideoEncoderEncodeOptionsForAvc", + "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#avc-encode-options" + }, + "snapshot": { + "number": "6.1", + "spec": "H.264", + "text": "VideoEncoderEncodeOptionsForAvc", + "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#avc-encode-options" + } + }, "#avc-encoder-config": { "current": { "number": "5.1", @@ -169,13 +183,13 @@ }, "#privacy-considerations": { "current": { - "number": "6", + "number": "7", "spec": "H.264", "text": "Privacy Considerations", "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#privacy-considerations" }, "snapshot": { - "number": "6", + "number": "7", "spec": "H.264", "text": "Privacy Considerations", "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#privacy-considerations" @@ -197,13 +211,13 @@ }, "#security-considerations": { "current": { - "number": "7", + "number": "8", "spec": "H.264", "text": "Security Considerations", "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#security-considerations" }, "snapshot": { - "number": "7", + "number": "8", "spec": "H.264", "text": "Security Considerations", "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#security-considerations" @@ -279,32 +293,32 @@ "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#videoencoderconfig-extensions" } }, - "#w3c-conformance": { + "#videoencoderencodeoptions-extensions": { "current": { - "number": "", + "number": "6", "spec": "H.264", - "text": "Conformance", - "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#videoencoderencodeoptions-extensions" }, "snapshot": { - "number": "", + "number": "6", "spec": "H.264", - "text": "Conformance", - "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#videoencoderencodeoptions-extensions" } }, - "#w3c-conformant-algorithms": { + "#w3c-conformance": { "current": { "number": "", "spec": "H.264", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://w3c.github.io/webcodecs/avc_codec_registration.html#w3c-conformance" }, "snapshot": { "number": "", "spec": "H.264", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://www.w3.org/TR/webcodecs-avc-codec-registration/#w3c-conformance" } }, "#w3c-conventions": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-flac-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-flac-codec-registration.json index 68105bbb12..9f3c22a95e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-flac-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-flac-codec-registration.json @@ -279,20 +279,6 @@ "url": "https://www.w3.org/TR/webcodecs-flac-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "FLAC WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/flac_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "FLAC WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-flac-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-hevc-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-hevc-codec-registration.json index 5046304d6b..2b2927d8a3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-hevc-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-hevc-codec-registration.json @@ -69,6 +69,20 @@ "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#hevc-bitstream-format" } }, + "#hevc-encode-options": { + "current": { + "number": "6.1", + "spec": "H.265", + "text": "VideoEncoderEncodeOptionsForHevc", + "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#hevc-encode-options" + }, + "snapshot": { + "number": "6.1", + "spec": "H.265", + "text": "VideoEncoderEncodeOptionsForHevc", + "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#hevc-encode-options" + } + }, "#hevc-encoder-config": { "current": { "number": "5.1", @@ -169,13 +183,13 @@ }, "#privacy-considerations": { "current": { - "number": "6", + "number": "7", "spec": "H.265", "text": "Privacy Considerations", "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#privacy-considerations" }, "snapshot": { - "number": "6", + "number": "7", "spec": "H.265", "text": "Privacy Considerations", "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#privacy-considerations" @@ -197,13 +211,13 @@ }, "#security-considerations": { "current": { - "number": "7", + "number": "8", "spec": "H.265", "text": "Security Considerations", "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#security-considerations" }, "snapshot": { - "number": "7", + "number": "8", "spec": "H.265", "text": "Security Considerations", "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#security-considerations" @@ -279,32 +293,32 @@ "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#videoencoderconfig-extensions" } }, - "#w3c-conformance": { + "#videoencoderencodeoptions-extensions": { "current": { - "number": "", + "number": "6", "spec": "H.265", - "text": "Conformance", - "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#videoencoderencodeoptions-extensions" }, "snapshot": { - "number": "", + "number": "6", "spec": "H.265", - "text": "Conformance", - "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#videoencoderencodeoptions-extensions" } }, - "#w3c-conformant-algorithms": { + "#w3c-conformance": { "current": { "number": "", "spec": "H.265", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://w3c.github.io/webcodecs/hevc_codec_registration.html#w3c-conformance" }, "snapshot": { "number": "", "spec": "H.265", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/#w3c-conformance" } }, "#w3c-conventions": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-mp3-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-mp3-codec-registration.json index 60a6f67cff..742b0305a3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-mp3-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-mp3-codec-registration.json @@ -223,20 +223,6 @@ "url": "https://www.w3.org/TR/webcodecs-mp3-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "MP3 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/mp3_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "MP3 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-mp3-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-opus-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-opus-codec-registration.json index 5dafe673b4..fe70ca33ec 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-opus-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-opus-codec-registration.json @@ -167,6 +167,20 @@ "url": "https://www.w3.org/TR/webcodecs-opus-codec-registration/#normative" } }, + "#opus-application": { + "current": { + "number": "5.4", + "spec": "Opus WebCodecs Registration", + "text": "OpusApplication", + "url": "https://w3c.github.io/webcodecs/opus_codec_registration.html#opus-application" + }, + "snapshot": { + "number": "5.4", + "spec": "Opus WebCodecs Registration", + "text": "OpusApplication", + "url": "https://www.w3.org/TR/webcodecs-opus-codec-registration/#opus-application" + } + }, "#opus-bitstream-format": { "current": { "number": "5.2", @@ -195,6 +209,20 @@ "url": "https://www.w3.org/TR/webcodecs-opus-codec-registration/#opus-encoder-config" } }, + "#opus-signal": { + "current": { + "number": "5.3", + "spec": "Opus WebCodecs Registration", + "text": "OpusSignal", + "url": "https://w3c.github.io/webcodecs/opus_codec_registration.html#opus-signal" + }, + "snapshot": { + "number": "5.3", + "spec": "Opus WebCodecs Registration", + "text": "OpusSignal", + "url": "https://www.w3.org/TR/webcodecs-opus-codec-registration/#opus-signal" + } + }, "#privacy-considerations": { "current": { "number": "6", @@ -293,20 +321,6 @@ "url": "https://www.w3.org/TR/webcodecs-opus-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Opus WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/opus_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Opus WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-opus-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-pcm-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-pcm-codec-registration.json index 36f01384e0..b176d03184 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-pcm-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-pcm-codec-registration.json @@ -223,20 +223,6 @@ "url": "https://www.w3.org/TR/webcodecs-pcm-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Linear PCM WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/pcm_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Linear PCM WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-pcm-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-ulaw-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-ulaw-codec-registration.json index 30e0530fa7..76384c09e3 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-ulaw-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-ulaw-codec-registration.json @@ -223,20 +223,6 @@ "url": "https://www.w3.org/TR/webcodecs-ulaw-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "u-law PCM WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/ulaw_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "u-law PCM WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-ulaw-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-video-frame-metadata-registry.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-video-frame-metadata-registry.json new file mode 100644 index 0000000000..bf9c9544fa --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-video-frame-metadata-registry.json @@ -0,0 +1,170 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Abstract", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#abstract" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Abstract", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#abstract" + } + }, + "#index": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Index", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#index" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Index", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#index-defined-elsewhere" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Normative References", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#normative" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Normative References", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#normative" + } + }, + "#privacy-considerations": { + "current": { + "number": "3", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#privacy-considerations" + }, + "snapshot": { + "number": "3", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#privacy-considerations" + } + }, + "#references": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "References", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#references" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "References", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#references" + } + }, + "#registration-entry-requirements": { + "current": { + "number": "1", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Registration Entry Requirements", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#registration-entry-requirements" + }, + "snapshot": { + "number": "1", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Registration Entry Requirements", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#registration-entry-requirements" + } + }, + "#security-considerations": { + "current": { + "number": "4", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Security Considerations", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#security-considerations" + }, + "snapshot": { + "number": "4", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#security-considerations" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Status of this document", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#sotd" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Status of this document", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "WebCodecs VideoFrame Metadata Registry", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#title" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "WebCodecs VideoFrame Metadata Registry", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Table of Contents", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#toc" + }, + "snapshot": { + "number": "", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#toc" + } + }, + "#videoframemetadata-members": { + "current": { + "number": "2", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "VideoFrameMetadata members", + "url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html#videoframemetadata-members" + }, + "snapshot": { + "number": "2", + "spec": "WebCodecs VideoFrame Metadata Registry", + "text": "VideoFrameMetadata members", + "url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/#videoframemetadata-members" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-vorbis-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-vorbis-codec-registration.json index a42db255ca..576a06156b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-vorbis-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-vorbis-codec-registration.json @@ -223,20 +223,6 @@ "url": "https://www.w3.org/TR/webcodecs-vorbis-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Vorbis WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/vorbis_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Vorbis WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-vorbis-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp8-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp8-codec-registration.json index 7d79b25eab..25ab7717b7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp8-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp8-codec-registration.json @@ -223,20 +223,6 @@ "url": "https://www.w3.org/TR/webcodecs-vp8-codec-registration/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "VP8 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/vp8_codec_registration.html#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "VP8 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-vp8-codec-registration/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp9-codec-registration.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp9-codec-registration.json index 36c8505d7a..d7cf0ecebe 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp9-codec-registration.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs-vp9-codec-registration.json @@ -55,6 +55,20 @@ "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#fully-qualified-codec-strings" } }, + "#idl-index": { + "current": { + "number": "", + "spec": "VP9 WebCodecs Registration", + "text": "IDL Index", + "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#idl-index" + }, + "snapshot": { + "number": "", + "spec": "VP9 WebCodecs Registration", + "text": "IDL Index", + "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#idl-index" + } + }, "#index": { "current": { "number": "", @@ -83,6 +97,20 @@ "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#index-defined-elsewhere" } }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "VP9 WebCodecs Registration", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "VP9 WebCodecs Registration", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#index-defined-here" + } + }, "#informative": { "current": { "number": "", @@ -113,13 +141,13 @@ }, "#privacy-considerations": { "current": { - "number": "5", + "number": "6", "spec": "VP9 WebCodecs Registration", "text": "Privacy Considerations", "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#privacy-considerations" }, "snapshot": { - "number": "5", + "number": "6", "spec": "VP9 WebCodecs Registration", "text": "Privacy Considerations", "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#privacy-considerations" @@ -141,13 +169,13 @@ }, "#security-considerations": { "current": { - "number": "6", + "number": "7", "spec": "VP9 WebCodecs Registration", "text": "Security Considerations", "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#security-considerations" }, "snapshot": { - "number": "6", + "number": "7", "spec": "VP9 WebCodecs Registration", "text": "Security Considerations", "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#security-considerations" @@ -209,32 +237,46 @@ "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#videodecoderconfig-description" } }, - "#w3c-conformance": { + "#videoencoderencodeoptions-extensions": { "current": { - "number": "", + "number": "5", "spec": "VP9 WebCodecs Registration", - "text": "Conformance", - "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#videoencoderencodeoptions-extensions" }, "snapshot": { - "number": "", + "number": "5", "spec": "VP9 WebCodecs Registration", - "text": "Conformance", - "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#w3c-conformance" + "text": "VideoEncoderEncodeOptions extensions", + "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#videoencoderencodeoptions-extensions" + } + }, + "#vp9-encode-options": { + "current": { + "number": "5.1", + "spec": "VP9 WebCodecs Registration", + "text": "VideoEncoderEncodeOptionsForVp9", + "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#vp9-encode-options" + }, + "snapshot": { + "number": "5.1", + "spec": "VP9 WebCodecs Registration", + "text": "VideoEncoderEncodeOptionsForVp9", + "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#vp9-encode-options" } }, - "#w3c-conformant-algorithms": { + "#w3c-conformance": { "current": { "number": "", "spec": "VP9 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://w3c.github.io/webcodecs/vp9_codec_registration.html#w3c-conformance" }, "snapshot": { "number": "", "spec": "VP9 WebCodecs Registration", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#w3c-conformant-algorithms" + "text": "Conformance", + "url": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/#w3c-conformance" } }, "#w3c-conventions": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webcodecs.json b/bikeshed/spec-data/readonly/headings/headings-webcodecs.json index 8343512523..777742afce 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webcodecs.json +++ b/bikeshed/spec-data/readonly/headings/headings-webcodecs.json @@ -505,13 +505,13 @@ }, "#codec-state": { "current": { - "number": "7.14", + "number": "7.15", "spec": "WebCodecs", "text": "CodecState", "url": "https://w3c.github.io/webcodecs/#codec-state" }, "snapshot": { - "number": "7.14", + "number": "7.15", "spec": "WebCodecs", "text": "CodecState", "url": "https://www.w3.org/TR/webcodecs/#codec-state" @@ -841,13 +841,13 @@ }, "#error-callback": { "current": { - "number": "7.15", + "number": "7.16", "spec": "WebCodecs", "text": "WebCodecsErrorCallback", "url": "https://w3c.github.io/webcodecs/#error-callback" }, "snapshot": { - "number": "7.15", + "number": "7.16", "spec": "WebCodecs", "text": "WebCodecsErrorCallback", "url": "https://www.w3.org/TR/webcodecs/#error-callback" @@ -1469,6 +1469,20 @@ "url": "https://www.w3.org/TR/webcodecs/#video-decoder-support" } }, + "#video-encoder-bitrate-mode": { + "current": { + "number": "7.14", + "spec": "WebCodecs", + "text": "VideoEncoderBitrateMode", + "url": "https://w3c.github.io/webcodecs/#video-encoder-bitrate-mode" + }, + "snapshot": { + "number": "7.14", + "spec": "WebCodecs", + "text": "VideoEncoderBitrateMode", + "url": "https://www.w3.org/TR/webcodecs/#video-encoder-bitrate-mode" + } + }, "#video-encoder-config": { "current": { "number": "7.8", diff --git a/bikeshed/spec-data/readonly/headings/headings-webdriver-bidi.json b/bikeshed/spec-data/readonly/headings/headings-webdriver-bidi.json index ddb2b6d510..b4dd249403 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webdriver-bidi.json +++ b/bikeshed/spec-data/readonly/headings/headings-webdriver-bidi.json @@ -7,17 +7,65 @@ "url": "https://w3c.github.io/webdriver-bidi/#abstract" } }, - "#command-browsingContext-captureScreenshot": { + "#appendices": { + "current": { + "number": "9", + "spec": "WebDriver BiDi", + "text": "Appendices", + "url": "https://w3c.github.io/webdriver-bidi/#appendices" + } + }, + "#command-browser-close": { "current": { "number": "7.2.3.1", "spec": "WebDriver BiDi", + "text": "The browser.close Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browser-close" + } + }, + "#command-browser-createUserContext": { + "current": { + "number": "7.2.3.2", + "spec": "WebDriver BiDi", + "text": "The browser.createUserContext Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browser-createUserContext" + } + }, + "#command-browser-getUserContexts": { + "current": { + "number": "7.2.3.3", + "spec": "WebDriver BiDi", + "text": "The browser.getUserContexts Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browser-getUserContexts" + } + }, + "#command-browser-removeUserContext": { + "current": { + "number": "7.2.3.4", + "spec": "WebDriver BiDi", + "text": "The browser.removeUserContext Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browser-removeUserContext" + } + }, + "#command-browsingContext-activate": { + "current": { + "number": "7.3.3.1", + "spec": "WebDriver BiDi", + "text": "The browsingContext.activate Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-activate" + } + }, + "#command-browsingContext-captureScreenshot": { + "current": { + "number": "7.3.3.2", + "spec": "WebDriver BiDi", "text": "The browsingContext.captureScreenshot Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-captureScreenshot" } }, "#command-browsingContext-close": { "current": { - "number": "7.2.3.2", + "number": "7.3.3.3", "spec": "WebDriver BiDi", "text": "The browsingContext.close Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-close" @@ -25,7 +73,7 @@ }, "#command-browsingContext-create": { "current": { - "number": "7.2.3.3", + "number": "7.3.3.4", "spec": "WebDriver BiDi", "text": "The browsingContext.create Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-create" @@ -33,7 +81,7 @@ }, "#command-browsingContext-getTree": { "current": { - "number": "7.2.3.4", + "number": "7.3.3.5", "spec": "WebDriver BiDi", "text": "The browsingContext.getTree Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-getTree" @@ -41,15 +89,23 @@ }, "#command-browsingContext-handleUserPrompt": { "current": { - "number": "7.2.3.5", + "number": "7.3.3.6", "spec": "WebDriver BiDi", "text": "The browsingContext.handleUserPrompt Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-handleUserPrompt" } }, + "#command-browsingContext-locateNodes": { + "current": { + "number": "7.3.3.7", + "spec": "WebDriver BiDi", + "text": "The browsingContext.locateNodes Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-locateNodes" + } + }, "#command-browsingContext-navigate": { "current": { - "number": "7.2.3.6", + "number": "7.3.3.8", "spec": "WebDriver BiDi", "text": "The browsingContext.navigate Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-navigate" @@ -57,7 +113,7 @@ }, "#command-browsingContext-print": { "current": { - "number": "7.2.3.7", + "number": "7.3.3.9", "spec": "WebDriver BiDi", "text": "The browsingContext.print Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-print" @@ -65,186 +121,234 @@ }, "#command-browsingContext-reload": { "current": { - "number": "7.2.3.8", + "number": "7.3.3.10", "spec": "WebDriver BiDi", "text": "The browsingContext.reload Command", "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-reload" } }, - "#command-script-addPreloadScript": { + "#command-browsingContext-setViewport": { "current": { - "number": "7.3.4.1", + "number": "7.3.3.11", "spec": "WebDriver BiDi", - "text": "The script.addPreloadScript Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-script-addPreloadScript" + "text": "The browsingContext.setViewport Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-setViewport" } }, - "#command-script-callFunction": { + "#command-browsingContext-traverseHistory": { "current": { - "number": "7.3.4.3", + "number": "7.3.3.12", "spec": "WebDriver BiDi", - "text": "The script.callFunction Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-script-callFunction" + "text": "The browsingContext.traverseHistory Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-browsingContext-traverseHistory" } }, - "#command-script-disown": { + "#command-input-performActions": { "current": { - "number": "7.3.4.2", + "number": "7.8.3.1", "spec": "WebDriver BiDi", - "text": "The script.disown Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-script-disown" + "text": "The input.performActions Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-input-performActions" } }, - "#command-script-evaluate": { + "#command-input-releaseActions": { "current": { - "number": "7.3.4.4", + "number": "7.8.3.2", "spec": "WebDriver BiDi", - "text": "The script.evaluate Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-script-evaluate" + "text": "The input.releaseActions Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-input-releaseActions" } }, - "#command-script-getRealms": { + "#command-input-setFiles": { "current": { - "number": "7.3.4.5", + "number": "7.8.3.3", "spec": "WebDriver BiDi", - "text": "The script.getRealms Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-script-getRealms" + "text": "The input.setFiles Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-input-setFiles" } }, - "#command-script-removePreloadScript": { + "#command-network-addIntercept": { "current": { - "number": "7.3.4.6", + "number": "7.4.4.1", "spec": "WebDriver BiDi", - "text": "The script.removePreloadScript Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-script-removePreloadScript" + "text": "The network.addIntercept Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-addIntercept" } }, - "#command-session-new": { + "#command-network-continueRequest": { "current": { - "number": "7.1.3.2", + "number": "7.4.4.2", "spec": "WebDriver BiDi", - "text": "The session.new Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-session-new" + "text": "The network.continueRequest Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-continueRequest" } }, - "#command-session-status": { + "#command-network-continueResponse": { "current": { - "number": "7.1.3.1", + "number": "7.4.4.3", "spec": "WebDriver BiDi", - "text": "The session.status Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-session-status" + "text": "The network.continueResponse Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-continueResponse" } }, - "#command-session-subscribe": { + "#command-network-continueWithAuth": { "current": { - "number": "7.1.3.3", + "number": "7.4.4.4", "spec": "WebDriver BiDi", - "text": "The session.subscribe Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-session-subscribe" + "text": "The network.continueWithAuth Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-continueWithAuth" } }, - "#command-session-unsubscribe": { + "#command-network-failRequest": { "current": { - "number": "7.1.3.4", + "number": "7.4.4.5", "spec": "WebDriver BiDi", - "text": "The session.unsubscribe Command", - "url": "https://w3c.github.io/webdriver-bidi/#command-session-unsubscribe" + "text": "The network.failRequest Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-failRequest" } }, - "#commands": { + "#command-network-provideResponse": { "current": { - "number": "3.4", + "number": "7.4.4.6", "spec": "WebDriver BiDi", - "text": "Commands", - "url": "https://w3c.github.io/webdriver-bidi/#commands" + "text": "The network.provideResponse Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-provideResponse" } }, - "#data-types": { + "#command-network-removeIntercept": { "current": { - "number": "6", + "number": "7.4.4.7", "spec": "WebDriver BiDi", - "text": "Common Data Types", - "url": "https://w3c.github.io/webdriver-bidi/#data-types" + "text": "The network.removeIntercept Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-removeIntercept" } }, - "#data-types-protocolValue": { + "#command-network-setCacheBehavior": { "current": { - "number": "6.2", + "number": "7.4.4.8", "spec": "WebDriver BiDi", - "text": "Protocol Value", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue" + "text": "The network.setCacheBehavior Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-network-setCacheBehavior" } }, - "#data-types-protocolValue-LocalValue": { + "#command-script-addPreloadScript": { "current": { - "number": "6.2.2", + "number": "7.5.4.1", "spec": "WebDriver BiDi", - "text": "Local Value", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-LocalValue" + "text": "The script.addPreloadScript Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-script-addPreloadScript" } }, - "#data-types-protocolValue-LocalValue-deserialization": { + "#command-script-callFunction": { "current": { - "number": "6.2.2.1", + "number": "7.5.4.3", "spec": "WebDriver BiDi", - "text": "Deserialization", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-LocalValue-deserialization" + "text": "The script.callFunction Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-script-callFunction" } }, - "#data-types-protocolValue-RemoteValue": { + "#command-script-disown": { "current": { - "number": "6.2.3", + "number": "7.5.4.2", "spec": "WebDriver BiDi", - "text": "Remote Value", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-RemoteValue" + "text": "The script.disown Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-script-disown" } }, - "#data-types-protocolValue-RemoteValue-serialization": { + "#command-script-evaluate": { "current": { - "number": "6.2.3.1", + "number": "7.5.4.4", "spec": "WebDriver BiDi", - "text": "Serialization", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-RemoteValue-serialization" + "text": "The script.evaluate Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-script-evaluate" } }, - "#data-types-protocolValue-primitiveProtocolValue": { + "#command-script-getRealms": { "current": { - "number": "6.2.1", + "number": "7.5.4.5", "spec": "WebDriver BiDi", - "text": "Primitive Protocol Value", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-primitiveProtocolValue" + "text": "The script.getRealms Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-script-getRealms" } }, - "#data-types-protocolValue-primitiveProtocolValue-deserialization": { + "#command-script-removePreloadScript": { "current": { - "number": "6.2.1.2", + "number": "7.5.4.6", "spec": "WebDriver BiDi", - "text": "Deserialization", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-primitiveProtocolValue-deserialization" + "text": "The script.removePreloadScript Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-script-removePreloadScript" } }, - "#data-types-protocolValue-primitiveProtocolValue-serialization": { + "#command-session-end": { "current": { - "number": "6.2.1.1", + "number": "7.1.3.3", "spec": "WebDriver BiDi", - "text": "Serialization", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-protocolValue-primitiveProtocolValue-serialization" + "text": "The session.end Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-session-end" } }, - "#data-types-reference": { + "#command-session-new": { "current": { - "number": "6.1", + "number": "7.1.3.2", "spec": "WebDriver BiDi", - "text": "Reference", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-reference" + "text": "The session.new Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-session-new" } }, - "#data-types-reference-deserialization": { + "#command-session-status": { "current": { - "number": "6.1.1", + "number": "7.1.3.1", "spec": "WebDriver BiDi", - "text": "Deserialization", - "url": "https://w3c.github.io/webdriver-bidi/#data-types-reference-deserialization" + "text": "The session.status Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-session-status" + } + }, + "#command-session-subscribe": { + "current": { + "number": "7.1.3.4", + "spec": "WebDriver BiDi", + "text": "The session.subscribe Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-session-subscribe" + } + }, + "#command-session-unsubscribe": { + "current": { + "number": "7.1.3.5", + "spec": "WebDriver BiDi", + "text": "The session.unsubscribe Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-session-unsubscribe" + } + }, + "#command-storage-deleteCookies": { + "current": { + "number": "7.6.3.3", + "spec": "WebDriver BiDi", + "text": "The storage.deleteCookies Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-storage-deleteCookies" + } + }, + "#command-storage-getCookies": { + "current": { + "number": "7.6.3.1", + "spec": "WebDriver BiDi", + "text": "The storage.getCookies Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-storage-getCookies" + } + }, + "#command-storage-setCookie": { + "current": { + "number": "7.6.3.2", + "spec": "WebDriver BiDi", + "text": "The storage.setCookie Command", + "url": "https://w3c.github.io/webdriver-bidi/#command-storage-setCookie" + } + }, + "#commands": { + "current": { + "number": "3.4", + "spec": "WebDriver BiDi", + "text": "Commands", + "url": "https://w3c.github.io/webdriver-bidi/#commands" } }, "#errors": { @@ -265,7 +369,7 @@ }, "#event-browsingContext-contextCreated": { "current": { - "number": "7.2.4.1", + "number": "7.3.4.1", "spec": "WebDriver BiDi", "text": "The browsingContext.contextCreated Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-contextCreated" @@ -273,7 +377,7 @@ }, "#event-browsingContext-contextDestroyed": { "current": { - "number": "7.2.4.2", + "number": "7.3.4.2", "spec": "WebDriver BiDi", "text": "The browsingContext.contextDestroyed Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-contextDestroyed" @@ -281,7 +385,7 @@ }, "#event-browsingContext-domContentLoaded": { "current": { - "number": "7.2.4.5", + "number": "7.3.4.5", "spec": "WebDriver BiDi", "text": "The browsingContext.domContentLoaded Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-domContentLoaded" @@ -289,7 +393,7 @@ }, "#event-browsingContext-downoadWillBegin": { "current": { - "number": "7.2.4.7", + "number": "7.3.4.7", "spec": "WebDriver BiDi", "text": "The browsingContext.downloadWillBegin Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-downoadWillBegin" @@ -297,7 +401,7 @@ }, "#event-browsingContext-fragmentNavigated": { "current": { - "number": "7.2.4.4", + "number": "7.3.4.4", "spec": "WebDriver BiDi", "text": "The browsingContext.fragmentNavigated Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-fragmentNavigated" @@ -305,7 +409,7 @@ }, "#event-browsingContext-load": { "current": { - "number": "7.2.4.6", + "number": "7.3.4.6", "spec": "WebDriver BiDi", "text": "The browsingContext.load Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-load" @@ -313,7 +417,7 @@ }, "#event-browsingContext-navigationAborted": { "current": { - "number": "7.2.4.8", + "number": "7.3.4.8", "spec": "WebDriver BiDi", "text": "The browsingContext.navigationAborted Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-navigationAborted" @@ -321,7 +425,7 @@ }, "#event-browsingContext-navigationFailed": { "current": { - "number": "7.2.4.9", + "number": "7.3.4.9", "spec": "WebDriver BiDi", "text": "The browsingContext.navigationFailed Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-navigationFailed" @@ -329,7 +433,7 @@ }, "#event-browsingContext-navigationStarted": { "current": { - "number": "7.2.4.3", + "number": "7.3.4.3", "spec": "WebDriver BiDi", "text": "The browsingContext.navigationStarted Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-navigationStarted" @@ -337,7 +441,7 @@ }, "#event-browsingContext-userPromptClosed": { "current": { - "number": "7.2.4.10", + "number": "7.3.4.10", "spec": "WebDriver BiDi", "text": "The browsingContext.userPromptClosed Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-userPromptClosed" @@ -345,7 +449,7 @@ }, "#event-browsingContext-userPromptOpened": { "current": { - "number": "7.2.4.11", + "number": "7.3.4.11", "spec": "WebDriver BiDi", "text": "The browsingContext.userPromptOpened Event", "url": "https://w3c.github.io/webdriver-bidi/#event-browsingContext-userPromptOpened" @@ -353,15 +457,63 @@ }, "#event-log-entryAdded": { "current": { - "number": "7.4.3.1", + "number": "7.7.3.1", "spec": "WebDriver BiDi", "text": "The log.entryAdded Event", "url": "https://w3c.github.io/webdriver-bidi/#event-log-entryAdded" } }, + "#event-network-authRequired": { + "current": { + "number": "7.4.5.1", + "spec": "WebDriver BiDi", + "text": "The network.authRequired Event", + "url": "https://w3c.github.io/webdriver-bidi/#event-network-authRequired" + } + }, + "#event-network-beforeSendRequest": { + "current": { + "number": "7.4.5.2", + "spec": "WebDriver BiDi", + "text": "The network.beforeRequestSent Event", + "url": "https://w3c.github.io/webdriver-bidi/#event-network-beforeSendRequest" + } + }, + "#event-network-fetchError": { + "current": { + "number": "7.4.5.3", + "spec": "WebDriver BiDi", + "text": "The network.fetchError Event", + "url": "https://w3c.github.io/webdriver-bidi/#event-network-fetchError" + } + }, + "#event-network-responseCompleted": { + "current": { + "number": "7.4.5.4", + "spec": "WebDriver BiDi", + "text": "The network.responseCompleted Event", + "url": "https://w3c.github.io/webdriver-bidi/#event-network-responseCompleted" + } + }, + "#event-network-responseStarted": { + "current": { + "number": "7.4.5.5", + "spec": "WebDriver BiDi", + "text": "The network.responseStarted Event", + "url": "https://w3c.github.io/webdriver-bidi/#event-network-responseStarted" + } + }, + "#event-script-message": { + "current": { + "number": "7.5.5.1", + "spec": "WebDriver BiDi", + "text": "The script.message Event", + "url": "https://w3c.github.io/webdriver-bidi/#event-script-message" + } + }, "#event-script-realmCreated": { "current": { - "number": "7.3.5.1", + "number": "7.5.5.2", "spec": "WebDriver BiDi", "text": "The script.realmCreated Event", "url": "https://w3c.github.io/webdriver-bidi/#event-script-realmCreated" @@ -369,7 +521,7 @@ }, "#event-script-realmDestroyed": { "current": { - "number": "7.3.5.2", + "number": "7.5.5.3", "spec": "WebDriver BiDi", "text": "The script.realmDestroyed Event", "url": "https://w3c.github.io/webdriver-bidi/#event-script-realmDestroyed" @@ -383,6 +535,14 @@ "url": "https://w3c.github.io/webdriver-bidi/#events" } }, + "#external-specifications": { + "current": { + "number": "9.1", + "spec": "WebDriver BiDi", + "text": "External specifications", + "url": "https://w3c.github.io/webdriver-bidi/#external-specifications" + } + }, "#index": { "current": { "number": "", @@ -439,17 +599,49 @@ "url": "https://w3c.github.io/webdriver-bidi/#issues-index" } }, - "#module-browsingContext": { + "#module-browser": { "current": { "number": "7.2", "spec": "WebDriver BiDi", + "text": "The browser Module", + "url": "https://w3c.github.io/webdriver-bidi/#module-browser" + } + }, + "#module-browser-commands": { + "current": { + "number": "7.2.3", + "spec": "WebDriver BiDi", + "text": "Commands", + "url": "https://w3c.github.io/webdriver-bidi/#module-browser-commands" + } + }, + "#module-browser-definition": { + "current": { + "number": "7.2.1", + "spec": "WebDriver BiDi", + "text": "Definition", + "url": "https://w3c.github.io/webdriver-bidi/#module-browser-definition" + } + }, + "#module-browser-types": { + "current": { + "number": "7.2.2", + "spec": "WebDriver BiDi", + "text": "Types", + "url": "https://w3c.github.io/webdriver-bidi/#module-browser-types" + } + }, + "#module-browsingContext": { + "current": { + "number": "7.3", + "spec": "WebDriver BiDi", "text": "The browsingContext Module", "url": "https://w3c.github.io/webdriver-bidi/#module-browsingContext" } }, "#module-browsingContext-commands": { "current": { - "number": "7.2.3", + "number": "7.3.3", "spec": "WebDriver BiDi", "text": "Commands", "url": "https://w3c.github.io/webdriver-bidi/#module-browsingContext-commands" @@ -457,7 +649,7 @@ }, "#module-browsingContext-definition": { "current": { - "number": "7.2.1", + "number": "7.3.1", "spec": "WebDriver BiDi", "text": "Definition", "url": "https://w3c.github.io/webdriver-bidi/#module-browsingContext-definition" @@ -465,7 +657,7 @@ }, "#module-browsingcontext-types": { "current": { - "number": "7.2.2", + "number": "7.3.2", "spec": "WebDriver BiDi", "text": "Types", "url": "https://w3c.github.io/webdriver-bidi/#module-browsingcontext-types" @@ -473,15 +665,47 @@ }, "#module-contexts-events": { "current": { - "number": "7.2.4", + "number": "7.3.4", "spec": "WebDriver BiDi", "text": "Events", "url": "https://w3c.github.io/webdriver-bidi/#module-contexts-events" } }, + "#module-input": { + "current": { + "number": "7.8", + "spec": "WebDriver BiDi", + "text": "The input Module", + "url": "https://w3c.github.io/webdriver-bidi/#module-input" + } + }, + "#module-input-commands": { + "current": { + "number": "7.8.3", + "spec": "WebDriver BiDi", + "text": "Commands", + "url": "https://w3c.github.io/webdriver-bidi/#module-input-commands" + } + }, + "#module-input-definition": { + "current": { + "number": "7.8.1", + "spec": "WebDriver BiDi", + "text": "Definition", + "url": "https://w3c.github.io/webdriver-bidi/#module-input-definition" + } + }, + "#module-input-types": { + "current": { + "number": "7.8.2", + "spec": "WebDriver BiDi", + "text": "Types", + "url": "https://w3c.github.io/webdriver-bidi/#module-input-types" + } + }, "#module-log": { "current": { - "number": "7.4", + "number": "7.7", "spec": "WebDriver BiDi", "text": "The log Module", "url": "https://w3c.github.io/webdriver-bidi/#module-log" @@ -489,7 +713,7 @@ }, "#module-log-definition": { "current": { - "number": "7.4.1", + "number": "7.7.1", "spec": "WebDriver BiDi", "text": "Definition", "url": "https://w3c.github.io/webdriver-bidi/#module-log-definition" @@ -497,7 +721,7 @@ }, "#module-log-events": { "current": { - "number": "7.4.3", + "number": "7.7.3", "spec": "WebDriver BiDi", "text": "Events", "url": "https://w3c.github.io/webdriver-bidi/#module-log-events" @@ -505,15 +729,55 @@ }, "#module-log-types": { "current": { - "number": "7.4.2", + "number": "7.7.2", "spec": "WebDriver BiDi", "text": "Types", "url": "https://w3c.github.io/webdriver-bidi/#module-log-types" } }, + "#module-network": { + "current": { + "number": "7.4", + "spec": "WebDriver BiDi", + "text": "The network Module", + "url": "https://w3c.github.io/webdriver-bidi/#module-network" + } + }, + "#module-network-commands": { + "current": { + "number": "7.4.4", + "spec": "WebDriver BiDi", + "text": "Commands", + "url": "https://w3c.github.io/webdriver-bidi/#module-network-commands" + } + }, + "#module-network-definition": { + "current": { + "number": "7.4.1", + "spec": "WebDriver BiDi", + "text": "Definition", + "url": "https://w3c.github.io/webdriver-bidi/#module-network-definition" + } + }, + "#module-network-event": { + "current": { + "number": "7.4.5", + "spec": "WebDriver BiDi", + "text": "Events", + "url": "https://w3c.github.io/webdriver-bidi/#module-network-event" + } + }, + "#module-network-types": { + "current": { + "number": "7.4.3", + "spec": "WebDriver BiDi", + "text": "Types", + "url": "https://w3c.github.io/webdriver-bidi/#module-network-types" + } + }, "#module-script": { "current": { - "number": "7.3", + "number": "7.5", "spec": "WebDriver BiDi", "text": "The script Module", "url": "https://w3c.github.io/webdriver-bidi/#module-script" @@ -521,7 +785,7 @@ }, "#module-script-commands": { "current": { - "number": "7.3.4", + "number": "7.5.4", "spec": "WebDriver BiDi", "text": "Commands", "url": "https://w3c.github.io/webdriver-bidi/#module-script-commands" @@ -529,7 +793,7 @@ }, "#module-script-definition": { "current": { - "number": "7.3.1", + "number": "7.5.1", "spec": "WebDriver BiDi", "text": "Definition", "url": "https://w3c.github.io/webdriver-bidi/#module-script-definition" @@ -537,7 +801,7 @@ }, "#module-script-events": { "current": { - "number": "7.3.5", + "number": "7.5.5", "spec": "WebDriver BiDi", "text": "Events", "url": "https://w3c.github.io/webdriver-bidi/#module-script-events" @@ -545,7 +809,7 @@ }, "#module-script-types": { "current": { - "number": "7.3.3", + "number": "7.5.3", "spec": "WebDriver BiDi", "text": "Types", "url": "https://w3c.github.io/webdriver-bidi/#module-script-types" @@ -583,6 +847,38 @@ "url": "https://w3c.github.io/webdriver-bidi/#module-session-types" } }, + "#module-storage": { + "current": { + "number": "7.6", + "spec": "WebDriver BiDi", + "text": "The storage Module", + "url": "https://w3c.github.io/webdriver-bidi/#module-storage" + } + }, + "#module-storage-commands": { + "current": { + "number": "7.6.3", + "spec": "WebDriver BiDi", + "text": "Commands", + "url": "https://w3c.github.io/webdriver-bidi/#module-storage-commands" + } + }, + "#module-storage-definition": { + "current": { + "number": "7.6.1", + "spec": "WebDriver BiDi", + "text": "Definition", + "url": "https://w3c.github.io/webdriver-bidi/#module-storage-definition" + } + }, + "#module-storage-types": { + "current": { + "number": "7.6.2", + "spec": "WebDriver BiDi", + "text": "Types", + "url": "https://w3c.github.io/webdriver-bidi/#module-storage-types" + } + }, "#modules": { "current": { "number": "7", @@ -591,6 +887,14 @@ "url": "https://w3c.github.io/webdriver-bidi/#modules" } }, + "#network-intercepts": { + "current": { + "number": "7.4.2", + "spec": "WebDriver BiDi", + "text": "Network Intercepts", + "url": "https://w3c.github.io/webdriver-bidi/#network-intercepts" + } + }, "#normative": { "current": { "number": "", @@ -623,9 +927,25 @@ "url": "https://w3c.github.io/webdriver-bidi/#patches-html" } }, + "#patchs-css": { + "current": { + "number": "8.3", + "spec": "WebDriver BiDi", + "text": "CSS", + "url": "https://w3c.github.io/webdriver-bidi/#patchs-css" + } + }, + "#patchs-determine-the-device-pixel-ratio": { + "current": { + "number": "8.3.1", + "spec": "WebDriver BiDi", + "text": "Determine the device pixel ratio", + "url": "https://w3c.github.io/webdriver-bidi/#patchs-determine-the-device-pixel-ratio" + } + }, "#preload-scripts": { "current": { - "number": "7.3.2", + "number": "7.5.2", "spec": "WebDriver BiDi", "text": "Preload Scripts", "url": "https://w3c.github.io/webdriver-bidi/#preload-scripts" @@ -735,25 +1055,49 @@ "url": "https://w3c.github.io/webdriver-bidi/#transport" } }, - "#type-browsingContext-Browsingcontext": { + "#type-browser-UserContext": { "current": { "number": "7.2.2.1", "spec": "WebDriver BiDi", + "text": "The browser.UserContext Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-browser-UserContext" + } + }, + "#type-browser-UserContextInfo": { + "current": { + "number": "7.2.2.2", + "spec": "WebDriver BiDi", + "text": "The browser.UserContextInfo Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-browser-UserContextInfo" + } + }, + "#type-browsingContext-Browsingcontext": { + "current": { + "number": "7.3.2.1", + "spec": "WebDriver BiDi", "text": "The browsingContext.BrowsingContext Type", "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-Browsingcontext" } }, "#type-browsingContext-Info": { "current": { - "number": "7.2.2.2", + "number": "7.3.2.2", "spec": "WebDriver BiDi", "text": "The browsingContext.Info Type", "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-Info" } }, + "#type-browsingContext-Locator": { + "current": { + "number": "7.3.2.3", + "spec": "WebDriver BiDi", + "text": "The browsingContext.Locator Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-Locator" + } + }, "#type-browsingContext-Navigation": { "current": { - "number": "7.2.2.3", + "number": "7.3.2.4", "spec": "WebDriver BiDi", "text": "The browsingContext.Navigation Type", "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-Navigation" @@ -761,7 +1105,7 @@ }, "#type-browsingContext-NavigationInfo": { "current": { - "number": "7.2.2.4", + "number": "7.3.2.5", "spec": "WebDriver BiDi", "text": "The browsingContext.NavigationInfo Type", "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-NavigationInfo" @@ -769,81 +1113,321 @@ }, "#type-browsingContext-ReadinessState": { "current": { - "number": "7.2.2.5", + "number": "7.3.2.6", "spec": "WebDriver BiDi", "text": "The browsingContext.ReadinessState Type", "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-ReadinessState" } }, + "#type-browsingContext-UserPromptType": { + "current": { + "number": "7.3.2.7", + "spec": "WebDriver BiDi", + "text": "The browsingContext.UserPromptType Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-browsingContext-UserPromptType" + } + }, + "#type-input-origin": { + "current": { + "number": "7.8.2.1", + "spec": "WebDriver BiDi", + "text": "input.ElementOrigin", + "url": "https://w3c.github.io/webdriver-bidi/#type-input-origin" + } + }, + "#type-network-AuthChallenge": { + "current": { + "number": "7.4.3.1", + "spec": "WebDriver BiDi", + "text": "The network.AuthChallenge Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-AuthChallenge" + } + }, + "#type-network-AuthCredentials": { + "current": { + "number": "7.4.3.2", + "spec": "WebDriver BiDi", + "text": "The network.AuthCredentials Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-AuthCredentials" + } + }, + "#type-network-BaseParameters": { + "current": { + "number": "7.4.3.3", + "spec": "WebDriver BiDi", + "text": "The network.BaseParameters Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-BaseParameters" + } + }, + "#type-network-BytesValue": { + "current": { + "number": "7.4.3.4", + "spec": "WebDriver BiDi", + "text": "The network.BytesValue Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-BytesValue" + } + }, + "#type-network-Cookie": { + "current": { + "number": "7.4.3.5", + "spec": "WebDriver BiDi", + "text": "The network.Cookie Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-Cookie" + } + }, + "#type-network-CookieHeader": { + "current": { + "number": "7.4.3.6", + "spec": "WebDriver BiDi", + "text": "The network.CookieHeader Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-CookieHeader" + } + }, + "#type-network-FetchTimingInfo": { + "current": { + "number": "7.4.3.7", + "spec": "WebDriver BiDi", + "text": "The network.FetchTimingInfo Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-FetchTimingInfo" + } + }, + "#type-network-Header": { + "current": { + "number": "7.4.3.8", + "spec": "WebDriver BiDi", + "text": "The network.Header Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-Header" + } + }, + "#type-network-Initiator": { + "current": { + "number": "7.4.3.9", + "spec": "WebDriver BiDi", + "text": "The network.Initiator Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-Initiator" + } + }, + "#type-network-Intercept": { + "current": { + "number": "7.4.3.10", + "spec": "WebDriver BiDi", + "text": "The network.Intercept Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-Intercept" + } + }, + "#type-network-Request": { + "current": { + "number": "7.4.3.11", + "spec": "WebDriver BiDi", + "text": "The network.Request Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-Request" + } + }, + "#type-network-RequestData": { + "current": { + "number": "7.4.3.12", + "spec": "WebDriver BiDi", + "text": "The network.RequestData Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-RequestData" + } + }, + "#type-network-ResponseContent": { + "current": { + "number": "7.4.3.13", + "spec": "WebDriver BiDi", + "text": "The network.ResponseContent Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-ResponseContent" + } + }, + "#type-network-ResponseData": { + "current": { + "number": "7.4.3.14", + "spec": "WebDriver BiDi", + "text": "The network.ResponseData Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-ResponseData" + } + }, + "#type-network-SetCookieHeader": { + "current": { + "number": "7.4.3.15", + "spec": "WebDriver BiDi", + "text": "The network.SetCookieHeader Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-SetCookieHeader" + } + }, + "#type-network-UrlPattern": { + "current": { + "number": "7.4.3.16", + "spec": "WebDriver BiDi", + "text": "The network.UrlPattern Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-network-UrlPattern" + } + }, + "#type-script-Channel": { + "current": { + "number": "7.5.3.1", + "spec": "WebDriver BiDi", + "text": "The script.Channel Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-Channel" + } + }, + "#type-script-ChannelValue": { + "current": { + "number": "7.5.3.2", + "spec": "WebDriver BiDi", + "text": "The script.ChannelValue Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-ChannelValue" + } + }, "#type-script-EvaluateResult": { "current": { - "number": "7.3.3.8", + "number": "7.5.3.3", "spec": "WebDriver BiDi", - "text": "The script.EvaluateResult type", + "text": "The script.EvaluateResult Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-EvaluateResult" } }, "#type-script-ExceptionDetails": { "current": { - "number": "7.3.3.1", + "number": "7.5.3.4", "spec": "WebDriver BiDi", - "text": "The script.ExceptionDetails type", + "text": "The script.ExceptionDetails Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-ExceptionDetails" } }, + "#type-script-Handle": { + "current": { + "number": "7.5.3.5", + "spec": "WebDriver BiDi", + "text": "The script.Handle Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-Handle" + } + }, + "#type-script-InternalId": { + "current": { + "number": "7.5.3.6", + "spec": "WebDriver BiDi", + "text": "The script.InternalId Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-InternalId" + } + }, + "#type-script-LocalValue": { + "current": { + "number": "7.5.3.7", + "spec": "WebDriver BiDi", + "text": "The script.LocalValue Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-LocalValue" + } + }, "#type-script-PreloadScript": { "current": { - "number": "7.3.3.2", + "number": "7.5.3.8", "spec": "WebDriver BiDi", - "text": "The script.PreloadScript type", + "text": "The script.PreloadScript Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-PreloadScript" } }, + "#type-script-PrimitiveProtocolValue": { + "current": { + "number": "7.5.3.10", + "spec": "WebDriver BiDi", + "text": "The script.PrimitiveProtocolValue Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-PrimitiveProtocolValue" + } + }, "#type-script-Realm": { "current": { - "number": "7.3.3.3", + "number": "7.5.3.9", "spec": "WebDriver BiDi", - "text": "The script.Realm type", + "text": "The script.Realm Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-Realm" } }, "#type-script-RealmInfo": { "current": { - "number": "7.3.3.4", + "number": "7.5.3.11", "spec": "WebDriver BiDi", - "text": "The script.RealmInfo type", + "text": "The script.RealmInfo Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-RealmInfo" } }, "#type-script-RealmType": { "current": { - "number": "7.3.3.5", + "number": "7.5.3.12", "spec": "WebDriver BiDi", - "text": "The script.RealmType type", + "text": "The script.RealmType Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-RealmType" } }, + "#type-script-RemoteReference": { + "current": { + "number": "7.5.3.13", + "spec": "WebDriver BiDi", + "text": "The script.RemoteReference Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-RemoteReference" + } + }, + "#type-script-RemoteValue": { + "current": { + "number": "7.5.3.14", + "spec": "WebDriver BiDi", + "text": "The script.RemoteValue Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-RemoteValue" + } + }, "#type-script-ResultOwnership": { "current": { - "number": "7.3.3.9", + "number": "7.5.3.15", "spec": "WebDriver BiDi", - "text": "The script.ResultOwnership type", + "text": "The script.ResultOwnership Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-ResultOwnership" } }, + "#type-script-SerializationOptions": { + "current": { + "number": "7.5.3.16", + "spec": "WebDriver BiDi", + "text": "The script.SerializationOptions Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-SerializationOptions" + } + }, + "#type-script-SharedId": { + "current": { + "number": "7.5.3.17", + "spec": "WebDriver BiDi", + "text": "The script.SharedId Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-SharedId" + } + }, "#type-script-Source": { "current": { - "number": "7.3.3.10", + "number": "7.5.3.20", "spec": "WebDriver BiDi", - "text": "The script.Source type", + "text": "The script.Source Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-Source" } }, + "#type-script-StackFrame": { + "current": { + "number": "7.5.3.18", + "spec": "WebDriver BiDi", + "text": "The script.StackFrame Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-StackFrame" + } + }, + "#type-script-StackTrace": { + "current": { + "number": "7.5.3.19", + "spec": "WebDriver BiDi", + "text": "The script.StackTrace Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-script-StackTrace" + } + }, "#type-script-Target": { "current": { - "number": "7.3.3.11", + "number": "7.5.3.21", "spec": "WebDriver BiDi", - "text": "The script.Target type", + "text": "The script.Target Type", "url": "https://w3c.github.io/webdriver-bidi/#type-script-Target" } }, @@ -863,36 +1447,60 @@ "url": "https://w3c.github.io/webdriver-bidi/#type-session-CapabilityRequest" } }, - "#type-session-SubscriptionRequest": { + "#type-session-ProxyConfiguration": { "current": { "number": "7.1.2.3", "spec": "WebDriver BiDi", - "text": "The session.SubscriptionRequest type", + "text": "The session.ProxyConfiguration Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-session-ProxyConfiguration" + } + }, + "#type-session-SubscriptionRequest": { + "current": { + "number": "7.1.2.6", + "spec": "WebDriver BiDi", + "text": "The session.SubscriptionRequest Type", "url": "https://w3c.github.io/webdriver-bidi/#type-session-SubscriptionRequest" } }, - "#types-log-logentry": { + "#type-session-UserPromptHandler": { "current": { - "number": "7.4.2.1", + "number": "7.1.2.4", "spec": "WebDriver BiDi", - "text": "log.LogEntry", - "url": "https://w3c.github.io/webdriver-bidi/#types-log-logentry" + "text": "The session.UserPromptHandler Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-session-UserPromptHandler" } }, - "#types-script-StackFrame": { + "#type-session-UserPromptHandlerType": { "current": { - "number": "7.3.3.6", + "number": "7.1.2.5", "spec": "WebDriver BiDi", - "text": "The script.StackFrame type", - "url": "https://w3c.github.io/webdriver-bidi/#types-script-StackFrame" + "text": "The session.UserPromptHandlerType Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-session-UserPromptHandlerType" } }, - "#types-script-StackTrace": { + "#type-storage-PartitionKey": { "current": { - "number": "7.3.3.7", + "number": "7.6.2.1", + "spec": "WebDriver BiDi", + "text": "The storage.PartitionKey Type", + "url": "https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey" + } + }, + "#types-log-logentry": { + "current": { + "number": "7.7.2.1", + "spec": "WebDriver BiDi", + "text": "log.LogEntry", + "url": "https://w3c.github.io/webdriver-bidi/#types-log-logentry" + } + }, + "#user-contexts": { + "current": { + "number": "6", "spec": "WebDriver BiDi", - "text": "The script.StackTrace type", - "url": "https://w3c.github.io/webdriver-bidi/#types-script-StackTrace" + "text": "User Contexts", + "url": "https://w3c.github.io/webdriver-bidi/#user-contexts" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webdriver2.json b/bikeshed/spec-data/readonly/headings/headings-webdriver2.json index d2d46a7e4c..66da6050ad 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webdriver2.json +++ b/bikeshed/spec-data/readonly/headings/headings-webdriver2.json @@ -1,13 +1,13 @@ { "#accept-alert": { "current": { - "number": "16.2", + "number": "16.3", "spec": "WebDriver", "text": "Accept Alert", "url": "https://w3c.github.io/webdriver/#accept-alert" }, "snapshot": { - "number": "16.2", + "number": "16.3", "spec": "WebDriver", "text": "Accept Alert", "url": "https://www.w3.org/TR/webdriver2/#accept-alert" @@ -239,13 +239,13 @@ }, "#delete-session": { "current": { - "number": "8.2", + "number": "8.3", "spec": "WebDriver", "text": "Delete Session", "url": "https://w3c.github.io/webdriver/#delete-session" }, "snapshot": { - "number": "8.2", + "number": "8.3", "spec": "WebDriver", "text": "Delete Session", "url": "https://www.w3.org/TR/webdriver2/#delete-session" @@ -267,13 +267,13 @@ }, "#dismiss-alert": { "current": { - "number": "16.1", + "number": "16.2", "spec": "WebDriver", "text": "Dismiss Alert", "url": "https://w3c.github.io/webdriver/#dismiss-alert" }, "snapshot": { - "number": "16.1", + "number": "16.2", "spec": "WebDriver", "text": "Dismiss Alert", "url": "https://www.w3.org/TR/webdriver2/#dismiss-alert" @@ -617,13 +617,13 @@ }, "#get-alert-text": { "current": { - "number": "16.3", + "number": "16.4", "spec": "WebDriver", "text": "Get Alert Text", "url": "https://w3c.github.io/webdriver/#get-alert-text" }, "snapshot": { - "number": "16.3", + "number": "16.4", "spec": "WebDriver", "text": "Get Alert Text", "url": "https://www.w3.org/TR/webdriver2/#get-alert-text" @@ -881,6 +881,20 @@ "url": "https://www.w3.org/TR/webdriver2/#get-window-rect" } }, + "#global-state": { + "current": { + "number": "8.1", + "spec": "WebDriver", + "text": "Global State", + "url": "https://w3c.github.io/webdriver/#global-state" + }, + "snapshot": { + "number": "8.1", + "spec": "WebDriver", + "text": "Global State", + "url": "https://www.w3.org/TR/webdriver2/#global-state" + } + }, "#index": { "current": { "number": "E", @@ -1135,13 +1149,13 @@ }, "#new-session-0": { "current": { - "number": "8.1", + "number": "8.2", "spec": "WebDriver", "text": "New Session", "url": "https://w3c.github.io/webdriver/#new-session-0" }, "snapshot": { - "number": "8.1", + "number": "8.2", "spec": "WebDriver", "text": "New Session", "url": "https://www.w3.org/TR/webdriver2/#new-session-0" @@ -1485,13 +1499,13 @@ }, "#send-alert-text": { "current": { - "number": "16.4", + "number": "16.5", "spec": "WebDriver", "text": "Send Alert Text", "url": "https://w3c.github.io/webdriver/#send-alert-text" }, "snapshot": { - "number": "16.4", + "number": "16.5", "spec": "WebDriver", "text": "Send Alert Text", "url": "https://www.w3.org/TR/webdriver2/#send-alert-text" @@ -1583,13 +1597,13 @@ }, "#status": { "current": { - "number": "8.3", + "number": "8.4", "spec": "WebDriver", "text": "Status", "url": "https://w3c.github.io/webdriver/#status" }, "snapshot": { - "number": "8.3", + "number": "8.4", "spec": "WebDriver", "text": "Status", "url": "https://www.w3.org/TR/webdriver2/#status" @@ -1749,6 +1763,20 @@ "url": "https://www.w3.org/TR/webdriver2/#toc" } }, + "#user-prompt-handler": { + "current": { + "number": "16.1", + "spec": "WebDriver", + "text": "User Prompt Handler", + "url": "https://w3c.github.io/webdriver/#user-prompt-handler" + }, + "snapshot": { + "number": "16.1", + "spec": "WebDriver", + "text": "User Prompt Handler", + "url": "https://www.w3.org/TR/webdriver2/#user-prompt-handler" + } + }, "#user-prompts": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webgl1.json b/bikeshed/spec-data/readonly/headings/headings-webgl1.json index 8acac5c220..b417021427 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webgl1.json +++ b/bikeshed/spec-data/readonly/headings/headings-webgl1.json @@ -1,9 +1,9 @@ { "#1": { "current": { - "number": "", + "number": "1", "spec": "WebGL", - "text": "1 Introduction", + "text": "Introduction", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#1" } }, @@ -17,9 +17,9 @@ }, "#2": { "current": { - "number": "", + "number": "2", "spec": "WebGL", - "text": "2 Context Creation and Drawing Buffer Presentation", + "text": "Context Creation and Drawing Buffer Presentation", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#2" } }, @@ -57,17 +57,17 @@ }, "#3": { "current": { - "number": "", + "number": "3", "spec": "WebGL", - "text": "3 WebGL Resources", + "text": "WebGL Resources", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#3" } }, "#4": { "current": { - "number": "", + "number": "4", "spec": "WebGL", - "text": "4 Security", + "text": "Security", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#4" } }, @@ -113,9 +113,9 @@ }, "#5": { "current": { - "number": "", + "number": "5", "spec": "WebGL", - "text": "5 DOM Interfaces", + "text": "DOM Interfaces", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#5" } }, @@ -409,9 +409,9 @@ }, "#6": { "current": { - "number": "", + "number": "6", "spec": "WebGL", - "text": "6 Differences Between WebGL and OpenGL ES 2.0", + "text": "Differences Between WebGL and OpenGL ES 2.0", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#6" } }, @@ -761,17 +761,17 @@ }, "#7": { "current": { - "number": "", + "number": "7", "spec": "WebGL", - "text": "7 References", + "text": "References", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#7" } }, "#8": { "current": { - "number": "", + "number": "8", "spec": "WebGL", - "text": "8 Acknowledgments", + "text": "Acknowledgments", "url": "https://registry.khronos.org/webgl/specs/latest/1.0/#8" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-webgl2.json b/bikeshed/spec-data/readonly/headings/headings-webgl2.json index 4cfd42817d..7ee9fcd654 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webgl2.json +++ b/bikeshed/spec-data/readonly/headings/headings-webgl2.json @@ -1,9 +1,9 @@ { "#1": { "current": { - "number": "", + "number": "1", "spec": "WebGL 2.0", - "text": "1 Introduction", + "text": "Introduction", "url": "https://registry.khronos.org/webgl/specs/latest/2.0/#1" } }, @@ -17,9 +17,9 @@ }, "#2": { "current": { - "number": "", + "number": "2", "spec": "WebGL 2.0", - "text": "2 Context Creation and Drawing Buffer Presentation", + "text": "Context Creation and Drawing Buffer Presentation", "url": "https://registry.khronos.org/webgl/specs/latest/2.0/#2" } }, @@ -41,9 +41,9 @@ }, "#3": { "current": { - "number": "", + "number": "3", "spec": "WebGL 2.0", - "text": "3 DOM Interfaces", + "text": "DOM Interfaces", "url": "https://registry.khronos.org/webgl/specs/latest/2.0/#3" } }, @@ -241,9 +241,9 @@ }, "#4": { "current": { - "number": "", + "number": "4", "spec": "WebGL 2.0", - "text": "4 Other differences Between WebGL 2.0 and WebGL 1.0", + "text": "Other differences Between WebGL 2.0 and WebGL 1.0", "url": "https://registry.khronos.org/webgl/specs/latest/2.0/#4" } }, @@ -369,9 +369,9 @@ }, "#5": { "current": { - "number": "", + "number": "5", "spec": "WebGL 2.0", - "text": "5 Differences Between WebGL and OpenGL ES 3.0", + "text": "Differences Between WebGL and OpenGL ES 3.0", "url": "https://registry.khronos.org/webgl/specs/latest/2.0/#5" } }, @@ -745,9 +745,9 @@ }, "#6": { "current": { - "number": "", + "number": "6", "spec": "WebGL 2.0", - "text": "6 References", + "text": "References", "url": "https://registry.khronos.org/webgl/specs/latest/2.0/#6" } } diff --git a/bikeshed/spec-data/readonly/headings/headings-webgpu.json b/bikeshed/spec-data/readonly/headings/headings-webgpu.json index 521a1d3aa9..414ded1c8b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webgpu.json +++ b/bikeshed/spec-data/readonly/headings/headings-webgpu.json @@ -1,18 +1,4 @@ { - "#-automatic-expiry-task-source": { - "current": { - "number": "3.9.2", - "spec": "WebGPU", - "text": "Automatic Expiry Task Source", - "url": "https://gpuweb.github.io/gpuweb/#-automatic-expiry-task-source" - }, - "snapshot": { - "number": "3.9.2", - "spec": "WebGPU", - "text": "Automatic Expiry Task Source", - "url": "https://www.w3.org/TR/webgpu/#-automatic-expiry-task-source" - } - }, "#-webgpu-task-source": { "current": { "number": "3.9.1", @@ -27,29 +13,15 @@ "url": "https://www.w3.org/TR/webgpu/#-webgpu-task-source" } }, - "#GPUBufferDescriptor": { - "current": { - "number": "5.2.1", - "spec": "WebGPU", - "text": "GPUBufferDescriptor", - "url": "https://gpuweb.github.io/gpuweb/#GPUBufferDescriptor" - }, - "snapshot": { - "number": "5.2.1", - "spec": "WebGPU", - "text": "GPUBufferDescriptor", - "url": "https://www.w3.org/TR/webgpu/#GPUBufferDescriptor" - } - }, "#GPUSamplerDescriptor": { "current": { - "number": "7.2.1", + "number": "7.1.1", "spec": "WebGPU", "text": "GPUSamplerDescriptor", "url": "https://gpuweb.github.io/gpuweb/#GPUSamplerDescriptor" }, "snapshot": { - "number": "7.2.1", + "number": "7.1.1", "spec": "WebGPU", "text": "GPUSamplerDescriptor", "url": "https://www.w3.org/TR/webgpu/#GPUSamplerDescriptor" @@ -69,15 +41,29 @@ "url": "https://www.w3.org/TR/webgpu/#abstract" } }, - "#adapter-selection": { + "#adapter-capability-guarantees": { "current": { "number": "4.2.1", "spec": "WebGPU", + "text": "Adapter Capability Guarantees", + "url": "https://gpuweb.github.io/gpuweb/#adapter-capability-guarantees" + }, + "snapshot": { + "number": "4.2.1", + "spec": "WebGPU", + "text": "Adapter Capability Guarantees", + "url": "https://www.w3.org/TR/webgpu/#adapter-capability-guarantees" + } + }, + "#adapter-selection": { + "current": { + "number": "4.2.2", + "spec": "WebGPU", "text": "Adapter Selection", "url": "https://gpuweb.github.io/gpuweb/#adapter-selection" }, "snapshot": { - "number": "4.2.1", + "number": "4.2.2", "spec": "WebGPU", "text": "Adapter Selection", "url": "https://www.w3.org/TR/webgpu/#adapter-selection" @@ -99,13 +85,13 @@ }, "#alpha-to-coverage": { "current": { - "number": "23.3.9", + "number": "23.2.9", "spec": "WebGPU", "text": "Alpha to Coverage", "url": "https://gpuweb.github.io/gpuweb/#alpha-to-coverage" }, "snapshot": { - "number": "23.3.9", + "number": "23.2.9", "spec": "WebGPU", "text": "Alpha to Coverage", "url": "https://www.w3.org/TR/webgpu/#alpha-to-coverage" @@ -153,15 +139,29 @@ "url": "https://www.w3.org/TR/webgpu/#asynchrony" } }, + "#automatic-expiry-task-source": { + "current": { + "number": "3.9.2", + "spec": "WebGPU", + "text": "Automatic Expiry Task Source", + "url": "https://gpuweb.github.io/gpuweb/#automatic-expiry-task-source" + }, + "snapshot": { + "number": "3.9.2", + "spec": "WebGPU", + "text": "Automatic Expiry Task Source", + "url": "https://www.w3.org/TR/webgpu/#automatic-expiry-task-source" + } + }, "#barycentric-coordinates": { "current": { - "number": "23.3.5.3", + "number": "23.2.5.3", "spec": "WebGPU", "text": "Barycentric coordinates", "url": "https://gpuweb.github.io/gpuweb/#barycentric-coordinates" }, "snapshot": { - "number": "23.3.5.3", + "number": "23.2.5.3", "spec": "WebGPU", "text": "Barycentric coordinates", "url": "https://www.w3.org/TR/webgpu/#barycentric-coordinates" @@ -169,15 +169,15 @@ }, "#bgra8unorm-storage": { "current": { - "number": "25.10", + "number": "25.11", "spec": "WebGPU", "text": "\"bgra8unorm-storage\"", "url": "https://gpuweb.github.io/gpuweb/#bgra8unorm-storage" }, "snapshot": { - "number": "25.10", + "number": "25.11", "spec": "WebGPU", - "text": "\"bgra8unorm-storage\" Info about the '\"bgra8unorm-storage\"' definition.#dom-gpufeaturename-bgra8unorm-storageReferenced in: 4.3.1.1. GPUFeatureName 26.1.1. Plain color formats", + "text": "\"bgra8unorm-storage\"", "url": "https://www.w3.org/TR/webgpu/#bgra8unorm-storage" } }, @@ -281,13 +281,13 @@ }, "#buffer-creation": { "current": { - "number": "5.2", + "number": "5.1.3", "spec": "WebGPU", "text": "Buffer Creation", "url": "https://gpuweb.github.io/gpuweb/#buffer-creation" }, "snapshot": { - "number": "5.2", + "number": "5.1.3", "spec": "WebGPU", "text": "Buffer Creation", "url": "https://www.w3.org/TR/webgpu/#buffer-creation" @@ -295,13 +295,13 @@ }, "#buffer-destruction": { "current": { - "number": "5.3", + "number": "5.1.4", "spec": "WebGPU", "text": "Buffer Destruction", "url": "https://gpuweb.github.io/gpuweb/#buffer-destruction" }, "snapshot": { - "number": "5.3", + "number": "5.1.4", "spec": "WebGPU", "text": "Buffer Destruction", "url": "https://www.w3.org/TR/webgpu/#buffer-destruction" @@ -309,13 +309,13 @@ }, "#buffer-mapping": { "current": { - "number": "5.4", + "number": "5.2", "spec": "WebGPU", "text": "Buffer Mapping", "url": "https://gpuweb.github.io/gpuweb/#buffer-mapping" }, "snapshot": { - "number": "5.4", + "number": "5.2", "spec": "WebGPU", "text": "Buffer Mapping", "url": "https://www.w3.org/TR/webgpu/#buffer-mapping" @@ -323,15 +323,15 @@ }, "#buffer-usage": { "current": { - "number": "5.2.2", + "number": "5.1.2", "spec": "WebGPU", - "text": "Buffer Usage", + "text": "Buffer Usages", "url": "https://gpuweb.github.io/gpuweb/#buffer-usage" }, "snapshot": { - "number": "5.2.2", + "number": "5.1.2", "spec": "WebGPU", - "text": "Buffer Usage", + "text": "Buffer Usages", "url": "https://www.w3.org/TR/webgpu/#buffer-usage" } }, @@ -365,13 +365,13 @@ }, "#canvas-color-space": { "current": { - "number": "21.3.1", + "number": "21.4.1", "spec": "WebGPU", "text": "Canvas Color Space", "url": "https://gpuweb.github.io/gpuweb/#canvas-color-space" }, "snapshot": { - "number": "21.3.1", + "number": "21.4.1", "spec": "WebGPU", "text": "Canvas Color Space", "url": "https://www.w3.org/TR/webgpu/#canvas-color-space" @@ -379,13 +379,13 @@ }, "#canvas-configuration": { "current": { - "number": "21.3", + "number": "21.4", "spec": "WebGPU", "text": "GPUCanvasConfiguration", "url": "https://gpuweb.github.io/gpuweb/#canvas-configuration" }, "snapshot": { - "number": "21.3", + "number": "21.4", "spec": "WebGPU", "text": "GPUCanvasConfiguration", "url": "https://www.w3.org/TR/webgpu/#canvas-configuration" @@ -419,6 +419,20 @@ "url": "https://www.w3.org/TR/webgpu/#canvas-getcontext" } }, + "#canvas-hooks": { + "current": { + "number": "21.3", + "spec": "WebGPU", + "text": "HTML Specification Hooks", + "url": "https://gpuweb.github.io/gpuweb/#canvas-hooks" + }, + "snapshot": { + "number": "21.3", + "spec": "WebGPU", + "text": "HTML Specification Hooks", + "url": "https://www.w3.org/TR/webgpu/#canvas-hooks" + } + }, "#canvas-rendering": { "current": { "number": "", @@ -715,13 +729,13 @@ }, "#computing-operations": { "current": { - "number": "23.2", + "number": "23.1", "spec": "WebGPU", "text": "Computing", "url": "https://gpuweb.github.io/gpuweb/#computing-operations" }, "snapshot": { - "number": "23.2", + "number": "23.1", "spec": "WebGPU", "text": "Computing", "url": "https://www.w3.org/TR/webgpu/#computing-operations" @@ -729,13 +743,13 @@ }, "#context-sizing": { "current": { - "number": "21.3.2", + "number": "21.4.2", "spec": "WebGPU", "text": "Canvas Context sizing", "url": "https://gpuweb.github.io/gpuweb/#context-sizing" }, "snapshot": { - "number": "21.3.2", + "number": "21.4.2", "spec": "WebGPU", "text": "Canvas Context sizing", "url": "https://www.w3.org/TR/webgpu/#context-sizing" @@ -937,6 +951,34 @@ "url": "https://www.w3.org/TR/webgpu/#devices" } }, + "#dom-gpufeaturename-clip-distances": { + "current": { + "number": "25.13", + "spec": "WebGPU", + "text": "\"clip-distances\"", + "url": "https://gpuweb.github.io/gpuweb/#dom-gpufeaturename-clip-distances" + }, + "snapshot": { + "number": "25.13", + "spec": "WebGPU", + "text": "\"clip-distances\"", + "url": "https://www.w3.org/TR/webgpu/#dom-gpufeaturename-clip-distances" + } + }, + "#dom-gpufeaturename-dual-source-blending": { + "current": { + "number": "25.14", + "spec": "WebGPU", + "text": "\"dual-source-blending\"", + "url": "https://gpuweb.github.io/gpuweb/#dom-gpufeaturename-dual-source-blending" + }, + "snapshot": { + "number": "25.14", + "spec": "WebGPU", + "text": "\"dual-source-blending\"", + "url": "https://www.w3.org/TR/webgpu/#dom-gpufeaturename-dual-source-blending" + } + }, "#error-scopes": { "current": { "number": "22.3", @@ -1049,15 +1091,29 @@ "url": "https://www.w3.org/TR/webgpu/#features" } }, + "#float32-filterable": { + "current": { + "number": "25.12", + "spec": "WebGPU", + "text": "\"float32-filterable\"", + "url": "https://gpuweb.github.io/gpuweb/#float32-filterable" + }, + "snapshot": { + "number": "25.12", + "spec": "WebGPU", + "text": "\"float32-filterable\"", + "url": "https://www.w3.org/TR/webgpu/#float32-filterable" + } + }, "#fragment-processing": { "current": { - "number": "23.3.6", + "number": "23.2.6", "spec": "WebGPU", "text": "Fragment Processing", "url": "https://gpuweb.github.io/gpuweb/#fragment-processing" }, "snapshot": { - "number": "23.3.6", + "number": "23.2.6", "spec": "WebGPU", "text": "Fragment Processing", "url": "https://www.w3.org/TR/webgpu/#fragment-processing" @@ -1121,13 +1177,13 @@ }, "#gpuadapterinfo": { "current": { - "number": "3.6.2.3", + "number": "3.6.2.4", "spec": "WebGPU", "text": "GPUAdapterInfo", "url": "https://gpuweb.github.io/gpuweb/#gpuadapterinfo" }, "snapshot": { - "number": "3.6.2.3", + "number": "3.6.2.4", "spec": "WebGPU", "text": "GPUAdapterInfo", "url": "https://www.w3.org/TR/webgpu/#gpuadapterinfo" @@ -1175,20 +1231,48 @@ "url": "https://www.w3.org/TR/webgpu/#gpubuffer" } }, + "#gpubufferdescriptor": { + "current": { + "number": "5.1.1", + "spec": "WebGPU", + "text": "GPUBufferDescriptor", + "url": "https://gpuweb.github.io/gpuweb/#gpubufferdescriptor" + }, + "snapshot": { + "number": "5.1.1", + "spec": "WebGPU", + "text": "GPUBufferDescriptor", + "url": "https://www.w3.org/TR/webgpu/#gpubufferdescriptor" + } + }, "#gpucanvasalphamode": { "current": { - "number": "21.4", + "number": "21.6", "spec": "WebGPU", "text": "GPUCanvasAlphaMode", "url": "https://gpuweb.github.io/gpuweb/#gpucanvasalphamode" }, "snapshot": { - "number": "21.4", + "number": "21.6", "spec": "WebGPU", "text": "GPUCanvasAlphaMode", "url": "https://www.w3.org/TR/webgpu/#gpucanvasalphamode" } }, + "#gpucanvastonemappingmode": { + "current": { + "number": "21.5", + "spec": "WebGPU", + "text": "GPUCanvasToneMappingMode", + "url": "https://gpuweb.github.io/gpuweb/#gpucanvastonemappingmode" + }, + "snapshot": { + "number": "21.5", + "spec": "WebGPU", + "text": "GPUCanvasToneMappingMode", + "url": "https://www.w3.org/TR/webgpu/#gpucanvastonemappingmode" + } + }, "#gpucommandbuffer": { "current": { "number": "12.1", @@ -1595,6 +1679,20 @@ "url": "https://www.w3.org/TR/webgpu/#gputexture" } }, + "#gputexturedescriptor": { + "current": { + "number": "6.1.1", + "spec": "WebGPU", + "text": "GPUTextureDescriptor", + "url": "https://gpuweb.github.io/gpuweb/#gputexturedescriptor" + }, + "snapshot": { + "number": "6.1.1", + "spec": "WebGPU", + "text": "GPUTextureDescriptor", + "url": "https://www.w3.org/TR/webgpu/#gputexturedescriptor" + } + }, "#gputextureview": { "current": { "number": "6.2", @@ -1609,6 +1707,20 @@ "url": "https://www.w3.org/TR/webgpu/#gputextureview" } }, + "#gpuwgsllanguagefeatures": { + "current": { + "number": "3.6.2.3", + "spec": "WebGPU", + "text": "WGSLLanguageFeatures", + "url": "https://gpuweb.github.io/gpuweb/#gpuwgsllanguagefeatures" + }, + "snapshot": { + "number": "3.6.2.3", + "spec": "WebGPU", + "text": "WGSLLanguageFeatures", + "url": "https://www.w3.org/TR/webgpu/#gpuwgsllanguagefeatures" + } + }, "#idl-index": { "current": { "number": "", @@ -1695,13 +1807,13 @@ }, "#index-resolution": { "current": { - "number": "23.3.1", + "number": "23.2.1", "spec": "WebGPU", "text": "Index Resolution", "url": "https://gpuweb.github.io/gpuweb/#index-resolution" }, "snapshot": { - "number": "23.3.1", + "number": "23.2.1", "spec": "WebGPU", "text": "Index Resolution", "url": "https://www.w3.org/TR/webgpu/#index-resolution" @@ -1709,13 +1821,13 @@ }, "#indirect-first-instance": { "current": { - "number": "25.7", + "number": "25.8", "spec": "WebGPU", "text": "\"indirect-first-instance\"", "url": "https://gpuweb.github.io/gpuweb/#indirect-first-instance" }, "snapshot": { - "number": "25.7", + "number": "25.8", "spec": "WebGPU", "text": "\"indirect-first-instance\"", "url": "https://www.w3.org/TR/webgpu/#indirect-first-instance" @@ -1821,13 +1933,13 @@ }, "#line-rasterization": { "current": { - "number": "23.3.5.2", + "number": "23.2.5.2", "spec": "WebGPU", "text": "Line Rasterization", "url": "https://gpuweb.github.io/gpuweb/#line-rasterization" }, "snapshot": { - "number": "23.3.5.2", + "number": "23.2.5.2", "spec": "WebGPU", "text": "Line Rasterization", "url": "https://www.w3.org/TR/webgpu/#line-rasterization" @@ -1891,13 +2003,13 @@ }, "#no-color-output": { "current": { - "number": "23.3.8", + "number": "23.2.8", "spec": "WebGPU", "text": "No Color Output", "url": "https://gpuweb.github.io/gpuweb/#no-color-output" }, "snapshot": { - "number": "23.3.8", + "number": "23.2.8", "spec": "WebGPU", "text": "No Color Output", "url": "https://www.w3.org/TR/webgpu/#no-color-output" @@ -1919,13 +2031,13 @@ }, "#object-descriptors": { "current": { - "number": "3.1.4", + "number": "3.1.3", "spec": "WebGPU", "text": "Object Descriptors", "url": "https://gpuweb.github.io/gpuweb/#object-descriptors" }, "snapshot": { - "number": "3.1.4", + "number": "3.1.3", "spec": "WebGPU", "text": "Object Descriptors", "url": "https://www.w3.org/TR/webgpu/#object-descriptors" @@ -1975,13 +2087,13 @@ }, "#output-merging": { "current": { - "number": "23.3.7", + "number": "23.2.7", "spec": "WebGPU", "text": "Output Merging", "url": "https://gpuweb.github.io/gpuweb/#output-merging" }, "snapshot": { - "number": "23.3.7", + "number": "23.2.7", "spec": "WebGPU", "text": "Output Merging", "url": "https://www.w3.org/TR/webgpu/#output-merging" @@ -2059,13 +2171,13 @@ }, "#point-rasterization": { "current": { - "number": "23.3.5.1", + "number": "23.2.5.1", "spec": "WebGPU", "text": "Point Rasterization", "url": "https://gpuweb.github.io/gpuweb/#point-rasterization" }, "snapshot": { - "number": "23.3.5.1", + "number": "23.2.5.1", "spec": "WebGPU", "text": "Point Rasterization", "url": "https://www.w3.org/TR/webgpu/#point-rasterization" @@ -2073,13 +2185,13 @@ }, "#polygon-rasterization": { "current": { - "number": "23.3.5.4", + "number": "23.2.5.4", "spec": "WebGPU", "text": "Polygon Rasterization", "url": "https://gpuweb.github.io/gpuweb/#polygon-rasterization" }, "snapshot": { - "number": "23.3.5.4", + "number": "23.2.5.4", "spec": "WebGPU", "text": "Polygon Rasterization", "url": "https://www.w3.org/TR/webgpu/#polygon-rasterization" @@ -2087,13 +2199,13 @@ }, "#primitive-assembly": { "current": { - "number": "23.3.3", + "number": "23.2.3", "spec": "WebGPU", "text": "Primitive Assembly", "url": "https://gpuweb.github.io/gpuweb/#primitive-assembly" }, "snapshot": { - "number": "23.3.3", + "number": "23.2.3", "spec": "WebGPU", "text": "Primitive Assembly", "url": "https://www.w3.org/TR/webgpu/#primitive-assembly" @@ -2101,13 +2213,13 @@ }, "#primitive-clipping": { "current": { - "number": "23.3.4", + "number": "23.2.4", "spec": "WebGPU", "text": "Primitive Clipping", "url": "https://gpuweb.github.io/gpuweb/#primitive-clipping" }, "snapshot": { - "number": "23.3.4", + "number": "23.2.4", "spec": "WebGPU", "text": "Primitive Clipping", "url": "https://www.w3.org/TR/webgpu/#primitive-clipping" @@ -2369,13 +2481,13 @@ "current": { "number": "20.1.2", "spec": "WebGPU", - "text": "QuerySet Destruction", + "text": "Query Set Destruction", "url": "https://gpuweb.github.io/gpuweb/#queryset-destruction" }, "snapshot": { "number": "20.1.2", "spec": "WebGPU", - "text": "QuerySet Destruction", + "text": "Query Set Destruction", "url": "https://www.w3.org/TR/webgpu/#queryset-destruction" } }, @@ -2409,13 +2521,13 @@ }, "#rasterization": { "current": { - "number": "23.3.5", + "number": "23.2.5", "spec": "WebGPU", "text": "Rasterization", "url": "https://gpuweb.github.io/gpuweb/#rasterization" }, "snapshot": { - "number": "23.3.5", + "number": "23.2.5", "spec": "WebGPU", "text": "Rasterization", "url": "https://www.w3.org/TR/webgpu/#rasterization" @@ -2619,13 +2731,13 @@ }, "#rendering-operations": { "current": { - "number": "23.3", + "number": "23.2", "spec": "WebGPU", "text": "Rendering", "url": "https://gpuweb.github.io/gpuweb/#rendering-operations" }, "snapshot": { - "number": "23.3", + "number": "23.2", "spec": "WebGPU", "text": "Rendering", "url": "https://www.w3.org/TR/webgpu/#rendering-operations" @@ -2633,13 +2745,13 @@ }, "#rg11b10ufloat-renderable": { "current": { - "number": "25.9", + "number": "25.10", "spec": "WebGPU", "text": "\"rg11b10ufloat-renderable\"", "url": "https://gpuweb.github.io/gpuweb/#rg11b10ufloat-renderable" }, "snapshot": { - "number": "25.9", + "number": "25.10", "spec": "WebGPU", "text": "\"rg11b10ufloat-renderable\"", "url": "https://www.w3.org/TR/webgpu/#rg11b10ufloat-renderable" @@ -2647,13 +2759,13 @@ }, "#sample-frequency-shading": { "current": { - "number": "23.3.10", + "number": "23.2.10", "spec": "WebGPU", "text": "Sample frequency shading", "url": "https://gpuweb.github.io/gpuweb/#sample-frequency-shading" }, "snapshot": { - "number": "23.3.10", + "number": "23.2.10", "spec": "WebGPU", "text": "Sample frequency shading", "url": "https://www.w3.org/TR/webgpu/#sample-frequency-shading" @@ -2661,13 +2773,13 @@ }, "#sample-masking": { "current": { - "number": "23.3.11", + "number": "23.2.11", "spec": "WebGPU", "text": "Sample Masking", "url": "https://gpuweb.github.io/gpuweb/#sample-masking" }, "snapshot": { - "number": "23.3.11", + "number": "23.2.11", "spec": "WebGPU", "text": "Sample Masking", "url": "https://www.w3.org/TR/webgpu/#sample-masking" @@ -2675,13 +2787,13 @@ }, "#sampler-creation": { "current": { - "number": "7.2", + "number": "7.1.2", "spec": "WebGPU", "text": "Sampler Creation", "url": "https://gpuweb.github.io/gpuweb/#sampler-creation" }, "snapshot": { - "number": "7.2", + "number": "7.1.2", "spec": "WebGPU", "text": "Sampler Creation", "url": "https://www.w3.org/TR/webgpu/#sampler-creation" @@ -2869,6 +2981,34 @@ "url": "https://www.w3.org/TR/webgpu/#security-timing" } }, + "#security-timing-content": { + "current": { + "number": "2.1.7.1", + "spec": "WebGPU", + "text": "Content-timeline timing", + "url": "https://gpuweb.github.io/gpuweb/#security-timing-content" + }, + "snapshot": { + "number": "2.1.7.1", + "spec": "WebGPU", + "text": "Content-timeline timing", + "url": "https://www.w3.org/TR/webgpu/#security-timing-content" + } + }, + "#security-timing-device": { + "current": { + "number": "2.1.7.2", + "spec": "WebGPU", + "text": "Device/queue-timeline timing", + "url": "https://gpuweb.github.io/gpuweb/#security-timing-device" + }, + "snapshot": { + "number": "2.1.7.2", + "spec": "WebGPU", + "text": "Device/queue-timeline timing", + "url": "https://www.w3.org/TR/webgpu/#security-timing-device" + } + }, "#security-uninitialized": { "current": { "number": "2.1.3", @@ -2899,13 +3039,13 @@ }, "#shader-f16": { "current": { - "number": "25.8", + "number": "25.9", "spec": "WebGPU", "text": "\"shader-f16\"", "url": "https://gpuweb.github.io/gpuweb/#shader-f16" }, "snapshot": { - "number": "25.8", + "number": "25.9", "spec": "WebGPU", "text": "\"shader-f16\"", "url": "https://www.w3.org/TR/webgpu/#shader-f16" @@ -3023,29 +3163,15 @@ "url": "https://www.w3.org/TR/webgpu/#telemetry" } }, - "#temp-dfn-usages": { - "current": { - "number": "26.2", - "spec": "WebGPU", - "text": "Temporary usages of non-exported dfns", - "url": "https://gpuweb.github.io/gpuweb/#temp-dfn-usages" - }, - "snapshot": { - "number": "26.2", - "spec": "WebGPU", - "text": "Temporary usages of non-exported dfns", - "url": "https://www.w3.org/TR/webgpu/#temp-dfn-usages" - } - }, "#texture-compression-astc": { "current": { - "number": "25.5", + "number": "25.6", "spec": "WebGPU", "text": "\"texture-compression-astc\"", "url": "https://gpuweb.github.io/gpuweb/#texture-compression-astc" }, "snapshot": { - "number": "25.5", + "number": "25.6", "spec": "WebGPU", "text": "\"texture-compression-astc\"", "url": "https://www.w3.org/TR/webgpu/#texture-compression-astc" @@ -3065,15 +3191,29 @@ "url": "https://www.w3.org/TR/webgpu/#texture-compression-bc" } }, - "#texture-compression-etc2": { + "#texture-compression-bc-sliced-3d": { "current": { "number": "25.4", "spec": "WebGPU", + "text": "\"texture-compression-bc-sliced-3d\"", + "url": "https://gpuweb.github.io/gpuweb/#texture-compression-bc-sliced-3d" + }, + "snapshot": { + "number": "25.4", + "spec": "WebGPU", + "text": "\"texture-compression-bc-sliced-3d\"", + "url": "https://www.w3.org/TR/webgpu/#texture-compression-bc-sliced-3d" + } + }, + "#texture-compression-etc2": { + "current": { + "number": "25.5", + "spec": "WebGPU", "text": "\"texture-compression-etc2\"", "url": "https://gpuweb.github.io/gpuweb/#texture-compression-etc2" }, "snapshot": { - "number": "25.4", + "number": "25.5", "spec": "WebGPU", "text": "\"texture-compression-etc2\"", "url": "https://www.w3.org/TR/webgpu/#texture-compression-etc2" @@ -3081,13 +3221,13 @@ }, "#texture-creation": { "current": { - "number": "6.1.1", + "number": "6.1.3", "spec": "WebGPU", "text": "Texture Creation", "url": "https://gpuweb.github.io/gpuweb/#texture-creation" }, "snapshot": { - "number": "6.1.1", + "number": "6.1.3", "spec": "WebGPU", "text": "Texture Creation", "url": "https://www.w3.org/TR/webgpu/#texture-creation" @@ -3095,13 +3235,13 @@ }, "#texture-destruction": { "current": { - "number": "6.1.2", + "number": "6.1.4", "spec": "WebGPU", "text": "Texture Destruction", "url": "https://gpuweb.github.io/gpuweb/#texture-destruction" }, "snapshot": { - "number": "6.1.2", + "number": "6.1.4", "spec": "WebGPU", "text": "Texture Destruction", "url": "https://www.w3.org/TR/webgpu/#texture-destruction" @@ -3135,6 +3275,20 @@ "url": "https://www.w3.org/TR/webgpu/#texture-formats" } }, + "#texture-usage": { + "current": { + "number": "6.1.2", + "spec": "WebGPU", + "text": "Texture Usages", + "url": "https://gpuweb.github.io/gpuweb/#texture-usage" + }, + "snapshot": { + "number": "6.1.2", + "spec": "WebGPU", + "text": "Texture Usages", + "url": "https://www.w3.org/TR/webgpu/#texture-usage" + } + }, "#texture-view-creation": { "current": { "number": "6.2.1", @@ -3179,13 +3333,13 @@ }, "#timestamp-query": { "current": { - "number": "25.6", + "number": "25.7", "spec": "WebGPU", "text": "\"timestamp-query\"", "url": "https://gpuweb.github.io/gpuweb/#timestamp-query" }, "snapshot": { - "number": "25.6", + "number": "25.7", "spec": "WebGPU", "text": "\"timestamp-query\"", "url": "https://www.w3.org/TR/webgpu/#timestamp-query" @@ -3219,20 +3373,6 @@ "url": "https://www.w3.org/TR/webgpu/#toc" } }, - "#transfer-operations": { - "current": { - "number": "23.1", - "spec": "WebGPU", - "text": "Transfer", - "url": "https://gpuweb.github.io/gpuweb/#transfer-operations" - }, - "snapshot": { - "number": "23.1", - "spec": "WebGPU", - "text": "Transfer", - "url": "https://www.w3.org/TR/webgpu/#transfer-operations" - } - }, "#type-definitions": { "current": { "number": "", @@ -3263,13 +3403,13 @@ }, "#vertex-processing": { "current": { - "number": "23.3.2", + "number": "23.2.2", "spec": "WebGPU", "text": "Vertex Processing", "url": "https://gpuweb.github.io/gpuweb/#vertex-processing" }, "snapshot": { - "number": "23.3.2", + "number": "23.2.2", "spec": "WebGPU", "text": "Vertex Processing", "url": "https://www.w3.org/TR/webgpu/#vertex-processing" @@ -3331,32 +3471,18 @@ "url": "https://www.w3.org/TR/webgpu/#w3c-conventions" } }, - "#webgpu-interfaces": { + "#webgpu-objects": { "current": { "number": "3.1.2", "spec": "WebGPU", - "text": "WebGPU Interfaces", - "url": "https://gpuweb.github.io/gpuweb/#webgpu-interfaces" + "text": "WebGPU Objects", + "url": "https://gpuweb.github.io/gpuweb/#webgpu-objects" }, "snapshot": { "number": "3.1.2", "spec": "WebGPU", - "text": "WebGPU Interfaces", - "url": "https://www.w3.org/TR/webgpu/#webgpu-interfaces" - } - }, - "#webgpu-internal-objects": { - "current": { - "number": "3.1.3", - "spec": "WebGPU", - "text": "Internal Objects", - "url": "https://gpuweb.github.io/gpuweb/#webgpu-internal-objects" - }, - "snapshot": { - "number": "3.1.3", - "spec": "WebGPU", - "text": "Internal Objects", - "url": "https://www.w3.org/TR/webgpu/#webgpu-internal-objects" + "text": "WebGPU Objects", + "url": "https://www.w3.org/TR/webgpu/#webgpu-objects" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webidl.json b/bikeshed/spec-data/readonly/headings/headings-webidl.json index f1cf69958f..1e3af3b4a2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webidl.json +++ b/bikeshed/spec-data/readonly/headings/headings-webidl.json @@ -15,6 +15,14 @@ "url": "https://webidl.spec.whatwg.org/#AllowShared" } }, + "#AllowSharedBufferSource": { + "current": { + "number": "4.3", + "spec": "Web IDL", + "text": "AllowSharedBufferSource", + "url": "https://webidl.spec.whatwg.org/#AllowSharedBufferSource" + } + }, "#ArrayBufferView": { "current": { "number": "4.1", @@ -73,7 +81,7 @@ }, "#Function": { "current": { - "number": "4.4", + "number": "4.5", "spec": "Web IDL", "text": "Function", "url": "https://webidl.spec.whatwg.org/#Function" @@ -225,7 +233,7 @@ }, "#VoidFunction": { "current": { - "number": "4.5", + "number": "4.6", "spec": "Web IDL", "text": "VoidFunction", "url": "https://webidl.spec.whatwg.org/#VoidFunction" @@ -287,1444 +295,1452 @@ "url": "https://webidl.spec.whatwg.org/#create-sequence-from-iterable" } }, - "#ecmascript-binding": { + "#extensibility": { "current": { - "number": "3", + "number": "5", "spec": "Web IDL", - "text": "ECMAScript binding", - "url": "https://webidl.spec.whatwg.org/#ecmascript-binding" + "text": "Extensibility", + "url": "https://webidl.spec.whatwg.org/#extensibility" } }, - "#es-ByteString": { + "#idl": { "current": { - "number": "3.2.11", + "number": "2", + "spec": "Web IDL", + "text": "Interface definition language", + "url": "https://webidl.spec.whatwg.org/#idl" + } + }, + "#idl-ByteString": { + "current": { + "number": "2.13.18", "spec": "Web IDL", "text": "ByteString", - "url": "https://webidl.spec.whatwg.org/#es-ByteString" + "url": "https://webidl.spec.whatwg.org/#idl-ByteString" } }, - "#es-DOMException-specialness": { + "#idl-DOMException": { "current": { - "number": "3.14.1", + "number": "4.4", "spec": "Web IDL", - "text": "DOMException custom bindings", - "url": "https://webidl.spec.whatwg.org/#es-DOMException-specialness" + "text": "DOMException", + "url": "https://webidl.spec.whatwg.org/#idl-DOMException" } }, - "#es-DOMString": { + "#idl-DOMException-derived-interfaces": { "current": { - "number": "3.2.10", + "number": "2.8.2", + "spec": "Web IDL", + "text": "DOMException derived interfaces", + "url": "https://webidl.spec.whatwg.org/#idl-DOMException-derived-interfaces" + } + }, + "#idl-DOMException-error-names": { + "current": { + "number": "2.8.1", + "spec": "Web IDL", + "text": "Base DOMException error names", + "url": "https://webidl.spec.whatwg.org/#idl-DOMException-error-names" + } + }, + "#idl-DOMString": { + "current": { + "number": "2.13.17", "spec": "Web IDL", "text": "DOMString", - "url": "https://webidl.spec.whatwg.org/#es-DOMString" + "url": "https://webidl.spec.whatwg.org/#idl-DOMString" } }, - "#es-USVString": { + "#idl-USVString": { "current": { - "number": "3.2.12", + "number": "2.13.19", "spec": "Web IDL", "text": "USVString", - "url": "https://webidl.spec.whatwg.org/#es-USVString" + "url": "https://webidl.spec.whatwg.org/#idl-USVString" } }, - "#es-any": { + "#idl-annotated-types": { "current": { - "number": "3.2.1", + "number": "2.13.32", "spec": "Web IDL", - "text": "any", - "url": "https://webidl.spec.whatwg.org/#es-any" + "text": "Annotated types", + "url": "https://webidl.spec.whatwg.org/#idl-annotated-types" } }, - "#es-asynchronous-iterable": { + "#idl-any": { "current": { - "number": "3.7.10", + "number": "2.13.1", "spec": "Web IDL", - "text": "Asynchronous iterable declarations", - "url": "https://webidl.spec.whatwg.org/#es-asynchronous-iterable" + "text": "any", + "url": "https://webidl.spec.whatwg.org/#idl-any" } }, - "#es-asynchronous-iterator-prototype-object": { + "#idl-async-iterable": { "current": { - "number": "3.7.10.2", + "number": "2.5.10", "spec": "Web IDL", - "text": "Asynchronous iterator prototype object", - "url": "https://webidl.spec.whatwg.org/#es-asynchronous-iterator-prototype-object" + "text": "Asynchronously iterable declarations", + "url": "https://webidl.spec.whatwg.org/#idl-async-iterable" } }, - "#es-attributes": { + "#idl-attributes": { "current": { - "number": "3.7.6", + "number": "2.5.2", "spec": "Web IDL", "text": "Attributes", - "url": "https://webidl.spec.whatwg.org/#es-attributes" + "url": "https://webidl.spec.whatwg.org/#idl-attributes" } }, - "#es-bigint": { + "#idl-bigint": { "current": { - "number": "3.2.9", + "number": "2.13.16", "spec": "Web IDL", "text": "bigint", - "url": "https://webidl.spec.whatwg.org/#es-bigint" + "url": "https://webidl.spec.whatwg.org/#idl-bigint" } }, - "#es-boolean": { + "#idl-boolean": { "current": { - "number": "3.2.3", + "number": "2.13.3", "spec": "Web IDL", "text": "boolean", - "url": "https://webidl.spec.whatwg.org/#es-boolean" + "url": "https://webidl.spec.whatwg.org/#idl-boolean" } }, - "#es-buffer-source-types": { + "#idl-buffer-source-types": { "current": { - "number": "3.2.25", + "number": "2.13.33", "spec": "Web IDL", "text": "Buffer source types", - "url": "https://webidl.spec.whatwg.org/#es-buffer-source-types" + "url": "https://webidl.spec.whatwg.org/#idl-buffer-source-types" } }, - "#es-byte": { + "#idl-byte": { "current": { - "number": "3.2.4.1", + "number": "2.13.4", "spec": "Web IDL", "text": "byte", - "url": "https://webidl.spec.whatwg.org/#es-byte" + "url": "https://webidl.spec.whatwg.org/#idl-byte" } }, - "#es-callback-function": { + "#idl-callback-function": { "current": { - "number": "3.2.19", + "number": "2.13.26", "spec": "Web IDL", "text": "Callback function types", - "url": "https://webidl.spec.whatwg.org/#es-callback-function" - } - }, - "#es-callback-interface": { - "current": { - "number": "3.2.16", - "spec": "Web IDL", - "text": "Callback interface types", - "url": "https://webidl.spec.whatwg.org/#es-callback-interface" + "url": "https://webidl.spec.whatwg.org/#idl-callback-function" } }, - "#es-constants": { + "#idl-callback-functions": { "current": { - "number": "3.7.5", + "number": "2.10", "spec": "Web IDL", - "text": "Constants", - "url": "https://webidl.spec.whatwg.org/#es-constants" + "text": "Callback functions", + "url": "https://webidl.spec.whatwg.org/#idl-callback-functions" } }, - "#es-creating-throwing-exceptions": { + "#idl-callback-interface": { "current": { - "number": "3.14.3", + "number": "2.13.23", "spec": "Web IDL", - "text": "Creating and throwing exceptions", - "url": "https://webidl.spec.whatwg.org/#es-creating-throwing-exceptions" + "text": "Callback interface types", + "url": "https://webidl.spec.whatwg.org/#idl-callback-interface" } }, - "#es-default-asynchronous-iterator-object": { + "#idl-callback-interfaces": { "current": { - "number": "3.7.10.1", + "number": "2.4", "spec": "Web IDL", - "text": "Default asynchronous iterator objects", - "url": "https://webidl.spec.whatwg.org/#es-default-asynchronous-iterator-object" + "text": "Callback interfaces", + "url": "https://webidl.spec.whatwg.org/#idl-callback-interfaces" } }, - "#es-default-iterator-object": { + "#idl-constants": { "current": { - "number": "3.7.9.1", + "number": "2.5.1", "spec": "Web IDL", - "text": "Default iterator objects", - "url": "https://webidl.spec.whatwg.org/#es-default-iterator-object" + "text": "Constants", + "url": "https://webidl.spec.whatwg.org/#idl-constants" } }, - "#es-default-operations": { + "#idl-constructors": { "current": { - "number": "3.7.7.1", + "number": "2.5.4", "spec": "Web IDL", - "text": "Default operations", - "url": "https://webidl.spec.whatwg.org/#es-default-operations" + "text": "Constructor operations", + "url": "https://webidl.spec.whatwg.org/#idl-constructors" } }, - "#es-default-tojson": { + "#idl-dictionaries": { "current": { - "number": "3.7.7.1.1", + "number": "2.7", "spec": "Web IDL", - "text": "Default toJSON operation", - "url": "https://webidl.spec.whatwg.org/#es-default-tojson" + "text": "Dictionaries", + "url": "https://webidl.spec.whatwg.org/#idl-dictionaries" } }, - "#es-dictionary": { + "#idl-dictionary": { "current": { - "number": "3.2.17", + "number": "2.13.24", "spec": "Web IDL", "text": "Dictionary types", - "url": "https://webidl.spec.whatwg.org/#es-dictionary" + "url": "https://webidl.spec.whatwg.org/#idl-dictionary" } }, - "#es-double": { + "#idl-double": { "current": { - "number": "3.2.7", + "number": "2.13.14", "spec": "Web IDL", "text": "double", - "url": "https://webidl.spec.whatwg.org/#es-double" + "url": "https://webidl.spec.whatwg.org/#idl-double" } }, - "#es-enumeration": { + "#idl-enumeration": { "current": { - "number": "3.2.18", + "number": "2.13.25", "spec": "Web IDL", "text": "Enumeration types", - "url": "https://webidl.spec.whatwg.org/#es-enumeration" - } - }, - "#es-environment": { - "current": { - "number": "3.1", - "spec": "Web IDL", - "text": "ECMAScript environment", - "url": "https://webidl.spec.whatwg.org/#es-environment" + "url": "https://webidl.spec.whatwg.org/#idl-enumeration" } }, - "#es-exception-objects": { + "#idl-enums": { "current": { - "number": "3.14.2", + "number": "2.9", "spec": "Web IDL", - "text": "Exception objects", - "url": "https://webidl.spec.whatwg.org/#es-exception-objects" + "text": "Enumerations", + "url": "https://webidl.spec.whatwg.org/#idl-enums" } }, - "#es-exceptions": { + "#idl-exceptions": { "current": { - "number": "3.14", + "number": "2.8", "spec": "Web IDL", "text": "Exceptions", - "url": "https://webidl.spec.whatwg.org/#es-exceptions" + "url": "https://webidl.spec.whatwg.org/#idl-exceptions" } }, - "#es-extended-attributes": { + "#idl-extended-attributes": { "current": { - "number": "3.3", + "number": "2.14", "spec": "Web IDL", "text": "Extended attributes", - "url": "https://webidl.spec.whatwg.org/#es-extended-attributes" + "url": "https://webidl.spec.whatwg.org/#idl-extended-attributes" } }, - "#es-float": { + "#idl-float": { "current": { - "number": "3.2.5", + "number": "2.13.12", "spec": "Web IDL", "text": "float", - "url": "https://webidl.spec.whatwg.org/#es-float" + "url": "https://webidl.spec.whatwg.org/#idl-float" } }, - "#es-frozen-array": { + "#idl-frozen-array": { "current": { - "number": "3.2.26", + "number": "2.13.34", "spec": "Web IDL", - "text": "Frozen arrays — FrozenArray<T>", - "url": "https://webidl.spec.whatwg.org/#es-frozen-array" + "text": "Frozen array types — FrozenArray<T>", + "url": "https://webidl.spec.whatwg.org/#idl-frozen-array" } }, - "#es-handling-exceptions": { + "#idl-grammar": { "current": { - "number": "3.14.4", + "number": "", "spec": "Web IDL", - "text": "Handling exceptions", - "url": "https://webidl.spec.whatwg.org/#es-handling-exceptions" + "text": "IDL grammar", + "url": "https://webidl.spec.whatwg.org/#idl-grammar" } }, - "#es-integer-types": { + "#idl-index": { "current": { - "number": "3.2.4", + "number": "", "spec": "Web IDL", - "text": "Integer types", - "url": "https://webidl.spec.whatwg.org/#es-integer-types" + "text": "IDL Index", + "url": "https://webidl.spec.whatwg.org/#idl-index" } }, - "#es-integer-types-abstract-ops": { + "#idl-indexed-properties": { "current": { - "number": "3.2.4.9", + "number": "2.5.6.1", "spec": "Web IDL", - "text": "Abstract operations", - "url": "https://webidl.spec.whatwg.org/#es-integer-types-abstract-ops" + "text": "Indexed properties", + "url": "https://webidl.spec.whatwg.org/#idl-indexed-properties" } }, - "#es-interface": { + "#idl-interface": { "current": { - "number": "3.2.15", + "number": "2.13.22", "spec": "Web IDL", "text": "Interface types", - "url": "https://webidl.spec.whatwg.org/#es-interface" + "url": "https://webidl.spec.whatwg.org/#idl-interface" } }, - "#es-interfaces": { + "#idl-interface-mixins": { "current": { - "number": "3.7", + "number": "2.3", "spec": "Web IDL", - "text": "Interfaces", - "url": "https://webidl.spec.whatwg.org/#es-interfaces" + "text": "Interface mixins", + "url": "https://webidl.spec.whatwg.org/#idl-interface-mixins" } }, - "#es-invoking-callback-functions": { + "#idl-interfaces": { "current": { - "number": "3.12", + "number": "2.2", "spec": "Web IDL", - "text": "Invoking callback functions", - "url": "https://webidl.spec.whatwg.org/#es-invoking-callback-functions" + "text": "Interfaces", + "url": "https://webidl.spec.whatwg.org/#idl-interfaces" } }, - "#es-iterable": { + "#idl-iterable": { "current": { - "number": "3.7.9", + "number": "2.5.9", "spec": "Web IDL", "text": "Iterable declarations", - "url": "https://webidl.spec.whatwg.org/#es-iterable" + "url": "https://webidl.spec.whatwg.org/#idl-iterable" } }, - "#es-iterator-prototype-object": { + "#idl-long": { "current": { - "number": "3.7.9.2", + "number": "2.13.8", "spec": "Web IDL", - "text": "Iterator prototype object", - "url": "https://webidl.spec.whatwg.org/#es-iterator-prototype-object" + "text": "long", + "url": "https://webidl.spec.whatwg.org/#idl-long" } }, - "#es-legacy-extended-attributes": { + "#idl-long-long": { "current": { - "number": "3.4", + "number": "2.13.10", "spec": "Web IDL", - "text": "Legacy extended attributes", - "url": "https://webidl.spec.whatwg.org/#es-legacy-extended-attributes" + "text": "long long", + "url": "https://webidl.spec.whatwg.org/#idl-long-long" } }, - "#es-legacy-platform-objects": { + "#idl-maplike": { "current": { - "number": "3.9", + "number": "2.5.11", "spec": "Web IDL", - "text": "Legacy platform objects", - "url": "https://webidl.spec.whatwg.org/#es-legacy-platform-objects" + "text": "Maplike declarations", + "url": "https://webidl.spec.whatwg.org/#idl-maplike" } }, - "#es-long": { + "#idl-members": { "current": { - "number": "3.2.4.5", + "number": "2.5", "spec": "Web IDL", - "text": "long", - "url": "https://webidl.spec.whatwg.org/#es-long" + "text": "Members", + "url": "https://webidl.spec.whatwg.org/#idl-members" } }, - "#es-long-long": { + "#idl-named-properties": { "current": { - "number": "3.2.4.7", + "number": "2.5.6.2", "spec": "Web IDL", - "text": "long long", - "url": "https://webidl.spec.whatwg.org/#es-long-long" + "text": "Named properties", + "url": "https://webidl.spec.whatwg.org/#idl-named-properties" } }, - "#es-map-clear": { + "#idl-names": { "current": { - "number": "3.7.11.11", + "number": "2.1", "spec": "Web IDL", - "text": "clear", - "url": "https://webidl.spec.whatwg.org/#es-map-clear" + "text": "Names", + "url": "https://webidl.spec.whatwg.org/#idl-names" } }, - "#es-map-delete": { + "#idl-namespaces": { "current": { - "number": "3.7.11.10", + "number": "2.6", "spec": "Web IDL", - "text": "delete", - "url": "https://webidl.spec.whatwg.org/#es-map-delete" + "text": "Namespaces", + "url": "https://webidl.spec.whatwg.org/#idl-namespaces" } }, - "#es-map-entries": { + "#idl-nullable-type": { "current": { - "number": "3.7.11.3", + "number": "2.13.27", "spec": "Web IDL", - "text": "entries", - "url": "https://webidl.spec.whatwg.org/#es-map-entries" + "text": "Nullable types — T?", + "url": "https://webidl.spec.whatwg.org/#idl-nullable-type" } }, - "#es-map-forEach": { + "#idl-object": { "current": { - "number": "3.7.11.6", + "number": "2.13.20", "spec": "Web IDL", - "text": "forEach", - "url": "https://webidl.spec.whatwg.org/#es-map-forEach" + "text": "object", + "url": "https://webidl.spec.whatwg.org/#idl-object" } }, - "#es-map-get": { + "#idl-objects": { "current": { - "number": "3.7.11.7", + "number": "2.12", "spec": "Web IDL", - "text": "get", - "url": "https://webidl.spec.whatwg.org/#es-map-get" + "text": "Objects implementing interfaces", + "url": "https://webidl.spec.whatwg.org/#idl-objects" } }, - "#es-map-has": { + "#idl-observable-array": { "current": { - "number": "3.7.11.8", + "number": "2.13.35", "spec": "Web IDL", - "text": "has", - "url": "https://webidl.spec.whatwg.org/#es-map-has" + "text": "Observable array types — ObservableArray<T>", + "url": "https://webidl.spec.whatwg.org/#idl-observable-array" } }, - "#es-map-iterator": { + "#idl-octet": { "current": { - "number": "3.7.11.2", + "number": "2.13.5", "spec": "Web IDL", - "text": "@@iterator", - "url": "https://webidl.spec.whatwg.org/#es-map-iterator" + "text": "octet", + "url": "https://webidl.spec.whatwg.org/#idl-octet" } }, - "#es-map-keys": { + "#idl-operations": { "current": { - "number": "3.7.11.4", + "number": "2.5.3", "spec": "Web IDL", - "text": "keys", - "url": "https://webidl.spec.whatwg.org/#es-map-keys" + "text": "Operations", + "url": "https://webidl.spec.whatwg.org/#idl-operations" } }, - "#es-map-set": { + "#idl-overloading": { "current": { - "number": "3.7.11.9", + "number": "2.5.8", "spec": "Web IDL", - "text": "set", - "url": "https://webidl.spec.whatwg.org/#es-map-set" + "text": "Overloading", + "url": "https://webidl.spec.whatwg.org/#idl-overloading" } }, - "#es-map-size": { + "#idl-overloading-vs-union": { "current": { - "number": "3.7.11.1", + "number": "2.5.8.1", "spec": "Web IDL", - "text": "size", - "url": "https://webidl.spec.whatwg.org/#es-map-size" + "text": "Overloading vs. union types", + "url": "https://webidl.spec.whatwg.org/#idl-overloading-vs-union" } }, - "#es-map-values": { + "#idl-promise": { "current": { - "number": "3.7.11.5", + "number": "2.13.30", "spec": "Web IDL", - "text": "values", - "url": "https://webidl.spec.whatwg.org/#es-map-values" + "text": "Promise types — Promise<T>", + "url": "https://webidl.spec.whatwg.org/#idl-promise" } }, - "#es-maplike": { + "#idl-record": { "current": { - "number": "3.7.11", + "number": "2.13.29", "spec": "Web IDL", - "text": "Maplike declarations", - "url": "https://webidl.spec.whatwg.org/#es-maplike" + "text": "Record types — record<K, V>", + "url": "https://webidl.spec.whatwg.org/#idl-record" } }, - "#es-namespaces": { + "#idl-sequence": { "current": { - "number": "3.13", + "number": "2.13.28", "spec": "Web IDL", - "text": "Namespaces", - "url": "https://webidl.spec.whatwg.org/#es-namespaces" + "text": "Sequence types — sequence<T>", + "url": "https://webidl.spec.whatwg.org/#idl-sequence" } }, - "#es-nullable-type": { + "#idl-setlike": { "current": { - "number": "3.2.20", + "number": "2.5.12", "spec": "Web IDL", - "text": "Nullable types — T?", - "url": "https://webidl.spec.whatwg.org/#es-nullable-type" + "text": "Setlike declarations", + "url": "https://webidl.spec.whatwg.org/#idl-setlike" } }, - "#es-object": { + "#idl-short": { "current": { - "number": "3.2.13", + "number": "2.13.6", "spec": "Web IDL", - "text": "object", - "url": "https://webidl.spec.whatwg.org/#es-object" + "text": "short", + "url": "https://webidl.spec.whatwg.org/#idl-short" } }, - "#es-observable-array": { + "#idl-special-operations": { "current": { - "number": "3.2.27", + "number": "2.5.6", "spec": "Web IDL", - "text": "Observable arrays — ObservableArray<T>", - "url": "https://webidl.spec.whatwg.org/#es-observable-array" + "text": "Special operations", + "url": "https://webidl.spec.whatwg.org/#idl-special-operations" } }, - "#es-observable-array-abstract-operations": { + "#idl-static-attributes-and-operations": { "current": { - "number": "3.10.9", + "number": "2.5.7", "spec": "Web IDL", - "text": "Abstract operations", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-abstract-operations" + "text": "Static attributes and operations", + "url": "https://webidl.spec.whatwg.org/#idl-static-attributes-and-operations" } }, - "#es-observable-array-defineProperty": { + "#idl-stringifiers": { "current": { - "number": "3.10.1", + "number": "2.5.5", "spec": "Web IDL", - "text": "defineProperty", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-defineProperty" + "text": "Stringifiers", + "url": "https://webidl.spec.whatwg.org/#idl-stringifiers" } }, - "#es-observable-array-deleteProperty": { + "#idl-symbol": { "current": { - "number": "3.10.2", + "number": "2.13.21", "spec": "Web IDL", - "text": "deleteProperty", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-deleteProperty" + "text": "symbol", + "url": "https://webidl.spec.whatwg.org/#idl-symbol" } }, - "#es-observable-array-get": { + "#idl-tojson-operation": { "current": { - "number": "3.10.3", + "number": "2.5.3.1", "spec": "Web IDL", - "text": "get", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-get" + "text": "toJSON", + "url": "https://webidl.spec.whatwg.org/#idl-tojson-operation" } }, - "#es-observable-array-getOwnPropertyDescriptor": { + "#idl-typedefs": { "current": { - "number": "3.10.4", + "number": "2.11", "spec": "Web IDL", - "text": "getOwnPropertyDescriptor", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-getOwnPropertyDescriptor" + "text": "Typedefs", + "url": "https://webidl.spec.whatwg.org/#idl-typedefs" } }, - "#es-observable-array-has": { + "#idl-types": { "current": { - "number": "3.10.5", + "number": "2.13", "spec": "Web IDL", - "text": "has", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-has" + "text": "Types", + "url": "https://webidl.spec.whatwg.org/#idl-types" } }, - "#es-observable-array-ownKeys": { + "#idl-undefined": { "current": { - "number": "3.10.6", + "number": "2.13.2", "spec": "Web IDL", - "text": "ownKeys", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-ownKeys" + "text": "undefined", + "url": "https://webidl.spec.whatwg.org/#idl-undefined" } }, - "#es-observable-array-preventExtensions": { + "#idl-union": { "current": { - "number": "3.10.7", + "number": "2.13.31", "spec": "Web IDL", - "text": "preventExtensions", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-preventExtensions" + "text": "Union types", + "url": "https://webidl.spec.whatwg.org/#idl-union" } }, - "#es-observable-array-set": { + "#idl-unrestricted-double": { "current": { - "number": "3.10.8", + "number": "2.13.15", "spec": "Web IDL", - "text": "set", - "url": "https://webidl.spec.whatwg.org/#es-observable-array-set" + "text": "unrestricted double", + "url": "https://webidl.spec.whatwg.org/#idl-unrestricted-double" } }, - "#es-observable-arrays": { + "#idl-unrestricted-float": { "current": { - "number": "3.10", + "number": "2.13.13", "spec": "Web IDL", - "text": "Observable array exotic objects", - "url": "https://webidl.spec.whatwg.org/#es-observable-arrays" + "text": "unrestricted float", + "url": "https://webidl.spec.whatwg.org/#idl-unrestricted-float" } }, - "#es-octet": { + "#idl-unsigned-long": { "current": { - "number": "3.2.4.2", + "number": "2.13.9", "spec": "Web IDL", - "text": "octet", - "url": "https://webidl.spec.whatwg.org/#es-octet" + "text": "unsigned long", + "url": "https://webidl.spec.whatwg.org/#idl-unsigned-long" } }, - "#es-operations": { + "#idl-unsigned-long-long": { "current": { - "number": "3.7.7", + "number": "2.13.11", "spec": "Web IDL", - "text": "Operations", - "url": "https://webidl.spec.whatwg.org/#es-operations" + "text": "unsigned long long", + "url": "https://webidl.spec.whatwg.org/#idl-unsigned-long-long" } }, - "#es-overloads": { + "#idl-unsigned-short": { "current": { - "number": "3.6", + "number": "2.13.7", "spec": "Web IDL", - "text": "Overload resolution algorithm", - "url": "https://webidl.spec.whatwg.org/#es-overloads" + "text": "unsigned short", + "url": "https://webidl.spec.whatwg.org/#idl-unsigned-short" } }, - "#es-platform-objects": { + "#index": { "current": { - "number": "3.8", + "number": "", "spec": "Web IDL", - "text": "Platform objects implementing interfaces", - "url": "https://webidl.spec.whatwg.org/#es-platform-objects" + "text": "Index", + "url": "https://webidl.spec.whatwg.org/#index" } }, - "#es-promise": { + "#index-defined-elsewhere": { "current": { - "number": "3.2.23", + "number": "", "spec": "Web IDL", - "text": "Promise types — Promise<T>", - "url": "https://webidl.spec.whatwg.org/#es-promise" + "text": "Terms defined by reference", + "url": "https://webidl.spec.whatwg.org/#index-defined-elsewhere" } }, - "#es-promise-examples": { + "#index-defined-here": { "current": { - "number": "3.2.23.2", + "number": "", "spec": "Web IDL", - "text": "Examples", - "url": "https://webidl.spec.whatwg.org/#es-promise-examples" + "text": "Terms defined by this specification", + "url": "https://webidl.spec.whatwg.org/#index-defined-here" } }, - "#es-promise-manipulation": { + "#informative": { "current": { - "number": "3.2.23.1", + "number": "", "spec": "Web IDL", - "text": "Creating and manipulating Promises", - "url": "https://webidl.spec.whatwg.org/#es-promise-manipulation" + "text": "Informative References", + "url": "https://webidl.spec.whatwg.org/#informative" } }, - "#es-record": { + "#interface-object": { "current": { - "number": "3.2.22", + "number": "3.7.1", "spec": "Web IDL", - "text": "Records — record<K, V>", - "url": "https://webidl.spec.whatwg.org/#es-record" + "text": "Interface object", + "url": "https://webidl.spec.whatwg.org/#interface-object" } }, - "#es-security": { + "#interface-prototype-object": { "current": { - "number": "3.5", + "number": "3.7.3", "spec": "Web IDL", - "text": "Security", - "url": "https://webidl.spec.whatwg.org/#es-security" + "text": "Interface prototype object", + "url": "https://webidl.spec.whatwg.org/#interface-prototype-object" } }, - "#es-sequence": { + "#introduction": { "current": { - "number": "3.2.21", + "number": "1", "spec": "Web IDL", - "text": "Sequences — sequence<T>", - "url": "https://webidl.spec.whatwg.org/#es-sequence" + "text": "Introduction", + "url": "https://webidl.spec.whatwg.org/#introduction" } }, - "#es-set-add": { + "#ipr": { "current": { - "number": "3.7.12.8", + "number": "", "spec": "Web IDL", - "text": "add", - "url": "https://webidl.spec.whatwg.org/#es-set-add" + "text": "Intellectual property rights", + "url": "https://webidl.spec.whatwg.org/#ipr" } }, - "#es-set-clear": { + "#javascript-binding": { "current": { - "number": "3.7.12.10", + "number": "3", "spec": "Web IDL", - "text": "clear", - "url": "https://webidl.spec.whatwg.org/#es-set-clear" + "text": "JavaScript binding", + "url": "https://webidl.spec.whatwg.org/#javascript-binding" } }, - "#es-set-delete": { + "#js-ByteString": { "current": { - "number": "3.7.12.9", + "number": "3.2.11", "spec": "Web IDL", - "text": "delete", - "url": "https://webidl.spec.whatwg.org/#es-set-delete" + "text": "ByteString", + "url": "https://webidl.spec.whatwg.org/#js-ByteString" } }, - "#es-set-entries": { + "#js-DOMException-specialness": { "current": { - "number": "3.7.12.3", + "number": "3.14.1", "spec": "Web IDL", - "text": "entries", - "url": "https://webidl.spec.whatwg.org/#es-set-entries" + "text": "DOMException custom bindings", + "url": "https://webidl.spec.whatwg.org/#js-DOMException-specialness" } }, - "#es-set-forEach": { + "#js-DOMString": { "current": { - "number": "3.7.12.6", + "number": "3.2.10", "spec": "Web IDL", - "text": "forEach", - "url": "https://webidl.spec.whatwg.org/#es-set-forEach" + "text": "DOMString", + "url": "https://webidl.spec.whatwg.org/#js-DOMString" } }, - "#es-set-has": { + "#js-USVString": { "current": { - "number": "3.7.12.7", + "number": "3.2.12", "spec": "Web IDL", - "text": "has", - "url": "https://webidl.spec.whatwg.org/#es-set-has" + "text": "USVString", + "url": "https://webidl.spec.whatwg.org/#js-USVString" } }, - "#es-set-iterator": { + "#js-any": { "current": { - "number": "3.7.12.2", + "number": "3.2.1", "spec": "Web IDL", - "text": "@@iterator", - "url": "https://webidl.spec.whatwg.org/#es-set-iterator" + "text": "any", + "url": "https://webidl.spec.whatwg.org/#js-any" } }, - "#es-set-keys": { + "#js-asynchronous-iterable": { "current": { - "number": "3.7.12.4", + "number": "3.7.10", "spec": "Web IDL", - "text": "keys", - "url": "https://webidl.spec.whatwg.org/#es-set-keys" + "text": "Asynchronous iterable declarations", + "url": "https://webidl.spec.whatwg.org/#js-asynchronous-iterable" } }, - "#es-set-size": { + "#js-asynchronous-iterator-prototype-object": { "current": { - "number": "3.7.12.1", + "number": "3.7.10.2", "spec": "Web IDL", - "text": "size", - "url": "https://webidl.spec.whatwg.org/#es-set-size" + "text": "Asynchronous iterator prototype object", + "url": "https://webidl.spec.whatwg.org/#js-asynchronous-iterator-prototype-object" } }, - "#es-set-values": { + "#js-attributes": { "current": { - "number": "3.7.12.5", + "number": "3.7.6", "spec": "Web IDL", - "text": "values", - "url": "https://webidl.spec.whatwg.org/#es-set-values" + "text": "Attributes", + "url": "https://webidl.spec.whatwg.org/#js-attributes" } }, - "#es-setlike": { + "#js-bigint": { "current": { - "number": "3.7.12", + "number": "3.2.9", "spec": "Web IDL", - "text": "Setlike declarations", - "url": "https://webidl.spec.whatwg.org/#es-setlike" + "text": "bigint", + "url": "https://webidl.spec.whatwg.org/#js-bigint" } }, - "#es-short": { + "#js-boolean": { "current": { - "number": "3.2.4.3", + "number": "3.2.3", "spec": "Web IDL", - "text": "short", - "url": "https://webidl.spec.whatwg.org/#es-short" + "text": "boolean", + "url": "https://webidl.spec.whatwg.org/#js-boolean" } }, - "#es-stringifier": { + "#js-buffer-source-types": { "current": { - "number": "3.7.8", + "number": "3.2.25", "spec": "Web IDL", - "text": "Stringifiers", - "url": "https://webidl.spec.whatwg.org/#es-stringifier" + "text": "Buffer source types", + "url": "https://webidl.spec.whatwg.org/#js-buffer-source-types" } }, - "#es-symbol": { + "#js-byte": { "current": { - "number": "3.2.14", + "number": "3.2.4.1", "spec": "Web IDL", - "text": "symbol", - "url": "https://webidl.spec.whatwg.org/#es-symbol" + "text": "byte", + "url": "https://webidl.spec.whatwg.org/#js-byte" } }, - "#es-type-mapping": { + "#js-callback-function": { "current": { - "number": "3.2", + "number": "3.2.19", "spec": "Web IDL", - "text": "ECMAScript type mapping", - "url": "https://webidl.spec.whatwg.org/#es-type-mapping" + "text": "Callback function types", + "url": "https://webidl.spec.whatwg.org/#js-callback-function" } }, - "#es-undefined": { + "#js-callback-interface": { "current": { - "number": "3.2.2", + "number": "3.2.16", "spec": "Web IDL", - "text": "undefined", - "url": "https://webidl.spec.whatwg.org/#es-undefined" + "text": "Callback interface types", + "url": "https://webidl.spec.whatwg.org/#js-callback-interface" } }, - "#es-union": { + "#js-constants": { "current": { - "number": "3.2.24", + "number": "3.7.5", "spec": "Web IDL", - "text": "Union types", - "url": "https://webidl.spec.whatwg.org/#es-union" + "text": "Constants", + "url": "https://webidl.spec.whatwg.org/#js-constants" } }, - "#es-unrestricted-double": { + "#js-creating-throwing-exceptions": { "current": { - "number": "3.2.8", + "number": "3.14.3", "spec": "Web IDL", - "text": "unrestricted double", - "url": "https://webidl.spec.whatwg.org/#es-unrestricted-double" + "text": "Creating and throwing exceptions", + "url": "https://webidl.spec.whatwg.org/#js-creating-throwing-exceptions" } }, - "#es-unrestricted-float": { + "#js-default-asynchronous-iterator-object": { "current": { - "number": "3.2.6", + "number": "3.7.10.1", "spec": "Web IDL", - "text": "unrestricted float", - "url": "https://webidl.spec.whatwg.org/#es-unrestricted-float" + "text": "Default asynchronous iterator objects", + "url": "https://webidl.spec.whatwg.org/#js-default-asynchronous-iterator-object" } }, - "#es-unsigned-long": { + "#js-default-iterator-object": { "current": { - "number": "3.2.4.6", + "number": "3.7.9.1", "spec": "Web IDL", - "text": "unsigned long", - "url": "https://webidl.spec.whatwg.org/#es-unsigned-long" + "text": "Default iterator objects", + "url": "https://webidl.spec.whatwg.org/#js-default-iterator-object" } }, - "#es-unsigned-long-long": { + "#js-default-operations": { "current": { - "number": "3.2.4.8", + "number": "3.7.7.1", "spec": "Web IDL", - "text": "unsigned long long", - "url": "https://webidl.spec.whatwg.org/#es-unsigned-long-long" + "text": "Default operations", + "url": "https://webidl.spec.whatwg.org/#js-default-operations" } }, - "#es-unsigned-short": { + "#js-default-tojson": { "current": { - "number": "3.2.4.4", + "number": "3.7.7.1.1", "spec": "Web IDL", - "text": "unsigned short", - "url": "https://webidl.spec.whatwg.org/#es-unsigned-short" + "text": "Default toJSON operation", + "url": "https://webidl.spec.whatwg.org/#js-default-tojson" } }, - "#es-user-objects": { + "#js-dictionary": { "current": { - "number": "3.11", + "number": "3.2.17", "spec": "Web IDL", - "text": "Callback interfaces", - "url": "https://webidl.spec.whatwg.org/#es-user-objects" + "text": "Dictionary types", + "url": "https://webidl.spec.whatwg.org/#js-dictionary" } }, - "#extensibility": { + "#js-double": { "current": { - "number": "5", + "number": "3.2.7", "spec": "Web IDL", - "text": "Extensibility", - "url": "https://webidl.spec.whatwg.org/#extensibility" + "text": "double", + "url": "https://webidl.spec.whatwg.org/#js-double" } }, - "#idl": { + "#js-enumeration": { "current": { - "number": "2", + "number": "3.2.18", "spec": "Web IDL", - "text": "Interface definition language", - "url": "https://webidl.spec.whatwg.org/#idl" + "text": "Enumeration types", + "url": "https://webidl.spec.whatwg.org/#js-enumeration" } }, - "#idl-ByteString": { + "#js-environment": { "current": { - "number": "2.13.18", + "number": "3.1", "spec": "Web IDL", - "text": "ByteString", - "url": "https://webidl.spec.whatwg.org/#idl-ByteString" + "text": "JavaScript environment", + "url": "https://webidl.spec.whatwg.org/#js-environment" } }, - "#idl-DOMException": { + "#js-exception-objects": { "current": { - "number": "4.3", + "number": "3.14.2", "spec": "Web IDL", - "text": "DOMException", - "url": "https://webidl.spec.whatwg.org/#idl-DOMException" + "text": "Exception objects", + "url": "https://webidl.spec.whatwg.org/#js-exception-objects" } }, - "#idl-DOMException-error-names": { + "#js-exceptions": { "current": { - "number": "2.8.1", + "number": "3.14", "spec": "Web IDL", - "text": "Error names", - "url": "https://webidl.spec.whatwg.org/#idl-DOMException-error-names" + "text": "Exceptions", + "url": "https://webidl.spec.whatwg.org/#js-exceptions" } }, - "#idl-DOMString": { + "#js-extended-attributes": { "current": { - "number": "2.13.17", + "number": "3.3", "spec": "Web IDL", - "text": "DOMString", - "url": "https://webidl.spec.whatwg.org/#idl-DOMString" + "text": "Extended attributes", + "url": "https://webidl.spec.whatwg.org/#js-extended-attributes" } }, - "#idl-USVString": { + "#js-float": { "current": { - "number": "2.13.19", + "number": "3.2.5", "spec": "Web IDL", - "text": "USVString", - "url": "https://webidl.spec.whatwg.org/#idl-USVString" + "text": "float", + "url": "https://webidl.spec.whatwg.org/#js-float" } }, - "#idl-annotated-types": { + "#js-frozen-array": { "current": { - "number": "2.13.32", + "number": "3.2.26", "spec": "Web IDL", - "text": "Annotated types", - "url": "https://webidl.spec.whatwg.org/#idl-annotated-types" + "text": "Frozen arrays — FrozenArray<T>", + "url": "https://webidl.spec.whatwg.org/#js-frozen-array" } }, - "#idl-any": { + "#js-handling-exceptions": { "current": { - "number": "2.13.1", + "number": "3.14.4", "spec": "Web IDL", - "text": "any", - "url": "https://webidl.spec.whatwg.org/#idl-any" + "text": "Handling exceptions", + "url": "https://webidl.spec.whatwg.org/#js-handling-exceptions" } }, - "#idl-async-iterable": { + "#js-integer-types": { "current": { - "number": "2.5.10", + "number": "3.2.4", "spec": "Web IDL", - "text": "Asynchronously iterable declarations", - "url": "https://webidl.spec.whatwg.org/#idl-async-iterable" + "text": "Integer types", + "url": "https://webidl.spec.whatwg.org/#js-integer-types" } }, - "#idl-attributes": { + "#js-integer-types-abstract-ops": { "current": { - "number": "2.5.2", + "number": "3.2.4.9", "spec": "Web IDL", - "text": "Attributes", - "url": "https://webidl.spec.whatwg.org/#idl-attributes" + "text": "Abstract operations", + "url": "https://webidl.spec.whatwg.org/#js-integer-types-abstract-ops" } }, - "#idl-bigint": { + "#js-interface": { "current": { - "number": "2.13.16", + "number": "3.2.15", "spec": "Web IDL", - "text": "bigint", - "url": "https://webidl.spec.whatwg.org/#idl-bigint" + "text": "Interface types", + "url": "https://webidl.spec.whatwg.org/#js-interface" } }, - "#idl-boolean": { + "#js-interfaces": { "current": { - "number": "2.13.3", + "number": "3.7", "spec": "Web IDL", - "text": "boolean", - "url": "https://webidl.spec.whatwg.org/#idl-boolean" + "text": "Interfaces", + "url": "https://webidl.spec.whatwg.org/#js-interfaces" } }, - "#idl-buffer-source-types": { + "#js-invoking-callback-functions": { "current": { - "number": "2.13.33", + "number": "3.12", "spec": "Web IDL", - "text": "Buffer source types", - "url": "https://webidl.spec.whatwg.org/#idl-buffer-source-types" + "text": "Invoking callback functions", + "url": "https://webidl.spec.whatwg.org/#js-invoking-callback-functions" } }, - "#idl-byte": { + "#js-iterable": { "current": { - "number": "2.13.4", + "number": "3.7.9", "spec": "Web IDL", - "text": "byte", - "url": "https://webidl.spec.whatwg.org/#idl-byte" + "text": "Iterable declarations", + "url": "https://webidl.spec.whatwg.org/#js-iterable" } }, - "#idl-callback-function": { + "#js-iterator-prototype-object": { "current": { - "number": "2.13.26", + "number": "3.7.9.2", "spec": "Web IDL", - "text": "Callback function types", - "url": "https://webidl.spec.whatwg.org/#idl-callback-function" + "text": "Iterator prototype object", + "url": "https://webidl.spec.whatwg.org/#js-iterator-prototype-object" } }, - "#idl-callback-functions": { + "#js-legacy-extended-attributes": { "current": { - "number": "2.10", + "number": "3.4", "spec": "Web IDL", - "text": "Callback functions", - "url": "https://webidl.spec.whatwg.org/#idl-callback-functions" + "text": "Legacy extended attributes", + "url": "https://webidl.spec.whatwg.org/#js-legacy-extended-attributes" } }, - "#idl-callback-interface": { + "#js-legacy-platform-objects": { "current": { - "number": "2.13.23", + "number": "3.9", "spec": "Web IDL", - "text": "Callback interface types", - "url": "https://webidl.spec.whatwg.org/#idl-callback-interface" + "text": "Legacy platform objects", + "url": "https://webidl.spec.whatwg.org/#js-legacy-platform-objects" } }, - "#idl-callback-interfaces": { + "#js-long": { "current": { - "number": "2.4", + "number": "3.2.4.5", "spec": "Web IDL", - "text": "Callback interfaces", - "url": "https://webidl.spec.whatwg.org/#idl-callback-interfaces" + "text": "long", + "url": "https://webidl.spec.whatwg.org/#js-long" } }, - "#idl-constants": { + "#js-long-long": { "current": { - "number": "2.5.1", + "number": "3.2.4.7", "spec": "Web IDL", - "text": "Constants", - "url": "https://webidl.spec.whatwg.org/#idl-constants" + "text": "long long", + "url": "https://webidl.spec.whatwg.org/#js-long-long" } }, - "#idl-constructors": { + "#js-map-clear": { "current": { - "number": "2.5.4", + "number": "3.7.11.11", "spec": "Web IDL", - "text": "Constructor operations", - "url": "https://webidl.spec.whatwg.org/#idl-constructors" + "text": "clear", + "url": "https://webidl.spec.whatwg.org/#js-map-clear" } }, - "#idl-dictionaries": { + "#js-map-delete": { "current": { - "number": "2.7", + "number": "3.7.11.10", "spec": "Web IDL", - "text": "Dictionaries", - "url": "https://webidl.spec.whatwg.org/#idl-dictionaries" + "text": "delete", + "url": "https://webidl.spec.whatwg.org/#js-map-delete" } }, - "#idl-dictionary": { + "#js-map-entries": { "current": { - "number": "2.13.24", + "number": "3.7.11.3", "spec": "Web IDL", - "text": "Dictionary types", - "url": "https://webidl.spec.whatwg.org/#idl-dictionary" + "text": "entries", + "url": "https://webidl.spec.whatwg.org/#js-map-entries" } }, - "#idl-double": { + "#js-map-forEach": { "current": { - "number": "2.13.14", + "number": "3.7.11.6", "spec": "Web IDL", - "text": "double", - "url": "https://webidl.spec.whatwg.org/#idl-double" + "text": "forEach", + "url": "https://webidl.spec.whatwg.org/#js-map-forEach" } }, - "#idl-enumeration": { + "#js-map-get": { "current": { - "number": "2.13.25", + "number": "3.7.11.7", "spec": "Web IDL", - "text": "Enumeration types", - "url": "https://webidl.spec.whatwg.org/#idl-enumeration" + "text": "get", + "url": "https://webidl.spec.whatwg.org/#js-map-get" } }, - "#idl-enums": { + "#js-map-has": { "current": { - "number": "2.9", + "number": "3.7.11.8", "spec": "Web IDL", - "text": "Enumerations", - "url": "https://webidl.spec.whatwg.org/#idl-enums" + "text": "has", + "url": "https://webidl.spec.whatwg.org/#js-map-has" } }, - "#idl-exceptions": { + "#js-map-iterator": { "current": { - "number": "2.8", + "number": "3.7.11.2", "spec": "Web IDL", - "text": "Exceptions", - "url": "https://webidl.spec.whatwg.org/#idl-exceptions" + "text": "%Symbol.iterator%", + "url": "https://webidl.spec.whatwg.org/#js-map-iterator" } }, - "#idl-extended-attributes": { + "#js-map-keys": { "current": { - "number": "2.14", + "number": "3.7.11.4", "spec": "Web IDL", - "text": "Extended attributes", - "url": "https://webidl.spec.whatwg.org/#idl-extended-attributes" + "text": "keys", + "url": "https://webidl.spec.whatwg.org/#js-map-keys" } }, - "#idl-float": { + "#js-map-set": { "current": { - "number": "2.13.12", + "number": "3.7.11.9", "spec": "Web IDL", - "text": "float", - "url": "https://webidl.spec.whatwg.org/#idl-float" + "text": "set", + "url": "https://webidl.spec.whatwg.org/#js-map-set" } }, - "#idl-frozen-array": { + "#js-map-size": { "current": { - "number": "2.13.34", + "number": "3.7.11.1", "spec": "Web IDL", - "text": "Frozen array types — FrozenArray<T>", - "url": "https://webidl.spec.whatwg.org/#idl-frozen-array" + "text": "size", + "url": "https://webidl.spec.whatwg.org/#js-map-size" } }, - "#idl-grammar": { + "#js-map-values": { "current": { - "number": "", + "number": "3.7.11.5", "spec": "Web IDL", - "text": "IDL grammar", - "url": "https://webidl.spec.whatwg.org/#idl-grammar" + "text": "values", + "url": "https://webidl.spec.whatwg.org/#js-map-values" } }, - "#idl-index": { + "#js-maplike": { "current": { - "number": "", + "number": "3.7.11", "spec": "Web IDL", - "text": "IDL Index", - "url": "https://webidl.spec.whatwg.org/#idl-index" + "text": "Maplike declarations", + "url": "https://webidl.spec.whatwg.org/#js-maplike" } }, - "#idl-indexed-properties": { + "#js-namespaces": { "current": { - "number": "2.5.6.1", + "number": "3.13", "spec": "Web IDL", - "text": "Indexed properties", - "url": "https://webidl.spec.whatwg.org/#idl-indexed-properties" + "text": "Namespaces", + "url": "https://webidl.spec.whatwg.org/#js-namespaces" } }, - "#idl-interface": { + "#js-nullable-type": { "current": { - "number": "2.13.22", + "number": "3.2.20", "spec": "Web IDL", - "text": "Interface types", - "url": "https://webidl.spec.whatwg.org/#idl-interface" + "text": "Nullable types — T?", + "url": "https://webidl.spec.whatwg.org/#js-nullable-type" } }, - "#idl-interface-mixins": { + "#js-object": { "current": { - "number": "2.3", + "number": "3.2.13", "spec": "Web IDL", - "text": "Interface mixins", - "url": "https://webidl.spec.whatwg.org/#idl-interface-mixins" + "text": "object", + "url": "https://webidl.spec.whatwg.org/#js-object" } }, - "#idl-interfaces": { + "#js-observable-array": { "current": { - "number": "2.2", + "number": "3.2.27", "spec": "Web IDL", - "text": "Interfaces", - "url": "https://webidl.spec.whatwg.org/#idl-interfaces" + "text": "Observable arrays — ObservableArray<T>", + "url": "https://webidl.spec.whatwg.org/#js-observable-array" } }, - "#idl-iterable": { + "#js-observable-array-abstract-operations": { "current": { - "number": "2.5.9", + "number": "3.10.9", "spec": "Web IDL", - "text": "Iterable declarations", - "url": "https://webidl.spec.whatwg.org/#idl-iterable" + "text": "Abstract operations", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-abstract-operations" } }, - "#idl-long": { + "#js-observable-array-defineProperty": { "current": { - "number": "2.13.8", + "number": "3.10.1", "spec": "Web IDL", - "text": "long", - "url": "https://webidl.spec.whatwg.org/#idl-long" + "text": "defineProperty", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-defineProperty" } }, - "#idl-long-long": { + "#js-observable-array-deleteProperty": { "current": { - "number": "2.13.10", + "number": "3.10.2", "spec": "Web IDL", - "text": "long long", - "url": "https://webidl.spec.whatwg.org/#idl-long-long" + "text": "deleteProperty", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-deleteProperty" } }, - "#idl-maplike": { + "#js-observable-array-get": { "current": { - "number": "2.5.11", + "number": "3.10.3", "spec": "Web IDL", - "text": "Maplike declarations", - "url": "https://webidl.spec.whatwg.org/#idl-maplike" + "text": "get", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-get" } }, - "#idl-members": { + "#js-observable-array-getOwnPropertyDescriptor": { "current": { - "number": "2.5", + "number": "3.10.4", "spec": "Web IDL", - "text": "Members", - "url": "https://webidl.spec.whatwg.org/#idl-members" + "text": "getOwnPropertyDescriptor", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-getOwnPropertyDescriptor" } }, - "#idl-named-properties": { + "#js-observable-array-has": { "current": { - "number": "2.5.6.2", + "number": "3.10.5", "spec": "Web IDL", - "text": "Named properties", - "url": "https://webidl.spec.whatwg.org/#idl-named-properties" + "text": "has", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-has" } }, - "#idl-names": { + "#js-observable-array-ownKeys": { "current": { - "number": "2.1", + "number": "3.10.6", "spec": "Web IDL", - "text": "Names", - "url": "https://webidl.spec.whatwg.org/#idl-names" + "text": "ownKeys", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-ownKeys" } }, - "#idl-namespaces": { + "#js-observable-array-preventExtensions": { "current": { - "number": "2.6", + "number": "3.10.7", "spec": "Web IDL", - "text": "Namespaces", - "url": "https://webidl.spec.whatwg.org/#idl-namespaces" + "text": "preventExtensions", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-preventExtensions" } }, - "#idl-nullable-type": { + "#js-observable-array-set": { "current": { - "number": "2.13.27", + "number": "3.10.8", "spec": "Web IDL", - "text": "Nullable types — T?", - "url": "https://webidl.spec.whatwg.org/#idl-nullable-type" + "text": "set", + "url": "https://webidl.spec.whatwg.org/#js-observable-array-set" } }, - "#idl-object": { + "#js-observable-arrays": { "current": { - "number": "2.13.20", + "number": "3.10", "spec": "Web IDL", - "text": "object", - "url": "https://webidl.spec.whatwg.org/#idl-object" + "text": "Observable array exotic objects", + "url": "https://webidl.spec.whatwg.org/#js-observable-arrays" } }, - "#idl-objects": { + "#js-octet": { "current": { - "number": "2.12", + "number": "3.2.4.2", "spec": "Web IDL", - "text": "Objects implementing interfaces", - "url": "https://webidl.spec.whatwg.org/#idl-objects" + "text": "octet", + "url": "https://webidl.spec.whatwg.org/#js-octet" } }, - "#idl-observable-array": { + "#js-operations": { "current": { - "number": "2.13.35", + "number": "3.7.7", "spec": "Web IDL", - "text": "Observable array types — ObservableArray<T>", - "url": "https://webidl.spec.whatwg.org/#idl-observable-array" + "text": "Operations", + "url": "https://webidl.spec.whatwg.org/#js-operations" } }, - "#idl-octet": { + "#js-overloads": { "current": { - "number": "2.13.5", + "number": "3.6", "spec": "Web IDL", - "text": "octet", - "url": "https://webidl.spec.whatwg.org/#idl-octet" + "text": "Overload resolution algorithm", + "url": "https://webidl.spec.whatwg.org/#js-overloads" } }, - "#idl-operations": { + "#js-platform-objects": { "current": { - "number": "2.5.3", + "number": "3.8", "spec": "Web IDL", - "text": "Operations", - "url": "https://webidl.spec.whatwg.org/#idl-operations" + "text": "Platform objects implementing interfaces", + "url": "https://webidl.spec.whatwg.org/#js-platform-objects" } }, - "#idl-overloading": { + "#js-promise": { "current": { - "number": "2.5.8", + "number": "3.2.23", "spec": "Web IDL", - "text": "Overloading", - "url": "https://webidl.spec.whatwg.org/#idl-overloading" + "text": "Promise types — Promise<T>", + "url": "https://webidl.spec.whatwg.org/#js-promise" } }, - "#idl-overloading-vs-union": { + "#js-promise-examples": { "current": { - "number": "2.5.8.1", + "number": "3.2.23.2", "spec": "Web IDL", - "text": "Overloading vs. union types", - "url": "https://webidl.spec.whatwg.org/#idl-overloading-vs-union" + "text": "Examples", + "url": "https://webidl.spec.whatwg.org/#js-promise-examples" } }, - "#idl-promise": { + "#js-promise-manipulation": { "current": { - "number": "2.13.30", + "number": "3.2.23.1", "spec": "Web IDL", - "text": "Promise types — Promise<T>", - "url": "https://webidl.spec.whatwg.org/#idl-promise" + "text": "Creating and manipulating Promises", + "url": "https://webidl.spec.whatwg.org/#js-promise-manipulation" } }, - "#idl-record": { + "#js-record": { "current": { - "number": "2.13.29", + "number": "3.2.22", "spec": "Web IDL", - "text": "Record types — record<K, V>", - "url": "https://webidl.spec.whatwg.org/#idl-record" + "text": "Records — record<K, V>", + "url": "https://webidl.spec.whatwg.org/#js-record" } }, - "#idl-sequence": { + "#js-security": { "current": { - "number": "2.13.28", + "number": "3.5", "spec": "Web IDL", - "text": "Sequence types — sequence<T>", - "url": "https://webidl.spec.whatwg.org/#idl-sequence" + "text": "Security", + "url": "https://webidl.spec.whatwg.org/#js-security" } }, - "#idl-setlike": { + "#js-sequence": { "current": { - "number": "2.5.12", + "number": "3.2.21", "spec": "Web IDL", - "text": "Setlike declarations", - "url": "https://webidl.spec.whatwg.org/#idl-setlike" + "text": "Sequences — sequence<T>", + "url": "https://webidl.spec.whatwg.org/#js-sequence" } }, - "#idl-short": { + "#js-set-add": { "current": { - "number": "2.13.6", + "number": "3.7.12.8", "spec": "Web IDL", - "text": "short", - "url": "https://webidl.spec.whatwg.org/#idl-short" + "text": "add", + "url": "https://webidl.spec.whatwg.org/#js-set-add" } }, - "#idl-special-operations": { + "#js-set-clear": { "current": { - "number": "2.5.6", + "number": "3.7.12.10", "spec": "Web IDL", - "text": "Special operations", - "url": "https://webidl.spec.whatwg.org/#idl-special-operations" + "text": "clear", + "url": "https://webidl.spec.whatwg.org/#js-set-clear" } }, - "#idl-static-attributes-and-operations": { + "#js-set-delete": { "current": { - "number": "2.5.7", + "number": "3.7.12.9", "spec": "Web IDL", - "text": "Static attributes and operations", - "url": "https://webidl.spec.whatwg.org/#idl-static-attributes-and-operations" + "text": "delete", + "url": "https://webidl.spec.whatwg.org/#js-set-delete" } }, - "#idl-stringifiers": { + "#js-set-entries": { "current": { - "number": "2.5.5", + "number": "3.7.12.3", "spec": "Web IDL", - "text": "Stringifiers", - "url": "https://webidl.spec.whatwg.org/#idl-stringifiers" + "text": "entries", + "url": "https://webidl.spec.whatwg.org/#js-set-entries" } }, - "#idl-symbol": { + "#js-set-forEach": { "current": { - "number": "2.13.21", + "number": "3.7.12.6", "spec": "Web IDL", - "text": "symbol", - "url": "https://webidl.spec.whatwg.org/#idl-symbol" + "text": "forEach", + "url": "https://webidl.spec.whatwg.org/#js-set-forEach" } }, - "#idl-tojson-operation": { + "#js-set-has": { "current": { - "number": "2.5.3.1", + "number": "3.7.12.7", "spec": "Web IDL", - "text": "toJSON", - "url": "https://webidl.spec.whatwg.org/#idl-tojson-operation" + "text": "has", + "url": "https://webidl.spec.whatwg.org/#js-set-has" } }, - "#idl-typedefs": { + "#js-set-iterator": { "current": { - "number": "2.11", + "number": "3.7.12.2", "spec": "Web IDL", - "text": "Typedefs", - "url": "https://webidl.spec.whatwg.org/#idl-typedefs" + "text": "%Symbol.iterator%", + "url": "https://webidl.spec.whatwg.org/#js-set-iterator" } }, - "#idl-types": { + "#js-set-keys": { "current": { - "number": "2.13", + "number": "3.7.12.4", "spec": "Web IDL", - "text": "Types", - "url": "https://webidl.spec.whatwg.org/#idl-types" + "text": "keys", + "url": "https://webidl.spec.whatwg.org/#js-set-keys" } }, - "#idl-undefined": { + "#js-set-size": { "current": { - "number": "2.13.2", + "number": "3.7.12.1", "spec": "Web IDL", - "text": "undefined", - "url": "https://webidl.spec.whatwg.org/#idl-undefined" + "text": "size", + "url": "https://webidl.spec.whatwg.org/#js-set-size" } }, - "#idl-union": { + "#js-set-values": { "current": { - "number": "2.13.31", + "number": "3.7.12.5", "spec": "Web IDL", - "text": "Union types", - "url": "https://webidl.spec.whatwg.org/#idl-union" + "text": "values", + "url": "https://webidl.spec.whatwg.org/#js-set-values" } }, - "#idl-unrestricted-double": { + "#js-setlike": { "current": { - "number": "2.13.15", + "number": "3.7.12", "spec": "Web IDL", - "text": "unrestricted double", - "url": "https://webidl.spec.whatwg.org/#idl-unrestricted-double" + "text": "Setlike declarations", + "url": "https://webidl.spec.whatwg.org/#js-setlike" } }, - "#idl-unrestricted-float": { + "#js-short": { "current": { - "number": "2.13.13", + "number": "3.2.4.3", "spec": "Web IDL", - "text": "unrestricted float", - "url": "https://webidl.spec.whatwg.org/#idl-unrestricted-float" + "text": "short", + "url": "https://webidl.spec.whatwg.org/#js-short" } }, - "#idl-unsigned-long": { + "#js-stringifier": { "current": { - "number": "2.13.9", + "number": "3.7.8", "spec": "Web IDL", - "text": "unsigned long", - "url": "https://webidl.spec.whatwg.org/#idl-unsigned-long" + "text": "Stringifiers", + "url": "https://webidl.spec.whatwg.org/#js-stringifier" } }, - "#idl-unsigned-long-long": { + "#js-symbol": { "current": { - "number": "2.13.11", + "number": "3.2.14", "spec": "Web IDL", - "text": "unsigned long long", - "url": "https://webidl.spec.whatwg.org/#idl-unsigned-long-long" + "text": "symbol", + "url": "https://webidl.spec.whatwg.org/#js-symbol" } }, - "#idl-unsigned-short": { + "#js-type-mapping": { "current": { - "number": "2.13.7", + "number": "3.2", "spec": "Web IDL", - "text": "unsigned short", - "url": "https://webidl.spec.whatwg.org/#idl-unsigned-short" + "text": "JavaScript type mapping", + "url": "https://webidl.spec.whatwg.org/#js-type-mapping" } }, - "#index": { + "#js-undefined": { "current": { - "number": "", + "number": "3.2.2", "spec": "Web IDL", - "text": "Index", - "url": "https://webidl.spec.whatwg.org/#index" + "text": "undefined", + "url": "https://webidl.spec.whatwg.org/#js-undefined" } }, - "#index-defined-elsewhere": { + "#js-union": { "current": { - "number": "", + "number": "3.2.24", "spec": "Web IDL", - "text": "Terms defined by reference", - "url": "https://webidl.spec.whatwg.org/#index-defined-elsewhere" + "text": "Union types", + "url": "https://webidl.spec.whatwg.org/#js-union" } }, - "#index-defined-here": { + "#js-unrestricted-double": { "current": { - "number": "", + "number": "3.2.8", "spec": "Web IDL", - "text": "Terms defined by this specification", - "url": "https://webidl.spec.whatwg.org/#index-defined-here" + "text": "unrestricted double", + "url": "https://webidl.spec.whatwg.org/#js-unrestricted-double" } }, - "#informative": { + "#js-unrestricted-float": { "current": { - "number": "", + "number": "3.2.6", "spec": "Web IDL", - "text": "Informative References", - "url": "https://webidl.spec.whatwg.org/#informative" + "text": "unrestricted float", + "url": "https://webidl.spec.whatwg.org/#js-unrestricted-float" } }, - "#interface-object": { + "#js-unsigned-long": { "current": { - "number": "3.7.1", + "number": "3.2.4.6", "spec": "Web IDL", - "text": "Interface object", - "url": "https://webidl.spec.whatwg.org/#interface-object" + "text": "unsigned long", + "url": "https://webidl.spec.whatwg.org/#js-unsigned-long" } }, - "#interface-prototype-object": { + "#js-unsigned-long-long": { "current": { - "number": "3.7.3", + "number": "3.2.4.8", "spec": "Web IDL", - "text": "Interface prototype object", - "url": "https://webidl.spec.whatwg.org/#interface-prototype-object" + "text": "unsigned long long", + "url": "https://webidl.spec.whatwg.org/#js-unsigned-long-long" } }, - "#introduction": { + "#js-unsigned-short": { "current": { - "number": "1", + "number": "3.2.4.4", "spec": "Web IDL", - "text": "Introduction", - "url": "https://webidl.spec.whatwg.org/#introduction" + "text": "unsigned short", + "url": "https://webidl.spec.whatwg.org/#js-unsigned-short" } }, - "#ipr": { + "#js-user-objects": { "current": { - "number": "", + "number": "3.11", "spec": "Web IDL", - "text": "Intellectual property rights", - "url": "https://webidl.spec.whatwg.org/#ipr" + "text": "Callback interfaces", + "url": "https://webidl.spec.whatwg.org/#js-user-objects" } }, "#legacy-callback-interface-object": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webmidi.json b/bikeshed/spec-data/readonly/headings/headings-webmidi.json index 4d0e601885..46edf26064 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webmidi.json +++ b/bikeshed/spec-data/readonly/headings/headings-webmidi.json @@ -1,86 +1,30 @@ { - "#a-simple-loopback": { + "#changelog": { "current": { - "number": "4.11.6", + "number": "8", "spec": "Web MIDI API", - "text": "A Simple Loopback", - "url": "https://webaudio.github.io/web-midi-api/#a-simple-loopback" + "text": "Changelog", + "url": "https://webaudio.github.io/web-midi-api/#changelog" }, "snapshot": { - "number": "9.6", + "number": "8", "spec": "Web MIDI API", - "text": "A Simple Loopback", - "url": "https://www.w3.org/TR/webmidi/#a-simple-loopback" + "text": "Changelog", + "url": "https://www.w3.org/TR/webmidi/#changelog" } }, - "#a-simple-monophonic-sine-wave-midi-synthesizer": { + "#changes-since-working-draft-17-march-2015": { "current": { - "number": "4.11.7", + "number": "8.1", "spec": "Web MIDI API", - "text": "A Simple Monophonic Sine Wave MIDI Synthesizer", - "url": "https://webaudio.github.io/web-midi-api/#a-simple-monophonic-sine-wave-midi-synthesizer" + "text": "Changes since Working Draft 17 March 2015", + "url": "https://webaudio.github.io/web-midi-api/#changes-since-working-draft-17-march-2015" }, - "snapshot": { - "number": "9.7", - "spec": "Web MIDI API", - "text": "A Simple Monophonic Sine Wave MIDI Synthesizer", - "url": "https://www.w3.org/TR/webmidi/#a-simple-monophonic-sine-wave-midi-synthesizer" - } - }, - "#abstract": { - "snapshot": { - "number": "", - "spec": "Web MIDI API", - "text": "Abstract", - "url": "https://www.w3.org/TR/webmidi/#abstract" - } - }, - "#attributes": { - "snapshot": { - "number": "5.1", - "spec": "Web MIDI API", - "text": "Attributes", - "url": "https://www.w3.org/TR/webmidi/#attributes" - } - }, - "#attributes-1": { - "snapshot": { - "number": "6.1", - "spec": "Web MIDI API", - "text": "Attributes", - "url": "https://www.w3.org/TR/webmidi/#attributes-1" - } - }, - "#attributes-2": { - "snapshot": { - "number": "6.3.1", - "spec": "Web MIDI API", - "text": "Attributes", - "url": "https://www.w3.org/TR/webmidi/#attributes-2" - } - }, - "#attributes-3": { - "snapshot": { - "number": "7.1", - "spec": "Web MIDI API", - "text": "Attributes", - "url": "https://www.w3.org/TR/webmidi/#attributes-3" - } - }, - "#attributes-4": { "snapshot": { "number": "8.1", "spec": "Web MIDI API", - "text": "Attributes", - "url": "https://www.w3.org/TR/webmidi/#attributes-4" - } - }, - "#callback-midisuccesscallback-parameters": { - "snapshot": { - "number": "4.5.1", - "spec": "Web MIDI API", - "text": "Callback MIDISuccessCallback Parameters", - "url": "https://www.w3.org/TR/webmidi/#callback-midisuccesscallback-parameters" + "text": "Changes since Working Draft 17 March 2015", + "url": "https://www.w3.org/TR/webmidi/#changes-since-working-draft-17-march-2015" } }, "#conformance": { @@ -97,78 +41,18 @@ "url": "https://www.w3.org/TR/webmidi/#conformance" } }, - "#dictionary-midiconnectioneventinit-members": { - "snapshot": { - "number": "8.2.1", - "spec": "Web MIDI API", - "text": "Dictionary MIDIConnectionEventInit Members", - "url": "https://www.w3.org/TR/webmidi/#dictionary-midiconnectioneventinit-members" - } - }, - "#dictionary-midimessageeventinit-members": { - "snapshot": { - "number": "7.2.1", - "spec": "Web MIDI API", - "text": "Dictionary MIDIMessageEventInit Members", - "url": "https://www.w3.org/TR/webmidi/#dictionary-midimessageeventinit-members" - } - }, - "#dictionary-midioptions-members": { - "snapshot": { - "number": "4.2.1", - "spec": "Web MIDI API", - "text": "Dictionary MIDIOptions Members", - "url": "https://www.w3.org/TR/webmidi/#dictionary-midioptions-members" - } - }, - "#examples-of-web-midi-api-usage-in-javascript": { - "current": { - "number": "4.11", - "spec": "Web MIDI API", - "text": "Examples of Web MIDI API Usage in JavaScript", - "url": "https://webaudio.github.io/web-midi-api/#examples-of-web-midi-api-usage-in-javascript" - }, - "snapshot": { - "number": "9", - "spec": "Web MIDI API", - "text": "Examples of Web MIDI API Usage in JavaScript", - "url": "https://www.w3.org/TR/webmidi/#examples-of-web-midi-api-usage-in-javascript" - } - }, "#extensions-to-the-navigator-interface": { "current": { "number": "4.3", "spec": "Web MIDI API", "text": "Extensions to the Navigator interface", "url": "https://webaudio.github.io/web-midi-api/#extensions-to-the-navigator-interface" - } - }, - "#getting-access-to-the-midi-system": { - "current": { - "number": "4.11.1", - "spec": "Web MIDI API", - "text": "Getting Access to the MIDI System", - "url": "https://webaudio.github.io/web-midi-api/#getting-access-to-the-midi-system" - }, - "snapshot": { - "number": "9.1", - "spec": "Web MIDI API", - "text": "Getting Access to the MIDI System", - "url": "https://www.w3.org/TR/webmidi/#getting-access-to-the-midi-system" - } - }, - "#handling-midi-input": { - "current": { - "number": "4.11.4", - "spec": "Web MIDI API", - "text": "Handling MIDI Input", - "url": "https://webaudio.github.io/web-midi-api/#handling-midi-input" }, "snapshot": { - "number": "9.4", + "number": "4.3", "spec": "Web MIDI API", - "text": "Handling MIDI Input", - "url": "https://www.w3.org/TR/webmidi/#handling-midi-input" + "text": "Extensions to the Navigator interface", + "url": "https://www.w3.org/TR/webmidi/#extensions-to-the-navigator-interface" } }, "#introduction": { @@ -185,69 +69,15 @@ "url": "https://www.w3.org/TR/webmidi/#introduction" } }, - "#listing-inputs-and-outputs": { - "current": { - "number": "4.11.3", - "spec": "Web MIDI API", - "text": "Listing Inputs and Outputs", - "url": "https://webaudio.github.io/web-midi-api/#listing-inputs-and-outputs" - }, - "snapshot": { - "number": "9.3", - "spec": "Web MIDI API", - "text": "Listing Inputs and Outputs", - "url": "https://www.w3.org/TR/webmidi/#listing-inputs-and-outputs" - } - }, - "#maplike": { - "snapshot": { - "number": "4.3.1", - "spec": "Web MIDI API", - "text": "Maplike", - "url": "https://www.w3.org/TR/webmidi/#maplike" - } - }, - "#maplike-1": { - "snapshot": { - "number": "4.4.1", - "spec": "Web MIDI API", - "text": "Maplike", - "url": "https://www.w3.org/TR/webmidi/#maplike-1" - } - }, - "#methods": { - "snapshot": { - "number": "4.1.1", - "spec": "Web MIDI API", - "text": "Methods", - "url": "https://www.w3.org/TR/webmidi/#methods" - } - }, - "#methods-1": { - "snapshot": { - "number": "6.2", - "spec": "Web MIDI API", - "text": "Methods", - "url": "https://www.w3.org/TR/webmidi/#methods-1" - } - }, - "#methods-2": { - "snapshot": { - "number": "6.4.1", - "spec": "Web MIDI API", - "text": "Methods", - "url": "https://www.w3.org/TR/webmidi/#methods-2" - } - }, "#midiaccess-interface": { "current": { - "number": "4.7", + "number": "5.3", "spec": "Web MIDI API", "text": "MIDIAccess Interface", "url": "https://webaudio.github.io/web-midi-api/#midiaccess-interface" }, "snapshot": { - "number": "5", + "number": "5.3", "spec": "Web MIDI API", "text": "MIDIAccess Interface", "url": "https://www.w3.org/TR/webmidi/#midiaccess-interface" @@ -255,13 +85,13 @@ }, "#midiconnectionevent-interface": { "current": { - "number": "4.10", + "number": "5.6", "spec": "Web MIDI API", "text": "MIDIConnectionEvent Interface", "url": "https://webaudio.github.io/web-midi-api/#midiconnectionevent-interface" }, "snapshot": { - "number": "8", + "number": "5.6", "spec": "Web MIDI API", "text": "MIDIConnectionEvent Interface", "url": "https://www.w3.org/TR/webmidi/#midiconnectionevent-interface" @@ -269,29 +99,27 @@ }, "#midiconnectioneventinit-dictionary": { "current": { - "number": "4.10.1", + "number": "5.6.1", "spec": "Web MIDI API", "text": "MIDIConnectionEventInit Dictionary", "url": "https://webaudio.github.io/web-midi-api/#midiconnectioneventinit-dictionary" - } - }, - "#midiconnectioneventinit-interface": { + }, "snapshot": { - "number": "8.2", + "number": "5.6.1", "spec": "Web MIDI API", - "text": "MIDIConnectionEventInit Interface", - "url": "https://www.w3.org/TR/webmidi/#midiconnectioneventinit-interface" + "text": "MIDIConnectionEventInit Dictionary", + "url": "https://www.w3.org/TR/webmidi/#midiconnectioneventinit-dictionary" } }, "#midiinput-interface": { "current": { - "number": "4.8.1", + "number": "5.4.1", "spec": "Web MIDI API", "text": "MIDIInput Interface", "url": "https://webaudio.github.io/web-midi-api/#midiinput-interface" }, "snapshot": { - "number": "6.3", + "number": "5.4.1", "spec": "Web MIDI API", "text": "MIDIInput Interface", "url": "https://www.w3.org/TR/webmidi/#midiinput-interface" @@ -299,13 +127,13 @@ }, "#midiinputmap-interface": { "current": { - "number": "4.5", + "number": "5.1", "spec": "Web MIDI API", "text": "MIDIInputMap Interface", "url": "https://webaudio.github.io/web-midi-api/#midiinputmap-interface" }, "snapshot": { - "number": "4.3", + "number": "5.1", "spec": "Web MIDI API", "text": "MIDIInputMap Interface", "url": "https://www.w3.org/TR/webmidi/#midiinputmap-interface" @@ -313,13 +141,13 @@ }, "#midimessageevent-interface": { "current": { - "number": "4.9", + "number": "5.5", "spec": "Web MIDI API", "text": "MIDIMessageEvent Interface", "url": "https://webaudio.github.io/web-midi-api/#midimessageevent-interface" }, "snapshot": { - "number": "7", + "number": "5.5", "spec": "Web MIDI API", "text": "MIDIMessageEvent Interface", "url": "https://www.w3.org/TR/webmidi/#midimessageevent-interface" @@ -327,43 +155,41 @@ }, "#midimessageeventinit-dictionary": { "current": { - "number": "4.9.1", + "number": "5.5.1", "spec": "Web MIDI API", "text": "MIDIMessageEventInit Dictionary", "url": "https://webaudio.github.io/web-midi-api/#midimessageeventinit-dictionary" - } - }, - "#midimessageeventinit-interface": { + }, "snapshot": { - "number": "7.2", + "number": "5.5.1", "spec": "Web MIDI API", - "text": "MIDIMessageEventInit Interface", - "url": "https://www.w3.org/TR/webmidi/#midimessageeventinit-interface" + "text": "MIDIMessageEventInit Dictionary", + "url": "https://www.w3.org/TR/webmidi/#midimessageeventinit-dictionary" } }, "#midioptions-dictionary": { "current": { - "number": "4.4", + "number": "4.3.1", "spec": "Web MIDI API", "text": "MIDIOptions Dictionary", "url": "https://webaudio.github.io/web-midi-api/#midioptions-dictionary" }, "snapshot": { - "number": "4.2", + "number": "4.3.1", "spec": "Web MIDI API", - "text": "MIDIOptions dictionary", + "text": "MIDIOptions Dictionary", "url": "https://www.w3.org/TR/webmidi/#midioptions-dictionary" } }, "#midioutput-interface": { "current": { - "number": "4.8.2", + "number": "5.4.2", "spec": "Web MIDI API", "text": "MIDIOutput Interface", "url": "https://webaudio.github.io/web-midi-api/#midioutput-interface" }, "snapshot": { - "number": "6.4", + "number": "5.4.2", "spec": "Web MIDI API", "text": "MIDIOutput Interface", "url": "https://www.w3.org/TR/webmidi/#midioutput-interface" @@ -371,13 +197,13 @@ }, "#midioutputmap-interface": { "current": { - "number": "4.6", + "number": "5.2", "spec": "Web MIDI API", "text": "MIDIOutputMap Interface", "url": "https://webaudio.github.io/web-midi-api/#midioutputmap-interface" }, "snapshot": { - "number": "4.4", + "number": "5.2", "spec": "Web MIDI API", "text": "MIDIOutputMap Interface", "url": "https://www.w3.org/TR/webmidi/#midioutputmap-interface" @@ -385,13 +211,13 @@ }, "#midiport-interface": { "current": { - "number": "4.8", + "number": "5.4", "spec": "Web MIDI API", "text": "MIDIPort Interface", "url": "https://webaudio.github.io/web-midi-api/#midiport-interface" }, "snapshot": { - "number": "6", + "number": "5.4", "spec": "Web MIDI API", "text": "MIDIPort Interface", "url": "https://www.w3.org/TR/webmidi/#midiport-interface" @@ -399,34 +225,44 @@ }, "#midiportconnectionstate-enum": { "current": { - "number": "4.8.5", + "number": "5.4.5", "spec": "Web MIDI API", "text": "MIDIPortConnectionState Enum", "url": "https://webaudio.github.io/web-midi-api/#midiportconnectionstate-enum" + }, + "snapshot": { + "number": "5.4.5", + "spec": "Web MIDI API", + "text": "MIDIPortConnectionState Enum", + "url": "https://www.w3.org/TR/webmidi/#midiportconnectionstate-enum" } }, "#midiportdevicestate-enum": { "current": { - "number": "4.8.4", + "number": "5.4.4", "spec": "Web MIDI API", "text": "MIDIPortDeviceState Enum", "url": "https://webaudio.github.io/web-midi-api/#midiportdevicestate-enum" + }, + "snapshot": { + "number": "5.4.4", + "spec": "Web MIDI API", + "text": "MIDIPortDeviceState Enum", + "url": "https://www.w3.org/TR/webmidi/#midiportdevicestate-enum" } }, "#midiporttype-enum": { "current": { - "number": "4.8.3", + "number": "5.4.3", "spec": "Web MIDI API", "text": "MIDIPortType Enum", "url": "https://webaudio.github.io/web-midi-api/#midiporttype-enum" - } - }, - "#midisuccesscallback": { + }, "snapshot": { - "number": "4.5", + "number": "5.4.3", "spec": "Web MIDI API", - "text": "MIDISuccessCallback", - "url": "https://www.w3.org/TR/webmidi/#midisuccesscallback" + "text": "MIDIPortType Enum", + "url": "https://www.w3.org/TR/webmidi/#midiporttype-enum" } }, "#normative-references": { @@ -463,6 +299,12 @@ "spec": "Web MIDI API", "text": "Permissions Integration", "url": "https://webaudio.github.io/web-midi-api/#permissions-integration" + }, + "snapshot": { + "number": "4.1", + "spec": "Web MIDI API", + "text": "Permissions Integration", + "url": "https://www.w3.org/TR/webmidi/#permissions-integration" } }, "#permissions-policy-integration": { @@ -471,86 +313,54 @@ "spec": "Web MIDI API", "text": "Permissions Policy Integration", "url": "https://webaudio.github.io/web-midi-api/#permissions-policy-integration" - } - }, - "#references": { - "current": { - "number": "A", - "spec": "Web MIDI API", - "text": "References", - "url": "https://webaudio.github.io/web-midi-api/#references" }, "snapshot": { - "number": "A", + "number": "4.2", "spec": "Web MIDI API", - "text": "References", - "url": "https://www.w3.org/TR/webmidi/#references" + "text": "Permissions Policy Integration", + "url": "https://www.w3.org/TR/webmidi/#permissions-policy-integration" } }, - "#requesting-access-to-the-midi-system-with-system-exclusive-support": { + "#privacy-considerations": { "current": { - "number": "4.11.2", + "number": "6", "spec": "Web MIDI API", - "text": "Requesting Access to the MIDI System with System Exclusive Support", - "url": "https://webaudio.github.io/web-midi-api/#requesting-access-to-the-midi-system-with-system-exclusive-support" + "text": "Privacy Considerations", + "url": "https://webaudio.github.io/web-midi-api/#privacy-considerations" }, "snapshot": { - "number": "9.2", - "spec": "Web MIDI API", - "text": "Requesting Access to the MIDI System with System Exclusive Support", - "url": "https://www.w3.org/TR/webmidi/#requesting-access-to-the-midi-system-with-system-exclusive-support" - } - }, - "#requestmidiaccess": { - "snapshot": { - "number": "4.1", - "spec": "Web MIDI API", - "text": "requestMIDIAccess()", - "url": "https://www.w3.org/TR/webmidi/#requestmidiaccess" - } - }, - "#respecDocument": { - "snapshot": { - "number": "", + "number": "6", "spec": "Web MIDI API", - "text": "Web MIDI API", - "url": "https://www.w3.org/TR/webmidi/#respecDocument" + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/webmidi/#privacy-considerations" } }, - "#security-and-privacy-considerations-of-midi": { + "#references": { "current": { - "number": "4.12", + "number": "A", "spec": "Web MIDI API", - "text": "Security and Privacy Considerations of MIDI", - "url": "https://webaudio.github.io/web-midi-api/#security-and-privacy-considerations-of-midi" + "text": "References", + "url": "https://webaudio.github.io/web-midi-api/#references" }, "snapshot": { - "number": "", + "number": "A", "spec": "Web MIDI API", - "text": "10. Security and Privacy Considerations of MIDI", - "url": "https://www.w3.org/TR/webmidi/#security-and-privacy-considerations-of-midi" + "text": "References", + "url": "https://www.w3.org/TR/webmidi/#references" } }, - "#sending-midi-messages-to-an-output-device": { + "#security-considerations": { "current": { - "number": "4.11.5", + "number": "7", "spec": "Web MIDI API", - "text": "Sending MIDI Messages to an Output Device", - "url": "https://webaudio.github.io/web-midi-api/#sending-midi-messages-to-an-output-device" + "text": "Security Considerations", + "url": "https://webaudio.github.io/web-midi-api/#security-considerations" }, "snapshot": { - "number": "9.5", - "spec": "Web MIDI API", - "text": "Sending MIDI Messages to an Output Device", - "url": "https://www.w3.org/TR/webmidi/#sending-midi-messages-to-an-output-device" - } - }, - "#sotd": { - "snapshot": { - "number": "", + "number": "7", "spec": "Web MIDI API", - "text": "Status of This Document", - "url": "https://www.w3.org/TR/webmidi/#sotd" + "text": "Security Considerations", + "url": "https://www.w3.org/TR/webmidi/#security-considerations" } }, "#terminology": { @@ -567,12 +377,32 @@ "url": "https://www.w3.org/TR/webmidi/#terminology" } }, + "#the-midi-api": { + "current": { + "number": "5", + "spec": "Web MIDI API", + "text": "The MIDI API", + "url": "https://webaudio.github.io/web-midi-api/#the-midi-api" + }, + "snapshot": { + "number": "5", + "spec": "Web MIDI API", + "text": "The MIDI API", + "url": "https://www.w3.org/TR/webmidi/#the-midi-api" + } + }, "#title": { "current": { "number": "", "spec": "Web MIDI API", "text": "Web MIDI API", "url": "https://webaudio.github.io/web-midi-api/#title" + }, + "snapshot": { + "number": "", + "spec": "Web MIDI API", + "text": "Web MIDI API", + "url": "https://www.w3.org/TR/webmidi/#title" } }, "#toc": { @@ -588,13 +418,5 @@ "text": "Table of Contents", "url": "https://www.w3.org/TR/webmidi/#toc" } - }, - "#w3c-working-draft-17-march-2015": { - "snapshot": { - "number": "", - "spec": "Web MIDI API", - "text": "W3C Working Draft 17 March 2015", - "url": "https://www.w3.org/TR/webmidi/#w3c-working-draft-17-march-2015" - } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webnn.json b/bikeshed/spec-data/readonly/headings/headings-webnn.json index 88d642997d..1cecf47fea 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webnn.json +++ b/bikeshed/spec-data/readonly/headings/headings-webnn.json @@ -17,16 +17,58 @@ "current": { "number": "", "spec": "Web Neural Network API", - "text": "10. Acknowledgements", + "text": "12. Acknowledgements", "url": "https://webmachinelearning.github.io/webnn/#acknowledgements" }, "snapshot": { "number": "", "spec": "Web Neural Network API", - "text": "10. Acknowledgements", + "text": "12. Acknowledgements", "url": "https://www.w3.org/TR/webnn/#acknowledgements" } }, + "#algorithms": { + "current": { + "number": "8", + "spec": "Web Neural Network API", + "text": "Algorithms", + "url": "https://webmachinelearning.github.io/webnn/#algorithms" + }, + "snapshot": { + "number": "8", + "spec": "Web Neural Network API", + "text": "Algorithms", + "url": "https://www.w3.org/TR/webnn/#algorithms" + } + }, + "#algorithms-broadcasting": { + "current": { + "number": "8.1", + "spec": "Web Neural Network API", + "text": "Broadcasting", + "url": "https://webmachinelearning.github.io/webnn/#algorithms-broadcasting" + }, + "snapshot": { + "number": "8.1", + "spec": "Web Neural Network API", + "text": "Broadcasting", + "url": "https://www.w3.org/TR/webnn/#algorithms-broadcasting" + } + }, + "#algorithms-casting": { + "current": { + "number": "8.2", + "spec": "Web Neural Network API", + "text": "Casting", + "url": "https://webmachinelearning.github.io/webnn/#algorithms-casting" + }, + "snapshot": { + "number": "8.2", + "spec": "Web Neural Network API", + "text": "Casting", + "url": "https://www.w3.org/TR/webnn/#algorithms-casting" + } + }, "#api": { "current": { "number": "7", @@ -45,13 +87,13 @@ "current": { "number": "7.2", "spec": "Web Neural Network API", - "text": "The ML interface", + "text": "ML interface", "url": "https://webmachinelearning.github.io/webnn/#api-ml" }, "snapshot": { "number": "7.2", "spec": "Web Neural Network API", - "text": "The ML interface", + "text": "ML interface", "url": "https://www.w3.org/TR/webnn/#api-ml" } }, @@ -59,741 +101,909 @@ "current": { "number": "7.2.2", "spec": "Web Neural Network API", - "text": "The createContext() method", + "text": "createContext()", "url": "https://webmachinelearning.github.io/webnn/#api-ml-createcontext" }, "snapshot": { "number": "7.2.2", "spec": "Web Neural Network API", - "text": "The createContext() method", + "text": "createContext()", "url": "https://www.w3.org/TR/webnn/#api-ml-createcontext" } }, - "#api-ml-createcontextsync": { + "#api-mlcontext": { "current": { - "number": "7.2.3", + "number": "7.3", "spec": "Web Neural Network API", - "text": "The createContextSync() method", - "url": "https://webmachinelearning.github.io/webnn/#api-ml-createcontextsync" + "text": "MLContext interface", + "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext" }, "snapshot": { - "number": "7.2.3", + "number": "7.3", "spec": "Web Neural Network API", - "text": "The createContextSync() method", - "url": "https://www.w3.org/TR/webnn/#api-ml-createcontextsync" + "text": "MLContext interface", + "url": "https://www.w3.org/TR/webnn/#api-mlcontext" } }, - "#api-mlactivation": { + "#api-mlcontext-compute": { "current": { - "number": "7.3.3", + "number": "7.3.2", "spec": "Web Neural Network API", - "text": "The MLActivation interface", - "url": "https://webmachinelearning.github.io/webnn/#api-mlactivation" + "text": "compute()", + "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-compute" }, "snapshot": { - "number": "7.3.3", + "number": "7.3.2", "spec": "Web Neural Network API", - "text": "The MLActivation interface", - "url": "https://www.w3.org/TR/webnn/#api-mlactivation" + "text": "compute()", + "url": "https://www.w3.org/TR/webnn/#api-mlcontext-compute" } }, - "#api-mlcommandencoder": { + "#api-mlcontext-compute-examples": { "current": { - "number": "7.5", + "number": "7.3.2.1", "spec": "Web Neural Network API", - "text": "The MLCommandEncoder interface", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcommandencoder" + "text": "Examples", + "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-compute-examples" }, "snapshot": { - "number": "7.5", + "number": "7.3.2.1", "spec": "Web Neural Network API", - "text": "The MLCommandEncoder interface", - "url": "https://www.w3.org/TR/webnn/#api-mlcommandencoder" + "text": "Examples", + "url": "https://www.w3.org/TR/webnn/#api-mlcontext-compute-examples" } }, - "#api-mlcommandencoder-dispatch-commands": { + "#api-mlcontextoptions": { "current": { - "number": "7.5.2", + "number": "7.2.1", "spec": "Web Neural Network API", - "text": "Dispatch Execution Commands", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcommandencoder-dispatch-commands" + "text": "MLContextOptions", + "url": "https://webmachinelearning.github.io/webnn/#api-mlcontextoptions" }, "snapshot": { - "number": "7.5.2", + "number": "7.2.1", "spec": "Web Neural Network API", - "text": "Dispatch Execution Commands", - "url": "https://www.w3.org/TR/webnn/#api-mlcommandencoder-dispatch-commands" + "text": "MLContextOptions", + "url": "https://www.w3.org/TR/webnn/#api-mlcontextoptions" } }, - "#api-mlcommandencoder-generate-gpu-command-buffer": { + "#api-mlgraph": { "current": { - "number": "7.5.3", + "number": "7.4", "spec": "Web Neural Network API", - "text": "Generate GPU Command Buffer", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcommandencoder-generate-gpu-command-buffer" + "text": "MLGraph interface", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraph" }, "snapshot": { - "number": "7.5.3", + "number": "7.4", "spec": "Web Neural Network API", - "text": "Generate GPU Command Buffer", - "url": "https://www.w3.org/TR/webnn/#api-mlcommandencoder-generate-gpu-command-buffer" + "text": "MLGraph interface", + "url": "https://www.w3.org/TR/webnn/#api-mlgraph" } }, - "#api-mlcommandencoder-graph-initialization": { + "#api-mlgraphbuilder": { "current": { - "number": "7.5.1", + "number": "7.7", "spec": "Web Neural Network API", - "text": "Graph Initialization", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcommandencoder-graph-initialization" + "text": "MLGraphBuilder interface", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder" }, "snapshot": { - "number": "7.5.1", + "number": "7.7", "spec": "Web Neural Network API", - "text": "Graph Initialization", - "url": "https://www.w3.org/TR/webnn/#api-mlcommandencoder-graph-initialization" + "text": "MLGraphBuilder interface", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder" } }, - "#api-mlcontext": { + "#api-mlgraphbuilder-argminmax": { "current": { - "number": "7.4", + "number": "7.7.5", "spec": "Web Neural Network API", - "text": "The MLContext interface", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext" + "text": "argMin/argMax operations", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-argminmax" }, "snapshot": { - "number": "7.4", + "number": "7.7.5", "spec": "Web Neural Network API", - "text": "The MLContext interface", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext" + "text": "argMin/argMax operations", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax" } }, - "#api-mlcontext-async-execution": { + "#api-mlgraphbuilder-batchnorm": { "current": { - "number": "7.4.4", + "number": "7.7.6", "spec": "Web Neural Network API", - "text": "Asynchronous Execution", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-async-execution" + "text": "batchNormalization", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-batchnorm" }, "snapshot": { - "number": "7.4.4", + "number": "7.7.6", "spec": "Web Neural Network API", - "text": "Asynchronous Execution", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext-async-execution" + "text": "batchNormalization", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm" } }, - "#api-mlcontext-async-execution-examples": { + "#api-mlgraphbuilder-binary": { "current": { - "number": "7.4.4.1", + "number": "7.7.12", "spec": "Web Neural Network API", - "text": "Examples", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-async-execution-examples" + "text": "Element-wise binary operations", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-binary" }, "snapshot": { - "number": "7.4.4.1", + "number": "7.7.12", "spec": "Web Neural Network API", - "text": "Examples", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext-async-execution-examples" + "text": "Element-wise binary operations", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary" } }, - "#api-mlcontext-sync-execution": { + "#api-mlgraphbuilder-build": { "current": { - "number": "7.4.2", + "number": "7.7.4", "spec": "Web Neural Network API", - "text": "Synchronous Execution", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-sync-execution" + "text": "build method", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-build" }, "snapshot": { - "number": "7.4.2", + "number": "7.7.4", "spec": "Web Neural Network API", - "text": "Synchronous Execution", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext-sync-execution" + "text": "build method", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-build" } }, - "#api-mlcontext-sync-execution-examples": { + "#api-mlgraphbuilder-cast": { "current": { - "number": "7.4.2.1", + "number": "7.7.7", "spec": "Web Neural Network API", - "text": "Examples", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-sync-execution-examples" + "text": "cast", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-cast" }, "snapshot": { - "number": "7.4.2.1", + "number": "7.7.7", "spec": "Web Neural Network API", - "text": "Examples", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext-sync-execution-examples" + "text": "cast", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast" } }, - "#api-mlcontext-validate": { + "#api-mlgraphbuilder-clamp": { "current": { - "number": "7.4.1", + "number": "7.7.8", "spec": "Web Neural Network API", - "text": "The MLContext validation algorithm", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-validate" + "text": "clamp", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-clamp" }, "snapshot": { - "number": "7.4.1", + "number": "7.7.8", "spec": "Web Neural Network API", - "text": "The MLContext validation algorithm", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext-validate" + "text": "clamp", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp" } }, - "#api-mlcontext-webgpu-interop": { + "#api-mlgraphbuilder-concat": { "current": { - "number": "7.4.5", + "number": "7.7.9", "spec": "Web Neural Network API", - "text": "WebGPU Interoperability", - "url": "https://webmachinelearning.github.io/webnn/#api-mlcontext-webgpu-interop" + "text": "concat", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-concat" }, "snapshot": { - "number": "7.4.5", + "number": "7.7.9", "spec": "Web Neural Network API", - "text": "WebGPU Interoperability", - "url": "https://www.w3.org/TR/webnn/#api-mlcontext-webgpu-interop" + "text": "concat", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat" } }, - "#api-mlgraph": { + "#api-mlgraphbuilder-constant": { "current": { - "number": "7.3", + "number": "7.7.3", "spec": "Web Neural Network API", - "text": "The MLGraph interface", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraph" + "text": "constant operands", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-constant" }, "snapshot": { - "number": "7.3", + "number": "7.7.3", "spec": "Web Neural Network API", - "text": "The MLGraph interface", - "url": "https://www.w3.org/TR/webnn/#api-mlgraph" + "text": "constant operands", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant" } }, - "#api-mlgraphbuilder": { + "#api-mlgraphbuilder-constant-bufferview": { "current": { - "number": "7.6", + "number": "7.7.3.1", "spec": "Web Neural Network API", - "text": "The MLGraphBuilder interface", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder" + "text": "constant(descriptor, bufferView)", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-constant-bufferview" }, "snapshot": { - "number": "7.6", + "number": "7.7.3.1", "spec": "Web Neural Network API", - "text": "The MLGraphBuilder interface", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder" + "text": "constant(descriptor, bufferView)", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview" } }, - "#api-mlgraphbuilder-batchnorm": { + "#api-mlgraphbuilder-constant-type-value": { "current": { - "number": "7.6.2", + "number": "7.7.3.2", "spec": "Web Neural Network API", - "text": "The batchNormalization() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-batchnorm" + "text": "constant(type, value)", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-constant-type-value" }, "snapshot": { - "number": "7.6.2", + "number": "7.7.3.2", "spec": "Web Neural Network API", - "text": "The batchNormalization() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm" + "text": "constant(type, value)", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-type-value" } }, - "#api-mlgraphbuilder-binary": { + "#api-mlgraphbuilder-constructor": { "current": { - "number": "7.6.7", + "number": "7.7.1", "spec": "Web Neural Network API", - "text": "Element-wise binary operations", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-binary" + "text": "MLGraphBuilder constructor", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-constructor" }, "snapshot": { - "number": "7.6.7", + "number": "7.7.1", "spec": "Web Neural Network API", - "text": "Element-wise binary operations", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary" + "text": "MLGraphBuilder constructor", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor" } }, - "#api-mlgraphbuilder-clamp": { + "#api-mlgraphbuilder-conv2d": { "current": { - "number": "7.6.3", + "number": "7.7.10", "spec": "Web Neural Network API", - "text": "The clamp() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-clamp" + "text": "conv2d", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-conv2d" }, "snapshot": { - "number": "7.6.3", + "number": "7.7.10", "spec": "Web Neural Network API", - "text": "The clamp() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp" + "text": "conv2d", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d" } }, - "#api-mlgraphbuilder-concat": { + "#api-mlgraphbuilder-convtranspose2d": { "current": { - "number": "7.6.4", + "number": "7.7.11", "spec": "Web Neural Network API", - "text": "The concat() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-concat" + "text": "convTranspose2d", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-convtranspose2d" }, "snapshot": { - "number": "7.6.4", + "number": "7.7.11", "spec": "Web Neural Network API", - "text": "The concat() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat" + "text": "convTranspose2d", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d" } }, - "#api-mlgraphbuilder-constructor": { + "#api-mlgraphbuilder-elu": { "current": { - "number": "7.6.1", + "number": "7.7.15", "spec": "Web Neural Network API", - "text": "The MLGraphBuilder constructor", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-constructor" + "text": "elu", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-elu" }, "snapshot": { - "number": "7.6.1", + "number": "7.7.15", "spec": "Web Neural Network API", - "text": "The MLGraphBuilder constructor", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor" + "text": "elu", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu" } }, - "#api-mlgraphbuilder-conv2d": { + "#api-mlgraphbuilder-expand": { "current": { - "number": "7.6.5", + "number": "7.7.16", "spec": "Web Neural Network API", - "text": "The conv2d() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-conv2d" + "text": "expand", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-expand" }, "snapshot": { - "number": "7.6.5", + "number": "7.7.16", "spec": "Web Neural Network API", - "text": "The conv2d() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d" + "text": "expand", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand" } }, - "#api-mlgraphbuilder-convtranspose2d": { + "#api-mlgraphbuilder-gather": { "current": { - "number": "7.6.6", + "number": "7.7.17", "spec": "Web Neural Network API", - "text": "The convTranspose2d() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-convtranspose2d" + "text": "gather", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-gather" }, "snapshot": { - "number": "7.6.6", + "number": "7.7.17", "spec": "Web Neural Network API", - "text": "The convTranspose2d() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d" + "text": "gather", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather" } }, - "#api-mlgraphbuilder-elu": { + "#api-mlgraphbuilder-gelu-method": { "current": { - "number": "7.6.9", + "number": "7.7.18", "spec": "Web Neural Network API", - "text": "The elu() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-elu" + "text": "gelu", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-gelu-method" }, "snapshot": { - "number": "7.6.9", + "number": "7.7.18", "spec": "Web Neural Network API", - "text": "The elu() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu" + "text": "gelu", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method" } }, "#api-mlgraphbuilder-gemm": { "current": { - "number": "7.6.10", + "number": "7.7.19", "spec": "Web Neural Network API", - "text": "The gemm() method", + "text": "gemm", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-gemm" }, "snapshot": { - "number": "7.6.10", + "number": "7.7.19", "spec": "Web Neural Network API", - "text": "The gemm() method", + "text": "gemm", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm" } }, "#api-mlgraphbuilder-gru": { "current": { - "number": "7.6.11", + "number": "7.7.20", "spec": "Web Neural Network API", - "text": "The gru() method", + "text": "gru", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-gru" }, "snapshot": { - "number": "7.6.11", + "number": "7.7.20", "spec": "Web Neural Network API", - "text": "The gru() method", + "text": "gru", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru" } }, "#api-mlgraphbuilder-grucell": { "current": { - "number": "7.6.12", + "number": "7.7.21", "spec": "Web Neural Network API", - "text": "The gruCell() method", + "text": "gruCell", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-grucell" }, "snapshot": { - "number": "7.6.12", + "number": "7.7.21", "spec": "Web Neural Network API", - "text": "The gruCell() method", + "text": "gruCell", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell" } }, "#api-mlgraphbuilder-hard-sigmoid": { "current": { - "number": "7.6.13", + "number": "7.7.22", "spec": "Web Neural Network API", - "text": "The hardSigmoid() method", + "text": "hardSigmoid", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-hard-sigmoid" }, "snapshot": { - "number": "7.6.13", + "number": "7.7.22", "spec": "Web Neural Network API", - "text": "The hardSigmoid() method", + "text": "hardSigmoid", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid" } }, "#api-mlgraphbuilder-hard-swish": { "current": { - "number": "7.6.14", + "number": "7.7.23", "spec": "Web Neural Network API", - "text": "The hardSwish() method", + "text": "hardSwish", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-hard-swish" }, "snapshot": { - "number": "7.6.14", + "number": "7.7.23", "spec": "Web Neural Network API", - "text": "The hardSwish() method", + "text": "hardSwish", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish" } }, + "#api-mlgraphbuilder-input": { + "current": { + "number": "7.7.2", + "spec": "Web Neural Network API", + "text": "input operands", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-input" + }, + "snapshot": { + "number": "7.7.2", + "spec": "Web Neural Network API", + "text": "input operands", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input" + } + }, "#api-mlgraphbuilder-instancenorm": { "current": { - "number": "7.6.15", + "number": "7.7.24", "spec": "Web Neural Network API", - "text": "The instanceNormalization() method", + "text": "instanceNormalization", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-instancenorm" }, "snapshot": { - "number": "7.6.15", + "number": "7.7.24", "spec": "Web Neural Network API", - "text": "The instanceNormalization() method", + "text": "instanceNormalization", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm" } }, + "#api-mlgraphbuilder-layernorm": { + "current": { + "number": "7.7.25", + "spec": "Web Neural Network API", + "text": "layerNormalization", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-layernorm" + }, + "snapshot": { + "number": "7.7.25", + "spec": "Web Neural Network API", + "text": "layerNormalization", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm" + } + }, "#api-mlgraphbuilder-leakyrelu": { "current": { - "number": "7.6.16", + "number": "7.7.26", "spec": "Web Neural Network API", - "text": "The leakyRelu() method", + "text": "leakyRelu", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-leakyrelu" }, "snapshot": { - "number": "7.6.16", + "number": "7.7.26", "spec": "Web Neural Network API", - "text": "The leakyRelu() method", + "text": "leakyRelu", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu" } }, "#api-mlgraphbuilder-linear": { "current": { - "number": "7.6.17", + "number": "7.7.27", "spec": "Web Neural Network API", - "text": "The linear() method", + "text": "linear", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-linear" }, "snapshot": { - "number": "7.6.17", + "number": "7.7.27", "spec": "Web Neural Network API", - "text": "The linear() method", + "text": "linear", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear" } }, + "#api-mlgraphbuilder-logical": { + "current": { + "number": "7.7.13", + "spec": "Web Neural Network API", + "text": "Element-wise logical operations", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-logical" + }, + "snapshot": { + "number": "7.7.13", + "spec": "Web Neural Network API", + "text": "Element-wise logical operations", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical" + } + }, "#api-mlgraphbuilder-lstm": { "current": { - "number": "7.6.18", + "number": "7.7.28", "spec": "Web Neural Network API", - "text": "The lstm() method", + "text": "lstm", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-lstm" }, "snapshot": { - "number": "7.6.18", + "number": "7.7.28", "spec": "Web Neural Network API", - "text": "The lstm() method", + "text": "lstm", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm" } }, "#api-mlgraphbuilder-lstmcell": { "current": { - "number": "7.6.19", + "number": "7.7.29", "spec": "Web Neural Network API", - "text": "The lstmCell() method", + "text": "lstmCell", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-lstmcell" }, "snapshot": { - "number": "7.6.19", + "number": "7.7.29", "spec": "Web Neural Network API", - "text": "The lstmCell() method", + "text": "lstmCell", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell" } }, "#api-mlgraphbuilder-matmul": { "current": { - "number": "7.6.20", + "number": "7.7.30", "spec": "Web Neural Network API", - "text": "The matmul() method", + "text": "matmul", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-matmul" }, "snapshot": { - "number": "7.6.20", + "number": "7.7.30", "spec": "Web Neural Network API", - "text": "The matmul() method", + "text": "matmul", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul" } }, "#api-mlgraphbuilder-pad": { "current": { - "number": "7.6.21", + "number": "7.7.31", "spec": "Web Neural Network API", - "text": "The pad() method", + "text": "pad", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-pad" }, "snapshot": { - "number": "7.6.21", + "number": "7.7.31", "spec": "Web Neural Network API", - "text": "The pad() method", + "text": "pad", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad" } }, "#api-mlgraphbuilder-pool2d": { "current": { - "number": "7.6.22", + "number": "7.7.32", "spec": "Web Neural Network API", "text": "Pooling operations", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-pool2d" }, "snapshot": { - "number": "7.6.22", + "number": "7.7.32", "spec": "Web Neural Network API", "text": "Pooling operations", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d" } }, + "#api-mlgraphbuilder-pool2d-average": { + "current": { + "number": "7.7.32.1", + "spec": "Web Neural Network API", + "text": "averagePool2d", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-pool2d-average" + }, + "snapshot": { + "number": "7.7.32.1", + "spec": "Web Neural Network API", + "text": "averagePool2d", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-average" + } + }, + "#api-mlgraphbuilder-pool2d-l2": { + "current": { + "number": "7.7.32.2", + "spec": "Web Neural Network API", + "text": "l2Pool2d", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-pool2d-l2" + }, + "snapshot": { + "number": "7.7.32.2", + "spec": "Web Neural Network API", + "text": "l2Pool2d", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-l2" + } + }, + "#api-mlgraphbuilder-pool2d-max": { + "current": { + "number": "7.7.32.3", + "spec": "Web Neural Network API", + "text": "maxPool2d", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-pool2d-max" + }, + "snapshot": { + "number": "7.7.32.3", + "spec": "Web Neural Network API", + "text": "maxPool2d", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-max" + } + }, + "#api-mlgraphbuilder-prelu": { + "current": { + "number": "7.7.33", + "spec": "Web Neural Network API", + "text": "prelu", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-prelu" + }, + "snapshot": { + "number": "7.7.33", + "spec": "Web Neural Network API", + "text": "prelu", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu" + } + }, "#api-mlgraphbuilder-reduce": { "current": { - "number": "7.6.23", + "number": "7.7.34", "spec": "Web Neural Network API", "text": "Reduction operations", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-reduce" }, "snapshot": { - "number": "7.6.23", + "number": "7.7.34", "spec": "Web Neural Network API", "text": "Reduction operations", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce" } }, - "#api-mlgraphbuilder-relu": { + "#api-mlgraphbuilder-relu-method": { "current": { - "number": "7.6.24", + "number": "7.7.35", "spec": "Web Neural Network API", - "text": "The relu() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-relu" + "text": "relu", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-relu-method" }, "snapshot": { - "number": "7.6.24", + "number": "7.7.35", "spec": "Web Neural Network API", - "text": "The relu() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu" + "text": "relu", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method" } }, - "#api-mlgraphbuilder-resample2d": { + "#api-mlgraphbuilder-resample2d-method": { "current": { - "number": "7.6.25", + "number": "7.7.36", "spec": "Web Neural Network API", - "text": "The resample2d() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-resample2d" + "text": "resample2d", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-resample2d-method" }, "snapshot": { - "number": "7.6.25", + "number": "7.7.36", "spec": "Web Neural Network API", - "text": "The resample2d() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d" + "text": "resample2d", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method" } }, - "#api-mlgraphbuilder-reshape": { + "#api-mlgraphbuilder-reshape-method": { "current": { - "number": "7.6.26", + "number": "7.7.37", "spec": "Web Neural Network API", - "text": "The reshape() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-reshape" + "text": "reshape", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-reshape-method" }, "snapshot": { - "number": "7.6.26", + "number": "7.7.37", "spec": "Web Neural Network API", - "text": "The reshape() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape" + "text": "reshape", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method" } }, - "#api-mlgraphbuilder-sigmoid": { + "#api-mlgraphbuilder-sigmoid-method": { "current": { - "number": "7.6.27", + "number": "7.7.38", "spec": "Web Neural Network API", - "text": "The sigmoid() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-sigmoid" + "text": "sigmoid", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-sigmoid-method" }, "snapshot": { - "number": "7.6.27", + "number": "7.7.38", "spec": "Web Neural Network API", - "text": "The sigmoid() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid" + "text": "sigmoid", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method" } }, "#api-mlgraphbuilder-slice": { "current": { - "number": "7.6.28", + "number": "7.7.39", "spec": "Web Neural Network API", - "text": "The slice() method", + "text": "slice", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-slice" }, "snapshot": { - "number": "7.6.28", + "number": "7.7.39", "spec": "Web Neural Network API", - "text": "The slice() method", + "text": "slice", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice" } }, - "#api-mlgraphbuilder-softmax": { + "#api-mlgraphbuilder-softmax-method": { "current": { - "number": "7.6.29", + "number": "7.7.40", "spec": "Web Neural Network API", - "text": "The softmax() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-softmax" + "text": "softmax", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-softmax-method" }, "snapshot": { - "number": "7.6.29", + "number": "7.7.40", "spec": "Web Neural Network API", - "text": "The softmax() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax" + "text": "softmax", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method" } }, - "#api-mlgraphbuilder-softplus": { + "#api-mlgraphbuilder-softplus-method": { "current": { - "number": "7.6.30", + "number": "7.7.41", "spec": "Web Neural Network API", - "text": "The softplus() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-softplus" + "text": "softplus", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-softplus-method" }, "snapshot": { - "number": "7.6.30", + "number": "7.7.41", "spec": "Web Neural Network API", - "text": "The softplus() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus" + "text": "softplus", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method" } }, - "#api-mlgraphbuilder-softsign": { + "#api-mlgraphbuilder-softsign-method": { "current": { - "number": "7.6.31", + "number": "7.7.42", "spec": "Web Neural Network API", - "text": "The softsign() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-softsign" + "text": "softsign", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-softsign-method" }, "snapshot": { - "number": "7.6.31", + "number": "7.7.42", "spec": "Web Neural Network API", - "text": "The softsign() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign" + "text": "softsign", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method" } }, "#api-mlgraphbuilder-split": { "current": { - "number": "7.6.32", + "number": "7.7.43", "spec": "Web Neural Network API", - "text": "The split() method", + "text": "split", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-split" }, "snapshot": { - "number": "7.6.32", + "number": "7.7.43", "spec": "Web Neural Network API", - "text": "The split() method", + "text": "split", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split" } }, - "#api-mlgraphbuilder-squeeze": { + "#api-mlgraphbuilder-tanh-method": { "current": { - "number": "7.6.33", + "number": "7.7.44", "spec": "Web Neural Network API", - "text": "The squeeze() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-squeeze" + "text": "tanh", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-tanh-method" }, "snapshot": { - "number": "7.6.33", + "number": "7.7.44", "spec": "Web Neural Network API", - "text": "The squeeze() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-squeeze" + "text": "tanh", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method" } }, - "#api-mlgraphbuilder-tanh": { + "#api-mlgraphbuilder-transpose": { "current": { - "number": "7.6.34", + "number": "7.7.45", "spec": "Web Neural Network API", - "text": "The tanh() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-tanh" + "text": "transpose", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-transpose" }, "snapshot": { - "number": "7.6.34", + "number": "7.7.45", "spec": "Web Neural Network API", - "text": "The tanh() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh" + "text": "transpose", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose" } }, - "#api-mlgraphbuilder-transpose": { + "#api-mlgraphbuilder-triangular": { "current": { - "number": "7.6.35", + "number": "7.7.46", "spec": "Web Neural Network API", - "text": "The transpose() method", - "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-transpose" + "text": "triangular", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-triangular" }, "snapshot": { - "number": "7.6.35", + "number": "7.7.46", "spec": "Web Neural Network API", - "text": "The transpose() method", - "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose" + "text": "triangular", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular" } }, "#api-mlgraphbuilder-unary": { "current": { - "number": "7.6.8", + "number": "7.7.14", "spec": "Web Neural Network API", "text": "Element-wise unary operations", "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-unary" }, "snapshot": { - "number": "7.6.8", + "number": "7.7.14", "spec": "Web Neural Network API", "text": "Element-wise unary operations", "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary" } }, + "#api-mlgraphbuilder-where": { + "current": { + "number": "7.7.47", + "spec": "Web Neural Network API", + "text": "where", + "url": "https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-where" + }, + "snapshot": { + "number": "7.7.47", + "spec": "Web Neural Network API", + "text": "where", + "url": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where" + } + }, + "#api-mlnumber-typedef": { + "current": { + "number": "7.6.1.1", + "spec": "Web Neural Network API", + "text": "MLNumber", + "url": "https://webmachinelearning.github.io/webnn/#api-mlnumber-typedef" + }, + "snapshot": { + "number": "7.6.1.1", + "spec": "Web Neural Network API", + "text": "MLNumber", + "url": "https://www.w3.org/TR/webnn/#api-mlnumber-typedef" + } + }, "#api-mloperand": { "current": { - "number": "7.3.2", + "number": "7.6", "spec": "Web Neural Network API", - "text": "The MLOperand interface", + "text": "MLOperand interface", "url": "https://webmachinelearning.github.io/webnn/#api-mloperand" }, "snapshot": { - "number": "7.3.2", + "number": "7.6", "spec": "Web Neural Network API", - "text": "The MLOperand interface", + "text": "MLOperand interface", "url": "https://www.w3.org/TR/webnn/#api-mloperand" } }, + "#api-mloperand-create": { + "current": { + "number": "7.6.1", + "spec": "Web Neural Network API", + "text": "Creating an MLOperand", + "url": "https://webmachinelearning.github.io/webnn/#api-mloperand-create" + }, + "snapshot": { + "number": "7.6.1", + "spec": "Web Neural Network API", + "text": "Creating an MLOperand", + "url": "https://www.w3.org/TR/webnn/#api-mloperand-create" + } + }, + "#api-mloperand-datatype": { + "current": { + "number": "7.6.2", + "spec": "Web Neural Network API", + "text": "dataType()", + "url": "https://webmachinelearning.github.io/webnn/#api-mloperand-datatype" + }, + "snapshot": { + "number": "7.6.2", + "spec": "Web Neural Network API", + "text": "dataType()", + "url": "https://www.w3.org/TR/webnn/#api-mloperand-datatype" + } + }, + "#api-mloperand-shape": { + "current": { + "number": "7.6.3", + "spec": "Web Neural Network API", + "text": "shape()", + "url": "https://webmachinelearning.github.io/webnn/#api-mloperand-shape" + }, + "snapshot": { + "number": "7.6.3", + "spec": "Web Neural Network API", + "text": "shape()", + "url": "https://www.w3.org/TR/webnn/#api-mloperand-shape" + } + }, "#api-mloperanddescriptor": { "current": { - "number": "7.3.1", + "number": "7.5", "spec": "Web Neural Network API", - "text": "The MLOperandDescriptor dictionary", + "text": "MLOperandDescriptor dictionary", "url": "https://webmachinelearning.github.io/webnn/#api-mloperanddescriptor" }, "snapshot": { - "number": "7.3.1", + "number": "7.5", "spec": "Web Neural Network API", - "text": "The MLOperandDescriptor dictionary", + "text": "MLOperandDescriptor dictionary", "url": "https://www.w3.org/TR/webnn/#api-mloperanddescriptor" } }, @@ -813,30 +1023,86 @@ }, "#appendices": { "current": { - "number": "9", + "number": "", "spec": "Web Neural Network API", - "text": "Appendices", + "text": "11. Appendices", "url": "https://webmachinelearning.github.io/webnn/#appendices" }, "snapshot": { - "number": "9", + "number": "", "spec": "Web Neural Network API", - "text": "Appendices", + "text": "11. Appendices", "url": "https://www.w3.org/TR/webnn/#appendices" } }, - "#appendices-mloperandtype-arraybufferview-compatibility": { + "#appendices-mloperanddatatype-arraybufferview-compatibility": { "current": { - "number": "9.1", + "number": "11.1", "spec": "Web Neural Network API", - "text": "MLOperandType and ArrayBufferView compatibility", - "url": "https://webmachinelearning.github.io/webnn/#appendices-mloperandtype-arraybufferview-compatibility" + "text": "MLOperandDataType and ArrayBufferView compatibility", + "url": "https://webmachinelearning.github.io/webnn/#appendices-mloperanddatatype-arraybufferview-compatibility" }, "snapshot": { - "number": "9.1", + "number": "11.1", "spec": "Web Neural Network API", - "text": "MLOperandType and ArrayBufferView compatibility", - "url": "https://www.w3.org/TR/webnn/#appendices-mloperandtype-arraybufferview-compatibility" + "text": "MLOperandDataType and ArrayBufferView compatibility", + "url": "https://www.w3.org/TR/webnn/#appendices-mloperanddatatype-arraybufferview-compatibility" + } + }, + "#emulation": { + "current": { + "number": "", + "spec": "Web Neural Network API", + "text": "10. Operator Emulation", + "url": "https://webmachinelearning.github.io/webnn/#emulation" + }, + "snapshot": { + "number": "", + "spec": "Web Neural Network API", + "text": "10. Operator Emulation", + "url": "https://www.w3.org/TR/webnn/#emulation" + } + }, + "#emulation-flatten": { + "current": { + "number": "10.3", + "spec": "Web Neural Network API", + "text": "flatten", + "url": "https://webmachinelearning.github.io/webnn/#emulation-flatten" + }, + "snapshot": { + "number": "10.3", + "spec": "Web Neural Network API", + "text": "flatten", + "url": "https://www.w3.org/TR/webnn/#emulation-flatten" + } + }, + "#emulation-squeeze": { + "current": { + "number": "10.1", + "spec": "Web Neural Network API", + "text": "squeeze", + "url": "https://webmachinelearning.github.io/webnn/#emulation-squeeze" + }, + "snapshot": { + "number": "10.1", + "spec": "Web Neural Network API", + "text": "squeeze", + "url": "https://www.w3.org/TR/webnn/#emulation-squeeze" + } + }, + "#emulation-unsqueeze": { + "current": { + "number": "10.2", + "spec": "Web Neural Network API", + "text": "unsqueeze", + "url": "https://webmachinelearning.github.io/webnn/#emulation-unsqueeze" + }, + "snapshot": { + "number": "10.2", + "spec": "Web Neural Network API", + "text": "unsqueeze", + "url": "https://www.w3.org/TR/webnn/#emulation-unsqueeze" } }, "#ethics": { @@ -855,13 +1121,13 @@ }, "#examples": { "current": { - "number": "8", + "number": "9", "spec": "Web Neural Network API", "text": "Examples", "url": "https://webmachinelearning.github.io/webnn/#examples" }, "snapshot": { - "number": "8", + "number": "9", "spec": "Web Neural Network API", "text": "Examples", "url": "https://www.w3.org/TR/webnn/#examples" @@ -965,18 +1231,18 @@ "url": "https://www.w3.org/TR/webnn/#issues-index" } }, - "#mlnamedarraybufferviews-transfer": { + "#mlnamedarraybufferviews-transfer-alg": { "current": { - "number": "7.4.3", + "number": "7.3.1", "spec": "Web Neural Network API", - "text": "The MLNamedArrayBufferViews transfer algorithm", - "url": "https://webmachinelearning.github.io/webnn/#mlnamedarraybufferviews-transfer" + "text": "MLNamedArrayBufferViews transfer algorithm", + "url": "https://webmachinelearning.github.io/webnn/#mlnamedarraybufferviews-transfer-alg" }, "snapshot": { - "number": "7.4.3", + "number": "7.3.1", "spec": "Web Neural Network API", - "text": "The MLNamedArrayBufferViews transfer algorithm", - "url": "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer" + "text": "MLNamedArrayBufferViews transfer algorithm", + "url": "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer-alg" } }, "#normative": { @@ -995,13 +1261,13 @@ }, "#permissions-policy-integration": { "current": { - "number": "7.2.1", + "number": "6.4", "spec": "Web Neural Network API", "text": "Permissions Policy Integration", "url": "https://webmachinelearning.github.io/webnn/#permissions-policy-integration" }, "snapshot": { - "number": "7.2.1", + "number": "6.4", "spec": "Web Neural Network API", "text": "Permissions Policy Integration", "url": "https://www.w3.org/TR/webnn/#permissions-policy-integration" @@ -1063,6 +1329,20 @@ "url": "https://www.w3.org/TR/webnn/#programming-model-overview" } }, + "#programming-model-task-source": { + "current": { + "number": "6.3", + "spec": "Web Neural Network API", + "text": "Task Source", + "url": "https://webmachinelearning.github.io/webnn/#programming-model-task-source" + }, + "snapshot": { + "number": "6.3", + "spec": "Web Neural Network API", + "text": "Task Source", + "url": "https://www.w3.org/TR/webnn/#programming-model-task-source" + } + }, "#references": { "current": { "number": "", @@ -1163,13 +1443,13 @@ }, "#usecase-detecting-fake-video": { "current": { - "number": "2.1.13", + "number": "2.1.16", "spec": "Web Neural Network API", "text": "Detecting fake video", "url": "https://webmachinelearning.github.io/webnn/#usecase-detecting-fake-video" }, "snapshot": { - "number": "2.1.13", + "number": "2.1.16", "spec": "Web Neural Network API", "text": "Detecting fake video", "url": "https://www.w3.org/TR/webnn/#usecase-detecting-fake-video" @@ -1177,13 +1457,13 @@ }, "#usecase-emotion-analysis": { "current": { - "number": "2.1.10", + "number": "2.1.11", "spec": "Web Neural Network API", "text": "Emotion Analysis", "url": "https://webmachinelearning.github.io/webnn/#usecase-emotion-analysis" }, "snapshot": { - "number": "2.1.10", + "number": "2.1.11", "spec": "Web Neural Network API", "text": "Emotion Analysis", "url": "https://www.w3.org/TR/webnn/#usecase-emotion-analysis" @@ -1247,13 +1527,13 @@ }, "#usecase-noise-suppression": { "current": { - "number": "2.1.12", + "number": "2.1.13", "spec": "Web Neural Network API", "text": "Noise Suppression", "url": "https://webmachinelearning.github.io/webnn/#usecase-noise-suppression" }, "snapshot": { - "number": "2.1.12", + "number": "2.1.13", "spec": "Web Neural Network API", "text": "Noise Suppression", "url": "https://www.w3.org/TR/webnn/#usecase-noise-suppression" @@ -1343,6 +1623,20 @@ "url": "https://www.w3.org/TR/webnn/#usecase-skeleton-detection" } }, + "#usecase-speech-recognition": { + "current": { + "number": "2.1.14", + "spec": "Web Neural Network API", + "text": "Speech Recognition", + "url": "https://webmachinelearning.github.io/webnn/#usecase-speech-recognition" + }, + "snapshot": { + "number": "2.1.14", + "spec": "Web Neural Network API", + "text": "Speech Recognition", + "url": "https://www.w3.org/TR/webnn/#usecase-speech-recognition" + } + }, "#usecase-style-transfer": { "current": { "number": "2.1.6", @@ -1371,15 +1665,43 @@ "url": "https://www.w3.org/TR/webnn/#usecase-super-resolution" } }, - "#usecase-translation": { + "#usecase-text-generation": { "current": { + "number": "2.1.15", + "spec": "Web Neural Network API", + "text": "Text Generation", + "url": "https://webmachinelearning.github.io/webnn/#usecase-text-generation" + }, + "snapshot": { + "number": "2.1.15", + "spec": "Web Neural Network API", + "text": "Text Generation", + "url": "https://www.w3.org/TR/webnn/#usecase-text-generation" + } + }, + "#usecase-text-to-image": { + "current": { + "number": "2.1.9", + "spec": "Web Neural Network API", + "text": "Text-to-image", + "url": "https://webmachinelearning.github.io/webnn/#usecase-text-to-image" + }, + "snapshot": { "number": "2.1.9", "spec": "Web Neural Network API", + "text": "Text-to-image", + "url": "https://www.w3.org/TR/webnn/#usecase-text-to-image" + } + }, + "#usecase-translation": { + "current": { + "number": "2.1.10", + "spec": "Web Neural Network API", "text": "Machine Translation", "url": "https://webmachinelearning.github.io/webnn/#usecase-translation" }, "snapshot": { - "number": "2.1.9", + "number": "2.1.10", "spec": "Web Neural Network API", "text": "Machine Translation", "url": "https://www.w3.org/TR/webnn/#usecase-translation" @@ -1387,13 +1709,13 @@ }, "#usecase-video-summalization": { "current": { - "number": "2.1.11", + "number": "2.1.12", "spec": "Web Neural Network API", "text": "Video Summarization", "url": "https://webmachinelearning.github.io/webnn/#usecase-video-summalization" }, "snapshot": { - "number": "2.1.11", + "number": "2.1.12", "spec": "Web Neural Network API", "text": "Video Summarization", "url": "https://www.w3.org/TR/webnn/#usecase-video-summalization" diff --git a/bikeshed/spec-data/readonly/headings/headings-webp.json b/bikeshed/spec-data/readonly/headings/headings-webp.json new file mode 100644 index 0000000000..926a6bd5a9 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-webp.json @@ -0,0 +1,506 @@ +{ + "#appendix-A": { + "current": { + "number": "", + "spec": "WebP Image Format", + "text": "Authors' Addresses", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#appendix-A" + } + }, + "#section-1": { + "current": { + "number": "1", + "spec": "WebP Image Format", + "text": "Introduction", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-1" + } + }, + "#section-2": { + "current": { + "number": "2", + "spec": "WebP Image Format", + "text": "WebP Container Specification", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2" + } + }, + "#section-2.1": { + "current": { + "number": "2.1", + "spec": "WebP Image Format", + "text": "Introduction (from \"WebP Container Specification\")", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.1" + } + }, + "#section-2.2": { + "current": { + "number": "2.2", + "spec": "WebP Image Format", + "text": "Terminology & Basics", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.2" + } + }, + "#section-2.3": { + "current": { + "number": "2.3", + "spec": "WebP Image Format", + "text": "RIFF File Format", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.3" + } + }, + "#section-2.4": { + "current": { + "number": "2.4", + "spec": "WebP Image Format", + "text": "WebP File Header", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.4" + } + }, + "#section-2.5": { + "current": { + "number": "2.5", + "spec": "WebP Image Format", + "text": "Simple File Format (Lossy)", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.5" + } + }, + "#section-2.6": { + "current": { + "number": "2.6", + "spec": "WebP Image Format", + "text": "Simple File Format (Lossless)", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.6" + } + }, + "#section-2.7": { + "current": { + "number": "2.7", + "spec": "WebP Image Format", + "text": "Extended File Format", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7" + } + }, + "#section-2.7.1": { + "current": { + "number": "2.7.1", + "spec": "WebP Image Format", + "text": "Chunks", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1" + } + }, + "#section-2.7.1.1": { + "current": { + "number": "2.7.1.1", + "spec": "WebP Image Format", + "text": "Animation", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1.1" + } + }, + "#section-2.7.1.2": { + "current": { + "number": "2.7.1.2", + "spec": "WebP Image Format", + "text": "Alpha", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1.2" + } + }, + "#section-2.7.1.3": { + "current": { + "number": "2.7.1.3", + "spec": "WebP Image Format", + "text": "Bitstream (VP8/VP8L)", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1.3" + } + }, + "#section-2.7.1.4": { + "current": { + "number": "2.7.1.4", + "spec": "WebP Image Format", + "text": "Color Profile", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1.4" + } + }, + "#section-2.7.1.5": { + "current": { + "number": "2.7.1.5", + "spec": "WebP Image Format", + "text": "Metadata", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1.5" + } + }, + "#section-2.7.1.6": { + "current": { + "number": "2.7.1.6", + "spec": "WebP Image Format", + "text": "Unknown Chunks", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.1.6" + } + }, + "#section-2.7.2": { + "current": { + "number": "2.7.2", + "spec": "WebP Image Format", + "text": "Canvas Assembly from Frames", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.2" + } + }, + "#section-2.7.3": { + "current": { + "number": "2.7.3", + "spec": "WebP Image Format", + "text": "Example File Layouts", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-2.7.3" + } + }, + "#section-3": { + "current": { + "number": "3", + "spec": "WebP Image Format", + "text": "Specification for WebP Lossless Bitstream", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3" + } + }, + "#section-3.1": { + "current": { + "number": "3.1", + "spec": "WebP Image Format", + "text": "Abstract (from \"Specification for WebP Lossless Bitstream\")", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.1" + } + }, + "#section-3.2": { + "current": { + "number": "3.2", + "spec": "WebP Image Format", + "text": "Introduction (from \"Specification for WebP Lossless Bitstream\")", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.2" + } + }, + "#section-3.3": { + "current": { + "number": "3.3", + "spec": "WebP Image Format", + "text": "Nomenclature", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.3" + } + }, + "#section-3.4": { + "current": { + "number": "3.4", + "spec": "WebP Image Format", + "text": "RIFF Header", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.4" + } + }, + "#section-3.5": { + "current": { + "number": "3.5", + "spec": "WebP Image Format", + "text": "Transforms", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.5" + } + }, + "#section-3.5.1": { + "current": { + "number": "3.5.1", + "spec": "WebP Image Format", + "text": "Predictor Transform", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.5.1" + } + }, + "#section-3.5.2": { + "current": { + "number": "3.5.2", + "spec": "WebP Image Format", + "text": "Color Transform", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.5.2" + } + }, + "#section-3.5.3": { + "current": { + "number": "3.5.3", + "spec": "WebP Image Format", + "text": "Subtract Green Transform", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.5.3" + } + }, + "#section-3.5.4": { + "current": { + "number": "3.5.4", + "spec": "WebP Image Format", + "text": "Color Indexing Transform", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.5.4" + } + }, + "#section-3.6": { + "current": { + "number": "3.6", + "spec": "WebP Image Format", + "text": "Image Data", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6" + } + }, + "#section-3.6.1": { + "current": { + "number": "3.6.1", + "spec": "WebP Image Format", + "text": "Roles of Image Data", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6.1" + } + }, + "#section-3.6.2": { + "current": { + "number": "3.6.2", + "spec": "WebP Image Format", + "text": "Encoding of Image Data", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6.2" + } + }, + "#section-3.6.2.1": { + "current": { + "number": "3.6.2.1", + "spec": "WebP Image Format", + "text": "Prefix-Coded Literals", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6.2.1" + } + }, + "#section-3.6.2.2": { + "current": { + "number": "3.6.2.2", + "spec": "WebP Image Format", + "text": "LZ77 Backward Reference", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6.2.2" + } + }, + "#section-3.6.2.2.1": { + "current": { + "number": "3.6.2.2.1", + "spec": "WebP Image Format", + "text": "Distance Mapping", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6.2.2.1" + } + }, + "#section-3.6.2.3": { + "current": { + "number": "3.6.2.3", + "spec": "WebP Image Format", + "text": "Color Cache Coding", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.6.2.3" + } + }, + "#section-3.7": { + "current": { + "number": "3.7", + "spec": "WebP Image Format", + "text": "Entropy Code", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7" + } + }, + "#section-3.7.1": { + "current": { + "number": "3.7.1", + "spec": "WebP Image Format", + "text": "Overview", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.1" + } + }, + "#section-3.7.2": { + "current": { + "number": "3.7.2", + "spec": "WebP Image Format", + "text": "Details", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2" + } + }, + "#section-3.7.2.1": { + "current": { + "number": "3.7.2.1", + "spec": "WebP Image Format", + "text": "Decoding and Building the Prefix Codes", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.1" + } + }, + "#section-3.7.2.1.1": { + "current": { + "number": "3.7.2.1.1", + "spec": "WebP Image Format", + "text": "Simple Code Length Code", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.1.1" + } + }, + "#section-3.7.2.1.2": { + "current": { + "number": "3.7.2.1.2", + "spec": "WebP Image Format", + "text": "Normal Code Length Code", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.1.2" + } + }, + "#section-3.7.2.2": { + "current": { + "number": "3.7.2.2", + "spec": "WebP Image Format", + "text": "Decoding of Meta Prefix Codes", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.2" + } + }, + "#section-3.7.2.2.1": { + "current": { + "number": "3.7.2.2.1", + "spec": "WebP Image Format", + "text": "Entropy Image", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.2.1" + } + }, + "#section-3.7.2.2.2": { + "current": { + "number": "3.7.2.2.2", + "spec": "WebP Image Format", + "text": "Interpretation of Meta Prefix Codes", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.2.2" + } + }, + "#section-3.7.2.3": { + "current": { + "number": "3.7.2.3", + "spec": "WebP Image Format", + "text": "Decoding Entropy-Coded Image Data", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.7.2.3" + } + }, + "#section-3.8": { + "current": { + "number": "3.8", + "spec": "WebP Image Format", + "text": "Overall Structure of the Format", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.8" + } + }, + "#section-3.8.1": { + "current": { + "number": "3.8.1", + "spec": "WebP Image Format", + "text": "Basic Structure", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.8.1" + } + }, + "#section-3.8.2": { + "current": { + "number": "3.8.2", + "spec": "WebP Image Format", + "text": "Structure of Transforms", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.8.2" + } + }, + "#section-3.8.3": { + "current": { + "number": "3.8.3", + "spec": "WebP Image Format", + "text": "Structure of the Image Data", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-3.8.3" + } + }, + "#section-4": { + "current": { + "number": "4", + "spec": "WebP Image Format", + "text": "Security Considerations", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-4" + } + }, + "#section-5": { + "current": { + "number": "5", + "spec": "WebP Image Format", + "text": "Interoperability Considerations", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-5" + } + }, + "#section-6": { + "current": { + "number": "6", + "spec": "WebP Image Format", + "text": "IANA Considerations", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-6" + } + }, + "#section-6.1": { + "current": { + "number": "6.1", + "spec": "WebP Image Format", + "text": "The 'image/webp' Media Type", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-6.1" + } + }, + "#section-6.1.1": { + "current": { + "number": "6.1.1", + "spec": "WebP Image Format", + "text": "Registration Details", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-6.1.1" + } + }, + "#section-7": { + "current": { + "number": "7", + "spec": "WebP Image Format", + "text": "References", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-7" + } + }, + "#section-7.1": { + "current": { + "number": "7.1", + "spec": "WebP Image Format", + "text": "Normative References", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-7.1" + } + }, + "#section-7.2": { + "current": { + "number": "7.2", + "spec": "WebP Image Format", + "text": "Informative References", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-7.2" + } + }, + "#section-abstract": { + "current": { + "number": "", + "spec": "WebP Image Format", + "text": "Abstract", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-abstract" + } + }, + "#section-boilerplate.1": { + "current": { + "number": "", + "spec": "WebP Image Format", + "text": "Status of This Memo", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-boilerplate.1" + } + }, + "#section-boilerplate.2": { + "current": { + "number": "", + "spec": "WebP Image Format", + "text": "Copyright Notice", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-boilerplate.2" + } + }, + "#section-toc.1": { + "current": { + "number": "", + "spec": "WebP Image Format", + "text": "Table of Contents", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#section-toc.1" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebP Image Format", + "text": "WebP Image Format", + "url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html#title" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webpackage.json b/bikeshed/spec-data/readonly/headings/headings-webpackage.json index 22849b5f26..6d7958b2dd 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webpackage.json +++ b/bikeshed/spec-data/readonly/headings/headings-webpackage.json @@ -519,14 +519,6 @@ "url": "https://wicg.github.io/webpackage/loading.html#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Loading Signed Exchanges", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/webpackage/loading.html#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webrtc-encoded-transform.json b/bikeshed/spec-data/readonly/headings/headings-webrtc-encoded-transform.json index 9596e3c45f..ca4f7ec1d5 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webrtc-encoded-transform.json +++ b/bikeshed/spec-data/readonly/headings/headings-webrtc-encoded-transform.json @@ -1,13 +1,13 @@ { "#KeyFrame-algorithms": { "current": { - "number": "5.8", + "number": "4.10", "spec": "WebRTC Encoded Transform", "text": "KeyFrame Algorithms", "url": "https://w3c.github.io/webrtc-encoded-transform/#KeyFrame-algorithms" }, "snapshot": { - "number": "5.8", + "number": "4.10", "spec": "WebRTC Encoded Transform", "text": "KeyFrame Algorithms", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#KeyFrame-algorithms" @@ -15,13 +15,13 @@ }, "#RTCEncodedAudioFrame-interface": { "current": { - "number": "5.5", + "number": "4.5", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedAudioFrame interface", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrame-interface" }, "snapshot": { - "number": "5.5", + "number": "4.5", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedAudioFrame interface", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrame-interface" @@ -29,41 +29,69 @@ }, "#RTCEncodedAudioFrame-members": { "current": { - "number": "5.5.1", + "number": "4.5.1", "spec": "WebRTC Encoded Transform", - "text": "Members", + "text": "Constructor", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrame-members" }, "snapshot": { - "number": "5.5.1", + "number": "4.5.1", "spec": "WebRTC Encoded Transform", - "text": "Members", + "text": "Constructor", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrame-members" } }, + "#RTCEncodedAudioFrame-members%E2%91%A0": { + "current": { + "number": "4.5.2", + "spec": "WebRTC Encoded Transform", + "text": "Members", + "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrame-members%E2%91%A0" + }, + "snapshot": { + "number": "4.5.2", + "spec": "WebRTC Encoded Transform", + "text": "Members", + "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrame-members%E2%91%A0" + } + }, "#RTCEncodedAudioFrame-methods": { "current": { - "number": "5.5.2", + "number": "4.5.3", "spec": "WebRTC Encoded Transform", "text": "Methods", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrame-methods" }, "snapshot": { - "number": "5.5.2", + "number": "4.5.3", "spec": "WebRTC Encoded Transform", "text": "Methods", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrame-methods" } }, + "#RTCEncodedAudioFrame-serialization": { + "current": { + "number": "4.5.4", + "spec": "WebRTC Encoded Transform", + "text": "Serialization", + "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrame-serialization" + }, + "snapshot": { + "number": "4.5.4", + "spec": "WebRTC Encoded Transform", + "text": "Serialization", + "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrame-serialization" + } + }, "#RTCEncodedAudioFrameMetadata": { "current": { - "number": "5.4", + "number": "4.4", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedAudioFrameMetadata dictionary", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrameMetadata" }, "snapshot": { - "number": "5.4", + "number": "4.4", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedAudioFrameMetadata dictionary", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrameMetadata" @@ -71,13 +99,13 @@ }, "#RTCEncodedAudioFrameMetadata-members": { "current": { - "number": "5.4.1", + "number": "4.4.1", "spec": "WebRTC Encoded Transform", "text": "Members", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedAudioFrameMetadata-members" }, "snapshot": { - "number": "5.4.1", + "number": "4.4.1", "spec": "WebRTC Encoded Transform", "text": "Members", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrameMetadata-members" @@ -85,13 +113,13 @@ }, "#RTCEncodedVideoFrame-interface": { "current": { - "number": "5.3", + "number": "4.3", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedVideoFrame interface", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrame-interface" }, "snapshot": { - "number": "5.3", + "number": "4.3", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedVideoFrame interface", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrame-interface" @@ -99,41 +127,69 @@ }, "#RTCEncodedVideoFrame-members": { "current": { - "number": "5.3.1", + "number": "4.3.1", "spec": "WebRTC Encoded Transform", - "text": "Members", + "text": "Constructor", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrame-members" }, "snapshot": { - "number": "5.3.1", + "number": "4.3.1", "spec": "WebRTC Encoded Transform", - "text": "Members", + "text": "Constructor", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrame-members" } }, + "#RTCEncodedVideoFrame-members%E2%91%A0": { + "current": { + "number": "4.3.2", + "spec": "WebRTC Encoded Transform", + "text": "Members", + "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrame-members%E2%91%A0" + }, + "snapshot": { + "number": "4.3.2", + "spec": "WebRTC Encoded Transform", + "text": "Members", + "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrame-members%E2%91%A0" + } + }, "#RTCEncodedVideoFrame-methods": { "current": { - "number": "5.3.2", + "number": "4.3.3", "spec": "WebRTC Encoded Transform", "text": "Methods", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrame-methods" }, "snapshot": { - "number": "5.3.2", + "number": "4.3.3", "spec": "WebRTC Encoded Transform", "text": "Methods", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrame-methods" } }, + "#RTCEncodedVideoFrame-serialization": { + "current": { + "number": "4.3.4", + "spec": "WebRTC Encoded Transform", + "text": "Serialization", + "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrame-serialization" + }, + "snapshot": { + "number": "4.3.4", + "spec": "WebRTC Encoded Transform", + "text": "Serialization", + "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrame-serialization" + } + }, "#RTCEncodedVideoFrameMetadata": { "current": { - "number": "5.2", + "number": "4.2", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedVideoFrameMetadata dictionary", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrameMetadata" }, "snapshot": { - "number": "5.2", + "number": "4.2", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedVideoFrameMetadata dictionary", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrameMetadata" @@ -141,13 +197,13 @@ }, "#RTCEncodedVideoFrameMetadata-members": { "current": { - "number": "5.2.1", + "number": "4.2.1", "spec": "WebRTC Encoded Transform", "text": "Members", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrameMetadata-members" }, "snapshot": { - "number": "5.2.1", + "number": "4.2.1", "spec": "WebRTC Encoded Transform", "text": "Members", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrameMetadata-members" @@ -155,13 +211,13 @@ }, "#RTCEncodedVideoFrameType": { "current": { - "number": "5.1", + "number": "4.1", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedVideoFrameType dictionary", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCEncodedVideoFrameType" }, "snapshot": { - "number": "5.1", + "number": "4.1", "spec": "WebRTC Encoded Transform", "text": "RTCEncodedVideoFrameType dictionary", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrameType" @@ -169,13 +225,13 @@ }, "#RTCRtpScriptTransform-operations": { "current": { - "number": "5.6", + "number": "4.7", "spec": "WebRTC Encoded Transform", "text": "Operations", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCRtpScriptTransform-operations" }, "snapshot": { - "number": "5.6", + "number": "4.7", "spec": "WebRTC Encoded Transform", "text": "Operations", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCRtpScriptTransform-operations" @@ -183,18 +239,46 @@ }, "#RTCRtpScriptTransformer-attributes": { "current": { - "number": "5.7", + "number": "4.8", "spec": "WebRTC Encoded Transform", "text": "Attributes", "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCRtpScriptTransformer-attributes" }, "snapshot": { - "number": "5.7", + "number": "4.8", "spec": "WebRTC Encoded Transform", "text": "Attributes", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCRtpScriptTransformer-attributes" } }, + "#RTCRtpScriptTransformer-events": { + "current": { + "number": "4.9", + "spec": "WebRTC Encoded Transform", + "text": "Events", + "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCRtpScriptTransformer-events" + }, + "snapshot": { + "number": "4.9", + "spec": "WebRTC Encoded Transform", + "text": "Events", + "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCRtpScriptTransformer-events" + } + }, + "#RTCRtpScriptTransformer-interfaces": { + "current": { + "number": "4.6", + "spec": "WebRTC Encoded Transform", + "text": "Interfaces", + "url": "https://w3c.github.io/webrtc-encoded-transform/#RTCRtpScriptTransformer-interfaces" + }, + "snapshot": { + "number": "4.6", + "spec": "WebRTC Encoded Transform", + "text": "Interfaces", + "url": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCRtpScriptTransformer-interfaces" + } + }, "#abstract": { "current": { "number": "", @@ -211,13 +295,13 @@ }, "#attribute": { "current": { - "number": "3.2", + "number": "2.2", "spec": "WebRTC Encoded Transform", "text": "Extension attribute", "url": "https://w3c.github.io/webrtc-encoded-transform/#attribute" }, "snapshot": { - "number": "3.2", + "number": "2.2", "spec": "WebRTC Encoded Transform", "text": "Extension attribute", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#attribute" @@ -225,13 +309,13 @@ }, "#examples": { "current": { - "number": "8", + "number": "7", "spec": "WebRTC Encoded Transform", "text": "Examples", "url": "https://w3c.github.io/webrtc-encoded-transform/#examples" }, "snapshot": { - "number": "8", + "number": "7", "spec": "WebRTC Encoded Transform", "text": "Examples", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#examples" @@ -337,13 +421,13 @@ }, "#operation": { "current": { - "number": "3.1", + "number": "2.1", "spec": "WebRTC Encoded Transform", "text": "Extension operation", "url": "https://w3c.github.io/webrtc-encoded-transform/#operation" }, "snapshot": { - "number": "3.1", + "number": "2.1", "spec": "WebRTC Encoded Transform", "text": "Extension operation", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#operation" @@ -351,13 +435,13 @@ }, "#privacy": { "current": { - "number": "7", + "number": "6", "spec": "WebRTC Encoded Transform", "text": "Privacy and security considerations", "url": "https://w3c.github.io/webrtc-encoded-transform/#privacy" }, "snapshot": { - "number": "7", + "number": "6", "spec": "WebRTC Encoded Transform", "text": "Privacy and security considerations", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#privacy" @@ -379,13 +463,13 @@ }, "#rtcrtpsender-extension": { "current": { - "number": "6", + "number": "5", "spec": "WebRTC Encoded Transform", "text": "RTCRtpSender extension", "url": "https://w3c.github.io/webrtc-encoded-transform/#rtcrtpsender-extension" }, "snapshot": { - "number": "6", + "number": "5", "spec": "WebRTC Encoded Transform", "text": "RTCRtpSender extension", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#rtcrtpsender-extension" @@ -393,13 +477,13 @@ }, "#scriptTransform": { "current": { - "number": "5", + "number": "4", "spec": "WebRTC Encoded Transform", "text": "RTCRtpScriptTransform", "url": "https://w3c.github.io/webrtc-encoded-transform/#scriptTransform" }, "snapshot": { - "number": "5", + "number": "4", "spec": "WebRTC Encoded Transform", "text": "RTCRtpScriptTransform", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#scriptTransform" @@ -407,13 +491,13 @@ }, "#sender-operation": { "current": { - "number": "6.1", + "number": "5.1", "spec": "WebRTC Encoded Transform", "text": "Extension operation", "url": "https://w3c.github.io/webrtc-encoded-transform/#sender-operation" }, "snapshot": { - "number": "6.1", + "number": "5.1", "spec": "WebRTC Encoded Transform", "text": "Extension operation", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#sender-operation" @@ -421,13 +505,13 @@ }, "#sframe": { "current": { - "number": "4", + "number": "3", "spec": "WebRTC Encoded Transform", "text": "SFrameTransform", "url": "https://w3c.github.io/webrtc-encoded-transform/#sframe" }, "snapshot": { - "number": "4", + "number": "3", "spec": "WebRTC Encoded Transform", "text": "SFrameTransform", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#sframe" @@ -435,13 +519,13 @@ }, "#sframe-transform-algorithm": { "current": { - "number": "4.1", + "number": "3.1", "spec": "WebRTC Encoded Transform", "text": "Algorithm", "url": "https://w3c.github.io/webrtc-encoded-transform/#sframe-transform-algorithm" }, "snapshot": { - "number": "4.1", + "number": "3.1", "spec": "WebRTC Encoded Transform", "text": "Algorithm", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#sframe-transform-algorithm" @@ -449,13 +533,13 @@ }, "#sframe-transform-methods": { "current": { - "number": "4.2", + "number": "3.2", "spec": "WebRTC Encoded Transform", "text": "Methods", "url": "https://w3c.github.io/webrtc-encoded-transform/#sframe-transform-methods" }, "snapshot": { - "number": "4.2", + "number": "3.2", "spec": "WebRTC Encoded Transform", "text": "Methods", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#sframe-transform-methods" @@ -477,13 +561,13 @@ }, "#specification": { "current": { - "number": "3", + "number": "2", "spec": "WebRTC Encoded Transform", "text": "Specification", "url": "https://w3c.github.io/webrtc-encoded-transform/#specification" }, "snapshot": { - "number": "3", + "number": "2", "spec": "WebRTC Encoded Transform", "text": "Specification", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#specification" @@ -491,13 +575,13 @@ }, "#stream-creation": { "current": { - "number": "3.1.1", + "number": "2.1.1", "spec": "WebRTC Encoded Transform", "text": "Stream creation", "url": "https://w3c.github.io/webrtc-encoded-transform/#stream-creation" }, "snapshot": { - "number": "3.1.1", + "number": "2.1.1", "spec": "WebRTC Encoded Transform", "text": "Stream creation", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#stream-creation" @@ -505,32 +589,18 @@ }, "#stream-processing": { "current": { - "number": "3.1.2", + "number": "2.1.2", "spec": "WebRTC Encoded Transform", "text": "Stream processing", "url": "https://w3c.github.io/webrtc-encoded-transform/#stream-processing" }, "snapshot": { - "number": "3.1.2", + "number": "2.1.2", "spec": "WebRTC Encoded Transform", "text": "Stream processing", "url": "https://www.w3.org/TR/webrtc-encoded-transform/#stream-processing" } }, - "#terminology": { - "current": { - "number": "2", - "spec": "WebRTC Encoded Transform", - "text": "Terminology", - "url": "https://w3c.github.io/webrtc-encoded-transform/#terminology" - }, - "snapshot": { - "number": "2", - "spec": "WebRTC Encoded Transform", - "text": "Terminology", - "url": "https://www.w3.org/TR/webrtc-encoded-transform/#terminology" - } - }, "#title": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webrtc-stats.json b/bikeshed/spec-data/readonly/headings/headings-webrtc-stats.json index 30c175e5b8..90f32505e8 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webrtc-stats.json +++ b/bikeshed/spec-data/readonly/headings/headings-webrtc-stats.json @@ -379,13 +379,13 @@ }, "#example-of-a-stats-application": { "current": { - "number": "10.1", + "number": "9.1", "spec": "WebRTC Statistics", "text": "Example of a stats application", "url": "https://w3c.github.io/webrtc-stats/#example-of-a-stats-application" }, "snapshot": { - "number": "10.1", + "number": "9.1", "spec": "WebRTC Statistics", "text": "Example of a stats application", "url": "https://www.w3.org/TR/webrtc-stats/#example-of-a-stats-application" @@ -393,15 +393,15 @@ }, "#examples": { "current": { - "number": "", + "number": "9", "spec": "WebRTC Statistics", - "text": "10. Examples", + "text": "Examples", "url": "https://w3c.github.io/webrtc-stats/#examples" }, "snapshot": { - "number": "", + "number": "9", "spec": "WebRTC Statistics", - "text": "10. Examples", + "text": "Examples", "url": "https://www.w3.org/TR/webrtc-stats/#examples" } }, @@ -573,132 +573,6 @@ "url": "https://www.w3.org/TR/webrtc-stats/#normative-references" } }, - "#obsolete-rtccodecstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCCodecStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtccodecstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCCodecStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtccodecstats-members" - } - }, - "#obsolete-rtcicecandidatepairstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCIceCandidatePairStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcicecandidatepairstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCIceCandidatePairStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcicecandidatepairstats-members" - } - }, - "#obsolete-rtcicecandidatestats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCIceCandidateStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcicecandidatestats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCIceCandidateStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcicecandidatestats-members" - } - }, - "#obsolete-rtcinboundrtpstreamstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCInboundRtpStreamStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcinboundrtpstreamstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCInboundRtpStreamStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcinboundrtpstreamstats-members" - } - }, - "#obsolete-rtcmediastreamstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCMediaStreamStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcmediastreamstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCMediaStreamStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcmediastreamstats-members" - } - }, - "#obsolete-rtcmediastreamtrackstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCMediaStreamTrackStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcmediastreamtrackstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCMediaStreamTrackStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcmediastreamtrackstats-members" - } - }, - "#obsolete-rtcoutboundrtpstreamstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCOutboundRtpStreamStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcoutboundrtpstreamstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCOutboundRtpStreamStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcoutboundrtpstreamstats-members" - } - }, - "#obsolete-rtcrtpstreamstats-members": { - "current": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCRtpStreamStats members", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-rtcrtpstreamstats-members" - }, - "snapshot": { - "number": "", - "spec": "WebRTC Statistics", - "text": "Obsolete RTCRtpStreamStats members", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-rtcrtpstreamstats-members" - } - }, - "#obsolete-stats": { - "current": { - "number": "9", - "spec": "WebRTC Statistics", - "text": "Obsolete stats", - "url": "https://w3c.github.io/webrtc-stats/#obsolete-stats" - }, - "snapshot": { - "number": "9", - "spec": "WebRTC Statistics", - "text": "Obsolete stats", - "url": "https://www.w3.org/TR/webrtc-stats/#obsolete-stats" - } - }, "#outboundrtpstats-dict*": { "current": { "number": "8.8", @@ -811,20 +685,6 @@ "url": "https://www.w3.org/TR/webrtc-stats/#remoteoutboundrtpstats-dict*" } }, - "#retiring-stats-objects": { - "current": { - "number": "5.2", - "spec": "WebRTC Statistics", - "text": "Retiring stats objects", - "url": "https://w3c.github.io/webrtc-stats/#retiring-stats-objects" - }, - "snapshot": { - "number": "5.2", - "spec": "WebRTC Statistics", - "text": "Retiring stats objects", - "url": "https://www.w3.org/TR/webrtc-stats/#retiring-stats-objects" - } - }, "#rtcdtlsrole-enum": { "current": { "number": "", @@ -899,13 +759,13 @@ "current": { "number": "", "spec": "WebRTC Statistics", - "text": "11. Security and Privacy Considerations", + "text": "10. Security and Privacy Considerations", "url": "https://w3c.github.io/webrtc-stats/#security-and-privacy-considerations" }, "snapshot": { "number": "", "spec": "WebRTC Statistics", - "text": "11. Security and Privacy Considerations", + "text": "10. Security and Privacy Considerations", "url": "https://www.w3.org/TR/webrtc-stats/#security-and-privacy-considerations" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-webrtc-svc.json b/bikeshed/spec-data/readonly/headings/headings-webrtc-svc.json index 6a610c9784..15091f4419 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webrtc-svc.json +++ b/bikeshed/spec-data/readonly/headings/headings-webrtc-svc.json @@ -1,13 +1,13 @@ { "#L1T1*": { "current": { - "number": "10.1", + "number": "9.1", "spec": "SVC", "text": "L1T1", "url": "https://w3c.github.io/webrtc-svc/#L1T1*" }, "snapshot": { - "number": "10.1", + "number": "9.1", "spec": "SVC", "text": "L1T1", "url": "https://www.w3.org/TR/webrtc-svc/#L1T1*" @@ -15,13 +15,13 @@ }, "#L1T2*": { "current": { - "number": "10.2", + "number": "9.2", "spec": "SVC", "text": "L1T2", "url": "https://w3c.github.io/webrtc-svc/#L1T2*" }, "snapshot": { - "number": "10.2", + "number": "9.2", "spec": "SVC", "text": "L1T2", "url": "https://www.w3.org/TR/webrtc-svc/#L1T2*" @@ -29,13 +29,13 @@ }, "#L1T3*": { "current": { - "number": "10.3", + "number": "9.3", "spec": "SVC", "text": "L1T3", "url": "https://w3c.github.io/webrtc-svc/#L1T3*" }, "snapshot": { - "number": "10.3", + "number": "9.3", "spec": "SVC", "text": "L1T3", "url": "https://www.w3.org/TR/webrtc-svc/#L1T3*" @@ -43,13 +43,13 @@ }, "#L2T1*": { "current": { - "number": "10.4", + "number": "9.4", "spec": "SVC", "text": "L2T1 and L2T1h", "url": "https://w3c.github.io/webrtc-svc/#L2T1*" }, "snapshot": { - "number": "10.4", + "number": "9.4", "spec": "SVC", "text": "L2T1 and L2T1h", "url": "https://www.w3.org/TR/webrtc-svc/#L2T1*" @@ -57,13 +57,13 @@ }, "#L2T1_KEY*": { "current": { - "number": "10.5", + "number": "9.5", "spec": "SVC", "text": "L2T1_KEY", "url": "https://w3c.github.io/webrtc-svc/#L2T1_KEY*" }, "snapshot": { - "number": "10.5", + "number": "9.5", "spec": "SVC", "text": "L2T1_KEY", "url": "https://www.w3.org/TR/webrtc-svc/#L2T1_KEY*" @@ -71,13 +71,13 @@ }, "#L2T2*": { "current": { - "number": "10.6", + "number": "9.6", "spec": "SVC", "text": "L2T2 and L2T2h", "url": "https://w3c.github.io/webrtc-svc/#L2T2*" }, "snapshot": { - "number": "10.6", + "number": "9.6", "spec": "SVC", "text": "L2T2 and L2T2h", "url": "https://www.w3.org/TR/webrtc-svc/#L2T2*" @@ -85,13 +85,13 @@ }, "#L2T2_KEY*": { "current": { - "number": "10.7", + "number": "9.7", "spec": "SVC", "text": "L2T2_KEY", "url": "https://w3c.github.io/webrtc-svc/#L2T2_KEY*" }, "snapshot": { - "number": "10.7", + "number": "9.7", "spec": "SVC", "text": "L2T2_KEY", "url": "https://www.w3.org/TR/webrtc-svc/#L2T2_KEY*" @@ -99,13 +99,13 @@ }, "#L2T2_KEY_SHIFT*": { "current": { - "number": "10.8", + "number": "9.8", "spec": "SVC", "text": "L2T2_KEY_SHIFT", "url": "https://w3c.github.io/webrtc-svc/#L2T2_KEY_SHIFT*" }, "snapshot": { - "number": "10.8", + "number": "9.8", "spec": "SVC", "text": "L2T2_KEY_SHIFT", "url": "https://www.w3.org/TR/webrtc-svc/#L2T2_KEY_SHIFT*" @@ -113,13 +113,13 @@ }, "#L2T3*": { "current": { - "number": "10.9", + "number": "9.9", "spec": "SVC", "text": "L2T3 and L2T3h", "url": "https://w3c.github.io/webrtc-svc/#L2T3*" }, "snapshot": { - "number": "10.9", + "number": "9.9", "spec": "SVC", "text": "L2T3 and L2T3h", "url": "https://www.w3.org/TR/webrtc-svc/#L2T3*" @@ -127,13 +127,13 @@ }, "#L2T3_KEY*": { "current": { - "number": "10.10", + "number": "9.10", "spec": "SVC", "text": "L2T3_KEY", "url": "https://w3c.github.io/webrtc-svc/#L2T3_KEY*" }, "snapshot": { - "number": "10.10", + "number": "9.10", "spec": "SVC", "text": "L2T3_KEY", "url": "https://www.w3.org/TR/webrtc-svc/#L2T3_KEY*" @@ -141,13 +141,13 @@ }, "#L2T3_KEY_SHIFT*": { "current": { - "number": "10.11", + "number": "9.11", "spec": "SVC", "text": "L2T3_KEY_SHIFT", "url": "https://w3c.github.io/webrtc-svc/#L2T3_KEY_SHIFT*" }, "snapshot": { - "number": "10.11", + "number": "9.11", "spec": "SVC", "text": "L2T3_KEY_SHIFT", "url": "https://www.w3.org/TR/webrtc-svc/#L2T3_KEY_SHIFT*" @@ -155,13 +155,13 @@ }, "#L3T1*": { "current": { - "number": "10.12", + "number": "9.12", "spec": "SVC", "text": "L3T1 and L3T1h", "url": "https://w3c.github.io/webrtc-svc/#L3T1*" }, "snapshot": { - "number": "10.12", + "number": "9.12", "spec": "SVC", "text": "L3T1 and L3T1h", "url": "https://www.w3.org/TR/webrtc-svc/#L3T1*" @@ -169,13 +169,13 @@ }, "#L3T1_KEY*": { "current": { - "number": "10.13", + "number": "9.13", "spec": "SVC", "text": "L3T1_KEY", "url": "https://w3c.github.io/webrtc-svc/#L3T1_KEY*" }, "snapshot": { - "number": "10.13", + "number": "9.13", "spec": "SVC", "text": "L3T1_KEY", "url": "https://www.w3.org/TR/webrtc-svc/#L3T1_KEY*" @@ -183,13 +183,13 @@ }, "#L3T2*": { "current": { - "number": "10.14", + "number": "9.14", "spec": "SVC", "text": "L3T2 and L3T2h", "url": "https://w3c.github.io/webrtc-svc/#L3T2*" }, "snapshot": { - "number": "10.14", + "number": "9.14", "spec": "SVC", "text": "L3T2 and L3T2h", "url": "https://www.w3.org/TR/webrtc-svc/#L3T2*" @@ -197,13 +197,13 @@ }, "#L3T2_KEY*": { "current": { - "number": "10.15", + "number": "9.15", "spec": "SVC", "text": "L3T2_KEY", "url": "https://w3c.github.io/webrtc-svc/#L3T2_KEY*" }, "snapshot": { - "number": "10.15", + "number": "9.15", "spec": "SVC", "text": "L3T2_KEY", "url": "https://www.w3.org/TR/webrtc-svc/#L3T2_KEY*" @@ -211,13 +211,13 @@ }, "#L3T2_KEY_SHIFT*": { "current": { - "number": "10.16", + "number": "9.16", "spec": "SVC", "text": "L3T2_KEY_SHIFT", "url": "https://w3c.github.io/webrtc-svc/#L3T2_KEY_SHIFT*" }, "snapshot": { - "number": "10.16", + "number": "9.16", "spec": "SVC", "text": "L3T2_KEY_SHIFT", "url": "https://www.w3.org/TR/webrtc-svc/#L3T2_KEY_SHIFT*" @@ -225,13 +225,13 @@ }, "#L3T3*": { "current": { - "number": "10.17", + "number": "9.17", "spec": "SVC", "text": "L3T3 and L3T3h", "url": "https://w3c.github.io/webrtc-svc/#L3T3*" }, "snapshot": { - "number": "10.17", + "number": "9.17", "spec": "SVC", "text": "L3T3 and L3T3h", "url": "https://www.w3.org/TR/webrtc-svc/#L3T3*" @@ -239,13 +239,13 @@ }, "#L3T3_KEY*": { "current": { - "number": "10.18", + "number": "9.18", "spec": "SVC", "text": "L3T3_KEY", "url": "https://w3c.github.io/webrtc-svc/#L3T3_KEY*" }, "snapshot": { - "number": "10.18", + "number": "9.18", "spec": "SVC", "text": "L3T3_KEY", "url": "https://www.w3.org/TR/webrtc-svc/#L3T3_KEY*" @@ -253,13 +253,13 @@ }, "#L3T3_KEY_SHIFT*": { "current": { - "number": "10.19", + "number": "9.19", "spec": "SVC", "text": "L3T3_KEY_SHIFT", "url": "https://w3c.github.io/webrtc-svc/#L3T3_KEY_SHIFT*" }, "snapshot": { - "number": "10.19", + "number": "9.19", "spec": "SVC", "text": "L3T3_KEY_SHIFT", "url": "https://www.w3.org/TR/webrtc-svc/#L3T3_KEY_SHIFT*" @@ -267,13 +267,13 @@ }, "#S2T1*": { "current": { - "number": "10.20", + "number": "9.20", "spec": "SVC", "text": "S2T1 and S2T1h", "url": "https://w3c.github.io/webrtc-svc/#S2T1*" }, "snapshot": { - "number": "10.20", + "number": "9.20", "spec": "SVC", "text": "S2T1 and S2T1h", "url": "https://www.w3.org/TR/webrtc-svc/#S2T1*" @@ -281,13 +281,13 @@ }, "#S2T2*": { "current": { - "number": "10.21", + "number": "9.21", "spec": "SVC", "text": "S2T2 and S2T2h", "url": "https://w3c.github.io/webrtc-svc/#S2T2*" }, "snapshot": { - "number": "10.21", + "number": "9.21", "spec": "SVC", "text": "S2T2 and S2T2h", "url": "https://www.w3.org/TR/webrtc-svc/#S2T2*" @@ -295,13 +295,13 @@ }, "#S2T3*": { "current": { - "number": "10.22", + "number": "9.22", "spec": "SVC", "text": "S2T3 and S2T3h", "url": "https://w3c.github.io/webrtc-svc/#S2T3*" }, "snapshot": { - "number": "10.22", + "number": "9.22", "spec": "SVC", "text": "S2T3 and S2T3h", "url": "https://www.w3.org/TR/webrtc-svc/#S2T3*" @@ -309,13 +309,13 @@ }, "#S3T1*": { "current": { - "number": "10.23", + "number": "9.23", "spec": "SVC", "text": "S3T1 and S3T1h", "url": "https://w3c.github.io/webrtc-svc/#S3T1*" }, "snapshot": { - "number": "10.23", + "number": "9.23", "spec": "SVC", "text": "S3T1 and S3T1h", "url": "https://www.w3.org/TR/webrtc-svc/#S3T1*" @@ -323,13 +323,13 @@ }, "#S3T2*": { "current": { - "number": "10.24", + "number": "9.24", "spec": "SVC", "text": "S3T2 and S3T2h", "url": "https://w3c.github.io/webrtc-svc/#S3T2*" }, "snapshot": { - "number": "10.24", + "number": "9.24", "spec": "SVC", "text": "S3T2 and S3T2h", "url": "https://www.w3.org/TR/webrtc-svc/#S3T2*" @@ -337,13 +337,13 @@ }, "#S3T3*": { "current": { - "number": "10.25", + "number": "9.25", "spec": "SVC", "text": "S3T3 and S3T3h", "url": "https://w3c.github.io/webrtc-svc/#S3T3*" }, "snapshot": { - "number": "10.25", + "number": "9.25", "spec": "SVC", "text": "S3T3 and S3T3h", "url": "https://www.w3.org/TR/webrtc-svc/#S3T3*" @@ -379,13 +379,13 @@ }, "#addingmodes*": { "current": { - "number": "6.1", + "number": "5.1", "spec": "SVC", "text": "Guidelines for addition of scalabilityMode values", "url": "https://w3c.github.io/webrtc-svc/#addingmodes*" }, "snapshot": { - "number": "6.1", + "number": "5.1", "spec": "SVC", "text": "Guidelines for addition of scalabilityMode values", "url": "https://www.w3.org/TR/webrtc-svc/#addingmodes*" @@ -435,15 +435,15 @@ }, "#dependencydiagrams*": { "current": { - "number": "", + "number": "9", "spec": "SVC", - "text": "10. Scalability Mode Dependency Diagrams", + "text": "Scalability Mode Dependency Diagrams", "url": "https://w3c.github.io/webrtc-svc/#dependencydiagrams*" }, "snapshot": { - "number": "", + "number": "9", "spec": "SVC", - "text": "10. Scalability Mode Dependency Diagrams", + "text": "Scalability Mode Dependency Diagrams", "url": "https://www.w3.org/TR/webrtc-svc/#dependencydiagrams*" } }, @@ -461,20 +461,6 @@ "url": "https://www.w3.org/TR/webrtc-svc/#dictionary-rtcrtpencodingparameters-members" } }, - "#discovery": { - "current": { - "number": "5", - "spec": "SVC", - "text": "Discovery", - "url": "https://w3c.github.io/webrtc-svc/#discovery" - }, - "snapshot": { - "number": "5", - "spec": "SVC", - "text": "Discovery", - "url": "https://www.w3.org/TR/webrtc-svc/#discovery" - } - }, "#getparameters": { "current": { "number": "4.2.3", @@ -519,13 +505,13 @@ }, "#media-capabilities-example*": { "current": { - "number": "7.2", + "number": "6.2", "spec": "SVC", "text": "SVC Encoder Capabilities", "url": "https://w3c.github.io/webrtc-svc/#media-capabilities-example*" }, "snapshot": { - "number": "7.2", + "number": "6.2", "spec": "SVC", "text": "SVC Encoder Capabilities", "url": "https://www.w3.org/TR/webrtc-svc/#media-capabilities-example*" @@ -547,13 +533,13 @@ }, "#persistent-information": { "current": { - "number": "8.1", + "number": "7.1", "spec": "SVC", "text": "Persistent information", "url": "https://w3c.github.io/webrtc-svc/#persistent-information" }, "snapshot": { - "number": "8.1", + "number": "7.1", "spec": "SVC", "text": "Persistent information", "url": "https://www.w3.org/TR/webrtc-svc/#persistent-information" @@ -561,13 +547,13 @@ }, "#privacy": { "current": { - "number": "8", + "number": "7", "spec": "SVC", "text": "Privacy Considerations", "url": "https://w3c.github.io/webrtc-svc/#privacy" }, "snapshot": { - "number": "8", + "number": "7", "spec": "SVC", "text": "Privacy Considerations", "url": "https://www.w3.org/TR/webrtc-svc/#privacy" @@ -603,13 +589,13 @@ }, "#rtcrtpencodingparameters-example*": { "current": { - "number": "7", + "number": "6", "spec": "SVC", "text": "Examples", "url": "https://w3c.github.io/webrtc-svc/#rtcrtpencodingparameters-example*" }, "snapshot": { - "number": "7", + "number": "6", "spec": "SVC", "text": "Examples", "url": "https://www.w3.org/TR/webrtc-svc/#rtcrtpencodingparameters-example*" @@ -617,13 +603,13 @@ }, "#scalabilitymodes*": { "current": { - "number": "6", + "number": "5", "spec": "SVC", "text": "Scalability modes", "url": "https://w3c.github.io/webrtc-svc/#scalabilitymodes*" }, "snapshot": { - "number": "6", + "number": "5", "spec": "SVC", "text": "Scalability modes", "url": "https://www.w3.org/TR/webrtc-svc/#scalabilitymodes*" @@ -631,13 +617,13 @@ }, "#security": { "current": { - "number": "9", + "number": "8", "spec": "SVC", "text": "Security Considerations", "url": "https://w3c.github.io/webrtc-svc/#security" }, "snapshot": { - "number": "9", + "number": "8", "spec": "SVC", "text": "Security Considerations", "url": "https://www.w3.org/TR/webrtc-svc/#security" @@ -659,13 +645,13 @@ }, "#sfm-getcapabilities-example*": { "current": { - "number": "7.3", + "number": "6.3", "spec": "SVC", "text": "SFM Capabilities", "url": "https://w3c.github.io/webrtc-svc/#sfm-getcapabilities-example*" }, "snapshot": { - "number": "7.3", + "number": "6.3", "spec": "SVC", "text": "SFM Capabilities", "url": "https://www.w3.org/TR/webrtc-svc/#sfm-getcapabilities-example*" @@ -673,27 +659,27 @@ }, "#sfmnegotiation": { "current": { - "number": "5.1", + "number": "4.2.4", "spec": "SVC", - "text": "Negotiation", + "text": "Negotiation issues", "url": "https://w3c.github.io/webrtc-svc/#sfmnegotiation" }, "snapshot": { - "number": "5.1", + "number": "4.2.4", "spec": "SVC", - "text": "Negotiation", + "text": "Negotiation issues", "url": "https://www.w3.org/TR/webrtc-svc/#sfmnegotiation" } }, "#simulcasttemporal-example*": { "current": { - "number": "7.1", + "number": "6.1", "spec": "SVC", "text": "Spatial Simulcast and Temporal Scalability", "url": "https://w3c.github.io/webrtc-svc/#simulcasttemporal-example*" }, "snapshot": { - "number": "7.1", + "number": "6.1", "spec": "SVC", "text": "Spatial Simulcast and Temporal Scalability", "url": "https://www.w3.org/TR/webrtc-svc/#simulcasttemporal-example*" diff --git a/bikeshed/spec-data/readonly/headings/headings-webrtc.json b/bikeshed/spec-data/readonly/headings/headings-webrtc.json index 0f914f7a99..a721b9cdea 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webrtc.json +++ b/bikeshed/spec-data/readonly/headings/headings-webrtc.json @@ -21,7 +21,7 @@ "url": "https://w3c.github.io/webrtc-pc/#acknowledgements" }, "snapshot": { - "number": "A", + "number": "B", "spec": "WebRTC 1.0", "text": "Acknowledgements", "url": "https://www.w3.org/TR/webrtc/#acknowledgements" @@ -307,6 +307,14 @@ "url": "https://www.w3.org/TR/webrtc/#attributes-21" } }, + "#attributes-22": { + "current": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Attributes", + "url": "https://w3c.github.io/webrtc-pc/#attributes-22" + } + }, "#attributes-3": { "current": { "number": "", @@ -377,6 +385,14 @@ "url": "https://www.w3.org/TR/webrtc/#attributes-7" } }, + "#attributes-7-dedup-5": { + "snapshot": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/webrtc/#attributes-7-dedup-5" + } + }, "#attributes-8": { "current": { "number": "", @@ -523,6 +539,12 @@ "spec": "WebRTC 1.0", "text": "Candidate Amendments", "url": "https://w3c.github.io/webrtc-pc/#changes" + }, + "snapshot": { + "number": "A", + "spec": "WebRTC 1.0", + "text": "Candidate Amendments", + "url": "https://www.w3.org/TR/webrtc/#changes" } }, "#clearing-negotiation-needed": { @@ -791,6 +813,14 @@ "url": "https://www.w3.org/TR/webrtc/#dictionary-rtcconfiguration-members" } }, + "#dictionary-rtcconfiguration-members-new": { + "snapshot": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Dictionary RTCConfiguration Members", + "url": "https://www.w3.org/TR/webrtc/#dictionary-rtcconfiguration-members-new" + } + }, "#dictionary-rtcdatachanneleventinit-members": { "current": { "number": "", @@ -876,12 +906,6 @@ } }, "#dictionary-rtcicecandidatepair-members": { - "current": { - "number": "", - "spec": "WebRTC 1.0", - "text": "Dictionary RTCIceCandidatePair Members", - "url": "https://w3c.github.io/webrtc-pc/#dictionary-rtcicecandidatepair-members" - }, "snapshot": { "number": "", "spec": "WebRTC 1.0", @@ -917,6 +941,14 @@ "url": "https://www.w3.org/TR/webrtc/#dictionary-rtciceserver-members" } }, + "#dictionary-rtciceserver-members-dedup-1": { + "snapshot": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Dictionary RTCIceServer Members", + "url": "https://www.w3.org/TR/webrtc/#dictionary-rtciceserver-members-dedup-1" + } + }, "#dictionary-rtclocalsessiondescriptioninit-members": { "current": { "number": "", @@ -1015,13 +1047,15 @@ "url": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcapabilities-members" } }, - "#dictionary-rtcrtpcodeccapability-members": { + "#dictionary-rtcrtpcodec-members": { "current": { "number": "", "spec": "WebRTC 1.0", - "text": "Dictionary RTCRtpCodecCapability Members", - "url": "https://w3c.github.io/webrtc-pc/#dictionary-rtcrtpcodeccapability-members" - }, + "text": "Dictionary RTCRtpCodec Members", + "url": "https://w3c.github.io/webrtc-pc/#dictionary-rtcrtpcodec-members" + } + }, + "#dictionary-rtcrtpcodeccapability-members": { "snapshot": { "number": "", "spec": "WebRTC 1.0", @@ -1169,6 +1203,14 @@ "url": "https://www.w3.org/TR/webrtc/#dictionary-rtcsessiondescriptioninit-members" } }, + "#dictionary-rtcsetparameteroptions-members": { + "current": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Dictionary RTCSetParameterOptions Members", + "url": "https://w3c.github.io/webrtc-pc/#dictionary-rtcsetparameteroptions-members" + } + }, "#dictionary-rtcstats-members": { "current": { "number": "", @@ -1401,7 +1443,7 @@ "url": "https://w3c.github.io/webrtc-pc/#informative-references" }, "snapshot": { - "number": "B.2", + "number": "C.2", "spec": "WebRTC 1.0", "text": "Informative references", "url": "https://www.w3.org/TR/webrtc/#informative-references" @@ -1757,6 +1799,14 @@ "url": "https://www.w3.org/TR/webrtc/#methods-4" } }, + "#methods-4-dedup-6": { + "snapshot": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Methods", + "url": "https://www.w3.org/TR/webrtc/#methods-4-dedup-6" + } + }, "#methods-5": { "current": { "number": "", @@ -1835,7 +1885,7 @@ "url": "https://w3c.github.io/webrtc-pc/#normative-references" }, "snapshot": { - "number": "B.1", + "number": "C.1", "spec": "WebRTC 1.0", "text": "Normative references", "url": "https://www.w3.org/TR/webrtc/#normative-references" @@ -1849,7 +1899,7 @@ "url": "https://w3c.github.io/webrtc-pc/#offer-answer-options" }, "snapshot": { - "number": "4.2.7", + "number": "4.2.6", "spec": "WebRTC 1.0", "text": "Offer/Answer Options", "url": "https://www.w3.org/TR/webrtc/#offer-answer-options" @@ -2003,7 +2053,7 @@ "url": "https://w3c.github.io/webrtc-pc/#references" }, "snapshot": { - "number": "B", + "number": "C", "spec": "WebRTC 1.0", "text": "References", "url": "https://www.w3.org/TR/webrtc/#references" @@ -2031,7 +2081,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcbundlepolicy-enum" }, "snapshot": { - "number": "4.2.5", + "number": "4.2.4", "spec": "WebRTC 1.0", "text": "RTCBundlePolicy Enum", "url": "https://www.w3.org/TR/webrtc/#rtcbundlepolicy-enum" @@ -2051,6 +2101,14 @@ "url": "https://www.w3.org/TR/webrtc/#rtccertificate-interface" } }, + "#rtccertificate-interface-new": { + "snapshot": { + "number": "4.9.2", + "spec": "WebRTC 1.0", + "text": "RTCCertificate Interface", + "url": "https://www.w3.org/TR/webrtc/#rtccertificate-interface-new" + } + }, "#rtccertificateexpiration-dictionary": { "current": { "number": "4.9.1", @@ -2065,6 +2123,14 @@ "url": "https://www.w3.org/TR/webrtc/#rtccertificateexpiration-dictionary" } }, + "#rtccertificateexpiration-dictionary-new": { + "snapshot": { + "number": "4.9.1", + "spec": "WebRTC 1.0", + "text": "RTCCertificateExpiration Dictionary", + "url": "https://www.w3.org/TR/webrtc/#rtccertificateexpiration-dictionary-new" + } + }, "#rtcconfiguration-dictionary": { "current": { "number": "4.2.1", @@ -2115,7 +2181,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcdtlsfingerprint" }, "snapshot": { - "number": "5.5.1", + "number": "5.5.2", "spec": "WebRTC 1.0", "text": "RTCDtlsFingerprint Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcdtlsfingerprint" @@ -2143,7 +2209,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcdtlstransportstate-enum" }, "snapshot": { - "number": "", + "number": "5.5.1", "spec": "WebRTC 1.0", "text": "RTCDtlsTransportState Enum", "url": "https://www.w3.org/TR/webrtc/#rtcdtlstransportstate-enum" @@ -2241,7 +2307,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcerrorinit-dictionary" }, "snapshot": { - "number": "", + "number": "11.1.3", "spec": "WebRTC 1.0", "text": "RTCErrorInit Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcerrorinit-dictionary" @@ -2265,7 +2331,7 @@ "current": { "number": "5.6.2", "spec": "WebRTC 1.0", - "text": "RTCIceCandidatePair Dictionary", + "text": "RTCIceCandidatePair Interface", "url": "https://w3c.github.io/webrtc-pc/#rtcicecandidatepair" }, "snapshot": { @@ -2409,12 +2475,26 @@ "url": "https://www.w3.org/TR/webrtc/#rtciceserver-dictionary" } }, + "#rtciceserver-dictionary-new": { + "snapshot": { + "number": "4.2.2", + "spec": "WebRTC 1.0", + "text": "RTCIceServer Dictionary", + "url": "https://www.w3.org/TR/webrtc/#rtciceserver-dictionary-new" + } + }, "#rtciceservertransportprotocol-enum": { "current": { "number": "4.8.1.5", "spec": "WebRTC 1.0", "text": "RTCIceServerTransportProtocol Enum", "url": "https://w3c.github.io/webrtc-pc/#rtciceservertransportprotocol-enum" + }, + "snapshot": { + "number": "4.8.1.5", + "spec": "WebRTC 1.0", + "text": "RTCIceServerTransportProtocol Enum", + "url": "https://www.w3.org/TR/webrtc/#rtciceservertransportprotocol-enum" } }, "#rtcicetcpcandidatetype-enum": { @@ -2453,7 +2533,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcicetransportpolicy-enum" }, "snapshot": { - "number": "4.2.4", + "number": "4.2.3", "spec": "WebRTC 1.0", "text": "RTCIceTransportPolicy Enum", "url": "https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum" @@ -2571,6 +2651,14 @@ "url": "https://www.w3.org/TR/webrtc/#rtcpeerconnectioniceevent" } }, + "#rtcpeerconnectioniceevent-attributes": { + "snapshot": { + "number": "", + "spec": "WebRTC 1.0", + "text": "Attributes", + "url": "https://www.w3.org/TR/webrtc/#rtcpeerconnectioniceevent-attributes" + } + }, "#rtcpeerconnectionstate-enum": { "current": { "number": "4.3.3", @@ -2607,7 +2695,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcrtcpmuxpolicy-enum" }, "snapshot": { - "number": "4.2.6", + "number": "4.2.5", "spec": "WebRTC 1.0", "text": "RTCRtcpMuxPolicy Enum", "url": "https://www.w3.org/TR/webrtc/#rtcrtcpmuxpolicy-enum" @@ -2621,7 +2709,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcrtcpparameters" }, "snapshot": { - "number": "5.2.7", + "number": "5.2.6", "spec": "WebRTC 1.0", "text": "RTCRtcpParameters Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtcpparameters" @@ -2629,27 +2717,29 @@ }, "#rtcrtpcapabilities": { "current": { - "number": "5.2.9", + "number": "5.2.10", "spec": "WebRTC 1.0", "text": "RTCRtpCapabilities Dictionary", "url": "https://w3c.github.io/webrtc-pc/#rtcrtpcapabilities" }, "snapshot": { - "number": "5.2.10", + "number": "5.2.9", "spec": "WebRTC 1.0", "text": "RTCRtpCapabilities Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtpcapabilities" } }, - "#rtcrtpcodeccapability": { + "#rtcrtpcodec": { "current": { - "number": "5.2.10", + "number": "5.2.8", "spec": "WebRTC 1.0", - "text": "RTCRtpCodecCapability Dictionary", - "url": "https://w3c.github.io/webrtc-pc/#rtcrtpcodeccapability" - }, + "text": "RTCRtpCodec Dictionary", + "url": "https://w3c.github.io/webrtc-pc/#rtcrtpcodec" + } + }, + "#rtcrtpcodeccapability": { "snapshot": { - "number": "5.2.11", + "number": "5.2.10", "spec": "WebRTC 1.0", "text": "RTCRtpCodecCapability Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtpcodeccapability" @@ -2657,13 +2747,13 @@ }, "#rtcrtpcodecparameters": { "current": { - "number": "5.2.8", + "number": "5.2.9", "spec": "WebRTC 1.0", "text": "RTCRtpCodecParameters Dictionary", "url": "https://w3c.github.io/webrtc-pc/#rtcrtpcodecparameters" }, "snapshot": { - "number": "5.2.9", + "number": "5.2.8", "spec": "WebRTC 1.0", "text": "RTCRtpCodecParameters Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtpcodecparameters" @@ -2699,7 +2789,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcrtpencodingparameters" }, "snapshot": { - "number": "5.2.6", + "number": "5.2.5", "spec": "WebRTC 1.0", "text": "RTCRtpEncodingParameters Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtpencodingparameters" @@ -2727,7 +2817,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcrtpheaderextensioncapability" }, "snapshot": { - "number": "5.2.12", + "number": "5.2.11", "spec": "WebRTC 1.0", "text": "RTCRtpHeaderExtensionCapability Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtpheaderextensioncapability" @@ -2741,7 +2831,7 @@ "url": "https://w3c.github.io/webrtc-pc/#rtcrtpheaderextensionparameters" }, "snapshot": { - "number": "5.2.8", + "number": "5.2.7", "spec": "WebRTC 1.0", "text": "RTCRtpHeaderExtensionParameters Dictionary", "url": "https://www.w3.org/TR/webrtc/#rtcrtpheaderextensionparameters" @@ -3001,7 +3091,7 @@ }, "#set-the-configuration": { "current": { - "number": "4.4.1.6", + "number": "4.4.1.5", "spec": "WebRTC 1.0", "text": "Set the configuration", "url": "https://w3c.github.io/webrtc-pc/#set-the-configuration" @@ -3013,9 +3103,17 @@ "url": "https://www.w3.org/TR/webrtc/#set-the-configuration" } }, + "#set-the-configuration-new": { + "snapshot": { + "number": "4.4.1.6", + "spec": "WebRTC 1.0", + "text": "Set the configuration", + "url": "https://www.w3.org/TR/webrtc/#set-the-configuration-new" + } + }, "#set-the-session-description": { "current": { - "number": "4.4.1.5", + "number": "4.4.1.4", "spec": "WebRTC 1.0", "text": "Set the session description", "url": "https://w3c.github.io/webrtc-pc/#set-the-session-description" @@ -3027,6 +3125,14 @@ "url": "https://www.w3.org/TR/webrtc/#set-the-session-description" } }, + "#setparameter-options-dedup-0": { + "current": { + "number": "5.2.12", + "spec": "WebRTC 1.0", + "text": "RTCSetParameterOptions Dictionary", + "url": "https://w3c.github.io/webrtc-pc/#setparameter-options-dedup-0" + } + }, "#setting-negotiation-needed": { "current": { "number": "4.7.1", @@ -3097,6 +3203,14 @@ "url": "https://www.w3.org/TR/webrtc/#simulcast-functionality" } }, + "#simulcast-functionality-new": { + "snapshot": { + "number": "5.4.1", + "spec": "WebRTC 1.0", + "text": "Simulcast functionality", + "url": "https://www.w3.org/TR/webrtc/#simulcast-functionality-new" + } + }, "#state-definitions": { "current": { "number": "4.3", @@ -3163,7 +3277,7 @@ "snapshot": { "number": "", "spec": "WebRTC 1.0", - "text": "WebRTC 1.0: Real-Time Communication Between Browsers", + "text": "WebRTC: Real-Time Communication in Browsers", "url": "https://www.w3.org/TR/webrtc/#title" } }, @@ -3210,12 +3324,6 @@ } }, "#update-the-ice-gathering-state": { - "current": { - "number": "4.4.1.4", - "spec": "WebRTC 1.0", - "text": "Update the ICE gathering state", - "url": "https://w3c.github.io/webrtc-pc/#update-the-ice-gathering-state" - }, "snapshot": { "number": "4.4.1.4", "spec": "WebRTC 1.0", @@ -3236,5 +3344,13 @@ "text": "Updating the Negotiation-Needed flag", "url": "https://www.w3.org/TR/webrtc/#updating-the-negotiation-needed-flag" } + }, + "#x5-4-1-1-encoding-parameter-examples": { + "snapshot": { + "number": "5.4.1.1", + "spec": "WebRTC 1.0", + "text": "Encoding Parameter Examples", + "url": "https://www.w3.org/TR/webrtc/#x5-4-1-1-encoding-parameter-examples" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-websockets.json b/bikeshed/spec-data/readonly/headings/headings-websockets.json index e2f4eaabff..41aa76e52e 100644 --- a/bikeshed/spec-data/readonly/headings/headings-websockets.json +++ b/bikeshed/spec-data/readonly/headings/headings-websockets.json @@ -111,14 +111,6 @@ "url": "https://websockets.spec.whatwg.org/#references" } }, - "#subtitle": { - "current": { - "number": "", - "spec": "WebSockets", - "text": "Living Standard — Last Updated 25 October 2022", - "url": "https://websockets.spec.whatwg.org/#subtitle" - } - }, "#the-closeevent-interface": { "current": { "number": "6", diff --git a/bikeshed/spec-data/readonly/headings/headings-webtransport.json b/bikeshed/spec-data/readonly/headings/headings-webtransport.json index 8e721de589..a2a90a626f 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webtransport.json +++ b/bikeshed/spec-data/readonly/headings/headings-webtransport.json @@ -17,25 +17,25 @@ "current": { "number": "", "spec": "WebTransport", - "text": "14. Acknowledgements", + "text": "15. Acknowledgements", "url": "https://w3c.github.io/webtransport/#acknowledgements" }, "snapshot": { "number": "", "spec": "WebTransport", - "text": "13. Acknowledgements", + "text": "15. Acknowledgements", "url": "https://www.w3.org/TR/webtransport/#acknowledgements" } }, "#bidirectional-stream": { "current": { - "number": "8", + "number": "9", "spec": "WebTransport", "text": "Interface WebTransportBidirectionalStream", "url": "https://w3c.github.io/webtransport/#bidirectional-stream" }, "snapshot": { - "number": "8", + "number": "9", "spec": "WebTransport", "text": "Interface WebTransportBidirectionalStream", "url": "https://www.w3.org/TR/webtransport/#bidirectional-stream" @@ -43,13 +43,13 @@ }, "#bidirectional-stream-attributes": { "current": { - "number": "8.2", + "number": "9.2", "spec": "WebTransport", "text": "Attributes", "url": "https://w3c.github.io/webtransport/#bidirectional-stream-attributes" }, "snapshot": { - "number": "8.2", + "number": "9.2", "spec": "WebTransport", "text": "Attributes", "url": "https://www.w3.org/TR/webtransport/#bidirectional-stream-attributes" @@ -57,13 +57,13 @@ }, "#bidirectional-stream-internal-slots": { "current": { - "number": "8.1", + "number": "9.1", "spec": "WebTransport", "text": "Internal slots", "url": "https://w3c.github.io/webtransport/#bidirectional-stream-internal-slots" }, "snapshot": { - "number": "8.1", + "number": "9.1", "spec": "WebTransport", "text": "Internal slots", "url": "https://www.w3.org/TR/webtransport/#bidirectional-stream-internal-slots" @@ -71,13 +71,13 @@ }, "#bidirectional-stream-procedures": { "current": { - "number": "8.3", + "number": "9.3", "spec": "WebTransport", "text": "Procedures", "url": "https://w3c.github.io/webtransport/#bidirectional-stream-procedures" }, "snapshot": { - "number": "8.3", + "number": "9.3", "spec": "WebTransport", "text": "Procedures", "url": "https://www.w3.org/TR/webtransport/#bidirectional-stream-procedures" @@ -85,13 +85,13 @@ }, "#certificate-hashes": { "current": { - "number": "12.4", + "number": "13.4", "spec": "WebTransport", "text": "Authentication using Certificate Hashes {#certificate-hashes}", "url": "https://w3c.github.io/webtransport/#certificate-hashes" }, "snapshot": { - "number": "11.4", + "number": "13.4", "spec": "WebTransport", "text": "Authentication using Certificate Hashes {#certificate-hashes}", "url": "https://www.w3.org/TR/webtransport/#certificate-hashes" @@ -99,13 +99,13 @@ }, "#confidentiality": { "current": { - "number": "12.1", + "number": "13.1", "spec": "WebTransport", "text": "Confidentiality of Communications", "url": "https://w3c.github.io/webtransport/#confidentiality" }, "snapshot": { - "number": "11.1", + "number": "13.1", "spec": "WebTransport", "text": "Confidentiality of Communications", "url": "https://www.w3.org/TR/webtransport/#confidentiality" @@ -183,13 +183,13 @@ }, "#example-complete": { "current": { - "number": "13.6", + "number": "14.10", "spec": "WebTransport", "text": "Complete example", "url": "https://w3c.github.io/webtransport/#example-complete" }, "snapshot": { - "number": "12.6", + "number": "14.10", "spec": "WebTransport", "text": "Complete example", "url": "https://www.w3.org/TR/webtransport/#example-complete" @@ -197,27 +197,41 @@ }, "#example-datagrams": { "current": { - "number": "13.1", + "number": "14.1", "spec": "WebTransport", "text": "Sending a buffer of datagrams", "url": "https://w3c.github.io/webtransport/#example-datagrams" }, "snapshot": { - "number": "12.1", + "number": "14.1", "spec": "WebTransport", "text": "Sending a buffer of datagrams", "url": "https://www.w3.org/TR/webtransport/#example-datagrams" } }, + "#example-datagrams-byob": { + "current": { + "number": "14.4", + "spec": "WebTransport", + "text": "Receiving datagrams with a BYOB reader", + "url": "https://w3c.github.io/webtransport/#example-datagrams-byob" + }, + "snapshot": { + "number": "14.4", + "spec": "WebTransport", + "text": "Receiving datagrams with a BYOB reader", + "url": "https://www.w3.org/TR/webtransport/#example-datagrams-byob" + } + }, "#example-fixed-rate": { "current": { - "number": "13.2", + "number": "14.2", "spec": "WebTransport", "text": "Sending datagrams at a fixed rate", "url": "https://w3c.github.io/webtransport/#example-fixed-rate" }, "snapshot": { - "number": "12.2", + "number": "14.2", "spec": "WebTransport", "text": "Sending datagrams at a fixed rate", "url": "https://www.w3.org/TR/webtransport/#example-fixed-rate" @@ -225,13 +239,13 @@ }, "#example-receiving-datagrams": { "current": { - "number": "13.3", + "number": "14.3", "spec": "WebTransport", "text": "Receiving datagrams", "url": "https://w3c.github.io/webtransport/#example-receiving-datagrams" }, "snapshot": { - "number": "12.3", + "number": "14.3", "spec": "WebTransport", "text": "Receiving datagrams", "url": "https://www.w3.org/TR/webtransport/#example-receiving-datagrams" @@ -239,13 +253,13 @@ }, "#example-receiving-incoming-streams": { "current": { - "number": "13.5", + "number": "14.6", "spec": "WebTransport", "text": "Receiving incoming streams", "url": "https://w3c.github.io/webtransport/#example-receiving-incoming-streams" }, "snapshot": { - "number": "12.5", + "number": "14.6", "spec": "WebTransport", "text": "Receiving incoming streams", "url": "https://www.w3.org/TR/webtransport/#example-receiving-incoming-streams" @@ -253,32 +267,130 @@ }, "#example-sending-stream": { "current": { - "number": "13.4", + "number": "14.5", "spec": "WebTransport", "text": "Sending a stream", "url": "https://w3c.github.io/webtransport/#example-sending-stream" }, "snapshot": { - "number": "12.4", + "number": "14.5", "spec": "WebTransport", "text": "Sending a stream", "url": "https://www.w3.org/TR/webtransport/#example-sending-stream" } }, + "#example-server-certificate-hash": { + "current": { + "number": "14.9", + "spec": "WebTransport", + "text": "Using a server certificate hash", + "url": "https://w3c.github.io/webtransport/#example-server-certificate-hash" + }, + "snapshot": { + "number": "14.9", + "spec": "WebTransport", + "text": "Using a server certificate hash", + "url": "https://www.w3.org/TR/webtransport/#example-server-certificate-hash" + } + }, + "#example-stream-byob": { + "current": { + "number": "14.7", + "spec": "WebTransport", + "text": "Receiving a stream with a BYOB reader", + "url": "https://w3c.github.io/webtransport/#example-stream-byob" + }, + "snapshot": { + "number": "14.7", + "spec": "WebTransport", + "text": "Receiving a stream with a BYOB reader", + "url": "https://www.w3.org/TR/webtransport/#example-stream-byob" + } + }, + "#example-transactional-stream": { + "current": { + "number": "14.8", + "spec": "WebTransport", + "text": "Sending a transactional chunk on a stream", + "url": "https://w3c.github.io/webtransport/#example-transactional-stream" + }, + "snapshot": { + "number": "14.8", + "spec": "WebTransport", + "text": "Sending a transactional chunk on a stream", + "url": "https://www.w3.org/TR/webtransport/#example-transactional-stream" + } + }, "#examples": { "current": { "number": "", "spec": "WebTransport", - "text": "13. Examples", + "text": "14. Examples", "url": "https://w3c.github.io/webtransport/#examples" }, "snapshot": { "number": "", "spec": "WebTransport", - "text": "12. Examples", + "text": "14. Examples", "url": "https://www.w3.org/TR/webtransport/#examples" } }, + "#fingerprinting": { + "current": { + "number": "13.5", + "spec": "WebTransport", + "text": "Fingerprinting and Tracking", + "url": "https://w3c.github.io/webtransport/#fingerprinting" + }, + "snapshot": { + "number": "13.5", + "spec": "WebTransport", + "text": "Fingerprinting and Tracking", + "url": "https://www.w3.org/TR/webtransport/#fingerprinting" + } + }, + "#fp-pooled": { + "current": { + "number": "13.5.3", + "spec": "WebTransport", + "text": "Pooled Sessions", + "url": "https://w3c.github.io/webtransport/#fp-pooled" + }, + "snapshot": { + "number": "13.5.3", + "spec": "WebTransport", + "text": "Pooled Sessions", + "url": "https://www.w3.org/TR/webtransport/#fp-pooled" + } + }, + "#fp-shared": { + "current": { + "number": "13.5.2", + "spec": "WebTransport", + "text": "Shared Networking", + "url": "https://w3c.github.io/webtransport/#fp-shared" + }, + "snapshot": { + "number": "13.5.2", + "spec": "WebTransport", + "text": "Shared Networking", + "url": "https://www.w3.org/TR/webtransport/#fp-shared" + } + }, + "#fp-static": { + "current": { + "number": "13.5.1", + "spec": "WebTransport", + "text": "Static Observations", + "url": "https://w3c.github.io/webtransport/#fp-static" + }, + "snapshot": { + "number": "13.5.1", + "spec": "WebTransport", + "text": "Static Observations", + "url": "https://www.w3.org/TR/webtransport/#fp-static" + } + }, "#idl-index": { "current": { "number": "", @@ -391,25 +503,17 @@ "url": "https://www.w3.org/TR/webtransport/#normative" } }, - "#pooled-sessions": { - "current": { - "number": "12.5", - "spec": "WebTransport", - "text": "Pooled Sessions", - "url": "https://w3c.github.io/webtransport/#pooled-sessions" - } - }, "#privacy-security": { "current": { "number": "", "spec": "WebTransport", - "text": "12. Privacy and Security Considerations", + "text": "13. Privacy and Security Considerations", "url": "https://w3c.github.io/webtransport/#privacy-security" }, "snapshot": { "number": "", "spec": "WebTransport", - "text": "11. Privacy and Security Considerations", + "text": "13. Privacy and Security Considerations", "url": "https://www.w3.org/TR/webtransport/#privacy-security" } }, @@ -431,71 +535,39 @@ "current": { "number": "", "spec": "WebTransport", - "text": "11. Protocol Mappings", + "text": "12. Protocol Mappings", "url": "https://w3c.github.io/webtransport/#protocol-mapping" }, "snapshot": { "number": "", "spec": "WebTransport", - "text": "10. Protocol Mappings", + "text": "12. Protocol Mappings", "url": "https://www.w3.org/TR/webtransport/#protocol-mapping" } }, "#protocol-security": { "current": { - "number": "12.3", + "number": "13.3", "spec": "WebTransport", "text": "Protocol Security", "url": "https://w3c.github.io/webtransport/#protocol-security" }, "snapshot": { - "number": "11.3", + "number": "13.3", "spec": "WebTransport", "text": "Protocol Security", "url": "https://www.w3.org/TR/webtransport/#protocol-security" } }, - "#rate-control-feedback": { - "current": { - "number": "9", - "spec": "WebTransport", - "text": "Interface WebTransportRateControlFeedback", - "url": "https://w3c.github.io/webtransport/#rate-control-feedback" - } - }, - "#rate-control-feedback-attributes": { - "current": { - "number": "9.2", - "spec": "WebTransport", - "text": "Attributes", - "url": "https://w3c.github.io/webtransport/#rate-control-feedback-attributes" - } - }, - "#rate-control-feedback-internal-slots": { - "current": { - "number": "9.1", - "spec": "WebTransport", - "text": "Internal slots", - "url": "https://w3c.github.io/webtransport/#rate-control-feedback-internal-slots" - } - }, - "#rate-control-feedback-procedures": { - "current": { - "number": "9.3", - "spec": "WebTransport", - "text": "Procedures", - "url": "https://w3c.github.io/webtransport/#rate-control-feedback-procedures" - } - }, "#receive-stream": { "current": { - "number": "7", + "number": "8", "spec": "WebTransport", "text": "Interface WebTransportReceiveStream", "url": "https://w3c.github.io/webtransport/#receive-stream" }, "snapshot": { - "number": "7", + "number": "8", "spec": "WebTransport", "text": "Interface WebTransportReceiveStream", "url": "https://www.w3.org/TR/webtransport/#receive-stream" @@ -503,13 +575,13 @@ }, "#receive-stream-RESET_STREAM": { "current": { - "number": "7.4", + "number": "8.4", "spec": "WebTransport", "text": "Reset signal coming from the server", "url": "https://w3c.github.io/webtransport/#receive-stream-RESET_STREAM" }, "snapshot": { - "number": "7.4", + "number": "8.4", "spec": "WebTransport", "text": "Reset signal coming from the server", "url": "https://www.w3.org/TR/webtransport/#receive-stream-RESET_STREAM" @@ -517,13 +589,13 @@ }, "#receive-stream-internal-slots": { "current": { - "number": "7.2", + "number": "8.2", "spec": "WebTransport", "text": "Internal Slots", "url": "https://w3c.github.io/webtransport/#receive-stream-internal-slots" }, "snapshot": { - "number": "7.2", + "number": "8.2", "spec": "WebTransport", "text": "Internal Slots", "url": "https://www.w3.org/TR/webtransport/#receive-stream-internal-slots" @@ -531,13 +603,13 @@ }, "#receive-stream-methods": { "current": { - "number": "7.1", + "number": "8.1", "spec": "WebTransport", "text": "Methods", "url": "https://w3c.github.io/webtransport/#receive-stream-methods" }, "snapshot": { - "number": "7.1", + "number": "8.1", "spec": "WebTransport", "text": "Methods", "url": "https://www.w3.org/TR/webtransport/#receive-stream-methods" @@ -545,13 +617,13 @@ }, "#receive-stream-procedures": { "current": { - "number": "7.3", + "number": "8.3", "spec": "WebTransport", "text": "Procedures", "url": "https://w3c.github.io/webtransport/#receive-stream-procedures" }, "snapshot": { - "number": "7.3", + "number": "8.3", "spec": "WebTransport", "text": "Procedures", "url": "https://www.w3.org/TR/webtransport/#receive-stream-procedures" @@ -559,13 +631,13 @@ }, "#receive-stream-stats": { "current": { - "number": "7.5", + "number": "8.5", "spec": "WebTransport", "text": "WebTransportReceiveStreamStats Dictionary", "url": "https://w3c.github.io/webtransport/#receive-stream-stats" }, "snapshot": { - "number": "7.5", + "number": "8.5", "spec": "WebTransport", "text": "WebTransportReceiveStreamStats Dictionary", "url": "https://www.w3.org/TR/webtransport/#receive-stream-stats" @@ -601,27 +673,41 @@ }, "#send-stream-STOP_SENDING": { "current": { - "number": "6.4", + "number": "6.5", "spec": "WebTransport", "text": "STOP_SENDING signal coming from the server", "url": "https://w3c.github.io/webtransport/#send-stream-STOP_SENDING" }, "snapshot": { - "number": "6.4", + "number": "6.5", "spec": "WebTransport", "text": "STOP_SENDING signal coming from the server", "url": "https://www.w3.org/TR/webtransport/#send-stream-STOP_SENDING" } }, + "#send-stream-attributes": { + "current": { + "number": "6.1", + "spec": "WebTransport", + "text": "Attributes", + "url": "https://w3c.github.io/webtransport/#send-stream-attributes" + }, + "snapshot": { + "number": "6.1", + "spec": "WebTransport", + "text": "Attributes", + "url": "https://www.w3.org/TR/webtransport/#send-stream-attributes" + } + }, "#send-stream-internal-slots": { "current": { - "number": "6.2", + "number": "6.3", "spec": "WebTransport", "text": "Internal Slots", "url": "https://w3c.github.io/webtransport/#send-stream-internal-slots" }, "snapshot": { - "number": "6.2", + "number": "6.3", "spec": "WebTransport", "text": "Internal Slots", "url": "https://www.w3.org/TR/webtransport/#send-stream-internal-slots" @@ -629,13 +715,13 @@ }, "#send-stream-methods": { "current": { - "number": "6.1", + "number": "6.2", "spec": "WebTransport", "text": "Methods", "url": "https://w3c.github.io/webtransport/#send-stream-methods" }, "snapshot": { - "number": "6.1", + "number": "6.2", "spec": "WebTransport", "text": "Methods", "url": "https://www.w3.org/TR/webtransport/#send-stream-methods" @@ -643,13 +729,13 @@ }, "#send-stream-procedures": { "current": { - "number": "6.3", + "number": "6.4", "spec": "WebTransport", "text": "Procedures", "url": "https://w3c.github.io/webtransport/#send-stream-procedures" }, "snapshot": { - "number": "6.3", + "number": "6.4", "spec": "WebTransport", "text": "Procedures", "url": "https://www.w3.org/TR/webtransport/#send-stream-procedures" @@ -657,18 +743,74 @@ }, "#send-stream-stats": { "current": { - "number": "6.5", + "number": "6.6", "spec": "WebTransport", "text": "WebTransportSendStreamStats Dictionary", "url": "https://w3c.github.io/webtransport/#send-stream-stats" }, "snapshot": { - "number": "6.5", + "number": "6.6", "spec": "WebTransport", "text": "WebTransportSendStreamStats Dictionary", "url": "https://www.w3.org/TR/webtransport/#send-stream-stats" } }, + "#sendGroup": { + "current": { + "number": "7", + "spec": "WebTransport", + "text": "Interface WebTransportSendGroup", + "url": "https://w3c.github.io/webtransport/#sendGroup" + }, + "snapshot": { + "number": "7", + "spec": "WebTransport", + "text": "Interface WebTransportSendGroup", + "url": "https://www.w3.org/TR/webtransport/#sendGroup" + } + }, + "#sendGroup-internal-slots": { + "current": { + "number": "7.2", + "spec": "WebTransport", + "text": "Internal Slots", + "url": "https://w3c.github.io/webtransport/#sendGroup-internal-slots" + }, + "snapshot": { + "number": "7.2", + "spec": "WebTransport", + "text": "Internal Slots", + "url": "https://www.w3.org/TR/webtransport/#sendGroup-internal-slots" + } + }, + "#sendGroup-methods": { + "current": { + "number": "7.1", + "spec": "WebTransport", + "text": "Methods", + "url": "https://w3c.github.io/webtransport/#sendGroup-methods" + }, + "snapshot": { + "number": "7.1", + "spec": "WebTransport", + "text": "Methods", + "url": "https://www.w3.org/TR/webtransport/#sendGroup-methods" + } + }, + "#sendGroup-procedures": { + "current": { + "number": "7.3", + "spec": "WebTransport", + "text": "Procedures", + "url": "https://w3c.github.io/webtransport/#sendGroup-procedures" + }, + "snapshot": { + "number": "7.3", + "spec": "WebTransport", + "text": "Procedures", + "url": "https://www.w3.org/TR/webtransport/#sendGroup-procedures" + } + }, "#sotd": { "current": { "number": "", @@ -685,13 +827,13 @@ }, "#state-persistence": { "current": { - "number": "12.2", + "number": "13.2", "spec": "WebTransport", "text": "State Persistence", "url": "https://w3c.github.io/webtransport/#state-persistence" }, "snapshot": { - "number": "11.2", + "number": "13.2", "spec": "WebTransport", "text": "State Persistence", "url": "https://www.w3.org/TR/webtransport/#state-persistence" @@ -727,7 +869,7 @@ }, "#uni-stream-options": { "current": { - "number": "5.12", + "number": "5.11", "spec": "WebTransport", "text": "WebTransportSendStreamOptions Dictionary", "url": "https://w3c.github.io/webtransport/#uni-stream-options" @@ -755,7 +897,7 @@ }, "#web-transport-close-info": { "current": { - "number": "5.11", + "number": "5.10", "spec": "WebTransport", "text": "WebTransportCloseInfo Dictionary", "url": "https://w3c.github.io/webtransport/#web-transport-close-info" @@ -769,7 +911,7 @@ }, "#web-transport-configuration": { "current": { - "number": "5.10", + "number": "5.9", "spec": "WebTransport", "text": "Configuration", "url": "https://w3c.github.io/webtransport/#web-transport-configuration" @@ -781,9 +923,23 @@ "url": "https://www.w3.org/TR/webtransport/#web-transport-configuration" } }, + "#web-transport-connection-stats": { + "current": { + "number": "5.12", + "spec": "WebTransport", + "text": "WebTransportConnectionStats Dictionary", + "url": "https://w3c.github.io/webtransport/#web-transport-connection-stats" + }, + "snapshot": { + "number": "5.12", + "spec": "WebTransport", + "text": "WebTransportConnectionStats Dictionary", + "url": "https://www.w3.org/TR/webtransport/#web-transport-connection-stats" + } + }, "#web-transport-context-cleanup-steps": { "current": { - "number": "5.8", + "number": "5.7", "spec": "WebTransport", "text": "Context cleanup steps", "url": "https://w3c.github.io/webtransport/#web-transport-context-cleanup-steps" @@ -795,15 +951,29 @@ "url": "https://www.w3.org/TR/webtransport/#web-transport-context-cleanup-steps" } }, + "#web-transport-datagram-stats": { + "current": { + "number": "5.13", + "spec": "WebTransport", + "text": "WebTransportDatagramStats Dictionary", + "url": "https://w3c.github.io/webtransport/#web-transport-datagram-stats" + }, + "snapshot": { + "number": "5.13", + "spec": "WebTransport", + "text": "WebTransportDatagramStats Dictionary", + "url": "https://www.w3.org/TR/webtransport/#web-transport-datagram-stats" + } + }, "#web-transport-error-attributes": { "current": { - "number": "10.3", + "number": "11.3", "spec": "WebTransport", "text": "Attributes", "url": "https://w3c.github.io/webtransport/#web-transport-error-attributes" }, "snapshot": { - "number": "9.3", + "number": "11.3", "spec": "WebTransport", "text": "Attributes", "url": "https://www.w3.org/TR/webtransport/#web-transport-error-attributes" @@ -811,13 +981,13 @@ }, "#web-transport-error-constructor1": { "current": { - "number": "10.2", + "number": "11.2", "spec": "WebTransport", "text": "Constructor", "url": "https://w3c.github.io/webtransport/#web-transport-error-constructor1" }, "snapshot": { - "number": "9.2", + "number": "11.2", "spec": "WebTransport", "text": "Constructor", "url": "https://www.w3.org/TR/webtransport/#web-transport-error-constructor1" @@ -827,49 +997,47 @@ "current": { "number": "", "spec": "WebTransport", - "text": "10. WebTransportError Interface", + "text": "11. WebTransportError Interface", "url": "https://w3c.github.io/webtransport/#web-transport-error-interface" }, "snapshot": { - "number": "9", + "number": "", "spec": "WebTransport", - "text": "WebTransportError Interface", + "text": "11. WebTransportError Interface", "url": "https://www.w3.org/TR/webtransport/#web-transport-error-interface" } }, "#web-transport-error-internal-slots": { "current": { - "number": "10.1", + "number": "11.1", "spec": "WebTransport", "text": "Internal slots", "url": "https://w3c.github.io/webtransport/#web-transport-error-internal-slots" }, "snapshot": { - "number": "9.1", + "number": "11.1", "spec": "WebTransport", "text": "Internal slots", "url": "https://www.w3.org/TR/webtransport/#web-transport-error-internal-slots" } }, - "#web-transport-error-procedures": { - "snapshot": { - "number": "9.4", - "spec": "WebTransport", - "text": "Procedures", - "url": "https://www.w3.org/TR/webtransport/#web-transport-error-procedures" - } - }, "#web-transport-error-serialization": { "current": { - "number": "10.4", + "number": "11.4", "spec": "WebTransport", "text": "Serialization", "url": "https://w3c.github.io/webtransport/#web-transport-error-serialization" + }, + "snapshot": { + "number": "11.4", + "spec": "WebTransport", + "text": "Serialization", + "url": "https://www.w3.org/TR/webtransport/#web-transport-error-serialization" } }, "#web-transport-gc": { "current": { - "number": "5.9", + "number": "5.8", "spec": "WebTransport", "text": "Garbage Collection", "url": "https://w3c.github.io/webtransport/#web-transport-gc" @@ -881,46 +1049,60 @@ "url": "https://www.w3.org/TR/webtransport/#web-transport-gc" } }, - "#web-transport-stats": { + "#web-transport-termination": { "current": { - "number": "5.13", + "number": "5.6", "spec": "WebTransport", - "text": "WebTransportStats Dictionary", - "url": "https://w3c.github.io/webtransport/#web-transport-stats" + "text": "Session termination not initiated by the client", + "url": "https://w3c.github.io/webtransport/#web-transport-termination" }, "snapshot": { - "number": "5.12", + "number": "5.6", "spec": "WebTransport", - "text": "WebTransportStats Dictionary", - "url": "https://www.w3.org/TR/webtransport/#web-transport-stats" + "text": "Session termination not initiated by the client", + "url": "https://www.w3.org/TR/webtransport/#web-transport-termination" } }, - "#web-transport-stats%E2%91%A0": { + "#web-transport-writer-interface": { "current": { - "number": "5.14", + "number": "", "spec": "WebTransport", - "text": "WebTransportDatagramStats Dictionary", - "url": "https://w3c.github.io/webtransport/#web-transport-stats%E2%91%A0" + "text": "10. WebTransportWriter Interface", + "url": "https://w3c.github.io/webtransport/#web-transport-writer-interface" }, "snapshot": { - "number": "5.13", + "number": "", "spec": "WebTransport", - "text": "WebTransportDatagramStats Dictionary", - "url": "https://www.w3.org/TR/webtransport/#web-transport-stats%E2%91%A0" + "text": "10. WebTransportWriter Interface", + "url": "https://www.w3.org/TR/webtransport/#web-transport-writer-interface" } }, - "#web-transport-termination": { + "#web-transport-writer-methods": { "current": { - "number": "5.7", + "number": "10.1", "spec": "WebTransport", - "text": "Session termination not initiated by the client", - "url": "https://w3c.github.io/webtransport/#web-transport-termination" + "text": "Methods", + "url": "https://w3c.github.io/webtransport/#web-transport-writer-methods" }, "snapshot": { - "number": "5.6", + "number": "10.1", "spec": "WebTransport", - "text": "Session termination not initiated by the client", - "url": "https://www.w3.org/TR/webtransport/#web-transport-termination" + "text": "Methods", + "url": "https://www.w3.org/TR/webtransport/#web-transport-writer-methods" + } + }, + "#web-transport-writer-procedures": { + "current": { + "number": "10.2", + "spec": "WebTransport", + "text": "Procedures", + "url": "https://w3c.github.io/webtransport/#web-transport-writer-procedures" + }, + "snapshot": { + "number": "10.2", + "spec": "WebTransport", + "text": "Procedures", + "url": "https://www.w3.org/TR/webtransport/#web-transport-writer-procedures" } }, "#webtransport-attributes": { @@ -951,14 +1133,6 @@ "url": "https://www.w3.org/TR/webtransport/#webtransport-constructor" } }, - "#webtransport-events": { - "current": { - "number": "5.4", - "spec": "WebTransport", - "text": "Events", - "url": "https://w3c.github.io/webtransport/#webtransport-events" - } - }, "#webtransport-internal-slots": { "current": { "number": "5.1", @@ -975,7 +1149,7 @@ }, "#webtransport-methods": { "current": { - "number": "5.5", + "number": "5.4", "spec": "WebTransport", "text": "Methods", "url": "https://w3c.github.io/webtransport/#webtransport-methods" @@ -989,7 +1163,7 @@ }, "#webtransport-procedures": { "current": { - "number": "5.6", + "number": "5.5", "spec": "WebTransport", "text": "Procedures", "url": "https://w3c.github.io/webtransport/#webtransport-procedures" @@ -1000,5 +1174,33 @@ "text": "Procedures", "url": "https://www.w3.org/TR/webtransport/#webtransport-procedures" } + }, + "#webtransport-session": { + "current": { + "number": "3.1", + "spec": "WebTransport", + "text": "WebTransport session", + "url": "https://w3c.github.io/webtransport/#webtransport-session" + }, + "snapshot": { + "number": "3.1", + "spec": "WebTransport", + "text": "WebTransport session", + "url": "https://www.w3.org/TR/webtransport/#webtransport-session" + } + }, + "#webtransport-stream": { + "current": { + "number": "3.2", + "spec": "WebTransport", + "text": "WebTransport stream", + "url": "https://w3c.github.io/webtransport/#webtransport-stream" + }, + "snapshot": { + "number": "3.2", + "spec": "WebTransport", + "text": "WebTransport stream", + "url": "https://www.w3.org/TR/webtransport/#webtransport-stream" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webusb.json b/bikeshed/spec-data/readonly/headings/headings-webusb.json index ae9ead18b7..2a584c569b 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webusb.json +++ b/bikeshed/spec-data/readonly/headings/headings-webusb.json @@ -41,7 +41,7 @@ }, "#appendix-descriptors": { "current": { - "number": "9.1", + "number": "10.1", "spec": "WebUSB API", "text": "Descriptors", "url": "https://wicg.github.io/webusb/#appendix-descriptors" @@ -49,15 +49,15 @@ }, "#appendix-intro": { "current": { - "number": "9", + "number": "", "spec": "WebUSB API", - "text": "Appendix: A Brief Introduction to USB", + "text": "10. Appendix: A Brief Introduction to USB", "url": "https://wicg.github.io/webusb/#appendix-intro" } }, "#appendix-transfers": { "current": { - "number": "9.2", + "number": "10.2", "spec": "WebUSB API", "text": "Transfers", "url": "https://wicg.github.io/webusb/#appendix-transfers" @@ -79,6 +79,14 @@ "url": "https://wicg.github.io/webusb/#attacking-the-host" } }, + "#blocklist": { + "current": { + "number": "7", + "spec": "WebUSB API", + "text": "The USB Blocklist", + "url": "https://wicg.github.io/webusb/#blocklist" + } + }, "#device-requests": { "current": { "number": "4.2", @@ -161,7 +169,7 @@ }, "#integrations": { "current": { - "number": "7", + "number": "8", "spec": "WebUSB API", "text": "Integrations", "url": "https://wicg.github.io/webusb/#integrations" @@ -201,7 +209,7 @@ }, "#permission-api": { "current": { - "number": "7.2", + "number": "8.2", "spec": "WebUSB API", "text": "Permission API", "url": "https://wicg.github.io/webusb/#permission-api" @@ -209,7 +217,7 @@ }, "#permissions-policy": { "current": { - "number": "7.1", + "number": "8.1", "spec": "WebUSB API", "text": "Permissions Policy", "url": "https://wicg.github.io/webusb/#permissions-policy" @@ -241,7 +249,7 @@ }, "#terminology": { "current": { - "number": "8", + "number": "9", "spec": "WebUSB API", "text": "Terminology", "url": "https://wicg.github.io/webusb/#terminology" @@ -415,14 +423,6 @@ "url": "https://wicg.github.io/webusb/#w3c-conformance" } }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "WebUSB API", - "text": "Conformant Algorithms", - "url": "https://wicg.github.io/webusb/#w3c-conformant-algorithms" - } - }, "#w3c-conventions": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/headings/headings-webvtt1.json b/bikeshed/spec-data/readonly/headings/headings-webvtt1.json index 71bbc7dbfa..97481b87ca 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webvtt1.json +++ b/bikeshed/spec-data/readonly/headings/headings-webvtt1.json @@ -283,7 +283,7 @@ "current": { "number": "6.5", "spec": "WebVTT: The Web Video Text Tracks Format", - "text": "WebVTT cue text DOM construction rules Info about the 'WebVTT cue text DOM construction rules' definition.#webvtt-cue-text-dom-construction-rulesReferenced in: 9.1. The VTTCue interface", + "text": "WebVTT cue text DOM construction rules", "url": "https://w3c.github.io/webvtt/#dom-construction-rules" }, "snapshot": { @@ -409,7 +409,7 @@ "current": { "number": "10.1", "spec": "WebVTT: The Web Video Text Tracks Format", - "text": "text/vtt Info about the 'text/vtt' definition.#text-vttReferenced in: 2.1. Conformance classes", + "text": "text/vtt", "url": "https://w3c.github.io/webvtt/#iana-text-vtt" }, "snapshot": { diff --git a/bikeshed/spec-data/readonly/headings/headings-webxr-meshing.json b/bikeshed/spec-data/readonly/headings/headings-webxr-meshing.json new file mode 100644 index 0000000000..b4c66a2c43 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-webxr-meshing.json @@ -0,0 +1,186 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Abstract", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#abstract" + } + }, + "#applicationflow": { + "current": { + "number": "1.2", + "spec": "WebXR Meshing API 1", + "text": "Application flow", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#applicationflow" + } + }, + "#conformance": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Conformance", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#conformance" + } + }, + "#frame": { + "current": { + "number": "3", + "spec": "WebXR Meshing API 1", + "text": "Frame Loop", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#frame" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "IDL Index", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Index", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Terms defined by reference", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Terms defined by this specification", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#index-defined-here" + } + }, + "#initialization": { + "current": { + "number": "2", + "spec": "WebXR Meshing API 1", + "text": "Initialization", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#initialization" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "WebXR Meshing API 1", + "text": "Introduction", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#intro" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Issues Index", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#issues-index" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Normative References", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#normative" + } + }, + "#profile-and-date": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "A Collection of Interesting Ideas, 11 November 2023", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#profile-and-date" + } + }, + "#references": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "References", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#references" + } + }, + "#security": { + "current": { + "number": "4", + "spec": "WebXR Meshing API 1", + "text": "Security and Privacy Considerations", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#security" + } + }, + "#terminology": { + "current": { + "number": "1.1", + "spec": "WebXR Meshing API 1", + "text": "Terminology", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#terminology" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "WebXR Meshing API Level 1", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WebXR Meshing API 1", + "text": "Table of Contents", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#toc" + } + }, + "#xr--mesh-quality": { + "current": { + "number": "2.1", + "spec": "WebXR Meshing API 1", + "text": "XRMeshQuality", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xr--mesh-quality" + } + }, + "#xr-near-mesh-feature": { + "current": { + "number": "2.3", + "spec": "WebXR Meshing API 1", + "text": "XRNearMeshFeature", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xr-near-mesh-feature" + } + }, + "#xr-world-mesh-feature": { + "current": { + "number": "2.2", + "spec": "WebXR Meshing API 1", + "text": "XRWorldMeshFeature", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xr-world-mesh-feature" + } + }, + "#xrframe-interface": { + "current": { + "number": "3.2", + "spec": "WebXR Meshing API 1", + "text": "XRFrame", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xrframe-interface" + } + }, + "#xrframe-structures": { + "current": { + "number": "3.1", + "spec": "WebXR Meshing API 1", + "text": "XRMesh structures", + "url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html#xrframe-structures" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webxr-plane-detection.json b/bikeshed/spec-data/readonly/headings/headings-webxr-plane-detection.json new file mode 100644 index 0000000000..66bcb69867 --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-webxr-plane-detection.json @@ -0,0 +1,202 @@ +{ + "#abstract": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Abstract", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#abstract" + } + }, + "#ack": { + "current": { + "number": "7", + "spec": "WebXR Plane Detection", + "text": "Acknowledgements", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#ack" + } + }, + "#anchor-feature-descriptor": { + "current": { + "number": "2.1", + "spec": "WebXR Plane Detection", + "text": "Feature descriptor", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#anchor-feature-descriptor" + } + }, + "#anchor-feature-initialization": { + "current": { + "number": "2", + "spec": "WebXR Plane Detection", + "text": "Initialization", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#anchor-feature-initialization" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "IDL Index", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Index", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Terms defined by reference", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Terms defined by this specification", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Informative References", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#informative" + } + }, + "#intro": { + "current": { + "number": "1", + "spec": "WebXR Plane Detection", + "text": "Introduction", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#intro" + } + }, + "#native-device-concepts": { + "current": { + "number": "5", + "spec": "WebXR Plane Detection", + "text": "Native device concepts", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#native-device-concepts" + } + }, + "#native-plane-detection-section": { + "current": { + "number": "5.1", + "spec": "WebXR Plane Detection", + "text": "Native plane detection", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#native-plane-detection-section" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Normative References", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#normative" + } + }, + "#obtaining-planes": { + "current": { + "number": "4", + "spec": "WebXR Plane Detection", + "text": "Obtaining detected planes", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#obtaining-planes" + } + }, + "#plane": { + "current": { + "number": "3.2", + "spec": "WebXR Plane Detection", + "text": "XRPlane", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#plane" + } + }, + "#plane-orientation": { + "current": { + "number": "3.1", + "spec": "WebXR Plane Detection", + "text": "XRPlaneOrientation", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#plane-orientation" + } + }, + "#plane-set": { + "current": { + "number": "4.1", + "spec": "WebXR Plane Detection", + "text": "XRPlaneSet", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#plane-set" + } + }, + "#planes-section": { + "current": { + "number": "3", + "spec": "WebXR Plane Detection", + "text": "Planes", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#planes-section" + } + }, + "#privacy-security": { + "current": { + "number": "6", + "spec": "WebXR Plane Detection", + "text": "Privacy & Security Considerations", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#privacy-security" + } + }, + "#references": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "References", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#references" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Status of this document", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "WebXR Plane Detection Module", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Table of Contents", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#toc" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Conformance", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#w3c-conformance" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "WebXR Plane Detection", + "text": "Document conventions", + "url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-webxr.json b/bikeshed/spec-data/readonly/headings/headings-webxr.json index 5a9b382c83..1e12adec8c 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webxr.json +++ b/bikeshed/spec-data/readonly/headings/headings-webxr.json @@ -139,6 +139,20 @@ "url": "https://www.w3.org/TR/webxr/#changes-from-20200724" } }, + "#changes-from-20220331": { + "current": { + "number": "", + "spec": "WebXR Device API", + "text": "Changes from the Candidate Recommendation Snapshot, 31 March 2022", + "url": "https://immersive-web.github.io/webxr/#changes-from-20220331" + }, + "snapshot": { + "number": "", + "spec": "WebXR Device API", + "text": "Changes from the Candidate Recommendation Snapshot, 31 March 2022", + "url": "https://www.w3.org/TR/webxr/#changes-from-20220331" + } + }, "#compositor": { "current": { "number": "4.4", diff --git a/bikeshed/spec-data/readonly/headings/headings-webxrlayers-1.json b/bikeshed/spec-data/readonly/headings/headings-webxrlayers-1.json index 1a4b7f0710..d589e5d17d 100644 --- a/bikeshed/spec-data/readonly/headings/headings-webxrlayers-1.json +++ b/bikeshed/spec-data/readonly/headings/headings-webxrlayers-1.json @@ -491,13 +491,13 @@ }, "#xcubelayertype": { "current": { - "number": "3.8", + "number": "3.9", "spec": "WebXR Layers API 1", "text": "XRCubeLayer", "url": "https://immersive-web.github.io/layers/#xcubelayertype" }, "snapshot": { - "number": "3.8", + "number": "3.9", "spec": "WebXR Layers API 1", "text": "XRCubeLayer", "url": "https://www.w3.org/TR/webxrlayers-1/#xcubelayertype" @@ -505,13 +505,13 @@ }, "#xrcompositionlayertype": { "current": { - "number": "3.3", + "number": "3.4", "spec": "WebXR Layers API 1", "text": "XRCompositionLayer", "url": "https://immersive-web.github.io/layers/#xrcompositionlayertype" }, "snapshot": { - "number": "3.3", + "number": "3.4", "spec": "WebXR Layers API 1", "text": "XRCompositionLayer", "url": "https://www.w3.org/TR/webxrlayers-1/#xrcompositionlayertype" @@ -561,13 +561,13 @@ }, "#xrcylinderayertype": { "current": { - "number": "3.6", + "number": "3.7", "spec": "WebXR Layers API 1", "text": "XRCylinderLayer", "url": "https://immersive-web.github.io/layers/#xrcylinderayertype" }, "snapshot": { - "number": "3.6", + "number": "3.7", "spec": "WebXR Layers API 1", "text": "XRCylinderLayer", "url": "https://www.w3.org/TR/webxrlayers-1/#xrcylinderayertype" @@ -603,13 +603,13 @@ }, "#xrequirectlayertype": { "current": { - "number": "3.7", + "number": "3.8", "spec": "WebXR Layers API 1", "text": "XREquirectLayer", "url": "https://immersive-web.github.io/layers/#xrequirectlayertype" }, "snapshot": { - "number": "3.7", + "number": "3.8", "spec": "WebXR Layers API 1", "text": "XREquirectLayer", "url": "https://www.w3.org/TR/webxrlayers-1/#xrequirectlayertype" @@ -685,6 +685,20 @@ "url": "https://www.w3.org/TR/webxrlayers-1/#xrlayerlayouttype" } }, + "#xrlayerqualitytype": { + "current": { + "number": "3.3", + "spec": "WebXR Layers API 1", + "text": "XRLayerQuality", + "url": "https://immersive-web.github.io/layers/#xrlayerqualitytype" + }, + "snapshot": { + "number": "3.3", + "spec": "WebXR Layers API 1", + "text": "XRLayerQuality", + "url": "https://www.w3.org/TR/webxrlayers-1/#xrlayerqualitytype" + } + }, "#xrlayertypes": { "current": { "number": "3", @@ -799,13 +813,13 @@ }, "#xrprojectionlayertype": { "current": { - "number": "3.4", + "number": "3.5", "spec": "WebXR Layers API 1", "text": "XRProjectionLayer", "url": "https://immersive-web.github.io/layers/#xrprojectionlayertype" }, "snapshot": { - "number": "3.4", + "number": "3.5", "spec": "WebXR Layers API 1", "text": "XRProjectionLayer", "url": "https://www.w3.org/TR/webxrlayers-1/#xrprojectionlayertype" @@ -827,13 +841,13 @@ }, "#xrquadlayertype": { "current": { - "number": "3.5", + "number": "3.6", "spec": "WebXR Layers API 1", "text": "XRQuadLayer", "url": "https://immersive-web.github.io/layers/#xrquadlayertype" }, "snapshot": { - "number": "3.5", + "number": "3.6", "spec": "WebXR Layers API 1", "text": "XRQuadLayer", "url": "https://www.w3.org/TR/webxrlayers-1/#xrquadlayertype" diff --git a/bikeshed/spec-data/readonly/headings/headings-wgsl.json b/bikeshed/spec-data/readonly/headings/headings-wgsl.json index 660e085acb..12865d02b2 100644 --- a/bikeshed/spec-data/readonly/headings/headings-wgsl.json +++ b/bikeshed/spec-data/readonly/headings/headings-wgsl.json @@ -1,13 +1,13 @@ { "#abs-float-builtin": { "current": { - "number": "17.3.1", + "number": "16.5.1", "spec": "WebGPU Shading Language", "text": "abs", "url": "https://gpuweb.github.io/gpuweb/wgsl/#abs-float-builtin" }, "snapshot": { - "number": "17.3.1", + "number": "16.5.1", "spec": "WebGPU Shading Language", "text": "abs", "url": "https://www.w3.org/TR/WGSL/#abs-float-builtin" @@ -27,15 +27,29 @@ "url": "https://www.w3.org/TR/WGSL/#abstract" } }, + "#abstract-float-accuracy": { + "current": { + "number": "14.6.2.2", + "spec": "WebGPU Shading Language", + "text": "Accuracy of AbstractFloat Expressions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#abstract-float-accuracy" + }, + "snapshot": { + "number": "14.6.2.2", + "spec": "WebGPU Shading Language", + "text": "Accuracy of AbstractFloat Expressions", + "url": "https://www.w3.org/TR/WGSL/#abstract-float-accuracy" + } + }, "#abstract-types": { "current": { - "number": "5.2.1", + "number": "6.2.1", "spec": "WebGPU Shading Language", "text": "Abstract Numeric Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#abstract-types" }, "snapshot": { - "number": "5.2.1", + "number": "6.2.1", "spec": "WebGPU Shading Language", "text": "Abstract Numeric Types", "url": "https://www.w3.org/TR/WGSL/#abstract-types" @@ -43,13 +57,13 @@ }, "#acos-builtin": { "current": { - "number": "17.3.2", + "number": "16.5.2", "spec": "WebGPU Shading Language", "text": "acos", "url": "https://gpuweb.github.io/gpuweb/wgsl/#acos-builtin" }, "snapshot": { - "number": "17.3.2", + "number": "16.5.2", "spec": "WebGPU Shading Language", "text": "acos", "url": "https://www.w3.org/TR/WGSL/#acos-builtin" @@ -57,13 +71,13 @@ }, "#acosh-builtin": { "current": { - "number": "17.3.3", + "number": "16.5.3", "spec": "WebGPU Shading Language", "text": "acosh", "url": "https://gpuweb.github.io/gpuweb/wgsl/#acosh-builtin" }, "snapshot": { - "number": "17.3.3", + "number": "16.5.3", "spec": "WebGPU Shading Language", "text": "acosh", "url": "https://www.w3.org/TR/WGSL/#acosh-builtin" @@ -71,13 +85,13 @@ }, "#address-of-expr": { "current": { - "number": "7.15", + "number": "8.13", "spec": "WebGPU Shading Language", "text": "Address-Of Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#address-of-expr" }, "snapshot": { - "number": "7.15", + "number": "8.13", "spec": "WebGPU Shading Language", "text": "Address-Of Expression", "url": "https://www.w3.org/TR/WGSL/#address-of-expr" @@ -99,13 +113,13 @@ }, "#address-space-layout-constraints": { "current": { - "number": "13.5.1", + "number": "13.4.5", "spec": "WebGPU Shading Language", "text": "Address Space Layout Constraints", "url": "https://gpuweb.github.io/gpuweb/wgsl/#address-space-layout-constraints" }, "snapshot": { - "number": "13.5.1", + "number": "13.4.5", "spec": "WebGPU Shading Language", "text": "Address Space Layout Constraints", "url": "https://www.w3.org/TR/WGSL/#address-space-layout-constraints" @@ -113,13 +127,13 @@ }, "#alias-analysis": { "current": { - "number": "9.4.1", + "number": "10.4.1", "spec": "WebGPU Shading Language", "text": "Alias Analysis", "url": "https://gpuweb.github.io/gpuweb/wgsl/#alias-analysis" }, "snapshot": { - "number": "9.4.1", + "number": "10.4.1", "spec": "WebGPU Shading Language", "text": "Alias Analysis", "url": "https://www.w3.org/TR/WGSL/#alias-analysis" @@ -127,18 +141,32 @@ }, "#aliasing": { "current": { - "number": "9.4.1.2", + "number": "10.4.1.2", "spec": "WebGPU Shading Language", "text": "Aliasing", "url": "https://gpuweb.github.io/gpuweb/wgsl/#aliasing" }, "snapshot": { - "number": "9.4.1.2", + "number": "10.4.1.2", "spec": "WebGPU Shading Language", "text": "Aliasing", "url": "https://www.w3.org/TR/WGSL/#aliasing" } }, + "#align-attr": { + "current": { + "number": "11.1", + "spec": "WebGPU Shading Language", + "text": "align", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#align-attr" + }, + "snapshot": { + "number": "11.1", + "spec": "WebGPU Shading Language", + "text": "align", + "url": "https://www.w3.org/TR/WGSL/#align-attr" + } + }, "#alignment-and-size": { "current": { "number": "13.4.1", @@ -155,27 +183,41 @@ }, "#all-builtin": { "current": { - "number": "17.1.1", + "number": "16.3.1", "spec": "WebGPU Shading Language", "text": "all", "url": "https://gpuweb.github.io/gpuweb/wgsl/#all-builtin" }, "snapshot": { - "number": "17.1.1", + "number": "16.3.1", "spec": "WebGPU Shading Language", "text": "all", "url": "https://www.w3.org/TR/WGSL/#all-builtin" } }, + "#alltypes-type": { + "current": { + "number": "6.6", + "spec": "WebGPU Shading Language", + "text": "AllTypes Type", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#alltypes-type" + }, + "snapshot": { + "number": "6.6", + "spec": "WebGPU Shading Language", + "text": "AllTypes Type", + "url": "https://www.w3.org/TR/WGSL/#alltypes-type" + } + }, "#any-builtin": { "current": { - "number": "17.1.2", + "number": "16.3.2", "spec": "WebGPU Shading Language", "text": "any", "url": "https://gpuweb.github.io/gpuweb/wgsl/#any-builtin" }, "snapshot": { - "number": "17.1.2", + "number": "16.3.2", "spec": "WebGPU Shading Language", "text": "any", "url": "https://www.w3.org/TR/WGSL/#any-builtin" @@ -183,13 +225,13 @@ }, "#arithmetic-expr": { "current": { - "number": "7.9", + "number": "8.7", "spec": "WebGPU Shading Language", "text": "Arithmetic Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#arithmetic-expr" }, "snapshot": { - "number": "7.9", + "number": "8.7", "spec": "WebGPU Shading Language", "text": "Arithmetic Expressions", "url": "https://www.w3.org/TR/WGSL/#arithmetic-expr" @@ -197,27 +239,41 @@ }, "#array-access-expr": { "current": { - "number": "7.7.3", + "number": "8.5.3", "spec": "WebGPU Shading Language", "text": "Array Access Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#array-access-expr" }, "snapshot": { - "number": "7.7.3", + "number": "8.5.3", "spec": "WebGPU Shading Language", "text": "Array Access Expression", "url": "https://www.w3.org/TR/WGSL/#array-access-expr" } }, + "#array-builtin": { + "current": { + "number": "16.1.2.1", + "spec": "WebGPU Shading Language", + "text": "array", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#array-builtin" + }, + "snapshot": { + "number": "16.1.2.1", + "spec": "WebGPU Shading Language", + "text": "array", + "url": "https://www.w3.org/TR/WGSL/#array-builtin" + } + }, "#array-builtin-functions": { "current": { - "number": "17.2", + "number": "16.4", "spec": "WebGPU Shading Language", "text": "Array Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#array-builtin-functions" }, "snapshot": { - "number": "17.2", + "number": "16.4", "spec": "WebGPU Shading Language", "text": "Array Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#array-builtin-functions" @@ -239,13 +295,13 @@ }, "#array-types": { "current": { - "number": "5.2.9", + "number": "6.2.9", "spec": "WebGPU Shading Language", "text": "Array Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#array-types" }, "snapshot": { - "number": "5.2.9", + "number": "6.2.9", "spec": "WebGPU Shading Language", "text": "Array Types", "url": "https://www.w3.org/TR/WGSL/#array-types" @@ -253,13 +309,13 @@ }, "#arrayLength-builtin": { "current": { - "number": "17.2.1", + "number": "16.4.1", "spec": "WebGPU Shading Language", "text": "arrayLength", "url": "https://gpuweb.github.io/gpuweb/wgsl/#arrayLength-builtin" }, "snapshot": { - "number": "17.2.1", + "number": "16.4.1", "spec": "WebGPU Shading Language", "text": "arrayLength", "url": "https://www.w3.org/TR/WGSL/#arrayLength-builtin" @@ -267,13 +323,13 @@ }, "#asin-builtin": { "current": { - "number": "17.3.4", + "number": "16.5.4", "spec": "WebGPU Shading Language", "text": "asin", "url": "https://gpuweb.github.io/gpuweb/wgsl/#asin-builtin" }, "snapshot": { - "number": "17.3.4", + "number": "16.5.4", "spec": "WebGPU Shading Language", "text": "asin", "url": "https://www.w3.org/TR/WGSL/#asin-builtin" @@ -281,13 +337,13 @@ }, "#asinh-builtin": { "current": { - "number": "17.3.5", + "number": "16.5.5", "spec": "WebGPU Shading Language", "text": "asinh", "url": "https://gpuweb.github.io/gpuweb/wgsl/#asinh-builtin" }, "snapshot": { - "number": "17.3.5", + "number": "16.5.5", "spec": "WebGPU Shading Language", "text": "asinh", "url": "https://www.w3.org/TR/WGSL/#asinh-builtin" @@ -295,13 +351,13 @@ }, "#assignment": { "current": { - "number": "8.2", + "number": "9.2", "spec": "WebGPU Shading Language", "text": "Assignment Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#assignment" }, "snapshot": { - "number": "8.2", + "number": "9.2", "spec": "WebGPU Shading Language", "text": "Assignment Statement", "url": "https://www.w3.org/TR/WGSL/#assignment" @@ -309,13 +365,13 @@ }, "#atan-builtin": { "current": { - "number": "17.3.6", + "number": "16.5.6", "spec": "WebGPU Shading Language", "text": "atan", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atan-builtin" }, "snapshot": { - "number": "17.3.6", + "number": "16.5.6", "spec": "WebGPU Shading Language", "text": "atan", "url": "https://www.w3.org/TR/WGSL/#atan-builtin" @@ -323,13 +379,13 @@ }, "#atan2-builtin": { "current": { - "number": "17.3.8", + "number": "16.5.8", "spec": "WebGPU Shading Language", "text": "atan2", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atan2-builtin" }, "snapshot": { - "number": "17.3.8", + "number": "16.5.8", "spec": "WebGPU Shading Language", "text": "atan2", "url": "https://www.w3.org/TR/WGSL/#atan2-builtin" @@ -337,13 +393,13 @@ }, "#atanh-builtin": { "current": { - "number": "17.3.7", + "number": "16.5.7", "spec": "WebGPU Shading Language", "text": "atanh", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atanh-builtin" }, "snapshot": { - "number": "17.3.7", + "number": "16.5.7", "spec": "WebGPU Shading Language", "text": "atanh", "url": "https://www.w3.org/TR/WGSL/#atanh-builtin" @@ -351,13 +407,13 @@ }, "#atomic-builtin-functions": { "current": { - "number": "17.6", + "number": "16.8", "spec": "WebGPU Shading Language", "text": "Atomic Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atomic-builtin-functions" }, "snapshot": { - "number": "17.6", + "number": "16.8", "spec": "WebGPU Shading Language", "text": "Atomic Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#atomic-builtin-functions" @@ -365,13 +421,13 @@ }, "#atomic-load": { "current": { - "number": "17.6.1", + "number": "16.8.1", "spec": "WebGPU Shading Language", "text": "Atomic Load", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atomic-load" }, "snapshot": { - "number": "17.6.1", + "number": "16.8.1", "spec": "WebGPU Shading Language", "text": "Atomic Load", "url": "https://www.w3.org/TR/WGSL/#atomic-load" @@ -379,13 +435,13 @@ }, "#atomic-rmw": { "current": { - "number": "17.6.3", + "number": "16.8.3", "spec": "WebGPU Shading Language", "text": "Atomic Read-modify-write", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atomic-rmw" }, "snapshot": { - "number": "17.6.3", + "number": "16.8.3", "spec": "WebGPU Shading Language", "text": "Atomic Read-modify-write", "url": "https://www.w3.org/TR/WGSL/#atomic-rmw" @@ -393,13 +449,13 @@ }, "#atomic-store": { "current": { - "number": "17.6.2", + "number": "16.8.2", "spec": "WebGPU Shading Language", "text": "Atomic Store", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atomic-store" }, "snapshot": { - "number": "17.6.2", + "number": "16.8.2", "spec": "WebGPU Shading Language", "text": "Atomic Store", "url": "https://www.w3.org/TR/WGSL/#atomic-store" @@ -407,29 +463,43 @@ }, "#atomic-types": { "current": { - "number": "5.2.8", + "number": "6.2.8", "spec": "WebGPU Shading Language", "text": "Atomic Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#atomic-types" }, "snapshot": { - "number": "5.2.8", + "number": "6.2.8", "spec": "WebGPU Shading Language", "text": "Atomic Types", "url": "https://www.w3.org/TR/WGSL/#atomic-types" } }, + "#attribute-names": { + "current": { + "number": "3.8.1", + "spec": "WebGPU Shading Language", + "text": "Attribute Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#attribute-names" + }, + "snapshot": { + "number": "3.8.1", + "spec": "WebGPU Shading Language", + "text": "Attribute Names", + "url": "https://www.w3.org/TR/WGSL/#attribute-names" + } + }, "#attributes": { "current": { - "number": "3.10", + "number": "", "spec": "WebGPU Shading Language", - "text": "Attributes", + "text": "11. Attributes", "url": "https://gpuweb.github.io/gpuweb/wgsl/#attributes" }, "snapshot": { - "number": "3.10", + "number": "", "spec": "WebGPU Shading Language", - "text": "Attributes", + "text": "11. Attributes", "url": "https://www.w3.org/TR/WGSL/#attributes" } }, @@ -449,13 +519,13 @@ }, "#behaviors": { "current": { - "number": "8.8", + "number": "9.8", "spec": "WebGPU Shading Language", "text": "Statements Behavior Analysis", "url": "https://gpuweb.github.io/gpuweb/wgsl/#behaviors" }, "snapshot": { - "number": "8.8", + "number": "9.8", "spec": "WebGPU Shading Language", "text": "Statements Behavior Analysis", "url": "https://www.w3.org/TR/WGSL/#behaviors" @@ -463,13 +533,13 @@ }, "#behaviors-examples": { "current": { - "number": "8.8.3", + "number": "9.8.3", "spec": "WebGPU Shading Language", "text": "Examples", "url": "https://gpuweb.github.io/gpuweb/wgsl/#behaviors-examples" }, "snapshot": { - "number": "8.8.3", + "number": "9.8.3", "spec": "WebGPU Shading Language", "text": "Examples", "url": "https://www.w3.org/TR/WGSL/#behaviors-examples" @@ -477,13 +547,13 @@ }, "#behaviors-notes": { "current": { - "number": "8.8.2", + "number": "9.8.2", "spec": "WebGPU Shading Language", "text": "Notes", "url": "https://gpuweb.github.io/gpuweb/wgsl/#behaviors-notes" }, "snapshot": { - "number": "8.8.2", + "number": "9.8.2", "spec": "WebGPU Shading Language", "text": "Notes", "url": "https://www.w3.org/TR/WGSL/#behaviors-notes" @@ -491,44 +561,72 @@ }, "#behaviors-rules": { "current": { - "number": "8.8.1", + "number": "9.8.1", "spec": "WebGPU Shading Language", "text": "Rules", "url": "https://gpuweb.github.io/gpuweb/wgsl/#behaviors-rules" }, "snapshot": { - "number": "8.8.1", + "number": "9.8.1", "spec": "WebGPU Shading Language", "text": "Rules", "url": "https://www.w3.org/TR/WGSL/#behaviors-rules" } }, + "#binding-attr": { + "current": { + "number": "11.2", + "spec": "WebGPU Shading Language", + "text": "binding", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#binding-attr" + }, + "snapshot": { + "number": "11.2", + "spec": "WebGPU Shading Language", + "text": "binding", + "url": "https://www.w3.org/TR/WGSL/#binding-attr" + } + }, "#bit-expr": { "current": { - "number": "7.11", + "number": "8.9", "spec": "WebGPU Shading Language", "text": "Bit Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#bit-expr" }, "snapshot": { - "number": "7.11", + "number": "8.9", "spec": "WebGPU Shading Language", "text": "Bit Expressions", "url": "https://www.w3.org/TR/WGSL/#bit-expr" } }, - "#bitcast-expr": { + "#bit-reinterp-builtin-functions": { + "current": { + "number": "16.2", + "spec": "WebGPU Shading Language", + "text": "Bit Reinterpretation Built-in Functions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#bit-reinterp-builtin-functions" + }, + "snapshot": { + "number": "16.2", + "spec": "WebGPU Shading Language", + "text": "Bit Reinterpretation Built-in Functions", + "url": "https://www.w3.org/TR/WGSL/#bit-reinterp-builtin-functions" + } + }, + "#bitcast-builtin": { "current": { - "number": "7.6", + "number": "16.2.1", "spec": "WebGPU Shading Language", - "text": "Reinterpretation of Representation Expressions", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#bitcast-expr" + "text": "bitcast", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#bitcast-builtin" }, "snapshot": { - "number": "7.6", + "number": "16.2.1", "spec": "WebGPU Shading Language", - "text": "Reinterpretation of Representation Expressions", - "url": "https://www.w3.org/TR/WGSL/#bitcast-expr" + "text": "bitcast", + "url": "https://www.w3.org/TR/WGSL/#bitcast-builtin" } }, "#blankspace-and-line-breaks": { @@ -545,15 +643,43 @@ "url": "https://www.w3.org/TR/WGSL/#blankspace-and-line-breaks" } }, + "#blend-src-attr": { + "current": { + "number": "11.3", + "spec": "WebGPU Shading Language", + "text": "blend_src", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#blend-src-attr" + }, + "snapshot": { + "number": "11.3", + "spec": "WebGPU Shading Language", + "text": "blend_src", + "url": "https://www.w3.org/TR/WGSL/#blend-src-attr" + } + }, + "#bool-builtin": { + "current": { + "number": "16.1.2.2", + "spec": "WebGPU Shading Language", + "text": "bool", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#bool-builtin" + }, + "snapshot": { + "number": "16.1.2.2", + "spec": "WebGPU Shading Language", + "text": "bool", + "url": "https://www.w3.org/TR/WGSL/#bool-builtin" + } + }, "#bool-type": { "current": { - "number": "5.2.2", + "number": "6.2.2", "spec": "WebGPU Shading Language", "text": "Boolean Type", "url": "https://gpuweb.github.io/gpuweb/wgsl/#bool-type" }, "snapshot": { - "number": "5.2.2", + "number": "6.2.2", "spec": "WebGPU Shading Language", "text": "Boolean Type", "url": "https://www.w3.org/TR/WGSL/#bool-type" @@ -575,13 +701,13 @@ }, "#break-if-statement": { "current": { - "number": "8.4.7", + "number": "9.4.7", "spec": "WebGPU Shading Language", "text": "Break-If Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#break-if-statement" }, "snapshot": { - "number": "8.4.7", + "number": "9.4.7", "spec": "WebGPU Shading Language", "text": "Break-If Statement", "url": "https://www.w3.org/TR/WGSL/#break-if-statement" @@ -589,69 +715,97 @@ }, "#break-statement": { "current": { - "number": "8.4.6", + "number": "9.4.6", "spec": "WebGPU Shading Language", "text": "Break Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#break-statement" }, "snapshot": { - "number": "8.4.6", + "number": "9.4.6", "spec": "WebGPU Shading Language", "text": "Break Statement", "url": "https://www.w3.org/TR/WGSL/#break-statement" } }, + "#buffer-binding-determines-runtime-sized-array-element-count": { + "current": { + "number": "12.3.4", + "spec": "WebGPU Shading Language", + "text": "Buffer Binding Determines Runtime-Sized Array Element Count", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#buffer-binding-determines-runtime-sized-array-element-count" + }, + "snapshot": { + "number": "12.3.4", + "spec": "WebGPU Shading Language", + "text": "Buffer Binding Determines Runtime-Sized Array Element Count", + "url": "https://www.w3.org/TR/WGSL/#buffer-binding-determines-runtime-sized-array-element-count" + } + }, + "#builtin-attr": { + "current": { + "number": "11.4", + "spec": "WebGPU Shading Language", + "text": "builtin", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#builtin-attr" + }, + "snapshot": { + "number": "11.4", + "spec": "WebGPU Shading Language", + "text": "builtin", + "url": "https://www.w3.org/TR/WGSL/#builtin-attr" + } + }, "#builtin-functions": { "current": { "number": "", "spec": "WebGPU Shading Language", - "text": "17. Built-in Functions", + "text": "16. Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#builtin-functions" }, "snapshot": { "number": "", "spec": "WebGPU Shading Language", - "text": "17. Built-in Functions", + "text": "16. Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#builtin-functions" } }, "#builtin-inputs-outputs": { "current": { - "number": "10.3.1.1", + "number": "12.3.1.1", "spec": "WebGPU Shading Language", "text": "Built-in Inputs and Outputs", "url": "https://gpuweb.github.io/gpuweb/wgsl/#builtin-inputs-outputs" }, "snapshot": { - "number": "10.3.1.1", + "number": "12.3.1.1", "spec": "WebGPU Shading Language", "text": "Built-in Inputs and Outputs", "url": "https://www.w3.org/TR/WGSL/#builtin-inputs-outputs" } }, - "#builtin-values": { + "#builtin-value-names": { "current": { - "number": "", + "number": "3.8.2", "spec": "WebGPU Shading Language", - "text": "16. Built-in Values", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#builtin-values" + "text": "Built-in Value Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#builtin-value-names" }, "snapshot": { - "number": "", + "number": "3.8.2", "spec": "WebGPU Shading Language", - "text": "16. Built-in Values", - "url": "https://www.w3.org/TR/WGSL/#builtin-values" + "text": "Built-in Value Names", + "url": "https://www.w3.org/TR/WGSL/#builtin-value-names" } }, "#ceil-builtin": { "current": { - "number": "17.3.9", + "number": "16.5.9", "spec": "WebGPU Shading Language", "text": "ceil", "url": "https://gpuweb.github.io/gpuweb/wgsl/#ceil-builtin" }, "snapshot": { - "number": "17.3.9", + "number": "16.5.9", "spec": "WebGPU Shading Language", "text": "ceil", "url": "https://www.w3.org/TR/WGSL/#ceil-builtin" @@ -659,18 +813,32 @@ }, "#clamp": { "current": { - "number": "17.3.10", + "number": "16.5.10", "spec": "WebGPU Shading Language", "text": "clamp", "url": "https://gpuweb.github.io/gpuweb/wgsl/#clamp" }, "snapshot": { - "number": "17.3.10", + "number": "16.5.10", "spec": "WebGPU Shading Language", "text": "clamp", "url": "https://www.w3.org/TR/WGSL/#clamp" } }, + "#clip-distances-builtin-value": { + "current": { + "number": "12.3.1.1.1", + "spec": "WebGPU Shading Language", + "text": "clip_distances", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#clip-distances-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.1", + "spec": "WebGPU Shading Language", + "text": "clip_distances", + "url": "https://www.w3.org/TR/WGSL/#clip-distances-builtin-value" + } + }, "#collective-operations": { "current": { "number": "14.5", @@ -701,41 +869,41 @@ }, "#comparison-expr": { "current": { - "number": "7.10", + "number": "8.8", "spec": "WebGPU Shading Language", "text": "Comparison Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#comparison-expr" }, "snapshot": { - "number": "7.10", + "number": "8.8", "spec": "WebGPU Shading Language", "text": "Comparison Expressions", "url": "https://www.w3.org/TR/WGSL/#comparison-expr" } }, - "#component-reference-from-vector-reference": { + "#component-reference-from-vector-memory-view": { "current": { - "number": "7.7.1.3", + "number": "8.5.1.3", "spec": "WebGPU Shading Language", - "text": "Component Reference from Vector Reference", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#component-reference-from-vector-reference" + "text": "Component Reference from Vector Memory View", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#component-reference-from-vector-memory-view" }, "snapshot": { - "number": "7.7.1.3", + "number": "8.5.1.3", "spec": "WebGPU Shading Language", - "text": "Component Reference from Vector Reference", - "url": "https://www.w3.org/TR/WGSL/#component-reference-from-vector-reference" + "text": "Component Reference from Vector Memory View", + "url": "https://www.w3.org/TR/WGSL/#component-reference-from-vector-memory-view" } }, "#composite-types": { "current": { - "number": "5.2.11", + "number": "6.2.11", "spec": "WebGPU Shading Language", "text": "Composite Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#composite-types" }, "snapshot": { - "number": "5.2.11", + "number": "6.2.11", "spec": "WebGPU Shading Language", "text": "Composite Types", "url": "https://www.w3.org/TR/WGSL/#composite-types" @@ -743,13 +911,13 @@ }, "#composite-value-decomposition-expr": { "current": { - "number": "7.7", + "number": "8.5", "spec": "WebGPU Shading Language", "text": "Composite Value Decomposition Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#composite-value-decomposition-expr" }, "snapshot": { - "number": "7.7", + "number": "8.5", "spec": "WebGPU Shading Language", "text": "Composite Value Decomposition Expressions", "url": "https://www.w3.org/TR/WGSL/#composite-value-decomposition-expr" @@ -757,13 +925,13 @@ }, "#compound-assignment-sec": { "current": { - "number": "8.2.3", + "number": "9.2.3", "spec": "WebGPU Shading Language", "text": "Compound Assignment", "url": "https://gpuweb.github.io/gpuweb/wgsl/#compound-assignment-sec" }, "snapshot": { - "number": "8.2.3", + "number": "9.2.3", "spec": "WebGPU Shading Language", "text": "Compound Assignment", "url": "https://www.w3.org/TR/WGSL/#compound-assignment-sec" @@ -771,18 +939,32 @@ }, "#compound-statement-section": { "current": { - "number": "8.1", + "number": "9.1", "spec": "WebGPU Shading Language", "text": "Compound Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#compound-statement-section" }, "snapshot": { - "number": "8.1", + "number": "9.1", "spec": "WebGPU Shading Language", "text": "Compound Statement", "url": "https://www.w3.org/TR/WGSL/#compound-statement-section" } }, + "#compute-attr": { + "current": { + "number": "11.15.3", + "spec": "WebGPU Shading Language", + "text": "compute", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#compute-attr" + }, + "snapshot": { + "number": "11.15.3", + "spec": "WebGPU Shading Language", + "text": "compute", + "url": "https://www.w3.org/TR/WGSL/#compute-attr" + } + }, "#compute-shader-workgroups": { "current": { "number": "14.3", @@ -797,29 +979,57 @@ "url": "https://www.w3.org/TR/WGSL/#compute-shader-workgroups" } }, + "#concrete-float-accuracy": { + "current": { + "number": "14.6.2.1", + "spec": "WebGPU Shading Language", + "text": "Accuracy of Concrete Floating Point Expressions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#concrete-float-accuracy" + }, + "snapshot": { + "number": "14.6.2.1", + "spec": "WebGPU Shading Language", + "text": "Accuracy of Concrete Floating Point Expressions", + "url": "https://www.w3.org/TR/WGSL/#concrete-float-accuracy" + } + }, "#const-assert-statement": { "current": { - "number": "8.6", + "number": "9.6", "spec": "WebGPU Shading Language", "text": "Const Assertion Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#const-assert-statement" }, "snapshot": { - "number": "8.6", + "number": "9.6", "spec": "WebGPU Shading Language", "text": "Const Assertion Statement", "url": "https://www.w3.org/TR/WGSL/#const-assert-statement" } }, + "#const-attr": { + "current": { + "number": "11.5", + "spec": "WebGPU Shading Language", + "text": "const", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#const-attr" + }, + "snapshot": { + "number": "11.5", + "spec": "WebGPU Shading Language", + "text": "const", + "url": "https://www.w3.org/TR/WGSL/#const-attr" + } + }, "#const-decls": { "current": { - "number": "6.2.1", + "number": "7.2.1", "spec": "WebGPU Shading Language", "text": "const Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#const-decls" }, "snapshot": { - "number": "6.2.1", + "number": "7.2.1", "spec": "WebGPU Shading Language", "text": "const Declarations", "url": "https://www.w3.org/TR/WGSL/#const-decls" @@ -827,13 +1037,13 @@ }, "#const-expr": { "current": { - "number": "7.1.1", + "number": "8.1.1", "spec": "WebGPU Shading Language", "text": "const Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#const-expr" }, "snapshot": { - "number": "7.1.1", + "number": "8.1.1", "spec": "WebGPU Shading Language", "text": "const Expressions", "url": "https://www.w3.org/TR/WGSL/#const-expr" @@ -841,13 +1051,13 @@ }, "#const-funcs": { "current": { - "number": "9.3", + "number": "10.3", "spec": "WebGPU Shading Language", "text": "const Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#const-funcs" }, "snapshot": { - "number": "9.3", + "number": "10.3", "spec": "WebGPU Shading Language", "text": "const Functions", "url": "https://www.w3.org/TR/WGSL/#const-funcs" @@ -855,44 +1065,30 @@ }, "#constructible-types": { "current": { - "number": "5.2.12", + "number": "6.2.12", "spec": "WebGPU Shading Language", "text": "Constructible Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#constructible-types" }, "snapshot": { - "number": "5.2.12", + "number": "6.2.12", "spec": "WebGPU Shading Language", "text": "Constructible Types", "url": "https://www.w3.org/TR/WGSL/#constructible-types" } }, - "#construction-from-components": { - "current": { - "number": "7.5.1", - "spec": "WebGPU Shading Language", - "text": "Construction From Components", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#construction-from-components" - }, - "snapshot": { - "number": "7.5.1", - "spec": "WebGPU Shading Language", - "text": "Construction From Components", - "url": "https://www.w3.org/TR/WGSL/#construction-from-components" - } - }, - "#context-dependent-name-tokens": { + "#constructor-builtin-function": { "current": { - "number": "15.4", + "number": "16.1", "spec": "WebGPU Shading Language", - "text": "Context-Dependent Name Tokens", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#context-dependent-name-tokens" + "text": "Constructor Built-in Functions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#constructor-builtin-function" }, "snapshot": { - "number": "15.4", + "number": "16.1", "spec": "WebGPU Shading Language", - "text": "Context-Dependent Name Tokens", - "url": "https://www.w3.org/TR/WGSL/#context-dependent-name-tokens" + "text": "Constructor Built-in Functions", + "url": "https://www.w3.org/TR/WGSL/#constructor-builtin-function" } }, "#context-dependent-names": { @@ -911,13 +1107,13 @@ }, "#continue-statement": { "current": { - "number": "8.4.8", + "number": "9.4.8", "spec": "WebGPU Shading Language", "text": "Continue Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#continue-statement" }, "snapshot": { - "number": "8.4.8", + "number": "9.4.8", "spec": "WebGPU Shading Language", "text": "Continue Statement", "url": "https://www.w3.org/TR/WGSL/#continue-statement" @@ -925,13 +1121,13 @@ }, "#continuing-statement": { "current": { - "number": "8.4.9", + "number": "9.4.9", "spec": "WebGPU Shading Language", "text": "Continuing Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#continuing-statement" }, "snapshot": { - "number": "8.4.9", + "number": "9.4.9", "spec": "WebGPU Shading Language", "text": "Continuing Statement", "url": "https://www.w3.org/TR/WGSL/#continuing-statement" @@ -939,41 +1135,27 @@ }, "#control-flow": { "current": { - "number": "8.4", + "number": "9.4", "spec": "WebGPU Shading Language", "text": "Control Flow", "url": "https://gpuweb.github.io/gpuweb/wgsl/#control-flow" }, "snapshot": { - "number": "8.4", + "number": "9.4", "spec": "WebGPU Shading Language", "text": "Control Flow", "url": "https://www.w3.org/TR/WGSL/#control-flow" } }, - "#conversion-expr": { - "current": { - "number": "7.5.3", - "spec": "WebGPU Shading Language", - "text": "Conversion Expressions", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#conversion-expr" - }, - "snapshot": { - "number": "7.5.3", - "spec": "WebGPU Shading Language", - "text": "Conversion Expressions", - "url": "https://www.w3.org/TR/WGSL/#conversion-expr" - } - }, "#conversion-rank": { "current": { - "number": "5.1.2", + "number": "6.1.2", "spec": "WebGPU Shading Language", "text": "Conversion Rank", "url": "https://gpuweb.github.io/gpuweb/wgsl/#conversion-rank" }, "snapshot": { - "number": "5.1.2", + "number": "6.1.2", "spec": "WebGPU Shading Language", "text": "Conversion Rank", "url": "https://www.w3.org/TR/WGSL/#conversion-rank" @@ -981,13 +1163,13 @@ }, "#cos-builtin": { "current": { - "number": "17.3.11", + "number": "16.5.11", "spec": "WebGPU Shading Language", "text": "cos", "url": "https://gpuweb.github.io/gpuweb/wgsl/#cos-builtin" }, "snapshot": { - "number": "17.3.11", + "number": "16.5.11", "spec": "WebGPU Shading Language", "text": "cos", "url": "https://www.w3.org/TR/WGSL/#cos-builtin" @@ -995,13 +1177,13 @@ }, "#cosh-builtin": { "current": { - "number": "17.3.12", + "number": "16.5.12", "spec": "WebGPU Shading Language", "text": "cosh", "url": "https://gpuweb.github.io/gpuweb/wgsl/#cosh-builtin" }, "snapshot": { - "number": "17.3.12", + "number": "16.5.12", "spec": "WebGPU Shading Language", "text": "cosh", "url": "https://www.w3.org/TR/WGSL/#cosh-builtin" @@ -1009,13 +1191,13 @@ }, "#countLeadingZeros-builtin": { "current": { - "number": "17.3.13", + "number": "16.5.13", "spec": "WebGPU Shading Language", "text": "countLeadingZeros", "url": "https://gpuweb.github.io/gpuweb/wgsl/#countLeadingZeros-builtin" }, "snapshot": { - "number": "17.3.13", + "number": "16.5.13", "spec": "WebGPU Shading Language", "text": "countLeadingZeros", "url": "https://www.w3.org/TR/WGSL/#countLeadingZeros-builtin" @@ -1023,13 +1205,13 @@ }, "#countOneBits-builtin": { "current": { - "number": "17.3.14", + "number": "16.5.14", "spec": "WebGPU Shading Language", "text": "countOneBits", "url": "https://gpuweb.github.io/gpuweb/wgsl/#countOneBits-builtin" }, "snapshot": { - "number": "17.3.14", + "number": "16.5.14", "spec": "WebGPU Shading Language", "text": "countOneBits", "url": "https://www.w3.org/TR/WGSL/#countOneBits-builtin" @@ -1037,13 +1219,13 @@ }, "#countTrailingZeros-builtin": { "current": { - "number": "17.3.15", + "number": "16.5.15", "spec": "WebGPU Shading Language", "text": "countTrailingZeros", "url": "https://gpuweb.github.io/gpuweb/wgsl/#countTrailingZeros-builtin" }, "snapshot": { - "number": "17.3.15", + "number": "16.5.15", "spec": "WebGPU Shading Language", "text": "countTrailingZeros", "url": "https://www.w3.org/TR/WGSL/#countTrailingZeros-builtin" @@ -1051,13 +1233,13 @@ }, "#cross-builtin": { "current": { - "number": "17.3.16", + "number": "16.5.16", "spec": "WebGPU Shading Language", "text": "cross", "url": "https://gpuweb.github.io/gpuweb/wgsl/#cross-builtin" }, "snapshot": { - "number": "17.3.16", + "number": "16.5.16", "spec": "WebGPU Shading Language", "text": "cross", "url": "https://www.w3.org/TR/WGSL/#cross-builtin" @@ -1065,13 +1247,13 @@ }, "#declaration-and-scope": { "current": { - "number": "4", + "number": "5", "spec": "WebGPU Shading Language", "text": "Declaration and Scope", "url": "https://gpuweb.github.io/gpuweb/wgsl/#declaration-and-scope" }, "snapshot": { - "number": "4", + "number": "5", "spec": "WebGPU Shading Language", "text": "Declaration and Scope", "url": "https://www.w3.org/TR/WGSL/#declaration-and-scope" @@ -1079,13 +1261,13 @@ }, "#degrees-builtin": { "current": { - "number": "17.3.17", + "number": "16.5.17", "spec": "WebGPU Shading Language", "text": "degrees", "url": "https://gpuweb.github.io/gpuweb/wgsl/#degrees-builtin" }, "snapshot": { - "number": "17.3.17", + "number": "16.5.17", "spec": "WebGPU Shading Language", "text": "degrees", "url": "https://www.w3.org/TR/WGSL/#degrees-builtin" @@ -1093,13 +1275,13 @@ }, "#derivative-builtin-functions": { "current": { - "number": "17.4", + "number": "16.6", "spec": "WebGPU Shading Language", "text": "Derivative Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#derivative-builtin-functions" }, "snapshot": { - "number": "17.4", + "number": "16.6", "spec": "WebGPU Shading Language", "text": "Derivative Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#derivative-builtin-functions" @@ -1121,27 +1303,111 @@ }, "#determinant-builtin": { "current": { - "number": "17.3.18", + "number": "16.5.18", "spec": "WebGPU Shading Language", "text": "determinant", "url": "https://gpuweb.github.io/gpuweb/wgsl/#determinant-builtin" }, "snapshot": { - "number": "17.3.18", + "number": "16.5.18", "spec": "WebGPU Shading Language", "text": "determinant", "url": "https://www.w3.org/TR/WGSL/#determinant-builtin" } }, + "#diagnostic-attr": { + "current": { + "number": "11.6", + "spec": "WebGPU Shading Language", + "text": "diagnostic", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-attr" + }, + "snapshot": { + "number": "11.6", + "spec": "WebGPU Shading Language", + "text": "diagnostic", + "url": "https://www.w3.org/TR/WGSL/#diagnostic-attr" + } + }, + "#diagnostic-filtering": { + "current": { + "number": "2.3.3", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Filtering", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-filtering" + }, + "snapshot": { + "number": "2.3.3", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Filtering", + "url": "https://www.w3.org/TR/WGSL/#diagnostic-filtering" + } + }, + "#diagnostic-processing": { + "current": { + "number": "2.3.1", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Processing", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-processing" + }, + "snapshot": { + "number": "2.3.1", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Processing", + "url": "https://www.w3.org/TR/WGSL/#diagnostic-processing" + } + }, + "#diagnostic-rule-names": { + "current": { + "number": "3.8.3", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Rule Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-rule-names" + }, + "snapshot": { + "number": "3.8.3", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Rule Names", + "url": "https://www.w3.org/TR/WGSL/#diagnostic-rule-names" + } + }, + "#diagnostic-severity-control-names": { + "current": { + "number": "3.8.4", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Severity Control Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#diagnostic-severity-control-names" + }, + "snapshot": { + "number": "3.8.4", + "spec": "WebGPU Shading Language", + "text": "Diagnostic Severity Control Names", + "url": "https://www.w3.org/TR/WGSL/#diagnostic-severity-control-names" + } + }, + "#diagnostics": { + "current": { + "number": "2.3", + "spec": "WebGPU Shading Language", + "text": "Diagnostics", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#diagnostics" + }, + "snapshot": { + "number": "2.3", + "spec": "WebGPU Shading Language", + "text": "Diagnostics", + "url": "https://www.w3.org/TR/WGSL/#diagnostics" + } + }, "#directives": { "current": { - "number": "3.11", + "number": "4", "spec": "WebGPU Shading Language", "text": "Directives", "url": "https://gpuweb.github.io/gpuweb/wgsl/#directives" }, "snapshot": { - "number": "3.11", + "number": "4", "spec": "WebGPU Shading Language", "text": "Directives", "url": "https://www.w3.org/TR/WGSL/#directives" @@ -1149,13 +1415,13 @@ }, "#discard-statement": { "current": { - "number": "8.4.11", + "number": "9.4.11", "spec": "WebGPU Shading Language", "text": "Discard Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#discard-statement" }, "snapshot": { - "number": "8.4.11", + "number": "9.4.11", "spec": "WebGPU Shading Language", "text": "Discard Statement", "url": "https://www.w3.org/TR/WGSL/#discard-statement" @@ -1163,13 +1429,13 @@ }, "#distance-builtin": { "current": { - "number": "17.3.19", + "number": "16.5.19", "spec": "WebGPU Shading Language", "text": "distance", "url": "https://gpuweb.github.io/gpuweb/wgsl/#distance-builtin" }, "snapshot": { - "number": "17.3.19", + "number": "16.5.19", "spec": "WebGPU Shading Language", "text": "distance", "url": "https://www.w3.org/TR/WGSL/#distance-builtin" @@ -1177,27 +1443,55 @@ }, "#dot-builtin": { "current": { - "number": "17.3.20", + "number": "16.5.20", "spec": "WebGPU Shading Language", "text": "dot", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dot-builtin" }, "snapshot": { - "number": "17.3.20", + "number": "16.5.20", "spec": "WebGPU Shading Language", "text": "dot", "url": "https://www.w3.org/TR/WGSL/#dot-builtin" } }, + "#dot4I8Packed-builtin": { + "current": { + "number": "16.5.22", + "spec": "WebGPU Shading Language", + "text": "dot4I8Packed", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#dot4I8Packed-builtin" + }, + "snapshot": { + "number": "16.5.22", + "spec": "WebGPU Shading Language", + "text": "dot4I8Packed", + "url": "https://www.w3.org/TR/WGSL/#dot4I8Packed-builtin" + } + }, + "#dot4U8Packed-builtin": { + "current": { + "number": "16.5.21", + "spec": "WebGPU Shading Language", + "text": "dot4U8Packed", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#dot4U8Packed-builtin" + }, + "snapshot": { + "number": "16.5.21", + "spec": "WebGPU Shading Language", + "text": "dot4U8Packed", + "url": "https://www.w3.org/TR/WGSL/#dot4U8Packed-builtin" + } + }, "#dpdx-builtin": { "current": { - "number": "17.4.1", + "number": "16.6.1", "spec": "WebGPU Shading Language", "text": "dpdx", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dpdx-builtin" }, "snapshot": { - "number": "17.4.1", + "number": "16.6.1", "spec": "WebGPU Shading Language", "text": "dpdx", "url": "https://www.w3.org/TR/WGSL/#dpdx-builtin" @@ -1205,13 +1499,13 @@ }, "#dpdxCoarse-builtin": { "current": { - "number": "17.4.2", + "number": "16.6.2", "spec": "WebGPU Shading Language", "text": "dpdxCoarse", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dpdxCoarse-builtin" }, "snapshot": { - "number": "17.4.2", + "number": "16.6.2", "spec": "WebGPU Shading Language", "text": "dpdxCoarse", "url": "https://www.w3.org/TR/WGSL/#dpdxCoarse-builtin" @@ -1219,13 +1513,13 @@ }, "#dpdxFine-builtin": { "current": { - "number": "17.4.3", + "number": "16.6.3", "spec": "WebGPU Shading Language", "text": "dpdxFine", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dpdxFine-builtin" }, "snapshot": { - "number": "17.4.3", + "number": "16.6.3", "spec": "WebGPU Shading Language", "text": "dpdxFine", "url": "https://www.w3.org/TR/WGSL/#dpdxFine-builtin" @@ -1233,13 +1527,13 @@ }, "#dpdy-builtin": { "current": { - "number": "17.4.4", + "number": "16.6.4", "spec": "WebGPU Shading Language", "text": "dpdy", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dpdy-builtin" }, "snapshot": { - "number": "17.4.4", + "number": "16.6.4", "spec": "WebGPU Shading Language", "text": "dpdy", "url": "https://www.w3.org/TR/WGSL/#dpdy-builtin" @@ -1247,13 +1541,13 @@ }, "#dpdyCoarse-builtin": { "current": { - "number": "17.4.5", + "number": "16.6.5", "spec": "WebGPU Shading Language", "text": "dpdyCoarse", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dpdyCoarse-builtin" }, "snapshot": { - "number": "17.4.5", + "number": "16.6.5", "spec": "WebGPU Shading Language", "text": "dpdyCoarse", "url": "https://www.w3.org/TR/WGSL/#dpdyCoarse-builtin" @@ -1261,13 +1555,13 @@ }, "#dpdyFine-builtin": { "current": { - "number": "17.4.6", + "number": "16.6.6", "spec": "WebGPU Shading Language", "text": "dpdyFine", "url": "https://gpuweb.github.io/gpuweb/wgsl/#dpdyFine-builtin" }, "snapshot": { - "number": "17.4.6", + "number": "16.6.6", "spec": "WebGPU Shading Language", "text": "dpdyFine", "url": "https://www.w3.org/TR/WGSL/#dpdyFine-builtin" @@ -1275,41 +1569,41 @@ }, "#early-eval-exprs": { "current": { - "number": "7.1", + "number": "8.1", "spec": "WebGPU Shading Language", "text": "Early Evaluation Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#early-eval-exprs" }, "snapshot": { - "number": "7.1", + "number": "8.1", "spec": "WebGPU Shading Language", "text": "Early Evaluation Expressions", "url": "https://www.w3.org/TR/WGSL/#early-eval-exprs" } }, - "#enable-directive-section": { + "#enable-extensions-sec": { "current": { - "number": "11.1", + "number": "4.1.1", "spec": "WebGPU Shading Language", - "text": "Enable Directive", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#enable-directive-section" + "text": "Enable Extensions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#enable-extensions-sec" }, "snapshot": { - "number": "11.1", + "number": "4.1.1", "spec": "WebGPU Shading Language", - "text": "Enable Directive", - "url": "https://www.w3.org/TR/WGSL/#enable-directive-section" + "text": "Enable Extensions", + "url": "https://www.w3.org/TR/WGSL/#enable-extensions-sec" } }, "#entry-point-attributes": { "current": { - "number": "10.2.1", + "number": "12.2.1", "spec": "WebGPU Shading Language", "text": "Function Attributes for Entry Points", "url": "https://gpuweb.github.io/gpuweb/wgsl/#entry-point-attributes" }, "snapshot": { - "number": "10.2.1", + "number": "12.2.1", "spec": "WebGPU Shading Language", "text": "Function Attributes for Entry Points", "url": "https://www.w3.org/TR/WGSL/#entry-point-attributes" @@ -1317,13 +1611,13 @@ }, "#entry-point-decl": { "current": { - "number": "10.2", + "number": "12.2", "spec": "WebGPU Shading Language", "text": "Entry Point Declaration", "url": "https://gpuweb.github.io/gpuweb/wgsl/#entry-point-decl" }, "snapshot": { - "number": "10.2", + "number": "12.2", "spec": "WebGPU Shading Language", "text": "Entry Point Declaration", "url": "https://www.w3.org/TR/WGSL/#entry-point-decl" @@ -1333,16 +1627,58 @@ "current": { "number": "", "spec": "WebGPU Shading Language", - "text": "10. Entry Points", + "text": "12. Entry Points", "url": "https://gpuweb.github.io/gpuweb/wgsl/#entry-points" }, "snapshot": { "number": "", "spec": "WebGPU Shading Language", - "text": "10. Entry Points", + "text": "12. Entry Points", "url": "https://www.w3.org/TR/WGSL/#entry-points" } }, + "#enum-expr": { + "current": { + "number": "8.16", + "spec": "WebGPU Shading Language", + "text": "Enumeration Expressions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#enum-expr" + }, + "snapshot": { + "number": "8.16", + "spec": "WebGPU Shading Language", + "text": "Enumeration Expressions", + "url": "https://www.w3.org/TR/WGSL/#enum-expr" + } + }, + "#enumeration-types": { + "current": { + "number": "6.3", + "spec": "WebGPU Shading Language", + "text": "Enumeration Types", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#enumeration-types" + }, + "snapshot": { + "number": "6.3", + "spec": "WebGPU Shading Language", + "text": "Enumeration Types", + "url": "https://www.w3.org/TR/WGSL/#enumeration-types" + } + }, + "#errors": { + "current": { + "number": "2.2", + "spec": "WebGPU Shading Language", + "text": "Errors", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#errors" + }, + "snapshot": { + "number": "2.2", + "spec": "WebGPU Shading Language", + "text": "Errors", + "url": "https://www.w3.org/TR/WGSL/#errors" + } + }, "#execution": { "current": { "number": "", @@ -1359,13 +1695,13 @@ }, "#exp-builtin": { "current": { - "number": "17.3.21", + "number": "16.5.23", "spec": "WebGPU Shading Language", "text": "exp", "url": "https://gpuweb.github.io/gpuweb/wgsl/#exp-builtin" }, "snapshot": { - "number": "17.3.21", + "number": "16.5.23", "spec": "WebGPU Shading Language", "text": "exp", "url": "https://www.w3.org/TR/WGSL/#exp-builtin" @@ -1373,13 +1709,13 @@ }, "#exp2-builtin": { "current": { - "number": "17.3.22", + "number": "16.5.24", "spec": "WebGPU Shading Language", "text": "exp2", "url": "https://gpuweb.github.io/gpuweb/wgsl/#exp2-builtin" }, "snapshot": { - "number": "17.3.22", + "number": "16.5.24", "spec": "WebGPU Shading Language", "text": "exp2", "url": "https://www.w3.org/TR/WGSL/#exp2-builtin" @@ -1387,13 +1723,13 @@ }, "#expression-grammar": { "current": { - "number": "7.18", + "number": "8.18", "spec": "WebGPU Shading Language", "text": "Expression Grammar Summary", "url": "https://gpuweb.github.io/gpuweb/wgsl/#expression-grammar" }, "snapshot": { - "number": "7.18", + "number": "8.18", "spec": "WebGPU Shading Language", "text": "Expression Grammar Summary", "url": "https://www.w3.org/TR/WGSL/#expression-grammar" @@ -1401,41 +1737,55 @@ }, "#expressions": { "current": { - "number": "7", + "number": "8", "spec": "WebGPU Shading Language", "text": "Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#expressions" }, "snapshot": { - "number": "7", + "number": "8", "spec": "WebGPU Shading Language", "text": "Expressions", "url": "https://www.w3.org/TR/WGSL/#expressions" } }, - "#extension-list": { + "#extension-names": { "current": { - "number": "11.2", + "number": "3.8.5", "spec": "WebGPU Shading Language", - "text": "Extensions List", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#extension-list" + "text": "Extension Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#extension-names" }, "snapshot": { - "number": "11.2", + "number": "3.8.5", "spec": "WebGPU Shading Language", - "text": "Extensions List", - "url": "https://www.w3.org/TR/WGSL/#extension-list" + "text": "Extension Names", + "url": "https://www.w3.org/TR/WGSL/#extension-names" + } + }, + "#extensions": { + "current": { + "number": "4.1", + "spec": "WebGPU Shading Language", + "text": "Extensions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#extensions" + }, + "snapshot": { + "number": "4.1", + "spec": "WebGPU Shading Language", + "text": "Extensions", + "url": "https://www.w3.org/TR/WGSL/#extensions" } }, "#external-texture-type": { "current": { - "number": "5.4.4", + "number": "6.5.4", "spec": "WebGPU Shading Language", "text": "External Sampled Texture Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#external-texture-type" }, "snapshot": { - "number": "5.4.4", + "number": "6.5.4", "spec": "WebGPU Shading Language", "text": "External Sampled Texture Types", "url": "https://www.w3.org/TR/WGSL/#external-texture-type" @@ -1443,13 +1793,13 @@ }, "#extractBits-signed-builtin": { "current": { - "number": "17.3.23", + "number": "16.5.25", "spec": "WebGPU Shading Language", "text": "extractBits (signed)", "url": "https://gpuweb.github.io/gpuweb/wgsl/#extractBits-signed-builtin" }, "snapshot": { - "number": "17.3.23", + "number": "16.5.25", "spec": "WebGPU Shading Language", "text": "extractBits (signed)", "url": "https://www.w3.org/TR/WGSL/#extractBits-signed-builtin" @@ -1457,41 +1807,83 @@ }, "#extractBits-unsigned-builtin": { "current": { - "number": "17.3.24", + "number": "16.5.26", "spec": "WebGPU Shading Language", "text": "extractBits (unsigned)", "url": "https://gpuweb.github.io/gpuweb/wgsl/#extractBits-unsigned-builtin" }, "snapshot": { - "number": "17.3.24", + "number": "16.5.26", "spec": "WebGPU Shading Language", "text": "extractBits (unsigned)", "url": "https://www.w3.org/TR/WGSL/#extractBits-unsigned-builtin" } }, + "#f16-builtin": { + "current": { + "number": "16.1.2.3", + "spec": "WebGPU Shading Language", + "text": "f16", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#f16-builtin" + }, + "snapshot": { + "number": "16.1.2.3", + "spec": "WebGPU Shading Language", + "text": "f16", + "url": "https://www.w3.org/TR/WGSL/#f16-builtin" + } + }, + "#f32-builtin": { + "current": { + "number": "16.1.2.4", + "spec": "WebGPU Shading Language", + "text": "f32", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#f32-builtin" + }, + "snapshot": { + "number": "16.1.2.4", + "spec": "WebGPU Shading Language", + "text": "f32", + "url": "https://www.w3.org/TR/WGSL/#f32-builtin" + } + }, "#faceForward-builtin": { "current": { - "number": "17.3.25", + "number": "16.5.27", "spec": "WebGPU Shading Language", "text": "faceForward", "url": "https://gpuweb.github.io/gpuweb/wgsl/#faceForward-builtin" }, "snapshot": { - "number": "17.3.25", + "number": "16.5.27", "spec": "WebGPU Shading Language", "text": "faceForward", "url": "https://www.w3.org/TR/WGSL/#faceForward-builtin" } }, + "#filterable-triggering-rules": { + "current": { + "number": "2.3.2", + "spec": "WebGPU Shading Language", + "text": "Filterable Triggering Rules", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#filterable-triggering-rules" + }, + "snapshot": { + "number": "2.3.2", + "spec": "WebGPU Shading Language", + "text": "Filterable Triggering Rules", + "url": "https://www.w3.org/TR/WGSL/#filterable-triggering-rules" + } + }, "#firstLeadingBit-signed-builtin": { "current": { - "number": "17.3.26", + "number": "16.5.28", "spec": "WebGPU Shading Language", "text": "firstLeadingBit (signed)", "url": "https://gpuweb.github.io/gpuweb/wgsl/#firstLeadingBit-signed-builtin" }, "snapshot": { - "number": "17.3.26", + "number": "16.5.28", "spec": "WebGPU Shading Language", "text": "firstLeadingBit (signed)", "url": "https://www.w3.org/TR/WGSL/#firstLeadingBit-signed-builtin" @@ -1499,13 +1891,13 @@ }, "#firstLeadingBit-unsigned-builtin": { "current": { - "number": "17.3.27", + "number": "16.5.29", "spec": "WebGPU Shading Language", "text": "firstLeadingBit (unsigned)", "url": "https://gpuweb.github.io/gpuweb/wgsl/#firstLeadingBit-unsigned-builtin" }, "snapshot": { - "number": "17.3.27", + "number": "16.5.29", "spec": "WebGPU Shading Language", "text": "firstLeadingBit (unsigned)", "url": "https://www.w3.org/TR/WGSL/#firstLeadingBit-unsigned-builtin" @@ -1513,13 +1905,13 @@ }, "#firstTrailingBit-builtin": { "current": { - "number": "17.3.28", + "number": "16.5.30", "spec": "WebGPU Shading Language", "text": "firstTrailingBit", "url": "https://gpuweb.github.io/gpuweb/wgsl/#firstTrailingBit-builtin" }, "snapshot": { - "number": "17.3.28", + "number": "16.5.30", "spec": "WebGPU Shading Language", "text": "firstTrailingBit", "url": "https://www.w3.org/TR/WGSL/#firstTrailingBit-builtin" @@ -1527,13 +1919,13 @@ }, "#fixed-footprint-types": { "current": { - "number": "5.2.13", + "number": "6.2.13", "spec": "WebGPU Shading Language", "text": "Fixed-Footprint Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#fixed-footprint-types" }, "snapshot": { - "number": "5.2.13", + "number": "6.2.13", "spec": "WebGPU Shading Language", "text": "Fixed-Footprint Types", "url": "https://www.w3.org/TR/WGSL/#fixed-footprint-types" @@ -1541,13 +1933,13 @@ }, "#floating-point-accuracy": { "current": { - "number": "14.6.1", + "number": "14.6.2", "spec": "WebGPU Shading Language", "text": "Floating Point Accuracy", "url": "https://gpuweb.github.io/gpuweb/wgsl/#floating-point-accuracy" }, "snapshot": { - "number": "14.6.1", + "number": "14.6.2", "spec": "WebGPU Shading Language", "text": "Floating Point Accuracy", "url": "https://www.w3.org/TR/WGSL/#floating-point-accuracy" @@ -1555,13 +1947,13 @@ }, "#floating-point-conversion": { "current": { - "number": "14.6.2", + "number": "14.6.4", "spec": "WebGPU Shading Language", "text": "Floating Point Conversion", "url": "https://gpuweb.github.io/gpuweb/wgsl/#floating-point-conversion" }, "snapshot": { - "number": "14.6.2", + "number": "14.6.4", "spec": "WebGPU Shading Language", "text": "Floating Point Conversion", "url": "https://www.w3.org/TR/WGSL/#floating-point-conversion" @@ -1581,29 +1973,43 @@ "url": "https://www.w3.org/TR/WGSL/#floating-point-evaluation" } }, + "#floating-point-overflow": { + "current": { + "number": "14.6.1", + "spec": "WebGPU Shading Language", + "text": "Floating Point Overflow", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#floating-point-overflow" + }, + "snapshot": { + "number": "14.6.1", + "spec": "WebGPU Shading Language", + "text": "Floating Point Overflow", + "url": "https://www.w3.org/TR/WGSL/#floating-point-overflow" + } + }, "#floating-point-types": { "current": { - "number": "5.2.4", + "number": "6.2.4", "spec": "WebGPU Shading Language", - "text": "Floating Point Type", + "text": "Floating Point Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#floating-point-types" }, "snapshot": { - "number": "5.2.4", + "number": "6.2.4", "spec": "WebGPU Shading Language", - "text": "Floating Point Type", + "text": "Floating Point Types", "url": "https://www.w3.org/TR/WGSL/#floating-point-types" } }, "#floor-builtin": { "current": { - "number": "17.3.29", + "number": "16.5.31", "spec": "WebGPU Shading Language", "text": "floor", "url": "https://gpuweb.github.io/gpuweb/wgsl/#floor-builtin" }, "snapshot": { - "number": "17.3.29", + "number": "16.5.31", "spec": "WebGPU Shading Language", "text": "floor", "url": "https://www.w3.org/TR/WGSL/#floor-builtin" @@ -1611,13 +2017,13 @@ }, "#fma-builtin": { "current": { - "number": "17.3.30", + "number": "16.5.32", "spec": "WebGPU Shading Language", "text": "fma", "url": "https://gpuweb.github.io/gpuweb/wgsl/#fma-builtin" }, "snapshot": { - "number": "17.3.30", + "number": "16.5.32", "spec": "WebGPU Shading Language", "text": "fma", "url": "https://www.w3.org/TR/WGSL/#fma-builtin" @@ -1625,13 +2031,13 @@ }, "#for-statement": { "current": { - "number": "8.4.4", + "number": "9.4.4", "spec": "WebGPU Shading Language", "text": "For Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#for-statement" }, "snapshot": { - "number": "8.4.4", + "number": "9.4.4", "spec": "WebGPU Shading Language", "text": "For Statement", "url": "https://www.w3.org/TR/WGSL/#for-statement" @@ -1639,13 +2045,13 @@ }, "#formal-parameter-expr": { "current": { - "number": "7.14", + "number": "8.12", "spec": "WebGPU Shading Language", "text": "Formal Parameter Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#formal-parameter-expr" }, "snapshot": { - "number": "7.14", + "number": "8.12", "spec": "WebGPU Shading Language", "text": "Formal Parameter Expression", "url": "https://www.w3.org/TR/WGSL/#formal-parameter-expr" @@ -1653,13 +2059,13 @@ }, "#forming-references-and-pointers": { "current": { - "number": "5.3.7", + "number": "6.4.8", "spec": "WebGPU Shading Language", "text": "Forming Reference and Pointer Values", "url": "https://gpuweb.github.io/gpuweb/wgsl/#forming-references-and-pointers" }, "snapshot": { - "number": "5.3.7", + "number": "6.4.8", "spec": "WebGPU Shading Language", "text": "Forming Reference and Pointer Values", "url": "https://www.w3.org/TR/WGSL/#forming-references-and-pointers" @@ -1667,18 +2073,46 @@ }, "#fract-builtin": { "current": { - "number": "17.3.31", + "number": "16.5.33", "spec": "WebGPU Shading Language", "text": "fract", "url": "https://gpuweb.github.io/gpuweb/wgsl/#fract-builtin" }, "snapshot": { - "number": "17.3.31", + "number": "16.5.33", "spec": "WebGPU Shading Language", "text": "fract", "url": "https://www.w3.org/TR/WGSL/#fract-builtin" } }, + "#frag-depth-builtin-value": { + "current": { + "number": "12.3.1.1.2", + "spec": "WebGPU Shading Language", + "text": "frag_depth", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#frag-depth-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.2", + "spec": "WebGPU Shading Language", + "text": "frag_depth", + "url": "https://www.w3.org/TR/WGSL/#frag-depth-builtin-value" + } + }, + "#fragment-attr": { + "current": { + "number": "11.15.2", + "spec": "WebGPU Shading Language", + "text": "fragment", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#fragment-attr" + }, + "snapshot": { + "number": "11.15.2", + "spec": "WebGPU Shading Language", + "text": "fragment", + "url": "https://www.w3.org/TR/WGSL/#fragment-attr" + } + }, "#fragment-shaders-helper-invocations": { "current": { "number": "14.4", @@ -1695,18 +2129,32 @@ }, "#frexp-builtin": { "current": { - "number": "17.3.32", + "number": "16.5.34", "spec": "WebGPU Shading Language", "text": "frexp", "url": "https://gpuweb.github.io/gpuweb/wgsl/#frexp-builtin" }, "snapshot": { - "number": "17.3.32", + "number": "16.5.34", "spec": "WebGPU Shading Language", "text": "frexp", "url": "https://www.w3.org/TR/WGSL/#frexp-builtin" } }, + "#front-facing-builtin-value": { + "current": { + "number": "12.3.1.1.3", + "spec": "WebGPU Shading Language", + "text": "front_facing", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#front-facing-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.3", + "spec": "WebGPU Shading Language", + "text": "front_facing", + "url": "https://www.w3.org/TR/WGSL/#front-facing-builtin-value" + } + }, "#func-var-value-analysis": { "current": { "number": "14.2.5", @@ -1723,13 +2171,13 @@ }, "#function-call-expr": { "current": { - "number": "7.12", + "number": "8.10", "spec": "WebGPU Shading Language", "text": "Function Call Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#function-call-expr" }, "snapshot": { - "number": "7.12", + "number": "8.10", "spec": "WebGPU Shading Language", "text": "Function Call Expression", "url": "https://www.w3.org/TR/WGSL/#function-call-expr" @@ -1737,13 +2185,13 @@ }, "#function-call-statement": { "current": { - "number": "8.5", + "number": "9.5", "spec": "WebGPU Shading Language", "text": "Function Call Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#function-call-statement" }, "snapshot": { - "number": "8.5", + "number": "9.5", "spec": "WebGPU Shading Language", "text": "Function Call Statement", "url": "https://www.w3.org/TR/WGSL/#function-call-statement" @@ -1751,13 +2199,13 @@ }, "#function-calls": { "current": { - "number": "9.2", + "number": "10.2", "spec": "WebGPU Shading Language", "text": "Function Calls", "url": "https://gpuweb.github.io/gpuweb/wgsl/#function-calls" }, "snapshot": { - "number": "9.2", + "number": "10.2", "spec": "WebGPU Shading Language", "text": "Function Calls", "url": "https://www.w3.org/TR/WGSL/#function-calls" @@ -1765,13 +2213,13 @@ }, "#function-declaration-sec": { "current": { - "number": "9.1", + "number": "10.1", "spec": "WebGPU Shading Language", "text": "Declaring a User-defined Function", "url": "https://gpuweb.github.io/gpuweb/wgsl/#function-declaration-sec" }, "snapshot": { - "number": "9.1", + "number": "10.1", "spec": "WebGPU Shading Language", "text": "Declaring a User-defined Function", "url": "https://www.w3.org/TR/WGSL/#function-declaration-sec" @@ -1779,13 +2227,13 @@ }, "#function-restriction": { "current": { - "number": "9.4", + "number": "10.4", "spec": "WebGPU Shading Language", "text": "Restrictions on Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#function-restriction" }, "snapshot": { - "number": "9.4", + "number": "10.4", "spec": "WebGPU Shading Language", "text": "Restrictions on Functions", "url": "https://www.w3.org/TR/WGSL/#function-restriction" @@ -1793,27 +2241,27 @@ }, "#functions": { "current": { - "number": "9", + "number": "", "spec": "WebGPU Shading Language", - "text": "Functions", + "text": "10. Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#functions" }, "snapshot": { - "number": "9", + "number": "", "spec": "WebGPU Shading Language", - "text": "Functions", + "text": "10. Functions", "url": "https://www.w3.org/TR/WGSL/#functions" } }, "#fwidth-builtin": { "current": { - "number": "17.4.7", + "number": "16.6.7", "spec": "WebGPU Shading Language", "text": "fwidth", "url": "https://gpuweb.github.io/gpuweb/wgsl/#fwidth-builtin" }, "snapshot": { - "number": "17.4.7", + "number": "16.6.7", "spec": "WebGPU Shading Language", "text": "fwidth", "url": "https://www.w3.org/TR/WGSL/#fwidth-builtin" @@ -1821,13 +2269,13 @@ }, "#fwidthCoarse-builtin": { "current": { - "number": "17.4.8", + "number": "16.6.8", "spec": "WebGPU Shading Language", "text": "fwidthCoarse", "url": "https://gpuweb.github.io/gpuweb/wgsl/#fwidthCoarse-builtin" }, "snapshot": { - "number": "17.4.8", + "number": "16.6.8", "spec": "WebGPU Shading Language", "text": "fwidthCoarse", "url": "https://www.w3.org/TR/WGSL/#fwidthCoarse-builtin" @@ -1835,18 +2283,46 @@ }, "#fwidthFine-builtin": { "current": { - "number": "17.4.9", + "number": "16.6.9", "spec": "WebGPU Shading Language", "text": "fwidthFine", "url": "https://gpuweb.github.io/gpuweb/wgsl/#fwidthFine-builtin" }, "snapshot": { - "number": "17.4.9", + "number": "16.6.9", "spec": "WebGPU Shading Language", "text": "fwidthFine", "url": "https://www.w3.org/TR/WGSL/#fwidthFine-builtin" } }, + "#global-diagnostic-directive": { + "current": { + "number": "4.2", + "spec": "WebGPU Shading Language", + "text": "Global Diagnostic Filter", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#global-diagnostic-directive" + }, + "snapshot": { + "number": "4.2", + "spec": "WebGPU Shading Language", + "text": "Global Diagnostic Filter", + "url": "https://www.w3.org/TR/WGSL/#global-diagnostic-directive" + } + }, + "#global-invocation-id-builtin-value": { + "current": { + "number": "12.3.1.1.4", + "spec": "WebGPU Shading Language", + "text": "global_invocation_id", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#global-invocation-id-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.4", + "spec": "WebGPU Shading Language", + "text": "global_invocation_id", + "url": "https://www.w3.org/TR/WGSL/#global-invocation-id-builtin-value" + } + }, "#grammar": { "current": { "number": "", @@ -1865,30 +2341,72 @@ "current": { "number": "", "spec": "WebGPU Shading Language", - "text": "18. Grammar for Recursive Descent Parsing", + "text": "17. Grammar for Recursive Descent Parsing", "url": "https://gpuweb.github.io/gpuweb/wgsl/#grammar-recursive-descent" }, "snapshot": { "number": "", "spec": "WebGPU Shading Language", - "text": "18. Grammar for Recursive Descent Parsing", + "text": "17. Grammar for Recursive Descent Parsing", "url": "https://www.w3.org/TR/WGSL/#grammar-recursive-descent" } }, + "#group-attr": { + "current": { + "number": "11.7", + "spec": "WebGPU Shading Language", + "text": "group", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#group-attr" + }, + "snapshot": { + "number": "11.7", + "spec": "WebGPU Shading Language", + "text": "group", + "url": "https://www.w3.org/TR/WGSL/#group-attr" + } + }, "#host-shareable-types": { "current": { - "number": "5.3.2", + "number": "6.4.2", "spec": "WebGPU Shading Language", "text": "Host-shareable Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#host-shareable-types" }, "snapshot": { - "number": "5.3.2", + "number": "6.4.2", "spec": "WebGPU Shading Language", "text": "Host-shareable Types", "url": "https://www.w3.org/TR/WGSL/#host-shareable-types" } }, + "#i32-builtin": { + "current": { + "number": "16.1.2.5", + "spec": "WebGPU Shading Language", + "text": "i32", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#i32-builtin" + }, + "snapshot": { + "number": "16.1.2.5", + "spec": "WebGPU Shading Language", + "text": "i32", + "url": "https://www.w3.org/TR/WGSL/#i32-builtin" + } + }, + "#id-attr": { + "current": { + "number": "11.8", + "spec": "WebGPU Shading Language", + "text": "id", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#id-attr" + }, + "snapshot": { + "number": "11.8", + "spec": "WebGPU Shading Language", + "text": "id", + "url": "https://www.w3.org/TR/WGSL/#id-attr" + } + }, "#identifier-comparison": { "current": { "number": "3.7.1", @@ -1919,13 +2437,13 @@ }, "#if-statement": { "current": { - "number": "8.4.1", + "number": "9.4.1", "spec": "WebGPU Shading Language", "text": "If Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#if-statement" }, "snapshot": { - "number": "8.4.1", + "number": "9.4.1", "spec": "WebGPU Shading Language", "text": "If Statement", "url": "https://www.w3.org/TR/WGSL/#if-statement" @@ -1933,13 +2451,13 @@ }, "#increment-decrement": { "current": { - "number": "8.3", + "number": "9.3", "spec": "WebGPU Shading Language", "text": "Increment and Decrement Statements", "url": "https://gpuweb.github.io/gpuweb/wgsl/#increment-decrement" }, "snapshot": { - "number": "8.3", + "number": "9.3", "spec": "WebGPU Shading Language", "text": "Increment and Decrement Statements", "url": "https://www.w3.org/TR/WGSL/#increment-decrement" @@ -1947,13 +2465,13 @@ }, "#indeterminate-values": { "current": { - "number": "7.2", + "number": "8.2", "spec": "WebGPU Shading Language", "text": "Indeterminate values", "url": "https://gpuweb.github.io/gpuweb/wgsl/#indeterminate-values" }, "snapshot": { - "number": "7.2", + "number": "8.2", "spec": "WebGPU Shading Language", "text": "Indeterminate values", "url": "https://www.w3.org/TR/WGSL/#indeterminate-values" @@ -2003,13 +2521,13 @@ }, "#indirection-expr": { "current": { - "number": "7.16", + "number": "8.14", "spec": "WebGPU Shading Language", "text": "Indirection Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#indirection-expr" }, "snapshot": { - "number": "7.16", + "number": "8.14", "spec": "WebGPU Shading Language", "text": "Indirection Expression", "url": "https://www.w3.org/TR/WGSL/#indirection-expr" @@ -2031,13 +2549,13 @@ }, "#input-output-locations": { "current": { - "number": "10.3.1.3", + "number": "12.3.1.3", "spec": "WebGPU Shading Language", "text": "Input-output Locations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#input-output-locations" }, "snapshot": { - "number": "10.3.1.3", + "number": "12.3.1.3", "spec": "WebGPU Shading Language", "text": "Input-output Locations", "url": "https://www.w3.org/TR/WGSL/#input-output-locations" @@ -2045,27 +2563,41 @@ }, "#insertBits-builtin": { "current": { - "number": "17.3.33", + "number": "16.5.35", "spec": "WebGPU Shading Language", "text": "insertBits", "url": "https://gpuweb.github.io/gpuweb/wgsl/#insertBits-builtin" }, "snapshot": { - "number": "17.3.33", + "number": "16.5.35", "spec": "WebGPU Shading Language", "text": "insertBits", "url": "https://www.w3.org/TR/WGSL/#insertBits-builtin" } }, + "#instance-index-builtin-value": { + "current": { + "number": "12.3.1.1.5", + "spec": "WebGPU Shading Language", + "text": "instance_index", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#instance-index-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.5", + "spec": "WebGPU Shading Language", + "text": "instance_index", + "url": "https://www.w3.org/TR/WGSL/#instance-index-builtin-value" + } + }, "#integer-types": { "current": { - "number": "5.2.3", + "number": "6.2.3", "spec": "WebGPU Shading Language", "text": "Integer Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#integer-types" }, "snapshot": { - "number": "5.2.3", + "number": "6.2.3", "spec": "WebGPU Shading Language", "text": "Integer Types", "url": "https://www.w3.org/TR/WGSL/#integer-types" @@ -2073,32 +2605,74 @@ }, "#internal-value-layout": { "current": { - "number": "13.5", + "number": "13.4.4", "spec": "WebGPU Shading Language", "text": "Internal Layout of Values", "url": "https://gpuweb.github.io/gpuweb/wgsl/#internal-value-layout" }, "snapshot": { - "number": "13.5", + "number": "13.4.4", "spec": "WebGPU Shading Language", "text": "Internal Layout of Values", "url": "https://www.w3.org/TR/WGSL/#internal-value-layout" } }, + "#interpolate-attr": { + "current": { + "number": "11.9", + "spec": "WebGPU Shading Language", + "text": "interpolate", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#interpolate-attr" + }, + "snapshot": { + "number": "11.9", + "spec": "WebGPU Shading Language", + "text": "interpolate", + "url": "https://www.w3.org/TR/WGSL/#interpolate-attr" + } + }, "#interpolation": { "current": { - "number": "10.3.1.4", + "number": "12.3.1.4", "spec": "WebGPU Shading Language", "text": "Interpolation", "url": "https://gpuweb.github.io/gpuweb/wgsl/#interpolation" }, "snapshot": { - "number": "10.3.1.4", + "number": "12.3.1.4", "spec": "WebGPU Shading Language", "text": "Interpolation", "url": "https://www.w3.org/TR/WGSL/#interpolation" } }, + "#interpolation-sampling-names": { + "current": { + "number": "3.8.7", + "spec": "WebGPU Shading Language", + "text": "Interpolation Sampling Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-names" + }, + "snapshot": { + "number": "3.8.7", + "spec": "WebGPU Shading Language", + "text": "Interpolation Sampling Names", + "url": "https://www.w3.org/TR/WGSL/#interpolation-sampling-names" + } + }, + "#interpolation-type-names": { + "current": { + "number": "3.8.6", + "spec": "WebGPU Shading Language", + "text": "Interpolation Type Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#interpolation-type-names" + }, + "snapshot": { + "number": "3.8.6", + "spec": "WebGPU Shading Language", + "text": "Interpolation Type Names", + "url": "https://www.w3.org/TR/WGSL/#interpolation-type-names" + } + }, "#intro": { "current": { "number": "1", @@ -2113,29 +2687,29 @@ "url": "https://www.w3.org/TR/WGSL/#intro" } }, - "#invalid-mem-reference": { + "#invariant-attr": { "current": { - "number": "5.3.5", + "number": "11.10", "spec": "WebGPU Shading Language", - "text": "Invalid Memory Reference", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#invalid-mem-reference" + "text": "invariant", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#invariant-attr" }, "snapshot": { - "number": "5.3.5", + "number": "11.10", "spec": "WebGPU Shading Language", - "text": "Invalid Memory Reference", - "url": "https://www.w3.org/TR/WGSL/#invalid-mem-reference" + "text": "invariant", + "url": "https://www.w3.org/TR/WGSL/#invariant-attr" } }, "#inverseSqrt-builtin": { "current": { - "number": "17.3.34", + "number": "16.5.36", "spec": "WebGPU Shading Language", "text": "inverseSqrt", "url": "https://gpuweb.github.io/gpuweb/wgsl/#inverseSqrt-builtin" }, "snapshot": { - "number": "17.3.34", + "number": "16.5.36", "spec": "WebGPU Shading Language", "text": "inverseSqrt", "url": "https://www.w3.org/TR/WGSL/#inverseSqrt-builtin" @@ -2169,29 +2743,29 @@ "url": "https://www.w3.org/TR/WGSL/#keywords" } }, - "#language-extensions": { + "#language-extensions-sec": { "current": { - "number": "", + "number": "4.1.2", "spec": "WebGPU Shading Language", - "text": "11. Language Extensions", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#language-extensions" + "text": "Language Extensions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#language-extensions-sec" }, "snapshot": { - "number": "", + "number": "4.1.2", "spec": "WebGPU Shading Language", - "text": "11. Language Extensions", - "url": "https://www.w3.org/TR/WGSL/#language-extensions" + "text": "Language Extensions", + "url": "https://www.w3.org/TR/WGSL/#language-extensions-sec" } }, "#ldexp-builtin": { "current": { - "number": "17.3.35", + "number": "16.5.37", "spec": "WebGPU Shading Language", "text": "ldexp", "url": "https://gpuweb.github.io/gpuweb/wgsl/#ldexp-builtin" }, "snapshot": { - "number": "17.3.35", + "number": "16.5.37", "spec": "WebGPU Shading Language", "text": "ldexp", "url": "https://www.w3.org/TR/WGSL/#ldexp-builtin" @@ -2199,13 +2773,13 @@ }, "#length-builtin": { "current": { - "number": "17.3.36", + "number": "16.5.38", "spec": "WebGPU Shading Language", "text": "length", "url": "https://gpuweb.github.io/gpuweb/wgsl/#length-builtin" }, "snapshot": { - "number": "17.3.36", + "number": "16.5.38", "spec": "WebGPU Shading Language", "text": "length", "url": "https://www.w3.org/TR/WGSL/#length-builtin" @@ -2213,13 +2787,13 @@ }, "#let-decls": { "current": { - "number": "6.2.3", + "number": "7.2.3", "spec": "WebGPU Shading Language", "text": "let Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#let-decls" }, "snapshot": { - "number": "6.2.3", + "number": "7.2.3", "spec": "WebGPU Shading Language", "text": "let Declarations", "url": "https://www.w3.org/TR/WGSL/#let-decls" @@ -2227,13 +2801,13 @@ }, "#limits": { "current": { - "number": "12.1", + "number": "2.4", "spec": "WebGPU Shading Language", "text": "Limits", "url": "https://gpuweb.github.io/gpuweb/wgsl/#limits" }, "snapshot": { - "number": "12.1", + "number": "2.4", "spec": "WebGPU Shading Language", "text": "Limits", "url": "https://www.w3.org/TR/WGSL/#limits" @@ -2241,13 +2815,13 @@ }, "#literal-expressions": { "current": { - "number": "7.3", + "number": "8.3", "spec": "WebGPU Shading Language", "text": "Literal Value Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#literal-expressions" }, "snapshot": { - "number": "7.3", + "number": "8.3", "spec": "WebGPU Shading Language", "text": "Literal Value Expressions", "url": "https://www.w3.org/TR/WGSL/#literal-expressions" @@ -2267,15 +2841,57 @@ "url": "https://www.w3.org/TR/WGSL/#literals" } }, + "#local-invocation-id-builtin-value": { + "current": { + "number": "12.3.1.1.6", + "spec": "WebGPU Shading Language", + "text": "local_invocation_id", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#local-invocation-id-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.6", + "spec": "WebGPU Shading Language", + "text": "local_invocation_id", + "url": "https://www.w3.org/TR/WGSL/#local-invocation-id-builtin-value" + } + }, + "#local-invocation-index-builtin-value": { + "current": { + "number": "12.3.1.1.7", + "spec": "WebGPU Shading Language", + "text": "local_invocation_index", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#local-invocation-index-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.7", + "spec": "WebGPU Shading Language", + "text": "local_invocation_index", + "url": "https://www.w3.org/TR/WGSL/#local-invocation-index-builtin-value" + } + }, + "#location-attr": { + "current": { + "number": "11.11", + "spec": "WebGPU Shading Language", + "text": "location", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#location-attr" + }, + "snapshot": { + "number": "11.11", + "spec": "WebGPU Shading Language", + "text": "location", + "url": "https://www.w3.org/TR/WGSL/#location-attr" + } + }, "#log-builtin": { "current": { - "number": "17.3.37", + "number": "16.5.39", "spec": "WebGPU Shading Language", "text": "log", "url": "https://gpuweb.github.io/gpuweb/wgsl/#log-builtin" }, "snapshot": { - "number": "17.3.37", + "number": "16.5.39", "spec": "WebGPU Shading Language", "text": "log", "url": "https://www.w3.org/TR/WGSL/#log-builtin" @@ -2283,13 +2899,13 @@ }, "#log2-builtin": { "current": { - "number": "17.3.38", + "number": "16.5.40", "spec": "WebGPU Shading Language", "text": "log2", "url": "https://gpuweb.github.io/gpuweb/wgsl/#log2-builtin" }, "snapshot": { - "number": "17.3.38", + "number": "16.5.40", "spec": "WebGPU Shading Language", "text": "log2", "url": "https://www.w3.org/TR/WGSL/#log2-builtin" @@ -2297,13 +2913,13 @@ }, "#logical-builtin-functions": { "current": { - "number": "17.1", + "number": "16.3", "spec": "WebGPU Shading Language", "text": "Logical Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#logical-builtin-functions" }, "snapshot": { - "number": "17.1", + "number": "16.3", "spec": "WebGPU Shading Language", "text": "Logical Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#logical-builtin-functions" @@ -2311,13 +2927,13 @@ }, "#logical-expr": { "current": { - "number": "7.8", + "number": "8.6", "spec": "WebGPU Shading Language", "text": "Logical Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#logical-expr" }, "snapshot": { - "number": "7.8", + "number": "8.6", "spec": "WebGPU Shading Language", "text": "Logical Expressions", "url": "https://www.w3.org/TR/WGSL/#logical-expr" @@ -2325,27 +2941,153 @@ }, "#loop-statement": { "current": { - "number": "8.4.3", + "number": "9.4.3", "spec": "WebGPU Shading Language", "text": "Loop Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#loop-statement" }, "snapshot": { - "number": "8.4.3", + "number": "9.4.3", "spec": "WebGPU Shading Language", "text": "Loop Statement", "url": "https://www.w3.org/TR/WGSL/#loop-statement" } }, + "#mat2x2-builtin": { + "current": { + "number": "16.1.2.6", + "spec": "WebGPU Shading Language", + "text": "mat2x2", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat2x2-builtin" + }, + "snapshot": { + "number": "16.1.2.6", + "spec": "WebGPU Shading Language", + "text": "mat2x2", + "url": "https://www.w3.org/TR/WGSL/#mat2x2-builtin" + } + }, + "#mat2x3-builtin": { + "current": { + "number": "16.1.2.7", + "spec": "WebGPU Shading Language", + "text": "mat2x3", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat2x3-builtin" + }, + "snapshot": { + "number": "16.1.2.7", + "spec": "WebGPU Shading Language", + "text": "mat2x3", + "url": "https://www.w3.org/TR/WGSL/#mat2x3-builtin" + } + }, + "#mat2x4-builtin": { + "current": { + "number": "16.1.2.8", + "spec": "WebGPU Shading Language", + "text": "mat2x4", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat2x4-builtin" + }, + "snapshot": { + "number": "16.1.2.8", + "spec": "WebGPU Shading Language", + "text": "mat2x4", + "url": "https://www.w3.org/TR/WGSL/#mat2x4-builtin" + } + }, + "#mat3x2-builtin": { + "current": { + "number": "16.1.2.9", + "spec": "WebGPU Shading Language", + "text": "mat3x2", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat3x2-builtin" + }, + "snapshot": { + "number": "16.1.2.9", + "spec": "WebGPU Shading Language", + "text": "mat3x2", + "url": "https://www.w3.org/TR/WGSL/#mat3x2-builtin" + } + }, + "#mat3x3-builtin": { + "current": { + "number": "16.1.2.10", + "spec": "WebGPU Shading Language", + "text": "mat3x3", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat3x3-builtin" + }, + "snapshot": { + "number": "16.1.2.10", + "spec": "WebGPU Shading Language", + "text": "mat3x3", + "url": "https://www.w3.org/TR/WGSL/#mat3x3-builtin" + } + }, + "#mat3x4-builtin": { + "current": { + "number": "16.1.2.11", + "spec": "WebGPU Shading Language", + "text": "mat3x4", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat3x4-builtin" + }, + "snapshot": { + "number": "16.1.2.11", + "spec": "WebGPU Shading Language", + "text": "mat3x4", + "url": "https://www.w3.org/TR/WGSL/#mat3x4-builtin" + } + }, + "#mat4x2-builtin": { + "current": { + "number": "16.1.2.12", + "spec": "WebGPU Shading Language", + "text": "mat4x2", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat4x2-builtin" + }, + "snapshot": { + "number": "16.1.2.12", + "spec": "WebGPU Shading Language", + "text": "mat4x2", + "url": "https://www.w3.org/TR/WGSL/#mat4x2-builtin" + } + }, + "#mat4x3-builtin": { + "current": { + "number": "16.1.2.13", + "spec": "WebGPU Shading Language", + "text": "mat4x3", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat4x3-builtin" + }, + "snapshot": { + "number": "16.1.2.13", + "spec": "WebGPU Shading Language", + "text": "mat4x3", + "url": "https://www.w3.org/TR/WGSL/#mat4x3-builtin" + } + }, + "#mat4x4-builtin": { + "current": { + "number": "16.1.2.14", + "spec": "WebGPU Shading Language", + "text": "mat4x4", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#mat4x4-builtin" + }, + "snapshot": { + "number": "16.1.2.14", + "spec": "WebGPU Shading Language", + "text": "mat4x4", + "url": "https://www.w3.org/TR/WGSL/#mat4x4-builtin" + } + }, "#matrix-access-expr": { "current": { - "number": "7.7.2", + "number": "8.5.2", "spec": "WebGPU Shading Language", "text": "Matrix Access Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#matrix-access-expr" }, "snapshot": { - "number": "7.7.2", + "number": "8.5.2", "spec": "WebGPU Shading Language", "text": "Matrix Access Expression", "url": "https://www.w3.org/TR/WGSL/#matrix-access-expr" @@ -2353,13 +3095,13 @@ }, "#matrix-types": { "current": { - "number": "5.2.7", + "number": "6.2.7", "spec": "WebGPU Shading Language", "text": "Matrix Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#matrix-types" }, "snapshot": { - "number": "5.2.7", + "number": "6.2.7", "spec": "WebGPU Shading Language", "text": "Matrix Types", "url": "https://www.w3.org/TR/WGSL/#matrix-types" @@ -2367,13 +3109,13 @@ }, "#max-float-builtin": { "current": { - "number": "17.3.39", + "number": "16.5.41", "spec": "WebGPU Shading Language", "text": "max", "url": "https://gpuweb.github.io/gpuweb/wgsl/#max-float-builtin" }, "snapshot": { - "number": "17.3.39", + "number": "16.5.41", "spec": "WebGPU Shading Language", "text": "max", "url": "https://www.w3.org/TR/WGSL/#max-float-builtin" @@ -2437,13 +3179,13 @@ }, "#memory-model": { "current": { - "number": "13.6", + "number": "13.5", "spec": "WebGPU Shading Language", "text": "Memory Model", "url": "https://gpuweb.github.io/gpuweb/wgsl/#memory-model" }, "snapshot": { - "number": "13.6", + "number": "13.5", "spec": "WebGPU Shading Language", "text": "Memory Model", "url": "https://www.w3.org/TR/WGSL/#memory-model" @@ -2451,13 +3193,13 @@ }, "#memory-model-reference": { "current": { - "number": "13.6.2", + "number": "13.5.2", "spec": "WebGPU Shading Language", "text": "Memory Model Reference", "url": "https://gpuweb.github.io/gpuweb/wgsl/#memory-model-reference" }, "snapshot": { - "number": "13.6.2", + "number": "13.5.2", "spec": "WebGPU Shading Language", "text": "Memory Model Reference", "url": "https://www.w3.org/TR/WGSL/#memory-model-reference" @@ -2465,13 +3207,13 @@ }, "#memory-operation": { "current": { - "number": "13.6.1", + "number": "13.5.1", "spec": "WebGPU Shading Language", "text": "Memory Operation", "url": "https://gpuweb.github.io/gpuweb/wgsl/#memory-operation" }, "snapshot": { - "number": "13.6.1", + "number": "13.5.1", "spec": "WebGPU Shading Language", "text": "Memory Operation", "url": "https://www.w3.org/TR/WGSL/#memory-operation" @@ -2479,13 +3221,13 @@ }, "#memory-semantics": { "current": { - "number": "13.7", + "number": "13.5.4", "spec": "WebGPU Shading Language", "text": "Memory Semantics", "url": "https://gpuweb.github.io/gpuweb/wgsl/#memory-semantics" }, "snapshot": { - "number": "13.7", + "number": "13.5.4", "spec": "WebGPU Shading Language", "text": "Memory Semantics", "url": "https://www.w3.org/TR/WGSL/#memory-semantics" @@ -2493,13 +3235,13 @@ }, "#memory-views": { "current": { - "number": "5.3", + "number": "6.4", "spec": "WebGPU Shading Language", "text": "Memory Views", "url": "https://gpuweb.github.io/gpuweb/wgsl/#memory-views" }, "snapshot": { - "number": "5.3", + "number": "6.4", "spec": "WebGPU Shading Language", "text": "Memory Views", "url": "https://www.w3.org/TR/WGSL/#memory-views" @@ -2507,13 +3249,13 @@ }, "#min-float-builtin": { "current": { - "number": "17.3.40", + "number": "16.5.42", "spec": "WebGPU Shading Language", "text": "min", "url": "https://gpuweb.github.io/gpuweb/wgsl/#min-float-builtin" }, "snapshot": { - "number": "17.3.40", + "number": "16.5.42", "spec": "WebGPU Shading Language", "text": "min", "url": "https://www.w3.org/TR/WGSL/#min-float-builtin" @@ -2521,13 +3263,13 @@ }, "#mix-builtin": { "current": { - "number": "17.3.41", + "number": "16.5.43", "spec": "WebGPU Shading Language", "text": "mix", "url": "https://gpuweb.github.io/gpuweb/wgsl/#mix-builtin" }, "snapshot": { - "number": "17.3.41", + "number": "16.5.43", "spec": "WebGPU Shading Language", "text": "mix", "url": "https://www.w3.org/TR/WGSL/#mix-builtin" @@ -2535,13 +3277,13 @@ }, "#modf-builtin": { "current": { - "number": "17.3.42", + "number": "16.5.44", "spec": "WebGPU Shading Language", "text": "modf", "url": "https://gpuweb.github.io/gpuweb/wgsl/#modf-builtin" }, "snapshot": { - "number": "17.3.42", + "number": "16.5.44", "spec": "WebGPU Shading Language", "text": "modf", "url": "https://www.w3.org/TR/WGSL/#modf-builtin" @@ -2549,27 +3291,41 @@ }, "#multisampled-texture-type": { "current": { - "number": "5.4.3", + "number": "6.5.3", "spec": "WebGPU Shading Language", "text": "Multisampled Texture Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#multisampled-texture-type" }, "snapshot": { - "number": "5.4.3", + "number": "6.5.3", "spec": "WebGPU Shading Language", "text": "Multisampled Texture Types", "url": "https://www.w3.org/TR/WGSL/#multisampled-texture-type" } }, + "#must-use-attr": { + "current": { + "number": "11.12", + "spec": "WebGPU Shading Language", + "text": "must_use", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#must-use-attr" + }, + "snapshot": { + "number": "11.12", + "spec": "WebGPU Shading Language", + "text": "must_use", + "url": "https://www.w3.org/TR/WGSL/#must-use-attr" + } + }, "#normalize-builtin": { "current": { - "number": "17.3.43", + "number": "16.5.45", "spec": "WebGPU Shading Language", "text": "normalize", "url": "https://gpuweb.github.io/gpuweb/wgsl/#normalize-builtin" }, "snapshot": { - "number": "17.3.43", + "number": "16.5.45", "spec": "WebGPU Shading Language", "text": "normalize", "url": "https://www.w3.org/TR/WGSL/#normalize-builtin" @@ -2589,15 +3345,29 @@ "url": "https://www.w3.org/TR/WGSL/#normative" } }, + "#num-workgroups-index-builtin-value": { + "current": { + "number": "12.3.1.1.8", + "spec": "WebGPU Shading Language", + "text": "num_workgroups", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#num-workgroups-index-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.8", + "spec": "WebGPU Shading Language", + "text": "num_workgroups", + "url": "https://www.w3.org/TR/WGSL/#num-workgroups-index-builtin-value" + } + }, "#numeric-builtin-functions": { "current": { - "number": "17.3", + "number": "16.5", "spec": "WebGPU Shading Language", "text": "Numeric Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#numeric-builtin-functions" }, "snapshot": { - "number": "17.3", + "number": "16.5", "spec": "WebGPU Shading Language", "text": "Numeric Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#numeric-builtin-functions" @@ -2619,13 +3389,13 @@ }, "#operator-precedence-associativity": { "current": { - "number": "7.19", + "number": "8.19", "spec": "WebGPU Shading Language", "text": "Operator Precedence and Associativity", "url": "https://gpuweb.github.io/gpuweb/wgsl/#operator-precedence-associativity" }, "snapshot": { - "number": "7.19", + "number": "8.19", "spec": "WebGPU Shading Language", "text": "Operator Precedence and Associativity", "url": "https://www.w3.org/TR/WGSL/#operator-precedence-associativity" @@ -2633,41 +3403,41 @@ }, "#originating-variable-section": { "current": { - "number": "5.3.4", + "number": "6.4.5", "spec": "WebGPU Shading Language", "text": "Originating Variable", "url": "https://gpuweb.github.io/gpuweb/wgsl/#originating-variable-section" }, "snapshot": { - "number": "5.3.4", + "number": "6.4.5", "spec": "WebGPU Shading Language", "text": "Originating Variable", "url": "https://www.w3.org/TR/WGSL/#originating-variable-section" } }, - "#other-keywords": { + "#out-of-bounds-access-sec": { "current": { - "number": "15.1.2", + "number": "6.4.6", "spec": "WebGPU Shading Language", - "text": "Other Keywords", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#other-keywords" + "text": "Out-of-Bounds Access", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#out-of-bounds-access-sec" }, "snapshot": { - "number": "15.1.2", + "number": "6.4.6", "spec": "WebGPU Shading Language", - "text": "Other Keywords", - "url": "https://www.w3.org/TR/WGSL/#other-keywords" + "text": "Out-of-Bounds Access", + "url": "https://www.w3.org/TR/WGSL/#out-of-bounds-access-sec" } }, "#overload-resolution-section": { "current": { - "number": "5.1.3", + "number": "6.1.3", "spec": "WebGPU Shading Language", "text": "Overload Resolution", "url": "https://gpuweb.github.io/gpuweb/wgsl/#overload-resolution-section" }, "snapshot": { - "number": "5.1.3", + "number": "6.1.3", "spec": "WebGPU Shading Language", "text": "Overload Resolution", "url": "https://www.w3.org/TR/WGSL/#overload-resolution-section" @@ -2675,13 +3445,13 @@ }, "#override-decls": { "current": { - "number": "6.2.2", + "number": "7.2.2", "spec": "WebGPU Shading Language", "text": "override Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#override-decls" }, "snapshot": { - "number": "6.2.2", + "number": "7.2.2", "spec": "WebGPU Shading Language", "text": "override Declarations", "url": "https://www.w3.org/TR/WGSL/#override-decls" @@ -2689,27 +3459,41 @@ }, "#override-expr": { "current": { - "number": "7.1.2", + "number": "8.1.2", "spec": "WebGPU Shading Language", "text": "override Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#override-expr" }, "snapshot": { - "number": "7.1.2", + "number": "8.1.2", "spec": "WebGPU Shading Language", "text": "override Expressions", "url": "https://www.w3.org/TR/WGSL/#override-expr" } }, + "#overview": { + "current": { + "number": "1.1", + "spec": "WebGPU Shading Language", + "text": "Overview", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#overview" + }, + "snapshot": { + "number": "1.1", + "spec": "WebGPU Shading Language", + "text": "Overview", + "url": "https://www.w3.org/TR/WGSL/#overview" + } + }, "#pack-builtin-functions": { "current": { - "number": "17.7", + "number": "16.9", "spec": "WebGPU Shading Language", "text": "Data Packing Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack-builtin-functions" }, "snapshot": { - "number": "17.7", + "number": "16.9", "spec": "WebGPU Shading Language", "text": "Data Packing Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#pack-builtin-functions" @@ -2717,83 +3501,139 @@ }, "#pack2x16float-builtin": { "current": { - "number": "17.7.5", + "number": "16.9.9", "spec": "WebGPU Shading Language", "text": "pack2x16float", "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack2x16float-builtin" }, "snapshot": { - "number": "17.7.5", + "number": "16.9.9", + "spec": "WebGPU Shading Language", + "text": "pack2x16float", + "url": "https://www.w3.org/TR/WGSL/#pack2x16float-builtin" + } + }, + "#pack2x16snorm-builtin": { + "current": { + "number": "16.9.7", + "spec": "WebGPU Shading Language", + "text": "pack2x16snorm", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack2x16snorm-builtin" + }, + "snapshot": { + "number": "16.9.7", + "spec": "WebGPU Shading Language", + "text": "pack2x16snorm", + "url": "https://www.w3.org/TR/WGSL/#pack2x16snorm-builtin" + } + }, + "#pack2x16unorm-builtin": { + "current": { + "number": "16.9.8", + "spec": "WebGPU Shading Language", + "text": "pack2x16unorm", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack2x16unorm-builtin" + }, + "snapshot": { + "number": "16.9.8", + "spec": "WebGPU Shading Language", + "text": "pack2x16unorm", + "url": "https://www.w3.org/TR/WGSL/#pack2x16unorm-builtin" + } + }, + "#pack4x8snorm-builtin": { + "current": { + "number": "16.9.1", + "spec": "WebGPU Shading Language", + "text": "pack4x8snorm", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4x8snorm-builtin" + }, + "snapshot": { + "number": "16.9.1", + "spec": "WebGPU Shading Language", + "text": "pack4x8snorm", + "url": "https://www.w3.org/TR/WGSL/#pack4x8snorm-builtin" + } + }, + "#pack4x8unorm-builtin": { + "current": { + "number": "16.9.2", + "spec": "WebGPU Shading Language", + "text": "pack4x8unorm", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4x8unorm-builtin" + }, + "snapshot": { + "number": "16.9.2", "spec": "WebGPU Shading Language", - "text": "pack2x16float", - "url": "https://www.w3.org/TR/WGSL/#pack2x16float-builtin" + "text": "pack4x8unorm", + "url": "https://www.w3.org/TR/WGSL/#pack4x8unorm-builtin" } }, - "#pack2x16snorm-builtin": { + "#pack4xI8-builtin": { "current": { - "number": "17.7.3", + "number": "16.9.3", "spec": "WebGPU Shading Language", - "text": "pack2x16snorm", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack2x16snorm-builtin" + "text": "pack4xI8", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4xI8-builtin" }, "snapshot": { - "number": "17.7.3", + "number": "16.9.3", "spec": "WebGPU Shading Language", - "text": "pack2x16snorm", - "url": "https://www.w3.org/TR/WGSL/#pack2x16snorm-builtin" + "text": "pack4xI8", + "url": "https://www.w3.org/TR/WGSL/#pack4xI8-builtin" } }, - "#pack2x16unorm-builtin": { + "#pack4xI8Clamp-builtin": { "current": { - "number": "17.7.4", + "number": "16.9.5", "spec": "WebGPU Shading Language", - "text": "pack2x16unorm", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack2x16unorm-builtin" + "text": "pack4xI8Clamp", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4xI8Clamp-builtin" }, "snapshot": { - "number": "17.7.4", + "number": "16.9.5", "spec": "WebGPU Shading Language", - "text": "pack2x16unorm", - "url": "https://www.w3.org/TR/WGSL/#pack2x16unorm-builtin" + "text": "pack4xI8Clamp", + "url": "https://www.w3.org/TR/WGSL/#pack4xI8Clamp-builtin" } }, - "#pack4x8snorm-builtin": { + "#pack4xU8-builtin": { "current": { - "number": "17.7.1", + "number": "16.9.4", "spec": "WebGPU Shading Language", - "text": "pack4x8snorm", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4x8snorm-builtin" + "text": "pack4xU8", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4xU8-builtin" }, "snapshot": { - "number": "17.7.1", + "number": "16.9.4", "spec": "WebGPU Shading Language", - "text": "pack4x8snorm", - "url": "https://www.w3.org/TR/WGSL/#pack4x8snorm-builtin" + "text": "pack4xU8", + "url": "https://www.w3.org/TR/WGSL/#pack4xU8-builtin" } }, - "#pack4x8unorm-builtin": { + "#pack4xU8Clamp-builtin": { "current": { - "number": "17.7.2", + "number": "16.9.6", "spec": "WebGPU Shading Language", - "text": "pack4x8unorm", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4x8unorm-builtin" + "text": "pack4xU8Clamp", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#pack4xU8Clamp-builtin" }, "snapshot": { - "number": "17.7.2", + "number": "16.9.6", "spec": "WebGPU Shading Language", - "text": "pack4x8unorm", - "url": "https://www.w3.org/TR/WGSL/#pack4x8unorm-builtin" + "text": "pack4xU8Clamp", + "url": "https://www.w3.org/TR/WGSL/#pack4xU8Clamp-builtin" } }, "#parenthesized-expressions": { "current": { - "number": "7.4", + "number": "8.4", "spec": "WebGPU Shading Language", "text": "Parenthesized Expressions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#parenthesized-expressions" }, "snapshot": { - "number": "7.4", + "number": "8.4", "spec": "WebGPU Shading Language", "text": "Parenthesized Expressions", "url": "https://www.w3.org/TR/WGSL/#parenthesized-expressions" @@ -2815,13 +3655,13 @@ }, "#phony-assignment-section": { "current": { - "number": "8.2.2", + "number": "9.2.2", "spec": "WebGPU Shading Language", "text": "Phony Assignment", "url": "https://gpuweb.github.io/gpuweb/wgsl/#phony-assignment-section" }, "snapshot": { - "number": "8.2.2", + "number": "9.2.2", "spec": "WebGPU Shading Language", "text": "Phony Assignment", "url": "https://www.w3.org/TR/WGSL/#phony-assignment-section" @@ -2829,13 +3669,13 @@ }, "#plain-types-section": { "current": { - "number": "5.2", + "number": "6.2", "spec": "WebGPU Shading Language", "text": "Plain Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#plain-types-section" }, "snapshot": { - "number": "5.2", + "number": "6.2", "spec": "WebGPU Shading Language", "text": "Plain Types", "url": "https://www.w3.org/TR/WGSL/#plain-types-section" @@ -2857,58 +3697,86 @@ }, "#pointers-other-languages": { "current": { - "number": "5.3.8", + "number": "6.4.9", "spec": "WebGPU Shading Language", "text": "Comparison with References and Pointers in Other Languages", "url": "https://gpuweb.github.io/gpuweb/wgsl/#pointers-other-languages" }, "snapshot": { - "number": "5.3.8", + "number": "6.4.9", "spec": "WebGPU Shading Language", "text": "Comparison with References and Pointers in Other Languages", "url": "https://www.w3.org/TR/WGSL/#pointers-other-languages" } }, + "#position-builtin-value": { + "current": { + "number": "12.3.1.1.9", + "spec": "WebGPU Shading Language", + "text": "position", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#position-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.9", + "spec": "WebGPU Shading Language", + "text": "position", + "url": "https://www.w3.org/TR/WGSL/#position-builtin-value" + } + }, "#pow-builtin": { "current": { - "number": "17.3.44", + "number": "16.5.46", "spec": "WebGPU Shading Language", "text": "pow", "url": "https://gpuweb.github.io/gpuweb/wgsl/#pow-builtin" }, "snapshot": { - "number": "17.3.44", + "number": "16.5.46", "spec": "WebGPU Shading Language", "text": "pow", "url": "https://www.w3.org/TR/WGSL/#pow-builtin" } }, - "#private-vs-non-private": { + "#predeclared-enumerants": { "current": { - "number": "13.7.1", + "number": "6.3.1", "spec": "WebGPU Shading Language", - "text": "Private vs Non-private", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#private-vs-non-private" + "text": "Predeclared enumerants", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#predeclared-enumerants" }, "snapshot": { - "number": "13.7.1", + "number": "6.3.1", "spec": "WebGPU Shading Language", - "text": "Private vs Non-private", - "url": "https://www.w3.org/TR/WGSL/#private-vs-non-private" + "text": "Predeclared enumerants", + "url": "https://www.w3.org/TR/WGSL/#predeclared-enumerants" } }, - "#processing-errors": { + "#predeclared-types": { "current": { - "number": "2.1", + "number": "6.9", "spec": "WebGPU Shading Language", - "text": "Processing Errors", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#processing-errors" + "text": "Predeclared Types and Type-Generators Summary", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#predeclared-types" }, "snapshot": { - "number": "2.1", + "number": "6.9", + "spec": "WebGPU Shading Language", + "text": "Predeclared Types and Type-Generators Summary", + "url": "https://www.w3.org/TR/WGSL/#predeclared-types" + } + }, + "#private-vs-non-private": { + "current": { + "number": "13.5.5", + "spec": "WebGPU Shading Language", + "text": "Private vs Non-private", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#private-vs-non-private" + }, + "snapshot": { + "number": "13.5.5", "spec": "WebGPU Shading Language", - "text": "Processing Errors", - "url": "https://www.w3.org/TR/WGSL/#processing-errors" + "text": "Private vs Non-private", + "url": "https://www.w3.org/TR/WGSL/#private-vs-non-private" } }, "#program-order": { @@ -2927,13 +3795,13 @@ }, "#quantizeToF16-builtin": { "current": { - "number": "17.3.45", + "number": "16.5.47", "spec": "WebGPU Shading Language", "text": "quantizeToF16", "url": "https://gpuweb.github.io/gpuweb/wgsl/#quantizeToF16-builtin" }, "snapshot": { - "number": "17.3.45", + "number": "16.5.47", "spec": "WebGPU Shading Language", "text": "quantizeToF16", "url": "https://www.w3.org/TR/WGSL/#quantizeToF16-builtin" @@ -2941,27 +3809,41 @@ }, "#radians-builtin": { "current": { - "number": "17.3.46", + "number": "16.5.48", "spec": "WebGPU Shading Language", "text": "radians", "url": "https://gpuweb.github.io/gpuweb/wgsl/#radians-builtin" }, "snapshot": { - "number": "17.3.46", + "number": "16.5.48", "spec": "WebGPU Shading Language", "text": "radians", "url": "https://www.w3.org/TR/WGSL/#radians-builtin" } }, + "#reassociation-and-fusion": { + "current": { + "number": "14.6.3", + "spec": "WebGPU Shading Language", + "text": "Reassociation and Fusion", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#reassociation-and-fusion" + }, + "snapshot": { + "number": "14.6.3", + "spec": "WebGPU Shading Language", + "text": "Reassociation and Fusion", + "url": "https://www.w3.org/TR/WGSL/#reassociation-and-fusion" + } + }, "#ref-ptr-types": { "current": { - "number": "5.3.3", + "number": "6.4.3", "spec": "WebGPU Shading Language", "text": "Reference and Pointer Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#ref-ptr-types" }, "snapshot": { - "number": "5.3.3", + "number": "6.4.3", "spec": "WebGPU Shading Language", "text": "Reference and Pointer Types", "url": "https://www.w3.org/TR/WGSL/#ref-ptr-types" @@ -2969,13 +3851,13 @@ }, "#ref-ptr-use-cases": { "current": { - "number": "5.3.6", + "number": "6.4.7", "spec": "WebGPU Shading Language", "text": "Use Cases for References and Pointers", "url": "https://gpuweb.github.io/gpuweb/wgsl/#ref-ptr-use-cases" }, "snapshot": { - "number": "5.3.6", + "number": "6.4.7", "spec": "WebGPU Shading Language", "text": "Use Cases for References and Pointers", "url": "https://www.w3.org/TR/WGSL/#ref-ptr-use-cases" @@ -2997,13 +3879,13 @@ }, "#reflect-builtin": { "current": { - "number": "17.3.47", + "number": "16.5.49", "spec": "WebGPU Shading Language", "text": "reflect", "url": "https://gpuweb.github.io/gpuweb/wgsl/#reflect-builtin" }, "snapshot": { - "number": "17.3.47", + "number": "16.5.49", "spec": "WebGPU Shading Language", "text": "reflect", "url": "https://www.w3.org/TR/WGSL/#reflect-builtin" @@ -3011,13 +3893,13 @@ }, "#refract-builtin": { "current": { - "number": "17.3.48", + "number": "16.5.50", "spec": "WebGPU Shading Language", "text": "refract", "url": "https://gpuweb.github.io/gpuweb/wgsl/#refract-builtin" }, "snapshot": { - "number": "17.3.48", + "number": "16.5.50", "spec": "WebGPU Shading Language", "text": "refract", "url": "https://www.w3.org/TR/WGSL/#refract-builtin" @@ -3039,13 +3921,13 @@ }, "#resource-interface": { "current": { - "number": "10.3.2", + "number": "12.3.2", "spec": "WebGPU Shading Language", "text": "Resource Interface", "url": "https://gpuweb.github.io/gpuweb/wgsl/#resource-interface" }, "snapshot": { - "number": "10.3.2", + "number": "12.3.2", "spec": "WebGPU Shading Language", "text": "Resource Interface", "url": "https://www.w3.org/TR/WGSL/#resource-interface" @@ -3053,13 +3935,13 @@ }, "#resource-layout-compatibility": { "current": { - "number": "10.3.3", + "number": "12.3.3", "spec": "WebGPU Shading Language", "text": "Resource Layout Compatibility", "url": "https://gpuweb.github.io/gpuweb/wgsl/#resource-layout-compatibility" }, "snapshot": { - "number": "10.3.3", + "number": "12.3.3", "spec": "WebGPU Shading Language", "text": "Resource Layout Compatibility", "url": "https://www.w3.org/TR/WGSL/#resource-layout-compatibility" @@ -3067,13 +3949,13 @@ }, "#return-statement": { "current": { - "number": "8.4.10", + "number": "9.4.10", "spec": "WebGPU Shading Language", "text": "Return Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#return-statement" }, "snapshot": { - "number": "8.4.10", + "number": "9.4.10", "spec": "WebGPU Shading Language", "text": "Return Statement", "url": "https://www.w3.org/TR/WGSL/#return-statement" @@ -3081,13 +3963,13 @@ }, "#reverseBits-builtin": { "current": { - "number": "17.3.49", + "number": "16.5.51", "spec": "WebGPU Shading Language", "text": "reverseBits", "url": "https://gpuweb.github.io/gpuweb/wgsl/#reverseBits-builtin" }, "snapshot": { - "number": "17.3.49", + "number": "16.5.51", "spec": "WebGPU Shading Language", "text": "reverseBits", "url": "https://www.w3.org/TR/WGSL/#reverseBits-builtin" @@ -3095,13 +3977,13 @@ }, "#root-ident-sec": { "current": { - "number": "9.4.1.1", + "number": "10.4.1.1", "spec": "WebGPU Shading Language", "text": "Root Identifier", "url": "https://gpuweb.github.io/gpuweb/wgsl/#root-ident-sec" }, "snapshot": { - "number": "9.4.1.1", + "number": "10.4.1.1", "spec": "WebGPU Shading Language", "text": "Root Identifier", "url": "https://www.w3.org/TR/WGSL/#root-ident-sec" @@ -3109,27 +3991,55 @@ }, "#round-builtin": { "current": { - "number": "17.3.50", + "number": "16.5.52", "spec": "WebGPU Shading Language", "text": "round", "url": "https://gpuweb.github.io/gpuweb/wgsl/#round-builtin" }, "snapshot": { - "number": "17.3.50", + "number": "16.5.52", "spec": "WebGPU Shading Language", "text": "round", "url": "https://www.w3.org/TR/WGSL/#round-builtin" } }, + "#sample-index-builtin-value": { + "current": { + "number": "12.3.1.1.10", + "spec": "WebGPU Shading Language", + "text": "sample_index", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#sample-index-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.10", + "spec": "WebGPU Shading Language", + "text": "sample_index", + "url": "https://www.w3.org/TR/WGSL/#sample-index-builtin-value" + } + }, + "#sample-mask-builtin-value": { + "current": { + "number": "12.3.1.1.11", + "spec": "WebGPU Shading Language", + "text": "sample_mask", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#sample-mask-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.11", + "spec": "WebGPU Shading Language", + "text": "sample_mask", + "url": "https://www.w3.org/TR/WGSL/#sample-mask-builtin-value" + } + }, "#sampled-texture-type": { "current": { - "number": "5.4.2", + "number": "6.5.2", "spec": "WebGPU Shading Language", "text": "Sampled Texture Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sampled-texture-type" }, "snapshot": { - "number": "5.4.2", + "number": "6.5.2", "spec": "WebGPU Shading Language", "text": "Sampled Texture Types", "url": "https://www.w3.org/TR/WGSL/#sampled-texture-type" @@ -3137,13 +4047,13 @@ }, "#sampler-type": { "current": { - "number": "5.4.7", + "number": "6.5.7", "spec": "WebGPU Shading Language", "text": "Sampler Type", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sampler-type" }, "snapshot": { - "number": "5.4.7", + "number": "6.5.7", "spec": "WebGPU Shading Language", "text": "Sampler Type", "url": "https://www.w3.org/TR/WGSL/#sampler-type" @@ -3151,13 +4061,13 @@ }, "#saturate-float-builtin": { "current": { - "number": "17.3.51", + "number": "16.5.53", "spec": "WebGPU Shading Language", "text": "saturate", "url": "https://gpuweb.github.io/gpuweb/wgsl/#saturate-float-builtin" }, "snapshot": { - "number": "17.3.51", + "number": "16.5.53", "spec": "WebGPU Shading Language", "text": "saturate", "url": "https://www.w3.org/TR/WGSL/#saturate-float-builtin" @@ -3165,13 +4075,13 @@ }, "#scalar-types": { "current": { - "number": "5.2.5", + "number": "6.2.5", "spec": "WebGPU Shading Language", "text": "Scalar Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#scalar-types" }, "snapshot": { - "number": "5.2.5", + "number": "6.2.5", "spec": "WebGPU Shading Language", "text": "Scalar Types", "url": "https://www.w3.org/TR/WGSL/#scalar-types" @@ -3179,13 +4089,13 @@ }, "#scoped-operations": { "current": { - "number": "13.6.3", + "number": "13.5.3", "spec": "WebGPU Shading Language", "text": "Scoped Operations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#scoped-operations" }, "snapshot": { - "number": "13.6.3", + "number": "13.5.3", "spec": "WebGPU Shading Language", "text": "Scoped Operations", "url": "https://www.w3.org/TR/WGSL/#scoped-operations" @@ -3193,13 +4103,13 @@ }, "#select-builtin": { "current": { - "number": "17.1.3", + "number": "16.3.3", "spec": "WebGPU Shading Language", "text": "select", "url": "https://gpuweb.github.io/gpuweb/wgsl/#select-builtin" }, "snapshot": { - "number": "17.1.3", + "number": "16.3.3", "spec": "WebGPU Shading Language", "text": "select", "url": "https://www.w3.org/TR/WGSL/#select-builtin" @@ -3207,13 +4117,13 @@ }, "#shader-interface": { "current": { - "number": "10.3", + "number": "12.3", "spec": "WebGPU Shading Language", "text": "Shader Interface", "url": "https://gpuweb.github.io/gpuweb/wgsl/#shader-interface" }, "snapshot": { - "number": "10.3", + "number": "12.3", "spec": "WebGPU Shading Language", "text": "Shader Interface", "url": "https://www.w3.org/TR/WGSL/#shader-interface" @@ -3221,27 +4131,41 @@ }, "#shader-lifecycle": { "current": { - "number": "2", + "number": "2.1", "spec": "WebGPU Shading Language", "text": "Shader Lifecycle", "url": "https://gpuweb.github.io/gpuweb/wgsl/#shader-lifecycle" }, "snapshot": { - "number": "2", + "number": "2.1", "spec": "WebGPU Shading Language", "text": "Shader Lifecycle", "url": "https://www.w3.org/TR/WGSL/#shader-lifecycle" } }, + "#shader-stage-attr": { + "current": { + "number": "11.15", + "spec": "WebGPU Shading Language", + "text": "Shader Stage Attributes", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#shader-stage-attr" + }, + "snapshot": { + "number": "11.15", + "spec": "WebGPU Shading Language", + "text": "Shader Stage Attributes", + "url": "https://www.w3.org/TR/WGSL/#shader-stage-attr" + } + }, "#shader-stages-sec": { "current": { - "number": "10.1", + "number": "12.1", "spec": "WebGPU Shading Language", "text": "Shader Stages", "url": "https://gpuweb.github.io/gpuweb/wgsl/#shader-stages-sec" }, "snapshot": { - "number": "10.1", + "number": "12.1", "spec": "WebGPU Shading Language", "text": "Shader Stages", "url": "https://www.w3.org/TR/WGSL/#shader-stages-sec" @@ -3249,13 +4173,13 @@ }, "#sign-builtin": { "current": { - "number": "17.3.52", + "number": "16.5.54", "spec": "WebGPU Shading Language", "text": "sign", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sign-builtin" }, "snapshot": { - "number": "17.3.52", + "number": "16.5.54", "spec": "WebGPU Shading Language", "text": "sign", "url": "https://www.w3.org/TR/WGSL/#sign-builtin" @@ -3263,13 +4187,13 @@ }, "#simple-assignment-section": { "current": { - "number": "8.2.1", + "number": "9.2.1", "spec": "WebGPU Shading Language", "text": "Simple Assignment", "url": "https://gpuweb.github.io/gpuweb/wgsl/#simple-assignment-section" }, "snapshot": { - "number": "8.2.1", + "number": "9.2.1", "spec": "WebGPU Shading Language", "text": "Simple Assignment", "url": "https://www.w3.org/TR/WGSL/#simple-assignment-section" @@ -3277,13 +4201,13 @@ }, "#sin-builtin": { "current": { - "number": "17.3.53", + "number": "16.5.55", "spec": "WebGPU Shading Language", "text": "sin", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sin-builtin" }, "snapshot": { - "number": "17.3.53", + "number": "16.5.55", "spec": "WebGPU Shading Language", "text": "sin", "url": "https://www.w3.org/TR/WGSL/#sin-builtin" @@ -3291,27 +4215,41 @@ }, "#sinh-builtin": { "current": { - "number": "17.3.54", + "number": "16.5.56", "spec": "WebGPU Shading Language", "text": "sinh", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sinh-builtin" }, "snapshot": { - "number": "17.3.54", + "number": "16.5.56", "spec": "WebGPU Shading Language", "text": "sinh", "url": "https://www.w3.org/TR/WGSL/#sinh-builtin" } }, + "#size-attr": { + "current": { + "number": "11.13", + "spec": "WebGPU Shading Language", + "text": "size", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#size-attr" + }, + "snapshot": { + "number": "11.13", + "spec": "WebGPU Shading Language", + "text": "size", + "url": "https://www.w3.org/TR/WGSL/#size-attr" + } + }, "#smoothstep-builtin": { "current": { - "number": "17.3.55", + "number": "16.5.57", "spec": "WebGPU Shading Language", "text": "smoothstep", "url": "https://gpuweb.github.io/gpuweb/wgsl/#smoothstep-builtin" }, "snapshot": { - "number": "17.3.55", + "number": "16.5.57", "spec": "WebGPU Shading Language", "text": "smoothstep", "url": "https://www.w3.org/TR/WGSL/#smoothstep-builtin" @@ -3333,13 +4271,13 @@ }, "#sqrt-builtin": { "current": { - "number": "17.3.56", + "number": "16.5.58", "spec": "WebGPU Shading Language", "text": "sqrt", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sqrt-builtin" }, "snapshot": { - "number": "17.3.56", + "number": "16.5.58", "spec": "WebGPU Shading Language", "text": "sqrt", "url": "https://www.w3.org/TR/WGSL/#sqrt-builtin" @@ -3347,13 +4285,13 @@ }, "#stage-inputs-outputs": { "current": { - "number": "10.3.1", + "number": "12.3.1", "spec": "WebGPU Shading Language", "text": "Inter-stage Input and Output Interface", "url": "https://gpuweb.github.io/gpuweb/wgsl/#stage-inputs-outputs" }, "snapshot": { - "number": "10.3.1", + "number": "12.3.1", "spec": "WebGPU Shading Language", "text": "Inter-stage Input and Output Interface", "url": "https://www.w3.org/TR/WGSL/#stage-inputs-outputs" @@ -3361,13 +4299,13 @@ }, "#statements": { "current": { - "number": "8", + "number": "9", "spec": "WebGPU Shading Language", "text": "Statements", "url": "https://gpuweb.github.io/gpuweb/wgsl/#statements" }, "snapshot": { - "number": "8", + "number": "9", "spec": "WebGPU Shading Language", "text": "Statements", "url": "https://www.w3.org/TR/WGSL/#statements" @@ -3375,13 +4313,13 @@ }, "#statements-summary": { "current": { - "number": "8.7", + "number": "9.7", "spec": "WebGPU Shading Language", "text": "Statements Grammar Summary", "url": "https://gpuweb.github.io/gpuweb/wgsl/#statements-summary" }, "snapshot": { - "number": "8.7", + "number": "9.7", "spec": "WebGPU Shading Language", "text": "Statements Grammar Summary", "url": "https://www.w3.org/TR/WGSL/#statements-summary" @@ -3389,13 +4327,13 @@ }, "#step-builtin": { "current": { - "number": "17.3.57", + "number": "16.5.59", "spec": "WebGPU Shading Language", "text": "step", "url": "https://gpuweb.github.io/gpuweb/wgsl/#step-builtin" }, "snapshot": { - "number": "17.3.57", + "number": "16.5.59", "spec": "WebGPU Shading Language", "text": "step", "url": "https://www.w3.org/TR/WGSL/#step-builtin" @@ -3403,13 +4341,13 @@ }, "#storable-types": { "current": { - "number": "5.3.1", + "number": "6.4.1", "spec": "WebGPU Shading Language", "text": "Storable Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#storable-types" }, "snapshot": { - "number": "5.3.1", + "number": "6.4.1", "spec": "WebGPU Shading Language", "text": "Storable Types", "url": "https://www.w3.org/TR/WGSL/#storable-types" @@ -3417,13 +4355,13 @@ }, "#storageBarrier-builtin": { "current": { - "number": "17.9.1", + "number": "16.11.1", "spec": "WebGPU Shading Language", "text": "storageBarrier", "url": "https://gpuweb.github.io/gpuweb/wgsl/#storageBarrier-builtin" }, "snapshot": { - "number": "17.9.1", + "number": "16.11.1", "spec": "WebGPU Shading Language", "text": "storageBarrier", "url": "https://www.w3.org/TR/WGSL/#storageBarrier-builtin" @@ -3431,13 +4369,13 @@ }, "#struct-access-expr": { "current": { - "number": "7.7.4", + "number": "8.5.4", "spec": "WebGPU Shading Language", "text": "Structure Access Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#struct-access-expr" }, "snapshot": { - "number": "7.7.4", + "number": "8.5.4", "spec": "WebGPU Shading Language", "text": "Structure Access Expression", "url": "https://www.w3.org/TR/WGSL/#struct-access-expr" @@ -3445,13 +4383,13 @@ }, "#struct-types": { "current": { - "number": "5.2.10", + "number": "6.2.10", "spec": "WebGPU Shading Language", "text": "Structure Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#struct-types" }, "snapshot": { - "number": "5.2.10", + "number": "6.2.10", "spec": "WebGPU Shading Language", "text": "Structure Types", "url": "https://www.w3.org/TR/WGSL/#struct-types" @@ -3471,29 +4409,57 @@ "url": "https://www.w3.org/TR/WGSL/#structure-member-layout" } }, + "#structures-builtin": { + "current": { + "number": "16.1.2.15", + "spec": "WebGPU Shading Language", + "text": "Structures", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#structures-builtin" + }, + "snapshot": { + "number": "16.1.2.15", + "spec": "WebGPU Shading Language", + "text": "Structures", + "url": "https://www.w3.org/TR/WGSL/#structures-builtin" + } + }, "#switch-statement": { "current": { - "number": "8.4.2", + "number": "9.4.2", "spec": "WebGPU Shading Language", "text": "Switch Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#switch-statement" }, "snapshot": { - "number": "8.4.2", + "number": "9.4.2", "spec": "WebGPU Shading Language", "text": "Switch Statement", "url": "https://www.w3.org/TR/WGSL/#switch-statement" } }, + "#swizzle-names": { + "current": { + "number": "3.8.8", + "spec": "WebGPU Shading Language", + "text": "Swizzle Names", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#swizzle-names" + }, + "snapshot": { + "number": "3.8.8", + "spec": "WebGPU Shading Language", + "text": "Swizzle Names", + "url": "https://www.w3.org/TR/WGSL/#swizzle-names" + } + }, "#sync-builtin-functions": { "current": { - "number": "17.9", + "number": "16.11", "spec": "WebGPU Shading Language", "text": "Synchronization Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#sync-builtin-functions" }, "snapshot": { - "number": "17.9", + "number": "16.11", "spec": "WebGPU Shading Language", "text": "Synchronization Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#sync-builtin-functions" @@ -3529,13 +4495,13 @@ }, "#tan-builtin": { "current": { - "number": "17.3.58", + "number": "16.5.60", "spec": "WebGPU Shading Language", "text": "tan", "url": "https://gpuweb.github.io/gpuweb/wgsl/#tan-builtin" }, "snapshot": { - "number": "17.3.58", + "number": "16.5.60", "spec": "WebGPU Shading Language", "text": "tan", "url": "https://www.w3.org/TR/WGSL/#tan-builtin" @@ -3543,32 +4509,18 @@ }, "#tanh-builtin": { "current": { - "number": "17.3.59", + "number": "16.5.61", "spec": "WebGPU Shading Language", "text": "tanh", "url": "https://gpuweb.github.io/gpuweb/wgsl/#tanh-builtin" }, "snapshot": { - "number": "17.3.59", + "number": "16.5.61", "spec": "WebGPU Shading Language", "text": "tanh", "url": "https://www.w3.org/TR/WGSL/#tanh-builtin" } }, - "#technical-overview": { - "current": { - "number": "1.1", - "spec": "WebGPU Shading Language", - "text": "Technical Overview", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#technical-overview" - }, - "snapshot": { - "number": "1.1", - "spec": "WebGPU Shading Language", - "text": "Technical Overview", - "url": "https://www.w3.org/TR/WGSL/#technical-overview" - } - }, "#template-lists-sec": { "current": { "number": "3.9", @@ -3599,13 +4551,13 @@ }, "#texel-formats": { "current": { - "number": "5.4.1", + "number": "6.5.1", "spec": "WebGPU Shading Language", "text": "Texel Formats", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texel-formats" }, "snapshot": { - "number": "5.4.1", + "number": "6.5.1", "spec": "WebGPU Shading Language", "text": "Texel Formats", "url": "https://www.w3.org/TR/WGSL/#texel-formats" @@ -3613,15 +4565,15 @@ }, "#text-wgsl-media-type": { "current": { - "number": "", + "number": "A", "spec": "WebGPU Shading Language", - "text": "Appendix A: The text/wgsl Media Type", + "text": "The text/wgsl Media Type", "url": "https://gpuweb.github.io/gpuweb/wgsl/#text-wgsl-media-type" }, "snapshot": { - "number": "", + "number": "A", "spec": "WebGPU Shading Language", - "text": "Appendix A: The text/wgsl Media Type", + "text": "The text/wgsl Media Type", "url": "https://www.w3.org/TR/WGSL/#text-wgsl-media-type" } }, @@ -3639,29 +4591,15 @@ "url": "https://www.w3.org/TR/WGSL/#textual-structure" } }, - "#texture-and-sampler-types-grammar": { - "current": { - "number": "5.4.8", - "spec": "WebGPU Shading Language", - "text": "Texture and Sampler Types Grammar", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#texture-and-sampler-types-grammar" - }, - "snapshot": { - "number": "5.4.8", - "spec": "WebGPU Shading Language", - "text": "Texture and Sampler Types Grammar", - "url": "https://www.w3.org/TR/WGSL/#texture-and-sampler-types-grammar" - } - }, "#texture-builtin-functions": { "current": { - "number": "17.5", + "number": "16.7", "spec": "WebGPU Shading Language", "text": "Texture Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texture-builtin-functions" }, "snapshot": { - "number": "17.5", + "number": "16.7", "spec": "WebGPU Shading Language", "text": "Texture Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#texture-builtin-functions" @@ -3669,13 +4607,13 @@ }, "#texture-depth": { "current": { - "number": "5.4.6", + "number": "6.5.6", "spec": "WebGPU Shading Language", "text": "Depth Texture Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texture-depth" }, "snapshot": { - "number": "5.4.6", + "number": "6.5.6", "spec": "WebGPU Shading Language", "text": "Depth Texture Types", "url": "https://www.w3.org/TR/WGSL/#texture-depth" @@ -3683,13 +4621,13 @@ }, "#texture-sampler-types": { "current": { - "number": "5.4", + "number": "6.5", "spec": "WebGPU Shading Language", "text": "Texture and Sampler Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texture-sampler-types" }, "snapshot": { - "number": "5.4", + "number": "6.5", "spec": "WebGPU Shading Language", "text": "Texture and Sampler Types", "url": "https://www.w3.org/TR/WGSL/#texture-sampler-types" @@ -3697,27 +4635,41 @@ }, "#texture-storage": { "current": { - "number": "5.4.5", + "number": "6.5.5", "spec": "WebGPU Shading Language", "text": "Storage Texture Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texture-storage" }, "snapshot": { - "number": "5.4.5", + "number": "6.5.5", "spec": "WebGPU Shading Language", "text": "Storage Texture Types", "url": "https://www.w3.org/TR/WGSL/#texture-storage" } }, + "#textureBarrier-builtin": { + "current": { + "number": "16.11.2", + "spec": "WebGPU Shading Language", + "text": "textureBarrier", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#textureBarrier-builtin" + }, + "snapshot": { + "number": "16.11.2", + "spec": "WebGPU Shading Language", + "text": "textureBarrier", + "url": "https://www.w3.org/TR/WGSL/#textureBarrier-builtin" + } + }, "#textureSampleBaseClampToEdge": { "current": { - "number": "17.5.14", + "number": "16.7.14", "spec": "WebGPU Shading Language", "text": "textureSampleBaseClampToEdge", "url": "https://gpuweb.github.io/gpuweb/wgsl/#textureSampleBaseClampToEdge" }, "snapshot": { - "number": "17.5.14", + "number": "16.7.14", "spec": "WebGPU Shading Language", "text": "textureSampleBaseClampToEdge", "url": "https://www.w3.org/TR/WGSL/#textureSampleBaseClampToEdge" @@ -3725,13 +4677,13 @@ }, "#texturedimensions": { "current": { - "number": "17.5.1", + "number": "16.7.1", "spec": "WebGPU Shading Language", "text": "textureDimensions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturedimensions" }, "snapshot": { - "number": "17.5.1", + "number": "16.7.1", "spec": "WebGPU Shading Language", "text": "textureDimensions", "url": "https://www.w3.org/TR/WGSL/#texturedimensions" @@ -3739,13 +4691,13 @@ }, "#texturegather": { "current": { - "number": "17.5.2", + "number": "16.7.2", "spec": "WebGPU Shading Language", "text": "textureGather", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturegather" }, "snapshot": { - "number": "17.5.2", + "number": "16.7.2", "spec": "WebGPU Shading Language", "text": "textureGather", "url": "https://www.w3.org/TR/WGSL/#texturegather" @@ -3753,13 +4705,13 @@ }, "#texturegathercompare": { "current": { - "number": "17.5.3", + "number": "16.7.3", "spec": "WebGPU Shading Language", "text": "textureGatherCompare", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturegathercompare" }, "snapshot": { - "number": "17.5.3", + "number": "16.7.3", "spec": "WebGPU Shading Language", "text": "textureGatherCompare", "url": "https://www.w3.org/TR/WGSL/#texturegathercompare" @@ -3767,13 +4719,13 @@ }, "#textureload": { "current": { - "number": "17.5.4", + "number": "16.7.4", "spec": "WebGPU Shading Language", "text": "textureLoad", "url": "https://gpuweb.github.io/gpuweb/wgsl/#textureload" }, "snapshot": { - "number": "17.5.4", + "number": "16.7.4", "spec": "WebGPU Shading Language", "text": "textureLoad", "url": "https://www.w3.org/TR/WGSL/#textureload" @@ -3781,13 +4733,13 @@ }, "#texturenumlayers": { "current": { - "number": "17.5.5", + "number": "16.7.5", "spec": "WebGPU Shading Language", "text": "textureNumLayers", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturenumlayers" }, "snapshot": { - "number": "17.5.5", + "number": "16.7.5", "spec": "WebGPU Shading Language", "text": "textureNumLayers", "url": "https://www.w3.org/TR/WGSL/#texturenumlayers" @@ -3795,13 +4747,13 @@ }, "#texturenumlevels": { "current": { - "number": "17.5.6", + "number": "16.7.6", "spec": "WebGPU Shading Language", "text": "textureNumLevels", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturenumlevels" }, "snapshot": { - "number": "17.5.6", + "number": "16.7.6", "spec": "WebGPU Shading Language", "text": "textureNumLevels", "url": "https://www.w3.org/TR/WGSL/#texturenumlevels" @@ -3809,13 +4761,13 @@ }, "#texturenumsamples": { "current": { - "number": "17.5.7", + "number": "16.7.7", "spec": "WebGPU Shading Language", "text": "textureNumSamples", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturenumsamples" }, "snapshot": { - "number": "17.5.7", + "number": "16.7.7", "spec": "WebGPU Shading Language", "text": "textureNumSamples", "url": "https://www.w3.org/TR/WGSL/#texturenumsamples" @@ -3823,13 +4775,13 @@ }, "#texturesample": { "current": { - "number": "17.5.8", + "number": "16.7.8", "spec": "WebGPU Shading Language", "text": "textureSample", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturesample" }, "snapshot": { - "number": "17.5.8", + "number": "16.7.8", "spec": "WebGPU Shading Language", "text": "textureSample", "url": "https://www.w3.org/TR/WGSL/#texturesample" @@ -3837,13 +4789,13 @@ }, "#texturesamplebias": { "current": { - "number": "17.5.9", + "number": "16.7.9", "spec": "WebGPU Shading Language", "text": "textureSampleBias", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturesamplebias" }, "snapshot": { - "number": "17.5.9", + "number": "16.7.9", "spec": "WebGPU Shading Language", "text": "textureSampleBias", "url": "https://www.w3.org/TR/WGSL/#texturesamplebias" @@ -3851,13 +4803,13 @@ }, "#texturesamplecompare": { "current": { - "number": "17.5.10", + "number": "16.7.10", "spec": "WebGPU Shading Language", "text": "textureSampleCompare", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturesamplecompare" }, "snapshot": { - "number": "17.5.10", + "number": "16.7.10", "spec": "WebGPU Shading Language", "text": "textureSampleCompare", "url": "https://www.w3.org/TR/WGSL/#texturesamplecompare" @@ -3865,13 +4817,13 @@ }, "#texturesamplecomparelevel": { "current": { - "number": "17.5.11", + "number": "16.7.11", "spec": "WebGPU Shading Language", "text": "textureSampleCompareLevel", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturesamplecomparelevel" }, "snapshot": { - "number": "17.5.11", + "number": "16.7.11", "spec": "WebGPU Shading Language", "text": "textureSampleCompareLevel", "url": "https://www.w3.org/TR/WGSL/#texturesamplecomparelevel" @@ -3879,13 +4831,13 @@ }, "#texturesamplegrad": { "current": { - "number": "17.5.12", + "number": "16.7.12", "spec": "WebGPU Shading Language", "text": "textureSampleGrad", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturesamplegrad" }, "snapshot": { - "number": "17.5.12", + "number": "16.7.12", "spec": "WebGPU Shading Language", "text": "textureSampleGrad", "url": "https://www.w3.org/TR/WGSL/#texturesamplegrad" @@ -3893,13 +4845,13 @@ }, "#texturesamplelevel": { "current": { - "number": "17.5.13", + "number": "16.7.13", "spec": "WebGPU Shading Language", "text": "textureSampleLevel", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturesamplelevel" }, "snapshot": { - "number": "17.5.13", + "number": "16.7.13", "spec": "WebGPU Shading Language", "text": "textureSampleLevel", "url": "https://www.w3.org/TR/WGSL/#texturesamplelevel" @@ -3907,13 +4859,13 @@ }, "#texturestore": { "current": { - "number": "17.5.15", + "number": "16.7.15", "spec": "WebGPU Shading Language", "text": "textureStore", "url": "https://gpuweb.github.io/gpuweb/wgsl/#texturestore" }, "snapshot": { - "number": "17.5.15", + "number": "16.7.15", "spec": "WebGPU Shading Language", "text": "textureStore", "url": "https://www.w3.org/TR/WGSL/#texturestore" @@ -3963,13 +4915,13 @@ }, "#transpose-builtin": { "current": { - "number": "17.3.60", + "number": "16.5.62", "spec": "WebGPU Shading Language", "text": "transpose", "url": "https://gpuweb.github.io/gpuweb/wgsl/#transpose-builtin" }, "snapshot": { - "number": "17.3.60", + "number": "16.5.62", "spec": "WebGPU Shading Language", "text": "transpose", "url": "https://www.w3.org/TR/WGSL/#transpose-builtin" @@ -3977,13 +4929,13 @@ }, "#trunc-builtin": { "current": { - "number": "17.3.61", + "number": "16.5.63", "spec": "WebGPU Shading Language", "text": "trunc", "url": "https://gpuweb.github.io/gpuweb/wgsl/#trunc-builtin" }, "snapshot": { - "number": "17.3.61", + "number": "16.5.63", "spec": "WebGPU Shading Language", "text": "trunc", "url": "https://www.w3.org/TR/WGSL/#trunc-builtin" @@ -3991,13 +4943,13 @@ }, "#type-aliases": { "current": { - "number": "5.5", + "number": "6.7", "spec": "WebGPU Shading Language", "text": "Type Aliases", "url": "https://gpuweb.github.io/gpuweb/wgsl/#type-aliases" }, "snapshot": { - "number": "5.5", + "number": "6.7", "spec": "WebGPU Shading Language", "text": "Type Aliases", "url": "https://www.w3.org/TR/WGSL/#type-aliases" @@ -4005,41 +4957,41 @@ }, "#type-checking-section": { "current": { - "number": "5.1", + "number": "6.1", "spec": "WebGPU Shading Language", "text": "Type Checking", "url": "https://gpuweb.github.io/gpuweb/wgsl/#type-checking-section" }, "snapshot": { - "number": "5.1", + "number": "6.1", "spec": "WebGPU Shading Language", "text": "Type Checking", "url": "https://www.w3.org/TR/WGSL/#type-checking-section" } }, - "#type-defining-keywords": { + "#type-expr": { "current": { - "number": "15.1.1", + "number": "8.17", "spec": "WebGPU Shading Language", - "text": "Type-defining Keywords", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#type-defining-keywords" + "text": "Type Expressions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#type-expr" }, "snapshot": { - "number": "15.1.1", + "number": "8.17", "spec": "WebGPU Shading Language", - "text": "Type-defining Keywords", - "url": "https://www.w3.org/TR/WGSL/#type-defining-keywords" + "text": "Type Expressions", + "url": "https://www.w3.org/TR/WGSL/#type-expr" } }, "#type-specifiers": { "current": { - "number": "5.6", + "number": "6.8", "spec": "WebGPU Shading Language", "text": "Type Specifier Grammar", "url": "https://gpuweb.github.io/gpuweb/wgsl/#type-specifiers" }, "snapshot": { - "number": "5.6", + "number": "6.8", "spec": "WebGPU Shading Language", "text": "Type Specifier Grammar", "url": "https://www.w3.org/TR/WGSL/#type-specifiers" @@ -4047,13 +4999,13 @@ }, "#types": { "current": { - "number": "5", + "number": "6", "spec": "WebGPU Shading Language", "text": "Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#types" }, "snapshot": { - "number": "5", + "number": "6", "spec": "WebGPU Shading Language", "text": "Types", "url": "https://www.w3.org/TR/WGSL/#types" @@ -4061,18 +5013,32 @@ }, "#typing-tables-section": { "current": { - "number": "5.1.1", + "number": "6.1.1", "spec": "WebGPU Shading Language", "text": "Type Rule Tables", "url": "https://gpuweb.github.io/gpuweb/wgsl/#typing-tables-section" }, "snapshot": { - "number": "5.1.1", + "number": "6.1.1", "spec": "WebGPU Shading Language", "text": "Type Rule Tables", "url": "https://www.w3.org/TR/WGSL/#typing-tables-section" } }, + "#u32-builtin": { + "current": { + "number": "16.1.2.16", + "spec": "WebGPU Shading Language", + "text": "u32", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#u32-builtin" + }, + "snapshot": { + "number": "16.1.2.16", + "spec": "WebGPU Shading Language", + "text": "u32", + "url": "https://www.w3.org/TR/WGSL/#u32-builtin" + } + }, "#uniformity": { "current": { "number": "14.2", @@ -4271,13 +5237,13 @@ }, "#unpack-builtin-functions": { "current": { - "number": "17.8", + "number": "16.10", "spec": "WebGPU Shading Language", "text": "Data Unpacking Built-in Functions", "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack-builtin-functions" }, "snapshot": { - "number": "17.8", + "number": "16.10", "spec": "WebGPU Shading Language", "text": "Data Unpacking Built-in Functions", "url": "https://www.w3.org/TR/WGSL/#unpack-builtin-functions" @@ -4285,13 +5251,13 @@ }, "#unpack2x16float-builtin": { "current": { - "number": "17.8.5", + "number": "16.10.7", "spec": "WebGPU Shading Language", "text": "unpack2x16float", "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack2x16float-builtin" }, "snapshot": { - "number": "17.8.5", + "number": "16.10.7", "spec": "WebGPU Shading Language", "text": "unpack2x16float", "url": "https://www.w3.org/TR/WGSL/#unpack2x16float-builtin" @@ -4299,13 +5265,13 @@ }, "#unpack2x16snorm-builtin": { "current": { - "number": "17.8.3", + "number": "16.10.5", "spec": "WebGPU Shading Language", "text": "unpack2x16snorm", "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack2x16snorm-builtin" }, "snapshot": { - "number": "17.8.3", + "number": "16.10.5", "spec": "WebGPU Shading Language", "text": "unpack2x16snorm", "url": "https://www.w3.org/TR/WGSL/#unpack2x16snorm-builtin" @@ -4313,13 +5279,13 @@ }, "#unpack2x16unorm-builtin": { "current": { - "number": "17.8.4", + "number": "16.10.6", "spec": "WebGPU Shading Language", "text": "unpack2x16unorm", "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack2x16unorm-builtin" }, "snapshot": { - "number": "17.8.4", + "number": "16.10.6", "spec": "WebGPU Shading Language", "text": "unpack2x16unorm", "url": "https://www.w3.org/TR/WGSL/#unpack2x16unorm-builtin" @@ -4327,13 +5293,13 @@ }, "#unpack4x8snorm-builtin": { "current": { - "number": "17.8.1", + "number": "16.10.1", "spec": "WebGPU Shading Language", "text": "unpack4x8snorm", "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack4x8snorm-builtin" }, "snapshot": { - "number": "17.8.1", + "number": "16.10.1", "spec": "WebGPU Shading Language", "text": "unpack4x8snorm", "url": "https://www.w3.org/TR/WGSL/#unpack4x8snorm-builtin" @@ -4341,55 +5307,97 @@ }, "#unpack4x8unorm-builtin": { "current": { - "number": "17.8.2", + "number": "16.10.2", "spec": "WebGPU Shading Language", "text": "unpack4x8unorm", "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack4x8unorm-builtin" }, "snapshot": { - "number": "17.8.2", + "number": "16.10.2", "spec": "WebGPU Shading Language", "text": "unpack4x8unorm", "url": "https://www.w3.org/TR/WGSL/#unpack4x8unorm-builtin" } }, + "#unpack4xI8-builtin": { + "current": { + "number": "16.10.3", + "spec": "WebGPU Shading Language", + "text": "unpack4xI8", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack4xI8-builtin" + }, + "snapshot": { + "number": "16.10.3", + "spec": "WebGPU Shading Language", + "text": "unpack4xI8", + "url": "https://www.w3.org/TR/WGSL/#unpack4xI8-builtin" + } + }, + "#unpack4xU8-builtin": { + "current": { + "number": "16.10.4", + "spec": "WebGPU Shading Language", + "text": "unpack4xU8", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#unpack4xU8-builtin" + }, + "snapshot": { + "number": "16.10.4", + "spec": "WebGPU Shading Language", + "text": "unpack4xU8", + "url": "https://www.w3.org/TR/WGSL/#unpack4xU8-builtin" + } + }, "#user-defined-inputs-outputs": { "current": { - "number": "10.3.1.2", + "number": "12.3.1.2", "spec": "WebGPU Shading Language", "text": "User-defined Inputs and Outputs", "url": "https://gpuweb.github.io/gpuweb/wgsl/#user-defined-inputs-outputs" }, "snapshot": { - "number": "10.3.1.2", + "number": "12.3.1.2", "spec": "WebGPU Shading Language", "text": "User-defined Inputs and Outputs", "url": "https://www.w3.org/TR/WGSL/#user-defined-inputs-outputs" } }, - "#value-constructor-expr": { + "#valid-invalid-memory-references": { "current": { - "number": "7.5", + "number": "6.4.4", "spec": "WebGPU Shading Language", - "text": "Value Constructor Expressions", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#value-constructor-expr" + "text": "Valid and Invalid Memory References", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#valid-invalid-memory-references" }, "snapshot": { - "number": "7.5", + "number": "6.4.4", "spec": "WebGPU Shading Language", - "text": "Value Constructor Expressions", - "url": "https://www.w3.org/TR/WGSL/#value-constructor-expr" + "text": "Valid and Invalid Memory References", + "url": "https://www.w3.org/TR/WGSL/#valid-invalid-memory-references" + } + }, + "#value-constructor-builtin-function": { + "current": { + "number": "16.1.2", + "spec": "WebGPU Shading Language", + "text": "Value Constructor Built-in Functions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#value-constructor-builtin-function" + }, + "snapshot": { + "number": "16.1.2", + "spec": "WebGPU Shading Language", + "text": "Value Constructor Built-in Functions", + "url": "https://www.w3.org/TR/WGSL/#value-constructor-builtin-function" } }, "#value-decls": { "current": { - "number": "6.2", + "number": "7.2", "spec": "WebGPU Shading Language", "text": "Value Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#value-decls" }, "snapshot": { - "number": "6.2", + "number": "7.2", "spec": "WebGPU Shading Language", "text": "Value Declarations", "url": "https://www.w3.org/TR/WGSL/#value-decls" @@ -4397,13 +5405,13 @@ }, "#value-identifier-expr": { "current": { - "number": "7.17", + "number": "8.15", "spec": "WebGPU Shading Language", "text": "Identifier Expressions for Value Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#value-identifier-expr" }, "snapshot": { - "number": "7.17", + "number": "8.15", "spec": "WebGPU Shading Language", "text": "Identifier Expressions for Value Declarations", "url": "https://www.w3.org/TR/WGSL/#value-identifier-expr" @@ -4411,13 +5419,13 @@ }, "#var-and-value": { "current": { - "number": "6", + "number": "7", "spec": "WebGPU Shading Language", "text": "Variable and Value Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#var-and-value" }, "snapshot": { - "number": "6", + "number": "7", "spec": "WebGPU Shading Language", "text": "Variable and Value Declarations", "url": "https://www.w3.org/TR/WGSL/#var-and-value" @@ -4425,13 +5433,13 @@ }, "#var-and-value-decl-grammar": { "current": { - "number": "6.4", + "number": "7.4", "spec": "WebGPU Shading Language", "text": "Variable and Value Declaration Grammar Summary", "url": "https://gpuweb.github.io/gpuweb/wgsl/#var-and-value-decl-grammar" }, "snapshot": { - "number": "6.4", + "number": "7.4", "spec": "WebGPU Shading Language", "text": "Variable and Value Declaration Grammar Summary", "url": "https://www.w3.org/TR/WGSL/#var-and-value-decl-grammar" @@ -4439,13 +5447,13 @@ }, "#var-decls": { "current": { - "number": "6.3", + "number": "7.3", "spec": "WebGPU Shading Language", "text": "var Declarations", "url": "https://gpuweb.github.io/gpuweb/wgsl/#var-decls" }, "snapshot": { - "number": "6.3", + "number": "7.3", "spec": "WebGPU Shading Language", "text": "var Declarations", "url": "https://www.w3.org/TR/WGSL/#var-decls" @@ -4453,13 +5461,13 @@ }, "#var-identifier-expr": { "current": { - "number": "7.13", + "number": "8.11", "spec": "WebGPU Shading Language", "text": "Variable Identifier Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#var-identifier-expr" }, "snapshot": { - "number": "7.13", + "number": "8.11", "spec": "WebGPU Shading Language", "text": "Variable Identifier Expression", "url": "https://www.w3.org/TR/WGSL/#var-identifier-expr" @@ -4467,27 +5475,69 @@ }, "#var-vs-value": { "current": { - "number": "6.1", + "number": "7.1", "spec": "WebGPU Shading Language", "text": "Variables vs Values", "url": "https://gpuweb.github.io/gpuweb/wgsl/#var-vs-value" }, "snapshot": { - "number": "6.1", + "number": "7.1", "spec": "WebGPU Shading Language", "text": "Variables vs Values", "url": "https://www.w3.org/TR/WGSL/#var-vs-value" } }, + "#vec2-builtin": { + "current": { + "number": "16.1.2.17", + "spec": "WebGPU Shading Language", + "text": "vec2", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#vec2-builtin" + }, + "snapshot": { + "number": "16.1.2.17", + "spec": "WebGPU Shading Language", + "text": "vec2", + "url": "https://www.w3.org/TR/WGSL/#vec2-builtin" + } + }, + "#vec3-builtin": { + "current": { + "number": "16.1.2.18", + "spec": "WebGPU Shading Language", + "text": "vec3", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#vec3-builtin" + }, + "snapshot": { + "number": "16.1.2.18", + "spec": "WebGPU Shading Language", + "text": "vec3", + "url": "https://www.w3.org/TR/WGSL/#vec3-builtin" + } + }, + "#vec4-builtin": { + "current": { + "number": "16.1.2.19", + "spec": "WebGPU Shading Language", + "text": "vec4", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#vec4-builtin" + }, + "snapshot": { + "number": "16.1.2.19", + "spec": "WebGPU Shading Language", + "text": "vec4", + "url": "https://www.w3.org/TR/WGSL/#vec4-builtin" + } + }, "#vector-access-expr": { "current": { - "number": "7.7.1", + "number": "8.5.1", "spec": "WebGPU Shading Language", "text": "Vector Access Expression", "url": "https://gpuweb.github.io/gpuweb/wgsl/#vector-access-expr" }, "snapshot": { - "number": "7.7.1", + "number": "8.5.1", "spec": "WebGPU Shading Language", "text": "Vector Access Expression", "url": "https://www.w3.org/TR/WGSL/#vector-access-expr" @@ -4495,13 +5545,13 @@ }, "#vector-multi-component": { "current": { - "number": "7.7.1.2", + "number": "8.5.1.2", "spec": "WebGPU Shading Language", "text": "Vector Multiple Component Selection", "url": "https://gpuweb.github.io/gpuweb/wgsl/#vector-multi-component" }, "snapshot": { - "number": "7.7.1.2", + "number": "8.5.1.2", "spec": "WebGPU Shading Language", "text": "Vector Multiple Component Selection", "url": "https://www.w3.org/TR/WGSL/#vector-multi-component" @@ -4509,13 +5559,13 @@ }, "#vector-single-component": { "current": { - "number": "7.7.1.1", + "number": "8.5.1.1", "spec": "WebGPU Shading Language", "text": "Vector Single Component Selection", "url": "https://gpuweb.github.io/gpuweb/wgsl/#vector-single-component" }, "snapshot": { - "number": "7.7.1.1", + "number": "8.5.1.1", "spec": "WebGPU Shading Language", "text": "Vector Single Component Selection", "url": "https://www.w3.org/TR/WGSL/#vector-single-component" @@ -4523,18 +5573,46 @@ }, "#vector-types": { "current": { - "number": "5.2.6", + "number": "6.2.6", "spec": "WebGPU Shading Language", "text": "Vector Types", "url": "https://gpuweb.github.io/gpuweb/wgsl/#vector-types" }, "snapshot": { - "number": "5.2.6", + "number": "6.2.6", "spec": "WebGPU Shading Language", "text": "Vector Types", "url": "https://www.w3.org/TR/WGSL/#vector-types" } }, + "#vertex-attr": { + "current": { + "number": "11.15.1", + "spec": "WebGPU Shading Language", + "text": "vertex", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#vertex-attr" + }, + "snapshot": { + "number": "11.15.1", + "spec": "WebGPU Shading Language", + "text": "vertex", + "url": "https://www.w3.org/TR/WGSL/#vertex-attr" + } + }, + "#vertex-index-builtin-value": { + "current": { + "number": "12.3.1.1.12", + "spec": "WebGPU Shading Language", + "text": "vertex_index", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#vertex-index-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.12", + "spec": "WebGPU Shading Language", + "text": "vertex_index", + "url": "https://www.w3.org/TR/WGSL/#vertex-index-builtin-value" + } + }, "#w3c-conformance": { "current": { "number": "", @@ -4577,43 +5655,71 @@ "url": "https://www.w3.org/TR/WGSL/#w3c-conventions" } }, - "#wgsl-program": { + "#wgsl-module": { "current": { - "number": "", + "number": "2", "spec": "WebGPU Shading Language", - "text": "12. WGSL Program", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#wgsl-program" + "text": "WGSL Module", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#wgsl-module" }, "snapshot": { - "number": "", + "number": "2", "spec": "WebGPU Shading Language", - "text": "12. WGSL Program", - "url": "https://www.w3.org/TR/WGSL/#wgsl-program" + "text": "WGSL Module", + "url": "https://www.w3.org/TR/WGSL/#wgsl-module" } }, "#while-statement": { "current": { - "number": "8.4.5", + "number": "9.4.5", "spec": "WebGPU Shading Language", "text": "While Statement", "url": "https://gpuweb.github.io/gpuweb/wgsl/#while-statement" }, "snapshot": { - "number": "8.4.5", + "number": "9.4.5", "spec": "WebGPU Shading Language", "text": "While Statement", "url": "https://www.w3.org/TR/WGSL/#while-statement" } }, + "#workgroup-id-builtin-value": { + "current": { + "number": "12.3.1.1.13", + "spec": "WebGPU Shading Language", + "text": "workgroup_id", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#workgroup-id-builtin-value" + }, + "snapshot": { + "number": "12.3.1.1.13", + "spec": "WebGPU Shading Language", + "text": "workgroup_id", + "url": "https://www.w3.org/TR/WGSL/#workgroup-id-builtin-value" + } + }, + "#workgroup-size-attr": { + "current": { + "number": "11.14", + "spec": "WebGPU Shading Language", + "text": "workgroup_size", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#workgroup-size-attr" + }, + "snapshot": { + "number": "11.14", + "spec": "WebGPU Shading Language", + "text": "workgroup_size", + "url": "https://www.w3.org/TR/WGSL/#workgroup-size-attr" + } + }, "#workgroupBarrier-builtin": { "current": { - "number": "17.9.2", + "number": "16.11.3", "spec": "WebGPU Shading Language", "text": "workgroupBarrier", "url": "https://gpuweb.github.io/gpuweb/wgsl/#workgroupBarrier-builtin" }, "snapshot": { - "number": "17.9.2", + "number": "16.11.3", "spec": "WebGPU Shading Language", "text": "workgroupBarrier", "url": "https://www.w3.org/TR/WGSL/#workgroupBarrier-builtin" @@ -4621,30 +5727,30 @@ }, "#workgroupUniformLoad-builtin": { "current": { - "number": "17.9.3", + "number": "16.11.4", "spec": "WebGPU Shading Language", "text": "workgroupUniformLoad", "url": "https://gpuweb.github.io/gpuweb/wgsl/#workgroupUniformLoad-builtin" }, "snapshot": { - "number": "17.9.3", + "number": "16.11.4", "spec": "WebGPU Shading Language", "text": "workgroupUniformLoad", "url": "https://www.w3.org/TR/WGSL/#workgroupUniformLoad-builtin" } }, - "#zero-value-expr": { + "#zero-value-builtin-function": { "current": { - "number": "7.5.2", + "number": "16.1.1", "spec": "WebGPU Shading Language", - "text": "Zero Value Expressions", - "url": "https://gpuweb.github.io/gpuweb/wgsl/#zero-value-expr" + "text": "Zero Value Built-in Functions", + "url": "https://gpuweb.github.io/gpuweb/wgsl/#zero-value-builtin-function" }, "snapshot": { - "number": "7.5.2", + "number": "16.1.1", "spec": "WebGPU Shading Language", - "text": "Zero Value Expressions", - "url": "https://www.w3.org/TR/WGSL/#zero-value-expr" + "text": "Zero Value Built-in Functions", + "url": "https://www.w3.org/TR/WGSL/#zero-value-builtin-function" } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-window-controls-overlay.json b/bikeshed/spec-data/readonly/headings/headings-window-controls-overlay.json index 6e9296f3a1..3230e8d963 100644 --- a/bikeshed/spec-data/readonly/headings/headings-window-controls-overlay.json +++ b/bikeshed/spec-data/readonly/headings/headings-window-controls-overlay.json @@ -17,9 +17,9 @@ }, "#algorithms": { "current": { - "number": "", + "number": "9", "spec": "Window Controls Overlay", - "text": "10. Algorithms", + "text": "Algorithms", "url": "https://wicg.github.io/window-controls-overlay/#algorithms" } }, @@ -39,14 +39,6 @@ "url": "https://wicg.github.io/window-controls-overlay/#conformance" } }, - "#defining-draggable-sections": { - "current": { - "number": "8", - "spec": "Window Controls Overlay", - "text": "Defining draggable sections", - "url": "https://wicg.github.io/window-controls-overlay/#defining-draggable-sections" - } - }, "#examples": { "current": { "number": "1.1", @@ -81,7 +73,7 @@ }, "#integration-with-cssom": { "current": { - "number": "9", + "number": "8", "spec": "Window Controls Overlay", "text": "Integration with CSSOM", "url": "https://wicg.github.io/window-controls-overlay/#integration-with-cssom" @@ -113,7 +105,7 @@ }, "#out-of-scope-navigation": { "current": { - "number": "11.1.2", + "number": "10.1.2", "spec": "Window Controls Overlay", "text": "Out-of-scope Navigation", "url": "https://wicg.github.io/window-controls-overlay/#out-of-scope-navigation" @@ -121,7 +113,7 @@ }, "#privacy": { "current": { - "number": "11.2", + "number": "10.2", "spec": "Window Controls Overlay", "text": "Privacy", "url": "https://wicg.github.io/window-controls-overlay/#privacy" @@ -137,7 +129,7 @@ }, "#resize-the-title-bar-area": { "current": { - "number": "10.1", + "number": "9.1", "spec": "Window Controls Overlay", "text": "Resize the title bar area", "url": "https://wicg.github.io/window-controls-overlay/#resize-the-title-bar-area" @@ -145,7 +137,7 @@ }, "#security": { "current": { - "number": "11.1", + "number": "10.1", "spec": "Window Controls Overlay", "text": "Security", "url": "https://wicg.github.io/window-controls-overlay/#security" @@ -155,13 +147,13 @@ "current": { "number": "", "spec": "Window Controls Overlay", - "text": "11. Security and privacy considerations", + "text": "10. Security and privacy considerations", "url": "https://wicg.github.io/window-controls-overlay/#security-and-privacy-considerations" } }, "#spoofing-risks": { "current": { - "number": "11.1.1", + "number": "10.1.1", "spec": "Window Controls Overlay", "text": "Spoofing risks", "url": "https://wicg.github.io/window-controls-overlay/#spoofing-risks" @@ -225,7 +217,7 @@ }, "#update-the-overlay-area-information": { "current": { - "number": "10.2", + "number": "9.2", "spec": "Window Controls Overlay", "text": "Update the overlay area information", "url": "https://wicg.github.io/window-controls-overlay/#update-the-overlay-area-information" diff --git a/bikeshed/spec-data/readonly/headings/headings-window-management.json b/bikeshed/spec-data/readonly/headings/headings-window-management.json new file mode 100644 index 0000000000..159bf2452b --- /dev/null +++ b/bikeshed/spec-data/readonly/headings/headings-window-management.json @@ -0,0 +1,842 @@ +{ + "#a11y": { + "current": { + "number": "6", + "spec": "Window Management", + "text": "Accessibility Considerations", + "url": "https://w3c.github.io/window-management/#a11y" + }, + "snapshot": { + "number": "6", + "spec": "Window Management", + "text": "Accessibility Considerations", + "url": "https://www.w3.org/TR/window-management/#a11y" + } + }, + "#abstract": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Abstract", + "url": "https://w3c.github.io/window-management/#abstract" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Abstract", + "url": "https://www.w3.org/TR/window-management/#abstract" + } + }, + "#acknowledgements": { + "current": { + "number": "8", + "spec": "Window Management", + "text": "Acknowledgements", + "url": "https://w3c.github.io/window-management/#acknowledgements" + }, + "snapshot": { + "number": "8", + "spec": "Window Management", + "text": "Acknowledgements", + "url": "https://www.w3.org/TR/window-management/#acknowledgements" + } + }, + "#api": { + "current": { + "number": "3", + "spec": "Window Management", + "text": "API", + "url": "https://w3c.github.io/window-management/#api" + }, + "snapshot": { + "number": "3", + "spec": "Window Management", + "text": "API", + "url": "https://www.w3.org/TR/window-management/#api" + } + }, + "#api-element-requestfullscreen-method-definition-changes": { + "current": { + "number": "3.5.1", + "spec": "Window Management", + "text": "Element.requestFullscreen() method definition changes", + "url": "https://w3c.github.io/window-management/#api-element-requestfullscreen-method-definition-changes" + }, + "snapshot": { + "number": "3.5.1", + "spec": "Window Management", + "text": "Element.requestFullscreen() method definition changes", + "url": "https://www.w3.org/TR/window-management/#api-element-requestfullscreen-method-definition-changes" + } + }, + "#api-extensions-to-fullscreen-options": { + "current": { + "number": "3.5", + "spec": "Window Management", + "text": "Extensions to FullscreenOptions", + "url": "https://w3c.github.io/window-management/#api-extensions-to-fullscreen-options" + }, + "snapshot": { + "number": "3.5", + "spec": "Window Management", + "text": "Extensions to FullscreenOptions", + "url": "https://www.w3.org/TR/window-management/#api-extensions-to-fullscreen-options" + } + }, + "#api-extensions-to-screen": { + "current": { + "number": "3.1", + "spec": "Window Management", + "text": "Extensions to the Screen interface", + "url": "https://w3c.github.io/window-management/#api-extensions-to-screen" + }, + "snapshot": { + "number": "3.1", + "spec": "Window Management", + "text": "Extensions to the Screen interface", + "url": "https://www.w3.org/TR/window-management/#api-extensions-to-screen" + } + }, + "#api-extensions-to-window": { + "current": { + "number": "3.2", + "spec": "Window Management", + "text": "Extensions to the Window interface", + "url": "https://w3c.github.io/window-management/#api-extensions-to-window" + }, + "snapshot": { + "number": "3.2", + "spec": "Window Management", + "text": "Extensions to the Window interface", + "url": "https://www.w3.org/TR/window-management/#api-extensions-to-window" + } + }, + "#api-permission-api-integration": { + "current": { + "number": "3.6", + "spec": "Window Management", + "text": "Permission API Integration", + "url": "https://w3c.github.io/window-management/#api-permission-api-integration" + }, + "snapshot": { + "number": "3.6", + "spec": "Window Management", + "text": "Permission API Integration", + "url": "https://www.w3.org/TR/window-management/#api-permission-api-integration" + } + }, + "#api-permission-policy-integration": { + "current": { + "number": "3.7", + "spec": "Window Management", + "text": "Permission Policy integration", + "url": "https://w3c.github.io/window-management/#api-permission-policy-integration" + }, + "snapshot": { + "number": "3.7", + "spec": "Window Management", + "text": "Permission Policy integration", + "url": "https://www.w3.org/TR/window-management/#api-permission-policy-integration" + } + }, + "#api-screen-isExtended-attribute": { + "current": { + "number": "3.1.1", + "spec": "Window Management", + "text": "isExtended attribute", + "url": "https://w3c.github.io/window-management/#api-screen-isExtended-attribute" + }, + "snapshot": { + "number": "3.1.1", + "spec": "Window Management", + "text": "isExtended attribute", + "url": "https://www.w3.org/TR/window-management/#api-screen-isExtended-attribute" + } + }, + "#api-screen-onchange-attribute": { + "current": { + "number": "3.1.2", + "spec": "Window Management", + "text": "onchange attribute", + "url": "https://w3c.github.io/window-management/#api-screen-onchange-attribute" + }, + "snapshot": { + "number": "3.1.2", + "spec": "Window Management", + "text": "onchange attribute", + "url": "https://www.w3.org/TR/window-management/#api-screen-onchange-attribute" + } + }, + "#api-screendetailed-interface": { + "current": { + "number": "3.4", + "spec": "Window Management", + "text": "The ScreenDetailed interface", + "url": "https://w3c.github.io/window-management/#api-screendetailed-interface" + }, + "snapshot": { + "number": "3.4", + "spec": "Window Management", + "text": "The ScreenDetailed interface", + "url": "https://www.w3.org/TR/window-management/#api-screendetailed-interface" + } + }, + "#api-screendetailed-onchange-attribute": { + "current": { + "number": "3.4.1", + "spec": "Window Management", + "text": "onchange attribute", + "url": "https://w3c.github.io/window-management/#api-screendetailed-onchange-attribute" + }, + "snapshot": { + "number": "3.4.1", + "spec": "Window Management", + "text": "onchange attribute", + "url": "https://www.w3.org/TR/window-management/#api-screendetailed-onchange-attribute" + } + }, + "#api-screendetails-currentscreen-attribute": { + "current": { + "number": "3.3.2", + "spec": "Window Management", + "text": "currentScreen attribute", + "url": "https://w3c.github.io/window-management/#api-screendetails-currentscreen-attribute" + }, + "snapshot": { + "number": "3.3.2", + "spec": "Window Management", + "text": "currentScreen attribute", + "url": "https://www.w3.org/TR/window-management/#api-screendetails-currentscreen-attribute" + } + }, + "#api-screendetails-interface": { + "current": { + "number": "3.3", + "spec": "Window Management", + "text": "ScreenDetails interface", + "url": "https://w3c.github.io/window-management/#api-screendetails-interface" + }, + "snapshot": { + "number": "3.3", + "spec": "Window Management", + "text": "ScreenDetails interface", + "url": "https://www.w3.org/TR/window-management/#api-screendetails-interface" + } + }, + "#api-screendetails-oncurrentscreenchange-attribute": { + "current": { + "number": "3.3.4", + "spec": "Window Management", + "text": "oncurrentscreenchange attribute", + "url": "https://w3c.github.io/window-management/#api-screendetails-oncurrentscreenchange-attribute" + }, + "snapshot": { + "number": "3.3.4", + "spec": "Window Management", + "text": "oncurrentscreenchange attribute", + "url": "https://www.w3.org/TR/window-management/#api-screendetails-oncurrentscreenchange-attribute" + } + }, + "#api-screendetails-onscreenschange-attribute": { + "current": { + "number": "3.3.3", + "spec": "Window Management", + "text": "onscreenschange attribute", + "url": "https://w3c.github.io/window-management/#api-screendetails-onscreenschange-attribute" + }, + "snapshot": { + "number": "3.3.3", + "spec": "Window Management", + "text": "onscreenschange attribute", + "url": "https://www.w3.org/TR/window-management/#api-screendetails-onscreenschange-attribute" + } + }, + "#api-screendetails-screens-attribute": { + "current": { + "number": "3.3.1", + "spec": "Window Management", + "text": "screens attribute", + "url": "https://w3c.github.io/window-management/#api-screendetails-screens-attribute" + }, + "snapshot": { + "number": "3.3.1", + "spec": "Window Management", + "text": "screens attribute", + "url": "https://www.w3.org/TR/window-management/#api-screendetails-screens-attribute" + } + }, + "#api-window-attribute-and-method-definition-changes": { + "current": { + "number": "3.2.2", + "spec": "Window Management", + "text": "Window attribute and method definition changes", + "url": "https://w3c.github.io/window-management/#api-window-attribute-and-method-definition-changes" + }, + "snapshot": { + "number": "3.2.2", + "spec": "Window Management", + "text": "Window attribute and method definition changes", + "url": "https://www.w3.org/TR/window-management/#api-window-attribute-and-method-definition-changes" + } + }, + "#api-window-getScreenDetails-method": { + "current": { + "number": "3.2.1", + "spec": "Window Management", + "text": "getScreenDetails() method", + "url": "https://w3c.github.io/window-management/#api-window-getScreenDetails-method" + }, + "snapshot": { + "number": "3.2.1", + "spec": "Window Management", + "text": "getScreenDetails() method", + "url": "https://www.w3.org/TR/window-management/#api-window-getScreenDetails-method" + } + }, + "#api-window-open-method-definition-changes": { + "current": { + "number": "3.2.3", + "spec": "Window Management", + "text": "Window.open() method definition changes", + "url": "https://w3c.github.io/window-management/#api-window-open-method-definition-changes" + }, + "snapshot": { + "number": "3.2.3", + "spec": "Window Management", + "text": "Window.open() method definition changes", + "url": "https://www.w3.org/TR/window-management/#api-window-open-method-definition-changes" + } + }, + "#concept-available-screen-area": { + "current": { + "number": "2.4", + "spec": "Window Management", + "text": "Available screen area", + "url": "https://w3c.github.io/window-management/#concept-available-screen-area" + }, + "snapshot": { + "number": "2.4", + "spec": "Window Management", + "text": "Available screen area", + "url": "https://www.w3.org/TR/window-management/#concept-available-screen-area" + } + }, + "#concept-available-screen-position": { + "current": { + "number": "2.7", + "spec": "Window Management", + "text": "Available screen position", + "url": "https://w3c.github.io/window-management/#concept-available-screen-position" + }, + "snapshot": { + "number": "2.7", + "spec": "Window Management", + "text": "Available screen position", + "url": "https://www.w3.org/TR/window-management/#concept-available-screen-position" + } + }, + "#concept-current-screen": { + "current": { + "number": "2.10", + "spec": "Window Management", + "text": "Current screen", + "url": "https://w3c.github.io/window-management/#concept-current-screen" + }, + "snapshot": { + "number": "2.10", + "spec": "Window Management", + "text": "Current screen", + "url": "https://www.w3.org/TR/window-management/#concept-current-screen" + } + }, + "#concept-internal-screen": { + "current": { + "number": "2.9", + "spec": "Window Management", + "text": "Internal screen", + "url": "https://w3c.github.io/window-management/#concept-internal-screen" + }, + "snapshot": { + "number": "2.9", + "spec": "Window Management", + "text": "Internal screen", + "url": "https://www.w3.org/TR/window-management/#concept-internal-screen" + } + }, + "#concept-observable-screen-properties": { + "current": { + "number": "2.11", + "spec": "Window Management", + "text": "Observable screen properties", + "url": "https://w3c.github.io/window-management/#concept-observable-screen-properties" + }, + "snapshot": { + "number": "2.11", + "spec": "Window Management", + "text": "Observable screen properties", + "url": "https://www.w3.org/TR/window-management/#concept-observable-screen-properties" + } + }, + "#concept-primary-screen": { + "current": { + "number": "2.8", + "spec": "Window Management", + "text": "Primary screen", + "url": "https://w3c.github.io/window-management/#concept-primary-screen" + }, + "snapshot": { + "number": "2.8", + "spec": "Window Management", + "text": "Primary screen", + "url": "https://www.w3.org/TR/window-management/#concept-primary-screen" + } + }, + "#concept-screen": { + "current": { + "number": "2.1", + "spec": "Window Management", + "text": "Screen", + "url": "https://w3c.github.io/window-management/#concept-screen" + }, + "snapshot": { + "number": "2.1", + "spec": "Window Management", + "text": "Screen", + "url": "https://www.w3.org/TR/window-management/#concept-screen" + } + }, + "#concept-screen-area": { + "current": { + "number": "2.3", + "spec": "Window Management", + "text": "Screen area", + "url": "https://w3c.github.io/window-management/#concept-screen-area" + }, + "snapshot": { + "number": "2.3", + "spec": "Window Management", + "text": "Screen area", + "url": "https://www.w3.org/TR/window-management/#concept-screen-area" + } + }, + "#concept-screen-pixel": { + "current": { + "number": "2.2", + "spec": "Window Management", + "text": "Screen pixel", + "url": "https://w3c.github.io/window-management/#concept-screen-pixel" + }, + "snapshot": { + "number": "2.2", + "spec": "Window Management", + "text": "Screen pixel", + "url": "https://www.w3.org/TR/window-management/#concept-screen-pixel" + } + }, + "#concept-screen-position": { + "current": { + "number": "2.6", + "spec": "Window Management", + "text": "Screen position", + "url": "https://w3c.github.io/window-management/#concept-screen-position" + }, + "snapshot": { + "number": "2.6", + "spec": "Window Management", + "text": "Screen position", + "url": "https://www.w3.org/TR/window-management/#concept-screen-position" + } + }, + "#concept-virtual-screen-arrangement": { + "current": { + "number": "2.5", + "spec": "Window Management", + "text": "Virtual screen arrangement", + "url": "https://w3c.github.io/window-management/#concept-virtual-screen-arrangement" + }, + "snapshot": { + "number": "2.5", + "spec": "Window Management", + "text": "Virtual screen arrangement", + "url": "https://www.w3.org/TR/window-management/#concept-virtual-screen-arrangement" + } + }, + "#concepts": { + "current": { + "number": "2", + "spec": "Window Management", + "text": "Concepts", + "url": "https://w3c.github.io/window-management/#concepts" + }, + "snapshot": { + "number": "2", + "spec": "Window Management", + "text": "Concepts", + "url": "https://www.w3.org/TR/window-management/#concepts" + } + }, + "#i18n": { + "current": { + "number": "7", + "spec": "Window Management", + "text": "Internationalization Considerations", + "url": "https://w3c.github.io/window-management/#i18n" + }, + "snapshot": { + "number": "7", + "spec": "Window Management", + "text": "Internationalization Considerations", + "url": "https://www.w3.org/TR/window-management/#i18n" + } + }, + "#idl-index": { + "current": { + "number": "", + "spec": "Window Management", + "text": "IDL Index", + "url": "https://w3c.github.io/window-management/#idl-index" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "IDL Index", + "url": "https://www.w3.org/TR/window-management/#idl-index" + } + }, + "#index": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Index", + "url": "https://w3c.github.io/window-management/#index" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Index", + "url": "https://www.w3.org/TR/window-management/#index" + } + }, + "#index-defined-elsewhere": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Terms defined by reference", + "url": "https://w3c.github.io/window-management/#index-defined-elsewhere" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Terms defined by reference", + "url": "https://www.w3.org/TR/window-management/#index-defined-elsewhere" + } + }, + "#index-defined-here": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Terms defined by this specification", + "url": "https://w3c.github.io/window-management/#index-defined-here" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Terms defined by this specification", + "url": "https://www.w3.org/TR/window-management/#index-defined-here" + } + }, + "#informative": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Informative References", + "url": "https://w3c.github.io/window-management/#informative" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Informative References", + "url": "https://www.w3.org/TR/window-management/#informative" + } + }, + "#introduction": { + "current": { + "number": "1", + "spec": "Window Management", + "text": "Introduction", + "url": "https://w3c.github.io/window-management/#introduction" + }, + "snapshot": { + "number": "1", + "spec": "Window Management", + "text": "Introduction", + "url": "https://www.w3.org/TR/window-management/#introduction" + } + }, + "#issues-index": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Issues Index", + "url": "https://w3c.github.io/window-management/#issues-index" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Issues Index", + "url": "https://www.w3.org/TR/window-management/#issues-index" + } + }, + "#motivations": { + "current": { + "number": "1.1", + "spec": "Window Management", + "text": "Motivating Use Cases", + "url": "https://w3c.github.io/window-management/#motivations" + }, + "snapshot": { + "number": "1.1", + "spec": "Window Management", + "text": "Motivating Use Cases", + "url": "https://www.w3.org/TR/window-management/#motivations" + } + }, + "#normative": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Normative References", + "url": "https://w3c.github.io/window-management/#normative" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Normative References", + "url": "https://www.w3.org/TR/window-management/#normative" + } + }, + "#privacy": { + "current": { + "number": "5", + "spec": "Window Management", + "text": "Privacy Considerations", + "url": "https://w3c.github.io/window-management/#privacy" + }, + "snapshot": { + "number": "5", + "spec": "Window Management", + "text": "Privacy Considerations", + "url": "https://www.w3.org/TR/window-management/#privacy" + } + }, + "#references": { + "current": { + "number": "", + "spec": "Window Management", + "text": "References", + "url": "https://w3c.github.io/window-management/#references" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "References", + "url": "https://www.w3.org/TR/window-management/#references" + } + }, + "#security": { + "current": { + "number": "4", + "spec": "Window Management", + "text": "Security Considerations", + "url": "https://w3c.github.io/window-management/#security" + }, + "snapshot": { + "number": "4", + "spec": "Window Management", + "text": "Security Considerations", + "url": "https://www.w3.org/TR/window-management/#security" + } + }, + "#sotd": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Status of this document", + "url": "https://w3c.github.io/window-management/#sotd" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Status of this document", + "url": "https://www.w3.org/TR/window-management/#sotd" + } + }, + "#title": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Window Management", + "url": "https://w3c.github.io/window-management/#title" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Window Management", + "url": "https://www.w3.org/TR/window-management/#title" + } + }, + "#toc": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Table of Contents", + "url": "https://w3c.github.io/window-management/#toc" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Table of Contents", + "url": "https://www.w3.org/TR/window-management/#toc" + } + }, + "#usage-overview": { + "current": { + "number": "1.2", + "spec": "Window Management", + "text": "Usage Overview", + "url": "https://w3c.github.io/window-management/#usage-overview" + }, + "snapshot": { + "number": "1.2", + "spec": "Window Management", + "text": "Usage Overview", + "url": "https://www.w3.org/TR/window-management/#usage-overview" + } + }, + "#usage-overview-initiate-multi-screen-experiences": { + "current": { + "number": "1.2.6", + "spec": "Window Management", + "text": "Initiate multi-screen experiences", + "url": "https://w3c.github.io/window-management/#usage-overview-initiate-multi-screen-experiences" + }, + "snapshot": { + "number": "1.2.6", + "spec": "Window Management", + "text": "Initiate multi-screen experiences", + "url": "https://www.w3.org/TR/window-management/#usage-overview-initiate-multi-screen-experiences" + } + }, + "#usage-overview-place-fullscreen-content-on-a-specific-screen": { + "current": { + "number": "1.2.4", + "spec": "Window Management", + "text": "Place fullscreen content on a specific screen", + "url": "https://w3c.github.io/window-management/#usage-overview-place-fullscreen-content-on-a-specific-screen" + }, + "snapshot": { + "number": "1.2.4", + "spec": "Window Management", + "text": "Place fullscreen content on a specific screen", + "url": "https://www.w3.org/TR/window-management/#usage-overview-place-fullscreen-content-on-a-specific-screen" + } + }, + "#usage-overview-place-windows-on-a-specific-screen": { + "current": { + "number": "1.2.5", + "spec": "Window Management", + "text": "Place windows on a specific screen", + "url": "https://w3c.github.io/window-management/#usage-overview-place-windows-on-a-specific-screen" + }, + "snapshot": { + "number": "1.2.5", + "spec": "Window Management", + "text": "Place windows on a specific screen", + "url": "https://www.w3.org/TR/window-management/#usage-overview-place-windows-on-a-specific-screen" + } + }, + "#usage-overview-screen-changes": { + "current": { + "number": "1.2.2", + "spec": "Window Management", + "text": "Detect Screen attribute changes", + "url": "https://w3c.github.io/window-management/#usage-overview-screen-changes" + }, + "snapshot": { + "number": "1.2.2", + "spec": "Window Management", + "text": "Detect Screen attribute changes", + "url": "https://www.w3.org/TR/window-management/#usage-overview-screen-changes" + } + }, + "#usage-overview-screen-details": { + "current": { + "number": "1.2.3", + "spec": "Window Management", + "text": "Request detailed screen information", + "url": "https://w3c.github.io/window-management/#usage-overview-screen-details" + }, + "snapshot": { + "number": "1.2.3", + "spec": "Window Management", + "text": "Request detailed screen information", + "url": "https://www.w3.org/TR/window-management/#usage-overview-screen-details" + } + }, + "#usage-overview-screen-extended": { + "current": { + "number": "1.2.1", + "spec": "Window Management", + "text": "Detect the presence of multiple screens", + "url": "https://w3c.github.io/window-management/#usage-overview-screen-extended" + }, + "snapshot": { + "number": "1.2.1", + "spec": "Window Management", + "text": "Detect the presence of multiple screens", + "url": "https://www.w3.org/TR/window-management/#usage-overview-screen-extended" + } + }, + "#w3c-conformance": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Conformance", + "url": "https://w3c.github.io/window-management/#w3c-conformance" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Conformance", + "url": "https://www.w3.org/TR/window-management/#w3c-conformance" + } + }, + "#w3c-conformant-algorithms": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Conformant Algorithms", + "url": "https://w3c.github.io/window-management/#w3c-conformant-algorithms" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Conformant Algorithms", + "url": "https://www.w3.org/TR/window-management/#w3c-conformant-algorithms" + } + }, + "#w3c-conventions": { + "current": { + "number": "", + "spec": "Window Management", + "text": "Document conventions", + "url": "https://w3c.github.io/window-management/#w3c-conventions" + }, + "snapshot": { + "number": "", + "spec": "Window Management", + "text": "Document conventions", + "url": "https://www.w3.org/TR/window-management/#w3c-conventions" + } + } +} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-window-placement.json b/bikeshed/spec-data/readonly/headings/headings-window-placement.json deleted file mode 100644 index 23fcb75923..0000000000 --- a/bikeshed/spec-data/readonly/headings/headings-window-placement.json +++ /dev/null @@ -1,842 +0,0 @@ -{ - "#a11y": { - "current": { - "number": "6", - "spec": "Multi-Screen Window Placement", - "text": "Accessibility Considerations", - "url": "https://w3c.github.io/window-placement/#a11y" - }, - "snapshot": { - "number": "6", - "spec": "Multi-Screen Window Placement", - "text": "Accessibility Considerations", - "url": "https://www.w3.org/TR/window-placement/#a11y" - } - }, - "#abstract": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Abstract", - "url": "https://w3c.github.io/window-placement/#abstract" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Abstract", - "url": "https://www.w3.org/TR/window-placement/#abstract" - } - }, - "#acknowledgements": { - "current": { - "number": "8", - "spec": "Multi-Screen Window Placement", - "text": "Acknowledgements", - "url": "https://w3c.github.io/window-placement/#acknowledgements" - }, - "snapshot": { - "number": "8", - "spec": "Multi-Screen Window Placement", - "text": "Acknowledgements", - "url": "https://www.w3.org/TR/window-placement/#acknowledgements" - } - }, - "#api": { - "current": { - "number": "3", - "spec": "Multi-Screen Window Placement", - "text": "API", - "url": "https://w3c.github.io/window-placement/#api" - }, - "snapshot": { - "number": "3", - "spec": "Multi-Screen Window Placement", - "text": "API", - "url": "https://www.w3.org/TR/window-placement/#api" - } - }, - "#api-element-requestfullscreen-method-definition-changes": { - "current": { - "number": "3.5.1", - "spec": "Multi-Screen Window Placement", - "text": "Element.requestFullscreen() method definition changes", - "url": "https://w3c.github.io/window-placement/#api-element-requestfullscreen-method-definition-changes" - }, - "snapshot": { - "number": "3.5.1", - "spec": "Multi-Screen Window Placement", - "text": "Element.requestFullscreen() method definition changes", - "url": "https://www.w3.org/TR/window-placement/#api-element-requestfullscreen-method-definition-changes" - } - }, - "#api-extensions-to-fullscreen-options": { - "current": { - "number": "3.5", - "spec": "Multi-Screen Window Placement", - "text": "Extensions to FullscreenOptions", - "url": "https://w3c.github.io/window-placement/#api-extensions-to-fullscreen-options" - }, - "snapshot": { - "number": "3.5", - "spec": "Multi-Screen Window Placement", - "text": "Extensions to FullscreenOptions", - "url": "https://www.w3.org/TR/window-placement/#api-extensions-to-fullscreen-options" - } - }, - "#api-extensions-to-screen": { - "current": { - "number": "3.1", - "spec": "Multi-Screen Window Placement", - "text": "Extensions to the Screen interface", - "url": "https://w3c.github.io/window-placement/#api-extensions-to-screen" - }, - "snapshot": { - "number": "3.1", - "spec": "Multi-Screen Window Placement", - "text": "Extensions to the Screen interface", - "url": "https://www.w3.org/TR/window-placement/#api-extensions-to-screen" - } - }, - "#api-extensions-to-window": { - "current": { - "number": "3.2", - "spec": "Multi-Screen Window Placement", - "text": "Extensions to the Window interface", - "url": "https://w3c.github.io/window-placement/#api-extensions-to-window" - }, - "snapshot": { - "number": "3.2", - "spec": "Multi-Screen Window Placement", - "text": "Extensions to the Window interface", - "url": "https://www.w3.org/TR/window-placement/#api-extensions-to-window" - } - }, - "#api-permission-api-integration": { - "current": { - "number": "3.6", - "spec": "Multi-Screen Window Placement", - "text": "Permission API Integration", - "url": "https://w3c.github.io/window-placement/#api-permission-api-integration" - }, - "snapshot": { - "number": "3.6", - "spec": "Multi-Screen Window Placement", - "text": "Permission API Integration", - "url": "https://www.w3.org/TR/window-placement/#api-permission-api-integration" - } - }, - "#api-permission-policy-integration": { - "current": { - "number": "3.7", - "spec": "Multi-Screen Window Placement", - "text": "Permission Policy integration", - "url": "https://w3c.github.io/window-placement/#api-permission-policy-integration" - }, - "snapshot": { - "number": "3.7", - "spec": "Multi-Screen Window Placement", - "text": "Permission Policy integration", - "url": "https://www.w3.org/TR/window-placement/#api-permission-policy-integration" - } - }, - "#api-screen-isExtended-attribute": { - "current": { - "number": "3.1.1", - "spec": "Multi-Screen Window Placement", - "text": "isExtended attribute", - "url": "https://w3c.github.io/window-placement/#api-screen-isExtended-attribute" - }, - "snapshot": { - "number": "3.1.1", - "spec": "Multi-Screen Window Placement", - "text": "isExtended attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screen-isExtended-attribute" - } - }, - "#api-screen-onchange-attribute": { - "current": { - "number": "3.1.2", - "spec": "Multi-Screen Window Placement", - "text": "onchange attribute", - "url": "https://w3c.github.io/window-placement/#api-screen-onchange-attribute" - }, - "snapshot": { - "number": "3.1.2", - "spec": "Multi-Screen Window Placement", - "text": "onchange attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screen-onchange-attribute" - } - }, - "#api-screendetailed-interface": { - "current": { - "number": "3.4", - "spec": "Multi-Screen Window Placement", - "text": "The ScreenDetailed interface", - "url": "https://w3c.github.io/window-placement/#api-screendetailed-interface" - }, - "snapshot": { - "number": "3.4", - "spec": "Multi-Screen Window Placement", - "text": "The ScreenDetailed interface", - "url": "https://www.w3.org/TR/window-placement/#api-screendetailed-interface" - } - }, - "#api-screendetailed-onchange-attribute": { - "current": { - "number": "3.4.1", - "spec": "Multi-Screen Window Placement", - "text": "onchange attribute", - "url": "https://w3c.github.io/window-placement/#api-screendetailed-onchange-attribute" - }, - "snapshot": { - "number": "3.4.1", - "spec": "Multi-Screen Window Placement", - "text": "onchange attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screendetailed-onchange-attribute" - } - }, - "#api-screendetails-currentscreen-attribute": { - "current": { - "number": "3.3.2", - "spec": "Multi-Screen Window Placement", - "text": "currentScreen attribute", - "url": "https://w3c.github.io/window-placement/#api-screendetails-currentscreen-attribute" - }, - "snapshot": { - "number": "3.3.2", - "spec": "Multi-Screen Window Placement", - "text": "currentScreen attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screendetails-currentscreen-attribute" - } - }, - "#api-screendetails-interface": { - "current": { - "number": "3.3", - "spec": "Multi-Screen Window Placement", - "text": "ScreenDetails interface", - "url": "https://w3c.github.io/window-placement/#api-screendetails-interface" - }, - "snapshot": { - "number": "3.3", - "spec": "Multi-Screen Window Placement", - "text": "ScreenDetails interface", - "url": "https://www.w3.org/TR/window-placement/#api-screendetails-interface" - } - }, - "#api-screendetails-oncurrentscreenchange-attribute": { - "current": { - "number": "3.3.4", - "spec": "Multi-Screen Window Placement", - "text": "oncurrentscreenchange attribute", - "url": "https://w3c.github.io/window-placement/#api-screendetails-oncurrentscreenchange-attribute" - }, - "snapshot": { - "number": "3.3.4", - "spec": "Multi-Screen Window Placement", - "text": "oncurrentscreenchange attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screendetails-oncurrentscreenchange-attribute" - } - }, - "#api-screendetails-onscreenschange-attribute": { - "current": { - "number": "3.3.3", - "spec": "Multi-Screen Window Placement", - "text": "onscreenschange attribute", - "url": "https://w3c.github.io/window-placement/#api-screendetails-onscreenschange-attribute" - }, - "snapshot": { - "number": "3.3.3", - "spec": "Multi-Screen Window Placement", - "text": "onscreenschange attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screendetails-onscreenschange-attribute" - } - }, - "#api-screendetails-screens-attribute": { - "current": { - "number": "3.3.1", - "spec": "Multi-Screen Window Placement", - "text": "screens attribute", - "url": "https://w3c.github.io/window-placement/#api-screendetails-screens-attribute" - }, - "snapshot": { - "number": "3.3.1", - "spec": "Multi-Screen Window Placement", - "text": "screens attribute", - "url": "https://www.w3.org/TR/window-placement/#api-screendetails-screens-attribute" - } - }, - "#api-window-attribute-and-method-definition-changes": { - "current": { - "number": "3.2.2", - "spec": "Multi-Screen Window Placement", - "text": "Window attribute and method definition changes", - "url": "https://w3c.github.io/window-placement/#api-window-attribute-and-method-definition-changes" - }, - "snapshot": { - "number": "3.2.2", - "spec": "Multi-Screen Window Placement", - "text": "Window attribute and method definition changes", - "url": "https://www.w3.org/TR/window-placement/#api-window-attribute-and-method-definition-changes" - } - }, - "#api-window-getScreenDetails-method": { - "current": { - "number": "3.2.1", - "spec": "Multi-Screen Window Placement", - "text": "getScreenDetails() method", - "url": "https://w3c.github.io/window-placement/#api-window-getScreenDetails-method" - }, - "snapshot": { - "number": "3.2.1", - "spec": "Multi-Screen Window Placement", - "text": "getScreenDetails() method", - "url": "https://www.w3.org/TR/window-placement/#api-window-getScreenDetails-method" - } - }, - "#api-window-open-method-definition-changes": { - "current": { - "number": "3.2.3", - "spec": "Multi-Screen Window Placement", - "text": "Window.open() method definition changes", - "url": "https://w3c.github.io/window-placement/#api-window-open-method-definition-changes" - }, - "snapshot": { - "number": "3.2.3", - "spec": "Multi-Screen Window Placement", - "text": "Window.open() method definition changes", - "url": "https://www.w3.org/TR/window-placement/#api-window-open-method-definition-changes" - } - }, - "#concept-available-screen-area": { - "current": { - "number": "2.4", - "spec": "Multi-Screen Window Placement", - "text": "Available screen area", - "url": "https://w3c.github.io/window-placement/#concept-available-screen-area" - }, - "snapshot": { - "number": "2.4", - "spec": "Multi-Screen Window Placement", - "text": "Available screen area", - "url": "https://www.w3.org/TR/window-placement/#concept-available-screen-area" - } - }, - "#concept-available-screen-position": { - "current": { - "number": "2.7", - "spec": "Multi-Screen Window Placement", - "text": "Available screen position", - "url": "https://w3c.github.io/window-placement/#concept-available-screen-position" - }, - "snapshot": { - "number": "2.7", - "spec": "Multi-Screen Window Placement", - "text": "Available screen position", - "url": "https://www.w3.org/TR/window-placement/#concept-available-screen-position" - } - }, - "#concept-current-screen": { - "current": { - "number": "2.10", - "spec": "Multi-Screen Window Placement", - "text": "Current screen", - "url": "https://w3c.github.io/window-placement/#concept-current-screen" - }, - "snapshot": { - "number": "2.10", - "spec": "Multi-Screen Window Placement", - "text": "Current screen", - "url": "https://www.w3.org/TR/window-placement/#concept-current-screen" - } - }, - "#concept-internal-screen": { - "current": { - "number": "2.9", - "spec": "Multi-Screen Window Placement", - "text": "Internal screen", - "url": "https://w3c.github.io/window-placement/#concept-internal-screen" - }, - "snapshot": { - "number": "2.9", - "spec": "Multi-Screen Window Placement", - "text": "Internal screen", - "url": "https://www.w3.org/TR/window-placement/#concept-internal-screen" - } - }, - "#concept-observable-screen-properties": { - "current": { - "number": "2.11", - "spec": "Multi-Screen Window Placement", - "text": "Observable screen properties", - "url": "https://w3c.github.io/window-placement/#concept-observable-screen-properties" - }, - "snapshot": { - "number": "2.11", - "spec": "Multi-Screen Window Placement", - "text": "Observable screen properties", - "url": "https://www.w3.org/TR/window-placement/#concept-observable-screen-properties" - } - }, - "#concept-primary-screen": { - "current": { - "number": "2.8", - "spec": "Multi-Screen Window Placement", - "text": "Primary screen", - "url": "https://w3c.github.io/window-placement/#concept-primary-screen" - }, - "snapshot": { - "number": "2.8", - "spec": "Multi-Screen Window Placement", - "text": "Primary screen", - "url": "https://www.w3.org/TR/window-placement/#concept-primary-screen" - } - }, - "#concept-screen": { - "current": { - "number": "2.1", - "spec": "Multi-Screen Window Placement", - "text": "Screen", - "url": "https://w3c.github.io/window-placement/#concept-screen" - }, - "snapshot": { - "number": "2.1", - "spec": "Multi-Screen Window Placement", - "text": "Screen", - "url": "https://www.w3.org/TR/window-placement/#concept-screen" - } - }, - "#concept-screen-area": { - "current": { - "number": "2.3", - "spec": "Multi-Screen Window Placement", - "text": "Screen area", - "url": "https://w3c.github.io/window-placement/#concept-screen-area" - }, - "snapshot": { - "number": "2.3", - "spec": "Multi-Screen Window Placement", - "text": "Screen area", - "url": "https://www.w3.org/TR/window-placement/#concept-screen-area" - } - }, - "#concept-screen-pixel": { - "current": { - "number": "2.2", - "spec": "Multi-Screen Window Placement", - "text": "Screen pixel", - "url": "https://w3c.github.io/window-placement/#concept-screen-pixel" - }, - "snapshot": { - "number": "2.2", - "spec": "Multi-Screen Window Placement", - "text": "Screen pixel", - "url": "https://www.w3.org/TR/window-placement/#concept-screen-pixel" - } - }, - "#concept-screen-position": { - "current": { - "number": "2.6", - "spec": "Multi-Screen Window Placement", - "text": "Screen position", - "url": "https://w3c.github.io/window-placement/#concept-screen-position" - }, - "snapshot": { - "number": "2.6", - "spec": "Multi-Screen Window Placement", - "text": "Screen position", - "url": "https://www.w3.org/TR/window-placement/#concept-screen-position" - } - }, - "#concept-virtual-screen-arrangement": { - "current": { - "number": "2.5", - "spec": "Multi-Screen Window Placement", - "text": "Virtual screen arrangement", - "url": "https://w3c.github.io/window-placement/#concept-virtual-screen-arrangement" - }, - "snapshot": { - "number": "2.5", - "spec": "Multi-Screen Window Placement", - "text": "Virtual screen arrangement", - "url": "https://www.w3.org/TR/window-placement/#concept-virtual-screen-arrangement" - } - }, - "#concepts": { - "current": { - "number": "2", - "spec": "Multi-Screen Window Placement", - "text": "Concepts", - "url": "https://w3c.github.io/window-placement/#concepts" - }, - "snapshot": { - "number": "2", - "spec": "Multi-Screen Window Placement", - "text": "Concepts", - "url": "https://www.w3.org/TR/window-placement/#concepts" - } - }, - "#i18n": { - "current": { - "number": "7", - "spec": "Multi-Screen Window Placement", - "text": "Internationalization Considerations", - "url": "https://w3c.github.io/window-placement/#i18n" - }, - "snapshot": { - "number": "7", - "spec": "Multi-Screen Window Placement", - "text": "Internationalization Considerations", - "url": "https://www.w3.org/TR/window-placement/#i18n" - } - }, - "#idl-index": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "IDL Index", - "url": "https://w3c.github.io/window-placement/#idl-index" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "IDL Index", - "url": "https://www.w3.org/TR/window-placement/#idl-index" - } - }, - "#index": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Index", - "url": "https://w3c.github.io/window-placement/#index" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Index", - "url": "https://www.w3.org/TR/window-placement/#index" - } - }, - "#index-defined-elsewhere": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Terms defined by reference", - "url": "https://w3c.github.io/window-placement/#index-defined-elsewhere" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Terms defined by reference", - "url": "https://www.w3.org/TR/window-placement/#index-defined-elsewhere" - } - }, - "#index-defined-here": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Terms defined by this specification", - "url": "https://w3c.github.io/window-placement/#index-defined-here" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Terms defined by this specification", - "url": "https://www.w3.org/TR/window-placement/#index-defined-here" - } - }, - "#informative": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Informative References", - "url": "https://w3c.github.io/window-placement/#informative" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Informative References", - "url": "https://www.w3.org/TR/window-placement/#informative" - } - }, - "#introduction": { - "current": { - "number": "1", - "spec": "Multi-Screen Window Placement", - "text": "Introduction", - "url": "https://w3c.github.io/window-placement/#introduction" - }, - "snapshot": { - "number": "1", - "spec": "Multi-Screen Window Placement", - "text": "Introduction", - "url": "https://www.w3.org/TR/window-placement/#introduction" - } - }, - "#issues-index": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Issues Index", - "url": "https://w3c.github.io/window-placement/#issues-index" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Issues Index", - "url": "https://www.w3.org/TR/window-placement/#issues-index" - } - }, - "#motivations": { - "current": { - "number": "1.1", - "spec": "Multi-Screen Window Placement", - "text": "Motivating Use Cases", - "url": "https://w3c.github.io/window-placement/#motivations" - }, - "snapshot": { - "number": "1.1", - "spec": "Multi-Screen Window Placement", - "text": "Motivating Use Cases", - "url": "https://www.w3.org/TR/window-placement/#motivations" - } - }, - "#normative": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Normative References", - "url": "https://w3c.github.io/window-placement/#normative" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Normative References", - "url": "https://www.w3.org/TR/window-placement/#normative" - } - }, - "#privacy": { - "current": { - "number": "5", - "spec": "Multi-Screen Window Placement", - "text": "Privacy Considerations", - "url": "https://w3c.github.io/window-placement/#privacy" - }, - "snapshot": { - "number": "5", - "spec": "Multi-Screen Window Placement", - "text": "Privacy Considerations", - "url": "https://www.w3.org/TR/window-placement/#privacy" - } - }, - "#references": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "References", - "url": "https://w3c.github.io/window-placement/#references" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "References", - "url": "https://www.w3.org/TR/window-placement/#references" - } - }, - "#security": { - "current": { - "number": "4", - "spec": "Multi-Screen Window Placement", - "text": "Security Considerations", - "url": "https://w3c.github.io/window-placement/#security" - }, - "snapshot": { - "number": "4", - "spec": "Multi-Screen Window Placement", - "text": "Security Considerations", - "url": "https://www.w3.org/TR/window-placement/#security" - } - }, - "#sotd": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Status of this document", - "url": "https://w3c.github.io/window-placement/#sotd" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Status of this document", - "url": "https://www.w3.org/TR/window-placement/#sotd" - } - }, - "#title": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Multi-Screen Window Placement", - "url": "https://w3c.github.io/window-placement/#title" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Multi-Screen Window Placement", - "url": "https://www.w3.org/TR/window-placement/#title" - } - }, - "#toc": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Table of Contents", - "url": "https://w3c.github.io/window-placement/#toc" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Table of Contents", - "url": "https://www.w3.org/TR/window-placement/#toc" - } - }, - "#usage-overview": { - "current": { - "number": "1.2", - "spec": "Multi-Screen Window Placement", - "text": "Usage Overview", - "url": "https://w3c.github.io/window-placement/#usage-overview" - }, - "snapshot": { - "number": "1.2", - "spec": "Multi-Screen Window Placement", - "text": "Usage Overview", - "url": "https://www.w3.org/TR/window-placement/#usage-overview" - } - }, - "#usage-overview-initiate-multi-screen-experiences": { - "current": { - "number": "1.2.6", - "spec": "Multi-Screen Window Placement", - "text": "Initiate multi-screen experiences", - "url": "https://w3c.github.io/window-placement/#usage-overview-initiate-multi-screen-experiences" - }, - "snapshot": { - "number": "1.2.6", - "spec": "Multi-Screen Window Placement", - "text": "Initiate multi-screen experiences", - "url": "https://www.w3.org/TR/window-placement/#usage-overview-initiate-multi-screen-experiences" - } - }, - "#usage-overview-place-fullscreen-content-on-a-specific-screen": { - "current": { - "number": "1.2.4", - "spec": "Multi-Screen Window Placement", - "text": "Place fullscreen content on a specific screen", - "url": "https://w3c.github.io/window-placement/#usage-overview-place-fullscreen-content-on-a-specific-screen" - }, - "snapshot": { - "number": "1.2.4", - "spec": "Multi-Screen Window Placement", - "text": "Place fullscreen content on a specific screen", - "url": "https://www.w3.org/TR/window-placement/#usage-overview-place-fullscreen-content-on-a-specific-screen" - } - }, - "#usage-overview-place-windows-on-a-specific-screen": { - "current": { - "number": "1.2.5", - "spec": "Multi-Screen Window Placement", - "text": "Place windows on a specific screen", - "url": "https://w3c.github.io/window-placement/#usage-overview-place-windows-on-a-specific-screen" - }, - "snapshot": { - "number": "1.2.5", - "spec": "Multi-Screen Window Placement", - "text": "Place windows on a specific screen", - "url": "https://www.w3.org/TR/window-placement/#usage-overview-place-windows-on-a-specific-screen" - } - }, - "#usage-overview-screen-changes": { - "current": { - "number": "1.2.2", - "spec": "Multi-Screen Window Placement", - "text": "Detect Screen attribute changes", - "url": "https://w3c.github.io/window-placement/#usage-overview-screen-changes" - }, - "snapshot": { - "number": "1.2.2", - "spec": "Multi-Screen Window Placement", - "text": "Detect Screen attribute changes", - "url": "https://www.w3.org/TR/window-placement/#usage-overview-screen-changes" - } - }, - "#usage-overview-screen-details": { - "current": { - "number": "1.2.3", - "spec": "Multi-Screen Window Placement", - "text": "Request detailed screen information", - "url": "https://w3c.github.io/window-placement/#usage-overview-screen-details" - }, - "snapshot": { - "number": "1.2.3", - "spec": "Multi-Screen Window Placement", - "text": "Request detailed screen information", - "url": "https://www.w3.org/TR/window-placement/#usage-overview-screen-details" - } - }, - "#usage-overview-screen-extended": { - "current": { - "number": "1.2.1", - "spec": "Multi-Screen Window Placement", - "text": "Detect the presence of multiple screens", - "url": "https://w3c.github.io/window-placement/#usage-overview-screen-extended" - }, - "snapshot": { - "number": "1.2.1", - "spec": "Multi-Screen Window Placement", - "text": "Detect the presence of multiple screens", - "url": "https://www.w3.org/TR/window-placement/#usage-overview-screen-extended" - } - }, - "#w3c-conformance": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Conformance", - "url": "https://w3c.github.io/window-placement/#w3c-conformance" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Conformance", - "url": "https://www.w3.org/TR/window-placement/#w3c-conformance" - } - }, - "#w3c-conformant-algorithms": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Conformant Algorithms", - "url": "https://w3c.github.io/window-placement/#w3c-conformant-algorithms" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Conformant Algorithms", - "url": "https://www.w3.org/TR/window-placement/#w3c-conformant-algorithms" - } - }, - "#w3c-conventions": { - "current": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Document conventions", - "url": "https://w3c.github.io/window-placement/#w3c-conventions" - }, - "snapshot": { - "number": "", - "spec": "Multi-Screen Window Placement", - "text": "Document conventions", - "url": "https://www.w3.org/TR/window-placement/#w3c-conventions" - } - } -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/headings/headings-woff.json b/bikeshed/spec-data/readonly/headings/headings-woff.json index e920809b73..0395627293 100644 --- a/bikeshed/spec-data/readonly/headings/headings-woff.json +++ b/bikeshed/spec-data/readonly/headings/headings-woff.json @@ -169,43 +169,43 @@ }, "#appendix-a": { "current": { - "number": "", + "number": "A", "spec": "WOFF 1.0", - "text": "Appendix A: Extended Metadata Examples", + "text": "Extended Metadata Examples", "url": "https://w3c.github.io/woff/woff1/spec/Overview.html#appendix-a" }, "snapshot": { - "number": "", + "number": "A", "spec": "WOFF 1.0", - "text": "Appendix A: Extended Metadata Examples", + "text": "Extended Metadata Examples", "url": "https://www.w3.org/TR/WOFF/#appendix-a" } }, "#appendix-b": { "current": { - "number": "", + "number": "B", "spec": "WOFF 1.0", - "text": "Appendix B: Media Type registration", + "text": "Media Type registration", "url": "https://w3c.github.io/woff/woff1/spec/Overview.html#appendix-b" }, "snapshot": { - "number": "", + "number": "B", "spec": "WOFF 1.0", - "text": "Appendix B: Media Type registration", + "text": "Media Type registration", "url": "https://www.w3.org/TR/WOFF/#appendix-b" } }, "#changes": { "current": { - "number": "", + "number": "C", "spec": "WOFF 1.0", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://w3c.github.io/woff/woff1/spec/Overview.html#changes" }, "snapshot": { - "number": "", + "number": "C", "spec": "WOFF 1.0", - "text": "Appendix C: Changes", + "text": "Changes", "url": "https://www.w3.org/TR/WOFF/#changes" } }, diff --git a/bikeshed/spec-data/readonly/headings/headings-woff2.json b/bikeshed/spec-data/readonly/headings/headings-woff2.json index 9237beef5a..9c9c8dd1c7 100644 --- a/bikeshed/spec-data/readonly/headings/headings-woff2.json +++ b/bikeshed/spec-data/readonly/headings/headings-woff2.json @@ -13,6 +13,20 @@ "url": "https://www.w3.org/TR/WOFF2/#255UInt16" } }, + "#BoundingBox": { + "current": { + "number": "", + "spec": "WOFF 2.0", + "text": "Decoding of Bounding Boxes", + "url": "https://w3c.github.io/woff/woff2/#BoundingBox" + }, + "snapshot": { + "number": "", + "spec": "WOFF 2.0", + "text": "Decoding of Bounding Boxes", + "url": "https://www.w3.org/TR/WOFF2/#BoundingBox" + } + }, "#CompositeGlyph": { "current": { "number": "", diff --git a/bikeshed/spec-data/readonly/manifest.txt b/bikeshed/spec-data/readonly/manifest.txt index e0faf68ef5..527cbedabd 100644 --- a/bikeshed/spec-data/readonly/manifest.txt +++ b/bikeshed/spec-data/readonly/manifest.txt @@ -1,2390 +1,2548 @@ -2023-02-23 23:48:09.723416 -0 -0b10bbe389c7480e4db2f079700f2e2a anchors/anchors-1_.data -85d6a71deaaf13f6a155b9a047847294 anchors/anchors-1d.data -5c1f66078e2d8b3edcc9b7e91c8b1cb9 anchors/anchors-1s.data -f4da28e42285959280b620ca1245a11a anchors/anchors-1u.data -b5f07bb1fce8e255e24241f8a5c0d7df anchors/anchors-24.data -25abd95ea06ce7303b520901bbec18e6 anchors/anchors-2d.data -6eed286537241156ef193c68f5cd3f04 anchors/anchors-2g.data -0ed3560e8ecc867e2a06efeb4b32c231 anchors/anchors-2n.data -6d4911a6d417f1346045ffa75cfaba1c anchors/anchors-2u.data -ec652929c6e3f81398bc046a90cf4b29 anchors/anchors-2x.data -00f3fb36c4630fea6bfb3fae7862e861 anchors/anchors-34.data -623890a487ccf0245bde28bff984a9e9 anchors/anchors-3d.data -f3cb386110dce5578062636c2cb8e261 anchors/anchors-3g.data -b5d530af07e8c1619074eee864d93fab anchors/anchors-3r.data -dd2d9a306e0b8b2e2117a9b97bda74bb anchors/anchors-4g.data -1e5b48cf3bc30ab9ab1a4aa5a43f4895 anchors/anchors-4t.data -939acf258fb777940260b844b0957b4c anchors/anchors-4x.data -658afd52c466fbbdabdabaafa648619a anchors/anchors-54.data -b95942ab24219a5c1d3493cabcb03554 anchors/anchors-55.data -3e877f7fa9aa28ebeac62a9c919a71d8 anchors/anchors-6d.data -7167de49f734911f4667b0543f4a0cf5 anchors/anchors-__.data -ab5c66bd1d69f2ed0300e3fc3dd8de06 anchors/anchors-a3.data -21b94d3c56e755b4760128d02a9a1b66 anchors/anchors-a4.data -9948c1e78eee7ecd4b4c38b41cdf75f5 anchors/anchors-a5.data -1a42a3401731f1a9366f98be183a1771 anchors/anchors-a9.data -6d68793cf7cf3968ed6dbd9c59e0ec36 anchors/anchors-a_.data -bc55902566de58f58c18c0cc500372af anchors/anchors-aa.data -4eb355cb69a63c0c9bac1831254b6cbd anchors/anchors-ab.data -4b8555dce607a4ae1a2d4e88316a527b anchors/anchors-ac.data -e95fd448fb74b0948dc343858dc46f26 anchors/anchors-ad.data -e1f77a66c910096df31d5596a952a68a anchors/anchors-ae.data -4305384dbff0e3c08a262c21ee60c563 anchors/anchors-af.data -aab006c52c041a669680d9d1ff917ff8 anchors/anchors-ag.data -e89c9c2cce3778f354a6af5ea6fb3fc1 anchors/anchors-ak.data -634ee4910c85845cd413b67f1689c01e anchors/anchors-al.data -8fbe75f1ab584a343648c63d5eab670a anchors/anchors-am.data -825d8a5ebcad925a54a12b678034930b anchors/anchors-an.data -73607521618464c2df5bc0202d9318f3 anchors/anchors-ap.data -37cb87f43d3dd87e27e0f1dd9aaa39da anchors/anchors-aq.data -b2e52aad2935a6b994c928b427065797 anchors/anchors-ar.data -3b0512fbea60397e3ef2fb6b47f950d0 anchors/anchors-as.data -1a4b5733dc8a5f3ecf2787af908a1116 anchors/anchors-at.data -a3da314c452b126c39747fa76fb01454 anchors/anchors-au.data -d7dd4c572f8fd868a1a1cbd4ec8663be anchors/anchors-av.data -3ff3876cb003d2091c61c2168dd5fb7e anchors/anchors-aw.data -ab01d6effd7449358f899e7f72b0546a anchors/anchors-ax.data -a18b45f2a323d610fe29f8637438aa3a anchors/anchors-ay.data -e077e2bc501dcf5fb6dc39b048217cf8 anchors/anchors-az.data -deafbff26c2dfaf636f15bac8c9b1f20 anchors/anchors-b4.data -f7aa9724ef0ca030a38e1bd594557071 anchors/anchors-b5.data -66309ff28c8ef4eca9d0c03e00b93d93 anchors/anchors-b_.data -391d9c8dc7004301f85ed5b7f93febb0 anchors/anchors-ba.data -29bc0b9b1d9676c104a0f1a842b084a4 anchors/anchors-bc.data -f84431de7ffdad72d01e094b9db0b9f6 anchors/anchors-bd.data -9e147b30209f6fb291cb65bde9c86e8c anchors/anchors-be.data -38e006cd66d2ce1c2591c9d5fd2bd498 anchors/anchors-bf.data -a0174a111d21cab524d7f7d0fb79ffab anchors/anchors-bg.data -1de8ef7a255ce59106e18e0c8437c82b anchors/anchors-bi.data -21ff226bb680122774ca6f2305bb45c9 anchors/anchors-bl.data -f814859d16ca4402a9a9ed85ca28dbb7 anchors/anchors-bm.data -3c22fcce77fb99005765841b7db1c2a1 anchors/anchors-bo.data -7e2602e7c562795abd503e4054c45fc4 anchors/anchors-br.data -3379383df54c5cdf3678f7910833a8d9 anchors/anchors-bs.data -93dd2d4414c1228fe0774f1232a602c2 anchors/anchors-bt.data -48a60230c8891e7a10311577b21d5833 anchors/anchors-bu.data -650b5c7e9588439df7dfc64a1b0ef6c9 anchors/anchors-by.data -e0080e222e61c376dd07995c5b003da1 anchors/anchors-c0.data -d97ae7bc362b9a0f1da447019fd30aae anchors/anchors-c_.data -e2ba8fd9665ee080919025a33924c312 anchors/anchors-ca.data -35bb4b49e1b42ef261830ceb5293af95 anchors/anchors-cb.data -7990aba879bb87a36fdde5e4b80f0b3e anchors/anchors-cc.data -6b81f2fecaaf43f8d5e001be712cb81b anchors/anchors-cd.data -e3b45538ce21ebbb1c77bdeddd14e3b5 anchors/anchors-ce.data -0de27911b97801f0720475d42bd52fff anchors/anchors-cf.data -b626abb4af3fada747c518f934b7c1f4 anchors/anchors-ch.data -b59c920dadfc90de2714cd9798a6c067 anchors/anchors-ci.data -3e7094b8581da0dcf45de20ac3055c4d anchors/anchors-cj.data -c4ff9a2bc5196005839b9b84bb53b0a5 anchors/anchors-cl.data -895dd0b37b37114d0a0e4990e1e5ac45 anchors/anchors-cm.data -b54fc918c438da7acf07a1e55d23145b anchors/anchors-cn.data -5ed1639a54580a1d5f543fb5e22b0c81 anchors/anchors-co.data -17836bb0299a246ff0918014d4af93a7 anchors/anchors-cp.data -9ced759427ca30b3ad441cf6b6f8654a anchors/anchors-cq.data -79dd160bfe04429376c66b62c4fa5ba8 anchors/anchors-cr.data -c68270b3edeff5eda25f0d3a7a7ef4cf anchors/anchors-cs.data -0eac4f058fdc8799c5c3c927e24d160f anchors/anchors-ct.data -431983bd97e5f9f5764c3c798b4d7e91 anchors/anchors-cu.data -74dae392d47cf36ce03b026b503ae4e2 anchors/anchors-cw.data -f8ce5dbe7026e44828c3c8dd98a78e76 anchors/anchors-cx.data -60fff9caeda1e9c7cfbd86b549f81745 anchors/anchors-cy.data -c1af51c03c6ec54ac7a18d2c2c2142c2 anchors/anchors-d5.data -b8f277d911af6cd7cce616fc4c8cff8f anchors/anchors-d6.data -4b298a2edd9dd7c6301e5b741ecc58c6 anchors/anchors-d_.data -db55fb483ddcdf4250930d7e05eb1b21 anchors/anchors-da.data -4f0bcdf5708abf3be4cc8f6280ec4ee6 anchors/anchors-db.data -60d112a0a70d913a67dda9f7d4cbbccb anchors/anchors-dc.data -bb45677f21ab111755c7db50ccd268d2 anchors/anchors-dd.data -03568cf49b762a036ca05b1ced386db6 anchors/anchors-de.data -8d57dde1c210ef4867ca9cf4d9f9bf51 anchors/anchors-df.data -2a6fa7aef744f70eac2a0754d5b5c63f anchors/anchors-di.data -bc776d1b034a42f53bf923ee1a66bc49 anchors/anchors-dl.data -800a1b54353890511f7eb3c01b19c2f4 anchors/anchors-dn.data -68e692087da3a2ddc936c711119653ed anchors/anchors-do.data -c3ab608f06f40f8f7a5ab8695f3558e3 anchors/anchors-dp.data -927bb7d9622601c8eca72d90d8ad182e anchors/anchors-dq.data -1f373b776876b1b268bb1e8b7c81b80d anchors/anchors-dr.data -df6031c946747389ecc5a592aac12180 anchors/anchors-ds.data -a2aeeba60a45d681c6ae8387c6a2a654 anchors/anchors-dt.data -44e1135d9250b87985273a221782eb06 anchors/anchors-du.data -6cfcbc405dc6ed44ac34bfad9ba2bf76 anchors/anchors-dv.data -96dfe0e1128437eee07fd5b0c021ca86 anchors/anchors-dx.data -ef9fa647c8d74bb4e2a0d862607e958b anchors/anchors-dy.data -7d8a4375811d6a2d28f644f1de98830d anchors/anchors-e_.data -db165614fa68811f0986a2e29bc697c9 anchors/anchors-ea.data -e21021f88290d9ea426a0b155f5af910 anchors/anchors-ec.data -59455cf7c66fbf8d0a0297fd59518e03 anchors/anchors-ed.data -a665d55b9d6f4c7ca784e23677663656 anchors/anchors-ef.data -6909dac6df735a0f26b270261cca8402 anchors/anchors-ei.data -8e30099f364f994ab095433de9364d12 anchors/anchors-el.data -69eec274abe1b63acf5f5e20ad1356a0 anchors/anchors-em.data -4269ebef6b8f9f4b1989d61c8cedb10e anchors/anchors-en.data -e34213a4f67d9a3aa9ecc351dd0fcfc5 anchors/anchors-eo.data -39862e41301299bd665e47709c367c51 anchors/anchors-ep.data -89bb96479563e8fd77cc388781029bb4 anchors/anchors-eq.data -5e4a706f062a7bbce2da6c1f09f2c0ae anchors/anchors-er.data -b9d74adf883502df59d108ab2c0af149 anchors/anchors-es.data -7caea96e06d07a89d3ad110cfa59cad0 anchors/anchors-et.data -37e482ddfeb04404a035b9a7e7a01d85 anchors/anchors-eu.data -2fabaf0a1020f574556848de5d0e862d anchors/anchors-ev.data -54a0c156797b9458962875c6f047d220 anchors/anchors-ew.data -90a303ce67e9aacbdac2b47f61165f3e anchors/anchors-ex.data -3f5f0a5dfadaaa3f1c3f94dc98ef9ebe anchors/anchors-ey.data -fd1376670e286ec11efbfd5d3a358371 anchors/anchors-f1.data -29efb547d52a3dc0b3bfdb83f88fd942 anchors/anchors-f3.data -318d1a05af935577032dda50fe4872a3 anchors/anchors-f6.data -ac7bfcaf3ab32ece1eeee59e71ca7a12 anchors/anchors-f_.data -bc92d066065c0ae2f6ede0db3bf1b0f3 anchors/anchors-fa.data -c5eda046163d6375fe290c4c8af5207f anchors/anchors-fe.data -d4944ff3f8c15ef117eb203a00a88d5e anchors/anchors-ff.data -8dbb6226da0a39be4e164a74ce3304dd anchors/anchors-fg.data -a109e376ea3cfa1bdef19aec38a59784 anchors/anchors-fi.data -ba72e7c1a0272c5243dc6fdee01c874b anchors/anchors-fl.data -5cd86649d88a87b1e455b7f45052772d anchors/anchors-fm.data -95c411fbde8f2c48f7fd258ec4a15ebf anchors/anchors-fn.data -e30b61bdc0cfe8275a56858aa7eedb6c anchors/anchors-fo.data -5eed44443bbf134c242204dd2d39d1cd anchors/anchors-fr.data -83bbe698ca0163a4c33a74d4d22d3c1a anchors/anchors-ft.data -1c9f2aea08d2a307af1d25eedebb2c31 anchors/anchors-fu.data -cbffb9fc4a4f15bf95f2ba856b875b81 anchors/anchors-fx.data -0a02a63f592c729f091301b0be05a277 anchors/anchors-fy.data -a661733ee725507b879fff6c959bf18a anchors/anchors-g_.data -c268968ff6058e5f3bc9e31d08bb2f0b anchors/anchors-ga.data -21002efd8f8cb432f1a0f63efecc70bf anchors/anchors-gb.data -82d3249113dacad63da04acb08fc51ce anchors/anchors-gc.data -5712b00c7e0f1aa15e41b18e79b84c6e anchors/anchors-ge.data -0bc35cdb48a5a09c93a80e977f968ad4 anchors/anchors-gh.data -519555d8fe06cf0dcc2924bf9ffba355 anchors/anchors-gi.data -b1f0e5ce8866b1c3578cf31b5c499004 anchors/anchors-gl.data -aea0097985e1c0e586ece2ac064a22c7 anchors/anchors-go.data -956bf2b2969dab6150f5a8d017a4d7c4 anchors/anchors-gp.data -aef297586715c9f51520baf142bf8510 anchors/anchors-gr.data -175092727697dbfb976842acf33aa60f anchors/anchors-gu.data -a01856039cae4212f150afcd02bd1aeb anchors/anchors-gy.data -0ae1b779a5c11154cc3beb68d6f5f465 anchors/anchors-h1.data -064878ee81325884673643e6d0a1d02a anchors/anchors-h2.data -ead33a49d5acd206ab15c3ef8068890f anchors/anchors-h3.data -b5c8b6499049c2f384589e995dddfd5c anchors/anchors-h4.data -7d016e3b52ee6bace2779d7ebd42b45b anchors/anchors-h5.data -be81d081d56e0dde7adc93e80977dac9 anchors/anchors-h6.data -1d9370dad119a9393409af3222c90bfb anchors/anchors-h_.data -03ccac101428803717cd54f4dbb7566e anchors/anchors-ha.data -bd9b78ab5f62efd4a64fba6901880796 anchors/anchors-hd.data -148d576a15d0764b69cde84741e707c4 anchors/anchors-he.data -9eaeb94384cc7271d6fb2674a0b90f34 anchors/anchors-hg.data -0ed947e99866657ac2916b8eddefd876 anchors/anchors-hh.data -f7d15ccc6fc86f89cebd61ea9ff461a3 anchors/anchors-hi.data -c3711b59917877b110d6dfc423f56ba1 anchors/anchors-hk.data -161ac659be7e22f3fcc052d3b77fd351 anchors/anchors-hl.data -926ca99fc2b2d61c8b6b8daa3acb3357 anchors/anchors-hm.data -e1fb416724b49e70d0b1c3d348d00cdd anchors/anchors-ho.data -4d5c4b5095d1cbc74aee0ba2dece41cc anchors/anchors-hr.data -811c879e16e7e77f85845ad4d877be27 anchors/anchors-hs.data -fa91b7ed442549744538ece0c97db649 anchors/anchors-ht.data -aa4bb6152d6e353d3c0570b0ed27bcbd anchors/anchors-hu.data -953ce3cd3267f97273fb461ef2ad8782 anchors/anchors-hv.data -ac3f88e12b3d955ef26c6abd47cf3f32 anchors/anchors-hw.data -e7c8b30b456a64a76484d161e440a0d2 anchors/anchors-hy.data -ef711323d3b76d0d1c3f2601edb1984e anchors/anchors-hz.data -7f5c58337f38f1e138b65e40040ef1f4 anchors/anchors-i1.data -e3a53d363b1b41f68cdc85c550668d9a anchors/anchors-i3.data -5e667f692d4ad54d76321c780165c215 anchors/anchors-i4.data -528ae10bbe5f741a1f196ea6c2a8532e anchors/anchors-i6.data -988c2da32e53bc5e92e64a7c5a1df3e9 anchors/anchors-i_.data -2061691dc950357ab739393dd12a692f anchors/anchors-ia.data -3265405e6507dcbcc5e26839172440e0 anchors/anchors-ib.data -1ffbbf7b0382ceb83aa5345ae4682a95 anchors/anchors-ic.data -77206d0c8065cf8359f9d8c47f37c4f9 anchors/anchors-id.data -922eee058350dfef0352fd60f7ee24db anchors/anchors-ie.data -701a9795b9b7df100a3b762884eaa538 anchors/anchors-if.data -12367ad51b09a03b1c4263455226119f anchors/anchors-ig.data -5eb87e49ca040ac3b9713057c32ce9c8 anchors/anchors-ih.data -6c10566b8615ebf34380f74d73bd315d anchors/anchors-ii.data -b56db3134b47ed176bed6ef017427c0c anchors/anchors-ij.data -4d6ed123d4d0ed5e7da5b16d83035a59 anchors/anchors-il.data -23005be60c9e1f40727d83e7fe4980e5 anchors/anchors-im.data -4b180d9ad4d3cb3dd2c0abafd7ec5678 anchors/anchors-in.data -e4eabf1ba29d7c99e35c5e029efff057 anchors/anchors-io.data -1823c3691ab39641ede69c7ff1fc92a9 anchors/anchors-ip.data -1d9cb99ac1c5a20c4bbfad6ecbec261d anchors/anchors-ir.data -e451eb54928f10a40e6bf5d58036d57f anchors/anchors-is.data -938fb124ae777b8366718bb1afe7d623 anchors/anchors-it.data -c501cc990b00561fc0004dc06ed3f419 anchors/anchors-iv.data -02e907990243e87026039ffdf55931fa anchors/anchors-ja.data -7efb405ec8f626f1116cd1ba282b08a7 anchors/anchors-ji.data -f127dfac7e85072618b270b3df08ae8d anchors/anchors-jo.data -8bb40ec34e848f113978ca7662270046 anchors/anchors-js.data -1213fc756f721d37bcc571ab50da02a3 anchors/anchors-ju.data -cda0bac9023898a6c72e3fdc0698a411 anchors/anchors-jw.data -9d6a3ccb2429a40ccb436bf8a1b5768b anchors/anchors-jz.data -d42e72e76f1e34dd274c84675abc6660 anchors/anchors-k1.data -b4209b88e4973afa3e566f5b9be657a9 anchors/anchors-k2.data -c34d30ef870c42a525980d2aef6b5264 anchors/anchors-k3.data -5177ef44c754b0d7a90b55389f4a4a8b anchors/anchors-k4.data -e2afc5a965b63bc6fc41f9e7cc8d8188 anchors/anchors-k_.data -aa86d0e8d3def9c829d49a41d8f5efa0 anchors/anchors-ka.data -7fd21b6e8bcaad9f5f1bc1f8abd83e4b anchors/anchors-kb.data -a0b802ae809f13627899f29b53b69a28 anchors/anchors-ke.data -68b7f91687594ae37fd620efddc28816 anchors/anchors-kh.data -d68873f985e1422acceebd6218f429c0 anchors/anchors-ki.data -4a4a9831869d9a05715cae194b411ab4 anchors/anchors-kn.data -786779df33fd113e8146d9b6e1649784 anchors/anchors-ko.data -d06f8505727e76662bc4b421fd6ce0e5 anchors/anchors-kr.data -e312f78b1ded807179efb055851883ec anchors/anchors-kt.data -735049c9b3e4d842aad1885a652e4666 anchors/anchors-l1.data -08e9b9a1396018abac65bbf5a186c76b anchors/anchors-l2.data -344b34bcadf1feced3d286ddc5b721e8 anchors/anchors-l3.data -43d782c27d04a577fb363f71e9b6c1bd anchors/anchors-l_.data -4fb530b288e16a98d51c988247572f7e anchors/anchors-la.data -8f229af6fa5209ed53a196d921452d57 anchors/anchors-lb.data -875e72d4c97486699164d6a72adb75ff anchors/anchors-lc.data -43afcc3f342a0b8b0a78edc6cc2f0c9f anchors/anchors-le.data -ed36951b6091bfe05f3c55836ad9bb87 anchors/anchors-lh.data -5c841180d56dfebe3e22e6d49d37f240 anchors/anchors-li.data -5da1a32528c0f6b21850686357f05311 anchors/anchors-ln.data -715d4815732c6608c7680710e892f470 anchors/anchors-lo.data -5d3386362b6b77c524055c83bb09612f anchors/anchors-lr.data -9d813072702f3b3a1335c653f6dea83a anchors/anchors-ls.data -e83508834c56549c420538d10902cde5 anchors/anchors-lt.data -f75e8c718d827b94eb2fb78ae39d1b98 anchors/anchors-lu.data -d2468a98c6ccebd1da22d2424e341216 anchors/anchors-lv.data -ed741c5e03187217a98ad803f9c05ebe anchors/anchors-lz.data -a2cb491696fc95766b770811174138c0 anchors/anchors-m1.data -8d0b1cef1bf76c0e774dcd883d2bb2ce anchors/anchors-m2.data -e6229452b1d913585b1f315683bdf073 anchors/anchors-m3.data -33cb9db9580b0b7cea22e1902444a9a5 anchors/anchors-m4.data -1a17d3d43a26dfd4c329b449157b6610 anchors/anchors-ma.data -3a1e9af0b72c1214a17598215bd63c4f anchors/anchors-mb.data -425330921ed65a33ca19db129e9e552f anchors/anchors-mc.data -1cc502d674c697dfadbbea190c412f7c anchors/anchors-me.data -4e8322533b12a11e6434569cf97ad5b0 anchors/anchors-mf.data -58d1082cd8785ee5138f071241d05a61 anchors/anchors-mi.data -2a46f14b4f720821d4951a3e4956199a anchors/anchors-ml.data -d71d4d924d9d671c5ccc36a0041032e8 anchors/anchors-mm.data -1d6438404f844e612f7a5f9b3eecd2f8 anchors/anchors-mn.data -c95ce55b8644c12f9ca02666aa9d7d32 anchors/anchors-mo.data -b7e39a2cdefca580e901ba14c933a7a9 anchors/anchors-mp.data -95b2346c9d0ff6f82da21cd34035ada8 anchors/anchors-mq.data -72dfa8f0980deddfd20b6040d8d7adfa anchors/anchors-mr.data -b3fe2a6a90bdd243b800eb8b7d436487 anchors/anchors-ms.data -175e044a7b8af9f382409e9738286a6f anchors/anchors-mt.data -0638bde7172e58539b3b42ab2c185ab9 anchors/anchors-mu.data -6d943d8d7c03025d6d839e1a96391b8c anchors/anchors-my.data -70bf280ba239852583f93ba625349e32 anchors/anchors-n_.data -b42c5ff75a17b6efe2236aab7fc59e8c anchors/anchors-na.data -84f72bd90cf0ab4bd3737e4e90789b24 anchors/anchors-nc.data -4f3899d07cc729458c1ff0ca130e5484 anchors/anchors-nd.data -aea8722d9d7194eea56a54ef0e9c5845 anchors/anchors-ne.data -b7803a8478c71028814b23d87b411f0c anchors/anchors-nf.data -2e36e58bb4f49de4d369414387211ef0 anchors/anchors-nh.data -c3fd4e8e9b077efc0de882f5926a3305 anchors/anchors-ni.data -aadc21afb6f586ea1300cf2304c7ecb8 anchors/anchors-nn.data -a7131460e6cc8b4f3cbfc3272ad8d593 anchors/anchors-no.data -0e2eb7ceeb9d86b1e348f1e6b5563db7 anchors/anchors-nq.data -2207d0cefc6ebe4f7b841bd970107154 anchors/anchors-nr.data -3173f9fecde79ef90e2b3122f6380b86 anchors/anchors-ns.data -00e119dbd1dba2c6e5a6428be3a6d465 anchors/anchors-nt.data -57511cfbaae5191d438e69b2d4a999fb anchors/anchors-nu.data -db8c4959cb69a9000548b49d3c6eb8e2 anchors/anchors-nv.data -3d6543551a93a1eb46f8e814ac29e976 anchors/anchors-nw.data -546bfba18839db24e00dfe54128b09c0 anchors/anchors-ny.data -c77bb53ad1f9bd50b80c4756d119ac88 anchors/anchors-oa.data -24ec9799c57378f74916cb614d3840ff anchors/anchors-ob.data -01966a709a80955a9b3a793c673c338a anchors/anchors-oc.data -6e132b342907b9e77788076407cd3130 anchors/anchors-od.data -a526dbffc096acb3c6a870e7f7d53a0f anchors/anchors-of.data -72b698d44b56ad32e5660f80b0eada2d anchors/anchors-og.data -86708df706871e0892c9a425fe5bd778 anchors/anchors-oh.data -3c0af474d1ed6df66a7d09c4b1404945 anchors/anchors-oi.data -2d6d0e727ea376f56142f2efeec40e99 anchors/anchors-ok.data -8f0eb30025b35c04e3971c3ffeaed310 anchors/anchors-ol.data -6548c5ce88e7941b291fee34ce6fb82c anchors/anchors-om.data -ec23fc61ac05791edfe4c0d43b77f8a2 anchors/anchors-on.data -76c4df66ce1cff1230f511c4d4b59acd anchors/anchors-op.data -fcd1760fd91bec5a872f6f55d7ba197c anchors/anchors-or.data -8675932fbe70cdb84b2244c88bf5ec6b anchors/anchors-os.data -3c28c669ece489684220b2deb224520d anchors/anchors-ot.data -52e4416e48f7057b0f4c832b751973da anchors/anchors-ou.data -3cd1422490c8690c47ba4397309ef877 anchors/anchors-ov.data -f8604fff0e8377355670ddd25ab43deb anchors/anchors-ow.data -185a2e741df1074f3a9d7dd9e4f68c55 anchors/anchors-p1.data -c8985d014fbec306c4a2fe000679f351 anchors/anchors-p2.data -44182c9c609fb690685edeb32520ec9b anchors/anchors-p3.data -8e8852db636d5994011d6493c8f8fa01 anchors/anchors-p4.data -6f8c6aeb21a01d32db7871ccfdea09ed anchors/anchors-p_.data -0ae7e5c9f3e477c1b87508a5a279b80a anchors/anchors-pa.data -7306a8a7dd2f1e832051d2fd7bf86a7c anchors/anchors-pb.data -206e290245ebb4ce2e0cc0620ab6b257 anchors/anchors-pc.data -0c9ebabd1b9e77a4e4c2e45dc43e583b anchors/anchors-pd.data -e476c8d42f2f416361485426c4b85902 anchors/anchors-pe.data -52eb3303b499b162844ba72225ef9f9c anchors/anchors-ph.data -ca33bd5157beacb36db11ec012d93688 anchors/anchors-pi.data -ccb2f8678b21ecf9c84dfe216aeb0878 anchors/anchors-pk.data -98f52df47ef085737d816b30e82ce382 anchors/anchors-pl.data -4a5df60a5cbff6ba44e5f08a868f2e90 anchors/anchors-pm.data -a8b490c384292d1828ff2a4017cc499a anchors/anchors-pn.data -cd218cf59787327743021a5df26a9a41 anchors/anchors-po.data -2ca827a75eb00a7368f44c14bb52c2a2 anchors/anchors-pq.data -578af748f6a1098e98a2c3d8c1a45a3f anchors/anchors-pr.data -8326b91cbfd1a9dcd30b258ab8298896 anchors/anchors-ps.data -7245b3ecaf85cafdefd85e747e6cf6fa anchors/anchors-pt.data -2f59c622b13f6077c7f0f7841f6c9644 anchors/anchors-pu.data -9ebaa495523b3f3f4510800300b79578 anchors/anchors-px.data -f34a6b289548204011b8dcb6dcaf7a60 anchors/anchors-q_.data -266a76b76c99fd2caad38dfc05c55bc0 anchors/anchors-qi.data -c4ce19ae6bfd14006d899239d75ba521 anchors/anchors-qp.data -dbde28656762d1e770b466629737e531 anchors/anchors-qr.data -35093e2964f890305b697a99af08d6d9 anchors/anchors-qu.data -19ef5004ac4a49c036c368500c61c8d7 anchors/anchors-qv.data -057b934eb021e36aebc057a00ea3f45c anchors/anchors-qw.data -b39984bf107eecab7cde2c17364c6d34 anchors/anchors-r1.data -233e751b01a3ffd5210bfcb889a6bb3f anchors/anchors-r3.data -cdc7fdfe9e1dcd4775b65c5b0989acbe anchors/anchors-r8.data -e47a8644f7c3c9d11c0c886cf4cc8aea anchors/anchors-r_.data -67bfc8a16d6fbb91585934fde6d24945 anchors/anchors-ra.data -1bc6d0a67a361e32e4c90dbbf6574d08 anchors/anchors-rb.data -70046bc65a7afd6913d8672a41f9e8a3 anchors/anchors-rc.data -1318d689639eb044e27e94518c7c7a45 anchors/anchors-rd.data -9897bb0ad902415cb5b3a7e75f7784a7 anchors/anchors-re.data -1d888a2e2b5ce1d01b51be61dff96978 anchors/anchors-rf.data -4c503f1fd104020a62001187ac111418 anchors/anchors-rg.data -e22072d2ba4deef19cf288d7849ec2c2 anchors/anchors-ri.data -ab38a82ba144b2dce5e51922b5e6d995 anchors/anchors-rk.data -3cd1669ff9145a24ef990883f1972496 anchors/anchors-rl.data -cd6271511aa864739a8fb1c07bf4b016 anchors/anchors-rm.data -fa41be876eb3c8f2c583472314063ba7 anchors/anchors-ro.data -f121969f149f069faea4ba3322c2b500 anchors/anchors-rp.data -59fb0563b2f5ae0edc907c0cd0de8e1b anchors/anchors-rr.data -9dcf330ebf97df2cd5cf29ef75e6f1b6 anchors/anchors-rs.data -73a359526bd4490d235f077bd72b7408 anchors/anchors-rt.data -c35decacec1919c837710d0a20a50b16 anchors/anchors-ru.data -bbdb99dec5fc2f4c431051b4bf471e48 anchors/anchors-rx.data -11d98f3d16ba200ae069e3987d2d5e87 anchors/anchors-ry.data -ef219c60dd4024783bce30a945510b0d anchors/anchors-rz.data -f1b532502592b916c00c07e8c5d1e154 anchors/anchors-s1.data -b2613b0bc1aa575f6c2f353dc8674beb anchors/anchors-s2.data -80d0c78194505ae3f894afc0119d631b anchors/anchors-s3.data -1b1d876d0360d07e600b1bb6860c40b0 anchors/anchors-s_.data -14a17e81419da8b0d8c1684efc87af4e anchors/anchors-sa.data -89328153e76a5d210151c13e60cc1dce anchors/anchors-sc.data -511b8cb040d6703296ab5b4d507dc927 anchors/anchors-sd.data -feb665b6888203dda77033a0f28420ab anchors/anchors-se.data -a7a2f866ebd9596be205bc0dac2d36f6 anchors/anchors-sf.data -df0cb420e47d5a79efb7ae7d26f653db anchors/anchors-sh.data -a66ccd8b3e2b8d8fcf45e7bd0dd49c52 anchors/anchors-si.data -b000d7a4cb48c01123e80da8e86caec7 anchors/anchors-sk.data -db86fa78998f7acebed42784be259cb3 anchors/anchors-sl.data -077ff51cbd0894cb7fd2fee60395a960 anchors/anchors-sm.data -a70bc1ed9125b3eb1b219b52968697a1 anchors/anchors-sn.data -3956650c58c14c05013938a41fd45719 anchors/anchors-so.data -a7adbdfd8ef0c7b562d6a20d6b889eb9 anchors/anchors-sp.data -09e618600dab606596d41f2130d019f6 anchors/anchors-sq.data -d996b550de1d68afff90e5d2433107b3 anchors/anchors-sr.data -41b0b4f4229e4a868f7adaa9ddb59652 anchors/anchors-ss.data -9d3ad0d1316b64f9f70f8e8763d82109 anchors/anchors-st.data -4b78b341265a2b024b776e9b3bf5ccad anchors/anchors-su.data -63c2fc8805722238a7229ad1b27d0ac6 anchors/anchors-sv.data -e433e526a7aaa6ec720c254ee66ac349 anchors/anchors-sw.data -c7943c8728932f767e072e51a12f2a4e anchors/anchors-sx.data -0623e25cc06adda0d4b6a01efeac1530 anchors/anchors-sy.data -6fe75879fc528901c5698da03fbfc69d anchors/anchors-t1.data -ecca185752a75667fd5e5e1ca5ca7437 anchors/anchors-t2.data -d88f14de839e4d0127e27cd880edc5bf anchors/anchors-t_.data -3f06dbb0acf773850e45868095b252e5 anchors/anchors-ta.data -2426f8ca36a781dbf89e9d8f9e2264c4 anchors/anchors-tb.data -1edbf0c0654f791e4fcefe53fec6c7ed anchors/anchors-tc.data -6b467e6c8e33388aa961d61fc6aad2f9 anchors/anchors-td.data -5764a29df1baf4d6625398782881ae50 anchors/anchors-te.data -0c5b96dfa5531a904bf3ec35c38aac14 anchors/anchors-tf.data -01aeb8f1d5f83c7492e8a220ecbc5aad anchors/anchors-th.data -2acac4186bd07c976ed927c37893754d anchors/anchors-ti.data -13446d414528c24cbef367854d683419 anchors/anchors-tk.data -0bb45c8d25e78602af56a7802ba5c9fe anchors/anchors-tl.data -b53b53f0f5e679200b4cebedf80cbc8c anchors/anchors-tn.data -5f24988cd87ff28663baeef61e73cd36 anchors/anchors-to.data -8b8f714a091c7d418dbc761d8c00428c anchors/anchors-tr.data -a2c2cd63db78d523dba3d060a152b8cc anchors/anchors-ts.data -77771e1e2cda5c19cb07bcdcf2802f26 anchors/anchors-tt.data -dbcf0bae251ca71c326f87c4ac5883c5 anchors/anchors-tu.data -4ba8afa46b36cb638ae8dcf8672371a8 anchors/anchors-tv.data -77a98500bdae6a5d3d047b43ddaf9f7c anchors/anchors-tw.data -db8a11cc96aec2a3fcd4ddb08896b776 anchors/anchors-tx.data -0296117030fef55a13591d1cd9ba43b7 anchors/anchors-ty.data -ca1d814f97898edf3a368127ab14b0e8 anchors/anchors-tz.data -4c8f01514d6192b501f4b53d524a0bcb anchors/anchors-u3.data -a9cd5a6937a9aff6e59daa99f8d3fa75 anchors/anchors-u8.data -c87f971a3a6cc34b3817ae36c638af1a anchors/anchors-u_.data -0cbe911c8286642984fa08c467efac52 anchors/anchors-ua.data -c27163f502b6e02adbb05fb6d21df00a anchors/anchors-ub.data -e29c2b6c9aa9a4e7266d0018c7cada6f anchors/anchors-ud.data -2ffefa7d0013c000e1e5e56cfcbce4cb anchors/anchors-ui.data -ee7caf947f3408d1a8ffafebf0bffe47 anchors/anchors-ul.data -4228e702cab5f6558dacfd8fbfcdaadf anchors/anchors-un.data -11a8c9efc09a289a59562dc2d639ec2b anchors/anchors-up.data -9292d2077065faba203ac3a9eb132910 anchors/anchors-ur.data -2280ba488830453a2f32f247e2ba2859 anchors/anchors-us.data -e9435c377acca2137b37148799c41b58 anchors/anchors-ut.data -be76987ac16e83661cfc932b1d0eae57 anchors/anchors-uu.data -d67d7a45f7f16a01ad5f8ec8eb686f7c anchors/anchors-uv.data -3e0eb695ff7b88e7cfa1b5ceab56a7dc anchors/anchors-v1.data -77525d73ae21f746718f6c779271a371 anchors/anchors-v_.data -e03f204649f666ebec46c3642fc9491d anchors/anchors-va.data -c79624205769683b32b8b9e1e0a5e09d anchors/anchors-vb.data -03aa47ab3a0e725b799d341490a78599 anchors/anchors-vc.data -d4d5f3ba8e98143428c374dead7ce4a0 anchors/anchors-ve.data -d5932956fca0a629ea653a7c4838888a anchors/anchors-vh.data -afafefc398a443a365c8fa1b6fbb27a2 anchors/anchors-vi.data -99750a91b3253f53ded8065ad225e599 anchors/anchors-vl.data -79ec85a05871c470b49ecd87d421b0aa anchors/anchors-vm.data -8a5111ba21e6195ee61771396b1f6201 anchors/anchors-vo.data -0c197c64435c7610ebaf3062adb5e55c anchors/anchors-vs.data -1bdc06de0557292a74eaba9c95cd6599 anchors/anchors-vt.data -1b0b681fb085e2ca61dab2a6689eb587 anchors/anchors-vw.data -3a9fe00c02f8991f20522265d5f9c79b anchors/anchors-w3.data -46a1ee2742358ec074cac1cdc89a25b5 anchors/anchors-w_.data -a103ef23b59d26d5a628c12d09c2af0e anchors/anchors-wa.data -ef977cdf37b37204a68c9da7b4d203d4 anchors/anchors-wb.data -6f7c7af3eb5711c759cbcd886d24826f anchors/anchors-wc.data -2f0ca18ba2855851499e24715e563831 anchors/anchors-wd.data -4c6794a1bddc7625b581f38c3377635e anchors/anchors-we.data -d7362afcb61baaf3c2d2fb5464b49bfc anchors/anchors-wh.data -5ffd1300ad877e3294d56dbc793888e0 anchors/anchors-wi.data -c6f236ab2c5c6c4f90008d3a95f2acbd anchors/anchors-wo.data -384ebdba60d0e6fa816d6a91858d8876 anchors/anchors-wp.data -afe00abfb93a60cbd87955f7f845dcf8 anchors/anchors-wq.data -7ca3226dc5acd6bd4258cb174409d07c anchors/anchors-wr.data -ff0eaec74313c5a1e3ce490003e87ee1 anchors/anchors-ws.data -62d4ffc2fb9f2448eaf6a1ae9f7bc24a anchors/anchors-x1.data -7dbb95747b388e04d50852b2e7e57e36 anchors/anchors-x2.data -9fbe062f4b877e1be0f22ddb7e6e6811 anchors/anchors-x_.data -b26b358fe0f23a79f96245fc183a9598 anchors/anchors-xa.data -7f4e9622015de1cdc028bfdc26410d97 anchors/anchors-xb.data -e89ca499f3e5a0cb592afec60e7f3fe9 anchors/anchors-xc.data -553ea58e000e4fb4ccdb5d26449dcf5b anchors/anchors-xf.data -df5e374517a06b3ac165c22bbce9122c anchors/anchors-xh.data -4aa913b3188b5417c5e9d83cebe106e3 anchors/anchors-xl.data -f3190e467d34aa54b46d66a3512c0da9 anchors/anchors-xm.data -a7e12c03ae1da6dba5e6a8f95db3986f anchors/anchors-xo.data -0e1bd61e9ad9a6ccf2f20d025ea5b19f anchors/anchors-xp.data -5b0ec60e347eede77e0cfe0aa492fa42 anchors/anchors-xr.data -4d07bc553c38d7283cd97c933c38ff75 anchors/anchors-xs.data -f739684a11b678af5ad47b8686fd19ec anchors/anchors-xu.data -8c9a8dbac8eba4f4fd42f7e720eba2bd anchors/anchors-xw.data -23aa624c6c99f99e12595ff230f4f6a0 anchors/anchors-xx.data -c1fd805f74697e67c975689de17e84ce anchors/anchors-xy.data -e75ec899d1a244c162c0cc8e1f90dbb1 anchors/anchors-y1.data -be029761ad0e13368c6c71e998759569 anchors/anchors-y2.data -d2cef155914cabe628c504c865c05f5a anchors/anchors-y_.data -9284279122c54c6915250ec94b5288e9 anchors/anchors-ya.data -3c9a84095b1b5401c719cdebbd4b3b28 anchors/anchors-yb.data -6e82e0b71c2fc250d22752d63cde9fe7 anchors/anchors-yc.data -9e630c84444f74effd6640737100b930 anchors/anchors-ye.data -d93763be9a9646be21095f1d2170f67a anchors/anchors-yi.data -1d2d225ba14e543a51f99d692c21092b anchors/anchors-yo.data -43158e9bddd95b50f8d5bce36710e978 anchors/anchors-yu.data -47c8a7a78f1673a0e6c10244c33a8b6a anchors/anchors-z_.data -6eb3980b220f6f13cb86c590aacf5cec anchors/anchors-zb.data -f93ece8085af94fd18f7038d3f22f7d8 anchors/anchors-zc.data -4f794a7da02cc48b97d4a22a7366affd anchors/anchors-ze.data -bd6a1751e7d238a841da39b656ea572d anchors/anchors-zh.data -c8208f5d8dd5397442deeb3342936144 anchors/anchors-zi.data -57f18345e13f529337b386bbcbc39d7e anchors/anchors-zl.data -236f4bf042c530a81efe2ee8b871a123 anchors/anchors-zo.data -f907d51f1af901f1040f7baa98b0c983 anchors/anchors-zr.data -30648ccc791f7e4ca912e582d40edfbe anchors/anchors-zu.data -c690e9518014128e1e69b6f2766805cd biblio/biblio-2d.data -9e7eee00d7771516b026ee629b9b3bab biblio/biblio-3g.data -c4fce104fde3ed67717317d20ea22c0a biblio/biblio-aa.data -df997f645dbba0b626e8f46713753482 biblio/biblio-ab.data -d34460456bcb6f624eb73cbac021bc95 biblio/biblio-ac.data -5494727ab78d7a1d61c178c4e7c7ce8d biblio/biblio-ad.data -d901dbdb54fd727f979194a617c6ffcb biblio/biblio-ae.data -050ed7e5c86b758c4fc854db3215cb86 biblio/biblio-ag.data -a70f347c044141c06199957ba54d3c06 biblio/biblio-al.data -169ddf6c7ee77a236ff89fff288814d9 biblio/biblio-am.data -83c17d1e0ef03c17e33fe33a6ce33de2 biblio/biblio-an.data -cf6fd023d4ff1e50cc9aede6e269071b biblio/biblio-ao.data -564a0a127ad150b70ac8290fee7e3b8e biblio/biblio-ap.data -b4906d1b70df6ecc83e0bf91742a089c biblio/biblio-ar.data -e5b17dbf520779bb9c4e78f50ffc7698 biblio/biblio-as.data -0a524ab4f922b4c768864ae9dcdb2422 biblio/biblio-at.data -10233d3b0cd81c354dcd88f1e1b47e8f biblio/biblio-au.data -6cd7193d39074f7037015f76f5cfed9e biblio/biblio-av.data -6d56efc6702d6eeda0ed4a030d15e707 biblio/biblio-ax.data -ada3b9ecf876d0aaf9fe6bfb2bf55311 biblio/biblio-ba.data -7ea97c92ae5af0c82f23509037defa4e biblio/biblio-bb.data -3a1a29ccbc97fa1f8347ba1585eef4e9 biblio/biblio-bc.data -cb081315912182be3398c15420ca218b biblio/biblio-be.data -6832b92b4c93678b1fec782ba1e781ae biblio/biblio-bi.data -e59b5d77f3d838d43812ab83004aa0fb biblio/biblio-bl.data -1ff16dcf3b6a8aaf20c0c25479850625 biblio/biblio-bo.data -3e208da3df4078a330313aa7b01d670b biblio/biblio-br.data -174ace037c1b0768d542d2aa0a5463fd biblio/biblio-bu.data -4e469f2bc9b1a85aed400180cd35ebba biblio/biblio-c1.data -eda64a6a56a4eb907feb628f1b8dd4da biblio/biblio-ca.data -669a48dcf815fcec82614b4735445d7d biblio/biblio-cc.data -b56c8a5d682649bf52bcdf40f0020b13 biblio/biblio-cd.data -e3651eb26c2cb3dcf7ce3ac3f10f2659 biblio/biblio-ce.data -cb75dec1fdf2aee1bfbe65941ceee68b biblio/biblio-cg.data -8352cb7aa64f4b5d145c6017dc58caa9 biblio/biblio-ch.data -4fb7b4426985976b099c59f8b3d1e494 biblio/biblio-ci.data -b1d92dbdf7b92344250c8010041d3248 biblio/biblio-cj.data -b98f7d901d4734aceede45869dc57b25 biblio/biblio-cl.data -c907c05a0bca58f93d638df4023be963 biblio/biblio-cm.data -f42ab8a1d11bd9ffadb42fb66a3fd1d2 biblio/biblio-co.data -06e744f9467396bdaf8f0c09f73ae8c6 biblio/biblio-cp.data -5b163ea6e0a0be242305a51cad144f15 biblio/biblio-cr.data -0073b71215cd34aba742b8c0023d12ed biblio/biblio-cs.data -9266ad9f95aa3a2eb6fb2877be680efa biblio/biblio-ct.data -96d7df61b83e6596b70a287eed18ced4 biblio/biblio-cu.data -f63b9df52dcc1382762376abd116afff biblio/biblio-cv.data -d72890c5ee81b24ec5c73c3a5c46f3e7 biblio/biblio-cw.data -806ff51fa83fa9d3c5f486c5120870e9 biblio/biblio-cx.data -93ab8cee629421ca9d15fb48095161bc biblio/biblio-d0.data -bdb3e174299ac5b4dfd8af1b0109776c biblio/biblio-d1.data -c8011df06483be586e16d583b3b2005b biblio/biblio-d2.data -d7bfbc93a1ce4f3ba26f1a11482781d4 biblio/biblio-d4.data -e63fa9e0bbd9c7499b65a9e9a0ea8b4b biblio/biblio-da.data -27f20c32ae2f5c167af27d9928130b6e biblio/biblio-dc.data -6de6df96f1a37ba00164ac5b91d8b5cd biblio/biblio-dd.data -b0f23ff827d86fa718c4182e72a123b3 biblio/biblio-de.data -94a40d786035db0c8ced733f1656f0d7 biblio/biblio-df.data -805787f27e04761e9aabaab81ed847af biblio/biblio-di.data -1058c34431dbc10a71812871a2318c83 biblio/biblio-dm.data -381398c8120067ba453ffa89fab62d8c biblio/biblio-dn.data -64e73368f43a68b1a2d985e791df89b2 biblio/biblio-do.data -f923ee24c78887359a517fc7844fb8ef biblio/biblio-dp.data -705367144488e45520ad3192a9e226d2 biblio/biblio-dr.data -f01ed2c327d203d85ba56da04a7b404c biblio/biblio-ds.data -a114f7bacad4045002abd5219d5d53c7 biblio/biblio-dt.data -0fac40e19422e19c10257cb03b7a17de biblio/biblio-dv.data -26cb50f6a220734e2e67c1b5e21a44f6 biblio/biblio-dw.data -aebca8ee1357ba1bd9aa09e7789d9098 biblio/biblio-dx.data -fbdc5d3d10809ed4557279035de62915 biblio/biblio-e..data -8912f0285ff290933cc746ca32f619d7 biblio/biblio-ea.data -399fbeab577d1ba46fef4da3afa8f037 biblio/biblio-eb.data -2f6361ea149e433910ac239ba8dc1d62 biblio/biblio-ec.data -d14b42cffc5a7486cb0b10bcb6a322c4 biblio/biblio-ed.data -40b225f7dc617a8759fd8952936fbe7c biblio/biblio-eg.data -6885463e28ee79b44eaca9f369b197db biblio/biblio-el.data -c5397a744cd8af2bcbf9807b75e3cbe1 biblio/biblio-em.data -01d0ce9ca17790e65ec714a590d6eb99 biblio/biblio-en.data -798f2ee6cfb1d55eb7555d5f72802765 biblio/biblio-eo.data -1d794336b68d97b7c19494418500a9c1 biblio/biblio-ep.data -bfa1b147282bea03bdc8a0d5fa4dbd83 biblio/biblio-er.data -f7ada0b2b1cd0cd52cf0722999b7b98d biblio/biblio-es.data -8ee1b7db716e3002d94fc051bec1ae43 biblio/biblio-et.data -dbc94c0e05340acad8d872ea422b9bc4 biblio/biblio-eu.data -7f490f189b0036ef02e9e14ba594b64c biblio/biblio-ev.data -3edc9e3d7703e66e19d7dc5d9b976ec9 biblio/biblio-ew.data -511050466456cc766eee8f0e55080a0c biblio/biblio-ex.data -ff73eba9f26d59f9cce8d82fac12fdad biblio/biblio-fe.data -d3691399ee6c51d752f7ca1b969cbd3c biblio/biblio-fi.data -5d0854f363073d69c3fba6c1c45730e9 biblio/biblio-fl.data -2fd26e76c4892f0bd85a4e78fe921738 biblio/biblio-fo.data -97c44e1165ff50e249bb1d8fec6fc900 biblio/biblio-fr.data -909a8332b28a448274a0100978b70138 biblio/biblio-fs.data -832399f284b3ffd59ffc4b4557d2abd7 biblio/biblio-fu.data -742d9bbb93c84fb67dde30c7740a2d9b biblio/biblio-ga.data -ed52428f698d3a10360cba872770d40f biblio/biblio-gd.data -db0205c88f7158a545b171f74149ed4b biblio/biblio-ge.data -48d2f245afd02a8e9a9332a636eeb449 biblio/biblio-gi.data -8d6b29b274c7e810535fb2d6724c86e8 biblio/biblio-gm.data -4e5747d45e144462a38a7e5762ccf04a biblio/biblio-go.data -5c0d44944b03e8b6c98cbb07c91472b6 biblio/biblio-gr.data -9b28bc1e86a93c871ba5f54d9332a81f biblio/biblio-gs.data -615317fe8391d6c496fc7792f0c26e11 biblio/biblio-gt.data -6e95202d659550d389212b6627c5d84b biblio/biblio-gu.data -15f7ed149becaa4e90935d0b6cacfb93 biblio/biblio-gy.data -736e5fd020ea1ee8aad6feda539a75ad biblio/biblio-h-.data -71b72c5e67699524263616445e0d02db biblio/biblio-ha.data -a2c73a71366536edf69784e244d1219b biblio/biblio-hb.data -ed7e7f51655e4713756d0f31ff243b25 biblio/biblio-hc.data -352228314999f6578200d31dff0d961c biblio/biblio-he.data -12a3883329eb638657780d1e6d45fdc2 biblio/biblio-hg.data -6852b5fab995c914e81cfce6cdaf0d78 biblio/biblio-hi.data -ebd0ad91ee5a699760faa420fd325190 biblio/biblio-hl.data -07669d1346db1095b5890aa369ce25eb biblio/biblio-hm.data -5de86f3bd5b486010c4c329cc51e1166 biblio/biblio-hn.data -2c7d9537335f6821c8b55c64ada903d8 biblio/biblio-hr.data -0a7be85324f3ac7484489bf4fac4cd4a biblio/biblio-hs.data -eeee242c13e238ba500c904733fe88cb biblio/biblio-ht.data -81479783afdc7c8b6ec7add53f18f0ef biblio/biblio-hu.data -c0d97f1cd61ad44c35e6dafdd1273605 biblio/biblio-i1.data -0cf041c7da540bbdc54f031bb95dd6fa biblio/biblio-ia.data -ea99f434f694aae99ae3ff8fae08a176 biblio/biblio-ic.data -d7f42c1f23d30566142d1742f89b6929 biblio/biblio-id.data -503abacaf22441fc15d3eafa675ca570 biblio/biblio-ie.data -839e2b16eb14ff377e1ac734c179c12a biblio/biblio-if.data -240000d9e93fc5b298382828acd777da biblio/biblio-il.data -f448a1bf9a983816bd0d3178ddbca8c7 biblio/biblio-im.data -be9692bc39f2c795ce40b445b7a9652e biblio/biblio-in.data -09600fead08d9b1430305a9b6c91a214 biblio/biblio-ip.data -10c9c4b2e31fc7fc728abb0be277ef40 biblio/biblio-ir.data -5c0a8dd49159cabccf987896a6a60e50 biblio/biblio-is.data -07a7a85e0a0af678892b8c1c58780ecf biblio/biblio-it.data -2a39a9acafaaa409e98a4654000ba726 biblio/biblio-ja.data -04bcb0388eb78cea1866361f116575e5 biblio/biblio-je.data -232111c02508a3948e9d88b9982292dd biblio/biblio-jf.data -603eb8b387c219557f549ed68db6ac47 biblio/biblio-ji.data -5867e08617b61376356021cb3e8bb13a biblio/biblio-jl.data -fb76e0f85723ebfd6d46b5f2f2016724 biblio/biblio-jp.data -c5270c0886c78aae899ff293ccf5b3ae biblio/biblio-js.data -e3fbc7f44120286b85c85b74c5e2daae biblio/biblio-ju.data -20390be333e9bccdbbbf8ffb6ac83fe3 biblio/biblio-jw.data -971d7b011f78b3e7b99f6bb23268aba8 biblio/biblio-ke.data -afde5ff839c14db676ab820ad38e7caa biblio/biblio-kh.data -231e07be84d3e4faee2b41fcbbcca202 biblio/biblio-kl.data -88dc6a5bf7c5dbe5fb4588d44bf3bd08 biblio/biblio-kn.data -fb3a031b734c8f82967afc0a7e32230a biblio/biblio-ku.data -8bd91fa3ddb719b96fd2d1bfec3b340b biblio/biblio-kv.data -b73fdcf35677d468e8fcab47d474c9c3 biblio/biblio-la.data -02ac681874a1fc7111cb307c48b8bddd biblio/biblio-lb.data -75e538f9817d0878f574fa306c6835e3 biblio/biblio-ld.data -6210c7b9c75d10ece9e6af065e9a8d42 biblio/biblio-le.data -7d9123958bcf43f2d08d65b63daa9668 biblio/biblio-li.data -acbc6961563d3d1f6426921bc49ff1d7 biblio/biblio-ll.data -1c3ee1085336e1dcbbe55e02047352b5 biblio/biblio-lo.data -0e595c339a3c6dde863c24a22477f62a biblio/biblio-lp.data -0f8cab491ce133d3e40b720c436f2a9a biblio/biblio-lt.data -b8f6573346c54914b09483b5d67c9da5 biblio/biblio-lw.data -5c84f6b785c98babefdbffaa7d27d360 biblio/biblio-ma.data -a580d95065094fb5c24f582c6d7b7d3f biblio/biblio-mb.data -5a727dc5e33cfa31aa6e8a4e4cfc9c4f biblio/biblio-mc.data -485c7e8882612b1a37cdec7b26d1ec3f biblio/biblio-md.data -1e436dad7c7e5eb76daf7583463461d6 biblio/biblio-me.data -9c83dbcb7fa2fc527ab7f5efa9b9d0ae biblio/biblio-mf.data -c221a40deaaa25a492f25dbf59c26045 biblio/biblio-mi.data -76674227093b8962149896e195691088 biblio/biblio-ml.data -aff6cc20c1a88c1121c7c7f77ffd858f biblio/biblio-mm.data -52f75cae69818d0db536c3e9bc267bce biblio/biblio-mn.data -6340873c1df6e05c2e4a7d9fdf86e2d1 biblio/biblio-mo.data -3cecd89fc9c5b3e69df4735042fdbb39 biblio/biblio-mp.data -354cc2a1920b3c2a8e1b2a404d3625c6 biblio/biblio-mr.data -61a1dd702d229728ea5535bb8be10ef7 biblio/biblio-ms.data -058031b5aa5ab8ff496ef5072e90c8d3 biblio/biblio-mu.data -1237530042a3ef6beb2c281df517ff1d biblio/biblio-mw.data -aef58f8e27ffe8d74b8a68fbc2a8e7d1 biblio/biblio-n-.data -786925d872c08f0ef9092b0ca059b32b biblio/biblio-n1.data -843a65a4b8f101adb156de5474ea220f biblio/biblio-n2.data -99255846b019bcecdd3126daca142d35 biblio/biblio-n3.data -322b7b2f5d0f98c7543e2c4ff79e31f6 biblio/biblio-n4.data -687bc66fafd90ac43ab4c507d82cdf2a biblio/biblio-na.data -5179478ab5ec65890dd8bbb5cf74938b biblio/biblio-ne.data -8e72d1f9c211cdd016caee6c7e590bbb biblio/biblio-nf.data -09878e422a6e0d8f4d433f68d6c80fb7 biblio/biblio-ng.data -84b9ea7f2aef90b790e43a6fdb4d1669 biblio/biblio-nk.data -1f04d666359c3674e4a4796dcc07ef55 biblio/biblio-nl.data -458bfb4c9f959e01efa600d4ce352787 biblio/biblio-no.data -1a74b25a7976eaadb058658b0ff810ca biblio/biblio-np.data -9395dedf0cb75e7bfa3a8218b4ec173f biblio/biblio-ns.data -cd6a0e613129cf35226d409cf95b23fe biblio/biblio-nt.data -6c44bd594903409625998077a8dde7ae biblio/biblio-nv.data -ff43ef40391d3ca2172d35067ad1dd68 biblio/biblio-oa.data -e381be622d262c2808f0f7aef09573fa biblio/biblio-oc.data -93b2dd6f5e53cc02fddcbae59ed5c42d biblio/biblio-od.data -84f8ade14be31aa7cbbce3f321980ecd biblio/biblio-oe.data -4cf3a5516ff3f671244fc18396594f8b biblio/biblio-of.data -3fae085d839107197b465d9de82b2bfd biblio/biblio-og.data -6a5ac6b966d6f013be4c7bf17152f591 biblio/biblio-oi.data -6e48e7c762135cbe4cdf7083be7deca8 biblio/biblio-om.data -0462da680e31837bf3d28b27999b7fa8 biblio/biblio-op.data -789735531a431d0c9f9402ea4524aed6 biblio/biblio-or.data -b82cebbb3e877f01ced73da77f459960 biblio/biblio-os.data -2a9e8527eb8a4079ec9ce95987f12e2c biblio/biblio-ow.data -4430b78983b30931c445ceef8eecf54a biblio/biblio-p0.data -d7fa88e66dc1dcaa96b2b9e808d9ce6e biblio/biblio-p1.data -090dfc0cb4a5979f0992b0e0c5f9f8a4 biblio/biblio-p2.data -a546ab8e933cfbf4ddf64c7498319b7a biblio/biblio-p3.data -2d5288c9aa3bc347ad17adafb01a45ec biblio/biblio-pa.data -4bd2a20da23aace3ec0d8ee342793b71 biblio/biblio-pd.data -fc55c8a2e88e7f3effeff897f94cf71e biblio/biblio-pe.data -27d7a39e4191432292628c1c305c1a4f biblio/biblio-pf.data -987fca38b2655118e573c0312c5f82e7 biblio/biblio-pg.data -f9ee0944ff6d738c893dd7febaf2cc76 biblio/biblio-ph.data -11582e6f5f8da398707148b2c19629c2 biblio/biblio-pi.data -caa705349358b49584b3dfdcecc9445a biblio/biblio-pk.data -a6700203cd7ce991d12b3b462947b545 biblio/biblio-pl.data -d01b9db8fc5630146a4753743c1dd6d6 biblio/biblio-pn.data -485bfbff23ff8f18c3c9c749e61cc104 biblio/biblio-po.data -5034e86b7249456ef8bd7538e171a0b6 biblio/biblio-pp.data -1313cf2096767d956780c737470de1d6 biblio/biblio-pr.data -e66e2312ec837c237fefb66b3351c533 biblio/biblio-ps.data -471bb859669eac981c80a008e1b2fbab biblio/biblio-pt.data -d75a6c0dbd602ff008e0b134d26cb8c5 biblio/biblio-pu.data -7cb88bd853f4f6e22d422e41011b1f1b biblio/biblio-pw.data -b027b82c432d9137b1f80df8ae45edde biblio/biblio-qa.data -36a1bdc40199c96897eadc6eb6109848 biblio/biblio-qb.data -d91e518cc4033c2d9f593ec75fa1eb6f biblio/biblio-qn.data -c20d1ab9598220b4903ace7cc5733514 biblio/biblio-qu.data -30a03064c1f5712531f41a22142424da biblio/biblio-r2.data -029b0acfadc2e64df9ab73aaac3f72ac biblio/biblio-ra.data -d22f6f20990004be7ca8ffbac003e3f5 biblio/biblio-rd.data -7de841e247f6d9599a90872bc2f91323 biblio/biblio-re.data -3072ee0c3e2ac3b55277da9a77879912 biblio/biblio-rf.data -b2657ff1366305775ce087e72ecbd0da biblio/biblio-ri.data -0a3ef25b330b2ab686402892513181b5 biblio/biblio-ro.data -719b81356e25acdea181af7d2d655492 biblio/biblio-rt.data -bf1a912a2db6e7b13d868cc592daf7e4 biblio/biblio-ru.data -c5460cccf3a26493a2c3ee17350e635f biblio/biblio-s6.data -bfadac7facc13f4c052b5bf6fc0b788a biblio/biblio-sa.data -22c1c0c6ce32737d6e57805a4d435193 biblio/biblio-sc.data -7990c5a0e0c67c803a86a9b588c2dd23 biblio/biblio-sd.data -8899dd3f8c5e5b3bbc0582593c026bfe biblio/biblio-se.data -eb0e404cc2fc5513f125e557d6615b0b biblio/biblio-sf.data -5f92d135969135371505a2bb427aeb75 biblio/biblio-sg.data -1483f83c6c28dd14687be7461fd29874 biblio/biblio-sh.data -bb6fbea873ff8a4635ae2d05a8b0312b biblio/biblio-si.data -60cab4bf078940635e25438aba2256e0 biblio/biblio-sk.data -78e931469994584cc997fa0959ab378c biblio/biblio-sm.data -b1e4adcccf9209258dc418ac02e950d8 biblio/biblio-sn.data -7d43152d417bae9dd2002386df303510 biblio/biblio-so.data -2c7cef48f318466c6e578d0a6aea15e4 biblio/biblio-sp.data -cc1bff610867b37b50ee5a9e008f737a biblio/biblio-sr.data -cb09e9114487c5774ed7f17a1c1c1010 biblio/biblio-ss.data -0805d6973dd90aeb9cb9a0bc16fc126c biblio/biblio-st.data -1beefaecbfe055a71d70254f270d8689 biblio/biblio-su.data -ee719c507a3878cad8d811bc3201e3df biblio/biblio-sv.data -db0de3091dd58fc93a36db53f657ad9c biblio/biblio-sw.data -d75fe48bde9945f32b51445cc60ce1f6 biblio/biblio-sx.data -f6fa0fb32d9d46e2a73a449c5336b8cb biblio/biblio-sy.data -5369c085ef1606b2b0b8c2a0ac101bc1 biblio/biblio-ta.data -ac9f18d9d97741c9884c337e7a09d128 biblio/biblio-tc.data -806a0149b82d3c1e01c3cfbf888aa133 biblio/biblio-te.data -a92c0c74e9ea5c4548bb4860cb96f6d8 biblio/biblio-th.data -46ca62cd285230221314c99c8459f7bc biblio/biblio-ti.data -48d71b48d3ba8ac01d424889a4366ddf biblio/biblio-tl.data -8cf84d26df72fb59f5dc84e4427bbcad biblio/biblio-to.data -dfe3aaf175a65ac3fa4dfb545fa51ecf biblio/biblio-tp.data -083b5f79a28d004df32eb5cdbdb6f2bf biblio/biblio-tr.data -c345133adb29660c0cc61739eb45b87a biblio/biblio-ts.data -518a96cb4e4a40a358581d975c724146 biblio/biblio-tt.data -4e72702821db61ef79594242cdeffc13 biblio/biblio-tu.data -379d8db97b177f4c0625e95c70d2619e biblio/biblio-tv.data -5ef5b391a6f758338a4173f4a7fc2ecf biblio/biblio-ty.data -5d2985d1757def98244f14083a1dc44c biblio/biblio-tz.data -ef7a8203762a5214f374a3778b63bd4b biblio/biblio-ua.data -51496f7a97c11f9a38bd99639577b5b3 biblio/biblio-uc.data -915804d90b0bec7e1bbde765d7d99bf2 biblio/biblio-uf.data -43faa7c40a47c861b1a36542d7bddc3f biblio/biblio-ui.data -0376972e8bc0911400175c6213a49dd3 biblio/biblio-um.data -72bb9f3e34c17781ba2e43caac4ba289 biblio/biblio-un.data -04b6f5ebbbff115318de7d03e994d72c biblio/biblio-up.data -cf4099c42a30e0afcdcd72da2d4f4526 biblio/biblio-ur.data -bb8502808b4675be34352f1e596921c0 biblio/biblio-us.data -7fba3777d3ea93b6e11390a6537912c7 biblio/biblio-ut.data -d750dedbfabc71fbd9696c83d2816097 biblio/biblio-uw.data -b0541a332d938c743c074cbc4e3237e2 biblio/biblio-va.data -60e67db9854cb5a5e4276d5e80542886 biblio/biblio-vb.data -e219027d2977d1394e47ee1bc881c179 biblio/biblio-vc.data -b4f0e8cdfdd11a58025c578462791825 biblio/biblio-ve.data -a70fbe25c437570cbb2ef307646d2860 biblio/biblio-vi.data -7ade44ebc4f12c9cea1e4251ca97b2cb biblio/biblio-vm.data -3c0e76434e52ff542ccfc6d8c4d51550 biblio/biblio-vo.data -1a3bc146fadd8b55b75aa070477c099e biblio/biblio-vs.data -0c400ddcaa784f2b5dac926eea66dc73 biblio/biblio-vt.data -38b1d418d094309f5b77535be74f758c biblio/biblio-vx.data -ce6199c6417f801b5402133b03baa5e6 biblio/biblio-w3.data -3b19c72f96d0fb55a253bee9d4f7debe biblio/biblio-wa.data -ef1443d758854b90a4bd163231e780d7 biblio/biblio-wb.data -102ffab338cabc69078040fd614eb67b biblio/biblio-wc.data -85b2eea25ee4fb2b66d78d2c0ae5b012 biblio/biblio-wd.data -ce15247ff24b59cc2543336999634741 biblio/biblio-we.data -1a5f7db0d1070f153c617556831961fd biblio/biblio-wf.data -19187d3a82d1b4157c179f86747e6017 biblio/biblio-wg.data -6f514cef0e51e55e68201012952a57e1 biblio/biblio-wh.data -fbc60a886d55e13f1ed528e9150cf873 biblio/biblio-wi.data -f4ac702eb7d0f934e6fd0db4d5a8d814 biblio/biblio-wm.data -5c51d48fad222e8afb74154acb915341 biblio/biblio-wo.data -17d365496c0c0149a2afdb82a2541bfc biblio/biblio-wp.data -dfc992ef4ece1af058d953e6251948ff biblio/biblio-ws.data -7cd68c5f2bea77112b7383b6f4d330f8 biblio/biblio-ww.data -ea739f8c3ee8054e3992dd5921fb4b72 biblio/biblio-x1.data -4b800f9b07561c6520055bdc8ce1e02b biblio/biblio-x5.data -c39a6f0a4caf21ca184679fa6747edbd biblio/biblio-x6.data -a4e75f323d5e34ae24be6c0e8fe66df4 biblio/biblio-xa.data -1044ac0859b8e667a110bee1a8c3554a biblio/biblio-xb.data -5a8ad365f11de1a8b6a29b93a87d3110 biblio/biblio-xd.data -a957efa2e5099ff95b96c431fd9ad2bb biblio/biblio-xe.data -5afb9d77dc0a5d1928e0d4551858bc97 biblio/biblio-xf.data -57b34dafaf137e6f50871d5d14339217 biblio/biblio-xh.data -62990a6f6b155af25cf83f3e6efb4db2 biblio/biblio-xi.data -3efc10665f9370188f7f350791df9186 biblio/biblio-xk.data -a7726f1b89e88bba26420ac790fbc46d biblio/biblio-xl.data -1700894a83c47f737248b0fa3199998f biblio/biblio-xm.data -29fe5baa9c0795cded7be2d7180e2bb0 biblio/biblio-xo.data -e3b0a82eb3bd0347aecc8520df0050b8 biblio/biblio-xp.data -3ae46a0439fb9da1c5c582d4120a1ae0 biblio/biblio-xq.data -86b7f059df04d01f76eaa25a6dc1b3c6 biblio/biblio-xs.data -1e49f065b5d881f5b57c033c1e394939 biblio/biblio-xt.data -9fe2a781a9e22d20a12664f01dbacabf biblio/biblio-xu.data -74bde8c504dcbe7f81b95e21385357d5 biblio/biblio-ya.data -455ed85ae301fa94171aa94e3608aa64 biblio/biblio-ze.data -f6c6765f2d2f08164e78bf8904585f93 biblio/biblio-zh.data -364945418b0849a31fec2eb69c6ad3cf biblio/biblio-zi.data -36bd888ea0d70381a0d8819f64556e00 boilerplate/abstract.include -971527bb11b372b66e8a897115017510 boilerplate/act-rules-format/status-ED.include -9e3bb604cb8fa8d2a8b2a5c031a4eea4 boilerplate/act-rules-format/status-WD.include -4937856ad5de0834120daf6054e0f090 boilerplate/annotations.include -5d42fe6f0a620673b80ccdff24842358 boilerplate/aom/copyright.include -9b87e46d166aa6442f039e08b1f50ad4 boilerplate/aom/defaults-FD.include -42284ee6acfa29db163d51e6ed6868dd boilerplate/aom/defaults-PD.include -9af7385e35d4f089d11909f34833eb65 boilerplate/aom/defaults-WGA.include -7578cd2e9a541ac5ee03af2363dd66ac boilerplate/aom/defaults-WGD.include -f12e06c3653b76ac8cc10665e8b19a1e boilerplate/aom/header-FD.include -539b77187a1a49c99fe4289d17e1b817 boilerplate/aom/logo.include -9590603a4c7bdacd817ea1f98f5bff56 boilerplate/audiowg/defaults.include -dbac51825e170c877e41c482d59664a6 boilerplate/audiowg/status-CR.include -0b12ec748b98b9add88571ed2a7fac6a boilerplate/audiowg/status-ED.include -f37024a2af88f98a1cd5df08702f9318 boilerplate/audiowg/status-FPWD.include -3d6c9b42ad1354b253bddede1b1fff04 boilerplate/audiowg/status-WD.include -7f868793c12dff0d5e15fbbebb2474ba boilerplate/browser-testing-tools/status-ED.include -a5af14ca8d7c7e30f515bd4bdc1b3228 boilerplate/browser-testing-tools/status-WD.include -2d047e9fbf42b426e281e368cce03989 boilerplate/bs-extensions.include -d41d8cd98f00b204e9800998ecf8427e boilerplate/byos/abstract.include -82b912bb989f75452a28c41a486a2d07 boilerplate/byos/defaults.include -5b76b0eef9af8a2300673e0553f609f9 boilerplate/computed-metadata.include -fcc8c3d8fae910debdea4622bd045ac6 boilerplate/copyright.include -32d45767009bf24400662d66df261ab2 boilerplate/csswg/abstract.include -3feead45e1c1e892a14173747c597ef8 boilerplate/csswg/computed-metadata.include -985cd1354209c9daf36601b7408e6641 boilerplate/csswg/copyright-DREAM.include -3fcf1f7845c6a23ca945198f4efe124d boilerplate/csswg/defaults-ED.include -9845a6e4ec2393016fa82371d72f0cb7 boilerplate/csswg/defaults.include -e7814d7848739e9fdd1c9b8e8879a037 boilerplate/csswg/footer.include -c2052ae0db771a7c1e702608ae13c49e boilerplate/csswg/status.include -f578914f4fffa76a5855f8d314e88dd8 boilerplate/csswg/warning-not-ready.include -62f805f404f38b140865043f155cc5c4 boilerplate/csswg/warning-obsolete.include -4130ab38cd204954cda4e09ec65e6ec4 boilerplate/dap/defaults.include -59bb82ad8b06a32805449fb7e48276b8 boilerplate/dap/status-CR.include -904b2551c154f4bd8e8e6560d010c8f5 boilerplate/dap/status-CRD.include -15d0e83c28b0b675dd95df925538dec8 boilerplate/dap/status-ED.include -e5dd60b672967f5e7fe8460390f22654 boilerplate/dap/status-FPWD.include -02f26d018f1ca4f174fd4320d41a54e0 boilerplate/dap/status-NOTE.include -741ec49774ff3e0863970c68942e0e43 boilerplate/dap/status-WD.include -8a80554c91d9fca8acb82f023de02f11 boilerplate/defaults.include -42cf428f3a4a75f5e897341a49ca7dcd boilerplate/fedidcg/copyright.include -d15b6e87763b113bcc41809bb278a838 boilerplate/fedidcg/defaults.include -a5b171fcd3e49cbd54c12db61177629d boilerplate/fedidcg/header.include -77e6ecb79249827dad92bd286995d7f1 boilerplate/fedidcg/status.include -7c9882ee1f0773f17801e0d5f8d6a57a boilerplate/footer.include -af4f9866231fd3528673f5ce4c9d6893 boilerplate/fxtf/bs-extensions.include -2e312d3ca9620217c0c8e16b85207603 boilerplate/fxtf/defaults-ED.include -d5fe9d97579619421b836dc72b79f588 boilerplate/fxtf/defaults.include -56dbd0b32792252334419ac600a19ff3 boilerplate/fxtf/footer-CR.include -c0ee031da24a5626e6896cfb473568ee boilerplate/fxtf/footer.include -b0181d300ae9558e4da80a59251481b7 boilerplate/fxtf/header.include -01f22fb1b160d9cc24834b2ad4c26259 boilerplate/fxtf/status-CR.include -3e2e226c15642c9a15e6394d2d46eb01 boilerplate/fxtf/status-ED.include -2b432128c6b72e1691e12bd1df1c12a3 boilerplate/fxtf/status-FPWD.include -4c8dc68f1c71e6f1ba0e7cc924a38db7 boilerplate/fxtf/status-LCWD.include -b5ae2ed59194176c5087c7fe9889a916 boilerplate/fxtf/status-WD.include -7fb12064780097a9df0a69b3c2e129d1 boilerplate/geolocation/defaults.include -aa11e8b688a90a9023ef90f37e84769e boilerplate/geolocation/status-ED.include -e4d0b7297f72ebbd7ee735fbd2a92cda boilerplate/gpuwg/defaults.include -ede203e0549e68094d06c89e4a0e967c boilerplate/gpuwg/status.include -d8d0ca96965e06069f5745214f9b3f46 boilerplate/header.include -af4f9866231fd3528673f5ce4c9d6893 boilerplate/houdini/bs-extensions.include -25d671cc840baa43a0be681499ef1ca4 boilerplate/houdini/defaults.include -c1f1554a6db784cb3e6c8bc355f28ee0 boilerplate/houdini/footer-NOTE.include -c0ee031da24a5626e6896cfb473568ee boilerplate/houdini/footer.include -bbc5dbe540682ad6c3104e1271f92bc3 boilerplate/houdini/status.include -87cfcf5a95c2125e3ac186bc920567e2 boilerplate/html/status-CR.include -7d9a39e89c7ca835f6381a648356f38a boilerplate/html/status-ED.include -b0aeed3978e7f4301e98e678cd6b3683 boilerplate/html/status-LCWD.include -9c74928142e62a7041c377487d7b2e48 boilerplate/html/status-PR.include -7c6af94bb3d39b6e502e6a345bea3b12 boilerplate/html/status-WD.include -8e90bb882980f5820bf03089a6c1582b boilerplate/httpslocal/copyright.include -9295c6eaa8f0b0b7bf1e36cf835a89d7 boilerplate/httpslocal/status-CG-DRAFT.include -50659a9c4da5f329c3eb0c9f86448df6 boilerplate/httpslocal/status-CG-FINAL.include -5b76b0eef9af8a2300673e0553f609f9 boilerplate/i18n/defaults.include -9a5fd8fe4e8e550e4e26c406f838e254 boilerplate/i18n/status-CR.include -852fb40222d78c3ee0a892e2b607d22a boilerplate/i18n/status-ED.include -2a1ac3305c5215202301c63f18ca2a94 boilerplate/i18n/status-FPWD.include -fb84fd05cf083a0c98521a0eb3776482 boilerplate/i18n/status-WD.include -88538ca11fec7184654be63801eb7014 boilerplate/i18n/warning-not-ready.include -9f3b170e0e25bd5733d7a885127334a0 boilerplate/i18n/warning-obsolete.include -b038c35d873a518d8d53f8024b2edfa8 boilerplate/immersivewebwg/defaults.include -f84d6e955ec15ac5b98a0c65c427fee2 boilerplate/immersivewebwg/status-CR.include -0d1953ca3100fdd75c76104eb0bccefd boilerplate/immersivewebwg/status-CRD.include -9039d6ed67439833a75eee3275b9f732 boilerplate/immersivewebwg/status-ED.include -0110069fd1f45b0d14f774b4a7e914df boilerplate/immersivewebwg/status-FPWD.include -44209b8b09270c7ed9bde455666ff2fe boilerplate/immersivewebwg/status-WD.include -d41d8cd98f00b204e9800998ecf8427e boilerplate/logo.include -91bc173f1020f2ae558a92c0397a4791 boilerplate/mediacapture/defaults.include -86a5023bd715b456de7f9d82f4a3b120 boilerplate/mediacapture/status-CR.include -e07f75beac8f792542bad97668acc9d8 boilerplate/mediacapture/status-ED.include -c1f323786e4ec9327c626859d210c04e boilerplate/mediacapture/status-FPWD.include -5512ed07d7498207b1b0c1836ad87a35 boilerplate/mediacapture/status-WD.include -4b0839e35c1bbd636a170b44adbeff11 boilerplate/mediawg/defaults.include -612c39249f93cd7e6c55b0ee6119b3ba boilerplate/mediawg/status.include -34863bf2c266566961b90f6ca6b927c3 boilerplate/ping/defaults.include -9515919aff4672b96597543cebcc9198 boilerplate/ping/status-ED.include -0031eebcde99a8727165aa27f48e5917 boilerplate/privacycg/copyright.include -afcd00f28eb869d71976b2c9cd60178b boilerplate/privacycg/header.include -2b6d83375b464a776ef9b979806d816a boilerplate/privacycg/status.include -2e92d56f619ce490764eced711595ad8 boilerplate/processcg/status.include -c39677a5a731231e379db14f4e902c1b boilerplate/ricg/logo.include -3de6db89f86162a73c1e1f01f1456bc4 boilerplate/ricg/status-WD.include -a4edad77b7fdb1d343bf9f976e0e36a6 boilerplate/ricg/status.include -06ec41c6536f28c70da246d7c00c4755 boilerplate/sacg/copyright.include -469b7b8ea371b6e5063c3da190a172e3 boilerplate/sacg/status.include -1bc0cf3763a708e8d59686d18359d5c0 boilerplate/secondscreencg/copyright.include -f57b61d9d30f7db198309ee32faf999b boilerplate/secondscreencg/logo.include -062acc522ebe4a77c95ccf40edd91369 boilerplate/secondscreencg/status.include -da25e383e6bdfd4c3440aa2925123e95 boilerplate/secondscreenwg/defaults.include -d458e829e3eff9ee580c2d1e069bddb7 boilerplate/secondscreenwg/status-ED.include -ae3f4948342e4e0922866f179b3c39e9 boilerplate/secondscreenwg/status-FPWD.include -77e690e6b40e83d223b9fbcce93746ef boilerplate/secondscreenwg/status-WD.include -690bb5ef12494c51a156c240cb892b09 boilerplate/serviceworkers/defaults.include -ba84618328a6fa771b6ae8e85b0d8323 boilerplate/serviceworkers/status-CR.include -fa9080df5d468b369bdb266214b1f323 boilerplate/serviceworkers/status-ED.include -bb1e81b6ad4475095c36b96d5b702b5c boilerplate/serviceworkers/status-WD.include -32b949e384381367218a83668da6be99 boilerplate/status.include -1fc2b6b21127f393db631a99f4c666fc boilerplate/stylesheet.include -c21ff85d3454a4327ad5f81b70aa20d8 boilerplate/svg/defaults.include -3b80a4e37dcab18bc68a51471b61504e boilerplate/svg/header.include -dd593ff16f27ca11ccbea1211c33e874 boilerplate/svg/status-ED.include -804bfa6ab8b16697836c45b183f3c46d boilerplate/svg/status-WD.include -ab56d08a48864bd420fa45e9347f3a48 boilerplate/tag/header-WG-NOTE.include -001241f1fd5e621505b1b4fa3117395e boilerplate/tag/status-DRAFT-FINDING.include -b976a13382c11f3a23563fc7686f568d boilerplate/tag/status-ED.include -2f076c1f51bbfc2368b250f49174234b boilerplate/tag/status-FINDING.include -e4f3eaf855bb35dfe2f149b0deeda905 boilerplate/tag/status-NOTE.include -555dc20cec2ad891239ca8f8d110ae80 boilerplate/tag/status-UD.include -2c23d2caa24608cc3e30d6b55ef00028 boilerplate/tag/status-WG-NOTE.include -555dc20cec2ad891239ca8f8d110ae80 boilerplate/tag/status.include -3c89abe73bb40b1937da6825643a04d0 boilerplate/tc39/defaults.include -bbf199b0531ce6df48fc201c324a4cde boilerplate/tc39/footer.include -9fdf0f00a3b682b2ce89160aa1faed0d boilerplate/tc39/header.include -882c892b7beaceb0c89d99000beb3660 boilerplate/test/copyright.include -c99bbb101b5abf92d9f8b965066bb1fe boilerplate/test/defaults-DREAM.include -32a87db390924457890bf54bbb03c7a7 boilerplate/test/defaults.include -d41d8cd98f00b204e9800998ecf8427e boilerplate/test/footer-DREAM.include -14fa58555d83a2f21705485e0359986c boilerplate/test/footer.include -bf4df4a9dea7035aea6c313f8ef86462 boilerplate/test/header-DREAM.include -faf6b7e830a8c1beaffc47edadd7457d boilerplate/test/header.include -d41d8cd98f00b204e9800998ecf8427e boilerplate/test/logo.include -47cdb6569bd3b2891c542c42fa5ca312 boilerplate/texttracks/copyright-CG-DRAFT.include -4392815aedee3265613976f6beecb4c8 boilerplate/texttracks/defaults-CG-DRAFT.include -f7317f3cfc8a6bfc65a469346c721b5d boilerplate/texttracks/header-CG-DRAFT.include -4b78776bb72390a5a8f589f18546e94c boilerplate/texttracks/header.include -ad04e0dfeaa074aadf1032f8170ad4db boilerplate/texttracks/status-CG-DRAFT.include -7ee1a02147f3523b41c894856e99c18a boilerplate/texttracks/status-WD.include -9c53c44faa08a7be0d033d2faef897c6 boilerplate/uievents/header.include -9984710f2c95a6a5686804bfaaea0f73 boilerplate/uievents/status-WD.include -5c50ef54176be352e6a4d5f2985d3f43 boilerplate/w3c/copyright.include -c1f1554a6db784cb3e6c8bc355f28ee0 boilerplate/w3c/footer-NOTE.include -6112a23cd7fe83164b28b1dd815342f7 boilerplate/w3c/footer.include -c52de8ff3507e340d87fc4d4fb93b837 boilerplate/w3c/header.include -5c94aa7852545130b50b0c8f74ab5b08 boilerplate/w3c/logo.include -308e15bc4b5046a85550aff4579bfccf boilerplate/warning-branch.include -8dd1239e6175bb635b6f64a231d66bee boilerplate/warning-commit.include -f1c9e479c469eae700846968419f0124 boilerplate/warning-custom.include -aa6e1dfd438c5d0a33c21ee7d6b0403e boilerplate/warning-expired.include -1befefd7bf196c62a30fefc978eca7cc boilerplate/warning-expires.include -0cba8d93f154a1a5a8ba842dccd66531 boilerplate/warning-new-version.include -5e7be1aafc1c59d61527a0221bb85c14 boilerplate/warning-not-ready.include -5a9b5bdfd5db498ed8e5513d8138c5d9 boilerplate/warning-obsolete.include -e695cdf0222c93dc2d9bedf402dade45 boilerplate/warning-replaced-by.include -edbeccd56627e7bd74d26030ad0153ad boilerplate/wasm/abstract.include -7cc36ce5dded7f5d27780b5e7ef877d2 boilerplate/wasm/defaults.include -3ee5cc8af82423a2fab3b087b0e34ad8 boilerplate/wasm/status-ED.include -dd698d06c53a1f00c7b12c51e3553b26 boilerplate/wasm/status-FPWD.include -52209dc43dea81e87c8b3d89deae0780 boilerplate/wasm/status-WD.include -4d0b4c71edb33ee3ed28cced1fe9345c boilerplate/web-bluetooth-cg/copyright.include -d15b6e87763b113bcc41809bb278a838 boilerplate/web-bluetooth-cg/defaults.include -0a309cf38b27d6a563512e78286acc42 boilerplate/web-bluetooth-cg/status.include -ffb3615e0056b09febdbc3cbf8921e4f boilerplate/web-payments/defaults.include -7746b857caa2ee06c15a277fdd8607ce boilerplate/web-payments/status-FPWD.include -43a38d9977fed7ba270b25463490a996 boilerplate/webapps/defaults.include -95f9cf917fa19bd03a4780a597d2426a boilerplate/webapps/status-ED.include -d7232c473c970ff46ad19e64f7af848f boilerplate/webapps/status-WD.include -77b72f81ec172220cc2024bba4e50452 boilerplate/webappsec/defaults.include -5472649d5e73251951beed697680924f boilerplate/webappsec/status-CR.include -75a658f8f788180a3edb6dae9134e0d1 boilerplate/webappsec/status-CRD.include -2ab1d5e3de64b65a8e367634f4412818 boilerplate/webappsec/status-ED.include -a7dd29e400f1c76f2986a8c69d3c1fe5 boilerplate/webappsec/status-FPWD.include -37ad4c5add6733f02a64bbd7eb5cd630 boilerplate/webappsec/status-LCWD.include -caa7459da05000302bba159de86ff667 boilerplate/webappsec/status-PR.include -24c4067cab89148a042e73dcd424d09d boilerplate/webappsec/status-WD.include -70e69dc06ed73ac44c534a0bfbe242dd boilerplate/webauthn/status-CR.include -6f2f8438e39c693dcc0f40e105861fd3 boilerplate/webauthn/status-ED.include -b0c8e2231912d159eae355dc658e5304 boilerplate/webauthn/status-WD.include -89918a4a1e42008d2e1bef6dcdc17af6 boilerplate/webediting/defaults.include -9e3ac6b690b295894e4e770627751c28 boilerplate/webediting/status-ED.include -2beb127d4184f2a19c46304e07a24055 boilerplate/webediting/status-WD.include -8747e8de2bd698b392b42212609013f5 boilerplate/webfontswg/defaults.include -c59d51e692fcebe780b3d26bcb08a9bd boilerplate/webfontswg/header-ED.include -3095191c1c338a7d740d56cc04ea1024 boilerplate/webfontswg/status-CR.include -7ac2f27940a20d9f2ad86b9a0f54dbe2 boilerplate/webfontswg/status-ED.include -ea8f219610065b62217d878117ffd46e boilerplate/webfontswg/status-FPWD.include -20ed3551a8a58f52dd7552bc142267ce boilerplate/webfontswg/status-WD.include -c97c811fc67d065bfb5676b24cfa97d3 boilerplate/webgl/copyright.include -90c9f32861f87160cc74009ec91ae5ff boilerplate/webgl/defaults.include -b8b53a5151245ce48d86301227c5be68 boilerplate/webgl/header.include -d140aeb0aa46a2776bb129e6c9789ae3 boilerplate/webgl/status.include -b5a9bf094c213c9a9a55cf03bfe624dd boilerplate/webgpu/copyright.include -cf65dfdd38643204c90e3001aba7fe09 boilerplate/webgpu/status.include -f91288182b876e4a1af47e6c06908b6c boilerplate/webml/copyright.include -fccc91dfe982c2703ac0f00b5df10fde boilerplate/webml/logo.include -c833df04583c4b76614fb820b9afa4bf boilerplate/webml/status.include -d5683ccc62860a546123e2e89a0ed866 boilerplate/webmlwg/defaults.include -be6830496694b6517f27f1b838058635 boilerplate/webmlwg/status-ED.include -c58b8ca7a0aa7ce45e2e7e08ff20e00e boilerplate/webmlwg/status-FPWD.include -9394c4658645dedaeba4c8e466692335 boilerplate/webmlwg/status-WD.include -d15b6e87763b113bcc41809bb278a838 boilerplate/webperf/defaults.include -d4c429bf4e71af035d669b5e9e003685 boilerplate/webperf/status.include -e56d650ce9781d79bdd91f64f3ca5e89 boilerplate/webrtc/defaults.include -74898d56f9de26f169b13e6056532551 boilerplate/webrtc/status-CR.include -96b9e8105a7f3eb06ca7fab3fa40f6bc boilerplate/webrtc/status-ED.include -62993e11e77ecfbcbd9cdc3383455136 boilerplate/webrtc/status-FPWD.include -b07a429262809bae35b9ed8bb1b42f4f boilerplate/webrtc/status-WD.include -4c5bbe797464f46f6b2f781597e68e57 boilerplate/webspecs/defaults.include -5aaf3514b78a7042e0b046baa5cc38fe boilerplate/webspecs/header.include -1a0b5c151912412b5f30f751c11a5236 boilerplate/webtransport/defaults.include -ec5171fa3150711315d6a9200b6014ea boilerplate/webtransport/status-CR.include -c325047f5de729dd76e1514d5a48ec7d boilerplate/webtransport/status-ED.include -9af3f1390f115ed3926d5fb2f4378f5f boilerplate/webtransport/status-FPWD.include -b27dd375f37a58a04fd61c2e48f12986 boilerplate/webtransport/status-WD.include -1fdf208ce27908dc120c35d445f5d9c7 boilerplate/webvr/copyright.include -7d9903c63ce8537f5d4e5edfdb446638 boilerplate/webvr/status.include -2e008e5126ea30582a65a86196393767 boilerplate/wecg/copyright.include -d15b6e87763b113bcc41809bb278a838 boilerplate/wecg/defaults.include -c0ee5cf7142bd135851f8d610ebe63d6 boilerplate/wecg/status.include -5e3638a46a9807c7e887d4e4588c880c boilerplate/wg14/defaults.include -bbf199b0531ce6df48fc201c324a4cde boilerplate/wg14/footer.include -c602200eb4e00b4dac5c75f2bd349973 boilerplate/wg14/header.include -78401226c31f53a228628fae34f82a78 boilerplate/wg21/defaults.include -bbf199b0531ce6df48fc201c324a4cde boilerplate/wg21/footer.include -ef739702003f859bec6aa681cbc527ae boilerplate/wg21/header.include -9fcacc6882914c0c0bee9445f7155f3d boilerplate/whatwg/computed-metadata-LS-COMMIT.include -0f2f48a55e4069d6aeb6399dd3c5549f boilerplate/whatwg/computed-metadata-LS-PR.include -e1653db363926bcc088e493d844a14b6 boilerplate/whatwg/computed-metadata-RD.include -e1b29af966c3959874d15a14af2ea78b boilerplate/whatwg/computed-metadata.include -061dbdd35fec100ad5bf6685fe0a7e48 boilerplate/whatwg/defaults-RD.include -315305d18a1cec4e9c7701ba3e482cbf boilerplate/whatwg/defaults.include -91e2c82b59ff0dc7d3b10a72ed5d3b66 boilerplate/whatwg/footer-RD.include -2fcfb92564e49aadf28892936a581e39 boilerplate/whatwg/footer.include -41729e56020cc306e1224394e862221c boilerplate/whatwg/header-RD.include -cf6aef5bc32d7928bc04872f5de39545 boilerplate/whatwg/header.include -190be64861cd8cbde6cfe1dda6867034 boilerplate/whatwg/warning-custom.include -e67ce07ba5fe7a8910501114c3df6927 boilerplate/whatwg/warning-obsolete.include -38cce5e8b93b42771bd8d2d1257613d4 boilerplate/wicg/copyright.include -d15b6e87763b113bcc41809bb278a838 boilerplate/wicg/defaults.include -a5b171fcd3e49cbd54c12db61177629d boilerplate/wicg/header.include -f193a2dc8c4d09eec8ce7355a25d626e boilerplate/wicg/status.include -f1ced890c002e15688c1b7dd81a4753a boilerplate/wintercg/copyright.include -a5b171fcd3e49cbd54c12db61177629d boilerplate/wintercg/header.include -cc6009c9ce34dbc44afce7bba54575cc boilerplate/wintercg/status.include -0b7033f35dc03a335ed20aa422ee080a caniuse/data.json -78e75d7a35a24e25dda6a6634884e668 caniuse/feature-aac.json -7eaa2ed0e756efdd5325814d9d292668 caniuse/feature-abortcontroller.json -842dce1ae363ee79f57a33d584a5819a caniuse/feature-accelerometer.json -6b7e7beffb79061621868282d65d0279 caniuse/feature-addeventlistener.json -3e2dca00942c79fa0aa04028b819119d caniuse/feature-ambient-light.json -44064a8838d9c1a6bbf368d9776fc440 caniuse/feature-apng.json -94df34b65bb28b1368266b1709243d6b caniuse/feature-array-find-index.json -6efce7b230049d227e5bc177f36593ed caniuse/feature-array-find.json -82e28b929b3129b4b57a454d221d76ca caniuse/feature-array-flat.json -93a496084949ea1bcb026f33ae1c5ed5 caniuse/feature-array-includes.json -b59157c62843b203b6b1d516fe4b8a58 caniuse/feature-arrow-functions.json -f9715c7d761ba688b7b24121cb4d5b77 caniuse/feature-asmjs.json -c7be7afe27ce680ae043d800acf7c7d9 caniuse/feature-async-clipboard.json -733aeddf8f6af1741653f5682aa92a68 caniuse/feature-async-functions.json -ff98f67e0265b1caeb9944cd50b091a8 caniuse/feature-atob-btoa.json -3d43fb7447e2860805c610cefdc5f769 caniuse/feature-audio-api.json -673a181ee298cc87ed9f1fc16eece716 caniuse/feature-audio.json -7aaa97e9e026f14f9f0e24ac4a014c2a caniuse/feature-audiotracks.json -de0d6442679b82c27a6a90579b6252d8 caniuse/feature-autofocus.json -8ca64cb7178753c706fe57443276278b caniuse/feature-auxclick.json -a99a83eb7240d2ba73646c0c51c0a508 caniuse/feature-av1.json -f4c794d072f98c4483a3321c9db5c3cf caniuse/feature-avif.json -b39540e510aa3be1318af1f75060acf3 caniuse/feature-background-attachment.json -fdb9763b888709ee40d6d91549bca7ca caniuse/feature-background-clip-text.json -0d4a2760eeb261d559a69e3d146d54e5 caniuse/feature-background-img-opts.json -60a57448fc49b07167ff0ffd5de0166b caniuse/feature-background-position-x-y.json -b6a324b26c5a6713293d87377bf24f4c caniuse/feature-background-repeat-round-space.json -35fd1826c23f8b06bce7d304bab87e1f caniuse/feature-background-sync.json -12953e246ff34c65c0fb79a082c150ba caniuse/feature-battery-status.json -93bd2a99261a593cfc4fbedad553da88 caniuse/feature-beacon.json -eba0389defefe53673c11ccfccbf5d1e caniuse/feature-beforeafterprint.json -64afce96a46a78b2bef8e1a8ffbe1b89 caniuse/feature-bigint.json -a95daa2a1b209ecca3960ee7c736f97d caniuse/feature-blobbuilder.json -db8f73506b0349c1535e610c67f2cbc8 caniuse/feature-bloburls.json -8ce0c440a1d5c7af69a14d17bf71a09d caniuse/feature-border-image.json -133732d297ba914b595ff60985bff97c caniuse/feature-border-radius.json -80df3a32e46598335b4151e0c3bf54ee caniuse/feature-broadcastchannel.json -85cc2cdf5d729ba42eeb67356fa6158d caniuse/feature-brotli.json -1754c33679a32e1f6ad2b32aaa320d13 caniuse/feature-calc.json -03778059cb7ed3e0f68751e8adeef2bd caniuse/feature-canvas-blending.json -119b11d6fba87a6dbae337ca72b5deb1 caniuse/feature-canvas-text.json -ca54f4b7a420ded42cb2e6eefa6c3622 caniuse/feature-canvas.json -f9909ed8fca9b924a37dfb2188a78749 caniuse/feature-ch-unit.json -97f0d4c267e733525e5b3cea3a36366c caniuse/feature-chacha20-poly1305.json -df12fbbd436ad97bbf7c3e30bb9aec20 caniuse/feature-channel-messaging.json -dc83d648ab900cf6575b42a3980a1934 caniuse/feature-childnode-remove.json -25e104a05eee9c0f1793baec9b36d640 caniuse/feature-classlist.json -232d26324a0fba2b2dc1cdb28b590d08 caniuse/feature-client-hints-dpr-width-viewport.json -b464196c2d233448c9b61e4251c484a6 caniuse/feature-clipboard.json -8f3fd03bfdcbfad51e580daeb8da034a caniuse/feature-colr-v1.json -c82b61109df3ec6e7ff0dfea9c15b0a2 caniuse/feature-colr.json -81af4a4236a237b7cef28fe357eb0cbf caniuse/feature-comparedocumentposition.json -d0293d8f76ccfd763152f2d95b0cd20c caniuse/feature-console-basic.json -9f4d3ab8bd1b8c2d772256425171bbe7 caniuse/feature-console-time.json -ba53a262b7ec653b13bc9d0d4e82f5ab caniuse/feature-const.json -743429c136f772d37d47edc2f85bd748 caniuse/feature-constraint-validation.json -f8a0ee996bf68665e3ff6820d1220ef8 caniuse/feature-contenteditable.json -c79bf901d815381c55ca460a077b73fa caniuse/feature-contentsecuritypolicy.json -3392a903b358b0bfc928f4cbb22699d7 caniuse/feature-contentsecuritypolicy2.json -db1226787a6a3625f36c00af86d614c7 caniuse/feature-cookie-store-api.json -3bd9e197033ee0a33acb0378000123f4 caniuse/feature-cors.json -93fdd0d0292373550f0aaff88c570aa5 caniuse/feature-createimagebitmap.json -b8678397ecc6e8f232d3b4e163245fc4 caniuse/feature-credential-management.json -c1ac9bcd7b0eee917a3eecef3f53a4c3 caniuse/feature-cryptography.json -05b18651418500c2eff5c3cec56f946d caniuse/feature-css-all.json -78ae24bd47abd80ed2d41efa06746293 caniuse/feature-css-animation.json -15f86bfdfc3bb4babf4ae716782553b9 caniuse/feature-css-any-link.json -8b7641080668f4c0568fbdb5214a92b1 caniuse/feature-css-appearance.json -b3241d26a31c9859e775d4acd811aeee caniuse/feature-css-at-counter-style.json -2a50d14fce5fcb5d1b7bc4d203db8540 caniuse/feature-css-backdrop-filter.json -a4e07683ec07b90cf4cd7f363ddc4582 caniuse/feature-css-background-offsets.json -da6886abbd3846356d08b4310ec3a647 caniuse/feature-css-backgroundblendmode.json -998d5b3b37788a12a1651f27e133360d caniuse/feature-css-boxdecorationbreak.json -5da6b3abf87868106494ba3482d00cf3 caniuse/feature-css-boxshadow.json -bc543240bf70440fc20fe787b97f30c7 caniuse/feature-css-canvas.json -a2955b81dff9a16aff9a81b56461ec50 caniuse/feature-css-caret-color.json -ce5fa41194a360989d0402643e420a84 caniuse/feature-css-cascade-layers.json -97f77690ff70d0be1a362b1c4395d234 caniuse/feature-css-case-insensitive.json -ad0efbae187da0a48e0d331803e8e100 caniuse/feature-css-clip-path.json -da9a1ee0edb796961a9d5fa27ba073df caniuse/feature-css-color-adjust.json -2bd2fa643d80c0faeba5fb19dd970ffc caniuse/feature-css-color-function.json -8d16f41860b74222221c233c8c5e13e1 caniuse/feature-css-conic-gradients.json -e42a11d044846532af05dca6b28442b7 caniuse/feature-css-container-queries.json -02f2d1eae30f68dead4961a4d76f0b7e caniuse/feature-css-container-query-units.json -5d68ebc623fd3524c6ae8069479d66ae caniuse/feature-css-containment.json -071bda678ef3a4e4514314371eeae796 caniuse/feature-css-content-visibility.json -33ef81690ac6884e830f1490710f6c71 caniuse/feature-css-counters.json -576adb4b1064fae8ee08f73584029b65 caniuse/feature-css-crisp-edges.json -bb5a57a5b82413f86dc4a2b8b05d0d9e caniuse/feature-css-cross-fade.json -7190113b26d6445c06dfca5a4974aaa9 caniuse/feature-css-default-pseudo.json -78c54d2750d297921add971460b7764b caniuse/feature-css-descendant-gtgt.json -fe046d9b4d0391d6d4b0aead6e5a149a caniuse/feature-css-deviceadaptation.json -4c8f6bf35cd0ab296bc5ee7c2c4eb2d9 caniuse/feature-css-dir-pseudo.json -662042ed78835e89afb9f04d36746fa7 caniuse/feature-css-display-contents.json -e447d3b9fcf049988a4b8c9ec83c518d caniuse/feature-css-element-function.json -7e71e9d33d8079e27fdd1dd0c3108de4 caniuse/feature-css-env-function.json -0f8be4cc6bee399b997074822e733db4 caniuse/feature-css-exclusions.json -0dc96810e252ae8e6ca291cf460d9606 caniuse/feature-css-featurequeries.json -74f270a227ec77d5cfc5077c585369e2 caniuse/feature-css-filter-function.json -a50e9f2222a7d71ed05c696ff84dff3f caniuse/feature-css-filters.json -7f349418cf50a43b7dc0898c1d268a39 caniuse/feature-css-first-letter.json -75d97efe85f3bc4e87702f39f280f4fd caniuse/feature-css-first-line.json -32ef2df4ef190910862802d6096a7bd1 caniuse/feature-css-fixed.json -48a5fe10df7951aa9165d4eb8733a7f8 caniuse/feature-css-focus-visible.json -65b4e7f5c8801105e81b61fe826ba562 caniuse/feature-css-focus-within.json -1bf647509f93d420809ed1153fe5cb75 caniuse/feature-css-font-palette.json -11369ff39ecef3f23859b2d4574e430d caniuse/feature-css-font-rendering-controls.json -3117970a81280c1a7e2f8a3edef4a54d caniuse/feature-css-font-stretch.json -64633c7c352b096aae330662b76c827a caniuse/feature-css-gencontent.json -1c49b720edd51734a31e75c64daf6e6a caniuse/feature-css-gradients.json -393a9ff5ee371b0f71cb8933d3f3f915 caniuse/feature-css-grid.json -e39a9db7e83b79d2734f414ae28eefc9 caniuse/feature-css-hanging-punctuation.json -da473f75ba7ce3aa39326e0efef5d5ed caniuse/feature-css-has.json -5946d81ec264e7222fdaa904b0bdd989 caniuse/feature-css-hyphens.json -efb711e7dc39274e7a7b78a09e3f3ed1 caniuse/feature-css-image-orientation.json -cb97a69bbf8d144f0346c5cd811e721a caniuse/feature-css-image-set.json -cf8f864cd9a9ab4df394e01e33552e6a caniuse/feature-css-in-out-of-range.json -3df94df2006fdfc19d703781715da12c caniuse/feature-css-indeterminate-pseudo.json -3ee583e728be6369d7373a7a738d5c04 caniuse/feature-css-initial-letter.json -d037e94f3b362257176d110f04d4f1ea caniuse/feature-css-initial-value.json -3370b43c3c98600f8909f8891eb04456 caniuse/feature-css-lch-lab.json -ba5629ef1cc3e8198008db55e8a7fa25 caniuse/feature-css-letter-spacing.json -6c8e8fc4649ba3efefa7fb5138b2fe15 caniuse/feature-css-line-clamp.json -ec8909b52dd8e6870d2be38acac9ee4a caniuse/feature-css-logical-props.json -18eeffa61fdbf495f5521657abd3e385 caniuse/feature-css-marker-pseudo.json -78606807301d480a1917119f9241d2d4 caniuse/feature-css-masks.json -6aaabb1f38cabefa84027171784327d8 caniuse/feature-css-matches-pseudo.json -8deb023512c902c20fb36ed8d72d0503 caniuse/feature-css-math-functions.json -4393dd66554423462b859c4f26a40e0b caniuse/feature-css-media-interaction.json -96ab08ec3d57ab9bcd74b894d149ef8b caniuse/feature-css-media-range-syntax.json -a9ff8a77006e159891055b2e74a5b5df caniuse/feature-css-media-resolution.json -df55448ad3ab8ee1dae35a94e221be1f caniuse/feature-css-mediaqueries.json -4c26d2f06aece5b4a05023b2d9e31a3b caniuse/feature-css-mixblendmode.json -10b21da80eb7462723b8586dcc1984a8 caniuse/feature-css-motion-paths.json -3e08f740d1d31668c993c1ac8bb36843 caniuse/feature-css-namespaces.json -3c470a1550ee61cb08fe7a0301069d8a caniuse/feature-css-nesting.json -98fc9cd253ca6a61dc7a6014a71dcfa9 caniuse/feature-css-not-sel-list.json -fc3b2a6553a411311b4a1ca51e807d6c caniuse/feature-css-nth-child-of.json -827f350d46f4eca736bef7cdc3d9caf9 caniuse/feature-css-opacity.json -b41a2a38db02786b1a6863dd2bea3557 caniuse/feature-css-optional-pseudo.json -941e045a229ec5259febdd348ae68cd9 caniuse/feature-css-overflow-anchor.json -f9adce11fd41aac5d934f8647b73def2 caniuse/feature-css-overflow-overlay.json -ce884c382c07c248a966bbefbf472659 caniuse/feature-css-overflow.json -bef9c5c5134e44f1b59c6a1fdcf05c13 caniuse/feature-css-overscroll-behavior.json -353a327a687f0e778c64b9b1b2a74043 caniuse/feature-css-page-break.json -050d60d17adbe0daef054c5585319320 caniuse/feature-css-paged-media.json -27179dbd5e590bd6ae5d8fd225fe7688 caniuse/feature-css-paint-api.json -e716787e3dd3647b81b5e6f507056402 caniuse/feature-css-placeholder-shown.json -5a923774245cfcef9354a56faa5b96e3 caniuse/feature-css-placeholder.json -80b462afa0208e87c50605f4a9f0a7bc caniuse/feature-css-read-only-write.json -3fc823294454eae6ca96abc8f26b2143 caniuse/feature-css-rebeccapurple.json -ccec55ce251b140918071bd0371d11a9 caniuse/feature-css-reflections.json -de744ddc24c162e43dc948324c82b1a3 caniuse/feature-css-regions.json -cae9c202a92ed362dfc3cf945b08254a caniuse/feature-css-repeating-gradients.json -9d7b68dc226fbb29833e39c7337a9b86 caniuse/feature-css-resize.json -5698794cdd78053199a4d6ab6b37d1be caniuse/feature-css-revert-value.json -360de9a6b74554c0688b3dd7359d615e caniuse/feature-css-rrggbbaa.json -f521082cab9b2c4a0955a45b4fef17f8 caniuse/feature-css-scroll-behavior.json -6cef82197a7c7b3d55a2fff2fa9f0a2a caniuse/feature-css-scroll-timeline.json -dc55c508ea3254ad1d642c9b34ba59e6 caniuse/feature-css-scrollbar.json -df168313badba9717d3df8ed114f2550 caniuse/feature-css-sel2.json -617e1fad1d8deb80074c5d8577528229 caniuse/feature-css-sel3.json -e5ada05e98f086fd2a146882d84a6184 caniuse/feature-css-selection.json -cb74d769cd499cc7f21aa8351b4e657e caniuse/feature-css-shapes.json -3fa79c8b508e835390e3f769dca92c64 caniuse/feature-css-snappoints.json -3b59878f45000302f2e79ec05bfcfec2 caniuse/feature-css-sticky.json -1b3b96741f1bd3fb821bca984b373beb caniuse/feature-css-subgrid.json -1ffe1d0f0cae2b725aea8d2c6e5c0554 caniuse/feature-css-supports-api.json -820c59e77700f52be854dc3add99577a caniuse/feature-css-table.json -a163a02070c59329ffbb61558f362c90 caniuse/feature-css-text-align-last.json -adfb20a56545a54d29f2e5b36e375ef5 caniuse/feature-css-text-indent.json -556ce7478412ba7ca07677f54f5d7e7e caniuse/feature-css-text-justify.json -db19b4801e563d5b13892c6f6569279f caniuse/feature-css-text-orientation.json -d693e4e1fd31fe9a898a6add76396b21 caniuse/feature-css-textshadow.json -77f42677a45936fa172926fdd7c4461b caniuse/feature-css-touch-action.json -f115d98c3ac773efd94ec915f76d75c0 caniuse/feature-css-transitions.json -4aa091aa6763a42532e1b522d92bb89c caniuse/feature-css-unset-value.json -41bac7925adcacdaf6e51dd04636729f caniuse/feature-css-variables.json -a1f8461bedec6a7170c64a0662c4ca4e caniuse/feature-css-when-else.json -ab3253d356cc655c794adb23a0732d5e caniuse/feature-css-widows-orphans.json -86c7a8e36c71417a319bd5bd2782e706 caniuse/feature-css-writing-mode.json -519fff7f2415248c00294b4dde75bc14 caniuse/feature-css-zoom.json -013c75b4266ded30e528cff1282dc8d7 caniuse/feature-css3-attr.json -a042d1b4a1e1bcfaa11e3a6202d67575 caniuse/feature-css3-boxsizing.json -99804061ab54b80556c16354428eb70f caniuse/feature-css3-colors.json -380543a1346d1a0eae415e772268f569 caniuse/feature-css3-cursors-grab.json -47f5dc869c9f3fd9f6b9b4ba50fedee1 caniuse/feature-css3-cursors-newer.json -c2f8cc034ccfb842df928cf7eef6a835 caniuse/feature-css3-cursors.json -2174f25d496b2effdc914269fbb06881 caniuse/feature-css3-tabsize.json -923e6ca737f66b527f79320fb6cb8cf4 caniuse/feature-currentcolor.json -bc42fb698047890a7fbd72094e82beeb caniuse/feature-custom-elements.json -98896ddc24596ae3ae2b620624a7d6a5 caniuse/feature-custom-elementsv1.json -d3574eb8c1d86a645b611390e3227b7d caniuse/feature-customevent.json -e78f7fcb2260a6c7b6a66edc55d5c446 caniuse/feature-datalist.json -e398a6b817d3b6a8b711d263a18fee1e caniuse/feature-dataset.json -6dda186400109d7e91983fe0423dcc27 caniuse/feature-datauri.json -4532c264e566c8f031ba848da5d11b0d caniuse/feature-date-tolocaledatestring.json -7ace9aa075942566da946e7828cc2d16 caniuse/feature-declarative-shadow-dom.json -d0daf2238419c421bc3a5b5bd0668098 caniuse/feature-decorators.json -1d7ed0d0d533ff2e6ced481766727f63 caniuse/feature-details.json -8e21eacefbabb550f05721852f5ce0ba caniuse/feature-deviceorientation.json -e2b68f58db873bee8a7530a2e995ec35 caniuse/feature-devicepixelratio.json -db42b61b3a16dc4b67618ec950bd9801 caniuse/feature-dialog.json -fb70deab63090f00c6bef01dd0c9be7f caniuse/feature-dispatchevent.json -a64173f70132afcd8cb6be949d793bd7 caniuse/feature-dnssec.json -b7bea5faf175e025d922d65e0a4dc9cd caniuse/feature-do-not-track.json -a9c287c895602590d24058d24389d234 caniuse/feature-document-currentscript.json -9716872f0fd3c734fff18278d1347739 caniuse/feature-document-evaluate-xpath.json -f9e674c5c70e7c73451c2b08c9e37978 caniuse/feature-document-execcommand.json -7f584d5213ac734684ca1431b036de31 caniuse/feature-document-policy.json -08957136d00bcbab875b4eb50445346e caniuse/feature-document-scrollingelement.json -fd67d5fd941f6f6ccb70687de61e035c caniuse/feature-documenthead.json -d3752614a0e258e3c280045a0793fa4c caniuse/feature-dom-manip-convenience.json -da40f76073a288ef0a9c9a088d1e6b61 caniuse/feature-dom-range.json -f622397abceabef7edbc1a3012b1b12d caniuse/feature-domcontentloaded.json -5e6e75cf3902877b7eb5219a2107d9bd caniuse/feature-dommatrix.json -368e83002c0b882865cb492ab151ea71 caniuse/feature-download.json -04165c142d4cc2c8ee65c12420b17987 caniuse/feature-dragndrop.json -6637892e6123a33e44696e4fc9b447f3 caniuse/feature-element-closest.json -570049d09ea0fce2aad15789ad8c5566 caniuse/feature-element-from-point.json -4f2e6974437fd644dc6fcdb40f67da4b caniuse/feature-element-scroll-methods.json -3b1f51b6f13e80804f4568ef22c88766 caniuse/feature-eme.json -ebc62fb6d232deeafa8c7ac7dda9f6a9 caniuse/feature-eot.json -ea025be57fe645844961e4df299ff353 caniuse/feature-es5.json -e652cc7fa8863c13bec76f2a2728b8a1 caniuse/feature-es6-class.json -d2c7feaab7c9305519f5428e332c72ce caniuse/feature-es6-generators.json -a3b8fb8898f0abb10dc272bacb8e8582 caniuse/feature-es6-module-dynamic-import.json -faad98e6cbb74704f201613985e98255 caniuse/feature-es6-module.json -7ebf13435c51249779287a0abe806280 caniuse/feature-es6-number.json -9e9a5f1d058139ac47a446ef1c7fc20e caniuse/feature-es6-string-includes.json -2459c14e3176a115a2ad8a077cb96e21 caniuse/feature-es6.json -8620564901dafaf20fc0b3390f6f0aba caniuse/feature-eventsource.json -d6801a6dd8499db06bff5a020b985370 caniuse/feature-extended-system-fonts.json -8c4d4980c9dad01607a7bb4cc201fd2a caniuse/feature-feature-policy.json -b029982253002980d4836a6f64090053 caniuse/feature-fetch.json -0acdc9854f835a0e1c36421ccab0d672 caniuse/feature-fieldset-disabled.json -8d64170697eb0f975a7bc91e28eec557 caniuse/feature-fileapi.json -657671efd40db1c487d2c26f122779c9 caniuse/feature-filereader.json -8bdecc28d32e30363d36a597964d4b59 caniuse/feature-filereadersync.json -7a4771eeda955fec7e11ae125140dfa1 caniuse/feature-filesystem.json -299a43165befd8f7cb52c74940561c72 caniuse/feature-flac.json -8a38a0f2160d1d918cfd8a35996e287f caniuse/feature-flexbox-gap.json -3d1574e90539b922dd3a91d0ca02bd36 caniuse/feature-flexbox.json -2d737e13acc88ac65694b29ecdee062d caniuse/feature-flow-root.json -0f5ae7c19978bc386c8938953e2ca274 caniuse/feature-focusin-focusout-events.json -1ac636f645bed75fb238f37f0294844d caniuse/feature-font-family-system-ui.json -1bb6b064c8cae9f33a594e784b051f76 caniuse/feature-font-feature.json -7914bead7f32360c1675aac1bed97872 caniuse/feature-font-kerning.json -485e4360494b79ebf591a850d44600af caniuse/feature-font-loading.json -ad8eb2b381e6c2f9e33f407354eacb2f caniuse/feature-font-size-adjust.json -356d76db338bb0340a3488b59131f75b caniuse/feature-font-smooth.json -f4b3763f16e7b1851d55ee55c6c4dd2a caniuse/feature-font-unicode-range.json -035dd7130f4e1ec025a6508c581fae12 caniuse/feature-font-variant-alternates.json -8b63f3658a6eb03fa094d3d69ac58558 caniuse/feature-font-variant-numeric.json -0357744a4072d7148b7f4725ce078dc8 caniuse/feature-fontface.json -7d3ed22020154b708c3677ea3a31e666 caniuse/feature-form-attribute.json -7ad37c72e809b8c4190bdfd08c231b89 caniuse/feature-form-submit-attributes.json -5a2e7b5b1d55d3615f5408e305fe12fa caniuse/feature-form-validation.json -13f058b1a55a043ad473ed9ef5f37cf6 caniuse/feature-fullscreen.json -c3bdb1064f07b06e72e8e4dc0fd77c7e caniuse/feature-gamepad.json -0cd5f175d0ae84d1647d436c2a9f1fb1 caniuse/feature-geolocation.json -1b6f09b92dd85db91f4908d7adbe2504 caniuse/feature-getboundingclientrect.json -2f64801c17d5b704afce8c60a836f7ee caniuse/feature-getcomputedstyle.json -fb31cefc4338e5480f1b0257c088b924 caniuse/feature-getelementsbyclassname.json -13ca28ae1bde9b9e640df6e9e0f76721 caniuse/feature-getrandomvalues.json -99000162e5700ec2812a858e116eab17 caniuse/feature-gyroscope.json -70620c82e9f4d9e681f4dd4ecef7d542 caniuse/feature-hardwareconcurrency.json -2d5bfe871b856b44c759d6b55f3bf82e caniuse/feature-hashchange.json -96320183d0fb7427af5ce51bf8ea5614 caniuse/feature-heif.json -e7b618c4c9f317151a8b6981890fb8d3 caniuse/feature-hevc.json -afc16f5da505063bb30390189d01e795 caniuse/feature-hidden.json -b9e0ba57543e9f29a3c38448d2f728d7 caniuse/feature-high-resolution-time.json -5b14dc6eeb011c0035e24490af83145b caniuse/feature-history.json -aab8162ffdadecdfd8b4f48fac49ebb8 caniuse/feature-html-media-capture.json -84115f59d4766e494344c35802966fe4 caniuse/feature-html5semantic.json -b8023dcf29549c95d495df5401fababd caniuse/feature-http-live-streaming.json -9091bed9542cfb941c7de8472783c43c caniuse/feature-http2.json -93e1872bf1f11a18249c5b24e2da9f63 caniuse/feature-http3.json -6add11dbb6c961ef18de5b2570bc97a4 caniuse/feature-iframe-sandbox.json -31fa683f6d1f98f320bf2c2b32b7df7c caniuse/feature-iframe-seamless.json -efd02238155497a20d8b7e872b2c00bb caniuse/feature-iframe-srcdoc.json -d3819d5feca04a6ffa6f7b6069587f8f caniuse/feature-imagecapture.json -e8e60408121e76e12ce4a129f945afd5 caniuse/feature-ime.json -c9ce8c4c4e7c948f5e1ea015d0a7c724 caniuse/feature-img-naturalwidth-naturalheight.json -a8208c2587a460759f932831609f0a16 caniuse/feature-import-maps.json -64bd6f758aaac5800be691a26a66d152 caniuse/feature-imports.json -97d6fc7d1510e8bf29549041ad66edfa caniuse/feature-indeterminate-checkbox.json -0c463daefdcfc54fd7aa3c932516a615 caniuse/feature-indexeddb.json -e35883c520e3428b682aeb7f913c442e caniuse/feature-indexeddb2.json -1982f8d85df7954a657939b70f148610 caniuse/feature-inline-block.json -7d1716ffd31d0e740ea04f3ed3561102 caniuse/feature-innertext.json -42c6cde9d550280aeb72b657dc6b22ed caniuse/feature-input-autocomplete-onoff.json -6c905a97223ce0c13b98839738932c09 caniuse/feature-input-color.json -11e335718b57790e5901d8141a8dbe90 caniuse/feature-input-datetime.json -f0db15ead953a53f1054d9a0f286ef64 caniuse/feature-input-email-tel-url.json -2fe52567fc7cae45236268bc5a99b983 caniuse/feature-input-event.json -f67c35328fc1f2afb1073d1feaf3cbfa caniuse/feature-input-file-accept.json -f52242c08c411ab6f1a12ab0c14f6598 caniuse/feature-input-file-directory.json -ddae83925c01557286e0b38af84d14c7 caniuse/feature-input-file-multiple.json -19df746fa2ee491225430c69f4d46694 caniuse/feature-input-inputmode.json -3fbacf51086de439e2daf9f5cabf435e caniuse/feature-input-minlength.json -61ea330d6ae2b49e8bebe9e5057db120 caniuse/feature-input-number.json -53731c4150eeaacd815cca88668597f1 caniuse/feature-input-pattern.json -5d148f7838964b23126297fcdbaf98c4 caniuse/feature-input-placeholder.json -6c74666db7bec6f14f7b45d946313081 caniuse/feature-input-range.json -42f6f10af82af4c25fbc43ce9e68e626 caniuse/feature-input-search.json -b3acdb5bed52251b84f3bd5884c196cc caniuse/feature-input-selection.json -af9699d6f2e4e136118faa078124aeb8 caniuse/feature-insert-adjacent.json -aac926ef82cbf3e6339d8b9d54fd32a1 caniuse/feature-insertadjacenthtml.json -d8c1ae71d79f3494168d961d32b5b68b caniuse/feature-internationalization.json -1d38b574b686428aa571801628a891da caniuse/feature-intersectionobserver-v2.json -76f0ca04cf8972a9d0543f0711f02b4d caniuse/feature-intersectionobserver.json -ade8992989a099c08a8d162028bf484b caniuse/feature-intl-pluralrules.json -0b1c671e73b6d83c45d515d43dc3cda4 caniuse/feature-intrinsic-width.json -4044c24faeee47f206c43a7968940c89 caniuse/feature-jpeg2000.json -77e8b67620513afa2c0d13f8efe58e46 caniuse/feature-jpegxl.json -0977a49c3f3d9c53d24a3c053521a231 caniuse/feature-jpegxr.json -7ce560a96a534b696fce5b8857167025 caniuse/feature-js-regexp-lookbehind.json -84d10433edd65efcc75f5faa119d7cd5 caniuse/feature-json.json -77009e8f8ee517ce341884fb306e93a3 caniuse/feature-justify-content-space-evenly.json -66e5c39bf25600fcf73418ef4ace5b08 caniuse/feature-kerning-pairs-ligatures.json -e53cc7ec757650371062e68776880086 caniuse/feature-keyboardevent-charcode.json -45b48baa81a28c45b6413964cc0a0641 caniuse/feature-keyboardevent-code.json -c79a0d4cc26e60a3899d9a724b1b2d9b caniuse/feature-keyboardevent-getmodifierstate.json -15f20deae02d4645b64da85786ab9450 caniuse/feature-keyboardevent-key.json -d25a03a0ebddb4e7fb912d77a7948cb6 caniuse/feature-keyboardevent-location.json -9354a101e3ab591eaf94aafdf1455195 caniuse/feature-keyboardevent-which.json -cc3ccab60e53a4f3e4e9e6ae93d49eb0 caniuse/feature-lazyload.json -35cb0b2965a11f56abb25fa8721b0ced caniuse/feature-let.json -5a40b11050beadd74d84829867f1dc78 caniuse/feature-link-icon-png.json -45c85d4dd710c6cea138d4c023db984b caniuse/feature-link-icon-svg.json -9c5cc010ec5332a57531fbe7d5f760f5 caniuse/feature-link-rel-dns-prefetch.json -59e4441596e581f4ad1ff05d4ba8b4fd caniuse/feature-link-rel-modulepreload.json -3c07619dded91c49fc1b48dec9b9afdd caniuse/feature-link-rel-preconnect.json -a58566935308d69a116d6ae1c31e91e0 caniuse/feature-link-rel-prefetch.json -ab9ae31f8e7f821a84da037710e967c2 caniuse/feature-link-rel-preload.json -107d04605545fd1f6ce15b8bcb6a4150 caniuse/feature-link-rel-prerender.json -a9db570e4c0c9826be619a07a5e6967f caniuse/feature-loading-lazy-attr.json -e5acc1e834446ec81d2a996ae4bab39a caniuse/feature-localecompare.json -6bd9f002957ed01007304c1f0f5c646e caniuse/feature-magnetometer.json -f0f01606c8d4aa7e84f40ce88e02344d caniuse/feature-matchesselector.json -c39a46dabe2144d84cbeb1d9a0460d96 caniuse/feature-matchmedia.json -e977bd209589c5e04ade4614d58abfdc caniuse/feature-mathml.json -b1ec5032fe3a597f4ecf6674ff4a731e caniuse/feature-maxlength.json -93a7c09c8585fe3c2ba83d06d777b6f2 caniuse/feature-media-fragments.json -d616836f691c132a1816fb87b27becd6 caniuse/feature-mediacapture-fromelement.json -5eecbc9be60f27e8463c05bd4519483c caniuse/feature-mediarecorder.json -f827fd0d8ce2a7e9c152eb40c767e2d5 caniuse/feature-mediasource.json -3b2ec3291c03a5a01f85ad8acd6d24cf caniuse/feature-menu.json -f831a5391b411046d5585043dfd62d4c caniuse/feature-meta-theme-color.json -225c7214aae4fd49088d521bcab72379 caniuse/feature-meter.json -4094a941484fee577cad7510a04e5cf3 caniuse/feature-midi.json -0071a4cca192f2abb081561f5928be25 caniuse/feature-minmaxwh.json -a94f05c405a35784e2b756701dbfae8a caniuse/feature-mp3.json -3b31ba20f8f2875e6ed0f047a128cf30 caniuse/feature-mpeg-dash.json -dc245206a9b1eea1398f5af752fdc1af caniuse/feature-mpeg4.json -a953e2a43b9deb62963b605165911d9d caniuse/feature-multibackgrounds.json -e5841582054d2ac6a8fe1d3b61896090 caniuse/feature-multicolumn.json -3de6ff929f3f66abacf7568e77208d06 caniuse/feature-mutation-events.json -15a3bf3f589065644350147d5d497348 caniuse/feature-mutationobserver.json -b7b8fa87a0443257af85e7e4db98710b caniuse/feature-namevalue-storage.json -fc489fa8d540993c16618f852d0d531d caniuse/feature-native-filesystem-api.json -4c13820a4052be472861e5a2d70d006b caniuse/feature-nav-timing.json -55f0541831312205b7ee33f27c32f5a9 caniuse/feature-netinfo.json -58c6898b14c4b70bd9e40b5865757ea5 caniuse/feature-notifications.json -5e87cb58ce556048d38abfb98f53cf97 caniuse/feature-object-entries.json -9625c578d9e3af6adde97841da7163cf caniuse/feature-object-fit.json -c52d1ef5def4d2e64575904e4aef388e caniuse/feature-object-observe.json -2c2b1cac4ae8b4b74fdd2b24670ed577 caniuse/feature-object-values.json -01ede544b48695f2bcf60ea5bdc54c5a caniuse/feature-objectrtc.json -f8bcf61f07b63e6b4820a9091bac6baa caniuse/feature-offline-apps.json -49917b8d8beb43ce0d5cfa2493c7d5a0 caniuse/feature-offscreencanvas.json -428610eb81debeec46a9006526e27f3f caniuse/feature-ogg-vorbis.json -ea5d005d149a0a8dd0da29218b63ddae caniuse/feature-ogv.json -f9c2e30f13c0ed1687a386af02c3ff83 caniuse/feature-ol-reversed.json -2a0ca022b714ddc89e14b80d347caa84 caniuse/feature-once-event-listener.json -3844549d9d0cc17f470aacb507673617 caniuse/feature-online-status.json -1b62793b5612ab7cf11fb92928c8a4ec caniuse/feature-opus.json -2a52c409868511f47b473ccd01854dae caniuse/feature-orientation-sensor.json -0a33dff827413fd963788cf9fe4aadeb caniuse/feature-outline.json -0047eab148f19d386a6de935c069d15f caniuse/feature-pad-start-end.json -b7525ad478dc31418efdf4a18b034906 caniuse/feature-page-transition-events.json -f5d044c9bdd7f7d33681401a6ee98e27 caniuse/feature-pagevisibility.json -033740ced6c533a0e04cee0559ee65cc caniuse/feature-passive-event-listener.json -0de97c4e4610b512bc90685cefc451b7 caniuse/feature-path2d.json -3160f165f02c60484e0e50b2d4f28713 caniuse/feature-payment-request.json -dffd24aa3cc3c525a1b4bd9801f1b79f caniuse/feature-pdf-viewer.json -40b1768868d6546d279540b6a86483ed caniuse/feature-permissions-api.json -cef3addab8c7d6439aaa227e387f75a1 caniuse/feature-permissions-policy.json -710dd6755c801c149f46949b8a931433 caniuse/feature-picture-in-picture.json -54bdb1d5dbc85224aba24e9c8f1ffb9c caniuse/feature-picture.json -6455c663c7cadfcdc0e5f26f414b6544 caniuse/feature-ping.json -aa4be25e6b5ab012420a70bf031e69b8 caniuse/feature-png-alpha.json -6ca91b0135d2b4f0b072d46fce0c88db caniuse/feature-pointer-events.json -fa6e52c78743bf4a15c68fb76704858a caniuse/feature-pointer.json -7dc603160ad9b21a780ece0c81d1930c caniuse/feature-pointerlock.json -6d41ddfbcdcaf3db0dd2e5164188cb11 caniuse/feature-portals.json -642335446f7a373292022fa7c8093db2 caniuse/feature-prefers-color-scheme.json -128fefb284d0f1a5ab350cddf8ecedfe caniuse/feature-prefers-reduced-motion.json -85e390a8c3292d105e7f3ce2a2dfe507 caniuse/feature-progress.json -3c6363c398e2c516565a8d3a266ac877 caniuse/feature-promise-finally.json -115eceef137a71f5547ca3daf4a8aec4 caniuse/feature-promises.json -084571adcadfa6627668757316cc773b caniuse/feature-proximity.json -0cc37152c29184e70c57094dbbbda20f caniuse/feature-proxy.json -518fea6cc857de3f96f834f77c467a49 caniuse/feature-publickeypinning.json -8bd3c22918fb3e3e65b9e2cab8a77a67 caniuse/feature-push-api.json -86875aa29f7ff75a318cfaac15000358 caniuse/feature-queryselector.json -00597684351bdc4a08e108623ea11e3f caniuse/feature-readonly-attr.json -ee5c5d773ef67e8681b32fc99a40cdd8 caniuse/feature-referrer-policy.json -d1ffc7cc6239deb9d0a631785d5380dc caniuse/feature-registerprotocolhandler.json -752fe782a1fd3c34ac5ba037cc8208c3 caniuse/feature-rel-noopener.json -c6c25c50ab3385d9201adb16d4fe4fc9 caniuse/feature-rel-noreferrer.json -7e6c805d2786c850972c12e04898a1c5 caniuse/feature-rellist.json -098edbea872c28bab0649ee4d41c31cb caniuse/feature-rem.json -884b005c146e183c6eceb1fa3c379f97 caniuse/feature-requestanimationframe.json -4ef087a7d413e8c89a95e4e4b9b294f1 caniuse/feature-requestidlecallback.json -2ca5b5bc8bd80e072f346a0c7c0830dc caniuse/feature-resizeobserver.json -a3448a54dd3d8d3ca3db82da46156275 caniuse/feature-resource-timing.json -87cadb86b83bbc168d8d560a6166c9df caniuse/feature-rest-parameters.json -485c3bab7c4f82c32bfaade56694cb0d caniuse/feature-rtcpeerconnection.json -e0e51ba1aa09468f8693407738796216 caniuse/feature-ruby.json -cf57e084889b08fa40ab5ae82d5aaab6 caniuse/feature-run-in.json -ae9c0f06ccd5997c31dba4533686ad3b caniuse/feature-same-site-cookie-attribute.json -52c9512bf2ed5183c8b2ca39ebb2b5e0 caniuse/feature-screen-orientation.json -73d05e0d4982770089746ec414b4c4cd caniuse/feature-script-async.json -5e0080b983fd47b53755717159b4022c caniuse/feature-script-defer.json -28d5b0c998a2d3b836f219525ed6e6a9 caniuse/feature-scrollintoview.json -469247d4103f7159b276e472e729f1b6 caniuse/feature-scrollintoviewifneeded.json -5d541bfd13b6617442e2cc5dfe0df86e caniuse/feature-sdch.json -c5b6d7a4c36c0346bc8738988cf590f1 caniuse/feature-selection-api.json -14e3ff36a807d7a5c2d3bf4158653e18 caniuse/feature-server-timing.json -581d85ae8494137918a66e5d581d2426 caniuse/feature-serviceworkers.json -78b269ed55e1498f3196bb1a7edbda7f caniuse/feature-setimmediate.json -affa53ad91d1afe40079bb429c22196f caniuse/feature-shadowdom.json -df11708eb3ce8c23875e7bcaefc10875 caniuse/feature-shadowdomv1.json -7d0518aeecee2904a06b6ac4b51f2190 caniuse/feature-sharedarraybuffer.json -7cd5d7818e58d48ed20ecfbe8f8a05bf caniuse/feature-sharedworkers.json -779092dc713da5b41061273614b23d82 caniuse/feature-sni.json -5a77276441e0f8ef243f359d3afe81ba caniuse/feature-spdy.json -509d9d190272fc275c04fc2193538267 caniuse/feature-speech-recognition.json -1ca111bf4ca08005a50c5480020ab69f caniuse/feature-speech-synthesis.json -5a3c6f46eb6afd220eaf35fe96ce0594 caniuse/feature-spellcheck-attribute.json -291050b1bb7ab7e56ebcd8992cb77dd9 caniuse/feature-sql-storage.json -ea0848e27df5b0f4976a8e481ae41ad8 caniuse/feature-srcset.json -954bd3344d44841afdc736295a9e2335 caniuse/feature-stream.json -7df82cc4eb52bcd38571532a2bc2b5f5 caniuse/feature-streams.json -25e60f4272e68ed9900eb1eae93d0208 caniuse/feature-stricttransportsecurity.json -08b46c49daf5dd6a80a23b3c7b8c1ce7 caniuse/feature-style-scoped.json -7cb087e28f52c0a045abb5e522d4cb56 caniuse/feature-subresource-integrity.json -1dfdb8cd04d073e7894176013ba74c91 caniuse/feature-svg-css.json -be1de11670ff94767c48e70bae14a909 caniuse/feature-svg-filters.json -e32dacdf4191cd76a9cf339affeff6f4 caniuse/feature-svg-fonts.json -d177f257ad7737d45c90ac7f0ce50822 caniuse/feature-svg-fragment.json -c73a875019fa2b9d522b6a219dcfa06c caniuse/feature-svg-html.json -2ee6b7bd3bb24a02242096599d638de6 caniuse/feature-svg-html5.json -1dab3092ec484b8cdfeb84e6ba247edd caniuse/feature-svg-img.json -17360a9d9de9d4559bc206264b009e3d caniuse/feature-svg-smil.json -6cc89ba1f6ee7adc1e117a0c974699fc caniuse/feature-svg.json -5fdd26daed9f7d29683327651403a4e2 caniuse/feature-sxg.json -e0d776e8a218521e6214f373af901bfd caniuse/feature-tabindex-attr.json -c9d2db2190f1f5d8117226fe47ec0107 caniuse/feature-template-literals.json -8dc524e46e266cf0fd51e6d659dca807 caniuse/feature-template.json -4993f9b71012f9baac9b3e3c16486f47 caniuse/feature-temporal.json -f6319b355c06f21d2029ad2eb2b12a34 caniuse/feature-text-decoration.json -e95a2b203f91430a6c9630d858207f72 caniuse/feature-text-emphasis.json -a5893c5d8bce0b5aa95f21f9e0df0d81 caniuse/feature-text-overflow.json -09e28507842feb265b479c67a5f9f9e4 caniuse/feature-text-size-adjust.json -bfc1b060b515a13371a417b9d50c5732 caniuse/feature-text-stroke.json -7f8af34634283b1a090b00f913c7b805 caniuse/feature-textcontent.json -a2dd33a767c3cea842b4d1ff38d6a2e0 caniuse/feature-textencoder.json -f44b51a789ce923864f2d459db80152b caniuse/feature-tls1-1.json -077ed3bc360c2fc724e6a39c38d0263a caniuse/feature-tls1-2.json -dca99fe76a7e20e426a2218f1c5af104 caniuse/feature-tls1-3.json -d68ea36f2748a38619b93837dfd27860 caniuse/feature-touch.json -58bbe91ec254c20654cae256a09bd766 caniuse/feature-transforms2d.json -5f91925c2df40b5637fec9259698e67d caniuse/feature-transforms3d.json -bd2ad61d1f127be222ed11487616fa86 caniuse/feature-trusted-types.json -ff459825f881f86fb380a1601860915b caniuse/feature-ttf.json -190b968536fa21a3b4c0d463234339bf caniuse/feature-typedarrays.json -487cbd08ab6a2a2c681741969c8ccc8e caniuse/feature-u2f.json -74e73b0ee60dbe02feae3fc09c3802b4 caniuse/feature-unhandledrejection.json -d9c54e9714531e87d1a56491a59d52f2 caniuse/feature-upgradeinsecurerequests.json -113c90f89d6e4ec43e251681c43a877b caniuse/feature-url-scroll-to-text-fragment.json -a307b88401d870f0bcc2b6aefceae829 caniuse/feature-url.json -046ef38018d9871d8f38d5633f803260 caniuse/feature-urlsearchparams.json -290dd0551b16287ac4f590acef3e4303 caniuse/feature-use-strict.json -c5323f5fd1830d2f6459977fa9e582e9 caniuse/feature-user-select-none.json -2b74187fa76dd06c8a81784815033a8b caniuse/feature-user-timing.json -c1e6cf6dffd5653ef65ea668001d3fec caniuse/feature-variable-fonts.json -0d671e02b01e9947809b3d8771924ce0 caniuse/feature-vector-effect.json -7f3b7d6e5d28170b45f948630d547563 caniuse/feature-vibration.json -70bfc926d4c925e84d469a3658bd18e7 caniuse/feature-video.json -aa34dc605512ef503b5534c18c0ad72b caniuse/feature-videotracks.json -5be85f30721eb99eeb8b72ab32be6d9f caniuse/feature-viewport-unit-variants.json -7c65e80dac7fd35bcc0cd66d09b10071 caniuse/feature-viewport-units.json -9418fbf8bee2d41b6c9142e7cd4a5d19 caniuse/feature-wai-aria.json -e54eb760b4c43c001b5c36c4f2f41a47 caniuse/feature-wake-lock.json -87c6276422f3cf2912768969f1b96734 caniuse/feature-wasm.json -d2905ba6ff2fd19cf153bd9bebbc492a caniuse/feature-wav.json -989dcf8546243b22296cf51ae50f0549 caniuse/feature-wbr-element.json -64761e8076cb7bdb032b90f5b163441d caniuse/feature-web-animation.json -af7eba70660b0fd4e49852a23f425f48 caniuse/feature-web-app-manifest.json -1c152c6eb671bd36617f552c5d830864 caniuse/feature-web-bluetooth.json -030ab196a5ecf038a953ce1cc7770785 caniuse/feature-web-serial.json -3cfc5ef101e83406092b584274d3b99d caniuse/feature-web-share.json -19ea348819afaa7382eaedece3bcc34d caniuse/feature-webauthn.json -604fb4d15785e74f5c356390f2cc1df4 caniuse/feature-webcodecs.json -5004f1030ba28f74fa525123153b5422 caniuse/feature-webgl.json -09be4cc86d622d43e1530866c5543c06 caniuse/feature-webgl2.json -0b51c1adb48373ab80b81c1e4b2dd648 caniuse/feature-webgpu.json -3e244ee805180c8d142b0b942db9a4a6 caniuse/feature-webhid.json -5d31044534d6c91cdaa2e8b63eb31ff1 caniuse/feature-webkit-user-drag.json -446a5ecd63ff9ed607a112a115810ae4 caniuse/feature-webm.json -d0676dfa657ca84a8295cf7bb9762cca caniuse/feature-webnfc.json -8975a14d5c76f1ae43130cbc17b0b67b caniuse/feature-webp.json -ba39a67b97619d741881128156b32c29 caniuse/feature-websockets.json -155e563cf04de963268af694d66c7932 caniuse/feature-webtransport.json -ebf5407e7bee783fd1f3758c81fb0aa3 caniuse/feature-webusb.json -850c24a4f4303d0e0939dc5e07f75303 caniuse/feature-webvr.json -b9cfdf0f2c9f2c863c512b676e000dfe caniuse/feature-webvtt.json -acd13a074ec990bf62200ba20e0e5db3 caniuse/feature-webworkers.json -60422e0e3b8a63c8a1ee0cf49289a17f caniuse/feature-webxr.json -c380eb5382a2b254f17b5d9eb95142e4 caniuse/feature-will-change.json -e33d352a0e7ec348a13b8312f07ee2a0 caniuse/feature-woff.json -479b07053f26c04c1d8f7a75ffd277f8 caniuse/feature-woff2.json -920715161e702ffe5b55084caaa4d275 caniuse/feature-word-break.json -23d235f926281591685e0f59f068621a caniuse/feature-wordwrap.json -2ac9dbcf3740be85b76e8683e2861cea caniuse/feature-x-doc-messaging.json -ec090b891ab6a3b98bfba09975680a50 caniuse/feature-x-frame-options.json -ac1d9e80c5f60ba9b90d4fa977cad59c caniuse/feature-xhr2.json -58286bb8142ea89f4dbdc8519e355d64 caniuse/feature-xhtml.json -98f892ecca9fb6749fb0079a8c5c6051 caniuse/feature-xhtmlsmil.json -e39f5218060d921077873243e0579aa1 caniuse/feature-xml-serializer.json -795ebfafc6ffc78ae94e8237c300ab9d headings/headings-accelerometer.json -17419334d85c4e617ad42c9789f50243 headings/headings-accname-1.2.json -fea28969ed8bd19b7c779778ccffcf1c headings/headings-ambient-light.json -8369c6dc8e33b9c937064eef513e998c headings/headings-anchors.json -b59e841d9498a4875c3b2cc93ff61594 headings/headings-appmanifest.json -ce36999e17f5d9282cd3c249251b6d9a headings/headings-attribution-reporting-api.json -d724bf601bdfab486928e7ec7e4ced54 headings/headings-audio-output.json -d803e806fc758675b9575aa9a89a9ea2 headings/headings-autoplay-detection.json -08334965b37d2ba5d82e119f03269f7d headings/headings-background-fetch.json -2e0d60b6f2d0457b6b65cea0fed84ce3 headings/headings-background-sync.json -e8d8bf67cf67b7bcc2592542c9a8d486 headings/headings-badging.json -0f76d1b67e27a1533c9ee8f1a8f0dc3a headings/headings-battery-status.json -26e47e59e12958971a1ca90928247aca headings/headings-beacon.json -3de2b5ac23ad35920697ad77c6701fea headings/headings-capability-delegation.json -2483339585dbf8a60fd8654fb5b7b14a headings/headings-capture-handle-identity.json -817e841ad19ca928c526885bbf12b45e headings/headings-change-password-url.json -f0caf6959be7dee8f47eb64619e47486 headings/headings-clear-site-data.json -f0d1ccd8729e6a26999deb48c45c9e4b headings/headings-client-hint-reliability.json -0153304de6387fc6c9c8a08ad286204c headings/headings-client-hints-infrastructure.json -27ccbe8801558659a2a71ecdf7ddc93e headings/headings-clipboard-apis.json -a2268d47299635aedf44ebb16f061cc1 headings/headings-close-watcher.json -f43d96a862c4adffbf68d235b39f6ed5 headings/headings-compat.json -55b77c5206d8944f094a91d567c6fc7f headings/headings-compositing-1.json -c12387c58cd295d313d5083e1fd8ee5e headings/headings-compositing-2.json -671b5c5f362847748b33d6367e7cf24f headings/headings-compression.json -ac38a05a169b4c6fc03ef5f1768186ee headings/headings-compute-pressure.json -a6da69016eaae1c1e4247a5551438ac9 headings/headings-console.json -951822b649c58a6c12082ad99423ae25 headings/headings-contact-picker.json -ed072d3668c86930f62d539f603aec29 headings/headings-content-index.json -d33f1860b23003853b0048fc6dfc7c95 headings/headings-contenteditable.json -b543fffa067e8a7f0183c0b1ce3ec513 headings/headings-cookie-store.json -ebccaff79296b2ecc23b1f2b63a5c7af headings/headings-core-aam-1.2.json -4e74b6557b67f569f4f5374963a38390 headings/headings-crash-reporting.json -31e059cf945c6d13a66456f0e9993b53 headings/headings-credential-management-1.json -d25d44019122df77b93c062d2cc98200 headings/headings-csp-embedded-enforcement.json -ad77a73cee98dea0449fce91d5d30437 headings/headings-csp-next.json -ff49b396f82ff8b14b4b86388eeecd5d headings/headings-csp3.json -1458fb20c43f0618786dcb8e05755813 headings/headings-css-2022.json -2cbf48468795fbdcb36bd9722068b9a4 headings/headings-css-2023.json -81af6c10dc900e0d51a7d3db8de53683 headings/headings-css-align-3.json -0730080384428a1248ea7b07963d06f1 headings/headings-css-anchor-position-1.json -fcbc66807ab17467949517e5ab9c1988 headings/headings-css-animation-worklet-1.json -cea92f0651ac2c4065d0bf892b46b794 headings/headings-css-animations-1.json -d3b10f02b050092bd596ade33ba10ac2 headings/headings-css-animations-2.json -6a62f739fb071f9fb8e8ec09bac0e09a headings/headings-css-backgrounds-3.json -bb7eaa88f82cd2286de0b847854c99bd headings/headings-css-backgrounds-4.json -7bd6b3385a7ff0615de9416d99c846cc headings/headings-css-box-3.json -8b0c4a6b02bf548a861eaef1bec10dfa headings/headings-css-box-4.json -2cbff5a9efaef3d5cb0843b7bb6e203b headings/headings-css-break-3.json -fc907fa30ac4715f391df6315f2b64b3 headings/headings-css-break-4.json -cd863e67ee06cb13a27a4c3fe53d804d headings/headings-css-cascade-3.json -239b07d395ae279c17f0d37489d5a48b headings/headings-css-cascade-4.json -06c3c69225eca3dae35b0e99a06fe1e7 headings/headings-css-cascade-5.json -3f61ca9ac82308797feef64740397d0e headings/headings-css-cascade-6.json -a8636ef5c2cee27cf32a8bece3d6b300 headings/headings-css-color-3.json -153e5a905ecb363c3ed9d05f150113c7 headings/headings-css-color-4.json -27691029df70a897a3230d92464aeb7c headings/headings-css-color-5.json -adadef193db1f57cf4e8af3fb3855866 headings/headings-css-color-6.json -0b2632eed2013cb573f8239eee564f00 headings/headings-css-color-adjust-1.json -7323495ada8a46650f793d2e605918cb headings/headings-css-color-hdr.json -0967c6193ee9a9aeecd963c9f0f85a78 headings/headings-css-conditional-3.json -73e5c552816efbd4ffc65734ca56d0f4 headings/headings-css-conditional-4.json -1602d5587fb2dc3bbc82f1694875c5e6 headings/headings-css-conditional-5.json -f169264a33a060a5c74fea593ff4c7a1 headings/headings-css-conditional-values-1.json -38a7220edd72eb7bedbd35d29a787819 headings/headings-css-contain-1.json -e7c253c8cdd99bf81fabfd9410bd223b headings/headings-css-contain-2.json -43374f4398911c35cf82b8c10fb4c58f headings/headings-css-contain-3.json -fc4c4a73c4bed03dc57c8a95cd15fae1 headings/headings-css-content-3.json -130524f7e5217004333b77f79d118fb5 headings/headings-css-counter-styles-3.json -19293663341d71aa96dcf941a1371da7 headings/headings-css-display-3.json -69c517e04ad0fdd06892e3e7a67d9d62 headings/headings-css-display-4.json -cde8d958615b0d3d639fbf8ba57e9055 headings/headings-css-easing-1.json -ecc7d74fad9b8da2cfec98db79e5a186 headings/headings-css-easing-2.json -1f9a32e0e1c4ce5f8a9c4c4ae2416b09 headings/headings-css-env-1.json -1bee22ac683599419857f96d8102aff6 headings/headings-css-extensions-1.json -eefb2d0c24f9c42c201c2502bd41cad8 headings/headings-css-flexbox-1.json -82f4bea194708313eb0f1469e85b6b52 headings/headings-css-font-loading-3.json -add38cfeb8cb04499ed903d937f381b1 headings/headings-css-fonts-4.json -a3fef410f6e145d6e2a268a8f8729fc5 headings/headings-css-fonts-5.json -1fe44039ac0d77b68933f559d9863cf1 headings/headings-css-forms-1.json -4b47aff2d97add3563b834a8c91949a1 headings/headings-css-gcpm-3.json -7cbbd29ebfbb6641f836cf5e6e935efe headings/headings-css-gcpm-4.json -1dd6d471ecd875049f41d1892a8536d2 headings/headings-css-grid-1.json -081d3bd05f74bd6f32daeb7a74903436 headings/headings-css-grid-2.json -0b2705bf23a42a67c7641de80e92740d headings/headings-css-grid-3.json -6424f9edfbe3c7128b46d4f88f33d64d headings/headings-css-highlight-api-1.json -7c318ab39537be2771543d746ae24f88 headings/headings-css-images-3.json -14f6ff130a913d2dca58de5d40d045b0 headings/headings-css-images-4.json -674bd7e400a05f31786eff96eb56fb71 headings/headings-css-images-5.json -13f09f9a14dc1f22d5ef4d798d84ae49 headings/headings-css-inline-3.json -b3ab7980a53e2a959971eac0f122a1f5 headings/headings-css-layout-api-1.json -b2600c9a54a25ca3028c3aa00bdaac0a headings/headings-css-line-grid-1.json -36ab17569da68c9df845f8e893fafabc headings/headings-css-link-params-1.json -70ba4e6552c76135ef4821c4ed5067e3 headings/headings-css-lists-3.json -8cc0ad6ab571477c32501a48ba98c5c7 headings/headings-css-logical-1.json -90b45125621bdfc396e4e8821e4d60e7 headings/headings-css-masking-1.json -834c07344e63c0978e0a823c35a53a69 headings/headings-css-multicol-1.json -9e4266eb0c78d338be62cc3b1aef6768 headings/headings-css-multicol-2.json -78e447e68f641127a2149d3d6d47944a headings/headings-css-namespaces-3.json -6bdbf98f30c0293460f736e8418331fc headings/headings-css-nav-1.json -2593286adcdd169d4cdc579e26fcbbe1 headings/headings-css-nesting-1.json -a60a44201dc0895067d5ddc6860a3ebf headings/headings-css-overflow-3.json -132651ec623175287430bfb7bbe89023 headings/headings-css-overflow-4.json -c2898c34a863580217850adc5ea6d3ab headings/headings-css-overscroll-1.json -3da7d074a83de60f9d741e24fa9dae07 headings/headings-css-page-3.json -06118484c2a9f8edbd5554694fe0d29f headings/headings-css-page-4.json -e5412728c2537c77b78f6d2ba09b27ff headings/headings-css-page-floats-3.json -e62daabc78f1a6a03343d59b7d8afb6d headings/headings-css-paint-api-1.json -b9695c995b69b133b940ba9ea3048d8c headings/headings-css-parser-api.json -2099b56eac275fb95cb07aaf9e80447c headings/headings-css-position-3.json -fa8e4e4271903c024ec90117bcc6ce20 headings/headings-css-properties-values-api-1.json -62c57736ed5b296db05938b2d5059013 headings/headings-css-pseudo-4.json -25ad25708c66998f74dd1d87fb0556cc headings/headings-css-regions-1.json -4230379e9e017558be7bd0e7f1edb67f headings/headings-css-rhythm-1.json -dc505d611bcbabc3fa93a388be2d1c20 headings/headings-css-round-display-1.json -701e866efed255cf52916e22b85aa350 headings/headings-css-ruby-1.json -69ae007c0dc6c7f42afb0c7e877c7ce2 headings/headings-css-scoping-1.json -8ea0ee6497cd7606b7c3b4144f10cee1 headings/headings-css-scroll-anchoring-1.json -c3c0bdfd1a950422c1437a8f59ace4da headings/headings-css-scroll-snap-1.json -f686a882965f987cae0e9e548ff20e1e headings/headings-css-scroll-snap-2.json -741adf724153f50f775fc91a6894470a headings/headings-css-scrollbars-1.json -f6e2ad0060b4e9250ea2906b5f5450b8 headings/headings-css-shadow-parts-1.json -d2a2ef2d7f3370d1c03f5f06a84f42a6 headings/headings-css-shapes-1.json -b3f9f00ad5df3da97338caff85f3429b headings/headings-css-shapes-2.json -a7e7f105e680fb427f1d368dfe83ea5a headings/headings-css-size-adjust-1.json -7d016ef70559ea390320c6e93cbb4796 headings/headings-css-sizing-3.json -564ee36d4284a1c67abb5f4d8710798d headings/headings-css-sizing-4.json -5ab3435da3a48e75c7bef1bebe455953 headings/headings-css-speech-1.json -a555b8e1dc89ba77a5eb298f91373415 headings/headings-css-style-attr.json -0e35fb0ce5e0ac3ddb205da7b651c3f8 headings/headings-css-syntax-3.json -9de1b5724f0342606798120febc3ed23 headings/headings-css-tables-3.json -b6f698d46289e031ff22b952189d260f headings/headings-css-text-3.json -c18c03196e7f3035d27da7c6c9471025 headings/headings-css-text-4.json -7af3d020952987277d4647d3721144d0 headings/headings-css-text-decor-3.json -4faf4a54aff19baebd834f0e2992cd50 headings/headings-css-text-decor-4.json -05dc7e9bc61a618c4dc101aefd5ef64d headings/headings-css-transforms-1.json -9a63164f553fb8c098718f83b45a6198 headings/headings-css-transforms-2.json -bc12177ebf20170b58073b5bd362ce56 headings/headings-css-transitions-1.json -bb7ac9eb202471a2729b9474c2764be5 headings/headings-css-transitions-2.json -420e7bf1e361e98459feb09e9edbf3dd headings/headings-css-typed-om-1.json -319a699a01cf35af21e8e31ad28af033 headings/headings-css-typed-om-2.json -cd66687cc4f33028df243c3fef1f8d95 headings/headings-css-ui-3.json -f861940c2399b54b6bc242394c618c7b headings/headings-css-ui-4.json -5f5f9db179adeaada2c37dda5aacff1e headings/headings-css-values-3.json -81d0b7430288c9674e52691a068c5723 headings/headings-css-values-4.json -c3dd2b3a2c0230de26a75e28f588b40b headings/headings-css-values-5.json -1637d4646933a58891eb6d5bd0e01eb6 headings/headings-css-variables-1.json -34aa78f0344690162fee0df4caa0d014 headings/headings-css-variables-2.json -03106e40353b50f76723c86e12da356c headings/headings-css-view-transitions-1.json -d56c3457b475da3399111fe67713f0a3 headings/headings-css-viewport.json -137ebc79c3f586a74c5689e74975f72f headings/headings-css-will-change-1.json -822c58d55f4441bfa028e51648ee0240 headings/headings-css-writing-modes-3.json -17eac3615aedcc6411de5a968687af4f headings/headings-css-writing-modes-4.json -89863a766aa4bbaed39518616dc58ef5 headings/headings-css2.json -6f0633f5fd6bbe7bcaf1da322b4a1a37 headings/headings-css22.json -8b2b73d40d851cef24302e3f4c6c42e6 headings/headings-css3-exclusions.json -ca0685527f79c8dddabe3df7656acbb0 headings/headings-cssom-1.json -5016ac9c5c1fca798ea4985f82969fe8 headings/headings-cssom-view-1.json -7731f332caa6e947e2f9fc6b68259695 headings/headings-custom-state-pseudo-class.json -8966de874f494f27146c66d0d87079ef headings/headings-datacue.json -e98dc5f9c20c647dc4801419941f0c5e headings/headings-deprecation-reporting.json -f2eaf8d1e152ccd5fec68e0914aebe2d headings/headings-device-memory-1.json -b84888641dd0bbddec2bad82f0ef3966 headings/headings-device-posture.json -67460bd441e1d022a302d547fa3c22b9 headings/headings-digest-headers.json -66bbf77699cb501c957dd3e255efd34c headings/headings-digital-goods.json -e64fd9838e40021e76db06fb584c5b07 headings/headings-document-policy.json -da05b2e4bd3c1209057f849077f4eeb0 headings/headings-dom-level-2-style.json -0ac43a5ea52bb6915191d59fe8a9bb2c headings/headings-dom-parsing.json -ad0b926afd0be42cd45b8fc92cfc21d5 headings/headings-dom.json -8aeec7dbbb6733d024d705ac55cb3a33 headings/headings-ecma-402.json -91d5bf7e033af0c1b417bff1b47bd25b headings/headings-ecmascript.json -6470246aac2197b6ca50a0cda1ba11aa headings/headings-edit-context.json -a511944114e4d688325b398c1b5e710a headings/headings-element-timing.json -5dac532d16e42aa6897b0ece16427fac headings/headings-encoding.json -adc136976280b8dc926b15c6a1c9f3ab headings/headings-encrypted-media.json -1e280a513c038c3636c01330b5f1b273 headings/headings-entries-api.json -fb60a6b19c87f45e6ecfb8c888e893b5 headings/headings-epub-33.json -4325d26a90f6ac03974a3340cd9dfc62 headings/headings-epub-rs-33.json -97414cb48fc0d36990e54da1ca9b7d60 headings/headings-event-timing.json -3a1d2ee0b780058841b061f9fb56d015 headings/headings-eyedropper-api.json -242fffcd6b8ea806f101fcbc0321140f headings/headings-fedcm.json -c2d2b9e4d7761bbd0252f6d3b0c56e6a headings/headings-fetch-metadata.json -3592f1131574e1e2fae5d10da4ea0b28 headings/headings-fetch.json -f3469d41f7bfb6e1efdf65d834a20460 headings/headings-fido-v2.1.json -353b80d5e2fe02380a62e600e2292fb9 headings/headings-file-system-access.json -b3a45f2c035bff32177f62f910134f76 headings/headings-fileapi.json -561556e1f782006c05c83d6b013b5817 headings/headings-fill-stroke-3.json -3dbd017ca4dccba01f9e8130f6b1c8da headings/headings-filter-effects-1.json -1d99d7c0187475959b64226a21772878 headings/headings-filter-effects-2.json -fad8c0f27c52c214d4ffe7ba04607d09 headings/headings-fingerprinting-guidance.json -4e1538bf24c2f441e171a2ed6ce2b772 headings/headings-first-party-sets.json -a9096514285b7bf03b6174ffb2a2e5ce headings/headings-font-metrics-api-1.json -7713706c10b1b65e5e6e0e48b6298841 headings/headings-fs.json -c30f8d3ac8e942dba0fcfa8bd9c1af7e headings/headings-fullscreen.json -0eb563465ff25247856d4aa2ec788130 headings/headings-gamepad-extensions.json -2dc67e44811344b8bd6b05fd523888f8 headings/headings-gamepad.json -95550fe682c80f03e7d7a6890d5b6e4f headings/headings-generic-sensor.json -f54eddc6f3b23013b893a2b2777d4195 headings/headings-geolocation-sensor.json -693c63582479e5a3ba1cd48600bde34b headings/headings-geolocation.json -6632b2474d25fa887e7dbbb025619b06 headings/headings-geometry-1.json -84bb50d9bc962b051d8b270e49c01325 headings/headings-get-installed-related-apps.json -aec6ea69a04113dbb2e4d3de615b6926 headings/headings-gpc-spec.json -b37b45f93aea57b1938c623b8d48369c headings/headings-graphics-aam-1.0.json -0e6e9488a5a5c7dff458eb45c1bdbd6d headings/headings-graphics-aria-1.0.json -8c19c61268daf50ad50deaeeeabea453 headings/headings-gyroscope.json -f43923393e5dbe28330076ae3afa0696 headings/headings-hr-time-3.json -8582e5178d8271a6cbb78851c0b1ecb2 headings/headings-html-aam-1.0.json -c09c9b66911a46a1bbc98ed9749a1188 headings/headings-html-aria.json -1e21b94337bce022b06b8bfccdf96a93 headings/headings-html-media-capture.json -4fc1c90a89e2735a2ce31e106d747c81 headings/headings-html.json -12901e1de7d4d4607519a985b40a859c headings/headings-i18n-glossary.json -18ba02613657acc1433709fa2bd2d33f headings/headings-idle-detection.json -2bff91eb9d188204bb57d73bc85d003e headings/headings-ift.json -6f9ef9be34badbfc4a42c401a77b1b73 headings/headings-image-capture.json -226341e31273d17c5da1c1a6166b1ea5 headings/headings-image-resource.json -2a967e83f59fa8ac35a5d629f7195383 headings/headings-indexeddb-3.json -2d5c5c5355a35c28b57d723759b04009 headings/headings-infra.json -96d4c4d8f08904a29184a2c3ba3d75c0 headings/headings-ink-enhancement.json -6fd8286979ab8b5041f7725fd4544351 headings/headings-input-device-capabilities.json -cd3b29790104087ed9d3fe37e6024aca headings/headings-input-events-2.json -3b8ff17927ac43e937935c7363e818e6 headings/headings-intersection-observer.json -5461aed614c5ba550b4373841aedaf39 headings/headings-intervention-reporting.json -7748c5644c35bbc4ec8e9025ff88316e headings/headings-is-input-pending.json -eebb8817ddaa38cb6b112e6f518fd3c8 headings/headings-js-self-profiling.json -b9bfed7d1c362ffa618c2ead85c5a201 headings/headings-json-ld11-api.json -318483a5a31a9f16fd929fe88cdcbd81 headings/headings-json-ld11-framing.json -0a90ee05151441ed2c39054b279840a0 headings/headings-json-ld11.json -64041d19caa08c5327f7ba8b8960978b headings/headings-keyboard-lock.json -ac3c75dd589c8fdda8d64efbe2460b00 headings/headings-keyboard-map.json -33733e2a45917777f6ef6cac96bbeab8 headings/headings-largest-contentful-paint.json -2bed02191326da1d768db5086e57cd6e headings/headings-layout-instability.json -3cef0714d7edb8389a7ae98252977816 headings/headings-local-font-access.json -21dc0d0ac082b800d33bdbe38ff27573 headings/headings-local-network-access.json -c5e25da00fc112f6db3a64501b2f1e58 headings/headings-longtasks-1.json -de0ff7e7e7ff43b4c82d76ee001aebec headings/headings-magnetometer.json -b11f069adf8a36319f43d9f2fad110c1 headings/headings-manifest-app-info.json -6d9d4c5b4915acfbcc18ffa32ea2c6d4 headings/headings-manifest-incubations.json -41bee3e72a9f8beef1f7737cd8c278ce headings/headings-mathml-aam.json -f8bf9cddb9d8ef44476fe15ec00d973f headings/headings-mathml-core.json -f958d7c415ce10b875323075d233a0ab headings/headings-media-capabilities.json -1262c3fc5d3e2b7af1f2472ce3e6830f headings/headings-media-feeds.json -e1c9f6197a433bfb9a519c018dd824f8 headings/headings-media-playback-quality.json -8077ce6214f151f5e1cf17873a7c3694 headings/headings-media-source-2.json -33c1cef57526940ae9ce8ac51bee21fa headings/headings-mediacapture-automation.json -5ffae6ca95f915e0f3758bd012d9af91 headings/headings-mediacapture-fromelement.json -8be83e1de9ab4fa4d3f41ee797b20033 headings/headings-mediacapture-handle-actions.json -5fbeebd9812f6d416fa6c5e384bb9ec8 headings/headings-mediacapture-region.json -2c03150f18b479dbf8036035359ec1bc headings/headings-mediacapture-streams.json -f3fa4134adc2b86e0aecd8a49e62e7d5 headings/headings-mediacapture-transform.json -123ea0ba4b70e9001b369c12b96838ca headings/headings-mediacapture-viewport.json -f96cb7e9986ea5cc43735b6bdca82551 headings/headings-mediaqueries-3.json -1af5c2fa65039086013daf1861a1669a headings/headings-mediaqueries-4.json -20c9a0321193f92327cecf2aced24f33 headings/headings-mediaqueries-5.json -339dad22bc589c60da6386f3318c3bf8 headings/headings-mediasession.json -0ae4e700dd75f4c2dbe273fffba1acb6 headings/headings-mediastream-recording.json -2ef6d9e68111c8d8f366574fda2f17a5 headings/headings-mimesniff.json -f25321eb09d2b8bfe472367c1c617d58 headings/headings-miniapp-lifecycle.json -2da471dc2cf59954b8c5592fe99e6739 headings/headings-miniapp-manifest.json -2516ce538cb3d0495921eca178f308d5 headings/headings-miniapp-packaging.json -46692a3e5a1d05c5b16832cfb6f277d5 headings/headings-mixed-content.json -ab64fd5d2ea48c80551e62fc5b3d27ae headings/headings-model-element.json -6e55f052333cac3fa033072eabefbcf5 headings/headings-motion-1.json -a058d767860d8baf3e88a4f1ed6c8801 headings/headings-mst-content-hint.json -a7108e5f23601e27f0be869153aa367d headings/headings-n-quads.json -fa7e63b6d7512b30f5faf602a8d08f2c headings/headings-navigation-api.json -765d028464105497c3c95ddb6eb9244b headings/headings-navigation-timing-2.json -3051260625c7e1e61e1a67d976cb024c headings/headings-netinfo.json -82cdf984c666c44a0a09619d609ce4d4 headings/headings-network-error-logging-1.json -60e4f67aa78b0e07a5073dd8301b5da7 headings/headings-notifications.json -ad4306bf3f409e39653a82760abcb089 headings/headings-openscreenprotocol.json -9b8f5820ce3d476ddcce2f97ff8c534d headings/headings-orientation-event.json -f588b894a560408467efafbcdd317b16 headings/headings-orientation-sensor.json -dc08a378c7fb13f1be2c2e02873e14a8 headings/headings-overscroll-scrollend-events.json -8cafdbb4230f3d3d4f5df0b675b0d4e2 headings/headings-page-lifecycle.json -1c5e035e8543dac49b9699948b80bd16 headings/headings-paint-timing.json -a4e97593f6713560cf85d62c9428a8f7 headings/headings-partitioned-cookies.json -dd3b7379eef6b2658399a161d193308a headings/headings-payment-handler.json -531c63b8fca30fc1042a054a3d906f56 headings/headings-payment-method-id.json -eed91c95ea6fabff4c5681c85de4618a headings/headings-payment-method-manifest.json -25e0ee955bed5577641c0b6089704e2c headings/headings-payment-request-1.1.json -aa370d7c82a091b683726dec71f8d60f headings/headings-performance-measure-memory.json -d9c8ce7e24c06d724f30b6fed12f164b headings/headings-performance-timeline.json -bcad5a1d7d9e1d4192831c80c079b79b headings/headings-periodic-background-sync.json -3d564ec008e392cad13cbb5927366e5b headings/headings-permissions-policy-1.json -9e155e5f65cb90430ea5f67ec903d5db headings/headings-permissions-request.json -36c38b51f6753535f8e47608cdc08509 headings/headings-permissions-revoke.json -1ab5b71504f7850e3b76753a1bf7d82f headings/headings-permissions.json -db0767e682d090b014ca57177add9235 headings/headings-picture-in-picture.json -1da1340753daf7da4ac0afe91bb1c91a headings/headings-png-spec.json -99feb73aad4f841ca76142d6912b72a9 headings/headings-pointerevents3.json -36c7541e42df63abc72d381892a6e34b headings/headings-pointerlock-2.json -2e051d6411442c64a5b608bb19352b2c headings/headings-portals.json -7fd98d787917175fbc931e1cda04e11d headings/headings-prefer-current-tab.json -7c3e8c95b692689e514d48452290a34d headings/headings-prefetch.json -e45fee8bbb38d0a3e681bf5c8341930c headings/headings-prerendering-revamped.json -c24db552b71d2149a44dd82c4639a8d8 headings/headings-presentation-api.json -effef60644cf26fee23e6b31b67326bc headings/headings-private-click-measurement.json -b8b4018152ab9003b4cf8215033a281f headings/headings-promises-guide.json -fdda359857d3592705bd4af70ac7ccb2 headings/headings-proximity.json -03f486ab551e58ecd1148e48c5bd7677 headings/headings-push-api.json -1164731a43a65d4d3b04e002331a6a96 headings/headings-quirks.json -eca87db4eb772e27f9f49899c65c9a81 headings/headings-raw-camera-access.json -dec4267f6dd27e8ac002d17a31ef7e04 headings/headings-rdf-canon.json -5f3bce9b120450abd1529179d60c4c6c headings/headings-rdf12-concepts.json -b66421890cf75e776cf1acc365e536df headings/headings-rdf12-n-quads.json -cdfbd4c44b3f7ac46d52ab7307c8e4c1 headings/headings-rdf12-n-triples.json -b6553e29d9502dba5766f7ef1ad6761f headings/headings-rdf12-schema.json -1f501fd3ad75030f00361f5a69e5e5bc headings/headings-rdf12-semantics.json -323eb7f98fcb94792a5ae78a274bbb51 headings/headings-rdf12-trig.json -4b07bd84dadd51ab59d66e92348ab780 headings/headings-rdf12-turtle.json -50af1385c2f24d5b5a5cc2f6a0ca1f6a headings/headings-rdf12-xml.json -fa565192ba35c9f2ebb14fc64708223c headings/headings-referrer-policy.json -32292ce1b6415c625d5639a697b301c2 headings/headings-remote-playback.json -f07a673b5b94c8d04f8ae4d35e2fe918 headings/headings-reporting-1.json -7ecf42125459b9ee0286084f1fd3df9d headings/headings-requestidlecallback.json -a82d5eda3b3cbd9d9b4c5dfd00ef3d72 headings/headings-requeststorageaccessfororigin.json -6fd71808de9744fc1165b2594448e3b7 headings/headings-resize-observer-1.json -4038d6696b6a3f65744ae06b8c31c5b9 headings/headings-resource-hints.json -9f44b0528ab6c88e0eded6f27b5d597a headings/headings-resource-timing.json -e110835bf85704aa20154e4925b7d544 headings/headings-responsive-image-client-hints.json -aa5ef901c39e28d1266cceb692948a53 headings/headings-rfc6265.json -d0f39bafe4220bb695cdd7f3f426ff67 headings/headings-rfc6265bis.json -a7160412bb0d00f3a300538e78e9d35b headings/headings-rfc6266.json -50d519ae2e12461be5a11b151e27d4fb headings/headings-rfc7230.json -49607b341b9fcc229f6358499d76223d headings/headings-rfc7231.json -731c7941d11fea80d218afd6f6ee5e58 headings/headings-rfc7232.json -3e10fdb2841cbc6585451c3ce365581f headings/headings-rfc7233.json -b13b7e3be73bdfd3d75bdc49b5ec4488 headings/headings-rfc7234.json -483a42f6268a0a8685454023bea67eab headings/headings-rfc7235.json -cb5763312ee424d774e569db618be7d5 headings/headings-rfc7538.json -1885047f9c5e0d2eef1822f987759da1 headings/headings-rfc7540.json -e9867783bd845c4470e366187a3a2132 headings/headings-rfc7616.json -a65bbd92d2fd7aeff05699e0d1223c61 headings/headings-rfc7617.json -85790671f81dbad914d118a881cae441 headings/headings-rfc7725.json -72ab48cfff3fa547200c7b01a3b93b0b headings/headings-rfc7838.json -699f8bbfda8c50bca12f8fb89dc82325 headings/headings-rfc8246.json -2bd15e1eed942b97713f4735794da428 headings/headings-rfc8288.json -685bb1141e7bdf9882dc6642d92843b9 headings/headings-rfc8470.json -f9cf3e96dd8d2ea5c1f56f554d9b0738 headings/headings-rfc8942.json -d5d43e8a8f637f65cf802771d02bccc1 headings/headings-rfc9110.json -6d0e22e2bfa148637165807776bdced0 headings/headings-rfc9111.json -0fdbdde2ae4c4e09ab6ebd458f4c50b6 headings/headings-rfc9112.json -9a86a107c0a4d771f61890406eb34383 headings/headings-rfc9113.json -49521533b02f71b8d03c19317afc5284 headings/headings-rfc9114.json -ddc554424db7decedd317c80d5caeae1 headings/headings-rfc9163.json -d12551f33e2f464eebf68581649efc9f headings/headings-sanitizer-api.json -05f4b18235a21f1a8304f472c8e81873 headings/headings-savedata.json -f2a0761b5f60566f0bd4bb7eebc2b4bd headings/headings-scheduling-apis.json -500fb56713f0d141e553dcd4f47c561e headings/headings-screen-capture.json -4cab354e7f6394e771894eb0deb30346 headings/headings-screen-orientation.json -5d78d31d3ec01b6434faa8d60dc81e3f headings/headings-screen-wake-lock.json -245af4e10502541b8ba86772fe0de535 headings/headings-scroll-animations-1.json -674b7012b24cac1e5ec10bddf99f40cc headings/headings-scroll-to-text-fragment.json -b0455615512ac6ccb2acfb2561614455 headings/headings-secure-contexts.json -05bb44c55c99795eb2c16d9f71a68015 headings/headings-secure-payment-confirmation.json -84d9bb07503572719df1e0644b0ec14d headings/headings-selection-api.json -3717df3b62898184b1763888867ed097 headings/headings-selectors-3.json -2466fbaeb404e3ea9d15dd75ed0d979a headings/headings-selectors-4.json -19ed021ad4b6b73b08e1cd751eac1a80 headings/headings-selectors-nonelement-1.json -590117db57b7f4f171233ddc0009c4da headings/headings-serial.json -5586199b524a717be8c7163b7b2ab7e9 headings/headings-server-timing.json -39eba0ff63c93c0bedc9f925398b615c headings/headings-service-workers.json -4952e48378d8fe43a70da3db9e9ea2b3 headings/headings-shape-detection-api.json -33e58fa5b0b62b18bd65fcaa7d3e461a headings/headings-sms-one-time-codes.json -ecc3fbe888ed2be87d631890094c2c58 headings/headings-sparql12-concepts.json -41fe370a7838d05d478941b875e4dd69 headings/headings-sparql12-entailment.json -927e24fcf181cf13d39f0671d332a749 headings/headings-sparql12-federated-query.json -69d443ec6181e743a5f9062597c75214 headings/headings-sparql12-graph-store-protocol.json -e5b4ca63b32f24e096239dd2b42de7c8 headings/headings-sparql12-protocol.json -ff34cc73f5b351d453b2e251fc44b6f1 headings/headings-sparql12-query.json -80330841b4aa8c35c279efbab1fc0778 headings/headings-sparql12-results-csv-tsv.json -7120184e2ae8dbf1fd0e968e552dd6f7 headings/headings-sparql12-results-json.json -863f2463bc7d69e66ae00c6062d4927c headings/headings-sparql12-results-xml.json -232dba2d7a558abd692fa60af401884f headings/headings-sparql12-service-description.json -ea9dffa38d364bdb8b31380abb6df5d0 headings/headings-sparql12-update.json -4e2bdf6b5d30d9a6246dcc0b487ab8a4 headings/headings-speculation-rules.json -21075f737e1d077db2744ab747264d10 headings/headings-speech-api.json -fa300173946d3a3cb355807af20f73a0 headings/headings-sri.json -60e304557eaa479d657fd82c2d0113e6 headings/headings-storage-access.json -90bb36cb84cb676f3c5f1849cd387d67 headings/headings-storage.json -f5b7ae8a7090e2d9105c5ebe1481c5ec headings/headings-streams.json -1838d3cc27102da35f6870fd5cb89807 headings/headings-svg-aam-1.0.json -b699b9740b3bca040a8b11cfbd1f4e39 headings/headings-svg-animations.json -402b9fdc0e3d304718338435db97d85d headings/headings-svg-integration.json -79f6f0db34f95f3f8b6f1b4faecf0d1f headings/headings-svg-strokes.json -8761dbddb70453140b3dbd54f9eaf0a3 headings/headings-svg11.json -38ed17a05e43fa25689024666bfdaca2 headings/headings-svg2.json -5c146275ca352355dd6ea7744257218e headings/headings-tc39-array-find-from-last.json -8468801a3b148876e377b937737adaa9 headings/headings-tc39-array-from-async.json -f25e5988348a85d0a8ce82b38b09800c headings/headings-tc39-array-grouping.json -ce9c2fe396b0ad20505cdcef25de55f0 headings/headings-tc39-arraybuffer-transfer.json -ab23486e7f6f2a5781a6c5ec0831b0dd headings/headings-tc39-atomics-wait-async.json -a910e601acbb35b7dc1b6d8bc80c8975 headings/headings-tc39-change-array-by-copy.json -55d0fcc79d93e0e4d11677e628c155ce headings/headings-tc39-decorators.json -0d256fed9d86ab97631b44ca5816a310 headings/headings-tc39-explicit-resource-management.json -77bb886dac02b3c647c30d77e5a0e773 headings/headings-tc39-import-assertions.json -ce57b20c094c1a1fcb145ae297146e12 headings/headings-tc39-intl-duration-format.json -0d27986f9b321b834a240e3f35996cde headings/headings-tc39-intl-enumeration.json -56989a84a399628c85ebf4e5e4994c27 headings/headings-tc39-intl-extend-timezonename.json -2ee2006ab1b3a6e1c9d9fd2a23099fb8 headings/headings-tc39-intl-locale-info.json -4ee17373f488da2df568547aff1f9304 headings/headings-tc39-intl-negotiation.json -75ce1f6888eac5bf27a930727f035d81 headings/headings-tc39-intl-numberformat.json -844400294690e8cc5d3c28aa7e3a09a1 headings/headings-tc39-intl-pluralrules.json -35c56c4ed5cb79549d8ecab865f88a49 headings/headings-tc39-is-usv-string.json -fa38c657c4a979582df17a4c00710bcc headings/headings-tc39-iterator-helpers.json -7558ab5aa4ef8476b6550d226e137532 headings/headings-tc39-json-modules.json -1e0e063dea186c870b6eab0c31ba4f70 headings/headings-tc39-json-parse-with-source.json -96bbc95558a1ce69e0629a489645b5b9 headings/headings-tc39-regexp-modifiers.json -78466f23d14232eb5c919ca35253b507 headings/headings-tc39-resizablearraybuffer.json -9e62be5a3d30a68c3c3eb075a68be909 headings/headings-tc39-set-methods.json -20a64e62043b0894809def687752bf7c headings/headings-tc39-shadowrealm.json -2260d88f2db16f7e71476d60a1eb395d headings/headings-tc39-symbols-as-weakmap-keys.json -3356c2d6197ed85d21b43a6e93979b3c headings/headings-tc39-temporal.json -99914b932bd37a50b983c5e7c90ae93b headings/headings-test-methodology.json -d3ea77d16ec049e668aa79c87d66cda2 headings/headings-testutils.json -df2301e672b4298517688aca5fb63799 headings/headings-text-detection-api.json -d5587da9457022c4c1ce41f37850705a headings/headings-timing-entrytypes-registry.json -802f775903c9aa8695b9018a8ebc5d5a headings/headings-touch-events.json -f5f649cb771f8e20a0de3f359ac10c97 headings/headings-tracking-dnt.json -f67cb9d210c683fa685f9cb0f1f255dd headings/headings-trusted-types.json -454445cc56d10eb378842f7e347110ff headings/headings-ua-client-hints.json -7f9113ace02d8320e4ca9483d4d15a1f headings/headings-uievents-code.json -b2f7c0665dd4b7067479bb96ad570674 headings/headings-uievents-key.json -64599390e217abd07db6474011e2dd91 headings/headings-uievents.json -33aa0e9e7552b4a6884dd0edad110a72 headings/headings-upgrade-insecure-requests.json -8912b0776c13d3fc96ca6172b1a08abc headings/headings-url.json -2ac493379a354e5765c7b5a2b5fe5cdd headings/headings-urlpattern.json -391cbc0cbf042cf0df367dbf32f20944 headings/headings-user-preference-media-features-headers.json -f1cd326f4f693f3c5b1c307fe61d92b5 headings/headings-user-timing.json -a127cbed54400c90c5d92c84dfad0501 headings/headings-vibration.json -3221e25dfa25b4e1e099d177eae741ff headings/headings-video-rvfc.json -ac3827641363f64da6315665b2316bc8 headings/headings-virtual-keyboard.json -baa1b3029759ebe109719fb362c5c64d headings/headings-w3c-patent-policy.json -7283a10197f0494de461b5f1b93c9248 headings/headings-w3c-process.json -526e9dad59565e59e4eba2d2f42db84a headings/headings-wai-aria-1.2.json -e3fe4f8b942aaf7a543ecc0d06fc14a3 headings/headings-wasm-core-1.json -354b8c27679dec2cc9a53db075a560f1 headings/headings-wasm-js-api-2.json -be60dba8c41237000d986569ba544269 headings/headings-wasm-web-api-2.json -2b1eb81193933d846a435222749f46ec headings/headings-web-animations-1.json -61f7bb6bd7d40f894ee0ae8cec632580 headings/headings-web-animations-2.json -f2f004bbfaad767de413eaa3b0f2dbfe headings/headings-web-app-launch.json -e5ce24643afc72d731774a6b92cca7c1 headings/headings-web-bluetooth.json -d5ef3da012406c69be494d56db8a6150 headings/headings-web-locks.json -c7c0d1761ae9c0a1638abd66469b77cc headings/headings-web-nfc.json -c23723f00c38cbb07f70824a9cfcc668 headings/headings-web-otp.json -0228736d715e98c36dc792f696148e0a headings/headings-web-share-target.json -b026c809200d569360dda774ec126cef headings/headings-web-share.json -c5fddd899540896813616ae3f369d9e4 headings/headings-webaudio.json -85dcc05470a4795d50aacb9fb0a780d2 headings/headings-webauthn-3.json -821d21ebc5f597b00eb776a13597aa09 headings/headings-webcodecs-aac-codec-registration.json -a94759827162443fb13acb7aea4343ef headings/headings-webcodecs-alaw-codec-registration.json -067e4a66078b19d5ca19d17042d27d2f headings/headings-webcodecs-av1-codec-registration.json -ff9e96254cef7a2bd1351c1f822a306b headings/headings-webcodecs-avc-codec-registration.json -2263ed340ce287be30f2e5af01fa069a headings/headings-webcodecs-codec-registry.json -3d7b3998fca4765894c2c63f0abf9ef9 headings/headings-webcodecs-flac-codec-registration.json -d8f0a5177220a98d5ca66225ba1c3470 headings/headings-webcodecs-hevc-codec-registration.json -616c263c5a141aef740dc422ffb70a23 headings/headings-webcodecs-mp3-codec-registration.json -713b19ff554220d82f4e1402d8aca93f headings/headings-webcodecs-opus-codec-registration.json -2ec374cc4f99519dcec96707f329534d headings/headings-webcodecs-pcm-codec-registration.json -001c7199f0f3b6d151d8fec880fb5222 headings/headings-webcodecs-ulaw-codec-registration.json -e1bf6efff925a0a2a84f505e06f35ad0 headings/headings-webcodecs-vorbis-codec-registration.json -925e12d7479b1a614863d5e3bb5d9b0b headings/headings-webcodecs-vp8-codec-registration.json -cf66adc4ebf2c9cbdda3e0ae06a230a8 headings/headings-webcodecs-vp9-codec-registration.json -24564c4fe75b99614f36231c03711b35 headings/headings-webcodecs.json -4da58015004d71580836b13fe6413ea7 headings/headings-webcrypto-secure-curves.json -8c37aee3557e89b89482abb0e75737a5 headings/headings-webcryptoapi.json -4d63ed93e73e3a7b3ad7918520f94612 headings/headings-webdriver-bidi.json -e0e39207c835bbdb0c7ef320ee38b695 headings/headings-webdriver2.json -187ff0d2e082ab36943ad2635d886a12 headings/headings-webgl1.json -a7ae742ccd2e89ff92b83c96f6a7b4a5 headings/headings-webgl2.json -de7e5a636fe4bea2a646bbb558fe1974 headings/headings-webgpu.json -de155171fd1d2ccadd88e471638d8c2c headings/headings-webhid.json -798e4a4339c2475691f3553914aef8e7 headings/headings-webidl.json -313f1edb92399efe2734d9061aa49344 headings/headings-webmidi.json -36dae9487a83258e02c3d873c6c40a1c headings/headings-webnn.json -c482af5bb88d1873838081604d2f17c7 headings/headings-webpackage.json -2207690cd782aee93ffb16fe2e63cd6a headings/headings-webrtc-encoded-transform.json -051bb3099294835e28053f03c034601c headings/headings-webrtc-ice.json -9a66b5808b91f407760639ca85e6feec headings/headings-webrtc-identity.json -35be3d090e8e04b760e8584f2fd7ac8e headings/headings-webrtc-priority.json -849a90699da22f87eab0c03ee14bccef headings/headings-webrtc-stats.json -f9adb0af3e2b60b8014ed619b4c81deb headings/headings-webrtc-svc.json -9949d2f7018307c4d6837700aa13d436 headings/headings-webrtc.json -89307c0143ff68720c753c6267756249 headings/headings-websockets.json -4965be96cf2f8fa2f2faee7ed53e09e7 headings/headings-webtransport.json -c5766f412d5a6131596b747b515e0948 headings/headings-webusb.json -98d2a6f585fae1619a6aab7d2485317d headings/headings-webvtt1.json -0c030277f0c64537f7876b78725fb13e headings/headings-webxr-ar-module-1.json -39515af120ac8a5b29c7372b5f9f5a8c headings/headings-webxr-depth-sensing-1.json -cd8091c5ff892c7f816bc5c85069326d headings/headings-webxr-dom-overlays-1.json -3399b5fff6c4fc36fe94f4e6b5b87338 headings/headings-webxr-gamepads-module-1.json -d0ad4857ce2e4f9290dab977fbfbbb92 headings/headings-webxr-hand-input-1.json -a4481d35a7f8ec23ae300642229c3247 headings/headings-webxr-hit-test-1.json -2758bb6cb55f17da98c4049ae8735abd headings/headings-webxr-lighting-estimation-1.json -fb7414ab2dba7ca3fa72871d675a9b44 headings/headings-webxr.json -4059bd14ea1a15fad8b591d21371e9bc headings/headings-webxrlayers-1.json -eb371628bef725cc9289d96b169bbcf0 headings/headings-wgsl.json -1116fd73d7599aea596196e4218a0eba headings/headings-window-controls-overlay.json -83983a42eb4b7c13a1694fa04c3ed0ca headings/headings-window-placement.json -947cfe7825a2c334af8f68eee52bd198 headings/headings-woff.json -e40ea2537ccf0f598d78bb21969e59b0 headings/headings-woff2.json -f7024131e4a5fff74c94adc87b64845f headings/headings-xhr.json -4e50058dacc1d5939d903b021b77ba75 mdn/accelerometer.json -cf0263b120bc4d20de81c5a630c6d773 mdn/ambient-light.json -cac160b4e7eda8711fdfdc2ece00f8b9 mdn/appmanifest.json -7cbeef8f963cd26c83c3211068949eeb mdn/aria.json -49babb281ac762c645daefb541c7ccf9 mdn/audio-output.json -efcb3a01ac5344e86c5e396b4f53496c mdn/background-fetch.json -c75e82dec716ceae4d7a1e6cacbe7d79 mdn/background-sync.json -d04f90d30368ef996c5e7ba32969758c mdn/badging.json -399b58f6d3af1773bebb166499418fbe mdn/battery.json -9817fca36973e232796990a940352521 mdn/beacon.json -82f3712153f7f8217dceec30e6cf5827 mdn/clear-site-data.json -57bff7a2acf98d7eb592ec0e22f36c21 mdn/clipboard-apis.json -190a70215ba7eae0f180328c9ad7b38c mdn/compat.json -dc59a4e31ebbda400a68dc3252be20da mdn/compositing.json -045fe881f6213f354b8d9c95466de7cc mdn/compression.json -3053a8cc27ebc062eb0716d35356f182 mdn/console.json -0eee05450dc2a4522e0eb2b23ee30baa mdn/contact-api.json -0bf809fed82370a349766b6c6e82f7cd mdn/content-index.json -99a487e82cf1a62a6b2236a310d250db mdn/controls-list.json -d471e5e93100f1ba203e68033fa67a54 mdn/cookie-store.json -42d85bcb75004198753aea322b9357a7 mdn/crash-reporting.json -16d2af477b64eeeca7a76d555693c2f9 mdn/credential-management.json -e73a21ba808a8f133e88bca853da460c mdn/csp-embedded-enforcement.json -c2b3389a4851ab01d711be5ce95b15ec mdn/csp.json -f0cc46287c38a8b590495b8b1385c64e mdn/css-align.json -77726a2c9115bf0ed76285f2a36ffbcf mdn/css-animations-2.json -48ce05ff473fc2e74417a81dcd3c6aa1 mdn/css-animations.json -08b86ee0c99622643bac437fcd10152b mdn/css-backgrounds-4.json -7c7488e09cdf477819d3d40ee1ba3b4c mdn/css-backgrounds.json -8729f9ea1263366ab17954b510d7b0b0 mdn/css-box-4.json -8d1ce6a1eb7418d67282e2809a7cb10a mdn/css-box.json -b67bda3b91c871055a220e40bee8e5a8 mdn/css-break.json -0e82f408cd12ce14e3726c5bf8b644f6 mdn/css-cascade-5.json -fd295505d94b0c50a1e5e565f3953452 mdn/css-cascade.json -555c0afd9636e1612efd2442f15afca6 mdn/css-color-5.json -09cddd6ef6bb63a6900b2e5827a7dce7 mdn/css-color-6.json -e6f8d8c7a99e862333cfcf24ad7ef75d mdn/css-color-adjust.json -b908bbd27c2e7f6d6cfe84d8b2130552 mdn/css-color.json -c6db96419c44631cdc225f4f0be7f767 mdn/css-conditional-3.json -1407568f510b7d4e0e9245fec4c8a231 mdn/css-conditional-4.json -9508b593279de65f9edc4ce3cec397a8 mdn/css-contain-3.json -a8af447db0834dacdcba7f85806daa58 mdn/css-contain.json -50c8e549ff0369cd15d2a1c2e38fe9a5 mdn/css-content.json -32528568aa2ada0528709115e2dbad50 mdn/css-counter-styles.json -6de4d55253bf02708dc27e64cb8e6572 mdn/css-device-adapt.json -bad02e3aeaa40bab714de207a68b8956 mdn/css-display.json -a34e4ba408feede03c6b399a2a4daa71 mdn/css-easing.json -980d44454641ac5633ea56b461c8c434 mdn/css-env.json -c2be808bbfc959e74339732d08e00cc4 mdn/css-flexbox.json -e5c2d1cd9d9a89061dc6c6cc6bcc9936 mdn/css-font-loading.json -caa92e410bf332d02f7c989413f44563 mdn/css-fonts-5.json -35175fc77df913edfd58ab02b92371f4 mdn/css-fonts.json -220f8d300cbb18b173ac010ef68be73b mdn/css-grid-3.json -4600d9c3120b3dbf87f7aeb3e92e8105 mdn/css-grid.json -b82007f7f4b14c27eb830584fc56082a mdn/css-images-4.json -c30581b3f648b0b3026e8d8d26be5593 mdn/css-images.json -9b01d58f964e1b11d609fc957cfc9e71 mdn/css-inline.json -a56a8160e5843d4cf4b421cbee9f226f mdn/css-lists.json -b5bac60fad8c8ae31d84c0a2ccf128cf mdn/css-logical.json -a9d7f9822b1600946e7149e92d2bae1a mdn/css-masking.json -40a28d4a9ab54e392b84dec8ed6c9fa3 mdn/css-mediaqueries.json -8fc1164b3a753637dd523a4885f6f073 mdn/css-multicol.json -05361e2328e9f3779da85c6849e22011 mdn/css-namespaces.json -accdab639c58964f9d53342496330564 mdn/css-overflow.json -5593322e5e05b898adbcb15cee06565b mdn/css-overscroll.json -aaf8407f1e3385bd6ecb8fe9c2b08808 mdn/css-page.json -de81149b4f4718efc135b5f75e160a3e mdn/css-paint-api.json -c2359494705858ac8c570d82e4e8c0ed mdn/css-position.json -dab14d1858d32a73788b1033a37ef638 mdn/css-properties-values-api.json -72307339e7b4e3312526f39681580427 mdn/css-pseudo.json -7b58b7243d61cd2c20362515a389581e mdn/css-regions.json -acce3c7ccc7b788c1c2a5b8b05ae4e1a mdn/css-rhythm.json -b2c85c5cd13f00841a14091bced8772e mdn/css-ruby.json -c50e27b8f4012a3014494678c6000940 mdn/css-scoping.json -c21ce2a915ceec78ba040895149435ee mdn/css-scroll-anchoring.json -9b8b0fbf7fda328245d3128769e80b18 mdn/css-scroll-snap.json -17aeb5981eaea04ce8b59b6a742a7441 mdn/css-scrollbars.json -50d5ec962b56460e886d00f472200d1b mdn/css-shadow-parts.json -f2d3c69a18af0006c91506fbd1d6d418 mdn/css-shapes.json -73264c68731f4cdfbf954da6f6ecaf5b mdn/css-size-adjust.json -90a1cb51dffa481603dcf4adfb5a343e mdn/css-sizing-3.json -8452d368b4e1b0c2a1e9601f9519c3be mdn/css-sizing-4.json -6062a29a7c92af302cc630fafc49f5d1 mdn/css-text-4.json -2dc023aa5c239a81d1b1d2cf85efa987 mdn/css-text-decor-4.json -f841961f104233f5c706072ec7b84ea1 mdn/css-text-decor.json -d105e9ef16b44370a4b653cf5e58340e mdn/css-text.json -6211749d6200d756bc17bf64542e22d1 mdn/css-transforms-2.json -c7d78b4432452311572016de9e31fcb6 mdn/css-transforms.json -5b745eb7e6c0f7a4c56d4621d3757568 mdn/css-transitions-2.json -f13ed6e8d71f1efa95c4c283f79b2187 mdn/css-transitions.json -0bf2c1ed5200fc991422f5200fc05ee9 mdn/css-typed-om.json -1466ce57bc7b71c8acc14b9eda1cf78a mdn/css-ui.json -80cc85e5fc8420ea76a530f97cfbe63f mdn/css-values-5.json -eb1b014821956bdf069d59a256857701 mdn/css-values.json -76f43d5232a1954619c4b128f4a864ef mdn/css-variables.json -e6d47df5a50428661a348810a2222270 mdn/css-will-change.json -5237879c692ad43e337eac2d3c509925 mdn/css-writing-modes.json -5debd5c3c9d56882a7122b720779397a mdn/css2.json -6744336c2f26364f4fd753a682492783 mdn/cssom-view.json -de6b4a85a395dd87cf9404a2b0ec963e mdn/cssom.json -717ea99733e28e9e3f1b7cbf1701afe4 mdn/deprecation-reporting.json -5bf436de8dad3bdb44646e27c93a06f5 mdn/dom-parsing.json -9785e6bf571db580063d59e2c03705ba mdn/dom.json -7dd13b65e3cf4838ab288233e3db8bab mdn/draft-ietf-httpbis-rfc6265bis.json -c3c41d09f25977909f08a843634bab86 mdn/ecma-402.json -95c358d17ca1eb0c6fd14d72e7096e6c mdn/ecmascript.json -14f3a1a6a6da83278e9bf51638abf28b mdn/element-timing.json -545e04c985118c108cef55e127fdce05 mdn/encoding.json -4fd1a2ae3e01dc3a0a369b6e0b00806d mdn/encrypted-media.json -d218504e86c75d7a84ea16b5e7679fa8 mdn/entries-api.json -261506d34ec49a29c4e1fa5d2d2b145d mdn/event-timing.json -e4d6987e345984c40e9310f85dc0fcf1 mdn/eyedropper-api.json -2076fce5f117b2d4bfa472d68eb93e5a mdn/fetch-metadata.json -a3c1ecf905a1d129267e72ea034c41bf mdn/fetch.json -96af95c1b77665372f8bfa74a4c402c7 mdn/file-system-access.json -160669886b7efc1fcba21d631c56d94f mdn/file-system.json -c9a12191acfb9e43640b9cb056435e1f mdn/fileapi.json -ec67ac2c4b2b5d6a1d3b558506dc2781 mdn/filter-effects-2.json -a24257ca1d2bea9669d0011c5053cacf mdn/filter-effects.json -e06ca6cf8c52bea47e72015daf4f3850 mdn/fullscreen.json -610f33358f67b2cb97c0198cc0789601 mdn/gamepad-extensions.json -0bcb9a52af913d85687441679a75c47a mdn/gamepad.json -abf9de25115c333cb4651e290dc7a1af mdn/generic-sensor.json -864862d1ce98872f7ee21a327b234256 mdn/geolocation-api.json -ab3d36df9aa5161f29a88b546599e95c mdn/geometry.json -8b1275b2956db7134fe0739e1d0a90d5 mdn/gyroscope.json -36369fa6d51f1b4e9aeb540e8bd9c928 mdn/hr-time.json -8d2746fb49ce3b776dec8288635f5ecc mdn/html-media-capture.json -7166bb903cb0a0f9896b7d70366b5995 mdn/html.json -0ddcb1d664a2835ee78d55daf8e90983 mdn/idle-detection.json -5959b0f926677310be7fa2393bc0498b mdn/image-capture.json -71f379ab82bee3c5bf7518366bae8cdc mdn/indexeddb.json -c680a8e3f48c264cfc5ba5b48aecb4d1 mdn/input-device-capabilities.json -b681c87074cc40f74c44bfda963517b2 mdn/input-events.json -7910b3e590c1fb8628732923d82ab80b mdn/intersection-observer.json -9a2cd5ce10b08ab6a9ab20f63b0b5ac3 mdn/intervention-reporting.json -2c5b5fa7f77ff1748830993ed598c907 mdn/keyboard-lock.json -728ace12813302d1679f1627c38f3b44 mdn/keyboard-map.json -283bcb5dbbe1954333248d725c97d90b mdn/largest-contentful-paint.json -0b0ad0e2839e4c91d09021f9bacb24e8 mdn/layout-instability.json -5e387d936335ad9122cf0d18e835a36f mdn/longtasks.json -a2e8346bdc2b7c48678610456f51cda5 mdn/magnetometer.json -6963cb9b6373c69e1afcd9f4c995ae6f mdn/manifest-app-info.json -7a0254cbd442201991f92c3c382e11e1 mdn/manifest-incubations.json -3de2fe393993b3d51292d1400df3154a mdn/mathml.json -93a4cc085dc738d0c4465321db512495 mdn/media-capabilities.json -c1775cc3700f045ae6b41ac3dacc5030 mdn/media-playback-quality.json -debb8007d09ef37a901b41ba9ce2a7ed mdn/media-source.json -34dd7296fe8a08ee68fe04eaf406bdc7 mdn/mediacapture-fromelement.json -e54f3b26b45b3456c6e6457032c8ac77 mdn/mediacapture-screen-share.json -fad2d0f3548cae0bf1f8385395705db7 mdn/mediacapture-streams.json -2d268bd7ddadbcb4c99cbf2968e84c8a mdn/mediacapture-transform.json -7aa2d5d3d37c9d0710157235c7311db1 mdn/mediaqueries-5.json -19cf12eb1b015339aa3cfa5ab0db2303 mdn/mediasession.json -13be91d91af8faa1bc48621709f9b761 mdn/mediastream-recording.json -cd65dfa144f3c0873a77f25b02387170 mdn/motion.json -6b322e73d2ebda8c8272227f7d51a51e mdn/navigation-timing.json -1819145e850a86659b23343fa016443a mdn/netinfo.json -6308ca45dc406c638bae470e0647b33f mdn/network-error-logging.json -9319981f9df9ae3511ba6d24b870c978 mdn/notifications.json -3640b70eb37d5adcc1a74e95b4b4a8d7 mdn/numberformat.json -4efb25babfa3bde680a5ea1d8e97e26f mdn/orientation-event.json -2dae279724d05f14878cd1182eda9a82 mdn/orientation-sensor.json -8e635063d0b05faa7abad419e0bcb70f mdn/paint-timing.json -2974f29bc6566dc45a625c4138a2f233 mdn/payment-handler.json -0d68a00b8efef101d159cdeb53b25622 mdn/payment-request.json -5762c17dec8d445b70bddd2600d56f32 mdn/performance-timeline.json -d289d2d23b1d0a33791c42b30c99ff29 mdn/periodic-background-sync.json -572180f0836b1fcf73e1783a8f4bdd24 mdn/permissions-policy.json -307fdfb89cb9b3d43cf6df194574c8ba mdn/permissions.json -00b9fd9a5a0519cbf97e09a2f85fabb4 mdn/picture-in-picture.json -cba3dcc6ecf4092b569eb1d61ebf01d4 mdn/pluralrules.json -eb9c0ebc1479bb0cb511857c7c02c013 mdn/pointerevents.json -ba813780d780f449adb93b05ae27d81e mdn/pointerlock.json -c00df155e71b94daed9bfcd9993283b3 mdn/portals.json -0b185cb9cdbf9ee31e513754a9301f09 mdn/presentation-api.json -68a75dcc1dd1e4a145466ca86312cceb mdn/priority-hints.json -6cb5af6f8f05718879caea7930fbe8a1 mdn/proposal-array-grouping.json -ea0fa5b1bd583eb1286feb0eee2638bf mdn/proposal-atomics-wait-async.json -ee8875cf350b032bce5d5a046a06a438 mdn/proposal-intl-enumeration.json -b52a89b6190785ea19d6e5e482f16b37 mdn/proposal-intl-locale-info.json -aeb1afa8af1eda6b50bc573b55351db1 mdn/proposal-regexp-legacy-features.json -e086c96d9fd2a2a6e5f644bf2388719f mdn/push-api.json -3068f2d9a859c0fc2e65801ec8497534 mdn/referrer-policy.json -9b2ff54ac8241326e57696d58ce18c77 mdn/remote-playback.json -c4cc1c9022abeb2bf7801fdae175a0cd mdn/reporting.json -ffef5846e023bce621208a39a8e9171c mdn/requestidlecallback.json -bef6ebb238be4a9f9dd0bc6cd4f04130 mdn/resize-observer.json -c5e63efe82f8499f9194feec00b55c21 mdn/resource-timing.json -a345a274c1a1069ae0997d46e8a3b887 mdn/rfc2397.json -db05ac05911ced85b45478b8a913a0a9 mdn/rfc6265.json -8bce7e41c5d4fdbc37a825dff067c020 mdn/rfc6266.json -85fdcfad21a44622c8deb544da6e5274 mdn/rfc6454.json -65c8a0ffd2b2c651cfe23053b78fb775 mdn/rfc6797.json -17adb860f9287d5c2893eb70a731beeb mdn/rfc7239.json -eea733984bbf806af20bb8a412c94c3d mdn/rfc7578.json -564354c1a4f930ad86f417d5ade32111 mdn/rfc7838.json -3e6a3772fe29e826468daa50c16c3eba mdn/rfc8246.json -3a0209fc8e7e9444f4ad53e293ca89ff mdn/rfc8942.json -30413b695bfdfc7b5ce9d1e039c27ea8 mdn/rfc9110.json -5ee10f8c28338b8e0a60631a1e4ed776 mdn/rfc9111.json -18ca7146bfe2ba9657fc6a9fb3f573a7 mdn/rfc9112.json -19bb98e4076173328fea6a4dd8a62c5f mdn/rfc9113.json -d1fe0a4c7406f35e257f8ac56cf3deaf mdn/sanitizer.json -b0117144541fc48c85900ff2c2ded525 mdn/savedata.json -5ab71554766c7f31f26febaa95552412 mdn/scheduling-apis.json -ad493552427c121b48c9531bd3a4194b mdn/screen-orientation.json -609df277046cb88265a1b60ab95e80df mdn/screen-wake-lock.json -9f0a04fe3d86383a7146092bb99afbac mdn/scroll-animations.json -3b27200d685fca25b4f43ad365c0ae3e mdn/selection-api.json -ac33a2ead3e4e85bf18621bee49b6c5e mdn/selectors.json -e5080f4e6e751489cfd6e4e5fa4fc9b5 mdn/serial.json -a2aa1cef04f3caefa022961863b4807c mdn/server-timing.json -abb7d011e80e0399d35fedff72d91475 mdn/service-workers.json -43ed001ac0b57b590db0fdd9de96ea80 mdn/shape-detection-api.json -d8c203b4979628020e3c62a3a41cffa1 mdn/sourcemaps.json -c8791912484dd6f49522e6f9d7c1d861 mdn/speech-api.json -46647deb614a4eaccca62593718cf73d mdn/storage-access.json -adee4fe106fc38e1464674b4a26c8368 mdn/storage.json -ad633d8ecad0285e3c3ee7290d817b59 mdn/streams.json -6362bf034ad8c018f4933b279d740d4e mdn/subresource-integrity.json -6e6a0f7aca23f6d1285c3100e787b391 mdn/svg-animations.json -30818b7cc92e6fa1bc782eff85ee6595 mdn/svg.json -5d2e229ee50c93be39ce679fb2290f16 mdn/touch-events.json -0d54154031782597c00c5396824f7df0 mdn/trusted-types.json -04ce193411354d0a692229bbb527c2b4 mdn/ua-client-hints.json -3b46c634ed3dd8d0631a73f220eb8f09 mdn/uievents.json -42dc9ba0ddbedcdc88efa2eea55de33d mdn/upgrade-insecure-requests.json -5e4f930aebb265b9c5b7e3f79c234e78 mdn/url.json -9c77deda3cd5e9375eba1200696bb93e mdn/urlpattern.json -17a405f0a10de32765b7067f787a9673 mdn/user-timing.json -c2b9e1d5c96e00f870a4d4a32d7c20fd mdn/vibration.json -0399edcc0bb1100bac74ec7f12657cd2 mdn/wasm-exception-handling.json -0a671653529cc2224bb4294717837ddf mdn/wasm-js-api.json -12235406d5de24bdef3a753b5bbf43d9 mdn/wasm-web-embedding.json -576393b225f4122d3c753051c97da914 mdn/web-animations-2.json -bffc346181e37938133de2a1e83c566c mdn/web-animations.json -006872d7945a02e3427e50cf691b0e64 mdn/web-bluetooth.json -d539f6515dd3849ea628caa2f82bfa97 mdn/web-locks.json -c6cb2d9ea6864475aed1319d77714a7f mdn/web-nfc.json -debf40e9f6733fb9903e71416d568c11 mdn/web-otp.json -1149000b5bb1e011fdc9fcfbab75c12f mdn/web-share-target.json -29ac09a3b5863cf9d5abd42a32af7f3e mdn/web-share.json -db1958569a3362041a5df7fea01f0213 mdn/webaudio.json -95d3e92fa2d383fb6c6cc14105c8e79c mdn/webauthn.json -f94c098a53b92af01fa17af6478b65c7 mdn/webcodecs.json -81c04f66d491eb8a09aee931049b0afd mdn/webcrypto.json -57c85b5b743e87c9e67f4906ce2728a9 mdn/webdriver.json -cf22e67d4a7bb062589514794a49b7d4 mdn/webgl-1.json -1a39e74ee7a307fb1ea39c7c236ae157 mdn/webgl-2.json -79527236b1aa211c1a162ef3efe5add0 mdn/webhid.json -3b4155a9d1e49431f5b718ec99600dd1 mdn/webidl.json -59b6028d46b5019c734ac2346415c8f9 mdn/webmidi.json -5f99fc2cf9933ba670e10369bd0d27c1 mdn/webrtc-extensions.json -6f41d0490191917885d9cdef29978680 mdn/webrtc-identity.json -08c28315d58c43688f31df1dc87a84c0 mdn/webrtc-stats.json -9fa90e5837f11631c4b6d55e9a940cf4 mdn/webrtc.json -9ce341b9facc894fb462f965ebe280f8 mdn/websockets.json -e718bd767ec5a28f5745386a489576af mdn/webusb.json -0b8b935ebf8ddaa013c15f3d9d1fde20 mdn/webvtt.json -c696c636bec9accc444723f58ecc2d10 mdn/webxr-anchors.json -6453ecf386799f6a8db487c294b88889 mdn/webxr-ar.json -a635321fd075d402eb5cd258461c11ca mdn/webxr-depth-sensing.json -e6016c599e9dd0d153aa6d5cba08eb9f mdn/webxr-dom-overlays.json -e8cb8e4a0edff51a5cfb28505952d3c0 mdn/webxr-gamepads.json -3ac6703b581a401236f0c61084602f2b mdn/webxr-hand-input.json -9baf89070954b0dce3ca36e3f383d5e0 mdn/webxr-hit-test.json -aca2dcf6461bbb739f180daff379e96e mdn/webxr-layers.json -5d52bcbf681867862cd605ca16b17f32 mdn/webxr-lighting-estimation.json -c61689126ad45ff515097200fe87b5e8 mdn/webxr.json -cfe531ee681588306df38c61c8ca13a8 mdn/window-controls-overlay.json -87752d10f690f74c1268a38cfaa2120c mdn/woff.json -94754ab062dfa224c919a879815ca1f4 mdn/woff2.json -553b4e280a10a98918f27a68f8075c30 mdn/xhr.json +manifest updated=(date-time)"2024-08-26T22:25:39.289658+00:00" version=1 { + file hash="2f7222bd7f8117de6893691c297af2ba" path="mdn.json" + file hash="ddc3b4a5e6960875ffb2034b635fc31c" path="fors.json" + file hash="58eb738846298dea31e18d42e877c9d2" path="specs.json" + file hash="698bdc8d8a77f9b46f27cd5d1ed09c1e" path="methods.json" + file hash="2576a91d701004abc1198ebda33be6c6" path="wpt-tests.txt" + file hash="7dffb9798f9b23ba9c6b5826e12076b2" path="languages.json" + file hash="d25d4928385d86299a5e16ea8108d42f" path="biblio-keys.json" + file hash="5a51675d082b9ec57d37441eb24ee9e0" path="link-defaults.infotree" + file hash="3763f11fb9212c61d7fe4e5ea2b00104" path="biblio-numeric-suffixes.json" + file hash="803f3e38309cc7eddb22324cf05f5782" path="anchors/anchors-1_.data" + file hash="85d6a71deaaf13f6a155b9a047847294" path="anchors/anchors-1d.data" + file hash="1bb1f068d66e587540d39d30fec8c8d1" path="anchors/anchors-1s.data" + file hash="f4da28e42285959280b620ca1245a11a" path="anchors/anchors-1u.data" + file hash="b5f07bb1fce8e255e24241f8a5c0d7df" path="anchors/anchors-24.data" + file hash="25abd95ea06ce7303b520901bbec18e6" path="anchors/anchors-2d.data" + file hash="6eed286537241156ef193c68f5cd3f04" path="anchors/anchors-2g.data" + file hash="3c1a01403dd99abcba3af1939785788f" path="anchors/anchors-2n.data" + file hash="6d4911a6d417f1346045ffa75cfaba1c" path="anchors/anchors-2u.data" + file hash="ec652929c6e3f81398bc046a90cf4b29" path="anchors/anchors-2x.data" + file hash="00f3fb36c4630fea6bfb3fae7862e861" path="anchors/anchors-34.data" + file hash="623890a487ccf0245bde28bff984a9e9" path="anchors/anchors-3d.data" + file hash="1f4c2c5fead7fc0479c1b94ab44c8d38" path="anchors/anchors-3f.data" + file hash="f3cb386110dce5578062636c2cb8e261" path="anchors/anchors-3g.data" + file hash="b21089b8b512fabeac21d3db59c1a1be" path="anchors/anchors-3r.data" + file hash="3ebc2039a04dd7c3ef60e988412017a9" path="anchors/anchors-4c.data" + file hash="dd2d9a306e0b8b2e2117a9b97bda74bb" path="anchors/anchors-4g.data" + file hash="fac7312e4a5fd6b55badacd9e249f1a8" path="anchors/anchors-4t.data" + file hash="939acf258fb777940260b844b0957b4c" path="anchors/anchors-4x.data" + file hash="63e6a28f061360a9d079b3aa8fd7daac" path="anchors/anchors-54.data" + file hash="76466ef69f8406e7e1fe42f35f2132bd" path="anchors/anchors-55.data" + file hash="1e8ae1a2bd17bfdf4bc3798a0bcfbb49" path="anchors/anchors-64.data" + file hash="3e877f7fa9aa28ebeac62a9c919a71d8" path="anchors/anchors-6d.data" + file hash="812df76e18d39b486912d3a68a4a7e53" path="anchors/anchors-__.data" + file hash="10a72dce85ca3d7aaf21ce45c53641a5" path="anchors/anchors-a1.data" + file hash="ab5c66bd1d69f2ed0300e3fc3dd8de06" path="anchors/anchors-a3.data" + file hash="21b94d3c56e755b4760128d02a9a1b66" path="anchors/anchors-a4.data" + file hash="9948c1e78eee7ecd4b4c38b41cdf75f5" path="anchors/anchors-a5.data" + file hash="1a42a3401731f1a9366f98be183a1771" path="anchors/anchors-a9.data" + file hash="3ccabfc6e4f8956973aa0feb811fbe30" path="anchors/anchors-a_.data" + file hash="1a380d718db86d58f051efcdd413bab8" path="anchors/anchors-aa.data" + file hash="6663a343d319e771c47b6ae0c0da3940" path="anchors/anchors-ab.data" + file hash="798f25c11f607e76b256d0cf17a0551d" path="anchors/anchors-ac.data" + file hash="a0178c6ac18117c15d777df6af29766f" path="anchors/anchors-ad.data" + file hash="c3673555bbf011635dfd5c7a967e8812" path="anchors/anchors-ae.data" + file hash="eea57cbd5d905a1bf406d66352006e4e" path="anchors/anchors-af.data" + file hash="a97443b5a52e8bc714f55e051f4493de" path="anchors/anchors-ag.data" + file hash="e89c9c2cce3778f354a6af5ea6fb3fc1" path="anchors/anchors-ak.data" + file hash="6fcca5d65ce0b1a5dee2e8e6a8978d53" path="anchors/anchors-al.data" + file hash="4398cf99c12aebccc66bffb2b91cc9a8" path="anchors/anchors-am.data" + file hash="fd800e75247a1469db3d351efb92eec1" path="anchors/anchors-an.data" + file hash="683644529e4f9a97ae7ce05cf8a8fbf0" path="anchors/anchors-ap.data" + file hash="20457c32c2c10f9a52099a37d47f0d0a" path="anchors/anchors-aq.data" + file hash="bca76850ca7e1257721761b0a178c63d" path="anchors/anchors-ar.data" + file hash="c30cda1b3e82cd54287d3ce4dda79d73" path="anchors/anchors-as.data" + file hash="a6ddf5be534b63bb0fdaef5888976275" path="anchors/anchors-at.data" + file hash="a8c030b22723783d76c00da71552685d" path="anchors/anchors-au.data" + file hash="3fc322db36c8f0c1f177ca09dc47ec15" path="anchors/anchors-av.data" + file hash="1b0b08e03103685d4f15851499b2406c" path="anchors/anchors-aw.data" + file hash="c689f56606fea885c76c395499f29418" path="anchors/anchors-ax.data" + file hash="78816f294f367dc93cce64eea1d1905a" path="anchors/anchors-ay.data" + file hash="02c895192e3e290f03f5073ba18268d6" path="anchors/anchors-az.data" + file hash="deafbff26c2dfaf636f15bac8c9b1f20" path="anchors/anchors-b4.data" + file hash="f7aa9724ef0ca030a38e1bd594557071" path="anchors/anchors-b5.data" + file hash="2c840f8ddd2517876809f37347856529" path="anchors/anchors-b_.data" + file hash="06b75bc7a101e0023a5faa9746345c23" path="anchors/anchors-ba.data" + file hash="344eb7370872f3775f47bbc0d091216d" path="anchors/anchors-bc.data" + file hash="f84431de7ffdad72d01e094b9db0b9f6" path="anchors/anchors-bd.data" + file hash="9f6727df729478254f2819cdbd7193e9" path="anchors/anchors-be.data" + file hash="3d55c684fffb5ea37aeaec6a865117af" path="anchors/anchors-bf.data" + file hash="1465ebbd6c745dafba31109e3e73d1a1" path="anchors/anchors-bg.data" + file hash="654707b7d9612d5197120e61d773df1f" path="anchors/anchors-bi.data" + file hash="2bd938631efe0af1a21d8df2a11004bd" path="anchors/anchors-bl.data" + file hash="7a84d84c2c31618bb8e9088cacabdabf" path="anchors/anchors-bm.data" + file hash="33ebe0237bea1913471bf9447b392272" path="anchors/anchors-bo.data" + file hash="dc60867203ecde4332ed3522c6977f58" path="anchors/anchors-br.data" + file hash="67dfe0d782b775aa2d8c492474fe4e97" path="anchors/anchors-bs.data" + file hash="93dd2d4414c1228fe0774f1232a602c2" path="anchors/anchors-bt.data" + file hash="5bb80fd015165d1c85f60810cc282c7a" path="anchors/anchors-bu.data" + file hash="6721bd48d465151e520d3971273586ee" path="anchors/anchors-bv.data" + file hash="1d93306b2a45ecd08b3609f58db437e4" path="anchors/anchors-by.data" + file hash="e0080e222e61c376dd07995c5b003da1" path="anchors/anchors-c0.data" + file hash="a4fe329af7b600c56ea2a0f5aabdf0a0" path="anchors/anchors-c_.data" + file hash="cc0094c625a8f44fec49555555cb8264" path="anchors/anchors-ca.data" + file hash="c6a7672cfa44c46df33bbe2c9e16c2a8" path="anchors/anchors-cb.data" + file hash="25f8f1162bdd2c3196dc5b04a5c44079" path="anchors/anchors-cc.data" + file hash="7061131d5e447911b60837f63ba3922c" path="anchors/anchors-cd.data" + file hash="faef16ca56cf9fa87f1beaf69aa58d30" path="anchors/anchors-ce.data" + file hash="0de27911b97801f0720475d42bd52fff" path="anchors/anchors-cf.data" + file hash="4c9db1bed832cce330762ca8b9699657" path="anchors/anchors-ch.data" + file hash="b2729717d08928c08b1b92860d2451bf" path="anchors/anchors-ci.data" + file hash="732b2479a48f76b35bdd2ca0b8616ad0" path="anchors/anchors-cj.data" + file hash="7f32c2dc29d09eac3116dd1690ae6c71" path="anchors/anchors-cl.data" + file hash="e391d3687d12ce652a2e58db65ddedf4" path="anchors/anchors-cm.data" + file hash="d40180801f6f0d8e1f29d7c18c016fd0" path="anchors/anchors-cn.data" + file hash="742667b6d0eefb37e673fb9f577e43e1" path="anchors/anchors-co.data" + file hash="0947991ffebb8abf3c86e807cbd00695" path="anchors/anchors-cp.data" + file hash="326df196f6dbd02535b09a4540c5f87a" path="anchors/anchors-cq.data" + file hash="d515c41083efb3de40924582cb3b480e" path="anchors/anchors-cr.data" + file hash="f45d5cf08dfd65f7ce125a028fea8bba" path="anchors/anchors-cs.data" + file hash="0eac4f058fdc8799c5c3c927e24d160f" path="anchors/anchors-ct.data" + file hash="720db92c09b28448740079d026f7a45c" path="anchors/anchors-cu.data" + file hash="74dae392d47cf36ce03b026b503ae4e2" path="anchors/anchors-cw.data" + file hash="f8ce5dbe7026e44828c3c8dd98a78e76" path="anchors/anchors-cx.data" + file hash="f44d7a8e484c75946d36c2d86e04b13b" path="anchors/anchors-cy.data" + file hash="c1af51c03c6ec54ac7a18d2c2c2142c2" path="anchors/anchors-d5.data" + file hash="b8f277d911af6cd7cce616fc4c8cff8f" path="anchors/anchors-d6.data" + file hash="27690a42e620ed03919d2569c8a21333" path="anchors/anchors-d_.data" + file hash="5afd47287270fea0ae2fffee06d94959" path="anchors/anchors-da.data" + file hash="4f0bcdf5708abf3be4cc8f6280ec4ee6" path="anchors/anchors-db.data" + file hash="60d112a0a70d913a67dda9f7d4cbbccb" path="anchors/anchors-dc.data" + file hash="bb45677f21ab111755c7db50ccd268d2" path="anchors/anchors-dd.data" + file hash="bd7b4980af343597c91708ca0340c89c" path="anchors/anchors-de.data" + file hash="8d57dde1c210ef4867ca9cf4d9f9bf51" path="anchors/anchors-df.data" + file hash="8a71a62048cead612a2d742eaa8aa9be" path="anchors/anchors-di.data" + file hash="bc776d1b034a42f53bf923ee1a66bc49" path="anchors/anchors-dl.data" + file hash="064c8c3db2fe89f4bf881f1ce91e66f6" path="anchors/anchors-dn.data" + file hash="26342560d85232e66508d03caf14e19a" path="anchors/anchors-do.data" + file hash="298eccb27151af2e0ebb8bf3af2fe621" path="anchors/anchors-dp.data" + file hash="927bb7d9622601c8eca72d90d8ad182e" path="anchors/anchors-dq.data" + file hash="5b11c631632436e8e619fc7eb5cceb31" path="anchors/anchors-dr.data" + file hash="95cb8454bb5f936836114266c0f5cddd" path="anchors/anchors-ds.data" + file hash="4e5579b5ff12f3f39dd5177b8f49106d" path="anchors/anchors-dt.data" + file hash="b475db1b7b1673ad8ca73f85c6f9618a" path="anchors/anchors-du.data" + file hash="bc13a34f178f1b77a492b5c99542a3a5" path="anchors/anchors-dv.data" + file hash="96dfe0e1128437eee07fd5b0c021ca86" path="anchors/anchors-dx.data" + file hash="5c68ca3fcfe4368def41d9fbccc45ac1" path="anchors/anchors-dy.data" + file hash="7d8a4375811d6a2d28f644f1de98830d" path="anchors/anchors-e_.data" + file hash="81dc2cc38478013c100e21fe7974760c" path="anchors/anchors-ea.data" + file hash="1e1a9c00529373495cf1f0642308e9ef" path="anchors/anchors-ec.data" + file hash="3ddb430000b2fb9fec7a86285351e035" path="anchors/anchors-ed.data" + file hash="e44dcd6d47134e69abf9cf65feae2ebe" path="anchors/anchors-ef.data" + file hash="f8ec11e17c6c42cff3c0150639f2e706" path="anchors/anchors-ei.data" + file hash="4741157445d7f6343830ec6c2f8239a5" path="anchors/anchors-ej.data" + file hash="5b5142774042e38af892294100ac04c8" path="anchors/anchors-el.data" + file hash="cb62785823be3b78e9a08446f1eee16c" path="anchors/anchors-em.data" + file hash="f6a2e9b2302712aebdd5c1bc9e6f6ea5" path="anchors/anchors-en.data" + file hash="e2b240f97f0734978000ecf9c46de2ae" path="anchors/anchors-eo.data" + file hash="eecc51292ab6e25b3398c14ed2637217" path="anchors/anchors-ep.data" + file hash="e1d4f4efcf8a84feaa0cae9a53037725" path="anchors/anchors-eq.data" + file hash="c7b7530ec5c7dd5c93aeca3f366cb7c6" path="anchors/anchors-er.data" + file hash="70b197885c0c9a8efbc981f275229331" path="anchors/anchors-es.data" + file hash="7caea96e06d07a89d3ad110cfa59cad0" path="anchors/anchors-et.data" + file hash="215e434a26652f0d48e21822e0deebcc" path="anchors/anchors-eu.data" + file hash="501597934ee76f3b5288ecfab1ea3216" path="anchors/anchors-ev.data" + file hash="54a0c156797b9458962875c6f047d220" path="anchors/anchors-ew.data" + file hash="5b9e54ce4ddaad6cfeef2dccadd0bc84" path="anchors/anchors-ex.data" + file hash="3f5f0a5dfadaaa3f1c3f94dc98ef9ebe" path="anchors/anchors-ey.data" + file hash="181cf128fdde1b81f521e475ff3aba26" path="anchors/anchors-f1.data" + file hash="52d1d033142f7e46e344f9a60302bd80" path="anchors/anchors-f3.data" + file hash="318d1a05af935577032dda50fe4872a3" path="anchors/anchors-f6.data" + file hash="ac7bfcaf3ab32ece1eeee59e71ca7a12" path="anchors/anchors-f_.data" + file hash="df129b85b849ac478b6a93290094df2b" path="anchors/anchors-fa.data" + file hash="9d2a49dd58de00bd505f1bdccf8c2fae" path="anchors/anchors-fe.data" + file hash="d4944ff3f8c15ef117eb203a00a88d5e" path="anchors/anchors-ff.data" + file hash="8dbb6226da0a39be4e164a74ce3304dd" path="anchors/anchors-fg.data" + file hash="d21aedd4b483ce598d4b3e0a1990b94f" path="anchors/anchors-fi.data" + file hash="b9faaf9e915c785eb5705253b67159d7" path="anchors/anchors-fl.data" + file hash="50a0b6391ced2e6282598e17eb560d1f" path="anchors/anchors-fm.data" + file hash="95c411fbde8f2c48f7fd258ec4a15ebf" path="anchors/anchors-fn.data" + file hash="fbd644160d0ae34e6b5b58822714d942" path="anchors/anchors-fo.data" + file hash="22022138fbcb625567c1287b68605339" path="anchors/anchors-fr.data" + file hash="f23aed697914b52a5aef37cb2f54a0a5" path="anchors/anchors-fu.data" + file hash="af246e649cc0f434659bd1ad7d419a0d" path="anchors/anchors-fw.data" + file hash="cbffb9fc4a4f15bf95f2ba856b875b81" path="anchors/anchors-fx.data" + file hash="0a02a63f592c729f091301b0be05a277" path="anchors/anchors-fy.data" + file hash="783694cea820866621e87f4c2e518951" path="anchors/anchors-g_.data" + file hash="58fb57eb98ec22484b2c90c531f7b21a" path="anchors/anchors-ga.data" + file hash="21002efd8f8cb432f1a0f63efecc70bf" path="anchors/anchors-gb.data" + file hash="9a2909172c35e5744f0ef0e6f5b4f25c" path="anchors/anchors-gc.data" + file hash="d4b027fe14277ceb0dea76650e71f2b2" path="anchors/anchors-ge.data" + file hash="39fc2cc46ba560407c3d3cbb45decaac" path="anchors/anchors-gh.data" + file hash="d1d5bde7f6d07d6e53a4097d29506557" path="anchors/anchors-gi.data" + file hash="bd261a6b018697ce79d46ac3ced13241" path="anchors/anchors-gl.data" + file hash="75d5c87d630626c7182987fd1e52f152" path="anchors/anchors-go.data" + file hash="4fd1e256c30983f000ecd1e3c0cb68a1" path="anchors/anchors-gp.data" + file hash="cb80950600d6f1640b0c3151044a4c89" path="anchors/anchors-gr.data" + file hash="30923ecc2dfccbbb27da5ef23d973418" path="anchors/anchors-gt.data" + file hash="175092727697dbfb976842acf33aa60f" path="anchors/anchors-gu.data" + file hash="c4b9417f3641bfcf37f87901e1d25df3" path="anchors/anchors-gy.data" + file hash="1ecfe9dbfb043a0aa2a8f6b3878a1fcb" path="anchors/anchors-gz.data" + file hash="0ae1b779a5c11154cc3beb68d6f5f465" path="anchors/anchors-h1.data" + file hash="064878ee81325884673643e6d0a1d02a" path="anchors/anchors-h2.data" + file hash="ead33a49d5acd206ab15c3ef8068890f" path="anchors/anchors-h3.data" + file hash="b5c8b6499049c2f384589e995dddfd5c" path="anchors/anchors-h4.data" + file hash="7d016e3b52ee6bace2779d7ebd42b45b" path="anchors/anchors-h5.data" + file hash="be81d081d56e0dde7adc93e80977dac9" path="anchors/anchors-h6.data" + file hash="49c465b41377a8780060c1c3c9dbbe46" path="anchors/anchors-h_.data" + file hash="e9908b7bd1df9023adf9d0e6dbce5299" path="anchors/anchors-ha.data" + file hash="31daa773e2f776aa85f89dae43e3873e" path="anchors/anchors-hd.data" + file hash="67b8d28c4407f1fc101e367414e362dc" path="anchors/anchors-he.data" + file hash="9eaeb94384cc7271d6fb2674a0b90f34" path="anchors/anchors-hg.data" + file hash="cb012394e1a88ac56136090233a446c0" path="anchors/anchors-hh.data" + file hash="daf39c415209325535be9abd6ba5af7e" path="anchors/anchors-hi.data" + file hash="fbfc96c830950b206e579988c13ffd6c" path="anchors/anchors-hk.data" + file hash="d8437ee7148d3c4c6d75016db336878b" path="anchors/anchors-hl.data" + file hash="968a0001770e9a97637fb949bdb27ca5" path="anchors/anchors-hm.data" + file hash="9c8bdcdff5d260c2e9b96e92838deb39" path="anchors/anchors-ho.data" + file hash="e9c42abe71a1717267349c9279c28547" path="anchors/anchors-hr.data" + file hash="9560ab342f4d90c2a23dd6944a6d16d0" path="anchors/anchors-hs.data" + file hash="d72c3521b4cd52ff89327a17370c116e" path="anchors/anchors-ht.data" + file hash="02de9ddd63e38639ff3673355a2d890b" path="anchors/anchors-hu.data" + file hash="953ce3cd3267f97273fb461ef2ad8782" path="anchors/anchors-hv.data" + file hash="ac3f88e12b3d955ef26c6abd47cf3f32" path="anchors/anchors-hw.data" + file hash="ba067eec24545748b3e5af9c556e456d" path="anchors/anchors-hy.data" + file hash="ef711323d3b76d0d1c3f2601edb1984e" path="anchors/anchors-hz.data" + file hash="7ccccd959d9c221dda9ca9f2aeef1cee" path="anchors/anchors-i1.data" + file hash="41aec06f87ff8bfcb013f65c49973aae" path="anchors/anchors-i3.data" + file hash="dd422d60b7ac0b63e905735c30b0d4aa" path="anchors/anchors-i4.data" + file hash="528ae10bbe5f741a1f196ea6c2a8532e" path="anchors/anchors-i6.data" + file hash="988c2da32e53bc5e92e64a7c5a1df3e9" path="anchors/anchors-i_.data" + file hash="97d80ed485ff3add5ff974745b364136" path="anchors/anchors-ia.data" + file hash="3265405e6507dcbcc5e26839172440e0" path="anchors/anchors-ib.data" + file hash="0f53634be0d34b1fc1fddc133ff6f255" path="anchors/anchors-ic.data" + file hash="c0216d4a039dfcde15f075eeee610b61" path="anchors/anchors-id.data" + file hash="922eee058350dfef0352fd60f7ee24db" path="anchors/anchors-ie.data" + file hash="e33072c4ac56f2356e6f2d445be7e7ec" path="anchors/anchors-if.data" + file hash="0879759c6bdd0200c0c88b746104b9ca" path="anchors/anchors-ig.data" + file hash="5eb87e49ca040ac3b9713057c32ce9c8" path="anchors/anchors-ih.data" + file hash="6c10566b8615ebf34380f74d73bd315d" path="anchors/anchors-ii.data" + file hash="3e391f738108532ffd97159536dce6ed" path="anchors/anchors-ij.data" + file hash="6d49ea185051b72fb99c71bd310fe176" path="anchors/anchors-il.data" + file hash="65d502d29946091b61c572b9f169a640" path="anchors/anchors-im.data" + file hash="4ca7dc97c080a4da2f2f2aa9e3c95fc6" path="anchors/anchors-in.data" + file hash="e4eabf1ba29d7c99e35c5e029efff057" path="anchors/anchors-io.data" + file hash="86e7b1a11ac200e93b2ba5d4afa73a18" path="anchors/anchors-ip.data" + file hash="d4459576d7fbd7d30a43a1dcf22e5783" path="anchors/anchors-ir.data" + file hash="b1b50407f46cbb31e4fb240bcddc495d" path="anchors/anchors-is.data" + file hash="0c25b44d49bf97ff5379d99d92cb057f" path="anchors/anchors-it.data" + file hash="e339cba591fbe666883f6c33b9a62e53" path="anchors/anchors-iv.data" + file hash="b78f30afc10f677660291e2351b7ea7e" path="anchors/anchors-ja.data" + file hash="b37a5f14add53dd679c8093d90f33944" path="anchors/anchors-ji.data" + file hash="8f9d465b6f8292c3e09f2295310a27c5" path="anchors/anchors-jo.data" + file hash="c1a4f6912e1fe360d32002cc97d545af" path="anchors/anchors-js.data" + file hash="cbfc281728ea05a0d4921a6b350ef037" path="anchors/anchors-ju.data" + file hash="cda0bac9023898a6c72e3fdc0698a411" path="anchors/anchors-jw.data" + file hash="9d6a3ccb2429a40ccb436bf8a1b5768b" path="anchors/anchors-jz.data" + file hash="d42e72e76f1e34dd274c84675abc6660" path="anchors/anchors-k1.data" + file hash="b4209b88e4973afa3e566f5b9be657a9" path="anchors/anchors-k2.data" + file hash="c34d30ef870c42a525980d2aef6b5264" path="anchors/anchors-k3.data" + file hash="5177ef44c754b0d7a90b55389f4a4a8b" path="anchors/anchors-k4.data" + file hash="e2afc5a965b63bc6fc41f9e7cc8d8188" path="anchors/anchors-k_.data" + file hash="634562d4cf55ce9bff806e5e9f07e528" path="anchors/anchors-ka.data" + file hash="7fd21b6e8bcaad9f5f1bc1f8abd83e4b" path="anchors/anchors-kb.data" + file hash="ee93dcd9e15c0b7ccc3cdd89f55ee664" path="anchors/anchors-ke.data" + file hash="e3af088f07e7b0f84378f87cb218aec4" path="anchors/anchors-kh.data" + file hash="e75615a7c9b588a2b195a6d5900ac2c3" path="anchors/anchors-ki.data" + file hash="a1a2cc4f6936b3cd263815fdf9418ee9" path="anchors/anchors-kn.data" + file hash="786779df33fd113e8146d9b6e1649784" path="anchors/anchors-ko.data" + file hash="d06f8505727e76662bc4b421fd6ce0e5" path="anchors/anchors-kr.data" + file hash="e312f78b1ded807179efb055851883ec" path="anchors/anchors-kt.data" + file hash="82f4f3519c8c7108933a0f3ad1eea1a5" path="anchors/anchors-l1.data" + file hash="b37d8d17920f1d3008db03af763c6f8d" path="anchors/anchors-l2.data" + file hash="344b34bcadf1feced3d286ddc5b721e8" path="anchors/anchors-l3.data" + file hash="a825da800ebbcc4991e01bb84105b34b" path="anchors/anchors-l_.data" + file hash="102c515f25b65340c7d7a6b3ade88a66" path="anchors/anchors-la.data" + file hash="8f229af6fa5209ed53a196d921452d57" path="anchors/anchors-lb.data" + file hash="7dc1e0425073493ab10ed0b10ae6fc4e" path="anchors/anchors-lc.data" + file hash="02521a440f68de2614626dd6ee3ff398" path="anchors/anchors-le.data" + file hash="bf54c5b22c3b149d7f66e0a26abe399a" path="anchors/anchors-lh.data" + file hash="d474ad2e9048bd04469f69e28702f1e4" path="anchors/anchors-li.data" + file hash="3038583704add162f5c15d5fb96324f6" path="anchors/anchors-ln.data" + file hash="54eea6a093573c55c7578de79fb0cbdb" path="anchors/anchors-lo.data" + file hash="5d3386362b6b77c524055c83bb09612f" path="anchors/anchors-lr.data" + file hash="63eebb8580f8af2c2d0d2060d6b94cca" path="anchors/anchors-ls.data" + file hash="81b6f4806bf4c0b791fb2d1ba96ee86b" path="anchors/anchors-lt.data" + file hash="7c520e8b2ed68c9d4b62e6cea5570174" path="anchors/anchors-lu.data" + file hash="74167d6fd479c9702bde8d28b436b58a" path="anchors/anchors-lv.data" + file hash="6198e8955bb3f69d50d03b5d15f8ea41" path="anchors/anchors-lz.data" + file hash="a2cb491696fc95766b770811174138c0" path="anchors/anchors-m1.data" + file hash="8d0b1cef1bf76c0e774dcd883d2bb2ce" path="anchors/anchors-m2.data" + file hash="e6229452b1d913585b1f315683bdf073" path="anchors/anchors-m3.data" + file hash="33cb9db9580b0b7cea22e1902444a9a5" path="anchors/anchors-m4.data" + file hash="5f48fb31445894b6a48a125deb97da54" path="anchors/anchors-ma.data" + file hash="3a1e9af0b72c1214a17598215bd63c4f" path="anchors/anchors-mb.data" + file hash="425330921ed65a33ca19db129e9e552f" path="anchors/anchors-mc.data" + file hash="1e9b2058a7dfc66d8ae58795e5b58abb" path="anchors/anchors-me.data" + file hash="f6eff27c28682b3ec6ead0034614f6fa" path="anchors/anchors-mf.data" + file hash="724ef2d51ebcc7aad2fc43930aa681d8" path="anchors/anchors-mi.data" + file hash="86cad31f15be66d37826d4796acf6734" path="anchors/anchors-ml.data" + file hash="e5da35b5d37c03837917f147d4886357" path="anchors/anchors-mm.data" + file hash="0185fb4141cd96ad6509135f18b42c29" path="anchors/anchors-mn.data" + file hash="6de0d8c1eb9063178020f40b9508ba6d" path="anchors/anchors-mo.data" + file hash="04832371577291378245e64135f349c8" path="anchors/anchors-mp.data" + file hash="95b2346c9d0ff6f82da21cd34035ada8" path="anchors/anchors-mq.data" + file hash="c25f88fd1efe204830e4b5874ea4f5ee" path="anchors/anchors-mr.data" + file hash="b0ac1cd50b8b9f311d9c409dbe7f0bc9" path="anchors/anchors-ms.data" + file hash="03ca3167cacede295f26c3ef6fff0145" path="anchors/anchors-mt.data" + file hash="9c6329105aea4f20ea1e4ba5f4151f73" path="anchors/anchors-mu.data" + file hash="6d943d8d7c03025d6d839e1a96391b8c" path="anchors/anchors-my.data" + file hash="f38c9f7fc951d9bff26325ee8b2b3692" path="anchors/anchors-n_.data" + file hash="26b91474335428871eed11ace63f05b0" path="anchors/anchors-na.data" + file hash="84f72bd90cf0ab4bd3737e4e90789b24" path="anchors/anchors-nc.data" + file hash="4f3899d07cc729458c1ff0ca130e5484" path="anchors/anchors-nd.data" + file hash="d6126b94bb8c34d8d2d3f81d8c129408" path="anchors/anchors-ne.data" + file hash="ed691ae263e2f47b9f8f59909d953b10" path="anchors/anchors-nf.data" + file hash="2e36e58bb4f49de4d369414387211ef0" path="anchors/anchors-nh.data" + file hash="c3fd4e8e9b077efc0de882f5926a3305" path="anchors/anchors-ni.data" + file hash="aadc21afb6f586ea1300cf2304c7ecb8" path="anchors/anchors-nn.data" + file hash="e914ffd15f6347cf16628afd63576528" path="anchors/anchors-no.data" + file hash="b453c6c1e74c124eb6cb1316ffa45b18" path="anchors/anchors-np.data" + file hash="1aca89c7223db01b597b7ef86388bb33" path="anchors/anchors-nq.data" + file hash="6948eb8166903df4ad61a2b2e91d504f" path="anchors/anchors-nr.data" + file hash="3173f9fecde79ef90e2b3122f6380b86" path="anchors/anchors-ns.data" + file hash="a298e55a87f9f6d9eb900a08e30996bf" path="anchors/anchors-nt.data" + file hash="f1b5893eead58193a4e709a1ce892439" path="anchors/anchors-nu.data" + file hash="db8c4959cb69a9000548b49d3c6eb8e2" path="anchors/anchors-nv.data" + file hash="3d6543551a93a1eb46f8e814ac29e976" path="anchors/anchors-nw.data" + file hash="546bfba18839db24e00dfe54128b09c0" path="anchors/anchors-ny.data" + file hash="c77bb53ad1f9bd50b80c4756d119ac88" path="anchors/anchors-oa.data" + file hash="2e0fc69f6321f1d231f317d21063caf2" path="anchors/anchors-ob.data" + file hash="974cb56a1ccab190098be4aea1acaaf6" path="anchors/anchors-oc.data" + file hash="6e132b342907b9e77788076407cd3130" path="anchors/anchors-od.data" + file hash="f4773a879e16522c432dfc48d5403fbc" path="anchors/anchors-oe.data" + file hash="ecd181971b3d749d9ff94e46c55b75e8" path="anchors/anchors-of.data" + file hash="72b698d44b56ad32e5660f80b0eada2d" path="anchors/anchors-og.data" + file hash="86708df706871e0892c9a425fe5bd778" path="anchors/anchors-oh.data" + file hash="3c0af474d1ed6df66a7d09c4b1404945" path="anchors/anchors-oi.data" + file hash="2d6d0e727ea376f56142f2efeec40e99" path="anchors/anchors-ok.data" + file hash="f28dfca76e286b449d80afd1c998c12f" path="anchors/anchors-ol.data" + file hash="2f8d6c5ed443fca06aec22c57fc63237" path="anchors/anchors-om.data" + file hash="8ec4e591167874194696e7aee68cfb41" path="anchors/anchors-on.data" + file hash="e5f1668db60865661365a5870999bb33" path="anchors/anchors-op.data" + file hash="65f42643dcd575a52ffe866724acf705" path="anchors/anchors-or.data" + file hash="1b00cb5a5a16303719022711e5c8e9b5" path="anchors/anchors-os.data" + file hash="329448dbb219f4d53922c0377411b714" path="anchors/anchors-ot.data" + file hash="741073c18f6757cd8a678916792fd6ca" path="anchors/anchors-ou.data" + file hash="1a345a2e0abf92aa8973a0ff1fe5317c" path="anchors/anchors-ov.data" + file hash="d085dfd867e05365fd39414076d04454" path="anchors/anchors-ow.data" + file hash="185a2e741df1074f3a9d7dd9e4f68c55" path="anchors/anchors-p1.data" + file hash="c8985d014fbec306c4a2fe000679f351" path="anchors/anchors-p2.data" + file hash="44182c9c609fb690685edeb32520ec9b" path="anchors/anchors-p3.data" + file hash="8e8852db636d5994011d6493c8f8fa01" path="anchors/anchors-p4.data" + file hash="4ed7c32dacaf3f6f4b59002735bb3fdb" path="anchors/anchors-p_.data" + file hash="b2c24ade4c2a9a3a6cd765b8f0e237b8" path="anchors/anchors-pa.data" + file hash="fd33c337f9309917ac580cf9c0003a20" path="anchors/anchors-pb.data" + file hash="206e290245ebb4ce2e0cc0620ab6b257" path="anchors/anchors-pc.data" + file hash="0c9ebabd1b9e77a4e4c2e45dc43e583b" path="anchors/anchors-pd.data" + file hash="7a90fda6b320dbbb05d8de5792b1dc13" path="anchors/anchors-pe.data" + file hash="8abe820d073af84e5a9eab78c9904d98" path="anchors/anchors-ph.data" + file hash="61831d953f9f3b568e1c9e8f5c0a60bb" path="anchors/anchors-pi.data" + file hash="bcbdcc5526ae76f82d256854f1012467" path="anchors/anchors-pk.data" + file hash="0bec8e41970b06b1897f91bcc04ed4a5" path="anchors/anchors-pl.data" + file hash="4a5df60a5cbff6ba44e5f08a868f2e90" path="anchors/anchors-pm.data" + file hash="dcbcd694467ccdf8cbbba1c9a9236f8e" path="anchors/anchors-pn.data" + file hash="366124e4963b7d40833928bcc86ee744" path="anchors/anchors-po.data" + file hash="8ccf405baeb72a3e25e0bc55043a08b4" path="anchors/anchors-pq.data" + file hash="8a524c7c174101f282bb2eb510a3496b" path="anchors/anchors-pr.data" + file hash="409eb1d6c715caf6d337a47e4da71414" path="anchors/anchors-ps.data" + file hash="efe51387d31f0c987ba5bfd588dc5810" path="anchors/anchors-pt.data" + file hash="be769bfd03607142d8dfcc48d76dc295" path="anchors/anchors-pu.data" + file hash="9ebaa495523b3f3f4510800300b79578" path="anchors/anchors-px.data" + file hash="f34a6b289548204011b8dcb6dcaf7a60" path="anchors/anchors-q_.data" + file hash="266a76b76c99fd2caad38dfc05c55bc0" path="anchors/anchors-qi.data" + file hash="c4ce19ae6bfd14006d899239d75ba521" path="anchors/anchors-qp.data" + file hash="dbde28656762d1e770b466629737e531" path="anchors/anchors-qr.data" + file hash="4f752e1c7c12e6688f223277e720dce3" path="anchors/anchors-qu.data" + file hash="19ef5004ac4a49c036c368500c61c8d7" path="anchors/anchors-qv.data" + file hash="057b934eb021e36aebc057a00ea3f45c" path="anchors/anchors-qw.data" + file hash="b39984bf107eecab7cde2c17364c6d34" path="anchors/anchors-r1.data" + file hash="f6d2f292b61a063ef443365a974c0317" path="anchors/anchors-r3.data" + file hash="cdc7fdfe9e1dcd4775b65c5b0989acbe" path="anchors/anchors-r8.data" + file hash="4925529de428ff29c548b19a3e3ee94e" path="anchors/anchors-r_.data" + file hash="28f6c73514d4b776b90ccdf7b4a7b721" path="anchors/anchors-ra.data" + file hash="1bc6d0a67a361e32e4c90dbbf6574d08" path="anchors/anchors-rb.data" + file hash="74fa68b84fc8d7935f24147f61947744" path="anchors/anchors-rc.data" + file hash="39601bba7f02f2770ff0c67d23c32fe5" path="anchors/anchors-rd.data" + file hash="b6ea0bf5a9930dd62de7748363a968ae" path="anchors/anchors-re.data" + file hash="1d888a2e2b5ce1d01b51be61dff96978" path="anchors/anchors-rf.data" + file hash="50d8b2ff4de0421ecc629de47b097d89" path="anchors/anchors-rg.data" + file hash="2906a10ca6c9c5422a25661c4a95f80e" path="anchors/anchors-rh.data" + file hash="d750ed3bcc210f9eb3dca2a599324468" path="anchors/anchors-ri.data" + file hash="ab38a82ba144b2dce5e51922b5e6d995" path="anchors/anchors-rk.data" + file hash="3ff9ceb839691162ea1c7de35384f06c" path="anchors/anchors-rl.data" + file hash="cd6271511aa864739a8fb1c07bf4b016" path="anchors/anchors-rm.data" + file hash="caa48636deab58454ca2da462ed33d16" path="anchors/anchors-ro.data" + file hash="fcfe5752822f612241809ff0ee5f0dd7" path="anchors/anchors-rp.data" + file hash="59fb0563b2f5ae0edc907c0cd0de8e1b" path="anchors/anchors-rr.data" + file hash="68dfd77d645ee9ef7fa5ca557ba05ffe" path="anchors/anchors-rs.data" + file hash="d2c40d82740c50fd6054623bdbc1380b" path="anchors/anchors-rt.data" + file hash="9d8c6f954ec614f800463b6b8f09a282" path="anchors/anchors-ru.data" + file hash="bbdb99dec5fc2f4c431051b4bf471e48" path="anchors/anchors-rx.data" + file hash="11d98f3d16ba200ae069e3987d2d5e87" path="anchors/anchors-ry.data" + file hash="ef219c60dd4024783bce30a945510b0d" path="anchors/anchors-rz.data" + file hash="f1b532502592b916c00c07e8c5d1e154" path="anchors/anchors-s1.data" + file hash="b2613b0bc1aa575f6c2f353dc8674beb" path="anchors/anchors-s2.data" + file hash="80d0c78194505ae3f894afc0119d631b" path="anchors/anchors-s3.data" + file hash="12eb8509304272d17143b8bd16ad041e" path="anchors/anchors-s_.data" + file hash="d9f9ee063d23ca2718bbee290ac2c306" path="anchors/anchors-sa.data" + file hash="66fd346122bf78ecc764f4453b2c1b4d" path="anchors/anchors-sc.data" + file hash="5c73a93e603874585c524b65d7be8252" path="anchors/anchors-sd.data" + file hash="a835f7d7968ce7965bf179b02f3c7fcd" path="anchors/anchors-se.data" + file hash="a7a2f866ebd9596be205bc0dac2d36f6" path="anchors/anchors-sf.data" + file hash="235a75ed55ec633f446eeb55ee64af3d" path="anchors/anchors-sh.data" + file hash="663de9e9f44351f7bf54e096b450fc1b" path="anchors/anchors-si.data" + file hash="4c9eaee084d3950f482935b006c9c88b" path="anchors/anchors-sk.data" + file hash="633995a550767c71f6293f326aedcf77" path="anchors/anchors-sl.data" + file hash="8519abaa0d9793469b52d86ac4153003" path="anchors/anchors-sm.data" + file hash="57191668adf6796a2f09a84f939f378b" path="anchors/anchors-sn.data" + file hash="019c8b6e0a3df4c5c6c41caa719ca966" path="anchors/anchors-so.data" + file hash="72c6691c3787a67617da40cb6b82b622" path="anchors/anchors-sp.data" + file hash="cc9fd36b72ac33666e2146eec0087221" path="anchors/anchors-sq.data" + file hash="5000f5e5ce3fc9d0a74ba140138dc430" path="anchors/anchors-sr.data" + file hash="29804fdb50a4058b19385fa8f0484ddd" path="anchors/anchors-ss.data" + file hash="0894d71133442e32695323c24cf85ee3" path="anchors/anchors-st.data" + file hash="5770662dc8861cc3f4c07b97953adc9a" path="anchors/anchors-su.data" + file hash="210f3c8e1795d1039b8ba8e46237a00d" path="anchors/anchors-sv.data" + file hash="364f83b479a024e2302cc5259a350b29" path="anchors/anchors-sw.data" + file hash="c7943c8728932f767e072e51a12f2a4e" path="anchors/anchors-sx.data" + file hash="7d09debf13bb15e4ca4d6c652b0732d3" path="anchors/anchors-sy.data" + file hash="c1626c3622520c3c7dfd09701500a7ec" path="anchors/anchors-t0.data" + file hash="13fbb1eeb5d9a5a94686dd3259063b88" path="anchors/anchors-t1.data" + file hash="34951866cf334ae68211b3b4b5240af3" path="anchors/anchors-t2.data" + file hash="3f5ec73c62673802a2b7a02d3e89749d" path="anchors/anchors-t_.data" + file hash="ab02ac2e24f74d51d5496a49db4e47ea" path="anchors/anchors-ta.data" + file hash="2426f8ca36a781dbf89e9d8f9e2264c4" path="anchors/anchors-tb.data" + file hash="f0e5140a590f65c00560e3e8095f7ca9" path="anchors/anchors-tc.data" + file hash="6b467e6c8e33388aa961d61fc6aad2f9" path="anchors/anchors-td.data" + file hash="a0b9109f1f300395149d8ec46bd21cd7" path="anchors/anchors-te.data" + file hash="0c5b96dfa5531a904bf3ec35c38aac14" path="anchors/anchors-tf.data" + file hash="9368f251280cb4ab09e632838cade074" path="anchors/anchors-th.data" + file hash="652e86e05ad79cb155486baaad281443" path="anchors/anchors-ti.data" + file hash="2968d000ffea379af4c849c0b4e3062f" path="anchors/anchors-tk.data" + file hash="10414254b611418c457061a7212a992b" path="anchors/anchors-tl.data" + file hash="b53b53f0f5e679200b4cebedf80cbc8c" path="anchors/anchors-tn.data" + file hash="a10b50d5f0ff6cfbaeb9c348d4abc1b3" path="anchors/anchors-to.data" + file hash="b76be9e958d3504c25cb1154841fbf00" path="anchors/anchors-tr.data" + file hash="916cc1d26e44dd5c3ddf6127820f201d" path="anchors/anchors-ts.data" + file hash="21fe079b8ce8c230113d49c9bf9ab6e0" path="anchors/anchors-tt.data" + file hash="0cf5a18e3877a5edd704a5d752c77788" path="anchors/anchors-tu.data" + file hash="4ba8afa46b36cb638ae8dcf8672371a8" path="anchors/anchors-tv.data" + file hash="7b4cdba85074e1efe09614ac23df8055" path="anchors/anchors-tw.data" + file hash="db8a11cc96aec2a3fcd4ddb08896b776" path="anchors/anchors-tx.data" + file hash="8742a0f5580f54833e0262c8cbea42f7" path="anchors/anchors-ty.data" + file hash="ca1d814f97898edf3a368127ab14b0e8" path="anchors/anchors-tz.data" + file hash="d8b6101672e96914dd3edd1336d1e888" path="anchors/anchors-u3.data" + file hash="a9cd5a6937a9aff6e59daa99f8d3fa75" path="anchors/anchors-u8.data" + file hash="943c41484859e32b1823c3d1baae502e" path="anchors/anchors-u_.data" + file hash="3b140049e22ca4c1dd9355d94b7bb395" path="anchors/anchors-ua.data" + file hash="798f87ab5d3aeb622916724220223f9a" path="anchors/anchors-ub.data" + file hash="61940e61f49cac91d919e96832e5d6ea" path="anchors/anchors-ud.data" + file hash="4a44047533f086087b4e2b1d7ac48bf3" path="anchors/anchors-ui.data" + file hash="64c98de703421a284b7672ef91c7d8ca" path="anchors/anchors-ul.data" + file hash="3a7998aaca155738aff9f489db1af3ca" path="anchors/anchors-un.data" + file hash="46999c44a951ff62689a879616d433b2" path="anchors/anchors-up.data" + file hash="099a29047d7bc551b7e7a1226a185962" path="anchors/anchors-ur.data" + file hash="e96c027f3cde94aabf4e2ec5f3dcb917" path="anchors/anchors-us.data" + file hash="ab65a04316bab5a9b43a44cbd9048414" path="anchors/anchors-ut.data" + file hash="280cee1356f95155cd3985016b1eca40" path="anchors/anchors-uu.data" + file hash="dcc642b09477e5ee97f2c0feb3f278e5" path="anchors/anchors-uv.data" + file hash="3e0eb695ff7b88e7cfa1b5ceab56a7dc" path="anchors/anchors-v1.data" + file hash="77525d73ae21f746718f6c779271a371" path="anchors/anchors-v_.data" + file hash="45c3ca2ae0ad5ad17e980ea94aada91c" path="anchors/anchors-va.data" + file hash="df33bdb1cedea8b2f3cdaf9e658a10c6" path="anchors/anchors-vb.data" + file hash="03aa47ab3a0e725b799d341490a78599" path="anchors/anchors-vc.data" + file hash="ded1b0bfee06a1da50c5dc3585ed70be" path="anchors/anchors-ve.data" + file hash="adccc08338fa4d62ef894e10174477ab" path="anchors/anchors-vh.data" + file hash="a6b035f5efea8e0eb081c2f9fd68ce28" path="anchors/anchors-vi.data" + file hash="99750a91b3253f53ded8065ad225e599" path="anchors/anchors-vl.data" + file hash="c22df91c8cc1379d3ae100b7d9c0a35e" path="anchors/anchors-vm.data" + file hash="a0948d95e0cc4d0ed033248d758a2090" path="anchors/anchors-vo.data" + file hash="2397fafd612eb047484a9602cf6f09fc" path="anchors/anchors-vp.data" + file hash="0c197c64435c7610ebaf3062adb5e55c" path="anchors/anchors-vs.data" + file hash="1bdc06de0557292a74eaba9c95cd6599" path="anchors/anchors-vt.data" + file hash="b7959aec996ea8b14a1b05622d6499b0" path="anchors/anchors-vw.data" + file hash="dd6c1d73592b56e17b6e0a08376a775f" path="anchors/anchors-w3.data" + file hash="a78db44a0222dd638ce7f56d2520a8d6" path="anchors/anchors-w_.data" + file hash="16e6a932b01a71c1a91fdbc5bd11a7a5" path="anchors/anchors-wa.data" + file hash="ef977cdf37b37204a68c9da7b4d203d4" path="anchors/anchors-wb.data" + file hash="6f7c7af3eb5711c759cbcd886d24826f" path="anchors/anchors-wc.data" + file hash="2f0ca18ba2855851499e24715e563831" path="anchors/anchors-wd.data" + file hash="78e3288affb4cf4c54f90ee271490423" path="anchors/anchors-we.data" + file hash="d70f5b8461f0d6e6235e174bae72047a" path="anchors/anchors-wg.data" + file hash="4268c3f18f7c97992b5832d874f47552" path="anchors/anchors-wh.data" + file hash="3c16bc772fae19bc466e985b099cff1e" path="anchors/anchors-wi.data" + file hash="41ac3e4fd5236cf9de524ad65478f33b" path="anchors/anchors-wo.data" + file hash="384ebdba60d0e6fa816d6a91858d8876" path="anchors/anchors-wp.data" + file hash="afe00abfb93a60cbd87955f7f845dcf8" path="anchors/anchors-wq.data" + file hash="a927b0bba85345808ace5426a320bd01" path="anchors/anchors-wr.data" + file hash="ff0eaec74313c5a1e3ce490003e87ee1" path="anchors/anchors-ws.data" + file hash="62d4ffc2fb9f2448eaf6a1ae9f7bc24a" path="anchors/anchors-x1.data" + file hash="7dbb95747b388e04d50852b2e7e57e36" path="anchors/anchors-x2.data" + file hash="8355991bdd4a1d6ab8281c5801dccd42" path="anchors/anchors-x_.data" + file hash="c321acb80c677eb84066ec1177e9f99d" path="anchors/anchors-xa.data" + file hash="2207270a75d553a822e717c2238c95dc" path="anchors/anchors-xb.data" + file hash="e89ca499f3e5a0cb592afec60e7f3fe9" path="anchors/anchors-xc.data" + file hash="2d9327f6d0cff62cb22c2fa0f574e9fb" path="anchors/anchors-xe.data" + file hash="4d50d1666695d041b4b41fbaf267d2f3" path="anchors/anchors-xf.data" + file hash="36b9f7e7afaaebf2a6e6387cd7ae852f" path="anchors/anchors-xh.data" + file hash="4aa913b3188b5417c5e9d83cebe106e3" path="anchors/anchors-xl.data" + file hash="f3190e467d34aa54b46d66a3512c0da9" path="anchors/anchors-xm.data" + file hash="7e3368c2871b34b6281a66a3b9d1b875" path="anchors/anchors-xo.data" + file hash="0e1bd61e9ad9a6ccf2f20d025ea5b19f" path="anchors/anchors-xp.data" + file hash="1393fbdc5d528d0af75edfa2cbd0c76f" path="anchors/anchors-xr.data" + file hash="06ab106c84c1567bc1890c0a3bec2653" path="anchors/anchors-xs.data" + file hash="f739684a11b678af5ad47b8686fd19ec" path="anchors/anchors-xu.data" + file hash="8c9a8dbac8eba4f4fd42f7e720eba2bd" path="anchors/anchors-xw.data" + file hash="23aa624c6c99f99e12595ff230f4f6a0" path="anchors/anchors-xx.data" + file hash="15feae4f9f0326a6f59c12b91b50d571" path="anchors/anchors-xy.data" + file hash="e75ec899d1a244c162c0cc8e1f90dbb1" path="anchors/anchors-y1.data" + file hash="be029761ad0e13368c6c71e998759569" path="anchors/anchors-y2.data" + file hash="2769621cdf156bb62b75491a1eb679c0" path="anchors/anchors-y_.data" + file hash="2a4440d6cbe5bfa2d1e449bd9bd432bf" path="anchors/anchors-ya.data" + file hash="70f591706d6ab62549e3c62d36eac8c6" path="anchors/anchors-yb.data" + file hash="6e82e0b71c2fc250d22752d63cde9fe7" path="anchors/anchors-yc.data" + file hash="0bd9e4e85964ecedd4ffa5524ad4f7d3" path="anchors/anchors-ye.data" + file hash="a25ada45e6d25186b57a6597d2407160" path="anchors/anchors-yi.data" + file hash="1d2d225ba14e543a51f99d692c21092b" path="anchors/anchors-yo.data" + file hash="d8b7232e64755fd8c6e88e041c788ef5" path="anchors/anchors-ys.data" + file hash="43158e9bddd95b50f8d5bce36710e978" path="anchors/anchors-yu.data" + file hash="603206b72db814fb34b850036e04a40f" path="anchors/anchors-z_.data" + file hash="7eed00dfea16b9adf153fe24c46d161d" path="anchors/anchors-za.data" + file hash="ae755a570a26ea9b20a5a9a4f4336605" path="anchors/anchors-zb.data" + file hash="f93ece8085af94fd18f7038d3f22f7d8" path="anchors/anchors-zc.data" + file hash="0e2c5b383aa4f32c924087f8775b89d4" path="anchors/anchors-ze.data" + file hash="bd6a1751e7d238a841da39b656ea572d" path="anchors/anchors-zh.data" + file hash="231407b8cc1803fe57fa6329ee5f0f06" path="anchors/anchors-zi.data" + file hash="f12c1ab9917f9d0ee8e3ed55d6133550" path="anchors/anchors-zl.data" + file hash="84c1e45ea98c9fd6cb62893653b0c7d3" path="anchors/anchors-zo.data" + file hash="f907d51f1af901f1040f7baa98b0c983" path="anchors/anchors-zr.data" + file hash="30648ccc791f7e4ca912e582d40edfbe" path="anchors/anchors-zu.data" + file hash="c690e9518014128e1e69b6f2766805cd" path="biblio/biblio-2d.data" + file hash="9e7eee00d7771516b026ee629b9b3bab" path="biblio/biblio-3g.data" + file hash="c4fce104fde3ed67717317d20ea22c0a" path="biblio/biblio-aa.data" + file hash="df997f645dbba0b626e8f46713753482" path="biblio/biblio-ab.data" + file hash="902c03bf2f9d5603a15ac36118392d84" path="biblio/biblio-ac.data" + file hash="6baf343b4522e369d9954985921a3364" path="biblio/biblio-ad.data" + file hash="d901dbdb54fd727f979194a617c6ffcb" path="biblio/biblio-ae.data" + file hash="ae6c8b94752eef3400b44a6fa5ac0368" path="biblio/biblio-af.data" + file hash="050ed7e5c86b758c4fc854db3215cb86" path="biblio/biblio-ag.data" + file hash="a6bc7567667d452d9a9cee77f9c4eab2" path="biblio/biblio-al.data" + file hash="9b52845253cea9b378ec1eaa7d61f61f" path="biblio/biblio-am.data" + file hash="3508b67810f7a44c45bd7b446190236a" path="biblio/biblio-an.data" + file hash="cf6fd023d4ff1e50cc9aede6e269071b" path="biblio/biblio-ao.data" + file hash="f8fdefe796c4aea56419a6d6d9405e33" path="biblio/biblio-ap.data" + file hash="fb596913eaaefe23952e93c7a1585b3b" path="biblio/biblio-ar.data" + file hash="d5eefe55161071daf2a6c0b852890886" path="biblio/biblio-as.data" + file hash="2bce83689ca5382b33be0b214bb341e2" path="biblio/biblio-at.data" + file hash="5660928e4ce55ad3faad786a603cce91" path="biblio/biblio-au.data" + file hash="0d0a27002b52b4ee23c81d316b7387e9" path="biblio/biblio-av.data" + file hash="6d56efc6702d6eeda0ed4a030d15e707" path="biblio/biblio-ax.data" + file hash="dedb25fd6386259202184cdf22137e20" path="biblio/biblio-ba.data" + file hash="7ea97c92ae5af0c82f23509037defa4e" path="biblio/biblio-bb.data" + file hash="ba450bdb729648f6ad7e5df01387d0d4" path="biblio/biblio-bc.data" + file hash="a072e51db348fdce7124c26866b4252e" path="biblio/biblio-be.data" + file hash="6832b92b4c93678b1fec782ba1e781ae" path="biblio/biblio-bi.data" + file hash="713b28ed66f1503d4ba005524555ee1a" path="biblio/biblio-bl.data" + file hash="1ff16dcf3b6a8aaf20c0c25479850625" path="biblio/biblio-bo.data" + file hash="3e208da3df4078a330313aa7b01d670b" path="biblio/biblio-br.data" + file hash="174ace037c1b0768d542d2aa0a5463fd" path="biblio/biblio-bu.data" + file hash="4e469f2bc9b1a85aed400180cd35ebba" path="biblio/biblio-c1.data" + file hash="43b3c215fc49d92e583e185d1c0f9c4a" path="biblio/biblio-ca.data" + file hash="76d7c74e5def883dd261e1cc834cb52b" path="biblio/biblio-cb.data" + file hash="669a48dcf815fcec82614b4735445d7d" path="biblio/biblio-cc.data" + file hash="b56c8a5d682649bf52bcdf40f0020b13" path="biblio/biblio-cd.data" + file hash="e3651eb26c2cb3dcf7ce3ac3f10f2659" path="biblio/biblio-ce.data" + file hash="cb75dec1fdf2aee1bfbe65941ceee68b" path="biblio/biblio-cg.data" + file hash="0a9af7e84afde74ff633182fe725a3b5" path="biblio/biblio-ch.data" + file hash="4fb7b4426985976b099c59f8b3d1e494" path="biblio/biblio-ci.data" + file hash="b1d92dbdf7b92344250c8010041d3248" path="biblio/biblio-cj.data" + file hash="c3c5417270c45a6d95bb276653a666e5" path="biblio/biblio-cl.data" + file hash="c907c05a0bca58f93d638df4023be963" path="biblio/biblio-cm.data" + file hash="39666391e00f517856381c608a8b015e" path="biblio/biblio-co.data" + file hash="06e744f9467396bdaf8f0c09f73ae8c6" path="biblio/biblio-cp.data" + file hash="aeaa6553bdd23060d17964a796f36ead" path="biblio/biblio-cr.data" + file hash="2feb4e1c72fbdc491311fde9e9a14c7b" path="biblio/biblio-cs.data" + file hash="e89f1f593779b8d74e4543636c77aecf" path="biblio/biblio-ct.data" + file hash="7bbee7f2f6748fece3cce5c9f39bc8b4" path="biblio/biblio-cu.data" + file hash="f63b9df52dcc1382762376abd116afff" path="biblio/biblio-cv.data" + file hash="42ef02c7fea58f1cb592c5260b9e0e3f" path="biblio/biblio-cw.data" + file hash="806ff51fa83fa9d3c5f486c5120870e9" path="biblio/biblio-cx.data" + file hash="7d5f5617a5c63338e2b96319ec92a4f1" path="biblio/biblio-cy.data" + file hash="305222f8b7e0269b16ba6ef791cd3c46" path="biblio/biblio-d0.data" + file hash="bd2badeca906a43c5a3ab3d044f21705" path="biblio/biblio-d1.data" + file hash="00dfa4823fc5b7f9c49c470fd6a1a0da" path="biblio/biblio-d2.data" + file hash="d7bfbc93a1ce4f3ba26f1a11482781d4" path="biblio/biblio-d4.data" + file hash="4518130407887a294dd607ee064d0886" path="biblio/biblio-da.data" + file hash="27f20c32ae2f5c167af27d9928130b6e" path="biblio/biblio-dc.data" + file hash="6de6df96f1a37ba00164ac5b91d8b5cd" path="biblio/biblio-dd.data" + file hash="95328083d64d571a69f61d81ba93b950" path="biblio/biblio-de.data" + file hash="94a40d786035db0c8ced733f1656f0d7" path="biblio/biblio-df.data" + file hash="0c75758bf949c54da20575b94924e0ac" path="biblio/biblio-di.data" + file hash="1058c34431dbc10a71812871a2318c83" path="biblio/biblio-dm.data" + file hash="381398c8120067ba453ffa89fab62d8c" path="biblio/biblio-dn.data" + file hash="4e2fdc7638bf6c55d5d93a8bd62bdf80" path="biblio/biblio-do.data" + file hash="6d0eb0dcb3aa0a71b6c0cd346da730ff" path="biblio/biblio-dp.data" + file hash="705367144488e45520ad3192a9e226d2" path="biblio/biblio-dr.data" + file hash="d929e8ebf6808ce406ab3db2b69e1aa3" path="biblio/biblio-ds.data" + file hash="a114f7bacad4045002abd5219d5d53c7" path="biblio/biblio-dt.data" + file hash="0fac40e19422e19c10257cb03b7a17de" path="biblio/biblio-dv.data" + file hash="26cb50f6a220734e2e67c1b5e21a44f6" path="biblio/biblio-dw.data" + file hash="cec5f180f1e293362126aa648b49874b" path="biblio/biblio-dx.data" + file hash="fbdc5d3d10809ed4557279035de62915" path="biblio/biblio-e..data" + file hash="8912f0285ff290933cc746ca32f619d7" path="biblio/biblio-ea.data" + file hash="399fbeab577d1ba46fef4da3afa8f037" path="biblio/biblio-eb.data" + file hash="98fd090b9d0f0a9b2af71c0853177092" path="biblio/biblio-ec.data" + file hash="f44bb6933d048151513d5b6e4af71399" path="biblio/biblio-ed.data" + file hash="40b225f7dc617a8759fd8952936fbe7c" path="biblio/biblio-eg.data" + file hash="5bd2deff9574c3d90da0ddb18cdaa432" path="biblio/biblio-el.data" + file hash="3356c7456fac413993546c095b0e6259" path="biblio/biblio-em.data" + file hash="184170557c349b32e70ff1b8fc09e713" path="biblio/biblio-en.data" + file hash="798f2ee6cfb1d55eb7555d5f72802765" path="biblio/biblio-eo.data" + file hash="09c3600601a51314040d37615a739b3b" path="biblio/biblio-ep.data" + file hash="bfa1b147282bea03bdc8a0d5fa4dbd83" path="biblio/biblio-er.data" + file hash="cab16f9c4afbb2c388d11e5284c321b6" path="biblio/biblio-es.data" + file hash="badab55b3ea0d667c10baaaaa8d7fea7" path="biblio/biblio-et.data" + file hash="dbc94c0e05340acad8d872ea422b9bc4" path="biblio/biblio-eu.data" + file hash="d6bfe3f37f019e0a573fed599cbfcda3" path="biblio/biblio-ev.data" + file hash="66cdc4b4fcfa06d44fdaf896a5a01ffe" path="biblio/biblio-ew.data" + file hash="47b1a8760a9ec7d4b39f432ce0ce4f5b" path="biblio/biblio-ex.data" + file hash="10e5fe5bf9dd978722d9fb0e49c4dab7" path="biblio/biblio-ey.data" + file hash="fc0de9da3ffe13344525334af41a786d" path="biblio/biblio-fe.data" + file hash="591901267ac15d7df5f04dfade767733" path="biblio/biblio-fi.data" + file hash="c7930b1bc0168f18a99df414817b5103" path="biblio/biblio-fl.data" + file hash="5563526d7a8aad0ac1210515b4d40c5c" path="biblio/biblio-fo.data" + file hash="97c44e1165ff50e249bb1d8fec6fc900" path="biblio/biblio-fr.data" + file hash="909a8332b28a448274a0100978b70138" path="biblio/biblio-fs.data" + file hash="832399f284b3ffd59ffc4b4557d2abd7" path="biblio/biblio-fu.data" + file hash="31b964c56a8215a1694a5014f75f540b" path="biblio/biblio-ga.data" + file hash="ed52428f698d3a10360cba872770d40f" path="biblio/biblio-gd.data" + file hash="9c0cf916ddce6839691a17a7fa727681" path="biblio/biblio-ge.data" + file hash="48d2f245afd02a8e9a9332a636eeb449" path="biblio/biblio-gi.data" + file hash="ac52a7c8adb89bd7dffac4e6e6804faf" path="biblio/biblio-gl.data" + file hash="8d6b29b274c7e810535fb2d6724c86e8" path="biblio/biblio-gm.data" + file hash="4e5747d45e144462a38a7e5762ccf04a" path="biblio/biblio-go.data" + file hash="1f63ded4cb5580b826428d4a04f06ca9" path="biblio/biblio-gp.data" + file hash="be5346fbf72b3a9e71ad95c169df5af5" path="biblio/biblio-gr.data" + file hash="9b28bc1e86a93c871ba5f54d9332a81f" path="biblio/biblio-gs.data" + file hash="615317fe8391d6c496fc7792f0c26e11" path="biblio/biblio-gt.data" + file hash="2e537307b1ff6c5a67a6348b8cca67ab" path="biblio/biblio-gu.data" + file hash="0ed49b735b7b8eee98f77a8287df59cc" path="biblio/biblio-gy.data" + file hash="736e5fd020ea1ee8aad6feda539a75ad" path="biblio/biblio-h-.data" + file hash="489d23accb8e4c3c90ce9dc323d8de5a" path="biblio/biblio-ha.data" + file hash="a2c73a71366536edf69784e244d1219b" path="biblio/biblio-hb.data" + file hash="ed7e7f51655e4713756d0f31ff243b25" path="biblio/biblio-hc.data" + file hash="c1c1bbb2a20543c5ce0811638fba2b28" path="biblio/biblio-he.data" + file hash="12a3883329eb638657780d1e6d45fdc2" path="biblio/biblio-hg.data" + file hash="56b7d8950519b6bdfdcc1e24c6ad7542" path="biblio/biblio-hi.data" + file hash="ebd0ad91ee5a699760faa420fd325190" path="biblio/biblio-hl.data" + file hash="0ea3874267dcac080b991a7d6748528f" path="biblio/biblio-hm.data" + file hash="5de86f3bd5b486010c4c329cc51e1166" path="biblio/biblio-hn.data" + file hash="453650c19162c595a20dbec6c4dd7206" path="biblio/biblio-hr.data" + file hash="a20d029e0fba6a5b127cc119fbbdfd8d" path="biblio/biblio-hs.data" + file hash="82df673a4d0ce2be1c9d408c5b02268b" path="biblio/biblio-ht.data" + file hash="351e8d94b8dea7a752ebedb77aed05a8" path="biblio/biblio-hu.data" + file hash="e9b51be13b15a850ba761d439a67327c" path="biblio/biblio-i1.data" + file hash="26097aa04ceada2bd3c54735f1b5ed02" path="biblio/biblio-ia.data" + file hash="aff51006d275970db307422dee2f0148" path="biblio/biblio-ic.data" + file hash="d7f42c1f23d30566142d1742f89b6929" path="biblio/biblio-id.data" + file hash="503abacaf22441fc15d3eafa675ca570" path="biblio/biblio-ie.data" + file hash="873fa3bac79c0b1ebe424e7b649a746c" path="biblio/biblio-if.data" + file hash="2316f1112b007c14447e594b01b19baa" path="biblio/biblio-il.data" + file hash="2fe4380f87e685edd5b7a1e9a4d0f7f8" path="biblio/biblio-im.data" + file hash="5172b18bb333db1bf3073a2c1b6a7c26" path="biblio/biblio-in.data" + file hash="09600fead08d9b1430305a9b6c91a214" path="biblio/biblio-ip.data" + file hash="10c9c4b2e31fc7fc728abb0be277ef40" path="biblio/biblio-ir.data" + file hash="d6674fc2f19291ea90e9a285e7a7e6c6" path="biblio/biblio-is.data" + file hash="07a7a85e0a0af678892b8c1c58780ecf" path="biblio/biblio-it.data" + file hash="92fe27c1b9e09a16b3f39a5e4c488c42" path="biblio/biblio-ja.data" + file hash="04bcb0388eb78cea1866361f116575e5" path="biblio/biblio-je.data" + file hash="232111c02508a3948e9d88b9982292dd" path="biblio/biblio-jf.data" + file hash="603eb8b387c219557f549ed68db6ac47" path="biblio/biblio-ji.data" + file hash="5867e08617b61376356021cb3e8bb13a" path="biblio/biblio-jl.data" + file hash="6a927b5d06acb14b06c132e0c74538f2" path="biblio/biblio-jp.data" + file hash="d4a97c4723ad75e8fdb524853c81dbe7" path="biblio/biblio-js.data" + file hash="e3fbc7f44120286b85c85b74c5e2daae" path="biblio/biblio-ju.data" + file hash="20390be333e9bccdbbbf8ffb6ac83fe3" path="biblio/biblio-jw.data" + file hash="971d7b011f78b3e7b99f6bb23268aba8" path="biblio/biblio-ke.data" + file hash="6eac67db599731911145c0a2018b3596" path="biblio/biblio-kh.data" + file hash="231e07be84d3e4faee2b41fcbbcca202" path="biblio/biblio-kl.data" + file hash="88dc6a5bf7c5dbe5fb4588d44bf3bd08" path="biblio/biblio-kn.data" + file hash="0c4c169d8ac21cc827a7b812b3786e7f" path="biblio/biblio-ko.data" + file hash="fb3a031b734c8f82967afc0a7e32230a" path="biblio/biblio-ku.data" + file hash="8bd91fa3ddb719b96fd2d1bfec3b340b" path="biblio/biblio-kv.data" + file hash="67983ab2e0c5f6d83db54aa2088fa487" path="biblio/biblio-la.data" + file hash="02ac681874a1fc7111cb307c48b8bddd" path="biblio/biblio-lb.data" + file hash="75e538f9817d0878f574fa306c6835e3" path="biblio/biblio-ld.data" + file hash="6210c7b9c75d10ece9e6af065e9a8d42" path="biblio/biblio-le.data" + file hash="7d9123958bcf43f2d08d65b63daa9668" path="biblio/biblio-li.data" + file hash="acbc6961563d3d1f6426921bc49ff1d7" path="biblio/biblio-ll.data" + file hash="dda876984f2c45d337bd3e923bea4249" path="biblio/biblio-lo.data" + file hash="0e595c339a3c6dde863c24a22477f62a" path="biblio/biblio-lp.data" + file hash="0f8cab491ce133d3e40b720c436f2a9a" path="biblio/biblio-lt.data" + file hash="d394530e8a522bff32c665490e2ebdef" path="biblio/biblio-lw.data" + file hash="c95e0c3dbfd0af5135d4f68c1fc0f00c" path="biblio/biblio-ma.data" + file hash="a580d95065094fb5c24f582c6d7b7d3f" path="biblio/biblio-mb.data" + file hash="5a727dc5e33cfa31aa6e8a4e4cfc9c4f" path="biblio/biblio-mc.data" + file hash="485c7e8882612b1a37cdec7b26d1ec3f" path="biblio/biblio-md.data" + file hash="e6dffa6a9252a562fc36e824b55e8e1a" path="biblio/biblio-me.data" + file hash="9c83dbcb7fa2fc527ab7f5efa9b9d0ae" path="biblio/biblio-mf.data" + file hash="2a2ac137ce00e82d4cac8552ef3f9809" path="biblio/biblio-mi.data" + file hash="d6c7972b8f77d9937389d54fe3106fcc" path="biblio/biblio-ml.data" + file hash="aff6cc20c1a88c1121c7c7f77ffd858f" path="biblio/biblio-mm.data" + file hash="52f75cae69818d0db536c3e9bc267bce" path="biblio/biblio-mn.data" + file hash="44c4dc4daeb66cbb6cdfb43aae019e82" path="biblio/biblio-mo.data" + file hash="3cecd89fc9c5b3e69df4735042fdbb39" path="biblio/biblio-mp.data" + file hash="1b0407f98b9965558ca399bf26e52dae" path="biblio/biblio-mq.data" + file hash="354cc2a1920b3c2a8e1b2a404d3625c6" path="biblio/biblio-mr.data" + file hash="0bf56a1dff1604e67fe31c67776bda6b" path="biblio/biblio-ms.data" + file hash="058031b5aa5ab8ff496ef5072e90c8d3" path="biblio/biblio-mu.data" + file hash="1237530042a3ef6beb2c281df517ff1d" path="biblio/biblio-mw.data" + file hash="6e0b427857bf8a110da76286c4074f07" path="biblio/biblio-n-.data" + file hash="6ad721ba76cb486fbfede0dc32e08fc5" path="biblio/biblio-n1.data" + file hash="1d652ce4556e20525e51b040dface0fe" path="biblio/biblio-n2.data" + file hash="d985dc0ae47e7e1f2c4f053ee0644e23" path="biblio/biblio-n3.data" + file hash="b3beae64e4e29beb70ce97baa3295b02" path="biblio/biblio-n4.data" + file hash="4e5c5be69712728e268a68fe4617b612" path="biblio/biblio-na.data" + file hash="4377e5a36ede32e26581adf5924d5db1" path="biblio/biblio-ne.data" + file hash="8e72d1f9c211cdd016caee6c7e590bbb" path="biblio/biblio-nf.data" + file hash="09878e422a6e0d8f4d433f68d6c80fb7" path="biblio/biblio-ng.data" + file hash="85366c885cb31e637bc78af5028fe49e" path="biblio/biblio-nk.data" + file hash="1f04d666359c3674e4a4796dcc07ef55" path="biblio/biblio-nl.data" + file hash="47dd9422afeafae7cb5ec40425ed9923" path="biblio/biblio-no.data" + file hash="1a74b25a7976eaadb058658b0ff810ca" path="biblio/biblio-np.data" + file hash="9395dedf0cb75e7bfa3a8218b4ec173f" path="biblio/biblio-ns.data" + file hash="cd6a0e613129cf35226d409cf95b23fe" path="biblio/biblio-nt.data" + file hash="6c44bd594903409625998077a8dde7ae" path="biblio/biblio-nv.data" + file hash="196a47a3bfe2c10aa2718e45954e9734" path="biblio/biblio-oa.data" + file hash="e381be622d262c2808f0f7aef09573fa" path="biblio/biblio-oc.data" + file hash="93b2dd6f5e53cc02fddcbae59ed5c42d" path="biblio/biblio-od.data" + file hash="34c3d8878b21d906ce6fb52b10550ec9" path="biblio/biblio-oe.data" + file hash="4cf3a5516ff3f671244fc18396594f8b" path="biblio/biblio-of.data" + file hash="3fae085d839107197b465d9de82b2bfd" path="biblio/biblio-og.data" + file hash="6a5ac6b966d6f013be4c7bf17152f591" path="biblio/biblio-oi.data" + file hash="3d441fa5104e3ed8fbd80d301cb03809" path="biblio/biblio-om.data" + file hash="b9ca941c58ce6ca93333c7a82abc6edc" path="biblio/biblio-op.data" + file hash="c30042dcfbc32783421f39b2d85888dc" path="biblio/biblio-or.data" + file hash="4c8fac9a21380c7fd113c4392dea234b" path="biblio/biblio-os.data" + file hash="db0d59b4872842cdedfee5a11f41fab0" path="biblio/biblio-ov.data" + file hash="6f53a8d66f346020dce46e88d5a7503e" path="biblio/biblio-ow.data" + file hash="e4a70fdb6f0db60eeb921664c764a93d" path="biblio/biblio-p0.data" + file hash="4e9b47f4108a23da41d881e9138f3f0b" path="biblio/biblio-p1.data" + file hash="0bfba074b63d5c5681e60d6c0eb98347" path="biblio/biblio-p2.data" + file hash="b11677cdd60cd2f095245a698eb0f499" path="biblio/biblio-p3.data" + file hash="0d4f33842d824c0f23af84e7bbcce702" path="biblio/biblio-p4.data" + file hash="05f5a9c715bb346bb8c5feb4460c25d5" path="biblio/biblio-pa.data" + file hash="2c9251235571130b5cc9bcdb5864ee80" path="biblio/biblio-pc.data" + file hash="4bd2a20da23aace3ec0d8ee342793b71" path="biblio/biblio-pd.data" + file hash="ff1dcface2899f86fbcf9f0d12c82315" path="biblio/biblio-pe.data" + file hash="27d7a39e4191432292628c1c305c1a4f" path="biblio/biblio-pf.data" + file hash="987fca38b2655118e573c0312c5f82e7" path="biblio/biblio-pg.data" + file hash="f9ee0944ff6d738c893dd7febaf2cc76" path="biblio/biblio-ph.data" + file hash="3ebe9b32d2493febf2c8d84c16a1a52c" path="biblio/biblio-pi.data" + file hash="caa705349358b49584b3dfdcecc9445a" path="biblio/biblio-pk.data" + file hash="a6700203cd7ce991d12b3b462947b545" path="biblio/biblio-pl.data" + file hash="ad4a5ecccac43f8bae951f7184927da1" path="biblio/biblio-pn.data" + file hash="30d06fce7aff2a73a19e98526e54d4fd" path="biblio/biblio-po.data" + file hash="5034e86b7249456ef8bd7538e171a0b6" path="biblio/biblio-pp.data" + file hash="363dac788f1921a96fe0236a72f0668d" path="biblio/biblio-pr.data" + file hash="e66e2312ec837c237fefb66b3351c533" path="biblio/biblio-ps.data" + file hash="471bb859669eac981c80a008e1b2fbab" path="biblio/biblio-pt.data" + file hash="23a693037961863fe394f0089ffe0673" path="biblio/biblio-pu.data" + file hash="7cb88bd853f4f6e22d422e41011b1f1b" path="biblio/biblio-pw.data" + file hash="b027b82c432d9137b1f80df8ae45edde" path="biblio/biblio-qa.data" + file hash="36a1bdc40199c96897eadc6eb6109848" path="biblio/biblio-qb.data" + file hash="d91e518cc4033c2d9f593ec75fa1eb6f" path="biblio/biblio-qn.data" + file hash="c20d1ab9598220b4903ace7cc5733514" path="biblio/biblio-qu.data" + file hash="30a03064c1f5712531f41a22142424da" path="biblio/biblio-r2.data" + file hash="6998fd512685eec0a60862ab33ddbdbd" path="biblio/biblio-ra.data" + file hash="03f15630d449e8b6c446403acf485f24" path="biblio/biblio-rc.data" + file hash="7b7f7ec98e037f22b397e3ab6d703514" path="biblio/biblio-rd.data" + file hash="38342b329a0796214dbcfc85e6c6fce8" path="biblio/biblio-re.data" + file hash="84038a0c9959a651086d27dba19c18a7" path="biblio/biblio-rf.data" + file hash="b2657ff1366305775ce087e72ecbd0da" path="biblio/biblio-ri.data" + file hash="0a3ef25b330b2ab686402892513181b5" path="biblio/biblio-ro.data" + file hash="719b81356e25acdea181af7d2d655492" path="biblio/biblio-rt.data" + file hash="bf1a912a2db6e7b13d868cc592daf7e4" path="biblio/biblio-ru.data" + file hash="c5460cccf3a26493a2c3ee17350e635f" path="biblio/biblio-s6.data" + file hash="98f0d597c0a2b528451693c6ae111479" path="biblio/biblio-sa.data" + file hash="b7d9678b4c8f3706780d622e391506e1" path="biblio/biblio-sc.data" + file hash="1f3864d68744e9d13ec87f836b383a9f" path="biblio/biblio-sd.data" + file hash="4e1074d61c03d90e495c74e309b5db34" path="biblio/biblio-se.data" + file hash="eb0e404cc2fc5513f125e557d6615b0b" path="biblio/biblio-sf.data" + file hash="5f92d135969135371505a2bb427aeb75" path="biblio/biblio-sg.data" + file hash="322ce17b0751abe8ee0ed3f109237f88" path="biblio/biblio-sh.data" + file hash="bb6fbea873ff8a4635ae2d05a8b0312b" path="biblio/biblio-si.data" + file hash="60cab4bf078940635e25438aba2256e0" path="biblio/biblio-sk.data" + file hash="78e931469994584cc997fa0959ab378c" path="biblio/biblio-sm.data" + file hash="b1e4adcccf9209258dc418ac02e950d8" path="biblio/biblio-sn.data" + file hash="5440b0d462e40592c697c0ab17779694" path="biblio/biblio-so.data" + file hash="6d6e0a7653d3e9386ec216397a549959" path="biblio/biblio-sp.data" + file hash="cc1bff610867b37b50ee5a9e008f737a" path="biblio/biblio-sr.data" + file hash="cb09e9114487c5774ed7f17a1c1c1010" path="biblio/biblio-ss.data" + file hash="dac698520be20db59106b67c4c16a495" path="biblio/biblio-st.data" + file hash="1beefaecbfe055a71d70254f270d8689" path="biblio/biblio-su.data" + file hash="b975a871012130ed7ee2a8d604930cd0" path="biblio/biblio-sv.data" + file hash="db0de3091dd58fc93a36db53f657ad9c" path="biblio/biblio-sw.data" + file hash="d75fe48bde9945f32b51445cc60ce1f6" path="biblio/biblio-sx.data" + file hash="f6fa0fb32d9d46e2a73a449c5336b8cb" path="biblio/biblio-sy.data" + file hash="eb63f48e5cdfed2874d21c14b2faff5b" path="biblio/biblio-ta.data" + file hash="1ba168c46faf749cf7def94061c4f5ea" path="biblio/biblio-tc.data" + file hash="806a0149b82d3c1e01c3cfbf888aa133" path="biblio/biblio-te.data" + file hash="a81ec6d852b85df5367b6b299996e53e" path="biblio/biblio-th.data" + file hash="e647fbb949defdf8c8fafe07b286022c" path="biblio/biblio-ti.data" + file hash="ee4aaccccd41fcd4464ce99cf4e00dfa" path="biblio/biblio-tl.data" + file hash="7284bae4d1a667384f39645185d9157f" path="biblio/biblio-to.data" + file hash="dfe3aaf175a65ac3fa4dfb545fa51ecf" path="biblio/biblio-tp.data" + file hash="8666d39d86c183e114a68c5254d700c6" path="biblio/biblio-tr.data" + file hash="c345133adb29660c0cc61739eb45b87a" path="biblio/biblio-ts.data" + file hash="518a96cb4e4a40a358581d975c724146" path="biblio/biblio-tt.data" + file hash="f1ef36766147f05d92e90fcac866a992" path="biblio/biblio-tu.data" + file hash="379d8db97b177f4c0625e95c70d2619e" path="biblio/biblio-tv.data" + file hash="c16f710e020b1d3c2c44f66cbd2396b7" path="biblio/biblio-ty.data" + file hash="5d2985d1757def98244f14083a1dc44c" path="biblio/biblio-tz.data" + file hash="634da8aa053231bb7b8b4f103f5e04b9" path="biblio/biblio-ua.data" + file hash="51496f7a97c11f9a38bd99639577b5b3" path="biblio/biblio-uc.data" + file hash="915804d90b0bec7e1bbde765d7d99bf2" path="biblio/biblio-uf.data" + file hash="c2035bf8d86a45a512ff8cd2d51ae437" path="biblio/biblio-ui.data" + file hash="0376972e8bc0911400175c6213a49dd3" path="biblio/biblio-um.data" + file hash="6242498967ca188b30adc10dbeedae13" path="biblio/biblio-un.data" + file hash="04b6f5ebbbff115318de7d03e994d72c" path="biblio/biblio-up.data" + file hash="b249a0578088ec9afad93f280ab6b115" path="biblio/biblio-ur.data" + file hash="4fb4999e743521dd704fe77aa617d0dd" path="biblio/biblio-us.data" + file hash="f4a678cc13cbc9bb07fe7dbf56fd1172" path="biblio/biblio-ut.data" + file hash="d750dedbfabc71fbd9696c83d2816097" path="biblio/biblio-uw.data" + file hash="b0541a332d938c743c074cbc4e3237e2" path="biblio/biblio-va.data" + file hash="60e67db9854cb5a5e4276d5e80542886" path="biblio/biblio-vb.data" + file hash="1550ae51c349aabc15602cadab80fdeb" path="biblio/biblio-vc.data" + file hash="b4f0e8cdfdd11a58025c578462791825" path="biblio/biblio-ve.data" + file hash="5f39346c84f9aee1972732335b7394af" path="biblio/biblio-vi.data" + file hash="7ade44ebc4f12c9cea1e4251ca97b2cb" path="biblio/biblio-vm.data" + file hash="87f8f908a656f06038fe5dabcf64db88" path="biblio/biblio-vo.data" + file hash="f8ccb261e293693ef9bf4551c6bb3e43" path="biblio/biblio-vs.data" + file hash="0c400ddcaa784f2b5dac926eea66dc73" path="biblio/biblio-vt.data" + file hash="38b1d418d094309f5b77535be74f758c" path="biblio/biblio-vx.data" + file hash="f4157ba9358042d3e8b2b73ac57fc0a4" path="biblio/biblio-w3.data" + file hash="c91b689194b1ce04e9072e3bc4bc5393" path="biblio/biblio-wa.data" + file hash="ef1443d758854b90a4bd163231e780d7" path="biblio/biblio-wb.data" + file hash="d6e4dc1ec20094d40b839ce039728328" path="biblio/biblio-wc.data" + file hash="85b2eea25ee4fb2b66d78d2c0ae5b012" path="biblio/biblio-wd.data" + file hash="68593e6cf0b8d8e96e1eaac9623ecd73" path="biblio/biblio-we.data" + file hash="1a5f7db0d1070f153c617556831961fd" path="biblio/biblio-wf.data" + file hash="e5a29ab75b04a7f167b48c1ef2cb4e65" path="biblio/biblio-wg.data" + file hash="bdd6810c24277b3c53abf4d4e0987ece" path="biblio/biblio-wh.data" + file hash="830617d3a094686c725bde36d11a1744" path="biblio/biblio-wi.data" + file hash="d8e9aea16cf599d8635908cb4891c835" path="biblio/biblio-wm.data" + file hash="bc95a2ec8f32c499b560df703a708c47" path="biblio/biblio-wo.data" + file hash="17d365496c0c0149a2afdb82a2541bfc" path="biblio/biblio-wp.data" + file hash="dfc992ef4ece1af058d953e6251948ff" path="biblio/biblio-ws.data" + file hash="7cd68c5f2bea77112b7383b6f4d330f8" path="biblio/biblio-ww.data" + file hash="ea739f8c3ee8054e3992dd5921fb4b72" path="biblio/biblio-x1.data" + file hash="4b800f9b07561c6520055bdc8ce1e02b" path="biblio/biblio-x5.data" + file hash="c39a6f0a4caf21ca184679fa6747edbd" path="biblio/biblio-x6.data" + file hash="a4e75f323d5e34ae24be6c0e8fe66df4" path="biblio/biblio-xa.data" + file hash="1044ac0859b8e667a110bee1a8c3554a" path="biblio/biblio-xb.data" + file hash="5a8ad365f11de1a8b6a29b93a87d3110" path="biblio/biblio-xd.data" + file hash="a957efa2e5099ff95b96c431fd9ad2bb" path="biblio/biblio-xe.data" + file hash="5afb9d77dc0a5d1928e0d4551858bc97" path="biblio/biblio-xf.data" + file hash="57b34dafaf137e6f50871d5d14339217" path="biblio/biblio-xh.data" + file hash="62990a6f6b155af25cf83f3e6efb4db2" path="biblio/biblio-xi.data" + file hash="3efc10665f9370188f7f350791df9186" path="biblio/biblio-xk.data" + file hash="a7726f1b89e88bba26420ac790fbc46d" path="biblio/biblio-xl.data" + file hash="9bb64c8a7e2ef96d1ba6abd398f0fdb2" path="biblio/biblio-xm.data" + file hash="29fe5baa9c0795cded7be2d7180e2bb0" path="biblio/biblio-xo.data" + file hash="983a311e9c693a1de938dd84d2d15179" path="biblio/biblio-xp.data" + file hash="a9738d3165c6f71f5ca33df3730a7d6a" path="biblio/biblio-xq.data" + file hash="e92decd0ffe82200045c2992dbba46f1" path="biblio/biblio-xs.data" + file hash="1e49f065b5d881f5b57c033c1e394939" path="biblio/biblio-xt.data" + file hash="9fe2a781a9e22d20a12664f01dbacabf" path="biblio/biblio-xu.data" + file hash="74bde8c504dcbe7f81b95e21385357d5" path="biblio/biblio-ya.data" + file hash="455ed85ae301fa94171aa94e3608aa64" path="biblio/biblio-ze.data" + file hash="f6c6765f2d2f08164e78bf8904585f93" path="biblio/biblio-zh.data" + file hash="364945418b0849a31fec2eb69c6ad3cf" path="biblio/biblio-zi.data" + file hash="a86bc93530a668fb1db361b2648c25d1" path="boilerplate/ab/footer.include" + file hash="40e890eb6b6888e93df317ac312d83ee" path="boilerplate/ab/status.include" + file hash="36bd888ea0d70381a0d8819f64556e00" path="boilerplate/abstract.include" + file hash="d76520a3d091d5fe9bdfb3cf2ebdfc7f" path="boilerplate/act-rules-format/copyright.include" + file hash="2361bcf802f840d5da178fe1b239484d" path="boilerplate/act-rules-format/status.include" + file hash="5d42fe6f0a620673b80ccdff24842358" path="boilerplate/aom/copyright.include" + file hash="9b87e46d166aa6442f039e08b1f50ad4" path="boilerplate/aom/defaults-FD.include" + file hash="42284ee6acfa29db163d51e6ed6868dd" path="boilerplate/aom/defaults-PD.include" + file hash="9af7385e35d4f089d11909f34833eb65" path="boilerplate/aom/defaults-WGA.include" + file hash="7578cd2e9a541ac5ee03af2363dd66ac" path="boilerplate/aom/defaults-WGD.include" + file hash="f12e06c3653b76ac8cc10665e8b19a1e" path="boilerplate/aom/header-FD.include" + file hash="539b77187a1a49c99fe4289d17e1b817" path="boilerplate/aom/logo.include" + file hash="9590603a4c7bdacd817ea1f98f5bff56" path="boilerplate/audiowg/defaults.include" + file hash="849828414754a06079537afc1c6c9735" path="boilerplate/audiowg/status-CR.include" + file hash="79e3029a1bd8affd554e7e483109c697" path="boilerplate/audiowg/status-ED.include" + file hash="d9f12d9176cbf5297578d54d69777f80" path="boilerplate/audiowg/status-FPWD.include" + file hash="4d76b6099c11763a174cec974b45b3d6" path="boilerplate/audiowg/status-WD.include" + file hash="b6c60779b860131901fe36793694edc8" path="boilerplate/browser-testing-tools/status-ED.include" + file hash="c95a54b56cb2acc0c19f993c41e96d6d" path="boilerplate/browser-testing-tools/status-WD.include" + file hash="2d047e9fbf42b426e281e368cce03989" path="boilerplate/bs-extensions.include" + file hash="d41d8cd98f00b204e9800998ecf8427e" path="boilerplate/byos/abstract.include" + file hash="82b912bb989f75452a28c41a486a2d07" path="boilerplate/byos/defaults.include" + file hash="5b76b0eef9af8a2300673e0553f609f9" path="boilerplate/computed-metadata.include" + file hash="672044a7629c3b67f95bc9ef7efa7daf" path="boilerplate/copyright.include" + file hash="9a8c53a5f72b89bf8de4519f0f41cb46" path="boilerplate/csswg/abstract.include" + file hash="3feead45e1c1e892a14173747c597ef8" path="boilerplate/csswg/computed-metadata.include" + file hash="635c8a783e1b1b4831f92078c1d98a82" path="boilerplate/csswg/copyright-DREAM.include" + file hash="3fcf1f7845c6a23ca945198f4efe124d" path="boilerplate/csswg/defaults-ED.include" + file hash="9845a6e4ec2393016fa82371d72f0cb7" path="boilerplate/csswg/defaults.include" + file hash="e7814d7848739e9fdd1c9b8e8879a037" path="boilerplate/csswg/footer.include" + file hash="946cc7044c181228df4c574b7ed84f54" path="boilerplate/csswg/status.include" + file hash="f578914f4fffa76a5855f8d314e88dd8" path="boilerplate/csswg/warning-not-ready.include" + file hash="62f805f404f38b140865043f155cc5c4" path="boilerplate/csswg/warning-obsolete.include" + file hash="4130ab38cd204954cda4e09ec65e6ec4" path="boilerplate/dap/defaults.include" + file hash="460cb6cd2a4f270af6c081b3bd95bfb8" path="boilerplate/dap/status-CR.include" + file hash="829d820763d4ad2c85e9b032b30b3341" path="boilerplate/dap/status-CRD.include" + file hash="a5a5dac2318da233c49ee90938186988" path="boilerplate/dap/status-ED.include" + file hash="088e89559e6335e77a6a30faf6b05cc4" path="boilerplate/dap/status-FPWD.include" + file hash="f8b5694d5ee457b025d137b7e3f79900" path="boilerplate/dap/status-NOTE.include" + file hash="d28ffb190235290c7a33c6ee51ab495b" path="boilerplate/dap/status-WD.include" + file hash="8a80554c91d9fca8acb82f023de02f11" path="boilerplate/defaults.include" + file hash="446d9665e0d4cd027efcae66115a364f" path="boilerplate/doctypes.kdl" + file hash="216e79998d789a4db5f95b3bc4030ad8" path="boilerplate/fedid/status-ED.include" + file hash="c9d609b57b3841e6f0fa29250a470d14" path="boilerplate/fedid/status-FPWD.include" + file hash="6f791f0e9e7c143f23a49cd400ad9b46" path="boilerplate/fedidcg/copyright.include" + file hash="d15b6e87763b113bcc41809bb278a838" path="boilerplate/fedidcg/defaults.include" + file hash="e6e98a95e55d973dbbc5103bc2dcec33" path="boilerplate/fedidcg/header.include" + file hash="77e6ecb79249827dad92bd286995d7f1" path="boilerplate/fedidcg/status.include" + file hash="7c9882ee1f0773f17801e0d5f8d6a57a" path="boilerplate/footer.include" + file hash="af4f9866231fd3528673f5ce4c9d6893" path="boilerplate/fxtf/bs-extensions.include" + file hash="2e312d3ca9620217c0c8e16b85207603" path="boilerplate/fxtf/defaults-ED.include" + file hash="d5fe9d97579619421b836dc72b79f588" path="boilerplate/fxtf/defaults.include" + file hash="56dbd0b32792252334419ac600a19ff3" path="boilerplate/fxtf/footer-CR.include" + file hash="c0ee031da24a5626e6896cfb473568ee" path="boilerplate/fxtf/footer.include" + file hash="8ce301ca675f86e47ff7d30db479e945" path="boilerplate/fxtf/status-CR.include" + file hash="7fbf8b9f322cc005e3e5cda2cb44e8b2" path="boilerplate/fxtf/status-ED.include" + file hash="ebbfa8fbbe92743bac604a33f0f923b6" path="boilerplate/fxtf/status-FPWD.include" + file hash="d9d586cab9f27645bc195263ae23e83f" path="boilerplate/fxtf/status-LCWD.include" + file hash="7dac5b82b4c61b79771cceb121661e1b" path="boilerplate/fxtf/status-WD.include" + file hash="7fb12064780097a9df0a69b3c2e129d1" path="boilerplate/geolocation/defaults.include" + file hash="5bed7ea3f23998869c18d6d44b159221" path="boilerplate/geolocation/status-ED.include" + file hash="e4d0b7297f72ebbd7ee735fbd2a92cda" path="boilerplate/gpuwg/defaults.include" + file hash="13b79a9c3b3e59ca9f313e8a10a6a860" path="boilerplate/gpuwg/status.include" + file hash="d8d0ca96965e06069f5745214f9b3f46" path="boilerplate/header.include" + file hash="af4f9866231fd3528673f5ce4c9d6893" path="boilerplate/houdini/bs-extensions.include" + file hash="25d671cc840baa43a0be681499ef1ca4" path="boilerplate/houdini/defaults.include" + file hash="c1f1554a6db784cb3e6c8bc355f28ee0" path="boilerplate/houdini/footer-NOTE.include" + file hash="c0ee031da24a5626e6896cfb473568ee" path="boilerplate/houdini/footer.include" + file hash="17c76816e5ca75b8d9460978db2f8ca0" path="boilerplate/houdini/status.include" + file hash="1b3c6c0562cd036da70203cae169bf7c" path="boilerplate/html/status-CR.include" + file hash="5b27e67c6763ca3d2ac5186a42e05a87" path="boilerplate/html/status-ED.include" + file hash="cd56d7a5591f75bd3df214e9621bf65e" path="boilerplate/html/status-LCWD.include" + file hash="f84c8f7eb3935cf2f01b37c24958ac1b" path="boilerplate/html/status-PR.include" + file hash="840443ecb526567d9607d4068e6fe350" path="boilerplate/html/status-WD.include" + file hash="26724904ae1cef39127d9b58b8be3a1e" path="boilerplate/htmlwg/copyright.include" + file hash="6a9e4f023044d66e72db0d07e990f4b1" path="boilerplate/htmlwg/status.include" + file hash="879aa8ebfc8639dddef05ff44e234161" path="boilerplate/httpslocal/copyright.include" + file hash="9295c6eaa8f0b0b7bf1e36cf835a89d7" path="boilerplate/httpslocal/status-CG-DRAFT.include" + file hash="50659a9c4da5f329c3eb0c9f86448df6" path="boilerplate/httpslocal/status-CG-FINAL.include" + file hash="5b76b0eef9af8a2300673e0553f609f9" path="boilerplate/i18n/defaults.include" + file hash="365de94db8a01a373d9ff492f2344cfc" path="boilerplate/i18n/status-CR.include" + file hash="2748710df65f885722fdc214e16d2b12" path="boilerplate/i18n/status-ED.include" + file hash="f631203377890dfd26715dab6546ef6c" path="boilerplate/i18n/status-FPWD.include" + file hash="296fb77273c28c3fb87c651b6cf36488" path="boilerplate/i18n/status-WD.include" + file hash="88538ca11fec7184654be63801eb7014" path="boilerplate/i18n/warning-not-ready.include" + file hash="9f3b170e0e25bd5733d7a885127334a0" path="boilerplate/i18n/warning-obsolete.include" + file hash="b038c35d873a518d8d53f8024b2edfa8" path="boilerplate/immersivewebwg/defaults.include" + file hash="0605c10043929b80c1a6a8f42deaeb7f" path="boilerplate/immersivewebwg/status-CR.include" + file hash="77dddb2284f29d3a5e5f9d6ef36f59e4" path="boilerplate/immersivewebwg/status-CRD.include" + file hash="7db0749c7d480e94fd53e19e78445f00" path="boilerplate/immersivewebwg/status-ED.include" + file hash="202d0054540f5d444d239c3c469e8562" path="boilerplate/immersivewebwg/status-FPWD.include" + file hash="3f1bd8402e9d88c40512c37631c4bafd" path="boilerplate/immersivewebwg/status-WD.include" + file hash="d41d8cd98f00b204e9800998ecf8427e" path="boilerplate/logo.include" + file hash="91bc173f1020f2ae558a92c0397a4791" path="boilerplate/mediacapture/defaults.include" + file hash="2299939ba357d39c7016bcb5ee8cc9d7" path="boilerplate/mediacapture/status-CR.include" + file hash="2e6bc142448776831a11f7a67f95b28d" path="boilerplate/mediacapture/status-ED.include" + file hash="f3da07d164fd7bfc20425d2778b96d9f" path="boilerplate/mediacapture/status-FPWD.include" + file hash="aa10a1580e5993746c96f5e91a8cd337" path="boilerplate/mediacapture/status-WD.include" + file hash="4b0839e35c1bbd636a170b44adbeff11" path="boilerplate/mediawg/defaults.include" + file hash="e2b33ef8c56a0ef5188cbdf0f9e2ffd2" path="boilerplate/mediawg/status.include" + file hash="38053bf6412fa2284da36febaf1b7eed" path="boilerplate/patcg-id/copyright.include" + file hash="9f3b0455ff60beea0a59c94f7f51463b" path="boilerplate/patcg-id/status.include" + file hash="34863bf2c266566961b90f6ca6b927c3" path="boilerplate/ping/defaults.include" + file hash="9515919aff4672b96597543cebcc9198" path="boilerplate/ping/status-ED.include" + file hash="60032c3755741a33d8d546b2eee2359b" path="boilerplate/privacycg/copyright.include" + file hash="c09bef94c727ad1ec50e56302a76af87" path="boilerplate/privacycg/header.include" + file hash="2b6d83375b464a776ef9b979806d816a" path="boilerplate/privacycg/status.include" + file hash="2e92d56f619ce490764eced711595ad8" path="boilerplate/processcg/status.include" + file hash="c39677a5a731231e379db14f4e902c1b" path="boilerplate/ricg/logo.include" + file hash="3de6db89f86162a73c1e1f01f1456bc4" path="boilerplate/ricg/status-WD.include" + file hash="a4edad77b7fdb1d343bf9f976e0e36a6" path="boilerplate/ricg/status.include" + file hash="15f52b44d1b2356346113ae55fd5af3f" path="boilerplate/sacg/copyright.include" + file hash="469b7b8ea371b6e5063c3da190a172e3" path="boilerplate/sacg/status.include" + file hash="c0b68e5bbdaa6c9e37204ea6ccdcdae6" path="boilerplate/secondscreencg/copyright.include" + file hash="f57b61d9d30f7db198309ee32faf999b" path="boilerplate/secondscreencg/logo.include" + file hash="062acc522ebe4a77c95ccf40edd91369" path="boilerplate/secondscreencg/status.include" + file hash="da25e383e6bdfd4c3440aa2925123e95" path="boilerplate/secondscreenwg/defaults.include" + file hash="8b7be8e2f8957cac739835394c826089" path="boilerplate/secondscreenwg/status-ED.include" + file hash="02e886605168ff9cb382cf9c41777cd4" path="boilerplate/secondscreenwg/status-FPWD.include" + file hash="a94bd18d4bcda787c51eaa3568111afd" path="boilerplate/secondscreenwg/status-WD.include" + file hash="690bb5ef12494c51a156c240cb892b09" path="boilerplate/serviceworkers/defaults.include" + file hash="9d856b1a09d9e088619809337bd04f92" path="boilerplate/serviceworkers/status-CR.include" + file hash="7a955bc4975ee54aae945ba88aa2183d" path="boilerplate/serviceworkers/status-ED.include" + file hash="01dd17d170e57c7c293a6d8b20d9c989" path="boilerplate/serviceworkers/status-WD.include" + file hash="90ec2a319bf996d0d229b5c641039e35" path="boilerplate/solidcg/copyright-CG-DRAFT.include" + file hash="ac3c2a2d14a1368e59b5f7263acb9577" path="boilerplate/solidcg/copyright-CG-FINAL.include" + file hash="98a84ca83c404e3b99c05242c23d594e" path="boilerplate/solidcg/status-CG-DRAFT.include" + file hash="8d8f17cce92d8cc20dcee4467bac0a43" path="boilerplate/solidcg/status-CG-FINAL.include" + file hash="32b949e384381367218a83668da6be99" path="boilerplate/status.include" + file hash="a830086bc92807a8ce6664e08f5e447d" path="boilerplate/stylesheet.include" + file hash="c21ff85d3454a4327ad5f81b70aa20d8" path="boilerplate/svg/defaults.include" + file hash="dd593ff16f27ca11ccbea1211c33e874" path="boilerplate/svg/status-ED.include" + file hash="804bfa6ab8b16697836c45b183f3c46d" path="boilerplate/svg/status-WD.include" + file hash="c8effb1f410a8bff23b0925f6d5a88d5" path="boilerplate/tag/header-WG-NOTE.include" + file hash="001241f1fd5e621505b1b4fa3117395e" path="boilerplate/tag/status-DRAFT-FINDING.include" + file hash="b976a13382c11f3a23563fc7686f568d" path="boilerplate/tag/status-ED.include" + file hash="2f076c1f51bbfc2368b250f49174234b" path="boilerplate/tag/status-FINDING.include" + file hash="e4f3eaf855bb35dfe2f149b0deeda905" path="boilerplate/tag/status-NOTE.include" + file hash="555dc20cec2ad891239ca8f8d110ae80" path="boilerplate/tag/status-UD.include" + file hash="6adec8e38e8276ee20e7802bf62c6e87" path="boilerplate/tag/status-WG-NOTE.include" + file hash="555dc20cec2ad891239ca8f8d110ae80" path="boilerplate/tag/status.include" + file hash="3c89abe73bb40b1937da6825643a04d0" path="boilerplate/tc39/defaults.include" + file hash="bbf199b0531ce6df48fc201c324a4cde" path="boilerplate/tc39/footer.include" + file hash="9fdf0f00a3b682b2ce89160aa1faed0d" path="boilerplate/tc39/header.include" + file hash="882c892b7beaceb0c89d99000beb3660" path="boilerplate/test/copyright.include" + file hash="c99bbb101b5abf92d9f8b965066bb1fe" path="boilerplate/test/defaults-DREAM.include" + file hash="32a87db390924457890bf54bbb03c7a7" path="boilerplate/test/defaults.include" + file hash="d41d8cd98f00b204e9800998ecf8427e" path="boilerplate/test/footer-DREAM.include" + file hash="14fa58555d83a2f21705485e0359986c" path="boilerplate/test/footer.include" + file hash="bf4df4a9dea7035aea6c313f8ef86462" path="boilerplate/test/header-DREAM.include" + file hash="cfd918ac4b80c218433057772e18fc2d" path="boilerplate/test/header.include" + file hash="d41d8cd98f00b204e9800998ecf8427e" path="boilerplate/test/logo.include" + file hash="bce0a728053ce560f8a0e41f9c69ba9f" path="boilerplate/texttracks/copyright-CG-DRAFT.include" + file hash="4392815aedee3265613976f6beecb4c8" path="boilerplate/texttracks/defaults-CG-DRAFT.include" + file hash="bffd9ee65e8e73f52144ba6846f44f69" path="boilerplate/texttracks/header-CG-DRAFT.include" + file hash="4b78776bb72390a5a8f589f18546e94c" path="boilerplate/texttracks/header.include" + file hash="ad04e0dfeaa074aadf1032f8170ad4db" path="boilerplate/texttracks/status-CG-DRAFT.include" + file hash="65e2167f6df9a810215152cf13ae9664" path="boilerplate/texttracks/status-WD.include" + file hash="753747e1ef8e31a174c260028ac146e6" path="boilerplate/uievents/status-WD.include" + file hash="e310e191177e51fe1f39006802c4e4de" path="boilerplate/w3c/copyright.include" + file hash="faa017e58f53faaf91c0e2200514986c" path="boilerplate/w3c/defaults.include" + file hash="c1f1554a6db784cb3e6c8bc355f28ee0" path="boilerplate/w3c/footer-NOTE.include" + file hash="25dcc748af12481f18a8e2bbebfbbca5" path="boilerplate/w3c/footer.include" + file hash="ba67a92d71a7541c593ce08a4aed9488" path="boilerplate/w3c/header.include" + file hash="5c94aa7852545130b50b0c8f74ab5b08" path="boilerplate/w3c/logo.include" + file hash="45319aed0978981f81858381d50e03e7" path="boilerplate/w3t/header.include" + file hash="308e15bc4b5046a85550aff4579bfccf" path="boilerplate/warning-branch.include" + file hash="8dd1239e6175bb635b6f64a231d66bee" path="boilerplate/warning-commit.include" + file hash="f1c9e479c469eae700846968419f0124" path="boilerplate/warning-custom.include" + file hash="aa6e1dfd438c5d0a33c21ee7d6b0403e" path="boilerplate/warning-expired.include" + file hash="1befefd7bf196c62a30fefc978eca7cc" path="boilerplate/warning-expires.include" + file hash="0cba8d93f154a1a5a8ba842dccd66531" path="boilerplate/warning-new-version.include" + file hash="5e7be1aafc1c59d61527a0221bb85c14" path="boilerplate/warning-not-ready.include" + file hash="5a9b5bdfd5db498ed8e5513d8138c5d9" path="boilerplate/warning-obsolete.include" + file hash="e695cdf0222c93dc2d9bedf402dade45" path="boilerplate/warning-replaced-by.include" + file hash="edbeccd56627e7bd74d26030ad0153ad" path="boilerplate/wasm/abstract.include" + file hash="7cc36ce5dded7f5d27780b5e7ef877d2" path="boilerplate/wasm/defaults.include" + file hash="e38f84a254a40f2965b6b009985d838d" path="boilerplate/wasm/status-CR.include" + file hash="91143ba8abcf80884681ab36730216e2" path="boilerplate/wasm/status-CRD.include" + file hash="12b94e1348902264420107f34ad822af" path="boilerplate/wasm/status-ED.include" + file hash="55b45b2b922a6a0585f6cd98d5e43641" path="boilerplate/wasm/status-FPWD.include" + file hash="9135bb6a8f1d19d1dc8e15918534a970" path="boilerplate/wasm/status-WD.include" + file hash="29315650731cbe88fd849d6bfba753fd" path="boilerplate/web-bluetooth-cg/copyright.include" + file hash="d15b6e87763b113bcc41809bb278a838" path="boilerplate/web-bluetooth-cg/defaults.include" + file hash="0a309cf38b27d6a563512e78286acc42" path="boilerplate/web-bluetooth-cg/status.include" + file hash="ffb3615e0056b09febdbc3cbf8921e4f" path="boilerplate/web-payments/defaults.include" + file hash="9ba0b7f872e0d31622a5eb4e24575f83" path="boilerplate/web-payments/status-FPWD.include" + file hash="43a38d9977fed7ba270b25463490a996" path="boilerplate/webapps/defaults.include" + file hash="513277d48ef721c11e86b85c66ebff28" path="boilerplate/webapps/status-ED.include" + file hash="c421f9c173ca856d4e9b58816d6c248c" path="boilerplate/webapps/status-WD.include" + file hash="77b72f81ec172220cc2024bba4e50452" path="boilerplate/webappsec/defaults.include" + file hash="76d9c27c3dac0f81def5ee8598384ab6" path="boilerplate/webappsec/status-CR.include" + file hash="3d6ff41b0003aefd2ef29187d749418a" path="boilerplate/webappsec/status-CRD.include" + file hash="19335f1db815721b5ce30d6182e24b1f" path="boilerplate/webappsec/status-ED.include" + file hash="8c2e615bf016c97fe516bc69d25c7c39" path="boilerplate/webappsec/status-FPWD.include" + file hash="721193ebcb4dbc893a5cc86b39829df8" path="boilerplate/webappsec/status-LCWD.include" + file hash="d65f5018df624a4d60a285cf7d791de8" path="boilerplate/webappsec/status-PR.include" + file hash="d6f360ebf03558f93749152a26b8c0db" path="boilerplate/webappsec/status-WD.include" + file hash="f7d85b4b510f0f5e87cc1bfe0ed32ed4" path="boilerplate/webauthn/status-CR.include" + file hash="20b06a4898deb3a34570f30e2396e473" path="boilerplate/webauthn/status-ED.include" + file hash="95dce5ad241521ecc1ece68ed9f56d68" path="boilerplate/webauthn/status-WD.include" + file hash="89918a4a1e42008d2e1bef6dcdc17af6" path="boilerplate/webediting/defaults.include" + file hash="ac4e40dfd7f1e54419a1fc43caf6ae4d" path="boilerplate/webediting/status-ED.include" + file hash="372ec15035ff4f4deff66aaad57f1576" path="boilerplate/webediting/status-WD.include" + file hash="8747e8de2bd698b392b42212609013f5" path="boilerplate/webfontswg/defaults.include" + file hash="862e6318c83f3fc4e3c9de5cbea7bce9" path="boilerplate/webfontswg/header-ED.include" + file hash="998aeb6745ddf612cb89008350583727" path="boilerplate/webfontswg/status-CR.include" + file hash="c7556d83d2eabcbf6e76a3c4b1f8817f" path="boilerplate/webfontswg/status-ED.include" + file hash="fbb8eb0ecf4fe3bd85dc62607a67f495" path="boilerplate/webfontswg/status-FPWD.include" + file hash="51dbb9627859932f7e71d9b3cedf6cac" path="boilerplate/webfontswg/status-WD.include" + file hash="c97c811fc67d065bfb5676b24cfa97d3" path="boilerplate/webgl/copyright.include" + file hash="90c9f32861f87160cc74009ec91ae5ff" path="boilerplate/webgl/defaults.include" + file hash="b8b53a5151245ce48d86301227c5be68" path="boilerplate/webgl/header.include" + file hash="d140aeb0aa46a2776bb129e6c9789ae3" path="boilerplate/webgl/status.include" + file hash="e8eaa10205d37b9b2449ce1cafe818d5" path="boilerplate/webgpu/copyright.include" + file hash="cf65dfdd38643204c90e3001aba7fe09" path="boilerplate/webgpu/status.include" + file hash="5d19d80328032bb997edff93847183d8" path="boilerplate/webml/copyright.include" + file hash="fccc91dfe982c2703ac0f00b5df10fde" path="boilerplate/webml/logo.include" + file hash="c833df04583c4b76614fb820b9afa4bf" path="boilerplate/webml/status.include" + file hash="d5683ccc62860a546123e2e89a0ed866" path="boilerplate/webmlwg/defaults.include" + file hash="f782558b12df12761032b085257071a3" path="boilerplate/webmlwg/status-CR.include" + file hash="daad410049972ee1f3e65d573046ba32" path="boilerplate/webmlwg/status-CRD.include" + file hash="5f9fc69a17c34a8a846d9227527a5ef6" path="boilerplate/webmlwg/status-ED.include" + file hash="3bbbbb83af39feb213e4fb7c5823182e" path="boilerplate/webmlwg/status-FPWD.include" + file hash="9a54730469a01737fb65d98b20d03fc7" path="boilerplate/webmlwg/status-WD.include" + file hash="d15b6e87763b113bcc41809bb278a838" path="boilerplate/webperf/defaults.include" + file hash="cfe3b79b2b96cde0b9fa41b63ad60fb1" path="boilerplate/webperf/status.include" + file hash="e56d650ce9781d79bdd91f64f3ca5e89" path="boilerplate/webrtc/defaults.include" + file hash="3b0ba43c2d32e664368cfc0636f01d79" path="boilerplate/webrtc/status-CR.include" + file hash="a55a6da98363d07b7013cbd45f4200a3" path="boilerplate/webrtc/status-ED.include" + file hash="12de13c98e4e345ddb56b6a8b2e7b6ee" path="boilerplate/webrtc/status-FPWD.include" + file hash="2e71917724480e64fcc976be2c76e9e8" path="boilerplate/webrtc/status-WD.include" + file hash="4c5bbe797464f46f6b2f781597e68e57" path="boilerplate/webspecs/defaults.include" + file hash="5aaf3514b78a7042e0b046baa5cc38fe" path="boilerplate/webspecs/header.include" + file hash="1a0b5c151912412b5f30f751c11a5236" path="boilerplate/webtransport/defaults.include" + file hash="7fe6a2226e6f9807c308322c126d180b" path="boilerplate/webtransport/status-CR.include" + file hash="52060cb99f7eb59b62bf0fd0e6b47dd5" path="boilerplate/webtransport/status-ED.include" + file hash="2da839b078db68c0ac3a874227aeb4f6" path="boilerplate/webtransport/status-FPWD.include" + file hash="a84556e7657ac15aa9d444ffc23ef3a4" path="boilerplate/webtransport/status-WD.include" + file hash="a2554e31577e2dcb246424a2b7d5efa6" path="boilerplate/webvr/copyright.include" + file hash="7d9903c63ce8537f5d4e5edfdb446638" path="boilerplate/webvr/status.include" + file hash="b4e1e6f552fd08f65db485b6be584010" path="boilerplate/wecg/copyright.include" + file hash="d15b6e87763b113bcc41809bb278a838" path="boilerplate/wecg/defaults.include" + file hash="c0ee5cf7142bd135851f8d610ebe63d6" path="boilerplate/wecg/status.include" + file hash="989bb8a7d0a53acff58b3356be19098e" path="boilerplate/wg14/defaults.include" + file hash="bbf199b0531ce6df48fc201c324a4cde" path="boilerplate/wg14/footer.include" + file hash="c602200eb4e00b4dac5c75f2bd349973" path="boilerplate/wg14/header.include" + file hash="ecdcb620a26e962c14a338239c1c1b4b" path="boilerplate/wg21/defaults.include" + file hash="bbf199b0531ce6df48fc201c324a4cde" path="boilerplate/wg21/footer.include" + file hash="ef739702003f859bec6aa681cbc527ae" path="boilerplate/wg21/header.include" + file hash="16680439ecf5fcc848b9642795a655ea" path="boilerplate/whatwg/computed-metadata-LS-COMMIT.include" + file hash="be1942c9d693736dae47af49e891c169" path="boilerplate/whatwg/computed-metadata-LS-PR.include" + file hash="e1653db363926bcc088e493d844a14b6" path="boilerplate/whatwg/computed-metadata-RD.include" + file hash="326f36b0b7c2d45c7fa59f1fef1d5d7a" path="boilerplate/whatwg/computed-metadata.include" + file hash="7744671b3d10572897990699111eafc1" path="boilerplate/whatwg/defaults-RD.include" + file hash="f3432989b46d1494d60271187625e534" path="boilerplate/whatwg/defaults.include" + file hash="91e2c82b59ff0dc7d3b10a72ed5d3b66" path="boilerplate/whatwg/footer-RD.include" + file hash="2fcfb92564e49aadf28892936a581e39" path="boilerplate/whatwg/footer.include" + file hash="42c5e780d22d1b3716ce33e636c6efd9" path="boilerplate/whatwg/header-RD.include" + file hash="1bb13bbfc807ccfa8cf1e69986ef6b4f" path="boilerplate/whatwg/header.include" + file hash="190be64861cd8cbde6cfe1dda6867034" path="boilerplate/whatwg/warning-custom.include" + file hash="e67ce07ba5fe7a8910501114c3df6927" path="boilerplate/whatwg/warning-obsolete.include" + file hash="4bae5fec0494445a43f93adaadab76a5" path="boilerplate/wicg/copyright.include" + file hash="d15b6e87763b113bcc41809bb278a838" path="boilerplate/wicg/defaults.include" + file hash="e6e98a95e55d973dbbc5103bc2dcec33" path="boilerplate/wicg/header.include" + file hash="f193a2dc8c4d09eec8ce7355a25d626e" path="boilerplate/wicg/status.include" + file hash="a9641ddf593bdf8156b0fa3e62a1262a" path="boilerplate/wintercg/copyright.include" + file hash="cc6009c9ce34dbc44afce7bba54575cc" path="boilerplate/wintercg/status.include" + file hash="1a7f838881b9f879d508c11dda189d0b" path="caniuse/data.json" + file hash="0a18420c021502a360ea9273ed678fb2" path="caniuse/feature-aac.json" + file hash="57e30c34d746944f677c76bff9068e2f" path="caniuse/feature-abortcontroller.json" + file hash="07c55354bef8e1f9f2a1bf08c1d7fe3e" path="caniuse/feature-accelerometer.json" + file hash="2fb0f3ea5a488bfa85a4b63ba8ea4753" path="caniuse/feature-addeventlistener.json" + file hash="56f9d0ee35f93ce917a9bdd6822a0847" path="caniuse/feature-ambient-light.json" + file hash="8b21a9965f1cef7bdab66ff451733992" path="caniuse/feature-apng.json" + file hash="e5e58fadc8a0ceecfca894741f792353" path="caniuse/feature-array-find-index.json" + file hash="923007c99298eddbcd9109e6eb31cee1" path="caniuse/feature-array-find.json" + file hash="06229d31ade7ab83fc4bc115e233ffa5" path="caniuse/feature-array-flat.json" + file hash="a3ce4a1a5000216aeb9043ae867e695f" path="caniuse/feature-array-includes.json" + file hash="4b29752eed408efd443a79a23f0d8f24" path="caniuse/feature-arrow-functions.json" + file hash="f62f519ef225c8035e12896c60637bfc" path="caniuse/feature-asmjs.json" + file hash="d6372422326d5d07c134e7f956156c29" path="caniuse/feature-async-clipboard.json" + file hash="ee26b25b61ef89adfc6720a39d864f69" path="caniuse/feature-async-functions.json" + file hash="c33ac9998961eef335fafd4dd50df564" path="caniuse/feature-atob-btoa.json" + file hash="a11b657ff8071b5261f7a90a1373bb44" path="caniuse/feature-audio-api.json" + file hash="01954bf1208e8b83d2ee39b249bb36cf" path="caniuse/feature-audio.json" + file hash="96780bf90c7c3f1fec100683b3a8fd9d" path="caniuse/feature-audiotracks.json" + file hash="80706eb574633b0ae3f91cd2de633ba5" path="caniuse/feature-autofocus.json" + file hash="fd8e612b8ba3accd0e398fecd2af9313" path="caniuse/feature-auxclick.json" + file hash="a1deff2e2370debbddf6819f5e65fabe" path="caniuse/feature-av1.json" + file hash="1a6f1a2bc212ab058e387082d5447508" path="caniuse/feature-avif.json" + file hash="b3da7d22d4219fadc9a9cf54614ce13f" path="caniuse/feature-background-attachment.json" + file hash="8271f2533e8fa17db1cdb243de9b5e0d" path="caniuse/feature-background-clip-text.json" + file hash="e8510f1dc9b39f1e8946170d89bf43c3" path="caniuse/feature-background-img-opts.json" + file hash="c69e27587ff146da63bf15333f37d214" path="caniuse/feature-background-position-x-y.json" + file hash="78fe00e65f2c7d30df4dd413a5d94557" path="caniuse/feature-background-repeat-round-space.json" + file hash="f24c12c64c14a10c1c84edaa95f29b64" path="caniuse/feature-background-sync.json" + file hash="df0ace523188f0b42cba62bf431b21b2" path="caniuse/feature-battery-status.json" + file hash="7275202225266729ffd477a907bb6f4b" path="caniuse/feature-beacon.json" + file hash="d1f54213f8079df5c16f3511ce46df4d" path="caniuse/feature-beforeafterprint.json" + file hash="ed99d2e9dda2391eaee0ded1dc93cf3c" path="caniuse/feature-bigint.json" + file hash="edd3eafc6a4221602fcdadaa14e07c39" path="caniuse/feature-blobbuilder.json" + file hash="f60de02d62ec7f6cbb1ea441ee26eb40" path="caniuse/feature-bloburls.json" + file hash="aa122f467b4783dd05def6711aaf7b57" path="caniuse/feature-border-image.json" + file hash="ac0d1b504c63dd3e1611fce70d1d73e7" path="caniuse/feature-border-radius.json" + file hash="ff6dbd76bb2f9034015c9e6ce2dbee8f" path="caniuse/feature-broadcastchannel.json" + file hash="89dca40e70a6bdab25030b96cacadd5d" path="caniuse/feature-brotli.json" + file hash="7d1831c892ef8d5a15366a6a865e8192" path="caniuse/feature-calc.json" + file hash="75ae84c8f08f968389eb75afd0f42549" path="caniuse/feature-canvas-blending.json" + file hash="ba732a977b47fc3a69e9dcdfaef4fc44" path="caniuse/feature-canvas-text.json" + file hash="a22a5ac7d977b861a9dd6a81b1b1d086" path="caniuse/feature-canvas.json" + file hash="33cba2d1d7fabcedbd9a30ddfa6523e9" path="caniuse/feature-ch-unit.json" + file hash="2ea43f5fedb24a553a551b2aa92c5d4a" path="caniuse/feature-chacha20-poly1305.json" + file hash="7c892e562e8ef5a8a8316b51f4985a78" path="caniuse/feature-channel-messaging.json" + file hash="b526b0bff75874fb2dcee4ee31f4af54" path="caniuse/feature-childnode-remove.json" + file hash="02742ebde9f96ecb0ff6f49917f0de81" path="caniuse/feature-classlist.json" + file hash="7017a1171ed45d964fe53749a72819a7" path="caniuse/feature-client-hints-dpr-width-viewport.json" + file hash="827a95b53af6de1222a3e55d3ddbf2de" path="caniuse/feature-clipboard.json" + file hash="ed4deeabb5dae4493b22797b370b28b9" path="caniuse/feature-colr-v1.json" + file hash="a8396876a03d1157687e7318802a667e" path="caniuse/feature-colr.json" + file hash="27e27897504441f0fa58e5f391b80822" path="caniuse/feature-comparedocumentposition.json" + file hash="9172c3191d5be22a9486a078ad7bb121" path="caniuse/feature-console-basic.json" + file hash="b735733790212d270e77429ae0a5103b" path="caniuse/feature-console-time.json" + file hash="e310a3592c71e7aff130dbe54b332c71" path="caniuse/feature-const.json" + file hash="d9ad9188a49edb3f5eda8fb326029691" path="caniuse/feature-constraint-validation.json" + file hash="35589d01201742a6c01a595a47172ff4" path="caniuse/feature-contenteditable.json" + file hash="59af426779cbaf9bf7567f5707e97088" path="caniuse/feature-contentsecuritypolicy.json" + file hash="a75761866bba9529561829bb20ac30f5" path="caniuse/feature-contentsecuritypolicy2.json" + file hash="9eed4f9890d90b42ac02859606c43cbd" path="caniuse/feature-cookie-store-api.json" + file hash="290e338a2385e05c79a8285672793bb4" path="caniuse/feature-cors.json" + file hash="72714af4dd87d58f0fec7db105e4b0dc" path="caniuse/feature-createimagebitmap.json" + file hash="dabd3bb0ec9b7c2d485d9c9e6e72de1d" path="caniuse/feature-credential-management.json" + file hash="95c51000aa8acc02ea25f2b1c64e7065" path="caniuse/feature-cryptography.json" + file hash="4f239df8ff8d9a65c7ba7a3eecf52a3d" path="caniuse/feature-css-all.json" + file hash="3f61ddc1bd1a0ac15b0a0cf9d044d291" path="caniuse/feature-css-anchor-positioning.json" + file hash="cb2140ddf948a7f7c1f2c101fdff8ecc" path="caniuse/feature-css-animation.json" + file hash="afb3c467f472fadea35d85a2f5ad4085" path="caniuse/feature-css-any-link.json" + file hash="b8ef7ec2178b91667f0e0ebdd3d08ee0" path="caniuse/feature-css-appearance.json" + file hash="463de8fb245dde798b57558b6639eb56" path="caniuse/feature-css-at-counter-style.json" + file hash="97af05fbde19356b0d112773589691ac" path="caniuse/feature-css-backdrop-filter.json" + file hash="69ccedb1eadab0db2edbab78110897b1" path="caniuse/feature-css-background-offsets.json" + file hash="6cbda5f0b8d9e1911348736d63fe88ca" path="caniuse/feature-css-backgroundblendmode.json" + file hash="629e0789d8eb2f2814e0ebf8c4c71508" path="caniuse/feature-css-boxdecorationbreak.json" + file hash="fc1c15476851c1f7e657be79456fe868" path="caniuse/feature-css-boxshadow.json" + file hash="ce1b0b558a6d33212ffd0072ce509461" path="caniuse/feature-css-canvas.json" + file hash="cb722ca29002330cb899a80925bcb0dc" path="caniuse/feature-css-caret-color.json" + file hash="26eee50f8b7e3353f704b69114e62432" path="caniuse/feature-css-cascade-layers.json" + file hash="e15fd64122e5b322296106fadeb2673d" path="caniuse/feature-css-cascade-scope.json" + file hash="f566bf81c27814c61cf8fbc7822fe222" path="caniuse/feature-css-case-insensitive.json" + file hash="73a9b9965293256233ac71c9c6debbac" path="caniuse/feature-css-clip-path.json" + file hash="39d9375b01eda227d0869b7cc9bcc0bf" path="caniuse/feature-css-color-adjust.json" + file hash="fa3a7bed9213f223f4c0a2204d8cef77" path="caniuse/feature-css-color-function.json" + file hash="fbcfc0ebc5176f4c87a76c2d8e6c95a1" path="caniuse/feature-css-conic-gradients.json" + file hash="0843ee73e824d96d6dad9e7c23d0c2a6" path="caniuse/feature-css-container-queries-style.json" + file hash="a061c5271f88c215aa8aae090078b070" path="caniuse/feature-css-container-queries.json" + file hash="f4ed4666c71fcdc2da3b1c5271dffe9a" path="caniuse/feature-css-container-query-units.json" + file hash="51343db281488a5a4bb7c91df9844fc5" path="caniuse/feature-css-containment.json" + file hash="a92df918b97657f4827dc018e3fb83bf" path="caniuse/feature-css-content-visibility.json" + file hash="9569c392ec82a633e9111b139900b3c8" path="caniuse/feature-css-counters.json" + file hash="fa8f9aee2a9d856a5e3a5e2f66397f1e" path="caniuse/feature-css-crisp-edges.json" + file hash="0d358cc1084432ecb5c088196dcc0517" path="caniuse/feature-css-cross-fade.json" + file hash="c4448e644c6a6369b49c1fda73328193" path="caniuse/feature-css-default-pseudo.json" + file hash="07129d987f05e384ac8ccdf52e99ff26" path="caniuse/feature-css-descendant-gtgt.json" + file hash="df37df30de8463d7fd55fd9b50944ae9" path="caniuse/feature-css-deviceadaptation.json" + file hash="eac8cc5f8ccf996b6aa08aff3be206bd" path="caniuse/feature-css-dir-pseudo.json" + file hash="89a13af9362be7ca4a1643326d815ca4" path="caniuse/feature-css-display-contents.json" + file hash="4c324ed15ada62e0a3541b9d0673e5cd" path="caniuse/feature-css-element-function.json" + file hash="93ed77f08e9e6ec005214b628bf5d3a4" path="caniuse/feature-css-env-function.json" + file hash="968770053e8987b1e28be9656c0ed191" path="caniuse/feature-css-exclusions.json" + file hash="ddcc9d0132dcfc347a1a42d1717547bb" path="caniuse/feature-css-featurequeries.json" + file hash="00504dec4ad6e3c847b53d981f69496f" path="caniuse/feature-css-filter-function.json" + file hash="96a4fce0e012284582e34743c349d448" path="caniuse/feature-css-filters.json" + file hash="09e58dab1a6ab2a708535dc1e631dea8" path="caniuse/feature-css-first-letter.json" + file hash="f386ebdf347029352031574a51b81143" path="caniuse/feature-css-first-line.json" + file hash="aeb6571b653fb7c861adc2c8375c83b6" path="caniuse/feature-css-fixed.json" + file hash="1138cd9dd5487f7dcbff465d653c9d26" path="caniuse/feature-css-focus-visible.json" + file hash="c190957d7e6059523c5883bfdc071679" path="caniuse/feature-css-focus-within.json" + file hash="03ae84b0ae92e7619a357c99478fe516" path="caniuse/feature-css-font-palette.json" + file hash="484c3a86942a52e69e62ad6738d8595a" path="caniuse/feature-css-font-rendering-controls.json" + file hash="5eb8763e0f8869ffaffa9b2c51660e84" path="caniuse/feature-css-font-stretch.json" + file hash="b7108ec7ae82633fc5a017f23631615b" path="caniuse/feature-css-gencontent.json" + file hash="39600a590f9ff84a957f722cf1f9a697" path="caniuse/feature-css-gradients.json" + file hash="d6e758be2f3591aae430c5589abce36b" path="caniuse/feature-css-grid.json" + file hash="b5d1a86f2a16f907e4c99195c1545ed7" path="caniuse/feature-css-hanging-punctuation.json" + file hash="98de547b9e1546d66e2cd94ac18e171c" path="caniuse/feature-css-has.json" + file hash="1c9c598e3e02a87727a501d5edb03659" path="caniuse/feature-css-hyphens.json" + file hash="70981db23b03a4cfefd83886fc71e419" path="caniuse/feature-css-image-orientation.json" + file hash="7184a2c539be49a455be310acc12cf1e" path="caniuse/feature-css-image-set.json" + file hash="1c5e528afa30099bc40f3601da234b18" path="caniuse/feature-css-in-out-of-range.json" + file hash="312353ccd323c284cd75098f61dc581e" path="caniuse/feature-css-indeterminate-pseudo.json" + file hash="6f24843304d75084350ffd7fd6c93226" path="caniuse/feature-css-initial-letter.json" + file hash="400a411dc6c5d6299fbc09c587f9d9c3" path="caniuse/feature-css-initial-value.json" + file hash="1efc7b9f32d36aaaa1da1823aab1df68" path="caniuse/feature-css-lch-lab.json" + file hash="926272cefb30963652459335e61e7ca1" path="caniuse/feature-css-letter-spacing.json" + file hash="d1cc16803feeddb9e5bd5566ba520d19" path="caniuse/feature-css-line-clamp.json" + file hash="7df71725bf551489e6ae2ea1c41a4201" path="caniuse/feature-css-logical-props.json" + file hash="d963b9ffda8bdf9a329a9ad868c489bd" path="caniuse/feature-css-marker-pseudo.json" + file hash="013f39a3afb76a666add7b7579653dbf" path="caniuse/feature-css-masks.json" + file hash="550aa40c504e7919cdf82d95e1e926e7" path="caniuse/feature-css-matches-pseudo.json" + file hash="8eeb805e6b6a0c5ef5579ee58b84dcb2" path="caniuse/feature-css-math-functions.json" + file hash="746378b111eaef47b88faeec257f0441" path="caniuse/feature-css-media-interaction.json" + file hash="4a0dada3f2503d8ac3b1ed7d648ac2bd" path="caniuse/feature-css-media-range-syntax.json" + file hash="5b039e724ae4991f59b27517e200cb1c" path="caniuse/feature-css-media-resolution.json" + file hash="747977941050e3fefd38f43a17930e66" path="caniuse/feature-css-mediaqueries.json" + file hash="a3bc6e9a9a434b171e8bdb997e563c76" path="caniuse/feature-css-mixblendmode.json" + file hash="80afad1fa839403250dcb4bb16dbec8e" path="caniuse/feature-css-motion-paths.json" + file hash="c084ceba8e79a5870c25b94db7827592" path="caniuse/feature-css-namespaces.json" + file hash="4ec0b7cf4204b168442544a34d965962" path="caniuse/feature-css-nesting.json" + file hash="9cf314241ffebbe36cc5e8c9accfffeb" path="caniuse/feature-css-not-sel-list.json" + file hash="cb36687f7beae055f2b366937c5909e3" path="caniuse/feature-css-nth-child-of.json" + file hash="895b10f72100deec8015ad4a4d4ac26f" path="caniuse/feature-css-opacity.json" + file hash="28f529fbbd878ba4f6a3d7d05b3a46c4" path="caniuse/feature-css-optional-pseudo.json" + file hash="3a405e08bfdf363d019cc45f204e4bbe" path="caniuse/feature-css-overflow-anchor.json" + file hash="75f54d3e8c178a5b889192d393be3131" path="caniuse/feature-css-overflow-overlay.json" + file hash="6e2b60e13509cfa2ba18670082577736" path="caniuse/feature-css-overflow.json" + file hash="fea42b2ef74625c78324146268d33dee" path="caniuse/feature-css-overscroll-behavior.json" + file hash="e21d8d36e8992b512a4f5bce437db6ee" path="caniuse/feature-css-page-break.json" + file hash="6810865d5c5c4f9cba91a8da54401244" path="caniuse/feature-css-paged-media.json" + file hash="b45944f69f0ccdcbcb7fe28f2addeb65" path="caniuse/feature-css-paint-api.json" + file hash="8fbe505ea03e6cdb490e9ec0c5130d0e" path="caniuse/feature-css-placeholder-shown.json" + file hash="0eb9aa0406a160c6efb5ba882789b22e" path="caniuse/feature-css-placeholder.json" + file hash="f42ecadadeb1540dbd32709cd9270314" path="caniuse/feature-css-read-only-write.json" + file hash="425c533a4651eb50e8dd21b88eab19f4" path="caniuse/feature-css-rebeccapurple.json" + file hash="ce486a15876e9c23de89457f9206b993" path="caniuse/feature-css-reflections.json" + file hash="bb39a8841301cc828775b77e2917b0fb" path="caniuse/feature-css-regions.json" + file hash="f8f68c555001510f5151875c1b9f77be" path="caniuse/feature-css-relative-colors.json" + file hash="41437e63bf5f642148ee2fa3c641b7e3" path="caniuse/feature-css-repeating-gradients.json" + file hash="ccb9ccd3d8bec14f651c765f4f51b42a" path="caniuse/feature-css-resize.json" + file hash="14d42fb951e5dc1d45361a87f8c74001" path="caniuse/feature-css-revert-value.json" + file hash="43e0f5dfafd0a8c2b6bfbf690b48e2c0" path="caniuse/feature-css-rrggbbaa.json" + file hash="16fee78c2a3195f6800df54e9cbae97b" path="caniuse/feature-css-scroll-behavior.json" + file hash="9f74e89c044ab8182f554f53ab348dc5" path="caniuse/feature-css-scroll-timeline.json" + file hash="48493148e24848cb47dffab71695b03d" path="caniuse/feature-css-scrollbar.json" + file hash="b8ad53787e7c0bcfe28a1b098afdc900" path="caniuse/feature-css-sel2.json" + file hash="1860e070cd7ecd39188ca48e6653b82e" path="caniuse/feature-css-sel3.json" + file hash="c86a4e1a1299ad917be69881cd7c865f" path="caniuse/feature-css-selection.json" + file hash="bdfd406abd4253a1c781d4ae5155a4b0" path="caniuse/feature-css-shapes.json" + file hash="9d4fee4b8b06b912ac593300fb5ed7a5" path="caniuse/feature-css-snappoints.json" + file hash="97ab086217f7d72aad758fe8458dc09a" path="caniuse/feature-css-sticky.json" + file hash="ab475dccd5f8f2652e61925d4aefd50d" path="caniuse/feature-css-subgrid.json" + file hash="88fd3208e08cfe0b78863f48ef1d7597" path="caniuse/feature-css-supports-api.json" + file hash="aceb5f1359d81dac19444c438bf68ba1" path="caniuse/feature-css-table.json" + file hash="fc083e3577e680412fbf7789ed536ea6" path="caniuse/feature-css-text-align-last.json" + file hash="85de610cb0111f837305b28319c5a12a" path="caniuse/feature-css-text-box-trim.json" + file hash="2f06217c6a8b4bd3ba4dda3c864d8e9f" path="caniuse/feature-css-text-indent.json" + file hash="dd0224359c196641f2748f676b0003e8" path="caniuse/feature-css-text-justify.json" + file hash="326993dfb2d17860a665b5ff5aad3ad2" path="caniuse/feature-css-text-orientation.json" + file hash="82424ca7d261054d6c6b3ac172ad18c2" path="caniuse/feature-css-text-wrap-balance.json" + file hash="d0c9af2472a7a1ce53324b0cd979df77" path="caniuse/feature-css-textshadow.json" + file hash="e3f182bf9b9f7dfda6b534abe5e80636" path="caniuse/feature-css-touch-action.json" + file hash="020d2ab6c9cc77a3bc204c42bd181509" path="caniuse/feature-css-transitions.json" + file hash="814ca479d1811654871001482217cbd4" path="caniuse/feature-css-unset-value.json" + file hash="2c3808f3a9819345de84131962cf2601" path="caniuse/feature-css-variables.json" + file hash="0a0fb4e23fb9070e4516c257221636f2" path="caniuse/feature-css-when-else.json" + file hash="0dfe7f581a9f06af1e1dc7bec6a4a144" path="caniuse/feature-css-widows-orphans.json" + file hash="11141e26a516ac16c1a3946f35f832ff" path="caniuse/feature-css-writing-mode.json" + file hash="5d5dc2aafa3228335c1e8f1ec1243e0d" path="caniuse/feature-css-zoom.json" + file hash="35906b389b31e68fa3e407cbcdc34ee6" path="caniuse/feature-css3-attr.json" + file hash="f863043280b5b548cbd5092e17ece466" path="caniuse/feature-css3-boxsizing.json" + file hash="f80f68af6a0727c3f6566169ab0d3112" path="caniuse/feature-css3-colors.json" + file hash="e86d845ebdf0013334269dd93eeadf5e" path="caniuse/feature-css3-cursors-grab.json" + file hash="f2dd80c24151a21f1205236d69a418a2" path="caniuse/feature-css3-cursors-newer.json" + file hash="131fc2e37dd14c750267416970fd5ca8" path="caniuse/feature-css3-cursors.json" + file hash="9886ce72bdca083ed022bc48709f50ad" path="caniuse/feature-css3-tabsize.json" + file hash="1b5b666f579a531035b38e729a2c1188" path="caniuse/feature-currentcolor.json" + file hash="2a38d0a72425e2388768a85341039f9b" path="caniuse/feature-custom-elements.json" + file hash="e869181c497b11682252263b9e7308bc" path="caniuse/feature-custom-elementsv1.json" + file hash="f8b36fee58dd92948836efb0f9e7b658" path="caniuse/feature-customevent.json" + file hash="4bcada0c232b1be5e4a4197c400636be" path="caniuse/feature-datalist.json" + file hash="971d219ef1affa475e17741fcf856380" path="caniuse/feature-dataset.json" + file hash="57c995637f523aa2c36ed7e31e38eb46" path="caniuse/feature-datauri.json" + file hash="af4089aaa75c4f3555a18077c495e5a8" path="caniuse/feature-date-tolocaledatestring.json" + file hash="c9663966cbb26c7249c51ddfa6699f69" path="caniuse/feature-declarative-shadow-dom.json" + file hash="75259b134b5f9b2a7283cef5e5c8b11e" path="caniuse/feature-decorators.json" + file hash="1108945e0e03aff45ae279316d925c6a" path="caniuse/feature-details.json" + file hash="342208c77174e0947a535889e020a6f5" path="caniuse/feature-deviceorientation.json" + file hash="d7d19ea8071a221bdbbaf30c15e3146d" path="caniuse/feature-devicepixelratio.json" + file hash="fc8e63b5b3aa6717b34a6ce4ff4f2653" path="caniuse/feature-dialog.json" + file hash="798ad71197e3ec758fe87b14ceb3ddeb" path="caniuse/feature-dispatchevent.json" + file hash="e3984c80054d200a52e7dba0d15de741" path="caniuse/feature-dnssec.json" + file hash="06c631056aca7e7e56c19c4f238754d8" path="caniuse/feature-do-not-track.json" + file hash="bbcc5992aa96b2872f2b6c54106f3cf7" path="caniuse/feature-document-currentscript.json" + file hash="1bd7ada05fad5ddc0108ab98a4805190" path="caniuse/feature-document-evaluate-xpath.json" + file hash="f20186bf00912ce0d5ea135e3293fbcc" path="caniuse/feature-document-execcommand.json" + file hash="fd6d11166983ed93ea5815495e8a8c73" path="caniuse/feature-document-policy.json" + file hash="4d5c77b0c755478ec144267814983878" path="caniuse/feature-document-scrollingelement.json" + file hash="f742374321d5bc7ef58e54f2c6d470b0" path="caniuse/feature-documenthead.json" + file hash="c82912264febf9eb2ac5318eb6ab4359" path="caniuse/feature-dom-manip-convenience.json" + file hash="013b5d45fbfef39f86db4abd30741770" path="caniuse/feature-dom-range.json" + file hash="924259d9457c4969d84d85b970e82b93" path="caniuse/feature-domcontentloaded.json" + file hash="7c366a6cb69bcfa45c2a7386b56322c2" path="caniuse/feature-dommatrix.json" + file hash="f67d940c297041fac279a6aabf03a0eb" path="caniuse/feature-download.json" + file hash="2370eba049b6938cb4f09b2b64ab7030" path="caniuse/feature-dragndrop.json" + file hash="619fec57633802f40ab567bcd6b84ea1" path="caniuse/feature-element-closest.json" + file hash="cc300b4626cb6fbecf476d887d46fc41" path="caniuse/feature-element-from-point.json" + file hash="a94988dba3965e29ea40c2aa89242887" path="caniuse/feature-element-scroll-methods.json" + file hash="2b8623be891b10e2b561705be3a5ad1b" path="caniuse/feature-eme.json" + file hash="1d8fba4740f23b2cb8ed37ca6d6d5960" path="caniuse/feature-eot.json" + file hash="cab750d784a1c4de0a893b877684522e" path="caniuse/feature-es5.json" + file hash="0dc4a26b95366a151c393a5a516f06b0" path="caniuse/feature-es6-class.json" + file hash="b7de6adcf0503ce588043d786745eb9a" path="caniuse/feature-es6-generators.json" + file hash="1ada200d4f37a85075537282073a73ec" path="caniuse/feature-es6-module-dynamic-import.json" + file hash="2c9c154803b3668e9a48e7f4362e2d9e" path="caniuse/feature-es6-module.json" + file hash="e3a8915e96401f67074e60dce69238c3" path="caniuse/feature-es6-number.json" + file hash="458637d31bd3103d2370a9c0d8fe6a4d" path="caniuse/feature-es6-string-includes.json" + file hash="9f7ecfc3f3af88000581db214413fe38" path="caniuse/feature-es6.json" + file hash="062a8cbf249300f57cbd12976df64f67" path="caniuse/feature-eventsource.json" + file hash="76f4d63da773ab3ff8fefd5907c25eab" path="caniuse/feature-extended-system-fonts.json" + file hash="53e3ff6640743fe877cb3e92acb27b95" path="caniuse/feature-feature-policy.json" + file hash="f2ef803e377c04962ef5ce492d101383" path="caniuse/feature-fetch.json" + file hash="3d0a34fb0226ea54d0786e3d7228650e" path="caniuse/feature-fieldset-disabled.json" + file hash="38f736e2cd9b278d81c11595f197164c" path="caniuse/feature-fileapi.json" + file hash="808b83c523664761e054e156dc2c6c7c" path="caniuse/feature-filereader.json" + file hash="259e9879962afa6ad2470452be703c8a" path="caniuse/feature-filereadersync.json" + file hash="4bf938acb2602184f29479c0b42249e9" path="caniuse/feature-filesystem.json" + file hash="1169c3de2de176a8f1bcb64dfc1744e4" path="caniuse/feature-flac.json" + file hash="ff0a7b1ec0185e7d84448653bc3b1f0d" path="caniuse/feature-flexbox-gap.json" + file hash="569e7912a9a913f189963473511de01c" path="caniuse/feature-flexbox.json" + file hash="955652c994e5087337e86cff2d047369" path="caniuse/feature-flow-root.json" + file hash="101476de56c68e4d5ea83e7374b0a698" path="caniuse/feature-focusin-focusout-events.json" + file hash="c32a2b5b025843a39c1974deddf5cc05" path="caniuse/feature-font-family-system-ui.json" + file hash="a96fd6f803ba08bc5e8e9bdc8254cae5" path="caniuse/feature-font-feature.json" + file hash="204d475d54871664f68644c5ca290a8b" path="caniuse/feature-font-kerning.json" + file hash="c0a0df579403e216132e578214eba8dc" path="caniuse/feature-font-loading.json" + file hash="28ac28c3664d3ac66226e1f401ffbb0f" path="caniuse/feature-font-size-adjust.json" + file hash="f6c71ed8012bfc4c4241b95cb7f94445" path="caniuse/feature-font-smooth.json" + file hash="7a1ff335696cb050117b26a3067897b9" path="caniuse/feature-font-unicode-range.json" + file hash="a1402e6bbd7ddb6b68b4c83622026fc9" path="caniuse/feature-font-variant-alternates.json" + file hash="9bff0cc9a291a97e94b64d2455c097f2" path="caniuse/feature-font-variant-numeric.json" + file hash="29a43698b34688b0781459a4dfb2d132" path="caniuse/feature-fontface.json" + file hash="fd352576b11231e8810ea349e2fbb29c" path="caniuse/feature-form-attribute.json" + file hash="5bedd8b63a1226bb670bb0e22de4277e" path="caniuse/feature-form-submit-attributes.json" + file hash="a4125e5a2b7cca76445db6eed6646d87" path="caniuse/feature-form-validation.json" + file hash="df9512b766c5460b14c436d9100090b0" path="caniuse/feature-fullscreen.json" + file hash="3ea36cbcb208d806c92aba3c65979de3" path="caniuse/feature-gamepad.json" + file hash="6ad0494788e747c210893467792b0636" path="caniuse/feature-geolocation.json" + file hash="89c2624afcc4b92ae2c0274eb5bd0a93" path="caniuse/feature-getboundingclientrect.json" + file hash="0367d01e4959438ec71155e1093363a6" path="caniuse/feature-getcomputedstyle.json" + file hash="336071d8d2e45c4033bb1465cb4c1cee" path="caniuse/feature-getelementsbyclassname.json" + file hash="f4898fadae1c440dc5ec2f788d276b13" path="caniuse/feature-getrandomvalues.json" + file hash="9789175dfbdddeb4ac8e739f2ab3ece8" path="caniuse/feature-gyroscope.json" + file hash="262f767ad5be9a10a85dd7a360ed7208" path="caniuse/feature-hardwareconcurrency.json" + file hash="68dff5050981e5200dc50a86889061d5" path="caniuse/feature-hashchange.json" + file hash="8012e556a793a34b491ade97e1f280ee" path="caniuse/feature-heif.json" + file hash="4523649234eab1d908fc6a925d37a7cb" path="caniuse/feature-hevc.json" + file hash="22200a691fa88ac0232a8bdebad9a312" path="caniuse/feature-hidden.json" + file hash="27792a038be9ab0b15f9cd96daa7bda5" path="caniuse/feature-high-resolution-time.json" + file hash="d217bfcafb26ca841a9e4e61c65197ee" path="caniuse/feature-history.json" + file hash="f4e6d006e39ad14637ac375e548b8462" path="caniuse/feature-html-media-capture.json" + file hash="c79bc9f5f445d0e1e3028fd7e01439ad" path="caniuse/feature-html5semantic.json" + file hash="f36b542baf54fbfbf3b362f84b4da45e" path="caniuse/feature-http-live-streaming.json" + file hash="82a34190b8cc52d006acb58ed99655d2" path="caniuse/feature-http2.json" + file hash="5dfe65ce5bd6b0b74dc9c2fc1c3abe91" path="caniuse/feature-http3.json" + file hash="b7c410fa4e80b194a752f0ea8c1d7127" path="caniuse/feature-iframe-sandbox.json" + file hash="d17e55bad86211615cc692be2a386cd8" path="caniuse/feature-iframe-seamless.json" + file hash="c38c5ba548ba08d0200fa9025d8adc38" path="caniuse/feature-iframe-srcdoc.json" + file hash="18a7b83011fdd7990319b11c8a1bfe0f" path="caniuse/feature-imagecapture.json" + file hash="fd87f11b9829a9bbc105f5756b26d5bd" path="caniuse/feature-ime.json" + file hash="d2b270fb74fd0d4ca690e1011021041d" path="caniuse/feature-img-naturalwidth-naturalheight.json" + file hash="b2066798542ea343bbc5a309b38047eb" path="caniuse/feature-import-maps.json" + file hash="f8b6dc3e3d2a573bb23ded9f1c399d02" path="caniuse/feature-imports.json" + file hash="bc1ce3c9df0365b88b1e6a7ca9fdacae" path="caniuse/feature-indeterminate-checkbox.json" + file hash="40fb4588553ae3635d48bf5528963688" path="caniuse/feature-indexeddb.json" + file hash="7b4fa2f64a2fe661988f36f80be70d3c" path="caniuse/feature-indexeddb2.json" + file hash="01cd8555f87ae2e9c6e2ec3474b0fa1c" path="caniuse/feature-inline-block.json" + file hash="725efade5a48a258f9cfaf4e4ce3a3fa" path="caniuse/feature-innertext.json" + file hash="3a61b06ebd60ec2b82e620202865cb7a" path="caniuse/feature-input-autocomplete-onoff.json" + file hash="7529cb685bb8e2878b180f34fdf92084" path="caniuse/feature-input-color.json" + file hash="ee6c323907b68a91610c7bb38da97553" path="caniuse/feature-input-datetime.json" + file hash="f6e01946db8dc5584d85518087a281e1" path="caniuse/feature-input-email-tel-url.json" + file hash="93246d7d26465a38620bffec791db182" path="caniuse/feature-input-event.json" + file hash="8ce9e794199f1d1b567d1c75db33ed8b" path="caniuse/feature-input-file-accept.json" + file hash="6d18271baa3f7bcb567b67d30414a069" path="caniuse/feature-input-file-directory.json" + file hash="3f60d53a08359b2fc8ed4d2b991efa53" path="caniuse/feature-input-file-multiple.json" + file hash="09e64437c79bc0cd80ae2aaf0d48e6a4" path="caniuse/feature-input-inputmode.json" + file hash="5e0c3620588b007f815e7932c48cbef5" path="caniuse/feature-input-minlength.json" + file hash="0a4f767d3335c54481e343d35f7fae05" path="caniuse/feature-input-number.json" + file hash="c2f0d2c8bf54de7769ed5c24a373f971" path="caniuse/feature-input-pattern.json" + file hash="45cf9388fa66a4ce30a514b5f907c1a3" path="caniuse/feature-input-placeholder.json" + file hash="212c76470ebab99bfb5b6bc2ae1ef661" path="caniuse/feature-input-range.json" + file hash="a456543c337a0be11248199a73f0dc75" path="caniuse/feature-input-search.json" + file hash="d65ba1568df7dfceacd1cdda1548504d" path="caniuse/feature-input-selection.json" + file hash="b90cfa9918e56b6061e63f4fafda1afa" path="caniuse/feature-insert-adjacent.json" + file hash="b4a30de8ad845188bb9bc9b115d4777a" path="caniuse/feature-insertadjacenthtml.json" + file hash="473aeef136cc1a38805afb429b8e5b49" path="caniuse/feature-internationalization.json" + file hash="33484f7154a1d7ba62296709d8d78ada" path="caniuse/feature-intersectionobserver-v2.json" + file hash="7030b9e6f516b9b21dcb0c72442f39fa" path="caniuse/feature-intersectionobserver.json" + file hash="2a80915ecce9e7af00ec9d8d59df9d77" path="caniuse/feature-intl-pluralrules.json" + file hash="d9396009f154136ba65c3dabc09373e9" path="caniuse/feature-intrinsic-width.json" + file hash="6287eedcb9af1da079d0cd191eefb324" path="caniuse/feature-jpeg2000.json" + file hash="a9b33e1f4a63b557d6cf478b1c2f028a" path="caniuse/feature-jpegxl.json" + file hash="843da458d138f0946d38b07851a7fe10" path="caniuse/feature-jpegxr.json" + file hash="b34bb10b5df74c19de3419c4df21f7d4" path="caniuse/feature-js-regexp-lookbehind.json" + file hash="fd32c72aafdb1b534bcaeb30279d3c8b" path="caniuse/feature-json.json" + file hash="cda1e9cf5f8223fe83a040c7421f0d88" path="caniuse/feature-justify-content-space-evenly.json" + file hash="67f832e4e35def9cba9842dca80e8c65" path="caniuse/feature-kerning-pairs-ligatures.json" + file hash="82705877dafe76566bfe6b3e8e7994d9" path="caniuse/feature-keyboardevent-charcode.json" + file hash="6a1eb28f70cebbcb36bf3a322a4b9377" path="caniuse/feature-keyboardevent-code.json" + file hash="64777ade1b35640c784743c4c3324c85" path="caniuse/feature-keyboardevent-getmodifierstate.json" + file hash="43363879804b3ce4f36fbcc4fa875074" path="caniuse/feature-keyboardevent-key.json" + file hash="ccd7e198da63fbd59da856e016b4fe37" path="caniuse/feature-keyboardevent-location.json" + file hash="d1450ea02e48e66aac2ae41abf2c3534" path="caniuse/feature-keyboardevent-which.json" + file hash="9f26ff5b197cc97844d56dcf8b5155d1" path="caniuse/feature-lazyload.json" + file hash="fc7f83180a8f497cba62ed6c1e3d6f28" path="caniuse/feature-let.json" + file hash="129ffaccd6af70724adbc90f98cd229b" path="caniuse/feature-link-icon-png.json" + file hash="d5bea09e5b8e61251ce496396d6bedc6" path="caniuse/feature-link-icon-svg.json" + file hash="aeb0661988fdc84bb59c79e8dc6a5fdf" path="caniuse/feature-link-rel-dns-prefetch.json" + file hash="2ebd79b4555a69bc0bb6ab49339530c2" path="caniuse/feature-link-rel-modulepreload.json" + file hash="d9aed92efa63f1d678e9b4f9aa083611" path="caniuse/feature-link-rel-preconnect.json" + file hash="bf397c9a7d6ed08a6b9176b7eb44d8f2" path="caniuse/feature-link-rel-prefetch.json" + file hash="2d282d9f101a9610b89fcb34090a8cdd" path="caniuse/feature-link-rel-preload.json" + file hash="bbaa515ff318c2fbd302f63fe06bf3a7" path="caniuse/feature-link-rel-prerender.json" + file hash="b7009540918965ca52d78a418692f954" path="caniuse/feature-loading-lazy-attr.json" + file hash="37d9266826d1464222c9523f481a8a3e" path="caniuse/feature-localecompare.json" + file hash="77f3bafb57e128b5413b0f45a1c9736e" path="caniuse/feature-magnetometer.json" + file hash="752843b6fa64c4f2d03289c7b2e9a8ec" path="caniuse/feature-matchesselector.json" + file hash="8c0dbcc4e6573d331fdc802f8462e297" path="caniuse/feature-matchmedia.json" + file hash="120a3e9e6d05e375447086076ab5431a" path="caniuse/feature-mathml.json" + file hash="7ad45544cf65115111ee81f52740679f" path="caniuse/feature-maxlength.json" + file hash="7eaf0b06b108871698a265e61ca7e5a4" path="caniuse/feature-media-fragments.json" + file hash="5a4ea65af8c5ca4756453c68674bb32a" path="caniuse/feature-mediacapture-fromelement.json" + file hash="93a9da148a4f2bc7e120be7618e169ff" path="caniuse/feature-mediarecorder.json" + file hash="7f150462fd028405dc4f3408b38433db" path="caniuse/feature-mediasource.json" + file hash="aa73c5d5e5285e52aa49ea97366f67bd" path="caniuse/feature-menu.json" + file hash="b634aa9844d691b173296a7f94b8566e" path="caniuse/feature-meta-theme-color.json" + file hash="60aa953047cc4e3315743003f40454c1" path="caniuse/feature-meter.json" + file hash="ba1b0afa67fda45e2843823c95f8c9d1" path="caniuse/feature-midi.json" + file hash="c9bc9118b5ff7b8743ddbdb00ac3b7ab" path="caniuse/feature-minmaxwh.json" + file hash="7cf36ceb04a0651e6e78ccb8d571f445" path="caniuse/feature-mp3.json" + file hash="dcacb02126b79b9d58c4ccfe271fc3b0" path="caniuse/feature-mpeg-dash.json" + file hash="6dee748fc4c41c90231239e102b25bcb" path="caniuse/feature-mpeg4.json" + file hash="da32545e3cb045e7ca0df0bf214b771a" path="caniuse/feature-multibackgrounds.json" + file hash="69576bc867c0da7bd67fcbb45f49a778" path="caniuse/feature-multicolumn.json" + file hash="1763c866ea8d7f6b9cf67b387d285283" path="caniuse/feature-mutation-events.json" + file hash="a98fa262738ef182201e615c7ae62f7e" path="caniuse/feature-mutationobserver.json" + file hash="df3cae8ddab9052d4a43317f9a472a2c" path="caniuse/feature-namevalue-storage.json" + file hash="6a1315666c267a2a3de936e205fb00c7" path="caniuse/feature-native-filesystem-api.json" + file hash="8ea4b190b73c84849f70ab4649cb7763" path="caniuse/feature-nav-timing.json" + file hash="b4523c402401ac593a16bb4916e9a2c4" path="caniuse/feature-netinfo.json" + file hash="9d2cf686d03fa2b30a85c4ed18ae7dfc" path="caniuse/feature-notifications.json" + file hash="0a6931d20635138f001f600fa47c320d" path="caniuse/feature-object-entries.json" + file hash="c6db271eb5dadca83c300b1bd9106bc9" path="caniuse/feature-object-fit.json" + file hash="84cb96799efd056cf57c7d110423b2cb" path="caniuse/feature-object-observe.json" + file hash="ee36c663a8f1f091cd7ea5671f1ab81b" path="caniuse/feature-object-values.json" + file hash="ccebefaa202f33377b5d1802cc5cb4d0" path="caniuse/feature-objectrtc.json" + file hash="a7054eff475e6b96992a69c6e4b895ea" path="caniuse/feature-offline-apps.json" + file hash="0fd63f705562200976b7a703aa6d00b9" path="caniuse/feature-offscreencanvas.json" + file hash="15f09f65e00753845c07ccec8fffd78e" path="caniuse/feature-ogg-vorbis.json" + file hash="e269ea4476e9df84764862d26f8839a2" path="caniuse/feature-ogv.json" + file hash="a93b3410b0580cfa8892ddc52fc3c4cc" path="caniuse/feature-ol-reversed.json" + file hash="5e740cc45861453b93dd81c15c67ccfc" path="caniuse/feature-once-event-listener.json" + file hash="9030434734eda131d68a0a02d658d91b" path="caniuse/feature-online-status.json" + file hash="5b48e30ba6d76d5169949c2617d4b807" path="caniuse/feature-opus.json" + file hash="c4f19869dcb7fcdc4418699293f4a08e" path="caniuse/feature-orientation-sensor.json" + file hash="b4f91c4fe0d72b70af6bcaa8db254fc9" path="caniuse/feature-outline.json" + file hash="7b2815924bbfc6e174b4da00bf3c0495" path="caniuse/feature-pad-start-end.json" + file hash="786b30b87774da988272e068d15cd6ba" path="caniuse/feature-page-transition-events.json" + file hash="90418f4ddaf53afc99ec5755edb3f62a" path="caniuse/feature-pagevisibility.json" + file hash="994bedce234d3a774137a6c398fba4ef" path="caniuse/feature-passive-event-listener.json" + file hash="740af38ba7de7a212ec341e7c39fe27d" path="caniuse/feature-passkeys.json" + file hash="3beb07ac09bc22da0c4c12377c230b0f" path="caniuse/feature-path2d.json" + file hash="84b58f68625f7285b08adfa2a0438ace" path="caniuse/feature-payment-request.json" + file hash="1ebf992d7aabfceb42f68d9a556d72c0" path="caniuse/feature-pdf-viewer.json" + file hash="275f653ad828a5e654f5be8840c6e71d" path="caniuse/feature-permissions-api.json" + file hash="60ebb79cba4c9234f130754dd411763b" path="caniuse/feature-permissions-policy.json" + file hash="c5777b32d1f3e26156125072fc28db2f" path="caniuse/feature-picture-in-picture.json" + file hash="9f0c2cae0759f889cff1ea7cf29a699b" path="caniuse/feature-picture.json" + file hash="b7fbd0f46f100fefa1e9a231b496cdca" path="caniuse/feature-ping.json" + file hash="9e45a9e25e46ce88b451686edef436fa" path="caniuse/feature-png-alpha.json" + file hash="d0e75b8a08a116990009043ff41b0ffc" path="caniuse/feature-pointer-events.json" + file hash="7b6984eb2ab5c74ab890782a839e790b" path="caniuse/feature-pointer.json" + file hash="4492030d0dae152363fa0eb6c79edeb5" path="caniuse/feature-pointerlock.json" + file hash="32fcd316a70a14d969128298d2ab93e4" path="caniuse/feature-portals.json" + file hash="9fc5a95b5b7d2816c5aad3a66367510d" path="caniuse/feature-prefers-color-scheme.json" + file hash="378a8a4946f57d050d7e2cb947e7706f" path="caniuse/feature-prefers-reduced-motion.json" + file hash="66c07c20140c1f3f0eff0675860ddd7a" path="caniuse/feature-progress.json" + file hash="c99b54dd61e17870f9c6b0bc8e389727" path="caniuse/feature-promise-finally.json" + file hash="d16e36c577cf11fd84f69afa8205d94c" path="caniuse/feature-promises.json" + file hash="814ddb08d90a982bc6af1c87d1d35502" path="caniuse/feature-proximity.json" + file hash="39160a40dd5277d7f45517dd08585725" path="caniuse/feature-proxy.json" + file hash="0e2bae303a0958dd37901d68522bcaea" path="caniuse/feature-publickeypinning.json" + file hash="2625d881f4366b85c2d05709c1e65c47" path="caniuse/feature-push-api.json" + file hash="4e995a7b4695aa3fd34f600468d5f36c" path="caniuse/feature-queryselector.json" + file hash="bd2a981fc668f96644bb2c69d1dbc2b4" path="caniuse/feature-readonly-attr.json" + file hash="47e0f5d939ee2c144d278b3fb0f29b55" path="caniuse/feature-referrer-policy.json" + file hash="e425d3bcca1656cf260d15938a587fd9" path="caniuse/feature-registerprotocolhandler.json" + file hash="93e70940399a799171b4d22f71e89195" path="caniuse/feature-rel-noopener.json" + file hash="a2669ec4759871da3ff57bfa58d000dd" path="caniuse/feature-rel-noreferrer.json" + file hash="707aa6c162cecdfb1bccc61d25a9d184" path="caniuse/feature-rellist.json" + file hash="38f860fc1cd4137ad55099414f9a3e8a" path="caniuse/feature-rem.json" + file hash="0aaf9b1267516db7fa6776142c65de52" path="caniuse/feature-requestanimationframe.json" + file hash="44fe2aa5dd6b25c77676cb5af33fafd2" path="caniuse/feature-requestidlecallback.json" + file hash="369deeb42128a8200bf18743f9cba132" path="caniuse/feature-resizeobserver.json" + file hash="ba5cc76834433dda53771458eb12ddc7" path="caniuse/feature-resource-timing.json" + file hash="5ecd0f1ecd5843e454a450e4daf746d1" path="caniuse/feature-rest-parameters.json" + file hash="cc25425e570ef8f6e3a298c6005c0aa9" path="caniuse/feature-rtcpeerconnection.json" + file hash="20caad7ee3c83cae470ce74799f3af51" path="caniuse/feature-ruby.json" + file hash="67ae82235194a3303d60c7222adf4524" path="caniuse/feature-run-in.json" + file hash="c3ba4079a9d3a68d671decebc592a8fb" path="caniuse/feature-same-site-cookie-attribute.json" + file hash="d6778d58fc0d57e6dd614048c70f3c15" path="caniuse/feature-screen-orientation.json" + file hash="1c5e2bdc4db2e6e2e1a370b43b127959" path="caniuse/feature-script-async.json" + file hash="abcf132cb23cb258695c1a3fc77d2a84" path="caniuse/feature-script-defer.json" + file hash="5e426450d96aa478899025936f22bd8d" path="caniuse/feature-scrollintoview.json" + file hash="94fa92ef43d602f273675380afa9ac3f" path="caniuse/feature-scrollintoviewifneeded.json" + file hash="b69d2add772ec0c90811de7d042601e6" path="caniuse/feature-sdch.json" + file hash="38355c692644e91c11b8cc529fecb6a4" path="caniuse/feature-selection-api.json" + file hash="3998f6b19e4283dc5e3cb538e7199db1" path="caniuse/feature-selectlist.json" + file hash="f5b9ffc8c011762ecb2cd43008416ea0" path="caniuse/feature-server-timing.json" + file hash="382a4e68040c3af3aa621f9cbfafb9b1" path="caniuse/feature-serviceworkers.json" + file hash="48697cf0c8c1bf0161061467ba04cc01" path="caniuse/feature-setimmediate.json" + file hash="920249e5eeca7bce482ab976dcc0a6e4" path="caniuse/feature-shadowdom.json" + file hash="d8db8f554152ec892530fed62ab1dc5b" path="caniuse/feature-shadowdomv1.json" + file hash="5481973e18775508db62679edc8ea1f6" path="caniuse/feature-sharedarraybuffer.json" + file hash="b43b5b20545bb2e2e4a2ad3fbcce43e9" path="caniuse/feature-sharedworkers.json" + file hash="4574476b8775e26e6db1fd186845856c" path="caniuse/feature-sni.json" + file hash="ca9f75bd388725247642b4d7e5135581" path="caniuse/feature-spdy.json" + file hash="90eff9b37a38c2ce9ac75c17a0e5f933" path="caniuse/feature-speech-recognition.json" + file hash="20dcdca23208004f4bfddadfcb7143bc" path="caniuse/feature-speech-synthesis.json" + file hash="75bce10fae9b55ffe199dd6ecfdc0f7f" path="caniuse/feature-spellcheck-attribute.json" + file hash="c2ce31627699bf42bb1043e0d7737668" path="caniuse/feature-sql-storage.json" + file hash="9fd971a4b235391815212b127d06fd16" path="caniuse/feature-srcset.json" + file hash="85eb882fc80ace6ee3bb0f04dda36fea" path="caniuse/feature-stream.json" + file hash="a7bee7f689d2a91805d2017b33d35f9d" path="caniuse/feature-streams.json" + file hash="be47918f0f1c7eaa3042d5a174c8a09b" path="caniuse/feature-stricttransportsecurity.json" + file hash="2b2e478ad73ce30db62b7e7732373d83" path="caniuse/feature-style-scoped.json" + file hash="cefbbb6445c5c1289370c6869cedadf6" path="caniuse/feature-subresource-integrity.json" + file hash="059030d5118b7fa4318657cf6ebc5f0b" path="caniuse/feature-svg-css.json" + file hash="33170bba627abf1e3b8a87be80bd6ed6" path="caniuse/feature-svg-filters.json" + file hash="595a6f08eab1c21f85172c3144397bd0" path="caniuse/feature-svg-fonts.json" + file hash="573f8086b084896925053f3a8be55948" path="caniuse/feature-svg-fragment.json" + file hash="1f459c3ed75d027228467d7fa3a0b2e0" path="caniuse/feature-svg-html.json" + file hash="f8dcdbf5f533c591a42a6096eefedeb3" path="caniuse/feature-svg-html5.json" + file hash="2388da41cdb5efbe4f61084bb4bc7aa5" path="caniuse/feature-svg-img.json" + file hash="3aab3bd6e0bc1b8488d6109cb6d1038e" path="caniuse/feature-svg-smil.json" + file hash="463b6fe398d087f94b6c98b4bb1ead00" path="caniuse/feature-svg.json" + file hash="08f49b953155ec671ff9e2fbd41b4054" path="caniuse/feature-sxg.json" + file hash="7547fda7d59796b01cc85ce544ad6e46" path="caniuse/feature-tabindex-attr.json" + file hash="b30cc476f26477cb68c741a29fb02dc5" path="caniuse/feature-template-literals.json" + file hash="da54e0c43dc7bd73ba0000face59baaf" path="caniuse/feature-template.json" + file hash="515a223a5d807b6ed58b7f9fac78117a" path="caniuse/feature-temporal.json" + file hash="a1226a82a437acdba7171a12a6b8501f" path="caniuse/feature-text-decoration.json" + file hash="b7276a89a351cd11a4301fe521dbe7ea" path="caniuse/feature-text-emphasis.json" + file hash="045bf3936cdabce2b128fc53caf9cb7f" path="caniuse/feature-text-overflow.json" + file hash="112ec0b73167a85779f17600036c5a95" path="caniuse/feature-text-size-adjust.json" + file hash="04e5b1a0daf12655db10e3e6e8012174" path="caniuse/feature-text-stroke.json" + file hash="0d14442aecdc4d82e88ff3d708da457e" path="caniuse/feature-textcontent.json" + file hash="79e81416fae96d16c8afe448fe6f105a" path="caniuse/feature-textencoder.json" + file hash="6a4b3089238b29c993cfae01b2c79a9c" path="caniuse/feature-tls1-1.json" + file hash="fa456d65b1ce46c0f0c91ccb6cac4834" path="caniuse/feature-tls1-2.json" + file hash="f13107f515ae1a640d6f823d50d85ecc" path="caniuse/feature-tls1-3.json" + file hash="3250698ba8987e98644cbbede5e5390c" path="caniuse/feature-touch.json" + file hash="296172189fb022f81cf55f6a550c3827" path="caniuse/feature-transforms2d.json" + file hash="deb3c9753e100b6f0538c40a8d09ea7f" path="caniuse/feature-transforms3d.json" + file hash="575d25495b53d0aef784700845fa1de4" path="caniuse/feature-trusted-types.json" + file hash="9b0667e8ff8d95a2a7f43b4a431e2ce7" path="caniuse/feature-ttf.json" + file hash="2029af886df74fa6ea81e5cf8431803f" path="caniuse/feature-typedarrays.json" + file hash="f08ba19286d27d2a529ba4273551d071" path="caniuse/feature-u2f.json" + file hash="ed3b3ba182f85a9f651b9e9ed226cad1" path="caniuse/feature-unhandledrejection.json" + file hash="5805142713249b80360dba7c912a03c4" path="caniuse/feature-upgradeinsecurerequests.json" + file hash="b98e56e2d58bbde120054b829f99fe36" path="caniuse/feature-url-scroll-to-text-fragment.json" + file hash="d8284e338ef295700bdfab3a113040df" path="caniuse/feature-url.json" + file hash="334a812226a8b447e74d48bb72cf37e4" path="caniuse/feature-urlsearchparams.json" + file hash="f4f56903961bf852135424fdc5ff9596" path="caniuse/feature-use-strict.json" + file hash="41914cbf3698152f613ad555a1d48ea4" path="caniuse/feature-user-select-none.json" + file hash="7d6944bd9fa76405184de3d72aa7e312" path="caniuse/feature-user-timing.json" + file hash="f6acd69e0dcefe62488dbc095a3401ac" path="caniuse/feature-variable-fonts.json" + file hash="055ed6e22e5c237c6133d8446c989bec" path="caniuse/feature-vector-effect.json" + file hash="2e70154c21ecb215753e51648b45c106" path="caniuse/feature-vibration.json" + file hash="a6c18ead7a26167db585aed966b3196d" path="caniuse/feature-video.json" + file hash="59c15a69a5160c445b76472a24557f32" path="caniuse/feature-videotracks.json" + file hash="d3a4bd4e50657624f2c967c74fcdb466" path="caniuse/feature-view-transitions.json" + file hash="205668f300b7a94e1214192f96552e76" path="caniuse/feature-viewport-unit-variants.json" + file hash="ab44aa506206a0870ac0c17206a36bab" path="caniuse/feature-viewport-units.json" + file hash="f75a517f97c884a14b03c1416376a53b" path="caniuse/feature-wai-aria.json" + file hash="2c0ccc2a1228a562179248d88d75f932" path="caniuse/feature-wake-lock.json" + file hash="8e576f5c88fb3f1c86a32f937d321e4d" path="caniuse/feature-wasm-bigint.json" + file hash="5397a660115c2bd907df4597bfe0dbed" path="caniuse/feature-wasm-bulk-memory.json" + file hash="b46ff42b9d7fc8f0e007f2c644925ab4" path="caniuse/feature-wasm-multi-value.json" + file hash="117948ab2b0ed2b58fb1b9b276dd3bac" path="caniuse/feature-wasm-mutable-globals.json" + file hash="27d8fc26b3b297449e29aec74be208a4" path="caniuse/feature-wasm-nontrapping-fptoint.json" + file hash="8d5137873676534f78f51be4489a0418" path="caniuse/feature-wasm-reference-types.json" + file hash="b535e91bc8ae276852a4048f0bf0d918" path="caniuse/feature-wasm-signext.json" + file hash="7688d295c61d6301cb34e5af7b0e4a97" path="caniuse/feature-wasm-simd.json" + file hash="46cdb54fa13fb40526745c74f3ca83dc" path="caniuse/feature-wasm-threads.json" + file hash="101624be3018bf6b4c1aa35a076a2fda" path="caniuse/feature-wasm.json" + file hash="8f5cf44304f77713e5ceb4247d314521" path="caniuse/feature-wav.json" + file hash="b5403e75dfec81915c9b6214b85c2664" path="caniuse/feature-wbr-element.json" + file hash="56f5b7df30fd9066511c4cacc30813b3" path="caniuse/feature-web-animation.json" + file hash="1cf111b579e62433af0056f8c46e0ad6" path="caniuse/feature-web-bluetooth.json" + file hash="847a741fb6bf9ed9d096e6a074c7f53e" path="caniuse/feature-web-serial.json" + file hash="582b84ad76f8069ca25f03efbf4a0505" path="caniuse/feature-web-share.json" + file hash="2772fcfccfcf1cd1d4a20ca537f08da6" path="caniuse/feature-webauthn.json" + file hash="bdf126aee3aeb2ffc5af20e2cfee79af" path="caniuse/feature-webcodecs.json" + file hash="caedfdfb662a4b7c6bfbe1d6eb8b2c85" path="caniuse/feature-webgl.json" + file hash="3ece6ab053b99d3f705273bd052f7db9" path="caniuse/feature-webgl2.json" + file hash="68290a64e70a7b748f20e8d2cb0abb93" path="caniuse/feature-webgpu.json" + file hash="07377438d59e6d299b6c7adfcd3c2e9f" path="caniuse/feature-webhid.json" + file hash="8d86c18b633d7ff53af38eb805ff1dbc" path="caniuse/feature-webkit-user-drag.json" + file hash="008587c545286fb77f46403c251c6178" path="caniuse/feature-webm.json" + file hash="d72c9bcad636cbf5bc8778d58814e95e" path="caniuse/feature-webnfc.json" + file hash="48620150c3a01f83d564cbd5e7686a9a" path="caniuse/feature-webp.json" + file hash="8a36b4ee4dcb75a8098b96343839e1d6" path="caniuse/feature-websockets.json" + file hash="c936c8ab4e67f5fe0045b80228c8d4d8" path="caniuse/feature-webtransport.json" + file hash="b1794b9423dc912b7cb2efcf00341c13" path="caniuse/feature-webusb.json" + file hash="aa296dfba66ab8869cdc167d1b5c2e0a" path="caniuse/feature-webvr.json" + file hash="80e0895342e07e1a28d99195c16c36a5" path="caniuse/feature-webvtt.json" + file hash="3b3edd9154d1cfab87595ea0a2b65a72" path="caniuse/feature-webworkers.json" + file hash="2d04552e0df063dab4a80f9e8a819311" path="caniuse/feature-webxr.json" + file hash="9ede1178222c358bfbfa237cc6b2ed81" path="caniuse/feature-will-change.json" + file hash="df651086d73238c0d8bf6a80fa660b00" path="caniuse/feature-woff.json" + file hash="315c812a8eac50f16c6c3cde2bcb1fd5" path="caniuse/feature-woff2.json" + file hash="1b7a5446f3f384abc2660b8d0260b96c" path="caniuse/feature-word-break.json" + file hash="180a70c90224755bcac59ec1050d31c3" path="caniuse/feature-wordwrap.json" + file hash="6eb384df9701a141cf25f732b03eebb8" path="caniuse/feature-x-doc-messaging.json" + file hash="c3448e30a6dda1c3c182d94c98934eb0" path="caniuse/feature-x-frame-options.json" + file hash="6dd7f3f1fca8e27fe0054fc1f60ec399" path="caniuse/feature-xhr2.json" + file hash="6c57257818aa2ffd3aa12e526ae6b0a8" path="caniuse/feature-xhtml.json" + file hash="a9278d16ab8d5ee2bd74f64615a7ddee" path="caniuse/feature-xhtmlsmil.json" + file hash="eecd4ecece5161fb904254c92e853086" path="caniuse/feature-xml-serializer.json" + file hash="b562f585e0a01330472783044981e871" path="caniuse/feature-zstd.json" + file hash="afe22b5a193bef1d186791ccf53ccca0" path="headings/headings-accelerometer.json" + file hash="3d2611beb43f554944085656c8a9f13c" path="headings/headings-accname-1.2.json" + file hash="14b92cc27fdf26bc6b2103ae84ba46c5" path="headings/headings-afgs1-spec.json" + file hash="4a882b198b873278929173cf2e2c4044" path="headings/headings-ambient-light.json" + file hash="8369c6dc8e33b9c937064eef513e998c" path="headings/headings-anchors.json" + file hash="7da119490421de5a8f552fd4ba75aa7d" path="headings/headings-anonymous-iframe.json" + file hash="919956153359d79a838c54fe3568cf97" path="headings/headings-appmanifest.json" + file hash="02a60f8a6803129aad3e0c3014ea0923" path="headings/headings-attribution-reporting-api.json" + file hash="d724bf601bdfab486928e7ec7e4ced54" path="headings/headings-audio-output.json" + file hash="4a1009f70da1357baa1ea5d222134b8d" path="headings/headings-audio-session.json" + file hash="117bc3002839d8fa366c914fc2826ee0" path="headings/headings-audiobooks.json" + file hash="d803e806fc758675b9575aa9a89a9ea2" path="headings/headings-autoplay-detection.json" + file hash="16809d83ad64a8426cc375180fe25268" path="headings/headings-av1-avif.json" + file hash="9891682754bee2bcc4ae7576fbd5dbfb" path="headings/headings-av1-hdr10plus.json" + file hash="9cb612f99d63da531a9caaaba57aad02" path="headings/headings-av1-isobmff.json" + file hash="8436e6813dbbf7261d04cf746fe73cc6" path="headings/headings-av1-mpeg2-ts.json" + file hash="2f4cd766f6fd314301018cf7549003df" path="headings/headings-av1-rtp-spec.json" + file hash="8eb2b2e746598489ab8377e8ba50f5af" path="headings/headings-av1-spec.json" + file hash="08334965b37d2ba5d82e119f03269f7d" path="headings/headings-background-fetch.json" + file hash="2e0d60b6f2d0457b6b65cea0fed84ce3" path="headings/headings-background-sync.json" + file hash="a84fdfc04907fac1350e6c5729e9620b" path="headings/headings-badging.json" + file hash="6ba55df01560e593e80ecf88b2918ffd" path="headings/headings-battery-status.json" + file hash="26e47e59e12958971a1ca90928247aca" path="headings/headings-beacon.json" + file hash="3de2b5ac23ad35920697ad77c6701fea" path="headings/headings-capability-delegation.json" + file hash="2483339585dbf8a60fd8654fb5b7b14a" path="headings/headings-capture-handle-identity.json" + file hash="22346186434d4e2dd5ec831d486a178e" path="headings/headings-captured-mouse-events.json" + file hash="817e841ad19ca928c526885bbf12b45e" path="headings/headings-change-password-url.json" + file hash="1a844a6b53d7ed11e08ec739aaadd4f6" path="headings/headings-clear-site-data.json" + file hash="f0d1ccd8729e6a26999deb48c45c9e4b" path="headings/headings-client-hint-reliability.json" + file hash="6250b7704aa1b95cb6763f0f2980bc1d" path="headings/headings-client-hints-infrastructure.json" + file hash="d6b2eaa700f7665428a34e95db27c53a" path="headings/headings-clipboard-apis.json" + file hash="f43d96a862c4adffbf68d235b39f6ed5" path="headings/headings-compat.json" + file hash="3f16d5f9a69842225573fd5c8db99f32" path="headings/headings-compositing-1.json" + file hash="c12387c58cd295d313d5083e1fd8ee5e" path="headings/headings-compositing-2.json" + file hash="0fff3935ea1c0464ce23256732748832" path="headings/headings-compression.json" + file hash="619b821a254cdac442c7c58d56b6448e" path="headings/headings-compute-pressure.json" + file hash="a6da69016eaae1c1e4247a5551438ac9" path="headings/headings-console.json" + file hash="45bf58156f82471023f9302dd0dfc707" path="headings/headings-contact-picker.json" + file hash="ed072d3668c86930f62d539f603aec29" path="headings/headings-content-index.json" + file hash="d33f1860b23003853b0048fc6dfc7c95" path="headings/headings-contenteditable.json" + file hash="660d7fd5fa7a27a310107e48c6614756" path="headings/headings-cookie-store.json" + file hash="ccf9b745422be297e4d75d09bf0131d6" path="headings/headings-core-aam-1.2.json" + file hash="848a0d426abb17702ee433b9a518c939" path="headings/headings-crash-reporting.json" + file hash="8219e9950afec9015bae5304534fad21" path="headings/headings-credential-management-1.json" + file hash="d25d44019122df77b93c062d2cc98200" path="headings/headings-csp-embedded-enforcement.json" + file hash="ad77a73cee98dea0449fce91d5d30437" path="headings/headings-csp-next.json" + file hash="dfa441f96b203f2d635c5c46d438f620" path="headings/headings-csp3.json" + file hash="1458fb20c43f0618786dcb8e05755813" path="headings/headings-css-2022.json" + file hash="2cbf48468795fbdcb36bd9722068b9a4" path="headings/headings-css-2023.json" + file hash="3fdb25712548484dba808b2aa5eef159" path="headings/headings-css-align-3.json" + file hash="e90b3c2ed4338c4383b6e69f9172cf5a" path="headings/headings-css-anchor-position-1.json" + file hash="fcbc66807ab17467949517e5ab9c1988" path="headings/headings-css-animation-worklet-1.json" + file hash="b6ee343e007d90c8ab03ea3c4790ebd3" path="headings/headings-css-animations-1.json" + file hash="75fea64325b7e781504f28767257abbb" path="headings/headings-css-animations-2.json" + file hash="d06a3f7974216cf1551922747121574f" path="headings/headings-css-backgrounds-3.json" + file hash="56f9f4415f10f7e8fa1da8b698872cc6" path="headings/headings-css-backgrounds-4.json" + file hash="1139771ecbef66b8f2f935eeade9d1a6" path="headings/headings-css-borders-4.json" + file hash="cdd093cdddfa72841ed00429b35da802" path="headings/headings-css-box-3.json" + file hash="ed68ea248d2ee7c414dafc18160acc24" path="headings/headings-css-box-4.json" + file hash="2cbff5a9efaef3d5cb0843b7bb6e203b" path="headings/headings-css-break-3.json" + file hash="fc907fa30ac4715f391df6315f2b64b3" path="headings/headings-css-break-4.json" + file hash="6d35c0a33ddbb449023a222ae8d2fd81" path="headings/headings-css-cascade-3.json" + file hash="239b07d395ae279c17f0d37489d5a48b" path="headings/headings-css-cascade-4.json" + file hash="a4e889243c75cf432b60e545893e815e" path="headings/headings-css-cascade-5.json" + file hash="9c4c405ba93e9fa99d2f9a6964851236" path="headings/headings-css-cascade-6.json" + file hash="aebbf120e4de23ae3c67f6dd062dab59" path="headings/headings-css-color-3.json" + file hash="a205a89462f7e1c49b0cc63e4cc20ade" path="headings/headings-css-color-4.json" + file hash="0ed813da1338374cb3266dc79575e3ea" path="headings/headings-css-color-5.json" + file hash="991543a54c0d65ff1faf52dff4515463" path="headings/headings-css-color-6.json" + file hash="0b2632eed2013cb573f8239eee564f00" path="headings/headings-css-color-adjust-1.json" + file hash="bcb8d845d39adb3b7cf6fd0e52b67ff1" path="headings/headings-css-color-hdr.json" + file hash="3f79d9c5458d8412e5065bcdad9dae80" path="headings/headings-css-conditional-3.json" + file hash="2f714d5822351eb3a5fe23b2b275cde2" path="headings/headings-css-conditional-4.json" + file hash="ae267c6cf6d3bab5277204e124077445" path="headings/headings-css-conditional-5.json" + file hash="f169264a33a060a5c74fea593ff4c7a1" path="headings/headings-css-conditional-values-1.json" + file hash="9b42a8ccd6b3686954a9409adadbfa77" path="headings/headings-css-contain-1.json" + file hash="0b2d8569f16db7898e8fbe099c2efc92" path="headings/headings-css-contain-2.json" + file hash="3ff2ff425a12e7a73157e649ba76199a" path="headings/headings-css-contain-3.json" + file hash="ffbc206cbeca8228dd9312bc91bdcd8e" path="headings/headings-css-content-3.json" + file hash="91c54ede10c6078c98d3fb60b2c25d71" path="headings/headings-css-counter-styles-3.json" + file hash="f7ee451cab01550dddb21f5e424c0066" path="headings/headings-css-display-3.json" + file hash="3574471ec731fc9bb938c79e2e1cc8a7" path="headings/headings-css-display-4.json" + file hash="4b9acf6d3d23d74ac497714206c21c01" path="headings/headings-css-easing-1.json" + file hash="d0e7893822ebe44edf47331a1bab2601" path="headings/headings-css-easing-2.json" + file hash="1f9a32e0e1c4ce5f8a9c4c4ae2416b09" path="headings/headings-css-env-1.json" + file hash="ff2ed004ff660912ae76fea3693954a7" path="headings/headings-css-extensions-1.json" + file hash="d12b252602e33773c80d358b08b174f0" path="headings/headings-css-flexbox-1.json" + file hash="c7b1e833a3941288cd3072bdd2b75d0b" path="headings/headings-css-font-loading-3.json" + file hash="fac9481df5b1659181f2e946c4e5a94c" path="headings/headings-css-fonts-4.json" + file hash="a2f93cf82ecf184a93053440f619a5fd" path="headings/headings-css-fonts-5.json" + file hash="1fe44039ac0d77b68933f559d9863cf1" path="headings/headings-css-forms-1.json" + file hash="ad7a195e8bec9a34c5d06311498992e0" path="headings/headings-css-gcpm-3.json" + file hash="c04b74c7ae1c32b6d86f0ae7a205064b" path="headings/headings-css-gcpm-4.json" + file hash="326cfef6a9faff530c59767ddb7ed691" path="headings/headings-css-grid-1.json" + file hash="01ae9909310eef8f05592e6f2756acbd" path="headings/headings-css-grid-2.json" + file hash="d940551e1d7e6ddddc587a68ff20e448" path="headings/headings-css-grid-3.json" + file hash="5b409f245ef680c8e84438d894c78484" path="headings/headings-css-highlight-api-1.json" + file hash="ba27a847fe9af95ffbeae6662248b9f2" path="headings/headings-css-images-3.json" + file hash="450af9c65c91dd2a24dfb3a8186f851e" path="headings/headings-css-images-4.json" + file hash="674bd7e400a05f31786eff96eb56fb71" path="headings/headings-css-images-5.json" + file hash="76a7386e9cfd5e49524b1c2fc570cbc8" path="headings/headings-css-inline-3.json" + file hash="b3ab7980a53e2a959971eac0f122a1f5" path="headings/headings-css-layout-api-1.json" + file hash="c9d46784035b59c8363e98e120cf9277" path="headings/headings-css-line-grid-1.json" + file hash="36ab17569da68c9df845f8e893fafabc" path="headings/headings-css-link-params-1.json" + file hash="c5ead0a17274bb9ffc3d38731c8b2f54" path="headings/headings-css-lists-3.json" + file hash="418b0d349aafafefc4d039a1db439e33" path="headings/headings-css-logical-1.json" + file hash="6e44040492022a807df0a81584804961" path="headings/headings-css-masking-1.json" + file hash="524282819ef8d643da268fda07077e14" path="headings/headings-css-mixins-1.json" + file hash="7ecd07250adc7f66c792e6d87e22f6ac" path="headings/headings-css-multicol-1.json" + file hash="9e4266eb0c78d338be62cc3b1aef6768" path="headings/headings-css-multicol-2.json" + file hash="4b27e87b5f092d2c782b46b6070af512" path="headings/headings-css-namespaces-3.json" + file hash="2830b196daf90a3a3907fbb1da7eadc1" path="headings/headings-css-nav-1.json" + file hash="0a4f7cb4a4e7f0051728cbdfc66cc2c5" path="headings/headings-css-nesting-1.json" + file hash="3b6a17febf5b0cd48d68f16920e30e86" path="headings/headings-css-overflow-3.json" + file hash="2095af6b5da1a6d233e05cf0defaa60f" path="headings/headings-css-overflow-4.json" + file hash="084acb2af3a5b38bbea5ee205c87e421" path="headings/headings-css-overflow-5.json" + file hash="c2898c34a863580217850adc5ea6d3ab" path="headings/headings-css-overscroll-1.json" + file hash="c77d7a4bb3af9f5c1ffb525ac6029bcb" path="headings/headings-css-page-3.json" + file hash="0339b51bfaf73e9f3568ee5ee3d5be5f" path="headings/headings-css-page-4.json" + file hash="87f9af7185a573a0201a6f53b8f5c227" path="headings/headings-css-page-floats-3.json" + file hash="e62daabc78f1a6a03343d59b7d8afb6d" path="headings/headings-css-paint-api-1.json" + file hash="b9695c995b69b133b940ba9ea3048d8c" path="headings/headings-css-parser-api.json" + file hash="e92b85af508d4b2533efd2bf3b736a11" path="headings/headings-css-position-3.json" + file hash="6e8e34127f9d99bab638af892167636a" path="headings/headings-css-position-4.json" + file hash="3c5058a764dd33bd4bc4e7ffe4f26bc1" path="headings/headings-css-properties-values-api-1.json" + file hash="c058d201e9b60b5ce7a0fbf56b0505c9" path="headings/headings-css-pseudo-4.json" + file hash="15d41ce9adcf321580deb6348f324c54" path="headings/headings-css-regions-1.json" + file hash="9699f9ff352313f4a0b68c571782ca38" path="headings/headings-css-rhythm-1.json" + file hash="dc505d611bcbabc3fa93a388be2d1c20" path="headings/headings-css-round-display-1.json" + file hash="20cf133aa9069aa87ce08427223233c5" path="headings/headings-css-ruby-1.json" + file hash="2529947429e7288aed2392dcd9650c30" path="headings/headings-css-scoping-1.json" + file hash="8ea0ee6497cd7606b7c3b4144f10cee1" path="headings/headings-css-scroll-anchoring-1.json" + file hash="ca9fa686641440737d68f93a89d4dcb3" path="headings/headings-css-scroll-snap-1.json" + file hash="6cdc87ca210bad4bc5611af9149b7b1e" path="headings/headings-css-scroll-snap-2.json" + file hash="828c0069164755965c3818a9141fe92e" path="headings/headings-css-scrollbars-1.json" + file hash="f6e2ad0060b4e9250ea2906b5f5450b8" path="headings/headings-css-shadow-parts-1.json" + file hash="f6a25f328717b51339818e0b7987f810" path="headings/headings-css-shapes-1.json" + file hash="0156792f02790461e95c76091dfcdccc" path="headings/headings-css-shapes-2.json" + file hash="c470d0ec0143e3276175a37cd55c42f9" path="headings/headings-css-size-adjust-1.json" + file hash="7d016ef70559ea390320c6e93cbb4796" path="headings/headings-css-sizing-3.json" + file hash="564ee36d4284a1c67abb5f4d8710798d" path="headings/headings-css-sizing-4.json" + file hash="0ad3078594e46b2c9ba6e3d9275e92a0" path="headings/headings-css-speech-1.json" + file hash="e1af8a2dbf965bb481079007d7dce73d" path="headings/headings-css-style-attr.json" + file hash="52469883844fc9571c419218a5fdc49d" path="headings/headings-css-syntax-3.json" + file hash="9de1b5724f0342606798120febc3ed23" path="headings/headings-css-tables-3.json" + file hash="332755b7e7527a1772b77273ca3ffdd2" path="headings/headings-css-text-3.json" + file hash="ab2473839ad0b6dee730c297876692f5" path="headings/headings-css-text-4.json" + file hash="0997fec549bd6f4449e85d2b1ee293a4" path="headings/headings-css-text-decor-3.json" + file hash="17892ac22ec4f5795c56356ad46b0902" path="headings/headings-css-text-decor-4.json" + file hash="e25d1257ea530509e0bc5cccfd77b2a0" path="headings/headings-css-transforms-1.json" + file hash="9a63164f553fb8c098718f83b45a6198" path="headings/headings-css-transforms-2.json" + file hash="24a59c7fc670a69827956b52e73fc43b" path="headings/headings-css-transitions-1.json" + file hash="dac7b2b254efd217e765c06f54851799" path="headings/headings-css-transitions-2.json" + file hash="481850a717d15172058a8c5180455bca" path="headings/headings-css-typed-om-1.json" + file hash="752af9fa64c61cb9b793836a85347054" path="headings/headings-css-typed-om-2.json" + file hash="8a6696959e8e6150eec8d0327a339d44" path="headings/headings-css-ui-3.json" + file hash="80222c7c2e58fd72b437cce8053dee79" path="headings/headings-css-ui-4.json" + file hash="cb44dc775417345bca8a537b9a98da78" path="headings/headings-css-values-3.json" + file hash="c5cd6ee71af3e4cb27a493b24fe6e6bf" path="headings/headings-css-values-4.json" + file hash="eed5782b027b5a095f54b5b3c7308efe" path="headings/headings-css-values-5.json" + file hash="fea230382e3cf73f614e79df1f6dbf15" path="headings/headings-css-variables-1.json" + file hash="34aa78f0344690162fee0df4caa0d014" path="headings/headings-css-variables-2.json" + file hash="6e9d7f0a364e7447bca3df50df367fed" path="headings/headings-css-view-transitions-1.json" + file hash="7e26f34dd9b9eeecad50d60ad6a0578e" path="headings/headings-css-view-transitions-2.json" + file hash="5930aa1496754e0f791101abd935b79e" path="headings/headings-css-viewport-1.json" + file hash="137ebc79c3f586a74c5689e74975f72f" path="headings/headings-css-will-change-1.json" + file hash="01bf86304904fcbe498050aafcb6d166" path="headings/headings-css-writing-modes-3.json" + file hash="fb639704cb9d97d3ba2b4d9fa4d4ced7" path="headings/headings-css-writing-modes-4.json" + file hash="490feeb01b4b645698d9d1b3432945d0" path="headings/headings-css2.json" + file hash="e5ba2ae7c10ef6467a092433fc34561d" path="headings/headings-css22.json" + file hash="c92cdcffd04031d8adea81ccc66dde8e" path="headings/headings-css3-exclusions.json" + file hash="527435f04ed64138c95b0a2b9ae99989" path="headings/headings-cssom-1.json" + file hash="5016ac9c5c1fca798ea4985f82969fe8" path="headings/headings-cssom-view-1.json" + file hash="8966de874f494f27146c66d0d87079ef" path="headings/headings-datacue.json" + file hash="e98dc5f9c20c647dc4801419941f0c5e" path="headings/headings-deprecation-reporting.json" + file hash="515c5918158e10fa2e33e7658b829d46" path="headings/headings-device-attributes.json" + file hash="f2eaf8d1e152ccd5fec68e0914aebe2d" path="headings/headings-device-memory-1.json" + file hash="44d3f08a17ed9c710de80116a40165e8" path="headings/headings-device-posture.json" + file hash="66bbf77699cb501c957dd3e255efd34c" path="headings/headings-digital-goods.json" + file hash="99914b932bd37a50b983c5e7c90ae93b" path="headings/headings-digital-identities.json" + file hash="515630ca6a63a08cb9656fc45f62e133" path="headings/headings-direct-sockets.json" + file hash="08382a05c2c88992296cbc383cf67250" path="headings/headings-document-picture-in-picture.json" + file hash="e64fd9838e40021e76db06fb584c5b07" path="headings/headings-document-policy.json" + file hash="a5e2eca865b677dedb13bbd143a9260f" path="headings/headings-dom-level-2-style.json" + file hash="d197d1bbeb312941992c3309c90df498" path="headings/headings-dom-parsing.json" + file hash="d01a333bea0f3625a0147287a1291350" path="headings/headings-dom.json" + file hash="c86b13696ce1e6b5f0c82523788367fe" path="headings/headings-dpub-aam-1.1.json" + file hash="aa0bf0dc48605dac3cb2b81e9a066aa2" path="headings/headings-dpub-aria-1.1.json" + file hash="c8f3ec05485ddf20398b54ab31b5adc7" path="headings/headings-ecma-402.json" + file hash="d704e31fb415113dddc302724ec2e245" path="headings/headings-ecmascript.json" + file hash="9f71634b7ed0ca50266a8e762e08fa5a" path="headings/headings-edit-context.json" + file hash="d4bca8de17c5d205cfff5b8b586e4bd0" path="headings/headings-element-capture.json" + file hash="0721013013f7b03be8671657a0e8e03e" path="headings/headings-element-timing.json" + file hash="cdee7bd48b9ae2000334562eb3c5b34e" path="headings/headings-eme-hdcp-version-registry.json" + file hash="d42cc7a8b7c696427976daebb473501a" path="headings/headings-eme-initdata-cenc.json" + file hash="a6f7ab4b9c97335f78e46f969bbca7ba" path="headings/headings-eme-initdata-keyids.json" + file hash="6d32aeac6f2d49dd5dbabebf177ca6ca" path="headings/headings-eme-initdata-registry.json" + file hash="121808cf2eca050e9400768682dc05c8" path="headings/headings-eme-initdata-webm.json" + file hash="dc8a50caf2492bb5c064be968b7c9ee5" path="headings/headings-eme-stream-mp4.json" + file hash="0ea1480e2675ac5e7888671636537a7f" path="headings/headings-eme-stream-registry.json" + file hash="6d2f965fb77cebaa621759d198697852" path="headings/headings-eme-stream-webm.json" + file hash="9155e99e6ac45fd054b1b5974914b0a5" path="headings/headings-encoding.json" + file hash="107f8b5f78e0e7d75ca6eae65156b744" path="headings/headings-encrypted-media-2.json" + file hash="9d3a0df7d06081cdd4cc97aae4f32009" path="headings/headings-entries-api.json" + file hash="bba90fb6701f5f301ee9def39757239a" path="headings/headings-epub-33.json" + file hash="2df9d7bf0d62899e9c5c0ddf58ed1f87" path="headings/headings-epub-rs-33.json" + file hash="b9850748f9cdd141c262d44aa3b97663" path="headings/headings-essl.json" + file hash="92c5d594c5fef49c3950a8e2f649b03c" path="headings/headings-event-timing.json" + file hash="3a1d2ee0b780058841b061f9fb56d015" path="headings/headings-eyedropper-api.json" + file hash="6e00196c7cd2b21c3b26224438403dc4" path="headings/headings-fedcm.json" + file hash="9aa6d5ecd4a4149106fdbc9538e40b11" path="headings/headings-fenced-frame.json" + file hash="2c1cf7c4254415c3e8eaeab12b391466" path="headings/headings-fetch-metadata.json" + file hash="0c3e9bd2d8d00e036b0ec38193d82740" path="headings/headings-fetch.json" + file hash="f3469d41f7bfb6e1efdf65d834a20460" path="headings/headings-fido-v2.1.json" + file hash="cc311e586f5c8b6c6459e8d848cf1c99" path="headings/headings-file-system-access.json" + file hash="8a09fed7e210fa64439807877675dbc3" path="headings/headings-fileapi.json" + file hash="8496b1acda59ffbbcd761108cd21e2d0" path="headings/headings-fill-stroke-3.json" + file hash="f073aebaeb8d4af0bbe365427cebd2ca" path="headings/headings-filter-effects-1.json" + file hash="19dbfebe988073bf43116fcf44a7c877" path="headings/headings-filter-effects-2.json" + file hash="fad8c0f27c52c214d4ffe7ba04607d09" path="headings/headings-fingerprinting-guidance.json" + file hash="9074c29b9486626c1024548440180586" path="headings/headings-first-party-sets.json" + file hash="a9096514285b7bf03b6174ffb2a2e5ce" path="headings/headings-font-metrics-api-1.json" + file hash="cc917bef92680d19d7b03c54a945f859" path="headings/headings-fs.json" + file hash="a44a424b7894b3ea1315565cc28b108f" path="headings/headings-fullscreen.json" + file hash="0ffbbf0e168f888ec020686068cfa2ad" path="headings/headings-gamepad-extensions.json" + file hash="f13536d0a5d4319ec2ff17dc6f627476" path="headings/headings-gamepad.json" + file hash="e4b298b5fc88159b692d857a5320a398" path="headings/headings-generic-sensor.json" + file hash="bce5ae8bb78b90bc5f318cfc0eaadfe3" path="headings/headings-geolocation-sensor.json" + file hash="36c6c61b74ff85aa4bfacbf7f9cb063d" path="headings/headings-geolocation.json" + file hash="68b6824ea8380c2941e3b7cae87d983b" path="headings/headings-geometry-1.json" + file hash="84bb50d9bc962b051d8b270e49c01325" path="headings/headings-get-installed-related-apps.json" + file hash="0042d6b84dcdeb960cc46c360f880c50" path="headings/headings-gltf.json" + file hash="1f98c2bc7710d957ff204b606b46c456" path="headings/headings-gpc-spec.json" + file hash="bd41d163f2abc78c7a71336014c7f8a5" path="headings/headings-graphics-aam-1.0.json" + file hash="0e6e9488a5a5c7dff458eb45c1bdbd6d" path="headings/headings-graphics-aria-1.0.json" + file hash="0836f9646d2b10127bb443accab03099" path="headings/headings-gyroscope.json" + file hash="a223b234c09da7e05a5c124ec827e4a3" path="headings/headings-handwriting-recognition.json" + file hash="5b78f761e171fb74e29c004e00e0af97" path="headings/headings-hr-time-3.json" + file hash="8a813486ded9b91943892157118b2ded" path="headings/headings-html-aam-1.0.json" + file hash="c09c9b66911a46a1bbc98ed9749a1188" path="headings/headings-html-aria.json" + file hash="aeebad66990908552c8369de70c63bd3" path="headings/headings-html-media-capture.json" + file hash="5635f592aea8f774bf8b066ce7c62505" path="headings/headings-html.json" + file hash="a88fb2bce5acc7ab6e115c9f74d224e3" path="headings/headings-i18n-glossary.json" + file hash="5c2d451b1ea4953470ca6153024a0bc0" path="headings/headings-idle-detection.json" + file hash="6fea9bad0a5ea6632d6d498920457456" path="headings/headings-ift.json" + file hash="6f9ef9be34badbfc4a42c401a77b1b73" path="headings/headings-image-capture.json" + file hash="226341e31273d17c5da1c1a6166b1ea5" path="headings/headings-image-resource.json" + file hash="f4c200b3cd443327455af8b30be6d97a" path="headings/headings-indexeddb-3.json" + file hash="dc806b9fca6b1d95201e13e3f555441a" path="headings/headings-infra.json" + file hash="96d4c4d8f08904a29184a2c3ba3d75c0" path="headings/headings-ink-enhancement.json" + file hash="6fd8286979ab8b5041f7725fd4544351" path="headings/headings-input-device-capabilities.json" + file hash="71807badace6b1c9d80fb905db0140ff" path="headings/headings-input-events-2.json" + file hash="cc337cdddec273377567946e8d8f8a12" path="headings/headings-intersection-observer.json" + file hash="5461aed614c5ba550b4373841aedaf39" path="headings/headings-intervention-reporting.json" + file hash="aac72e3577ea3c69650d49332b4464de" path="headings/headings-is-input-pending.json" + file hash="eebb8817ddaa38cb6b112e6f518fd3c8" path="headings/headings-js-self-profiling.json" + file hash="b9bfed7d1c362ffa618c2ead85c5a201" path="headings/headings-json-ld11-api.json" + file hash="318483a5a31a9f16fd929fe88cdcbd81" path="headings/headings-json-ld11-framing.json" + file hash="e07f75bf035caf4e0624135dfd6de51f" path="headings/headings-json-ld11.json" + file hash="64041d19caa08c5327f7ba8b8960978b" path="headings/headings-keyboard-lock.json" + file hash="ac3c75dd589c8fdda8d64efbe2460b00" path="headings/headings-keyboard-map.json" + file hash="0f5d7bd3e02aea85dc192038177eeba4" path="headings/headings-largest-contentful-paint.json" + file hash="2bed02191326da1d768db5086e57cd6e" path="headings/headings-layout-instability.json" + file hash="369e020bbc2606a0c5491a421287961d" path="headings/headings-local-font-access.json" + file hash="de6fab571b647730f8dbeff15ab51e88" path="headings/headings-long-animation-frames.json" + file hash="6d278b5e00349012edb9dc130f68dd30" path="headings/headings-longtasks-1.json" + file hash="e22807551d16dcb6d68ab4bf6b3da393" path="headings/headings-magnetometer.json" + file hash="84c9f392e68cfeb98ac063a4364dcdd7" path="headings/headings-managed-configuration.json" + file hash="b6f9cc46ecef3479672cf9b71ce4fc8f" path="headings/headings-manifest-app-info.json" + file hash="25a6438bffa34a708494dd068ab088d2" path="headings/headings-manifest-incubations.json" + file hash="c8b5dbcf1aa0e1b6eb3b4c66a5123260" path="headings/headings-mathml-aam.json" + file hash="408393aea3c8116119776209dcb1c573" path="headings/headings-mathml-core.json" + file hash="84af397a41306d0f3407e37b66fd17bc" path="headings/headings-mathml4.json" + file hash="f958d7c415ce10b875323075d233a0ab" path="headings/headings-media-capabilities.json" + file hash="1262c3fc5d3e2b7af1f2472ce3e6830f" path="headings/headings-media-feeds.json" + file hash="e1c9f6197a433bfb9a519c018dd824f8" path="headings/headings-media-playback-quality.json" + file hash="1a32d5f8871604ff2ac0dfa3f973cc4e" path="headings/headings-media-source-2.json" + file hash="33c1cef57526940ae9ce8ac51bee21fa" path="headings/headings-mediacapture-automation.json" + file hash="f780de90df0c3984e5927216f1ea250c" path="headings/headings-mediacapture-fromelement.json" + file hash="8be83e1de9ab4fa4d3f41ee797b20033" path="headings/headings-mediacapture-handle-actions.json" + file hash="5fbeebd9812f6d416fa6c5e384bb9ec8" path="headings/headings-mediacapture-region.json" + file hash="f3886bea0e183bf3d39d78dcad071cbb" path="headings/headings-mediacapture-streams.json" + file hash="f3fa4134adc2b86e0aecd8a49e62e7d5" path="headings/headings-mediacapture-transform.json" + file hash="123ea0ba4b70e9001b369c12b96838ca" path="headings/headings-mediacapture-viewport.json" + file hash="4c5d07c0c21e9970f8b8469b0e3b3287" path="headings/headings-mediaqueries-3.json" + file hash="6dc4a0a984045c15fb1ccf59fdc1f19a" path="headings/headings-mediaqueries-4.json" + file hash="e9e54c2be8a7a8aadf6fe6d519e02645" path="headings/headings-mediaqueries-5.json" + file hash="3a87589d639a0dbc63b88a0672e5809a" path="headings/headings-mediasession.json" + file hash="0ae4e700dd75f4c2dbe273fffba1acb6" path="headings/headings-mediastream-recording.json" + file hash="954f781d736c1fc68a6a34c76f5bd91b" path="headings/headings-mimesniff.json" + file hash="3753e5def4bdf4cde8510f2738b62e75" path="headings/headings-miniapp-lifecycle.json" + file hash="2da471dc2cf59954b8c5592fe99e6739" path="headings/headings-miniapp-manifest.json" + file hash="2516ce538cb3d0495921eca178f308d5" path="headings/headings-miniapp-packaging.json" + file hash="a668f959f102103b798503a8803933ae" path="headings/headings-mixed-content.json" + file hash="e67750c57ea7bc1d78e22ef8dd699b56" path="headings/headings-model-element.json" + file hash="12fbecd89d81f1f63f067a85b3ed68da" path="headings/headings-motion-1.json" + file hash="c300bb38022f1dc7a1efeb724b0fe2a4" path="headings/headings-mse-byte-stream-format-isobmff.json" + file hash="03ed4c5397b8a0dcf13a77e38f71e9cc" path="headings/headings-mse-byte-stream-format-mp2t.json" + file hash="513eb9c6e2c411351ac0d48801685260" path="headings/headings-mse-byte-stream-format-mpeg-audio.json" + file hash="ec924da2f8fa9dd547ca65bb860125b6" path="headings/headings-mse-byte-stream-format-registry.json" + file hash="9d381e4397c7b539742f6205739adbce" path="headings/headings-mse-byte-stream-format-webm.json" + file hash="a058d767860d8baf3e88a4f1ed6c8801" path="headings/headings-mst-content-hint.json" + file hash="a7108e5f23601e27f0be869153aa367d" path="headings/headings-n-quads.json" + file hash="c7d747ec4a22fbff48769826cb92699e" path="headings/headings-nav-tracking-mitigations.json" + file hash="765d028464105497c3c95ddb6eb9244b" path="headings/headings-navigation-timing-2.json" + file hash="3051260625c7e1e61e1a67d976cb024c" path="headings/headings-netinfo.json" + file hash="c06e05c1eb7e11f8627b148d0b00e94a" path="headings/headings-network-error-logging.json" + file hash="3f29eecba9b908c3a2b97166bcaeab0c" path="headings/headings-network-reporting.json" + file hash="c134449a8e01603a9865262716b21c8f" path="headings/headings-no-vary-search.json" + file hash="3447160c7cb76dddbec0072fbd85cadb" path="headings/headings-notifications.json" + file hash="7479cdbc4cb4fa5ab0cbeac5ef0506cc" path="headings/headings-openscreenprotocol.json" + file hash="f15f65f7643772cffa2c971b65faf0d6" path="headings/headings-orientation-event.json" + file hash="9ef42cdf571f5836b701b989b77a7a0d" path="headings/headings-orientation-sensor.json" + file hash="dc08a378c7fb13f1be2c2e02873e14a8" path="headings/headings-overscroll-scrollend-events.json" + file hash="8cafdbb4230f3d3d4f5df0b675b0d4e2" path="headings/headings-page-lifecycle.json" + file hash="8064835b98dc2ddd555ccf274927bdeb" path="headings/headings-paint-timing.json" + file hash="ea300f8cc6c3cf58ef8e70e614eeead2" path="headings/headings-partitioned-cookies.json" + file hash="b6015ca815fd0dafe8471287757172f5" path="headings/headings-passkey-endpoints.json" + file hash="dd3b7379eef6b2658399a161d193308a" path="headings/headings-payment-handler.json" + file hash="531c63b8fca30fc1042a054a3d906f56" path="headings/headings-payment-method-id.json" + file hash="eed91c95ea6fabff4c5681c85de4618a" path="headings/headings-payment-method-manifest.json" + file hash="a4b83c4572f224a50906844314a09f63" path="headings/headings-payment-request.json" + file hash="aa370d7c82a091b683726dec71f8d60f" path="headings/headings-performance-measure-memory.json" + file hash="ad70611ffb186458c6d0c7f88a3a1971" path="headings/headings-performance-timeline.json" + file hash="bcad5a1d7d9e1d4192831c80c079b79b" path="headings/headings-periodic-background-sync.json" + file hash="7b4195070abf0992979388f930005314" path="headings/headings-permissions-policy-1.json" + file hash="97f5b0b9e4f52d9c8fa35896f7142fd2" path="headings/headings-permissions-registry.json" + file hash="9e155e5f65cb90430ea5f67ec903d5db" path="headings/headings-permissions-request.json" + file hash="36c38b51f6753535f8e47608cdc08509" path="headings/headings-permissions-revoke.json" + file hash="1fe34a968d323762595a284b02cbeeb8" path="headings/headings-permissions.json" + file hash="db0767e682d090b014ca57177add9235" path="headings/headings-picture-in-picture.json" + file hash="d59bc7312b6089dcc43c90bf9de4f280" path="headings/headings-png-3.json" + file hash="bdfdc6381281e57375a54f022add2e32" path="headings/headings-pointerevents3.json" + file hash="6718ae29f454c9b66f0ce882c5dcc729" path="headings/headings-pointerlock-2.json" + file hash="2e051d6411442c64a5b608bb19352b2c" path="headings/headings-portals.json" + file hash="7fd98d787917175fbc931e1cda04e11d" path="headings/headings-prefer-current-tab.json" + file hash="6128ed4567b82261cfdd17e414f34ad3" path="headings/headings-prefetch.json" + file hash="848d4161cb2d4ee566a34f29688f587c" path="headings/headings-prerendering-revamped.json" + file hash="c24db552b71d2149a44dd82c4639a8d8" path="headings/headings-presentation-api.json" + file hash="4c54fe0733cdd1a0c556bd8579f1f00d" path="headings/headings-private-aggregation-api.json" + file hash="effef60644cf26fee23e6b31b67326bc" path="headings/headings-private-click-measurement.json" + file hash="6e29de29c9cb2b136e81beda7e5da9cd" path="headings/headings-private-network-access.json" + file hash="b8b4018152ab9003b4cf8215033a281f" path="headings/headings-promises-guide.json" + file hash="1f74b6e0f9661f8c3c5e19ed85ef3df5" path="headings/headings-proximity.json" + file hash="e9588d76b65c00c70ea46bc2cc1bbf66" path="headings/headings-pub-manifest.json" + file hash="03f486ab551e58ecd1148e48c5bd7677" path="headings/headings-push-api.json" + file hash="1164731a43a65d4d3b04e002331a6a96" path="headings/headings-quirks.json" + file hash="eca87db4eb772e27f9f49899c65c9a81" path="headings/headings-raw-camera-access.json" + file hash="d92fd75903987fba2c6edef2c667e0b3" path="headings/headings-rdf-canon.json" + file hash="314e0cc0a10d5a5e35cc1091fb4ea6c9" path="headings/headings-rdf12-concepts.json" + file hash="9297af931209d41db643b956ee6808e3" path="headings/headings-rdf12-n-quads.json" + file hash="e458c44e1763c4e933768d8682102bdd" path="headings/headings-rdf12-n-triples.json" + file hash="6798625621bf1aceea1652b637f8359d" path="headings/headings-rdf12-schema.json" + file hash="7e7f864ccf7926142d6bb0f7f3043e1f" path="headings/headings-rdf12-semantics.json" + file hash="36e1f60d3c41504f025cba2482286569" path="headings/headings-rdf12-trig.json" + file hash="49521af8935170cf9d53bc5d15c2b8bb" path="headings/headings-rdf12-turtle.json" + file hash="954cddf78d0322cbac70da013a75e0da" path="headings/headings-rdf12-xml.json" + file hash="c5f85978c8aae5513ee1780adda3b060" path="headings/headings-real-world-meshing.json" + file hash="fa565192ba35c9f2ebb14fc64708223c" path="headings/headings-referrer-policy.json" + file hash="32292ce1b6415c625d5639a697b301c2" path="headings/headings-remote-playback.json" + file hash="f07a673b5b94c8d04f8ae4d35e2fe918" path="headings/headings-reporting-1.json" + file hash="7ecf42125459b9ee0286084f1fd3df9d" path="headings/headings-requestidlecallback.json" + file hash="6f7ff1bde76b107ddd77751b3e9da1af" path="headings/headings-requeststorageaccessfor.json" + file hash="6fd71808de9744fc1165b2594448e3b7" path="headings/headings-resize-observer-1.json" + file hash="9f44b0528ab6c88e0eded6f27b5d597a" path="headings/headings-resource-timing.json" + file hash="ccee19e34ab851a159e1533850450f07" path="headings/headings-responsive-image-client-hints.json" + file hash="605d31517b57e879ea91473d7faabaa2" path="headings/headings-rfc6265.json" + file hash="f6f7a6babc75c8eb2eb0593a92bc0635" path="headings/headings-rfc6265bis.json" + file hash="0bfc0243e30f45096c28068392b324cd" path="headings/headings-rfc6266.json" + file hash="8278f69cf6d254b1bd105c0ea6848fda" path="headings/headings-rfc7230.json" + file hash="cd4ec2e521a2242f6cc12cdd37f125f0" path="headings/headings-rfc7231.json" + file hash="812360c270945778dbc6fc40a4184a04" path="headings/headings-rfc7232.json" + file hash="376ec7eb629bf6a54d905617f45392d0" path="headings/headings-rfc7233.json" + file hash="2356509844c3c6435e16123b5ba3cecb" path="headings/headings-rfc7234.json" + file hash="daf1bf025a835df5d8626817bd0ee04b" path="headings/headings-rfc7235.json" + file hash="a65b974bd5f35199fad8223498a044bb" path="headings/headings-rfc7616.json" + file hash="2ed97c7e07235cf3b74ed7c7c27cc40b" path="headings/headings-rfc7617.json" + file hash="ba2dc7d09ee12eb31716bca53e1a186b" path="headings/headings-rfc7725.json" + file hash="72ab48cfff3fa547200c7b01a3b93b0b" path="headings/headings-rfc7838.json" + file hash="699f8bbfda8c50bca12f8fb89dc82325" path="headings/headings-rfc8246.json" + file hash="2b9096850cd4c4936ebda59ceaf56037" path="headings/headings-rfc8288.json" + file hash="dc48ea6406de1517c1fc017667b527e4" path="headings/headings-rfc8297.json" + file hash="685bb1141e7bdf9882dc6642d92843b9" path="headings/headings-rfc8470.json" + file hash="55b464d2880e4a821ec2b0fcb2547a6d" path="headings/headings-rfc8878.json" + file hash="f9cf3e96dd8d2ea5c1f56f554d9b0738" path="headings/headings-rfc8942.json" + file hash="0214ac8fd50add7a67a3dbc4232dbf60" path="headings/headings-rfc9110.json" + file hash="0cf908267fe65f0e0a7f516d8048c26a" path="headings/headings-rfc9111.json" + file hash="f69d5f531774ae24d732372916ef7cb6" path="headings/headings-rfc9112.json" + file hash="0fb14bfc43059baccc83c10ed01a9878" path="headings/headings-rfc9113.json" + file hash="2ab1237b6a9dd2614479ee0b1445fb62" path="headings/headings-rfc9114.json" + file hash="ddc554424db7decedd317c80d5caeae1" path="headings/headings-rfc9163.json" + file hash="57809d0ace52dbb56dff98720de3a791" path="headings/headings-rfc9218.json" + file hash="8a8788e04bb4bf77d4f8fff15f07be13" path="headings/headings-rfc9530.json" + file hash="f72d3c2f18714f780da85059685e7042" path="headings/headings-saa-non-cookie-storage.json" + file hash="ab6f646c04d1419aecb6ecf06899b2ee" path="headings/headings-sanitizer-api.json" + file hash="05f4b18235a21f1a8304f472c8e81873" path="headings/headings-savedata.json" + file hash="3b4f5aefe1d40d4a91329920c2d99097" path="headings/headings-scheduling-apis.json" + file hash="ef3c57336cc2343a4acbac0068a2b5f3" path="headings/headings-screen-capture.json" + file hash="e641cfac0fe96759324eb174243de540" path="headings/headings-screen-orientation.json" + file hash="89b8ea2169b34cf9e855f2ca0c05cfae" path="headings/headings-screen-wake-lock.json" + file hash="07f26f3e91583a6f06fbbe6562833c9b" path="headings/headings-scroll-animations-1.json" + file hash="deef55797ac7363d76322299f3636bc6" path="headings/headings-scroll-to-text-fragment.json" + file hash="d97193247dc8fc2510c62acb9c89e1c6" path="headings/headings-secure-contexts.json" + file hash="333dd286690bd33a3034afa35ced921b" path="headings/headings-secure-payment-confirmation.json" + file hash="f92db8283e514729a1007dbb9dcc9b24" path="headings/headings-selection-api.json" + file hash="a73850830f9b44778a1dae5a73f6d49b" path="headings/headings-selectors-3.json" + file hash="e686e774afd262195ffaa877d09d1903" path="headings/headings-selectors-4.json" + file hash="6ff9205db93e216765d481fdd75a81e8" path="headings/headings-selectors-5.json" + file hash="1a1a19b02cfdabff8e23d6bb2eec494e" path="headings/headings-selectors-nonelement-1.json" + file hash="388ce614c44d297cecf98e2d7c1b72c2" path="headings/headings-serial.json" + file hash="5586199b524a717be8c7163b7b2ab7e9" path="headings/headings-server-timing.json" + file hash="497d15e3748f9a9ecffb299e4b6de9ea" path="headings/headings-service-workers.json" + file hash="75208944a90fde26cd6e611f4fd4e931" path="headings/headings-shape-detection-api.json" + file hash="2ca2381022e06356920b9d5b395f800d" path="headings/headings-shared-storage.json" + file hash="33e58fa5b0b62b18bd65fcaa7d3e461a" path="headings/headings-sms-one-time-codes.json" + file hash="ab408db31a20d2fa9cb33da3c6ca039f" path="headings/headings-soft-navigations.json" + file hash="72d9dbe576a1f24cf715fefc91c85c52" path="headings/headings-sourcemap.json" + file hash="5946c8fcb0dda3765287dd6ab95a6a43" path="headings/headings-sparql12-concepts.json" + file hash="599b5ad78045bff24035ab537735274f" path="headings/headings-sparql12-entailment.json" + file hash="8670b33175be09e563a793e8a616f76f" path="headings/headings-sparql12-federated-query.json" + file hash="fd0e1391c63ee5606e3d3a3bf15dd30a" path="headings/headings-sparql12-graph-store-protocol.json" + file hash="9d5ab4854a894e372350c9820c0812cb" path="headings/headings-sparql12-protocol.json" + file hash="d4207afc79c4198e97f0d7d3f133dd29" path="headings/headings-sparql12-query.json" + file hash="2f2af34197cc1c41eb9c90f7b090288d" path="headings/headings-sparql12-results-csv-tsv.json" + file hash="dcc41a4212d7b4cba136fcd4b538797a" path="headings/headings-sparql12-results-json.json" + file hash="fb3088848df05fc5e131137366e73cf5" path="headings/headings-sparql12-results-xml.json" + file hash="4aaea8a7aba1e17953ed700572facd93" path="headings/headings-sparql12-service-description.json" + file hash="5da66110940bd11882d3d3d205c18e19" path="headings/headings-sparql12-update.json" + file hash="ae62ac6161675afd9068ec7d82cf0c29" path="headings/headings-speculation-rules.json" + file hash="21075f737e1d077db2744ab747264d10" path="headings/headings-speech-api.json" + file hash="fa300173946d3a3cb355807af20f73a0" path="headings/headings-sri.json" + file hash="d154f6c6875d25da2168776f715e27cc" path="headings/headings-storage-access.json" + file hash="a51fe5fb31ffcf76ee4c2740a54c4475" path="headings/headings-storage-buckets.json" + file hash="90bb36cb84cb676f3c5f1849cd387d67" path="headings/headings-storage.json" + file hash="f5b7ae8a7090e2d9105c5ebe1481c5ec" path="headings/headings-streams.json" + file hash="1838d3cc27102da35f6870fd5cb89807" path="headings/headings-svg-aam-1.0.json" + file hash="05f3a6146d9be3acfb70a02ffd53e90f" path="headings/headings-svg-animations.json" + file hash="397eba8c3da6d214303e1db49e7bf96f" path="headings/headings-svg-integration.json" + file hash="dc94abfe6e9a8ea0f9ca165520263e37" path="headings/headings-svg-strokes.json" + file hash="b65a9c834f2244ebe8289b9079df5396" path="headings/headings-svg11.json" + file hash="8c0e651153f0d76e10901236ea6222b3" path="headings/headings-svg2.json" + file hash="8caf586cc4a1e11eb41e62c4a65f7776" path="headings/headings-tc39-array-from-async.json" + file hash="68655666afdf1c7614a9f3429ac929f7" path="headings/headings-tc39-array-grouping.json" + file hash="750e37a08793e85380430ce23acff807" path="headings/headings-tc39-arraybuffer-base64.json" + file hash="ce9c2fe396b0ad20505cdcef25de55f0" path="headings/headings-tc39-arraybuffer-transfer.json" + file hash="6ad76537cb66af811c33dd8152039ae0" path="headings/headings-tc39-async-explicit-resource-management.json" + file hash="9f70b18c78e52573a1d6d979085119be" path="headings/headings-tc39-canonical-tz.json" + file hash="001d9fdac23b94f4ab5fd97040cb2df9" path="headings/headings-tc39-decorators.json" + file hash="fab505135b2c52d9b4a9daa08b6bb218" path="headings/headings-tc39-dynamic-code-brand-checks.json" + file hash="7167cbfe14ce5d9002605885113373f8" path="headings/headings-tc39-explicit-resource-management.json" + file hash="462fa915dcd5f9066a4be230bb62cdf8" path="headings/headings-tc39-float16array.json" + file hash="1b9e25d96492b8ecec00e407639bf79a" path="headings/headings-tc39-import-attributes.json" + file hash="2cd9732189ea0f684f4a2a1de9388922" path="headings/headings-tc39-intl-duration-format.json" + file hash="a445e583b25f4e1504f27ec1ba9c58a4" path="headings/headings-tc39-intl-locale-info.json" + file hash="c23eeeb8775d691a5f6934c111997674" path="headings/headings-tc39-iterator-helpers.json" + file hash="1e98d3089c356832d92a5df32a93fbb0" path="headings/headings-tc39-json-modules.json" + file hash="e312fedc81686006e940c42ea54a40ac" path="headings/headings-tc39-json-parse-with-source.json" + file hash="e811c238bc1c8c0c8ab23044f6eaac75" path="headings/headings-tc39-promise-try.json" + file hash="f03eca4df48442f1c87470fe7f27ae4e" path="headings/headings-tc39-promise-with-resolvers.json" + file hash="cf63bcbf6841d841dd0dbc5ebf58f6bc" path="headings/headings-tc39-regex-escaping.json" + file hash="96bbc95558a1ce69e0629a489645b5b9" path="headings/headings-tc39-regexp-modifiers.json" + file hash="68c8f6991d469e5ba19f170aef91e8e7" path="headings/headings-tc39-set-methods.json" + file hash="dca8f351d475d22036fd3407cbf5b662" path="headings/headings-tc39-shadowrealm.json" + file hash="f86895d1e55e162bbec783e619d5e996" path="headings/headings-tc39-source-phase-imports.json" + file hash="c0ab9cfd411ff1c60fb3cfe90c616a27" path="headings/headings-tc39-temporal.json" + file hash="99914b932bd37a50b983c5e7c90ae93b" path="headings/headings-test-methodology.json" + file hash="44b94d6008d640f5d93ea859716087e4" path="headings/headings-testutils.json" + file hash="52c8ce39cddcdaa40f89eb45090a51b4" path="headings/headings-text-detection-api.json" + file hash="d5587da9457022c4c1ce41f37850705a" path="headings/headings-timing-entrytypes-registry.json" + file hash="d857389948fd014e60d8035079ca2c19" path="headings/headings-topics.json" + file hash="802f775903c9aa8695b9018a8ebc5d5a" path="headings/headings-touch-events.json" + file hash="c345ca4657fdb480615740f3fa7f97bf" path="headings/headings-tracking-dnt.json" + file hash="0886ef10ffaca712c0dec75f6e92ee6b" path="headings/headings-trust-token-api.json" + file hash="99fd7365c0be16a49004bdf320803667" path="headings/headings-trusted-types.json" + file hash="2ff1c4b28edfacde4ff68adcd15a4be0" path="headings/headings-turtledove.json" + file hash="1250f71fcce280096101155062838e42" path="headings/headings-ua-client-hints.json" + file hash="6bab848a5e21a937f31c540002cd3ba4" path="headings/headings-uievents-code.json" + file hash="6a68d550b3c69cb16271192ee3521e5f" path="headings/headings-uievents-key.json" + file hash="608604baa3b8d993f6c92aae0d454374" path="headings/headings-uievents.json" + file hash="33aa0e9e7552b4a6884dd0edad110a72" path="headings/headings-upgrade-insecure-requests.json" + file hash="92056dc1b8d661e56a9178001323eb61" path="headings/headings-url.json" + file hash="bfe8c637cd4d434912188666924e24ec" path="headings/headings-urlpattern.json" + file hash="5d6838c90011072217a1ac27a0cf9b69" path="headings/headings-user-preference-media-features-headers.json" + file hash="63f0007e5923418b230ec34f15b58080" path="headings/headings-user-timing.json" + file hash="3be4366702d2779b87392f0e49832e1c" path="headings/headings-vc-data-integrity.json" + file hash="9ac96ccc7b118758856ed5a31de900af" path="headings/headings-vc-data-model-2.0.json" + file hash="a127cbed54400c90c5d92c84dfad0501" path="headings/headings-vibration.json" + file hash="01a6ad922ad4642cc0a55cba7fe27771" path="headings/headings-video-rvfc.json" + file hash="ac3827641363f64da6315665b2316bc8" path="headings/headings-virtual-keyboard.json" + file hash="712f9cc3fe8a80d8c1173a34a7887959" path="headings/headings-w3c-patent-policy.json" + file hash="c2f38ff90a987f02ecb3ff23d6b0ddb2" path="headings/headings-w3c-process.json" + file hash="ad19f4cb976a283c2aef8bfcdd17d746" path="headings/headings-wai-aria-1.2.json" + file hash="87fe3b57c947355c99f66facb9b21b8e" path="headings/headings-wai-aria-1.3.json" + file hash="9195119a3b7048a21a1fd51ab7942e0f" path="headings/headings-wasm-core-2.json" + file hash="011610c4e3fece7a90199ff178f754d5" path="headings/headings-wasm-js-api-2.json" + file hash="ea16a419ae2f8306a9e41148baaa1677" path="headings/headings-wasm-web-api-2.json" + file hash="d2cf3bdb3d4b89fa8a4f0fe058b0c5dc" path="headings/headings-web-animations-1.json" + file hash="c0795ce601346b765d0438074e11973d" path="headings/headings-web-animations-2.json" + file hash="f2f004bbfaad767de413eaa3b0f2dbfe" path="headings/headings-web-app-launch.json" + file hash="60ab26e88808114df82e4221fe098c7d" path="headings/headings-web-bluetooth-scanning.json" + file hash="f198171520e46ea1d03a39f5aaf1f018" path="headings/headings-web-bluetooth.json" + file hash="d5ef3da012406c69be494d56db8a6150" path="headings/headings-web-locks.json" + file hash="c7c0d1761ae9c0a1638abd66469b77cc" path="headings/headings-web-nfc.json" + file hash="c23723f00c38cbb07f70824a9cfcc668" path="headings/headings-web-otp.json" + file hash="6866926b974ca4d10c6cacc0ace2b6bf" path="headings/headings-web-preferences-api.json" + file hash="0228736d715e98c36dc792f696148e0a" path="headings/headings-web-share-target.json" + file hash="9a90c8e1e3ae12cbd0729731579ef449" path="headings/headings-web-share.json" + file hash="1f12e34d0d249efc4fa14b0aa5dd0b95" path="headings/headings-web-smart-card.json" + file hash="9cd740b197b68b370bb159cf3eab4212" path="headings/headings-webaudio.json" + file hash="97171b3c6e853b3fc5cefb17f5eedea9" path="headings/headings-webauthn-3.json" + file hash="2158b89b056c2a9df5712882d41157dd" path="headings/headings-webcodecs-aac-codec-registration.json" + file hash="e77a6187160f8e91a73c66b76e9a8a3c" path="headings/headings-webcodecs-alaw-codec-registration.json" + file hash="21922aa44581308e68cd67cb7380c57a" path="headings/headings-webcodecs-av1-codec-registration.json" + file hash="7a3cecf20ae2b0e7e9220271141bdefc" path="headings/headings-webcodecs-avc-codec-registration.json" + file hash="2263ed340ce287be30f2e5af01fa069a" path="headings/headings-webcodecs-codec-registry.json" + file hash="99f5ecc887a348b17c42bf0e07ee9394" path="headings/headings-webcodecs-flac-codec-registration.json" + file hash="f14c578bd7e5efa0675dcf323bf496ee" path="headings/headings-webcodecs-hevc-codec-registration.json" + file hash="ee9b2c1e95a21c06ccae63f1af87cae0" path="headings/headings-webcodecs-mp3-codec-registration.json" + file hash="12682cd1757f960150e270eca45c19a1" path="headings/headings-webcodecs-opus-codec-registration.json" + file hash="d0df3efe8bfd1ad2a64c6d0989ebce6a" path="headings/headings-webcodecs-pcm-codec-registration.json" + file hash="ce7c0a4995132fea505671e158bea91d" path="headings/headings-webcodecs-ulaw-codec-registration.json" + file hash="2b3023a15f652e0d97ae254ccc329d1d" path="headings/headings-webcodecs-video-frame-metadata-registry.json" + file hash="59b7e80fe7ed7700faf962d1a1dee5c4" path="headings/headings-webcodecs-vorbis-codec-registration.json" + file hash="dbd1adfad16c67c4fbf7302ccf131637" path="headings/headings-webcodecs-vp8-codec-registration.json" + file hash="10acf084bf63deecacd57266a89a0358" path="headings/headings-webcodecs-vp9-codec-registration.json" + file hash="ab7cd86f17d0a89b0d194460993b8db2" path="headings/headings-webcodecs.json" + file hash="4da58015004d71580836b13fe6413ea7" path="headings/headings-webcrypto-secure-curves.json" + file hash="8c37aee3557e89b89482abb0e75737a5" path="headings/headings-webcryptoapi.json" + file hash="b95b1f798b7e6517cc3cca5757cedae1" path="headings/headings-webdriver-bidi.json" + file hash="65e068ada033b7361c6f90df78cf7dac" path="headings/headings-webdriver2.json" + file hash="7709575a3759401f3a61ae3b3189255e" path="headings/headings-webgl1.json" + file hash="999b2553b96aa429f0632ae50545ceef" path="headings/headings-webgl2.json" + file hash="b4e640e60175c93aeda4a1b3adf5e6fb" path="headings/headings-webgpu.json" + file hash="de155171fd1d2ccadd88e471638d8c2c" path="headings/headings-webhid.json" + file hash="130b12d8178fcce32ba3621ae9f8bb68" path="headings/headings-webidl.json" + file hash="ac1cba59ea3b7b1d9df172545a345281" path="headings/headings-webmidi.json" + file hash="b1abd066fe89e3227fa405e90569afe1" path="headings/headings-webnn.json" + file hash="a10418ed326dd5defe40ff37de3eb3b0" path="headings/headings-webp.json" + file hash="7ddaccd92fba40aaa418cb090b770d67" path="headings/headings-webpackage.json" + file hash="b64ee30ec7c5f9b35d2adb140a4b7cfa" path="headings/headings-webrtc-encoded-transform.json" + file hash="051bb3099294835e28053f03c034601c" path="headings/headings-webrtc-ice.json" + file hash="9a66b5808b91f407760639ca85e6feec" path="headings/headings-webrtc-identity.json" + file hash="35be3d090e8e04b760e8584f2fd7ac8e" path="headings/headings-webrtc-priority.json" + file hash="efce72cb04ef30bf8744d15437655acf" path="headings/headings-webrtc-stats.json" + file hash="8b0b3869590e7d62e552855fd02b7f98" path="headings/headings-webrtc-svc.json" + file hash="a30903c436c23c961cec9cb1b42f6f90" path="headings/headings-webrtc.json" + file hash="be32a3efdd42019d7014a0866e6519b1" path="headings/headings-websockets.json" + file hash="be9bfb3f833b945a9db7881819bebd20" path="headings/headings-webtransport.json" + file hash="62e67303878771dbdd9052ad01abcbf5" path="headings/headings-webusb.json" + file hash="dccb263073b027aa46ad6014912dcdb9" path="headings/headings-webvtt1.json" + file hash="0c030277f0c64537f7876b78725fb13e" path="headings/headings-webxr-ar-module-1.json" + file hash="39515af120ac8a5b29c7372b5f9f5a8c" path="headings/headings-webxr-depth-sensing-1.json" + file hash="cd8091c5ff892c7f816bc5c85069326d" path="headings/headings-webxr-dom-overlays-1.json" + file hash="3399b5fff6c4fc36fe94f4e6b5b87338" path="headings/headings-webxr-gamepads-module-1.json" + file hash="d0ad4857ce2e4f9290dab977fbfbbb92" path="headings/headings-webxr-hand-input-1.json" + file hash="a4481d35a7f8ec23ae300642229c3247" path="headings/headings-webxr-hit-test-1.json" + file hash="2758bb6cb55f17da98c4049ae8735abd" path="headings/headings-webxr-lighting-estimation-1.json" + file hash="22f5dda5326823eaeb4141fdb663fc97" path="headings/headings-webxr-meshing.json" + file hash="0918158823c7889b1714b1f10521af22" path="headings/headings-webxr-plane-detection.json" + file hash="69305b920f9a68b5b92f2c6cafb5ef65" path="headings/headings-webxr.json" + file hash="cfc33fef84dfc9c1bd3b07f045b7e0dc" path="headings/headings-webxrlayers-1.json" + file hash="d3c711096990abb573a170da4b663a8d" path="headings/headings-wgsl.json" + file hash="0ec8b3c705afc98b37c2b73122237858" path="headings/headings-window-controls-overlay.json" + file hash="dc23f92dd9b21ac44964491e65c89a5e" path="headings/headings-window-management.json" + file hash="195da9d208a1126645522917482d4c0b" path="headings/headings-woff.json" + file hash="7cf0d7c69510a1b1e6166f5d160a8199" path="headings/headings-woff2.json" + file hash="f7024131e4a5fff74c94adc87b64845f" path="headings/headings-xhr.json" + file hash="9c95c6cbfc4ba42605d8d4ca15f501d7" path="mdn/accelerometer.json" + file hash="f4dee1d0090f32a9f26df3a518e27113" path="mdn/ambient-light.json" + file hash="2e00f42a6e4570f75a9d0e725f8d0eea" path="mdn/appmanifest.json" + file hash="25a291c4603f62bae6b651891543b16e" path="mdn/aria.json" + file hash="3ec52276514e6bf51c3e7b62577897f5" path="mdn/audio-output.json" + file hash="df76886a709cd8a61e55b9764eebf377" path="mdn/autoplay.json" + file hash="908087c13255eb8ed3545e471c8a2daf" path="mdn/background-fetch.json" + file hash="d815881c801196b2238f56b79b2219d5" path="mdn/background-sync.json" + file hash="102d562a23a2fd132b3cfd5ae671c416" path="mdn/badging.json" + file hash="4f78a112184e4b5d55ea7b538acfe516" path="mdn/battery.json" + file hash="ab34fca6fd9ec66b94af8e6a5404d1d1" path="mdn/beacon.json" + file hash="82f3712153f7f8217dceec30e6cf5827" path="mdn/clear-site-data.json" + file hash="2a2960eb9893f04c9e823afeeb7ecf14" path="mdn/clipboard-apis.json" + file hash="190a70215ba7eae0f180328c9ad7b38c" path="mdn/compat.json" + file hash="dc59a4e31ebbda400a68dc3252be20da" path="mdn/compositing.json" + file hash="01c40e9904fee3d3eff04d4972afbda7" path="mdn/compression.json" + file hash="fad0c414de7c3056942ffd47c1da0ec5" path="mdn/console.json" + file hash="5a74351fb5780fb3d2a1b08b2f5bfc31" path="mdn/contact-api.json" + file hash="5a74351fb5780fb3d2a1b08b2f5bfc31" path="mdn/contact-picker.json" + file hash="6bca5dd18cfceb606f83f1401f362f02" path="mdn/content-index.json" + file hash="5ba389f41768d84b9ed9fc3a102f7b38" path="mdn/controls-list.json" + file hash="e1becd809d70507a5d479b4790215202" path="mdn/cookie-store.json" + file hash="c1f9838a645648cb3b25359f7890a288" path="mdn/crash-reporting.json" + file hash="e60c2c7c34e66f6cc58e4b3324032425" path="mdn/credential-management.json" + file hash="5ba74e9823a8d0d30fa3c90221d172f7" path="mdn/csp-embedded-enforcement.json" + file hash="79727d7dd622b31689f9b2813b364024" path="mdn/csp.json" + file hash="f0cc46287c38a8b590495b8b1385c64e" path="mdn/css-align.json" + file hash="475070ac14376eda90957b312155bf10" path="mdn/css-animations-2.json" + file hash="73961de72280b110feb5f1da324b6fe5" path="mdn/css-animations.json" + file hash="08b86ee0c99622643bac437fcd10152b" path="mdn/css-backgrounds-4.json" + file hash="2a1c825c0a2e822cec58bec276066412" path="mdn/css-backgrounds.json" + file hash="baa47f4dcc395a939e0a2d34c633f141" path="mdn/css-box-4.json" + file hash="8d1ce6a1eb7418d67282e2809a7cb10a" path="mdn/css-box.json" + file hash="b67bda3b91c871055a220e40bee8e5a8" path="mdn/css-break.json" + file hash="76260e121028b91526c7a22593d58c07" path="mdn/css-cascade-5.json" + file hash="5f605d296071f5c4396a5f54788a283f" path="mdn/css-cascade.json" + file hash="7b65ef6086d7bf9c1ee40989a200b0a6" path="mdn/css-color-5.json" + file hash="09cddd6ef6bb63a6900b2e5827a7dce7" path="mdn/css-color-6.json" + file hash="c269ab02ed68283c4c05f694b1a688f8" path="mdn/css-color-adjust.json" + file hash="42122bf3156de941dfbb5191839d5167" path="mdn/css-color.json" + file hash="27c2a48cb00389ccae3333cf0e1189b6" path="mdn/css-conditional-3.json" + file hash="1407568f510b7d4e0e9245fec4c8a231" path="mdn/css-conditional-4.json" + file hash="2a7b408927532793601f996e3d5ce231" path="mdn/css-contain-3.json" + file hash="e7bc25d20c90fe639fd7ea885da7d130" path="mdn/css-contain.json" + file hash="50c8e549ff0369cd15d2a1c2e38fe9a5" path="mdn/css-content.json" + file hash="6fe1613ef8826aa4a775e68cbd880bdf" path="mdn/css-counter-styles.json" + file hash="fade6d4f817534ac0fd0ec95b10b2d00" path="mdn/css-display.json" + file hash="a34e4ba408feede03c6b399a2a4daa71" path="mdn/css-easing.json" + file hash="4ffb8eb7918f82f941df8aea702f02a0" path="mdn/css-env.json" + file hash="90572b70d8fbe3e6945674d13620b26d" path="mdn/css-flexbox.json" + file hash="ecf232cca2f951e3ec5ec28d9a07b8cf" path="mdn/css-font-loading.json" + file hash="5c111cee24c83bf067ea7e9b642f6ffc" path="mdn/css-fonts-5.json" + file hash="d6fac5781e58d16865ce29ad8916194a" path="mdn/css-fonts.json" + file hash="4c3b00762e35d023c2fc21b3d66471aa" path="mdn/css-grid-3.json" + file hash="9257ba21b2711639e0fe6f9a29600646" path="mdn/css-grid.json" + file hash="50eb4bcf4ab94f72d9f41e12d8cb7857" path="mdn/css-highlight-api.json" + file hash="10c48094574bb65f09a94d823bea5561" path="mdn/css-images-4.json" + file hash="17038b57bf2fc6e0965e74f25aea3452" path="mdn/css-images.json" + file hash="023462ed7e3d2e208e328a074edecc41" path="mdn/css-inline.json" + file hash="a56a8160e5843d4cf4b421cbee9f226f" path="mdn/css-lists.json" + file hash="832d04d4bb099f26cd6dfb6a8e2cf77c" path="mdn/css-logical.json" + file hash="59a3edbc6a7f9bd9a245055660c48254" path="mdn/css-masking.json" + file hash="a82cd3f924d2c24fd03981ec088063cb" path="mdn/css-mediaqueries.json" + file hash="8fc1164b3a753637dd523a4885f6f073" path="mdn/css-multicol.json" + file hash="05361e2328e9f3779da85c6849e22011" path="mdn/css-namespaces.json" + file hash="c1f9838a645648cb3b25359f7890a288" path="mdn/css-nesting.json" + file hash="efeae8edc40f106d5792dba4bf22dcce" path="mdn/css-overflow-4.json" + file hash="bc690cbe6f68d8c8d6344bf155b6c5b9" path="mdn/css-overflow.json" + file hash="4d6ad3a36edc41968e8865988aed634e" path="mdn/css-overscroll.json" + file hash="d8b7f50aa964c1c6050dbf23b1f4255e" path="mdn/css-page.json" + file hash="7e8d69ced792cbb90f8773fe4c20c2dc" path="mdn/css-paint-api.json" + file hash="8da7a81f8630055af3afccc99bdd61d3" path="mdn/css-position-4.json" + file hash="c2359494705858ac8c570d82e4e8c0ed" path="mdn/css-position.json" + file hash="f37952c0c4a7925c09dcd30d87823e5e" path="mdn/css-properties-values-api.json" + file hash="49f080fab8b5383b0f4c6a878da12bef" path="mdn/css-pseudo.json" + file hash="7b58b7243d61cd2c20362515a389581e" path="mdn/css-regions.json" + file hash="acce3c7ccc7b788c1c2a5b8b05ae4e1a" path="mdn/css-rhythm.json" + file hash="b2c85c5cd13f00841a14091bced8772e" path="mdn/css-ruby.json" + file hash="c50e27b8f4012a3014494678c6000940" path="mdn/css-scoping.json" + file hash="ba02dde60eb2d10a1014103de75c8d29" path="mdn/css-scroll-anchoring.json" + file hash="1f056af37adb77d5479b9656bd65c576" path="mdn/css-scroll-snap.json" + file hash="15e513849720455e91a886f052932466" path="mdn/css-scrollbars.json" + file hash="283399cecb160ebb660664c1fb6ff337" path="mdn/css-shadow-parts.json" + file hash="bcafa2be57047cbaddb1d79e10096a2a" path="mdn/css-shapes.json" + file hash="73264c68731f4cdfbf954da6f6ecaf5b" path="mdn/css-size-adjust.json" + file hash="90a1cb51dffa481603dcf4adfb5a343e" path="mdn/css-sizing-3.json" + file hash="4fa1aa819c8150269f5c388e0f3e4437" path="mdn/css-sizing-4.json" + file hash="26d4c00c9f4cc8e2685f4a3f4b3795ab" path="mdn/css-text-4.json" + file hash="7da9a813cc67af6701c79dbfe9d9909e" path="mdn/css-text-decor-4.json" + file hash="1bb702e095a794715ed7fe8d7c2a9aa6" path="mdn/css-text-decor.json" + file hash="d49720b7239f1279859062400a872dc9" path="mdn/css-text.json" + file hash="6211749d6200d756bc17bf64542e22d1" path="mdn/css-transforms-2.json" + file hash="7aeb8b112818a43c3b506c6ed45d3346" path="mdn/css-transforms.json" + file hash="6c3aacd90f0a35a68bceabe8c37ed8d0" path="mdn/css-transitions-2.json" + file hash="c728a49eed8967236f1ce2ab89393465" path="mdn/css-transitions.json" + file hash="9ef3bf32500bb70d151b229340ab41c3" path="mdn/css-typed-om.json" + file hash="b8c35d2d398f1d37bfbc5bf1f8aa4b48" path="mdn/css-ui.json" + file hash="80cc85e5fc8420ea76a530f97cfbe63f" path="mdn/css-values-5.json" + file hash="6713cbcd7ad267a89f70e32577ae0913" path="mdn/css-values.json" + file hash="76f43d5232a1954619c4b128f4a864ef" path="mdn/css-variables.json" + file hash="52ac9e18e011807e4aa6491cf0744552" path="mdn/css-view-transitions.json" + file hash="e6d47df5a50428661a348810a2222270" path="mdn/css-will-change.json" + file hash="236245bb8b17385787059efe9b2ad334" path="mdn/css-writing-modes.json" + file hash="93423a14d3ba7cb14c6acfd0b743cac3" path="mdn/css2.json" + file hash="b270f6cde444427b522b989b4dbd4a88" path="mdn/cssom-view.json" + file hash="48fa7e066e58ca9a85b1f5c6448224ea" path="mdn/cssom.json" + file hash="96366313ab2d58555509937e357f2500" path="mdn/custom-state-pseudo-class.json" + file hash="2e6726e333643dd7e3c4b73fe026cc30" path="mdn/deprecation-reporting.json" + file hash="5bdecb176c43f4145acb2514f8826862" path="mdn/dom-parsing.json" + file hash="b968b5430daff17948ed5f9e2641cd40" path="mdn/dom.json" + file hash="9f1927d8d32f1c7e708ec4b7495200d0" path="mdn/draft-ietf-httpbis-rfc6265bis.json" + file hash="9eda97695017c0363b2bc3de97854ffc" path="mdn/ecma-402.json" + file hash="ae7205a070f3847a0488ee1c235d23a2" path="mdn/ecmascript.json" + file hash="ebc8d24e646912daaa3e0674a5f328c3" path="mdn/element-timing.json" + file hash="ae5b80608ccaeec2cfd98e341ea8bd2f" path="mdn/encoding.json" + file hash="f429a7a6f1afb70260a5d59df0abd893" path="mdn/encrypted-media.json" + file hash="0a60b243868aa267993f61d59829d9f2" path="mdn/entries-api.json" + file hash="2cd0d4ecd90147d738d0013409304222" path="mdn/event-timing.json" + file hash="8f054e6b796d5f33a12ab375b5b2594c" path="mdn/eyedropper-api.json" + file hash="faf99c4ba5de51fed02ca71f5e6677f5" path="mdn/fedcm.json" + file hash="064fa8408eedb2f4768dcc9828094dd3" path="mdn/fetch-metadata.json" + file hash="e137e4035458e0ff66aacc84a1ce3542" path="mdn/fetch.json" + file hash="48e0153d4df460758a98de6cc3151668" path="mdn/file-system-access.json" + file hash="b4ba4d6fb94bd7fbd697456b94b41bd8" path="mdn/file-system.json" + file hash="2043c956bf7fd5f9b423809676af84eb" path="mdn/fileapi.json" + file hash="ec67ac2c4b2b5d6a1d3b558506dc2781" path="mdn/filter-effects-2.json" + file hash="bfca9d5e5827c9b2b76b9d1a8bb9cfff" path="mdn/filter-effects.json" + file hash="20761e5f9138f9c2f60c1a2f52de9acd" path="mdn/fullscreen.json" + file hash="741f72442ad7d0e541ffed1cf571e06c" path="mdn/gamepad-extensions.json" + file hash="58d9b7a4ad7d5ee2bc1140d1c42d7907" path="mdn/gamepad.json" + file hash="e03c82f454f55b2844e0160247376209" path="mdn/generic-sensor.json" + file hash="46dba552b58cb58a81b5e6d0cee13485" path="mdn/geolocation-api.json" + file hash="85c77fb6f0ca795bf664a42a74e305d5" path="mdn/geometry.json" + file hash="c137308331d179d62c6f3a79560090e1" path="mdn/gpc.json" + file hash="ed997819abd47961a7af365459fb4fbc" path="mdn/gyroscope.json" + file hash="136569cd5083c903c09637c6644427ae" path="mdn/hr-time.json" + file hash="0b3a2b1d2ead4f534c7589a1304e0f63" path="mdn/html-media-capture.json" + file hash="7f723a4df87d6a63863da41b69771d68" path="mdn/html.json" + file hash="6cb3d2eb1cb155ab4b3ceb66e8cfd3e0" path="mdn/idle-detection.json" + file hash="4d29961be716a7d3ff5c5c56e6675f22" path="mdn/image-capture.json" + file hash="9ddd536447e2831f2cded436b8d62ed2" path="mdn/indexeddb.json" + file hash="d58656cfbdbd2de5b0a300e00cd15ea8" path="mdn/input-device-capabilities.json" + file hash="90a215bc81168087ad577f6b0c19ada8" path="mdn/input-events.json" + file hash="c36a2f527f32b1c9c17679af2ae688fc" path="mdn/intersection-observer.json" + file hash="8dbbdee9a7f3caeb1946bd46251651ce" path="mdn/intervention-reporting.json" + file hash="c029f6b8d35d43222a8accb8cf4752f1" path="mdn/keyboard-lock.json" + file hash="980c4d31a46b88bfdee5fcf146ad6bd8" path="mdn/keyboard-map.json" + file hash="b4ea8adb8815dea1763fb884e0d0c740" path="mdn/largest-contentful-paint.json" + file hash="851d19176dda12db472e469e391be145" path="mdn/layout-instability.json" + file hash="407680e562eea9e0c976ef61ba3e7b17" path="mdn/local-font-access.json" + file hash="ae412ac0a93d8d5f24653e697c8162d7" path="mdn/longtasks.json" + file hash="1067cae38421a5e026ee589aaeb2002c" path="mdn/magnetometer.json" + file hash="6963cb9b6373c69e1afcd9f4c995ae6f" path="mdn/manifest-app-info.json" + file hash="7ec0e16e1b012af0723b093d09cea5df" path="mdn/manifest-incubations.json" + file hash="33c9e032118a878c4b04d64407da1fb0" path="mdn/mathml.json" + file hash="6106fabcd6dffe223580e24ca7ff427b" path="mdn/media-capabilities.json" + file hash="5dd0480913c70949535dd038ca372d86" path="mdn/media-playback-quality.json" + file hash="b1b4f6059388562657af698762ce1f83" path="mdn/media-source.json" + file hash="40ae0778abab00fd0211e4156fb73a03" path="mdn/mediacapture-fromelement.json" + file hash="bb058248b84f6f5c3dbf739cf5c06b06" path="mdn/mediacapture-screen-share.json" + file hash="2d809ffa73cffc38be3ca649508cdc5a" path="mdn/mediacapture-streams.json" + file hash="642e262db4417f94f2f0b295ed159042" path="mdn/mediacapture-transform.json" + file hash="cd0def4a64fa5f3047895a2afec10786" path="mdn/mediaqueries-5.json" + file hash="7f30f51b0a537614d329f8247103bcfa" path="mdn/mediasession.json" + file hash="d0212dea1f2c8341eb4eff3713a697ba" path="mdn/mediastream-recording.json" + file hash="55f569786b4021866b9834e6afe9687b" path="mdn/motion.json" + file hash="0fb8e5f7f1cf796dc9a3434059aad1f0" path="mdn/navigation-timing.json" + file hash="affaaa0df852148bc5646513b8282ec9" path="mdn/netinfo.json" + file hash="6308ca45dc406c638bae470e0647b33f" path="mdn/network-error-logging.json" + file hash="8b9f285b97b1eee73b078f068252be7f" path="mdn/notifications.json" + file hash="a9aaa2ca817ae8bf2e168133addaed13" path="mdn/numberformat.json" + file hash="da75e617ce21e77112e9dde468d8ae78" path="mdn/orientation-event.json" + file hash="bd5635228585fd704a652ff3a0c7e0f8" path="mdn/orientation-sensor.json" + file hash="9a47cd1395b5307095db8dfb8ff5ff6a" path="mdn/page-lifecycle.json" + file hash="2b53ded9b275672622f6a6163bb6a5b2" path="mdn/paint-timing.json" + file hash="6fdf7364fdac4b53a4c0323a29094c30" path="mdn/payment-handler.json" + file hash="168810e81ef18473824243f97c019d10" path="mdn/payment-request.json" + file hash="c661f6fc004155f9360b06f47aa57b69" path="mdn/performance-measure-memory.json" + file hash="7bc1d694483415022338c7acbbcdd989" path="mdn/performance-timeline.json" + file hash="4dc1bc4a05ad9cb3a079d7df3ce25917" path="mdn/periodic-background-sync.json" + file hash="76d212483debf01ce77ba95c0547a570" path="mdn/permissions-policy.json" + file hash="dbc387bda9fde1cebdd264c7d843797f" path="mdn/permissions.json" + file hash="d1c975e9005d99ca209f9dad6cecda72" path="mdn/picture-in-picture.json" + file hash="bca25d44fe8b793990ec32b7a53430ee" path="mdn/pluralrules.json" + file hash="dc77bfba4776697353a5f3a71407932d" path="mdn/pointerevents.json" + file hash="5a589cead11621414c6fff21e6ad8dba" path="mdn/pointerlock.json" + file hash="c00df155e71b94daed9bfcd9993283b3" path="mdn/portals.json" + file hash="664306ba7a8f4d074ea679963d13208e" path="mdn/presentation-api.json" + file hash="35ebd018df3654180cd61e1558d458d7" path="mdn/priority-hints.json" + file hash="6dc10dd9985c9b3816065122bad966a4" path="mdn/proposal-array-from-async.json" + file hash="adaf01d7c52ea248466fe1f988e89900" path="mdn/proposal-array-grouping.json" + file hash="31b9c1ca6ed6bbb859eff47cbaa7539f" path="mdn/proposal-atomics-wait-async.json" + file hash="c1f9838a645648cb3b25359f7890a288" path="mdn/proposal-intl-duration-format" + file hash="091ef93403ae3fbe970fb721ee2edb3e" path="mdn/proposal-intl-enumeration.json" + file hash="0cd021b76f0793119115e36af69cba31" path="mdn/proposal-intl-locale-info.json" + file hash="5af4ef35c0ffdd8356c442839c157928" path="mdn/proposal-is-usv-string.json" + file hash="78b7889ccfbd091ecb4feaa5b6a67457" path="mdn/proposal-regexp-legacy-features.json" + file hash="4e37f3b0bed3270781ffb7bb8f690d64" path="mdn/proposal-resizablearraybuffer.json" + file hash="881d912791fb93acc342fe4e13c8cbfd" path="mdn/push-api.json" + file hash="3068f2d9a859c0fc2e65801ec8497534" path="mdn/referrer-policy.json" + file hash="8eebcf837bea734377fe28abd6f15c4c" path="mdn/remote-playback.json" + file hash="6e43685decce9d18b6f454cea9b113be" path="mdn/reporting.json" + file hash="bb846d5331072f9c6ff11604158b08b5" path="mdn/requestidlecallback.json" + file hash="923825e6d30f4a3e95f6063d54b8a124" path="mdn/resize-observer.json" + file hash="caf3fd4edc2cea22a5fb19534ba53bfa" path="mdn/resource-timing.json" + file hash="a345a274c1a1069ae0997d46e8a3b887" path="mdn/rfc2397.json" + file hash="d81425d0c458db83554122a9d7263a13" path="mdn/rfc6265.json" + file hash="8bce7e41c5d4fdbc37a825dff067c020" path="mdn/rfc6266.json" + file hash="85fdcfad21a44622c8deb544da6e5274" path="mdn/rfc6454.json" + file hash="65c8a0ffd2b2c651cfe23053b78fb775" path="mdn/rfc6797.json" + file hash="17adb860f9287d5c2893eb70a731beeb" path="mdn/rfc7239.json" + file hash="eea733984bbf806af20bb8a412c94c3d" path="mdn/rfc7578.json" + file hash="e488129e849bb78935cc10fe9ead01b3" path="mdn/rfc7838.json" + file hash="3e6a3772fe29e826468daa50c16c3eba" path="mdn/rfc8246.json" + file hash="c7dfdefe4331e5404585c37106b31652" path="mdn/rfc8288.json" + file hash="3a0209fc8e7e9444f4ad53e293ca89ff" path="mdn/rfc8942.json" + file hash="db1c16ecc26791e47a69bbf6506635ad" path="mdn/rfc9110.json" + file hash="5ee10f8c28338b8e0a60631a1e4ed776" path="mdn/rfc9111.json" + file hash="18ca7146bfe2ba9657fc6a9fb3f573a7" path="mdn/rfc9112.json" + file hash="19bb98e4076173328fea6a4dd8a62c5f" path="mdn/rfc9113.json" + file hash="5a036ba20ffebcbd2f4a66d17a13908b" path="mdn/sanitizer.json" + file hash="0288b439697471c35163fadc49a43f4a" path="mdn/savedata.json" + file hash="6d788c4c335d806669f7fe0b0b67f3bf" path="mdn/scheduling-apis.json" + file hash="2dff1316e34db8ee42ffb3d976797abd" path="mdn/screen-orientation.json" + file hash="15eaf0589968810ab38c2c24298d7e04" path="mdn/screen-wake-lock.json" + file hash="0ce3f21fc21949e1bf37111cf6ccea5b" path="mdn/scroll-animations.json" + file hash="53121d02afe2c6dfde75ae1e2fc59ba6" path="mdn/scroll-to-text-fragment.json" + file hash="466c9716905c966eae1fb7943dff7045" path="mdn/selection-api.json" + file hash="4967e1a19f0d299d8cd4f5d8ed2e0719" path="mdn/selectors.json" + file hash="f21c3d58abc05319c41095dc2af793fe" path="mdn/serial.json" + file hash="a18fc0b678ce6e9c943cbdb4152da64b" path="mdn/server-timing.json" + file hash="b8f1ca9d8f237e770d6ffe1bddf5e57c" path="mdn/service-workers.json" + file hash="b830fde98477eeed97ce604db2154dc3" path="mdn/shape-detection-api.json" + file hash="d8c203b4979628020e3c62a3a41cffa1" path="mdn/sourcemaps.json" + file hash="f4c7c8a46520b5f0d76faa24b64b7195" path="mdn/speech-api.json" + file hash="5ef646e83f77f215efa6019f8f21ed59" path="mdn/storage-access.json" + file hash="4b862072b22908b5cc4dd30edfe4eead" path="mdn/storage.json" + file hash="cc2a7ce06979b822d9cff9c4ebdfc9ec" path="mdn/streams.json" + file hash="6362bf034ad8c018f4933b279d740d4e" path="mdn/subresource-integrity.json" + file hash="c8afc22b80abaacc093dfa1df2c0118e" path="mdn/svg-animations.json" + file hash="c6e24ddec818c0d3fc236b80bc61a09f" path="mdn/svg.json" + file hash="3248c75bbb07a8fac029e80389efef95" path="mdn/touch-events.json" + file hash="35c8c792fa4ed763af2f39017239ce78" path="mdn/trusted-types.json" + file hash="3e817e4b0189c5ac4d5c19a7903cf507" path="mdn/ua-client-hints.json" + file hash="084d2e63bb8a0def2d330f624b6f6112" path="mdn/uievents.json" + file hash="e3136d509dfbb2256460146ed3845c27" path="mdn/upgrade-insecure-requests.json" + file hash="5723c54bfba6e491e16498ca4fd1015d" path="mdn/url.json" + file hash="e714fb76f5ad6a2e81c3646d5ff9a102" path="mdn/urlpattern.json" + file hash="ce1f3d09231c2ddb49169a99b9619a28" path="mdn/user-preference-media-features-headers.json" + file hash="437c9826bfc04420b4b1429e7e3ea4ba" path="mdn/user-timing.json" + file hash="7137c7b1c0a55343f7d52925644997e0" path="mdn/vibration.json" + file hash="5b49bc1c08ae609e0d258500b7d8fdab" path="mdn/wasm-exception-handling.json" + file hash="5ba693b4d946675ad234a342b3d606c9" path="mdn/wasm-js-api.json" + file hash="bef39bae959571e54ede9ea4d7f99849" path="mdn/wasm-web-embedding.json" + file hash="117b3b363d78f963b75c1d4c146c7829" path="mdn/web-animations-2.json" + file hash="69e9ecf106218449569982bd39a6991c" path="mdn/web-animations.json" + file hash="751cbbdd406c5a7e4e2ad4686b74dc6a" path="mdn/web-app-launch.json" + file hash="a19ef5e84145391fb2d287ca3b414757" path="mdn/web-bluetooth.json" + file hash="b94d32f2ac6d067902f8720d5208534e" path="mdn/web-locks.json" + file hash="35b8ddc6a7f153ee3aa60a541b77dbbc" path="mdn/web-nfc.json" + file hash="e054c15776ac71e09db92141a9da3bca" path="mdn/web-otp.json" + file hash="1149000b5bb1e011fdc9fcfbab75c12f" path="mdn/web-share-target.json" + file hash="2f71961de5825a7599b65fc477a6f938" path="mdn/web-share.json" + file hash="7b03377858161d51819050f3bc36a49f" path="mdn/webaudio.json" + file hash="b41a71d913ae35af03c5ce74ad81f8c5" path="mdn/webauthn.json" + file hash="9bd5da8eae0ef6a582f6c14afbefdee4" path="mdn/webcodecs.json" + file hash="f2da699c50c3fa5bccb435ac6884e7e6" path="mdn/webcrypto.json" + file hash="807bc576f6a285dc7d4b03715f02db9c" path="mdn/webdriver.json" + file hash="50eca96426eb91c4b6b67f21c40a045b" path="mdn/webgl-1.json" + file hash="0f0963753cccad0c28d5cf6b3d17d8bf" path="mdn/webgl-2.json" + file hash="0dbc99d7e78b6074a760288a9c0eb05f" path="mdn/webgpu.json" + file hash="acc88d43ca22698e5f80d85263057d1a" path="mdn/webhid.json" + file hash="8bf4f9441bbd592075e31f950c41813b" path="mdn/webidl.json" + file hash="d3739d9cb5c0d9be741a79a2ae3cb75e" path="mdn/webmidi.json" + file hash="5f99fc2cf9933ba670e10369bd0d27c1" path="mdn/webrtc-extensions.json" + file hash="e6dfe6adeec924321ce3f7a9fd550ae1" path="mdn/webrtc-identity.json" + file hash="4c9a70d3a2ae04fb98098eed7f365ad1" path="mdn/webrtc-priority.json" + file hash="8eb85555c5cde665a3c4e1d7a305c8d0" path="mdn/webrtc-stats.json" + file hash="92669a08057237fac1d6e8168cc4474b" path="mdn/webrtc.json" + file hash="e2ff2b6b757fd87f2e59075218104d99" path="mdn/websockets.json" + file hash="89717ae7482c0d6f77a5099a494e99d1" path="mdn/webtransport.json" + file hash="fb9ad0ac84922d110192e187ad37cfdd" path="mdn/webusb.json" + file hash="0b7ddbd308e471e08738c41cfca47e58" path="mdn/webvtt.json" + file hash="a8b1ea2e8a9e4cab46c5b0289c5e992c" path="mdn/webxr-anchors.json" + file hash="44436cb553b9febcb8bfdb2d557e559d" path="mdn/webxr-ar.json" + file hash="3bce477a970e46feab30eaa68df48e1a" path="mdn/webxr-depth-sensing.json" + file hash="6ebe48c179c8aa5e7c6c15032bd68abc" path="mdn/webxr-dom-overlays.json" + file hash="fff358a7b41331740577d408c13aba72" path="mdn/webxr-gamepads.json" + file hash="db1273726f100fc383542f5005ad05e8" path="mdn/webxr-hand-input.json" + file hash="9cef896b7b9dad7e82e36bf3c72aae27" path="mdn/webxr-hit-test.json" + file hash="ec668c2c18af0415af4fc44c0b280608" path="mdn/webxr-layers.json" + file hash="3cbfddc2cb1b93797901f55f05260902" path="mdn/webxr-lighting-estimation.json" + file hash="4948d481fc2d5728cbf1da0ced7caf64" path="mdn/webxr.json" + file hash="8eeb506517bb278e7a8a5797da429782" path="mdn/window-controls-overlay.json" + file hash="87752d10f690f74c1268a38cfaa2120c" path="mdn/woff.json" + file hash="94754ab062dfa224c919a879815ca1f4" path="mdn/woff2.json" + file hash="c6e150cca4c577bc4451b9f44e6600a2" path="mdn/xhr.json" +} diff --git a/bikeshed/spec-data/readonly/mdn.json b/bikeshed/spec-data/readonly/mdn.json index 3313dfaa7d..69ac2994f5 100644 --- a/bikeshed/spec-data/readonly/mdn.json +++ b/bikeshed/spec-data/readonly/mdn.json @@ -14,26 +14,6 @@ "https://webidl.spec.whatwg.org/": "webidl.json", "https://websockets.spec.whatwg.org/": "websockets.json", "https://xhr.spec.whatwg.org/": "xhr.json", - "https://immersive-web.github.io/anchors/": "webxr-anchors.json", - "https://immersive-web.github.io/depth-sensing/": "webxr-depth-sensing.json", - "https://immersive-web.github.io/dom-overlays/": "webxr-dom-overlays.json", - "https://immersive-web.github.io/hit-test/": "webxr-hit-test.json", - "https://immersive-web.github.io/lighting-estimation/": "webxr-lighting-estimation.json", - "https://immersive-web.github.io/layers/": "webxr-layers.json", - "https://immersive-web.github.io/webxr/": "webxr.json", - "https://immersive-web.github.io/webxr-ar-module/": "webxr-ar.json", - "https://immersive-web.github.io/webxr-gamepads-module/": "webxr-gamepads.json", - "https://immersive-web.github.io/webxr-hand-input/": "webxr-hand-input.json", - "https://privacycg.github.io/storage-access/": "storage-access.json", - "https://webassembly.github.io/exception-handling/js-api/": "wasm-exception-handling.json", - "https://webassembly.github.io/spec/js-api/": "wasm-js-api.json", - "https://webassembly.github.io/spec/web-api/": "wasm-web-embedding.json", - "https://webaudio.github.io/web-audio-api/": "webaudio.json", - "https://webaudio.github.io/web-midi-api/": "webmidi.json", - "https://webbluetoothcg.github.io/web-bluetooth/": "web-bluetooth.json", - "https://drafts.css-houdini.org/css-paint-api/": "css-paint-api.json", - "https://drafts.css-houdini.org/css-properties-values-api/": "css-properties-values-api.json", - "https://drafts.css-houdini.org/css-typed-om/": "css-typed-om.json", "https://drafts.csswg.org/css2/": "css2.json", "https://drafts.csswg.org/css-align/": "css-align.json", "https://drafts.csswg.org/css-animations/": "css-animations.json", @@ -55,7 +35,6 @@ "https://drafts.csswg.org/css-contain-3/": "css-contain-3.json", "https://drafts.csswg.org/css-content/": "css-content.json", "https://drafts.csswg.org/css-counter-styles/": "css-counter-styles.json", - "https://drafts.csswg.org/css-device-adapt/": "css-device-adapt.json", "https://drafts.csswg.org/css-display/": "css-display.json", "https://drafts.csswg.org/css-easing/": "css-easing.json", "https://drafts.csswg.org/css-env/": "css-env.json", @@ -65,6 +44,7 @@ "https://drafts.csswg.org/css-fonts-5/": "css-fonts-5.json", "https://drafts.csswg.org/css-grid/": "css-grid.json", "https://drafts.csswg.org/css-grid-3/": "css-grid-3.json", + "https://drafts.csswg.org/css-highlight-api/": "css-highlight-api.json", "https://drafts.csswg.org/css-images/": "css-images.json", "https://drafts.csswg.org/css-images-4/": "css-images-4.json", "https://drafts.csswg.org/css-inline/": "css-inline.json", @@ -72,10 +52,13 @@ "https://drafts.csswg.org/css-logical/": "css-logical.json", "https://drafts.csswg.org/css-multicol/": "css-multicol.json", "https://drafts.csswg.org/css-namespaces/": "css-namespaces.json", + "https://drafts.csswg.org/css-nesting/": "css-nesting.json", "https://drafts.csswg.org/css-overflow/": "css-overflow.json", + "https://drafts.csswg.org/css-overflow-4/": "css-overflow-4.json", "https://drafts.csswg.org/css-overscroll/": "css-overscroll.json", "https://drafts.csswg.org/css-page/": "css-page.json", "https://drafts.csswg.org/css-position/": "css-position.json", + "https://drafts.csswg.org/css-position-4/": "css-position-4.json", "https://drafts.csswg.org/css-pseudo/": "css-pseudo.json", "https://drafts.csswg.org/css-regions/": "css-regions.json", "https://drafts.csswg.org/css-rhythm/": "css-rhythm.json", @@ -101,6 +84,7 @@ "https://drafts.csswg.org/css-values/": "css-values.json", "https://drafts.csswg.org/css-values-5/": "css-values-5.json", "https://drafts.csswg.org/css-variables/": "css-variables.json", + "https://drafts.csswg.org/css-view-transitions/": "css-view-transitions.json", "https://drafts.csswg.org/css-will-change/": "css-will-change.json", "https://drafts.csswg.org/css-writing-modes/": "css-writing-modes.json", "https://drafts.csswg.org/cssom-view/": "cssom-view.json", @@ -112,6 +96,29 @@ "https://drafts.csswg.org/selectors/": "selectors.json", "https://drafts.csswg.org/web-animations-1/": "web-animations.json", "https://drafts.csswg.org/web-animations-2/": "web-animations-2.json", + "https://fedidcg.github.io/FedCM/": "fedcm.json", + "https://gpuweb.github.io/gpuweb/": "webgpu.json", + "https://immersive-web.github.io/anchors/": "webxr-anchors.json", + "https://immersive-web.github.io/depth-sensing/": "webxr-depth-sensing.json", + "https://immersive-web.github.io/dom-overlays/": "webxr-dom-overlays.json", + "https://immersive-web.github.io/hit-test/": "webxr-hit-test.json", + "https://immersive-web.github.io/lighting-estimation/": "webxr-lighting-estimation.json", + "https://immersive-web.github.io/layers/": "webxr-layers.json", + "https://immersive-web.github.io/webxr/": "webxr.json", + "https://immersive-web.github.io/webxr-ar-module/": "webxr-ar.json", + "https://immersive-web.github.io/webxr-gamepads-module/": "webxr-gamepads.json", + "https://immersive-web.github.io/webxr-hand-input/": "webxr-hand-input.json", + "https://privacycg.github.io/gpc-spec/": "gpc.json", + "https://privacycg.github.io/storage-access/": "storage-access.json", + "https://webassembly.github.io/exception-handling/js-api/": "wasm-exception-handling.json", + "https://webassembly.github.io/spec/js-api/": "wasm-js-api.json", + "https://webassembly.github.io/spec/web-api/": "wasm-web-embedding.json", + "https://webaudio.github.io/web-audio-api/": "webaudio.json", + "https://webaudio.github.io/web-midi-api/": "webmidi.json", + "https://webbluetoothcg.github.io/web-bluetooth/": "web-bluetooth.json", + "https://drafts.css-houdini.org/css-paint-api/": "css-paint-api.json", + "https://drafts.css-houdini.org/css-properties-values-api/": "css-properties-values-api.json", + "https://drafts.css-houdini.org/css-typed-om/": "css-typed-om.json", "https://drafts.fxtf.org/compositing/": "compositing.json", "https://drafts.fxtf.org/css-masking/": "css-masking.json", "https://drafts.fxtf.org/filter-effects/": "filter-effects.json", @@ -128,6 +135,7 @@ "https://wicg.github.io/controls-list/": "controls-list.json", "https://wicg.github.io/cookie-store/": "cookie-store.json", "https://wicg.github.io/crash-reporting/": "crash-reporting.json", + "https://wicg.github.io/custom-state-pseudo-class/": "custom-state-pseudo-class.json", "https://wicg.github.io/deprecation-reporting/": "deprecation-reporting.json", "https://wicg.github.io/element-timing/": "element-timing.json", "https://wicg.github.io/entries-api/": "entries-api.json", @@ -140,19 +148,25 @@ "https://wicg.github.io/keyboard-lock/": "keyboard-lock.json", "https://wicg.github.io/keyboard-map/": "keyboard-map.json", "https://wicg.github.io/layout-instability/": "layout-instability.json", + "https://wicg.github.io/local-font-access/": "local-font-access.json", "https://wicg.github.io/manifest-incubations/": "manifest-incubations.json", "https://wicg.github.io/netinfo/": "netinfo.json", + "https://wicg.github.io/page-lifecycle/": "page-lifecycle.json", + "https://wicg.github.io/performance-measure-memory/": "performance-measure-memory.json", "https://wicg.github.io/periodic-background-sync/": "periodic-background-sync.json", "https://wicg.github.io/portals/": "portals.json", "https://wicg.github.io/priority-hints/": "priority-hints.json", "https://wicg.github.io/sanitizer-api/": "sanitizer.json", "https://wicg.github.io/savedata/": "savedata.json", "https://wicg.github.io/scheduling-apis/": "scheduling-apis.json", + "https://wicg.github.io/scroll-to-text-fragment/": "scroll-to-text-fragment.json", "https://wicg.github.io/shape-detection-api/": "shape-detection-api.json", "https://wicg.github.io/serial/": "serial.json", "https://wicg.github.io/speech-api/": "speech-api.json", "https://wicg.github.io/ua-client-hints/": "ua-client-hints.json", "https://wicg.github.io/urlpattern/": "urlpattern.json", + "https://wicg.github.io/user-preference-media-features-headers/": "user-preference-media-features-headers.json", + "https://wicg.github.io/web-app-launch/": "web-app-launch.json", "https://wicg.github.io/web-otp/": "web-otp.json", "https://wicg.github.io/webhid/": "webhid.json", "https://wicg.github.io/webusb/": "webusb.json", @@ -161,17 +175,22 @@ "https://registry.khronos.org/webgl/specs/latest/2.0/": "webgl-2.json", "https://tc39.es/ecma262/multipage/": "ecmascript.json", "https://tc39.es/ecma402/": "ecma-402.json", + "https://tc39.es/proposal-array-from-async/": "proposal-array-from-async.json", "https://tc39.es/proposal-array-grouping/": "proposal-array-grouping.json", "https://tc39.es/proposal-atomics-wait-async/": "proposal-atomics-wait-async.json", + "https://tc39.es/proposal-intl-duration-format/": "proposal-intl-duration-format", "https://tc39.es/proposal-intl-enumeration/": "proposal-intl-enumeration.json", "https://tc39.es/proposal-intl-locale-info/": "proposal-intl-locale-info.json", "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html": "numberformat.json", "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html": "pluralrules.json", + "https://tc39.es/proposal-is-usv-string/": "proposal-is-usv-string.json", + "https://tc39.es/proposal-resizablearraybuffer/": "proposal-resizablearraybuffer.json", "https://github.com/tc39/proposal-regexp-legacy-features/": "proposal-regexp-legacy-features.json", "https://httpwg.org/specs/rfc6265.html": "rfc6265.json", "https://httpwg.org/specs/rfc6266.html": "rfc6266.json", "https://httpwg.org/specs/rfc7838.html": "rfc7838.json", "https://httpwg.org/specs/rfc8246.html": "rfc8246.json", + "https://httpwg.org/specs/rfc8288.html": "rfc8288.json", "https://httpwg.org/specs/rfc9110.html": "rfc9110.json", "https://httpwg.org/specs/rfc9111.html": "rfc9111.json", "https://httpwg.org/specs/rfc9112.html": "rfc9112.json", @@ -192,89 +211,13 @@ "https://w3c.github.io/accelerometer/": "accelerometer.json", "https://w3c.github.io/ambient-light/": "ambient-light.json", "https://w3c.github.io/aria/": "aria.json", + "https://w3c.github.io/autoplay/": "autoplay.json", "https://w3c.github.io/badging/": "badging.json", "https://w3c.github.io/battery/": "battery.json", "https://w3c.github.io/beacon/": "beacon.json", "https://w3c.github.io/clipboard-apis/": "clipboard-apis.json", "https://w3c.github.io/contact-api/spec/": "contact-api.json", - "https://w3c.github.io/csswg-drafts/css2/": "css2.json", - "https://w3c.github.io/csswg-drafts/css-align/": "css-align.json", - "https://w3c.github.io/csswg-drafts/css-animations/": "css-animations.json", - "https://w3c.github.io/csswg-drafts/css-animations-2/": "css-animations-2.json", - "https://w3c.github.io/csswg-drafts/css-backgrounds/": "css-backgrounds.json", - "https://w3c.github.io/csswg-drafts/css-backgrounds-4/": "css-backgrounds-4.json", - "https://w3c.github.io/csswg-drafts/css-box/": "css-box.json", - "https://w3c.github.io/csswg-drafts/css-box-4/": "css-box-4.json", - "https://w3c.github.io/csswg-drafts/css-break/": "css-break.json", - "https://w3c.github.io/csswg-drafts/css-cascade/": "css-cascade.json", - "https://w3c.github.io/csswg-drafts/css-cascade-5/": "css-cascade-5.json", - "https://w3c.github.io/csswg-drafts/css-color/": "css-color.json", - "https://w3c.github.io/csswg-drafts/css-color-5/": "css-color-5.json", - "https://w3c.github.io/csswg-drafts/css-color-6/": "css-color-6.json", - "https://w3c.github.io/csswg-drafts/css-color-adjust/": "css-color-adjust.json", - "https://w3c.github.io/csswg-drafts/css-conditional-3/": "css-conditional-3.json", - "https://w3c.github.io/csswg-drafts/css-conditional-4/": "css-conditional-4.json", - "https://w3c.github.io/csswg-drafts/css-contain/": "css-contain.json", - "https://w3c.github.io/csswg-drafts/css-contain-3/": "css-contain-3.json", - "https://w3c.github.io/csswg-drafts/css-content/": "css-content.json", - "https://w3c.github.io/csswg-drafts/css-counter-styles/": "css-counter-styles.json", - "https://w3c.github.io/csswg-drafts/css-device-adapt/": "css-device-adapt.json", - "https://w3c.github.io/csswg-drafts/css-display/": "css-display.json", - "https://w3c.github.io/csswg-drafts/css-easing/": "css-easing.json", - "https://w3c.github.io/csswg-drafts/css-env/": "css-env.json", - "https://w3c.github.io/csswg-drafts/css-flexbox/": "css-flexbox.json", - "https://w3c.github.io/csswg-drafts/css-font-loading/": "css-font-loading.json", - "https://w3c.github.io/csswg-drafts/css-fonts/": "css-fonts.json", - "https://w3c.github.io/csswg-drafts/css-fonts-5/": "css-fonts-5.json", - "https://w3c.github.io/csswg-drafts/css-grid/": "css-grid.json", - "https://w3c.github.io/csswg-drafts/css-grid-3/": "css-grid-3.json", - "https://w3c.github.io/csswg-drafts/css-images/": "css-images.json", - "https://w3c.github.io/csswg-drafts/css-images-4/": "css-images-4.json", - "https://w3c.github.io/csswg-drafts/css-inline/": "css-inline.json", - "https://w3c.github.io/csswg-drafts/css-lists/": "css-lists.json", - "https://w3c.github.io/csswg-drafts/css-logical/": "css-logical.json", - "https://w3c.github.io/csswg-drafts/css-multicol/": "css-multicol.json", - "https://w3c.github.io/csswg-drafts/css-namespaces/": "css-namespaces.json", - "https://w3c.github.io/csswg-drafts/css-overflow/": "css-overflow.json", - "https://w3c.github.io/csswg-drafts/css-overscroll/": "css-overscroll.json", - "https://w3c.github.io/csswg-drafts/css-page/": "css-page.json", - "https://w3c.github.io/csswg-drafts/css-position/": "css-position.json", - "https://w3c.github.io/csswg-drafts/css-pseudo/": "css-pseudo.json", - "https://w3c.github.io/csswg-drafts/css-regions/": "css-regions.json", - "https://w3c.github.io/csswg-drafts/css-rhythm/": "css-rhythm.json", - "https://w3c.github.io/csswg-drafts/css-ruby/": "css-ruby.json", - "https://w3c.github.io/csswg-drafts/css-scoping/": "css-scoping.json", - "https://w3c.github.io/csswg-drafts/css-scroll-anchoring/": "css-scroll-anchoring.json", - "https://w3c.github.io/csswg-drafts/css-scroll-snap/": "css-scroll-snap.json", - "https://w3c.github.io/csswg-drafts/css-scrollbars/": "css-scrollbars.json", - "https://w3c.github.io/csswg-drafts/css-shadow-parts/": "css-shadow-parts.json", - "https://w3c.github.io/csswg-drafts/css-shapes/": "css-shapes.json", - "https://w3c.github.io/csswg-drafts/css-size-adjust/": "css-size-adjust.json", - "https://w3c.github.io/csswg-drafts/css-sizing/": "css-sizing-3.json", - "https://w3c.github.io/csswg-drafts/css-sizing-4/": "css-sizing-4.json", - "https://w3c.github.io/csswg-drafts/css-text/": "css-text.json", - "https://w3c.github.io/csswg-drafts/css-text-4/": "css-text-4.json", - "https://w3c.github.io/csswg-drafts/css-text-decor/": "css-text-decor.json", - "https://w3c.github.io/csswg-drafts/css-text-decor-4/": "css-text-decor-4.json", - "https://w3c.github.io/csswg-drafts/css-transforms/": "css-transforms.json", - "https://w3c.github.io/csswg-drafts/css-transforms-2/": "css-transforms-2.json", - "https://w3c.github.io/csswg-drafts/css-transitions/": "css-transitions.json", - "https://w3c.github.io/csswg-drafts/css-transitions-2/": "css-transitions-2.json", - "https://w3c.github.io/csswg-drafts/css-ui/": "css-ui.json", - "https://w3c.github.io/csswg-drafts/css-values/": "css-values.json", - "https://w3c.github.io/csswg-drafts/css-values-5/": "css-values-5.json", - "https://w3c.github.io/csswg-drafts/css-variables/": "css-variables.json", - "https://w3c.github.io/csswg-drafts/css-will-change/": "css-will-change.json", - "https://w3c.github.io/csswg-drafts/css-writing-modes/": "css-writing-modes.json", - "https://w3c.github.io/csswg-drafts/cssom-view/": "cssom-view.json", - "https://w3c.github.io/csswg-drafts/cssom/": "cssom.json", - "https://w3c.github.io/csswg-drafts/mediaqueries/": "css-mediaqueries.json", - "https://w3c.github.io/csswg-drafts/mediaqueries-5/": "mediaqueries-5.json", - "https://w3c.github.io/csswg-drafts/resize-observer/": "resize-observer.json", - "https://w3c.github.io/csswg-drafts/scroll-animations/": "scroll-animations.json", - "https://w3c.github.io/csswg-drafts/selectors/": "selectors.json", - "https://w3c.github.io/csswg-drafts/web-animations-1/": "web-animations.json", - "https://w3c.github.io/csswg-drafts/web-animations-2/": "web-animations-2.json", + "https://w3c.github.io/contact-picker/": "contact-picker.json", "https://w3c.github.io/deviceorientation/": "orientation-event.json", "https://w3c.github.io/encrypted-media/": "encrypted-media.json", "https://w3c.github.io/event-timing/": "event-timing.json", @@ -349,7 +292,9 @@ "https://w3c.github.io/webrtc-extensions/": "webrtc-extensions.json", "https://w3c.github.io/webrtc-identity/": "webrtc-identity.json", "https://w3c.github.io/webrtc-pc/": "webrtc.json", + "https://w3c.github.io/webrtc-priority/": "webrtc-priority.json", "https://w3c.github.io/webrtc-stats/": "webrtc-stats.json", + "https://w3c.github.io/webtransport/": "webtransport.json", "https://w3c.github.io/webvtt/": "webvtt.json", "https://w3c.github.io/woff/woff2/": "woff2.json", "https://www.w3.org/TR/largest-contentful-paint/": "largest-contentful-paint.json", diff --git a/bikeshed/spec-data/readonly/mdn/accelerometer.json b/bikeshed/spec-data/readonly/mdn/accelerometer.json index 94c0bd592b..cb980d7872 100644 --- a/bikeshed/spec-data/readonly/mdn/accelerometer.json +++ b/bikeshed/spec-data/readonly/mdn/accelerometer.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "Accelerometer()" + "title": "Accelerometer: Accelerometer() constructor" } ], "accelerometer-x": [ @@ -47,7 +47,7 @@ "name": "x", "slug": "API/Accelerometer/x", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/x", - "summary": "The x read-only property of the Accelerometer interface returns a double precision integer containing the acceleration of the device along its x axis.", + "summary": "The x read-only property of the Accelerometer interface returns a number specifying the acceleration of the device along its x-axis.", "support": { "chrome": { "version_added": "67" @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "Accelerometer.x" + "title": "Accelerometer: x property" } ], "accelerometer-y": [ @@ -86,7 +86,7 @@ "name": "y", "slug": "API/Accelerometer/y", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/y", - "summary": "The y read-only property of the Accelerometer interface returns a double precision integer containing the acceleration of the device along its y axis.", + "summary": "The y read-only property of the Accelerometer interface returns a number specifying the acceleration of the device along its y-axis.", "support": { "chrome": { "version_added": "67" @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "Accelerometer.y" + "title": "Accelerometer: y property" } ], "accelerometer-z": [ @@ -125,7 +125,7 @@ "name": "z", "slug": "API/Accelerometer/z", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/z", - "summary": "The z read-only property of the Accelerometer interface returns a double precision integer containing the acceleration of the device along its z axis.", + "summary": "The z read-only property of the Accelerometer interface returns a number specifying the acceleration of the device along its z-axis.", "support": { "chrome": { "version_added": "67" @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "Accelerometer.z" + "title": "Accelerometer: z property" } ], "accelerometer-interface": [ @@ -230,7 +230,7 @@ "version_added": "91" } }, - "title": "GravitySensor()" + "title": "GravitySensor: GravitySensor() constructor" } ], "gravitysensor-interface": [ @@ -308,7 +308,7 @@ "version_added": "79" } }, - "title": "LinearAccelerationSensor()" + "title": "LinearAccelerationSensor: LinearAccelerationSensor() constructor" } ], "linearaccelerationsensor-interface": [ @@ -359,7 +359,7 @@ "name": "accelerometer", "slug": "HTTP/Headers/Feature-Policy/accelerometer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/accelerometer", - "summary": "The HTTP Feature-Policy header accelerometer directive controls whether the current document is allowed to gather information about the acceleration of the device through the Accelerometer interface.", + "summary": "The HTTP Permissions-Policy header accelerometer directive controls whether the current document is allowed to gather information about the acceleration of the device through the Accelerometer interface.", "support": { "chrome": { "version_added": "67" @@ -386,7 +386,7 @@ "version_added": "79" } }, - "title": "Feature-Policy: accelerometer" + "title": "Permissions-Policy: accelerometer" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/ambient-light.json b/bikeshed/spec-data/readonly/mdn/ambient-light.json index 57e0d5d87d..3f250f7a28 100644 --- a/bikeshed/spec-data/readonly/mdn/ambient-light.json +++ b/bikeshed/spec-data/readonly/mdn/ambient-light.json @@ -4,6 +4,9 @@ "engines": [ "blink" ], + "needsflag": [ + "blink" + ], "filename": "api/AmbientLightSensor.json", "name": "AmbientLightSensor", "slug": "API/AmbientLightSensor/AmbientLightSensor", @@ -11,7 +14,14 @@ "summary": "The AmbientLightSensor() constructor creates a new AmbientLightSensor object, which returns the current light level or illuminance of the ambient light around the hosting device.", "support": { "chrome": { - "version_added": "56" + "version_added": "56", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -24,24 +34,25 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": false - }, - "webview_android": { - "version_added": false - }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] } }, - "title": "AmbientLightSensor()" + "title": "AmbientLightSensor: AmbientLightSensor() constructor" } ], "ambient-light-sensor-reading-attribute": [ @@ -49,6 +60,9 @@ "engines": [ "blink" ], + "needsflag": [ + "blink" + ], "filename": "api/AmbientLightSensor.json", "name": "illuminance", "slug": "API/AmbientLightSensor/illuminance", @@ -57,14 +71,17 @@ "support": { "chrome": { "version_added": "56", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ], "notes": "In Chrome 79, this method stopped returning floats and returned integers to avoid fingerprinting." }, - "chrome_android": { - "version_added": false - }, - "edge": { - "version_added": false - }, + "chrome_android": "mirror", + "edge": "mirror", "firefox": { "version_added": false }, @@ -83,10 +100,17 @@ "webview_android": "mirror", "edge_blink": { "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ], "notes": "In Chrome 79, this method stopped returning floats and returned integers to avoid fingerprinting." } }, - "title": "AmbientLightSensor.illuminance" + "title": "AmbientLightSensor: illuminance property" } ], "ambient-light-sensor-interface": [ @@ -154,7 +178,7 @@ "name": "ambient-light-sensor", "slug": "HTTP/Headers/Feature-Policy/ambient-light-sensor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/ambient-light-sensor", - "summary": "The HTTP Feature-Policy header ambient-light-sensor directive controls whether the current document is allowed to gather information about the amount of light in the environment around the device through the AmbientLightSensor interface.", + "summary": "The HTTP Permissions-Policy header ambient-light-sensor directive controls whether the current document is allowed to gather information about the amount of light in the environment around the device through the AmbientLightSensor interface.", "support": { "chrome": { "version_added": "67" @@ -181,7 +205,7 @@ "version_added": "79" } }, - "title": "Feature-Policy: ambient-light-sensor" + "title": "Permissions-Policy: ambient-light-sensor" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/appmanifest.json b/bikeshed/spec-data/readonly/mdn/appmanifest.json index ca989fffb7..6edf042e48 100644 --- a/bikeshed/spec-data/readonly/mdn/appmanifest.json +++ b/bikeshed/spec-data/readonly/mdn/appmanifest.json @@ -153,6 +153,46 @@ "title": "icons" } ], + "id-member": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "html/manifest/id.json", + "name": "id", + "slug": "Manifest/id", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/Manifest/id", + "summary": "The id member is a string that represents the identity of the web application — the unique identifier for the web application. If the web application ID does not match an existing ID, the application will be treated as a unique identity even if it is from the same URL.", + "support": { + "chrome": { + "version_added": "96" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "95" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": null + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "96" + } + }, + "title": "id" + } + ], "name-member": [ { "engines": [ @@ -453,20 +493,23 @@ "engines": [ "blink" ], - "partial": [ - "blink" - ], "filename": "html/manifest/shortcuts.json", "name": "shortcuts", "slug": "Manifest/shortcuts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/Manifest/shortcuts", "summary": "The shortcuts member defines an array of shortcuts or links to key tasks or pages within a web app. A user agent can use these values to assemble a context menu to be displayed by the operating system when a user engages with the web app's icon. When user invokes a shortcut, the user agent will navigate to the address given by shortcut's url member.", "support": { - "chrome": { - "version_added": "85", - "partial_implementation": true, - "notes": "Supported on Windows only." - }, + "chrome": [ + { + "version_added": "96" + }, + { + "version_added": "85", + "version_removed": "96", + "partial_implementation": true, + "notes": "Supported on Windows only." + } + ], "chrome_android": { "version_added": "84" }, @@ -489,11 +532,17 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "85", - "partial_implementation": true, - "notes": "Supported on Windows only." - } + "edge_blink": [ + { + "version_added": "96" + }, + { + "version_added": false, + "version_removed": "96", + "partial_implementation": true, + "notes": "Supported on Windows only." + } + ] }, "title": "shortcuts" } diff --git a/bikeshed/spec-data/readonly/mdn/aria.json b/bikeshed/spec-data/readonly/mdn/aria.json index 6760fe67b4..0a0c4d714c 100644 --- a/bikeshed/spec-data/readonly/mdn/aria.json +++ b/bikeshed/spec-data/readonly/mdn/aria.json @@ -36,11 +36,12 @@ "version_added": "81" } }, - "title": "Element.ariaAtomic" + "title": "Element: ariaAtomic property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaAtomic", @@ -64,7 +65,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -73,7 +74,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaAtomic" + "title": "ElementInternals: ariaAtomic property" } ], "dom-ariamixin-ariaautocomplete": [ @@ -113,11 +114,12 @@ "version_added": "81" } }, - "title": "Element.ariaAutoComplete" + "title": "Element: ariaAutoComplete property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaAutoComplete", @@ -141,7 +143,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -150,7 +152,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaAutoComplete" + "title": "ElementInternals: ariaAutoComplete property" } ], "dom-ariamixin-ariabusy": [ @@ -190,11 +192,12 @@ "version_added": "81" } }, - "title": "Element.ariaBusy" + "title": "Element: ariaBusy property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaBusy", @@ -218,7 +221,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -227,7 +230,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaBusy" + "title": "ElementInternals: ariaBusy property" } ], "dom-ariamixin-ariachecked": [ @@ -267,11 +270,12 @@ "version_added": "81" } }, - "title": "Element.ariaChecked" + "title": "Element: ariaChecked property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaChecked", @@ -295,7 +299,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -304,7 +308,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaChecked" + "title": "ElementInternals: ariaChecked property" } ], "dom-ariamixin-ariacolcount": [ @@ -344,11 +348,12 @@ "version_added": "81" } }, - "title": "Element.ariaColCount" + "title": "Element: ariaColCount property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaColCount", @@ -372,7 +377,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -381,7 +386,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaColCount" + "title": "ElementInternals: ariaColCount property" } ], "dom-ariamixin-ariacolindex": [ @@ -421,11 +426,12 @@ "version_added": "81" } }, - "title": "Element.ariaColIndex" + "title": "Element: ariaColIndex property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaColIndex", @@ -449,84 +455,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "81" - } - }, - "title": "ElementInternals.ariaColIndex" - } - ], - "dom-ariamixin-ariacolindextext": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/Element.json", - "name": "ariaColIndexText", - "slug": "API/Element/ariaColIndexText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/ariaColIndexText", - "summary": "The ariaColIndexText property of the Element interface reflects the value of the aria-colindextext attribute, which defines a human readable text alternative of aria-colindex.", - "support": { - "chrome": { - "version_added": "81" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "12.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "81" - } - }, - "title": "Element.ariaColIndexText" - }, - { - "engines": [ - "blink" - ], - "filename": "api/ElementInternals.json", - "name": "ariaColIndexText", - "slug": "API/ElementInternals/ariaColIndexText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaColIndexText", - "summary": "The ariaColIndexText property of the ElementInternals interface reflects the value of the aria-colindextext attribute, which defines a human readable text alternative of aria-colindex.", - "support": { - "chrome": { - "version_added": "81" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -535,7 +464,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaColIndexText" + "title": "ElementInternals: ariaColIndex property" } ], "dom-ariamixin-ariacolspan": [ @@ -575,11 +504,12 @@ "version_added": "81" } }, - "title": "Element.ariaColSpan" + "title": "Element: ariaColSpan property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaColSpan", @@ -603,7 +533,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -612,7 +542,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaColSpan" + "title": "ElementInternals: ariaColSpan property" } ], "dom-ariamixin-ariacurrent": [ @@ -652,11 +582,12 @@ "version_added": "81" } }, - "title": "Element.ariaCurrent" + "title": "Element: ariaCurrent property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaCurrent", @@ -680,7 +611,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -689,7 +620,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaCurrent" + "title": "ElementInternals: ariaCurrent property" } ], "dom-ariamixin-ariadescription": [ @@ -728,7 +659,7 @@ "version_added": "83" } }, - "title": "Element.ariaDescription" + "title": "Element: ariaDescription property" }, { "engines": [ @@ -765,7 +696,7 @@ "version_added": "83" } }, - "title": "ElementInternals.ariaDescription" + "title": "ElementInternals: ariaDescription property" } ], "dom-ariamixin-ariadisabled": [ @@ -805,11 +736,12 @@ "version_added": "81" } }, - "title": "Element.ariaDisabled" + "title": "Element: ariaDisabled property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaDisabled", @@ -833,7 +765,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -842,7 +774,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaDisabled" + "title": "ElementInternals: ariaDisabled property" } ], "dom-ariamixin-ariaexpanded": [ @@ -882,11 +814,12 @@ "version_added": "81" } }, - "title": "Element.ariaExpanded" + "title": "Element: ariaExpanded property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaExpanded", @@ -910,7 +843,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -919,7 +852,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaExpanded" + "title": "ElementInternals: ariaExpanded property" } ], "dom-ariamixin-ariahaspopup": [ @@ -959,11 +892,12 @@ "version_added": "81" } }, - "title": "Element.ariaHasPopup" + "title": "Element: ariaHasPopup property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaHasPopup", @@ -987,7 +921,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -996,7 +930,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaHasPopup" + "title": "ElementInternals: ariaHasPopup property" } ], "dom-ariamixin-ariahidden": [ @@ -1036,11 +970,12 @@ "version_added": "81" } }, - "title": "Element.ariaHidden" + "title": "Element: ariaHidden property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaHidden", @@ -1064,7 +999,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1073,7 +1008,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaHidden" + "title": "ElementInternals: ariaHidden property" } ], "dom-ariamixin-ariakeyshortcuts": [ @@ -1113,11 +1048,12 @@ "version_added": "81" } }, - "title": "Element.ariaKeyShortcuts" + "title": "Element: ariaKeyShortcuts property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaKeyShortcuts", @@ -1141,7 +1077,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1150,7 +1086,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaKeyShortcuts" + "title": "ElementInternals: ariaKeyShortcuts property" } ], "dom-ariamixin-arialabel": [ @@ -1190,11 +1126,12 @@ "version_added": "81" } }, - "title": "Element.ariaLabel" + "title": "Element: ariaLabel property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaLabel", @@ -1218,7 +1155,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1227,7 +1164,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaLabel" + "title": "ElementInternals: ariaLabel property" } ], "dom-ariamixin-arialevel": [ @@ -1267,11 +1204,12 @@ "version_added": "81" } }, - "title": "Element.ariaLevel" + "title": "Element: ariaLevel property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaLevel", @@ -1295,7 +1233,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1304,7 +1242,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaLevel" + "title": "ElementInternals: ariaLevel property" } ], "dom-ariamixin-arialive": [ @@ -1344,11 +1282,12 @@ "version_added": "81" } }, - "title": "Element.ariaLive" + "title": "Element: ariaLive property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaLive", @@ -1372,7 +1311,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1381,7 +1320,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaLive" + "title": "ElementInternals: ariaLive property" } ], "dom-ariamixin-ariamodal": [ @@ -1421,11 +1360,12 @@ "version_added": "81" } }, - "title": "Element.ariaModal" + "title": "Element: ariaModal property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaModal", @@ -1449,7 +1389,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1458,7 +1398,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaModal" + "title": "ElementInternals: ariaModal property" } ], "dom-ariamixin-ariamultiline": [ @@ -1498,11 +1438,12 @@ "version_added": "81" } }, - "title": "Element.ariaMultiLine" + "title": "Element: ariaMultiLine property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaMultiLine", @@ -1526,7 +1467,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1535,7 +1476,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaMultiLine" + "title": "ElementInternals: ariaMultiLine property" } ], "dom-ariamixin-ariamultiselectable": [ @@ -1575,11 +1516,12 @@ "version_added": "81" } }, - "title": "Element.ariaMultiSelectable" + "title": "Element: ariaMultiSelectable property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaMultiSelectable", @@ -1603,7 +1545,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1612,7 +1554,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaMultiSelectable" + "title": "ElementInternals: ariaMultiSelectable property" } ], "dom-ariamixin-ariaorientation": [ @@ -1652,7 +1594,7 @@ "version_added": "81" } }, - "title": "Element.ariaOrientation" + "title": "Element: ariaOrientation property" }, { "engines": [ @@ -1690,11 +1632,12 @@ "version_added": "81" } }, - "title": "Element.ariaRoleDescription" + "title": "Element: ariaRoleDescription property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaOrientation", @@ -1718,7 +1661,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1727,7 +1670,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaOrientation" + "title": "ElementInternals: ariaOrientation property" } ], "dom-ariamixin-ariaplaceholder": [ @@ -1767,11 +1710,12 @@ "version_added": "81" } }, - "title": "Element.ariaPlaceholder" + "title": "Element: ariaPlaceholder property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaPlaceholder", @@ -1795,7 +1739,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1804,7 +1748,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaPlaceholder" + "title": "ElementInternals: ariaPlaceholder property" } ], "dom-ariamixin-ariaposinset": [ @@ -1844,11 +1788,12 @@ "version_added": "81" } }, - "title": "Element.ariaPosInSet" + "title": "Element: ariaPosInSet property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaPosInSet", @@ -1872,7 +1817,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1881,7 +1826,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaPosInSet" + "title": "ElementInternals: ariaPosInSet property" } ], "dom-ariamixin-ariapressed": [ @@ -1921,11 +1866,12 @@ "version_added": "81" } }, - "title": "Element.ariaPressed" + "title": "Element: ariaPressed property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaPressed", @@ -1949,7 +1895,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1958,7 +1904,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaPressed" + "title": "ElementInternals: ariaPressed property" } ], "dom-ariamixin-ariareadonly": [ @@ -1998,11 +1944,12 @@ "version_added": "81" } }, - "title": "Element.ariaReadOnly" + "title": "Element: ariaReadOnly property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaReadOnly", @@ -2026,7 +1973,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2035,7 +1982,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaReadOnly" + "title": "ElementInternals: ariaReadOnly property" } ], "dom-ariamixin-ariarequired": [ @@ -2075,11 +2022,12 @@ "version_added": "81" } }, - "title": "Element.ariaRequired" + "title": "Element: ariaRequired property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaRequired", @@ -2103,7 +2051,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2112,7 +2060,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaRequired" + "title": "ElementInternals: ariaRequired property" } ], "dom-ariamixin-ariarowcount": [ @@ -2152,11 +2100,12 @@ "version_added": "81" } }, - "title": "Element.ariaRowCount" + "title": "Element: ariaRowCount property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaRowCount", @@ -2180,7 +2129,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2189,7 +2138,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaRowCount" + "title": "ElementInternals: ariaRowCount property" } ], "dom-ariamixin-ariarowindex": [ @@ -2229,11 +2178,12 @@ "version_added": "81" } }, - "title": "Element.ariaRowIndex" + "title": "Element: ariaRowIndex property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaRowIndex", @@ -2257,7 +2207,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2266,84 +2216,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaRowIndex" - } - ], - "dom-ariamixin-ariarowindextext": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/Element.json", - "name": "ariaRowIndexText", - "slug": "API/Element/ariaRowIndexText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/ariaRowIndexText", - "summary": "The ariaRowIndexText property of the Element interface reflects the value of the aria-rowindextext attribute, which defines a human readable text alternative of aria-rowindex.", - "support": { - "chrome": { - "version_added": "81" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "12.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "81" - } - }, - "title": "Element.ariaRowIndexText" - }, - { - "engines": [ - "blink" - ], - "filename": "api/ElementInternals.json", - "name": "ariaRowIndexText", - "slug": "API/ElementInternals/ariaRowIndexText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaRowIndexText", - "summary": "The ariaRowIndexText property of the ElementInternals interface reflects the value of the aria-rowindextext attribute, which defines a human readable text alternative of aria-rowindex.", - "support": { - "chrome": { - "version_added": "81" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "81" - } - }, - "title": "ElementInternals.ariaRowIndexText" + "title": "ElementInternals: ariaRowIndex property" } ], "dom-ariamixin-ariarowspan": [ @@ -2383,11 +2256,12 @@ "version_added": "81" } }, - "title": "Element.ariaRowSpan" + "title": "Element: ariaRowSpan property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaRowSpan", @@ -2411,7 +2285,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2420,7 +2294,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaRowSpan" + "title": "ElementInternals: ariaRowSpan property" } ], "dom-ariamixin-ariavaluemax": [ @@ -2460,7 +2334,7 @@ "version_added": "81" } }, - "title": "Element.ariaSelected" + "title": "Element: ariaSelected property" }, { "engines": [ @@ -2498,11 +2372,12 @@ "version_added": "81" } }, - "title": "Element.ariaValueMax" + "title": "Element: ariaValueMax property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaValueMax", @@ -2526,7 +2401,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2535,7 +2410,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaValueMax" + "title": "ElementInternals: ariaValueMax property" } ], "dom-ariamixin-ariasetsize": [ @@ -2575,11 +2450,12 @@ "version_added": "84" } }, - "title": "Element.ariaSetSize" + "title": "Element: ariaSetSize property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaSetSize", @@ -2603,7 +2479,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2612,7 +2488,7 @@ "version_added": "84" } }, - "title": "ElementInternals.ariaSetSize" + "title": "ElementInternals: ariaSetSize property" } ], "dom-ariamixin-ariasort": [ @@ -2652,11 +2528,12 @@ "version_added": "81" } }, - "title": "Element.ariaSort" + "title": "Element: ariaSort property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaSort", @@ -2680,7 +2557,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2689,7 +2566,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaSort" + "title": "ElementInternals: ariaSort property" } ], "dom-ariamixin-ariavaluemin": [ @@ -2729,11 +2606,12 @@ "version_added": "81" } }, - "title": "Element.ariaValueMin" + "title": "Element: ariaValueMin property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaValueMin", @@ -2757,7 +2635,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2766,7 +2644,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaValueMin" + "title": "ElementInternals: ariaValueMin property" } ], "dom-ariamixin-ariavaluenow": [ @@ -2806,11 +2684,12 @@ "version_added": "81" } }, - "title": "Element.ariaValueNow" + "title": "Element: ariaValueNow property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaValueNow", @@ -2834,7 +2713,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2843,7 +2722,7 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaValueNow" + "title": "ElementInternals: ariaValueNow property" } ], "dom-ariamixin-ariavaluetext": [ @@ -2856,7 +2735,7 @@ "name": "ariaValueText", "slug": "API/Element/ariaValueText", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/ariaValueText", - "summary": "The ariaValueText property of the Element interface reflects the value of the aria-valuetext attribute, which defines the human readable text alternative of aria-valuenow for a range widget.", + "summary": "The ariaValueText property of the Element interface reflects the value of the aria-valuetext attribute, which defines the human-readable text alternative of aria-valuenow for a range widget.", "support": { "chrome": { "version_added": "81" @@ -2883,17 +2762,18 @@ "version_added": "81" } }, - "title": "Element.ariaValueText" + "title": "Element: ariaValueText property" }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaValueText", "slug": "API/ElementInternals/ariaValueText", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaValueText", - "summary": "The ariaValueText property of the ElementInternals interface reflects the value of the aria-valuetext attribute, which defines the human readable text alternative of aria-valuenow for a range widget.", + "summary": "The ariaValueText property of the ElementInternals interface reflects the value of the aria-valuetext attribute, which defines the human-readable text alternative of aria-valuenow for a range widget.", "support": { "chrome": { "version_added": "81" @@ -2911,7 +2791,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2920,13 +2800,14 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaValueText" + "title": "ElementInternals: ariaValueText property" } ], "dom-ariamixin-ariaroledescription": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaRoleDescription", @@ -2950,7 +2831,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2959,13 +2840,14 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaRoleDescription" + "title": "ElementInternals: ariaRoleDescription property" } ], "dom-ariamixin-ariaselected": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ariaSelected", @@ -2989,7 +2871,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2998,7 +2880,47 @@ "version_added": "81" } }, - "title": "ElementInternals.ariaSelected" + "title": "ElementInternals: ariaSelected property" + } + ], + "dom-ariamixin-role": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/ElementInternals.json", + "name": "role", + "slug": "API/ElementInternals/role", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/role", + "summary": "The role read-only property of the ElementInternals interface returns the WAI-ARIA role for the element. For example, a checkbox might have role=\"checkbox\".", + "support": { + "chrome": { + "version_added": "103" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "103" + } + }, + "title": "ElementInternals: role property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/audio-output.json b/bikeshed/spec-data/readonly/mdn/audio-output.json index c21786c4c3..a8f9eab98b 100644 --- a/bikeshed/spec-data/readonly/mdn/audio-output.json +++ b/bikeshed/spec-data/readonly/mdn/audio-output.json @@ -5,14 +5,11 @@ "blink", "gecko" ], - "needsflag": [ - "gecko" - ], "filename": "api/HTMLMediaElement.json", "name": "setSinkId", "slug": "API/HTMLMediaElement/setSinkId", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/setSinkId", - "summary": "The HTMLMediaElement.setSinkId() method sets the ID of the audio device to use for output and returns a Promise. This only works when the application is authorized to use the specified device.", + "summary": "The HTMLMediaElement.setSinkId() method of the Audio Output Devices API sets the ID of the audio device to use for output and returns a Promise.", "support": { "chrome": { "version_added": "49" @@ -25,16 +22,12 @@ "version_added": "17" }, "firefox": { - "version_added": "64", - "flags": [ - { - "type": "preference", - "name": "media.setsinkid.enabled", - "value_to_set": "true" - } - ] - }, - "firefox_android": "mirror", + "version_added": "116" + }, + "firefox_android": { + "version_added": false, + "notes": "Not available due to a limitation in Android (see <a href='https://bugzil.la/1473346'>bug 1473346</a>)." + }, "ie": { "version_added": false }, @@ -51,31 +44,38 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.setSinkId()" + "title": "HTMLMediaElement: setSinkId() method" } ], "dom-htmlmediaelement-sinkid": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "api/HTMLMediaElement.json", "name": "sinkId", "slug": "API/HTMLMediaElement/sinkId", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/sinkId", - "summary": "The HTMLMediaElement.sinkId read-only property returns a string that is the unique ID of the audio device delivering output. If it is using the user agent default, it returns an empty string. This ID should be one of the MediaDeviceInfo.deviceId values returned from MediaDevices.enumerateDevices(), id-multimedia, or id-communications.", + "summary": "The HTMLMediaElement.sinkId read-only property of the Audio Output Devices API returns a string that is the unique ID of the device to be used for playing audio output.", "support": { "chrome": { "version_added": "49" }, - "chrome_android": "mirror", + "chrome_android": { + "version_added": false, + "notes": "Not available due to <a href='https://crbug.com/648286'>a limitation in Android</a>." + }, "edge": { "version_added": "17" }, "firefox": { - "version_added": false + "version_added": "116" + }, + "firefox_android": { + "version_added": false, + "notes": "Not available due to a limitation in Android (see <a href='https://bugzil.la/1473346'>bug 1473346</a>)." }, - "firefox_android": "mirror", "ie": { "version_added": false }, @@ -87,14 +87,12 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "HTMLMediaElement.sinkId" + "title": "HTMLMediaElement: sinkId property" } ], "dom-mediadevices-selectaudiooutput": [ @@ -102,14 +100,11 @@ "engines": [ "gecko" ], - "needsflag": [ - "gecko" - ], "filename": "api/MediaDevices.json", "name": "selectAudioOutput", "slug": "API/MediaDevices/selectAudioOutput", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/selectAudioOutput", - "summary": "The MediaDevices method selectAudioOutput() prompts the user to select a specific audio output device, for example a speaker or headset. On success, the returned Promise is resolved with a MediaDeviceInfo describing the selected device.", + "summary": "The MediaDevices.selectAudioOutput() method of the Audio Output Devices API prompts the user to select an audio output device, such as a speaker or headset. If the user selects a device, the method grants user permission to use the selected device as an audio output sink.", "support": { "chrome": { "version_added": false @@ -117,16 +112,11 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "88", - "flags": [ - { - "type": "preference", - "name": "media.setsinkid.enabled", - "value_to_set": "true" - } - ] - }, - "firefox_android": "mirror", + "version_added": "116" + }, + "firefox_android": { + "version_added": false + }, "ie": { "version_added": false }, @@ -143,7 +133,7 @@ "version_added": false } }, - "title": "MediaDevices.selectAudioOutput()" + "title": "MediaDevices: selectAudioOutput() method" } ], "permissions-policy-integration": [ @@ -156,7 +146,50 @@ "name": "speaker-selection", "slug": "HTTP/Headers/Feature-Policy/speaker-selection", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/speaker-selection", - "summary": "The HTTP Feature-Policy header speaker-selection directive controls whether the current document is allowed to enumerate and select audio output devices (speakers, headphones, etc.).", + "summary": "The HTTP Permissions-Policy header speaker-selection directive controls whether the current document is allowed to enumerate and select audio output devices (speakers, headphones, and so on).", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "116", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": { + "version_added": false, + "notes": "Not available due to a limitation in Android (see <a href='https://bugzil.la/1473346'>bug 1473346</a>)." + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Permissions-Policy: speaker-selection" + }, + { + "engines": [], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "speaker-selection", + "slug": "HTTP/Headers/Permissions-Policy/speaker-selection", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/speaker-selection", + "summary": "The HTTP Permissions-Policy header speaker-selection directive controls whether the current document is allowed to enumerate and select audio output devices (speakers, headphones, and so on).", "support": { "chrome": { "version_added": false @@ -164,18 +197,15 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "92", + "version_added": "116", + "alternative_name": "Feature-Policy: speaker-selection", "partial_implementation": true, - "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements.", - "flags": [ - { - "type": "preference", - "name": "media.setsinkid.enabled", - "value_to_set": "true" - } - ] - }, - "firefox_android": "mirror", + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": { + "version_added": false, + "notes": "Not available due to a limitation in Android (see <a href='https://bugzil.la/1473346'>bug 1473346</a>)." + }, "ie": { "version_added": false }, @@ -192,7 +222,7 @@ "version_added": false } }, - "title": "Feature-Policy: speaker-selection" + "title": "Permissions-Policy: speaker-selection" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/autoplay.json b/bikeshed/spec-data/readonly/mdn/autoplay.json new file mode 100644 index 0000000000..ef8389550e --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/autoplay.json @@ -0,0 +1,41 @@ +{ + "dom-navigator-getautoplaypolicy": [ + { + "engines": [ + "gecko" + ], + "filename": "api/Navigator.json", + "name": "getAutoplayPolicy", + "slug": "API/Navigator/getAutoplayPolicy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/getAutoplayPolicy", + "summary": "The getAutoplayPolicy() method of the Autoplay Policy Detection API provides information about whether autoplay of media elements and audio contexts is allowed, disallowed, or only allowed if the audio is muted.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "112" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Navigator: getAutoplayPolicy() method" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/background-fetch.json b/bikeshed/spec-data/readonly/mdn/background-fetch.json index c290b2a7eb..00b7fd0da1 100644 --- a/bikeshed/spec-data/readonly/mdn/background-fetch.json +++ b/bikeshed/spec-data/readonly/mdn/background-fetch.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchEvent()" + "title": "BackgroundFetchEvent: BackgroundFetchEvent() constructor" } ], "dom-backgroundfetchevent-registration": [ @@ -78,7 +78,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchEvent.registration" + "title": "BackgroundFetchEvent: registration property" } ], "background-fetch-event": [ @@ -131,7 +131,7 @@ "name": "fetch", "slug": "API/BackgroundFetchManager/fetch", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BackgroundFetchManager/fetch", - "summary": "The fetch() method of the BackgroundFetchManager interface returns a Promise that resolves with a BackgroundFetchRegistration object for a supplied array of URLs and Request objects.", + "summary": "The fetch() method of the BackgroundFetchManager interface initiates a background fetch operation, given one or more URLs or Request objects.", "support": { "chrome": { "version_added": "74" @@ -160,7 +160,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchManager.fetch()" + "title": "BackgroundFetchManager: fetch() method" } ], "background-fetch-manager-get": [ @@ -201,7 +201,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchManager.get()" + "title": "BackgroundFetchManager: get() method" } ], "background-fetch-manager-get-ids": [ @@ -242,7 +242,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchManager.getIds()" + "title": "BackgroundFetchManager: getIds() method" } ], "background-fetch-manager": [ @@ -324,7 +324,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRecord.request" + "title": "BackgroundFetchRecord: request property" } ], "dom-backgroundfetchrecord-responseready": [ @@ -365,7 +365,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRecord.responseReady" + "title": "BackgroundFetchRecord: responseReady property" } ], "background-fetch-record-interface": [ @@ -447,7 +447,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.abort()" + "title": "BackgroundFetchRegistration: abort() method" } ], "dom-backgroundfetchregistration-downloaded": [ @@ -488,7 +488,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.downloaded" + "title": "BackgroundFetchRegistration: downloaded property" } ], "dom-backgroundfetchregistration-downloadtotal": [ @@ -529,7 +529,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.downloadTotal" + "title": "BackgroundFetchRegistration: downloadTotal property" } ], "dom-backgroundfetchregistration-failurereason": [ @@ -570,7 +570,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.failureReason" + "title": "BackgroundFetchRegistration: failureReason property" } ], "dom-backgroundfetchregistration-id": [ @@ -611,7 +611,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.id" + "title": "BackgroundFetchRegistration: id property" } ], "background-fetch-registration-match": [ @@ -652,7 +652,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.match()" + "title": "BackgroundFetchRegistration: match() method" } ], "background-fetch-registration-match-all": [ @@ -693,7 +693,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.matchAll()" + "title": "BackgroundFetchRegistration: matchAll() method" } ], "background-fetch-registration-events": [ @@ -775,7 +775,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.recordsAvailable" + "title": "BackgroundFetchRegistration: recordsAvailable property" } ], "dom-backgroundfetchregistration-result": [ @@ -816,7 +816,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.result" + "title": "BackgroundFetchRegistration: result property" } ], "dom-backgroundfetchregistration-uploaded": [ @@ -857,7 +857,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.uploaded" + "title": "BackgroundFetchRegistration: uploaded property" } ], "dom-backgroundfetchregistration-uploadtotal": [ @@ -898,7 +898,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchRegistration.uploadTotal" + "title": "BackgroundFetchRegistration: uploadTotal property" } ], "background-fetch-registration": [ @@ -980,7 +980,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchUpdateUIEvent()" + "title": "BackgroundFetchUpdateUIEvent: BackgroundFetchUpdateUIEvent() constructor" } ], "background-fetch-update-ui-event-update-ui": [ @@ -1021,7 +1021,7 @@ "version_added": "79" } }, - "title": "BackgroundFetchUpdateUIEvent.updateUI()" + "title": "BackgroundFetchUpdateUIEvent: updateUI() method" } ], "background-fetch-update-ui-event": [ @@ -1064,5 +1064,210 @@ }, "title": "BackgroundFetchUpdateUIEvent" } + ], + "dom-serviceworkerglobalscope-onbackgroundfetchabort": [ + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerGlobalScope.json", + "name": "backgroundfetchabort_event", + "slug": "API/ServiceWorkerGlobalScope/backgroundfetchabort_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchabort_event", + "summary": "The backgroundfetchabort event of the ServiceWorkerGlobalScope interface is fired when the user or the app itself cancels a background fetch operation.", + "support": { + "chrome": { + "version_added": "74" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerGlobalScope: backgroundfetchabort event" + } + ], + "dom-serviceworkerglobalscope-onbackgroundfetchclick": [ + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerGlobalScope.json", + "name": "backgroundfetchclick_event", + "slug": "API/ServiceWorkerGlobalScope/backgroundfetchclick_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchclick_event", + "summary": "The backgroundfetchclick event of the ServiceWorkerGlobalScope interface is fired when the user clicks on the UI that the browser provides to show the user the progress of the background fetch operation.", + "support": { + "chrome": { + "version_added": "74" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerGlobalScope: backgroundfetchclick event" + } + ], + "dom-serviceworkerglobalscope-onbackgroundfetchfail": [ + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerGlobalScope.json", + "name": "backgroundfetchfail_event", + "slug": "API/ServiceWorkerGlobalScope/backgroundfetchfail_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchfail_event", + "summary": "The backgroundfetchfail event of the ServiceWorkerGlobalScope interface is fired when a background fetch operation has failed: that is, when at least one network request in the fetch has failed to complete successfully.", + "support": { + "chrome": { + "version_added": "74" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerGlobalScope: backgroundfetchfail event" + } + ], + "dom-serviceworkerglobalscope-onbackgroundfetchsuccess": [ + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerGlobalScope.json", + "name": "backgroundfetchsuccess_event", + "slug": "API/ServiceWorkerGlobalScope/backgroundfetchsuccess_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchsuccess_event", + "summary": "The backgroundfetchsuccess event of the ServiceWorkerGlobalScope interface is fired when a background fetch operation has completed successfully: that is, when all network requests in the fetch have completed successfully.", + "support": { + "chrome": { + "version_added": "74" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerGlobalScope: backgroundfetchsuccess event" + } + ], + "dom-serviceworkerregistration-backgroundfetch": [ + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerRegistration.json", + "name": "backgroundFetch", + "slug": "API/ServiceWorkerRegistration/backgroundFetch", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/backgroundFetch", + "summary": "The backgroundFetch property of the ServiceWorkerRegistration interface returns a reference to a BackgroundFetchManager object, which can be used to initiate background fetch operations.", + "support": { + "chrome": { + "version_added": "74" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerRegistration: backgroundFetch property" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/background-sync.json b/bikeshed/spec-data/readonly/mdn/background-sync.json index 9e29b4796b..e1dbc1bb69 100644 --- a/bikeshed/spec-data/readonly/mdn/background-sync.json +++ b/bikeshed/spec-data/readonly/mdn/background-sync.json @@ -81,7 +81,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.sync" + "title": "ServiceWorkerRegistration: sync property" } ], "dom-syncevent-syncevent": [ @@ -120,7 +120,7 @@ "version_added": "79" } }, - "title": "SyncEvent()" + "title": "SyncEvent: SyncEvent() constructor" } ], "ref-for-dom-syncevent-lastchance③": [ @@ -159,7 +159,7 @@ "version_added": "79" } }, - "title": "SyncEvent.lastChance" + "title": "SyncEvent: lastChance property" } ], "ref-for-dom-syncevent-tag": [ @@ -198,7 +198,7 @@ "version_added": "79" } }, - "title": "SyncEvent.tag" + "title": "SyncEvent: tag property" } ], "sync-event": [ @@ -276,7 +276,7 @@ "version_added": "79" } }, - "title": "SyncManager.getTags()" + "title": "SyncManager: getTags() method" } ], "dom-syncmanager-register": [ @@ -288,7 +288,7 @@ "name": "register", "slug": "API/SyncManager/register", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SyncManager/register", - "summary": "The SyncManager.register method of the SyncManager interface returns a Promise that resolves to a SyncRegistration instance.", + "summary": "The SyncManager.register method of the SyncManager interface registers a synchronization event, triggering a sync event inside the associated service worker as soon as network connectivity is available.", "support": { "chrome": { "version_added": "49" @@ -315,7 +315,7 @@ "version_added": "79" } }, - "title": "SyncManager.register()" + "title": "SyncManager: register() method" } ], "sync-manager-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/badging.json b/bikeshed/spec-data/readonly/mdn/badging.json index 514b6402bb..07e0e983fa 100644 --- a/bikeshed/spec-data/readonly/mdn/badging.json +++ b/bikeshed/spec-data/readonly/mdn/badging.json @@ -2,7 +2,8 @@ "clearappbadge-method": [ { "engines": [ - "blink" + "blink", + "webkit" ], "partial": [ "blink" @@ -37,7 +38,9 @@ "safari": { "version_added": false }, - "safari_ios": "mirror", + "safari_ios": { + "version_added": "16.4" + }, "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -46,13 +49,13 @@ "notes": "Windows and macOS only." } }, - "title": "Navigator.clearAppBadge()" + "title": "Navigator: clearAppBadge() method" } ], "setappbadge-method": [ { "engines": [ - "blink" + "webkit" ], "partial": [ "blink" @@ -69,7 +72,7 @@ "notes": "Windows and macOS only." }, "chrome_android": { - "version_added": "81" + "version_added": false }, "edge": "mirror", "firefox": { @@ -87,7 +90,9 @@ "safari": { "version_added": false }, - "safari_ios": "mirror", + "safari_ios": { + "version_added": "16.4" + }, "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -96,7 +101,7 @@ "notes": "Windows and macOS only." } }, - "title": "Navigator.setAppBadge()" + "title": "Navigator: setAppBadge() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/battery.json b/bikeshed/spec-data/readonly/mdn/battery.json index a2904d886a..3ad93bb51a 100644 --- a/bikeshed/spec-data/readonly/mdn/battery.json +++ b/bikeshed/spec-data/readonly/mdn/battery.json @@ -36,7 +36,7 @@ "version_added": "79" } }, - "title": "BatteryManager.charging" + "title": "BatteryManager: charging property" } ], "ref-for-dfn-chargingchange-1": [ @@ -166,7 +166,7 @@ "version_added": "79" } }, - "title": "BatteryManager.chargingTime" + "title": "BatteryManager: chargingTime property" } ], "ref-for-dfn-chargingtimechange-1": [ @@ -296,7 +296,7 @@ "version_added": "79" } }, - "title": "BatteryManager.dischargingTime" + "title": "BatteryManager: dischargingTime property" } ], "ref-for-dfn-dischargingtimechange-1": [ @@ -416,7 +416,7 @@ "version_added": "79" } }, - "title": "BatteryManager.level" + "title": "BatteryManager: level property" } ], "ref-for-dfn-levelchange-1": [ @@ -576,7 +576,7 @@ "version_added": "79" } }, - "title": "Navigator.getBattery()" + "title": "Navigator: getBattery() method" } ], "permissions-policy-integration": [ @@ -586,7 +586,7 @@ "name": "battery", "slug": "HTTP/Headers/Feature-Policy/battery", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/battery", - "summary": "The HTTP Feature-Policy header battery directive controls whether the current document is allowed to gather information about the battery of the device through the BatteryManager interface obtained via Navigator.getBattery().", + "summary": "The HTTP Permissions-Policy header battery directive controls whether the current document is allowed to gather information about the battery of the device through the BatteryManager interface obtained via Navigator.getBattery().", "support": { "chrome": { "version_added": false, @@ -615,7 +615,42 @@ "notes": "Will be implemented, see <a href='https://crbug.com/1007264'>bug 1007264</a>." } }, - "title": "Feature-Policy: battery" + "title": "Permissions-Policy: battery" + }, + { + "engines": [], + "filename": "http/headers/Permissions-Policy.json", + "name": "battery", + "slug": "HTTP/Headers/Permissions-Policy/battery", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/battery", + "summary": "The HTTP Permissions-Policy header battery directive controls whether the current document is allowed to gather information about the battery of the device through the BatteryManager interface obtained via Navigator.getBattery().", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Permissions-Policy: battery" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/beacon.json b/bikeshed/spec-data/readonly/mdn/beacon.json index b5fe13d460..2b8ef5ec22 100644 --- a/bikeshed/spec-data/readonly/mdn/beacon.json +++ b/bikeshed/spec-data/readonly/mdn/beacon.json @@ -56,7 +56,7 @@ "notes": "Starting in Chrome 59, this method cannot send a <code>Blob</code> whose type is not CORS safelisted. This is a temporary change until a mitigation can be found for the security issues that this creates. For more information see <a href='https://crbug.com/720283'>Chrome bug 720283</a>." } }, - "title": "Navigator.sendBeacon()" + "title": "Navigator: sendBeacon() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/clipboard-apis.json b/bikeshed/spec-data/readonly/mdn/clipboard-apis.json index 963490c0db..2f0ff0fe5b 100644 --- a/bikeshed/spec-data/readonly/mdn/clipboard-apis.json +++ b/bikeshed/spec-data/readonly/mdn/clipboard-apis.json @@ -113,14 +113,13 @@ } ] }, - "title": "Clipboard.read()" + "title": "Clipboard: read() method" } ], "dom-clipboard-readtext": [ { "engines": [ "blink", - "gecko", "webkit" ], "filename": "api/Clipboard.json", @@ -135,7 +134,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "63", + "version_added": false, "notes": "Firefox only supports reading the clipboard in browser extensions, using the <code>\"clipboardRead\"</code> extension permission." }, "firefox_android": "mirror", @@ -155,7 +154,7 @@ "version_added": "79" } }, - "title": "Clipboard.readText()" + "title": "Clipboard: readText() method" } ], "dom-clipboard-write": [ @@ -237,7 +236,7 @@ "notes": "From version 76, the <code>image/png</code> MIME type is supported." } }, - "title": "Clipboard.write()" + "title": "Clipboard: write() method" } ], "dom-clipboard-writetext": [ @@ -280,7 +279,7 @@ "version_added": "79" } }, - "title": "Clipboard.writeText()" + "title": "Clipboard: writeText() method" } ], "clipboard-interface": [ @@ -364,7 +363,7 @@ "version_added": "79" } }, - "title": "ClipboardEvent()" + "title": "ClipboardEvent: ClipboardEvent() constructor" } ], "clipboardevent-clipboarddata": [ @@ -407,7 +406,7 @@ "version_added": "79" } }, - "title": "ClipboardEvent.clipboardData" + "title": "ClipboardEvent: clipboardData property" } ], "clipboard-event-interfaces": [ @@ -456,12 +455,10 @@ "dom-clipboarditem-clipboarditem": [ { "engines": [ + "blink", "gecko", "webkit" ], - "partial": [ - "blink" - ], "needsflag": [ "gecko" ], @@ -471,16 +468,28 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ClipboardItem/ClipboardItem", "summary": "The ClipboardItem() constructor of the Clipboard API creates a new ClipboardItem object which represents data to be stored or retrieved via the Clipboard API, that is clipboard.write() and clipboard.read() respectively.", "support": { - "chrome": { - "version_added": "66", - "partial_implementation": true, - "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data, but not strings or Promises that resolve to strings or blobs. See <a href='https://crbug.com/1014310'>bug 1014310</a>." - }, - "chrome_android": { - "version_added": "66", - "partial_implementation": true, - "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data. Full implementation would also allow for a string or a Promise which resolves with either a string or blob. See <a href='https://crbug.com/1014310'>bug 1014310</a>." - }, + "chrome": [ + { + "version_added": "98" + }, + { + "version_added": "76", + "version_removed": "98", + "partial_implementation": true, + "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data, but not strings or Promises that resolve to strings or blobs. See <a href='https://crbug.com/1014310'>bug 1014310</a>." + } + ], + "chrome_android": [ + { + "version_added": "98" + }, + { + "version_added": "84", + "version_removed": "98", + "partial_implementation": true, + "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data, but not strings or Promises that resolve to strings or blobs. See <a href='https://crbug.com/1014310'>bug 1014310</a>." + } + ], "edge": "mirror", "firefox": { "version_added": "87", @@ -503,19 +512,21 @@ "version_added": "13.1" }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "9.0", - "partial_implementation": true, - "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data, but not strings or Promises that resolve to strings or blobs. See <a href='https://crbug.com/1014310'>bug 1014310</a>." - }, + "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "79", - "partial_implementation": true, - "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data, but not strings or Promises that resolve to strings or blobs. See <a href='https://crbug.com/1014310'>bug 1014310</a>." - } + "edge_blink": [ + { + "version_added": "98" + }, + { + "version_added": false, + "version_removed": "98", + "partial_implementation": true, + "notes": "The <code>ClipboardItem</code> constructor only accepts a blob as the item data, but not strings or Promises that resolve to strings or blobs. See <a href='https://crbug.com/1014310'>bug 1014310</a>." + } + ] }, - "title": "ClipboardItem()" + "title": "ClipboardItem: ClipboardItem() constructor" } ], "dom-clipboarditem-gettype": [ @@ -535,9 +546,11 @@ "summary": "The getType() method of the ClipboardItem interface returns a Promise that resolves with a Blob of the requested MIME type or an error if the MIME type is not found.", "support": { "chrome": { - "version_added": "66" + "version_added": "76" + }, + "chrome_android": { + "version_added": "84" }, - "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "87", @@ -566,7 +579,7 @@ "version_added": "79" } }, - "title": "ClipboardItem.getType()" + "title": "ClipboardItem: getType() method" } ], "dom-clipboarditem-presentationstyle": [ @@ -616,7 +629,7 @@ "version_added": false } }, - "title": "ClipboardItem.presentationStyle" + "title": "ClipboardItem: presentationStyle property" } ], "dom-clipboarditem-types": [ @@ -636,9 +649,11 @@ "summary": "The read-only types property of the ClipboardItem interface returns an Array of MIME types available within the ClipboardItem", "support": { "chrome": { - "version_added": "66" + "version_added": "76" + }, + "chrome_android": { + "version_added": "84" }, - "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "87", @@ -667,7 +682,7 @@ "version_added": "79" } }, - "title": "ClipboardItem.types" + "title": "ClipboardItem: types property" } ], "clipboarditem": [ @@ -687,9 +702,11 @@ "summary": "The ClipboardItem interface of the Clipboard API represents a single item format, used when reading or writing data via the Clipboard API. That is clipboard.read() and clipboard.write() respectively.", "support": { "chrome": { - "version_added": "66" + "version_added": "76" + }, + "chrome_android": { + "version_added": "84" }, - "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "87", @@ -914,7 +931,7 @@ "version_added": "79" } }, - "title": "Navigator.clipboard" + "title": "Navigator: clipboard property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/compression.json b/bikeshed/spec-data/readonly/mdn/compression.json index 58b2d4e85c..1a3e94b189 100644 --- a/bikeshed/spec-data/readonly/mdn/compression.json +++ b/bikeshed/spec-data/readonly/mdn/compression.json @@ -2,7 +2,9 @@ "dom-compressionstream-compressionstream": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CompressionStream.json", "name": "CompressionStream", @@ -19,7 +21,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -32,7 +34,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -41,13 +43,15 @@ "version_added": "80" } }, - "title": "CompressionStream()" + "title": "CompressionStream: CompressionStream() constructor" } ], "compression-stream": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CompressionStream.json", "name": "CompressionStream", @@ -64,7 +68,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -87,7 +91,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -102,7 +106,9 @@ "dom-decompressionstream-decompressionstream": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/DecompressionStream.json", "name": "DecompressionStream", @@ -119,7 +125,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -132,7 +138,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -141,13 +147,15 @@ "version_added": "80" } }, - "title": "DecompressionStream()" + "title": "DecompressionStream: DecompressionStream() constructor" } ], "decompression-stream": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/DecompressionStream.json", "name": "DecompressionStream", @@ -164,7 +172,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -187,7 +195,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/console.json b/bikeshed/spec-data/readonly/mdn/console.json index 50bb8b7009..cf2a20672a 100644 --- a/bikeshed/spec-data/readonly/mdn/console.json +++ b/bikeshed/spec-data/readonly/mdn/console.json @@ -6,14 +6,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "assert", "slug": "API/console/assert", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/assert", "summary": "The console.assert() method writes an error message to the console if the assertion is false. If the assertion is true, nothing happens.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -58,7 +58,7 @@ "version_added": "79" } }, - "title": "console.assert()" + "title": "console: assert() method" } ], "clear": [ @@ -68,7 +68,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "clear", "slug": "API/console/clear", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/clear", @@ -111,7 +111,7 @@ "version_added": "79" } }, - "title": "console.clear()" + "title": "console: clear() method" } ], "count": [ @@ -121,14 +121,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "count", "slug": "API/console/count", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/count", "summary": "The console.count() method logs the number of times that this particular call to count() has been called.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -166,7 +166,7 @@ "version_added": "79" } }, - "title": "console.count()" + "title": "console: count() method" } ], "countreset": [ @@ -176,7 +176,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "countReset", "slug": "API/console/countReset", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/countReset", @@ -213,7 +213,7 @@ "version_added": "79" } }, - "title": "console.countReset()" + "title": "console: countReset() method" } ], "debug": [ @@ -223,14 +223,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "debug", "slug": "API/console/debug", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/debug", "summary": "The console.debug() method outputs a message to the web console at the \"debug\" log level. The message is only displayed to the user if the console is configured to display debug output. In most cases, the log level is configured within the console UI. This log level might correspond to the Debug or Verbose log level.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -269,7 +269,7 @@ "version_added": "79" } }, - "title": "console.debug()" + "title": "console: debug() method" } ], "dir": [ @@ -279,14 +279,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "dir", "slug": "API/console/dir", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/dir", "summary": "The method console.dir() displays an interactive list of the properties of the specified JavaScript object. The output is presented as a hierarchical listing with disclosure triangles that let you see the contents of child objects.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -324,7 +324,7 @@ "version_added": "79" } }, - "title": "console.dir()" + "title": "console: dir() method" } ], "dirxml": [ @@ -334,14 +334,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "dirxml", "slug": "API/console/dirxml", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/dirxml", "summary": "The console.dirxml() method displays an interactive tree of the descendant elements of the specified XML/HTML element. If it is not possible to display as an element the JavaScript Object view is shown instead. The output is presented as a hierarchical listing of expandable nodes that let you see the contents of child nodes.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -386,7 +386,7 @@ "version_added": "79" } }, - "title": "console.dirxml()" + "title": "console: dirxml() method" } ], "error": [ @@ -396,7 +396,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "error", "slug": "API/console/error", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/error", @@ -441,7 +441,7 @@ "version_added": "79" } }, - "title": "console.error()" + "title": "console: error() method" } ], "group": [ @@ -451,14 +451,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "group", "slug": "API/console/group", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/group", "summary": "The console.group() method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console.groupEnd() is called.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -496,7 +496,7 @@ "version_added": "79" } }, - "title": "console.group()" + "title": "console: group() method" } ], "groupcollapsed": [ @@ -506,7 +506,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "groupCollapsed", "slug": "API/console/groupCollapsed", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/groupCollapsed", @@ -552,7 +552,7 @@ "version_added": "79" } }, - "title": "console.groupCollapsed()" + "title": "console: groupCollapsed() method" } ], "groupend": [ @@ -562,14 +562,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "groupEnd", "slug": "API/console/groupEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/groupEnd", "summary": "The console.groupEnd() method exits the current inline group in the Web console. See Using groups in the console in the console documentation for details and examples.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -607,7 +607,7 @@ "version_added": "79" } }, - "title": "console.groupEnd()" + "title": "console: groupEnd() method" } ], "info": [ @@ -617,7 +617,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "info", "slug": "API/console/info", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/info", @@ -663,7 +663,7 @@ "version_added": "79" } }, - "title": "console.info()" + "title": "console: info() method" } ], "log": [ @@ -673,7 +673,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "log", "slug": "API/console/log", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/log", @@ -718,7 +718,7 @@ "version_added": "79" } }, - "title": "console.log()" + "title": "console: log() method" } ], "table": [ @@ -728,7 +728,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "table", "slug": "API/console/table", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/table", @@ -771,7 +771,7 @@ "version_added": "79" } }, - "title": "console.table()" + "title": "console: table() method" } ], "time": [ @@ -781,14 +781,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "time", "slug": "API/console/time", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/time", "summary": "The console.time() method starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call console.timeEnd() with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -830,7 +830,7 @@ "feature": "console-time", "title": "console.time and console.timeEnd" }, - "title": "console.time()" + "title": "console: time() method" } ], "timeend": [ @@ -840,14 +840,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "timeEnd", "slug": "API/console/timeEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/timeEnd", "summary": "The console.timeEnd() stops a timer that was previously started by calling console.time().", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -885,7 +885,7 @@ "version_added": "79" } }, - "title": "console.timeEnd()" + "title": "console: timeEnd() method" } ], "timelog": [ @@ -895,11 +895,11 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "timeLog", "slug": "API/console/timeLog", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/timeLog", - "summary": "The console.timeLog() method logs the current value of a timer that was previously started by calling console.time() to the console.", + "summary": "The console.timeLog() method logs the current value of a timer that was previously started by calling console.time().", "support": { "chrome": { "version_added": "71" @@ -934,7 +934,7 @@ "version_added": "79" } }, - "title": "console.timeLog()" + "title": "console: timeLog() method" } ], "trace": [ @@ -944,14 +944,14 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "trace", "slug": "API/console/trace", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/trace", "summary": "The console.trace() method outputs a stack trace to the Web console.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -989,7 +989,7 @@ "version_added": "79" } }, - "title": "console.trace()" + "title": "console: trace() method" } ], "warn": [ @@ -999,7 +999,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "warn", "slug": "API/console/warn", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console/warn", @@ -1045,7 +1045,7 @@ "version_added": "79" } }, - "title": "console.warn()" + "title": "console: warn() method" } ], "console-namespace": [ @@ -1055,7 +1055,7 @@ "gecko", "webkit" ], - "filename": "api/Console.json", + "filename": "api/_globals/console.json", "name": "console", "slug": "API/console", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/console", diff --git a/bikeshed/spec-data/readonly/mdn/contact-api.json b/bikeshed/spec-data/readonly/mdn/contact-api.json index fcfc18b85e..009c5fee31 100644 --- a/bikeshed/spec-data/readonly/mdn/contact-api.json +++ b/bikeshed/spec-data/readonly/mdn/contact-api.json @@ -49,7 +49,7 @@ "version_added": false } }, - "title": "ContactsManager.getProperties()" + "title": "ContactsManager: getProperties() method" } ], "contacts-manager-select": [ @@ -102,7 +102,7 @@ "version_added": false } }, - "title": "ContactsManager.select()" + "title": "ContactsManager: select() method" } ], "contacts-manager": [ @@ -208,7 +208,7 @@ "version_added": false } }, - "title": "Navigator.contacts" + "title": "Navigator: contacts property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/contact-picker.json b/bikeshed/spec-data/readonly/mdn/contact-picker.json new file mode 100644 index 0000000000..009c5fee31 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/contact-picker.json @@ -0,0 +1,214 @@ +{ + "contacts-manager-getproperties": [ + { + "engines": [ + "blink", + "webkit" + ], + "needsflag": [ + "webkit" + ], + "filename": "api/ContactsManager.json", + "name": "getProperties", + "slug": "API/ContactsManager/getProperties", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ContactsManager/getProperties", + "summary": "The getProperties() method of the ContactsManager interface returns a Promise which resolves with an Array of strings indicating which contact properties are available.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": { + "version_added": "80" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": { + "version_added": "14.5", + "flags": [ + { + "name": "Contact Picker API", + "type": "preference" + } + ] + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "ContactsManager: getProperties() method" + } + ], + "contacts-manager-select": [ + { + "engines": [ + "blink", + "webkit" + ], + "needsflag": [ + "webkit" + ], + "filename": "api/ContactsManager.json", + "name": "select", + "slug": "API/ContactsManager/select", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ContactsManager/select", + "summary": "The select() method of the ContactsManager interface returns a Promise which, when resolved, presents the user with a contact picker which allows them to select contact(s) they wish to share. This method requires a user gesture for the Promise to resolve.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": { + "version_added": "80" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": { + "version_added": "14.5", + "flags": [ + { + "name": "Contact Picker API", + "type": "preference" + } + ] + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "ContactsManager: select() method" + } + ], + "contacts-manager": [ + { + "engines": [ + "blink", + "webkit" + ], + "needsflag": [ + "webkit" + ], + "filename": "api/ContactsManager.json", + "name": "ContactsManager", + "slug": "API/ContactsManager", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ContactsManager", + "summary": "The ContactsManager interface of the Contact Picker API allows users to select entries from their contact list and share limited details of the selected entries with a website or application.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": { + "version_added": "80" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": { + "version_added": "14.5", + "flags": [ + { + "name": "Contact Picker API", + "type": "preference" + } + ] + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "ContactsManager" + } + ], + "dom-navigator-contacts": [ + { + "engines": [ + "blink", + "webkit" + ], + "needsflag": [ + "webkit" + ], + "filename": "api/Navigator.json", + "name": "contacts", + "slug": "API/Navigator/contacts", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/contacts", + "summary": "The contacts read-only property of the Navigator interface returns a ContactsManager interface which allows users to select entries from their contact list and share limited details of the selected entries with a website or application.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": { + "version_added": "80" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": { + "version_added": "14.5", + "flags": [ + { + "name": "Contact Picker API", + "type": "preference" + } + ] + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Navigator: contacts property" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/content-index.json b/bikeshed/spec-data/readonly/mdn/content-index.json index ca24087d42..5cdf7915d9 100644 --- a/bikeshed/spec-data/readonly/mdn/content-index.json +++ b/bikeshed/spec-data/readonly/mdn/content-index.json @@ -37,7 +37,7 @@ "version_added": false } }, - "title": "ContentIndex.add()" + "title": "ContentIndex: add() method" } ], "content-index-delete": [ @@ -78,7 +78,7 @@ "version_added": false } }, - "title": "ContentIndex.delete()" + "title": "ContentIndex: delete() method" } ], "content-index-getall": [ @@ -119,7 +119,7 @@ "version_added": false } }, - "title": "ContentIndex.getAll()" + "title": "ContentIndex: getAll() method" } ], "content-index": [ @@ -201,7 +201,7 @@ "version_added": false } }, - "title": "ContentIndexEvent()" + "title": "ContentIndexEvent: ContentIndexEvent() constructor" }, { "engines": [ @@ -281,7 +281,7 @@ "version_added": false } }, - "title": "ContentIndexEvent.id" + "title": "ContentIndexEvent: id property" } ], "dom-serviceworkerglobalscope-oncontentdelete": [ @@ -363,7 +363,7 @@ "version_added": false } }, - "title": "ServiceWorkerRegistration.index" + "title": "ServiceWorkerRegistration: index property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/controls-list.json b/bikeshed/spec-data/readonly/mdn/controls-list.json index 4a17787d45..6c616d450a 100644 --- a/bikeshed/spec-data/readonly/mdn/controls-list.json +++ b/bikeshed/spec-data/readonly/mdn/controls-list.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.controlsList" + "title": "HTMLMediaElement: controlsList property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/cookie-store.json b/bikeshed/spec-data/readonly/mdn/cookie-store.json index 446dac5d7f..24a846a179 100644 --- a/bikeshed/spec-data/readonly/mdn/cookie-store.json +++ b/bikeshed/spec-data/readonly/mdn/cookie-store.json @@ -35,7 +35,7 @@ "version_added": "87" } }, - "title": "CookieChangeEvent()" + "title": "CookieChangeEvent: CookieChangeEvent() constructor" } ], "dom-cookiechangeevent-changed": [ @@ -74,7 +74,7 @@ "version_added": "87" } }, - "title": "CookieChangeEvent.changed" + "title": "CookieChangeEvent: changed property" } ], "dom-cookiechangeevent-deleted": [ @@ -113,7 +113,7 @@ "version_added": "87" } }, - "title": "CookieChangeEvent.deleted" + "title": "CookieChangeEvent: deleted property" } ], "CookieChangeEvent": [ @@ -125,7 +125,7 @@ "name": "CookieChangeEvent", "slug": "API/CookieChangeEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CookieChangeEvent", - "summary": "The CookieChangeEvent interface of the 'Cookie Store API' is the event type passed to CookieStore.onchange() when any cookie changes occur. A cookie change consists of a cookie and a type (either \"changed\" or \"deleted\").", + "summary": "The CookieChangeEvent interface of the 'Cookie Store API' is the event type of the change event fired at a CookieStore when any cookie changes occur. A cookie change consists of a cookie and a type (either \"changed\" or \"deleted\").", "support": { "chrome": { "version_added": "87" @@ -242,7 +242,7 @@ "name": "delete", "slug": "API/CookieStore/delete", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CookieStore/delete", - "summary": "The delete() method of the CookieStore interface deletes a cookie with the given name or options object. (See below.) The delete() method expires the cookie by changing the date to one in the past.", + "summary": "The delete() method of the CookieStore interface deletes a cookie with the given name or options object. The delete() method expires the cookie by changing the date to one in the past.", "support": { "chrome": { "version_added": "87" @@ -269,7 +269,7 @@ "version_added": "87" } }, - "title": "CookieStore.delete()" + "title": "CookieStore: delete() method" } ], "dom-cookiestore-get": [ @@ -281,7 +281,7 @@ "name": "get", "slug": "API/CookieStore/get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CookieStore/get", - "summary": "The get() method of the CookieStore interface returns a single cookie with the given name or options object. (See below.) The method will return the first matching cookie for the passed parameters.", + "summary": "The get() method of the CookieStore interface returns a single cookie with the given name or options object. The method will return the first matching cookie for the passed parameters.", "support": { "chrome": { "version_added": "87" @@ -308,7 +308,7 @@ "version_added": "87" } }, - "title": "CookieStore.get()" + "title": "CookieStore: get() method" } ], "dom-cookiestore-getall": [ @@ -347,7 +347,7 @@ "version_added": "87" } }, - "title": "CookieStore.getAll()" + "title": "CookieStore: getAll() method" } ], "dom-cookiestore-set": [ @@ -359,7 +359,7 @@ "name": "set", "slug": "API/CookieStore/set", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CookieStore/set", - "summary": "The set() method of the CookieStore interface sets a cookie with the given name and value or options object. (See below.)", + "summary": "The set() method of the CookieStore interface sets a cookie with the given name and value or options object.", "support": { "chrome": { "version_added": "87" @@ -386,7 +386,7 @@ "version_added": "87" } }, - "title": "CookieStore.set()" + "title": "CookieStore: set() method" } ], "CookieStore": [ @@ -466,7 +466,7 @@ "version_added": "87" } }, - "title": "CookieStoreManager.getSubscriptions()" + "title": "CookieStoreManager: getSubscriptions() method" } ], "dom-cookiestoremanager-subscribe": [ @@ -505,7 +505,7 @@ "version_added": "87" } }, - "title": "CookieStoreManager.subscribe()" + "title": "CookieStoreManager: subscribe() method" } ], "dom-cookiestoremanager-unsubscribe": [ @@ -544,7 +544,7 @@ "version_added": "87" } }, - "title": "CookieStoreManager.unsubscribe()" + "title": "CookieStoreManager: unsubscribe() method" } ], "cookiestoremanager": [ @@ -622,7 +622,7 @@ "version_added": "87" } }, - "title": "ExtendableCookieChangeEvent()" + "title": "ExtendableCookieChangeEvent: ExtendableCookieChangeEvent() constructor" } ], "dom-extendablecookiechangeevent-changed": [ @@ -661,7 +661,7 @@ "version_added": "87" } }, - "title": "ExtendableCookieChangeEvent.changed" + "title": "ExtendableCookieChangeEvent: changed property" } ], "dom-extendablecookiechangeevent-deleted": [ @@ -700,7 +700,7 @@ "version_added": "87" } }, - "title": "ExtendableCookieChangeEvent.deleted" + "title": "ExtendableCookieChangeEvent: deleted property" } ], "ExtendableCookieChangeEvent": [ diff --git a/bikeshed/spec-data/readonly/mdn/crash-reporting.json b/bikeshed/spec-data/readonly/mdn/crash-reporting.json index 8cb6fb6592..5b10050e05 100644 --- a/bikeshed/spec-data/readonly/mdn/crash-reporting.json +++ b/bikeshed/spec-data/readonly/mdn/crash-reporting.json @@ -1,43 +1,89 @@ -{ - "crashreportbody": [ - { - "engines": [ - "blink" - ], - "filename": "api/CrashReportBody.json", - "name": "CrashReportBody", - "slug": "API/CrashReportBody", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CrashReportBody", - "summary": "The CrashReportBody interface of the Reporting API represents the body of a crash report (the return value of its Report.body property).", - "support": { - "chrome": { - "version_added": "72" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, - "edge_blink": { - "version_added": "79" - } - }, - "title": "CrashReportBody" - } - ] -} +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-type" content="text/html; charset=utf-8"> + <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src 'unsafe-inline'; img-src data:; connect-src 'self'"> + <title>Page not found &middot; GitHub Pages</title> + <style type="text/css" media="screen"> + body { + background-color: #f1f1f1; + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + } + + .container { margin: 50px auto 40px auto; width: 600px; text-align: center; } + + a { color: #4183c4; text-decoration: none; } + a:hover { text-decoration: underline; } + + h1 { width: 800px; position:relative; left: -100px; letter-spacing: -1px; line-height: 60px; font-size: 60px; font-weight: 100; margin: 0px 0 50px 0; text-shadow: 0 1px 0 #fff; } + p { color: rgba(0, 0, 0, 0.5); margin: 20px 0; line-height: 1.6; } + + ul { list-style: none; margin: 25px 0; padding: 0; } + li { display: table-cell; font-weight: bold; width: 1%; } + + .logo { display: inline-block; margin-top: 35px; } + .logo-img-2x { display: none; } + @media + only screen and (-webkit-min-device-pixel-ratio: 2), + only screen and ( min--moz-device-pixel-ratio: 2), + only screen and ( -o-min-device-pixel-ratio: 2/1), + only screen and ( min-device-pixel-ratio: 2), + only screen and ( min-resolution: 192dpi), + only screen and ( min-resolution: 2dppx) { + .logo-img-1x { display: none; } + .logo-img-2x { display: inline-block; } + } + + #suggestions { + margin-top: 35px; + color: #ccc; + } + #suggestions a { + color: #666666; + font-weight: 200; + font-size: 14px; + margin: 0 10px; + } + + </style> + </head> + <body> + + <div class="container"> + + <h1>404</h1> + <p><strong>File not found</strong></p> + + <p> + The site configured at this address does not + contain the requested file. + </p> + + <p> + If this is your site, make sure that the filename case matches the URL + as well as any file permissions.<br> + For root URLs (like <code>http://example.com/</code>) you must provide an + <code>index.html</code> file. + </p> + + <p> + <a href="https://help.github.com/pages/">Read the full documentation</a> + for more information about using <strong>GitHub Pages</strong>. + </p> + + <div id="suggestions"> + <a href="https://githubstatus.com">GitHub Status</a> &mdash; + <a href="https://twitter.com/githubstatus">@githubstatus</a> + </div> + + <a href="/" class="logo logo-img-1x"> + <img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMTZCRDY3REIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMTZCRDY3RUIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdCQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjdDQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SM9MCAAAA+5JREFUeNrEV11Ik1EY3s4+ddOp29Q5b0opCgKFsoKoi5Kg6CIhuwi6zLJLoYLopq4qsKKgi4i6CYIoU/q5iDAKs6syoS76IRWtyJ+p7cdt7sf1PGOD+e0c3dygAx/67ZzzPM95/877GYdHRg3ZjMXFxepQKNS6sLCwJxqNNuFpiMfjVs4ZjUa/pmmjeD6VlJS8NpvNT4QQ7mxwjSsJiEQim/1+/9lgMHgIr5ohuxG1WCw9Vqv1clFR0dCqBODElV6v90ogEDjGdYbVjXhpaendioqK07CIR7ZAqE49PT09BPL2PMgTByQGsYiZlQD4uMXtdr+JxWINhgINYhGT2MsKgMrm2dnZXgRXhaHAg5jEJodUAHxux4LudHJE9RdEdA+i3Juz7bGHe4mhE9FNrgwBCLirMFV9Okh5eflFh8PR5nK5nDabrR2BNJlKO0T35+Li4n4+/J+/JQCxhmu5h3uJoXNHPbmWZAHMshWB8l5/ipqammaAf0zPDDx1ONV3vurdidqwAQL+pEc8sLcAe1CCvQ3YHxIW8Pl85xSWNC1hADDIv0rIE/o4J0k3kww4xSlwIhcq3EFFOm7KN/hUGOQkt0CFa5WpNJlMvxBEz/IVQAxg/ZRZl9wiHA63yDYieM7DnLP5CiAGsC7I5sgtYKJGWe2A8seFqgFJrJjEPY1Cn3pJ8/9W1e5VWsFDTEmFrBcoDhZJEQkXuhICMyKpjhahqN21hRYATKfUOlDmkygrR4o4C0VOLGJKrOITKB4jijzdXygBKixyC5TDQdnk/Pz8qRw6oOWGlsTKGOQW6OH6FBWsyePxdOXLTgxiyebILZCjz+GLgMIKnXNzc49YMlcRdHXcSwxFVgTInQhC9G33UhNoJLuqq6t345p9y3eUy8OTk5PjAHuI9uo4b07FBaOhsu0A4Unc+T1TU1Nj3KsSSE5yJ65jqF2DDd8QqWYmAZrIM2VlZTdnZmb6AbpdV9V6ec9znf5Q7HjYumdRE0JOp3MjitO4SFa+cZz8Umqe3TCbSLvdfkR/kWDdNQl5InuTcysOcpFT35ZrbBxx4p3JAHlZVVW1D/634VRt+FvLBgK/v5LV9WS+10xMTEwtRw7XvqOL+e2Q8V3AYIOIAXQ26/heWVnZCVfcyKHg2CBgTpmPmjYM8l24GyaUHyaIh7XwfR9ErE8qHoDfn2LTNAVC0HX6MFcBIP8Bi+6F6cdW/DICkANRfx99fEYFQ7Nph5i/uQiA214gno7K+guhaiKg9gC62+M8eR7XsBsYJ4ilam60Fb7r7uAj8wFyuwM1oIOWgfmDy6RXEEQzJMPe23DXrVS7rtyD3Df8z/FPgAEAzWU5Ku59ZAUAAAAASUVORK5CYII="> + </a> + + <a href="/" class="logo logo-img-2x"> + <img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEQUM1QkUxRUI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEQUM1QkUxRkI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdGQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjgwQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+hfPRaQAAB6lJREFUeNrsW2mME2UYbodtt+2222u35QheoCCYGBQligIJgkZJNPzgigoaTEj8AdFEMfADfyABkgWiiWcieK4S+QOiHAYUj2hMNKgYlEujpNttu9vttbvdw+chU1K6M535pt3ubHCSyezR+b73eb73+t7vrfXsufOW4bz6+vom9/b23ovnNNw34b5xYGAgODg46Mbt4mesVmsWd1qSpHhdXd2fuP/Afcput5/A88xwymcdBgLqenp6FuRyuWV4zu/v759QyWBjxoz5t76+/gun09mK5xFyakoCAPSaTCazNpvNPoYVbh6O1YKGRF0u13sNDQ27QMzfpiAAKj0lnU6/gBVfAZW2WWpwwVzy0IgP3G73FpjI6REhAGA9qVRqA1b9mVoBVyIC2tDi8Xg24+dUzQiAbS/s7Ox8G2o/3mKCC+Zw0efzPQEfcVjYrARX3dbV1bUtHo8fMgt42f+Mp0yUTVQbdWsAHVsikdiHkHaPxcQXQufXgUBgMRxme9U0AAxfH4vFvjM7eF6UkbJS5qoQwEQGA57Ac5JllFyUVZZ5ckUEgMVxsK2jlSYzI+QXJsiyjzNEAJyJAzb/KQa41jJKL8pODMQiTEAymXw5n8/P0IjD3bh7Rgog59aanxiIRTVvV/oj0tnHca/WMrVwODwB3raTGxzkBg/gnZVapFV62Wy2n5AO70HM/5wbJ0QnXyQSaVPDIuNZzY0V3ntHMwxiwHA0Gj2Np7ecIBDgaDAYXKCQJM1DhrgJ3nhulcPbl8j4NmHe46X/g60fwbz3aewjkqFQaAqebWU1AOqyQwt8Id6qEHMc97zu7u7FGGsn7HAiVuosVw7P35C1nccdgSCxop1dHeZswmfHMnxBo6ZTk+jN8dl/vF7vWofDsa+MLN9oEUBMxOb3+1eoEsBVw6Zmua49r8YmhAKDiEPcMwBsxMiqQ+ixzPFxZyqRpXARG/YOr1ObFJ0gUskXBbamcR1OKmMUvDxHRAu8/LmY3jFLMUpFqz9HxG65smYJdyKyECOxDiEAe/p1gjF2oonivZAsxVgl2daa4EQWCW6J55qFAFFZiJWYLxNQy2qOSUzGRsyXCUDIeliwAHEO4WSlWQBRFoZakXcKmCXmyXAKs0Ve9vl8q42WoIYpJU4hV3hKcNs8m9gl7p/xQ73eF5kB4j5mNrWmTJRNwAzqiV1CxjVTZCIkEq+Z1bZFZSN2CenmVAFVy4Plz8xKAGWjjAKFk6lCBMDR/MJjLLMSQNm43xAiQKTaA+9/wewhDjL+JVI1kkTSSOTcKbMTwPqESAot6dn6Fr1gHwVJju6IRuyiByPuUUBAg5DGkAgBmxlvdgIEK9gDkohdY/BJo4CAG0R8miRSsGABkgVQs4KXu098IgUXSSRsFAoKZiVAVDY2WUiiPTjYRi41KwGisrGsLtlsth8Fiwnz2fBkQvWfRtlE3iF2yW63/yCacXZ1dW02GwGyTFaRd4idJnCKHRaCxYRHoG5LTKT6SyiToP1fJHbmAYPYRR0UnZQtMnA6s0zg+GZBlt0Gdo7EPHgpE3Q6nZ8YyLhc8Xj8MJh/aKTAY+5FPAKHLE7RdwuYJZmNwzyCMkBCYyKROJBMJl9B/PXXCjjmCmDOVzH3fiPpObEWGqoKe4EBl8v1hlqsdLvd23mkxHM9pc9kMpmno9HoeTii7ewbHEZPPx1ztLS1tV3AnGuMjiNjvbQFuHw6zDo5By7dTPAQNBgMLrRarTkSls1mnwT7uwp9virx9QzbW/HuV/j5d/b+6jniKlllP8lkeONJDk+dq9GsQTnC4fB1heO0K47Hwe7WdDr9nAKgXwOBwHI+C45Htj1d6sd429TUNEcmUdc+PRaLHcvn87dXW4ugzdsaGxufL94NFv9zi1J7GVbhlvb2dnaJ3SVrxfc+n2+NTsZ7/H7/Mr3g5XdSIHyJSH1PZ+7fToyl2+ErqilgZ4NaLYB9goVGaHjR93Hv1ZrU4XDsFT20kH3PObzbWk0CgG1jacVIUnAQb9F+VexyLMzkpcLv0IJV7AHQIOCAUYHx7v5qgScmYHtTqSAyZLEJTK22Bie4iq3xsqpm4SAf9Hq9a2DnJ4uLK3SEULcdRvp3i3zHySqpficxEdsQc1NrlYXXvR+O7qASSezXB+h1SuUomgg9LL8BUoV4749EIolKh+EiqWmqVEZlDgHks2pxHw7xTqUQw9J5NcAXOK10AGIoZ6Zli6JY6Z1Q461KoZ4NiKLHarW+KDsxlDUPHZ5zPQZqUVDPJsTqb5n9malbpAh8C2XXDLl62+WZIDFRUlNVOiwencnNU3aQEkL+cDMSoLvZo2fQB7AJssNAuFuvorlDVVkkg2I87+jo2K2QAVphDrfyViK5VqtO34OkaxXCp+7drdDBCAdubm6eidX+2WwqT5komwh4YQLk+H4aE93h8Xg2gvHekQZOGSgLZTLyDTLJ4Lx9/KZWKBSainT4Iy3FqQBfnUZR42PKQFksBr9QKVXCPusD3OiA/RkQ5kP8qV/Jl1WywAp/6+dcmPM2zL1UrUahe4JqfnWWKXIul3uUbfP8njAFLW1OFr3gdFtZ72cNH+PtQT7/brW+NXqJAHh0y9V8/U/A1U7AfwIMAD7mS3pCbuWJAAAAAElFTkSuQmCC"> + </a> + </div> + </body> +</html> diff --git a/bikeshed/spec-data/readonly/mdn/credential-management.json b/bikeshed/spec-data/readonly/mdn/credential-management.json index fe56533dc7..3e2f054b09 100644 --- a/bikeshed/spec-data/readonly/mdn/credential-management.json +++ b/bikeshed/spec-data/readonly/mdn/credential-management.json @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "Credential.id" + "title": "Credential: id property" } ], "dom-credential-type": [ @@ -82,7 +82,7 @@ "version_added": "79" } }, - "title": "Credential.type" + "title": "Credential: type property" } ], "the-credential-interface": [ @@ -96,7 +96,7 @@ "name": "Credential", "slug": "API/Credential", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Credential", - "summary": "The Credential interface of the Credential Management API provides information about an entity (usually a user) as a prerequisite to a trust decision.", + "summary": "The Credential interface of the Credential Management API provides information about an entity (usually a user) normally as a prerequisite to a trust decision.", "support": { "chrome": { "version_added": "51" @@ -139,7 +139,7 @@ "name": "create", "slug": "API/CredentialsContainer/create", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/create", - "summary": "The create() method of the CredentialsContainer interface returns a Promise that resolves with a new Credential instance based on the provided options, or null if no Credential object can be created.", + "summary": "The create() method of the CredentialsContainer interface returns a Promise that resolves with a new credential instance based on the provided options, the information from which can then be stored and later used to authenticate users via navigator.credentials.get().", "support": { "chrome": { "version_added": "60" @@ -168,7 +168,7 @@ "version_added": "79" } }, - "title": "CredentialsContainer.create()" + "title": "CredentialsContainer: create() method" } ], "dom-credentialscontainer-get": [ @@ -182,7 +182,7 @@ "name": "get", "slug": "API/CredentialsContainer/get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/get", - "summary": "The get() method of the CredentialsContainer interface returns a Promise to a single Credential instance that matches the provided parameters. If no match is found the Promise will resolve to null.", + "summary": "The get() method of the CredentialsContainer interface returns a Promise that fulfills with a single credential instance that matches the provided parameters, which the browser can then use to authenticate with a relying party. This is used by several different credential-related APIs with significantly different purposes:", "support": { "chrome": { "version_added": "51" @@ -211,7 +211,7 @@ "version_added": "79" } }, - "title": "CredentialsContainer.get()" + "title": "CredentialsContainer: get() method" } ], "dom-credentialscontainer-preventsilentaccess": [ @@ -268,7 +268,7 @@ } ] }, - "title": "CredentialsContainer.preventSilentAccess()" + "title": "CredentialsContainer: preventSilentAccess() method" } ], "dom-credentialscontainer-store": [ @@ -309,7 +309,7 @@ "version_added": "79" } }, - "title": "CredentialsContainer.store()" + "title": "CredentialsContainer: store() method" } ], "credentialscontainer": [ @@ -391,7 +391,7 @@ "version_added": "79" } }, - "title": "FederatedCredential()" + "title": "FederatedCredential: FederatedCredential() constructor" } ], "dom-federatedcredential-protocol": [ @@ -430,7 +430,7 @@ "version_added": "79" } }, - "title": "FederatedCredential.protocol" + "title": "FederatedCredential: protocol property" } ], "dom-federatedcredential-provider": [ @@ -469,7 +469,7 @@ "version_added": "79" } }, - "title": "FederatedCredential.provider" + "title": "FederatedCredential: provider property" } ], "federated": [ @@ -551,7 +551,7 @@ "version_added": "79" } }, - "title": "Navigator.credentials" + "title": "Navigator: credentials property" } ], "dom-passwordcredential-passwordcredential": [ @@ -590,7 +590,7 @@ "version_added": "79" } }, - "title": "PasswordCredential()" + "title": "PasswordCredential: PasswordCredential() constructor" } ], "dom-credentialuserdata-iconurl": [ @@ -629,7 +629,7 @@ "version_added": "79" } }, - "title": "PasswordCredential.iconURL" + "title": "PasswordCredential: iconURL property" } ], "dom-credentialuserdata-name": [ @@ -668,7 +668,7 @@ "version_added": "79" } }, - "title": "PasswordCredential.name" + "title": "PasswordCredential: name property" } ], "dom-passwordcredential-password": [ @@ -707,7 +707,7 @@ "version_added": "79" } }, - "title": "PasswordCredential.password" + "title": "PasswordCredential: password property" } ], "passwordcredential-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/csp-embedded-enforcement.json b/bikeshed/spec-data/readonly/mdn/csp-embedded-enforcement.json index 197ab66270..bee2fe4b7d 100644 --- a/bikeshed/spec-data/readonly/mdn/csp-embedded-enforcement.json +++ b/bikeshed/spec-data/readonly/mdn/csp-embedded-enforcement.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "HTMLIFrameElement.csp" + "title": "HTMLIFrameElement: csp property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/csp.json b/bikeshed/spec-data/readonly/mdn/csp.json index 765b84cf58..9f8e4af4ee 100644 --- a/bikeshed/spec-data/readonly/mdn/csp.json +++ b/bikeshed/spec-data/readonly/mdn/csp.json @@ -1,4 +1,93 @@ { + "cspviolationreportbody": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSPViolationReportBody.json", + "name": "CSPViolationReportBody", + "slug": "API/CSPViolationReportBody", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSPViolationReportBody", + "summary": "The CSPViolationReportBody interface contains the report data for a Content Security Policy (CSP) violation. CSP violations are thrown when the webpage attempts to load a resource that violates the CSP set by the Content-Security-Policy HTTP header.", + "support": { + "chrome": { + "version_added": "74" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "56" + }, + "opera_android": { + "version_added": "48" + }, + "safari": { + "version_added": "preview" + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": "10.0" + }, + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSPViolationReportBody" + } + ], + "eventdef-globaleventhandlers-securitypolicyviolation": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Element.json", + "name": "securitypolicyviolation_event", + "slug": "API/Element/securitypolicyviolation_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/securitypolicyviolation_event", + "summary": "The securitypolicyviolation event is fired when a Content Security Policy is violated.", + "support": { + "chrome": { + "version_added": "41" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "15" + }, + "firefox": { + "version_added": "63" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Element: securitypolicyviolation event" + } + ], "dom-securitypolicyviolationevent-securitypolicyviolationevent": [ { "engines": [ @@ -39,7 +128,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent()" + "title": "SecurityPolicyViolationEvent: SecurityPolicyViolationEvent() constructor" } ], "dom-securitypolicyviolationevent-blockeduri": [ @@ -82,7 +171,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.blockedURI" + "title": "SecurityPolicyViolationEvent: blockedURI property" } ], "dom-securitypolicyviolationevent-columnnumber": [ @@ -125,7 +214,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.columnNumber" + "title": "SecurityPolicyViolationEvent: columnNumber property" } ], "dom-securitypolicyviolationevent-disposition": [ @@ -166,7 +255,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.disposition" + "title": "SecurityPolicyViolationEvent: disposition property" } ], "dom-securitypolicyviolationevent-documenturi": [ @@ -209,7 +298,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.documentURI" + "title": "SecurityPolicyViolationEvent: documentURI property" } ], "dom-securitypolicyviolationevent-effectivedirective": [ @@ -252,7 +341,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.effectiveDirective" + "title": "SecurityPolicyViolationEvent: effectiveDirective property" } ], "dom-securitypolicyviolationevent-linenumber": [ @@ -295,7 +384,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.lineNumber" + "title": "SecurityPolicyViolationEvent: lineNumber property" } ], "dom-securitypolicyviolationevent-originalpolicy": [ @@ -338,7 +427,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.originalPolicy" + "title": "SecurityPolicyViolationEvent: originalPolicy property" } ], "dom-securitypolicyviolationevent-referrer": [ @@ -381,7 +470,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.referrer" + "title": "SecurityPolicyViolationEvent: referrer property" } ], "dom-securitypolicyviolationevent-sample": [ @@ -422,7 +511,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.sample" + "title": "SecurityPolicyViolationEvent: sample property" } ], "dom-securitypolicyviolationevent-sourcefile": [ @@ -465,7 +554,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.sourceFile" + "title": "SecurityPolicyViolationEvent: sourceFile property" } ], "dom-securitypolicyviolationevent-statuscode": [ @@ -508,7 +597,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.statusCode" + "title": "SecurityPolicyViolationEvent: statusCode property" } ], "dom-securitypolicyviolationevent-violateddirective": [ @@ -551,7 +640,7 @@ "version_added": "79" } }, - "title": "SecurityPolicyViolationEvent.violatedDirective" + "title": "SecurityPolicyViolationEvent: violatedDirective property" } ], "report-violation": [ @@ -675,9 +764,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "10" }, @@ -724,9 +811,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "10" }, @@ -764,10 +849,16 @@ "edge": { "version_added": "14" }, - "firefox": { - "version_added": "23", - "notes": "Before Firefox 50, ping attributes of &lt;a&gt; elements weren't covered by connect-src." - }, + "firefox": [ + { + "version_added": "50" + }, + { + "version_added": "23", + "partial_implementation": true, + "notes": "Before Firefox 50, ping attributes of &lt;a&gt; elements weren't covered by connect-src." + } + ], "firefox_android": { "version_added": "23" }, @@ -776,9 +867,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -823,9 +912,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -870,9 +957,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -917,9 +1002,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "10" }, @@ -946,7 +1029,7 @@ "name": "frame-ancestors", "slug": "HTTP/Headers/Content-Security-Policy/frame-ancestors", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors", - "summary": "The HTTP Content-Security-Policy (CSP) frame-ancestors directive specifies valid parents that may embed a page using <frame>, <iframe>, <object>, <embed>, or <applet>.", + "summary": "The HTTP Content-Security-Policy (CSP) frame-ancestors directive specifies valid parents that may embed a page using <frame>, <iframe>, <object>, or <embed>.", "support": { "chrome": { "version_added": "40" @@ -957,14 +1040,26 @@ "edge": { "version_added": "15" }, - "firefox": { - "version_added": "33", - "notes": "Before Firefox 58, <code>frame-ancestors</code> is ignored in <code>Content-Security-Policy-Report-Only</code>." - }, - "firefox_android": { - "version_added": "33", - "notes": "Before Firefox for Android 58, <code>frame-ancestors</code> is ignored in <code>Content-Security-Policy-Report-Only</code>." - }, + "firefox": [ + { + "version_added": "58" + }, + { + "version_added": "33", + "partial_implementation": true, + "notes": "Before Firefox 58, <code>frame-ancestors</code> is ignored in <code>Content-Security-Policy-Report-Only</code>." + } + ], + "firefox_android": [ + { + "version_added": "58" + }, + { + "version_added": "33", + "partial_implementation": true, + "notes": "Before Firefox for Android 58, <code>frame-ancestors</code> is ignored in <code>Content-Security-Policy-Report-Only</code>." + } + ], "ie": { "version_added": false }, @@ -972,9 +1067,7 @@ "opera": { "version_added": "26" }, - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "10" }, @@ -982,9 +1075,7 @@ "version_added": "9.3" }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": null - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -1023,9 +1114,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1070,9 +1159,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1114,9 +1201,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": false }, @@ -1161,9 +1246,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1188,7 +1271,7 @@ "name": "object-src", "slug": "HTTP/Headers/Content-Security-Policy/object-src", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/object-src", - "summary": "The HTTP Content-Security-Policy object-src directive specifies valid sources for the <object>, <embed>, and <applet> elements.", + "summary": "The HTTP Content-Security-Policy object-src directive specifies valid sources for the <object> and <embed> elements.", "support": { "chrome": { "version_added": "25" @@ -1208,9 +1291,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1224,47 +1305,6 @@ "title": "CSP: object-src" } ], - "directive-prefetch-src": [ - { - "engines": [], - "filename": "http/headers/Content-Security-Policy.json", - "name": "prefetch-src", - "slug": "HTTP/Headers/Content-Security-Policy/prefetch-src", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/prefetch-src", - "summary": "The HTTP Content-Security-Policy (CSP) prefetch-src directive specifies valid resources that may be prefetched or prerendered.", - "support": { - "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/801561'>bug 801561</a>." - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1457204'>bug 1457204</a>." - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false, - "notes": "See <a href='https://webkit.org/b/185070'>bug 185070</a>." - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/801561'>bug 801561</a>." - } - }, - "title": "CSP: prefetch-src" - } - ], "directive-report-to": [ { "engines": [ @@ -1289,12 +1329,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": false - }, - "opera_android": { - "version_added": false - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": false }, @@ -1339,9 +1375,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1386,9 +1420,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1406,50 +1438,33 @@ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" ], "filename": "http/headers/Content-Security-Policy.json", "name": "script-src-attr", "slug": "HTTP/Headers/Content-Security-Policy/script-src-attr", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src-attr", - "summary": "The HTTP Content-Security-Policy (CSP) script-src-attr directive specifies valid sources for JavaScript inline event handlers. This includes only inline script event handlers like onclick, but not URLs loaded directly into <script> elements.", + "summary": "The HTTP Content-Security-Policy (CSP) script-src-attr directive specifies valid sources for JavaScript inline event handlers.", "support": { "chrome": { "version_added": "75" }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "105", - "flags": [ - { - "type": "preference", - "name": "security.csp.script-src-attr-elem.enabled", - "value_to_set": "true" - } - ] - } - ], + "firefox": { + "version_added": "108" + }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": "preview" - }, - "safari_ios": { "version_added": false }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -1463,50 +1478,33 @@ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" ], "filename": "http/headers/Content-Security-Policy.json", "name": "script-src-elem", "slug": "HTTP/Headers/Content-Security-Policy/script-src-elem", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src-elem", - "summary": "The HTTP Content-Security-Policy (CSP) script-src-elem directive specifies valid sources for JavaScript <script> elements, but not inline script event handlers like onclick.", + "summary": "The HTTP Content-Security-Policy (CSP) script-src-elem directive specifies valid sources for JavaScript <script> elements.", "support": { "chrome": { "version_added": "75" }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "105", - "flags": [ - { - "type": "preference", - "name": "security.csp.script-src-attr-elem.enabled", - "value_to_set": "true" - } - ] - } - ], + "firefox": { + "version_added": "108" + }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": "preview" - }, - "safari_ios": { "version_added": false }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -1547,9 +1545,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "7" }, @@ -1567,8 +1563,7 @@ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" ], "filename": "http/headers/Content-Security-Policy.json", "name": "style-src-attr", @@ -1581,36 +1576,20 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "105", - "flags": [ - { - "type": "preference", - "name": "security.csp.style-src-attr-elem.enabled", - "value_to_set": "true" - } - ] - } - ], + "firefox": { + "version_added": "108" + }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": "preview" - }, - "safari_ios": { "version_added": false }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -1624,50 +1603,33 @@ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" ], "filename": "http/headers/Content-Security-Policy.json", "name": "style-src-elem", "slug": "HTTP/Headers/Content-Security-Policy/style-src-elem", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src-elem", - "summary": "The HTTP Content-Security-Policy (CSP) style-src-elem directive specifies valid sources for stylesheets <style> elements and <link> elements with rel=\"stylesheet\".", + "summary": "The HTTP Content-Security-Policy (CSP) style-src-elem directive specifies valid sources for stylesheet <style> elements and <link> elements with rel=\"stylesheet\".", "support": { "chrome": { "version_added": "75" }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "105", - "flags": [ - { - "type": "preference", - "name": "security.csp.style-src-attr-elem.enabled", - "value_to_set": "true" - } - ] - } - ], + "firefox": { + "version_added": "108" + }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": "preview" - }, - "safari_ios": { "version_added": false }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -1706,12 +1668,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "48" - }, - "opera_android": { - "version_added": "45" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "15.5" }, @@ -1739,7 +1697,7 @@ "name": "Content-Security-Policy", "slug": "HTTP/Headers/Content-Security-Policy", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy", - "summary": "The HTTP Content-Security-Policy response header allows web site administrators to control resources the user agent is allowed to load for a given page. With a few exceptions, policies mostly involve specifying server origins and script endpoints. This helps guard against cross-site scripting attacks (Cross-site_scripting).", + "summary": "The HTTP Content-Security-Policy response header allows website administrators to control resources the user agent is allowed to load for a given page. With a few exceptions, policies mostly involve specifying server origins and script endpoints. This helps guard against cross-site scripting attacks (Cross-site_scripting).", "support": { "chrome": [ { diff --git a/bikeshed/spec-data/readonly/mdn/css-animations-2.json b/bikeshed/spec-data/readonly/mdn/css-animations-2.json index edce40f2ba..94298eb3b3 100644 --- a/bikeshed/spec-data/readonly/mdn/css-animations-2.json +++ b/bikeshed/spec-data/readonly/mdn/css-animations-2.json @@ -37,7 +37,7 @@ "version_added": "84" } }, - "title": "CSSAnimation.animationName" + "title": "CSSAnimation: animationName property" } ], "the-CSSAnimation-interface": [ @@ -84,12 +84,10 @@ "animation-composition": [ { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/properties/animation-composition.json", "name": "animation-composition", "slug": "CSS/animation-composition", @@ -97,19 +95,64 @@ "summary": "The animation-composition CSS property specifies the composite operation to use when multiple animations affect the same property simultaneously.", "support": { "chrome": { + "version_added": "112" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "115" + }, + { + "version_added": "104", + "flags": [ + { + "type": "preference", + "name": "layout.css.animation-composition.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { "version_added": false }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "112" + } + }, + "title": "animation-composition" + } + ], + "valdef-animation-duration-auto": [ + { + "engines": [ + "blink" + ], + "filename": "css/properties/animation-duration.json", + "name": "auto", + "slug": "CSS/animation-duration#Values", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration#Values", + "summary": "The animation-duration CSS property sets the length of time that an animation takes to complete one cycle.", + "support": { + "chrome": { + "version_added": "115" + }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "104", - "flags": [ - { - "type": "preference", - "name": "layout.css.animation-composition.enabled", - "value_to_set": "true" - } - ] + "version_added": false, + "notes": "Firefox does not currently support the <code>auto</code> value and only accepts values in seconds or milliseconds. It's recommended that <em>1ms</em> is used until <code>auto</code> is supported." }, "firefox_android": "mirror", "ie": { @@ -119,21 +162,22 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "16" + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "115" } }, - "title": "animation-composition" + "title": "animation-duration" } ], "animation-timeline": [ { "engines": [ + "blink", "gecko" ], "needsflag": [ @@ -143,23 +187,48 @@ "name": "animation-timeline", "slug": "CSS/animation-timeline", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timeline", - "summary": "The animation-timeline CSS property specifies the name of the timeline that defines the progress of the animation.", + "summary": "The animation-timeline CSS property specifies the timeline that is used to control the progress of a CSS animation.", "support": { - "chrome": { - "version_added": false - }, + "chrome": [ + { + "version_added": "115" + }, + { + "version_added": "85", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": "97", - "flags": [ - { - "type": "preference", - "name": "layout.css.scroll-linked-animations.enabled", - "value_to_set": "true" - } - ] - }, + "firefox": [ + { + "version_added": "110", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "97", + "version_removed": "110", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-linked-animations.enabled", + "value_to_set": "true" + } + ] + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -173,9 +242,21 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": false - } + "edge_blink": [ + { + "version_added": "115" + }, + { + "version_added": "85", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] + } + ] }, "title": "animation-timeline" } diff --git a/bikeshed/spec-data/readonly/mdn/css-animations.json b/bikeshed/spec-data/readonly/mdn/css-animations.json index 0aee21c8b8..1f7d3c588a 100644 --- a/bikeshed/spec-data/readonly/mdn/css-animations.json +++ b/bikeshed/spec-data/readonly/mdn/css-animations.json @@ -45,7 +45,7 @@ "version_added": "79" } }, - "title": "AnimationEvent()" + "title": "AnimationEvent: AnimationEvent() constructor" } ], "dom-animationevent-animationname": [ @@ -88,7 +88,7 @@ "version_added": "79" } }, - "title": "AnimationEvent.animationName" + "title": "AnimationEvent: animationName property" } ], "dom-animationevent-elapsedtime": [ @@ -131,7 +131,7 @@ "version_added": "79" } }, - "title": "AnimationEvent.elapsedTime" + "title": "AnimationEvent: elapsedTime property" } ], "dom-animationevent-pseudoelement": [ @@ -172,7 +172,7 @@ "version_added": "79" } }, - "title": "AnimationEvent.pseudoElement" + "title": "AnimationEvent: pseudoElement property" } ], "interface-animationevent": [ @@ -329,7 +329,7 @@ "version_added": "79" } }, - "title": "CSSKeyframeRule.keyText" + "title": "CSSKeyframeRule: keyText property" } ], "dom-csskeyframerule-style": [ @@ -376,7 +376,7 @@ "version_added": "79" } }, - "title": "CSSKeyframeRule.style" + "title": "CSSKeyframeRule: style property" } ], "interface-csskeyframerule": [ @@ -514,11 +514,11 @@ }, "firefox": [ { - "version_added": "22" + "version_added": "21" }, { "version_added": "5", - "version_removed": "22", + "version_removed": "21", "alternative_name": "insertRule" } ], @@ -578,7 +578,7 @@ } ] }, - "title": "CSSKeyframesRule.appendRule()" + "title": "CSSKeyframesRule: appendRule() method" } ], "dom-csskeyframesrule-cssrules": [ @@ -625,7 +625,7 @@ "version_added": "79" } }, - "title": "CSSKeyframesRule.cssRules" + "title": "CSSKeyframesRule: cssRules property" } ], "dom-csskeyframesrule-deleterule": [ @@ -672,7 +672,7 @@ "version_added": "79" } }, - "title": "CSSKeyframesRule.deleteRule()" + "title": "CSSKeyframesRule: deleteRule() method" } ], "interface-csskeyframesrule-findrule": [ @@ -719,7 +719,7 @@ "version_added": "79" } }, - "title": "CSSKeyframesRule.findRule()" + "title": "CSSKeyframesRule: findRule() method" } ], "dom-csskeyframesrule-name": [ @@ -766,7 +766,7 @@ "version_added": "79" } }, - "title": "CSSKeyframesRule.name" + "title": "CSSKeyframesRule: name property" } ], "interface-csskeyframesrule": [ @@ -2238,7 +2238,7 @@ "name": "animation", "slug": "CSS/animation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation", - "summary": "The animation shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, and animation-play-state.", + "summary": "The animation shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, animation-play-state, and animation-timeline.", "support": { "chrome": [ { diff --git a/bikeshed/spec-data/readonly/mdn/css-backgrounds.json b/bikeshed/spec-data/readonly/mdn/css-backgrounds.json index 49b4d03597..96fc4bab46 100644 --- a/bikeshed/spec-data/readonly/mdn/css-backgrounds.json +++ b/bikeshed/spec-data/readonly/mdn/css-backgrounds.json @@ -133,7 +133,7 @@ ], "safari": [ { - "version_added": "14" + "version_added": "5" }, { "version_added": "3", @@ -143,7 +143,7 @@ ], "safari_ios": [ { - "version_added": "14" + "version_added": "5" }, { "version_added": "1", @@ -634,7 +634,7 @@ "name": "background", "slug": "CSS/background", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/background", - "summary": "The background shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.", + "summary": "The background shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. Component properties not set in the background shorthand property value declaration are set to their default values.", "support": { "chrome": { "version_added": "1" @@ -1936,7 +1936,8 @@ "summary": "The border-image-width CSS property sets the width of an element's border image.", "support": { "chrome": { - "version_added": "15" + "version_added": "15", + "notes": "Before Chrome 112, a border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." }, "chrome_android": "mirror", "edge": { @@ -1959,7 +1960,8 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Before Chrome 112, a border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." } }, "title": "border-image-width" @@ -1980,7 +1982,8 @@ "support": { "chrome": [ { - "version_added": "16" + "version_added": "16", + "notes": "Before Chrome 112, a border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." }, { "prefix": "-webkit-", @@ -2014,7 +2017,8 @@ "oculus": "mirror", "opera": [ { - "version_added": "11" + "version_added": "11", + "notes": "Before Opera 98, a border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." }, { "version_added": "10.5", @@ -2024,7 +2028,8 @@ ], "opera_android": [ { - "version_added": "11" + "version_added": "11", + "notes": "A border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." }, { "version_added": "11", @@ -2053,7 +2058,8 @@ "samsunginternet_android": "mirror", "webview_android": [ { - "version_added": "4.4" + "version_added": "4.4", + "notes": "Before WebView 112, a border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." }, { "prefix": "-webkit-", @@ -2062,7 +2068,8 @@ ], "edge_blink": [ { - "version_added": "79" + "version_added": "79", + "notes": "Before Chrome 112, a border image's absolute or percentage length width may not take precedence over a narrower <code>border-width</code> (<a href='https://crbug.com/767352'>bug 767352</a>)." }, { "prefix": "-webkit-", @@ -2586,5 +2593,54 @@ }, "title": "box-shadow" } + ], + "typedef-line-style": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/types/line-style.json", + "name": "line-style", + "slug": "CSS/line-style", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/line-style", + "summary": "The <line-style> enumerated value type represents keyword values that define the style of a line, or the lack of a line. The <line-style> keyword values are used in the following longhand and shorthand border and column properties:", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "oculus": "mirror", + "opera": { + "version_added": "3.5" + }, + "opera_android": "mirror", + "safari": { + "version_added": "1" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "<line-style>" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-box-4.json b/bikeshed/spec-data/readonly/mdn/css-box-4.json index 07a522bedc..b023efbaed 100644 --- a/bikeshed/spec-data/readonly/mdn/css-box-4.json +++ b/bikeshed/spec-data/readonly/mdn/css-box-4.json @@ -1,7 +1,9 @@ { "margin-trim": [ { - "engines": [], + "engines": [ + "webkit" + ], "filename": "css/properties/margin-trim.json", "name": "margin-trim", "slug": "CSS/margin-trim", @@ -25,7 +27,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/css-cascade-5.json b/bikeshed/spec-data/readonly/mdn/css-cascade-5.json index 54c3d7c0a2..8a61100b58 100644 --- a/bikeshed/spec-data/readonly/mdn/css-cascade-5.json +++ b/bikeshed/spec-data/readonly/mdn/css-cascade-5.json @@ -1,4 +1,168 @@ { + "dom-csslayerblockrule-name": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSLayerBlockRule.json", + "name": "name", + "slug": "API/CSSLayerBlockRule/name", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSLayerBlockRule/name", + "summary": "The read-only name property of the CSSLayerBlockRule interface represents the name of the associated cascade layer.", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "97" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "CSSLayerBlockRule: name property" + } + ], + "csslayerblockrule": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSLayerBlockRule.json", + "name": "CSSLayerBlockRule", + "slug": "API/CSSLayerBlockRule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSLayerBlockRule", + "summary": "The CSSLayerBlockRule represents a @layer block rule. It is a grouping at-rule meaning that it can contain other rules, and is associated to a given cascade layer, identified by its name.", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "97" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "CSSLayerBlockRule" + } + ], + "dom-csslayerstatementrule-namelist": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSLayerStatementRule.json", + "name": "nameList", + "slug": "API/CSSLayerStatementRule/nameList", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSLayerStatementRule/nameList", + "summary": "The read-only nameList property of the CSSLayerStatementRule interface return the list of associated cascade layer names. The names can't be modified.", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "97" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "CSSLayerStatementRule: nameList property" + } + ], + "csslayerstatementrule": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSLayerStatementRule.json", + "name": "CSSLayerStatementRule", + "slug": "API/CSSLayerStatementRule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSLayerStatementRule", + "summary": "The CSSLayerStatementRule represents a @layer statement rule. Unlike CSSLayerBlockRule, it doesn't contain other rules and merely defines one or several layers by providing their names.", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "97" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "CSSLayerStatementRule" + } + ], "at-import": [ { "engines": [ @@ -10,7 +174,7 @@ "name": "import", "slug": "CSS/@import", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@import", - "summary": "The @import CSS at-rule is used to import style rules from other stylesheets.", + "summary": "The @import CSS at-rule is used to import style rules from other valid stylesheets. An @import rule must be defined at the top of the stylesheet, before any other at-rule (except @charset and @layer) and style declarations, or it will be ignored.", "support": { "chrome": { "version_added": "1" diff --git a/bikeshed/spec-data/readonly/mdn/css-cascade.json b/bikeshed/spec-data/readonly/mdn/css-cascade.json index b420f4f8a5..7f631d1e68 100644 --- a/bikeshed/spec-data/readonly/mdn/css-cascade.json +++ b/bikeshed/spec-data/readonly/mdn/css-cascade.json @@ -150,7 +150,7 @@ "name": "revert", "slug": "CSS/revert", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/revert", - "summary": "The revert CSS keyword reverts the cascaded value of the property from its current value to the value the property would have had if no changes had been made by the current style origin to the current element. Thus, it resets the property to its inherited value if it inherits from its parent or to the default value established by the user agent's stylesheet (or by user styles, if any exist). It can be applied to any CSS property, including the CSS shorthand property all.", + "summary": "The revert CSS keyword reverts the cascaded value of the property from its current value to the value the property would have had if no changes had been made by the current style origin to the current element. Thus, it resets the property either to user agent set value, to user set value, to its inherited value (if it is inheritable), or to initial value. It can be applied to any CSS property, including the CSS shorthand property all.", "support": { "chrome": { "version_added": "84" diff --git a/bikeshed/spec-data/readonly/mdn/css-color-5.json b/bikeshed/spec-data/readonly/mdn/css-color-5.json index 7171669449..1fbdecd3a0 100644 --- a/bikeshed/spec-data/readonly/mdn/css-color-5.json +++ b/bikeshed/spec-data/readonly/mdn/css-color-5.json @@ -2,10 +2,7 @@ "color-mix": [ { "engines": [ - "gecko", - "webkit" - ], - "needsflag": [ + "blink", "gecko", "webkit" ], @@ -13,22 +10,15 @@ "name": "color-mix", "slug": "CSS/color_value/color-mix", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix", - "summary": "The color-mix() functional notation takes two color values and returns the result of mixing them in a given colorspace by a given amount.", + "summary": "The color-mix() functional notation takes two <color> values and returns the result of mixing them in a given colorspace by a given amount.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "88", - "flags": [ - { - "type": "preference", - "name": "layout.css.color-mix.enabled", - "value_to_set": "true" - } - ] + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -37,20 +27,25 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15", - "flags": [ - { - "type": "preference", - "name": "CSS color-mix()" - } - ] - }, + "safari": [ + { + "version_added": "16.2" + }, + { + "version_added": "15", + "flags": [ + { + "type": "preference", + "name": "CSS color-mix()" + } + ] + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "color-mix()" diff --git a/bikeshed/spec-data/readonly/mdn/css-color-adjust.json b/bikeshed/spec-data/readonly/mdn/css-color-adjust.json index 1c429d7311..ecd747d321 100644 --- a/bikeshed/spec-data/readonly/mdn/css-color-adjust.json +++ b/bikeshed/spec-data/readonly/mdn/css-color-adjust.json @@ -43,7 +43,8 @@ "forced-color-adjust-prop": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "css/properties/forced-color-adjust.json", "name": "forced-color-adjust", @@ -54,14 +55,12 @@ "chrome": { "version_added": "89" }, - "chrome_android": { - "version_added": false - }, + "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -69,9 +68,7 @@ "alternative_name": "-ms-high-contrast-adjust" }, "oculus": "mirror", - "opera": { - "version_added": false - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": false diff --git a/bikeshed/spec-data/readonly/mdn/css-color.json b/bikeshed/spec-data/readonly/mdn/css-color.json index 844e8b5168..f246eaf2c6 100644 --- a/bikeshed/spec-data/readonly/mdn/css-color.json +++ b/bikeshed/spec-data/readonly/mdn/css-color.json @@ -145,6 +145,8 @@ "color-function": [ { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "css/types/color.json", @@ -154,12 +156,12 @@ "summary": "The color() functional notation allows a color to be specified in a particular, specified colorspace rather than the implicit sRGB colorspace that most of the other color functions operate in.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -183,7 +185,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "caniuse": { @@ -304,7 +306,7 @@ "name": "hsla", "slug": "CSS/color_value/hsla", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsla", - "summary": "The hsla() functional notation expresses a given color according to its hue, saturation, and lightness components. An optional alpha component represents the color's transparency.", + "summary": "The hsl() functional notation expresses an sRGB color according to its hue, saturation, and lightness components. An optional alpha component represents the color's transparency.", "support": { "chrome": { "version_added": "1" @@ -339,7 +341,7 @@ "version_added": "79" } }, - "title": "hsla()" + "title": "hsl()" }, { "engines": [ @@ -398,7 +400,7 @@ "name": "rgba", "slug": "CSS/color_value/rgba", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgba", - "summary": "The rgba() functional notation expresses a color according to its red, green, and blue components. An optional alpha component represents the color's transparency.", + "summary": "The rgb() functional notation expresses a color according to its red, green, and blue components. An optional alpha component represents the color's transparency.", "support": { "chrome": { "version_added": "1" @@ -433,7 +435,7 @@ "version_added": "79" } }, - "title": "rgba()" + "title": "rgb()" } ], "the-hwb-notation": [ @@ -480,6 +482,8 @@ "lab-colors": [ { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "css/types/color.json", @@ -489,12 +493,12 @@ "summary": "The lab() functional notation expresses a given color in the CIE L*a*b* color space. Lab represents the entire range of color that humans can see.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -510,13 +514,15 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "lab()" }, { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "css/types/color.json", @@ -526,12 +532,12 @@ "summary": "The lch() functional notation expresses a given color in the LCH color space. It has the same L axis as lab(), but uses polar coordinates C (Chroma) and H (Hue).", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -547,7 +553,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "lch()" @@ -606,21 +612,23 @@ "ok-lab": [ { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "css/types/color.json", "name": "oklab", "slug": "CSS/color_value/oklab", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/oklab", - "summary": "The oklab() functional notation expresses a given color in the Oklab color space, which attempts to mimic how color is perceived by the human eye. The oklab() works with a Cartesian coordinate system on the OKlab color space, the a- and b-axes. If you want a polar color system, chroma and hue, use oklch().", + "summary": "The oklab() functional notation expresses a given color in the Oklab color space, which attempts to mimic how color is perceived by the human eye. The oklab() works with a Cartesian coordinate system on the Oklab color space, the a- and b-axes. If you want a polar color system, chroma and hue, use oklch().", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -636,28 +644,30 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "oklab()" }, { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "css/types/color.json", "name": "oklch", "slug": "CSS/color_value/oklch", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/oklch", - "summary": "The oklch() functional notation expresses a given color in the OKLCH color space. It has the same L axis as oklab(), but uses polar coordinates C (Chroma) and H (Hue).", + "summary": "The oklch() functional notation expresses a given color in the Oklch color space. It has the same L axis as oklab(), but uses polar coordinates C (Chroma) and H (Hue).", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -673,7 +683,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "oklch()" @@ -690,7 +700,7 @@ "name": "rgb_hexadecimal_notation", "slug": "CSS/hex-color", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color", - "summary": "The <hex-color> CSS data type is a notation for describing the hexadecimal color syntax of an sRGB color using its primary color components (red, green, blue) written as hexadecimal numbers, as well as its transparency. It can be used everywhere a <color> type is allowed.", + "summary": "The <hex-color> CSS data type is a notation for describing the hexadecimal color syntax of an sRGB color using its primary color components (red, green, blue) written as hexadecimal numbers, as well as its transparency.", "support": { "chrome": { "version_added": "1" @@ -790,9 +800,9 @@ ], "filename": "css/types/color.json", "name": "transparent", - "slug": "CSS/color_value#transparent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#transparent", - "summary": "The <color> CSS data type represents a color. A <color> may also include an alpha-channel transparency value, indicating how the color should composite with its background.", + "slug": "CSS/named-color#transparent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/named-color#transparent", + "summary": "The <named-color> CSS data type is the name of a color, such as red, blue, black, or lightseagreen. Syntactically, a <named-color> is an <ident>.", "support": { "chrome": { "version_added": "1" @@ -827,7 +837,7 @@ "version_added": "79" } }, - "title": "<color>" + "title": "<named-color>" } ], "color-syntax": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-conditional-3.json b/bikeshed/spec-data/readonly/mdn/css-conditional-3.json index daa6bdad9c..8c14cd2fce 100644 --- a/bikeshed/spec-data/readonly/mdn/css-conditional-3.json +++ b/bikeshed/spec-data/readonly/mdn/css-conditional-3.json @@ -7,10 +7,10 @@ "webkit" ], "filename": "api/CSS.json", - "name": "supports", - "slug": "API/CSS/supports", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/supports", - "summary": "The CSS.supports() method returns a boolean value indicating if the browser supports a given CSS feature, or not.", + "name": "supports_static", + "slug": "API/CSS/supports_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/supports_static", + "summary": "The CSS.supports() static method returns a boolean value indicating if the browser supports a given CSS feature, or not.", "support": { "chrome": [ { @@ -71,7 +71,7 @@ } ] }, - "title": "CSS.supports()" + "title": "CSS: supports() static method" } ], "dom-cssconditionrule-conditiontext": [ @@ -114,7 +114,7 @@ "version_added": "79" } }, - "title": "CSSConditionRule.conditionText" + "title": "CSSConditionRule: conditionText property" } ], "the-cssconditionrule-interface": [ @@ -206,7 +206,7 @@ "version_added": "79" } }, - "title": "CSSMediaRule.media" + "title": "CSSMediaRule: media property" } ], "the-cssmediarule-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-contain-3.json b/bikeshed/spec-data/readonly/mdn/css-contain-3.json index ed04cec396..7d704f2723 100644 --- a/bikeshed/spec-data/readonly/mdn/css-contain-3.json +++ b/bikeshed/spec-data/readonly/mdn/css-contain-3.json @@ -1,4 +1,207 @@ { + "dom-csscontainerrule-containername": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSContainerRule.json", + "name": "containerName", + "slug": "API/CSSContainerRule/containerName", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSContainerRule/containerName", + "summary": "The read-only containerName property of the CSSContainerRule interface represents the container name of the associated CSS @container at-rule.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "CSSContainerRule: containerName property" + } + ], + "dom-csscontainerrule-containerquery": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSContainerRule.json", + "name": "containerQuery", + "slug": "API/CSSContainerRule/containerQuery", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSContainerRule/containerQuery", + "summary": "The read-only containerQuery property of the CSSContainerRule interface returns a string representing the container conditions that are evaluated when the container changes size in order to determine if the styles in the associated @container are applied.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "CSSContainerRule: containerQuery property" + } + ], + "the-csscontainerrule-interface": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSContainerRule.json", + "name": "CSSContainerRule", + "slug": "API/CSSContainerRule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSContainerRule", + "summary": "The CSSContainerRule interface represents a single CSS @container rule.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSSContainerRule" + } + ], + "style-container": [ + { + "engines": [ + "blink" + ], + "filename": "css/at-rules/container.json", + "name": "style_queries_for_custom_properties", + "slug": "CSS/@container", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@container", + "summary": "The @container CSS at-rule is a conditional group rule that applies styles to a containment context. Style declarations are filtered by a condition and applied to the container if the condition is true. The condition is evaluated when the container changes size.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "@container" + } + ], + "container-rule": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/at-rules/container.json", + "name": "container", + "slug": "CSS/@container", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@container", + "summary": "The @container CSS at-rule is a conditional group rule that applies styles to a containment context. Style declarations are filtered by a condition and applied to the container if the condition is true. The condition is evaluated when the container changes size.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "@container" + } + ], "valdef-contain-inline-size": [ { "engines": [ @@ -10,7 +213,7 @@ "name": "inline-size", "slug": "CSS/contain#inline-size", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/contain#inline-size", - "summary": "The contain CSS property allows an author to indicate that an element and its contents are, as much as possible, independent of the rest of the document tree. Containment allows the browser to calculate layout, style, paint, size, or any combination of them for a specific area of the DOM. Changes within an element with containment applied are not propagated outside of the contained element to the rest of the page, leading to performance benefits through fewer DOM re-renders.", + "summary": "The contain CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.", "support": { "chrome": { "version_added": "105" @@ -39,5 +242,128 @@ }, "title": "contain" } + ], + "container-name": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/container-name.json", + "name": "container-name", + "slug": "CSS/container-name", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container-name", + "summary": "The container-name CSS property specifies a list of query container names used by the @container at-rule in a container query. A container query will apply styles to elements based on the size of the nearest ancestor with a containment context. When a containment context is given a name, it can be specifically targeted using the @container at-rule instead of the nearest ancestor with containment.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "container-name" + } + ], + "container-type": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/container-type.json", + "name": "container-type", + "slug": "CSS/container-type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container-type", + "summary": "The container-type CSS property is used to define the type of containment used in a container query.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "container-type" + } + ], + "container-shorthand": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/container.json", + "name": "container", + "slug": "CSS/container", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container", + "summary": "The container shorthand CSS property establishes the element as a query container and specifies the name or name for the containment context used in a container query.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "container" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-contain.json b/bikeshed/spec-data/readonly/mdn/css-contain.json index ca4585b86a..bea5e439c0 100644 --- a/bikeshed/spec-data/readonly/mdn/css-contain.json +++ b/bikeshed/spec-data/readonly/mdn/css-contain.json @@ -1,4 +1,202 @@ { + "dom-contentvisibilityautostatechangeevent-contentvisibilityautostatechangeevent": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ContentVisibilityAutoStateChangeEvent.json", + "name": "ContentVisibilityAutoStateChangeEvent", + "slug": "API/ContentVisibilityAutoStateChangeEvent/ContentVisibilityAutoStateChangeEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ContentVisibilityAutoStateChangeEvent/ContentVisibilityAutoStateChangeEvent", + "summary": "The ContentVisibilityAutoStateChangeEvent() constructor creates a new ContentVisibilityAutoStateChangeEvent object instance.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110", + "flags": [ + { + "type": "preference", + "name": "layout.css.content-visibility.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "ContentVisibilityAutoStateChangeEvent: ContentVisibilityAutoStateChangeEvent() constructor" + } + ], + "dom-contentvisibilityautostatechangeevent-skipped": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ContentVisibilityAutoStateChangeEvent.json", + "name": "skipped", + "slug": "API/ContentVisibilityAutoStateChangeEvent/skipped", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ContentVisibilityAutoStateChangeEvent/skipped", + "summary": "The skipped read-only property of the ContentVisibilityAutoStateChangeEvent interface returns true if the user agent skips the element's contents, or false otherwise.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110", + "flags": [ + { + "type": "preference", + "name": "layout.css.content-visibility.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "ContentVisibilityAutoStateChangeEvent: skipped property" + } + ], + "content-visibility-auto-state-change": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ContentVisibilityAutoStateChangeEvent.json", + "name": "ContentVisibilityAutoStateChangeEvent", + "slug": "API/ContentVisibilityAutoStateChangeEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ContentVisibilityAutoStateChangeEvent", + "summary": "The ContentVisibilityAutoStateChangeEvent interface is the event object for the contentvisibilityautostatechange event, which fires on any element with content-visibility: auto set on it when it starts or stops being relevant to the user and skipping its contents.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110", + "flags": [ + { + "type": "preference", + "name": "layout.css.content-visibility.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "ContentVisibilityAutoStateChangeEvent" + }, + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/Element.json", + "name": "contentvisibilityautostatechange_event", + "slug": "API/Element/contentvisibilityautostatechanged_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/contentvisibilityautostatechanged_event", + "summary": "The contentvisibilityautostatechange event fires on any element with content-visibility: auto set on it when it starts or stops being relevant to the user and skipping its contents.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110", + "flags": [ + { + "type": "preference", + "name": "layout.css.content-visibility.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "Element: contentvisibilityautostatechange event" + } + ], "valdef-contain-style": [ { "engines": [ @@ -10,10 +208,11 @@ "name": "style", "slug": "CSS/contain#style", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/contain#style", - "summary": "The contain CSS property allows an author to indicate that an element and its contents are, as much as possible, independent of the rest of the document tree. Containment allows the browser to calculate layout, style, paint, size, or any combination of them for a specific area of the DOM. Changes within an element with containment applied are not propagated outside of the contained element to the rest of the page, leading to performance benefits through fewer DOM re-renders.", + "summary": "The contain CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.", "support": { "chrome": { - "version_added": "52" + "version_added": "52", + "notes": "Before Chrome 115, style containment did not affect quotes, see <a href='https://crbug.com/882385'>Chromium bug 882385</a>)." }, "chrome_android": "mirror", "edge": "mirror", @@ -28,13 +227,15 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "15.4", + "notes": "Style containment does not affect quotes, see <a href='https://webkit.org/b/232083'>WebKit bug 232083</a>)." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Before Chrome 115, style containment did not affect quotes, see <a href='https://crbug.com/882385'>Chromium bug 882385</a>)." } }, "title": "contain" @@ -51,7 +252,7 @@ "name": "contain", "slug": "CSS/contain", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/contain", - "summary": "The contain CSS property allows an author to indicate that an element and its contents are, as much as possible, independent of the rest of the document tree. Containment allows the browser to calculate layout, style, paint, size, or any combination of them for a specific area of the DOM. Changes within an element with containment applied are not propagated outside of the contained element to the rest of the page, leading to performance benefits through fewer DOM re-renders.", + "summary": "The contain CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.", "support": { "chrome": { "version_added": "52" @@ -88,22 +289,35 @@ "content-visibility": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "css/properties/content-visibility.json", "name": "content-visibility", "slug": "CSS/content-visibility", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/content-visibility", - "summary": "The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.", + "summary": "The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. It enables the user agent to skip an element's rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.", "support": { "chrome": { "version_added": "85" }, "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": false - }, + "firefox": [ + { + "version_added": "preview" + }, + { + "version_added": "109", + "flags": [ + { + "type": "preference", + "name": "layout.css.content-visibility.enabled", + "value_to_set": "true" + } + ] + } + ], "firefox_android": "mirror", "ie": { "version_added": false diff --git a/bikeshed/spec-data/readonly/mdn/css-counter-styles.json b/bikeshed/spec-data/readonly/mdn/css-counter-styles.json index 99a0b55dc0..00b3e06417 100644 --- a/bikeshed/spec-data/readonly/mdn/css-counter-styles.json +++ b/bikeshed/spec-data/readonly/mdn/css-counter-styles.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "additiveSymbols", @@ -27,7 +28,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -36,14 +37,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.additiveSymbols" + "title": "CSSCounterStyleRule: additiveSymbols property" } ], "dom-csscounterstylerule-fallback": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "fallback", @@ -67,7 +69,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -76,14 +78,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.fallback" + "title": "CSSCounterStyleRule: fallback property" } ], "dom-csscounterstylerule-name": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "name", @@ -107,7 +110,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -116,14 +119,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.name" + "title": "CSSCounterStyleRule: name property" } ], "dom-csscounterstylerule-negative": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "negative", @@ -147,7 +151,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -156,14 +160,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.negative" + "title": "CSSCounterStyleRule: negative property" } ], "dom-csscounterstylerule-pad": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "pad", @@ -187,7 +192,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -196,14 +201,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.pad" + "title": "CSSCounterStyleRule: pad property" } ], "dom-csscounterstylerule-prefix": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "prefix", @@ -227,7 +233,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -236,14 +242,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.prefix" + "title": "CSSCounterStyleRule: prefix property" } ], "dom-csscounterstylerule-range": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "range", @@ -267,7 +274,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -276,14 +283,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.range" + "title": "CSSCounterStyleRule: range property" } ], "dom-csscounterstylerule-speakas": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "speakAs", @@ -307,7 +315,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -316,14 +324,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.speakAs" + "title": "CSSCounterStyleRule: speakAs property" } ], "dom-csscounterstylerule-suffix": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "suffix", @@ -347,7 +356,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -356,14 +365,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.suffix" + "title": "CSSCounterStyleRule: suffix property" } ], "dom-csscounterstylerule-symbols": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "symbols", @@ -387,7 +397,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -396,14 +406,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.symbols" + "title": "CSSCounterStyleRule: symbols property" } ], "dom-csscounterstylerule-system": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "system", @@ -427,7 +438,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -436,14 +447,15 @@ "version_added": "91" } }, - "title": "CSSCounterStyleRule.system" + "title": "CSSCounterStyleRule: system property" } ], "the-csscounterstylerule-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSCounterStyleRule.json", "name": "CSSCounterStyleRule", @@ -467,8 +479,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false, - "notes": "See <a href='https://webkit.org/b/167645'>bug 167645</a>." + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -484,7 +495,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "additive-symbols", @@ -508,7 +520,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -520,7 +532,9 @@ "title": "additive-symbols" }, { - "engines": [], + "engines": [ + "webkit" + ], "partial": [ "blink", "gecko" @@ -551,7 +565,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -569,7 +583,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "fallback", @@ -593,7 +608,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -609,7 +624,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "negative", @@ -633,7 +649,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -647,7 +663,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "system", @@ -671,7 +688,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -687,7 +704,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "pad", @@ -711,7 +729,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -727,7 +745,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "prefix", @@ -751,7 +770,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -767,7 +786,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "range", @@ -791,7 +811,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -886,7 +906,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/counter-style.json", "name": "counter-style", @@ -910,8 +931,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false, - "notes": "See <a href='https://webkit.org/b/167645'>bug 167645</a>." + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -963,6 +983,7 @@ }, { "engines": [ + "blink", "gecko" ], "filename": "css/properties/list-style.json", @@ -972,7 +993,7 @@ "summary": "The symbols() CSS function lets you define counter styles inline, directly as the value of a property such as list-style. Unlike @counter-style, symbols() is anonymous (i.e., it can only be used once). Although less powerful, it is shorter and easier to write than @counter-style.", "support": { "chrome": { - "version_added": false + "version_added": "91" }, "chrome_android": "mirror", "edge": "mirror", @@ -993,7 +1014,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "91" } }, "title": "symbols()" diff --git a/bikeshed/spec-data/readonly/mdn/css-display.json b/bikeshed/spec-data/readonly/mdn/css-display.json index 4450b39ac2..cebac3f4fc 100644 --- a/bikeshed/spec-data/readonly/mdn/css-display.json +++ b/bikeshed/spec-data/readonly/mdn/css-display.json @@ -104,7 +104,7 @@ "name": "display", "slug": "CSS/display", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/display", - "summary": "The display CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.", + "summary": "The display CSS property sets whether an element is treated as a block or inline box and the layout used for its children, such as flow layout, grid or flex.", "support": { "chrome": { "version_added": "1" @@ -227,5 +227,57 @@ }, "title": "order" } + ], + "visibility": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/visibility.json", + "name": "visibility", + "slug": "CSS/visibility", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/visibility", + "summary": "The visibility CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a <table>.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4", + "notes": [ + "Internet Explorer doesn't support <code>visibility: initial</code>.", + "Internet Explorer doesn't support <code>visibility: unset</code>.", + "Up to Internet Explorer 7, descendants of <code>hidden</code> elements will still be invisible even if they have <code>visibility</code> set to <code>visible</code>." + ] + }, + "oculus": "mirror", + "opera": { + "version_added": "4" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "visibility" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-env.json b/bikeshed/spec-data/readonly/mdn/css-env.json index 6264618694..684a1bd20d 100644 --- a/bikeshed/spec-data/readonly/mdn/css-env.json +++ b/bikeshed/spec-data/readonly/mdn/css-env.json @@ -10,7 +10,7 @@ "name": "safe-area-inset-bottom", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": { "version_added": "69" @@ -49,7 +49,7 @@ "name": "safe-area-inset-left", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": { "version_added": "69" @@ -88,7 +88,7 @@ "name": "safe-area-inset-right", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": { "version_added": "69" @@ -127,7 +127,7 @@ "name": "safe-area-inset-top", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": { "version_added": "69" @@ -168,7 +168,7 @@ "name": "env", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": { "version_added": "69" diff --git a/bikeshed/spec-data/readonly/mdn/css-flexbox.json b/bikeshed/spec-data/readonly/mdn/css-flexbox.json index fa38f6c4a4..2b0e6c818f 100644 --- a/bikeshed/spec-data/readonly/mdn/css-flexbox.json +++ b/bikeshed/spec-data/readonly/mdn/css-flexbox.json @@ -510,7 +510,7 @@ "name": "flex-grow", "slug": "CSS/flex-grow", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow", - "summary": "The flex-grow CSS property sets the flex grow factor of a flex item's main size.", + "summary": "The flex-grow CSS property sets the flex grow factor, which specifies how much of the flex container's remaining space should be assigned to the flex item's main size.", "support": { "chrome": [ { @@ -796,7 +796,7 @@ "notes": [ "Since Firefox 28, multi-line flexbox is supported.", "Before Firefox 32, Firefox wasn't able to animate values starting or stopping at <code>0</code>.", - "Until Firefox 61, flex items that are sized according to their content are sized using <a href='https://w3c.github.io/csswg-drafts/css-sizing-3/#column-sizing'><code>fit-content</code>, not <code>max-content</code></a>." + "Until Firefox 61, flex items that are sized according to their content are sized using <a href='https://drafts.csswg.org/css-sizing-3/#column-sizing'><code>fit-content</code>, not <code>max-content</code></a>." ] }, { @@ -810,7 +810,7 @@ "notes": [ "Since Firefox 28, multi-line flexbox is supported.", "Before Firefox 32, Firefox wasn't able to animate values starting or stopping at <code>0</code>.", - "Until Firefox 61, flex items that are sized according to their content are sized using <a href='https://w3c.github.io/csswg-drafts/css-sizing-3/#column-sizing'>fit-content, not max-content</a>." + "Until Firefox 61, flex items that are sized according to their content are sized using <a href='https://drafts.csswg.org/css-sizing-3/#column-sizing'>fit-content, not max-content</a>." ] }, { diff --git a/bikeshed/spec-data/readonly/mdn/css-font-loading.json b/bikeshed/spec-data/readonly/mdn/css-font-loading.json index 0de4183315..3ca4160526 100644 --- a/bikeshed/spec-data/readonly/mdn/css-font-loading.json +++ b/bikeshed/spec-data/readonly/mdn/css-font-loading.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "Document.fonts" + "title": "Document: fonts property" }, { "engines": [ @@ -52,7 +52,8 @@ "summary": "The FontFaceSet interface of the CSS Font Loading API manages the loading of font-faces and querying of their download status.", "support": { "chrome": { - "version_added": "35" + "version_added": "35", + "notes": "Chrome does not expose the <code>FontFaceSet</code> interface directly, and is only available through <a href='https://developer.mozilla.org/docs/Web/API/Document/fonts'><code>Document.fonts</code></a> or <a href='https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/fonts'><code>WorkerGlobalScope.fonts</code></a>." }, "chrome_android": "mirror", "edge": "mirror", @@ -73,48 +74,11 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Chrome does not expose the <code>FontFaceSet</code> interface directly, and is only available through <a href='https://developer.mozilla.org/docs/Web/API/Document/fonts'><code>Document.fonts</code></a> or <a href='https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/fonts'><code>WorkerGlobalScope.fonts</code></a>." } }, "title": "FontFaceSet" - }, - { - "engines": [ - "blink", - "gecko" - ], - "filename": "api/WorkerGlobalScope.json", - "name": "fonts", - "slug": "API/WorkerGlobalScope/fonts", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/fonts", - "summary": "The fonts property of the WorkerGlobalScope interface returns the FontFaceSet interface of the worker.", - "support": { - "chrome": { - "version_added": "69" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "105" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "WorkerGlobalScope.fonts" } ], "font-face-constructor": [ @@ -157,7 +121,7 @@ "version_added": "79" } }, - "title": "FontFace()" + "title": "FontFace: FontFace() constructor" } ], "dom-fontfacedescriptors-ascentoverride": [ @@ -197,7 +161,7 @@ "version_added": "87" } }, - "title": "FontFace.ascentOverride" + "title": "FontFace: ascentOverride property" } ], "dom-fontfacedescriptors-descentoverride": [ @@ -237,7 +201,7 @@ "version_added": "87" } }, - "title": "FontFace.descentOverride" + "title": "FontFace: descentOverride property" } ], "dom-fontface-display": [ @@ -269,7 +233,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10" + "version_added": "11.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -278,7 +242,7 @@ "version_added": "79" } }, - "title": "FontFace.display" + "title": "FontFace: display property" } ], "dom-fontface-family": [ @@ -321,7 +285,7 @@ "version_added": "79" } }, - "title": "FontFace.family" + "title": "FontFace: family property" } ], "dom-fontface-featuresettings": [ @@ -364,7 +328,7 @@ "version_added": "79" } }, - "title": "FontFace.featureSettings" + "title": "FontFace: featureSettings property" } ], "dom-fontfacedescriptors-linegapoverride": [ @@ -404,7 +368,7 @@ "version_added": "87" } }, - "title": "FontFace.lineGapOverride" + "title": "FontFace: lineGapOverride property" } ], "font-face-load": [ @@ -447,7 +411,7 @@ "version_added": "79" } }, - "title": "FontFace.load()" + "title": "FontFace: load() method" } ], "dom-fontface-loaded": [ @@ -490,7 +454,7 @@ "version_added": "79" } }, - "title": "FontFace.loaded" + "title": "FontFace: loaded property" } ], "dom-fontface-status": [ @@ -533,7 +497,7 @@ "version_added": "79" } }, - "title": "FontFace.status" + "title": "FontFace: status property" } ], "dom-fontface-stretch": [ @@ -576,7 +540,7 @@ "version_added": "79" } }, - "title": "FontFace.stretch" + "title": "FontFace: stretch property" } ], "dom-fontface-style": [ @@ -619,7 +583,7 @@ "version_added": "79" } }, - "title": "FontFace.style" + "title": "FontFace: style property" } ], "dom-fontface-unicoderange": [ @@ -633,7 +597,7 @@ "name": "unicodeRange", "slug": "API/FontFace/unicodeRange", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FontFace/unicodeRange", - "summary": "The unicodeRange property of the FontFace interface retrieves or sets the range of unicode codepoints encompassing the font.", + "summary": "The unicodeRange property of the FontFace interface retrieves or sets the range of unicode code points encompassing the font.", "support": { "chrome": { "version_added": "35" @@ -662,7 +626,7 @@ "version_added": "79" } }, - "title": "FontFace.unicodeRange" + "title": "FontFace: unicodeRange property" } ], "dom-fontface-variant": [ @@ -705,13 +669,12 @@ "version_added": "79" } }, - "title": "FontFace.variant" + "title": "FontFace: variant property" } ], "dom-fontfacedescriptors-variationsettings": [ { "engines": [ - "blink", "gecko" ], "filename": "api/FontFace.json", @@ -721,7 +684,7 @@ "summary": "The variationSettings property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.", "support": { "chrome": { - "version_added": "62" + "version_added": false }, "chrome_android": "mirror", "edge": "mirror", @@ -742,10 +705,10 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": false } }, - "title": "FontFace.variationSettings" + "title": "FontFace: variationSettings property" } ], "dom-fontface-weight": [ @@ -788,7 +751,7 @@ "version_added": "79" } }, - "title": "FontFace.weight" + "title": "FontFace: weight property" } ], "fontface-interface": [ @@ -872,24 +835,28 @@ "version_added": "79" } }, - "title": "FontFaceSet.add()" + "title": "FontFaceSet: add() method" } ], "dom-fontfaceset-check": [ { "engines": [ - "blink", "gecko", "webkit" ], + "partial": [ + "blink" + ], "filename": "api/FontFaceSet.json", "name": "check", "slug": "API/FontFaceSet/check", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FontFaceSet/check", - "summary": "The check() method of the FontFaceSet returns whether all fonts in the given font list have been loaded and are available.", + "summary": "The check() method of the FontFaceSet returns true if you can render some text using the given font specification without attempting to use any fonts in this FontFaceSet that are not yet fully loaded. This means you can use the font specification without causing a font swap.", "support": { "chrome": { - "version_added": "35" + "version_added": "35", + "partial_implementation": true, + "notes": "The method returns <code>false</code> instead of <code>true</code> for nonexistent or locally installed fonts. See <a href='https://crbug.com/591602'>bug 591602</a>." }, "chrome_android": "mirror", "edge": "mirror", @@ -910,10 +877,12 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "partial_implementation": true, + "notes": "The method returns <code>false</code> instead of <code>true</code> for nonexistent or locally installed fonts. See <a href='https://crbug.com/591602'>bug 591602</a>." } }, - "title": "FontFaceSet.check()" + "title": "FontFaceSet: check() method" } ], "dom-fontfaceset-clear": [ @@ -954,7 +923,7 @@ "version_added": "79" } }, - "title": "FontFaceSet.clear()" + "title": "FontFaceSet: clear() method" } ], "dom-fontfaceset-delete": [ @@ -995,7 +964,7 @@ "version_added": "79" } }, - "title": "FontFaceSet.delete()" + "title": "FontFaceSet: delete() method" } ], "dom-fontfaceset-load": [ @@ -1036,7 +1005,7 @@ "version_added": "79" } }, - "title": "FontFaceSet.load()" + "title": "FontFaceSet: load() method" } ], "dom-fontfaceset-onloading": [ @@ -1200,7 +1169,7 @@ "version_added": "79" } }, - "title": "FontFaceSet.ready" + "title": "FontFaceSet: ready property" } ], "dom-fontfaceset-status": [ @@ -1241,7 +1210,7 @@ "version_added": "79" } }, - "title": "FontFaceSet.status" + "title": "FontFaceSet: status property" } ], "dom-fontfacesetloadevent-fontfacesetloadevent": [ @@ -1283,7 +1252,7 @@ "version_added": "79" } }, - "title": "FontFaceSetLoadEvent()" + "title": "FontFaceSetLoadEvent: FontFaceSetLoadEvent() constructor" } ], "dom-fontfacesetloadevent-fontfaces": [ @@ -1325,7 +1294,7 @@ "version_added": "79" } }, - "title": "FontFaceSetLoadEvent.fontfaces" + "title": "FontFaceSetLoadEvent: fontfaces property" } ], "fontfacesetloadevent": [ @@ -1369,5 +1338,46 @@ }, "title": "FontFaceSetLoadEvent" } + ], + "dom-fontfacesource-fonts": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/WorkerGlobalScope.json", + "name": "fonts", + "slug": "API/WorkerGlobalScope/fonts", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/fonts", + "summary": "The fonts property of the WorkerGlobalScope interface returns the FontFaceSet interface of the worker.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "105" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "WorkerGlobalScope: fonts property" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-fonts-5.json b/bikeshed/spec-data/readonly/mdn/css-fonts-5.json index eebb6a3bfd..535e58645d 100644 --- a/bikeshed/spec-data/readonly/mdn/css-fonts-5.json +++ b/bikeshed/spec-data/readonly/mdn/css-fonts-5.json @@ -9,7 +9,7 @@ "name": "size-adjust", "slug": "CSS/@font-face/size-adjust", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/size-adjust", - "summary": "The size-adjust CSS descriptor defines a multiplier for glyph outlines and metrics associated with this font. This makes it easier to harmonize the designs of various fonts when rendered at the same font size.", + "summary": "The size-adjust CSS descriptor for the @font-face at-rule defines a multiplier for glyph outlines and metrics associated with this font. This makes it easier to harmonize the designs of various fonts when rendered at the same font size.", "support": { "chrome": { "version_added": "92" @@ -44,7 +44,8 @@ "font-size-adjust-prop": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/font-size-adjust.json", "name": "two-values", @@ -68,7 +69,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -81,7 +82,8 @@ }, { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/font-size-adjust.json", "name": "font-size-adjust", @@ -114,7 +116,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/css-fonts.json b/bikeshed/spec-data/readonly/mdn/css-fonts.json index efaf16995b..6f99cf8b12 100644 --- a/bikeshed/spec-data/readonly/mdn/css-fonts.json +++ b/bikeshed/spec-data/readonly/mdn/css-fonts.json @@ -43,7 +43,7 @@ "version_added": "79" } }, - "title": "CSSFontFaceRule.style" + "title": "CSSFontFaceRule: style property" } ], "om-fontface": [ @@ -93,6 +93,293 @@ "title": "CSSFontFaceRule" } ], + "dom-cssfontfeaturevaluesrule-fontfamily": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontFeatureValuesRule.json", + "name": "fontFamily", + "slug": "API/CSSFontFeatureValuesRule/fontFamily", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFeatureValuesRule/fontFamily", + "summary": "The fontFamily property of the CSSConditionRule interface represents the name of the font family it applies to.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "34" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "CSSFontFeatureValuesRule: fontFamily property" + } + ], + "cssfontfeaturevaluesrule": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontFeatureValuesRule.json", + "name": "CSSFontFeatureValuesRule", + "slug": "API/CSSFontFeatureValuesRule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFeatureValuesRule", + "summary": "The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "34" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "CSSFontFeatureValuesRule" + } + ], + "dom-cssfontpalettevaluesrule-basepalette": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontPaletteValuesRule.json", + "name": "basePalette", + "slug": "API/CSSFontPaletteValuesRule/basePalette", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule/basePalette", + "summary": "The read-only basePalette property of the CSSFontPaletteValuesRule interface indicates the base palette associated with the rule.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "CSSFontPaletteValuesRule: basePalette property" + } + ], + "dom-cssfontpalettevaluesrule-fontfamily": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontPaletteValuesRule.json", + "name": "fontFamily", + "slug": "API/CSSFontPaletteValuesRule/fontFamily", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule/fontFamily", + "summary": "The read-only fontFamily property of the CSSFontPaletteValuesRule interface lists the font families the rule can be applied to. The font families must be named families; generic families like courier are not valid.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "CSSFontPaletteValuesRule: fontFamily property" + } + ], + "dom-cssfontpalettevaluesrule-name": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontPaletteValuesRule.json", + "name": "name", + "slug": "API/CSSFontPaletteValuesRule/name", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule/name", + "summary": "The read-only name property of the CSSFontPaletteValuesRule interface represents the name identifying the associated @font-palette-values at-rule. A valid name always starts with two dashes, such as --Alternate.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "CSSFontPaletteValuesRule: name property" + } + ], + "dom-cssfontpalettevaluesrule-overridecolors": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontPaletteValuesRule.json", + "name": "overrideColors", + "slug": "API/CSSFontPaletteValuesRule/overrideColors", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule/overrideColors", + "summary": "The read-only overrideColors property of the CSSFontPaletteValuesRule interface is a string containing a list of color index and color pair that are to be used instead. It is specified in the same format as the corresponding override-colors descriptor.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "CSSFontPaletteValuesRule: overrideColors property" + } + ], + "om-fontpalettevalues": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSFontPaletteValuesRule.json", + "name": "CSSFontPaletteValuesRule", + "slug": "API/CSSFontPaletteValuesRule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule", + "summary": "The CSSFontPaletteValuesRule interface represents an @font-palette-values at-rule.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "CSSFontPaletteValuesRule" + } + ], "font-metrics-override-desc": [ { "engines": [ @@ -103,7 +390,7 @@ "name": "ascent-override", "slug": "CSS/@font-face/ascent-override", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/ascent-override", - "summary": "The ascent-override CSS descriptor defines the ascent metric for the font. The ascent metric is the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.", + "summary": "The ascent-override CSS descriptor for the @font-face at-rule defines the ascent metric for the font. The ascent metric is the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.", "support": { "chrome": { "version_added": "87" @@ -141,7 +428,7 @@ "name": "descent-override", "slug": "CSS/@font-face/descent-override", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/descent-override", - "summary": "The descent-override CSS descriptor defines the descent metric for the font. The descent metric is the height below the baseline that CSS uses to lay out line boxes in an inline formatting context.", + "summary": "The descent-override CSS descriptor for the @font-face at-rule defines the descent metric for the font. The descent metric is the height below the baseline that CSS uses to lay out line boxes in an inline formatting context.", "support": { "chrome": { "version_added": "87" @@ -179,7 +466,7 @@ "name": "line-gap-override", "slug": "CSS/@font-face/line-gap-override", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/line-gap-override", - "summary": "The line-gap-override CSS descriptor defines the line-gap metric for the font. The line-gap metric is the font recommended line-gap or external leading.", + "summary": "The line-gap-override CSS descriptor for the @font-face at-rule defines the line-gap metric for the font. The line-gap metric is the font recommended line-gap or external leading.", "support": { "chrome": { "version_added": "87" @@ -220,7 +507,7 @@ "name": "font-display", "slug": "CSS/@font-face/font-display", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display", - "summary": "The font-display descriptor determines how a font face is displayed based on whether and when it is downloaded and ready to use.", + "summary": "The font-display descriptor for the @font-face at-rule determines how a font face is displayed based on whether and when it is downloaded and ready to use.", "support": { "chrome": { "version_added": "60" @@ -267,7 +554,7 @@ "name": "font-family", "slug": "CSS/@font-face/font-family", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-family", - "summary": "The font-family CSS descriptor sets the font family for a font specified in an @font-face rule.", + "summary": "The font-family CSS descriptor sets the font family for a font specified in an @font-face at-rule.", "support": { "chrome": { "version_added": "4" @@ -305,6 +592,90 @@ "title": "font-family" } ], + "font-rend-desc": [ + { + "engines": [ + "gecko" + ], + "filename": "css/at-rules/font-face.json", + "name": "font-feature-settings", + "slug": "CSS/@font-face/font-feature-settings", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-feature-settings", + "summary": "The font-feature-settings CSS descriptor allows you to define the initial settings to use for the font defined by the @font-face at-rule. You can further use this descriptor to control typographic font features such as ligatures, small caps, and swashes, for the font defined by @font-face. The values for this descriptor are the same as the font-feature-settings property, except for the global keyword values.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "34", + "notes": "The <a href='https://mpeg.chiariglione.org/standards/mpeg-4/open-font-format/text-isoiec-cd-14496-22-3rd-edition' >ISO/IEC CD 14496-22 3rd edition</a> suggests using the <code>ssty</code> feature to provide glyph variants more suitable for use in scripts (for example primes used as superscripts). Starting with Firefox 29, this is done automatically by the <a href='https://developer.mozilla.org/docs/Web/MathML'>MathML</a> rendering engine. The ISO/IEC CD 14496-22 3rd edition also suggests applying the <code>dtls</code> feature to letters when placing mathematical accents to get dotless forms (for example dotless i, j with a hat). Starting with Firefox 35, this is done automatically by the MathML rendering engine. You can override the default values determined by the MathML rendering engine with CSS." + }, + { + "prefix": "-moz-", + "version_added": "15", + "notes": "From Firefox 4 to Firefox 14 (inclusive), Firefox supported an older, slightly different syntax. See <a href='https://hacks.mozilla.org/2010/11/firefox-4-font-feature-support/'>OpenType Font Feature support in Firefox 4</a>." + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "font-feature-settings" + }, + { + "engines": [ + "gecko" + ], + "filename": "css/at-rules/font-face.json", + "name": "font-variation-settings", + "slug": "CSS/@font-face/font-variation-settings", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings", + "summary": "The font-variation-settings CSS descriptor allows authors to specify low-level OpenType or TrueType font variations in the @font-face at-rule. The values for this descriptor are the same as the font-variation-settings property, except for the global keyword values.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "62" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "font-variation-settings" + } + ], "font-prop-desc": [ { "engines": [ @@ -316,7 +687,7 @@ "name": "font-stretch", "slug": "CSS/@font-face/font-stretch", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch", - "summary": "The font-stretch CSS descriptor allows authors to specify a normal, condensed, or expanded face for the fonts specified in the @font-face rule.", + "summary": "The font-stretch CSS descriptor allows authors to specify a normal, condensed, or expanded face for the fonts specified in the @font-face at-rule.", "support": { "chrome": { "version_added": "62" @@ -361,7 +732,7 @@ "name": "font-style", "slug": "CSS/@font-face/font-style", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style", - "summary": "The font-style CSS descriptor allows authors to specify font styles for the fonts specified in the @font-face rule.", + "summary": "The font-style CSS descriptor allows authors to specify font styles for the fonts specified in the @font-face at-rule.", "support": { "chrome": { "version_added": "4" @@ -408,7 +779,7 @@ "name": "font-weight", "slug": "CSS/@font-face/font-weight", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight", - "summary": "The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.", + "summary": "The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face at-rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.", "support": { "chrome": { "version_added": "4" @@ -538,80 +909,41 @@ } }, "title": "font-variant" - }, - { - "engines": [], - "filename": "svg/attributes/presentation.json", - "name": "font-variant", - "slug": "SVG/Attribute/font-variant", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-variant", - "summary": "The font-variant attribute indicates whether the text is to be rendered using variations of the font's glyphs.", - "support": { - "chrome": { - "version_added": null - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": null - }, - "firefox_android": "mirror", - "ie": { - "version_added": null - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": null - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": null - } - }, - "title": "font-variant" - } - ], - "font-rend-desc": [ - { - "engines": [ - "gecko" - ], - "filename": "css/at-rules/font-face.json", - "name": "font-variation-settings", - "slug": "CSS/@font-face/font-variation-settings", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings", - "summary": "The font-variation-settings CSS descriptor allows authors to specify low-level OpenType or TrueType font variations in the @font-face rule.", + }, + { + "engines": [], + "filename": "svg/attributes/presentation.json", + "name": "font-variant", + "slug": "SVG/Attribute/font-variant", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-variant", + "summary": "The font-variant attribute indicates whether the text is to be rendered using variations of the font's glyphs.", "support": { "chrome": { - "version_added": false + "version_added": null }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "62" + "version_added": null }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": null }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": null }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": null } }, - "title": "font-variation-settings" + "title": "font-variant" } ], "src-desc": [ @@ -625,7 +957,7 @@ "name": "src", "slug": "CSS/@font-face/src", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src", - "summary": "The src CSS descriptor of the @font-face rule specifies the resource containing font data. It is required for the @font-face rule to be valid.", + "summary": "The src CSS descriptor for the @font-face at-rule specifies the resource containing font data. It is required for the @font-face rule to be valid.", "support": { "chrome": { "version_added": "4" @@ -674,7 +1006,7 @@ "name": "unicode-range", "slug": "CSS/@font-face/unicode-range", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range", - "summary": "The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined by @font-face and made available for use on the current page. If the page doesn't use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.", + "summary": "The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined using the @font-face at-rule and made available for use on the current page. If the page doesn't use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.", "support": { "chrome": { "version_added": "1" @@ -803,6 +1135,47 @@ "title": "@font-feature-values" } ], + "at-ruledef-font-palette-values": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/at-rules/font-palette-values.json", + "name": "font-palette-values", + "slug": "CSS/@font-palette-values", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-palette-values", + "summary": "The @font-palette-values CSS at-rule allows you to customize the default values of font-palette created by the font-maker.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "@font-palette-values" + } + ], "generic-font-families": [ { "engines": [ @@ -1196,9 +1569,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11" }, @@ -1212,6 +1583,47 @@ "title": "font-optical-sizing" } ], + "font-palette-prop": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/font-palette.json", + "name": "font-palette", + "slug": "CSS/font-palette", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-palette", + "summary": "The font-palette CSS property allows specifying one of the many palettes contained in a font that a user agent should use for the font. Users can also override the values in a palette or create a new palette by using the @font-palette-values at-rule.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "107" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "101" + } + }, + "title": "font-palette" + } + ], "font-size-prop": [ { "engines": [ @@ -1467,6 +1879,130 @@ "title": "font-style" } ], + "font-synthesis-small-caps": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/font-synthesis-small-caps.json", + "name": "font-synthesis-small-caps", + "slug": "CSS/font-synthesis-small-caps", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis-small-caps", + "summary": "The font-synthesis-small-caps CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4", + "notes": "<a href='https://webkit.org/b/232009'>bug 232009</a>." + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "font-synthesis-small-caps" + } + ], + "font-synthesis-style": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/font-synthesis-style.json", + "name": "font-synthesis-style", + "slug": "CSS/font-synthesis-style", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis-style", + "summary": "The font-synthesis-style CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "font-synthesis-style" + } + ], + "font-synthesis-weight": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/font-synthesis-weight.json", + "name": "font-synthesis-weight", + "slug": "CSS/font-synthesis-weight", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis-weight", + "summary": "The font-synthesis-weight CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "font-synthesis-weight" + } + ], "font-synthesis": [ { "engines": [ @@ -1478,7 +2014,7 @@ "name": "font-synthesis", "slug": "CSS/font-synthesis", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis", - "summary": "The font-synthesis CSS property controls which missing typefaces, bold, italic, or small-caps, may be synthesized by the browser.", + "summary": "The font-synthesis shorthand CSS property lets you specify whether or not the browser may synthesize the bold, italic, and/or small-caps typefaces when they are missing in the specified font-family.", "support": { "chrome": { "version_added": "97" @@ -1494,9 +2030,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "9" }, @@ -1513,6 +2047,7 @@ "font-variant-alternates-prop": [ { "engines": [ + "blink", "gecko", "webkit" ], @@ -1523,8 +2058,7 @@ "summary": "The font-variant-alternates CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in @font-feature-values.", "support": { "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/716567'>bug 716567</a>." + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", @@ -1545,8 +2079,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/716567'>bug 716567</a>." + "version_added": "111" } }, "title": "font-variant-alternates" @@ -1634,6 +2167,92 @@ "title": "font-variant-east-asian" } ], + "font-variant-emoji-prop": [ + { + "engines": [ + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/properties/font-variant-emoji.json", + "name": "font-variant-emoji", + "slug": "CSS/font-variant-emoji", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-emoji", + "summary": "The font-variant-emoji CSS property specifies the default presentation style for displaying emojis.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "108", + "flags": [ + { + "name": "layout.css.font-variant-emoji.enabled", + "type": "preference", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "font-variant-emoji" + }, + { + "engines": [ + "gecko" + ], + "filename": "css/properties/font-variant.json", + "name": "font-variant-emoji", + "slug": "CSS/font-variant-emoji", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-emoji", + "summary": "The font-variant-emoji CSS property specifies the default presentation style for displaying emojis.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "108" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "font-variant-emoji" + } + ], "font-variant-ligatures-prop": [ { "engines": [ @@ -1813,7 +2432,7 @@ "name": "font-variation-settings", "slug": "CSS/font-variation-settings", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-variation-settings", - "summary": "The font-variation-settings CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.", + "summary": "The font-variation-settings CSS property provides low-level control over variable font characteristics by letting you specify the four letter axis names of the characteristics you want to vary along with their values.", "support": { "chrome": { "version_added": "62" @@ -1984,7 +2603,9 @@ ], "font-size-adjust-prop": [ { - "engines": [], + "engines": [ + "webkit" + ], "filename": "svg/attributes/presentation.json", "name": "font-size-adjust", "slug": "SVG/Attribute/font-size-adjust", @@ -2007,7 +2628,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/css-grid-3.json b/bikeshed/spec-data/readonly/mdn/css-grid-3.json index e290ce4518..6e03f5f679 100644 --- a/bikeshed/spec-data/readonly/mdn/css-grid-3.json +++ b/bikeshed/spec-data/readonly/mdn/css-grid-3.json @@ -142,7 +142,8 @@ }, { "engines": [ - "gecko" + "gecko", + "webkit" ], "needsflag": [ "gecko" @@ -151,7 +152,7 @@ "name": "masonry", "slug": "CSS/CSS_Grid_Layout/Masonry_Layout", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout", - "summary": "Level 3 of the CSS Grid Layout specification includes a masonry value for grid-template-columns and grid-template-rows. This guide details what masonry layout is, and how to use it.", + "summary": "Level 3 of the CSS grid layout specification includes a masonry value for grid-template-columns and grid-template-rows. This guide details what masonry layout is and how to use it.", "support": { "chrome": { "version_added": false @@ -176,7 +177,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -234,7 +235,9 @@ ], "masonry-auto-flow": [ { - "engines": [], + "engines": [ + "webkit" + ], "filename": "css/properties/masonry-auto-flow.json", "name": "masonry-auto-flow", "slug": "CSS/masonry-auto-flow", @@ -257,7 +260,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/css-grid.json b/bikeshed/spec-data/readonly/mdn/css-grid.json index daa268dcb4..6fcda8aa3e 100644 --- a/bikeshed/spec-data/readonly/mdn/css-grid.json +++ b/bikeshed/spec-data/readonly/mdn/css-grid.json @@ -470,7 +470,7 @@ "name": "grid-row", "slug": "CSS/grid-row", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row", - "summary": "The grid-row CSS shorthand property specifies a grid item's size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.", + "summary": "The grid-row CSS shorthand property specifies a grid item's size and location within a grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.", "support": { "chrome": { "version_added": "57" @@ -756,9 +756,13 @@ "subgrids": [ { "engines": [ + "blink", "gecko", "webkit" ], + "needsflag": [ + "blink" + ], "filename": "css/properties/grid-template-columns.json", "name": "subgrid", "slug": "CSS/CSS_Grid_Layout/Subgrid", @@ -766,8 +770,15 @@ "summary": "Level 2 of the CSS Grid Layout specification includes a subgrid value for grid-template-columns and grid-template-rows. This guide details what subgrid does, and gives some use cases and design patterns that are solved by the feature.", "support": { "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/618969'>bug 618969</a>." + "version_added": "114", + "impl_url": "https://crbug.com/618969", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -790,8 +801,15 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/618969'>bug 618969</a>." + "version_added": "114", + "impl_url": "https://crbug.com/618969", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] } }, "caniuse": { @@ -850,9 +868,13 @@ }, { "engines": [ + "blink", "gecko", "webkit" ], + "needsflag": [ + "blink" + ], "filename": "css/properties/grid-template-rows.json", "name": "subgrid", "slug": "CSS/CSS_Grid_Layout/Subgrid", @@ -860,8 +882,15 @@ "summary": "Level 2 of the CSS Grid Layout specification includes a subgrid value for grid-template-columns and grid-template-rows. This guide details what subgrid does, and gives some use cases and design patterns that are solved by the feature.", "support": { "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/618969'>bug 618969</a>." + "version_added": "114", + "impl_url": "https://crbug.com/618969", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -884,8 +913,15 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/618969'>bug 618969</a>." + "version_added": "114", + "impl_url": "https://crbug.com/618969", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] } }, "caniuse": { diff --git a/bikeshed/spec-data/readonly/mdn/css-highlight-api.json b/bikeshed/spec-data/readonly/mdn/css-highlight-api.json new file mode 100644 index 0000000000..dbc2667ede --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/css-highlight-api.json @@ -0,0 +1,80 @@ +{ + "dom-css-highlights": [ + { + "engines": [ + "blink" + ], + "filename": "api/CSS.json", + "name": "highlights_static", + "slug": "API/CSS/highlights_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/highlights_static", + "summary": "The static, read-only highlights property of the CSS interface provides access to the HighlightRegistry used to style arbitrary text ranges using the CSS Custom Highlight API.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS: highlights static property" + } + ], + "custom-highlight-pseudo": [ + { + "engines": [ + "blink" + ], + "filename": "css/selectors/highlight.json", + "name": "highlight", + "slug": "CSS/::highlight", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::highlight", + "summary": "The ::highlight() CSS pseudo-element applies styles to a custom highlight.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "::highlight()" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/css-images-4.json b/bikeshed/spec-data/readonly/mdn/css-images-4.json index fc3e3fcb08..9f119d6da6 100644 --- a/bikeshed/spec-data/readonly/mdn/css-images-4.json +++ b/bikeshed/spec-data/readonly/mdn/css-images-4.json @@ -174,6 +174,50 @@ }, "title": "<gradient>" }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "css/properties/content.json", + "name": "gradient", + "slug": "CSS/gradient", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/gradient", + "summary": "The <gradient> CSS data type is a special type of <image> that consists of a progressive transition between two or more colors.", + "support": { + "chrome": { + "version_added": "26" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "113", + "notes": "<code>content: &lt;gradient&gt;</code>` doesn't paint on ::before/::after pseudo elements. See <a href='https://bugzil.la/1832901'>bug 1832901</a>.", + "partial_implementation": true + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "<gradient>" + }, { "engines": [ "blink", @@ -272,9 +316,9 @@ ], "image-set-notation": [ { - "engines": [], - "prefixed": [ + "engines": [ "blink", + "gecko", "webkit" ], "filename": "css/properties/background-image.json", @@ -282,16 +326,87 @@ "slug": "CSS/image-set()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/image-set()", "summary": "The image-set() CSS functional notation is a method of letting the browser pick the most appropriate CSS image from a given set, primarily for high pixel density screens.", + "support": { + "chrome": [ + { + "version_added": "113" + }, + { + "prefix": "-webkit-", + "version_added": "21" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "88", + "notes": "Before Firefox 89, the <code>type()</code> function is not supported as an argument to <code>image-set()</code>." + }, + { + "prefix": "-webkit-", + "version_added": "90" + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": [ + { + "version_added": "14" + }, + { + "prefix": "-webkit-", + "version_added": "6", + "partial_implementation": true, + "notes": "Support for <code>url</code> images only and <code>x</code> is the only supported resolution unit." + } + ], + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "113" + }, + { + "prefix": "-webkit-", + "version_added": "79" + } + ] + }, + "caniuse": { + "feature": "css-image-set", + "title": "CSS image-set" + }, + "title": "image-set()" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "css/properties/content.json", + "name": "image-set", + "slug": "CSS/image/image-set", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/image/image-set", + "summary": "The image-set() CSS functional notation is a method of letting the browser pick the most appropriate CSS image from a given set, primarily for high pixel density screens.", "support": { "chrome": { - "prefix": "-webkit-", - "version_added": "21" + "version_added": "113" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1107646'>bug 1107646</a>." + "version_added": "113", + "notes": "<code>content: image-set(…);</code>` doesn't paint on ::before/::after pseudo elements. See <a href='https://bugzil.la/1832901'>bug 1832901</a>.", + "partial_implementation": true }, "firefox_android": "mirror", "ie": { @@ -301,17 +416,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "prefix": "-webkit-", - "version_added": "6", - "partial_implementation": true, - "notes": "Support for <code>url</code> images only and <code>x</code> is the only supported resolution unit. See <a href='https://webkit.org/b/160934'>bug 160934</a>." + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "prefix": "-webkit-", - "version_added": "79" + "version_added": "113" } }, "caniuse": { @@ -322,10 +433,8 @@ }, { "engines": [ - "gecko" - ], - "prefixed": [ "blink", + "gecko", "webkit" ], "filename": "css/types/image.json", @@ -334,10 +443,15 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/image/image-set", "summary": "The image-set() CSS functional notation is a method of letting the browser pick the most appropriate CSS image from a given set, primarily for high pixel density screens.", "support": { - "chrome": { - "prefix": "-webkit-", - "version_added": "21" - }, + "chrome": [ + { + "version_added": "113" + }, + { + "prefix": "-webkit-", + "version_added": "21" + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": [ @@ -360,19 +474,29 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "prefix": "-webkit-", - "version_added": "6", - "partial_implementation": true, - "notes": "Support for <code>url</code> images only and <code>x</code> is the only supported resolution unit. See <a href='https://webkit.org/b/160934'>bug 160934</a>." - }, + "safari": [ + { + "version_added": "14" + }, + { + "prefix": "-webkit-", + "version_added": "6", + "partial_implementation": true, + "notes": "Support for <code>url</code> images only and <code>x</code> is the only supported resolution unit." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "prefix": "-webkit-", - "version_added": "79" - } + "edge_blink": [ + { + "version_added": "113" + }, + { + "prefix": "-webkit-", + "version_added": "79" + } + ] }, "caniuse": { "feature": "css-image-set", @@ -501,6 +625,125 @@ "title": "conic-gradient()" } ], + "linear-gradients": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/types/image.json", + "name": "linear-gradient", + "slug": "CSS/gradient/linear-gradient", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient", + "summary": "The linear-gradient() CSS function creates an image consisting of a progressive transition between two or more colors along a straight line. Its result is an object of the <gradient> data type, which is a special kind of <image>.", + "support": { + "chrome": [ + { + "version_added": "26" + }, + { + "prefix": "-webkit-", + "version_added": "10" + } + ], + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": [ + { + "version_added": "16", + "notes": "Before Firefox 36, gradients weren't applied on the pre-multiplied color space, leading to shades of grey unexpectedly appearing when used with transparency." + }, + { + "prefix": "-webkit-", + "version_added": "49" + }, + { + "prefix": "-moz-", + "version_added": "3.6", + "notes": [ + "Since Firefox 42, the prefixed version of gradients can be disabled by setting <code>layout.css.prefixes.gradients</code> to <code>false</code>.", + "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." + ] + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": "10", + "notes": "Internet Explorer 5.5 through 9.0 supported gradients via a proprietary filter: <code><a href='https://developer.mozilla.org/docs/Web/CSS/-ms-filter#Gradient'>-ms-filter: progid:DXImageTransform.Microsoft.Gradient()</a></code>." + }, + "oculus": "mirror", + "opera": [ + { + "version_added": "12.1" + }, + { + "prefix": "-webkit-", + "version_added": "15", + "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." + }, + { + "prefix": "-o-", + "version_added": "11", + "version_removed": "15", + "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." + } + ], + "opera_android": [ + { + "version_added": "12.1" + }, + { + "prefix": "-webkit-", + "version_added": "14", + "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." + }, + { + "prefix": "-o-", + "version_added": "11", + "version_removed": "14", + "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." + } + ], + "safari": [ + { + "version_added": "7" + }, + { + "prefix": "-webkit-", + "version_added": "5.1", + "notes": [ + "Safari 4 was supporting an experimental <code><a href='https://developer.apple.com/library/archive/documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Gradients/Gradient.html'>-webkit-gradient(linear,…)</a></code> function. It is more limited than the later standard version: you cannot specify both a position and an angle like in <code>linear-gradient()</code>. This old outdated syntax is still supported for compatibility purposes.", + "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." + ] + } + ], + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": [ + { + "version_added": "37" + }, + { + "prefix": "-webkit-", + "version_added": "37" + } + ], + "edge_blink": [ + { + "version_added": "79" + }, + { + "prefix": "-webkit-", + "version_added": "79" + } + ] + }, + "title": "linear-gradient()" + } + ], "repeating-gradients": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-images.json b/bikeshed/spec-data/readonly/mdn/css-images.json index f3b2b9defa..9c67067ce1 100644 --- a/bikeshed/spec-data/readonly/mdn/css-images.json +++ b/bikeshed/spec-data/readonly/mdn/css-images.json @@ -28,9 +28,7 @@ "opera": { "version_added": "67" }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "13.1" }, @@ -375,125 +373,6 @@ "title": "<image>" } ], - "linear-gradients": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "css/types/image.json", - "name": "linear-gradient", - "slug": "CSS/gradient/linear-gradient", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient", - "summary": "The linear-gradient() CSS function creates an image consisting of a progressive transition between two or more colors along a straight line. Its result is an object of the <gradient> data type, which is a special kind of <image>.", - "support": { - "chrome": [ - { - "version_added": "26" - }, - { - "prefix": "-webkit-", - "version_added": "10" - } - ], - "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, - "firefox": [ - { - "version_added": "16", - "notes": "Before Firefox 36, gradients weren't applied on the pre-multiplied color space, leading to shades of grey unexpectedly appearing when used with transparency." - }, - { - "prefix": "-webkit-", - "version_added": "49" - }, - { - "prefix": "-moz-", - "version_added": "3.6", - "notes": [ - "Since Firefox 42, the prefixed version of gradients can be disabled by setting <code>layout.css.prefixes.gradients</code> to <code>false</code>.", - "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." - ] - } - ], - "firefox_android": "mirror", - "ie": { - "version_added": "10", - "notes": "Internet Explorer 5.5 through 9.0 supported gradients via a proprietary filter: <code><a href='https://developer.mozilla.org/docs/Web/CSS/-ms-filter#Gradient'>-ms-filter: progid:DXImageTransform.Microsoft.Gradient()</a></code>." - }, - "oculus": "mirror", - "opera": [ - { - "version_added": "12.1" - }, - { - "prefix": "-webkit-", - "version_added": "15", - "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." - }, - { - "prefix": "-o-", - "version_added": "11", - "version_removed": "15", - "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." - } - ], - "opera_android": [ - { - "version_added": "12.1" - }, - { - "prefix": "-webkit-", - "version_added": "14", - "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." - }, - { - "prefix": "-o-", - "version_added": "11", - "version_removed": "14", - "notes": "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." - } - ], - "safari": [ - { - "version_added": "7" - }, - { - "prefix": "-webkit-", - "version_added": "5.1", - "notes": [ - "Safari 4 was supporting an experimental <code><a href='https://developer.apple.com/library/archive/documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Gradients/Gradient.html'>-webkit-gradient(linear,…)</a></code> function. It is more limited than the later standard version: you cannot specify both a position and an angle like in <code>linear-gradient()</code>. This old outdated syntax is still supported for compatibility purposes.", - "Considers <code>&lt;angle&gt;</code> to start to the right, instead of the top. I.e. it considered an angle of <code>0deg</code> as a direction indicator pointing to the right." - ] - } - ], - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": [ - { - "version_added": "37" - }, - { - "prefix": "-webkit-", - "version_added": "37" - } - ], - "edge_blink": [ - { - "version_added": "79" - }, - { - "prefix": "-webkit-", - "version_added": "79" - } - ] - }, - "title": "linear-gradient()" - } - ], "radial-gradients": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-inline.json b/bikeshed/spec-data/readonly/mdn/css-inline.json index 084803de48..dc791047bc 100644 --- a/bikeshed/spec-data/readonly/mdn/css-inline.json +++ b/bikeshed/spec-data/readonly/mdn/css-inline.json @@ -39,7 +39,9 @@ ], "sizing-drop-initials": [ { - "engines": [], + "engines": [ + "blink" + ], "prefixed": [ "webkit" ], @@ -50,8 +52,7 @@ "summary": "The initial-letter CSS property sets styling for dropped, raised, and sunken initial letters.", "support": { "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/1276900'>bug 1276900</a>." + "version_added": "110" }, "chrome_android": "mirror", "edge": "mirror", @@ -75,8 +76,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/1276900'>bug 1276900</a>." + "version_added": "110" } }, "title": "initial-letter" diff --git a/bikeshed/spec-data/readonly/mdn/css-logical.json b/bikeshed/spec-data/readonly/mdn/css-logical.json index 4cb3b4f5bf..a59bb6a4c4 100644 --- a/bikeshed/spec-data/readonly/mdn/css-logical.json +++ b/bikeshed/spec-data/readonly/mdn/css-logical.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/page.json", "name": "page", @@ -31,7 +32,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1124,9 +1125,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15" }, @@ -1165,9 +1164,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15" }, @@ -1206,9 +1203,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15" }, @@ -1247,9 +1242,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15" }, @@ -1903,7 +1896,7 @@ "summary": "The margin-block-end CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.", "support": { "chrome": { - "version_added": "87" + "version_added": "69" }, "chrome_android": "mirror", "edge": "mirror", @@ -1924,7 +1917,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "87" + "version_added": "79" } }, "title": "margin-block-end" @@ -1942,7 +1935,7 @@ "summary": "The margin-block-start CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.", "support": { "chrome": { - "version_added": "87" + "version_added": "69" }, "chrome_android": "mirror", "edge": "mirror", @@ -1963,7 +1956,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "87" + "version_added": "79" } }, "title": "margin-block-start" @@ -1982,7 +1975,7 @@ "support": { "chrome": [ { - "version_added": "87" + "version_added": "69" }, { "version_added": "2", @@ -2037,7 +2030,7 @@ ], "edge_blink": [ { - "version_added": "87" + "version_added": "79" }, { "version_added": "79", @@ -2061,7 +2054,7 @@ "support": { "chrome": [ { - "version_added": "87" + "version_added": "69" }, { "version_added": "2", @@ -2116,7 +2109,7 @@ ], "edge_blink": [ { - "version_added": "87" + "version_added": "79" }, { "version_added": "79", @@ -2395,7 +2388,7 @@ "summary": "The padding-block-end CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.", "support": { "chrome": { - "version_added": "87" + "version_added": "69" }, "chrome_android": "mirror", "edge": "mirror", @@ -2416,7 +2409,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "87" + "version_added": "79" } }, "title": "padding-block-end" @@ -2434,7 +2427,7 @@ "summary": "The padding-block-start CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.", "support": { "chrome": { - "version_added": "87" + "version_added": "69" }, "chrome_android": "mirror", "edge": "mirror", @@ -2455,7 +2448,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "87" + "version_added": "79" } }, "title": "padding-block-start" @@ -2474,7 +2467,7 @@ "support": { "chrome": [ { - "version_added": "87" + "version_added": "69" }, { "version_added": "2", @@ -2529,7 +2522,7 @@ ], "edge_blink": [ { - "version_added": "87" + "version_added": "79" }, { "version_added": "79", @@ -2553,7 +2546,7 @@ "support": { "chrome": [ { - "version_added": "87" + "version_added": "69" }, { "version_added": "2", @@ -2608,7 +2601,7 @@ ], "edge_blink": [ { - "version_added": "87" + "version_added": "79" }, { "version_added": "79", diff --git a/bikeshed/spec-data/readonly/mdn/css-masking.json b/bikeshed/spec-data/readonly/mdn/css-masking.json index 99faadbfbe..9d1ee74f14 100644 --- a/bikeshed/spec-data/readonly/mdn/css-masking.json +++ b/bikeshed/spec-data/readonly/mdn/css-masking.json @@ -1,4 +1,106 @@ { + "dom-svgclippathelement-clippathunits": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGClipPathElement.json", + "name": "clipPathUnits", + "slug": "API/SVGClipPathElement/clipPathUnits", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement/clipPathUnits", + "summary": "The read-only clipPathUnits property of the SVGClipPathElement interface reflects the clipPathUnits attribute of a <clipPath> element which defines the coordinate system to use for the content of the element.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGClipPathElement: clipPathUnits property" + } + ], + "dom-svgclippathelement-transform": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGClipPathElement.json", + "name": "transform", + "slug": "API/SVGClipPathElement/transform", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement/transform", + "summary": "The read-only transform property of the SVGClipPathElement interface reflects the transform attribute of a <clipPath> element, that is a list of transformations applied to the element.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGClipPathElement: transform property" + } + ], "InterfaceSVGClipPathElement": [ { "engines": [ @@ -50,6 +152,308 @@ "title": "SVGClipPathElement" } ], + "dom-svgmaskelement-height": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGMaskElement.json", + "name": "height", + "slug": "API/SVGMaskElement/height", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/height", + "summary": "The read-only height property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the height attribute of the <marker>.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGMaskElement: height property" + } + ], + "dom-svgmaskelement-maskcontentunits": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGMaskElement.json", + "name": "maskContentUnits", + "slug": "API/SVGMaskElement/maskContentUnits", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/maskContentUnits", + "summary": "The read-only maskContentUnits property of the SVGMaskElement interface reflects the maskContentUnits attribute. It indicates which coordinate system to use for the contents of the <mask> element.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGMaskElement: maskContentUnits property" + } + ], + "dom-svgmaskelement-maskunits": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGMaskElement.json", + "name": "maskUnits", + "slug": "API/SVGMaskElement/maskUnits", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/maskUnits", + "summary": "The read-only maskUnits property of the SVGMaskElement interface reflects the maskUnits attribute of a <mask> element which defines the coordinate system to use for the mask of the element.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGMaskElement: maskUnits property" + } + ], + "dom-svgmaskelement-width": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGMaskElement.json", + "name": "width", + "slug": "API/SVGMaskElement/width", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/width", + "summary": "The read-only width property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the width attribute of the <marker>.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGMaskElement: width property" + } + ], + "dom-svgmaskelement-x": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGMaskElement.json", + "name": "x", + "slug": "API/SVGMaskElement/x", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/x", + "summary": "The read-only x property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the x attribute of the <mask>. It represents the x-axis coordinate of the top-left corner of the masking area.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGMaskElement: x property" + } + ], + "dom-svgmaskelement-y": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SVGMaskElement.json", + "name": "y", + "slug": "API/SVGMaskElement/y", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/y", + "summary": "The read-only y property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the y attribute of the <marker>. It represents the y-axis coordinate of the top-left corner of the masking area.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGMaskElement: y property" + } + ], "InterfaceSVGMaskElement": [ { "engines": [ @@ -1153,9 +1557,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -1190,7 +1592,11 @@ ], "element-attrdef-mask-maskcontentunits": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/mask.json", "name": "maskContentUnits", "slug": "SVG/Attribute/maskContentUnits", @@ -1198,12 +1604,12 @@ "summary": "The maskContentUnits attribute indicates which coordinate system to use for the contents of the <mask> element.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -1213,13 +1619,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "maskContentUnits" @@ -1227,7 +1633,11 @@ ], "element-attrdef-mask-maskunits": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/mask.json", "name": "maskUnits", "slug": "SVG/Attribute/maskUnits", @@ -1235,12 +1645,12 @@ "summary": "The maskUnits attribute indicates which coordinate system to use for the geometry properties of the <mask> element.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -1250,13 +1660,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "maskUnits" @@ -1276,14 +1686,14 @@ "summary": "The <mask> element defines an alpha mask for compositing the current object into the background. A mask is used/referenced using the mask property.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -1293,13 +1703,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<mask>" diff --git a/bikeshed/spec-data/readonly/mdn/css-mediaqueries.json b/bikeshed/spec-data/readonly/mdn/css-mediaqueries.json index da4b6c1eb9..429e110ccd 100644 --- a/bikeshed/spec-data/readonly/mdn/css-mediaqueries.json +++ b/bikeshed/spec-data/readonly/mdn/css-mediaqueries.json @@ -189,13 +189,14 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "css/at-rules/media.json", "name": "color-gamut", "slug": "CSS/@media/color-gamut", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@media/color-gamut", - "summary": "The color-gamut CSS media feature can be used to test the approximate range of colors that are supported by the user agent and the output device.", + "summary": "The color-gamut CSS media feature is used to apply CSS styles based on the approximate range of color gamut supported by the user agent and the output device.", "support": { "chrome": { "version_added": "58" @@ -203,7 +204,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "110" }, "firefox_android": "mirror", "ie": { @@ -522,7 +523,9 @@ "mf-overflow-block": [ { "engines": [ - "gecko" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/media.json", "name": "overflow-block", @@ -531,7 +534,7 @@ "summary": "The overflow-block CSS media feature can be used to test how the output device handles content that overflows the initial containing block along the block axis.", "support": { "chrome": { - "version_added": false + "version_added": "113" }, "chrome_android": "mirror", "edge": "mirror", @@ -546,13 +549,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "113" } }, "title": "overflow-block" @@ -561,7 +564,9 @@ "mf-overflow-inline": [ { "engines": [ - "gecko" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/media.json", "name": "overflow-inline", @@ -570,7 +575,7 @@ "summary": "The overflow-inline CSS media feature can be used to test how the output device handles content that overflows the initial containing block along the inline axis.", "support": { "chrome": { - "version_added": false + "version_added": "113" }, "chrome_android": "mirror", "edge": "mirror", @@ -585,13 +590,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "113" } }, "title": "overflow-inline" @@ -650,7 +655,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/media.json", "name": "resolution", @@ -699,8 +705,7 @@ } ], "safari": { - "version_added": false, - "notes": "See <a href='https://webkit.org/b/78087'>bug 78087</a>." + "version_added": "16" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -719,7 +724,9 @@ "update": [ { "engines": [ - "gecko" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/media.json", "name": "update", @@ -728,7 +735,7 @@ "summary": "The update CSS media feature can be used to test how frequently (if at all) the output device is able to modify the appearance of content once rendered.", "support": { "chrome": { - "version_added": false + "version_added": "113" }, "chrome_android": "mirror", "edge": "mirror", @@ -743,13 +750,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "113" } }, "title": "update" diff --git a/bikeshed/spec-data/readonly/mdn/css-nesting.json b/bikeshed/spec-data/readonly/mdn/css-nesting.json new file mode 100644 index 0000000000..5b10050e05 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/css-nesting.json @@ -0,0 +1,89 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-type" content="text/html; charset=utf-8"> + <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src 'unsafe-inline'; img-src data:; connect-src 'self'"> + <title>Page not found &middot; GitHub Pages</title> + <style type="text/css" media="screen"> + body { + background-color: #f1f1f1; + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + } + + .container { margin: 50px auto 40px auto; width: 600px; text-align: center; } + + a { color: #4183c4; text-decoration: none; } + a:hover { text-decoration: underline; } + + h1 { width: 800px; position:relative; left: -100px; letter-spacing: -1px; line-height: 60px; font-size: 60px; font-weight: 100; margin: 0px 0 50px 0; text-shadow: 0 1px 0 #fff; } + p { color: rgba(0, 0, 0, 0.5); margin: 20px 0; line-height: 1.6; } + + ul { list-style: none; margin: 25px 0; padding: 0; } + li { display: table-cell; font-weight: bold; width: 1%; } + + .logo { display: inline-block; margin-top: 35px; } + .logo-img-2x { display: none; } + @media + only screen and (-webkit-min-device-pixel-ratio: 2), + only screen and ( min--moz-device-pixel-ratio: 2), + only screen and ( -o-min-device-pixel-ratio: 2/1), + only screen and ( min-device-pixel-ratio: 2), + only screen and ( min-resolution: 192dpi), + only screen and ( min-resolution: 2dppx) { + .logo-img-1x { display: none; } + .logo-img-2x { display: inline-block; } + } + + #suggestions { + margin-top: 35px; + color: #ccc; + } + #suggestions a { + color: #666666; + font-weight: 200; + font-size: 14px; + margin: 0 10px; + } + + </style> + </head> + <body> + + <div class="container"> + + <h1>404</h1> + <p><strong>File not found</strong></p> + + <p> + The site configured at this address does not + contain the requested file. + </p> + + <p> + If this is your site, make sure that the filename case matches the URL + as well as any file permissions.<br> + For root URLs (like <code>http://example.com/</code>) you must provide an + <code>index.html</code> file. + </p> + + <p> + <a href="https://help.github.com/pages/">Read the full documentation</a> + for more information about using <strong>GitHub Pages</strong>. + </p> + + <div id="suggestions"> + <a href="https://githubstatus.com">GitHub Status</a> &mdash; + <a href="https://twitter.com/githubstatus">@githubstatus</a> + </div> + + <a href="/" class="logo logo-img-1x"> + <img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMTZCRDY3REIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMTZCRDY3RUIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdCQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjdDQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SM9MCAAAA+5JREFUeNrEV11Ik1EY3s4+ddOp29Q5b0opCgKFsoKoi5Kg6CIhuwi6zLJLoYLopq4qsKKgi4i6CYIoU/q5iDAKs6syoS76IRWtyJ+p7cdt7sf1PGOD+e0c3dygAx/67ZzzPM95/877GYdHRg3ZjMXFxepQKNS6sLCwJxqNNuFpiMfjVs4ZjUa/pmmjeD6VlJS8NpvNT4QQ7mxwjSsJiEQim/1+/9lgMHgIr5ohuxG1WCw9Vqv1clFR0dCqBODElV6v90ogEDjGdYbVjXhpaendioqK07CIR7ZAqE49PT09BPL2PMgTByQGsYiZlQD4uMXtdr+JxWINhgINYhGT2MsKgMrm2dnZXgRXhaHAg5jEJodUAHxux4LudHJE9RdEdA+i3Juz7bGHe4mhE9FNrgwBCLirMFV9Okh5eflFh8PR5nK5nDabrR2BNJlKO0T35+Li4n4+/J+/JQCxhmu5h3uJoXNHPbmWZAHMshWB8l5/ipqammaAf0zPDDx1ONV3vurdidqwAQL+pEc8sLcAe1CCvQ3YHxIW8Pl85xSWNC1hADDIv0rIE/o4J0k3kww4xSlwIhcq3EFFOm7KN/hUGOQkt0CFa5WpNJlMvxBEz/IVQAxg/ZRZl9wiHA63yDYieM7DnLP5CiAGsC7I5sgtYKJGWe2A8seFqgFJrJjEPY1Cn3pJ8/9W1e5VWsFDTEmFrBcoDhZJEQkXuhICMyKpjhahqN21hRYATKfUOlDmkygrR4o4C0VOLGJKrOITKB4jijzdXygBKixyC5TDQdnk/Pz8qRw6oOWGlsTKGOQW6OH6FBWsyePxdOXLTgxiyebILZCjz+GLgMIKnXNzc49YMlcRdHXcSwxFVgTInQhC9G33UhNoJLuqq6t345p9y3eUy8OTk5PjAHuI9uo4b07FBaOhsu0A4Unc+T1TU1Nj3KsSSE5yJ65jqF2DDd8QqWYmAZrIM2VlZTdnZmb6AbpdV9V6ec9znf5Q7HjYumdRE0JOp3MjitO4SFa+cZz8Umqe3TCbSLvdfkR/kWDdNQl5InuTcysOcpFT35ZrbBxx4p3JAHlZVVW1D/634VRt+FvLBgK/v5LV9WS+10xMTEwtRw7XvqOL+e2Q8V3AYIOIAXQ26/heWVnZCVfcyKHg2CBgTpmPmjYM8l24GyaUHyaIh7XwfR9ErE8qHoDfn2LTNAVC0HX6MFcBIP8Bi+6F6cdW/DICkANRfx99fEYFQ7Nph5i/uQiA214gno7K+guhaiKg9gC62+M8eR7XsBsYJ4ilam60Fb7r7uAj8wFyuwM1oIOWgfmDy6RXEEQzJMPe23DXrVS7rtyD3Df8z/FPgAEAzWU5Ku59ZAUAAAAASUVORK5CYII="> + </a> + + <a href="/" class="logo logo-img-2x"> + <img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEQUM1QkUxRUI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEQUM1QkUxRkI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdGQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjgwQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+hfPRaQAAB6lJREFUeNrsW2mME2UYbodtt+2222u35QheoCCYGBQligIJgkZJNPzgigoaTEj8AdFEMfADfyABkgWiiWcieK4S+QOiHAYUj2hMNKgYlEujpNttu9vttbvdw+chU1K6M535pt3ubHCSyezR+b73eb73+t7vrfXsufOW4bz6+vom9/b23ovnNNw34b5xYGAgODg46Mbt4mesVmsWd1qSpHhdXd2fuP/Afcput5/A88xwymcdBgLqenp6FuRyuWV4zu/v759QyWBjxoz5t76+/gun09mK5xFyakoCAPSaTCazNpvNPoYVbh6O1YKGRF0u13sNDQ27QMzfpiAAKj0lnU6/gBVfAZW2WWpwwVzy0IgP3G73FpjI6REhAGA9qVRqA1b9mVoBVyIC2tDi8Xg24+dUzQiAbS/s7Ox8G2o/3mKCC+Zw0efzPQEfcVjYrARX3dbV1bUtHo8fMgt42f+Mp0yUTVQbdWsAHVsikdiHkHaPxcQXQufXgUBgMRxme9U0AAxfH4vFvjM7eF6UkbJS5qoQwEQGA57Ac5JllFyUVZZ5ckUEgMVxsK2jlSYzI+QXJsiyjzNEAJyJAzb/KQa41jJKL8pODMQiTEAymXw5n8/P0IjD3bh7Rgog59aanxiIRTVvV/oj0tnHca/WMrVwODwB3raTGxzkBg/gnZVapFV62Wy2n5AO70HM/5wbJ0QnXyQSaVPDIuNZzY0V3ntHMwxiwHA0Gj2Np7ecIBDgaDAYXKCQJM1DhrgJ3nhulcPbl8j4NmHe46X/g60fwbz3aewjkqFQaAqebWU1AOqyQwt8Id6qEHMc97zu7u7FGGsn7HAiVuosVw7P35C1nccdgSCxop1dHeZswmfHMnxBo6ZTk+jN8dl/vF7vWofDsa+MLN9oEUBMxOb3+1eoEsBVw6Zmua49r8YmhAKDiEPcMwBsxMiqQ+ixzPFxZyqRpXARG/YOr1ObFJ0gUskXBbamcR1OKmMUvDxHRAu8/LmY3jFLMUpFqz9HxG65smYJdyKyECOxDiEAe/p1gjF2oonivZAsxVgl2daa4EQWCW6J55qFAFFZiJWYLxNQy2qOSUzGRsyXCUDIeliwAHEO4WSlWQBRFoZakXcKmCXmyXAKs0Ve9vl8q42WoIYpJU4hV3hKcNs8m9gl7p/xQ73eF5kB4j5mNrWmTJRNwAzqiV1CxjVTZCIkEq+Z1bZFZSN2CenmVAFVy4Plz8xKAGWjjAKFk6lCBMDR/MJjLLMSQNm43xAiQKTaA+9/wewhDjL+JVI1kkTSSOTcKbMTwPqESAot6dn6Fr1gHwVJju6IRuyiByPuUUBAg5DGkAgBmxlvdgIEK9gDkohdY/BJo4CAG0R8miRSsGABkgVQs4KXu098IgUXSSRsFAoKZiVAVDY2WUiiPTjYRi41KwGisrGsLtlsth8Fiwnz2fBkQvWfRtlE3iF2yW63/yCacXZ1dW02GwGyTFaRd4idJnCKHRaCxYRHoG5LTKT6SyiToP1fJHbmAYPYRR0UnZQtMnA6s0zg+GZBlt0Gdo7EPHgpE3Q6nZ8YyLhc8Xj8MJh/aKTAY+5FPAKHLE7RdwuYJZmNwzyCMkBCYyKROJBMJl9B/PXXCjjmCmDOVzH3fiPpObEWGqoKe4EBl8v1hlqsdLvd23mkxHM9pc9kMpmno9HoeTii7ewbHEZPPx1ztLS1tV3AnGuMjiNjvbQFuHw6zDo5By7dTPAQNBgMLrRarTkSls1mnwT7uwp9virx9QzbW/HuV/j5d/b+6jniKlllP8lkeONJDk+dq9GsQTnC4fB1heO0K47Hwe7WdDr9nAKgXwOBwHI+C45Htj1d6sd429TUNEcmUdc+PRaLHcvn87dXW4ugzdsaGxufL94NFv9zi1J7GVbhlvb2dnaJ3SVrxfc+n2+NTsZ7/H7/Mr3g5XdSIHyJSH1PZ+7fToyl2+ErqilgZ4NaLYB9goVGaHjR93Hv1ZrU4XDsFT20kH3PObzbWk0CgG1jacVIUnAQb9F+VexyLMzkpcLv0IJV7AHQIOCAUYHx7v5qgScmYHtTqSAyZLEJTK22Bie4iq3xsqpm4SAf9Hq9a2DnJ4uLK3SEULcdRvp3i3zHySqpficxEdsQc1NrlYXXvR+O7qASSezXB+h1SuUomgg9LL8BUoV4749EIolKh+EiqWmqVEZlDgHks2pxHw7xTqUQw9J5NcAXOK10AGIoZ6Zli6JY6Z1Q461KoZ4NiKLHarW+KDsxlDUPHZ5zPQZqUVDPJsTqb5n9malbpAh8C2XXDLl62+WZIDFRUlNVOiwencnNU3aQEkL+cDMSoLvZo2fQB7AJssNAuFuvorlDVVkkg2I87+jo2K2QAVphDrfyViK5VqtO34OkaxXCp+7drdDBCAdubm6eidX+2WwqT5komwh4YQLk+H4aE93h8Xg2gvHekQZOGSgLZTLyDTLJ4Lx9/KZWKBSainT4Iy3FqQBfnUZR42PKQFksBr9QKVXCPusD3OiA/RkQ5kP8qV/Jl1WywAp/6+dcmPM2zL1UrUahe4JqfnWWKXIul3uUbfP8njAFLW1OFr3gdFtZ72cNH+PtQT7/brW+NXqJAHh0y9V8/U/A1U7AfwIMAD7mS3pCbuWJAAAAAElFTkSuQmCC"> + </a> + </div> + </body> +</html> diff --git a/bikeshed/spec-data/readonly/mdn/css-device-adapt.json b/bikeshed/spec-data/readonly/mdn/css-overflow-4.json similarity index 51% rename from bikeshed/spec-data/readonly/mdn/css-device-adapt.json rename to bikeshed/spec-data/readonly/mdn/css-overflow-4.json index 5396dc853b..e3f7957943 100644 --- a/bikeshed/spec-data/readonly/mdn/css-device-adapt.json +++ b/bikeshed/spec-data/readonly/mdn/css-overflow-4.json @@ -1,49 +1,47 @@ { - "viewport-meta": [ + "propdef--webkit-line-clamp": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "html/elements/meta.json", - "name": "name", - "slug": "HTML/Element/meta/name", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name", - "summary": "The <meta> element can be used to provide document metadata in terms of name-value pairs, with the name attribute giving the metadata name, and the content attribute giving the value.", + "filename": "css/properties/-webkit-line-clamp.json", + "name": "-webkit-line-clamp", + "slug": "CSS/-webkit-line-clamp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp", + "summary": "The -webkit-line-clamp CSS property allows limiting of the contents of a block to the specified number of lines.", "support": { "chrome": { - "version_added": "1" + "version_added": "6" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "17" }, "firefox": { - "version_added": "1" + "version_added": "68" }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "4" + "version_added": "5" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "37" + }, "edge_blink": { "version_added": "79" } }, - "title": "Standard metadata names" + "title": "-webkit-line-clamp" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-overflow.json b/bikeshed/spec-data/readonly/mdn/css-overflow.json index df7c79598b..03d17fcd74 100644 --- a/bikeshed/spec-data/readonly/mdn/css-overflow.json +++ b/bikeshed/spec-data/readonly/mdn/css-overflow.json @@ -1,50 +1,5 @@ { - "webkit-line-clamp": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "css/properties/-webkit-line-clamp.json", - "name": "-webkit-line-clamp", - "slug": "CSS/-webkit-line-clamp", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp", - "summary": "The -webkit-line-clamp CSS property allows limiting of the contents of a block container to the specified number of lines.", - "support": { - "chrome": { - "version_added": "6" - }, - "chrome_android": "mirror", - "edge": { - "version_added": "17" - }, - "firefox": { - "version_added": "68" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "5" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "37" - }, - "edge_blink": { - "version_added": "79" - } - }, - "title": "-webkit-line-clamp" - } - ], - "logical": [ + "overflow-control": [ { "engines": [ "gecko" @@ -63,9 +18,7 @@ "firefox": { "version_added": "69" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -102,9 +55,7 @@ "firefox": { "version_added": "69" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -135,7 +86,7 @@ "name": "overflow-clip-margin", "slug": "CSS/overflow-clip-margin", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-margin", - "summary": "The overflow-clip-margin CSS property determines how far outside its bounds an element with overflow: clip may be painted before being clipped.", + "summary": "The overflow-clip-margin CSS property determines how far outside its bounds an element with overflow: clip may be painted before being clipped. The bound defined by this property is called the overflow clip edge of the box.", "support": { "chrome": { "version_added": "90", @@ -182,7 +133,7 @@ "name": "overflow-x", "slug": "CSS/overflow-x", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x", - "summary": "The overflow-x CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.", + "summary": "The overflow-x CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content. This property may also be set by using the overflow shorthand property.", "support": { "chrome": { "version_added": "1" @@ -233,7 +184,7 @@ "name": "overflow-y", "slug": "CSS/overflow-y", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y", - "summary": "The overflow-y CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.", + "summary": "The overflow-y CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content. This property may also be set by using the overflow shorthand property.", "support": { "chrome": { "version_added": "1" @@ -286,7 +237,7 @@ "name": "overflow", "slug": "CSS/overflow", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow", - "summary": "The overflow CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.", + "summary": "The overflow CSS shorthand property sets the desired behavior when content does not fit in the parent element box (overflows) in the horizontal and/or vertical direction.", "support": { "chrome": { "version_added": "1" @@ -324,6 +275,52 @@ } }, "title": "overflow" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/types/overflow.json", + "name": "overflow", + "slug": "CSS/overflow_value", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow_value", + "summary": "The <overflow> enumerated value type represents the keyword values for the overflow-block, overflow-inline, overflow-x, and overflow-y longhand properties and the overflow shorthand property. These properties apply to block containers, flex containers, and grid containers.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4", + "notes": "From version 4 to 6, Internet Explorer enlarges an element with <code>visible</code> (default value) to fit the content inside it." + }, + "oculus": "mirror", + "opera": { + "version_added": "7" + }, + "opera_android": "mirror", + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "<overflow>" } ], "smooth-scrolling": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-overscroll.json b/bikeshed/spec-data/readonly/mdn/css-overscroll.json index 6c060c1c51..feb5404835 100644 --- a/bikeshed/spec-data/readonly/mdn/css-overscroll.json +++ b/bikeshed/spec-data/readonly/mdn/css-overscroll.json @@ -20,9 +20,7 @@ "firefox": { "version_added": "73" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -61,9 +59,7 @@ "firefox": { "version_added": "73" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -178,7 +174,7 @@ "name": "overscroll-behavior", "slug": "CSS/overscroll-behavior", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior", - "summary": "The overscroll-behavior CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for overscroll-behavior-x and overscroll-behavior-y.", + "summary": "The overscroll-behavior CSS property sets what a browser does when reaching the boundary of a scrolling area.", "support": { "chrome": { "version_added": "63" diff --git a/bikeshed/spec-data/readonly/mdn/css-page.json b/bikeshed/spec-data/readonly/mdn/css-page.json index a98e5024bb..b82bdb7395 100644 --- a/bikeshed/spec-data/readonly/mdn/css-page.json +++ b/bikeshed/spec-data/readonly/mdn/css-page.json @@ -1,4 +1,44 @@ { + "page-orientation-prop": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "css/at-rules/page.json", + "name": "page-orientation", + "slug": "CSS/@page/page-orientation", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@page/page-orientation", + "summary": "The page-orientation CSS descriptor for the @page at-rule controls the rotation of a printed page. It handles the flow of content across pages when the orientation of a page is changed. This behavior differs from the size descriptor in that a user can define the direction in which to rotate the page.", + "support": { + "chrome": { + "version_added": "85" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "preview" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "85" + } + }, + "title": "page-orientation" + } + ], "page-size-prop": [ { "engines": [ @@ -76,7 +116,8 @@ }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "css/at-rules/page.json", "name": "size", @@ -100,7 +141,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": { @@ -120,7 +161,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/at-rules/page.json", "name": "page", @@ -148,7 +190,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -306,6 +348,47 @@ "title": "page-break-inside" } ], + "using-named-pages": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/page.json", + "name": "page", + "slug": "CSS/page", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/page", + "summary": "The page CSS property is used to specify the named page, a specific type of page defined by the @page at-rule.", + "support": { + "chrome": { + "version_added": "85" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "13.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "85" + } + }, + "title": "page" + } + ], "left-right-first": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-paint-api.json b/bikeshed/spec-data/readonly/mdn/css-paint-api.json index dcb0d9ec75..d184c6b469 100644 --- a/bikeshed/spec-data/readonly/mdn/css-paint-api.json +++ b/bikeshed/spec-data/readonly/mdn/css-paint-api.json @@ -5,10 +5,10 @@ "blink" ], "filename": "api/CSS.json", - "name": "paintWorklet", - "slug": "API/CSS/paintWorklet", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/paintWorklet", - "summary": "The static, read-only paintWorklet property of the CSS interface provides access to the PaintWorklet, which programmatically generates an image where a CSS property expects a file.", + "name": "paintWorklet_static", + "slug": "API/CSS/paintWorklet_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/paintWorklet_static", + "summary": "The static, read-only paintWorklet property of the CSS interface provides access to the paint worklet, which programmatically generates an image where a CSS property expects a file.", "support": { "chrome": { "version_added": "65" @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "CSS.paintWorklet (Static property)" + "title": "CSS: paintWorklet static property" } ], "ref-for-dom-paintworkletglobalscope-devicepixelratio": [ @@ -45,9 +45,9 @@ ], "filename": "api/PaintWorkletGlobalScope.json", "name": "devicePixelRatio", - "slug": "API/PaintWorklet/devicePixelRatio", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaintWorklet/devicePixelRatio", - "summary": "The PaintWorkletGlobalScope.devicePixelRatio read-only property of the PaintWorklet interface returns the current device's ratio of physical pixels to logical pixels.", + "slug": "API/PaintWorkletGlobalScope/devicePixelRatio", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaintWorkletGlobalScope/devicePixelRatio", + "summary": "The read-only devicePixelRatio read-only property of the PaintWorkletGlobalScope interface returns the current device's ratio of physical pixels to logical pixels.", "support": { "chrome": { "version_added": "65" @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "PaintWorkletGlobalScope.devicePixelRatio" + "title": "PaintWorkletGlobalScope: devicePixelRatio property" } ], "dom-paintworkletglobalscope-registerpaint": [ @@ -84,9 +84,9 @@ ], "filename": "api/PaintWorkletGlobalScope.json", "name": "registerPaint", - "slug": "API/PaintWorklet/registerPaint", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaintWorklet/registerPaint", - "summary": "The PaintWorkletGlobalScope.registerPaint() method of the PaintWorklet interface registers a class programmatically generate an image where a CSS property expects a file.", + "slug": "API/PaintWorkletGlobalScope/registerPaint", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaintWorkletGlobalScope/registerPaint", + "summary": "The registerPaint() method of the PaintWorkletGlobalScope interface registers a class to programmatically generate an image where a CSS property expects a file.", "support": { "chrome": { "version_added": "65" @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "PaintWorkletGlobalScope.registerPaint()" + "title": "PaintWorkletGlobalScope: registerPaint() method" } ], "paintworkletglobalscope": [ @@ -123,9 +123,9 @@ ], "filename": "api/PaintWorkletGlobalScope.json", "name": "PaintWorkletGlobalScope", - "slug": "API/PaintWorklet", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaintWorklet", - "summary": "The PaintWorklet interface of the CSS Painting API programmatically generates an image where a CSS property expects a file. Access this interface through CSS.paintWorklet.", + "slug": "API/PaintWorkletGlobalScope", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaintWorkletGlobalScope", + "summary": "The PaintWorkletGlobalScope interface of the CSS Painting API represents the global object available inside a paint Worklet.", "support": { "chrome": { "version_added": "65" @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "PaintWorklet" + "title": "PaintWorkletGlobalScope" } ], "paint-notation": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-position-4.json b/bikeshed/spec-data/readonly/mdn/css-position-4.json new file mode 100644 index 0000000000..95d49036ca --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/css-position-4.json @@ -0,0 +1,58 @@ +{ + "backdrop": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/selectors/backdrop.json", + "name": "backdrop", + "slug": "CSS/::backdrop", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::backdrop", + "summary": "The ::backdrop CSS pseudo-element is a box the size of the viewport, which is rendered immediately beneath any element being presented in the top layer.", + "support": { + "chrome": [ + { + "version_added": "37" + }, + { + "prefix": "-webkit-", + "version_added": "32" + } + ], + "chrome_android": "mirror", + "edge": { + "version_added": false + }, + "firefox": { + "version_added": "47" + }, + "firefox_android": "mirror", + "ie": { + "prefix": "-ms-", + "version_added": "11" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "79" + }, + { + "prefix": "-webkit-", + "version_added": "79" + } + ] + }, + "title": "::backdrop" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/css-properties-values-api.json b/bikeshed/spec-data/readonly/mdn/css-properties-values-api.json index d56cd7df3c..94fc175fc7 100644 --- a/bikeshed/spec-data/readonly/mdn/css-properties-values-api.json +++ b/bikeshed/spec-data/readonly/mdn/css-properties-values-api.json @@ -2,13 +2,15 @@ "the-registerproperty-function": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CSS.json", - "name": "registerProperty", - "slug": "API/CSS/registerProperty", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/registerProperty", - "summary": "The CSS.registerProperty() method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.", + "name": "registerProperty_static", + "slug": "API/CSS/registerProperty_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/registerProperty_static", + "summary": "The CSS.registerProperty() static method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.", "support": { "chrome": { "version_added": "78" @@ -16,7 +18,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -26,7 +28,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -35,13 +37,15 @@ "version_added": "79" } }, - "title": "CSS.registerProperty()" + "title": "CSS: registerProperty() static method" } ], "dom-csspropertyrule-inherits": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CSSPropertyRule.json", "name": "inherits", @@ -55,7 +59,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -65,7 +69,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -74,13 +78,15 @@ "version_added": "85" } }, - "title": "CSSPropertyRule.inherits" + "title": "CSSPropertyRule: inherits property" } ], "dom-csspropertyrule-initialvalue": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CSSPropertyRule.json", "name": "initialValue", @@ -94,7 +100,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -104,7 +110,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -113,13 +119,15 @@ "version_added": "85" } }, - "title": "CSSPropertyRule.initialValue" + "title": "CSSPropertyRule: initialValue property" } ], "dom-csspropertyrule-name": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CSSPropertyRule.json", "name": "name", @@ -133,7 +141,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -143,7 +151,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -152,13 +160,15 @@ "version_added": "85" } }, - "title": "CSSPropertyRule.name" + "title": "CSSPropertyRule: name property" } ], "dom-csspropertyrule-syntax": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CSSPropertyRule.json", "name": "syntax", @@ -172,7 +182,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -182,7 +192,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -191,19 +201,21 @@ "version_added": "85" } }, - "title": "CSSPropertyRule.syntax" + "title": "CSSPropertyRule: syntax property" } ], "the-css-property-rule-interface": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CSSPropertyRule.json", "name": "CSSPropertyRule", "slug": "API/CSSPropertyRule", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule", - "summary": "The CSSPropertyRule interface of the CSS_Properties_and_Values_API represents a single CSS @property rule.", + "summary": "The CSSPropertyRule interface of the CSS Properties and Values API represents a single CSS @property rule.", "support": { "chrome": { "version_added": "85" @@ -211,7 +223,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -221,7 +233,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -236,7 +248,9 @@ "inherits-descriptor": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/property.json", "name": "inherits", @@ -250,7 +264,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -260,7 +274,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -275,7 +289,9 @@ "initial-value-descriptor": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/property.json", "name": "initial-value", @@ -289,7 +305,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -299,7 +315,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -314,7 +330,9 @@ "the-syntax-descriptor": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/property.json", "name": "syntax", @@ -328,7 +346,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -338,7 +356,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -353,13 +371,15 @@ "at-property-rule": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "css/at-rules/property.json", "name": "property", "slug": "CSS/@property", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@property", - "summary": "The @property CSS at-rule is part of the CSS Houdini umbrella of APIs, it allows developers to explicitly define their css custom properties, allowing for property type checking, setting default values, and define whether a property can inherit values or not.", + "summary": "The @property CSS at-rule is part of the CSS Houdini umbrella of APIs. It allows developers to explicitly define their CSS custom properties, allowing for property type checking and constraining, setting default values, and defining whether a custom property can inherit values or not.", "support": { "chrome": { "version_added": "85" @@ -367,8 +387,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1684605'>bug 1684605</a>." + "version_added": "preview" }, "firefox_android": "mirror", "ie": { @@ -378,8 +397,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false, - "notes": "See <a href='https://webkit.org/b/189692'>bug 189692</a>." + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/css-pseudo.json b/bikeshed/spec-data/readonly/mdn/css-pseudo.json index cf9745c8da..3abfdcd08e 100644 --- a/bikeshed/spec-data/readonly/mdn/css-pseudo.json +++ b/bikeshed/spec-data/readonly/mdn/css-pseudo.json @@ -44,7 +44,7 @@ "version_added": false } }, - "title": "CSSPseudoElement.element" + "title": "CSSPseudoElement: element property" } ], "dom-csspseudoelement-type": [ @@ -92,7 +92,7 @@ "version_added": false } }, - "title": "CSSPseudoElement.type" + "title": "CSSPseudoElement: type property" } ], "CSSPseudoElement-interface": [ @@ -686,8 +686,7 @@ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" ], "partial": [ "webkit" @@ -713,21 +712,12 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": [ - { - "version_added": "preview" - }, - { - "version_added": "11.1", - "partial_implementation": true, - "notes": "Safari support is limited to <code>color</code> and <code>font-size</code>. See <a href='https://webkit.org/b/204163'>bug 204163</a>." - } - ], - "safari_ios": { - "version_added": "11.3", + "safari": { + "version_added": "11.1", "partial_implementation": true, "notes": "Safari support is limited to <code>color</code> and <code>font-size</code>. See <a href='https://webkit.org/b/204163'>bug 204163</a>." }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -926,7 +916,7 @@ "name": "target-text", "slug": "CSS/::target-text", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::target-text", - "summary": "The ::target-text CSS pseudo-element represents the text that has been scrolled to if the browser supports scroll-to-text fragments. It allows authors to choose how to highlight that section of text.", + "summary": "The ::target-text CSS pseudo-element represents the text that has been scrolled to if the browser supports text fragments. It allows authors to choose how to highlight that section of text.", "support": { "chrome": { "version_added": "89" diff --git a/bikeshed/spec-data/readonly/mdn/css-scroll-anchoring.json b/bikeshed/spec-data/readonly/mdn/css-scroll-anchoring.json index 409898dc92..51e7930281 100644 --- a/bikeshed/spec-data/readonly/mdn/css-scroll-anchoring.json +++ b/bikeshed/spec-data/readonly/mdn/css-scroll-anchoring.json @@ -19,9 +19,7 @@ "firefox": { "version_added": "66" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, diff --git a/bikeshed/spec-data/readonly/mdn/css-scroll-snap.json b/bikeshed/spec-data/readonly/mdn/css-scroll-snap.json index bacccc6801..c951364196 100644 --- a/bikeshed/spec-data/readonly/mdn/css-scroll-snap.json +++ b/bikeshed/spec-data/readonly/mdn/css-scroll-snap.json @@ -28,7 +28,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -67,7 +67,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -106,7 +106,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -145,7 +145,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -186,7 +186,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -457,7 +457,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1119,13 +1119,18 @@ }, "firefox": [ { - "version_added": "68", - "notes": "On macOS 12, scroll snapping does not complete reliably. See <a href='https://bugzil.la/1749352'>bug 1749352</a>" + "version_added": "99" }, { "version_added": "39", "version_removed": "68", "notes": "An earlier draft of CSS Scroll Snap without axis values." + }, + { + "version_added": "68", + "version_removed": "99", + "partial_implementation": true, + "notes": "On macOS 12, scroll snapping does not complete reliably. See <a href='https://bugzil.la/1749352'>bug 1749352</a>" } ], "firefox_android": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-scrollbars.json b/bikeshed/spec-data/readonly/mdn/css-scrollbars.json index 1b7099238a..9c4adc49de 100644 --- a/bikeshed/spec-data/readonly/mdn/css-scrollbars.json +++ b/bikeshed/spec-data/readonly/mdn/css-scrollbars.json @@ -17,12 +17,9 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "64", - "notes": "On macOS, you need to set the <em>General</em> &gt; <em>Show scroll bars</em> setting in System Preferences to \"Always\" for this property to have any effect." - }, - "firefox_android": { "version_added": "64" }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -47,8 +44,12 @@ "scrollbar-width": [ { "engines": [ + "blink", "gecko" ], + "needsflag": [ + "blink" + ], "filename": "css/properties/scrollbar-width.json", "name": "scrollbar-width", "slug": "CSS/scrollbar-width", @@ -56,8 +57,14 @@ "summary": "The scrollbar-width property allows the author to set the maximum thickness of an element's scrollbars when they are shown.", "support": { "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/891944'>bug 891944</a>." + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -79,8 +86,14 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/891944'>bug 891944</a>." + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] } }, "title": "scrollbar-width" diff --git a/bikeshed/spec-data/readonly/mdn/css-shadow-parts.json b/bikeshed/spec-data/readonly/mdn/css-shadow-parts.json index 0b1f8fb155..545f1d1c1d 100644 --- a/bikeshed/spec-data/readonly/mdn/css-shadow-parts.json +++ b/bikeshed/spec-data/readonly/mdn/css-shadow-parts.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "Element.part" + "title": "Element: part property" } ], "part": [ @@ -92,7 +92,7 @@ "name": "exportparts", "slug": "HTML/Global_attributes/exportparts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts", - "summary": "The exportparts global attribute allows to select and style elements existing in nested shadow trees, by exporting their part names.", + "summary": "The exportparts global attribute allows you to select and style elements existing in nested shadow trees, by exporting their part names.", "support": { "chrome": { "version_added": "73" @@ -150,6 +150,7 @@ }, "oculus": "mirror", "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "13.1" }, diff --git a/bikeshed/spec-data/readonly/mdn/css-shapes.json b/bikeshed/spec-data/readonly/mdn/css-shapes.json index 1b6fc7e617..d2285a60f3 100644 --- a/bikeshed/spec-data/readonly/mdn/css-shapes.json +++ b/bikeshed/spec-data/readonly/mdn/css-shapes.json @@ -152,26 +152,22 @@ "title": "shape-margin" } ], - "shape-outside-property": [ + "funcdef-basic-shape-path": [ { - "engines": [ - "blink", - "gecko", - "webkit" - ], + "engines": [], "filename": "css/properties/shape-outside.json", - "name": "shape-outside", - "slug": "CSS/shape-outside", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/shape-outside", - "summary": "The shape-outside CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; shape-outside provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.", + "name": "path", + "slug": "CSS/path", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/path", + "summary": "The path() CSS function accepts an SVG path string, and is used in CSS Shapes and CSS Motion Path to enable a shape to be drawn.", "support": { "chrome": { - "version_added": "37" + "version_added": false }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "62" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -181,39 +177,53 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": false } }, - "title": "shape-outside" - } - ], - "funcdef-basic-shape-circle": [ + "title": "path()" + }, { - "engines": [ + "engines": [], + "partial": [ "blink", - "gecko", - "webkit" + "gecko" ], "filename": "css/types/basic-shape.json", - "name": "circle", - "slug": "CSS/basic-shape/circle", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/circle", - "summary": "The circle() CSS function is one of the <basic-shape> data types.", + "name": "path", + "slug": "CSS/path", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/path", + "summary": "The path() CSS function accepts an SVG path string, and is used in CSS Shapes and CSS Motion Path to enable a shape to be drawn.", "support": { "chrome": { - "version_added": "37" + "version_added": "46", + "partial_implementation": true, + "notes": "Only supported on the <code>offset-path</code> property." }, "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": "54" - }, + "firefox": [ + { + "version_added": "97", + "partial_implementation": true, + "notes": "Only supported on the <code>d</code> SVG presentation attribute and the <code>clip-path</code> and <code>offset-path</code> CSS properties. Not supported on the <code>shape-outside</code> CSS property." + }, + { + "version_added": "71", + "partial_implementation": true, + "notes": "Only supported on the <code>clip-path</code> and <code>offset-path</code> properties." + }, + { + "version_added": "63", + "partial_implementation": true, + "notes": "Only supported on the <code>offset-path</code> property." + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -222,7 +232,51 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79", + "partial_implementation": true, + "notes": "Only supported on the <code>offset-path</code> property." + } + }, + "title": "path()" + }, + { + "engines": [ + "blink", + "gecko" + ], + "filename": "svg/elements/path.json", + "name": "path", + "slug": "CSS/path", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/path", + "summary": "The path() CSS function accepts an SVG path string, and is used in CSS Shapes and CSS Motion Path to enable a shape to be drawn.", + "support": { + "chrome": { + "version_added": "52" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "97" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "60" + }, + "opera_android": { + "version_added": "51" + }, + "safari": { + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -231,21 +285,21 @@ "version_added": "79" } }, - "title": "circle()" + "title": "path()" } ], - "funcdef-basic-shape-ellipse": [ + "shape-outside-property": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "css/types/basic-shape.json", - "name": "ellipse", - "slug": "CSS/basic-shape/ellipse", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/ellipse", - "summary": "The ellipse() CSS function is one of the <basic-shape> data types.", + "filename": "css/properties/shape-outside.json", + "name": "shape-outside", + "slug": "CSS/shape-outside", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/shape-outside", + "summary": "The shape-outside CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; shape-outside provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.", "support": { "chrome": { "version_added": "37" @@ -253,7 +307,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "54" + "version_added": "62" }, "firefox_android": "mirror", "ie": { @@ -272,10 +326,10 @@ "version_added": "79" } }, - "title": "ellipse()" + "title": "shape-outside" } ], - "funcdef-basic-shape-inset": [ + "funcdef-basic-shape-circle": [ { "engines": [ "blink", @@ -283,10 +337,10 @@ "webkit" ], "filename": "css/types/basic-shape.json", - "name": "inset", - "slug": "CSS/basic-shape/inset", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/inset", - "summary": "The inset() CSS function is one of the <basic-shape> data types. It defines an inset rectangle.", + "name": "circle", + "slug": "CSS/basic-shape/circle", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/circle", + "summary": "The circle() CSS function is one of the <basic-shape> data types.", "support": { "chrome": { "version_added": "37" @@ -313,46 +367,30 @@ "version_added": "79" } }, - "title": "inset()" + "title": "circle()" } ], - "funcdef-basic-shape-path": [ + "funcdef-basic-shape-ellipse": [ { - "engines": [], - "partial": [ + "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/types/basic-shape.json", - "name": "path", - "slug": "CSS/path", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/path", - "summary": "The path() CSS function accepts an SVG path string, and is used in CSS Shapes and CSS Motion Path to enable a shape to be drawn.", + "name": "ellipse", + "slug": "CSS/basic-shape/ellipse", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/ellipse", + "summary": "The ellipse() CSS function is one of the <basic-shape> data types.", "support": { "chrome": { - "version_added": "46", - "partial_implementation": true, - "notes": "Only supported on the <code>offset-path</code> property." + "version_added": "37" }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "97", - "partial_implementation": true, - "notes": "Only supported on the <code>d</code> SVG presentation attribute and the <code>clip-path</code> and <code>offset-path</code> CSS properties. Not supported on the <code>shape-outside</code> CSS property." - }, - { - "version_added": "71", - "partial_implementation": true, - "notes": "Only supported on the <code>clip-path</code> and <code>offset-path</code> properties." - }, - { - "version_added": "63", - "partial_implementation": true, - "notes": "Only supported on the <code>offset-path</code> property." - } - ], + "firefox": { + "version_added": "54" + }, "firefox_android": "mirror", "ie": { "version_added": false @@ -361,51 +399,48 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "10.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79", - "partial_implementation": true, - "notes": "Only supported on the <code>offset-path</code> property." + "version_added": "79" } }, - "title": "path()" - }, + "title": "ellipse()" + } + ], + "funcdef-basic-shape-inset": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], - "filename": "svg/elements/path.json", - "name": "path", - "slug": "CSS/path", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/path", - "summary": "The path() CSS function accepts an SVG path string, and is used in CSS Shapes and CSS Motion Path to enable a shape to be drawn.", + "filename": "css/types/basic-shape.json", + "name": "inset", + "slug": "CSS/basic-shape/inset", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/inset", + "summary": "The inset() CSS function is one of the <basic-shape> data types. It defines an inset rectangle.", "support": { "chrome": { - "version_added": "52" + "version_added": "37" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "97" + "version_added": "54" }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "60" - }, - "opera_android": { - "version_added": "51" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "10.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -414,7 +449,7 @@ "version_added": "79" } }, - "title": "path()" + "title": "inset()" } ], "funcdef-basic-shape-polygon": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-sizing-4.json b/bikeshed/spec-data/readonly/mdn/css-sizing-4.json index 5ab371ae78..0546705668 100644 --- a/bikeshed/spec-data/readonly/mdn/css-sizing-4.json +++ b/bikeshed/spec-data/readonly/mdn/css-sizing-4.json @@ -10,7 +10,7 @@ "name": "aspect-ratio", "slug": "CSS/aspect-ratio", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio", - "summary": "The aspect-ratio CSS property sets a preferred aspect ratio for the box, which will be used in the calculation of auto sizes and some other layout functions.", + "summary": "The aspect-ratio CSS property allows you to define the desired width-to-height ratio of an element's box. This means that even if the parent container or viewport size changes, the browser will adjust the element's dimensions to maintain the specified width-to-height ratio. The specified aspect ratio is used in the calculation of auto sizes and some other layout functions.", "support": { "chrome": { "version_added": "88" @@ -44,10 +44,8 @@ { "engines": [ "blink", - "gecko" - ], - "needsflag": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/contain-intrinsic-height.json", "name": "contain-intrinsic-height", @@ -56,19 +54,12 @@ "summary": "The contain-intrinsic-length CSS property sets the height of an element that a browser can use for layout when the element is subject to size containment.", "support": { "chrome": { - "version_added": "83" + "version_added": "95" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "104", - "flags": [ - { - "type": "preference", - "name": "layout.css.contain-intrinsic-size.enabled", - "value_to_set": "true" - } - ] + "version_added": "107" }, "firefox_android": "mirror", "ie": { @@ -78,13 +69,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "83" + "version_added": "95" } }, "title": "contain-intrinsic-height" @@ -94,10 +85,8 @@ { "engines": [ "blink", - "gecko" - ], - "needsflag": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/contain-intrinsic-size.json", "name": "contain-intrinsic-size", @@ -111,14 +100,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "104", - "flags": [ - { - "type": "preference", - "name": "layout.css.contain-intrinsic-size.enabled", - "value_to_set": "true" - } - ] + "version_added": "107" }, "firefox_android": "mirror", "ie": { @@ -128,7 +110,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -144,10 +126,8 @@ { "engines": [ "blink", - "gecko" - ], - "needsflag": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/contain-intrinsic-width.json", "name": "contain-intrinsic-width", @@ -156,19 +136,12 @@ "summary": "The contain-intrinsic-width CSS property sets the width of an element that a browser will use for layout when the element is subject to size containment.", "support": { "chrome": { - "version_added": "83" + "version_added": "95" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "104", - "flags": [ - { - "type": "preference", - "name": "layout.css.contain-intrinsic-size.enabled", - "value_to_set": "true" - } - ] + "version_added": "107" }, "firefox_android": "mirror", "ie": { @@ -178,13 +151,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "83" + "version_added": "95" } }, "title": "contain-intrinsic-width" @@ -210,9 +183,15 @@ "edge": { "version_added": "16" }, - "firefox": { - "version_added": "52" - }, + "firefox": [ + { + "version_added": "94" + }, + { + "prefix": "-moz-", + "version_added": "52" + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -253,9 +232,15 @@ "edge": { "version_added": "16" }, - "firefox": { - "version_added": "52" - }, + "firefox": [ + { + "version_added": "94" + }, + { + "prefix": "-moz-", + "version_added": "52" + } + ], "firefox_android": "mirror", "ie": { "version_added": false diff --git a/bikeshed/spec-data/readonly/mdn/css-text-4.json b/bikeshed/spec-data/readonly/mdn/css-text-4.json index 1cd2371f6d..43ccdc1611 100644 --- a/bikeshed/spec-data/readonly/mdn/css-text-4.json +++ b/bikeshed/spec-data/readonly/mdn/css-text-4.json @@ -54,5 +54,97 @@ }, "title": "hyphenate-character" } + ], + "text-wrap": [ + { + "engines": [], + "partial": [ + "blink" + ], + "filename": "css/properties/text-wrap.json", + "name": "text-wrap", + "slug": "CSS/text-wrap", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/text-wrap", + "summary": "The text-wrap CSS property controls how text inside an element is wrapped. The different values provide:", + "support": { + "chrome": { + "version_added": "114", + "partial_implementation": true, + "notes": "The <code>pretty</code> and <code>stable</code> values are not supported." + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114", + "partial_implementation": true, + "notes": "The <code>pretty</code> and <code>stable</code> values are not supported." + } + }, + "caniuse": { + "feature": "css-text-wrap-balance", + "title": "CSS text-wrap: balance" + }, + "title": "text-wrap" + } + ], + "white-space-collapsing": [ + { + "engines": [], + "partial": [ + "blink" + ], + "filename": "css/properties/white-space-collapse.json", + "name": "white-space-collapse", + "slug": "CSS/white-space-collapse", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/white-space-collapse", + "summary": "The white-space-collapse CSS property controls how white space inside an element is collapsed.", + "support": { + "chrome": { + "version_added": "114", + "partial_implementation": true, + "notes": "The <code>discard</code> and <code>preserve-spaces</code> values are not supported." + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114", + "partial_implementation": true, + "notes": "The <code>discard</code> and <code>preserve-spaces</code> values are not supported." + } + }, + "title": "white-space-collapse" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-text-decor-4.json b/bikeshed/spec-data/readonly/mdn/css-text-decor-4.json index 21489cb46c..81a3be7d07 100644 --- a/bikeshed/spec-data/readonly/mdn/css-text-decor-4.json +++ b/bikeshed/spec-data/readonly/mdn/css-text-decor-4.json @@ -20,9 +20,7 @@ "firefox": { "version_added": "70" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -134,24 +132,18 @@ "firefox": { "version_added": "70" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "63" - }, + "opera_android": "mirror", "safari": { "version_added": "12.1" }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "15.0" - }, + "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": [ { @@ -189,17 +181,13 @@ "firefox": { "version_added": "70" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "12.1" }, diff --git a/bikeshed/spec-data/readonly/mdn/css-text-decor.json b/bikeshed/spec-data/readonly/mdn/css-text-decor.json index c3edc9404e..8531dedfbc 100644 --- a/bikeshed/spec-data/readonly/mdn/css-text-decor.json +++ b/bikeshed/spec-data/readonly/mdn/css-text-decor.json @@ -277,14 +277,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "prefix": "-webkit-", - "version_added": "15" - }, - "opera_android": { - "prefix": "-webkit-", - "version_added": "14" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": [ { "version_added": "7" @@ -296,10 +290,7 @@ ], "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "prefix": "-webkit-", - "version_added": "4.4" - }, + "webview_android": "mirror", "edge_blink": [ { "version_added": "99" @@ -345,14 +336,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "prefix": "-webkit-", - "version_added": "15" - }, - "opera_android": { - "prefix": "-webkit-", - "version_added": "14" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": [ { "version_added": "7" @@ -364,10 +349,7 @@ ], "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "prefix": "-webkit-", - "version_added": "4.4" - }, + "webview_android": "mirror", "edge_blink": [ { "version_added": "99" @@ -413,14 +395,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "prefix": "-webkit-", - "version_added": "15" - }, - "opera_android": { - "prefix": "-webkit-", - "version_added": "14" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": [ { "version_added": "7" @@ -432,10 +408,7 @@ ], "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "prefix": "-webkit-", - "version_added": "4.4" - }, + "webview_android": "mirror", "edge_blink": [ { "version_added": "99" @@ -481,14 +454,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "prefix": "-webkit-", - "version_added": "15" - }, - "opera_android": { - "prefix": "-webkit-", - "version_added": "14" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": [ { "version_added": "7" @@ -500,10 +467,7 @@ ], "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "prefix": "-webkit-", - "version_added": "4.4" - }, + "webview_android": "mirror", "edge_blink": [ { "version_added": "99" @@ -615,9 +579,7 @@ "firefox": { "version_added": "74" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": "6" }, @@ -633,9 +595,7 @@ "version_added": "9" } ], - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { diff --git a/bikeshed/spec-data/readonly/mdn/css-text.json b/bikeshed/spec-data/readonly/mdn/css-text.json index e90f17a687..99ef7a1f4d 100644 --- a/bikeshed/spec-data/readonly/mdn/css-text.json +++ b/bikeshed/spec-data/readonly/mdn/css-text.json @@ -29,7 +29,10 @@ "safari": { "version_added": "10", "partial_implementation": true, - "notes": "The <code>force-end</code> keyword is recognized but has no effect." + "notes": [ + "The <code>force-end</code> keyword is recognized but has no effect.", + "The characters <code>U+0027</code> and <code>U+0022</code> are not supported by the <code>first</code> and <code>last</code> keywords." + ] }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -51,11 +54,7 @@ "blink", "gecko" ], - "partial": [ - "blink" - ], "prefixed": [ - "blink", "webkit" ], "filename": "css/properties/hyphens.json", @@ -65,26 +64,15 @@ "summary": "The hyphens CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.", "support": { "chrome": [ - { - "partial_implementation": true, - "version_added": "55", - "notes": "<code>auto</code> value is only supported on macOS and Android and for languages the OS provides hyphenation for." - }, - { - "prefix": "-webkit-", - "version_added": "13", - "notes": "Only <code>-webkit-hyphens: none</code> is supported." - } - ], - "chrome_android": [ { "version_added": "55" }, { "prefix": "-webkit-", - "version_added": "18" + "version_added": "13" } ], + "chrome_android": "mirror", "edge": { "version_added": false }, @@ -94,8 +82,7 @@ }, { "prefix": "-moz-", - "version_added": "6", - "notes": "Automatic hyphenation only works for languages with hyphenation dictionaries that are integrated into Firefox." + "version_added": "6" } ], "firefox_android": "mirror", @@ -106,14 +93,8 @@ "notes": "Only works if the specified language is the same as the language of the underlying OS." }, "oculus": "mirror", - "opera": { - "version_added": "44", - "partial_implementation": true, - "notes": "<code>auto</code> value is only supported on macOS and Android." - }, - "opera_android": { - "version_added": "43" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "prefix": "-webkit-", "version_added": "5.1" @@ -123,25 +104,14 @@ "version_added": "4.2" }, "samsunginternet_android": "mirror", - "webview_android": [ - { - "version_added": "55" - }, - { - "prefix": "-webkit-", - "version_added": "4" - } - ], + "webview_android": "mirror", "edge_blink": [ { - "partial_implementation": true, - "version_added": "79", - "notes": "<code>auto</code> value is only supported on macOS and Android and for languages the OS provides hyphenation for." + "version_added": "79" }, { "prefix": "-webkit-", - "version_added": "79", - "notes": "Only <code>-webkit-hyphens: none</code> is supported." + "version_added": "79" } ] }, @@ -683,7 +653,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": false }, "firefox": { "version_added": "55" diff --git a/bikeshed/spec-data/readonly/mdn/css-transforms.json b/bikeshed/spec-data/readonly/mdn/css-transforms.json index 0962a63735..046795ebc0 100644 --- a/bikeshed/spec-data/readonly/mdn/css-transforms.json +++ b/bikeshed/spec-data/readonly/mdn/css-transforms.json @@ -992,7 +992,11 @@ ], "typedef-transform-list": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/linearGradient.json", "name": "gradientTransform", "slug": "SVG/Attribute/gradientTransform", @@ -1000,12 +1004,12 @@ "summary": "The gradientTransform attribute contains the definition of an optional additional transformation from the gradient coordinate system onto the target coordinate system (i.e., userSpaceOnUse or objectBoundingBox). This allows for things such as skewing the gradient. This additional transformation matrix is post-multiplied to (i.e., inserted to the right of) any previously defined transformations, including the implicit transformation necessary to convert from object bounding box units to user space.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -1015,13 +1019,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "gradientTransform" diff --git a/bikeshed/spec-data/readonly/mdn/css-transitions-2.json b/bikeshed/spec-data/readonly/mdn/css-transitions-2.json index 6d02644318..3bb437d545 100644 --- a/bikeshed/spec-data/readonly/mdn/css-transitions-2.json +++ b/bikeshed/spec-data/readonly/mdn/css-transitions-2.json @@ -37,7 +37,7 @@ "version_added": "84" } }, - "title": "CSSTransition.transitionProperty" + "title": "CSSTransition: transitionProperty property" } ], "the-CSSTransition-interface": [ @@ -54,12 +54,10 @@ "summary": "The CSSTransition interface of the Web Animations API represents an Animation object used for a CSS Transition.", "support": { "chrome": { - "version_added": "78" + "version_added": "84" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "75" }, @@ -77,7 +75,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "84" } }, "title": "CSSTransition" diff --git a/bikeshed/spec-data/readonly/mdn/css-transitions.json b/bikeshed/spec-data/readonly/mdn/css-transitions.json index 90e3291b33..0f837920b0 100644 --- a/bikeshed/spec-data/readonly/mdn/css-transitions.json +++ b/bikeshed/spec-data/readonly/mdn/css-transitions.json @@ -326,7 +326,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/TransitionEvent.json", "name": "TransitionEvent", @@ -338,7 +339,9 @@ "version_added": "27" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "14" + }, "firefox": { "version_added": "23" }, @@ -349,9 +352,15 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": false - }, + "safari": [ + { + "version_added": "7" + }, + { + "prefix": "WebKit", + "version_added": "6" + } + ], "safari_ios": "mirror", "samsunginternet_android": { "version_added": "2.0" @@ -361,7 +370,7 @@ "version_added": "79" } }, - "title": "TransitionEvent()" + "title": "TransitionEvent: TransitionEvent() constructor" } ], "Events-TransitionEvent-elapsedTime": [ @@ -408,7 +417,7 @@ "version_added": "79" } }, - "title": "TransitionEvent.elapsedTime" + "title": "TransitionEvent: elapsedTime property" } ], "Events-TransitionEvent-propertyName": [ @@ -455,7 +464,7 @@ "version_added": "79" } }, - "title": "TransitionEvent.propertyName" + "title": "TransitionEvent: propertyName property" } ], "Events-TransitionEvent-pseudoElement": [ @@ -496,7 +505,7 @@ "version_added": "79" } }, - "title": "TransitionEvent.pseudoElement" + "title": "TransitionEvent: pseudoElement property" } ], "interface-transitionevent": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-typed-om.json b/bikeshed/spec-data/readonly/mdn/css-typed-om.json index f5db589e7b..30e96ed761 100644 --- a/bikeshed/spec-data/readonly/mdn/css-typed-om.json +++ b/bikeshed/spec-data/readonly/mdn/css-typed-om.json @@ -1,8 +1,2213 @@ { + "dom-css-hz": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "Hz_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-q": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "Q_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-ch": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "ch_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cm": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cm_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cqb": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cqb_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cqh": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cqh_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cqi": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cqi_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cqmax": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cqmax_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cqmin": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cqmin_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-cqw": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "cqw_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-deg": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "deg_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dpcm": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dpcm_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dpi": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dpi_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dppx": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dppx_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dvb": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dvb_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dvh": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dvh_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dvi": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dvi_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dvmax": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dvmax_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dvmin": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dvmin_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-dvw": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "dvw_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-em": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "em_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-ex": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "ex_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-fr": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "fr_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-grad": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "grad_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-in": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "in_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-khz": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "kHz_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-lvb": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "lvb_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-lvh": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "lvh_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-lvi": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "lvi_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-lvmax": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "lvmax_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-lvmin": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "lvmin_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-lvw": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "lvw_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-mm": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "mm_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-ms": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "ms_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-number": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "number_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-pc": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "pc_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-percent": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "percent_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-pt": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "pt_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-px": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "px_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-rad": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "rad_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-rem": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "rem_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-s": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "s_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-svb": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "svb_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-svh": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "svh_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-svi": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "svi_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-svmax": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "svmax_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-svmin": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "svmin_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-svw": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "svw_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-turn": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "turn_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-vb": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "vb_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false, + "notes": "See <a href='https://bugzil.la/1287034'>bug 1287034</a>." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4", + "notes": "See <a href='https://webkit.org/b/159801'>bug 159801</a>." + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-vh": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "vh_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-vi": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "vi_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false, + "notes": "See <a href='https://bugzil.la/1287034'>bug 1287034</a>." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4", + "notes": "See <a href='https://webkit.org/b/159801'>bug 159801</a>." + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-vmax": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "vmax_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-vmin": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "vmin_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], + "dom-css-vw": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/CSS.json", + "name": "vw_static", + "slug": "API/CSS/factory_functions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static", + "summary": "The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CSS numeric factory functions" + } + ], "imagevalue-objects": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSImageValue.json", "name": "CSSImageValue", @@ -26,7 +2231,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -41,7 +2246,8 @@ "dom-csskeywordvalue-csskeywordvalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSKeywordValue.json", "name": "CSSKeywordValue", @@ -65,7 +2271,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -74,13 +2280,14 @@ "version_added": "79" } }, - "title": "CSSKeywordValue()" + "title": "CSSKeywordValue: CSSKeywordValue() constructor" } ], "dom-csskeywordvalue-value": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSKeywordValue.json", "name": "value", @@ -104,7 +2311,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -113,13 +2320,14 @@ "version_added": "79" } }, - "title": "CSSKeywordValue.value" + "title": "CSSKeywordValue: value property" } ], "keywordvalue-objects": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSKeywordValue.json", "name": "CSSKeywordValue", @@ -143,7 +2351,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -158,7 +2366,8 @@ "dom-cssmathinvert-cssmathinvert": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathInvert.json", "name": "CSSMathInvert", @@ -182,7 +2391,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -191,13 +2400,14 @@ "version_added": "79" } }, - "title": "CSSMathInvert()" + "title": "CSSMathInvert: CSSMathInvert() constructor" } ], "dom-cssmathinvert-value": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathInvert.json", "name": "value", @@ -221,7 +2431,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -230,13 +2440,14 @@ "version_added": "79" } }, - "title": "CSSMathInvert.value" + "title": "CSSMathInvert: value property" } ], "cssmathinvert": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathInvert.json", "name": "CSSMathInvert", @@ -260,7 +2471,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -308,13 +2519,14 @@ "version_added": "79" } }, - "title": "CSSMathMax()" + "title": "CSSMathMax: CSSMathMax() constructor" } ], "dom-cssmathmax-values": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathMax.json", "name": "values", @@ -338,7 +2550,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -347,13 +2559,14 @@ "version_added": "79" } }, - "title": "CSSMathMax.values" + "title": "CSSMathMax: values property" } ], "cssmathmax": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathMax.json", "name": "CSSMathMax", @@ -377,7 +2590,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -425,13 +2638,14 @@ "version_added": "79" } }, - "title": "CSSMathMin()" + "title": "CSSMathMin: CSSMathMin() constructor" } ], "dom-cssmathmin-values": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathMin.json", "name": "values", @@ -455,7 +2669,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -464,13 +2678,14 @@ "version_added": "79" } }, - "title": "CSSMathMin.values" + "title": "CSSMathMin: values property" } ], "cssmathmin": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathMin.json", "name": "CSSMathMin", @@ -494,7 +2709,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -509,7 +2724,8 @@ "dom-cssmathnegate-cssmathnegate": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathNegate.json", "name": "CSSMathNegate", @@ -533,7 +2749,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -542,13 +2758,14 @@ "version_added": "79" } }, - "title": "CSSMathNegate()" + "title": "CSSMathNegate: CSSMathNegate() constructor" } ], "dom-cssmathnegate-value": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathNegate.json", "name": "value", @@ -572,7 +2789,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -581,13 +2798,14 @@ "version_added": "79" } }, - "title": "CSSMathNegate.value" + "title": "CSSMathNegate: value property" } ], "cssmathnegate": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathNegate.json", "name": "CSSMathNegate", @@ -611,7 +2829,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -659,13 +2877,14 @@ "version_added": "79" } }, - "title": "CSSMathProduct()" + "title": "CSSMathProduct: CSSMathProduct() constructor" } ], "dom-cssmathproduct-values": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathProduct.json", "name": "values", @@ -689,7 +2908,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -698,13 +2917,14 @@ "version_added": "79" } }, - "title": "CSSMathProduct.values" + "title": "CSSMathProduct: values property" } ], "cssmathproduct": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathProduct.json", "name": "CSSMathProduct", @@ -728,7 +2948,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -776,13 +2996,14 @@ "version_added": "79" } }, - "title": "CSSMathSum()" + "title": "CSSMathSum: CSSMathSum() constructor" } ], "dom-cssmathsum-values": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathSum.json", "name": "values", @@ -806,7 +3027,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -815,13 +3036,14 @@ "version_added": "79" } }, - "title": "CSSMathSum.values" + "title": "CSSMathSum: values property" } ], "cssmathsum": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathSum.json", "name": "CSSMathSum", @@ -845,7 +3067,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -860,7 +3082,8 @@ "dom-cssmathvalue-operator": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathValue.json", "name": "operator", @@ -884,7 +3107,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -893,13 +3116,14 @@ "version_added": "79" } }, - "title": "CSSMathValue.operator" + "title": "CSSMathValue: operator property" } ], "complex-numeric": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMathValue.json", "name": "CSSMathValue", @@ -923,7 +3147,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -938,7 +3162,8 @@ "dom-cssmatrixcomponent-cssmatrixcomponent": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMatrixComponent.json", "name": "CSSMatrixComponent", @@ -962,7 +3187,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -971,13 +3196,14 @@ "version_added": "79" } }, - "title": "CSSMatrixComponent()" + "title": "CSSMatrixComponent: CSSMatrixComponent() constructor" } ], "dom-cssmatrixcomponent-matrix": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMatrixComponent.json", "name": "matrix", @@ -1001,7 +3227,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1010,13 +3236,14 @@ "version_added": "79" } }, - "title": "CSSMatrixComponent.matrix" + "title": "CSSMatrixComponent: matrix property" } ], "cssmatrixcomponent": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSMatrixComponent.json", "name": "CSSMatrixComponent", @@ -1040,7 +3267,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1055,7 +3282,8 @@ "dom-cssnumericarray-length": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericArray.json", "name": "length", @@ -1079,7 +3307,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1088,13 +3316,14 @@ "version_added": "79" } }, - "title": "CSSNumericArray.length" + "title": "CSSNumericArray: length property" } ], "cssnumericarray": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericArray.json", "name": "CSSNumericArray", @@ -1118,7 +3347,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1133,7 +3362,8 @@ "dom-cssnumericvalue-add": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "add", @@ -1157,7 +3387,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1166,13 +3396,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.add()" + "title": "CSSNumericValue: add() method" } ], "dom-cssnumericvalue-div": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "div", @@ -1196,7 +3427,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1205,13 +3436,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.div()" + "title": "CSSNumericValue: div() method" } ], "dom-cssnumericvalue-equals": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "equals", @@ -1235,7 +3467,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1244,13 +3476,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.equals()" + "title": "CSSNumericValue: equals() method" } ], "dom-cssnumericvalue-max": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "max", @@ -1274,7 +3507,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1283,13 +3516,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.max()" + "title": "CSSNumericValue: max() method" } ], "dom-cssnumericvalue-min": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "min", @@ -1313,7 +3547,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1322,13 +3556,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.min()" + "title": "CSSNumericValue: min() method" } ], "dom-cssnumericvalue-mul": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "mul", @@ -1352,7 +3587,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1361,19 +3596,20 @@ "version_added": "79" } }, - "title": "CSSNumericValue.mul()" + "title": "CSSNumericValue: mul() method" } ], "dom-cssnumericvalue-parse": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", - "name": "parse", - "slug": "API/CSSNumericValue/parse", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/parse", - "summary": "The parse() method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.", + "name": "parse_static", + "slug": "API/CSSNumericValue/parse_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/parse_static", + "summary": "The parse() static method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.", "support": { "chrome": { "version_added": "66", @@ -1392,7 +3628,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1402,13 +3638,14 @@ "notes": "Not exposed to PaintWorklet." } }, - "title": "CSSNumericValue.parse()" + "title": "CSSNumericValue: parse() static method" } ], "dom-cssnumericvalue-sub": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "sub", @@ -1432,7 +3669,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1441,13 +3678,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.sub()" + "title": "CSSNumericValue: sub() method" } ], "dom-cssnumericvalue-to": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "to", @@ -1471,7 +3709,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1480,13 +3718,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.to()" + "title": "CSSNumericValue: to() method" } ], "dom-cssnumericvalue-tosum": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "toSum", @@ -1510,7 +3749,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1519,13 +3758,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.toSum()" + "title": "CSSNumericValue: toSum() method" } ], "dom-cssnumericvalue-type": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "type", @@ -1549,7 +3789,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1558,13 +3798,14 @@ "version_added": "79" } }, - "title": "CSSNumericValue.type()" + "title": "CSSNumericValue: type() method" } ], "numeric-value": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSNumericValue.json", "name": "CSSNumericValue", @@ -1588,7 +3829,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1603,7 +3844,8 @@ "dom-cssperspective-cssperspective": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSPerspective.json", "name": "CSSPerspective", @@ -1627,7 +3869,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1636,13 +3878,14 @@ "version_added": "79" } }, - "title": "CSSPerspective()" + "title": "CSSPerspective: CSSPerspective() constructor" } ], "dom-cssperspective-length": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSPerspective.json", "name": "length", @@ -1666,7 +3909,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1675,13 +3918,14 @@ "version_added": "79" } }, - "title": "CSSPerspective.length" + "title": "CSSPerspective: length property" } ], "cssperspective": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSPerspective.json", "name": "CSSPerspective", @@ -1705,7 +3949,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1720,7 +3964,8 @@ "dom-cssrotate-cssrotate": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "CSSRotate", @@ -1744,7 +3989,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1753,13 +3998,14 @@ "version_added": "79" } }, - "title": "CSSRotate()" + "title": "CSSRotate: CSSRotate() constructor" } ], "dom-cssrotate-cssrotate-x-y-z-angle": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "CSSRotate", @@ -1783,7 +4029,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1792,13 +4038,14 @@ "version_added": "79" } }, - "title": "CSSRotate()" + "title": "CSSRotate: CSSRotate() constructor" } ], "dom-cssrotate-angle": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "angle", @@ -1822,7 +4069,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1831,13 +4078,14 @@ "version_added": "79" } }, - "title": "CSSRotate.angle" + "title": "CSSRotate: angle property" } ], "dom-cssrotate-x": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "x", @@ -1861,7 +4109,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1870,13 +4118,14 @@ "version_added": "79" } }, - "title": "CSSRotate.x" + "title": "CSSRotate: x property" } ], "dom-cssrotate-y": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "y", @@ -1900,7 +4149,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1909,13 +4158,14 @@ "version_added": "79" } }, - "title": "CSSRotate.y" + "title": "CSSRotate: y property" } ], "dom-cssrotate-z": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "z", @@ -1939,7 +4189,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1948,13 +4198,14 @@ "version_added": "79" } }, - "title": "CSSRotate.z" + "title": "CSSRotate: z property" } ], "cssrotate": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSRotate.json", "name": "CSSRotate", @@ -1978,7 +4229,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1993,7 +4244,8 @@ "dom-cssscale-cssscale": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSScale.json", "name": "CSSScale", @@ -2017,7 +4269,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2026,13 +4278,14 @@ "version_added": "79" } }, - "title": "CSSScale()" + "title": "CSSScale: CSSScale() constructor" } ], "dom-cssscale-x": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSScale.json", "name": "x", @@ -2056,7 +4309,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2065,13 +4318,14 @@ "version_added": "79" } }, - "title": "CSSScale.x" + "title": "CSSScale: x property" } ], "dom-cssscale-y": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSScale.json", "name": "y", @@ -2095,7 +4349,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2104,13 +4358,14 @@ "version_added": "79" } }, - "title": "CSSScale.y" + "title": "CSSScale: y property" } ], "dom-cssscale-z": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSScale.json", "name": "z", @@ -2134,7 +4389,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2143,13 +4398,14 @@ "version_added": "79" } }, - "title": "CSSScale.z" + "title": "CSSScale: z property" } ], "cssscale": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSScale.json", "name": "CSSScale", @@ -2173,7 +4429,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2188,7 +4444,8 @@ "dom-cssskew-cssskew": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkew.json", "name": "CSSSkew", @@ -2212,7 +4469,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2221,13 +4478,14 @@ "version_added": "79" } }, - "title": "CSSSkew()" + "title": "CSSSkew: CSSSkew() constructor" } ], "dom-cssskew-ax": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkew.json", "name": "ax", @@ -2251,7 +4509,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2260,13 +4518,14 @@ "version_added": "79" } }, - "title": "CSSSkew.ax" + "title": "CSSSkew: ax property" } ], "dom-cssskew-ay": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkew.json", "name": "ay", @@ -2290,7 +4549,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2299,13 +4558,14 @@ "version_added": "79" } }, - "title": "CSSSkew.ay" + "title": "CSSSkew: ay property" } ], "cssskew": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkew.json", "name": "CSSSkew", @@ -2329,7 +4589,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2344,7 +4604,8 @@ "dom-cssskewx-cssskewx": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkewX.json", "name": "CSSSkewX", @@ -2368,7 +4629,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2377,13 +4638,14 @@ "version_added": "79" } }, - "title": "CSSSkewX()" + "title": "CSSSkewX: CSSSkewX() constructor" } ], "dom-cssskewx-ax": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkewX.json", "name": "ax", @@ -2407,7 +4669,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2416,13 +4678,14 @@ "version_added": "79" } }, - "title": "CSSSkewX.ax" + "title": "CSSSkewX: ax property" } ], "cssskewx": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkewX.json", "name": "CSSSkewX", @@ -2446,7 +4709,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2461,7 +4724,8 @@ "dom-cssskewy-cssskewy": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkewY.json", "name": "CSSSkewY", @@ -2485,7 +4749,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2494,13 +4758,14 @@ "version_added": "79" } }, - "title": "CSSSkewY()" + "title": "CSSSkewY: CSSSkewY() constructor" } ], "dom-cssskewy-ay": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkewY.json", "name": "ay", @@ -2524,7 +4789,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2533,13 +4798,14 @@ "version_added": "79" } }, - "title": "CSSSkewY.ay" + "title": "CSSSkewY: ay property" } ], "cssskewy": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSSkewY.json", "name": "CSSSkewY", @@ -2563,7 +4829,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2578,7 +4844,8 @@ "dom-cssstylerule-stylemap": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSStyleRule.json", "name": "styleMap", @@ -2602,7 +4869,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2611,19 +4878,20 @@ "version_added": "79" } }, - "title": "CSSStyleRule.styleMap" + "title": "CSSStyleRule: styleMap property" } ], "dom-cssstylevalue-parse": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSStyleValue.json", - "name": "parse", - "slug": "API/CSSStyleValue/parse", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parse", - "summary": "The parse() method of the CSSStyleValue interface sets a specific CSS property to the specified values and returns the first value as a CSSStyleValue object.", + "name": "parse_static", + "slug": "API/CSSStyleValue/parse_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parse_static", + "summary": "The parse() static method of the CSSStyleValue interface sets a specific CSS property to the specified values and returns the first value as a CSSStyleValue object.", "support": { "chrome": { "version_added": "66" @@ -2641,7 +4909,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2650,19 +4918,20 @@ "version_added": "79" } }, - "title": "CSSStyleValue.parse()" + "title": "CSSStyleValue: parse() static method" } ], "dom-cssstylevalue-parseall": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSStyleValue.json", - "name": "parseAll", - "slug": "API/CSSStyleValue/parseAll", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parseAll", - "summary": "The parseAll() method of the CSSStyleValue interface sets all occurrences of a specific CSS property to the specified value and returns an array of CSSStyleValue objects, each containing one of the supplied values.", + "name": "parseAll_static", + "slug": "API/CSSStyleValue/parseAll_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parseAll_static", + "summary": "The parseAll() static method of the CSSStyleValue interface sets all occurrences of a specific CSS property to the specified value and returns an array of CSSStyleValue objects, each containing one of the supplied values.", "support": { "chrome": { "version_added": "66" @@ -2680,7 +4949,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2689,13 +4958,14 @@ "version_added": "79" } }, - "title": "CSSStyleValue.parseAll()" + "title": "CSSStyleValue: parseAll() static method" } ], "stylevalue-objects": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSStyleValue.json", "name": "CSSStyleValue", @@ -2719,7 +4989,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2734,7 +5004,8 @@ "dom-csstransformcomponent-is2d": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformComponent.json", "name": "is2D", @@ -2758,7 +5029,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2767,13 +5038,14 @@ "version_added": "79" } }, - "title": "CSSTransformComponent.is2D" + "title": "CSSTransformComponent: is2D property" } ], "dom-csstransformcomponent-tomatrix": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformComponent.json", "name": "toMatrix", @@ -2797,7 +5069,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2806,13 +5078,14 @@ "version_added": "79" } }, - "title": "CSSTransformComponent.toMatrix()" + "title": "CSSTransformComponent: toMatrix() method" } ], "CSSTransformComponent-stringification-behavior": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformComponent.json", "name": "toString", @@ -2836,7 +5109,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2845,13 +5118,14 @@ "version_added": "79" } }, - "title": "CSSTransformComponent.toString()" + "title": "CSSTransformComponent: toString() method" } ], "csstransformcomponent": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformComponent.json", "name": "CSSTransformComponent", @@ -2875,7 +5149,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2890,7 +5164,8 @@ "dom-csstransformvalue-csstransformvalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformValue.json", "name": "CSSTransformValue", @@ -2914,7 +5189,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2923,13 +5198,14 @@ "version_added": "79" } }, - "title": "CSSTransformValue()" + "title": "CSSTransformValue: CSSTransformValue() constructor" } ], "dom-csstransformvalue-is2d": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformValue.json", "name": "is2D", @@ -2953,7 +5229,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2962,13 +5238,14 @@ "version_added": "79" } }, - "title": "CSSTransformValue.is2D" + "title": "CSSTransformValue: is2D property" } ], "dom-csstransformvalue-length": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformValue.json", "name": "length", @@ -2992,7 +5269,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3001,13 +5278,14 @@ "version_added": "79" } }, - "title": "CSSTransformValue.length" + "title": "CSSTransformValue: length property" } ], "dom-csstransformvalue-tomatrix": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformValue.json", "name": "toMatrix", @@ -3031,7 +5309,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3040,13 +5318,14 @@ "version_added": "79" } }, - "title": "CSSTransformValue.toMatrix()" + "title": "CSSTransformValue: toMatrix() method" } ], "transformvalue-objects": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTransformValue.json", "name": "CSSTransformValue", @@ -3070,7 +5349,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3085,7 +5364,8 @@ "dom-csstranslate-csstranslate": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTranslate.json", "name": "CSSTranslate", @@ -3109,7 +5389,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3118,13 +5398,14 @@ "version_added": "79" } }, - "title": "CSSTranslate()" + "title": "CSSTranslate: CSSTranslate() constructor" } ], "dom-csstranslate-x": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTranslate.json", "name": "x", @@ -3148,7 +5429,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3157,13 +5438,14 @@ "version_added": "79" } }, - "title": "CSSTranslate.x" + "title": "CSSTranslate: x property" } ], "dom-csstranslate-y": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTranslate.json", "name": "y", @@ -3187,7 +5469,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3196,13 +5478,14 @@ "version_added": "79" } }, - "title": "CSSTranslate.y" + "title": "CSSTranslate: y property" } ], "dom-csstranslate-z": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTranslate.json", "name": "z", @@ -3226,7 +5509,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3235,13 +5518,14 @@ "version_added": "79" } }, - "title": "CSSTranslate.z" + "title": "CSSTranslate: z property" } ], "csstranslate": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSTranslate.json", "name": "CSSTranslate", @@ -3265,7 +5549,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3280,7 +5564,8 @@ "dom-cssunitvalue-cssunitvalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnitValue.json", "name": "CSSUnitValue", @@ -3304,7 +5589,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3313,13 +5598,14 @@ "version_added": "79" } }, - "title": "CSSUnitValue()" + "title": "CSSUnitValue: CSSUnitValue() constructor" } ], "dom-cssunitvalue-unit": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnitValue.json", "name": "unit", @@ -3343,7 +5629,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3352,13 +5638,14 @@ "version_added": "79" } }, - "title": "CSSUnitValue.unit" + "title": "CSSUnitValue: unit property" } ], "dom-cssunitvalue-value": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnitValue.json", "name": "value", @@ -3382,7 +5669,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3391,13 +5678,14 @@ "version_added": "79" } }, - "title": "CSSUnitValue.value" + "title": "CSSUnitValue: value property" } ], "simple-numeric": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnitValue.json", "name": "CSSUnitValue", @@ -3421,7 +5709,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3436,7 +5724,8 @@ "dom-cssunparsedvalue-cssunparsedvalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnparsedValue.json", "name": "CSSUnparsedValue", @@ -3460,7 +5749,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3469,13 +5758,14 @@ "version_added": "79" } }, - "title": "CSSUnparsedValue()" + "title": "CSSUnparsedValue: CSSUnparsedValue() constructor" } ], "dom-cssunparsedvalue-length": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnparsedValue.json", "name": "length", @@ -3499,7 +5789,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3508,13 +5798,14 @@ "version_added": "79" } }, - "title": "CSSUnparsedValue.length" + "title": "CSSUnparsedValue: length property" } ], "cssunparsedvalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSUnparsedValue.json", "name": "CSSUnparsedValue", @@ -3538,7 +5829,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3553,7 +5844,8 @@ "dom-cssvariablereferencevalue-cssvariablereferencevalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSVariableReferenceValue.json", "name": "CSSVariableReferenceValue", @@ -3577,7 +5869,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3586,13 +5878,14 @@ "version_added": "79" } }, - "title": "CSSVariableReferenceValue()" + "title": "CSSVariableReferenceValue: CSSVariableReferenceValue() constructor" } ], "dom-cssvariablereferencevalue-fallback": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSVariableReferenceValue.json", "name": "fallback", @@ -3616,7 +5909,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3625,13 +5918,14 @@ "version_added": "79" } }, - "title": "CSSVariableReferenceValue.fallback" + "title": "CSSVariableReferenceValue: fallback property" } ], "dom-cssvariablereferencevalue-variable": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSVariableReferenceValue.json", "name": "variable", @@ -3655,7 +5949,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3664,13 +5958,14 @@ "version_added": "79" } }, - "title": "CSSVariableReferenceValue.variable" + "title": "CSSVariableReferenceValue: variable property" } ], "cssvariablereferencevalue": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/CSSVariableReferenceValue.json", "name": "CSSVariableReferenceValue", @@ -3694,7 +5989,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3709,7 +6004,8 @@ "dom-element-computedstylemap": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Element.json", "name": "computedStyleMap", @@ -3733,7 +6029,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3742,13 +6038,14 @@ "version_added": "79" } }, - "title": "Element.computedStyleMap()" + "title": "Element: computedStyleMap() method" } ], "dom-stylepropertymap-append": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMap.json", "name": "append", @@ -3772,7 +6069,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3781,13 +6078,14 @@ "version_added": "79" } }, - "title": "StylePropertyMap.append()" + "title": "StylePropertyMap: append() method" } ], "dom-stylepropertymap-clear": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMap.json", "name": "clear", @@ -3811,7 +6109,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3820,13 +6118,14 @@ "version_added": "79" } }, - "title": "StylePropertyMap.clear()" + "title": "StylePropertyMap: clear() method" } ], "dom-stylepropertymap-delete": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMap.json", "name": "delete", @@ -3850,7 +6149,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3859,13 +6158,14 @@ "version_added": "79" } }, - "title": "StylePropertyMap.delete()" + "title": "StylePropertyMap: delete() method" } ], "dom-stylepropertymap-set": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMap.json", "name": "set", @@ -3889,7 +6189,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3898,13 +6198,14 @@ "version_added": "79" } }, - "title": "StylePropertyMap.set()" + "title": "StylePropertyMap: set() method" } ], "the-stylepropertymap": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMap.json", "name": "StylePropertyMap", @@ -3928,7 +6229,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3941,7 +6242,8 @@ }, { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMapReadOnly.json", "name": "StylePropertyMapReadOnly", @@ -3965,7 +6267,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3980,7 +6282,8 @@ "dom-stylepropertymapreadonly-get": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMapReadOnly.json", "name": "get", @@ -4004,7 +6307,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -4013,13 +6316,14 @@ "version_added": "79" } }, - "title": "StylePropertyMapReadOnly.get()" + "title": "StylePropertyMapReadOnly: get() method" } ], "dom-stylepropertymapreadonly-getall": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMapReadOnly.json", "name": "getAll", @@ -4043,7 +6347,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -4052,13 +6356,14 @@ "version_added": "79" } }, - "title": "StylePropertyMapReadOnly.getAll()" + "title": "StylePropertyMapReadOnly: getAll() method" } ], "dom-stylepropertymapreadonly-has": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMapReadOnly.json", "name": "has", @@ -4082,7 +6387,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -4091,13 +6396,14 @@ "version_added": "79" } }, - "title": "StylePropertyMapReadOnly.has()" + "title": "StylePropertyMapReadOnly: has() method" } ], "dom-stylepropertymapreadonly-size": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/StylePropertyMapReadOnly.json", "name": "size", @@ -4121,7 +6427,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -4130,7 +6436,7 @@ "version_added": "79" } }, - "title": "StylePropertyMapReadOnly.size" + "title": "StylePropertyMapReadOnly: size property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/css-ui.json b/bikeshed/spec-data/readonly/mdn/css-ui.json index 339ad5e1b7..2446890a43 100644 --- a/bikeshed/spec-data/readonly/mdn/css-ui.json +++ b/bikeshed/spec-data/readonly/mdn/css-ui.json @@ -216,9 +216,7 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -496,17 +494,29 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/outline", "summary": "The outline CSS shorthand property sets most of the outline properties in a single declaration.", "support": { - "chrome": { - "version_added": "1", - "notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>." - }, + "chrome": [ + { + "version_added": "94" + }, + { + "version_added": "1", + "version_removed": "94", + "partial_implementation": true, + "notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>." + } + ], "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": false }, "firefox": [ + { + "version_added": "88" + }, { "version_added": "1.5", + "version_removed": "88", + "partial_implementation": true, "notes": "Before Firefox 88, <code>outline</code> does not follow the shape of <code>border-radius</code>." }, { @@ -520,31 +530,106 @@ "version_added": "8" }, "oculus": "mirror", - "opera": { - "version_added": "7", - "notes": "Before Opera 80, <code>outline</code> does not follow the shape of <code>border-radius</code>." - }, + "opera": [ + { + "version_added": "80" + }, + { + "version_added": "7", + "version_removed": "80", + "partial_implementation": true, + "notes": "Before Opera 80, <code>outline</code> does not follow the shape of <code>border-radius</code>." + } + ], "opera_android": { "version_added": "10.1" }, - "safari": { - "version_added": "1.2", - "notes": "<code>outline</code> does not follow the shape of <code>border-radius</code>. See <a href='https://webkit.org/b/231433'>bug 231433</a>." - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "1.2", + "version_removed": "16.4", + "partial_implementation": true, + "notes": "Before Safari 16.4, <code>outline</code> does not follow the shape of <code>border-radius</code>. See <a href='https://webkit.org/b/20807'>bug 20807</a>." + } + ], "safari_ios": "mirror", "samsunginternet_android": { "version_added": "1.0" }, + "webview_android": [ + { + "version_added": "94" + }, + { + "version_added": "1", + "version_removed": "94", + "partial_implementation": true, + "notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>." + } + ], + "edge_blink": [ + { + "version_added": "94" + }, + { + "version_added": false, + "version_removed": "94", + "partial_implementation": true, + "notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>." + } + ] + }, + "title": "outline" + } + ], + "pointer-events-control": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/pointer-events.json", + "name": "pointer-events", + "slug": "CSS/pointer-events", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events", + "summary": "The pointer-events CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "11" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": "mirror", + "safari": { + "version_added": "4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", "webview_android": { - "version_added": "1", - "notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>." + "version_added": "2" }, "edge_blink": { - "version_added": "79", - "notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>." + "version_added": "79" } }, - "title": "outline" + "title": "pointer-events" } ], "resize": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-values.json b/bikeshed/spec-data/readonly/mdn/css-values.json index c635cf5774..74d7c569ef 100644 --- a/bikeshed/spec-data/readonly/mdn/css-values.json +++ b/bikeshed/spec-data/readonly/mdn/css-values.json @@ -10,7 +10,7 @@ "name": "calc", "slug": "CSS/calc()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/calc()", - "summary": "The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used anywhere a <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> is allowed.", + "summary": "The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used with <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> values.", "support": { "chrome": { "version_added": "66" @@ -267,7 +267,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/tab-size.json", "name": "length", @@ -291,7 +292,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -431,12 +432,10 @@ "trig-funcs": [ { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/acos.json", "name": "acos", "slug": "CSS/acos", @@ -444,19 +443,12 @@ "summary": "The acos() CSS function is a trigonometric function that returns the inverse cosine of a number between -1 and 1. The function contains a single calculation that returns the number of radians representing an <angle> between 0deg and 180deg.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -472,19 +464,17 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "acos()" }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/asin.json", "name": "asin", "slug": "CSS/asin", @@ -492,19 +482,12 @@ "summary": "The asin() CSS function is a trigonometric function that returns the inverse sine of a number between -1 and 1. The function contains a single calculation that returns the number of radians representing an <angle> between -90deg and 90deg.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -520,19 +503,17 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "asin()" }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/atan.json", "name": "atan", "slug": "CSS/atan", @@ -540,19 +521,12 @@ "summary": "The atan() CSS function is a trigonometric function that returns the inverse tangent of a number between -∞ and +∞. The function contains a single calculation that returns the number of radians representing an <angle> between -90deg and 90deg.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -568,19 +542,17 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "atan()" }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/atan2.json", "name": "atan2", "slug": "CSS/atan2", @@ -588,19 +560,12 @@ "summary": "The atan2() CSS function is a trigonometric function that returns the inverse tangent of two values between -infinity and infinity. The function accepts two arguments and returns the number of radians representing an <angle> between -180deg and 180deg.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -616,19 +581,17 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "atan2()" }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/cos.json", "name": "cos", "slug": "CSS/cos", @@ -636,19 +599,12 @@ "summary": "The cos() CSS function is a trigonometric function that returns the cosine of a number, which is a value between -1 and 1. The function contains a single calculation that must resolve to either a <number> or an <angle> by interpreting the result of the argument as radians. That is, cos(45deg), cos(0.125turn), and cos(3.14159 / 4) all represent the same value, approximately 0.707.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -664,19 +620,17 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "cos()" }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/sin.json", "name": "sin", "slug": "CSS/sin", @@ -684,19 +638,12 @@ "summary": "The sin() CSS function is a trigonometric function that returns the sine of a number, which is a value between -1 and 1. The function contains a single calculation that must resolve to either a <number> or an <angle> by interpreting the result of the argument as radians. That is, sin(45deg), sin(0.125turn), and sin(3.14159 / 4) all represent the same value, approximately 0.707.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -712,19 +659,17 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "sin()" }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/tan.json", "name": "tan", "slug": "CSS/tan", @@ -732,19 +677,12 @@ "summary": "The tan() CSS function is a trigonometric function that returns the tangent of a number, which is a value between −infinity and infinity. The function contains a single calculation that must resolve to either a <number> or an <angle> by interpreting the result of the argument as radians.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -760,7 +698,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, "title": "tan()" @@ -989,32 +927,23 @@ "calc-constants": [ { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "css/types/calc-constant.json", "name": "calc-constant", "slug": "CSS/calc-constant", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/calc-constant", - "summary": "The <calc-constant> CSS data type represents well-defined constants such as e and π. Rather than require authors to manually type out several digits of these mathematical constants or calculate them, a few of them are provided directly by CSS for convenience.", + "summary": "The <calc-constant> CSS data type represents well-defined constants such as e and pi. Rather than require authors to manually type out several digits of these mathematical constants or calculate them, a few of them are provided directly by CSS for convenience.", "support": { "chrome": { - "version_added": false + "version_added": "99" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", - "flags": [ - { - "type": "preference", - "name": "layout.css.trig.enabled", - "value_to_set": "true" - } - ] + "version_added": "108" }, "firefox_android": "mirror", "ie": { @@ -1030,7 +959,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "99" } }, "title": "<calc-constant>" @@ -1047,7 +976,7 @@ "name": "calc", "slug": "CSS/calc", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/calc", - "summary": "The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used anywhere a <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> is allowed.", + "summary": "The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used with <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> values.", "support": { "chrome": [ { @@ -1175,6 +1104,7 @@ "exponent-funcs": [ { "engines": [ + "gecko", "webkit" ], "filename": "css/types/exp.json", @@ -1189,7 +1119,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "112" }, "firefox_android": "mirror", "ie": { @@ -1212,6 +1142,7 @@ }, { "engines": [ + "gecko", "webkit" ], "filename": "css/types/hypot.json", @@ -1226,7 +1157,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "112" }, "firefox_android": "mirror", "ie": { @@ -1249,6 +1180,7 @@ }, { "engines": [ + "gecko", "webkit" ], "filename": "css/types/log.json", @@ -1263,7 +1195,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "112" }, "firefox_android": "mirror", "ie": { @@ -1286,6 +1218,7 @@ }, { "engines": [ + "gecko", "webkit" ], "filename": "css/types/pow.json", @@ -1300,7 +1233,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "112" }, "firefox_android": "mirror", "ie": { @@ -1323,6 +1256,7 @@ }, { "engines": [ + "gecko", "webkit" ], "filename": "css/types/sqrt.json", @@ -1337,7 +1271,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "112" }, "firefox_android": "mirror", "ie": { @@ -1446,6 +1380,56 @@ "title": "<integer>" } ], + "funcdef-mod": [ + { + "engines": [ + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/types/mod.json", + "name": "mod", + "slug": "CSS/mod", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/mod", + "summary": "The mod() CSS function returns a modulus left over when the first parameter is divided by the second parameter, similar to the JavaScript remainder operator (%). The modulus is the value left over when one operand, the dividend, is divided by a second operand, the divisor. It always takes the sign of the divisor.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "109", + "flags": [ + { + "type": "preference", + "name": "layout.css.mod-rem.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "mod()" + } + ], "numbers": [ { "engines": [ @@ -1589,6 +1573,56 @@ "title": "<position>" } ], + "funcdef-rem": [ + { + "engines": [ + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/types/rem.json", + "name": "rem", + "slug": "CSS/rem", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/rem", + "summary": "The rem() CSS function returns a remainder left over when the first parameter is divided by the second parameter, similar to the JavaScript remainder operator (%). The remainder is the value left over when one operand, the dividend, is divided by a second operand, the divisor. It always takes the sign of the dividend.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "109", + "flags": [ + { + "type": "preference", + "name": "layout.css.mod-rem.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "rem()" + } + ], "resolution": [ { "engines": [ @@ -1643,6 +1677,58 @@ "title": "<resolution>" } ], + "funcdef-round": [ + { + "engines": [ + "gecko", + "webkit" + ], + "filename": "css/types/round.json", + "name": "round", + "slug": "CSS/round", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/round", + "summary": "The round() CSS function returns a rounded number based on a selected rounding strategy.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "preview" + }, + { + "version_added": "108", + "flags": [ + { + "type": "preference", + "name": "layout.css.round.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "round()" + } + ], "strings": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/css-view-transitions.json b/bikeshed/spec-data/readonly/mdn/css-view-transitions.json new file mode 100644 index 0000000000..b3a7fd9597 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/css-view-transitions.json @@ -0,0 +1,470 @@ +{ + "dom-document-startviewtransition": [ + { + "engines": [ + "blink" + ], + "filename": "api/Document.json", + "name": "startViewTransition", + "slug": "API/Document/startViewTransition", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/startViewTransition", + "summary": "The startViewTransition() method of the View Transitions API starts a new view transition and returns a ViewTransition object to represent it.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "Document: startViewTransition() method" + } + ], + "dom-viewtransition-finished": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTransition.json", + "name": "finished", + "slug": "API/ViewTransition/finished", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition/finished", + "summary": "The finished read-only property of the ViewTransition interface is a Promise that fulfills once the transition animation is finished, and the new page view is visible and interactive to the user.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ViewTransition: finished property" + } + ], + "dom-viewtransition-ready": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTransition.json", + "name": "ready", + "slug": "API/ViewTransition/ready", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition/ready", + "summary": "The ready read-only property of the ViewTransition interface is a Promise that fulfills once the pseudo-element tree is created and the transition animation is about to start.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ViewTransition: ready property" + } + ], + "dom-viewtransition-skiptransition": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTransition.json", + "name": "skipTransition", + "slug": "API/ViewTransition/skipTransition", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition/skipTransition", + "summary": "The skipTransition() method of the ViewTransition interface skips the animation part of the view transition, but doesn't skip running the document.startViewTransition() callback that updates the DOM.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ViewTransition: skipTransition() method" + } + ], + "dom-viewtransition-updatecallbackdone": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTransition.json", + "name": "updateCallbackDone", + "slug": "API/ViewTransition/updateCallbackDone", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition/updateCallbackDone", + "summary": "The updateCallbackDone read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the document.startViewTransition()'s callback fulfills, or rejects when it rejects.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ViewTransition: updateCallbackDone property" + } + ], + "viewtransition": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTransition.json", + "name": "ViewTransition", + "slug": "API/ViewTransition", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition", + "summary": "The ViewTransition interface of the View Transitions API represents a view transition, and provides functionality to react to the transition reaching different states (e.g. ready to run the animation, or animation finished) or skip the transition altogether.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ViewTransition" + } + ], + "view-transition-name-prop": [ + { + "engines": [ + "blink" + ], + "filename": "css/properties/view-transition-name.json", + "name": "view-transition-name", + "slug": "CSS/view-transition-name", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/view-transition-name", + "summary": "The view-transition-name CSS property provides the selected element with a distinct identifying name (a <custom-ident>) and causes it to participate in a separate view transition from the root view transition — or no view transition if the none value is specified.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "view-transition-name" + } + ], + "::view-transition-group": [ + { + "engines": [ + "blink" + ], + "filename": "css/selectors/view-transition-group.json", + "name": "view-transition-group", + "slug": "CSS/::view-transition-group", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::view-transition-group", + "summary": "The ::view-transition-group CSS pseudo-element represents a single view transition group.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "::view-transition-group" + } + ], + "::view-transition-image-pair": [ + { + "engines": [ + "blink" + ], + "filename": "css/selectors/view-transition-image-pair.json", + "name": "view-transition-image-pair", + "slug": "CSS/::view-transition-image-pair", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::view-transition-image-pair", + "summary": "The ::view-transition-image-pair CSS pseudo-element represents a container for a view transition's \"old\" and \"new\" view states — before and after the transition.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "::view-transition-image-pair" + } + ], + "::view-transition-new": [ + { + "engines": [ + "blink" + ], + "filename": "css/selectors/view-transition-new.json", + "name": "view-transition-new", + "slug": "CSS/::view-transition-new", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::view-transition-new", + "summary": "The ::view-transition-new CSS pseudo-element represents the \"new\" view state of a view transition — a live representation of the new view, after the transition.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "::view-transition-new" + } + ], + "::view-transition-old": [ + { + "engines": [ + "blink" + ], + "filename": "css/selectors/view-transition-old.json", + "name": "view-transition-old", + "slug": "CSS/::view-transition-old", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::view-transition-old", + "summary": "The ::view-transition-old CSS pseudo-element represents the \"old\" view state of a view transition — a static screenshot of the old view, before the transition.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "::view-transition-old" + } + ], + "selectordef-view-transition": [ + { + "engines": [ + "blink" + ], + "filename": "css/selectors/view-transition.json", + "name": "view-transition", + "slug": "CSS/::view-transition", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::view-transition", + "summary": "The ::view-transition CSS pseudo-element represents the root of the view transitions overlay, which contains all view transitions and sits over the top of all other page content.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "::view-transition" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/css-writing-modes.json b/bikeshed/spec-data/readonly/mdn/css-writing-modes.json index 77c7277bb3..b179c425b1 100644 --- a/bikeshed/spec-data/readonly/mdn/css-writing-modes.json +++ b/bikeshed/spec-data/readonly/mdn/css-writing-modes.json @@ -88,9 +88,6 @@ "gecko", "webkit" ], - "altname": [ - "webkit" - ], "filename": "css/properties/text-combine-upright.json", "name": "text-combine-upright", "slug": "CSS/text-combine-upright", @@ -124,23 +121,18 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "partial_implementation": true, - "alternative_name": "-webkit-text-combine", - "version_added": "5.1", - "notes": "This property was initially named <code>-webkit-text-combine</code> according to a <a href='https://www.w3.org/TR/2011/WD-css3-writing-modes-20110531/#text-combine'>2011 version of the CSS3 Writing Modes specification</a>, supporting the values <code>none</code> and <code>horizontal</code> without <code>digits</code>." - }, - "safari_ios": [ + "safari": [ { "version_added": "15.4" }, { "partial_implementation": true, "alternative_name": "-webkit-text-combine", - "version_added": "5", + "version_added": "5.1", "notes": "This property was initially named <code>-webkit-text-combine</code> according to a <a href='https://www.w3.org/TR/2011/WD-css3-writing-modes-20110531/#text-combine'>2011 version of the CSS3 Writing Modes specification</a>, supporting the values <code>none</code> and <code>horizontal</code> without <code>digits</code>." } ], + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": [ { @@ -408,7 +400,7 @@ "name": "writing-mode", "slug": "SVG/Attribute/writing-mode", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/writing-mode", - "summary": "The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, <altGlyph> and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)", + "summary": "The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)", "support": { "chrome": { "version_added": null diff --git a/bikeshed/spec-data/readonly/mdn/css2.json b/bikeshed/spec-data/readonly/mdn/css2.json index b045e33210..068cc1507d 100644 --- a/bikeshed/spec-data/readonly/mdn/css2.json +++ b/bikeshed/spec-data/readonly/mdn/css2.json @@ -152,6 +152,53 @@ "title": "border-spacing" } ], + "propdef-caption-side": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "css/properties/caption-side.json", + "name": "caption-side", + "slug": "CSS/caption-side", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/caption-side", + "summary": "The caption-side CSS property puts the content of a table's <caption> on the specified side. The values are relative to the writing-mode of the table.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "8" + }, + "oculus": "mirror", + "opera": { + "version_added": "4" + }, + "opera_android": "mirror", + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "caption-side" + } + ], "propdef-clear": [ { "engines": [ @@ -389,58 +436,6 @@ "title": "vertical-align" } ], - "visibility": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "css/properties/visibility.json", - "name": "visibility", - "slug": "CSS/visibility", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/visibility", - "summary": "The visibility CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a <table>.", - "support": { - "chrome": { - "version_added": "1" - }, - "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "1" - }, - "firefox_android": "mirror", - "ie": { - "version_added": "4", - "notes": [ - "Internet Explorer doesn't support <code>visibility: initial</code>.", - "Internet Explorer doesn't support <code>visibility: unset</code>.", - "Up to Internet Explorer 7, descendants of <code>hidden</code> elements will still be invisible even if they have <code>visibility</code> set to <code>visible</code>." - ] - }, - "oculus": "mirror", - "opera": { - "version_added": "4" - }, - "opera_android": { - "version_added": "10.1" - }, - "safari": { - "version_added": "1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "visibility" - } - ], "z-index": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/cssom-view.json b/bikeshed/spec-data/readonly/mdn/cssom-view.json index 03de155cac..e305ba09ad 100644 --- a/bikeshed/spec-data/readonly/mdn/cssom-view.json +++ b/bikeshed/spec-data/readonly/mdn/cssom-view.json @@ -47,7 +47,7 @@ "name": "caretPositionFromPoint", "slug": "API/Document/caretPositionFromPoint", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/caretPositionFromPoint", - "summary": "The caretPositionFromPoint() property of the Document interface returns a CaretPosition object, containing the DOM node, along with the caret and caret's character offset within that node.", + "summary": "The caretPositionFromPoint() method of the Document interface returns a CaretPosition object, containing the DOM node, along with the caret and caret's character offset within that node.", "support": { "chrome": { "version_added": false @@ -74,7 +74,7 @@ "version_added": false } }, - "title": "Document.caretPositionFromPoint()" + "title": "Document: caretPositionFromPoint() method" } ], "dom-document-elementfrompoint": [ @@ -132,7 +132,7 @@ "feature": "element-from-point", "title": "document.elementFromPoint()" }, - "title": "Document.elementFromPoint()" + "title": "Document: elementFromPoint() method" } ], "dom-document-elementsfrompoint": [ @@ -183,7 +183,7 @@ "notes": "Before Chrome 66, this method returned <code>null</code> when the element was a child of a host node. See <a href='https://crbug.com/759947'>issue 759947</a>." } }, - "title": "Document.elementsFromPoint()" + "title": "Document: elementsFromPoint() method" } ], "eventdef-document-scroll": [ @@ -197,7 +197,7 @@ "name": "scroll_event", "slug": "API/Document/scroll_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/scroll_event", - "summary": "The scroll event fires when the document view has been scrolled. For element scrolling, see Element: scroll event.", + "summary": "The scroll event fires when the document view has been scrolled. To detect when scrolling has completed, see the Document: scrollend event. For element scrolling, see Element: scroll event.", "support": { "chrome": { "version_added": "1" @@ -242,7 +242,7 @@ "name": "scroll_event", "slug": "API/Element/scroll_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scroll_event", - "summary": "The scroll event fires when an element has been scrolled.", + "summary": "The scroll event fires when an element has been scrolled. To detect when scrolling has completed, see the Element: scrollend event.", "support": { "chrome": { "version_added": "1" @@ -337,6 +337,84 @@ "title": "VisualViewport: scroll event" } ], + "eventdef-document-scrollend": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/Document.json", + "name": "scrollend_event", + "slug": "API/Document/scrollend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/scrollend_event", + "summary": "The scrollend event fires when the document view has completed scrolling. Scrolling is considered completed when the scroll position has no more pending updates and the user has completed their gesture.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "109" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "Document: scrollend event" + }, + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/Element.json", + "name": "scrollend_event", + "slug": "API/Element/scrollend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollend_event", + "summary": "The scrollend event fires when element scrolling has completed. Scrolling is considered completed when the scroll position has no more pending updates and the user has completed their gesture.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "109" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "Element: scrollend event" + } + ], "dom-document-scrollingelement": [ { "engines": [ @@ -381,7 +459,7 @@ "feature": "document-scrollingelement", "title": "document.scrollingElement" }, - "title": "Document.scrollingElement" + "title": "Document: scrollingElement property" } ], "extensions-to-the-document-interface": [ @@ -479,7 +557,7 @@ "version_added": "79" } }, - "title": "Element.clientHeight" + "title": "Element: clientHeight property" } ], "dom-element-clientleft": [ @@ -528,7 +606,7 @@ "version_added": "79" } }, - "title": "Element.clientLeft" + "title": "Element: clientLeft property" } ], "dom-element-clienttop": [ @@ -577,7 +655,7 @@ "version_added": "79" } }, - "title": "Element.clientTop" + "title": "Element: clientTop property" } ], "dom-element-clientwidth": [ @@ -626,7 +704,7 @@ "version_added": "79" } }, - "title": "Element.clientWidth" + "title": "Element: clientWidth property" } ], "dom-element-getboundingclientrect": [ @@ -682,7 +760,7 @@ "feature": "getboundingclientrect", "title": "Element.getBoundingClientRect()" }, - "title": "Element.getBoundingClientRect()" + "title": "Element: getBoundingClientRect() method" } ], "dom-element-getclientrects": [ @@ -731,7 +809,7 @@ "version_added": "79" } }, - "title": "Element.getClientRects()" + "title": "Element: getClientRects() method" } ], "dom-element-scroll": [ @@ -772,7 +850,7 @@ "version_added": "79" } }, - "title": "Element.scroll()" + "title": "Element: scroll() method" } ], "dom-element-scrollby": [ @@ -813,7 +891,7 @@ "version_added": "79" } }, - "title": "Element.scrollBy()" + "title": "Element: scrollBy() method" } ], "dom-element-scrollheight": [ @@ -869,7 +947,7 @@ "version_added": "79" } }, - "title": "Element.scrollHeight" + "title": "Element: scrollHeight property" } ], "dom-element-scrollintoview": [ @@ -935,7 +1013,7 @@ "feature": "scrollintoview", "title": "scrollIntoView" }, - "title": "Element.scrollIntoView()" + "title": "Element: scrollIntoView() method" } ], "dom-element-scrollleft": [ @@ -951,13 +1029,19 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollLeft", "summary": "The Element.scrollLeft property gets or sets the number of pixels that an element's content is scrolled from its left edge.", "support": { - "chrome": { - "version_added": "1", - "notes": "For right-to-left elements, this property uses 0-100 (most left to most right) instead of negative values. See <a href='https://crbug.com/721759'>bug 721759</a>." - }, + "chrome": [ + { + "version_added": "86" + }, + { + "version_added": "1", + "version_removed": "86", + "notes": "For right-to-left elements, this property uses 0-100 (most left to most right) instead of negative values. See <a href='https://crbug.com/721759'>bug 721759</a>." + } + ], "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": false }, "firefox": { "version_added": "1" @@ -980,12 +1064,18 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "79", - "notes": "For right-to-left elements, this property uses 0-100 (most left to most right) instead of negative values. See <a href='https://crbug.com/721759'>bug 721759</a>." - } + "edge_blink": [ + { + "version_added": "86" + }, + { + "version_added": false, + "version_removed": "86", + "notes": "For right-to-left elements, this property uses 0-100 (most left to most right) instead of negative values. See <a href='https://crbug.com/721759'>bug 721759</a>." + } + ] }, - "title": "Element.scrollLeft" + "title": "Element: scrollLeft property" } ], "dom-element-scrollto": [ @@ -1026,7 +1116,7 @@ "version_added": "79" } }, - "title": "Element.scrollTo()" + "title": "Element: scrollTo() method" } ], "dom-element-scrolltop": [ @@ -1073,7 +1163,7 @@ "version_added": "79" } }, - "title": "Element.scrollTop" + "title": "Element: scrollTop property" } ], "dom-element-scrollwidth": [ @@ -1121,7 +1211,7 @@ "version_added": "79" } }, - "title": "Element.scrollWidth" + "title": "Element: scrollWidth property" } ], "extension-to-the-element-interface": [ @@ -1223,7 +1313,7 @@ "version_added": "79" } }, - "title": "HTMLElement.offsetHeight" + "title": "HTMLElement: offsetHeight property" } ], "dom-htmlelement-offsetleft": [ @@ -1272,7 +1362,7 @@ "version_added": "79" } }, - "title": "HTMLElement.offsetLeft" + "title": "HTMLElement: offsetLeft property" } ], "dom-htmlelement-offsetparent": [ @@ -1321,7 +1411,7 @@ "version_added": "79" } }, - "title": "HTMLElement.offsetParent" + "title": "HTMLElement: offsetParent property" } ], "dom-htmlelement-offsettop": [ @@ -1370,7 +1460,7 @@ "version_added": "79" } }, - "title": "HTMLElement.offsetTop" + "title": "HTMLElement: offsetTop property" } ], "dom-htmlelement-offsetwidth": [ @@ -1419,7 +1509,7 @@ "version_added": "79" } }, - "title": "HTMLElement.offsetWidth" + "title": "HTMLElement: offsetWidth property" } ], "dom-htmlimageelement-x": [ @@ -1474,7 +1564,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.x" + "title": "HTMLImageElement: x property" } ], "dom-htmlimageelement-y": [ @@ -1529,7 +1619,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.y" + "title": "HTMLImageElement: y property" } ], "dom-mediaquerylist-onchange": [ @@ -1619,7 +1709,7 @@ "version_added": "79" } }, - "title": "MediaQueryList.matches" + "title": "MediaQueryList: matches property" } ], "dom-mediaquerylist-media": [ @@ -1668,7 +1758,7 @@ "version_added": "79" } }, - "title": "MediaQueryList.media" + "title": "MediaQueryList: media property" } ], "the-mediaquerylist-interface": [ @@ -1797,7 +1887,7 @@ "version_added": "79" } }, - "title": "MediaQueryListEvent()" + "title": "MediaQueryListEvent: MediaQueryListEvent() constructor" } ], "dom-mediaquerylistevent-matches": [ @@ -1838,7 +1928,7 @@ "version_added": "79" } }, - "title": "MediaQueryListEvent.matches" + "title": "MediaQueryListEvent: matches property" } ], "dom-mediaquerylistevent-media": [ @@ -1879,7 +1969,7 @@ "version_added": "79" } }, - "title": "MediaQueryListEvent.media" + "title": "MediaQueryListEvent: media property" } ], "dom-mouseevent-offsetx": [ @@ -1930,7 +2020,7 @@ "version_added": "79" } }, - "title": "MouseEvent.offsetX" + "title": "MouseEvent: offsetX property" } ], "dom-mouseevent-offsety": [ @@ -1981,7 +2071,7 @@ "version_added": "79" } }, - "title": "MouseEvent.offsetY" + "title": "MouseEvent: offsetY property" } ], "dom-mouseevent-pagex": [ @@ -2030,7 +2120,7 @@ "version_added": "79" } }, - "title": "MouseEvent.pageX" + "title": "MouseEvent: pageX property" } ], "dom-mouseevent-pagey": [ @@ -2079,7 +2169,7 @@ "version_added": "79" } }, - "title": "MouseEvent.pageY" + "title": "MouseEvent: pageY property" } ], "dom-mouseevent-x": [ @@ -2128,7 +2218,7 @@ "version_added": "79" } }, - "title": "MouseEvent.x" + "title": "MouseEvent: x property" } ], "dom-mouseevent-y": [ @@ -2177,7 +2267,7 @@ "version_added": "79" } }, - "title": "MouseEvent.y" + "title": "MouseEvent: y property" } ], "extensions-to-the-mouseevent-interface": [ @@ -2275,7 +2365,7 @@ "version_added": "79" } }, - "title": "Range.getBoundingClientRect()" + "title": "Range: getBoundingClientRect() method" } ], "dom-range-getclientrects": [ @@ -2326,7 +2416,7 @@ "version_added": "79" } }, - "title": "Range.getClientRects()" + "title": "Range: getClientRects() method" } ], "extensions-to-the-range-interface": [ @@ -2421,7 +2511,7 @@ "version_added": "79" } }, - "title": "Screen.availHeight" + "title": "Screen: availHeight property" } ], "dom-screen-availwidth": [ @@ -2468,7 +2558,7 @@ "version_added": "79" } }, - "title": "Screen.availWidth" + "title": "Screen: availWidth property" } ], "dom-screen-colordepth": [ @@ -2520,7 +2610,7 @@ "notes": "Starting with version 59 this property is no longer required to always return 24." } }, - "title": "Screen.colorDepth" + "title": "Screen: colorDepth property" } ], "dom-screen-height": [ @@ -2567,7 +2657,7 @@ "version_added": "79" } }, - "title": "Screen.height" + "title": "Screen: height property" } ], "dom-screen-pixeldepth": [ @@ -2619,7 +2709,7 @@ "notes": "Starting with version 59 this property is no longer required to always return 24." } }, - "title": "Screen.pixelDepth" + "title": "Screen: pixelDepth property" } ], "dom-screen-width": [ @@ -2666,7 +2756,7 @@ "version_added": "79" } }, - "title": "Screen.width" + "title": "Screen: width property" } ], "the-screen-interface": [ @@ -2756,7 +2846,7 @@ "version_added": "79" } }, - "title": "VisualViewport.height" + "title": "VisualViewport: height property" } ], "dom-visualviewport-offsetleft": [ @@ -2799,7 +2889,7 @@ "version_added": "79" } }, - "title": "VisualViewport.offsetleft" + "title": "VisualViewport: offsetLeft property" } ], "dom-visualviewport-offsettop": [ @@ -2842,7 +2932,7 @@ "version_added": "79" } }, - "title": "VisualViewport.offsetTop" + "title": "VisualViewport: offsetTop property" } ], "dom-visualviewport-pageleft": [ @@ -2885,7 +2975,7 @@ "version_added": "79" } }, - "title": "VisualViewport.pageLeft" + "title": "VisualViewport: pageLeft property" } ], "dom-visualviewport-pagetop": [ @@ -2928,7 +3018,7 @@ "version_added": "79" } }, - "title": "VisualViewport.pageTop" + "title": "VisualViewport: pageTop property" } ], "eventdef-window-resize": [ @@ -3032,7 +3122,7 @@ "version_added": "79" } }, - "title": "VisualViewport.scale" + "title": "VisualViewport: scale property" } ], "dom-visualviewport-width": [ @@ -3075,7 +3165,7 @@ "version_added": "79" } }, - "title": "VisualViewport.width" + "title": "VisualViewport: width property" } ], "the-visualviewport-interface": [ @@ -3171,7 +3261,7 @@ "feature": "devicepixelratio", "title": "Window.devicePixelRatio" }, - "title": "Window.devicePixelRatio" + "title": "Window: devicePixelRatio property" } ], "dom-window-innerheight": [ @@ -3225,7 +3315,7 @@ "version_added": "79" } }, - "title": "Window.innerHeight" + "title": "Window: innerHeight property" } ], "dom-window-innerwidth": [ @@ -3279,7 +3369,7 @@ "version_added": "79" } }, - "title": "Window.innerWidth" + "title": "Window: innerWidth property" } ], "dom-window-matchmedia": [ @@ -3332,7 +3422,7 @@ "feature": "matchmedia", "title": "matchMedia" }, - "title": "Window.matchMedia()" + "title": "Window: matchMedia() method" } ], "dom-window-moveby": [ @@ -3379,7 +3469,7 @@ "version_added": "79" } }, - "title": "Window.moveBy()" + "title": "Window: moveBy() method" } ], "dom-window-moveto": [ @@ -3426,7 +3516,7 @@ "version_added": "79" } }, - "title": "Window.moveTo()" + "title": "Window: moveTo() method" } ], "the-features-argument-to-the-open()-method": [ @@ -3473,7 +3563,7 @@ "version_added": "79" } }, - "title": "Window.open()" + "title": "Window: open() method" } ], "dom-window-outerheight": [ @@ -3522,7 +3612,7 @@ "version_added": "79" } }, - "title": "Window.outerHeight" + "title": "Window: outerHeight property" } ], "dom-window-outerwidth": [ @@ -3571,7 +3661,7 @@ "version_added": "79" } }, - "title": "Window.outerWidth" + "title": "Window: outerWidth property" } ], "dom-window-pagexoffset": [ @@ -3618,7 +3708,7 @@ "version_added": "79" } }, - "title": "Window.pageXOffset" + "title": "Window: pageXOffset property" } ], "dom-window-pageyoffset": [ @@ -3665,7 +3755,7 @@ "version_added": "79" } }, - "title": "Window.pageYOffset" + "title": "Window: pageYOffset property" } ], "resizing-viewports": [ @@ -3770,7 +3860,7 @@ "version_added": "79" } }, - "title": "Window.resizeBy()" + "title": "Window: resizeBy() method" } ], "dom-window-resizeto": [ @@ -3820,7 +3910,7 @@ "version_added": "79" } }, - "title": "Window.resizeTo()" + "title": "Window: resizeTo() method" } ], "dom-window-screen": [ @@ -3867,7 +3957,7 @@ "version_added": "79" } }, - "title": "Window.screen" + "title": "Window: screen property" } ], "dom-window-screenleft": [ @@ -3914,7 +4004,7 @@ "version_added": "79" } }, - "title": "Window.screenLeft" + "title": "Window: screenLeft property" } ], "dom-window-screentop": [ @@ -3961,7 +4051,7 @@ "version_added": "79" } }, - "title": "Window.screenTop" + "title": "Window: screenTop property" } ], "dom-window-screenx": [ @@ -4009,7 +4099,7 @@ "version_added": "79" } }, - "title": "Window.screenX" + "title": "Window: screenX property" } ], "dom-window-screeny": [ @@ -4057,7 +4147,7 @@ "version_added": "79" } }, - "title": "Window.screenY" + "title": "Window: screenY property" } ], "dom-window-scroll": [ @@ -4104,7 +4194,7 @@ "version_added": "79" } }, - "title": "Window.scroll()" + "title": "Window: scroll() method" } ], "dom-window-scrollby": [ @@ -4151,7 +4241,7 @@ "version_added": "79" } }, - "title": "Window.scrollBy()" + "title": "Window: scrollBy() method" } ], "dom-window-scrollto": [ @@ -4198,7 +4288,7 @@ "version_added": "79" } }, - "title": "Window.scrollTo()" + "title": "Window: scrollTo() method" } ], "dom-window-scrollx": [ @@ -4282,7 +4372,7 @@ } ] }, - "title": "Window.scrollX" + "title": "Window: scrollX property" } ], "dom-window-scrolly": [ @@ -4366,7 +4456,7 @@ } ] }, - "title": "Window.scrollY" + "title": "Window: scrollY property" } ], "dom-window-visualviewport": [ @@ -4409,7 +4499,7 @@ "version_added": "79" } }, - "title": "Window.visualViewport" + "title": "Window: visualViewport property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/cssom.json b/bikeshed/spec-data/readonly/mdn/cssom.json index 54a19ebfdf..6797df5324 100644 --- a/bikeshed/spec-data/readonly/mdn/cssom.json +++ b/bikeshed/spec-data/readonly/mdn/cssom.json @@ -7,9 +7,9 @@ "webkit" ], "filename": "api/CSS.json", - "name": "escape", - "slug": "API/CSS/escape", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape", + "name": "escape_static", + "slug": "API/CSS/escape_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape_static", "summary": "The CSS.escape() static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.", "support": { "chrome": { @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "CSS.escape()" + "title": "CSS: escape() static method" } ], "namespacedef-css": [ @@ -114,7 +114,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -123,7 +123,7 @@ "version_added": "79" } }, - "title": "CSSGroupingRule.cssRules" + "title": "CSSGroupingRule: cssRules property" } ], "dom-cssgroupingrule-deleterule": [ @@ -157,7 +157,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -166,7 +166,7 @@ "version_added": "79" } }, - "title": "CSSGroupingRule.deleteRule()" + "title": "CSSGroupingRule: deleteRule() method" } ], "dom-cssgroupingrule-insertrule": [ @@ -200,7 +200,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -209,7 +209,7 @@ "version_added": "79" } }, - "title": "CSSGroupingRule.insertRule()" + "title": "CSSGroupingRule: insertRule() method" } ], "the-cssgroupingrule-interface": [ @@ -242,9 +242,16 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "14.1" - }, + "safari": [ + { + "version_added": "14.1" + }, + { + "version_added": "3", + "partial_implementation": true, + "notes": "The <code>CSSGroupingRule</code> interface itself is not present, but many of the methods are available on various interfaces such as the <a href='https://developer.mozilla.org/docs/Web/API/CSSMediaRule'><code>CSSMediaRule</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/CSSPageRule'><code>CSSPageRule</code></a> interfaces." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -299,7 +306,48 @@ "version_added": "79" } }, - "title": "CSSImportRule.href" + "title": "CSSImportRule: href property" + } + ], + "dom-cssimportrule-layername": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CSSImportRule.json", + "name": "layerName", + "slug": "API/CSSImportRule/layerName", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSImportRule/layerName", + "summary": "The read-only layerName property of the CSSImportRule interface returns the name of the cascade layer created by the @import at-rule.", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "97" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "CSSImportRule: layerName property" } ], "dom-cssimportrule-media": [ @@ -346,7 +394,7 @@ "version_added": "79" } }, - "title": "CSSImportRule.media" + "title": "CSSImportRule: media property" } ], "dom-cssimportrule-stylesheet": [ @@ -393,7 +441,55 @@ "version_added": "79" } }, - "title": "CSSImportRule.stylesheet" + "title": "CSSImportRule: stylesheet property" + } + ], + "dom-cssimportrule-supportstext": [ + { + "engines": [ + "gecko" + ], + "filename": "api/CSSImportRule.json", + "name": "supportsText", + "slug": "API/CSSImportRule/supportsText", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSImportRule/supportsText", + "summary": "The read-only supportsText property of the CSSImportRule interface returns the supports condition specified by the @import at-rule.", + "support": { + "chrome": { + "version_added": false, + "impl_url": "https://crbug.com/1380321" + }, + "chrome_android": "mirror", + "edge": { + "version_added": false + }, + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": false + }, + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": false, + "impl_url": "https://webkit.org/b/256180" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false, + "impl_url": "https://crbug.com/1380321" + } + }, + "title": "CSSImportRule: supportsText property" } ], "the-cssimportrule-interface": [ @@ -487,7 +583,7 @@ "version_added": "79" } }, - "title": "CSSNamespaceRule.namespaceURI" + "title": "CSSNamespaceRule: namespaceURI property" } ], "dom-cssnamespacerule-prefix": [ @@ -534,7 +630,7 @@ "version_added": "79" } }, - "title": "CSSNamespaceRule.prefix" + "title": "CSSNamespaceRule: prefix property" } ], "the-cssnamespacerule-interface": [ @@ -588,6 +684,7 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/CSSPageRule.json", @@ -604,7 +701,7 @@ "version_added": "12" }, "firefox": { - "version_added": false + "version_added": "110" }, "firefox_android": "mirror", "ie": { @@ -629,7 +726,7 @@ "version_added": "79" } }, - "title": "CSSPageRule.selectorText" + "title": "CSSPageRule: selectorText property" } ], "dom-cssgroupingrule-style": [ @@ -653,7 +750,7 @@ "version_added": "12" }, "firefox": { - "version_added": "12" + "version_added": "19" }, "firefox_android": "mirror", "ie": { @@ -678,7 +775,7 @@ "version_added": "79" } }, - "title": "CSSPageRule.style" + "title": "CSSPageRule: style property" } ], "the-csspagerule-interface": [ @@ -702,7 +799,7 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "19" }, "firefox_android": "mirror", "ie": { @@ -775,7 +872,7 @@ "version_added": "79" } }, - "title": "CSSRule.cssText" + "title": "CSSRule: cssText property" } ], "dom-cssrule-parentrule": [ @@ -822,7 +919,7 @@ "version_added": "79" } }, - "title": "CSSRule.parentRule" + "title": "CSSRule: parentRule property" } ], "dom-cssrule-parentstylesheet": [ @@ -869,7 +966,7 @@ "version_added": "79" } }, - "title": "CSSRule.parentStyleSheet" + "title": "CSSRule: parentStyleSheet property" } ], "the-cssrule-interface": [ @@ -963,7 +1060,7 @@ "version_added": "79" } }, - "title": "CSSRuleList.item()" + "title": "CSSRuleList: item() method" } ], "dom-cssrulelist-length": [ @@ -1010,7 +1107,7 @@ "version_added": "79" } }, - "title": "CSSRuleList.length" + "title": "CSSRuleList: length property" } ], "the-cssrulelist-interface": [ @@ -1104,7 +1201,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.cssFloat" + "title": "CSSStyleDeclaration: cssFloat property" } ], "dom-cssstyledeclaration-csstext": [ @@ -1151,7 +1248,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.cssText" + "title": "CSSStyleDeclaration: cssText property" } ], "dom-cssstyledeclaration-getpropertypriority": [ @@ -1198,7 +1295,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.getPropertyPriority()" + "title": "CSSStyleDeclaration: getPropertyPriority() method" } ], "dom-cssstyledeclaration-getpropertyvalue": [ @@ -1245,7 +1342,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.getPropertyValue()" + "title": "CSSStyleDeclaration: getPropertyValue() method" } ], "dom-cssstyledeclaration-item": [ @@ -1292,7 +1389,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.item()" + "title": "CSSStyleDeclaration: item() method" } ], "dom-cssstyledeclaration-length": [ @@ -1339,7 +1436,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.length" + "title": "CSSStyleDeclaration: length property" } ], "dom-cssstyledeclaration-parentrule": [ @@ -1382,7 +1479,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.parentRule" + "title": "CSSStyleDeclaration: parentRule property" } ], "dom-cssstyledeclaration-removeproperty": [ @@ -1429,7 +1526,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.removeProperty()" + "title": "CSSStyleDeclaration: removeProperty() method" } ], "dom-cssstyledeclaration-setproperty": [ @@ -1476,7 +1573,7 @@ "version_added": "79" } }, - "title": "CSSStyleDeclaration.setProperty()" + "title": "CSSStyleDeclaration: setProperty() method" } ], "the-cssstyledeclaration-interface": [ @@ -1570,7 +1667,7 @@ "version_added": "79" } }, - "title": "CSSStyleRule.selectorText" + "title": "CSSStyleRule: selectorText property" } ], "dom-cssstylerule-style": [ @@ -1617,7 +1714,7 @@ "version_added": "79" } }, - "title": "CSSStyleRule.style" + "title": "CSSStyleRule: style property" } ], "the-cssstylerule-interface": [ @@ -1671,7 +1768,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSStyleSheet.json", "name": "CSSStyleSheet", @@ -1699,7 +1797,7 @@ "version_added": "47" }, "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": { @@ -1710,7 +1808,7 @@ "version_added": "79" } }, - "title": "CSSStyleSheet()" + "title": "CSSStyleSheet: CSSStyleSheet() constructor" } ], "dom-cssstylesheet-cssrules": [ @@ -1757,7 +1855,7 @@ "version_added": "79" } }, - "title": "CSSStyleSheet.cssRules" + "title": "CSSStyleSheet: cssRules property" } ], "dom-cssstylesheet-deleterule": [ @@ -1804,7 +1902,7 @@ "version_added": "79" } }, - "title": "CSSStyleSheet.deleteRule()" + "title": "CSSStyleSheet: deleteRule() method" } ], "dom-cssstylesheet-insertrule": [ @@ -1851,7 +1949,7 @@ "version_added": "79" } }, - "title": "CSSStyleSheet.insertRule()" + "title": "CSSStyleSheet: insertRule() method" } ], "dom-cssstylesheet-ownerrule": [ @@ -1898,14 +1996,15 @@ "version_added": "79" } }, - "title": "CSSStyleSheet.ownerRule" + "title": "CSSStyleSheet: ownerRule property" } ], "dom-cssstylesheet-replace": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSStyleSheet.json", "name": "replace", @@ -1929,7 +2028,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1938,14 +2037,15 @@ "version_added": "79" } }, - "title": "CSSStyleSheet.replace()" + "title": "CSSStyleSheet: replace() method" } ], "dom-cssstylesheet-replacesync": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/CSSStyleSheet.json", "name": "replaceSync", @@ -1969,7 +2069,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1978,7 +2078,7 @@ "version_added": "79" } }, - "title": "CSSStyleSheet.replaceSync()" + "title": "CSSStyleSheet: replaceSync() method" } ], "the-cssstylesheet-interface": [ @@ -2032,7 +2132,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Document.json", "name": "adoptedStyleSheets", @@ -2058,7 +2159,7 @@ "version_added": "50" }, "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2067,12 +2168,13 @@ "version_added": "79" } }, - "title": "Document.adoptedStyleSheets" + "title": "Document: adoptedStyleSheets property" }, { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ShadowRoot.json", "name": "adoptedStyleSheets", @@ -2098,7 +2200,7 @@ "version_added": "50" }, "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2107,7 +2209,7 @@ "version_added": "79" } }, - "title": "ShadowRoot.adoptedStyleSheets" + "title": "ShadowRoot: adoptedStyleSheets property" } ], "dom-documentorshadowroot-stylesheets": [ @@ -2154,7 +2256,7 @@ "version_added": "79" } }, - "title": "Document.styleSheets" + "title": "Document: styleSheets property" }, { "engines": [ @@ -2193,7 +2295,7 @@ "version_added": "79" } }, - "title": "ShadowRoot.styleSheets" + "title": "ShadowRoot: styleSheets property" } ], "dom-elementcssinlinestyle-style": [ @@ -2207,7 +2309,7 @@ "name": "style", "slug": "API/HTMLElement/style", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style", - "summary": "The style read-only property returns the inline style of an element in the form of a CSSStyleDeclaration object that contains a list of all styles properties for that element with values assigned for the attributes that are defined in the element's inline style attribute.", + "summary": "The read-only style property of the HTMLElement returns the inline style of an element in the form of a live CSSStyleDeclaration object that contains a list of all styles properties for that element with values assigned only for the attributes that are defined in the element's inline style attribute.", "support": { "chrome": { "version_added": "1" @@ -2242,21 +2344,19 @@ "version_added": "79" } }, - "title": "HTMLElement.style" - } - ], - "dom-medialist-mediatext": [ + "title": "HTMLElement: style property" + }, { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/MediaList.json", - "name": "mediaText", - "slug": "API/MediaList/mediaText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList/mediaText", - "summary": "The mediaText property of the MediaList interface is a stringifier that returns a string representing the MediaList as text, and also allows you to set a new MediaList.", + "filename": "api/SVGElement.json", + "name": "style", + "slug": "API/SVGElement/style", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGElement/style", + "summary": "The read-only style property of the SVGElement returns the inline style of an element in the form of a live CSSStyleDeclaration object that contains a list of all styles properties for that element with values assigned only for the attributes that are defined in the element's inline style attribute.", "support": { "chrome": { "version_added": "1" @@ -2266,7 +2366,7 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -2280,30 +2380,73 @@ "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "MediaList.mediaText" + "title": "SVGElement: style property" } ], - "the-medialist-interface": [ + "dom-linkstyle-sheet": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/MediaList.json", - "name": "MediaList", - "slug": "API/MediaList", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList", - "summary": "The MediaList interface represents the media queries of a stylesheet, e.g. those set using a <link> element's media attribute.", + "filename": "api/HTMLLinkElement.json", + "name": "sheet", + "slug": "API/HTMLLinkElement/sheet", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement/sheet", + "summary": "The read-only sheet property of the HTMLLinkElement interface contains the stylesheet associated with that element.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLLinkElement: sheet property" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLStyleElement.json", + "name": "sheet", + "slug": "API/HTMLStyleElement/sheet", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement/sheet", + "summary": "The read-only sheet property of the HTMLStyleElement interface contains the stylesheet associated with that element.", "support": { "chrome": { "version_added": "1" @@ -2336,10 +2479,8 @@ "version_added": "79" } }, - "title": "MediaList" - } - ], - "dom-linkstyle-sheet": [ + "title": "HTMLStyleElement: sheet property" + }, { "engines": [ "blink", @@ -2350,7 +2491,7 @@ "name": "sheet", "slug": "API/ProcessingInstruction/sheet", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction/sheet", - "summary": "The read-only sheet property of the ProcessingInstruction interface represent the name of the stylesheet associated to the ProcessingInstruction.", + "summary": "The read-only sheet property of the ProcessingInstruction interface contains the stylesheet associated to the ProcessingInstruction.", "support": { "chrome": { "version_added": "1" @@ -2377,7 +2518,7 @@ "version_added": "79" } }, - "title": "ProcessingInstruction.sheet" + "title": "ProcessingInstruction: sheet property" }, { "engines": [ @@ -2425,18 +2566,298 @@ } ], "safari": { - "version_added": "3" + "version_added": "16.4" }, - "safari_ios": { + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "SVGStyleElement: sheet property" + } + ], + "dom-medialist-appendmedium": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaList.json", + "name": "appendMedium", + "slug": "API/MediaList/appendMedium", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList/appendMedium", + "summary": "The appendMedium() method of the MediaList interface adds a media query to the list. If the media query is already in the collection, this method does nothing.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaList: appendMedium() method" + } + ], + "dom-medialist-deletemedium": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaList.json", + "name": "deleteMedium", + "slug": "API/MediaList/deleteMedium", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList/deleteMedium", + "summary": "The deleteMedium() method of the MediaList interface removes from this MediaList the given media query.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaList: deleteMedium() method" + } + ], + "dom-medialist-item": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaList.json", + "name": "item", + "slug": "API/MediaList/item", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList/item", + "summary": "The item() method of the MediaList interface returns the media query at the specified index, or null if the specified index doesn't exist.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaList: item() method" + } + ], + "dom-medialist-length": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaList.json", + "name": "length", + "slug": "API/MediaList/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList/length", + "summary": "The read-only length property of the MediaList interface returns the number of media queries in the list.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "SVGStyleElement.sheet" + "title": "MediaList: length property" + } + ], + "dom-medialist-mediatext": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaList.json", + "name": "mediaText", + "slug": "API/MediaList/mediaText", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList/mediaText", + "summary": "The mediaText property of the MediaList interface is a stringifier that returns a string representing the MediaList as text, and also allows you to set a new MediaList.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaList: mediaText property" + } + ], + "the-medialist-interface": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaList.json", + "name": "MediaList", + "slug": "API/MediaList", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaList", + "summary": "The MediaList interface represents the media queries of a stylesheet, e.g. those set using a <link> element's media attribute.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaList" } ], "dom-stylesheet-disabled": [ @@ -2483,7 +2904,7 @@ "version_added": "79" } }, - "title": "StyleSheet.disabled" + "title": "StyleSheet: disabled property" } ], "dom-stylesheet-href": [ @@ -2530,7 +2951,7 @@ "version_added": "79" } }, - "title": "StyleSheet.href" + "title": "StyleSheet: href property" } ], "dom-stylesheet-media": [ @@ -2577,7 +2998,7 @@ "version_added": "79" } }, - "title": "StyleSheet.media" + "title": "StyleSheet: media property" } ], "dom-stylesheet-ownernode": [ @@ -2624,7 +3045,7 @@ "version_added": "79" } }, - "title": "StyleSheet.ownerNode" + "title": "StyleSheet: ownerNode property" } ], "dom-stylesheet-parentstylesheet": [ @@ -2671,7 +3092,7 @@ "version_added": "79" } }, - "title": "StyleSheet.parentStyleSheet" + "title": "StyleSheet: parentStyleSheet property" } ], "dom-stylesheet-title": [ @@ -2718,7 +3139,7 @@ "version_added": "79" } }, - "title": "StyleSheet.title" + "title": "StyleSheet: title property" } ], "dom-stylesheet-type": [ @@ -2765,7 +3186,7 @@ "version_added": "79" } }, - "title": "StyleSheet.type" + "title": "StyleSheet: type property" } ], "the-stylesheet-interface": [ @@ -2859,7 +3280,7 @@ "version_added": "79" } }, - "title": "StyleSheetList.item()" + "title": "StyleSheetList: item() method" } ], "dom-stylesheetlist-length": [ @@ -2906,7 +3327,7 @@ "version_added": "79" } }, - "title": "StyleSheetList.length" + "title": "StyleSheetList: length property" } ], "the-stylesheetlist-interface": [ @@ -3007,7 +3428,7 @@ "feature": "getcomputedstyle", "title": "getComputedStyle" }, - "title": "Window.getComputedStyle()" + "title": "Window: getComputedStyle() method" } ], "css-style-sheet-collections": [ diff --git a/bikeshed/spec-data/readonly/mdn/custom-state-pseudo-class.json b/bikeshed/spec-data/readonly/mdn/custom-state-pseudo-class.json new file mode 100644 index 0000000000..f99813551f --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/custom-state-pseudo-class.json @@ -0,0 +1,41 @@ +{ + "dom-elementinternals-states": [ + { + "engines": [ + "blink" + ], + "filename": "api/ElementInternals.json", + "name": "states", + "slug": "API/ElementInternals/states", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/states", + "summary": "The states read-only property of the ElementInternals interface returns a CustomStateSet representing the possible states of the custom element.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "90" + } + }, + "title": "ElementInternals: states property" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/deprecation-reporting.json b/bikeshed/spec-data/readonly/mdn/deprecation-reporting.json index 62b7cf8b87..ead3a909be 100644 --- a/bikeshed/spec-data/readonly/mdn/deprecation-reporting.json +++ b/bikeshed/spec-data/readonly/mdn/deprecation-reporting.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.anticipatedRemoval" + "title": "DeprecationReportBody: anticipatedRemoval property" } ], "dom-deprecationreportbody-columnnumber": [ @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.columnNumber" + "title": "DeprecationReportBody: columnNumber property" } ], "dom-deprecationreportbody-id": [ @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.id" + "title": "DeprecationReportBody: id property" } ], "dom-deprecationreportbody-linenumber": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.lineNumber" + "title": "DeprecationReportBody: lineNumber property" } ], "dom-deprecationreportbody-message": [ @@ -191,7 +191,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.message" + "title": "DeprecationReportBody: message property" } ], "dom-deprecationreportbody-sourcefile": [ @@ -230,7 +230,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.sourceFile" + "title": "DeprecationReportBody: sourceFile property" } ], "dom-deprecationreportbody-tojson": [ @@ -269,7 +269,7 @@ "version_added": "79" } }, - "title": "DeprecationReportBody.toJSON()" + "title": "DeprecationReportBody: toJSON() method" } ], "deprecationreportbody": [ diff --git a/bikeshed/spec-data/readonly/mdn/dom-parsing.json b/bikeshed/spec-data/readonly/mdn/dom-parsing.json index b04265dab6..c3df94cb47 100644 --- a/bikeshed/spec-data/readonly/mdn/dom-parsing.json +++ b/bikeshed/spec-data/readonly/mdn/dom-parsing.json @@ -45,7 +45,7 @@ "version_added": "79" } }, - "title": "Element.innerHTML" + "title": "Element: innerHTML property" } ], "dom-element-insertadjacenthtml": [ @@ -105,7 +105,7 @@ "feature": "insertadjacenthtml", "title": "Element.insertAdjacentHTML()" }, - "title": "Element.insertAdjacentHTML()" + "title": "Element: insertAdjacentHTML() method" } ], "dom-element-outerhtml": [ @@ -154,7 +154,7 @@ "version_added": "79" } }, - "title": "Element.outerHTML" + "title": "Element: outerHTML property" } ], "extensions-to-the-element-interface": [ @@ -250,7 +250,7 @@ "version_added": "79" } }, - "title": "Range.createContextualFragment()" + "title": "Range: createContextualFragment() method" } ], "extensions-to-the-range-interface": [ @@ -339,7 +339,56 @@ "version_added": "79" } }, - "title": "ShadowRoot.innerHTML" + "title": "ShadowRoot: innerHTML property" + } + ], + "dom-xmlserializer-constructor": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLSerializer.json", + "name": "XMLSerializer", + "slug": "API/XMLSerializer/XMLSerializer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLSerializer/XMLSerializer", + "summary": "The XMLSerializer() constructor creates a new XMLSerializer.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLSerializer: XMLSerializer() constructor" } ], "dom-xmlserializer-serializetostring": [ @@ -388,7 +437,7 @@ "version_added": "79" } }, - "title": "XMLSerializer.serializeToString()" + "title": "XMLSerializer: serializeToString() method" } ], "the-xmlserializer-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/dom.json b/bikeshed/spec-data/readonly/mdn/dom.json index a97dc17fc5..bf63607b80 100644 --- a/bikeshed/spec-data/readonly/mdn/dom.json +++ b/bikeshed/spec-data/readonly/mdn/dom.json @@ -52,7 +52,7 @@ "version_added": "79" } }, - "title": "AbortController()" + "title": "AbortController: AbortController() constructor" }, { "engines": [ @@ -106,7 +106,7 @@ "version_added": "79" } }, - "title": "AbortController.abort()" + "title": "AbortController: abort() method" } ], "ref-for-dom-abortcontroller-signal②": [ @@ -162,7 +162,7 @@ "version_added": "79" } }, - "title": "AbortController.signal" + "title": "AbortController: signal property" } ], "interface-abortcontroller": [ @@ -221,7 +221,7 @@ "title": "AbortController" } ], - "ref-for-dom-abortsignal-abort①": [ + "eventdef-abortsignal-abort": [ { "engines": [ "blink", @@ -229,46 +229,48 @@ "webkit" ], "filename": "api/AbortSignal.json", - "name": "abort", - "slug": "API/AbortSignal/abort", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort", - "summary": "The static AbortSignal.abort() method returns an AbortSignal that is already set as aborted (and which does not trigger an abort event).", + "name": "abort_event", + "slug": "API/AbortSignal/abort_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event", + "summary": "The abort event of the AbortSignal is fired when the associated request is aborted, i.e. using AbortController.abort().", "support": { "chrome": { - "version_added": "93" + "version_added": "66" }, "chrome_android": "mirror", "deno": { - "version_added": "1.9" + "version_added": "1.0" + }, + "edge": { + "version_added": "16" }, - "edge": "mirror", "firefox": { - "version_added": "88" + "version_added": "57" }, "firefox_android": "mirror", "ie": { "version_added": false }, "nodejs": { - "version_added": "15.12.0" + "version_added": "15.0.0" }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "11.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "93" + "version_added": "79" } }, - "title": "AbortSignal.abort()" + "title": "AbortSignal: abort event" } ], - "eventdef-abortsignal-abort": [ + "abortsignal-onabort": [ { "engines": [ "blink", @@ -317,7 +319,7 @@ "title": "AbortSignal: abort event" } ], - "abortsignal-onabort": [ + "ref-for-dom-abortsignal-abort①": [ { "engines": [ "blink", @@ -325,45 +327,43 @@ "webkit" ], "filename": "api/AbortSignal.json", - "name": "abort_event", - "slug": "API/AbortSignal/abort_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event", - "summary": "The abort event of the AbortSignal is fired when the associated request is aborted, i.e. using AbortController.abort().", + "name": "abort_static", + "slug": "API/AbortSignal/abort_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_static", + "summary": "The AbortSignal.abort() static method returns an AbortSignal that is already set as aborted (and which does not trigger an abort event).", "support": { "chrome": { - "version_added": "66" + "version_added": "93" }, "chrome_android": "mirror", "deno": { - "version_added": "1.0" - }, - "edge": { - "version_added": "16" + "version_added": "1.9" }, + "edge": "mirror", "firefox": { - "version_added": "57" + "version_added": "88" }, "firefox_android": "mirror", "ie": { "version_added": false }, "nodejs": { - "version_added": "15.0.0" + "version_added": "15.12.0" }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "93" } }, - "title": "AbortSignal: abort event" + "title": "AbortSignal: abort() static method" } ], "ref-for-dom-abortsignal-aborted①": [ @@ -412,7 +412,7 @@ "version_added": "79" } }, - "title": "AbortSignal.aborted" + "title": "AbortSignal: aborted property" } ], "ref-for-dom-abortsignal-reason①": [ @@ -465,7 +465,7 @@ "version_added": "98" } }, - "title": "AbortSignal.reason" + "title": "AbortSignal: reason property" } ], "ref-for-dom-abortsignal-throwifaborted①": [ @@ -518,7 +518,7 @@ "version_added": "100" } }, - "title": "AbortSignal.throwIfAborted()" + "title": "AbortSignal: throwIfAborted() method" } ], "ref-for-dom-abortsignal-timeout①": [ @@ -529,10 +529,10 @@ "webkit" ], "filename": "api/AbortSignal.json", - "name": "timeout", - "slug": "API/AbortSignal/timeout", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/timeout", - "summary": "The static AbortSignal.timeout() method returns an AbortSignal that will automatically abort after a specified time.", + "name": "timeout_static", + "slug": "API/AbortSignal/timeout_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/timeout_static", + "summary": "The AbortSignal.timeout() static method returns an AbortSignal that will automatically abort after a specified time.", "support": { "chrome": { "version_added": "103" @@ -571,7 +571,7 @@ "version_added": "103" } }, - "title": "AbortSignal.timeout()" + "title": "AbortSignal: timeout() static method" } ], "interface-AbortSignal": [ @@ -663,7 +663,7 @@ "version_added": "90" } }, - "title": "AbstractRange.collapsed" + "title": "AbstractRange: collapsed property" }, { "engines": [ @@ -708,7 +708,7 @@ "version_added": "79" } }, - "title": "Range.collapsed" + "title": "Range: collapsed property" }, { "engines": [ @@ -749,7 +749,7 @@ "version_added": "79" } }, - "title": "StaticRange.collapsed" + "title": "StaticRange: collapsed property" } ], "ref-for-dom-range-endcontainer①": [ @@ -792,7 +792,7 @@ "version_added": "90" } }, - "title": "AbstractRange.endContainer" + "title": "AbstractRange: endContainer property" }, { "engines": [ @@ -837,7 +837,7 @@ "version_added": "79" } }, - "title": "Range.endContainer" + "title": "Range: endContainer property" }, { "engines": [ @@ -878,7 +878,7 @@ "version_added": "79" } }, - "title": "StaticRange.endContainer" + "title": "StaticRange: endContainer property" } ], "ref-for-dom-range-endoffset①": [ @@ -921,7 +921,7 @@ "version_added": "90" } }, - "title": "AbstractRange.endOffset" + "title": "AbstractRange: endOffset property" }, { "engines": [ @@ -966,7 +966,7 @@ "version_added": "79" } }, - "title": "Range.endOffset" + "title": "Range: endOffset property" }, { "engines": [ @@ -1007,7 +1007,7 @@ "version_added": "79" } }, - "title": "StaticRange.endOffset" + "title": "StaticRange: endOffset property" } ], "ref-for-dom-range-startcontainer①": [ @@ -1050,7 +1050,7 @@ "version_added": "90" } }, - "title": "AbstractRange.startContainer" + "title": "AbstractRange: startContainer property" }, { "engines": [ @@ -1095,7 +1095,7 @@ "version_added": "79" } }, - "title": "Range.startContainer" + "title": "Range: startContainer property" }, { "engines": [ @@ -1136,7 +1136,7 @@ "version_added": "79" } }, - "title": "StaticRange.startContainer" + "title": "StaticRange: startContainer property" } ], "ref-for-dom-range-startoffset①": [ @@ -1179,7 +1179,7 @@ "version_added": "90" } }, - "title": "AbstractRange.startOffset" + "title": "AbstractRange: startOffset property" }, { "engines": [ @@ -1224,7 +1224,7 @@ "version_added": "79" } }, - "title": "Range.startOffset" + "title": "Range: startOffset property" }, { "engines": [ @@ -1265,7 +1265,7 @@ "version_added": "79" } }, - "title": "StaticRange.startOffset" + "title": "StaticRange: startOffset property" } ], "interface-abstractrange": [ @@ -1355,7 +1355,7 @@ "version_added": "79" } }, - "title": "Attr.localName" + "title": "Attr: localName property" } ], "dom-attr-name": [ @@ -1402,7 +1402,7 @@ "version_added": "79" } }, - "title": "Attr.name" + "title": "Attr: name property" } ], "dom-attr-namespaceuri": [ @@ -1449,7 +1449,7 @@ "version_added": "79" } }, - "title": "Attr.namespaceURI" + "title": "Attr: namespaceURI property" } ], "dom-attr-ownerelement": [ @@ -1496,7 +1496,7 @@ "version_added": "79" } }, - "title": "Attr.ownerElement" + "title": "Attr: ownerElement property" } ], "dom-attr-prefix": [ @@ -1543,7 +1543,7 @@ "version_added": "79" } }, - "title": "Attr.prefix" + "title": "Attr: prefix property" } ], "dom-attr-value": [ @@ -1590,7 +1590,7 @@ "version_added": "79" } }, - "title": "Attr.value" + "title": "Attr: value property" } ], "interface-attr": [ @@ -1733,7 +1733,7 @@ "version_added": "79" } }, - "title": "CharacterData.after()" + "title": "CharacterData: after() method" }, { "engines": [ @@ -1776,7 +1776,7 @@ "version_added": "79" } }, - "title": "DocumentType.after()" + "title": "DocumentType: after() method" }, { "engines": [ @@ -1819,7 +1819,7 @@ "version_added": "79" } }, - "title": "Element.after()" + "title": "Element: after() method" } ], "dom-characterdata-appenddata": [ @@ -1866,7 +1866,7 @@ "version_added": "79" } }, - "title": "CharacterData.appendData()" + "title": "CharacterData: appendData() method" } ], "ref-for-dom-childnode-before①": [ @@ -1911,7 +1911,7 @@ "version_added": "79" } }, - "title": "CharacterData.before()" + "title": "CharacterData: before() method" }, { "engines": [ @@ -1954,7 +1954,7 @@ "version_added": "79" } }, - "title": "DocumentType.before()" + "title": "DocumentType: before() method" }, { "engines": [ @@ -1997,7 +1997,7 @@ "version_added": "79" } }, - "title": "Element.before()" + "title": "Element: before() method" } ], "dom-characterdata-data": [ @@ -2044,7 +2044,7 @@ "version_added": "79" } }, - "title": "CharacterData.data" + "title": "CharacterData: data property" } ], "dom-characterdata-deletedata": [ @@ -2091,7 +2091,7 @@ "version_added": "79" } }, - "title": "CharacterData.deleteData()" + "title": "CharacterData: deleteData() method" } ], "dom-characterdata-insertdata": [ @@ -2138,7 +2138,7 @@ "version_added": "79" } }, - "title": "CharacterData.insertData()" + "title": "CharacterData: insertData() method" } ], "dom-characterdata-length": [ @@ -2185,7 +2185,7 @@ "version_added": "79" } }, - "title": "CharacterData.length" + "title": "CharacterData: length property" } ], "ref-for-dom-nondocumenttypechildnode-nextelementsibling②": [ @@ -2228,7 +2228,7 @@ "version_added": "79" } }, - "title": "CharacterData.nextElementSibling" + "title": "CharacterData: nextElementSibling property" }, { "engines": [ @@ -2243,7 +2243,7 @@ "summary": "The Element.nextElementSibling read-only property returns the element immediately following the specified one in its parent's children list, or null if the specified element is the last one in the list.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -2277,7 +2277,7 @@ "version_added": "79" } }, - "title": "Element.nextElementSibling" + "title": "Element: nextElementSibling property" } ], "ref-for-dom-nondocumenttypechildnode-previouselementsibling②": [ @@ -2320,7 +2320,7 @@ "version_added": "79" } }, - "title": "CharacterData.previousElementSibling" + "title": "CharacterData: previousElementSibling property" }, { "engines": [ @@ -2335,7 +2335,7 @@ "summary": "The Element.previousElementSibling read-only property returns the Element immediately prior to the specified one in its parent's children list, or null if the specified element is the first one in the list.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -2369,7 +2369,7 @@ "version_added": "79" } }, - "title": "Element.previousElementSibling" + "title": "Element: previousElementSibling property" } ], "ref-for-dom-childnode-remove①": [ @@ -2412,7 +2412,7 @@ "version_added": "79" } }, - "title": "CharacterData.remove()" + "title": "CharacterData: remove() method" }, { "engines": [ @@ -2453,7 +2453,7 @@ "version_added": "79" } }, - "title": "DocumentType.remove()" + "title": "DocumentType: remove() method" }, { "engines": [ @@ -2494,7 +2494,7 @@ "version_added": "79" } }, - "title": "Element.remove()" + "title": "Element: remove() method" } ], "dom-characterdata-replacedata": [ @@ -2541,7 +2541,7 @@ "version_added": "79" } }, - "title": "CharacterData.replaceData()" + "title": "CharacterData: replaceData() method" } ], "ref-for-dom-childnode-replacewith①": [ @@ -2586,7 +2586,7 @@ "version_added": "79" } }, - "title": "CharacterData.replaceWith()" + "title": "CharacterData: replaceWith() method" }, { "engines": [ @@ -2629,7 +2629,7 @@ "version_added": "79" } }, - "title": "DocumentType.replaceWith()" + "title": "DocumentType: replaceWith() method" }, { "engines": [ @@ -2672,7 +2672,7 @@ "version_added": "79" } }, - "title": "Element.replaceWith()" + "title": "Element: replaceWith() method" } ], "dom-characterdata-substringdata": [ @@ -2719,7 +2719,7 @@ "version_added": "79" } }, - "title": "CharacterData.substringData()" + "title": "CharacterData: substringData() method" } ], "interface-characterdata": [ @@ -2809,7 +2809,7 @@ "version_added": "79" } }, - "title": "Comment()" + "title": "Comment: Comment() constructor" } ], "interface-comment": [ @@ -2908,7 +2908,7 @@ "version_added": "79" } }, - "title": "CustomEvent()" + "title": "CustomEvent: CustomEvent() constructor" } ], "ref-for-dom-customevent-detail②": [ @@ -2962,7 +2962,7 @@ "version_added": "79" } }, - "title": "CustomEvent.detail" + "title": "CustomEvent: detail property" } ], "interface-customevent": [ @@ -3070,7 +3070,7 @@ "version_added": "79" } }, - "title": "DOMImplementation.createDocument()" + "title": "DOMImplementation: createDocument() method" } ], "ref-for-dom-domimplementation-createdocumenttype①": [ @@ -3117,7 +3117,7 @@ "version_added": "79" } }, - "title": "DOMImplementation.createDocumentType()" + "title": "DOMImplementation: createDocumentType() method" } ], "ref-for-dom-domimplementation-createhtmldocument①": [ @@ -3165,7 +3165,7 @@ "version_added": "79" } }, - "title": "DOMImplementation.createHTMLDocument()" + "title": "DOMImplementation: createHTMLDocument() method" } ], "interface-domimplementation": [ @@ -3261,7 +3261,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.add()" + "title": "DOMTokenList: add() method" } ], "ref-for-dom-domtokenlist-contains①": [ @@ -3310,7 +3310,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.contains()" + "title": "DOMTokenList: contains() method" } ], "ref-for-dom-domtokenlist-item①": [ @@ -3359,7 +3359,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.item()" + "title": "DOMTokenList: item() method" } ], "ref-for-dom-domtokenlist-length①": [ @@ -3408,7 +3408,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.length" + "title": "DOMTokenList: length property" } ], "ref-for-dom-domtokenlist-remove①": [ @@ -3457,7 +3457,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.remove()" + "title": "DOMTokenList: remove() method" } ], "ref-for-dom-domtokenlist-replace①": [ @@ -3500,7 +3500,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.replace()" + "title": "DOMTokenList: replace() method" } ], "ref-for-dom-domtokenlist-supports①": [ @@ -3543,7 +3543,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.supports()" + "title": "DOMTokenList: supports() method" } ], "ref-for-dom-domtokenlist-toggle①": [ @@ -3592,7 +3592,7 @@ "version_added": "79" } }, - "title": "DOMTokenList.toggle()" + "title": "DOMTokenList: toggle() method" } ], "ref-for-dom-domtokenlist-value②": [ @@ -3637,7 +3637,7 @@ "notes": "Before Chrome 50, this property was part of the deprecated child <code>DOMSettableTokenList</code> interface." } }, - "title": "DOMTokenList.value" + "title": "DOMTokenList: value property" } ], "interface-domtokenlist": [ @@ -3729,7 +3729,7 @@ "version_added": "79" } }, - "title": "Document()" + "title": "Document: Document() constructor" } ], "ref-for-dom-document-url①": [ @@ -3776,7 +3776,7 @@ "version_added": "79" } }, - "title": "Document.URL" + "title": "Document: URL property" } ], "ref-for-dom-document-adoptnode①": [ @@ -3825,7 +3825,7 @@ "version_added": "79" } }, - "title": "Document.adoptNode()" + "title": "Document: adoptNode() method" } ], "ref-for-dom-parentnode-append①": [ @@ -3868,7 +3868,7 @@ "version_added": "79" } }, - "title": "Document.append()" + "title": "Document: append() method" }, { "engines": [ @@ -3909,7 +3909,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.append()" + "title": "DocumentFragment: append() method" }, { "engines": [ @@ -3950,7 +3950,7 @@ "version_added": "79" } }, - "title": "Element.append()" + "title": "Element: append() method" } ], "ref-for-dom-document-characterset①": [ @@ -4096,7 +4096,7 @@ } ] }, - "title": "Document.characterSet" + "title": "Document: characterSet property" } ], "dom-parentnode-childelementcount": [ @@ -4139,7 +4139,7 @@ "version_added": "79" } }, - "title": "Document.childElementCount" + "title": "Document: childElementCount property" }, { "engines": [ @@ -4151,7 +4151,7 @@ "name": "childElementCount", "slug": "API/DocumentFragment/childElementCount", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/childElementCount", - "summary": "The Document.childElementCount read-only property returns the number of child elements of a DocumentFragment.", + "summary": "The DocumentFragment.childElementCount read-only property returns the number of child elements of a DocumentFragment.", "support": { "chrome": { "version_added": "29" @@ -4180,7 +4180,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.childElementCount" + "title": "DocumentFragment: childElementCount property" }, { "engines": [ @@ -4195,7 +4195,7 @@ "summary": "The Element.childElementCount read-only property returns the number of child elements of this element.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -4229,7 +4229,7 @@ "version_added": "79" } }, - "title": "Element.childElementCount" + "title": "Element: childElementCount property" } ], "ref-for-dom-parentnode-children①": [ @@ -4272,7 +4272,7 @@ "version_added": "79" } }, - "title": "Document.children" + "title": "Document: children property" }, { "engines": [ @@ -4313,7 +4313,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.children" + "title": "DocumentFragment: children property" }, { "engines": [ @@ -4367,7 +4367,7 @@ "version_added": "79" } }, - "title": "Element.children" + "title": "Element: children property" } ], "ref-for-dom-document-compatmode①": [ @@ -4414,7 +4414,7 @@ "version_added": "79" } }, - "title": "Document.compatMode" + "title": "Document: compatMode property" } ], "ref-for-dom-document-contenttype①": [ @@ -4473,7 +4473,7 @@ "version_added": "79" } }, - "title": "Document.contentType" + "title": "Document: contentType property" } ], "dom-document-createattribute": [ @@ -4527,7 +4527,7 @@ "version_added": "79" } }, - "title": "Document.createAttribute()" + "title": "Document: createAttribute() method" } ], "dom-document-createattributens": [ @@ -4574,7 +4574,7 @@ "version_added": "79" } }, - "title": "Document.createAttributeNS()" + "title": "Document: createAttributeNS() method" } ], "ref-for-dom-document-createcomment①": [ @@ -4621,7 +4621,7 @@ "version_added": "79" } }, - "title": "Document.createCDATASection()" + "title": "Document: createCDATASection() method" }, { "engines": [ @@ -4666,7 +4666,7 @@ "version_added": "79" } }, - "title": "Document.createComment()" + "title": "Document: createComment() method" } ], "ref-for-dom-document-createdocumentfragment①": [ @@ -4713,7 +4713,7 @@ "version_added": "79" } }, - "title": "Document.createDocumentFragment()" + "title": "Document: createDocumentFragment() method" } ], "ref-for-dom-document-createelement①": [ @@ -4763,7 +4763,7 @@ "version_added": "79" } }, - "title": "Document.createElement()" + "title": "Document: createElement() method" } ], "ref-for-dom-document-createelementns①": [ @@ -4813,7 +4813,7 @@ "version_added": "79" } }, - "title": "Document.createElementNS()" + "title": "Document: createElementNS() method" } ], "dom-document-createevent": [ @@ -4863,7 +4863,7 @@ "version_added": "79" } }, - "title": "Document.createEvent()" + "title": "Document: createEvent() method" } ], "dom-xpathevaluatorbase-createexpression": [ @@ -4914,7 +4914,7 @@ "version_added": "79" } }, - "title": "Document.createExpression()" + "title": "Document: createExpression() method" }, { "engines": [ @@ -4961,7 +4961,7 @@ "version_added": "79" } }, - "title": "XPathEvaluator.createExpression()" + "title": "XPathEvaluator: createExpression() method" } ], "dom-document-createnodeiterator": [ @@ -5010,7 +5010,7 @@ "version_added": "79" } }, - "title": "Document.createNodeIterator()" + "title": "Document: createNodeIterator() method" } ], "dom-xpathevaluatorbase-creatensresolver": [ @@ -5061,7 +5061,7 @@ "version_added": "79" } }, - "title": "Document.createNSResolver()" + "title": "Document: createNSResolver() method" }, { "engines": [ @@ -5108,7 +5108,7 @@ "version_added": "79" } }, - "title": "XPathEvaluator.createNSResolver()" + "title": "XPathEvaluator: createNSResolver() method" } ], "ref-for-dom-document-createprocessinginstruction①": [ @@ -5155,7 +5155,7 @@ "version_added": "79" } }, - "title": "Document.createProcessingInstruction()" + "title": "Document: createProcessingInstruction() method" } ], "dom-document-createrange": [ @@ -5202,7 +5202,7 @@ "version_added": "79" } }, - "title": "Document.createRange()" + "title": "Document: createRange() method" } ], "ref-for-dom-document-createtextnode①": [ @@ -5249,7 +5249,7 @@ "version_added": "79" } }, - "title": "Document.createTextNode()" + "title": "Document: createTextNode() method" } ], "dom-document-createtreewalker": [ @@ -5298,7 +5298,7 @@ "version_added": "79" } }, - "title": "Document.createTreeWalker()" + "title": "Document: createTreeWalker() method" } ], "ref-for-dom-document-doctype①": [ @@ -5345,7 +5345,7 @@ "version_added": "79" } }, - "title": "Document.doctype" + "title": "Document: doctype property" } ], "ref-for-dom-document-documentelement①": [ @@ -5392,7 +5392,7 @@ "version_added": "79" } }, - "title": "Document.documentElement" + "title": "Document: documentElement property" } ], "ref-for-dom-document-documenturi①": [ @@ -5441,7 +5441,7 @@ "version_added": "79" } }, - "title": "Document.documentURI" + "title": "Document: documentURI property" } ], "dom-xpathevaluatorbase-evaluate": [ @@ -5492,7 +5492,7 @@ "version_added": "79" } }, - "title": "Document.evaluate()" + "title": "Document: evaluate() method" }, { "engines": [ @@ -5539,7 +5539,7 @@ "version_added": "79" } }, - "title": "XPathEvaluator.evaluate()" + "title": "XPathEvaluator: evaluate() method" } ], "ref-for-dom-parentnode-firstelementchild①": [ @@ -5582,7 +5582,7 @@ "version_added": "79" } }, - "title": "Document.firstElementChild" + "title": "Document: firstElementChild property" }, { "engines": [ @@ -5623,7 +5623,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.firstElementChild" + "title": "DocumentFragment: firstElementChild property" }, { "engines": [ @@ -5638,7 +5638,7 @@ "summary": "The Element.firstElementChild read-only property returns an element's first child Element, or null if there are no child elements.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -5672,7 +5672,7 @@ "version_added": "79" } }, - "title": "Element.firstElementChild" + "title": "Element: firstElementChild property" } ], "ref-for-dom-nonelementparentnode-getelementbyid②": [ @@ -5686,7 +5686,7 @@ "name": "getElementById", "slug": "API/Document/getElementById", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById", - "summary": "The Document method getElementById() returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they're a useful way to get access to a specific element quickly.", + "summary": "The getElementById() method of the Document interface returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they're a useful way to get access to a specific element quickly.", "support": { "chrome": { "version_added": "1" @@ -5719,7 +5719,7 @@ "version_added": "79" } }, - "title": "Document.getElementById()" + "title": "Document: getElementById() method" } ], "ref-for-dom-document-getelementsbyclassname①": [ @@ -5766,7 +5766,7 @@ "version_added": "79" } }, - "title": "Document.getElementsByClassName()" + "title": "Document: getElementsByClassName() method" } ], "ref-for-dom-document-getelementsbytagname①": [ @@ -5813,7 +5813,7 @@ "version_added": "79" } }, - "title": "Document.getElementsByTagName()" + "title": "Document: getElementsByTagName() method" } ], "ref-for-dom-document-getelementsbytagnamens①": [ @@ -5860,7 +5860,7 @@ "version_added": "79" } }, - "title": "Document.getElementsByTagNameNS()" + "title": "Document: getElementsByTagNameNS() method" } ], "ref-for-dom-document-implementation①": [ @@ -5907,7 +5907,7 @@ "version_added": "79" } }, - "title": "Document.implementation" + "title": "Document: implementation property" } ], "ref-for-dom-document-importnode①": [ @@ -5954,7 +5954,7 @@ "version_added": "79" } }, - "title": "Document.importNode()" + "title": "Document: importNode() method" } ], "ref-for-dom-parentnode-lastelementchild①": [ @@ -5997,7 +5997,7 @@ "version_added": "79" } }, - "title": "Document.lastElementChild" + "title": "Document: lastElementChild property" }, { "engines": [ @@ -6038,7 +6038,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.lastElementChild" + "title": "DocumentFragment: lastElementChild property" }, { "engines": [ @@ -6053,7 +6053,7 @@ "summary": "The Element.lastElementChild read-only property returns an element's last child Element, or null if there are no child elements.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -6087,7 +6087,7 @@ "version_added": "79" } }, - "title": "Element.lastElementChild" + "title": "Element: lastElementChild property" } ], "ref-for-dom-parentnode-prepend①": [ @@ -6130,7 +6130,7 @@ "version_added": "79" } }, - "title": "Document.prepend()" + "title": "Document: prepend() method" }, { "engines": [ @@ -6171,7 +6171,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.prepend()" + "title": "DocumentFragment: prepend() method" }, { "engines": [ @@ -6212,7 +6212,7 @@ "version_added": "79" } }, - "title": "Element.prepend()" + "title": "Element: prepend() method" } ], "ref-for-dom-parentnode-queryselector①": [ @@ -6266,7 +6266,7 @@ "version_added": "79" } }, - "title": "Document.querySelector()" + "title": "Document: querySelector() method" }, { "engines": [ @@ -6281,7 +6281,7 @@ "summary": "The DocumentFragment.querySelector() method returns the first element, or null if no matches are found, within the DocumentFragment (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -6322,7 +6322,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.querySelector()" + "title": "DocumentFragment: querySelector() method" } ], "ref-for-dom-parentnode-queryselectorall①": [ @@ -6376,7 +6376,7 @@ "version_added": "79" } }, - "title": "Document.querySelectorAll()" + "title": "Document: querySelectorAll() method" }, { "engines": [ @@ -6391,7 +6391,7 @@ "summary": "The DocumentFragment.querySelectorAll() method returns a NodeList of elements within the DocumentFragment (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -6432,7 +6432,7 @@ "version_added": "79" } }, - "title": "DocumentFragment.querySelectorAll()" + "title": "DocumentFragment: querySelectorAll() method" }, { "engines": [ @@ -6484,7 +6484,7 @@ "version_added": "79" } }, - "title": "Element.querySelector()" + "title": "Element: querySelector() method" }, { "engines": [ @@ -6536,7 +6536,7 @@ "version_added": "79" } }, - "title": "Element.querySelectorAll()" + "title": "Element: querySelectorAll() method" } ], "ref-for-dom-parentnode-replacechildren①": [ @@ -6577,7 +6577,7 @@ "version_added": "86" } }, - "title": "Document.replaceChildren()" + "title": "Document: replaceChildren() method" }, { "engines": [ @@ -6616,7 +6616,7 @@ "version_added": "86" } }, - "title": "DocumentFragment.replaceChildren()" + "title": "DocumentFragment: replaceChildren() method" }, { "engines": [ @@ -6655,7 +6655,7 @@ "version_added": "86" } }, - "title": "Element.replaceChildren()" + "title": "Element: replaceChildren() method" } ], "interface-document": [ @@ -6747,7 +6747,50 @@ "version_added": "79" } }, - "title": "DocumentFragment()" + "title": "DocumentFragment: DocumentFragment() constructor" + } + ], + "dom-nonelementparentnode-getelementbyid": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DocumentFragment.json", + "name": "getElementById", + "slug": "API/DocumentFragment/getElementById", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/getElementById", + "summary": "The getElementById() method of the DocumentFragment returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they're a useful way to get access to a specific element quickly.", + "support": { + "chrome": { + "version_added": "36" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "28" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "9" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "DocumentFragment: getElementById() method" } ], "interface-documentfragment": [ @@ -6799,6 +6842,153 @@ "title": "DocumentFragment" } ], + "dom-documenttype-name": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DocumentType.json", + "name": "name", + "slug": "API/DocumentType/name", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentType/name", + "summary": "The read-only name property of the DocumentType returns the type of the document.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "DocumentType: name property" + } + ], + "dom-documenttype-publicid": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DocumentType.json", + "name": "publicId", + "slug": "API/DocumentType/publicId", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentType/publicId", + "summary": "The read-only publicId property of the DocumentType returns a formal identifier of the document.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "DocumentType: publicId property" + } + ], + "dom-documenttype-systemid": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DocumentType.json", + "name": "systemId", + "slug": "API/DocumentType/systemId", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentType/systemId", + "summary": "The read-only systemId property of the DocumentType returns the URL of the associated DTD.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "DocumentType: systemId property" + } + ], "interface-documenttype": [ { "engines": [ @@ -6888,7 +7078,7 @@ "version_added": "79" } }, - "title": "Element.assignedSlot" + "title": "Element: assignedSlot property" }, { "engines": [ @@ -6927,7 +7117,7 @@ "version_added": "79" } }, - "title": "Text.assignedSlot" + "title": "Text: assignedSlot property" } ], "ref-for-dom-element-attachshadow①": [ @@ -6968,7 +7158,7 @@ "version_added": "79" } }, - "title": "Element.attachShadow()" + "title": "Element: attachShadow() method" } ], "dom-element-attributes": [ @@ -7015,7 +7205,7 @@ "version_added": "79" } }, - "title": "Element.attributes" + "title": "Element: attributes property" } ], "ref-for-dom-element-classlist①": [ @@ -7098,7 +7288,7 @@ } ] }, - "title": "Element.classList" + "title": "Element: classList property" } ], "ref-for-dom-element-classname①": [ @@ -7161,7 +7351,7 @@ } ] }, - "title": "Element.className" + "title": "Element: className property" } ], "ref-for-dom-element-closest①": [ @@ -7206,7 +7396,7 @@ "version_added": "79" } }, - "title": "Element.closest()" + "title": "Element: closest() method" } ], "ref-for-dom-element-getattribute①": [ @@ -7253,7 +7443,7 @@ "version_added": "79" } }, - "title": "Element.getAttribute()" + "title": "Element: getAttribute() method" } ], "ref-for-dom-element-getattributenames①": [ @@ -7296,7 +7486,7 @@ "version_added": "79" } }, - "title": "Element.getAttributeNames()" + "title": "Element: getAttributeNames() method" } ], "dom-element-getattributenode": [ @@ -7343,7 +7533,7 @@ "version_added": "79" } }, - "title": "Element.getAttributeNode()" + "title": "Element: getAttributeNode() method" } ], "dom-element-getattributenodens": [ @@ -7390,7 +7580,7 @@ "version_added": "79" } }, - "title": "Element.getAttributeNodeNS()" + "title": "Element: getAttributeNodeNS() method" } ], "ref-for-dom-element-getattributens①": [ @@ -7438,7 +7628,7 @@ "version_added": "79" } }, - "title": "Element.getAttributeNS()" + "title": "Element: getAttributeNS() method" } ], "ref-for-dom-element-getelementsbyclassname": [ @@ -7490,7 +7680,7 @@ "version_added": "79" } }, - "title": "Element.getElementsByClassName()" + "title": "Element: getElementsByClassName() method" } ], "dom-element-getelementsbytagname": [ @@ -7542,7 +7732,7 @@ "notes": "Initially, this method was returning a <code>NodeList</code>; it was then changed to reflect the spec change." } }, - "title": "Element.getElementsByTagName()" + "title": "Element: getElementsByTagName() method" } ], "dom-element-getelementsbytagnamens": [ @@ -7601,7 +7791,7 @@ "notes": "Initially, this method was returning a <code>NodeList</code>; it was then changed to reflect the spec change." } }, - "title": "Element.getElementsByTagNameNS()" + "title": "Element: getElementsByTagNameNS() method" } ], "ref-for-dom-element-hasattribute①": [ @@ -7648,7 +7838,7 @@ "version_added": "79" } }, - "title": "Element.hasAttribute()" + "title": "Element: hasAttribute() method" } ], "ref-for-dom-element-hasattributens①": [ @@ -7695,7 +7885,7 @@ "version_added": "79" } }, - "title": "Element.hasAttributeNS()" + "title": "Element: hasAttributeNS() method" } ], "ref-for-dom-element-hasattributes①": [ @@ -7743,7 +7933,7 @@ "version_added": "79" } }, - "title": "Element.hasAttributes()" + "title": "Element: hasAttributes() method" } ], "ref-for-dom-element-id①": [ @@ -7806,7 +7996,7 @@ } ] }, - "title": "Element.id" + "title": "Element: id property" } ], "dom-element-insertadjacentelement": [ @@ -7861,7 +8051,7 @@ "feature": "insert-adjacent", "title": "Element.insertAdjacentElement() & Element.insertAdjacentText()" }, - "title": "Element.insertAdjacentElement()" + "title": "Element: insertAdjacentElement() method" } ], "dom-element-insertadjacenttext": [ @@ -7914,7 +8104,7 @@ "version_added": "79" } }, - "title": "Element.insertAdjacentText()" + "title": "Element: insertAdjacentText() method" } ], "ref-for-dom-element-localname①": [ @@ -7961,7 +8151,7 @@ "version_added": "79" } }, - "title": "Element.localName" + "title": "Element: localName property" } ], "ref-for-dom-element-matches①": [ @@ -8084,7 +8274,7 @@ } ] }, - "title": "Element.matches()" + "title": "Element: matches() method" } ], "ref-for-dom-element-namespaceuri①": [ @@ -8131,7 +8321,7 @@ "version_added": "79" } }, - "title": "Element.namespaceURI" + "title": "Element: namespaceURI property" } ], "ref-for-dom-element-prefix①": [ @@ -8178,7 +8368,7 @@ "version_added": "79" } }, - "title": "Element.prefix" + "title": "Element: prefix property" } ], "ref-for-dom-element-removeattribute①": [ @@ -8225,7 +8415,7 @@ "version_added": "79" } }, - "title": "Element.removeAttribute()" + "title": "Element: removeAttribute() method" } ], "dom-element-removeattributenode": [ @@ -8272,7 +8462,7 @@ "version_added": "79" } }, - "title": "Element.removeAttributeNode()" + "title": "Element: removeAttributeNode() method" } ], "ref-for-dom-element-removeattributens①": [ @@ -8319,7 +8509,7 @@ "version_added": "79" } }, - "title": "Element.removeAttributeNS()" + "title": "Element: removeAttributeNS() method" } ], "ref-for-dom-element-setattribute①": [ @@ -8367,7 +8557,7 @@ "version_added": "79" } }, - "title": "Element.setAttribute()" + "title": "Element: setAttribute() method" } ], "dom-element-setattributenode": [ @@ -8414,7 +8604,7 @@ "version_added": "79" } }, - "title": "Element.setAttributeNode()" + "title": "Element: setAttributeNode() method" } ], "dom-element-setattributenodens": [ @@ -8462,7 +8652,7 @@ "version_added": "79" } }, - "title": "Element.setAttributeNodeNS()" + "title": "Element: setAttributeNodeNS() method" } ], "ref-for-dom-element-setattributens①": [ @@ -8509,7 +8699,7 @@ "version_added": "79" } }, - "title": "Element.setAttributeNS()" + "title": "Element: setAttributeNS() method" } ], "ref-for-dom-element-shadowroot①": [ @@ -8550,7 +8740,7 @@ "version_added": "79" } }, - "title": "Element.shadowRoot" + "title": "Element: shadowRoot property" } ], "ref-for-dom-element-slot①": [ @@ -8591,7 +8781,7 @@ "version_added": "79" } }, - "title": "Element.slot" + "title": "Element: slot property" }, { "engines": [ @@ -8679,7 +8869,7 @@ "version_added": "79" } }, - "title": "Element.tagName" + "title": "Element: tagName property" } ], "ref-for-dom-element-toggleattribute①": [ @@ -8722,7 +8912,7 @@ "version_added": "79" } }, - "title": "Element.toggleAttribute()" + "title": "Element: toggleAttribute() method" } ], "interface-element": [ @@ -8832,7 +9022,7 @@ "version_added": "79" } }, - "title": "Event()" + "title": "Event: Event() constructor" } ], "ref-for-dom-event-bubbles③": [ @@ -8888,7 +9078,7 @@ "version_added": "79" } }, - "title": "Event.bubbles" + "title": "Event: bubbles property" } ], "ref-for-dom-event-cancelable②": [ @@ -8943,7 +9133,7 @@ "version_added": "79" } }, - "title": "Event.cancelable" + "title": "Event: cancelable property" } ], "ref-for-dom-event-composed①": [ @@ -8968,7 +9158,8 @@ }, "edge": "mirror", "firefox": { - "version_added": "52" + "version_added": "52", + "notes": "Before Firefox 95, this property was incorrectly set to <code>false</code> on <code>&lt;select&gt;</code> and <code>&lt;input type='checkbox'&gt;</code> elements." }, "firefox_android": "mirror", "ie": { @@ -8991,7 +9182,7 @@ "version_added": "79" } }, - "title": "Event.composed" + "title": "Event: composed property" } ], "ref-for-dom-event-composedpath①": [ @@ -9053,7 +9244,7 @@ } ] }, - "title": "Event.composedPath()" + "title": "Event: composedPath() method" } ], "ref-for-dom-event-currenttarget②": [ @@ -9114,7 +9305,7 @@ "version_added": "79" } }, - "title": "Event.currentTarget" + "title": "Event: currentTarget property" } ], "ref-for-dom-event-defaultprevented①": [ @@ -9171,7 +9362,7 @@ "version_added": "79" } }, - "title": "Event.defaultPrevented" + "title": "Event: defaultPrevented property" } ], "ref-for-dom-event-eventphase③": [ @@ -9224,7 +9415,7 @@ "version_added": "79" } }, - "title": "Event.eventPhase" + "title": "Event: eventPhase property" } ], "ref-for-dom-event-istrusted①": [ @@ -9286,7 +9477,7 @@ "notes": "Starting with Chrome 53 and Opera 40, untrusted events do not invoke the default action." } }, - "title": "Event.isTrusted" + "title": "Event: isTrusted property" } ], "ref-for-dom-event-preventdefault③": [ @@ -9339,7 +9530,7 @@ "version_added": "79" } }, - "title": "Event.preventDefault()" + "title": "Event: preventDefault() method" } ], "ref-for-dom-event-stopimmediatepropagation①": [ @@ -9396,7 +9587,7 @@ "version_added": "79" } }, - "title": "Event.stopImmediatePropagation()" + "title": "Event: stopImmediatePropagation() method" } ], "ref-for-dom-event-stoppropagation①": [ @@ -9410,7 +9601,7 @@ "name": "stopPropagation", "slug": "API/Event/stopPropagation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Event/stopPropagation", - "summary": "The stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases. It does not, however, prevent any default behaviors from occurring; for instance, clicks on links are still processed. If you want to stop those behaviors, see the preventDefault() method. It also does not prevent immediate propagation to other event-handlers. If you want to stop those, see stopImmediatePropagation().", + "summary": "The stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases. It does not, however, prevent any default behaviors from occurring; for instance, clicks on links are still processed. If you want to stop those behaviors, see the preventDefault() method. It also does not prevent propagation to other event-handlers of the current element. If you want to stop those, see stopImmediatePropagation().", "support": { "chrome": { "version_added": "1" @@ -9450,7 +9641,7 @@ "version_added": "79" } }, - "title": "Event.stopPropagation()" + "title": "Event: stopPropagation() method" } ], "ref-for-dom-event-target③": [ @@ -9503,7 +9694,7 @@ "version_added": "79" } }, - "title": "Event.target" + "title": "Event: target property" } ], "ref-for-dom-event-timestamp①": [ @@ -9566,7 +9757,7 @@ "notes": "Starting with Chrome 49, Firefox 54 and Opera 36, this property returns <a href='https://developer.mozilla.org/docs/Web/API/DOMHighResTimeStamp'><code>DOMHighResTimeStamp</code></a> instead of <a href='https://developer.mozilla.org/docs/Web/API/DOMTimeStamp'><code>DOMTimeStamp</code></a>." } }, - "title": "Event.timeStamp" + "title": "Event: timeStamp property" } ], "ref-for-dom-event-type④": [ @@ -9619,7 +9810,7 @@ "version_added": "79" } }, - "title": "Event.type" + "title": "Event: type property" } ], "interface-event": [ @@ -9729,7 +9920,7 @@ "version_added": "79" } }, - "title": "EventTarget()" + "title": "EventTarget: EventTarget() constructor" } ], "ref-for-dom-eventtarget-addeventlistener③": [ @@ -9795,7 +9986,7 @@ "notes": "Before Chrome 49, the <code>type</code> and <code>listener</code> parameters were optional." } }, - "title": "EventTarget.addEventListener()" + "title": "EventTarget: addEventListener() method" } ], "ref-for-dom-eventtarget-dispatchevent③": [ @@ -9860,7 +10051,7 @@ "version_added": "79" } }, - "title": "EventTarget.dispatchEvent()" + "title": "EventTarget: dispatchEvent() method" } ], "ref-for-dom-eventtarget-removeeventlistener②": [ @@ -9921,7 +10112,7 @@ "version_added": "79" } }, - "title": "EventTarget.removeEventListener()" + "title": "EventTarget: removeEventListener() method" } ], "interface-eventtarget": [ @@ -10027,7 +10218,7 @@ "version_added": "79" } }, - "title": "HTMLCollection.item()" + "title": "HTMLCollection: item() method" } ], "ref-for-dom-htmlcollection-length①": [ @@ -10074,7 +10265,7 @@ "version_added": "79" } }, - "title": "HTMLCollection.length" + "title": "HTMLCollection: length property" } ], "dom-htmlcollection-nameditem-key": [ @@ -10121,7 +10312,7 @@ "version_added": "79" } }, - "title": "HTMLCollection.namedItem()" + "title": "HTMLCollection: namedItem() method" } ], "interface-htmlcollection": [ @@ -10282,7 +10473,7 @@ } ] }, - "title": "MutationObserver()" + "title": "MutationObserver: MutationObserver() constructor" } ], "ref-for-dom-mutationobserver-disconnect①": [ @@ -10325,7 +10516,7 @@ "version_added": "79" } }, - "title": "MutationObserver.disconnect()" + "title": "MutationObserver: disconnect() method" } ], "ref-for-dom-mutationobserver-observe②": [ @@ -10379,7 +10570,7 @@ "notes": "Before Chrome 33, <code>attributes: true</code> is required when using <code>attributeFilter</code> or <code>attributeOldValue</code>. If <code>attributes: true</code> is not present, then Chrome throws a syntax error." } }, - "title": "MutationObserver.observe()" + "title": "MutationObserver: observe() method" } ], "ref-for-dom-mutationobserver-takerecords①": [ @@ -10422,7 +10613,7 @@ "version_added": "79" } }, - "title": "MutationObserver.takeRecords()" + "title": "MutationObserver: takeRecords() method" } ], "interface-mutationobserver": [ @@ -10498,7 +10689,7 @@ "title": "MutationObserver" } ], - "interface-mutationrecord": [ + "ref-for-dom-mutationrecord-addednodes②": [ { "engines": [ "blink", @@ -10506,10 +10697,10 @@ "webkit" ], "filename": "api/MutationRecord.json", - "name": "MutationRecord", - "slug": "API/MutationRecord", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord", - "summary": "A MutationRecord represents an individual DOM mutation. It is the object that is inside the array passed to MutationObserver's callback.", + "name": "addedNodes", + "slug": "API/MutationRecord/addedNodes", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/addedNodes", + "summary": "The MutationRecord read-only property addedNodes is a NodeList of nodes added to a target node by a mutation observed with a MutationObserver.", "support": { "chrome": { "version_added": "16" @@ -10538,45 +10729,41 @@ "version_added": "79" } }, - "title": "MutationRecord" + "title": "MutationRecord: addedNodes property" } ], - "dom-namednodemap-getnameditem": [ + "ref-for-dom-mutationrecord-attributename②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "getNamedItem", - "slug": "API/NamedNodeMap/getNamedItem", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/getNamedItem", - "summary": "The getNamedItem() method of the NamedNodeMap interface returns the Attr corresponding to the given name, or null if there is no corresponding attribute.", + "filename": "api/MutationRecord.json", + "name": "attributeName", + "slug": "API/MutationRecord/attributeName", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/attributeName", + "summary": "The MutationRecord read-only property attributeName contains the name of a changed attribute belonging to a node that is observed by a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10585,45 +10772,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.getNamedItem()" + "title": "MutationRecord: attributeName property" } ], - "dom-namednodemap-getnameditemns": [ + "ref-for-dom-mutationrecord-attributenamespace②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "getNamedItemNS", - "slug": "API/NamedNodeMap/getNamedItemNS", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/getNamedItemNS", - "summary": "The getNamedItemNS() method of the NamedNodeMap interface returns the Attr corresponding to the given local name in the given namespace, or null if there is no corresponding attribute.", + "filename": "api/MutationRecord.json", + "name": "attributeNamespace", + "slug": "API/MutationRecord/attributeNamespace", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/attributeNamespace", + "summary": "The MutationRecord read-only property attributeNamespace is the namespace of the mutated attribute in the MutationRecord observed by a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10632,45 +10815,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.getNamedItemNS()" + "title": "MutationRecord: attributeNamespace property" } ], - "dom-namednodemap-item": [ + "ref-for-dom-mutationrecord-nextsibling②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "item", - "slug": "API/NamedNodeMap/item", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/item", - "summary": "The item() method of the NamedNodeMap interface returns the item in the map matching the index.", + "filename": "api/MutationRecord.json", + "name": "nextSibling", + "slug": "API/MutationRecord/nextSibling", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/nextSibling", + "summary": "The MutationRecord read-only property nextSibling is the next sibling of an added or removed child node of the target of a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10679,45 +10858,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.item()" + "title": "MutationRecord: nextSibling property" } ], - "dom-namednodemap-length": [ + "ref-for-dom-mutationrecord-oldvalue②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "length", - "slug": "API/NamedNodeMap/length", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/length", - "summary": "The read-only length property of the NamedNodeMap interface is the number of objects stored in the map.", + "filename": "api/MutationRecord.json", + "name": "oldValue", + "slug": "API/MutationRecord/oldValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/oldValue", + "summary": "The MutationRecord read-only property oldValue contains the character data or attribute value of an observed node before it was changed.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10726,45 +10901,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.length" + "title": "MutationRecord: oldValue property" } ], - "dom-namednodemap-removenameditem": [ + "ref-for-dom-mutationrecord-previoussibling②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "removeNamedItem", - "slug": "API/NamedNodeMap/removeNamedItem", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/removeNamedItem", - "summary": "The removeNamedItem() method of the NamedNodeMap interface removes the Attr corresponding to the given name from the map.", + "filename": "api/MutationRecord.json", + "name": "previousSibling", + "slug": "API/MutationRecord/previousSibling", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/previousSibling", + "summary": "The MutationRecord read-only property previousSibling is the previous sibling of an added or removed child node of the target of a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10773,45 +10944,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.removeNamedItem()" + "title": "MutationRecord: previousSibling property" } ], - "dom-namednodemap-removenameditemns": [ + "ref-for-dom-mutationrecord-removednodes②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "removeNamedItemNS", - "slug": "API/NamedNodeMap/removeNamedItemNS", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/removeNamedItemNS", - "summary": "The removedNamedItemNS() method of the NamedNodeMap interface removes the Attr corresponding to the given namespace and local name from the map.", + "filename": "api/MutationRecord.json", + "name": "removedNodes", + "slug": "API/MutationRecord/removedNodes", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/removedNodes", + "summary": "The MutationRecord read-only property removedNodes is a NodeList of nodes removed from a target node by a mutation observed with a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10820,45 +10987,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.removeNamedItemNS()" + "title": "MutationRecord: removedNodes property" } ], - "dom-namednodemap-setnameditem": [ + "ref-for-dom-mutationrecord-target②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "setNamedItem", - "slug": "API/NamedNodeMap/setNamedItem", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/setNamedItem", - "summary": "The setNamedItem() method of the NamedNodeMap interface puts the Attr identified by its name in the map. If there is already an Attr with the same name in the map, it is replaced.", + "filename": "api/MutationRecord.json", + "name": "target", + "slug": "API/MutationRecord/target", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/target", + "summary": "The MutationRecord read-only property target is the target (i.e. the mutated/changed node) of a mutation observed with a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10867,45 +11030,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.setNamedItem()" + "title": "MutationRecord: target property" } ], - "dom-namednodemap-setnameditemns": [ + "ref-for-dom-mutationrecord-type②": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "setNamedItemNS", - "slug": "API/NamedNodeMap/setNamedItemNS", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/setNamedItemNS", - "summary": "The setNamedItemNS() method of the NamedNodeMap interface puts the Attr identified by its name in the map. If there was already an Attr with the same name in the map, it is replaced.", + "filename": "api/MutationRecord.json", + "name": "type", + "slug": "API/MutationRecord/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/type", + "summary": "The MutationRecord read-only property type is the type of the MutationRecord observed by a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "14" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10914,56 +11073,41 @@ "version_added": "79" } }, - "title": "NamedNodeMap.setNamedItemNS()" + "title": "MutationRecord: type property" } ], - "interface-namednodemap": [ + "interface-mutationrecord": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NamedNodeMap.json", - "name": "NamedNodeMap", - "slug": "API/NamedNodeMap", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap", - "summary": "The NamedNodeMap interface represents a collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.", + "filename": "api/MutationRecord.json", + "name": "MutationRecord", + "slug": "API/MutationRecord", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord", + "summary": "The MutationRecord is a read-only interface that represents an individual DOM mutation observed by a MutationObserver. It is the object inside the array passed to the callback of a MutationObserver.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, - "firefox": [ - { - "version_added": "34" - }, - { - "version_added": "1", - "version_removed": "22" - }, - { - "version_added": "22", - "version_removed": "34", - "alternative_name": "MozNamedAttrMap" - } - ], + "firefox": { + "version_added": "14" + }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10972,21 +11116,21 @@ "version_added": "79" } }, - "title": "NamedNodeMap" + "title": "MutationRecord" } ], - "dom-node-appendchild": [ + "dom-namednodemap-getnameditem": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "appendChild", - "slug": "API/Node/appendChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild", - "summary": "The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, appendChild() moves it from its current position to the new position.", + "filename": "api/NamedNodeMap.json", + "name": "getNamedItem", + "slug": "API/NamedNodeMap/getNamedItem", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/getNamedItem", + "summary": "The getNamedItem() method of the NamedNodeMap interface returns the Attr corresponding to the given name, or null if there is no corresponding attribute.", "support": { "chrome": { "version_added": "1" @@ -11000,17 +11144,17 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11019,21 +11163,21 @@ "version_added": "79" } }, - "title": "Node.appendChild()" + "title": "NamedNodeMap: getNamedItem() method" } ], - "ref-for-dom-node-baseuri①": [ + "dom-namednodemap-getnameditemns": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "baseURI", - "slug": "API/Node/baseURI", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/baseURI", - "summary": "The read-only baseURI property of the Node interface returns the absolute base URL of the document containing the node.", + "filename": "api/NamedNodeMap.json", + "name": "getNamedItemNS", + "slug": "API/NamedNodeMap/getNamedItemNS", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/getNamedItemNS", + "summary": "The getNamedItemNS() method of the NamedNodeMap interface returns the Attr corresponding to the given local name in the given namespace, or null if there is no corresponding attribute.", "support": { "chrome": { "version_added": "1" @@ -11047,7 +11191,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", "opera": { @@ -11057,33 +11201,31 @@ "version_added": "12.1" }, "safari": { - "version_added": "4" - }, - "safari_ios": { "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.baseURI" + "title": "NamedNodeMap: getNamedItemNS() method" } ], - "ref-for-dom-node-childnodes①": [ + "dom-namednodemap-item": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "childNodes", - "slug": "API/Node/childNodes", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/childNodes", - "summary": "The read-only childNodes property of the Node interface returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments.", - "support": { + "filename": "api/NamedNodeMap.json", + "name": "item", + "slug": "API/NamedNodeMap/item", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/item", + "summary": "The item() method of the NamedNodeMap interface returns the item in the map matching the index.", + "support": { "chrome": { "version_added": "1" }, @@ -11100,13 +11242,13 @@ }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.2" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11115,21 +11257,21 @@ "version_added": "79" } }, - "title": "Node.childNodes" + "title": "NamedNodeMap: item() method" } ], - "ref-for-dom-node-clonenode①": [ + "dom-namednodemap-length": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "cloneNode", - "slug": "API/Node/cloneNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/cloneNode", - "summary": "The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not.", + "filename": "api/NamedNodeMap.json", + "name": "length", + "slug": "API/NamedNodeMap/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/length", + "summary": "The read-only length property of the NamedNodeMap interface is the number of objects stored in the map.", "support": { "chrome": { "version_added": "1" @@ -11143,17 +11285,17 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "5" }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11162,21 +11304,21 @@ "version_added": "79" } }, - "title": "Node.cloneNode()" + "title": "NamedNodeMap: length property" } ], - "ref-for-dom-node-comparedocumentposition①": [ + "dom-namednodemap-removenameditem": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "compareDocumentPosition", - "slug": "API/Node/compareDocumentPosition", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition", - "summary": "The compareDocumentPosition() method of the Node interface reports the position of its argument node relative to the node on which it is called.", + "filename": "api/NamedNodeMap.json", + "name": "removeNamedItem", + "slug": "API/NamedNodeMap/removeNamedItem", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/removeNamedItem", + "summary": "The removeNamedItem() method of the NamedNodeMap interface removes the Attr corresponding to the given name from the map.", "support": { "chrome": { "version_added": "1" @@ -11190,8 +11332,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "9", - "notes": "Only supports <code>contains</code> for elements" + "version_added": "6" }, "oculus": "mirror", "opera": { @@ -11201,58 +11342,54 @@ "version_added": "12.1" }, "safari": { - "version_added": "4" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "37" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.compareDocumentPosition()" + "title": "NamedNodeMap: removeNamedItem() method" } ], - "ref-for-dom-node-contains①": [ + "dom-namednodemap-removenameditemns": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "contains", - "slug": "API/Node/contains", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/contains", - "summary": "The contains() method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (childNodes), one of the children's direct children, and so on.", + "filename": "api/NamedNodeMap.json", + "name": "removeNamedItemNS", + "slug": "API/NamedNodeMap/removeNamedItemNS", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/removeNamedItemNS", + "summary": "The removedNamedItemNS() method of the NamedNodeMap interface removes the Attr corresponding to the given namespace and local name from the map.", "support": { "chrome": { - "version_added": "16" + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "9" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9", - "partial_implementation": true, - "notes": "Only supported for <a href='https://developer.mozilla.org/docs/Web/API/HTMLElement'><code>HTMLElement</code></a>, not all <code>Node</code> objects." + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11261,21 +11398,21 @@ "version_added": "79" } }, - "title": "Node.contains()" + "title": "NamedNodeMap: removeNamedItemNS() method" } ], - "ref-for-dom-node-firstchild①": [ + "dom-namednodemap-setnameditem": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "firstChild", - "slug": "API/Node/firstChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/firstChild", - "summary": "The read-only firstChild property of the Node interface returns the node's first child in the tree, or null if the node has no children.", + "filename": "api/NamedNodeMap.json", + "name": "setNamedItem", + "slug": "API/NamedNodeMap/setNamedItem", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/setNamedItem", + "summary": "The setNamedItem() method of the NamedNodeMap interface puts the Attr identified by its name in the map. If there is already an Attr with the same name in the map, it is replaced.", "support": { "chrome": { "version_added": "1" @@ -11308,39 +11445,45 @@ "version_added": "79" } }, - "title": "Node.firstChild" + "title": "NamedNodeMap: setNamedItem() method" } ], - "ref-for-dom-node-getrootnode①": [ + "dom-namednodemap-setnameditemns": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "getRootNode", - "slug": "API/Node/getRootNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode", - "summary": "The getRootNode() method of the Node interface returns the context object's root, which optionally includes the shadow root if it is available.", + "filename": "api/NamedNodeMap.json", + "name": "setNamedItemNS", + "slug": "API/NamedNodeMap/setNamedItemNS", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap/setNamedItemNS", + "summary": "The setNamedItemNS() method of the NamedNodeMap interface puts the Attr identified by its name in the map. If there was already an Attr with the same name in the map, it is replaced.", "support": { "chrome": { - "version_added": "54" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": "53" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { - "version_added": "10.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11349,21 +11492,21 @@ "version_added": "79" } }, - "title": "Node.getRootNode()" + "title": "NamedNodeMap: setNamedItemNS() method" } ], - "ref-for-dom-node-haschildnodes①": [ + "interface-namednodemap": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Node.json", - "name": "hasChildNodes", - "slug": "API/Node/hasChildNodes", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/hasChildNodes", - "summary": "The hasChildNodes() method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.", + "filename": "api/NamedNodeMap.json", + "name": "NamedNodeMap", + "slug": "API/NamedNodeMap", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap", + "summary": "The NamedNodeMap interface represents a collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.", "support": { "chrome": { "version_added": "1" @@ -11372,12 +11515,23 @@ "edge": { "version_added": "12" }, - "firefox": { - "version_added": "1" - }, + "firefox": [ + { + "version_added": "34" + }, + { + "version_added": "1", + "version_removed": "22" + }, + { + "version_added": "22", + "version_removed": "34", + "alternative_name": "MozNamedAttrMap" + } + ], "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "5" }, "oculus": "mirror", "opera": { @@ -11396,10 +11550,10 @@ "version_added": "79" } }, - "title": "Node.hasChildNodes()" + "title": "NamedNodeMap" } ], - "dom-node-insertbefore": [ + "dom-node-appendchild": [ { "engines": [ "blink", @@ -11407,10 +11561,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "insertBefore", - "slug": "API/Node/insertBefore", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore", - "summary": "The insertBefore() method of the Node interface inserts a node before a reference node as a child of a specified parent node.", + "name": "appendChild", + "slug": "API/Node/appendChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild", + "summary": "The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node.", "support": { "chrome": { "version_added": "1" @@ -11424,7 +11578,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "5" }, "oculus": "mirror", "opera": { @@ -11443,10 +11597,10 @@ "version_added": "79" } }, - "title": "Node.insertBefore()" + "title": "Node: appendChild() method" } ], - "ref-for-dom-node-isconnected①": [ + "ref-for-dom-node-baseuri①": [ { "engines": [ "blink", @@ -11454,42 +11608,48 @@ "webkit" ], "filename": "api/Node.json", - "name": "isConnected", - "slug": "API/Node/isConnected", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected", - "summary": "The read-only isConnected property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to the context object, for example the Document object in the case of the normal DOM, or the ShadowRoot in the case of a shadow DOM.", + "name": "baseURI", + "slug": "API/Node/baseURI", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/baseURI", + "summary": "The read-only baseURI property of the Node interface returns the absolute base URL of the document containing the node.", "support": { "chrome": { - "version_added": "51" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": "49" + "version_added": "1" }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { - "version_added": "10" + "version_added": "4" }, - "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "6.0" + "safari_ios": { + "version_added": "1" }, + "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.isConnected" + "title": "Node: baseURI property" } ], - "dom-node-isdefaultnamespace": [ + "ref-for-dom-node-childnodes①": [ { "engines": [ "blink", @@ -11497,10 +11657,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "isDefaultNamespace", - "slug": "API/Node/isDefaultNamespace", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isDefaultNamespace", - "summary": "The isDefaultNamespace() method of the Node interface accepts a namespace URI as an argument. It returns a boolean value that is true if the namespace is the default namespace on the given node and false if not.", + "name": "childNodes", + "slug": "API/Node/childNodes", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/childNodes", + "summary": "The read-only childNodes property of the Node interface returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments.", "support": { "chrome": { "version_added": "1" @@ -11514,31 +11674,29 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "5" }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "7" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "1.2" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.isDefaultNamespace()" + "title": "Node: childNodes property" } ], - "ref-for-dom-node-isequalnode①": [ + "ref-for-dom-node-clonenode①": [ { "engines": [ "blink", @@ -11546,10 +11704,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "isEqualNode", - "slug": "API/Node/isEqualNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isEqualNode", - "summary": "The isEqualNode() method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes.", + "name": "cloneNode", + "slug": "API/Node/cloneNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/cloneNode", + "summary": "The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not.", "support": { "chrome": { "version_added": "1" @@ -11563,31 +11721,29 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "7" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "1.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.isEqualNode()" + "title": "Node: cloneNode() method" } ], - "dom-node-issamenode": [ + "ref-for-dom-node-comparedocumentposition①": [ { "engines": [ "blink", @@ -11595,30 +11751,25 @@ "webkit" ], "filename": "api/Node.json", - "name": "isSameNode", - "slug": "API/Node/isSameNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isSameNode", - "summary": "The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).", + "name": "compareDocumentPosition", + "slug": "API/Node/compareDocumentPosition", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition", + "summary": "The compareDocumentPosition() method of the Node interface reports the position of its argument node relative to the node on which it is called.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, - "firefox": [ - { - "version_added": "48" - }, - { - "version_added": "1", - "version_removed": "10" - } - ], + "firefox": { + "version_added": "1" + }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "9", + "notes": "Only supports <code>contains</code> for elements" }, "oculus": "mirror", "opera": { @@ -11628,21 +11779,21 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "4" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "37" + }, "edge_blink": { "version_added": "79" } }, - "title": "Node.isSameNode()" + "title": "Node: compareDocumentPosition() method" } ], - "ref-for-dom-node-lastchild①": [ + "ref-for-dom-node-contains①": [ { "engines": [ "blink", @@ -11650,36 +11801,36 @@ "webkit" ], "filename": "api/Node.json", - "name": "lastChild", - "slug": "API/Node/lastChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/lastChild", - "summary": "The read-only lastChild property of the Node interface returns the last child of the node. If its parent is an element, then the child is generally an element node, a text node, or a comment node. It returns null if there are no child nodes.", + "name": "contains", + "slug": "API/Node/contains", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/contains", + "summary": "The contains() method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (childNodes), one of the children's direct children, and so on.", "support": { "chrome": { - "version_added": "1" + "version_added": "16" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" - }, - "firefox_android": { - "version_added": "45" + "version_added": "9" }, + "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "9", + "partial_implementation": true, + "notes": "Only supported for <a href='https://developer.mozilla.org/docs/Web/API/HTMLElement'><code>HTMLElement</code></a>, not all <code>Node</code> objects." }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "7" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "1.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11688,10 +11839,10 @@ "version_added": "79" } }, - "title": "Node.lastChild" + "title": "Node: contains() method" } ], - "dom-node-lookupnamespaceuri": [ + "ref-for-dom-node-firstchild①": [ { "engines": [ "blink", @@ -11699,10 +11850,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "lookupNamespaceURI", - "slug": "API/Node/lookupNamespaceURI", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/lookupNamespaceURI", - "summary": "The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not).", + "name": "firstChild", + "slug": "API/Node/firstChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/firstChild", + "summary": "The read-only firstChild property of the Node interface returns the node's first child in the tree, or null if the node has no children.", "support": { "chrome": { "version_added": "1" @@ -11716,7 +11867,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "6" }, "oculus": "mirror", "opera": { @@ -11726,21 +11877,19 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.lookupNamespaceURI()" + "title": "Node: firstChild property" } ], - "dom-node-lookupprefix": [ + "ref-for-dom-node-getrootnode①": [ { "engines": [ "blink", @@ -11748,48 +11897,40 @@ "webkit" ], "filename": "api/Node.json", - "name": "lookupPrefix", - "slug": "API/Node/lookupPrefix", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/lookupPrefix", - "summary": "The lookupPrefix() method of the Node interface returns a string containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned.", + "name": "getRootNode", + "slug": "API/Node/getRootNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode", + "summary": "The getRootNode() method of the Node interface returns the context object's root, which optionally includes the shadow root if it is available.", "support": { "chrome": { - "version_added": "1" + "version_added": "54" }, "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, + "edge": "mirror", "firefox": { - "version_added": "1" + "version_added": "53" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "10.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.lookupPrefix()" + "title": "Node: getRootNode() method" } ], - "ref-for-dom-node-nextsibling①": [ + "ref-for-dom-node-haschildnodes①": [ { "engines": [ "blink", @@ -11797,10 +11938,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "nextSibling", - "slug": "API/Node/nextSibling", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling", - "summary": "The read-only nextSibling property of the Node interface returns the node immediately following the specified one in their parent's childNodes, or returns null if the specified node is the last child in the parent element.", + "name": "hasChildNodes", + "slug": "API/Node/hasChildNodes", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/hasChildNodes", + "summary": "The hasChildNodes() method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.", "support": { "chrome": { "version_added": "1" @@ -11814,17 +11955,17 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5.5" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11833,10 +11974,10 @@ "version_added": "79" } }, - "title": "Node.nextSibling" + "title": "Node: hasChildNodes() method" } ], - "ref-for-dom-node-nodename①": [ + "dom-node-insertbefore": [ { "engines": [ "blink", @@ -11844,10 +11985,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "nodeName", - "slug": "API/Node/nodeName", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeName", - "summary": "The read-only nodeName property of Node returns the name of the current node as a string.", + "name": "insertBefore", + "slug": "API/Node/insertBefore", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore", + "summary": "The insertBefore() method of the Node interface inserts a node before a reference node as a child of a specified parent node.", "support": { "chrome": { "version_added": "1" @@ -11865,13 +12006,13 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "7" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "1.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11880,10 +12021,10 @@ "version_added": "79" } }, - "title": "Node.nodeName" + "title": "Node: insertBefore() method" } ], - "ref-for-dom-node-nodetype①": [ + "ref-for-dom-node-isconnected①": [ { "engines": [ "blink", @@ -11891,46 +12032,42 @@ "webkit" ], "filename": "api/Node.json", - "name": "nodeType", - "slug": "API/Node/nodeType", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType", - "summary": "The read-only nodeType property of a Node interface is an integer that identifies what the node is. It distinguishes different kind of nodes from each other, such as elements, text and comments.", + "name": "isConnected", + "slug": "API/Node/isConnected", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected", + "summary": "The read-only isConnected property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object.", "support": { "chrome": { - "version_added": "1" + "version_added": "51" }, "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, + "edge": "mirror", "firefox": { - "version_added": "1" + "version_added": "49" }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "7" - }, - "opera_android": { - "version_added": "10.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1.1" + "version_added": "10" }, "safari_ios": "mirror", - "samsunginternet_android": "mirror", + "samsunginternet_android": { + "version_added": "6.0" + }, "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.nodeType" + "title": "Node: isConnected property" } ], - "dom-node-nodevalue": [ + "dom-node-isdefaultnamespace": [ { "engines": [ "blink", @@ -11938,10 +12075,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "nodeValue", - "slug": "API/Node/nodeValue", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue", - "summary": "The nodeValue property of the Node interface returns or sets the value of the current node.", + "name": "isDefaultNamespace", + "slug": "API/Node/isDefaultNamespace", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isDefaultNamespace", + "summary": "The isDefaultNamespace() method of the Node interface accepts a namespace URI as an argument. It returns a boolean value that is true if the namespace is the default namespace on the given node and false if not.", "support": { "chrome": { "version_added": "1" @@ -11955,7 +12092,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "9" }, "oculus": "mirror", "opera": { @@ -11965,19 +12102,21 @@ "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.nodeValue" + "title": "Node: isDefaultNamespace() method" } ], - "ref-for-dom-node-normalize①": [ + "ref-for-dom-node-isequalnode①": [ { "engines": [ "blink", @@ -11985,10 +12124,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "normalize", - "slug": "API/Node/normalize", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/normalize", - "summary": "The normalize() method of the Node interface puts the specified node and all of its sub-tree into a normalized form. In a normalized sub-tree, no text nodes in the sub-tree are empty and there are no adjacent text nodes.", + "name": "isEqualNode", + "slug": "API/Node/isEqualNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isEqualNode", + "summary": "The isEqualNode() method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes.", "support": { "chrome": { "version_added": "1" @@ -12012,19 +12151,21 @@ "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.normalize()" + "title": "Node: isEqualNode() method" } ], - "ref-for-dom-node-ownerdocument①": [ + "dom-node-issamenode": [ { "engines": [ "blink", @@ -12032,10 +12173,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "ownerDocument", - "slug": "API/Node/ownerDocument", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument", - "summary": "The read-only ownerDocument property of the Node interface returns the top-level document object of the node.", + "name": "isSameNode", + "slug": "API/Node/isSameNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/isSameNode", + "summary": "The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).", "support": { "chrome": { "version_added": "1" @@ -12046,17 +12187,16 @@ }, "firefox": [ { - "version_added": "9" + "version_added": "48" }, { "version_added": "1", - "version_removed": "9", - "notes": "The <code>ownerDocument</code> of doctype nodes (that is, nodes for which <code>Node.nodeType</code> is <code>Node.DOCUMENT_TYPE_NODE</code> or 10) is <code>null</code>." + "version_removed": "10" } ], "firefox_android": "mirror", "ie": { - "version_added": "6" + "version_added": "9" }, "oculus": "mirror", "opera": { @@ -12066,19 +12206,21 @@ "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.ownerDocument" + "title": "Node: isSameNode() method" } ], - "ref-for-dom-node-parentelement①": [ + "ref-for-dom-node-lastchild①": [ { "engines": [ "blink", @@ -12086,10 +12228,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "parentElement", - "slug": "API/Node/parentElement", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement", - "summary": "The read-only parentElement property of Node interface returns the DOM node's parent Element, or null if the node either has no parent, or its parent isn't a DOM Element.", + "name": "lastChild", + "slug": "API/Node/lastChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/lastChild", + "summary": "The read-only lastChild property of the Node interface returns the last child of the node, or null if there are no child nodes.", "support": { "chrome": { "version_added": "1" @@ -12099,24 +12241,23 @@ "version_added": "12" }, "firefox": { - "version_added": "9" + "version_added": "1" + }, + "firefox_android": { + "version_added": "45" }, - "firefox_android": "mirror", "ie": { - "version_added": "8", - "notes": "Only supported on <code>Element</code>." + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "7", - "notes": "Before Opera 15, this feature was only supported on <code>Element</code>." + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1", - "notes": "Before Opera Android 14, this feature was only supported on <code>Element</code>." + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12125,10 +12266,10 @@ "version_added": "79" } }, - "title": "Node.parentElement" + "title": "Node: lastChild property" } ], - "ref-for-dom-node-parentnode①": [ + "dom-node-lookupnamespaceuri": [ { "engines": [ "blink", @@ -12136,10 +12277,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "parentNode", - "slug": "API/Node/parentNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode", - "summary": "The read-only parentNode property of the Node interface returns the parent of the specified node in the DOM tree.", + "name": "lookupNamespaceURI", + "slug": "API/Node/lookupNamespaceURI", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/lookupNamespaceURI", + "summary": "The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not).", "support": { "chrome": { "version_added": "1" @@ -12153,29 +12294,31 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5.5" + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.parentNode" + "title": "Node: lookupNamespaceURI() method" } ], - "ref-for-dom-node-previoussibling①": [ + "dom-node-lookupprefix": [ { "engines": [ "blink", @@ -12183,10 +12326,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "previousSibling", - "slug": "API/Node/previousSibling", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling", - "summary": "The read-only previousSibling property of the Node interface returns the node immediately preceding the specified one in its parent's childNodes list, or null if the specified node is the first in that list.", + "name": "lookupPrefix", + "slug": "API/Node/lookupPrefix", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/lookupPrefix", + "summary": "The lookupPrefix() method of the Node interface returns a string containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned.", "support": { "chrome": { "version_added": "1" @@ -12200,7 +12343,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5.5" + "version_added": "9" }, "oculus": "mirror", "opera": { @@ -12210,19 +12353,21 @@ "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Node.previousSibling" + "title": "Node: lookupPrefix() method" } ], - "dom-node-removechild": [ + "ref-for-dom-node-nextsibling①": [ { "engines": [ "blink", @@ -12230,10 +12375,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "removeChild", - "slug": "API/Node/removeChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/removeChild", - "summary": "The removeChild() method of the Node interface removes a child node from the DOM and returns the removed node.", + "name": "nextSibling", + "slug": "API/Node/nextSibling", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling", + "summary": "The read-only nextSibling property of the Node interface returns the node immediately following the specified one in their parent's childNodes, or returns null if the specified node is the last child in the parent element.", "support": { "chrome": { "version_added": "1" @@ -12247,7 +12392,7 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "5.5" }, "oculus": "mirror", "opera": { @@ -12266,10 +12411,10 @@ "version_added": "79" } }, - "title": "Node.removeChild()" + "title": "Node: nextSibling property" } ], - "dom-node-replacechild": [ + "ref-for-dom-node-nodename①": [ { "engines": [ "blink", @@ -12277,10 +12422,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "replaceChild", - "slug": "API/Node/replaceChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/replaceChild", - "summary": "The replaceChild() method of the Node element replaces a child node within the given (parent) node.", + "name": "nodeName", + "slug": "API/Node/nodeName", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeName", + "summary": "The read-only nodeName property of Node returns the name of the current node as a string.", "support": { "chrome": { "version_added": "1" @@ -12298,13 +12443,13 @@ }, "oculus": "mirror", "opera": { - "version_added": "7" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "1.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12313,10 +12458,10 @@ "version_added": "79" } }, - "title": "Node.replaceChild()" + "title": "Node: nodeName property" } ], - "dom-node-textcontent": [ + "ref-for-dom-node-nodetype①": [ { "engines": [ "blink", @@ -12324,10 +12469,10 @@ "webkit" ], "filename": "api/Node.json", - "name": "textContent", - "slug": "API/Node/textContent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent", - "summary": "The textContent property of the Node interface represents the text content of the node and its descendants.", + "name": "nodeType", + "slug": "API/Node/nodeType", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType", + "summary": "The read-only nodeType property of a Node interface is an integer that identifies what the node is. It distinguishes different kind of nodes from each other, such as elements, text and comments.", "support": { "chrome": { "version_added": "1" @@ -12341,35 +12486,29 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "7" }, "opera_android": { "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "1.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "caniuse": { - "feature": "textcontent", - "title": "Node.textContent" - }, - "title": "Node.textContent" + "title": "Node: nodeType property" } ], - "interface-node": [ + "dom-node-nodevalue": [ { "engines": [ "blink", @@ -12377,14 +12516,13 @@ "webkit" ], "filename": "api/Node.json", - "name": "Node", - "slug": "API/Node", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node", - "summary": "The DOM Node interface is an abstract base class upon which many other DOM API objects are based, thus letting those object types to be used similarly and often interchangeably. As an abstract class, there is no such thing as a plain Node object. All objects that implement Node functionality are based on one of its subclasses. Most notable are Document, Element, and DocumentFragment.", + "name": "nodeValue", + "slug": "API/Node/nodeValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue", + "summary": "The nodeValue property of the Node interface returns or sets the value of the current node.", "support": { "chrome": { - "version_added": "1", - "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -12395,46 +12533,40 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "7", - "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1", - "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." + "version_added": "12.1" }, "safari": { - "version_added": "1", - "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "37" - }, + "webview_android": "mirror", "edge_blink": { - "version_added": "79", - "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." + "version_added": "79" } }, - "title": "Node" + "title": "Node: nodeValue property" } ], - "dom-nodeiterator-filter": [ + "ref-for-dom-node-normalize①": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "filter", - "slug": "API/NodeIterator/filter", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/filter", - "summary": "The NodeIterator.filter read-only method returns a NodeFilter object, that is an object implement an acceptNode(node) method, used to screen nodes.", + "filename": "api/Node.json", + "name": "normalize", + "slug": "API/Node/normalize", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/normalize", + "summary": "The normalize() method of the Node interface puts the specified node and all of its sub-tree into a normalized form. In a normalized sub-tree, no text nodes in the sub-tree are empty and there are no adjacent text nodes.", "support": { "chrome": { "version_added": "1" @@ -12444,7 +12576,7 @@ "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -12452,38 +12584,36 @@ }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.filter" + "title": "Node: normalize() method" } ], - "dom-nodeiterator-nextnode": [ + "ref-for-dom-node-ownerdocument①": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "nextNode", - "slug": "API/NodeIterator/nextNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/nextNode", - "summary": "The NodeIterator.nextNode() method returns the next node in the set represented by the NodeIterator and advances the position of the iterator within the set. The first call to nextNode() returns the first node in the set.", + "filename": "api/Node.json", + "name": "ownerDocument", + "slug": "API/Node/ownerDocument", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument", + "summary": "The read-only ownerDocument property of the Node interface returns the top-level document object of the node.", "support": { "chrome": { "version_added": "1" @@ -12492,96 +12622,102 @@ "edge": { "version_added": "12" }, - "firefox": { - "version_added": "3.5" - }, + "firefox": [ + { + "version_added": "9" + }, + { + "version_added": "1", + "version_removed": "9", + "notes": "The <code>ownerDocument</code> of doctype nodes (that is, nodes for which <code>Node.nodeType</code> is <code>Node.DOCUMENT_TYPE_NODE</code> or 10) is <code>null</code>." + } + ], "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.nextNode()" + "title": "Node: ownerDocument property" } ], - "dom-nodeiterator-pointerbeforereferencenode": [ + "ref-for-dom-node-parentelement①": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "pointerBeforeReferenceNode", - "slug": "API/NodeIterator/pointerBeforeReferenceNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/pointerBeforeReferenceNode", - "summary": "The NodeIterator.pointerBeforeReferenceNode read-only property returns a boolean flag that indicates whether the NodeFilter is anchored before (if this value is true) or after (if this value is false) the anchor node indicated by the NodeIterator.referenceNode property.", + "filename": "api/Node.json", + "name": "parentElement", + "slug": "API/Node/parentElement", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement", + "summary": "The read-only parentElement property of Node interface returns the DOM node's parent Element, or null if the node either has no parent, or its parent isn't a DOM Element.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "17" + "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "9" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "8", + "notes": "Only supported on <code>Element</code>." }, "oculus": "mirror", "opera": { - "version_added": "15" + "version_added": "7", + "notes": "Before Opera 15, this feature was only supported on <code>Element</code>." }, "opera_android": { - "version_added": "14" + "version_added": "10.1", + "notes": "Before Opera Android 14, this feature was only supported on <code>Element</code>." }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.pointerBeforeReferenceNode" + "title": "Node: parentElement property" } ], - "dom-nodeiterator-previousnode": [ + "ref-for-dom-node-parentnode①": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "previousNode", - "slug": "API/NodeIterator/previousNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/previousNode", - "summary": "The NodeIterator.previousNode() method returns the previous node in the set represented by the NodeIterator and moves the position of the iterator backwards within the set.", + "filename": "api/Node.json", + "name": "parentNode", + "slug": "API/Node/parentNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode", + "summary": "The read-only parentNode property of the Node interface returns the parent of the specified node in the DOM tree.", "support": { "chrome": { "version_added": "1" @@ -12591,95 +12727,91 @@ "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "5.5" }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "7" }, "opera_android": { "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.previousNode()" + "title": "Node: parentNode property" } ], - "dom-nodeiterator-referencenode": [ + "ref-for-dom-node-previoussibling①": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "referenceNode", - "slug": "API/NodeIterator/referenceNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/referenceNode", - "summary": "The NodeIterator.referenceNode read-only returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.", + "filename": "api/Node.json", + "name": "previousSibling", + "slug": "API/Node/previousSibling", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling", + "summary": "The read-only previousSibling property of the Node interface returns the node immediately preceding the specified one in its parent's childNodes list, or null if the specified node is the first in that list.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "17" + "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "5.5" }, "oculus": "mirror", "opera": { - "version_added": "15" + "version_added": "12.1" }, "opera_android": { - "version_added": "14" + "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.referenceNode" + "title": "Node: previousSibling property" } ], - "dom-nodeiterator-root": [ + "dom-node-removechild": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "root", - "slug": "API/NodeIterator/root", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/root", - "summary": "The NodeIterator.root read-only property represents the Node that is the root of what the NodeIterator traverses.", + "filename": "api/Node.json", + "name": "removeChild", + "slug": "API/Node/removeChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/removeChild", + "summary": "The removeChild() method of the Node interface removes a child node from the DOM and returns the removed node.", "support": { "chrome": { "version_added": "1" @@ -12689,46 +12821,44 @@ "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "5" }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "7" }, "opera_android": { "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.root" + "title": "Node: removeChild() method" } ], - "dom-nodeiterator-whattoshow": [ + "dom-node-replacechild": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "whatToShow", - "slug": "API/NodeIterator/whatToShow", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/whatToShow", - "summary": "The NodeIterator.whatToShow read-only property represents an unsigned integer representing a bitmask signifying what types of nodes should be returned by the NodeIterator.", + "filename": "api/Node.json", + "name": "replaceChild", + "slug": "API/Node/replaceChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/replaceChild", + "summary": "The replaceChild() method of the Node interface replaces a child node within the given (parent) node.", "support": { "chrome": { "version_added": "1" @@ -12738,46 +12868,44 @@ "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "6" }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "7" }, "opera_android": { "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeIterator.whatToShow" + "title": "Node: replaceChild() method" } ], - "interface-nodeiterator": [ + "dom-node-textcontent": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeIterator.json", - "name": "NodeIterator", - "slug": "API/NodeIterator", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator", - "summary": "The NodeIterator interface represents an iterator over the members of a list of the nodes in a subtree of the DOM. The nodes will be returned in document order.", + "filename": "api/Node.json", + "name": "textContent", + "slug": "API/Node/textContent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent", + "summary": "The textContent property of the Node interface represents the text content of the node and its descendants.", "support": { "chrome": { "version_added": "1" @@ -12787,7 +12915,7 @@ "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -12804,7 +12932,7 @@ "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -12812,24 +12940,29 @@ "version_added": "79" } }, - "title": "NodeIterator" + "caniuse": { + "feature": "textcontent", + "title": "Node.textContent" + }, + "title": "Node: textContent property" } ], - "ref-for-dom-nodelist-item①": [ + "interface-node": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeList.json", - "name": "item", - "slug": "API/NodeList/item", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList/item", - "summary": "Returns a node from a NodeList by index. This method doesn't throw exceptions as long as you provide arguments. A value of null is returned if the index is out of range, and a TypeError is thrown if no argument is provided.", + "filename": "api/Node.json", + "name": "Node", + "slug": "API/Node", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Node", + "summary": "The DOM Node interface is an abstract base class upon which many other DOM API objects are based, thus letting those object types to be used similarly and often interchangeably. As an abstract class, there is no such thing as a plain Node object. All objects that implement Node functionality are based on one of its subclasses. Most notable are Document, Element, and DocumentFragment.", "support": { "chrome": { - "version_added": "1" + "version_added": "1", + "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." }, "chrome_android": "mirror", "edge": { @@ -12844,36 +12977,42 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "7", + "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1", + "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." }, "safari": { - "version_added": "1" + "version_added": "1", + "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "37" + }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "WebKit and old versions of Blink incorrectly do not make <code>Node</code> inherit from <code>EventTarget</code>." } }, - "title": "NodeList.item()" + "title": "Node" } ], - "ref-for-dom-nodelist-length①": [ + "dom-nodeiterator-filter": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeList.json", - "name": "length", - "slug": "API/NodeList/length", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList/length", - "summary": "The NodeList.length property returns the number of items in a NodeList.", + "filename": "api/NodeIterator.json", + "name": "filter", + "slug": "API/NodeIterator/filter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/filter", + "summary": "The NodeIterator.filter read-only property returns a NodeFilter object, that is an object which implements an acceptNode(node) method, used to screen nodes.", "support": { "chrome": { "version_added": "1" @@ -12883,44 +13022,46 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "9" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeList.length" + "title": "NodeIterator: filter property" } ], - "interface-nodelist": [ + "dom-nodeiterator-nextnode": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/NodeList.json", - "name": "NodeList", - "slug": "API/NodeList", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList", - "summary": "NodeList objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll().", + "filename": "api/NodeIterator.json", + "name": "nextNode", + "slug": "API/NodeIterator/nextNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/nextNode", + "summary": "The NodeIterator.nextNode() method returns the next node in the set represented by the NodeIterator and advances the position of the iterator within the set. The first call to nextNode() returns the first node in the set.", "support": { "chrome": { "version_added": "1" @@ -12930,91 +13071,95 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "8" + "version_added": "9" }, "opera_android": { "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "NodeList" + "title": "NodeIterator: nextNode() method" } ], - "dom-processinginstruction-target": [ + "dom-nodeiterator-pointerbeforereferencenode": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/ProcessingInstruction.json", - "name": "target", - "slug": "API/ProcessingInstruction/target", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction/target", - "summary": "The read-only target property of the ProcessingInstruction interface represent the application to which the ProcessingInstruction is targeted.", + "filename": "api/NodeIterator.json", + "name": "pointerBeforeReferenceNode", + "slug": "API/NodeIterator/pointerBeforeReferenceNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/pointerBeforeReferenceNode", + "summary": "The NodeIterator.pointerBeforeReferenceNode read-only property returns a boolean flag that indicates whether the NodeFilter is anchored before (if this value is true) or after (if this value is false) the anchor node indicated by the NodeIterator.referenceNode property.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "17" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "15" }, "opera_android": { - "version_added": "12.1" + "version_added": "14" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "ProcessingInstruction.target" + "title": "NodeIterator: pointerBeforeReferenceNode property" } ], - "interface-processinginstruction": [ + "dom-nodeiterator-previousnode": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/ProcessingInstruction.json", - "name": "ProcessingInstruction", - "slug": "API/ProcessingInstruction", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction", - "summary": "The ProcessingInstruction interface represents a processing instruction; that is, a Node which embeds an instruction targeting a specific application but that can be ignored by any other applications which don't recognize the instruction.", + "filename": "api/NodeIterator.json", + "name": "previousNode", + "slug": "API/NodeIterator/previousNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/previousNode", + "summary": "The NodeIterator.previousNode() method returns the previous node in the set represented by the NodeIterator and moves the position of the iterator backwards within the set.", "support": { "chrome": { "version_added": "1" @@ -13024,7 +13169,7 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { @@ -13032,79 +13177,87 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "9" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "ProcessingInstruction" + "title": "NodeIterator: previousNode() method" } ], - "ref-for-dom-range-range②": [ + "dom-nodeiterator-referencenode": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "Range", - "slug": "API/Range/Range", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/Range", - "summary": "The Range() constructor returns a newly created Range object whose start and end is the global Document object.", + "filename": "api/NodeIterator.json", + "name": "referenceNode", + "slug": "API/NodeIterator/referenceNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/referenceNode", + "summary": "The NodeIterator.referenceNode read-only property returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.", "support": { "chrome": { - "version_added": "29" + "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "15" + "version_added": "17" }, "firefox": { - "version_added": "24" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "15" + }, + "opera_android": { + "version_added": "14" + }, "safari": { - "version_added": "8" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range()" + "title": "NodeIterator: referenceNode property" } ], - "dom-range-clonecontents": [ + "dom-nodeiterator-root": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "cloneContents", - "slug": "API/Range/cloneContents", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/cloneContents", - "summary": "The Range.cloneContents() returns a DocumentFragment copying the objects of type Node included in the Range.", + "filename": "api/NodeIterator.json", + "name": "root", + "slug": "API/NodeIterator/root", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/root", + "summary": "The NodeIterator.root read-only property represents the Node that is the root of what the NodeIterator traverses.", "support": { "chrome": { "version_added": "1" @@ -13114,7 +13267,7 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { @@ -13128,30 +13281,32 @@ "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.cloneContents()" + "title": "NodeIterator: root property" } ], - "dom-range-clonerange": [ + "dom-nodeiterator-whattoshow": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "cloneRange", - "slug": "API/Range/cloneRange", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/cloneRange", - "summary": "The Range.cloneRange() method returns a Range object with boundary points identical to the cloned Range.", + "filename": "api/NodeIterator.json", + "name": "whatToShow", + "slug": "API/NodeIterator/whatToShow", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/whatToShow", + "summary": "The NodeIterator.whatToShow read-only property represents an unsigned integer representing a bitmask signifying what types of nodes should be returned by the NodeIterator.", "support": { "chrome": { "version_added": "1" @@ -13161,7 +13316,7 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { @@ -13175,30 +13330,32 @@ "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.cloneRange()" + "title": "NodeIterator: whatToShow property" } ], - "dom-range-collapse": [ + "interface-nodeiterator": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "collapse", - "slug": "API/Range/collapse", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/collapse", - "summary": "The Range.collapse() method collapses the Range to one of its boundary points.", + "filename": "api/NodeIterator.json", + "name": "NodeIterator", + "slug": "API/NodeIterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator", + "summary": "The NodeIterator interface represents an iterator to traverse nodes of a DOM subtree in document order.", "support": { "chrome": { "version_added": "1" @@ -13208,7 +13365,7 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { @@ -13222,54 +13379,52 @@ "version_added": "10.1" }, "safari": { - "version_added": "1" + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.collapse()" + "title": "NodeIterator" } ], - "ref-for-dom-range-commonancestorcontainer②": [ + "interface-nodelist": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "commonAncestorContainer", - "slug": "API/Range/commonAncestorContainer", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/commonAncestorContainer", - "summary": "The Range.commonAncestorContainer read-only property returns the deepest — or furthest down the document tree — Node that contains both boundary points of the Range. This means that if Range.startContainer and Range.endContainer both refer to the same node, this node is the common ancestor container.", + "filename": "api/NodeList.json", + "name": "forEach", + "slug": "API/NodeList/forEach", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach", + "summary": "The forEach() method of the NodeList interface calls the callback given in parameter once for each value pair in the list, in insertion order.", "support": { "chrome": { - "version_added": "1" + "version_added": "51" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "16" }, "firefox": { - "version_added": "1" + "version_added": "50" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "9" - }, - "opera_android": { - "version_added": "10.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "10" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -13278,45 +13433,37 @@ "version_added": "79" } }, - "title": "Range.commonAncestorContainer" - } - ], - "dom-range-compareboundarypoints": [ + "title": "NodeList: forEach() method" + }, { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "compareBoundaryPoints", - "slug": "API/Range/compareBoundaryPoints", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/compareBoundaryPoints", - "summary": "The Range.compareBoundaryPoints() method compares the boundary points of the Range with those of another range.", + "filename": "api/NodeList.json", + "name": "@@iterator", + "slug": "JavaScript/Reference/Global_Objects/Array/@@iterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/@@iterator", + "summary": "The [@@iterator]() method of Array instances implements the iterable protocol and allows arrays to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an array iterator object that yields the value of each index in the array.", "support": { "chrome": { - "version_added": "1" + "version_added": "51" }, "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, + "edge": "mirror", "firefox": { - "version_added": "1" + "version_added": "36" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "9" - }, - "opera_android": { - "version_added": "10.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "10" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -13325,70 +13472,66 @@ "version_added": "79" } }, - "title": "Range.compareBoundaryPoints()" - } - ], - "ref-for-dom-range-comparepoint①": [ + "title": "Array.prototype[@@iterator]()" + }, { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "comparePoint", - "slug": "API/Range/comparePoint", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/comparePoint", - "summary": "The Range.comparePoint() method returns -1, 0, or 1 depending on whether the referenceNode is before, the same as, or after the Range.", + "filename": "api/NodeList.json", + "name": "NodeList", + "slug": "API/NodeList", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList", + "summary": "NodeList objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll().", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "17" + "version_added": "12" }, "firefox": { "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "5" }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "8" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.comparePoint()" + "title": "NodeList" } ], - "dom-range-deletecontents": [ + "ref-for-dom-nodelist-item①": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "deleteContents", - "slug": "API/Range/deleteContents", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/deleteContents", - "summary": "The Range.deleteContents() method removes the contents of the Range from the Document.", + "filename": "api/NodeList.json", + "name": "item", + "slug": "API/NodeList/item", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList/item", + "summary": "Returns a node from a NodeList by index. This method doesn't throw exceptions as long as you provide arguments. A value of null is returned if the index is out of range, and a TypeError is thrown if no argument is provided.", "support": { "chrome": { "version_added": "1" @@ -13402,14 +13545,14 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "5" }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "1" @@ -13421,74 +13564,68 @@ "version_added": "79" } }, - "title": "Range.deleteContents()" + "title": "NodeList: item() method" } ], - "dom-range-detach": [ + "ref-for-dom-nodelist-length①": [ { "engines": [ "blink", + "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "detach", - "slug": "API/Range/detach", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/detach", - "summary": "The Range.detach() method does nothing. It used to disable the Range object and enable the browser to release associated resources. The method has been kept for compatibility.", + "filename": "api/NodeList.json", + "name": "length", + "slug": "API/NodeList/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList/length", + "summary": "The NodeList.length property returns the number of items in a NodeList.", "support": { "chrome": { - "version_added": "1", - "notes": "Starting in Chrome 37, this method is a no-op and has no effect." + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1", - "version_removed": "15", - "notes": "Starting in Firefox 15.0, this method is a no-op and has no effect." + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": "5" }, "oculus": "mirror", "opera": { - "version_added": "9", - "notes": "Starting in Opera 24, this method is a no-op and has no effect." + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1", - "notes": "Starting in Opera 24, this method is a no-op and has no effect." + "version_added": "12.1" }, "safari": { - "version_added": "1", - "notes": "Since August 2015 this method is a no-op in <a href='https://webkit.org/b/148454'>WebKit-based browsers</a>." + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79", - "notes": "Starting in Chrome 37, this method is a no-op and has no effect." + "version_added": "79" } }, - "title": "Range.detach()" + "title": "NodeList: length property" } ], - "dom-range-extractcontents": [ + "dom-processinginstruction-target": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "extractContents", - "slug": "API/Range/extractContents", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/extractContents", - "summary": "The Range.extractContents() method moves contents of the Range from the document tree into a DocumentFragment.", + "filename": "api/ProcessingInstruction.json", + "name": "target", + "slug": "API/ProcessingInstruction/target", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction/target", + "summary": "The read-only target property of the ProcessingInstruction interface represent the application to which the ProcessingInstruction is targeted.", "support": { "chrome": { "version_added": "1" @@ -13506,10 +13643,10 @@ }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "1" @@ -13521,21 +13658,21 @@ "version_added": "79" } }, - "title": "Range.extractContents()" + "title": "ProcessingInstruction: target property" } ], - "dom-range-insertnode": [ + "interface-processinginstruction": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Range.json", - "name": "insertNode", - "slug": "API/Range/insertNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/insertNode", - "summary": "The Range.insertNode() method inserts a node at the start of the Range.", + "filename": "api/ProcessingInstruction.json", + "name": "ProcessingInstruction", + "slug": "API/ProcessingInstruction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction", + "summary": "The ProcessingInstruction interface represents a processing instruction; that is, a Node which embeds an instruction targeting a specific application but that can be ignored by any other applications which don't recognize the instruction.", "support": { "chrome": { "version_added": "1" @@ -13553,10 +13690,10 @@ }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "1" @@ -13568,10 +13705,10 @@ "version_added": "79" } }, - "title": "Range.insertNode()" + "title": "ProcessingInstruction" } ], - "ref-for-dom-range-intersectsnode①": [ + "ref-for-dom-range-range②": [ { "engines": [ "blink", @@ -13579,50 +13716,42 @@ "webkit" ], "filename": "api/Range.json", - "name": "intersectsNode", - "slug": "API/Range/intersectsNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/intersectsNode", - "summary": "The Range.intersectsNode() method returns a boolean indicating whether the given Node intersects the Range.", + "name": "Range", + "slug": "API/Range/Range", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/Range", + "summary": "The Range() constructor returns a newly created Range object whose start and end is the global Document object.", "support": { "chrome": { - "version_added": "1" + "version_added": "29" }, "chrome_android": "mirror", "edge": { - "version_added": "17" + "version_added": "15" }, "firefox": { - "version_added": "17" - }, - "firefox_android": { - "version_added": "19" + "version_added": "24" }, + "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "8" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.intersectsNode()" + "title": "Range: Range() constructor" } ], - "dom-range-ispointinrange": [ + "dom-range-clonecontents": [ { "engines": [ "blink", @@ -13630,48 +13759,46 @@ "webkit" ], "filename": "api/Range.json", - "name": "isPointInRange", - "slug": "API/Range/isPointInRange", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/isPointInRange", - "summary": "The Range.isPointInRange() method returns a boolean indicating whether the given point is in the Range. It returns true if the point (cursor position) at offset within ReferenceNode is within this range.", + "name": "cloneContents", + "slug": "API/Range/cloneContents", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/cloneContents", + "summary": "The Range.cloneContents() returns a DocumentFragment copying the objects of type Node included in the Range.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "15" + "version_added": "12" }, "firefox": { "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "9" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.isPointInRange()" + "title": "Range: cloneContents() method" } ], - "dom-range-selectnode": [ + "dom-range-clonerange": [ { "engines": [ "blink", @@ -13679,10 +13806,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "selectNode", - "slug": "API/Range/selectNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/selectNode", - "summary": "The Range.selectNode() method sets the Range to contain the Node and its contents. The parent Node of the start and end of the Range will be the same as the parent of the referenceNode.", + "name": "cloneRange", + "slug": "API/Range/cloneRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/cloneRange", + "summary": "The Range.cloneRange() method returns a Range object with boundary points identical to the cloned Range.", "support": { "chrome": { "version_added": "1" @@ -13715,10 +13842,10 @@ "version_added": "79" } }, - "title": "Range.selectNode()" + "title": "Range: cloneRange() method" } ], - "dom-range-selectnodecontents": [ + "dom-range-collapse": [ { "engines": [ "blink", @@ -13726,10 +13853,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "selectNodeContents", - "slug": "API/Range/selectNodeContents", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/selectNodeContents", - "summary": "The Range.selectNodeContents() method sets the Range to contain the contents of a Node.", + "name": "collapse", + "slug": "API/Range/collapse", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/collapse", + "summary": "The Range.collapse() method collapses the Range to one of its boundary points.", "support": { "chrome": { "version_added": "1" @@ -13762,10 +13889,10 @@ "version_added": "79" } }, - "title": "Range.selectNodeContents()" + "title": "Range: collapse() method" } ], - "dom-range-setend": [ + "ref-for-dom-range-commonancestorcontainer②": [ { "engines": [ "blink", @@ -13773,10 +13900,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "setEnd", - "slug": "API/Range/setEnd", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setEnd", - "summary": "The Range.setEnd() method sets the end position of a Range to be located at the given offset into the specified node x.Setting the end point above (higher in the document) than the start point will result in a collapsed range with the start and end points both set to the specified end position.", + "name": "commonAncestorContainer", + "slug": "API/Range/commonAncestorContainer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/commonAncestorContainer", + "summary": "The Range.commonAncestorContainer read-only property returns the deepest — or furthest down the document tree — Node that contains both boundary points of the Range. This means that if Range.startContainer and Range.endContainer both refer to the same node, this node is the common ancestor container.", "support": { "chrome": { "version_added": "1" @@ -13809,10 +13936,10 @@ "version_added": "79" } }, - "title": "Range.setEnd()" + "title": "Range: commonAncestorContainer property" } ], - "dom-range-setendafter": [ + "dom-range-compareboundarypoints": [ { "engines": [ "blink", @@ -13820,10 +13947,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "setEndAfter", - "slug": "API/Range/setEndAfter", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setEndAfter", - "summary": "The Range.setEndAfter() method sets the end position of a Range relative to another Node. The parent Node of end of the Range will be the same as that for the referenceNode.", + "name": "compareBoundaryPoints", + "slug": "API/Range/compareBoundaryPoints", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/compareBoundaryPoints", + "summary": "The Range.compareBoundaryPoints() method compares the boundary points of the Range with those of another range.", "support": { "chrome": { "version_added": "1" @@ -13856,10 +13983,10 @@ "version_added": "79" } }, - "title": "Range.setEndAfter()" + "title": "Range: compareBoundaryPoints() method" } ], - "dom-range-setendbefore": [ + "ref-for-dom-range-comparepoint①": [ { "engines": [ "blink", @@ -13867,46 +13994,48 @@ "webkit" ], "filename": "api/Range.json", - "name": "setEndBefore", - "slug": "API/Range/setEndBefore", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setEndBefore", - "summary": "The Range.setEndBefore() method sets the end position of a Range relative to another Node. The parent Node of end of the Range will be the same as that for the referenceNode.", + "name": "comparePoint", + "slug": "API/Range/comparePoint", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/comparePoint", + "summary": "The Range.comparePoint() method returns -1, 0, or 1 depending on whether the referenceNode is before, the same as, or after the Range.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "17" }, "firefox": { "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.setEndBefore()" + "title": "Range: comparePoint() method" } ], - "dom-range-setstart": [ + "dom-range-deletecontents": [ { "engines": [ "blink", @@ -13914,10 +14043,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "setStart", - "slug": "API/Range/setStart", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setStart", - "summary": "The Range.setStart() method sets the start position of a Range.", + "name": "deleteContents", + "slug": "API/Range/deleteContents", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/deleteContents", + "summary": "The Range.deleteContents() method removes the contents of the Range from the Document.", "support": { "chrome": { "version_added": "1" @@ -13950,31 +14079,33 @@ "version_added": "79" } }, - "title": "Range.setStart()" + "title": "Range: deleteContents() method" } ], - "dom-range-setstartafter": [ + "dom-range-detach": [ { "engines": [ "blink", - "gecko", "webkit" ], "filename": "api/Range.json", - "name": "setStartAfter", - "slug": "API/Range/setStartAfter", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setStartAfter", - "summary": "The Range.setStartAfter() method sets the start position of a Range relative to a Node. The parent Node of the start of the Range will be the same as that for the referenceNode.", + "name": "detach", + "slug": "API/Range/detach", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/detach", + "summary": "The Range.detach() method does nothing. It used to disable the Range object and enable the browser to release associated resources. The method has been kept for compatibility.", "support": { "chrome": { - "version_added": "1" + "version_added": "1", + "notes": "Starting in Chrome 37, this method is a no-op and has no effect." }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "1", + "version_removed": "15", + "notes": "Starting in Firefox 15.0, this method is a no-op and has no effect." }, "firefox_android": "mirror", "ie": { @@ -13982,25 +14113,29 @@ }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "9", + "notes": "Starting in Opera 24, this method is a no-op and has no effect." }, "opera_android": { - "version_added": "10.1" + "version_added": "10.1", + "notes": "Starting in Opera 24, this method is a no-op and has no effect." }, "safari": { - "version_added": "1" + "version_added": "1", + "notes": "Since August 2015 this method is a no-op in <a href='https://webkit.org/b/148454'>WebKit-based browsers</a>." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Starting in Chrome 37, this method is a no-op and has no effect." } }, - "title": "Range.setStartAfter()" + "title": "Range: detach() method" } ], - "dom-range-setstartbefore": [ + "dom-range-extractcontents": [ { "engines": [ "blink", @@ -14008,10 +14143,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "setStartBefore", - "slug": "API/Range/setStartBefore", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setStartBefore", - "summary": "The Range.setStartBefore() method sets the start position of a Range relative to another Node. The parent Node of the start of the Range will be the same as that for the referenceNode.", + "name": "extractContents", + "slug": "API/Range/extractContents", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/extractContents", + "summary": "The Range.extractContents() method moves contents of the Range from the document tree into a DocumentFragment.", "support": { "chrome": { "version_added": "1" @@ -14044,10 +14179,10 @@ "version_added": "79" } }, - "title": "Range.setStartBefore()" + "title": "Range: extractContents() method" } ], - "dom-range-surroundcontents": [ + "dom-range-insertnode": [ { "engines": [ "blink", @@ -14055,10 +14190,10 @@ "webkit" ], "filename": "api/Range.json", - "name": "surroundContents", - "slug": "API/Range/surroundContents", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/surroundContents", - "summary": "The Range.surroundContents() method moves content of the Range into a new node, placing the new node at the start of the specified range.", + "name": "insertNode", + "slug": "API/Range/insertNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/insertNode", + "summary": "The Range.insertNode() method inserts a node at the start of the Range.", "support": { "chrome": { "version_added": "1" @@ -14091,10 +14226,10 @@ "version_added": "79" } }, - "title": "Range.surroundContents()" + "title": "Range: insertNode() method" } ], - "dom-range-stringifier": [ + "ref-for-dom-range-intersectsnode①": [ { "engines": [ "blink", @@ -14102,46 +14237,50 @@ "webkit" ], "filename": "api/Range.json", - "name": "toString", - "slug": "API/Range/toString", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/toString", - "summary": "The Range.toString() method is a stringifier returning the text of the Range.", + "name": "intersectsNode", + "slug": "API/Range/intersectsNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/intersectsNode", + "summary": "The Range.intersectsNode() method returns a boolean indicating whether the given Node intersects the Range.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "17" }, "firefox": { - "version_added": "1" + "version_added": "17" + }, + "firefox_android": { + "version_added": "19" }, - "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range.toString()" + "title": "Range: intersectsNode() method" } ], - "interface-range": [ + "dom-range-ispointinrange": [ { "engines": [ "blink", @@ -14149,76 +14288,83 @@ "webkit" ], "filename": "api/Range.json", - "name": "Range", - "slug": "API/Range", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range", - "summary": "The Range interface represents a fragment of a document that can contain nodes and parts of text nodes.", + "name": "isPointInRange", + "slug": "API/Range/isPointInRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/isPointInRange", + "summary": "The Range.isPointInRange() method returns a boolean indicating whether the given point is in the Range. It returns true if the point (cursor position) at offset within ReferenceNode is within this range.", "support": { "chrome": { "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "15" }, "firefox": { - "version_added": "1", - "notes": "Starting with Firefox 13, the <code>Range</code> object throws a <code>DOMException</code> as defined in DOM 4, instead of a <code>RangeException</code> defined in prior specifications." + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { + "version_added": "3" + }, + "safari_ios": { "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Range" + "title": "Range: isPointInRange() method" } ], - "shadowroot-delegates-focus": [ + "dom-range-selectnode": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/ShadowRoot.json", - "name": "delegatesFocus", - "slug": "API/ShadowRoot/delegatesFocus", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus", - "summary": "The delegatesFocus read-only property of the ShadowRoot interface returns true if the shadow root delegates focus, and false otherwise.", + "filename": "api/Range.json", + "name": "selectNode", + "slug": "API/Range/selectNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/selectNode", + "summary": "The Range.selectNode() method sets the Range to contain the Node and its contents. The parent Node of the start and end of the Range will be the same as the parent of the referenceNode.", "support": { "chrome": { - "version_added": "53" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": "94" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, "safari": { - "version_added": "15" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -14227,39 +14373,45 @@ "version_added": "79" } }, - "title": "ShadowRoot.delegatesFocus" + "title": "Range: selectNode() method" } ], - "dom-shadowroot-host": [ + "dom-range-selectnodecontents": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/ShadowRoot.json", - "name": "host", - "slug": "API/ShadowRoot/host", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/host", - "summary": "The host read-only property of the ShadowRoot returns a reference to the DOM element the ShadowRoot is attached to.", + "filename": "api/Range.json", + "name": "selectNodeContents", + "slug": "API/Range/selectNodeContents", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/selectNodeContents", + "summary": "The Range.selectNodeContents() method sets the Range to contain the contents of a Node.", "support": { "chrome": { - "version_added": "53" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": "63" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, "safari": { - "version_added": "10" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -14268,40 +14420,46 @@ "version_added": "79" } }, - "title": "ShadowRoot.host" + "title": "Range: selectNodeContents() method" } ], - "dom-shadowroot-mode": [ + "dom-range-setend": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/ShadowRoot.json", - "name": "mode", - "slug": "API/ShadowRoot/mode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/mode", - "summary": "The mode read-only property of the ShadowRoot specifies its mode — either open or closed. This defines whether or not the shadow root's internal features are accessible from JavaScript.", + "filename": "api/Range.json", + "name": "setEnd", + "slug": "API/Range/setEnd", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setEnd", + "summary": "The Range.setEnd() method sets the end position of a Range to be located at the given offset into the specified node x.Setting the end point above (higher in the document) than the start point will result in a collapsed range with the start and end points both set to the specified end position.", "support": { "chrome": { - "version_added": "53" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "63" + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { + "opera": { + "version_added": "9" + }, + "opera_android": { "version_added": "10.1" }, + "safari": { + "version_added": "1" + }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -14309,39 +14467,45 @@ "version_added": "79" } }, - "title": "ShadowRoot.mode" + "title": "Range: setEnd() method" } ], - "interface-shadowroot": [ + "dom-range-setendafter": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/ShadowRoot.json", - "name": "ShadowRoot", - "slug": "API/ShadowRoot", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot", - "summary": "The ShadowRoot interface of the Shadow DOM API is the root node of a DOM subtree that is rendered separately from a document's main DOM tree.", + "filename": "api/Range.json", + "name": "setEndAfter", + "slug": "API/Range/setEndAfter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setEndAfter", + "summary": "The Range.setEndAfter() method sets the end position of a Range relative to another Node. The parent Node of end of the Range will be the same as that for the referenceNode.", "support": { "chrome": { - "version_added": "53" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": "63" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, "safari": { - "version_added": "10" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -14350,86 +14514,93 @@ "version_added": "79" } }, - "title": "ShadowRoot" + "title": "Range: setEndAfter() method" } ], - "ref-for-dom-staticrange-staticrange①": [ + "dom-range-setendbefore": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/StaticRange.json", - "name": "StaticRange", - "slug": "API/StaticRange/StaticRange", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StaticRange/StaticRange", - "summary": "The StaticRange() constructor creates a new StaticRange object representing a span of content within the DOM.", + "filename": "api/Range.json", + "name": "setEndBefore", + "slug": "API/Range/setEndBefore", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setEndBefore", + "summary": "The Range.setEndBefore() method sets the end position of a Range relative to another Node. The parent Node of end of the Range will be the same as that for the referenceNode.", "support": { "chrome": { - "version_added": "90" + "version_added": "1" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": "71" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, "safari": { - "version_added": "13.1" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "90" + "version_added": "79" } }, - "title": "StaticRange()" + "title": "Range: setEndBefore() method" } ], - "interface-staticrange": [ + "dom-range-setstart": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/StaticRange.json", - "name": "StaticRange", - "slug": "API/StaticRange", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StaticRange", - "summary": "The DOM StaticRange interface extends AbstractRange to provide a method to specify a range of content in the DOM whose contents don't update to reflect changes which occur within the DOM tree.", + "filename": "api/Range.json", + "name": "setStart", + "slug": "API/Range/setStart", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setStart", + "summary": "The Range.setStart() method sets the start position of a Range.", "support": { "chrome": { - "version_added": "60" + "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "18" + "version_added": "12" }, "firefox": { - "version_added": "69", - "notes": "In Firefox, <code>StaticRange</code> can currently only be used by browser-internal code or code with enhanced permissions; it is not yet exposed to the web." - }, - "firefox_android": { - "version_added": "79" + "version_added": "1" }, + "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { + "opera": { + "version_added": "9" + }, + "opera_android": { "version_added": "10.1" }, + "safari": { + "version_added": "1" + }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -14437,41 +14608,45 @@ "version_added": "79" } }, - "title": "StaticRange" + "title": "Range: setStart() method" } ], - "ref-for-dom-text-text①": [ + "dom-range-setstartafter": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Text.json", - "name": "Text", - "slug": "API/Text/Text", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text/Text", - "summary": "The Text() constructor returns a new Text object with the optional string given in parameter as its textual content.", + "filename": "api/Range.json", + "name": "setStartAfter", + "slug": "API/Range/setStartAfter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setStartAfter", + "summary": "The Range.setStartAfter() method sets the start position of a Range relative to a Node. The parent Node of the start of the Range will be the same as that for the referenceNode.", "support": { "chrome": { - "version_added": "29" + "version_added": "1" }, "chrome_android": "mirror", "edge": { - "version_added": "16" + "version_added": "12" }, "firefox": { - "version_added": "24" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "9" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, "safari": { - "version_added": "8" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -14480,25 +14655,24 @@ "version_added": "79" } }, - "title": "Text()" + "title": "Range: setStartAfter() method" } ], - "ref-for-dom-text-splittext①": [ + "dom-range-setstartbefore": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Text.json", - "name": "splitText", - "slug": "API/Text/splitText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text/splitText", - "summary": "The splitText() method of the Text interface breaks the Text node into two nodes at the specified offset, keeping both nodes in the tree as siblings.", + "filename": "api/Range.json", + "name": "setStartBefore", + "slug": "API/Range/setStartBefore", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/setStartBefore", + "summary": "The Range.setStartBefore() method sets the start position of a Range relative to another Node. The parent Node of the start of the Range will be the same as that for the referenceNode.", "support": { "chrome": { - "version_added": "1", - "notes": "Before Chrome 30, the <code>offset</code> parameter was optional." + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -14509,47 +14683,40 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "12.1", - "notes": "Before Opera 17, the <code>offset</code> parameter was optional." + "version_added": "9" }, "opera_android": { - "version_added": "12.1", - "notes": "Before Opera 17, the <code>offset</code> parameter was optional." + "version_added": "10.1" }, "safari": { - "version_added": "1", - "notes": "The <code>offset</code> parameter is optional." + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "1", - "notes": "Before version 4.4, the <code>offset</code> parameter was optional." - }, + "webview_android": "mirror", "edge_blink": { - "version_added": "79", - "notes": "Before Chrome 30, the <code>offset</code> parameter was optional." + "version_added": "79" } }, - "title": "Text.splitText()" + "title": "Range: setStartBefore() method" } ], - "ref-for-dom-text-wholetext①": [ + "dom-range-surroundcontents": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Text.json", - "name": "wholeText", - "slug": "API/Text/wholeText", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text/wholeText", - "summary": "The read-only wholeText property of the Text interface returns the full text of all Text nodes logically adjacent to the node. The text is concatenated in document order. This allows specifying any text node and obtaining all adjacent text as a single string.", + "filename": "api/Range.json", + "name": "surroundContents", + "slug": "API/Range/surroundContents", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/surroundContents", + "summary": "The Range.surroundContents() method moves content of the Range into a new node, placing the new node at the start of the specified range.", "support": { "chrome": { "version_added": "1" @@ -14559,7 +14726,7 @@ "version_added": "12" }, "firefox": { - "version_added": "3.5" + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -14567,13 +14734,13 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "9" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { - "version_added": "4" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -14582,21 +14749,21 @@ "version_added": "79" } }, - "title": "Text.wholeText" + "title": "Range: surroundContents() method" } ], - "interface-text": [ + "dom-range-stringifier": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/Text.json", - "name": "Text", - "slug": "API/Text", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text", - "summary": "The Text interface represents a text node in a DOM tree.", + "filename": "api/Range.json", + "name": "toString", + "slug": "API/Range/toString", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range/toString", + "summary": "The Range.toString() method is a stringifier returning the text of the Range.", "support": { "chrome": { "version_added": "1" @@ -14610,42 +14777,40 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "5" + "version_added": "9" }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "9" }, "opera_android": { - "version_added": "12.1" + "version_added": "10.1" }, "safari": { "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "37" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Text" + "title": "Range: toString() method" } ], - "ref-for-dom-treewalker-currentnode①": [ + "interface-range": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "currentNode", - "slug": "API/TreeWalker/currentNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/currentNode", - "summary": "The TreeWalker.currentNode property represents the Node on which the TreeWalker is currently pointing at.", + "filename": "api/Range.json", + "name": "Range", + "slug": "API/Range", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Range", + "summary": "The Range interface represents a fragment of a document that can contain nodes and parts of text nodes.", "support": { "chrome": { "version_added": "1" @@ -14655,7 +14820,8 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1", + "notes": "Starting with Firefox 13, the <code>Range</code> object throws a <code>DOMException</code> as defined in DOM 4, instead of a <code>RangeException</code> defined in prior specifications." }, "firefox_android": "mirror", "ie": { @@ -14669,30 +14835,563 @@ "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.currentNode" + "title": "Range" } ], - "dom-treewalker-filter": [ + "shadowroot-delegates-focus": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", + "filename": "api/ShadowRoot.json", + "name": "delegatesFocus", + "slug": "API/ShadowRoot/delegatesFocus", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus", + "summary": "The delegatesFocus read-only property of the ShadowRoot interface returns true if the shadow root delegates focus, and false otherwise.", + "support": { + "chrome": { + "version_added": "53" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "94" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ShadowRoot: delegatesFocus property" + } + ], + "dom-shadowroot-host": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ShadowRoot.json", + "name": "host", + "slug": "API/ShadowRoot/host", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/host", + "summary": "The host read-only property of the ShadowRoot returns a reference to the DOM element the ShadowRoot is attached to.", + "support": { + "chrome": { + "version_added": "53" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "63" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ShadowRoot: host property" + } + ], + "dom-shadowroot-mode": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ShadowRoot.json", + "name": "mode", + "slug": "API/ShadowRoot/mode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/mode", + "summary": "The mode read-only property of the ShadowRoot specifies its mode — either open or closed. This defines whether or not the shadow root's internal features are accessible from JavaScript.", + "support": { + "chrome": { + "version_added": "53" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "63" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ShadowRoot: mode property" + } + ], + "dom-shadowroot-slotassignment": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ShadowRoot.json", + "name": "slotAssignment", + "slug": "API/ShadowRoot/slotAssignment", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/slotAssignment", + "summary": "The read-only slotAssignment property of the ShadowRoot interface returns the slot assignment mode for the shadow DOM tree. Nodes are either automatically assigned (named) or manually assigned (manual). The value of this property defined using the slotAssignment option when calling Element.attachShadow().", + "support": { + "chrome": { + "version_added": "86" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "92" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "86" + } + }, + "title": "ShadowRoot: slotAssignment property" + } + ], + "interface-shadowroot": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ShadowRoot.json", + "name": "ShadowRoot", + "slug": "API/ShadowRoot", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot", + "summary": "The ShadowRoot interface of the Shadow DOM API is the root node of a DOM subtree that is rendered separately from a document's main DOM tree.", + "support": { + "chrome": { + "version_added": "53" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "63" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ShadowRoot" + } + ], + "ref-for-dom-staticrange-staticrange①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/StaticRange.json", + "name": "StaticRange", + "slug": "API/StaticRange/StaticRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StaticRange/StaticRange", + "summary": "The StaticRange() constructor creates a new StaticRange object representing a span of content within the DOM.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "71" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "13.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "90" + } + }, + "title": "StaticRange: StaticRange() constructor" + } + ], + "interface-staticrange": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/StaticRange.json", + "name": "StaticRange", + "slug": "API/StaticRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StaticRange", + "summary": "The DOM StaticRange interface extends AbstractRange to provide a method to specify a range of content in the DOM whose contents don't update to reflect changes which occur within the DOM tree.", + "support": { + "chrome": { + "version_added": "60" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "18" + }, + "firefox": { + "version_added": "69", + "notes": "In Firefox, <code>StaticRange</code> can currently only be used by browser-internal code or code with enhanced permissions; it is not yet exposed to the web." + }, + "firefox_android": { + "version_added": "79" + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "StaticRange" + } + ], + "ref-for-dom-text-text①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Text.json", + "name": "Text", + "slug": "API/Text/Text", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text/Text", + "summary": "The Text() constructor returns a new Text object with the optional string given in parameter as its textual content.", + "support": { + "chrome": { + "version_added": "29" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "16" + }, + "firefox": { + "version_added": "24" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "8" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Text: Text() constructor" + } + ], + "ref-for-dom-text-splittext①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Text.json", + "name": "splitText", + "slug": "API/Text/splitText", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text/splitText", + "summary": "The splitText() method of the Text interface breaks the Text node into two nodes at the specified offset, keeping both nodes in the tree as siblings.", + "support": { + "chrome": { + "version_added": "1", + "notes": "Before Chrome 30, the <code>offset</code> parameter was optional." + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "5" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1", + "notes": "Before Opera 17, the <code>offset</code> parameter was optional." + }, + "opera_android": { + "version_added": "12.1", + "notes": "Before Opera 17, the <code>offset</code> parameter was optional." + }, + "safari": { + "version_added": "1", + "notes": "The <code>offset</code> parameter is optional." + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "1", + "notes": "Before version 4.4, the <code>offset</code> parameter was optional." + }, + "edge_blink": { + "version_added": "79", + "notes": "Before Chrome 30, the <code>offset</code> parameter was optional." + } + }, + "title": "Text: splitText() method" + } + ], + "ref-for-dom-text-wholetext①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Text.json", + "name": "wholeText", + "slug": "API/Text/wholeText", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text/wholeText", + "summary": "The read-only wholeText property of the Text interface returns the full text of all Text nodes logically adjacent to the node. The text is concatenated in document order. This allows specifying any text node and obtaining all adjacent text as a single string.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Text: wholeText property" + } + ], + "interface-text": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Text.json", + "name": "Text", + "slug": "API/Text", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Text", + "summary": "The Text interface represents a text node in a DOM tree.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "5" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "Text" + } + ], + "ref-for-dom-treewalker-currentnode①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "currentNode", + "slug": "API/TreeWalker/currentNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/currentNode", + "summary": "The TreeWalker.currentNode property represents the Node which the TreeWalker is currently pointing at.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: currentNode property" + } + ], + "dom-treewalker-filter": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", "name": "filter", "slug": "API/TreeWalker/filter", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/filter", @@ -14733,10 +15432,367 @@ "version_added": "79" } }, - "title": "TreeWalker.filter" + "title": "TreeWalker: filter property" + } + ], + "dom-treewalker-firstchild": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "firstChild", + "slug": "API/TreeWalker/firstChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/firstChild", + "summary": "The TreeWalker.firstChild() method moves the current Node to the first visible child of the current node, and returns the found child. If no such child exists, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: firstChild() method" + } + ], + "dom-treewalker-lastchild": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "lastChild", + "slug": "API/TreeWalker/lastChild", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/lastChild", + "summary": "The TreeWalker.lastChild() method moves the current Node to the last visible child of the current node, and returns the found child. If no such child exists, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: lastChild() method" + } + ], + "dom-treewalker-nextnode": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "nextNode", + "slug": "API/TreeWalker/nextNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextNode", + "summary": "The TreeWalker.nextNode() method moves the current Node to the next visible node in the document order, and returns the found node. If no such node exists, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: nextNode() method" + } + ], + "dom-treewalker-nextsibling": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "nextSibling", + "slug": "API/TreeWalker/nextSibling", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextSibling", + "summary": "The TreeWalker.nextSibling() method moves the current Node to its next sibling, if any, and returns the found sibling. If there is no such node, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: nextSibling() method" + } + ], + "dom-treewalker-parentnode": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "parentNode", + "slug": "API/TreeWalker/parentNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/parentNode", + "summary": "The TreeWalker.parentNode() method moves the current Node to the first visible ancestor node in the document order, and returns the found node. If no such node exists, or if it is above the TreeWalker's root node, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: parentNode() method" + } + ], + "dom-treewalker-previousnode": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "previousNode", + "slug": "API/TreeWalker/previousNode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousNode", + "summary": "The TreeWalker.previousNode() method moves the current Node to the previous visible node in the document order, and returns the found node. If no such node exists, or if it is before that the root node defined at the object construction, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: previousNode() method" + } + ], + "dom-treewalker-previoussibling": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/TreeWalker.json", + "name": "previousSibling", + "slug": "API/TreeWalker/previousSibling", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousSibling", + "summary": "The TreeWalker.previousSibling() method moves the current Node to its previous sibling, if any, and returns the found sibling. If there is no such node, it returns null and the current node is not changed.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "TreeWalker: previousSibling() method" } ], - "dom-treewalker-firstchild": [ + "dom-treewalker-root": [ { "engines": [ "blink", @@ -14744,10 +15800,10 @@ "webkit" ], "filename": "api/TreeWalker.json", - "name": "firstChild", - "slug": "API/TreeWalker/firstChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/firstChild", - "summary": "The TreeWalker.firstChild() method moves the current Node to the first visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed.", + "name": "root", + "slug": "API/TreeWalker/root", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/root", + "summary": "The TreeWalker.root read-only property returns the node that is the root of what the TreeWalker traverses.", "support": { "chrome": { "version_added": "1" @@ -14784,10 +15840,10 @@ "version_added": "79" } }, - "title": "TreeWalker.firstChild()" + "title": "TreeWalker: root property" } ], - "dom-treewalker-lastchild": [ + "dom-treewalker-whattoshow": [ { "engines": [ "blink", @@ -14795,10 +15851,10 @@ "webkit" ], "filename": "api/TreeWalker.json", - "name": "lastChild", - "slug": "API/TreeWalker/lastChild", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/lastChild", - "summary": "The TreeWalker.lastChild() method moves the current Node to the last visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed.", + "name": "whatToShow", + "slug": "API/TreeWalker/whatToShow", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/whatToShow", + "summary": "The TreeWalker.whatToShow read-only property returns a bitmask that indicates the types of nodes to show. Non-matching nodes are skipped, but their children may be included, if relevant. The possible values are:", "support": { "chrome": { "version_added": "1" @@ -14835,10 +15891,10 @@ "version_added": "79" } }, - "title": "TreeWalker.lastChild()" + "title": "TreeWalker: whatToShow property" } ], - "dom-treewalker-nextnode": [ + "interface-treewalker": [ { "engines": [ "blink", @@ -14846,10 +15902,10 @@ "webkit" ], "filename": "api/TreeWalker.json", - "name": "nextNode", - "slug": "API/TreeWalker/nextNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextNode", - "summary": "The TreeWalker.nextNode() method moves the current Node to the next visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists, returns null and the current node is not changed.", + "name": "TreeWalker", + "slug": "API/TreeWalker", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker", + "summary": "The TreeWalker object represents the nodes of a document subtree and a position within them.", "support": { "chrome": { "version_added": "1" @@ -14886,21 +15942,128 @@ "version_added": "79" } }, - "title": "TreeWalker.nextNode()" + "title": "TreeWalker" } ], - "dom-treewalker-nextsibling": [ + "xmldocument": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "nextSibling", - "slug": "API/TreeWalker/nextSibling", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextSibling", - "summary": "The TreeWalker.nextSibling() method moves the current Node to its next sibling, if any, and returns the found sibling. If there is no such node, return null and the current node is not changed.", + "filename": "api/XMLDocument.json", + "name": "XMLDocument", + "slug": "API/XMLDocument", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLDocument", + "summary": "The XMLDocument interface represents an XML document. It inherits from the generic Document and does not add any specific methods or properties to it: nevertheless, several algorithms behave differently with the two types of documents.", + "support": { + "chrome": [ + { + "version_added": "34" + }, + { + "version_added": "1", + "version_removed": "34", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ], + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "11" + }, + "oculus": "mirror", + "opera": [ + { + "version_added": "21" + }, + { + "version_added": "12.1", + "version_removed": "21", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ], + "opera_android": [ + { + "version_added": "21" + }, + { + "version_added": "12.1", + "version_removed": "21", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ], + "safari": [ + { + "version_added": "10" + }, + { + "version_added": "3", + "version_removed": "10", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ], + "safari_ios": [ + { + "version_added": "10" + }, + { + "version_added": "1", + "version_removed": "10", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ], + "samsunginternet_android": "mirror", + "webview_android": [ + { + "version_added": "37" + }, + { + "version_added": "1", + "version_removed": "37", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ], + "edge_blink": [ + { + "version_added": "79" + }, + { + "version_added": false, + "version_removed": "34", + "partial_implementation": true, + "notes": "Implemented as an alias for <code>Document</code>." + } + ] + }, + "title": "XMLDocument" + } + ], + "dom-xpathevaluator-xpathevaluator": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XPathEvaluator.json", + "name": "XPathEvaluator", + "slug": "API/XPathEvaluator/XPathEvaluator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/XPathEvaluator", + "summary": "The XPathEvaluator() constructor creates a new XPathEvaluator.", "support": { "chrome": { "version_added": "1" @@ -14910,48 +16073,148 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XPathEvaluator: XPathEvaluator() constructor" + } + ], + "interface-xpathevaluator": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XPathEvaluator.json", + "name": "XPathEvaluator", + "slug": "API/XPathEvaluator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator", + "summary": "The XPathEvaluator interface allows to compile and evaluate XPath expressions.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "caniuse": { + "feature": "document-evaluate-xpath", + "title": "document.evaluate & XPath" + }, + "title": "XPathEvaluator" + } + ], + "dom-xpathexpression-evaluate": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XPathExpression.json", + "name": "evaluate", + "slug": "API/XPathExpression/evaluate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathExpression/evaluate", + "summary": "The evaluate() method of the XPathExpression interface executes an XPath expression on the given node or document and returns an XPathResult.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { "version_added": "3" }, + "safari_ios": { + "version_added": "1" + }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.nextSibling()" + "title": "XPathExpression: evaluate() method" } ], - "dom-treewalker-parentnode": [ + "interface-xpathexpression": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "parentNode", - "slug": "API/TreeWalker/parentNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/parentNode", - "summary": "The TreeWalker.parentNode() method moves the current Node to the first visible ancestor node in the document order, and returns the found node. If no such node exists, or if it is above the TreeWalker's root node, returns null and the current node is not changed.", + "filename": "api/XPathExpression.json", + "name": "XPathExpression", + "slug": "API/XPathExpression", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathExpression", + "summary": "This interface is a compiled XPath expression that can be evaluated on a document or specific node to return information from its DOM tree.", "support": { "chrome": { "version_added": "1" @@ -14961,48 +16224,46 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.parentNode()" + "title": "XPathExpression" } ], - "dom-treewalker-previousnode": [ + "dom-xpathresult-booleanvalue": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "previousNode", - "slug": "API/TreeWalker/previousNode", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousNode", - "summary": "The TreeWalker.previousNode() method moves the current Node to the previous visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists,or if it is before that the root node defined at the object construction, returns null and the current node is not changed.", + "filename": "api/XPathResult.json", + "name": "booleanValue", + "slug": "API/XPathResult/booleanValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/booleanValue", + "summary": "The read-only booleanValue property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being BOOLEAN_TYPE.", "support": { "chrome": { "version_added": "1" @@ -15012,48 +16273,46 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.previousNode()" + "title": "XPathResult: booleanValue property" } ], - "dom-treewalker-previoussibling": [ + "dom-xpathresult-invaliditeratorstate": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "previousSibling", - "slug": "API/TreeWalker/previousSibling", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousSibling", - "summary": "The TreeWalker.previousSibling() method moves the current Node to its previous sibling, if any, and returns the found sibling. If there is no such node, return null and the current node is not changed.", + "filename": "api/XPathResult.json", + "name": "invalidIteratorState", + "slug": "API/XPathResult/invalidIteratorState", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/invalidIteratorState", + "summary": "The read-only invalidIteratorState property of the XPathResult interface signifies that the iterator has become invalid. It is true if XPathResult.resultType is UNORDERED_NODE_ITERATOR_TYPE or ORDERED_NODE_ITERATOR_TYPE and the document has been modified since this result was returned.", "support": { "chrome": { "version_added": "1" @@ -15063,48 +16322,48 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", "webview_android": { - "version_added": "3" + "version_added": "37" }, "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.previousSibling()" + "title": "XPathResult: invalidIteratorState property" } ], - "dom-treewalker-root": [ + "dom-xpathresult-iteratenext": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "root", - "slug": "API/TreeWalker/root", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/root", - "summary": "The TreeWalker.root read-only property returns the node that is the root of what the TreeWalker traverses.", + "filename": "api/XPathResult.json", + "name": "iterateNext", + "slug": "API/XPathResult/iterateNext", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/iterateNext", + "summary": "The iterateNext() method of the XPathResult interface iterates over a node set result and returns the next node from it or null if there are no more nodes.", "support": { "chrome": { "version_added": "1" @@ -15114,48 +16373,46 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.root" + "title": "XPathResult: iterateNext() method" } ], - "dom-treewalker-whattoshow": [ + "dom-xpathresult-numbervalue": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "whatToShow", - "slug": "API/TreeWalker/whatToShow", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/whatToShow", - "summary": "The TreeWalker.whatToShow read-only property returns a bitmask that indicates the types of nodes to show. Non-matching nodes are skipped, but their children may be included, if relevant. The possible values are:", + "filename": "api/XPathResult.json", + "name": "numberValue", + "slug": "API/XPathResult/numberValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/numberValue", + "summary": "The read-only numberValue property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being NUMBER_TYPE.", "support": { "chrome": { "version_added": "1" @@ -15165,48 +16422,46 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker.whatToShow" + "title": "XPathResult: numberValue property" } ], - "interface-treewalker": [ + "dom-xpathresult-resulttype": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/TreeWalker.json", - "name": "TreeWalker", - "slug": "API/TreeWalker", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker", - "summary": "The TreeWalker object represents the nodes of a document subtree and a position within them.", + "filename": "api/XPathResult.json", + "name": "resultType", + "slug": "API/XPathResult/resultType", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/resultType", + "summary": "The read-only resultType property of the XPathResult interface represents the type of the result, as defined by the type constants.", "support": { "chrome": { "version_added": "1" @@ -15216,60 +16471,52 @@ "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", "opera": { - "version_added": "9" + "version_added": "12.1" }, "opera_android": { - "version_added": "10.1" + "version_added": "12.1" }, "safari": { "version_added": "3" }, "safari_ios": { - "version_added": "3" + "version_added": "1" }, "samsunginternet_android": "mirror", "webview_android": { - "version_added": "3" + "version_added": "37" }, "edge_blink": { "version_added": "79" } }, - "title": "TreeWalker" + "title": "XPathResult: resultType property" } ], - "xmldocument": [ + "dom-xpathresult-singlenodevalue": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XMLDocument.json", - "name": "XMLDocument", - "slug": "API/XMLDocument", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLDocument", - "summary": "The XMLDocument interface represents an XML document. It inherits from the generic Document and does not add any specific methods or properties to it: nevertheless, several algorithms behave differently with the two types of documents.", + "filename": "api/XPathResult.json", + "name": "singleNodeValue", + "slug": "API/XPathResult/singleNodeValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/singleNodeValue", + "summary": "The read-only singleNodeValue property of the XPathResult interface returns a Node value or null in case no node was matched of a result with XPathResult.resultType being ANY_UNORDERED_NODE_TYPE or FIRST_ORDERED_NODE_TYPE.", "support": { - "chrome": [ - { - "version_added": "34" - }, - { - "version_added": "1", - "version_removed": "34", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ], + "chrome": { + "version_added": "1" + }, "chrome_android": "mirror", "edge": { "version_added": "12" @@ -15279,92 +16526,42 @@ }, "firefox_android": "mirror", "ie": { - "version_added": "11" + "version_added": false }, "oculus": "mirror", - "opera": [ - { - "version_added": "21" - }, - { - "version_added": "12.1", - "version_removed": "21", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ], - "opera_android": [ - { - "version_added": "21" - }, - { - "version_added": "12.1", - "version_removed": "21", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ], - "safari": [ - { - "version_added": "10" - }, - { - "version_added": "3", - "version_removed": "10", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ], - "safari_ios": [ - { - "version_added": "10" - }, - { - "version_added": "1", - "version_removed": "10", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ], - "samsunginternet_android": "mirror", - "webview_android": [ - { - "version_added": "37" - }, - { - "version_added": "1", - "version_removed": "37", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ], - "edge_blink": [ - { - "version_added": "79" - }, - { - "version_added": false, - "version_removed": "34", - "partial_implementation": true, - "notes": "Implemented as an alias for <code>Document</code>." - } - ] + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } }, - "title": "XMLDocument" + "title": "XPathResult: singleNodeValue property" } ], - "interface-xpathevaluator": [ + "dom-xpathresult-snapshotitem-index-index": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathEvaluator.json", - "name": "XPathEvaluator", - "slug": "API/XPathEvaluator", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator", - "summary": "The XPathEvaluator interface allows to compile and evaluate XPath expressions.", + "filename": "api/XPathResult.json", + "name": "snapshotItem", + "slug": "API/XPathResult/snapshotItem", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/snapshotItem", + "summary": "The snapshotItem() method of the XPathResult interface returns an item of the snapshot collection or null in case the index is not within the range of nodes. Unlike the iterator result, the snapshot does not become invalid, but may not correspond to the current document if it is mutated.", "support": { "chrome": { "version_added": "1" @@ -15399,25 +16596,21 @@ "version_added": "79" } }, - "caniuse": { - "feature": "document-evaluate-xpath", - "title": "document.evaluate & XPath" - }, - "title": "XPathEvaluator" + "title": "XPathResult: snapshotItem() method" } ], - "dom-xpathexpression-evaluate": [ + "dom-xpathresult-snapshotlength": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathExpression.json", - "name": "evaluate", - "slug": "API/XPathExpression/evaluate", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathExpression/evaluate", - "summary": "The evaluate() method of the XPathExpression interface executes an XPath expression on the given node or document and returns an XPathResult.", + "filename": "api/XPathResult.json", + "name": "snapshotLength", + "slug": "API/XPathResult/snapshotLength", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/snapshotLength", + "summary": "The read-only snapshotLength property of the XPathResult interface represents the number of nodes in the result snapshot.", "support": { "chrome": { "version_added": "1" @@ -15452,21 +16645,21 @@ "version_added": "79" } }, - "title": "XPathExpression.evaluate()" + "title": "XPathResult: snapshotLength property" } ], - "interface-xpathexpression": [ + "dom-xpathresult-stringvalue": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathExpression.json", - "name": "XPathExpression", - "slug": "API/XPathExpression", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathExpression", - "summary": "This interface is a compiled XPath expression that can be evaluated on a document or specific node to return information from its DOM tree.", + "filename": "api/XPathResult.json", + "name": "stringValue", + "slug": "API/XPathResult/stringValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/stringValue", + "summary": "The read-only stringValue property of the XPathResult interface returns the string value of a result with XPathResult.resultType being STRING_TYPE.", "support": { "chrome": { "version_added": "1" @@ -15501,10 +16694,10 @@ "version_added": "79" } }, - "title": "XPathExpression" + "title": "XPathResult: stringValue property" } ], - "dom-xpathresult-booleanvalue": [ + "interface-xpathresult": [ { "engines": [ "blink", @@ -15512,10 +16705,10 @@ "webkit" ], "filename": "api/XPathResult.json", - "name": "booleanValue", - "slug": "API/XPathResult/booleanValue", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/booleanValue", - "summary": "The read-only booleanValue property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being BOOLEAN_TYPE.", + "name": "XPathResult", + "slug": "API/XPathResult", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult", + "summary": "The XPathResult interface represents the results generated by evaluating an XPath expression within the context of a given node.", "support": { "chrome": { "version_added": "1" @@ -15550,21 +16743,21 @@ "version_added": "79" } }, - "title": "XPathResult.booleanValue" + "title": "XPathResult" } ], - "dom-xpathresult-invaliditeratorstate": [ + "dom-xsltprocessor-xsltprocessor": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "invalidIteratorState", - "slug": "API/XPathResult/invalidIteratorState", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/invalidIteratorState", - "summary": "The read-only invalidIteratorState property of the XPathResult interface signifies that the iterator has become invalid. It is true if XPathResult.resultType is UNORDERED_NODE_ITERATOR_TYPE or ORDERED_NODE_ITERATOR_TYPE and the document has been modified since this result was returned.", + "filename": "api/XSLTProcessor.json", + "name": "XSLTProcessor", + "slug": "API/XSLTProcessor/XSLTProcessor", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/XSLTProcessor", + "summary": "The XSLTProcessor() constructor creates a new XSLTProcessor object instance.", "support": { "chrome": { "version_added": "1" @@ -15588,34 +16781,32 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { - "version_added": "37" + "version_added": "3" }, "edge_blink": { "version_added": "79" } }, - "title": "XPathResult.invalidIteratorState" + "title": "XSLTProcessor: XSLTProcessor() constructor" } ], - "dom-xpathresult-iteratenext": [ + "dom-xsltprocessor-clearparameters": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "iterateNext", - "slug": "API/XPathResult/iterateNext", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/iterateNext", - "summary": "The iterateNext() method of the XPathResult interface iterates over a node set result and returns the next node from it or null if there are no more nodes.", + "filename": "api/XSLTProcessor.json", + "name": "clearParameters", + "slug": "API/XSLTProcessor/clearParameters", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/clearParameters", + "summary": "The clearParameters() method of the XSLTProcessor interface removes all parameters (<xsl:param>) and their values from the stylesheet imported in the processor. The XSLTProcessor will then use the default values specified in the XSLT stylesheet.", "support": { "chrome": { "version_added": "1" @@ -15639,35 +16830,36 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3" + }, "edge_blink": { "version_added": "79" } }, - "title": "XPathResult.iterateNext()" + "title": "XSLTProcessor: clearParameters() method" } ], - "dom-xpathresult-numbervalue": [ + "dom-xsltprocessor-getparameter": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "numberValue", - "slug": "API/XPathResult/numberValue", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/numberValue", - "summary": "The read-only numberValue property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being NUMBER_TYPE.", + "filename": "api/XSLTProcessor.json", + "name": "getParameter", + "slug": "API/XSLTProcessor/getParameter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/getParameter", + "summary": "The getParameter() method of the XSLTProcessor interface returns the value of a parameter (<xsl:param>) from the stylesheet imported in the processor.", "support": { "chrome": { - "version_added": "1" + "version_added": "1", + "notes": "Chrome only supports string values." }, "chrome_android": "mirror", "edge": { @@ -15682,38 +16874,43 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "12.1", + "notes": "Opera only supports string values." }, "opera_android": { - "version_added": "12.1" + "version_added": "12.1", + "notes": "Opera only supports string values." }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1", + "notes": "Safari only supports string values." }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3", + "notes": "WebView only supports string values." + }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Chrome only supports string values." } }, - "title": "XPathResult.numberValue" + "title": "XSLTProcessor: getParameter() method" } ], - "dom-xpathresult-resulttype": [ + "dom-xsltprocessor-importstylesheet": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "resultType", - "slug": "API/XPathResult/resultType", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/resultType", - "summary": "The read-only resultType property of the XPathResult interface represents the type of the result, as defined by the type constants.", + "filename": "api/XSLTProcessor.json", + "name": "importStylesheet", + "slug": "API/XSLTProcessor/importStylesheet", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/importStylesheet", + "summary": "The importStylesheet() method of the XSLTProcessor interface imports an XSLT stylesheet for the processor.", "support": { "chrome": { "version_added": "1" @@ -15737,34 +16934,32 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { - "version_added": "37" + "version_added": "3" }, "edge_blink": { "version_added": "79" } }, - "title": "XPathResult.resultType" + "title": "XSLTProcessor: importStylesheet() method" } ], - "dom-xpathresult-singlenodevalue": [ + "dom-xsltprocessor-removeparameter": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "singleNodeValue", - "slug": "API/XPathResult/singleNodeValue", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/singleNodeValue", - "summary": "The read-only singleNodeValue property of the XPathResult interface returns a Node value or null in case no node was matched of a result with XPathResult.resultType being ANY_UNORDERED_NODE_TYPE or FIRST_ORDERED_NODE_TYPE.", + "filename": "api/XSLTProcessor.json", + "name": "removeParameter", + "slug": "API/XSLTProcessor/removeParameter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/removeParameter", + "summary": "The removeParameter() method of the XSLTProcessor interface removes the parameter (<xsl:param>) and its value from the stylesheet imported in the processor.", "support": { "chrome": { "version_added": "1" @@ -15788,32 +16983,32 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3" + }, "edge_blink": { "version_added": "79" } }, - "title": "XPathResult.singleNodeValue" + "title": "XSLTProcessor: removeParameter() method" } ], - "dom-xpathresult-snapshotitem-index-index": [ + "dom-xsltprocessor-reset": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "snapshotItem", - "slug": "API/XPathResult/snapshotItem", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/snapshotItem", - "summary": "The snapshotItem() method of the XPathResult interface returns an item of the snapshot collection or null in case the index is not within the range of nodes. Unlike the iterator result, the snapshot does not become invalid, but may not correspond to the current document if it is mutated.", + "filename": "api/XSLTProcessor.json", + "name": "reset", + "slug": "API/XSLTProcessor/reset", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/reset", + "summary": "The reset() method of the XSLTProcessor interface removes all parameters (<xsl:param>) and the XSLT stylesheet from the processor. The XSLTProcessor will then be in its original state when it was created.", "support": { "chrome": { "version_added": "1" @@ -15837,35 +17032,36 @@ "version_added": "12.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3" + }, "edge_blink": { "version_added": "79" } }, - "title": "XPathResult.snapshotItem()" + "title": "XSLTProcessor: reset() method" } ], - "dom-xpathresult-snapshotlength": [ + "dom-xsltprocessor-setparameter": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "snapshotLength", - "slug": "API/XPathResult/snapshotLength", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/snapshotLength", - "summary": "The read-only snapshotLength property of the XPathResult interface represents the number of nodes in the result snapshot.", + "filename": "api/XSLTProcessor.json", + "name": "setParameter", + "slug": "API/XSLTProcessor/setParameter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/setParameter", + "summary": "The setParameter() method of the XSLTProcessor interface sets the value of a parameter (<xsl:param>) in the stylesheet imported in the processor.", "support": { "chrome": { - "version_added": "1" + "version_added": "1", + "notes": "Chrome only supports string values." }, "chrome_android": "mirror", "edge": { @@ -15880,48 +17076,55 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "12.1", + "notes": "Opera only supports string values." }, "opera_android": { - "version_added": "12.1" + "version_added": "12.1", + "notes": "Opera only supports string values." }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1", + "notes": "Safari only supports string values." }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3", + "notes": "WebView only supports string values." + }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Chrome only supports string values." } }, - "title": "XPathResult.snapshotLength" + "title": "XSLTProcessor: setParameter() method" } ], - "dom-xpathresult-stringvalue": [ + "dom-xsltprocessor-transformtodocument": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "stringValue", - "slug": "API/XPathResult/stringValue", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult/stringValue", - "summary": "The read-only stringValue property of the XPathResult interface returns the string value of a result with XPathResult.resultType being STRING_TYPE.", + "filename": "api/XSLTProcessor.json", + "name": "transformToDocument", + "slug": "API/XSLTProcessor/transformToDocument", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/transformToDocument", + "summary": "The transformToDocument() method of the XSLTProcessor interface transforms the provided Node source to a Document using the XSLT stylesheet associated with XSLTProcessor.", "support": { "chrome": { - "version_added": "1" + "version_added": "1", + "notes": "Chrome returns <code>null</code> if an error occurs." }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "1", + "notes": "Firefox throws an exception if an error occurs." }, "firefox_android": "mirror", "ie": { @@ -15929,48 +17132,61 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "12.1", + "notes": [ + "Opera 12.1 and earlier throws an exception if an error occurs.", + "Opera 15 and later returns <code>null</code> if an error occurs." + ] }, "opera_android": { - "version_added": "12.1" + "version_added": "12.1", + "notes": [ + "Opera Android 12.1 and earlier throws an exception if an error occurs.", + "Opera Android 14 and later returns <code>null</code> if an error occurs." + ] }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1", + "notes": "Safari returns <code>null</code> if an error occurs." }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3", + "notes": "WebView returns <code>null</code> if an error occurs." + }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Chrome returns <code>null</code> if an error occurs." } }, - "title": "XPathResult.stringValue" + "title": "XSLTProcessor: transformToDocument() method" } ], - "interface-xpathresult": [ + "dom-xsltprocessor-transformtofragment": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XPathResult.json", - "name": "XPathResult", - "slug": "API/XPathResult", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XPathResult", - "summary": "The XPathResult interface represents the results generated by evaluating an XPath expression within the context of a given node.", + "filename": "api/XSLTProcessor.json", + "name": "transformToFragment", + "slug": "API/XSLTProcessor/transformToFragment", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor/transformToFragment", + "summary": "The transformToFragment() method of the XSLTProcessor interface transforms a provided Node source to a DocumentFragment using the XSLT stylesheet associated with the XSLTProcessor.", "support": { "chrome": { - "version_added": "1" + "version_added": "1", + "notes": "Chrome returns <code>null</code> if an error occurs." }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "1", + "notes": "Firefox throws an exception if an error occurs." }, "firefox_android": "mirror", "ie": { @@ -15978,24 +17194,35 @@ }, "oculus": "mirror", "opera": { - "version_added": "12.1" + "version_added": "12.1", + "notes": [ + "Opera 12.1 and earlier throws an exception if an error occurs.", + "Opera 15 and later returns <code>null</code> if an error occurs." + ] }, "opera_android": { - "version_added": "12.1" + "version_added": "12.1", + "notes": [ + "Opera Android 12.1 and earlier throws an exception if an error occurs.", + "Opera Android 14 and later returns <code>null</code> if an error occurs." + ] }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "1" + "version_added": "3.1", + "notes": "Safari returns <code>null</code> if an error occurs." }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "3", + "notes": "WebView returns <code>null</code> if an error occurs." + }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "notes": "Chrome returns <code>null</code> if an error occurs." } }, - "title": "XPathResult" + "title": "XSLTProcessor: transformToFragment() method" } ], "interface-xsltprocessor": [ diff --git a/bikeshed/spec-data/readonly/mdn/draft-ietf-httpbis-rfc6265bis.json b/bikeshed/spec-data/readonly/mdn/draft-ietf-httpbis-rfc6265bis.json index f472b47a2e..75cbdcb753 100644 --- a/bikeshed/spec-data/readonly/mdn/draft-ietf-httpbis-rfc6265bis.json +++ b/bikeshed/spec-data/readonly/mdn/draft-ietf-httpbis-rfc6265bis.json @@ -8,9 +8,9 @@ ], "filename": "http/headers/Set-Cookie.json", "name": "SameSite", - "slug": "HTTP/Headers/Set-Cookie/SameSite", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite", - "summary": "The SameSite attribute of the Set-Cookie HTTP response header allows you to declare if your cookie should be restricted to a first-party or same-site context.", + "slug": "HTTP/Headers/Set-Cookie#samesitesamesite-value", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value", + "summary": "The Set-Cookie HTTP response header is used to send a cookie from the server to the user agent, so that the user agent can send it back to the server later. To send multiple cookies, multiple Set-Cookie headers should be sent in the same response.", "support": { "chrome": { "version_added": "51" @@ -58,7 +58,7 @@ "version_added": "79" } }, - "title": "SameSite cookies" + "title": "Set-Cookie" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/ecma-402.json b/bikeshed/spec-data/readonly/mdn/ecma-402.json index 0e4e8269bd..75965749dc 100644 --- a/bikeshed/spec-data/readonly/mdn/ecma-402.json +++ b/bikeshed/spec-data/readonly/mdn/ecma-402.json @@ -275,7 +275,7 @@ "name": "Collator", "slug": "JavaScript/Reference/Global_Objects/Intl/Collator/Collator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator", - "summary": "The Intl.Collator() constructor creates Intl.Collator objects that enable language-sensitive string comparison.", + "summary": "The Intl.Collator() constructor creates Intl.Collator objects.", "support": { "chrome": { "version_added": "24" @@ -333,7 +333,7 @@ "name": "compare", "slug": "JavaScript/Reference/Global_Objects/Intl/Collator/compare", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/compare", - "summary": "The Intl.Collator.prototype.compare() method compares two strings according to the sort order of this Intl.Collator object.", + "summary": "The compare() method of Intl.Collator instances compares two strings according to the sort order of this collator object.", "support": { "chrome": { "version_added": "24" @@ -385,7 +385,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/Collator/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/resolvedOptions", - "summary": "The Intl.Collator.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and collation options computed during initialization of this Intl.Collator object.", + "summary": "The resolvedOptions() method of Intl.Collator instances returns a new object with properties reflecting the locale and collation options computed during initialization of this collator object.", "support": { "chrome": { "version_added": "24" @@ -437,7 +437,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/Collator/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/supportedLocalesOf", - "summary": "The Intl.Collator.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in collation without having to fall back to the runtime's default locale.", + "summary": "The Intl.Collator.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in collation without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "24" @@ -547,7 +547,7 @@ "name": "DateTimeFormat", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat", - "summary": "The Intl.DateTimeFormat() constructor creates Intl.DateTimeFormat objects that enable language-sensitive date and time formatting.", + "summary": "The Intl.DateTimeFormat() constructor creates Intl.DateTimeFormat objects.", "support": { "chrome": { "version_added": "24" @@ -605,7 +605,7 @@ "name": "format", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/format", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/format", - "summary": "The Intl.DateTimeFormat.prototype.format() method formats a date according to the locale and formatting options of this Intl.DateTimeFormat object.", + "summary": "The format() method of Intl.DateTimeFormat instances formats a date according to the locale and formatting options of this Intl.DateTimeFormat object.", "support": { "chrome": { "version_added": "24" @@ -657,7 +657,7 @@ "name": "formatRange", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatRange", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatRange", - "summary": "The Intl.DateTimeFormat.prototype.formatRange() formats a date range in the most concise way based on the locale and options provided when instantiating Intl.DateTimeFormat object.", + "summary": "The formatRange() method of Intl.DateTimeFormat instances formats a date range in the most concise way based on the locales and options provided when instantiating this Intl.DateTimeFormat object.", "support": { "chrome": { "version_added": "76" @@ -705,7 +705,7 @@ "name": "formatRangeToParts", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatRangeToParts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatRangeToParts", - "summary": "The Intl.DateTimeFormat.prototype.formatRangeToParts() method returns an array of locale-specific tokens representing each part of the formatted date range produced by Intl.DateTimeFormat formatters.", + "summary": "The formatRangeToParts() method of Intl.DateTimeFormat instances returns an array of locale-specific tokens representing each part of the formatted date range produced by this Intl.DateTimeFormat object.", "support": { "chrome": { "version_added": "76" @@ -753,7 +753,7 @@ "name": "formatToParts", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatToParts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatToParts", - "summary": "The Intl.DateTimeFormat.prototype.formatToParts() method allows locale-aware formatting of strings produced by Intl.DateTimeFormat formatters.", + "summary": "The formatToParts() method of Intl.DateTimeFormat instances allows locale-aware formatting of strings produced by this Intl.DateTimeFormat object.", "support": { "chrome": { "version_added": "57", @@ -819,7 +819,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/resolvedOptions", - "summary": "The Intl.DateTimeFormat.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this Intl.DateTimeFormat object.", + "summary": "The resolvedOptions() method of Intl.DateTimeFormat instances returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this Intl.DateTimeFormat object.", "support": { "chrome": { "version_added": "24" @@ -871,7 +871,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/supportedLocalesOf", - "summary": "The Intl.DateTimeFormat.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in date and time formatting without having to fall back to the runtime's default locale.", + "summary": "The Intl.DateTimeFormat.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in date and time formatting without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "24" @@ -981,7 +981,7 @@ "name": "DisplayNames", "slug": "JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames", - "summary": "The Intl.DisplayNames() constructor creates Intl.DisplayNames objects that enable the consistent translation of language, region and script display names.", + "summary": "The Intl.DisplayNames() constructor creates Intl.DisplayNames objects.", "support": { "chrome": { "version_added": "81" @@ -1028,7 +1028,7 @@ "name": "of", "slug": "JavaScript/Reference/Global_Objects/Intl/DisplayNames/of", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/of", - "summary": "The Intl.DisplayNames.prototype.of() method receives a code and returns a string based on the locale and options provided when instantiating Intl.DisplayNames.", + "summary": "The of() method of Intl.DisplayNames instances receives a code and returns a string based on the locale and options provided when instantiating this Intl.DisplayNames object.", "support": { "chrome": { "version_added": "81" @@ -1075,7 +1075,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/DisplayNames/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/resolvedOptions", - "summary": "The Intl.DisplayNames.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and style formatting options computed during the construction of the current Intl.DisplayNames object.", + "summary": "The resolvedOptions() method of Intl.DisplayNames instances returns a new object with properties reflecting the locale and style formatting options computed during the construction of this Intl.DisplayNames object.", "support": { "chrome": { "version_added": "81" @@ -1122,7 +1122,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/DisplayNames/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/supportedLocalesOf", - "summary": "The Intl.DisplayNames.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in display names without having to fall back to the runtime's default locale.", + "summary": "The Intl.DisplayNames.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in display names without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "81" @@ -1216,7 +1216,7 @@ "name": "ListFormat", "slug": "JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat", - "summary": "The Intl.ListFormat() constructor creates Intl.ListFormat objects that enable language-sensitive list formatting.", + "summary": "The Intl.ListFormat() constructor creates Intl.ListFormat objects.", "support": { "chrome": { "version_added": "72" @@ -1324,7 +1324,7 @@ "name": "formatToParts", "slug": "JavaScript/Reference/Global_Objects/Intl/ListFormat/formatToParts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/formatToParts", - "summary": "The Intl.ListFormat.prototype.formatToParts() method returns an Array of objects representing the different components that can be used to format a list of values in a locale-aware fashion.", + "summary": "The formatToParts() method of Intl.ListFormat instances returns an Array of objects representing the different components that can be used to format a list of values in a locale-aware fashion.", "support": { "chrome": { "version_added": "72" @@ -1375,7 +1375,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/ListFormat/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/resolvedOptions", - "summary": "The Intl.ListFormat.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and style formatting options computed during the construction of the current Intl.ListFormat object.", + "summary": "The resolvedOptions() method of Intl.ListFormat instances returns a new object with properties reflecting the locale and style formatting options computed during the construction of this Intl.ListFormat object.", "support": { "chrome": { "version_added": "72" @@ -1426,7 +1426,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf", - "summary": "The Intl.ListFormat.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in list formatting without having to fall back to the runtime's default locale.", + "summary": "The Intl.ListFormat.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in list formatting without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "72" @@ -1534,7 +1534,7 @@ "name": "Locale", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/Locale", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/Locale", - "summary": "The Intl.Locale constructor is a standard built-in property of the Intl object that represents a Unicode locale identifier.", + "summary": "The Intl.Locale() constructor creates Intl.Locale objects.", "support": { "chrome": { "version_added": "74" @@ -1581,7 +1581,7 @@ "name": "baseName", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/baseName", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/baseName", - "summary": "The Intl.Locale.prototype.baseName property returns a substring of the Locale's string representation, containing core information about the Locale.", + "summary": "The baseName accessor property of Intl.Locale instances returns a substring of this locale's string representation, containing core information about this locale.", "support": { "chrome": { "version_added": "74" @@ -1628,7 +1628,7 @@ "name": "calendar", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/calendar", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/calendar", - "summary": "The Intl.Locale.prototype.calendar property is an accessor property which returns the type of calendar used in the Locale.", + "summary": "The calendar accessor property of Intl.Locale instances returns the calendar type for this locale.", "support": { "chrome": { "version_added": "74" @@ -1675,7 +1675,7 @@ "name": "caseFirst", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/caseFirst", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/caseFirst", - "summary": "The Intl.Locale.prototype.caseFirst property is an accessor property that returns whether case is taken into account for the locale's collation rules.", + "summary": "The caseFirst accessor property of Intl.Locale instances returns whether case is taken into account for this locale's collation rules.", "support": { "chrome": { "version_added": "74" @@ -1722,7 +1722,7 @@ "name": "collation", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/collation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/collation", - "summary": "The Intl.Locale.prototype.collation property is an accessor property that returns the collation type for the Locale, which is used to order strings according to the locale's rules.", + "summary": "The collation accessor property of Intl.Locale instances returns the collation type for this locale, which is used to order strings according to the locale's rules.", "support": { "chrome": { "version_added": "74" @@ -1769,7 +1769,7 @@ "name": "hourCycle", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/hourCycle", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/hourCycle", - "summary": "The Intl.Locale.prototype.hourCycle property is an accessor property that returns the time keeping format convention used by the locale.", + "summary": "The hourCycle accessor property of Intl.Locale instances returns the hour cycle type for this locale.", "support": { "chrome": { "version_added": "74" @@ -1816,7 +1816,7 @@ "name": "language", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/language", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/language", - "summary": "The Intl.Locale.prototype.language property is an accessor property that returns the language associated with the locale.", + "summary": "The language accessor property of Intl.Locale instances returns the language associated with this locale.", "support": { "chrome": { "version_added": "74" @@ -1863,7 +1863,7 @@ "name": "maximize", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/maximize", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/maximize", - "summary": "The Intl.Locale.prototype.maximize() method gets the most likely values for the language, script, and region of the locale based on existing values.", + "summary": "The maximize() method of Intl.Locale instances gets the most likely values for the language, script, and region of this locale based on existing values.", "support": { "chrome": { "version_added": "74" @@ -1910,7 +1910,7 @@ "name": "minimize", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/minimize", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/minimize", - "summary": "The Intl.Locale.prototype.minimize() method attempts to remove information about the locale that would be added by calling maximize().", + "summary": "The minimize() method of Intl.Locale instances attempts to remove information about this locale that would be added by calling maximize().", "support": { "chrome": { "version_added": "74" @@ -1957,7 +1957,7 @@ "name": "numberingSystem", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/numberingSystem", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/numberingSystem", - "summary": "The Intl.Locale.prototype.numberingSystem property is an accessor property that returns the numeral system used by the locale.", + "summary": "The numberingSystem accessor property of Intl.Locale instances returns the numeral system for this locale.", "support": { "chrome": { "version_added": "74" @@ -2004,7 +2004,7 @@ "name": "numeric", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/numeric", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/numeric", - "summary": "The Intl.Locale.prototype.numeric property is an accessor property that returns whether the locale has special collation handling for numeric characters.", + "summary": "The numeric accessor property of Intl.Locale instances returns whether this locale has special collation handling for numeric characters.", "support": { "chrome": { "version_added": "74" @@ -2051,7 +2051,7 @@ "name": "region", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/region", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/region", - "summary": "The Intl.Locale.prototype.region property is an accessor property that returns the region of the world (usually a country) associated with the locale.", + "summary": "The region accessor property of Intl.Locale instances returns the region of the world (usually a country) associated with this locale.", "support": { "chrome": { "version_added": "74" @@ -2098,7 +2098,7 @@ "name": "script", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/script", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/script", - "summary": "The Intl.Locale.prototype.script property is an accessor property which returns the script used for writing the particular language used in the locale.", + "summary": "The script accessor property of Intl.Locale instances returns the script used for writing the particular language used in this locale.", "support": { "chrome": { "version_added": "74" @@ -2145,7 +2145,7 @@ "name": "toString", "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/toString", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/toString", - "summary": "The Intl.Locale.prototype.toString() method returns the Locale's full locale identifier string.", + "summary": "The toString() method of Intl.Locale instances returns this Locale's full locale identifier string.", "support": { "chrome": { "version_added": "74" @@ -2239,7 +2239,7 @@ "name": "NumberFormat", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat", - "summary": "The Intl.NumberFormat() constructor creates Intl.NumberFormat objects that enable language-sensitive number formatting.", + "summary": "The Intl.NumberFormat() constructor creates Intl.NumberFormat objects.", "support": { "chrome": { "version_added": "24" @@ -2297,7 +2297,7 @@ "name": "format", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/format", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/format", - "summary": "The Intl.NumberFormat.prototype.format() method formats a number according to the locale and formatting options of this Intl.NumberFormat object.", + "summary": "The format() method of Intl.NumberFormat instances formats a number according to the locale and formatting options of this Intl.NumberFormat object.", "support": { "chrome": { "version_added": "24" @@ -2339,6 +2339,100 @@ "title": "Intl.NumberFormat.prototype.format()" } ], + "sec-intl.numberformat.prototype.formatrange": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Intl/NumberFormat.json", + "name": "formatRange", + "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRange", + "summary": "The formatRange() method of Intl.NumberFormat instances formats a range of numbers according to the locale and formatting options of this Intl.NumberFormat object.", + "support": { + "chrome": { + "version_added": "106" + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "116" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "19.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "106" + } + }, + "title": "Intl.NumberFormat.prototype.formatRange()" + } + ], + "sec-intl.numberformat.prototype.formatrangetoparts": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Intl/NumberFormat.json", + "name": "formatRangeToParts", + "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRangeToParts", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRangeToParts", + "summary": "The formatRangeToParts() method of Intl.NumberFormat instances returns an Array of objects containing the locale-specific tokens from which it is possible to build custom strings while preserving the locale-specific parts. This makes it possible to provide locale-aware custom formatting ranges of number strings.", + "support": { + "chrome": { + "version_added": "106" + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "116" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "19.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "106" + } + }, + "title": "Intl.NumberFormat.prototype.formatRangeToParts()" + } + ], "sec-intl.numberformat.prototype.formattoparts": [ { "engines": [ @@ -2350,7 +2444,7 @@ "name": "formatToParts", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatToParts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatToParts", - "summary": "The Intl.NumberFormat.prototype.formatToParts() method allows locale-aware formatting of strings produced by NumberFormat formatters.", + "summary": "The formatToParts() method of Intl.NumberFormat instances allows locale-aware formatting of strings produced by this Intl.NumberFormat object.", "support": { "chrome": { "version_added": "64" @@ -2400,7 +2494,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/resolvedOptions", - "summary": "The Intl.NumberFormat.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and number formatting options computed during initialization of this Intl.NumberFormat object.", + "summary": "The resolvedOptions() method of Intl.NumberFormat instances returns a new object with properties reflecting the locale and number formatting options computed during initialization of this Intl.NumberFormat object.", "support": { "chrome": { "version_added": "24" @@ -2452,7 +2546,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/supportedLocalesOf", - "summary": "The Intl.NumberFormat.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in number formatting without having to fall back to the runtime's default locale.", + "summary": "The Intl.NumberFormat.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in number formatting without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "24" @@ -2622,7 +2716,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/PluralRules/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/PluralRules/resolvedOptions", - "summary": "The Intl.PluralRules.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and plural formatting options computed during initialization of this Intl.PluralRules object.", + "summary": "The resolvedOptions() method of Intl.PluralRules instances returns a new object with properties reflecting the locale and plural formatting options computed during initialization of this Intl.PluralRules object.", "support": { "chrome": { "version_added": "63" @@ -2672,7 +2766,7 @@ "name": "select", "slug": "JavaScript/Reference/Global_Objects/Intl/PluralRules/select", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/PluralRules/select", - "summary": "The Intl.PluralRules.prototype.select() method returns a string indicating which plural rule to use for locale-aware formatting.", + "summary": "The select() method of Intl.PluralRules instances returns a string indicating which plural rule to use for locale-aware formatting.", "support": { "chrome": { "version_added": "63" @@ -2711,6 +2805,53 @@ "title": "Intl.PluralRules.prototype.select()" } ], + "sec-intl.pluralrules.prototype.selectrange": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Intl/PluralRules.json", + "name": "selectRange", + "slug": "JavaScript/Reference/Global_Objects/Intl/PluralRules/selectRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/PluralRules/selectRange", + "summary": "The selectRange() method of Intl.PluralRules instances receives two values and returns a string indicating which plural rule to use for locale-aware formatting.", + "support": { + "chrome": { + "version_added": "106" + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "116" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "19.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "106" + } + }, + "title": "Intl.PluralRules.prototype.selectRange()" + } + ], "sec-intl.pluralrules.supportedlocalesof": [ { "engines": [ @@ -2722,7 +2863,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/PluralRules/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/PluralRules/supportedLocalesOf", - "summary": "The Intl.PluralRules.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in plural formatting without having to fall back to the runtime's default locale.", + "summary": "The Intl.PluralRules.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in plural formatting without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "63" @@ -2876,7 +3017,7 @@ "name": "format", "slug": "JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format", - "summary": "The Intl.RelativeTimeFormat.prototype.format() method formats a value and unit according to the locale and formatting options of this Intl.RelativeTimeFormat object.", + "summary": "The format() method of Intl.RelativeTimeFormat instances formats a value and unit according to the locale and formatting options of this Intl.RelativeTimeFormat object.", "support": { "chrome": { "version_added": "71" @@ -2924,7 +3065,7 @@ "name": "formatToParts", "slug": "JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts", - "summary": "The Intl.RelativeTimeFormat.prototype.formatToParts() method returns an Array of objects representing the relative time format in parts that can be used for custom locale-aware formatting.", + "summary": "The formatToParts() method of Intl.RelativeTimeFormat instances returns an Array of objects representing the relative time format in parts that can be used for custom locale-aware formatting.", "support": { "chrome": { "version_added": "71" @@ -2972,7 +3113,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions", - "summary": "The Intl.RelativeTimeFormat.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and relative time formatting options computed during initialization of this Intl.RelativeTimeFormat object.", + "summary": "The resolvedOptions() method of Intl.RelativeTimeFormat instances returns a new object with properties reflecting the locale and relative time formatting options computed during initialization of this Intl.RelativeTimeFormat object.", "support": { "chrome": { "version_added": "71" @@ -3020,7 +3161,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/supportedLocalesOf", - "summary": "The Intl.RelativeTimeFormat.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in date and time formatting without having to fall back to the runtime's default locale.", + "summary": "The Intl.RelativeTimeFormat.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in date and time formatting without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "71" @@ -3121,7 +3262,7 @@ "name": "Segmenter", "slug": "JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter", - "summary": "The Intl.Segmenter() constructor creates Intl.Segmenter objects that enable locale-sensitive text segmentation.", + "summary": "The Intl.Segmenter() constructor creates Intl.Segmenter objects.", "support": { "chrome": { "version_added": "87" @@ -3167,7 +3308,7 @@ "name": "resolvedOptions", "slug": "JavaScript/Reference/Global_Objects/Intl/Segmenter/resolvedOptions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/resolvedOptions", - "summary": "The Intl.Segmenter.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and granularity options computed during the initialization of this Intl.Segmenter object.", + "summary": "The resolvedOptions() method of Intl.Segmenter instances returns a new object with properties reflecting the locale and granularity options computed during the initialization of this Intl.Segmenter object.", "support": { "chrome": { "version_added": "87" @@ -3213,7 +3354,7 @@ "name": "segment", "slug": "JavaScript/Reference/Global_Objects/Intl/Segmenter/segment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/segment", - "summary": "The Intl.Segmenter.prototype.segment() method segments a string according to the locale and granularity of this Intl.Segmenter object.", + "summary": "The segment() method of Intl.Segmenter instances segments a string according to the locale and granularity of this Intl.Segmenter object.", "support": { "chrome": { "version_added": "87" @@ -3259,7 +3400,7 @@ "name": "supportedLocalesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf", - "summary": "The Intl.Segmenter.supportedLocalesOf() method returns an array containing those of the provided locales that are supported without having to fall back to the runtime's default locale.", + "summary": "The Intl.Segmenter.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported without having to fall back to the runtime's default locale.", "support": { "chrome": { "version_added": "87" @@ -3351,7 +3492,7 @@ "name": "containing", "slug": "JavaScript/Reference/Global_Objects/Intl/Segments/containing", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segments/containing", - "summary": "The Intl.Segments.prototype.containing() method returns an object describing the segment in the string that includes the code unit at the specified index.", + "summary": "The containing() method of Segments instances returns an object describing the segment in the string that includes the code unit at the specified index.", "support": { "chrome": { "version_added": "87" @@ -3384,7 +3525,7 @@ "version_added": "87" } }, - "title": "Intl.Segments.prototype.containing()" + "title": "Segments.prototype.containing()" } ], "sec-%segmentsprototype%-@@iterator": [ @@ -3397,7 +3538,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Global_Objects/Intl/Segments/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segments/@@iterator", - "summary": "The @@iterator method of a Segments object implements the iterable protocol and allows Intl.Segments objects to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields data about each segment.", + "summary": "The [@@iterator]() method of Segments instances implements the iterable protocol and allows Segments objects to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an segments iterator object that yields data about each segment.", "support": { "chrome": { "version_added": "87" @@ -3430,7 +3571,7 @@ "version_added": "87" } }, - "title": "Intl.Segments.prototype[@@iterator]()" + "title": "Segments.prototype[@@iterator]()" } ], "sec-segments-objects": [ @@ -3443,7 +3584,7 @@ "name": "Segments", "slug": "JavaScript/Reference/Global_Objects/Intl/Segments", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segments", - "summary": "An Intl.Segments instance is an iterable collection of the segments of a text string. It is returned by a call to the segment() method of an Intl.Segmenter object.", + "summary": "A Segments object is an iterable collection of the segments of a text string. It is returned by a call to the segment() method of an Intl.Segmenter object.", "support": { "chrome": { "version_added": "87" @@ -3476,7 +3617,7 @@ "version_added": "87" } }, - "title": "Intl.Segments" + "title": "Segments" } ], "sec-intl.getcanonicallocales": [ @@ -3490,7 +3631,7 @@ "name": "getCanonicalLocales", "slug": "JavaScript/Reference/Global_Objects/Intl/getCanonicalLocales", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/getCanonicalLocales", - "summary": "The Intl.getCanonicalLocales() method returns an array containing the canonical locale names. Duplicates will be omitted and elements will be validated as structurally valid language tags.", + "summary": "The Intl.getCanonicalLocales() static method returns an array containing the canonical locale names. Duplicates will be omitted and elements will be validated as structurally valid language tags.", "support": { "chrome": { "version_added": "54" @@ -3530,6 +3671,53 @@ "title": "Intl.getCanonicalLocales()" } ], + "sec-intl.supportedvaluesof": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Intl.json", + "name": "supportedValuesOf", + "slug": "JavaScript/Reference/Global_Objects/Intl/supportedValuesOf", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf", + "summary": "The Intl.supportedValuesOf() static method returns an array containing the supported calendar, collation, currency, numbering systems, or unit values supported by the implementation.", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.19" + }, + "edge": "mirror", + "firefox": { + "version_added": "93" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "18.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "Intl.supportedValuesOf()" + } + ], "sec-Intl-toStringTag": [ { "engines": [ @@ -3541,7 +3729,7 @@ "name": "@@toStringTag", "slug": "JavaScript/Reference/Global_Objects/Intl/@@toStringTag", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/@@toStringTag", - "summary": "The Intl[@@toStringTag] property has an initial value of \"Intl\".", + "summary": "The Intl namespace object contains several constructors as well as functionality common to the internationalization constructors and other language sensitive functions. Collectively, they comprise the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, date and time formatting, and more.", "support": { "chrome": { "version_added": "86" @@ -3574,7 +3762,7 @@ "version_added": "86" } }, - "title": "Intl[@@toStringTag]" + "title": "Intl" } ], "intl-object": [ @@ -3588,7 +3776,7 @@ "name": "Intl", "slug": "JavaScript/Reference/Global_Objects/Intl", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl", - "summary": "The Intl object is the namespace for the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, and date and time formatting. The Intl object provides access to several constructors as well as functionality common to the internationalization constructors and other language sensitive functions.", + "summary": "The Intl namespace object contains several constructors as well as functionality common to the internationalization constructors and other language sensitive functions. Collectively, they comprise the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, date and time formatting, and more.", "support": { "chrome": { "version_added": "24" diff --git a/bikeshed/spec-data/readonly/mdn/ecmascript.json b/bikeshed/spec-data/readonly/mdn/ecmascript.json index 65b887f611..99e202c4a0 100644 --- a/bikeshed/spec-data/readonly/mdn/ecmascript.json +++ b/bikeshed/spec-data/readonly/mdn/ecmascript.json @@ -10,7 +10,7 @@ "name": "AggregateError", "slug": "JavaScript/Reference/Global_Objects/AggregateError/AggregateError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError/AggregateError", - "summary": "The AggregateError() constructor creates an error for several errors that need to be wrapped in a single error.", + "summary": "The AggregateError() constructor creates AggregateError objects.", "support": { "chrome": { "version_added": "85" @@ -46,6 +46,53 @@ "title": "AggregateError() constructor" } ], + "sec-aggregate-error": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/AggregateError.json", + "name": "errors", + "slug": "JavaScript/Reference/Global_Objects/AggregateError/errors", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError/errors", + "summary": "The errors data property of an AggregateError instance contains an array representing the errors that were aggregated.", + "support": { + "chrome": { + "version_added": "85" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.2" + }, + "edge": "mirror", + "firefox": { + "version_added": "79" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "15.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "14" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "85" + } + }, + "title": "AggregateError: errors" + } + ], "sec-aggregate-error-objects": [ { "engines": [ @@ -104,7 +151,7 @@ "name": "Array", "slug": "JavaScript/Reference/Global_Objects/Array/Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Array", - "summary": "The Array() constructor is used to create Array objects.", + "summary": "The Array() constructor creates Array objects.", "support": { "chrome": { "version_added": "1" @@ -308,7 +355,7 @@ "name": "entries", "slug": "JavaScript/Reference/Global_Objects/Array/entries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/entries", - "summary": "The entries() method returns a new Array Iterator object that contains the key/value pairs for each index in the array.", + "summary": "The entries() method returns a new array iterator object that contains the key/value pairs for each index in the array.", "support": { "chrome": { "version_added": "38" @@ -681,7 +728,7 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0" }, "oculus": "mirror", "opera": "mirror", @@ -728,7 +775,7 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0" }, "oculus": "mirror", "opera": "mirror", @@ -1188,7 +1235,7 @@ "name": "keys", "slug": "JavaScript/Reference/Global_Objects/Array/keys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/keys", - "summary": "The keys() method returns a new Array Iterator object that contains the keys for each index in the array.", + "summary": "The keys() method returns a new array iterator object that contains the keys for each index in the array.", "support": { "chrome": { "version_added": "38" @@ -1294,7 +1341,7 @@ "name": "length", "slug": "JavaScript/Reference/Global_Objects/Array/length", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/length", - "summary": "The length property of an object which is an instance of type Array sets or returns the number of elements in that array. The value is an unsigned, 32-bit integer that is always numerically greater than the highest index in the array.", + "summary": "The length data property of an Array instance represents the number of elements in that array. The value is an unsigned, 32-bit integer that is always numerically greater than the highest index in the array.", "support": { "chrome": { "version_added": "1" @@ -1335,7 +1382,7 @@ "version_added": "79" } }, - "title": "Array.prototype.length" + "title": "Array: length" } ], "sec-array.prototype.map": [ @@ -1406,7 +1453,7 @@ "name": "of", "slug": "JavaScript/Reference/Global_Objects/Array/of", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/of", - "summary": "The Array.of() method creates a new Array instance from a variable number of arguments, regardless of number or type of the arguments.", + "summary": "The Array.of() static method creates a new Array instance from a variable number of arguments, regardless of number or type of the arguments.", "support": { "chrome": { "version_added": "45" @@ -1512,7 +1559,7 @@ "name": "push", "slug": "JavaScript/Reference/Global_Objects/Array/push", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push", - "summary": "The push() method adds one or more elements to the end of an array and returns the new length of the array.", + "summary": "The push() method adds the specified elements to the end of an array and returns the new length of the array.", "support": { "chrome": { "version_added": "1" @@ -1940,7 +1987,7 @@ "name": "splice", "slug": "JavaScript/Reference/Global_Objects/Array/splice", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice", - "summary": "The splice() method changes the contents of an array by removing or replacing existing elements and/or adding new elements in place. To access part of an array without modifying it, see slice().", + "summary": "The splice() method changes the contents of an array by removing or replacing existing elements and/or adding new elements in place.", "support": { "chrome": { "version_added": "1" @@ -2038,6 +2085,147 @@ "title": "Array.prototype.toLocaleString()" } ], + "sec-array.prototype.toreversed": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Array.json", + "name": "toReversed", + "slug": "JavaScript/Reference/Global_Objects/Array/toReversed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toReversed", + "summary": "The toReversed() method of Array instances is the copying counterpart of the reverse() method. It returns a new array with the elements in reversed order.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "Array.prototype.toReversed()" + } + ], + "sec-array.prototype.tosorted": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Array.json", + "name": "toSorted", + "slug": "JavaScript/Reference/Global_Objects/Array/toSorted", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toSorted", + "summary": "The toSorted() method of Array instances is the copying version of the sort() method. It returns a new array with the elements sorted in ascending order.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "Array.prototype.toSorted()" + } + ], + "sec-array.prototype.tospliced": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Array.json", + "name": "toSpliced", + "slug": "JavaScript/Reference/Global_Objects/Array/toSpliced", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toSpliced", + "summary": "The toSpliced() method of Array instances is the copying version of the splice() method. It returns a new array with some elements removed and/or replaced at a given index.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "Array.prototype.toSpliced()" + } + ], "sec-array.prototype.tostring": [ { "engines": [ @@ -2104,7 +2292,7 @@ "name": "unshift", "slug": "JavaScript/Reference/Global_Objects/Array/unshift", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift", - "summary": "The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.", + "summary": "The unshift() method adds the specified elements to the beginning of an array and returns the new length of the array.", "support": { "chrome": { "version_added": "1" @@ -2157,7 +2345,7 @@ "name": "values", "slug": "JavaScript/Reference/Global_Objects/Array/values", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/values", - "summary": "The values() method returns a new array iterator object that iterates the value of each index in the array.", + "summary": "The values() method returns a new array iterator object that iterates the value of each item in the array.", "support": { "chrome": { "version_added": "66" @@ -2211,6 +2399,53 @@ "title": "Array.prototype.values()" } ], + "sec-array.prototype.with": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Array.json", + "name": "with", + "slug": "JavaScript/Reference/Global_Objects/Array/with", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/with", + "summary": "The with() method of Array instances is the copying version of using the bracket notation to change the value of a given index. It returns a new array with the element at the given index replaced with the given value.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "Array.prototype.with()" + } + ], "sec-array.prototype-@@iterator": [ { "engines": [ @@ -2222,7 +2457,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Global_Objects/Array/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/@@iterator", - "summary": "The @@iterator method of an Array object implements the iterable protocol and allows arrays to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the value of each index in the array.", + "summary": "The [@@iterator]() method of Array instances implements the iterable protocol and allows arrays to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an array iterator object that yields the value of each index in the array.", "support": { "chrome": { "version_added": "38" @@ -2285,7 +2520,7 @@ "name": "@@species", "slug": "JavaScript/Reference/Global_Objects/Array/@@species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/@@species", - "summary": "The Array[@@species] accessor property returns the constructor used to construct return values from array methods.", + "summary": "The Array[@@species] static accessor property returns the constructor used to construct return values from array methods.", "support": { "chrome": { "version_added": "51" @@ -2329,7 +2564,7 @@ "version_added": "79" } }, - "title": "get Array[@@species]" + "title": "Array[@@species]" } ], "sec-array.prototype-@@unscopables": [ @@ -2343,7 +2578,7 @@ "name": "@@unscopables", "slug": "JavaScript/Reference/Global_Objects/Array/@@unscopables", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/@@unscopables", - "summary": "The @@unscopables data property contains property names that were not included in the ECMAScript standard prior to the ES2015 version and that are ignored for with statement-binding purposes.", + "summary": "The @@unscopables data property of Array.prototype is shared by all Array instances. It contains property names that were not included in the ECMAScript standard prior to the ES2015 version and that are ignored for with statement-binding purposes.", "support": { "chrome": { "version_added": "38" @@ -2447,7 +2682,7 @@ "name": "ArrayBuffer", "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/ArrayBuffer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/ArrayBuffer", - "summary": "The ArrayBuffer() constructor is used to create ArrayBuffer objects.", + "summary": "The ArrayBuffer() constructor creates ArrayBuffer objects.", "support": { "chrome": { "version_added": "7" @@ -2504,7 +2739,7 @@ "name": "byteLength", "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength", - "summary": "The byteLength accessor property represents the length of an ArrayBuffer in bytes.", + "summary": "The byteLength accessor property of ArrayBuffer instances returns the length (in bytes) of this array buffer.", "support": { "chrome": { "version_added": "7" @@ -2561,7 +2796,7 @@ "name": "isView", "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/isView", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView", - "summary": "The ArrayBuffer.isView() method determines whether the passed value is one of the ArrayBuffer views, such as typed array objects or a DataView.", + "summary": "The ArrayBuffer.isView() static method determines whether the passed value is one of the ArrayBuffer views, such as typed array objects or a DataView.", "support": { "chrome": { "version_added": "32" @@ -2666,7 +2901,7 @@ "name": "@@species", "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/@@species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/@@species", - "summary": "The ArrayBuffer[@@species] accessor property returns the constructor used to construct return values from array buffer methods.", + "summary": "The ArrayBuffer[@@species] static accessor property returns the constructor used to construct return values from array buffer methods.", "support": { "chrome": { "version_added": "51" @@ -2712,7 +2947,7 @@ "version_added": "79" } }, - "title": "get ArrayBuffer[@@species]" + "title": "ArrayBuffer[@@species]" } ], "sec-arraybuffer-objects": [ @@ -2726,7 +2961,7 @@ "name": "ArrayBuffer", "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer", - "summary": "The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer.", + "summary": "The ArrayBuffer object is used to represent a generic raw binary data buffer.", "support": { "chrome": { "version_added": "7" @@ -2772,7 +3007,7 @@ "title": "ArrayBuffer" } ], - "sec-async-function-objects": [ + "sec-async-function-constructor": [ { "engines": [ "blink", @@ -2781,9 +3016,9 @@ ], "filename": "javascript/builtins/AsyncFunction.json", "name": "AsyncFunction", - "slug": "JavaScript/Reference/Global_Objects/AsyncFunction", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncFunction", - "summary": "The AsyncFunction constructor creates a new async function object. In JavaScript, every asynchronous function is actually an AsyncFunction object.", + "slug": "JavaScript/Reference/Global_Objects/AsyncFunction/AsyncFunction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncFunction/AsyncFunction", + "summary": "The AsyncFunction() constructor creates AsyncFunction objects.", "support": { "chrome": { "version_added": "55" @@ -2829,32 +3064,34 @@ "version_added": "79" } }, - "title": "AsyncFunction" + "title": "AsyncFunction() constructor" } ], - "sec-asyncgenerator-prototype-next": [ + "sec-async-function-objects": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "javascript/builtins/AsyncGenerator.json", - "name": "next", - "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator/next", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator/next", - "summary": "The next() method returns the next value in the sequence.", + "filename": "javascript/builtins/AsyncFunction.json", + "name": "AsyncFunction", + "slug": "JavaScript/Reference/Global_Objects/AsyncFunction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncFunction", + "summary": "The AsyncFunction object provides methods for async functions. In JavaScript, every async function is actually an AsyncFunction object.", "support": { "chrome": { - "version_added": "63" + "version_added": "55" }, "chrome_android": "mirror", "deno": { "version_added": "1.0" }, - "edge": "mirror", + "edge": { + "version_added": "15" + }, "firefox": { - "version_added": "55" + "version_added": "52" }, "firefox_android": "mirror", "ie": { @@ -2862,10 +3099,10 @@ }, "nodejs": [ { - "version_added": "10.0.0" + "version_added": "7.6.0" }, { - "version_added": "8.10.0", + "version_added": "7.0.0", "flags": [ { "type": "runtime_flag", @@ -2878,7 +3115,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12" + "version_added": "10.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2887,10 +3124,10 @@ "version_added": "79" } }, - "title": "AsyncGenerator.prototype.next()" + "title": "AsyncFunction" } ], - "sec-asyncgenerator-prototype-return": [ + "sec-asyncgenerator-prototype-next": [ { "engines": [ "blink", @@ -2898,10 +3135,10 @@ "webkit" ], "filename": "javascript/builtins/AsyncGenerator.json", - "name": "return", - "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator/return", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator/return", - "summary": "The return() method of an async generator acts as if a return statement is inserted in the generator's body at the current suspended position, which finishes the generator and allows the generator to perform any cleanup tasks when combined with a try...finally block.", + "name": "next", + "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator/next", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator/next", + "summary": "The next() method returns the next value in the sequence.", "support": { "chrome": { "version_added": "63" @@ -2945,10 +3182,10 @@ "version_added": "79" } }, - "title": "AsyncGenerator.prototype.return()" + "title": "AsyncGenerator.prototype.next()" } ], - "sec-asyncgenerator-prototype-throw": [ + "sec-asyncgenerator-prototype-return": [ { "engines": [ "blink", @@ -2956,10 +3193,10 @@ "webkit" ], "filename": "javascript/builtins/AsyncGenerator.json", - "name": "throw", - "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator/throw", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator/throw", - "summary": "The throw() method of an async generator acts as if a throw statement is inserted in the generator's body at the current suspended position, which informs the generator of an error condition and allows it to handle the error, or perform cleanup and close itself.", + "name": "return", + "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator/return", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator/return", + "summary": "The return() method of AsyncGenerator instances acts as if a return statement is inserted in the generator's body at the current suspended position, which finishes the generator and allows the generator to perform any cleanup tasks when combined with a try...finally block.", "support": { "chrome": { "version_added": "63" @@ -3003,10 +3240,10 @@ "version_added": "79" } }, - "title": "AsyncGenerator.prototype.throw()" + "title": "AsyncGenerator.prototype.return()" } ], - "sec-asyncgenerator-objects": [ + "sec-asyncgenerator-prototype-throw": [ { "engines": [ "blink", @@ -3014,10 +3251,10 @@ "webkit" ], "filename": "javascript/builtins/AsyncGenerator.json", - "name": "AsyncGenerator", - "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator", - "summary": "The AsyncGenerator object is returned by an async generator function and it conforms to both the async iterable protocol and the async iterator protocol.", + "name": "throw", + "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator/throw", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator/throw", + "summary": "The throw() method of AsyncGenerator instances acts as if a throw statement is inserted in the generator's body at the current suspended position, which informs the generator of an error condition and allows it to handle the error, or perform cleanup and close itself.", "support": { "chrome": { "version_added": "63" @@ -3061,21 +3298,137 @@ "version_added": "79" } }, - "title": "AsyncGenerator" + "title": "AsyncGenerator.prototype.throw()" } ], - "sec-asyncgeneratorfunction-objects": [ + "sec-asyncgenerator-objects": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "javascript/builtins/AsyncGeneratorFunction.json", - "name": "AsyncGeneratorFunction", - "slug": "JavaScript/Reference/Global_Objects/AsyncGeneratorFunction", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGeneratorFunction", - "summary": "The AsyncGeneratorFunction constructor creates a new async generator function object. In JavaScript, every async generator function is actually an AsyncGeneratorFunction object.", + "filename": "javascript/builtins/AsyncGenerator.json", + "name": "AsyncGenerator", + "slug": "JavaScript/Reference/Global_Objects/AsyncGenerator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator", + "summary": "The AsyncGenerator object is returned by an async generator function and it conforms to both the async iterable protocol and the async iterator protocol.", + "support": { + "chrome": { + "version_added": "63" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "55" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "10.0.0" + }, + { + "version_added": "8.10.0", + "flags": [ + { + "type": "runtime_flag", + "name": "--harmony" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AsyncGenerator" + } + ], + "sec-asyncgeneratorfunction-constructor": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/AsyncGeneratorFunction.json", + "name": "AsyncGeneratorFunction", + "slug": "JavaScript/Reference/Global_Objects/AsyncGeneratorFunction/AsyncGeneratorFunction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGeneratorFunction/AsyncGeneratorFunction", + "summary": "The AsyncGeneratorFunction() constructor creates AsyncGeneratorFunction objects.", + "support": { + "chrome": { + "version_added": "63" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "55" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "10.0.0" + }, + { + "version_added": "8.10.0", + "flags": [ + { + "type": "runtime_flag", + "name": "--harmony" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AsyncGeneratorFunction() constructor" + } + ], + "sec-asyncgeneratorfunction-objects": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/AsyncGeneratorFunction.json", + "name": "AsyncGeneratorFunction", + "slug": "JavaScript/Reference/Global_Objects/AsyncGeneratorFunction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGeneratorFunction", + "summary": "The AsyncGeneratorFunction object provides methods for async generator functions. In JavaScript, every async generator function is actually an AsyncGeneratorFunction object.", "support": { "chrome": { "version_added": "63" @@ -3122,6 +3475,100 @@ "title": "AsyncGeneratorFunction" } ], + "sec-asynciteratorprototype-asynciterator": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/AsyncIterator.json", + "name": "@@asyncIterator", + "slug": "JavaScript/Reference/Global_Objects/AsyncIterator/@@asyncIterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncIterator/@@asyncIterator", + "summary": "The [@@asyncIterator]() method of AsyncIterator instances implements the async iterable protocol and allows built-in async iterators to be consumed by most syntaxes expecting async iterables, such as for await...of loops. It returns the value of this, which is the async iterator object itself.", + "support": { + "chrome": { + "version_added": "63" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "57" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "10.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AsyncIterator.prototype[@@asyncIterator]()" + } + ], + "sec-asynciteratorprototype": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/AsyncIterator.json", + "name": "AsyncIterator", + "slug": "JavaScript/Reference/Global_Objects/AsyncIterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncIterator", + "summary": "An AsyncIterator object is an object that conforms to the async iterator protocol by providing a next() method that returns a promise fulfilling to an iterator result object. The AsyncIterator.prototype object is a hidden global object that all built-in async iterators inherit from. It provides an @@asyncIterator method that returns the async iterator object itself, making the async iterator also async iterable.", + "support": { + "chrome": { + "version_added": "63" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "57" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "10.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AsyncIterator" + } + ], "sec-atomics.add": [ { "engines": [ @@ -3133,7 +3580,7 @@ "name": "add", "slug": "JavaScript/Reference/Global_Objects/Atomics/add", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/add", - "summary": "The static Atomics.add() method adds a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", + "summary": "The Atomics.add() static method adds a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", "support": { "chrome": { "version_added": "68" @@ -3182,7 +3629,7 @@ "name": "and", "slug": "JavaScript/Reference/Global_Objects/Atomics/and", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/and", - "summary": "The static Atomics.and() method computes a bitwise AND with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", + "summary": "The Atomics.and() static method computes a bitwise AND with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", "support": { "chrome": { "version_added": "68" @@ -3231,7 +3678,7 @@ "name": "compareExchange", "slug": "JavaScript/Reference/Global_Objects/Atomics/compareExchange", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/compareExchange", - "summary": "The static Atomics.compareExchange() method exchanges a given replacement value at a given position in the array, if a given expected value equals the old value. It returns the old value at that position whether it was equal to the expected value or not. This atomic operation guarantees that no other write happens until the modified value is written back.", + "summary": "The Atomics.compareExchange() static method exchanges a given replacement value at a given position in the array, if a given expected value equals the old value. It returns the old value at that position whether it was equal to the expected value or not. This atomic operation guarantees that no other write happens until the modified value is written back.", "support": { "chrome": { "version_added": "68" @@ -3280,7 +3727,7 @@ "name": "exchange", "slug": "JavaScript/Reference/Global_Objects/Atomics/exchange", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/exchange", - "summary": "The static Atomics.exchange() method stores a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens between the read of the old value and the write of the new value.", + "summary": "The Atomics.exchange() static method stores a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens between the read of the old value and the write of the new value.", "support": { "chrome": { "version_added": "68" @@ -3329,7 +3776,7 @@ "name": "isLockFree", "slug": "JavaScript/Reference/Global_Objects/Atomics/isLockFree", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/isLockFree", - "summary": "The static Atomics.isLockFree() method is used to determine whether the Atomics methods use locks or atomic hardware operations when applied to typed arrays with the given element byte size. It returns false if the given size is not one of the BYTES_PER_ELEMENT property of integer TypedArray types.", + "summary": "The Atomics.isLockFree() static method is used to determine whether the Atomics methods use locks or atomic hardware operations when applied to typed arrays with the given element byte size. It returns false if the given size is not one of the BYTES_PER_ELEMENT property of integer TypedArray types.", "support": { "chrome": { "version_added": "68" @@ -3378,7 +3825,7 @@ "name": "load", "slug": "JavaScript/Reference/Global_Objects/Atomics/load", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/load", - "summary": "The static Atomics.load() method returns a value at a given position in the array.", + "summary": "The Atomics.load() static method returns a value at a given position in the array.", "support": { "chrome": { "version_added": "68" @@ -3427,7 +3874,7 @@ "name": "notify", "slug": "JavaScript/Reference/Global_Objects/Atomics/notify", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/notify", - "summary": "The static Atomics.notify() method notifies up some agents that are sleeping in the wait queue.", + "summary": "The Atomics.notify() static method notifies up some agents that are sleeping in the wait queue.", "support": { "chrome": { "version_added": "68" @@ -3476,7 +3923,7 @@ "name": "or", "slug": "JavaScript/Reference/Global_Objects/Atomics/or", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/or", - "summary": "The static Atomics.or() method computes a bitwise OR with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", + "summary": "The Atomics.or() static method computes a bitwise OR with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", "support": { "chrome": { "version_added": "68" @@ -3525,7 +3972,7 @@ "name": "store", "slug": "JavaScript/Reference/Global_Objects/Atomics/store", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/store", - "summary": "The static Atomics.store() method stores a given value at the given position in the array and returns that value.", + "summary": "The Atomics.store() static method stores a given value at the given position in the array and returns that value.", "support": { "chrome": { "version_added": "68" @@ -3574,7 +4021,7 @@ "name": "sub", "slug": "JavaScript/Reference/Global_Objects/Atomics/sub", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/sub", - "summary": "The static Atomics.sub() method subtracts a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", + "summary": "The Atomics.sub() static method subtracts a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", "support": { "chrome": { "version_added": "68" @@ -3623,7 +4070,7 @@ "name": "wait", "slug": "JavaScript/Reference/Global_Objects/Atomics/wait", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait", - "summary": "The static Atomics.wait() method verifies that a given position in an Int32Array still contains a given value and if so sleeps, awaiting a wakeup or a timeout. It returns a string which is either \"ok\", \"not-equal\", or \"timed-out\".", + "summary": "The Atomics.wait() static method verifies that a shared memory location still contains a given value and if so sleeps, awaiting a wake-up notification or times out. It returns a string which is either \"ok\", \"not-equal\", or \"timed-out\".", "support": { "chrome": { "version_added": "68" @@ -3661,56 +4108,57 @@ "title": "Atomics.wait()" } ], - "sec-atomics.xor": [ + "sec-atomics.waitasync": [ { "engines": [ "blink", - "gecko", "webkit" ], "filename": "javascript/builtins/Atomics.json", - "name": "xor", - "slug": "JavaScript/Reference/Global_Objects/Atomics/xor", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/xor", - "summary": "The static Atomics.xor() method computes a bitwise XOR with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", + "name": "waitAsync", + "slug": "JavaScript/Reference/Global_Objects/Atomics/waitAsync", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/waitAsync", + "summary": "The Atomics.waitAsync() static method waits asynchronously on a shared memory location and returns a Promise.", "support": { "chrome": { - "version_added": "68" + "version_added": "87" }, "chrome_android": { "version_added": "89" }, "deno": { - "version_added": "1.0" + "version_added": "1.4" }, "edge": "mirror", "firefox": { - "version_added": "78" + "version_added": false }, "firefox_android": "mirror", "ie": { "version_added": false }, "nodejs": { - "version_added": "8.10.0" + "version_added": "16.0.0" }, "oculus": "mirror", - "opera": "mirror", + "opera": { + "version_added": "75" + }, "opera_android": "mirror", "safari": { - "version_added": "15.2" + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "87" } }, - "title": "Atomics.xor()" + "title": "Atomics.waitAsync()" } ], - "sec-atomics-object": [ + "sec-atomics.xor": [ { "engines": [ "blink", @@ -3718,10 +4166,10 @@ "webkit" ], "filename": "javascript/builtins/Atomics.json", - "name": "Atomics", - "slug": "JavaScript/Reference/Global_Objects/Atomics", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics", - "summary": "The Atomics object provides atomic operations as static methods. They are used with SharedArrayBuffer and ArrayBuffer objects.", + "name": "xor", + "slug": "JavaScript/Reference/Global_Objects/Atomics/xor", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/xor", + "summary": "The Atomics.xor() static method computes a bitwise XOR with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.", "support": { "chrome": { "version_added": "68" @@ -3756,45 +4204,48 @@ "version_added": "79" } }, - "title": "Atomics" + "title": "Atomics.xor()" } ], - "sec-bigint-constructor": [ + "sec-atomics-object": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "javascript/builtins/BigInt.json", - "name": "BigInt", - "slug": "JavaScript/Reference/Global_Objects/BigInt/BigInt", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/BigInt", - "summary": "The BigInt() function returns a value of type bigint.", + "filename": "javascript/builtins/Atomics.json", + "name": "Atomics", + "slug": "JavaScript/Reference/Global_Objects/Atomics", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics", + "summary": "The Atomics namespace object contains static methods for carrying out atomic operations. They are used with SharedArrayBuffer and ArrayBuffer objects.", "support": { "chrome": { - "version_added": "67" + "version_added": "68" + }, + "chrome_android": { + "version_added": "89" }, - "chrome_android": "mirror", "deno": { "version_added": "1.0" }, "edge": "mirror", "firefox": { - "version_added": "68" + "version_added": "78" }, "firefox_android": "mirror", "ie": { "version_added": false }, "nodejs": { - "version_added": "10.4.0" + "version_added": "8.10.0" }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14" + "version_added": "15.2", + "notes": "Before Safari 16.4, <code>Atomics</code> is gated behind COOP/COEP. For more detail, read <a href='https://web.dev/coop-coep/'>Making your website \"cross-origin isolated\" using COOP and COEP</a>." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3803,10 +4254,10 @@ "version_added": "79" } }, - "title": "BigInt() constructor" + "title": "Atomics" } ], - "sec-bigint.asintn": [ + "sec-bigint-constructor": [ { "engines": [ "blink", @@ -3814,10 +4265,10 @@ "webkit" ], "filename": "javascript/builtins/BigInt.json", - "name": "asIntN", - "slug": "JavaScript/Reference/Global_Objects/BigInt/asIntN", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asIntN", - "summary": "The BigInt.asIntN static method clamps a BigInt value to the given number of bits, and returns that value as a signed integer.", + "name": "BigInt", + "slug": "JavaScript/Reference/Global_Objects/BigInt/BigInt", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/BigInt", + "summary": "The BigInt() function returns primitive values of type BigInt.", "support": { "chrome": { "version_added": "67" @@ -3850,10 +4301,10 @@ "version_added": "79" } }, - "title": "BigInt.asIntN()" + "title": "BigInt() constructor" } ], - "sec-bigint.asuintn": [ + "sec-bigint.asintn": [ { "engines": [ "blink", @@ -3861,10 +4312,57 @@ "webkit" ], "filename": "javascript/builtins/BigInt.json", - "name": "asUintN", - "slug": "JavaScript/Reference/Global_Objects/BigInt/asUintN", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asUintN", - "summary": "The BigInt.asUintN static method clamps a BigInt value to the given number of bits, and returns that value as an unsigned integer.", + "name": "asIntN", + "slug": "JavaScript/Reference/Global_Objects/BigInt/asIntN", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asIntN", + "summary": "The BigInt.asIntN() static method truncates a BigInt value to the given number of least significant bits and returns that value as a signed integer.", + "support": { + "chrome": { + "version_added": "67" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "68" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "10.4.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "14" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "BigInt.asIntN()" + } + ], + "sec-bigint.asuintn": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/BigInt.json", + "name": "asUintN", + "slug": "JavaScript/Reference/Global_Objects/BigInt/asUintN", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asUintN", + "summary": "The BigInt.asUintN() static method truncates a BigInt value to the given number of least significant bits and returns that value as an unsigned integer.", "support": { "chrome": { "version_added": "67" @@ -4005,7 +4503,7 @@ "name": "BigInt", "slug": "JavaScript/Reference/Global_Objects/BigInt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt", - "summary": "BigInt is a primitive wrapper object used to represent and manipulate primitive bigint values — which are too large to be represented by the number primitive.", + "summary": "BigInt values represent numeric values which are too large to be represented by the number primitive.", "support": { "chrome": { "version_added": "67" @@ -4056,7 +4554,7 @@ "name": "BigInt64Array", "slug": "JavaScript/Reference/Global_Objects/BigInt64Array/BigInt64Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt64Array/BigInt64Array", - "summary": "The BigInt64Array() typed array constructor creates a new BigInt64Array object, which is, an array of 64-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0n. Once established, you can reference elements in the array using the object's methods, or by using standard array index syntax (that is, using bracket notation).", + "summary": "The BigInt64Array() constructor creates BigInt64Array objects. The contents are initialized to 0n.", "support": { "chrome": { "version_added": "67" @@ -4101,7 +4599,7 @@ "name": "BigUint64Array", "slug": "JavaScript/Reference/Global_Objects/BigUint64Array/BigUint64Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigUint64Array/BigUint64Array", - "summary": "The BigUint64Array() typed array constructor creates a new BigUint64Array object, which is, an array of 64-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0n. Once established, you can reference elements in the array using the object's methods, or by using standard array index syntax (that is, using bracket notation).", + "summary": "The BigUint64Array() constructor creates BigUint64Array objects. The contents are initialized to 0n.", "support": { "chrome": { "version_added": "67" @@ -4146,7 +4644,7 @@ "name": "Float32Array", "slug": "JavaScript/Reference/Global_Objects/Float32Array/Float32Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array/Float32Array", - "summary": "The Float32Array() typed array constructor creates a new Float32Array object, which is, an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Float32Array() constructor creates Float32Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4201,7 +4699,7 @@ "name": "Float64Array", "slug": "JavaScript/Reference/Global_Objects/Float64Array/Float64Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array/Float64Array", - "summary": "The Float64Array() typed array constructor creates a new Float64Array object, which is, an array of 64-bit floating point numbers (corresponding to the C double data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Float64Array() constructor creates Float64Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4256,7 +4754,7 @@ "name": "Int16Array", "slug": "JavaScript/Reference/Global_Objects/Int16Array/Int16Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array/Int16Array", - "summary": "The Int16Array() typed array constructor creates an array of twos-complement 16-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Int16Array() constructor creates Int16Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4311,7 +4809,7 @@ "name": "Int32Array", "slug": "JavaScript/Reference/Global_Objects/Int32Array/Int32Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array/Int32Array", - "summary": "The Int32Array() typed array constructor creates an array of twos-complement 32-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Int32Array() constructor creates Int32Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4366,7 +4864,7 @@ "name": "Int8Array", "slug": "JavaScript/Reference/Global_Objects/Int8Array/Int8Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array/Int8Array", - "summary": "The Int8Array() constructor creates a typed array of twos-complement 8-bit signed integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Int8Array() constructor creates Int8Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4421,7 +4919,7 @@ "name": "Uint16Array", "slug": "JavaScript/Reference/Global_Objects/Uint16Array/Uint16Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array/Uint16Array", - "summary": "The Uint16Array() typed array constructor creates an array of 16-bit unsigned integers in the platform byte order.", + "summary": "The Uint16Array() constructor creates Uint16Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4476,7 +4974,7 @@ "name": "Uint32Array", "slug": "JavaScript/Reference/Global_Objects/Uint32Array/Uint32Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array/Uint32Array", - "summary": "The Uint32Array() typed array constructor creates an array of 32-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Uint32Array() constructor creates Uint32Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4531,7 +5029,7 @@ "name": "Uint8Array", "slug": "JavaScript/Reference/Global_Objects/Uint8Array/Uint8Array", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/Uint8Array", - "summary": "The Uint8Array() constructor creates a typed array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Uint8Array() constructor creates Uint8Array objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4586,7 +5084,7 @@ "name": "Uint8ClampedArray", "slug": "JavaScript/Reference/Global_Objects/Uint8ClampedArray/Uint8ClampedArray", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray/Uint8ClampedArray", - "summary": "The Uint8ClampedArray() constructor creates a typed array of 8-bit unsigned integers clamped to 0-255; if you specified a value that is out of the range of [0,255], 0 or 255 will be set instead; if you specify a non-integer, the nearest integer will be set. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).", + "summary": "The Uint8ClampedArray() constructor creates Uint8ClampedArray objects. The contents are initialized to 0.", "support": { "chrome": { "version_added": "7" @@ -4802,7 +5300,7 @@ "name": "Boolean", "slug": "JavaScript/Reference/Global_Objects/Boolean/Boolean", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/Boolean", - "summary": "The Boolean() constructor can create Boolean objects or return primitive values of type boolean.", + "summary": "The Boolean() constructor creates Boolean objects. When called as a function, it returns primitive values of type Boolean.", "support": { "chrome": { "version_added": "1" @@ -5014,7 +5512,7 @@ "name": "DataView", "slug": "JavaScript/Reference/Global_Objects/DataView/DataView", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/DataView", - "summary": "The DataView() constructor is used to create DataView objects.", + "summary": "The DataView() constructor creates DataView objects.", "support": { "chrome": { "version_added": "9" @@ -5069,7 +5567,7 @@ "name": "buffer", "slug": "JavaScript/Reference/Global_Objects/DataView/buffer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/buffer", - "summary": "The buffer accessor property represents the ArrayBuffer or SharedArrayBuffer referenced by the DataView at construction time.", + "summary": "The buffer accessor property of DataView instances returns the ArrayBuffer or SharedArrayBuffer referenced by this view at construction time.", "support": { "chrome": { "version_added": "9" @@ -5124,7 +5622,7 @@ "name": "byteLength", "slug": "JavaScript/Reference/Global_Objects/DataView/byteLength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteLength", - "summary": "The byteLength accessor property represents the length (in bytes) of the dataview.", + "summary": "The byteLength accessor property of DataView instances returns the length (in bytes) of this view.", "support": { "chrome": { "version_added": "9" @@ -5179,7 +5677,7 @@ "name": "byteOffset", "slug": "JavaScript/Reference/Global_Objects/DataView/byteOffset", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteOffset", - "summary": "The byteOffset accessor property represents the offset (in bytes) of this view from the start of its ArrayBuffer or SharedArrayBuffer.", + "summary": "The byteOffset accessor property of DataView instances returns the offset (in bytes) of this view from the start of its ArrayBuffer or SharedArrayBuffer.", "support": { "chrome": { "version_added": "9" @@ -5234,7 +5732,7 @@ "name": "getBigInt64", "slug": "JavaScript/Reference/Global_Objects/DataView/getBigInt64", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigInt64", - "summary": "The getBigInt64() method gets a signed 64-bit integer (long long) at the specified byte offset from the start of the DataView.", + "summary": "The getBigInt64() method of DataView instances reads 8 bytes starting at the specified byte offset of this DataView and interprets them as a 64-bit signed integer.", "support": { "chrome": { "version_added": "67" @@ -5281,7 +5779,7 @@ "name": "getBigUint64", "slug": "JavaScript/Reference/Global_Objects/DataView/getBigUint64", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigUint64", - "summary": "The getBigUint64() method gets an unsigned 64-bit integer (unsigned long long) at the specified byte offset from the start of the DataView.", + "summary": "The getBigUint64() method of DataView instances reads 8 bytes starting at the specified byte offset of this DataView and interprets them as a 64-bit unsigned integer.", "support": { "chrome": { "version_added": "67" @@ -5328,7 +5826,7 @@ "name": "getFloat32", "slug": "JavaScript/Reference/Global_Objects/DataView/getFloat32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat32", - "summary": "The getFloat32() method gets a signed 32-bit float (float) at the specified byte offset from the start of the DataView.", + "summary": "The getFloat32() method of DataView instances reads 4 bytes starting at the specified byte offset of this DataView and interprets them as a 32-bit float.", "support": { "chrome": { "version_added": "9" @@ -5383,7 +5881,7 @@ "name": "getFloat64", "slug": "JavaScript/Reference/Global_Objects/DataView/getFloat64", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat64", - "summary": "The getFloat64() method gets a signed 64-bit float (double) at the specified byte offset from the start of the DataView.", + "summary": "The getFloat64() method of DataView instances reads 8 bytes starting at the specified byte offset of this DataView and interprets them as a 64-bit float.", "support": { "chrome": { "version_added": "9" @@ -5438,7 +5936,7 @@ "name": "getInt16", "slug": "JavaScript/Reference/Global_Objects/DataView/getInt16", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt16", - "summary": "The getInt16() method gets a signed 16-bit integer (short) at the specified byte offset from the start of the DataView.", + "summary": "The getInt16() method of DataView instances reads 2 bytes starting at the specified byte offset of this DataView and interprets them as a 16-bit signed integer.", "support": { "chrome": { "version_added": "9" @@ -5493,7 +5991,7 @@ "name": "getInt32", "slug": "JavaScript/Reference/Global_Objects/DataView/getInt32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt32", - "summary": "The getInt32() method gets a signed 32-bit integer (long) at the specified byte offset from the start of the DataView.", + "summary": "The getInt32() method of DataView instances reads 4 bytes starting at the specified byte offset of this DataView and interprets them as a 32-bit signed integer.", "support": { "chrome": { "version_added": "9" @@ -5548,7 +6046,7 @@ "name": "getInt8", "slug": "JavaScript/Reference/Global_Objects/DataView/getInt8", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt8", - "summary": "The getInt8() method gets a signed 8-bit integer (byte) at the specified byte offset from the start of the DataView.", + "summary": "The getInt8() method of DataView instances reads 1 byte at the specified byte offset of this DataView and interprets it as an 8-bit signed integer.", "support": { "chrome": { "version_added": "9" @@ -5603,7 +6101,7 @@ "name": "getUint16", "slug": "JavaScript/Reference/Global_Objects/DataView/getUint16", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint16", - "summary": "The getUint16() method gets an unsigned 16-bit integer (unsigned short) at the specified byte offset from the start of the DataView.", + "summary": "The getUint16() method of DataView instances reads 2 bytes starting at the specified byte offset of this DataView and interprets them as a 16-bit unsigned integer.", "support": { "chrome": { "version_added": "9" @@ -5658,7 +6156,7 @@ "name": "getUint32", "slug": "JavaScript/Reference/Global_Objects/DataView/getUint32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint32", - "summary": "The getUint32() method gets an unsigned 32-bit integer (unsigned long) at the specified byte offset from the start of the DataView.", + "summary": "The getUint32() method of DataView instances reads 4 bytes starting at the specified byte offset of this DataView and interprets them as a 32-bit unsigned integer.", "support": { "chrome": { "version_added": "9" @@ -5713,7 +6211,7 @@ "name": "getUint8", "slug": "JavaScript/Reference/Global_Objects/DataView/getUint8", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint8", - "summary": "The getUint8() method gets an unsigned 8-bit integer (unsigned byte) at the specified byte offset from the start of the DataView.", + "summary": "The getUint8() method of DataView instances reads 1 byte at the specified byte offset of this DataView and interprets it as an 8-bit unsigned integer.", "support": { "chrome": { "version_added": "9" @@ -5768,7 +6266,7 @@ "name": "setBigInt64", "slug": "JavaScript/Reference/Global_Objects/DataView/setBigInt64", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigInt64", - "summary": "The setBigInt64() method stores a signed 64-bit integer (long long) value at the specified byte offset from the start of the DataView.", + "summary": "The setBigInt64() method of DataView instances takes a BigInt and stores it as a 64-bit signed integer in the 8 bytes starting at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "67" @@ -5815,7 +6313,7 @@ "name": "setBigUint64", "slug": "JavaScript/Reference/Global_Objects/DataView/setBigUint64", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigUint64", - "summary": "The setBigUint64() method stores an unsigned 64-bit integer (unsigned long long) value at the specified byte offset from the start of the DataView.", + "summary": "The setBigUint64() method of DataView instances takes a BigInt and stores it as a 64-bit unsigned integer in the 8 bytes starting at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "67" @@ -5862,7 +6360,7 @@ "name": "setFloat32", "slug": "JavaScript/Reference/Global_Objects/DataView/setFloat32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat32", - "summary": "The setFloat32() method stores a signed 32-bit float (float) value at the specified byte offset from the start of the DataView.", + "summary": "The setFloat32() method of DataView instances takes a number and stores it as a 32-bit float in the 4 bytes starting at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -5917,7 +6415,7 @@ "name": "setFloat64", "slug": "JavaScript/Reference/Global_Objects/DataView/setFloat64", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat64", - "summary": "The setFloat64() method stores a signed 64-bit float (double) value at the specified byte offset from the start of the DataView.", + "summary": "The setFloat64() method of DataView instances takes a number and stores it as a 64-bit float in the 8 bytes starting at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -5972,7 +6470,7 @@ "name": "setInt16", "slug": "JavaScript/Reference/Global_Objects/DataView/setInt16", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt16", - "summary": "The setInt16() method stores a signed 16-bit integer (short) value at the specified byte offset from the start of the DataView.", + "summary": "The setInt16() method of DataView instances takes a number and stores it as a 16-bit signed integer in the 2 bytes at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -6027,7 +6525,7 @@ "name": "setInt32", "slug": "JavaScript/Reference/Global_Objects/DataView/setInt32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt32", - "summary": "The setInt32() method stores a signed 32-bit integer (long) value at the specified byte offset from the start of the DataView.", + "summary": "The setInt32() method of DataView instances takes a number and stores it as a 32-bit signed integer in the 4 bytes at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -6082,7 +6580,7 @@ "name": "setInt8", "slug": "JavaScript/Reference/Global_Objects/DataView/setInt8", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt8", - "summary": "The setInt8() method stores a signed 8-bit integer (byte) value at the specified byte offset from the start of the DataView.", + "summary": "The setInt8() method of DataView instances takes a number and stores it as an 8-bit signed integer in the byte at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -6137,7 +6635,7 @@ "name": "setUint16", "slug": "JavaScript/Reference/Global_Objects/DataView/setUint16", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint16", - "summary": "The setUint16() method stores an unsigned 16-bit integer (unsigned short) value at the specified byte offset from the start of the DataView.", + "summary": "The setUint16() method of DataView instances takes a number and stores it as a 16-bit unsigned integer in the 2 bytes at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -6192,7 +6690,7 @@ "name": "setUint32", "slug": "JavaScript/Reference/Global_Objects/DataView/setUint32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint32", - "summary": "The setUint32() method stores an unsigned 32-bit integer (unsigned long) value at the specified byte offset from the start of the DataView.", + "summary": "The setUint32() method of DataView instances takes a number and stores it as a 32-bit unsigned integer in the 4 bytes at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -6247,7 +6745,7 @@ "name": "setUint8", "slug": "JavaScript/Reference/Global_Objects/DataView/setUint8", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint8", - "summary": "The setUint8() method stores an unsigned 8-bit integer (byte) value at the specified byte offset from the start of the DataView.", + "summary": "The setUint8() method of DataView instances takes a number and stores it as an 8-bit unsigned integer in the byte at the specified byte offset of this DataView.", "support": { "chrome": { "version_added": "9" @@ -6357,7 +6855,7 @@ "name": "Date", "slug": "JavaScript/Reference/Global_Objects/Date/Date", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/Date", - "summary": "The Date() constructor can create a Date instance or return a string representing the current time.", + "summary": "The Date() constructor creates Date objects. When called as a function, it returns a string representing the current time.", "support": { "chrome": { "version_added": "1" @@ -6410,7 +6908,7 @@ "name": "UTC", "slug": "JavaScript/Reference/Global_Objects/Date/UTC", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC", - "summary": "The Date.UTC() method accepts parameters similar to the Date constructor, but treats them as UTC. It returns the number of milliseconds since January 1, 1970, 00:00:00 UTC.", + "summary": "The Date.UTC() static method accepts parameters representing the date and time components similar to the Date constructor, but treats them as UTC. It returns the number of milliseconds since January 1, 1970, 00:00:00 UTC.", "support": { "chrome": { "version_added": "1" @@ -6463,7 +6961,7 @@ "name": "getDate", "slug": "JavaScript/Reference/Global_Objects/Date/getDate", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate", - "summary": "The getDate() method returns the day of the month for the specified date according to local time.", + "summary": "The getDate() method of Date instances returns the day of the month for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -6516,7 +7014,7 @@ "name": "getDay", "slug": "JavaScript/Reference/Global_Objects/Date/getDay", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay", - "summary": "The getDay() method returns the day of the week for the specified date according to local time, where 0 represents Sunday. For the day of the month, see Date.prototype.getDate().", + "summary": "The getDay() method of Date instances returns the day of the week for this date according to local time, where 0 represents Sunday. For the day of the month, see Date.prototype.getDate().", "support": { "chrome": { "version_added": "1" @@ -6569,7 +7067,7 @@ "name": "getFullYear", "slug": "JavaScript/Reference/Global_Objects/Date/getFullYear", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear", - "summary": "The getFullYear() method returns the year of the specified date according to local time.", + "summary": "The getFullYear() method of Date instances returns the year for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -6622,7 +7120,7 @@ "name": "getHours", "slug": "JavaScript/Reference/Global_Objects/Date/getHours", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours", - "summary": "The getHours() method returns the hour for the specified date, according to local time.", + "summary": "The getHours() method of Date instances returns the hours for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -6675,7 +7173,7 @@ "name": "getMilliseconds", "slug": "JavaScript/Reference/Global_Objects/Date/getMilliseconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds", - "summary": "The getMilliseconds() method returns the milliseconds in the specified date according to local time.", + "summary": "The getMilliseconds() method of Date instances returns the milliseconds for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -6728,7 +7226,7 @@ "name": "getMinutes", "slug": "JavaScript/Reference/Global_Objects/Date/getMinutes", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes", - "summary": "The getMinutes() method returns the minutes in the specified date according to local time.", + "summary": "The getMinutes() method of Date instances returns the minutes for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -6781,7 +7279,7 @@ "name": "getMonth", "slug": "JavaScript/Reference/Global_Objects/Date/getMonth", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth", - "summary": "The getMonth() method returns the month in the specified date according to local time, as a zero-based value (where zero indicates the first month of the year).", + "summary": "The getMonth() method of Date instances returns the month for this date according to local time, as a zero-based value (where zero indicates the first month of the year).", "support": { "chrome": { "version_added": "1" @@ -6834,7 +7332,7 @@ "name": "getSeconds", "slug": "JavaScript/Reference/Global_Objects/Date/getSeconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds", - "summary": "The getSeconds() method returns the seconds in the specified date according to local time.", + "summary": "The getSeconds() method of Date instances returns the seconds for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -6887,7 +7385,7 @@ "name": "getTime", "slug": "JavaScript/Reference/Global_Objects/Date/getTime", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime", - "summary": "The getTime() method returns the number of milliseconds since the ECMAScript epoch.", + "summary": "The getTime() method of Date instances returns the number of milliseconds for this date since the epoch, which is defined as the midnight at the beginning of January 1, 1970, UTC.", "support": { "chrome": { "version_added": "1" @@ -6940,7 +7438,7 @@ "name": "getTimezoneOffset", "slug": "JavaScript/Reference/Global_Objects/Date/getTimezoneOffset", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset", - "summary": "The getTimezoneOffset() method returns the difference, in minutes, between a date as evaluated in the UTC time zone, and the same date as evaluated in the local time zone.", + "summary": "The getTimezoneOffset() method of Date instances returns the difference, in minutes, between this date as evaluated in the UTC time zone, and the same date as evaluated in the local time zone.", "support": { "chrome": { "version_added": "1" @@ -6993,7 +7491,7 @@ "name": "getUTCDate", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCDate", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate", - "summary": "The getUTCDate() method returns the day of the month (from 1 to 31) in the specified date according to universal time.", + "summary": "The getUTCDate() method of Date instances returns the day of the month for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -7046,7 +7544,7 @@ "name": "getUTCDay", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCDay", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay", - "summary": "The getUTCDay() method returns the day of the week in the specified date according to universal time, where 0 represents Sunday.", + "summary": "The getUTCDay() method of Date instances returns the day of the week for this date according to universal time, where 0 represents Sunday.", "support": { "chrome": { "version_added": "1" @@ -7099,7 +7597,7 @@ "name": "getUTCFullYear", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCFullYear", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear", - "summary": "The getUTCFullYear() method returns the year in the specified date according to universal time.", + "summary": "The getUTCFullYear() method of Date instances returns the year for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -7152,7 +7650,7 @@ "name": "getUTCHours", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCHours", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours", - "summary": "The getUTCHours() method returns the hours in the specified date according to universal time.", + "summary": "The getUTCHours() method of Date instances returns the hours for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -7205,7 +7703,7 @@ "name": "getUTCMilliseconds", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds", - "summary": "The getUTCMilliseconds() method returns the milliseconds portion of the time object's value according to universal time.", + "summary": "The getUTCMilliseconds() method of Date instances returns the milliseconds for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -7258,7 +7756,7 @@ "name": "getUTCMinutes", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCMinutes", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes", - "summary": "The getUTCMinutes() method returns the minutes in the specified date according to universal time.", + "summary": "The getUTCMinutes() method of Date instances returns the minutes for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -7311,7 +7809,7 @@ "name": "getUTCMonth", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCMonth", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth", - "summary": "The getUTCMonth() returns the month of the specified date according to universal time, as a zero-based value (where zero indicates the first month of the year).", + "summary": "The getUTCMonth() method of Date instances returns the month for this date according to universal time, as a zero-based value (where zero indicates the first month of the year).", "support": { "chrome": { "version_added": "1" @@ -7364,7 +7862,7 @@ "name": "getUTCSeconds", "slug": "JavaScript/Reference/Global_Objects/Date/getUTCSeconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds", - "summary": "The getUTCSeconds() method returns the seconds in the specified date according to universal time.", + "summary": "The getUTCSeconds() method of Date instances returns the seconds in the specified date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -7417,7 +7915,7 @@ "name": "now", "slug": "JavaScript/Reference/Global_Objects/Date/now", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now", - "summary": "The static Date.now() method returns the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC.", + "summary": "The Date.now() static method returns the number of milliseconds elapsed since the epoch, which is defined as the midnight at the beginning of January 1, 1970, UTC.", "support": { "chrome": { "version_added": "1" @@ -7470,7 +7968,7 @@ "name": "parse", "slug": "JavaScript/Reference/Global_Objects/Date/parse", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse", - "summary": "The Date.parse() method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC or NaN if the string is unrecognized or, in some cases, contains illegal date values (e.g. 2015-02-31).", + "summary": "The Date.parse() static method parses a string representation of a date, and returns the date's timestamp.", "support": { "chrome": { "version_added": "1" @@ -7523,7 +8021,7 @@ "name": "setDate", "slug": "JavaScript/Reference/Global_Objects/Date/setDate", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate", - "summary": "The setDate() method changes the day of the month of a given Date instance, based on local time.", + "summary": "The setDate() method of Date instances changes the day of the month for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7576,7 +8074,7 @@ "name": "setFullYear", "slug": "JavaScript/Reference/Global_Objects/Date/setFullYear", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear", - "summary": "The setFullYear() method sets the full year for a specified date according to local time. Returns new timestamp.", + "summary": "The setFullYear() method of Date instances changes the year, month, and/or day of month for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7629,7 +8127,7 @@ "name": "setHours", "slug": "JavaScript/Reference/Global_Objects/Date/setHours", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours", - "summary": "The setHours() method sets the hours for a specified date according to local time, and returns the number of milliseconds since January 1, 1970 00:00:00 UTC until the time represented by the updated Date instance.", + "summary": "The setHours() method of Date instances changes the hours, minutes, seconds, and/or milliseconds for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7682,7 +8180,7 @@ "name": "setMilliseconds", "slug": "JavaScript/Reference/Global_Objects/Date/setMilliseconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds", - "summary": "The setMilliseconds() method sets the milliseconds for a specified date according to local time.", + "summary": "The setMilliseconds() method of Date instances changes the milliseconds for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7735,7 +8233,7 @@ "name": "setMinutes", "slug": "JavaScript/Reference/Global_Objects/Date/setMinutes", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes", - "summary": "The setMinutes() method sets the minutes for a specified date according to local time.", + "summary": "The setMinutes() method of Date instances changes the minutes for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7788,7 +8286,7 @@ "name": "setMonth", "slug": "JavaScript/Reference/Global_Objects/Date/setMonth", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth", - "summary": "The setMonth() method sets the month for a specified date according to the currently set year.", + "summary": "The setMonth() method of Date instances changes the month and/or day of the month for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7841,7 +8339,7 @@ "name": "setSeconds", "slug": "JavaScript/Reference/Global_Objects/Date/setSeconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds", - "summary": "The setSeconds() method sets the seconds for a specified date according to local time.", + "summary": "The setSeconds() method of Date instances changes the seconds and/or milliseconds for this date according to local time.", "support": { "chrome": { "version_added": "1" @@ -7894,7 +8392,7 @@ "name": "setTime", "slug": "JavaScript/Reference/Global_Objects/Date/setTime", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime", - "summary": "The setTime() method sets the Date object to the time represented by a number of milliseconds since January 1, 1970, 00:00:00 UTC.", + "summary": "The setTime() method of Date instances changes the timestamp for this date, which is the number of milliseconds since the epoch, defined as the midnight at the beginning of January 1, 1970, UTC.", "support": { "chrome": { "version_added": "1" @@ -7947,7 +8445,7 @@ "name": "setUTCDate", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCDate", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate", - "summary": "The setUTCDate() method changes the day of the month of a given Date instance, based on UTC time.", + "summary": "The setUTCDate() method of Date instances changes the day of the month for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8000,7 +8498,7 @@ "name": "setUTCFullYear", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCFullYear", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear", - "summary": "The setUTCFullYear() method sets the full year for a specified date according to universal time.", + "summary": "The setUTCFullYear() method of Date instances changes the year for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8053,7 +8551,7 @@ "name": "setUTCHours", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCHours", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours", - "summary": "The setUTCHours() method sets the hour for a specified date according to universal time, and returns the number of milliseconds since January 1, 1970 00:00:00 UTC until the time represented by the updated Date instance.", + "summary": "The setUTCHours() method of Date instances changes the hours, minutes, seconds, and/or milliseconds for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8106,7 +8604,7 @@ "name": "setUTCMilliseconds", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds", - "summary": "The setUTCMilliseconds() method sets the milliseconds for a specified date according to universal time.", + "summary": "The setUTCMilliseconds() method of Date instances changes the milliseconds for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8159,7 +8657,7 @@ "name": "setUTCMinutes", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCMinutes", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes", - "summary": "The setUTCMinutes() method sets the minutes for a specified date according to universal time.", + "summary": "The setUTCMinutes() method of Date instances changes the minutes for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8212,7 +8710,7 @@ "name": "setUTCMonth", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCMonth", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth", - "summary": "The setUTCMonth() method sets the month for a specified date according to universal time.", + "summary": "The setUTCMonth() method of Date instances changes the month and/or day of the month for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8265,7 +8763,7 @@ "name": "setUTCSeconds", "slug": "JavaScript/Reference/Global_Objects/Date/setUTCSeconds", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds", - "summary": "The setUTCSeconds() method sets the seconds for a specified date according to universal time.", + "summary": "The setUTCSeconds() method of Date instances changes the seconds and/or milliseconds for this date according to universal time.", "support": { "chrome": { "version_added": "1" @@ -8318,7 +8816,7 @@ "name": "toDateString", "slug": "JavaScript/Reference/Global_Objects/Date/toDateString", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString", - "summary": "The toDateString() method returns the date portion of a Date object interpreted in the local timezone in English.", + "summary": "The toDateString() method of Date instances returns a string representing the date portion of this date interpreted in the local timezone.", "support": { "chrome": { "version_added": "1" @@ -8371,7 +8869,7 @@ "name": "toISOString", "slug": "JavaScript/Reference/Global_Objects/Date/toISOString", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString", - "summary": "The toISOString() method returns a string in simplified extended ISO format (ISO 8601), which is always 24 or 27 characters long (YYYY-MM-DDTHH:mm:ss.sssZ or ±YYYYYY-MM-DDTHH:mm:ss.sssZ, respectively). The timezone is always zero UTC offset, as denoted by the suffix Z.", + "summary": "The toISOString() method of Date instances returns a string representing this date in the date time string format, a simplified format based on ISO 8601, which is always 24 or 27 characters long (YYYY-MM-DDTHH:mm:ss.sssZ or ±YYYYYY-MM-DDTHH:mm:ss.sssZ, respectively). The timezone is always UTC, as denoted by the suffix Z.", "support": { "chrome": { "version_added": "3" @@ -8426,7 +8924,7 @@ "name": "toJSON", "slug": "JavaScript/Reference/Global_Objects/Date/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toJSON", - "summary": "The toJSON() method returns a string representation of the Date object.", + "summary": "The toJSON() method of Date instances returns a string representing this date in the same ISO format as toISOString().", "support": { "chrome": { "version_added": "3" @@ -8640,7 +9138,7 @@ "name": "toString", "slug": "JavaScript/Reference/Global_Objects/Date/toString", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toString", - "summary": "The toString() method returns a string representing the specified Date object interpreted in the local timezone.", + "summary": "The toString() method of Date instances returns a string representing this date interpreted in the local timezone.", "support": { "chrome": { "version_added": "1" @@ -8693,7 +9191,7 @@ "name": "toTimeString", "slug": "JavaScript/Reference/Global_Objects/Date/toTimeString", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toTimeString", - "summary": "The toTimeString() method returns the time portion of a Date object interpreted in the local timezone in English.", + "summary": "The toTimeString() method of Date instances returns a string representing the time portion of this date interpreted in the local timezone.", "support": { "chrome": { "version_added": "1" @@ -8746,7 +9244,7 @@ "name": "toUTCString", "slug": "JavaScript/Reference/Global_Objects/Date/toUTCString", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString", - "summary": "The toUTCString() method converts a date to a string, interpreting it in the UTC time zone.", + "summary": "The toUTCString() method of Date instances returns a string representing this date in the RFC 7231 format, with negative years allowed. The timezone is always UTC. toGMTString() is an alias of this method.", "support": { "chrome": { "version_added": "1" @@ -8799,7 +9297,7 @@ "name": "valueOf", "slug": "JavaScript/Reference/Global_Objects/Date/valueOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf", - "summary": "The valueOf() method returns the primitive value of a Date object.", + "summary": "The valueOf() method of Date instances returns the number of milliseconds for this date since the epoch, which is defined as the midnight at the beginning of January 1, 1970, UTC.", "support": { "chrome": { "version_added": "1" @@ -8852,7 +9350,7 @@ "name": "@@toPrimitive", "slug": "JavaScript/Reference/Global_Objects/Date/@@toPrimitive", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/@@toPrimitive", - "summary": "The [@@toPrimitive]() method converts a Date object to a primitive value.", + "summary": "The [@@toPrimitive]() method of Date instances returns a primitive value representing this date. It may either be a string or a number, depending on the hint given.", "support": { "chrome": { "version_added": "47" @@ -8887,7 +9385,7 @@ "version_added": "79" } }, - "title": "Date.prototype[@@toPrimitive]" + "title": "Date.prototype[@@toPrimitive]()" } ], "sec-date-objects": [ @@ -8901,7 +9399,7 @@ "name": "Date", "slug": "JavaScript/Reference/Global_Objects/Date", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date", - "summary": "JavaScript Date objects represent a single moment in time in a platform-independent format. Date objects contain a Number that represents milliseconds since 1 January 1970 UTC.", + "summary": "JavaScript Date objects represent a single moment in time in a platform-independent format. Date objects encapsulate an integral number that represents milliseconds since the midnight at the beginning of January 1, 1970, UTC (the epoch).", "support": { "chrome": { "version_added": "1" @@ -8955,7 +9453,7 @@ "name": "Error", "slug": "JavaScript/Reference/Global_Objects/Error/Error", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/Error", - "summary": "The Error() constructor creates an error object.", + "summary": "The Error() constructor creates Error objects.", "support": { "chrome": { "version_added": "1" @@ -9008,7 +9506,7 @@ "name": "message", "slug": "JavaScript/Reference/Global_Objects/Error/message", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/message", - "summary": "The message property is a human-readable description of the error.", + "summary": "The message data property of an Error instance is a human-readable description of the error.", "support": { "chrome": { "version_added": "1" @@ -9047,7 +9545,7 @@ "version_added": "79" } }, - "title": "Error.prototype.message" + "title": "Error: message" } ], "sec-error.prototype.name": [ @@ -9061,7 +9559,7 @@ "name": "name", "slug": "JavaScript/Reference/Global_Objects/Error/name", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/name", - "summary": "The name property represents a name for the type of error. The initial value is \"Error\".", + "summary": "The name data property of Error.prototype is shared by all Error instances. It represents the name for the type of error. For Error.prototype.name, the initial value is \"Error\". Subclasses like TypeError and SyntaxError provide their own name properties.", "support": { "chrome": { "version_added": "1" @@ -9220,7 +9718,7 @@ "name": "EvalError", "slug": "JavaScript/Reference/Global_Objects/EvalError/EvalError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError/EvalError", - "summary": "The EvalError() constructor creates a new EvalError instance.", + "summary": "The EvalError() constructor creates EvalError objects.", "support": { "chrome": { "version_added": "1" @@ -9271,7 +9769,7 @@ "name": "RangeError", "slug": "JavaScript/Reference/Global_Objects/RangeError/RangeError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError/RangeError", - "summary": "The RangeError() constructor creates an error when a value is not in the set or range of allowed values.", + "summary": "The RangeError() constructor creates RangeError objects.", "support": { "chrome": { "version_added": "1" @@ -9322,7 +9820,7 @@ "name": "ReferenceError", "slug": "JavaScript/Reference/Global_Objects/ReferenceError/ReferenceError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError/ReferenceError", - "summary": "The ReferenceError object represents an error when a non-existent variable is referenced.", + "summary": "The ReferenceError() constructor creates ReferenceError objects.", "support": { "chrome": { "version_added": "1" @@ -9373,7 +9871,7 @@ "name": "SyntaxError", "slug": "JavaScript/Reference/Global_Objects/SyntaxError/SyntaxError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError/SyntaxError", - "summary": "The SyntaxError constructor creates a new error object that represents an error when trying to interpret syntactically invalid code.", + "summary": "The SyntaxError() constructor creates SyntaxError objects.", "support": { "chrome": { "version_added": "1" @@ -9424,7 +9922,7 @@ "name": "TypeError", "slug": "JavaScript/Reference/Global_Objects/TypeError/TypeError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError/TypeError", - "summary": "The TypeError() constructor creates a new error when an operation could not be performed, typically (but not exclusively) when a value is not of the expected type.", + "summary": "The TypeError() constructor creates TypeError objects.", "support": { "chrome": { "version_added": "1" @@ -9475,7 +9973,7 @@ "name": "URIError", "slug": "JavaScript/Reference/Global_Objects/URIError/URIError", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError/URIError", - "summary": "The URIError() constructor creates an error when a global URI handling function was used in a wrong way.", + "summary": "The URIError() constructor creates URIError objects.", "support": { "chrome": { "version_added": "1" @@ -9524,8 +10022,8 @@ ], "filename": "javascript/builtins/WebAssembly/CompileError.json", "name": "CompileError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError/CompileError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError/CompileError", "summary": "The WebAssembly.CompileError() constructor creates a new WebAssembly CompileError object, which indicates an error during WebAssembly decoding or validation.", "support": { "chrome": { @@ -9571,8 +10069,8 @@ ], "filename": "javascript/builtins/WebAssembly/LinkError.json", "name": "LinkError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/LinkError/LinkError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/LinkError/LinkError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError/LinkError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError/LinkError", "summary": "The WebAssembly.LinkError() constructor creates a new WebAssembly LinkError object, which indicates an error during module instantiation (besides traps from the start function).", "support": { "chrome": { @@ -9618,8 +10116,8 @@ ], "filename": "javascript/builtins/WebAssembly/RuntimeError.json", "name": "RuntimeError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError/RuntimeError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError/RuntimeError", "summary": "The WebAssembly.RuntimeError() constructor creates a new WebAssembly RuntimeError object — the type that is thrown whenever WebAssembly specifies a trap.", "support": { "chrome": { @@ -9722,7 +10220,7 @@ "name": "FinalizationRegistry", "slug": "JavaScript/Reference/Global_Objects/FinalizationRegistry/FinalizationRegistry", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry/FinalizationRegistry", - "summary": "The FinalizationRegistry constructor creates a FinalizationRegistry object that uses the given callback.", + "summary": "The FinalizationRegistry() constructor creates FinalizationRegistry objects.", "support": { "chrome": { "version_added": "84" @@ -9780,7 +10278,7 @@ "name": "register", "slug": "JavaScript/Reference/Global_Objects/FinalizationRegistry/register", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry/register", - "summary": "The register() method registers an object with a FinalizationRegistry instance so that if the object is garbage-collected, the registry's callback may get called.", + "summary": "The register() method registers an value with a FinalizationRegistry instance so that if the value is garbage-collected, the registry's callback may get called.", "support": { "chrome": { "version_added": "84" @@ -9838,7 +10336,7 @@ "name": "unregister", "slug": "JavaScript/Reference/Global_Objects/FinalizationRegistry/unregister", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry/unregister", - "summary": "The unregister() method unregisters a target object from a FinalizationRegistry instance.", + "summary": "The unregister() method unregisters a target value from a FinalizationRegistry instance.", "support": { "chrome": { "version_added": "84" @@ -9896,7 +10394,7 @@ "name": "FinalizationRegistry", "slug": "JavaScript/Reference/Global_Objects/FinalizationRegistry", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry", - "summary": "A FinalizationRegistry object lets you request a callback when an object is garbage-collected.", + "summary": "A FinalizationRegistry object lets you request a callback when a value is garbage-collected.", "support": { "chrome": { "version_added": "84" @@ -10451,7 +10949,7 @@ "name": "Function", "slug": "JavaScript/Reference/Global_Objects/Function/Function", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/Function", - "summary": "The Function() constructor creates a new Function object. Calling the constructor directly can create functions dynamically, but suffers from security and similar (but far less significant) performance issues as eval(). However, unlike eval (which may have access to the local scope), the Function constructor creates functions which execute in the global scope only.", + "summary": "The Function() constructor creates Function objects. Calling the constructor directly can create functions dynamically, but suffers from security and similar (but far less significant) performance issues as eval(). However, unlike eval (which may have access to the local scope), the Function constructor creates functions which execute in the global scope only.", "support": { "chrome": { "version_added": "1" @@ -10668,7 +11166,7 @@ "name": "length", "slug": "JavaScript/Reference/Global_Objects/Function/length", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/length", - "summary": "A Function object's length property indicates the number of parameters expected by the function.", + "summary": "The length data property of a Function instance indicates the number of parameters expected by the function.", "support": { "chrome": { "version_added": "1" @@ -10707,7 +11205,7 @@ "version_added": "79" } }, - "title": "Function.prototype.length" + "title": "Function: length" } ], "sec-function-instances-name": [ @@ -10721,7 +11219,7 @@ "name": "name", "slug": "JavaScript/Reference/Global_Objects/Function/name", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name", - "summary": "A Function object's read-only name property indicates the function's name as specified when it was created, or it may be either anonymous or '' (an empty string) for functions created anonymously.", + "summary": "The name data property of a Function instance indicates the function's name as specified when it was created, or it may be either anonymous or '' (an empty string) for functions created anonymously.", "support": { "chrome": { "version_added": "15" @@ -10760,7 +11258,7 @@ "version_added": "79" } }, - "title": "Function.prototype.name" + "title": "Function: name" } ], "sec-function.prototype.tostring": [ @@ -10816,6 +11314,66 @@ "title": "Function.prototype.toString()" } ], + "sec-function.prototype-@@hasinstance": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Function.json", + "name": "@@hasInstance", + "slug": "JavaScript/Reference/Global_Objects/Function/@@hasInstance", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/@@hasInstance", + "summary": "The [@@hasInstance]() method of Function instances specifies the default procedure for determining if a constructor function recognizes an object as one of the constructor's instances. It is called by the instanceof operator.", + "support": { + "chrome": { + "version_added": "50" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "15" + }, + "firefox": { + "version_added": "50" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "6.5.0" + }, + { + "version_added": "6.0.0", + "flags": [ + { + "type": "runtime_flag", + "name": "--harmony" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Function.prototype[@@hasInstance]()" + } + ], "sec-function-objects": [ { "engines": [ @@ -10827,7 +11385,7 @@ "name": "Function", "slug": "JavaScript/Reference/Global_Objects/Function", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "summary": "Every JavaScript function is actually a Function object. This can be seen with the code (function () {}).constructor === Function, which returns true.", + "summary": "The Function object provides methods for functions. In JavaScript, every function is actually a Function object.", "support": { "chrome": { "version_added": "1" @@ -10942,7 +11500,7 @@ "name": "return", "slug": "JavaScript/Reference/Global_Objects/Generator/return", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator/return", - "summary": "The return() method of a generator acts as if a return statement is inserted in the generator's body at the current suspended position, which finishes the generator and allows the generator to perform any cleanup tasks when combined with a try...finally block.", + "summary": "The return() method of Generator instances acts as if a return statement is inserted in the generator's body at the current suspended position, which finishes the generator and allows the generator to perform any cleanup tasks when combined with a try...finally block.", "support": { "chrome": { "version_added": "50" @@ -10991,7 +11549,7 @@ "name": "throw", "slug": "JavaScript/Reference/Global_Objects/Generator/throw", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator/throw", - "summary": "The throw() method of a generator acts as if a throw statement is inserted in the generator's body at the current suspended position, which informs the generator of an error condition and allows it to handle the error, or perform cleanup and close itself.", + "summary": "The throw() method of Generator instances acts as if a throw statement is inserted in the generator's body at the current suspended position, which informs the generator of an error condition and allows it to handle the error, or perform cleanup and close itself.", "support": { "chrome": { "version_added": "39" @@ -11100,6 +11658,66 @@ "title": "Generator" } ], + "sec-generatorfunction-constructor": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/GeneratorFunction.json", + "name": "GeneratorFunction", + "slug": "JavaScript/Reference/Global_Objects/GeneratorFunction/GeneratorFunction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction/GeneratorFunction", + "summary": "The GeneratorFunction() constructor creates GeneratorFunction objects.", + "support": { + "chrome": { + "version_added": "39" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "26" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "4.0.0" + }, + { + "version_added": "0.12.0", + "flags": [ + { + "type": "runtime_flag", + "name": "--harmony" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "GeneratorFunction() constructor" + } + ], "sec-generatorfunction-objects": [ { "engines": [ @@ -11111,7 +11729,7 @@ "name": "GeneratorFunction", "slug": "JavaScript/Reference/Global_Objects/GeneratorFunction", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction", - "summary": "In JavaScript, every generator function is actually a GeneratorFunction object. There is no global object with the name GeneratorFunction, but you can create a GeneratorFunction() constructor using the following code:", + "summary": "The GeneratorFunction object provides methods for generator functions. In JavaScript, every generator function is actually a GeneratorFunction object.", "support": { "chrome": { "version_added": "39" @@ -11160,21 +11778,21 @@ "title": "GeneratorFunction" } ], - "sec-json.parse": [ + "sec-%iteratorprototype%-@@iterator": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "javascript/builtins/JSON.json", - "name": "parse", - "slug": "JavaScript/Reference/Global_Objects/JSON/parse", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse", - "summary": "The JSON.parse() method parses a JSON string, constructing the JavaScript value or object described by the string. An optional reviver function can be provided to perform a transformation on the resulting object before it is returned.", + "filename": "javascript/builtins/Iterator.json", + "name": "@@iterator", + "slug": "JavaScript/Reference/Global_Objects/Iterator/@@iterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Iterator/@@iterator", + "summary": "The [@@iterator]() method of Iterator instances implements the iterable protocol and allows built-in iterators to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns the value of this, which is the iterator object itself.", "support": { "chrome": { - "version_added": "3" + "version_added": "38" }, "chrome_android": "mirror", "deno": { @@ -11183,41 +11801,96 @@ "edge": { "version_added": "12" }, - "firefox": { - "version_added": "3.5" - }, + "firefox": [ + { + "version_added": "36" + }, + { + "alternative_name": "@@iterator", + "version_added": "27", + "version_removed": "36", + "notes": "A placeholder property named <code>@@iterator</code> is used." + }, + { + "alternative_name": "iterator", + "version_added": "17", + "version_removed": "27", + "notes": "A placeholder property named <code>iterator</code> is used." + } + ], "firefox_android": "mirror", "ie": { - "version_added": "8" + "version_added": false }, "nodejs": { - "version_added": "0.10.0" + "version_added": "0.12.0" }, "oculus": "mirror", - "opera": { - "version_added": "10.5" + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" }, - "opera_android": { - "version_added": "11" + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Iterator.prototype[@@iterator]()" + } + ], + "sec-%iteratorprototype%-object": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Iterator.json", + "name": "Iterator", + "slug": "JavaScript/Reference/Global_Objects/Iterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Iterator", + "summary": "An Iterator object is an object that conforms to the iterator protocol by providing a next() method that returns an iterator result object. The Iterator.prototype object is a hidden global object that all built-in iterators inherit from. It provides a @@iterator method that returns the iterator object itself, making the iterator also iterable.", + "support": { + "chrome": { + "version_added": "38" }, - "safari": { - "version_added": "4" + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" }, - "safari_ios": { - "version_added": "4" + "edge": { + "version_added": "12" }, - "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "37" + "firefox": { + "version_added": "17" }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "0.12.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "JSON.parse()" + "title": "Iterator" } ], - "sec-json.stringify": [ + "sec-json.parse": [ { "engines": [ "blink", @@ -11225,10 +11898,10 @@ "webkit" ], "filename": "javascript/builtins/JSON.json", - "name": "stringify", - "slug": "JavaScript/Reference/Global_Objects/JSON/stringify", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify", - "summary": "The JSON.stringify() method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified or optionally including only the specified properties if a replacer array is specified.", + "name": "parse", + "slug": "JavaScript/Reference/Global_Objects/JSON/parse", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse", + "summary": "The JSON.parse() static method parses a JSON string, constructing the JavaScript value or object described by the string. An optional reviver function can be provided to perform a transformation on the resulting object before it is returned.", "support": { "chrome": { "version_added": "3" @@ -11271,10 +11944,10 @@ "version_added": "79" } }, - "title": "JSON.stringify()" + "title": "JSON.parse()" } ], - "sec-json-object": [ + "sec-json.stringify": [ { "engines": [ "blink", @@ -11282,10 +11955,67 @@ "webkit" ], "filename": "javascript/builtins/JSON.json", - "name": "JSON", - "slug": "JavaScript/Reference/Global_Objects/JSON", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", - "summary": "The JSON object contains methods for parsing JavaScript Object Notation (JSON) and converting values to JSON. It can't be called or constructed.", + "name": "stringify", + "slug": "JavaScript/Reference/Global_Objects/JSON/stringify", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify", + "summary": "The JSON.stringify() static method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified or optionally including only the specified properties if a replacer array is specified.", + "support": { + "chrome": { + "version_added": "3" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "8" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "10.5" + }, + "opera_android": { + "version_added": "11" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "4" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "JSON.stringify()" + } + ], + "sec-json-object": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/JSON.json", + "name": "JSON", + "slug": "JavaScript/Reference/Global_Objects/JSON", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", + "summary": "The JSON namespace object contains static methods for parsing values from and converting values to JavaScript Object Notation (JSON).", "support": { "chrome": { "version_added": "3" @@ -11515,7 +12245,7 @@ "name": "entries", "slug": "JavaScript/Reference/Global_Objects/Map/entries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/entries", - "summary": "The entries() method returns a new iterator object that contains the [key, value] pairs for each element in the Map object in insertion order. In this particular case, this iterator object is also an iterable, so the for-of loop can be used. When the protocol [Symbol.iterator] is used, it returns a function that, when invoked, returns this iterator itself.", + "summary": "The entries() method returns a new map iterator object that contains the [key, value] pairs for each element in the Map object in insertion order.", "support": { "chrome": { "version_added": "38" @@ -11733,7 +12463,7 @@ "name": "keys", "slug": "JavaScript/Reference/Global_Objects/Map/keys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/keys", - "summary": "The keys() method returns a new iterator object that contains the keys for each element in the Map object in insertion order. In this particular case, this iterator object is also an iterable, so a for...of loop can be used.", + "summary": "The keys() method returns a new map iterator object that contains the keys for each element in the Map object in insertion order.", "support": { "chrome": { "version_added": "38" @@ -11844,7 +12574,7 @@ "name": "size", "slug": "JavaScript/Reference/Global_Objects/Map/size", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/size", - "summary": "The size accessor property returns the number of elements in a Map object.", + "summary": "The size accessor property of Map instances returns the number of elements in this map.", "support": { "chrome": { "version_added": "38" @@ -11894,7 +12624,7 @@ "name": "values", "slug": "JavaScript/Reference/Global_Objects/Map/values", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/values", - "summary": "The values() method returns a new iterator object that contains the values for each element in the Map object in insertion order.", + "summary": "The values() method returns a new map iterator object that contains the values for each element in the Map object in insertion order.", "support": { "chrome": { "version_added": "38" @@ -11943,7 +12673,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Global_Objects/Map/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/@@iterator", - "summary": "The @@iterator method of a Map object implements the iterable protocol and allows maps to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the key-value pairs of the map.", + "summary": "The [@@iterator]() method of Map instances implements the iterable protocol and allows maps to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns a map iterator object that yields the key-value pairs of the map in insertion order.", "support": { "chrome": { "version_added": "38" @@ -12006,7 +12736,7 @@ "name": "@@species", "slug": "JavaScript/Reference/Global_Objects/Map/@@species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/@@species", - "summary": "The Map[@@species] accessor property is an unused accessor property specifying how to copy Map objects.", + "summary": "The Map[@@species] static accessor property is an unused accessor property specifying how to copy Map objects.", "support": { "chrome": { "version_added": "51" @@ -12052,7 +12782,7 @@ "version_added": "79" } }, - "title": "get Map[@@species]" + "title": "Map[@@species]" } ], "sec-map.prototype-@@tostringtag": [ @@ -12066,7 +12796,7 @@ "name": "@@toStringTag", "slug": "JavaScript/Reference/Global_Objects/Map/@@toStringTag", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/@@toStringTag", - "summary": "The Map[@@toStringTag] property has an initial value of \"Map\".", + "summary": "The Map object holds key-value pairs and remembers the original insertion order of the keys. Any value (both objects and primitive values) may be used as either a key or a value.", "support": { "chrome": { "version_added": "44" @@ -12099,7 +12829,7 @@ "version_added": "79" } }, - "title": "Map.prototype[@@toStringTag]" + "title": "Map" } ], "sec-map-objects": [ @@ -12173,7 +12903,7 @@ "name": "E", "slug": "JavaScript/Reference/Global_Objects/Math/E", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/E", - "summary": "The Math.E property represents Euler's number, the base of natural logarithms, e, which is approximately 2.718.", + "summary": "The Math.E static data property represents Euler's number, the base of natural logarithms, e, which is approximately 2.718.", "support": { "chrome": { "version_added": "1" @@ -12226,7 +12956,7 @@ "name": "LN10", "slug": "JavaScript/Reference/Global_Objects/Math/LN10", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10", - "summary": "The Math.LN10 property represents the natural logarithm of 10, approximately 2.302:", + "summary": "The Math.LN10 static data property represents the natural logarithm of 10, approximately 2.302.", "support": { "chrome": { "version_added": "1" @@ -12279,7 +13009,7 @@ "name": "LN2", "slug": "JavaScript/Reference/Global_Objects/Math/LN2", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2", - "summary": "The Math.LN2 property represents the natural logarithm of 2, approximately 0.693:", + "summary": "The Math.LN2 static data property represents the natural logarithm of 2, approximately 0.693:", "support": { "chrome": { "version_added": "1" @@ -12332,7 +13062,7 @@ "name": "LOG10E", "slug": "JavaScript/Reference/Global_Objects/Math/LOG10E", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E", - "summary": "The Math.LOG10E property represents the base 10 logarithm of e, approximately 0.434:", + "summary": "The Math.LOG10E static data property represents the base 10 logarithm of e, approximately 0.434.", "support": { "chrome": { "version_added": "1" @@ -12385,7 +13115,7 @@ "name": "LOG2E", "slug": "JavaScript/Reference/Global_Objects/Math/LOG2E", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E", - "summary": "The Math.LOG2E property represents the base 2 logarithm of e, approximately 1.442:", + "summary": "The Math.LOG2E static data property represents the base 2 logarithm of e, approximately 1.442.", "support": { "chrome": { "version_added": "1" @@ -12438,7 +13168,7 @@ "name": "PI", "slug": "JavaScript/Reference/Global_Objects/Math/PI", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/PI", - "summary": "The Math.PI property represents the ratio of the circumference of a circle to its diameter, approximately 3.14159:", + "summary": "The Math.PI static data property represents the ratio of the circumference of a circle to its diameter, approximately 3.14159.", "support": { "chrome": { "version_added": "1" @@ -12491,7 +13221,7 @@ "name": "SQRT1_2", "slug": "JavaScript/Reference/Global_Objects/Math/SQRT1_2", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2", - "summary": "The Math.SQRT1_2 property represents the square root of 1/2 which is approximately 0.707:", + "summary": "The Math.SQRT1_2 static data property represents the square root of 1/2, which is approximately 0.707.", "support": { "chrome": { "version_added": "1" @@ -12544,7 +13274,7 @@ "name": "SQRT2", "slug": "JavaScript/Reference/Global_Objects/Math/SQRT2", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2", - "summary": "The Math.SQRT2 property represents the square root of 2, approximately 1.414:", + "summary": "The Math.SQRT2 static data property represents the square root of 2, approximately 1.414.", "support": { "chrome": { "version_added": "1" @@ -12597,7 +13327,7 @@ "name": "abs", "slug": "JavaScript/Reference/Global_Objects/Math/abs", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/abs", - "summary": "The Math.abs() function returns the absolute value of a number.", + "summary": "The Math.abs() static method returns the absolute value of a number.", "support": { "chrome": { "version_added": "1" @@ -12650,7 +13380,7 @@ "name": "acos", "slug": "JavaScript/Reference/Global_Objects/Math/acos", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/acos", - "summary": "The Math.acos() function returns the inverse cosine (in radians) of a number. That is,", + "summary": "The Math.acos() static method returns the inverse cosine (in radians) of a number. That is,", "support": { "chrome": { "version_added": "1" @@ -12703,7 +13433,7 @@ "name": "acosh", "slug": "JavaScript/Reference/Global_Objects/Math/acosh", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/acosh", - "summary": "The Math.acosh() function returns the inverse hyperbolic cosine of a number. That is,", + "summary": "The Math.acosh() static method returns the inverse hyperbolic cosine of a number. That is,", "support": { "chrome": { "version_added": "38" @@ -12752,7 +13482,7 @@ "name": "asin", "slug": "JavaScript/Reference/Global_Objects/Math/asin", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/asin", - "summary": "The Math.asin() function returns the inverse sine (in radians) of a number. That is,", + "summary": "The Math.asin() static method returns the inverse sine (in radians) of a number. That is,", "support": { "chrome": { "version_added": "1" @@ -12805,7 +13535,7 @@ "name": "asinh", "slug": "JavaScript/Reference/Global_Objects/Math/asinh", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/asinh", - "summary": "The Math.asinh() function returns the inverse hyperbolic sine of a number. That is,", + "summary": "The Math.asinh() static method returns the inverse hyperbolic sine of a number. That is,", "support": { "chrome": { "version_added": "38" @@ -12854,7 +13584,7 @@ "name": "atan", "slug": "JavaScript/Reference/Global_Objects/Math/atan", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/atan", - "summary": "The Math.atan() function returns the inverse tangent (in radians) of a number, that is", + "summary": "The Math.atan() static method returns the inverse tangent (in radians) of a number, that is", "support": { "chrome": { "version_added": "1" @@ -12907,7 +13637,7 @@ "name": "atan2", "slug": "JavaScript/Reference/Global_Objects/Math/atan2", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2", - "summary": "The Math.atan2() function returns the angle in the plane (in radians) between the positive x-axis and the ray from (0, 0) to the point (x, y), for Math.atan2(y, x).", + "summary": "The Math.atan2() static method returns the angle in the plane (in radians) between the positive x-axis and the ray from (0, 0) to the point (x, y), for Math.atan2(y, x).", "support": { "chrome": { "version_added": "1" @@ -12960,7 +13690,7 @@ "name": "atanh", "slug": "JavaScript/Reference/Global_Objects/Math/atanh", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/atanh", - "summary": "The Math.atanh() function returns the inverse hyperbolic tangent of a number. That is,", + "summary": "The Math.atanh() static method returns the inverse hyperbolic tangent of a number. That is,", "support": { "chrome": { "version_added": "38" @@ -13009,7 +13739,7 @@ "name": "cbrt", "slug": "JavaScript/Reference/Global_Objects/Math/cbrt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/cbrt", - "summary": "The Math.cbrt() function returns the cube root of a number. That is", + "summary": "The Math.cbrt() static method returns the cube root of a number. That is", "support": { "chrome": { "version_added": "38" @@ -13058,7 +13788,7 @@ "name": "ceil", "slug": "JavaScript/Reference/Global_Objects/Math/ceil", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil", - "summary": "The Math.ceil() function always rounds up and returns the smaller integer greater than or equal to a given number.", + "summary": "The Math.ceil() static method always rounds up and returns the smallest integer greater than or equal to a given number.", "support": { "chrome": { "version_added": "1" @@ -13111,7 +13841,7 @@ "name": "clz32", "slug": "JavaScript/Reference/Global_Objects/Math/clz32", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32", - "summary": "The Math.clz32() function returns the number of leading zero bits in the 32-bit binary representation of a number.", + "summary": "The Math.clz32() static method returns the number of leading zero bits in the 32-bit binary representation of a number.", "support": { "chrome": { "version_added": "38" @@ -13160,7 +13890,7 @@ "name": "cos", "slug": "JavaScript/Reference/Global_Objects/Math/cos", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/cos", - "summary": "The Math.cos() function returns the cosine of a number in radians.", + "summary": "The Math.cos() static method returns the cosine of a number in radians.", "support": { "chrome": { "version_added": "1" @@ -13213,7 +13943,7 @@ "name": "cosh", "slug": "JavaScript/Reference/Global_Objects/Math/cosh", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/cosh", - "summary": "The Math.cosh() function returns the hyperbolic cosine of a number. That is,", + "summary": "The Math.cosh() static method returns the hyperbolic cosine of a number. That is,", "support": { "chrome": { "version_added": "38" @@ -13262,7 +13992,7 @@ "name": "exp", "slug": "JavaScript/Reference/Global_Objects/Math/exp", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/exp", - "summary": "The Math.exp() function returns e raised to the power of a number. That is", + "summary": "The Math.exp() static method returns e raised to the power of a number. That is", "support": { "chrome": { "version_added": "1" @@ -13315,7 +14045,7 @@ "name": "expm1", "slug": "JavaScript/Reference/Global_Objects/Math/expm1", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/expm1", - "summary": "The Math.expm1() function returns e raised to the power of a number, subtracted by 1. That is", + "summary": "The Math.expm1() static method returns e raised to the power of a number, subtracted by 1. That is", "support": { "chrome": { "version_added": "38" @@ -13364,7 +14094,7 @@ "name": "floor", "slug": "JavaScript/Reference/Global_Objects/Math/floor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/floor", - "summary": "The Math.floor() function always rounds down and returns the largest integer less than or equal to a given number.", + "summary": "The Math.floor() static method always rounds down and returns the largest integer less than or equal to a given number.", "support": { "chrome": { "version_added": "1" @@ -13417,7 +14147,7 @@ "name": "fround", "slug": "JavaScript/Reference/Global_Objects/Math/fround", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround", - "summary": "The Math.fround() function returns the nearest 32-bit single precision float representation of a number.", + "summary": "The Math.fround() static method returns the nearest 32-bit single precision float representation of a number.", "support": { "chrome": { "version_added": "38" @@ -13466,7 +14196,7 @@ "name": "hypot", "slug": "JavaScript/Reference/Global_Objects/Math/hypot", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/hypot", - "summary": "The Math.hypot() function returns the square root of the sum of squares of its arguments. That is,", + "summary": "The Math.hypot() static method returns the square root of the sum of squares of its arguments. That is,", "support": { "chrome": { "version_added": "38" @@ -13515,7 +14245,7 @@ "name": "imul", "slug": "JavaScript/Reference/Global_Objects/Math/imul", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul", - "summary": "The Math.imul() function returns the result of the C-like 32-bit multiplication of the two parameters.", + "summary": "The Math.imul() static method returns the result of the C-like 32-bit multiplication of the two parameters.", "support": { "chrome": { "version_added": "28" @@ -13566,7 +14296,7 @@ "name": "log", "slug": "JavaScript/Reference/Global_Objects/Math/log", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log", - "summary": "The Math.log() function returns the natural logarithm (base e) of a number. That is", + "summary": "The Math.log() static method returns the natural logarithm (base e) of a number. That is", "support": { "chrome": { "version_added": "1" @@ -13619,7 +14349,7 @@ "name": "log10", "slug": "JavaScript/Reference/Global_Objects/Math/log10", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log10", - "summary": "The Math.log10() function returns the base 10 logarithm of a number. That is", + "summary": "The Math.log10() static method returns the base 10 logarithm of a number. That is", "support": { "chrome": { "version_added": "38" @@ -13668,7 +14398,7 @@ "name": "log1p", "slug": "JavaScript/Reference/Global_Objects/Math/log1p", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log1p", - "summary": "The Math.log1p() function returns the natural logarithm (base e) of 1 + x, where x is the argument. That is:", + "summary": "The Math.log1p() static method returns the natural logarithm (base e) of 1 + x, where x is the argument. That is:", "support": { "chrome": { "version_added": "38" @@ -13717,7 +14447,7 @@ "name": "log2", "slug": "JavaScript/Reference/Global_Objects/Math/log2", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log2", - "summary": "The Math.log2() function returns the base 2 logarithm of a number. That is", + "summary": "The Math.log2() static method returns the base 2 logarithm of a number. That is", "support": { "chrome": { "version_added": "38" @@ -13766,7 +14496,7 @@ "name": "max", "slug": "JavaScript/Reference/Global_Objects/Math/max", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/max", - "summary": "The Math.max() function returns the largest of the numbers given as input parameters, or -Infinity if there are no parameters.", + "summary": "The Math.max() static method returns the largest of the numbers given as input parameters, or -Infinity if there are no parameters.", "support": { "chrome": { "version_added": "1" @@ -13819,7 +14549,7 @@ "name": "min", "slug": "JavaScript/Reference/Global_Objects/Math/min", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/min", - "summary": "The Math.min() function returns the smallest of the numbers given as input parameters, or Infinity if there are no parameters.", + "summary": "The Math.min() static method returns the smallest of the numbers given as input parameters, or Infinity if there are no parameters.", "support": { "chrome": { "version_added": "1" @@ -13872,7 +14602,7 @@ "name": "pow", "slug": "JavaScript/Reference/Global_Objects/Math/pow", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/pow", - "summary": "The Math.pow() method returns the value of a base raised to a power. That is", + "summary": "The Math.pow() static method returns the value of a base raised to a power. That is", "support": { "chrome": { "version_added": "1" @@ -13925,7 +14655,7 @@ "name": "random", "slug": "JavaScript/Reference/Global_Objects/Math/random", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random", - "summary": "The Math.random() function returns a floating-point, pseudo-random number that's greater than or equal to 0 and less than 1, with approximately uniform distribution over that range — which you can then scale to your desired range. The implementation selects the initial seed to the random number generation algorithm; it cannot be chosen or reset by the user.", + "summary": "The Math.random() static method returns a floating-point, pseudo-random number that's greater than or equal to 0 and less than 1, with approximately uniform distribution over that range — which you can then scale to your desired range. The implementation selects the initial seed to the random number generation algorithm; it cannot be chosen or reset by the user.", "support": { "chrome": { "version_added": "1" @@ -13978,7 +14708,7 @@ "name": "round", "slug": "JavaScript/Reference/Global_Objects/Math/round", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round", - "summary": "The Math.round() function returns the value of a number rounded to the nearest integer.", + "summary": "The Math.round() static method returns the value of a number rounded to the nearest integer.", "support": { "chrome": { "version_added": "1" @@ -14031,7 +14761,7 @@ "name": "sign", "slug": "JavaScript/Reference/Global_Objects/Math/sign", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign", - "summary": "The Math.sign() function returns 1 or -1, indicating the sign of the number passed as argument. If the input is 0 or -0, it will be returned as-is.", + "summary": "The Math.sign() static method returns 1 or -1, indicating the sign of the number passed as argument. If the input is 0 or -0, it will be returned as-is.", "support": { "chrome": { "version_added": "38" @@ -14080,7 +14810,7 @@ "name": "sin", "slug": "JavaScript/Reference/Global_Objects/Math/sin", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sin", - "summary": "The Math.sin() function returns the sine of a number in radians.", + "summary": "The Math.sin() static method returns the sine of a number in radians.", "support": { "chrome": { "version_added": "1" @@ -14133,7 +14863,7 @@ "name": "sinh", "slug": "JavaScript/Reference/Global_Objects/Math/sinh", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sinh", - "summary": "The Math.sinh() function returns the hyperbolic sine of a number. That is,", + "summary": "The Math.sinh() static method returns the hyperbolic sine of a number. That is,", "support": { "chrome": { "version_added": "38" @@ -14182,7 +14912,7 @@ "name": "sqrt", "slug": "JavaScript/Reference/Global_Objects/Math/sqrt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt", - "summary": "The Math.sqrt() function returns the square root of a number. That is", + "summary": "The Math.sqrt() static method returns the square root of a number. That is", "support": { "chrome": { "version_added": "1" @@ -14235,7 +14965,7 @@ "name": "tan", "slug": "JavaScript/Reference/Global_Objects/Math/tan", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/tan", - "summary": "The Math.tan() function returns the tangent of a number in radians.", + "summary": "The Math.tan() static method returns the tangent of a number in radians.", "support": { "chrome": { "version_added": "1" @@ -14288,7 +15018,7 @@ "name": "tanh", "slug": "JavaScript/Reference/Global_Objects/Math/tanh", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/tanh", - "summary": "The Math.tanh() function returns the hyperbolic tangent of a number. That is,", + "summary": "The Math.tanh() static method returns the hyperbolic tangent of a number. That is,", "support": { "chrome": { "version_added": "38" @@ -14337,7 +15067,7 @@ "name": "trunc", "slug": "JavaScript/Reference/Global_Objects/Math/trunc", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc", - "summary": "The Math.trunc() function returns the integer part of a number by removing any fractional digits.", + "summary": "The Math.trunc() static method returns the integer part of a number by removing any fractional digits.", "support": { "chrome": { "version_added": "38" @@ -14386,7 +15116,7 @@ "name": "Math", "slug": "JavaScript/Reference/Global_Objects/Math", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math", - "summary": "Math is a built-in object that has properties and methods for mathematical constants and functions. It's not a function object.", + "summary": "The Math namespace object contains static properties and methods for mathematical constants and functions.", "support": { "chrome": { "version_added": "1" @@ -14439,7 +15169,7 @@ "name": "EPSILON", "slug": "JavaScript/Reference/Global_Objects/Number/EPSILON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/EPSILON", - "summary": "The Number.EPSILON property represents the difference between 1 and the smallest floating point number greater than 1.", + "summary": "The Number.EPSILON static data property represents the difference between 1 and the smallest floating point number greater than 1.", "support": { "chrome": { "version_added": "34" @@ -14488,7 +15218,7 @@ "name": "MAX_SAFE_INTEGER", "slug": "JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER", - "summary": "The Number.MAX_SAFE_INTEGER constant represents the maximum safe integer in JavaScript (253 – 1).", + "summary": "The Number.MAX_SAFE_INTEGER static data property represents the maximum safe integer in JavaScript (253 – 1).", "support": { "chrome": { "version_added": "34" @@ -14537,7 +15267,7 @@ "name": "MAX_VALUE", "slug": "JavaScript/Reference/Global_Objects/Number/MAX_VALUE", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE", - "summary": "The Number.MAX_VALUE property represents the maximum numeric value representable in JavaScript.", + "summary": "The Number.MAX_VALUE static data property represents the maximum numeric value representable in JavaScript.", "support": { "chrome": { "version_added": "1" @@ -14590,7 +15320,7 @@ "name": "MIN_SAFE_INTEGER", "slug": "JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER", - "summary": "The Number.MIN_SAFE_INTEGER constant represents the minimum safe integer in JavaScript, or -(253 - 1).", + "summary": "The Number.MIN_SAFE_INTEGER static data property represents the minimum safe integer in JavaScript, or -(253 - 1).", "support": { "chrome": { "version_added": "34" @@ -14639,7 +15369,7 @@ "name": "MIN_VALUE", "slug": "JavaScript/Reference/Global_Objects/Number/MIN_VALUE", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE", - "summary": "The Number.MIN_VALUE property represents the smallest positive numeric value representable in JavaScript.", + "summary": "The Number.MIN_VALUE static data property represents the smallest positive numeric value representable in JavaScript.", "support": { "chrome": { "version_added": "1" @@ -14692,7 +15422,7 @@ "name": "NaN", "slug": "JavaScript/Reference/Global_Objects/Number/NaN", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN", - "summary": "The Number.NaN property represents Not-A-Number, which is equivalent to NaN. For more information about the behaviors of NaN, see the description for the global property.", + "summary": "The Number.NaN static data property represents Not-A-Number, which is equivalent to NaN. For more information about the behaviors of NaN, see the description for the global property.", "support": { "chrome": { "version_added": "1" @@ -14745,7 +15475,7 @@ "name": "NEGATIVE_INFINITY", "slug": "JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY", - "summary": "The Number.NEGATIVE_INFINITY property represents the negative Infinity value.", + "summary": "The Number.NEGATIVE_INFINITY static data property represents the negative Infinity value.", "support": { "chrome": { "version_added": "1" @@ -14798,7 +15528,7 @@ "name": "Number", "slug": "JavaScript/Reference/Global_Objects/Number/Number", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/Number", - "summary": "The Number() constructor creates a Number object. When called instead as a function, it performs type conversion to a primitive number, which is usually more useful.", + "summary": "The Number() constructor creates Number objects. When called as a function, it returns primitive values of type Number.", "support": { "chrome": { "version_added": "1" @@ -14851,7 +15581,7 @@ "name": "POSITIVE_INFINITY", "slug": "JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY", - "summary": "The Number.POSITIVE_INFINITY property represents the positive Infinity value.", + "summary": "The Number.POSITIVE_INFINITY static data property represents the positive Infinity value.", "support": { "chrome": { "version_added": "1" @@ -14904,7 +15634,7 @@ "name": "isFinite", "slug": "JavaScript/Reference/Global_Objects/Number/isFinite", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isFinite", - "summary": "The Number.isFinite() method determines whether the passed value is a finite number — that is, it checks that a given value is a number, and the number is neither positive Infinity, negative Infinity, nor NaN.", + "summary": "The Number.isFinite() static method determines whether the passed value is a finite number — that is, it checks that a given value is a number, and the number is neither positive Infinity, negative Infinity, nor NaN.", "support": { "chrome": { "version_added": "19" @@ -14953,7 +15683,7 @@ "name": "isInteger", "slug": "JavaScript/Reference/Global_Objects/Number/isInteger", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger", - "summary": "The Number.isInteger() method determines whether the passed value is an integer.", + "summary": "The Number.isInteger() static method determines whether the passed value is an integer.", "support": { "chrome": { "version_added": "34" @@ -15002,7 +15732,7 @@ "name": "isNaN", "slug": "JavaScript/Reference/Global_Objects/Number/isNaN", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isNaN", - "summary": "The Number.isNaN() method determines whether the passed value is NaN and its type is Number. It is a more robust version of the original, global isNaN().", + "summary": "The Number.isNaN() static method determines whether the passed value is the number value NaN, and returns false if the input is not of the Number type. It is a more robust version of the original, global isNaN() function.", "support": { "chrome": { "version_added": "25" @@ -15051,7 +15781,7 @@ "name": "isSafeInteger", "slug": "JavaScript/Reference/Global_Objects/Number/isSafeInteger", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger", - "summary": "The Number.isSafeInteger() method determines whether the provided value is a number that is a safe integer.", + "summary": "The Number.isSafeInteger() static method determines whether the provided value is a number that is a safe integer.", "support": { "chrome": { "version_added": "34" @@ -15100,7 +15830,7 @@ "name": "parseFloat", "slug": "JavaScript/Reference/Global_Objects/Number/parseFloat", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/parseFloat", - "summary": "The Number.parseFloat() method parses an argument and returns a floating point number. If a number cannot be parsed from the argument, it returns NaN.", + "summary": "The Number.parseFloat() static method parses an argument and returns a floating point number. If a number cannot be parsed from the argument, it returns NaN.", "support": { "chrome": { "version_added": "34" @@ -15149,7 +15879,7 @@ "name": "parseInt", "slug": "JavaScript/Reference/Global_Objects/Number/parseInt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/parseInt", - "summary": "The Number.parseInt() method parses a string argument and returns an integer of the specified radix or base.", + "summary": "The Number.parseInt() static method parses a string argument and returns an integer of the specified radix or base.", "support": { "chrome": { "version_added": "34" @@ -15517,7 +16247,7 @@ "name": "Number", "slug": "JavaScript/Reference/Global_Objects/Number", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "summary": "Number is a primitive wrapper object used to represent and manipulate numbers like 37 or -9.25.", + "summary": "Number values represent floating-point numbers like 37 or -9.25.", "support": { "chrome": { "version_added": "1" @@ -15574,7 +16304,7 @@ "name": "Object", "slug": "JavaScript/Reference/Global_Objects/Object/Object", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/Object", - "summary": "The Object constructor turns the input into an object. Its behavior depends on the input's type.", + "summary": "The Object() constructor turns the input into an object. Its behavior depends on the input's type.", "support": { "chrome": { "version_added": "1" @@ -15627,7 +16357,7 @@ "name": "assign", "slug": "JavaScript/Reference/Global_Objects/Object/assign", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign", - "summary": "The Object.assign() method copies all enumerable own properties from one or more source objects to a target object. It returns the modified target object.", + "summary": "The Object.assign() static method copies all enumerable own properties from one or more source objects to a target object. It returns the modified target object.", "support": { "chrome": { "version_added": "45" @@ -15676,7 +16406,7 @@ "name": "constructor", "slug": "JavaScript/Reference/Global_Objects/Object/constructor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor", - "summary": "The constructor property returns a reference to the Object constructor function that created the instance object. Note that the value of this property is a reference to the function itself, not a string containing the function's name.", + "summary": "The constructor data property of an Object instance returns a reference to the constructor function that created the instance object. Note that the value of this property is a reference to the function itself, not a string containing the function's name.", "support": { "chrome": { "version_added": "1" @@ -15729,7 +16459,7 @@ "name": "create", "slug": "JavaScript/Reference/Global_Objects/Object/create", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create", - "summary": "The Object.create() method creates a new object, using an existing object as the prototype of the newly created object.", + "summary": "The Object.create() static method creates a new object, using an existing object as the prototype of the newly created object.", "support": { "chrome": { "version_added": "5" @@ -15784,7 +16514,7 @@ "name": "defineProperties", "slug": "JavaScript/Reference/Global_Objects/Object/defineProperties", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperties", - "summary": "The Object.defineProperties() method defines new or modifies existing properties directly on an object, returning the object.", + "summary": "The Object.defineProperties() static method defines new or modifies existing properties directly on an object, returning the object.", "support": { "chrome": { "version_added": "5" @@ -15839,7 +16569,7 @@ "name": "defineProperty", "slug": "JavaScript/Reference/Global_Objects/Object/defineProperty", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty", - "summary": "The static method Object.defineProperty() defines a new property directly on an object, or modifies an existing property on an object, and returns the object.", + "summary": "The Object.defineProperty() static method defines a new property directly on an object, or modifies an existing property on an object, and returns the object.", "support": { "chrome": { "version_added": "5" @@ -15903,7 +16633,7 @@ "name": "entries", "slug": "JavaScript/Reference/Global_Objects/Object/entries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries", - "summary": "The Object.entries() method returns an array of a given object's own enumerable string-keyed property [key, value] pairs. This is the same as iterating with a for...in loop, except that a for...in loop enumerates properties in the prototype chain as well.", + "summary": "The Object.entries() static method returns an array of a given object's own enumerable string-keyed property key-value pairs.", "support": { "chrome": { "version_added": "54" @@ -15967,7 +16697,7 @@ "name": "freeze", "slug": "JavaScript/Reference/Global_Objects/Object/freeze", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze", - "summary": "The Object.freeze() method freezes an object. Freezing an object prevents extensions and makes existing properties non-writable and non-configurable. A frozen object can no longer be changed: new properties cannot be added, existing properties cannot be removed, their enumerability, configurability, writability, or value cannot be changed, and the object's prototype cannot be re-assigned. freeze() returns the same object that was passed in.", + "summary": "The Object.freeze() static method freezes an object. Freezing an object prevents extensions and makes existing properties non-writable and non-configurable. A frozen object can no longer be changed: new properties cannot be added, existing properties cannot be removed, their enumerability, configurability, writability, or value cannot be changed, and the object's prototype cannot be re-assigned. freeze() returns the same object that was passed in.", "support": { "chrome": { "version_added": "6" @@ -16020,7 +16750,7 @@ "name": "fromEntries", "slug": "JavaScript/Reference/Global_Objects/Object/fromEntries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/fromEntries", - "summary": "The Object.fromEntries() method transforms a list of key-value pairs into an object.", + "summary": "The Object.fromEntries() static method transforms a list of key-value pairs into an object.", "support": { "chrome": { "version_added": "73" @@ -16067,7 +16797,7 @@ "name": "getOwnPropertyDescriptor", "slug": "JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor", - "summary": "The Object.getOwnPropertyDescriptor() method returns an object describing the configuration of a specific property on a given object (that is, one directly present on an object and not in the object's prototype chain). The object returned is mutable but mutating it has no effect on the original property's configuration.", + "summary": "The Object.getOwnPropertyDescriptor() static method returns an object describing the configuration of a specific property on a given object (that is, one directly present on an object and not in the object's prototype chain). The object returned is mutable but mutating it has no effect on the original property's configuration.", "support": { "chrome": { "version_added": "5" @@ -16129,7 +16859,7 @@ "name": "getOwnPropertyDescriptors", "slug": "JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptors", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptors", - "summary": "The Object.getOwnPropertyDescriptors() method returns all own property descriptors of a given object.", + "summary": "The Object.getOwnPropertyDescriptors() static method returns all own property descriptors of a given object.", "support": { "chrome": { "version_added": "54" @@ -16189,7 +16919,7 @@ "name": "getOwnPropertyNames", "slug": "JavaScript/Reference/Global_Objects/Object/getOwnPropertyNames", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyNames", - "summary": "The Object.getOwnPropertyNames() method returns an array of all properties (including non-enumerable properties except for those which use Symbol) found directly in a given object.", + "summary": "The Object.getOwnPropertyNames() static method returns an array of all properties (including non-enumerable properties except for those which use Symbol) found directly in a given object.", "support": { "chrome": { "version_added": "5" @@ -16244,7 +16974,7 @@ "name": "getOwnPropertySymbols", "slug": "JavaScript/Reference/Global_Objects/Object/getOwnPropertySymbols", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertySymbols", - "summary": "The Object.getOwnPropertySymbols() method returns an array of all symbol properties found directly upon a given object.", + "summary": "The Object.getOwnPropertySymbols() static method returns an array of all symbol properties found directly upon a given object.", "support": { "chrome": { "version_added": "38" @@ -16293,7 +17023,7 @@ "name": "getPrototypeOf", "slug": "JavaScript/Reference/Global_Objects/Object/getPrototypeOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf", - "summary": "The Object.getPrototypeOf() method returns the prototype (i.e. the value of the internal [[Prototype]] property) of the specified object.", + "summary": "The Object.getPrototypeOf() static method returns the prototype (i.e. the value of the internal [[Prototype]] property) of the specified object.", "support": { "chrome": { "version_added": "5" @@ -16450,7 +17180,7 @@ "name": "is", "slug": "JavaScript/Reference/Global_Objects/Object/is", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is", - "summary": "The Object.is() method determines whether two values are the same value.", + "summary": "The Object.is() static method determines whether two values are the same value.", "support": { "chrome": { "version_added": "19" @@ -16499,7 +17229,7 @@ "name": "isExtensible", "slug": "JavaScript/Reference/Global_Objects/Object/isExtensible", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible", - "summary": "The Object.isExtensible() method determines if an object is extensible (whether it can have new properties added to it).", + "summary": "The Object.isExtensible() static method determines if an object is extensible (whether it can have new properties added to it).", "support": { "chrome": { "version_added": "6" @@ -16552,7 +17282,7 @@ "name": "isFrozen", "slug": "JavaScript/Reference/Global_Objects/Object/isFrozen", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isFrozen", - "summary": "The Object.isFrozen() determines if an object is frozen.", + "summary": "The Object.isFrozen() static method determines if an object is frozen.", "support": { "chrome": { "version_added": "6" @@ -16660,7 +17390,7 @@ "name": "isSealed", "slug": "JavaScript/Reference/Global_Objects/Object/isSealed", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isSealed", - "summary": "The Object.isSealed() method determines if an object is sealed.", + "summary": "The Object.isSealed() static method determines if an object is sealed.", "support": { "chrome": { "version_added": "6" @@ -16713,7 +17443,7 @@ "name": "keys", "slug": "JavaScript/Reference/Global_Objects/Object/keys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys", - "summary": "The Object.keys() method returns an array of a given object's own enumerable property names, iterated in the same order that a normal loop would.", + "summary": "The Object.keys() static method returns an array of a given object's own enumerable string-keyed property names.", "support": { "chrome": { "version_added": "5" @@ -16768,7 +17498,7 @@ "name": "preventExtensions", "slug": "JavaScript/Reference/Global_Objects/Object/preventExtensions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/preventExtensions", - "summary": "The Object.preventExtensions() method prevents new properties from ever being added to an object (i.e. prevents future extensions to the object). It also prevents the object's prototype from being re-assigned.", + "summary": "The Object.preventExtensions() static method prevents new properties from ever being added to an object (i.e. prevents future extensions to the object). It also prevents the object's prototype from being re-assigned.", "support": { "chrome": { "version_added": "6" @@ -16876,7 +17606,7 @@ "name": "seal", "slug": "JavaScript/Reference/Global_Objects/Object/seal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal", - "summary": "The Object.seal() method seals an object. Sealing an object prevents extensions and makes existing properties non-configurable. A sealed object has a fixed set of properties: new properties cannot be added, existing properties cannot be removed, their enumerability and configurability cannot be changed, and its prototype cannot be re-assigned. Values of existing properties can still be changed as long as they are writable. seal() returns the same object that was passed in.", + "summary": "The Object.seal() static method seals an object. Sealing an object prevents extensions and makes existing properties non-configurable. A sealed object has a fixed set of properties: new properties cannot be added, existing properties cannot be removed, their enumerability and configurability cannot be changed, and its prototype cannot be re-assigned. Values of existing properties can still be changed as long as they are writable. seal() returns the same object that was passed in.", "support": { "chrome": { "version_added": "6" @@ -16929,7 +17659,7 @@ "name": "setPrototypeOf", "slug": "JavaScript/Reference/Global_Objects/Object/setPrototypeOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf", - "summary": "The Object.setPrototypeOf() method sets the prototype (i.e., the internal [[Prototype]] property) of a specified object to another object or null.", + "summary": "The Object.setPrototypeOf() static method sets the prototype (i.e., the internal [[Prototype]] property) of a specified object to another object or null.", "support": { "chrome": { "version_added": "34" @@ -17084,7 +17814,7 @@ "name": "valueOf", "slug": "JavaScript/Reference/Global_Objects/Object/valueOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf", - "summary": "The valueOf() method of Object converts the this value to an object. This method is meant to be overridden by derived objects for custom type conversion logic.", + "summary": "The valueOf() method of Object instances converts the this value to an object. This method is meant to be overridden by derived objects for custom type conversion logic.", "support": { "chrome": { "version_added": "1" @@ -17137,7 +17867,7 @@ "name": "values", "slug": "JavaScript/Reference/Global_Objects/Object/values", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values", - "summary": "The Object.values() method returns an array of a given object's own enumerable property values, in the same order as that provided by a for...in loop. (The only difference is that a for...in loop enumerates properties in the prototype chain as well.)", + "summary": "The Object.values() static method returns an array of a given object's own enumerable string-keyed property values.", "support": { "chrome": { "version_added": "54" @@ -17254,7 +17984,7 @@ "name": "Promise", "slug": "JavaScript/Reference/Global_Objects/Promise/Promise", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/Promise", - "summary": "The Promise constructor is primarily used to wrap functions that do not already support promises.", + "summary": "The Promise() constructor creates Promise objects. It is primarily used to wrap callback-based APIs that do not already support promises.", "support": { "chrome": { "version_added": "32" @@ -17306,7 +18036,7 @@ "name": "all", "slug": "JavaScript/Reference/Global_Objects/Promise/all", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all", - "summary": "The Promise.all() method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises fulfill (including when an empty iterable is passed), with an array of the fulfillment values. It rejects when any of the input's promises rejects, with this first rejection reason.", + "summary": "The Promise.all() static method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises fulfill (including when an empty iterable is passed), with an array of the fulfillment values. It rejects when any of the input's promises rejects, with this first rejection reason.", "support": { "chrome": { "version_added": "32" @@ -17355,7 +18085,7 @@ "name": "allSettled", "slug": "JavaScript/Reference/Global_Objects/Promise/allSettled", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled", - "summary": "The Promise.allSettled() method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises settle (including when an empty iterable is passed), with an array of objects that describe the outcome of each promise.", + "summary": "The Promise.allSettled() static method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises settle (including when an empty iterable is passed), with an array of objects that describe the outcome of each promise.", "support": { "chrome": { "version_added": "76" @@ -17402,7 +18132,7 @@ "name": "any", "slug": "JavaScript/Reference/Global_Objects/Promise/any", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/any", - "summary": "The Promise.any() method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when any of the input's promises fulfills, with this first fulfillment value. It rejects when all of the input's promises reject (including when an empty iterable is passed), with an AggregateError containing an array of rejection reasons.", + "summary": "The Promise.any() static method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when any of the input's promises fulfills, with this first fulfillment value. It rejects when all of the input's promises reject (including when an empty iterable is passed), with an AggregateError containing an array of rejection reasons.", "support": { "chrome": { "version_added": "85" @@ -17449,7 +18179,7 @@ "name": "catch", "slug": "JavaScript/Reference/Global_Objects/Promise/catch", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/catch", - "summary": "The catch() method returns a Promise and deals with rejected cases only. It behaves the same as calling Promise.prototype.then(undefined, onRejected) (in fact, calling obj.catch(onRejected) internally calls obj.then(undefined, onRejected)). This means that you have to provide an onRejected function even if you want to fall back to an undefined result value - for example obj.catch(() => {}).", + "summary": "The catch() method of Promise instances schedules a function to be called when the promise is rejected. It immediately returns an equivalent Promise object, allowing you to chain calls to other promise methods. It is a shortcut for Promise.prototype.then(undefined, onRejected).", "support": { "chrome": { "version_added": "32" @@ -17498,7 +18228,7 @@ "name": "finally", "slug": "JavaScript/Reference/Global_Objects/Promise/finally", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/finally", - "summary": "The finally() method of a Promise schedules a function, the callback function, to be called when the promise is settled. Like then() and catch(), it immediately returns an equivalent Promise object, allowing you to chain calls to another promise method, an operation called composition.", + "summary": "The finally() method of Promise instances schedules a function to be called when the promise is settled (either fulfilled or rejected). It immediately returns an equivalent Promise object, allowing you to chain calls to other promise methods.", "support": { "chrome": { "version_added": "63" @@ -17551,7 +18281,7 @@ "name": "race", "slug": "JavaScript/Reference/Global_Objects/Promise/race", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/race", - "summary": "The Promise.race() method takes an iterable of promises as input and returns a single Promise. This returned promise settles with the eventual state of the first promise that settles.", + "summary": "The Promise.race() static method takes an iterable of promises as input and returns a single Promise. This returned promise settles with the eventual state of the first promise that settles.", "support": { "chrome": { "version_added": "32" @@ -17600,7 +18330,7 @@ "name": "reject", "slug": "JavaScript/Reference/Global_Objects/Promise/reject", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/reject", - "summary": "The Promise.reject() method returns a Promise object that is rejected with a given reason.", + "summary": "The Promise.reject() static method returns a Promise object that is rejected with a given reason.", "support": { "chrome": { "version_added": "32" @@ -17649,7 +18379,7 @@ "name": "resolve", "slug": "JavaScript/Reference/Global_Objects/Promise/resolve", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/resolve", - "summary": "The Promise.resolve() method \"resolves\" a given value to a Promise. If the value is a promise, that promise is returned; if the value is a thenable, Promise.resolve() will call the then() method with two callbacks it prepared; otherwise the returned promise will be fulfilled with the value.", + "summary": "The Promise.resolve() static method \"resolves\" a given value to a Promise. If the value is a promise, that promise is returned; if the value is a thenable, Promise.resolve() will call the then() method with two callbacks it prepared; otherwise the returned promise will be fulfilled with the value.", "support": { "chrome": { "version_added": "32" @@ -17698,7 +18428,7 @@ "name": "then", "slug": "JavaScript/Reference/Global_Objects/Promise/then", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then", - "summary": "The then() method returns a Promise. It takes up to two arguments: callback functions for the success and failure cases of the Promise.", + "summary": "The then() method of Promise instances takes up to two arguments: callback functions for the fulfilled and rejected cases of the Promise. It immediately returns an equivalent Promise object, allowing you to chain calls to other promise methods.", "support": { "chrome": { "version_added": "32" @@ -17736,6 +18466,64 @@ "title": "Promise.prototype.then()" } ], + "sec-get-promise-@@species": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Promise.json", + "name": "@@species", + "slug": "JavaScript/Reference/Global_Objects/Promise/@@species", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/@@species", + "summary": "The Promise[@@species] static accessor property returns the constructor used to construct return values from promise methods.", + "support": { + "chrome": { + "version_added": "51" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "48" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "6.5.0" + }, + { + "version_added": "6.0.0", + "flags": [ + { + "type": "runtime_flag", + "name": "--harmony" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Promise[@@species]" + } + ], "sec-promise-objects": [ { "engines": [ @@ -17800,7 +18588,7 @@ "name": "Proxy", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy", - "summary": "The Proxy() constructor is used to create Proxy objects.", + "summary": "The Proxy() constructor creates Proxy objects.", "support": { "chrome": { "version_added": "49" @@ -17849,7 +18637,7 @@ "name": "apply", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/apply", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/apply", - "summary": "The handler.apply() method is a trap for a function call.", + "summary": "The handler.apply() method is a trap for the [[Call]] object internal method, which is used by operations such as function calls.", "support": { "chrome": { "version_added": "49" @@ -17898,7 +18686,7 @@ "name": "construct", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/construct", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/construct", - "summary": "The handler.construct() method is a trap for the new operator. In order for the new operation to be valid on the resulting Proxy object, the target used to initialize the proxy must itself have a [[Construct]] internal method (i.e. new target must be valid).", + "summary": "The handler.construct() method is a trap for the [[Construct]] object internal method, which is used by operations such as the new operator. In order for the new operation to be valid on the resulting Proxy object, the target used to initialize the proxy must itself be a valid constructor.", "support": { "chrome": { "version_added": "49" @@ -17947,7 +18735,7 @@ "name": "defineProperty", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/defineProperty", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/defineProperty", - "summary": "The handler.defineProperty() method is a trap for Object.defineProperty().", + "summary": "The handler.defineProperty() method is a trap for the [[DefineOwnProperty]] object internal method, which is used by operations such as Object.defineProperty().", "support": { "chrome": { "version_added": "49" @@ -17996,7 +18784,7 @@ "name": "deleteProperty", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/deleteProperty", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/deleteProperty", - "summary": "The handler.deleteProperty() method is a trap for the delete operator.", + "summary": "The handler.deleteProperty() method is a trap for the [[Delete]] object internal method, which is used by operations such as the delete operator.", "support": { "chrome": { "version_added": "49" @@ -18045,7 +18833,7 @@ "name": "get", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/get", - "summary": "The handler.get() method is a trap for getting a property value.", + "summary": "The handler.get() method is a trap for the [[Get]] object internal method, which is used by operations such as property accessors.", "support": { "chrome": { "version_added": "49" @@ -18094,7 +18882,7 @@ "name": "getOwnPropertyDescriptor", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/getOwnPropertyDescriptor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/getOwnPropertyDescriptor", - "summary": "The handler.getOwnPropertyDescriptor() method is a trap for Object.getOwnPropertyDescriptor().", + "summary": "The handler.getOwnPropertyDescriptor() method is a trap for the [[GetOwnProperty]] object internal method, which is used by operations such as Object.getOwnPropertyDescriptor().", "support": { "chrome": { "version_added": "49" @@ -18143,7 +18931,7 @@ "name": "getPrototypeOf", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/getPrototypeOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/getPrototypeOf", - "summary": "The handler.getPrototypeOf() method is a trap for the [[GetPrototypeOf]] internal method.", + "summary": "The handler.getPrototypeOf() method is a trap for the [[GetPrototypeOf]] object internal method, which is used by operations such as Object.getPrototypeOf().", "support": { "chrome": { "version_added": "49" @@ -18190,7 +18978,7 @@ "name": "has", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/has", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/has", - "summary": "The handler.has() method is a trap for the in operator.", + "summary": "The handler.has() method is a trap for the [[HasProperty]] object internal method, which is used by operations such as the in operator.", "support": { "chrome": { "version_added": "49" @@ -18239,7 +19027,7 @@ "name": "isExtensible", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/isExtensible", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/isExtensible", - "summary": "The handler.isExtensible() method is a trap for Object.isExtensible().", + "summary": "The handler.isExtensible() method is a trap for the [[IsExtensible]] object internal method, which is used by operations such as Object.isExtensible().", "support": { "chrome": { "version_added": "49" @@ -18288,7 +19076,7 @@ "name": "ownKeys", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/ownKeys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/ownKeys", - "summary": "The handler.ownKeys() method is a trap for Reflect.ownKeys().", + "summary": "The handler.ownKeys() method is a trap for the [[OwnPropertyKeys]] object internal method, which is used by operations such as Object.keys(), Reflect.ownKeys(), etc.", "support": { "chrome": { "version_added": "49" @@ -18338,7 +19126,7 @@ "name": "preventExtensions", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/preventExtensions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/preventExtensions", - "summary": "The handler.preventExtensions() method is a trap for Object.preventExtensions().", + "summary": "The handler.preventExtensions() method is a trap for the [[PreventExtensions]] object internal method, which is used by operations such as Object.preventExtensions().", "support": { "chrome": { "version_added": "49" @@ -18387,7 +19175,7 @@ "name": "set", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/set", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/set", - "summary": "The handler.set() method is a trap for setting a property value.", + "summary": "The handler.set() method is a trap for the [[Set]] object internal method, which is used by operations such as using property accessors to set a property's value.", "support": { "chrome": { "version_added": "49" @@ -18436,7 +19224,7 @@ "name": "setPrototypeOf", "slug": "JavaScript/Reference/Global_Objects/Proxy/Proxy/setPrototypeOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/setPrototypeOf", - "summary": "The handler.setPrototypeOf() method is a trap for Object.setPrototypeOf().", + "summary": "The handler.setPrototypeOf() method is a trap for the [[SetPrototypeOf]] object internal method, which is used by operations such as Object.setPrototypeOf().", "support": { "chrome": { "version_added": "49" @@ -18693,7 +19481,7 @@ "name": "apply", "slug": "JavaScript/Reference/Global_Objects/Reflect/apply", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/apply", - "summary": "The static Reflect.apply() method calls a target function with arguments as specified.", + "summary": "The Reflect.apply() static method calls a target function with arguments as specified.", "support": { "chrome": { "version_added": "49" @@ -18742,7 +19530,7 @@ "name": "construct", "slug": "JavaScript/Reference/Global_Objects/Reflect/construct", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/construct", - "summary": "The static Reflect.construct() method acts like the new operator, but as a function. It is equivalent to calling new target(...args). It gives also the added option to specify a different prototype.", + "summary": "The Reflect.construct() static method is like the new operator, but as a function. It is equivalent to calling new target(...args). It gives also the added option to specify a different new.target value.", "support": { "chrome": { "version_added": "49" @@ -18791,7 +19579,7 @@ "name": "defineProperty", "slug": "JavaScript/Reference/Global_Objects/Reflect/defineProperty", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/defineProperty", - "summary": "The static Reflect.defineProperty() method is like Object.defineProperty() but returns a Boolean.", + "summary": "The Reflect.defineProperty() static method is like Object.defineProperty() but returns a Boolean.", "support": { "chrome": { "version_added": "49" @@ -18840,7 +19628,7 @@ "name": "deleteProperty", "slug": "JavaScript/Reference/Global_Objects/Reflect/deleteProperty", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/deleteProperty", - "summary": "The static Reflect.deleteProperty() method allows to delete properties. It is like the delete operator as a function.", + "summary": "The Reflect.deleteProperty() static method is like the delete operator, but as a function. It deletes a property from an object.", "support": { "chrome": { "version_added": "49" @@ -18889,7 +19677,7 @@ "name": "get", "slug": "JavaScript/Reference/Global_Objects/Reflect/get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/get", - "summary": "The static Reflect.get() method works like getting a property from an object (target[propertyKey]) as a function.", + "summary": "The Reflect.get() static method is like the property accessor syntax, but as a function.", "support": { "chrome": { "version_added": "49" @@ -18938,7 +19726,7 @@ "name": "getOwnPropertyDescriptor", "slug": "JavaScript/Reference/Global_Objects/Reflect/getOwnPropertyDescriptor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/getOwnPropertyDescriptor", - "summary": "The static Reflect.getOwnPropertyDescriptor() method is similar to Object.getOwnPropertyDescriptor(). It returns a property descriptor of the given property if it exists on the object, undefined otherwise.", + "summary": "The Reflect.getOwnPropertyDescriptor() static method is like Object.getOwnPropertyDescriptor(). It returns a property descriptor of the given property if it exists on the object, undefined otherwise.", "support": { "chrome": { "version_added": "49" @@ -18987,7 +19775,7 @@ "name": "getPrototypeOf", "slug": "JavaScript/Reference/Global_Objects/Reflect/getPrototypeOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/getPrototypeOf", - "summary": "The static Reflect.getPrototypeOf() method is almost the same method as Object.getPrototypeOf(). It returns the prototype (i.e. the value of the internal [[Prototype]] property) of the specified object.", + "summary": "The Reflect.getPrototypeOf() static method is like Object.getPrototypeOf(). It returns the prototype of the specified object.", "support": { "chrome": { "version_added": "49" @@ -19036,7 +19824,7 @@ "name": "has", "slug": "JavaScript/Reference/Global_Objects/Reflect/has", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/has", - "summary": "The static Reflect.has() method works like the in operator as a function.", + "summary": "The Reflect.has() static method is like the in operator, but as a function.", "support": { "chrome": { "version_added": "49" @@ -19085,7 +19873,7 @@ "name": "isExtensible", "slug": "JavaScript/Reference/Global_Objects/Reflect/isExtensible", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/isExtensible", - "summary": "The static Reflect.isExtensible() method determines if an object is extensible (whether it can have new properties added to it). It is similar to Object.isExtensible(), but with some differences.", + "summary": "The Reflect.isExtensible() static method is like Object.isExtensible(). It determines if an object is extensible (whether it can have new properties added to it).", "support": { "chrome": { "version_added": "49" @@ -19134,7 +19922,7 @@ "name": "ownKeys", "slug": "JavaScript/Reference/Global_Objects/Reflect/ownKeys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/ownKeys", - "summary": "The static Reflect.ownKeys() method returns an array of the target object's own property keys.", + "summary": "The Reflect.ownKeys() static method returns an array of the target object's own property keys.", "support": { "chrome": { "version_added": "49" @@ -19183,7 +19971,7 @@ "name": "preventExtensions", "slug": "JavaScript/Reference/Global_Objects/Reflect/preventExtensions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/preventExtensions", - "summary": "The static Reflect.preventExtensions() method prevents new properties from ever being added to an object (i.e., prevents future extensions to the object). It is similar to Object.preventExtensions(), but with some differences.", + "summary": "The Reflect.preventExtensions() static method is like Object.preventExtensions(). It prevents new properties from ever being added to an object (i.e., prevents future extensions to the object).", "support": { "chrome": { "version_added": "49" @@ -19232,7 +20020,7 @@ "name": "set", "slug": "JavaScript/Reference/Global_Objects/Reflect/set", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/set", - "summary": "The static Reflect.set() method works like setting a property on an object.", + "summary": "The Reflect.set() static method is like the property accessor and assignment syntax, but as a function.", "support": { "chrome": { "version_added": "49" @@ -19281,7 +20069,7 @@ "name": "setPrototypeOf", "slug": "JavaScript/Reference/Global_Objects/Reflect/setPrototypeOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/setPrototypeOf", - "summary": "The static Reflect.setPrototypeOf() method is the same method as Object.setPrototypeOf(), except for its return type. It sets the prototype (i.e., the internal [[Prototype]] property) of a specified object to another object or to null, and returns true if the operation was successful, or false otherwise.", + "summary": "The Reflect.setPrototypeOf() static method is like Object.setPrototypeOf() but returns a Boolean. It sets the prototype (i.e., the internal [[Prototype]] property) of a specified object.", "support": { "chrome": { "version_added": "49" @@ -19330,7 +20118,7 @@ "name": "Reflect", "slug": "JavaScript/Reference/Global_Objects/Reflect", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect", - "summary": "Reflect is a built-in object that provides methods for interceptable JavaScript operations. The methods are the same as those of proxy handlers. Reflect is not a function object, so it's not constructible.", + "summary": "The Reflect namespace object contains static methods for invoking interceptable JavaScript object internal methods. The methods are the same as those of proxy handlers.", "support": { "chrome": { "version_added": "49" @@ -19379,7 +20167,7 @@ "name": "RegExp", "slug": "JavaScript/Reference/Global_Objects/RegExp/RegExp", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/RegExp", - "summary": "The RegExp constructor creates a regular expression object for matching text with a pattern.", + "summary": "The RegExp() constructor creates RegExp objects.", "support": { "chrome": { "version_added": "1" @@ -19432,7 +20220,7 @@ "name": "dotAll", "slug": "JavaScript/Reference/Global_Objects/RegExp/dotAll", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/dotAll", - "summary": "The dotAll accessor property indicates whether or not the s flag is used with the regular expression.", + "summary": "The dotAll accessor property of RegExp instances returns whether or not the s flag is used with this regular expression.", "support": { "chrome": { "version_added": "62" @@ -19543,7 +20331,7 @@ "name": "flags", "slug": "JavaScript/Reference/Global_Objects/RegExp/flags", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/flags", - "summary": "The flags accessor property represents the flags of the current regular expression object.", + "summary": "The flags accessor property of RegExp instances returns the flags of this regular expression.", "support": { "chrome": { "version_added": "49" @@ -19594,7 +20382,7 @@ "name": "global", "slug": "JavaScript/Reference/Global_Objects/RegExp/global", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global", - "summary": "The global accessor property indicates whether or not the g flag is used with the regular expression.", + "summary": "The global accessor property of RegExp instances returns whether or not the g flag is used with this regular expression.", "support": { "chrome": { "version_added": "1" @@ -19647,7 +20435,7 @@ "name": "hasIndices", "slug": "JavaScript/Reference/Global_Objects/RegExp/hasIndices", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/hasIndices", - "summary": "The hasIndices accessor property indicates whether or not the d flag is used with the regular expression.", + "summary": "The hasIndices accessor property of RegExp instances returns whether or not the d flag is used with this regular expression.", "support": { "chrome": { "version_added": "90" @@ -19665,7 +20453,7 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "16.0.0" }, "oculus": "mirror", "opera": "mirror", @@ -19694,7 +20482,7 @@ "name": "ignoreCase", "slug": "JavaScript/Reference/Global_Objects/RegExp/ignoreCase", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase", - "summary": "The ignoreCase accessor property indicates whether or not the i flag is used with the regular expression.", + "summary": "The ignoreCase accessor property of RegExp instances returns whether or not the i flag is used with this regular expression.", "support": { "chrome": { "version_added": "1" @@ -19747,7 +20535,7 @@ "name": "lastIndex", "slug": "JavaScript/Reference/Global_Objects/RegExp/lastIndex", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/lastIndex", - "summary": "lastIndex is a read/write integer property of RegExp instances that specifies the index at which to start the next match.", + "summary": "The lastIndex data property of a RegExp instance specifies the index at which to start the next match.", "support": { "chrome": { "version_added": "1" @@ -19800,7 +20588,7 @@ "name": "multiline", "slug": "JavaScript/Reference/Global_Objects/RegExp/multiline", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/multiline", - "summary": "The multiline accessor property indicates whether or not the m flag is used with the regular expression.", + "summary": "The multiline accessor property of RegExp instances returns whether or not the m flag is used with this regular expression.", "support": { "chrome": { "version_added": "1" @@ -19853,7 +20641,7 @@ "name": "source", "slug": "JavaScript/Reference/Global_Objects/RegExp/source", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/source", - "summary": "The source accessor property is a string containing the source text of the regex object, without the two forward slashes on both sides or any flags.", + "summary": "The source accessor property of RegExp instances returns a string containing the source text of this regular expression, without the two forward slashes on both sides or any flags.", "support": { "chrome": { "version_added": "1" @@ -19906,7 +20694,7 @@ "name": "sticky", "slug": "JavaScript/Reference/Global_Objects/RegExp/sticky", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/sticky", - "summary": "The sticky accessor property indicates whether or not the y flag is used with the regular expression.", + "summary": "The sticky accessor property of RegExp instances returns whether or not the y flag is used with this regular expression.", "support": { "chrome": { "version_added": "49" @@ -19955,7 +20743,7 @@ "name": "test", "slug": "JavaScript/Reference/Global_Objects/RegExp/test", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test", - "summary": "The test() method executes a search for a match between a regular expression and a specified string. Returns true or false.", + "summary": "The test() method executes a search for a match between a regular expression and a specified string. Returns true if there is a match; false otherwise.", "support": { "chrome": { "version_added": "1" @@ -20061,7 +20849,7 @@ "name": "unicode", "slug": "JavaScript/Reference/Global_Objects/RegExp/unicode", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/unicode", - "summary": "The unicode accessor property indicates whether or not the u flag is used with the regular expression.", + "summary": "The unicode accessor property of RegExp instances returns whether or not the u flag is used with this regular expression.", "support": { "chrome": { "version_added": "50" @@ -20100,6 +20888,53 @@ "title": "RegExp.prototype.unicode" } ], + "sec-get-regexp.prototype.unicodesets": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/RegExp.json", + "name": "unicodeSets", + "slug": "JavaScript/Reference/Global_Objects/RegExp/unicodeSets", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/unicodeSets", + "summary": "The unicodeSets accessor property of RegExp instances returns whether or not the v flag is used with this regular expression.", + "support": { + "chrome": { + "version_added": "112" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.32" + }, + "edge": "mirror", + "firefox": { + "version_added": "116" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "112" + } + }, + "title": "RegExp.prototype.unicodeSets" + } + ], "sec-regexp.prototype-@@match": [ { "engines": [ @@ -20111,7 +20946,7 @@ "name": "@@match", "slug": "JavaScript/Reference/Global_Objects/RegExp/@@match", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@match", - "summary": "The [@@match]() method of a regular expression specifies how String.prototype.match() should behave. In addition, its presence (or absence) can influence whether an object is regarded as a regular expression.", + "summary": "The [@@match]() method of RegExp instances specifies how String.prototype.match() should behave. In addition, its presence (or absence) can influence whether an object is regarded as a regular expression.", "support": { "chrome": { "version_added": "50" @@ -20160,7 +20995,7 @@ "name": "@@matchAll", "slug": "JavaScript/Reference/Global_Objects/RegExp/@@matchAll", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@matchAll", - "summary": "The [@@matchAll]() method of a regular expression specifies how String.prototype.matchAll should behave.", + "summary": "The [@@matchAll]() method of RegExp instances specifies how String.prototype.matchAll should behave.", "support": { "chrome": { "version_added": "73" @@ -20209,7 +21044,7 @@ "name": "@@replace", "slug": "JavaScript/Reference/Global_Objects/RegExp/@@replace", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@replace", - "summary": "The [@@replace]() method of a regular expression specifies how String.prototype.replace() and String.prototype.replaceAll() should behave when the regular expression is passed in as the pattern.", + "summary": "The [@@replace]() method of RegExp instances specifies how String.prototype.replace() and String.prototype.replaceAll() should behave when the regular expression is passed in as the pattern.", "support": { "chrome": { "version_added": "50" @@ -20256,7 +21091,7 @@ "name": "@@search", "slug": "JavaScript/Reference/Global_Objects/RegExp/@@search", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@search", - "summary": "The [@@search]() method of a regular expression specifies how String.prototype.search should behave.", + "summary": "The [@@search]() method of RegExp instances specifies how String.prototype.search should behave.", "support": { "chrome": { "version_added": "50" @@ -20305,7 +21140,7 @@ "name": "@@species", "slug": "JavaScript/Reference/Global_Objects/RegExp/@@species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@species", - "summary": "The RegExp[@@species] accessor property returns the constructor used to construct copied regular expressions in certain RegExp methods.", + "summary": "The RegExp[@@species] static accessor property returns the constructor used to construct copied regular expressions in certain RegExp methods.", "support": { "chrome": { "version_added": "50" @@ -20351,7 +21186,7 @@ "version_added": "79" } }, - "title": "get RegExp[@@species]" + "title": "RegExp[@@species]" } ], "sec-regexp.prototype-@@split": [ @@ -20365,7 +21200,7 @@ "name": "@@split", "slug": "JavaScript/Reference/Global_Objects/RegExp/@@split", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@split", - "summary": "The [@@split]() method of a regular expression specifies how String.prototype.split should behave when the regular expression is passed in as the separator.", + "summary": "The [@@split]() method of RegExp instances specifies how String.prototype.split should behave when the regular expression is passed in as the separator.", "support": { "chrome": { "version_added": "50" @@ -20465,7 +21300,7 @@ "name": "Set", "slug": "JavaScript/Reference/Global_Objects/Set/Set", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/Set", - "summary": "The Set constructor lets you create Set objects that store unique values of any type, whether primitive values or object references.", + "summary": "The Set() constructor creates Set objects.", "support": { "chrome": { "version_added": "38" @@ -20696,7 +21531,7 @@ "name": "entries", "slug": "JavaScript/Reference/Global_Objects/Set/entries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/entries", - "summary": "The entries() method returns a new Iterator object that contains an array of [value, value] for each element in the Set object, in insertion order. For Set objects there is no key like in Map objects. However, to keep the API similar to the Map object, each entry has the same value for its key and value here, so that an array [value, value] is returned.", + "summary": "The entries() method returns a new set iterator object that contains an array of [value, value] for each element in the Set object, in insertion order. For Set objects there is no key like in Map objects. However, to keep the API similar to the Map object, each entry has the same value for its key and value here, so that an array [value, value] is returned.", "support": { "chrome": { "version_added": "38" @@ -20854,7 +21689,7 @@ "name": "size", "slug": "JavaScript/Reference/Global_Objects/Set/size", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/size", - "summary": "The size accessor property returns the number of (unique) elements in a Set object.", + "summary": "The size accessor property of Set instances returns the number of (unique) elements in this set.", "support": { "chrome": { "version_added": "38" @@ -20904,7 +21739,7 @@ "name": "values", "slug": "JavaScript/Reference/Global_Objects/Set/values", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/values", - "summary": "The values() method returns a new Iterator object that contains the values for each element in the Set object in insertion order.", + "summary": "The values() method returns a new set iterator object that contains the values for each element in the Set object in insertion order.", "support": { "chrome": [ { @@ -20989,7 +21824,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Global_Objects/Set/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/@@iterator", - "summary": "The @@iterator method of a Set object implements the iterable protocol and allows sets to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the values of the set.", + "summary": "The [@@iterator]() method of Set instances implements the iterable protocol and allows sets to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an set iterator object that yields the values of the set in insertion order.", "support": { "chrome": { "version_added": "43" @@ -21052,7 +21887,7 @@ "name": "@@species", "slug": "JavaScript/Reference/Global_Objects/Set/@@species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/@@species", - "summary": "The Set[@@species] accessor property is an unused accessor property specifying how to copy Set objects.", + "summary": "The Set[@@species] static accessor property is an unused accessor property specifying how to copy Set objects.", "support": { "chrome": { "version_added": "51" @@ -21098,7 +21933,7 @@ "version_added": "79" } }, - "title": "get Set[@@species]" + "title": "Set[@@species]" } ], "sec-set-objects": [ @@ -21172,7 +22007,7 @@ "name": "SharedArrayBuffer", "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/SharedArrayBuffer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/SharedArrayBuffer", - "summary": "The SharedArrayBuffer() constructor is used to create a SharedArrayBuffer object representing a generic, fixed-length raw binary data buffer, similar to the ArrayBuffer object.", + "summary": "The SharedArrayBuffer() constructor creates SharedArrayBuffer objects.", "support": { "chrome": { "version_added": "68" @@ -21185,7 +22020,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "78" + "version_added": "79" }, "firefox_android": "mirror", "ie": { @@ -21202,7 +22037,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -21221,7 +22058,7 @@ "name": "byteLength", "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength", - "summary": "The byteLength accessor property represents the length of an SharedArrayBuffer in bytes.", + "summary": "The byteLength accessor property of SharedArrayBuffer instances returns the length (in bytes) of this SharedArrayBuffer.", "support": { "chrome": { "version_added": "68" @@ -21234,7 +22071,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "78" + "version_added": "79" }, "firefox_android": "mirror", "ie": { @@ -21251,7 +22088,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -21270,7 +22109,7 @@ "name": "slice", "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/slice", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/slice", - "summary": "The SharedArrayBuffer.prototype.slice() method returns a new SharedArrayBuffer whose contents are a copy of this SharedArrayBuffer's bytes from begin, inclusive, up to end, exclusive. If either begin or end is negative, it refers to an index from the end of the array, as opposed to from the beginning. This method has the same algorithm as Array.prototype.slice().", + "summary": "The slice() method of SharedArrayBuffer instances returns a new SharedArrayBuffer whose contents are a copy of this SharedArrayBuffer's bytes from begin, inclusive, up to end, exclusive. If either begin or end is negative, it refers to an index from the end of the array, as opposed to from the beginning. This method has the same algorithm as Array.prototype.slice().", "support": { "chrome": { "version_added": "68" @@ -21283,7 +22122,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "78" + "version_added": "79" }, "firefox_android": "mirror", "ie": { @@ -21300,7 +22139,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -21308,7 +22149,7 @@ "title": "SharedArrayBuffer.prototype.slice()" } ], - "sec-sharedarraybuffer-objects": [ + "sec-sharedarraybuffer-@@species": [ { "engines": [ "blink", @@ -21316,10 +22157,10 @@ "webkit" ], "filename": "javascript/builtins/SharedArrayBuffer.json", - "name": "SharedArrayBuffer", - "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer", - "summary": "The SharedArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer, similar to the ArrayBuffer object, but in a way that they can be used to create views on shared memory. A SharedArrayBuffer is not a Transferable Object, unlike an ArrayBuffer which is transferable.", + "name": "@@species", + "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/@@species", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/@@species", + "summary": "The SharedArrayBuffer[@@species] static accessor property returns the constructor used to construct return values from SharedArrayBuffer methods.", "support": { "chrome": { "version_added": "68" @@ -21332,7 +22173,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "78" + "version_added": "79" }, "firefox_android": "mirror", "ie": { @@ -21349,119 +22190,72 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "caniuse": { - "feature": "sharedarraybuffer", - "title": "Shared Array Buffer" - }, - "title": "SharedArrayBuffer" - } - ], - "sec-string-constructor": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "javascript/builtins/String.json", - "name": "String", - "slug": "JavaScript/Reference/Global_Objects/String/String", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/String", - "summary": "The String constructor is used to create a new String object. When called instead as a function, it performs type conversion to a primitive string, which is usually more useful.", - "support": { - "chrome": { - "version_added": "1" - }, - "chrome_android": "mirror", - "deno": { - "version_added": "1.0" - }, - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "1" - }, - "firefox_android": "mirror", - "ie": { - "version_added": "3" - }, - "nodejs": { - "version_added": "0.10.0" - }, - "oculus": "mirror", - "opera": { - "version_added": "3" - }, - "opera_android": { - "version_added": "10.1" - }, - "safari": { - "version_added": "1" + "webview_android": { + "version_added": false }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "String() constructor" + "title": "SharedArrayBuffer[@@species]" } ], - "sec-string.prototype.at": [ + "sec-sharedarraybuffer-objects": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "javascript/builtins/String.json", - "name": "at", - "slug": "JavaScript/Reference/Global_Objects/String/at", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/at", - "summary": "The at() method takes an integer value and returns a new String consisting of the single UTF-16 code unit located at the specified offset. This method allows for positive and negative integers. Negative integers count back from the last string character.", + "filename": "javascript/builtins/SharedArrayBuffer.json", + "name": "SharedArrayBuffer", + "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer", + "summary": "The SharedArrayBuffer object is used to represent a generic raw binary data buffer, similar to the ArrayBuffer object, but in a way that they can be used to create views on shared memory. A SharedArrayBuffer is not a Transferable Object, unlike an ArrayBuffer which is transferable.", "support": { "chrome": { - "version_added": "92" + "version_added": "68" + }, + "chrome_android": { + "version_added": "89" }, - "chrome_android": "mirror", "deno": { - "version_added": "1.12" + "version_added": "1.0" }, "edge": "mirror", "firefox": { - "version_added": "90" + "version_added": "79" }, "firefox_android": "mirror", "ie": { "version_added": false }, "nodejs": { - "version_added": "16.6.0" + "version_added": "8.10.0" }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "15.2" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { - "version_added": "92" + "version_added": "79" } }, - "title": "String.prototype.at()" + "caniuse": { + "feature": "sharedarraybuffer", + "title": "Shared Array Buffer" + }, + "title": "SharedArrayBuffer" } ], - "sec-string.prototype.charat": [ + "sec-string-constructor": [ { "engines": [ "blink", @@ -21469,10 +22263,110 @@ "webkit" ], "filename": "javascript/builtins/String.json", - "name": "charAt", - "slug": "JavaScript/Reference/Global_Objects/String/charAt", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charAt", - "summary": "The String object's charAt() method returns a new string consisting of the single UTF-16 code unit located at the specified offset into the string.", + "name": "String", + "slug": "JavaScript/Reference/Global_Objects/String/String", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/String", + "summary": "The String() constructor creates String objects. When called as a function, it returns primitive values of type String.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "3" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "3" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "String() constructor" + } + ], + "sec-string.prototype.at": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/String.json", + "name": "at", + "slug": "JavaScript/Reference/Global_Objects/String/at", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/at", + "summary": "The at() method takes an integer value and returns a new String consisting of the single UTF-16 code unit located at the specified offset. This method allows for positive and negative integers. Negative integers count back from the last string character.", + "support": { + "chrome": { + "version_added": "92" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.12" + }, + "edge": "mirror", + "firefox": { + "version_added": "90" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "16.6.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "92" + } + }, + "title": "String.prototype.at()" + } + ], + "sec-string.prototype.charat": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/String.json", + "name": "charAt", + "slug": "JavaScript/Reference/Global_Objects/String/charAt", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charAt", + "summary": "The charAt() method of String values returns a new string consisting of the single UTF-16 code unit at the given index.", "support": { "chrome": { "version_added": "1" @@ -21525,7 +22419,7 @@ "name": "charCodeAt", "slug": "JavaScript/Reference/Global_Objects/String/charCodeAt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt", - "summary": "The charCodeAt() method returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index.", + "summary": "The charCodeAt() method of String values returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index.", "support": { "chrome": { "version_added": "1" @@ -21578,7 +22472,7 @@ "name": "codePointAt", "slug": "JavaScript/Reference/Global_Objects/String/codePointAt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt", - "summary": "The codePointAt() method returns a non-negative integer that is the Unicode code point value at the given position. Note that this function does not give the nth code point in a string, but the code point starting at the specified string index.", + "summary": "The codePointAt() method of String values returns a non-negative integer that is the Unicode code point value of the character starting at the given index. Note that the index is still based on UTF-16 code units, not Unicode code points.", "support": { "chrome": { "version_added": "41" @@ -21753,7 +22647,7 @@ "name": "fromCharCode", "slug": "JavaScript/Reference/Global_Objects/String/fromCharCode", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode", - "summary": "The static String.fromCharCode() method returns a string created from the specified sequence of UTF-16 code units.", + "summary": "The String.fromCharCode() static method returns a string created from the specified sequence of UTF-16 code units.", "support": { "chrome": { "version_added": "1" @@ -21806,7 +22700,7 @@ "name": "fromCodePoint", "slug": "JavaScript/Reference/Global_Objects/String/fromCodePoint", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCodePoint", - "summary": "The static String.fromCodePoint() method returns a string created by using the specified sequence of code points.", + "summary": "The String.fromCodePoint() static method returns a string created from the specified sequence of code points.", "support": { "chrome": { "version_added": "41" @@ -21926,7 +22820,7 @@ "name": "indexOf", "slug": "JavaScript/Reference/Global_Objects/String/indexOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf", - "summary": "The indexOf() method, given one argument: a substring to search for, searches the entire calling string, and returns the index of the first occurrence of the specified substring. Given a second argument: a number, the method returns the first occurrence of the specified substring at an index greater than or equal to the specified number.", + "summary": "The indexOf() method of String values searches this string and returns the index of the first occurrence of the specified substring. It takes an optional starting position and returns the first occurrence of the specified substring at an index greater than or equal to the specified number.", "support": { "chrome": { "version_added": "1" @@ -21968,6 +22862,53 @@ "title": "String.prototype.indexOf()" } ], + "sec-string.prototype.iswellformed": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/String.json", + "name": "isWellFormed", + "slug": "JavaScript/Reference/Global_Objects/String/isWellFormed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/isWellFormed", + "summary": "The isWellFormed() method of String values returns a boolean indicating whether this string contains any lone surrogates.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.32" + }, + "edge": "mirror", + "firefox": { + "version_added": "preview" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "String.prototype.isWellFormed()" + } + ], "sec-string.prototype.lastindexof": [ { "engines": [ @@ -21979,7 +22920,7 @@ "name": "lastIndexOf", "slug": "JavaScript/Reference/Global_Objects/String/lastIndexOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf", - "summary": "The lastIndexOf() method, given one argument: a substring to search for, searches the entire calling string, and returns the index of the last occurrence of the specified substring. Given a second argument: a number, the method returns the last occurrence of the specified substring at an index less than or equal to the specified number.", + "summary": "The lastIndexOf() method of String values searches this string and returns the index of the last occurrence of the specified substring. It takes an optional starting position and returns the last occurrence of the specified substring at an index less than or equal to the specified number.", "support": { "chrome": { "version_added": "1" @@ -22032,7 +22973,7 @@ "name": "length", "slug": "JavaScript/Reference/Global_Objects/String/length", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length", - "summary": "The length read-only property of a string contains the length of the string in UTF-16 code units.", + "summary": "The length data property of a String value contains the length of the string in UTF-16 code units.", "support": { "chrome": { "version_added": "1" @@ -22071,7 +23012,7 @@ "version_added": "79" } }, - "title": "String length" + "title": "String: length" } ], "sec-string.prototype.localecompare": [ @@ -22413,7 +23354,7 @@ "name": "raw", "slug": "JavaScript/Reference/Global_Objects/String/raw", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/raw", - "summary": "The static String.raw() method is a tag function of template literals. This is similar to the r prefix in Python, or the @ prefix in C# for string literals. It's used to get the raw string form of template literals — that is, substitutions (e.g. ${foo}) are processed, but escape sequences (e.g. \\n) are not.", + "summary": "The String.raw() static method is a tag function of template literals. This is similar to the r prefix in Python, or the @ prefix in C# for string literals. It's used to get the raw string form of template literals — that is, substitutions (e.g. ${foo}) are processed, but escape sequences (e.g. \\n) are not.", "support": { "chrome": { "version_added": "41" @@ -22857,7 +23798,7 @@ "name": "substring", "slug": "JavaScript/Reference/Global_Objects/String/substring", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring", - "summary": "The substring() method returns the part of the string between the start and end indexes, or to the end of the string.", + "summary": "The substring() method returns the part of the string from the start index up to and excluding the end index, or to the end of the string if no end index is supplied.", "support": { "chrome": { "version_added": "1" @@ -23164,6 +24105,53 @@ "title": "String.prototype.toUpperCase()" } ], + "sec-string.prototype.towellformed": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/String.json", + "name": "toWellFormed", + "slug": "JavaScript/Reference/Global_Objects/String/toWellFormed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toWellFormed", + "summary": "The toWellFormed() method of String values returns a string where all lone surrogates of this string are replaced with the Unicode replacement character U+FFFD.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.32" + }, + "edge": "mirror", + "firefox": { + "version_added": "preview" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "String.prototype.toWellFormed()" + } + ], "sec-string.prototype.trim": [ { "engines": [ @@ -23175,7 +24163,7 @@ "name": "trim", "slug": "JavaScript/Reference/Global_Objects/String/trim", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trim", - "summary": "The trim() method removes whitespace from both ends of a string and returns a new string, without modifying the original string. Whitespace in this context is all the whitespace characters (space, tab, no-break space, etc.) and all the line terminator characters (LF, CR, etc.).", + "summary": "The trim() method removes whitespace from both ends of a string and returns a new string, without modifying the original string.", "support": { "chrome": { "version_added": "4" @@ -23232,7 +24220,7 @@ "name": "trimEnd", "slug": "JavaScript/Reference/Global_Objects/String/trimEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trimEnd", - "summary": "The trimEnd() method removes whitespace from the end of a string. trimRight() is an alias of this method.", + "summary": "The trimEnd() method removes whitespace from the end of a string and returns a new string, without modifying the original string. trimRight() is an alias of this method.", "support": { "chrome": [ { @@ -23319,7 +24307,7 @@ "name": "trimStart", "slug": "JavaScript/Reference/Global_Objects/String/trimStart", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trimStart", - "summary": "The trimStart() method removes whitespace from the beginning of a string. trimLeft() is an alias of this method.", + "summary": "The trimStart() method removes whitespace from the beginning of a string and returns a new string, without modifying the original string. trimLeft() is an alias of this method.", "support": { "chrome": [ { @@ -23459,7 +24447,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Global_Objects/String/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/@@iterator", - "summary": "The @@iterator method of a string implements the iterable protocol and allows strings to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the Unicode code points of the string value as individual strings.", + "summary": "The [@@iterator]() method of String values implements the iterable protocol and allows strings to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns a string iterator object that yields the Unicode code points of the string value as individual strings.", "support": { "chrome": { "version_added": "38" @@ -23575,7 +24563,7 @@ "name": "Symbol", "slug": "JavaScript/Reference/Global_Objects/Symbol/Symbol", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/Symbol", - "summary": "The Symbol() constructor returns a value of type symbol, but is incomplete as a constructor because it does not support the syntax \"new Symbol()\" and it is not intended to be subclassed. It may be used as the value of an extends clause of a class definition but a super call to it will cause an exception.", + "summary": "The Symbol() function returns primitive values of type Symbol.", "support": { "chrome": { "version_added": "38" @@ -23624,7 +24612,7 @@ "name": "asyncIterator", "slug": "JavaScript/Reference/Global_Objects/Symbol/asyncIterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/asyncIterator", - "summary": "The Symbol.asyncIterator well-known symbol specifies the default async iterator for an object. If this property is set on an object, it is an async iterable and can be used in a for await...of loop.", + "summary": "The Symbol.asyncIterator static data property represents the well-known symbol @@asyncIterator. The async iterable protocol looks up this symbol for the method that returns the async iterator for an object. In order for an object to be async iterable, it must have an @@asyncIterator key.", "support": { "chrome": { "version_added": "63" @@ -23671,7 +24659,7 @@ "name": "description", "slug": "JavaScript/Reference/Global_Objects/Symbol/description", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/description", - "summary": "The read-only description property is a string returning the optional description of Symbol objects.", + "summary": "The description accessor property of Symbol values returns a string containing the description of this symbol, or undefined if the symbol has no description.", "support": { "chrome": { "version_added": "70" @@ -23725,7 +24713,7 @@ "name": "for", "slug": "JavaScript/Reference/Global_Objects/Symbol/for", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/for", - "summary": "The Symbol.for(key) method searches for existing symbols in a runtime-wide symbol registry with the given key and returns it if found. Otherwise a new symbol gets created in the global symbol registry with this key.", + "summary": "The Symbol.for() static method searches for existing symbols in a runtime-wide symbol registry with the given key and returns it if found. Otherwise a new symbol gets created in the global symbol registry with this key.", "support": { "chrome": { "version_added": "40" @@ -23774,7 +24762,7 @@ "name": "hasInstance", "slug": "JavaScript/Reference/Global_Objects/Symbol/hasInstance", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/hasInstance", - "summary": "The Symbol.hasInstance well-known symbol is used to determine if a constructor object recognizes an object as its instance. The instanceof operator's behavior can be customized by this symbol.", + "summary": "The Symbol.hasInstance static data property represents the well-known symbol @@hasInstance. The instanceof operator looks up this symbol on its right-hand operand for the method used to determine if the constructor object recognizes an object as its instance.", "support": { "chrome": { "version_added": "50" @@ -23834,7 +24822,7 @@ "name": "isConcatSpreadable", "slug": "JavaScript/Reference/Global_Objects/Symbol/isConcatSpreadable", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/isConcatSpreadable", - "summary": "The Symbol.isConcatSpreadable well-known symbol is used to configure if an object should be flattened to its array elements when using the Array.prototype.concat() method.", + "summary": "The Symbol.isConcatSpreadable static data property represents the well-known symbol @@isConcatSpreadable. The Array.prototype.concat() method looks up this symbol on each object being concatenated to determine if it should be treated as an array-like object and flattened to its array elements.", "support": { "chrome": { "version_added": "48" @@ -23883,7 +24871,7 @@ "name": "iterator", "slug": "JavaScript/Reference/Global_Objects/Symbol/iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/iterator", - "summary": "The well-known Symbol.iterator symbol specifies the default iterator for an object. Used by for...of.", + "summary": "The Symbol.iterator static data property represents the well-known symbol @@iterator. The iterable protocol looks up this symbol for the method that returns the iterator for an object. In order for an object to be iterable, it must have an @@iterator key.", "support": { "chrome": { "version_added": "43" @@ -23932,7 +24920,7 @@ "name": "keyFor", "slug": "JavaScript/Reference/Global_Objects/Symbol/keyFor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/keyFor", - "summary": "The Symbol.keyFor(sym) method retrieves a shared symbol key from the global symbol registry for the given symbol.", + "summary": "The Symbol.keyFor() static method retrieves a shared symbol key from the global symbol registry for the given symbol.", "support": { "chrome": { "version_added": "40" @@ -23981,7 +24969,7 @@ "name": "match", "slug": "JavaScript/Reference/Global_Objects/Symbol/match", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match", - "summary": "The Symbol.match well-known symbol specifies the matching of a regular expression against a string. This function is called by the String.prototype.match() method.", + "summary": "The Symbol.match static data property represents the well-known symbol @@match. The String.prototype.match() method looks up this symbol on its first argument for the method used to match an input string against the current object. This symbol is also used to determine if an object should be treated as a regex.", "support": { "chrome": { "version_added": "50" @@ -24028,7 +25016,7 @@ "name": "matchAll", "slug": "JavaScript/Reference/Global_Objects/Symbol/matchAll", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/matchAll", - "summary": "The Symbol.matchAll well-known symbol specifies the method that returns an iterator, that yields matches of the regular expression against a string. This function is called by the String.prototype.matchAll() method.", + "summary": "The Symbol.matchAll static data property represents the well-known symbol @@matchAll. The String.prototype.matchAll() method looks up this symbol on its first argument for the method that returns an iterator, that yields matches of the current object against a string.", "support": { "chrome": { "version_added": "73" @@ -24075,7 +25063,7 @@ "name": "replace", "slug": "JavaScript/Reference/Global_Objects/Symbol/replace", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/replace", - "summary": "The Symbol.replace well-known symbol specifies the method that replaces matched substrings of a string. This function is called by the String.prototype.replace() method.", + "summary": "The Symbol.replace static data property represents the well-known symbol @@replace. The String.prototype.replace() method looks up this symbol on its first argument for the method that replaces substrings matched by the current object.", "support": { "chrome": { "version_added": "50" @@ -24122,7 +25110,7 @@ "name": "search", "slug": "JavaScript/Reference/Global_Objects/Symbol/search", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/search", - "summary": "The Symbol.search well-known symbol specifies the method that returns the index within a string that matches the regular expression. This function is called by the String.prototype.search() method.", + "summary": "The Symbol.search static data property represents the well-known symbol @@search. The String.prototype.search() method looks up this symbol on its first argument for the method that returns the index within a string that matches the current object.", "support": { "chrome": { "version_added": "50" @@ -24169,7 +25157,7 @@ "name": "species", "slug": "JavaScript/Reference/Global_Objects/Symbol/species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/species", - "summary": "The well-known symbol Symbol.species specifies a function-valued property that the constructor function uses to create derived objects.", + "summary": "The Symbol.species static data property represents the well-known symbol @@species. Methods that create copies of an object may look up this symbol on the object for the constructor function to use when creating the copy.", "support": { "chrome": { "version_added": "51" @@ -24229,7 +25217,7 @@ "name": "split", "slug": "JavaScript/Reference/Global_Objects/Symbol/split", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/split", - "summary": "The Symbol.split well-known symbol specifies the method that splits a string at the indices that match a regular expression. This function is called by the String.prototype.split() method.", + "summary": "The Symbol.split static data property represents the well-known symbol @@split. The String.prototype.split() method looks up this symbol on its first argument for the method that splits a string at the indices that match the current object.", "support": { "chrome": { "version_added": "50" @@ -24276,7 +25264,7 @@ "name": "toPrimitive", "slug": "JavaScript/Reference/Global_Objects/Symbol/toPrimitive", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/toPrimitive", - "summary": "The Symbol.toPrimitive well-known symbol specifies a method that accepts a preferred type and returns a primitive representation of an object. It is called in priority by all type coercion algorithms.", + "summary": "The Symbol.toPrimitive static data property represents the well-known symbol @@toPrimitive. All type coercion algorithms look up this symbol on objects for the method that accepts a preferred type and returns a primitive representation of the object, before falling back to using the object's valueOf() and toString() methods.", "support": { "chrome": { "version_added": "47" @@ -24374,7 +25362,7 @@ "name": "toStringTag", "slug": "JavaScript/Reference/Global_Objects/Symbol/toStringTag", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/toStringTag", - "summary": "The Symbol.toStringTag well-known symbol is a string valued property that is used in the creation of the default string description of an object. It is accessed internally by the Object.prototype.toString() method.", + "summary": "The Symbol.toStringTag static data property represents the well-known symbol @@toStringTag. Object.prototype.toString() looks up this symbol on the this value for the property containing a string that represents the type of the object.", "support": { "chrome": { "version_added": "49" @@ -24434,7 +25422,7 @@ "name": "unscopables", "slug": "JavaScript/Reference/Global_Objects/Symbol/unscopables", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/unscopables", - "summary": "The Symbol.unscopables well-known symbol is used to specify an object value of whose own and inherited property names are excluded from the with environment bindings of the associated object.", + "summary": "The Symbol.unscopables static data property represents the well-known symbol @@unscopables. The with statement looks up this symbol on the scope object for a property containing a collection of properties that should not become bindings within the with environment.", "support": { "chrome": { "version_added": "38" @@ -24567,7 +25555,7 @@ "version_added": "79" } }, - "title": "Symbol.prototype[@@toPrimitive]" + "title": "Symbol.prototype[@@toPrimitive]()" } ], "sec-symbol-objects": [ @@ -24736,7 +25724,7 @@ "name": "BYTES_PER_ELEMENT", "slug": "JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT", - "summary": "The TypedArray.BYTES_PER_ELEMENT property represents the size in bytes of each element in a typed array.", + "summary": "The TypedArray.BYTES_PER_ELEMENT static data property represents the size in bytes of each element in a typed array.", "support": { "chrome": { "version_added": "7" @@ -24840,7 +25828,7 @@ "name": "buffer", "slug": "JavaScript/Reference/Global_Objects/TypedArray/buffer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/buffer", - "summary": "The buffer accessor property represents the ArrayBuffer referenced by a TypedArray at construction time.", + "summary": "The buffer accessor property of TypedArray instances returns the ArrayBuffer or SharedArrayBuffer referenced by this typed array at construction time.", "support": { "chrome": { "version_added": "7" @@ -24897,7 +25885,7 @@ "name": "byteLength", "slug": "JavaScript/Reference/Global_Objects/TypedArray/byteLength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteLength", - "summary": "The byteLength accessor property represents the length (in bytes) of the typed array.", + "summary": "The byteLength accessor property of TypedArray instances returns the length (in bytes) of this typed array.", "support": { "chrome": { "version_added": "7" @@ -24954,7 +25942,7 @@ "name": "byteOffset", "slug": "JavaScript/Reference/Global_Objects/TypedArray/byteOffset", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteOffset", - "summary": "The byteOffset accessor property represents the offset (in bytes) of a typed array from the start of its ArrayBuffer.", + "summary": "The byteOffset accessor property of TypedArray instances returns the offset (in bytes) of this typed array from the start of its ArrayBuffer or SharedArrayBuffer.", "support": { "chrome": { "version_added": "7" @@ -25060,7 +26048,7 @@ "name": "entries", "slug": "JavaScript/Reference/Global_Objects/TypedArray/entries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries", - "summary": "The entries() method returns a new Array iterator object that contains the key/value pairs for each index in the array.", + "summary": "The entries() method returns a new array iterator that contains the key/value pairs for each index in the array.", "support": { "chrome": { "version_added": "45" @@ -25497,7 +26485,7 @@ "name": "from", "slug": "JavaScript/Reference/Global_Objects/TypedArray/from", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from", - "summary": "The TypedArray.from() method creates a new typed array from an array-like or iterable object. This method is nearly the same as Array.from().", + "summary": "The TypedArray.from() static method creates a new typed array from an array-like or iterable object. This method is nearly the same as Array.from().", "support": { "chrome": { "version_added": "45" @@ -25804,7 +26792,7 @@ "name": "length", "slug": "JavaScript/Reference/Global_Objects/TypedArray/length", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/length", - "summary": "The length accessor property represents the length (in elements) of a typed array.", + "summary": "The length accessor property of TypedArray instances returns the length (in elements) of this typed array.", "support": { "chrome": { "version_added": "7" @@ -25910,7 +26898,7 @@ "name": "name", "slug": "JavaScript/Reference/Global_Objects/TypedArray/name", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/name", - "summary": "The TypedArray.name property represents a string value of the typed array constructor name.", + "summary": "The name data property of a Function instance indicates the function's name as specified when it was created, or it may be either anonymous or '' (an empty string) for functions created anonymously.", "support": { "chrome": { "version_added": "7" @@ -25953,7 +26941,7 @@ "version_added": "79" } }, - "title": "TypedArray.name" + "title": "Function: name" } ], "sec-%typedarray%.of": [ @@ -25967,7 +26955,7 @@ "name": "of", "slug": "JavaScript/Reference/Global_Objects/TypedArray/of", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/of", - "summary": "The TypedArray.of() method creates a new typed array from a variable number of arguments. This method is nearly the same as Array.of().", + "summary": "The TypedArray.of() static method creates a new typed array from a variable number of arguments. This method is nearly the same as Array.of().", "support": { "chrome": { "version_added": "45" @@ -26318,7 +27306,7 @@ "name": "sort", "slug": "JavaScript/Reference/Global_Objects/TypedArray/sort", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/sort", - "summary": "The sort() method sorts the elements of a typed array numerically in place and returns the typed array. This method has the same algorithm as Array.prototype.sort(), except that sorts the values numerically instead of as strings. TypedArray is one of the typed array types here.", + "summary": "The sort() method sorts the elements of a typed array numerically in place and returns the typed array. This method has the same algorithm as Array.prototype.sort(), except that it sorts the values numerically instead of as strings by default. TypedArray is one of the typed array types here.", "support": { "chrome": { "version_added": "45" @@ -26468,6 +27456,100 @@ "title": "TypedArray.prototype.toLocaleString()" } ], + "sec-%typedarray%.prototype.toreversed": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/TypedArray.json", + "name": "toReversed", + "slug": "JavaScript/Reference/Global_Objects/TypedArray/toReversed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toReversed", + "summary": "The toReversed() method is the copying counterpart of the reverse() method. It returns a new array with the elements in reversed order. This method has the same algorithm as Array.prototype.reverse(). TypedArray is one of the typed array types here.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "TypedArray.prototype.toReversed()" + } + ], + "sec-%typedarray%.prototype.tosorted": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/TypedArray.json", + "name": "toSorted", + "slug": "JavaScript/Reference/Global_Objects/TypedArray/toSorted", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toSorted", + "summary": "The toSorted() method is the copying version of the sort() method. It returns a new array with the elements sorted in ascending order. This method has the same algorithm as Array.prototype.toSorted(), except that it sorts the values numerically instead of as strings by default. TypedArray is one of the typed array types here.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "TypedArray.prototype.toSorted()" + } + ], "sec-%typedarray%.prototype.tostring": [ { "engines": [ @@ -26572,6 +27654,53 @@ "title": "TypedArray.prototype.values()" } ], + "sec-%typedarray%.prototype.with": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/builtins/TypedArray.json", + "name": "with", + "slug": "JavaScript/Reference/Global_Objects/TypedArray/with", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/with", + "summary": "The with() method is the copying version of using the bracket notation to change the value of a given index. It returns a new array with the element at the given index replaced with the given value. This method has the same algorithm as Array.prototype.with(). TypedArray is one of the typed array types here.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.31" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "TypedArray.prototype.with()" + } + ], "sec-%typedarray%.prototype-@@iterator": [ { "engines": [ @@ -26583,7 +27712,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Global_Objects/TypedArray/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/@@iterator", - "summary": "The @@iterator method of a TypedArray object implements the iterable protocol and allows typed arrays to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the value of each index in the typed array.", + "summary": "The [@@iterator]() method of TypedArray instances implements the iterable protocol and allows typed arrays to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an array iterator object that yields the value of each index in the typed array.", "support": { "chrome": { "version_added": "38" @@ -26646,7 +27775,7 @@ "name": "@@species", "slug": "JavaScript/Reference/Global_Objects/TypedArray/@@species", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/@@species", - "summary": "The TypedArray[@@species] accessor property returns the constructor used to construct return values from typed array methods.", + "summary": "The TypedArray[@@species] static accessor property returns the constructor used to construct return values from typed array methods.", "support": { "chrome": { "version_added": "51" @@ -26692,7 +27821,7 @@ "version_added": "79" } }, - "title": "get TypedArray[@@species]" + "title": "TypedArray[@@species]" } ], "sec-native-error-types-used-in-this-standard-urierror": [ @@ -26759,7 +27888,7 @@ "name": "WeakMap", "slug": "JavaScript/Reference/Global_Objects/WeakMap/WeakMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap/WeakMap", - "summary": "The WeakMap() constructor creates a WeakMap object, optionally based on a provided Array or other iterable object.", + "summary": "The WeakMap() constructor creates WeakMap objects.", "support": { "chrome": { "version_added": "36" @@ -27065,7 +28194,7 @@ "name": "WeakMap", "slug": "JavaScript/Reference/Global_Objects/WeakMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap", - "summary": "A WeakMap is a collection of key/value pairs whose keys must be objects, with values of any arbitrary JavaScript type, and which does not create strong references to its keys. That is, an object's presence as a key in a WeakMap does not prevent the object from being garbage collected. Once an object used as a key has been collected, its corresponding values in any WeakMap become candidates for garbage collection as well — as long as they aren't strongly referred to elsewhere.", + "summary": "A WeakMap is a collection of key/value pairs whose keys must be objects or non-registered symbols, with values of any arbitrary JavaScript type, and which does not create strong references to its keys. That is, an object's presence as a key in a WeakMap does not prevent the object from being garbage collected. Once an object used as a key has been collected, its corresponding values in any WeakMap become candidates for garbage collection as well — as long as they aren't strongly referred to elsewhere. The only primitive type that can be used as a WeakMap key is symbol — more specifically, non-registered symbols — because non-registered symbols are guaranteed to be unique and cannot be re-created.", "support": { "chrome": { "version_added": "36" @@ -27125,7 +28254,7 @@ "name": "WeakRef", "slug": "JavaScript/Reference/Global_Objects/WeakRef/WeakRef", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakRef/WeakRef", - "summary": "The WeakRef constructor creates a WeakRef object referring to a given target object.", + "summary": "The WeakRef() constructor creates WeakRef objects.", "support": { "chrome": { "version_added": "84" @@ -27183,7 +28312,7 @@ "name": "deref", "slug": "JavaScript/Reference/Global_Objects/WeakRef/deref", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakRef/deref", - "summary": "The deref method returns the WeakRef instance's target object, or undefined if the target object has been garbage-collected.", + "summary": "The deref() method returns the WeakRef instance's target value, or undefined if the target value has been garbage-collected.", "support": { "chrome": { "version_added": "84" @@ -27299,7 +28428,7 @@ "name": "WeakSet", "slug": "JavaScript/Reference/Global_Objects/WeakSet/WeakSet", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet/WeakSet", - "summary": "The WeakSet constructor lets you create WeakSet objects that store weakly held objects in a collection.", + "summary": "The WeakSet() constructor creates WeakSet objects.", "support": { "chrome": { "version_added": "36" @@ -27495,7 +28624,7 @@ "name": "WeakSet", "slug": "JavaScript/Reference/Global_Objects/WeakSet", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet", - "summary": "The WeakSet object lets you store weakly held objects in a collection.", + "summary": "A WeakSet is a collection of garbage-collectable values, including objects and non-registered symbols. A value in the WeakSet may only occur once. It is unique in the WeakSet's collection.", "support": { "chrome": { "version_added": "36" @@ -27542,8 +28671,8 @@ ], "filename": "javascript/builtins/WebAssembly/CompileError.json", "name": "CompileError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/CompileError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError", "summary": "The WebAssembly.CompileError object indicates an error during WebAssembly decoding or validation.", "support": { "chrome": { @@ -27589,8 +28718,8 @@ ], "filename": "javascript/builtins/WebAssembly/LinkError.json", "name": "LinkError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/LinkError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/LinkError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError", "summary": "The WebAssembly.LinkError object indicates an error during module instantiation (besides traps from the start function).", "support": { "chrome": { @@ -27636,8 +28765,8 @@ ], "filename": "javascript/builtins/WebAssembly/RuntimeError.json", "name": "RuntimeError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError", "summary": "The WebAssembly.RuntimeError object is the error type that is thrown whenever WebAssembly specifies a trap.", "support": { "chrome": { @@ -27687,7 +28816,7 @@ "name": "Infinity", "slug": "JavaScript/Reference/Global_Objects/Infinity", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity", - "summary": "The global property Infinity is a numeric value representing infinity.", + "summary": "The Infinity global property is a numeric value representing infinity.", "support": { "chrome": { "version_added": "1" @@ -27740,7 +28869,7 @@ "name": "NaN", "slug": "JavaScript/Reference/Global_Objects/NaN", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN", - "summary": "The global NaN property is a value representing Not-A-Number.", + "summary": "The NaN global property is a value representing Not-A-Number.", "support": { "chrome": { "version_added": "1" @@ -27793,7 +28922,7 @@ "name": "decodeURI", "slug": "JavaScript/Reference/Global_Objects/decodeURI", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURI", - "summary": "The decodeURI() function decodes a Uniform Resource Identifier (URI) previously created by encodeURI() or by a similar routine.", + "summary": "The decodeURI() function decodes a Uniform Resource Identifier (URI) previously created by encodeURI() or a similar routine.", "support": { "chrome": { "version_added": "1" @@ -27846,7 +28975,7 @@ "name": "decodeURIComponent", "slug": "JavaScript/Reference/Global_Objects/decodeURIComponent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent", - "summary": "The decodeURIComponent() function decodes a Uniform Resource Identifier (URI) component previously created by encodeURIComponent or by a similar routine.", + "summary": "The decodeURIComponent() function decodes a Uniform Resource Identifier (URI) component previously created by encodeURIComponent() or by a similar routine.", "support": { "chrome": { "version_added": "1" @@ -27899,7 +29028,7 @@ "name": "encodeURI", "slug": "JavaScript/Reference/Global_Objects/encodeURI", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI", - "summary": "The encodeURI() function encodes a URI by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two \"surrogate\" characters).", + "summary": "The encodeURI() function encodes a URI by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two surrogate characters). Compared to encodeURIComponent(), this function encodes fewer characters, preserving those that are part of the URI syntax.", "support": { "chrome": { "version_added": "1" @@ -27952,7 +29081,7 @@ "name": "encodeURIComponent", "slug": "JavaScript/Reference/Global_Objects/encodeURIComponent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent", - "summary": "The encodeURIComponent() function encodes a URI by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two \"surrogate\" characters).", + "summary": "The encodeURIComponent() function encodes a URI by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two surrogate characters). Compared to encodeURI(), this function encodes more characters, including those that are part of the URI syntax.", "support": { "chrome": { "version_added": "1" @@ -28058,7 +29187,7 @@ "name": "globalThis", "slug": "JavaScript/Reference/Global_Objects/globalThis", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis", - "summary": "The global globalThis property contains the global this value, which is akin to the global object.", + "summary": "The globalThis global property contains the global this value, which is usually akin to the global object.", "support": { "chrome": { "version_added": "71" @@ -28105,7 +29234,7 @@ "name": "isFinite", "slug": "JavaScript/Reference/Global_Objects/isFinite", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isFinite", - "summary": "The global isFinite() function determines whether the passed value is a finite number. If needed, the parameter is first converted to a number.", + "summary": "The isFinite() function determines whether the passed value is a finite number. If needed, the parameter is first converted to a number.", "support": { "chrome": { "version_added": "1" @@ -28158,7 +29287,7 @@ "name": "isNaN", "slug": "JavaScript/Reference/Global_Objects/isNaN", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isNaN", - "summary": "The isNaN() function determines whether a value is NaN or not. Because coercion inside the isNaN function can be surprising, you may alternatively want to use Number.isNaN().", + "summary": "The isNaN() function determines whether a value is NaN when converted to a number. Because coercion inside the isNaN() function can be surprising, you may alternatively want to use Number.isNaN().", "support": { "chrome": { "version_added": "1" @@ -28317,7 +29446,7 @@ "name": "undefined", "slug": "JavaScript/Reference/Global_Objects/undefined", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined", - "summary": "The global undefined property represents the primitive value undefined. It is one of JavaScript's primitive types.", + "summary": "The undefined global property represents the primitive value undefined. It is one of JavaScript's primitive types.", "support": { "chrome": { "version_added": "1" @@ -28538,7 +29667,7 @@ "name": "static", "slug": "JavaScript/Reference/Classes/static", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/static", - "summary": "The static keyword defines a static method or property for a class, or a class static initialization block (see the link for more information about this usage). Neither static methods nor static properties can be called on instances of the class. Instead, they're called on the class itself.", + "summary": "The static keyword defines a static method or field for a class, or a static initialization block (see the link for more information about this usage). Static properties cannot be directly accessed on instances of the class. Instead, they're accessed on the class itself.", "support": { "chrome": [ { @@ -28623,7 +29752,7 @@ "name": "classes", "slug": "JavaScript/Reference/Classes", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes", - "summary": "Classes are a template for creating objects. They encapsulate data with code to work on that data. Classes in JS are built on prototypes but also have some syntax and semantics that are not shared with ES5 class-like semantics.", + "summary": "Classes are a template for creating objects. They encapsulate data with code to work on that data. Classes in JS are built on prototypes but also have some syntax and semantics that are unique to classes.", "support": { "chrome": [ { @@ -28708,7 +29837,7 @@ "name": "class", "slug": "JavaScript/Reference/Operators/class", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/class", - "summary": "The class expression is one way to define a class. Similar to function expressions, class expressions can be named or unnamed. If named, the name of the class is local to the class body only.", + "summary": "The class keyword can be used to define a class inside an expression.", "support": { "chrome": { "version_added": "42" @@ -28770,7 +29899,7 @@ "name": "class", "slug": "JavaScript/Reference/Statements/class", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/class", - "summary": "The class declaration creates a new class with a given name using prototype-based inheritance.", + "summary": "The class declaration creates a binding of a new class to a given name.", "support": { "chrome": [ { @@ -28976,7 +30105,7 @@ "name": "public_class_fields", "slug": "JavaScript/Reference/Classes/Class_elements#Public_fields", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Class_elements#Public_fields", - "summary": "Both static and instance public fields are writable, enumerable, and configurable properties. As such, unlike their private counterparts, they participate in prototype inheritance.", + "summary": "Public fields are writable, enumerable, and configurable properties. As such, unlike their private counterparts, they participate in prototype inheritance.", "support": { "chrome": { "version_added": "72" @@ -29029,7 +30158,7 @@ "name": "static_class_fields", "slug": "JavaScript/Reference/Classes/Class_fields", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Class_fields", - "summary": "Both static and instance public fields are writable, enumerable, and configurable properties. As such, unlike their private counterparts, they participate in prototype inheritance.", + "summary": "Public fields are writable, enumerable, and configurable properties. As such, unlike their private counterparts, they participate in prototype inheritance.", "support": { "chrome": { "version_added": "72" @@ -29069,13 +30198,14 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "javascript/classes.json", "name": "static_initialization_blocks", "slug": "JavaScript/Reference/Classes/Class_static_initialization_blocks", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Class_static_initialization_blocks", - "summary": "Class static initialization blocks are a special feature of a class that enable more flexible initialization of static properties than can be achieved using per-field initialization.", + "summary": "Static initialization blocks are declared within a class. It contains statements to be evaluated during class initialization. This permits more flexible initialization logic than static properties, such as using try...catch or setting multiple fields from a single value. Initialization is performed in the context of the current class declaration, with access to private state, which allows the class to share information of its private properties with other classes or functions declared in the same scope (analogous to \"friend\" classes in C++).", "support": { "chrome": { "version_added": "94" @@ -29099,7 +30229,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -29108,61 +30238,10 @@ "version_added": "94" } }, - "title": "Class static initialization blocks" + "title": "Static initialization blocks" } ], "sec-arguments-exotic-objects": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "javascript/functions.json", - "name": "callee", - "slug": "JavaScript/Reference/Functions/arguments/callee", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments/callee", - "summary": "The arguments.callee property contains the currently executing function.", - "support": { - "chrome": { - "version_added": "1" - }, - "chrome_android": "mirror", - "deno": { - "version_added": "1.0" - }, - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "1" - }, - "firefox_android": "mirror", - "ie": { - "version_added": "6" - }, - "nodejs": { - "version_added": "0.10.0" - }, - "oculus": "mirror", - "opera": { - "version_added": "4" - }, - "opera_android": { - "version_added": "10.1" - }, - "safari": { - "version_added": "1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "arguments.callee" - }, { "engines": [ "blink", @@ -29173,7 +30252,7 @@ "name": "length", "slug": "JavaScript/Reference/Functions/arguments/length", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments/length", - "summary": "The arguments.length property contains the number of arguments passed to the function.", + "summary": "The arguments.length data property contains the number of arguments passed to the function.", "support": { "chrome": { "version_added": "1" @@ -29224,7 +30303,7 @@ "name": "arguments", "slug": "JavaScript/Reference/Functions/arguments", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments", - "summary": "arguments is an Array-like object accessible inside functions that contains the values of the arguments passed to that function.", + "summary": "arguments is an array-like object accessible inside functions that contains the values of the arguments passed to that function.", "support": { "chrome": { "version_added": "1" @@ -29277,7 +30356,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Functions/arguments/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments/@@iterator", - "summary": "The @@iterator method of the arguments object implements the iterable protocol and allows arguments to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the value of each index in the arguments object.", + "summary": "The [@@iterator]() method of arguments objects implements the iterable protocol and allows arguments objects to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an array iterator object that yields the value of each index in the arguments object.", "support": { "chrome": { "version_added": "52" @@ -29326,7 +30405,7 @@ "name": "@@iterator", "slug": "JavaScript/Reference/Functions/arguments/@@iterator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments/@@iterator", - "summary": "The @@iterator method of the arguments object implements the iterable protocol and allows arguments to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator that yields the value of each index in the arguments object.", + "summary": "The [@@iterator]() method of arguments objects implements the iterable protocol and allows arguments objects to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an array iterator object that yields the value of each index in the arguments object.", "support": { "chrome": { "version_added": "52" @@ -29375,7 +30454,7 @@ "name": "arrow_functions", "slug": "JavaScript/Reference/Functions/Arrow_functions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions", - "summary": "An arrow function expression is a compact alternative to a traditional function expression, but is limited and can't be used in all situations.", + "summary": "An arrow function expression is a compact alternative to a traditional function expression, with some semantic differences and deliberate limitations in usage:", "support": { "chrome": { "version_added": "45" @@ -29558,7 +30637,7 @@ "name": "functions", "slug": "JavaScript/Reference/Functions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions", - "summary": "Generally speaking, a function is a \"subprogram\" that can be called by code external (or internal in the case of recursion) to the function. Like the program itself, a function is composed of a sequence of statements called the function body. Values can be passed to a function, and the function will return a value.", + "summary": "Generally speaking, a function is a \"subprogram\" that can be called by code external (or internal, in the case of recursion) to the function. Like the program itself, a function is composed of a sequence of statements called the function body. Values can be passed to a function as parameters, and the function will return a value.", "support": { "chrome": { "version_added": "1" @@ -29668,7 +30747,7 @@ "name": "function", "slug": "JavaScript/Reference/Statements/function", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function", - "summary": "The function declaration (function statement) defines a function with the specified parameters.", + "summary": "The function declaration creates a binding of a new function to a given name.", "support": { "chrome": { "version_added": "1" @@ -29725,7 +30804,7 @@ "name": "get", "slug": "JavaScript/Reference/Functions/get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get", - "summary": "The get syntax binds an object property to a function that will be called when that property is looked up.", + "summary": "The get syntax binds an object property to a function that will be called when that property is looked up. It can also be used in classes.", "support": { "chrome": { "version_added": "1" @@ -29764,7 +30843,7 @@ "version_added": "79" } }, - "title": "getter" + "title": "get" }, { "engines": [ @@ -29776,7 +30855,7 @@ "name": "method_definitions", "slug": "JavaScript/Reference/Functions/Method_definitions", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions", - "summary": "Method definition is a shorter syntax for defining a function property in an object initializer.", + "summary": "Method definition is a shorter syntax for defining a function property in an object initializer. It can also be used in classes.", "support": { "chrome": { "version_added": "39" @@ -29823,7 +30902,7 @@ "name": "set", "slug": "JavaScript/Reference/Functions/set", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/set", - "summary": "The set syntax binds an object property to a function to be called when there is an attempt to set that property.", + "summary": "The set syntax binds an object property to a function to be called when there is an attempt to set that property. It can also be used in classes.", "support": { "chrome": { "version_added": "1" @@ -29862,7 +30941,7 @@ "version_added": "79" } }, - "title": "setter" + "title": "set" } ], "sec-array-initializer": [ @@ -29876,7 +30955,7 @@ "name": "array_literals", "slug": "JavaScript/Reference/Lexical_grammar#Array_literals", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Array_literals", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -29929,7 +31008,7 @@ "name": "binary_numeric_literals", "slug": "JavaScript/Reference/Lexical_grammar#Binary", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Binary", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "41" @@ -29989,7 +31068,7 @@ "name": "boolean_literals", "slug": "JavaScript/Reference/Lexical_grammar#Boolean_literal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Boolean_literal", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30042,7 +31121,7 @@ "name": "decimal_numeric_literals", "slug": "JavaScript/Reference/Lexical_grammar#Decimal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Decimal", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30095,7 +31174,7 @@ "name": "hashbang_comments", "slug": "JavaScript/Reference/Lexical_grammar#Hashbang_comments", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Hashbang_comments", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "74" @@ -30142,7 +31221,7 @@ "name": "hexadecimal_escape_sequences", "slug": "JavaScript/Reference/Lexical_grammar#Hexadecimal_escape_sequences", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Hexadecimal_escape_sequences", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30195,7 +31274,7 @@ "name": "hexadecimal_numeric_literals", "slug": "JavaScript/Reference/Lexical_grammar#Hexadecimal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Hexadecimal", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30248,7 +31327,7 @@ "name": "null_literal", "slug": "JavaScript/Reference/Lexical_grammar#Null_literal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Null_literal", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30301,7 +31380,7 @@ "name": "numeric_separators", "slug": "JavaScript/Reference/Lexical_grammar#Numeric_separators", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Numeric_separators", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "75" @@ -30361,7 +31440,7 @@ "name": "octal_numeric_literals", "slug": "JavaScript/Reference/Lexical_grammar#Octal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Octal", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "41" @@ -30421,7 +31500,7 @@ "name": "regular_expression_literals", "slug": "JavaScript/Reference/Lexical_grammar#Regular_expression_literals", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Regular_expression_literals", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30474,7 +31553,7 @@ "name": "string_literals", "slug": "JavaScript/Reference/Lexical_grammar#String_literals", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#String_literals", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30527,7 +31606,7 @@ "name": "unicode_escape_sequences", "slug": "JavaScript/Reference/Lexical_grammar#Unicode_escape_sequences", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Unicode_escape_sequences", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "1" @@ -30580,7 +31659,7 @@ "name": "unicode_point_escapes", "slug": "JavaScript/Reference/Lexical_grammar#Unicode_code_point_escapes", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Unicode_code_point_escapes", - "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include control characters, line terminators, white space, and comments. The others, such as identifiers and punctuators, will be used for further syntax analysis. ECMAScript also defines certain keywords and literals and has rules for automatic insertion of semicolons to make certain invalid token sequences become valid.", + "summary": "This page describes JavaScript's lexical grammar. JavaScript source text is just a sequence of characters — in order for the interpreter to understand it, the string has to be parsed to a more structured representation. The initial step of parsing is called lexical analysis, in which the text gets scanned from left to right and is converted into a sequence of individual, atomic input elements. Some input elements are insignificant to the interpreter, and will be stripped after this step — they include white space and comments. The others, including identifiers, keywords, literals, and punctuators (mostly operators), will be used for further syntax analysis. Line terminators and multiline comments are also syntactically insignificant, but they guide the process for automatic semicolons insertion to make certain invalid token sequences become valid.", "support": { "chrome": { "version_added": "44" @@ -31212,7 +32291,7 @@ "name": "addition", "slug": "JavaScript/Reference/Operators/Addition", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Addition", - "summary": "The addition operator (+) produces the sum of numeric operands or string concatenation.", + "summary": "The addition (+) operator produces the sum of numeric operands or string concatenation.", "support": { "chrome": { "version_added": "1" @@ -31265,7 +32344,7 @@ "name": "addition_assignment", "slug": "JavaScript/Reference/Operators/Addition_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Addition_assignment", - "summary": "The addition assignment operator (+=) adds the value of the right operand to a variable and assigns the result to the variable. The types of the two operands determine the behavior of the addition assignment operator. Addition or concatenation is possible.", + "summary": "The addition assignment (+=) operator performs addition (which is either numeric addition or string concatenation) on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31316,7 +32395,7 @@ "name": "assignment", "slug": "JavaScript/Reference/Operators/Assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Assignment", - "summary": "The simple assignment operator (=) is used to assign a value to a variable. The assignment operation evaluates to the assigned value. Chaining the assignment operator is possible in order to assign a single value to multiple variables.", + "summary": "The assignment (=) operator is used to assign a value to a variable. The assignment operation evaluates to the assigned value. Chaining the assignment operator is possible in order to assign a single value to multiple variables.", "support": { "chrome": { "version_added": "1" @@ -31367,7 +32446,7 @@ "name": "bitwise_and_assignment", "slug": "JavaScript/Reference/Operators/Bitwise_AND_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_AND_assignment", - "summary": "The bitwise AND assignment operator (&=) uses the binary representation of both operands, does a bitwise AND operation on them and assigns the result to the variable.", + "summary": "The bitwise AND assignment (&=) operator performs bitwise AND on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31418,7 +32497,7 @@ "name": "bitwise_or_assignment", "slug": "JavaScript/Reference/Operators/Bitwise_OR_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_OR_assignment", - "summary": "The bitwise OR assignment operator (|=) uses the binary representation of both operands, does a bitwise OR operation on them and assigns the result to the variable.", + "summary": "The bitwise OR assignment (|=) operator performs bitwise OR on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31469,7 +32548,7 @@ "name": "bitwise_xor_assignment", "slug": "JavaScript/Reference/Operators/Bitwise_XOR_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_XOR_assignment", - "summary": "The bitwise XOR assignment operator (^=) uses the binary representation of both operands, does a bitwise XOR operation on them and assigns the result to the variable.", + "summary": "The bitwise XOR assignment (^=) operator performs bitwise XOR on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31520,7 +32599,7 @@ "name": "division_assignment", "slug": "JavaScript/Reference/Operators/Division_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Division_assignment", - "summary": "The division assignment operator (/=) divides a variable by the value of the right operand and assigns the result to the variable.", + "summary": "The division assignment (/=) operator performs division on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31571,7 +32650,7 @@ "name": "exponentiation_assignment", "slug": "JavaScript/Reference/Operators/Exponentiation_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation_assignment", - "summary": "The exponentiation assignment operator (**=) raises the value of a variable to the power of the right operand.", + "summary": "The exponentiation assignment (**=) operator performs exponentiation on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "52" @@ -31631,7 +32710,7 @@ "name": "left_shift_assignment", "slug": "JavaScript/Reference/Operators/Left_shift_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift_assignment", - "summary": "The left shift assignment operator (<<=) moves the specified amount of bits to the left and assigns the result to the variable.", + "summary": "The left shift assignment (<<=) operator performs left shift on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31723,11 +32802,11 @@ "gecko", "webkit" ], - "filename": "javascript/operators/logical_nullish_assignment.json", - "name": "logical_nullish_assignment", - "slug": "JavaScript/Reference/Operators/Logical_nullish_assignment", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_nullish_assignment", - "summary": "The logical nullish assignment (x ??= y) operator only assigns if x is nullish (null or undefined).", + "filename": "javascript/operators/logical_or_assignment.json", + "name": "logical_or_assignment", + "slug": "JavaScript/Reference/Operators/Logical_OR_assignment", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR_assignment", + "summary": "The logical OR assignment (x ||= y) operator only assigns if x is falsy.", "support": { "chrome": { "version_added": "85" @@ -31760,7 +32839,7 @@ "version_added": "85" } }, - "title": "Logical nullish assignment (??=)" + "title": "Logical OR assignment (||=)" }, { "engines": [ @@ -31768,44 +32847,50 @@ "gecko", "webkit" ], - "filename": "javascript/operators/logical_or_assignment.json", - "name": "logical_or_assignment", - "slug": "JavaScript/Reference/Operators/Logical_OR_assignment", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR_assignment", - "summary": "The logical OR assignment (x ||= y) operator only assigns if x is falsy.", + "filename": "javascript/operators/multiplication_assignment.json", + "name": "multiplication_assignment", + "slug": "JavaScript/Reference/Operators/Multiplication_assignment", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Multiplication_assignment", + "summary": "The multiplication assignment (*=) operator performs multiplication on the two operands and assigns the result to the left operand.", "support": { "chrome": { - "version_added": "85" + "version_added": "1" }, "chrome_android": "mirror", "deno": { - "version_added": "1.2" + "version_added": "1.0" + }, + "edge": { + "version_added": "12" }, - "edge": "mirror", "firefox": { - "version_added": "79" + "version_added": "1" }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "3" }, "nodejs": { - "version_added": "15.0.0" + "version_added": "0.10.0" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "3" + }, + "opera_android": { + "version_added": "10.1" + }, "safari": { - "version_added": "14" + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "85" + "version_added": "79" } }, - "title": "Logical OR assignment (||=)" + "title": "Multiplication assignment (*=)" }, { "engines": [ @@ -31813,50 +32898,44 @@ "gecko", "webkit" ], - "filename": "javascript/operators/multiplication_assignment.json", - "name": "multiplication_assignment", - "slug": "JavaScript/Reference/Operators/Multiplication_assignment", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Multiplication_assignment", - "summary": "The multiplication assignment operator (*=) multiplies a variable by the value of the right operand and assigns the result to the variable.", + "filename": "javascript/operators/nullish_coalescing_assignment.json", + "name": "nullish_coalescing_assignment", + "slug": "JavaScript/Reference/Operators/Logical_nullish_assignment", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_nullish_assignment", + "summary": "The nullish coalescing assignment (??=) operator, also known as the logical nullish assignment operator, only assigns if x is nullish (null or undefined).", "support": { "chrome": { - "version_added": "1" + "version_added": "85" }, "chrome_android": "mirror", "deno": { - "version_added": "1.0" - }, - "edge": { - "version_added": "12" + "version_added": "1.2" }, + "edge": "mirror", "firefox": { - "version_added": "1" + "version_added": "79" }, "firefox_android": "mirror", "ie": { - "version_added": "3" + "version_added": false }, "nodejs": { - "version_added": "0.10.0" + "version_added": "15.0.0" }, "oculus": "mirror", - "opera": { - "version_added": "3" - }, - "opera_android": { - "version_added": "10.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "85" } }, - "title": "Multiplication assignment (*=)" + "title": "Nullish coalescing assignment (??=)" }, { "engines": [ @@ -31868,7 +32947,7 @@ "name": "remainder_assignment", "slug": "JavaScript/Reference/Operators/Remainder_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Remainder_assignment", - "summary": "The remainder assignment operator (%=) divides a variable by the value of the right operand and assigns the remainder to the variable.", + "summary": "The remainder assignment (%=) operator performs remainder on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31919,7 +32998,7 @@ "name": "right_shift_assignment", "slug": "JavaScript/Reference/Operators/Right_shift_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Right_shift_assignment", - "summary": "The right shift assignment operator (>>=) moves the specified amount of bits to the right and assigns the result to the variable.", + "summary": "The right shift assignment (>>=) operator performs right shift on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -31970,7 +33049,7 @@ "name": "subtraction_assignment", "slug": "JavaScript/Reference/Operators/Subtraction_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Subtraction_assignment", - "summary": "The subtraction assignment operator (-=) subtracts the value of the right operand from a variable and assigns the result to the variable.", + "summary": "The subtraction assignment (-=) operator performs subtraction on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -32021,7 +33100,7 @@ "name": "unsigned_right_shift_assignment", "slug": "JavaScript/Reference/Operators/Unsigned_right_shift_assignment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unsigned_right_shift_assignment", - "summary": "The unsigned right shift assignment operator (>>>=) moves the specified amount of bits to the right and assigns the result to the variable.", + "summary": "The unsigned right shift assignment (>>>=) operator performs unsigned right shift on the two operands and assigns the result to the left operand.", "support": { "chrome": { "version_added": "1" @@ -32074,7 +33153,7 @@ "name": "async_function", "slug": "JavaScript/Reference/Operators/async_function", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/async_function", - "summary": "The async function keyword can be used to define async functions inside expressions.", + "summary": "The async function keywords can be used to define an async function inside an expression.", "support": { "chrome": { "version_added": "55" @@ -32136,7 +33215,7 @@ "name": "top_level", "slug": "JavaScript/Reference/Operators/await#top_level_await", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await#top_level_await", - "summary": "The await operator is used to wait for a Promise and get its fulfillment value. It can only be used inside an async function or a JavaScript module.", + "summary": "The await operator is used to wait for a Promise and get its fulfillment value. It can only be used inside an async function or at the top level of a module.", "support": { "chrome": { "version_added": "89" @@ -32212,7 +33291,7 @@ "name": "await", "slug": "JavaScript/Reference/Operators/await", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await", - "summary": "The await operator is used to wait for a Promise and get its fulfillment value. It can only be used inside an async function or a JavaScript module.", + "summary": "The await operator is used to wait for a Promise and get its fulfillment value. It can only be used inside an async function or at the top level of a module.", "support": { "chrome": { "version_added": "55" @@ -32274,7 +33353,7 @@ "name": "async_function", "slug": "JavaScript/Reference/Statements/async_function", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function", - "summary": "An async function is a function declared with the async keyword, and the await keyword is permitted within it. The async and await keywords enable asynchronous, promise-based behavior to be written in a cleaner style, avoiding the need to explicitly configure promise chains.", + "summary": "The async function declaration creates a binding of a new async function to a given name. The await keyword is permitted within the function body, enabling asynchronous, promise-based behavior to be written in a cleaner style and avoiding the need to explicitly configure promise chains.", "support": { "chrome": { "version_added": "55" @@ -32394,7 +33473,7 @@ "name": "async_generator_function", "slug": "JavaScript/Reference/Statements/async_function*", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function*", - "summary": "The async function* declaration defines an async generator function, which returns an AsyncGenerator object.", + "summary": "The async function* declaration creates a binding of a new async generator function to a given name.", "support": { "chrome": { "version_added": "63" @@ -32452,7 +33531,7 @@ "name": "bitwise_and", "slug": "JavaScript/Reference/Operators/Bitwise_AND", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_AND", - "summary": "The bitwise AND operator (&) returns a 1 in each bit position for which the corresponding bits of both operands are 1s.", + "summary": "The bitwise AND (&) operator returns a number or BigInt whose binary representation has a 1 in each bit position for which the corresponding bits of both operands are 1.", "support": { "chrome": { "version_added": "1" @@ -32505,7 +33584,7 @@ "name": "bitwise_not", "slug": "JavaScript/Reference/Operators/Bitwise_NOT", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_NOT", - "summary": "The bitwise NOT operator (~) inverts the bits of its operand. Like other bitwise operators, it converts the operand to a 32-bit signed integer", + "summary": "The bitwise NOT (~) operator returns a number or BigInt whose binary representation has a 1 in each bit position for which the corresponding bit of the operand is 0, and a 0 otherwise.", "support": { "chrome": { "version_added": "1" @@ -32558,7 +33637,7 @@ "name": "bitwise_or", "slug": "JavaScript/Reference/Operators/Bitwise_OR", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_OR", - "summary": "The bitwise OR operator (|) returns a 1 in each bit position for which the corresponding bits of either or both operands are 1s.", + "summary": "The bitwise OR (|) operator returns a number or BigInt whose binary representation has a 1 in each bit position for which the corresponding bits of either or both operands are 1.", "support": { "chrome": { "version_added": "1" @@ -32611,7 +33690,7 @@ "name": "bitwise_xor", "slug": "JavaScript/Reference/Operators/Bitwise_XOR", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_XOR", - "summary": "The bitwise XOR operator (^) returns a 1 in each bit position for which the corresponding bits of either but not both operands are 1s.", + "summary": "The bitwise XOR (^) operator returns a number or BigInt whose binary representation has a 1 in each bit position for which the corresponding bits of either but not both operands are 1.", "support": { "chrome": { "version_added": "1" @@ -32664,7 +33743,7 @@ "name": "comma", "slug": "JavaScript/Reference/Operators/Comma_operator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comma_operator", - "summary": "The comma operator (,) evaluates each of its operands (from left to right) and returns the value of the last operand. This lets you create a compound expression in which multiple expressions are evaluated, with the compound expression's final value being the value of the rightmost of its member expressions. This is commonly used to provide multiple parameters to a for loop.", + "summary": "The comma (,) operator evaluates each of its operands (from left to right) and returns the value of the last operand. This is commonly used to provide multiple updaters to a for loop's afterthought.", "support": { "chrome": { "version_added": "1" @@ -32770,7 +33849,7 @@ "name": "decrement", "slug": "JavaScript/Reference/Operators/Decrement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Decrement", - "summary": "The decrement operator (--) decrements (subtracts one from) its operand and returns the value before or after the decrement, depending on where the operator is placed.", + "summary": "The decrement (--) operator decrements (subtracts one from) its operand and returns the value before or after the decrement, depending on where the operator is placed.", "support": { "chrome": { "version_added": "2" @@ -32976,7 +34055,7 @@ "name": "division", "slug": "JavaScript/Reference/Operators/Division", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Division", - "summary": "The division operator (/) produces the quotient of its operands where the left operand is the dividend and the right operand is the divisor.", + "summary": "The division (/) operator produces the quotient of its operands where the left operand is the dividend and the right operand is the divisor.", "support": { "chrome": { "version_added": "1" @@ -33027,7 +34106,7 @@ "name": "multiplication", "slug": "JavaScript/Reference/Operators/Multiplication", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Multiplication", - "summary": "The multiplication operator (*) produces the product of the operands.", + "summary": "The multiplication (*) operator produces the product of the operands.", "support": { "chrome": { "version_added": "1" @@ -33078,7 +34157,7 @@ "name": "remainder", "slug": "JavaScript/Reference/Operators/Remainder", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Remainder", - "summary": "The remainder operator (%) returns the remainder left over when one operand is divided by a second operand. It always takes the sign of the dividend.", + "summary": "The remainder (%) operator returns the remainder left over when one operand is divided by a second operand. It always takes the sign of the dividend.", "support": { "chrome": { "version_added": "1" @@ -33131,7 +34210,7 @@ "name": "equality", "slug": "JavaScript/Reference/Operators/Equality", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality", - "summary": "The equality operator (==) checks whether its two operands are equal, returning a Boolean result. Unlike the strict equality operator, it attempts to convert and compare operands that are of different types.", + "summary": "The equality (==) operator checks whether its two operands are equal, returning a Boolean result. Unlike the strict equality operator, it attempts to convert and compare operands that are of different types.", "support": { "chrome": { "version_added": "1" @@ -33182,7 +34261,7 @@ "name": "inequality", "slug": "JavaScript/Reference/Operators/Inequality", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Inequality", - "summary": "The inequality operator (!=) checks whether its two operands are not equal, returning a Boolean result. Unlike the strict inequality operator, it attempts to convert and compare operands that are of different types.", + "summary": "The inequality (!=) operator checks whether its two operands are not equal, returning a Boolean result. Unlike the strict inequality operator, it attempts to convert and compare operands that are of different types.", "support": { "chrome": { "version_added": "1" @@ -33233,7 +34312,7 @@ "name": "strict_equality", "slug": "JavaScript/Reference/Operators/Strict_equality", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Strict_equality", - "summary": "The strict equality operator (===) checks whether its two operands are equal, returning a Boolean result. Unlike the equality operator, the strict equality operator always considers operands of different types to be different.", + "summary": "The strict equality (===) operator checks whether its two operands are equal, returning a Boolean result. Unlike the equality operator, the strict equality operator always considers operands of different types to be different.", "support": { "chrome": { "version_added": "1" @@ -33284,7 +34363,7 @@ "name": "strict_inequality", "slug": "JavaScript/Reference/Operators/Strict_inequality", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Strict_inequality", - "summary": "The strict inequality operator (!==) checks whether its two operands are not equal, returning a Boolean result. Unlike the inequality operator, the strict inequality operator always considers operands of different types to be different.", + "summary": "The strict inequality (!==) operator checks whether its two operands are not equal, returning a Boolean result. Unlike the inequality operator, the strict inequality operator always considers operands of different types to be different.", "support": { "chrome": { "version_added": "1" @@ -33337,7 +34416,7 @@ "name": "exponentiation", "slug": "JavaScript/Reference/Operators/Exponentiation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation", - "summary": "The exponentiation operator (**) returns the result of raising the first operand to the power of the second operand. It is equivalent to Math.pow(), except it also accepts BigInts as operands.", + "summary": "The exponentiation (**) operator returns the result of raising the first operand to the power of the second operand. It is equivalent to Math.pow(), except it also accepts BigInts as operands.", "support": { "chrome": { "version_added": "52" @@ -33450,7 +34529,7 @@ "name": "generator_function", "slug": "JavaScript/Reference/Statements/function*", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function*", - "summary": "The function* declaration (function keyword followed by an asterisk) defines a generator function, which returns a Generator object.", + "summary": "The function* declaration creates a binding of a new generator function to a given name. A generator function can be exited and later re-entered, with its context (variable bindings) saved across re-entrances.", "support": { "chrome": { "version_added": "39" @@ -33514,7 +34593,7 @@ "name": "greater_than", "slug": "JavaScript/Reference/Operators/Greater_than", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Greater_than", - "summary": "The greater than operator (>) returns true if the left operand is greater than the right operand, and false otherwise.", + "summary": "The greater than (>) operator returns true if the left operand is greater than the right operand, and false otherwise.", "support": { "chrome": { "version_added": "1" @@ -33565,7 +34644,7 @@ "name": "greater_than_or_equal", "slug": "JavaScript/Reference/Operators/Greater_than_or_equal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Greater_than_or_equal", - "summary": "The greater than or equal operator (>=) returns true if the left operand is greater than or equal to the right operand, and false otherwise.", + "summary": "The greater than or equal (>=) operator returns true if the left operand is greater than or equal to the right operand, and false otherwise.", "support": { "chrome": { "version_added": "1" @@ -33718,7 +34797,7 @@ "name": "less_than", "slug": "JavaScript/Reference/Operators/Less_than", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Less_than", - "summary": "The less than operator (<) returns true if the left operand is less than the right operand, and false otherwise.", + "summary": "The less than (<) operator returns true if the left operand is less than the right operand, and false otherwise.", "support": { "chrome": { "version_added": "1" @@ -33769,7 +34848,7 @@ "name": "less_than_or_equal", "slug": "JavaScript/Reference/Operators/Less_than_or_equal", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Less_than_or_equal", - "summary": "The less than or equal operator (<=) returns true if the left operand is less than or equal to the right operand, and false otherwise.", + "summary": "The less than or equal (<=) operator returns true if the left operand is less than or equal to the right operand, and false otherwise.", "support": { "chrome": { "version_added": "1" @@ -33822,7 +34901,7 @@ "name": "grouping", "slug": "JavaScript/Reference/Operators/Grouping", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Grouping", - "summary": "The grouping operator ( ) controls the precedence of evaluation in expressions.", + "summary": "The grouping ( ) operator controls the precedence of evaluation in expressions. It also acts as a container for arbitrary expressions in certain syntactic constructs, where ambiguity or syntax errors would otherwise occur.", "support": { "chrome": { "version_added": "1" @@ -33875,14 +34954,15 @@ "name": "import", "slug": "JavaScript/Reference/Operators/Import", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Import", - "summary": "The import() call, commonly called dynamic import, is a function-like expression that allows loading an ECMAScript module asynchronously and dynamically into a potentially non-module environment.", + "summary": "The import() syntax, commonly called dynamic import, is a function-like expression that allows loading an ECMAScript module asynchronously and dynamically into a potentially non-module environment.", "support": { "chrome": { "version_added": "63" }, "chrome_android": "mirror", "deno": { - "version_added": "1.0" + "version_added": "1.0", + "notes": "Bundled Deno applications (using `deno compile`) do not support dynamic imports" }, "edge": "mirror", "firefox": { @@ -33925,7 +35005,7 @@ "feature": "es6-module-dynamic-import", "title": "JavaScript modules: dynamic import()" }, - "title": "import" + "title": "import()" } ], "prod-ImportMeta": [ @@ -33939,7 +35019,7 @@ "name": "import_meta", "slug": "JavaScript/Reference/Operators/import.meta", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta", - "summary": "The import.meta object exposes context-specific metadata to a JavaScript module. It contains information about the module, like the module's URL.", + "summary": "The import.meta meta-property exposes context-specific metadata to a JavaScript module. It contains information about the module, such as the module's URL.", "support": { "chrome": { "version_added": "64" @@ -33988,7 +35068,7 @@ "name": "increment", "slug": "JavaScript/Reference/Operators/Increment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Increment", - "summary": "The increment operator (++) increments (adds one to) its operand and returns the value before or after the increment, depending on where the operator is placed.", + "summary": "The increment (++) operator increments (adds one to) its operand and returns the value before or after the increment, depending on where the operator is placed.", "support": { "chrome": { "version_added": "2" @@ -34041,7 +35121,7 @@ "name": "left_shift", "slug": "JavaScript/Reference/Operators/Left_shift", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift", - "summary": "The left shift operator (<<) shifts the first operand the specified number of bits, modulo 32, to the left. Excess bits shifted off to the left are discarded. Zero bits are shifted in from the right.", + "summary": "The left shift (<<) operator returns a number or BigInt whose binary representation is the first operand shifted by the specified number of bits to the left. Excess bits shifted off to the left are discarded, and zero bits are shifted in from the right.", "support": { "chrome": { "version_added": "1" @@ -34094,7 +35174,7 @@ "name": "logical_and", "slug": "JavaScript/Reference/Operators/Logical_AND", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_AND", - "summary": "The logical AND (&&) operator (logical conjunction) for a set of boolean operands will be true if and only if all the operands are true. Otherwise it will be false.", + "summary": "The logical AND (&&) (logical conjunction) operator for a set of boolean operands will be true if and only if all the operands are true. Otherwise it will be false.", "support": { "chrome": { "version_added": "1" @@ -34147,7 +35227,7 @@ "name": "logical_not", "slug": "JavaScript/Reference/Operators/Logical_NOT", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_NOT", - "summary": "The logical NOT (!) operator (logical complement, negation) takes truth to falsity and vice versa. It is typically used with boolean (logical) values. When used with non-Boolean values, it returns false if its single operand can be converted to true; otherwise, returns true.", + "summary": "The logical NOT (!) (logical complement, negation) operator takes truth to falsity and vice versa. It is typically used with boolean (logical) values. When used with non-Boolean values, it returns false if its single operand can be converted to true; otherwise, returns true.", "support": { "chrome": { "version_added": "1" @@ -34200,7 +35280,7 @@ "name": "logical_or", "slug": "JavaScript/Reference/Operators/Logical_OR", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR", - "summary": "The logical OR (||) operator (logical disjunction) for a set of operands is true if and only if one or more of its operands is true. It is typically used with boolean (logical) values. When it is, it returns a Boolean value. However, the || operator actually returns the value of one of the specified operands, so if this operator is used with non-Boolean values, it will return a non-Boolean value.", + "summary": "The logical OR (||) (logical disjunction) operator for a set of operands is true if and only if one or more of its operands is true. It is typically used with boolean (logical) values. When it is, it returns a Boolean value. However, the || operator actually returns the value of one of the specified operands, so if this operator is used with non-Boolean values, it will return a non-Boolean value.", "support": { "chrome": { "version_added": "1" @@ -34306,7 +35386,7 @@ "name": "new_target", "slug": "JavaScript/Reference/Operators/new.target", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/new.target", - "summary": "The new.target pseudo-property lets you detect whether a function or constructor was called using the new operator. In constructors and functions invoked using the new operator, new.target returns a reference to the constructor or function. In normal function calls, new.target is undefined.", + "summary": "The new.target meta-property lets you detect whether a function or constructor was called using the new operator. In constructors and functions invoked using the new operator, new.target returns a reference to the constructor or function that new was called upon. In normal function calls, new.target is undefined.", "support": { "chrome": { "version_added": "46" @@ -34355,7 +35435,7 @@ "name": "null", "slug": "JavaScript/Reference/Operators/null", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/null", - "summary": "The value null represents the intentional absence of any object value. It is one of JavaScript's primitive values and is treated as falsy for boolean operations.", + "summary": "The null value represents the intentional absence of any object value. It is one of JavaScript's primitive values and is treated as falsy for boolean operations.", "support": { "chrome": { "version_added": "1" @@ -34408,7 +35488,7 @@ "name": "nullish_coalescing", "slug": "JavaScript/Reference/Operators/Nullish_coalescing_operator", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator", - "summary": "The nullish coalescing operator (??) is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand.", + "summary": "The nullish coalescing (??) operator is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand.", "support": { "chrome": { "version_added": "80" @@ -34455,7 +35535,7 @@ "name": "object_initializer", "slug": "JavaScript/Reference/Operators/Object_initializer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer", - "summary": "Objects can be initialized using new Object(), Object.create(), or using the literal notation (initializer notation). An object initializer is a comma-delimited list of zero or more pairs of property names and associated values of an object, enclosed in curly braces ({}).", + "summary": "An object initializer is a comma-delimited list of zero or more pairs of property names and associated values of an object, enclosed in curly braces ({}). Objects can also be initialized using Object.create() or by invoking a constructor function with the new operator.", "support": { "chrome": { "version_added": "1" @@ -34508,7 +35588,7 @@ "name": "optional_chaining", "slug": "JavaScript/Reference/Operators/Optional_chaining", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining", - "summary": "The optional chaining operator (?.) accesses an object's property or calls a function. If the object is undefined or null, it returns undefined instead of throwing an error.", + "summary": "The optional chaining (?.) operator accesses an object's property or calls a function. If the object accessed or function called using this operator is undefined or null, the expression short circuits and evaluates to undefined instead of throwing an error.", "support": { "chrome": { "version_added": "80" @@ -34608,7 +35688,7 @@ "name": "right_shift", "slug": "JavaScript/Reference/Operators/Right_shift", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Right_shift", - "summary": "The right shift operator (>>) returns the signed number represented by the result of performing a sign-extending shift of the binary representation of the first operand (evaluated as a two's complement bit string) to the right by the number of bits, modulo 32, specified in the second operand. Excess bits shifted off to the right are discarded, and copies of the leftmost bit are shifted in from the left.", + "summary": "The right shift (>>) operator returns a number or BigInt whose binary representation is the first operand shifted by the specified number of bits to the right. Excess bits shifted off to the right are discarded, and copies of the leftmost bit are shifted in from the left. This operation is also called \"sign-propagating right shift\" or \"arithmetic right shift\", because the sign of the resulting number is the same as the sign of the first operand.", "support": { "chrome": { "version_added": "1" @@ -34661,7 +35741,7 @@ "name": "spread_in_arrays", "slug": "JavaScript/Reference/Operators/Spread_syntax#Spread_in_array_literals", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax#Spread_in_array_literals", - "summary": "Spread syntax (...) allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", + "summary": "The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", "support": { "chrome": { "version_added": "46" @@ -34723,7 +35803,7 @@ "name": "spread", "slug": "JavaScript/Reference/Operators/Spread_syntax", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax", - "summary": "Spread syntax (...) allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", + "summary": "The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", "support": { "chrome": { "version_added": "46" @@ -34787,7 +35867,7 @@ "name": "spread_in_function_calls", "slug": "JavaScript/Reference/Operators/Spread_syntax#Spread_in_function_calls", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax#Spread_in_function_calls", - "summary": "Spread syntax (...) allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", + "summary": "The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", "support": { "chrome": { "version_added": "46" @@ -34846,7 +35926,7 @@ "name": "spread", "slug": "JavaScript/Reference/Operators/Spread_syntax", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax", - "summary": "Spread syntax (...) allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", + "summary": "The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", "support": { "chrome": { "version_added": "46" @@ -34910,7 +35990,7 @@ "name": "spread_in_object_literals", "slug": "JavaScript/Reference/Operators/Spread_syntax#Spread_in_object_literals", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax#Spread_in_object_literals", - "summary": "Spread syntax (...) allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", + "summary": "The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", "support": { "chrome": { "version_added": "60" @@ -34965,7 +36045,7 @@ "name": "spread", "slug": "JavaScript/Reference/Operators/Spread_syntax", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax", - "summary": "Spread syntax (...) allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", + "summary": "The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.", "support": { "chrome": { "version_added": "46" @@ -35029,7 +36109,7 @@ "name": "subtraction", "slug": "JavaScript/Reference/Operators/Subtraction", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Subtraction", - "summary": "The subtraction operator (-) subtracts the two operands, producing their difference.", + "summary": "The subtraction (-) operator subtracts the two operands, producing their difference.", "support": { "chrome": { "version_added": "1" @@ -35237,7 +36317,7 @@ "name": "unary_negation", "slug": "JavaScript/Reference/Operators/Unary_negation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_negation", - "summary": "The unary negation operator (-) precedes its operand and negates it.", + "summary": "The unary negation (-) operator precedes its operand and negates it.", "support": { "chrome": { "version_added": "1" @@ -35290,7 +36370,7 @@ "name": "unary_plus", "slug": "JavaScript/Reference/Operators/Unary_plus", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_plus", - "summary": "The unary plus operator (+) precedes its operand and evaluates to its operand but attempts to convert it into a number, if it isn't already.", + "summary": "The unary plus (+) operator precedes its operand and evaluates to its operand but attempts to convert it into a number, if it isn't already.", "support": { "chrome": { "version_added": "1" @@ -35343,7 +36423,7 @@ "name": "unsigned_right_shift", "slug": "JavaScript/Reference/Operators/Unsigned_right_shift", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unsigned_right_shift", - "summary": "The unsigned right shift operator (>>>) (zero-fill right shift) evaluates the left-hand operand as an unsigned number, and shifts the binary representation of that number by the number of bits, modulo 32, specified by the right-hand operand. Excess bits shifted off to the right are discarded, and zero bits are shifted in from the left. The sign bit becomes 0, so the result is always non-negative. Unlike the other bitwise operators, zero-fill right shift returns an unsigned 32-bit integer.", + "summary": "The unsigned right shift (>>>) operator returns a number whose binary representation is the first operand shifted by the specified number of bits to the right. Excess bits shifted off to the right are discarded, and zero bits are shifted in from the left. This operation is also called \"zero-filling right shift\", because the sign bit becomes 0, so the resulting number is always positive. Unsigned right shift does not accept BigInt values.", "support": { "chrome": { "version_added": "1" @@ -35451,7 +36531,7 @@ "name": "yield", "slug": "JavaScript/Reference/Operators/yield", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/yield", - "summary": "The yield keyword is used to pause and resume a generator function.", + "summary": "The yield operator is used to pause and resume a generator function.", "support": { "chrome": { "version_added": "39" @@ -35515,7 +36595,7 @@ "name": "yield_star", "slug": "JavaScript/Reference/Operators/yield*", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/yield*", - "summary": "The yield* expression is used to delegate to another generator or iterable object.", + "summary": "The yield* operator is used to delegate to another iterable object, such as a Generator.", "support": { "chrome": { "version_added": "39" @@ -35565,6 +36645,902 @@ "title": "yield*" } ], + "prod-DecimalEscape": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "backreference", + "slug": "JavaScript/Reference/Regular_expressions/Backreference", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Backreference", + "summary": "A backreference refers to the submatch of a previous capturing group and matches the same text as that group. For named capturing groups, you may prefer to use the named backreference syntax.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Backreference: \\1, \\2" + } + ], + "prod-Atom": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "capturing_group", + "slug": "JavaScript/Reference/Regular_expressions/Capturing_group", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Capturing_group", + "summary": "A capturing group groups a subpattern, allowing you to apply a quantifier to the entire group or use disjunctions within it. It memorizes information about the subpattern match, so that you can refer back to it later with a backreference, or access the information through the match results.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Capturing group: (...)" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "named_capturing_group", + "slug": "JavaScript/Reference/Regular_expressions/Named_capturing_group", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Named_capturing_group", + "summary": "A named capturing group is a particular kind of capturing group that allows to give a name to the group. The group's matching result can later be identified by this name instead of by its index in the pattern.", + "support": { + "chrome": { + "version_added": "64" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "78" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "10.0.0" + }, + { + "version_added": "8.3.0", + "flags": [ + { + "name": "--harmony", + "type": "runtime_flag" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Named capturing group: (?<name>...)" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "non_capturing_group", + "slug": "JavaScript/Reference/Regular_expressions/Non-capturing_group", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Non-capturing_group", + "summary": "A non-capturing group groups a subpattern, allowing you to apply a quantifier to the entire group or use disjunctions within it. It acts like the grouping operator in JavaScript expressions, and unlike capturing groups, it does not memorize the matched text, allowing for better performance and avoiding confusion when the pattern also contains useful capturing groups.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Non-capturing group: (?:...)" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "wildcard", + "slug": "JavaScript/Reference/Regular_expressions/Wildcard", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Wildcard", + "summary": "A wildcard matches all characters except line terminators. It also matches line terminators if the s flag is set.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Wildcard: ." + } + ], + "prod-CharacterClass": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "character_class", + "slug": "JavaScript/Reference/Regular_expressions/Character_class", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Character_class", + "summary": "A character class matches any character in or not in a custom set of characters. When the v flag is enabled, it can also be used to match finite-length strings.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Character class: [...], [^...]" + } + ], + "prod-CharacterClassEscape": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "character_class_escape", + "slug": "JavaScript/Reference/Regular_expressions/Character_class_escape", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Character_class_escape", + "summary": "A character class escape is an escape sequence that represents a set of characters.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Character class escape: \\d, \\D, \\w, \\W, \\s, \\S" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "unicode_character_class_escape", + "slug": "JavaScript/Reference/Regular_expressions/Unicode_character_class_escape", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Unicode_character_class_escape", + "summary": "A unicode character class escape is a kind of character class escape that matches a set of characters specified by a Unicode property. It's only supported in Unicode-aware mode. When the v flag is enabled, it can also be used to match finite-length strings.", + "support": { + "chrome": { + "version_added": "64" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "78" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "10.0.0" + }, + { + "version_added": "8.3.0", + "flags": [ + { + "name": "--harmony", + "type": "runtime_flag" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Unicode character class escape: \\p{...}, \\P{...}" + } + ], + "prod-CharacterEscape": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "character_escape", + "slug": "JavaScript/Reference/Regular_expressions/Character_escape", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Character_escape", + "summary": "A character escape represents a character that may not be able to be conveniently represented in its literal form.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Character escape: \\n, \\u{...}" + } + ], + "prod-Disjunction": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "disjunction", + "slug": "JavaScript/Reference/Regular_expressions/Disjunction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Disjunction", + "summary": "A disjunction specifies multiple alternatives. Any alternative matching the input causes the entire disjunction to be matched.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Disjunction: |" + } + ], + "prod-Assertion": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "input_boundary_assertion", + "slug": "JavaScript/Reference/Regular_expressions/Input_boundary_assertion", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Input_boundary_assertion", + "summary": "An input boundary assertion checks if the current position in the string is an input boundary. An input boundary is the start or end of the string; or, if the m flag is set, the start or end of a line.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Input boundary assertion: ^, $" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "lookahead_assertion", + "slug": "JavaScript/Reference/Regular_expressions/Lookahead_assertion", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Lookahead_assertion", + "summary": "A lookahead assertion \"looks ahead\": it attempts to match the subsequent input with the given pattern, but it does not consume any of the input — if the match is successful, the current position in the input stays the same.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Lookahead assertion: (?=...), (?!...)" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "lookbehind_assertion", + "slug": "JavaScript/Reference/Regular_expressions/Lookbehind_assertion", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Lookbehind_assertion", + "summary": "A lookbehind assertion \"looks behind\": it attempts to match the previous input with the given pattern, but it does not consume any of the input — if the match is successful, the current position in the input stays the same. It matches each atom in its pattern in the reverse order.", + "support": { + "chrome": { + "version_added": "62" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "78" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "8.10.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Lookbehind assertion: (?<=...), (?<!...)" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "word_boundary_assertion", + "slug": "JavaScript/Reference/Regular_expressions/Word_boundary_assertion", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Word_boundary_assertion", + "summary": "A word boundary assertion checks if the current position in the string is a word boundary. A word boundary is where the next character is a word character and the previous character is not a word character, or vice versa.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Word boundary assertion: \\b, \\B" + } + ], + "prod-PatternCharacter": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "literal_character", + "slug": "JavaScript/Reference/Regular_expressions/Literal_character", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Literal_character", + "summary": "A literal character specifies exactly itself to be matched in the input text.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Literal character: a, b" + } + ], + "prod-AtomEscape": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "named_backreference", + "slug": "JavaScript/Reference/Regular_expressions/Named_backreference", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Named_backreference", + "summary": "A named backreference refers to the submatch of a previous named capturing group and matches the same text as that group. For unnamed capturing groups, you need to use the normal backreference syntax.", + "support": { + "chrome": { + "version_added": "64" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "78" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": [ + { + "version_added": "10.0.0" + }, + { + "version_added": "8.3.0", + "flags": [ + { + "name": "--harmony", + "type": "runtime_flag" + } + ] + } + ], + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Named backreference: \\k<name>" + } + ], + "prod-Quantifier": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/regular_expressions.json", + "name": "quantifier", + "slug": "JavaScript/Reference/Regular_expressions/Quantifier", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Quantifier", + "summary": "A quantifier repeats an atom a certain number of times. The quantifier is placed after the atom it applies to.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "4" + }, + "nodejs": { + "version_added": "0.10.0" + }, + "oculus": "mirror", + "opera": { + "version_added": "5" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Quantifier: *, +, ?, {n}, {n,}, {n,m}" + } + ], "sec-block": [ { "engines": [ @@ -35629,7 +37605,7 @@ "name": "break", "slug": "JavaScript/Reference/Statements/break", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/break", - "summary": "The break statement terminates the current loop, switch, or label statement and transfers program control to the statement following the terminated statement.", + "summary": "The break statement terminates the current loop or switch statement and transfers program control to the statement following the terminated statement. It can also be used to jump past a labeled statement when used within that labeled statement.", "support": { "chrome": { "version_added": "1" @@ -35682,7 +37658,7 @@ "name": "const", "slug": "JavaScript/Reference/Statements/const", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const", - "summary": "Constants are block-scoped, much like variables declared using the let keyword. The value of a constant can't be changed through reassignment (i.e. by using the assignment operator), and it can't be redeclared (i.e. through a variable declaration). However, if a constant is an object or array its properties or items can be updated or removed.", + "summary": "The const declaration declares block-scoped local variables. The value of a constant can't be changed through reassignment using the assignment operator, but if a constant is an object, its properties can be added, updated, or removed.", "support": { "chrome": { "version_added": "21" @@ -35741,7 +37717,7 @@ "name": "let", "slug": "JavaScript/Reference/Statements/let", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let", - "summary": "The let declaration declares a block-scoped local variable, optionally initializing it to a value.", + "summary": "The let declaration declares re-assignable, block-scoped local variables, optionally initializing each to a value.", "support": { "chrome": [ { @@ -36448,7 +38424,7 @@ "name": "if_else", "slug": "JavaScript/Reference/Statements/if...else", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/if...else", - "summary": "The if statement executes a statement if a specified condition is truthy. If the condition is falsy, another statement in the optional else clause will be executed.", + "summary": "The if...else statement executes a statement if a specified condition is truthy. If the condition is falsy, another statement in the optional else clause will be executed.", "support": { "chrome": { "version_added": "1" @@ -36501,7 +38477,7 @@ "name": "import", "slug": "JavaScript/Reference/Statements/import", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import", - "summary": "The static import declaration is used to import read-only live bindings which are exported by another module. The imported bindings are called live bindings because they are updated by the module that exported the binding, but cannot be modified by the importing module.", + "summary": "The static import declaration is used to import read-only live bindings which are exported by another module. The imported bindings are called live bindings because they are updated by the module that exported the binding, but cannot be re-assigned by the importing module.", "support": { "chrome": { "version_added": "61" @@ -36575,7 +38551,7 @@ "name": "label", "slug": "JavaScript/Reference/Statements/label", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label", - "summary": "The labeled statement can be used with break or continue statements. It is prefixing a statement with an identifier which you can refer to.", + "summary": "A labeled statement is any statement that is prefixed with an identifier. You can jump to this label using a break or continue statement nested within the labeled statement.", "support": { "chrome": { "version_added": "1" @@ -36840,7 +38816,7 @@ "name": "var", "slug": "JavaScript/Reference/Statements/var", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var", - "summary": "The var statement declares a function-scoped or globally-scoped variable, optionally initializing it to a value.", + "summary": "The var statement declares function-scoped or globally-scoped variables, optionally initializing each to a value.", "support": { "chrome": { "version_added": "1" diff --git a/bikeshed/spec-data/readonly/mdn/element-timing.json b/bikeshed/spec-data/readonly/mdn/element-timing.json index 5c92ba202c..1d8b87fe3b 100644 --- a/bikeshed/spec-data/readonly/mdn/element-timing.json +++ b/bikeshed/spec-data/readonly/mdn/element-timing.json @@ -1,4 +1,43 @@ { + "dom-element-elementtiming": [ + { + "engines": [ + "blink" + ], + "filename": "api/Element.json", + "name": "elementTiming", + "slug": "API/Element/elementTiming", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/elementTiming", + "summary": "The elementTiming property of the Element interface identifies elements for observation in the PerformanceElementTiming API. The elementTiming property reflects the value of the elementtiming attribute.", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Element: elementTiming property" + } + ], "ref-for-dom-performanceelementtiming-element": [ { "engines": [ @@ -8,7 +47,7 @@ "name": "element", "slug": "API/PerformanceElementTiming/element", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming/element", - "summary": "The element read-only property of the PerformanceElementTiming interface returns an Element which is a literal representation of the associated element.", + "summary": "The element read-only property of the PerformanceElementTiming interface returns an Element which is a pointer to the observed element.", "support": { "chrome": { "version_added": "77" @@ -35,7 +74,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.element" + "title": "PerformanceElementTiming: element property" } ], "ref-for-dom-performanceelementtiming-id": [ @@ -74,7 +113,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.id" + "title": "PerformanceElementTiming: id property" } ], "ref-for-dom-performanceelementtiming-identifier": [ @@ -113,7 +152,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.identifier" + "title": "PerformanceElementTiming: identifier property" } ], "ref-for-dom-performanceelementtiming-intersectionrect": [ @@ -152,7 +191,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.intersectionRect" + "title": "PerformanceElementTiming: intersectionRect property" } ], "ref-for-dom-performanceelementtiming-loadtime①": [ @@ -191,7 +230,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.loadTime" + "title": "PerformanceElementTiming: loadTime property" } ], "ref-for-dom-performanceelementtiming-naturalheight": [ @@ -230,7 +269,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.naturalHeight" + "title": "PerformanceElementTiming: naturalHeight property" } ], "ref-for-dom-performanceelementtiming-naturalwidth": [ @@ -269,7 +308,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.naturalWidth" + "title": "PerformanceElementTiming: naturalWidth property" } ], "ref-for-dom-performanceelementtiming-rendertime①": [ @@ -308,7 +347,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.renderTime" + "title": "PerformanceElementTiming: renderTime property" } ], "dom-performanceelementtiming-tojson": [ @@ -320,7 +359,7 @@ "name": "toJSON", "slug": "API/PerformanceElementTiming/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming/toJSON", - "summary": "The toJSON() method of the PerformanceElementTiming interface is a standard serializer. It returns a JSON representation of the object's properties.", + "summary": "The toJSON() method of the PerformanceElementTiming interface is a serializer; it returns a JSON representation of the PerformanceElementTiming object.", "support": { "chrome": { "version_added": "77" @@ -347,7 +386,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.toJSON()" + "title": "PerformanceElementTiming: toJSON() method" } ], "ref-for-dom-performanceelementtiming-url": [ @@ -386,7 +425,7 @@ "version_added": "79" } }, - "title": "PerformanceElementTiming.url" + "title": "PerformanceElementTiming: url property" } ], "sec-performance-element-timing": [ @@ -398,7 +437,7 @@ "name": "PerformanceElementTiming", "slug": "API/PerformanceElementTiming", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming", - "summary": "The PerformanceElementTiming interface of the Element Timing API reports timing information on a specific element identified by the page author. For example it could report timing information about the main image in an article.", + "summary": "The PerformanceElementTiming interface contains render timing information for image and text node elements the developer annotated with an elementtiming attribute for observation.", "support": { "chrome": { "version_added": "77" diff --git a/bikeshed/spec-data/readonly/mdn/encoding.json b/bikeshed/spec-data/readonly/mdn/encoding.json index 2e2ed43055..d9ab2fbf4a 100644 --- a/bikeshed/spec-data/readonly/mdn/encoding.json +++ b/bikeshed/spec-data/readonly/mdn/encoding.json @@ -58,7 +58,7 @@ "version_added": "79" } }, - "title": "TextDecoder()" + "title": "TextDecoder: TextDecoder() constructor" } ], "ref-for-dom-textdecoder-decode①": [ @@ -121,7 +121,7 @@ "version_added": "79" } }, - "title": "TextDecoder.decode()" + "title": "TextDecoder: decode() method" } ], "ref-for-dom-textdecoder-encoding①": [ @@ -175,7 +175,7 @@ "version_added": "79" } }, - "title": "TextDecoder.encoding" + "title": "TextDecoder: encoding property" } ], "ref-for-dom-textdecoder-fatal①": [ @@ -222,7 +222,7 @@ "version_added": "79" } }, - "title": "TextDecoder.fatal" + "title": "TextDecoder: fatal property" } ], "ref-for-dom-textdecoder-ignorebom①": [ @@ -269,7 +269,7 @@ "version_added": "79" } }, - "title": "TextDecoder.ignoreBOM" + "title": "TextDecoder: ignoreBOM property" } ], "interface-textdecoder": [ @@ -378,7 +378,7 @@ "version_added": "79" } }, - "title": "TextDecoderStream()" + "title": "TextDecoderStream: TextDecoderStream() constructor" } ], "dom-textdecoder-encoding": [ @@ -392,7 +392,7 @@ "name": "encoding", "slug": "API/TextDecoderStream/encoding", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TextDecoderStream/encoding", - "summary": "The encoding read-only property of the TextDecoderStream interface returns a string containing the name of the encoding algorithm used by the specific encoder.", + "summary": "The encoding read-only property of the TextDecoderStream interface returns a string containing the name of the encoding algorithm used by the specific decoder.", "support": { "chrome": { "version_added": "71" @@ -425,7 +425,7 @@ "version_added": "79" } }, - "title": "TextDecoderStream.encoding" + "title": "TextDecoderStream: encoding property" } ], "dom-textdecoder-fatal": [ @@ -472,7 +472,7 @@ "version_added": "79" } }, - "title": "TextDecoderStream.fatal" + "title": "TextDecoderStream: fatal property" } ], "textdecoder-ignore-bom-flag": [ @@ -519,7 +519,7 @@ "version_added": "79" } }, - "title": "TextDecoderStream.ignoreBOM" + "title": "TextDecoderStream: ignoreBOM property" } ], "interface-textdecoderstream": [ @@ -631,7 +631,7 @@ "version_added": "79" } }, - "title": "TextEncoder()" + "title": "TextEncoder: TextEncoder() constructor" } ], "ref-for-dom-textencoder-encode①": [ @@ -678,7 +678,7 @@ "version_added": "79" } }, - "title": "TextEncoder.encode()" + "title": "TextEncoder: encode() method" } ], "ref-for-dom-textencoder-encodeinto①": [ @@ -692,7 +692,7 @@ "name": "encodeInto", "slug": "API/TextEncoder/encodeInto", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder/encodeInto", - "summary": "The TextEncoder.encodeInto() method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding. This is potentially more performant than the older encode() method — especially when the target buffer is a view into a WASM heap.", + "summary": "The TextEncoder.encodeInto() method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding. This is potentially more performant than the older encode() method — especially when the target buffer is a view into a Wasm heap.", "support": { "chrome": { "version_added": "74" @@ -727,7 +727,7 @@ "version_added": "79" } }, - "title": "TextEncoder.encodeInto()" + "title": "TextEncoder: encodeInto() method" } ], "dom-textencoder-encoding": [ @@ -774,7 +774,7 @@ "version_added": "79" } }, - "title": "TextEncoder.encoding" + "title": "TextEncoder: encoding property" }, { "engines": [ @@ -819,7 +819,7 @@ "version_added": "79" } }, - "title": "TextEncoderStream.encoding" + "title": "TextEncoderStream: encoding property" } ], "interface-textencoder": [ @@ -921,7 +921,7 @@ "version_added": "79" } }, - "title": "TextEncoderStream()" + "title": "TextEncoderStream: TextEncoderStream() constructor" } ], "interface-textencoderstream": [ diff --git a/bikeshed/spec-data/readonly/mdn/encrypted-media.json b/bikeshed/spec-data/readonly/mdn/encrypted-media.json index 32a1adbeaa..c6e23ad5ec 100644 --- a/bikeshed/spec-data/readonly/mdn/encrypted-media.json +++ b/bikeshed/spec-data/readonly/mdn/encrypted-media.json @@ -1,4 +1,133 @@ { + "dom-evt-encrypted": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLMediaElement.json", + "name": "encrypted_event", + "slug": "API/HTMLMediaElement/encrypted_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/encrypted_event", + "summary": "The encrypted event is fired when the media encounters some initialization data indicating it is encrypted.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLMediaElement: encrypted event" + } + ], + "dom-htmlmediaelement-onencrypted": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLMediaElement.json", + "name": "encrypted_event", + "slug": "API/HTMLMediaElement/encrypted_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/encrypted_event", + "summary": "The encrypted event is fired when the media encounters some initialization data indicating it is encrypted.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLMediaElement: encrypted event" + } + ], + "dom-htmlmediaelement-mediakeys": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLMediaElement.json", + "name": "mediaKeys", + "slug": "API/HTMLMediaElement/mediaKeys", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/mediaKeys", + "summary": "The read-only HTMLMediaElement.mediaKeys property returns a MediaKeys object, that is a set of keys that the element can use for decryption of media data during playback.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLMediaElement: mediaKeys property" + } + ], "dom-htmlmediaelement-setmediakeys": [ { "engines": [ @@ -10,7 +139,7 @@ "name": "setMediaKeys", "slug": "API/HTMLMediaElement/setMediaKeys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/setMediaKeys", - "summary": "The setMediaKeys() property of the HTMLMediaElement interface returns a Promise that resolves to the passed MediaKeys, which are those used to decrypt media during playback.", + "summary": "The setMediaKeys() method of the HTMLMediaElement interface returns a Promise that resolves to the passed MediaKeys, which are those used to decrypt media during playback.", "support": { "chrome": { "version_added": "42" @@ -39,7 +168,187 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.setMediaKeys()" + "title": "HTMLMediaElement: setMediaKeys() method" + } + ], + "dom-mediaencryptedevent": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaEncryptedEvent.json", + "name": "MediaEncryptedEvent", + "slug": "API/MediaEncryptedEvent/MediaEncryptedEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/MediaEncryptedEvent", + "summary": "The MediaEncryptedEvent constructor creates a new MediaEncryptedEvent object.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "43" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaEncryptedEvent: MediaEncryptedEvent() constructor" + } + ], + "dom-mediaencryptedevent-initdata": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaEncryptedEvent.json", + "name": "initData", + "slug": "API/MediaEncryptedEvent/initData", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/initData", + "summary": "The read-only initData property of the MediaKeyMessageEvent returns the initialization data contained in this event, if any.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "43" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaEncryptedEvent: initData property" + } + ], + "dom-mediaencryptedevent-initdatatype": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaEncryptedEvent.json", + "name": "initDataType", + "slug": "API/MediaEncryptedEvent/initDataType", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/initDataType", + "summary": "The read-only initDataType property of the MediaKeyMessageEvent returns a case-sensitive string describing the type of the initialization data associated with this event.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "43" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaEncryptedEvent: initDataType property" + } + ], + "mediaencryptedevent": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaEncryptedEvent.json", + "name": "MediaEncryptedEvent", + "slug": "API/MediaEncryptedEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent", + "summary": "The MediaEncryptedEvent interface of the Encrypted Media Extensions API contains the information associated with an encrypted event sent to a HTMLMediaElement when some initialization data is encountered in the media.", + "support": { + "chrome": { + "version_added": "42" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "13" + }, + "firefox": { + "version_added": "38" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "43" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaEncryptedEvent" } ], "constructors": [ @@ -82,7 +391,7 @@ "version_added": "79" } }, - "title": "MediaKeyMessageEvent()" + "title": "MediaKeyMessageEvent: MediaKeyMessageEvent() constructor" } ], "dom-mediakeymessageevent-message": [ @@ -125,7 +434,7 @@ "version_added": "79" } }, - "title": "MediaKeyMessageEvent.message" + "title": "MediaKeyMessageEvent: message property" } ], "dom-mediakeymessageevent-messagetype": [ @@ -168,7 +477,7 @@ "version_added": "79" } }, - "title": "MediaKeyMessageEvent.messageType" + "title": "MediaKeyMessageEvent: messageType property" } ], "mediakeymessageevent": [ @@ -182,7 +491,7 @@ "name": "MediaKeyMessageEvent", "slug": "API/MediaKeyMessageEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaKeyMessageEvent", - "summary": "The MediaKeyMessageEvent interface of the EncryptedMediaExtensions API contains the content and related data when the content decryption module generates a message for the session.", + "summary": "The MediaKeyMessageEvent interface of the Encrypted Media Extensions API contains the content and related data when the content decryption module generates a message for the session.", "support": { "chrome": { "version_added": "42" @@ -256,7 +565,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.close()" + "title": "MediaKeySession: close() method" } ], "dom-mediakeysession-closed": [ @@ -301,7 +610,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.closed" + "title": "MediaKeySession: closed property" } ], "dom-mediakeysession-expiration": [ @@ -346,7 +655,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.expiration" + "title": "MediaKeySession: expiration property" } ], "dom-mediakeysession-generaterequest": [ @@ -391,7 +700,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.generateRequest()" + "title": "MediaKeySession: generateRequest() method" } ], "dom-mediakeysession-keystatuses": [ @@ -436,7 +745,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.keyStatuses" + "title": "MediaKeySession: keyStatuses property" } ], "dom-mediakeysession-onkeystatuseschange": [ @@ -548,7 +857,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.load()" + "title": "MediaKeySession: load() method" } ], "dom-mediakeysession-onmessage": [ @@ -660,7 +969,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.remove()" + "title": "MediaKeySession: remove() method" } ], "dom-mediakeysession-sessionid": [ @@ -705,7 +1014,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.sessionId" + "title": "MediaKeySession: sessionId property" } ], "dom-mediakeysession-update": [ @@ -750,7 +1059,7 @@ "version_added": "79" } }, - "title": "MediaKeySession.update()" + "title": "MediaKeySession: update() method" } ], "mediakeysession-interface": [ @@ -764,7 +1073,7 @@ "name": "MediaKeySession", "slug": "API/MediaKeySession", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaKeySession", - "summary": "The MediaKeySession interface of the EncryptedMediaExtensions API represents a context for message exchange with a content decryption module (CDM).", + "summary": "The MediaKeySession interface of the Encrypted Media Extensions API represents a context for message exchange with a content decryption module (CDM).", "support": { "chrome": { "version_added": "42" @@ -840,7 +1149,7 @@ "version_added": "79" } }, - "title": "MediaKeyStatusMap.get()" + "title": "MediaKeyStatusMap: get() method" } ], "dom-mediakeystatusmap-has": [ @@ -885,7 +1194,7 @@ "version_added": "79" } }, - "title": "MediaKeyStatusMap.has()" + "title": "MediaKeyStatusMap: has() method" } ], "dom-mediakeystatusmap-size": [ @@ -930,7 +1239,7 @@ "version_added": "79" } }, - "title": "MediaKeyStatusMap.size" + "title": "MediaKeyStatusMap: size property" } ], "mediakeystatusmap-interface": [ @@ -944,7 +1253,7 @@ "name": "MediaKeyStatusMap", "slug": "API/MediaKeyStatusMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaKeyStatusMap", - "summary": "The MediaKeyStatusMap interface of the EncryptedMediaExtensions API is a read-only map of media key statuses by key IDs.", + "summary": "The MediaKeyStatusMap interface of the Encrypted Media Extensions API is a read-only map of media key statuses by key IDs.", "support": { "chrome": { "version_added": "42" @@ -1020,7 +1329,7 @@ "version_added": "79" } }, - "title": "MediaKeySystemAccess.createMediaKeys()" + "title": "MediaKeySystemAccess: createMediaKeys() method" } ], "dom-mediakeysystemaccess-getconfiguration": [ @@ -1066,7 +1375,7 @@ "version_added": "79" } }, - "title": "MediaKeySystemAccess.getConfiguration()" + "title": "MediaKeySystemAccess: getConfiguration() method" } ], "dom-mediakeysystemaccess-keysystem": [ @@ -1111,7 +1420,7 @@ "version_added": "79" } }, - "title": "MediaKeySystemAccess.keySystem" + "title": "MediaKeySystemAccess: keySystem property" } ], "mediakeysystemaccess-interface": [ @@ -1125,7 +1434,7 @@ "name": "MediaKeySystemAccess", "slug": "API/MediaKeySystemAccess", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaKeySystemAccess", - "summary": "The MediaKeySystemAccess interface of the EncryptedMediaExtensions API provides access to a Key System for decryption and/or a content protection provider. You can request an instance of this object using the Navigator.requestMediaKeySystemAccess() method.", + "summary": "The MediaKeySystemAccess interface of the Encrypted Media Extensions API provides access to a Key System for decryption and/or a content protection provider. You can request an instance of this object using the Navigator.requestMediaKeySystemAccess() method.", "support": { "chrome": { "version_added": "42" @@ -1201,7 +1510,7 @@ "version_added": "79" } }, - "title": "MediaKeys.createSession()" + "title": "MediaKeys: createSession() method" } ], "dom-mediakeys-setservercertificate": [ @@ -1246,7 +1555,7 @@ "version_added": "79" } }, - "title": "MediaKeys.setServerCertificate()" + "title": "MediaKeys: setServerCertificate() method" } ], "mediakeys-interface": [ @@ -1260,7 +1569,7 @@ "name": "MediaKeys", "slug": "API/MediaKeys", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaKeys", - "summary": "The MediaKeys interface of EncryptedMediaExtensions API represents a set of keys that an associated HTMLMediaElement can use for decryption of media data during playback.", + "summary": "The MediaKeys interface of Encrypted Media Extensions API represents a set of keys that an associated HTMLMediaElement can use for decryption of media data during playback.", "support": { "chrome": { "version_added": "42" @@ -1359,7 +1668,7 @@ ] } }, - "title": "Navigator.requestMediaKeySystemAccess()" + "title": "Navigator: requestMediaKeySystemAccess() method" } ], "permissions-policy-integration": [ @@ -1375,7 +1684,7 @@ "name": "encrypted-media", "slug": "HTTP/Headers/Feature-Policy/encrypted-media", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/encrypted-media", - "summary": "The HTTP Feature-Policy header encrypted-media directive controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is enabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a DOMException.", + "summary": "The HTTP Permissions-Policy header encrypted-media directive controls whether the current document is allowed to use the Encrypted Media Extensions API (EME).", "support": { "chrome": { "version_added": "60" @@ -1413,7 +1722,71 @@ "version_added": "79" } }, - "title": "Feature-Policy: encrypted-media" + "title": "Permissions-Policy: encrypted-media" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "encrypted-media", + "slug": "HTTP/Headers/Permissions-Policy/encrypted-media", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/encrypted-media", + "summary": "The HTTP Permissions-Policy header encrypted-media directive controls whether the current document is allowed to use the Encrypted Media Extensions API (EME).", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: encrypted-media", + "flags": [ + { + "type": "preference", + "name": "dom.security.featurePolicy.header.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "48" + }, + "opera_android": { + "version_added": "45" + }, + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: encrypted-media" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/entries-api.json b/bikeshed/spec-data/readonly/mdn/entries-api.json index 1783b81538..0bbb4f3447 100644 --- a/bikeshed/spec-data/readonly/mdn/entries-api.json +++ b/bikeshed/spec-data/readonly/mdn/entries-api.json @@ -22,7 +22,9 @@ "firefox": { "version_added": "50" }, - "firefox_android": "mirror", + "firefox_android": { + "version_added": false + }, "ie": { "version_added": false }, @@ -34,14 +36,12 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "DataTransferItem.webkitGetAsEntry()" + "title": "DataTransferItem: webkitGetAsEntry() method" } ], "dom-file-webkitrelativepath": [ @@ -68,7 +68,7 @@ "version_added": "13" }, "firefox": { - "version_added": "49" + "version_added": "50" }, "firefox_android": "mirror", "ie": { @@ -89,7 +89,7 @@ "version_added": "79" } }, - "title": "File.webkitRelativePath" + "title": "File: webkitRelativePath property" } ], "dom-filesystem-name": [ @@ -134,7 +134,7 @@ "version_added": "79" } }, - "title": "FileSystem.name" + "title": "FileSystem: name property" } ], "dom-filesystem-root": [ @@ -179,7 +179,7 @@ "version_added": "79" } }, - "title": "FileSystem.root" + "title": "FileSystem: root property" } ], "api-domfilesystem": [ @@ -256,9 +256,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -271,7 +269,7 @@ "version_added": "79" } }, - "title": "FileSystemDirectoryEntry.createReader()" + "title": "FileSystemDirectoryEntry: createReader() method" } ], "dom-filesystemdirectoryentry-getdirectory": [ @@ -304,9 +302,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -319,7 +315,7 @@ "version_added": "79" } }, - "title": "FileSystemDirectoryEntry.getDirectory()" + "title": "FileSystemDirectoryEntry: getDirectory() method" } ], "dom-filesystemdirectoryentry-getfile": [ @@ -352,9 +348,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -367,7 +361,7 @@ "version_added": "79" } }, - "title": "FileSystemDirectoryEntry.getFile()" + "title": "FileSystemDirectoryEntry: getFile() method" } ], "api-directoryentry": [ @@ -397,9 +391,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -442,9 +434,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -457,7 +447,7 @@ "version_added": "79" } }, - "title": "FileSystemDirectoryReader.readEntries()" + "title": "FileSystemDirectoryReader: readEntries() method" } ], "api-directoryreader": [ @@ -489,9 +479,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -536,9 +524,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -551,7 +537,7 @@ "version_added": "79" } }, - "title": "FileSystemEntry.filesystem" + "title": "FileSystemEntry: filesystem property" } ], "dom-filesystementry-fullpath": [ @@ -583,9 +569,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -598,7 +582,7 @@ "version_added": "79" } }, - "title": "FileSystemEntry.fullPath" + "title": "FileSystemEntry: fullPath property" } ], "dom-filesystementry-getparent": [ @@ -630,9 +614,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -645,7 +627,7 @@ "version_added": "79" } }, - "title": "FileSystemEntry.getParent()" + "title": "FileSystemEntry: getParent() method" } ], "dom-filesystementry-isdirectory": [ @@ -677,9 +659,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -692,7 +672,7 @@ "version_added": "79" } }, - "title": "FileSystemEntry.isDirectory" + "title": "FileSystemEntry: isDirectory property" } ], "dom-filesystementry-isfile": [ @@ -724,9 +704,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -739,7 +717,7 @@ "version_added": "79" } }, - "title": "FileSystemEntry.isFile" + "title": "FileSystemEntry: isFile property" } ], "dom-filesystementry-name": [ @@ -771,9 +749,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -786,7 +762,7 @@ "version_added": "79" } }, - "title": "FileSystemEntry.name" + "title": "FileSystemEntry: name property" } ], "api-entry": [ @@ -818,9 +794,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -865,9 +839,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -880,7 +852,7 @@ "version_added": "79" } }, - "title": "FileSystemFileEntry.file()" + "title": "FileSystemFileEntry: file() method" } ], "api-fileentry": [ @@ -912,9 +884,7 @@ "opera": { "version_added": false }, - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "11.1" }, @@ -944,7 +914,7 @@ "summary": "The HTMLInputElement.webkitdirectory is a property that reflects the webkitdirectory HTML attribute and indicates that the <input> element should let the user select directories instead of files. When a directory is selected, the directory and its entire hierarchy of contents are included in the set of selected items. The selected file system entries can be obtained using the webkitEntries property.", "support": { "chrome": { - "version_added": "6" + "version_added": "7" }, "chrome_android": "mirror", "edge": { @@ -976,7 +946,7 @@ "feature": "input-file-directory", "title": "Directory selection from file input" }, - "title": "HTMLInputElement.webkitdirectory" + "title": "HTMLInputElement: webkitdirectory property" } ], "dom-htmlinputelement-webkitentries": [ @@ -1014,12 +984,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "HTMLInputElement.webkitEntries" + "title": "HTMLInputElement: webkitEntries property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/event-timing.json b/bikeshed/spec-data/readonly/mdn/event-timing.json index eb54078094..5bfd302306 100644 --- a/bikeshed/spec-data/readonly/mdn/event-timing.json +++ b/bikeshed/spec-data/readonly/mdn/event-timing.json @@ -9,7 +9,7 @@ "name": "EventCounts", "slug": "API/EventCounts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/EventCounts", - "summary": "The EventCounts interface is a read-only map where the keys are event types and the values are the number of events that have been dispatched for that event type.", + "summary": "The EventCounts interface of the Performance API provides the number of events that have been dispatched for each event type.", "support": { "chrome": { "version_added": "85" @@ -82,7 +82,7 @@ "version_added": "85" } }, - "title": "Performance.eventCounts" + "title": "Performance: eventCounts property" } ], "dom-performanceeventtiming-cancelable": [ @@ -122,7 +122,7 @@ "version_added": "79" } }, - "title": "PerformanceEventTiming.cancelable" + "title": "PerformanceEventTiming: cancelable property" } ], "dom-performanceeventtiming-interactionid": [ @@ -161,7 +161,7 @@ "version_added": "96" } }, - "title": "PerformanceEventTiming.interactionId" + "title": "PerformanceEventTiming: interactionId property" } ], "dom-performanceeventtiming-processingend": [ @@ -201,7 +201,7 @@ "version_added": "79" } }, - "title": "PerformanceEventTiming.processingEnd" + "title": "PerformanceEventTiming: processingEnd property" } ], "dom-performanceeventtiming-processingstart": [ @@ -241,7 +241,7 @@ "version_added": "79" } }, - "title": "PerformanceEventTiming.processingStart" + "title": "PerformanceEventTiming: processingStart property" } ], "dom-performanceeventtiming-target": [ @@ -281,7 +281,7 @@ "version_added": "85" } }, - "title": "PerformanceEventTiming.target" + "title": "PerformanceEventTiming: target property" } ], "dom-performanceeventtiming-tojson": [ @@ -294,7 +294,7 @@ "name": "toJSON", "slug": "API/PerformanceEventTiming/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEventTiming/toJSON", - "summary": "The toJSON() method is a serializer; it returns a JSON representation of the performance event timing entry object.", + "summary": "The toJSON() method of the PerformanceEventTiming interface is a serializer; it returns a JSON representation of the PerformanceEventTiming object.", "support": { "chrome": { "version_added": "76" @@ -321,7 +321,7 @@ "version_added": "79" } }, - "title": "PerformanceEventTiming.toJSON()" + "title": "PerformanceEventTiming: toJSON() method" } ], "sec-performance-event-timing": [ diff --git a/bikeshed/spec-data/readonly/mdn/eyedropper-api.json b/bikeshed/spec-data/readonly/mdn/eyedropper-api.json index 587be10bc2..caa8f3a49c 100644 --- a/bikeshed/spec-data/readonly/mdn/eyedropper-api.json +++ b/bikeshed/spec-data/readonly/mdn/eyedropper-api.json @@ -37,7 +37,7 @@ "version_added": "95" } }, - "title": "EyeDropper()" + "title": "EyeDropper: EyeDropper() constructor" }, { "engines": [ @@ -88,7 +88,7 @@ "name": "open", "slug": "API/EyeDropper/open", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/EyeDropper/open", - "summary": "The EyeDropper.open() method starts the eyedropper mode, returning a promise which is fulfilled once the user has either selected a color or dismissed the eyedropper mode.", + "summary": "The EyeDropper.open() method starts the eyedropper mode, returning a promise which is fulfilled once the user has selected a color and exited the eyedropper mode.", "support": { "chrome": { "version_added": "95" @@ -117,7 +117,7 @@ "version_added": "95" } }, - "title": "EyeDropper.open()" + "title": "EyeDropper: open() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/fedcm.json b/bikeshed/spec-data/readonly/mdn/fedcm.json new file mode 100644 index 0000000000..38d45e579e --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/fedcm.json @@ -0,0 +1,119 @@ +{ + "dom-identitycredential-token": [ + { + "engines": [ + "blink" + ], + "filename": "api/IdentityCredential.json", + "name": "token", + "slug": "API/IdentityCredential/token", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IdentityCredential/token", + "summary": "The token read-only property of the IdentityCredential interface returns the token used to validate the associated sign-in.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "IdentityCredential: token property" + } + ], + "browser-api-identity-credential-interface": [ + { + "engines": [ + "blink" + ], + "filename": "api/IdentityCredential.json", + "name": "IdentityCredential", + "slug": "API/IdentityCredential", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IdentityCredential", + "summary": "The IdentityCredential interface of the Federated Credential Management API (FedCM) represents a user identity credential arising from a successful federated sign-in.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "IdentityCredential" + } + ], + "permissions-policy-integration": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "identity-credentials-get", + "slug": "HTTP/Headers/Permissions-Policy/identity-credentials-get", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/identity-credentials-get", + "summary": "The HTTP Permissions-Policy header identity-credentials-get directive controls whether the current document is allowed to use the Federated Credential Management API (FedCM), and more specifically the navigator.credentials.get() method with an identity option.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "Permissions-Policy: identity-credentials-get" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/fetch-metadata.json b/bikeshed/spec-data/readonly/mdn/fetch-metadata.json index 507ce864f2..5fd213d403 100644 --- a/bikeshed/spec-data/readonly/mdn/fetch-metadata.json +++ b/bikeshed/spec-data/readonly/mdn/fetch-metadata.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "http/headers/Sec-Fetch-Dest.json", "name": "Sec-Fetch-Dest", @@ -29,7 +30,7 @@ "version_added": false }, "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -45,7 +46,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "http/headers/Sec-Fetch-Mode.json", "name": "Sec-Fetch-Mode", @@ -69,7 +71,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -85,7 +87,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "http/headers/Sec-Fetch-Site.json", "name": "Sec-Fetch-Site", @@ -109,7 +112,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -125,7 +128,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "http/headers/Sec-Fetch-User.json", "name": "Sec-Fetch-User", @@ -149,7 +153,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/fetch.json b/bikeshed/spec-data/readonly/mdn/fetch.json index f6173407b3..657e42adf0 100644 --- a/bikeshed/spec-data/readonly/mdn/fetch.json +++ b/bikeshed/spec-data/readonly/mdn/fetch.json @@ -25,12 +25,13 @@ "firefox": { "version_added": "39" }, - "firefox_android": { - "version_added": "44" - }, + "firefox_android": "mirror", "ie": { "version_added": false }, + "nodejs": { + "version_added": "18.0.0" + }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", @@ -44,7 +45,7 @@ "version_added": "79" } }, - "title": "Headers()" + "title": "Headers: Headers() constructor" } ], "ref-for-dom-headers-append①": [ @@ -73,12 +74,13 @@ "firefox": { "version_added": "39" }, - "firefox_android": { - "version_added": "44" - }, + "firefox_android": "mirror", "ie": { "version_added": false }, + "nodejs": { + "version_added": "18.0.0" + }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", @@ -92,7 +94,7 @@ "version_added": "79" } }, - "title": "Headers.append()" + "title": "Headers: append() method" } ], "ref-for-dom-headers-delete①": [ @@ -121,12 +123,13 @@ "firefox": { "version_added": "39" }, - "firefox_android": { - "version_added": "44" - }, + "firefox_android": "mirror", "ie": { "version_added": false }, + "nodejs": { + "version_added": "18.0.0" + }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", @@ -140,7 +143,7 @@ "version_added": "79" } }, - "title": "Headers.delete()" + "title": "Headers: delete() method" } ], "ref-for-dom-headers-get①": [ @@ -171,13 +174,13 @@ "version_added": "39", "notes": "Before version 52, <code>get()</code> returns only the first value for the specified header." }, - "firefox_android": { - "version_added": "44", - "notes": "Before version 52, <code>get()</code> returns only the first value for the specified header." - }, + "firefox_android": "mirror", "ie": { "version_added": false }, + "nodejs": { + "version_added": "18.0.0" + }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", @@ -192,7 +195,54 @@ "notes": "Before version 57, <code>get()</code> returns only the first value for the specified header." } }, - "title": "Headers.get()" + "title": "Headers: get() method" + } + ], + "dom-headers-getsetcookie": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Headers.json", + "name": "getSetCookie", + "slug": "API/Headers/getSetCookie", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Headers/getSetCookie", + "summary": "The getSetCookie() method of the Headers interface returns an array containing the values of all Set-Cookie headers associated with a response. This allows Headers objects to handle having multiple Set-Cookie headers, which wasn't possible prior to its implementation.", + "support": { + "chrome": { + "version_added": "113" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.35" + }, + "edge": "mirror", + "firefox": { + "version_added": "112" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "19.7.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113" + } + }, + "title": "Headers: getSetCookie() method" } ], "ref-for-dom-headers-has①": [ @@ -221,12 +271,13 @@ "firefox": { "version_added": "39" }, - "firefox_android": { - "version_added": "44" - }, + "firefox_android": "mirror", "ie": { "version_added": false }, + "nodejs": { + "version_added": "18.0.0" + }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", @@ -240,7 +291,7 @@ "version_added": "79" } }, - "title": "Headers.has()" + "title": "Headers: has() method" } ], "ref-for-dom-headers-set①": [ @@ -269,12 +320,13 @@ "firefox": { "version_added": "39" }, - "firefox_android": { - "version_added": "44" - }, + "firefox_android": "mirror", "ie": { "version_added": false }, + "nodejs": { + "version_added": "18.0.0" + }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", @@ -288,7 +340,7 @@ "version_added": "79" } }, - "title": "Headers.set()" + "title": "Headers: set() method" } ], "headers-class": [ @@ -317,9 +369,7 @@ "firefox": { "version_added": "39" }, - "firefox_android": { - "version_added": "44" - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -412,7 +462,7 @@ "notes": "From Chrome 47, default values for the <code>init</code> argument's properties changed. <code>mode</code> defaults to <code>same-origin</code> (from <code>no-cors</code>). <code>credentials</code> defaults to <code>include</code> (from <code>same-origin</code>). <code>redirect</code> defaults to <code>follow</code> (from <code>manual</code>)." } }, - "title": "Request()" + "title": "Request: Request() constructor" } ], "ref-for-dom-body-arraybuffer①": [ @@ -458,7 +508,7 @@ "version_added": "79" } }, - "title": "Request.arrayBuffer()" + "title": "Request: arrayBuffer() method" }, { "engines": [ @@ -502,7 +552,7 @@ "version_added": "79" } }, - "title": "Response.arrayBuffer()" + "title": "Response: arrayBuffer() method" } ], "ref-for-dom-body-blob①": [ @@ -548,7 +598,7 @@ "version_added": "79" } }, - "title": "Request.blob()" + "title": "Request: blob() method" }, { "engines": [ @@ -592,7 +642,7 @@ "version_added": "79" } }, - "title": "Response.blob()" + "title": "Response: blob() method" } ], "ref-for-dom-body-body①": [ @@ -605,7 +655,7 @@ "name": "body", "slug": "API/Request/body", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Request/body", - "summary": "The read-only body property of the Request interface contains a ReadableStream with the body contents that have been added to the request. Note that a request using the GET or HEAD method cannot have a body and null is return in these cases.", + "summary": "The read-only body property of the Request interface contains a ReadableStream with the body contents that have been added to the request. Note that a request using the GET or HEAD method cannot have a body and null is returned in these cases.", "support": { "chrome": { "version_added": "105", @@ -638,7 +688,7 @@ "impl_url": "https://crbug.com/688906" } }, - "title": "Request.body" + "title": "Request: body property" }, { "engines": [ @@ -682,7 +732,7 @@ "version_added": "79" } }, - "title": "Response.body" + "title": "Response: body property" } ], "ref-for-dom-body-bodyused①": [ @@ -728,7 +778,7 @@ "version_added": "79" } }, - "title": "Request.bodyUsed" + "title": "Request: bodyUsed property" }, { "engines": [ @@ -772,7 +822,7 @@ "version_added": "79" } }, - "title": "Response.bodyUsed" + "title": "Response: bodyUsed property" } ], "ref-for-dom-request-cache②": [ @@ -818,7 +868,7 @@ "version_added": "79" } }, - "title": "Request.cache" + "title": "Request: cache property" } ], "ref-for-dom-request-clone①": [ @@ -864,7 +914,7 @@ "version_added": "79" } }, - "title": "Request.clone()" + "title": "Request: clone() method" } ], "ref-for-dom-request-credentials②": [ @@ -910,7 +960,7 @@ "version_added": "79" } }, - "title": "Request.credentials" + "title": "Request: credentials property" } ], "ref-for-dom-request-destination①": [ @@ -956,7 +1006,7 @@ "version_added": "79" } }, - "title": "Request.destination" + "title": "Request: destination property" } ], "ref-for-dom-body-formdata①": [ @@ -1007,7 +1057,7 @@ "version_added": "79" } }, - "title": "Request.formData()" + "title": "Request: formData() method" }, { "engines": [ @@ -1056,7 +1106,7 @@ "version_added": "79" } }, - "title": "Response.formData()" + "title": "Response: formData() method" } ], "ref-for-dom-request-headers②": [ @@ -1102,7 +1152,7 @@ "version_added": "79" } }, - "title": "Request.headers" + "title": "Request: headers property" } ], "ref-for-dom-request-integrity②": [ @@ -1148,7 +1198,7 @@ "version_added": "79" } }, - "title": "Request.integrity" + "title": "Request: integrity property" } ], "ref-for-dom-body-json①": [ @@ -1194,7 +1244,7 @@ "version_added": "79" } }, - "title": "Request.json()" + "title": "Request: json() method" }, { "engines": [ @@ -1238,7 +1288,7 @@ "version_added": "79" } }, - "title": "Response.json()" + "title": "Response: json() method" } ], "ref-for-dom-request-method②": [ @@ -1284,7 +1334,7 @@ "version_added": "79" } }, - "title": "Request.method" + "title": "Request: method property" } ], "ref-for-dom-request-mode②": [ @@ -1330,7 +1380,7 @@ "version_added": "79" } }, - "title": "Request.mode" + "title": "Request: mode property" } ], "ref-for-dom-request-redirect②": [ @@ -1377,7 +1427,7 @@ "version_added": "79" } }, - "title": "Request.redirect" + "title": "Request: redirect property" } ], "ref-for-dom-request-referrer①": [ @@ -1423,7 +1473,7 @@ "version_added": "79" } }, - "title": "Request.referrer" + "title": "Request: referrer property" } ], "ref-for-dom-request-referrerpolicy②": [ @@ -1471,7 +1521,53 @@ "version_added": "79" } }, - "title": "Request.referrerPolicy" + "title": "Request: referrerPolicy property" + } + ], + "ref-for-dom-request-signal②": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Request.json", + "name": "signal", + "slug": "API/Request/signal", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Request/signal", + "summary": "The read-only signal property of the Request interface returns the AbortSignal associated with the request.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.11" + }, + "edge": { + "version_added": "16" + }, + "firefox": { + "version_added": "57" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Request: signal property" } ], "ref-for-dom-body-text①": [ @@ -1517,7 +1613,7 @@ "version_added": "79" } }, - "title": "Request.text()" + "title": "Request: text() method" }, { "engines": [ @@ -1561,7 +1657,7 @@ "version_added": "79" } }, - "title": "Response.text()" + "title": "Response: text() method" } ], "ref-for-dom-request-url③": [ @@ -1612,7 +1708,7 @@ "notes": "Fragment support added in Chrome 59." } }, - "title": "Request.url" + "title": "Request: url property" } ], "request-class": [ @@ -1743,7 +1839,7 @@ "version_added": "79" } }, - "title": "Response()" + "title": "Response: Response() constructor" } ], "ref-for-dom-response-clone①": [ @@ -1789,7 +1885,7 @@ "version_added": "79" } }, - "title": "Response.clone()" + "title": "Response: clone() method" } ], "ref-for-dom-response-error①": [ @@ -1800,10 +1896,10 @@ "webkit" ], "filename": "api/Response.json", - "name": "error", - "slug": "API/Response/error", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Response/error", - "summary": "The error() method of the Response interface returns a new Response object associated with a network error.", + "name": "error_static", + "slug": "API/Response/error_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Response/error_static", + "summary": "The error() static method of the Response interface returns a new Response object associated with a network error.", "support": { "chrome": { "version_added": "43" @@ -1835,7 +1931,7 @@ "version_added": "79" } }, - "title": "Response.error()" + "title": "Response: error() static method" } ], "ref-for-dom-response-headers①": [ @@ -1881,7 +1977,50 @@ "version_added": "79" } }, - "title": "Response.headers" + "title": "Response: headers property" + } + ], + "ref-for-dom-response-json①": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/Response.json", + "name": "json_static", + "slug": "API/Response/json_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Response/json_static", + "summary": "The json() static method of the Response interface returns a Response that contains the provided JSON data as body, and a Content-Type header which is set to application/json. The response status, status message, and additional headers can also be set.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.22" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "Response: json() static method" } ], "ref-for-dom-response-ok②": [ @@ -1927,7 +2066,7 @@ "version_added": "79" } }, - "title": "Response.ok" + "title": "Response: ok property" } ], "ref-for-dom-response-redirect①": [ @@ -1938,10 +2077,10 @@ "webkit" ], "filename": "api/Response.json", - "name": "redirect", - "slug": "API/Response/redirect", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Response/redirect", - "summary": "The redirect() method of the Response interface returns a Response resulting in a redirect to the specified URL.", + "name": "redirect_static", + "slug": "API/Response/redirect_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Response/redirect_static", + "summary": "The redirect() static method of the Response interface returns a Response resulting in a redirect to the specified URL.", "support": { "chrome": { "version_added": "44" @@ -1973,7 +2112,7 @@ "version_added": "79" } }, - "title": "Response.redirect()" + "title": "Response: redirect() static method" } ], "ref-for-dom-response-redirected①": [ @@ -2023,7 +2162,7 @@ "version_added": "79" } }, - "title": "Response.redirected" + "title": "Response: redirected property" } ], "ref-for-dom-response-status①": [ @@ -2069,7 +2208,7 @@ "version_added": "79" } }, - "title": "Response.status" + "title": "Response: status property" } ], "ref-for-dom-response-statustext①": [ @@ -2115,7 +2254,7 @@ "version_added": "79" } }, - "title": "Response.statusText" + "title": "Response: statusText property" } ], "ref-for-dom-response-type①": [ @@ -2161,7 +2300,7 @@ "version_added": "79" } }, - "title": "Response.type" + "title": "Response: type property" } ], "ref-for-dom-response-url①": [ @@ -2207,7 +2346,7 @@ "version_added": "79" } }, - "title": "Response.url" + "title": "Response: url property" } ], "response-class": [ @@ -2362,7 +2501,7 @@ "version_added": "79" } }, - "title": "fetch()" + "title": "fetch() global function" } ], "http-access-control-allow-credentials": [ @@ -2882,6 +3021,50 @@ "title": "Origin" } ], + "sec-purpose-header": [ + { + "engines": [ + "gecko" + ], + "filename": "http/headers/Sec-Purpose.json", + "name": "Sec-Purpose", + "slug": "HTTP/Headers/Sec-Purpose", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Purpose", + "summary": "The Sec-Purpose fetch metadata request header indicates the purpose for which the requested resource will be used, when that purpose is something other than immediate use by the user-agent.", + "support": { + "chrome": { + "version_added": false, + "notes": "Chrome uses the legacy <code>Purpose: prefetch</code> header to indicate a request is a prefetch. See <a href='https://crbug.com/1358419'>bug 1358419</a>." + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "115", + "notes": "<code>Sec-Purpose: prefetch</code> replaces the non-standard <code>X-moz: prefetch</code> header that was used to indicate a prefetch request in earlier versions. Prefetch requests should also include the header <code>Accept</code> header string for navigations, but <code>Accept: */*</code> is sent instead." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false, + "notes": "Chrome uses the legacy <code>Purpose: prefetch</code> header to indicate a request is a prefetch. See <a href='https://crbug.com/1358419'>bug 1358419</a>." + } + }, + "title": "Sec-Purpose" + } + ], "x-content-type-options-header": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/file-system-access.json b/bikeshed/spec-data/readonly/mdn/file-system-access.json index 21d1d5e28d..5d0d88bb68 100644 --- a/bikeshed/spec-data/readonly/mdn/file-system-access.json +++ b/bikeshed/spec-data/readonly/mdn/file-system-access.json @@ -37,7 +37,7 @@ "version_added": "86" } }, - "title": "DataTransferItem.getAsFileSystemHandle()" + "title": "DataTransferItem: getAsFileSystemHandle() method" } ], "api-filesystemhandle-querypermission": [ @@ -65,9 +65,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, @@ -80,7 +78,7 @@ "version_added": "86" } }, - "title": "FileSystemHandle.queryPermission()" + "title": "FileSystemHandle: queryPermission() method" } ], "api-filesystemhandle-requestpermission": [ @@ -108,9 +106,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, @@ -123,7 +119,7 @@ "version_added": "86" } }, - "title": "FileSystemHandle.requestPermission()" + "title": "FileSystemHandle: requestPermission() method" } ], "api-showdirectorypicker": [ @@ -164,7 +160,7 @@ "version_added": "86" } }, - "title": "Window.showDirectoryPicker()" + "title": "Window: showDirectoryPicker() method" } ], "api-showopenfilepicker": [ @@ -205,7 +201,7 @@ "version_added": "86" } }, - "title": "Window.showOpenFilePicker()" + "title": "Window: showOpenFilePicker() method" } ], "api-showsavefilepicker": [ @@ -246,7 +242,7 @@ "version_added": "86" } }, - "title": "Window.showSaveFilePicker()" + "title": "Window: showSaveFilePicker() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/file-system.json b/bikeshed/spec-data/readonly/mdn/file-system.json index a6e3a0b7b0..75f006e35b 100644 --- a/bikeshed/spec-data/readonly/mdn/file-system.json +++ b/bikeshed/spec-data/readonly/mdn/file-system.json @@ -3,6 +3,7 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -17,7 +18,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -25,9 +26,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -40,11 +39,12 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.entries()" + "title": "FileSystemDirectoryHandle: entries() method" }, { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -59,7 +59,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -67,9 +67,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -82,11 +80,12 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.keys()" + "title": "FileSystemDirectoryHandle: keys() method" }, { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -101,7 +100,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -109,9 +108,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -124,13 +121,14 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.values()" + "title": "FileSystemDirectoryHandle: values() method" } ], "api-filesystemdirectoryhandle-getdirectoryhandle": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -145,7 +143,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -153,9 +151,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -168,13 +164,14 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.getDirectoryHandle()" + "title": "FileSystemDirectoryHandle: getDirectoryHandle() method" } ], "api-filesystemdirectoryhandle-getfilehandle": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -189,7 +186,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -197,9 +194,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -212,13 +207,14 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.getFileHandle()" + "title": "FileSystemDirectoryHandle: getFileHandle() method" } ], "api-filesystemdirectoryhandle-removeentry": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -233,7 +229,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -241,9 +237,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -256,13 +250,14 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.removeEntry()" + "title": "FileSystemDirectoryHandle: removeEntry() method" } ], "api-filesystemdirectoryhandle-resolve": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", @@ -277,7 +272,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -285,9 +280,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -300,20 +293,21 @@ "version_added": "86" } }, - "title": "FileSystemDirectoryHandle.resolve()" + "title": "FileSystemDirectoryHandle: resolve() method" } ], "api-filesystemdirectoryhandle": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemDirectoryHandle.json", "name": "FileSystemDirectoryHandle", "slug": "API/FileSystemDirectoryHandle", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryHandle", - "summary": "The FileSystemDirectoryHandle interface of the File System Access API provides a handle to a file system directory. The interface is accessed via the window.showDirectoryPicker() method.", + "summary": "The FileSystemDirectoryHandle interface of the File System Access API provides a handle to a file system directory.", "support": { "chrome": { "version_added": "86" @@ -321,7 +315,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -329,9 +323,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -347,13 +339,56 @@ "title": "FileSystemDirectoryHandle" } ], - "api-filesystemfilehandle-createwritable": [ + "api-filesystemfilehandle-createsyncaccesshandle": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemFileHandle.json", + "name": "createSyncAccessHandle", + "slug": "API/FileSystemFileHandle/createSyncAccessHandle", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/createSyncAccessHandle", + "summary": "The createSyncAccessHandle() method of the FileSystemFileHandle interface returns a Promise which resolves to a FileSystemSyncAccessHandle object that can be used to synchronously read from and write to a file. The synchronous nature of this method brings performance advantages, but it is only usable inside dedicated Web Workers for files within the origin private file system.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemFileHandle: createSyncAccessHandle() method" + } + ], + "api-filesystemfilehandle-createwritable": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/FileSystemFileHandle.json", "name": "createWritable", "slug": "API/FileSystemFileHandle/createWritable", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/createWritable", @@ -365,7 +400,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -373,15 +408,11 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { - "version_added": "preview" - }, - "safari_ios": { "version_added": false }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": false @@ -390,13 +421,14 @@ "version_added": "86" } }, - "title": "FileSystemFileHandle.createWritable()" + "title": "FileSystemFileHandle: createWritable() method" } ], "api-filesystemfilehandle-getfile": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemFileHandle.json", @@ -411,7 +443,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -419,9 +451,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -434,13 +464,14 @@ "version_added": "86" } }, - "title": "FileSystemFileHandle.getFile()" + "title": "FileSystemFileHandle: getFile() method" } ], "api-filesystemfilehandle": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemFileHandle.json", @@ -455,7 +486,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -463,17 +494,13 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, + "webview_android": "mirror", "edge_blink": { "version_added": "86" } @@ -485,6 +512,7 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemHandle.json", @@ -499,7 +527,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -507,9 +535,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -522,13 +548,14 @@ "version_added": "86" } }, - "title": "FileSystemHandle.isSameEntry()" + "title": "FileSystemHandle: isSameEntry() method" } ], "ref-for-dom-filesystemhandle-kind①": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemHandle.json", @@ -543,7 +570,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -551,9 +578,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -566,13 +591,14 @@ "version_added": "86" } }, - "title": "FileSystemHandle.kind" + "title": "FileSystemHandle: kind property" } ], "ref-for-dom-filesystemhandle-name①": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemHandle.json", @@ -587,7 +613,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -595,9 +621,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -610,13 +634,14 @@ "version_added": "86" } }, - "title": "FileSystemHandle.name" + "title": "FileSystemHandle: name property" } ], "api-filesystemhandle": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/FileSystemHandle.json", @@ -631,7 +656,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -639,9 +664,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": "15.2" }, @@ -657,10 +680,312 @@ "title": "FileSystemHandle" } ], + "api-filesystemsyncaccesshandle-close": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "close", + "slug": "API/FileSystemSyncAccessHandle/close", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle/close", + "summary": "The close() method of the FileSystemSyncAccessHandle interface closes an open synchronous file handle, disabling any further operations on it and releasing the exclusive lock previously put on the file associated with the file handle.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle: close() method" + } + ], + "api-filesystemsyncaccesshandle-flush": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "flush", + "slug": "API/FileSystemSyncAccessHandle/flush", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle/flush", + "summary": "The flush() method of the FileSystemSyncAccessHandle interface persists any changes made to the file associated with the handle via the write() method to disk.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle: flush() method" + } + ], + "api-filesystemsyncaccesshandle-getsize": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "getSize", + "slug": "API/FileSystemSyncAccessHandle/getSize", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle/getSize", + "summary": "The getSize() method of the FileSystemSyncAccessHandle interface returns the size of the file associated with the handle in bytes.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle: getSize() method" + } + ], + "api-filesystemsyncaccesshandle-read": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "read", + "slug": "API/FileSystemSyncAccessHandle/read", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle/read", + "summary": "The read() method of the FileSystemSyncAccessHandle interface reads the content of the file associated with the handle into a specified buffer, optionally at a given offset.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle: read() method" + } + ], + "api-filesystemsyncaccesshandle-truncate": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "truncate", + "slug": "API/FileSystemSyncAccessHandle/truncate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle/truncate", + "summary": "The truncate() method of the FileSystemSyncAccessHandle interface resizes the file associated with the handle to a specified number of bytes.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle: truncate() method" + } + ], + "api-filesystemsyncaccesshandle-write": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "write", + "slug": "API/FileSystemSyncAccessHandle/write", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle/write", + "summary": "The write() method of the FileSystemSyncAccessHandle interface writes the content of a specified buffer to the file associated with the handle, optionally at a given offset. Note that you cannot directly manipulate the contents of an ArrayBuffer. Instead, you create one of the typed array objects like an Int8Array or a DataView object which represents the buffer in a specific format, and use that to read and write the contents of the buffer.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle: write() method" + } + ], + "api-filesystemsyncaccesshandle": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileSystemSyncAccessHandle.json", + "name": "FileSystemSyncAccessHandle", + "slug": "API/FileSystemSyncAccessHandle", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle", + "summary": "The FileSystemSyncAccessHandle interface of the File System Access API represents a synchronous handle to a file system entry. The synchronous nature of the file reads and writes allows for higher performance for critical methods in contexts where asynchronous operations come with high overhead, e.g., WebAssembly.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "FileSystemSyncAccessHandle" + } + ], "api-filesystemwritablefilestream-seek": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "api/FileSystemWritableFileStream.json", "name": "seek", @@ -676,7 +1001,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -695,13 +1020,14 @@ "version_added": "86" } }, - "title": "FileSystemWritableFileStream.seek()" + "title": "FileSystemWritableFileStream: seek() method" } ], "api-filesystemwritablefilestream-truncate": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "api/FileSystemWritableFileStream.json", "name": "truncate", @@ -717,7 +1043,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -736,13 +1062,14 @@ "version_added": "86" } }, - "title": "FileSystemWritableFileStream.truncate()" + "title": "FileSystemWritableFileStream: truncate() method" } ], "api-filesystemwritablefilestream-write": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "api/FileSystemWritableFileStream.json", "name": "write", @@ -758,7 +1085,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -777,13 +1104,14 @@ "version_added": "86" } }, - "title": "FileSystemWritableFileStream.write()" + "title": "FileSystemWritableFileStream: write() method" } ], "api-filesystemwritablefilestream": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "api/FileSystemWritableFileStream.json", "name": "FileSystemWritableFileStream", @@ -799,7 +1127,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -820,5 +1148,48 @@ }, "title": "FileSystemWritableFileStream" } + ], + "dom-storagemanager-getdirectory": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/StorageManager.json", + "name": "getDirectory", + "slug": "API/StorageManager/getDirectory", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/getDirectory", + "summary": "The getDirectory() method of the StorageManager interface is used to obtain a reference to a FileSystemDirectoryHandle object allowing access to a directory and its contents, stored in the origin private file system (OPFS).", + "support": { + "chrome": { + "version_added": "86" + }, + "chrome_android": { + "version_added": "109" + }, + "edge": "mirror", + "firefox": { + "version_added": "111" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.2" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "86" + } + }, + "title": "StorageManager: getDirectory() method" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/fileapi.json b/bikeshed/spec-data/readonly/mdn/fileapi.json index 2dbb382e94..a901b09f67 100644 --- a/bikeshed/spec-data/readonly/mdn/fileapi.json +++ b/bikeshed/spec-data/readonly/mdn/fileapi.json @@ -55,7 +55,7 @@ "feature": "blobbuilder", "title": "Blob constructing" }, - "title": "Blob()" + "title": "Blob: Blob() constructor" } ], "dom-blob-arraybuffer": [ @@ -102,7 +102,7 @@ "version_added": "79" } }, - "title": "Blob.arrayBuffer()" + "title": "Blob: arrayBuffer() method" } ], "dfn-size": [ @@ -155,7 +155,7 @@ "version_added": "79" } }, - "title": "Blob.size" + "title": "Blob: size property" } ], "dfn-slice": [ @@ -237,7 +237,7 @@ } ] }, - "title": "Blob.slice()" + "title": "Blob: slice() method" } ], "dom-blob-stream": [ @@ -284,7 +284,7 @@ "version_added": "79" } }, - "title": "Blob.stream()" + "title": "Blob: stream() method" } ], "dom-blob-text": [ @@ -331,7 +331,7 @@ "version_added": "79" } }, - "title": "Blob.text()" + "title": "Blob: text() method" } ], "dfn-type": [ @@ -384,7 +384,7 @@ "version_added": "79" } }, - "title": "Blob.type" + "title": "Blob: type property" }, { "engines": [ @@ -434,7 +434,7 @@ "version_added": "79" } }, - "title": "File.type" + "title": "File: type property" } ], "blob-section": [ @@ -542,7 +542,7 @@ "version_added": "79" } }, - "title": "File()" + "title": "File: File() constructor" } ], "dfn-lastModified": [ @@ -594,7 +594,7 @@ "version_added": "79" } }, - "title": "File.lastModified" + "title": "File: lastModified property" } ], "dfn-name": [ @@ -646,7 +646,7 @@ "version_added": "79" } }, - "title": "File.name" + "title": "File: name property" } ], "file-section": [ @@ -722,7 +722,7 @@ "summary": "The item() method of the FileList API returns a File object representing the file at the specified index in the file list.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -757,7 +757,7 @@ "version_added": "79" } }, - "title": "FileList.item()" + "title": "FileList: item() method" } ], "dfn-length": [ @@ -774,7 +774,7 @@ "summary": "The read-only FileList length property returns the number of files in the FileList.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -809,7 +809,7 @@ "version_added": "79" } }, - "title": "FileList.length" + "title": "FileList: length property" } ], "filelist-section": [ @@ -826,7 +826,7 @@ "summary": "An object of this type is returned by the files property of the HTML <input> element; this lets you access the list of files selected with the <input type=\"file\"> element. It's also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -915,7 +915,7 @@ "version_added": "79" } }, - "title": "FileReader()" + "title": "FileReader: FileReader() constructor" } ], "abort": [ @@ -969,7 +969,7 @@ "version_added": "79" } }, - "title": "FileReader.abort()" + "title": "FileReader: abort() method" } ], "dfn-abort-event": [ @@ -1142,7 +1142,7 @@ "version_added": "79" } }, - "title": "FileReader.error" + "title": "FileReader: error property" } ], "dfn-error-event": [ @@ -1768,7 +1768,7 @@ "version_added": "79" } }, - "title": "FileReader.readAsArrayBuffer()" + "title": "FileReader: readAsArrayBuffer() method" } ], "readAsBinaryString": [ @@ -1822,7 +1822,7 @@ "version_added": "79" } }, - "title": "FileReader.readAsBinaryString()" + "title": "FileReader: readAsBinaryString() method" } ], "readAsDataURL": [ @@ -1877,7 +1877,7 @@ "version_added": "79" } }, - "title": "FileReader.readAsDataURL()" + "title": "FileReader: readAsDataURL() method" } ], "readAsDataText": [ @@ -1931,7 +1931,7 @@ "version_added": "79" } }, - "title": "FileReader.readAsText()" + "title": "FileReader: readAsText() method" } ], "dom-filereader-readystate": [ @@ -1985,7 +1985,7 @@ "version_added": "79" } }, - "title": "FileReader.readyState" + "title": "FileReader: readyState property" } ], "dom-filereader-result": [ @@ -2039,7 +2039,7 @@ "version_added": "79" } }, - "title": "FileReader.result" + "title": "FileReader: result property" } ], "APIASynch": [ @@ -2097,6 +2097,56 @@ "title": "FileReader" } ], + "filereadersyncConstrctr": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FileReaderSync.json", + "name": "FileReaderSync", + "slug": "API/FileReaderSync/FileReaderSync", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FileReaderSync/FileReaderSync", + "summary": "The FileReaderSync() constructor creates a new FileReaderSync.", + "support": { + "chrome": { + "version_added": "7" + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "8" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "6" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "FileReaderSync: FileReaderSync() constructor" + } + ], "readAsArrayBufferSyncSection": [ { "engines": [ @@ -2111,7 +2161,7 @@ "summary": "The readAsArrayBuffer() method of the FileReaderSync interface allows to read File or Blob objects in a synchronous way into an ArrayBuffer. This interface is only available in workers as it enables synchronous I/O that could potentially block.", "support": { "chrome": { - "version_added": "7" + "version_added": "9" }, "chrome_android": "mirror", "deno": { @@ -2144,7 +2194,7 @@ "version_added": "79" } }, - "title": "FileReaderSync.readAsArrayBuffer()" + "title": "FileReaderSync: readAsArrayBuffer() method" } ], "readAsDataURLSync-section": [ @@ -2194,7 +2244,7 @@ "version_added": "79" } }, - "title": "FileReaderSync.readAsDataURL()" + "title": "FileReaderSync: readAsDataURL() method" } ], "readAsTextSync": [ @@ -2244,7 +2294,7 @@ "version_added": "79" } }, - "title": "FileReaderSync.readAsText()" + "title": "FileReaderSync: readAsText() method" } ], "FileReaderSync": [ @@ -2309,9 +2359,9 @@ "webkit" ], "filename": "api/URL.json", - "name": "createObjectURL", - "slug": "API/URL/createObjectURL", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL", + "name": "createObjectURL_static", + "slug": "API/URL/createObjectURL_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL_static", "summary": "The URL.createObjectURL() static method creates a string containing a URL representing the object given in the parameter.", "support": { "chrome": { @@ -2349,7 +2399,7 @@ "version_added": "79" } }, - "title": "URL.createObjectURL()" + "title": "URL: createObjectURL() static method" } ], "dfn-revokeObjectURL": [ @@ -2360,9 +2410,9 @@ "webkit" ], "filename": "api/URL.json", - "name": "revokeObjectURL", - "slug": "API/URL/revokeObjectURL", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL", + "name": "revokeObjectURL_static", + "slug": "API/URL/revokeObjectURL_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL_static", "summary": "The URL.revokeObjectURL() static method releases an existing object URL which was previously created by calling URL.createObjectURL().", "support": { "chrome": { @@ -2399,7 +2449,7 @@ "version_added": "79" } }, - "title": "URL.revokeObjectURL()" + "title": "URL: revokeObjectURL() static method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/filter-effects.json b/bikeshed/spec-data/readonly/mdn/filter-effects.json index 72a10948de..484b3d2c06 100644 --- a/bikeshed/spec-data/readonly/mdn/filter-effects.json +++ b/bikeshed/spec-data/readonly/mdn/filter-effects.json @@ -745,6 +745,45 @@ "title": "SVGFEGaussianBlurElement" } ], + "element-attrdef-feimage-crossorigin": [ + { + "engines": [ + "gecko" + ], + "filename": "api/SVGFEImageElement.json", + "name": "crossOrigin", + "slug": "API/SVGFEImageElement", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement", + "summary": "The SVGFEImageElement interface corresponds to the <feImage> element.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "SVGFEImageElement" + } + ], "InterfaceSVGFEImageElement": [ { "engines": [ @@ -1453,7 +1492,7 @@ "name": "brightness", "slug": "CSS/filter-function/brightness", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/brightness", - "summary": "The brightness() CSS function applies a linear multiplier to the input image, making it appear brighter or darker. Its result is a <filter-function>.", + "summary": "The brightness() CSS <filter-function> applies a linear multiplier value on an element or an input image, making the image appear brighter or darker.", "support": { "chrome": { "version_added": "18" @@ -2127,7 +2166,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feBlend.json", "name": "mode", @@ -2136,7 +2176,7 @@ "summary": "The mode attribute defines the blending mode on the <feBlend> filter primitive.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { @@ -2145,9 +2185,7 @@ "firefox": { "version_added": "4" }, - "firefox_android": { - "version_added": true - }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -2156,16 +2194,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "mode" @@ -2175,7 +2213,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feBlend.json", "name": "feBlend", @@ -2184,7 +2223,7 @@ "summary": "The <feBlend> SVG filter primitive composes two objects together ruled by a certain blending mode. This is similar to what is known from image editing software when blending two layers. The mode is defined by the mode attribute.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { @@ -2193,9 +2232,7 @@ "firefox": { "version_added": "4" }, - "firefox_android": { - "version_added": true - }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -2204,16 +2241,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feBlend>" @@ -2223,7 +2260,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feColorMatrix.json", "name": "feColorMatrix", @@ -2232,14 +2270,14 @@ "summary": "The <feColorMatrix> SVG filter element changes colors based on a transformation matrix. Every pixel's color value [R,G,B,A] is matrix multiplied by a 5 by 5 color matrix to create new color [R',G',B',A'].", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2247,17 +2285,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feColorMatrix>" @@ -2267,7 +2303,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feComponentTransfer.json", "name": "feComponentTransfer", @@ -2276,14 +2313,14 @@ "summary": "The <feComponentTransfer> SVG filter primitive performs color-component-wise remapping of data for each pixel. It allows operations like brightness adjustment, contrast adjustment, color balance or thresholding.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2291,17 +2328,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feComponentTransfer>" @@ -2321,16 +2356,14 @@ "summary": "The k1 attribute defines one of the values to be used within the arithmetic operation of the <feComposite> filter primitive.", "support": { "chrome": { - "version_added": "1" - }, - "chrome_android": { - "version_added": true + "version_added": "5" }, + "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2338,11 +2371,9 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": { @@ -2370,16 +2401,14 @@ "summary": "The k2 attribute defines one of the values to be used within the arithmetic operation of the <feComposite> filter primitive.", "support": { "chrome": { - "version_added": "1" - }, - "chrome_android": { - "version_added": true + "version_added": "5" }, + "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2387,11 +2416,9 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": { @@ -2419,16 +2446,14 @@ "summary": "The k3 attribute defines one of the values to be used within the arithmetic operation of the <feComposite> filter primitive.", "support": { "chrome": { - "version_added": "1" - }, - "chrome_android": { - "version_added": true + "version_added": "5" }, + "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2436,11 +2461,9 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": { @@ -2468,16 +2491,14 @@ "summary": "The k4 attribute defines one of the values to be used within the arithmetic operation of the <feComposite> filter primitive.", "support": { "chrome": { - "version_added": "1" - }, - "chrome_android": { - "version_added": true + "version_added": "5" }, + "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2485,11 +2506,9 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": { @@ -2517,16 +2536,14 @@ "summary": "The <feComposite> SVG filter primitive performs the combination of two input images pixel-wise in image space using one of the Porter-Duff compositing operations: over, in, atop, out, xor, lighter, or arithmetic.", "support": { "chrome": { - "version_added": "1" - }, - "chrome_android": { - "version_added": true + "version_added": "5" }, + "chrome_android": "mirror", "edge": { "version_added": "18" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2556,7 +2573,11 @@ ], "element-attrdef-feconvolvematrix-bias": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "bias", "slug": "SVG/Attribute/bias", @@ -2564,12 +2585,12 @@ "summary": "The bias attribute shifts the range of the filter. After applying the kernelMatrix of the <feConvolveMatrix> element to the input image to yield a number and applied the divisor attribute, the bias attribute is added to each component. This allows representation of values that would otherwise be clamped to 0 or 1.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2579,13 +2600,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "bias" @@ -2593,7 +2614,11 @@ ], "element-attrdef-feconvolvematrix-divisor": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "divisor", "slug": "SVG/Attribute/divisor", @@ -2601,12 +2626,12 @@ "summary": "The divisor attribute specifies the value by which the resulting number of applying the kernelMatrix of a <feConvolveMatrix> element to the input image color value is divided to yield the destination color value.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2616,13 +2641,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "divisor" @@ -2630,7 +2655,11 @@ ], "element-attrdef-feconvolvematrix-edgemode": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "edgeMode", "slug": "SVG/Attribute/edgeMode", @@ -2638,12 +2667,12 @@ "summary": "The edgeMode attribute determines how to extend the input image as necessary with color values so that the matrix operations can be applied when the kernel is positioned at or near the edge of the input image.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2653,13 +2682,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "edgeMode" @@ -2669,7 +2698,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feConvolveMatrix.json", "name": "in", @@ -2678,14 +2708,14 @@ "summary": "The in attribute identifies input for the given filter primitive.", "support": { "chrome": { - "version_added": true + "version_added": "6" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2693,17 +2723,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "in" @@ -2711,7 +2739,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feDiffuseLighting.json", "name": "in", @@ -2720,14 +2749,14 @@ "summary": "The in attribute identifies input for the given filter primitive.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2735,17 +2764,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "in" @@ -2755,7 +2782,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feConvolveMatrix.json", "name": "kernelMatrix", @@ -2764,14 +2792,14 @@ "summary": "The kernelMatrix attribute defines the list of numbers that make up the kernel matrix for the <feConvolveMatrix> element.", "support": { "chrome": { - "version_added": true + "version_added": "6" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2779,17 +2807,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "kernelMatrix" @@ -2797,7 +2823,11 @@ ], "element-attrdef-feconvolvematrix-kernelunitlength": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "kernelUnitLength", "slug": "SVG/Attribute/kernelUnitLength", @@ -2805,12 +2835,12 @@ "summary": "The kernelUnitLength attribute has two meanings based on the context it's used in. For lighting filter primitives, it indicates the intended distance for the x and y coordinates, for <feConvolveMatrix>, it indicates the intended distance between successive columns and rows in the kernel matrix.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2820,13 +2850,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "kernelUnitLength" @@ -2834,20 +2864,24 @@ ], "element-attrdef-order": [ { - "engines": [], - "filename": "svg/elements/feConvolveMatrix.json", + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "svg/elements/feConvolveMatrix.json", "name": "order", "slug": "SVG/Attribute/order", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/order", "summary": "The order attribute indicates the size of the matrix to be used by a <feConvolveMatrix> element.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2857,13 +2891,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "order" @@ -2871,20 +2905,24 @@ ], "element-attrdef-feconvolvematrix-preservealpha": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "preserveAlpha", "slug": "SVG/Attribute/preserveAlpha", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/preserveAlpha", - "summary": "the preserveAlpha attribute indicates how a <feConvolveMatrix> element handled alpha transparency.", + "summary": "the preserveAlpha attribute indicates how a <feConvolveMatrix> element handles alpha transparency.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2894,13 +2932,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "preserveAlpha" @@ -2908,7 +2946,11 @@ ], "element-attrdef-feconvolvematrix-targetx": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "targetX", "slug": "SVG/Attribute/targetX", @@ -2916,12 +2958,12 @@ "summary": "The targetX attribute determines the positioning in horizontal direction of the convolution matrix relative to a given target pixel in the input image. The leftmost column of the matrix is column number zero. The value must be such that: 0 <= targetX < order X.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2931,13 +2973,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "targetX" @@ -2945,7 +2987,11 @@ ], "element-attrdef-feconvolvematrix-targety": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feConvolveMatrix.json", "name": "targetY", "slug": "SVG/Attribute/targetY", @@ -2953,12 +2999,12 @@ "summary": "The targetY attribute determines the positioning in vertical direction of the convolution matrix relative to a given target pixel in the input image. The topmost row of the matrix is row number zero. The value must be such that: 0 <= targetY < order Y.", "support": { "chrome": { - "version_added": null + "version_added": "6" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -2968,13 +3014,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "targetY" @@ -2984,7 +3030,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feConvolveMatrix.json", "name": "feConvolveMatrix", @@ -2993,14 +3040,14 @@ "summary": "The <feConvolveMatrix> SVG filter primitive applies a matrix convolution filter effect. A convolution combines pixels in the input image with neighboring pixels to produce a resulting image. A wide variety of imaging operations can be achieved through convolutions, including blurring, edge detection, sharpening, embossing and beveling.", "support": { "chrome": { - "version_added": true + "version_added": "6" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3008,17 +3055,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feConvolveMatrix>" @@ -3026,7 +3071,11 @@ ], "element-attrdef-fediffuselighting-diffuseconstant": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDiffuseLighting.json", "name": "diffuseConstant", "slug": "SVG/Attribute/diffuseConstant", @@ -3034,12 +3083,12 @@ "summary": "The diffuseConstant attribute represents the kd value in the Phong lighting model. In SVG, this can be any non-negative number.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3049,13 +3098,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "diffuseConstant" @@ -3063,7 +3112,11 @@ ], "element-attrdef-fediffuselighting-kernelunitlength": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDiffuseLighting.json", "name": "kernelUnitLength", "slug": "SVG/Attribute/kernelUnitLength", @@ -3071,12 +3124,12 @@ "summary": "The kernelUnitLength attribute has two meanings based on the context it's used in. For lighting filter primitives, it indicates the intended distance for the x and y coordinates, for <feConvolveMatrix>, it indicates the intended distance between successive columns and rows in the kernel matrix.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3086,13 +3139,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "kernelUnitLength" @@ -3100,7 +3153,11 @@ ], "element-attrdef-fediffuselighting-surfacescale": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDiffuseLighting.json", "name": "surfaceScale", "slug": "SVG/Attribute/surfaceScale", @@ -3108,12 +3165,12 @@ "summary": "The surfaceScale attribute represents the height of the surface for a light filter primitive.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3123,13 +3180,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "surfaceScale" @@ -3139,7 +3196,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feDiffuseLighting.json", "name": "feDiffuseLighting", @@ -3148,14 +3206,14 @@ "summary": "The <feDiffuseLighting> SVG filter primitive lights an image using the alpha channel as a bump map. The resulting image, which is an RGBA opaque image, depends on the light color, light position and surface geometry of the input bump map.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3163,17 +3221,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feDiffuseLighting>" @@ -3183,7 +3239,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feDisplacementMap.json", "name": "scale", @@ -3192,14 +3249,14 @@ "summary": "The scale attribute defines the displacement scale factor to be used on a <feDisplacementMap> filter primitive. The amount is expressed in the coordinate system established by the primitiveUnits attribute on the <filter> element.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3207,17 +3264,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "scale" @@ -3225,7 +3280,11 @@ ], "element-attrdef-fedisplacementmap-xchannelselector": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDisplacementMap.json", "name": "xChannelSelector", "slug": "SVG/Attribute/xChannelSelector", @@ -3233,12 +3292,12 @@ "summary": "The xChannelSelector attribute indicates which color channel from in2 to use to displace the pixels in in along the x-axis.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3248,13 +3307,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "xChannelSelector" @@ -3262,7 +3321,11 @@ ], "element-attrdef-fedisplacementmap-ychannelselector": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDisplacementMap.json", "name": "yChannelSelector", "slug": "SVG/Attribute/yChannelSelector", @@ -3270,12 +3333,12 @@ "summary": "The yChannelSelector attribute indicates which color channel from in2 to use to displace the pixels in in along the y-axis.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3285,13 +3348,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "yChannelSelector" @@ -3301,7 +3364,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feDisplacementMap.json", "name": "feDisplacementMap", @@ -3310,14 +3374,14 @@ "summary": "The <feDisplacementMap> SVG filter primitive uses the pixel values from the image from in2 to spatially displace the image from in.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3325,17 +3389,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feDisplacementMap>" @@ -3343,7 +3405,11 @@ ], "element-attrdef-fedistantlight-azimuth": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDistantLight.json", "name": "azimuth", "slug": "SVG/Attribute/azimuth", @@ -3351,12 +3417,12 @@ "summary": "The azimuth attribute specifies the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3366,13 +3432,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "azimuth" @@ -3380,7 +3446,11 @@ ], "element-attrdef-fedistantlight-elevation": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDistantLight.json", "name": "elevation", "slug": "SVG/Attribute/elevation", @@ -3388,12 +3458,12 @@ "summary": "The elevation attribute specifies the direction angle for the light source from the XY plane towards the Z-axis, in degrees. Note that the positive Z-axis points towards the viewer of the content.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3403,13 +3473,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "elevation" @@ -3417,7 +3487,11 @@ ], "feDistantLightElement": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feDistantLight.json", "name": "feDistantLight", "slug": "SVG/Element/feDistantLight", @@ -3425,14 +3499,14 @@ "summary": "The <feDistantLight> filter primitive defines a distant light source that can be used within a lighting filter primitive: <feDiffuseLighting> or <feSpecularLighting>.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "18" }, "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3442,13 +3516,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "<feDistantLight>" @@ -3458,7 +3532,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feDropShadow.json", "name": "feDropShadow", @@ -3467,14 +3542,12 @@ "summary": "The SVG <feDropShadow> filter primitive creates a drop shadow of the input image. It can only be used inside a <filter> element.", "support": { "chrome": { - "version_added": true + "version_added": "13" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { - "version_added": true + "version_added": "30" }, "firefox_android": "mirror", "ie": { @@ -3484,13 +3557,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feDropShadow>" @@ -3500,7 +3573,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feFlood.json", "name": "feFlood", @@ -3509,14 +3583,14 @@ "summary": "The <feFlood> SVG filter primitive fills the filter subregion with the color and opacity defined by flood-color and flood-opacity.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3524,17 +3598,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feFlood>" @@ -3544,7 +3616,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feFuncA.json", "name": "feFuncA", @@ -3553,14 +3626,14 @@ "summary": "The <feFuncA> SVG filter primitive defines the transfer function for the alpha component of the input graphic of its parent <feComponentTransfer> element.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3570,13 +3643,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feFuncA>" @@ -3586,7 +3659,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feFuncB.json", "name": "feFuncB", @@ -3595,14 +3669,14 @@ "summary": "The <feFuncB> SVG filter primitive defines the transfer function for the blue component of the input graphic of its parent <feComponentTransfer> element.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3612,13 +3686,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feFuncB>" @@ -3628,7 +3702,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feFuncG.json", "name": "feFuncG", @@ -3637,14 +3712,14 @@ "summary": "The <feFuncG> SVG filter primitive defines the transfer function for the green component of the input graphic of its parent <feComponentTransfer> element.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3654,13 +3729,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feFuncG>" @@ -3670,7 +3745,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feFuncR.json", "name": "feFuncR", @@ -3679,14 +3755,14 @@ "summary": "The <feFuncR> SVG filter primitive defines the transfer function for the red component of the input graphic of its parent <feComponentTransfer> element.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3696,13 +3772,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feFuncR>" @@ -3722,18 +3798,16 @@ "summary": "The stdDeviation attribute defines the standard deviation for the blur operation.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "18" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -3743,15 +3817,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": "9.1" - }, - "safari_ios": { - "version_added": true + "version_added": "6" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "stdDeviation" @@ -3771,18 +3843,16 @@ "summary": "The <feGaussianBlur> SVG filter primitive blurs the input image by the amount specified in stdDeviation, which defines the bell-curve.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "18" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": "10" }, @@ -3792,20 +3862,57 @@ }, "opera_android": "mirror", "safari": { - "version_added": "9.1" - }, - "safari_ios": { - "version_added": true + "version_added": "6" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feGaussianBlur>" } ], + "dom-svgfilterprimitivestandardattributes-height": [ + { + "engines": [ + "gecko" + ], + "filename": "svg/elements/feImage.json", + "name": "crossorigin", + "slug": "SVG/Attribute/crossorigin", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/crossorigin", + "summary": "The crossorigin attribute, valid on the <image> and <feImage> elements, provides support for configuration of the Cross-Origin Resource Sharing (CORS) requests for the element's fetched data.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "SVG attribute: crossorigin" + } + ], "feImageElement": [ { "engines": [ @@ -3820,18 +3927,16 @@ "summary": "The <feImage> SVG filter primitive fetches image data from an external source and provides the pixel data as output (meaning if the external source is an SVG image, it is rasterized.)", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -3840,16 +3945,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feImage>" @@ -3859,7 +3964,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feMerge.json", "name": "feMerge", @@ -3868,18 +3974,16 @@ "summary": "The <feMerge> SVG element allows filter effects to be applied concurrently instead of sequentially. This is achieved by other filters storing their output via the result attribute and then accessing it in a <feMergeNode> child.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -3888,16 +3992,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feMerge>" @@ -3907,7 +4011,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feMergeNode.json", "name": "feMergeNode", @@ -3916,18 +4021,16 @@ "summary": "The feMergeNode takes the result of another filter to be processed by its parent <feMerge>.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -3936,16 +4039,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feMergeNode>" @@ -3955,7 +4058,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feMorphology.json", "name": "radius", @@ -3964,14 +4068,14 @@ "summary": "The radius attribute represents the radius (or radii) for the operation on a given <feMorphology> filter primitive.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -3982,16 +4086,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "radius" @@ -4001,7 +4105,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feMorphology.json", "name": "feMorphology", @@ -4010,14 +4115,14 @@ "summary": "The <feMorphology> SVG filter primitive is used to erode or dilate the input image. Its usefulness lies especially in fattening or thinning effects.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4028,16 +4133,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feMorphology>" @@ -4047,7 +4152,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feOffset.json", "name": "feOffset", @@ -4056,18 +4162,16 @@ "summary": "The <feOffset> SVG filter primitive allows to offset the input image. The input image as a whole is offset by the values specified in the dx and dy attributes.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4076,16 +4180,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feOffset>" @@ -4095,7 +4199,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/fePointLight.json", "name": "fePointLight", @@ -4104,18 +4209,16 @@ "summary": "The <fePointLight> filter primitive defines a light source which allows to create a point light effect. It that can be used within a lighting filter primitive: <feDiffuseLighting> or <feSpecularLighting>.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4124,16 +4227,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<fePointLight>" @@ -4143,7 +4246,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpecularLighting.json", "name": "specularConstant", @@ -4152,18 +4256,16 @@ "summary": "The specularConstant attribute controls the ratio of reflection of the specular lighting. It represents the ks value in the Phong lighting model. The bigger the value the stronger the reflection.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4172,16 +4274,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "specularConstant" @@ -4191,7 +4293,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpecularLighting.json", "name": "feSpecularLighting", @@ -4200,18 +4303,16 @@ "summary": "The <feSpecularLighting> SVG filter primitive lights a source graphic using the alpha channel as a bump map. The resulting image is an RGBA image based on the light color. The lighting calculation follows the standard specular component of the Phong lighting model. The resulting image depends on the light color, light position and surface geometry of the input bump map. The result of the lighting calculation is added. The filter primitive assumes that the viewer is at infinity in the z direction.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4220,16 +4321,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feSpecularLighting>" @@ -4239,7 +4340,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpotLight.json", "name": "limitingConeAngle", @@ -4248,18 +4350,16 @@ "summary": "The limitingConeAngle attribute represents the angle in degrees between the spot light axis (i.e. the axis between the light source and the point to which it is pointing at) and the spot light cone. So it defines a limiting cone which restricts the region where the light is projected. No light is projected outside the cone.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4268,16 +4368,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "limitingConeAngle" @@ -4287,7 +4387,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpotLight.json", "name": "pointsAtX", @@ -4296,18 +4397,16 @@ "summary": "The pointsAtX attribute represents the x location in the coordinate system established by attribute primitiveUnits on the <filter> element of the point at which the light source is pointing.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4316,16 +4415,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "pointsAtX" @@ -4335,7 +4434,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpotLight.json", "name": "pointsAtY", @@ -4344,18 +4444,16 @@ "summary": "The pointsAtY attribute represents the y location in the coordinate system established by attribute primitiveUnits on the <filter> element of the point at which the light source is pointing.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4364,16 +4462,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "pointsAtY" @@ -4383,7 +4481,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpotLight.json", "name": "pointsAtZ", @@ -4392,18 +4491,16 @@ "summary": "The pointsAtZ attribute represents the y location in the coordinate system established by attribute primitiveUnits on the <filter> element of the point at which the light source is pointing, assuming that, in the initial local coordinate system, the positive z-axis comes out towards the person viewing the content and assuming that one unit along the z-axis equals one unit in x and y.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4412,16 +4509,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "pointsAtZ" @@ -4431,7 +4528,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feSpotLight.json", "name": "feSpotLight", @@ -4440,18 +4538,16 @@ "summary": "The <feSpotLight> SVG filter primitive defines a light source that can be used to create a spotlight effect. It is used within a lighting filter primitive: <feDiffuseLighting> or <feSpecularLighting>.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4460,16 +4556,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feSpotLight>" @@ -4479,7 +4575,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feTile.json", "name": "feTile", @@ -4488,18 +4585,16 @@ "summary": "The <feTile> SVG filter primitive allows to fill a target rectangle with a repeated, tiled pattern of an input image. The effect is similar to the one of a <pattern>.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -4508,16 +4603,16 @@ "version_added": "9" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feTile>" @@ -4527,7 +4622,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feTurbulence.json", "name": "baseFrequency", @@ -4536,18 +4632,16 @@ "summary": "The baseFrequency attribute represents the base frequency parameter for the noise function of the <feTurbulence> filter primitive.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true, "notes": "Partially supported, see <a href='https://developer.microsoft.com/microsoft-edge/platform/issues/12382004/'>bug 12382004</a>." @@ -4558,13 +4652,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "baseFrequency" @@ -4572,7 +4666,11 @@ ], "element-attrdef-feturbulence-numoctaves": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feTurbulence.json", "name": "numOctaves", "slug": "SVG/Attribute/numOctaves", @@ -4580,12 +4678,12 @@ "summary": "The numOctaves attribute defines the number of octaves for the noise function of the <feTurbulence> primitive.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4595,13 +4693,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "numOctaves" @@ -4611,7 +4709,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feTurbulence.json", "name": "seed", @@ -4620,18 +4719,16 @@ "summary": "The seed attribute represents the starting number for the pseudo random number generator of the <feTurbulence> filter primitive.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true, "notes": "Partially supported, see <a href='https://developer.microsoft.com/microsoft-edge/platform/issues/12382004/'>bug 12382004</a>." @@ -4642,13 +4739,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "seed" @@ -4656,7 +4753,11 @@ ], "element-attrdef-feturbulence-stitchtiles": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feTurbulence.json", "name": "stitchTiles", "slug": "SVG/Attribute/stitchTiles", @@ -4664,12 +4765,12 @@ "summary": "The stitchTiles attribute defines how the Perlin Noise tiles behave at the border.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4679,13 +4780,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "stitchTiles" @@ -4693,7 +4794,11 @@ ], "element-attrdef-feturbulence-type": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/feTurbulence.json", "name": "type", "slug": "SVG/Attribute/type", @@ -4701,12 +4806,12 @@ "summary": "The type attribute is a generic attribute and it has different meaning based on the context in which it's used.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4716,13 +4821,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "type" @@ -4732,7 +4837,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/feTurbulence.json", "name": "feTurbulence", @@ -4741,18 +4847,16 @@ "summary": "The <feTurbulence> SVG filter primitive creates an image using the Perlin turbulence function. It allows the synthesis of artificial textures like clouds or marble. The resulting image will fill the entire filter primitive subregion.", "support": { "chrome": { - "version_added": true + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" - }, - "firefox_android": { - "version_added": true + "version_added": "3" }, + "firefox_android": "mirror", "ie": { "version_added": true, "notes": "Partially supported, see <a href='https://developer.microsoft.com/microsoft-edge/platform/issues/12382004/'>bug 12382004</a>." @@ -4763,13 +4867,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<feTurbulence>" @@ -4777,7 +4881,11 @@ ], "element-attrdef-filter-filterunits": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/filter.json", "name": "filterUnits", "slug": "SVG/Attribute/filterUnits", @@ -4785,12 +4893,12 @@ "summary": "The filterUnits attribute defines the coordinate system for the attributes x, y, width and height.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4800,13 +4908,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "filterUnits" @@ -4814,7 +4922,11 @@ ], "element-attrdef-filter-height": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/filter.json", "name": "height", "slug": "SVG/Attribute/height", @@ -4822,12 +4934,12 @@ "summary": "The height attribute defines the vertical length of an element in the user coordinate system.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4837,13 +4949,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "height" @@ -4851,7 +4963,11 @@ ], "element-attrdef-filter-primitiveunits": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/filter.json", "name": "primitiveUnits", "slug": "SVG/Attribute/primitiveUnits", @@ -4859,12 +4975,12 @@ "summary": "The primitiveUnits attribute specifies the coordinate system for the various length values within the filter primitives and for the attributes that define the filter primitive subregion.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4874,13 +4990,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "primitiveUnits" @@ -4888,7 +5004,11 @@ ], "element-attrdef-filter-width": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/filter.json", "name": "width", "slug": "SVG/Attribute/width", @@ -4896,12 +5016,12 @@ "summary": "The width attribute defines the horizontal length of an element in the user coordinate system.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4911,13 +5031,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "width" @@ -4925,7 +5045,11 @@ ], "element-attrdef-filter-x": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/filter.json", "name": "x", "slug": "SVG/Attribute/x", @@ -4933,12 +5057,12 @@ "summary": "The x attribute defines an x-axis coordinate in the user coordinate system.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4948,13 +5072,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "x" @@ -4962,7 +5086,11 @@ ], "element-attrdef-filter-y": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/filter.json", "name": "y", "slug": "SVG/Attribute/y", @@ -4970,12 +5098,12 @@ "summary": "The y attribute defines a y-axis coordinate in the user coordinate system.", "support": { "chrome": { - "version_added": null + "version_added": "5" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -4985,13 +5113,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "y" @@ -5011,14 +5139,14 @@ "summary": "The <filter> SVG element defines a custom filter effect by grouping atomic filter primitives. It is never rendered itself, but must be used by the filter attribute on SVG elements, or the filter CSS property for SVG/HTML elements.", "support": { "chrome": { - "version_added": "1" + "version_added": "5" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4" + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -5032,11 +5160,9 @@ "version_added": "10.1" }, "safari": { - "version_added": "3" - }, - "safari_ios": { - "version_added": "3" + "version_added": "6" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": true diff --git a/bikeshed/spec-data/readonly/mdn/fullscreen.json b/bikeshed/spec-data/readonly/mdn/fullscreen.json index d7aecdf170..0cbbb563fd 100644 --- a/bikeshed/spec-data/readonly/mdn/fullscreen.json +++ b/bikeshed/spec-data/readonly/mdn/fullscreen.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "prefixed": [ "webkit" @@ -68,10 +69,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "5.1", - "prefix": "webkit" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "5.1", + "prefix": "webkit" + } + ], "safari_ios": { "version_added": "12", "prefix": "webkit", @@ -98,14 +104,15 @@ } ] }, - "title": "Document.exitFullscreen()" + "title": "Document: exitFullscreen() method" } ], "handler-document-onfullscreenchange": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "altname": [ "webkit" @@ -170,10 +177,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "5.1", - "alternative_name": "webkitfullscreenchange" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "5.1", + "alternative_name": "webkitfullscreenchange" + } + ], "safari_ios": { "version_added": "12", "alternative_name": "webkitfullscreenchange", @@ -205,7 +217,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "prefixed": [ "webkit" @@ -269,10 +282,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "5.1", - "prefix": "webkit" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "5.1", + "prefix": "webkit" + } + ], "safari_ios": { "version_added": "12", "prefix": "webkit", @@ -306,7 +324,11 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" + ], + "partial": [ + "webkit" ], "prefixed": [ "webkit" @@ -371,16 +393,28 @@ "version_removed": "14" } ], - "safari": { - "version_added": "6", - "prefix": "webkit" - }, - "safari_ios": { - "version_added": "12", - "prefix": "webkit", - "partial_implementation": true, - "notes": "Only available on iPad, not on iPhone." - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "6", + "prefix": "webkit" + } + ], + "safari_ios": [ + { + "version_added": "16.4", + "partial_implementation": true, + "notes": "Only available on iPad, not on iPhone." + }, + { + "version_added": "12", + "prefix": "webkit", + "partial_implementation": true, + "notes": "Only available on iPad, not on iPhone." + } + ], "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": [ @@ -393,14 +427,15 @@ } ] }, - "title": "Document.fullscreenElement" + "title": "Document: fullscreenElement property" } ], "ref-for-dom-document-fullscreenenabled①": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "prefixed": [ "webkit" @@ -465,10 +500,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "6", - "prefix": "webkit" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "6", + "prefix": "webkit" + } + ], "safari_ios": { "version_added": "12", "prefix": "webkit", @@ -487,14 +527,15 @@ } ] }, - "title": "Document.fullscreenEnabled" + "title": "Document: fullscreenEnabled property" } ], "handler-document-onfullscreenerror": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "altname": [ "webkit" @@ -559,10 +600,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "6", - "alternative_name": "webkitfullscreenerror" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "6", + "alternative_name": "webkitfullscreenerror" + } + ], "safari_ios": { "version_added": "12", "alternative_name": "webkitfullscreenerror", @@ -594,7 +640,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "prefixed": [ "webkit" @@ -658,10 +705,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "6", - "prefix": "webkit" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "6", + "prefix": "webkit" + } + ], "safari_ios": { "version_added": "12", "prefix": "webkit", @@ -695,7 +747,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "prefixed": [ "webkit" @@ -770,10 +823,15 @@ "version_removed": "14" } ], - "safari": { - "version_added": "5.1", - "prefix": "webkit" - }, + "safari": [ + { + "version_added": "16.4" + }, + { + "version_added": "5.1", + "prefix": "webkit" + } + ], "safari_ios": { "version_added": "12", "prefix": "webkit", @@ -800,7 +858,7 @@ } ] }, - "title": "Element.requestFullscreen()" + "title": "Element: requestFullscreen() method" } ], "api": [ @@ -856,7 +914,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ShadowRoot.json", "name": "fullscreenElement", @@ -886,7 +945,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -895,63 +954,7 @@ "version_added": "79" } }, - "title": "ShadowRoot.fullscreenElement" - } - ], - "::backdrop-pseudo-element": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "css/selectors/backdrop.json", - "name": "backdrop", - "slug": "CSS/::backdrop", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::backdrop", - "summary": "The ::backdrop CSS pseudo-element is a box the size of the viewport which is rendered immediately beneath any element being presented in fullscreen mode. This includes both elements which have been placed in fullscreen mode using the Fullscreen API and <dialog> elements.", - "support": { - "chrome": [ - { - "version_added": "37" - }, - { - "prefix": "-webkit-", - "version_added": "32" - } - ], - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "47" - }, - "firefox_android": "mirror", - "ie": { - "prefix": "-ms-", - "version_added": "11" - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": [ - { - "version_added": "79" - }, - { - "prefix": "-webkit-", - "version_added": "79" - } - ] - }, - "title": "::backdrop" + "title": "ShadowRoot: fullscreenElement property" } ], ":fullscreen-pseudo-class": [ @@ -1041,7 +1044,7 @@ "name": "fullscreen", "slug": "HTTP/Headers/Feature-Policy/fullscreen", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/fullscreen", - "summary": "The HTTP Feature-Policy header fullscreen directive controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is enabled, the returned Promise rejects with a TypeError.", + "summary": "The HTTP Permissions-Policy header fullscreen directive controls whether the current document is allowed to use Element.requestFullscreen().", "support": { "chrome": { "version_added": "62" @@ -1073,7 +1076,65 @@ "version_added": "79" } }, - "title": "Feature-Policy: fullscreen" + "title": "Permissions-Policy: fullscreen" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "fullscreen", + "slug": "HTTP/Headers/Permissions-Policy/fullscreen", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/fullscreen", + "summary": "The HTTP Permissions-Policy header fullscreen directive controls whether the current document is allowed to use Element.requestFullscreen().", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "62", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: fullscreen", + "partial_implementation": true, + "notes": [ + "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements.", + "Before Firefox 80, applying <code>fullscreen</code> to an <code>&lt;iframe&gt;</code> (i.e. via the <code>allow</code> attribute) does not work unless the <code>allowfullscreen</code> attribute is also present." + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: fullscreen" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/gamepad-extensions.json b/bikeshed/spec-data/readonly/mdn/gamepad-extensions.json index 72336b4d5d..7ea53d30d9 100644 --- a/bikeshed/spec-data/readonly/mdn/gamepad-extensions.json +++ b/bikeshed/spec-data/readonly/mdn/gamepad-extensions.json @@ -37,7 +37,7 @@ "version_added": false } }, - "title": "Gamepad.hand" + "title": "Gamepad: hand property" } ], "dom-gamepad-hapticactuators": [ @@ -78,7 +78,7 @@ "version_added": false } }, - "title": "Gamepad.hapticActuators" + "title": "Gamepad: hapticActuators property" } ], "dom-gamepad-pose": [ @@ -119,7 +119,7 @@ "version_added": false } }, - "title": "Gamepad.pose" + "title": "Gamepad: pose property" } ], "partial-gamepad-interface": [ @@ -200,21 +200,20 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "68" - }, + "webview_android": "mirror", "edge_blink": { "version_added": false } }, - "title": "GamepadHapticActuator.pulse()" + "title": "GamepadHapticActuator: pulse() method" } ], "dom-gamepadhapticactuatortype": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/GamepadHapticActuator.json", "name": "type", @@ -240,7 +239,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -249,14 +248,15 @@ "version_added": "79" } }, - "title": "GamepadHapticActuator.type" + "title": "GamepadHapticActuator: type property" } ], "gamepadhapticactuator-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/GamepadHapticActuator.json", "name": "GamepadHapticActuator", @@ -282,7 +282,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -332,7 +332,7 @@ "version_added": false } }, - "title": "GamepadPose.angularAcceleration" + "title": "GamepadPose: angularAcceleration property" } ], "dom-gamepadpose-angularvelocity": [ @@ -373,7 +373,7 @@ "version_added": false } }, - "title": "GamepadPose.angularVelocity" + "title": "GamepadPose: angularVelocity property" } ], "dom-gamepadpose-hasorientation": [ @@ -414,7 +414,7 @@ "version_added": false } }, - "title": "GamepadPose.hasOrientation" + "title": "GamepadPose: hasOrientation property" } ], "dom-gamepadpose-hasposition": [ @@ -455,7 +455,7 @@ "version_added": false } }, - "title": "GamepadPose.hasPosition" + "title": "GamepadPose: hasPosition property" } ], "dom-gamepadpose-linearacceleration": [ @@ -496,7 +496,7 @@ "version_added": false } }, - "title": "GamepadPose.linearAcceleration" + "title": "GamepadPose: linearAcceleration property" } ], "dom-gamepadpose-linearvelocity": [ @@ -537,7 +537,7 @@ "version_added": false } }, - "title": "GamepadPose.linearVelocity" + "title": "GamepadPose: linearVelocity property" } ], "dom-gamepadpose-orientation": [ @@ -578,7 +578,7 @@ "version_added": false } }, - "title": "GamepadPose.orientation" + "title": "GamepadPose: orientation property" } ], "dom-gamepadpose-position": [ @@ -619,7 +619,7 @@ "version_added": false } }, - "title": "GamepadPose.position" + "title": "GamepadPose: position property" } ], "gamepadpose-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/gamepad.json b/bikeshed/spec-data/readonly/mdn/gamepad.json index 93633e27d7..fd99d86c94 100644 --- a/bikeshed/spec-data/readonly/mdn/gamepad.json +++ b/bikeshed/spec-data/readonly/mdn/gamepad.json @@ -41,7 +41,7 @@ "version_added": "79" } }, - "title": "Gamepad.axes" + "title": "Gamepad: axes property" } ], "dom-gamepad-buttons": [ @@ -86,7 +86,7 @@ "version_added": "79" } }, - "title": "Gamepad.buttons" + "title": "Gamepad: buttons property" } ], "dom-gamepad-connected": [ @@ -131,7 +131,7 @@ "version_added": "79" } }, - "title": "Gamepad.connected" + "title": "Gamepad: connected property" } ], "dom-gamepad-id": [ @@ -176,7 +176,7 @@ "version_added": "79" } }, - "title": "Gamepad.id" + "title": "Gamepad: id property" } ], "dom-gamepad-index": [ @@ -221,7 +221,7 @@ "version_added": "79" } }, - "title": "Gamepad.index" + "title": "Gamepad: index property" } ], "dom-gamepad-mapping": [ @@ -266,7 +266,7 @@ "version_added": "79" } }, - "title": "Gamepad.mapping" + "title": "Gamepad: mapping property" } ], "dom-gamepad-timestamp": [ @@ -311,7 +311,7 @@ "version_added": "79" } }, - "title": "Gamepad.timestamp" + "title": "Gamepad: timestamp property" } ], "gamepad-interface": [ @@ -401,15 +401,14 @@ "version_added": "79" } }, - "title": "GamepadButton.pressed" + "title": "GamepadButton: pressed property" } ], "dom-gamepadbutton-touched": [ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" ], "filename": "api/GamepadButton.json", "name": "touched", @@ -435,7 +434,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -446,7 +445,7 @@ "version_added": "79" } }, - "title": "GamepadButton.touched" + "title": "GamepadButton: touched property" } ], "dom-gamepadbutton-value": [ @@ -491,7 +490,7 @@ "version_added": "79" } }, - "title": "GamepadButton.value" + "title": "GamepadButton: value property" } ], "gamepadbutton-interface": [ @@ -581,7 +580,7 @@ "version_added": "79" } }, - "title": "GamepadEvent()" + "title": "GamepadEvent: GamepadEvent() constructor" } ], "dom-gamepadevent-gamepad": [ @@ -626,7 +625,7 @@ "version_added": "79" } }, - "title": "GamepadEvent.gamepad" + "title": "GamepadEvent: gamepad property" } ], "gamepadevent-interface": [ @@ -736,7 +735,7 @@ } ] }, - "title": "Navigator.getGamepads()" + "title": "Navigator: getGamepads() method" } ], "event-gamepadconnected": [ @@ -904,7 +903,7 @@ "name": "gamepad", "slug": "HTTP/Headers/Feature-Policy/gamepad", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/gamepad", - "summary": "The HTTP Feature-Policy header gamepad directive controls whether the current document is allowed to use the Gamepad API. When this policy is disabled, calls to Navigator.getGamepads() will throw a SecurityError DOMException. In addition, the gamepadconnected and gamepaddisconnected events will not fire.", + "summary": "The HTTP Permissions-Policy header gamepad directive controls whether the current document is allowed to use the Gamepad API.", "support": { "chrome": { "version_added": "86", @@ -950,7 +949,51 @@ ] } }, - "title": "Feature-Policy: gamepad" + "title": "Permissions-Policy: gamepad" + }, + { + "engines": [], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "gamepad", + "slug": "HTTP/Headers/Permissions-Policy/gamepad", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/gamepad", + "summary": "The HTTP Permissions-Policy header gamepad directive controls whether the current document is allowed to use the Gamepad API.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "91", + "alternative_name": "Feature-Policy: gamepad", + "partial_implementation": true, + "notes": [ + "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements.", + "The default allowlist is <code>*</code> instead of <code>self</code> (as required by the specification)." + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Permissions-Policy: gamepad" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/generic-sensor.json b/bikeshed/spec-data/readonly/mdn/generic-sensor.json index 19f2bcf0be..d3e0d002c9 100644 --- a/bikeshed/spec-data/readonly/mdn/generic-sensor.json +++ b/bikeshed/spec-data/readonly/mdn/generic-sensor.json @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "Sensor.activated" + "title": "Sensor: activated property" } ], "sensor-onerror": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "Sensor.hasReading" + "title": "Sensor: hasReading property" } ], "sensor-onreading": [ @@ -230,7 +230,7 @@ "version_added": "79" } }, - "title": "Sensor.start()" + "title": "Sensor: start() method" } ], "sensor-stop": [ @@ -269,7 +269,7 @@ "version_added": "79" } }, - "title": "Sensor.stop()" + "title": "Sensor: stop() method" } ], "sensor-timestamp": [ @@ -281,7 +281,7 @@ "name": "timestamp", "slug": "API/Sensor/timestamp", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Sensor/timestamp", - "summary": "The timestamp read-only property of the Sensor interface returns the time stamp of the latest sensor reading.", + "summary": "The timestamp read-only property of the Sensor interface returns the timestamp of the latest sensor reading.", "support": { "chrome": { "version_added": "67" @@ -308,7 +308,7 @@ "version_added": "79" } }, - "title": "Sensor.timestamp" + "title": "Sensor: timestamp property" } ], "the-sensor-interface": [ @@ -386,7 +386,7 @@ "version_added": "79" } }, - "title": "SensorErrorEvent()" + "title": "SensorErrorEvent: SensorErrorEvent() constructor" } ], "dom-sensorerrorevent-error": [ @@ -425,7 +425,7 @@ "version_added": "79" } }, - "title": "SensorErrorEvent.error" + "title": "SensorErrorEvent: error property" } ], "the-sensor-error-event-interface": [ @@ -466,5 +466,205 @@ }, "title": "SensorErrorEvent" } + ], + "permissions-policy": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "accelerometer", + "slug": "HTTP/Headers/Permissions-Policy/accelerometer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/accelerometer", + "summary": "The HTTP Permissions-Policy header accelerometer directive controls whether the current document is allowed to gather information about the acceleration of the device through the Accelerometer interface.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "66", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: accelerometer" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "ambient-light-sensor", + "slug": "HTTP/Headers/Permissions-Policy/ambient-light-sensor", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/ambient-light-sensor", + "summary": "The HTTP Permissions-Policy header ambient-light-sensor directive controls whether the current document is allowed to gather information about the amount of light in the environment around the device through the AmbientLightSensor interface.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "66", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: ambient-light-sensor" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "gyroscope", + "slug": "HTTP/Headers/Permissions-Policy/gyroscope", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/gyroscope", + "summary": "The HTTP Permissions-Policy header gyroscope directive controls whether the current document is allowed to gather information about the orientation of the device through the Gyroscope interface.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "66", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: gyroscope" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "magnetometer", + "slug": "HTTP/Headers/Permissions-Policy/magnetometer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/magnetometer", + "summary": "The HTTP Permissions-Policy header magnetometer directive controls whether the current document is allowed to gather information about the orientation of the device through the Magnetometer interface.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "66", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: magnetometer" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/geolocation-api.json b/bikeshed/spec-data/readonly/mdn/geolocation-api.json index 260e3de8e8..0351a9b525 100644 --- a/bikeshed/spec-data/readonly/mdn/geolocation-api.json +++ b/bikeshed/spec-data/readonly/mdn/geolocation-api.json @@ -47,7 +47,7 @@ "version_added": "79" } }, - "title": "Geolocation.clearWatch()" + "title": "Geolocation: clearWatch() method" } ], "getcurrentposition-method": [ @@ -98,7 +98,7 @@ "version_added": "79" } }, - "title": "Geolocation.getCurrentPosition()" + "title": "Geolocation: getCurrentPosition() method" } ], "watchposition-method": [ @@ -149,7 +149,7 @@ "version_added": "79" } }, - "title": "Geolocation.watchPosition()" + "title": "Geolocation: watchPosition() method" } ], "geolocation_interface": [ @@ -266,7 +266,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.accuracy" + "title": "GeolocationCoordinates: accuracy property" }, { "engines": [ @@ -327,7 +327,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.latitude" + "title": "GeolocationCoordinates: latitude property" }, { "engines": [ @@ -339,7 +339,7 @@ "name": "longitude", "slug": "API/GeolocationCoordinates/longitude", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/longitude", - "summary": "The GeolocationCoordinates interface's read-only longitude property is a double-precision floating point value which represents the longitude of a geographical position, specified in decimal degrees. Together with a DOMTimeStamp indicating a time of measurement, the GeolocationCoordinates object is part of the GeolocationPosition interface, which is the object type returned by Geolocation API functions that obtain and return a geographical position.", + "summary": "The GeolocationCoordinates interface's read-only longitude property is a number which represents the longitude of a geographical position, specified in decimal degrees. Together with a timestamp, given as Unix time in milliseconds, indicating a time of measurement, the GeolocationCoordinates object is part of the GeolocationPosition interface, which is the object type returned by Geolocation API functions that obtain and return a geographical position.", "support": { "chrome": { "version_added": "5" @@ -388,7 +388,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.longitude" + "title": "GeolocationCoordinates: longitude property" } ], "altitude-and-altitudeaccuracy-attributes": [ @@ -451,7 +451,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.altitude" + "title": "GeolocationCoordinates: altitude property" }, { "engines": [ @@ -512,7 +512,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.altitudeAccuracy" + "title": "GeolocationCoordinates: altitudeAccuracy property" } ], "heading-attribute": [ @@ -575,7 +575,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.heading" + "title": "GeolocationCoordinates: heading property" } ], "speed-attribute": [ @@ -638,7 +638,7 @@ "version_added": "79" } }, - "title": "GeolocationCoordinates.speed" + "title": "GeolocationCoordinates: speed property" } ], "coordinates_interface": [ @@ -799,7 +799,7 @@ "version_added": "79" } }, - "title": "GeolocationPosition.coords" + "title": "GeolocationPosition: coords property" } ], "timestamp-attribute": [ @@ -813,7 +813,7 @@ "name": "timestamp", "slug": "API/GeolocationPosition/timestamp", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GeolocationPosition/timestamp", - "summary": "The GeolocationPosition.timestamp read-only property returns a EpochTimeStamp object that represents the date and time that the position was acquired by the device.", + "summary": "The GeolocationPosition.timestamp read-only property represents the date and time that the position was acquired by the device.", "support": { "chrome": { "version_added": "5" @@ -850,7 +850,7 @@ "version_added": "79" } }, - "title": "GeolocationPosition.timestamp" + "title": "GeolocationPosition: timestamp property" } ], "position_interface": [ @@ -995,7 +995,7 @@ "version_added": "79" } }, - "title": "GeolocationPositionError.code" + "title": "GeolocationPositionError: code property" } ], "message-attribute": [ @@ -1044,16 +1044,14 @@ "version_added": "79" } }, - "title": "GeolocationPositionError.message" + "title": "GeolocationPositionError: message property" } ], "position_error_interface": [ { "engines": [ "blink", - "gecko" - ], - "altname": [ + "gecko", "webkit" ], "filename": "api/GeolocationPositionError.json", @@ -1100,10 +1098,15 @@ "alternative_name": "PositionError", "version_added": "16" }, - "safari": { - "alternative_name": "PositionError", - "version_added": "5" - }, + "safari": [ + { + "version_added": "13.1" + }, + { + "alternative_name": "PositionError", + "version_added": "5" + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": [ @@ -1141,7 +1144,7 @@ "name": "geolocation", "slug": "API/Navigator/geolocation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/geolocation", - "summary": "The Navigator.geolocation read-only property returns a Geolocation object that gives Web content access to the location of the device. This allows a Web site or app to offer customized results based on the user's location.", + "summary": "The Navigator.geolocation read-only property returns a Geolocation object that gives Web content access to the location of the device. This allows a website or app to offer customized results based on the user's location.", "support": { "chrome": { "version_added": "5" @@ -1178,7 +1181,7 @@ "version_added": "79" } }, - "title": "Navigator.geolocation" + "title": "Navigator: geolocation property" } ], "dfn-geolocation": [ @@ -1193,7 +1196,7 @@ "name": "geolocation", "slug": "HTTP/Headers/Feature-Policy/geolocation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/geolocation", - "summary": "The HTTP Feature-Policy header geolocation directive controls whether the current document is allowed to use the Geolocation Interface. When this policy is enabled, calls to getCurrentPosition() and watchPosition() will cause those functions' callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.", + "summary": "The HTTP Permissions-Policy header geolocation directive controls whether the current document is allowed to use the Geolocation Interface.", "support": { "chrome": { "version_added": "60" @@ -1222,7 +1225,64 @@ "version_added": "79" } }, - "title": "Feature-Policy: geolocation" + "title": "Permissions-Policy: geolocation" + } + ], + "permissions-policy": [ + { + "engines": [ + "blink" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "geolocation", + "slug": "HTTP/Headers/Permissions-Policy/geolocation", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/geolocation", + "summary": "The HTTP Permissions-Policy header geolocation directive controls whether the current document is allowed to use the Geolocation Interface.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: geolocation", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: geolocation" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/geometry.json b/bikeshed/spec-data/readonly/mdn/geometry.json index 488dfa6d06..b769195eb7 100644 --- a/bikeshed/spec-data/readonly/mdn/geometry.json +++ b/bikeshed/spec-data/readonly/mdn/geometry.json @@ -12,32 +12,121 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix/DOMMatrix", "summary": "The DOMMatrix constructor creates a new DOMMatrix object which represents 4x4 matrices, suitable for 2D and 3D operations.", "support": { - "chrome": { - "version_added": "61" - }, + "chrome": [ + { + "version_added": "61" + }, + { + "version_added": "5", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "2", + "alternative_name": "WebKitCSSMatrix" + } + ], "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "33" - }, - "firefox_android": "mirror", - "ie": { + "edge": { "version_added": false }, + "firefox": [ + { + "version_added": "33" + }, + { + "version_added": "49", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "1.5", + "alternative_name": "SVGMatrix" + } + ], + "firefox_android": "mirror", + "ie": [ + { + "version_added": "11", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "10", + "alternative_name": "MSCSSMatrix" + }, + { + "version_added": "9", + "alternative_name": "SVGMatrix" + } + ], "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", + "opera": [ + { + "version_added": "48" + }, + { + "version_added": "15", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "12.1", + "alternative_name": "SVGMatrix" + } + ], + "opera_android": [ + { + "version_added": "48" + }, + { + "version_added": "14", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "12.1", + "alternative_name": "SVGMatrix" + } + ], + "safari": [ + { + "version_added": "11" + }, + { + "version_added": "5", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "4", + "alternative_name": "WebKitCSSMatrix" + } + ], + "safari_ios": [ + { + "version_added": "11" + }, + { + "version_added": "4", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "3", + "alternative_name": "WebKitCSSMatrix" + } + ], "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } + "edge_blink": [ + { + "version_added": "79" + }, + { + "version_added": "79", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "79", + "alternative_name": "WebKitCSSMatrix" + } + ] }, - "title": "DOMMatrix()" + "title": "DOMMatrix: DOMMatrix() constructor" } ], "DOMMatrix": [ @@ -53,30 +142,119 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix", "summary": "The DOMMatrix interface represents 4×4 matrices, suitable for 2D and 3D operations including rotation and translation. It is a mutable version of the DOMMatrixReadOnly interface.", "support": { - "chrome": { - "version_added": "61" - }, + "chrome": [ + { + "version_added": "61" + }, + { + "version_added": "5", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "2", + "alternative_name": "WebKitCSSMatrix" + } + ], "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "33" - }, - "firefox_android": "mirror", - "ie": { + "edge": { "version_added": false }, + "firefox": [ + { + "version_added": "33" + }, + { + "version_added": "49", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "1.5", + "alternative_name": "SVGMatrix" + } + ], + "firefox_android": "mirror", + "ie": [ + { + "version_added": "11", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "10", + "alternative_name": "MSCSSMatrix" + }, + { + "version_added": "9", + "alternative_name": "SVGMatrix" + } + ], "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", + "opera": [ + { + "version_added": "48" + }, + { + "version_added": "15", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "12.1", + "alternative_name": "SVGMatrix" + } + ], + "opera_android": [ + { + "version_added": "48" + }, + { + "version_added": "14", + "alternative_name": "WebKitCSSMatrix" + }, + { + "version_added": "12.1", + "alternative_name": "SVGMatrix" + } + ], + "safari": [ + { + "version_added": "11" + }, + { + "version_added": "5", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "4", + "alternative_name": "WebKitCSSMatrix" + } + ], + "safari_ios": [ + { + "version_added": "11" + }, + { + "version_added": "4", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "3", + "alternative_name": "WebKitCSSMatrix" + } + ], "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } + "edge_blink": [ + { + "version_added": "79" + }, + { + "version_added": "79", + "alternative_name": "SVGMatrix" + }, + { + "version_added": "79", + "alternative_name": "WebKitCSSMatrix" + } + ] }, "title": "DOMMatrix (WebKitCSSMatrix)" }, @@ -118,57 +296,6 @@ } }, "title": "DOMMatrixReadOnly" - }, - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/WebKitCSSMatrix.json", - "name": "WebKitCSSMatrix", - "slug": "API/DOMMatrix", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix", - "summary": "The DOMMatrix interface represents 4×4 matrices, suitable for 2D and 3D operations including rotation and translation. It is a mutable version of the DOMMatrixReadOnly interface.", - "support": { - "chrome": { - "version_added": "2" - }, - "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "49" - }, - "firefox_android": "mirror", - "ie": [ - { - "version_added": "11" - }, - { - "version_added": "10", - "alternative_name": "MSCSSMatrix" - } - ], - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "4" - }, - "safari_ios": { - "version_added": "3" - }, - "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "2" - }, - "edge_blink": { - "version_added": "79" - } - }, - "title": "DOMMatrix (WebKitCSSMatrix)" } ], "dom-dommatrixreadonly-dommatrixreadonly": [ @@ -209,7 +336,7 @@ "version_added": "79" } }, - "title": "DOMMatrixReadOnly()" + "title": "DOMMatrixReadOnly: DOMMatrixReadOnly() constructor" } ], "dom-dommatrixreadonly-flipx": [ @@ -223,7 +350,7 @@ "name": "flipX", "slug": "API/DOMMatrixReadOnly/flipX", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrixReadOnly/flipX", - "summary": "Returns a DOMMatrix containing a new matrix being the result of the original matrix flipped about the x-axis, which is equivalent to multiplying the matrix by DOMMatrix(-1, 0, 0, 1, 0, 0). The original matrix is not modified.", + "summary": "The flipX() method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix flipped about the x-axis.", "support": { "chrome": { "version_added": "61" @@ -250,7 +377,7 @@ "version_added": "79" } }, - "title": "DOMMatrixReadOnly.flipX()" + "title": "DOMMatrixReadOnly: flipX() method" } ], "dom-dommatrixreadonly-scale": [ @@ -295,7 +422,7 @@ "version_added": "79" } }, - "title": "DOMMatrixReadOnly.scale()" + "title": "DOMMatrixReadOnly: scale() method" } ], "dom-dommatrixreadonly-translate": [ @@ -336,7 +463,7 @@ "version_added": "79" } }, - "title": "DOMMatrixReadOnly.translate()" + "title": "DOMMatrixReadOnly: translate() method" } ], "dom-dompoint-dompoint": [ @@ -377,7 +504,7 @@ "version_added": "79" } }, - "title": "DOMPoint()" + "title": "DOMPoint: DOMPoint() constructor" } ], "dom-dompoint-frompoint": [ @@ -388,10 +515,10 @@ "webkit" ], "filename": "api/DOMPoint.json", - "name": "fromPoint", - "slug": "API/DOMPoint/fromPoint", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMPoint/fromPoint", - "summary": "The static DOMPoint method fromPoint() creates and returns a new mutable DOMPoint object given a source point.", + "name": "fromPoint_static", + "slug": "API/DOMPoint/fromPoint_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMPoint/fromPoint_static", + "summary": "The DOMPoint static method fromPoint() creates and returns a new mutable DOMPoint object given a source point.", "support": { "chrome": { "version_added": "61" @@ -399,7 +526,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "31" + "version_added": "62" }, "firefox_android": "mirror", "ie": { @@ -418,7 +545,7 @@ "version_added": "79" } }, - "title": "DOMPoint.fromPoint()" + "title": "DOMPoint: fromPoint() static method" } ], "dom-dompointreadonly-w": [ @@ -459,7 +586,7 @@ "version_added": "79" } }, - "title": "DOMPoint.w" + "title": "DOMPoint: w property" }, { "engines": [ @@ -498,7 +625,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly.w" + "title": "DOMPointReadOnly: w property" } ], "dom-dompointreadonly-x": [ @@ -539,7 +666,7 @@ "version_added": "79" } }, - "title": "DOMPoint.x" + "title": "DOMPoint: x property" }, { "engines": [ @@ -578,7 +705,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly.x" + "title": "DOMPointReadOnly: x property" } ], "dom-dompointreadonly-y": [ @@ -619,7 +746,7 @@ "version_added": "79" } }, - "title": "DOMPoint.y" + "title": "DOMPoint: y property" }, { "engines": [ @@ -658,7 +785,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly.y" + "title": "DOMPointReadOnly: y property" } ], "dom-dompointreadonly-z": [ @@ -699,7 +826,7 @@ "version_added": "79" } }, - "title": "DOMPoint.z" + "title": "DOMPoint: z property" }, { "engines": [ @@ -738,7 +865,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly.z" + "title": "DOMPointReadOnly: z property" } ], "DOMPoint": [ @@ -859,7 +986,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly()" + "title": "DOMPointReadOnly: DOMPointReadOnly() constructor" } ], "dom-dompointreadonly-frompoint": [ @@ -870,9 +997,9 @@ "webkit" ], "filename": "api/DOMPointReadOnly.json", - "name": "fromPoint", - "slug": "API/DOMPointReadOnly/fromPoint", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMPointReadOnly/fromPoint", + "name": "fromPoint_static", + "slug": "API/DOMPointReadOnly/fromPoint_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMPointReadOnly/fromPoint_static", "summary": "The static DOMPointReadOnly method fromPoint() creates and returns a new DOMPointReadOnly object given a source point.", "support": { "chrome": { @@ -900,7 +1027,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly.fromPoint()" + "title": "DOMPointReadOnly: fromPoint() static method" } ], "dom-dompointreadonly-tojson": [ @@ -941,7 +1068,7 @@ "version_added": "79" } }, - "title": "DOMPointReadOnly.toJSON()" + "title": "DOMPointReadOnly: toJSON() method" } ], "DOMQuad": [ @@ -1023,7 +1150,7 @@ "version_added": "79" } }, - "title": "DOMRect()" + "title": "DOMRect: DOMRect() constructor" } ], "DOMRect": [ @@ -1314,7 +1441,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly()" + "title": "DOMRectReadOnly: DOMRectReadOnly() constructor" } ], "dom-domrectreadonly-bottom": [ @@ -1363,7 +1490,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.bottom" + "title": "DOMRectReadOnly: bottom property" } ], "dom-domrectreadonly-fromrect": [ @@ -1374,9 +1501,9 @@ "webkit" ], "filename": "api/DOMRectReadOnly.json", - "name": "fromRect", - "slug": "API/DOMRectReadOnly/fromRect", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly/fromRect", + "name": "fromRect_static", + "slug": "API/DOMRectReadOnly/fromRect_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly/fromRect_static", "summary": "The fromRect() static method of the DOMRectReadOnly object creates a new DOMRectReadOnly object with a given location and dimensions.", "support": { "chrome": { @@ -1404,7 +1531,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.fromRect()" + "title": "DOMRectReadOnly: fromRect() static method" } ], "dom-domrectreadonly-height": [ @@ -1453,7 +1580,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.height" + "title": "DOMRectReadOnly: height property" } ], "dom-domrectreadonly-left": [ @@ -1502,7 +1629,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.left" + "title": "DOMRectReadOnly: left property" } ], "dom-domrectreadonly-right": [ @@ -1551,7 +1678,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.right" + "title": "DOMRectReadOnly: right property" } ], "dom-domrectreadonly-top": [ @@ -1600,7 +1727,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.top" + "title": "DOMRectReadOnly: top property" } ], "dom-domrectreadonly-width": [ @@ -1649,7 +1776,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.width" + "title": "DOMRectReadOnly: width property" } ], "dom-domrectreadonly-x": [ @@ -1690,7 +1817,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.x" + "title": "DOMRectReadOnly: x property" } ], "dom-domrectreadonly-y": [ @@ -1731,7 +1858,7 @@ "version_added": "79" } }, - "title": "DOMRectReadOnly.y" + "title": "DOMRectReadOnly: y property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/gpc.json b/bikeshed/spec-data/readonly/mdn/gpc.json new file mode 100644 index 0000000000..5a0ce32136 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/gpc.json @@ -0,0 +1,57 @@ +{ + "the-sec-gpc-header-field-for-http-requests": [ + { + "engines": [ + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "http/headers/Sec-GPC.json", + "name": "Sec-GPC", + "slug": "HTTP/Headers/Sec-GPC", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-GPC", + "summary": "The Sec-GPC (Global Privacy Control) request header indicates whether the user consents to a website or service selling or sharing their personal information with third parties.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "95", + "impl_url": "https://hg.mozilla.org/mozilla-central/rev/09e51e6d4a7e", + "flags": [ + { + "type": "preference", + "name": "privacy.globalprivacycontrol.enabled", + "value_to_set": "true" + }, + { + "type": "preference", + "name": "privacy.globalprivacycontrol.functionality.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Sec-GPC" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/gyroscope.json b/bikeshed/spec-data/readonly/mdn/gyroscope.json index d7d611203a..eb19fb4349 100644 --- a/bikeshed/spec-data/readonly/mdn/gyroscope.json +++ b/bikeshed/spec-data/readonly/mdn/gyroscope.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "Gyroscope()" + "title": "Gyroscope: Gyroscope() constructor" } ], "gyroscope-x": [ @@ -47,7 +47,7 @@ "name": "x", "slug": "API/Gyroscope/x", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Gyroscope/x", - "summary": "The x read-only property of the Gyroscope interface returns a double precision integer containing the angular velocity of the device along the its x axis.", + "summary": "The x read-only property of the Gyroscope interface returns a number specifying the angular velocity of the device along its x-axis.", "support": { "chrome": { "version_added": "67" @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "Gyroscope.x" + "title": "Gyroscope: x property" } ], "gyroscope-y": [ @@ -86,7 +86,7 @@ "name": "y", "slug": "API/Gyroscope/y", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Gyroscope/y", - "summary": "The y read-only property of the Gyroscope interface returns a double precision integer containing the angular velocity of the device along the its y axis.", + "summary": "The y read-only property of the Gyroscope interface returns a number specifying the angular velocity of the device along its y-axis.", "support": { "chrome": { "version_added": "67" @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "Gyroscope.y" + "title": "Gyroscope: y property" } ], "gyroscope-z": [ @@ -125,7 +125,7 @@ "name": "z", "slug": "API/Gyroscope/z", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Gyroscope/z", - "summary": "The z read-only property of the Gyroscope interface returns a double precision integer containing the angular velocity of the device along the its z axis.", + "summary": "The z read-only property of the Gyroscope interface returns a number specifying the angular velocity of the device along its z-axis.", "support": { "chrome": { "version_added": "67" @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "Gyroscope.z" + "title": "Gyroscope: z property" } ], "gyroscope-interface": [ @@ -203,7 +203,7 @@ "name": "gyroscope", "slug": "HTTP/Headers/Feature-Policy/gyroscope", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/gyroscope", - "summary": "The HTTP Feature-Policy header gyroscope directive controls whether the current document is allowed to gather information about the orientation of the device through the Gyroscope interface.", + "summary": "The HTTP Permissions-Policy header gyroscope directive controls whether the current document is allowed to gather information about the orientation of the device through the Gyroscope interface.", "support": { "chrome": { "version_added": "67" @@ -230,7 +230,7 @@ "version_added": "79" } }, - "title": "Feature-Policy: gyroscope" + "title": "Permissions-Policy: gyroscope" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/hr-time.json b/bikeshed/spec-data/readonly/mdn/hr-time.json index 8c36d6f510..52b5352d0e 100644 --- a/bikeshed/spec-data/readonly/mdn/hr-time.json +++ b/bikeshed/spec-data/readonly/mdn/hr-time.json @@ -10,7 +10,7 @@ "name": "now", "slug": "API/Performance/now", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/now", - "summary": "The performance.now() method returns a DOMHighResTimeStamp, measured in milliseconds.", + "summary": "The performance.now() method returns a high resolution timestamp in milliseconds. It represents the time elapsed since Performance.timeOrigin (the time when navigation has started in window contexts, or the time when the worker is run in Worker and ServiceWorker contexts).", "support": { "chrome": [ { @@ -66,7 +66,7 @@ } ] }, - "title": "performance.now()" + "title": "Performance: now() method" } ], "dom-performance-timeorigin": [ @@ -80,7 +80,7 @@ "name": "timeOrigin", "slug": "API/Performance/timeOrigin", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/timeOrigin", - "summary": "The timeOrigin read-only property of the Performance interface returns the high resolution timestamp of the start time of the performance measurement.", + "summary": "The timeOrigin read-only property of the Performance interface returns the high resolution timestamp that is used as the baseline for performance-related timestamps.", "support": { "chrome": { "version_added": "62" @@ -115,7 +115,7 @@ "version_added": "79" } }, - "title": "Performance.timeOrigin" + "title": "Performance: timeOrigin property" } ], "dom-performance-tojson": [ @@ -129,7 +129,7 @@ "name": "toJSON", "slug": "API/Performance/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/toJSON", - "summary": "The toJSON() method of the Performance interface is a standard serializer: it returns a JSON representation of the performance object's properties.", + "summary": "The toJSON() method of the Performance interface is a serializer; it returns a JSON representation of the Performance object.", "support": { "chrome": { "version_added": "56" @@ -168,7 +168,7 @@ "version_added": "79" } }, - "title": "performance.toJSON()" + "title": "Performance: toJSON() method" } ], "sec-performance": [ @@ -182,7 +182,7 @@ "name": "Performance", "slug": "API/Performance", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance", - "summary": "The Performance interface provides access to performance-related information for the current page. It's part of the High Resolution Time API, but is enhanced by the Performance Timeline API, the Navigation Timing API, the User Timing API, and the Resource Timing API.", + "summary": "The Performance interface provides access to performance-related information for the current page.", "support": { "chrome": { "version_added": "6" @@ -237,7 +237,7 @@ "name": "performance", "slug": "API/performance_property", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/performance_property", - "summary": "The global performance property returns a Performance object, which can be used to gather performance information about the current document. It serves as the point of exposure for the Performance Timeline API, the High Resolution Time API, the Navigation Timing API, the User Timing API, and the Resource Timing API.", + "summary": "The global performance property returns a Performance object, which can be used to gather performance information about the context it is called in (window or worker).", "support": { "chrome": { "version_added": "6" @@ -273,7 +273,7 @@ "version_added": "79" } }, - "title": "self.performance" + "title": "performance global property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/html-media-capture.json b/bikeshed/spec-data/readonly/mdn/html-media-capture.json index 5fc7d4ee63..6ad32b57c0 100644 --- a/bikeshed/spec-data/readonly/mdn/html-media-capture.json +++ b/bikeshed/spec-data/readonly/mdn/html-media-capture.json @@ -1,5 +1,5 @@ { - "the-capture-attribute": [ + "dfn-capture": [ { "engines": [ "blink", diff --git a/bikeshed/spec-data/readonly/mdn/html.json b/bikeshed/spec-data/readonly/mdn/html.json index 813b2c6b39..884c16453f 100644 --- a/bikeshed/spec-data/readonly/mdn/html.json +++ b/bikeshed/spec-data/readonly/mdn/html.json @@ -64,7 +64,7 @@ ] } }, - "title": "AudioTrack.enabled" + "title": "AudioTrack: enabled property" } ], "dom-audiotrack-id-dev": [ @@ -132,7 +132,7 @@ ] } }, - "title": "AudioTrack.id" + "title": "AudioTrack: id property" } ], "dom-audiotrack-kind-dev": [ @@ -200,7 +200,7 @@ ] } }, - "title": "AudioTrack.kind" + "title": "AudioTrack: kind property" } ], "dom-audiotrack-label-dev": [ @@ -268,7 +268,7 @@ ] } }, - "title": "AudioTrack.label" + "title": "AudioTrack: label property" } ], "dom-audiotrack-language-dev": [ @@ -336,7 +336,7 @@ ] } }, - "title": "AudioTrack.language" + "title": "AudioTrack: language property" } ], "audiotrack": [ @@ -1188,7 +1188,7 @@ ] } }, - "title": "AudioTrackList.getTrackById()" + "title": "AudioTrackList: getTrackById() method" } ], "dom-audiotracklist-length-dev": [ @@ -1256,7 +1256,7 @@ ] } }, - "title": "AudioTrackList.length" + "title": "AudioTrackList: length property" } ], "event-media-removetrack": [ @@ -1893,7 +1893,7 @@ "version_added": "79" } }, - "title": "BarProp.visible" + "title": "BarProp: visible property" } ], "barprop": [ @@ -1963,9 +1963,7 @@ "deno": { "version_added": "1.24" }, - "edge": { - "version_added": "12" - }, + "edge": "mirror", "firefox": { "version_added": "1.5" }, @@ -2037,7 +2035,7 @@ "version_added": "79" } }, - "title": "BroadcastChannel()" + "title": "BroadcastChannel: BroadcastChannel() constructor" } ], "dom-broadcastchannel-close-dev": [ @@ -2084,7 +2082,7 @@ "version_added": "79" } }, - "title": "BroadcastChannel.close()" + "title": "BroadcastChannel: close() method" } ], "event-message": [ @@ -2248,7 +2246,7 @@ "summary": "The message event is fired on a MessagePort object when a message arrives on that channel.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -2513,7 +2511,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/DedicatedWorkerGlobalScope.json", "name": "messageerror_event", @@ -2544,7 +2543,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -2559,7 +2558,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/MessagePort.json", "name": "messageerror_event", @@ -2601,7 +2601,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -2616,7 +2616,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Window.json", "name": "messageerror_event", @@ -2644,7 +2645,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -2659,7 +2660,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Worker.json", "name": "messageerror_event", @@ -2693,7 +2695,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -2799,7 +2801,7 @@ "version_added": "79" } }, - "title": "BroadcastChannel.name" + "title": "BroadcastChannel: name property" } ], "dom-broadcastchannel-postmessage-dev": [ @@ -2846,7 +2848,7 @@ "version_added": "79" } }, - "title": "BroadcastChannel.postMessage()" + "title": "BroadcastChannel: postMessage() method" } ], "broadcasting-to-other-browsing-contexts": [ @@ -3007,7 +3009,7 @@ "version_added": "79" } }, - "title": "CanvasGradient.addColorStop()" + "title": "CanvasGradient: addColorStop() method" } ], "canvasgradient": [ @@ -3071,7 +3073,7 @@ "name": "setTransform", "slug": "API/CanvasPattern/setTransform", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasPattern/setTransform", - "summary": "The CanvasPattern.setTransform() method uses an SVGMatrix or DOMMatrix object as the pattern's transformation matrix and invokes it on the pattern.", + "summary": "The CanvasPattern.setTransform() method uses a DOMMatrix object as the pattern's transformation matrix and invokes it on the pattern.", "support": { "chrome": { "version_added": "68" @@ -3098,7 +3100,7 @@ "version_added": "79" } }, - "title": "CanvasPattern.setTransform()" + "title": "CanvasPattern: setTransform() method" } ], "canvaspattern": [ @@ -3194,7 +3196,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.arc()" + "title": "CanvasRenderingContext2D: arc() method" } ], "dom-context-2d-arcto-dev": [ @@ -3241,7 +3243,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.arcTo()" + "title": "CanvasRenderingContext2D: arcTo() method" } ], "dom-context-2d-beginpath-dev": [ @@ -3288,7 +3290,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.beginPath()" + "title": "CanvasRenderingContext2D: beginPath() method" } ], "dom-context-2d-beziercurveto-dev": [ @@ -3335,7 +3337,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.bezierCurveTo()" + "title": "CanvasRenderingContext2D: bezierCurveTo() method" } ], "dom-context-2d-canvas-dev": [ @@ -3384,7 +3386,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.canvas" + "title": "CanvasRenderingContext2D: canvas property" } ], "dom-context-2d-clearrect-dev": [ @@ -3431,7 +3433,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.clearRect()" + "title": "CanvasRenderingContext2D: clearRect() method" } ], "dom-context-2d-clip-dev": [ @@ -3478,7 +3480,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.clip()" + "title": "CanvasRenderingContext2D: clip() method" } ], "dom-context-2d-closepath-dev": [ @@ -3525,7 +3527,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.closePath()" + "title": "CanvasRenderingContext2D: closePath() method" } ], "dom-context-2d-createconicgradient-dev": [ @@ -3546,9 +3548,16 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": "90" - }, + "firefox": [ + { + "version_added": "112" + }, + { + "version_added": "90", + "notes": "Implements an older version of the specification. The gradient starts from a line going vertically up from the center, like the equivalent CSS function.", + "partial_implementation": true + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -3556,9 +3565,16 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15" - }, + "safari": [ + { + "version_added": "16.1" + }, + { + "version_added": "15", + "notes": "Implements an older version of the specification. The gradient starts from a line going vertically up from the center, like the equivalent CSS function.", + "partial_implementation": true + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -3566,7 +3582,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.createConicGradient()" + "title": "CanvasRenderingContext2D: createConicGradient() method" } ], "dom-context-2d-createimagedata-dev": [ @@ -3583,7 +3599,7 @@ "summary": "The CanvasRenderingContext2D.createImageData() method of the Canvas 2D API creates a new, blank ImageData object with the specified dimensions. All of the pixels in the new object are transparent black.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -3615,7 +3631,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.createImageData()" + "title": "CanvasRenderingContext2D: createImageData() method" } ], "dom-context-2d-createlineargradient-dev": [ @@ -3662,7 +3678,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.createLinearGradient()" + "title": "CanvasRenderingContext2D: createLinearGradient() method" } ], "dom-context-2d-createpattern-dev": [ @@ -3709,7 +3725,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.createPattern()" + "title": "CanvasRenderingContext2D: createPattern() method" } ], "dom-context-2d-createradialgradient-dev": [ @@ -3756,7 +3772,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.createRadialGradient()" + "title": "CanvasRenderingContext2D: createRadialGradient() method" } ], "dom-context-2d-direction-dev": [ @@ -3797,7 +3813,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.direction" + "title": "CanvasRenderingContext2D: direction property" } ], "dom-context-2d-drawfocusifneeded-dev": [ @@ -3846,7 +3862,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.drawFocusIfNeeded()" + "title": "CanvasRenderingContext2D: drawFocusIfNeeded() method" } ], "dom-context-2d-drawimage-dev": [ @@ -3893,7 +3909,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.drawImage()" + "title": "CanvasRenderingContext2D: drawImage() method" } ], "dom-context-2d-ellipse-dev": [ @@ -3936,7 +3952,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.ellipse()" + "title": "CanvasRenderingContext2D: ellipse() method" } ], "dom-context-2d-fill-dev": [ @@ -3983,7 +3999,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.fill()" + "title": "CanvasRenderingContext2D: fill() method" } ], "dom-context-2d-fillrect-dev": [ @@ -4030,7 +4046,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.fillRect()" + "title": "CanvasRenderingContext2D: fillRect() method" } ], "dom-context-2d-fillstyle-dev": [ @@ -4077,7 +4093,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.fillStyle" + "title": "CanvasRenderingContext2D: fillStyle property" } ], "dom-context-2d-filltext-dev": [ @@ -4094,7 +4110,7 @@ "summary": "The CanvasRenderingContext2D method fillText(), part of the Canvas 2D API, draws a text string at the specified coordinates, filling the string's characters with the current fillStyle. An optional parameter allows specifying a maximum width for the rendered text, which the user agent will achieve by condensing the text or by using a lower font size.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -4126,7 +4142,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.fillText()" + "title": "CanvasRenderingContext2D: fillText() method" } ], "dom-context-2d-filter-dev": [ @@ -4167,7 +4183,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.filter" + "title": "CanvasRenderingContext2D: filter property" } ], "dom-context-2d-font-dev": [ @@ -4184,7 +4200,7 @@ "summary": "The CanvasRenderingContext2D.font property of the Canvas 2D API specifies the current text style to use when drawing text. This string uses the same syntax as the CSS font specifier.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -4216,7 +4232,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.font" + "title": "CanvasRenderingContext2D: font property" } ], "dom-context-2d-fontkerning": [ @@ -4256,7 +4272,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.fontKerning" + "title": "CanvasRenderingContext2D: fontKerning property" } ], "dom-context-2d-fontstretch": [ @@ -4295,7 +4311,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.fontStretch" + "title": "CanvasRenderingContext2D: fontStretch property" } ], "dom-context-2d-fontvariantcaps": [ @@ -4334,7 +4350,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.fontVariantCaps" + "title": "CanvasRenderingContext2D: fontVariantCaps property" } ], "2dcontext:dom-context-2d-canvas-getcontextattributes-2": [ @@ -4386,7 +4402,7 @@ } ] }, - "title": "CanvasRenderingContext2D.getContextAttributes()" + "title": "CanvasRenderingContext2D: getContextAttributes() method" } ], "dom-context-2d-getimagedata-dev": [ @@ -4403,7 +4419,7 @@ "summary": "The CanvasRenderingContext2D method getImageData() of the Canvas 2D API returns an ImageData object representing the underlying pixel data for a specified portion of the canvas.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -4436,7 +4452,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.getImageData()" + "title": "CanvasRenderingContext2D: getImageData() method" } ], "dom-context-2d-getlinedash-dev": [ @@ -4479,7 +4495,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.getLineDash()" + "title": "CanvasRenderingContext2D: getLineDash() method" } ], "dom-context-2d-gettransform-dev": [ @@ -4520,7 +4536,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.getTransform()" + "title": "CanvasRenderingContext2D: getTransform() method" } ], "dom-context-2d-globalalpha-dev": [ @@ -4567,7 +4583,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.globalAlpha" + "title": "CanvasRenderingContext2D: globalAlpha property" } ], "dom-context-2d-globalcompositeoperation-dev": [ @@ -4614,7 +4630,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.globalCompositeOperation" + "title": "CanvasRenderingContext2D: globalCompositeOperation property" } ], "dom-context-2d-imagesmoothingenabled-dev": [ @@ -4630,30 +4646,16 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/imageSmoothingEnabled", "summary": "The imageSmoothingEnabled property of the CanvasRenderingContext2D interface, part of the Canvas API, determines whether scaled images are smoothed (true, default) or not (false). On getting the imageSmoothingEnabled property, the last value it was set to is returned.", "support": { - "chrome": [ - { - "version_added": "30" - }, - { - "version_added": "21", - "version_removed": "30", - "prefix": "webkit" - } - ], + "chrome": { + "version_added": "30" + }, "chrome_android": "mirror", "edge": { "version_added": "15" }, - "firefox": [ - { - "version_added": "51" - }, - { - "version_added": "3.6", - "version_removed": "51", - "prefix": "moz" - } - ], + "firefox": { + "version_added": "51" + }, "firefox_android": "mirror", "ie": { "version_added": "11", @@ -4668,18 +4670,11 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": [ - { - "version_added": "79" - }, - { - "version_added": false, - "version_removed": "30", - "prefix": "webkit" - } - ] + "edge_blink": { + "version_added": "79" + } }, - "title": "CanvasRenderingContext2D.imageSmoothingEnabled" + "title": "CanvasRenderingContext2D: imageSmoothingEnabled property" } ], "dom-context-2d-imagesmoothingquality-dev": [ @@ -4719,7 +4714,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.imageSmoothingQuality" + "title": "CanvasRenderingContext2D: imageSmoothingQuality property" } ], "dom-context-2d-iscontextlost": [ @@ -4758,7 +4753,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.isContextLost()" + "title": "CanvasRenderingContext2D: isContextLost() method" } ], "dom-context-2d-ispointinpath-dev": [ @@ -4805,7 +4800,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.isPointInPath()" + "title": "CanvasRenderingContext2D: isPointInPath() method" } ], "dom-context-2d-ispointinstroke-dev": [ @@ -4846,7 +4841,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.isPointInStroke()" + "title": "CanvasRenderingContext2D: isPointInStroke() method" } ], "dom-context-2d-letterspacing": [ @@ -4885,7 +4880,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.letterSpacing" + "title": "CanvasRenderingContext2D: letterSpacing property" } ], "dom-context-2d-linecap-dev": [ @@ -4932,7 +4927,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.lineCap" + "title": "CanvasRenderingContext2D: lineCap property" } ], "dom-context-2d-linedashoffset-dev": [ @@ -4981,7 +4976,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.lineDashOffset" + "title": "CanvasRenderingContext2D: lineDashOffset property" } ], "dom-context-2d-linejoin-dev": [ @@ -5028,7 +5023,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.lineJoin" + "title": "CanvasRenderingContext2D: lineJoin property" } ], "dom-context-2d-lineto-dev": [ @@ -5075,7 +5070,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.lineTo()" + "title": "CanvasRenderingContext2D: lineTo() method" } ], "dom-context-2d-linewidth-dev": [ @@ -5122,7 +5117,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.lineWidth" + "title": "CanvasRenderingContext2D: lineWidth property" } ], "dom-context-2d-measuretext-dev": [ @@ -5139,7 +5134,7 @@ "summary": "The CanvasRenderingContext2D.measureText() method returns a TextMetrics object that contains information about the measured text (such as its width, for example).", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -5171,7 +5166,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.measureText()" + "title": "CanvasRenderingContext2D: measureText() method" } ], "dom-context-2d-miterlimit-dev": [ @@ -5218,7 +5213,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.miterLimit" + "title": "CanvasRenderingContext2D: miterLimit property" } ], "dom-context-2d-moveto-dev": [ @@ -5265,7 +5260,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.moveTo()" + "title": "CanvasRenderingContext2D: moveTo() method" } ], "dom-context-2d-putimagedata-dev": [ @@ -5282,7 +5277,7 @@ "summary": "The CanvasRenderingContext2D.putImageData() method of the Canvas 2D API paints data from the given ImageData object onto the canvas. If a dirty rectangle is provided, only the pixels from that rectangle are painted. This method is not affected by the canvas transformation matrix.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -5314,7 +5309,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.putImageData()" + "title": "CanvasRenderingContext2D: putImageData() method" } ], "dom-context-2d-quadraticcurveto-dev": [ @@ -5363,7 +5358,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.quadraticCurveTo()" + "title": "CanvasRenderingContext2D: quadraticCurveTo() method" } ], "dom-context-2d-rect-dev": [ @@ -5410,13 +5405,14 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.rect()" + "title": "CanvasRenderingContext2D: rect() method" } ], "dom-context-2d-reset": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "api/CanvasRenderingContext2D.json", "name": "reset", @@ -5430,8 +5426,46 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { + "version_added": "113" + }, + "firefox_android": "mirror", + "ie": { "version_added": false }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99" + } + }, + "title": "CanvasRenderingContext2D: reset() method" + }, + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/OffscreenCanvasRenderingContext2D.json", + "name": "reset", + "slug": "API/OffscreenCanvasRenderingContext2D#canvasrenderingcontext2d.reset", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvasRenderingContext2D#canvasrenderingcontext2d.reset", + "summary": "The OffscreenCanvasRenderingContext2D interface is a CanvasRenderingContext2D rendering context for drawing to the bitmap of an OffscreenCanvas object. It is similar to the CanvasRenderingContext2D object, with the following differences:", + "support": { + "chrome": { + "version_added": "99" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113" + }, "firefox_android": "mirror", "ie": { "version_added": false @@ -5449,7 +5483,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.reset()" + "title": "OffscreenCanvasRenderingContext2D" } ], "dom-context-2d-resettransform-dev": [ @@ -5490,7 +5524,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.resetTransform()" + "title": "CanvasRenderingContext2D: resetTransform() method" } ], "dom-context-2d-restore-dev": [ @@ -5537,7 +5571,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.restore()" + "title": "CanvasRenderingContext2D: restore() method" } ], "dom-context-2d-rotate-dev": [ @@ -5584,13 +5618,14 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.rotate()" + "title": "CanvasRenderingContext2D: rotate() method" } ], "dom-context-2d-roundrect": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/CanvasRenderingContext2D.json", @@ -5605,7 +5640,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "112" }, "firefox_android": "mirror", "ie": { @@ -5624,7 +5659,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.roundRect()" + "title": "CanvasRenderingContext2D: roundRect() method" } ], "dom-context-2d-save-dev": [ @@ -5671,7 +5706,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.save()" + "title": "CanvasRenderingContext2D: save() method" } ], "dom-context-2d-scale-dev": [ @@ -5718,7 +5753,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.scale()" + "title": "CanvasRenderingContext2D: scale() method" } ], "dom-context-2d-scrollpathintoview-dev": [ @@ -5772,7 +5807,7 @@ ] } }, - "title": "CanvasRenderingContext2D.scrollPathIntoView()" + "title": "CanvasRenderingContext2D: scrollPathIntoView() method" } ], "dom-context-2d-setlinedash-dev": [ @@ -5815,7 +5850,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.setLineDash()" + "title": "CanvasRenderingContext2D: setLineDash() method" } ], "dom-context-2d-settransform-dev": [ @@ -5832,7 +5867,7 @@ "summary": "The CanvasRenderingContext2D.setTransform() method of the Canvas 2D API resets (overrides) the current transformation to the identity matrix, and then invokes a transformation described by the arguments of this method. This lets you scale, rotate, translate (move), and skew the context.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -5864,7 +5899,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.setTransform()" + "title": "CanvasRenderingContext2D: setTransform() method" } ], "dom-context-2d-shadowblur-dev": [ @@ -5911,7 +5946,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.shadowBlur" + "title": "CanvasRenderingContext2D: shadowBlur property" } ], "dom-context-2d-shadowcolor-dev": [ @@ -5958,7 +5993,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.shadowColor" + "title": "CanvasRenderingContext2D: shadowColor property" } ], "dom-context-2d-shadowoffsetx-dev": [ @@ -6005,7 +6040,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.shadowOffsetX" + "title": "CanvasRenderingContext2D: shadowOffsetX property" } ], "dom-context-2d-shadowoffsety-dev": [ @@ -6052,7 +6087,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.shadowOffsetY" + "title": "CanvasRenderingContext2D: shadowOffsetY property" } ], "dom-context-2d-stroke-dev": [ @@ -6099,7 +6134,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.stroke()" + "title": "CanvasRenderingContext2D: stroke() method" } ], "dom-context-2d-strokerect-dev": [ @@ -6146,7 +6181,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.strokeRect()" + "title": "CanvasRenderingContext2D: strokeRect() method" } ], "dom-context-2d-strokestyle-dev": [ @@ -6193,7 +6228,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.strokeStyle" + "title": "CanvasRenderingContext2D: strokeStyle property" } ], "dom-context-2d-stroketext-dev": [ @@ -6210,7 +6245,7 @@ "summary": "The CanvasRenderingContext2D method strokeText(), part of the Canvas 2D API, strokes — that is, draws the outlines of — the characters of a text string at the specified coordinates. An optional parameter allows specifying a maximum width for the rendered text, which the user agent will achieve by condensing the text or by using a lower font size.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -6242,7 +6277,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.strokeText()" + "title": "CanvasRenderingContext2D: strokeText() method" } ], "dom-context-2d-textalign-dev": [ @@ -6259,7 +6294,7 @@ "summary": "The CanvasRenderingContext2D.textAlign property of the Canvas 2D API specifies the current text alignment used when drawing text.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -6291,7 +6326,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.textAlign" + "title": "CanvasRenderingContext2D: textAlign property" } ], "dom-context-2d-textbaseline-dev": [ @@ -6308,7 +6343,7 @@ "summary": "The CanvasRenderingContext2D.textBaseline property of the Canvas 2D API specifies the current text baseline used when drawing text.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -6340,7 +6375,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.textBaseline" + "title": "CanvasRenderingContext2D: textBaseline property" } ], "dom-context-2d-textrendering": [ @@ -6379,7 +6414,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.textRendering" + "title": "CanvasRenderingContext2D: textRendering property" } ], "dom-context-2d-transform-dev": [ @@ -6426,7 +6461,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.transform()" + "title": "CanvasRenderingContext2D: transform() method" } ], "dom-context-2d-translate-dev": [ @@ -6473,7 +6508,7 @@ "version_added": "79" } }, - "title": "CanvasRenderingContext2D.translate()" + "title": "CanvasRenderingContext2D: translate() method" } ], "dom-context-2d-wordspacing": [ @@ -6512,7 +6547,7 @@ "version_added": "99" } }, - "title": "CanvasRenderingContext2D.wordSpacing" + "title": "CanvasRenderingContext2D: wordSpacing property" } ], "2dcontext": [ @@ -6600,7 +6635,7 @@ "version_added": "79" } }, - "title": "CustomElementRegistry.define()" + "title": "CustomElementRegistry: define() method" } ], "dom-customelementregistry-get-dev": [ @@ -6641,29 +6676,31 @@ "version_added": "79" } }, - "title": "CustomElementRegistry.get()" + "title": "CustomElementRegistry: get() method" } ], - "dom-customelementregistry-upgrade-dev": [ + "dom-customelementregistry-getname": [ { "engines": [ "blink", - "gecko", + "gecko" + ], + "partial": [ "webkit" ], "filename": "api/CustomElementRegistry.json", - "name": "upgrade", - "slug": "API/CustomElementRegistry/upgrade", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/upgrade", - "summary": "The upgrade() method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.", + "name": "getName", + "slug": "API/CustomElementRegistry/getName", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/getName", + "summary": "The getName() method of the CustomElementRegistry interface returns the name for a previously-defined custom element.", "support": { "chrome": { - "version_added": "68" + "version_added": "117" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "63" + "version_added": "116" }, "firefox_android": "mirror", "ie": { @@ -6673,19 +6710,21 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "preview", + "partial_implementation": true, + "notes": "Supports 'Autonomous custom elements' but not 'Customized built-in elements'." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "117" } }, - "title": "CustomElementRegistry.upgrade()" + "title": "CustomElementRegistry: getName() method" } ], - "dom-customelementregistry-whendefined-dev": [ + "dom-customelementregistry-upgrade-dev": [ { "engines": [ "blink", @@ -6693,13 +6732,13 @@ "webkit" ], "filename": "api/CustomElementRegistry.json", - "name": "whenDefined", - "slug": "API/CustomElementRegistry/whenDefined", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/whenDefined", - "summary": "The whenDefined() method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.", + "name": "upgrade", + "slug": "API/CustomElementRegistry/upgrade", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/upgrade", + "summary": "The upgrade() method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.", "support": { "chrome": { - "version_added": "54" + "version_added": "68" }, "chrome_android": "mirror", "edge": "mirror", @@ -6714,7 +6753,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6723,10 +6762,10 @@ "version_added": "79" } }, - "title": "CustomElementRegistry.whenDefined()" + "title": "CustomElementRegistry: upgrade() method" } ], - "custom-elements-api": [ + "dom-customelementregistry-whendefined-dev": [ { "engines": [ "blink", @@ -6734,10 +6773,10 @@ "webkit" ], "filename": "api/CustomElementRegistry.json", - "name": "CustomElementRegistry", - "slug": "API/CustomElementRegistry", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry", - "summary": "The CustomElementRegistry interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.", + "name": "whenDefined", + "slug": "API/CustomElementRegistry/whenDefined", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/whenDefined", + "summary": "The whenDefined() method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.", "support": { "chrome": { "version_added": "54" @@ -6764,93 +6803,40 @@ "version_added": "79" } }, - "title": "CustomElementRegistry" + "title": "CustomElementRegistry: whenDefined() method" } ], - "dom-domparser-constructor-dev": [ + "custom-elements-api": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/DOMParser.json", - "name": "DOMParser", - "slug": "API/DOMParser/DOMParser", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/DOMParser", - "summary": "The DOMParser() constructor creates a new DOMParser object. This object can be used to parse the text of a document using the parseFromString() method.", + "filename": "api/CustomElementRegistry.json", + "name": "CustomElementRegistry", + "slug": "API/CustomElementRegistry", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry", + "summary": "The CustomElementRegistry interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.", "support": { "chrome": { - "version_added": "1" + "version_added": "54" }, "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, + "edge": "mirror", "firefox": { - "version_added": "1" + "version_added": "63" }, "firefox_android": "mirror", "ie": { - "version_added": "9" + "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "8" - }, - "opera_android": { - "version_added": "10.1" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": "1.3" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "DOMParser()" - } - ], - "dom-domparser-parsefromstring-dev": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/DOMParser.json", - "name": "parseFromString", - "slug": "API/DOMParser/parseFromString", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString", - "summary": "The parseFromString() method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.", - "support": { - "chrome": { - "version_added": "1" - }, - "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "1" - }, - "firefox_android": "mirror", - "ie": { - "version_added": "9" - }, - "oculus": "mirror", - "opera": { - "version_added": "8" - }, - "opera_android": { "version_added": "10.1" }, - "safari": { - "version_added": "1.3" - }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -6858,10 +6844,10 @@ "version_added": "79" } }, - "title": "DOMParser.parseFromString()" + "title": "CustomElementRegistry" } ], - "dom-parsing-and-serialization": [ + "dom-domparser-constructor-dev": [ { "engines": [ "blink", @@ -6870,9 +6856,103 @@ ], "filename": "api/DOMParser.json", "name": "DOMParser", - "slug": "API/DOMParser", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMParser", - "summary": "The DOMParser interface provides the ability to parse XML or HTML source code from a string into a DOM Document.", + "slug": "API/DOMParser/DOMParser", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/DOMParser", + "summary": "The DOMParser() constructor creates a new DOMParser object. This object can be used to parse the text of a document using the parseFromString() method.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "8" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1.3" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "DOMParser: DOMParser() constructor" + } + ], + "dom-domparser-parsefromstring-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DOMParser.json", + "name": "parseFromString", + "slug": "API/DOMParser/parseFromString", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString", + "summary": "The parseFromString() method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "8" + }, + "opera_android": { + "version_added": "10.1" + }, + "safari": { + "version_added": "1.3" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "DOMParser: parseFromString() method" + } + ], + "dom-parsing-and-serialization": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DOMParser.json", + "name": "DOMParser", + "slug": "API/DOMParser", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMParser", + "summary": "The DOMParser interface provides the ability to parse XML or HTML source code from a string into a DOM Document.", "support": { "chrome": { "version_added": "1" @@ -6908,6 +6988,153 @@ "title": "DOMParser" } ], + "dom-domstringlist-contains": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DOMStringList.json", + "name": "contains", + "slug": "API/DOMStringList/contains", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMStringList/contains", + "summary": "The contains() method returns a boolean indicating whether the given string is in the list.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "5.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "DOMStringList: contains() method" + } + ], + "dom-domstringlist-item": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DOMStringList.json", + "name": "item", + "slug": "API/DOMStringList/item", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMStringList/item", + "summary": "The item() method returns a string from a DOMStringList by index.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "5.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "3" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "DOMStringList: item() method" + } + ], + "dom-domstringlist-length": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/DOMStringList.json", + "name": "length", + "slug": "API/DOMStringList/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMStringList/length", + "summary": "The read-only length property indicates the number of strings in the DOMStringList.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "5.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "DOMStringList: length property" + } + ], "the-domstringlist-interface": [ { "engines": [ @@ -6919,7 +7146,7 @@ "name": "DOMStringList", "slug": "API/DOMStringList", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DOMStringList", - "summary": "A type returned by some APIs which contains a list of DOMString (strings).", + "summary": "The DOMString interface is a legacy type returned by some APIs and represents a non-modifiable list of strings (DOMString). Modern APIs use Array objects (in WebIDL: sequence<DOMString>) instead.", "support": { "chrome": { "version_added": "1" @@ -7050,7 +7277,7 @@ "version_added": "79" } }, - "title": "DataTransfer()" + "title": "DataTransfer: DataTransfer() constructor" } ], "dom-datatransfer-cleardata-dev": [ @@ -7099,7 +7326,7 @@ "version_added": "79" } }, - "title": "DataTransfer.clearData()" + "title": "DataTransfer: clearData() method" } ], "dom-datatransfer-dropeffect-dev": [ @@ -7148,7 +7375,7 @@ "version_added": "79" } }, - "title": "DataTransfer.dropEffect" + "title": "DataTransfer: dropEffect property" } ], "dom-datatransfer-effectallowed-dev": [ @@ -7197,7 +7424,7 @@ "version_added": "79" } }, - "title": "DataTransfer.effectAllowed" + "title": "DataTransfer: effectAllowed property" } ], "dom-datatransfer-files-dev": [ @@ -7246,7 +7473,7 @@ "version_added": "79" } }, - "title": "DataTransfer.files" + "title": "DataTransfer: files property" } ], "dom-datatransfer-getdata-dev": [ @@ -7295,7 +7522,7 @@ "version_added": "79" } }, - "title": "DataTransfer.getData()" + "title": "DataTransfer: getData() method" } ], "dom-datatransfer-items-dev": [ @@ -7312,7 +7539,7 @@ "summary": "The read-only DataTransfer property items property is a list of the data transfer items in a drag operation. The list includes one item for each item in the operation and if the operation had no items, the list is empty.", "support": { "chrome": { - "version_added": "4" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -7346,7 +7573,7 @@ "version_added": "79" } }, - "title": "DataTransfer.items" + "title": "DataTransfer: items property" } ], "dom-datatransfer-setdata-dev": [ @@ -7397,7 +7624,7 @@ "version_added": "79" } }, - "title": "DataTransfer.setData()" + "title": "DataTransfer: setData() method" } ], "dom-datatransfer-setdragimage-dev": [ @@ -7446,7 +7673,7 @@ "version_added": "79" } }, - "title": "DataTransfer.setDragImage()" + "title": "DataTransfer: setDragImage() method" } ], "dom-datatransfer-types-dev": [ @@ -7460,7 +7687,7 @@ "name": "types", "slug": "API/DataTransfer/types", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types", - "summary": "The DataTransfer.types read-only property returns an array of the drag data formats (as strings) that were set in the dragstart event. The order of the formats is the same order as the data included in the drag operation.", + "summary": "The DataTransfer.types read-only property returns the available types that exist in the items.", "support": { "chrome": { "version_added": "3" @@ -7500,7 +7727,7 @@ "version_added": "79" } }, - "title": "DataTransfer.types" + "title": "DataTransfer: types property" } ], "the-datatransfer-interface": [ @@ -7599,7 +7826,7 @@ "version_added": "79" } }, - "title": "DataTransferItem.getAsFile()" + "title": "DataTransferItem: getAsFile() method" } ], "dom-datatransferitem-getasstring-dev": [ @@ -7648,7 +7875,7 @@ "version_added": "79" } }, - "title": "DataTransferItem.getAsString()" + "title": "DataTransferItem: getAsString() method" } ], "dom-datatransferitem-kind-dev": [ @@ -7697,7 +7924,7 @@ "version_added": "79" } }, - "title": "DataTransferItem.kind" + "title": "DataTransferItem: kind property" } ], "dom-datatransferitem-type-dev": [ @@ -7746,7 +7973,7 @@ "version_added": "79" } }, - "title": "DataTransferItem.type" + "title": "DataTransferItem: type property" } ], "the-datatransferitem-interface": [ @@ -7842,7 +8069,7 @@ "version_added": "79" } }, - "title": "DataTransferItemList.add()" + "title": "DataTransferItemList: add() method" } ], "dom-datatransferitemlist-clear-dev": [ @@ -7889,7 +8116,7 @@ "version_added": "79" } }, - "title": "DataTransferItemList.clear()" + "title": "DataTransferItemList: clear() method" } ], "dom-datatransferitemlist-length-dev": [ @@ -7936,7 +8163,7 @@ "version_added": "79" } }, - "title": "DataTransferItemList.length" + "title": "DataTransferItemList: length property" } ], "dom-datatransferitemlist-remove-dev": [ @@ -7983,7 +8210,7 @@ "version_added": "79" } }, - "title": "DataTransferItemList.remove()" + "title": "DataTransferItemList: remove() method" } ], "the-datatransferitemlist-interface": [ @@ -8082,7 +8309,7 @@ "version_added": "79" } }, - "title": "DedicatedWorkerGlobalScope.close()" + "title": "DedicatedWorkerGlobalScope: close() method" } ], "handler-dedicatedworkerglobalscope-onmessage": [ @@ -8143,7 +8370,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/DedicatedWorkerGlobalScope.json", "name": "messageerror_event", @@ -8174,7 +8402,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -8230,7 +8458,7 @@ "version_added": "79" } }, - "title": "DedicatedWorkerGlobalScope.name" + "title": "DedicatedWorkerGlobalScope: name property" } ], "dom-dedicatedworkerglobalscope-postmessage-dev": [ @@ -8312,7 +8540,7 @@ "version_added": "79" } }, - "title": "DedicatedWorkerGlobalScope.postMessage()" + "title": "DedicatedWorkerGlobalScope: postMessage() method" } ], "dedicated-workers-and-the-dedicatedworkerglobalscope-interface": [ @@ -8428,7 +8656,7 @@ "summary": "The activeElement read-only property of the Document interface returns the Element within the DOM that currently has focus.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -8460,7 +8688,7 @@ "version_added": "79" } }, - "title": "Document.activeElement" + "title": "Document: activeElement property" }, { "engines": [ @@ -8499,7 +8727,7 @@ "version_added": "79" } }, - "title": "ShadowRoot.activeElement" + "title": "ShadowRoot: activeElement property" } ], "dom-document-body-dev": [ @@ -8554,7 +8782,7 @@ "version_added": "79" } }, - "title": "Document.body" + "title": "Document: body property" } ], "dom-document-close-dev": [ @@ -8641,7 +8869,7 @@ } ] }, - "title": "Document.close()" + "title": "Document: close() method" } ], "dom-document-cookie": [ @@ -8689,7 +8917,7 @@ "version_added": "79" } }, - "title": "Document.cookie" + "title": "Document: cookie property" } ], "dom-document-currentscript-dev": [ @@ -8732,7 +8960,7 @@ "version_added": "79" } }, - "title": "Document.currentScript" + "title": "Document: currentScript property" } ], "dom-document-defaultview-dev": [ @@ -8779,7 +9007,7 @@ "version_added": "79" } }, - "title": "Document.defaultView" + "title": "Document: defaultView property" } ], "dom-document-designmode-dev": [ @@ -8826,7 +9054,7 @@ "version_added": "79" } }, - "title": "Document.designMode" + "title": "Document: designMode property" } ], "dom-document-dir": [ @@ -8914,7 +9142,7 @@ } ] }, - "title": "Document.dir" + "title": "Document: dir property" } ], "dom-document-embeds-dev": [ @@ -9001,7 +9229,7 @@ } ] }, - "title": "Document.embeds" + "title": "Document: embeds property" } ], "dom-document-forms-dev": [ @@ -9048,7 +9276,7 @@ "version_added": "79" } }, - "title": "Document.forms" + "title": "Document: forms property" } ], "dom-document-getelementsbyname-dev": [ @@ -9096,7 +9324,7 @@ "version_added": "79" } }, - "title": "Document.getElementsByName()" + "title": "Document: getElementsByName() method" } ], "dom-document-hasfocus-dev": [ @@ -9113,7 +9341,7 @@ "summary": "The hasFocus() method of the Document interface returns a boolean value indicating whether the document or any element inside the document has focus. This method can be used to determine whether the active element in a document has focus.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -9141,7 +9369,7 @@ "version_added": "79" } }, - "title": "Document.hasFocus()" + "title": "Document: hasFocus() method" } ], "dom-document-head-dev": [ @@ -9192,7 +9420,7 @@ "version_added": "79" } }, - "title": "Document.head" + "title": "Document: head property" } ], "dom-document-hidden": [ @@ -9267,7 +9495,7 @@ } ] }, - "title": "Document.hidden" + "title": "Document: hidden property" } ], "dom-document-images-dev": [ @@ -9314,7 +9542,7 @@ "version_added": "79" } }, - "title": "Document.images" + "title": "Document: images property" } ], "dom-document-lastmodified-dev": [ @@ -9361,7 +9589,7 @@ "version_added": "79" } }, - "title": "Document.lastModified" + "title": "Document: lastModified property" } ], "dom-document-links-dev": [ @@ -9408,7 +9636,7 @@ "version_added": "79" } }, - "title": "Document.links" + "title": "Document: links property" } ], "the-location-interface": [ @@ -9455,7 +9683,7 @@ "version_added": "79" } }, - "title": "Document.location" + "title": "Document: location property" }, { "engines": [ @@ -9561,7 +9789,7 @@ "version_added": "79" } }, - "title": "Window.location" + "title": "Window: location property" } ], "dom-document-open-dev": [ @@ -9648,7 +9876,7 @@ } ] }, - "title": "Document.open()" + "title": "Document: open() method" } ], "dom-document-plugins-dev": [ @@ -9745,7 +9973,7 @@ } ] }, - "title": "Document.plugins" + "title": "Document: plugins property" } ], "current-document-readiness": [ @@ -9759,7 +9987,7 @@ "name": "readyState", "slug": "API/Document/readyState", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/readyState", - "summary": "The Document.readyState property describes the loading state of the document.", + "summary": "The Document.readyState property describes the loading state of the document. When the value of this property changes, a readystatechange event fires on the document object.", "support": { "chrome": { "version_added": "1" @@ -9807,7 +10035,7 @@ "version_added": "79" } }, - "title": "Document.readyState" + "title": "Document: readyState property" } ], "event-readystatechange": [ @@ -9903,7 +10131,7 @@ "version_added": "79" } }, - "title": "Document.referrer" + "title": "Document: referrer property" } ], "dom-document-scripts-dev": [ @@ -9952,7 +10180,7 @@ "version_added": "79" } }, - "title": "Document.scripts" + "title": "Document: scripts property" } ], "handler-onscroll": [ @@ -9966,7 +10194,7 @@ "name": "scroll_event", "slug": "API/Document/scroll_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/scroll_event", - "summary": "The scroll event fires when the document view has been scrolled. For element scrolling, see Element: scroll event.", + "summary": "The scroll event fires when the document view has been scrolled. To detect when scrolling has completed, see the Document: scrollend event. For element scrolling, see Element: scroll event.", "support": { "chrome": { "version_added": "1" @@ -10011,7 +10239,7 @@ "name": "scroll_event", "slug": "API/Element/scroll_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scroll_event", - "summary": "The scroll event fires when an element has been scrolled.", + "summary": "The scroll event fires when an element has been scrolled. To detect when scrolling has completed, see the Element: scrollend event.", "support": { "chrome": { "version_added": "1" @@ -10047,6 +10275,84 @@ "title": "Element: scroll event" } ], + "handler-onscrollend": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/Document.json", + "name": "scrollend_event", + "slug": "API/Document/scrollend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/scrollend_event", + "summary": "The scrollend event fires when the document view has completed scrolling. Scrolling is considered completed when the scroll position has no more pending updates and the user has completed their gesture.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "109" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "Document: scrollend event" + }, + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/Element.json", + "name": "scrollend_event", + "slug": "API/Element/scrollend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollend_event", + "summary": "The scrollend event fires when element scrolling has completed. Scrolling is considered completed when the scroll position has no more pending updates and the user has completed their gesture.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "109" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "Element: scrollend event" + } + ], "document.title": [ { "engines": [ @@ -10091,7 +10397,7 @@ "version_added": "79" } }, - "title": "Document.title" + "title": "Document: title property" } ], "event-visibilitychange": [ @@ -10489,7 +10795,7 @@ } ] }, - "title": "Document.visibilityState" + "title": "Document: visibilityState property" } ], "dom-document-write-dev": [ @@ -10536,7 +10842,7 @@ "version_added": "79" } }, - "title": "document.write()" + "title": "document: write() method" } ], "dom-document-writeln-dev": [ @@ -10623,7 +10929,7 @@ } ] }, - "title": "document.writeln()" + "title": "document: writeln() method" } ], "the-document-object": [ @@ -10710,7 +11016,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": "3.1" + "version_added": "14" }, "safari_ios": { "version_added": false @@ -10721,7 +11027,7 @@ "version_added": "79" } }, - "title": "DragEvent()" + "title": "DragEvent: DragEvent() constructor" }, { "engines": [ @@ -10736,7 +11042,7 @@ "summary": "The DragEvent interface is a DOM event that represents a drag and drop interaction. The user initiates a drag by placing a pointer device (such as a mouse) on the touch surface and then dragging the pointer to a new location (such as another DOM element). Applications are free to interpret a drag and drop interaction in an application-specific way.", "support": { "chrome": { - "version_added": "3" + "version_added": "46" }, "chrome_android": { "version_added": false @@ -10758,7 +11064,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": "3.1" + "version_added": "14" }, "safari_ios": { "version_added": false @@ -10807,7 +11113,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "3.1" + "version_added": "14" }, "safari_ios": { "version_added": false @@ -10818,7 +11124,7 @@ "version_added": "79" } }, - "title": "DragEvent.dataTransfer" + "title": "DragEvent: dataTransfer property" } ], "handler-onauxclick": [ @@ -11805,6 +12111,49 @@ "title": "Element: paste event" } ], + "handler-onsecuritypolicyviolation": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/Element.json", + "name": "securitypolicyviolation_event", + "slug": "API/Element/securitypolicyviolation_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/securitypolicyviolation_event", + "summary": "The securitypolicyviolation event is fired when a Content Security Policy is violated.", + "support": { + "chrome": { + "version_added": "41" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "15" + }, + "firefox": { + "version_added": "63" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Element: securitypolicyviolation event" + } + ], "handler-onwheel": [ { "engines": [ @@ -11855,7 +12204,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "checkValidity", @@ -11879,7 +12229,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11888,14 +12238,15 @@ "version_added": "79" } }, - "title": "ElementInternals.checkValidity()" + "title": "ElementInternals: checkValidity() method" } ], "dom-elementinternals-form": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "form", @@ -11919,7 +12270,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11928,14 +12279,15 @@ "version_added": "79" } }, - "title": "ElementInternals.form" + "title": "ElementInternals: form property" } ], "dom-elementinternals-labels": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "labels", @@ -11959,7 +12311,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -11968,14 +12320,15 @@ "version_added": "79" } }, - "title": "ElementInternals.labels" + "title": "ElementInternals: labels property" } ], "dom-elementinternals-reportvalidity": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "reportValidity", @@ -11999,7 +12352,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12008,14 +12361,15 @@ "version_added": "79" } }, - "title": "ElementInternals.reportValidity()" + "title": "ElementInternals: reportValidity() method" } ], "dom-elementinternals-setformvalue": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "setFormValue", @@ -12039,7 +12393,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12048,14 +12402,15 @@ "version_added": "79" } }, - "title": "ElementInternals.setFormValue()" + "title": "ElementInternals: setFormValue() method" } ], "dom-elementinternals-setvalidity": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "setValidity", @@ -12079,7 +12434,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12088,14 +12443,15 @@ "version_added": "79" } }, - "title": "ElementInternals.setValidity()" + "title": "ElementInternals: setValidity() method" } ], "dom-elementinternals-shadowroot": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "shadowRoot", @@ -12104,7 +12460,7 @@ "summary": "The shadowRoot read-only property of the ElementInternals interface returns the ShadowRoot for this element.", "support": { "chrome": { - "version_added": "77" + "version_added": "88" }, "chrome_android": "mirror", "edge": "mirror", @@ -12119,23 +12475,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "88" } }, - "title": "ElementInternals.shadowRoot" + "title": "ElementInternals: shadowRoot property" } ], "dom-elementinternals-validationmessage": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "validationMessage", @@ -12159,7 +12516,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12168,14 +12525,15 @@ "version_added": "79" } }, - "title": "ElementInternals.validationMessage" + "title": "ElementInternals: validationMessage property" } ], "dom-elementinternals-validity": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "validity", @@ -12199,7 +12557,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12208,14 +12566,15 @@ "version_added": "79" } }, - "title": "ElementInternals.validity" + "title": "ElementInternals: validity property" } ], "dom-elementinternals-willvalidate": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "willValidate", @@ -12239,7 +12598,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -12248,14 +12607,15 @@ "version_added": "79" } }, - "title": "ElementInternals.willValidate" + "title": "ElementInternals: willValidate property" } ], "the-elementinternals-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ElementInternals.json", "name": "ElementInternals", @@ -12279,7 +12639,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/197960'>bug 197960</a>." }, "safari_ios": "mirror", @@ -12391,7 +12751,7 @@ "version_added": "79" } }, - "title": "EventSource()" + "title": "EventSource: EventSource() constructor" } ], "dom-eventsource-close-dev": [ @@ -12443,7 +12803,7 @@ "version_added": "79" } }, - "title": "EventSource.close()" + "title": "EventSource: close() method" } ], "event-error": [ @@ -12801,7 +13161,7 @@ "version_added": "79" } }, - "title": "EventSource.readyState" + "title": "EventSource: readyState property" } ], "dom-eventsource-url-dev": [ @@ -12851,7 +13211,7 @@ "version_added": "79" } }, - "title": "EventSource.url" + "title": "EventSource: url property" } ], "dom-eventsource-withcredentials-dev": [ @@ -12901,7 +13261,7 @@ "version_added": "79" } }, - "title": "EventSource.withCredentials" + "title": "EventSource: withCredentials property" } ], "the-eventsource-interface": [ @@ -12970,7 +13330,7 @@ "summary": "An object of this type is returned by the files property of the HTML <input> element; this lets you access the list of files selected with the <input type=\"file\"> element. It's also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -13017,10 +13377,10 @@ "name": "files", "slug": "API/HTMLInputElement/files", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/files", - "summary": "The HTMLInputElement.files is a property that allows you to access the FileList selected with the <input type=\"file\"> element.", + "summary": "The HTMLInputElement.files property allows you to access the FileList selected with the <input type=\"file\"> element.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -13056,7 +13416,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.files" + "title": "HTMLInputElement: files property" } ], "the-formdataevent-interface": [ @@ -13097,7 +13457,7 @@ "version_added": "79" } }, - "title": "FormDataEvent()" + "title": "FormDataEvent: FormDataEvent() constructor" }, { "engines": [ @@ -13177,7 +13537,7 @@ "version_added": "79" } }, - "title": "FormDataEvent.formData" + "title": "FormDataEvent: formData property" } ], "dom-a-download": [ @@ -13220,7 +13580,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.download" + "title": "HTMLAnchorElement: download property" } ], "dom-hyperlink-hash-dev": [ @@ -13264,7 +13624,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.hash" + "title": "HTMLAnchorElement: hash property" }, { "engines": [ @@ -13306,7 +13666,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.hash" + "title": "HTMLAreaElement: hash property" } ], "dom-hyperlink-host-dev": [ @@ -13350,7 +13710,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.host" + "title": "HTMLAnchorElement: host property" }, { "engines": [ @@ -13392,7 +13752,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.host" + "title": "HTMLAreaElement: host property" } ], "dom-hyperlink-hostname-dev": [ @@ -13435,7 +13795,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.hostname" + "title": "HTMLAnchorElement: hostname property" }, { "engines": [ @@ -13476,7 +13836,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.hostname" + "title": "HTMLAreaElement: hostname property" } ], "dom-hyperlink-href-dev": [ @@ -13523,7 +13883,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.href" + "title": "HTMLAnchorElement: href property" }, { "engines": [ @@ -13566,7 +13926,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.toString()" + "title": "HTMLAnchorElement: toString() method" }, { "engines": [ @@ -13611,7 +13971,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.href" + "title": "HTMLAreaElement: href property" }, { "engines": [ @@ -13652,7 +14012,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.toString()" + "title": "HTMLAreaElement: toString() method" } ], "dom-hyperlink-origin-dev": [ @@ -13698,7 +14058,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.origin" + "title": "HTMLAnchorElement: origin property" }, { "engines": [ @@ -13742,7 +14102,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.origin" + "title": "HTMLAreaElement: origin property" } ], "dom-hyperlink-password-dev": [ @@ -13783,7 +14143,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.password" + "title": "HTMLAnchorElement: password property" }, { "engines": [ @@ -13822,7 +14182,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.password" + "title": "HTMLAreaElement: password property" } ], "dom-hyperlink-pathname-dev": [ @@ -13866,7 +14226,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.pathname" + "title": "HTMLAnchorElement: pathname property" }, { "engines": [ @@ -13908,7 +14268,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.pathname" + "title": "HTMLAreaElement: pathname property" } ], "dom-hyperlink-port-dev": [ @@ -13951,7 +14311,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.port" + "title": "HTMLAnchorElement: port property" }, { "engines": [ @@ -13992,7 +14352,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.port" + "title": "HTMLAreaElement: port property" } ], "dom-hyperlink-protocol-dev": [ @@ -14035,7 +14395,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.protocol" + "title": "HTMLAnchorElement: protocol property" }, { "engines": [ @@ -14076,7 +14436,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.protocol" + "title": "HTMLAreaElement: protocol property" } ], "dom-a-referrerpolicy": [ @@ -14105,7 +14465,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "61" + "version_added": "50" }, "firefox_android": "mirror", "ie": { @@ -14131,7 +14491,7 @@ } ] }, - "title": "HTMLAnchorElement.referrerPolicy" + "title": "HTMLAnchorElement: referrerPolicy property" } ], "dom-a-rel": [ @@ -14178,7 +14538,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.rel" + "title": "HTMLAnchorElement: rel property" } ], "dom-a-rellist": [ @@ -14221,7 +14581,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.relList" + "title": "HTMLAnchorElement: relList property" } ], "dom-hyperlink-search-dev": [ @@ -14265,7 +14625,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.search" + "title": "HTMLAnchorElement: search property" }, { "engines": [ @@ -14307,7 +14667,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.search" + "title": "HTMLAreaElement: search property" } ], "dom-hyperlink-username-dev": [ @@ -14348,7 +14708,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.username" + "title": "HTMLAnchorElement: username property" }, { "engines": [ @@ -14387,7 +14747,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.username" + "title": "HTMLAreaElement: username property" } ], "htmlanchorelement": [ @@ -14465,7 +14825,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "61" + "version_added": "50" }, "firefox_android": "mirror", "ie": { @@ -14491,7 +14851,7 @@ } ] }, - "title": "HTMLAreaElement.referrerPolicy" + "title": "HTMLAreaElement: referrerPolicy property" } ], "dom-area-rel": [ @@ -14534,7 +14894,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.rel" + "title": "HTMLAreaElement: rel property" } ], "dom-area-rellist": [ @@ -14581,7 +14941,7 @@ "version_added": "79" } }, - "title": "HTMLAreaElement.relList" + "title": "HTMLAreaElement: relList property" } ], "htmlareaelement": [ @@ -14645,7 +15005,7 @@ "summary": "The Audio() constructor creates and returns a new HTMLAudioElement which can be either attached to a document for the user to interact with and/or listen to, or can be used offscreen to manage and play audio.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -14679,7 +15039,7 @@ "version_added": "79" } }, - "title": "Audio()" + "title": "HTMLAudioElement: Audio() constructor" } ], "htmlaudioelement": [ @@ -14696,7 +15056,7 @@ "summary": "The HTMLAudioElement interface provides access to the properties of <audio> elements, as well as methods to manipulate them.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -14926,7 +15286,7 @@ "version_added": "79" } }, - "title": "HTMLButtonElement.disabled" + "title": "HTMLButtonElement: disabled property" }, { "engines": [ @@ -14938,7 +15298,7 @@ "name": "disabled", "slug": "API/HTMLSelectElement/disabled", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/disabled", - "summary": "The HTMLSelectElement.disabled is a boolean value that reflects the disabled HTML attribute, which indicates whether the control is disabled. If it is disabled, it does not accept clicks. A disabled element is unusable and un-clickable.", + "summary": "The HTMLSelectElement.disabled property is a boolean value that reflects the disabled HTML attribute, which indicates whether the control is disabled. If it is disabled, it does not accept clicks. A disabled element is unusable and un-clickable.", "support": { "chrome": { "version_added": "1" @@ -14973,7 +15333,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.disabled" + "title": "HTMLSelectElement: disabled property" } ], "dom-lfe-labels-dev": [ @@ -15022,7 +15382,7 @@ "version_added": "79" } }, - "title": "HTMLButtonElement.labels" + "title": "HTMLButtonElement: labels property" }, { "engines": [ @@ -15069,7 +15429,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.labels" + "title": "HTMLInputElement: labels property" }, { "engines": [ @@ -15114,7 +15474,7 @@ "version_added": "79" } }, - "title": "HTMLMeterElement.labels" + "title": "HTMLMeterElement: labels property" }, { "engines": [ @@ -15161,7 +15521,7 @@ "version_added": "79" } }, - "title": "HTMLOutputElement.labels" + "title": "HTMLOutputElement: labels property" }, { "engines": [ @@ -15206,7 +15566,7 @@ "version_added": "79" } }, - "title": "HTMLProgressElement.labels" + "title": "HTMLProgressElement: labels property" }, { "engines": [ @@ -15253,7 +15613,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.labels" + "title": "HTMLSelectElement: labels property" }, { "engines": [ @@ -15300,7 +15660,207 @@ "version_added": "79" } }, - "title": "HTMLTextAreaElement.labels" + "title": "HTMLTextAreaElement: labels property" + } + ], + "dom-popovertargetaction": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLButtonElement.json", + "name": "popoverTargetAction", + "slug": "API/HTMLButtonElement/popoverTargetAction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement/popoverTargetAction", + "summary": "The popoverTargetAction property of the HTMLButtonElement interface gets and sets the action to be performed (\"hide\", \"show\", or \"toggle\") on a popover element being controlled by a button.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLButtonElement: popoverTargetAction property" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLInputElement.json", + "name": "popoverTargetAction", + "slug": "API/HTMLInputElement/popoverTargetAction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/popoverTargetAction", + "summary": "The popoverTargetAction property of the HTMLInputElement interface gets and sets the action to be performed (\"hide\", \"show\", or \"toggle\") on a popover element being controlled by an <input> element of type=\"button\".", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLInputElement: popoverTargetAction property" + } + ], + "dom-popovertargetelement": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLButtonElement.json", + "name": "popoverTargetElement", + "slug": "API/HTMLButtonElement/popoverTargetElement", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement/popoverTargetElement", + "summary": "The popoverTargetElement property of the HTMLButtonElement interface gets and sets the popover element to control via a button.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLButtonElement: popoverTargetElement property" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLInputElement.json", + "name": "popoverTargetElement", + "slug": "API/HTMLInputElement/popoverTargetElement", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/popoverTargetElement", + "summary": "The popoverTargetElement property of the HTMLInputElement interface gets and sets the popover element to control via an <input> element of type=\"button\".", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLInputElement: popoverTargetElement property" } ], "htmlbuttonelement": [ @@ -15476,7 +16036,7 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.getContext()" + "title": "HTMLCanvasElement: getContext() method" } ], "dom-canvas-height": [ @@ -15525,7 +16085,7 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.height" + "title": "HTMLCanvasElement: height property" }, { "engines": [ @@ -15572,7 +16132,7 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.width" + "title": "HTMLCanvasElement: width property" } ], "dom-canvas-toblob-dev": [ @@ -15616,7 +16176,7 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.toBlob()" + "title": "HTMLCanvasElement: toBlob() method" } ], "dom-canvas-todataurl-dev": [ @@ -15633,7 +16193,7 @@ "summary": "The HTMLCanvasElement.toDataURL() method returns a data URL containing a representation of the image in the format specified by the type parameter.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -15667,14 +16227,15 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.toDataURL()" + "title": "HTMLCanvasElement: toDataURL() method" } ], "dom-canvas-transfercontroltooffscreen-dev": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/HTMLCanvasElement.json", "name": "transferControlToOffscreen", @@ -15698,7 +16259,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -15707,7 +16268,7 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.transferControlToOffscreen()" + "title": "HTMLCanvasElement: transferControlToOffscreen() method" } ], "htmlcanvaselement": [ @@ -15846,7 +16407,7 @@ "version_added": "79" } }, - "title": "HTMLDataElement.value" + "title": "HTMLDataElement: value property" } ], "htmldataelement": [ @@ -15941,48 +16502,7 @@ "title": "HTMLDataListElement" } ], - "event-toggle": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/HTMLDetailsElement.json", - "name": "toggle_event", - "slug": "API/HTMLDetailsElement/toggle_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement/toggle_event", - "summary": "The toggle event fires when the open/closed state of a <details> element is toggled.", - "support": { - "chrome": { - "version_added": "36" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "49" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "10.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "HTMLDetailsElement: toggle event" - } - ], - "htmldetailselement": [ + "dom-details-open": [ { "engines": [ "blink", @@ -15990,10 +16510,10 @@ "webkit" ], "filename": "api/HTMLDetailsElement.json", - "name": "HTMLDetailsElement", - "slug": "API/HTMLDetailsElement", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement", - "summary": "The HTMLDetailsElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <details> elements.", + "name": "open", + "slug": "API/HTMLDetailsElement/open", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement/open", + "summary": "The open property of the HTMLDetailsElement interface is a boolean value reflecting the open HTML attribute, indicating whether the <details>'s contents (not counting the <summary>) is to be shown to the user.", "support": { "chrome": { "version_added": "10" @@ -16022,31 +16542,29 @@ "version_added": "79" } }, - "title": "HTMLDetailsElement" + "title": "HTMLDetailsElement: open property" } ], - "event-cancel": [ + "event-toggle": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/HTMLDialogElement.json", - "name": "cancel_event", - "slug": "API/HTMLDialogElement/cancel_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/cancel_event", - "summary": "The cancel event fires on a <dialog> when the user instructs the browser that they wish to dismiss the current open dialog. For example, the browser might fire this event when the user presses the Esc key or clicks a \"Close dialog\" button which is part of the browser's UI.", + "filename": "api/HTMLDetailsElement.json", + "name": "toggle_event", + "slug": "API/HTMLDetailsElement/toggle_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement/toggle_event", + "summary": "The toggle event fires when the open/closed state of a <details> element is toggled.", "support": { "chrome": { - "version_added": "37" - }, - "chrome_android": { - "version_added": false + "version_added": "36" }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "98" + "version_added": "49" }, "firefox_android": "mirror", "ie": { @@ -16056,7 +16574,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "10.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -16065,31 +16583,37 @@ "version_added": "79" } }, - "title": "HTMLDialogElement: cancel event" - } - ], - "handler-oncancel": [ + "title": "HTMLDetailsElement: toggle event" + }, { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/HTMLDialogElement.json", - "name": "cancel_event", - "slug": "API/HTMLDialogElement/cancel_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/cancel_event", - "summary": "The cancel event fires on a <dialog> when the user instructs the browser that they wish to dismiss the current open dialog. For example, the browser might fire this event when the user presses the Esc key or clicks a \"Close dialog\" button which is part of the browser's UI.", + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLElement.json", + "name": "toggle_event", + "slug": "API/HTMLElement/toggle_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/toggle_event", + "summary": "The toggle event of the HTMLElement interface fires on a popover element (i.e. one that has a valid popover attribute) just after it is shown or hidden.", "support": { "chrome": { - "version_added": "37" - }, - "chrome_android": { - "version_added": false + "version_added": "114" }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "98" + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { @@ -16099,38 +16623,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "114" } }, - "title": "HTMLDialogElement: cancel event" + "title": "HTMLElement: toggle event" } ], - "dom-dialog-close-dev": [ + "htmldetailselement": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/HTMLDialogElement.json", - "name": "close", - "slug": "API/HTMLDialogElement/close", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/close", - "summary": "The close() method of the HTMLDialogElement interface closes the dialog. An optional string may be passed as an argument, updating the returnValue of the dialog.", + "filename": "api/HTMLDetailsElement.json", + "name": "HTMLDetailsElement", + "slug": "API/HTMLDetailsElement", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement", + "summary": "The HTMLDetailsElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <details> elements.", "support": { "chrome": { - "version_added": "37" + "version_added": "10" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "98" + "version_added": "49" }, "firefox_android": "mirror", "ie": { @@ -16140,62 +16664,21 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "HTMLDialogElement.close()" - } - ], - "event-close": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/HTMLDialogElement.json", - "name": "close_event", - "slug": "API/HTMLDialogElement/close_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/close_event", - "summary": "The close event is fired on an HTMLDialogElement object when the dialog it represents has been closed.", - "support": { - "chrome": { + "webview_android": { "version_added": "37" }, - "chrome_android": { - "version_added": false - }, - "edge": "mirror", - "firefox": { - "version_added": "98" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "HTMLDialogElement: close event" + "title": "HTMLDetailsElement" } ], - "dom-dialog-open": [ + "event-cancel": [ { "engines": [ "blink", @@ -16203,56 +16686,17 @@ "webkit" ], "filename": "api/HTMLDialogElement.json", - "name": "open", - "slug": "API/HTMLDialogElement/open", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/open", - "summary": "The open property of the HTMLDialogElement interface is a boolean value reflecting the open HTML attribute, indicating whether the dialog is available for interaction.", + "name": "cancel_event", + "slug": "API/HTMLDialogElement/cancel_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/cancel_event", + "summary": "The cancel event fires on a <dialog> when the user instructs the browser that they wish to dismiss the current open dialog. The browser fires this event when the user presses the Esc key.", "support": { "chrome": { "version_added": "37" }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "98" - }, - "firefox_android": "mirror", - "ie": { + "chrome_android": { "version_added": false }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "HTMLDialogElement.open" - } - ], - "dom-dialog-returnvalue-dev": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/HTMLDialogElement.json", - "name": "returnValue", - "slug": "API/HTMLDialogElement/returnValue", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/returnValue", - "summary": "The returnValue property of the HTMLDialogElement interface gets or sets the return value for the <dialog>, usually to indicate which button the user pressed to close it.", - "support": { - "chrome": { - "version_added": "37" - }, - "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "98" @@ -16274,10 +16718,10 @@ "version_added": "79" } }, - "title": "HTMLDialogElement.returnValue" + "title": "HTMLDialogElement: cancel event" } ], - "dom-dialog-show-dev": [ + "handler-oncancel": [ { "engines": [ "blink", @@ -16285,56 +16729,17 @@ "webkit" ], "filename": "api/HTMLDialogElement.json", - "name": "show", - "slug": "API/HTMLDialogElement/show", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/show", - "summary": "The show() method of the HTMLDialogElement interface displays the dialog modelessly, i.e. still allowing interaction with content outside of the dialog.", + "name": "cancel_event", + "slug": "API/HTMLDialogElement/cancel_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/cancel_event", + "summary": "The cancel event fires on a <dialog> when the user instructs the browser that they wish to dismiss the current open dialog. The browser fires this event when the user presses the Esc key.", "support": { "chrome": { "version_added": "37" }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "98" - }, - "firefox_android": "mirror", - "ie": { + "chrome_android": { "version_added": false }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "HTMLDialogElement.show()" - } - ], - "dom-dialog-showmodal-dev": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/HTMLDialogElement.json", - "name": "showModal", - "slug": "API/HTMLDialogElement/showModal", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/showModal", - "summary": "The showModal() method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays into the top layer, along with a ::backdrop pseudo-element. Interaction outside the dialog is blocked and the content outside it is rendered inert.", - "support": { - "chrome": { - "version_added": "37" - }, - "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "98" @@ -16356,7 +16761,253 @@ "version_added": "79" } }, - "title": "HTMLDialogElement.showModal()" + "title": "HTMLDialogElement: cancel event" + } + ], + "dom-dialog-close-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLDialogElement.json", + "name": "close", + "slug": "API/HTMLDialogElement/close", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/close", + "summary": "The close() method of the HTMLDialogElement interface closes the <dialog>. An optional string may be passed as an argument, updating the returnValue of the dialog.", + "support": { + "chrome": { + "version_added": "37" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "98" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLDialogElement: close() method" + } + ], + "event-close": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLDialogElement.json", + "name": "close_event", + "slug": "API/HTMLDialogElement/close_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/close_event", + "summary": "The close event is fired on an HTMLDialogElement object when the <dialog> it represents has been closed.", + "support": { + "chrome": { + "version_added": "37" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "98" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLDialogElement: close event" + } + ], + "dom-dialog-open": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLDialogElement.json", + "name": "open", + "slug": "API/HTMLDialogElement/open", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/open", + "summary": "The open property of the HTMLDialogElement interface is a boolean value reflecting the open HTML attribute, indicating whether the <dialog> is available for interaction.", + "support": { + "chrome": { + "version_added": "37" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "98" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLDialogElement: open property" + } + ], + "dom-dialog-returnvalue-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLDialogElement.json", + "name": "returnValue", + "slug": "API/HTMLDialogElement/returnValue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/returnValue", + "summary": "The returnValue property of the HTMLDialogElement interface gets or sets the return value for the <dialog>, usually to indicate which button the user pressed to close it.", + "support": { + "chrome": { + "version_added": "37" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "98" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLDialogElement: returnValue property" + } + ], + "dom-dialog-show-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLDialogElement.json", + "name": "show", + "slug": "API/HTMLDialogElement/show", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/show", + "summary": "The show() method of the HTMLDialogElement interface displays the dialog modelessly, i.e. still allowing interaction with content outside of the dialog.", + "support": { + "chrome": { + "version_added": "37" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "98" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLDialogElement: show() method" + } + ], + "dom-dialog-showmodal-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLDialogElement.json", + "name": "showModal", + "slug": "API/HTMLDialogElement/showModal", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/showModal", + "summary": "The showModal() method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Interaction outside the dialog is blocked and the content outside it is rendered inert.", + "support": { + "chrome": { + "version_added": "37" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "98" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLDialogElement: showModal() method" } ], "htmldialogelement": [ @@ -16540,7 +17191,7 @@ "version_added": "79" } }, - "title": "HTMLElement.accessKey" + "title": "HTMLElement: accessKey property" } ], "dom-accesskeylabel": [ @@ -16582,14 +17233,15 @@ "notes": "See <a href='https://crbug.com/393466'>bug 393466</a>." } }, - "title": "HTMLElement.accessKeyLabel" + "title": "HTMLElement: accessKeyLabel property" } ], "dom-attachinternals": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/HTMLElement.json", "name": "attachInternals", @@ -16613,7 +17265,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/197960'>bug 197960</a>." }, "safari_ios": "mirror", @@ -16623,7 +17275,58 @@ "version_added": "79" } }, - "title": "HTMLElement.attachInternals()" + "title": "HTMLElement: attachInternals() method" + } + ], + "event-beforetoggle": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLElement.json", + "name": "beforetoggle_event", + "slug": "API/HTMLElement/beforetoggle_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforetoggle_event", + "summary": "The beforetoggle event of the HTMLElement interface fires on a popover element (i.e. one that has a valid popover attribute) just before it is shown or hidden.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "preview" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLElement: beforetoggle event" } ], "dom-blur-dev": [ @@ -16672,7 +17375,7 @@ "version_added": "79" } }, - "title": "HTMLElement.blur()" + "title": "HTMLElement: blur() method" } ], "event-change": [ @@ -16831,7 +17534,7 @@ "notes": "Before Chrome 19, <code>click()</code> is only defined on buttons and inputs." } }, - "title": "HTMLElement.click()" + "title": "HTMLElement: click() method" } ], "contenteditable": [ @@ -16880,7 +17583,7 @@ "version_added": "79" } }, - "title": "HTMLElement.contentEditable" + "title": "HTMLElement: contentEditable property" } ], "dom-dataset-dev": [ @@ -16897,7 +17600,7 @@ "summary": "The dataset read-only property of the HTMLElement interface provides read/write access to custom data attributes (data-*) on elements. It exposes a map of strings (DOMStringMap) with an entry for each data-* attribute.", "support": { "chrome": { - "version_added": "8" + "version_added": "7" }, "chrome_android": "mirror", "edge": { @@ -16929,7 +17632,7 @@ "version_added": "79" } }, - "title": "HTMLElement.dataset" + "title": "HTMLElement: dataset property" }, { "engines": [ @@ -16974,7 +17677,7 @@ "version_added": "79" } }, - "title": "HTMLElement.dataset" + "title": "HTMLElement: dataset property" } ], "dom-dir": [ @@ -17023,7 +17726,7 @@ "version_added": "79" } }, - "title": "HTMLElement.dir" + "title": "HTMLElement: dir property" } ], "ix-handler-ondrag": [ @@ -17601,7 +18304,7 @@ "name": "drop_event", "slug": "API/HTMLElement/drop_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/drop_event", - "summary": "The drop event is fired when an element or text selection is dropped on a valid drop target.", + "summary": "The drop event is fired when an element or text selection is dropped on a valid drop target. To ensure that the drop event always fires as expected, you should always include a preventDefault() call in the part of your code which handles the dragover event.", "support": { "chrome": { "version_added": "1" @@ -17648,7 +18351,7 @@ "name": "drop_event", "slug": "API/HTMLElement/drop_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/drop_event", - "summary": "The drop event is fired when an element or text selection is dropped on a valid drop target.", + "summary": "The drop event is fired when an element or text selection is dropped on a valid drop target. To ensure that the drop event always fires as expected, you should always include a preventDefault() call in the part of your code which handles the dragover event.", "support": { "chrome": { "version_added": "1" @@ -17722,7 +18425,7 @@ "version_added": "79" } }, - "title": "HTMLElement.enterKeyHint" + "title": "HTMLElement: enterKeyHint property" } ], "dom-focus-dev": [ @@ -17771,7 +18474,7 @@ "version_added": "79" } }, - "title": "HTMLElement.focus()" + "title": "HTMLElement: focus() method" } ], "dom-hidden": [ @@ -17820,7 +18523,58 @@ "version_added": "79" } }, - "title": "HTMLElement.hidden" + "title": "HTMLElement: hidden property" + } + ], + "dom-hidepopover": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLElement.json", + "name": "hidePopover", + "slug": "API/HTMLElement/hidePopover", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/hidePopover", + "summary": "The hidePopover() method of the HTMLElement interface hides a popover element (i.e. one that has a valid popover attribute) by removing it from the top layer and styling it with display: none.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLElement: hidePopover() method" } ], "dom-inert": [ @@ -17834,7 +18588,7 @@ "name": "inert", "slug": "API/HTMLElement/inert", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert", - "summary": "The HTMLElement property inert is a boolean value that, when present, makes the browser \"ignore\" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to \"trap\" the focus inside the modal when it's visible.", + "summary": "The HTMLElement property inert reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser \"ignore\" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to \"trap\" the focus inside the modal when it's visible.", "support": { "chrome": { "version_added": "102" @@ -17842,11 +18596,9 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "preview" - }, - "firefox_android": { - "version_added": false + "version_added": "112" }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -17863,7 +18615,7 @@ "version_added": "102" } }, - "title": "HTMLElement.inert" + "title": "HTMLElement: inert property" } ], "the-innertext-idl-attribute": [ @@ -17912,7 +18664,7 @@ "version_added": "79" } }, - "title": "HTMLElement.innerText" + "title": "HTMLElement: innerText property" } ], "handler-oninput": [ @@ -17964,6 +18716,49 @@ "title": "HTMLElement: input event" } ], + "dom-inputmode": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLElement.json", + "name": "inputMode", + "slug": "API/HTMLElement/inputMode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inputMode", + "summary": "The HTMLElement property inputMode reflects the value of the element's inputmode attribute.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "95" + }, + "firefox_android": { + "version_added": "79" + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLElement: inputMode property" + } + ], "dom-iscontenteditable-dev": [ { "engines": [ @@ -18010,7 +18805,7 @@ "version_added": "79" } }, - "title": "HTMLElement.isContentEditable" + "title": "HTMLElement: isContentEditable property" } ], "dom-lang": [ @@ -18059,7 +18854,7 @@ "version_added": "79" } }, - "title": "HTMLElement.lang" + "title": "HTMLElement: lang property" } ], "dom-noncedelement-nonce": [ @@ -18104,7 +18899,7 @@ "version_added": "79" } }, - "title": "HTMLElement.nonce" + "title": "HTMLElement: nonce property" } ], "dom-outertext": [ @@ -18153,7 +18948,109 @@ "version_added": "79" } }, - "title": "HTMLElement.outerText" + "title": "HTMLElement: outerText property" + } + ], + "dom-popover": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLElement.json", + "name": "popover", + "slug": "API/HTMLElement/popover", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/popover", + "summary": "The popover property of the HTMLElement interface gets and sets an element's popover state via JavaScript (\"auto\" or \"manual\"), and can be used for feature detection.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLElement: popover property" + } + ], + "dom-showpopover": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLElement.json", + "name": "showPopover", + "slug": "API/HTMLElement/showPopover", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/showPopover", + "summary": "The showPopover() method of the HTMLElement interface shows a popover element (i.e. one that has a valid popover attribute) by adding it to the top layer.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLElement: showPopover() method" } ], "dom-tabindex": [ @@ -18202,7 +19099,7 @@ "version_added": "79" } }, - "title": "HTMLElement.tabIndex" + "title": "HTMLElement: tabIndex property" } ], "dom-title": [ @@ -18251,7 +19148,58 @@ "version_added": "79" } }, - "title": "HTMLElement.title" + "title": "HTMLElement: title property" + } + ], + "dom-togglepopover": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/HTMLElement.json", + "name": "togglePopover", + "slug": "API/HTMLElement/togglePopover", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/togglePopover", + "summary": "The togglePopover() method of the HTMLElement interface toggles a popover element (i.e. one that has a valid popover attribute) between the hidden and showing states.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "HTMLElement: togglePopover() method" } ], "htmlelement": [ @@ -18459,7 +19407,7 @@ "version_added": "79" } }, - "title": "HTMLFormControlsCollection.namedItem()" + "title": "HTMLFormControlsCollection: namedItem() method" } ], "htmlformcontrolscollection": [ @@ -18557,7 +19505,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.acceptCharset" + "title": "HTMLFormElement: acceptCharset property" } ], "dom-fs-action": [ @@ -18606,7 +19554,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.action" + "title": "HTMLFormElement: action property" } ], "dom-form-elements-dev": [ @@ -18655,7 +19603,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.elements" + "title": "HTMLFormElement: elements property" } ], "dom-fs-encoding": [ @@ -18704,7 +19652,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.encoding" + "title": "HTMLFormElement: encoding property" } ], "dom-fs-enctype": [ @@ -18753,7 +19701,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.enctype" + "title": "HTMLFormElement: enctype property" } ], "event-formdata": [ @@ -18777,9 +19725,7 @@ "firefox": { "version_added": "72" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -18845,7 +19791,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.length" + "title": "HTMLFormElement: length property" } ], "dom-fs-method": [ @@ -18894,7 +19840,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.method" + "title": "HTMLFormElement: method property" } ], "dom-form-name": [ @@ -18943,7 +19889,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.name" + "title": "HTMLFormElement: name property" } ], "dom-cva-reportvalidity-dev": [ @@ -18986,7 +19932,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.reportValidity()" + "title": "HTMLFormElement: reportValidity() method" }, { "engines": [ @@ -19029,7 +19975,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.reportValidity()" + "title": "HTMLInputElement: reportValidity() method" } ], "dom-form-requestsubmit-dev": [ @@ -19070,7 +20016,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.requestSubmit()" + "title": "HTMLFormElement: requestSubmit() method" } ], "dom-form-reset-dev": [ @@ -19119,7 +20065,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.reset()" + "title": "HTMLFormElement: reset() method" } ], "event-reset": [ @@ -19219,7 +20165,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.submit()" + "title": "HTMLFormElement: submit() method" } ], "event-submit": [ @@ -19366,7 +20312,7 @@ "version_added": "79" } }, - "title": "HTMLFormElement.target" + "title": "HTMLFormElement: target property" } ], "htmlformelement": [ @@ -19654,7 +20600,7 @@ "version_added": "79" } }, - "title": "HTMLIFrameElement.contentDocument" + "title": "HTMLIFrameElement: contentDocument property" } ], "dom-iframe-contentwindow": [ @@ -19703,7 +20649,7 @@ "version_added": "79" } }, - "title": "HTMLIFrameElement.contentWindow" + "title": "HTMLIFrameElement: contentWindow property" } ], "dom-iframe-referrerpolicy": [ @@ -19732,7 +20678,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "61" + "version_added": "50" }, "firefox_android": "mirror", "ie": { @@ -19758,7 +20704,7 @@ } ] }, - "title": "HTMLIFrameElement.referrerPolicy" + "title": "HTMLIFrameElement: referrerPolicy property" } ], "dom-iframe-src": [ @@ -19807,7 +20753,7 @@ "version_added": "79" } }, - "title": "HTMLIFrameElement.src" + "title": "HTMLIFrameElement: src property" } ], "dom-iframe-srcdoc": [ @@ -19848,7 +20794,7 @@ "version_added": "79" } }, - "title": "HTMLIFrameElement.srcdoc" + "title": "HTMLIFrameElement: srcdoc property" } ], "htmliframeelement": [ @@ -19946,7 +20892,7 @@ "version_added": "79" } }, - "title": "Image()" + "title": "HTMLImageElement: Image() constructor" } ], "dom-img-alt": [ @@ -19995,7 +20941,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.alt" + "title": "HTMLImageElement: alt property" } ], "dom-img-complete-dev": [ @@ -20045,7 +20991,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.complete" + "title": "HTMLImageElement: complete property" } ], "dom-img-crossorigin": [ @@ -20092,7 +21038,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.crossOrigin" + "title": "HTMLImageElement: crossOrigin property" } ], "dom-img-currentsrc-dev": [ @@ -20135,7 +21081,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.currentSrc" + "title": "HTMLImageElement: currentSrc property" } ], "dom-img-decode-dev": [ @@ -20176,7 +21122,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.decode()" + "title": "HTMLImageElement: decode() method" }, { "engines": [ @@ -20214,7 +21160,7 @@ "version_added": "79" } }, - "title": "SVGImageElement.decode()" + "title": "SVGImageElement: decode() method" } ], "dom-img-decoding": [ @@ -20255,7 +21201,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.decoding" + "title": "HTMLImageElement: decoding property" }, { "engines": [ @@ -20293,7 +21239,70 @@ "version_added": "79" } }, - "title": "SVGImageElement.decoding" + "title": "SVGImageElement: decoding property" + } + ], + "attr-img-fetchpriority": [ + { + "engines": [ + "blink", + "webkit" + ], + "needsflag": [ + "webkit" + ], + "filename": "api/HTMLImageElement.json", + "name": "fetchPriority", + "slug": "API/HTMLImageElement/fetchPriority", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/fetchPriority", + "summary": "The fetchPriority property of the HTMLImageElement interface represents a hint given to the browser on how it should prioritize the fetch of the image relative to other images.", + "support": { + "chrome": [ + { + "version_added": "102" + }, + { + "version_added": "101", + "version_removed": "102", + "alternative_name": "fetchpriority" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "Fetch Priority" + } + ] + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "102" + }, + { + "version_added": false, + "version_removed": "102", + "alternative_name": "fetchpriority" + } + ] + }, + "title": "HTMLImageElement: fetchPriority property" } ], "dom-img-height-dev": [ @@ -20342,7 +21351,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.height" + "title": "HTMLImageElement: height property" } ], "dom-img-ismap": [ @@ -20391,7 +21400,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.isMap" + "title": "HTMLImageElement: isMap property" } ], "dom-img-loading": [ @@ -20432,7 +21441,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.loading" + "title": "HTMLImageElement: loading property" } ], "dom-img-naturalheight-dev": [ @@ -20481,7 +21490,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.naturalHeight" + "title": "HTMLImageElement: naturalHeight property" } ], "dom-img-naturalwidth-dev": [ @@ -20530,7 +21539,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.naturalWidth" + "title": "HTMLImageElement: naturalWidth property" } ], "dom-img-referrerpolicy": [ @@ -20559,7 +21568,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "61" + "version_added": "50" }, "firefox_android": "mirror", "ie": { @@ -20585,7 +21594,7 @@ } ] }, - "title": "HTMLImageElement.referrerPolicy" + "title": "HTMLImageElement: referrerPolicy property" } ], "dom-img-sizes": [ @@ -20628,10 +21637,10 @@ "version_added": "79" } }, - "title": "HTMLImageElement.sizes" + "title": "HTMLImageElement: sizes property" } ], - "dom-img-src": [ + "attr-img-src": [ { "engines": [ "blink", @@ -20677,7 +21686,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.src" + "title": "HTMLImageElement: src property" } ], "dom-img-srcset": [ @@ -20720,7 +21729,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.srcset" + "title": "HTMLImageElement: srcset property" } ], "dom-img-usemap": [ @@ -20769,7 +21778,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.useMap" + "title": "HTMLImageElement: useMap property" } ], "dom-img-width-dev": [ @@ -20818,7 +21827,7 @@ "version_added": "79" } }, - "title": "HTMLImageElement.width" + "title": "HTMLImageElement: width property" } ], "htmlimageelement": [ @@ -20916,7 +21925,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.checkValidity()" + "title": "HTMLInputElement: checkValidity() method" }, { "engines": [ @@ -20963,7 +21972,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.checkValidity()" + "title": "HTMLObjectElement: checkValidity() method" }, { "engines": [ @@ -21012,7 +22021,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.checkValidity()" + "title": "HTMLSelectElement: checkValidity() method" } ], "event-invalid": [ @@ -21116,7 +22125,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.multiple" + "title": "HTMLInputElement: multiple property" } ], "dom-textarea/input-select": [ @@ -21163,7 +22172,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.select()" + "title": "HTMLInputElement: select() method" }, { "engines": [], @@ -21173,7 +22182,7 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/select", "summary": "The HTMLInputElement.select() method selects all the text in a <textarea> element or in an <input> element that includes a text field.", "support": null, - "title": "HTMLInputElement.select()" + "title": "HTMLInputElement: select() method" } ], "event-select": [ @@ -21408,7 +22417,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.setCustomValidity()" + "title": "HTMLInputElement: setCustomValidity() method" } ], "dom-textarea/input-setrangetext-dev": [ @@ -21449,7 +22458,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.setRangeText()" + "title": "HTMLInputElement: setRangeText() method" } ], "dom-textarea/input-setselectionrange-dev": [ @@ -21498,7 +22507,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.setSelectionRange()" + "title": "HTMLInputElement: setSelectionRange() method" } ], "dom-input-showpicker": [ @@ -21539,7 +22548,7 @@ "version_added": "99" } }, - "title": "HTMLInputElement.showPicker()" + "title": "HTMLInputElement: showPicker() method" } ], "dom-input-stepdown-dev": [ @@ -21594,7 +22603,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.stepDown()" + "title": "HTMLInputElement: stepDown() method" } ], "dom-input-stepup-dev": [ @@ -21649,7 +22658,7 @@ "version_added": "79" } }, - "title": "HTMLInputElement.stepUp()" + "title": "HTMLInputElement: stepUp() method" } ], "htmlinputelement": [ @@ -21795,7 +22804,7 @@ "version_added": "79" } }, - "title": "HTMLLabelElement.control" + "title": "HTMLLabelElement: control property" } ], "dom-label-form-dev": [ @@ -21844,7 +22853,7 @@ "version_added": "79" } }, - "title": "HTMLLabelElement.form" + "title": "HTMLLabelElement: form property" } ], "dom-label-htmlfor": [ @@ -21893,7 +22902,7 @@ "version_added": "79" } }, - "title": "HTMLLabelElement.htmlFor" + "title": "HTMLLabelElement: htmlFor property" } ], "htmllabelelement": [ @@ -22005,7 +23014,7 @@ "name": "as", "slug": "API/HTMLLinkElement/as", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement/as", - "summary": "The as property of the HTMLLinkElement interface returns a string representing the type of content being loaded by the HTML link, one of \"script\", \"style\", \"image\", \"video\", \"audio\", \"track\", \"font\", \"fetch\".", + "summary": "The as property of the HTMLLinkElement interface returns a string representing the type of content to be preloaded by a link element.", "support": { "chrome": { "version_added": "50" @@ -22034,7 +23043,70 @@ "version_added": "79" } }, - "title": "HTMLLinkElement.as" + "title": "HTMLLinkElement: as property" + } + ], + "attr-link-fetchpriority": [ + { + "engines": [ + "blink", + "webkit" + ], + "needsflag": [ + "webkit" + ], + "filename": "api/HTMLLinkElement.json", + "name": "fetchPriority", + "slug": "API/HTMLLinkElement/fetchPriority", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement/fetchPriority", + "summary": "The fetchPriority property of the HTMLLinkElement interface represents a hint given to the browser on how it should prioritize the preload of the given resource relative to other resources of the same type.", + "support": { + "chrome": [ + { + "version_added": "102" + }, + { + "version_added": "101", + "version_removed": "102", + "alternative_name": "fetchpriority" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "Fetch Priority" + } + ] + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "102" + }, + { + "version_added": false, + "version_removed": "102", + "alternative_name": "fetchpriority" + } + ] + }, + "title": "HTMLLinkElement: fetchPriority property" } ], "dom-link-referrerpolicy": [ @@ -22048,7 +23120,7 @@ "name": "referrerPolicy", "slug": "API/HTMLLinkElement/referrerPolicy", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement/referrerPolicy", - "summary": "The HTMLLinkElement.referrerPolicy property reflect the HTML referrerpolicy attribute of the <link> element defining which referrer is sent when fetching the resource.", + "summary": "The HTMLLinkElement.referrerPolicy property reflects the HTML referrerpolicy attribute of the <link> element defining which referrer is sent when fetching the resource.", "support": { "chrome": { "version_added": "58" @@ -22075,7 +23147,7 @@ "version_added": "79" } }, - "title": "HTMLLinkElement.referrerPolicy" + "title": "HTMLLinkElement: referrerPolicy property" } ], "dom-link-rel": [ @@ -22122,7 +23194,7 @@ "version_added": "79" } }, - "title": "HTMLLinkElement.rel" + "title": "HTMLLinkElement: rel property" } ], "dom-link-rellist": [ @@ -22165,7 +23237,7 @@ "version_added": "79" } }, - "title": "HTMLLinkElement.relList" + "title": "HTMLLinkElement: relList property" } ], "htmllinkelement": [ @@ -22280,7 +23352,7 @@ "summary": "The abort event is fired when the resource was not fully loaded, but not as the result of an error.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -22329,7 +23401,7 @@ "summary": "The abort event is fired when the resource was not fully loaded, but not as the result of an error.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -22386,8 +23458,8 @@ "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] }, @@ -22423,13 +23495,13 @@ "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] } }, - "title": "HTMLMediaElement.audioTracks" + "title": "HTMLMediaElement: audioTracks property" } ], "dom-media-autoplay": [ @@ -22446,7 +23518,7 @@ "summary": "The HTMLMediaElement.autoplay property reflects the autoplay HTML attribute, indicating whether playback should automatically begin as soon as enough media is available to do so without interruption.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -22480,7 +23552,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.autoplay" + "title": "HTMLMediaElement: autoplay property" } ], "dom-media-buffered-dev": [ @@ -22497,7 +23569,7 @@ "summary": "The buffered read-only property of HTMLMediaElement objects returns a new static normalized TimeRanges object that represents the ranges of the media resource, if any, that the user agent has buffered at the moment the buffered property is accessed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -22531,7 +23603,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.buffered" + "title": "HTMLMediaElement: buffered property" } ], "event-media-canplay": [ @@ -22810,7 +23882,7 @@ ] } }, - "title": "HTMLMediaElement.canPlayType()" + "title": "HTMLMediaElement: canPlayType() method" } ], "dom-media-controls": [ @@ -22827,7 +23899,7 @@ "summary": "The HTMLMediaElement.controls property reflects the controls HTML attribute, which controls whether user interface controls for playing the media item will be displayed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -22861,7 +23933,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.controls" + "title": "HTMLMediaElement: controls property" } ], "dom-media-crossorigin": [ @@ -22911,7 +23983,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.crossOrigin" + "title": "HTMLMediaElement: crossOrigin property" } ], "dom-media-currentsrc-dev": [ @@ -22928,7 +24000,7 @@ "summary": "The HTMLMediaElement.currentSrc property contains the absolute URL of the chosen media resource. This could happen, for example, if the web server selects a media file based on the resolution of the user's display. The value is an empty string if the networkState property is EMPTY.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -22962,7 +24034,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.currentSrc" + "title": "HTMLMediaElement: currentSrc property" } ], "dom-media-currenttime-dev": [ @@ -22979,7 +24051,7 @@ "summary": "The HTMLMediaElement interface's currentTime property specifies the current playback time in seconds.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23013,7 +24085,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.currentTime" + "title": "HTMLMediaElement: currentTime property" } ], "dom-media-defaultmuted": [ @@ -23060,7 +24132,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.defaultMuted" + "title": "HTMLMediaElement: defaultMuted property" } ], "dom-media-defaultplaybackrate-dev": [ @@ -23077,7 +24149,7 @@ "summary": "The HTMLMediaElement.defaultPlaybackRate property indicates the default playback rate for the media.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23111,7 +24183,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.defaultPlaybackRate" + "title": "HTMLMediaElement: defaultPlaybackRate property" } ], "dom-media-duration-dev": [ @@ -23128,7 +24200,7 @@ "summary": "The read-only HTMLMediaElement property duration indicates the length of the element's media in seconds.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23162,7 +24234,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.duration" + "title": "HTMLMediaElement: duration property" } ], "event-media-durationchange": [ @@ -23380,10 +24452,10 @@ "name": "ended", "slug": "API/HTMLMediaElement/ended", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/ended", - "summary": "The HTMLMediaElement.ended indicates whether the media element has ended playback.", + "summary": "The HTMLMediaElement.ended property indicates whether the media element has ended playback.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23417,7 +24489,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.ended" + "title": "HTMLMediaElement: ended property" } ], "event-media-ended": [ @@ -23533,10 +24605,10 @@ "name": "error", "slug": "API/HTMLMediaElement/error", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/error", - "summary": "The HTMLMediaElement.error is the MediaError object for the most recent error, or null if there has not been an error. When an error event is received by the element, you can determine details about what happened by examining this object.", + "summary": "The HTMLMediaElement.error property is the MediaError object for the most recent error, or null if there has not been an error. When an error event is received by the element, you can determine details about what happened by examining this object.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23570,7 +24642,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.error" + "title": "HTMLMediaElement: error property" } ], "event-media-error": [ @@ -23587,7 +24659,7 @@ "summary": "The error event is fired when the resource could not be loaded due to an error (for example, a network connectivity problem).", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23636,7 +24708,7 @@ "summary": "The error event is fired when the resource could not be loaded due to an error (for example, a network connectivity problem).", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23673,7 +24745,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Window.json", "name": "messageerror_event", @@ -23701,7 +24774,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -23753,7 +24826,7 @@ "notes": "See <a href='https://crbug.com/648207'>bug 648207</a>." } }, - "title": "HTMLMediaElement.fastSeek()" + "title": "HTMLMediaElement: fastSeek() method" } ], "dom-media-load-dev": [ @@ -23770,7 +24843,7 @@ "summary": "The HTMLMediaElement method load() resets the media element to its initial state and begins the process of selecting a media source and loading the media in preparation for playback to begin at the beginning.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -23804,7 +24877,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.load()" + "title": "HTMLMediaElement: load() method" } ], "event-media-loadeddata": [ @@ -24025,7 +25098,7 @@ "summary": "The loadstart event is fired when the browser has started to load a resource.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24074,7 +25147,7 @@ "summary": "The loadstart event is fired when the browser has started to load a resource.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24157,7 +25230,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.loop" + "title": "HTMLMediaElement: loop property" } ], "dom-media-muted-dev": [ @@ -24171,10 +25244,10 @@ "name": "muted", "slug": "API/HTMLMediaElement/muted", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/muted", - "summary": "The HTMLMediaElement.muted indicates whether the media element muted.", + "summary": "The HTMLMediaElement.muted property indicates whether the media element is muted.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24208,7 +25281,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.muted" + "title": "HTMLMediaElement: muted property" } ], "dom-media-networkstate-dev": [ @@ -24225,7 +25298,7 @@ "summary": "The HTMLMediaElement.networkState property indicates the current state of the fetching of media over the network.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24262,7 +25335,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.networkState" + "title": "HTMLMediaElement: networkState property" } ], "dom-media-pause-dev": [ @@ -24279,7 +25352,7 @@ "summary": "The HTMLMediaElement.pause() method will pause playback of the media, if the media is already in a paused state this method will have no effect.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24313,7 +25386,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.pause()" + "title": "HTMLMediaElement: pause() method" } ], "event-media-pause": [ @@ -24432,7 +25505,7 @@ "summary": "The read-only HTMLMediaElement.paused property tells whether the media element is paused.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24466,7 +25539,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.paused" + "title": "HTMLMediaElement: paused property" } ], "dom-media-play-dev": [ @@ -24483,7 +25556,7 @@ "summary": "The HTMLMediaElement play() method attempts to begin playback of the media. It returns a Promise which is resolved when playback has been successfully started.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24517,7 +25590,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.play()" + "title": "HTMLMediaElement: play() method" } ], "event-media-play": [ @@ -24636,7 +25709,7 @@ "summary": "The HTMLMediaElement.playbackRate property sets the rate at which the media is being played back. This is used to implement user controls for fast forward, slow motion, and so forth. The normal playback rate is multiplied by this value to obtain the current rate, so a value of 1.0 indicates normal speed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24670,7 +25743,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.playbackRate" + "title": "HTMLMediaElement: playbackRate property" } ], "event-media-playing": [ @@ -24802,7 +25875,8 @@ { "prefix": "moz", "version_added": "20", - "notes": "May be removed in a future release, see <a href='https://bugzil.la/1765201'>bug 1765201</a>." + "version_removed": "115", + "notes": "Disable by default in version 115 (behind preference <code>dom.media.mozPreservesPitch.enabled</code>). May be fully removed in a future release (see <a href='https://bugzil.la/1765201'>bug 1765201</a>)." } ], "firefox_android": "mirror", @@ -24828,7 +25902,7 @@ "version_added": "86" } }, - "title": "HTMLMediaElement.preservesPitch" + "title": "HTMLMediaElement: preservesPitch property" } ], "event-media-progress": [ @@ -24845,7 +25919,7 @@ "summary": "The progress event is fired periodically as the browser loads a resource.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -24894,7 +25968,7 @@ "summary": "The progress event is fired periodically as the browser loads a resource.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -25045,7 +26119,7 @@ "summary": "The HTMLMediaElement.readyState property indicates the readiness state of the media.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -25079,7 +26153,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.readyState" + "title": "HTMLMediaElement: readyState property" } ], "dom-media-seekable-dev": [ @@ -25096,7 +26170,7 @@ "summary": "The seekable read-only property of HTMLMediaElement objects returns a new static normalized TimeRanges object that represents the ranges of the media resource, if any, that the user agent is able to seek to at the time seekable property is accessed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -25130,7 +26204,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.seekable" + "title": "HTMLMediaElement: seekable property" } ], "event-media-seeked": [ @@ -25351,7 +26425,7 @@ "summary": "The HTMLMediaElement.src property reflects the value of the HTML media element's src attribute, which indicates the URL of a media resource to use in the element.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -25385,7 +26459,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.src" + "title": "HTMLMediaElement: src property" } ], "dom-media-srcobject-dev": [ @@ -25403,15 +26477,20 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/srcObject", "summary": "The srcObject property of the HTMLMediaElement interface sets or returns the object which serves as the source of the media associated with the HTMLMediaElement.", "support": { - "chrome": { - "version_added": "52", - "partial_implementation": true, - "notes": "Only supports <code>MediaStream</code> objects (see <a href='https://crbug.com/506273'>bug 506273</a>)." - }, + "chrome": [ + { + "version_added": "108", + "partial_implementation": true, + "notes": "Support added for <code>MediaSourceHandle</code> objects transferred from dedicated workers where they were obtained from <code>MediaSource.handle</code> (see <a href='https://crbug.com/878133'>bug 878133</a>)." + }, + { + "version_added": "52", + "partial_implementation": true, + "notes": "Support added for <code>MediaStream</code> objects (see <a href='https://crbug.com/506273'>bug 506273</a>)." + } + ], "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, + "edge": "mirror", "firefox": [ { "version_added": "42", @@ -25436,18 +26515,21 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "52", - "partial_implementation": true, - "notes": "Only supports <code>MediaStream</code> objects (see <a href='https://crbug.com/506273'>bug 506273</a>." - }, - "edge_blink": { - "version_added": "79", - "partial_implementation": true, - "notes": "Only supports <code>MediaStream</code> objects (see <a href='https://crbug.com/506273'>bug 506273</a>)." - } + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "108", + "partial_implementation": true, + "notes": "Support added for <code>MediaSourceHandle</code> objects transferred from dedicated workers where they were obtained from <code>MediaSource.handle</code> (see <a href='https://crbug.com/878133'>bug 878133</a>)." + }, + { + "version_added": "79", + "partial_implementation": true, + "notes": "Support added for <code>MediaStream</code> objects (see <a href='https://crbug.com/506273'>bug 506273</a>)." + } + ] }, - "title": "HTMLMediaElement.srcObject" + "title": "HTMLMediaElement: srcObject property" } ], "event-media-stalled": [ @@ -25700,7 +26782,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.textTracks" + "title": "HTMLMediaElement: textTracks property" } ], "event-media-timeupdate": [ @@ -25827,8 +26909,8 @@ "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] }, @@ -25864,13 +26946,13 @@ "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] } }, - "title": "HTMLMediaElement.videoTracks" + "title": "HTMLMediaElement: videoTracks property" } ], "dom-media-volume-dev": [ @@ -25890,7 +26972,7 @@ "summary": "The HTMLMediaElement.volume property sets the volume at which the media will be played.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -25926,7 +27008,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.volume" + "title": "HTMLMediaElement: volume property" } ], "event-media-volumechange": [ @@ -25940,10 +27022,10 @@ "name": "volumechange_event", "slug": "API/HTMLMediaElement/volumechange_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/volumechange_event", - "summary": "The volumechange event is fired when the volume has changed.", + "summary": "The volumechange event is fired when either the volume attribute or the muted attribute has changed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -25991,10 +27073,10 @@ "name": "volumechange_event", "slug": "API/HTMLMediaElement/volumechange_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/volumechange_event", - "summary": "The volumechange event is fired when the volume has changed.", + "summary": "The volumechange event is fired when either the volume attribute or the muted attribute has changed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -26045,7 +27127,7 @@ "summary": "The waiting event is fired when playback has stopped because of a temporary lack of data.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -26096,7 +27178,7 @@ "summary": "The waiting event is fired when playback has stopped because of a temporary lack of data.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -26147,7 +27229,7 @@ "summary": "The HTMLMediaElement interface adds to HTMLElement the properties and methods needed to support basic media-related capabilities that are common to audio and video.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -26471,7 +27553,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.contentDocument" + "title": "HTMLObjectElement: contentDocument property" } ], "dom-object-contentwindow": [ @@ -26514,7 +27596,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.contentWindow" + "title": "HTMLObjectElement: contentWindow property" } ], "dom-object-data": [ @@ -26563,7 +27645,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.data" + "title": "HTMLObjectElement: data property" } ], "dom-fae-form-dev": [ @@ -26612,7 +27694,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.form" + "title": "HTMLObjectElement: form property" }, { "engines": [ @@ -26624,7 +27706,7 @@ "name": "form", "slug": "API/HTMLSelectElement/form", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/form", - "summary": "The HTMLSelectElement.form read-only property returns a HTMLFormElement representing the form that this element is associated with. If the element is not associated with of a <form> element, then it returns null.", + "summary": "The HTMLSelectElement.form read-only property returns a HTMLFormElement representing the form that this element is associated with. If the element is not associated with a <form> element, then it returns null.", "support": { "chrome": { "version_added": "1" @@ -26659,7 +27741,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.form" + "title": "HTMLSelectElement: form property" } ], "dom-dim-height": [ @@ -26708,7 +27790,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.height" + "title": "HTMLObjectElement: height property" } ], "dom-object-name": [ @@ -26757,7 +27839,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.name" + "title": "HTMLObjectElement: name property" } ], "dom-cva-setcustomvalidity-dev": [ @@ -26806,7 +27888,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.setCustomValidity()" + "title": "HTMLObjectElement: setCustomValidity() method" }, { "engines": [ @@ -26855,7 +27937,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.setCustomValidity()" + "title": "HTMLSelectElement: setCustomValidity() method" } ], "dom-object-type": [ @@ -26904,7 +27986,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.type" + "title": "HTMLObjectElement: type property" } ], "dom-object-usemap": [ @@ -26953,7 +28035,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.useMap" + "title": "HTMLObjectElement: useMap property" } ], "dom-cva-validationmessage-dev": [ @@ -27002,7 +28084,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.validationMessage" + "title": "HTMLObjectElement: validationMessage property" } ], "dom-cva-validity": [ @@ -27051,7 +28133,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.validity" + "title": "HTMLObjectElement: validity property" } ], "dom-dim-width": [ @@ -27100,7 +28182,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.width" + "title": "HTMLObjectElement: width property" } ], "dom-cva-willvalidate-dev": [ @@ -27151,7 +28233,7 @@ "version_added": "79" } }, - "title": "HTMLObjectElement.willValidate" + "title": "HTMLObjectElement: willValidate property" } ], "htmlobjectelement": [ @@ -27297,7 +28379,7 @@ "version_added": "79" } }, - "title": "Option()" + "title": "HTMLOptionElement: Option() constructor" } ], "htmloptionelement": [ @@ -27697,7 +28779,7 @@ "name": "referrerPolicy", "slug": "API/HTMLScriptElement/referrerPolicy", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement/referrerPolicy", - "summary": "The referrerPolicy property of the HTMLScriptElement interface reflects the HTML referrerpolicy of the <script> element and fetches made by that script, defining which referrer is sent when fetching the resource.", + "summary": "The referrerPolicy property of the HTMLScriptElement interface reflects the HTML referrerpolicy of the <script> element, which defines how the referrer is set when fetching the script and any scripts it imports.", "support": { "chrome": { "version_added": "70" @@ -27724,7 +28806,7 @@ "version_added": "79" } }, - "title": "HTMLScriptElement.referrerPolicy" + "title": "HTMLScriptElement: referrerPolicy property" } ], "dom-script-supports": [ @@ -27735,9 +28817,9 @@ "webkit" ], "filename": "api/HTMLScriptElement.json", - "name": "supports", - "slug": "API/HTMLScriptElement/supports", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement/supports", + "name": "supports_static", + "slug": "API/HTMLScriptElement/supports_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement/supports_static", "summary": "The supports() static method of the HTMLScriptElement interface provides a simple and consistent method to feature-detect what types of scripts are supported by the user agent.", "support": { "chrome": { @@ -27765,7 +28847,7 @@ "version_added": "96" } }, - "title": "HTMLScriptElement.supports()" + "title": "HTMLScriptElement: supports() static method" } ], "htmlscriptelement": [ @@ -27865,7 +28947,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.add()" + "title": "HTMLSelectElement: add() method" } ], "dom-select-item-dev": [ @@ -27914,7 +28996,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.item()" + "title": "HTMLSelectElement: item() method" } ], "dom-select-nameditem-dev": [ @@ -27964,7 +29046,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.namedItem()" + "title": "HTMLSelectElement: namedItem() method" } ], "dom-select-options-dev": [ @@ -28013,7 +29095,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.options" + "title": "HTMLSelectElement: options property" } ], "dom-select-remove": [ @@ -28062,7 +29144,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.remove()" + "title": "HTMLSelectElement: remove() method" } ], "dom-select-selectedindex-dev": [ @@ -28076,7 +29158,7 @@ "name": "selectedIndex", "slug": "API/HTMLSelectElement/selectedIndex", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/selectedIndex", - "summary": "The HTMLSelectElement.selectedIndex is a long that reflects the index of the first or last selected <option> element, depending on the value of multiple. The value -1 indicates that no element is selected.", + "summary": "The HTMLSelectElement.selectedIndex property is a long that reflects the index of the first or last selected <option> element, depending on the value of multiple. The value -1 indicates that no element is selected.", "support": { "chrome": { "version_added": "1" @@ -28111,7 +29193,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.selectedIndex" + "title": "HTMLSelectElement: selectedIndex property" } ], "dom-select-selectedoptions-dev": [ @@ -28158,7 +29240,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.selectedOptions" + "title": "HTMLSelectElement: selectedOptions property" } ], "dom-select-type-dev": [ @@ -28207,7 +29289,7 @@ "version_added": "79" } }, - "title": "HTMLSelectElement.type" + "title": "HTMLSelectElement: type property" } ], "htmlselectelement": [ @@ -28266,7 +29348,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/HTMLSlotElement.json", "name": "assign", @@ -28290,7 +29373,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -28299,7 +29382,7 @@ "version_added": "86" } }, - "title": "HTMLSlotElement.assign()" + "title": "HTMLSlotElement: assign() method" } ], "dom-slot-assignedelements-dev": [ @@ -28340,7 +29423,7 @@ "version_added": "79" } }, - "title": "HTMLSlotElement.assignedElements()" + "title": "HTMLSlotElement: assignedElements() method" } ], "dom-slot-assignednodes-dev": [ @@ -28381,7 +29464,7 @@ "version_added": "79" } }, - "title": "HTMLSlotElement.assignedNodes()" + "title": "HTMLSlotElement: assignedNodes() method" } ], "dom-slot-name-dev": [ @@ -28422,7 +29505,7 @@ "version_added": "79" } }, - "title": "HTMLSlotElement.name" + "title": "HTMLSlotElement: name property" } ], "handler-onslotchange": [ @@ -28521,7 +29604,7 @@ "summary": "The HTMLSourceElement interface provides special properties (beyond the regular HTMLElement object interface it also has available to it by inheritance) for manipulating <source> elements.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -28643,7 +29726,7 @@ "version_added": "79" } }, - "title": "HTMLStyleElement.disabled" + "title": "HTMLStyleElement: disabled property" } ], "dom-style-media": [ @@ -28690,7 +29773,7 @@ "version_added": "79" } }, - "title": "HTMLStyleElement.media" + "title": "HTMLStyleElement: media property" } ], "htmlstyleelement": [ @@ -28751,7 +29834,7 @@ "name": "HTMLTableCaptionElement", "slug": "API/HTMLTableCaptionElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement", - "summary": "The HTMLTableCaptionElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating table caption elements.", + "summary": "The HTMLTableCaptionElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating table <caption> elements.", "support": { "chrome": { "version_added": "1" @@ -28800,7 +29883,7 @@ "name": "HTMLTableCellElement", "slug": "API/HTMLTableCellElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement", - "summary": "The HTMLTableCellElement interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of table cells, either header or data cells, in an HTML document.", + "summary": "The HTMLTableCellElement interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of table cells, either header cells (<th>)) or data cells (<td>), in an HTML document.", "support": { "chrome": { "version_added": "1" @@ -28933,7 +30016,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.caption" + "title": "HTMLTableElement: caption property" } ], "dom-table-createcaption-dev": [ @@ -28982,7 +30065,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.createCaption()" + "title": "HTMLTableElement: createCaption() method" } ], "dom-table-createtbody-dev": [ @@ -29025,7 +30108,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.createTBody()" + "title": "HTMLTableElement: createTBody() method" } ], "dom-table-createtfoot-dev": [ @@ -29074,7 +30157,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.createTFoot()" + "title": "HTMLTableElement: createTFoot() method" } ], "dom-table-createthead-dev": [ @@ -29123,7 +30206,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.createTHead()" + "title": "HTMLTableElement: createTHead() method" } ], "dom-table-deletecaption-dev": [ @@ -29172,7 +30255,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.deleteCaption()" + "title": "HTMLTableElement: deleteCaption() method" } ], "dom-table-deleterow-dev": [ @@ -29221,7 +30304,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.deleteRow()" + "title": "HTMLTableElement: deleteRow() method" } ], "dom-table-deletetfoot-dev": [ @@ -29270,7 +30353,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.deleteTFoot()" + "title": "HTMLTableElement: deleteTFoot() method" } ], "dom-table-deletethead-dev": [ @@ -29319,7 +30402,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.deleteTHead()" + "title": "HTMLTableElement: deleteTHead() method" } ], "dom-table-insertrow-dev": [ @@ -29371,7 +30454,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.insertRow()" + "title": "HTMLTableElement: insertRow() method" } ], "dom-table-rows-dev": [ @@ -29420,7 +30503,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.rows" + "title": "HTMLTableElement: rows property" } ], "dom-table-tbodies-dev": [ @@ -29469,7 +30552,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.tBodies" + "title": "HTMLTableElement: tBodies property" } ], "dom-table-tfoot-dev": [ @@ -29518,7 +30601,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.tFoot" + "title": "HTMLTableElement: tFoot property" } ], "dom-table-thead-dev": [ @@ -29567,7 +30650,7 @@ "version_added": "79" } }, - "title": "HTMLTableElement.tHead" + "title": "HTMLTableElement: tHead property" } ], "htmltableelement": [ @@ -29665,7 +30748,7 @@ "version_added": "79" } }, - "title": "HTMLTableRowElement.insertCell()" + "title": "HTMLTableRowElement: insertCell() method" } ], "dom-tr-rowindex-dev": [ @@ -29714,7 +30797,7 @@ "version_added": "79" } }, - "title": "HTMLTableRowElement.rowIndex" + "title": "HTMLTableRowElement: rowIndex property" } ], "htmltablerowelement": [ @@ -29777,7 +30860,7 @@ "name": "HTMLTableSectionElement", "slug": "API/HTMLTableSectionElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement", - "summary": "The HTMLTableSectionElement interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of sections, that is headers, footers and bodies, in an HTML table.", + "summary": "The HTMLTableSectionElement interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of sections, that is headers, footers and bodies (<thead>, <tfoot>, and <tbody>, respectively) in an HTML table.", "support": { "chrome": { "version_added": "1" @@ -29855,7 +30938,7 @@ "version_added": "79" } }, - "title": "HTMLTemplateElement.content" + "title": "HTMLTemplateElement: content property" } ], "htmltemplateelement": [ @@ -30006,7 +31089,7 @@ "version_added": "79" } }, - "title": "HTMLTimeElement.dateTime" + "title": "HTMLTimeElement: dateTime property" } ], "htmltimeelement": [ @@ -30079,7 +31162,7 @@ "name": "HTMLTitleElement", "slug": "API/HTMLTitleElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement", - "summary": "The HTMLTitleElement interface contains the title for a document. This element inherits all of the properties and methods of the HTMLElement interface.", + "summary": "The HTMLTitleElement interface is implemented by a document's <title>. This element inherits all of the properties and methods of the HTMLElement interface.", "support": { "chrome": { "version_added": "1" @@ -30407,7 +31490,7 @@ "version_added": "79" } }, - "title": "HTMLTrackElement.src" + "title": "HTMLTrackElement: src property" } ], "htmltrackelement": [ @@ -30469,7 +31552,7 @@ "name": "HTMLUListElement", "slug": "API/HTMLUListElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement", - "summary": "The HTMLUListElement interface provides special properties (beyond those defined on the regular HTMLElement interface it also has available to it by inheritance) for manipulating unordered list elements.", + "summary": "The HTMLUListElement interface provides special properties (beyond those defined on the regular HTMLElement interface it also has available to it by inheritance) for manipulating unordered list (<ul>) elements.", "support": { "chrome": { "version_added": "1" @@ -30568,7 +31651,7 @@ "summary": "The HTMLVideoElement interface's read-only videoHeight property indicates the intrinsic height of the video, expressed in CSS pixels. In simple terms, this is the height of the media in its natural size.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -30602,7 +31685,7 @@ "version_added": "79" } }, - "title": "HTMLVideoElement.videoHeight" + "title": "HTMLVideoElement: videoHeight property" } ], "dom-video-videowidth-dev": [ @@ -30619,7 +31702,7 @@ "summary": "The HTMLVideoElement interface's read-only videoWidth property indicates the intrinsic width of the video, expressed in CSS pixels. In simple terms, this is the width of the media in its natural size.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -30653,7 +31736,7 @@ "version_added": "79" } }, - "title": "HTMLVideoElement.videoWidth" + "title": "HTMLVideoElement: videoWidth property" } ], "htmlvideoelement": [ @@ -30667,10 +31750,10 @@ "name": "HTMLVideoElement", "slug": "API/HTMLVideoElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement", - "summary": "The HTMLVideoElement interface provides special properties and methods for manipulating video objects. It also inherits properties and methods of HTMLMediaElement and HTMLElement.", + "summary": "Implemented by the <video> element, the HTMLVideoElement interface provides special properties and methods for manipulating video objects. It also inherits properties and methods of HTMLMediaElement and HTMLElement.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -30707,6 +31790,96 @@ "title": "HTMLVideoElement" } ], + "the-hashchangeevent-interface": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HashChangeEvent.json", + "name": "HashChangeEvent", + "slug": "API/HashChangeEvent/HashChangeEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HashChangeEvent/HashChangeEvent", + "summary": "The HashChangeEvent() constructor creates a new HashChangeEvent object, that is used by the hashchange event fired at the window object when the fragment of the URL changes.", + "support": { + "chrome": { + "version_added": "16" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "11" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "6" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HashChangeEvent: HashChangeEvent() constructor" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HashChangeEvent.json", + "name": "HashChangeEvent", + "slug": "API/HashChangeEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HashChangeEvent", + "summary": "The HashChangeEvent interface represents events that fire when the fragment identifier of the URL has changed.", + "support": { + "chrome": { + "version_added": "8" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.6" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "8" + }, + "oculus": "mirror", + "opera": { + "version_added": "10.6" + }, + "opera_android": { + "version_added": "11" + }, + "safari": { + "version_added": "5" + }, + "safari_ios": { + "version_added": "5" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HashChangeEvent" + } + ], "dom-hashchangeevent-newurl-dev": [ { "engines": [ @@ -30751,7 +31924,7 @@ "version_added": "79" } }, - "title": "HashChangeEvent.newURL" + "title": "HashChangeEvent: newURL property" } ], "dom-hashchangeevent-oldurl-dev": [ @@ -30798,56 +31971,7 @@ "version_added": "79" } }, - "title": "HashChangeEvent.oldURL" - } - ], - "the-hashchangeevent-interface": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/HashChangeEvent.json", - "name": "HashChangeEvent", - "slug": "API/HashChangeEvent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HashChangeEvent", - "summary": "The HashChangeEvent interface represents events that fire when the fragment identifier of the URL has changed.", - "support": { - "chrome": { - "version_added": "8" - }, - "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "3.6" - }, - "firefox_android": "mirror", - "ie": { - "version_added": "8" - }, - "oculus": "mirror", - "opera": { - "version_added": "10.6" - }, - "opera_android": { - "version_added": "11" - }, - "safari": { - "version_added": "5" - }, - "safari_ios": { - "version_added": "5" - }, - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "HashChangeEvent" + "title": "HashChangeEvent: oldURL property" } ], "dom-history-back-dev": [ @@ -30894,7 +32018,7 @@ "version_added": "79" } }, - "title": "History.back()" + "title": "History: back() method" } ], "dom-history-forward-dev": [ @@ -30941,7 +32065,7 @@ "version_added": "79" } }, - "title": "History.forward()" + "title": "History: forward() method" } ], "dom-history-go-dev": [ @@ -30988,7 +32112,7 @@ "version_added": "79" } }, - "title": "History.go()" + "title": "History: go() method" } ], "dom-history-length-dev": [ @@ -31035,7 +32159,7 @@ "version_added": "79" } }, - "title": "History.length" + "title": "History: length property" } ], "dom-history-pushstate-dev": [ @@ -31087,7 +32211,7 @@ "version_added": "79" } }, - "title": "History.pushState()" + "title": "History: pushState() method" } ], "dom-history-replacestate-dev": [ @@ -31139,7 +32263,7 @@ "version_added": "79" } }, - "title": "History.replaceState()" + "title": "History: replaceState() method" } ], "dom-history-scroll-restoration-dev": [ @@ -31180,7 +32304,7 @@ "version_added": "79" } }, - "title": "History.scrollRestoration" + "title": "History: scrollRestoration property" } ], "dom-history-state-dev": [ @@ -31227,7 +32351,7 @@ "version_added": "79" } }, - "title": "History.state" + "title": "History: state property" } ], "the-history-interface": [ @@ -31319,7 +32443,7 @@ "version_added": "79" } }, - "title": "Window.history" + "title": "Window: history property" } ], "dom-imagebitmap-close-dev": [ @@ -31364,7 +32488,7 @@ "version_added": "79" } }, - "title": "ImageBitmap.close()" + "title": "ImageBitmap: close() method" } ], "dom-imagebitmap-height-dev": [ @@ -31405,7 +32529,7 @@ "version_added": "79" } }, - "title": "ImageBitmap.height" + "title": "ImageBitmap: height property" } ], "dom-imagebitmap-width-dev": [ @@ -31446,7 +32570,7 @@ "version_added": "79" } }, - "title": "ImageBitmap.width" + "title": "ImageBitmap: width property" } ], "imagebitmap": [ @@ -31504,7 +32628,7 @@ "summary": "The ImageBitmapRenderingContext.transferFromImageBitmap() method displays the given ImageBitmap in the canvas associated with this rendering context. The ownership of the ImageBitmap is transferred to the canvas as well.", "support": { "chrome": { - "version_added": "56" + "version_added": "66" }, "chrome_android": "mirror", "edge": "mirror", @@ -31526,7 +32650,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "11.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -31535,7 +32659,7 @@ "version_added": "79" } }, - "title": "ImageBitmapRenderingContext.transferFromImageBitmap()" + "title": "ImageBitmapRenderingContext: transferFromImageBitmap() method" } ], "the-imagebitmaprenderingcontext-interface": [ @@ -31552,7 +32676,7 @@ "summary": "The ImageBitmapRenderingContext interface is a canvas rendering context that provides the functionality to replace the canvas's contents with the given ImageBitmap. Its context id (the first argument to HTMLCanvasElement.getContext() or OffscreenCanvas.getContext()) is \"bitmaprenderer\".", "support": { "chrome": { - "version_added": "56" + "version_added": "66" }, "chrome_android": "mirror", "edge": "mirror", @@ -31567,7 +32691,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "11.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -31619,7 +32743,7 @@ "version_added": "79" } }, - "title": "ImageData()" + "title": "ImageData: ImageData() constructor" } ], "dom-imagedata-colorspace": [ @@ -31659,7 +32783,7 @@ "version_added": "92" } }, - "title": "ImageData.colorSpace" + "title": "ImageData: colorSpace property" } ], "dom-imagedata-data-dev": [ @@ -31708,7 +32832,7 @@ "version_added": "79" } }, - "title": "ImageData.data" + "title": "ImageData: data property" } ], "dom-imagedata-height-dev": [ @@ -31757,7 +32881,7 @@ "version_added": "79" } }, - "title": "ImageData.height" + "title": "ImageData: height property" } ], "dom-imagedata-width-dev": [ @@ -31806,7 +32930,7 @@ "version_added": "79" } }, - "title": "ImageData.width" + "title": "ImageData: width property" } ], "imagedata": [ @@ -31898,7 +33022,7 @@ "version_added": "79" } }, - "title": "location.ancestorOrigins" + "title": "location: ancestorOrigins property" } ], "dom-location-assign-dev": [ @@ -31950,7 +33074,7 @@ "version_added": "79" } }, - "title": "location.assign()" + "title": "location: assign() method" } ], "dom-location-hash-dev": [ @@ -32000,7 +33124,7 @@ "version_added": "79" } }, - "title": "location.hash" + "title": "location: hash property" } ], "dom-location-host-dev": [ @@ -32050,7 +33174,7 @@ "version_added": "79" } }, - "title": "location.host" + "title": "location: host property" } ], "dom-location-hostname-dev": [ @@ -32100,7 +33224,7 @@ "version_added": "79" } }, - "title": "location.hostname" + "title": "location: hostname property" } ], "dom-location-href-dev": [ @@ -32150,7 +33274,7 @@ "version_added": "79" } }, - "title": "location.href" + "title": "location: href property" }, { "engines": [ @@ -32195,7 +33319,7 @@ "version_added": "79" } }, - "title": "location.toString()" + "title": "location: toString() method" } ], "dom-location-origin-dev": [ @@ -32245,7 +33369,7 @@ "version_added": "79" } }, - "title": "location.origin" + "title": "location: origin property" } ], "dom-location-pathname-dev": [ @@ -32297,7 +33421,7 @@ "version_added": "79" } }, - "title": "location.pathname" + "title": "location: pathname property" } ], "dom-location-port-dev": [ @@ -32347,7 +33471,7 @@ "version_added": "79" } }, - "title": "location.port" + "title": "location: port property" } ], "dom-location-protocol-dev": [ @@ -32397,7 +33521,7 @@ "version_added": "79" } }, - "title": "location.protocol" + "title": "location: protocol property" } ], "dom-location-reload-dev": [ @@ -32448,7 +33572,7 @@ "version_added": "79" } }, - "title": "location.reload()" + "title": "location: reload() method" } ], "dom-location-replace-dev": [ @@ -32498,7 +33622,7 @@ "version_added": "79" } }, - "title": "location.replace()" + "title": "location: replace() method" } ], "dom-location-search-dev": [ @@ -32549,7 +33673,7 @@ "version_added": "79" } }, - "title": "location.search" + "title": "location: search property" } ], "dom-mediaerror-code-dev": [ @@ -32566,7 +33690,7 @@ "summary": "The read-only property MediaError.code returns a numeric value which represents the kind of error that occurred on a media element. To get a text string with specific diagnostic information, see MediaError.message.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -32598,7 +33722,7 @@ "version_added": "79" } }, - "title": "MediaError.code" + "title": "MediaError: code property" } ], "dom-mediaerror-message-dev": [ @@ -32639,7 +33763,7 @@ "version_added": "79" } }, - "title": "MediaError.message" + "title": "MediaError: message property" } ], "error-codes": [ @@ -32656,7 +33780,7 @@ "summary": "The MediaError interface represents an error which occurred while handling media in an HTML media element based on HTMLMediaElement, such as <audio> or <video>.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -32712,7 +33836,7 @@ "summary": "The MessageChannel() constructor of the MessageChannel interface returns a new MessageChannel object with two new MessagePort objects.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -32756,7 +33880,7 @@ "version_added": "79" } }, - "title": "MessageChannel()" + "title": "MessageChannel: MessageChannel() constructor" } ], "dom-messagechannel-port1-dev": [ @@ -32773,7 +33897,7 @@ "summary": "The port1 read-only property of the MessageChannel interface returns the first port of the message channel — the port attached to the context that originated the channel.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -32809,7 +33933,7 @@ "version_added": "79" } }, - "title": "MessageChannel.port1" + "title": "MessageChannel: port1 property" } ], "dom-messagechannel-port2-dev": [ @@ -32826,7 +33950,7 @@ "summary": "The port2 read-only property of the MessageChannel interface returns the second port of the message channel — the port attached to the context at the other end of the channel, which the message is initially sent to.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -32862,7 +33986,7 @@ "version_added": "79" } }, - "title": "MessageChannel.port2" + "title": "MessageChannel: port2 property" } ], "message-channels": [ @@ -32879,7 +34003,7 @@ "summary": "The MessageChannel interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -32976,7 +34100,7 @@ "version_added": "79" } }, - "title": "MessageEvent()" + "title": "MessageEvent: MessageEvent() constructor" } ], "dom-messageevent-data-dev": [ @@ -32993,7 +34117,7 @@ "summary": "The data read-only property of the MessageEvent interface represents the data sent by the message emitter.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33031,7 +34155,7 @@ "version_added": "79" } }, - "title": "MessageEvent.data" + "title": "MessageEvent: data property" } ], "dom-messageevent-lasteventid-dev": [ @@ -33048,7 +34172,7 @@ "summary": "The lastEventId read-only property of the MessageEvent interface is a string representing a unique ID for the event.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33086,7 +34210,7 @@ "version_added": "79" } }, - "title": "MessageEvent.lastEventId" + "title": "MessageEvent: lastEventId property" } ], "dom-messageevent-origin-dev": [ @@ -33103,7 +34227,7 @@ "summary": "The origin read-only property of the MessageEvent interface is a string representing the origin of the message emitter.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33141,7 +34265,7 @@ "version_added": "79" } }, - "title": "MessageEvent.origin" + "title": "MessageEvent: origin property" } ], "dom-messageevent-ports-dev": [ @@ -33158,7 +34282,7 @@ "summary": "The ports read-only property of the MessageEvent interface is an array of MessagePort objects representing the ports associated with the channel the message is being sent through (where appropriate, e.g. in channel messaging or when sending a message to a shared worker).", "support": { "chrome": { - "version_added": "1" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -33196,7 +34320,7 @@ "version_added": "79" } }, - "title": "MessageEvent.ports" + "title": "MessageEvent: ports property" } ], "dom-messageevent-source-dev": [ @@ -33213,7 +34337,7 @@ "summary": "The source read-only property of the MessageEvent interface is a MessageEventSource (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33251,7 +34375,7 @@ "version_added": "79" } }, - "title": "MessageEvent.source" + "title": "MessageEvent: source property" } ], "the-messageevent-interface": [ @@ -33268,7 +34392,7 @@ "summary": "The MessageEvent interface represents a message received by a target object.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33323,7 +34447,7 @@ "summary": "The close() method of the MessagePort interface disconnects the port, so it is no longer active. This stops the flow of messages to that port.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33367,7 +34491,7 @@ "version_added": "79" } }, - "title": "MessagePort.close()" + "title": "MessagePort: close() method" } ], "handler-messageport-onmessage": [ @@ -33384,7 +34508,7 @@ "summary": "The message event is fired on a MessagePort object when a message arrives on that channel.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33437,7 +34561,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/MessagePort.json", "name": "messageerror_event", @@ -33479,7 +34604,7 @@ "version_added": "47" }, "safari": { - "version_added": false, + "version_added": "16.4", "notes": "See <a href='https://webkit.org/b/171216'>bug 171216</a>." }, "safari_ios": "mirror", @@ -33506,7 +34631,7 @@ "summary": "The postMessage() method of the MessagePort interface sends a message from the port, and optionally, transfers ownership of objects to other browsing contexts.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": [ @@ -33554,7 +34679,7 @@ "version_added": "79" } }, - "title": "MessagePort.postMessage()" + "title": "MessagePort: postMessage() method" } ], "dom-messageport-start-dev": [ @@ -33571,7 +34696,7 @@ "summary": "The start() method of the MessagePort interface starts the sending of messages queued on the port. This method is only needed when using EventTarget.addEventListener; it is implied when using onmessage.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33607,7 +34732,7 @@ "version_added": "79" } }, - "title": "MessagePort.start()" + "title": "MessagePort: start() method" } ], "message-ports": [ @@ -33624,7 +34749,7 @@ "summary": "The MessagePort interface of the Channel Messaging API represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -33716,7 +34841,7 @@ "version_added": "79" } }, - "title": "Navigator.cookieEnabled" + "title": "Navigator: cookieEnabled property" } ], "dom-navigator-hardwareconcurrency-dev": [ @@ -33762,7 +34887,7 @@ "version_added": "79" } }, - "title": "Navigator.hardwareConcurrency" + "title": "Navigator: hardwareConcurrency property" }, { "engines": [ @@ -33806,7 +34931,7 @@ "version_added": "79" } }, - "title": "Navigator.hardwareConcurrency" + "title": "Navigator: hardwareConcurrency property" } ], "dom-navigator-language-dev": [ @@ -33860,7 +34985,7 @@ "version_added": "79" } }, - "title": "Navigator.language" + "title": "Navigator: language property" }, { "engines": [ @@ -33909,7 +35034,7 @@ "version_added": "79" } }, - "title": "WorkerNavigator.language" + "title": "WorkerNavigator: language property" } ], "dom-navigator-languages-dev": [ @@ -33968,7 +35093,7 @@ "notes": "Before Chrome 65, <code>navigator.languages[0]</code> is not guaranteed to equal <code>navigator.language</code>." } }, - "title": "Navigator.languages" + "title": "Navigator: languages property" }, { "engines": [ @@ -34022,7 +35147,7 @@ "notes": "Before Chrome 65, <code>navigator.languages[0]</code> is not guaranteed to equal <code>navigator.language</code>." } }, - "title": "WorkerNavigator.languages" + "title": "WorkerNavigator: languages property" } ], "dom-navigator-online-dev": [ @@ -34039,7 +35164,7 @@ "summary": "Returns the online status of the browser. The property returns a boolean value, with true meaning online and false meaning offline. The property sends updates whenever the browser's ability to connect to the network changes. The update occurs when the user follows links or when a script requests a remote page. For example, the property should return false when users click links soon after they lose internet connection.", "support": { "chrome": { - "version_added": "1", + "version_added": "2", "notes": "Earlier versions of Chrome incorrectly return true when a tab is first opened, but it starts reporting the correct connectivity status after the first network event. Windows: 11, macOS: 14, Chrome OS: 13, Linux: Always returns <code>true</code>. For history, see <a href='https://crbug.com/7469'>crbug.com/7469</a>." }, "chrome_android": { @@ -34083,7 +35208,7 @@ "notes": "Earlier versions of Chrome incorrectly return true when a tab is first opened, but it starts reporting the correct connectivity status after the first network event. Windows: 11, macOS: 14, Chrome OS: 13, Linux: Always returns <code>true</code>. For history, see <a href='https://crbug.com/7469'>crbug.com/7469</a>." } }, - "title": "Navigator.onLine" + "title": "Navigator: onLine property" }, { "engines": [ @@ -34139,14 +35264,15 @@ "version_added": "79" } }, - "title": "WorkerNavigator.onLine" + "title": "WorkerNavigator: onLine property" } ], "dom-navigator-pdfviewerenabled": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Navigator.json", "name": "pdfViewerEnabled", @@ -34170,7 +35296,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34179,7 +35305,7 @@ "version_added": "94" } }, - "title": "Navigator.pdfViewerEnabled" + "title": "Navigator: pdfViewerEnabled property" } ], "custom-handlers": [ @@ -34227,15 +35353,65 @@ "notes": "From Chrome 77, the URL parameter only accepts <code>http</code> or <code>https</code> URLs." } }, - "title": "Navigator.registerProtocolHandler()" + "title": "Navigator: registerProtocolHandler() method" } ], - "dom-navigator-useractivation": [ + "dom-navigator-unregisterprotocolhandler-dev": [ { "engines": [ "blink" ], "filename": "api/Navigator.json", + "name": "unregisterProtocolHandler", + "slug": "API/Navigator/unregisterProtocolHandler", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/unregisterProtocolHandler", + "summary": "The Navigator method unregisterProtocolHandler() removes a protocol handler for a given URL scheme.", + "support": { + "chrome": { + "version_added": "38" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": [ + { + "version_added": "25" + }, + { + "version_added": "12.1", + "version_removed": "15" + } + ], + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Navigator: unregisterProtocolHandler() method" + } + ], + "dom-navigator-useractivation": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/Navigator.json", "name": "userActivation", "slug": "API/Navigator/userActivation", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/userActivation", @@ -34257,7 +35433,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34266,7 +35442,7 @@ "version_added": "79" } }, - "title": "Navigator.userActivation" + "title": "Navigator: userActivation property" } ], "dom-navigator-useragent-dev": [ @@ -34316,7 +35492,7 @@ "version_added": "79" } }, - "title": "Navigator.userAgent" + "title": "Navigator: userAgent property" }, { "engines": [ @@ -34363,7 +35539,7 @@ "version_added": "79" } }, - "title": "WorkerNavigator.userAgent" + "title": "WorkerNavigator: userAgent property" } ], "the-navigator-object": [ @@ -34420,7 +35596,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "OffscreenCanvas", @@ -34444,7 +35621,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34453,16 +35630,15 @@ "version_added": "79" } }, - "title": "OffscreenCanvas()" + "title": "OffscreenCanvas: OffscreenCanvas() constructor" } ], "dom-offscreencanvas-converttoblob-dev": [ { "engines": [ - "blink" - ], - "altname": [ - "gecko" + "blink", + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "convertToBlob", @@ -34475,10 +35651,15 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": "105", - "alternative_name": "toBlob" - }, + "firefox": [ + { + "version_added": "105" + }, + { + "version_added": "105", + "alternative_name": "toBlob" + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -34487,7 +35668,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34496,14 +35677,15 @@ "version_added": "79" } }, - "title": "OffscreenCanvas.convertToBlob()" + "title": "OffscreenCanvas: convertToBlob() method" } ], "dom-offscreencanvas-getcontext-dev": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "getContext", @@ -34527,7 +35709,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34536,14 +35718,15 @@ "version_added": "79" } }, - "title": "OffscreenCanvas.getContext()" + "title": "OffscreenCanvas: getContext() method" } ], "dom-offscreencanvas-height-dev": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "height", @@ -34567,7 +35750,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34576,20 +35759,21 @@ "version_added": "79" } }, - "title": "OffscreenCanvas.height" + "title": "OffscreenCanvas: height property" } ], "dom-offscreencanvas-transfertoimagebitmap-dev": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "transferToImageBitmap", "slug": "API/OffscreenCanvas/transferToImageBitmap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/transferToImageBitmap", - "summary": "The OffscreenCanvas.transferToImageBitmap() method creates an ImageBitmap object from the most recently rendered image of the OffscreenCanvas.", + "summary": "The OffscreenCanvas.transferToImageBitmap() method creates an ImageBitmap object from the most recently rendered image of the OffscreenCanvas. The OffscreenCanvas allocates a new image for its subsequent rendering.", "support": { "chrome": { "version_added": "69" @@ -34607,7 +35791,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34616,14 +35800,15 @@ "version_added": "79" } }, - "title": "OffscreenCanvas.transferToImageBitmap()" + "title": "OffscreenCanvas: transferToImageBitmap() method" } ], "dom-offscreencanvas-width-dev": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "width", @@ -34647,7 +35832,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34656,14 +35841,15 @@ "version_added": "79" } }, - "title": "OffscreenCanvas.width" + "title": "OffscreenCanvas: width property" } ], "the-offscreencanvas-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvas.json", "name": "OffscreenCanvas", @@ -34687,7 +35873,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34702,8 +35888,8 @@ "offscreencontext2d-commit": [ { "engines": [ - "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvasRenderingContext2D.json", "name": "commit", @@ -34712,7 +35898,7 @@ "summary": "The OffscreenCanvasRenderingContext2D.commit() method of the Canvas 2D API copies the rendering context's bitmap to the bitmap of the placeholder <canvas> element of the associated OffscreenCanvas object. The copy operation is synchronous. Calling this method is not needed for the transfer, since it happens automatically during the event-loop execution.", "support": { "chrome": { - "version_added": "69" + "version_added": false }, "chrome_android": "mirror", "edge": "mirror", @@ -34727,23 +35913,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": false } }, - "title": "OffscreenCanvasRenderingContext2D.commit()" + "title": "OffscreenCanvasRenderingContext2D: commit() method" } ], "the-offscreen-2d-rendering-context": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/OffscreenCanvasRenderingContext2D.json", "name": "OffscreenCanvasRenderingContext2D", @@ -34767,7 +35954,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -34779,7 +35966,7 @@ "title": "OffscreenCanvasRenderingContext2D" } ], - "dom-pagetransitionevent-persisted-dev": [ + "the-pagetransitionevent-interface": [ { "engines": [ "blink", @@ -34787,10 +35974,49 @@ "webkit" ], "filename": "api/PageTransitionEvent.json", - "name": "persisted", - "slug": "API/PageTransitionEvent/persisted", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PageTransitionEvent/persisted", - "summary": "The persisted read-only property indicates if a webpage is loading from a cache.", + "name": "PageTransitionEvent", + "slug": "API/PageTransitionEvent/PageTransitionEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PageTransitionEvent/PageTransitionEvent", + "summary": "The PageTransitionEvent() constructor creates a new PageTransitionEvent object, that is used by the pageshow or pagehide events, fired at the window object when a page is loaded or unloaded.", + "support": { + "chrome": { + "version_added": "16" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "11" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "6" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "PageTransitionEvent: PageTransitionEvent() constructor" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/PageTransitionEvent.json", + "name": "PageTransitionEvent", + "slug": "API/PageTransitionEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PageTransitionEvent", + "summary": "The PageTransitionEvent event object is available inside handler functions for the pageshow and pagehide events, fired when a document is being loaded or unloaded.", "support": { "chrome": { "version_added": "4" @@ -34800,12 +36026,11 @@ "version_added": "12" }, "firefox": { - "version_added": "11" + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { - "version_added": "11", - "notes": "The <code>persisted</code> property is known to be buggy in Internet Explorer. It is advised to check if <code>window.performance.navigation.type == 2</code> as well." + "version_added": "11" }, "oculus": "mirror", "opera": "mirror", @@ -34824,10 +36049,10 @@ "version_added": "79" } }, - "title": "PageTransitionEvent.persisted" + "title": "PageTransitionEvent" } ], - "the-pagetransitionevent-interface": [ + "dom-pagetransitionevent-persisted-dev": [ { "engines": [ "blink", @@ -34835,10 +36060,10 @@ "webkit" ], "filename": "api/PageTransitionEvent.json", - "name": "PageTransitionEvent", - "slug": "API/PageTransitionEvent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PageTransitionEvent", - "summary": "The PageTransitionEvent event object is available inside handler functions for the pageshow and pagehide events, fired when a document is being loaded or unloaded.", + "name": "persisted", + "slug": "API/PageTransitionEvent/persisted", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PageTransitionEvent/persisted", + "summary": "The persisted read-only property indicates if a webpage is loading from a cache.", "support": { "chrome": { "version_added": "4" @@ -34848,11 +36073,12 @@ "version_added": "12" }, "firefox": { - "version_added": "1.5" + "version_added": "11" }, "firefox_android": "mirror", "ie": { - "version_added": "11" + "version_added": "11", + "notes": "The <code>persisted</code> property is known to be buggy in Internet Explorer. It is advised to check if <code>window.performance.navigation.type == 2</code> as well." }, "oculus": "mirror", "opera": "mirror", @@ -34871,7 +36097,7 @@ "version_added": "79" } }, - "title": "PageTransitionEvent" + "title": "PageTransitionEvent: persisted property" } ], "dom-path2d-dev": [ @@ -34914,7 +36140,7 @@ "version_added": "79" } }, - "title": "Path2D()" + "title": "Path2D: Path2D() constructor" } ], "dom-path2d-addpath-dev": [ @@ -34955,7 +36181,7 @@ "version_added": "79" } }, - "title": "Path2D.addPath()" + "title": "Path2D: addPath() method" } ], "path2d-objects": [ @@ -35002,6 +36228,47 @@ } ], "the-popstateevent-interface": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/PopStateEvent.json", + "name": "PopStateEvent", + "slug": "API/PopStateEvent/PopStateEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PopStateEvent/PopStateEvent", + "summary": "The PopStateEvent() constructor creates a new PopStateEvent object.", + "support": { + "chrome": { + "version_added": "16" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "14" + }, + "firefox": { + "version_added": "11" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "6" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "PopStateEvent: PopStateEvent() constructor" + }, { "engines": [ "blink", @@ -35048,6 +36315,53 @@ "title": "PopStateEvent" } ], + "dom-popstateevent-state-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/PopStateEvent.json", + "name": "state", + "slug": "API/PopStateEvent/state", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PopStateEvent/state", + "summary": "The state read-only property of the PopStateEvent interface represents the state stored when the event was created.", + "support": { + "chrome": { + "version_added": "4" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "4" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "6" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "PopStateEvent: state property" + } + ], "unhandled-promise-rejections:dom-event-constructor": [ { "engines": [ @@ -35091,7 +36405,7 @@ "version_added": "79" } }, - "title": "PromiseRejectionEvent()" + "title": "PromiseRejectionEvent: PromiseRejectionEvent() constructor" } ], "dom-promiserejectionevent-promise": [ @@ -35137,7 +36451,7 @@ "version_added": "79" } }, - "title": "PromiseRejectionEvent.promise" + "title": "PromiseRejectionEvent: promise property" } ], "dom-promiserejectionevent-reason": [ @@ -35183,7 +36497,7 @@ "version_added": "79" } }, - "title": "PromiseRejectionEvent.reason" + "title": "PromiseRejectionEvent: reason property" } ], "the-promiserejectionevent-interface": [ @@ -35272,7 +36586,7 @@ "version_added": "79" } }, - "title": "RadioNodeList.value" + "title": "RadioNodeList: value property" } ], "radionodelist": [ @@ -35373,7 +36687,7 @@ "summary": "The error event of the SharedWorker interface fires when an error occurs in the worker.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": { "version_added": false @@ -35490,7 +36804,7 @@ "summary": "The SharedWorker() constructor creates a SharedWorker object that executes the script at the specified URL. This script must obey the same-origin policy.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": { "version_added": false @@ -35540,7 +36854,7 @@ "version_added": "79" } }, - "title": "SharedWorker()" + "title": "SharedWorker: SharedWorker() constructor" } ], "dom-sharedworker-port-dev": [ @@ -35557,7 +36871,7 @@ "summary": "The port property of the SharedWorker interface returns a MessagePort object used to communicate and control the shared worker.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": { "version_added": false @@ -35607,7 +36921,7 @@ "version_added": "79" } }, - "title": "SharedWorker.port" + "title": "SharedWorker: port property" } ], "shared-workers-and-the-sharedworker-interface": [ @@ -35624,10 +36938,11 @@ "summary": "The SharedWorker interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/154571'>bug 154571</a>." }, "edge": "mirror", "firefox": { @@ -35733,7 +37048,7 @@ "version_added": "79" } }, - "title": "SharedWorkerGlobalScope.close()" + "title": "SharedWorkerGlobalScope: close() method" } ], "event-workerglobalscope-connect": [ @@ -35916,7 +37231,7 @@ "version_added": "79" } }, - "title": "SharedWorkerGlobalScope.name" + "title": "SharedWorkerGlobalScope: name property" } ], "shared-workers-and-the-sharedworkerglobalscope-interface": [ @@ -36031,7 +37346,7 @@ "version_added": "79" } }, - "title": "Storage.clear()" + "title": "Storage: clear() method" } ], "dom-storage-getitem-dev": [ @@ -36085,7 +37400,7 @@ "version_added": "79" } }, - "title": "Storage.getItem()" + "title": "Storage: getItem() method" } ], "dom-storage-key-dev": [ @@ -36139,7 +37454,7 @@ "version_added": "79" } }, - "title": "Storage.key()" + "title": "Storage: key() method" } ], "dom-storage-length-dev": [ @@ -36193,7 +37508,7 @@ "version_added": "79" } }, - "title": "Storage.length" + "title": "Storage: length property" } ], "dom-storage-removeitem-dev": [ @@ -36247,7 +37562,7 @@ "version_added": "79" } }, - "title": "Storage.removeItem()" + "title": "Storage: removeItem() method" } ], "dom-storage-setitem-dev": [ @@ -36301,7 +37616,7 @@ "version_added": "79" } }, - "title": "Storage.setItem()" + "title": "Storage: setItem() method" } ], "storage": [ @@ -36450,7 +37765,7 @@ "version_added": "81" } }, - "title": "SubmitEvent()" + "title": "SubmitEvent: SubmitEvent() constructor" } ], "the-submitevent-interface:dom-submitevent-submitter-2": [ @@ -36498,7 +37813,7 @@ "version_added": "81" } }, - "title": "SubmitEvent.submitter" + "title": "SubmitEvent: submitter property" } ], "the-submitevent-interface": [ @@ -36580,7 +37895,7 @@ "version_added": "79" } }, - "title": "TextMetrics.actualBoundingBoxAscent" + "title": "TextMetrics: actualBoundingBoxAscent property" } ], "dom-textmetrics-actualboundingboxdescent-dev": [ @@ -36621,7 +37936,7 @@ "version_added": "79" } }, - "title": "TextMetrics.actualBoundingBoxDescent" + "title": "TextMetrics: actualBoundingBoxDescent property" } ], "dom-textmetrics-actualboundingboxleft-dev": [ @@ -36662,7 +37977,7 @@ "version_added": "79" } }, - "title": "TextMetrics.actualBoundingBoxLeft" + "title": "TextMetrics: actualBoundingBoxLeft property" } ], "dom-textmetrics-actualboundingboxright-dev": [ @@ -36703,7 +38018,7 @@ "version_added": "79" } }, - "title": "TextMetrics.actualBoundingBoxRight" + "title": "TextMetrics: actualBoundingBoxRight property" } ], "dom-textmetrics-alphabeticbaseline-dev": [ @@ -36753,7 +38068,7 @@ "version_added": false } }, - "title": "TextMetrics.alphabeticBaseline" + "title": "TextMetrics: alphabeticBaseline property" } ], "dom-textmetrics-emheightascent-dev": [ @@ -36817,7 +38132,7 @@ ] } }, - "title": "TextMetrics.emHeightAscent" + "title": "TextMetrics: emHeightAscent property" } ], "dom-textmetrics-emheightdescent-dev": [ @@ -36881,7 +38196,7 @@ ] } }, - "title": "TextMetrics.emHeightDescent" + "title": "TextMetrics: emHeightDescent property" } ], "dom-textmetrics-fontboundingboxascent-dev": [ @@ -36891,14 +38206,11 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/TextMetrics.json", "name": "fontBoundingBoxAscent", "slug": "API/TextMetrics/fontBoundingBoxAscent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TextMetrics/fontBoundingBoxAscent", - "summary": "The read-only fontBoundingBoxAscent property of the TextMetrics interface is a double giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the top of the highest bounding rectangle of all the fonts used to render the text, in CSS pixels.", + "summary": "The read-only fontBoundingBoxAscent property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute, to the top of the highest bounding rectangle of all the fonts used to render the text, in CSS pixels.", "support": { "chrome": { "version_added": "87" @@ -36906,14 +38218,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "74", - "flags": [ - { - "type": "preference", - "name": "dom.textMetrics.fontBoundingBox.enabled", - "value_to_set": "true" - } - ] + "version_added": "116" }, "firefox_android": "mirror", "ie": { @@ -36932,7 +38237,7 @@ "version_added": "87" } }, - "title": "TextMetrics.fontBoundingBoxAscent" + "title": "TextMetrics: fontBoundingBoxAscent property" } ], "dom-textmetrics-fontboundingboxdescent-dev": [ @@ -36942,14 +38247,11 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/TextMetrics.json", "name": "fontBoundingBoxDescent", "slug": "API/TextMetrics/fontBoundingBoxDescent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TextMetrics/fontBoundingBoxDescent", - "summary": "The read-only fontBoundingBoxDescent property of the TextMetrics interface is a double giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the bottom of the bounding rectangle of all the fonts used to render the text, in CSS pixels.", + "summary": "The read-only fontBoundingBoxDescent property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the bottom of the bounding rectangle of all the fonts used to render the text, in CSS pixels.", "support": { "chrome": { "version_added": "87" @@ -36957,14 +38259,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "74", - "flags": [ - { - "type": "preference", - "name": "dom.textMetrics.fontBoundingBox.enabled", - "value_to_set": "true" - } - ] + "version_added": "116" }, "firefox_android": "mirror", "ie": { @@ -36983,7 +38278,7 @@ "version_added": "87" } }, - "title": "TextMetrics.fontBoundingBoxDescent" + "title": "TextMetrics: fontBoundingBoxDescent property" } ], "dom-textmetrics-hangingbaseline-dev": [ @@ -37033,7 +38328,7 @@ "version_added": false } }, - "title": "TextMetrics.hangingBaseline" + "title": "TextMetrics: hangingBaseline property" } ], "dom-textmetrics-ideographicbaseline-dev": [ @@ -37083,7 +38378,7 @@ "version_added": false } }, - "title": "TextMetrics.ideographicBaseline" + "title": "TextMetrics: ideographicBaseline property" } ], "dom-textmetrics-width-dev": [ @@ -37100,7 +38395,7 @@ "summary": "The read-only width property of the TextMetrics interface contains the text's advance width (the width of that inline box) in CSS pixels.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -37132,7 +38427,7 @@ "version_added": "79" } }, - "title": "TextMetrics.width" + "title": "TextMetrics: width property" } ], "textmetrics": [ @@ -37149,7 +38444,7 @@ "summary": "The TextMetrics interface represents the dimensions of a piece of text in the canvas; a TextMetrics instance can be retrieved using the CanvasRenderingContext2D.measureText() method.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -37235,7 +38530,7 @@ "version_added": "79" } }, - "title": "TextTrack.activeCues" + "title": "TextTrack: activeCues property" } ], "dom-texttrack-addcue-dev": [ @@ -37284,7 +38579,7 @@ "version_added": "79" } }, - "title": "TextTrack.addCue()" + "title": "TextTrack: addCue() method" } ], "handler-texttrack-oncuechange": [ @@ -37385,7 +38680,7 @@ "version_added": "79" } }, - "title": "TextTrack.cues" + "title": "TextTrack: cues property" } ], "dom-texttrack-id-dev": [ @@ -37406,7 +38701,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "18" }, "firefox": { "version_added": "31" @@ -37428,7 +38723,7 @@ "version_added": "79" } }, - "title": "TextTrack.id" + "title": "TextTrack: id property" } ], "dom-texttrack-inbandmetadatatrackdispatchtype-dev": [ @@ -37472,7 +38767,7 @@ "notes": "See <a href='https://crbug.com/754093'>bug 754093</a>." } }, - "title": "TextTrack.inBandMetadataTrackDispatchType" + "title": "TextTrack: inBandMetadataTrackDispatchType property" } ], "dom-texttrack-kind-dev": [ @@ -37521,7 +38816,7 @@ "version_added": "79" } }, - "title": "TextTrack.kind" + "title": "TextTrack: kind property" } ], "dom-texttrack-label-dev": [ @@ -37570,7 +38865,7 @@ "version_added": "79" } }, - "title": "TextTrack.label" + "title": "TextTrack: label property" } ], "dom-texttrack-language-dev": [ @@ -37619,7 +38914,7 @@ "version_added": "79" } }, - "title": "TextTrack.language" + "title": "TextTrack: language property" } ], "dom-texttrack-mode-dev": [ @@ -37671,7 +38966,7 @@ "version_added": "79" } }, - "title": "TextTrack.mode" + "title": "TextTrack: mode property" } ], "dom-texttrack-removecue-dev": [ @@ -37720,7 +39015,7 @@ "version_added": "79" } }, - "title": "TextTrack.removeCue()" + "title": "TextTrack: removeCue() method" } ], "texttrack": [ @@ -37821,7 +39116,7 @@ "version_added": "79" } }, - "title": "TextTrackCue.endTime" + "title": "TextTrackCue: endTime property" } ], "event-media-enter": [ @@ -38066,7 +39361,7 @@ "version_added": "79" } }, - "title": "TextTrackCue.id" + "title": "TextTrackCue: id property" } ], "dom-texttrackcue-pauseonexit": [ @@ -38115,7 +39410,7 @@ "version_added": "79" } }, - "title": "TextTrackCue.pauseOnExit" + "title": "TextTrackCue: pauseOnExit property" } ], "dom-texttrackcue-starttime": [ @@ -38164,7 +39459,7 @@ "version_added": "79" } }, - "title": "TextTrackCue.startTime" + "title": "TextTrackCue: startTime property" } ], "dom-texttrackcue-track": [ @@ -38213,7 +39508,7 @@ "version_added": "79" } }, - "title": "TextTrackCue.track" + "title": "TextTrackCue: track property" } ], "texttrackcue": [ @@ -38309,7 +39604,7 @@ "version_added": "79" } }, - "title": "TextTrackCueList.getCueById()" + "title": "TextTrackCueList: getCueById() method" } ], "dom-texttrackcuelist-length": [ @@ -38356,7 +39651,7 @@ "version_added": "79" } }, - "title": "TextTrackCueList.length" + "title": "TextTrackCueList: length property" } ], "texttrackcuelist": [ @@ -38446,7 +39741,7 @@ "version_added": "79" } }, - "title": "TextTrackList.getTrackById()" + "title": "TextTrackList: getTrackById() method" } ], "dom-texttracklist-length": [ @@ -38495,7 +39790,7 @@ "version_added": "79" } }, - "title": "TextTrackList.length" + "title": "TextTrackList: length property" } ], "text-track-api": [ @@ -38593,7 +39888,7 @@ "version_added": "79" } }, - "title": "TimeRanges.end()" + "title": "TimeRanges: end() method" } ], "dom-timeranges-length-dev": [ @@ -38642,7 +39937,7 @@ "version_added": "79" } }, - "title": "TimeRanges.length" + "title": "TimeRanges: length property" } ], "dom-timeranges-start-dev": [ @@ -38691,7 +39986,7 @@ "version_added": "79" } }, - "title": "TimeRanges.start()" + "title": "TimeRanges: start() method" } ], "time-ranges": [ @@ -38743,6 +40038,208 @@ "title": "TimeRanges" } ], + "toggleevent": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ToggleEvent.json", + "name": "ToggleEvent", + "slug": "API/ToggleEvent/ToggleEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/ToggleEvent", + "summary": "The ToggleEvent() constructor creates a new ToggleEvent object.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "ToggleEvent: ToggleEvent() constructor" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ToggleEvent.json", + "name": "ToggleEvent", + "slug": "API/ToggleEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent", + "summary": "The ToggleEvent interface represents an event notifying the user when a popover element's state toggles between showing and hidden.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "ToggleEvent" + } + ], + "dom-toggleevent-newstate": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ToggleEvent.json", + "name": "newState", + "slug": "API/ToggleEvent/newState", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState", + "summary": "The newState read-only property of the ToggleEvent interface is a string representing the state the element is transitioning to.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "ToggleEvent: newState property" + } + ], + "dom-toggleevent-oldstate": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "api/ToggleEvent.json", + "name": "oldState", + "slug": "API/ToggleEvent/oldState", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState", + "summary": "The oldState read-only property of the ToggleEvent interface is a string representing the state the element is transitioning from.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "ToggleEvent: oldState property" + } + ], "dom-trackevent-track-dev": [ { "engines": [ @@ -38789,7 +40286,7 @@ "version_added": "79" } }, - "title": "TrackEvent.track" + "title": "TrackEvent: track property" } ], "the-trackevent-interface": [ @@ -38844,7 +40341,8 @@ "dom-useractivation-hasbeenactive": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/UserActivation.json", "name": "hasBeenActive", @@ -38868,7 +40366,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -38877,13 +40375,14 @@ "version_added": "79" } }, - "title": "UserActivation.hasBeenActive" + "title": "UserActivation: hasBeenActive property" } ], "dom-useractivation-isactive": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/UserActivation.json", "name": "isActive", @@ -38892,7 +40391,7 @@ "summary": "The read-only hasBeenActive property of the UserActivation interface indicates whether the current window has sticky user activation (see sticky activation).", "support": { "chrome": { - "version_added": "97" + "version_added": "72" }, "chrome_android": "mirror", "edge": "mirror", @@ -38907,22 +40406,23 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "97" + "version_added": "79" } }, - "title": "UserActivation.hasBeenActive" + "title": "UserActivation: hasBeenActive property" } ], "the-useractivation-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/UserActivation.json", "name": "UserActivation", @@ -38946,7 +40446,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -39000,7 +40500,7 @@ "version_added": "79" } }, - "title": "ValidityState.badInput" + "title": "ValidityState: badInput property" } ], "dom-validitystate-patternmismatch": [ @@ -39017,7 +40517,7 @@ "summary": "The read-only patternMismatch property of a ValidityState object indicates if the value of an <input>, after having been edited by the user, does not conform to the constraints set by the element's pattern attribute.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39051,7 +40551,7 @@ "version_added": "79" } }, - "title": "ValidityState.patternMismatch" + "title": "ValidityState: patternMismatch property" } ], "dom-validitystate-rangeoverflow": [ @@ -39068,7 +40568,7 @@ "summary": "The read-only rangeOverflow property of a ValidityState object indicates if the value of an <input>, after having been edited by the user, does not conform to the constraints set by the element's max attribute.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39102,7 +40602,7 @@ "version_added": "79" } }, - "title": "ValidityState.rangeOverflow" + "title": "ValidityState: rangeOverflow property" } ], "dom-validitystate-rangeunderflow": [ @@ -39119,7 +40619,7 @@ "summary": "The read-only rangeUnderflow property of a ValidityState object indicates if the value of an <input>, after having been edited by the user, does not conform to the constraints set by the element's min attribute.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39153,7 +40653,7 @@ "version_added": "79" } }, - "title": "ValidityState.rangeUnderflow" + "title": "ValidityState: rangeUnderflow property" } ], "dom-validitystate-stepmismatch": [ @@ -39170,7 +40670,7 @@ "summary": "The read-only stepMismatch property of a ValidityState object indicates if the value of an <input>, after having been edited by the user, does not conform to the constraints set by the element's step attribute.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39204,7 +40704,7 @@ "version_added": "79" } }, - "title": "ValidityState.stepMismatch" + "title": "ValidityState: stepMismatch property" } ], "dom-validitystate-toolong-dev": [ @@ -39221,7 +40721,7 @@ "summary": "The read-only tooLong property of a ValidityState object indicates if the value of an <input> or <textarea>, after having been edited by the user, exceeds the maximum code-unit length established by the element's maxlength attribute.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39258,7 +40758,7 @@ "version_added": "79" } }, - "title": "validityState.tooLong" + "title": "validityState: tooLong property" } ], "dom-validitystate-tooshort-dev": [ @@ -39305,7 +40805,7 @@ "version_added": "79" } }, - "title": "ValidityState.tooShort" + "title": "ValidityState: tooShort property" } ], "dom-validitystate-typemismatch": [ @@ -39322,7 +40822,7 @@ "summary": "The read-only typeMismatch property of a ValidityState object indicates if the value of an <input>, after having been edited by the user, does not conform to the constraints set by the element's type attribute.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39356,10 +40856,10 @@ "version_added": "79" } }, - "title": "ValidityState.typeMismatch" + "title": "ValidityState: typeMismatch property" } ], - "the-constraint-validation-api:validitystate-3": [ + "dom-validitystate-valuemissing-dev": [ { "engines": [ "blink", @@ -39367,13 +40867,13 @@ "webkit" ], "filename": "api/ValidityState.json", - "name": "ValidityState", - "slug": "API/ValidityState", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ValidityState", - "summary": "The ValidityState interface represents the validity states that an element can be in, with respect to constraint validation. Together, they help explain why an element's value fails to validate, if it's not valid.", + "name": "valueMissing", + "slug": "API/ValidityState/valueMissing", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ValidityState/valueMissing", + "summary": "The read-only valueMissing property of a ValidityState object indicates if a required control, such as an <input>, <select>, or <textarea>, has an empty value.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -39401,220 +40901,67 @@ }, "samsunginternet_android": "mirror", "webview_android": { - "version_added": "4" + "version_added": "37" }, "edge_blink": { "version_added": "79" } }, - "title": "ValidityState" + "title": "ValidityState: valueMissing property" } ], - "dom-videotrack-id-dev": [ + "the-constraint-validation-api:validitystate-3": [ { "engines": [ "blink", "gecko", "webkit" ], - "needsflag": [ - "blink", - "gecko" - ], - "filename": "api/VideoTrack.json", - "name": "id", - "slug": "API/VideoTrack/id", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/id", - "summary": "The id property contains a string which uniquely identifies the track represented by the VideoTrack.", + "filename": "api/ValidityState.json", + "name": "ValidityState", + "slug": "API/ValidityState", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ValidityState", + "summary": "The ValidityState interface represents the validity states that an element can be in, with respect to constraint validation. Together, they help explain why an element's value fails to validate, if it's not valid.", "support": { "chrome": { - "version_added": "37", - "flags": [ - { - "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" - } - ] + "version_added": "4" }, "chrome_android": "mirror", "edge": { - "version_added": false + "version_added": "12" }, "firefox": { - "version_added": "33", - "flags": [ - { - "type": "preference", - "name": "media.track.enabled", - "value_to_set": "true" - } - ] + "version_added": "4" }, "firefox_android": "mirror", "ie": { "version_added": "10" }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "7" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79", - "flags": [ - { - "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" - } - ] - } - }, - "title": "VideoTrack.id" - } - ], - "dom-videotrack-kind-dev": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "needsflag": [ - "blink", - "gecko" - ], - "filename": "api/VideoTrack.json", - "name": "kind", - "slug": "API/VideoTrack/kind", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/kind", - "summary": "The kind property contains a string indicating the category of video contained in the VideoTrack.", - "support": { - "chrome": { - "version_added": "37", - "flags": [ - { - "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" - } - ] - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "33", - "flags": [ - { - "type": "preference", - "name": "media.track.enabled", - "value_to_set": "true" - } - ] + "opera": { + "version_added": "12.1" }, - "firefox_android": "mirror", - "ie": { - "version_added": "10" + "opera_android": { + "version_added": "12.1" }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", "safari": { - "version_added": "7" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79", - "flags": [ - { - "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" - } - ] - } - }, - "title": "VideoTrack.kind" - } - ], - "dom-videotrack-label-dev": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "needsflag": [ - "blink", - "gecko" - ], - "filename": "api/VideoTrack.json", - "name": "label", - "slug": "API/VideoTrack/label", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/label", - "summary": "The read-only VideoTrack property label returns a string specifying the video track's human-readable label, if one is available; otherwise, it returns an empty string.", - "support": { - "chrome": { - "version_added": "37", - "flags": [ - { - "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" - } - ] - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "33", - "flags": [ - { - "type": "preference", - "name": "media.track.enabled", - "value_to_set": "true" - } - ] - }, - "firefox_android": "mirror", - "ie": { - "version_added": "10" + "version_added": "5" }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "7" + "safari_ios": { + "version_added": "5" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "4" + }, "edge_blink": { - "version_added": "79", - "flags": [ - { - "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" - } - ] + "version_added": "79" } }, - "title": "VideoTrack.label" + "title": "ValidityState" } ], - "dom-videotrack-language-dev": [ + "dom-videotrack-id-dev": [ { "engines": [ "blink", @@ -39626,10 +40973,10 @@ "gecko" ], "filename": "api/VideoTrack.json", - "name": "language", - "slug": "API/VideoTrack/language", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/language", - "summary": "The read-only VideoTrack property language returns a string identifying the language used in the video track.", + "name": "id", + "slug": "API/VideoTrack/id", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/id", + "summary": "The id property contains a string which uniquely identifies the track represented by the VideoTrack.", "support": { "chrome": { "version_added": "37", @@ -39679,10 +41026,10 @@ ] } }, - "title": "VideoTrack.language" + "title": "VideoTrack: id property" } ], - "dom-videotrack-selected-dev": [ + "dom-videotrack-kind-dev": [ { "engines": [ "blink", @@ -39694,10 +41041,10 @@ "gecko" ], "filename": "api/VideoTrack.json", - "name": "selected", - "slug": "API/VideoTrack/selected", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected", - "summary": "The VideoTrack property selected controls whether or not a particular video track is active.", + "name": "kind", + "slug": "API/VideoTrack/kind", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/kind", + "summary": "The kind property contains a string indicating the category of video contained in the VideoTrack.", "support": { "chrome": { "version_added": "37", @@ -39747,10 +41094,10 @@ ] } }, - "title": "VideoTrack.selected" + "title": "VideoTrack: kind property" } ], - "videotrack": [ + "dom-videotrack-label-dev": [ { "engines": [ "blink", @@ -39762,10 +41109,10 @@ "gecko" ], "filename": "api/VideoTrack.json", - "name": "VideoTrack", - "slug": "API/VideoTrack", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack", - "summary": "The VideoTrack interface represents a single video track from a <video> element.", + "name": "label", + "slug": "API/VideoTrack/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/label", + "summary": "The read-only VideoTrack property label returns a string specifying the video track's human-readable label, if one is available; otherwise, it returns an empty string.", "support": { "chrome": { "version_added": "37", @@ -39815,10 +41162,10 @@ ] } }, - "title": "VideoTrack" + "title": "VideoTrack: label property" } ], - "dom-videotracklist-gettrackbyid-dev": [ + "dom-videotrack-language-dev": [ { "engines": [ "blink", @@ -39829,11 +41176,11 @@ "blink", "gecko" ], - "filename": "api/VideoTrackList.json", - "name": "getTrackById", - "slug": "API/VideoTrackList/getTrackById", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList/getTrackById", - "summary": "The VideoTrackList method getTrackById() returns the first VideoTrack object from the track list whose id matches the specified string.", + "filename": "api/VideoTrack.json", + "name": "language", + "slug": "API/VideoTrack/language", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/language", + "summary": "The read-only VideoTrack property language returns a string identifying the language used in the video track.", "support": { "chrome": { "version_added": "37", @@ -39883,10 +41230,10 @@ ] } }, - "title": "VideoTrackList.getTrackById()" + "title": "VideoTrack: language property" } ], - "dom-videotracklist-length-dev": [ + "dom-videotrack-selected-dev": [ { "engines": [ "blink", @@ -39897,11 +41244,11 @@ "blink", "gecko" ], - "filename": "api/VideoTrackList.json", - "name": "length", - "slug": "API/VideoTrackList/length", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList/length", - "summary": "The read-only VideoTrackList property length returns the number of entries in the VideoTrackList, each of which is a VideoTrack representing one video track in the media element.", + "filename": "api/VideoTrack.json", + "name": "selected", + "slug": "API/VideoTrack/selected", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected", + "summary": "The VideoTrack property selected controls whether or not a particular video track is active.", "support": { "chrome": { "version_added": "37", @@ -39951,10 +41298,10 @@ ] } }, - "title": "VideoTrackList.length" + "title": "VideoTrack: selected property" } ], - "dom-videotracklist-selectedindex-dev": [ + "videotrack": [ { "engines": [ "blink", @@ -39965,11 +41312,11 @@ "blink", "gecko" ], - "filename": "api/VideoTrackList.json", - "name": "selectedIndex", - "slug": "API/VideoTrackList/selectedIndex", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList/selectedIndex", - "summary": "The read-only VideoTrackList property selectedIndex returns the index of the currently selected track, if any, or -1 otherwise.", + "filename": "api/VideoTrack.json", + "name": "VideoTrack", + "slug": "API/VideoTrack", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack", + "summary": "The VideoTrack interface represents a single video track from a <video> element.", "support": { "chrome": { "version_added": "37", @@ -40019,64 +41366,231 @@ ] } }, - "title": "VideoTrackList.selectedIndex" + "title": "VideoTrack" } ], - "offscreencontext-commit": [ + "dom-videotracklist-gettrackbyid-dev": [ { "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "blink", "gecko" ], - "filename": "api/WebGL2RenderingContext.json", - "name": "commit", - "slug": "API/WebGLRenderingContext/commit", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/commit", - "summary": "The WebGLRenderingContext.commit() method pushes frames back to the original HTMLCanvasElement, if the context is not directly fixed to a specific canvas.", + "filename": "api/VideoTrackList.json", + "name": "getTrackById", + "slug": "API/VideoTrackList/getTrackById", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList/getTrackById", + "summary": "The VideoTrackList method getTrackById() returns the first VideoTrack object from the track list whose id matches the specified string.", "support": { "chrome": { - "version_added": false + "version_added": "37", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "105" + "version_added": "33", + "flags": [ + { + "type": "preference", + "name": "media.track.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { - "version_added": false + "version_added": "10" }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] + } + }, + "title": "VideoTrackList: getTrackById() method" + } + ], + "dom-videotracklist-length-dev": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "blink", + "gecko" + ], + "filename": "api/VideoTrackList.json", + "name": "length", + "slug": "API/VideoTrackList/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList/length", + "summary": "The read-only VideoTrackList property length returns the number of entries in the VideoTrackList, each of which is a VideoTrack representing one video track in the media element.", + "support": { + "chrome": { + "version_added": "37", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] + }, + "chrome_android": "mirror", + "edge": { "version_added": false + }, + "firefox": { + "version_added": "33", + "flags": [ + { + "type": "preference", + "name": "media.track.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "7" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] } }, - "title": "WebGLRenderingContext.commit()" - }, + "title": "VideoTrackList: length property" + } + ], + "dom-videotracklist-selectedindex-dev": [ { "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "blink", "gecko" ], - "filename": "api/WebGLRenderingContext.json", - "name": "commit", - "slug": "API/WebGLRenderingContext/commit", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/commit", - "summary": "The WebGLRenderingContext.commit() method pushes frames back to the original HTMLCanvasElement, if the context is not directly fixed to a specific canvas.", + "filename": "api/VideoTrackList.json", + "name": "selectedIndex", + "slug": "API/VideoTrackList/selectedIndex", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList/selectedIndex", + "summary": "The read-only VideoTrackList property selectedIndex returns the index of the currently selected track, if any, or -1 otherwise.", "support": { "chrome": { + "version_added": "37", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] + }, + "chrome_android": "mirror", + "edge": { "version_added": false }, + "firefox": { + "version_added": "33", + "flags": [ + { + "type": "preference", + "name": "media.track.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "7" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "enable-experimental-web-platform-features", + "value_to_set": "enabled" + } + ] + } + }, + "title": "VideoTrackList: selectedIndex property" + } + ], + "the-visibilitystateentry-interface": [ + { + "engines": [ + "blink" + ], + "filename": "api/VisibilityStateEntry.json", + "name": "VisibilityStateEntry", + "slug": "API/VisibilityStateEntry", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VisibilityStateEntry", + "summary": "The VisibilityStateEntry interface provides timings of page visibility state changes, i.e., when a tab changes from the foreground to the background or vice versa.", + "support": { + "chrome": { + "version_added": "115" + }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "105" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -40092,10 +41606,10 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "115" } }, - "title": "WebGLRenderingContext.commit()" + "title": "VisibilityStateEntry" } ], "event-domcontentloaded": [ @@ -40284,7 +41798,7 @@ "notes": "Starting with Chrome 46, this method is blocked inside an <code>&lt;iframe&gt;</code> unless its sandbox attribute has the value <code>allow-modals</code>." } }, - "title": "Window.alert()" + "title": "Window: alert() method" } ], "event-beforeprint": [ @@ -40518,7 +42032,7 @@ "version_added": "79" } }, - "title": "Window.blur()" + "title": "Window: blur() method" } ], "animationframeprovider-cancelanimationframe": [ @@ -40575,7 +42089,7 @@ "version_added": "79" } }, - "title": "window.cancelAnimationFrame()" + "title": "Window: cancelAnimationFrame() method" } ], "dom-window-close-dev": [ @@ -40626,7 +42140,7 @@ "version_added": "79" } }, - "title": "Window.close()" + "title": "Window: close() method" } ], "dom-window-closed-dev": [ @@ -40673,7 +42187,7 @@ "version_added": "79" } }, - "title": "Window.closed" + "title": "Window: closed property" } ], "dom-confirm-dev": [ @@ -40730,7 +42244,7 @@ "notes": "Starting with Chrome 46, this method is blocked inside an <code>&lt;iframe&gt;</code> unless its sandbox attribute has the value <code>allow-modals</code>." } }, - "title": "Window.confirm()" + "title": "Window: confirm() method" } ], "dom-window-customelements": [ @@ -40771,7 +42285,7 @@ "version_added": "79" } }, - "title": "Window.customElements" + "title": "Window: customElements property" } ], "dom-document-dev": [ @@ -40818,7 +42332,7 @@ "version_added": "79" } }, - "title": "Window.document" + "title": "Window: document property" } ], "handler-onerror": [ @@ -40917,7 +42431,7 @@ "notes": "Starting in Chrome 66, opening a popup in fullscreen mode and calling this function will end fullscreen mode." } }, - "title": "Window.focus()" + "title": "Window: focus() method" } ], "dom-frameelement-dev": [ @@ -40966,7 +42480,7 @@ "version_added": "79" } }, - "title": "Window.frameElement" + "title": "Window: frameElement property" } ], "dom-frames-dev": [ @@ -41013,7 +42527,7 @@ "version_added": "79" } }, - "title": "Window.frames" + "title": "Window: frames property" } ], "event-hashchange": [ @@ -41328,7 +42842,7 @@ "version_added": "79" } }, - "title": "Window.length" + "title": "Window: length property" } ], "delay-the-load-event": [ @@ -41342,7 +42856,7 @@ "name": "load_event", "slug": "API/Window/load_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/load_event", - "summary": "The load event is fired when the whole page has loaded, including all dependent resources such as stylesheets and images. This is in contrast to DOMContentLoaded, which is fired as soon as the page DOM has been loaded, without waiting for resources to finish loading.", + "summary": "The load event is fired when the whole page has loaded, including all dependent resources such as stylesheets, scripts, iframes, and images. This is in contrast to DOMContentLoaded, which is fired as soon as the page DOM has been loaded, without waiting for resources to finish loading.", "support": { "chrome": { "version_added": "1" @@ -41444,7 +42958,7 @@ "version_added": "79" } }, - "title": "Window.localStorage" + "title": "Window: localStorage property" } ], "dom-window-locationbar-dev": [ @@ -41458,7 +42972,7 @@ "name": "locationbar", "slug": "API/Window/locationbar", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/locationbar", - "summary": "Returns the locationbar object, whose visibility can be checked.", + "summary": "Returns the locationbar object.", "support": { "chrome": { "version_added": "1" @@ -41489,7 +43003,7 @@ "version_added": "79" } }, - "title": "Window.locationbar" + "title": "Window: locationbar property" } ], "dom-window-menubar-dev": [ @@ -41503,7 +43017,7 @@ "name": "menubar", "slug": "API/Window/menubar", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/menubar", - "summary": "The Window.menubar property returns the menubar object, whose visibility can be checked.", + "summary": "Returns the menubar object.", "support": { "chrome": { "version_added": "1" @@ -41534,7 +43048,7 @@ "version_added": "79" } }, - "title": "Window.menubar" + "title": "Window: menubar property" } ], "handler-window-onmessage": [ @@ -41629,7 +43143,7 @@ "version_added": "79" } }, - "title": "Window.name" + "title": "Window: name property" } ], "dom-navigator": [ @@ -41721,7 +43235,7 @@ } ] }, - "title": "Window.navigator" + "title": "Window: navigator property" } ], "event-offline": [ @@ -41956,7 +43470,7 @@ "version_added": "79" } }, - "title": "Window.open()" + "title": "Window: open() method" } ], "dom-opener-dev": [ @@ -42003,7 +43517,7 @@ "version_added": "79" } }, - "title": "Window.opener" + "title": "Window: opener property" } ], "event-pagehide": [ @@ -42034,12 +43548,8 @@ "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "15" - }, - "opera_android": { - "version_added": "14" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "5" }, @@ -42083,12 +43593,8 @@ "version_added": "11" }, "oculus": "mirror", - "opera": { - "version_added": "15" - }, - "opera_android": { - "version_added": "14" - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "5" }, @@ -42148,7 +43654,7 @@ "version_added": "79" } }, - "title": "Window.parent" + "title": "Window: parent property" } ], "dom-window-personalbar-dev": [ @@ -42162,7 +43668,7 @@ "name": "personalbar", "slug": "API/Window/personalbar", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/personalbar", - "summary": "Returns the personalbar object, whose visibility can be toggled in the window.", + "summary": "Returns the personalbar object.", "support": { "chrome": { "version_added": "1" @@ -42197,7 +43703,7 @@ "version_added": "79" } }, - "title": "Window.personalbar" + "title": "Window: personalbar property" } ], "event-popstate": [ @@ -42320,7 +43826,7 @@ "summary": "The window.postMessage() method safely enables cross-origin communication between Window objects; e.g., between a page and a pop-up that it spawned, or between a page and an iframe embedded within it.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -42365,7 +43871,7 @@ "version_added": "79" } }, - "title": "Window.postMessage()" + "title": "Window: postMessage() method" } ], "printing": [ @@ -42393,8 +43899,7 @@ "version_added": "1" }, "firefox_android": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1247609'>bug 1247609</a>." + "version_added": "114" }, "ie": { "version_added": "5" @@ -42419,7 +43924,7 @@ "notes": "Starting with Chrome 46, this method is blocked inside an <code>&lt;iframe&gt;</code> unless its sandbox attribute has the value <code>allow-modals</code>." } }, - "title": "Window.print()" + "title": "Window: print() method" } ], "dom-prompt-dev": [ @@ -42447,7 +43952,8 @@ "version_added": "12" }, "firefox": { - "version_added": "1" + "version_added": "1", + "notes": "Firefox strips newline characters from the prompt response; see <a href='https://bugzil.la/1716229'>bug 1716229</a>." }, "firefox_android": "mirror", "ie": { @@ -42474,7 +43980,7 @@ "notes": "Starting with Chrome 46, this method is blocked inside an <code>&lt;iframe&gt;</code> unless its sandbox attribute has the value <code>allow-modals</code>." } }, - "title": "Window.prompt()" + "title": "Window: prompt() method" } ], "unhandled-promise-rejections": [ @@ -42488,7 +43994,7 @@ "name": "rejectionhandled_event", "slug": "API/Window/rejectionhandled_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/rejectionhandled_event", - "summary": "The rejectionhandled event is sent to the script's global scope (usually window but also Worker) whenever a JavaScript Promise is rejected but after the promise rejection has been handled.", + "summary": "The rejectionhandled event is sent to the script's global scope (usually window but also Worker) whenever a rejected JavaScript Promise is handled late, i.e. when a handler is attached to the promise after its rejection had caused an unhandledrejection event.", "support": { "chrome": { "version_added": "49" @@ -42531,7 +44037,7 @@ "name": "rejectionhandled_event", "slug": "API/Window/rejectionhandled_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/rejectionhandled_event", - "summary": "The rejectionhandled event is sent to the script's global scope (usually window but also Worker) whenever a JavaScript Promise is rejected but after the promise rejection has been handled.", + "summary": "The rejectionhandled event is sent to the script's global scope (usually window but also Worker) whenever a rejected JavaScript Promise is handled late, i.e. when a handler is attached to the promise after its rejection had caused an unhandledrejection event.", "support": { "chrome": { "version_added": "49" @@ -42574,7 +44080,7 @@ "name": "requestAnimationFrame", "slug": "API/Window/requestAnimationFrame", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/requestAnimationFrame", - "summary": "The window.requestAnimationFrame() method tells the browser that you wish to perform an animation and requests that the browser calls a specified function to update an animation before the next repaint. The method takes a callback as an argument to be invoked before the repaint.", + "summary": "The window.requestAnimationFrame() method tells the browser that you wish to perform an animation and requests that the browser calls a specified function to update an animation right before the next repaint. The method takes a callback as an argument to be invoked before the repaint.", "support": { "chrome": [ { @@ -42654,7 +44160,7 @@ } ] }, - "title": "Window.requestAnimationFrame()" + "title": "Window: requestAnimationFrame() method" } ], "dom-window-scrollbars-dev": [ @@ -42668,7 +44174,7 @@ "name": "scrollbars", "slug": "API/Window/scrollbars", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollbars", - "summary": "The Window.scrollbars property returns the scrollbars object, whose visibility can be checked.", + "summary": "Returns the scrollbars object.", "support": { "chrome": { "version_added": "1" @@ -42703,7 +44209,7 @@ "version_added": "79" } }, - "title": "Window.scrollbars" + "title": "Window: scrollbars property" } ], "dom-self-dev": [ @@ -42752,7 +44258,7 @@ "version_added": "79" } }, - "title": "Window.self" + "title": "Window: self property" } ], "dom-sessionstorage-dev": [ @@ -42769,7 +44275,7 @@ "summary": "The read-only sessionStorage property accesses a session Storage object for the current origin. sessionStorage is similar to localStorage; the difference is that while data in localStorage doesn't expire, data in sessionStorage is cleared when the page session ends.", "support": { "chrome": { - "version_added": "5" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -42804,7 +44310,7 @@ "version_added": "79" } }, - "title": "Window.sessionStorage" + "title": "Window: sessionStorage property" } ], "dom-window-statusbar-dev": [ @@ -42818,7 +44324,7 @@ "name": "statusbar", "slug": "API/Window/statusbar", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/statusbar", - "summary": "The Window.statusbar property returns the statusbar object, whose visibility can be toggled in the window.", + "summary": "Returns the statusbar object.", "support": { "chrome": { "version_added": "1" @@ -42849,7 +44355,7 @@ "version_added": "79" } }, - "title": "Window.statusbar" + "title": "Window: statusbar property" } ], "dom-window-stop-dev": [ @@ -42898,7 +44404,7 @@ "version_added": "79" } }, - "title": "Window.stop()" + "title": "Window: stop() method" } ], "event-storage": [ @@ -43006,7 +44512,7 @@ "name": "toolbar", "slug": "API/Window/toolbar", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/toolbar", - "summary": "The Window.toolbar property returns the toolbar object, which can be used to check the browser toolbar visibility.", + "summary": "Returns the toolbar object.", "support": { "chrome": { "version_added": "1" @@ -43037,7 +44543,7 @@ "version_added": "79" } }, - "title": "Window.toolbar" + "title": "Window: toolbar property" } ], "dom-top-dev": [ @@ -43089,7 +44595,7 @@ "version_added": "79" } }, - "title": "Window.top" + "title": "Window: top property" } ], "event-unhandledrejection": [ @@ -43334,7 +44840,7 @@ "version_added": "79" } }, - "title": "Window.window" + "title": "Window: window property" } ], "the-window-object": [ @@ -43461,7 +44967,7 @@ "version_added": "79" } }, - "title": "Worker()" + "title": "Worker: Worker() constructor" } ], "dom-worker-postmessage-dev": [ @@ -43475,10 +44981,10 @@ "name": "postMessage", "slug": "API/Worker/postMessage", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Worker/postMessage", - "summary": "The postMessage() method of the Worker interface sends a message to the worker's inner scope. This accepts a single parameter, which is the data to send to the worker. The data may be any value or JavaScript object handled by the structured clone algorithm, which includes cyclical references.", + "summary": "The postMessage() method of the Worker interface sends a message to the worker. The first parameter is the data to send to the worker. The data may be any JavaScript object that can be handled by the structured clone algorithm.", "support": { "chrome": { - "version_added": "4" + "version_added": "2" }, "chrome_android": "mirror", "deno": [ @@ -43567,7 +45073,7 @@ "version_added": "79" } }, - "title": "Worker.postMessage()" + "title": "Worker: postMessage() method" } ], "dom-worker-terminate-dev": [ @@ -43584,7 +45090,7 @@ "summary": "The terminate() method of the Worker interface immediately terminates the Worker. This does not offer the worker an opportunity to finish its operations; it is stopped at once.", "support": { "chrome": { - "version_added": "4" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -43642,7 +45148,7 @@ "version_added": "79" } }, - "title": "Worker.terminate()" + "title": "Worker: terminate() method" } ], "dedicated-workers-and-the-worker-interface": [ @@ -43659,7 +45165,7 @@ "summary": "The Worker interface of the Web Workers API represents a background task that can be created via script, which can send messages back to its creator.", "support": { "chrome": { - "version_added": "4" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -43831,7 +45337,7 @@ "version_added": "79" } }, - "title": "WorkerGlobalScope.importScripts()" + "title": "WorkerGlobalScope: importScripts() method" } ], "handler-workerglobalscope-onlanguagechange": [ @@ -43931,7 +45437,7 @@ "version_added": "79" } }, - "title": "WorkerGlobalScope.location" + "title": "WorkerGlobalScope: location property" } ], "dom-worker-navigator-dev": [ @@ -43981,7 +45487,7 @@ "version_added": "79" } }, - "title": "WorkerGlobalScope.navigator" + "title": "WorkerGlobalScope: navigator property" } ], "handler-workerglobalscope-onoffline": [ @@ -44123,7 +45629,7 @@ "version_added": "79" } }, - "title": "WorkerGlobalScope.self" + "title": "WorkerGlobalScope: self property" } ], "the-workerglobalscope-common-interface": [ @@ -44192,7 +45698,7 @@ "summary": "The hash property of a WorkerLocation object returns the hash part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44227,7 +45733,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.hash" + "title": "WorkerLocation: hash property" } ], "dom-workerlocation-host": [ @@ -44244,7 +45750,7 @@ "summary": "The host property of a WorkerLocation object returns the host part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44279,7 +45785,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.host" + "title": "WorkerLocation: host property" } ], "dom-workerlocation-hostname": [ @@ -44296,7 +45802,7 @@ "summary": "The hostname property of a WorkerLocation object returns the hostname part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44331,7 +45837,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.hostname" + "title": "WorkerLocation: hostname property" } ], "dom-workerlocation-href": [ @@ -44348,7 +45854,7 @@ "summary": "The href property of a WorkerLocation object returns a string containing the serialized URL for the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44383,7 +45889,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.href" + "title": "WorkerLocation: href property" } ], "dom-workerlocation-origin": [ @@ -44429,7 +45935,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.origin" + "title": "WorkerLocation: origin property" } ], "dom-workerlocation-pathname": [ @@ -44446,7 +45952,7 @@ "summary": "The pathname property of a WorkerLocation object returns the pathname part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44481,7 +45987,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.pathname" + "title": "WorkerLocation: pathname property" } ], "dom-workerlocation-port": [ @@ -44498,7 +46004,7 @@ "summary": "The port property of a WorkerLocation object returns the port part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44533,7 +46039,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.port" + "title": "WorkerLocation: port property" } ], "dom-workerlocation-protocol": [ @@ -44550,7 +46056,7 @@ "summary": "The protocol property of a WorkerLocation object returns the protocol part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44585,7 +46091,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.protocol" + "title": "WorkerLocation: protocol property" } ], "dom-workerlocation-search": [ @@ -44602,7 +46108,7 @@ "summary": "The search property of a WorkerLocation object returns the search part of the worker's location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44637,7 +46143,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.search" + "title": "WorkerLocation: search property" } ], "workerlocation": [ @@ -44654,7 +46160,7 @@ "summary": "The toString() stringifier method of a WorkerLocation object returns a string containing the serialized URL for the worker's location. It is a synonym for WorkerLocation.href.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44691,7 +46197,7 @@ "version_added": "79" } }, - "title": "WorkerLocation.toString()" + "title": "WorkerLocation: toString() method" } ], "worker-locations": [ @@ -44708,7 +46214,7 @@ "summary": "The WorkerLocation interface defines the absolute location of the script executed by the Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.location property obtained by calling self.location.", "support": { "chrome": { - "version_added": "3" + "version_added": "4" }, "chrome_android": "mirror", "deno": { @@ -44836,7 +46342,7 @@ "version_added": "79" } }, - "title": "Worklet.addModule()" + "title": "Worklet: addModule() method" } ], "worklets-worklet": [ @@ -44934,7 +46440,7 @@ "version_added": "79" } }, - "title": "atob()" + "title": "atob() global function" } ], "dom-btoa-dev": [ @@ -44991,7 +46497,7 @@ "version_added": "79" } }, - "title": "btoa()" + "title": "btoa() global function" } ], "dom-clearinterval-dev": [ @@ -45049,7 +46555,7 @@ "version_added": "79" } }, - "title": "clearInterval()" + "title": "clearInterval() global function" } ], "dom-cleartimeout-dev": [ @@ -45109,7 +46615,7 @@ "version_added": "79" } }, - "title": "clearTimeout()" + "title": "clearTimeout() global function" } ], "dom-createimagebitmap-dev": [ @@ -45154,7 +46660,7 @@ "version_added": "79" } }, - "title": "createImageBitmap()" + "title": "createImageBitmap() global function" } ], "dom-crossoriginisolated-dev": [ @@ -45168,7 +46674,7 @@ "name": "crossOriginIsolated", "slug": "API/crossOriginIsolated", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/crossOriginIsolated", - "summary": "The global crossOriginIsolated read-only property returns a boolean value that indicates whether a SharedArrayBuffer can be sent via a Window.postMessage() call.", + "summary": "The global crossOriginIsolated read-only property returns a boolean value that indicates whether the website is in a cross-origin isolation state. That state mitigates the risk of side-channel attacks and unlocks a few capabilities:", "support": { "chrome": { "version_added": "87" @@ -45201,7 +46707,7 @@ "version_added": "87" } }, - "title": "crossOriginIsolated" + "title": "crossOriginIsolated global property" } ], "dom-issecurecontext-dev": [ @@ -45244,7 +46750,7 @@ "version_added": "79" } }, - "title": "isSecureContext" + "title": "isSecureContext global property" } ], "dom-origin-dev": [ @@ -45290,7 +46796,7 @@ "version_added": "79" } }, - "title": "origin" + "title": "origin global property" } ], "microtask-queuing": [ @@ -45337,7 +46843,7 @@ "version_added": "79" } }, - "title": "queueMicrotask()" + "title": "queueMicrotask() global function" } ], "runtime-script-errors": [ @@ -45384,7 +46890,7 @@ "version_added": "95" } }, - "title": "reportError()" + "title": "reportError() global function" } ], "dom-setinterval-dev": [ @@ -45442,7 +46948,7 @@ "version_added": "79" } }, - "title": "setInterval()" + "title": "setInterval() global function" } ], "dom-settimeout-dev": [ @@ -45500,7 +47006,7 @@ "version_added": "79" } }, - "title": "setTimeout()" + "title": "setTimeout() global function" } ], "dom-structuredclone": [ @@ -45559,7 +47065,7 @@ "version_added": "98" } }, - "title": "structuredClone()" + "title": "structuredClone() global function" } ], "selector-active": [ @@ -45829,7 +47335,8 @@ "selector-ltr": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/selectors/dir.json", "name": "dir", @@ -45860,7 +47367,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -46382,6 +47889,57 @@ "title": ":out-of-range" } ], + "selector-popover-open": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/selectors/popover-open.json", + "name": "popover-open", + "slug": "CSS/:popover-open", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:popover-open", + "summary": "The :popover-open CSS pseudo-class represents a popover element (i.e. one with a popover attribute) that is in the showing state. You can use this to apply style to popover elements only when they are shown.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "preview" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": ":popover-open" + } + ], "selector-read-only": [ { "engines": [ @@ -46668,7 +48226,7 @@ "name": "visited", "slug": "CSS/:visited", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:visited", - "summary": "The :visited CSS pseudo-class represents links that the user has already visited. For privacy reasons, the styles that can be modified using this selector are very limited.", + "summary": "The :visited CSS pseudo-class applies once the link has been visited by the user. For privacy reasons, the styles that can be modified using this selector are very limited. The :visited pseudo-class applies only <a> and <area> elements that have an href attribute.", "support": { "chrome": { "version_added": "1" @@ -46743,7 +48301,7 @@ "version_added": "79" } }, - "title": "Link types: noopener" + "title": "rel=noopener" }, { "engines": [ @@ -46783,7 +48341,7 @@ "version_added": "79" } }, - "title": "Link types: noopener" + "title": "rel=noopener" } ], "link-type-noreferrer": [ @@ -46825,14 +48383,12 @@ "samsunginternet_android": { "version_added": "1.5" }, - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Link types: noreferrer" + "title": "rel=noreferrer" }, { "engines": [ @@ -46872,14 +48428,12 @@ "samsunginternet_android": { "version_added": "1.5" }, - "webview_android": { - "version_added": "3" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "Link types: noreferrer" + "title": "rel=noreferrer" } ], "the-a-element": [ @@ -46896,14 +48450,14 @@ "summary": "The <a> HTML element (or anchor element), with its href attribute, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true, + "version_added": "1", "notes": "Starting with Firefox 41, &lt;a&gt; without <code>href</code> attribute is no longer classified as interactive content: clicking it inside &lt;label&gt; will activate labelled content (<a href='https://bugzil.la/1167816'>bug 1167816</a>)." }, "firefox_android": "mirror", @@ -46914,13 +48468,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<a>: The Anchor element" @@ -46942,9 +48496,7 @@ "chrome": { "version_added": "2" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -46959,12 +48511,10 @@ "version_added": "7" }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -46990,7 +48540,7 @@ "summary": "The <address> HTML element indicates that the enclosed HTML provides contact information for a person or people, or for an organization.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47009,13 +48559,11 @@ "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<address>: The Contact Address element" @@ -47032,10 +48580,10 @@ "name": "area", "slug": "HTML/Element/area", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area", - "summary": "The <area> HTML element defines an area inside an image map that has predefined clickable areas. An image map allows geometric areas on an image to be associated with hypertext link.", + "summary": "The <area> HTML element defines an area inside an image map that has predefined clickable areas. An image map allows geometric areas on an image to be associated with hypertext links.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47052,13 +48600,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<area>: The Image Map Area element" @@ -47080,9 +48628,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -47129,9 +48675,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -47195,7 +48739,7 @@ "version_added": "10.5" }, "opera_android": { - "version_added": true + "version_added": "11" }, "safari": { "version_added": "3.1" @@ -47225,10 +48769,10 @@ "name": "b", "slug": "HTML/Element/b", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b", - "summary": "The <b> HTML element is used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use <b> for styling text; instead, you should use the CSS font-weight property to create boldface text, or the <strong> element to indicate that text is of special importance.", + "summary": "The <b> HTML element is used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use <b> for styling text or granting importance. If you wish to create boldface text, you should use the CSS font-weight property. If you wish to indicate an element is of special importance, you should use the <strong> element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47248,13 +48792,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<b>: The Bring Attention To element" @@ -47274,7 +48818,7 @@ "summary": "The <base> HTML element specifies the base URL to use for all relative URLs in a document. There can be only one <base> element in a document.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47292,13 +48836,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<base>: The Document Base URL element" @@ -47361,14 +48905,14 @@ "summary": "The <bdo> HTML element overrides the current directionality of text, so that the text within is rendered in a different direction.", "support": { "chrome": { - "version_added": true + "version_added": "15" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "10" }, "firefox_android": "mirror", "ie": { @@ -47378,13 +48922,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<bdo>: The Bidirectional Text Override element" @@ -47404,7 +48948,7 @@ "summary": "The <blockquote> HTML element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47421,13 +48965,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<blockquote>: The Block Quotation element" @@ -47461,20 +49005,14 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, - "opera_android": { - "version_added": true - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": true - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -47498,9 +49036,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -47512,12 +49048,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -47543,14 +49077,14 @@ "summary": "The Boolean disabled attribute, when present, makes the element not mutable, focusable, or even submitted with the form. The user can neither edit nor focus on the control, nor its form control descendants.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -47560,13 +49094,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: disabled" @@ -47584,14 +49118,14 @@ "summary": "The Boolean disabled attribute, when present, makes the element not mutable, focusable, or even submitted with the form. The user can neither edit nor focus on the control, nor its form control descendants.", "support": { "chrome": { - "version_added": true + "version_added": "20" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -47603,18 +49137,16 @@ "version_added": "12" }, "opera_android": { - "version_added": null + "version_added": "12" }, "safari": { "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "4.4" - }, + "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: disabled" @@ -47677,7 +49209,7 @@ "summary": "The Boolean disabled attribute, when present, makes the element not mutable, focusable, or even submitted with the form. The user can neither edit nor focus on the control, nor its form control descendants.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47694,13 +49226,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: disabled" @@ -47762,33 +49294,37 @@ "name": "button", "slug": "HTML/Element/button", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button", - "summary": "The <button> HTML element is an interactive element activated by a user with a mouse, keyboard, finger, voice command, or other assistive technology. Once activated, it then performs a programmable action, such as submitting a form or opening a dialog.", + "summary": "The <button> HTML element is an interactive element activated by a user with a mouse, keyboard, finger, voice command, or other assistive technology. Once activated, it then performs an action, such as submitting a form or opening a dialog.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "15" + }, + "opera_android": { + "version_added": "14" + }, "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<button>: The Button element" @@ -47865,7 +49401,7 @@ "summary": "The <caption> HTML element specifies the caption (or title) of a table.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47882,13 +49418,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<caption>: The Table Caption element" @@ -47905,10 +49441,10 @@ "name": "cite", "slug": "HTML/Element/cite", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite", - "summary": "The <cite> HTML element is used to describe a reference to a cited creative work, and must include the title of that work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.", + "summary": "The <cite> HTML element is used to mark up the title of a cited creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -47925,13 +49461,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<cite>: The Citation element" @@ -47953,9 +49489,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -47967,12 +49501,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -48000,9 +49532,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -48014,12 +49544,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -48047,9 +49575,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -48061,12 +49587,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -48196,7 +49720,7 @@ "summary": "The <dd> HTML element provides the description, definition, or value for the preceding term (<dt>) in a description list (<dl>).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48216,13 +49740,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<dd>: The Description Details element" @@ -48242,7 +49766,7 @@ "summary": "The <del> HTML element represents a range of text that has been deleted from a document. This can be used when rendering \"track changes\" or source code diff information, for example. The <ins> element can be used for the opposite purpose: to indicate text that has been added to the document.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48259,13 +49783,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<del>: The Deleted Text element" @@ -48287,9 +49811,7 @@ "chrome": { "version_added": "12" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "49", @@ -48304,9 +49826,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { "version_added": "6" }, @@ -48331,10 +49851,10 @@ "name": "dfn", "slug": "HTML/Element/dfn", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn", - "summary": "The <dfn> HTML element is used to indicate the term being defined within the context of a definition phrase or sentence. The <p> element, the <dt>/<dd> pairing, or the <section> element which is the nearest ancestor of the <dfn> is considered to be the definition of the term.", + "summary": "The <dfn> HTML element is used to indicate the term being defined within the context of a definition phrase or sentence. The ancestor <p> element, the <dt>/<dd> pairing, or the nearest <section> ancestor of the <dfn> element, is considered to be the definition of the term.", "support": { "chrome": { - "version_added": true + "version_added": "15" }, "chrome_android": "mirror", "edge": { @@ -48351,13 +49871,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<dfn>: The Definition element" @@ -48418,7 +49938,7 @@ "summary": "The <div> HTML element is the generic container for flow content. It has no effect on the content or layout until styled in some way using CSS (e.g. styling is directly applied to it, or some kind of layout model like Flexbox is applied to its parent element).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48435,13 +49955,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<div>: The Content Division element" @@ -48461,7 +49981,7 @@ "summary": "The <dl> HTML element represents a description list. The element encloses a list of groups of terms (specified using the <dt> element) and descriptions (provided by <dd> elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48478,13 +49998,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<dl>: The Description List element" @@ -48504,7 +50024,7 @@ "summary": "The <dt> HTML element specifies a term in a description or definition list, and as such must be used inside a <dl> element. It is usually followed by a <dd> element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next <dd> element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48521,13 +50041,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<dt>: The Description Term element" @@ -48549,9 +50069,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -48563,12 +50081,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -48594,7 +50110,7 @@ "summary": "The <embed> HTML element embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48608,16 +50124,20 @@ "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<embed>: The Embed External Content element" @@ -48637,32 +50157,36 @@ "summary": "The <fieldset> HTML element is used to group several controls as well as labels (<label>) within a web form.", "support": { "chrome": { - "version_added": true, - "notes": "Does not support <code>flexbox</code> and <code>grid</code> layouts within this element. See <a href='https://crbug.com/262679'>bug 262679</a>." + "version_added": "1", + "notes": "Before version 86, this element did not support <code>flexbox</code> and <code>grid</code> layouts within this element. See <a href='https://crbug.com/262679'>bug 262679</a>." }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "15" + }, + "opera_android": { + "version_added": "14" + }, "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true, - "notes": "Does not support <code>flexbox</code> and <code>grid</code> layouts within this element. See <a href='https://crbug.com/262679'>bug 262679</a>." + "version_added": "79", + "notes": "Before version 86, this element did not support <code>flexbox</code> and <code>grid</code> layouts within this element. See <a href='https://crbug.com/262679'>bug 262679</a>." } }, "title": "<fieldset>: The Field Set element" @@ -48684,9 +50208,7 @@ "chrome": { "version_added": "8" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -48733,9 +50255,7 @@ "chrome": { "version_added": "8" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -48782,9 +50302,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -48829,14 +50347,14 @@ "summary": "The <form> HTML element represents a document section containing interactive controls for submitting information.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -48846,13 +50364,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<form>: The Form element" @@ -48872,7 +50390,7 @@ "summary": "The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48889,13 +50407,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<h1>–<h6>: The HTML Section Heading elements" @@ -48913,7 +50431,7 @@ "summary": "The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48930,13 +50448,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<h1>–<h6>: The HTML Section Heading elements" @@ -48954,7 +50472,7 @@ "summary": "The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -48971,13 +50489,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<h1>–<h6>: The HTML Section Heading elements" @@ -48995,7 +50513,7 @@ "summary": "The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -49012,13 +50530,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<h1>–<h6>: The HTML Section Heading elements" @@ -49036,7 +50554,7 @@ "summary": "The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -49053,13 +50571,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<h1>–<h6>: The HTML Section Heading elements" @@ -49077,7 +50595,7 @@ "summary": "The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -49094,13 +50612,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<h1>–<h6>: The HTML Section Heading elements" @@ -49122,9 +50640,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49136,12 +50652,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -49169,9 +50683,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49218,9 +50730,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49316,30 +50826,34 @@ "summary": "The <html> HTML element represents the root (top-level element) of an HTML document, so it is also referred to as the root element. All other elements must be descendants of this element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<html>: The HTML Document / Root element" @@ -49361,9 +50875,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49375,12 +50887,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -49408,14 +50918,12 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true, + "version_added": "1", "notes": "The <code>resize</code> CSS property doesn't have any effect on this element due to <a href='https://bugzil.la/680823'>bug 680823</a>." }, "firefox_android": "mirror", @@ -49424,11 +50932,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "15" + }, + "opera_android": { + "version_added": "14" }, - "opera_android": "mirror", "safari": { - "version_added": true, + "version_added": "4", "notes": "Safari has a <a href='https://www.quirksmode.org/bugreports/archives/2005/02/hidden_iframes.html'>bug</a> that prevents iframes from loading if the <code>iframe</code> element was hidden when added to the page. <code>iframeElement.src = iframeElement.src</code> should cause it to load the iframe." }, "safari_ios": "mirror", @@ -49496,14 +51006,14 @@ "summary": "The <img> HTML element embeds an image into the document.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -49513,13 +51023,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<img>: The Image Embed element" @@ -49553,22 +51063,14 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, - "opera_android": { - "version_added": true - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": true - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -49590,18 +51092,16 @@ "summary": "<input> elements of type checkbox are rendered by default as boxes that are checked (ticked) when activated, like you might see in an official government paper form. The exact appearance depends upon the operating system configuration under which the browser is running. Generally this is a square but it may have rounded corners. A checkbox allows you to select single values for submission in a form (or not).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true - }, - "firefox_android": { - "version_added": "4" + "version_added": "1" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -49609,13 +51109,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<input type=\"checkbox\">" @@ -49691,9 +51191,7 @@ "chrome": { "version_added": "20" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49742,18 +51240,14 @@ "chrome": { "version_added": "20" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { "version_added": "93" }, - "firefox_android": { - "version_added": true - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -49768,7 +51262,7 @@ "version_added": "14.1" }, "safari_ios": { - "version_added": true + "version_added": "5" }, "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -49790,23 +51284,19 @@ "name": "type_email", "slug": "HTML/Element/input/email", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/email", - "summary": "<input> elements of type email are used to let the user enter and edit an e-mail address, or, if the multiple attribute is specified, a list of e-mail addresses.", + "summary": "<input> elements of type email are used to let the user enter and edit an email address, or, if the multiple attribute is specified, a list of email addresses.", "support": { "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": null - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true - }, - "firefox_android": { - "version_added": "4" + "version_added": "1" }, + "firefox_android": "mirror", "ie": { "version_added": "10" }, @@ -49815,10 +51305,10 @@ "version_added": "11" }, "opera_android": { - "version_added": true + "version_added": "11" }, "safari": { - "version_added": true + "version_added": "5" }, "safari_ios": { "version_added": "3", @@ -49853,9 +51343,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49879,9 +51367,7 @@ "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -49907,9 +51393,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -49928,9 +51412,7 @@ "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -49954,16 +51436,14 @@ "summary": "<input> elements of type image are used to create graphical submit buttons, i.e. submit buttons that take the form of an image rather than text.", "support": { "chrome": { - "version_added": true - }, - "chrome_android": { - "version_added": null + "version_added": "1" }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -49971,19 +51451,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": true - }, + "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": true - }, + "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<input type=\"image\">" @@ -50005,9 +51481,7 @@ "chrome": { "version_added": "20" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -50056,14 +51530,14 @@ "summary": "<input> elements of type number are used to let the user enter a number. They include built-in validation to reject non-numerical entries.", "support": { "chrome": { - "version_added": true + "version_added": "7" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "29" }, "firefox_android": "mirror", "ie": { @@ -50073,13 +51547,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "5.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<input type=\"number\">" @@ -50101,9 +51575,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -50122,13 +51594,9 @@ "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": null - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -50150,18 +51618,16 @@ "summary": "<input> elements of type radio are generally used in radio groups—collections of radio buttons describing a set of related options.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true - }, - "firefox_android": { - "version_added": "4" + "version_added": "1" }, + "firefox_android": "mirror", "ie": { "version_added": true }, @@ -50169,13 +51635,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<input type=\"radio\">" @@ -50217,7 +51683,7 @@ "version_added": "11" }, "opera_android": { - "version_added": true + "version_added": "11" }, "safari": { "version_added": "3.1" @@ -50255,14 +51721,12 @@ "name": "type_reset", "slug": "HTML/Element/input/reset", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/reset", - "summary": "<input> elements of type reset are rendered as buttons, with a default click event handler that resets all of the inputs in the form to their initial values.", + "summary": "<input> elements of type reset are rendered as buttons, with a default click event handler that resets all inputs in the form to their initial values.", "support": { "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -50275,16 +51739,12 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -50310,18 +51770,14 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { "version_added": "4" }, - "firefox_android": { - "version_added": true - }, + "firefox_android": "mirror", "ie": { "version_added": "10" }, @@ -50333,9 +51789,7 @@ "safari": { "version_added": "5" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -50359,9 +51813,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -50373,16 +51825,12 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -50408,9 +51856,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -50423,16 +51869,12 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -50530,18 +51972,16 @@ "version_added": "10" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { "version_added": "14.1" }, "safari_ios": { - "version_added": true + "version_added": "5" }, "samsunginternet_android": "mirror", - "webview_android": { - "version_added": true - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -50565,14 +52005,12 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -50584,7 +52022,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -50611,9 +52049,7 @@ "chrome": { "version_added": "20" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -50845,6 +52281,7 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "html/elements/input.json", @@ -50859,7 +52296,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "116" }, "firefox_android": "mirror", "ie": { @@ -51284,7 +52721,7 @@ "name": "max", "slug": "HTML/Attributes/max", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max", - "summary": "The max attribute defines the maximum value that is acceptable and valid for the input containing the attribute. If the value of the element is greater than this, the element fails constraint validation. This value must be greater than or equal to the value of the min attribute. If the max attribute is present by is not specified or is invalid, no max value is applied. If the max attribute is valid and a non-empty value is greater than the maximum allowed by the max attribute, constraint validation will prevent form submission.", + "summary": "The max attribute defines the maximum value that is acceptable and valid for the input containing the attribute. If the value of the element is greater than this, the element fails validation. This value must be greater than or equal to the value of the min attribute. If the max attribute is present but is not specified or is invalid, no max value is applied. If the max attribute is valid and a non-empty value is greater than the maximum allowed by the max attribute, constraint validation will prevent form submission.", "support": { "chrome": { "version_added": "4" @@ -51333,7 +52770,7 @@ "name": "min", "slug": "HTML/Attributes/min", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min", - "summary": "The min attribute defines the minimum value that is acceptable and valid for the input containing the attribute. If the value of the element is less than this, the element fails constraint validation. This value must be less than or equal to the value of the max attribute.", + "summary": "The min attribute defines the minimum value that is acceptable and valid for the input containing the attribute. If the value of the element is less than this, the element fails validation. This value must be less than or equal to the value of the max attribute.", "support": { "chrome": { "version_added": "4" @@ -51384,7 +52821,7 @@ "name": "maxlength", "slug": "HTML/Attributes/maxlength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength", - "summary": "The maxlength attribute defines the maximum number of characters (as UTF-16 code units) the user can enter into an <input> or <textarea>. This must be an integer value 0 or higher.", + "summary": "The maxlength attribute defines the maximum string length that the user can enter into an <input> or <textarea>. The attribute must have an integer value of 0 or higher.", "support": { "chrome": { "version_added": "1" @@ -51429,7 +52866,7 @@ "name": "minlength", "slug": "HTML/Attributes/minlength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength", - "summary": "The minlength attribute defines the minimum number of characters (as UTF-16 code units) the user can enter into an <input> or <textarea>. This must be an integer value 0 or higher. If no minlength is specified, or an invalid value is specified, the input has no minimum length. This value must be less than or equal to the value of maxlength, otherwise the value will never be valid, as it is impossible to meet both criteria.", + "summary": "The minlength attribute defines the minimum string length that the user can enter into an <input> or <textarea>. The attribute must have an integer value of 0 or higher.", "support": { "chrome": { "version_added": "40" @@ -51470,7 +52907,7 @@ "name": "maxlength", "slug": "HTML/Attributes/maxlength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength", - "summary": "The maxlength attribute defines the maximum number of characters (as UTF-16 code units) the user can enter into an <input> or <textarea>. This must be an integer value 0 or higher.", + "summary": "The maxlength attribute defines the maximum string length that the user can enter into an <input> or <textarea>. The attribute must have an integer value of 0 or higher.", "support": { "chrome": { "version_added": "4" @@ -51519,7 +52956,7 @@ "name": "minlength", "slug": "HTML/Attributes/minlength", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength", - "summary": "The minlength attribute defines the minimum number of characters (as UTF-16 code units) the user can enter into an <input> or <textarea>. This must be an integer value 0 or higher. If no minlength is specified, or an invalid value is specified, the input has no minimum length. This value must be less than or equal to the value of maxlength, otherwise the value will never be valid, as it is impossible to meet both criteria.", + "summary": "The minlength attribute defines the minimum string length that the user can enter into an <input> or <textarea>. The attribute must have an integer value of 0 or higher.", "support": { "chrome": { "version_added": "40" @@ -52090,7 +53527,7 @@ "summary": "The <input> HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The <input> element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -52105,8 +53542,12 @@ "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { "version_added": "1" }, @@ -52116,7 +53557,7 @@ "version_added": "1" }, "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<input>: The Input (Form Input) element" @@ -52146,7 +53587,7 @@ "summary": "The <ins> HTML element represents a range of text that has been added to a document. You can use the <del> element to similarly represent a range of text that has been deleted from the document.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -52163,13 +53604,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<ins>" @@ -52189,7 +53630,7 @@ "summary": "The <kbd> HTML element represents a span of inline text denoting textual user input from a keyboard, voice input, or any other text entry device. By convention, the user agent defaults to rendering the contents of a <kbd> element using its default monospace font, although this is not mandated by the HTML standard.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -52209,13 +53650,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<kbd>: The Keyboard Input element" @@ -52235,14 +53676,14 @@ "summary": "The for attribute is an allowed attribute for <label> and <output>. When used on a <label> element it indicates the form element that this label describes. When used on an <output> element it allows for an explicit relationship between the elements that represent values which are used in the output.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -52252,13 +53693,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: for" @@ -52278,14 +53719,14 @@ "summary": "The <label> HTML element represents a caption for an item in a user interface.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -52295,16 +53736,16 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, - "title": "<label>: The Input Label element" + "title": "<label>: The Label element" } ], "the-legend-element": [ @@ -52681,7 +54122,7 @@ "version_added": "79" } }, - "title": "Link types: dns-prefetch" + "title": "rel=dns-prefetch" } ], "link-type-manifest": [ @@ -52724,19 +54165,20 @@ "version_added": false } }, - "title": "Link types: manifest" + "title": "rel=manifest" } ], "link-type-modulepreload": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "html/elements/link.json", "name": "modulepreload", "slug": "HTML/Link_types/modulepreload", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/modulepreload", - "summary": "The modulepreload keyword for the rel attribute of the <link> element provides a declarative way to preemptively fetch a module script and its dependencies, and store them in the document's module map for later evaluation.", + "summary": "The modulepreload keyword, for the rel attribute of the <link> element, provides a declarative way to preemptively fetch a module script, parse and compile it, and store it in the document's module map for later execution.", "support": { "chrome": { "version_added": "66" @@ -52746,7 +54188,7 @@ "version_added": false }, "firefox": { - "version_added": null + "version_added": "115" }, "firefox_android": "mirror", "ie": { @@ -52765,7 +54207,7 @@ "version_added": "79" } }, - "title": "Link types: modulepreload" + "title": "rel=modulepreload" } ], "link-type-preconnect": [ @@ -52779,7 +54221,7 @@ "name": "preconnect", "slug": "HTML/Link_types/preconnect", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/preconnect", - "summary": "The preconnect keyword for the rel attribute of the <link> element is a hint to browsers that the user is likely to need resources from the target resource's origin, and therefore the browser can likely improve the user experience by preemptively initiating a connection to that origin.", + "summary": "The preconnect keyword for the rel attribute of the <link> element is a hint to browsers that the user is likely to need resources from the target resource's origin, and therefore the browser can likely improve the user experience by preemptively initiating a connection to that origin. Preconnecting speeds up future loads from a given origin by preemptively performing part or all of the handshake (DNS+TCP for HTTP, and DNS+TCP+TLS for HTTPS origins).", "support": { "chrome": { "version_added": "46" @@ -52809,7 +54251,7 @@ "version_added": "79" } }, - "title": "Link types: preconnect" + "title": "rel=preconnect" } ], "link-type-prefetch": [ @@ -52853,7 +54295,7 @@ "version_added": "79" } }, - "title": "Link types: prefetch" + "title": "rel=prefetch" } ], "link-type-preload": [ @@ -52919,48 +54361,7 @@ "notes": "Doesn’t support <code>as=\"audio\"</code>, <code>as=\"audioworklet\"</code>, <code>as=\"document\"</code>, <code>as=\"embed\"</code>, <code>as=\"manifest\"</code>, <code>as=\"object\"</code>, <code>as=\"paintworklet\"</code>, <code>as=\"report\"</code>, <code>as=\"sharedworker\"</code>, <code>as=\"video\"</code>, <code>as=\"worker\"</code>, or <code>as=\"xslt\"</code>." } }, - "title": "Link types: preload" - } - ], - "link-type-prerender": [ - { - "engines": [ - "blink" - ], - "filename": "html/elements/link.json", - "name": "prerender", - "slug": "HTML/Link_types/prerender", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/prerender", - "summary": "The prerender keyword for the rel attribute of the <link> element is a hint to browsers that the user might need the target resource for the next navigation, and therefore the browser can likely improve the user experience by preemptively fetching and processing the resource — for example, by fetching its subresources or performing some rendering in the background offscreen.", - "support": { - "chrome": { - "version_added": "13" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": "11" - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "1.5" - }, - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "Link types: prerender" + "title": "rel=preload" } ], "linkTypes": [ @@ -52974,14 +54375,12 @@ "name": "rel", "slug": "HTML/Link_types", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types", - "summary": "In HTML, link types indicate the relationship between two documents, in which one links to the other using an <a>, <area>, <form>, or <link> element.", + "summary": "The rel attribute defines the relationship between a linked resource and the current document. Valid on <link>, <a>, <area>, and <form>, the supported values depend on the element on which the attribute is found.", "support": { "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -52994,11 +54393,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "9" + }, + "opera_android": { + "version_added": "10.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -53007,7 +54408,7 @@ "version_added": "79" } }, - "title": "Link types" + "title": "HTML attribute: rel" }, { "engines": [], @@ -53015,9 +54416,9 @@ "name": "Link_types", "slug": "HTML/Link_types", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types", - "summary": "In HTML, link types indicate the relationship between two documents, in which one links to the other using an <a>, <area>, <form>, or <link> element.", + "summary": "The rel attribute defines the relationship between a linked resource and the current document. Valid on <link>, <a>, <area>, and <form>, the supported values depend on the element on which the attribute is found.", "support": null, - "title": "Link types" + "title": "HTML attribute: rel" } ], "the-link-element": [ @@ -53036,9 +54437,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53051,11 +54450,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -53083,9 +54484,7 @@ "chrome": { "version_added": "26" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53148,18 +54547,12 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, - "opera_android": { - "version_added": true - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -53183,7 +54576,7 @@ "summary": "The <mark> HTML element represents text which is marked or highlighted for reference or notation purposes due to the marked passage's relevance in the enclosing context.", "support": { "chrome": { - "version_added": true + "version_added": "7" }, "chrome_android": "mirror", "edge": { @@ -53202,13 +54595,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "5.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<mark>: The Mark Text element" @@ -53398,7 +54791,7 @@ "summary": "The <meta> HTML element represents metadata that cannot be represented by other HTML meta-related elements, like <base>, <link>, <script>, <style> or <title>.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -53412,16 +54805,20 @@ "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<meta>: The metadata element" @@ -53438,7 +54835,7 @@ "name": "max", "slug": "HTML/Attributes/max", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max", - "summary": "The max attribute defines the maximum value that is acceptable and valid for the input containing the attribute. If the value of the element is greater than this, the element fails constraint validation. This value must be greater than or equal to the value of the min attribute. If the max attribute is present by is not specified or is invalid, no max value is applied. If the max attribute is valid and a non-empty value is greater than the maximum allowed by the max attribute, constraint validation will prevent form submission.", + "summary": "The max attribute defines the maximum value that is acceptable and valid for the input containing the attribute. If the value of the element is greater than this, the element fails validation. This value must be greater than or equal to the value of the min attribute. If the max attribute is present but is not specified or is invalid, no max value is applied. If the max attribute is valid and a non-empty value is greater than the maximum allowed by the max attribute, constraint validation will prevent form submission.", "support": { "chrome": { "version_added": "6" @@ -53487,7 +54884,7 @@ "name": "min", "slug": "HTML/Attributes/min", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min", - "summary": "The min attribute defines the minimum value that is acceptable and valid for the input containing the attribute. If the value of the element is less than this, the element fails constraint validation. This value must be less than or equal to the value of the max attribute.", + "summary": "The min attribute defines the minimum value that is acceptable and valid for the input containing the attribute. If the value of the element is less than this, the element fails validation. This value must be less than or equal to the value of the max attribute.", "support": { "chrome": { "version_added": "6" @@ -53594,9 +54991,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53641,7 +55036,7 @@ "summary": "The <noscript> HTML element defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -53658,13 +55053,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<noscript>: The Noscript element" @@ -53684,7 +55079,7 @@ "summary": "The <object> HTML element represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -53701,13 +55096,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<object>: The External Object element" @@ -53727,7 +55122,7 @@ "summary": "The <ol> HTML element represents an ordered list of items — typically rendered as a numbered list.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -53744,13 +55139,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<ol>: The Ordered List element" @@ -53772,9 +55167,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53786,12 +55179,10 @@ "version_added": "8" }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -53819,9 +55210,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53833,12 +55222,10 @@ "version_added": "5.5" }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -53866,9 +55253,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53880,12 +55265,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -53913,9 +55296,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -53927,12 +55308,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -53960,9 +55339,7 @@ "chrome": { "version_added": "10" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "18" }, @@ -53978,14 +55355,12 @@ "version_added": "11" }, "opera_android": { - "version_added": null + "version_added": "11" }, "safari": { "version_added": "7" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -54011,9 +55386,7 @@ "chrome": { "version_added": "10" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "18" }, @@ -54029,14 +55402,12 @@ "version_added": "11" }, "opera_android": { - "version_added": null + "version_added": "11" }, "safari": { "version_added": "7" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -54060,7 +55431,7 @@ "summary": "The <p> HTML element represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54077,13 +55448,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<p>: The Paragraph element" @@ -54146,7 +55517,7 @@ "summary": "The <pre> HTML element represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or monospaced, font. Whitespace inside this element is displayed as written.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54163,13 +55534,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<pre>: The Preformatted Text element" @@ -54186,14 +55557,12 @@ "name": "max", "slug": "HTML/Attributes/max", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max", - "summary": "The max attribute defines the maximum value that is acceptable and valid for the input containing the attribute. If the value of the element is greater than this, the element fails constraint validation. This value must be greater than or equal to the value of the min attribute. If the max attribute is present by is not specified or is invalid, no max value is applied. If the max attribute is valid and a non-empty value is greater than the maximum allowed by the max attribute, constraint validation will prevent form submission.", + "summary": "The max attribute defines the maximum value that is acceptable and valid for the input containing the attribute. If the value of the element is greater than this, the element fails validation. This value must be greater than or equal to the value of the min attribute. If the max attribute is present but is not specified or is invalid, no max value is applied. If the max attribute is valid and a non-empty value is greater than the maximum allowed by the max attribute, constraint validation will prevent form submission.", "support": { "chrome": { "version_added": "6" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -54242,9 +55611,7 @@ "chrome": { "version_added": "6" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -54296,7 +55663,7 @@ "summary": "The <q> HTML element indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the text in quotation marks. This element is intended for short quotations that don't require paragraph breaks; for long quotations use the <blockquote> element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54313,13 +55680,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<q>: The Inline Quotation element" @@ -54341,9 +55708,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "38" @@ -54354,15 +55719,11 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { "version_added": "5" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -54388,9 +55749,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "38" @@ -54401,15 +55760,11 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { "version_added": "5" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -54435,9 +55790,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -54450,15 +55803,11 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { "version_added": "5" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -54482,7 +55831,7 @@ "summary": "The <s> HTML element renders text with a strikethrough, or a line through it. Use the <s> element to represent things that are no longer relevant or no longer accurate. However, <s> is not appropriate when indicating document edits; for that, use the <del> and <ins> elements, as appropriate.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54502,13 +55851,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<s>: The Strikethrough element" @@ -54528,7 +55877,7 @@ "summary": "The <samp> HTML element is used to enclose inline text which represents sample (or quoted) output from a computer program. Its contents are typically rendered using the browser's default monospaced font (such as Courier or Lucida Console).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54545,13 +55894,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<samp>: The Sample Output element" @@ -54573,9 +55922,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -54591,11 +55938,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -54607,6 +55956,53 @@ "title": "<script>: The Script element" } ], + "the-search-element": [ + { + "engines": [], + "filename": "html/elements/search.json", + "name": "search", + "slug": "HTML/Element/search", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search", + "summary": "The <search> HTML element is a container representing the parts of the document or application with form controls or other content related to performing a search or filtering operation. The <search> element semantically identifies the purpose of the element's contents as having search or filtering capabilities. The search or filtering functionality can be for the website or application, the current web page or document, or the entire Internet or subsection thereof.", + "support": { + "chrome": { + "version_added": false, + "notes": "See <a href='https://crbug.com/937101'>bug 1294294</a> and <a href='https://crbug.com/1277435'>bug 1277435</a>." + }, + "chrome_android": { + "version_added": false + }, + "edge": { + "version_added": false + }, + "firefox": { + "version_added": false, + "notes": "See <a href='https://bugzil.la/1824121'>bug 1824121</a>." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": false + }, + "opera_android": "mirror", + "safari": { + "version_added": false, + "notes": "See <a href=' https://webkit.org/b/254327'>bug 254327</a>." + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false, + "notes": "See <a href='https://crbug.com/937101'>bug 1294294</a> and <a href='https://crbug.com/1277435'>bug 1277435</a>." + } + }, + "title": "<search>: The generic search element" + } + ], "the-section-element": [ { "engines": [ @@ -54623,9 +56019,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -54670,7 +56064,7 @@ "summary": "The Boolean multiple attribute, if set, means the form control accepts one or more values. Valid for the email and file input types and the <select>, the manner by which the user opts for multiple values depends on the form control.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54687,13 +56081,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: multiple" @@ -54713,7 +56107,7 @@ "summary": "The Boolean required attribute, if present, indicates that the user must specify a value for the input before the owning form can be submitted.", "support": { "chrome": { - "version_added": true + "version_added": "10" }, "chrome_android": "mirror", "edge": { @@ -54730,13 +56124,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "5.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: required" @@ -54753,10 +56147,10 @@ "name": "size", "slug": "HTML/Attributes/size", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/size", - "summary": "The size attribute defines the width of the <input> and the height of the <select> element. For the input, if the type attribute is text or password then it's the number of characters. This must be an integer value 0 or higher. If no size is specified, or an invalid value is specified, the input has no size declared, and the form control will be the default width based on the user agent. If CSS targets the element with properties impacting the width, CSS takes precedence.", + "summary": "The size attribute defines the width of the <input> and the height of the <select> element. For the input, if the type attribute is text or password then it's the number of characters. This must be an integer value of 0 or higher. If no size is specified, or an invalid value is specified, the input has no size declared, and the form control will be the default width based on the user agent. If CSS targets the element with properties impacting the width, CSS takes precedence.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54773,13 +56167,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: size" @@ -54799,7 +56193,7 @@ "summary": "The <select> HTML element represents a control that provides a menu of options.", "support": { "chrome": { - "version_added": true, + "version_added": "1", "notes": "<code>border-radius</code> on <code>&lt;select&gt;</code> elements is ignored unless <code>-webkit-appearance</code> is overridden to an appropriate value." }, "chrome_android": "mirror", @@ -54819,26 +56213,26 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "2" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": true, + "version_added": "1", "notes": "<code>border-radius</code> on <code>&lt;select&gt;</code> elements is ignored unless <code>-webkit-appearance</code> is overridden to an appropriate value." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { - "version_added": true, + "version_added": "37", "notes": [ "In the Browser app for Android 4.1 (and possibly later versions), there is a bug where the menu indicator triangle on the side of a <code>&lt;select&gt;</code> will not be displayed if a <code>background</code>, <code>border</code>, or <code>border-radius</code> style is applied to the <code>&lt;select&gt;</code>.", "<code>border-radius</code> on <code>&lt;select&gt;</code> elements is ignored unless <code>-webkit-appearance</code> is overridden to an appropriate value." ] }, "edge_blink": { - "version_added": true, + "version_added": "79", "notes": "<code>border-radius</code> on <code>&lt;select&gt;</code> elements is ignored unless <code>-webkit-appearance</code> is overridden to an appropriate value." } }, @@ -54900,7 +56294,7 @@ "summary": "The <small> HTML element represents side-comments and small print, like copyright and legal text, independent of its styled presentation. By default, it renders text within it one font-size smaller, such as from small to x-small.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -54917,13 +56311,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<small>: the side comment element" @@ -54943,7 +56337,7 @@ "summary": "The <source> HTML element specifies multiple media resources for the <picture>, the <audio> element, or the <video> element. It is a void element, meaning that it has no content and does not have a closing tag. It is commonly used to offer the same media content in multiple file formats in order to provide compatibility with a broad range of browsers given their differing support for image file formats and media file formats.", "support": { "chrome": { - "version_added": true + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -54961,13 +56355,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<source>: The Media or Image Source element" @@ -54984,10 +56378,10 @@ "name": "span", "slug": "HTML/Element/span", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span", - "summary": "The <span> HTML element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang. It should be used only when no other semantic element is appropriate. <span> is very much like a <div> element, but <div> is a block-level element whereas a <span> is an inline element.", + "summary": "The <span> HTML element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang. It should be used only when no other semantic element is appropriate. <span> is very much like a <div> element, but <div> is a block-level element whereas a <span> is an inline-level element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -55004,13 +56398,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<span>: The Content Span element" @@ -55032,9 +56426,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55049,12 +56441,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55127,7 +56517,7 @@ "summary": "The <sub> HTML element specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -55144,13 +56534,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<sub>: The Subscript element" @@ -55168,7 +56558,7 @@ "summary": "The <sup> HTML element specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller text.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -55185,13 +56575,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<sup>: The Superscript element" @@ -55213,9 +56603,7 @@ "chrome": { "version_added": "12" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "49" @@ -55226,15 +56614,11 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": "14" - }, + "opera_android": "mirror", "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "4" @@ -55275,13 +56659,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" }, "opera_android": { - "version_added": true + "version_added": "12.1" }, "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55309,9 +56693,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55324,11 +56706,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55356,9 +56740,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55371,11 +56753,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55416,9 +56800,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "8" }, @@ -55448,14 +56830,14 @@ "summary": "The <textarea> HTML element represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true, + "version_added": "1", "notes": [ "Before Firefox 6, when a <code>&lt;textarea&gt;</code> was focused, the insertion point was placed at the end of the text by default. Other major browsers place the insertion point at the beginning of the text.", "A default background-image gradient is applied to all <code>&lt;textarea&gt;</code> elements, which can be disabled using <code>background-image: none</code>.", @@ -55467,19 +56849,23 @@ "version_added": true }, "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": { - "version_added": true, + "version_added": "3", "notes": "Unlike other major browsers, a default style of <code>opacity: 0.4</code> is applied to disabled <code>&lt;textarea&gt;</code> elements." }, "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<textarea>: The Textarea element" @@ -55501,9 +56887,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55516,11 +56900,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55543,14 +56929,12 @@ "name": "th", "slug": "HTML/Element/th", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th", - "summary": "The <th> HTML element defines a cell as header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.", + "summary": "The <th> HTML element defines a cell as the header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.", "support": { "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55563,11 +56947,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55595,9 +56981,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55610,11 +56994,14 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1", + "notes": "Backgrounds applied to <code>&lt;thead&gt;</code> elements will be applied to each table cell, rather than the entire header. To mimic the behavior of other browsers, set the <code>background-attachment</code> CSS property to <code>fixed</code>." }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55703,9 +57090,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55717,16 +57102,12 @@ "version_added": "1" }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": "1" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -55752,9 +57133,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -55767,11 +57146,13 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" }, - "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -55818,17 +57199,14 @@ "version_added": "12.1" }, "opera_android": { - "version_added": null + "version_added": "12.1" }, "safari": { "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": true, - "notes": "Doesn't work for fullscreen video." - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -55850,7 +57228,7 @@ "summary": "The <u> HTML element represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation. This is rendered by default as a simple solid underline, but may be altered using CSS.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -55870,13 +57248,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<u>: The Unarticulated Annotation (Underline) element" @@ -55896,7 +57274,7 @@ "summary": "The <ul> HTML element represents an unordered list of items, typically rendered as a bulleted list.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -55913,13 +57291,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<ul>: The Unordered List element" @@ -55939,7 +57317,7 @@ "summary": "The <var> HTML element represents the name of a variable in a mathematical expression or a programming context. It's typically presented using an italicized version of the current typeface, although that behavior is browser-dependent.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -55956,13 +57334,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<var>: The Variable element" @@ -55984,9 +57362,7 @@ "chrome": { "version_added": "3" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -56033,9 +57409,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": "mirror", "firefox": { "version_added": "1" @@ -56050,14 +57424,12 @@ "version_added": "11.6" }, "opera_android": { - "version_added": null + "version_added": "12" }, "safari": { "version_added": "4" }, - "safari_ios": { - "version_added": null - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -56081,14 +57453,14 @@ "summary": "The accesskey global attribute provides a hint for generating a keyboard shortcut for the current element. The attribute value must consist of a single printable character (which includes accented and other characters that can be generated by the keyboard).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -56098,13 +57470,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "accesskey" @@ -56117,9 +57489,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "html/global_attributes.json", "name": "autocapitalize", "slug": "HTML/Global_attributes/autocapitalize", @@ -56132,26 +57501,15 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "83", - "flags": [ - { - "type": "preference", - "name": "dom.forms.autocapitalize", - "value_to_set": "true" - } - ] + "version_added": "111" }, "firefox_android": "mirror", "ie": { "version_added": null }, "oculus": "mirror", - "opera": { - "version_added": null - }, - "opera_android": { - "version_added": null - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": false }, @@ -56171,7 +57529,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "html/global_attributes.json", "name": "autocomplete", @@ -56180,7 +57539,7 @@ "summary": "The HTML autocomplete attribute lets web developers specify what if any permission the user agent has to provide automated assistance in filling out form field values, as well as guidance to the browser as to the type of information expected in the field.", "support": { "chrome": { - "version_added": true, + "version_added": "14", "notes": [ "In Chrome 66, support was added for the <code>&lt;textarea&gt;</code> and <code>&lt;select&gt;</code> elements.", "Originally only supported on the <code>&lt;input&gt;</code> element.", @@ -56192,7 +57551,7 @@ "version_added": false }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -56200,19 +57559,19 @@ }, "oculus": "mirror", "opera": { - "version_added": true + "version_added": "12.1" }, "opera_android": { - "version_added": true + "version_added": "12.1" }, "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true, + "version_added": "79", "notes": [ "In Chrome 66, support was added for the <code>&lt;textarea&gt;</code> and <code>&lt;select&gt;</code> elements.", "Originally only supported on the <code>&lt;input&gt;</code> element.", @@ -56334,14 +57693,14 @@ "summary": "The class global attribute is a space-separated list of the case-sensitive classes of the element. Classes allow CSS and JavaScript to select and access specific elements via the class selectors or functions like the DOM method document.getElementsByClassName.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "32" + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -56351,13 +57710,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "class" @@ -56377,7 +57736,7 @@ "summary": "The contenteditable global attribute is an enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -56396,13 +57755,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "contenteditable" @@ -56422,14 +57781,14 @@ "summary": "The data-* global attributes form a class of attributes called custom data attributes, that allow proprietary information to be exchanged between the HTML and its DOM representation by scripts.", "support": { "chrome": { - "version_added": true + "version_added": "7" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "6" }, "firefox_android": "mirror", "ie": { @@ -56439,13 +57798,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "5.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "data-*" @@ -56465,14 +57824,12 @@ "summary": "The dir global attribute is an enumerated attribute that indicates the directionality of the element's text.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -56482,13 +57839,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "dir" @@ -56508,7 +57865,7 @@ "summary": "The draggable global attribute is an enumerated attribute that indicates whether the element can be dragged, either with native browser behavior or the HTML Drag and Drop API.", "support": { "chrome": { - "version_added": true + "version_added": "4" }, "chrome_android": "mirror", "edge": { @@ -56527,13 +57884,13 @@ }, "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "5" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "draggable" @@ -56637,14 +57994,14 @@ "summary": "The hidden global attribute is an enumerated attribute indicating that the browser should not render the contents of the element. For example, it can be used to hide elements of the page that can't be used until the login process has been completed.", "support": { "chrome": { - "version_added": true + "version_added": "10" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -56654,7 +58011,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "5.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -56662,7 +58019,7 @@ "version_added": "4" }, "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "hidden" @@ -56682,7 +58039,7 @@ "summary": "The id global attribute defines an identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -56693,7 +58050,7 @@ "version_added": "32" }, { - "version_added": true, + "version_added": "1", "version_removed": "32", "partial_implementation": true, "notes": "<code>id</code> is a true global attribute only since Firefox 32." @@ -56707,18 +58064,59 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "id" } ], + "the-inert-attribute": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "html/global_attributes.json", + "name": "inert", + "slug": "HTML/Global_attributes/inert", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inert", + "summary": "The inert global attribute is a Boolean attribute indicating that the browser will ignore the element. With the inert attribute, all of the element's flat tree descendants (such as modal <dialog>s) that don't otherwise escape inertness are ignored. The inert attribute also makes the browser ignore input events sent by the user, including focus-related events and events from assistive technologies.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "112" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.5" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "inert" + } + ], "attr-inputmode": [ { "engines": [ @@ -57040,14 +58438,14 @@ "summary": "The lang global attribute helps define the language of an element: the language that non-editable elements are written in, or the language that the editable elements should be written in by the user. The attribute contains a single \"language tag\" in the format defined in RFC 5646: Tags for Identifying Languages (also known as BCP 47).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -57057,13 +58455,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "lang" @@ -57110,6 +58508,57 @@ "title": "nonce" } ], + "the-popover-attribute": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "gecko" + ], + "filename": "html/global_attributes.json", + "name": "popover", + "slug": "HTML/Global_attributes/popover", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/popover", + "summary": "The popover global attribute is used to designate an element as a popover element.", + "support": { + "chrome": { + "version_added": "114" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "dom.element.popover.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "preview" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "114" + } + }, + "title": "popover" + } + ], "attr-slot": [ { "engines": [ @@ -57220,14 +58669,14 @@ "summary": "The style global attribute contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the <style> element have mainly the purpose of allowing for quick styling, for example for testing purposes.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -57237,13 +58686,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "style" @@ -57260,17 +58709,17 @@ "name": "tabindex", "slug": "HTML/Global_attributes/tabindex", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex", - "summary": "The tabindex global attribute indicates that its element can be focused, and where it participates in sequential keyboard navigation (usually with the Tab key, hence the name).", + "summary": "The tabindex global attribute allows developers to make HTML elements focusable, allow or prevent them from being sequentially focusable (usually with the Tab key, hence the name) and determine their relative ordering for sequential focus navigation.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -57280,13 +58729,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "tabindex" @@ -57306,14 +58755,14 @@ "summary": "The title global attribute contains text representing advisory information related to the element it belongs to.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1" }, "firefox_android": "mirror", "ie": { @@ -57323,13 +58772,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "title" @@ -57339,6 +58788,7 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "html/global_attributes.json", @@ -57353,7 +58803,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "111" }, "firefox_android": "mirror", "ie": { @@ -57386,7 +58836,7 @@ "name": "Cross-Origin-Embedder-Policy", "slug": "HTTP/Headers/Cross-Origin-Embedder-Policy", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Embedder-Policy", - "summary": "The HTTP Cross-Origin-Embedder-Policy (COEP) response header prevents a document from loading any cross-origin resources that don't explicitly grant the document permission (using CORP or CORS).", + "summary": "The HTTP Cross-Origin-Embedder-Policy (COEP) response header configures embedding cross-origin resources into the document.", "support": { "chrome": { "version_added": "83" @@ -57478,7 +58928,7 @@ "name": "autoplay", "slug": "HTTP/Headers/Feature-Policy/autoplay", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/autoplay", - "summary": "The HTTP Feature-Policy header autoplay directive controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is enabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.", + "summary": "The HTTP Permissions-Policy header autoplay directive controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface.", "support": { "chrome": { "version_added": "64" @@ -57512,33 +58962,114 @@ "version_added": "79" } }, - "title": "Feature-Policy: autoplay" + "title": "Permissions-Policy: autoplay" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "autoplay", + "slug": "HTTP/Headers/Permissions-Policy/autoplay", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/autoplay", + "summary": "The HTTP Permissions-Policy header autoplay directive controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: autoplay", + "flags": [ + { + "type": "preference", + "name": "dom.security.featurePolicy.header.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: autoplay" } ], - "document-domain-feature": [ + "policy-controlled-features": [ { "engines": [ - "blink", - "gecko" + "blink" ], "needsflag": [ + "blink" + ], + "altname": [ "gecko" ], - "filename": "http/headers/Feature-Policy.json", + "filename": "http/headers/Permissions-Policy.json", "name": "document-domain", - "slug": "HTTP/Headers/Feature-Policy/document-domain", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/document-domain", - "summary": "The HTTP Feature-Policy header document-domain directive controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.", + "slug": "HTTP/Headers/Permissions-Policy/document-domain", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/document-domain", + "summary": "The HTTP Permissions-Policy header document-domain directive controls whether the current document is allowed to set document.domain.", "support": { - "chrome": { - "version_added": "77" - }, + "chrome": [ + { + "version_added": "88", + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy", + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + } + ], "chrome_android": { "version_added": false }, "edge": "mirror", "firefox": { "version_added": "74", + "alternative_name": "Feature-Policy: document-domain", "flags": [ { "type": "preference", @@ -57560,11 +59091,29 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } + "edge_blink": [ + { + "version_added": "88", + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy", + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + } + ] }, - "title": "Feature-Policy: document-domain" + "title": "Permissions-Policy: document-domain" } ], "the-x-frame-options-header": [ @@ -57621,24 +59170,43 @@ "early-hints": [ { "engines": [ - "blink" + "blink", + "gecko" ], "filename": "http/status.json", "name": "103", "slug": "HTTP/Status/103", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103", - "summary": "The HTTP 103 Early Hints information response status code is primarily intended to be used with the Link header to allow the user agent to start preloading resources while the server is still preparing a response.", + "summary": "The HTTP 103 Early Hints information response may be sent by a server while it is still preparing a response, with hints about the resources that the server is expecting the final response will link. This allows a browser to start preloading resources even before the server has prepared and sent that final response.", "support": { "chrome": { - "version_added": "103" + "version_added": "103", + "notes": "Supported in HTTP/2 and later (SPDY/QUIC)" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, + "edge": "mirror", + "firefox": [ + { + "version_added": "preview", + "notes": "Supported in HTTP1.0 and later" + }, + { + "version_added": "102", + "notes": "Supported in HTTP1.0 and later", + "flags": [ + { + "type": "preference", + "name": "network.early-hints.enabled", + "value_to_set": "true" + }, + { + "type": "preference", + "name": "network.early-hints.preconnect.enabled", + "value_to_set": "true" + } + ] + } + ], "ie": { "version_added": false }, @@ -57650,7 +59218,8 @@ "version_added": false }, "edge_blink": { - "version_added": "103" + "version_added": "103", + "notes": "Supported in HTTP/2 and later (SPDY/QUIC)" } }, "title": "103 Early Hints" @@ -57680,7 +59249,8 @@ "version_added": "103", "notes": [ "Version 103 serialized properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 additionally supports serialization of <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 adds serialization of <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 adds serialization of <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -57728,7 +59298,8 @@ "version_added": "103", "notes": [ "Version 103 serializable properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 also serializes <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 also serializes <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 also serializes <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -57776,7 +59347,8 @@ "version_added": "103", "notes": [ "Version 103 serializable properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 also serializes <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 also serializes <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 also serializes <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -57824,7 +59396,8 @@ "version_added": "103", "notes": [ "Version 103 serializable properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 also serializes <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 also serializes <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 also serializes <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -57872,7 +59445,8 @@ "version_added": "103", "notes": [ "Version 103 serializable properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 also serializes <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 also serializes <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 also serializes <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -57920,7 +59494,8 @@ "version_added": "103", "notes": [ "Version 103 serializable properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 also serializes <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 also serializes <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 also serializes <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -57968,7 +59543,8 @@ "version_added": "103", "notes": [ "Version 103 serializable properties: <code>name</code>, <code>message</code>, <code>cause</code>, <code>fileName</code>, <code>lineNumber</code> and <code>columnNumber</code>.", - "Version 104 also serializes <code>stack</code> in <a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>." + "Version 104 also serializes <code>stack</code> in the main thread (<a href='https://developer.mozilla.org/docs/Web/API/Window/postMessage'><code>window.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>).", + "Version 110 also serializes <code>stack</code> in workers (<a href='https://developer.mozilla.org/docs/Web/API/Worker/postMessage'><code>worker.postMessage()</code></a> and <a href='https://developer.mozilla.org/docs/Web/API/structuredClone'><code>structuredClone()</code></a>)." ] }, "firefox_android": "mirror", @@ -58040,6 +59616,59 @@ } ], "hostgetimportmetaproperties": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "javascript/operators/import_meta.json", + "name": "resolve", + "slug": "JavaScript/Reference/Operators/import.meta/resolve", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve", + "summary": "import.meta.resolve() is a built-in function defined on the import.meta object of a JavaScript module that resolves a module specifier to a URL using the current module's URL as base.", + "support": { + "chrome": { + "version_added": "105" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.24" + }, + "edge": "mirror", + "firefox": { + "version_added": "106" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "12.6.0", + "partial_implementation": true, + "flags": [ + { + "type": "runtime_flag", + "name": "--experimental-import-meta-resolve" + } + ], + "notes": "Returns a Promise." + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "105" + } + }, + "title": "import.meta.resolve()" + }, { "engines": [ "blink", @@ -58050,7 +59679,7 @@ "name": "import_meta", "slug": "JavaScript/Reference/Operators/import.meta", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta", - "summary": "The import.meta object exposes context-specific metadata to a JavaScript module. It contains information about the module, like the module's URL.", + "summary": "The import.meta meta-property exposes context-specific metadata to a JavaScript module. It contains information about the module, such as the module's URL.", "support": { "chrome": { "version_added": "64" @@ -58102,14 +59731,14 @@ "summary": "The <fieldset> HTML element is used to group several controls as well as labels (<label>) within a web form.", "support": { "chrome": { - "version_added": true + "version_added": "20" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -58121,18 +59750,16 @@ "version_added": "12" }, "opera_android": { - "version_added": null + "version_added": "12" }, "safari": { "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "4.4" - }, + "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<fieldset>: The Field Set element" @@ -58154,9 +59781,7 @@ "chrome": { "version_added": "4" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -58169,9 +59794,7 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { "version_added": "5" }, @@ -58246,14 +59869,14 @@ "summary": "The crossorigin attribute, valid on the <audio>, <img>, <link>, <script>, and <video> elements, provides support for CORS, defining how the element handles cross-origin requests, thereby enabling the configuration of the CORS requests for the element's fetched data. Depending on the element, the attribute can be a CORS settings attribute.", "support": { "chrome": { - "version_added": true + "version_added": "13" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "8" }, "firefox_android": "mirror", "ie": { @@ -58263,13 +59886,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: crossorigin" @@ -58454,11 +60077,9 @@ "chrome": { "version_added": "18" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { - "version_added": false + "version_added": "≤79" }, "firefox": { "version_added": "18" @@ -58468,16 +60089,12 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": true - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { @@ -58503,9 +60120,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -58517,12 +60132,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "≤4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -58548,7 +60161,7 @@ "summary": "The <script> HTML element is used to embed executable code or data; this is typically used to embed or refer to JavaScript code. The <script> element can also be used with other languages, such as WebGL's GLSL shader programming language and JSON.", "support": { "chrome": { - "version_added": true, + "version_added": "1", "notes": "Chrome does not defer scripts with the <code>defer</code> attribute when the page is served as XHTML (<code>application/xhtml+xml</code>) - <a href='https://crbug.com/611136'>Chromium Issue #611136</a>, <a href='https://crbug.com/874749'>Chromium Issue #874749</a>" }, "chrome_android": "mirror", @@ -58570,13 +60183,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true, + "version_added": "79", "notes": "Chrome does not defer scripts with the <code>defer</code> attribute when the page is served as XHTML (<code>application/xhtml+xml</code>) - <a href='https://crbug.com/611136'>Chromium Issue #611136</a>, <a href='https://crbug.com/874749'>Chromium Issue #874749</a>" } }, @@ -58599,9 +60212,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -58613,12 +60224,10 @@ "version_added": true }, "oculus": "mirror", - "opera": { - "version_added": true - }, + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "≤4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -58701,7 +60310,7 @@ "summary": "The Channel Messaging API allows two separate scripts running in different browsing contexts attached to the same document (e.g., two IFrames, or the main document and an IFrame, two documents via a SharedWorker, or two workers) to communicate directly, passing messages between one another through two-way channels (or pipes) with a port at each end.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -58760,7 +60369,7 @@ "summary": "The Channel Messaging API allows two separate scripts running in different browsing contexts attached to the same document (e.g., two <iframe> elements, the main document and a single <iframe>, or two documents via a SharedWorker) to communicate directly, passing messages between each other through two-way channels (or pipes) with a port at each end.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "deno": { @@ -58872,14 +60481,14 @@ "summary": "The crossorigin attribute, valid on the <audio>, <img>, <link>, <script>, and <video> elements, provides support for CORS, defining how the element handles cross-origin requests, thereby enabling the configuration of the CORS requests for the element's fetched data. Depending on the element, the attribute can be a CORS settings attribute.", "support": { "chrome": { - "version_added": true + "version_added": "13" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "8" }, "firefox_android": "mirror", "ie": { @@ -58889,13 +60498,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "HTML attribute: crossorigin" @@ -58915,7 +60524,7 @@ "summary": "The window.postMessage() method safely enables cross-origin communication between Window objects; e.g., between a page and a pop-up that it spawned, or between a page and an iframe embedded within it.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -58960,7 +60569,7 @@ "version_added": "79" } }, - "title": "Window.postMessage()" + "title": "Window: postMessage() method" } ], "custom-elements": [ @@ -59153,7 +60762,7 @@ "version_added": "79" } }, - "title": "HTMLAnchorElement.download" + "title": "HTMLAnchorElement: download property" } ], "drawing-text-to-the-bitmap": [ @@ -59375,7 +60984,7 @@ "version_added": "17" }, "firefox": { - "version_added": true, + "version_added": "1", "flags": [ { "type": "preference", @@ -59397,7 +61006,7 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { - "version_added": "37" + "version_added": "≤37" }, "edge_blink": { "version_added": "79" @@ -59417,7 +61026,7 @@ "name": "Link_types#icon", "slug": "HTML/Link_types#icon", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types#icon", - "summary": "In HTML, link types indicate the relationship between two documents, in which one links to the other using an <a>, <area>, <form>, or <link> element.", + "summary": "The rel attribute defines the relationship between a linked resource and the current document. Valid on <link>, <a>, <area>, and <form>, the supported values depend on the element on which the attribute is found.", "support": { "chrome": { "version_added": "4", @@ -59470,7 +61079,7 @@ "feature": "link-icon-png", "title": "Favicons" }, - "title": "Link types" + "title": "HTML attribute: rel" } ], "pseudo-classes": [ @@ -59501,9 +61110,7 @@ "chrome": { "version_added": "5" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -59600,10 +61207,11 @@ "summary": "The SharedWorker interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/154571'>bug 154571</a>." }, "edge": "mirror", "firefox": { @@ -59667,10 +61275,11 @@ "summary": "The SharedWorker interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/154571'>bug 154571</a>." }, "edge": "mirror", "firefox": { @@ -59961,7 +61570,7 @@ "summary": "Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usually the UI) thread to run without being blocked/slowed down.", "support": { "chrome": { - "version_added": "4" + "version_added": "2" }, "chrome_android": "mirror", "deno": { diff --git a/bikeshed/spec-data/readonly/mdn/idle-detection.json b/bikeshed/spec-data/readonly/mdn/idle-detection.json index a3a4e6153f..b1cee2fd7d 100644 --- a/bikeshed/spec-data/readonly/mdn/idle-detection.json +++ b/bikeshed/spec-data/readonly/mdn/idle-detection.json @@ -37,7 +37,7 @@ "version_added": "94" } }, - "title": "IdleDetector()" + "title": "IdleDetector: IdleDetector() constructor" } ], "api-idledetector-onchange": [ @@ -87,10 +87,10 @@ "blink" ], "filename": "api/IdleDetector.json", - "name": "requestPermission", - "slug": "API/IdleDetector/requestPermission", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IdleDetector/requestPermission", - "summary": "The requestPermission() method of the IdleDetector interface returns a Promise that resolves with a string when the user has chosen whether to grant the origin access to their idle state. Resolves with \"granted\" on acceptance and \"denied\" on refusal.", + "name": "requestPermission_static", + "slug": "API/IdleDetector/requestPermission_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IdleDetector/requestPermission_static", + "summary": "The requestPermission() static method of the IdleDetector interface returns a Promise that resolves with a string when the user has chosen whether to grant the origin access to their idle state. Resolves with \"granted\" on acceptance and \"denied\" on refusal.", "support": { "chrome": { "version_added": "94" @@ -119,7 +119,7 @@ "version_added": "94" } }, - "title": "IdleDetector.requestPermission()" + "title": "IdleDetector: requestPermission() static method" } ], "api-idledetector-screenstate": [ @@ -160,7 +160,7 @@ "version_added": "94" } }, - "title": "IdleDetector.screenState" + "title": "IdleDetector: screenState property" } ], "api-idledetector-start": [ @@ -201,7 +201,7 @@ "version_added": "94" } }, - "title": "IdleDetector.start()" + "title": "IdleDetector: start() method" } ], "api-idledetector-userstate": [ @@ -242,7 +242,7 @@ "version_added": "94" } }, - "title": "IdleDetector.userState" + "title": "IdleDetector: userState property" } ], "api-idledetector": [ @@ -285,5 +285,44 @@ }, "title": "IdleDetector" } + ], + "api-permissions-policy": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "idle-detection", + "slug": "HTTP/Headers/Permissions-Policy/idle-detection", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/idle-detection", + "summary": "The HTTP Permissions-Policy header idle-detection directive controls whether the current document is allowed to use the Idle Detection API to detect when users are interacting with their devices, for example to report \"available\"/\"away\" status in chat applications.", + "support": { + "chrome": { + "version_added": "94" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94" + } + }, + "title": "Permissions-Policy: idle-detection" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/image-capture.json b/bikeshed/spec-data/readonly/mdn/image-capture.json index a50a560f59..7ed9df0c01 100644 --- a/bikeshed/spec-data/readonly/mdn/image-capture.json +++ b/bikeshed/spec-data/readonly/mdn/image-capture.json @@ -2,7 +2,11 @@ "dom-imagecapture-imagecapture": [ { "engines": [ - "blink" + "blink", + "gecko" + ], + "needsflag": [ + "gecko" ], "filename": "api/ImageCapture.json", "name": "ImageCapture", @@ -16,8 +20,14 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": "35", + "flags": [ + { + "type": "preference", + "name": "dom.imagecapture.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { @@ -36,7 +46,7 @@ "version_added": "79" } }, - "title": "ImageCapture() constructor" + "title": "ImageCapture: ImageCapture() constructor" } ], "dom-imagecapture-getphotocapabilities": [ @@ -48,7 +58,7 @@ "name": "getPhotoCapabilities", "slug": "API/ImageCapture/getPhotoCapabilities", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ImageCapture/getPhotoCapabilities", - "summary": "The getPhotoCapabilities() method of the ImageCapture interface returns a Promise that resolves with a PhotoCapabilities object containing the ranges of available configuration options.", + "summary": "The getPhotoCapabilities() method of the ImageCapture interface returns a Promise that resolves with an object containing the ranges of available configuration options.", "support": { "chrome": { "version_added": "59" @@ -56,8 +66,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -76,7 +85,7 @@ "version_added": "79" } }, - "title": "ImageCapture.getPhotoCapabilities()" + "title": "ImageCapture: getPhotoCapabilities() method" } ], "dom-imagecapture-getphotosettings": [ @@ -88,7 +97,7 @@ "name": "getPhotoSettings", "slug": "API/ImageCapture/getPhotoSettings", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ImageCapture/getPhotoSettings", - "summary": "The getPhotoSettings() method of the ImageCapture interface returns a Promise that resolves with a PhotoSettings object containing the current photo configuration settings.", + "summary": "The getPhotoSettings() method of the ImageCapture interface returns a Promise that resolves with an object containing the current photo configuration settings.", "support": { "chrome": { "version_added": "61" @@ -96,8 +105,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -120,7 +128,7 @@ "version_added": "79" } }, - "title": "ImageCapture.getPhotoSettings()" + "title": "ImageCapture: getPhotoSettings() method" } ], "dom-imagecapture-grabframe": [ @@ -140,8 +148,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -160,13 +167,17 @@ "version_added": "79" } }, - "title": "ImageCapture.grabFrame()" + "title": "ImageCapture: grabFrame() method" } ], "dom-imagecapture-takephoto": [ { "engines": [ - "blink" + "blink", + "gecko" + ], + "needsflag": [ + "gecko" ], "filename": "api/ImageCapture.json", "name": "takePhoto", @@ -188,8 +199,14 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": "35", + "flags": [ + { + "type": "preference", + "name": "dom.imagecapture.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { @@ -216,7 +233,7 @@ } ] }, - "title": "ImageCapture.takePhoto()" + "title": "ImageCapture: takePhoto() method" } ], "dom-imagecapture-track": [ @@ -224,6 +241,9 @@ "engines": [ "blink" ], + "altname": [ + "gecko" + ], "filename": "api/ImageCapture.json", "name": "track", "slug": "API/ImageCapture/track", @@ -236,8 +256,15 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": "35", + "alternative_name": "videoStreamTrack", + "flags": [ + { + "type": "preference", + "name": "dom.imagecapture.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { @@ -256,13 +283,17 @@ "version_added": "79" } }, - "title": "ImageCapture.track" + "title": "ImageCapture: track property" } ], "imagecaptureapi": [ { "engines": [ - "blink" + "blink", + "gecko" + ], + "needsflag": [ + "gecko" ], "filename": "api/ImageCapture.json", "name": "ImageCapture", @@ -276,8 +307,14 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/888177'>bug 888177</a>." + "version_added": "35", + "flags": [ + { + "type": "preference", + "name": "dom.imagecapture.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { diff --git a/bikeshed/spec-data/readonly/mdn/indexeddb.json b/bikeshed/spec-data/readonly/mdn/indexeddb.json index acfc60a437..91f342b35c 100644 --- a/bikeshed/spec-data/readonly/mdn/indexeddb.json +++ b/bikeshed/spec-data/readonly/mdn/indexeddb.json @@ -41,7 +41,7 @@ "version_added": "79" } }, - "title": "IDBCursor.advance()" + "title": "IDBCursor: advance() method" } ], "ref-for-dom-idbcursor-continue①": [ @@ -86,7 +86,7 @@ "version_added": "79" } }, - "title": "IDBCursor.continue()" + "title": "IDBCursor: continue() method" } ], "ref-for-dom-idbcursor-continueprimarykey①": [ @@ -129,7 +129,7 @@ "version_added": "79" } }, - "title": "IDBCursor.continuePrimaryKey()" + "title": "IDBCursor: continuePrimaryKey() method" } ], "ref-for-dom-idbcursor-delete①": [ @@ -174,7 +174,7 @@ "version_added": "79" } }, - "title": "IDBCursor.delete()" + "title": "IDBCursor: delete() method" } ], "ref-for-dom-idbcursor-direction①": [ @@ -219,7 +219,7 @@ "version_added": "79" } }, - "title": "IDBCursor.direction" + "title": "IDBCursor: direction property" } ], "ref-for-dom-idbcursor-key①": [ @@ -264,7 +264,7 @@ "version_added": "79" } }, - "title": "IDBCursor.key" + "title": "IDBCursor: key property" } ], "ref-for-dom-idbcursor-primarykey①": [ @@ -309,7 +309,7 @@ "version_added": "79" } }, - "title": "IDBCursor.primaryKey" + "title": "IDBCursor: primaryKey property" } ], "ref-for-dom-idbcursor-request①": [ @@ -350,7 +350,7 @@ "version_added": "79" } }, - "title": "IDBCursor.request" + "title": "IDBCursor: request property" } ], "ref-for-dom-idbcursor-source①": [ @@ -395,7 +395,7 @@ "version_added": "79" } }, - "title": "IDBCursor.source" + "title": "IDBCursor: source property" } ], "ref-for-dom-idbcursor-update①": [ @@ -440,7 +440,7 @@ "version_added": "79" } }, - "title": "IDBCursor.update()" + "title": "IDBCursor: update() method" } ], "cursor-interface": [ @@ -578,7 +578,7 @@ "version_added": "79" } }, - "title": "IDBCursorWithValue.value" + "title": "IDBCursorWithValue: value property" } ], "ref-for-idbcursorwithvalue②": [ @@ -702,7 +702,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.close()" + "title": "IDBDatabase: close() method" } ], "closing-connection": [ @@ -833,7 +833,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.createObjectStore()" + "title": "IDBDatabase: createObjectStore() method" } ], "ref-for-dom-idbdatabase-deleteobjectstore①": [ @@ -878,7 +878,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.deleteObjectStore()" + "title": "IDBDatabase: deleteObjectStore() method" } ], "ref-for-dom-idbdatabase-name①": [ @@ -923,7 +923,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.name" + "title": "IDBDatabase: name property" } ], "ref-for-dom-idbdatabase-objectstorenames①": [ @@ -968,7 +968,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.objectStoreNames" + "title": "IDBDatabase: objectStoreNames property" } ], "ref-for-dom-idbdatabase-transaction③": [ @@ -1013,7 +1013,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.transaction()" + "title": "IDBDatabase: transaction() method" } ], "ref-for-dom-idbdatabase-version①": [ @@ -1058,7 +1058,7 @@ "version_added": "79" } }, - "title": "IDBDatabase.version" + "title": "IDBDatabase: version property" } ], "eventdef-idbdatabase-versionchange": [ @@ -1272,7 +1272,7 @@ "version_added": "79" } }, - "title": "IDBFactory.cmp()" + "title": "IDBFactory: cmp() method" } ], "ref-for-dom-idbfactory-databases①": [ @@ -1288,7 +1288,7 @@ "summary": "The databases method of the IDBFactory interface returns a list representing all the available databases, including their names and versions.", "support": { "chrome": { - "version_added": "71" + "version_added": "72" }, "chrome_android": "mirror", "edge": "mirror", @@ -1313,7 +1313,7 @@ "version_added": "79" } }, - "title": "IDBFactory.databases()" + "title": "IDBFactory: databases() method" } ], "ref-for-dom-idbfactory-deletedatabase①": [ @@ -1358,7 +1358,7 @@ "version_added": "79" } }, - "title": "IDBFactory.deleteDatabase()" + "title": "IDBFactory: deleteDatabase() method" } ], "ref-for-dom-idbfactory-open②": [ @@ -1403,7 +1403,7 @@ "version_added": "79" } }, - "title": "IDBFactory.open()" + "title": "IDBFactory: open() method" } ], "factory-interface": [ @@ -1527,7 +1527,7 @@ "version_added": "79" } }, - "title": "IDBIndex.count()" + "title": "IDBIndex: count() method" } ], "ref-for-dom-idbindex-get①": [ @@ -1572,7 +1572,7 @@ "version_added": "79" } }, - "title": "IDBIndex.get()" + "title": "IDBIndex: get() method" } ], "ref-for-dom-idbindex-getall①": [ @@ -1613,7 +1613,7 @@ "version_added": "79" } }, - "title": "IDBIndex.getAll()" + "title": "IDBIndex: getAll() method" } ], "ref-for-dom-idbindex-getallkeys①": [ @@ -1623,9 +1623,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/IDBIndex.json", "name": "getAllKeys", "slug": "API/IDBIndex/getAllKeys", @@ -1638,13 +1635,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "44", - "flags": [ - { - "type": "preference", - "name": "dom.indexedDB.experimental" - } - ] + "version_added": "44" }, "firefox_android": "mirror", "ie": { @@ -1663,7 +1654,7 @@ "version_added": "79" } }, - "title": "IDBIndex.getAllKeys()" + "title": "IDBIndex: getAllKeys() method" } ], "ref-for-dom-idbindex-getkey①": [ @@ -1708,7 +1699,7 @@ "version_added": "79" } }, - "title": "IDBIndex.getKey()" + "title": "IDBIndex: getKey() method" } ], "dom-idbindex-keypath": [ @@ -1753,7 +1744,7 @@ "version_added": "79" } }, - "title": "IDBIndex.keyPath" + "title": "IDBIndex: keyPath property" } ], "dom-idbindex-multientry": [ @@ -1798,7 +1789,7 @@ "version_added": "79" } }, - "title": "IDBIndex.multiEntry" + "title": "IDBIndex: multiEntry property" } ], "ref-for-dom-idbindex-name①": [ @@ -1843,7 +1834,7 @@ "version_added": "79" } }, - "title": "IDBIndex.name" + "title": "IDBIndex: name property" } ], "ref-for-dom-idbindex-objectstore①": [ @@ -1888,7 +1879,7 @@ "version_added": "79" } }, - "title": "IDBIndex.objectStore" + "title": "IDBIndex: objectStore property" } ], "ref-for-dom-idbindex-opencursor②": [ @@ -1933,7 +1924,7 @@ "version_added": "79" } }, - "title": "IDBIndex.openCursor()" + "title": "IDBIndex: openCursor() method" } ], "ref-for-dom-idbindex-openkeycursor①": [ @@ -1978,7 +1969,7 @@ "version_added": "79" } }, - "title": "IDBIndex.openKeyCursor()" + "title": "IDBIndex: openKeyCursor() method" } ], "dom-idbindex-unique": [ @@ -2023,7 +2014,7 @@ "version_added": "79" } }, - "title": "IDBIndex.unique" + "title": "IDBIndex: unique property" } ], "index-interface": [ @@ -2113,10 +2104,10 @@ "webkit" ], "filename": "api/IDBKeyRange.json", - "name": "bound", - "slug": "API/IDBKeyRange/bound", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/bound", - "summary": "The bound() method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds. The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the bounds include the endpoint values). By default, the bounds are closed.", + "name": "bound_static", + "slug": "API/IDBKeyRange/bound_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/bound_static", + "summary": "The bound() static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds. The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the bounds include the endpoint values). By default, the bounds are closed.", "support": { "chrome": { "version_added": "23" @@ -2147,7 +2138,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.bound()" + "title": "IDBKeyRange: bound() static method" } ], "ref-for-dom-idbkeyrange-includes①": [ @@ -2188,7 +2179,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.includes()" + "title": "IDBKeyRange: includes() method" } ], "ref-for-dom-idbkeyrange-lower①": [ @@ -2233,7 +2224,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.lower" + "title": "IDBKeyRange: lower property" } ], "ref-for-dom-idbkeyrange-lowerbound①": [ @@ -2244,10 +2235,10 @@ "webkit" ], "filename": "api/IDBKeyRange.json", - "name": "lowerBound", - "slug": "API/IDBKeyRange/lowerBound", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/lowerBound", - "summary": "The lowerBound() method of the IDBKeyRange interface creates a new key range with only a lower bound. By default, it includes the lower endpoint value and is closed.", + "name": "lowerBound_static", + "slug": "API/IDBKeyRange/lowerBound_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/lowerBound_static", + "summary": "The lowerBound() static method of the IDBKeyRange interface creates a new key range with only a lower bound. By default, it includes the lower endpoint value and is closed.", "support": { "chrome": { "version_added": "23" @@ -2278,7 +2269,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.lowerBound()" + "title": "IDBKeyRange: lowerBound() static method" } ], "ref-for-dom-idbkeyrange-loweropen①": [ @@ -2323,7 +2314,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.lowerOpen" + "title": "IDBKeyRange: lowerOpen property" } ], "ref-for-dom-idbkeyrange-only①": [ @@ -2334,10 +2325,10 @@ "webkit" ], "filename": "api/IDBKeyRange.json", - "name": "only", - "slug": "API/IDBKeyRange/only", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/only", - "summary": "The only() method of the IDBKeyRange interface creates a new key range containing a single value.", + "name": "only_static", + "slug": "API/IDBKeyRange/only_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/only_static", + "summary": "The only() static method of the IDBKeyRange interface creates a new key range containing a single value.", "support": { "chrome": { "version_added": "23" @@ -2368,7 +2359,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.only()" + "title": "IDBKeyRange: only() static method" } ], "ref-for-dom-idbkeyrange-upper①": [ @@ -2413,7 +2404,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.upper" + "title": "IDBKeyRange: upper property" } ], "ref-for-dom-idbkeyrange-upperbound①": [ @@ -2424,10 +2415,10 @@ "webkit" ], "filename": "api/IDBKeyRange.json", - "name": "upperBound", - "slug": "API/IDBKeyRange/upperBound", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/upperBound", - "summary": "The upperBound() method of the IDBKeyRange interface creates a new upper-bound key range. By default, it includes the upper endpoint value and is closed.", + "name": "upperBound_static", + "slug": "API/IDBKeyRange/upperBound_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/upperBound_static", + "summary": "The upperBound() static method of the IDBKeyRange interface creates a new upper-bound key range. By default, it includes the upper endpoint value and is closed.", "support": { "chrome": { "version_added": "23" @@ -2458,7 +2449,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.upperBound()" + "title": "IDBKeyRange: upperBound() static method" } ], "ref-for-dom-idbkeyrange-upperopen①": [ @@ -2503,7 +2494,7 @@ "version_added": "79" } }, - "title": "IDBKeyRange.upperOpen" + "title": "IDBKeyRange: upperOpen property" } ], "keyrange": [ @@ -2632,7 +2623,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.add()" + "title": "IDBObjectStore: add() method" } ], "ref-for-dom-idbobjectstore-autoincrement①": [ @@ -2675,7 +2666,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.autoIncrement" + "title": "IDBObjectStore: autoIncrement property" } ], "ref-for-dom-idbobjectstore-clear③": [ @@ -2720,7 +2711,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.clear()" + "title": "IDBObjectStore: clear() method" } ], "ref-for-dom-idbobjectstore-count①": [ @@ -2765,7 +2756,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.count()" + "title": "IDBObjectStore: count() method" } ], "ref-for-dom-idbobjectstore-createindex①": [ @@ -2810,7 +2801,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.createIndex()" + "title": "IDBObjectStore: createIndex() method" } ], "ref-for-dom-idbobjectstore-delete①": [ @@ -2855,7 +2846,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.delete()" + "title": "IDBObjectStore: delete() method" } ], "ref-for-dom-idbobjectstore-deleteindex①": [ @@ -2900,7 +2891,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.deleteIndex()" + "title": "IDBObjectStore: deleteIndex() method" } ], "ref-for-dom-idbobjectstore-get①": [ @@ -2914,7 +2905,7 @@ "name": "get", "slug": "API/IDBObjectStore/get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/get", - "summary": "The get() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object store selected by the specified key. This is for retrieving specific records from an object store.", + "summary": "The get() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object selected by the specified key. This is for retrieving specific records from an object store.", "support": { "chrome": { "version_added": "23" @@ -2945,7 +2936,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.get()" + "title": "IDBObjectStore: get() method" } ], "ref-for-dom-idbobjectstore-getall①": [ @@ -2988,7 +2979,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.getAll()" + "title": "IDBObjectStore: getAll() method" } ], "ref-for-dom-idbobjectstore-getallkeys①": [ @@ -3031,7 +3022,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.getAllKeys()" + "title": "IDBObjectStore: getAllKeys() method" } ], "ref-for-dom-idbobjectstore-getkey①": [ @@ -3078,7 +3069,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.getKey()" + "title": "IDBObjectStore: getKey() method" } ], "dom-idbobjectstore-index": [ @@ -3123,7 +3114,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.index()" + "title": "IDBObjectStore: index() method" } ], "ref-for-dom-idbobjectstore-indexnames①": [ @@ -3168,7 +3159,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.indexNames" + "title": "IDBObjectStore: indexNames property" } ], "ref-for-dom-idbobjectstore-keypath①": [ @@ -3213,7 +3204,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.keyPath" + "title": "IDBObjectStore: keyPath property" } ], "ref-for-dom-idbobjectstore-name①": [ @@ -3258,7 +3249,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.name" + "title": "IDBObjectStore: name property" } ], "ref-for-dom-idbobjectstore-opencursor②": [ @@ -3303,7 +3294,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.openCursor()" + "title": "IDBObjectStore: openCursor() method" } ], "ref-for-dom-idbobjectstore-openkeycursor①": [ @@ -3313,9 +3304,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/IDBObjectStore.json", "name": "openKeyCursor", "slug": "API/IDBObjectStore/openKeyCursor", @@ -3328,17 +3316,9 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "44", - "flags": [ - { - "type": "preference", - "name": "dom.indexedDB.experimental" - } - ] - }, - "firefox_android": { - "version_added": "22" + "version_added": "44" }, + "firefox_android": "mirror", "ie": { "version_added": "10" }, @@ -3346,7 +3326,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "8" + "version_added": "10.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3355,7 +3335,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.openKeyCursor()" + "title": "IDBObjectStore: openKeyCursor() method" } ], "ref-for-dom-idbobjectstore-put①": [ @@ -3400,7 +3380,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.put()" + "title": "IDBObjectStore: put() method" } ], "ref-for-dom-idbobjectstore-transaction①": [ @@ -3445,7 +3425,7 @@ "version_added": "79" } }, - "title": "IDBObjectStore.transaction" + "title": "IDBObjectStore: transaction property" } ], "object-store-interface": [ @@ -3738,7 +3718,7 @@ "version_added": "79" } }, - "title": "IDBRequest.error" + "title": "IDBRequest: error property" } ], "eventdef-idbrequest-error": [ @@ -3871,7 +3851,7 @@ "version_added": "79" } }, - "title": "IDBRequest.readyState" + "title": "IDBRequest: readyState property" } ], "ref-for-dom-idbrequest-result①": [ @@ -3885,7 +3865,7 @@ "name": "result", "slug": "API/IDBRequest/result", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/result", - "summary": "The result read-only property of the IDBRequest interface returns the result of the request. If the request failed and the result is not available, an InvalidStateError exception is thrown.", + "summary": "The result read-only property of the IDBRequest interface returns the result of the request. If the request is not completed, the result is not available and an InvalidStateError exception is thrown.", "support": { "chrome": { "version_added": "23" @@ -3916,7 +3896,7 @@ "version_added": "79" } }, - "title": "IDBRequest.result" + "title": "IDBRequest: result property" } ], "ref-for-dom-idbrequest-source①": [ @@ -3930,7 +3910,7 @@ "name": "source", "slug": "API/IDBRequest/source", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/source", - "summary": "The source read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store. If no source exists (such as when calling indexedDB.open), it returns null.", + "summary": "The source read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store. If no source exists (such as when calling IDBFactory.open), it returns null.", "support": { "chrome": { "version_added": "23" @@ -3961,7 +3941,7 @@ "version_added": "79" } }, - "title": "IDBRequest.source" + "title": "IDBRequest: source property" } ], "eventdef-idbrequest-success": [ @@ -4051,7 +4031,7 @@ "version_added": "79" } }, - "title": "IDBRequest.transaction" + "title": "IDBRequest: transaction property" } ], "request-api": [ @@ -4184,7 +4164,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.abort()" + "title": "IDBTransaction: abort() method" } ], "eventdef-idbtransaction-abort": [ @@ -4270,7 +4250,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.commit()" + "title": "IDBTransaction: commit() method" } ], "eventdef-idbtransaction-complete": [ @@ -4360,7 +4340,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.db" + "title": "IDBTransaction: db property" } ], "dom-idbtransaction-durability": [ @@ -4402,7 +4382,7 @@ "version_added": "83" } }, - "title": "IDBTransaction.durability" + "title": "IDBTransaction: durability property" } ], "ref-for-dom-idbtransaction-error①": [ @@ -4447,7 +4427,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.error" + "title": "IDBTransaction: error property" } ], "ref-for-dom-idbtransaction-mode①": [ @@ -4492,7 +4472,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.mode" + "title": "IDBTransaction: mode property" } ], "ref-for-dom-idbtransaction-objectstore①": [ @@ -4537,7 +4517,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.objectStore()" + "title": "IDBTransaction: objectStore() method" } ], "ref-for-dom-idbtransaction-objectstorenames①": [ @@ -4580,7 +4560,7 @@ "version_added": "79" } }, - "title": "IDBTransaction.objectStoreNames" + "title": "IDBTransaction: objectStoreNames property" } ], "transaction": [ @@ -4700,7 +4680,7 @@ "version_added": "79" } }, - "title": "IDBVersionChangeEvent()" + "title": "IDBVersionChangeEvent: IDBVersionChangeEvent() constructor" } ], "dom-idbversionchangeevent-newversion": [ @@ -4745,7 +4725,7 @@ "version_added": "79" } }, - "title": "IDBVersionChangeEvent.newVersion" + "title": "IDBVersionChangeEvent: newVersion property" } ], "dom-idbversionchangeevent-oldversion": [ @@ -4790,7 +4770,7 @@ "version_added": "79" } }, - "title": "IDBVersionChangeEvent.oldVersion" + "title": "IDBVersionChangeEvent: oldVersion property" } ], "events": [ @@ -4916,7 +4896,7 @@ "version_added": "79" } }, - "title": "indexedDB" + "title": "indexedDB global property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/input-device-capabilities.json b/bikeshed/spec-data/readonly/mdn/input-device-capabilities.json index a543d99106..d9ab2b121b 100644 --- a/bikeshed/spec-data/readonly/mdn/input-device-capabilities.json +++ b/bikeshed/spec-data/readonly/mdn/input-device-capabilities.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "InputDeviceCapabilities()" + "title": "InputDeviceCapabilities: InputDeviceCapabilities() constructor" } ], "dom-inputdevicecapabilities-firestouchevents": [ @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "InputDeviceCapabilities.firesTouchEvents" + "title": "InputDeviceCapabilities: firesTouchEvents property" } ], "dom-inputdevicecapabilities": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "UIEvent.sourceCapabilities" + "title": "UIEvent: sourceCapabilities property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/input-events.json b/bikeshed/spec-data/readonly/mdn/input-events.json index d478add4ad..dbd9998a05 100644 --- a/bikeshed/spec-data/readonly/mdn/input-events.json +++ b/bikeshed/spec-data/readonly/mdn/input-events.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "InputEvent.data" + "title": "InputEvent: data property" } ], "dom-inputevent-datatransfer": [ @@ -78,7 +78,7 @@ "version_added": "79" } }, - "title": "InputEvent.dataTransfer" + "title": "InputEvent: dataTransfer property" } ], "dom-inputevent-gettargetranges": [ @@ -119,7 +119,7 @@ "version_added": "79" } }, - "title": "InputEvent.getTargetRanges()" + "title": "InputEvent: getTargetRanges() method" } ], "interface-InputEvent": [ diff --git a/bikeshed/spec-data/readonly/mdn/intersection-observer.json b/bikeshed/spec-data/readonly/mdn/intersection-observer.json index ebfdd52413..82ff148953 100644 --- a/bikeshed/spec-data/readonly/mdn/intersection-observer.json +++ b/bikeshed/spec-data/readonly/mdn/intersection-observer.json @@ -42,7 +42,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver()" + "title": "IntersectionObserver: IntersectionObserver() constructor" } ], "dom-intersectionobserver-disconnect": [ @@ -85,7 +85,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.disconnect()" + "title": "IntersectionObserver: disconnect() method" } ], "dom-intersectionobserver-observe": [ @@ -99,7 +99,7 @@ "name": "observe", "slug": "API/IntersectionObserver/observe", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/observe", - "summary": "To stop observing the element, call IntersectionObserver.unobserve().", + "summary": "The IntersectionObserver method observe() adds an element to the set of target elements being watched by the IntersectionObserver. One observer has one set of thresholds and one root, but can watch multiple target elements for visibility changes in keeping with those.", "support": { "chrome": { "version_added": "51" @@ -128,7 +128,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.observe()" + "title": "IntersectionObserver: observe() method" } ], "dom-intersectionobserver-root": [ @@ -171,7 +171,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.root" + "title": "IntersectionObserver: root property" } ], "dom-intersectionobserver-rootmargin": [ @@ -215,7 +215,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.rootMargin" + "title": "IntersectionObserver: rootMargin property" } ], "dom-intersectionobserver-takerecords": [ @@ -258,7 +258,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.takeRecords()" + "title": "IntersectionObserver: takeRecords() method" } ], "dom-intersectionobserver-thresholds": [ @@ -301,7 +301,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.thresholds" + "title": "IntersectionObserver: thresholds property" } ], "dom-intersectionobserver-unobserve": [ @@ -344,7 +344,7 @@ "version_added": "79" } }, - "title": "IntersectionObserver.unobserve()" + "title": "IntersectionObserver: unobserve() method" } ], "intersection-observer-interface": [ @@ -430,7 +430,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.boundingClientRect" + "title": "IntersectionObserverEntry: boundingClientRect property" } ], "dom-intersectionobserverentry-intersectionratio": [ @@ -473,7 +473,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.intersectionRatio" + "title": "IntersectionObserverEntry: intersectionRatio property" } ], "dom-intersectionobserverentry-intersectionrect": [ @@ -516,7 +516,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.intersectionRect" + "title": "IntersectionObserverEntry: intersectionRect property" } ], "dom-intersectionobserverentry-isintersecting": [ @@ -559,7 +559,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.isIntersecting" + "title": "IntersectionObserverEntry: isIntersecting property" } ], "dom-intersectionobserverentry-rootbounds": [ @@ -602,7 +602,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.rootBounds" + "title": "IntersectionObserverEntry: rootBounds property" } ], "dom-intersectionobserverentry-target": [ @@ -645,7 +645,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.target" + "title": "IntersectionObserverEntry: target property" } ], "dom-intersectionobserverentry-time": [ @@ -688,7 +688,7 @@ "version_added": "79" } }, - "title": "IntersectionObserverEntry.time" + "title": "IntersectionObserverEntry: time property" } ], "intersection-observer-entry": [ diff --git a/bikeshed/spec-data/readonly/mdn/intervention-reporting.json b/bikeshed/spec-data/readonly/mdn/intervention-reporting.json index 87243b8611..958483ef3e 100644 --- a/bikeshed/spec-data/readonly/mdn/intervention-reporting.json +++ b/bikeshed/spec-data/readonly/mdn/intervention-reporting.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "InterventionReportBody.columnNumber" + "title": "InterventionReportBody: columnNumber property" } ], "dom-interventionreportbody-id": [ @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "InterventionReportBody.id" + "title": "InterventionReportBody: id property" } ], "dom-interventionreportbody-linenumber": [ @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "InterventionReportBody.lineNumber" + "title": "InterventionReportBody: lineNumber property" } ], "dom-interventionreportbody-message": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "InterventionReportBody.message" + "title": "InterventionReportBody: message property" } ], "dom-interventionreportbody-sourcefile": [ @@ -191,7 +191,7 @@ "version_added": "79" } }, - "title": "InterventionReportBody.sourceFile" + "title": "InterventionReportBody: sourceFile property" } ], "dom-interventionreportbody-tojson": [ @@ -230,7 +230,7 @@ "version_added": "79" } }, - "title": "InterventionReportBody.toJSON()" + "title": "InterventionReportBody: toJSON() method" } ], "intervention-report": [ diff --git a/bikeshed/spec-data/readonly/mdn/keyboard-lock.json b/bikeshed/spec-data/readonly/mdn/keyboard-lock.json index 862b2614c1..c613ae2bee 100644 --- a/bikeshed/spec-data/readonly/mdn/keyboard-lock.json +++ b/bikeshed/spec-data/readonly/mdn/keyboard-lock.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "Keyboard.lock()" + "title": "Keyboard: lock() method" } ], "h-keyboard-unlock": [ @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "Keyboard.unlock()" + "title": "Keyboard: unlock() method" } ], "keyboard-interface": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "Navigator.keyboard" + "title": "Navigator: keyboard property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/keyboard-map.json b/bikeshed/spec-data/readonly/mdn/keyboard-map.json index 8584218c17..4b7de6869e 100644 --- a/bikeshed/spec-data/readonly/mdn/keyboard-map.json +++ b/bikeshed/spec-data/readonly/mdn/keyboard-map.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "Keyboard.getLayoutMap()" + "title": "Keyboard: getLayoutMap() method" } ], "keyboard-interface": [ @@ -86,7 +86,7 @@ "name": "KeyboardLayoutMap", "slug": "API/KeyboardLayoutMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/KeyboardLayoutMap", - "summary": "The KeyboardLayoutMap interface of the Keyboard API is a map-like object with functions for retrieving the string associated with specific physical keys.", + "summary": "The KeyboardLayoutMap interface of the Keyboard API is a read-only object with functions for retrieving the string associated with specific physical keys.", "support": { "chrome": { "version_added": "69" diff --git a/bikeshed/spec-data/readonly/mdn/largest-contentful-paint.json b/bikeshed/spec-data/readonly/mdn/largest-contentful-paint.json index 39750322a4..81fa335766 100644 --- a/bikeshed/spec-data/readonly/mdn/largest-contentful-paint.json +++ b/bikeshed/spec-data/readonly/mdn/largest-contentful-paint.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.element" + "title": "LargestContentfulPaint: element property" } ], "dom-largestcontentfulpaint-id": [ @@ -74,7 +74,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.id" + "title": "LargestContentfulPaint: id property" } ], "dom-largestcontentfulpaint-loadtime": [ @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.loadTime" + "title": "LargestContentfulPaint: loadTime property" } ], "dom-largestcontentfulpaint-rendertime": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.renderTime" + "title": "LargestContentfulPaint: renderTime property" } ], "dom-largestcontentfulpaint-size": [ @@ -191,7 +191,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.size" + "title": "LargestContentfulPaint: size property" } ], "dom-largestcontentfulpaint-tojson": [ @@ -203,7 +203,7 @@ "name": "toJSON", "slug": "API/LargestContentfulPaint/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint/toJSON", - "summary": "The toJSON() method of the LargestContentfulPaint interface is a serializer, and returns a JSON representation of the LargestContentfulPaint object.", + "summary": "The toJSON() method of the LargestContentfulPaint interface is a serializer; it returns a JSON representation of the LargestContentfulPaint object.", "support": { "chrome": { "version_added": "77" @@ -230,7 +230,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.toJSON()" + "title": "LargestContentfulPaint: toJSON() method" } ], "dom-largestcontentfulpaint-url": [ @@ -269,7 +269,7 @@ "version_added": "79" } }, - "title": "LargestContentfulPaint.url" + "title": "LargestContentfulPaint: url property" } ], "sec-largest-contentful-paint-interface": [ @@ -281,7 +281,7 @@ "name": "LargestContentfulPaint", "slug": "API/LargestContentfulPaint", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint", - "summary": "The LargestContentfulPaint interface of the Largest Contentful Paint API provides details about the largest image or text paint before user input on a web page. The timing of this paint is a good heuristic for when the main page content is available during load.", + "summary": "The LargestContentfulPaint interface provides timing information about the largest image or text paint before user input on a web page.", "support": { "chrome": { "version_added": "77" diff --git a/bikeshed/spec-data/readonly/mdn/layout-instability.json b/bikeshed/spec-data/readonly/mdn/layout-instability.json index 44fc9f9148..37430ee648 100644 --- a/bikeshed/spec-data/readonly/mdn/layout-instability.json +++ b/bikeshed/spec-data/readonly/mdn/layout-instability.json @@ -1,4 +1,160 @@ { + "dom-layoutshift-hadrecentinput": [ + { + "engines": [ + "blink" + ], + "filename": "api/LayoutShift.json", + "name": "hadRecentInput", + "slug": "API/LayoutShift/hadRecentInput", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/hadRecentInput", + "summary": "The hadRecentInput read-only property of the LayoutShift interface returns true if lastInputTime is less than 500 milliseconds in the past.", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "LayoutShift: hadRecentInput property" + } + ], + "dom-layoutshift-lastinputtime": [ + { + "engines": [ + "blink" + ], + "filename": "api/LayoutShift.json", + "name": "lastInputTime", + "slug": "API/LayoutShift/lastInputTime", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/lastInputTime", + "summary": "The lastInputTime read-only property of the LayoutShift interface returns the time of the most recent excluding input or 0 if no excluding input has occurred.", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "LayoutShift: lastInputTime property" + } + ], + "dom-layoutshift-sources": [ + { + "engines": [ + "blink" + ], + "filename": "api/LayoutShift.json", + "name": "sources", + "slug": "API/LayoutShift/sources", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/sources", + "summary": "The sources read-only property of the LayoutShift interface returns an array of LayoutShiftAttribution objects that indicate the DOM elements that moved during the layout shift.", + "support": { + "chrome": { + "version_added": "84" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "84" + } + }, + "title": "LayoutShift: sources property" + } + ], + "dom-layoutshift-value": [ + { + "engines": [ + "blink" + ], + "filename": "api/LayoutShift.json", + "name": "value", + "slug": "API/LayoutShift/value", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/value", + "summary": "The value read-only property of the LayoutShift interface returns the layout shift score calculated as the impact fraction (fraction of the viewport that was shifted) multiplied by the distance fraction (distance moved as a fraction of viewport).", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "LayoutShift: value property" + } + ], "sec-layout-shift": [ { "engines": [ @@ -8,7 +164,7 @@ "name": "LayoutShift", "slug": "API/LayoutShift", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift", - "summary": "The LayoutShift interface of the Layout Instability API provides insights into the stability of web pages based on movements of the elements on the page.", + "summary": "The LayoutShift interface of the Performance API provides insights into the layout stability of web pages based on movements of the elements on the page.", "support": { "chrome": { "version_added": "77" @@ -74,7 +230,7 @@ "version_added": "84" } }, - "title": "LayoutShiftAttribution.currentRect" + "title": "LayoutShiftAttribution: currentRect property" } ], "dom-layoutshiftattribution-node": [ @@ -86,7 +242,7 @@ "name": "node", "slug": "API/LayoutShiftAttribution/node", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution/node", - "summary": "The node read-only property of the LayoutShiftAttribution interface returns a node representing the object that has shifted.", + "summary": "The node read-only property of the LayoutShiftAttribution interface returns a Node representing the object that has shifted.", "support": { "chrome": { "version_added": "84" @@ -113,7 +269,7 @@ "version_added": "84" } }, - "title": "LayoutShiftAttribution.node" + "title": "LayoutShiftAttribution: node property" } ], "dom-layoutshiftattribution-previousrect": [ @@ -152,7 +308,7 @@ "version_added": "84" } }, - "title": "LayoutShiftAttribution.previousRect" + "title": "LayoutShiftAttribution: previousRect property" } ], "sec-layout-shift-attribution": [ @@ -191,7 +347,7 @@ "version_added": "84" } }, - "title": "LayoutShiftAttribution.toJSON()" + "title": "LayoutShiftAttribution: toJSON() method" }, { "engines": [ @@ -201,7 +357,7 @@ "name": "LayoutShiftAttribution", "slug": "API/LayoutShiftAttribution", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution", - "summary": "The LayoutShiftAttribution interface of the Layout Instability API provides debugging information about elements which have shifted.", + "summary": "The LayoutShiftAttribution interface provides debugging information about elements which have shifted.", "support": { "chrome": { "version_added": "84" diff --git a/bikeshed/spec-data/readonly/mdn/local-font-access.json b/bikeshed/spec-data/readonly/mdn/local-font-access.json new file mode 100644 index 0000000000..509ee24058 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/local-font-access.json @@ -0,0 +1,45 @@ +{ + "permissions-policy": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "local-fonts", + "slug": "HTTP/Headers/Permissions-Policy/local-fonts", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/local-fonts", + "summary": "The HTTP Permissions-Policy header local-fonts directive controls whether the current document is allowed to gather data on the user's locally-installed fonts via the Window.queryLocalFonts() method.", + "support": { + "chrome": { + "version_added": "103" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": false + }, + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "103" + } + }, + "title": "Permissions-Policy: local-fonts" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/longtasks.json b/bikeshed/spec-data/readonly/mdn/longtasks.json index a303d53fa3..4d97dc1c4b 100644 --- a/bikeshed/spec-data/readonly/mdn/longtasks.json +++ b/bikeshed/spec-data/readonly/mdn/longtasks.json @@ -8,7 +8,7 @@ "name": "attribution", "slug": "API/PerformanceLongTaskTiming/attribution", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming/attribution", - "summary": "The attribution readonly property of the PerformanceLongTaskTiming interface returns a sequence of TaskAttributionTiming instances.", + "summary": "The attribution readonly property of the PerformanceLongTaskTiming interface returns an array of TaskAttributionTiming objects.", "support": { "chrome": { "version_added": "58" @@ -35,7 +35,46 @@ "version_added": "79" } }, - "title": "PerformanceLongTaskTiming.attribution" + "title": "PerformanceLongTaskTiming: attribution property" + } + ], + "dom-performancelongtasktiming-tojson": [ + { + "engines": [ + "blink" + ], + "filename": "api/PerformanceLongTaskTiming.json", + "name": "toJSON", + "slug": "API/PerformanceLongTaskTiming/toJSON", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming/toJSON", + "summary": "The toJSON() method of the PerformanceLongTaskTiming interface is a serializer; it returns a JSON representation of the PerformanceLongTaskTiming object.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "PerformanceLongTaskTiming: toJSON() method" } ], "sec-PerformanceLongTaskTiming": [ @@ -47,7 +86,7 @@ "name": "PerformanceLongTaskTiming", "slug": "API/PerformanceLongTaskTiming", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming", - "summary": "The PerformanceLongTaskTiming interface of the Long Tasks API reports instances of long tasks.", + "summary": "The PerformanceLongTaskTiming interface provides information about tasks that occupy the UI thread for 50 milliseconds or more.", "support": { "chrome": { "version_added": "58" @@ -114,7 +153,7 @@ "version_added": "79" } }, - "title": "TaskAttributionTiming.containerId" + "title": "TaskAttributionTiming: containerId property" } ], "dom-taskattributiontiming-containername": [ @@ -153,7 +192,7 @@ "version_added": "79" } }, - "title": "TaskAttributionTiming.containerName" + "title": "TaskAttributionTiming: containerName property" } ], "dom-taskattributiontiming-containersrc": [ @@ -192,7 +231,7 @@ "version_added": "79" } }, - "title": "TaskAttributionTiming.containerSrc" + "title": "TaskAttributionTiming: containerSrc property" } ], "dom-taskattributiontiming-containertype": [ @@ -204,7 +243,46 @@ "name": "containerType", "slug": "API/TaskAttributionTiming/containerType", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming/containerType", - "summary": "The containerType readonly property of the TaskAttributionTiming interface returns the type of frame container, one of iframe, embed, or object.", + "summary": "The containerType readonly property of the TaskAttributionTiming interface returns the type of the container, one of iframe, embed, or object.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "TaskAttributionTiming: containerType property" + } + ], + "dom-taskattributiontiming-tojson": [ + { + "engines": [ + "blink" + ], + "filename": "api/TaskAttributionTiming.json", + "name": "toJSON", + "slug": "API/TaskAttributionTiming/toJSON", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming/toJSON", + "summary": "The toJSON() method of the TaskAttributionTiming interface is a serializer; it returns a JSON representation of the TaskAttributionTiming object.", "support": { "chrome": { "version_added": "58" @@ -231,7 +309,7 @@ "version_added": "79" } }, - "title": "TaskAttributionTiming.containerType" + "title": "TaskAttributionTiming: toJSON() method" } ], "sec-TaskAttributionTiming": [ @@ -243,7 +321,7 @@ "name": "TaskAttributionTiming", "slug": "API/TaskAttributionTiming", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming", - "summary": "The TaskAttributionTiming interface of the Long Tasks API returns information about the work involved in a long task and its associate frame context. The frame context, also called the container, is the iframe, embed or object that is being implicated, on the whole, for a long task.", + "summary": "The TaskAttributionTiming interface returns information about the work involved in a long task and its associate frame context. The frame context, also called the container, is the iframe, embed or object that is being implicated, on the whole, for a long task.", "support": { "chrome": { "version_added": "58" diff --git a/bikeshed/spec-data/readonly/mdn/magnetometer.json b/bikeshed/spec-data/readonly/mdn/magnetometer.json index c25ae947da..86519b0443 100644 --- a/bikeshed/spec-data/readonly/mdn/magnetometer.json +++ b/bikeshed/spec-data/readonly/mdn/magnetometer.json @@ -4,6 +4,9 @@ "engines": [ "blink" ], + "needsflag": [ + "blink" + ], "filename": "api/Magnetometer.json", "name": "Magnetometer", "slug": "API/Magnetometer/Magnetometer", @@ -11,7 +14,14 @@ "summary": "The Magnetometer() constructor creates a new Magnetometer object which returns information about the magnetic field as detected by a device's primary magnetometer sensor.", "support": { "chrome": { - "version_added": "56" + "version_added": "56", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -24,24 +34,25 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": false - }, - "webview_android": { - "version_added": false - }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] } }, - "title": "Magnetometer()" + "title": "Magnetometer: Magnetometer() constructor" } ], "magnetometer-x": [ @@ -49,14 +60,24 @@ "engines": [ "blink" ], + "needsflag": [ + "blink" + ], "filename": "api/Magnetometer.json", "name": "x", "slug": "API/Magnetometer/x", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Magnetometer/x", - "summary": "The x read-only property of the Magnetometer interface returns a double precision integer containing the magnetic field around the device's x axis.", + "summary": "The x read-only property of the Magnetometer interface returns a number specifying the magnetic field around the device's x-axis.", "support": { "chrome": { - "version_added": "56" + "version_added": "56", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -69,24 +90,25 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": false - }, - "webview_android": { - "version_added": false - }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] } }, - "title": "Magnetometer.x" + "title": "Magnetometer: x property" } ], "magnetometer-y": [ @@ -94,14 +116,24 @@ "engines": [ "blink" ], + "needsflag": [ + "blink" + ], "filename": "api/Magnetometer.json", "name": "y", "slug": "API/Magnetometer/y", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Magnetometer/y", - "summary": "The y read-only property of the Magnetometer interface returns a double precision integer containing the magnetic field around the device's y axis.", + "summary": "The y read-only property of the Magnetometer interface returns a number specifying the magnetic field around the device's y-axis.", "support": { "chrome": { - "version_added": "56" + "version_added": "56", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -114,24 +146,25 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": false - }, - "webview_android": { - "version_added": false - }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] } }, - "title": "Magnetometer.y" + "title": "Magnetometer: y property" } ], "magnetometer-z": [ @@ -139,14 +172,24 @@ "engines": [ "blink" ], + "needsflag": [ + "blink" + ], "filename": "api/Magnetometer.json", "name": "z", "slug": "API/Magnetometer/z", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Magnetometer/z", - "summary": "The z read-only property of the Magnetometer interface returns a double-precision integer containing the magnetic field around the device's z axis.", + "summary": "The z read-only property of the Magnetometer interface returns a number specifying the magnetic field around the device's z-axis.", "support": { "chrome": { - "version_added": "56" + "version_added": "56", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -159,24 +202,25 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": false - }, + "opera_android": "mirror", "safari": { "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": false - }, - "webview_android": { - "version_added": false - }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-generic-sensor-extra-classes", + "value_to_set": "Enabled" + } + ] } }, - "title": "Magnetometer.z" + "title": "Magnetometer: z property" } ], "magnetometer-interface": [ @@ -198,7 +242,7 @@ "flags": [ { "type": "preference", - "name": "#enable-experimental-web-platform-features", + "name": "#enable-generic-sensor-extra-classes", "value_to_set": "Enabled" } ] @@ -226,7 +270,7 @@ "flags": [ { "type": "preference", - "name": "#enable-experimental-web-platform-features", + "name": "#enable-generic-sensor-extra-classes", "value_to_set": "Enabled" } ] @@ -244,7 +288,7 @@ "name": "magnetometer", "slug": "HTTP/Headers/Feature-Policy/magnetometer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/magnetometer", - "summary": "The HTTP Feature-Policy header magnetometer directive controls whether the current document is allowed to gather information about the orientation of the device through the Magnetometer interface.", + "summary": "The HTTP Permissions-Policy header magnetometer directive controls whether the current document is allowed to gather information about the orientation of the device through the Magnetometer interface.", "support": { "chrome": { "version_added": "67" @@ -273,7 +317,7 @@ "version_added": "79" } }, - "title": "Feature-Policy: magnetometer" + "title": "Permissions-Policy: magnetometer" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/manifest-incubations.json b/bikeshed/spec-data/readonly/mdn/manifest-incubations.json index 26d91e7d15..fe6c7a0582 100644 --- a/bikeshed/spec-data/readonly/mdn/manifest-incubations.json +++ b/bikeshed/spec-data/readonly/mdn/manifest-incubations.json @@ -1,66 +1,4 @@ { - "dom-beforeinstallpromptevent-prompt": [ - { - "engines": [], - "partial": [ - "blink" - ], - "filename": "api/BeforeInstallPromptEvent.json", - "name": "prompt", - "slug": "API/BeforeInstallPromptEvent/prompt", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BeforeInstallPromptEvent/prompt", - "summary": "The prompt() method of the BeforeInstallPromptEvent interface allows a developer to show the install prompt at a time of their own choosing.", - "support": { - "chrome": [ - { - "version_added": "76", - "notes": "The object returned by the promise returns a property called <code>outcome</code> instead of <code>userChoice</code>.", - "partial_implementation": true - }, - { - "version_added": "44", - "version_removed": "76", - "partial_implementation": true, - "notes": "Resolved with an empty promise." - } - ], - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "5.0" - }, - "webview_android": "mirror", - "edge_blink": [ - { - "version_added": "79", - "notes": "The object returned by the promise returns a property called <code>outcome</code> instead of <code>userChoice</code>.", - "partial_implementation": true - }, - { - "version_added": false, - "version_removed": "76", - "partial_implementation": true, - "notes": "Resolved with an empty promise." - } - ] - }, - "title": "BeforeInstallPromptEvent.prompt()" - } - ], "dom-window-onappinstalled": [ { "engines": [ @@ -117,7 +55,7 @@ "name": "beforeinstallprompt_event", "slug": "API/Window/beforeinstallprompt_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeinstallprompt_event", - "summary": "The beforeinstallprompt event fires on devices when a user is about to be prompted to \"install\" a web application. It may be saved for later and used to prompt the user at a more suitable time.", + "summary": "The beforeinstallprompt event fires when the browser has detected that a website can be installed as a Progressive Web App.", "support": { "chrome": [ { @@ -216,6 +154,47 @@ "title": "display_override" } ], + "file_handlers-member": [ + { + "engines": [ + "blink" + ], + "filename": "html/manifest/file_handlers.json", + "name": "file_handlers", + "slug": "Manifest/file_handlers", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/Manifest/file_handlers", + "summary": "The file_handlers member specifies an array of objects representing the types of files an installed progressive web app (PWA) can handle.", + "support": { + "chrome": { + "version_added": "102" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "102" + } + }, + "title": "file_handlers" + } + ], "protocol_handlers-member": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/mathml.json b/bikeshed/spec-data/readonly/mdn/mathml.json index 768253056c..4a0cbbb665 100644 --- a/bikeshed/spec-data/readonly/mdn/mathml.json +++ b/bikeshed/spec-data/readonly/mdn/mathml.json @@ -2,6 +2,7 @@ "dom-mathmlelement": [ { "engines": [ + "blink", "gecko", "webkit" ], @@ -11,10 +12,21 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement", "summary": "The MathMLElement interface represents any MathML element.", "support": { - "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/6606'>bug 6606</a>." - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "80", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -33,10 +45,21 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/6606'>bug 6606</a>." - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "80", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "MathMLElement" } @@ -47,40 +70,46 @@ "blink", "gecko" ], - "needsflag": [ - "blink", - "gecko" - ], "filename": "css/properties/math-depth.json", "name": "math-depth", "slug": "CSS/math-depth", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/math-depth", "summary": "The math-depth property describes a notion of depth for each element of a mathematical formula, with respect to the top-level container of that formula. Concretely, this is used to determine the computed value of the font-size property when its specified value is math.", "support": { - "chrome": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2423843", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2423843", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": "83", - "impl_url": "https://bugzil.la/1667090", - "flags": [ - { - "type": "preference", - "name": "layout.css.math-depth.enabled", - "value_to_set": "true" - } - ], - "notes": "Implementation lacks support for <code>font-size: math</code> to be complete." - }, + "firefox": [ + { + "version_added": "117" + }, + { + "version_added": "83", + "impl_url": "https://bugzil.la/1667090", + "flags": [ + { + "type": "preference", + "name": "layout.css.math-depth.enabled", + "value_to_set": "true" + } + ], + "notes": "Implementation lacks support for <code>font-size: math</code> to be complete." + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -95,16 +124,21 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2423843", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2423843", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features" + } + ] + } + ] }, "title": "math-depth" } @@ -114,25 +148,27 @@ "engines": [ "blink" ], - "needsflag": [ - "blink" - ], "filename": "css/properties/math-shift.json", "name": "math-shift", "slug": "CSS/math-shift", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/math-shift", "summary": "The math-shift property indicates whether superscripts inside MathML formulas should be raised by a normal or compact shift.", "support": { - "chrome": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2421662", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2421662", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -151,16 +187,21 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2421662", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2421662", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features" + } + ] + } + ] }, "title": "math-shift" } @@ -172,37 +213,43 @@ "gecko", "webkit" ], - "needsflag": [ - "blink", - "gecko" - ], "filename": "css/properties/math-style.json", "name": "math-style", "slug": "CSS/math-style", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/math-style", "summary": "The math-style property indicates whether MathML equations should render with normal or compact height.", "support": { - "chrome": { - "version_added": "83", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "83", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", - "firefox": { - "version_added": "83", - "flags": [ - { - "type": "preference", - "name": "layout.css.math-style.enabled", - "value_to_set": "true" - } - ] - }, + "firefox": [ + { + "version_added": "117" + }, + { + "version_added": "83", + "flags": [ + { + "type": "preference", + "name": "layout.css.math-style.enabled", + "value_to_set": "true" + } + ] + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -216,15 +263,20 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "83", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "83", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features" + } + ] + } + ] }, "title": "math-style" } @@ -236,9 +288,6 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/math.json", "name": "math", "slug": "MathML/Element/math", @@ -246,6 +295,9 @@ "summary": "The <math> MathML element is the top-level MathML element, used to write a single mathematical formula. It can be placed in HTML content where flow content is permitted.", "support": { "chrome": [ + { + "version_added": "109" + }, { "version_added": "80", "impl_url": "https://crbug.com/6606", @@ -285,6 +337,9 @@ }, "oculus": "mirror", "opera": [ + { + "version_added": "95" + }, { "version_added": "67", "impl_url": "https://crbug.com/6606", @@ -303,12 +358,17 @@ "notes": "Only supported in XHTML documents." } ], - "opera_android": { - "version_added": "10.1", - "version_removed": "14", - "partial_implementation": true, - "notes": "Only supported in XHTML documents." - }, + "opera_android": [ + { + "version_added": "74" + }, + { + "version_added": "10.1", + "version_removed": "14", + "partial_implementation": true, + "notes": "Only supported in XHTML documents." + } + ], "safari": { "version_added": "5.1" }, @@ -316,6 +376,9 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": [ + { + "version_added": "109" + }, { "version_added": "80", "impl_url": "https://crbug.com/6606", @@ -346,26 +409,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/merror.json", "name": "merror", "slug": "MathML/Element/merror", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror", "summary": "The <merror> MathML element is used to display contents as error messages. The intent of this element is to provide a standard way for programs that generate MathML from other input to report syntax errors.", "support": { - "chrome": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1913250", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1913250", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -384,17 +449,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1913250", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1913250", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<merror>" } @@ -406,26 +476,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mfrac.json", "name": "mfrac", "slug": "MathML/Element/mfrac", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac", "summary": "The <mfrac> MathML element is used to display fractions. It can also be used to mark up fraction-like objects such as binomial coefficients and Legendre symbols.", "support": { - "chrome": { - "version_added": "83", - "impl_url": "https://crrev.com/c/2041665", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "83", + "impl_url": "https://crrev.com/c/2041665", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -444,48 +516,55 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "83", - "impl_url": "https://crrev.com/c/2041665", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "83", + "impl_url": "https://crrev.com/c/2041665", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mfrac>" } ], - "identifier-mi": [ + "dfn-mi": [ { "engines": [ "blink", "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mi.json", "name": "mi", "slug": "MathML/Element/mi", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi", "summary": "The <mi> MathML element indicates that the content should be rendered as an identifier such as function names, variables or symbolic constants. You can also have arbitrary text in it to mark up terms.", "support": { - "chrome": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -501,53 +580,58 @@ "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } - }, - "title": "<mi>" - } - ], - "prescripts-and-tensor-indices-mmultiscripts": [ - { - "engines": [ - "blink", + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] + }, + "title": "<mi>" + } + ], + "prescripts-and-tensor-indices-mmultiscripts": [ + { + "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mmultiscripts.json", "name": "mmultiscripts", "slug": "MathML/Element/mmultiscripts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts", "summary": "The <mmultiscripts> MathML element is used to attach an arbitrary number of subscripts and superscripts to an expression at once, generalizing the <msubsup> element. Scripts can be either prescripts (placed before the expression) or postscripts (placed after it).", "support": { - "chrome": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2264334", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2264334", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -566,17 +650,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2264334", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2264334", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mmultiscripts>" } @@ -588,26 +677,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mn.json", "name": "mn", "slug": "MathML/Element/mn", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn", "summary": "The <mn> MathML element represents a numeric literal which is normally a sequence of digits with a possible separator (a dot or a comma). However, it is also allowed to have arbitrary text in it which is actually a numeric quantity, for example \"eleven\".", "support": { - "chrome": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -623,22 +714,25 @@ "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mn>" } @@ -650,26 +744,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mo.json", "name": "mo", "slug": "MathML/Element/mo", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo", "summary": "The <mo> MathML element represents an operator in a broad sense. Besides operators in strict mathematical meaning, this element also includes \"operators\" like parentheses, separators like comma and semicolon, or \"absolute value\" bars.", "support": { - "chrome": { - "version_added": "95", - "impl_url": "https://crrev.com/c/3121110", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "95", + "impl_url": "https://crrev.com/c/3121110", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -688,17 +784,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "95", - "impl_url": "https://crrev.com/c/3121110", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "95", + "impl_url": "https://crrev.com/c/3121110", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mo>" } @@ -710,26 +811,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mover.json", "name": "mover", "slug": "MathML/Element/mover", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover", "summary": "The <mover> MathML element is used to attach an accent or a limit over an expression. Use the following syntax: <mover> base overscript </mover>", "support": { - "chrome": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2119538", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2119538", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -748,17 +851,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2119538", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2119538", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mover>" }, @@ -768,26 +876,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/munder.json", "name": "munder", "slug": "MathML/Element/munder", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder", "summary": "The <munder> MathML element is used to attach an accent or a limit under an expression. It uses the following syntax: <munder> base underscript </munder>", "support": { - "chrome": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2119538", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2119538", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -806,17 +916,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2119538", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2119538", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<munder>" }, @@ -826,26 +941,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/munderover.json", "name": "munderover", "slug": "MathML/Element/munderover", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover", "summary": "The <munderover> MathML element is used to attach accents or limits both under and over an expression.", "support": { - "chrome": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2119538", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2119538", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -864,17 +981,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2119538", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2119538", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<munderover>" } @@ -886,26 +1008,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mpadded.json", "name": "mpadded", "slug": "MathML/Element/mpadded", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded", "summary": "The <mpadded> MathML element is used to add extra padding and to set the general adjustment of position and size of enclosed contents.", "support": { - "chrome": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2288388", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2288388", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -924,17 +1048,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2288388", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2288388", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mpadded>" } @@ -946,26 +1075,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mphantom.json", "name": "mphantom", "slug": "MathML/Element/mphantom", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom", "summary": "The <mphantom> MathML element is rendered invisibly, but dimensions (such as height, width, and baseline position) are still kept.", "support": { - "chrome": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1913250", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1913250", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -981,22 +1112,25 @@ "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1913250", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1913250", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mphantom>" } @@ -1008,26 +1142,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mroot.json", "name": "mroot", "slug": "MathML/Element/mroot", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot", "summary": "The <mroot> MathML element is used to display roots with an explicit index. Two arguments are accepted, which leads to the syntax: <mroot> base index </mroot>.", "support": { - "chrome": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2190671", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2190671", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1043,22 +1179,25 @@ "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2190671", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2190671", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mroot>" }, @@ -1068,26 +1207,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/msqrt.json", "name": "msqrt", "slug": "MathML/Element/msqrt", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt", "summary": "The <msqrt> MathML element is used to display square roots (no index is displayed). The square root accepts only one argument, which leads to the following syntax: <msqrt> base </msqrt>.", "support": { - "chrome": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2190671", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2190671", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1103,22 +1244,25 @@ "safari": { "version_added": "5.1" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "86", - "impl_url": "https://crrev.com/c/2190671", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "86", + "impl_url": "https://crrev.com/c/2190671", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<msqrt>" } @@ -1130,26 +1274,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mrow.json", "name": "mrow", "slug": "MathML/Element/mrow", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow", "summary": "The <mrow> MathML element is used to group sub-expressions, which usually contain one or more operators with their respective operands (such as <mi> and <mn>). This element renders as a horizontal row containing its arguments.", "support": { - "chrome": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1913250", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1913250", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1165,22 +1311,25 @@ "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1913250", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1913250", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mrow>" } @@ -1192,26 +1341,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/ms.json", "name": "ms", "slug": "MathML/Element/ms", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms", "summary": "The <ms> MathML element represents a string literal meant to be interpreted by programming languages and computer algebra systems.", "support": { - "chrome": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1230,17 +1381,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<ms>" } @@ -1252,26 +1408,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mspace.json", "name": "mspace", "slug": "MathML/Element/mspace", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace", "summary": "The <mspace> MathML element is used to display a blank space, whose size is set by its attributes.", "support": { - "chrome": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1936251", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1936251", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1290,17 +1448,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "81", - "impl_url": "https://crrev.com/c/1936251", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "81", + "impl_url": "https://crrev.com/c/1936251", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mspace>" } @@ -1312,9 +1475,6 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mstyle.json", "name": "mstyle", "slug": "MathML/Element/mstyle", @@ -1322,6 +1482,9 @@ "summary": "The <mstyle> MathML element is used to change the style of its children.", "support": { "chrome": [ + { + "version_added": "109" + }, { "version_added": "88", "impl_url": "https://crrev.com/c/1908533", @@ -1377,6 +1540,9 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": [ + { + "version_added": "109" + }, { "version_added": "88", "impl_url": "https://crrev.com/c/1908533", @@ -1413,26 +1579,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/msub.json", "name": "msub", "slug": "MathML/Element/msub", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub", "summary": "The <msub> MathML element is used to attach a subscript to an expression.", "support": { - "chrome": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2128081", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2128081", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1451,17 +1619,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2128081", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2128081", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<msub>" }, @@ -1471,26 +1644,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/msubsup.json", "name": "msubsup", "slug": "MathML/Element/msubsup", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup", "summary": "The <msubsup> MathML element is used to attach both a subscript and a superscript, together, to an expression.", "support": { - "chrome": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2128081", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2128081", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1509,17 +1684,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2128081", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2128081", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<msubsup>" }, @@ -1529,26 +1709,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/msup.json", "name": "msup", "slug": "MathML/Element/msup", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup", "summary": "The <msup> MathML element is used to attach a superscript to an expression.", "support": { - "chrome": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2128081", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2128081", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1567,17 +1749,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "impl_url": "https://crrev.com/c/2128081", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "84", + "impl_url": "https://crrev.com/c/2128081", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<msup>" } @@ -1589,26 +1776,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mtable.json", "name": "mtable", "slug": "MathML/Element/mtable", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable", "summary": "The <mtable> MathML element allows you to create tables or matrices. Its children are <mtr> elements (representing rows), each of them having <mtd> elements as its children (representing cells). These elements are similar to <table>, <tr> and <td> elements of HTML.", "support": { - "chrome": { - "version_added": "104", - "impl_url": "https://crrev.com/c/3657309", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "104", + "impl_url": "https://crrev.com/c/3657309", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1624,22 +1813,25 @@ "safari": { "version_added": "5.1" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "104", - "impl_url": "https://crrev.com/c/3657309", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "104", + "impl_url": "https://crrev.com/c/3657309", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mtable>" } @@ -1651,26 +1843,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mtd.json", "name": "mtd", "slug": "MathML/Element/mtd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd", "summary": "The <mtd> MathML element represents a cell in a table or a matrix. It may only appear in a <mtr> element. This element is similar to the <td> element of HTML.", "support": { - "chrome": { - "version_added": "104", - "impl_url": "https://crrev.com/c/3657309", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "104", + "impl_url": "https://crrev.com/c/3657309", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1686,22 +1880,25 @@ "safari": { "version_added": "5.1" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "104", - "impl_url": "https://crrev.com/c/3657309", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "104", + "impl_url": "https://crrev.com/c/3657309", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mtd>" } @@ -1713,26 +1910,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mtext.json", "name": "mtext", "slug": "MathML/Element/mtext", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext", "summary": "The <mtext> MathML element is used to render arbitrary text with no notational meaning, such as comments or annotations.", "support": { - "chrome": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1748,22 +1947,25 @@ "safari": { "version_added": "6" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "87", - "impl_url": "https://crrev.com/c/2391150", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "87", + "impl_url": "https://crrev.com/c/2391150", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mtext>" } @@ -1775,26 +1977,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/mtr.json", "name": "mtr", "slug": "MathML/Element/mtr", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr", "summary": "The <mtr> MathML element represents a row in a table or a matrix. It may only appear in a <mtable> element and its children are <mtd> elements representing cells. This element is similar to the <tr> element of HTML.", "support": { - "chrome": { - "version_added": "104", - "impl_url": "https://crrev.com/c/3657309", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "104", + "impl_url": "https://crrev.com/c/3657309", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1810,22 +2014,25 @@ "safari": { "version_added": "5.1" }, - "safari_ios": { - "version_added": false - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "104", - "impl_url": "https://crrev.com/c/3657309", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "104", + "impl_url": "https://crrev.com/c/3657309", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<mtr>" } @@ -1837,26 +2044,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/elements/semantics.json", "name": "semantics", "slug": "MathML/Element/semantics", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics", "summary": "The <semantics> MathML element associates annotations with a MathML expression, for example its text source as a lightweight markup language or mathematical meaning expressed in a special XML dialect. Typically, its structure is:", "support": { - "chrome": { - "version_added": "88", - "impl_url": "https://crrev.com/c/2467903", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "88", + "impl_url": "https://crrev.com/c/2467903", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1875,17 +2084,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "88", - "impl_url": "https://crrev.com/c/2467903", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "88", + "impl_url": "https://crrev.com/c/2467903", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "<semantics>" } @@ -1897,26 +2111,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/global_attributes.json", "name": "dir", "slug": "MathML/Global_attributes/dir", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes/dir", "summary": "The dir global attribute is an enumerated attribute that indicates the directionality of the MathML element.", "support": { - "chrome": { - "version_added": "80", - "impl_url": "https://crrev.com/c/1908533", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "80", + "impl_url": "https://crrev.com/c/1908533", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -1940,17 +2156,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "80", - "impl_url": "https://crrev.com/c/1908533", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "80", + "impl_url": "https://crrev.com/c/1908533", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "dir" } @@ -1962,26 +2183,28 @@ "gecko", "webkit" ], - "needsflag": [ - "blink" - ], "filename": "mathml/global_attributes.json", "name": "displaystyle", "slug": "MathML/Global_attributes/displaystyle", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes/displaystyle", "summary": "The displaystyle global attribute is a boolean setting the math-style of a MathML element.", "support": { - "chrome": { - "version_added": "83", - "impl_url": "https://crrev.com/c/2105317", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "83", + "impl_url": "https://crrev.com/c/2105317", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -2006,17 +2229,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "83", - "impl_url": "https://crrev.com/c/2105317", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "83", + "impl_url": "https://crrev.com/c/2105317", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "displaystyle" } @@ -2034,21 +2262,28 @@ "name": "mathvariant", "slug": "MathML/Global_attributes/mathvariant", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes/mathvariant", - "summary": "The mathvariant global attribute attribute sets a logical class for textual elements, which is visually distinguished by using special Mathematical Alphanumeric Symbols. With the exception of mi elements with a single character, which are by convention italic, no special classes are used by default.", + "summary": "The mathvariant global attribute sets a logical class for textual elements, which is visually distinguished by using special Mathematical Alphanumeric Symbols. Except for mi elements with a single character, which are by convention italic, no special classes are used by default.", "support": { - "chrome": { - "version_added": "84", - "partial_implementation": true, - "notes": "The only value supported is 'normal'.", - "impl_url": "https://crrev.com/c/2161013", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109", + "partial_implementation": true, + "notes": "The only value supported is 'normal'." + }, + { + "version_added": "84", + "partial_implementation": true, + "notes": "The only value supported is 'normal'.", + "impl_url": "https://crrev.com/c/2161013", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -2080,19 +2315,26 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "84", - "partial_implementation": true, - "notes": "The only value supported is 'normal'.", - "impl_url": "https://crrev.com/c/2161013", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109", + "partial_implementation": true, + "notes": "The only value supported is 'normal'." + }, + { + "version_added": "84", + "partial_implementation": true, + "notes": "The only value supported is 'normal'.", + "impl_url": "https://crrev.com/c/2161013", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "mathvariant" } @@ -2103,26 +2345,28 @@ "blink", "gecko" ], - "needsflag": [ - "blink" - ], "filename": "mathml/global_attributes.json", "name": "scriptlevel", "slug": "MathML/Global_attributes/scriptlevel", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes/scriptlevel", "summary": "The scriptlevel global attribute sets the math-depth of a MathML element. It allows overriding rules from the user agent stylesheet that define automatic calculation of font-size within MathML formulas.", "support": { - "chrome": { - "version_added": "88", - "impl_url": "https://crrev.com/c/2474780", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - }, + "chrome": [ + { + "version_added": "109" + }, + { + "version_added": "88", + "impl_url": "https://crrev.com/c/2474780", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": "mirror", "firefox": { @@ -2148,17 +2392,22 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "88", - "impl_url": "https://crrev.com/c/2474780", - "flags": [ - { - "type": "preference", - "name": "#enable-experimental-web-platform-features", - "value_to_set": "Enabled" - } - ] - } + "edge_blink": [ + { + "version_added": "109" + }, + { + "version_added": "88", + "impl_url": "https://crrev.com/c/2474780", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] }, "title": "scriptlevel" } diff --git a/bikeshed/spec-data/readonly/mdn/media-capabilities.json b/bikeshed/spec-data/readonly/mdn/media-capabilities.json index be7a5ce1c6..bcd2e53c42 100644 --- a/bikeshed/spec-data/readonly/mdn/media-capabilities.json +++ b/bikeshed/spec-data/readonly/mdn/media-capabilities.json @@ -23,7 +23,10 @@ "edge": "mirror", "firefox": { "version_added": "63", - "notes": "Before Firefox 101, <code>decodingInfo()</code> ignored <code>codecs</code> parameter options for <code>av01</code> codecs (treating them as <code>av1</code>)." + "notes": [ + "The <code>webrtc</code> value of the <code>type</code> option is named <code>transmission</code>.", + "Before Firefox 101, <code>decodingInfo()</code> ignored <code>codecs</code> parameter options for <code>av01</code> codecs (treating them as <code>av1</code>)." + ] }, "firefox_android": "mirror", "ie": { @@ -52,7 +55,7 @@ ] } }, - "title": "MediaCapabilities.decodingInfo()" + "title": "MediaCapabilities: decodingInfo() method" } ], "ref-for-dom-mediacapabilities-encodinginfo": [ @@ -74,7 +77,8 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "63" + "version_added": "63", + "notes": "The <code>webrtc</code> value of the <code>type</code> option is named <code>transmission</code>." }, "firefox_android": "mirror", "ie": { @@ -93,7 +97,7 @@ "version_added": "101" } }, - "title": "MediaCapabilities.encodingInfo()" + "title": "MediaCapabilities: encodingInfo() method" } ], "media-capabilities-interface": [ @@ -181,7 +185,46 @@ "version_added": "79" } }, - "title": "Navigator.mediaCapabilities" + "title": "Navigator: mediaCapabilities property" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/WorkerNavigator.json", + "name": "mediaCapabilities", + "slug": "API/WorkerNavigator/mediaCapabilities", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/mediaCapabilities", + "summary": "The read-only WorkerNavigator.mediaCapabilities property returns a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities as defined by the Media Capabilities API.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "63" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "WorkerNavigator: mediaCapabilities property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/media-playback-quality.json b/bikeshed/spec-data/readonly/mdn/media-playback-quality.json index 99d39fef21..64bee5361d 100644 --- a/bikeshed/spec-data/readonly/mdn/media-playback-quality.json +++ b/bikeshed/spec-data/readonly/mdn/media-playback-quality.json @@ -40,7 +40,7 @@ "version_added": "80" } }, - "title": "HTMLVideoElement.getVideoPlaybackQuality()" + "title": "HTMLVideoElement: getVideoPlaybackQuality() method" } ], "dom-videoplaybackquality-creationtime": [ @@ -88,7 +88,7 @@ "version_added": "79" } }, - "title": "VideoPlaybackQuality.creationTime" + "title": "VideoPlaybackQuality: creationTime property" } ], "dom-videoplaybackquality-droppedvideoframes": [ @@ -136,7 +136,7 @@ "version_added": "79" } }, - "title": "VideoPlaybackQuality.droppedVideoFrames" + "title": "VideoPlaybackQuality: droppedVideoFrames property" } ], "dom-videoplaybackquality-totalvideoframes": [ @@ -184,7 +184,7 @@ "version_added": "79" } }, - "title": "VideoPlaybackQuality.totalVideoFrames" + "title": "VideoPlaybackQuality: totalVideoFrames property" } ], "videoplaybackquality-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/media-source.json b/bikeshed/spec-data/readonly/mdn/media-source.json index 1dd6c215a4..0db670e88c 100644 --- a/bikeshed/spec-data/readonly/mdn/media-source.json +++ b/bikeshed/spec-data/readonly/mdn/media-source.json @@ -62,7 +62,7 @@ ] } }, - "title": "AudioTrack.sourceBuffer" + "title": "AudioTrack: sourceBuffer property" } ], "htmlmediaelement-extensions": [ @@ -79,7 +79,7 @@ "summary": "The buffered read-only property of HTMLMediaElement objects returns a new static normalized TimeRanges object that represents the ranges of the media resource, if any, that the user agent has buffered at the moment the buffered property is accessed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.buffered" + "title": "HTMLMediaElement: buffered property" }, { "engines": [ @@ -128,7 +128,7 @@ "summary": "The seekable read-only property of HTMLMediaElement objects returns a new static normalized TimeRanges object that represents the ranges of the media resource, if any, that the user agent is able to seek to at the time seekable property is accessed.", "support": { "chrome": { - "version_added": "1" + "version_added": "3" }, "chrome_android": "mirror", "edge": { @@ -162,7 +162,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.seekable" + "title": "HTMLMediaElement: seekable property" } ], "dom-mediasource-constructor": [ @@ -235,7 +235,7 @@ } ] }, - "title": "MediaSource()" + "title": "MediaSource: MediaSource() constructor" } ], "dom-mediasource-activesourcebuffers": [ @@ -290,7 +290,7 @@ "version_added": "79" } }, - "title": "MediaSource.activeSourceBuffers" + "title": "MediaSource: activeSourceBuffers property" } ], "dom-mediasource-addsourcebuffer": [ @@ -345,7 +345,46 @@ "version_added": "79" } }, - "title": "MediaSource.addSourceBuffer()" + "title": "MediaSource: addSourceBuffer() method" + } + ], + "dom-mediasource-canconstructindedicatedworker": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaSource.json", + "name": "canConstructInDedicatedWorker_static", + "slug": "API/MediaSource/canConstructInDedicatedWorker_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaSource/canConstructInDedicatedWorker_static", + "summary": "The canConstructInDedicatedWorker static property of the MediaSource interface returns true if MediaSource worker support is implemented, providing a low-latency feature detection mechanism.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "MediaSource: canConstructInDedicatedWorker static property" } ], "dom-mediasource-clearliveseekablerange": [ @@ -395,7 +434,7 @@ "version_added": "79" } }, - "title": "MediaSource.clearLiveSeekableRange()" + "title": "MediaSource: clearLiveSeekableRange() method" } ], "dom-mediasource-duration": [ @@ -450,7 +489,7 @@ "version_added": "79" } }, - "title": "MediaSource.duration" + "title": "MediaSource: duration property" } ], "dom-mediasource-endofstream": [ @@ -505,7 +544,46 @@ "version_added": "79" } }, - "title": "MediaSource.endOfStream()" + "title": "MediaSource: endOfStream() method" + } + ], + "dom-mediasource-handle": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaSource.json", + "name": "handle", + "slug": "API/MediaSource/handle", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaSource/handle", + "summary": "The handle read-only property of the MediaSource interface returns a MediaSourceHandle object, a proxy for the MediaSource that can be transferred from a dedicated worker back to the main thread and attached to a media element via its HTMLMediaElement.srcObject property.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "MediaSource: handle property" } ], "dom-mediasource-istypesupported": [ @@ -519,9 +597,9 @@ "webkit" ], "filename": "api/MediaSource.json", - "name": "isTypeSupported", - "slug": "API/MediaSource/isTypeSupported", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaSource/isTypeSupported", + "name": "isTypeSupported_static", + "slug": "API/MediaSource/isTypeSupported_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaSource/isTypeSupported_static", "summary": "The MediaSource.isTypeSupported() static method returns a boolean value which is true if the given MIME type and (optional) codec are likely to be supported by the current user agent.", "support": { "chrome": { @@ -574,7 +652,7 @@ ] } }, - "title": "MediaSource.isTypeSupported()" + "title": "MediaSource: isTypeSupported() static method" } ], "dom-mediasource-readystate": [ @@ -631,7 +709,7 @@ "version_added": "79" } }, - "title": "MediaSource.readyState" + "title": "MediaSource: readyState property" } ], "dom-mediasource-removesourcebuffer": [ @@ -648,7 +726,7 @@ "name": "removeSourceBuffer", "slug": "API/MediaSource/removeSourceBuffer", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaSource/removeSourceBuffer", - "summary": "The removeSourceBuffer() method of the MediaSource interface removes the given SourceBuffer from the SourceBuffers list associated with this MediaSource object.", + "summary": "The removeSourceBuffer() method of the MediaSource interface removes the given SourceBuffer from the SourceBufferList associated with this MediaSource object.", "support": { "chrome": { "version_added": "23" @@ -686,7 +764,7 @@ "version_added": "79" } }, - "title": "MediaSource.removeSourceBuffer()" + "title": "MediaSource: removeSourceBuffer() method" } ], "dom-mediasource-setliveseekablerange": [ @@ -736,7 +814,7 @@ "version_added": "79" } }, - "title": "MediaSource.setLiveSeekableRange()" + "title": "MediaSource: setLiveSeekableRange() method" } ], "dom-mediasource-sourcebuffers": [ @@ -791,7 +869,7 @@ "version_added": "79" } }, - "title": "MediaSource.sourceBuffers" + "title": "MediaSource: sourceBuffers property" } ], "mediasource": [ @@ -860,6 +938,45 @@ "title": "MediaSource" } ], + "mediasourcehandle": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaSourceHandle.json", + "name": "MediaSourceHandle", + "slug": "API/MediaSourceHandle", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaSourceHandle", + "summary": "The MediaSourceHandle interface of the Media Source Extensions API is a proxy for a MediaSource that can be transferred from a dedicated worker back to the main thread and attached to a media element via its HTMLMediaElement.srcObject property. MediaSource objects are not transferable because they are event targets, hence the need for MediaSourceHandles.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "MediaSourceHandle" + } + ], "dom-sourcebuffer-abort": [ { "engines": [ @@ -912,7 +1029,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.abort()" + "title": "SourceBuffer: abort() method" } ], "dom-sourcebuffer-appendbuffer": [ @@ -969,7 +1086,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.appendBuffer()" + "title": "SourceBuffer: appendBuffer() method" } ], "dom-sourcebuffer-appendwindowend": [ @@ -1026,7 +1143,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.appendWindowEnd" + "title": "SourceBuffer: appendWindowEnd property" } ], "dom-sourcebuffer-appendwindowstart": [ @@ -1083,7 +1200,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.appendWindowStart" + "title": "SourceBuffer: appendWindowStart property" } ], "dom-sourcebuffer-audiotracks": [ @@ -1105,12 +1222,12 @@ "summary": "The audioTracks read-only property of the SourceBuffer interface returns a list of the audio tracks currently contained inside the SourceBuffer.", "support": { "chrome": { - "version_added": "51", + "version_added": "70", "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] }, @@ -1144,13 +1261,13 @@ "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] } }, - "title": "SourceBuffer.audioTracks" + "title": "SourceBuffer: audioTracks property" } ], "dom-sourcebuffer-buffered": [ @@ -1207,7 +1324,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.buffered" + "title": "SourceBuffer: buffered property" } ], "dom-sourcebuffer-changetype": [ @@ -1255,7 +1372,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.changeType()" + "title": "SourceBuffer: changeType() method" } ], "dom-sourcebuffer-mode": [ @@ -1312,7 +1429,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.mode" + "title": "SourceBuffer: mode property" } ], "dom-sourcebuffer-remove": [ @@ -1369,7 +1486,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.remove()" + "title": "SourceBuffer: remove() method" } ], "dom-sourcebuffer-texttracks": [ @@ -1390,9 +1507,7 @@ "version_added": false }, "chrome_android": "mirror", - "edge": { - "version_added": "18" - }, + "edge": "mirror", "firefox": { "version_added": false }, @@ -1417,7 +1532,7 @@ "version_added": false } }, - "title": "SourceBuffer.textTracks" + "title": "SourceBuffer: textTracks property" } ], "dom-sourcebuffer-timestampoffset": [ @@ -1474,7 +1589,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.timestampOffset" + "title": "SourceBuffer: timestampOffset property" } ], "dom-sourcebuffer-updating": [ @@ -1491,7 +1606,7 @@ "name": "updating", "slug": "API/SourceBuffer/updating", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SourceBuffer/updating", - "summary": "The updating read-only property of the SourceBuffer interface indicates whether the SourceBuffer is currently being updated — i.e. whether an SourceBuffer.appendBuffer(), SourceBuffer.appendStream(), or SourceBuffer.remove() operation is currently in progress.", + "summary": "The updating read-only property of the SourceBuffer interface indicates whether the SourceBuffer is currently being updated — i.e. whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.", "support": { "chrome": { "version_added": "23" @@ -1531,7 +1646,7 @@ "version_added": "79" } }, - "title": "SourceBuffer.updating" + "title": "SourceBuffer: updating property" } ], "dom-sourcebuffer-videotracks": [ @@ -1553,12 +1668,12 @@ "summary": "The videoTracks read-only property of the SourceBuffer interface returns a list of the video tracks currently contained inside the SourceBuffer.", "support": { "chrome": { - "version_added": "51", + "version_added": "70", "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] }, @@ -1592,13 +1707,13 @@ "flags": [ { "type": "preference", - "name": "enable-experimental-web-platform-features", - "value_to_set": "enabled" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] } }, - "title": "SourceBuffer.videoTracks" + "title": "SourceBuffer: videoTracks property" } ], "sourcebuffer": [ @@ -1731,7 +1846,7 @@ "version_added": "79" } }, - "title": "SourceBufferList.length" + "title": "SourceBufferList: length property" } ], "sourcebufferlist": [ @@ -1877,7 +1992,7 @@ ] } }, - "title": "VideoTrack.sourceBuffer" + "title": "VideoTrack: sourceBuffer property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/mediacapture-fromelement.json b/bikeshed/spec-data/readonly/mdn/mediacapture-fromelement.json index bd48708518..914f0b2aad 100644 --- a/bikeshed/spec-data/readonly/mdn/mediacapture-fromelement.json +++ b/bikeshed/spec-data/readonly/mdn/mediacapture-fromelement.json @@ -6,9 +6,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/CanvasCaptureMediaStreamTrack.json", "name": "canvas", "slug": "API/CanvasCaptureMediaStreamTrack/canvas", @@ -21,14 +18,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "41", - "flags": [ - { - "type": "preference", - "name": "canvas.capturestream.enabled", - "value_to_set": "true" - } - ] + "version_added": "43" }, "firefox_android": "mirror", "ie": { @@ -47,7 +37,7 @@ "version_added": "79" } }, - "title": "CanvasCaptureMediaStreamTrack.canvas" + "title": "CanvasCaptureMediaStreamTrack: canvas property" } ], "dom-canvascapturemediastreamtrack-requestframe": [ @@ -57,9 +47,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/CanvasCaptureMediaStreamTrack.json", "name": "requestFrame", "slug": "API/CanvasCaptureMediaStreamTrack/requestFrame", @@ -72,14 +59,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "41", - "flags": [ - { - "type": "preference", - "name": "canvas.capturestream.enabled", - "value_to_set": "true" - } - ] + "version_added": "43" }, "firefox_android": "mirror", "ie": { @@ -98,7 +78,7 @@ "version_added": "79" } }, - "title": "CanvasCaptureMediaStreamTrack.requestFrame()" + "title": "CanvasCaptureMediaStreamTrack: requestFrame() method" } ], "the-canvascapturemediastreamtrack": [ @@ -108,9 +88,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/CanvasCaptureMediaStreamTrack.json", "name": "CanvasCaptureMediaStreamTrack", "slug": "API/CanvasCaptureMediaStreamTrack", @@ -123,14 +100,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "41", - "flags": [ - { - "type": "preference", - "name": "canvas.capturestream.enabled", - "value_to_set": "true" - } - ] + "version_added": "43" }, "firefox_android": "mirror", "ie": { @@ -194,7 +164,7 @@ "version_added": "79" } }, - "title": "HTMLCanvasElement.captureStream()" + "title": "HTMLCanvasElement: captureStream() method" } ], "dom-htmlmediaelement-capturestream": [ @@ -209,7 +179,7 @@ "name": "captureStream", "slug": "API/HTMLMediaElement/captureStream", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/captureStream", - "summary": "The captureStream() property of the HTMLMediaElement interface returns a MediaStream object which is streaming a real-time capture of the content being rendered in the media element.", + "summary": "The captureStream() method of the HTMLMediaElement interface returns a MediaStream object which is streaming a real-time capture of the content being rendered in the media element.", "support": { "chrome": { "version_added": "62" @@ -237,7 +207,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.captureStream()" + "title": "HTMLMediaElement: captureStream() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/mediacapture-screen-share.json b/bikeshed/spec-data/readonly/mdn/mediacapture-screen-share.json index 1fae35159e..2cfa8ddc18 100644 --- a/bikeshed/spec-data/readonly/mdn/mediacapture-screen-share.json +++ b/bikeshed/spec-data/readonly/mdn/mediacapture-screen-share.json @@ -1,4 +1,127 @@ { + "dom-capturecontroller-constructor": [ + { + "engines": [ + "blink" + ], + "filename": "api/CaptureController.json", + "name": "CaptureController", + "slug": "API/CaptureController/CaptureController", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CaptureController/CaptureController", + "summary": "The CaptureController constructor creates a new CaptureController object instance.", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "CaptureController: CaptureController() constructor" + } + ], + "dom-capturecontroller-setfocusbehavior": [ + { + "engines": [ + "blink" + ], + "filename": "api/CaptureController.json", + "name": "setFocusBehavior", + "slug": "API/CaptureController/setFocusBehavior", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CaptureController/setFocusBehavior", + "summary": "The CaptureController interface's setFocusBehavior() method controls whether the captured tab or window will be focused when an associated MediaDevices.getDisplayMedia() Promise fulfills, or whether the focus will remain with the tab containing the capturing app.", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "CaptureController: setFocusBehavior() method" + } + ], + "dom-capturecontroller": [ + { + "engines": [ + "blink" + ], + "filename": "api/CaptureController.json", + "name": "CaptureController", + "slug": "API/CaptureController", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CaptureController", + "summary": "The CaptureController interface provides methods that can be used to further manipulate a capture session separate from its initiation via MediaDevices.getDisplayMedia().", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "CaptureController" + } + ], "dom-mediadevices-getdisplaymedia": [ { "engines": [ @@ -17,7 +140,7 @@ }, "chrome_android": { "version_added": false, - "notes": "See <a href='https://crbug.com/487935'>bug 487935</a>." + "notes": "From Chrome Android 72 to 88, this method was exposed, but always failed with <code>NotAllowedError</code>. See <a href='https://crbug.com/487935'>bug 487935</a>." }, "edge": { "version_added": false @@ -34,7 +157,7 @@ ], "firefox_android": { "version_added": false, - "notes": "API is available, but will always fail with <code>NotAllowedError</code>." + "notes": "From Firefox Android 66 to 79, this method was exposed, but always failed with <code>NotAllowedError</code>." }, "ie": { "version_added": false @@ -54,22 +177,23 @@ "version_added": "79" } }, - "title": "MediaDevices.getDisplayMedia()" + "title": "MediaDevices: getDisplayMedia() method" } ], "dom-mediatrackconstraintset-displaysurface": [ { "engines": [ + "blink", "webkit" ], "filename": "api/MediaTrackConstraints.json", "name": "displaySurface", "slug": "API/MediaTrackConstraints/displaySurface", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackConstraints/displaySurface", - "summary": "The MediaTrackConstraints dictionary's displaySurface property is a ConstrainDOMString describing the requested or mandatory constraints placed upon the value of the displaySurface constrainable property.", + "summary": "The MediaTrackConstraints dictionary's displaySurface property is a ConstrainDOMString describing the preferred value for the displaySurface constrainable property.", "support": { "chrome": { - "version_added": false + "version_added": "107" }, "chrome_android": "mirror", "edge": "mirror", @@ -90,10 +214,10 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "107" } }, - "title": "MediaTrackConstraints.displaySurface" + "title": "MediaTrackConstraints: displaySurface property" }, { "engines": [ @@ -133,7 +257,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.displaySurface" + "title": "MediaTrackSettings: displaySurface property" } ], "dom-mediatrackconstraintset-logicalsurface": [ @@ -172,7 +296,7 @@ "version_added": false } }, - "title": "MediaTrackConstraints.logicalSurface" + "title": "MediaTrackConstraints: logicalSurface property" }, { "engines": [ @@ -212,7 +336,46 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.logicalSurface" + "title": "MediaTrackSettings: logicalSurface property" + } + ], + "dom-mediatrackconstraintset-suppresslocalaudioplayback": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaTrackConstraints.json", + "name": "suppressLocalAudioPlayback", + "slug": "API/MediaTrackConstraints/suppressLocalAudioPlayback", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackConstraints/suppressLocalAudioPlayback", + "summary": "The MediaTrackConstraints dictionary's suppressLocalAudioPlayback property is a ConstrainBoolean describing the requested or mandatory constraints placed upon the value of the suppressLocalAudioPlayback constrainable property. This property controls whether the audio playing in a tab will continue to be played out of a user's local speakers when the tab is captured.", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "MediaTrackConstraints: suppressLocalAudioPlayback property" } ], "dom-mediatracksettings-cursor": [ @@ -253,7 +416,46 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.cursor" + "title": "MediaTrackSettings: cursor property" + } + ], + "dom-mediatracksettings-suppresslocalaudioplayback": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaTrackSettings.json", + "name": "suppressLocalAudioPlayback", + "slug": "API/MediaTrackSettings/suppressLocalAudioPlayback", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackSettings/suppressLocalAudioPlayback", + "summary": "The MediaTrackSettings dictionary's suppressLocalAudioPlayback property controls whether the audio playing in a tab will continue to be played out of a user's local speakers when the tab is captured.", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "MediaTrackSettings: suppressLocalAudioPlayback property" } ], "extensions-to-mediatracksettings": [ @@ -302,6 +504,7 @@ "dom-mediatracksupportedconstraints-displaysurface": [ { "engines": [ + "blink", "webkit" ], "filename": "api/MediaTrackSupportedConstraints.json", @@ -311,7 +514,7 @@ "summary": "The MediaTrackSupportedConstraints dictionary's displaySurface property indicates whether or not the displaySurface constraint is supported by the user agent and the device on which the content is being used.", "support": { "chrome": { - "version_added": false + "version_added": "107" }, "chrome_android": "mirror", "edge": "mirror", @@ -332,10 +535,10 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "107" } }, - "title": "MediaTrackSupportedConstraints.displaySurface" + "title": "MediaTrackSupportedConstraints: displaySurface property" } ], "dom-mediatracksupportedconstraints-logicalsurface": [ @@ -374,7 +577,46 @@ "version_added": false } }, - "title": "MediaTrackSupportedConstraints.logicalSurface" + "title": "MediaTrackSupportedConstraints: logicalSurface property" + } + ], + "dom-mediatracksupportedconstraints-suppresslocalaudioplayback": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaTrackSupportedConstraints.json", + "name": "suppressLocalAudioPlayback", + "slug": "API/MediaTrackSupportedConstraints/suppressLocalAudioPlayback", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackSupportedConstraints/suppressLocalAudioPlayback", + "summary": "The MediaTrackSupportedConstraints dictionary's suppressLocalAudioPlayback property indicates whether or not the suppressLocalAudioPlayback constraint is supported by the user agent and the device on which the content is being used.", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "MediaTrackSupportedConstraints: suppressLocalAudioPlayback property" } ], "permissions-policy-integration": [ @@ -390,7 +632,7 @@ "name": "display-capture", "slug": "HTTP/Headers/Feature-Policy/display-capture", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/display-capture", - "summary": "The HTTP Feature-Policy header display-capture directive controls whether or not the document is permitted to use Screen Capture API, that is, getDisplayMedia() to capture the screen's contents.", + "summary": "The HTTP Permissions-Policy header display-capture directive controls whether or not the document is permitted to use Screen Capture API, that is, getDisplayMedia() to capture the screen's contents.", "support": { "chrome": { "version_added": "94" @@ -427,7 +669,58 @@ "version_added": "94" } }, - "title": "Feature-Policy: display-capture" + "title": "Permissions-Policy: display-capture" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko", + "webkit" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "display-capture", + "slug": "HTTP/Headers/Feature-Policy/display-capture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/display-capture", + "summary": "The HTTP Permissions-Policy header display-capture directive controls whether or not the document is permitted to use Screen Capture API, that is, getDisplayMedia() to capture the screen's contents.", + "support": { + "chrome": { + "version_added": "94" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: display-capture", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "13", + "alternative_name": "Feature-Policy: display-capture", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "safari_ios": { + "version_added": false + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94" + } + }, + "title": "Permissions-Policy: display-capture" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/mediacapture-streams.json b/bikeshed/spec-data/readonly/mdn/mediacapture-streams.json index 7228a8607d..3d829b9ab8 100644 --- a/bikeshed/spec-data/readonly/mdn/mediacapture-streams.json +++ b/bikeshed/spec-data/readonly/mdn/mediacapture-streams.json @@ -2,7 +2,8 @@ "dom-inputdeviceinfo-getcapabilities": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/InputDeviceInfo.json", "name": "getCapabilities", @@ -26,7 +27,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -35,7 +36,7 @@ "version_added": "79" } }, - "title": "InputDeviceInfo.getCapabilities()" + "title": "InputDeviceInfo: getCapabilities() method" } ], "dom-inputdeviceinfo": [ @@ -49,7 +50,7 @@ "name": "InputDeviceInfo", "slug": "API/InputDeviceInfo", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/InputDeviceInfo", - "summary": "The InputDeviceInfo interface of the Media Streams API gives access to the capabilities of the input device that it represents.", + "summary": "The InputDeviceInfo interface of the Media Capture and Streams API gives access to the capabilities of the input device that it represents.", "support": { "chrome": { "version_added": "47" @@ -97,7 +98,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "14" }, "firefox": { "version_added": "39" @@ -119,7 +120,7 @@ "version_added": "79" } }, - "title": "MediaDeviceInfo.deviceId" + "title": "MediaDeviceInfo: deviceId property" } ], "dom-mediadeviceinfo-groupid": [ @@ -140,7 +141,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "14" }, "firefox": { "version_added": "39", @@ -163,7 +164,7 @@ "version_added": "79" } }, - "title": "MediaDeviceInfo.groupId" + "title": "MediaDeviceInfo: groupId property" } ], "dom-mediadeviceinfo-kind": [ @@ -184,7 +185,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "14" }, "firefox": { "version_added": "39" @@ -206,7 +207,7 @@ "version_added": "79" } }, - "title": "MediaDeviceInfo.kind" + "title": "MediaDeviceInfo: kind property" } ], "dom-mediadeviceinfo-label": [ @@ -220,14 +221,14 @@ "name": "label", "slug": "API/MediaDeviceInfo/label", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaDeviceInfo/label", - "summary": "The label ReadOnlyInline property of the MediaDeviceInfo interface returns a string describing this device (for example \"External USB Webcam\").", + "summary": "The label readonly property of the MediaDeviceInfo interface returns a string describing this device (for example \"External USB Webcam\").", "support": { "chrome": { "version_added": "47" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "14" }, "firefox": { "version_added": "39" @@ -249,7 +250,50 @@ "version_added": "79" } }, - "title": "MediaDeviceInfo.label" + "title": "MediaDeviceInfo: label property" + } + ], + "dom-mediadeviceinfo-tojson": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaDeviceInfo.json", + "name": "toJSON", + "slug": "API/MediaDeviceInfo/toJSON", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaDeviceInfo/toJSON", + "summary": "The toJSON() method of the MediaDeviceInfo interface is a serializer; it returns a JSON representation of the MediaDeviceInfo object.", + "support": { + "chrome": { + "version_added": "47" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "18" + }, + "firefox": { + "version_added": "42" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaDeviceInfo: toJSON() method" } ], "device-info": [ @@ -270,7 +314,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "14" }, "firefox": { "version_added": "39" @@ -404,7 +448,7 @@ "name": "enumerateDevices", "slug": "API/MediaDevices/enumerateDevices", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices", - "summary": "The MediaDevices method enumerateDevices() requests a list of the available media input and output devices, such as microphones, cameras, headsets, and so forth. The returned Promise is resolved with a MediaDeviceInfo array describing the devices.", + "summary": "The MediaDevices method enumerateDevices() requests a list of the currently available media input and output devices, such as microphones, cameras, headsets, and so forth. The returned Promise is resolved with an array of MediaDeviceInfo objects describing the devices.", "support": { "chrome": { "version_added": "47" @@ -415,18 +459,13 @@ }, "firefox": [ { - "version_added": "39" + "version_added": "116", + "notes": "<code>enumerateDevices()</code> enumerates both input and output devices. Previously only input devices were returned." }, { - "version_added": "63", - "flags": [ - { - "type": "preference", - "name": "media.setsinkid.enabled", - "value_to_set": "true" - } - ], - "notes": "Before Firefox 63, <code>enumerateDevices()</code> only returned input devices. Starting with Firefox 63, output devices are also included if the <code>media.setsinkid.enabled</code> preference is enabled." + "version_added": "39", + "partial_implementation": true, + "notes": "<code>enumerateDevices()</code> only returns input devices." } ], "firefox_android": "mirror", @@ -446,7 +485,7 @@ "version_added": "79" } }, - "title": "MediaDevices.enumerateDevices()" + "title": "MediaDevices: enumerateDevices() method" } ], "dom-mediadevices-getsupportedconstraints": [ @@ -495,7 +534,7 @@ "version_added": "79" } }, - "title": "MediaDevices.getSupportedConstraints()" + "title": "MediaDevices: getSupportedConstraints() method" } ], "dom-mediadevices-getusermedia": [ @@ -550,7 +589,7 @@ "notes": "If you need this capability before version 53, refer to <code>navigator.webkitGetUserMedia</code>, a prefixed form of the deprecated <a href='https://developer.mozilla.org/docs/Web/API/Navigator/getUserMedia'><code>navigator.getUserMedia</code></a> API." } }, - "title": "MediaDevices.getUserMedia()" + "title": "MediaDevices: getUserMedia() method" } ], "mediadevices": [ @@ -640,7 +679,7 @@ "version_added": "79" } }, - "title": "Navigator.mediaDevices" + "title": "Navigator: mediaDevices property" } ], "dom-mediastream-constructor": [ @@ -697,7 +736,7 @@ } ] }, - "title": "MediaStream()" + "title": "MediaStream: MediaStream() constructor" } ], "dom-mediastream-active": [ @@ -740,7 +779,7 @@ "version_added": "79" } }, - "title": "MediaStream.active" + "title": "MediaStream: active property" } ], "dom-mediastream-addtrack": [ @@ -791,7 +830,7 @@ "version_added": "79" } }, - "title": "MediaStream.addTrack()" + "title": "MediaStream: addTrack() method" } ], "event-mediastream-addtrack": [ @@ -881,7 +920,7 @@ "version_added": "79" } }, - "title": "MediaStream.clone()" + "title": "MediaStream: clone() method" } ], "dom-mediastream-getaudiotracks": [ @@ -929,7 +968,7 @@ "version_added": "79" } }, - "title": "MediaStream.getAudioTracks()" + "title": "MediaStream: getAudioTracks() method" } ], "dom-mediastream-gettrackbyid": [ @@ -978,7 +1017,7 @@ "version_added": "79" } }, - "title": "MediaStream.getTrackById()" + "title": "MediaStream: getTrackById() method" } ], "dom-mediastream-gettracks": [ @@ -1021,7 +1060,7 @@ "version_added": "79" } }, - "title": "MediaStream.getTracks()" + "title": "MediaStream: getTracks() method" } ], "dom-mediastream-getvideotracks": [ @@ -1069,7 +1108,7 @@ "version_added": "79" } }, - "title": "MediaStream.getVideoTracks()" + "title": "MediaStream: getVideoTracks() method" } ], "dom-mediastream-id": [ @@ -1112,7 +1151,54 @@ "version_added": "79" } }, - "title": "MediaStream.id" + "title": "MediaStream: id property" + } + ], + "dom-mediastream-removetrack": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaStream.json", + "name": "removeTrack", + "slug": "API/MediaStream/removeTrack", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStream/removeTrack", + "summary": "The removeTrack() method of the MediaStream interface removes a MediaStreamTrack from a stream.", + "support": { + "chrome": { + "version_added": "26" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaStream: removeTrack() method" } ], "event-mediastream-removetrack": [ @@ -1236,7 +1322,7 @@ "name": "applyConstraints", "slug": "API/MediaStreamTrack/applyConstraints", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack/applyConstraints", - "summary": "The applyConstraints() method of the MediaStreamTrack interface applies a set of constraints to the track; these constraints let the Web site or app establish ideal values and acceptable ranges of values for the constrainable properties of the track, such as frame rate, dimensions, echo cancellation, and so forth.", + "summary": "The applyConstraints() method of the MediaStreamTrack interface applies a set of constraints to the track; these constraints let the website or app establish ideal values and acceptable ranges of values for the constrainable properties of the track, such as frame rate, dimensions, echo cancellation, and so forth.", "support": { "chrome": { "version_added": "59" @@ -1265,7 +1351,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.applyConstraints()" + "title": "MediaStreamTrack: applyConstraints() method" } ], "dom-mediastreamtrack-clone": [ @@ -1308,7 +1394,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.clone()" + "title": "MediaStreamTrack: clone() method" } ], "dom-mediastreamtrack-enabled": [ @@ -1351,7 +1437,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.enabled" + "title": "MediaStreamTrack: enabled property" } ], "dom-mediastreamtrack-onended": [ @@ -1436,7 +1522,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.getCapabilities()" + "title": "MediaStreamTrack: getCapabilities() method" } ], "dom-mediastreamtrack-getconstraints": [ @@ -1450,7 +1536,7 @@ "name": "getConstraints", "slug": "API/MediaStreamTrack/getConstraints", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack/getConstraints", - "summary": "The getConstraints() method of the MediaStreamTrack interface returns a MediaTrackConstraints object containing the set of constraints most recently established for the track using a prior call to applyConstraints(). These constraints indicate values and ranges of values that the Web site or application has specified are required or acceptable for the included constrainable properties.", + "summary": "The getConstraints() method of the MediaStreamTrack interface returns a MediaTrackConstraints object containing the set of constraints most recently established for the track using a prior call to applyConstraints(). These constraints indicate values and ranges of values that the website or application has specified are required or acceptable for the included constrainable properties.", "support": { "chrome": { "version_added": "53" @@ -1483,7 +1569,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.getConstraints()" + "title": "MediaStreamTrack: getConstraints() method" } ], "dom-mediastreamtrack-getsettings": [ @@ -1526,7 +1612,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.getSettings()" + "title": "MediaStreamTrack: getSettings() method" } ], "dom-mediastreamtrack-id": [ @@ -1569,7 +1655,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.id" + "title": "MediaStreamTrack: id property" } ], "dom-mediastreamtrack-kind": [ @@ -1612,7 +1698,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.kind" + "title": "MediaStreamTrack: kind property" } ], "dom-mediastreamtrack-label": [ @@ -1655,7 +1741,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.label" + "title": "MediaStreamTrack: label property" } ], "dom-mediastreamtrack-onmute": [ @@ -1741,7 +1827,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.muted" + "title": "MediaStreamTrack: muted property" } ], "dom-mediastreamtrack-readystate": [ @@ -1784,7 +1870,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.readyState" + "title": "MediaStreamTrack: readyState property" } ], "dom-mediastreamtrack-stop": [ @@ -1827,7 +1913,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrack.stop()" + "title": "MediaStreamTrack: stop() method" } ], "event-mediastreamtrack-unmute": [ @@ -1928,6 +2014,49 @@ "slug": "API/MediaStreamTrackEvent/MediaStreamTrackEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackEvent/MediaStreamTrackEvent", "summary": "The MediaStreamTrackEvent() constructor returns a new MediaStreamTrackEvent object, which represents an event signaling that a MediaStreamTrack has been added to or removed from a MediaStream.", + "support": { + "chrome": { + "version_added": "55" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "50" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "MediaStreamTrackEvent: MediaStreamTrackEvent() constructor" + } + ], + "dom-mediastreamtrackevent-track": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/MediaStreamTrackEvent.json", + "name": "track", + "slug": "API/MediaStreamTrackEvent/track", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackEvent/track", + "summary": "The track read-only property of the MediaStreamTrackEvent interface returns the MediaStreamTrack associated with this event", "support": { "chrome": { "version_added": "26" @@ -1956,7 +2085,7 @@ "version_added": "79" } }, - "title": "MediaStreamTrackEvent()" + "title": "MediaStreamTrackEvent: track property" } ], "mediastreamtrackevent": [ @@ -1970,7 +2099,7 @@ "name": "MediaStreamTrackEvent", "slug": "API/MediaStreamTrackEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackEvent", - "summary": "The MediaStreamTrackEvent interface represents events which indicate that a MediaStream has had tracks added to or removed from the stream through calls to Media Stream API methods. These events are sent to the stream when these changes occur.", + "summary": "The MediaStreamTrackEvent interface represents events which indicate that a MediaStream has had tracks added to or removed from the stream through calls to Media Capture and Streams API methods. These events are sent to the stream when these changes occur.", "support": { "chrome": { "version_added": "26" @@ -2044,7 +2173,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.aspectRatio" + "title": "MediaTrackConstraints: aspectRatio property" } ], "dom-mediatrackconstraintset-autogaincontrol": [ @@ -2092,7 +2221,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.autoGainControl" + "title": "MediaTrackConstraints: autoGainControl property" } ], "dom-mediatrackconstraintset-channelcount": [ @@ -2134,7 +2263,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.channelCount" + "title": "MediaTrackConstraints: channelCount property" } ], "dom-mediatrackconstraintset-deviceid": [ @@ -2181,7 +2310,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.deviceId" + "title": "MediaTrackConstraints: deviceId property" } ], "dom-mediatrackconstraintset-echocancellation": [ @@ -2224,7 +2353,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.echoCancellation" + "title": "MediaTrackConstraints: echoCancellation property" } ], "dom-mediatrackconstraintset-facingmode": [ @@ -2267,7 +2396,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.facingMode" + "title": "MediaTrackConstraints: facingMode property" } ], "dom-mediatrackconstraintset-framerate": [ @@ -2310,7 +2439,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.frameRate" + "title": "MediaTrackConstraints: frameRate property" } ], "dom-mediatrackconstraintset-groupid": [ @@ -2355,7 +2484,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.groupId" + "title": "MediaTrackConstraints: groupId property" } ], "dom-mediatrackconstraintset-height": [ @@ -2398,7 +2527,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.height" + "title": "MediaTrackConstraints: height property" } ], "dom-mediatrackconstraintset-latency": [ @@ -2441,7 +2570,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.latency" + "title": "MediaTrackConstraints: latency property" } ], "dom-mediatrackconstraintset-noisesuppression": [ @@ -2489,7 +2618,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.noiseSuppression" + "title": "MediaTrackConstraints: noiseSuppression property" } ], "dom-mediatrackconstraintset-samplerate": [ @@ -2531,7 +2660,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.sampleRate" + "title": "MediaTrackConstraints: sampleRate property" } ], "dom-mediatrackconstraintset-samplesize": [ @@ -2573,7 +2702,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.sampleSize" + "title": "MediaTrackConstraints: sampleSize property" } ], "dom-mediatrackconstraintset-width": [ @@ -2616,7 +2745,7 @@ "version_added": "79" } }, - "title": "MediaTrackConstraints.width" + "title": "MediaTrackConstraints: width property" } ], "dom-mediatrackconstraints": [ @@ -2701,7 +2830,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.aspectRatio" + "title": "MediaTrackSettings: aspectRatio property" } ], "dom-mediatracksettings-autogaincontrol": [ @@ -2750,7 +2879,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.autoGainControl" + "title": "MediaTrackSettings: autoGainControl property" } ], "dom-mediatracksettings-channelcount": [ @@ -2789,7 +2918,7 @@ "version_added": false } }, - "title": "MediaTrackSettings.channelCount" + "title": "MediaTrackSettings: channelCount property" } ], "dom-mediatracksettings-deviceid": [ @@ -2834,7 +2963,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.deviceId" + "title": "MediaTrackSettings: deviceId property" } ], "dom-mediatracksettings-echocancellation": [ @@ -2877,7 +3006,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.echoCancellation" + "title": "MediaTrackSettings: echoCancellation property" } ], "dom-mediatracksettings-facingmode": [ @@ -2922,7 +3051,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.facingMode" + "title": "MediaTrackSettings: facingMode property" } ], "dom-mediatracksettings-framerate": [ @@ -2965,7 +3094,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.frameRate" + "title": "MediaTrackSettings: frameRate property" } ], "dom-mediatracksettings-groupid": [ @@ -3010,7 +3139,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.groupId" + "title": "MediaTrackSettings: groupId property" } ], "dom-mediatracksettings-height": [ @@ -3053,7 +3182,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.height" + "title": "MediaTrackSettings: height property" } ], "dom-mediatracksettings-latency": [ @@ -3092,7 +3221,7 @@ "version_added": false } }, - "title": "MediaTrackSettings.latency" + "title": "MediaTrackSettings: latency property" } ], "dom-mediatracksettings-noisesuppression": [ @@ -3141,7 +3270,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.noiseSuppression" + "title": "MediaTrackSettings: noiseSuppression property" } ], "dom-mediatracksettings-samplerate": [ @@ -3183,7 +3312,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.sampleRate" + "title": "MediaTrackSettings: sampleRate property" } ], "dom-mediatracksettings-samplesize": [ @@ -3225,7 +3354,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.sampleSize" + "title": "MediaTrackSettings: sampleSize property" } ], "dom-mediatracksettings-width": [ @@ -3268,7 +3397,7 @@ "version_added": "79" } }, - "title": "MediaTrackSettings.width" + "title": "MediaTrackSettings: width property" } ], "media-track-settings": [ @@ -3353,7 +3482,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.aspectRatio" + "title": "MediaTrackSupportedConstraints: aspectRatio property" } ], "dom-mediatracksupportedconstraints-autogaincontrol": [ @@ -3402,7 +3531,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.autoGainControl" + "title": "MediaTrackSupportedConstraints: autoGainControl property" } ], "dom-mediatracksupportedconstraints-channelcount": [ @@ -3445,7 +3574,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.channelCount" + "title": "MediaTrackSupportedConstraints: channelCount property" } ], "dom-mediatracksupportedconstraints-deviceid": [ @@ -3488,7 +3617,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.deviceId" + "title": "MediaTrackSupportedConstraints: deviceId property" } ], "dom-mediatracksupportedconstraints-echocancellation": [ @@ -3531,7 +3660,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.echoCancellation" + "title": "MediaTrackSupportedConstraints: echoCancellation property" } ], "dom-mediatracksupportedconstraints-facingmode": [ @@ -3574,7 +3703,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.facingMode" + "title": "MediaTrackSupportedConstraints: facingMode property" } ], "dom-mediatracksupportedconstraints-framerate": [ @@ -3617,7 +3746,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.frameRate" + "title": "MediaTrackSupportedConstraints: frameRate property" } ], "dom-mediatracksupportedconstraints-groupid": [ @@ -3662,7 +3791,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.groupId" + "title": "MediaTrackSupportedConstraints: groupId property" } ], "dom-mediatracksupportedconstraints-height": [ @@ -3705,7 +3834,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.height" + "title": "MediaTrackSupportedConstraints: height property" } ], "dom-mediatracksupportedconstraints-latency": [ @@ -3747,7 +3876,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.latency" + "title": "MediaTrackSupportedConstraints: latency property" } ], "dom-mediatracksupportedconstraints-noisesuppression": [ @@ -3796,7 +3925,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.noiseSuppression" + "title": "MediaTrackSupportedConstraints: noiseSuppression property" } ], "dom-mediatracksupportedconstraints-samplerate": [ @@ -3838,7 +3967,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.sampleRate" + "title": "MediaTrackSupportedConstraints: sampleRate property" } ], "dom-mediatracksupportedconstraints-samplesize": [ @@ -3880,7 +4009,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.sampleSize" + "title": "MediaTrackSupportedConstraints: sampleSize property" } ], "dom-mediatracksupportedconstraints-width": [ @@ -3923,7 +4052,7 @@ "version_added": "79" } }, - "title": "MediaTrackSupportedConstraints.width" + "title": "MediaTrackSupportedConstraints: width property" } ], "media-track-supported-constraints": [ @@ -4006,7 +4135,7 @@ "version_added": "79" } }, - "title": "OverconstrainedError()" + "title": "OverconstrainedError: OverconstrainedError() constructor" } ], "dom-overconstrainederror-constraint": [ @@ -4046,7 +4175,7 @@ "version_added": "79" } }, - "title": "OverconstrainedError.constraint" + "title": "OverconstrainedError: constraint property" } ], "overconstrainederror-interface": [ @@ -4102,7 +4231,7 @@ "name": "camera", "slug": "HTTP/Headers/Feature-Policy/camera", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/camera", - "summary": "The HTTP Feature-Policy header camera directive controls whether the current document is allowed to use video input devices. When this policy is enabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.", + "summary": "The HTTP Permissions-Policy header camera directive controls whether the current document is allowed to use video input devices.", "support": { "chrome": { "version_added": "60" @@ -4135,7 +4264,7 @@ "version_added": "79" } }, - "title": "Feature-Policy: camera" + "title": "Permissions-Policy: camera" } ], "dfn-microphone": [ @@ -4151,7 +4280,7 @@ "name": "microphone", "slug": "HTTP/Headers/Feature-Policy/microphone", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/microphone", - "summary": "The HTTP Feature-Policy header microphone directive controls whether the current document is allowed to use audio input devices. When this policy is enabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError.", + "summary": "The HTTP Permissions-Policy header microphone directive controls whether the current document is allowed to use audio input devices.", "support": { "chrome": { "version_added": "60" @@ -4184,7 +4313,131 @@ "version_added": "79" } }, - "title": "Feature-Policy: microphone" + "title": "Permissions-Policy: microphone" + } + ], + "permissions-policy-integration": [ + { + "engines": [ + "blink" + ], + "altname": [ + "gecko", + "webkit" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "camera", + "slug": "HTTP/Headers/Permissions-Policy/camera", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/camera", + "summary": "The HTTP Permissions-Policy header camera directive controls whether the current document is allowed to use video input devices.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: camera", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "48" + }, + "opera_android": { + "version_added": "45" + }, + "safari": { + "version_added": "11.1", + "alternative_name": "Feature-Policy: camera" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: camera" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko", + "webkit" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "microphone", + "slug": "HTTP/Headers/Permissions-Policy/microphone", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/microphone", + "summary": "The HTTP Permissions-Policy header microphone directive controls whether the current document is allowed to use audio input devices.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: microphone", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "48" + }, + "opera_android": { + "version_added": "45" + }, + "safari": { + "version_added": "11.1", + "alternative_name": "Feature-Policy: microphone" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: microphone" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/mediacapture-transform.json b/bikeshed/spec-data/readonly/mdn/mediacapture-transform.json index 84044ecedc..f4d1ca7e7b 100644 --- a/bikeshed/spec-data/readonly/mdn/mediacapture-transform.json +++ b/bikeshed/spec-data/readonly/mdn/mediacapture-transform.json @@ -1,4 +1,43 @@ { + "dom-mediastreamtrackprocessor-mediastreamtrackprocessor": [ + { + "engines": [ + "blink" + ], + "filename": "api/MediaStreamTrackProcessor.json", + "name": "MediaStreamTrackProcessor", + "slug": "API/MediaStreamTrackProcessor/MediaStreamTrackProcessor", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackProcessor/MediaStreamTrackProcessor", + "summary": "The MediaStreamTrackProcessor() constructor creates a new MediaStreamTrackProcessor object which consumes a MediaStreamTrack object's source and generates a stream of media frames.", + "support": { + "chrome": { + "version_added": "94" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94" + } + }, + "title": "MediaStreamTrackProcessor: MediaStreamTrackProcessor() constructor" + } + ], "dom-mediastreamtrackprocessor-readable": [ { "engines": [ @@ -35,7 +74,51 @@ "version_added": "94" } }, - "title": "MediaStreamTrackProcessor.readable" + "title": "MediaStreamTrackProcessor: readable property" + } + ], + "track-processor-interface": [ + { + "engines": [], + "partial": [ + "blink" + ], + "filename": "api/MediaStreamTrackProcessor.json", + "name": "MediaStreamTrackProcessor", + "slug": "API/MediaStreamTrackProcessor", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackProcessor", + "summary": "The MediaStreamTrackProcessor interface of the Insertable Streams for MediaStreamTrack API consumes a MediaStreamTrack object's source and generates a stream of media frames.", + "support": { + "chrome": { + "version_added": "94", + "partial_implementation": true, + "notes": "Chrome incorrectly exposes this interface only on the Window scope, rather than the DedicatedWorker scope as defined in the spec." + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94", + "partial_implementation": true, + "notes": "Chrome incorrectly exposes this interface only on the Window scope, rather than the DedicatedWorker scope as defined in the spec." + } + }, + "title": "MediaStreamTrackProcessor" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/mediaqueries-5.json b/bikeshed/spec-data/readonly/mdn/mediaqueries-5.json index a6bccf3517..29e59d1c5e 100644 --- a/bikeshed/spec-data/readonly/mdn/mediaqueries-5.json +++ b/bikeshed/spec-data/readonly/mdn/mediaqueries-5.json @@ -6,6 +6,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "css/at-rules/media.json", "name": "display-mode", "slug": "CSS/@media/display-mode", @@ -21,7 +24,11 @@ "version_added": "47", "notes": "Firefox 47 and later support <code>display-mode</code> values <code>fullscreen</code> and <code>browser</code>. Firefox 57 added support for <code>minimal-ui</code> and <code>standalone</code> values." }, - "firefox_android": "mirror", + "firefox_android": { + "version_added": "47", + "partial_implementation": true, + "notes": "Only supports the <code>browser</code> value, which always reports <code>true</code>." + }, "ie": { "version_added": false }, @@ -136,13 +143,17 @@ "inverted": [ { "engines": [ + "gecko", "webkit" ], + "needsflag": [ + "gecko" + ], "filename": "css/at-rules/media.json", "name": "inverted-colors", "slug": "CSS/@media/inverted-colors", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@media/inverted-colors", - "summary": "The inverted-colors CSS media feature can be used to test whether the user agent or underlying OS is inverting colors.", + "summary": "The inverted-colors CSS media feature is used to test if the user agent or the underlying operating system has inverted all colors.", "support": { "chrome": { "version_added": false @@ -150,7 +161,14 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "114", + "flags": [ + { + "type": "preference", + "name": "layout.css.inverted-colors.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { @@ -340,7 +358,7 @@ "name": "prefers-reduced-motion", "slug": "CSS/@media/prefers-reduced-motion", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion", - "summary": "The prefers-reduced-motion CSS media feature is used to detect if the user has requested that the system minimize the amount of non-essential motion it uses.", + "summary": "The prefers-reduced-motion CSS media feature is used to detect if a user has enabled a setting on their device to minimize the amount of non-essential motion. The setting is used to convey to the browser on the device that the user prefers an interface that removes, reduces, or replaces motion-based animations.", "support": { "chrome": { "version_added": "74" @@ -376,9 +394,81 @@ "title": "prefers-reduced-motion" } ], + "prefers-reduced-transparency": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "blink", + "gecko" + ], + "filename": "css/at-rules/media.json", + "name": "prefers-reduced-transparency", + "slug": "CSS/@media/prefers-reduced-transparency", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-transparency", + "summary": "The prefers-reduced-transparency CSS media feature is used to detect if a user has enabled a setting on their device to reduce the transparent or translucent layer effects used on the device. Switching on such a setting can help improve contrast and readability for some users.", + "support": { + "chrome": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ], + "impl_url": "https://crbug.com/1424879" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113", + "flags": [ + { + "type": "preference", + "name": "layout.css.prefers-reduced-transparency.enabled", + "value_to_set": "true" + } + ], + "impl_url": "https://bugzil.la/1736914" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false, + "impl_url": "https://webkit.org/b/175497" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ], + "impl_url": "https://crbug.com/1424879" + } + }, + "title": "prefers-reduced-transparency" + } + ], "scripting": [ { - "engines": [], + "engines": [ + "gecko", + "webkit" + ], "filename": "css/at-rules/media.json", "name": "scripting", "slug": "CSS/@media/scripting", @@ -392,8 +482,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1166581'>bug 1166581</a>." + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -407,7 +496,7 @@ "version_added": false }, "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -424,8 +513,10 @@ { "engines": [ "blink", - "gecko", - "webkit" + "gecko" + ], + "needsflag": [ + "blink" ], "filename": "css/at-rules/media.json", "name": "video-dynamic-range", @@ -434,7 +525,14 @@ "summary": "The video-dynamic-range CSS media feature can be used to test the combination of brightness, contrast ratio, and color depth that are supported by the video plane of the user agent and the output device.", "support": { "chrome": { - "version_added": "98" + "version_added": "98", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", @@ -449,13 +547,20 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "13.1" + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "98" + "version_added": "98", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] } }, "title": "video-dynamic-range" diff --git a/bikeshed/spec-data/readonly/mdn/mediasession.json b/bikeshed/spec-data/readonly/mdn/mediasession.json index 22db0246e7..b752773518 100644 --- a/bikeshed/spec-data/readonly/mdn/mediasession.json +++ b/bikeshed/spec-data/readonly/mdn/mediasession.json @@ -28,7 +28,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "MediaMetadata()" + "title": "MediaMetadata: MediaMetadata() constructor" } ], "dom-mediametadata-album": [ @@ -71,7 +71,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -82,7 +82,7 @@ "version_added": "79" } }, - "title": "MediaMetadata.album" + "title": "MediaMetadata: album property" } ], "dom-mediametadata-artist": [ @@ -114,7 +114,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -125,7 +125,7 @@ "version_added": "79" } }, - "title": "MediaMetadata.artist" + "title": "MediaMetadata: artist property" } ], "dom-mediametadata-artwork": [ @@ -157,7 +157,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -168,7 +168,7 @@ "version_added": "79" } }, - "title": "MediaMetadata.artwork" + "title": "MediaMetadata: artwork property" } ], "dom-mediametadata-title": [ @@ -200,7 +200,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -211,7 +211,7 @@ "version_added": "79" } }, - "title": "MediaMetadata.title" + "title": "MediaMetadata: title property" } ], "the-mediametadata-interface": [ @@ -250,7 +250,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15" + "version_added": "14" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -313,7 +313,7 @@ "version_added": "79" } }, - "title": "MediaSession.metadata" + "title": "MediaSession: metadata property" } ], "dom-mediasession-playbackstate": [ @@ -365,7 +365,7 @@ "version_added": "79" } }, - "title": "MediaSession.playbackState" + "title": "MediaSession: playbackState property" } ], "dom-mediasession-setactionhandler": [ @@ -420,7 +420,7 @@ "version_added": "79" } }, - "title": "MediaSession.setActionHandler()" + "title": "MediaSession: setActionHandler() method" } ], "dom-mediasession-setpositionstate": [ @@ -472,7 +472,7 @@ "version_added": "81" } }, - "title": "MediaSession.setPositionState()" + "title": "MediaSession: setPositionState() method" } ], "the-mediasession-interface": [ @@ -569,7 +569,7 @@ "version_added": "79" } }, - "title": "Navigator.mediaSession" + "title": "Navigator: mediaSession property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/mediastream-recording.json b/bikeshed/spec-data/readonly/mdn/mediastream-recording.json index 144ad86dc3..9a63ee59a1 100644 --- a/bikeshed/spec-data/readonly/mdn/mediastream-recording.json +++ b/bikeshed/spec-data/readonly/mdn/mediastream-recording.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "BlobEvent()" + "title": "BlobEvent: BlobEvent() constructor" } ], "dom-blobevent-data": [ @@ -78,7 +78,7 @@ "version_added": "79" } }, - "title": "BlobEvent.data" + "title": "BlobEvent: data property" } ], "dom-blobevent-timecode": [ @@ -110,7 +110,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14" + "version_added": "14.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -119,7 +119,7 @@ "version_added": "79" } }, - "title": "BlobEvent.timecode" + "title": "BlobEvent: timecode property" } ], "blobevent-section": [ @@ -205,7 +205,7 @@ "version_added": "79" } }, - "title": "MediaRecorder()" + "title": "MediaRecorder: MediaRecorder() constructor" } ], "dom-mediarecorder-audiobitspersecond": [ @@ -246,7 +246,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.audioBitsPerSecond" + "title": "MediaRecorder: audioBitsPerSecond property" } ], "dom-mediarecorder-ondataavailable": [ @@ -345,9 +345,9 @@ "webkit" ], "filename": "api/MediaRecorder.json", - "name": "isTypeSupported", - "slug": "API/MediaRecorder/isTypeSupported", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/isTypeSupported", + "name": "isTypeSupported_static", + "slug": "API/MediaRecorder/isTypeSupported_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/isTypeSupported_static", "summary": "The MediaRecorder.isTypeSupported() static method returns a Boolean which is true if the MIME type specified is one the user agent should be able to successfully record.", "support": { "chrome": { @@ -379,7 +379,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.isTypeSupported()" + "title": "MediaRecorder: isTypeSupported() static method" } ], "dom-mediarecorder-mimetype": [ @@ -443,7 +443,7 @@ } ] }, - "title": "MediaRecorder.mimeType" + "title": "MediaRecorder: mimeType property" } ], "dom-mediarecorder-pause": [ @@ -457,7 +457,7 @@ "name": "pause", "slug": "API/MediaRecorder/pause", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/pause", - "summary": "The Media.pause() method (part of the MediaRecorder API) is used to pause recording of media streams.", + "summary": "The MediaRecorder.pause() method (part of the MediaStream Recording API) is used to pause recording of media streams.", "support": { "chrome": { "version_added": "49" @@ -484,7 +484,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.pause()" + "title": "MediaRecorder: pause() method" } ], "dom-mediarecorder-onpause": [ @@ -539,7 +539,7 @@ "name": "requestData", "slug": "API/MediaRecorder/requestData", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/requestData", - "summary": "The MediaRecorder.requestData() method (part of the MediaRecorder API) is used to raise a dataavailable event containing a Blob object of the captured media as it was when the method was called. This can then be grabbed and manipulated as you wish.", + "summary": "The MediaRecorder.requestData() method (part of the MediaStream Recording API) is used to raise a dataavailable event containing a Blob object of the captured media as it was when the method was called. This can then be grabbed and manipulated as you wish.", "support": { "chrome": { "version_added": "49" @@ -566,7 +566,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.requestData()" + "title": "MediaRecorder: requestData() method" } ], "dom-mediarecorder-resume": [ @@ -580,7 +580,7 @@ "name": "resume", "slug": "API/MediaRecorder/resume", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/resume", - "summary": "The MediaRecorder.resume() method (part of the MediaRecorder API) is used to resume media recording when it has been previously paused.", + "summary": "The MediaRecorder.resume() method (part of the MediaStream Recording API) is used to resume media recording when it has been previously paused.", "support": { "chrome": { "version_added": "49" @@ -607,7 +607,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.resume()" + "title": "MediaRecorder: resume() method" } ], "dom-mediarecorder-onresume": [ @@ -693,7 +693,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.start()" + "title": "MediaRecorder: start() method" } ], "dom-mediarecorder-onstart": [ @@ -795,7 +795,7 @@ } ] }, - "title": "MediaRecorder.state" + "title": "MediaRecorder: state property" } ], "dom-mediarecorder-stop": [ @@ -809,7 +809,7 @@ "name": "stop", "slug": "API/MediaRecorder/stop", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/stop", - "summary": "The MediaRecorder.stop() method (part of the MediaRecorder API) is used to stop media capture.", + "summary": "The MediaRecorder.stop() method (part of the MediaStream Recording API) is used to stop media capture.", "support": { "chrome": { "version_added": "49" @@ -836,7 +836,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.stop()" + "title": "MediaRecorder: stop() method" } ], "dom-mediarecorder-onstop": [ @@ -940,7 +940,7 @@ } ] }, - "title": "MediaRecorder.stream" + "title": "MediaRecorder: stream property" } ], "dom-mediarecorder-videobitspersecond": [ @@ -981,7 +981,7 @@ "version_added": "79" } }, - "title": "MediaRecorder.videoBitsPerSecond" + "title": "MediaRecorder: videoBitsPerSecond property" } ], "mediarecorder-api": [ diff --git a/bikeshed/spec-data/readonly/mdn/motion.json b/bikeshed/spec-data/readonly/mdn/motion.json index ef57b018cc..09c0b967bf 100644 --- a/bikeshed/spec-data/readonly/mdn/motion.json +++ b/bikeshed/spec-data/readonly/mdn/motion.json @@ -2,7 +2,8 @@ "offset-anchor-property": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/offset-anchor.json", "name": "offset-anchor", @@ -26,7 +27,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -42,7 +43,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/offset-distance.json", "name": "offset-distance", @@ -64,9 +66,7 @@ "firefox": { "version_added": "72" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -74,7 +74,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -172,22 +172,42 @@ ], "offset-position-property": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "blink", + "gecko" + ], "filename": "css/properties/offset-position.json", "name": "offset-position", "slug": "CSS/offset-position", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/offset-position", - "summary": "The offset-position CSS property defines the initial position of the offset-path.", + "summary": "The offset-position CSS property defines the initial position of an element along a path. This property is typically used in combination with the offset-path property to create a motion effect. The value of offset-position determines where the element gets placed initially for moving along an offset-path if the offset-path function does not specify its own starting position.", "support": { "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/638055'>bug 638055</a>." + "version_added": "115", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1559232'>bug 1559232</a>." + "version_added": "116", + "flags": [ + { + "type": "preference", + "name": "layout.css.motion-path-offset-position.enabled", + "value_to_set": "true" + } + ] }, "firefox_android": "mirror", "ie": { @@ -197,14 +217,20 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/638055'>bug 638055</a>." + "version_added": "115", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] } }, "title": "offset-position" @@ -214,7 +240,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "css/properties/offset-rotate.json", "name": "offset-rotate", @@ -240,9 +267,7 @@ "firefox": { "version_added": "72" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -250,7 +275,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -299,9 +324,7 @@ "firefox": { "version_added": "72" }, - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -326,5 +349,71 @@ }, "title": "offset" } + ], + "ray-function": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "needsflag": [ + "blink", + "gecko" + ], + "filename": "css/types/ray.json", + "name": "ray", + "slug": "CSS/ray", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/ray", + "summary": "The ray() CSS function defines a line segment that begins from an offset-position and extends in the direction of the specified angle. The line segment is referred to as \"ray\". The length of a ray can be constrained by specifying a size and using the contain keyword.", + "support": { + "chrome": { + "version_added": "64", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "72", + "flags": [ + { + "type": "preference", + "name": "layout.css.motion-path-ray.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "preview" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + }, + "title": "ray()" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/navigation-timing.json b/bikeshed/spec-data/readonly/mdn/navigation-timing.json index c1ae8aacab..c4a01f5713 100644 --- a/bikeshed/spec-data/readonly/mdn/navigation-timing.json +++ b/bikeshed/spec-data/readonly/mdn/navigation-timing.json @@ -10,7 +10,7 @@ "name": "domComplete", "slug": "API/PerformanceNavigationTiming/domComplete", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/domComplete", - "summary": "The domComplete read-only property returns a timestamp representing the time value equal to the time immediately before the user agent sets the current document readiness of the current document to complete.", + "summary": "The domComplete read-only property returns a DOMHighResTimeStamp representing the time immediately before the user agent sets the document's readyState to \"complete\".", "support": { "chrome": { "version_added": "57" @@ -41,7 +41,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.domComplete" + "title": "PerformanceNavigationTiming: domComplete property" } ], "dom-performancenavigationtiming-domcontentloadedeventend": [ @@ -55,7 +55,7 @@ "name": "domContentLoadedEventEnd", "slug": "API/PerformanceNavigationTiming/domContentLoadedEventEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/domContentLoadedEventEnd", - "summary": "The domContentLoadedEventEnd read-only property returns a timestamp representing the time value equal to the time immediately after the current document's DOMContentLoaded event completes.", + "summary": "The domContentLoadedEventEnd read-only property returns a DOMHighResTimeStamp representing the time immediately after the current document's DOMContentLoaded event handler completes.", "support": { "chrome": { "version_added": "57" @@ -86,7 +86,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.domContentLoadedEventEnd" + "title": "PerformanceNavigationTiming: domContentLoadedEventEnd property" } ], "dom-performancenavigationtiming-domcontentloadedeventstart": [ @@ -100,7 +100,7 @@ "name": "domContentLoadedEventStart", "slug": "API/PerformanceNavigationTiming/domContentLoadedEventStart", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/domContentLoadedEventStart", - "summary": "The domContentLoadedEventStart read-only property returns a timestamp representing the time value equal to the time immediately before the user agent fires the DOMContentLoaded event at the current document.", + "summary": "The domContentLoadedEventStart read-only property returns a DOMHighResTimeStamp representing the time immediately before the current document's DOMContentLoaded event handler starts.", "support": { "chrome": { "version_added": "57" @@ -131,7 +131,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.domContentLoadedEventStart" + "title": "PerformanceNavigationTiming: domContentLoadedEventStart property" } ], "dom-performancenavigationtiming-dominteractive": [ @@ -145,7 +145,7 @@ "name": "domInteractive", "slug": "API/PerformanceNavigationTiming/domInteractive", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/domInteractive", - "summary": "The domInteractive read-only property returns a timestamp representing the time value equal to the time immediately before the user agent sets the current document readiness of the current document to interactive.", + "summary": "The domInteractive read-only property returns a DOMHighResTimeStamp representing the time immediately before the user agent sets the document's readyState to \"interactive\".", "support": { "chrome": { "version_added": "57" @@ -176,7 +176,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.domInteractive" + "title": "PerformanceNavigationTiming: domInteractive property" } ], "dom-performancenavigationtiming-loadeventend": [ @@ -190,7 +190,7 @@ "name": "loadEventEnd", "slug": "API/PerformanceNavigationTiming/loadEventEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/loadEventEnd", - "summary": "The loadEventEnd read-only property returns a timestamp which is equal to the time when the load event of the current document is completed.", + "summary": "The loadEventEnd read-only property returns a DOMHighResTimeStamp representing the time immediately after the current document's load event handler completes.", "support": { "chrome": { "version_added": "57" @@ -221,7 +221,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.loadEventEnd" + "title": "PerformanceNavigationTiming: loadEventEnd property" } ], "dom-performancenavigationtiming-loadeventstart": [ @@ -235,7 +235,7 @@ "name": "loadEventStart", "slug": "API/PerformanceNavigationTiming/loadEventStart", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/loadEventStart", - "summary": "The loadEventStart read-only property returns a timestamp representing the time value equal to the time immediately before the load event of the current document is fired.", + "summary": "The loadEventStart read-only property returns a DOMHighResTimeStamp representing the time immediately before the current document's load event handler starts.", "support": { "chrome": { "version_added": "57" @@ -266,7 +266,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.loadEventStart" + "title": "PerformanceNavigationTiming: loadEventStart property" } ], "dom-performancenavigationtiming-redirectcount": [ @@ -280,7 +280,7 @@ "name": "redirectCount", "slug": "API/PerformanceNavigationTiming/redirectCount", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/redirectCount", - "summary": "The redirectCount property returns a timestamp representing the number of redirects since the last non-redirect navigation under the current browsing context.", + "summary": "The redirectCount read-only property returns a number representing the number of redirects since the last non-redirect navigation in the current browsing context.", "support": { "chrome": { "version_added": "57" @@ -311,7 +311,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.redirectCount" + "title": "PerformanceNavigationTiming: redirectCount property" } ], "dom-performancenavigationtiming-tojson": [ @@ -325,7 +325,7 @@ "name": "toJSON", "slug": "API/PerformanceNavigationTiming/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/toJSON", - "summary": "The toJSON() method is a serializer - it returns a JSON representation of the PerformanceNavigationTiming object.", + "summary": "The toJSON() method of the PerformanceNavigationTiming interface is a serializer; it returns a JSON representation of the PerformanceNavigationTiming object.", "support": { "chrome": { "version_added": "57" @@ -356,7 +356,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.toJSON()" + "title": "PerformanceNavigationTiming: toJSON() method" } ], "dom-performancenavigationtiming-type": [ @@ -401,7 +401,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.type" + "title": "PerformanceNavigationTiming: type property" } ], "dom-performancenavigationtiming-unloadeventend": [ @@ -415,7 +415,7 @@ "name": "unloadEventEnd", "slug": "API/PerformanceNavigationTiming/unloadEventEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/unloadEventEnd", - "summary": "The unloadEventEnd read-only property returns a timestamp representing the time value equal to the time immediately after the user agent finishes the unload event of the previous document. If there is no previous document, this property value is 0.", + "summary": "The unloadEventEnd read-only property returns a DOMHighResTimeStamp representing the time immediately after the current document's unload event handler completes.", "support": { "chrome": { "version_added": "57" @@ -446,7 +446,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.unloadEventEnd" + "title": "PerformanceNavigationTiming: unloadEventEnd property" } ], "dom-performancenavigationtiming-unloadeventstart": [ @@ -460,7 +460,7 @@ "name": "unloadEventStart", "slug": "API/PerformanceNavigationTiming/unloadEventStart", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming/unloadEventStart", - "summary": "The unloadEventStart read-only property returns a timestamp representing the time value equal to the time immediately before the user agent starts the unload event of the previous document. If there is no previous document, this property returns 0.", + "summary": "The unloadEventStart read-only property returns a DOMHighResTimeStamp representing the time immediately before the current document's unload event handler starts.", "support": { "chrome": { "version_added": "57" @@ -491,7 +491,7 @@ "version_added": "79" } }, - "title": "PerformanceNavigationTiming.unloadEventStart" + "title": "PerformanceNavigationTiming: unloadEventStart property" } ], "sec-PerformanceNavigationTiming": [ @@ -515,8 +515,7 @@ "version_added": "12" }, "firefox": { - "version_added": "58", - "notes": "You can disable this feature using the <code>dom.enable_performance_navigation_timing</code> preference (see <a href='https://bugzil.la/1403926'>bug 1403926</a>)." + "version_added": "58" }, "firefox_android": "mirror", "ie": { diff --git a/bikeshed/spec-data/readonly/mdn/netinfo.json b/bikeshed/spec-data/readonly/mdn/netinfo.json index 343152e449..5470a56184 100644 --- a/bikeshed/spec-data/readonly/mdn/netinfo.json +++ b/bikeshed/spec-data/readonly/mdn/netinfo.json @@ -46,7 +46,7 @@ "version_added": "79" } }, - "title": "Navigator.connection" + "title": "Navigator: connection property" }, { "engines": [ @@ -96,7 +96,7 @@ "version_added": "79" } }, - "title": "WorkerNavigator.connection" + "title": "WorkerNavigator: connection property" } ], "dom-networkinformation-onchange": [ @@ -191,7 +191,7 @@ "notes": "The value is never greater than 10 Mbps, as a non-standard anti-fingerprinting measure." } }, - "title": "NetworkInformation.downlink" + "title": "NetworkInformation: downlink property" } ], "dom-networkinformation-downlinkmax": [ @@ -242,7 +242,7 @@ "notes": "Only supported in Chrome OS" } }, - "title": "NetworkInformation.downlinkMax" + "title": "NetworkInformation: downlinkMax property" } ], "dom-networkinformation-effectivetype": [ @@ -287,7 +287,7 @@ "version_added": "79" } }, - "title": "NetworkInformation.effectiveType" + "title": "NetworkInformation: effectiveType property" } ], "dom-networkinformation-rtt": [ @@ -334,7 +334,7 @@ "notes": "The value is never greater than 3000 ms, as a non-standard anti-fingerprinting measure." } }, - "title": "NetworkInformation.rtt" + "title": "NetworkInformation: rtt property" } ], "dom-networkinformation-type": [ @@ -389,7 +389,7 @@ "notes": "Only supported in Chrome OS" } }, - "title": "NetworkInformation.type" + "title": "NetworkInformation: type property" } ], "networkinformation-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/notifications.json b/bikeshed/spec-data/readonly/mdn/notifications.json index 460aff856f..0fe3693719 100644 --- a/bikeshed/spec-data/readonly/mdn/notifications.json +++ b/bikeshed/spec-data/readonly/mdn/notifications.json @@ -43,7 +43,7 @@ "version_added": "7" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": "mirror", @@ -51,7 +51,7 @@ "version_added": "79" } }, - "title": "Notification()" + "title": "Notification: Notification() constructor" } ], "dom-notification-actions": [ @@ -96,7 +96,7 @@ "version_added": "79" } }, - "title": "Notification.actions" + "title": "Notification: actions property" }, { "engines": [ @@ -142,7 +142,7 @@ "version_added": "79" } }, - "title": "NotificationEvent.action" + "title": "NotificationEvent: action property" } ], "dom-notification-badge": [ @@ -187,7 +187,7 @@ "version_added": "79" } }, - "title": "Notification.badge" + "title": "Notification: badge property" } ], "dom-notification-body": [ @@ -228,7 +228,7 @@ "version_added": "11" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -238,7 +238,7 @@ "version_added": "79" } }, - "title": "Notification.body" + "title": "Notification: body property" } ], "dom-notification-onclick": [ @@ -330,7 +330,7 @@ "version_added": "7" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -340,7 +340,7 @@ "version_added": "79" } }, - "title": "Notification.close()" + "title": "Notification: close() method" } ], "dom-notification-onclose": [ @@ -428,7 +428,7 @@ "version_added": "16" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -438,7 +438,7 @@ "version_added": "79" } }, - "title": "Notification.data" + "title": "Notification: data property" } ], "dom-notification-dir": [ @@ -479,7 +479,7 @@ "version_added": "7" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -489,7 +489,7 @@ "version_added": "79" } }, - "title": "Notification.dir" + "title": "Notification: dir property" } ], "dom-notification-onerror": [ @@ -581,7 +581,7 @@ "version_added": "11" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -591,7 +591,7 @@ "version_added": "79" } }, - "title": "Notification.icon" + "title": "Notification: icon property" } ], "image-resource": [ @@ -606,7 +606,7 @@ "summary": "The image read-only property of the Notification interface contains the URL of an image to be displayed as part of the notification, as specified in the image option of the Notification() constructor.", "support": { "chrome": { - "version_added": "53" + "version_added": "56" }, "chrome_android": "mirror", "edge": { @@ -634,7 +634,7 @@ "version_added": "79" } }, - "title": "Notification.image" + "title": "Notification: image property" } ], "dom-notification-lang": [ @@ -675,7 +675,7 @@ "version_added": "11" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -685,7 +685,7 @@ "version_added": "79" } }, - "title": "Notification.lang" + "title": "Notification: lang property" } ], "dom-notification-maxactions": [ @@ -694,9 +694,9 @@ "blink" ], "filename": "api/Notification.json", - "name": "maxActions", - "slug": "API/Notification/maxActions", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/maxActions", + "name": "maxActions_static", + "slug": "API/Notification/maxActions_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/maxActions_static", "summary": "The maxActions attribute of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.", "support": { "chrome": { @@ -728,7 +728,7 @@ "version_added": "79" } }, - "title": "Notification.maxActions" + "title": "Notification: maxActions static property" } ], "dom-notification-permission": [ @@ -739,9 +739,9 @@ "webkit" ], "filename": "api/Notification.json", - "name": "permission", - "slug": "API/Notification/permission", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/permission", + "name": "permission_static", + "slug": "API/Notification/permission_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/permission_static", "summary": "The permission read-only property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.", "support": { "chrome": { @@ -769,7 +769,7 @@ "version_added": "7" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -779,7 +779,7 @@ "version_added": "79" } }, - "title": "Notification.permission" + "title": "Notification: permission static property" } ], "dom-notification-renotify": [ @@ -820,7 +820,7 @@ "version_added": "79" } }, - "title": "Notification.renotify" + "title": "Notification: renotify property" } ], "dom-notification-requestpermission": [ @@ -831,10 +831,10 @@ "webkit" ], "filename": "api/Notification.json", - "name": "requestPermission", - "slug": "API/Notification/requestPermission", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/requestPermission", - "summary": "The requestPermission() method of the Notification interface requests permission from the user for the current origin to display notifications.", + "name": "requestPermission_static", + "slug": "API/Notification/requestPermission_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/requestPermission_static", + "summary": "The requestPermission() static method of the Notification interface requests permission from the user for the current origin to display notifications.", "support": { "chrome": { "version_added": "20" @@ -879,7 +879,7 @@ } ], "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -889,7 +889,7 @@ "version_added": "79" } }, - "title": "Notification.requestPermission()" + "title": "Notification: requestPermission() static method" } ], "dom-notification-requireinteraction": [ @@ -932,7 +932,7 @@ "version_added": "79" } }, - "title": "Notification.requireInteraction" + "title": "Notification: requireInteraction property" } ], "dom-notification-onshow": [ @@ -989,7 +989,8 @@ "dom-notification-silent": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Notification.json", "name": "silent", @@ -1015,7 +1016,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1026,7 +1027,7 @@ "version_added": "79" } }, - "title": "Notification.silent" + "title": "Notification: silent property" } ], "dom-notification-tag": [ @@ -1067,7 +1068,8 @@ "version_added": "7" }, "safari_ios": { - "version_added": false + "version_added": false, + "notes": "This property is exposed but is not implemented. See <a href='https://webkit.org/b/258922'>WebKit bug 258922</a>." }, "samsunginternet_android": "mirror", "webview_android": { @@ -1077,7 +1079,7 @@ "version_added": "79" } }, - "title": "Notification.tag" + "title": "Notification: tag property" } ], "dom-notification-timestamp": [ @@ -1089,7 +1091,7 @@ "name": "timestamp", "slug": "API/Notification/timestamp", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notification/timestamp", - "summary": "The timestamp read-only property of the Notification interface returns a DOMTimeStamp, as specified in the timestamp option of the Notification() constructor.", + "summary": "The timestamp read-only property of the Notification interface returns a number, as specified in the timestamp option of the Notification() constructor.", "support": { "chrome": { "version_added": "50" @@ -1120,7 +1122,7 @@ "version_added": "79" } }, - "title": "Notification.timestamp" + "title": "Notification: timestamp property" } ], "dom-notification-title": [ @@ -1161,7 +1163,7 @@ "version_added": "11" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1171,7 +1173,7 @@ "version_added": "79" } }, - "title": "Notification.title" + "title": "Notification: title property" } ], "dom-notification-vibrate": [ @@ -1221,7 +1223,7 @@ "version_added": "79" } }, - "title": "Notification.vibrate" + "title": "Notification: vibrate property" } ], "api": [ @@ -1291,7 +1293,7 @@ "version_added": "7" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": { "version_added": "4.0", @@ -1320,7 +1322,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1358,7 +1361,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1368,7 +1371,7 @@ "version_added": "79" } }, - "title": "NotificationEvent()" + "title": "NotificationEvent: NotificationEvent() constructor" } ], "ref-for-dom-notificationevent-notification": [ @@ -1416,14 +1419,15 @@ "version_added": "79" } }, - "title": "NotificationEvent.notification" + "title": "NotificationEvent: notification property" } ], "notificationevent": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1461,7 +1465,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1634,7 +1638,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1668,7 +1673,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1679,14 +1684,15 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.getNotifications()" + "title": "ServiceWorkerRegistration: getNotifications() method" } ], "dom-serviceworkerregistration-shownotification": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1720,7 +1726,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1731,7 +1737,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.showNotification()" + "title": "ServiceWorkerRegistration: showNotification() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/numberformat.json b/bikeshed/spec-data/readonly/mdn/numberformat.json index 226ecdd769..2dc7f26d17 100644 --- a/bikeshed/spec-data/readonly/mdn/numberformat.json +++ b/bikeshed/spec-data/readonly/mdn/numberformat.json @@ -2,17 +2,17 @@ "proposed.html#sec-intl.numberformat.prototype.formatrange": [ { "engines": [ - "gecko", + "blink", "webkit" ], "filename": "javascript/builtins/Intl/NumberFormat.json", "name": "formatRange", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRange", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRange", - "summary": "The Intl.NumberFormat.prototype.formatRange() method formats a range of numbers according to the locale and formatting options of the Intl.NumberFormat object from which the method is called.", + "summary": "The formatRange() method of Intl.NumberFormat instances formats a range of numbers according to the locale and formatting options of this Intl.NumberFormat object.", "support": { "chrome": { - "version_added": false + "version_added": "106" }, "chrome_android": "mirror", "deno": { @@ -20,7 +20,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "preview" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -39,7 +39,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "106" } }, "title": "Intl.NumberFormat.prototype.formatRange()" @@ -48,17 +48,17 @@ "proposed.html#sec-intl.numberformat.prototype.formatrangetoparts": [ { "engines": [ - "gecko", + "blink", "webkit" ], "filename": "javascript/builtins/Intl/NumberFormat.json", "name": "formatRangeToParts", "slug": "JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRangeToParts", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatRangeToParts", - "summary": "The Intl.Numberformat.prototype.formatRangeToParts() method enables locale-aware formatting of strings produced by NumberFormat formatters.", + "summary": "The formatRangeToParts() method of Intl.NumberFormat instances returns an Array of objects containing the locale-specific tokens from which it is possible to build custom strings while preserving the locale-specific parts. This makes it possible to provide locale-aware custom formatting ranges of number strings.", "support": { "chrome": { - "version_added": false + "version_added": "106" }, "chrome_android": "mirror", "deno": { @@ -66,7 +66,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "preview" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -85,7 +85,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "106" } }, "title": "Intl.NumberFormat.prototype.formatRangeToParts()" diff --git a/bikeshed/spec-data/readonly/mdn/orientation-event.json b/bikeshed/spec-data/readonly/mdn/orientation-event.json index e2efbf9568..6e35190f4f 100644 --- a/bikeshed/spec-data/readonly/mdn/orientation-event.json +++ b/bikeshed/spec-data/readonly/mdn/orientation-event.json @@ -38,7 +38,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEvent()" + "title": "DeviceMotionEvent: DeviceMotionEvent() constructor" } ], "ref-for-dom-devicemotionevent-acceleration③": [ @@ -83,7 +83,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEvent.acceleration" + "title": "DeviceMotionEvent: acceleration property" } ], "ref-for-dom-devicemotionevent-accelerationincludinggravity④": [ @@ -128,7 +128,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEvent.accelerationIncludingGravity" + "title": "DeviceMotionEvent: accelerationIncludingGravity property" } ], "ref-for-dom-devicemotionevent-interval①": [ @@ -173,7 +173,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEvent.interval" + "title": "DeviceMotionEvent: interval property" } ], "ref-for-dom-devicemotionevent-rotationrate②": [ @@ -218,7 +218,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEvent.rotationRate" + "title": "DeviceMotionEvent: rotationRate property" } ], "devicemotion": [ @@ -351,7 +351,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEventAcceleration: x" + "title": "DeviceMotionEventAcceleration: x property" } ], "dom-devicemotioneventacceleration-y": [ @@ -396,7 +396,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEventAcceleration: y" + "title": "DeviceMotionEventAcceleration: y property" } ], "dom-devicemotioneventacceleration-z": [ @@ -441,7 +441,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEventAcceleration: z" + "title": "DeviceMotionEventAcceleration: z property" } ], "devicemotioneventacceleration": [ @@ -531,7 +531,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEventRotationRate: alpha" + "title": "DeviceMotionEventRotationRate: alpha property" } ], "dom-devicemotioneventrotationrate-beta": [ @@ -576,7 +576,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEventRotationRate: beta" + "title": "DeviceMotionEventRotationRate: beta property" } ], "dom-devicemotioneventrotationrate-gamma": [ @@ -621,7 +621,7 @@ "version_added": "79" } }, - "title": "DeviceMotionEventRotationRate: gamma" + "title": "DeviceMotionEventRotationRate: gamma property" } ], "devicemotioneventrotationrate": [ @@ -708,7 +708,7 @@ "version_added": "79" } }, - "title": "DeviceOrientationEvent()" + "title": "DeviceOrientationEvent: DeviceOrientationEvent() constructor" } ], "ref-for-dom-deviceorientationevent-absolute": [ @@ -750,7 +750,7 @@ "version_added": "79" } }, - "title": "DeviceOrientationEvent.absolute" + "title": "DeviceOrientationEvent: absolute property" } ], "ref-for-dom-deviceorientationevent-alpha③": [ @@ -797,7 +797,7 @@ "version_added": "79" } }, - "title": "DeviceOrientationEvent.alpha" + "title": "DeviceOrientationEvent: alpha property" } ], "ref-for-dom-deviceorientationevent-beta②": [ @@ -844,7 +844,7 @@ "version_added": "79" } }, - "title": "DeviceOrientationEvent.beta" + "title": "DeviceOrientationEvent: beta property" } ], "ref-for-dom-deviceorientationevent-gamma②": [ @@ -891,7 +891,7 @@ "version_added": "79" } }, - "title": "DeviceOrientationEvent.gamma" + "title": "DeviceOrientationEvent: gamma property" } ], "deviceorientation": [ @@ -905,7 +905,7 @@ "name": "DeviceOrientationEvent", "slug": "API/DeviceOrientationEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/DeviceOrientationEvent", - "summary": "Creates a new DeviceOrientationEvent.", + "summary": "The DeviceOrientationEvent object provides web developers with information from the physical orientation of the device running the web page.", "support": { "chrome": { "version_added": "7", diff --git a/bikeshed/spec-data/readonly/mdn/orientation-sensor.json b/bikeshed/spec-data/readonly/mdn/orientation-sensor.json index 911c914bd4..ed73046665 100644 --- a/bikeshed/spec-data/readonly/mdn/orientation-sensor.json +++ b/bikeshed/spec-data/readonly/mdn/orientation-sensor.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "AbsoluteOrientationSensor()" + "title": "AbsoluteOrientationSensor: AbsoluteOrientationSensor() constructor" } ], "absoluteorientationsensor-interface": [ @@ -113,7 +113,7 @@ "version_added": "79" } }, - "title": "OrientationSensor.populateMatrix()" + "title": "OrientationSensor: populateMatrix() method" } ], "orientationsensor-quaternion": [ @@ -152,7 +152,7 @@ "version_added": "79" } }, - "title": "OrientationSensor.quaternion" + "title": "OrientationSensor: quaternion property" } ], "orientationsensor-interface": [ @@ -230,7 +230,7 @@ "version_added": "79" } }, - "title": "RelativeOrientationSensor()" + "title": "RelativeOrientationSensor: RelativeOrientationSensor() constructor" } ], "relativeorientationsensor-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/page-lifecycle.json b/bikeshed/spec-data/readonly/mdn/page-lifecycle.json new file mode 100644 index 0000000000..7399fd47d8 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/page-lifecycle.json @@ -0,0 +1,108 @@ +{ + "feature-policies": [ + { + "engines": [ + "blink" + ], + "needsflag": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "execution-while-not-rendered", + "slug": "HTTP/Headers/Permissions-Policy/execution-while-not-rendered", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/execution-while-not-rendered", + "summary": "The HTTP Permissions-Policy header execution-while-not-rendered directive controls whether tasks should execute in frames while they're not being rendered (e.g. if an iframe is hidden or has display: none set).", + "support": { + "chrome": { + "version_added": true, + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": true, + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + } + }, + "title": "Permissions-Policy: execution-while-not-rendered" + }, + { + "engines": [ + "blink" + ], + "needsflag": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "execution-while-out-of-viewport", + "slug": "HTTP/Headers/Permissions-Policy/execution-while-out-of-viewport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/execution-while-out-of-viewport", + "summary": "The HTTP Permissions-Policy header execution-while-out-of-viewport directive controls whether tasks should execute in frames while they're outside of the visible viewport.", + "support": { + "chrome": { + "version_added": true, + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": true, + "flags": [ + { + "type": "runtime_flag", + "name": "--enable-blink-features=ExperimentalProductivityFeatures" + } + ] + } + }, + "title": "Permissions-Policy: execution-while-out-of-viewport" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/paint-timing.json b/bikeshed/spec-data/readonly/mdn/paint-timing.json index 8880f13597..5693d1503f 100644 --- a/bikeshed/spec-data/readonly/mdn/paint-timing.json +++ b/bikeshed/spec-data/readonly/mdn/paint-timing.json @@ -10,7 +10,7 @@ "name": "PerformancePaintTiming", "slug": "API/PerformancePaintTiming", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformancePaintTiming", - "summary": "The PerformancePaintTiming interface of the Paint Timing API provides timing information about \"paint\" (also called \"render\") operations during web page construction. \"Paint\" refers to conversion of the render tree to on-screen pixels.", + "summary": "The PerformancePaintTiming interface provides timing information about \"paint\" (also called \"render\") operations during web page construction. \"Paint\" refers to conversion of the render tree to on-screen pixels.", "support": { "chrome": { "version_added": "60" diff --git a/bikeshed/spec-data/readonly/mdn/payment-handler.json b/bikeshed/spec-data/readonly/mdn/payment-handler.json index 3168408651..4f8b82c042 100644 --- a/bikeshed/spec-data/readonly/mdn/payment-handler.json +++ b/bikeshed/spec-data/readonly/mdn/payment-handler.json @@ -1,4 +1,248 @@ { + "dom-canmakepaymentevent-constructor": [ + { + "engines": [ + "blink" + ], + "filename": "api/CanMakePaymentEvent.json", + "name": "CanMakePaymentEvent", + "slug": "API/CanMakePaymentEvent/CanMakePaymentEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CanMakePaymentEvent/CanMakePaymentEvent", + "summary": "The CanMakePaymentEvent() constructor creates a new CanMakePaymentEvent object instance.", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "CanMakePaymentEvent: CanMakePaymentEvent() constructor" + } + ], + "dom-canmakepaymentevent-respondwith": [ + { + "engines": [ + "blink" + ], + "filename": "api/CanMakePaymentEvent.json", + "name": "respondWith", + "slug": "API/CanMakePaymentEvent/respondWith", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CanMakePaymentEvent/respondWith", + "summary": "The respondWith() method of the CanMakePaymentEvent interface enables the service worker to respond appropriately to signal whether it is ready to handle payments.", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "CanMakePaymentEvent: respondWith() method" + } + ], + "the-canmakepaymentevent": [ + { + "engines": [ + "blink" + ], + "filename": "api/CanMakePaymentEvent.json", + "name": "CanMakePaymentEvent", + "slug": "API/CanMakePaymentEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CanMakePaymentEvent", + "summary": "The CanMakePaymentEvent interface of the Payment Handler API is the event object for the canmakepayment event, fired on a payment app's service worker to check whether it is ready to handle a payment. Specifically, it is fired when the merchant website calls new PaymentRequest().", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "CanMakePaymentEvent" + }, + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerGlobalScope.json", + "name": "canmakepayment_event", + "slug": "API/ServiceWorkerGlobalScope/canmakepayment_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/canmakepayment_event", + "summary": "The canmakepayment event of the ServiceWorkerGlobalScope interface is fired on a payment app's service worker to check whether it is ready to handle a payment. Specifically, it is fired when the merchant website calls new PaymentRequest().", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerGlobalScope: canmakepayment event" + } + ], + "dom-paymentmanager-userhint": [ + { + "engines": [ + "blink" + ], + "filename": "api/PaymentManager.json", + "name": "userHint", + "slug": "API/PaymentManager/userHint", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentManager/userHint", + "summary": "The userHint property of the PaymentManager interface provides a hint for the browser to display along with the payment app's name and icon in the Payment Handler UI.", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "PaymentManager: userHint property" + } + ], + "paymentmanager-interface": [ + { + "engines": [ + "blink" + ], + "filename": "api/PaymentManager.json", + "name": "PaymentManager", + "slug": "API/PaymentManager", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentManager", + "summary": "The PaymentManager interface of the Payment Handler API is used to manage various aspects of payment app functionality.", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "PaymentManager" + } + ], "dom-paymentrequestevent-constructor": [ { "engines": [ @@ -8,7 +252,7 @@ "name": "PaymentRequestEvent", "slug": "API/PaymentRequestEvent/PaymentRequestEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/PaymentRequestEvent", - "summary": "The PaymentRequestEvent constructor creates a new PaymentRequestEvent object which is a constructor for a PaymentRequestEvent which is the object passed to a payment handler when a PaymentRequest is made.", + "summary": "The PaymentRequestEvent constructor creates a new PaymentRequestEvent object instance.", "support": { "chrome": { "version_added": "70" @@ -37,7 +281,48 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent()" + "title": "PaymentRequestEvent: PaymentRequestEvent() constructor" + } + ], + "changepaymentmethod-method": [ + { + "engines": [ + "blink" + ], + "filename": "api/PaymentRequestEvent.json", + "name": "changePaymentMethod", + "slug": "API/PaymentRequestEvent/changePaymentMethod", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/changePaymentMethod", + "summary": "The changePaymentMethod() method of the PaymentRequestEvent interface is used by the payment handler to get an updated total, given such payment method details as the billing address.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "PaymentRequestEvent: changePaymentMethod() method" } ], "dom-paymentrequestevent-methoddata": [ @@ -49,7 +334,7 @@ "name": "methodData", "slug": "API/PaymentRequestEvent/methodData", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/methodData", - "summary": "The methodData read-only property of the PaymentRequestEvent interface returns an array of PaymentMethodData objects containing payment method identifiers for the payment methods that the web site accepts and any associated payment method specific data.", + "summary": "The methodData read-only property of the PaymentRequestEvent interface returns an array of PaymentMethodData objects containing payment method identifiers for the payment methods that the website accepts and any associated payment method-specific data.", "support": { "chrome": { "version_added": "70" @@ -78,7 +363,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.methodData" + "title": "PaymentRequestEvent: methodData property" } ], "dom-paymentrequestevent-modifiers": [ @@ -90,7 +375,7 @@ "name": "modifiers", "slug": "API/PaymentRequestEvent/modifiers", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/modifiers", - "summary": "The modifiers read-only property of the PaymentRequestEvent interface returns an array of objects containing changes to payment details.", + "summary": "The modifiers read-only property of the PaymentRequestEvent interface returns an array of PaymentDetailsModifier objects containing modifiers for payment details.", "support": { "chrome": { "version_added": "70" @@ -119,7 +404,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.modifiers" + "title": "PaymentRequestEvent: modifiers property" } ], "dom-paymentrequestevent-openwindow": [ @@ -131,7 +416,7 @@ "name": "openWindow", "slug": "API/PaymentRequestEvent/openWindow", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/openWindow", - "summary": "The openWindow property of the PaymentRequestEvent interface opens the specified URL in a new window, if and only if the given URL is on the same origin as the calling page. It returns a Promise that resolves with a reference to a WindowClient.", + "summary": "The openWindow() method of the PaymentRequestEvent interface opens the specified URL in a new window, only if the given URL is on the same origin as the calling page. It returns a Promise that resolves with a reference to a WindowClient.", "support": { "chrome": { "version_added": "70" @@ -160,7 +445,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.openWindow()" + "title": "PaymentRequestEvent: openWindow() method" } ], "dom-paymentrequestevent-paymentrequestid": [ @@ -201,7 +486,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.paymentRequestId" + "title": "PaymentRequestEvent: paymentRequestId property" } ], "dom-paymentrequestevent-paymentrequestorigin": [ @@ -242,7 +527,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.paymentRequestOrigin" + "title": "PaymentRequestEvent: paymentRequestOrigin property" } ], "dom-paymentrequestevent-respondwith": [ @@ -254,7 +539,7 @@ "name": "respondWith", "slug": "API/PaymentRequestEvent/respondWith", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/respondWith", - "summary": "The respondWith property of the PaymentRequestEvent interface prevents the default event handling and allows you to provide a Promise for a PaymentResponse object yourself.", + "summary": "The respondWith() method of the PaymentRequestEvent interface prevents the default event handling and allows you to provide a Promise for a PaymentResponse object yourself.", "support": { "chrome": { "version_added": "70" @@ -283,7 +568,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.respondWith()" + "title": "PaymentRequestEvent: respondWith() method" } ], "dom-paymentrequestevent-toporigin": [ @@ -295,7 +580,7 @@ "name": "topOrigin", "slug": "API/PaymentRequestEvent/topOrigin", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/topOrigin", - "summary": "The topOrigin read-only property of the PaymentRequestEvent interface returns the top level payee origin where the PaymentRequest object was initialized.", + "summary": "The topOrigin read-only property of the PaymentRequestEvent interface returns the top-level payee origin where the PaymentRequest object was initialized.", "support": { "chrome": { "version_added": "70" @@ -324,7 +609,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.topOrigin" + "title": "PaymentRequestEvent: topOrigin property" } ], "dom-paymentrequestevent-total": [ @@ -336,7 +621,7 @@ "name": "total", "slug": "API/PaymentRequestEvent/total", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequestEvent/total", - "summary": "The total readonly property of the PaymentRequestEvent interface returns a PaymentCurrencyAmount object containing the total amount being requested for payment.", + "summary": "The total read-only property of the PaymentRequestEvent interface returns a PaymentCurrencyAmount object containing the total amount being requested for payment.", "support": { "chrome": { "version_added": "70" @@ -365,7 +650,7 @@ "version_added": "79" } }, - "title": "PaymentRequestEvent.total" + "title": "PaymentRequestEvent: total property" } ], "the-paymentrequestevent": [ @@ -407,6 +692,86 @@ } }, "title": "PaymentRequestEvent" + }, + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerGlobalScope.json", + "name": "paymentrequest_event", + "slug": "API/ServiceWorkerGlobalScope/paymentrequest_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/paymentrequest_event", + "summary": "The paymentrequest event of the ServiceWorkerGlobalScope interface is fired on a payment app when a payment flow has been initiated on the merchant website via the PaymentRequest.show() method.", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerGlobalScope: paymentrequest event" + } + ], + "dom-serviceworkerregistration-paymentmanager": [ + { + "engines": [ + "blink" + ], + "filename": "api/ServiceWorkerRegistration.json", + "name": "paymentManager", + "slug": "API/ServiceWorkerRegistration/paymentManager", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/paymentManager", + "summary": "The paymentManager property of the ServiceWorkerRegistration interface returns a payment app's PaymentManager instance, which is used to manage various payment app functionality.", + "support": { + "chrome": { + "version_added": "70" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorkerRegistration: paymentManager property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/payment-request.json b/bikeshed/spec-data/readonly/mdn/payment-request.json index f80d833fd0..89a06c9a03 100644 --- a/bikeshed/spec-data/readonly/mdn/payment-request.json +++ b/bikeshed/spec-data/readonly/mdn/payment-request.json @@ -54,7 +54,7 @@ "version_added": "79" } }, - "title": "PaymentMethodChangeEvent()" + "title": "PaymentMethodChangeEvent: PaymentMethodChangeEvent() constructor" } ], "dom-paymentmethodchangeevent-methoddetails": [ @@ -112,7 +112,7 @@ "version_added": "79" } }, - "title": "PaymentMethodChangeEvent.methodDetails" + "title": "PaymentMethodChangeEvent: methodDetails property" } ], "dom-paymentmethodchangeevent-methodname": [ @@ -170,7 +170,7 @@ "version_added": "79" } }, - "title": "PaymentMethodChangeEvent.methodName" + "title": "PaymentMethodChangeEvent: methodName property" } ], "paymentmethodchangeevent-interface": [ @@ -287,7 +287,7 @@ "version_added": "79" } }, - "title": "PaymentRequest()" + "title": "PaymentRequest: PaymentRequest() constructor" } ], "dom-paymentrequest-abort": [ @@ -346,7 +346,7 @@ "version_added": "79" } }, - "title": "PaymentRequest.abort()" + "title": "PaymentRequest: abort() method" } ], "dom-paymentrequest-canmakepayment": [ @@ -405,7 +405,7 @@ "version_added": "79" } }, - "title": "PaymentRequest.canMakePayment()" + "title": "PaymentRequest: canMakePayment() method" } ], "dom-paymentrequest-id": [ @@ -460,7 +460,7 @@ "version_added": "79" } }, - "title": "PaymentRequest.id" + "title": "PaymentRequest: id property" } ], "dfn-paymentmethodchange": [ @@ -633,7 +633,7 @@ "version_added": "79" } }, - "title": "PaymentRequest.show()" + "title": "PaymentRequest: show() method" } ], "paymentrequest-interface": [ @@ -754,7 +754,7 @@ "version_added": "79" } }, - "title": "PaymentRequestUpdateEvent()" + "title": "PaymentRequestUpdateEvent: PaymentRequestUpdateEvent() constructor" } ], "dom-paymentrequestupdateevent-updatewith": [ @@ -811,7 +811,7 @@ "version_added": "79" } }, - "title": "PaymentRequestUpdateEvent.updateWith()" + "title": "PaymentRequestUpdateEvent: updateWith() method" } ], "paymentrequestupdateevent-interface": [ @@ -935,7 +935,7 @@ "version_added": "79" } }, - "title": "PaymentResponse.complete()" + "title": "PaymentResponse: complete() method" } ], "dom-paymentresponse-details": [ @@ -997,7 +997,7 @@ "version_added": "79" } }, - "title": "PaymentResponse.details" + "title": "PaymentResponse: details property" } ], "dom-paymentresponse-methodname": [ @@ -1059,7 +1059,7 @@ "version_added": "79" } }, - "title": "PaymentResponse.methodName" + "title": "PaymentResponse: methodName property" } ], "dom-paymentresponse-requestid": [ @@ -1121,7 +1121,7 @@ "version_added": "79" } }, - "title": "PaymentResponse.requestId" + "title": "PaymentResponse: requestId property" } ], "dom-paymentresponse-retry": [ @@ -1187,7 +1187,7 @@ "version_added": "79" } }, - "title": "PaymentResponse.retry()" + "title": "PaymentResponse: retry() method" } ], "paymentresponse-interface": [ @@ -1265,7 +1265,7 @@ "name": "payment", "slug": "HTTP/Headers/Feature-Policy/payment", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/payment", - "summary": "The HTTP Feature-Policy header field's payment directive controls whether the current document is allowed to use the Payment Request API. When this policy is disabled, the PaymentRequest() constructor will throw a SyntaxError DOMException.", + "summary": "The HTTP Permissions-Policy header field's payment directive controls whether the current document is allowed to use the Payment Request API.", "support": { "chrome": { "version_added": "60" @@ -1299,7 +1299,67 @@ "version_added": "79" } }, - "title": "Feature-Policy: payment" + "title": "Permissions-Policy: payment" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "payment", + "slug": "HTTP/Headers/Permissions-Policy/payment", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/payment", + "summary": "The HTTP Permissions-Policy header field's payment directive controls whether the current document is allowed to use the Payment Request API.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "60", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: payment", + "flags": [ + { + "type": "preference", + "name": "dom.security.featurePolicy.header.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: payment" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/performance-measure-memory.json b/bikeshed/spec-data/readonly/mdn/performance-measure-memory.json new file mode 100644 index 0000000000..5e8352c830 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/performance-measure-memory.json @@ -0,0 +1,47 @@ +{ + "ref-for-dom-performance-measureuseragentspecificmemory⑤": [ + { + "engines": [ + "blink" + ], + "filename": "api/Performance.json", + "name": "measureUserAgentSpecificMemory", + "slug": "API/Performance/measureUserAgentSpecificMemory", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/measureUserAgentSpecificMemory", + "summary": "The measureUserAgentSpecificMemory() method is used to estimate the memory usage of a web application including all its iframes and workers.", + "support": { + "chrome": { + "version_added": "89" + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "89" + } + }, + "title": "Performance: measureUserAgentSpecificMemory() method" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/performance-timeline.json b/bikeshed/spec-data/readonly/mdn/performance-timeline.json index 64e2ce58bb..3ed88bdb4b 100644 --- a/bikeshed/spec-data/readonly/mdn/performance-timeline.json +++ b/bikeshed/spec-data/readonly/mdn/performance-timeline.json @@ -10,7 +10,7 @@ "name": "getEntries", "slug": "API/Performance/getEntries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/getEntries", - "summary": "The getEntries() method returns a list of all PerformanceEntry objects for the page. The list's members (entries) can be created by making performance marks or measures (for example by calling the mark() method) at explicit points in time. If you are only interested in performance entries of certain types or that have certain names, see getEntriesByType() and getEntriesByName().", + "summary": "The getEntries() method returns an array of all PerformanceEntry objects currently present in the performance timeline.", "support": { "chrome": [ { @@ -65,7 +65,7 @@ } ] }, - "title": "performance.getEntries()" + "title": "Performance: getEntries() method" } ], "dom-performance-getentriesbyname": [ @@ -79,7 +79,7 @@ "name": "getEntriesByName", "slug": "API/Performance/getEntriesByName", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/getEntriesByName", - "summary": "The getEntriesByName() method returns a list of PerformanceEntry objects for the given name and type. The list's members (entries) can be created by making performance marks or measures (for example by calling the mark() method) at explicit points in time.", + "summary": "The getEntriesByName() method returns an array of PerformanceEntry objects currently present in the performance timeline with the given name and type.", "support": { "chrome": [ { @@ -134,7 +134,7 @@ } ] }, - "title": "performance.getEntriesByName()" + "title": "Performance: getEntriesByName() method" } ], "dom-performance-getentriesbytype": [ @@ -148,7 +148,7 @@ "name": "getEntriesByType", "slug": "API/Performance/getEntriesByType", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/getEntriesByType", - "summary": "The getEntriesByType() method returns a list of PerformanceEntry objects for a given type. The list's members (entries) can be created by making performance marks or measures (for example by calling the mark() method) at explicit points in time.", + "summary": "The getEntriesByType() method returns an array of PerformanceEntry objects currently present in the performance timeline for a given type.", "support": { "chrome": [ { @@ -199,7 +199,7 @@ } ] }, - "title": "performance.getEntriesByType()" + "title": "Performance: getEntriesByType() method" } ], "extensions-to-the-performance-interface": [ @@ -213,7 +213,7 @@ "name": "Performance", "slug": "API/Performance", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance", - "summary": "The Performance interface provides access to performance-related information for the current page. It's part of the High Resolution Time API, but is enhanced by the Performance Timeline API, the Navigation Timing API, the User Timing API, and the Resource Timing API.", + "summary": "The Performance interface provides access to performance-related information for the current page.", "support": { "chrome": { "version_added": "6" @@ -268,7 +268,7 @@ "name": "duration", "slug": "API/PerformanceEntry/duration", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration", - "summary": "The duration property returns a timestamp that is the duration of the performance entry.", + "summary": "The read-only duration property returns a timestamp that is the duration of the performance entry. The meaning of this property depends on the value of this entry's entryType.", "support": { "chrome": { "version_added": "28" @@ -305,7 +305,7 @@ "version_added": "79" } }, - "title": "PerformanceEntry.duration" + "title": "PerformanceEntry: duration property" } ], "dom-performanceentry-entrytype": [ @@ -319,7 +319,7 @@ "name": "entryType", "slug": "API/PerformanceEntry/entryType", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType", - "summary": "The entryType property returns a string representing the type of performance metric such as, for example, \"mark\". This property is read only.", + "summary": "The read-only entryType property returns a string representing the type of performance metric that this entry represents.", "support": { "chrome": { "version_added": "28" @@ -356,7 +356,7 @@ "version_added": "79" } }, - "title": "PerformanceEntry.entryType" + "title": "PerformanceEntry: entryType property" } ], "dom-performanceentry-name": [ @@ -370,7 +370,7 @@ "name": "name", "slug": "API/PerformanceEntry/name", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name", - "summary": "The name property of the PerformanceEntry interface returns a value that further specifies the value returned by the PerformanceEntry.entryType property. This property is read only.", + "summary": "The read-only name property of the PerformanceEntry interface is a string representing the name for a performance entry. It acts as an identifier, but it does not have to be unique. The value depends on the subclass.", "support": { "chrome": { "version_added": "28" @@ -407,7 +407,7 @@ "version_added": "79" } }, - "title": "PerformanceEntry.name" + "title": "PerformanceEntry: name property" } ], "dom-performanceentry-starttime": [ @@ -421,7 +421,7 @@ "name": "startTime", "slug": "API/PerformanceEntry/startTime", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime", - "summary": "The startTime property returns the first recorded timestamp of the performance entry.", + "summary": "The read-only startTime property returns the first timestamp recorded for this performance entry. The meaning of this property depends on the value of this entry's entryType.", "support": { "chrome": { "version_added": "28" @@ -458,7 +458,7 @@ "version_added": "79" } }, - "title": "PerformanceEntry.startTime" + "title": "PerformanceEntry: startTime property" } ], "dom-performanceentry-tojson": [ @@ -472,7 +472,7 @@ "name": "toJSON", "slug": "API/PerformanceEntry/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/toJSON", - "summary": "The toJSON() method is a serializer; it returns a JSON representation of the performance entry object.", + "summary": "The toJSON() method is a serializer; it returns a JSON representation of the PerformanceEntry object.", "support": { "chrome": { "version_added": "45" @@ -507,7 +507,7 @@ "version_added": "79" } }, - "title": "PerformanceEntry.toJSON()" + "title": "PerformanceEntry: toJSON() method" } ], "dom-performanceentry": [ @@ -521,7 +521,7 @@ "name": "PerformanceEntry", "slug": "API/PerformanceEntry", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry", - "summary": "The PerformanceEntry object encapsulates a single performance metric that is part of the performance timeline. A performance entry can be directly created by making a performance mark or measure (for example by calling the mark() method) at an explicit point in an application. Performance entries are also created in indirect ways such as loading a resource (such as an image).", + "summary": "The PerformanceEntry object encapsulates a single performance metric that is part of the browser's performance timeline.", "support": { "chrome": [ { @@ -612,7 +612,7 @@ "version_added": "79" } }, - "title": "PerformanceObserver()" + "title": "PerformanceObserver: PerformanceObserver() constructor" } ], "dom-performanceobserver-disconnect": [ @@ -658,7 +658,7 @@ "version_added": "79" } }, - "title": "PerformanceObserver.disconnect()" + "title": "PerformanceObserver: disconnect() method" } ], "dom-performanceobserver-observe": [ @@ -702,7 +702,7 @@ "version_added": "79" } }, - "title": "PerformanceObserver.observe()" + "title": "PerformanceObserver: observe() method" } ], "supportedentrytypes-attribute": [ @@ -713,9 +713,9 @@ "webkit" ], "filename": "api/PerformanceObserver.json", - "name": "supportedEntryTypes", - "slug": "API/PerformanceObserver/supportedEntryTypes", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserver/supportedEntryTypes", + "name": "supportedEntryTypes_static", + "slug": "API/PerformanceObserver/supportedEntryTypes_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserver/supportedEntryTypes_static", "summary": "The static supportedEntryTypes read-only property of the PerformanceObserver interface returns an array of the entryType values supported by the user agent.", "support": { "chrome": { @@ -746,7 +746,7 @@ "version_added": "79" } }, - "title": "PerformanceObserver.supportedEntryTypes" + "title": "PerformanceObserver: supportedEntryTypes static property" } ], "dom-performanceobserver-takerecords": [ @@ -790,7 +790,7 @@ "version_added": "79" } }, - "title": "PerformanceObserver.takeRecords()" + "title": "PerformanceObserver: takeRecords() method" } ], "dom-performanceobserver": [ @@ -850,7 +850,7 @@ "name": "getEntries", "slug": "API/PerformanceObserverEntryList/getEntries", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserverEntryList/getEntries", - "summary": "The getEntries() method of the PerformanceObserverEntryList interface returns a list of explicitly observed performance entry objects for a given filter. The list's members are determined by the set of entry types specified in the call to the observe() method. The list is available in the observer's callback function (as the first parameter in the callback).", + "summary": "The getEntries() method of the PerformanceObserverEntryList interface returns a list of explicitly observed performance entry objects. The list's members are determined by the set of entry types specified in the call to the observe() method. The list is available in the observer's callback function (as the first parameter in the callback).", "support": { "chrome": { "version_added": "52" @@ -880,7 +880,7 @@ "version_added": "79" } }, - "title": "PerformanceObserverEntryList.getEntries()" + "title": "PerformanceObserverEntryList: getEntries() method" } ], "dom-performanceobserverentrylist-getentriesbyname": [ @@ -924,7 +924,7 @@ "version_added": "79" } }, - "title": "PerformanceObserverEntryList.getEntriesByName()" + "title": "PerformanceObserverEntryList: getEntriesByName() method" } ], "dom-performanceobserverentrylist-getentriesbytype": [ @@ -968,7 +968,7 @@ "version_added": "79" } }, - "title": "PerformanceObserverEntryList.getEntriesByType()" + "title": "PerformanceObserverEntryList: getEntriesByType() method" } ], "performanceobserverentrylist-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/periodic-background-sync.json b/bikeshed/spec-data/readonly/mdn/periodic-background-sync.json index aaa7d5c10f..1be556ebf3 100644 --- a/bikeshed/spec-data/readonly/mdn/periodic-background-sync.json +++ b/bikeshed/spec-data/readonly/mdn/periodic-background-sync.json @@ -30,12 +30,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } }, - "title": "PeriodicSyncEvent()" + "title": "PeriodicSyncEvent: PeriodicSyncEvent() constructor" } ], "dom-periodicsyncevent-tag": [ @@ -69,12 +71,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } }, - "title": "PeriodicSyncEvent.tag" + "title": "PeriodicSyncEvent: tag property" } ], "periodicsync-event": [ @@ -108,7 +112,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } @@ -186,12 +192,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } }, - "title": "PeriodicSyncManager.getTags()" + "title": "PeriodicSyncManager: getTags() method" } ], "dom-periodicsyncmanager-register": [ @@ -225,12 +233,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } }, - "title": "PeriodicSyncManager.register()" + "title": "PeriodicSyncManager: register() method" } ], "dom-periodicsyncmanager-unregister": [ @@ -264,12 +274,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } }, - "title": "PeriodicSyncManager.unregister()" + "title": "PeriodicSyncManager: unregister() method" } ], "periodicsyncmanager-interface": [ @@ -303,7 +315,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "80" } @@ -388,7 +402,7 @@ "version_added": "80" } }, - "title": "ServiceWorkerRegistration.periodicSync" + "title": "ServiceWorkerRegistration: periodicSync property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/permissions-policy.json b/bikeshed/spec-data/readonly/mdn/permissions-policy.json index de8df096d7..2d872e526b 100644 --- a/bikeshed/spec-data/readonly/mdn/permissions-policy.json +++ b/bikeshed/spec-data/readonly/mdn/permissions-policy.json @@ -12,7 +12,7 @@ "name": "Feature-Policy", "slug": "HTTP/Headers/Feature-Policy", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy", - "summary": "The HTTP Feature-Policy header provides a mechanism to allow and deny the use of browser features in its own frame, and in content within any <iframe> elements in the document.", + "summary": "The HTTP Permissions-Policy header provides a mechanism to allow and deny the use of browser features in a document or within any <iframe> elements in the document.", "support": { "chrome": { "version_added": "60" @@ -43,7 +43,66 @@ "version_added": "79" } }, - "title": "Feature-Policy" + "title": "Permissions-Policy" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko", + "webkit" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "Permissions-Policy", + "slug": "HTTP/Headers/Permissions-Policy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy", + "summary": "The HTTP Permissions-Policy header provides a mechanism to allow and deny the use of browser features in a document or within any <iframe> elements in the document.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "60", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1", + "alternative_name": "Feature-Policy", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/permissions.json b/bikeshed/spec-data/readonly/mdn/permissions.json index c5d3f59fca..ee281764aa 100644 --- a/bikeshed/spec-data/readonly/mdn/permissions.json +++ b/bikeshed/spec-data/readonly/mdn/permissions.json @@ -40,14 +40,15 @@ "version_added": "79" } }, - "title": "Navigator.permissions" + "title": "Navigator: permissions property" } ], "dom-permissionstatus-onchange": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PermissionStatus.json", "name": "change_event", @@ -71,7 +72,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -125,7 +126,7 @@ "version_added": "97" } }, - "title": "PermissionStatus.name" + "title": "PermissionStatus: name property" } ], "dom-permissionstatus-state": [ @@ -182,7 +183,7 @@ } ] }, - "title": "PermissionStatus.state" + "title": "PermissionStatus: state property" } ], "permissionstatus-interface": [ @@ -269,7 +270,7 @@ "version_added": "79" } }, - "title": "Permissions.query()" + "title": "Permissions: query() method" } ], "permissions-interface": [ @@ -319,7 +320,8 @@ "dom-workernavigator-permissions": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WorkerNavigator.json", "name": "permissions", @@ -343,7 +345,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -355,7 +357,7 @@ "version_added": "79" } }, - "title": "WorkerNavigator.permissions" + "title": "WorkerNavigator: permissions property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/picture-in-picture.json b/bikeshed/spec-data/readonly/mdn/picture-in-picture.json index c9a3c6ac30..cdbf3f029d 100644 --- a/bikeshed/spec-data/readonly/mdn/picture-in-picture.json +++ b/bikeshed/spec-data/readonly/mdn/picture-in-picture.json @@ -33,12 +33,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "Document.exitPictureInPicture()" + "title": "Document: exitPictureInPicture() method" } ], "ref-for-dom-documentorshadowroot-pictureinpictureelement①⑤": [ @@ -75,12 +77,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "Document.pictureInPictureElement" + "title": "Document: pictureInPictureElement property" }, { "engines": [ @@ -120,7 +124,7 @@ "version_added": "79" } }, - "title": "ShadowRoot.pictureInPictureElement" + "title": "ShadowRoot: pictureInPictureElement property" } ], "ref-for-dom-document-pictureinpictureenabled": [ @@ -157,51 +161,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "Document.pictureInPictureEnabled" - } - ], - "auto-pip": [ - { - "engines": [ - "webkit" - ], - "filename": "api/HTMLVideoElement.json", - "name": "autoPictureInPicture", - "slug": "API/HTMLVideoElement/autoPictureInPicture", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement/autoPictureInPicture", - "summary": "The HTMLVideoElement autoPictureInPicture property reflects the HTML attribute indicating whether the video should enter or leave picture-in-picture mode automatically.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { + "webview_android": { "version_added": false }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "13.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "79" } }, - "title": "HTMLVideoElement.autoPictureInPicture" + "title": "Document: pictureInPictureEnabled property" } ], "disable-pip": [ @@ -214,7 +181,7 @@ "name": "disablePictureInPicture", "slug": "API/HTMLVideoElement/disablePictureInPicture", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement/disablePictureInPicture", - "summary": "The HTMLVideoElement disablePictureInPicture property reflects the HTML attribute indicating whether the user agent should suggest the picture-in-picture feature to users, or request it automatically.", + "summary": "The HTMLVideoElement disablePictureInPicture property reflects the HTML attribute indicating whether the picture-in-picture feature is disabled for the current element.", "support": { "chrome": { "version_added": "69" @@ -238,12 +205,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "HTMLVideoElement.disablePictureInPicture" + "title": "HTMLVideoElement: disablePictureInPicture property" } ], "eventdef-htmlvideoelement-enterpictureinpicture": [ @@ -280,7 +249,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -322,7 +293,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -364,7 +337,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -406,7 +381,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -448,12 +425,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "HTMLVideoElement.requestPictureInPicture()" + "title": "HTMLVideoElement: requestPictureInPicture() method" } ], "dom-pictureinpictureevent-pictureinpictureevent": [ @@ -503,7 +482,9 @@ ], "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": [ { "version_added": "85" @@ -515,7 +496,7 @@ } ] }, - "title": "PictureInPictureEvent()" + "title": "PictureInPictureEvent: PictureInPictureEvent() constructor" } ], "event-types": [ @@ -565,7 +546,9 @@ ], "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": [ { "version_added": "85" @@ -614,12 +597,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "PictureInPictureWindow.height" + "title": "PictureInPictureWindow: height property" } ], "eventdef-pictureinpicturewindow-resize": [ @@ -656,7 +641,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -698,7 +685,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -740,12 +729,14 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } }, - "title": "PictureInPictureWindow.width" + "title": "PictureInPictureWindow: width property" } ], "interface-picture-in-picture-window": [ @@ -782,7 +773,9 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": false + }, "edge_blink": { "version_added": "79" } @@ -790,7 +783,7 @@ "title": "PictureInPictureWindow" } ], - "feature-policy": [ + "permissions-policy": [ { "engines": [ "blink" @@ -799,7 +792,7 @@ "name": "picture-in-picture", "slug": "HTTP/Headers/Feature-Policy/picture-in-picture", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/picture-in-picture", - "summary": "The HTTP Feature-Policy header picture-in-picture directive controls whether the current document is allowed to play a video in a Picture-in-Picture mode via the corresponding API.", + "summary": "The HTTP Permissions-Policy header picture-in-picture directive controls whether the current document is allowed to play a video in a Picture-in-Picture mode.", "support": { "chrome": { "version_added": "71" @@ -832,7 +825,62 @@ "version_added": "79" } }, - "title": "Feature-Policy: picture-in-picture" + "title": "Permissions-Policy: picture-in-picture" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "picture-in-picture", + "slug": "HTTP/Headers/Permissions-Policy/picture-in-picture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/picture-in-picture", + "summary": "The HTTP Permissions-Policy header picture-in-picture directive controls whether the current document is allowed to play a video in a Picture-in-Picture mode.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "71", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": { + "version_added": false + }, + "edge": { + "version_added": false + }, + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": false + }, + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: picture-in-picture" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/pluralrules.json b/bikeshed/spec-data/readonly/mdn/pluralrules.json index 373c5fc9f9..2f1ff1c0fe 100644 --- a/bikeshed/spec-data/readonly/mdn/pluralrules.json +++ b/bikeshed/spec-data/readonly/mdn/pluralrules.json @@ -2,17 +2,17 @@ "proposed.html#sec-intl.pluralrules.prototype.selectrange": [ { "engines": [ - "gecko", + "blink", "webkit" ], "filename": "javascript/builtins/Intl/PluralRules.json", "name": "selectRange", "slug": "JavaScript/Reference/Global_Objects/Intl/PluralRules/selectRange", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/PluralRules/selectRange", - "summary": "The Intl.PluralRules.prototype.selectRange() method receives two values and returns a string indicating which plural rule to use for locale-aware formatting.", + "summary": "The selectRange() method of Intl.PluralRules instances receives two values and returns a string indicating which plural rule to use for locale-aware formatting.", "support": { "chrome": { - "version_added": false + "version_added": "106" }, "chrome_android": "mirror", "deno": { @@ -20,7 +20,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "preview" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -39,7 +39,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "106" } }, "title": "Intl.PluralRules.prototype.selectRange()" diff --git a/bikeshed/spec-data/readonly/mdn/pointerevents.json b/bikeshed/spec-data/readonly/mdn/pointerevents.json index 5d9c8a8037..680d8ac4ac 100644 --- a/bikeshed/spec-data/readonly/mdn/pointerevents.json +++ b/bikeshed/spec-data/readonly/mdn/pointerevents.json @@ -305,7 +305,7 @@ "version_added": "79" } }, - "title": "Element.hasPointerCapture()" + "title": "Element: hasPointerCapture() method" } ], "the-pointercancel-event": [ @@ -1022,6 +1022,84 @@ "title": "Element: pointerover event" } ], + "the-pointerrawupdate-event": [ + { + "engines": [ + "blink" + ], + "filename": "api/Element.json", + "name": "pointerrawupdate_event", + "slug": "API/Element/pointerrawupdate_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/pointerrawupdate_event", + "summary": "The pointerrawupdate PointerEvent is fired when a pointer changes any properties that don't fire pointerdown or pointerup events. See pointermove for a list of these properties.", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Element: pointerrawupdate event" + } + ], + "dom-globaleventhandlers-onpointerrawupdate": [ + { + "engines": [ + "blink" + ], + "filename": "api/Element.json", + "name": "pointerrawupdate_event", + "slug": "API/Element/pointerrawupdate_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/pointerrawupdate_event", + "summary": "The pointerrawupdate PointerEvent is fired when a pointer changes any properties that don't fire pointerdown or pointerup events. See pointermove for a list of these properties.", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "Element: pointerrawupdate event" + } + ], "the-pointerup-event": [ { "engines": [ @@ -1172,7 +1250,7 @@ "version_added": "79" } }, - "title": "Element.releasePointerCapture()" + "title": "Element: releasePointerCapture() method" } ], "dom-element-setpointercapture": [ @@ -1225,7 +1303,7 @@ "version_added": "79" } }, - "title": "Element.setPointerCapture()" + "title": "Element: setPointerCapture() method" } ], "extensions-to-the-element-interface": [ @@ -1325,7 +1403,7 @@ "version_added": "79" } }, - "title": "Navigator.maxTouchPoints" + "title": "Navigator: maxTouchPoints property" } ], "dom-pointerevent-constructor": [ @@ -1378,7 +1456,7 @@ "version_added": "79" } }, - "title": "PointerEvent()" + "title": "PointerEvent: PointerEvent() constructor" } ], "dom-pointerevent-getcoalescedevents": [ @@ -1394,7 +1472,7 @@ "name": "getCoalescedEvents", "slug": "API/PointerEvent/getCoalescedEvents", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/getCoalescedEvents", - "summary": "The getCoalescedEvents() method of the PointerEvent interface returns a sequence of all PointerEvent instances that were coalesced into the dispatched pointermove event.", + "summary": "The getCoalescedEvents() method of the PointerEvent interface returns a sequence of PointerEvent instances that were coalesced (merged) into a single pointermove or pointerrawupdate event. Instead of a stream of many pointermove events, user agents coalesce multiple updates into a single event. This helps with performance as the user agent has less event handling to perform, but there is a reduction in the granularity and accuracy when tracking, especially with fast and large movements.", "support": { "chrome": { "version_added": "58" @@ -1425,7 +1503,7 @@ "version_added": "79" } }, - "title": "PointerEvent.getCoalescedEvents()" + "title": "PointerEvent: getCoalescedEvents() method" } ], "dom-pointerevent-height": [ @@ -1477,7 +1555,7 @@ "version_added": "79" } }, - "title": "PointerEvent.height" + "title": "PointerEvent: height property" } ], "dom-pointerevent-isprimary": [ @@ -1522,7 +1600,7 @@ "version_added": "79" } }, - "title": "PointerEvent.isPrimary" + "title": "PointerEvent: isPrimary property" } ], "dom-pointerevent-pointerid": [ @@ -1567,7 +1645,7 @@ "version_added": "79" } }, - "title": "PointerEvent.pointerId" + "title": "PointerEvent: pointerId property" } ], "dom-pointerevent-pointertype": [ @@ -1619,7 +1697,7 @@ "version_added": "79" } }, - "title": "PointerEvent.pointerType" + "title": "PointerEvent: pointerType property" } ], "dom-pointerevent-pressure": [ @@ -1671,7 +1749,7 @@ "version_added": "79" } }, - "title": "PointerEvent.pressure" + "title": "PointerEvent: pressure property" } ], "dom-pointerevent-tangentialpressure": [ @@ -1714,7 +1792,7 @@ "version_added": "79" } }, - "title": "PointerEvent.tangentialPressure" + "title": "PointerEvent: tangentialPressure property" } ], "dom-pointerevent-tiltx": [ @@ -1759,7 +1837,7 @@ "version_added": "79" } }, - "title": "PointerEvent.tiltX" + "title": "PointerEvent: tiltX property" } ], "dom-pointerevent-tilty": [ @@ -1804,7 +1882,7 @@ "version_added": "79" } }, - "title": "PointerEvent.tiltY" + "title": "PointerEvent: tiltY property" } ], "dom-pointerevent-twist": [ @@ -1849,7 +1927,7 @@ "version_added": "79" } }, - "title": "PointerEvent.twist" + "title": "PointerEvent: twist property" } ], "dom-pointerevent-width": [ @@ -1901,7 +1979,7 @@ "version_added": "79" } }, - "title": "PointerEvent.width" + "title": "PointerEvent: width property" } ], "pointerevent-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/pointerlock.json b/bikeshed/spec-data/readonly/mdn/pointerlock.json index 948229ae69..a5f59aba0e 100644 --- a/bikeshed/spec-data/readonly/mdn/pointerlock.json +++ b/bikeshed/spec-data/readonly/mdn/pointerlock.json @@ -45,7 +45,9 @@ "safari": { "version_added": "10.1" }, - "safari_ios": "mirror", + "safari_ios": { + "version_added": false + }, "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": [ @@ -58,7 +60,7 @@ } ] }, - "title": "Document.exitPointerLock()" + "title": "Document: exitPointerLock() method" } ], "pointerlockchange-and-pointerlockerror-events": [ @@ -275,7 +277,7 @@ }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": "13" }, "firefox": [ { @@ -306,7 +308,7 @@ "version_added": "79" } }, - "title": "Document.pointerLockElement" + "title": "Document: pointerLockElement property" }, { "engines": [ @@ -347,7 +349,7 @@ "version_added": "79" } }, - "title": "ShadowRoot.pointerLockElement" + "title": "ShadowRoot: pointerLockElement property" } ], "dom-document-onpointerlockerror": [ @@ -540,7 +542,7 @@ } ] }, - "title": "Element.requestPointerLock()" + "title": "Element: requestPointerLock() method" } ], "extensions-to-the-element-interface": [ @@ -678,7 +680,7 @@ } ] }, - "title": "MouseEvent.movementX" + "title": "MouseEvent: movementX property" } ], "dom-mouseevent-movementy": [ @@ -767,7 +769,7 @@ } ] }, - "title": "MouseEvent.movementY" + "title": "MouseEvent: movementY property" } ], "extensions-to-the-mouseevent-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/presentation-api.json b/bikeshed/spec-data/readonly/mdn/presentation-api.json index c0b38c4fba..91caa60c2e 100644 --- a/bikeshed/spec-data/readonly/mdn/presentation-api.json +++ b/bikeshed/spec-data/readonly/mdn/presentation-api.json @@ -38,7 +38,7 @@ "version_added": "79" } }, - "title": "Navigator.presentation" + "title": "Navigator: presentation property" } ], "dom-presentation-defaultrequest": [ @@ -79,7 +79,7 @@ "version_added": "79" } }, - "title": "Presentation.defaultRequest" + "title": "Presentation: defaultRequest property" } ], "dom-presentation-receiver": [ @@ -120,7 +120,7 @@ "version_added": "79" } }, - "title": "Presentation.receiver" + "title": "Presentation: receiver property" } ], "interface-presentation": [ @@ -202,7 +202,7 @@ "version_added": "79" } }, - "title": "PresentationAvailability.value" + "title": "PresentationAvailability: value property" } ], "interface-presentationavailability": [ @@ -284,7 +284,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.binaryType" + "title": "PresentationConnection: binaryType property" } ], "dom-presentationconnection-close": [ @@ -325,7 +325,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.close()" + "title": "PresentationConnection: close() method" } ], "dom-presentationconnection-id": [ @@ -366,7 +366,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.id" + "title": "PresentationConnection: id property" } ], "dom-presentationconnection-send": [ @@ -407,7 +407,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.send()" + "title": "PresentationConnection: send() method" } ], "dom-presentationconnection-state": [ @@ -448,7 +448,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.state" + "title": "PresentationConnection: state property" } ], "dom-presentationconnection-terminate": [ @@ -489,7 +489,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.terminate()" + "title": "PresentationConnection: terminate() method" } ], "dom-presentationconnection-url": [ @@ -530,7 +530,7 @@ "version_added": "79" } }, - "title": "PresentationConnection.url" + "title": "PresentationConnection: url property" } ], "interface-presentationconnection": [ @@ -583,7 +583,7 @@ "name": "PresentationConnectionAvailableEvent", "slug": "API/PresentationConnectionAvailableEvent/PresentationConnectionAvailableEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PresentationConnectionAvailableEvent/PresentationConnectionAvailableEvent", - "summary": "A string with the name of the event. It is case-sensitive and browsers set it to connectionavailable.", + "summary": "The PresentationConnectionAvailableEvent() constructor creates a new PresentationConnectionAvailableEvent object.", "support": { "chrome": { "version_added": "47" @@ -612,7 +612,7 @@ "version_added": "79" } }, - "title": "PresentationConnectionAvailableEvent()" + "title": "PresentationConnectionAvailableEvent: PresentationConnectionAvailableEvent() constructor" } ], "dom-presentationconnectionavailableevent-connection": [ @@ -653,7 +653,7 @@ "version_added": "79" } }, - "title": "PresentationConnectionAvailableEvent.connection" + "title": "PresentationConnectionAvailableEvent: connection property" } ], "interface-presentationconnectionavailableevent": [ @@ -858,7 +858,7 @@ "version_added": "79" } }, - "title": "PresentationRequest()" + "title": "PresentationRequest: PresentationRequest() constructor" } ], "getting-the-presentation-displays-availability-information": [ @@ -899,7 +899,7 @@ "version_added": "79" } }, - "title": "PresentationRequest.getAvailability()" + "title": "PresentationRequest: getAvailability() method" } ], "reconnecting-to-a-presentation": [ @@ -940,7 +940,7 @@ "version_added": "79" } }, - "title": "PresentationRequest.reconnect()" + "title": "PresentationRequest: reconnect() method" } ], "selecting-a-presentation-display": [ @@ -981,7 +981,7 @@ "version_added": "79" } }, - "title": "PresentationRequest.start()" + "title": "PresentationRequest: start() method" } ], "interface-presentationrequest": [ diff --git a/bikeshed/spec-data/readonly/mdn/priority-hints.json b/bikeshed/spec-data/readonly/mdn/priority-hints.json index 8aa4b93182..6dd96459d4 100644 --- a/bikeshed/spec-data/readonly/mdn/priority-hints.json +++ b/bikeshed/spec-data/readonly/mdn/priority-hints.json @@ -6,7 +6,7 @@ "name": "fetchPriority", "slug": "API/HTMLIFrameElement/fetchPriority", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/fetchPriority", - "summary": "The fetchPriority property of the HTMLIFrameElement interface represents a hint given to the browser on how it should prioritize the fetch of the iframe document relative to other iframe documents.", + "summary": "The HTMLIFrameElement interface provides special properties and methods (beyond those of the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of inline frame elements.", "support": { "chrome": { "version_added": false, @@ -35,7 +35,7 @@ "notes": "See <a href='https://crbug.com/1345601'>bug 1345601</a>." } }, - "title": "HTMLIFrameElement.fetchPriority" + "title": "HTMLIFrameElement" } ], "img": [ @@ -88,7 +88,7 @@ } ] }, - "title": "HTMLImageElement.fetchPriority" + "title": "HTMLImageElement: fetchPriority property" } ], "link": [ @@ -141,7 +141,7 @@ } ] }, - "title": "HTMLLinkElement.fetchPriority" + "title": "HTMLLinkElement: fetchPriority property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/proposal-array-from-async.json b/bikeshed/spec-data/readonly/mdn/proposal-array-from-async.json new file mode 100644 index 0000000000..5881ec0f4b --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/proposal-array-from-async.json @@ -0,0 +1,48 @@ +{ + "sec-array.fromAsync": [ + { + "engines": [ + "gecko", + "webkit" + ], + "filename": "javascript/builtins/Array.json", + "name": "fromAsync", + "slug": "JavaScript/Reference/Global_Objects/Array/fromAsync", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/fromAsync", + "summary": "The Array.fromAsync() static method creates a new, shallow-copied Array instance from an async iterable, iterable, or array-like object.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Array.fromAsync()" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/proposal-array-grouping.json b/bikeshed/spec-data/readonly/mdn/proposal-array-grouping.json index c949149955..2707bed671 100644 --- a/bikeshed/spec-data/readonly/mdn/proposal-array-grouping.json +++ b/bikeshed/spec-data/readonly/mdn/proposal-array-grouping.json @@ -2,6 +2,10 @@ "sec-array.prototype.group": [ { "engines": [ + "gecko", + "webkit" + ], + "needsflag": [ "gecko" ], "filename": "javascript/builtins/Array.json", @@ -19,11 +23,16 @@ }, "edge": "mirror", "firefox": { - "version_added": "preview" - }, - "firefox_android": { - "version_added": false + "version_added": "98", + "flags": [ + { + "type": "preference", + "name": "javascript.options.experimental.array_grouping", + "value_to_set": "true" + } + ] }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -34,7 +43,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -49,6 +58,10 @@ "sec-array.prototype.grouptomap": [ { "engines": [ + "gecko", + "webkit" + ], + "needsflag": [ "gecko" ], "filename": "javascript/builtins/Array.json", @@ -66,11 +79,16 @@ }, "edge": "mirror", "firefox": { - "version_added": "preview" - }, - "firefox_android": { - "version_added": false + "version_added": "98", + "flags": [ + { + "type": "preference", + "name": "javascript.options.experimental.array_grouping", + "value_to_set": "true" + } + ] }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -81,7 +99,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/proposal-atomics-wait-async.json b/bikeshed/spec-data/readonly/mdn/proposal-atomics-wait-async.json index 17de407e4c..edd4143a9b 100644 --- a/bikeshed/spec-data/readonly/mdn/proposal-atomics-wait-async.json +++ b/bikeshed/spec-data/readonly/mdn/proposal-atomics-wait-async.json @@ -2,13 +2,14 @@ "atomics.waitasync": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "javascript/builtins/Atomics.json", "name": "waitAsync", "slug": "JavaScript/Reference/Global_Objects/Atomics/waitAsync", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/waitAsync", - "summary": "The static Atomics.waitAsync() method waits asynchronously on a shared memory location and returns a Promise.", + "summary": "The Atomics.waitAsync() static method waits asynchronously on a shared memory location and returns a Promise.", "support": { "chrome": { "version_added": "87" @@ -36,7 +37,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/proposal-intl-duration-format b/bikeshed/spec-data/readonly/mdn/proposal-intl-duration-format new file mode 100644 index 0000000000..5b10050e05 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/proposal-intl-duration-format @@ -0,0 +1,89 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-type" content="text/html; charset=utf-8"> + <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src 'unsafe-inline'; img-src data:; connect-src 'self'"> + <title>Page not found &middot; GitHub Pages</title> + <style type="text/css" media="screen"> + body { + background-color: #f1f1f1; + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + } + + .container { margin: 50px auto 40px auto; width: 600px; text-align: center; } + + a { color: #4183c4; text-decoration: none; } + a:hover { text-decoration: underline; } + + h1 { width: 800px; position:relative; left: -100px; letter-spacing: -1px; line-height: 60px; font-size: 60px; font-weight: 100; margin: 0px 0 50px 0; text-shadow: 0 1px 0 #fff; } + p { color: rgba(0, 0, 0, 0.5); margin: 20px 0; line-height: 1.6; } + + ul { list-style: none; margin: 25px 0; padding: 0; } + li { display: table-cell; font-weight: bold; width: 1%; } + + .logo { display: inline-block; margin-top: 35px; } + .logo-img-2x { display: none; } + @media + only screen and (-webkit-min-device-pixel-ratio: 2), + only screen and ( min--moz-device-pixel-ratio: 2), + only screen and ( -o-min-device-pixel-ratio: 2/1), + only screen and ( min-device-pixel-ratio: 2), + only screen and ( min-resolution: 192dpi), + only screen and ( min-resolution: 2dppx) { + .logo-img-1x { display: none; } + .logo-img-2x { display: inline-block; } + } + + #suggestions { + margin-top: 35px; + color: #ccc; + } + #suggestions a { + color: #666666; + font-weight: 200; + font-size: 14px; + margin: 0 10px; + } + + </style> + </head> + <body> + + <div class="container"> + + <h1>404</h1> + <p><strong>File not found</strong></p> + + <p> + The site configured at this address does not + contain the requested file. + </p> + + <p> + If this is your site, make sure that the filename case matches the URL + as well as any file permissions.<br> + For root URLs (like <code>http://example.com/</code>) you must provide an + <code>index.html</code> file. + </p> + + <p> + <a href="https://help.github.com/pages/">Read the full documentation</a> + for more information about using <strong>GitHub Pages</strong>. + </p> + + <div id="suggestions"> + <a href="https://githubstatus.com">GitHub Status</a> &mdash; + <a href="https://twitter.com/githubstatus">@githubstatus</a> + </div> + + <a href="/" class="logo logo-img-1x"> + <img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMTZCRDY3REIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMTZCRDY3RUIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdCQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjdDQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SM9MCAAAA+5JREFUeNrEV11Ik1EY3s4+ddOp29Q5b0opCgKFsoKoi5Kg6CIhuwi6zLJLoYLopq4qsKKgi4i6CYIoU/q5iDAKs6syoS76IRWtyJ+p7cdt7sf1PGOD+e0c3dygAx/67ZzzPM95/877GYdHRg3ZjMXFxepQKNS6sLCwJxqNNuFpiMfjVs4ZjUa/pmmjeD6VlJS8NpvNT4QQ7mxwjSsJiEQim/1+/9lgMHgIr5ohuxG1WCw9Vqv1clFR0dCqBODElV6v90ogEDjGdYbVjXhpaendioqK07CIR7ZAqE49PT09BPL2PMgTByQGsYiZlQD4uMXtdr+JxWINhgINYhGT2MsKgMrm2dnZXgRXhaHAg5jEJodUAHxux4LudHJE9RdEdA+i3Juz7bGHe4mhE9FNrgwBCLirMFV9Okh5eflFh8PR5nK5nDabrR2BNJlKO0T35+Li4n4+/J+/JQCxhmu5h3uJoXNHPbmWZAHMshWB8l5/ipqammaAf0zPDDx1ONV3vurdidqwAQL+pEc8sLcAe1CCvQ3YHxIW8Pl85xSWNC1hADDIv0rIE/o4J0k3kww4xSlwIhcq3EFFOm7KN/hUGOQkt0CFa5WpNJlMvxBEz/IVQAxg/ZRZl9wiHA63yDYieM7DnLP5CiAGsC7I5sgtYKJGWe2A8seFqgFJrJjEPY1Cn3pJ8/9W1e5VWsFDTEmFrBcoDhZJEQkXuhICMyKpjhahqN21hRYATKfUOlDmkygrR4o4C0VOLGJKrOITKB4jijzdXygBKixyC5TDQdnk/Pz8qRw6oOWGlsTKGOQW6OH6FBWsyePxdOXLTgxiyebILZCjz+GLgMIKnXNzc49YMlcRdHXcSwxFVgTInQhC9G33UhNoJLuqq6t345p9y3eUy8OTk5PjAHuI9uo4b07FBaOhsu0A4Unc+T1TU1Nj3KsSSE5yJ65jqF2DDd8QqWYmAZrIM2VlZTdnZmb6AbpdV9V6ec9znf5Q7HjYumdRE0JOp3MjitO4SFa+cZz8Umqe3TCbSLvdfkR/kWDdNQl5InuTcysOcpFT35ZrbBxx4p3JAHlZVVW1D/634VRt+FvLBgK/v5LV9WS+10xMTEwtRw7XvqOL+e2Q8V3AYIOIAXQ26/heWVnZCVfcyKHg2CBgTpmPmjYM8l24GyaUHyaIh7XwfR9ErE8qHoDfn2LTNAVC0HX6MFcBIP8Bi+6F6cdW/DICkANRfx99fEYFQ7Nph5i/uQiA214gno7K+guhaiKg9gC62+M8eR7XsBsYJ4ilam60Fb7r7uAj8wFyuwM1oIOWgfmDy6RXEEQzJMPe23DXrVS7rtyD3Df8z/FPgAEAzWU5Ku59ZAUAAAAASUVORK5CYII="> + </a> + + <a href="/" class="logo logo-img-2x"> + <img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEQUM1QkUxRUI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEQUM1QkUxRkI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdGQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjgwQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+hfPRaQAAB6lJREFUeNrsW2mME2UYbodtt+2222u35QheoCCYGBQligIJgkZJNPzgigoaTEj8AdFEMfADfyABkgWiiWcieK4S+QOiHAYUj2hMNKgYlEujpNttu9vttbvdw+chU1K6M535pt3ubHCSyezR+b73eb73+t7vrfXsufOW4bz6+vom9/b23ovnNNw34b5xYGAgODg46Mbt4mesVmsWd1qSpHhdXd2fuP/Afcput5/A88xwymcdBgLqenp6FuRyuWV4zu/v759QyWBjxoz5t76+/gun09mK5xFyakoCAPSaTCazNpvNPoYVbh6O1YKGRF0u13sNDQ27QMzfpiAAKj0lnU6/gBVfAZW2WWpwwVzy0IgP3G73FpjI6REhAGA9qVRqA1b9mVoBVyIC2tDi8Xg24+dUzQiAbS/s7Ox8G2o/3mKCC+Zw0efzPQEfcVjYrARX3dbV1bUtHo8fMgt42f+Mp0yUTVQbdWsAHVsikdiHkHaPxcQXQufXgUBgMRxme9U0AAxfH4vFvjM7eF6UkbJS5qoQwEQGA57Ac5JllFyUVZZ5ckUEgMVxsK2jlSYzI+QXJsiyjzNEAJyJAzb/KQa41jJKL8pODMQiTEAymXw5n8/P0IjD3bh7Rgog59aanxiIRTVvV/oj0tnHca/WMrVwODwB3raTGxzkBg/gnZVapFV62Wy2n5AO70HM/5wbJ0QnXyQSaVPDIuNZzY0V3ntHMwxiwHA0Gj2Np7ecIBDgaDAYXKCQJM1DhrgJ3nhulcPbl8j4NmHe46X/g60fwbz3aewjkqFQaAqebWU1AOqyQwt8Id6qEHMc97zu7u7FGGsn7HAiVuosVw7P35C1nccdgSCxop1dHeZswmfHMnxBo6ZTk+jN8dl/vF7vWofDsa+MLN9oEUBMxOb3+1eoEsBVw6Zmua49r8YmhAKDiEPcMwBsxMiqQ+ixzPFxZyqRpXARG/YOr1ObFJ0gUskXBbamcR1OKmMUvDxHRAu8/LmY3jFLMUpFqz9HxG65smYJdyKyECOxDiEAe/p1gjF2oonivZAsxVgl2daa4EQWCW6J55qFAFFZiJWYLxNQy2qOSUzGRsyXCUDIeliwAHEO4WSlWQBRFoZakXcKmCXmyXAKs0Ve9vl8q42WoIYpJU4hV3hKcNs8m9gl7p/xQ73eF5kB4j5mNrWmTJRNwAzqiV1CxjVTZCIkEq+Z1bZFZSN2CenmVAFVy4Plz8xKAGWjjAKFk6lCBMDR/MJjLLMSQNm43xAiQKTaA+9/wewhDjL+JVI1kkTSSOTcKbMTwPqESAot6dn6Fr1gHwVJju6IRuyiByPuUUBAg5DGkAgBmxlvdgIEK9gDkohdY/BJo4CAG0R8miRSsGABkgVQs4KXu098IgUXSSRsFAoKZiVAVDY2WUiiPTjYRi41KwGisrGsLtlsth8Fiwnz2fBkQvWfRtlE3iF2yW63/yCacXZ1dW02GwGyTFaRd4idJnCKHRaCxYRHoG5LTKT6SyiToP1fJHbmAYPYRR0UnZQtMnA6s0zg+GZBlt0Gdo7EPHgpE3Q6nZ8YyLhc8Xj8MJh/aKTAY+5FPAKHLE7RdwuYJZmNwzyCMkBCYyKROJBMJl9B/PXXCjjmCmDOVzH3fiPpObEWGqoKe4EBl8v1hlqsdLvd23mkxHM9pc9kMpmno9HoeTii7ewbHEZPPx1ztLS1tV3AnGuMjiNjvbQFuHw6zDo5By7dTPAQNBgMLrRarTkSls1mnwT7uwp9virx9QzbW/HuV/j5d/b+6jniKlllP8lkeONJDk+dq9GsQTnC4fB1heO0K47Hwe7WdDr9nAKgXwOBwHI+C45Htj1d6sd429TUNEcmUdc+PRaLHcvn87dXW4ugzdsaGxufL94NFv9zi1J7GVbhlvb2dnaJ3SVrxfc+n2+NTsZ7/H7/Mr3g5XdSIHyJSH1PZ+7fToyl2+ErqilgZ4NaLYB9goVGaHjR93Hv1ZrU4XDsFT20kH3PObzbWk0CgG1jacVIUnAQb9F+VexyLMzkpcLv0IJV7AHQIOCAUYHx7v5qgScmYHtTqSAyZLEJTK22Bie4iq3xsqpm4SAf9Hq9a2DnJ4uLK3SEULcdRvp3i3zHySqpficxEdsQc1NrlYXXvR+O7qASSezXB+h1SuUomgg9LL8BUoV4749EIolKh+EiqWmqVEZlDgHks2pxHw7xTqUQw9J5NcAXOK10AGIoZ6Zli6JY6Z1Q461KoZ4NiKLHarW+KDsxlDUPHZ5zPQZqUVDPJsTqb5n9malbpAh8C2XXDLl62+WZIDFRUlNVOiwencnNU3aQEkL+cDMSoLvZo2fQB7AJssNAuFuvorlDVVkkg2I87+jo2K2QAVphDrfyViK5VqtO34OkaxXCp+7drdDBCAdubm6eidX+2WwqT5komwh4YQLk+H4aE93h8Xg2gvHekQZOGSgLZTLyDTLJ4Lx9/KZWKBSainT4Iy3FqQBfnUZR42PKQFksBr9QKVXCPusD3OiA/RkQ5kP8qV/Jl1WywAp/6+dcmPM2zL1UrUahe4JqfnWWKXIul3uUbfP8njAFLW1OFr3gdFtZ72cNH+PtQT7/brW+NXqJAHh0y9V8/U/A1U7AfwIMAD7mS3pCbuWJAAAAAElFTkSuQmCC"> + </a> + </div> + </body> +</html> diff --git a/bikeshed/spec-data/readonly/mdn/proposal-intl-enumeration.json b/bikeshed/spec-data/readonly/mdn/proposal-intl-enumeration.json index 2c15a42be1..414cfe454d 100644 --- a/bikeshed/spec-data/readonly/mdn/proposal-intl-enumeration.json +++ b/bikeshed/spec-data/readonly/mdn/proposal-intl-enumeration.json @@ -10,14 +10,14 @@ "name": "supportedValuesOf", "slug": "JavaScript/Reference/Global_Objects/Intl/supportedValuesOf", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf", - "summary": "The Intl.supportedValuesOf() method returns an array containing the supported calendar, collation, currency, numbering systems, or unit values supported by the implementation.", + "summary": "The Intl.supportedValuesOf() static method returns an array containing the supported calendar, collation, currency, numbering systems, or unit values supported by the implementation.", "support": { "chrome": { "version_added": "99" }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -28,7 +28,7 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0" }, "oculus": "mirror", "opera": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/proposal-intl-locale-info.json b/bikeshed/spec-data/readonly/mdn/proposal-intl-locale-info.json index b149f2038d..aa584da388 100644 --- a/bikeshed/spec-data/readonly/mdn/proposal-intl-locale-info.json +++ b/bikeshed/spec-data/readonly/mdn/proposal-intl-locale-info.json @@ -1,22 +1,26 @@ { - "sec-Intl.Locale.prototype.calendars": [ + "sec-Intl.Locale.prototype.getCalendars": [ { "engines": [ - "blink", "webkit" ], + "altname": [ + "blink" + ], "filename": "javascript/builtins/Intl/Locale.json", - "name": "calendars", - "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/calendars", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/calendars", - "summary": "The Intl.Locale.prototype.calendars property is an accessor property which returns an array of one or more unique calendar identifiers for the Locale.", + "name": "getCalendars", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars", + "summary": "The getCalendars() method of Intl.Locale instances returns a list of one or more unique calendar identifiers for this locale.", "support": { "chrome": { - "version_added": "99" + "version_added": "99", + "alternative_name": "calendars", + "notes": "Implemented as an accessor property." }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -27,42 +31,58 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0", + "alternative_name": "calendars", + "notes": "Implemented as an accessor property." }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "calendars", + "notes": "Implemented as an accessor property." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "99" + "version_added": "99", + "alternative_name": "calendars", + "notes": "Implemented as an accessor property." } }, - "title": "Intl.Locale.prototype.calendars" + "title": "Intl.Locale.prototype.getCalendars()" } ], - "sec-Intl.Locale.prototype.hourCycles": [ + "sec-Intl.Locale.prototype.getCollations": [ { "engines": [ - "blink", "webkit" ], + "altname": [ + "blink" + ], "filename": "javascript/builtins/Intl/Locale.json", - "name": "hourCycles", - "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/hourCycles", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/hourCycles", - "summary": "The Intl.Locale.prototype.hourCycles property is an accessor property which returns a list of one or more unique hour cycle identifiers for the Locale.", + "name": "getCollations", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getCollations", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCollations", + "summary": "The getCollations() method of Intl.Locale instances returns a list of one or more collation types for this locale.", "support": { "chrome": { - "version_added": "99" + "version_added": "99", + "alternative_name": "collations", + "notes": "Implemented as an accessor property." }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -73,42 +93,58 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0", + "alternative_name": "collations", + "notes": "Implemented as an accessor property." }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "collations", + "notes": "Implemented as an accessor property." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "99" + "version_added": "99", + "alternative_name": "collations", + "notes": "Implemented as an accessor property." } }, - "title": "Intl.Locale.prototype.hourCycles" + "title": "Intl.Locale.prototype.getCollations()" } ], - "sec-Intl.Locale.prototype.numberingSystems": [ + "sec-Intl.Locale.prototype.getHourCycles": [ { "engines": [ - "blink", "webkit" ], + "altname": [ + "blink" + ], "filename": "javascript/builtins/Intl/Locale.json", - "name": "numberingSystems", - "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/numberingSystems", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/numberingSystems", - "summary": "The Intl.Locale.prototype.numberingSystems property is an accessor property that returns one or more unique numbering system identifiers according to the numeral system used by the Locale.", + "name": "getHourCycles", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getHourCycles", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getHourCycles", + "summary": "The getHourCycles() method of Intl.Locale instances returns a list of one or more unique hour cycle identifiers for this locale.", "support": { "chrome": { - "version_added": "99" + "version_added": "99", + "alternative_name": "hourCycles", + "notes": "Implemented as an accessor property." }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -119,42 +155,58 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0", + "alternative_name": "hourCycles", + "notes": "Implemented as an accessor property." }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "hourCycles", + "notes": "Implemented as an accessor property." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "99" + "version_added": "99", + "alternative_name": "hourCycles", + "notes": "Implemented as an accessor property." } }, - "title": "Intl.Locale.prototype.numberingSystems" + "title": "Intl.Locale.prototype.getHourCycles()" } ], - "sec-Intl.Locale.prototype.textInfo": [ + "sec-Intl.Locale.prototype.getNumberingSystems": [ { "engines": [ - "blink", "webkit" ], + "altname": [ + "blink" + ], "filename": "javascript/builtins/Intl/Locale.json", - "name": "textInfo", - "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/textInfo", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/textInfo", - "summary": "The Intl.Locale.prototype.textInfo property is an accessor property which returns the ordering of characters indicated by either ltr (left-to-right) or by rtl (right-to-left) for the associated Locale.", + "name": "getNumberingSystems", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getNumberingSystems", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getNumberingSystems", + "summary": "The getNumberingSystems() method of Intl.Locale instances returns a list of one or more unique numbering system identifiers for this locale.", "support": { "chrome": { - "version_added": "99" + "version_added": "99", + "alternative_name": "numberingSystems", + "notes": "Implemented as an accessor property." }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -165,42 +217,58 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0", + "alternative_name": "numberingSystems", + "notes": "Implemented as an accessor property." }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "numberingSystems", + "notes": "Implemented as an accessor property." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "99" + "version_added": "99", + "alternative_name": "numberingSystems", + "notes": "Implemented as an accessor property." } }, - "title": "Intl.Locale.prototype.textInfo" + "title": "Intl.Locale.prototype.getNumberingSystems()" } ], - "sec-Intl.Locale.prototype.timeZones": [ + "sec-Intl.Locale.prototype.getTextInfo": [ { "engines": [ - "blink", "webkit" ], + "altname": [ + "blink" + ], "filename": "javascript/builtins/Intl/Locale.json", - "name": "timeZones", - "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/timeZones", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/timeZones", - "summary": "The Intl.Locale.prototype.timeZones property is an accessor property which returns an array of supported time zones for a chosen Locale.", + "name": "getTextInfo", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getTextInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getTextInfo", + "summary": "The getTextInfo() method of Intl.Locale instances returns the ordering of characters indicated by either ltr (left-to-right) or by rtl (right-to-left) for this locale.", "support": { "chrome": { - "version_added": "99" + "version_added": "99", + "alternative_name": "textInfo", + "notes": "Implemented as an accessor property." }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -211,42 +279,58 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0", + "alternative_name": "textInfo", + "notes": "Implemented as an accessor property." }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15.4" - }, + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "textInfo", + "notes": "Implemented as an accessor property." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "99" + "version_added": "99", + "alternative_name": "textInfo", + "notes": "Implemented as an accessor property." } }, - "title": "Intl.Locale.prototype.timeZones" + "title": "Intl.Locale.prototype.getTextInfo()" } ], - "sec-Intl.Locale.prototype.weekInfo": [ + "sec-Intl.Locale.prototype.getTimeZones": [ { "engines": [ - "blink", "webkit" ], + "altname": [ + "blink" + ], "filename": "javascript/builtins/Intl/Locale.json", - "name": "weekInfo", - "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/weekInfo", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/weekInfo", - "summary": "The Intl.Locale.prototype.weekInfo property is an accessor property which returns a weekInfo object with the properties firstDay, weekend and minimalDays for the associated Locale.", + "name": "getTimeZones", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getTimeZones", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getTimeZones", + "summary": "The getTimeZones() method of Intl.Locale instances returns a list of supported time zones for this locale.", "support": { "chrome": { - "version_added": "99" + "version_added": "99", + "alternative_name": "timeZones", + "notes": "Implemented as an accessor property." }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.19" }, "edge": "mirror", "firefox": { @@ -257,22 +341,96 @@ "version_added": false }, "nodejs": { - "version_added": false + "version_added": "18.0.0", + "alternative_name": "timeZones", + "notes": "Implemented as an accessor property." }, "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "15.4" + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "timeZones", + "notes": "Implemented as an accessor property." + } + ], + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "99", + "alternative_name": "timeZones", + "notes": "Implemented as an accessor property." + } + }, + "title": "Intl.Locale.prototype.getTimeZones()" + } + ], + "sec-Intl.Locale.prototype.getWeekInfo": [ + { + "engines": [ + "webkit" + ], + "altname": [ + "blink" + ], + "filename": "javascript/builtins/Intl/Locale.json", + "name": "getWeekInfo", + "slug": "JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo", + "summary": "The getWeekInfo() method of Intl.Locale instances returns a weekInfo object with the properties firstDay, weekend and minimalDays for this locale.", + "support": { + "chrome": { + "version_added": "99", + "alternative_name": "weekInfo", + "notes": "Implemented as an accessor property." + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.19" }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "18.0.0", + "alternative_name": "weekInfo", + "notes": "Implemented as an accessor property." + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": [ + { + "version_added": "preview" + }, + { + "version_added": "15.4", + "version_removed": "preview", + "alternative_name": "weekInfo", + "notes": "Implemented as an accessor property." + } + ], "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "99" + "version_added": "99", + "alternative_name": "weekInfo", + "notes": "Implemented as an accessor property." } }, - "title": "Intl.Locale.prototype.weekInfo" + "title": "Intl.Locale.prototype.getWeekInfo()" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/proposal-is-usv-string.json b/bikeshed/spec-data/readonly/mdn/proposal-is-usv-string.json new file mode 100644 index 0000000000..879ce8d845 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/proposal-is-usv-string.json @@ -0,0 +1,94 @@ +{ + "sec-string.prototype.iswellformed": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/String.json", + "name": "isWellFormed", + "slug": "JavaScript/Reference/Global_Objects/String/isWellFormed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/isWellFormed", + "summary": "The isWellFormed() method of String values returns a boolean indicating whether this string contains any lone surrogates.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.32" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "String.prototype.isWellFormed()" + } + ], + "sec-string.prototype.towellformed": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/String.json", + "name": "toWellFormed", + "slug": "JavaScript/Reference/Global_Objects/String/toWellFormed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toWellFormed", + "summary": "The toWellFormed() method of String values returns a string where all lone surrogates of this string are replaced with the Unicode replacement character U+FFFD.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.32" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "String.prototype.toWellFormed()" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/proposal-regexp-legacy-features.json b/bikeshed/spec-data/readonly/mdn/proposal-regexp-legacy-features.json index 29a4cd5e3a..cd4c66472f 100644 --- a/bikeshed/spec-data/readonly/mdn/proposal-regexp-legacy-features.json +++ b/bikeshed/spec-data/readonly/mdn/proposal-regexp-legacy-features.json @@ -10,7 +10,7 @@ "name": "n", "slug": "JavaScript/Reference/Global_Objects/RegExp/n", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/n", - "summary": "The legacy RegExp $1, $2, $3, $4, $5, $6, $7, $8, $9 properties are static and read-only properties of regular expressions that contain parenthesized substring matches.", + "summary": "The RegExp.$1, …, RegExp.$9 static accessor properties return parenthesized substring matches.", "support": { "chrome": { "version_added": "1" @@ -49,7 +49,7 @@ "version_added": "79" } }, - "title": "RegExp.$1-$9" + "title": "RegExp.$1, …, RegExp.$9" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/proposal-resizablearraybuffer.json b/bikeshed/spec-data/readonly/mdn/proposal-resizablearraybuffer.json new file mode 100644 index 0000000000..126b772e7f --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/proposal-resizablearraybuffer.json @@ -0,0 +1,284 @@ +{ + "sec-get-arraybuffer.prototype.maxbytelength": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/ArrayBuffer.json", + "name": "maxByteLength", + "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/maxByteLength", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/maxByteLength", + "summary": "The maxByteLength accessor property of ArrayBuffer instances returns the maximum length (in bytes) that this array buffer can be resized to.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ArrayBuffer.prototype.maxByteLength" + } + ], + "sec-get-arraybuffer.prototype.resizable": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/ArrayBuffer.json", + "name": "resizable", + "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/resizable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resizable", + "summary": "The resizable accessor property of ArrayBuffer instances returns whether this array buffer can be resized or not.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ArrayBuffer.prototype.resizable" + } + ], + "sec-arraybuffer.prototype.resize": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/ArrayBuffer.json", + "name": "resize", + "slug": "JavaScript/Reference/Global_Objects/ArrayBuffer/resize", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resize", + "summary": "The resize() method of ArrayBuffer instances resizes the ArrayBuffer to the specified size, in bytes.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "111" + } + }, + "title": "ArrayBuffer.prototype.resize()" + } + ], + "sec-sharedarraybuffer.prototype.grow": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/SharedArrayBuffer.json", + "name": "grow", + "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/grow", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/grow", + "summary": "The grow() method of SharedArrayBuffer instances grows the SharedArrayBuffer to the specified size, in bytes.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "111" + } + }, + "title": "SharedArrayBuffer.prototype.grow()" + } + ], + "sec-get-sharedarraybuffer.prototype.growable": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/SharedArrayBuffer.json", + "name": "growable", + "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/growable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/growable", + "summary": "The growable accessor property of SharedArrayBuffer instances returns whether this SharedArrayBuffer can be grow or not.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "111" + } + }, + "title": "SharedArrayBuffer.prototype.growable" + } + ], + "sec-get-sharedarraybuffer.prototype.maxbytelength": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "javascript/builtins/SharedArrayBuffer.json", + "name": "maxByteLength", + "slug": "JavaScript/Reference/Global_Objects/SharedArrayBuffer/maxByteLength", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/maxByteLength", + "summary": "The maxByteLength accessor property of SharedArrayBuffer instances returns the maximum length (in bytes) that this SharedArrayBuffer can be grown to.", + "support": { + "chrome": { + "version_added": "111" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "111" + } + }, + "title": "SharedArrayBuffer.prototype.maxByteLength" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/push-api.json b/bikeshed/spec-data/readonly/mdn/push-api.json index a592216f86..f45d4f8554 100644 --- a/bikeshed/spec-data/readonly/mdn/push-api.json +++ b/bikeshed/spec-data/readonly/mdn/push-api.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -43,7 +44,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -53,14 +54,15 @@ "version_added": "79" } }, - "title": "PushEvent()" + "title": "PushEvent: PushEvent() constructor" } ], "dom-pushevent-data": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -96,7 +98,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -106,14 +108,15 @@ "version_added": "79" } }, - "title": "PushEvent.data" + "title": "PushEvent: data property" } ], "pushevent-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -153,7 +156,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -171,7 +174,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -207,7 +211,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -217,14 +221,15 @@ "version_added": "79" } }, - "title": "PushManager.getSubscription()" + "title": "PushManager: getSubscription() method" } ], "dom-pushmanager-permissionstate": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -260,7 +265,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -270,14 +275,15 @@ "version_added": "79" } }, - "title": "PushManager.permissionState()" + "title": "PushManager: permissionState() method" } ], "dom-pushmanager-subscribe": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -320,7 +326,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -331,23 +337,23 @@ "notes": "The <code>options</code> parameter with a <code>applicationServerKey</code> value is required." } }, - "title": "PushManager.subscribe()" + "title": "PushManager: subscribe() method" } ], "dom-pushmanager-supportedcontentencodings": [ { "engines": [ "blink", - "gecko" + "webkit" ], "partial": [ "webkit" ], "filename": "api/PushManager.json", - "name": "supportedContentEncodings", - "slug": "API/PushManager/supportedContentEncodings", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PushManager/supportedContentEncodings", - "summary": "The supportedContentEncodings read-only property of the PushManager interface returns an array of supported content codings that can be used to encrypt the payload of a push message.", + "name": "supportedContentEncodings_static", + "slug": "API/PushManager/supportedContentEncodings_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PushManager/supportedContentEncodings_static", + "summary": "The supportedContentEncodings read-only static property of the PushManager interface returns an array of supported content codings that can be used to encrypt the payload of a push message.", "support": { "chrome": { "version_added": "60" @@ -357,11 +363,9 @@ "version_added": "17" }, "firefox": { - "version_added": "44" - }, - "firefox_android": { - "version_added": "48" + "version_added": false }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -374,7 +378,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": { "version_added": "4.0" @@ -386,14 +390,15 @@ "version_added": "79" } }, - "title": "PushManager.supportedContentEncodings" + "title": "PushManager: supportedContentEncodings static property" } ], "pushmanager-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -429,7 +434,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -447,7 +452,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -483,7 +489,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -493,14 +499,15 @@ "version_added": "79" } }, - "title": "PushMessageData.arrayBuffer()" + "title": "PushMessageData: arrayBuffer() method" } ], "dom-pushmessagedata-blob": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -536,7 +543,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -546,14 +553,15 @@ "version_added": "79" } }, - "title": "PushMessageData.blob()" + "title": "PushMessageData: blob() method" } ], "dom-pushmessagedata-json": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -589,7 +597,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -599,14 +607,15 @@ "version_added": "79" } }, - "title": "PushMessageData.json()" + "title": "PushMessageData: json() method" } ], "dom-pushmessagedata-text": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -642,7 +651,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -652,14 +661,15 @@ "version_added": "79" } }, - "title": "PushMessageData.text()" + "title": "PushMessageData: text() method" } ], "pushmessagedata-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -695,7 +705,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -713,7 +723,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -749,7 +760,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -759,14 +770,15 @@ "version_added": "79" } }, - "title": "PushSubscription.endpoint" + "title": "PushSubscription: endpoint property" } ], "dom-pushsubscription-expirationtime": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -800,7 +812,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -810,14 +822,15 @@ "version_added": "79" } }, - "title": "PushSubscription.expirationTime" + "title": "PushSubscription: expirationTime property" } ], "dom-pushsubscription-getkey": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -853,7 +866,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -863,14 +876,15 @@ "version_added": "79" } }, - "title": "PushSubscription.getKey()" + "title": "PushSubscription: getKey() method" } ], "dom-pushsubscription-options": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -906,7 +920,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -916,14 +930,15 @@ "version_added": "79" } }, - "title": "PushSubscription.options" + "title": "PushSubscription: options property" } ], "dom-pushsubscription-tojson": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -961,7 +976,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -971,14 +986,15 @@ "version_added": "79" } }, - "title": "PushSubscription.toJSON()" + "title": "PushSubscription: toJSON() method" } ], "dom-pushsubscription-unsubscribe": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1016,7 +1032,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1026,14 +1042,15 @@ "version_added": "79" } }, - "title": "PushSubscription.unsubscribe()" + "title": "PushSubscription: unsubscribe() method" } ], "pushsubscription-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1069,7 +1086,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1087,7 +1104,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1123,7 +1141,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1133,13 +1151,14 @@ "version_added": "79" } }, - "title": "PushSubscriptionOptions.applicationServerKey" + "title": "PushSubscriptionOptions: applicationServerKey property" } ], "dom-pushsubscriptionoptions-uservisibleonly": [ { "engines": [ - "blink" + "blink", + "webkit" ], "partial": [ "webkit" @@ -1173,7 +1192,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1183,14 +1202,15 @@ "version_added": "79" } }, - "title": "PushSubscriptionOptions.userVisibleOnly" + "title": "PushSubscriptionOptions: userVisibleOnly property" } ], "dom-pushsubscriptionoptions": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1226,7 +1246,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1454,7 +1474,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "partial": [ "webkit" @@ -1490,7 +1511,7 @@ "notes": "Supported on macOS 13 and later" }, "safari_ios": { - "version_added": false + "version_added": "16.4" }, "samsunginternet_android": "mirror", "webview_android": { @@ -1501,7 +1522,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.pushManager" + "title": "ServiceWorkerRegistration: pushManager property" } ], "extensions-to-the-serviceworkerregistration-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/remote-playback.json b/bikeshed/spec-data/readonly/mdn/remote-playback.json index 4246bb1557..6ea257d1f7 100644 --- a/bikeshed/spec-data/readonly/mdn/remote-playback.json +++ b/bikeshed/spec-data/readonly/mdn/remote-playback.json @@ -41,7 +41,7 @@ "version_added": "79" } }, - "title": "HTMLMediaElement.disableRemotePlayback" + "title": "HTMLMediaElement: disableRemotePlayback property" } ], "dom-remoteplayback-cancelwatchavailability": [ @@ -83,7 +83,7 @@ "version_added": "79" } }, - "title": "RemotePlayback.cancelWatchAvailability()" + "title": "RemotePlayback: cancelWatchAvailability() method" } ], "dom-remoteplayback-onconnect": [ @@ -251,7 +251,7 @@ "version_added": "79" } }, - "title": "RemotePlayback.prompt()" + "title": "RemotePlayback: prompt() method" } ], "dom-remoteplayback-state": [ @@ -293,7 +293,7 @@ "version_added": "79" } }, - "title": "RemotePlayback.state" + "title": "RemotePlayback: state property" } ], "dom-remoteplayback-watchavailability": [ @@ -335,7 +335,7 @@ "version_added": "79" } }, - "title": "RemotePlayback.watchAvailability()" + "title": "RemotePlayback: watchAvailability() method" } ], "remoteplayback-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/reporting.json b/bikeshed/spec-data/readonly/mdn/reporting.json index 3a661b9813..1314a434df 100644 --- a/bikeshed/spec-data/readonly/mdn/reporting.json +++ b/bikeshed/spec-data/readonly/mdn/reporting.json @@ -2,7 +2,8 @@ "dom-report-body": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Report.json", "name": "body", @@ -26,7 +27,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -35,13 +36,14 @@ "version_added": "79" } }, - "title": "Report.body" + "title": "Report: body property" } ], "dom-report-type": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Report.json", "name": "type", @@ -65,7 +67,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -74,13 +76,14 @@ "version_added": "79" } }, - "title": "Report.type" + "title": "Report: type property" } ], "dom-report-url": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Report.json", "name": "url", @@ -104,7 +107,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -113,13 +116,14 @@ "version_added": "79" } }, - "title": "Report.url" + "title": "Report: url property" } ], "dom-report": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Report.json", "name": "Report", @@ -143,7 +147,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -158,7 +162,8 @@ "reportbody": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ReportBody.json", "name": "ReportBody", @@ -182,7 +187,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -197,7 +202,8 @@ "dom-reportingobserver-reportingobserver": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ReportingObserver.json", "name": "ReportingObserver", @@ -221,7 +227,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -230,13 +236,14 @@ "version_added": "79" } }, - "title": "ReportingObserver()" + "title": "ReportingObserver: ReportingObserver() constructor" } ], "dom-reportingobserver-disconnect": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ReportingObserver.json", "name": "disconnect", @@ -260,7 +267,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -269,13 +276,14 @@ "version_added": "79" } }, - "title": "ReportingObserver.disconnect()" + "title": "ReportingObserver: disconnect() method" } ], "dom-reportingobserver-observe": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ReportingObserver.json", "name": "observe", @@ -299,7 +307,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -308,13 +316,14 @@ "version_added": "79" } }, - "title": "ReportingObserver.observe()" + "title": "ReportingObserver: observe() method" } ], "dom-reportingobserver-takerecords": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ReportingObserver.json", "name": "takeRecords", @@ -338,7 +347,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -347,13 +356,14 @@ "version_added": "79" } }, - "title": "ReportingObserver.takeRecords()" + "title": "ReportingObserver: takeRecords() method" } ], "interface-reporting-observer": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/ReportingObserver.json", "name": "ReportingObserver", @@ -377,7 +387,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/requestidlecallback.json b/bikeshed/spec-data/readonly/mdn/requestidlecallback.json index 68241a0e37..14954e719a 100644 --- a/bikeshed/spec-data/readonly/mdn/requestidlecallback.json +++ b/bikeshed/spec-data/readonly/mdn/requestidlecallback.json @@ -36,7 +36,7 @@ "version_added": "79" } }, - "title": "IdleDeadline.didTimeout" + "title": "IdleDeadline: didTimeout property" } ], "dom-idledeadline-timeremaining": [ @@ -76,7 +76,7 @@ "version_added": "79" } }, - "title": "IdleDeadline.timeRemaining()" + "title": "IdleDeadline: timeRemaining() method" } ], "the-idledeadline-interface": [ @@ -156,7 +156,7 @@ "version_added": "79" } }, - "title": "window.cancelIdleCallback()" + "title": "Window: cancelIdleCallback() method" } ], "the-requestidlecallback-method": [ @@ -196,7 +196,7 @@ "version_added": "79" } }, - "title": "window.requestIdleCallback()" + "title": "window: requestIdleCallback() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/resize-observer.json b/bikeshed/spec-data/readonly/mdn/resize-observer.json index 6b553bc9fd..3e7c494f64 100644 --- a/bikeshed/spec-data/readonly/mdn/resize-observer.json +++ b/bikeshed/spec-data/readonly/mdn/resize-observer.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "ResizeObserver()" + "title": "ResizeObserver: ResizeObserver() constructor" } ], "dom-resizeobserver-disconnect": [ @@ -78,7 +78,7 @@ "version_added": "79" } }, - "title": "ResizeObserver.disconnect()" + "title": "ResizeObserver: disconnect() method" } ], "dom-resizeobserver-observe": [ @@ -119,7 +119,7 @@ "version_added": "79" } }, - "title": "ResizeObserver.observe()" + "title": "ResizeObserver: observe() method" } ], "dom-resizeobserver-unobserve": [ @@ -160,7 +160,7 @@ "version_added": "79" } }, - "title": "ResizeObserver.unobserve()" + "title": "ResizeObserver: unobserve() method" } ], "resize-observer-interface": [ @@ -250,7 +250,7 @@ "version_added": "84" } }, - "title": "ResizeObserverEntry.borderBoxSize" + "title": "ResizeObserverEntry: borderBoxSize property" } ], "dom-resizeobserverentry-contentboxsize": [ @@ -299,7 +299,7 @@ "version_added": "84" } }, - "title": "ResizeObserverEntry.contentBoxSize" + "title": "ResizeObserverEntry: contentBoxSize property" } ], "dom-resizeobserverentry-contentrect": [ @@ -340,7 +340,7 @@ "version_added": "79" } }, - "title": "ResizeObserverEntry.contentRect" + "title": "ResizeObserverEntry: contentRect property" } ], "dom-resizeobserverentry-target": [ @@ -381,7 +381,7 @@ "version_added": "79" } }, - "title": "ResizeObserverEntry.target" + "title": "ResizeObserverEntry: target property" } ], "resize-observer-entry-interface": [ @@ -463,7 +463,7 @@ "version_added": "84" } }, - "title": "ResizeObserverSize.blockSize" + "title": "ResizeObserverSize: blockSize property" } ], "dom-resizeobserversize-inlinesize": [ @@ -504,7 +504,7 @@ "version_added": "84" } }, - "title": "ResizeObserverSize.inlineSize" + "title": "ResizeObserverSize: inlineSize property" } ], "resizeobserversize": [ diff --git a/bikeshed/spec-data/readonly/mdn/resource-timing.json b/bikeshed/spec-data/readonly/mdn/resource-timing.json index f4859bb067..f091acd4e4 100644 --- a/bikeshed/spec-data/readonly/mdn/resource-timing.json +++ b/bikeshed/spec-data/readonly/mdn/resource-timing.json @@ -10,7 +10,7 @@ "name": "clearResourceTimings", "slug": "API/Performance/clearResourceTimings", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/clearResourceTimings", - "summary": "The clearResourceTimings() method removes all performance entries with an entryType of \"resource\" from the browser's performance data buffer and sets the size of the performance data buffer to zero. To set the size of the browser's performance data buffer, use the Performance.setResourceTimingBufferSize() method.", + "summary": "The clearResourceTimings() method removes all performance entries with an entryType of \"resource\" from the browser's performance timeline and sets the size of the performance resource data buffer to zero.", "support": { "chrome": [ { @@ -59,7 +59,7 @@ } ] }, - "title": "performance.clearResourceTimings()" + "title": "Performance: clearResourceTimings() method" } ], "dom-performance-onresourcetimingbufferfull": [ @@ -136,7 +136,7 @@ "name": "setResourceTimingBufferSize", "slug": "API/Performance/setResourceTimingBufferSize", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/setResourceTimingBufferSize", - "summary": "The setResourceTimingBufferSize() method sets the browser's resource timing buffer size to the specified number of \"resource\" performance entry type objects.", + "summary": "The setResourceTimingBufferSize() method sets the desired size of the browser's resource timing buffer which stores the \"resource\" performance entries.", "support": { "chrome": [ { @@ -185,7 +185,7 @@ } ] }, - "title": "performance.setResourceTimingBufferSize()" + "title": "Performance: setResourceTimingBufferSize() method" } ], "sec-extensions-performance-interface": [ @@ -199,7 +199,7 @@ "name": "Performance", "slug": "API/Performance", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance", - "summary": "The Performance interface provides access to performance-related information for the current page. It's part of the High Resolution Time API, but is enhanced by the Performance Timeline API, the Navigation Timing API, the User Timing API, and the Resource Timing API.", + "summary": "The Performance interface provides access to performance-related information for the current page.", "support": { "chrome": { "version_added": "6" @@ -254,7 +254,7 @@ "name": "connectEnd", "slug": "API/PerformanceResourceTiming/connectEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/connectEnd", - "summary": "The connectEnd read-only property returns the timestamp immediately after the browser finishes establishing the connection to the server to retrieve the resource. The timestamp value includes the time interval to establish the transport connection, as well as other time intervals such as SSL handshake and SOCKS authentication.", + "summary": "The connectEnd read-only property returns the timestamp immediately after the browser finishes establishing the connection to the server to retrieve the resource. The timestamp value includes the time interval to establish the transport connection, as well as other time intervals such as TLS handshake and SOCKS authentication.", "support": { "chrome": { "version_added": "43" @@ -287,7 +287,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.connectEnd" + "title": "PerformanceResourceTiming: connectEnd property" } ], "dom-performanceresourcetiming-connectstart": [ @@ -334,20 +334,21 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.connectStart" + "title": "PerformanceResourceTiming: connectStart property" } ], "dom-performanceresourcetiming-decodedbodysize": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceResourceTiming.json", "name": "decodedBodySize", "slug": "API/PerformanceResourceTiming/decodedBodySize", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/decodedBodySize", - "summary": "The decodedBodySize read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body, after removing any applied content-codings. If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content-codings.", + "summary": "The decodedBodySize read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.", "support": { "chrome": { "version_added": "54" @@ -367,7 +368,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -376,7 +377,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.decodedBodySize" + "title": "PerformanceResourceTiming: decodedBodySize property" } ], "dom-performanceresourcetiming-domainlookupend": [ @@ -390,7 +391,7 @@ "name": "domainLookupEnd", "slug": "API/PerformanceResourceTiming/domainLookupEnd", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/domainLookupEnd", - "summary": "The domainLookupEnd read-only property returns the timestamp immediately after the browser finishes the domain name lookup for the resource.", + "summary": "The domainLookupEnd read-only property returns the timestamp immediately after the browser finishes the domain-name lookup for the resource.", "support": { "chrome": { "version_added": "43" @@ -419,7 +420,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.domainLookupEnd" + "title": "PerformanceResourceTiming: domainLookupEnd property" } ], "dom-performanceresourcetiming-domainlookupstart": [ @@ -462,20 +463,21 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.domainLookupStart" + "title": "PerformanceResourceTiming: domainLookupStart property" } ], "dom-performanceresourcetiming-encodedbodysize": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceResourceTiming.json", "name": "encodedBodySize", "slug": "API/PerformanceResourceTiming/encodedBodySize", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/encodedBodySize", - "summary": "The encodedBodySize read-only property represents the size (in octets) received from the fetch (HTTP or cache), of the payload body, before removing any applied content-codings.", + "summary": "The encodedBodySize read-only property represents the size (in octets) received from the fetch (HTTP or cache) of the payload body before removing any applied content encodings (like gzip or Brotli). If the resource is retrieved from an application cache or a local resource, it must return the size of the payload body before removing any applied content encoding.", "support": { "chrome": { "version_added": "54" @@ -495,7 +497,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -504,7 +506,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.encodedBodySize" + "title": "PerformanceResourceTiming: encodedBodySize property" } ], "dom-performanceresourcetiming-fetchstart": [ @@ -547,7 +549,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.fetchStart" + "title": "PerformanceResourceTiming: fetchStart property" } ], "dom-performanceresourcetiming-initiatortype": [ @@ -561,7 +563,7 @@ "name": "initiatorType", "slug": "API/PerformanceResourceTiming/initiatorType", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/initiatorType", - "summary": "The initiatorType read-only property is a string that represents the type of resource that initiated the performance event.", + "summary": "The initiatorType read-only property is a string representing web platform feature that initiated the resource load.", "support": { "chrome": { "version_added": "43" @@ -590,7 +592,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.initiatorType" + "title": "PerformanceResourceTiming: initiatorType property" } ], "dom-performanceresourcetiming-nexthopprotocol": [ @@ -633,7 +635,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.nextHopProtocol" + "title": "PerformanceResourceTiming: nextHopProtocol property" } ], "dom-performanceresourcetiming-redirectend": [ @@ -676,7 +678,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.redirectEnd" + "title": "PerformanceResourceTiming: redirectEnd property" } ], "dom-performanceresourcetiming-redirectstart": [ @@ -719,7 +721,46 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.redirectStart" + "title": "PerformanceResourceTiming: redirectStart property" + } + ], + "dom-performanceresourcetiming-renderblockingstatus": [ + { + "engines": [ + "blink" + ], + "filename": "api/PerformanceResourceTiming.json", + "name": "renderBlockingStatus", + "slug": "API/PerformanceResourceTiming/renderBlockingStatus", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/renderBlockingStatus", + "summary": "The renderBlockingStatus read-only property returns the render-blocking status of the resource.", + "support": { + "chrome": { + "version_added": "107" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "107" + } + }, + "title": "PerformanceResourceTiming: renderBlockingStatus property" } ], "dom-performanceresourcetiming-requeststart": [ @@ -762,7 +803,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.requestStart" + "title": "PerformanceResourceTiming: requestStart property" } ], "dom-performanceresourcetiming-responseend": [ @@ -805,7 +846,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.responseEnd" + "title": "PerformanceResourceTiming: responseEnd property" } ], "dom-performanceresourcetiming-responsestart": [ @@ -848,7 +889,46 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.responseStart" + "title": "PerformanceResourceTiming: responseStart property" + } + ], + "dom-performanceresourcetiming-responsestatus": [ + { + "engines": [ + "blink" + ], + "filename": "api/PerformanceResourceTiming.json", + "name": "responseStatus", + "slug": "API/PerformanceResourceTiming/responseStatus", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/responseStatus", + "summary": "The responseStatus read-only property represents the HTTP response status code returned when fetching the resource.", + "support": { + "chrome": { + "version_added": "109" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "109" + } + }, + "title": "PerformanceResourceTiming: responseStatus property" } ], "dom-performanceresourcetiming-secureconnectionstart": [ @@ -891,7 +971,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.secureConnectionStart" + "title": "PerformanceResourceTiming: secureConnectionStart property" } ], "dom-performanceresourcetiming-tojson": [ @@ -905,10 +985,10 @@ "name": "toJSON", "slug": "API/PerformanceResourceTiming/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/toJSON", - "summary": "The toJSON() method is a serializer that returns a JSON representation of the PerformanceResourceTiming object.", + "summary": "The toJSON() method of the PerformanceResourceTiming interface is a serializer; it returns a JSON representation of the PerformanceResourceTiming object.", "support": { "chrome": { - "version_added": "43" + "version_added": "45" }, "chrome_android": "mirror", "edge": { @@ -934,14 +1014,15 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.toJSON()" + "title": "PerformanceResourceTiming: toJSON() method" } ], "dom-performanceresourcetiming-transfersize": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceResourceTiming.json", "name": "transferSize", @@ -967,7 +1048,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -976,7 +1057,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.transferSize" + "title": "PerformanceResourceTiming: transferSize property" } ], "dom-performanceresourcetiming-workerstart": [ @@ -993,7 +1074,7 @@ "summary": "The workerStart read-only property of the PerformanceResourceTiming interface returns a DOMHighResTimeStamp immediately before dispatching the FetchEvent if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running. If the resource is not intercepted by a Service Worker the property will always return 0.", "support": { "chrome": { - "version_added": "43" + "version_added": "46" }, "chrome_android": "mirror", "edge": { @@ -1023,7 +1104,7 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.workerStart" + "title": "PerformanceResourceTiming: workerStart property" } ], "resources-included-in-the-performanceresourcetiming-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/rfc6265.json b/bikeshed/spec-data/readonly/mdn/rfc6265.json index a3f0d3feee..16046e942e 100644 --- a/bikeshed/spec-data/readonly/mdn/rfc6265.json +++ b/bikeshed/spec-data/readonly/mdn/rfc6265.json @@ -13,7 +13,7 @@ "summary": "The Cookie HTTP request header contains stored HTTP cookies associated with the server (i.e. previously sent by the server with the Set-Cookie header or set in JavaScript using Document.cookie).", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -36,7 +36,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "Cookie" @@ -51,9 +51,9 @@ ], "filename": "http/headers/Set-Cookie.json", "name": "SameSite", - "slug": "HTTP/Headers/Set-Cookie/SameSite", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite", - "summary": "The SameSite attribute of the Set-Cookie HTTP response header allows you to declare if your cookie should be restricted to a first-party or same-site context.", + "slug": "HTTP/Headers/Set-Cookie#samesitesamesite-value", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value", + "summary": "The Set-Cookie HTTP response header is used to send a cookie from the server to the user agent, so that the user agent can send it back to the server later. To send multiple cookies, multiple Set-Cookie headers should be sent in the same response.", "support": { "chrome": { "version_added": "51" @@ -101,7 +101,7 @@ "version_added": "79" } }, - "title": "SameSite cookies" + "title": "Set-Cookie" }, { "engines": [ @@ -116,7 +116,7 @@ "summary": "The Set-Cookie HTTP response header is used to send a cookie from the server to the user agent, so that the user agent can send it back to the server later. To send multiple cookies, multiple Set-Cookie headers should be sent in the same response.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -130,7 +130,9 @@ "version_added": true }, "oculus": "mirror", - "opera": "mirror", + "opera": { + "version_added": "12.1" + }, "opera_android": "mirror", "safari": { "version_added": true @@ -139,7 +141,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "Set-Cookie" diff --git a/bikeshed/spec-data/readonly/mdn/rfc7838.json b/bikeshed/spec-data/readonly/mdn/rfc7838.json index 5d318f75d9..e745c34602 100644 --- a/bikeshed/spec-data/readonly/mdn/rfc7838.json +++ b/bikeshed/spec-data/readonly/mdn/rfc7838.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "http/headers/Alt-Svc.json", "name": "Alt-Svc", @@ -37,7 +38,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "preview" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/rfc8288.json b/bikeshed/spec-data/readonly/mdn/rfc8288.json new file mode 100644 index 0000000000..df9359ee22 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/rfc8288.json @@ -0,0 +1,42 @@ +{ + "header": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "http/headers/Link.json", + "name": "Link", + "slug": "HTTP/Headers/Link", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Link", + "summary": "The HTTP Link entity-header field provides a means for serializing one or more links in HTTP headers. It is semantically equivalent to the HTML <link> element.", + "support": { + "chrome": { + "version_added": "103" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": null + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "103" + } + }, + "title": "Link" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/rfc9110.json b/bikeshed/spec-data/readonly/mdn/rfc9110.json index 7bf8f013a4..1ed1951f0a 100644 --- a/bikeshed/spec-data/readonly/mdn/rfc9110.json +++ b/bikeshed/spec-data/readonly/mdn/rfc9110.json @@ -695,6 +695,52 @@ } ], "field.expect": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Expect-CT.json", + "name": "Expect-CT", + "slug": "HTTP/Headers/Expect-CT", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect-CT", + "summary": "The Expect-CT header lets sites opt in to reporting and/or enforcement of Certificate Transparency requirements. Certificate Transparency (CT) aims to prevent the use of misissued certificates for that site from going unnoticed.", + "support": { + "chrome": { + "version_added": "61", + "notes": "Before later builds of Chrome 64, invalid Expect-CT reports would be sent. Newer versions do not send reports after 10 weeks from the build date. See <a href='https://crbug.com/786563'>bug 786563</a>." + }, + "chrome_android": "mirror", + "edge": { + "version_added": false + }, + "firefox": { + "version_added": false, + "notes": "See <a href='https://bugzil.la/1281469'>bug 1281469</a>." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "48" + }, + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79", + "notes": "Before later builds of Chrome 64, invalid Expect-CT reports would be sent. Newer versions do not send reports after 10 weeks from the build date. See <a href='https://crbug.com/786563'>bug 786563</a>." + } + }, + "title": "Expect-CT" + }, { "engines": [], "filename": "http/headers/Expect.json", diff --git a/bikeshed/spec-data/readonly/mdn/sanitizer.json b/bikeshed/spec-data/readonly/mdn/sanitizer.json index ebf569ddaa..86ceeee8ad 100644 --- a/bikeshed/spec-data/readonly/mdn/sanitizer.json +++ b/bikeshed/spec-data/readonly/mdn/sanitizer.json @@ -46,7 +46,7 @@ "version_added": "105" } }, - "title": "Element.setHTML()" + "title": "Element: setHTML() method" } ], "dom-sanitizer-sanitizer": [ @@ -131,7 +131,7 @@ } ] }, - "title": "Sanitizer()" + "title": "Sanitizer: Sanitizer() constructor" } ], "dom-sanitizer-sanitize": [ @@ -215,7 +215,7 @@ ] } }, - "title": "Sanitizer.sanitize()" + "title": "Sanitizer: sanitize() method" } ], "dom-sanitizer-sanitizefor": [ @@ -271,7 +271,7 @@ ] } }, - "title": "Sanitizer.sanitizeFor()" + "title": "Sanitizer: sanitizeFor() method" } ], "sanitizer-api": [ diff --git a/bikeshed/spec-data/readonly/mdn/savedata.json b/bikeshed/spec-data/readonly/mdn/savedata.json index 53f5c4fe0e..933174559c 100644 --- a/bikeshed/spec-data/readonly/mdn/savedata.json +++ b/bikeshed/spec-data/readonly/mdn/savedata.json @@ -35,7 +35,7 @@ "version_added": "79" } }, - "title": "NetworkInformation.saveData" + "title": "NetworkInformation: saveData property" } ], "save-data-request-header-field": [ @@ -57,11 +57,11 @@ "version_added": false }, "firefox": { - "version_added": null + "version_added": false }, "firefox_android": "mirror", "ie": { - "version_added": null + "version_added": false }, "oculus": "mirror", "opera": { diff --git a/bikeshed/spec-data/readonly/mdn/scheduling-apis.json b/bikeshed/spec-data/readonly/mdn/scheduling-apis.json index da92c3883a..59a66a3433 100644 --- a/bikeshed/spec-data/readonly/mdn/scheduling-apis.json +++ b/bikeshed/spec-data/readonly/mdn/scheduling-apis.json @@ -5,6 +5,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/Scheduler.json", "name": "postTask", "slug": "API/Scheduler/postTask", @@ -16,24 +19,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -50,7 +46,7 @@ "version_added": "94" } }, - "title": "Scheduler.postTask()" + "title": "Scheduler: postTask() method" } ], "scheduler": [ @@ -59,6 +55,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/Scheduler.json", "name": "Scheduler", "slug": "API/Scheduler", @@ -70,24 +69,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -113,6 +105,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskController.json", "name": "TaskController", "slug": "API/TaskController/TaskController", @@ -124,24 +119,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -158,7 +146,7 @@ "version_added": "94" } }, - "title": "TaskController()" + "title": "TaskController: TaskController() constructor" } ], "dom-taskcontroller-setpriority": [ @@ -167,6 +155,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskController.json", "name": "setPriority", "slug": "API/TaskController/setPriority", @@ -178,24 +169,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -212,7 +196,7 @@ "version_added": "94" } }, - "title": "TaskController.setPriority()" + "title": "TaskController: setPriority() method" } ], "sec-task-controller": [ @@ -221,6 +205,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskController.json", "name": "TaskController", "slug": "API/TaskController", @@ -232,24 +219,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -275,6 +255,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskPriorityChangeEvent.json", "name": "TaskPriorityChangeEvent", "slug": "API/TaskPriorityChangeEvent/TaskPriorityChangeEvent", @@ -286,24 +269,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -320,7 +296,7 @@ "version_added": "94" } }, - "title": "TaskPriorityChangeEvent()" + "title": "TaskPriorityChangeEvent: TaskPriorityChangeEvent() constructor" } ], "dom-taskprioritychangeevent-previouspriority": [ @@ -329,6 +305,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskPriorityChangeEvent.json", "name": "previousPriority", "slug": "API/TaskPriorityChangeEvent/previousPriority", @@ -340,24 +319,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -374,7 +346,7 @@ "version_added": "94" } }, - "title": "TaskPriorityChangeEvent.previousPriority" + "title": "TaskPriorityChangeEvent: previousPriority property" } ], "sec-task-priority-change-event": [ @@ -383,6 +355,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskPriorityChangeEvent.json", "name": "TaskPriorityChangeEvent", "slug": "API/TaskPriorityChangeEvent", @@ -394,24 +369,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -437,6 +405,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskSignal.json", "name": "priority", "slug": "API/TaskSignal/priority", @@ -448,24 +419,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -482,7 +446,7 @@ "version_added": "94" } }, - "title": "TaskSignal.priority" + "title": "TaskSignal: priority property" } ], "ref-for-eventdef-tasksignal-prioritychange": [ @@ -491,6 +455,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskSignal.json", "name": "prioritychange_event", "slug": "API/TaskSignal/prioritychange_event", @@ -502,24 +469,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -545,6 +505,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskSignal.json", "name": "prioritychange_event", "slug": "API/TaskSignal/prioritychange_event", @@ -556,24 +519,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -599,6 +555,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/TaskSignal.json", "name": "TaskSignal", "slug": "API/TaskSignal", @@ -610,24 +569,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -653,6 +605,9 @@ "blink", "gecko" ], + "needsflag": [ + "gecko" + ], "filename": "api/_globals/scheduler.json", "name": "scheduler", "slug": "API/Window/scheduler", @@ -664,24 +619,17 @@ }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "preview" - }, - { - "version_added": "101", - "flags": [ - { - "type": "preference", - "name": "dom.enable_web_task_scheduling", - "value_to_set": "true" - } - ] - } - ], - "firefox_android": { - "version_added": false - }, + "firefox": { + "version_added": "101", + "flags": [ + { + "type": "preference", + "name": "dom.enable_web_task_scheduling", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -698,7 +646,7 @@ "version_added": "94" } }, - "title": "scheduler" + "title": "Window: scheduler property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/screen-orientation.json b/bikeshed/spec-data/readonly/mdn/screen-orientation.json index 02b8da7e24..e8fcb884d3 100644 --- a/bikeshed/spec-data/readonly/mdn/screen-orientation.json +++ b/bikeshed/spec-data/readonly/mdn/screen-orientation.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Screen.json", "name": "orientation", @@ -39,7 +40,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -48,14 +49,15 @@ "version_added": "79" } }, - "title": "Screen.orientation" + "title": "Screen: orientation property" } ], "dom-screenorientation-angle": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ScreenOrientation.json", "name": "angle", @@ -79,7 +81,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -88,18 +90,18 @@ "version_added": "79" } }, - "title": "ScreenOrientation.angle" + "title": "ScreenOrientation: angle property" } ], "dom-screenorientation-lock": [ { "engines": [ - "blink" - ], - "partial": [ "blink", "gecko" ], + "partial": [ + "blink" + ], "filename": "api/ScreenOrientation.json", "name": "lock", "slug": "API/ScreenOrientation/lock", @@ -115,11 +117,26 @@ "version_added": "38" }, "edge": "mirror", - "firefox": { - "version_added": "43", - "partial_implementation": true, - "notes": "Always throws <code>NotSupportedError</code>." - }, + "firefox": [ + { + "version_added": "preview" + }, + { + "version_added": "43", + "partial_implementation": true, + "notes": "Always throws <code>NotSupportedError</code>." + }, + { + "version_added": "97", + "flags": [ + { + "type": "preference", + "name": "dom.screenorientation.allow-lock", + "value_to_set": "true" + } + ] + } + ], "firefox_android": [ { "version_added": "43", @@ -150,14 +167,15 @@ "notes": "Always throws <code>NotSupportedError</code>." } }, - "title": "ScreenOrientation.lock()" + "title": "ScreenOrientation: lock() method" } ], "dom-screenorientation-type": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ScreenOrientation.json", "name": "type", @@ -181,7 +199,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -190,7 +208,7 @@ "version_added": "79" } }, - "title": "ScreenOrientation.type" + "title": "ScreenOrientation: type property" } ], "dom-screenorientation-unlock": [ @@ -244,14 +262,15 @@ "notes": "Always throws <code>NotSupportedError</code>." } }, - "title": "ScreenOrientation.unlock()" + "title": "ScreenOrientation: unlock() method" } ], "screenorientation-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ScreenOrientation.json", "name": "ScreenOrientation", @@ -275,7 +294,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/screen-wake-lock.json b/bikeshed/spec-data/readonly/mdn/screen-wake-lock.json index 2c4081ad00..3da4e48835 100644 --- a/bikeshed/spec-data/readonly/mdn/screen-wake-lock.json +++ b/bikeshed/spec-data/readonly/mdn/screen-wake-lock.json @@ -2,7 +2,8 @@ "extensions-to-the-navigator-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/Navigator.json", "name": "wakeLock", @@ -26,7 +27,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -35,13 +36,14 @@ "version_added": "84" } }, - "title": "Navigator.wakeLock" + "title": "Navigator: wakeLock property" } ], "the-request-method": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLock.json", "name": "request", @@ -65,7 +67,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -74,13 +76,14 @@ "version_added": "84" } }, - "title": "WakeLock.request()" + "title": "WakeLock: request() method" } ], "the-wakelock-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLock.json", "name": "WakeLock", @@ -104,7 +107,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -119,7 +122,8 @@ "the-release-method": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLockSentinel.json", "name": "release", @@ -143,7 +147,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -152,13 +156,14 @@ "version_added": "84" } }, - "title": "WakeLockSentinel.release()" + "title": "WakeLockSentinel: release() method" } ], "the-onrelease-attribute": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLockSentinel.json", "name": "release_event", @@ -182,7 +187,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -197,7 +202,8 @@ "dom-wakelocksentinel-released": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLockSentinel.json", "name": "released", @@ -221,7 +227,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -230,13 +236,14 @@ "version_added": "87" } }, - "title": "WakeLockSentinel.released" + "title": "WakeLockSentinel: released property" } ], "the-type-attribute": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLockSentinel.json", "name": "type", @@ -260,7 +267,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -269,19 +276,20 @@ "version_added": "84" } }, - "title": "WakeLockSentinel.type" + "title": "WakeLockSentinel: type property" } ], "the-wakelocksentinel-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WakeLockSentinel.json", "name": "WakeLockSentinel", "slug": "API/WakeLockSentinel", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WakeLockSentinel", - "summary": "The WakeLockSentinel interface of the Screen Wake Lock API provides a handle to the underlying platform wake lock and can be manually released and reacquired. An Object representing the wake lock is returned via the navigator.wakelock.request() method.", + "summary": "The WakeLockSentinel interface of the Screen Wake Lock API provides a handle to the underlying platform wake lock and can be manually released and reacquired. An Object representing the wake lock is returned via the navigator.wakeLock.request() method.", "support": { "chrome": { "version_added": "84" @@ -299,7 +307,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -318,7 +326,7 @@ "name": "screen-wake-lock", "slug": "HTTP/Headers/Feature-Policy/screen-wake-lock", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/screen-wake-lock", - "summary": "The HTTP Feature-Policy header screen-wake-lock directive controls whether the current document is allowed to use Screen Wake Lock API to indicate that device should not dim or turn off the screen.", + "summary": "The HTTP Permissions-Policy header screen-wake-lock directive controls whether the current document is allowed to use Screen Wake Lock API to indicate that the device should not dim or turn off the screen.", "support": { "chrome": { "version_added": false @@ -345,7 +353,56 @@ "version_added": false } }, - "title": "Feature-Policy: screen-wake-lock" + "title": "Permissions-Policy: screen-wake-lock" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "screen-wake-lock", + "slug": "HTTP/Headers/Permissions-Policy/screen-wake-lock", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/screen-wake-lock", + "summary": "The HTTP Permissions-Policy header screen-wake-lock directive controls whether the current document is allowed to use Screen Wake Lock API to indicate that the device should not dim or turn off the screen.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "84", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "84", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: screen-wake-lock" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/scroll-animations.json b/bikeshed/spec-data/readonly/mdn/scroll-animations.json index c9d95f3941..0a581d6946 100644 --- a/bikeshed/spec-data/readonly/mdn/scroll-animations.json +++ b/bikeshed/spec-data/readonly/mdn/scroll-animations.json @@ -1,29 +1,452 @@ { - "propdef-scroll-timeline-axis": [ + "dom-scrolltimeline-scrolltimeline": [ + { + "engines": [ + "blink" + ], + "filename": "api/ScrollTimeline.json", + "name": "ScrollTimeline", + "slug": "API/ScrollTimeline/ScrollTimeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ScrollTimeline/ScrollTimeline", + "summary": "The ScrollTimeline() constructor creates a new ScrollTimeline object instance.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "ScrollTimeline: ScrollTimeline() constructor" + } + ], + "dom-scrolltimeline-axis": [ + { + "engines": [ + "blink" + ], + "filename": "api/ScrollTimeline.json", + "name": "axis", + "slug": "API/ScrollTimeline/axis", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ScrollTimeline/axis", + "summary": "The axis read-only property of the ScrollTimeline interface returns an enumerated value representing the scroll axis that is driving the progress of the timeline.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "ScrollTimeline: axis property" + } + ], + "scrolltimeline-interface": [ + { + "engines": [ + "blink" + ], + "filename": "api/ScrollTimeline.json", + "name": "ScrollTimeline", + "slug": "API/ScrollTimeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ScrollTimeline", + "summary": "The ScrollTimeline interface of the Web Animations API represents a scroll progress timeline (see CSS scroll-driven animations for more details).", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "ScrollTimeline" + } + ], + "dom-viewtimeline-viewtimeline": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTimeline.json", + "name": "ViewTimeline", + "slug": "API/ViewTimeline/ViewTimeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTimeline/ViewTimeline", + "summary": "The ViewTimeline() constructor creates a new ViewTimeline object instance.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "ViewTimeline: ViewTimeline() constructor" + } + ], + "dom-viewtimeline-endoffset": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTimeline.json", + "name": "endOffset", + "slug": "API/ViewTimeline/endOffset", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTimeline/endOffset", + "summary": "The endOffset read-only property of the ViewTimeline interface returns a CSSNumericValue representing the ending (100% progress) scroll position of the timeline as an offset from the start of the overflowing section of content in the scroller.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "ViewTimeline: endOffset property" + } + ], + "viewtimeline-interface": [ + { + "engines": [ + "blink" + ], + "filename": "api/ViewTimeline.json", + "name": "ViewTimeline", + "slug": "API/ViewTimeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ViewTimeline", + "summary": "The ViewTimeline interface of the Web Animations API represents a view progress timeline (see CSS scroll-driven animations for more details).", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "ViewTimeline" + } + ], + "animation-range-end": [ + { + "engines": [ + "blink" + ], + "filename": "css/properties/animation-range-end.json", + "name": "animation-range-end", + "slug": "CSS/animation-range-end", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-range-end", + "summary": "The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will end.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "animation-range-end" + } + ], + "animation-range-start": [ + { + "engines": [ + "blink" + ], + "filename": "css/properties/animation-range-start.json", + "name": "animation-range-start", + "slug": "CSS/animation-range-start", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-range-start", + "summary": "The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "animation-range-start" + } + ], + "animation-range": [ + { + "engines": [ + "blink" + ], + "filename": "css/properties/animation-range.json", + "name": "animation-range", + "slug": "CSS/animation-range", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-range", + "summary": "The animation-range CSS shorthand property is used to set the start and end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start and end.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "animation-range" + } + ], + "scroll-notation": [ { "engines": [ + "blink", "gecko" ], "needsflag": [ "gecko" ], - "filename": "css/properties/scroll-timeline-axis.json", - "name": "scroll-timeline-axis", - "slug": "CSS/scroll-timeline-axis", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-timeline-axis", - "summary": "The scroll-timeline-axis CSS property can be used to specify the scrollbar that will be used to provide the timeline for a scroll-timeline animation.", + "filename": "css/properties/animation-timeline.json", + "name": "scroll", + "slug": "CSS/animation-timeline/scroll", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timeline/scroll", + "summary": "The scroll() CSS function can be used with animation-timeline to indicate a scrollable element (scroller) and scrollbar axis that will provide an anonymous scroll progress timeline for animating the current element. The scroll progress timeline is progressed through by scrolling the scroller between top and bottom (or left and right). The position in the scroll range is converted into a percentage of progress — 0% at the start and 100% at the end.", "support": { "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "110", + "notes": [ + "Zero scroll range is treated as 100% but should be 0% (see <a href='https://bugzil.la/1780865'>bug 1780865</a>).", + "Supports the deprecated <code>horizontal</code> and <code>vertical</code> axis values, and not the <code>x</code> and <code>y</code> values." + ], + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "101", + "version_removed": "110", + "notes": [ + "Zero scroll range is treated as 100% but should be 0% (see <a href='https://bugzil.la/1780865'>bug 1780865</a>).", + "Supports the deprecated <code>horizontal</code> and <code>vertical</code> axis values, and not the <code>x</code> and <code>y</code> values." + ], + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-linked-animations.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { "version_added": false }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" + } + }, + "title": "scroll()" + } + ], + "view-notation": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/properties/animation-timeline.json", + "name": "view", + "slug": "CSS/animation-timeline/view", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timeline/view", + "summary": "The view() CSS function can be used with animation-timeline to indicate a subject element that will provide an anonymous view progress timeline to animate. The view progress timeline is progressed through by a change in visibility of the subject element inside the nearest ancestor scroller. The visibility of the subject inside the scroller is tracked — by default, the timeline is at 0% when the subject is first visible at one edge of the scroller, and 100% when it reaches the opposite edge.", + "support": { + "chrome": { + "version_added": "115" + }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", + "version_added": "114", "flags": [ { "type": "preference", - "name": "layout.css.scroll-linked-animations.enabled", + "name": "layout.css.scroll-driven-animations.enabled", "value_to_set": "true" } ] @@ -42,15 +465,133 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "115" } }, + "title": "view()" + } + ], + "propdef-scroll-timeline-axis": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/properties/scroll-timeline-axis.json", + "name": "scroll-timeline-axis", + "slug": "CSS/scroll-timeline-axis", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-timeline-axis", + "summary": "The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a named scroll progress timeline animation, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline is set on the scroller that will provide the timeline. See CSS scroll-driven animations for more details.", + "support": { + "chrome": [ + { + "version_added": "115" + }, + { + "version_added": "111", + "notes": "The syntax of the shorthand property `scroll-timeline` uses the fixed order of name and then the axis.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + { + "version_added": "108", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "111", + "notes": [ + "The syntax of the shorthand property uses the fixed order of name and then the axis.", + "Supports the deprecated <code>horizontal</code> and <code>vertical</code> values, and not the <code>x</code> and <code>y</code> values.", + "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`." + ], + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "103", + "version_removed": "110", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-linked-animations.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "115" + }, + { + "version_added": "111", + "notes": "The syntax of the shorthand property `scroll-timeline` uses the fixed order of name and then the axis.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + { + "version_added": "108", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] + }, "title": "scroll-timeline-axis" } ], "scroll-timeline-name": [ { "engines": [ + "blink", "gecko" ], "needsflag": [ @@ -60,23 +601,332 @@ "name": "scroll-timeline-name", "slug": "CSS/scroll-timeline-name", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-timeline-name", - "summary": "The scroll-timeline-name CSS property defines a name that can be used to identify an element as the source of a scroll timeline for an animation.", + "summary": "The scroll-timeline-name CSS property is used to define the name of a named scroll progress timeline, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline-name is set on the scroller that will provide the timeline.", "support": { - "chrome": { + "chrome": [ + { + "version_added": "115" + }, + { + "version_added": "111", + "notes": "The syntax of the shorthand property `scroll-timeline` uses the fixed order of name and then the axis.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + { + "version_added": "108", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "111", + "notes": [ + "The syntax of the shorthand property uses the fixed order of name and then the axis.", + "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`." + ], + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "103", + "version_removed": "110", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-linked-animations.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "115" + }, + { + "version_added": "111", + "notes": "The syntax of the shorthand property `scroll-timeline` uses the fixed order of name and then the axis.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + { + "version_added": "108", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] + }, + "title": "scroll-timeline-name" + } + ], + "scroll-timeline-shorthand": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "blink", + "gecko" + ], + "filename": "css/properties/scroll-timeline.json", + "name": "scroll-timeline", + "slug": "CSS/scroll-timeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-timeline", + "summary": "The scroll-timeline CSS shorthand property is used to define a named scroll progress timeline, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline is set on the scroller that will provide the timeline. The starting scroll position represents 0% progress and the ending scroll position represents 100% progress. If the 0% position and 100% position coincide (i.e., the scroll container has no overflow to scroll), the timeline is inactive.", + "support": { + "chrome": [ + { + "version_added": "115", + "partial_implementation": true, + "notes": "<code>scroll-timeline-attachment</code> not included in shorthand." + }, + { + "version_added": "111", + "notes": "The syntax of the shorthand property `scroll-timeline` uses the fixed order of name and then the axis.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + { + "version_added": "108", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "111", + "notes": [ + "The syntax of the shorthand property uses the fixed order of name and then the axis.", + "Supports the deprecated <code>horizontal</code> and <code>vertical</code> axis values, and not the <code>x</code> and <code>y</code> values.", + "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`." + ], + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "103", + "version_removed": "110", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-linked-animations.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { "version_added": false }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "115", + "partial_implementation": true, + "notes": "<code>scroll-timeline-attachment</code> not included in shorthand." + }, + { + "version_added": "111", + "notes": "The syntax of the shorthand property `scroll-timeline` uses the fixed order of name and then the axis.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, + { + "version_added": "108", + "notes": "The `@scroll-timeline` at-rule is replaced with the longhand properties `scroll-timeline-name` and `scroll-timeline-axis` and the shorthand property `scroll-timeline`.", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + } + ] + }, + "title": "scroll-timeline" + } + ], + "propdef-timeline-scope": [ + { + "engines": [ + "blink" + ], + "needsflag": [ + "blink" + ], + "filename": "css/properties/timeline-scope.json", + "name": "timeline-scope", + "slug": "CSS/timeline-scope", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/timeline-scope", + "summary": "The timeline-scope CSS property modifies the scope of a named animation timeline.", + "support": { + "chrome": { + "version_added": "116", + "flags": [ + { + "type": "preference", + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" + } + ] + }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "116", "flags": [ { "type": "preference", - "name": "layout.css.scroll-linked-animations.enabled", - "value_to_set": "true" + "name": "#enable-experimental-web-platform-features", + "value_to_set": "Enabled" } ] + } + }, + "title": "timeline-scope" + } + ], + "view-timeline-axis": [ + { + "engines": [ + "blink", + "gecko" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/properties/view-timeline-axis.json", + "name": "view-timeline-axis", + "slug": "CSS/view-timeline-axis", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/view-timeline-axis", + "summary": "The view-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a named view progress timeline animation, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline-axis is set on the subject. See CSS scroll-driven animations for more details.", + "support": { + "chrome": { + "version_added": "115" }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "114", + "notes": "Now supports the <code>x</code> and <code>y</code> values, and also the deprecated <code>horizontal</code> and <code>vertical</code> values.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "111", + "version_removed": "114", + "notes": "Supports the deprecated <code>horizontal</code> and <code>vertical</code> values, and not the <code>x</code> and <code>y</code> values.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -91,37 +941,77 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { + "version_added": "115" + } + }, + "title": "view-timeline-axis" + } + ], + "view-timeline-inset": [ + { + "engines": [ + "blink" + ], + "filename": "css/properties/view-timeline-inset.json", + "name": "view-timeline-inset", + "slug": "CSS/view-timeline-inset", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/view-timeline-inset", + "summary": "The view-timeline-inset CSS property is used to specify one or two values representing an adjustment to the position of the scrollport (see Scroll container for more details) in which the subject element of a named view progress timeline animation is deemed to be visible. Put another way, this allows you to specify start and/or end inset (or outset) values that offset the position of the timeline.", + "support": { + "chrome": { + "version_added": "115" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115" } }, - "title": "scroll-timeline-name" + "title": "view-timeline-inset" } ], - "scroll-timeline-shorthand": [ + "view-timeline-name": [ { "engines": [ + "blink", "gecko" ], "needsflag": [ "gecko" ], - "filename": "css/properties/scroll-timeline.json", - "name": "scroll-timeline", - "slug": "CSS/scroll-timeline", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-timeline", - "summary": "The scroll-timeline CSS shorthand property defines a name that can be used to identify the source element of a scroll timeline, along with the scrollbar axis that should provide the timeline.", + "filename": "css/properties/view-timeline-name.json", + "name": "view-timeline-name", + "slug": "CSS/view-timeline-name", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/view-timeline-name", + "summary": "The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.", "support": { "chrome": { - "version_added": false + "version_added": "115" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "103", + "version_added": "111", "flags": [ { "type": "preference", - "name": "layout.css.scroll-linked-animations.enabled", + "name": "layout.css.scroll-driven-animations.enabled", "value_to_set": "true" } ] @@ -140,10 +1030,81 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { + "version_added": "115" + } + }, + "title": "view-timeline-name" + } + ], + "view-timeline-shorthand": [ + { + "engines": [ + "gecko" + ], + "partial": [ + "blink" + ], + "needsflag": [ + "gecko" + ], + "filename": "css/properties/view-timeline.json", + "name": "view-timeline", + "slug": "CSS/view-timeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/view-timeline", + "summary": "The view-timeline CSS shorthand property is used to define a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.", + "support": { + "chrome": { + "version_added": "115", + "partial_implementation": true, + "notes": "<code>view-timeline-attachment</code> not included in shorthand." + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": [ + { + "version_added": "114", + "notes": "Now supports the <code>x</code> and <code>y</code> values, and also the deprecated <code>horizontal</code> and <code>vertical</code> values.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + }, + { + "version_added": "111", + "version_removed": "114", + "notes": "Supports the deprecated <code>horizontal</code> and <code>vertical</code> values, and not the <code>x</code> and <code>y</code> values.", + "flags": [ + { + "type": "preference", + "name": "layout.css.scroll-driven-animations.enabled", + "value_to_set": "true" + } + ] + } + ], + "firefox_android": "mirror", + "ie": { "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115", + "partial_implementation": true, + "notes": "<code>view-timeline-attachment</code> not included in shorthand." } }, - "title": "scroll-timeline" + "title": "view-timeline" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/scroll-to-text-fragment.json b/bikeshed/spec-data/readonly/mdn/scroll-to-text-fragment.json new file mode 100644 index 0000000000..a938d76808 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/scroll-to-text-fragment.json @@ -0,0 +1,82 @@ +{ + "dom-document-fragmentdirective": [ + { + "engines": [ + "blink" + ], + "filename": "api/Document.json", + "name": "fragmentDirective", + "slug": "API/Document/fragmentDirective", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/fragmentDirective", + "summary": "The fragmentDirective read-only property of the Document interface returns the FragmentDirective for the current document.", + "support": { + "chrome": { + "version_added": "86" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "86" + } + }, + "title": "Document: fragmentDirective property" + } + ], + "fragmentdirective": [ + { + "engines": [ + "blink" + ], + "filename": "api/FragmentDirective.json", + "name": "FragmentDirective", + "slug": "API/FragmentDirective", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FragmentDirective", + "summary": "The FragmentDirective interface is an object representing the text fragments highlighted in the current document.", + "support": { + "chrome": { + "version_added": "81" + }, + "chrome_android": "mirror", + "edge": { + "version_added": false + }, + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "81" + } + }, + "title": "FragmentDirective" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/selection-api.json b/bikeshed/spec-data/readonly/mdn/selection-api.json index 407a0b4bce..f3c9c43b90 100644 --- a/bikeshed/spec-data/readonly/mdn/selection-api.json +++ b/bikeshed/spec-data/readonly/mdn/selection-api.json @@ -10,10 +10,10 @@ "name": "getSelection", "slug": "API/Document/getSelection", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/getSelection", - "summary": "The getSelection() property of the Document interface returns a Selection object representing the range of text selected by the user, or the current position of the caret.", + "summary": "The getSelection() method of the Document interface returns a Selection object representing the range of text selected by the user, or the current position of the caret.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -45,7 +45,7 @@ "version_added": "79" } }, - "title": "Document.getSelection()" + "title": "Document: getSelection() method" } ], "selectionchange-event": [ @@ -483,7 +483,7 @@ "version_added": "79" } }, - "title": "Selection.addRange()" + "title": "Selection: addRange() method" } ], "dom-selection-anchornode": [ @@ -530,7 +530,7 @@ "version_added": "79" } }, - "title": "Selection.anchorNode" + "title": "Selection: anchorNode property" } ], "dom-selection-anchoroffset": [ @@ -577,7 +577,7 @@ "version_added": "79" } }, - "title": "Selection.anchorOffset" + "title": "Selection: anchorOffset property" } ], "dom-selection-collapse": [ @@ -624,7 +624,7 @@ "version_added": "79" } }, - "title": "Selection.collapse()" + "title": "Selection: collapse() method" }, { "engines": [ @@ -665,7 +665,7 @@ "version_added": "79" } }, - "title": "Selection.collapse()" + "title": "Selection: collapse() method" } ], "dom-selection-collapsetoend": [ @@ -712,7 +712,7 @@ "version_added": "79" } }, - "title": "Selection.collapseToEnd()" + "title": "Selection: collapseToEnd() method" } ], "dom-selection-collapsetostart": [ @@ -759,7 +759,7 @@ "version_added": "79" } }, - "title": "Selection.collapseToStart()" + "title": "Selection: collapseToStart() method" } ], "dom-selection-containsnode": [ @@ -807,7 +807,7 @@ "version_added": "79" } }, - "title": "Selection.containsNode()" + "title": "Selection: containsNode() method" } ], "dom-selection-deletefromdocument": [ @@ -854,7 +854,7 @@ "version_added": "79" } }, - "title": "Selection.deleteFromDocument()" + "title": "Selection: deleteFromDocument() method" } ], "dom-selection-removeallranges": [ @@ -868,7 +868,7 @@ "name": "empty", "slug": "API/Selection/removeAllRanges", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Selection/removeAllRanges", - "summary": "The Selection.removeAllRanges() method removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and leaving nothing selected.", + "summary": "The Selection.removeAllRanges() method removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and nothing selected. When this method is called, a selectionchange event is fired at the document.", "support": { "chrome": { "version_added": "1" @@ -897,7 +897,7 @@ "version_added": "79" } }, - "title": "Selection.removeAllRanges()" + "title": "Selection: removeAllRanges() method" }, { "engines": [ @@ -909,7 +909,7 @@ "name": "removeAllRanges", "slug": "API/Selection/removeAllRanges", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Selection/removeAllRanges", - "summary": "The Selection.removeAllRanges() method removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and leaving nothing selected.", + "summary": "The Selection.removeAllRanges() method removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and nothing selected. When this method is called, a selectionchange event is fired at the document.", "support": { "chrome": { "version_added": "1" @@ -944,7 +944,7 @@ "version_added": "79" } }, - "title": "Selection.removeAllRanges()" + "title": "Selection: removeAllRanges() method" } ], "dom-selection-extend": [ @@ -991,7 +991,7 @@ "version_added": "79" } }, - "title": "Selection.extend()" + "title": "Selection: extend() method" } ], "dom-selection-focusnode": [ @@ -1038,7 +1038,7 @@ "version_added": "79" } }, - "title": "Selection.focusNode" + "title": "Selection: focusNode property" } ], "dom-selection-focusoffset": [ @@ -1085,7 +1085,7 @@ "version_added": "79" } }, - "title": "Selection.focusOffset" + "title": "Selection: focusOffset property" } ], "dom-selection-getrangeat": [ @@ -1134,7 +1134,7 @@ "version_added": "79" } }, - "title": "Selection.getRangeAt()" + "title": "Selection: getRangeAt() method" } ], "dom-selection-iscollapsed": [ @@ -1181,7 +1181,7 @@ "version_added": "79" } }, - "title": "Selection.isCollapsed" + "title": "Selection: isCollapsed property" } ], "dom-selection-modify": [ @@ -1222,7 +1222,7 @@ "version_added": "79" } }, - "title": "Selection.modify()" + "title": "Selection: modify() method" } ], "dom-selection-rangecount": [ @@ -1271,14 +1271,15 @@ "version_added": "79" } }, - "title": "Selection.rangeCount" + "title": "Selection: rangeCount property" } ], "dom-selection-removerange": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/Selection.json", "name": "removeRange", @@ -1320,7 +1321,7 @@ } ], "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1329,7 +1330,7 @@ "version_added": "79" } }, - "title": "Selection.removeRange()" + "title": "Selection: removeRange() method" } ], "dom-selection-selectallchildren": [ @@ -1376,7 +1377,7 @@ "version_added": "79" } }, - "title": "Selection.selectAllChildren()" + "title": "Selection: selectAllChildren() method" } ], "dom-selection-setbaseandextent": [ @@ -1400,7 +1401,7 @@ "version_added": "12" }, "firefox": { - "version_added": "52" + "version_added": "53" }, "firefox_android": "mirror", "ie": { @@ -1419,7 +1420,7 @@ "version_added": "79" } }, - "title": "Selection.setBaseAndExtent()" + "title": "Selection: setBaseAndExtent() method" } ], "dom-selection-stringifier": [ @@ -1466,7 +1467,7 @@ "version_added": "79" } }, - "title": "Selection.toString()" + "title": "Selection: toString() method" } ], "dom-selection-type": [ @@ -1509,7 +1510,7 @@ "version_added": "79" } }, - "title": "Selection.type" + "title": "Selection: type property" } ], "selection-interface": [ @@ -1603,7 +1604,7 @@ "version_added": "79" } }, - "title": "Window.getSelection()" + "title": "Window: getSelection() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/selectors.json b/bikeshed/spec-data/readonly/mdn/selectors.json index 699f3b8494..610256f3eb 100644 --- a/bikeshed/spec-data/readonly/mdn/selectors.json +++ b/bikeshed/spec-data/readonly/mdn/selectors.json @@ -202,7 +202,7 @@ "name": "attribute", "slug": "CSS/Attribute_selectors", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors", - "summary": "The CSS attribute selector matches elements based on the presence or value of a given attribute.", + "summary": "The CSS attribute selector matches elements based on the element having a given attribute explicitly set, with options for defining an attribute value or substring value match.", "support": { "chrome": { "version_added": "1" @@ -582,7 +582,8 @@ "the-dir-pseudo": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/selectors/dir.json", "name": "dir", @@ -613,7 +614,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1126,7 +1127,7 @@ "name": "has", "slug": "CSS/:has", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:has", - "summary": "The functional :has() CSS pseudo-class represents an element if any of the relative selectors that are passed as an argument match at least one element when anchored against this element. This pseudo-class presents a way of selecting a parent element or a previous sibling element with respect to a reference element by taking a forgiving relative selector list as an argument.", + "summary": "The functional :has() CSS pseudo-class represents an element if any of the relative selectors that are passed as an argument match at least one element when anchored against this element. This pseudo-class presents a way of selecting a parent element or a previous sibling element with respect to a reference element by taking a relative selector list as an argument.", "support": { "chrome": { "version_added": "105" @@ -1798,7 +1799,7 @@ "name": "visited", "slug": "CSS/:visited", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:visited", - "summary": "The :visited CSS pseudo-class represents links that the user has already visited. For privacy reasons, the styles that can be modified using this selector are very limited.", + "summary": "The :visited CSS pseudo-class applies once the link has been visited by the user. For privacy reasons, the styles that can be modified using this selector are very limited. The :visited pseudo-class applies only <a> and <area> elements that have an href attribute.", "support": { "chrome": { "version_added": "1" @@ -2475,7 +2476,7 @@ "name": "paused", "slug": "CSS/:paused", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:paused", - "summary": "The :paused CSS pseudo-class selector is a resource state pseudo-class that will match an audio, video, or similar resource that is capable of being \"played\" or \"paused\", when that element is \"paused\".", + "summary": "The :paused CSS pseudo-class selector represents an element that is playable, such as <audio> or <video>, when that element is \"paused\" (i.e. not \"playing\").", "support": { "chrome": { "version_added": false @@ -2517,7 +2518,7 @@ "summary": "The :picture-in-picture CSS pseudo-class matches the element which is currently in picture-in-picture mode.", "support": { "chrome": { - "version_added": "76" + "version_added": "110" }, "chrome_android": "mirror", "edge": "mirror", @@ -2538,7 +2539,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": "110" } }, "title": ":picture-in-picture" @@ -2606,7 +2607,7 @@ "name": "playing", "slug": "CSS/:playing", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:playing", - "summary": "The :playing CSS pseudo-class selector is a resource state pseudo-class that will match an audio, video, or similar resource that is capable of being \"played\" or \"paused\", when that element is \"playing\".", + "summary": "The :playing CSS pseudo-class selector represents the playback state of an element that is playable, such as <audio> or <video>, when that element is \"playing\". An element is considered to be playing if it is currently playing the media resource, or if it has temporarily stopped for reasons other than user intent (such as :buffering or :stalled).", "support": { "chrome": { "version_added": false @@ -2814,7 +2815,7 @@ "name": "scope", "slug": "CSS/:scope", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/:scope", - "summary": "The :scope CSS pseudo-class represents elements that are a reference point for selectors to match against.", + "summary": "The :scope CSS pseudo-class represents elements that are a reference point, or scope, for selectors to match against.", "support": { "chrome": { "version_added": "27" @@ -3034,7 +3035,8 @@ "user-invalid-pseudo": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/selectors/user-invalid.json", "name": "user-invalid", @@ -3043,7 +3045,8 @@ "summary": "The :user-invalid CSS pseudo-class represents any validated form element whose value isn't valid based on their validation constraints, after the user has interacted with it.", "support": { "chrome": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/1156069'>bug 1156069</a>." }, "chrome_android": "mirror", "edge": "mirror", @@ -3064,22 +3067,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.5" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/1156069'>bug 1156069</a>." } }, - "title": ":user-invalid (:-moz-ui-invalid)" + "title": ":user-invalid" } ], "user-valid-pseudo": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "css/selectors/user-valid.json", "name": "user-valid", @@ -3088,7 +3093,8 @@ "summary": "The :user-valid CSS pseudo-class represents any validated form element whose value validates correctly based on its validation constraints. However, unlike :valid it only matches once the user has interacted with it.", "support": { "chrome": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/1156069'>bug 1156069</a>." }, "chrome_android": "mirror", "edge": "mirror", @@ -3109,16 +3115,17 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.5" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": false, + "notes": "See <a href='https://crbug.com/1156069'>bug 1156069</a>." } }, - "title": ":user-valid (:-moz-ui-valid)" + "title": ":user-valid" } ], "zero-matches": [ diff --git a/bikeshed/spec-data/readonly/mdn/serial.json b/bikeshed/spec-data/readonly/mdn/serial.json index 507de7d6f4..69cd2cfe3d 100644 --- a/bikeshed/spec-data/readonly/mdn/serial.json +++ b/bikeshed/spec-data/readonly/mdn/serial.json @@ -37,7 +37,7 @@ "version_added": "89" } }, - "title": "Navigator.serial" + "title": "Navigator: serial property" } ], "dom-serial-getports": [ @@ -78,7 +78,7 @@ "version_added": "89" } }, - "title": "Serial.getPorts()" + "title": "Serial: getPorts() method" } ], "dom-serial-requestport": [ @@ -119,7 +119,7 @@ "version_added": "89" } }, - "title": "Serial.requestPort()" + "title": "Serial: requestPort() method" } ], "serial-interface": [ @@ -201,7 +201,7 @@ "version_added": "89" } }, - "title": "SerialPort.close()" + "title": "SerialPort: close() method" } ], "dfn-connect": [ @@ -324,7 +324,7 @@ "version_added": "89" } }, - "title": "SerialPort: disconnect" + "title": "SerialPort: disconnect event" } ], "dom-serialport-ondisconnect": [ @@ -365,7 +365,48 @@ "version_added": "89" } }, - "title": "SerialPort: disconnect" + "title": "SerialPort: disconnect event" + } + ], + "dom-serialport-forget": [ + { + "engines": [ + "blink" + ], + "filename": "api/SerialPort.json", + "name": "forget", + "slug": "API/SerialPort/forget", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SerialPort/forget", + "summary": "The SerialPort.forget() method of the SerialPort interface returns a Promise that resolves when the serial port is closed and is forgotten.", + "support": { + "chrome": { + "version_added": "103" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "103" + } + }, + "title": "SerialPort: forget() method" } ], "dom-serialport-getinfo": [ @@ -406,7 +447,7 @@ "version_added": "89" } }, - "title": "SerialPort.getInfo()" + "title": "SerialPort: getInfo() method" } ], "dom-serialport-getsignals": [ @@ -447,7 +488,7 @@ "version_added": "89" } }, - "title": "SerialPort.getSignals()" + "title": "SerialPort: getSignals() method" } ], "dom-serialport-open": [ @@ -488,7 +529,7 @@ "version_added": "89" } }, - "title": "SerialPort.open()" + "title": "SerialPort: open() method" } ], "dom-serialport-readable": [ @@ -529,7 +570,7 @@ "version_added": "89" } }, - "title": "SerialPort.readable" + "title": "SerialPort: readable property" } ], "dom-serialport-setsignals": [ @@ -570,7 +611,7 @@ "version_added": "89" } }, - "title": "SerialPort.setSignals()" + "title": "SerialPort: setSignals() method" } ], "dom-serialport-writable": [ @@ -611,7 +652,7 @@ "version_added": "89" } }, - "title": "SerialPort.writable" + "title": "SerialPort: writable property" } ], "dom-serialport": [ @@ -695,7 +736,46 @@ "version_added": "89" } }, - "title": "WorkerNavigator.serial" + "title": "WorkerNavigator: serial property" + } + ], + "permissions-policy": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "serial", + "slug": "HTTP/Headers/Permissions-Policy/serial", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/serial", + "summary": "The HTTP Permissions-Policy header serial directive controls whether the current document is allowed to use the Web Serial API to communicate with serial devices, either directly connected via a serial port, or via USB or Bluetooth devices emulating a serial port.", + "support": { + "chrome": { + "version_added": "89" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "89" + } + }, + "title": "Permissions-Policy: serial" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/server-timing.json b/bikeshed/spec-data/readonly/mdn/server-timing.json index 5bc71f9c9d..0123b6a5b5 100644 --- a/bikeshed/spec-data/readonly/mdn/server-timing.json +++ b/bikeshed/spec-data/readonly/mdn/server-timing.json @@ -3,7 +3,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceResourceTiming.json", "name": "serverTiming", @@ -27,7 +28,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -36,14 +37,15 @@ "version_added": "79" } }, - "title": "PerformanceResourceTiming.serverTiming" + "title": "PerformanceResourceTiming: serverTiming property" } ], "dom-performanceservertiming-description": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceServerTiming.json", "name": "description", @@ -67,7 +69,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -76,20 +78,21 @@ "version_added": "79" } }, - "title": "PerformanceServerTiming.description" + "title": "PerformanceServerTiming: description property" } ], "dom-performanceservertiming-duration": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceServerTiming.json", "name": "duration", "slug": "API/PerformanceServerTiming/duration", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceServerTiming/duration", - "summary": "The duration read-only property returns a double that contains the server-specified metric duration, or value 0.0.", + "summary": "The duration read-only property returns a double that contains the server-specified metric duration, or the value 0.0.", "support": { "chrome": { "version_added": "65" @@ -107,7 +110,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -116,14 +119,15 @@ "version_added": "79" } }, - "title": "PerformanceServerTiming.duration" + "title": "PerformanceServerTiming: duration property" } ], "dom-performanceservertiming-name": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceServerTiming.json", "name": "name", @@ -147,7 +151,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -156,20 +160,21 @@ "version_added": "79" } }, - "title": "PerformanceServerTiming.name" + "title": "PerformanceServerTiming: name property" } ], "dom-performanceservertiming-tojson": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceServerTiming.json", "name": "toJSON", "slug": "API/PerformanceServerTiming/toJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PerformanceServerTiming/toJSON", - "summary": "The toJSON() method of the PerformanceServerTiming interface returns a string that is the JSON representation of the PerformanceServerTiming object.", + "summary": "The toJSON() method of the PerformanceServerTiming interface is a serializer; it returns a JSON representation of the PerformanceServerTiming object.", "support": { "chrome": { "version_added": "65" @@ -187,7 +192,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -196,14 +201,15 @@ "version_added": "79" } }, - "title": "PerformanceServerTiming.toJSON()" + "title": "PerformanceServerTiming: toJSON() method" } ], "the-performanceservertiming-interface": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/PerformanceServerTiming.json", "name": "PerformanceServerTiming", @@ -227,7 +233,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/service-workers.json b/bikeshed/spec-data/readonly/mdn/service-workers.json index 5ba7a0277a..defb19c642 100644 --- a/bikeshed/spec-data/readonly/mdn/service-workers.json +++ b/bikeshed/spec-data/readonly/mdn/service-workers.json @@ -17,6 +17,9 @@ "notes": "Requires HTTPS from version 46." }, "chrome_android": "mirror", + "deno": { + "version_added": false + }, "edge": { "version_added": "16" }, @@ -44,7 +47,7 @@ "notes": "Requires HTTPS from version 46." } }, - "title": "Cache.add()" + "title": "Cache: add() method" } ], "cache-addAll": [ @@ -65,6 +68,9 @@ "notes": "Requires HTTPS." }, "chrome_android": "mirror", + "deno": { + "version_added": false + }, "edge": { "version_added": "16" }, @@ -89,7 +95,7 @@ "notes": "Requires HTTPS." } }, - "title": "Cache.addAll()" + "title": "Cache: addAll() method" } ], "cache-delete": [ @@ -109,6 +115,10 @@ "version_added": "43" }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26", + "notes": "Currently doesn't support query options" + }, "edge": { "version_added": "16" }, @@ -132,7 +142,7 @@ "version_added": "79" } }, - "title": "Cache.delete()" + "title": "Cache: delete() method" } ], "cache-keys": [ @@ -152,6 +162,9 @@ "version_added": "43" }, "chrome_android": "mirror", + "deno": { + "version_added": false + }, "edge": { "version_added": "16" }, @@ -175,7 +188,7 @@ "version_added": "79" } }, - "title": "Cache.keys()" + "title": "Cache: keys() method" } ], "cache-match": [ @@ -195,6 +208,10 @@ "version_added": "43" }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26", + "notes": "Currently doesn't support query options" + }, "edge": { "version_added": "16" }, @@ -218,7 +235,7 @@ "version_added": "79" } }, - "title": "Cache.match()" + "title": "Cache: match() method" } ], "cache-matchall": [ @@ -238,6 +255,9 @@ "version_added": "47" }, "chrome_android": "mirror", + "deno": { + "version_added": false + }, "edge": { "version_added": "16" }, @@ -264,7 +284,7 @@ "version_added": "79" } }, - "title": "Cache.matchAll()" + "title": "Cache: matchAll() method" } ], "cache-put": [ @@ -285,6 +305,9 @@ "notes": "Requires HTTPS from version 46." }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26" + }, "edge": { "version_added": "16" }, @@ -312,7 +335,7 @@ "notes": "Requires HTTPS from version 46." } }, - "title": "Cache.put()" + "title": "Cache: put() method" } ], "cache-interface": [ @@ -333,6 +356,9 @@ "notes": "Before version 43, only service workers are supported. From version 43, all worker types and the main thread are supported." }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26" + }, "edge": { "version_added": "16" }, @@ -379,6 +405,9 @@ "version_added": "40" }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26" + }, "edge": { "version_added": "16" }, @@ -402,7 +431,7 @@ "version_added": "79" } }, - "title": "CacheStorage.delete()" + "title": "CacheStorage: delete() method" } ], "cache-storage-has": [ @@ -422,6 +451,9 @@ "version_added": "40" }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26" + }, "edge": { "version_added": "16" }, @@ -445,7 +477,7 @@ "version_added": "79" } }, - "title": "CacheStorage.has()" + "title": "CacheStorage: has() method" } ], "cache-storage-keys": [ @@ -465,6 +497,9 @@ "version_added": "40" }, "chrome_android": "mirror", + "deno": { + "version_added": false + }, "edge": { "version_added": "16" }, @@ -488,7 +523,7 @@ "version_added": "79" } }, - "title": "CacheStorage.keys()" + "title": "CacheStorage: keys() method" } ], "cache-storage-match": [ @@ -515,6 +550,9 @@ } ], "chrome_android": "mirror", + "deno": { + "version_added": false + }, "edge": { "version_added": "16" }, @@ -545,7 +583,7 @@ } ] }, - "title": "CacheStorage.match()" + "title": "CacheStorage: match() method" } ], "cache-storage-open": [ @@ -565,6 +603,9 @@ "version_added": "40" }, "chrome_android": "mirror", + "deno": { + "version_added": "1.26" + }, "edge": { "version_added": "16" }, @@ -588,7 +629,7 @@ "version_added": "79" } }, - "title": "CacheStorage.open()" + "title": "CacheStorage: open() method" } ], "cachestorage-interface": [ @@ -616,6 +657,9 @@ } ], "chrome_android": "mirror", + "deno": { + "version_added": "1.26" + }, "edge": { "version_added": "16" }, @@ -690,7 +734,7 @@ "version_added": "79" } }, - "title": "Client.frameType" + "title": "Client: frameType property" } ], "client-id": [ @@ -733,7 +777,7 @@ "version_added": "79" } }, - "title": "Client.id" + "title": "Client: id property" } ], "dom-client-postmessage-message-options": [ @@ -776,7 +820,7 @@ "version_added": "79" } }, - "title": "Client.postMessage()" + "title": "Client: postMessage() method" } ], "client-type": [ @@ -819,7 +863,7 @@ "version_added": "79" } }, - "title": "Client.type" + "title": "Client: type property" } ], "client-url": [ @@ -862,7 +906,7 @@ "version_added": "79" } }, - "title": "Client.url" + "title": "Client: url property" } ], "client-interface": [ @@ -948,7 +992,7 @@ "version_added": "79" } }, - "title": "Clients.claim()" + "title": "Clients: claim() method" } ], "clients-get": [ @@ -991,7 +1035,7 @@ "version_added": "79" } }, - "title": "Clients.get()" + "title": "Clients: get() method" } ], "clients-matchall": [ @@ -1048,7 +1092,7 @@ "notes": "<code>Client</code> objects returned in most recent focus order." } }, - "title": "Clients.matchAll()" + "title": "Clients: matchAll() method" } ], "clients-openwindow": [ @@ -1103,7 +1147,7 @@ ] } }, - "title": "Clients.openWindow()" + "title": "Clients: openWindow() method" } ], "clients-interface": [ @@ -1163,7 +1207,7 @@ "summary": "The ExtendableEvent() constructor creates a new ExtendableEvent object.", "support": { "chrome": { - "version_added": "40" + "version_added": "41" }, "chrome_android": "mirror", "edge": { @@ -1193,7 +1237,7 @@ "version_added": "79" } }, - "title": "ExtendableEvent()" + "title": "ExtendableEvent: ExtendableEvent() constructor" } ], "dom-extendableevent-waituntil": [ @@ -1240,7 +1284,7 @@ "version_added": "79" } }, - "title": "ExtendableEvent.waitUntil()" + "title": "ExtendableEvent: waitUntil() method" } ], "extendableevent-interface": [ @@ -1330,7 +1374,7 @@ "version_added": "79" } }, - "title": "ExtendableMessageEvent()" + "title": "ExtendableMessageEvent: ExtendableMessageEvent() constructor" } ], "extendablemessage-event-data": [ @@ -1373,7 +1417,7 @@ "version_added": "79" } }, - "title": "ExtendableMessageEvent.data" + "title": "ExtendableMessageEvent: data property" } ], "extendablemessage-event-lasteventid": [ @@ -1416,7 +1460,7 @@ "version_added": "79" } }, - "title": "ExtendableMessageEvent.lastEventId" + "title": "ExtendableMessageEvent: lastEventId property" } ], "extendablemessage-event-origin": [ @@ -1459,7 +1503,7 @@ "version_added": "79" } }, - "title": "ExtendableMessageEvent.origin" + "title": "ExtendableMessageEvent: origin property" } ], "extendablemessage-event-ports": [ @@ -1502,7 +1546,7 @@ "version_added": "79" } }, - "title": "ExtendableMessageEvent.ports" + "title": "ExtendableMessageEvent: ports property" } ], "extendablemessage-event-source": [ @@ -1545,7 +1589,7 @@ "version_added": "79" } }, - "title": "ExtendableMessageEvent.source" + "title": "ExtendableMessageEvent: source property" } ], "extendablemessageevent-interface": [ @@ -1605,7 +1649,7 @@ "summary": "The FetchEvent() constructor creates a new FetchEvent object.", "support": { "chrome": { - "version_added": "40" + "version_added": "44" }, "chrome_android": "mirror", "edge": { @@ -1631,7 +1675,7 @@ "version_added": "79" } }, - "title": "FetchEvent()" + "title": "FetchEvent: FetchEvent() constructor" } ], "fetch-event-clientid": [ @@ -1674,7 +1718,48 @@ "version_added": "79" } }, - "title": "FetchEvent.clientId" + "title": "FetchEvent: clientId property" + } + ], + "dom-fetchevent-handled": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/FetchEvent.json", + "name": "handled", + "slug": "API/FetchEvent/handled", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent/handled", + "summary": "The handled property of the FetchEvent interface returns a promise indicating if the event has been handled by the fetch algorithm or not. This property allows executing code after the browser has consumed a response, and is usually used together with the waitUntil() method.", + "support": { + "chrome": { + "version_added": "86" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "84" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "86" + } + }, + "title": "FetchEvent: handled property" } ], "fetch-event-preloadresponse": [ @@ -1717,7 +1802,7 @@ "version_added": "79" } }, - "title": "FetchEvent.preloadResponse" + "title": "FetchEvent: preloadResponse property" } ], "fetch-event-replacesClientId": [ @@ -1757,7 +1842,7 @@ "version_added": false } }, - "title": "FetchEvent.replacesClientId" + "title": "FetchEvent: replacesClientId property" } ], "fetch-event-request": [ @@ -1800,7 +1885,7 @@ "version_added": "79" } }, - "title": "FetchEvent.request" + "title": "FetchEvent: request property" } ], "fetch-event-respondwith": [ @@ -1843,7 +1928,7 @@ "version_added": "79" } }, - "title": "FetchEvent.respondWith()" + "title": "FetchEvent: respondWith() method" } ], "fetch-event-resultingclientid": [ @@ -1886,7 +1971,7 @@ "version_added": "79" } }, - "title": "FetchEvent.resultingClientId" + "title": "FetchEvent: resultingClientId property" } ], "fetchevent-interface": [ @@ -1972,7 +2057,7 @@ "version_added": "79" } }, - "title": "NavigationPreloadManager.disable()" + "title": "NavigationPreloadManager: disable() method" } ], "dom-navigationpreloadmanager-enable": [ @@ -2015,7 +2100,7 @@ "version_added": "79" } }, - "title": "NavigationPreloadManager.enable()" + "title": "NavigationPreloadManager: enable() method" } ], "dom-navigationpreloadmanager-getstate": [ @@ -2058,7 +2143,7 @@ "version_added": "79" } }, - "title": "NavigationPreloadManager.getState()" + "title": "NavigationPreloadManager: getState() method" } ], "dom-navigationpreloadmanager-setheadervalue": [ @@ -2101,7 +2186,7 @@ "version_added": "79" } }, - "title": "NavigationPreloadManager.setHeaderValue()" + "title": "NavigationPreloadManager: setHeaderValue() method" } ], "navigation-preload-manager": [ @@ -2168,6 +2253,7 @@ "version_added": "17" }, "firefox": { + "notes": "In Firefox private windows, the <code>serviceWorker</code> object is <code>undefined</code>. See <a href='https://bugzil.la/1320796'>bug 1320796</a>.", "version_added": "44" }, "firefox_android": "mirror", @@ -2187,7 +2273,93 @@ "version_added": "79" } }, - "title": "Navigator.serviceWorker" + "title": "Navigator: serviceWorker property" + } + ], + "dom-serviceworker-postmessage": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ServiceWorker.json", + "name": "postMessage", + "slug": "API/ServiceWorker/postMessage", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/postMessage", + "summary": "The postMessage() method of the ServiceWorker interface sends a message to the worker. This accepts a single parameter, which is the data to send to the worker. The data may be any JavaScript object which can be handled by the structured clone algorithm.", + "support": { + "chrome": { + "version_added": "40" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorker: postMessage() method" + } + ], + "dom-serviceworker-postmessage-message-options": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ServiceWorker.json", + "name": "postMessage", + "slug": "API/ServiceWorker/postMessage", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/postMessage", + "summary": "The postMessage() method of the ServiceWorker interface sends a message to the worker. This accepts a single parameter, which is the data to send to the worker. The data may be any JavaScript object which can be handled by the structured clone algorithm.", + "support": { + "chrome": { + "version_added": "40" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ServiceWorker: postMessage() method" } ], "service-worker-url": [ @@ -2230,7 +2402,7 @@ "version_added": "79" } }, - "title": "ServiceWorker.scriptURL" + "title": "ServiceWorker: scriptURL property" } ], "service-worker-state": [ @@ -2273,7 +2445,7 @@ "version_added": "79" } }, - "title": "ServiceWorker.state" + "title": "ServiceWorker: state property" } ], "dom-serviceworker-onstatechange": [ @@ -2402,7 +2574,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerContainer.controller" + "title": "ServiceWorkerContainer: controller property" } ], "dom-serviceworkercontainer-oncontrollerchange": [ @@ -2488,7 +2660,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerContainer.getRegistration()" + "title": "ServiceWorkerContainer: getRegistration() method" } ], "navigator-service-worker-getRegistrations": [ @@ -2539,7 +2711,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerContainer.getRegistrations()" + "title": "ServiceWorkerContainer: getRegistrations() method" } ], "dom-serviceworkercontainer-onmessage": [ @@ -2625,7 +2797,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerContainer.ready" + "title": "ServiceWorkerContainer: ready property" } ], "navigator-service-worker-register": [ @@ -2668,7 +2840,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerContainer.register()" + "title": "ServiceWorkerContainer: register() method" } ], "navigator-service-worker-startMessages": [ @@ -2711,7 +2883,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerContainer.startMessages()" + "title": "ServiceWorkerContainer: startMessages() method" } ], "serviceworkercontainer-interface": [ @@ -2895,7 +3067,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerGlobalScope.clients" + "title": "ServiceWorkerGlobalScope: clients property" } ], "dom-serviceworkerglobalscope-onfetch": [ @@ -2909,7 +3081,7 @@ "name": "fetch_event", "slug": "API/ServiceWorkerGlobalScope/fetch_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/fetch_event", - "summary": "The fetch event is fired when the fetch() method is called.", + "summary": "The fetch event is fired in the service worker's global scope when the main app thread makes a network request. It enables the service worker to intercept network requests and send customized responses (for example, from a local cache).", "support": { "chrome": { "version_added": "40" @@ -3130,7 +3302,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerGlobalScope.registration" + "title": "ServiceWorkerGlobalScope: registration property" } ], "service-worker-global-scope-skipwaiting": [ @@ -3177,7 +3349,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerGlobalScope.skipWaiting()" + "title": "ServiceWorkerGlobalScope: skipWaiting() method" } ], "serviceworkerglobalscope-interface": [ @@ -3267,7 +3439,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.active" + "title": "ServiceWorkerRegistration: active property" } ], "navigator-service-worker-installing": [ @@ -3310,7 +3482,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.installing" + "title": "ServiceWorkerRegistration: installing property" } ], "service-worker-registration-navigationpreload": [ @@ -3355,7 +3527,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.navigationPreload" + "title": "ServiceWorkerRegistration: navigationPreload property" } ], "service-worker-registration-scope": [ @@ -3398,7 +3570,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.scope" + "title": "ServiceWorkerRegistration: scope property" } ], "navigator-service-worker-unregister": [ @@ -3441,7 +3613,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.unregister()" + "title": "ServiceWorkerRegistration: unregister() method" } ], "service-worker-registration-update": [ @@ -3498,7 +3670,7 @@ ] } }, - "title": "ServiceWorkerRegistration.update()" + "title": "ServiceWorkerRegistration: update() method" } ], "dom-serviceworkerregistration-onupdatefound": [ @@ -3584,7 +3756,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.updateViaCache" + "title": "ServiceWorkerRegistration: updateViaCache property" } ], "navigator-service-worker-waiting": [ @@ -3627,7 +3799,7 @@ "version_added": "79" } }, - "title": "ServiceWorkerRegistration.waiting" + "title": "ServiceWorkerRegistration: waiting property" } ], "serviceworkerregistration-interface": [ @@ -3713,7 +3885,7 @@ "version_added": "79" } }, - "title": "WindowClient.focus()" + "title": "WindowClient: focus() method" } ], "client-focused": [ @@ -3756,16 +3928,14 @@ "version_added": "79" } }, - "title": "WindowClient.focused" + "title": "WindowClient: focused property" } ], "client-navigate": [ { "engines": [ "blink", - "gecko" - ], - "partial": [ + "gecko", "webkit" ], "filename": "api/WindowClient.json", @@ -3791,11 +3961,17 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": { - "version_added": "11.1", - "partial_implementation": true, - "notes": "This method exists, but always throws <code>NotSupportedError</code>." - }, + "safari": [ + { + "version_added": "16" + }, + { + "version_added": "11.1", + "version_removed": "16", + "partial_implementation": true, + "notes": "This method exists, but always throws <code>NotSupportedError</code>." + } + ], "safari_ios": "mirror", "samsunginternet_android": { "version_added": "4.0" @@ -3807,7 +3983,7 @@ "version_added": "79" } }, - "title": "WindowClient.navigate()" + "title": "WindowClient: navigate() method" } ], "client-visibilitystate": [ @@ -3850,7 +4026,7 @@ "version_added": "79" } }, - "title": "WindowClient.visibilityState" + "title": "WindowClient: visibilityState property" } ], "windowclient": [ @@ -3914,7 +4090,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.26" }, "edge": { "version_added": "16" @@ -3939,7 +4115,7 @@ "version_added": "79" } }, - "title": "caches" + "title": "caches global property" } ], "handle-fetch": [ @@ -3977,9 +4153,7 @@ ] } ], - "firefox_android": { - "version_added": false - }, + "firefox_android": "mirror", "ie": { "version_added": false }, diff --git a/bikeshed/spec-data/readonly/mdn/shape-detection-api.json b/bikeshed/spec-data/readonly/mdn/shape-detection-api.json index 54d1d98d3f..2379a46d60 100644 --- a/bikeshed/spec-data/readonly/mdn/shape-detection-api.json +++ b/bikeshed/spec-data/readonly/mdn/shape-detection-api.json @@ -66,7 +66,7 @@ } ] }, - "title": "BarcodeDetector()" + "title": "BarcodeDetector: BarcodeDetector() constructor" } ], "dom-barcodedetector-detect": [ @@ -136,7 +136,7 @@ } ] }, - "title": "BarcodeDetector.detect()" + "title": "BarcodeDetector: detect() method" } ], "dom-barcodedetector-getsupportedformats": [ @@ -148,9 +148,9 @@ "blink" ], "filename": "api/BarcodeDetector.json", - "name": "getSupportedFormats", - "slug": "API/BarcodeDetector/getSupportedFormats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector/getSupportedFormats", + "name": "getSupportedFormats_static", + "slug": "API/BarcodeDetector/getSupportedFormats_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector/getSupportedFormats_static", "summary": "The getSupportedFormats() static method of the BarcodeDetector interface returns a Promise which fulfills with an Array of supported barcode format types.", "support": { "chrome": [ @@ -206,7 +206,7 @@ } ] }, - "title": "BarcodeDetector.getSupportedFormats()" + "title": "BarcodeDetector: getSupportedFormats() static method" } ], "barcode-detection-api": [ diff --git a/bikeshed/spec-data/readonly/mdn/speech-api.json b/bikeshed/spec-data/readonly/mdn/speech-api.json index b53289ea9c..c7d5aed4e3 100644 --- a/bikeshed/spec-data/readonly/mdn/speech-api.json +++ b/bikeshed/spec-data/readonly/mdn/speech-api.json @@ -53,7 +53,7 @@ "version_added": "79" } }, - "title": "SpeechGrammar.src" + "title": "SpeechGrammar: src property" } ], "dom-speechgrammar-weight": [ @@ -110,7 +110,7 @@ "version_added": "79" } }, - "title": "SpeechGrammar.weight" + "title": "SpeechGrammar: weight property" } ], "speechreco-speechgrammar": [ @@ -217,7 +217,7 @@ "version_added": "79" } }, - "title": "SpeechGrammarList()" + "title": "SpeechGrammarList: SpeechGrammarList() constructor" } ], "dom-speechgrammarlist-addfromstring": [ @@ -260,7 +260,7 @@ "version_added": "79" } }, - "title": "SpeechGrammarList.addFromString()" + "title": "SpeechGrammarList: addFromString() method" } ], "dom-speechgrammarlist-addfromuri": [ @@ -303,7 +303,7 @@ "version_added": "79" } }, - "title": "SpeechGrammarList.addFromURI()" + "title": "SpeechGrammarList: addFromURI() method" } ], "dom-speechgrammarlist-item": [ @@ -346,7 +346,7 @@ "version_added": "79" } }, - "title": "SpeechGrammarList.item()" + "title": "SpeechGrammarList: item() method" } ], "dom-speechgrammarlist-length": [ @@ -389,7 +389,7 @@ "version_added": "79" } }, - "title": "SpeechGrammarList.length" + "title": "SpeechGrammarList: length property" } ], "speechgrammarlist": [ @@ -486,7 +486,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition()" + "title": "SpeechRecognition: SpeechRecognition() constructor" } ], "dom-speechrecognition-abort": [ @@ -526,7 +526,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.abort()" + "title": "SpeechRecognition: abort() method" } ], "eventdef-speechrecognition-audioend": [ @@ -726,7 +726,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.continuous" + "title": "SpeechRecognition: continuous property" } ], "eventdef-speechrecognition-end": [ @@ -925,7 +925,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.grammars" + "title": "SpeechRecognition: grammars property" } ], "dom-speechrecognition-interimresults": [ @@ -965,7 +965,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.interimResults" + "title": "SpeechRecognition: interimResults property" } ], "dom-speechrecognition-lang": [ @@ -978,7 +978,7 @@ "name": "lang", "slug": "API/SpeechRecognition/lang", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang", - "summary": "A string representing the BCP 47 language tag for the current SpeechRecognition.", + "summary": "The lang property of the SpeechRecognition interface returns and sets the language of the current SpeechRecognition. If not specified, this defaults to the HTML lang attribute value, or the user agent's language setting if that isn't set either.", "support": { "chrome": { "version_added": "33" @@ -1005,7 +1005,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.lang" + "title": "SpeechRecognition: lang property" } ], "dom-speechrecognition-maxalternatives": [ @@ -1045,7 +1045,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.maxAlternatives" + "title": "SpeechRecognition: maxAlternatives property" } ], "eventdef-speechrecognition-nomatch": [ @@ -1565,7 +1565,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.start()" + "title": "SpeechRecognition: start() method" } ], "eventdef-speechrecognition-start": [ @@ -1685,7 +1685,7 @@ "version_added": "79" } }, - "title": "SpeechRecognition.stop()" + "title": "SpeechRecognition: stop() method" } ], "speechreco-section": [ @@ -1779,7 +1779,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionAlternative.confidence" + "title": "SpeechRecognitionAlternative: confidence property" } ], "dom-speechrecognitionalternative-transcript": [ @@ -1823,7 +1823,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionAlternative.transcript" + "title": "SpeechRecognitionAlternative: transcript property" } ], "speechreco-alternative": [ @@ -1895,12 +1895,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": false - }, - "opera_android": { - "version_added": false - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "14.1" }, @@ -1911,7 +1907,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionErrorEvent.error" + "title": "SpeechRecognitionErrorEvent: error property" } ], "dom-speechrecognitionerrorevent-message": [ @@ -1939,12 +1935,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": false - }, - "opera_android": { - "version_added": false - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "14.1" }, @@ -1955,7 +1947,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionErrorEvent.message" + "title": "SpeechRecognitionErrorEvent: message property" } ], "speechrecognitionerrorevent": [ @@ -1977,9 +1969,7 @@ "version_added": "33" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": false }, @@ -1988,12 +1978,8 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": false - }, - "opera_android": { - "version_added": false - }, + "opera": "mirror", + "opera_android": "mirror", "safari": { "version_added": "14.1" }, @@ -2049,7 +2035,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionEvent.resultIndex" + "title": "SpeechRecognitionEvent: resultIndex property" } ], "dom-speechrecognitionevent-results": [ @@ -2093,7 +2079,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionEvent.results" + "title": "SpeechRecognitionEvent: results property" } ], "speechreco-event": [ @@ -2185,7 +2171,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionResult.isFinal" + "title": "SpeechRecognitionResult: isFinal property" } ], "dom-speechrecognitionresult-item": [ @@ -2229,7 +2215,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionResult.item()" + "title": "SpeechRecognitionResult: item() method" } ], "dom-speechrecognitionresult-length": [ @@ -2273,7 +2259,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionResult.length" + "title": "SpeechRecognitionResult: length property" } ], "speechreco-result": [ @@ -2361,7 +2347,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionResultList.item()" + "title": "SpeechRecognitionResultList: item() method" } ], "dom-speechrecognitionresultlist-length": [ @@ -2405,7 +2391,7 @@ "version_added": "79" } }, - "title": "SpeechRecognitionResultList.length" + "title": "SpeechRecognitionResultList: length property" } ], "speechreco-resultlist": [ @@ -2418,7 +2404,7 @@ "name": "SpeechRecognitionResultList", "slug": "API/SpeechRecognitionResultList", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList", - "summary": "The SpeechRecognitionResultList interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in continuous mode.", + "summary": "The SpeechRecognitionResultList interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in non-continuous mode.", "support": { "chrome": { "version_added": "33" @@ -2502,7 +2488,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.cancel()" + "title": "SpeechSynthesis: cancel() method" } ], "dom-speechsynthesis-getvoices": [ @@ -2555,7 +2541,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.getVoices()" + "title": "SpeechSynthesis: getVoices() method" } ], "dom-speechsynthesis-pause": [ @@ -2613,7 +2599,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.pause()" + "title": "SpeechSynthesis: pause() method" } ], "dom-speechsynthesis-paused": [ @@ -2666,7 +2652,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.paused" + "title": "SpeechSynthesis: paused property" } ], "dom-speechsynthesis-pending": [ @@ -2719,7 +2705,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.pending" + "title": "SpeechSynthesis: pending property" } ], "dom-speechsynthesis-resume": [ @@ -2772,7 +2758,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.resume()" + "title": "SpeechSynthesis: resume() method" } ], "dom-speechsynthesis-speak": [ @@ -2825,7 +2811,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.speak()" + "title": "SpeechSynthesis: speak() method" } ], "dom-speechsynthesis-speaking": [ @@ -2878,7 +2864,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesis.speaking" + "title": "SpeechSynthesis: speaking property" } ], "eventdef-speechsynthesis-voiceschanged": [ @@ -3092,7 +3078,54 @@ "feature": "speech-synthesis", "title": "Speech Synthesis API" }, - "title": "Window.speechSynthesis" + "title": "Window: speechSynthesis property" + } + ], + "dom-speechsynthesiserrorevent-speechsynthesiserrorevent": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SpeechSynthesisErrorEvent.json", + "name": "SpeechSynthesisErrorEvent", + "slug": "API/SpeechSynthesisErrorEvent/SpeechSynthesisErrorEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisErrorEvent/SpeechSynthesisErrorEvent", + "summary": "The SpeechSynthesisErrorEvent() constructor creates a new SpeechSynthesisErrorEvent object.", + "support": { + "chrome": { + "version_added": "71" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "49" + }, + "firefox_android": { + "version_added": "62" + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SpeechSynthesisErrorEvent: SpeechSynthesisErrorEvent() constructor" } ], "dom-speechsynthesiserrorevent-error": [ @@ -3145,7 +3178,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisErrorEvent.error" + "title": "SpeechSynthesisErrorEvent: error property" } ], "speechsynthesiserrorevent": [ @@ -3202,6 +3235,55 @@ "title": "SpeechSynthesisErrorEvent" } ], + "dom-speechsynthesisevent-speechsynthesisevent": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SpeechSynthesisEvent.json", + "name": "SpeechSynthesisEvent", + "slug": "API/SpeechSynthesisEvent/SpeechSynthesisEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisEvent/SpeechSynthesisEvent", + "summary": "The SpeechSynthesisEvent() constructor creates a new SpeechSynthesisEvent object.", + "support": { + "chrome": { + "version_added": "71" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "14" + }, + "firefox": { + "version_added": "49" + }, + "firefox_android": { + "version_added": "62" + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SpeechSynthesisEvent: SpeechSynthesisEvent() constructor" + } + ], "dom-speechsynthesisevent-charindex": [ { "engines": [ @@ -3252,7 +3334,56 @@ "version_added": "79" } }, - "title": "SpeechSynthesisEvent.charIndex" + "title": "SpeechSynthesisEvent: charIndex property" + } + ], + "dom-speechsynthesisevent-charlength": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/SpeechSynthesisEvent.json", + "name": "charLength", + "slug": "API/SpeechSynthesisEvent/charLength", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisEvent/charLength", + "summary": "The read-only charLength property of the SpeechSynthesisEvent interface returns the number of characters left to be spoken after the character at the charIndex position.", + "support": { + "chrome": { + "version_added": "77" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "15" + }, + "firefox": { + "version_added": "53" + }, + "firefox_android": { + "version_added": "62" + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": "16" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "SpeechSynthesisEvent: charLength property" } ], "dom-speechsynthesisevent-elapsedtime": [ @@ -3305,7 +3436,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisEvent.elapsedTime" + "title": "SpeechSynthesisEvent: elapsedTime property" } ], "dom-speechsynthesisevent-name": [ @@ -3358,7 +3489,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisEvent.name" + "title": "SpeechSynthesisEvent: name property" } ], "dom-speechsynthesisevent-utterance": [ @@ -3411,7 +3542,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisEvent.utterance" + "title": "SpeechSynthesisEvent: utterance property" } ], "speechsynthesisevent": [ @@ -3518,13 +3649,12 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance()" + "title": "SpeechSynthesisUtterance: SpeechSynthesisUtterance() constructor" } ], "eventdef-speechsynthesisutterance-boundary": [ { "engines": [ - "blink", "gecko", "webkit" ], @@ -3538,13 +3668,11 @@ "summary": "The boundary event of the Web Speech API is fired when the spoken utterance reaches a word or sentence boundary.", "support": { "chrome": { - "version_added": "33" - }, - "chrome_android": { "version_added": "33", "partial_implementation": true, "notes": "The <code>boundary</code> event does not fire as expected. See <a href='https://crbug.com/1122143'>bug 1122143</a>." }, + "chrome_android": "mirror", "edge": { "version_added": "14" }, @@ -3575,7 +3703,9 @@ "version_added": false }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "partial_implementation": true, + "notes": "The <code>boundary</code> event does not fire as expected. See <a href='https://crbug.com/1122143'>bug 1122143</a>." } }, "title": "SpeechSynthesisUtterance: boundary event" @@ -3584,7 +3714,6 @@ "dom-speechsynthesisutterance-onboundary": [ { "engines": [ - "blink", "gecko", "webkit" ], @@ -3598,13 +3727,11 @@ "summary": "The boundary event of the Web Speech API is fired when the spoken utterance reaches a word or sentence boundary.", "support": { "chrome": { - "version_added": "33" - }, - "chrome_android": { "version_added": "33", "partial_implementation": true, "notes": "The <code>boundary</code> event does not fire as expected. See <a href='https://crbug.com/1122143'>bug 1122143</a>." }, + "chrome_android": "mirror", "edge": { "version_added": "14" }, @@ -3635,7 +3762,9 @@ "version_added": false }, "edge_blink": { - "version_added": "79" + "version_added": "79", + "partial_implementation": true, + "notes": "The <code>boundary</code> event does not fire as expected. See <a href='https://crbug.com/1122143'>bug 1122143</a>." } }, "title": "SpeechSynthesisUtterance: boundary event" @@ -3903,7 +4032,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance.lang" + "title": "SpeechSynthesisUtterance: lang property" } ], "eventdef-speechsynthesisutterance-mark": [ @@ -4168,7 +4297,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance.pitch" + "title": "SpeechSynthesisUtterance: pitch property" } ], "dom-speechsynthesisutterance-rate": [ @@ -4221,7 +4350,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance.rate" + "title": "SpeechSynthesisUtterance: rate property" } ], "eventdef-speechsynthesisutterance-resume": [ @@ -4486,7 +4615,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance.text" + "title": "SpeechSynthesisUtterance: text property" } ], "dom-speechsynthesisutterance-voice": [ @@ -4539,7 +4668,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance.voice" + "title": "SpeechSynthesisUtterance: voice property" } ], "dom-speechsynthesisutterance-volume": [ @@ -4592,7 +4721,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisUtterance.volume" + "title": "SpeechSynthesisUtterance: volume property" } ], "speechsynthesisutterance": [ @@ -4699,7 +4828,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisVoice.default" + "title": "SpeechSynthesisVoice: default property" } ], "dom-speechsynthesisvoice-lang": [ @@ -4752,7 +4881,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisVoice.lang" + "title": "SpeechSynthesisVoice: lang property" } ], "dom-speechsynthesisvoice-localservice": [ @@ -4805,7 +4934,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisVoice.localService" + "title": "SpeechSynthesisVoice: localService property" } ], "dom-speechsynthesisvoice-name": [ @@ -4858,7 +4987,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisVoice.name" + "title": "SpeechSynthesisVoice: name property" } ], "dom-speechsynthesisvoice-voiceuri": [ @@ -4911,7 +5040,7 @@ "version_added": "79" } }, - "title": "SpeechSynthesisVoice.voiceURI" + "title": "SpeechSynthesisVoice: voiceURI property" } ], "speechsynthesisvoice": [ @@ -4935,7 +5064,8 @@ "version_added": "14" }, "firefox": { - "version_added": "49" + "version_added": "49", + "notes": "In Firefox, speech synthesis voices do not start loading until after the first call to <code>window.speechSynthesis.getVoices()</code>. A way to mitigate this issue is to call the method at the beginning of page load, then wait a few seconds before calling the method again. Voices will remain loaded until all tabs that have called this method have been closed." }, "firefox_android": { "version_added": "62" diff --git a/bikeshed/spec-data/readonly/mdn/storage-access.json b/bikeshed/spec-data/readonly/mdn/storage-access.json index f0f4733413..4c40dbb350 100644 --- a/bikeshed/spec-data/readonly/mdn/storage-access.json +++ b/bikeshed/spec-data/readonly/mdn/storage-access.json @@ -13,19 +13,25 @@ "name": "hasStorageAccess", "slug": "API/Document/hasStorageAccess", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/hasStorageAccess", - "summary": "The hasStorageAccess() method of the Document interface returns a Promise that resolves with a boolean value indicating whether the document has access to its first-party storage.", + "summary": "The hasStorageAccess() method of the Document interface returns a Promise that resolves with a boolean value indicating whether the document has access to unpartitioned cookies.", "support": { - "chrome": { - "version_added": "78", - "flags": [ - { - "type": "preference", - "name": "#storage-access-api", - "value_to_set": "Enabled" - } - ], - "notes": "See <a href='https://crbug.com/989663'>bug 989663</a>." - }, + "chrome": [ + { + "version_added": "113", + "partial_implementation": true, + "notes": "Only available to Google Chrome's <a href='https://developer.chrome.com/docs/privacy-sandbox/first-party-sets/'>first-party sets</a>." + }, + { + "version_added": "78", + "flags": [ + { + "type": "preference", + "name": "#storage-access-api", + "value_to_set": "Enabled" + } + ] + } + ], "chrome_android": "mirror", "edge": { "version_added": false @@ -38,16 +44,7 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "65", - "flags": [ - { - "type": "preference", - "name": "#storage-access-api", - "value_to_set": "Enabled" - } - ] - }, + "opera": "mirror", "opera_android": "mirror", "safari": { "version_added": "11.1" @@ -55,19 +52,25 @@ "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", - "edge_blink": { - "version_added": "79", - "flags": [ - { - "type": "preference", - "name": "#storage-access-api", - "value_to_set": "Enabled" - } - ], - "notes": "See <a href='https://crbug.com/989663'>bug 989663</a>." - } + "edge_blink": [ + { + "version_added": "113", + "partial_implementation": true, + "notes": "Only available to Google Chrome's <a href='https://developer.chrome.com/docs/privacy-sandbox/first-party-sets/'>first-party sets</a>." + }, + { + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#storage-access-api", + "value_to_set": "Enabled" + } + ] + } + ] }, - "title": "Document.hasStorageAccess()" + "title": "Document: hasStorageAccess() method" } ], "dom-document-requeststorageaccess": [ @@ -84,19 +87,29 @@ "name": "requestStorageAccess", "slug": "API/Document/requestStorageAccess", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/requestStorageAccess", - "summary": "The requestStorageAccess() method of the Document interface returns a Promise that resolves if the access to first-party storage was granted, and rejects if access was denied.", + "summary": "The requestStorageAccess() method of the Document interface allows a document loaded in a third-party context (i.e. embedded in an <iframe>) to request access to unpartitioned cookies.", "support": { - "chrome": { - "version_added": "78", - "flags": [ - { - "type": "preference", - "name": "#storage-access-api", - "value_to_set": "Enabled" - } - ], - "notes": "See <a href='https://crbug.com/989663'>bug 989663</a>." - }, + "chrome": [ + { + "version_added": "113", + "partial_implementation": true, + "notes": [ + "Only available to Google Chrome's <a href='https://developer.chrome.com/docs/privacy-sandbox/first-party-sets/'>first-party sets</a>.", + "Client-side storage access granted per-frame, as per spec updates <a href='https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works'>see explanation</a>." + ] + }, + { + "version_added": "78", + "flags": [ + { + "type": "preference", + "name": "#storage-access-api", + "value_to_set": "Enabled" + } + ], + "notes": "Client-side storage access granted per-page (<a href='https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works'>see explanation</a>)" + } + ], "chrome_android": "mirror", "edge": { "version_added": false @@ -109,36 +122,77 @@ "version_added": false }, "oculus": "mirror", - "opera": { - "version_added": "65", - "flags": [ - { - "type": "preference", - "name": "#storage-access-api", - "value_to_set": "Enabled" - } - ] + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11.1", + "notes": "Client-side storage access granted per-page (<a href='https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works'>see explanation</a>)" }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "113", + "partial_implementation": true, + "notes": [ + "Only available to Google Chrome's <a href='https://developer.chrome.com/docs/privacy-sandbox/first-party-sets/'>first-party sets</a>.", + "Client-side storage access granted per-frame, as per spec updates <a href='https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works'>see explanation</a>." + ] + }, + { + "version_added": "79", + "flags": [ + { + "type": "preference", + "name": "#storage-access-api", + "value_to_set": "Enabled" + } + ], + "notes": "Client-side storage access granted per-page (<a href='https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works'>see explanation</a>)" + } + ] + }, + "title": "Document: requestStorageAccess() method" + } + ], + "permissions-policy-integration": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "storage-access", + "slug": "HTTP/Headers/Permissions-Policy/storage-access", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/storage-access", + "summary": "The HTTP Permissions-Policy header storage-access directive controls whether a document loaded in a third-party context (i.e. embedded in an <iframe>) is allowed to use the Storage Access API to request access to unpartitioned cookies.", + "support": { + "chrome": { + "version_added": "113" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11.1" + "version_added": false }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79", - "flags": [ - { - "type": "preference", - "name": "#storage-access-api", - "value_to_set": "Enabled" - } - ], - "notes": "See <a href='https://crbug.com/989663'>bug 989663</a>." + "version_added": "113" } }, - "title": "Document.requestStorageAccess()" + "title": "Permissions-Policy: storage-access" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/storage.json b/bikeshed/spec-data/readonly/mdn/storage.json index f8c8d24a77..2be2b8e019 100644 --- a/bikeshed/spec-data/readonly/mdn/storage.json +++ b/bikeshed/spec-data/readonly/mdn/storage.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "Navigator.storage" + "title": "Navigator: storage property" }, { "engines": [ @@ -76,14 +76,15 @@ "version_added": "79" } }, - "title": "WorkerNavigator.storage" + "title": "WorkerNavigator: storage property" } ], "ref-for-dom-storagemanager-estimate": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/StorageManager.json", "name": "estimate", @@ -107,7 +108,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -116,7 +117,7 @@ "version_added": "79" } }, - "title": "StorageManager.estimate()" + "title": "StorageManager: estimate() method" } ], "ref-for-dom-storagemanager-persist": [ @@ -130,7 +131,7 @@ "name": "persist", "slug": "API/StorageManager/persist", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persist", - "summary": "The persist() method of the StorageManager interface requests permission to use persistent storage, and returns a Promise that resolves to true if permission is granted and box mode is persistent, and false otherwise.", + "summary": "The persist() method of the StorageManager interface requests permission to use persistent storage, and returns a Promise that resolves to true if permission is granted and bucket mode is persistent, and false otherwise.", "support": { "chrome": { "version_added": "55" @@ -157,7 +158,7 @@ "version_added": "79" } }, - "title": "StorageManager.persist()" + "title": "StorageManager: persist() method" } ], "dom-storagemanager-persisted": [ @@ -171,7 +172,7 @@ "name": "persisted", "slug": "API/StorageManager/persisted", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persisted", - "summary": "The persisted() method of the StorageManager interface returns a Promise that resolves to true if box mode is persistent for your site's storage.", + "summary": "The persisted() method of the StorageManager interface returns a Promise that resolves to true if your site's storage bucket is persistent.", "support": { "chrome": { "version_added": "55" @@ -198,7 +199,7 @@ "version_added": "79" } }, - "title": "StorageManager.persisted()" + "title": "StorageManager: persisted() method" } ], "storagemanager": [ diff --git a/bikeshed/spec-data/readonly/mdn/streams.json b/bikeshed/spec-data/readonly/mdn/streams.json index 5d396a9902..593337b2a9 100644 --- a/bikeshed/spec-data/readonly/mdn/streams.json +++ b/bikeshed/spec-data/readonly/mdn/streams.json @@ -13,7 +13,56 @@ "summary": "The ByteLengthQueuingStrategy() constructor creates and returns a ByteLengthQueuingStrategy object instance.", "support": { "chrome": { - "version_added": "59" + "version_added": "52" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "16" + }, + "firefox": { + "version_added": "65" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "16.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "ByteLengthQueuingStrategy: ByteLengthQueuingStrategy() constructor" + } + ], + "ref-for-blqs-high-water-mark①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/ByteLengthQueuingStrategy.json", + "name": "highWaterMark", + "slug": "API/ByteLengthQueuingStrategy/highWaterMark", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark", + "summary": "The read-only ByteLengthQueuingStrategy.highWaterMark property returns the total number of bytes that can be contained in the internal queue before backpressure is applied.", + "support": { + "chrome": { + "version_added": "52" }, "chrome_android": "mirror", "deno": { @@ -45,7 +94,7 @@ "version_added": "79" } }, - "title": "ByteLengthQueuingStrategy()" + "title": "ByteLengthQueuingStrategy: highWaterMark property" } ], "blqs-size": [ @@ -94,7 +143,7 @@ "version_added": "79" } }, - "title": "ByteLengthQueuingStrategy.size()" + "title": "ByteLengthQueuingStrategy: size() method" } ], "blqs-class": [ @@ -159,7 +208,9 @@ "dom-generictransformstream-readable": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CompressionStream.json", "name": "readable", @@ -176,7 +227,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -189,7 +240,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -198,11 +249,13 @@ "version_added": "80" } }, - "title": "CompressionStream.readable" + "title": "CompressionStream: readable property" }, { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/DecompressionStream.json", "name": "readable", @@ -219,7 +272,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -232,7 +285,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -241,7 +294,7 @@ "version_added": "80" } }, - "title": "DecompressionStream.readable" + "title": "DecompressionStream: readable property" }, { "engines": [ @@ -286,7 +339,7 @@ "version_added": "79" } }, - "title": "TextDecoderStream.readable" + "title": "TextDecoderStream: readable property" }, { "engines": [ @@ -331,13 +384,15 @@ "version_added": "79" } }, - "title": "TextEncoderStream.readable" + "title": "TextEncoderStream: readable property" } ], "dom-generictransformstream-writable": [ { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/CompressionStream.json", "name": "writable", @@ -354,7 +409,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -367,7 +422,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -376,11 +431,13 @@ "version_added": "80" } }, - "title": "CompressionStream.writable" + "title": "CompressionStream: writable property" }, { "engines": [ - "blink" + "blink", + "gecko", + "webkit" ], "filename": "api/DecompressionStream.json", "name": "writable", @@ -397,7 +454,7 @@ }, "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -410,7 +467,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -419,7 +476,7 @@ "version_added": "80" } }, - "title": "DecompressionStream.writable" + "title": "DecompressionStream: writable property" }, { "engines": [ @@ -464,7 +521,7 @@ "version_added": "79" } }, - "title": "TextDecoderStream.writable" + "title": "TextDecoderStream: writable property" }, { "engines": [ @@ -509,7 +566,7 @@ "version_added": "79" } }, - "title": "TextEncoderStream.writable" + "title": "TextEncoderStream: writable property" } ], "ref-for-cqs-constructor①": [ @@ -555,7 +612,53 @@ "version_added": "79" } }, - "title": "CountQueuingStrategy()" + "title": "CountQueuingStrategy: CountQueuingStrategy() constructor" + } + ], + "ref-for-cqs-high-water-mark①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/CountQueuingStrategy.json", + "name": "highWaterMark", + "slug": "API/CountQueuingStrategy/highWaterMark", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CountQueuingStrategy/highWaterMark", + "summary": "The read-only CountQueuingStrategy.highWaterMark property returns the total number of chunks that can be contained in the internal queue before backpressure is applied.", + "support": { + "chrome": { + "version_added": "52" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "16" + }, + "firefox": { + "version_added": "65" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "16.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "CountQueuingStrategy: highWaterMark property" } ], "ref-for-cqs-size②": [ @@ -601,7 +704,7 @@ "version_added": "79" } }, - "title": "CountQueuingStrategy.size()" + "title": "CountQueuingStrategy: size() method" } ], "cqs-class": [ @@ -703,7 +806,7 @@ "version_added": "89" } }, - "title": "ReadableByteStreamController.byobRequest" + "title": "ReadableByteStreamController: byobRequest property" } ], "ref-for-rbs-controller-close①": [ @@ -749,7 +852,7 @@ "version_added": "89" } }, - "title": "ReadableByteStreamController.close()" + "title": "ReadableByteStreamController: close() method" } ], "ref-for-rbs-controller-desired-size②": [ @@ -795,7 +898,7 @@ "version_added": "89" } }, - "title": "ReadableByteStreamController.desiredSize" + "title": "ReadableByteStreamController: desiredSize property" } ], "ref-for-rbs-controller-enqueue①": [ @@ -841,7 +944,7 @@ "version_added": "89" } }, - "title": "ReadableByteStreamController.enqueue()" + "title": "ReadableByteStreamController: enqueue() method" } ], "ref-for-rbs-controller-error①": [ @@ -887,7 +990,7 @@ "version_added": "89" } }, - "title": "ReadableByteStreamController.error()" + "title": "ReadableByteStreamController: error() method" } ], "rbs-controller-class": [ @@ -968,7 +1071,7 @@ "summary": "The ReadableStream() constructor creates and returns a readable stream object from the given handlers.", "support": { "chrome": { - "version_added": "43" + "version_added": "52" }, "chrome_android": "mirror", "deno": { @@ -998,7 +1101,7 @@ "version_added": "79" } }, - "title": "ReadableStream()" + "title": "ReadableStream: ReadableStream() constructor" } ], "ref-for-rs-cancel③": [ @@ -1047,7 +1150,7 @@ "version_added": "79" } }, - "title": "ReadableStream.cancel()" + "title": "ReadableStream: cancel() method" } ], "ref-for-rs-get-reader⑤": [ @@ -1096,7 +1199,7 @@ "version_added": "79" } }, - "title": "ReadableStream.getReader()" + "title": "ReadableStream: getReader() method" } ], "ref-for-rs-locked②": [ @@ -1113,7 +1216,7 @@ "summary": "The locked read-only property of the ReadableStream interface returns whether or not the readable stream is locked to a reader.", "support": { "chrome": { - "version_added": "43" + "version_added": "52" }, "chrome_android": "mirror", "deno": { @@ -1145,7 +1248,7 @@ "version_added": "79" } }, - "title": "ReadableStream.locked" + "title": "ReadableStream: locked property" } ], "ref-for-rs-pipe-through②": [ @@ -1192,7 +1295,7 @@ "version_added": "79" } }, - "title": "ReadableStream.pipeThrough()" + "title": "ReadableStream: pipeThrough() method" } ], "ref-for-rs-pipe-to④": [ @@ -1239,7 +1342,7 @@ "version_added": "79" } }, - "title": "ReadableStream.pipeTo()" + "title": "ReadableStream: pipeTo() method" } ], "ref-for-rs-tee②": [ @@ -1256,7 +1359,7 @@ "summary": "The tee() method of the ReadableStream interface tees the current readable stream, returning a two-element array containing the two resulting branches as new ReadableStream instances.", "support": { "chrome": { - "version_added": "43" + "version_added": "52" }, "chrome_android": "mirror", "deno": { @@ -1286,7 +1389,7 @@ "version_added": "79" } }, - "title": "ReadableStream.tee()" + "title": "ReadableStream: tee() method" } ], "rs-transfer": [ @@ -1335,6 +1438,51 @@ "title": "Transferable objects" } ], + "rs-asynciterator": [ + { + "engines": [ + "gecko" + ], + "filename": "api/ReadableStream.json", + "name": "@@asyncIterator", + "slug": "JavaScript/Reference/Global_Objects/Symbol/asyncIterator", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/asyncIterator", + "summary": "The Symbol.asyncIterator static data property represents the well-known symbol @@asyncIterator. The async iterable protocol looks up this symbol for the method that returns the async iterator for an object. In order for an object to be async iterable, it must have an @@asyncIterator key.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "110" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "16.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "Symbol.asyncIterator" + } + ], "rs-class": [ { "engines": [ @@ -1437,7 +1585,7 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBReader()" + "title": "ReadableStreamBYOBReader: ReadableStreamBYOBReader() constructor" } ], "ref-for-generic-reader-cancel②": [ @@ -1483,12 +1631,13 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBReader.cancel()" + "title": "ReadableStreamBYOBReader: cancel() method" }, { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultReader.json", "name": "cancel", @@ -1518,7 +1667,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1527,7 +1676,7 @@ "version_added": "79" } }, - "title": "ReadableStreamDefaultReader.cancel()" + "title": "ReadableStreamDefaultReader: cancel() method" } ], "ref-for-generic-reader-closed②": [ @@ -1573,12 +1722,13 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBReader.closed" + "title": "ReadableStreamBYOBReader: closed property" }, { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultReader.json", "name": "closed", @@ -1608,7 +1758,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1617,7 +1767,7 @@ "version_added": "79" } }, - "title": "ReadableStreamDefaultReader.closed" + "title": "ReadableStreamDefaultReader: closed property" } ], "ref-for-byob-reader-read③": [ @@ -1663,7 +1813,7 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBReader.read()" + "title": "ReadableStreamBYOBReader: read() method" } ], "ref-for-byob-reader-release-lock②": [ @@ -1709,7 +1859,7 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBReader.releaseLock()" + "title": "ReadableStreamBYOBReader: releaseLock() method" } ], "byob-reader-class": [ @@ -1811,7 +1961,7 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBRequest.respond()" + "title": "ReadableStreamBYOBRequest: respond() method" } ], "ref-for-rs-byob-request-respond-with-new-view①": [ @@ -1857,7 +2007,7 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBRequest.respondWithNewView()" + "title": "ReadableStreamBYOBRequest: respondWithNewView() method" } ], "ref-for-rs-byob-request-view①": [ @@ -1903,7 +2053,7 @@ "version_added": "89" } }, - "title": "ReadableStreamBYOBRequest.view" + "title": "ReadableStreamBYOBRequest: view property" } ], "rs-byob-request-class": [ @@ -1966,7 +2116,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultController.json", "name": "close", @@ -1975,7 +2126,7 @@ "summary": "The close() method of the ReadableStreamDefaultController interface closes the associated stream.", "support": { "chrome": { - "version_added": "89" + "version_added": "80" }, "chrome_android": "mirror", "deno": { @@ -1996,23 +2147,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "89" + "version_added": "80" } }, - "title": "ReadableStreamDefaultController.close()" + "title": "ReadableStreamDefaultController: close() method" } ], "ref-for-rs-default-controller-desired-size②": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultController.json", "name": "desiredSize", @@ -2021,7 +2173,7 @@ "summary": "The desiredSize read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream's internal queue.", "support": { "chrome": { - "version_added": "89" + "version_added": "80" }, "chrome_android": "mirror", "deno": { @@ -2042,23 +2194,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "89" + "version_added": "80" } }, - "title": "ReadableStreamDefaultController.desiredSize" + "title": "ReadableStreamDefaultController: desiredSize property" } ], "ref-for-rs-default-controller-enqueue①": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultController.json", "name": "enqueue", @@ -2067,7 +2220,7 @@ "summary": "The enqueue() method of the ReadableStreamDefaultController interface enqueues a given chunk in the associated stream.", "support": { "chrome": { - "version_added": "89" + "version_added": "80" }, "chrome_android": "mirror", "deno": { @@ -2088,23 +2241,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "89" + "version_added": "80" } }, - "title": "ReadableStreamDefaultController.enqueue()" + "title": "ReadableStreamDefaultController: enqueue() method" } ], "rs-default-controller-error": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultController.json", "name": "error", @@ -2113,7 +2267,7 @@ "summary": "The error() method of the ReadableStreamDefaultController interface causes any future interactions with the associated stream to error.", "support": { "chrome": { - "version_added": "89" + "version_added": "80" }, "chrome_android": "mirror", "deno": { @@ -2134,23 +2288,24 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "89" + "version_added": "80" } }, - "title": "ReadableStreamDefaultController.error()" + "title": "ReadableStreamDefaultController: error() method" } ], "rs-default-controller-class": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultController.json", "name": "ReadableStreamDefaultController", @@ -2159,7 +2314,7 @@ "summary": "The ReadableStreamDefaultController interface of the Streams API represents a controller allowing control of a ReadableStream's state and internal queue. Default controllers are for streams that are not byte streams.", "support": { "chrome": { - "version_added": "89" + "version_added": "80" }, "chrome_android": "mirror", "deno": [ @@ -2198,13 +2353,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "89" + "version_added": "80" } }, "title": "ReadableStreamDefaultController" @@ -2231,7 +2386,7 @@ }, "edge": "mirror", "firefox": { - "version_added": "65" + "version_added": "100" }, "firefox_android": "mirror", "ie": { @@ -2253,14 +2408,15 @@ "version_added": "79" } }, - "title": "ReadableStreamDefaultReader()" + "title": "ReadableStreamDefaultReader: ReadableStreamDefaultReader() constructor" } ], "ref-for-default-reader-read①": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultReader.json", "name": "read", @@ -2290,7 +2446,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2299,14 +2455,15 @@ "version_added": "79" } }, - "title": "ReadableStreamDefaultReader.read()" + "title": "ReadableStreamDefaultReader: read() method" } ], "ref-for-default-reader-release-lock②": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultReader.json", "name": "releaseLock", @@ -2336,7 +2493,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2345,14 +2502,15 @@ "version_added": "79" } }, - "title": "ReadableStreamDefaultReader.releaseLock()" + "title": "ReadableStreamDefaultReader: releaseLock() method" } ], "default-reader-class": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/ReadableStreamDefaultReader.json", "name": "ReadableStreamDefaultReader", @@ -2400,7 +2558,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2456,7 +2614,7 @@ "version_added": "79" } }, - "title": "TransformStream()" + "title": "TransformStream: TransformStream() constructor" } ], "ref-for-ts-readable②": [ @@ -2503,7 +2661,7 @@ "version_added": "79" } }, - "title": "TransformStream.readable" + "title": "TransformStream: readable property" } ], "ts-transfer": [ @@ -2596,7 +2754,7 @@ "version_added": "79" } }, - "title": "TransformStream.writable" + "title": "TransformStream: writable property" } ], "ts-class": [ @@ -2700,7 +2858,7 @@ "version_added": "79" } }, - "title": "TransformStreamDefaultController.desiredSize" + "title": "TransformStreamDefaultController: desiredSize property" } ], "ts-default-controller-enqueue": [ @@ -2747,7 +2905,7 @@ "version_added": "79" } }, - "title": "TransformStreamDefaultController.enqueue()" + "title": "TransformStreamDefaultController: enqueue() method" } ], "ts-default-controller-error": [ @@ -2794,7 +2952,7 @@ "version_added": "79" } }, - "title": "TransformStreamDefaultController.error()" + "title": "TransformStreamDefaultController: error() method" } ], "ts-default-controller-terminate": [ @@ -2841,7 +2999,7 @@ "version_added": "79" } }, - "title": "TransformStreamDefaultController.terminate()" + "title": "TransformStreamDefaultController: terminate() method" } ], "ts-default-controller-class": [ @@ -2949,7 +3107,7 @@ "version_added": "79" } }, - "title": "WritableStream()" + "title": "WritableStream: WritableStream() constructor" } ], "ref-for-ws-abort③": [ @@ -3002,7 +3160,54 @@ "version_added": "79" } }, - "title": "WritableStream.abort()" + "title": "WritableStream: abort() method" + } + ], + "ref-for-ws-close①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/WritableStream.json", + "name": "close", + "slug": "API/WritableStream/close", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WritableStream/close", + "summary": "The close() method of the WritableStream interface closes the associated stream. All chunks written before this method is called are sent before the returned promise is fulfilled.", + "support": { + "chrome": { + "version_added": "81" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": "mirror", + "firefox": { + "version_added": "100" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "16.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "14.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "81" + } + }, + "title": "WritableStream: close() method" } ], "ref-for-ws-get-writer①": [ @@ -3055,7 +3260,7 @@ "version_added": "79" } }, - "title": "WritableStream.getWriter()" + "title": "WritableStream: getWriter() method" } ], "ref-for-ws-locked②": [ @@ -3108,7 +3313,7 @@ "version_added": "79" } }, - "title": "WritableStream.locked" + "title": "WritableStream: locked property" } ], "ws-transfer": [ @@ -3266,7 +3471,54 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultController.error()" + "title": "WritableStreamDefaultController: error() method" + } + ], + "ref-for-ws-default-controller-signal①": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/WritableStreamDefaultController.json", + "name": "signal", + "slug": "API/WritableStreamDefaultController/signal", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WritableStreamDefaultController/signal", + "summary": "The read-only signal property of the WritableStreamDefaultController interface returns the AbortSignal associated with the controller.", + "support": { + "chrome": { + "version_added": "98" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.16" + }, + "edge": "mirror", + "firefox": { + "version_added": "100" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "16.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "16.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "98" + } + }, + "title": "WritableStreamDefaultController: signal property" } ], "ws-default-controller-class": [ @@ -3332,7 +3584,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/WritableStreamDefaultWriter.json", "name": "WritableStreamDefaultWriter", @@ -3362,7 +3615,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "14.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3371,7 +3624,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter()" + "title": "WritableStreamDefaultWriter: WritableStreamDefaultWriter() constructor" } ], "ref-for-default-writer-abort④": [ @@ -3420,7 +3673,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.abort()" + "title": "WritableStreamDefaultWriter: abort() method" } ], "ref-for-default-writer-close⑦": [ @@ -3469,7 +3722,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.close()" + "title": "WritableStreamDefaultWriter: close() method" } ], "ref-for-default-writer-closed②": [ @@ -3518,7 +3771,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.closed" + "title": "WritableStreamDefaultWriter: closed property" } ], "ref-for-default-writer-desired-size⑥": [ @@ -3567,7 +3820,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.desiredSize" + "title": "WritableStreamDefaultWriter: desiredSize property" } ], "ref-for-default-writer-ready⑨": [ @@ -3616,7 +3869,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.ready" + "title": "WritableStreamDefaultWriter: ready property" } ], "ref-for-default-writer-release-lock②": [ @@ -3665,7 +3918,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.releaseLock()" + "title": "WritableStreamDefaultWriter: releaseLock() method" } ], "ref-for-default-writer-write①②": [ @@ -3714,7 +3967,7 @@ "version_added": "79" } }, - "title": "WritableStreamDefaultWriter.write()" + "title": "WritableStreamDefaultWriter: write() method" } ], "default-writer-class": [ diff --git a/bikeshed/spec-data/readonly/mdn/svg-animations.json b/bikeshed/spec-data/readonly/mdn/svg-animations.json index 334fed5d04..33b8a437f3 100644 --- a/bikeshed/spec-data/readonly/mdn/svg-animations.json +++ b/bikeshed/spec-data/readonly/mdn/svg-animations.json @@ -13,7 +13,7 @@ "summary": "The SVGAnimateElement interface corresponds to the <animate> element.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", @@ -107,7 +107,7 @@ "summary": "The SVGAnimateTransformElement interface corresponds to the <animateTransform> element.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", @@ -156,7 +156,7 @@ "summary": "The SVGAnimationElement.targetElement property refers to the element which is being animated. If no target element is being animated (for example, because the href attribute specifies an unknown element), the value returned is null.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", @@ -186,7 +186,7 @@ "version_added": "79" } }, - "title": "SVGAnimationElement.targetElement" + "title": "SVGAnimationElement: targetElement property" } ], "InterfaceSVGAnimationElement": [ @@ -203,7 +203,7 @@ "summary": "The SVGAnimationElement interface is the base interface for all of the animation element interfaces: SVGAnimateElement, SVGSetElement, SVGAnimateColorElement, SVGAnimateMotionElement and SVGAnimateTransformElement.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", @@ -297,7 +297,7 @@ "summary": "The SVGSetElement interface corresponds to the <set> element.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", @@ -463,7 +463,9 @@ ], "FillAttribute": [ { - "engines": [], + "engines": [ + "gecko" + ], "filename": "svg/attributes/presentation.json", "name": "fill", "slug": "SVG/Attribute/fill", @@ -476,7 +478,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -500,7 +502,11 @@ ], "DurAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/animate.json", "name": "dur", "slug": "SVG/Attribute/dur", @@ -508,12 +514,12 @@ "summary": "The dur attribute indicates the simple duration of an animation.", "support": { "chrome": { - "version_added": null + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -523,13 +529,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "dur" @@ -537,7 +543,11 @@ ], "FromAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/animate.json", "name": "from", "slug": "SVG/Attribute/from", @@ -545,12 +555,12 @@ "summary": "The from attribute indicates the initial value of the attribute that will be modified during the animation.", "support": { "chrome": { - "version_added": null + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -560,13 +570,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "from" @@ -574,7 +584,11 @@ ], "RepeatCountAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/animate.json", "name": "repeatCount", "slug": "SVG/Attribute/repeatCount", @@ -582,12 +596,12 @@ "summary": "The repeatCount attribute indicates the number of times an animation will take place.", "support": { "chrome": { - "version_added": null + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -597,13 +611,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "repeatCount" @@ -644,11 +658,9 @@ "version_added": "10.1" }, "safari": { - "version_added": "4" - }, - "safari_ios": { - "version_added": "4" + "version_added": "3.1" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "4" @@ -662,7 +674,11 @@ ], "KeyPointsAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/animateMotion.json", "name": "keyPoints", "slug": "SVG/Attribute/keyPoints", @@ -670,12 +686,12 @@ "summary": "The keyPoints attribute indicates the simple duration of an animation.", "support": { "chrome": { - "version_added": null + "version_added": "19" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -685,13 +701,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "keyPoints" @@ -711,32 +727,34 @@ "summary": "The SVG <animateMotion> element provides a way to define how an element moves along a motion path.", "support": { "chrome": { - "version_added": true + "version_added": "19" }, "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", - "opera": "mirror", + "opera": { + "version_added": "12.1" + }, "opera_android": { - "version_added": null + "version_added": "12.1" }, "safari": { - "version_added": true + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<animateMotion>" @@ -744,7 +762,11 @@ ], "ByAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/animateTransform.json", "name": "by", "slug": "SVG/Attribute/by", @@ -752,12 +774,12 @@ "summary": "The by attribute specifies a relative offset value for an attribute that will be modified during an animation.", "support": { "chrome": { - "version_added": null + "version_added": "2" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -767,13 +789,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "by" @@ -783,7 +805,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/animateTransform.json", "name": "animateTransform", @@ -792,83 +815,47 @@ "summary": "The animateTransform element animates a transformation attribute on its target element, thereby allowing animations to control translation, scaling, rotation, and/or skewing.", "support": { "chrome": { - "version_added": true + "version_added": "2" }, "chrome_android": "mirror", "edge": { "version_added": false }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { "version_added": false }, "oculus": "mirror", - "opera": "mirror", + "opera": { + "version_added": "12.1" + }, "opera_android": { - "version_added": null + "version_added": "12.1" }, "safari": { - "version_added": null + "version_added": "3" + }, + "safari_ios": { + "version_added": "1" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<animateTransform>" } ], - "DiscardElement": [ - { - "engines": [], - "filename": "svg/elements/discard.json", - "name": "discard", - "slug": "SVG/Element/discard", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/discard", - "summary": "The <discard> SVG element allows authors to specify the time at which particular elements are to be discarded, thereby reducing the resources required by an SVG user agent. This is particularly useful to help SVG viewers conserve memory while displaying long-running documents.", - "support": { - "chrome": { - "version_added": "34", - "version_removed": "81" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "2.0" - }, - "webview_android": "mirror", - "edge_blink": { - "version_added": false, - "version_removed": "81" - } - }, - "title": "<discard>" - } - ], "MPathElement": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/mpath.json", "name": "mpath", @@ -877,14 +864,14 @@ "summary": "The <mpath> sub-element for the <animateMotion> element provides the ability to reference an external <path> element as the definition of a motion path.", "support": { "chrome": { - "version_added": true + "version_added": "19" }, "chrome_android": "mirror", "edge": { "version_added": "18" }, "firefox": { - "version_added": true + "version_added": "4" }, "firefox_android": "mirror", "ie": { @@ -892,17 +879,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "6" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<mpath>" @@ -922,7 +907,7 @@ "summary": "The SVG <set> element provides a simple means of just setting the value of an attribute for a specified duration.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -940,7 +925,7 @@ "version_added": "12.1" }, "opera_android": { - "version_added": true + "version_added": "12.1" }, "safari": { "version_added": "3" @@ -971,14 +956,14 @@ "summary": "The rotate attribute specifies how the animated element rotates as it travels along a path specified in an <animateMotion> element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -988,13 +973,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "rotate" diff --git a/bikeshed/spec-data/readonly/mdn/svg.json b/bikeshed/spec-data/readonly/mdn/svg.json index 10450f6f0f..618fe9e0b0 100644 --- a/bikeshed/spec-data/readonly/mdn/svg.json +++ b/bikeshed/spec-data/readonly/mdn/svg.json @@ -47,7 +47,7 @@ "version_added": "79" } }, - "title": "SVGAElement.target" + "title": "SVGAElement: target property" } ], "linking.html#InterfaceSVGAElement": [ @@ -217,7 +217,7 @@ "summary": "The SVGAnimatedBoolean interface is used for attributes of type boolean which can be animated.", "support": { "chrome": { - "version_added": "5" + "version_added": "6" }, "chrome_android": "mirror", "edge": { @@ -263,7 +263,7 @@ "name": "SVGAnimatedEnumeration", "slug": "API/SVGAnimatedEnumeration", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimatedEnumeration", - "summary": "The SVGAnimatedEnumeration interface is used for attributes whose value must be a constant from a particular enumeration and which can be animated.", + "summary": "The SVGAnimatedEnumeration interface describes attribute values which are constants from a particular enumeration and which can be animated.", "support": { "chrome": { "version_added": "1" @@ -317,7 +317,7 @@ "summary": "The SVGAnimatedInteger interface is used for attributes of basic type <integer> which can be animated.", "support": { "chrome": { - "version_added": "5" + "version_added": "6" }, "chrome_android": "mirror", "edge": { @@ -519,7 +519,7 @@ "summary": "The SVGAnimatedNumber interface is used for attributes which take a list of numbers and which can be animated.", "support": { "chrome": { - "version_added": "5" + "version_added": "6" }, "chrome_android": "mirror", "edge": { @@ -702,7 +702,7 @@ "version_added": "79" } }, - "title": "SVGAnimatedString.animVal" + "title": "SVGAnimatedString: animVal property" } ], "types.html#__svg__SVGAnimatedString__baseVal": [ @@ -753,7 +753,7 @@ "version_added": "79" } }, - "title": "SVGAnimatedString.baseVal" + "title": "SVGAnimatedString: baseVal property" } ], "types.html#InterfaceSVGAnimatedString": [ @@ -1113,7 +1113,7 @@ "version_added": "79" } }, - "title": "SVGCircleElement.cx" + "title": "SVGCircleElement: cx property" } ], "shapes.html#__svg__SVGCircleElement__cy": [ @@ -1164,7 +1164,7 @@ "version_added": "79" } }, - "title": "SVGCircleElement.cy" + "title": "SVGCircleElement: cy property" } ], "shapes.html#__svg__SVGCircleElement__r": [ @@ -1215,7 +1215,7 @@ "version_added": "79" } }, - "title": "SVGCircleElement.r" + "title": "SVGCircleElement: r property" } ], "shapes.html#InterfaceSVGCircleElement": [ @@ -1793,7 +1793,7 @@ } ] }, - "title": "SVGGeometryElement.getPointAtLength()" + "title": "SVGGeometryElement: getPointAtLength() method" } ], "types.html#__svg__SVGGeometryElement__getTotalLength": [ @@ -1910,7 +1910,7 @@ } ] }, - "title": "SVGGeometryElement.getTotalLength()" + "title": "SVGGeometryElement: getTotalLength() method" } ], "types.html#__svg__SVGGeometryElement__isPointInFill": [ @@ -1953,7 +1953,7 @@ "version_added": "79" } }, - "title": "SVGGeometryElement.isPointInFill()" + "title": "SVGGeometryElement: isPointInFill() method" } ], "types.html#__svg__SVGGeometryElement__isPointInStroke": [ @@ -1996,7 +1996,7 @@ "version_added": "79" } }, - "title": "SVGGeometryElement.isPointInStroke()" + "title": "SVGGeometryElement: isPointInStroke() method" } ], "types.html#__svg__SVGGeometryElement__pathLength": [ @@ -2109,7 +2109,7 @@ } ] }, - "title": "SVGGeometryElement.pathLength" + "title": "SVGGeometryElement: pathLength property" } ], "types.html#InterfaceSVGGeometryElement": [ @@ -2332,7 +2332,7 @@ "version_added": "79" } }, - "title": "SVGGraphicsElement.getBBox()" + "title": "SVGGraphicsElement: getBBox() method" } ], "types.html#InterfaceSVGGraphicsElement": [ @@ -2452,45 +2452,6 @@ "title": "SVGGraphicsElement" } ], - "embedded.html#__svg__SVGImageElement__crossOrigin": [ - { - "engines": [], - "filename": "api/SVGImageElement.json", - "name": "crossOrigin", - "slug": "API/HTMLImageElement/crossOrigin", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/crossOrigin", - "summary": "The HTMLImageElement interface's crossOrigin attribute is a string which specifies the Cross-Origin Resource Sharing (CORS) setting to use when retrieving the image.", - "support": { - "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/842321'>bug 842321</a>." - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/842321'>bug 842321</a>." - } - }, - "title": "HTMLImageElement.crossOrigin" - } - ], "embedded.html#__svg__SVGImageElement__height": [ { "engines": [ @@ -2539,7 +2500,7 @@ "version_added": "79" } }, - "title": "SVGImageElement.height" + "title": "SVGImageElement: height property" } ], "coords.html#PreserveAspectRatioAttribute": [ @@ -2590,7 +2551,7 @@ "version_added": "79" } }, - "title": "SVGImageElement.preserveAspectRatio" + "title": "SVGImageElement: preserveAspectRatio property" } ], "embedded.html#__svg__SVGImageElement__width": [ @@ -2641,7 +2602,7 @@ "version_added": "79" } }, - "title": "SVGImageElement.width" + "title": "SVGImageElement: width property" } ], "embedded.html#__svg__SVGImageElement__x": [ @@ -2692,7 +2653,7 @@ "version_added": "79" } }, - "title": "SVGImageElement.x" + "title": "SVGImageElement: x property" } ], "embedded.html#__svg__SVGImageElement__y": [ @@ -2743,7 +2704,7 @@ "version_added": "79" } }, - "title": "SVGImageElement.y" + "title": "SVGImageElement: y property" } ], "embedded.html#InterfaceSVGImageElement": [ @@ -3049,7 +3010,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.markerHeight" + "title": "SVGMarkerElement: markerHeight property" } ], "painting.html#__svg__SVGMarkerElement__markerUnits": [ @@ -3100,7 +3061,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.markerUnits" + "title": "SVGMarkerElement: markerUnits property" } ], "painting.html#__svg__SVGMarkerElement__markerWidth": [ @@ -3151,7 +3112,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.markerWidth" + "title": "SVGMarkerElement: markerWidth property" } ], "painting.html#__svg__SVGMarkerElement__orientAngle": [ @@ -3202,7 +3163,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.orientAngle" + "title": "SVGMarkerElement: orientAngle property" } ], "painting.html#__svg__SVGMarkerElement__orientType": [ @@ -3253,7 +3214,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.orientType" + "title": "SVGMarkerElement: orientType property" } ], "types.html#__svg__SVGFitToViewBox__preserveAspectRatio": [ @@ -3304,7 +3265,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.preserveAspectRatio" + "title": "SVGMarkerElement: preserveAspectRatio property" } ], "painting.html#__svg__SVGMarkerElement__refX": [ @@ -3355,7 +3316,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.refX" + "title": "SVGMarkerElement: refX property" } ], "painting.html#__svg__SVGMarkerElement__refY": [ @@ -3406,7 +3367,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.refY" + "title": "SVGMarkerElement: refY property" } ], "painting.html#__svg__SVGMarkerElement__setOrientToAngle": [ @@ -3457,7 +3418,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.setOrientToAngle()" + "title": "SVGMarkerElement: setOrientToAngle() method" } ], "painting.html#__svg__SVGMarkerElement__setOrientToAuto": [ @@ -3508,7 +3469,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.setOrientToAuto()" + "title": "SVGMarkerElement: setOrientToAuto() method" } ], "types.html#__svg__SVGFitToViewBox__viewBox": [ @@ -3559,7 +3520,7 @@ "version_added": "79" } }, - "title": "SVGMarkerElement.viewBox" + "title": "SVGMarkerElement: viewBox property" } ], "painting.html#InterfaceSVGMarkerElement": [ @@ -3727,7 +3688,7 @@ "summary": "The SVGNumberList defines a list of SVGNumber objects.", "support": { "chrome": { - "version_added": "5" + "version_added": "6" }, "chrome_android": "mirror", "edge": { @@ -3912,7 +3873,7 @@ "version_added": "79" } }, - "title": "SVGPointList.appendItem()" + "title": "SVGPointList: appendItem() method" } ], "types.html#__svg__SVGNameList__clear": [ @@ -3963,7 +3924,7 @@ "version_added": "79" } }, - "title": "SVGPointList.clear()" + "title": "SVGPointList: clear() method" } ], "types.html#__svg__SVGNameList__getItem": [ @@ -4014,7 +3975,7 @@ "version_added": "79" } }, - "title": "SVGPointList.getItem()" + "title": "SVGPointList: getItem() method" } ], "types.html#__svg__SVGNameList__initialize": [ @@ -4065,7 +4026,7 @@ "version_added": "79" } }, - "title": "SVGPointList.initialize()" + "title": "SVGPointList: initialize() method" } ], "types.html#__svg__SVGNameList__insertItemBefore": [ @@ -4116,7 +4077,7 @@ "version_added": "79" } }, - "title": "SVGPointList.insertItemBefore()" + "title": "SVGPointList: insertItemBefore() method" } ], "types.html#__svg__SVGNameList__length": [ @@ -4161,7 +4122,7 @@ "version_added": "79" } }, - "title": "SVGPointList.length" + "title": "SVGPointList: length property" } ], "types.html#__svg__SVGNameList__numberOfItems": [ @@ -4212,7 +4173,7 @@ "version_added": "79" } }, - "title": "SVGPointList.numberOfItems" + "title": "SVGPointList: numberOfItems property" } ], "types.html#__svg__SVGNameList__removeItem": [ @@ -4263,7 +4224,7 @@ "version_added": "79" } }, - "title": "SVGPointList.removeItem()" + "title": "SVGPointList: removeItem() method" } ], "types.html#__svg__SVGNameList__replaceItem": [ @@ -4314,7 +4275,7 @@ "version_added": "79" } }, - "title": "SVGPointList.replaceItem()" + "title": "SVGPointList: replaceItem() method" } ], "shapes.html#InterfaceSVGPointList": [ @@ -4868,7 +4829,7 @@ "version_added": "102" } }, - "title": "SVGStyleElement.disabled" + "title": "SVGStyleElement: disabled property" } ], "styling.html#__svg__SVGStyleElement__media": [ @@ -4919,7 +4880,7 @@ "version_added": "79" } }, - "title": "SVGStyleElement.media" + "title": "SVGStyleElement: media property" } ], "styling.html#__svg__SVGStyleElement__title": [ @@ -4970,7 +4931,7 @@ "version_added": "79" } }, - "title": "SVGStyleElement.title" + "title": "SVGStyleElement: title property" } ], "styling.html#InterfaceSVGStyleElement": [ @@ -5188,7 +5149,7 @@ "name": "SVGTextContentElement", "slug": "API/SVGTextContentElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGTextContentElement", - "summary": "The SVGTextContentElement interface is implemented by elements that support rendering child text content. It is inherited by various text-related interfaces, such as SVGTextElement, SVGTSpanElement, SVGTRefElement, SVGAltGlyphElement and SVGTextPathElement.", + "summary": "The SVGTextContentElement interface is implemented by elements that support rendering child text content. It is inherited by various text-related interfaces, such as SVGTextElement, SVGTSpanElement, SVGTRefElement, and SVGTextPathElement.", "support": { "chrome": { "version_added": "1" @@ -5339,7 +5300,7 @@ "name": "SVGTextPositioningElement", "slug": "API/SVGTextPositioningElement", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPositioningElement", - "summary": "The SVGTextPositioningElement interface is implemented by elements that support attributes that position individual text glyphs. It is inherited by SVGTextElement, SVGTSpanElement, SVGTRefElement and SVGAltGlyphElement.", + "summary": "The SVGTextPositioningElement interface is implemented by elements that support attributes that position individual text glyphs. It is inherited by SVGTextElement, SVGTSpanElement, and SVGTRefElement.", "support": { "chrome": { "version_added": "1" @@ -6804,7 +6765,9 @@ ], "painting.html#SpecifyingFillPaint": [ { - "engines": [], + "engines": [ + "gecko" + ], "filename": "svg/attributes/presentation.json", "name": "fill", "slug": "SVG/Attribute/fill", @@ -6817,7 +6780,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -7244,7 +7207,9 @@ ], "painting.html#SpecifyingStrokePaint": [ { - "engines": [], + "engines": [ + "gecko" + ], "filename": "svg/attributes/presentation.json", "name": "stroke", "slug": "SVG/Attribute/stroke", @@ -7257,7 +7222,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -7739,7 +7704,11 @@ ], "coords.html#VectorEffects": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/attributes/presentation.json", "name": "vector-effect", "slug": "SVG/Attribute/vector-effect", @@ -7747,12 +7716,12 @@ "summary": "The vector-effect property specifies the vector effect to use when drawing an object. Vector effects are applied before any of the other compositing operations, i.e. filters, masks and clips.", "support": { "chrome": { - "version_added": null + "version_added": "12" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "15" }, "firefox_android": "mirror", "ie": { @@ -7762,13 +7731,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "5.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "vector-effect" @@ -7781,7 +7750,7 @@ "name": "writing-mode", "slug": "SVG/Attribute/writing-mode", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/writing-mode", - "summary": "The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, <altGlyph> and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)", + "summary": "The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)", "support": { "chrome": { "version_added": null @@ -7950,14 +7919,14 @@ "summary": "The textLength attribute, available on SVG <text> and <tspan> elements, lets you specify the width of the space into which the text will draw. The user agent will ensure that the text does not extend farther than that distance, using the method or methods specified by the lengthAdjust attribute. By default, only the spacing between characters is adjusted, but the glyph size can also be adjusted if you change lengthAdjust.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -7967,13 +7936,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "textLength" @@ -7995,9 +7964,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8044,9 +8011,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8093,9 +8058,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8112,7 +8075,7 @@ }, "opera_android": "mirror", "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -8158,7 +8121,7 @@ "version_added": "8" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { "version_added": "3.1" @@ -8196,11 +8159,9 @@ "version_added": "12" }, "firefox": { - "version_added": true - }, - "firefox_android": { - "version_added": "4" + "version_added": "1.5" }, + "firefox_android": "mirror", "ie": { "version_added": "9" }, @@ -8209,7 +8170,7 @@ "version_added": "8" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { "version_added": "3.1" @@ -8242,9 +8203,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8348,9 +8307,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8381,6 +8338,45 @@ "title": "<g>" } ], + "embedded.html#ImageElementCrossoriginAttribute": [ + { + "engines": [ + "gecko" + ], + "filename": "svg/elements/image.json", + "name": "crossorigin", + "slug": "SVG/Attribute/crossorigin", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/crossorigin", + "summary": "The crossorigin attribute, valid on the <image> and <feImage> elements, provides support for configuration of the Cross-Origin Resource Sharing (CORS) requests for the element's fetched data.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "SVG attribute: crossorigin" + } + ], "embedded.html#ImageElement": [ { "engines": [ @@ -8413,10 +8409,10 @@ "version_added": "8" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -8446,9 +8442,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8483,7 +8477,11 @@ ], "pservers.html#LinearGradientElementGradientTransformAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/linearGradient.json", "name": "gradientTransform", "slug": "SVG/Attribute/gradientTransform", @@ -8491,12 +8489,12 @@ "summary": "The gradientTransform attribute contains the definition of an optional additional transformation from the gradient coordinate system onto the target coordinate system (i.e., userSpaceOnUse or objectBoundingBox). This allows for things such as skewing the gradient. This additional transformation matrix is post-multiplied to (i.e., inserted to the right of) any previously defined transformations, including the implicit transformation necessary to convert from object bounding box units to user space.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8506,13 +8504,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "gradientTransform" @@ -8520,7 +8518,11 @@ ], "pservers.html#RadialGradientElementGradientTransformAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/linearGradient.json", "name": "gradientTransform", "slug": "SVG/Attribute/gradientTransform", @@ -8528,12 +8530,12 @@ "summary": "The gradientTransform attribute contains the definition of an optional additional transformation from the gradient coordinate system onto the target coordinate system (i.e., userSpaceOnUse or objectBoundingBox). This allows for things such as skewing the gradient. This additional transformation matrix is post-multiplied to (i.e., inserted to the right of) any previously defined transformations, including the implicit transformation necessary to convert from object bounding box units to user space.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8543,13 +8545,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "gradientTransform" @@ -8557,7 +8559,11 @@ ], "pservers.html#LinearGradientElementSpreadMethodAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/linearGradient.json", "name": "spreadMethod", "slug": "SVG/Attribute/spreadMethod", @@ -8565,12 +8571,12 @@ "summary": "The spreadMethod attribute determines how a shape is filled beyond the defined edges of a gradient.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8580,19 +8586,23 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "spreadMethod" }, { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/radialGradient.json", "name": "spreadMethod", "slug": "SVG/Attribute/spreadMethod", @@ -8600,12 +8610,12 @@ "summary": "The spreadMethod attribute determines how a shape is filled beyond the defined edges of a gradient.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8615,13 +8625,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "spreadMethod" @@ -8629,7 +8639,11 @@ ], "pservers.html#RadialGradientElementSpreadMethodAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/linearGradient.json", "name": "spreadMethod", "slug": "SVG/Attribute/spreadMethod", @@ -8637,12 +8651,12 @@ "summary": "The spreadMethod attribute determines how a shape is filled beyond the defined edges of a gradient.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8652,19 +8666,23 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "spreadMethod" }, { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/radialGradient.json", "name": "spreadMethod", "slug": "SVG/Attribute/spreadMethod", @@ -8672,12 +8690,12 @@ "summary": "The spreadMethod attribute determines how a shape is filled beyond the defined edges of a gradient.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8687,13 +8705,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "spreadMethod" @@ -8731,10 +8749,10 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -8762,14 +8780,14 @@ "summary": "The markerHeight attribute represents the height of the viewport into which the <marker> is to be fitted when it is rendered according to the viewBox and preserveAspectRatio attributes.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8779,13 +8797,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "markerHeight" @@ -8805,14 +8823,14 @@ "summary": "The markerUnits attribute defines the coordinate system for the markerWidth and markerHeight attributes and the contents of the <marker>.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8822,13 +8840,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "markerUnits" @@ -8848,14 +8866,14 @@ "summary": "The markerWidth attribute represents the width of the viewport into which the <marker> is to be fitted when it is rendered according to the viewBox and preserveAspectRatio attributes.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8865,13 +8883,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "markerWidth" @@ -8891,14 +8909,14 @@ "summary": "The orient attribute indicates how a marker is rotated when it is placed at its position on the shape.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -8908,13 +8926,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "orient" @@ -8931,14 +8949,12 @@ "name": "marker", "slug": "SVG/Element/marker", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker", - "summary": "The <marker> element defines the graphic that is to be used for drawing arrowheads or polymarkers on a given <path>, <line>, <polyline> or <polygon> element.", + "summary": "The <marker> element defines a graphic used for drawing arrowheads or polymarkers on a given <path>, <line>, <polyline> or <polygon> element.", "support": { "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -8957,9 +8973,7 @@ "safari": { "version_added": "3" }, - "safari_ios": { - "version_added": "3" - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "3" @@ -8987,9 +9001,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9038,9 +9050,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9089,9 +9099,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9127,6 +9135,8 @@ "pservers.html#PatternElementPatternContentUnitsAttribute": [ { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "svg/elements/pattern.json", @@ -9136,12 +9146,12 @@ "summary": "The patternContentUnits attribute indicates which coordinate system to use for the contents of the <pattern> element.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -9159,7 +9169,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "patternContentUnits" @@ -9168,6 +9178,8 @@ "pservers.html#PatternElementPatternTransformAttribute": [ { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "svg/elements/pattern.json", @@ -9177,12 +9189,12 @@ "summary": "The patternTransform attribute defines a list of transform definitions that are applied to a pattern tile.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -9200,7 +9212,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "patternTransform" @@ -9209,6 +9221,8 @@ "pservers.html#PatternElementPatternUnitsAttribute": [ { "engines": [ + "blink", + "gecko", "webkit" ], "filename": "svg/elements/pattern.json", @@ -9218,12 +9232,12 @@ "summary": "The patternUnits attribute indicates which coordinate system to use for the geometry properties of the <pattern> element.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -9241,7 +9255,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "patternUnits" @@ -9261,14 +9275,14 @@ "summary": "The <pattern> element defines a graphics object which can be redrawn at repeated x- and y-coordinate intervals (\"tiled\") to cover an area.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "3" }, "firefox_android": "mirror", "ie": { @@ -9286,7 +9300,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<pattern>" @@ -9308,9 +9322,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9359,9 +9371,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9396,7 +9406,11 @@ ], "pservers.html#RadialGradientElementFRAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/radialGradient.json", "name": "fr", "slug": "SVG/Attribute/fr", @@ -9404,12 +9418,12 @@ "summary": "The fr attribute defines the radius of the focal point for the radial gradient.", "support": { "chrome": { - "version_added": null + "version_added": "24" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "55" }, "firefox_android": "mirror", "ie": { @@ -9419,13 +9433,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "fr" @@ -9433,7 +9447,11 @@ ], "pservers.html#RadialGradientElementFXAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/radialGradient.json", "name": "fx", "slug": "SVG/Attribute/fx", @@ -9441,12 +9459,12 @@ "summary": "The fx attribute defines the x-axis coordinate of the focal point for a radial gradient.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -9456,13 +9474,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "fx" @@ -9470,7 +9488,11 @@ ], "pservers.html#RadialGradientElementFYAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/radialGradient.json", "name": "fy", "slug": "SVG/Attribute/fy", @@ -9478,12 +9500,12 @@ "summary": "The fy attribute defines the y-axis coordinate of the focal point for a radial gradient.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -9493,13 +9515,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "fy" @@ -9537,10 +9559,10 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -9570,9 +9592,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9587,7 +9607,9 @@ "opera": { "version_added": "8" }, - "opera_android": "mirror", + "opera_android": { + "version_added": "10.1" + }, "safari": { "version_added": "3.1" }, @@ -9635,10 +9657,10 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -9684,7 +9706,7 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { "version_added": "3" @@ -9741,7 +9763,7 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { "version_added": "3" @@ -9762,7 +9784,11 @@ ], "styling.html#StyleElementMediaAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/style.json", "name": "media", "slug": "SVG/Attribute/media", @@ -9770,12 +9796,12 @@ "summary": "The media attribute specifies a media query that must be matched for a style sheet to apply.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -9785,13 +9811,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "media" @@ -9829,10 +9855,10 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -9862,9 +9888,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -9879,13 +9903,13 @@ "opera": { "version_added": "8" }, - "opera_android": "mirror", - "safari": { - "version_added": "3" + "opera_android": { + "version_added": "10.1" }, - "safari_ios": { + "safari": { "version_added": "3" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "3" @@ -9929,7 +9953,7 @@ "version_added": "8" }, "opera_android": { - "version_added": null + "version_added": "10.1" }, "safari": { "version_added": "3.1" @@ -9978,10 +10002,10 @@ "version_added": "9" }, "opera_android": { - "version_added": true + "version_added": "10.1" }, "safari": { - "version_added": "3.1" + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -10009,14 +10033,14 @@ "summary": "The dx attribute indicates a shift along the x-axis on the position of an element or its content.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -10026,13 +10050,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "dx" @@ -10052,14 +10076,14 @@ "summary": "The dy attribute indicates a shift along the y-axis on the position of an element or its content.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -10069,13 +10093,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "dy" @@ -10095,14 +10119,14 @@ "summary": "The lengthAdjust attribute controls how the text is stretched into the length defined by the textLength attribute.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -10112,13 +10136,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "lengthAdjust" @@ -10138,14 +10162,14 @@ "summary": "The x attribute defines an x-axis coordinate in the user coordinate system.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -10155,13 +10179,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "x" @@ -10181,14 +10205,14 @@ "summary": "The y attribute defines a y-axis coordinate in the user coordinate system.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "1.5" }, "firefox_android": "mirror", "ie": { @@ -10198,13 +10222,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "y" @@ -10226,9 +10250,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -10243,13 +10265,13 @@ "opera": { "version_added": "8" }, - "opera_android": "mirror", - "safari": { - "version_added": "3" + "opera_android": { + "version_added": "10.1" }, - "safari_ios": { + "safari": { "version_added": "3" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "3" @@ -10275,9 +10297,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -10296,9 +10316,7 @@ "safari": { "version_added": "3" }, - "safari_ios": { - "version_added": "3" - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "3" @@ -10351,7 +10369,11 @@ ], "text.html#TextPathElementSpacingAttribute": [ { - "engines": [], + "engines": [ + "blink", + "gecko", + "webkit" + ], "filename": "svg/elements/textPath.json", "name": "spacing", "slug": "SVG/Attribute/spacing", @@ -10359,12 +10381,12 @@ "summary": "The spacing attribute indicates how the user agent should determine the spacing between typographic characters that are to be rendered along a path.", "support": { "chrome": { - "version_added": null + "version_added": "1" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": null + "version_added": "20" }, "firefox_android": "mirror", "ie": { @@ -10374,13 +10396,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": null + "version_added": "79" } }, "title": "spacing" @@ -10400,14 +10422,14 @@ "summary": "The startOffset attribute defines an offset from the start of the path for the initial current text position along the path after converting the path to the <textPath> element's coordinate system.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "20" }, "firefox_android": "mirror", "ie": { @@ -10417,13 +10439,13 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": true + "version_added": "3.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "startOffset" @@ -10443,14 +10465,14 @@ "summary": "To render text along the shape of a <path>, enclose the text in a <textPath> element that has an href attribute with a reference to the <path> element.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": true + "version_added": "2" }, "firefox_android": "mirror", "ie": { @@ -10460,17 +10482,14 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "3", - "notes": "Until Safari 6, textPath was not re-rendered when the referenced path was changed dynamically (see <a href='https://webkit.org/b/15799'>bug 15799</a>)" - }, - "safari_ios": { - "version_added": "3", + "version_added": "3.1", "notes": "Until Safari 6, textPath was not re-rendered when the referenced path was changed dynamically (see <a href='https://webkit.org/b/15799'>bug 15799</a>)" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<textPath>" @@ -10492,9 +10511,7 @@ "chrome": { "version_added": "1" }, - "chrome_android": { - "version_added": true - }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, @@ -10538,19 +10555,17 @@ "name": "use", "slug": "SVG/Element/use", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use", - "summary": "The <use> element takes nodes from within the SVG document, and duplicates them somewhere else.", + "summary": "The <use> element takes nodes from within the SVG document, and duplicates them somewhere else. The effect is the same as if the nodes were deeply cloned into a non-exposed DOM, then pasted where the use element is, much like cloned template elements.", "support": { "chrome": { - "version_added": "22" - }, - "chrome_android": { - "version_added": true + "version_added": "1" }, + "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "4", + "version_added": "1.5", "notes": "Before version 56, Firefox does not completely follow the <code>use</code> cascading rules (see <a href='https://bugzil.la/265894'>bug 265894</a>). A fix is <a href='https://stackoverflow.com/questions/27866893/svg-fill-not-being-applied-in-firefox/27872310#27872310'>documented by Amelia Bellamy-Royds on StackOverflow</a>." }, "firefox_android": "mirror", @@ -10567,9 +10582,7 @@ "safari": { "version_added": "3" }, - "safari_ios": { - "version_added": "3" - }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { "version_added": "4" @@ -10585,7 +10598,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "svg/elements/view.json", "name": "view", @@ -10594,7 +10608,7 @@ "summary": "A view is a defined way to view the image, like a zoom level or a detail view.", "support": { "chrome": { - "version_added": true + "version_added": "1" }, "chrome_android": "mirror", "edge": { @@ -10609,17 +10623,15 @@ }, "oculus": "mirror", "opera": "mirror", - "opera_android": { - "version_added": null - }, + "opera_android": "mirror", "safari": { - "version_added": null + "version_added": "3" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": true + "version_added": "79" } }, "title": "<view>" diff --git a/bikeshed/spec-data/readonly/mdn/touch-events.json b/bikeshed/spec-data/readonly/mdn/touch-events.json index 2c51572780..9d5231d49c 100644 --- a/bikeshed/spec-data/readonly/mdn/touch-events.json +++ b/bikeshed/spec-data/readonly/mdn/touch-events.json @@ -398,6 +398,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "Touch", "slug": "API/Touch/Touch", @@ -410,7 +413,9 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "46" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, "firefox_android": { "version_added": "6" @@ -433,7 +438,7 @@ "version_added": "79" } }, - "title": "Touch()" + "title": "Touch: Touch() constructor" } ], "dom-touch-clientx": [ @@ -443,6 +448,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "clientX", "slug": "API/Touch/clientX", @@ -458,7 +466,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -487,7 +497,7 @@ "version_added": "79" } }, - "title": "Touch.clientX" + "title": "Touch: clientX property" } ], "dom-touch-clienty": [ @@ -497,6 +507,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "clientY", "slug": "API/Touch/clientY", @@ -512,7 +525,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -541,7 +556,7 @@ "version_added": "79" } }, - "title": "Touch.clientY" + "title": "Touch: clientY property" } ], "dom-touch-force": [ @@ -551,6 +566,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "force", "slug": "API/Touch/force", @@ -573,7 +591,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -609,7 +629,7 @@ } ] }, - "title": "Touch.force" + "title": "Touch: force property" } ], "dom-touch-identifier": [ @@ -619,6 +639,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "identifier", "slug": "API/Touch/identifier", @@ -634,7 +657,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -663,7 +688,7 @@ "version_added": "79" } }, - "title": "Touch.identifier" + "title": "Touch: identifier property" } ], "dom-touch-pagex": [ @@ -673,6 +698,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "pageX", "slug": "API/Touch/pageX", @@ -688,7 +716,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -717,7 +747,7 @@ "version_added": "79" } }, - "title": "Touch.pageX" + "title": "Touch: pageX property" } ], "dom-touch-pagey": [ @@ -727,6 +757,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "pageY", "slug": "API/Touch/pageY", @@ -742,7 +775,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -771,7 +806,7 @@ "version_added": "79" } }, - "title": "Touch.pageY" + "title": "Touch: pageY property" } ], "dom-touch-radiusx": [ @@ -781,6 +816,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "radiusX", "slug": "API/Touch/radiusX", @@ -803,7 +841,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -839,7 +879,7 @@ } ] }, - "title": "Touch.radiusX" + "title": "Touch: radiusX property" } ], "dom-touch-radiusy": [ @@ -849,6 +889,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "radiusY", "slug": "API/Touch/radiusY", @@ -871,7 +914,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -907,7 +952,7 @@ } ] }, - "title": "Touch.radiusY" + "title": "Touch: radiusY property" } ], "dom-touch-rotationangle": [ @@ -917,6 +962,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "rotationAngle", "slug": "API/Touch/rotationAngle", @@ -939,7 +987,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -975,7 +1025,7 @@ } ] }, - "title": "Touch.rotationAngle" + "title": "Touch: rotationAngle property" } ], "dom-touch-screenx": [ @@ -985,6 +1035,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "screenX", "slug": "API/Touch/screenX", @@ -1000,7 +1053,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1029,7 +1084,7 @@ "version_added": "79" } }, - "title": "Touch.screenX" + "title": "Touch: screenX property" } ], "dom-touch-screeny": [ @@ -1039,6 +1094,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "screenY", "slug": "API/Touch/screenY", @@ -1054,7 +1112,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1083,7 +1143,7 @@ "version_added": "79" } }, - "title": "Touch.screenY" + "title": "Touch: screenY property" } ], "dom-touch-target": [ @@ -1093,6 +1153,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "target", "slug": "API/Touch/target", @@ -1108,7 +1171,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1137,7 +1202,7 @@ "version_added": "79" } }, - "title": "Touch.target" + "title": "Touch: target property" } ], "touch-interface": [ @@ -1147,6 +1212,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/Touch.json", "name": "Touch", "slug": "API/Touch", @@ -1162,7 +1230,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1238,7 +1308,7 @@ "notes": "Chrome only supports the following <code>touchEventInit</code> properties: <code>touches</code>, <code>targetTouches</code>, <code>changedTouches</code>." } }, - "title": "TouchEvent()" + "title": "TouchEvent: TouchEvent() constructor" } ], "dom-touchevent-altkey": [ @@ -1252,7 +1322,7 @@ "name": "altKey", "slug": "API/TouchEvent/altKey", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/altKey", - "summary": "A boolean value indicating whether or not the alt (Alternate) key is enabled when the touch event is created. If the alt key is enabled, the attribute's value is true. Otherwise, it is false.", + "summary": "The read-only altKey property of the TouchEvent interface returns a boolean value indicating whether or not the alt (Alternate) key is enabled when the touch event is created. If the alt key is enabled, the attribute's value is true. Otherwise, it is false.", "support": { "chrome": { "version_added": "22" @@ -1290,7 +1360,7 @@ "version_added": "79" } }, - "title": "TouchEvent.altKey" + "title": "TouchEvent: altKey property" } ], "dom-touchevent-changedtouches": [ @@ -1342,7 +1412,7 @@ "version_added": "79" } }, - "title": "TouchEvent.changedTouches" + "title": "TouchEvent: changedTouches property" } ], "dom-touchevent-ctrlkey": [ @@ -1356,7 +1426,7 @@ "name": "ctrlKey", "slug": "API/TouchEvent/ctrlKey", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/ctrlKey", - "summary": "A boolean value indicating whether the control (Control) key is enabled when the touch event is created. If this key is enabled, the attribute's value is true. Otherwise, it is false.", + "summary": "The read-only ctrlKey property of the TouchEvent interface returns a boolean value indicating whether the control (Control) key is enabled when the touch event is created. If this key is enabled, the attribute's value is true. Otherwise, it is false.", "support": { "chrome": { "version_added": "22" @@ -1394,7 +1464,7 @@ "version_added": "79" } }, - "title": "TouchEvent.ctrlKey" + "title": "TouchEvent: ctrlKey property" } ], "dom-touchevent-metakey": [ @@ -1408,7 +1478,7 @@ "name": "metaKey", "slug": "API/TouchEvent/metaKey", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/metaKey", - "summary": "A boolean value indicating whether or not the Meta key is enabled when the touch event is created. If this key is enabled, the attribute's value is true. Otherwise, it is false.", + "summary": "The read-only metaKey property of the TouchEvent interface returns a boolean value indicating whether or not the Meta key is enabled when the touch event is created. If this key is enabled, the attribute's value is true. Otherwise, it is false.", "support": { "chrome": { "version_added": "22" @@ -1446,7 +1516,7 @@ "version_added": "79" } }, - "title": "TouchEvent.metaKey" + "title": "TouchEvent: metaKey property" } ], "dom-touchevent-shiftkey": [ @@ -1498,7 +1568,7 @@ "version_added": "79" } }, - "title": "TouchEvent.shiftKey" + "title": "TouchEvent: shiftKey property" } ], "dom-touchevent-targettouches": [ @@ -1550,7 +1620,7 @@ "version_added": "79" } }, - "title": "TouchEvent.targetTouches" + "title": "TouchEvent: targetTouches property" } ], "dom-touchevent-touches": [ @@ -1602,7 +1672,7 @@ "version_added": "79" } }, - "title": "TouchEvent.touches" + "title": "TouchEvent: touches property" } ], "touchevent-interface": [ @@ -1664,6 +1734,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/TouchList.json", "name": "item", "slug": "API/TouchList/item", @@ -1679,7 +1752,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1697,7 +1772,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": false }, "safari_ios": { "version_added": "2" @@ -1708,7 +1783,7 @@ "version_added": "79" } }, - "title": "TouchList.item()" + "title": "TouchList: item() method" } ], "dom-touchlist-length": [ @@ -1718,6 +1793,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/TouchList.json", "name": "length", "slug": "API/TouchList/length", @@ -1733,7 +1811,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1751,7 +1831,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": false }, "safari_ios": { "version_added": "2" @@ -1762,7 +1842,7 @@ "version_added": "79" } }, - "title": "TouchList.length" + "title": "TouchList: length property" } ], "touchlist-interface": [ @@ -1772,6 +1852,9 @@ "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/TouchList.json", "name": "TouchList", "slug": "API/TouchList", @@ -1787,7 +1870,9 @@ }, "firefox": [ { - "version_added": "52" + "version_added": "52", + "partial_implementation": true, + "notes": "This interface is only exposed if a touch input device is detected." }, { "version_added": "18", @@ -1805,7 +1890,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10.1" + "version_added": false }, "safari_ios": { "version_added": "2" diff --git a/bikeshed/spec-data/readonly/mdn/trusted-types.json b/bikeshed/spec-data/readonly/mdn/trusted-types.json index 725eacb5fc..d7965aac70 100644 --- a/bikeshed/spec-data/readonly/mdn/trusted-types.json +++ b/bikeshed/spec-data/readonly/mdn/trusted-types.json @@ -35,7 +35,7 @@ "version_added": "90" } }, - "title": "TrustedHTML.toJSON()" + "title": "TrustedHTML: toJSON() method" } ], "trustedhtml-stringification-behavior": [ @@ -74,7 +74,7 @@ "version_added": "83" } }, - "title": "TrustedHTML.toString()" + "title": "TrustedHTML: toString() method" } ], "trusted-html": [ @@ -152,7 +152,7 @@ "version_added": "90" } }, - "title": "TrustedScript.toJSON()" + "title": "TrustedScript: toJSON() method" } ], "trustedscripturl-stringification-behavior": [ @@ -191,7 +191,7 @@ "version_added": "83" } }, - "title": "TrustedScript.toString()" + "title": "TrustedScript: toString() method" }, { "engines": [ @@ -228,7 +228,7 @@ "version_added": "83" } }, - "title": "TrustedScriptURL.toString()" + "title": "TrustedScriptURL: toString() method" } ], "trusted-script": [ @@ -306,7 +306,7 @@ "version_added": "90" } }, - "title": "TrustedScriptURL.toJSON()" + "title": "TrustedScriptURL: toJSON() method" } ], "trused-script-url": [ @@ -384,7 +384,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicy.createHTML()" + "title": "TrustedTypePolicy: createHTML() method" } ], "dom-trustedtypepolicy-createscript": [ @@ -423,7 +423,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicy.createScript()" + "title": "TrustedTypePolicy: createScript() method" } ], "dom-trustedtypepolicy-createscripturl": [ @@ -462,7 +462,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicy.createScriptURL()" + "title": "TrustedTypePolicy: createScriptURL() method" } ], "dom-trustedtypepolicy-name": [ @@ -501,7 +501,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicy.name" + "title": "TrustedTypePolicy: name property" } ], "trusted-type-policy": [ @@ -579,7 +579,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.createPolicy()" + "title": "TrustedTypePolicyFactory: createPolicy() method" } ], "dom-trustedtypepolicyfactory-defaultpolicy": [ @@ -618,7 +618,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.defaultPolicy" + "title": "TrustedTypePolicyFactory: defaultPolicy property" } ], "dom-trustedtypepolicyfactory-emptyhtml": [ @@ -657,7 +657,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.emptyHTML" + "title": "TrustedTypePolicyFactory: emptyHTML property" } ], "dom-trustedtypepolicyfactory-emptyscript": [ @@ -696,7 +696,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.emptyScript" + "title": "TrustedTypePolicyFactory: emptyScript property" } ], "dom-trustedtypepolicyfactory-getattributetype": [ @@ -735,7 +735,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.getAttributeType()" + "title": "TrustedTypePolicyFactory: getAttributeType() method" } ], "dom-trustedtypepolicyfactory-getpropertytype": [ @@ -774,7 +774,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.getPropertyType()" + "title": "TrustedTypePolicyFactory: getPropertyType() method" } ], "dom-trustedtypepolicyfactory-ishtml": [ @@ -813,7 +813,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.isHTML()" + "title": "TrustedTypePolicyFactory: isHTML() method" } ], "dom-trustedtypepolicyfactory-isscript": [ @@ -852,7 +852,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.isScript()" + "title": "TrustedTypePolicyFactory: isScript() method" } ], "dom-trustedtypepolicyfactory-isscripturl": [ @@ -891,7 +891,7 @@ "version_added": "83" } }, - "title": "TrustedTypePolicyFactory.isScriptURL()" + "title": "TrustedTypePolicyFactory: isScriptURL() method" } ], "trusted-type-policy-factory": [ diff --git a/bikeshed/spec-data/readonly/mdn/ua-client-hints.json b/bikeshed/spec-data/readonly/mdn/ua-client-hints.json index 0b7728b2c9..bea5c3c53a 100644 --- a/bikeshed/spec-data/readonly/mdn/ua-client-hints.json +++ b/bikeshed/spec-data/readonly/mdn/ua-client-hints.json @@ -1,4 +1,307 @@ { + "dom-navigatoruadata-brands": [ + { + "engines": [ + "blink" + ], + "filename": "api/NavigatorUAData.json", + "name": "brands", + "slug": "API/NavigatorUAData/brands", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/brands", + "summary": "The brands read-only property of the NavigatorUAData interface returns an array of brand information.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": false + }, + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "90" + } + }, + "title": "NavigatorUAData: brands property" + } + ], + "dom-navigatoruadata-gethighentropyvalues": [ + { + "engines": [ + "blink" + ], + "filename": "api/NavigatorUAData.json", + "name": "getHighEntropyValues", + "slug": "API/NavigatorUAData/getHighEntropyValues", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/getHighEntropyValues", + "summary": "The getHighEntropyValues() method of the NavigatorUAData interface is a Promise that resolves with a dictionary object containing the high entropy values the user-agent returns.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": false + }, + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "90" + } + }, + "title": "NavigatorUAData: getHighEntropyValues() method" + } + ], + "dom-navigatoruadata-mobile": [ + { + "engines": [ + "blink" + ], + "filename": "api/NavigatorUAData.json", + "name": "mobile", + "slug": "API/NavigatorUAData/mobile", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/mobile", + "summary": "The mobile read-only property of the NavigatorUAData interface returns a value indicating whether the device is a mobile device.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": false + }, + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "90" + } + }, + "title": "NavigatorUAData: mobile property" + } + ], + "dom-navigatoruadata-platform": [ + { + "engines": [ + "blink" + ], + "filename": "api/NavigatorUAData.json", + "name": "platform", + "slug": "API/NavigatorUAData/platform", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/platform", + "summary": "The platform read-only property of the NavigatorUAData interface returns the platform brand information.", + "support": { + "chrome": { + "version_added": "93" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": false + }, + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "93" + } + }, + "title": "NavigatorUAData: platform property" + } + ], + "dom-navigatoruadata-tojson": [ + { + "engines": [ + "blink" + ], + "filename": "api/NavigatorUAData.json", + "name": "toJSON", + "slug": "API/NavigatorUAData/toJSON", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/toJSON", + "summary": "The toJSON() method of the NavigatorUAData interface is a serializer that returns a JSON representation of the low entropy properties of the NavigatorUAData object.", + "support": { + "chrome": { + "version_added": "93" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": false + }, + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "93" + } + }, + "title": "NavigatorUAData: toJSON() method" + } + ], + "navigatoruadata": [ + { + "engines": [ + "blink" + ], + "filename": "api/NavigatorUAData.json", + "name": "NavigatorUAData", + "slug": "API/NavigatorUAData", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData", + "summary": "The NavigatorUAData interface of the User-Agent Client Hints API returns information about the browser and operating system of a user.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": false + }, + "webview_android": { + "version_added": false, + "notes": "See <a href='https://crbug.com/921655'>bug 921655</a>." + }, + "edge_blink": { + "version_added": "90" + } + }, + "title": "NavigatorUAData" + } + ], + "dom-navigatorua-useragentdata": [ + { + "engines": [ + "blink" + ], + "filename": "api/WorkerNavigator.json", + "name": "userAgentData", + "slug": "API/WorkerNavigator/userAgentData", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/userAgentData", + "summary": "The userAgentData read-only property of the WorkerNavigator interface returns an NavigatorUAData object which can be used to access the User-Agent Client Hints API.", + "support": { + "chrome": { + "version_added": "90" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false, + "notes": "See <a href='https://crbug.com/921655'>bug 921655</a>." + }, + "edge_blink": { + "version_added": "90" + } + }, + "title": "WorkerNavigator: userAgentData property" + } + ], "sec-ch-ua-arch": [ { "engines": [ diff --git a/bikeshed/spec-data/readonly/mdn/uievents.json b/bikeshed/spec-data/readonly/mdn/uievents.json index 5704c34f0f..91a749db82 100644 --- a/bikeshed/spec-data/readonly/mdn/uievents.json +++ b/bikeshed/spec-data/readonly/mdn/uievents.json @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "CompositionEvent()" + "title": "CompositionEvent: CompositionEvent() constructor" } ], "dom-compositionevent-data": [ @@ -86,7 +86,7 @@ "version_added": "79" } }, - "title": "CompositionEvent.data" + "title": "CompositionEvent: data property" } ], "interface-compositionevent": [ @@ -591,53 +591,6 @@ "title": "Element: dblclick event" } ], - "event-type-error": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/Element.json", - "name": "error_event", - "slug": "API/Element/error_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Element/error_event", - "summary": "The error event is fired on an Element object when a resource failed to load, or can't be used. For example, if a script has an execution error or an image can't be found or is invalid.", - "support": { - "chrome": { - "version_added": "1" - }, - "chrome_android": "mirror", - "edge": { - "version_added": "12" - }, - "firefox": { - "version_added": "1" - }, - "firefox_android": "mirror", - "ie": { - "version_added": "9" - }, - "oculus": "mirror", - "opera": { - "version_added": "12.1" - }, - "opera_android": { - "version_added": "12.1" - }, - "safari": { - "version_added": "1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "Element: error event" - } - ], "event-type-focus": [ { "engines": [ @@ -1356,7 +1309,7 @@ "version_added": "79" } }, - "title": "FocusEvent()" + "title": "FocusEvent: FocusEvent() constructor" } ], "dom-focusevent-relatedtarget": [ @@ -1399,7 +1352,7 @@ "version_added": "79" } }, - "title": "FocusEvent.relatedTarget" + "title": "FocusEvent: relatedTarget property" } ], "interface-focusevent": [ @@ -1486,6 +1439,53 @@ "title": "HTMLElement: beforeinput event" } ], + "event-type-error": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/HTMLElement.json", + "name": "error_event", + "slug": "API/HTMLElement/error_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/error_event", + "summary": "The error event is fired on an element when a resource failed to load, or can't be used. For example, if a script has an execution error or an image can't be found or is invalid.", + "support": { + "chrome": { + "version_added": "1" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "1" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "9" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "HTMLElement: error event" + } + ], "event-type-input": [ { "engines": [ @@ -1577,7 +1577,7 @@ "version_added": "79" } }, - "title": "InputEvent()" + "title": "InputEvent: InputEvent() constructor" } ], "dom-inputevent-inputtype": [ @@ -1618,14 +1618,15 @@ "version_added": "79" } }, - "title": "InputEvent.inputType" + "title": "InputEvent: inputType property" } ], "dom-inputevent-iscomposing": [ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/InputEvent.json", "name": "isComposing", @@ -1649,7 +1650,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1658,7 +1659,7 @@ "version_added": "79" } }, - "title": "InputEvent.isComposing" + "title": "InputEvent: isComposing property" } ], "interface-inputevent": [ @@ -1742,7 +1743,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent()" + "title": "KeyboardEvent: KeyboardEvent() constructor" } ], "dom-keyboardevent-altkey": [ @@ -1791,7 +1792,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent.altKey" + "title": "KeyboardEvent: altKey property" } ], "dom-keyboardevent-code": [ @@ -1836,7 +1837,7 @@ "feature": "keyboardevent-code", "title": "KeyboardEvent.code" }, - "title": "KeyboardEvent.code" + "title": "KeyboardEvent: code property" } ], "dom-keyboardevent-ctrlkey": [ @@ -1885,7 +1886,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent.ctrlKey" + "title": "KeyboardEvent: ctrlKey property" } ], "dom-keyboardevent-getmodifierstate": [ @@ -1932,7 +1933,7 @@ "feature": "keyboardevent-getmodifierstate", "title": "KeyboardEvent.getModifierState()" }, - "title": "KeyboardEvent.getModifierState()" + "title": "KeyboardEvent: getModifierState() method" } ], "dom-keyboardevent-iscomposing": [ @@ -1973,7 +1974,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent.isComposing" + "title": "KeyboardEvent: isComposing property" } ], "dom-keyboardevent-key": [ @@ -2021,7 +2022,7 @@ "feature": "keyboardevent-key", "title": "KeyboardEvent.key" }, - "title": "KeyboardEvent.key" + "title": "KeyboardEvent: key property" } ], "dom-keyboardevent-location": [ @@ -2068,7 +2069,7 @@ "feature": "keyboardevent-location", "title": "KeyboardEvent.location" }, - "title": "KeyboardEvent.location" + "title": "KeyboardEvent: location property" } ], "dom-keyboardevent-metakey": [ @@ -2092,7 +2093,8 @@ "version_added": "12" }, "firefox": { - "version_added": "1.5" + "version_added": "1.5", + "notes": "Since Firefox 48, the Windows key is no longer treated as a <code>meta</code> key." }, "firefox_android": "mirror", "ie": { @@ -2117,7 +2119,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent.metaKey" + "title": "KeyboardEvent: metaKey property" } ], "dom-keyboardevent-repeat": [ @@ -2160,7 +2162,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent.repeat" + "title": "KeyboardEvent: repeat property" } ], "dom-keyboardevent-shiftkey": [ @@ -2209,7 +2211,7 @@ "version_added": "79" } }, - "title": "KeyboardEvent.shiftKey" + "title": "KeyboardEvent: shiftKey property" } ], "interface-keyboardevent": [ @@ -2301,7 +2303,7 @@ "version_added": "79" } }, - "title": "MouseEvent()" + "title": "MouseEvent: MouseEvent() constructor" } ], "dom-mouseevent-altkey": [ @@ -2350,7 +2352,7 @@ "version_added": "79" } }, - "title": "MouseEvent.altKey" + "title": "MouseEvent: altKey property" } ], "dom-mouseevent-button": [ @@ -2399,7 +2401,7 @@ "version_added": "79" } }, - "title": "MouseEvent.button" + "title": "MouseEvent: button property" } ], "dom-mouseevent-buttons": [ @@ -2445,7 +2447,7 @@ "version_added": "79" } }, - "title": "MouseEvent.buttons" + "title": "MouseEvent: buttons property" } ], "dom-mouseevent-clientx": [ @@ -2494,7 +2496,7 @@ "version_added": "79" } }, - "title": "MouseEvent.clientX" + "title": "MouseEvent: clientX property" } ], "dom-mouseevent-clienty": [ @@ -2543,7 +2545,7 @@ "version_added": "79" } }, - "title": "MouseEvent.clientY" + "title": "MouseEvent: clientY property" } ], "dom-mouseevent-ctrlkey": [ @@ -2592,7 +2594,7 @@ "version_added": "79" } }, - "title": "MouseEvent.ctrlKey" + "title": "MouseEvent: ctrlKey property" } ], "dom-mouseevent-getmodifierstate": [ @@ -2635,7 +2637,7 @@ "version_added": "79" } }, - "title": "MouseEvent.getModifierState()" + "title": "MouseEvent: getModifierState() method" } ], "dom-mouseevent-metakey": [ @@ -2684,7 +2686,7 @@ "version_added": "79" } }, - "title": "MouseEvent.metaKey" + "title": "MouseEvent: metaKey property" } ], "dom-mouseevent-relatedtarget": [ @@ -2733,7 +2735,7 @@ "version_added": "79" } }, - "title": "MouseEvent.relatedTarget" + "title": "MouseEvent: relatedTarget property" } ], "dom-mouseevent-screenx": [ @@ -2782,7 +2784,7 @@ "version_added": "79" } }, - "title": "MouseEvent.screenX" + "title": "MouseEvent: screenX property" } ], "dom-mouseevent-screeny": [ @@ -2831,7 +2833,7 @@ "version_added": "79" } }, - "title": "MouseEvent.screenY" + "title": "MouseEvent: screenY property" } ], "dom-mouseevent-shiftkey": [ @@ -2880,7 +2882,7 @@ "version_added": "79" } }, - "title": "MouseEvent.shiftKey" + "title": "MouseEvent: shiftKey property" } ], "interface-mouseevent": [ @@ -2974,7 +2976,7 @@ "version_added": "79" } }, - "title": "UIEvent()" + "title": "UIEvent: UIEvent() constructor" } ], "dom-uievent-detail": [ @@ -3025,7 +3027,7 @@ "version_added": "79" } }, - "title": "UIEvent.detail" + "title": "UIEvent: detail property" } ], "dom-uievent-view": [ @@ -3074,7 +3076,7 @@ "version_added": "79" } }, - "title": "UIEvent.view" + "title": "UIEvent: view property" } ], "idl-uievent": [ @@ -3168,7 +3170,7 @@ "version_added": "79" } }, - "title": "WheelEvent()" + "title": "WheelEvent: WheelEvent() constructor" } ], "dom-wheelevent-deltamode": [ @@ -3213,7 +3215,7 @@ "version_added": "79" } }, - "title": "WheelEvent.deltaMode" + "title": "WheelEvent: deltaMode property" } ], "dom-wheelevent-deltax": [ @@ -3257,7 +3259,7 @@ "version_added": "79" } }, - "title": "WheelEvent.deltaX" + "title": "WheelEvent: deltaX property" } ], "dom-wheelevent-deltay": [ @@ -3301,7 +3303,7 @@ "version_added": "79" } }, - "title": "WheelEvent.deltaY" + "title": "WheelEvent: deltaY property" } ], "dom-wheelevent-deltaz": [ @@ -3345,7 +3347,7 @@ "version_added": "79" } }, - "title": "WheelEvent.deltaZ" + "title": "WheelEvent: deltaZ property" } ], "interface-wheelevent": [ @@ -3406,7 +3408,7 @@ "name": "load_event", "slug": "API/Window/load_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Window/load_event", - "summary": "The load event is fired when the whole page has loaded, including all dependent resources such as stylesheets and images. This is in contrast to DOMContentLoaded, which is fired as soon as the page DOM has been loaded, without waiting for resources to finish loading.", + "summary": "The load event is fired when the whole page has loaded, including all dependent resources such as stylesheets, scripts, iframes, and images. This is in contrast to DOMContentLoaded, which is fired as soon as the page DOM has been loaded, without waiting for resources to finish loading.", "support": { "chrome": { "version_added": "1" diff --git a/bikeshed/spec-data/readonly/mdn/upgrade-insecure-requests.json b/bikeshed/spec-data/readonly/mdn/upgrade-insecure-requests.json index f674dfc22f..ff46eef500 100644 --- a/bikeshed/spec-data/readonly/mdn/upgrade-insecure-requests.json +++ b/bikeshed/spec-data/readonly/mdn/upgrade-insecure-requests.json @@ -10,7 +10,7 @@ "name": "upgrade-insecure-requests", "slug": "HTTP/Headers/Content-Security-Policy/upgrade-insecure-requests", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/upgrade-insecure-requests", - "summary": "The HTTP Content-Security-Policy (CSP) upgrade-insecure-requests directive instructs user agents to treat all of a site's insecure URLs (those served over HTTP) as though they have been replaced with secure URLs (those served over HTTPS). This directive is intended for web sites with large numbers of insecure legacy URLs that need to be rewritten.", + "summary": "The HTTP Content-Security-Policy (CSP) upgrade-insecure-requests directive instructs user agents to treat all of a site's insecure URLs (those served over HTTP) as though they have been replaced with secure URLs (those served over HTTPS). This directive is intended for websites with large numbers of insecure legacy URLs that need to be rewritten.", "support": { "chrome": { "version_added": "43" diff --git a/bikeshed/spec-data/readonly/mdn/url.json b/bikeshed/spec-data/readonly/mdn/url.json index b423412fc0..287e87957b 100644 --- a/bikeshed/spec-data/readonly/mdn/url.json +++ b/bikeshed/spec-data/readonly/mdn/url.json @@ -60,7 +60,53 @@ "version_added": "79" } }, - "title": "URL()" + "title": "URL: URL() constructor" + } + ], + "ref-for-dom-url-canparse": [ + { + "engines": [ + "gecko", + "webkit" + ], + "filename": "api/URL.json", + "name": "canParse_static", + "slug": "API/URL/canParse_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL/canParse_static", + "summary": "The URL.canParse() static method of the URL interface returns a boolean indicating whether or not an absolute URL, or a relative URL combined with a base URL, are parsable and valid.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.33" + }, + "edge": "mirror", + "firefox": { + "version_added": "115" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "20.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "URL: canParse() static method" } ], "dom-url-hash": [ @@ -109,7 +155,7 @@ "version_added": "79" } }, - "title": "URL.hash" + "title": "URL: hash property" } ], "dom-url-host": [ @@ -158,7 +204,7 @@ "version_added": "79" } }, - "title": "URL.host" + "title": "URL: host property" } ], "dom-url-hostname": [ @@ -207,7 +253,7 @@ "version_added": "79" } }, - "title": "URL.hostname" + "title": "URL: hostname property" } ], "dom-url-href": [ @@ -256,7 +302,7 @@ "version_added": "79" } }, - "title": "URL.href" + "title": "URL: href property" } ], "dom-url-origin": [ @@ -314,7 +360,7 @@ "version_added": "79" } }, - "title": "URL.origin" + "title": "URL: origin property" } ], "dom-url-password": [ @@ -365,7 +411,7 @@ "version_added": "79" } }, - "title": "URL.password" + "title": "URL: password property" } ], "dom-url-pathname": [ @@ -379,7 +425,7 @@ "name": "pathname", "slug": "API/URL/pathname", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname", - "summary": "The pathname property of the URL interface is a string containing an initial / followed by the path of the URL, not including the query string or fragment (or the empty string if there is no path).", + "summary": "The pathname property of the URL interface represents a location in a hierarchical structure. It is a string constructed from a list of path segments, each of which is prefixed by a / character. If the URL has no path segments, the value of its pathname property will be the empty string.", "support": { "chrome": { "version_added": "32" @@ -415,7 +461,7 @@ "version_added": "79" } }, - "title": "URL.pathname" + "title": "URL: pathname property" } ], "dom-url-port": [ @@ -464,7 +510,7 @@ "version_added": "79" } }, - "title": "URL.port" + "title": "URL: port property" } ], "dom-url-protocol": [ @@ -513,7 +559,7 @@ "version_added": "79" } }, - "title": "URL.protocol" + "title": "URL: protocol property" } ], "dom-url-search": [ @@ -563,7 +609,7 @@ "version_added": "79" } }, - "title": "URL.search" + "title": "URL: search property" } ], "dom-url-searchparams": [ @@ -611,7 +657,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "10" + "version_added": "10.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -620,7 +666,7 @@ "version_added": "79" } }, - "title": "URL.searchParams" + "title": "URL: searchParams property" } ], "dom-url-tojson": [ @@ -669,7 +715,7 @@ "version_added": "79" } }, - "title": "URL.toJSON()" + "title": "URL: toJSON() method" } ], "URL-stringification-behavior": [ @@ -720,7 +766,7 @@ "version_added": "79" } }, - "title": "URL.toString()" + "title": "URL: toString() method" } ], "dom-url-username": [ @@ -771,7 +817,7 @@ "version_added": "79" } }, - "title": "URL.username" + "title": "URL: username property" } ], "api": [ @@ -908,7 +954,195 @@ "version_added": "79" } }, - "title": "URLSearchParams()" + "title": "URLSearchParams: URLSearchParams() constructor" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/URLSearchParams.json", + "name": "entries", + "slug": "API/URLSearchParams/entries", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/entries", + "summary": "The entries() method of the URLSearchParams interface returns an iterator allowing iteration through all key/value pairs contained in this object. The iterator returns key/value pairs in the same order as they appear in the query string. The key and value of each pair are string objects.", + "support": { + "chrome": { + "version_added": "49" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "7.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "URLSearchParams: entries() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/URLSearchParams.json", + "name": "forEach", + "slug": "API/URLSearchParams/forEach", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/forEach", + "summary": "The forEach() method of the URLSearchParams interface allows iteration through all values contained in this object via a callback function.", + "support": { + "chrome": { + "version_added": "49" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "7.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "URLSearchParams: forEach() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/URLSearchParams.json", + "name": "keys", + "slug": "API/URLSearchParams/keys", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/keys", + "summary": "The keys() method of the URLSearchParams interface returns an iterator allowing iteration through all keys contained in this object. The keys are string objects.", + "support": { + "chrome": { + "version_added": "49" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "7.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "URLSearchParams: keys() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/URLSearchParams.json", + "name": "values", + "slug": "API/URLSearchParams/values", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/values", + "summary": "The values() method of the URLsearchParams interface returns an iterator allowing iteration through all values contained in this object. The values are string objects.", + "support": { + "chrome": { + "version_added": "49" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.0" + }, + "edge": { + "version_added": "17" + }, + "firefox": { + "version_added": "44" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "7.5.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "10.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "URLSearchParams: values() method" } ], "dom-urlsearchparams-append": [ @@ -957,7 +1191,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.append()" + "title": "URLSearchParams: append() method" } ], "dom-urlsearchparams-delete": [ @@ -971,7 +1205,7 @@ "name": "delete", "slug": "API/URLSearchParams/delete", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/delete", - "summary": "The delete() method of the URLSearchParams interface deletes the given search parameter and all its associated values, from the list of all search parameters.", + "summary": "The delete() method of the URLSearchParams interface deletes specified parameters and their associated value(s) from the list of all search parameters.", "support": { "chrome": { "version_added": "49" @@ -1013,7 +1247,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.delete()" + "title": "URLSearchParams: delete() method" } ], "dom-urlsearchparams-get": [ @@ -1062,7 +1296,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.get()" + "title": "URLSearchParams: get() method" } ], "dom-urlsearchparams-getall": [ @@ -1111,7 +1345,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.getAll()" + "title": "URLSearchParams: getAll() method" } ], "dom-urlsearchparams-has": [ @@ -1125,7 +1359,7 @@ "name": "has", "slug": "API/URLSearchParams/has", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/has", - "summary": "The has() method of the URLSearchParams interface returns a boolean value that indicates whether a parameter with the specified name exists.", + "summary": "The has() method of the URLSearchParams interface returns a boolean value that indicates whether the specified parameter is in the search parameters.", "support": { "chrome": { "version_added": "49" @@ -1160,7 +1394,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.has()" + "title": "URLSearchParams: has() method" } ], "dom-urlsearchparams-set": [ @@ -1209,7 +1443,54 @@ "version_added": "79" } }, - "title": "URLSearchParams.set()" + "title": "URLSearchParams: set() method" + } + ], + "dom-urlsearchparams-size": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/URLSearchParams.json", + "name": "size", + "slug": "API/URLSearchParams/size", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/size", + "summary": "The read-only URLSearchParams.size property indicates the total number of search parameter entries.", + "support": { + "chrome": { + "version_added": "113" + }, + "chrome_android": "mirror", + "deno": { + "version_added": "1.32" + }, + "edge": "mirror", + "firefox": { + "version_added": "112" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "nodejs": { + "version_added": "19.0.0" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "17" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113" + } + }, + "title": "URLSearchParams: size property" } ], "dom-urlsearchparams-sort": [ @@ -1258,7 +1539,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.sort()" + "title": "URLSearchParams: sort() method" } ], "urlsearchparams-stringification-behavior": [ @@ -1307,7 +1588,7 @@ "version_added": "79" } }, - "title": "URLSearchParams.toString()" + "title": "URLSearchParams: toString() method" } ], "urlsearchparams": [ diff --git a/bikeshed/spec-data/readonly/mdn/urlpattern.json b/bikeshed/spec-data/readonly/mdn/urlpattern.json index 0f2f529f7a..4b5c7dffd9 100644 --- a/bikeshed/spec-data/readonly/mdn/urlpattern.json +++ b/bikeshed/spec-data/readonly/mdn/urlpattern.json @@ -50,7 +50,7 @@ "version_added": "95" } }, - "title": "URLPattern()" + "title": "URLPattern: URLPattern() constructor" } ], "dom-urlpattern-exec": [ @@ -104,7 +104,7 @@ "version_added": "95" } }, - "title": "URLPattern.exec()" + "title": "URLPattern: exec() method" } ], "dom-urlpattern-hash": [ @@ -158,7 +158,7 @@ "version_added": "95" } }, - "title": "URLPattern.hash" + "title": "URLPattern: hash property" } ], "dom-urlpattern-hostname": [ @@ -212,7 +212,7 @@ "version_added": "95" } }, - "title": "URLPattern.hostname" + "title": "URLPattern: hostname property" } ], "dom-urlpattern-password": [ @@ -266,7 +266,7 @@ "version_added": "95" } }, - "title": "URLPattern.password" + "title": "URLPattern: password property" } ], "dom-urlpattern-pathname": [ @@ -320,7 +320,7 @@ "version_added": "95" } }, - "title": "URLPattern.pathname" + "title": "URLPattern: pathname property" } ], "dom-urlpattern-port": [ @@ -374,7 +374,7 @@ "version_added": "95" } }, - "title": "URLPattern.port" + "title": "URLPattern: port property" } ], "dom-urlpattern-protocol": [ @@ -428,7 +428,7 @@ "version_added": "95" } }, - "title": "URLPattern.protocol" + "title": "URLPattern: protocol property" } ], "dom-urlpattern-search": [ @@ -482,7 +482,7 @@ "version_added": "95" } }, - "title": "URLPattern.search" + "title": "URLPattern: search property" } ], "dom-urlpattern-test": [ @@ -536,7 +536,7 @@ "version_added": "95" } }, - "title": "URLPattern.test()" + "title": "URLPattern: test() method" } ], "dom-urlpattern-username": [ @@ -590,7 +590,7 @@ "version_added": "95" } }, - "title": "URLPattern.username" + "title": "URLPattern: username property" } ], "urlpattern": [ diff --git a/bikeshed/spec-data/readonly/mdn/user-preference-media-features-headers.json b/bikeshed/spec-data/readonly/mdn/user-preference-media-features-headers.json new file mode 100644 index 0000000000..afed8c7f9b --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/user-preference-media-features-headers.json @@ -0,0 +1,41 @@ +{ + "sec-ch-prefers-reduced-motion": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Sec-CH-Prefers-Reduced-Motion.json", + "name": "Sec-CH-Prefers-Reduced-Motion", + "slug": "HTTP/Headers/Sec-CH-Prefers-Reduced-Motion", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-CH-Prefers-Reduced-Motion", + "summary": "The Sec-CH-Prefers-Reduced-Motion user agent client hint request header indicates the user agent's preference for animations to be displayed with reduced motion.", + "support": { + "chrome": { + "version_added": "108" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "108" + } + }, + "title": "Sec-CH-Prefers-Reduced-Motion" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/user-timing.json b/bikeshed/spec-data/readonly/mdn/user-timing.json index 067cf3a875..22b816e280 100644 --- a/bikeshed/spec-data/readonly/mdn/user-timing.json +++ b/bikeshed/spec-data/readonly/mdn/user-timing.json @@ -10,7 +10,7 @@ "name": "clearMarks", "slug": "API/Performance/clearMarks", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/clearMarks", - "summary": "The clearMarks() method removes the named mark from the browser's performance entry buffer. If the method is called with no arguments, all performance entries with an entry type of \"mark\" will be removed from the performance entry buffer.", + "summary": "The clearMarks() method removes all or specific PerformanceMark objects from the browser's performance timeline.", "support": { "chrome": [ { @@ -30,7 +30,7 @@ "version_added": "12" }, "firefox": { - "version_added": "41" + "version_added": "38" }, "firefox_android": { "version_added": "42" @@ -65,7 +65,7 @@ } ] }, - "title": "performance.clearMarks()" + "title": "Performance: clearMarks() method" } ], "dom-performance-clearmeasures": [ @@ -79,7 +79,7 @@ "name": "clearMeasures", "slug": "API/Performance/clearMeasures", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/clearMeasures", - "summary": "The clearMeasures() method removes the named measure from the browser's performance entry buffer. If the method is called with no arguments, all performance entries with an entry type of \"measure\" will be removed from the performance entry buffer.", + "summary": "The clearMeasures() method removes all or specific PerformanceMeasure objects from the browser's performance timeline.", "support": { "chrome": [ { @@ -99,7 +99,7 @@ "version_added": "12" }, "firefox": { - "version_added": "41" + "version_added": "38" }, "firefox_android": { "version_added": "42" @@ -134,7 +134,7 @@ } ] }, - "title": "performance.clearMeasures()" + "title": "Performance: clearMeasures() method" } ], "dom-performance-mark": [ @@ -148,7 +148,7 @@ "name": "mark", "slug": "API/Performance/mark", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/mark", - "summary": "The mark() method creates a timestamp in the browser's performance entry buffer with the given name.", + "summary": "The mark() method creates a named PerformanceMark object representing a high resolution timestamp marker in the browser's performance timeline.", "support": { "chrome": [ { @@ -168,7 +168,7 @@ "version_added": "12" }, "firefox": { - "version_added": "41" + "version_added": "38" }, "firefox_android": { "version_added": "42" @@ -203,7 +203,7 @@ } ] }, - "title": "performance.mark()" + "title": "Performance: mark() method" } ], "dom-performance-measure": [ @@ -217,7 +217,7 @@ "name": "measure", "slug": "API/Performance/measure", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance/measure", - "summary": "The measure() method creates a named timestamp in the browser's performance entry buffer between marks, the navigation start time, or the current time.", + "summary": "The measure() method creates a named PerformanceMeasure object representing a time measurement between two marks in the browser's performance timeline.", "support": { "chrome": [ { @@ -237,7 +237,7 @@ "version_added": "12" }, "firefox": { - "version_added": "41" + "version_added": "38" }, "firefox_android": { "version_added": "42" @@ -272,7 +272,7 @@ } ] }, - "title": "performance.measure()" + "title": "Performance: measure() method" } ], "extensions-performance-interface": [ @@ -286,7 +286,7 @@ "name": "Performance", "slug": "API/Performance", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Performance", - "summary": "The Performance interface provides access to performance-related information for the current page. It's part of the High Resolution Time API, but is enhanced by the Performance Timeline API, the Navigation Timing API, the User Timing API, and the Resource Timing API.", + "summary": "The Performance interface provides access to performance-related information for the current page.", "support": { "chrome": { "version_added": "6" @@ -376,7 +376,7 @@ "version_added": "79" } }, - "title": "PerformanceMark()" + "title": "PerformanceMark: PerformanceMark() constructor" } ], "dom-performancemark-detail": [ @@ -393,7 +393,7 @@ "summary": "The read-only detail property returns arbitrary metadata that was included in the mark upon construction (either when using performance.mark() or the PerformanceMark() constructor).", "support": { "chrome": { - "version_added": "76" + "version_added": "78" }, "chrome_android": "mirror", "deno": { @@ -425,7 +425,7 @@ "version_added": "79" } }, - "title": "PerformanceMark.detail" + "title": "PerformanceMark: detail property" } ], "performancemark": [ @@ -523,7 +523,7 @@ "version_added": "79" } }, - "title": "PerformanceMeasure.detail" + "title": "PerformanceMeasure: detail property" } ], "performancemeasure": [ diff --git a/bikeshed/spec-data/readonly/mdn/vibration.json b/bikeshed/spec-data/readonly/mdn/vibration.json index 8ffe6fe38c..949ae3d234 100644 --- a/bikeshed/spec-data/readonly/mdn/vibration.json +++ b/bikeshed/spec-data/readonly/mdn/vibration.json @@ -88,7 +88,7 @@ "version_added": "79" } }, - "title": "Navigator.vibrate()" + "title": "Navigator: vibrate() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/wasm-exception-handling.json b/bikeshed/spec-data/readonly/mdn/wasm-exception-handling.json index 0b21e69dcd..7f00c6b4a0 100644 --- a/bikeshed/spec-data/readonly/mdn/wasm-exception-handling.json +++ b/bikeshed/spec-data/readonly/mdn/wasm-exception-handling.json @@ -8,8 +8,8 @@ ], "filename": "javascript/builtins/WebAssembly/Exception.json", "name": "Exception", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Exception/Exception", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception/Exception", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception/Exception", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception/Exception", "summary": "The WebAssembly.Exception() constructor is used to create a new WebAssembly.Exception.", "support": { "chrome": { @@ -17,7 +17,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { @@ -55,8 +55,8 @@ ], "filename": "javascript/builtins/WebAssembly/Exception.json", "name": "getArg", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Exception/getArg", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception/getArg", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception/getArg", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception/getArg", "summary": "The getArg() prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.", "support": { "chrome": { @@ -64,7 +64,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { @@ -102,8 +102,8 @@ ], "filename": "javascript/builtins/WebAssembly/Exception.json", "name": "is", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Exception/is", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception/is", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception/is", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception/is", "summary": "The is() prototype method of the Exception object can be used to test if the Exception matches a given tag.", "support": { "chrome": { @@ -111,7 +111,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { @@ -149,8 +149,8 @@ ], "filename": "javascript/builtins/WebAssembly/Exception.json", "name": "Exception", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Exception", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Exception", "summary": "The WebAssembly.Exception object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.", "support": { "chrome": { @@ -158,7 +158,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { @@ -196,8 +196,8 @@ ], "filename": "javascript/builtins/WebAssembly/Tag.json", "name": "Tag", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Tag/Tag", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Tag/Tag", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Tag/Tag", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Tag/Tag", "summary": "The WebAssembly.Tag() constructor creates a new WebAssembly.Tag object.", "support": { "chrome": { @@ -205,7 +205,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { @@ -237,26 +237,24 @@ "dom-tag-type": [ { "engines": [ - "blink", - "gecko", "webkit" ], "filename": "javascript/builtins/WebAssembly/Tag.json", "name": "type", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Tag/type", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Tag/type", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Tag/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Tag/type", "summary": "The type() prototype method of the Tag object can be used to get the sequence of data types associated with the tag.", "support": { "chrome": { - "version_added": "95" + "version_added": false }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { - "version_added": "100" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -275,7 +273,7 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "95" + "version_added": false } }, "title": "WebAssembly.Tag.prototype.type()" @@ -290,8 +288,8 @@ ], "filename": "javascript/builtins/WebAssembly/Tag.json", "name": "Tag", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Tag", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Tag", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Tag", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Tag", "summary": "The WebAssembly.Tag object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.", "support": { "chrome": { @@ -299,7 +297,7 @@ }, "chrome_android": "mirror", "deno": { - "version_added": false + "version_added": "1.15" }, "edge": "mirror", "firefox": { diff --git a/bikeshed/spec-data/readonly/mdn/wasm-js-api.json b/bikeshed/spec-data/readonly/mdn/wasm-js-api.json index dc85771ca9..e8b28108d1 100644 --- a/bikeshed/spec-data/readonly/mdn/wasm-js-api.json +++ b/bikeshed/spec-data/readonly/mdn/wasm-js-api.json @@ -8,8 +8,8 @@ ], "filename": "javascript/builtins/WebAssembly/CompileError.json", "name": "CompileError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError/CompileError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError/CompileError", "summary": "The WebAssembly.CompileError() constructor creates a new WebAssembly CompileError object, which indicates an error during WebAssembly decoding or validation.", "support": { "chrome": { @@ -55,8 +55,8 @@ ], "filename": "javascript/builtins/WebAssembly/CompileError.json", "name": "CompileError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/CompileError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/CompileError", "summary": "The WebAssembly.CompileError object indicates an error during WebAssembly decoding or validation.", "support": { "chrome": { @@ -104,8 +104,8 @@ ], "filename": "javascript/builtins/WebAssembly/Global.json", "name": "Global", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Global/Global", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Global/Global", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Global/Global", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Global/Global", "summary": "A WebAssembly.Global() constructor creates a new Global object representing a global variable instance, accessible from both JavaScript and importable/exportable across one or more WebAssembly.Module instances. This allows dynamic linking of multiple modules.", "support": { "chrome": { @@ -155,8 +155,8 @@ ], "filename": "javascript/builtins/WebAssembly/Global.json", "name": "Global", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Global", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Global", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Global", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Global", "summary": "A WebAssembly.Global object represents a global variable instance, accessible from both JavaScript and importable/exportable across one or more WebAssembly.Module instances. This allows dynamic linking of multiple modules.", "support": { "chrome": { @@ -202,8 +202,8 @@ ], "filename": "javascript/builtins/WebAssembly/Instance.json", "name": "Instance", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Instance/Instance", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance/Instance", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance/Instance", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance/Instance", "summary": "The WebAssembly.Instance() constructor creates a new Instance object which is a stateful, executable instance of a WebAssembly.Module.", "support": { "chrome": { @@ -251,8 +251,8 @@ ], "filename": "javascript/builtins/WebAssembly/Instance.json", "name": "exports", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Instance/exports", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance/exports", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance/exports", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance/exports", "summary": "The exports readonly property of the WebAssembly.Instance object prototype returns an object containing as its members all the functions exported from the WebAssembly module instance, to allow them to be accessed and used by JavaScript.", "support": { "chrome": { @@ -300,8 +300,8 @@ ], "filename": "javascript/builtins/WebAssembly/Instance.json", "name": "Instance", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Instance", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance", "summary": "A WebAssembly.Instance object is a stateful, executable instance of a WebAssembly.Module. Instance objects contain all the Exported WebAssembly functions that allow calling into WebAssembly code from JavaScript.", "support": { "chrome": { @@ -349,8 +349,8 @@ ], "filename": "javascript/builtins/WebAssembly/LinkError.json", "name": "LinkError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/LinkError/LinkError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/LinkError/LinkError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError/LinkError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError/LinkError", "summary": "The WebAssembly.LinkError() constructor creates a new WebAssembly LinkError object, which indicates an error during module instantiation (besides traps from the start function).", "support": { "chrome": { @@ -396,8 +396,8 @@ ], "filename": "javascript/builtins/WebAssembly/LinkError.json", "name": "LinkError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/LinkError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/LinkError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/LinkError", "summary": "The WebAssembly.LinkError object indicates an error during module instantiation (besides traps from the start function).", "support": { "chrome": { @@ -445,8 +445,8 @@ ], "filename": "javascript/builtins/WebAssembly/Memory.json", "name": "Memory", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Memory/Memory", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory/Memory", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory/Memory", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory/Memory", "summary": "The WebAssembly.Memory() constructor creates a new Memory object whose buffer property is a resizable ArrayBuffer or SharedArrayBuffer that holds the raw bytes of memory accessed by a WebAssembly.Instance.", "support": { "chrome": { @@ -494,8 +494,8 @@ ], "filename": "javascript/builtins/WebAssembly/Memory.json", "name": "buffer", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Memory/buffer", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory/buffer", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory/buffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory/buffer", "summary": "The read-only buffer prototype property of the WebAssembly.Memory object returns the buffer contained in the memory. Depending on whether or not the memory was constructed with shared: true, the buffer is either an ArrayBuffer or a SharedArrayBuffer.", "support": { "chrome": { @@ -543,8 +543,8 @@ ], "filename": "javascript/builtins/WebAssembly/Memory.json", "name": "grow", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Memory/grow", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory/grow", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory/grow", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory/grow", "summary": "The grow() prototype method of the WebAssembly.Memory object increases the size of the memory instance by a specified number of WebAssembly pages.", "support": { "chrome": { @@ -592,8 +592,8 @@ ], "filename": "javascript/builtins/WebAssembly/Memory.json", "name": "Memory", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Memory", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Memory", "summary": "The WebAssembly.Memory object is a resizable ArrayBuffer or SharedArrayBuffer that holds the raw bytes of memory accessed by a WebAssembly.Instance.", "support": { "chrome": { @@ -641,8 +641,8 @@ ], "filename": "javascript/builtins/WebAssembly/Module.json", "name": "Module", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Module/Module", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module/Module", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/Module", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/Module", "summary": "A WebAssembly.Module() constructor creates a new Module object containing stateless WebAssembly code that has already been compiled by the browser and can be efficiently shared with Workers, and instantiated multiple times.", "support": { "chrome": { @@ -690,8 +690,8 @@ ], "filename": "javascript/builtins/WebAssembly/Module.json", "name": "customSections", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Module/customSections", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module/customSections", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/customSections", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/customSections", "summary": "The WebAssembly.customSections() function returns a copy of the contents of all custom sections in the given module with the given string name.", "support": { "chrome": { @@ -739,8 +739,8 @@ ], "filename": "javascript/builtins/WebAssembly/Module.json", "name": "exports", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Module/exports", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module/exports", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/exports", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/exports", "summary": "The WebAssembly.Module.exports() function returns an array containing descriptions of all the declared exports of the given Module.", "support": { "chrome": { @@ -788,8 +788,8 @@ ], "filename": "javascript/builtins/WebAssembly/Module.json", "name": "imports", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Module/imports", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module/imports", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/imports", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module/imports", "summary": "The WebAssembly.imports() function returns an array containing descriptions of all the declared imports of the given Module.", "support": { "chrome": { @@ -837,8 +837,8 @@ ], "filename": "javascript/builtins/WebAssembly/Module.json", "name": "Module", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Module", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Module", "summary": "A WebAssembly.Module object contains stateless WebAssembly code that has already been compiled by the browser — this can be efficiently shared with Workers, and instantiated multiple times.", "support": { "chrome": { @@ -886,8 +886,8 @@ ], "filename": "javascript/builtins/WebAssembly/RuntimeError.json", "name": "RuntimeError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError/RuntimeError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError/RuntimeError", "summary": "The WebAssembly.RuntimeError() constructor creates a new WebAssembly RuntimeError object — the type that is thrown whenever WebAssembly specifies a trap.", "support": { "chrome": { @@ -933,8 +933,8 @@ ], "filename": "javascript/builtins/WebAssembly/RuntimeError.json", "name": "RuntimeError", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/RuntimeError", "summary": "The WebAssembly.RuntimeError object is the error type that is thrown whenever WebAssembly specifies a trap.", "support": { "chrome": { @@ -982,8 +982,8 @@ ], "filename": "javascript/builtins/WebAssembly/Table.json", "name": "Table", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Table/Table", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/Table", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/Table", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/Table", "summary": "The WebAssembly.Table() constructor creates a new Table object of the given size and element type.", "support": { "chrome": { @@ -1031,8 +1031,8 @@ ], "filename": "javascript/builtins/WebAssembly/Table.json", "name": "get", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Table/get", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/get", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/get", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/get", "summary": "The get() prototype method of the WebAssembly.Table() object retrieves a function reference stored at a given index.", "support": { "chrome": { @@ -1080,8 +1080,8 @@ ], "filename": "javascript/builtins/WebAssembly/Table.json", "name": "grow", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Table/grow", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/grow", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/grow", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/grow", "summary": "The grow() prototype method of the WebAssembly.Table object increases the size of the Table instance by a specified number of elements.", "support": { "chrome": { @@ -1129,8 +1129,8 @@ ], "filename": "javascript/builtins/WebAssembly/Table.json", "name": "length", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Table/length", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/length", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/length", "summary": "The read-only length prototype property of the WebAssembly.Table object returns the length of the table, i.e. the number of elements in the table.", "support": { "chrome": { @@ -1178,8 +1178,8 @@ ], "filename": "javascript/builtins/WebAssembly/Table.json", "name": "set", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Table/set", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/set", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/set", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table/set", "summary": "The set() prototype method of the WebAssembly.Table object mutates a reference stored at a given index to a different value.", "support": { "chrome": { @@ -1227,8 +1227,8 @@ ], "filename": "javascript/builtins/WebAssembly/Table.json", "name": "Table", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/Table", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Table", "summary": "The WebAssembly.Table() object is a JavaScript wrapper object — an array-like structure representing a WebAssembly Table, which stores function references. A table created by JavaScript or in WebAssembly code will be accessible and mutable from both JavaScript and WebAssembly.", "support": { "chrome": { @@ -1276,9 +1276,9 @@ ], "filename": "javascript/builtins/WebAssembly.json", "name": "compile", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/compile", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/compile", - "summary": "The WebAssembly.compile() function compiles WebAssembly binary code into a WebAssembly.Module object. This function is useful if it is necessary to a compile a module before it can be instantiated (otherwise, the WebAssembly.instantiate() function should be used).", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/compile", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/compile", + "summary": "The WebAssembly.compile() function compiles WebAssembly binary code into a WebAssembly.Module object. This function is useful if it is necessary to compile a module before it can be instantiated (otherwise, the WebAssembly.instantiate() function should be used).", "support": { "chrome": { "version_added": "57" @@ -1325,8 +1325,8 @@ ], "filename": "javascript/builtins/WebAssembly.json", "name": "instantiate", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/instantiate", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiate", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/instantiate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/instantiate", "summary": "The WebAssembly.instantiate() function allows you to compile and instantiate WebAssembly code. This function has two overloads:", "support": { "chrome": { @@ -1374,9 +1374,9 @@ ], "filename": "javascript/builtins/WebAssembly.json", "name": "validate", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/validate", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/validate", - "summary": "The WebAssembly.validate() function validates a given typed array of WebAssembly binary code, returning whether the bytes form a valid wasm module (true) or not (false).", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/validate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/validate", + "summary": "The WebAssembly.validate() function validates a given typed array of WebAssembly binary code, returning whether the bytes form a valid Wasm module (true) or not (false).", "support": { "chrome": { "version_added": "57" @@ -1423,8 +1423,8 @@ ], "filename": "javascript/builtins/WebAssembly.json", "name": "WebAssembly", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface", "summary": "The WebAssembly JavaScript object acts as the namespace for all WebAssembly-related functionality.", "support": { "chrome": { diff --git a/bikeshed/spec-data/readonly/mdn/wasm-web-embedding.json b/bikeshed/spec-data/readonly/mdn/wasm-web-embedding.json index 782e2f000c..4affd8a9cf 100644 --- a/bikeshed/spec-data/readonly/mdn/wasm-web-embedding.json +++ b/bikeshed/spec-data/readonly/mdn/wasm-web-embedding.json @@ -8,9 +8,9 @@ ], "filename": "javascript/builtins/WebAssembly.json", "name": "compileStreaming", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/compileStreaming", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/compileStreaming", - "summary": "The WebAssembly.compileStreaming() function compiles a WebAssembly.Module directly from a streamed underlying source. This function is useful if it is necessary to a compile a module before it can be instantiated (otherwise, the WebAssembly.instantiateStreaming() function should be used).", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/compileStreaming", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/compileStreaming", + "summary": "The WebAssembly.compileStreaming() function compiles a WebAssembly.Module directly from a streamed underlying source. This function is useful if it is necessary to compile a module before it can be instantiated (otherwise, the WebAssembly.instantiateStreaming() function should be used).", "support": { "chrome": { "version_added": "61" @@ -59,9 +59,9 @@ ], "filename": "javascript/builtins/WebAssembly.json", "name": "instantiateStreaming", - "slug": "JavaScript/Reference/Global_Objects/WebAssembly/instantiateStreaming", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiateStreaming", - "summary": "The WebAssembly.instantiateStreaming() function compiles and instantiates a WebAssembly module directly from a streamed underlying source. This is the most efficient, optimized way to load wasm code.", + "slug": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/instantiateStreaming", + "mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/instantiateStreaming", + "summary": "The WebAssembly.instantiateStreaming() function compiles and instantiates a WebAssembly module directly from a streamed underlying source. This is the most efficient, optimized way to load Wasm code.", "support": { "chrome": { "version_added": "61" diff --git a/bikeshed/spec-data/readonly/mdn/web-animations-2.json b/bikeshed/spec-data/readonly/mdn/web-animations-2.json index 567663d184..14603458d8 100644 --- a/bikeshed/spec-data/readonly/mdn/web-animations-2.json +++ b/bikeshed/spec-data/readonly/mdn/web-animations-2.json @@ -2,7 +2,8 @@ "dom-keyframeeffect-iterationcomposite": [ { "engines": [ - "gecko" + "gecko", + "webkit" ], "filename": "api/KeyframeEffect.json", "name": "iterationComposite", @@ -26,7 +27,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -35,7 +36,7 @@ "version_added": false } }, - "title": "KeyframeEffect.iterationComposite" + "title": "KeyframeEffect: iterationComposite property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/web-animations.json b/bikeshed/spec-data/readonly/mdn/web-animations.json index 5bd04292d1..cb5f0ffaee 100644 --- a/bikeshed/spec-data/readonly/mdn/web-animations.json +++ b/bikeshed/spec-data/readonly/mdn/web-animations.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "Animation()" + "title": "Animation: Animation() constructor" } ], "dom-animation-cancel": [ @@ -78,7 +78,7 @@ "version_added": "79" } }, - "title": "Animation.cancel()" + "title": "Animation: cancel() method" } ], "dom-animation-oncancel": [ @@ -174,7 +174,7 @@ "name": "commitStyles", "slug": "API/Animation/commitStyles", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Animation/commitStyles", - "summary": "The commitStyles() method of the Web Animations API's Animation interface commits the end styling state of an animation to the element being animated, even after that animation has been removed. It will cause the end styling state to be written to the element being animated, in the form of properties inside a style attribute.", + "summary": "The commitStyles() method of the Web Animations API's Animation interface writes the computed values of the animation's current styles into its target element's style attribute. commitStyles() works even if the animation has been automatically removed.", "support": { "chrome": { "version_added": "84" @@ -201,7 +201,7 @@ "version_added": "84" } }, - "title": "Animation.commitStyles()" + "title": "Animation: commitStyles() method" } ], "dom-animation-currenttime": [ @@ -242,7 +242,7 @@ "version_added": "79" } }, - "title": "Animation.currentTime" + "title": "Animation: currentTime property" } ], "dom-animation-effect": [ @@ -283,7 +283,7 @@ "version_added": "79" } }, - "title": "Animation.effect" + "title": "Animation: effect property" } ], "dom-animation-finish": [ @@ -324,7 +324,7 @@ "version_added": "79" } }, - "title": "Animation.finish()" + "title": "Animation: finish() method" } ], "dom-animation-onfinish": [ @@ -447,7 +447,7 @@ "version_added": "84" } }, - "title": "Animation.finished" + "title": "Animation: finished property" } ], "dom-animation-id": [ @@ -488,7 +488,7 @@ "version_added": "79" } }, - "title": "Animation.id" + "title": "Animation: id property" } ], "dom-animation-pause": [ @@ -529,7 +529,7 @@ "version_added": "79" } }, - "title": "Animation.pause()" + "title": "Animation: pause() method" } ], "dom-animation-pending": [ @@ -571,7 +571,7 @@ "version_added": "79" } }, - "title": "Animation.pending" + "title": "Animation: pending property" } ], "dom-animation-persist": [ @@ -585,7 +585,7 @@ "name": "persist", "slug": "API/Animation/persist", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Animation/persist", - "summary": "The persist() method of the Web Animations API's Animation interface explicitly persists an animation, when it would otherwise be removed due to the browser's Automatically removing filling animations behavior.", + "summary": "The persist() method of the Web Animations API's Animation interface explicitly persists an animation, preventing it from being automatically removed when it is replaced by another animation.", "support": { "chrome": { "version_added": "84" @@ -612,7 +612,7 @@ "version_added": "84" } }, - "title": "Animation.persist()" + "title": "Animation: persist() method" } ], "dom-animation-play": [ @@ -653,7 +653,7 @@ "version_added": "79" } }, - "title": "Animation.play()" + "title": "Animation: play() method" } ], "dom-animation-playbackrate": [ @@ -694,7 +694,7 @@ "version_added": "79" } }, - "title": "Animation.playbackRate" + "title": "Animation: playbackRate property" } ], "dom-animation-playstate": [ @@ -708,7 +708,7 @@ "name": "playState", "slug": "API/Animation/playState", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Animation/playState", - "summary": "The Animation.playState property of the Web Animations API returns and sets an enumerated value describing the playback state of an animation.", + "summary": "The read-only Animation.playState property of the Web Animations API returns an enumerated value describing the playback state of an animation.", "support": { "chrome": { "version_added": "75", @@ -746,7 +746,7 @@ "notes": "Before Chrome 50/Opera 37, this property returned <code>idle</code> for an animation that had not yet started. Starting with Chrome 50/Opera 37, it shows <code>paused</code>." } }, - "title": "Animation.playState" + "title": "Animation: playState property" } ], "dom-animation-ready": [ @@ -787,7 +787,7 @@ "version_added": "84" } }, - "title": "Animation.ready" + "title": "Animation: ready property" } ], "dom-animation-onremove": [ @@ -801,7 +801,7 @@ "name": "remove_event", "slug": "API/Animation/remove_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Animation/remove_event", - "summary": "The remove event of the Animation interface fires when the animation is removed (i.e., put into an active replace state).", + "summary": "The remove event of the Animation interface fires when the animation is automatically removed by the browser.", "support": { "chrome": { "version_added": "84" @@ -842,7 +842,7 @@ "name": "remove_event", "slug": "API/Animation/remove_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Animation/remove_event", - "summary": "The remove event of the Animation interface fires when the animation is removed (i.e., put into an active replace state).", + "summary": "The remove event of the Animation interface fires when the animation is automatically removed by the browser.", "support": { "chrome": { "version_added": "84" @@ -883,7 +883,7 @@ "name": "replaceState", "slug": "API/Animation/replaceState", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Animation/replaceState", - "summary": "The read-only Animation.replaceState property of the Web Animations API returns the replace state of the animation. This will be active if the animation has been removed, or persisted if Animation.persist() has been invoked on it.", + "summary": "The read-only Animation.replaceState property of the Web Animations API indicates whether the animation has been removed by the browser automatically after being replaced by another animation.", "support": { "chrome": { "version_added": "84" @@ -910,7 +910,7 @@ "version_added": "84" } }, - "title": "Animation.replaceState" + "title": "Animation: replaceState property" } ], "dom-animation-reverse": [ @@ -951,7 +951,7 @@ "version_added": "79" } }, - "title": "Animation.reverse()" + "title": "Animation: reverse() method" } ], "dom-animation-starttime": [ @@ -992,7 +992,7 @@ "version_added": "79" } }, - "title": "Animation.startTime" + "title": "Animation: startTime property" } ], "dom-animation-timeline": [ @@ -1035,7 +1035,7 @@ "version_added": "84" } }, - "title": "Animation.timeline" + "title": "Animation: timeline property" } ], "dom-animation-updateplaybackrate": [ @@ -1076,7 +1076,7 @@ "version_added": "79" } }, - "title": "Animation.updatePlaybackRate()" + "title": "Animation: updatePlaybackRate() method" } ], "the-animation-interface": [ @@ -1158,7 +1158,7 @@ "version_added": "79" } }, - "title": "AnimationEffect.getComputedTiming()" + "title": "AnimationEffect: getComputedTiming() method" } ], "dom-animationeffect-gettiming": [ @@ -1199,7 +1199,7 @@ "version_added": "79" } }, - "title": "AnimationEffect.getTiming()" + "title": "AnimationEffect: getTiming() method" } ], "dom-animationeffect-updatetiming": [ @@ -1240,7 +1240,7 @@ "version_added": "79" } }, - "title": "AnimationEffect.updateTiming()" + "title": "AnimationEffect: updateTiming() method" } ], "the-animationeffect-interface": [ @@ -1254,7 +1254,7 @@ "name": "AnimationEffect", "slug": "API/AnimationEffect", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect", - "summary": "The AnimationEffect interface of the Web Animations API defines current and future animation effects like KeyframeEffect, which can be passed to Animation objects for playing, and KeyframeEffect (which is used by CSS Animations and Transitions).", + "summary": "The AnimationEffect interface of the Web Animations API is an interface representing animation effects.", "support": { "chrome": { "version_added": "75" @@ -1329,7 +1329,7 @@ "version_added": "84" } }, - "title": "AnimationPlaybackEvent()" + "title": "AnimationPlaybackEvent: AnimationPlaybackEvent() constructor" } ], "dom-animationplaybackevent-currenttime": [ @@ -1370,7 +1370,7 @@ "version_added": "84" } }, - "title": "AnimationPlaybackEvent.currentTime" + "title": "AnimationPlaybackEvent: currentTime property" } ], "dom-animationplaybackevent-timelinetime": [ @@ -1411,7 +1411,7 @@ "version_added": "84" } }, - "title": "AnimationPlaybackEvent.timelineTime" + "title": "AnimationPlaybackEvent: timelineTime property" } ], "the-animationplaybackevent-interface": [ @@ -1493,7 +1493,7 @@ "version_added": "84" } }, - "title": "AnimationTimeline.currentTime" + "title": "AnimationTimeline: currentTime property" } ], "the-animationtimeline-interface": [ @@ -1507,7 +1507,7 @@ "name": "AnimationTimeline", "slug": "API/AnimationTimeline", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AnimationTimeline", - "summary": "The AnimationTimeline interface of the Web Animations API represents the timeline of an animation. This interface exists to define timeline features (inherited by DocumentTimeline and future timeline types) and is not itself directly used by developers. Anywhere you see AnimationTimeline, you should use DocumentTimeline or any other timeline type instead.", + "summary": "The AnimationTimeline interface of the Web Animations API represents the timeline of an animation. This interface exists to define timeline features, inherited by other timeline types:", "support": { "chrome": { "version_added": "84" @@ -1582,7 +1582,7 @@ "version_added": "84" } }, - "title": "Document.getAnimations()" + "title": "Document: getAnimations() method" }, { "engines": [ @@ -1621,7 +1621,7 @@ "version_added": "84" } }, - "title": "ShadowRoot.getAnimations()" + "title": "ShadowRoot: getAnimations() method" } ], "dom-document-timeline": [ @@ -1635,7 +1635,7 @@ "name": "timeline", "slug": "API/Document/timeline", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document/timeline", - "summary": "The timeline readonly property of the Document interface represents the default timeline of the current document. This timeline is a special instance of DocumentTimeline that is automatically created on page load.", + "summary": "The timeline readonly property of the Document interface represents the default timeline of the current document. This timeline is a special instance of DocumentTimeline.", "support": { "chrome": { "version_added": "84" @@ -1662,7 +1662,7 @@ "version_added": "84" } }, - "title": "Document.timeline" + "title": "Document: timeline property" } ], "dom-documenttimeline-documenttimeline": [ @@ -1703,7 +1703,7 @@ "version_added": "84" } }, - "title": "DocumentTimeline()" + "title": "DocumentTimeline: DocumentTimeline() constructor" } ], "the-documenttimeline-interface": [ @@ -1785,7 +1785,7 @@ "version_added": "79" } }, - "title": "Element.animate()" + "title": "Element: animate() method" } ], "dom-animatable-getanimations": [ @@ -1826,7 +1826,7 @@ "version_added": "84" } }, - "title": "Element.getAnimations()" + "title": "Element: getAnimations() method" } ], "dom-keyframeeffect-keyframeeffect": [ @@ -1867,7 +1867,7 @@ "version_added": "79" } }, - "title": "KeyframeEffect()" + "title": "KeyframeEffect: KeyframeEffect() constructor" } ], "dom-keyframeeffect-composite": [ @@ -1910,7 +1910,7 @@ "version_added": "84" } }, - "title": "KeyframeEffect.composite" + "title": "KeyframeEffect: composite property" } ], "dom-keyframeeffect-getkeyframes": [ @@ -1953,7 +1953,50 @@ "version_added": "84" } }, - "title": "KeyframeEffect.getKeyframes()" + "title": "KeyframeEffect: getKeyframes() method" + } + ], + "dom-keyframeeffect-pseudoelement": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/KeyframeEffect.json", + "name": "pseudoElement", + "slug": "API/KeyframeEffect/pseudoElement", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/KeyframeEffect/pseudoElement", + "summary": "The pseudoElement property of a KeyframeEffect interface is a string representing the pseudo-element being animated. It may be null for animations that do not target a pseudo-element. It performs as both a getter and a setter, except with animations and transitions generated by CSS.", + "support": { + "chrome": { + "version_added": "84" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "75" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": "71" + }, + "opera_android": "mirror", + "safari": { + "version_added": "14" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "84" + } + }, + "title": "KeyframeEffect: pseudoElement property" } ], "dom-keyframeeffect-setkeyframes": [ @@ -1996,7 +2039,7 @@ "version_added": "84" } }, - "title": "KeyframeEffect.setKeyframes()" + "title": "KeyframeEffect: setKeyframes() method" } ], "dom-keyframeeffect-target": [ @@ -2037,7 +2080,7 @@ "version_added": "79" } }, - "title": "KeyframeEffect.target" + "title": "KeyframeEffect: target property" } ], "the-keyframeeffect-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/web-app-launch.json b/bikeshed/spec-data/readonly/mdn/web-app-launch.json new file mode 100644 index 0000000000..636833516e --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/web-app-launch.json @@ -0,0 +1,41 @@ +{ + "launch_handler-member": [ + { + "engines": [ + "blink" + ], + "filename": "html/manifest/launch_handler.json", + "name": "launch_handler", + "slug": "Manifest/launch_handler", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/Manifest/launch_handler", + "summary": "The launch_handler member defines values that control the launch of a web application. Currently it can only contain a single value, client_mode, which specifies the context in which the app should be loaded when launched. For example, in an existing web app client containing an instance of the app, or in a new web app client. This leaves scope for more launch_handler values to be defined in the future.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "launch_handler" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/web-bluetooth.json b/bikeshed/spec-data/readonly/mdn/web-bluetooth.json index ed2140d368..0f1953ef02 100644 --- a/bikeshed/spec-data/readonly/mdn/web-bluetooth.json +++ b/bikeshed/spec-data/readonly/mdn/web-bluetooth.json @@ -13,7 +13,9 @@ "chrome": { "version_added": "56" }, - "chrome_android": "mirror", + "chrome_android": { + "version_added": false + }, "edge": "mirror", "firefox": { "version_added": false @@ -30,9 +32,7 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -54,7 +54,9 @@ "chrome": { "version_added": "56" }, - "chrome_android": "mirror", + "chrome_android": { + "version_added": false + }, "edge": "mirror", "firefox": { "version_added": false @@ -71,9 +73,7 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } @@ -93,7 +93,7 @@ "summary": "The getAvailability() method of the Bluetooth interface returns true if the device has a Bluetooth adapter, and false otherwise (unless the user has configured the browser to not expose a real value).", "support": { "chrome": { - "version_added": "56" + "version_added": "78" }, "chrome_android": "mirror", "edge": "mirror", @@ -119,7 +119,7 @@ "version_added": "79" } }, - "title": "Bluetooth.getAvailability()" + "title": "Bluetooth: getAvailability() method" } ], "dom-bluetooth-getdevices": [ @@ -175,48 +175,7 @@ ] } }, - "title": "Bluetooth.getDevices()" - } - ], - "dom-bluetooth-referringdevice": [ - { - "engines": [ - "blink" - ], - "filename": "api/Bluetooth.json", - "name": "referringDevice", - "slug": "API/Bluetooth/referringDevice", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Bluetooth/referringDevice", - "summary": "The Bluetooth.referringDevice attribute of the Bluetooth interface returns a BluetoothDevice if the current document was opened in response to an instruction sent by this device and null otherwise.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, - "edge_blink": { - "version_added": "79" - } - }, - "title": "Bluetooth.referringDevice" + "title": "Bluetooth: getDevices() method" } ], "dom-bluetooth-requestdevice": [ @@ -257,7 +216,7 @@ "version_added": "79" } }, - "title": "Bluetooth.requestDevice()" + "title": "Bluetooth: requestDevice() method" } ], "bluetooth": [ @@ -377,7 +336,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.authenticatedSignedWrites" + "title": "BluetoothCharacteristicProperties: authenticatedSignedWrites property" } ], "dom-bluetoothcharacteristicproperties-broadcast": [ @@ -418,7 +377,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.broadcast" + "title": "BluetoothCharacteristicProperties: broadcast property" } ], "dom-bluetoothcharacteristicproperties-indicate": [ @@ -459,7 +418,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.indicate" + "title": "BluetoothCharacteristicProperties: indicate property" } ], "dom-bluetoothcharacteristicproperties-notify": [ @@ -500,7 +459,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.notify" + "title": "BluetoothCharacteristicProperties: notify property" } ], "dom-bluetoothcharacteristicproperties-read": [ @@ -541,7 +500,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.read" + "title": "BluetoothCharacteristicProperties: read property" } ], "dom-bluetoothcharacteristicproperties-reliablewrite": [ @@ -582,7 +541,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.reliableWrite" + "title": "BluetoothCharacteristicProperties: reliableWrite property" } ], "dom-bluetoothcharacteristicproperties-writableauxiliaries": [ @@ -623,7 +582,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.writableAuxiliaries" + "title": "BluetoothCharacteristicProperties: writableAuxiliaries property" } ], "dom-bluetoothcharacteristicproperties-write": [ @@ -664,7 +623,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.write" + "title": "BluetoothCharacteristicProperties: write property" } ], "dom-bluetoothcharacteristicproperties-writewithoutresponse": [ @@ -705,7 +664,7 @@ "version_added": "79" } }, - "title": "BluetoothCharacteristicProperties.writeWithoutResponse" + "title": "BluetoothCharacteristicProperties: writeWithoutResponse property" } ], "characteristicproperties-interface": [ @@ -825,7 +784,7 @@ "version_added": "79" } }, - "title": "BluetoothDevice.gatt" + "title": "BluetoothDevice: gatt property" } ], "dom-bluetoothdevice-id": [ @@ -866,7 +825,7 @@ "version_added": "79" } }, - "title": "BluetoothDevice.id" + "title": "BluetoothDevice: id property" } ], "dom-bluetoothdevice-name": [ @@ -907,7 +866,7 @@ "version_added": "79" } }, - "title": "BluetoothDevice.name" + "title": "BluetoothDevice: name property" } ], "bluetoothdevice-interface": [ @@ -1001,7 +960,7 @@ "summary": "The BluetoothRemoteGATTCharacteristic.getDescriptor() method returns a Promise that resolves to the first BluetoothRemoteGATTDescriptor for a given descriptor UUID.", "support": { "chrome": { - "version_added": "56" + "version_added": "57" }, "chrome_android": "mirror", "edge": "mirror", @@ -1027,7 +986,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.getDescriptor()" + "title": "BluetoothRemoteGATTCharacteristic: getDescriptor() method" } ], "dom-bluetoothremotegattcharacteristic-getdescriptors": [ @@ -1042,7 +1001,7 @@ "summary": "The BluetoothRemoteGATTCharacteristic.getDescriptors() method returns a Promise that resolves to an Array of all BluetoothRemoteGATTDescriptor objects for a given descriptor UUID.", "support": { "chrome": { - "version_added": "56" + "version_added": "57" }, "chrome_android": "mirror", "edge": "mirror", @@ -1068,7 +1027,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.getDescriptors()" + "title": "BluetoothRemoteGATTCharacteristic: getDescriptors() method" } ], "dom-bluetoothremotegattcharacteristic-properties": [ @@ -1109,7 +1068,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.properties" + "title": "BluetoothRemoteGATTCharacteristic: properties property" } ], "dom-bluetoothremotegattcharacteristic-readvalue": [ @@ -1150,7 +1109,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.readValue()" + "title": "BluetoothRemoteGATTCharacteristic: readValue() method" } ], "dom-bluetoothremotegattcharacteristic-service": [ @@ -1191,7 +1150,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.service" + "title": "BluetoothRemoteGATTCharacteristic: service property" } ], "dom-bluetoothremotegattcharacteristic-startnotifications": [ @@ -1232,7 +1191,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.startNotifications()" + "title": "BluetoothRemoteGATTCharacteristic: startNotifications() method" } ], "dom-bluetoothremotegattcharacteristic-stopnotifications": [ @@ -1273,7 +1232,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.stopNotifications()" + "title": "BluetoothRemoteGATTCharacteristic: stopNotifications() method" } ], "dom-bluetoothremotegattcharacteristic-uuid": [ @@ -1314,7 +1273,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.uuid" + "title": "BluetoothRemoteGATTCharacteristic: uuid property" } ], "dom-bluetoothremotegattcharacteristic-value": [ @@ -1355,7 +1314,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTCharacteristic.value" + "title": "BluetoothRemoteGATTCharacteristic: value property" } ], "dom-bluetoothremotegattcharacteristic-writevaluewithoutresponse": [ @@ -1396,7 +1355,7 @@ "version_added": "85" } }, - "title": "BluetoothRemoteGATTCharacteristic.writeValueWithoutResponse()" + "title": "BluetoothRemoteGATTCharacteristic: writeValueWithoutResponse() method" } ], "dom-bluetoothremotegattcharacteristic-writevaluewithresponse": [ @@ -1437,7 +1396,7 @@ "version_added": "85" } }, - "title": "BluetoothRemoteGATTCharacteristic.writeValueWithResponse()" + "title": "BluetoothRemoteGATTCharacteristic: writeValueWithResponse() method" } ], "bluetoothgattcharacteristic-interface": [ @@ -1559,7 +1518,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTDescriptor.characteristic" + "title": "BluetoothRemoteGATTDescriptor: characteristic property" } ], "dom-bluetoothremotegattdescriptor-readvalue": [ @@ -1602,7 +1561,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTDescriptor.readValue()" + "title": "BluetoothRemoteGATTDescriptor: readValue() method" } ], "dom-bluetoothremotegattdescriptor-uuid": [ @@ -1645,7 +1604,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTDescriptor.uuid" + "title": "BluetoothRemoteGATTDescriptor: uuid property" } ], "dom-bluetoothremotegattdescriptor-value": [ @@ -1688,7 +1647,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTDescriptor.value" + "title": "BluetoothRemoteGATTDescriptor: value property" } ], "dom-bluetoothremotegattdescriptor-writevalue": [ @@ -1731,7 +1690,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTDescriptor.writeValue()" + "title": "BluetoothRemoteGATTDescriptor: writeValue() method" } ], "bluetoothgattdescriptor-interface": [ @@ -1853,7 +1812,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTServer.connect()" + "title": "BluetoothRemoteGATTServer: connect() method" } ], "dom-bluetoothremotegattserver-connected": [ @@ -1894,7 +1853,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTServer.connected" + "title": "BluetoothRemoteGATTServer: connected property" } ], "dom-bluetoothremotegattserver-device": [ @@ -1935,7 +1894,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTServer.device" + "title": "BluetoothRemoteGATTServer: device property" } ], "dom-bluetoothremotegattserver-disconnect": [ @@ -1976,7 +1935,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTServer.disconnect()" + "title": "BluetoothRemoteGATTServer: disconnect() method" } ], "dom-bluetoothremotegattserver-getprimaryservice": [ @@ -1988,7 +1947,7 @@ "name": "getPrimaryService", "slug": "API/BluetoothRemoteGATTServer/getPrimaryService", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTServer/getPrimaryService", - "summary": "The BluetoothRemoteGATTServer.getPrimaryService() method returns a promise to the primary BluetoothRemoteGATTService offered by the Bluetooth device for a specified BluetoothServiceUUID.", + "summary": "The BluetoothRemoteGATTServer.getPrimaryService() method returns a promise to the primary BluetoothRemoteGATTService offered by the Bluetooth device for a specified bluetooth service UUID.", "support": { "chrome": { "version_added": "56" @@ -2017,7 +1976,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTServer.getPrimaryService()" + "title": "BluetoothRemoteGATTServer: getPrimaryService() method" } ], "dom-bluetoothremotegattserver-getprimaryservices": [ @@ -2058,7 +2017,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTServer.getPrimaryServices()" + "title": "BluetoothRemoteGATTServer: getPrimaryServices() method" } ], "bluetoothgattremoteserver-interface": [ @@ -2178,7 +2137,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTService.device" + "title": "BluetoothRemoteGATTService: device property" } ], "dom-bluetoothremotegattservice-getcharacteristic": [ @@ -2219,7 +2178,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTService.getCharacteristic()" + "title": "BluetoothRemoteGATTService: getCharacteristic() method" } ], "dom-bluetoothremotegattservice-getcharacteristics": [ @@ -2260,7 +2219,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTService.getCharacteristics()" + "title": "BluetoothRemoteGATTService: getCharacteristics() method" } ], "dom-bluetoothremotegattservice-isprimary": [ @@ -2301,7 +2260,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTService.isPrimary" + "title": "BluetoothRemoteGATTService: isPrimary property" } ], "dom-bluetoothremotegattservice-uuid": [ @@ -2342,7 +2301,7 @@ "version_added": "79" } }, - "title": "BluetoothRemoteGATTService.uuid" + "title": "BluetoothRemoteGATTService: uuid property" } ], "bluetoothgattservice-interface": [ @@ -2430,10 +2389,10 @@ "blink" ], "filename": "api/BluetoothUUID.json", - "name": "canonicalUUID", - "slug": "API/BluetoothUUID/canonicalUUID", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/canonicalUUID", - "summary": "The canonicalUUID() method of the BluetoothUUID interface returns the 128-bit UUID when passed a 16- or 32-bit UUID alias.", + "name": "canonicalUUID_static", + "slug": "API/BluetoothUUID/canonicalUUID_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/canonicalUUID_static", + "summary": "The canonicalUUID() static method of the BluetoothUUID interface returns the 128-bit UUID when passed a 16- or 32-bit UUID alias.", "support": { "chrome": { "version_added": "56" @@ -2462,7 +2421,7 @@ "version_added": "79" } }, - "title": "BluetoothUUID.canonicalUUID()" + "title": "BluetoothUUID: canonicalUUID() static method" } ], "dom-bluetoothuuid-getcharacteristic": [ @@ -2471,10 +2430,10 @@ "blink" ], "filename": "api/BluetoothUUID.json", - "name": "getCharacteristic", - "slug": "API/BluetoothUUID/getCharacteristic", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getCharacteristic", - "summary": "The getCharacteristic() method of the BluetoothUUID interface returns a UUID representing a registered characteristic when passed a name or the 16- or 32-bit UUID alias.", + "name": "getCharacteristic_static", + "slug": "API/BluetoothUUID/getCharacteristic_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getCharacteristic_static", + "summary": "The getCharacteristic() static method of the BluetoothUUID interface returns a UUID representing a registered characteristic when passed a name or the 16- or 32-bit UUID alias.", "support": { "chrome": { "version_added": "56" @@ -2503,7 +2462,7 @@ "version_added": "79" } }, - "title": "BluetoothUUID.getCharacteristic()" + "title": "BluetoothUUID: getCharacteristic() static method" } ], "dom-bluetoothuuid-getdescriptor": [ @@ -2512,10 +2471,10 @@ "blink" ], "filename": "api/BluetoothUUID.json", - "name": "getDescriptor", - "slug": "API/BluetoothUUID/getDescriptor", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getDescriptor", - "summary": "The getDescriptor() method of the BluetoothUUID interface returns a UUID representing a registered descriptor when passed a name or the 16- or 32-bit UUID alias.", + "name": "getDescriptor_static", + "slug": "API/BluetoothUUID/getDescriptor_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getDescriptor_static", + "summary": "The getDescriptor() static method of the BluetoothUUID interface returns a UUID representing a registered descriptor when passed a name or the 16- or 32-bit UUID alias.", "support": { "chrome": { "version_added": "56" @@ -2544,7 +2503,7 @@ "version_added": "79" } }, - "title": "BluetoothUUID.getDescriptor()" + "title": "BluetoothUUID: getDescriptor() static method" } ], "dom-bluetoothuuid-getservice": [ @@ -2553,10 +2512,10 @@ "blink" ], "filename": "api/BluetoothUUID.json", - "name": "getService", - "slug": "API/BluetoothUUID/getService", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getService", - "summary": "The getService() method of the BluetoothUUID interface returns a UUID representing a registered service when passed a name or the 16- or 32-bit UUID alias.", + "name": "getService_static", + "slug": "API/BluetoothUUID/getService_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getService_static", + "summary": "The getService() static method of the BluetoothUUID interface returns a UUID representing a registered service when passed a name or the 16- or 32-bit UUID alias.", "support": { "chrome": { "version_added": "56" @@ -2585,7 +2544,7 @@ "version_added": "79" } }, - "title": "BluetoothUUID.getService()" + "title": "BluetoothUUID: getService() static method" } ], "bluetoothuuid": [ diff --git a/bikeshed/spec-data/readonly/mdn/web-locks.json b/bikeshed/spec-data/readonly/mdn/web-locks.json index b504d55473..f1f1adb66e 100644 --- a/bikeshed/spec-data/readonly/mdn/web-locks.json +++ b/bikeshed/spec-data/readonly/mdn/web-locks.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "Locks.mode" + "title": "Locks: mode property" } ], "dom-lock-name": [ @@ -78,7 +78,7 @@ "version_added": "79" } }, - "title": "Locks.name" + "title": "Locks: name property" } ], "api-lock": [ @@ -160,7 +160,7 @@ "version_added": "79" } }, - "title": "LockManager.query()" + "title": "LockManager: query() method" } ], "api-lock-manager-request": [ @@ -201,7 +201,7 @@ "version_added": "79" } }, - "title": "LockManager.request()" + "title": "LockManager: request() method" } ], "api-lock-manager": [ @@ -283,7 +283,49 @@ "version_added": "79" } }, - "title": "Navigator.locks" + "title": "Navigator: locks property" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/WorkerNavigator.json", + "name": "locks", + "slug": "API/WorkerNavigator/locks", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/locks", + "summary": "The locks read-only property of the WorkerNavigator interface returns a LockManager object which provides methods for requesting a new Lock object and querying for an existing Lock object.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "deno": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "96" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "WorkerNavigator: locks property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/web-nfc.json b/bikeshed/spec-data/readonly/mdn/web-nfc.json index 4f703ad4e5..ebddd87a39 100644 --- a/bikeshed/spec-data/readonly/mdn/web-nfc.json +++ b/bikeshed/spec-data/readonly/mdn/web-nfc.json @@ -37,7 +37,7 @@ "version_added": false } }, - "title": "NDEFMessage()" + "title": "NDEFMessage: NDEFMessage() constructor" } ], "dom-ndefmessage-records": [ @@ -78,7 +78,7 @@ "version_added": false } }, - "title": "NDEFMessage.records" + "title": "NDEFMessage: records property" } ], "dom-ndefmessage": [ @@ -160,7 +160,7 @@ "version_added": false } }, - "title": "NDEFReader()" + "title": "NDEFReader: NDEFReader() constructor" } ], "dom-ndefreader-onreading": [ @@ -254,7 +254,7 @@ "name": "scan", "slug": "API/NDEFReader/scan", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/NDEFReader/scan", - "summary": "The scan() method of the NDEFReader interface activates a reading device and returns a Promise that either resolves when an NFC tag is read or rejects if a hardware or permission error is encountered. This method triggers a permission prompt if the \"nfc\" permission has not been previously granted.", + "summary": "The scan() method of the NDEFReader interface activates a reading device and returns a Promise that either resolves when an NFC tag read operation is scheduled or rejects if a hardware or permission error is encountered. This method triggers a permission prompt if the \"nfc\" permission has not been previously granted.", "support": { "chrome": { "version_added": false @@ -283,7 +283,7 @@ "version_added": false } }, - "title": "NDEFReader.scan()" + "title": "NDEFReader: scan() method" } ], "dom-ndefreader-write": [ @@ -324,7 +324,7 @@ "version_added": false } }, - "title": "NDEFReader.write()" + "title": "NDEFReader: write() method" } ], "the-ndefreader-object": [ @@ -406,7 +406,7 @@ "version_added": false } }, - "title": "NDEFReadingEvent()" + "title": "NDEFReadingEvent: NDEFReadingEvent() constructor" } ], "dom-ndefreadingevent-message": [ @@ -447,7 +447,7 @@ "version_added": false } }, - "title": "NDEFReadingEvent.message" + "title": "NDEFReadingEvent: message property" } ], "dom-ndefreadingevent-serialnumber": [ @@ -488,7 +488,7 @@ "version_added": false } }, - "title": "NDEFReadingEvent.serialNumber" + "title": "NDEFReadingEvent: serialNumber property" } ], "dom-ndefreadingevent": [ @@ -570,7 +570,7 @@ "version_added": false } }, - "title": "NDEFRecord()" + "title": "NDEFRecord: NDEFRecord() constructor" } ], "dom-ndefrecord-data": [ @@ -611,7 +611,7 @@ "version_added": false } }, - "title": "NDEFRecord.data" + "title": "NDEFRecord: data property" } ], "dom-ndefrecord-encoding": [ @@ -652,7 +652,7 @@ "version_added": false } }, - "title": "NDEFRecord.encoding" + "title": "NDEFRecord: encoding property" } ], "dom-ndefrecord-id": [ @@ -693,7 +693,7 @@ "version_added": false } }, - "title": "NDEFRecord.id" + "title": "NDEFRecord: id property" } ], "dom-ndefrecord-lang": [ @@ -734,7 +734,7 @@ "version_added": false } }, - "title": "NDEFRecord.lang" + "title": "NDEFRecord: lang property" } ], "dom-ndefrecord-mediatype": [ @@ -775,7 +775,7 @@ "version_added": false } }, - "title": "NDEFRecord.mediaType" + "title": "NDEFRecord: mediaType property" } ], "dom-ndefrecord-recordtype": [ @@ -816,7 +816,7 @@ "version_added": false } }, - "title": "NDEFRecord.recordType" + "title": "NDEFRecord: recordType property" } ], "dom-ndefrecord-torecords": [ @@ -857,7 +857,7 @@ "version_added": false } }, - "title": "NDEFRecord.toRecords()" + "title": "NDEFRecord: toRecords() method" } ], "dom-ndefrecord": [ diff --git a/bikeshed/spec-data/readonly/mdn/web-otp.json b/bikeshed/spec-data/readonly/mdn/web-otp.json index 4e5c158292..3718a94748 100644 --- a/bikeshed/spec-data/readonly/mdn/web-otp.json +++ b/bikeshed/spec-data/readonly/mdn/web-otp.json @@ -8,7 +8,7 @@ "name": "code", "slug": "API/OTPCredential/code", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/OTPCredential/code", - "summary": "The code property of the OTPCredential interface returns the one-time password.", + "summary": "The code property of the OTPCredential interface contains the one-time password (OTP).", "support": { "chrome": { "version_added": "93" @@ -39,7 +39,7 @@ "version_added": "93" } }, - "title": "OTPCredential.code" + "title": "OTPCredential: code property" } ], "OTPCredential": [ @@ -51,7 +51,7 @@ "name": "OTPCredential", "slug": "API/OTPCredential", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/OTPCredential", - "summary": "The OTPCredential interface of the WebOTP API contains the attributes that are returned when a new one-time password is retrieved.", + "summary": "The OTPCredential interface of the WebOTP API is returned when a WebOTP navigator.credentials.get() call (i.e. invoked with an otp option) fulfills. It includes a code property that contains the retrieved one-time password (OTP).", "support": { "chrome": { "version_added": "93" @@ -84,5 +84,48 @@ }, "title": "OTPCredential" } + ], + "sctn-permissions-policy": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "otp-credentials", + "slug": "HTTP/Headers/Permissions-Policy/otp-credentials", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/otp-credentials", + "summary": "The HTTP Permissions-Policy header otp-credentials directive controls whether the current document is allowed to use the WebOTP API to request a one-time password (OTP) from a specially-formatted SMS message sent by the app's server, i.e., via navigator.credentials.get({otp: ..., ...}).", + "support": { + "chrome": { + "version_added": "93" + }, + "chrome_android": { + "version_added": "84" + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "93" + } + }, + "title": "Permissions-Policy: otp-credentials" + } ] } diff --git a/bikeshed/spec-data/readonly/mdn/web-share.json b/bikeshed/spec-data/readonly/mdn/web-share.json index 2bf652013a..91051afab2 100644 --- a/bikeshed/spec-data/readonly/mdn/web-share.json +++ b/bikeshed/spec-data/readonly/mdn/web-share.json @@ -6,6 +6,9 @@ "gecko", "webkit" ], + "partial": [ + "blink" + ], "needsflag": [ "gecko" ], @@ -15,21 +18,17 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/canShare", "summary": "The Navigator.canShare() method of the Web Share API returns true if the equivalent call to navigator.share() would succeed.", "support": { - "chrome": [ - { - "version_added": "93" - }, - { - "version_added": "89", - "version_removed": "93", - "partial_implementation": true, - "notes": "Not supported on macOS." - } - ], + "chrome": { + "version_added": "89", + "partial_implementation": true, + "notes": "Only supported on Chrome OS and Windows, see <a href='https://crbug.com/770595'>bug 770595</a> and <a href='https://crbug.com/1144920'>bug 1144920</a>." + }, "chrome_android": { "version_added": "75" }, - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": "96", "flags": [ @@ -57,19 +56,13 @@ "webview_android": { "version_added": false }, - "edge_blink": [ - { - "version_added": "93" - }, - { - "version_added": false, - "version_removed": "93", - "partial_implementation": true, - "notes": "Not supported on macOS." - } - ] + "edge_blink": { + "version_added": "89", + "partial_implementation": true, + "notes": "Only supported on Chrome OS and Windows, see <a href='https://crbug.com/770595'>bug 770595</a> and <a href='https://crbug.com/1144920'>bug 1144920</a>." + } }, - "title": "Navigator.canShare()" + "title": "Navigator: canShare() method" } ], "share-method": [ @@ -79,6 +72,9 @@ "gecko", "webkit" ], + "partial": [ + "blink" + ], "needsflag": [ "gecko" ], @@ -88,21 +84,17 @@ "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share", "summary": "The navigator.share() method of the Web Share API invokes the native sharing mechanism of the device to share data such as text, URLs, or files. The available share targets depend on the device, but might include the clipboard, contacts and email applications, websites, Bluetooth, etc.", "support": { - "chrome": [ - { - "version_added": "93" - }, - { - "version_added": "89", - "version_removed": "93", - "partial_implementation": true, - "notes": "Not supported on macOS." - } - ], + "chrome": { + "version_added": "89", + "partial_implementation": true, + "notes": "Only supported on Chrome OS and Windows, see <a href='https://crbug.com/770595'>bug 770595</a> and <a href='https://crbug.com/1144920'>bug 1144920</a>." + }, "chrome_android": { "version_added": "61" }, - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": "71", "flags": [ @@ -132,19 +124,13 @@ "webview_android": { "version_added": false }, - "edge_blink": [ - { - "version_added": "93" - }, - { - "version_added": false, - "version_removed": "93", - "partial_implementation": true, - "notes": "Not supported on macOS." - } - ] + "edge_blink": { + "version_added": "89", + "partial_implementation": true, + "notes": "Only supported on Chrome OS and Windows, see <a href='https://crbug.com/770595'>bug 770595</a> and <a href='https://crbug.com/1144920'>bug 1144920</a>." + } }, - "title": "Navigator.share()" + "title": "Navigator: share() method" } ], "permissions-policy": [ @@ -157,7 +143,7 @@ "name": "web-share", "slug": "HTTP/Headers/Feature-Policy/web-share", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/web-share", - "summary": "The HTTP Feature-Policy header web-share directive controls whether the current document is allowed to use the Navigator.share() method of the Web Share API to share text, links, images, and other content to arbitrary destinations of the user's choice.", + "summary": "The HTTP Permissions-Policy header web-share directive controls whether the current document is allowed to use the Navigator.share() method of the Web Share API to share text, links, images, and other content to arbitrary destinations of the user's choice.", "support": { "chrome": { "version_added": false @@ -193,7 +179,72 @@ "version_added": false } }, - "title": "Feature-Policy: web-share" + "title": "Permissions-Policy: web-share" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "web-share", + "slug": "HTTP/Headers/Permissions-Policy/web-share", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/web-share", + "summary": "The HTTP Permissions-Policy header web-share directive controls whether the current document is allowed to use the Navigator.share() method of the Web Share API to share text, links, images, and other content to arbitrary destinations of the user's choice.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "86", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "81", + "alternative_name": "Feature-Policy: web-share", + "partial_implementation": true, + "notes": [ + "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements.", + "Firefox recognizes the <code>web-share</code> permissions policy, but this has no effect in versions of Firefox that do not support the <a href='https://developer.mozilla.org/docs/Web/API/Navigator/share'><code>share()</code></a> method." + ] + }, + "firefox_android": { + "version_added": "81", + "partial_implementation": true, + "notes": "Only supported through the <code>allow</code> attribute on <code>&lt;iframe&gt;</code> elements." + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "86", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: web-share" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webaudio.json b/bikeshed/spec-data/readonly/mdn/webaudio.json index a1b7e61018..6a5f58fa1e 100644 --- a/bikeshed/spec-data/readonly/mdn/webaudio.json +++ b/bikeshed/spec-data/readonly/mdn/webaudio.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "AnalyserNode()" + "title": "AnalyserNode: AnalyserNode() constructor" } ], "dom-analysernode-fftsize": [ @@ -82,7 +82,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.fftSize" + "title": "AnalyserNode: fftSize property" } ], "dom-analysernode-frequencybincount": [ @@ -96,7 +96,7 @@ "name": "frequencyBinCount", "slug": "API/AnalyserNode/frequencyBinCount", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/frequencyBinCount", - "summary": "The frequencyBinCount read-only property of the AnalyserNode interface is an unsigned integer half that of the AnalyserNode.fftSize. This generally equates to the number of data values you will have to play with for the visualization.", + "summary": "The frequencyBinCount read-only property of the AnalyserNode interface contains the total number of data points available to AudioContext sampleRate. This is half of the value of the AnalyserNode.fftSize. The two methods' indices have a linear relationship with the frequencies they represent, between 0 and the Nyquist frequency.", "support": { "chrome": { "version_added": "14" @@ -127,7 +127,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.frequencyBinCount" + "title": "AnalyserNode: frequencyBinCount property" } ], "dom-analysernode-getbytefrequencydata": [ @@ -172,7 +172,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.getByteFrequencyData()" + "title": "AnalyserNode: getByteFrequencyData() method" } ], "dom-analysernode-getbytetimedomaindata": [ @@ -217,7 +217,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.getByteTimeDomainData()" + "title": "AnalyserNode: getByteTimeDomainData() method" } ], "dom-analysernode-getfloatfrequencydata": [ @@ -231,7 +231,7 @@ "name": "getFloatFrequencyData", "slug": "API/AnalyserNode/getFloatFrequencyData", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatFrequencyData", - "summary": "The getFloatFrequencyData() method of the AnalyserNode Interface copies the current frequency data into a Float32Array array passed into it.", + "summary": "The getFloatFrequencyData() method of the AnalyserNode Interface copies the current frequency data into a Float32Array array passed into it. Each array value is a sample, the magnitude of the signal at a particular time.", "support": { "chrome": { "version_added": "14" @@ -262,7 +262,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.getFloatFrequencyData()" + "title": "AnalyserNode: getFloatFrequencyData() method" } ], "dom-analysernode-getfloattimedomaindata": [ @@ -276,7 +276,7 @@ "name": "getFloatTimeDomainData", "slug": "API/AnalyserNode/getFloatTimeDomainData", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatTimeDomainData", - "summary": "The getFloatTimeDomainData() method of the AnalyserNode Interface copies the current waveform, or time-domain, data into a Float32Array array passed into it.", + "summary": "The getFloatTimeDomainData() method of the AnalyserNode Interface copies the current waveform, or time-domain, data into a Float32Array array passed into it. Each array value is a sample, the magnitude of the signal at a particular time.", "support": { "chrome": { "version_added": "35" @@ -305,7 +305,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.getFloatTimeDomainData()" + "title": "AnalyserNode: getFloatTimeDomainData() method" } ], "dom-analysernode-maxdecibels": [ @@ -350,7 +350,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.maxDecibels" + "title": "AnalyserNode: maxDecibels property" } ], "dom-analysernode-mindecibels": [ @@ -395,7 +395,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.minDecibels" + "title": "AnalyserNode: minDecibels property" } ], "dom-analysernode-smoothingtimeconstant": [ @@ -440,7 +440,7 @@ "version_added": "79" } }, - "title": "AnalyserNode.smoothingTimeConstant" + "title": "AnalyserNode: smoothingTimeConstant property" } ], "AnalyserNode": [ @@ -536,7 +536,7 @@ "notes": "The <code>context</code> parameter was supported up until version 57, but has now been removed." } }, - "title": "AudioBuffer()" + "title": "AudioBuffer: AudioBuffer() constructor" } ], "dom-audiobuffer-copyfromchannel": [ @@ -579,7 +579,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.copyFromChannel()" + "title": "AudioBuffer: copyFromChannel() method" } ], "dom-audiobuffer-copytochannel": [ @@ -622,7 +622,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.copyToChannel()" + "title": "AudioBuffer: copyToChannel() method" } ], "dom-audiobuffer-duration": [ @@ -667,7 +667,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.duration" + "title": "AudioBuffer: duration property" } ], "dom-audiobuffer-getchanneldata": [ @@ -712,7 +712,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.getChannelData()" + "title": "AudioBuffer: getChannelData() method" } ], "dom-audiobuffer-length": [ @@ -757,7 +757,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.length" + "title": "AudioBuffer: length property" } ], "dom-audiobuffer-numberofchannels": [ @@ -802,7 +802,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.numberOfChannels" + "title": "AudioBuffer: numberOfChannels property" } ], "dom-audiobuffer-samplerate": [ @@ -847,7 +847,7 @@ "version_added": "79" } }, - "title": "AudioBuffer.sampleRate" + "title": "AudioBuffer: sampleRate property" } ], "AudioBuffer": [ @@ -912,9 +912,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -935,7 +933,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode()" + "title": "AudioBufferSourceNode: AudioBufferSourceNode() constructor" } ], "dom-audiobuffersourcenode-buffer": [ @@ -981,7 +979,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.buffer" + "title": "AudioBufferSourceNode: buffer property" } ], "dom-audiobuffersourcenode-detune": [ @@ -1024,7 +1022,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.detune" + "title": "AudioBufferSourceNode: detune property" } ], "dom-audiobuffersourcenode-loop": [ @@ -1069,7 +1067,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.loop" + "title": "AudioBufferSourceNode: loop property" } ], "dom-audiobuffersourcenode-loopend": [ @@ -1114,7 +1112,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.loopEnd" + "title": "AudioBufferSourceNode: loopEnd property" } ], "dom-audiobuffersourcenode-loopstart": [ @@ -1159,7 +1157,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.loopStart" + "title": "AudioBufferSourceNode: loopStart property" } ], "dom-audiobuffersourcenode-playbackrate": [ @@ -1204,7 +1202,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.playbackRate" + "title": "AudioBufferSourceNode: playbackRate property" } ], "dom-audiobuffersourcenode-start": [ @@ -1249,7 +1247,7 @@ "version_added": "79" } }, - "title": "AudioBufferSourceNode.start()" + "title": "AudioBufferSourceNode: start() method" } ], "AudioBufferSourceNode": [ @@ -1417,7 +1415,7 @@ } ] }, - "title": "AudioContext()" + "title": "AudioContext: AudioContext() constructor" } ], "dom-audiocontext-baselatency": [ @@ -1458,7 +1456,7 @@ "version_added": "79" } }, - "title": "AudioContext.baseLatency" + "title": "AudioContext: baseLatency property" } ], "dom-audiocontext-close": [ @@ -1501,7 +1499,7 @@ "version_added": "79" } }, - "title": "AudioContext.close()" + "title": "AudioContext: close() method" } ], "dom-audiocontext-createmediaelementsource": [ @@ -1518,7 +1516,7 @@ "summary": "The createMediaElementSource() method of the AudioContext Interface is used to create a new MediaElementAudioSourceNode object, given an existing HTML <audio> or <video> element, the audio from which can then be played and manipulated.", "support": { "chrome": { - "version_added": "14" + "version_added": "15" }, "chrome_android": "mirror", "edge": { @@ -1546,7 +1544,7 @@ "version_added": "79" } }, - "title": "AudioContext.createMediaElementSource()" + "title": "AudioContext: createMediaElementSource() method" } ], "dom-audiocontext-createmediastreamdestination": [ @@ -1563,7 +1561,7 @@ "summary": "The createMediaStreamDestination() method of the AudioContext Interface is used to create a new MediaStreamAudioDestinationNode object associated with a WebRTC MediaStream representing an audio stream, which may be stored in a local file or sent to another computer.", "support": { "chrome": { - "version_added": "14" + "version_added": "25" }, "chrome_android": "mirror", "edge": "mirror", @@ -1578,7 +1576,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1589,7 +1587,7 @@ "version_added": "79" } }, - "title": "AudioContext.createMediaStreamDestination()" + "title": "AudioContext: createMediaStreamDestination() method" } ], "dom-audiocontext-createmediastreamsource": [ @@ -1606,7 +1604,7 @@ "summary": "The createMediaStreamSource() method of the AudioContext Interface is used to create a new MediaStreamAudioSourceNode object, given a media stream (say, from a MediaDevices.getUserMedia instance), the audio from which can then be played and manipulated.", "support": { "chrome": { - "version_added": "14" + "version_added": "22" }, "chrome_android": "mirror", "edge": { @@ -1623,7 +1621,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1634,7 +1632,7 @@ "version_added": "79" } }, - "title": "AudioContext.createMediaStreamSource()" + "title": "AudioContext: createMediaStreamSource() method" } ], "dom-audiocontext-createmediastreamtracksource": [ @@ -1674,7 +1672,7 @@ "version_added": false } }, - "title": "AudioContext.createMediaStreamTrackSource()" + "title": "AudioContext: createMediaStreamTrackSource() method" } ], "dom-audiocontext-getoutputtimestamp": [ @@ -1688,7 +1686,7 @@ "name": "getOutputTimestamp", "slug": "API/AudioContext/getOutputTimestamp", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/getOutputTimestamp", - "summary": "The getOutputTimestamp() property of the AudioContext interface returns a new AudioTimestamp object containing two audio timestamp values relating to the current audio context.", + "summary": "The getOutputTimestamp() method of the AudioContext interface returns a new AudioTimestamp object containing two audio timestamp values relating to the current audio context.", "support": { "chrome": { "version_added": "57" @@ -1715,7 +1713,7 @@ "version_added": "79" } }, - "title": "AudioContext.getOutputTimestamp()" + "title": "AudioContext: getOutputTimestamp() method" } ], "dom-audiocontext-outputlatency": [ @@ -1755,7 +1753,7 @@ "version_added": "102" } }, - "title": "AudioContext.outputLatency" + "title": "AudioContext: outputLatency property" } ], "dom-audiocontext-resume": [ @@ -1798,7 +1796,124 @@ "version_added": "79" } }, - "title": "AudioContext.resume()" + "title": "AudioContext: resume() method" + } + ], + "dom-audiocontext-setsinkid": [ + { + "engines": [ + "blink" + ], + "filename": "api/AudioContext.json", + "name": "setSinkId", + "slug": "API/AudioContext/setSinkId", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/setSinkId", + "summary": "The setSinkId() method of the AudioContext interface sets the output audio device for the AudioContext. If a sink ID is not explicitly set, the default system audio output device will be used.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "AudioContext: setSinkId() method" + } + ], + "eventdef-audiocontext-sinkchange": [ + { + "engines": [ + "blink" + ], + "filename": "api/AudioContext.json", + "name": "sinkchange_event", + "slug": "API/AudioContext/sinkchange_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkchange_event", + "summary": "The sinkchange event of the AudioContext interface is fired when the output audio device (and therefore, the AudioContext.sinkId) has changed.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "AudioContext: sinkchange event" + } + ], + "dom-audiocontext-sinkid": [ + { + "engines": [ + "blink" + ], + "filename": "api/AudioContext.json", + "name": "sinkId", + "slug": "API/AudioContext/sinkId", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkId", + "summary": "The sinkId read-only property of the AudioContext interface returns the sink ID of the current output audio device.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "AudioContext: sinkId property" } ], "dom-audiocontext-suspend": [ @@ -1841,7 +1956,7 @@ "version_added": "79" } }, - "title": "AudioContext.suspend()" + "title": "AudioContext: suspend() method" } ], "AudioContext": [ @@ -1922,7 +2037,7 @@ "summary": "The maxchannelCount property of the AudioDestinationNode interface is an unsigned long defining the maximum amount of channels that the physical device can handle.", "support": { "chrome": { - "version_added": "14" + "version_added": "27" }, "chrome_android": "mirror", "edge": { @@ -1958,7 +2073,7 @@ "version_added": "79" } }, - "title": "AudioDestinationNode.maxChannelCount" + "title": "AudioDestinationNode: maxChannelCount property" } ], "AudioDestinationNode": [ @@ -2044,7 +2159,7 @@ "version_added": "79" } }, - "title": "AudioListener.forwardX" + "title": "AudioListener: forwardX property" } ], "dom-audiolistener-forwardy": [ @@ -2085,7 +2200,7 @@ "version_added": "79" } }, - "title": "AudioListener.forwardY" + "title": "AudioListener: forwardY property" } ], "dom-audiolistener-forwardz": [ @@ -2126,7 +2241,7 @@ "version_added": "79" } }, - "title": "AudioListener.forwardZ" + "title": "AudioListener: forwardZ property" } ], "dom-audiolistener-positionx": [ @@ -2167,7 +2282,7 @@ "version_added": "79" } }, - "title": "AudioListener.positionX" + "title": "AudioListener: positionX property" } ], "dom-audiolistener-positiony": [ @@ -2208,7 +2323,7 @@ "version_added": "79" } }, - "title": "AudioListener.positionY" + "title": "AudioListener: positionY property" } ], "dom-audiolistener-positionz": [ @@ -2249,7 +2364,7 @@ "version_added": "79" } }, - "title": "AudioListener.positionZ" + "title": "AudioListener: positionZ property" } ], "dom-audiolistener-upx": [ @@ -2290,7 +2405,7 @@ "version_added": "79" } }, - "title": "AudioListener.upX" + "title": "AudioListener: upX property" } ], "dom-audiolistener-upy": [ @@ -2331,7 +2446,7 @@ "version_added": "79" } }, - "title": "AudioListener.upY" + "title": "AudioListener: upY property" } ], "dom-audiolistener-upz": [ @@ -2372,7 +2487,7 @@ "version_added": "79" } }, - "title": "AudioListener.upZ" + "title": "AudioListener: upZ property" } ], "AudioListener": [ @@ -2434,7 +2549,7 @@ "summary": "The channelCount property of the AudioNode interface represents an integer used to determine how many channels are used when up-mixing and down-mixing connections to any inputs to the node.", "support": { "chrome": { - "version_added": "14" + "version_added": "27" }, "chrome_android": "mirror", "edge": { @@ -2451,7 +2566,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2462,7 +2577,7 @@ "version_added": "79" } }, - "title": "AudioNode.channelCount" + "title": "AudioNode: channelCount property" } ], "dom-audionode-channelcountmode": [ @@ -2479,7 +2594,7 @@ "summary": "The channelCountMode property of the AudioNode interface represents an enumerated value describing the way channels must be matched between the node's inputs and outputs.", "support": { "chrome": { - "version_added": "14" + "version_added": "27" }, "chrome_android": "mirror", "edge": { @@ -2496,7 +2611,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2507,7 +2622,7 @@ "version_added": "79" } }, - "title": "AudioNode.channelCountMode" + "title": "AudioNode: channelCountMode property" } ], "dom-audionode-channelinterpretation": [ @@ -2524,7 +2639,7 @@ "summary": "The channelInterpretation property of the AudioNode interface represents an enumerated value describing how input channels are mapped to output channels when the number of inputs/outputs is different. For example, this setting defines how a mono input will be up-mixed to a stereo or 5.1 channel output, or how a quad channel input will be down-mixed to a stereo or mono output.", "support": { "chrome": { - "version_added": "14" + "version_added": "27" }, "chrome_android": "mirror", "edge": { @@ -2541,7 +2656,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2552,7 +2667,7 @@ "version_added": "79" } }, - "title": "AudioNode.channelInterpretation" + "title": "AudioNode: channelInterpretation property" } ], "dom-audionode-connect": [ @@ -2597,7 +2712,7 @@ "version_added": "79" } }, - "title": "AudioNode.connect()" + "title": "AudioNode: connect() method" } ], "dom-audionode-connect-destinationparam-output": [ @@ -2642,7 +2757,7 @@ "version_added": "79" } }, - "title": "AudioNode.connect()" + "title": "AudioNode: connect() method" } ], "dom-audionode-context": [ @@ -2687,7 +2802,7 @@ "version_added": "79" } }, - "title": "AudioNode.context" + "title": "AudioNode: context property" } ], "dom-audionode-disconnect": [ @@ -2732,7 +2847,7 @@ "version_added": "79" } }, - "title": "AudioNode.disconnect()" + "title": "AudioNode: disconnect() method" } ], "dom-audionode-numberofinputs": [ @@ -2777,7 +2892,7 @@ "version_added": "79" } }, - "title": "AudioNode.numberOfInputs" + "title": "AudioNode: numberOfInputs property" } ], "dom-audionode-numberofoutputs": [ @@ -2822,7 +2937,7 @@ "version_added": "79" } }, - "title": "AudioNode.numberOfOutputs" + "title": "AudioNode: numberOfOutputs property" } ], "AudioNode": [ @@ -2907,7 +3022,7 @@ "version_added": "79" } }, - "title": "AudioParam.cancelAndHoldAtTime()" + "title": "AudioParam: cancelAndHoldAtTime() method" } ], "dom-audioparam-cancelscheduledvalues": [ @@ -2952,7 +3067,7 @@ "version_added": "79" } }, - "title": "AudioParam.cancelScheduledValues()" + "title": "AudioParam: cancelScheduledValues() method" } ], "dom-audioparam-defaultvalue": [ @@ -2997,7 +3112,7 @@ "version_added": "79" } }, - "title": "AudioParam.defaultValue" + "title": "AudioParam: defaultValue property" } ], "dom-audioparam-exponentialramptovalueattime": [ @@ -3055,7 +3170,7 @@ "version_added": "79" } }, - "title": "AudioParam.exponentialRampToValueAtTime()" + "title": "AudioParam: exponentialRampToValueAtTime() method" } ], "dom-audioparam-linearramptovalueattime": [ @@ -3113,7 +3228,7 @@ "version_added": "79" } }, - "title": "AudioParam.linearRampToValueAtTime()" + "title": "AudioParam: linearRampToValueAtTime() method" } ], "dom-audioparam-maxvalue": [ @@ -3154,7 +3269,7 @@ "version_added": "79" } }, - "title": "AudioParam.maxValue" + "title": "AudioParam: maxValue property" } ], "dom-audioparam-minvalue": [ @@ -3195,7 +3310,7 @@ "version_added": "79" } }, - "title": "AudioParam.minValue" + "title": "AudioParam: minValue property" } ], "dom-audioparam-settargetattime": [ @@ -3240,7 +3355,7 @@ "version_added": "79" } }, - "title": "AudioParam.setTargetAtTime()" + "title": "AudioParam: setTargetAtTime() method" } ], "dom-audioparam-setvalueattime": [ @@ -3285,7 +3400,7 @@ "version_added": "79" } }, - "title": "AudioParam.setValueAtTime()" + "title": "AudioParam: setValueAtTime() method" } ], "dom-audioparam-setvaluecurveattime": [ @@ -3330,7 +3445,7 @@ "version_added": "79" } }, - "title": "AudioParam.setValueCurveAtTime()" + "title": "AudioParam: setValueCurveAtTime() method" } ], "dom-audioparam-value": [ @@ -3379,7 +3494,7 @@ "version_added": "79" } }, - "title": "AudioParam.value" + "title": "AudioParam: value property" } ], "AudioParam": [ @@ -3438,7 +3553,7 @@ "name": "AudioParamMap", "slug": "API/AudioParamMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioParamMap", - "summary": "The Web Audio API interface AudioParamMap represents a set of multiple audio parameters, each described as a mapping of a string identifying the parameter to the AudioParam object representing its value.", + "summary": "The AudioParamMap interface of the Web Audio API represents an iterable and read-only set of multiple audio parameters.", "support": { "chrome": { "version_added": "66" @@ -3553,7 +3668,7 @@ "version_added": "79" } }, - "title": "AudioScheduledSourceNode.start()" + "title": "AudioScheduledSourceNode: start() method" } ], "dom-audioscheduledsourcenode-stop": [ @@ -3596,7 +3711,7 @@ "version_added": "79" } }, - "title": "AudioScheduledSourceNode.stop()" + "title": "AudioScheduledSourceNode: stop() method" } ], "AudioScheduledSourceNode": [ @@ -3684,6 +3799,84 @@ "title": "AudioScheduledSourceNode" } ], + "dom-audiosinkinfo-type": [ + { + "engines": [ + "blink" + ], + "filename": "api/AudioSinkInfo.json", + "name": "type", + "slug": "API/AudioSinkInfo/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo/type", + "summary": "The type read-only property of the AudioSinkInfo interface returns the type of the audio output device.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "AudioSinkInfo: type property" + } + ], + "AudioSinkInfo": [ + { + "engines": [ + "blink" + ], + "filename": "api/AudioSinkInfo.json", + "name": "AudioSinkInfo", + "slug": "API/AudioSinkInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo", + "summary": "The AudioSinkInfo interface of the Web Audio API represents information describing an AudioContext's sink ID, retrieved via AudioContext.sinkId.", + "support": { + "chrome": { + "version_added": "110" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "110" + } + }, + "title": "AudioSinkInfo" + } + ], "AudioWorklet": [ { "engines": [ @@ -3725,6 +3918,92 @@ "title": "AudioWorklet" } ], + "dom-audioworkletglobalscope-currentframe": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/AudioWorkletGlobalScope.json", + "name": "currentFrame", + "slug": "API/AudioWorkletGlobalScope/currentFrame", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentFrame", + "summary": "The read-only currentFrame property of the AudioWorkletGlobalScope interface returns an integer that represents the ever-increasing current sample-frame of the audio block being processed. It is incremented by 128 (the size of a render quantum) after the processing of each audio block.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "76" + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "14.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AudioWorkletGlobalScope: currentFrame property" + } + ], + "dom-audioworkletglobalscope-currenttime": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/AudioWorkletGlobalScope.json", + "name": "currentTime", + "slug": "API/AudioWorkletGlobalScope/currentTime", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentTime", + "summary": "The read-only currentTime property of the AudioWorkletGlobalScope interface returns a double that represents the ever-increasing context time of the audio block being processed. It is equal to the currentTime property of the BaseAudioContext the worklet belongs to.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "76" + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "14.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AudioWorkletGlobalScope: currentTime property" + } + ], "dom-audioworkletglobalscope-registerprocessor": [ { "engines": [ @@ -3765,7 +4044,50 @@ "version_added": "79" } }, - "title": "AudioWorkletGlobalScope.registerProcessor()" + "title": "AudioWorkletGlobalScope: registerProcessor() method" + } + ], + "dom-audioworkletglobalscope-samplerate": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/AudioWorkletGlobalScope.json", + "name": "sampleRate", + "slug": "API/AudioWorkletGlobalScope/sampleRate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/sampleRate", + "summary": "The read-only sampleRate property of the AudioWorkletGlobalScope interface returns a float that represents the sample rate of the associated BaseAudioContext the worklet belongs to.", + "support": { + "chrome": { + "version_added": "66" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "76" + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "14.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "AudioWorkletGlobalScope: sampleRate property" } ], "AudioWorkletGlobalScope": [ @@ -3849,7 +4171,7 @@ "version_added": "79" } }, - "title": "AudioWorkletNode()" + "title": "AudioWorkletNode: AudioWorkletNode() constructor" } ], "dom-audioworkletnode-parameters": [ @@ -3890,7 +4212,7 @@ "version_added": "79" } }, - "title": "AudioWorkletNode.parameters" + "title": "AudioWorkletNode: parameters property" } ], "dom-audioworkletnode-port": [ @@ -3931,7 +4253,7 @@ "version_added": "79" } }, - "title": "AudioWorkletNode.port" + "title": "AudioWorkletNode: port property" } ], "dom-audioworkletnode-onprocessorerror": [ @@ -4054,7 +4376,7 @@ "version_added": "79" } }, - "title": "AudioWorkletProcessor()" + "title": "AudioWorkletProcessor: AudioWorkletProcessor() constructor" } ], "dom-audioworkletprocessor-port": [ @@ -4095,7 +4417,7 @@ "version_added": "79" } }, - "title": "AudioWorkletProcessor.port" + "title": "AudioWorkletProcessor: port property" } ], "AudioWorkletProcessor": [ @@ -4177,7 +4499,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.audioWorklet" + "title": "BaseAudioContext: audioWorklet property" } ], "dom-baseaudiocontext-createanalyser": [ @@ -4222,7 +4544,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createAnalyser()" + "title": "BaseAudioContext: createAnalyser() method" } ], "dom-baseaudiocontext-createbiquadfilter": [ @@ -4267,7 +4589,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createBiquadFilter()" + "title": "BaseAudioContext: createBiquadFilter() method" } ], "dom-baseaudiocontext-createbuffer": [ @@ -4312,7 +4634,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createBuffer()" + "title": "BaseAudioContext: createBuffer() method" } ], "dom-baseaudiocontext-createbuffersource": [ @@ -4357,7 +4679,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createBufferSource()" + "title": "BaseAudioContext: createBufferSource() method" } ], "dom-baseaudiocontext-createchannelmerger": [ @@ -4402,7 +4724,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createChannelMerger()" + "title": "BaseAudioContext: createChannelMerger() method" } ], "dom-baseaudiocontext-createchannelsplitter": [ @@ -4447,7 +4769,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createChannelSplitter()" + "title": "BaseAudioContext: createChannelSplitter() method" } ], "dom-baseaudiocontext-createconstantsource": [ @@ -4488,7 +4810,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createConstantSource()" + "title": "BaseAudioContext: createConstantSource() method" } ], "dom-baseaudiocontext-createconvolver": [ @@ -4533,7 +4855,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createConvolver()" + "title": "BaseAudioContext: createConvolver() method" } ], "dom-baseaudiocontext-createdelay": [ @@ -4550,7 +4872,7 @@ "summary": "The createDelay() method of the BaseAudioContext Interface is used to create a DelayNode, which is used to delay the incoming audio signal by a certain amount of time.", "support": { "chrome": { - "version_added": "14" + "version_added": "24" }, "chrome_android": "mirror", "edge": { @@ -4567,7 +4889,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -4578,7 +4900,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createDelay()" + "title": "BaseAudioContext: createDelay() method" } ], "dom-baseaudiocontext-createdynamicscompressor": [ @@ -4623,7 +4945,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createDynamicsCompressor()" + "title": "BaseAudioContext: createDynamicsCompressor() method" } ], "dom-baseaudiocontext-creategain": [ @@ -4640,7 +4962,7 @@ "summary": "The createGain() method of the BaseAudioContext interface creates a GainNode, which can be used to control the overall gain (or volume) of the audio graph.", "support": { "chrome": { - "version_added": "14" + "version_added": "24" }, "chrome_android": "mirror", "edge": { @@ -4657,7 +4979,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -4668,7 +4990,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createGain()" + "title": "BaseAudioContext: createGain() method" } ], "dom-baseaudiocontext-createiirfilter": [ @@ -4711,7 +5033,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createIIRFilter()" + "title": "BaseAudioContext: createIIRFilter() method" } ], "dom-baseaudiocontext-createoscillator": [ @@ -4754,7 +5076,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createOscillator()" + "title": "BaseAudioContext: createOscillator() method" } ], "dom-baseaudiocontext-createpanner": [ @@ -4799,7 +5121,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createPanner()" + "title": "BaseAudioContext: createPanner() method" } ], "dom-baseaudiocontext-createperiodicwave": [ @@ -4842,7 +5164,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createPeriodicWave()" + "title": "BaseAudioContext: createPeriodicWave() method" } ], "dom-baseaudiocontext-createstereopanner": [ @@ -4885,7 +5207,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createStereoPanner()" + "title": "BaseAudioContext: createStereoPanner() method" } ], "dom-baseaudiocontext-createwaveshaper": [ @@ -4902,7 +5224,7 @@ "summary": "The createWaveShaper() method of the BaseAudioContext interface creates a WaveShaperNode, which represents a non-linear distortion. It is used to apply distortion effects to your audio.", "support": { "chrome": { - "version_added": "14" + "version_added": "15" }, "chrome_android": "mirror", "edge": { @@ -4930,7 +5252,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.createWaveShaper()" + "title": "BaseAudioContext: createWaveShaper() method" } ], "dom-baseaudiocontext-currenttime": [ @@ -4975,7 +5297,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.currentTime" + "title": "BaseAudioContext: currentTime property" } ], "dom-baseaudiocontext-decodeaudiodata": [ @@ -4989,7 +5311,7 @@ "name": "decodeAudioData", "slug": "API/BaseAudioContext/decodeAudioData", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/decodeAudioData", - "summary": "The decodeAudioData() method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an ArrayBuffer. In this case the ArrayBuffer is loaded from XMLHttpRequest and FileReader. The decoded AudioBuffer is resampled to the AudioContext's sampling rate, then passed to a callback or promise.", + "summary": "The decodeAudioData() method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an ArrayBuffer that is loaded from fetch(), XMLHttpRequest, or FileReader. The decoded AudioBuffer is resampled to the AudioContext's sampling rate, then passed to a callback or promise.", "support": { "chrome": { "version_added": "14" @@ -5020,7 +5342,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.decodeAudioData()" + "title": "BaseAudioContext: decodeAudioData() method" } ], "dom-baseaudiocontext-destination": [ @@ -5065,7 +5387,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.destination" + "title": "BaseAudioContext: destination property" } ], "dom-baseaudiocontext-listener": [ @@ -5110,7 +5432,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.listener" + "title": "BaseAudioContext: listener property" } ], "dom-baseaudiocontext-samplerate": [ @@ -5155,7 +5477,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.sampleRate" + "title": "BaseAudioContext: sampleRate property" } ], "dom-baseaudiocontext-state": [ @@ -5198,7 +5520,7 @@ "version_added": "79" } }, - "title": "BaseAudioContext.state" + "title": "BaseAudioContext: state property" } ], "dom-baseaudiocontext-onstatechange": [ @@ -5346,9 +5668,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -5369,7 +5689,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode()" + "title": "BiquadFilterNode: BiquadFilterNode() constructor" } ], "dom-biquadfilternode-q": [ @@ -5414,7 +5734,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode.Q" + "title": "BiquadFilterNode: Q property" } ], "dom-biquadfilternode-detune": [ @@ -5431,7 +5751,7 @@ "summary": "The detune property of the BiquadFilterNode interface is an a-rate AudioParam representing detuning of the frequency in cents.", "support": { "chrome": { - "version_added": "14" + "version_added": "25" }, "chrome_android": "mirror", "edge": { @@ -5459,7 +5779,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode.detune" + "title": "BiquadFilterNode: detune property" } ], "dom-biquadfilternode-frequency": [ @@ -5504,7 +5824,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode.frequency" + "title": "BiquadFilterNode: frequency property" } ], "dom-biquadfilternode-gain": [ @@ -5549,7 +5869,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode.gain" + "title": "BiquadFilterNode: gain property" } ], "dom-biquadfilternode-getfrequencyresponse": [ @@ -5566,7 +5886,7 @@ "summary": "The getFrequencyResponse() method of the BiquadFilterNode interface takes the current filtering algorithm's settings and calculates the frequency response for frequencies specified in a specified array of frequencies.", "support": { "chrome": { - "version_added": "14" + "version_added": "17" }, "chrome_android": "mirror", "edge": { @@ -5594,7 +5914,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode.getFrequencyResponse()" + "title": "BiquadFilterNode: getFrequencyResponse() method" } ], "dom-biquadfilternode-type": [ @@ -5639,7 +5959,7 @@ "version_added": "79" } }, - "title": "BiquadFilterNode.type" + "title": "BiquadFilterNode: type property" } ], "BiquadFilterNode": [ @@ -5725,7 +6045,7 @@ "version_added": "79" } }, - "title": "ChannelMergerNode()" + "title": "ChannelMergerNode: ChannelMergerNode() constructor" } ], "ChannelMergerNode": [ @@ -5811,7 +6131,7 @@ "version_added": "79" } }, - "title": "ChannelSplitterNode()" + "title": "ChannelSplitterNode: ChannelSplitterNode() constructor" } ], "ChannelSplitterNode": [ @@ -5900,7 +6220,7 @@ "version_added": "79" } }, - "title": "ConstantSourceNode()" + "title": "ConstantSourceNode: ConstantSourceNode() constructor" } ], "dom-constantsourcenode-offset": [ @@ -5941,7 +6261,7 @@ "version_added": "79" } }, - "title": "ConstantSourceNode.offset" + "title": "ConstantSourceNode: offset property" } ], "ConstantSourceNode": [ @@ -6023,7 +6343,7 @@ "version_added": "79" } }, - "title": "ConvolverNode()" + "title": "ConvolverNode: ConvolverNode() constructor" } ], "dom-convolvernode-buffer": [ @@ -6068,7 +6388,7 @@ "version_added": "79" } }, - "title": "ConvolverNode.buffer" + "title": "ConvolverNode: buffer property" } ], "dom-convolvernode-normalize": [ @@ -6113,7 +6433,7 @@ "version_added": "79" } }, - "title": "ConvolverNode.normalize" + "title": "ConvolverNode: normalize property" } ], "ConvolverNode": [ @@ -6178,9 +6498,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -6201,7 +6519,7 @@ "version_added": "79" } }, - "title": "DelayNode()" + "title": "DelayNode: DelayNode() constructor" } ], "dom-delaynode-delaytime": [ @@ -6218,7 +6536,7 @@ "summary": "The delayTime property of the DelayNode interface is an a-rate AudioParam representing the amount of delay to apply.", "support": { "chrome": { - "version_added": "14" + "version_added": "24" }, "chrome_android": "mirror", "edge": { @@ -6235,7 +6553,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6246,7 +6564,7 @@ "version_added": "79" } }, - "title": "DelayNode.delayTime" + "title": "DelayNode: delayTime property" } ], "DelayNode": [ @@ -6263,7 +6581,7 @@ "summary": "The DelayNode interface represents a delay-line; an AudioNode audio-processing module that causes a delay between the arrival of an input data and its propagation to the output.", "support": { "chrome": { - "version_added": "14" + "version_added": "24" }, "chrome_android": "mirror", "edge": { @@ -6280,7 +6598,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6311,9 +6629,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -6334,7 +6650,7 @@ "version_added": "79" } }, - "title": "DynamicsCompressorNode()" + "title": "DynamicsCompressorNode: DynamicsCompressorNode() constructor" } ], "dom-dynamicscompressornode-attack": [ @@ -6351,7 +6667,7 @@ "summary": "The attack property of the DynamicsCompressorNode interface is a k-rate AudioParam representing the amount of time, in seconds, required to reduce the gain by 10 dB. It defines how quickly the signal is adapted when its volume is increased.", "support": { "chrome": { - "version_added": "14" + "version_added": "19" }, "chrome_android": "mirror", "edge": { @@ -6379,7 +6695,7 @@ "version_added": "79" } }, - "title": "DynamicsCompressorNode.attack" + "title": "DynamicsCompressorNode: attack property" } ], "dom-dynamicscompressornode-knee": [ @@ -6396,7 +6712,7 @@ "summary": "The knee property of the DynamicsCompressorNode interface is a k-rate AudioParam containing a decibel value representing the range above the threshold where the curve smoothly transitions to the compressed portion.", "support": { "chrome": { - "version_added": "14" + "version_added": "19" }, "chrome_android": "mirror", "edge": { @@ -6424,7 +6740,7 @@ "version_added": "79" } }, - "title": "DynamicsCompressorNode.knee" + "title": "DynamicsCompressorNode: knee property" } ], "dom-dynamicscompressornode-ratio": [ @@ -6441,7 +6757,7 @@ "summary": "The ratio property of the DynamicsCompressorNode interface Is a k-rate AudioParam representing the amount of change, in dB, needed in the input for a 1 dB change in the output.", "support": { "chrome": { - "version_added": "14" + "version_added": "19" }, "chrome_android": "mirror", "edge": { @@ -6469,7 +6785,7 @@ "version_added": "79" } }, - "title": "DynamicsCompressorNode.ratio" + "title": "DynamicsCompressorNode: ratio property" } ], "dom-dynamicscompressornode-reduction": [ @@ -6486,7 +6802,7 @@ "summary": "The reduction read-only property of the DynamicsCompressorNode interface is a float representing the amount of gain reduction currently applied by the compressor to the signal.", "support": { "chrome": { - "version_added": "14", + "version_added": "19", "notes": "Before version 52, this was an <code>AudioParam.</code>." }, "chrome_android": "mirror", @@ -6524,7 +6840,7 @@ "notes": "Before version 52, this was an <code>AudioParam.</code>." } }, - "title": "DynamicsCompressorNode.reduction" + "title": "DynamicsCompressorNode: reduction property" } ], "dom-dynamicscompressornode-release": [ @@ -6541,7 +6857,7 @@ "summary": "The release property of the DynamicsCompressorNode interface Is a k-rate AudioParam representing the amount of time, in seconds, required to increase the gain by 10 dB. It defines how quick the signal is adapted when its volume is reduced.", "support": { "chrome": { - "version_added": "14" + "version_added": "20" }, "chrome_android": "mirror", "edge": { @@ -6569,7 +6885,7 @@ "version_added": "79" } }, - "title": "DynamicsCompressorNode.release" + "title": "DynamicsCompressorNode: release property" } ], "dom-dynamicscompressornode-threshold": [ @@ -6586,7 +6902,7 @@ "summary": "The threshold property of the DynamicsCompressorNode interface is a k-rate AudioParam representing the decibel value above which the compression will start taking effect.", "support": { "chrome": { - "version_added": "14" + "version_added": "19" }, "chrome_android": "mirror", "edge": { @@ -6614,7 +6930,7 @@ "version_added": "79" } }, - "title": "DynamicsCompressorNode.threshold" + "title": "DynamicsCompressorNode: threshold property" } ], "DynamicsCompressorNode": [ @@ -6679,9 +6995,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -6702,7 +7016,7 @@ "version_added": "79" } }, - "title": "GainNode()" + "title": "GainNode: GainNode() constructor" } ], "dom-gainnode-gain": [ @@ -6719,7 +7033,7 @@ "summary": "The gain property of the GainNode interface is an a-rate AudioParam representing the amount of gain to apply.", "support": { "chrome": { - "version_added": "14" + "version_added": "24" }, "chrome_android": "mirror", "edge": { @@ -6736,7 +7050,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6747,7 +7061,7 @@ "version_added": "79" } }, - "title": "GainNode.gain" + "title": "GainNode: gain property" } ], "GainNode": [ @@ -6764,7 +7078,7 @@ "summary": "The GainNode interface represents a change in volume. It is an AudioNode audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A GainNode always has exactly one input and one output, both with the same number of channels.", "support": { "chrome": { - "version_added": "14" + "version_added": "24" }, "chrome_android": "mirror", "edge": { @@ -6781,7 +7095,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "7" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6812,9 +7126,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -6835,7 +7147,7 @@ "version_added": "79" } }, - "title": "IIRFilterNode()" + "title": "IIRFilterNode: IIRFilterNode() constructor" } ], "dom-iirfilternode-getfrequencyresponse": [ @@ -6878,7 +7190,7 @@ "version_added": "79" } }, - "title": "IIRFilterNode.getFrequencyResponse()" + "title": "IIRFilterNode: getFrequencyResponse() method" } ], "IIRFilterNode": [ @@ -6941,9 +7253,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -6964,7 +7274,7 @@ "version_added": "79" } }, - "title": "MediaElementAudioSourceNode()" + "title": "MediaElementAudioSourceNode: MediaElementAudioSourceNode() constructor" } ], "dom-mediaelementaudiosourcenode-mediaelement": [ @@ -6981,7 +7291,7 @@ "summary": "The MediaElementAudioSourceNode interface's read-only mediaElement property indicates the HTMLMediaElement that contains the audio track from which the node is receiving audio.", "support": { "chrome": { - "version_added": "14" + "version_added": "15" }, "chrome_android": "mirror", "edge": "mirror", @@ -7007,7 +7317,7 @@ "version_added": "79" } }, - "title": "MediaElementAudioSourceNode.mediaElement" + "title": "MediaElementAudioSourceNode: mediaElement property" } ], "MediaElementAudioSourceNode": [ @@ -7024,7 +7334,7 @@ "summary": "The MediaElementAudioSourceNode interface represents an audio source consisting of an HTML <audio> or <video> element. It is an AudioNode that acts as an audio source.", "support": { "chrome": { - "version_added": "14" + "version_added": "15" }, "chrome_android": "mirror", "edge": { @@ -7069,12 +7379,10 @@ "summary": "The MediaStreamAudioDestinationNode() constructor of the Web Audio API creates a new MediaStreamAudioDestinationNode object instance.", "support": { "chrome": { - "version_added": "55" + "version_added": "57" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -7095,7 +7403,7 @@ "version_added": "79" } }, - "title": "MediaStreamAudioDestinationNode()" + "title": "MediaStreamAudioDestinationNode: MediaStreamAudioDestinationNode() constructor" } ], "dom-mediastreamaudiodestinationnode-stream": [ @@ -7112,7 +7420,7 @@ "summary": "The stream property of the AudioContext interface represents a MediaStream containing a single audio MediaStreamTrack with the same number of channels as the node itself.", "support": { "chrome": { - "version_added": "14" + "version_added": "25" }, "chrome_android": "mirror", "edge": { @@ -7129,7 +7437,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7140,7 +7448,7 @@ "version_added": "79" } }, - "title": "MediaStreamAudioDestinationNode.stream" + "title": "MediaStreamAudioDestinationNode: stream property" } ], "MediaStreamAudioDestinationNode": [ @@ -7157,7 +7465,7 @@ "summary": "The MediaStreamAudioDestinationNode interface represents an audio destination consisting of a WebRTC MediaStream with a single AudioMediaStreamTrack, which can be used in a similar way to a MediaStream obtained from navigator.mediaDevices.getUserMedia().", "support": { "chrome": { - "version_added": "14" + "version_added": "25" }, "chrome_android": "mirror", "edge": { @@ -7174,7 +7482,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "6" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7205,9 +7513,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -7228,7 +7534,7 @@ "version_added": "79" } }, - "title": "MediaStreamAudioSourceNode()" + "title": "MediaStreamAudioSourceNode: MediaStreamAudioSourceNode() constructor" } ], "dom-mediastreamaudiosourcenode-mediastream": [ @@ -7245,7 +7551,7 @@ "summary": "The MediaStreamAudioSourceNode interface's read-only mediaStream property indicates the MediaStream that contains the audio track from which the node is receiving audio.", "support": { "chrome": { - "version_added": "23" + "version_added": "22" }, "chrome_android": "mirror", "edge": "mirror", @@ -7269,7 +7575,7 @@ "version_added": "79" } }, - "title": "MediaStreamAudioSourceNode.mediaStream" + "title": "MediaStreamAudioSourceNode: mediaStream property" } ], "MediaStreamAudioSourceNode": [ @@ -7286,7 +7592,7 @@ "summary": "The MediaStreamAudioSourceNode interface is a type of AudioNode which operates as an audio source whose media is received from a MediaStream obtained using the WebRTC or Media Capture and Streams APIs.", "support": { "chrome": { - "version_added": "23" + "version_added": "22" }, "chrome_android": "mirror", "edge": { @@ -7352,7 +7658,7 @@ "version_added": false } }, - "title": "MediaStreamTrackAudioSourceNode()" + "title": "MediaStreamTrackAudioSourceNode: MediaStreamTrackAudioSourceNode() constructor" } ], "MediaStreamTrackAudioSourceNode": [ @@ -7411,9 +7717,7 @@ "version_added": "57" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -7434,7 +7738,7 @@ "version_added": "79" } }, - "title": "OfflineAudioCompletionEvent()" + "title": "OfflineAudioCompletionEvent: OfflineAudioCompletionEvent() constructor" } ], "dom-offlineaudiocompletionevent-renderedbuffer": [ @@ -7479,7 +7783,7 @@ "version_added": "79" } }, - "title": "OfflineAudioCompletionEvent.renderedBuffer" + "title": "OfflineAudioCompletionEvent: renderedBuffer property" } ], "OfflineAudioCompletionEvent": [ @@ -7629,7 +7933,7 @@ } ] }, - "title": "OfflineAudioContext()" + "title": "OfflineAudioContext: OfflineAudioContext() constructor" } ], "dom-offlineaudiocontext-oncomplete": [ @@ -7715,7 +8019,7 @@ "version_added": "79" } }, - "title": "OfflineAudioContext.length" + "title": "OfflineAudioContext: length property" } ], "dom-offlineaudiocontext-resume": [ @@ -7758,7 +8062,7 @@ "version_added": "79" } }, - "title": "OfflineAudioContext.resume()" + "title": "OfflineAudioContext: resume() method" } ], "dom-offlineaudiocontext-startrendering": [ @@ -7801,7 +8105,7 @@ "version_added": "79" } }, - "title": "OfflineAudioContext.startRendering()" + "title": "OfflineAudioContext: startRendering() method" } ], "dom-offlineaudiocontext-suspend": [ @@ -7844,7 +8148,7 @@ "version_added": "79" } }, - "title": "OfflineAudioContext.suspend()" + "title": "OfflineAudioContext: suspend() method" } ], "OfflineAudioContext": [ @@ -7928,9 +8232,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -7951,7 +8253,7 @@ "version_added": "79" } }, - "title": "OscillatorNode()" + "title": "OscillatorNode: OscillatorNode() constructor" } ], "dom-oscillatornode-detune": [ @@ -7994,7 +8296,7 @@ "version_added": "79" } }, - "title": "OscillatorNode.detune" + "title": "OscillatorNode: detune property" } ], "dom-oscillatornode-frequency": [ @@ -8037,7 +8339,7 @@ "version_added": "79" } }, - "title": "OscillatorNode.frequency" + "title": "OscillatorNode: frequency property" } ], "dom-oscillatornode-setperiodicwave": [ @@ -8082,7 +8384,7 @@ "version_added": "79" } }, - "title": "OscillatorNode.setPeriodicWave()" + "title": "OscillatorNode: setPeriodicWave() method" } ], "dom-oscillatornode-type": [ @@ -8125,7 +8427,7 @@ "version_added": "79" } }, - "title": "OscillatorNode.type" + "title": "OscillatorNode: type property" } ], "OscillatorNode": [ @@ -8188,9 +8490,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -8211,7 +8511,7 @@ "version_added": "79" } }, - "title": "PannerNode()" + "title": "PannerNode: PannerNode() constructor" } ], "dom-pannernode-coneinnerangle": [ @@ -8256,7 +8556,7 @@ "version_added": "79" } }, - "title": "PannerNode.coneInnerAngle" + "title": "PannerNode: coneInnerAngle property" } ], "dom-pannernode-coneouterangle": [ @@ -8301,7 +8601,7 @@ "version_added": "79" } }, - "title": "PannerNode.coneOuterAngle" + "title": "PannerNode: coneOuterAngle property" } ], "dom-pannernode-coneoutergain": [ @@ -8346,7 +8646,7 @@ "version_added": "79" } }, - "title": "PannerNode.coneOuterGain" + "title": "PannerNode: coneOuterGain property" } ], "dom-pannernode-distancemodel": [ @@ -8391,7 +8691,7 @@ "version_added": "79" } }, - "title": "PannerNode.distanceModel" + "title": "PannerNode: distanceModel property" } ], "dom-pannernode-maxdistance": [ @@ -8436,7 +8736,7 @@ "version_added": "79" } }, - "title": "PannerNode.maxDistance" + "title": "PannerNode: maxDistance property" } ], "dom-pannernode-orientationx": [ @@ -8477,7 +8777,7 @@ "version_added": "79" } }, - "title": "PannerNode.orientationX" + "title": "PannerNode: orientationX property" } ], "dom-pannernode-orientationy": [ @@ -8518,7 +8818,7 @@ "version_added": "79" } }, - "title": "PannerNode.orientationY" + "title": "PannerNode: orientationY property" } ], "dom-pannernode-orientationz": [ @@ -8559,7 +8859,7 @@ "version_added": "79" } }, - "title": "PannerNode.orientationZ" + "title": "PannerNode: orientationZ property" } ], "dom-pannernode-panningmodel": [ @@ -8604,7 +8904,7 @@ "version_added": "79" } }, - "title": "PannerNode.panningModel" + "title": "PannerNode: panningModel property" } ], "dom-pannernode-positionx": [ @@ -8645,7 +8945,7 @@ "version_added": "79" } }, - "title": "PannerNode.positionX" + "title": "PannerNode: positionX property" } ], "dom-pannernode-positiony": [ @@ -8686,7 +8986,7 @@ "version_added": "79" } }, - "title": "PannerNode.positionY" + "title": "PannerNode: positionY property" } ], "dom-pannernode-positionz": [ @@ -8727,7 +9027,7 @@ "version_added": "79" } }, - "title": "PannerNode.positionZ" + "title": "PannerNode: positionZ property" } ], "dom-pannernode-refdistance": [ @@ -8772,7 +9072,7 @@ "version_added": "79" } }, - "title": "PannerNode.refDistance" + "title": "PannerNode: refDistance property" } ], "dom-pannernode-rollofffactor": [ @@ -8817,7 +9117,7 @@ "version_added": "79" } }, - "title": "PannerNode.rolloffFactor" + "title": "PannerNode: rolloffFactor property" } ], "PannerNode": [ @@ -8850,16 +9150,9 @@ "oculus": "mirror", "opera": "mirror", "opera_android": "mirror", - "safari": [ - { - "version_added": "14.1" - }, - { - "version_added": "6", - "version_removed": "14.1", - "prefix": "webkit" - } - ], + "safari": { + "version_added": "6" + }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": { @@ -8889,9 +9182,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -8912,7 +9203,7 @@ "version_added": "79" } }, - "title": "PeriodicWave()" + "title": "PeriodicWave: PeriodicWave() constructor" } ], "PeriodicWave": [ @@ -8979,9 +9270,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -9002,7 +9291,7 @@ "version_added": "79" } }, - "title": "StereoPannerNode()" + "title": "StereoPannerNode: StereoPannerNode() constructor" } ], "dom-stereopannernode-pan": [ @@ -9045,7 +9334,7 @@ "version_added": "79" } }, - "title": "StereoPannerNode.pan" + "title": "StereoPannerNode: pan property" } ], "stereopannernode": [ @@ -9108,9 +9397,7 @@ "version_added": "55" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "53" }, @@ -9131,7 +9418,7 @@ "version_added": "79" } }, - "title": "WaveShaperNode()" + "title": "WaveShaperNode: WaveShaperNode() constructor" } ], "dom-waveshapernode-curve": [ @@ -9148,7 +9435,7 @@ "summary": "The curve property of the WaveShaperNode interface is a Float32Array of numbers describing the distortion to apply.", "support": { "chrome": { - "version_added": "14" + "version_added": "15" }, "chrome_android": "mirror", "edge": { @@ -9176,7 +9463,7 @@ "version_added": "79" } }, - "title": "WaveShaperNode.curve" + "title": "WaveShaperNode: curve property" } ], "dom-waveshapernode-oversample": [ @@ -9193,7 +9480,7 @@ "summary": "The oversample property of the WaveShaperNode interface is an enumerated value indicating if oversampling must be used. Oversampling is a technique for creating more samples (up-sampling) before applying a distortion effect to the audio signal.", "support": { "chrome": { - "version_added": "14" + "version_added": "29" }, "chrome_android": "mirror", "edge": { @@ -9221,7 +9508,7 @@ "version_added": "79" } }, - "title": "WaveShaperNode.oversample" + "title": "WaveShaperNode: oversample property" } ], "WaveShaperNode": [ @@ -9238,7 +9525,7 @@ "summary": "The WaveShaperNode interface represents a non-linear distorter.", "support": { "chrome": { - "version_added": "14" + "version_added": "15" }, "chrome_android": "mirror", "edge": { diff --git a/bikeshed/spec-data/readonly/mdn/webauthn.json b/bikeshed/spec-data/readonly/mdn/webauthn.json index 16b033d459..f31882061f 100644 --- a/bikeshed/spec-data/readonly/mdn/webauthn.json +++ b/bikeshed/spec-data/readonly/mdn/webauthn.json @@ -56,7 +56,7 @@ "version_added": "79" } }, - "title": "AuthenticatorAssertionResponse.authenticatorData" + "title": "AuthenticatorAssertionResponse: authenticatorData property" } ], "dom-authenticatorassertionresponse-signature": [ @@ -116,7 +116,7 @@ "version_added": "79" } }, - "title": "AuthenticatorAssertionResponse.signature" + "title": "AuthenticatorAssertionResponse: signature property" } ], "dom-authenticatorassertionresponse-userhandle": [ @@ -130,7 +130,7 @@ "name": "userHandle", "slug": "API/AuthenticatorAssertionResponse/userHandle", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAssertionResponse/userHandle", - "summary": "The userHandle read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object which is an opaque identifier for the given user. Such an identifier can be used by the relying party's server to link the user account with its corresponding credentials and other data.", + "summary": "The userHandle read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object providing an opaque identifier for the given user. Such an identifier can be used by the relying party's server to link the user account with its corresponding credentials and other data.", "support": { "chrome": { "version_added": "67" @@ -176,7 +176,7 @@ "version_added": "79" } }, - "title": "AuthenticatorAssertionResponse.userHandle" + "title": "AuthenticatorAssertionResponse: userHandle property" } ], "iface-authenticatorassertionresponse": [ @@ -190,7 +190,7 @@ "name": "AuthenticatorAssertionResponse", "slug": "API/AuthenticatorAssertionResponse", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAssertionResponse", - "summary": "The AuthenticatorAssertionResponse interface of the Web Authentication API is returned by CredentialsContainer.get() when a PublicKeyCredential is passed, and provides proof to a service that it has a key pair and that the authentication request is valid and approved.", + "summary": "The AuthenticatorAssertionResponse interface of the Web Authentication API contains a digital signature from the private key of a particular WebAuthn credential. The relying party's server can verify this signature to authenticate a user, for example when they sign in.", "support": { "chrome": { "version_added": "67" @@ -296,7 +296,7 @@ "version_added": "79" } }, - "title": "AuthenticatorAttestationResponse.attestationObject" + "title": "AuthenticatorAttestationResponse: attestationObject property" } ], "dom-authenticatorattestationresponse-gettransports": [ @@ -309,7 +309,7 @@ "name": "getTransports", "slug": "API/AuthenticatorAttestationResponse/getTransports", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse/getTransports", - "summary": "getTransports() is a method of the AuthenticatorAttestationResponse interface that returns an Array containing strings describing the different transports which may be used by the authenticator.", + "summary": "The getTransports() method of the AuthenticatorAttestationResponse interface returns an array of strings describing the different transports which may be used by the authenticator.", "support": { "chrome": { "version_added": "74" @@ -338,7 +338,7 @@ "version_added": "79" } }, - "title": "AuthenticatorAttestationResponse.getTransports()" + "title": "AuthenticatorAttestationResponse: getTransports() method" } ], "authenticatorattestationresponse": [ @@ -352,7 +352,7 @@ "name": "AuthenticatorAttestationResponse", "slug": "API/AuthenticatorAttestationResponse", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse", - "summary": "The AuthenticatorAttestationResponse interface of the Web Authentication API is returned by CredentialsContainer.create() when a PublicKeyCredential is passed, and provides a cryptographic root of trust for the new key pair that has been generated. This response should be sent to the relying party's server to complete the creation of the credential.", + "summary": "The AuthenticatorAttestationResponse interface of the Web Authentication API is the result of a WebAuthn credential registration. It contains information about the credential that the server needs to perform WebAuthn assertions, such as its credential ID and public key.", "support": { "chrome": { "version_added": "67" @@ -412,7 +412,7 @@ "name": "clientDataJSON", "slug": "API/AuthenticatorResponse/clientDataJSON", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorResponse/clientDataJSON", - "summary": "The clientDataJSON property of the AuthenticatorResponse interface stores a JSON string in an ArrayBuffer, representing the client data that was passed to CredentialsContainer.create() or CredentialsContainer.get(). This property is only accessed on one of the child objects of AuthenticatorResponse, specifically AuthenticatorAttestationResponse or AuthenticatorAssertionResponse.", + "summary": "The clientDataJSON property of the AuthenticatorResponse interface stores a JSON string in an ArrayBuffer, representing the client data that was passed to navigator.credentials.create() or navigator.credentials.get(). This property is only accessed on one of the child objects of AuthenticatorResponse, specifically AuthenticatorAttestationResponse or AuthenticatorAssertionResponse.", "support": { "chrome": { "version_added": "67" @@ -458,7 +458,7 @@ "version_added": "79" } }, - "title": "AuthenticatorResponse.clientDataJSON" + "title": "AuthenticatorResponse: clientDataJSON property" } ], "authenticatorresponse": [ @@ -532,7 +532,7 @@ "name": "getClientExtensionResults", "slug": "API/PublicKeyCredential/getClientExtensionResults", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/getClientExtensionResults", - "summary": "getClientExtensionResults() is a method of the PublicKeyCredential interface that returns an ArrayBuffer which contains a map between the extensions identifiers and their results after having being processed by the client.", + "summary": "The getClientExtensionResults() method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.", "support": { "chrome": { "version_added": "67" @@ -576,7 +576,7 @@ "version_added": "79" } }, - "title": "PublicKeyCredential.getClientExtensionResults()" + "title": "PublicKeyCredential: getClientExtensionResults() method" } ], "dom-publickeycredential-isuserverifyingplatformauthenticatoravailable": [ @@ -587,10 +587,10 @@ "webkit" ], "filename": "api/PublicKeyCredential.json", - "name": "isUserVerifyingPlatformAuthenticatorAvailable", - "slug": "API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable", - "summary": "isUserVerifyingPlatformAuthenticatorAvailable() is a static method of the PublicKeyCredential interface that returns a Promise which resolves to true if a user-verifying platform authenticator is available.", + "name": "isUserVerifyingPlatformAuthenticatorAvailable_static", + "slug": "API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static", + "summary": "The isUserVerifyingPlatformAuthenticatorAvailable() static method of the PublicKeyCredential interface returns a Promise which resolves to true if a user-verifying platform authenticator is present.", "support": { "chrome": { "version_added": "67" @@ -634,7 +634,7 @@ "version_added": "79" } }, - "title": "PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()" + "title": "PublicKeyCredential: isUserVerifyingPlatformAuthenticatorAvailable() static method" } ], "ref-for-dom-publickeycredential-rawid": [ @@ -692,7 +692,7 @@ "version_added": "79" } }, - "title": "PublicKeyCredential.rawId" + "title": "PublicKeyCredential: rawId property" } ], "dom-publickeycredential-response": [ @@ -750,7 +750,7 @@ "version_added": "79" } }, - "title": "PublicKeyCredential.response" + "title": "PublicKeyCredential: response property" } ], "iface-pkcredential": [ @@ -764,7 +764,7 @@ "name": "PublicKeyCredential", "slug": "API/PublicKeyCredential", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential", - "summary": "The PublicKeyCredential interface provides information about a public key / private key pair, which is a credential for logging in to a service using an un-phishable and data-breach resistant asymmetric key pair instead of a password. It inherits from Credential, and was created by the Web Authentication API extension to the Credential Management API. Other interfaces that inherit from Credential are PasswordCredential and FederatedCredential.", + "summary": "The PublicKeyCredential interface provides information about a public key / private key pair, which is a credential for logging in to a service using an un-phishable and data-breach resistant asymmetric key pair instead of a password. It inherits from Credential, and is part of the Web Authentication API extension to the Credential Management API.", "support": { "chrome": { "version_added": "67" @@ -820,7 +820,7 @@ "name": "publickey-credentials-get", "slug": "HTTP/Headers/Feature-Policy/publickey-credentials-get", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/publickey-credentials-get", - "summary": "The HTTP Feature-Policy header publickey-credentials-get directive controls whether the current document is allowed to access the Web Authentication API to retrieve public-key credentials; i.e., via navigator.credentials.get({publicKey: ..., ...}).", + "summary": "The HTTP Permissions-Policy header publickey-credentials-get directive controls whether the current document is allowed to access the Web Authentication API to retrieve public-key credentials, i.e., via navigator.credentials.get({publicKey}).", "support": { "chrome": { "version_added": "84" @@ -851,7 +851,113 @@ "version_added": "84" } }, - "title": "Feature-Policy: publickey-credentials-get" + "title": "Permissions-Policy: publickey-credentials-get" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "publickey-credentials-create", + "slug": "HTTP/Headers/Permissions-Policy/publickey-credentials-create", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/publickey-credentials-create", + "summary": "The HTTP Permissions-Policy header publickey-credentials-create directive controls whether the current document is allowed to use the Web Authentication API to create new WebAuthn credentials, i.e., via navigator.credentials.create({publicKey}).", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "84", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": false + }, + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "84", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: publickey-credentials-create" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "publickey-credentials-get", + "slug": "HTTP/Headers/Permissions-Policy/publickey-credentials-get", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/publickey-credentials-get", + "summary": "The HTTP Permissions-Policy header publickey-credentials-get directive controls whether the current document is allowed to access the Web Authentication API to retrieve public-key credentials, i.e., via navigator.credentials.get({publicKey}).", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "84", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": { + "version_added": false + }, + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "84", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: publickey-credentials-get" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webcodecs.json b/bikeshed/spec-data/readonly/mdn/webcodecs.json index dcd38a556e..a12f28f3b6 100644 --- a/bikeshed/spec-data/readonly/mdn/webcodecs.json +++ b/bikeshed/spec-data/readonly/mdn/webcodecs.json @@ -35,7 +35,7 @@ "version_added": "94" } }, - "title": "AudioData()" + "title": "AudioData: AudioData() constructor" } ], "dom-audiodata-allocationsize": [ @@ -74,7 +74,7 @@ "version_added": "94" } }, - "title": "AudioData.allocationSize()" + "title": "AudioData: allocationSize() method" } ], "dom-audiodata-clone": [ @@ -113,7 +113,7 @@ "version_added": "94" } }, - "title": "AudioData.clone()" + "title": "AudioData: clone() method" } ], "dom-audiodata-close": [ @@ -152,7 +152,7 @@ "version_added": "94" } }, - "title": "AudioData.close()" + "title": "AudioData: close() method" } ], "dom-audiodata-copyto": [ @@ -191,7 +191,7 @@ "version_added": "94" } }, - "title": "AudioData.copyTo()" + "title": "AudioData: copyTo() method" } ], "dom-audiodata-duration": [ @@ -230,7 +230,7 @@ "version_added": "94" } }, - "title": "AudioData.duration" + "title": "AudioData: duration property" } ], "dom-audiodata-format": [ @@ -269,7 +269,7 @@ "version_added": "94" } }, - "title": "AudioData.format" + "title": "AudioData: format property" } ], "dom-audiodata-numberofchannels": [ @@ -308,7 +308,7 @@ "version_added": "94" } }, - "title": "AudioData.numberOfChannels" + "title": "AudioData: numberOfChannels property" } ], "dom-audiodata-numberofframes": [ @@ -347,7 +347,7 @@ "version_added": "94" } }, - "title": "AudioData.numberOfFrames" + "title": "AudioData: numberOfFrames property" } ], "dom-audiodata-samplerate": [ @@ -386,7 +386,7 @@ "version_added": "94" } }, - "title": "AudioData.sampleRate" + "title": "AudioData: sampleRate property" } ], "dom-audiodata-timestamp": [ @@ -425,7 +425,7 @@ "version_added": "94" } }, - "title": "AudioData.timestamp" + "title": "AudioData: timestamp property" } ], "audiodata-interface": [ @@ -503,7 +503,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.AudioDecoder()" + "title": "AudioDecoder: AudioDecoder() constructor" } ], "dom-audiodecoder-close": [ @@ -542,7 +542,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.close()" + "title": "AudioDecoder: close() method" } ], "dom-audiodecoder-configure": [ @@ -581,7 +581,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.configure()" + "title": "AudioDecoder: configure() method" } ], "dom-audiodecoder-decode": [ @@ -620,7 +620,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.decode()" + "title": "AudioDecoder: decode() method" } ], "dom-audiodecoder-decodequeuesize": [ @@ -659,7 +659,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.decodeQueueSize" + "title": "AudioDecoder: decodeQueueSize property" } ], "dom-audiodecoder-flush": [ @@ -698,7 +698,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.flush()" + "title": "AudioDecoder: flush() method" } ], "dom-audiodecoder-reset": [ @@ -737,7 +737,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.reset()" + "title": "AudioDecoder: reset() method" } ], "dom-audiodecoder-state": [ @@ -776,7 +776,7 @@ "version_added": "94" } }, - "title": "AudioDecoder.state" + "title": "AudioDecoder: state property" } ], "audiodecoder-interface": [ @@ -854,7 +854,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.AudioEncoder()" + "title": "AudioEncoder: AudioEncoder() constructor" } ], "dom-audioencoder-close": [ @@ -893,7 +893,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.close()" + "title": "AudioEncoder: close() method" } ], "dom-audioencoder-configure": [ @@ -932,7 +932,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.configure()" + "title": "AudioEncoder: configure() method" } ], "dom-audioencoder-encode": [ @@ -971,7 +971,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.encode()" + "title": "AudioEncoder: encode() method" } ], "dom-audioencoder-encodequeuesize": [ @@ -1010,7 +1010,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.encodeQueueSize" + "title": "AudioEncoder: encodeQueueSize property" } ], "dom-audioencoder-flush": [ @@ -1049,7 +1049,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.flush()" + "title": "AudioEncoder: flush() method" } ], "dom-audioencoder-reset": [ @@ -1088,7 +1088,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.reset()" + "title": "AudioEncoder: reset() method" } ], "dom-audioencoder-state": [ @@ -1127,7 +1127,7 @@ "version_added": "94" } }, - "title": "AudioEncoder.state" + "title": "AudioEncoder: state property" } ], "audioencoder-interface": [ @@ -1139,7 +1139,7 @@ "name": "AudioEncoder", "slug": "API/AudioEncoder", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/AudioEncoder", - "summary": "Creates a new AudioEncoder object.", + "summary": "The AudioEncoder interface of the WebCodecs API encodes AudioData objects.", "support": { "chrome": { "version_added": "94" @@ -1205,7 +1205,7 @@ "version_added": "94" } }, - "title": "EncodedAudioChunk()" + "title": "EncodedAudioChunk: EncodedAudioChunk() constructor" } ], "dom-encodedaudiochunk-bytelength": [ @@ -1244,7 +1244,7 @@ "version_added": "94" } }, - "title": "EncodedAudioChunk.byteLength" + "title": "EncodedAudioChunk: byteLength property" } ], "dom-encodedaudiochunk-copyto": [ @@ -1283,7 +1283,7 @@ "version_added": "94" } }, - "title": "EncodedAudioChunk.copyTo()" + "title": "EncodedAudioChunk: copyTo() method" } ], "dom-encodedaudiochunk-duration": [ @@ -1322,7 +1322,7 @@ "version_added": "94" } }, - "title": "EncodedAudioChunk.duration" + "title": "EncodedAudioChunk: duration property" } ], "dom-encodedaudiochunk-timestamp": [ @@ -1361,7 +1361,7 @@ "version_added": "94" } }, - "title": "EncodedAudioChunk.timestamp" + "title": "EncodedAudioChunk: timestamp property" } ], "dom-encodedaudiochunk-type": [ @@ -1400,7 +1400,7 @@ "version_added": "94" } }, - "title": "EncodedAudioChunk.type" + "title": "EncodedAudioChunk: type property" } ], "encodedaudiochunk-interface": [ @@ -1445,7 +1445,8 @@ "dom-encodedvideochunk-encodedvideochunk": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "EncodedVideoChunk", @@ -1469,7 +1470,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1478,13 +1479,14 @@ "version_added": "94" } }, - "title": "EncodedVideoChunk()" + "title": "EncodedVideoChunk: EncodedVideoChunk() constructor" } ], "dom-encodedvideochunk-bytelength": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "byteLength", @@ -1508,7 +1510,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1517,13 +1519,14 @@ "version_added": "94" } }, - "title": "EncodedVideoChunk.byteLength" + "title": "EncodedVideoChunk: byteLength property" } ], "dom-encodedvideochunk-copyto": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "copyTo", @@ -1547,7 +1550,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1556,13 +1559,14 @@ "version_added": "94" } }, - "title": "EncodedVideoChunk.copyTo()" + "title": "EncodedVideoChunk: copyTo() method" } ], "dom-encodedvideochunk-duration": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "duration", @@ -1586,7 +1590,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1595,13 +1599,14 @@ "version_added": "94" } }, - "title": "EncodedVideoChunk.duration" + "title": "EncodedVideoChunk: duration property" } ], "dom-encodedvideochunk-timestamp": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "timestamp", @@ -1625,7 +1630,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1634,13 +1639,14 @@ "version_added": "94" } }, - "title": "EncodedVideoChunk.timestamp" + "title": "EncodedVideoChunk: timestamp property" } ], "dom-encodedvideochunk-type": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "type", @@ -1664,7 +1670,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1673,13 +1679,14 @@ "version_added": "94" } }, - "title": "EncodedVideoChunk.type" + "title": "EncodedVideoChunk: type property" } ], "encodedvideochunk-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/EncodedVideoChunk.json", "name": "EncodedVideoChunk", @@ -1703,7 +1710,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -1751,7 +1758,7 @@ "version_added": "94" } }, - "title": "ImageDecoder()" + "title": "ImageDecoder: ImageDecoder() constructor" } ], "dom-imagedecoder-close": [ @@ -1790,7 +1797,7 @@ "version_added": "94" } }, - "title": "ImageDecoder.close()" + "title": "ImageDecoder: close() method" } ], "dom-imagedecoder-complete": [ @@ -1829,7 +1836,7 @@ "version_added": "94" } }, - "title": "ImageDecoder.complete" + "title": "ImageDecoder: complete property" } ], "dom-imagedecoder-completed": [ @@ -1868,7 +1875,85 @@ "version_added": "94" } }, - "title": "ImageDecoder.completed" + "title": "ImageDecoder: completed property" + } + ], + "dom-imagedecoder-decode": [ + { + "engines": [ + "blink" + ], + "filename": "api/ImageDecoder.json", + "name": "decode", + "slug": "API/ImageDecoder/decode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ImageDecoder/decode", + "summary": "The decode() method of the ImageDecoder interface enqueues a control message to decode the frame of an image.", + "support": { + "chrome": { + "version_added": "94" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94" + } + }, + "title": "ImageDecoder: decode() method" + } + ], + "dom-imagedecoder-istypesupported": [ + { + "engines": [ + "blink" + ], + "filename": "api/ImageDecoder.json", + "name": "isTypeSupported_static", + "slug": "API/ImageDecoder/isTypeSupported_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ImageDecoder/isTypeSupported_static", + "summary": "The ImageDecoder.isTypeSupported() static method checks if a given MIME type can be decoded by the user agent.", + "support": { + "chrome": { + "version_added": "94" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94" + } + }, + "title": "ImageDecoder: isTypeSupported() static method" } ], "dom-imagedecoder-reset": [ @@ -1907,7 +1992,7 @@ "version_added": "94" } }, - "title": "ImageDecoder.reset()" + "title": "ImageDecoder: reset() method" } ], "dom-imagedecoder-tracks": [ @@ -1946,7 +2031,46 @@ "version_added": "94" } }, - "title": "ImageDecoder.tracks" + "title": "ImageDecoder: tracks property" + } + ], + "dom-imagedecoder-type": [ + { + "engines": [ + "blink" + ], + "filename": "api/ImageDecoder.json", + "name": "type", + "slug": "API/ImageDecoder/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/ImageDecoder/type", + "summary": "The type read-only property of the ImageDecoder interface reflects the MIME type configured during construction.", + "support": { + "chrome": { + "version_added": "94" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "94" + } + }, + "title": "ImageDecoder: type property" } ], "imagedecoder-interface": [ @@ -2024,7 +2148,7 @@ "version_added": "94" } }, - "title": "ImageTrack.animated" + "title": "ImageTrack: animated property" } ], "dom-imagetrack-framecount": [ @@ -2063,7 +2187,7 @@ "version_added": "94" } }, - "title": "ImageTrack.frameCount" + "title": "ImageTrack: frameCount property" } ], "dom-imagetrack-repetitioncount": [ @@ -2102,7 +2226,7 @@ "version_added": "94" } }, - "title": "ImageTrack.repetitionCount" + "title": "ImageTrack: repetitionCount property" } ], "dom-imagetrack-selected": [ @@ -2141,7 +2265,7 @@ "version_added": "94" } }, - "title": "ImageTrack.selected" + "title": "ImageTrack: selected property" } ], "imagetrack-interface": [ @@ -2219,7 +2343,7 @@ "version_added": "94" } }, - "title": "ImageTrackList.length" + "title": "ImageTrackList: length property" } ], "dom-imagetracklist-ready": [ @@ -2258,7 +2382,7 @@ "version_added": "94" } }, - "title": "ImageTrackList.ready" + "title": "ImageTrackList: ready property" } ], "dom-imagetracklist-selectedindex": [ @@ -2297,7 +2421,7 @@ "version_added": "94" } }, - "title": "ImageTrackList.selectedIndex" + "title": "ImageTrackList: selectedIndex property" } ], "dom-imagetracklist-selectedtrack": [ @@ -2336,7 +2460,7 @@ "version_added": "94" } }, - "title": "ImageTrackList.selectedTrack" + "title": "ImageTrackList: selectedTrack property" } ], "imagetracklist-interface": [ @@ -2414,7 +2538,7 @@ "version_added": "94" } }, - "title": "VideoColorSpace()" + "title": "VideoColorSpace: VideoColorSpace() constructor" } ], "dom-videocolorspace-fullrange": [ @@ -2454,7 +2578,7 @@ "version_added": "94" } }, - "title": "VideoColorSpace.fullRange" + "title": "VideoColorSpace: fullRange property" } ], "dom-videocolorspace-matrix": [ @@ -2494,7 +2618,7 @@ "version_added": "94" } }, - "title": "VideoColorSpace.matrix" + "title": "VideoColorSpace: matrix property" } ], "dom-videocolorspace-primaries": [ @@ -2534,7 +2658,7 @@ "version_added": "94" } }, - "title": "VideoColorSpace.primaries" + "title": "VideoColorSpace: primaries property" } ], "dom-videocolorspace-tojson": [ @@ -2574,7 +2698,7 @@ "version_added": "94" } }, - "title": "VideoColorSpace.toJSON()" + "title": "VideoColorSpace: toJSON() method" } ], "dom-videocolorspace-transfer": [ @@ -2614,7 +2738,7 @@ "version_added": "94" } }, - "title": "VideoColorSpace.transfer" + "title": "VideoColorSpace: transfer property" } ], "videocolorspace": [ @@ -2660,7 +2784,8 @@ "dom-videodecoder-videodecoder": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "VideoDecoder", @@ -2684,7 +2809,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2693,13 +2818,14 @@ "version_added": "94" } }, - "title": "VideoDecoder()" + "title": "VideoDecoder: VideoDecoder() constructor" } ], "dom-videodecoder-close": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "close", @@ -2723,7 +2849,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2732,13 +2858,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.close()" + "title": "VideoDecoder: close() method" } ], "dom-videodecoder-configure": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "configure", @@ -2762,7 +2889,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2771,13 +2898,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.configure()" + "title": "VideoDecoder: configure() method" } ], "dom-videodecoder-decode": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "decode", @@ -2801,7 +2929,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2810,13 +2938,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.decode()" + "title": "VideoDecoder: decode() method" } ], "dom-videodecoder-decodequeuesize": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "decodeQueueSize", @@ -2840,7 +2969,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2849,13 +2978,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.decodeQueueSize" + "title": "VideoDecoder: decodeQueueSize property" } ], "dom-videodecoder-flush": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "flush", @@ -2879,7 +3009,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2888,13 +3018,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.flush()" + "title": "VideoDecoder: flush() method" } ], "dom-videodecoder-reset": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "reset", @@ -2918,7 +3049,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2927,13 +3058,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.reset()" + "title": "VideoDecoder: reset() method" } ], "dom-videodecoder-state": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "state", @@ -2957,7 +3089,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -2966,13 +3098,14 @@ "version_added": "94" } }, - "title": "VideoDecoder.state" + "title": "VideoDecoder: state property" } ], "videodecoder-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoDecoder.json", "name": "VideoDecoder", @@ -2996,7 +3129,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3011,13 +3144,14 @@ "dom-videoencoder-videoencoder": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "VideoEncoder", "slug": "API/VideoEncoder/VideoEncoder", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoEncoder/VideoEncoder", - "summary": "The VideoEncoder() constructor creates a new VideoEncoder object with the provided init.output callback assigned as the output callback, the provided init.error callback as the error callback, and the VideoEncoder.state set to \"unconfigured\".", + "summary": "The VideoEncoder() constructor creates a new VideoEncoder object with the provided options.output callback assigned as the output callback, the provided options.error callback as the error callback, and sets the VideoEncoder.state to \"unconfigured\".", "support": { "chrome": { "version_added": "94" @@ -3035,7 +3169,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3044,13 +3178,14 @@ "version_added": "94" } }, - "title": "VideoEncoder()" + "title": "VideoEncoder: VideoEncoder() constructor" } ], "dom-videoencoder-close": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "close", @@ -3074,7 +3209,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3083,19 +3218,20 @@ "version_added": "94" } }, - "title": "VideoEncoder.close()" + "title": "VideoEncoder: close() method" } ], "dom-videoencoder-configure": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "configure", "slug": "API/VideoEncoder/configure", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoEncoder/configure", - "summary": "The configure() method of the VideoEncoder interface enqueues a control message to configure the video encoder for encoding chunks.", + "summary": "The configure() method of the VideoEncoder interface changes the state of the encoder to \"configured\" and asynchronously prepares the encoder to accept VideoEncoders for encoding with the specified parameters. If the encoder doesn't support the specified parameters or can't be initialized for other reasons an error will be reported via the error callback provided to the VideoEncoder constructor.", "support": { "chrome": { "version_added": "94" @@ -3113,7 +3249,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3122,19 +3258,20 @@ "version_added": "94" } }, - "title": "VideoEncoder.configure()" + "title": "VideoEncoder: configure() method" } ], "dom-videoencoder-encode": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "encode", "slug": "API/VideoEncoder/encode", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoEncoder/encode", - "summary": "The encode() method of the VideoEncoder interface enqueues a control message to encode a given VideoFrame.", + "summary": "The encode() method of the VideoEncoder interface asynchronously encodes a VideoFrame. Encoded data (EncodedVideoChunk) or an error will eventually be returned via the callbacks provided to the VideoEncoder constructor.", "support": { "chrome": { "version_added": "94" @@ -3152,7 +3289,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3161,13 +3298,14 @@ "version_added": "94" } }, - "title": "VideoEncoder.encode()" + "title": "VideoEncoder: encode() method" } ], "dom-videoencoder-encodequeuesize": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "encodeQueueSize", @@ -3191,7 +3329,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3200,19 +3338,20 @@ "version_added": "94" } }, - "title": "VideoEncoder.encodeQueueSize" + "title": "VideoEncoder: encodeQueueSize property" } ], "dom-videoencoder-reset": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "reset", "slug": "API/VideoEncoder/reset", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoEncoder/reset", - "summary": "The reset() method of the VideoEncoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.", + "summary": "The reset() method of the VideoEncoder interface synchronously cancels all pending encodes and callbacks, frees all underlying resources and sets the state to \"unconfigured\". After calling reset(), configure() must be called before resuming encode() calls.", "support": { "chrome": { "version_added": "94" @@ -3230,7 +3369,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3239,13 +3378,14 @@ "version_added": "94" } }, - "title": "VideoEncoder.reset()" + "title": "VideoEncoder: reset() method" } ], "dom-videoencoder-state": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "state", @@ -3269,7 +3409,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3278,19 +3418,20 @@ "version_added": "94" } }, - "title": "VideoEncoder.state" + "title": "VideoEncoder: state property" } ], "videoencoder-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoEncoder.json", "name": "VideoEncoder", "slug": "API/VideoEncoder", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/VideoEncoder", - "summary": "The VideoEncoder interface of the WebCodecs API encodes VideoFrame objects.", + "summary": "The VideoEncoder interface of the WebCodecs API encodes VideoFrame objects into EncodedVideoChunks.", "support": { "chrome": { "version_added": "94" @@ -3308,7 +3449,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3323,7 +3464,8 @@ "dom-videoframe-videoframe": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "VideoFrame", @@ -3347,7 +3489,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3356,13 +3498,14 @@ "version_added": "94" } }, - "title": "VideoFrame()" + "title": "VideoFrame: VideoFrame() constructor" } ], "dom-videoframe-allocationsize": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "allocationSize", @@ -3386,7 +3529,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3395,13 +3538,14 @@ "version_added": "94" } }, - "title": "VideoFrame.allocationSize()" + "title": "VideoFrame: allocationSize() method" } ], "dom-videoframe-clone": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "clone", @@ -3425,7 +3569,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3434,13 +3578,14 @@ "version_added": "94" } }, - "title": "VideoFrame.clone()" + "title": "VideoFrame: clone() method" } ], "dom-videoframe-close": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "close", @@ -3464,7 +3609,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3473,13 +3618,14 @@ "version_added": "94" } }, - "title": "VideoFrame.close()" + "title": "VideoFrame: close() method" } ], "dom-videoframe-codedheight": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "codedHeight", @@ -3503,7 +3649,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3512,13 +3658,14 @@ "version_added": "94" } }, - "title": "VideoFrame.codedHeight" + "title": "VideoFrame: codedHeight property" } ], "dom-videoframe-codedrect": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "codedRect", @@ -3542,7 +3689,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3551,13 +3698,14 @@ "version_added": "94" } }, - "title": "VideoFrame.codedRect" + "title": "VideoFrame: codedRect property" } ], "dom-videoframe-codedwidth": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "codedWidth", @@ -3581,7 +3729,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3590,13 +3738,14 @@ "version_added": "94" } }, - "title": "VideoFrame.codedWidth" + "title": "VideoFrame: codedWidth property" } ], "dom-videoframe-colorspace": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "colorSpace", @@ -3620,7 +3769,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3629,13 +3778,14 @@ "version_added": "94" } }, - "title": "VideoFrame.colorSpace" + "title": "VideoFrame: colorSpace property" } ], "dom-videoframe-displayheight": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "displayHeight", @@ -3659,7 +3809,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3668,13 +3818,14 @@ "version_added": "94" } }, - "title": "VideoFrame.displayHeight" + "title": "VideoFrame: displayHeight property" } ], "dom-videoframe-displaywidth": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "displayWidth", @@ -3698,7 +3849,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3707,13 +3858,14 @@ "version_added": "94" } }, - "title": "VideoFrame.displayWidth" + "title": "VideoFrame: displayWidth property" } ], "dom-videoframe-duration": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "duration", @@ -3737,7 +3889,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3746,13 +3898,14 @@ "version_added": "94" } }, - "title": "VideoFrame.duration" + "title": "VideoFrame: duration property" } ], "dom-videoframe-format": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "format", @@ -3776,7 +3929,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3785,13 +3938,14 @@ "version_added": "94" } }, - "title": "VideoFrame.format" + "title": "VideoFrame: format property" } ], "dom-videoframe-timestamp": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "timestamp", @@ -3815,7 +3969,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3824,13 +3978,14 @@ "version_added": "94" } }, - "title": "VideoFrame.timestamp" + "title": "VideoFrame: timestamp property" } ], "dom-videoframe-visiblerect": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "visibleRect", @@ -3854,7 +4009,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3863,13 +4018,14 @@ "version_added": "94" } }, - "title": "VideoFrame.visibleRect" + "title": "VideoFrame: visibleRect property" } ], "videoframe-interface": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/VideoFrame.json", "name": "VideoFrame", @@ -3893,7 +4049,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/webcrypto.json b/bikeshed/spec-data/readonly/mdn/webcrypto.json index 8d373b7439..1f0a6edca9 100644 --- a/bikeshed/spec-data/readonly/mdn/webcrypto.json +++ b/bikeshed/spec-data/readonly/mdn/webcrypto.json @@ -53,7 +53,7 @@ "feature": "getrandomvalues", "title": "crypto.getRandomValues()" }, - "title": "Crypto.getRandomValues()" + "title": "Crypto: getRandomValues() method" } ], "Crypto-method-randomUUID": [ @@ -107,7 +107,7 @@ "version_added": "92" } }, - "title": "Crypto.randomUUID()" + "title": "Crypto: randomUUID() method" } ], "Crypto-attribute-subtle": [ @@ -163,7 +163,7 @@ "version_added": "79" } }, - "title": "Crypto.subtle" + "title": "Crypto: subtle property" } ], "crypto-interface": [ @@ -246,9 +246,9 @@ ], "filename": "api/CryptoKey.json", "name": "algorithm", - "slug": "API/CryptoKey", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey", - "summary": "The CryptoKey interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods generateKey(), deriveKey(), importKey(), or unwrapKey().", + "slug": "API/CryptoKey/algorithm", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey/algorithm", + "summary": "The read-only algorithm property of the CryptoKey interface returns an object describing the algorithm for which this key can be used, and any associated extra parameters.", "support": { "chrome": { "version_added": "37" @@ -283,7 +283,7 @@ "version_added": "79" } }, - "title": "CryptoKey" + "title": "CryptoKey: algorithm property" } ], "dom-cryptokey-extractable": [ @@ -295,9 +295,9 @@ ], "filename": "api/CryptoKey.json", "name": "extractable", - "slug": "API/CryptoKey", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey", - "summary": "The CryptoKey interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods generateKey(), deriveKey(), importKey(), or unwrapKey().", + "slug": "API/CryptoKey/extractable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey/extractable", + "summary": "The read-only extractable property of the CryptoKey interface indicates whether or not the key may be extracted using SubtleCrypto.exportKey() or SubtleCrypto.wrapKey().", "support": { "chrome": { "version_added": "37" @@ -339,7 +339,7 @@ "version_added": "79" } }, - "title": "CryptoKey" + "title": "CryptoKey: extractable property" } ], "dom-cryptokey-type": [ @@ -351,9 +351,9 @@ ], "filename": "api/CryptoKey.json", "name": "type", - "slug": "API/CryptoKey", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey", - "summary": "The CryptoKey interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods generateKey(), deriveKey(), importKey(), or unwrapKey().", + "slug": "API/CryptoKey/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey/type", + "summary": "The read-only type property of the CryptoKey interface indicates which kind of key is represented by the object. It can have the following values:", "support": { "chrome": { "version_added": "37" @@ -388,7 +388,7 @@ "version_added": "79" } }, - "title": "CryptoKey" + "title": "CryptoKey: type property" } ], "dom-cryptokey-usages": [ @@ -400,9 +400,9 @@ ], "filename": "api/CryptoKey.json", "name": "usages", - "slug": "API/CryptoKey", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey", - "summary": "The CryptoKey interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods generateKey(), deriveKey(), importKey(), or unwrapKey().", + "slug": "API/CryptoKey/usages", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey/usages", + "summary": "The read-only usages property of the CryptoKey interface indicates what can be done with the key.", "support": { "chrome": { "version_added": "37" @@ -437,7 +437,7 @@ "version_added": "79" } }, - "title": "CryptoKey" + "title": "CryptoKey: usages property" } ], "cryptokey-interface": [ @@ -551,7 +551,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.decrypt()" + "title": "SubtleCrypto: decrypt() method" } ], "SubtleCrypto-method-deriveBits": [ @@ -612,7 +612,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.deriveBits()" + "title": "SubtleCrypto: deriveBits() method" } ], "SubtleCrypto-method-deriveKey": [ @@ -665,7 +665,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.deriveKey()" + "title": "SubtleCrypto: deriveKey() method" } ], "SubtleCrypto-method-digest": [ @@ -716,7 +716,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.digest()" + "title": "SubtleCrypto: digest() method" } ], "SubtleCrypto-method-encrypt": [ @@ -781,7 +781,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.encrypt()" + "title": "SubtleCrypto: encrypt() method" } ], "SubtleCrypto-method-exportKey": [ @@ -850,7 +850,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.exportKey()" + "title": "SubtleCrypto: exportKey() method" } ], "SubtleCrypto-method-generateKey": [ @@ -915,7 +915,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.generateKey()" + "title": "SubtleCrypto: generateKey() method" } ], "SubtleCrypto-method-importKey": [ @@ -987,7 +987,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.importKey()" + "title": "SubtleCrypto: importKey() method" } ], "SubtleCrypto-method-sign": [ @@ -1039,7 +1039,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.sign()" + "title": "SubtleCrypto: sign() method" } ], "SubtleCrypto-method-unwrapKey": [ @@ -1094,7 +1094,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.unwrapKey()" + "title": "SubtleCrypto: unwrapKey() method" } ], "SubtleCrypto-method-verify": [ @@ -1154,7 +1154,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.verify()" + "title": "SubtleCrypto: verify() method" } ], "SubtleCrypto-method-wrapKey": [ @@ -1205,7 +1205,7 @@ "version_added": "79" } }, - "title": "SubtleCrypto.wrapKey()" + "title": "SubtleCrypto: wrapKey() method" } ], "subtlecrypto-interface": [ @@ -1310,7 +1310,7 @@ "version_added": "79" } }, - "title": "self.crypto" + "title": "crypto global property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webdriver.json b/bikeshed/spec-data/readonly/mdn/webdriver.json index 237a00082b..a12d313002 100644 --- a/bikeshed/spec-data/readonly/mdn/webdriver.json +++ b/bikeshed/spec-data/readonly/mdn/webdriver.json @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "Navigator.webdriver" + "title": "Navigator: webdriver property" } ], "dfn-close-window": [ diff --git a/bikeshed/spec-data/readonly/mdn/webgl-1.json b/bikeshed/spec-data/readonly/mdn/webgl-1.json index 3c1e966bc9..c8b4c08bdc 100644 --- a/bikeshed/spec-data/readonly/mdn/webgl-1.json +++ b/bikeshed/spec-data/readonly/mdn/webgl-1.json @@ -192,7 +192,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.activeTexture()" + "title": "WebGLRenderingContext: activeTexture() method" }, { "engines": [ @@ -233,7 +233,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendColor()" + "title": "WebGLRenderingContext: blendColor() method" }, { "engines": [ @@ -274,7 +274,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendEquation()" + "title": "WebGLRenderingContext: blendEquation() method" }, { "engines": [ @@ -315,7 +315,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendEquationSeparate()" + "title": "WebGLRenderingContext: blendEquationSeparate() method" }, { "engines": [ @@ -356,7 +356,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendFunc()" + "title": "WebGLRenderingContext: blendFunc() method" }, { "engines": [ @@ -397,7 +397,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendFuncSeparate()" + "title": "WebGLRenderingContext: blendFuncSeparate() method" }, { "engines": [ @@ -438,7 +438,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clearColor()" + "title": "WebGLRenderingContext: clearColor() method" }, { "engines": [ @@ -479,7 +479,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clearDepth()" + "title": "WebGLRenderingContext: clearDepth() method" }, { "engines": [ @@ -520,7 +520,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clearStencil()" + "title": "WebGLRenderingContext: clearStencil() method" }, { "engines": [ @@ -561,7 +561,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.colorMask()" + "title": "WebGLRenderingContext: colorMask() method" }, { "engines": [ @@ -602,7 +602,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.cullFace()" + "title": "WebGLRenderingContext: cullFace() method" }, { "engines": [ @@ -643,7 +643,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.depthFunc()" + "title": "WebGLRenderingContext: depthFunc() method" }, { "engines": [ @@ -684,7 +684,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.depthMask()" + "title": "WebGLRenderingContext: depthMask() method" }, { "engines": [ @@ -725,7 +725,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.depthRange()" + "title": "WebGLRenderingContext: depthRange() method" }, { "engines": [ @@ -766,7 +766,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.disable()" + "title": "WebGLRenderingContext: disable() method" }, { "engines": [ @@ -807,7 +807,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.enable()" + "title": "WebGLRenderingContext: enable() method" }, { "engines": [ @@ -848,7 +848,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.frontFace()" + "title": "WebGLRenderingContext: frontFace() method" }, { "engines": [ @@ -889,7 +889,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getError()" + "title": "WebGLRenderingContext: getError() method" }, { "engines": [ @@ -930,7 +930,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getParameter()" + "title": "WebGLRenderingContext: getParameter() method" }, { "engines": [ @@ -971,7 +971,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.hint()" + "title": "WebGLRenderingContext: hint() method" }, { "engines": [ @@ -1012,7 +1012,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isEnabled()" + "title": "WebGLRenderingContext: isEnabled() method" }, { "engines": [ @@ -1053,7 +1053,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.pixelStorei()" + "title": "WebGLRenderingContext: pixelStorei() method" }, { "engines": [ @@ -1094,7 +1094,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.polygonOffset()" + "title": "WebGLRenderingContext: polygonOffset() method" }, { "engines": [ @@ -1135,7 +1135,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.sampleCoverage()" + "title": "WebGLRenderingContext: sampleCoverage() method" }, { "engines": [ @@ -1176,7 +1176,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilFunc()" + "title": "WebGLRenderingContext: stencilFunc() method" }, { "engines": [ @@ -1217,7 +1217,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilFuncSeparate()" + "title": "WebGLRenderingContext: stencilFuncSeparate() method" }, { "engines": [ @@ -1258,7 +1258,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilMask()" + "title": "WebGLRenderingContext: stencilMask() method" }, { "engines": [ @@ -1299,7 +1299,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilMaskSeparate()" + "title": "WebGLRenderingContext: stencilMaskSeparate() method" }, { "engines": [ @@ -1340,7 +1340,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilOp()" + "title": "WebGLRenderingContext: stencilOp() method" }, { "engines": [ @@ -1381,7 +1381,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilOpSeparate()" + "title": "WebGLRenderingContext: stencilOpSeparate() method" }, { "engines": [ @@ -1432,7 +1432,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.activeTexture()" + "title": "WebGLRenderingContext: activeTexture() method" }, { "engines": [ @@ -1483,7 +1483,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendColor()" + "title": "WebGLRenderingContext: blendColor() method" }, { "engines": [ @@ -1534,7 +1534,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendEquation()" + "title": "WebGLRenderingContext: blendEquation() method" }, { "engines": [ @@ -1585,7 +1585,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendEquationSeparate()" + "title": "WebGLRenderingContext: blendEquationSeparate() method" }, { "engines": [ @@ -1636,7 +1636,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendFunc()" + "title": "WebGLRenderingContext: blendFunc() method" }, { "engines": [ @@ -1687,7 +1687,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.blendFuncSeparate()" + "title": "WebGLRenderingContext: blendFuncSeparate() method" }, { "engines": [ @@ -1738,7 +1738,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clearColor()" + "title": "WebGLRenderingContext: clearColor() method" }, { "engines": [ @@ -1789,7 +1789,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clearDepth()" + "title": "WebGLRenderingContext: clearDepth() method" }, { "engines": [ @@ -1840,7 +1840,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clearStencil()" + "title": "WebGLRenderingContext: clearStencil() method" }, { "engines": [ @@ -1891,7 +1891,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.colorMask()" + "title": "WebGLRenderingContext: colorMask() method" }, { "engines": [ @@ -1942,7 +1942,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.cullFace()" + "title": "WebGLRenderingContext: cullFace() method" }, { "engines": [ @@ -1993,7 +1993,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.depthFunc()" + "title": "WebGLRenderingContext: depthFunc() method" }, { "engines": [ @@ -2044,7 +2044,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.depthMask()" + "title": "WebGLRenderingContext: depthMask() method" }, { "engines": [ @@ -2095,7 +2095,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.depthRange()" + "title": "WebGLRenderingContext: depthRange() method" }, { "engines": [ @@ -2146,7 +2146,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.disable()" + "title": "WebGLRenderingContext: disable() method" }, { "engines": [ @@ -2197,7 +2197,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.enable()" + "title": "WebGLRenderingContext: enable() method" }, { "engines": [ @@ -2248,7 +2248,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.frontFace()" + "title": "WebGLRenderingContext: frontFace() method" }, { "engines": [ @@ -2299,7 +2299,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getError()" + "title": "WebGLRenderingContext: getError() method" }, { "engines": [ @@ -2350,7 +2350,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getParameter()" + "title": "WebGLRenderingContext: getParameter() method" }, { "engines": [ @@ -2401,7 +2401,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.hint()" + "title": "WebGLRenderingContext: hint() method" }, { "engines": [ @@ -2452,7 +2452,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isEnabled()" + "title": "WebGLRenderingContext: isEnabled() method" }, { "engines": [ @@ -2503,7 +2503,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.lineWidth()" + "title": "WebGLRenderingContext: lineWidth() method" }, { "engines": [ @@ -2554,7 +2554,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.pixelStorei()" + "title": "WebGLRenderingContext: pixelStorei() method" }, { "engines": [ @@ -2605,7 +2605,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.polygonOffset()" + "title": "WebGLRenderingContext: polygonOffset() method" }, { "engines": [ @@ -2656,7 +2656,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.sampleCoverage()" + "title": "WebGLRenderingContext: sampleCoverage() method" }, { "engines": [ @@ -2707,7 +2707,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilFunc()" + "title": "WebGLRenderingContext: stencilFunc() method" }, { "engines": [ @@ -2758,7 +2758,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilFuncSeparate()" + "title": "WebGLRenderingContext: stencilFuncSeparate() method" }, { "engines": [ @@ -2809,7 +2809,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilMask()" + "title": "WebGLRenderingContext: stencilMask() method" }, { "engines": [ @@ -2860,7 +2860,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilMaskSeparate()" + "title": "WebGLRenderingContext: stencilMaskSeparate() method" }, { "engines": [ @@ -2911,7 +2911,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilOp()" + "title": "WebGLRenderingContext: stencilOp() method" }, { "engines": [ @@ -2962,7 +2962,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.stencilOpSeparate()" + "title": "WebGLRenderingContext: stencilOpSeparate() method" } ], "5.14.9": [ @@ -3005,7 +3005,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.attachShader()" + "title": "WebGLRenderingContext: attachShader() method" }, { "engines": [ @@ -3046,7 +3046,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindAttribLocation()" + "title": "WebGLRenderingContext: bindAttribLocation() method" }, { "engines": [ @@ -3087,7 +3087,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compileShader()" + "title": "WebGLRenderingContext: compileShader() method" }, { "engines": [ @@ -3128,7 +3128,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createProgram()" + "title": "WebGLRenderingContext: createProgram() method" }, { "engines": [ @@ -3169,7 +3169,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createShader()" + "title": "WebGLRenderingContext: createShader() method" }, { "engines": [ @@ -3210,7 +3210,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteProgram()" + "title": "WebGLRenderingContext: deleteProgram() method" }, { "engines": [ @@ -3251,7 +3251,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteShader()" + "title": "WebGLRenderingContext: deleteShader() method" }, { "engines": [ @@ -3292,7 +3292,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.detachShader()" + "title": "WebGLRenderingContext: detachShader() method" }, { "engines": [ @@ -3333,7 +3333,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getAttachedShaders()" + "title": "WebGLRenderingContext: getAttachedShaders() method" }, { "engines": [ @@ -3374,7 +3374,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getProgramInfoLog()" + "title": "WebGLRenderingContext: getProgramInfoLog() method" }, { "engines": [ @@ -3415,7 +3415,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getProgramParameter()" + "title": "WebGLRenderingContext: getProgramParameter() method" }, { "engines": [ @@ -3456,7 +3456,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderInfoLog()" + "title": "WebGLRenderingContext: getShaderInfoLog() method" }, { "engines": [ @@ -3497,7 +3497,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderParameter()" + "title": "WebGLRenderingContext: getShaderParameter() method" }, { "engines": [ @@ -3538,7 +3538,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderPrecisionFormat()" + "title": "WebGLRenderingContext: getShaderPrecisionFormat() method" }, { "engines": [ @@ -3579,7 +3579,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderSource()" + "title": "WebGLRenderingContext: getShaderSource() method" }, { "engines": [ @@ -3620,7 +3620,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isProgram()" + "title": "WebGLRenderingContext: isProgram() method" }, { "engines": [ @@ -3661,7 +3661,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isShader()" + "title": "WebGLRenderingContext: isShader() method" }, { "engines": [ @@ -3702,7 +3702,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.linkProgram()" + "title": "WebGLRenderingContext: linkProgram() method" }, { "engines": [ @@ -3743,7 +3743,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.shaderSource()" + "title": "WebGLRenderingContext: shaderSource() method" }, { "engines": [ @@ -3784,7 +3784,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.useProgram()" + "title": "WebGLRenderingContext: useProgram() method" }, { "engines": [ @@ -3825,7 +3825,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.validateProgram()" + "title": "WebGLRenderingContext: validateProgram() method" }, { "engines": [ @@ -3876,7 +3876,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.attachShader()" + "title": "WebGLRenderingContext: attachShader() method" }, { "engines": [ @@ -3927,7 +3927,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindAttribLocation()" + "title": "WebGLRenderingContext: bindAttribLocation() method" }, { "engines": [ @@ -3978,7 +3978,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compileShader()" + "title": "WebGLRenderingContext: compileShader() method" }, { "engines": [ @@ -4029,7 +4029,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createProgram()" + "title": "WebGLRenderingContext: createProgram() method" }, { "engines": [ @@ -4080,7 +4080,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createShader()" + "title": "WebGLRenderingContext: createShader() method" }, { "engines": [ @@ -4131,7 +4131,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteProgram()" + "title": "WebGLRenderingContext: deleteProgram() method" }, { "engines": [ @@ -4182,7 +4182,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteShader()" + "title": "WebGLRenderingContext: deleteShader() method" }, { "engines": [ @@ -4233,7 +4233,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.detachShader()" + "title": "WebGLRenderingContext: detachShader() method" }, { "engines": [ @@ -4284,7 +4284,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getAttachedShaders()" + "title": "WebGLRenderingContext: getAttachedShaders() method" }, { "engines": [ @@ -4335,7 +4335,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getProgramInfoLog()" + "title": "WebGLRenderingContext: getProgramInfoLog() method" }, { "engines": [ @@ -4386,7 +4386,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getProgramParameter()" + "title": "WebGLRenderingContext: getProgramParameter() method" }, { "engines": [ @@ -4437,7 +4437,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderInfoLog()" + "title": "WebGLRenderingContext: getShaderInfoLog() method" }, { "engines": [ @@ -4488,7 +4488,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderParameter()" + "title": "WebGLRenderingContext: getShaderParameter() method" }, { "engines": [ @@ -4539,7 +4539,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderPrecisionFormat()" + "title": "WebGLRenderingContext: getShaderPrecisionFormat() method" }, { "engines": [ @@ -4590,7 +4590,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getShaderSource()" + "title": "WebGLRenderingContext: getShaderSource() method" }, { "engines": [ @@ -4641,7 +4641,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isProgram()" + "title": "WebGLRenderingContext: isProgram() method" }, { "engines": [ @@ -4692,7 +4692,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isShader()" + "title": "WebGLRenderingContext: isShader() method" }, { "engines": [ @@ -4743,7 +4743,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.linkProgram()" + "title": "WebGLRenderingContext: linkProgram() method" }, { "engines": [ @@ -4794,7 +4794,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.shaderSource()" + "title": "WebGLRenderingContext: shaderSource() method" }, { "engines": [ @@ -4845,7 +4845,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.useProgram()" + "title": "WebGLRenderingContext: useProgram() method" }, { "engines": [ @@ -4896,7 +4896,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.validateProgram()" + "title": "WebGLRenderingContext: validateProgram() method" } ], "5.14.5": [ @@ -4939,7 +4939,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindBuffer()" + "title": "WebGLRenderingContext: bindBuffer() method" }, { "engines": [ @@ -4980,7 +4980,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bufferData()" + "title": "WebGLRenderingContext: bufferData() method" }, { "engines": [ @@ -5021,7 +5021,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bufferSubData()" + "title": "WebGLRenderingContext: bufferSubData() method" }, { "engines": [ @@ -5062,7 +5062,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createBuffer()" + "title": "WebGLRenderingContext: createBuffer() method" }, { "engines": [ @@ -5103,7 +5103,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteBuffer()" + "title": "WebGLRenderingContext: deleteBuffer() method" }, { "engines": [ @@ -5144,7 +5144,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getBufferParameter()" + "title": "WebGLRenderingContext: getBufferParameter() method" }, { "engines": [ @@ -5185,7 +5185,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isBuffer()" + "title": "WebGLRenderingContext: isBuffer() method" }, { "engines": [ @@ -5236,7 +5236,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindBuffer()" + "title": "WebGLRenderingContext: bindBuffer() method" }, { "engines": [ @@ -5287,7 +5287,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bufferData()" + "title": "WebGLRenderingContext: bufferData() method" }, { "engines": [ @@ -5338,7 +5338,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bufferSubData()" + "title": "WebGLRenderingContext: bufferSubData() method" }, { "engines": [ @@ -5389,7 +5389,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createBuffer()" + "title": "WebGLRenderingContext: createBuffer() method" }, { "engines": [ @@ -5440,7 +5440,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteBuffer()" + "title": "WebGLRenderingContext: deleteBuffer() method" }, { "engines": [ @@ -5491,7 +5491,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getBufferParameter()" + "title": "WebGLRenderingContext: getBufferParameter() method" }, { "engines": [ @@ -5542,7 +5542,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isBuffer()" + "title": "WebGLRenderingContext: isBuffer() method" } ], "5.14.6": [ @@ -5585,7 +5585,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindFramebuffer()" + "title": "WebGLRenderingContext: bindFramebuffer() method" }, { "engines": [ @@ -5626,7 +5626,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.checkFramebufferStatus()" + "title": "WebGLRenderingContext: checkFramebufferStatus() method" }, { "engines": [ @@ -5667,7 +5667,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createFramebuffer()" + "title": "WebGLRenderingContext: createFramebuffer() method" }, { "engines": [ @@ -5708,7 +5708,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteFramebuffer()" + "title": "WebGLRenderingContext: deleteFramebuffer() method" }, { "engines": [ @@ -5749,7 +5749,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.framebufferRenderbuffer()" + "title": "WebGLRenderingContext: framebufferRenderbuffer() method" }, { "engines": [ @@ -5790,7 +5790,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.framebufferTexture2D()" + "title": "WebGLRenderingContext: framebufferTexture2D() method" }, { "engines": [ @@ -5831,7 +5831,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getFramebufferAttachmentParameter()" + "title": "WebGLRenderingContext: getFramebufferAttachmentParameter() method" }, { "engines": [ @@ -5872,7 +5872,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isFramebuffer()" + "title": "WebGLRenderingContext: isFramebuffer() method" }, { "engines": [ @@ -5923,7 +5923,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindFramebuffer()" + "title": "WebGLRenderingContext: bindFramebuffer() method" }, { "engines": [ @@ -5974,7 +5974,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.checkFramebufferStatus()" + "title": "WebGLRenderingContext: checkFramebufferStatus() method" }, { "engines": [ @@ -6025,7 +6025,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createFramebuffer()" + "title": "WebGLRenderingContext: createFramebuffer() method" }, { "engines": [ @@ -6076,7 +6076,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteFramebuffer()" + "title": "WebGLRenderingContext: deleteFramebuffer() method" }, { "engines": [ @@ -6127,7 +6127,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.framebufferRenderbuffer()" + "title": "WebGLRenderingContext: framebufferRenderbuffer() method" }, { "engines": [ @@ -6178,7 +6178,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.framebufferTexture2D()" + "title": "WebGLRenderingContext: framebufferTexture2D() method" }, { "engines": [ @@ -6229,7 +6229,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getFramebufferAttachmentParameter()" + "title": "WebGLRenderingContext: getFramebufferAttachmentParameter() method" }, { "engines": [ @@ -6280,7 +6280,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isFramebuffer()" + "title": "WebGLRenderingContext: isFramebuffer() method" } ], "5.14.7": [ @@ -6323,7 +6323,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindRenderbuffer()" + "title": "WebGLRenderingContext: bindRenderbuffer() method" }, { "engines": [ @@ -6364,7 +6364,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createRenderbuffer()" + "title": "WebGLRenderingContext: createRenderbuffer() method" }, { "engines": [ @@ -6405,7 +6405,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteRenderbuffer()" + "title": "WebGLRenderingContext: deleteRenderbuffer() method" }, { "engines": [ @@ -6446,7 +6446,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getRenderbufferParameter()" + "title": "WebGLRenderingContext: getRenderbufferParameter() method" }, { "engines": [ @@ -6487,7 +6487,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isRenderbuffer()" + "title": "WebGLRenderingContext: isRenderbuffer() method" }, { "engines": [ @@ -6528,7 +6528,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.renderbufferStorage()" + "title": "WebGLRenderingContext: renderbufferStorage() method" }, { "engines": [ @@ -6579,7 +6579,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindRenderbuffer()" + "title": "WebGLRenderingContext: bindRenderbuffer() method" }, { "engines": [ @@ -6630,7 +6630,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createRenderbuffer()" + "title": "WebGLRenderingContext: createRenderbuffer() method" }, { "engines": [ @@ -6681,7 +6681,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteRenderbuffer()" + "title": "WebGLRenderingContext: deleteRenderbuffer() method" }, { "engines": [ @@ -6732,7 +6732,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getRenderbufferParameter()" + "title": "WebGLRenderingContext: getRenderbufferParameter() method" }, { "engines": [ @@ -6783,7 +6783,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isRenderbuffer()" + "title": "WebGLRenderingContext: isRenderbuffer() method" }, { "engines": [ @@ -6834,7 +6834,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.renderbufferStorage()" + "title": "WebGLRenderingContext: renderbufferStorage() method" } ], "5.14.8": [ @@ -6877,7 +6877,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindTexture()" + "title": "WebGLRenderingContext: bindTexture() method" }, { "engines": [ @@ -6918,7 +6918,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.copyTexImage2D()" + "title": "WebGLRenderingContext: copyTexImage2D() method" }, { "engines": [ @@ -6959,7 +6959,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.copyTexSubImage2D()" + "title": "WebGLRenderingContext: copyTexSubImage2D() method" }, { "engines": [ @@ -7000,7 +7000,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createTexture()" + "title": "WebGLRenderingContext: createTexture() method" }, { "engines": [ @@ -7041,7 +7041,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteTexture()" + "title": "WebGLRenderingContext: deleteTexture() method" }, { "engines": [ @@ -7082,7 +7082,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.generateMipmap()" + "title": "WebGLRenderingContext: generateMipmap() method" }, { "engines": [ @@ -7123,7 +7123,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getTexParameter()" + "title": "WebGLRenderingContext: getTexParameter() method" }, { "engines": [ @@ -7164,7 +7164,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isTexture()" + "title": "WebGLRenderingContext: isTexture() method" }, { "engines": [ @@ -7205,7 +7205,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texImage2D()" + "title": "WebGLRenderingContext: texImage2D() method" }, { "engines": [ @@ -7246,7 +7246,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -7287,7 +7287,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -7338,7 +7338,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindTexture()" + "title": "WebGLRenderingContext: bindTexture() method" }, { "engines": [ @@ -7389,7 +7389,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.copyTexImage2D()" + "title": "WebGLRenderingContext: copyTexImage2D() method" }, { "engines": [ @@ -7440,7 +7440,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.copyTexSubImage2D()" + "title": "WebGLRenderingContext: copyTexSubImage2D() method" }, { "engines": [ @@ -7491,7 +7491,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.createTexture()" + "title": "WebGLRenderingContext: createTexture() method" }, { "engines": [ @@ -7542,7 +7542,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.deleteTexture()" + "title": "WebGLRenderingContext: deleteTexture() method" }, { "engines": [ @@ -7593,7 +7593,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.generateMipmap()" + "title": "WebGLRenderingContext: generateMipmap() method" }, { "engines": [ @@ -7644,7 +7644,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getTexParameter()" + "title": "WebGLRenderingContext: getTexParameter() method" }, { "engines": [ @@ -7695,7 +7695,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isTexture()" + "title": "WebGLRenderingContext: isTexture() method" }, { "engines": [ @@ -7746,7 +7746,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texImage2D()" + "title": "WebGLRenderingContext: texImage2D() method" }, { "engines": [ @@ -7797,7 +7797,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -7848,7 +7848,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" } ], "DOM-WebGLRenderingContext-canvas": [ @@ -7891,7 +7891,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.canvas" + "title": "WebGLRenderingContext: canvas property" }, { "engines": [ @@ -7942,7 +7942,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.canvas" + "title": "WebGLRenderingContext: canvas property" } ], "5.14.11": [ @@ -7985,7 +7985,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clear()" + "title": "WebGLRenderingContext: clear() method" }, { "engines": [ @@ -8026,7 +8026,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawArrays()" + "title": "WebGLRenderingContext: drawArrays() method" }, { "engines": [ @@ -8067,7 +8067,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawElements()" + "title": "WebGLRenderingContext: drawElements() method" }, { "engines": [ @@ -8108,7 +8108,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.finish()" + "title": "WebGLRenderingContext: finish() method" }, { "engines": [ @@ -8149,7 +8149,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.flush()" + "title": "WebGLRenderingContext: flush() method" }, { "engines": [ @@ -8200,7 +8200,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.clear()" + "title": "WebGLRenderingContext: clear() method" }, { "engines": [ @@ -8251,7 +8251,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawArrays()" + "title": "WebGLRenderingContext: drawArrays() method" }, { "engines": [ @@ -8302,7 +8302,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawElements()" + "title": "WebGLRenderingContext: drawElements() method" }, { "engines": [ @@ -8353,7 +8353,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.finish()" + "title": "WebGLRenderingContext: finish() method" }, { "engines": [ @@ -8404,7 +8404,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.flush()" + "title": "WebGLRenderingContext: flush() method" } ], "COMPRESSEDTEXIMAGE2D": [ @@ -8447,7 +8447,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compressedTexImage[23]D()" + "title": "WebGLRenderingContext: compressedTexImage[23]D() method" }, { "engines": [ @@ -8498,7 +8498,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compressedTexImage[23]D()" + "title": "WebGLRenderingContext: compressedTexImage[23]D() method" } ], "COMPRESSEDTEXSUBIMAGE2D": [ @@ -8541,7 +8541,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compressedTexSubImage2D()" + "title": "WebGLRenderingContext: compressedTexSubImage2D() method" }, { "engines": [ @@ -8592,7 +8592,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compressedTexSubImage2D()" + "title": "WebGLRenderingContext: compressedTexSubImage2D() method" } ], "5.14.10": [ @@ -8635,7 +8635,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.disableVertexAttribArray()" + "title": "WebGLRenderingContext: disableVertexAttribArray() method" }, { "engines": [ @@ -8676,7 +8676,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.enableVertexAttribArray()" + "title": "WebGLRenderingContext: enableVertexAttribArray() method" }, { "engines": [ @@ -8717,7 +8717,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getActiveAttrib()" + "title": "WebGLRenderingContext: getActiveAttrib() method" }, { "engines": [ @@ -8758,7 +8758,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getActiveUniform()" + "title": "WebGLRenderingContext: getActiveUniform() method" }, { "engines": [ @@ -8799,7 +8799,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getAttribLocation()" + "title": "WebGLRenderingContext: getAttribLocation() method" }, { "engines": [ @@ -8840,7 +8840,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getUniform()" + "title": "WebGLRenderingContext: getUniform() method" }, { "engines": [ @@ -8881,7 +8881,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getUniformLocation()" + "title": "WebGLRenderingContext: getUniformLocation() method" }, { "engines": [ @@ -8922,7 +8922,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getVertexAttrib()" + "title": "WebGLRenderingContext: getVertexAttrib() method" }, { "engines": [ @@ -8963,7 +8963,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getVertexAttribOffset()" + "title": "WebGLRenderingContext: getVertexAttribOffset() method" }, { "engines": [ @@ -9004,7 +9004,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9045,7 +9045,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9086,7 +9086,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9127,7 +9127,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9168,7 +9168,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9209,7 +9209,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9250,7 +9250,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9291,7 +9291,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9332,7 +9332,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9373,7 +9373,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9414,7 +9414,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9455,7 +9455,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9496,7 +9496,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9537,7 +9537,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9578,7 +9578,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9619,7 +9619,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -9660,7 +9660,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniformMatrix[234]fv()" + "title": "WebGLRenderingContext: uniformMatrix[234]fv() method" }, { "engines": [ @@ -9701,7 +9701,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniformMatrix[234]fv()" + "title": "WebGLRenderingContext: uniformMatrix[234]fv() method" }, { "engines": [ @@ -9742,7 +9742,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniformMatrix[234]fv()" + "title": "WebGLRenderingContext: uniformMatrix[234]fv() method" }, { "engines": [ @@ -9783,7 +9783,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -9824,7 +9824,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -9865,7 +9865,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -9906,7 +9906,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -9947,7 +9947,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -9988,7 +9988,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -10029,7 +10029,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -10070,7 +10070,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -10111,7 +10111,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttribPointer()" + "title": "WebGLRenderingContext: vertexAttribPointer() method" }, { "engines": [ @@ -10162,7 +10162,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.disableVertexAttribArray()" + "title": "WebGLRenderingContext: disableVertexAttribArray() method" }, { "engines": [ @@ -10213,7 +10213,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.enableVertexAttribArray()" + "title": "WebGLRenderingContext: enableVertexAttribArray() method" }, { "engines": [ @@ -10264,7 +10264,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getActiveAttrib()" + "title": "WebGLRenderingContext: getActiveAttrib() method" }, { "engines": [ @@ -10315,7 +10315,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getActiveUniform()" + "title": "WebGLRenderingContext: getActiveUniform() method" }, { "engines": [ @@ -10366,7 +10366,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getAttribLocation()" + "title": "WebGLRenderingContext: getAttribLocation() method" }, { "engines": [ @@ -10417,7 +10417,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getUniform()" + "title": "WebGLRenderingContext: getUniform() method" }, { "engines": [ @@ -10468,7 +10468,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getUniformLocation()" + "title": "WebGLRenderingContext: getUniformLocation() method" }, { "engines": [ @@ -10519,7 +10519,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getVertexAttrib()" + "title": "WebGLRenderingContext: getVertexAttrib() method" }, { "engines": [ @@ -10570,7 +10570,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getVertexAttribOffset()" + "title": "WebGLRenderingContext: getVertexAttribOffset() method" }, { "engines": [ @@ -10621,7 +10621,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10672,7 +10672,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10723,7 +10723,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10774,7 +10774,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10825,7 +10825,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10876,7 +10876,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10927,7 +10927,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -10978,7 +10978,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11029,7 +11029,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11080,7 +11080,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11131,7 +11131,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11182,7 +11182,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11233,7 +11233,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11284,7 +11284,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11335,7 +11335,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11386,7 +11386,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniform[1234][fi][v]()" + "title": "WebGLRenderingContext: uniform[1234][fi][v]() method" }, { "engines": [ @@ -11437,7 +11437,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniformMatrix[234]fv()" + "title": "WebGLRenderingContext: uniformMatrix[234]fv() method" }, { "engines": [ @@ -11488,7 +11488,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniformMatrix[234]fv()" + "title": "WebGLRenderingContext: uniformMatrix[234]fv() method" }, { "engines": [ @@ -11539,7 +11539,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.uniformMatrix[234]fv()" + "title": "WebGLRenderingContext: uniformMatrix[234]fv() method" }, { "engines": [ @@ -11590,7 +11590,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11641,7 +11641,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11692,7 +11692,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11743,7 +11743,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11794,7 +11794,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11845,7 +11845,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11896,7 +11896,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11947,7 +11947,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttrib[1234]f[v]()" + "title": "WebGLRenderingContext: vertexAttrib[1234]f[v]() method" }, { "engines": [ @@ -11998,7 +11998,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.vertexAttribPointer()" + "title": "WebGLRenderingContext: vertexAttribPointer() method" } ], "DOM-WebGLRenderingContext-drawingBufferHeight": [ @@ -12041,7 +12041,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawingBufferHeight" + "title": "WebGLRenderingContext: drawingBufferHeight property" }, { "engines": [ @@ -12092,7 +12092,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawingBufferHeight" + "title": "WebGLRenderingContext: drawingBufferHeight property" } ], "DOM-WebGLRenderingContext-drawingBufferWidth": [ @@ -12135,7 +12135,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawingBufferWidth" + "title": "WebGLRenderingContext: drawingBufferWidth property" }, { "engines": [ @@ -12186,7 +12186,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.drawingBufferWidth" + "title": "WebGLRenderingContext: drawingBufferWidth property" } ], "5.14.2": [ @@ -12229,7 +12229,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getContextAttributes()" + "title": "WebGLRenderingContext: getContextAttributes() method" }, { "engines": [ @@ -12280,7 +12280,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getContextAttributes()" + "title": "WebGLRenderingContext: getContextAttributes() method" } ], "5.14.14": [ @@ -12323,7 +12323,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getExtension()" + "title": "WebGLRenderingContext: getExtension() method" }, { "engines": [ @@ -12364,7 +12364,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getSupportedExtensions()" + "title": "WebGLRenderingContext: getSupportedExtensions() method" }, { "engines": [ @@ -12415,7 +12415,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getExtension()" + "title": "WebGLRenderingContext: getExtension() method" }, { "engines": [ @@ -12466,7 +12466,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getSupportedExtensions()" + "title": "WebGLRenderingContext: getSupportedExtensions() method" } ], "5.14.13": [ @@ -12509,7 +12509,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isContextLost()" + "title": "WebGLRenderingContext: isContextLost() method" }, { "engines": [ @@ -12560,7 +12560,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isContextLost()" + "title": "WebGLRenderingContext: isContextLost() method" } ], "PIXEL_STORAGE_PARAMETERS": [ @@ -12603,7 +12603,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.pixelStorei()" + "title": "WebGLRenderingContext: pixelStorei() method" }, { "engines": [ @@ -12654,7 +12654,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.pixelStorei()" + "title": "WebGLRenderingContext: pixelStorei() method" } ], "5.14.12": [ @@ -12697,7 +12697,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.readPixels()" + "title": "WebGLRenderingContext: readPixels() method" }, { "engines": [ @@ -12748,7 +12748,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.readPixels()" + "title": "WebGLRenderingContext: readPixels() method" } ], "5.14.4": [ @@ -12791,7 +12791,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.scissor()" + "title": "WebGLRenderingContext: scissor() method" }, { "engines": [ @@ -12832,7 +12832,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.viewport()" + "title": "WebGLRenderingContext: viewport() method" }, { "engines": [ @@ -12883,7 +12883,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.scissor()" + "title": "WebGLRenderingContext: scissor() method" }, { "engines": [ @@ -12934,7 +12934,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.viewport()" + "title": "WebGLRenderingContext: viewport() method" } ], "TEXSUBIMAGE2D": [ @@ -12977,7 +12977,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texSubImage2D()" + "title": "WebGLRenderingContext: texSubImage2D() method" }, { "engines": [ @@ -13028,7 +13028,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texSubImage2D()" + "title": "WebGLRenderingContext: texSubImage2D() method" } ], "DOM-WebGLActiveInfo-name": [ @@ -13045,7 +13045,7 @@ "summary": "The read-only WebGLActiveInfo.name property represents the name of the requested data returned by calling the getActiveAttrib() or getActiveUniform() methods.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13079,7 +13079,7 @@ "version_added": "79" } }, - "title": "WebGLActiveInfo.name" + "title": "WebGLActiveInfo: name property" } ], "DOM-WebGLActiveInfo-size": [ @@ -13096,7 +13096,7 @@ "summary": "The read-only WebGLActiveInfo.size property is a Number representing the size of the requested data returned by calling the getActiveAttrib() or getActiveUniform() methods.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13130,7 +13130,7 @@ "version_added": "79" } }, - "title": "WebGLActiveInfo.size" + "title": "WebGLActiveInfo: size property" } ], "DOM-WebGLActiveInfo-type": [ @@ -13147,7 +13147,7 @@ "summary": "The read-only WebGLActiveInfo.type property represents the type of the requested data returned by calling the getActiveAttrib() or getActiveUniform() methods.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13181,7 +13181,7 @@ "version_added": "79" } }, - "title": "WebGLActiveInfo.type" + "title": "WebGLActiveInfo: type property" } ], "5.11": [ @@ -13198,7 +13198,7 @@ "summary": "The WebGLActiveInfo interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13249,7 +13249,7 @@ "summary": "The WebGLBuffer interface is part of the WebGL API and represents an opaque buffer object storing data such as vertices or colors.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13286,7 +13286,7 @@ "title": "WebGLBuffer" } ], - "5.15.1": [ + "5.15": [ { "engines": [ "blink", @@ -13294,10 +13294,55 @@ "webkit" ], "filename": "api/WebGLContextEvent.json", - "name": "statusMessage", - "slug": "API/WebGLContextEvent/statusMessage", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLContextEvent/statusMessage", - "summary": "The read-only WebGLContextEvent.statusMessage property contains additional event status information, or is an empty string if no additional information is available.", + "name": "WebGLContextEvent", + "slug": "API/WebGLContextEvent/WebGLContextEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLContextEvent/WebGLContextEvent", + "summary": "The WebGLContextEvent() constructor creates a new WebGLContextEvent object.", + "support": { + "chrome": { + "version_added": "17" + }, + "chrome_android": { + "version_added": "25" + }, + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "49" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "11" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "6" + }, + "safari_ios": { + "version_added": "8" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "WebGLContextEvent: WebGLContextEvent() constructor" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/WebGLContextEvent.json", + "name": "WebGLContextEvent", + "slug": "API/WebGLContextEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLContextEvent", + "summary": "The WebContextEvent interface is part of the WebGL API and is an interface for an event that is generated in response to a status change to the WebGL rendering context.", "support": { "chrome": { "version_added": "9" @@ -13334,10 +13379,10 @@ "version_added": "79" } }, - "title": "WebGLContextEvent.statusMessage" + "title": "WebGLContextEvent" } ], - "5.15": [ + "5.15.1": [ { "engines": [ "blink", @@ -13345,10 +13390,10 @@ "webkit" ], "filename": "api/WebGLContextEvent.json", - "name": "WebGLContextEvent", - "slug": "API/WebGLContextEvent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLContextEvent", - "summary": "The WebContextEvent interface is part of the WebGL API and is an interface for an event that is generated in response to a status change to the WebGL rendering context.", + "name": "statusMessage", + "slug": "API/WebGLContextEvent/statusMessage", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebGLContextEvent/statusMessage", + "summary": "The read-only WebGLContextEvent.statusMessage property contains additional event status information, or is an empty string if no additional information is available.", "support": { "chrome": { "version_added": "9" @@ -13385,7 +13430,7 @@ "version_added": "79" } }, - "title": "WebGLContextEvent" + "title": "WebGLContextEvent: statusMessage property" } ], "5.5": [ @@ -13402,7 +13447,7 @@ "summary": "The WebGLFramebuffer interface is part of the WebGL API and represents a collection of buffers that serve as a rendering destination.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13453,7 +13498,7 @@ "summary": "The WebGLProgram is part of the WebGL API and is a combination of two compiled WebGLShaders consisting of a vertex shader and a fragment shader (both written in GLSL).", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13504,7 +13549,7 @@ "summary": "The WebGLRenderbuffer interface is part of the WebGL API and represents a buffer that can contain an image, or that can be a source or target of a rendering operation.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13544,7 +13589,8 @@ "DOM-WebGLRenderingContext-drawingBufferColorSpace": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/WebGLRenderingContext.json", "name": "drawingBufferColorSpace", @@ -13568,7 +13614,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -13577,7 +13623,7 @@ "version_added": "104" } }, - "title": "WebGLRenderingContext.drawingBufferColorSpace" + "title": "WebGLRenderingContext: drawingBufferColorSpace property" } ], "DOM-WebGLRenderingContext-unpackColorSpace": [ @@ -13616,7 +13662,7 @@ "version_added": "104" } }, - "title": "WebGLRenderingContext.unpackColorSpace" + "title": "WebGLRenderingContext: unpackColorSpace property" } ], "5.14": [ @@ -13687,7 +13733,7 @@ "summary": "The WebGLShader is part of the WebGL API and can either be a vertex or a fragment shader. A WebGLProgram requires both types of shaders.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13772,7 +13818,7 @@ "version_added": "79" } }, - "title": "WebGLShaderPrecisionFormat.precision" + "title": "WebGLShaderPrecisionFormat: precision property" } ], "DOM-WebGLShaderPrecisionFormat-rangeMax": [ @@ -13823,7 +13869,7 @@ "version_added": "79" } }, - "title": "WebGLShaderPrecisionFormat.rangeMax" + "title": "WebGLShaderPrecisionFormat: rangeMax property" } ], "DOM-WebGLShaderPrecisionFormat-rangeMin": [ @@ -13874,7 +13920,7 @@ "version_added": "79" } }, - "title": "WebGLShaderPrecisionFormat.rangeMin" + "title": "WebGLShaderPrecisionFormat: rangeMin property" } ], "5.12": [ @@ -13942,7 +13988,7 @@ "summary": "The WebGLTexture interface is part of the WebGL API and represents an opaque texture object providing storage and state for texturing operations.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" @@ -13993,7 +14039,7 @@ "summary": "The WebGLUniformLocation interface is part of the WebGL API and represents the location of a uniform variable in a shader program.", "support": { "chrome": { - "version_added": "9" + "version_added": "10" }, "chrome_android": { "version_added": "25" diff --git a/bikeshed/spec-data/readonly/mdn/webgl-2.json b/bikeshed/spec-data/readonly/mdn/webgl-2.json index e61c750f39..252dad4f42 100644 --- a/bikeshed/spec-data/readonly/mdn/webgl-2.json +++ b/bikeshed/spec-data/readonly/mdn/webgl-2.json @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.beginQuery()" + "title": "WebGL2RenderingContext: beginQuery() method" }, { "engines": [ @@ -80,7 +80,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.createQuery()" + "title": "WebGL2RenderingContext: createQuery() method" }, { "engines": [ @@ -121,7 +121,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.deleteQuery()" + "title": "WebGL2RenderingContext: deleteQuery() method" }, { "engines": [ @@ -162,7 +162,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.endQuery()" + "title": "WebGL2RenderingContext: endQuery() method" }, { "engines": [ @@ -203,7 +203,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getQuery()" + "title": "WebGL2RenderingContext: getQuery() method" }, { "engines": [ @@ -244,7 +244,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getQueryParameter()" + "title": "WebGL2RenderingContext: getQueryParameter() method" }, { "engines": [ @@ -285,7 +285,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.isQuery()" + "title": "WebGL2RenderingContext: isQuery() method" } ], "3.7.15": [ @@ -328,7 +328,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.beginTransformFeedback()" + "title": "WebGL2RenderingContext: beginTransformFeedback() method" }, { "engines": [ @@ -369,7 +369,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.bindTransformFeedback()" + "title": "WebGL2RenderingContext: bindTransformFeedback() method" }, { "engines": [ @@ -410,7 +410,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.createTransformFeedback()" + "title": "WebGL2RenderingContext: createTransformFeedback() method" }, { "engines": [ @@ -451,7 +451,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.deleteTransformFeedback()" + "title": "WebGL2RenderingContext: deleteTransformFeedback() method" }, { "engines": [ @@ -492,7 +492,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.endTransformFeedback()" + "title": "WebGL2RenderingContext: endTransformFeedback() method" }, { "engines": [ @@ -533,7 +533,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getTransformFeedbackVarying()" + "title": "WebGL2RenderingContext: getTransformFeedbackVarying() method" }, { "engines": [ @@ -574,7 +574,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.isTransformFeedback()" + "title": "WebGL2RenderingContext: isTransformFeedback() method" }, { "engines": [ @@ -615,7 +615,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.pauseTransformFeedback()" + "title": "WebGL2RenderingContext: pauseTransformFeedback() method" }, { "engines": [ @@ -656,7 +656,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.resumeTransformFeedback()" + "title": "WebGL2RenderingContext: resumeTransformFeedback() method" }, { "engines": [ @@ -697,7 +697,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.transformFeedbackVaryings()" + "title": "WebGL2RenderingContext: transformFeedbackVaryings() method" } ], "3.7.1": [ @@ -740,7 +740,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindBuffer()" + "title": "WebGLRenderingContext: bindBuffer() method" }, { "engines": [ @@ -781,7 +781,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindFramebuffer()" + "title": "WebGLRenderingContext: bindFramebuffer() method" }, { "engines": [ @@ -822,7 +822,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindTexture()" + "title": "WebGLRenderingContext: bindTexture() method" }, { "engines": [ @@ -873,7 +873,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindBuffer()" + "title": "WebGLRenderingContext: bindBuffer() method" }, { "engines": [ @@ -924,7 +924,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindFramebuffer()" + "title": "WebGLRenderingContext: bindFramebuffer() method" }, { "engines": [ @@ -975,7 +975,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.bindTexture()" + "title": "WebGLRenderingContext: bindTexture() method" } ], "3.7.16": [ @@ -1018,7 +1018,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.bindBufferBase()" + "title": "WebGL2RenderingContext: bindBufferBase() method" }, { "engines": [ @@ -1059,7 +1059,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.bindBufferRange()" + "title": "WebGL2RenderingContext: bindBufferRange() method" }, { "engines": [ @@ -1100,7 +1100,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getActiveUniformBlockName()" + "title": "WebGL2RenderingContext: getActiveUniformBlockName() method" }, { "engines": [ @@ -1141,7 +1141,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getActiveUniformBlockParameter()" + "title": "WebGL2RenderingContext: getActiveUniformBlockParameter() method" }, { "engines": [ @@ -1182,7 +1182,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getActiveUniforms()" + "title": "WebGL2RenderingContext: getActiveUniforms() method" }, { "engines": [ @@ -1223,7 +1223,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getUniformBlockIndex()" + "title": "WebGL2RenderingContext: getUniformBlockIndex() method" }, { "engines": [ @@ -1264,7 +1264,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getUniformIndices()" + "title": "WebGL2RenderingContext: getUniformIndices() method" }, { "engines": [ @@ -1305,7 +1305,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformBlockBinding()" + "title": "WebGL2RenderingContext: uniformBlockBinding() method" } ], "3.7.13": [ @@ -1348,7 +1348,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.bindSampler()" + "title": "WebGL2RenderingContext: bindSampler() method" }, { "engines": [ @@ -1389,7 +1389,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.createSampler()" + "title": "WebGL2RenderingContext: createSampler() method" }, { "engines": [ @@ -1430,7 +1430,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.deleteSampler()" + "title": "WebGL2RenderingContext: deleteSampler() method" }, { "engines": [ @@ -1471,7 +1471,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.deleteSync()" + "title": "WebGL2RenderingContext: deleteSync() method" }, { "engines": [ @@ -1512,7 +1512,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getSamplerParameter()" + "title": "WebGL2RenderingContext: getSamplerParameter() method" }, { "engines": [ @@ -1553,7 +1553,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.isSampler()" + "title": "WebGL2RenderingContext: isSampler() method" }, { "engines": [ @@ -1594,7 +1594,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.samplerParameter[if]()" + "title": "WebGL2RenderingContext: samplerParameter[if]() method" }, { "engines": [ @@ -1635,7 +1635,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.samplerParameter[if]()" + "title": "WebGL2RenderingContext: samplerParameter[if]() method" } ], "3.7.17": [ @@ -1678,7 +1678,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.bindVertexArray()" + "title": "WebGL2RenderingContext: bindVertexArray() method" }, { "engines": [ @@ -1719,7 +1719,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.createVertexArray()" + "title": "WebGL2RenderingContext: createVertexArray() method" }, { "engines": [ @@ -1760,7 +1760,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.deleteVertexArray()" + "title": "WebGL2RenderingContext: deleteVertexArray() method" }, { "engines": [ @@ -1801,7 +1801,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.isVertexArray()" + "title": "WebGL2RenderingContext: isVertexArray() method" } ], "3.7.4": [ @@ -1844,7 +1844,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.blitFramebuffer()" + "title": "WebGL2RenderingContext: blitFramebuffer() method" }, { "engines": [ @@ -1885,7 +1885,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.checkFramebufferStatus()" + "title": "WebGLRenderingContext: checkFramebufferStatus() method" }, { "engines": [ @@ -1926,7 +1926,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.framebufferTextureLayer()" + "title": "WebGL2RenderingContext: framebufferTextureLayer() method" }, { "engines": [ @@ -1967,7 +1967,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getFramebufferAttachmentParameter()" + "title": "WebGLRenderingContext: getFramebufferAttachmentParameter() method" }, { "engines": [ @@ -2008,7 +2008,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.invalidateFramebuffer()" + "title": "WebGL2RenderingContext: invalidateFramebuffer() method" }, { "engines": [ @@ -2049,7 +2049,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.invalidateSubFramebuffer()" + "title": "WebGL2RenderingContext: invalidateSubFramebuffer() method" }, { "engines": [ @@ -2090,7 +2090,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.readBuffer()" + "title": "WebGL2RenderingContext: readBuffer() method" }, { "engines": [ @@ -2141,7 +2141,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.checkFramebufferStatus()" + "title": "WebGLRenderingContext: checkFramebufferStatus() method" }, { "engines": [ @@ -2192,7 +2192,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getFramebufferAttachmentParameter()" + "title": "WebGLRenderingContext: getFramebufferAttachmentParameter() method" } ], "3.7.11": [ @@ -2235,7 +2235,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.clearBuffer[fiuv]()" + "title": "WebGL2RenderingContext: clearBuffer[fiuv]() method" }, { "engines": [ @@ -2276,7 +2276,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.clearBuffer[fiuv]()" + "title": "WebGL2RenderingContext: clearBuffer[fiuv]() method" }, { "engines": [ @@ -2317,7 +2317,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.clearBuffer[fiuv]()" + "title": "WebGL2RenderingContext: clearBuffer[fiuv]() method" }, { "engines": [ @@ -2358,7 +2358,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.clearBuffer[fiuv]()" + "title": "WebGL2RenderingContext: clearBuffer[fiuv]() method" }, { "engines": [ @@ -2399,7 +2399,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.drawBuffers()" + "title": "WebGL2RenderingContext: drawBuffers() method" } ], "3.7.14": [ @@ -2442,7 +2442,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.clientWaitSync()" + "title": "WebGL2RenderingContext: clientWaitSync() method" }, { "engines": [ @@ -2483,7 +2483,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.fenceSync()" + "title": "WebGL2RenderingContext: fenceSync() method" }, { "engines": [ @@ -2524,7 +2524,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getSyncParameter()" + "title": "WebGL2RenderingContext: getSyncParameter() method" }, { "engines": [ @@ -2565,7 +2565,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.isSync()" + "title": "WebGL2RenderingContext: isSync() method" }, { "engines": [ @@ -2606,7 +2606,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.waitSync()" + "title": "WebGL2RenderingContext: waitSync() method" } ], "3.7.6": [ @@ -2649,7 +2649,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.compressedTexImage[23]D()" + "title": "WebGLRenderingContext: compressedTexImage[23]D() method" }, { "engines": [ @@ -2690,7 +2690,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.compressedTexSubImage3D()" + "title": "WebGL2RenderingContext: compressedTexSubImage3D() method" }, { "engines": [ @@ -2731,7 +2731,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.copyTexSubImage3D()" + "title": "WebGL2RenderingContext: copyTexSubImage3D() method" }, { "engines": [ @@ -2772,7 +2772,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getTexParameter()" + "title": "WebGLRenderingContext: getTexParameter() method" }, { "engines": [ @@ -2813,7 +2813,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texImage2D()" + "title": "WebGLRenderingContext: texImage2D() method" }, { "engines": [ @@ -2854,7 +2854,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.texImage3D()" + "title": "WebGL2RenderingContext: texImage3D() method" }, { "engines": [ @@ -2895,7 +2895,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -2936,7 +2936,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -2977,7 +2977,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.texStorage2D()" + "title": "WebGL2RenderingContext: texStorage2D() method" }, { "engines": [ @@ -3018,7 +3018,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.texStorage3D()" + "title": "WebGL2RenderingContext: texStorage3D() method" }, { "engines": [ @@ -3059,7 +3059,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texSubImage2D()" + "title": "WebGLRenderingContext: texSubImage2D() method" }, { "engines": [ @@ -3100,7 +3100,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.texSubImage3D()" + "title": "WebGL2RenderingContext: texSubImage3D() method" }, { "engines": [ @@ -3151,7 +3151,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getTexParameter()" + "title": "WebGLRenderingContext: getTexParameter() method" }, { "engines": [ @@ -3202,7 +3202,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texImage2D()" + "title": "WebGLRenderingContext: texImage2D() method" }, { "engines": [ @@ -3253,7 +3253,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -3304,7 +3304,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texParameter[fi]()" + "title": "WebGLRenderingContext: texParameter[fi]() method" }, { "engines": [ @@ -3355,7 +3355,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.texSubImage2D()" + "title": "WebGLRenderingContext: texSubImage2D() method" } ], "3.7.3": [ @@ -3398,7 +3398,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.copyBufferSubData()" + "title": "WebGL2RenderingContext: copyBufferSubData() method" }, { "engines": [ @@ -3439,7 +3439,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getBufferParameter()" + "title": "WebGLRenderingContext: getBufferParameter() method" }, { "engines": [ @@ -3480,7 +3480,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getBufferSubData()" + "title": "WebGL2RenderingContext: getBufferSubData() method" }, { "engines": [ @@ -3531,7 +3531,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getBufferParameter()" + "title": "WebGLRenderingContext: getBufferParameter() method" } ], "3.7.9": [ @@ -3574,7 +3574,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.drawArraysInstanced()" + "title": "WebGL2RenderingContext: drawArraysInstanced() method" }, { "engines": [ @@ -3615,7 +3615,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.drawElementsInstanced()" + "title": "WebGL2RenderingContext: drawElementsInstanced() method" }, { "engines": [ @@ -3656,7 +3656,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.drawRangeElements()" + "title": "WebGL2RenderingContext: drawRangeElements() method" }, { "engines": [ @@ -3697,7 +3697,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.vertexAttribDivisor()" + "title": "WebGL2RenderingContext: vertexAttribDivisor() method" } ], "3.7.7": [ @@ -3740,7 +3740,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getFragDataLocation()" + "title": "WebGL2RenderingContext: getFragDataLocation() method" }, { "engines": [ @@ -3781,7 +3781,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getProgramParameter()" + "title": "WebGLRenderingContext: getProgramParameter() method" }, { "engines": [ @@ -3832,7 +3832,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getProgramParameter()" + "title": "WebGLRenderingContext: getProgramParameter() method" } ], "3.7.2": [ @@ -3875,7 +3875,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getIndexedParameter()" + "title": "WebGL2RenderingContext: getIndexedParameter() method" }, { "engines": [ @@ -3916,7 +3916,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getParameter()" + "title": "WebGLRenderingContext: getParameter() method" }, { "engines": [ @@ -3957,7 +3957,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isEnabled()" + "title": "WebGLRenderingContext: isEnabled() method" }, { "engines": [ @@ -3998,7 +3998,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.pixelStorei()" + "title": "WebGLRenderingContext: pixelStorei() method" }, { "engines": [ @@ -4049,7 +4049,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getParameter()" + "title": "WebGLRenderingContext: getParameter() method" }, { "engines": [ @@ -4100,7 +4100,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.isEnabled()" + "title": "WebGLRenderingContext: isEnabled() method" }, { "engines": [ @@ -4151,7 +4151,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.pixelStorei()" + "title": "WebGLRenderingContext: pixelStorei() method" } ], "3.7.5": [ @@ -4194,7 +4194,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.getInternalformatParameter()" + "title": "WebGL2RenderingContext: getInternalformatParameter() method" }, { "engines": [ @@ -4235,7 +4235,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getRenderbufferParameter()" + "title": "WebGLRenderingContext: getRenderbufferParameter() method" }, { "engines": [ @@ -4276,7 +4276,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.renderbufferStorage()" + "title": "WebGLRenderingContext: renderbufferStorage() method" }, { "engines": [ @@ -4317,7 +4317,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.renderbufferStorageMultisample()" + "title": "WebGL2RenderingContext: renderbufferStorageMultisample() method" }, { "engines": [ @@ -4368,7 +4368,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getRenderbufferParameter()" + "title": "WebGLRenderingContext: getRenderbufferParameter() method" }, { "engines": [ @@ -4419,7 +4419,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.renderbufferStorage()" + "title": "WebGLRenderingContext: renderbufferStorage() method" } ], "3.7.8": [ @@ -4462,7 +4462,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getUniform()" + "title": "WebGLRenderingContext: getUniform() method" }, { "engines": [ @@ -4503,7 +4503,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getVertexAttrib()" + "title": "WebGLRenderingContext: getVertexAttrib() method" }, { "engines": [ @@ -4544,7 +4544,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4585,7 +4585,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4626,7 +4626,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4667,7 +4667,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4708,7 +4708,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4749,7 +4749,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4790,7 +4790,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4831,7 +4831,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniform[1234][uif][v]()" + "title": "WebGL2RenderingContext: uniform[1234][uif][v]() method" }, { "engines": [ @@ -4872,7 +4872,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformMatrix[234]x[234]fv()" + "title": "WebGL2RenderingContext: uniformMatrix[234]x[234]fv() method" }, { "engines": [ @@ -4913,7 +4913,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformMatrix[234]x[234]fv()" + "title": "WebGL2RenderingContext: uniformMatrix[234]x[234]fv() method" }, { "engines": [ @@ -4954,7 +4954,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformMatrix[234]x[234]fv()" + "title": "WebGL2RenderingContext: uniformMatrix[234]x[234]fv() method" }, { "engines": [ @@ -4995,7 +4995,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformMatrix[234]x[234]fv()" + "title": "WebGL2RenderingContext: uniformMatrix[234]x[234]fv() method" }, { "engines": [ @@ -5036,7 +5036,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformMatrix[234]x[234]fv()" + "title": "WebGL2RenderingContext: uniformMatrix[234]x[234]fv() method" }, { "engines": [ @@ -5077,7 +5077,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.uniformMatrix[234]x[234]fv()" + "title": "WebGL2RenderingContext: uniformMatrix[234]x[234]fv() method" }, { "engines": [ @@ -5118,7 +5118,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.vertexAttribI4[u]i[v]()" + "title": "WebGL2RenderingContext: vertexAttribI4[u]i[v]() method" }, { "engines": [ @@ -5159,7 +5159,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.vertexAttribI4[u]i[v]()" + "title": "WebGL2RenderingContext: vertexAttribI4[u]i[v]() method" }, { "engines": [ @@ -5200,7 +5200,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.vertexAttribI4[u]i[v]()" + "title": "WebGL2RenderingContext: vertexAttribI4[u]i[v]() method" }, { "engines": [ @@ -5241,7 +5241,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.vertexAttribI4[u]i[v]()" + "title": "WebGL2RenderingContext: vertexAttribI4[u]i[v]() method" }, { "engines": [ @@ -5282,7 +5282,7 @@ "version_added": "79" } }, - "title": "WebGL2RenderingContext.vertexAttribIPointer()" + "title": "WebGL2RenderingContext: vertexAttribIPointer() method" }, { "engines": [ @@ -5333,7 +5333,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getUniform()" + "title": "WebGLRenderingContext: getUniform() method" }, { "engines": [ @@ -5384,7 +5384,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.getVertexAttrib()" + "title": "WebGLRenderingContext: getVertexAttrib() method" } ], "3.7": [ @@ -5434,7 +5434,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/WebGLQuery.json", "name": "WebGLQuery", @@ -5460,7 +5461,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -5476,7 +5477,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/WebGLSampler.json", "name": "WebGLSampler", @@ -5502,7 +5504,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -5518,7 +5520,8 @@ { "engines": [ "blink", - "gecko" + "gecko", + "webkit" ], "filename": "api/WebGLSync.json", "name": "WebGLSync", @@ -5544,7 +5547,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", diff --git a/bikeshed/spec-data/readonly/mdn/webgpu.json b/bikeshed/spec-data/readonly/mdn/webgpu.json new file mode 100644 index 0000000000..b872b9c657 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/webgpu.json @@ -0,0 +1,9513 @@ +{ + "dom-gpu-getpreferredcanvasformat": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPU.json", + "name": "getPreferredCanvasFormat", + "slug": "API/GPU/getPreferredCanvasFormat", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPU/getPreferredCanvasFormat", + "summary": "The getPreferredCanvasFormat() method of the GPU interface returns the optimal canvas texture format for displaying 8-bit depth, standard dynamic range content on the current system.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPU: getPreferredCanvasFormat() method" + } + ], + "dom-gpu-requestadapter": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPU.json", + "name": "requestAdapter", + "slug": "API/GPU/requestAdapter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPU/requestAdapter", + "summary": "The requestAdapter() method of the GPU interface returns a Promise that fulfills with a GPUAdapter object instance. From this you can request a GPUDevice, adapter info, features, and limits.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPU: requestAdapter() method" + } + ], + "dom-gpu-wgsllanguagefeatures": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPU.json", + "name": "wgslLanguageFeatures", + "slug": "API/GPU/wgslLanguageFeatures", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPU/wgslLanguageFeatures", + "summary": "The wgslLanguageFeatures read-only property of the GPU interface returns a WGSLLanguageFeatures object that reports the WGSL language extensions supported by the WebGPU implementation.", + "support": { + "chrome": { + "version_added": "115", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPU: wgslLanguageFeatures property" + } + ], + "gpu-interface": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPU.json", + "name": "GPU", + "slug": "API/GPU", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPU", + "summary": "The GPU interface of the WebGPU API is the starting point for using WebGPU. It can be used to return a GPUAdapter from which you can request devices, configure features and limits, and more.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPU" + } + ], + "dom-gpuadapter-features": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapter.json", + "name": "features", + "slug": "API/GPUAdapter/features", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/features", + "summary": "The features read-only property of the GPUAdapter interface returns a GPUSupportedFeatures object that describes additional functionality supported by the adapter.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapter: features property" + } + ], + "dom-gpuadapter-isfallbackadapter": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapter.json", + "name": "isFallbackAdapter", + "slug": "API/GPUAdapter/isFallbackAdapter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/isFallbackAdapter", + "summary": "The isFallbackAdapter read-only property of the GPUAdapter interface returns true if the adapter is a fallback adapter, and false if not.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapter: isFallbackAdapter property" + } + ], + "dom-gpuadapter-limits": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapter.json", + "name": "limits", + "slug": "API/GPUAdapter/limits", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/limits", + "summary": "The limits read-only property of the GPUAdapter interface returns a GPUSupportedLimits object that describes the limits supported by the adapter.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapter: limits property" + } + ], + "dom-gpuadapter-requestadapterinfo": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapter.json", + "name": "requestAdapterInfo", + "slug": "API/GPUAdapter/requestAdapterInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/requestAdapterInfo", + "summary": "The requestAdapterInfo() method of the GPUAdapter interface returns a Promise that fulfills with a GPUAdapterInfo object containing identifying information about an adapter.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapter: requestAdapterInfo() method" + } + ], + "dom-gpuadapter-requestdevice": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapter.json", + "name": "requestDevice", + "slug": "API/GPUAdapter/requestDevice", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/requestDevice", + "summary": "The requestDevice() method of the GPUAdapter interface returns a Promise that fulfills with a GPUDevice object, which is the primary interface for communicating with the GPU.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapter: requestDevice() method" + } + ], + "gpu-adapter": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapter.json", + "name": "GPUAdapter", + "slug": "API/GPUAdapter", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter", + "summary": "The GPUAdapter interface of the WebGPU API represents a GPU adapter. From this you can request a GPUDevice, adapter info, features, and limits.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapter" + } + ], + "dom-gpuadapterinfo-architecture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapterInfo.json", + "name": "architecture", + "slug": "API/GPUAdapterInfo/architecture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapterInfo/architecture", + "summary": "The architecture read-only property of the GPUAdapterInfo interface returns the name of the family or class of GPUs the adapter belongs to, or an empty string if it is not available.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapterInfo: architecture property" + } + ], + "dom-gpuadapterinfo-description": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapterInfo.json", + "name": "description", + "slug": "API/GPUAdapterInfo/description", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapterInfo/description", + "summary": "The description read-only property of the GPUAdapterInfo interface returns a human-readable string describing the adapter, or an empty string if it is not available.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapterInfo: description property" + } + ], + "dom-gpuadapterinfo-device": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapterInfo.json", + "name": "device", + "slug": "API/GPUAdapterInfo/device", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapterInfo/device", + "summary": "The device read-only property of the GPUAdapterInfo interface returns a vendor-specific identifier for the adapter, or an empty string if it is not available.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapterInfo: device property" + } + ], + "dom-gpuadapterinfo-vendor": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapterInfo.json", + "name": "vendor", + "slug": "API/GPUAdapterInfo/vendor", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapterInfo/vendor", + "summary": "The vendor read-only property of the GPUAdapterInfo interface returns the name of the adapter vendor, or an empty string if it is not available.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapterInfo: vendor property" + } + ], + "gpu-adapterinfo": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUAdapterInfo.json", + "name": "GPUAdapterInfo", + "slug": "API/GPUAdapterInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapterInfo", + "summary": "The GPUAdapterInfo interface of the WebGPU API contains identifying information about a GPUAdapter.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUAdapterInfo" + } + ], + "dom-gpuobjectbase-label": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBindGroup.json", + "name": "label", + "slug": "API/GPUBindGroup/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroup/label", + "summary": "The label property of the GPUBindGroup interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBindGroup: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBindGroupLayout.json", + "name": "label", + "slug": "API/GPUBindGroupLayout/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroupLayout/label", + "summary": "The label property of the GPUBindGroupLayout interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBindGroupLayout: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "label", + "slug": "API/GPUBuffer/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/label", + "summary": "The label property of the GPUBuffer interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandBuffer.json", + "name": "label", + "slug": "API/GPUCommandBuffer/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandBuffer/label", + "summary": "The label read-only property of the GPUCommandBuffer interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandBuffer: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "label", + "slug": "API/GPUCommandEncoder/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/label", + "summary": "The label read-only property of the GPUCommandEncoder interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "label", + "slug": "API/GPUComputePassEncoder/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/label", + "summary": "The label read-only property of the GPUComputePassEncoder interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePipeline.json", + "name": "label", + "slug": "API/GPUComputePipeline/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline/label", + "summary": "The label property of the GPUComputePipeline interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePipeline: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "label", + "slug": "API/GPUDevice/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/label", + "summary": "The label read-only property of the GPUDevice interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: label property" + }, + { + "engines": [ + "blink" + ], + "filename": "api/GPUExternalTexture.json", + "name": "label", + "slug": "API/GPUExternalTexture/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUExternalTexture/label", + "summary": "The label property of the GPUExternalTexture interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUExternalTexture: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUPipelineLayout.json", + "name": "label", + "slug": "API/GPUPipelineLayout/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineLayout/label", + "summary": "The label property of the GPUPipelineLayout interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUPipelineLayout: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQuerySet.json", + "name": "label", + "slug": "API/GPUQuerySet/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/label", + "summary": "The label property of the GPUQuerySet interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQuerySet: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQueue.json", + "name": "label", + "slug": "API/GPUQueue/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/label", + "summary": "The label read-only property of the GPUQueue interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue: label property" + }, + { + "engines": [ + "blink" + ], + "filename": "api/GPURenderBundle.json", + "name": "label", + "slug": "API/GPURenderBundle/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundle/label", + "summary": "The label read-only property of the GPURenderBundle interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundle: label property" + }, + { + "engines": [ + "blink" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "label", + "slug": "API/GPURenderBundleEncoder/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/label", + "summary": "The label read-only property of the GPURenderBundleEncoder interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "label", + "slug": "API/GPURenderPassEncoder/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/label", + "summary": "The label read-only property of the GPURenderPassEncoder interface is a string providing a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPipeline.json", + "name": "label", + "slug": "API/GPURenderPipeline/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline/label", + "summary": "The label property of the GPURenderPipeline interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPipeline: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUSampler.json", + "name": "label", + "slug": "API/GPUSampler/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUSampler/label", + "summary": "The label property of the GPUSampler interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUSampler: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUShaderModule.json", + "name": "label", + "slug": "API/GPUShaderModule/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUShaderModule/label", + "summary": "The label property of the GPUShaderModule interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUShaderModule: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "label", + "slug": "API/GPUTexture/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/label", + "summary": "The label property of the GPUTexture interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: label property" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTextureView.json", + "name": "label", + "slug": "API/GPUTextureView/label", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTextureView/label", + "summary": "The label property of the GPUTextureView interface provides a label that can be used to identify the object, for example in GPUError messages or console warnings.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTextureView: label property" + } + ], + "gpubindgroup": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBindGroup.json", + "name": "GPUBindGroup", + "slug": "API/GPUBindGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroup", + "summary": "The GPUBindGroup interface of the WebGPU API is based on a GPUBindGroupLayout and defines a set of resources to be bound together in a group and how those resources are used in shader stages.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBindGroup" + } + ], + "gpubindgrouplayout": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBindGroupLayout.json", + "name": "GPUBindGroupLayout", + "slug": "API/GPUBindGroupLayout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroupLayout", + "summary": "The GPUBindGroupLayout interface of the WebGPU API defines the structure and purpose of related GPU resources such as buffers that will be used in a pipeline, and is used as a template when creating GPUBindGroups.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBindGroupLayout" + } + ], + "dom-gpubuffer-destroy": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "destroy", + "slug": "API/GPUBuffer/destroy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/destroy", + "summary": "The destroy() method of the GPUBuffer interface destroys the GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: destroy() method" + } + ], + "dom-gpubuffer-getmappedrange": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "getMappedRange", + "slug": "API/GPUBuffer/getMappedRange", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange", + "summary": "The getMappedRange() method of the GPUBuffer interface returns an ArrayBuffer containing the mapped contents of the GPUBuffer in the specified range.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: getMappedRange() method" + } + ], + "dom-gpubuffer-mapasync": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "mapAsync", + "slug": "API/GPUBuffer/mapAsync", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync", + "summary": "The mapAsync() method of the GPUBuffer interface maps the specified range of the GPUBuffer. It returns a Promise that resolves when the GPUBuffer's content is ready to be accessed. While the GPUBuffer is mapped it cannot be used in any GPU commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: mapAsync() method" + } + ], + "dom-gpubuffer-mapstate": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "mapState", + "slug": "API/GPUBuffer/mapState", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapState", + "summary": "The mapState read-only property of the GPUBuffer interface represents the mapped state of the GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: mapState property" + } + ], + "dom-gpubuffer-size": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "size", + "slug": "API/GPUBuffer/size", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/size", + "summary": "The size read-only property of the GPUBuffer interface represents the length of the GPUBuffer's memory allocation, in bytes.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: size property" + } + ], + "dom-gpubuffer-unmap": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "unmap", + "slug": "API/GPUBuffer/unmap", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/unmap", + "summary": "The unmap() method of the GPUBuffer interface unmaps the mapped range of the GPUBuffer, making its contents available for use by the GPU again after it has previously been mapped with GPUBuffer.mapAsync() (the GPU cannot access a mapped GPUBuffer).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: unmap() method" + } + ], + "dom-gpubuffer-usage": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "usage", + "slug": "API/GPUBuffer/usage", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/usage", + "summary": "The usage read-only property of the GPUBuffer interface contains the bitwise flags representing the allowed usages of the GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer: usage property" + } + ], + "gpubuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUBuffer.json", + "name": "GPUBuffer", + "slug": "API/GPUBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer", + "summary": "The GPUBuffer interface of the WebGPU API represents a block of memory that can be used to store raw data to use in GPU operations.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUBuffer" + } + ], + "dom-gpucanvascontext-canvas": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCanvasContext.json", + "name": "canvas", + "slug": "API/GPUCanvasContext/canvas", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/canvas", + "summary": "The canvas read-only property of the GPUCanvasContext interface returns a reference to the canvas that the context was created from.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCanvasContext: canvas property" + } + ], + "dom-gpucanvascontext-configure": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCanvasContext.json", + "name": "configure", + "slug": "API/GPUCanvasContext/configure", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/configure", + "summary": "The configure() method of the GPUCanvasContext interface configures the context to use for rendering with a given GPUDevice. When called the canvas will initially be cleared to transparent black.", + "support": { + "chrome": { + "version_added": "113", + "notes": [ + "Currently supported on ChromeOS, macOS, and Windows only.", + "The <code>rgba8unorm</code> format is currently not supported on macOS. See <a href='https://crbug.com/1298618'>bug 1298618</a>." + ] + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": [ + "Currently supported on ChromeOS, macOS, and Windows only.", + "The <code>rgba8unorm</code> format is currently not supported on macOS. See <a href='https://crbug.com/1298618'>bug 1298618</a>." + ] + } + }, + "title": "GPUCanvasContext: configure() method" + } + ], + "dom-gpucanvascontext-getcurrenttexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCanvasContext.json", + "name": "getCurrentTexture", + "slug": "API/GPUCanvasContext/getCurrentTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/getCurrentTexture", + "summary": "The getCurrentTexture() method of the GPUCanvasContext interface returns the next GPUTexture to be composited to the document by the canvas context.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCanvasContext: getCurrentTexture() method" + } + ], + "dom-gpucanvascontext-unconfigure": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCanvasContext.json", + "name": "unconfigure", + "slug": "API/GPUCanvasContext/unconfigure", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/unconfigure", + "summary": "The unconfigure() method of the GPUCanvasContext interface removes any previously-set context configuration, and destroys any textures returned via getCurrentTexture() while the canvas context was configured.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCanvasContext: unconfigure() method" + } + ], + "gpucanvascontext": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCanvasContext.json", + "name": "GPUCanvasContext", + "slug": "API/GPUCanvasContext", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext", + "summary": "The GPUCanvasContext interface of the WebGPU API represents the WebGPU rendering context of a <canvas> element, returned via an HTMLCanvasElement.getContext() call with a contextType of \"webgpu\".", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCanvasContext" + } + ], + "gpucommandbuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandBuffer.json", + "name": "GPUCommandBuffer", + "slug": "API/GPUCommandBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandBuffer", + "summary": "The GPUCommandBuffer interface of the WebGPU API represents a pre-recorded list of GPU commands that can be submitted to a GPUQueue for execution.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandBuffer" + } + ], + "dom-gpucommandencoder-begincomputepass": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "beginComputePass", + "slug": "API/GPUCommandEncoder/beginComputePass", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/beginComputePass", + "summary": "The beginComputePass() method of the GPUCommandEncoder interface starts encoding a compute pass, returning a GPUComputePassEncoder that can be used to control computation.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: beginComputePass() method" + } + ], + "dom-gpucommandencoder-beginrenderpass": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "beginRenderPass", + "slug": "API/GPUCommandEncoder/beginRenderPass", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/beginRenderPass", + "summary": "The beginRenderPass() method of the GPUCommandEncoder interface starts encoding a render pass, returning a GPURenderPassEncoder that can be used to control rendering.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: beginRenderPass() method" + } + ], + "dom-gpucommandencoder-clearbuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "clearBuffer", + "slug": "API/GPUCommandEncoder/clearBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer", + "summary": "The clearBuffer() method of the GPUCommandEncoder interface encodes a command that fills a region of a GPUBuffer with zeroes.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: clearBuffer() method" + } + ], + "dom-gpucommandencoder-copybuffertobuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "copyBufferToBuffer", + "slug": "API/GPUCommandEncoder/copyBufferToBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer", + "summary": "The copyBufferToBuffer() method of the GPUCommandEncoder interface encodes a command that copies data from one GPUBuffer to another.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: copyBufferToBuffer() method" + } + ], + "dom-gpucommandencoder-copybuffertotexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "copyBufferToTexture", + "slug": "API/GPUCommandEncoder/copyBufferToTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToTexture", + "summary": "The copyBufferToTexture() method of the GPUCommandEncoder interface encodes a command that copies data from a GPUBuffer to a GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: copyBufferToTexture() method" + } + ], + "dom-gpucommandencoder-copytexturetobuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "copyTextureToBuffer", + "slug": "API/GPUCommandEncoder/copyTextureToBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyTextureToBuffer", + "summary": "The copyTextureToBuffer() method of the GPUCommandEncoder interface encodes a command that copies data from a GPUTexture to a GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: copyTextureToBuffer() method" + } + ], + "dom-gpucommandencoder-copytexturetotexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "copyTextureToTexture", + "slug": "API/GPUCommandEncoder/copyTextureToTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyTextureToTexture", + "summary": "The copyTextureToTexture() method of the GPUCommandEncoder interface encodes a command that copies data from one GPUTexture to another.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: copyTextureToTexture() method" + } + ], + "dom-gpucommandencoder-finish": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "finish", + "slug": "API/GPUCommandEncoder/finish", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/finish", + "summary": "The finish() method of the GPUCommandEncoder interface completes recording of the command sequence encoded on this GPUCommandEncoder, returning a corresponding GPUCommandBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: finish() method" + } + ], + "dom-gpudebugcommandsmixin-insertdebugmarker": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "insertDebugMarker", + "slug": "API/GPUCommandEncoder/insertDebugMarker", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/insertDebugMarker", + "summary": "The insertDebugMarker() method of the GPUCommandEncoder interface marks a specific point in a series of encoded commands with a label.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: insertDebugMarker() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "insertDebugMarker", + "slug": "API/GPUComputePassEncoder/insertDebugMarker", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/insertDebugMarker", + "summary": "The insertDebugMarker() method of the GPUComputePassEncoder interface marks a specific point in a series of encoded compute pass commands with a label.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: insertDebugMarker() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "insertDebugMarker", + "slug": "API/GPURenderBundleEncoder/insertDebugMarker", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/insertDebugMarker", + "summary": "The insertDebugMarker() method of the GPURenderBundleEncoder interface marks a specific point in a series of encoded render bundle pass commands with a label.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: insertDebugMarker() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "insertDebugMarker", + "slug": "API/GPURenderPassEncoder/insertDebugMarker", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/insertDebugMarker", + "summary": "The insertDebugMarker() method of the GPURenderPassEncoder interface marks a specific point in a series of encoded render pass commands with a label.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: insertDebugMarker() method" + } + ], + "dom-gpudebugcommandsmixin-popdebuggroup": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "popDebugGroup", + "slug": "API/GPUCommandEncoder/popDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/popDebugGroup", + "summary": "The popDebugGroup() method of the GPUCommandEncoder interface ends a debug group, which is begun with a pushDebugGroup() call.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: popDebugGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "popDebugGroup", + "slug": "API/GPUComputePassEncoder/popDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/popDebugGroup", + "summary": "The popDebugGroup() method of the GPUComputePassEncoder interface ends a compute pass debug group, which is begun with a pushDebugGroup() call.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: popDebugGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "popDebugGroup", + "slug": "API/GPURenderBundleEncoder/popDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/popDebugGroup", + "summary": "The popDebugGroup() method of the GPURenderBundleEncoder interface ends a render bundle debug group, which is begun with a pushDebugGroup() call.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: popDebugGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "popDebugGroup", + "slug": "API/GPURenderPassEncoder/popDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/popDebugGroup", + "summary": "The popDebugGroup() method of the GPURenderPassEncoder interface ends a render pass debug group, which is begun with a pushDebugGroup() call.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: popDebugGroup() method" + } + ], + "dom-gpudebugcommandsmixin-pushdebuggroup": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "pushDebugGroup", + "slug": "API/GPUCommandEncoder/pushDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/pushDebugGroup", + "summary": "The pushDebugGroup() method of the GPUCommandEncoder interface begins a debug group, which is marked with a specified label, and will contain all subsequent encoded commands up until a popDebugGroup() method is invoked.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: pushDebugGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "pushDebugGroup", + "slug": "API/GPUComputePassEncoder/pushDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/pushDebugGroup", + "summary": "The pushDebugGroup() method of the GPUComputePassEncoder interface begins a compute pass debug group, which is marked with a specified label, and will contain all subsequent encoded commands up until a popDebugGroup() method is invoked.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: pushDebugGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "pushDebugGroup", + "slug": "API/GPURenderBundleEncoder/pushDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/pushDebugGroup", + "summary": "The pushDebugGroup() method of the GPURenderBundleEncoder interface begins a render bundle debug group, which is marked with a specified label, and will contain all subsequent encoded commands up until a popDebugGroup() method is invoked.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: pushDebugGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "pushDebugGroup", + "slug": "API/GPURenderPassEncoder/pushDebugGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/pushDebugGroup", + "summary": "The pushDebugGroup() method of the GPURenderPassEncoder interface begins a render pass debug group, which is marked with a specified label, and will contain all subsequent encoded commands up until a popDebugGroup() method is invoked.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: pushDebugGroup() method" + } + ], + "dom-gpucommandencoder-resolvequeryset": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "resolveQuerySet", + "slug": "API/GPUCommandEncoder/resolveQuerySet", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/resolveQuerySet", + "summary": "The resolveQuerySet() method of the GPUCommandEncoder interface encodes a command that resolves a GPUQuerySet, copying the results into a specified GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: resolveQuerySet() method" + } + ], + "dom-gpucommandencoder-writetimestamp": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "writeTimestamp", + "slug": "API/GPUCommandEncoder/writeTimestamp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/writeTimestamp", + "summary": "The writeTimestamp() method of the GPUCommandEncoder interface encodes a command that writes a timestamp into a GPUQuerySet once the previous commands recorded into the same queued GPUCommandBuffer have been executed by the GPU.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder: writeTimestamp() method" + } + ], + "gpucommandencoder": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCommandEncoder.json", + "name": "GPUCommandEncoder", + "slug": "API/GPUCommandEncoder", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder", + "summary": "The GPUCommandEncoder interface of the WebGPU API represents a command encoder, used to encode commands to be issued to the GPU.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCommandEncoder" + } + ], + "dom-gpucompilationinfo-messages": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationInfo.json", + "name": "messages", + "slug": "API/GPUCompilationInfo/messages", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationInfo/messages", + "summary": "The messages read-only property of the GPUCompilationInfo interface is an array of GPUCompilationMessage objects, each one containing the details of an individual shader compilation message. Messages can be informational, warnings, or errors.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationInfo: messages property" + } + ], + "gpucompilationinfo": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationInfo.json", + "name": "GPUCompilationInfo", + "slug": "API/GPUCompilationInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationInfo", + "summary": "The GPUCompilationInfo interface of the WebGPU API represents an array of GPUCompilationMessage objects generated by the GPU shader module compiler to help diagnose problems with shader code.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationInfo" + } + ], + "dom-gpucompilationmessage-length": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "length", + "slug": "API/GPUCompilationMessage/length", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/length", + "summary": "The length read-only property of the GPUCompilationMessage interface is a number representing the length of the substring that the message corresponds to.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage: length property" + } + ], + "dom-gpucompilationmessage-linenum": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "lineNum", + "slug": "API/GPUCompilationMessage/lineNum", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/lineNum", + "summary": "The lineNum read-only property of the GPUCompilationMessage interface is a number representing the line number in the shader code that the message corresponds to.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage: lineNum property" + } + ], + "dom-gpucompilationmessage-linepos": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "linePos", + "slug": "API/GPUCompilationMessage/linePos", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/linePos", + "summary": "The linePos read-only property of the GPUCompilationMessage interface is a number representing the position in the code line that the message corresponds to. This could be an exact point, or the start of the relevant substring.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage: linePos property" + } + ], + "dom-gpucompilationmessage-message": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "message", + "slug": "API/GPUCompilationMessage/message", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/message", + "summary": "The message read-only property of the GPUCompilationMessage interface is a string representing human-readable message text.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage: message property" + } + ], + "dom-gpucompilationmessage-offset": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "offset", + "slug": "API/GPUCompilationMessage/offset", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/offset", + "summary": "The offset read-only property of the GPUCompilationMessage interface is a number representing the offset from the start of the shader code to the exact point, or the start of the relevant substring, that the message corresponds to.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage: offset property" + } + ], + "dom-gpucompilationmessage-type": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "type", + "slug": "API/GPUCompilationMessage/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/type", + "summary": "The type read-only property of the GPUCompilationMessage interface is an enumerated value representing the type of the message. Each type represents a different severity level.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage: type property" + } + ], + "gpucompilationmessage": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUCompilationMessage.json", + "name": "GPUCompilationMessage", + "slug": "API/GPUCompilationMessage", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage", + "summary": "The GPUCompilationMessage interface of the WebGPU API represents a single informational, warning, or error message generated by the GPU shader module compiler.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUCompilationMessage" + } + ], + "dom-gpucomputepassencoder-dispatchworkgroups": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "dispatchWorkgroups", + "slug": "API/GPUComputePassEncoder/dispatchWorkgroups", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroups", + "summary": "The dispatchWorkgroups() method of the GPUComputePassEncoder interface dispatches a specific grid of workgroups to perform the work being done by the current GPUComputePipeline (i.e. set via GPUComputePassEncoder.setPipeline()).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: dispatchWorkgroups() method" + } + ], + "dom-gpucomputepassencoder-dispatchworkgroupsindirect": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "dispatchWorkgroupsIndirect", + "slug": "API/GPUComputePassEncoder/dispatchWorkgroupsIndirect", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroupsIndirect", + "summary": "The dispatchWorkgroupsIndirect() method of the GPUComputePassEncoder interface dispatches a grid of workgroups, defined by the parameters of a GPUBuffer, to perform the work being done by the current GPUComputePipeline (i.e. set via GPUComputePassEncoder.setPipeline()).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "dom.webgpu.indirect-dispatch.enabled", + "value_to_set": "true" + } + ], + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: dispatchWorkgroupsIndirect() method" + } + ], + "dom-gpucomputepassencoder-end": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "end", + "slug": "API/GPUComputePassEncoder/end", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/end", + "summary": "The end() method of the GPUComputePassEncoder interface completes recording of the current compute pass command sequence.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: end() method" + } + ], + "programmable-passes-bind-groups": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "setBindGroup", + "slug": "API/GPUComputePassEncoder/setBindGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setBindGroup", + "summary": "The setBindGroup() method of the GPUComputePassEncoder interface sets the GPUBindGroup to use for subsequent compute commands, for a given index.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: setBindGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "setBindGroup", + "slug": "API/GPURenderBundleEncoder/setBindGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup", + "summary": "The setBindGroup() method of the GPURenderBundleEncoder interface sets the GPUBindGroup to use for subsequent render bundle commands, for a given index.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: setBindGroup() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setBindGroup", + "slug": "API/GPURenderPassEncoder/setBindGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBindGroup", + "summary": "The setBindGroup() method of the GPURenderPassEncoder interface sets the GPUBindGroup to use for subsequent render commands, for a given index.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setBindGroup() method" + } + ], + "dom-gpucomputepassencoder-setpipeline": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "setPipeline", + "slug": "API/GPUComputePassEncoder/setPipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setPipeline", + "summary": "The setPipeline() method of the GPUComputePassEncoder interface sets the GPUComputePipeline to use for this compute pass.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder: setPipeline() method" + } + ], + "gpucomputepassencoder": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePassEncoder.json", + "name": "GPUComputePassEncoder", + "slug": "API/GPUComputePassEncoder", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder", + "summary": "The GPUComputePassEncoder interface of the WebGPU API encodes commands related to controlling the compute shader stage, as issued by a GPUComputePipeline. It forms part of the overall encoding activity of a GPUCommandEncoder.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePassEncoder" + } + ], + "dom-gpupipelinebase-getbindgrouplayout": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePipeline.json", + "name": "getBindGroupLayout", + "slug": "API/GPUComputePipeline/getBindGroupLayout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline/getBindGroupLayout", + "summary": "The getBindGroupLayout() method of the GPUComputePipeline interface returns the pipeline's GPUBindGroupLayout object with the given index (i.e. included in the originating GPUDevice.createComputePipeline() or GPUDevice.createComputePipelineAsync() call's pipeline layout).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePipeline: getBindGroupLayout() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPipeline.json", + "name": "getBindGroupLayout", + "slug": "API/GPURenderPipeline/getBindGroupLayout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline/getBindGroupLayout", + "summary": "The getBindGroupLayout() method of the GPURenderPipeline interface returns the pipeline's GPUBindGroupLayout object with the given index (i.e. included in the originating GPUDevice.createRenderPipeline() or GPUDevice.createRenderPipelineAsync() call's pipeline layout).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPipeline: getBindGroupLayout() method" + } + ], + "gpucomputepipeline": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUComputePipeline.json", + "name": "GPUComputePipeline", + "slug": "API/GPUComputePipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline", + "summary": "The GPUComputePipeline interface of the WebGPU API represents a pipeline that controls the compute shader stage and can be used in a GPUComputePassEncoder.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUComputePipeline" + } + ], + "dom-gpudevice-createbindgroup": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createBindGroup", + "slug": "API/GPUDevice/createBindGroup", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createBindGroup", + "summary": "The createBindGroup() method of the GPUDevice interface creates a GPUBindGroup based on a GPUBindGroupLayout that defines a set of resources to be bound together in a group and how those resources are used in shader stages.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createBindGroup() method" + } + ], + "dom-gpudevice-createbindgrouplayout": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createBindGroupLayout", + "slug": "API/GPUDevice/createBindGroupLayout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createBindGroupLayout", + "summary": "The createBindGroupLayout() method of the GPUDevice interface creates a GPUBindGroupLayout that defines the structure and purpose of related GPU resources such as buffers that will be used in a pipeline, and is used as a template when creating GPUBindGroups.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createBindGroupLayout() method" + } + ], + "dom-gpudevice-createbuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createBuffer", + "slug": "API/GPUDevice/createBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createBuffer", + "summary": "The createBuffer() method of the GPUDevice interface creates a GPUBuffer in which to store raw data to use in GPU operations.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createBuffer() method" + } + ], + "dom-gpudevice-createcommandencoder": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createCommandEncoder", + "slug": "API/GPUDevice/createCommandEncoder", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createCommandEncoder", + "summary": "The createCommandEncoder() method of the GPUDevice interface creates a GPUCommandEncoder, used to encode commands to be issued to the GPU.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createCommandEncoder() method" + } + ], + "dom-gpudevice-createcomputepipeline": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createComputePipeline", + "slug": "API/GPUDevice/createComputePipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createComputePipeline", + "summary": "The createComputePipeline() method of the GPUDevice interface creates a GPUComputePipeline that can control the compute shader stage and be used in a GPUComputePassEncoder.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createComputePipeline() method" + } + ], + "dom-gpudevice-createcomputepipelineasync": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createComputePipelineAsync", + "slug": "API/GPUDevice/createComputePipelineAsync", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createComputePipelineAsync", + "summary": "The createComputePipelineAsync() method of the GPUDevice interface returns a Promise that fulfills with a GPUComputePipeline, which can control the compute shader stage and be used in a GPUComputePassEncoder, once the pipeline can be used without any stalling.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createComputePipelineAsync() method" + } + ], + "dom-gpudevice-createpipelinelayout": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createPipelineLayout", + "slug": "API/GPUDevice/createPipelineLayout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createPipelineLayout", + "summary": "The createPipelineLayout() method of the GPUDevice interface creates a GPUPipelineLayout that defines the GPUBindGroupLayouts used by a pipeline. GPUBindGroups used with the pipeline during command encoding must have compatible GPUBindGroupLayouts.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createPipelineLayout() method" + } + ], + "dom-gpudevice-createqueryset": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUDevice.json", + "name": "createQuerySet", + "slug": "API/GPUDevice/createQuerySet", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createQuerySet", + "summary": "The createQuerySet() method of the GPUDevice interface creates a GPUQuerySet that can be used to record the results of queries on passes, such as occlusion or timestamp queries.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createQuerySet() method" + } + ], + "dom-gpudevice-createrenderbundleencoder": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createRenderBundleEncoder", + "slug": "API/GPUDevice/createRenderBundleEncoder", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createRenderBundleEncoder", + "summary": "The createRenderBundleEncoder() method of the GPUDevice interface creates a GPURenderBundleEncoder that can be used to pre-record bundles of commands. These can be reused in GPURenderPassEncoders via the executeBundles() method, as many times as required.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createRenderBundleEncoder() method" + } + ], + "dom-gpudevice-createrenderpipeline": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createRenderPipeline", + "slug": "API/GPUDevice/createRenderPipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createRenderPipeline", + "summary": "The createRenderPipeline() method of the GPUDevice interface creates a GPURenderPipeline that can control the vertex and fragment shader stages and be used in a GPURenderPassEncoder or GPURenderBundleEncoder.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createRenderPipeline() method" + } + ], + "dom-gpudevice-createrenderpipelineasync": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createRenderPipelineAsync", + "slug": "API/GPUDevice/createRenderPipelineAsync", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createRenderPipelineAsync", + "summary": "The createRenderPipelineAsync() method of the GPUDevice interface returns a Promise that fulfills with a GPURenderPipeline, which can control the vertex and fragment shader stages and be used in a GPURenderPassEncoder or GPURenderBundleEncoder, once the pipeline can be used without any stalling.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createRenderPipelineAsync() method" + } + ], + "dom-gpudevice-createsampler": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createSampler", + "slug": "API/GPUDevice/createSampler", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createSampler", + "summary": "The createSampler() method of the GPUDevice interface creates a GPUSampler, which controls how shaders transform and filter texture resource data.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createSampler() method" + } + ], + "dom-gpudevice-createshadermodule": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createShaderModule", + "slug": "API/GPUDevice/createShaderModule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createShaderModule", + "summary": "The createShaderModule() method of the GPUDevice interface creates a GPUShaderModule from a string of WGSL source code.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createShaderModule() method" + } + ], + "dom-gpudevice-createtexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "createTexture", + "slug": "API/GPUDevice/createTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createTexture", + "summary": "The createTexture() method of the GPUDevice interface creates a GPUTexture in which to store 1D, 2D, or 3D arrays of data, such as images, to use in GPU rendering operations.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: createTexture() method" + } + ], + "dom-gpudevice-destroy": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "destroy", + "slug": "API/GPUDevice/destroy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/destroy", + "summary": "The destroy() method of the GPUDevice interface destroys the device, preventing further operations on it.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: destroy() method" + } + ], + "dom-gpudevice-features": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "features", + "slug": "API/GPUDevice/features", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/features", + "summary": "The features read-only property of the GPUDevice interface returns a GPUSupportedFeatures object that describes additional functionality supported by the device. Only features requested during the creation of the device (i.e. when GPUAdapter.requestDevice() is called) are included.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: features property" + } + ], + "dom-gpudevice-importexternaltexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "importExternalTexture", + "slug": "API/GPUDevice/importExternalTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/importExternalTexture", + "summary": "The importExternalTexture() method of the GPUDevice interface takes an HTMLVideoElement or a VideoFrame object as an input and returns a GPUExternalTexture wrapper object containing a snapshot of the video that can be used as a frame in GPU rendering operations.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: importExternalTexture() method" + } + ], + "dom-gpudevice-limits": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "limits", + "slug": "API/GPUDevice/limits", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/limits", + "summary": "The limits read-only property of the GPUDevice interface returns a GPUSupportedLimits object that describes the limits supported by the device. All limit values will be included, and the limits requested during the creation of the device (i.e. when GPUAdapter.requestDevice() is called) will be reflected in those values.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: limits property" + } + ], + "dom-gpudevice-lost": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "lost", + "slug": "API/GPUDevice/lost", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/lost", + "summary": "The lost read-only property of the GPUDevice interface contains a Promise that remains pending throughout the device's lifetime and resolves with a GPUDeviceLostInfo object when the device is lost.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: lost property" + } + ], + "dom-gpudevice-poperrorscope": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "popErrorScope", + "slug": "API/GPUDevice/popErrorScope", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/popErrorScope", + "summary": "The popErrorScope() method of the GPUDevice interface pops an existing GPU error scope from the error scope stack (originally pushed using GPUDevice.pushErrorScope()) and returns a Promise that resolves to an object describing the first error captured in the scope, or null if no error occurred.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: popErrorScope() method" + } + ], + "dom-gpudevice-pusherrorscope": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "pushErrorScope", + "slug": "API/GPUDevice/pushErrorScope", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/pushErrorScope", + "summary": "The pushErrorScope() method of the GPUDevice interface pushes a new GPU error scope onto the device's error scope stack, allowing you to capture errors of a particular type.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: pushErrorScope() method" + } + ], + "dom-gpudevice-queue": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "queue", + "slug": "API/GPUDevice/queue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/queue", + "summary": "The queue read-only property of the GPUDevice interface returns the primary GPUQueue for the device.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: queue property" + } + ], + "dom-gpudevice-onuncapturederror": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "uncapturederror_event", + "slug": "API/GPUDevice/uncapturederror_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/uncapturederror_event", + "summary": "The uncapturederror event of the GPUDevice interface is fired when an error is thrown that has not been observed by a GPU error scope, to provide a way to report unexpected errors.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice: uncapturederror event" + } + ], + "gpudevice": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDevice.json", + "name": "GPUDevice", + "slug": "API/GPUDevice", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice", + "summary": "The GPUDevice interface of the WebGPU API represents a logical GPU device. This is the main interface through which the majority of WebGPU functionality is accessed.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDevice" + } + ], + "dom-gpudevicelostinfo-message": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDeviceLostInfo.json", + "name": "message", + "slug": "API/GPUDeviceLostInfo/message", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDeviceLostInfo/message", + "summary": "The message read-only property of the GPUDeviceLostInfo interface provides a human-readable message that explains why the device was lost.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDeviceLostInfo: message property" + } + ], + "dom-gpudevicelostinfo-reason": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDeviceLostInfo.json", + "name": "reason", + "slug": "API/GPUDeviceLostInfo/reason", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDeviceLostInfo/reason", + "summary": "The reason read-only property of the GPUDeviceLostInfo interface defines the reason the device was lost in a machine-readable way.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDeviceLostInfo: reason property" + } + ], + "gpudevicelostinfo": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUDeviceLostInfo.json", + "name": "GPUDeviceLostInfo", + "slug": "API/GPUDeviceLostInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUDeviceLostInfo", + "summary": "The GPUDeviceLostInfo interface of the WebGPU API represents the object returned when the GPUDevice.lost Promise resolves. This provides information as to why a device has been lost.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUDeviceLostInfo" + } + ], + "dom-gpuerror-message": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUError.json", + "name": "message", + "slug": "API/GPUError/message", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUError/message", + "summary": "The message read-only property of the GPUError interface provides a human-readable message that explains why the error occurred.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUError: message property" + } + ], + "gpuerror": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUError.json", + "name": "GPUError", + "slug": "API/GPUError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUError", + "summary": "The GPUError interface of the WebGPU API is the base interface for errors surfaced by GPUDevice.popErrorScope and the uncapturederror event.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUError" + } + ], + "gpuexternaltexture": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUExternalTexture.json", + "name": "GPUExternalTexture", + "slug": "API/GPUExternalTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUExternalTexture", + "summary": "The GPUExternalTexture interface of the WebGPU API represents a wrapper object containing an HTMLVideoElement snapshot that can be used as a texture in GPU rendering operations.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUExternalTexture" + } + ], + "dom-gpuinternalerror-gpuinternalerror": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUInternalError.json", + "name": "GPUInternalError", + "slug": "API/GPUInternalError/GPUInternalError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUInternalError/GPUInternalError", + "summary": "The GPUInternalError() constructor creates a new GPUInternalError object instance.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUInternalError: GPUInternalError() constructor" + } + ], + "gpuinternalerror": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUInternalError.json", + "name": "GPUInternalError", + "slug": "API/GPUInternalError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUInternalError", + "summary": "The GPUInternalError interface of the WebGPU API describes an application error indicating that an operation did not pass the WebGPU API's validation constraints.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUInternalError" + } + ], + "dom-gpuoutofmemoryerror-gpuoutofmemoryerror": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUOutOfMemoryError.json", + "name": "GPUOutOfMemoryError", + "slug": "API/GPUOutOfMemoryError/GPUOutOfMemoryError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUOutOfMemoryError/GPUOutOfMemoryError", + "summary": "The GPUOutOfMemoryError() constructor creates a new GPUOutOfMemoryError object instance.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUOutOfMemoryError: GPUOutOfMemoryError() constructor" + } + ], + "gpuoutofmemoryerror": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUOutOfMemoryError.json", + "name": "GPUOutOfMemoryError", + "slug": "API/GPUOutOfMemoryError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUOutOfMemoryError", + "summary": "The GPUOutOfMemoryError interface of the WebGPU API describes an out-of-memory (oom) error indicating that there was not enough free memory to complete the requested operation.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUOutOfMemoryError" + } + ], + "dom-gpupipelineerror-constructor": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUPipelineError.json", + "name": "GPUPipelineError", + "slug": "API/GPUPipelineError/GPUPipelineError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineError/GPUPipelineError", + "summary": "The GPUPipelineError() constructor creates a new GPUPipelineError object instance.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUPipelineError: GPUPipelineError() constructor" + } + ], + "dom-gpupipelineerror-reason": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUPipelineError.json", + "name": "reason", + "slug": "API/GPUPipelineError/reason", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineError/reason", + "summary": "The reason read-only property of the GPUPipelineError interface defines the reason the pipeline creation failed in a machine-readable way.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUPipelineError: reason property" + } + ], + "gpupipelineerror": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUPipelineError.json", + "name": "GPUPipelineError", + "slug": "API/GPUPipelineError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineError", + "summary": "The GPUPipelineError interface of the WebGPU API describes a pipeline failure. This is the value received when a Promise returned by a GPUDevice.createComputePipelineAsync() or GPUDevice.createRenderPipelineAsync() call rejects.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUPipelineError" + } + ], + "gpupipelinelayout": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUPipelineLayout.json", + "name": "GPUPipelineLayout", + "slug": "API/GPUPipelineLayout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineLayout", + "summary": "The GPUPipelineLayout interface of the WebGPU API defines the GPUBindGroupLayouts used by a pipeline. GPUBindGroups used with the pipeline during command encoding must have compatible GPUBindGroupLayouts.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUPipelineLayout" + } + ], + "dom-gpuqueryset-count": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQuerySet.json", + "name": "count", + "slug": "API/GPUQuerySet/count", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/count", + "summary": "The count read-only property of the GPUQuerySet interface is a number specifying the number of queries managed by the GPUQuerySet.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQuerySet: count property" + } + ], + "dom-gpuqueryset-destroy": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQuerySet.json", + "name": "destroy", + "slug": "API/GPUQuerySet/destroy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/destroy", + "summary": "The destroy() method of the GPUQuerySet interface destroys the GPUQuerySet.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQuerySet: destroy() method" + } + ], + "dom-gpuqueryset-type": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQuerySet.json", + "name": "type", + "slug": "API/GPUQuerySet/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/type", + "summary": "The type read-only property of the GPUQuerySet interface is an enumerated value specifying the type of queries managed by the GPUQuerySet.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQuerySet: type property" + } + ], + "gpuqueryset": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQuerySet.json", + "name": "GPUQuerySet", + "slug": "API/GPUQuerySet", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet", + "summary": "The GPUQuerySet interface of the WebGPU API is used to record the results of queries on passes, such as occlusion or timestamp queries.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQuerySet" + } + ], + "dom-gpuqueue-copyexternalimagetotexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQueue.json", + "name": "copyExternalImageToTexture", + "slug": "API/GPUQueue/copyExternalImageToTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/copyExternalImageToTexture", + "summary": "The copyExternalImageToTexture() method of the GPUQueue interface copies a snapshot taken from a source image, video, or canvas into a given GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue: copyExternalImageToTexture() method" + } + ], + "dom-gpuqueue-onsubmittedworkdone": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUQueue.json", + "name": "onSubmittedWorkDone", + "slug": "API/GPUQueue/onSubmittedWorkDone", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/onSubmittedWorkDone", + "summary": "The onSubmittedWorkDone() method of the GPUQueue interface returns a Promise that resolves when all the work submitted to the GPU via this GPUQueue at the point the method is called has been processed.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue: onSubmittedWorkDone() method" + } + ], + "dom-gpuqueue-submit": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQueue.json", + "name": "submit", + "slug": "API/GPUQueue/submit", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/submit", + "summary": "The submit() method of the GPUQueue interface schedules the execution of command buffers represented by one or more GPUCommandBuffer objects by the GPU.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue: submit() method" + } + ], + "dom-gpuqueue-writebuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQueue.json", + "name": "writeBuffer", + "slug": "API/GPUQueue/writeBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer", + "summary": "The writeBuffer() method of the GPUQueue interface writes a provided data source into a given GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue: writeBuffer() method" + } + ], + "dom-gpuqueue-writetexture": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQueue.json", + "name": "writeTexture", + "slug": "API/GPUQueue/writeTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeTexture", + "summary": "The writeTexture() method of the GPUQueue interface writes a provided data source into a given GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue: writeTexture() method" + } + ], + "gpu-queue": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUQueue.json", + "name": "GPUQueue", + "slug": "API/GPUQueue", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue", + "summary": "The GPUQueue interface of the WebGPU API controls execution of encoded commands on the GPU.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUQueue" + } + ], + "gpurenderbundle": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPURenderBundle.json", + "name": "GPURenderBundle", + "slug": "API/GPURenderBundle", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundle", + "summary": "The GPURenderBundle interface of the WebGPU API represents a container for pre-recorded bundles of commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundle" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "GPURenderBundleEncoder", + "slug": "API/GPURenderBundleEncoder", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder", + "summary": "The GPURenderBundleEncoder interface of the WebGPU API is used to pre-record bundles of commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder" + } + ], + "dom-gpurendercommandsmixin-draw": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "draw", + "slug": "API/GPURenderBundleEncoder/draw", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw", + "summary": "The draw() method of the GPURenderBundleEncoder interface draws primitives based on the vertex buffers provided by setVertexBuffer().", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: draw() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "draw", + "slug": "API/GPURenderPassEncoder/draw", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/draw", + "summary": "The draw() method of the GPURenderPassEncoder interface draws primitives based on the vertex buffers provided by setVertexBuffer().", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: draw() method" + } + ], + "dom-gpurendercommandsmixin-drawindexed": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "drawIndexed", + "slug": "API/GPURenderBundleEncoder/drawIndexed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed", + "summary": "The drawIndexed() method of the GPURenderBundleEncoder interface draws indexed primitives based on the vertex and index buffers provided by setVertexBuffer() and setIndexBuffer().", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: drawIndexed() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "drawIndexed", + "slug": "API/GPURenderPassEncoder/drawIndexed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexed", + "summary": "The drawIndexed() method of the GPURenderPassEncoder interface draws indexed primitives based on the vertex and index buffers provided by setVertexBuffer() and setIndexBuffer().", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: drawIndexed() method" + } + ], + "dom-gpurendercommandsmixin-drawindexedindirect": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "drawIndexedIndirect", + "slug": "API/GPURenderBundleEncoder/drawIndexedIndirect", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexedIndirect", + "summary": "The drawIndexedIndirect() method of the GPURenderBundleEncoder interface draws indexed primitives using parameters read from a GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "dom.webgpu.indirect-dispatch.enabled", + "value_to_set": "true" + } + ], + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: drawIndexedIndirect() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "drawIndexedIndirect", + "slug": "API/GPURenderPassEncoder/drawIndexedIndirect", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexedIndirect", + "summary": "The drawIndexedIndirect() method of the GPURenderPassEncoder interface draws indexed primitives using parameters read from a GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "dom.webgpu.indirect-dispatch.enabled", + "value_to_set": "true" + } + ], + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: drawIndexedIndirect() method" + } + ], + "dom-gpurendercommandsmixin-drawindirect": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "drawIndirect", + "slug": "API/GPURenderBundleEncoder/drawIndirect", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndirect", + "summary": "The drawIndirect() method of the GPURenderBundleEncoder interface draws primitives using parameters read from a GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "dom.webgpu.indirect-dispatch.enabled", + "value_to_set": "true" + } + ], + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: drawIndirect() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "drawIndirect", + "slug": "API/GPURenderPassEncoder/drawIndirect", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndirect", + "summary": "The drawIndirect() method of the GPURenderPassEncoder interface draws primitives using parameters read from a GPUBuffer.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "flags": [ + { + "type": "preference", + "name": "dom.webgpu.indirect-dispatch.enabled", + "value_to_set": "true" + } + ], + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: drawIndirect() method" + } + ], + "dom-gpurenderbundleencoder-finish": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "finish", + "slug": "API/GPURenderBundleEncoder/finish", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/finish", + "summary": "The finish() method of the GPURenderBundleEncoder interface completes recording of the current render bundle command sequence, returning a GPURenderBundle object that can be passed into a GPURenderPassEncoder.executeBundles() call to execute those commands in a specific render pass.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: finish() method" + } + ], + "dom-gpurendercommandsmixin-setindexbuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "setIndexBuffer", + "slug": "API/GPURenderBundleEncoder/setIndexBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer", + "summary": "The setIndexBuffer() method of the GPURenderBundleEncoder interface sets the current GPUBuffer that will provide index data for subsequent drawing commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: setIndexBuffer() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setIndexBuffer", + "slug": "API/GPURenderPassEncoder/setIndexBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer", + "summary": "The setIndexBuffer() method of the GPURenderPassEncoder interface sets the current GPUBuffer that will provide index data for subsequent drawing commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setIndexBuffer() method" + } + ], + "dom-gpurendercommandsmixin-setpipeline": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "setPipeline", + "slug": "API/GPURenderBundleEncoder/setPipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setPipeline", + "summary": "The setPipeline() method of the GPURenderBundleEncoder interface sets the GPURenderPipeline to use for subsequent render bundle commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: setPipeline() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setPipeline", + "slug": "API/GPURenderPassEncoder/setPipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setPipeline", + "summary": "The setPipeline() method of the GPURenderPassEncoder interface sets the GPURenderPipeline to use for subsequent render pass commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setPipeline() method" + } + ], + "dom-gpurendercommandsmixin-setvertexbuffer": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderBundleEncoder.json", + "name": "setVertexBuffer", + "slug": "API/GPURenderBundleEncoder/setVertexBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer", + "summary": "The setVertexBuffer() method of the GPURenderBundleEncoder interface sets or unsets the current GPUBuffer for the given slot that will provide vertex data for subsequent drawing commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderBundleEncoder: setVertexBuffer() method" + }, + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setVertexBuffer", + "slug": "API/GPURenderPassEncoder/setVertexBuffer", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer", + "summary": "The setVertexBuffer() method of the GPURenderPassEncoder interface sets or unsets the current GPUBuffer for the given slot that will provide vertex data for subsequent drawing commands.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setVertexBuffer() method" + } + ], + "dom-gpurenderpassencoder-beginocclusionquery": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "beginOcclusionQuery", + "slug": "API/GPURenderPassEncoder/beginOcclusionQuery", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/beginOcclusionQuery", + "summary": "The beginOcclusionQuery() method of the GPURenderPassEncoder interface begins an occlusion query at the specified index of the relevant GPUQuerySet (provided as the value of the occlusionQuerySet descriptor property when invoking GPUCommandEncoder.beginRenderPass() to run the render pass).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: beginOcclusionQuery() method" + } + ], + "dom-gpurenderpassencoder-end": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "end", + "slug": "API/GPURenderPassEncoder/end", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/end", + "summary": "The end() method of the GPURenderPassEncoder interface completes recording of the current render pass command sequence.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: end() method" + } + ], + "dom-gpurenderpassencoder-endocclusionquery": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "endOcclusionQuery", + "slug": "API/GPURenderPassEncoder/endOcclusionQuery", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/endOcclusionQuery", + "summary": "The endOcclusionQuery() method of the GPURenderPassEncoder interface ends an active occlusion query previously started with beginOcclusionQuery().", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: endOcclusionQuery() method" + } + ], + "dom-gpurenderpassencoder-executebundles": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "executeBundles", + "slug": "API/GPURenderPassEncoder/executeBundles", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/executeBundles", + "summary": "The executeBundles() method of the GPURenderPassEncoder interface executes commands previously recorded into the referenced GPURenderBundles, as part of this render pass.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: executeBundles() method" + } + ], + "dom-gpurenderpassencoder-setblendconstant": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setBlendConstant", + "slug": "API/GPURenderPassEncoder/setBlendConstant", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBlendConstant", + "summary": "The setBlendConstant() method of the GPURenderPassEncoder interface sets the constant blend color and alpha values used with \"constant\" and \"one-minus-constant\" blend factors (as set in the descriptor of the GPUDevice.createRenderPipeline() method, in the blend property).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setBlendConstant() method" + } + ], + "dom-gpurenderpassencoder-setscissorrect": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setScissorRect", + "slug": "API/GPURenderPassEncoder/setScissorRect", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setScissorRect", + "summary": "The setScissorRect() method of the GPURenderPassEncoder interface sets the scissor rectangle used during the rasterization stage. After transformation into viewport coordinates any fragments that fall outside the scissor rectangle will be discarded.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setScissorRect() method" + } + ], + "dom-gpurenderpassencoder-setstencilreference": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setStencilReference", + "slug": "API/GPURenderPassEncoder/setStencilReference", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setStencilReference", + "summary": "The setStencilReference() method of the GPURenderPassEncoder interface sets the stencil reference value using during stencil tests with the \"replace\" stencil operation (as set in the descriptor of the GPUDevice.createRenderPipeline() method, in the properties defining the various stencil operations).", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setStencilReference() method" + } + ], + "dom-gpurenderpassencoder-setviewport": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "setViewport", + "slug": "API/GPURenderPassEncoder/setViewport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setViewport", + "summary": "The setViewport() method of the GPURenderPassEncoder interface sets the viewport used during the rasterization stage to linearly map from normalized device coordinates to viewport coordinates.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder: setViewport() method" + } + ], + "gpurenderpassencoder": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPassEncoder.json", + "name": "GPURenderPassEncoder", + "slug": "API/GPURenderPassEncoder", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder", + "summary": "The GPURenderPassEncoder interface of the WebGPU API encodes commands related to controlling the vertex and fragment shader stages, as issued by a GPURenderPipeline. It forms part of the overall encoding activity of a GPUCommandEncoder.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPassEncoder" + } + ], + "gpurenderpipeline": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPURenderPipeline.json", + "name": "GPURenderPipeline", + "slug": "API/GPURenderPipeline", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline", + "summary": "The GPURenderPipeline interface of the WebGPU API represents a pipeline that controls the vertex and fragment shader stages and can be used in a GPURenderPassEncoder or GPURenderBundleEncoder.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPURenderPipeline" + } + ], + "gpusampler": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUSampler.json", + "name": "GPUSampler", + "slug": "API/GPUSampler", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUSampler", + "summary": "The GPUSampler interface of the WebGPU API represents an object that can control how shaders transform and filter texture resource data.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUSampler" + } + ], + "dom-gpushadermodule-getcompilationinfo": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUShaderModule.json", + "name": "getCompilationInfo", + "slug": "API/GPUShaderModule/getCompilationInfo", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUShaderModule/getCompilationInfo", + "summary": "The getCompilationInfo() method of the GPUShaderModule interface returns a Promise that fulfills with a GPUCompilationInfo object containing messages generated during the GPUShaderModule's compilation.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUShaderModule: getCompilationInfo() method" + } + ], + "gpushadermodule": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUShaderModule.json", + "name": "GPUShaderModule", + "slug": "API/GPUShaderModule", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUShaderModule", + "summary": "The GPUShaderModule interface of the WebGPU API represents an internal shader module object, a container for WGSL shader code that can be submitted to the GPU for execution by a pipeline.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUShaderModule" + } + ], + "gpu-supportedfeatures": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUSupportedFeatures.json", + "name": "GPUSupportedFeatures", + "slug": "API/GPUSupportedFeatures", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUSupportedFeatures", + "summary": "The GPUSupportedFeatures interface of the WebGPU API is a Set-like object that describes additional functionality supported by a GPUAdapter.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUSupportedFeatures" + } + ], + "gpusupportedlimits": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUSupportedLimits.json", + "name": "GPUSupportedLimits", + "slug": "API/GPUSupportedLimits", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUSupportedLimits", + "summary": "The GPUSupportedLimits interface of the WebGPU API describes the limits supported by a GPUAdapter.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUSupportedLimits" + } + ], + "dom-gputexture-createview": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "createView", + "slug": "API/GPUTexture/createView", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/createView", + "summary": "The createView() method of the GPUTexture interface creates a GPUTextureView representing a specific view of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: createView() method" + } + ], + "dom-gputexture-depthorarraylayers": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "depthOrArrayLayers", + "slug": "API/GPUTexture/depthOrArrayLayers", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/depthOrArrayLayers", + "summary": "The depthOrArrayLayers read-only property of the GPUTexture interface represents the depth or layer count of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: depthOrArrayLayers property" + } + ], + "dom-gputexture-destroy": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "destroy", + "slug": "API/GPUTexture/destroy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/destroy", + "summary": "The destroy() method of the GPUTexture interface destroys the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: destroy() method" + } + ], + "dom-gputexture-dimension": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "dimension", + "slug": "API/GPUTexture/dimension", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/dimension", + "summary": "The dimension read-only property of the GPUTexture interface represents the dimension of the set of texels for each GPUTexture subresource.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: dimension property" + } + ], + "dom-gputexture-format": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "format", + "slug": "API/GPUTexture/format", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/format", + "summary": "The format read-only property of the GPUTexture interface represents the format of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: format property" + } + ], + "dom-gputexture-height": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "height", + "slug": "API/GPUTexture/height", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/height", + "summary": "The height read-only property of the GPUTexture interface represents the height of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: height property" + } + ], + "dom-gputexture-miplevelcount": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "mipLevelCount", + "slug": "API/GPUTexture/mipLevelCount", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/mipLevelCount", + "summary": "The mipLevelCount read-only property of the GPUTexture interface represents the number of mip levels of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: mipLevelCount property" + } + ], + "dom-gputexture-samplecount": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "sampleCount", + "slug": "API/GPUTexture/sampleCount", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/sampleCount", + "summary": "The sampleCount read-only property of the GPUTexture interface represents the sample count of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: sampleCount property" + } + ], + "dom-gputexture-usage": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "usage", + "slug": "API/GPUTexture/usage", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/usage", + "summary": "The usage read-only property of the GPUTexture interface is the bitwise flags representing the allowed usages of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: usage property" + } + ], + "dom-gputexture-width": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "width", + "slug": "API/GPUTexture/width", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture/width", + "summary": "The width read-only property of the GPUTexture interface represents the width of the GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture: width property" + } + ], + "texture-interface": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTexture.json", + "name": "GPUTexture", + "slug": "API/GPUTexture", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTexture", + "summary": "The GPUTexture interface of the WebGPU API represents a container used to store 1D, 2D, or 3D arrays of data, such as images, to use in GPU rendering operations.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTexture" + } + ], + "gputextureview": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUTextureView.json", + "name": "GPUTextureView", + "slug": "API/GPUTextureView", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUTextureView", + "summary": "The GPUTextureView interface of the WebGPU API represents a view into a subset of the texture resources defined by a particular GPUTexture.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUTextureView" + } + ], + "dom-gpuuncapturederrorevent-gpuuncapturederrorevent": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUUncapturedErrorEvent.json", + "name": "GPUUncapturedErrorEvent", + "slug": "API/GPUUncapturedErrorEvent/GPUUncapturedErrorEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUUncapturedErrorEvent/GPUUncapturedErrorEvent", + "summary": "The GPUUncapturedErrorEvent() constructor creates a new GPUUncapturedErrorEvent object instance.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUUncapturedErrorEvent: GPUUncapturedErrorEvent() constructor" + } + ], + "dom-gpuuncapturederroreventinit-error": [ + { + "engines": [ + "blink" + ], + "filename": "api/GPUUncapturedErrorEvent.json", + "name": "error", + "slug": "API/GPUUncapturedErrorEvent/error", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUUncapturedErrorEvent/error", + "summary": "The error read-only property of the GPUUncapturedErrorEvent interface is a GPUError object instance providing access to the details of the error.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUUncapturedErrorEvent: error property" + } + ], + "gpuuncapturederrorevent": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUUncapturedErrorEvent.json", + "name": "GPUUncapturedErrorEvent", + "slug": "API/GPUUncapturedErrorEvent", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUUncapturedErrorEvent", + "summary": "The GPUUncapturedErrorEvent interface of the WebGPU API is the event object type for the GPUDevice uncapturederror event, used for telemetry and to report unexpected errors.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUUncapturedErrorEvent" + } + ], + "dom-gpuvalidationerror-gpuvalidationerror": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUValidationError.json", + "name": "GPUValidationError", + "slug": "API/GPUValidationError/GPUValidationError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUValidationError/GPUValidationError", + "summary": "The GPUValidationError() constructor creates a new GPUValidationError object instance.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUValidationError: GPUValidationError() constructor" + } + ], + "gpuvalidationerror": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/GPUValidationError.json", + "name": "GPUValidationError", + "slug": "API/GPUValidationError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/GPUValidationError", + "summary": "The GPUValidationError interface of the WebGPU API describes an application error indicating that an operation did not pass the WebGPU API's validation constraints.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "GPUValidationError" + } + ], + "navigator-gpu": [ + { + "engines": [ + "blink" + ], + "partial": [ + "gecko" + ], + "filename": "api/Navigator.json", + "name": "gpu", + "slug": "API/Navigator/gpu", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Navigator/gpu", + "summary": "The Navigator.gpu read-only property returns the GPU object for the current browsing context, which is the entry point for the WebGPU API.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": "preview", + "partial_implementation": true, + "notes": "Currently supported on Linux and Windows only." + }, + "firefox_android": { + "version_added": false + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "Navigator: gpu property" + }, + { + "engines": [ + "blink" + ], + "filename": "api/WorkerNavigator.json", + "name": "gpu", + "slug": "API/WorkerNavigator/gpu", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/gpu", + "summary": "The gpu read-only property of the WorkerNavigator interface returns the GPU object for the current worker context, which is the entry point for the WebGPU API.", + "support": { + "chrome": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "113", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "WorkerNavigator: gpu property" + } + ], + "gpuwgsllanguagefeatures": [ + { + "engines": [ + "blink" + ], + "filename": "api/WGSLLanguageFeatures.json", + "name": "WGSLLanguageFeatures", + "slug": "API/WGSLLanguageFeatures", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WGSLLanguageFeatures", + "summary": "The WGSLLanguageFeatures interface of the WebGPU API is a setlike object that reports the WGSL language extensions supported by the WebGPU implementation.", + "support": { + "chrome": { + "version_added": "115", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "115", + "notes": "Currently supported on ChromeOS, macOS, and Windows only." + } + }, + "title": "WGSLLanguageFeatures" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/webhid.json b/bikeshed/spec-data/readonly/mdn/webhid.json index 33920760c0..7bfbe76028 100644 --- a/bikeshed/spec-data/readonly/mdn/webhid.json +++ b/bikeshed/spec-data/readonly/mdn/webhid.json @@ -119,7 +119,7 @@ "version_added": "89" } }, - "title": "HID.getDevices()" + "title": "HID: getDevices() method" } ], "dom-hid-requestdevice": [ @@ -160,7 +160,7 @@ "version_added": "89" } }, - "title": "HID.requestDevice()" + "title": "HID: requestDevice() method" } ], "dom-hid": [ @@ -242,7 +242,7 @@ "version_added": "89" } }, - "title": "HIDConnectionEvent()" + "title": "HIDConnectionEvent: HIDConnectionEvent() constructor" } ], "dom-hidconnectionevent-device": [ @@ -283,7 +283,7 @@ "version_added": "89" } }, - "title": "HIDConnectionEvent.device" + "title": "HIDConnectionEvent: device property" } ], "dom-hidconnectionevent": [ @@ -365,7 +365,7 @@ "version_added": "89" } }, - "title": "HIDDevice.close()" + "title": "HIDDevice: close() method" } ], "dom-hiddevice-collections": [ @@ -406,7 +406,48 @@ "version_added": "89" } }, - "title": "HIDDevice.collections" + "title": "HIDDevice: collections property" + } + ], + "dom-hiddevice-forget": [ + { + "engines": [ + "blink" + ], + "filename": "api/HIDDevice.json", + "name": "forget", + "slug": "API/HIDDevice/forget", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HIDDevice/forget", + "summary": "The forget() method of the HIDDevice interface closes the connection to the HID device and forgets the device.", + "support": { + "chrome": { + "version_added": "100" + }, + "chrome_android": { + "version_added": false + }, + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "100" + } + }, + "title": "HIDDevice: forget() method" } ], "dom-hiddevice-oninputreport": [ @@ -488,7 +529,7 @@ "version_added": "89" } }, - "title": "HIDDevice.open()" + "title": "HIDDevice: open() method" } ], "dom-hiddevice-opened": [ @@ -529,7 +570,7 @@ "version_added": "89" } }, - "title": "HIDDevice.opened" + "title": "HIDDevice: opened property" } ], "dom-hiddevice-productid": [ @@ -570,7 +611,7 @@ "version_added": "89" } }, - "title": "HIDDevice.productId" + "title": "HIDDevice: productId property" } ], "dom-hiddevice-productname": [ @@ -611,7 +652,7 @@ "version_added": "89" } }, - "title": "HIDDevice.productName" + "title": "HIDDevice: productName property" } ], "dom-hiddevice-receivefeaturereport": [ @@ -652,7 +693,7 @@ "version_added": "89" } }, - "title": "HIDDevice.receiveFeatureReport()" + "title": "HIDDevice: receiveFeatureReport() method" } ], "dom-hiddevice-sendfeaturereport": [ @@ -693,7 +734,7 @@ "version_added": "89" } }, - "title": "HIDDevice.sendFeatureReport()" + "title": "HIDDevice: sendFeatureReport() method" } ], "dom-hiddevice-sendreport": [ @@ -734,7 +775,7 @@ "version_added": "89" } }, - "title": "HIDDevice.sendReport()" + "title": "HIDDevice: sendReport() method" } ], "dom-hiddevice-vendorid": [ @@ -775,7 +816,7 @@ "version_added": "89" } }, - "title": "HIDDevice.vendorId" + "title": "HIDDevice: vendorId property" } ], "dom-hiddevice": [ @@ -857,7 +898,7 @@ "version_added": "89" } }, - "title": "HIDInputReportEvent.data" + "title": "HIDInputReportEvent: data property" } ], "dom-hidinputreportevent-device": [ @@ -898,7 +939,7 @@ "version_added": "89" } }, - "title": "HIDInputReportEvent.device" + "title": "HIDInputReportEvent: device property" } ], "dom-hidinputreportevent-reportid": [ @@ -939,7 +980,7 @@ "version_added": "89" } }, - "title": "HIDInputReportEvent.reportId" + "title": "HIDInputReportEvent: reportId property" } ], "dom-hidinputreportevent": [ @@ -1021,7 +1062,46 @@ "version_added": "89" } }, - "title": "Navigator.hid" + "title": "Navigator: hid property" + } + ], + "permissions-policy": [ + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "hid", + "slug": "HTTP/Headers/Permissions-Policy/hid", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/hid", + "summary": "The HTTP Permissions-Policy header hid directive controls whether the current document is allowed to use the WebHID API to connect to uncommon or exotic human interface devices such as alternative keyboards or gamepads.", + "support": { + "chrome": { + "version_added": "89" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "89" + } + }, + "title": "Permissions-Policy: hid" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webidl.json b/bikeshed/spec-data/readonly/mdn/webidl.json index 1708d51f80..630cb08c12 100644 --- a/bikeshed/spec-data/readonly/mdn/webidl.json +++ b/bikeshed/spec-data/readonly/mdn/webidl.json @@ -40,7 +40,7 @@ "version_added": "79" } }, - "title": "DOMException()" + "title": "DOMException: DOMException() constructor" } ], "dom-domexception-message": [ @@ -90,7 +90,7 @@ "version_added": "79" } }, - "title": "DOMException.message" + "title": "DOMException: message property" } ], "dom-domexception-name": [ @@ -140,7 +140,7 @@ "version_added": "79" } }, - "title": "DOMException.name" + "title": "DOMException: name property" } ], "idl-DOMException": [ diff --git a/bikeshed/spec-data/readonly/mdn/webmidi.json b/bikeshed/spec-data/readonly/mdn/webmidi.json index 735fe0f570..e275162833 100644 --- a/bikeshed/spec-data/readonly/mdn/webmidi.json +++ b/bikeshed/spec-data/readonly/mdn/webmidi.json @@ -18,10 +18,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -50,7 +51,7 @@ "version_added": "79" } }, - "title": "MIDIAccess.inputs" + "title": "MIDIAccess: inputs property" } ], "dom-midiaccess-outputs": [ @@ -72,10 +73,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -104,7 +106,7 @@ "version_added": "79" } }, - "title": "MIDIAccess.outputs" + "title": "MIDIAccess: outputs property" } ], "dom-midiaccess-onstatechange": [ @@ -126,10 +128,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -180,10 +183,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -212,7 +216,7 @@ "version_added": "79" } }, - "title": "MIDIAccess.sysexEnabled" + "title": "MIDIAccess: sysexEnabled property" } ], "midiaccess-interface": [ @@ -234,10 +238,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -288,10 +293,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -320,7 +326,7 @@ "version_added": "79" } }, - "title": "MIDIConnectionEvent()" + "title": "MIDIConnectionEvent: MIDIConnectionEvent() constructor" } ], "dom-midiconnectionevent-port": [ @@ -342,10 +348,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -374,7 +381,7 @@ "version_added": "79" } }, - "title": "MIDIConnectionEvent.port" + "title": "MIDIConnectionEvent: port property" } ], "midiconnectionevent-interface": [ @@ -396,10 +403,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -450,10 +458,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -506,10 +515,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -551,7 +561,7 @@ "name": "MIDIInputMap", "slug": "API/MIDIInputMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MIDIInputMap", - "summary": "The MIDIInputMap read-only interface of the Web MIDI API provides a Map-like interface to the currently available MIDI input ports. Though it works generally like a map, because it is read-only it does not contain clear(), delete(), or set() functions.", + "summary": "The MIDIInputMap read-only interface of the Web MIDI API provides the set of MIDI input ports that are currently available.", "support": { "chrome": { "version_added": "43" @@ -560,10 +570,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -603,7 +614,7 @@ "name": "MIDIOutputMap", "slug": "API/MIDIOutputMap", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/MIDIOutputMap", - "summary": "The MIDIOutputMap read-only interface of the Web MIDI API provides a Map-like interface to the currently available MIDI output ports. Although it works like a map, because it is read-only, it does not contain clear(), delete(), or set() functions.", + "summary": "The MIDIOutputMap read-only interface of the Web MIDI API provides the set of MIDI output ports that are currently available.", "support": { "chrome": { "version_added": "43" @@ -612,10 +623,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -666,10 +678,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -700,7 +713,7 @@ "version_added": "79" } }, - "title": "MIDIMessageEvent()" + "title": "MIDIMessageEvent: MIDIMessageEvent() constructor" } ], "dom-midimessageevent-data": [ @@ -722,10 +735,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -756,7 +770,7 @@ "version_added": "79" } }, - "title": "MIDIMessageEvent.data" + "title": "MIDIMessageEvent: data property" } ], "midimessageevent-interface": [ @@ -778,10 +792,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -834,10 +849,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -867,7 +883,7 @@ "notes": "See <a href='https://crbug.com/471798'>bug 471798</a>." } }, - "title": "MIDIOutput.clear()" + "title": "MIDIOutput: clear() method" } ], "dom-midioutput-send": [ @@ -889,10 +905,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -923,7 +940,7 @@ "version_added": "79" } }, - "title": "MIDIOutput.send()" + "title": "MIDIOutput: send() method" } ], "MIDIOutput": [ @@ -945,10 +962,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1001,10 +1019,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1033,7 +1052,7 @@ "version_added": "79" } }, - "title": "MIDIPort.close()" + "title": "MIDIPort: close() method" } ], "dom-midiport-connection": [ @@ -1055,10 +1074,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1087,7 +1107,7 @@ "version_added": "79" } }, - "title": "MIDIPort.connection" + "title": "MIDIPort: connection property" } ], "dom-midiport-id": [ @@ -1109,10 +1129,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1141,7 +1162,7 @@ "version_added": "79" } }, - "title": "MIDIPort.id" + "title": "MIDIPort: id property" } ], "dom-midiport-manufacturer": [ @@ -1163,10 +1184,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1195,7 +1217,7 @@ "version_added": "79" } }, - "title": "MIDIPort.manufacturer" + "title": "MIDIPort: manufacturer property" } ], "dom-midiport-name": [ @@ -1217,10 +1239,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1249,7 +1272,7 @@ "version_added": "79" } }, - "title": "MIDIPort.name" + "title": "MIDIPort: name property" } ], "dom-midiport-open": [ @@ -1271,10 +1294,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1303,7 +1327,7 @@ "version_added": "79" } }, - "title": "MIDIPort.open()" + "title": "MIDIPort: open() method" } ], "dom-midiport-state": [ @@ -1325,10 +1349,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1357,7 +1382,7 @@ "version_added": "79" } }, - "title": "MIDIPort.state" + "title": "MIDIPort: state property" } ], "dom-midiport-onstatechange": [ @@ -1379,10 +1404,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1433,10 +1459,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1465,7 +1492,7 @@ "version_added": "79" } }, - "title": "MIDIPort.type" + "title": "MIDIPort: type property" } ], "dom-midiport-version": [ @@ -1487,10 +1514,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1519,7 +1547,7 @@ "version_added": "79" } }, - "title": "MIDIPort.version" + "title": "MIDIPort: version property" } ], "MIDIPort": [ @@ -1541,10 +1569,11 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108" }, { "version_added": "97", + "version_removed": "108", "flags": [ { "type": "preference", @@ -1595,10 +1624,17 @@ "edge": "mirror", "firefox": [ { - "version_added": "preview" + "version_added": "108", + "notes": "API access is gated by installation of a <a href='https://support.mozilla.org/en-US/kb/site-permission-addons'>site permission add-on</a> (user prompt), secure context, and <a href='https://developer.mozilla.org/docs/Web/HTTP/Headers/Feature-Policy/midi'>Permission Policy: <code>midi</code></a>." }, { "version_added": "97", + "version_removed": "108", + "notes": [ + "Version 107 and later, API use is gated by a site permission add-on that is automatically generated by Firefox.", + "Version 105 and later, the <code>dom.webmidi.gated</code> preference may be set <code>false</code> to allow WebMIDI to be used without a site permission addon.", + "Version 100 to 104 (inclusive) WebMIDI is not available (API use is gated by a site permission add-on that is no longer available)." + ], "flags": [ { "type": "preference", @@ -1627,7 +1663,7 @@ "version_added": "79" } }, - "title": "Navigator.requestMIDIAccess()" + "title": "Navigator: requestMIDIAccess() method" } ], "permissions-policy-integration": [ @@ -1643,7 +1679,7 @@ "name": "midi", "slug": "HTTP/Headers/Feature-Policy/midi", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/midi", - "summary": "The HTTP Feature-Policy header midi directive controls whether the current document is allowed to use the Web MIDI API. When this policy is enabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a DOMException.", + "summary": "The HTTP Permissions-Policy header midi directive controls whether the current document is allowed to use the Web MIDI API.", "support": { "chrome": { "version_added": "60" @@ -1677,7 +1713,67 @@ "version_added": "79" } }, - "title": "Feature-Policy: midi" + "title": "Permissions-Policy: midi" + }, + { + "engines": [ + "blink" + ], + "altname": [ + "gecko" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "midi", + "slug": "HTTP/Headers/Permissions-Policy/midi", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/midi", + "summary": "The HTTP Permissions-Policy header midi directive controls whether the current document is allowed to use the Web MIDI API.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "64", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "74", + "alternative_name": "Feature-Policy: midi", + "flags": [ + { + "type": "preference", + "name": "dom.security.featurePolicy.header.enabled", + "value_to_set": "true" + } + ] + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: midi" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webrtc-identity.json b/bikeshed/spec-data/readonly/mdn/webrtc-identity.json index fa78af21fd..35379b0de7 100644 --- a/bikeshed/spec-data/readonly/mdn/webrtc-identity.json +++ b/bikeshed/spec-data/readonly/mdn/webrtc-identity.json @@ -79,7 +79,7 @@ "version_added": false } }, - "title": "RTCPeerConnection.getIdentityAssertion()" + "title": "RTCPeerConnection: getIdentityAssertion() method" } ], "dom-rtcpeerconnection-peeridentity": [ @@ -120,7 +120,7 @@ "version_added": false } }, - "title": "RTCPeerConnection.peerIdentity" + "title": "RTCPeerConnection: peerIdentity property" } ], "dom-rtcpeerconnection-setidentityprovider": [ @@ -161,7 +161,7 @@ "version_added": false } }, - "title": "RTCPeerConnection.setIdentityProvider()" + "title": "RTCPeerConnection: setIdentityProvider() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webrtc-priority.json b/bikeshed/spec-data/readonly/mdn/webrtc-priority.json new file mode 100644 index 0000000000..2b765adc87 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/webrtc-priority.json @@ -0,0 +1,46 @@ +{ + "dom-rtcrtpencodingparameters-priority": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCRtpEncodingParameters.json", + "name": "priority", + "slug": "API/RTCRtpEncodingParameters#priority", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpEncodingParameters#priority", + "summary": "An instance of the WebRTC API's RTCRtpEncodingParameters dictionary describes a single configuration of a codec for an RTCRtpSender.", + "support": { + "chrome": { + "version_added": "67" + }, + "chrome_android": "mirror", + "edge": { + "version_added": false + }, + "firefox": { + "version_added": "46", + "notes": "In version 110 and later the default priority is <code>low</code>." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpEncodingParameters" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/webrtc-stats.json b/bikeshed/spec-data/readonly/mdn/webrtc-stats.json index 4a97fec31a..2ac7184694 100644 --- a/bikeshed/spec-data/readonly/mdn/webrtc-stats.json +++ b/bikeshed/spec-data/readonly/mdn/webrtc-stats.json @@ -1,879 +1,22 @@ { - "dom-rtcicecandidatepairstats-availableincomingbitrate": [ - { - "engines": [ - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "availableIncomingBitrate", - "slug": "API/RTCIceCandidatePairStats/availableIncomingBitrate", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/availableIncomingBitrate", - "summary": "The RTCIceCandidatePairStats property availableIncomingBitrate returns a value indicative of the available inbound capacity of the network connection represented by the candidate pair. The higher the value, the more bandwidth you can assume is available for incoming data.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidatePairStats.availableIncomingBitrate" - } - ], - "dom-rtcicecandidatepairstats-availableoutgoingbitrate": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "availableOutgoingBitrate", - "slug": "API/RTCIceCandidatePairStats/availableOutgoingBitrate", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/availableOutgoingBitrate", - "summary": "The RTCIceCandidatePairStats property availableOutgoingBitrate returns a value indicative of the available outbound capacity of the network connection represented by the candidate pair. The higher the value, the more bandwidth you can assume is available for outgoing data.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.availableOutgoingBitrate" - } - ], - "dom-rtcicecandidatepairstats-bytesreceived": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "bytesReceived", - "slug": "API/RTCIceCandidatePairStats/bytesReceived", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/bytesReceived", - "summary": "The RTCIceCandidatePairStats property bytesReceived indicates the total number of payload bytes—that is, bytes which aren't overhead such as headers or padding—that have been received to date on the connection described by the candidate pair.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "56" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.bytesReceived" - } - ], - "dom-rtcicecandidatepairstats-bytessent": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "bytesSent", - "slug": "API/RTCIceCandidatePairStats/bytesSent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/bytesSent", - "summary": "The RTCIceCandidatePairStats property bytesSent indicates the total number of payload bytes—that is, bytes which aren't overhead such as headers or padding—that have been sent so far on the connection described by the candidate pair.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "56" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.bytesSent" - } - ], - "dom-rtcicecandidatepairstats-consentrequestssent": [ - { - "engines": [], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "consentRequestsSent", - "slug": "API/RTCIceCandidatePairStats/consentRequestsSent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/consentRequestsSent", - "summary": "The RTCIceCandidatePairStats property consentRequestsSent specifies the number of consent requests that have been sent by this peer to the remote peer on the connection described by the pair of candidates.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidatePairStats.consentRequestsSent" - } - ], - "dom-rtcicecandidatepairstats-currentroundtriptime": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "currentRoundTripTime", - "slug": "API/RTCIceCandidatePairStats/currentRoundTripTime", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/currentRoundTripTime", - "summary": "The RTCIceCandidatePairStats property currentRoundTripTime is a floating-point value indicating the number of seconds it takes for data to be sent by this peer to the remote peer and back over the connection described by this pair of ICE candidates.", - "support": { - "chrome": [ - { - "version_added": "71" - }, - { - "version_added": "56", - "alternative_name": "currentRtt" - } - ], - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": [ - { - "version_added": "79" - }, - { - "version_added": "79", - "alternative_name": "currentRtt" - } - ] - }, - "title": "RTCIceCandidatePairStats.currentRoundTripTime" - } - ], - "dom-rtcicecandidatepairstats-lastpacketreceivedtimestamp": [ - { - "engines": [ - "gecko" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "lastPacketReceivedTimestamp", - "slug": "API/RTCIceCandidatePairStats/lastPacketReceivedTimestamp", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/lastPacketReceivedTimestamp", - "summary": "The RTCIceCandidatePairStats property lastPacketReceivedTimestamp indicates the time at which the connection described by the candidate pair last received a packet. STUN packets are not included.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "56" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidatePairStats.lastPacketReceivedTimestamp" - } - ], - "dom-rtcicecandidatepairstats-lastpacketsenttimestamp": [ - { - "engines": [ - "gecko" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "lastPacketSentTimestamp", - "slug": "API/RTCIceCandidatePairStats/lastPacketSentTimestamp", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/lastPacketSentTimestamp", - "summary": "The RTCIceCandidatePairStats property lastPacketSentTimestamp indicates the time at which the connection described by the candidate pair last sent a packet, not including STUN packets.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "56" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidateStats.lastPacketSentTimestamp" - } - ], - "dom-rtcicecandidatepairstats-localcandidateid": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "localCandidateId", - "slug": "API/RTCIceCandidatePairStats/localCandidateId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/localCandidateId", - "summary": "The RTCIceCandidatePairStats property localCandidateId is a string that uniquely identifies the local ICE candidate which was analyzed to generate the RTCIceCandidateStats used to compute the statistics for this pair of candidates.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "29" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidateStats.localCandidateId" - } - ], - "dom-rtcicecandidatepairstats-nominated": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "nominated", - "slug": "API/RTCIceCandidatePairStats/nominated", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/nominated", - "summary": "The RTCIceCandidatePairStats property nominated specifies whether or not the candidate pair described by the underlying RTCIceCandidatePair has been nominated to be used as the configuration for the WebRTC connection.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "56" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.nominated" - } - ], - "dom-rtcicecandidatepairstats-packetsreceived": [ - { - "engines": [], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "packetsReceived", - "slug": "API/RTCIceCandidatePairStats/packetsReceived", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/packetsReceived", - "summary": "The RTCIceCandidatePairStats dictionary's packetsReceived property indicates the total number of packets of any kind that have been received on the connection described by the pair of candidates.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidatePairStats.packetsReceived" - } - ], - "dom-rtcicecandidatepairstats-packetssent": [ - { - "engines": [], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "packetsSent", - "slug": "API/RTCIceCandidatePairStats/packetsSent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/packetsSent", - "summary": "The RTCIceCandidatePairStats dictionary's packetsSent property indicates the total number of packets which have been sent on the connection described by the pair of candidates.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidatePairStats.packetsSent" - } - ], - "dom-rtcicecandidatepairstats-remotecandidateid": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "remoteCandidateId", - "slug": "API/RTCIceCandidatePairStats/remoteCandidateId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/remoteCandidateId", - "summary": "The RTCIceCandidatePairStats property remoteCandidateId is a string that uniquely identifies the remote ICE candidate which was analyzed to generate the RTCIceCandidateStats used to compute the statistics for this pair of candidates.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "29" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.remoteCandidateId" - } - ], - "dom-rtcicecandidatepairstats-requestsreceived": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "requestsReceived", - "slug": "API/RTCIceCandidatePairStats/requestsReceived", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/requestsReceived", - "summary": "The RTCIceCandidatePairStats dictionary's requestsReceived property indicates the total number of STUN connectivity check requests that have been received so far on the connection described by this pairing of candidates.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.requestsReceived" - } - ], - "dom-rtcicecandidatepairstats-requestssent": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "requestsSent", - "slug": "API/RTCIceCandidatePairStats/requestsSent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/requestsSent", - "summary": "The RTCIceCandidatePairStats dictionary's requestsSent property indicates the total number of STUN connectivity check requests that have been sent so far on the connection described by this pair of candidates.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.requestsSent" - } - ], - "dom-rtcicecandidatepairstats-responsesreceived": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "responsesReceived", - "slug": "API/RTCIceCandidatePairStats/responsesReceived", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/responsesReceived", - "summary": "The responsesReceived property in the RTCIceCandidatePairStats dictionary indicates the total number of STUN connectivity check responses that have been received on the connection described by this pair of candidates.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.responsesReceived" - } - ], - "dom-rtcicecandidatepairstats-responsessent": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "responsesSent", - "slug": "API/RTCIceCandidatePairStats/responsesSent", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/responsesSent", - "summary": "The RTCIceCandidatePairStats dictionary's responsesSent property indicates the total number of STUN connectivity check responses that have been sent so far on the connection described by this pair of candidates.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.responsesSent" - } - ], - "dom-rtcicecandidatepairstats-state": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "state", - "slug": "API/RTCIceCandidatePairStats/state", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/state", - "summary": "The state property in a string that indicates the state of the check list of which the candidate pair is a member.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": "29" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.state" - } - ], - "dom-rtcicecandidatepairstats-totalroundtriptime": [ - { - "engines": [ - "blink", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "totalRoundTripTime", - "slug": "API/RTCIceCandidatePairStats/totalRoundTripTime", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/totalRoundTripTime", - "summary": "The RTCIceCandidatePairStats dictionary's totalRoundTripTime property is the total time that has elapsed between sending STUN requests and receiving the responses, for all such requests that have been made so far on the pair of candidates described by this RTCIceCandidatePairStats object. This value includes both connectivity check and consent check requests.", - "support": { - "chrome": [ - { - "version_added": "71" - }, - { - "version_added": "56", - "alternative_name": "totalRtt" - } - ], - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - }, - "edge_blink": [ - { - "version_added": "79" - }, - { - "version_added": "79", - "alternative_name": "totalRtt" - } - ] - }, - "title": "RTCIceCandidatePairStats.totalRoundTripTime" - } - ], - "dom-rtcicecandidatepairstats-transportid": [ - { - "engines": [ - "blink", - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "transportId", - "slug": "API/RTCIceCandidatePairStats/transportId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/transportId", - "summary": "The transportId property uniquely identifies the RTCIceTransport that was inspected to obtain the transport-related statistics contained in the RTCIceCandidatePairStats object.", - "support": { - "chrome": { - "version_added": "56" - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": [ - { - "version_added": "56" - }, - { - "version_added": "29", - "alternative_name": "componentId" - } - ], - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": "79" - } - }, - "title": "RTCIceCandidatePairStats.transportId" - } - ], - "dom-rtcicecandidatepairstats": [ + "dom-rtcstatstype-candidate-pair": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCIceCandidatePairStats.json", - "name": "RTCIceCandidatePairStats", - "slug": "API/RTCIceCandidatePairStats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats", - "summary": "The WebRTC RTCIceCandidatePairStats dictionary reports statistics which provide insight into the quality and performance of an RTCPeerConnection while connected and configured as described by the specified pair of ICE candidates.", + "filename": "api/RTCStatsReport.json", + "name": "type_candidate-pair", + "slug": "API/RTCStatsReport#canditate_pair", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#canditate_pair", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": "56" + "version_added": "58" }, "chrome_android": "mirror", - "edge": { - "version_added": false - }, + "edge": "mirror", "firefox": { "version_added": "29" }, @@ -894,108 +37,23 @@ "version_added": "79" } }, - "title": "RTCIceCandidatePairStats" - } - ], - "dom-rtcicecandidatestats-address": [ - { - "engines": [ - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidateStats.json", - "name": "address", - "slug": "API/RTCIceCandidateStats/address", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address", - "summary": "The address property of the RTCIceCandidateStats dictionary indicates the address of the ICE candidate. While it's preferred that the address be specified as an IPv4 or IPv6 numeric address, a fully-qualified domain name can be used as well.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": [ - { - "version_added": "65" - }, - { - "version_added": "27", - "alternative_name": "ipAddress" - } - ], - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "12.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidateStats.address" - } - ], - "dom-rtcicecandidatestats-candidatetype": [ - { - "engines": [ - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidateStats.json", - "name": "candidateType", - "slug": "API/RTCIceCandidateStats/candidateType", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType", - "summary": "The RTCIceCandidateStats interface's candidateType property is a string which indicates the type of ICE candidate the object represents.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "27" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "12.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidateStats.candidateType" + "title": "RTCStatsReport" } ], - "dom-rtcicecandidatestats-deleted": [ + "dom-rtcstatstype-certificate": [ { "engines": [ + "blink", "webkit" ], - "filename": "api/RTCIceCandidateStats.json", - "name": "deleted", - "slug": "API/RTCIceCandidateStats/deleted", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted", - "summary": "The RTCIceCandidateStats dictionary's deleted property indicates whether or not the candidate has been deleted or released.", + "filename": "api/RTCStatsReport.json", + "name": "type_certificate", + "slug": "API/RTCStatsReport#certificate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#certificate", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", @@ -1010,40 +68,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCIceCandidateStats.deleted" + "title": "RTCStatsReport" } ], - "dom-rtcicecandidatestats-port": [ + "dom-rtcstatstype-codec": [ { "engines": [ + "blink", + "gecko", "webkit" ], - "altname": [ - "gecko" - ], - "filename": "api/RTCIceCandidateStats.json", - "name": "port", - "slug": "API/RTCIceCandidateStats/port", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port", - "summary": "The RTCIceCandidateStats dictionary's port property specifies the network port used by the candidate.", + "filename": "api/RTCStatsReport.json", + "name": "type_codec", + "slug": "API/RTCStatsReport#codec", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#codec", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "27", - "alternative_name": "portNumber" + "version_added": "98" }, "firefox_android": "mirror", "ie": { @@ -1053,38 +109,42 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCIceCandidateStats.port" + "title": "RTCStatsReport" } ], - "dom-rtcicecandidatestats-priority": [ + "dom-rtcstatstype-data-channel": [ { "engines": [ + "blink", + "gecko", "webkit" ], - "filename": "api/RTCIceCandidateStats.json", - "name": "priority", - "slug": "API/RTCIceCandidateStats/priority", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority", - "summary": "The RTCIceCandidateStats dictionary's priority property is a positive integer value indicating the priority (or desirability) of the described candidate.", + "filename": "api/RTCStatsReport.json", + "name": "type_data-channel", + "slug": "API/RTCStatsReport#data_channel", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#data_channel", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { + "version_added": "79" + }, + "firefox_android": { "version_added": false }, - "firefox_android": "mirror", "ie": { "version_added": false }, @@ -1092,89 +152,39 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCIceCandidateStats.priority" + "title": "RTCStatsReport" } ], - "dom-rtcicecandidatestats-protocol": [ + "dom-rtcstatstype-inbound-rtp": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCIceCandidateStats.json", - "name": "protocol", - "slug": "API/RTCIceCandidateStats/protocol", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol", - "summary": "The RTCIceCandidateStats dictionary's protocol property specifies the protocol the specified candidate would use for communication with the remote peer.", + "filename": "api/RTCStatsReport.json", + "name": "type_inbound-rtp", + "slug": "API/RTCStatsReport#inbound_rtp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#inbound_rtp", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "79" }, "chrome_android": "mirror", "edge": "mirror", - "firefox": [ - { - "version_added": "64" - }, - { - "version_added": "31", - "alternative_name": "mozLocalTransport" - } - ], - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "12.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidateStats.protocol" - } - ], - "dom-rtcicecandidatestats-relayprotocol": [ - { - "engines": [ - "gecko" - ], - "filename": "api/RTCIceCandidateStats.json", - "name": "relayProtocol", - "slug": "API/RTCIceCandidateStats/relayProtocol", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol", - "summary": "The RTCIceCandidateStats dictionary's relayProtocol property specifies the protocol being used by a local ICE candidate to communicate with the TURN server.", - "support": { - "chrome": { - "version_added": false + "firefox": { + "version_added": "27" }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": [ - { - "version_added": "64" - }, - { - "version_added": "31", - "alternative_name": "mozLocalTransport" - } - ], "firefox_android": "mirror", "ie": { "version_added": false @@ -1183,40 +193,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "79" } }, - "title": "RTCIceCandidateStats.relayProtocol" + "title": "RTCStatsReport" } ], - "dom-rtcicecandidatestats-transportid": [ + "dom-rtcstatstype-local-candidate": [ { "engines": [ + "blink", + "gecko", "webkit" ], - "altname": [ - "gecko" - ], - "filename": "api/RTCIceCandidateStats.json", - "name": "transportId", - "slug": "API/RTCIceCandidateStats/transportId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId", - "summary": "The RTCIceCandidateStats dictionary's transportId property is a string that uniquely identifies the transport that produced the RTCTransportStats from which information about this candidate was taken.", + "filename": "api/RTCStatsReport.json", + "name": "type_local-candidate", + "slug": "API/RTCStatsReport#local_candidate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#local_candidate", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "31", - "alternative_name": "transport" + "version_added": "27" }, "firefox_android": "mirror", "ie": { @@ -1232,25 +240,25 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCIceCandidateStats.transportId" + "title": "RTCStatsReport" } ], - "dom-rtcicecandidatestats-url": [ + "dom-rtcstatstype-media-playout": [ { "engines": [ - "webkit" + "blink" ], - "filename": "api/RTCIceCandidateStats.json", - "name": "url", - "slug": "API/RTCIceCandidateStats/url", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url", - "summary": "The RTCIceCandidateStats dictionary's url property specifies the URL of the ICE server from which the described candidate was obtained. This property is only available for local candidates.", + "filename": "api/RTCStatsReport.json", + "name": "type_media-playout", + "slug": "API/RTCStatsReport#media_playout", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#media_playout", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "111" }, "chrome_android": "mirror", "edge": "mirror", @@ -1265,76 +273,36 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceCandidateStats.url" - } - ], - "icecandidate-dict*": [ - { - "engines": [ - "gecko", - "webkit" - ], - "filename": "api/RTCIceCandidateStats.json", - "name": "RTCIceCandidateStats", - "slug": "API/RTCIceCandidateStats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats", - "summary": "The WebRTC API's RTCIceCandidateStats dictionary provides statistics related to an RTCIceCandidate.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": "27" - }, - "firefox_android": "mirror", - "ie": { "version_added": false }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "12.1" - }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "111" } }, - "title": "RTCIceCandidateStats" + "title": "RTCStatsReport" } ], - "dom-rtcremoteoutboundrtpstreamstats-localid": [ + "dom-rtcaudiosourcestats-audiolevel": [ { "engines": [ - "gecko" + "blink" ], - "filename": "api/RTCRemoteOutboundRtpStreamStats.json", - "name": "localId", - "slug": "API/RTCRemoteOutboundRtpStreamStats/localId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRemoteOutboundRtpStreamStats/localId", - "summary": "The RTCRemoteOutboundRtpStreamStats dictionary's localId property is a string which can be used to identify the RTCInboundRtpStreamStats object whose remoteId matches this value.", + "filename": "api/RTCStatsReport.json", + "name": "audioLevel", + "slug": "API/RTCAudioSourceStats/audioLevel", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCAudioSourceStats/audioLevel", + "summary": "The RTCAudioSourceStats dictionary's audioLevel property represents the audio level of the media source.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "68" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -1350,30 +318,30 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRemoteOutboundRtpStreamStats.localId" + "title": "RTCAudioSourceStats: audioLevel property" } ], - "dom-rtcremoteoutboundrtpstreamstats-remotetimestamp": [ + "dom-rtcaudiosourcestats-totalaudioenergy": [ { "engines": [ - "gecko" + "blink" ], - "filename": "api/RTCRemoteOutboundRtpStreamStats.json", - "name": "remoteTimestamp", - "slug": "API/RTCRemoteOutboundRtpStreamStats/remoteTimestamp", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRemoteOutboundRtpStreamStats/remoteTimestamp", - "summary": "The RTCRemoteOutboundRtpStreamStats property remoteTimestamp indicates the timestamp on the remote peer at which these statistics were sent. This differs from timestamp, which indicates the time at which the statistics were generated or received locally.", + "filename": "api/RTCStatsReport.json", + "name": "totalAudioEnergy", + "slug": "API/RTCAudioSourceStats/totalAudioEnergy", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCAudioSourceStats/totalAudioEnergy", + "summary": "The RTCAudioSourceStats dictionary's totalAudioEnergy property represents the total audio energy of the media source over the lifetime of this stats object.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "79" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -1389,30 +357,30 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRemoteOutboundRtpStreamStats.remoteTimestamp" + "title": "RTCAudioSourceStats: totalAudioEnergy property" } ], - "remoteoutboundrtpstats-dict*": [ + "dom-rtcaudiosourcestats-totalsamplesduration": [ { "engines": [ - "gecko" + "blink" ], - "filename": "api/RTCRemoteOutboundRtpStreamStats.json", - "name": "RTCRemoteOutboundRtpStreamStats", - "slug": "API/RTCRemoteOutboundRtpStreamStats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRemoteOutboundRtpStreamStats", - "summary": "The WebRTC statistics model's RTCRemoteOutboundRtpStreamStats dictionary extends the underlying RTCSentRtpStreamStats dictionary with properties measuring metrics specific to outgoing RTP streams.", + "filename": "api/RTCStatsReport.json", + "name": "totalSamplesDuration", + "slug": "API/RTCAudioSourceStats/totalSamplesDuration", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCAudioSourceStats/totalSamplesDuration", + "summary": "The RTCAudioSourceStats dictionary's totalSamplesDuration property represents the combined duration of all samples produced by the media source over the lifetime of this stats object, in seconds. It does not include samples dropped before reaching this media source.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "68" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -1428,31 +396,32 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRemoteOutboundRtpStreamStats" + "title": "RTCAudioSourceStats: totalSamplesDuration property" } ], - "dom-rtcrtpstreamstats-codecid": [ + "dom-rtcstatstype-media-source": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "codecId", - "slug": "API/RTCRtpStreamStats/codecId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/codecId", - "summary": "The RTCRtpStreamStats dictionary's codecId property is a string which uniquely identifies the object that was inspected to produce the data in the RTCCodecStats for the RTP stream.", + "filename": "api/RTCStatsReport.json", + "name": "type_media-source", + "slug": "API/RTCStatsReport#media_source", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#media_source", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "27" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1462,37 +431,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "14.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.codecId" + "title": "RTCStatsReport" } ], - "dom-rtcinboundrtpstreamstats-fircount": [ + "dom-rtcstatstype-outbound-rtp": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "firCount", - "slug": "API/RTCRtpStreamStats/firCount", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/firCount", - "summary": "The firCount property of the RTCRtpStreamStats dictionary indicates the number of Full Intra Request (FIR) packets have been sent by the receiver to the sender.", + "filename": "api/RTCStatsReport.json", + "name": "type_outbound-rtp", + "slug": "API/RTCStatsReport#outbound_rtp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#outbound_rtp", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "27" }, "firefox_android": "mirror", "ie": { @@ -1508,31 +478,32 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.firCount" + "title": "RTCStatsReport" } ], - "dom-rtcoutboundrtpstreamstats-fircount": [ + "dom-rtcpeerconnectionstats-datachannelsclosed": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "firCount", - "slug": "API/RTCRtpStreamStats/firCount", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/firCount", - "summary": "The firCount property of the RTCRtpStreamStats dictionary indicates the number of Full Intra Request (FIR) packets have been sent by the receiver to the sender.", + "filename": "api/RTCStatsReport.json", + "name": "dataChannelsClosed", + "slug": "API/RTCPeerConnectionStats/dataChannelsClosed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnectionStats/dataChannelsClosed", + "summary": "The dataChannelsClosed property of the RTCPeerConnectionStats dictionary indicates the number of unique RTCDataChannel objects that have left the open state during their lifetime.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1542,37 +513,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.firCount" + "title": "RTCPeerConnectionStats: dataChannelsClosed property" } ], - "dom-rtcrtpstreamstats-kind": [ + "dom-rtcpeerconnectionstats-datachannelsopened": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "kind", - "slug": "API/RTCRtpStreamStats/kind", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/kind", - "summary": "The kind property of the RTCRtpStreamStats dictionary is a string indicating whether the described RTP stream contains audio or video media.", + "filename": "api/RTCStatsReport.json", + "name": "dataChannelsOpened", + "slug": "API/RTCPeerConnectionStats/dataChannelsOpened", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnectionStats/dataChannelsOpened", + "summary": "The dataChannelsOpened property of the RTCPeerConnectionStats dictionary indicates the number of unique RTCDataChannel objects that have entered the open state during their lifetime.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "63" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1582,37 +554,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.kind" + "title": "RTCPeerConnectionStats: dataChannelsOpened property" } ], - "dom-rtcinboundrtpstreamstats-nackcount": [ + "dom-rtcstats-id": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "nackCount", - "slug": "API/RTCRtpStreamStats/nackCount", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/nackCount", - "summary": "The nackCount property of the RTCRtpStreamStats dictionary is a numeric value indicating the number of times the receiver sent a NACK packet to the sender.", + "filename": "api/RTCStatsReport.json", + "name": "id", + "slug": "API/RTCPeerConnectionStats/id", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnectionStats/id", + "summary": "The id property of the RTCPeerConnectionStats dictionary is a string which uniquely identifies the object for which this object provides statistics.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1622,37 +595,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.nackCount" + "title": "RTCPeerConnectionStats: id property" } ], - "dom-rtcoutboundrtpstreamstats-nackcount": [ + "dom-rtcstats-timestamp": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "nackCount", - "slug": "API/RTCRtpStreamStats/nackCount", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/nackCount", - "summary": "The nackCount property of the RTCRtpStreamStats dictionary is a numeric value indicating the number of times the receiver sent a NACK packet to the sender.", + "filename": "api/RTCStatsReport.json", + "name": "timestamp", + "slug": "API/RTCPeerConnectionStats/timestamp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnectionStats/timestamp", + "summary": "The timestamp property of the RTCPeerConnectionStats dictionary is a DOMHighResTimeStamp object specifying the time at which the data in the object was sampled.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1662,37 +636,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.nackCount" + "title": "RTCPeerConnectionStats: timestamp property" } ], - "dom-rtcinboundrtpstreamstats-plicount": [ + "dom-rtcstats-type": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "pliCount", - "slug": "API/RTCRtpStreamStats/pliCount", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/pliCount", - "summary": "The pliCount property of the RTCRtpStreamStats dictionary states the number of times the stream's receiving end sent a Picture Loss Indication (PLI) packet to the sender.", + "filename": "api/RTCStatsReport.json", + "name": "type", + "slug": "API/RTCPeerConnectionStats/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnectionStats/type", + "summary": "The type property of the RTCPeerConnectionStats dictionary is a string with the value \"peer-connection\".", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1702,37 +677,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.pliCount" + "title": "RTCPeerConnectionStats: type property" } ], - "dom-rtcoutboundrtpstreamstats-plicount": [ + "dom-rtcstatstype-peer-connection": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "pliCount", - "slug": "API/RTCRtpStreamStats/pliCount", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/pliCount", - "summary": "The pliCount property of the RTCRtpStreamStats dictionary states the number of times the stream's receiving end sent a Picture Loss Indication (PLI) packet to the sender.", + "filename": "api/RTCStatsReport.json", + "name": "type_peer-connection", + "slug": "API/RTCPeerConnectionStats", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnectionStats", + "summary": "The RTCPeerConnectionStats dictionary of the WebRTC API provides information about the high level peer connection (RTCPeerConnection).", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -1742,37 +718,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.pliCount" + "title": "RTCPeerConnectionStats" } ], - "dom-rtcinboundrtpstreamstats-qpsum": [ + "dom-rtcstatstype-remote-candidate": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "qpSum", - "slug": "API/RTCRtpStreamStats/qpSum", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/qpSum", - "summary": "The qpSum property of the RTCRtpStreamStats dictionary is a value generated by adding the Quantization Parameter (QP) values for every frame sent or received to date on the video track corresponding to this RTCRtpStreamStats object.", + "filename": "api/RTCStatsReport.json", + "name": "type_remote-candidate", + "slug": "API/RTCStatsReport#remote_candidate", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#remote_candidate", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "66" + "version_added": "27" }, "firefox_android": "mirror", "ie": { @@ -1782,37 +759,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.qpSum" + "title": "RTCStatsReport" } ], - "dom-rtcoutboundrtpstreamstats-qpsum": [ + "dom-rtcstatstype-remote-inbound-rtp": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "qpSum", - "slug": "API/RTCRtpStreamStats/qpSum", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/qpSum", - "summary": "The qpSum property of the RTCRtpStreamStats dictionary is a value generated by adding the Quantization Parameter (QP) values for every frame sent or received to date on the video track corresponding to this RTCRtpStreamStats object.", + "filename": "api/RTCStatsReport.json", + "name": "type_remote-inbound-rtp", + "slug": "API/RTCStatsReport#remote_inbound_rtp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#remote_inbound_rtp", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "66" + "version_added": "27" }, "firefox_android": "mirror", "ie": { @@ -1828,26 +806,27 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats.qpSum" + "title": "RTCStatsReport" } ], - "dom-rtcrtpstreamstats-ssrc": [ + "dom-rtcstatstype-remote-outbound-rtp": [ { "engines": [ + "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "ssrc", - "slug": "API/RTCRtpStreamStats/ssrc", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/ssrc", - "summary": "The RTCRtpStreamStats dictionary's ssrc property provides the Synchronization Source (SSRC), an integer which uniquely identifies the source of the RTP packets whose statistics are covered by the RTCStatsReport that includes this RTCRtpStreamStats dictionary.", + "filename": "api/RTCStatsReport.json", + "name": "type_remote-outbound-rtp", + "slug": "API/RTCStatsReport#remote_outbound_rtp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#remote_outbound_rtp", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "91" }, "chrome_android": "mirror", "edge": "mirror", @@ -1868,78 +847,32 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "91" } }, - "title": "RTCRtpStreamStats.ssrc" + "title": "RTCStatsReport" } ], - "dom-rtcrtpstreamstats-transportid": [ + "dom-rtcstatstype-transport": [ { "engines": [ - "gecko", + "blink", "webkit" ], - "filename": "api/RTCRtpStreamStats.json", - "name": "transportId", - "slug": "API/RTCRtpStreamStats/transportId", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats/transportId", - "summary": "The RTCRtpStreamStats dictionary's transportId property is a string which uniquely identifies the object from which the statistics contained in the RTCTransportStats properties in the RTCStatsReport.", + "filename": "api/RTCStatsReport.json", + "name": "type_transport", + "slug": "API/RTCStatsReport#transport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport#transport", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { - "version_added": false + "version_added": "80" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "27" - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": "11" - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCRtpStreamStats.transportId" - } - ], - "streamstats-dict*": [ - { - "engines": [ - "gecko", - "webkit" - ], - "filename": "api/RTCRtpStreamStats.json", - "name": "RTCRtpStreamStats", - "slug": "API/RTCRtpStreamStats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpStreamStats", - "summary": "The RTCRtpStreamStats dictionary is returned by the RTCPeerConnection.getStats(), RTCRtpSender.getStats(), and RTCRtpReceiver.getStats() methods to provide detailed statistics about WebRTC connectivity.", - "support": { - "chrome": { "version_added": false }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": [ - { - "version_added": "63" - }, - { - "alternative_name": "RTCRTPStreamStats", - "version_added": "27" - } - ], "firefox_android": "mirror", "ie": { "version_added": false @@ -1948,16 +881,16 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "80" } }, - "title": "RTCRtpStreamStats" + "title": "RTCStatsReport" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webrtc.json b/bikeshed/spec-data/readonly/mdn/webrtc.json index 60cc15d745..b92b9ec2c7 100644 --- a/bikeshed/spec-data/readonly/mdn/webrtc.json +++ b/bikeshed/spec-data/readonly/mdn/webrtc.json @@ -1,4 +1,85 @@ { + "dom-rtccertificate-expires": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCCertificate.json", + "name": "expires", + "slug": "API/RTCCertificate/expires", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCCertificate/expires", + "summary": "The read-only expires property of the RTCCertificate interface returns the expiration date of the certificate.", + "support": { + "chrome": { + "version_added": "49" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "42" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCCertificate: expires property" + } + ], + "dom-rtccertificate-getfingerprints": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/RTCCertificate.json", + "name": "getFingerprints", + "slug": "API/RTCCertificate/getFingerprints", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCCertificate/getFingerprints", + "summary": "The getFingerprints() method of the RTCCertificate interface is used to get an array of certificate fingerprints.", + "support": { + "chrome": { + "version_added": "61" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "12.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCCertificate: getFingerprints() method" + } + ], "dom-rtccertificate": [ { "engines": [ @@ -10,7 +91,7 @@ "name": "RTCCertificate", "slug": "API/RTCCertificate", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCCertificate", - "summary": "The interface of the WebRTC API provides an object represents a certificate that an RTCPeerConnection uses to authenticate.", + "summary": "The RTCCertificate interface of the WebRTC API provides an object representing a certificate that an RTCPeerConnection uses to authenticate.", "support": { "chrome": { "version_added": "49" @@ -78,7 +159,7 @@ "version_added": "79" } }, - "title": "RTCDTMFSender.insertDTMF()" + "title": "RTCDTMFSender: insertDTMF() method" } ], "dom-RTCDTMFSender-tonebuffer": [ @@ -119,7 +200,7 @@ "version_added": "79" } }, - "title": "RTCDTMFSender.toneBuffer" + "title": "RTCDTMFSender: toneBuffer property" } ], "event-RTCDTMFSender-tonechange": [ @@ -215,7 +296,7 @@ "name": "RTCDTMFToneChangeEvent", "slug": "API/RTCDTMFToneChangeEvent/RTCDTMFToneChangeEvent", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCDTMFToneChangeEvent/RTCDTMFToneChangeEvent", - "summary": "A string with the name of the event. It is case-sensitive and browsers always set it to tonechange.", + "summary": "The RTCDTMFToneChangeEvent() constructor creates a new RTCDTMFToneChangeEvent object.", "support": { "chrome": { "version_added": "27" @@ -244,7 +325,7 @@ "version_added": "79" } }, - "title": "RTCDTMFToneChangeEvent()" + "title": "RTCDTMFToneChangeEvent: RTCDTMFToneChangeEvent() constructor" } ], "dom-rtcdtmftonechangeevent-tone": [ @@ -287,7 +368,7 @@ "version_added": "79" } }, - "title": "RTCDTMFToneChangeEvent.tone" + "title": "RTCDTMFToneChangeEvent: tone property" } ], "dom-rtcdtmftonechangeevent": [ @@ -373,7 +454,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.binaryType" + "title": "RTCDataChannel: binaryType property" } ], "dom-datachannel-bufferedamount": [ @@ -416,7 +497,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.bufferedAmount" + "title": "RTCDataChannel: bufferedAmount property" } ], "event-datachannel-bufferedamountlow": [ @@ -543,7 +624,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.bufferedAmountLowThreshold" + "title": "RTCDataChannel: bufferedAmountLowThreshold property" } ], "dom-rtcdatachannel-close": [ @@ -586,7 +667,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.close()" + "title": "RTCDataChannel: close() method" } ], "event-datachannel-close": [ @@ -881,7 +962,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.id" + "title": "RTCDataChannel: id property" } ], "dom-datachannel-label": [ @@ -924,7 +1005,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.label" + "title": "RTCDataChannel: label property" } ], "dom-datachannel-maxpacketlifetime": [ @@ -965,7 +1046,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.maxPacketLifeTime" + "title": "RTCDataChannel: maxPacketLifeTime property" } ], "dom-datachannel-maxretransmits": [ @@ -1006,7 +1087,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.maxRetransmits" + "title": "RTCDataChannel: maxRetransmits property" } ], "event-datachannel-message": [ @@ -1133,7 +1214,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.negotiated" + "title": "RTCDataChannel: negotiated property" } ], "event-datachannel-open": [ @@ -1262,7 +1343,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.ordered" + "title": "RTCDataChannel: ordered property" } ], "dom-datachannel-protocol": [ @@ -1305,7 +1386,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.protocol" + "title": "RTCDataChannel: protocol property" } ], "dom-datachannel-readystate": [ @@ -1348,7 +1429,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.readyState" + "title": "RTCDataChannel: readyState property" } ], "dom-rtcdatachannel-send": [ @@ -1391,7 +1472,7 @@ "version_added": "79" } }, - "title": "RTCDataChannel.send()" + "title": "RTCDataChannel: send() method" } ], "rtcdatachannel": [ @@ -1479,7 +1560,7 @@ "version_added": "79" } }, - "title": "RTCDataChannelEvent()" + "title": "RTCDataChannelEvent: RTCDataChannelEvent() constructor" } ], "dom-datachannelevent-channel": [ @@ -1526,7 +1607,7 @@ "version_added": "79" } }, - "title": "RTCDataChannelEvent.channel" + "title": "RTCDataChannelEvent: channel property" } ], "rtcdatachannelevent": [ @@ -1596,8 +1677,7 @@ "version_added": false }, "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1307996'>bug 1307996</a>." + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -1618,13 +1698,14 @@ "version_added": "79" } }, - "title": "RTCDtlsTransport.iceTransport" + "title": "RTCDtlsTransport: iceTransport property" } ], "dom-rtcdtlstransport-state": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/RTCDtlsTransport.json", @@ -1641,8 +1722,7 @@ "version_added": "12" }, "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1307996'>bug 1307996</a>." + "version_added": "82" }, "firefox_android": "mirror", "ie": { @@ -1663,13 +1743,14 @@ "version_added": "79" } }, - "title": "RTCDtlsTransport.state" + "title": "RTCDtlsTransport: state property" } ], "dom-rtcdtlstransport": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/RTCDtlsTransport.json", @@ -1686,8 +1767,7 @@ "version_added": "12" }, "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1307996'>bug 1307996</a>." + "version_added": "82" }, "firefox_android": "mirror", "ie": { @@ -1750,7 +1830,7 @@ "version_added": "79" } }, - "title": "RTCError.errorDetail" + "title": "RTCError: errorDetail property" } ], "dom-rtcerror-receivedalert": [ @@ -1792,7 +1872,7 @@ "version_added": "79" } }, - "title": "RTCError.receivedAlert" + "title": "RTCError: receivedAlert property" } ], "dom-rtcerror-sctpcausecode": [ @@ -1834,7 +1914,7 @@ "version_added": "79" } }, - "title": "RTCError.sctpCauseCode" + "title": "RTCError: sctpCauseCode property" } ], "dom-rtcerror-sdplinenumber": [ @@ -1876,7 +1956,7 @@ "version_added": "79" } }, - "title": "RTCError.sdpLineNumber" + "title": "RTCError: sdpLineNumber property" } ], "dom-rtcerror-sentalert": [ @@ -1918,7 +1998,7 @@ "version_added": "79" } }, - "title": "RTCError.sentAlert" + "title": "RTCError: sentAlert property" } ], "dom-rtcerror": [ @@ -2002,7 +2082,7 @@ "version_added": "79" } }, - "title": "RTCErrorEvent.error" + "title": "RTCErrorEvent: error property" } ], "dom-rtcerrorevent": [ @@ -2105,7 +2185,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate()" + "title": "RTCIceCandidate: RTCIceCandidate() constructor" } ], "dom-rtcicecandidate-address": [ @@ -2145,7 +2225,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.address" + "title": "RTCIceCandidate: address property" } ], "dom-rtcicecandidate-candidate": [ @@ -2190,7 +2270,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.candidate" + "title": "RTCIceCandidate: candidate property" } ], "dom-rtcicecandidate-component": [ @@ -2230,7 +2310,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.component" + "title": "RTCIceCandidate: component property" } ], "dom-rtcicecandidate-foundation": [ @@ -2270,7 +2350,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.foundation" + "title": "RTCIceCandidate: foundation property" } ], "dom-rtcicecandidate-port": [ @@ -2310,7 +2390,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.port" + "title": "RTCIceCandidate: port property" } ], "dom-rtcicecandidate-priority": [ @@ -2350,7 +2430,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.priority" + "title": "RTCIceCandidate: priority property" } ], "dom-rtcicecandidate-protocol": [ @@ -2390,7 +2470,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.protocol" + "title": "RTCIceCandidate: protocol property" } ], "dom-rtcicecandidate-relatedaddress": [ @@ -2430,7 +2510,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.relatedAddress" + "title": "RTCIceCandidate: relatedAddress property" } ], "dom-rtcicecandidate-relatedport": [ @@ -2470,7 +2550,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.relatedPort" + "title": "RTCIceCandidate: relatedPort property" } ], "dom-rtcicecandidate-sdpmid": [ @@ -2515,7 +2595,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.sdpMid" + "title": "RTCIceCandidate: sdpMid property" } ], "dom-rtcicecandidate-sdpmlineindex": [ @@ -2560,7 +2640,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.sdpMLineIndex" + "title": "RTCIceCandidate: sdpMLineIndex property" } ], "dom-rtcicecandidate-tcptype": [ @@ -2600,7 +2680,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.tcpType" + "title": "RTCIceCandidate: tcpType property" } ], "dom-rtcicecandidate-tojson": [ @@ -2643,7 +2723,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.toJSON()" + "title": "RTCIceCandidate: toJSON() method" } ], "dom-rtcicecandidate-type": [ @@ -2683,7 +2763,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.type" + "title": "RTCIceCandidate: type property" } ], "dom-rtcicecandidate-usernamefragment": [ @@ -2724,7 +2804,7 @@ "version_added": "79" } }, - "title": "RTCIceCandidate.usernameFragment" + "title": "RTCIceCandidate: usernameFragment property" } ], "rtcicecandidate-interface": [ @@ -2828,7 +2908,7 @@ "version_added": "79" } }, - "title": "RTCIceServer.credential" + "title": "RTCIceServer: credential property" } ], "dom-rtciceserver-urls": [ @@ -2873,7 +2953,7 @@ "version_added": "79" } }, - "title": "RTCIceServers.urls" + "title": "RTCIceServers: urls property" } ], "dom-rtciceserver-username": [ @@ -2920,7 +3000,7 @@ "version_added": "79" } }, - "title": "RTCIceServer.username" + "title": "RTCIceServer: username property" } ], "rtciceserver-dictionary": [ @@ -2970,45 +3050,6 @@ "title": "RTCIceServer" } ], - "dom-icetransport-component": [ - { - "engines": [], - "filename": "api/RTCIceTransport.json", - "name": "component", - "slug": "API/RTCIceTransport/component", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/component", - "summary": "The read-only RTCIceTransport property component specifies whether the object is serving to transport RTP or RTCP.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "RTCIceTransport.component" - } - ], "dom-icetransport-gatheringstate": [ { "engines": [ @@ -3046,7 +3087,7 @@ "version_added": "79" } }, - "title": "RTCIceTransport.gatheringState" + "title": "RTCIceTransport: gatheringState property" } ], "event-icetransport-gatheringstatechange": [ @@ -3165,7 +3206,7 @@ "version_added": "79" } }, - "title": "RTCIceTransport.getLocalCandidates()" + "title": "RTCIceTransport: getLocalCandidates() method" } ], "dom-rtcicetransport-getlocalparameters": [ @@ -3204,7 +3245,7 @@ "version_added": "79" } }, - "title": "RTCIceTransport.getLocalParameters()" + "title": "RTCIceTransport: getLocalParameters() method" } ], "dom-rtcicetransport-getremotecandidates": [ @@ -3245,7 +3286,7 @@ "version_added": "79" } }, - "title": "RTCIceTransport.getRemoteCandidates()" + "title": "RTCIceTransport: getRemoteCandidates() method" } ], "dom-rtcicetransport-getremoteparameters": [ @@ -3286,13 +3327,14 @@ "version_added": "79" } }, - "title": "RTCIceTransport.getRemoteParameters()" + "title": "RTCIceTransport: getRemoteParameters() method" } ], "dom-rtcicetransport-getselectedcandidatepair": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/RTCIceTransport.json", "name": "getSelectedCandidatePair", @@ -3318,7 +3360,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3327,7 +3369,7 @@ "version_added": "79" } }, - "title": "RTCIceTransport.getSelectedCandidatePair()" + "title": "RTCIceTransport: getSelectedCandidatePair() method" } ], "dom-icetransport-role": [ @@ -3368,13 +3410,14 @@ "version_added": "79" } }, - "title": "RTCIceTransport.role" + "title": "RTCIceTransport: role property" } ], "event-icetransport-selectedcandidatepairchange": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/RTCIceTransport.json", "name": "selectedcandidatepairchange_event", @@ -3398,7 +3441,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3413,7 +3456,8 @@ "dom-rtcicetransport-onselectedcandidatepairchange": [ { "engines": [ - "blink" + "blink", + "webkit" ], "filename": "api/RTCIceTransport.json", "name": "selectedcandidatepairchange_event", @@ -3437,7 +3481,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "16.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -3488,7 +3532,7 @@ "version_added": "79" } }, - "title": "RTCIceTransport.state" + "title": "RTCIceTransport: state property" } ], "event-icetransport-statechange": [ @@ -3690,7 +3734,7 @@ } ] }, - "title": "RTCPeerConnection()" + "title": "RTCPeerConnection: RTCPeerConnection() constructor" } ], "dom-peerconnection-addicecandidate": [ @@ -3704,7 +3748,7 @@ "name": "addIceCandidate", "slug": "API/RTCPeerConnection/addIceCandidate", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/addIceCandidate", - "summary": "When a web site or app using RTCPeerConnection receives a new ICE candidate from the remote peer over its signaling channel, it delivers the newly-received candidate to the browser's ICE agent by calling RTCPeerConnection.addIceCandidate(). This adds this new remote candidate to the RTCPeerConnection's remote description, which describes the state of the remote end of the connection.", + "summary": "When a website or app using RTCPeerConnection receives a new ICE candidate from the remote peer over its signaling channel, it delivers the newly-received candidate to the browser's ICE agent by calling RTCPeerConnection.addIceCandidate(). This adds this new remote candidate to the RTCPeerConnection's remote description, which describes the state of the remote end of the connection.", "support": { "chrome": { "version_added": "24" @@ -3737,7 +3781,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.addIceCandidate()" + "title": "RTCPeerConnection: addIceCandidate() method" } ], "dom-rtcpeerconnection-addtrack": [ @@ -3751,7 +3795,7 @@ "name": "addTrack", "slug": "API/RTCPeerConnection/addTrack", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/addTrack", - "summary": "The RTCPeerConnection method addTrack() adds a new media track to the set of tracks which will be transmitted to the other peer.>", + "summary": "The RTCPeerConnection method addTrack() adds a new media track to the set of tracks which will be transmitted to the other peer.", "support": { "chrome": { "version_added": "64" @@ -3780,7 +3824,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.addTrack()" + "title": "RTCPeerConnection: addTrack() method" } ], "dom-rtcpeerconnection-addtransceiver": [ @@ -3825,7 +3869,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.addTransceiver()" + "title": "RTCPeerConnection: addTransceiver() method" } ], "dom-rtcpeerconnection-cantrickleicecandidates": [ @@ -3868,7 +3912,7 @@ "version_added": "83" } }, - "title": "RTCPeerConnection.canTrickleIceCandidates" + "title": "RTCPeerConnection: canTrickleIceCandidates property" } ], "dom-rtcpeerconnection-close": [ @@ -3913,13 +3957,14 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.close()" + "title": "RTCPeerConnection: close() method" } ], "dom-peerconnection-connection-state": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/RTCPeerConnection.json", @@ -3934,7 +3979,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -3953,13 +3998,14 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.connectionState" + "title": "RTCPeerConnection: connectionState property" } ], "dom-rtcpeerconnection-onconnectionstatechange": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/RTCPeerConnection.json", @@ -3974,7 +4020,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -4038,7 +4084,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.createAnswer()" + "title": "RTCPeerConnection: createAnswer() method" } ], "dom-peerconnection-createdatachannel": [ @@ -4081,7 +4127,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.createDataChannel()" + "title": "RTCPeerConnection: createDataChannel() method" } ], "dom-rtcpeerconnection-createoffer": [ @@ -4126,7 +4172,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.createOffer()" + "title": "RTCPeerConnection: createOffer() method" } ], "dom-peerconnection-currentlocaldesc": [ @@ -4169,7 +4215,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.currentLocalDescription" + "title": "RTCPeerConnection: currentLocalDescription property" } ], "dom-peerconnection-currentremotedesc": [ @@ -4210,7 +4256,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.currentRemoteDescription" + "title": "RTCPeerConnection: currentRemoteDescription property" } ], "dom-rtcpeerconnection-ondatachannel": [ @@ -4264,9 +4310,9 @@ "webkit" ], "filename": "api/RTCPeerConnection.json", - "name": "generateCertificate", - "slug": "API/RTCPeerConnection/generateCertificate", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/generateCertificate", + "name": "generateCertificate_static", + "slug": "API/RTCPeerConnection/generateCertificate_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/generateCertificate_static", "summary": "The static RTCPeerConnection.generateCertificate() function creates an X.509 certificate and corresponding private key, returning a promise that resolves with the new RTCCertificate once it's generated.", "support": { "chrome": { @@ -4298,7 +4344,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.generateCertificate() static function" + "title": "RTCPeerConnection: generateCertificate() static method" } ], "dom-rtcpeerconnection-getconfiguration": [ @@ -4343,7 +4389,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.getConfiguration()" + "title": "RTCPeerConnection: getConfiguration() method" } ], "dom-peerconnection-getreceivers": [ @@ -4386,7 +4432,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.getReceivers()" + "title": "RTCPeerConnection: getReceivers() method" } ], "dom-peerconnection-getsenders": [ @@ -4429,7 +4475,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.getSenders()" + "title": "RTCPeerConnection: getSenders() method" } ], "widl-RTCPeerConnection-getStats-Promise-RTCStatsReport--MediaStreamTrack-selector": [ @@ -4472,7 +4518,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.getStats()" + "title": "RTCPeerConnection: getStats() method" } ], "dom-peerconnection-gettranseceivers": [ @@ -4515,7 +4561,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.getTransceivers()" + "title": "RTCPeerConnection: getTransceivers() method" } ], "dom-rtcpeerconnection-onicecandidate": [ @@ -4644,7 +4690,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.iceConnectionState" + "title": "RTCPeerConnection: iceConnectionState property" } ], "dom-rtcpeerconnection-oniceconnectionstatechange": [ @@ -4732,7 +4778,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.iceGatheringState" + "title": "RTCPeerConnection: iceGatheringState property" } ], "dom-rtcpeerconnection-onicegatheringstatechange": [ @@ -4822,7 +4868,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.localDescription" + "title": "RTCPeerConnection: localDescription property" } ], "dom-rtcpeerconnection-onnegotiationneeded": [ @@ -4887,7 +4933,7 @@ "name": "pendingLocalDescription", "slug": "API/RTCPeerConnection/pendingLocalDescription", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/pendingLocalDescription", - "summary": "The read-only property RTCPeerConnection.pendingLocalDescription returns an RTCSessionDescription object describing a pending configuration change for the local end of the connection. This does not describe the connection as it currently stands, but as it may exist in the near future. Use RTCPeerConnection.currentLocalDescription or RTCPeerConnection.localDescription to get the current state of the endpoint. For details on the difference, see Pending and current descriptions in WebRTC connectivity.", + "summary": "The read-only property RTCPeerConnection.pendingLocalDescription returns an RTCSessionDescription object describing a pending configuration change for the local end of the connection. This does not describe the connection as it currently stands, but as it may exist in the near future. Use RTCPeerConnection.currentLocalDescription or RTCPeerConnection.localDescription to get the current state of the endpoint. For details on the difference, see Pending and current descriptions in the WebRTC Connectivity page.", "support": { "chrome": { "version_added": "70" @@ -4916,7 +4962,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.pendingLocalDescription" + "title": "RTCPeerConnection: pendingLocalDescription property" } ], "dom-peerconnection-pendingremotedesc": [ @@ -4930,7 +4976,7 @@ "name": "pendingRemoteDescription", "slug": "API/RTCPeerConnection/pendingRemoteDescription", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/pendingRemoteDescription", - "summary": "The read-only property RTCPeerConnection.pendingRemoteDescription returns an RTCSessionDescription object describing a pending configuration change for the remote end of the connection. This does not describe the connection as it currently stands, but as it may exist in the near future. Use RTCPeerConnection.currentRemoteDescription or RTCPeerConnection.remoteDescription to get the current session description for the remote endpoint. For details on the difference, see Pending and current descriptions in WebRTC connectivity.", + "summary": "The read-only property RTCPeerConnection.pendingRemoteDescription returns an RTCSessionDescription object describing a pending configuration change for the remote end of the connection. This does not describe the connection as it currently stands, but as it may exist in the near future. Use RTCPeerConnection.currentRemoteDescription or RTCPeerConnection.remoteDescription to get the current session description for the remote endpoint. For details on the difference, see Pending and current descriptions in the WebRTC Connectivity page.", "support": { "chrome": { "version_added": "70" @@ -4959,7 +5005,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.pendingRemoteDescription" + "title": "RTCPeerConnection: pendingRemoteDescription property" } ], "dom-peerconnection-remotedescription": [ @@ -5004,7 +5050,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.remoteDescription" + "title": "RTCPeerConnection: remoteDescription property" } ], "dom-rtcpeerconnection-removetrack": [ @@ -5049,7 +5095,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.removeTrack()" + "title": "RTCPeerConnection: removeTrack() method" } ], "dom-rtcpeerconnection-restartice": [ @@ -5092,13 +5138,14 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.restartIce()" + "title": "RTCPeerConnection: restartIce() method" } ], "dom-rtcpeerconnection-sctp": [ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/RTCPeerConnection.json", @@ -5113,8 +5160,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1278299'>bug 1278299</a>." + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -5135,7 +5181,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.sctp" + "title": "RTCPeerConnection: sctp property" } ], "dom-rtcpeerconnection-setconfiguration": [ @@ -5178,7 +5224,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.setConfiguration()" + "title": "RTCPeerConnection: setConfiguration() method" } ], "dom-peerconnection-setlocaldescription": [ @@ -5225,7 +5271,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.setLocalDescription()" + "title": "RTCPeerConnection: setLocalDescription() method" } ], "dom-peerconnection-setremotedescription": [ @@ -5270,7 +5316,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.setRemoteDescription()" + "title": "RTCPeerConnection: setRemoteDescription() method" } ], "dom-peerconnection-signaling-state": [ @@ -5284,7 +5330,7 @@ "name": "signalingState", "slug": "API/RTCPeerConnection/signalingState", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/signalingState", - "summary": "The read-only signalingState property on the RTCPeerConnection interface returns a string value describing the state of the signaling process on the local end of the connection while connecting or reconnecting to another peer. See Signaling in Lifetime of a WebRTC session for more details about the signaling process.", + "summary": "The read-only signalingState property on the RTCPeerConnection interface returns a string value describing the state of the signaling process on the local end of the connection while connecting or reconnecting to another peer. See Signaling in our WebRTC session lifetime page.", "support": { "chrome": { "version_added": "26" @@ -5313,7 +5359,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnection.signalingState" + "title": "RTCPeerConnection: signalingState property" } ], "event-signalingstatechange": [ @@ -5524,7 +5570,7 @@ "version_added": "81" } }, - "title": "RTCPeerConnectionIceErrorEvent.address" + "title": "RTCPeerConnectionIceErrorEvent: address property" } ], "rtcpeerconnectioniceerrorevent": [ @@ -5607,7 +5653,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnectionIceEvent()" + "title": "RTCPeerConnectionIceEvent: RTCPeerConnectionIceEvent() constructor" } ], "dom-rtcpeerconnectioniceevent-candidate": [ @@ -5650,7 +5696,7 @@ "version_added": "79" } }, - "title": "RTCPeerConnectionIceEvent.candidate" + "title": "RTCPeerConnectionIceEvent: candidate property" } ], "rtcpeerconnectioniceevent": [ @@ -5716,9 +5762,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/RTCRtpContributingSource.json", "name": "audioLevel", "slug": "API/RTCRtpContributingSource/audioLevel", @@ -5731,14 +5774,7 @@ "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "59", - "flags": [ - { - "type": "preference", - "name": "media.peerconnection.rtpsourcesapi.enable", - "value_to_set": "true" - } - ] + "version_added": "59" }, "firefox_android": "mirror", "ie": { @@ -5757,7 +5793,7 @@ "version_added": false } }, - "title": "RTCRtpContributingSource.audioLevel" + "title": "RTCRtpContributingSource: audioLevel property" } ], "dom-rtcrtpcontributingsource-source": [ @@ -5767,9 +5803,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/RTCRtpContributingSource.json", "name": "source", "slug": "API/RTCRtpContributingSource/source", @@ -5784,14 +5817,7 @@ "version_added": false }, "firefox": { - "version_added": "59", - "flags": [ - { - "type": "preference", - "name": "media.peerconnection.rtpsourcesapi.enable", - "value_to_set": "true" - } - ] + "version_added": "59" }, "firefox_android": "mirror", "ie": { @@ -5814,7 +5840,7 @@ "version_added": "79" } }, - "title": "RTCRtpContributingSource.source" + "title": "RTCRtpContributingSource: source property" } ], "dom-rtcrtpcontributingsource-timestamp": [ @@ -5824,9 +5850,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/RTCRtpContributingSource.json", "name": "timestamp", "slug": "API/RTCRtpContributingSource/timestamp", @@ -5842,13 +5865,6 @@ }, "firefox": { "version_added": "59", - "flags": [ - { - "type": "preference", - "name": "media.peerconnection.rtpsourcesapi.enable", - "value_to_set": "true" - } - ], "notes": "Starting in version 60, the <code>timestamp</code> is correctly computed based on the window's <code>Performance</code> time, rather than <code>Date.getTime()</code>." }, "firefox_android": "mirror", @@ -5872,7 +5888,7 @@ "version_added": "79" } }, - "title": "RTCRtpContributingSource.timestamp" + "title": "RTCRtpContributingSource: timestamp property" } ], "dom-rtcrtpcontributingsource": [ @@ -5882,9 +5898,6 @@ "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], "filename": "api/RTCRtpContributingSource.json", "name": "RTCRtpContributingSource", "slug": "API/RTCRtpContributingSource", @@ -5899,14 +5912,7 @@ "version_added": false }, "firefox": { - "version_added": "59", - "flags": [ - { - "type": "preference", - "name": "media.peerconnection.rtpsourcesapi.enable", - "value_to_set": "true" - } - ] + "version_added": "59" }, "firefox_android": "mirror", "ie": { @@ -5972,7 +5978,7 @@ "version_added": "79" } }, - "title": "RTCRtpEncodingParameters.maxBitrate" + "title": "RTCRtpEncodingParameters: maxBitrate property" } ], "dom-rtcrtpencodingparameters-maxframerate": [ @@ -6017,7 +6023,7 @@ "version_added": "81" } }, - "title": "RTCRtpEncodingParameters.maxFramerate" + "title": "RTCRtpEncodingParameters: maxFramerate property" } ], "dom-rtcrtpencodingparameters-scaleresolutiondownby": [ @@ -6060,7 +6066,7 @@ "version_added": "79" } }, - "title": "RTCRtpEncodingParameters.scaleResolutionDownBy" + "title": "RTCRtpEncodingParameters: scaleResolutionDownBy property" } ], "dom-rtcrtpencodingparameters": [ @@ -6110,13 +6116,14 @@ { "engines": [ "blink", + "gecko", "webkit" ], "filename": "api/RTCRtpReceiver.json", - "name": "getCapabilities", - "slug": "API/RTCRtpReceiver/getCapabilities", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getCapabilities", - "summary": "The static function RTCRtpReceiver.getCapabilities() returns an RTCRtpCapabilities object describing the codecs and capabilities supported by RTCRtpReceivers on the current device.", + "name": "getCapabilities_static", + "slug": "API/RTCRtpReceiver/getCapabilities_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getCapabilities_static", + "summary": "The static method RTCRtpReceiver.getCapabilities() returns an object describing the codec and header extension capabilities supported by RTCRtpReceiver objects on the current device.", "support": { "chrome": { "version_added": "59" @@ -6126,7 +6133,7 @@ "version_added": "12" }, "firefox": { - "version_added": false + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -6145,7 +6152,7 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver.getCapabilities() static function" + "title": "RTCRtpReceiver: getCapabilities() static method" } ], "dom-rtcrtpreceiver-getcontributingsources": [ @@ -6188,26 +6195,28 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver.getContributingSources()" + "title": "RTCRtpReceiver: getContributingSources() method" } ], - "dom-rtcrtpreceiver-getparameters": [ + "dom-rtcrtpparameters-codecs": [ { "engines": [ "blink", "webkit" ], "filename": "api/RTCRtpReceiver.json", - "name": "getParameters", - "slug": "API/RTCRtpReceiver/getParameters", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getParameters", - "summary": "The getParameters() method of the RTCRtpReceiver interface returns an RTCRtpReceiveParameters object describing the current configuration for the encoding and transmission of media on the receiver's track.", + "name": "return_object_property_codecs", + "slug": "API/RTCRtpReceiver/getParameters#codecs", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getParameters#codecs", + "summary": "The getParameters() method of the RTCRtpReceiver interface returns an object describing the current configuration for the encoding and transmission of media on the receiver's track.", "support": { "chrome": { - "version_added": "59" + "version_added": "69" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -6228,31 +6237,33 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver.getParameters()" - } - ], - "widl-RTCRtpReceiver-getStats-Promise-RTCStatsReport": [ + "title": "RTCRtpReceiver: getParameters() method" + }, { "engines": [ "blink", - "gecko", "webkit" ], - "filename": "api/RTCRtpReceiver.json", - "name": "getStats", - "slug": "API/RTCRtpReceiver/getStats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getStats", - "summary": "The RTCRtpReceiver method getStats() asynchronously requests an RTCStatsReport object which provides statistics about incoming traffic on the owning RTCPeerConnection, returning a Promise whose fulfillment handler will be called once the results are available.", + "partial": [ + "gecko" + ], + "filename": "api/RTCRtpSender.json", + "name": "return_object_property_codecs", + "slug": "API/RTCRtpSender/getParameters#codecs", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters#codecs", + "summary": "The getParameters() method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's track will be encoded and transmitted to a remote RTCRtpReceiver.", "support": { "chrome": { - "version_added": "67" + "version_added": "69" }, "chrome_android": "mirror", "edge": { - "version_added": "13" + "version_added": false }, "firefox": { - "version_added": "55" + "version_added": "46", + "partial_implementation": true, + "notes": "The property is defined but not implemented/used." }, "firefox_android": "mirror", "ie": { @@ -6262,40 +6273,42 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "11" }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "7.0" - }, + "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "RTCRtpReceiver.getStats()" - } - ], - "dom-rtcrtpreceiver-getsynchronizationsources": [ + "title": "RTCRtpSender: getParameters() method" + }, { "engines": [ "blink", - "gecko", "webkit" ], - "filename": "api/RTCRtpReceiver.json", - "name": "getSynchronizationSources", - "slug": "API/RTCRtpReceiver/getSynchronizationSources", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getSynchronizationSources", - "summary": "The getSynchronizationSources() method of the RTCRtpReceiver interface returns an array of RTCRtpContributingSource instances, each corresponding to one SSRC (synchronization source) identifier received by the current RTCRtpReceiver in the last ten seconds.", + "partial": [ + "gecko" + ], + "filename": "api/RTCRtpSender.json", + "name": "parameters_codecs_parameter", + "slug": "API/RTCRtpSender/setParameters#codecs", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#codecs", + "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", "support": { "chrome": { - "version_added": "73" + "version_added": "69" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "59" + "version_added": "46", + "partial_implementation": true, + "notes": "The property is defined but not implemented/used." }, "firefox_android": "mirror", "ie": { @@ -6314,31 +6327,30 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver.getSynchronizationSources()" + "title": "RTCRtpSender: setParameters() method" } ], - "dom-rtpreceiver-track": [ + "dom-rtcrtpparameters-headerextensions": [ { "engines": [ "blink", - "gecko", "webkit" ], "filename": "api/RTCRtpReceiver.json", - "name": "track", - "slug": "API/RTCRtpReceiver/track", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/track", - "summary": "The track read-only property of the RTCRtpReceiver interface returns the MediaStreamTrack associated with the current RTCRtpReceiver instance.", + "name": "return_object_property_headerExtensions", + "slug": "API/RTCRtpReceiver/getParameters#headerextensions", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getParameters#headerextensions", + "summary": "The getParameters() method of the RTCRtpReceiver interface returns an object describing the current configuration for the encoding and transmission of media on the receiver's track.", "support": { "chrome": { - "version_added": "59" + "version_added": "69" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": false }, "firefox": { - "version_added": "34" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -6357,31 +6369,33 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver.track" - } - ], - "dom-rtcrtpreceiver-transport": [ + "title": "RTCRtpReceiver: getParameters() method" + }, { "engines": [ "blink", - "gecko", "webkit" ], - "filename": "api/RTCRtpReceiver.json", - "name": "transport", - "slug": "API/RTCRtpReceiver/transport", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/transport", - "summary": "The read-only transport property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.", + "partial": [ + "gecko" + ], + "filename": "api/RTCRtpSender.json", + "name": "return_object_property_headerExtensions", + "slug": "API/RTCRtpSender/getParameters#headerextensions", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters#headerextensions", + "summary": "The getParameters() method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's track will be encoded and transmitted to a remote RTCRtpReceiver.", "support": { "chrome": { - "version_added": "59" + "version_added": "69" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": false }, "firefox": { - "version_added": "82" + "version_added": "46", + "partial_implementation": true, + "notes": "The property is defined but not implemented/used." }, "firefox_android": "mirror", "ie": { @@ -6391,7 +6405,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6400,31 +6414,33 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver.transport" - } - ], - "rtcrtpreceiver-interface": [ + "title": "RTCRtpSender: getParameters() method" + }, { "engines": [ "blink", - "gecko", "webkit" ], - "filename": "api/RTCRtpReceiver.json", - "name": "RTCRtpReceiver", - "slug": "API/RTCRtpReceiver", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver", - "summary": "The RTCRtpReceiver interface of the WebRTC API manages the reception and decoding of data for a MediaStreamTrack on an RTCPeerConnection.", + "partial": [ + "gecko" + ], + "filename": "api/RTCRtpSender.json", + "name": "parameters_headerExtensions_parameter", + "slug": "API/RTCRtpSender/setParameters#headerextensions", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#headerextensions", + "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", "support": { "chrome": { - "version_added": "59" + "version_added": "69" }, "chrome_android": "mirror", "edge": { - "version_added": "12" + "version_added": false }, "firefox": { - "version_added": "34" + "version_added": "46", + "partial_implementation": true, + "notes": "The property is defined but not implemented/used." }, "firefox_android": "mirror", "ie": { @@ -6434,7 +6450,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6443,20 +6459,20 @@ "version_added": "79" } }, - "title": "RTCRtpReceiver" + "title": "RTCRtpSender: setParameters() method" } ], - "dom-rtcrtpsendparameters-encodings": [ + "dom-rtcrtpparameters-rtcp": [ { "engines": [ "blink", "webkit" ], - "filename": "api/RTCRtpSendParameters.json", - "name": "encodings", - "slug": "API/RTCRtpSendParameters/encodings", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSendParameters/encodings", - "summary": "The RTCRtpSendParameters dictionary's encodings property is an RTCRtpEncodingParameters object providing configuration settings for the encoder being used for the RTCRtpSender's track.", + "filename": "api/RTCRtpReceiver.json", + "name": "return_object_property_rtcp", + "slug": "API/RTCRtpReceiver/getParameters#rtcp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getParameters#rtcp", + "summary": "The getParameters() method of the RTCRtpReceiver interface returns an object describing the current configuration for the encoding and transmission of media on the receiver's track.", "support": { "chrome": { "version_added": "69" @@ -6466,8 +6482,7 @@ "version_added": false }, "firefox": { - "version_added": false, - "notes": "Firefox uses <code>RTCRtpParameters.encodings</code> instead." + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -6477,7 +6492,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6486,20 +6501,21 @@ "version_added": "79" } }, - "title": "RTCRtpSendParameters.encodings" - } - ], - "dom-rtcrtpsendparameters": [ + "title": "RTCRtpReceiver: getParameters() method" + }, { "engines": [ "blink", "webkit" ], - "filename": "api/RTCRtpSendParameters.json", - "name": "RTCRtpSendParameters", - "slug": "API/RTCRtpSendParameters", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSendParameters", - "summary": "The WebRTC API's RTCRtpSendParameters dictionary is used to specify the parameters for an RTCRtpSender when calling its setParameters() method.", + "partial": [ + "gecko" + ], + "filename": "api/RTCRtpSender.json", + "name": "return_object_property_rtcp", + "slug": "API/RTCRtpSender/getParameters#rtcp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters#rtcp", + "summary": "The getParameters() method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's track will be encoded and transmitted to a remote RTCRtpReceiver.", "support": { "chrome": { "version_added": "69" @@ -6509,8 +6525,9 @@ "version_added": false }, "firefox": { - "version_added": false, - "notes": "Firefox expects an <code><a href='https://developer.mozilla.org/docs/Web/API/RTCRtpParameters'>RTCRtpParameters</a></code> object instead." + "version_added": "46", + "partial_implementation": true, + "notes": "The property is defined but not implemented/used." }, "firefox_android": "mirror", "ie": { @@ -6520,7 +6537,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6529,29 +6546,33 @@ "version_added": "79" } }, - "title": "RTCRtpSendParameters" - } - ], - "dom-rtcrtpsender-dtmf": [ + "title": "RTCRtpSender: getParameters() method" + }, { "engines": [ "blink", - "gecko", "webkit" ], + "partial": [ + "gecko" + ], "filename": "api/RTCRtpSender.json", - "name": "dtmf", - "slug": "API/RTCRtpSender/dtmf", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/dtmf", - "summary": "The read-only dtmf property on the RTCRtpSender interface returns a RTCDTMFSender object which can be used to send DTMF tones over the RTCPeerConnection. See Using DTMF for details on how to make use of the returned RTCDTMFSender object.", + "name": "parameters_rtcp_parameter", + "slug": "API/RTCRtpSender/setParameters#rtcp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#rtcp", + "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", "support": { "chrome": { - "version_added": "66" + "version_added": "69" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "52" + "version_added": "46", + "partial_implementation": true, + "notes": "The property is defined but not implemented/used." }, "firefox_android": "mirror", "ie": { @@ -6561,7 +6582,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "13.1" + "version_added": "15" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6570,27 +6591,27 @@ "version_added": "79" } }, - "title": "RTCRtpSender.dtmf" + "title": "RTCRtpSender: setParameters() method" } ], - "dom-rtcrtpsender-getcapabilities": [ + "dom-rtcrtpreceiver-getparameters": [ { "engines": [ "blink", "webkit" ], - "filename": "api/RTCRtpSender.json", - "name": "getCapabilities", - "slug": "API/RTCRtpSender/getCapabilities", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getCapabilities", - "summary": "The static function RTCRtpSender.getCapabilities() returns an RTCRtpCapabilities object describing the codecs and capabilities supported by the RTCRtpSender.", + "filename": "api/RTCRtpReceiver.json", + "name": "getParameters", + "slug": "API/RTCRtpReceiver/getParameters", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getParameters", + "summary": "The getParameters() method of the RTCRtpReceiver interface returns an object describing the current configuration for the encoding and transmission of media on the receiver's track.", "support": { "chrome": { - "version_added": "69" + "version_added": "59" }, "chrome_android": "mirror", "edge": { - "version_added": "13" + "version_added": false }, "firefox": { "version_added": false @@ -6603,7 +6624,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6612,29 +6633,31 @@ "version_added": "79" } }, - "title": "RTCRtpSender.getCapabilities() static function" + "title": "RTCRtpReceiver: getParameters() method" } ], - "dom-rtcrtpsender-getparameters": [ + "widl-RTCRtpReceiver-getStats-Promise-RTCStatsReport": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpSender.json", - "name": "getParameters", - "slug": "API/RTCRtpSender/getParameters", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters", - "summary": "The getParameters() method of the RTCRtpSender interface returns an RTCRtpSendParameters object describing the current configuration for the encoding and transmission of media on the sender's track.", + "filename": "api/RTCRtpReceiver.json", + "name": "getStats", + "slug": "API/RTCRtpReceiver/getStats", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getStats", + "summary": "The RTCRtpReceiver method getStats() asynchronously requests an RTCStatsReport object which provides statistics about incoming traffic on the owning RTCPeerConnection, returning a Promise whose fulfillment handler will be called once the results are available.", "support": { "chrome": { - "version_added": "68" + "version_added": "67" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "13" + }, "firefox": { - "version_added": "46" + "version_added": "55" }, "firefox_android": "mirror", "ie": { @@ -6644,40 +6667,40 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", - "samsunginternet_android": "mirror", + "samsunginternet_android": { + "version_added": "7.0" + }, "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "RTCRtpSender.getParameters()" + "title": "RTCRtpReceiver: getStats() method" } ], - "widl-RTCRtpSender-getStats-Promise-RTCStatsReport": [ + "dom-rtcrtpreceiver-getsynchronizationsources": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpSender.json", - "name": "getStats", - "slug": "API/RTCRtpSender/getStats", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getStats", - "summary": "The RTCRtpSender method getStats() asynchronously requests an RTCStatsReport object which provides statistics about outgoing traffic on the RTCPeerConnection which owns the sender, returning a Promise which is fulfilled when the results are available.", + "filename": "api/RTCRtpReceiver.json", + "name": "getSynchronizationSources", + "slug": "API/RTCRtpReceiver/getSynchronizationSources", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getSynchronizationSources", + "summary": "The getSynchronizationSources() method of the RTCRtpReceiver interface returns an array of RTCRtpContributingSource instances, each corresponding to one SSRC (synchronization source) identifier received by the current RTCRtpReceiver in the last ten seconds.", "support": { "chrome": { - "version_added": "67" + "version_added": "73" }, "chrome_android": "mirror", - "edge": { - "version_added": "13" - }, + "edge": "mirror", "firefox": { - "version_added": "55" + "version_added": "59" }, "firefox_android": "mirror", "ie": { @@ -6696,27 +6719,29 @@ "version_added": "79" } }, - "title": "RTCRtpSender.getStats()" + "title": "RTCRtpReceiver: getSynchronizationSources() method" } ], - "dom-rtcrtpsender-replacetrack": [ + "dom-rtpreceiver-track": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpSender.json", - "name": "replaceTrack", - "slug": "API/RTCRtpSender/replaceTrack", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/replaceTrack", - "summary": "The RTCRtpSender method replaceTrack() replaces the track currently being used as the sender's source with a new MediaStreamTrack.", + "filename": "api/RTCRtpReceiver.json", + "name": "track", + "slug": "API/RTCRtpReceiver/track", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/track", + "summary": "The track read-only property of the RTCRtpReceiver interface returns the MediaStreamTrack associated with the current RTCRtpReceiver instance.", "support": { "chrome": { - "version_added": "65" + "version_added": "59" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { "version_added": "34" }, @@ -6737,38 +6762,32 @@ "version_added": "79" } }, - "title": "RTCRtpSender.replaceTrack()" + "title": "RTCRtpReceiver: track property" } ], - "dom-rtcrtpsender-setparameters": [ + "dom-rtcrtpreceiver-transport": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpSender.json", - "name": "setParameters", - "slug": "API/RTCRtpSender/setParameters", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters", - "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", + "filename": "api/RTCRtpReceiver.json", + "name": "transport", + "slug": "API/RTCRtpReceiver/transport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/transport", + "summary": "The read-only transport property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.", "support": { "chrome": { - "version_added": "68" + "version_added": "59" }, "chrome_android": "mirror", - "edge": "mirror", - "firefox": [ - { - "version_added": "64" - }, - { - "version_added": "46", - "version_removed": "64", - "partial_implementation": true, - "notes": "Before Firefox 64, changes to parameters that should update live would not do so." - } - ], + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "82" + }, "firefox_android": "mirror", "ie": { "version_added": false @@ -6777,7 +6796,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "12.1" + "version_added": "15.4" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6786,28 +6805,31 @@ "version_added": "79" } }, - "title": "RTCRtpSender.setParameters()" + "title": "RTCRtpReceiver: transport property" } ], - "dom-rtcrtpsender-setstreams": [ + "rtcrtpreceiver-interface": [ { "engines": [ "blink", + "gecko", "webkit" ], - "filename": "api/RTCRtpSender.json", - "name": "setStreams", - "slug": "API/RTCRtpSender/setStreams", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setStreams", - "summary": "The RTCRtpSender method setStreams() associates the sender's track with the specified MediaStream or array of MediaStream objects.", + "filename": "api/RTCRtpReceiver.json", + "name": "RTCRtpReceiver", + "slug": "API/RTCRtpReceiver", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver", + "summary": "The RTCRtpReceiver interface of the WebRTC API manages the reception and decoding of data for a MediaStreamTrack on an RTCPeerConnection.", "support": { "chrome": { - "version_added": "76" + "version_added": "59" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "12" + }, "firefox": { - "version_added": false + "version_added": "34" }, "firefox_android": "mirror", "ie": { @@ -6817,21 +6839,19 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "14.1" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": "79" - }, + "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "RTCRtpSender.setStreams()" + "title": "RTCRtpReceiver" } ], - "dom-rtcrtpsender-track": [ + "dom-rtcrtpsender-dtmf": [ { "engines": [ "blink", @@ -6839,20 +6859,18 @@ "webkit" ], "filename": "api/RTCRtpSender.json", - "name": "track", - "slug": "API/RTCRtpSender/track", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/track", - "summary": "The track read-only property of the RTCRtpSender interface returns the MediaStreamTrack which is being handled by the RTCRtpSender.", + "name": "dtmf", + "slug": "API/RTCRtpSender/dtmf", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/dtmf", + "summary": "The read-only dtmf property on the RTCRtpSender interface returns a RTCDTMFSender object which can be used to send DTMF tones over the RTCPeerConnection. See Using DTMF for details on how to make use of the returned RTCDTMFSender object.", "support": { "chrome": { - "version_added": "64" + "version_added": "66" }, "chrome_android": "mirror", - "edge": { - "version_added": "13" - }, + "edge": "mirror", "firefox": { - "version_added": "34" + "version_added": "52" }, "firefox_android": "mirror", "ie": { @@ -6862,7 +6880,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "13.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6871,10 +6889,10 @@ "version_added": "79" } }, - "title": "RTCRtpSender.track" + "title": "RTCRtpSender: dtmf property" } ], - "dom-rtcrtpsender-transport": [ + "dom-rtcrtpsender-getcapabilities": [ { "engines": [ "blink", @@ -6882,20 +6900,20 @@ "webkit" ], "filename": "api/RTCRtpSender.json", - "name": "transport", - "slug": "API/RTCRtpSender/transport", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/transport", - "summary": "The read-only transport property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.", + "name": "getCapabilities_static", + "slug": "API/RTCRtpSender/getCapabilities_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getCapabilities_static", + "summary": "The static method RTCRtpSender.getCapabilities() returns an object describing the codec and header extension capabilities supported by the RTCRtpSender.", "support": { "chrome": { - "version_added": "75" + "version_added": "69" }, "chrome_android": "mirror", "edge": { "version_added": "13" }, "firefox": { - "version_added": "34" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -6905,7 +6923,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6914,10 +6932,10 @@ "version_added": "79" } }, - "title": "RTCRtpSender.transport" + "title": "RTCRtpSender: getCapabilities() static method" } ], - "rtcrtpsender-interface": [ + "dom-rtcrtpsendparameters-encodings": [ { "engines": [ "blink", @@ -6925,20 +6943,20 @@ "webkit" ], "filename": "api/RTCRtpSender.json", - "name": "RTCRtpSender", - "slug": "API/RTCRtpSender", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender", - "summary": "The RTCRtpSender interface provides the ability to control and obtain details about how a particular MediaStreamTrack is encoded and sent to a remote peer.", + "name": "return_object_property_encodings", + "slug": "API/RTCRtpSender/getParameters#encodings", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters#encodings", + "summary": "The getParameters() method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's track will be encoded and transmitted to a remote RTCRtpReceiver.", "support": { "chrome": { - "version_added": "64" + "version_added": "69" }, "chrome_android": "mirror", "edge": { - "version_added": "13" + "version_added": false }, "firefox": { - "version_added": "34" + "version_added": "46" }, "firefox_android": "mirror", "ie": { @@ -6948,7 +6966,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -6957,38 +6975,29 @@ "version_added": "79" } }, - "title": "RTCRtpSender" - } - ], - "dom-rtcrtpsynchronizationsource": [ + "title": "RTCRtpSender: getParameters() method" + }, { "engines": [ + "blink", "gecko", "webkit" ], - "needsflag": [ - "gecko" - ], - "filename": "api/RTCRtpSynchronizationSource.json", - "name": "RTCRtpSynchronizationSource", - "slug": "API/RTCRtpSynchronizationSource", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSynchronizationSource", - "summary": "The getSynchronizationSources() method of the RTCRtpReceiver interface returns an array of RTCRtpContributingSource instances, each corresponding to one SSRC (synchronization source) identifier received by the current RTCRtpReceiver in the last ten seconds.", + "filename": "api/RTCRtpSender.json", + "name": "parameters_encodings_parameter", + "slug": "API/RTCRtpSender/setParameters#encodings", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#encodings", + "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", "support": { "chrome": { - "version_added": false + "version_added": "69" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "59", - "flags": [ - { - "type": "preference", - "name": "media.peerconnection.rtpsourcesapi.enable", - "value_to_set": "true" - } - ] + "version_added": "46" }, "firefox_android": "mirror", "ie": { @@ -7004,32 +7013,33 @@ "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": false + "version_added": "79" } }, - "title": "RTCRtpReceiver.getSynchronizationSources()" + "title": "RTCRtpSender: setParameters() method" } ], - "dom-rtcrtptransceiver-currentdirection": [ + "dom-rtcrtpsendparameters-transactionid": [ { "engines": [ "blink", - "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "currentDirection", - "slug": "API/RTCRtpTransceiver/currentDirection", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/currentDirection", - "summary": "The read-only RTCRtpTransceiver property currentDirection is a string which indicates the current directionality of the transceiver.", + "filename": "api/RTCRtpSender.json", + "name": "return_object_property_transactionId", + "slug": "API/RTCRtpSender/getParameters#transactionid", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters#transactionid", + "summary": "The getParameters() method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's track will be encoded and transmitted to a remote RTCRtpReceiver.", "support": { "chrome": { "version_added": "69" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "59" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -7048,29 +7058,28 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver.currentDirection" - } - ], - "dom-rtcrtptransceiver-direction": [ + "title": "RTCRtpSender: getParameters() method" + }, { "engines": [ "blink", - "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "direction", - "slug": "API/RTCRtpTransceiver/direction", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/direction", - "summary": "The RTCRtpTransceiver property direction is a string which indicates the transceiver's preferred directionality.", + "filename": "api/RTCRtpSender.json", + "name": "parameters_transactionId_parameter", + "slug": "API/RTCRtpSender/setParameters#transactionid", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#transactionid", + "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", "support": { "chrome": { "version_added": "69" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "59" + "version_added": false }, "firefox_android": "mirror", "ie": { @@ -7080,7 +7089,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7089,29 +7098,31 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver.direction" + "title": "RTCRtpSender: setParameters() method" } ], - "dom-rtptransceiver-mid": [ + "dom-rtcrtpsender-getparameters": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "mid", - "slug": "API/RTCRtpTransceiver/mid", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/mid", - "summary": "The read-only RTCRtpTransceiver interface's mid property specifies the negotiated media ID (mid) which the local and remote peers have agreed upon to uniquely identify the stream's pairing of sender and receiver.", + "filename": "api/RTCRtpSender.json", + "name": "getParameters", + "slug": "API/RTCRtpSender/getParameters", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters", + "summary": "The getParameters() method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's track will be encoded and transmitted to a remote RTCRtpReceiver.", "support": { "chrome": { - "version_added": "69" + "version_added": "68" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { - "version_added": "59" + "version_added": "46" }, "firefox_android": "mirror", "ie": { @@ -7130,29 +7141,31 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver.mid" + "title": "RTCRtpSender: getParameters() method" } ], - "dom-rtcrtptransceiver-receiver": [ + "widl-RTCRtpSender-getStats-Promise-RTCStatsReport": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "receiver", - "slug": "API/RTCRtpTransceiver/receiver", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/receiver", - "summary": "The read-only receiver property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpReceiver responsible for receiving and decoding incoming media data for the transceiver's stream.", + "filename": "api/RTCRtpSender.json", + "name": "getStats", + "slug": "API/RTCRtpSender/getStats", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getStats", + "summary": "The RTCRtpSender method getStats() asynchronously requests an RTCStatsReport object which provides statistics about outgoing traffic on the RTCPeerConnection which owns the sender, returning a Promise which is fulfilled when the results are available.", "support": { "chrome": { - "version_added": "69" + "version_added": "67" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "13" + }, "firefox": { - "version_added": "59" + "version_added": "55" }, "firefox_android": "mirror", "ie": { @@ -7162,7 +7175,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7171,29 +7184,29 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver.receiver" + "title": "RTCRtpSender: getStats() method" } ], - "dom-rtcrtptransceiver-sender": [ + "dom-rtcrtpsender-replacetrack": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "sender", - "slug": "API/RTCRtpTransceiver/sender", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/sender", - "summary": "The read-only sender property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpSender responsible for encoding and sending outgoing media data for the transceiver's stream.", + "filename": "api/RTCRtpSender.json", + "name": "replaceTrack", + "slug": "API/RTCRtpSender/replaceTrack", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/replaceTrack", + "summary": "The RTCRtpSender method replaceTrack() replaces the track currently being used as the sender's source with a new MediaStreamTrack.", "support": { "chrome": { - "version_added": "69" + "version_added": "65" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "59" + "version_added": "34" }, "firefox_android": "mirror", "ie": { @@ -7212,29 +7225,40 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver.sender" + "title": "RTCRtpSender: replaceTrack() method" } ], - "dom-rtcrtptransceiver-setcodecpreferences": [ + "dom-rtcrtpsender-setparameters": [ { "engines": [ "blink", + "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "setCodecPreferences", - "slug": "API/RTCRtpTransceiver/setCodecPreferences", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/setCodecPreferences", - "summary": "The RTCRtpTransceiver method setCodecPreferences() configures the transceiver's codecs given a list of RTCRtpCodecCapability objects specifying the new preferences for each codec.", + "filename": "api/RTCRtpSender.json", + "name": "setParameters", + "slug": "API/RTCRtpSender/setParameters", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters", + "summary": "The setParameters() method of the RTCRtpSender interface applies changes the configuration of sender's track, which is the MediaStreamTrack for which the RTCRtpSender is responsible.", "support": { "chrome": { - "version_added": "76" + "version_added": "68" }, "chrome_android": "mirror", - "edge": "mirror", - "firefox": { + "edge": { "version_added": false }, + "firefox": [ + { + "version_added": "64" + }, + { + "version_added": "46", + "version_removed": "64", + "partial_implementation": true, + "notes": "Before Firefox 64, changes to parameters that should update live would not do so." + } + ], "firefox_android": "mirror", "ie": { "version_added": false @@ -7243,7 +7267,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "13.1" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7252,29 +7276,29 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver.setCodecPreferences()" + "title": "RTCRtpSender: setParameters() method" } ], - "dom-rtcrtptransceiver-stop": [ + "dom-rtcrtpsender-setstreams": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "stop", - "slug": "API/RTCRtpTransceiver/stop", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stop", - "summary": "The stop() method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and RTCRtpReceiver.", + "filename": "api/RTCRtpSender.json", + "name": "setStreams", + "slug": "API/RTCRtpSender/setStreams", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setStreams", + "summary": "The RTCRtpSender method setStreams() associates the sender's track with the specified MediaStream objects.", "support": { "chrome": { - "version_added": "88" + "version_added": "76" }, "chrome_android": "mirror", "edge": "mirror", "firefox": { - "version_added": "59" + "version_added": "113" }, "firefox_android": "mirror", "ie": { @@ -7284,40 +7308,42 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "14.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": "mirror", + "webview_android": { + "version_added": "79" + }, "edge_blink": { - "version_added": "88" + "version_added": "79" } }, - "title": "RTCRtpTransceiver.stop()" + "title": "RTCRtpSender: setStreams() method" } ], - "rtcrtptransceiver-interface": [ + "dom-rtcrtpsender-track": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCRtpTransceiver.json", - "name": "RTCRtpTransceiver", - "slug": "API/RTCRtpTransceiver", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver", - "summary": "The WebRTC interface RTCRtpTransceiver describes a permanent pairing of an RTCRtpSender and an RTCRtpReceiver, along with some shared state.", + "filename": "api/RTCRtpSender.json", + "name": "track", + "slug": "API/RTCRtpSender/track", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/track", + "summary": "The track read-only property of the RTCRtpSender interface returns the MediaStreamTrack which is being handled by the RTCRtpSender.", "support": { "chrome": { - "version_added": "69" + "version_added": "64" }, "chrome_android": "mirror", "edge": { - "version_added": "18" + "version_added": "13" }, "firefox": { - "version_added": "59" + "version_added": "34" }, "firefox_android": "mirror", "ie": { @@ -7336,29 +7362,31 @@ "version_added": "79" } }, - "title": "RTCRtpTransceiver" + "title": "RTCRtpSender: track property" } ], - "dom-rtcsctptransport-state": [ + "dom-rtcrtpsender-transport": [ { "engines": [ "blink", + "gecko", "webkit" ], - "filename": "api/RTCSctpTransport.json", - "name": "state", - "slug": "API/RTCSctpTransport/state", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport/state", - "summary": "The state read-only property of the RTCSctpTransport interface provides information which describes a Stream Control Transmission Protocol (SCTP) transport state.", + "filename": "api/RTCRtpSender.json", + "name": "transport", + "slug": "API/RTCRtpSender/transport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/transport", + "summary": "The read-only transport property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.", "support": { "chrome": { - "version_added": "76" + "version_added": "75" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "13" + }, "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1278299'>bug 1278299</a>." + "version_added": "82" }, "firefox_android": "mirror", "ie": { @@ -7377,29 +7405,31 @@ "version_added": "79" } }, - "title": "RTCSctpTransport.state" + "title": "RTCRtpSender: transport property" } ], - "rtcsctptransport-interface": [ + "rtcrtpsender-interface": [ { "engines": [ "blink", + "gecko", "webkit" ], - "filename": "api/RTCSctpTransport.json", - "name": "RTCSctpTransport", - "slug": "API/RTCSctpTransport", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport", - "summary": "The RTCSctpTransport interface provides information which describes a Stream Control Transmission Protocol (SCTP) transport. This provides information about limitations of the transport, but also provides a way to access the underlying Datagram Transport Layer Security (DTLS) transport over which SCTP packets for all of an RTCPeerConnection's data channels are sent and received.", + "filename": "api/RTCRtpSender.json", + "name": "RTCRtpSender", + "slug": "API/RTCRtpSender", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender", + "summary": "The RTCRtpSender interface provides the ability to control and obtain details about how a particular MediaStreamTrack is encoded and sent to a remote peer.", "support": { "chrome": { - "version_added": "76" + "version_added": "64" }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": "13" + }, "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1278299'>bug 1278299</a>." + "version_added": "34" }, "firefox_android": "mirror", "ie": { @@ -7409,7 +7439,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "15.4" + "version_added": "11" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7418,35 +7448,30 @@ "version_added": "79" } }, - "title": "RTCSctpTransport" + "title": "RTCRtpSender" } ], - "dom-rtcsessiondescription-sdp": [ + "dom-rtcrtpsynchronizationsource": [ { "engines": [ - "blink", "gecko", "webkit" ], - "filename": "api/RTCSessionDescription.json", - "name": "sdp", - "slug": "API/RTCSessionDescription/sdp", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/sdp", - "summary": "The property RTCSessionDescription.sdp is a read-only string containing the SDP which describes the session.", + "filename": "api/RTCRtpSynchronizationSource.json", + "name": "RTCRtpSynchronizationSource", + "slug": "API/RTCRtpSynchronizationSource", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSynchronizationSource", + "summary": "The getSynchronizationSources() method of the RTCRtpReceiver interface returns an array of RTCRtpContributingSource instances, each corresponding to one SSRC (synchronization source) identifier received by the current RTCRtpReceiver in the last ten seconds.", "support": { "chrome": { - "version_added": "23" + "version_added": false }, "chrome_android": "mirror", - "edge": { - "version_added": "15" - }, + "edge": "mirror", "firefox": { - "version_added": "22" - }, - "firefox_android": { - "version_added": "24" + "version_added": "59" }, + "firefox_android": "mirror", "ie": { "version_added": false }, @@ -7454,40 +7479,38 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { - "version_added": "79" + "version_added": false } }, - "title": "RTCSessionDescription.sdp" + "title": "RTCRtpReceiver: getSynchronizationSources() method" } ], - "dom-rtcsessiondescription-tojson": [ + "dom-rtcrtptransceiver-currentdirection": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCSessionDescription.json", - "name": "toJSON", - "slug": "API/RTCSessionDescription/toJSON", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/toJSON", - "summary": "The RTCSessionDescription.toJSON() method generates a JSON description of the object. Both properties, type and sdp, are contained in the generated JSON.", + "filename": "api/RTCRtpTransceiver.json", + "name": "currentDirection", + "slug": "API/RTCRtpTransceiver/currentDirection", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/currentDirection", + "summary": "The read-only RTCRtpTransceiver property currentDirection is a string which indicates the current directionality of the transceiver.", "support": { "chrome": { - "version_added": "43" + "version_added": "69" }, "chrome_android": "mirror", - "edge": { - "version_added": "15" - }, + "edge": "mirror", "firefox": { - "version_added": "24" + "version_added": "59" }, "firefox_android": "mirror", "ie": { @@ -7497,7 +7520,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": "11" + "version_added": "12.1" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", @@ -7506,24 +7529,605 @@ "version_added": "79" } }, - "title": "RTCSessionDescription.toJSON()" + "title": "RTCRtpTransceiver: currentDirection property" } ], - "dom-rtcsessiondescription-type": [ + "dom-rtcrtptransceiver-direction": [ { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/RTCSessionDescription.json", - "name": "type", - "slug": "API/RTCSessionDescription/type", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/type", - "summary": "The property RTCSessionDescription.type is a read-only string value which describes the description's type.", - "support": { - "chrome": { - "version_added": "23" + "filename": "api/RTCRtpTransceiver.json", + "name": "direction", + "slug": "API/RTCRtpTransceiver/direction", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/direction", + "summary": "The RTCRtpTransceiver property direction is a string which indicates the transceiver's preferred directionality.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "59" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpTransceiver: direction property" + } + ], + "dom-rtptransceiver-mid": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCRtpTransceiver.json", + "name": "mid", + "slug": "API/RTCRtpTransceiver/mid", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/mid", + "summary": "The read-only RTCRtpTransceiver interface's mid property specifies the negotiated media ID (mid) which the local and remote peers have agreed upon to uniquely identify the stream's pairing of sender and receiver.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "59" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpTransceiver: mid property" + } + ], + "dom-rtcrtptransceiver-receiver": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCRtpTransceiver.json", + "name": "receiver", + "slug": "API/RTCRtpTransceiver/receiver", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/receiver", + "summary": "The read-only receiver property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpReceiver responsible for receiving and decoding incoming media data for the transceiver's stream.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "59" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpTransceiver: receiver property" + } + ], + "dom-rtcrtptransceiver-sender": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCRtpTransceiver.json", + "name": "sender", + "slug": "API/RTCRtpTransceiver/sender", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/sender", + "summary": "The read-only sender property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpSender responsible for encoding and sending outgoing media data for the transceiver's stream.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "59" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpTransceiver: sender property" + } + ], + "dom-rtcrtptransceiver-setcodecpreferences": [ + { + "engines": [ + "blink", + "webkit" + ], + "filename": "api/RTCRtpTransceiver.json", + "name": "setCodecPreferences", + "slug": "API/RTCRtpTransceiver/setCodecPreferences", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/setCodecPreferences", + "summary": "The RTCRtpTransceiver method setCodecPreferences() configures the transceiver's preferred list of codecs.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "13.1" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpTransceiver: setCodecPreferences() method" + } + ], + "dom-rtcrtptransceiver-stop": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCRtpTransceiver.json", + "name": "stop", + "slug": "API/RTCRtpTransceiver/stop", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stop", + "summary": "The stop() method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and RTCRtpReceiver.", + "support": { + "chrome": { + "version_added": "88" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "59" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "88" + } + }, + "title": "RTCRtpTransceiver: stop() method" + } + ], + "rtcrtptransceiver-interface": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCRtpTransceiver.json", + "name": "RTCRtpTransceiver", + "slug": "API/RTCRtpTransceiver", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver", + "summary": "The WebRTC interface RTCRtpTransceiver describes a permanent pairing of an RTCRtpSender and an RTCRtpReceiver, along with some shared state.", + "support": { + "chrome": { + "version_added": "69" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "18" + }, + "firefox": { + "version_added": "59" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCRtpTransceiver" + } + ], + "dom-rtcsctptransport-maxchannels": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSctpTransport.json", + "name": "maxChannels", + "slug": "API/RTCSctpTransport/maxChannels", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport/maxChannels", + "summary": "The maxChannels read-only property of the RTCSctpTransport interface indicates the maximum number of RTCDataChannel objects that can be opened simultaneously.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSctpTransport: maxChannels property" + } + ], + "dom-rtcsctptransport-maxmessagesize": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSctpTransport.json", + "name": "maxMessageSize", + "slug": "API/RTCSctpTransport/maxMessageSize", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport/maxMessageSize", + "summary": "The maxMessageSize read-only property of the RTCSctpTransport interface indicates the maximum size of a message that can be sent using the RTCDataChannel.send() method.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSctpTransport: maxMessageSize property" + } + ], + "dom-rtcsctptransport-state": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSctpTransport.json", + "name": "state", + "slug": "API/RTCSctpTransport/state", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport/state", + "summary": "The state read-only property of the RTCSctpTransport interface provides information which describes a Stream Control Transmission Protocol (SCTP) transport state.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSctpTransport: state property" + } + ], + "dom-rtcsctptransport-transport": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSctpTransport.json", + "name": "transport", + "slug": "API/RTCSctpTransport/transport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport/transport", + "summary": "The transport read-only property of the RTCSctpTransport interface returns a RTCDtlsTransport object representing the DTLS transport used for the transmission and receipt of data packets.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSctpTransport: transport property" + } + ], + "rtcsctptransport-interface": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSctpTransport.json", + "name": "RTCSctpTransport", + "slug": "API/RTCSctpTransport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport", + "summary": "The RTCSctpTransport interface provides information which describes a Stream Control Transmission Protocol (SCTP) transport. This provides information about limitations of the transport, but also provides a way to access the underlying Datagram Transport Layer Security (DTLS) transport over which SCTP packets for all of an RTCPeerConnection's data channels are sent and received.", + "support": { + "chrome": { + "version_added": "76" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "113" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "15.4" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSctpTransport" + } + ], + "dom-rtcsessiondescription-sdp": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSessionDescription.json", + "name": "sdp", + "slug": "API/RTCSessionDescription/sdp", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/sdp", + "summary": "The property RTCSessionDescription.sdp is a read-only string containing the SDP which describes the session.", + "support": { + "chrome": { + "version_added": "23" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "15" + }, + "firefox": { + "version_added": "22" + }, + "firefox_android": { + "version_added": "24" + }, + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSessionDescription: sdp property" + } + ], + "dom-rtcsessiondescription-tojson": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSessionDescription.json", + "name": "toJSON", + "slug": "API/RTCSessionDescription/toJSON", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/toJSON", + "summary": "The RTCSessionDescription.toJSON() method generates a JSON description of the object. Both properties, type and sdp, are contained in the generated JSON.", + "support": { + "chrome": { + "version_added": "43" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "15" + }, + "firefox": { + "version_added": "24" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCSessionDescription: toJSON() method" + } + ], + "dom-rtcsessiondescription-type": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCSessionDescription.json", + "name": "type", + "slug": "API/RTCSessionDescription/type", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/type", + "summary": "The property RTCSessionDescription.type is a read-only string value which describes the description's type.", + "support": { + "chrome": { + "version_added": "23" }, "chrome_android": "mirror", "edge": { @@ -7551,7 +8155,7 @@ "version_added": "79" } }, - "title": "RTCSessionDescription.type" + "title": "RTCSessionDescription: type property" } ], "rtcsessiondescription-class": [ @@ -7611,6 +8215,242 @@ "title": "RTCSessionDescription" } ], + "dom-rtcstatsreport": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCStatsReport.json", + "name": "entries", + "slug": "API/RTCStatsReport/entries", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/entries", + "summary": "The entries() method of the RTCStatsReport interface returns a new iterator object that can be used to iterate through the key/value pairs for each element in the RTCStatsReport object, in insertion order.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "48" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCStatsReport: entries() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCStatsReport.json", + "name": "forEach", + "slug": "API/RTCStatsReport/forEach", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/forEach", + "summary": "The forEach() method of the RTCStatsReport interface executes a provided function once for each key/value pair in the RTCStatsReport object, in insertion order.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "27" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCStatsReport: forEach() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCStatsReport.json", + "name": "get", + "slug": "API/RTCStatsReport/get", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/get", + "summary": "The get() method of the RTCStatsReport interface returns a specified element from an RTCStatsReport.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "27" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCStatsReport: get() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCStatsReport.json", + "name": "has", + "slug": "API/RTCStatsReport/has", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/has", + "summary": "The has() method of the RTCStatsReport interface returns a boolean indicating whether a report contains a statistics dictionary with the specified id.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "27" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCStatsReport: has() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCStatsReport.json", + "name": "keys", + "slug": "API/RTCStatsReport/keys", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/keys", + "summary": "The keys() method of the RTCStatsReport interface returns a new iterator object that can be used to iterate through the keys for each element in the RTCStatsReport object, in insertion order.", + "support": { + "chrome": { + "version_added": "58" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "48" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCStatsReport: keys() method" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/RTCStatsReport.json", + "name": "size", + "slug": "API/RTCStatsReport/size", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/size", + "summary": "The size read-only property of the RTCStatsReport interface returns the number of items in the current report.", + "support": { + "chrome": { + "version_added": "59" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "48" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "11" + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "RTCStatsReport: size property" + } + ], "rtcstatsreport-object": [ { "engines": [ @@ -7622,7 +8462,7 @@ "name": "RTCStatsReport", "slug": "API/RTCStatsReport", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport", - "summary": "The RTCStatsReport interface provides a statistics report obtained by calling one of the RTCPeerConnection.getStats(), RTCRtpReceiver.getStats(), and RTCRtpSender.getStats() methods.", + "summary": "The RTCStatsReport interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.", "support": { "chrome": { "version_added": "58" @@ -7690,7 +8530,7 @@ "version_added": "79" } }, - "title": "RTCTrackEvent.receiver" + "title": "RTCTrackEvent: receiver property" } ], "dom-rtctrackevent-streams": [ @@ -7733,7 +8573,7 @@ "version_added": "79" } }, - "title": "RTCTrackEvent.streams" + "title": "RTCTrackEvent: streams property" } ], "dom-rtctrackevent-track": [ @@ -7776,7 +8616,7 @@ "version_added": "79" } }, - "title": "RTCTrackEvent.track" + "title": "RTCTrackEvent: track property" } ], "dom-trackevent-transceiver": [ @@ -7823,7 +8663,7 @@ "version_added": "79" } }, - "title": "RTCTrackEvent.transceiver" + "title": "RTCTrackEvent: transceiver property" } ], "dom-rtctrackevent": [ diff --git a/bikeshed/spec-data/readonly/mdn/websockets.json b/bikeshed/spec-data/readonly/mdn/websockets.json index 44cfe79dcf..347aba604d 100644 --- a/bikeshed/spec-data/readonly/mdn/websockets.json +++ b/bikeshed/spec-data/readonly/mdn/websockets.json @@ -46,7 +46,7 @@ "version_added": "79" } }, - "title": "CloseEvent()" + "title": "CloseEvent: CloseEvent() constructor" } ], "ref-for-dom-closeevent-code②": [ @@ -96,7 +96,7 @@ "version_added": "79" } }, - "title": "CloseEvent.code" + "title": "CloseEvent: code property" } ], "ref-for-dom-closeevent-reason②": [ @@ -146,7 +146,7 @@ "version_added": "79" } }, - "title": "CloseEvent.reason" + "title": "CloseEvent: reason property" } ], "ref-for-dom-closeevent-wasclean②": [ @@ -163,7 +163,7 @@ "summary": "The wasClean read-only property of the CloseEvent interface returns true if the connection closed cleanly.", "support": { "chrome": { - "version_added": "13" + "version_added": "15" }, "chrome_android": "mirror", "deno": { @@ -196,7 +196,7 @@ "version_added": "79" } }, - "title": "CloseEvent.wasClean" + "title": "CloseEvent: wasClean property" } ], "the-closeevent-interface": [ @@ -213,7 +213,7 @@ "summary": "A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute.", "support": { "chrome": { - "version_added": "13" + "version_added": "15" }, "chrome_android": "mirror", "deno": { @@ -269,7 +269,7 @@ "summary": "The WebSocket() constructor returns a new WebSocket object.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -309,7 +309,7 @@ "version_added": "79" } }, - "title": "WebSocket()" + "title": "WebSocket: WebSocket() constructor" } ], "ref-for-dom-websocket-binarytype①": [ @@ -359,7 +359,7 @@ "version_added": "79" } }, - "title": "WebSocket.binaryType" + "title": "WebSocket: binaryType property" } ], "ref-for-dom-websocket-bufferedamount①": [ @@ -376,7 +376,7 @@ "summary": "The WebSocket.bufferedAmount read-only property returns the number of bytes of data that have been queued using calls to send() but not yet transmitted to the network. This value resets to zero once all queued data has been sent. This value does not reset to zero when the connection is closed; if you keep calling send(), this will continue to climb.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -409,7 +409,7 @@ "version_added": "79" } }, - "title": "WebSocket.bufferedAmount" + "title": "WebSocket: bufferedAmount property" } ], "ref-for-dom-websocket-close①": [ @@ -426,7 +426,7 @@ "summary": "The WebSocket.close() method closes the WebSocket connection or connection attempt, if any. If the connection is already CLOSED, this method does nothing.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -459,7 +459,7 @@ "version_added": "79" } }, - "title": "WebSocket.close()" + "title": "WebSocket: close() method" } ], "dom-websocket-onclose": [ @@ -476,7 +476,7 @@ "summary": "The close event is fired when a connection with a WebSocket is closed.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -613,7 +613,7 @@ "version_added": "79" } }, - "title": "WebSocket.extensions" + "title": "WebSocket: extensions property" } ], "dom-websocket-onmessage": [ @@ -630,7 +630,7 @@ "summary": "The message event is fired when data is received through a WebSocket.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -682,7 +682,7 @@ "summary": "The open event is fired when a connection with a WebSocket is opened.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -767,7 +767,7 @@ "version_added": "79" } }, - "title": "WebSocket.protocol" + "title": "WebSocket: protocol property" } ], "ref-for-dom-websocket-readystate①": [ @@ -784,7 +784,7 @@ "summary": "The WebSocket.readyState read-only property returns the current state of the WebSocket connection.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -817,7 +817,7 @@ "version_added": "79" } }, - "title": "WebSocket.readyState" + "title": "WebSocket: readyState property" } ], "ref-for-dom-websocket-send①": [ @@ -834,7 +834,7 @@ "summary": "The WebSocket.send() method enqueues the specified data to be transmitted to the server over the WebSocket connection, increasing the value of bufferedAmount by the number of bytes needed to contain the data. If the data can't be sent (for example, because it needs to be buffered but the buffer is full), the socket is closed automatically. The browser will throw an exception if you call send() when the connection is in the CONNECTING state. If you call send() when the connection is in the CLOSING or CLOSED states, the browser will silently discard the data.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { @@ -885,7 +885,7 @@ "version_added": "79" } }, - "title": "WebSocket.send()" + "title": "WebSocket: send() method" } ], "ref-for-dom-websocket-url①": [ @@ -935,7 +935,7 @@ "version_added": "79" } }, - "title": "WebSocket.url" + "title": "WebSocket: url property" } ], "the-websocket-interface": [ @@ -952,7 +952,7 @@ "summary": "The WebSocket object provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection.", "support": { "chrome": { - "version_added": "4" + "version_added": "5" }, "chrome_android": "mirror", "deno": { diff --git a/bikeshed/spec-data/readonly/mdn/webtransport.json b/bikeshed/spec-data/readonly/mdn/webtransport.json new file mode 100644 index 0000000000..a1220eafe4 --- /dev/null +++ b/bikeshed/spec-data/readonly/mdn/webtransport.json @@ -0,0 +1,1200 @@ +{ + "dom-webtransport-webtransport": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "WebTransport", + "slug": "API/WebTransport/WebTransport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/WebTransport", + "summary": "The WebTransport() constructor creates a new WebTransport object instance.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: WebTransport() constructor" + } + ], + "dom-webtransport-close": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "close", + "slug": "API/WebTransport/close", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/close", + "summary": "The close() method of the WebTransport interface closes an ongoing WebTransport session.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: close() method" + } + ], + "dom-webtransport-closed": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "closed", + "slug": "API/WebTransport/closed", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/closed", + "summary": "The closed read-only property of the WebTransport interface returns a promise that resolves when the transport is closed.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: closed property" + } + ], + "dom-webtransport-congestioncontrol": [ + { + "engines": [ + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "congestionControl", + "slug": "API/WebTransport/congestionControl", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/congestionControl", + "summary": "The congestionControl read-only property of the WebTransport interface indicates the application's preference for either high throughput or low-latency when sending data.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "WebTransport: congestionControl property" + } + ], + "dom-webtransport-createbidirectionalstream": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "createBidirectionalStream", + "slug": "API/WebTransport/createBidirectionalStream", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/createBidirectionalStream", + "summary": "The createBidirectionalStream() method of the WebTransport interface asynchronously opens and returns a bidirectional stream.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: createBidirectionalStream() method" + } + ], + "dom-webtransport-createunidirectionalstream": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "createUnidirectionalStream", + "slug": "API/WebTransport/createUnidirectionalStream", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/createUnidirectionalStream", + "summary": "The createUnidirectionalStream() method of the WebTransport interface asynchronously opens a unidirectional stream.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: createUnidirectionalStream() method" + } + ], + "dom-webtransport-datagrams": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "datagrams", + "slug": "API/WebTransport/datagrams", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/datagrams", + "summary": "The datagrams read-only property of the WebTransport interface returns a WebTransportDatagramDuplexStream instance that can be used to send and receive datagrams — unreliable data transmission.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: datagrams property" + } + ], + "dom-webtransport-getstats": [ + { + "engines": [], + "partial": [ + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "getStats", + "slug": "API/WebTransport/getStats", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/getStats", + "summary": "The getStats() method of the WebTransport interface asynchronously returns an object containing HTTP/3 connection statistics.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114", + "partial_implementation": true, + "notes": "Method is defined but throws a not-implemented error." + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "WebTransport: getStats() method" + } + ], + "dom-webtransport-incomingbidirectionalstreams": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "incomingBidirectionalStreams", + "slug": "API/WebTransport/incomingBidirectionalStreams", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/incomingBidirectionalStreams", + "summary": "The incomingBidirectionalStreams read-only property of the WebTransport interface represents one or more bidirectional streams opened by the server. Returns a ReadableStream of WebTransportBidirectionalStream objects. Each one can be used to reliably read data from the server and write data back to it.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: incomingBidirectionalStreams property" + } + ], + "dom-webtransport-incomingunidirectionalstreams": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "incomingUnidirectionalStreams", + "slug": "API/WebTransport/incomingUnidirectionalStreams", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/incomingUnidirectionalStreams", + "summary": "The incomingUnidirectionalStreams read-only property of the WebTransport interface represents one or more unidirectional streams opened by the server. Returns a ReadableStream of WebTransportReceiveStream objects. Each one can be used to reliably read data from the server.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: incomingUnidirectionalStreams property" + } + ], + "dom-webtransport-ready": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "ready", + "slug": "API/WebTransport/ready", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/ready", + "summary": "The ready read-only property of the WebTransport interface returns a promise that resolves when the transport is ready to use.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport: ready property" + } + ], + "dom-webtransport-reliability": [ + { + "engines": [ + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "reliability", + "slug": "API/WebTransport/reliability", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport/reliability", + "summary": "The reliability read-only property of the WebTransport interface indicates whether the connection supports reliable transports only, or whether it also supports unreliable transports (such as UDP).", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "WebTransport: reliability property" + } + ], + "web-transport": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransport.json", + "name": "WebTransport", + "slug": "API/WebTransport", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransport", + "summary": "The WebTransport interface of the WebTransport API provides functionality to enable a user agent to connect to an HTTP/3 server, initiate reliable and unreliable transport in either or both directions, and close the connection once it is no longer needed.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransport" + } + ], + "dom-webtransportbidirectionalstream-readable": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportBidirectionalStream.json", + "name": "readable", + "slug": "API/WebTransportBidirectionalStream/readable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportBidirectionalStream/readable", + "summary": "The readable read-only property of the WebTransportBidirectionalStream interface returns a ReadableStream instance that can be used to reliably read incoming data.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportBidirectionalStream: readable property" + } + ], + "dom-webtransportbidirectionalstream-writable": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportBidirectionalStream.json", + "name": "writable", + "slug": "API/WebTransportBidirectionalStream/writable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportBidirectionalStream/writable", + "summary": "The writable read-only property of the WebTransportBidirectionalStream interface returns a WritableStream instance that can be used to write outgoing data.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportBidirectionalStream: writable property" + } + ], + "webtransportbidirectionalstream": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportBidirectionalStream.json", + "name": "WebTransportBidirectionalStream", + "slug": "API/WebTransportBidirectionalStream", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportBidirectionalStream", + "summary": "The WebTransportBidirectionalStream interface of the WebTransport API represents a bidirectional stream created by a server or a client that can be used for reliable transport. Provides access to a ReadableStream for reading incoming data, and a WritableStream for writing outgoing data.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportBidirectionalStream" + } + ], + "dom-webtransportdatagramduplexstream-incominghighwatermark": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "incomingHighWaterMark", + "slug": "API/WebTransportDatagramDuplexStream/incomingHighWaterMark", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark", + "summary": "The incomingHighWaterMark property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: incomingHighWaterMark property" + } + ], + "dom-webtransportdatagramduplexstream-incomingmaxage": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "incomingMaxAge", + "slug": "API/WebTransportDatagramDuplexStream/incomingMaxAge", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/incomingMaxAge", + "summary": "The incomingMaxAge property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: incomingMaxAge property" + } + ], + "dom-webtransportdatagramduplexstream-maxdatagramsize": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "maxDatagramSize", + "slug": "API/WebTransportDatagramDuplexStream/maxDatagramSize", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize", + "summary": "The maxDatagramSize read-only property of the WebTransportDatagramDuplexStream interface returns the maximum allowable size of outgoing datagrams, in bytes, that can be written to writable.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: maxDatagramSize property" + } + ], + "dom-webtransportdatagramduplexstream-outgoinghighwatermark": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "outgoingHighWaterMark", + "slug": "API/WebTransportDatagramDuplexStream/outgoingHighWaterMark", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark", + "summary": "The outgoingHighWaterMark property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: outgoingHighWaterMark property" + } + ], + "dom-webtransportdatagramduplexstream-outgoingmaxage": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "outgoingMaxAge", + "slug": "API/WebTransportDatagramDuplexStream/outgoingMaxAge", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/outgoingMaxAge", + "summary": "The outgoingMaxAge property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: outgoingMaxAge property" + } + ], + "dom-webtransportdatagramduplexstream-readable": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "readable", + "slug": "API/WebTransportDatagramDuplexStream/readable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/readable", + "summary": "The readable read-only property of the WebTransportDatagramDuplexStream interface returns a ReadableStream instance that can be used to unreliably read incoming datagrams from the stream.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: readable property" + } + ], + "dom-webtransportdatagramduplexstream-writable": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "writable", + "slug": "API/WebTransportDatagramDuplexStream/writable", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream/writable", + "summary": "The writable read-only property of the WebTransportDatagramDuplexStream interface returns a WritableStream instance that can be used to unreliably write outgoing datagrams to the stream.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream: writable property" + } + ], + "duplex-stream": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportDatagramDuplexStream.json", + "name": "WebTransportDatagramDuplexStream", + "slug": "API/WebTransportDatagramDuplexStream", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportDatagramDuplexStream", + "summary": "The WebTransportDatagramDuplexStream interface of the WebTransport API represents a duplex stream that can be used for unreliable transport of datagrams between client and server. Provides access to a ReadableStream for reading incoming datagrams, a WritableStream for writing outgoing datagrams, and various settings and statistics related to the stream.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportDatagramDuplexStream" + } + ], + "dom-webtransporterror-webtransporterror": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportError.json", + "name": "WebTransportError", + "slug": "API/WebTransportError/WebTransportError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportError/WebTransportError", + "summary": "The WebTransportError() constructor creates a new WebTransportError object instance.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportError: WebTransportError() constructor" + } + ], + "dom-webtransporterror-source": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportError.json", + "name": "source", + "slug": "API/WebTransportError/source", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportError/source", + "summary": "The source read-only property of the WebTransportError interface returns an enumerated value indicating the source of the error.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportError: source property" + } + ], + "dom-webtransporterror-streamerrorcode": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportError.json", + "name": "streamErrorCode", + "slug": "API/WebTransportError/streamErrorCode", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportError/streamErrorCode", + "summary": "The streamErrorCode read-only property of the WebTransportError interface returns a number in the range 0-255 indicating the application protocol error code for this error, or null if one is not available.", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportError: streamErrorCode property" + } + ], + "webtransporterror": [ + { + "engines": [ + "blink", + "gecko" + ], + "filename": "api/WebTransportError.json", + "name": "WebTransportError", + "slug": "API/WebTransportError", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportError", + "summary": "The WebTransportError interface of the WebTransport API represents an error related to the API, which can arise from server errors, network connection problems, or client-initiated abort operations (for example, arising from a WritableStream.abort() call).", + "support": { + "chrome": { + "version_added": "97" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "97" + } + }, + "title": "WebTransportError" + } + ], + "dom-webtransportreceivestream-getstats": [ + { + "engines": [ + "gecko" + ], + "filename": "api/WebTransportReceiveStream.json", + "name": "getStats", + "slug": "API/WebTransportReceiveStream/getStats", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportReceiveStream/getStats", + "summary": "The getStats() method of the WebTransportReceiveStream interface asynchronously returns an object containing statistics for the current stream.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "WebTransportReceiveStream: getStats() method" + } + ], + "webtransportreceivestream": [ + { + "engines": [ + "gecko" + ], + "filename": "api/WebTransportReceiveStream.json", + "name": "WebTransportReceiveStream", + "slug": "API/WebTransportReceiveStream", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebTransportReceiveStream", + "summary": "The WebTransportReceiveStream interface of the WebTransport API is a ReadableStream that can be used to read from an incoming unidirectional or bidirectional WebTransport stream from a server.", + "support": { + "chrome": { + "version_added": false + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": "114" + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": false + } + }, + "title": "WebTransportReceiveStream" + } + ] +} diff --git a/bikeshed/spec-data/readonly/mdn/webusb.json b/bikeshed/spec-data/readonly/mdn/webusb.json index 6a38042f9c..5cc80b6414 100644 --- a/bikeshed/spec-data/readonly/mdn/webusb.json +++ b/bikeshed/spec-data/readonly/mdn/webusb.json @@ -90,7 +90,7 @@ "name": "disconnect_event", "slug": "API/USB/disconnect_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USB/disconnect_event", - "summary": "The connect event of the USB interface is fired whenever a paired device is disconnected.", + "summary": "The disconnect event of the USB interface is fired whenever a paired device is disconnected.", "support": { "chrome": { "version_added": "61" @@ -131,7 +131,7 @@ "name": "disconnect_event", "slug": "API/USB/disconnect_event", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USB/disconnect_event", - "summary": "The connect event of the USB interface is fired whenever a paired device is disconnected.", + "summary": "The disconnect event of the USB interface is fired whenever a paired device is disconnected.", "support": { "chrome": { "version_added": "61" @@ -201,7 +201,7 @@ "version_added": "79" } }, - "title": "USB.getDevices()" + "title": "USB: getDevices() method" } ], "ref-for-dom-usb-requestdevice④": [ @@ -242,7 +242,7 @@ "version_added": "79" } }, - "title": "USB.requestDevice()" + "title": "USB: requestDevice() method" } ], "usb": [ @@ -367,7 +367,7 @@ "version_added": "79" } }, - "title": "USBConfiguration()" + "title": "USBConfiguration: USBConfiguration() constructor" } ], "ref-for-dom-usbconfiguration-configurationname": [ @@ -408,7 +408,7 @@ "version_added": "79" } }, - "title": "USBConfiguration.configurationName" + "title": "USBConfiguration: configurationName property" } ], "ref-for-dom-usbconfiguration-configurationvalue": [ @@ -449,7 +449,7 @@ "version_added": "79" } }, - "title": "USBConfiguration.configurationValue" + "title": "USBConfiguration: configurationValue property" } ], "ref-for-dom-usbconfiguration-interfaces": [ @@ -490,7 +490,7 @@ "version_added": "79" } }, - "title": "USBConfiguration.interfaces" + "title": "USBConfiguration: interfaces property" } ], "usbconfiguration-interface": [ @@ -573,7 +573,7 @@ "version_added": "79" } }, - "title": "USBConnectionEvent()" + "title": "USBConnectionEvent: USBConnectionEvent() constructor" } ], "dom-usbconnectionevent-device": [ @@ -614,7 +614,7 @@ "version_added": "79" } }, - "title": "USBConnectionEvent.device" + "title": "USBConnectionEvent: device property" } ], "usbconnectionevent": [ @@ -697,7 +697,7 @@ "version_added": "79" } }, - "title": "USBDevice.claimInterface()" + "title": "USBDevice: claimInterface() method" } ], "ref-for-dom-usbdevice-clearhalt①": [ @@ -738,7 +738,7 @@ "version_added": "79" } }, - "title": "USBDevice.clearHalt()" + "title": "USBDevice: clearHalt() method" } ], "ref-for-dom-usbdevice-close": [ @@ -779,7 +779,7 @@ "version_added": "79" } }, - "title": "USBDevice.close()" + "title": "USBDevice: close() method" } ], "ref-for-dom-usbdevice-configuration①": [ @@ -820,7 +820,7 @@ "version_added": "79" } }, - "title": "USBDevice.configuration" + "title": "USBDevice: configuration property" } ], "ref-for-dom-usbdevice-configurations①": [ @@ -861,7 +861,7 @@ "version_added": "79" } }, - "title": "USBDevice.configurations" + "title": "USBDevice: configurations property" } ], "ref-for-dom-usbdevice-controltransferin": [ @@ -873,7 +873,7 @@ "name": "controlTransferIn", "slug": "API/USBDevice/controlTransferIn", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/controlTransferIn", - "summary": "The controlTransferIn() method of the USBDevice interface returns a promise that resolves with a USBInTransferResult when the result of a command or status request has been received from the USB device.", + "summary": "The controlTransferIn() method of the USBDevice interface returns a Promise that resolves with a USBInTransferResult when a command or status request has been transmitted to (received by) the USB device.", "support": { "chrome": { "version_added": "61" @@ -902,7 +902,7 @@ "version_added": "79" } }, - "title": "USBDevice.controlTransferIn()" + "title": "USBDevice: controlTransferIn() method" } ], "ref-for-dom-usbdevice-controltransferout①": [ @@ -914,7 +914,7 @@ "name": "controlTransferOut", "slug": "API/USBDevice/controlTransferOut", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/controlTransferOut", - "summary": "The controlTransferOut() method of the USBDevice interface returns a promise that resolves with a USBOutTransferResult when a command or status operation has been transmitted to the USB device.", + "summary": "The controlTransferOut() method of the USBDevice interface returns a Promise that resolves with a USBOutTransferResult when a command or status operation has been transmitted from the USB device.", "support": { "chrome": { "version_added": "61" @@ -943,7 +943,7 @@ "version_added": "79" } }, - "title": "USBDevice.controlTransferOut()" + "title": "USBDevice: controlTransferOut() method" } ], "ref-for-dom-usbdevice-deviceclass": [ @@ -984,7 +984,7 @@ "version_added": "79" } }, - "title": "USBDevice.deviceClass" + "title": "USBDevice: deviceClass property" } ], "ref-for-dom-usbdevice-deviceprotocol": [ @@ -1025,7 +1025,7 @@ "version_added": "79" } }, - "title": "USBDevice.deviceProtocol" + "title": "USBDevice: deviceProtocol property" } ], "ref-for-dom-usbdevice-devicesubclass": [ @@ -1066,7 +1066,7 @@ "version_added": "79" } }, - "title": "USBDevice.deviceSubclass" + "title": "USBDevice: deviceSubclass property" } ], "ref-for-dom-usbdevice-deviceversionmajor": [ @@ -1107,7 +1107,7 @@ "version_added": "79" } }, - "title": "USBDevice.deviceVersionMajor" + "title": "USBDevice: deviceVersionMajor property" } ], "ref-for-dom-usbdevice-deviceversionminor": [ @@ -1148,7 +1148,7 @@ "version_added": "79" } }, - "title": "USBDevice.deviceVersionMinor" + "title": "USBDevice: deviceVersionMinor property" } ], "ref-for-dom-usbdevice-deviceversionsubminor": [ @@ -1189,7 +1189,48 @@ "version_added": "79" } }, - "title": "USBDevice.deviceVersionSubminor" + "title": "USBDevice: deviceVersionSubminor property" + } + ], + "dom-usbdevice-forget": [ + { + "engines": [ + "blink" + ], + "filename": "api/USBDevice.json", + "name": "forget", + "slug": "API/USBDevice/forget", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/forget", + "summary": "The forget() method of the USBDevice interface returns a Promise that resolves when all pending operations are aborted, all open interfaces are released, the device session has ended, and the permission is reset.", + "support": { + "chrome": { + "version_added": "101" + }, + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": { + "version_added": "101" + } + }, + "title": "USBDevice: forget() method" } ], "ref-for-dom-usbdevice-isochronoustransferin": [ @@ -1201,7 +1242,7 @@ "name": "isochronousTransferIn", "slug": "API/USBDevice/isochronousTransferIn", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/isochronousTransferIn", - "summary": "The isochronousTransferIn() method of the USBDevice interface returns a promise that resolves with a USBIsochronousInTransferResult when time sensitive information has been transmitted received from the USB device.", + "summary": "The isochronousTransferIn() method of the USBDevice interface returns a Promise that resolves with a USBIsochronousInTransferResult when time sensitive information has been transmitted to (received by) the USB device.", "support": { "chrome": { "version_added": "61" @@ -1230,7 +1271,7 @@ "version_added": "79" } }, - "title": "USBDevice.isochronousTransferIn()" + "title": "USBDevice: isochronousTransferIn() method" } ], "ref-for-dom-usbdevice-isochronoustransferout": [ @@ -1242,7 +1283,7 @@ "name": "isochronousTransferOut", "slug": "API/USBDevice/isochronousTransferOut", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/isochronousTransferOut", - "summary": "The isochronousTransferOut() method of the USBDevice interface returns a promise that resolves with a USBIsochronousOutTransferResult when time sensitive information has been transmitted to the USB device.", + "summary": "The isochronousTransferOut() method of the USBDevice interface returns a Promise that resolves with a USBIsochronousOutTransferResult when time sensitive information has been transmitted from the USB device.", "support": { "chrome": { "version_added": "61" @@ -1271,7 +1312,7 @@ "version_added": "79" } }, - "title": "USBDevice.isochronousTransferOut()" + "title": "USBDevice: isochronousTransferOut() method" } ], "ref-for-dom-usbdevice-manufacturername": [ @@ -1312,7 +1353,7 @@ "version_added": "79" } }, - "title": "USBDevice.manufacturerName" + "title": "USBDevice: manufacturerName property" } ], "ref-for-dom-usbdevice-open①": [ @@ -1353,7 +1394,7 @@ "version_added": "79" } }, - "title": "USBDevice.open()" + "title": "USBDevice: open() method" } ], "ref-for-dom-usbdevice-opened": [ @@ -1394,7 +1435,7 @@ "version_added": "79" } }, - "title": "USBDevice.opened" + "title": "USBDevice: opened property" } ], "ref-for-dom-usbdevice-productid": [ @@ -1435,7 +1476,7 @@ "version_added": "79" } }, - "title": "USBDevice.productId" + "title": "USBDevice: productId property" } ], "ref-for-dom-usbdevice-productname": [ @@ -1476,7 +1517,7 @@ "version_added": "79" } }, - "title": "USBDevice.productName" + "title": "USBDevice: productName property" } ], "ref-for-dom-usbdevice-releaseinterface①": [ @@ -1517,7 +1558,7 @@ "version_added": "79" } }, - "title": "USBDevice.releaseInterface()" + "title": "USBDevice: releaseInterface() method" } ], "ref-for-dom-usbdevice-reset": [ @@ -1558,7 +1599,7 @@ "version_added": "79" } }, - "title": "USBDevice.reset()" + "title": "USBDevice: reset() method" } ], "ref-for-dom-usbdevice-selectalternateinterface": [ @@ -1599,7 +1640,7 @@ "version_added": "79" } }, - "title": "USBDevice.selectAlternateInterface()" + "title": "USBDevice: selectAlternateInterface() method" } ], "dom-usbdevice-selectconfiguration": [ @@ -1640,7 +1681,7 @@ "version_added": "79" } }, - "title": "USBDevice.selectConfiguration()" + "title": "USBDevice: selectConfiguration() method" } ], "ref-for-dom-usbdevice-serialnumber": [ @@ -1681,7 +1722,7 @@ "version_added": "79" } }, - "title": "USBDevice.serialNumber" + "title": "USBDevice: serialNumber property" } ], "ref-for-dom-usbdevice-transferin①": [ @@ -1722,7 +1763,7 @@ "version_added": "79" } }, - "title": "USBDevice.transferIn()" + "title": "USBDevice: transferIn() method" } ], "ref-for-dom-usbdevice-transferout": [ @@ -1763,7 +1804,7 @@ "version_added": "79" } }, - "title": "USBDevice.transferOut()" + "title": "USBDevice: transferOut() method" } ], "ref-for-dom-usbdevice-usbversionmajor": [ @@ -1804,7 +1845,7 @@ "version_added": "79" } }, - "title": "USBDevice.usbVersionMajor" + "title": "USBDevice: usbVersionMajor property" } ], "dom-usbdevice-usbversionminor": [ @@ -1845,7 +1886,7 @@ "version_added": "79" } }, - "title": "USBDevice.usbVersionMinor" + "title": "USBDevice: usbVersionMinor property" } ], "ref-for-dom-usbdevice-usbversionsubminor": [ @@ -1886,7 +1927,7 @@ "version_added": "79" } }, - "title": "USBDevice.usbVersionSubminor" + "title": "USBDevice: usbVersionSubminor property" } ], "ref-for-dom-usbdevice-vendorid": [ @@ -1927,7 +1968,7 @@ "version_added": "79" } }, - "title": "USBDevice.vendorId" + "title": "USBDevice: vendorId property" } ], "device-usage": [ @@ -2317,7 +2358,7 @@ "name": "usb", "slug": "HTTP/Headers/Feature-Policy/usb", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/usb", - "summary": "The HTTP Feature-Policy header usb directive controls whether the current document is allowed to use the WebUSB API.", + "summary": "The HTTP Permissions-Policy header usb directive controls whether the current document is allowed to use the WebUSB API.", "support": { "chrome": { "version_added": "60" @@ -2346,7 +2387,58 @@ "version_added": "79" } }, - "title": "Feature-Policy: usb" + "title": "Permissions-Policy: usb" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "usb", + "slug": "HTTP/Headers/Permissions-Policy/usb", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/usb", + "summary": "The HTTP Permissions-Policy header usb directive controls whether the current document is allowed to use the WebUSB API.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "60", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: usb" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webvtt.json b/bikeshed/spec-data/readonly/mdn/webvtt.json index d0e97bb1c0..2bad709c6c 100644 --- a/bikeshed/spec-data/readonly/mdn/webvtt.json +++ b/bikeshed/spec-data/readonly/mdn/webvtt.json @@ -37,7 +37,7 @@ "version_added": "79" } }, - "title": "VTTCue()" + "title": "VTTCue: VTTCue() constructor" } ], "dom-vttcue-align": [ @@ -84,7 +84,7 @@ "version_added": "79" } }, - "title": "VTTCue.align" + "title": "VTTCue: align property" } ], "dom-vttcue-getcueashtml": [ @@ -133,7 +133,7 @@ "version_added": "79" } }, - "title": "VTTCue.getCueAsHTML()" + "title": "VTTCue: getCueAsHTML() method" } ], "dom-vttcue-line": [ @@ -180,7 +180,7 @@ "version_added": "79" } }, - "title": "VTTCue.line" + "title": "VTTCue: line property" } ], "dom-vttcue-linealign": [ @@ -222,7 +222,7 @@ "notes": "See <a href='https://crbug.com/633690'>bug 633690</a>." } }, - "title": "VTTCue.lineAlign" + "title": "VTTCue: lineAlign property" } ], "dom-vttcue-position": [ @@ -269,7 +269,7 @@ "version_added": "79" } }, - "title": "VTTCue.position" + "title": "VTTCue: position property" } ], "dom-vttcue-positionalign": [ @@ -311,7 +311,7 @@ "notes": "See <a href='https://crbug.com/633690'>bug 633690</a>." } }, - "title": "VTTCue.positionAlign" + "title": "VTTCue: positionAlign property" } ], "dom-vttcue-region": [ @@ -351,7 +351,7 @@ "version_added": false } }, - "title": "VTTCue.region" + "title": "VTTCue: region property" } ], "dom-vttcue-size": [ @@ -398,7 +398,7 @@ "version_added": "79" } }, - "title": "VTTCue.size" + "title": "VTTCue: size property" } ], "dom-vttcue-snaptolines": [ @@ -445,7 +445,7 @@ "version_added": "79" } }, - "title": "VTTCue.snapToLines" + "title": "VTTCue: snapToLines property" } ], "dom-vttcue-text": [ @@ -494,7 +494,7 @@ "version_added": "79" } }, - "title": "VTTCue.text" + "title": "VTTCue: text property" } ], "dom-vttcue-vertical": [ @@ -537,7 +537,7 @@ "version_added": "79" } }, - "title": "VTTCue.vertical" + "title": "VTTCue: vertical property" } ], "the-vttcue-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/webxr-anchors.json b/bikeshed/spec-data/readonly/mdn/webxr-anchors.json index 58a12257d7..8102e06ede 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-anchors.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-anchors.json @@ -37,7 +37,7 @@ "version_added": "85" } }, - "title": "XRAnchor.anchorSpace" + "title": "XRAnchor: anchorSpace property" } ], "dom-xranchor-delete": [ @@ -78,7 +78,7 @@ "version_added": "85" } }, - "title": "XRAnchor.delete()" + "title": "XRAnchor: delete() method" } ], "xr-anchor": [ @@ -131,7 +131,7 @@ "name": "XRAnchorSet", "slug": "API/XRAnchorSet", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRAnchorSet", - "summary": "The XRAnchorSet interface exposes a collection of anchors. It is returned by XRFrame.trackedAnchors and is a Set-like object.", + "summary": "The XRAnchorSet interface exposes a collection of anchors. Its instances are returned by XRFrame.trackedAnchors and are Set-like objects.", "support": { "chrome": { "version_added": "85" @@ -201,7 +201,7 @@ "version_added": "85" } }, - "title": "XRFrame.createAnchor()" + "title": "XRFrame: createAnchor() method" } ], "dom-xrframe-trackedanchors": [ @@ -242,7 +242,7 @@ "version_added": "85" } }, - "title": "XRFrame.trackedAnchors" + "title": "XRFrame: trackedAnchors property" } ], "dom-xrhittestresult-createanchor": [ @@ -254,7 +254,7 @@ "name": "createAnchor", "slug": "API/XRHitTestResult/createAnchor", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRHitTestResult/createAnchor", - "summary": "The createAnchor() method of the XRHitTestResult interface creates an XRAnchor from a hit test result that is attached to a real world object.", + "summary": "The createAnchor() method of the XRHitTestResult interface creates an XRAnchor from a hit test result that is attached to a real-world object.", "support": { "chrome": { "version_added": "85" @@ -283,7 +283,7 @@ "version_added": "85" } }, - "title": "XRHitTestResult.createAnchor()" + "title": "XRHitTestResult: createAnchor() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webxr-ar.json b/bikeshed/spec-data/readonly/mdn/webxr-ar.json index 4998515a20..76209e4f7b 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-ar.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-ar.json @@ -11,7 +11,7 @@ "summary": "The XRSession interface's read-only environmentBlendMode property identifies if, and to what degree, the computer-generated imagery is overlaid atop the real world.", "support": { "chrome": { - "version_added": "79" + "version_added": "81" }, "chrome_android": "mirror", "edge": "mirror", @@ -36,10 +36,10 @@ "version_added": false }, "edge_blink": { - "version_added": "79" + "version_added": "81" } }, - "title": "XRSession.environmentBlendMode" + "title": "XRSession: environmentBlendMode property" } ], "dom-xrsession-interactionmode": [ @@ -80,7 +80,7 @@ "version_added": "84" } }, - "title": "XRSession.interactionMode" + "title": "XRSession: interactionMode property" } ], "dom-xrview-isfirstpersonobserver": [ @@ -126,7 +126,7 @@ "notes": "Always returns <code>false</code> since no headset with first-person view is supported." } }, - "title": "XRView.isFirstPersonObserver" + "title": "XRView: isFirstPersonObserver property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webxr-depth-sensing.json b/bikeshed/spec-data/readonly/mdn/webxr-depth-sensing.json index baf7958db4..66b5053037 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-depth-sensing.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-depth-sensing.json @@ -37,7 +37,7 @@ "version_added": "90" } }, - "title": "XRCPUDepthInformation.data" + "title": "XRCPUDepthInformation: data property" } ], "dom-xrcpudepthinformation-getdepthinmeters": [ @@ -78,7 +78,7 @@ "version_added": "90" } }, - "title": "XRCPUDepthInformation.getDepthInMeters()" + "title": "XRCPUDepthInformation: getDepthInMeters() method" } ], "xr-cpu-depth-info-section": [ @@ -160,7 +160,7 @@ "version_added": "90" } }, - "title": "XRDepthInformation.height" + "title": "XRDepthInformation: height property" } ], "dom-xrdepthinformation-normdepthbufferfromnormview": [ @@ -201,7 +201,7 @@ "version_added": "90" } }, - "title": "XRDepthInformation.normDepthBufferFromNormView" + "title": "XRDepthInformation: normDepthBufferFromNormView property" } ], "dom-xrdepthinformation-rawvaluetometers": [ @@ -242,7 +242,7 @@ "version_added": "90" } }, - "title": "XRDepthInformation.rawValueToMeters" + "title": "XRDepthInformation: rawValueToMeters property" } ], "dom-xrdepthinformation-width": [ @@ -283,7 +283,7 @@ "version_added": "90" } }, - "title": "XRDepthInformation.width" + "title": "XRDepthInformation: width property" } ], "xrdepthinformation": [ @@ -365,7 +365,7 @@ "version_added": "90" } }, - "title": "XRFrame.getDepthInformation()" + "title": "XRFrame: getDepthInformation() method" } ], "dom-xrsession-depthdataformat": [ @@ -406,7 +406,7 @@ "version_added": "90" } }, - "title": "XRSession.depthDataFormat" + "title": "XRSession: depthDataFormat property" } ], "dom-xrsession-depthusage": [ @@ -447,7 +447,7 @@ "version_added": "90" } }, - "title": "XRSession.depthUsage" + "title": "XRSession: depthUsage property" } ], "dom-xrwebglbinding-getdepthinformation": [ @@ -488,7 +488,7 @@ "version_added": "90" } }, - "title": "XRWebGLBinding.getDepthInformation()" + "title": "XRWebGLBinding: getDepthInformation() method" } ], "dom-xrwebgldepthinformation-texture": [ @@ -529,7 +529,7 @@ "version_added": "90" } }, - "title": "XRWebGLDepthInformation.texture" + "title": "XRWebGLDepthInformation: texture property" } ], "xrwebgldepthinformation": [ diff --git a/bikeshed/spec-data/readonly/mdn/webxr-dom-overlays.json b/bikeshed/spec-data/readonly/mdn/webxr-dom-overlays.json index 3f86d05ca7..6d61f9e16a 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-dom-overlays.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-dom-overlays.json @@ -35,7 +35,7 @@ "version_added": "83" } }, - "title": "beforexrselect event" + "title": "Element: beforexrselect event" } ], "dom-xrsession-domoverlaystate": [ @@ -76,7 +76,7 @@ "version_added": "83" } }, - "title": "XRSession.domOverlayState" + "title": "XRSession: domOverlayState property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webxr-gamepads.json b/bikeshed/spec-data/readonly/mdn/webxr-gamepads.json index 2fd67b9d3d..b3033aa52a 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-gamepads.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-gamepads.json @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "XRInputSource.gamepad" + "title": "XRInputSource: gamepad property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webxr-hand-input.json b/bikeshed/spec-data/readonly/mdn/webxr-hand-input.json index 8f6524c0a5..9d710abbc4 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-hand-input.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-hand-input.json @@ -12,7 +12,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -35,7 +37,7 @@ "version_added": false } }, - "title": "XRFrame.fillJointRadii()" + "title": "XRFrame: fillJointRadii() method" } ], "dom-xrframe-fillposes": [ @@ -51,7 +53,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -74,7 +78,7 @@ "version_added": false } }, - "title": "XRFrame.fillPoses()" + "title": "XRFrame: fillPoses() method" } ], "dom-xrframe-getjointpose": [ @@ -90,7 +94,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -113,7 +119,7 @@ "version_added": false } }, - "title": "XRFrame.getJointPose()" + "title": "XRFrame: getJointPose() method" } ], "xrhand-interface": [ @@ -129,7 +135,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -166,7 +174,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -205,7 +215,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -228,7 +240,7 @@ "version_added": false } }, - "title": "XRInputSource.hand" + "title": "XRInputSource: hand property" } ], "dom-xrjointpose-radius": [ @@ -244,7 +256,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -267,7 +281,7 @@ "version_added": false } }, - "title": "XRJointPose.radius" + "title": "XRJointPose: radius property" } ], "xrjointpose-interface": [ @@ -283,7 +297,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -322,7 +338,9 @@ "version_added": false }, "chrome_android": "mirror", - "edge": "mirror", + "edge": { + "version_added": false + }, "firefox": { "version_added": false }, @@ -345,7 +363,7 @@ "version_added": false } }, - "title": "XRJointSpace.jointName" + "title": "XRJointSpace: jointName property" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webxr-hit-test.json b/bikeshed/spec-data/readonly/mdn/webxr-hit-test.json index fa3c8fc3b1..e31f9243a8 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-hit-test.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-hit-test.json @@ -37,7 +37,7 @@ "version_added": "81" } }, - "title": "XRFrame.getHitTestResults()" + "title": "XRFrame: getHitTestResults() method" } ], "dom-xrframe-gethittestresultsfortransientinput": [ @@ -78,7 +78,7 @@ "version_added": "81" } }, - "title": "XRFrame.getHitTestResultsForTransientInput()" + "title": "XRFrame: getHitTestResultsForTransientInput() method" } ], "dom-xrhittestresult-getpose": [ @@ -119,7 +119,7 @@ "version_added": "81" } }, - "title": "XRHitTestResult.getPose()" + "title": "XRHitTestResult: getPose() method" } ], "xr-hit-test-result-interface": [ @@ -201,7 +201,7 @@ "version_added": "81" } }, - "title": "XRHitTestSource.cancel()" + "title": "XRHitTestSource: cancel() method" } ], "hit-test-source-interface": [ @@ -283,7 +283,7 @@ "version_added": "81" } }, - "title": "XRRay()" + "title": "XRRay: XRRay() constructor" } ], "dom-xrray-direction": [ @@ -324,7 +324,7 @@ "version_added": "81" } }, - "title": "XRRay.direction" + "title": "XRRay: direction property" } ], "dom-xrray-matrix": [ @@ -365,7 +365,7 @@ "version_added": "81" } }, - "title": "XRRay.matrix" + "title": "XRRay: matrix property" } ], "dom-xrray-origin": [ @@ -406,7 +406,7 @@ "version_added": "81" } }, - "title": "XRRay.origin" + "title": "XRRay: origin property" } ], "xrray-interface": [ @@ -490,7 +490,7 @@ "version_added": "81" } }, - "title": "XRSession.requestHitTestSource()" + "title": "XRSession: requestHitTestSource() method" } ], "dom-xrsession-requesthittestsourcefortransientinput": [ @@ -531,7 +531,7 @@ "version_added": "81" } }, - "title": "XRSession.requestHitTestSourceForTransientInput()" + "title": "XRSession: requestHitTestSourceForTransientInput() method" } ], "dom-xrtransientinputhittestresult-inputsource": [ @@ -572,7 +572,7 @@ "version_added": "81" } }, - "title": "XRTransientInputHitTestResult.inputSource" + "title": "XRTransientInputHitTestResult: inputSource property" } ], "dom-xrtransientinputhittestresult-results": [ @@ -613,7 +613,7 @@ "version_added": "81" } }, - "title": "XRTransientInputHitTestResult.results" + "title": "XRTransientInputHitTestResult: results property" } ], "xr-transient-input-hit-test-result-interface": [ @@ -695,7 +695,7 @@ "version_added": "81" } }, - "title": "XRTransientInputHitTestSource.cancel()" + "title": "XRTransientInputHitTestSource: cancel() method" } ], "transient-input-hit-test-source-interface": [ diff --git a/bikeshed/spec-data/readonly/mdn/webxr-layers.json b/bikeshed/spec-data/readonly/mdn/webxr-layers.json index a7222075ff..11807c0ecd 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-layers.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-layers.json @@ -35,46 +35,7 @@ "version_added": false } }, - "title": "XRCompositionLayer.blendTextureSourceAlpha" - } - ], - "dom-xrcompositionlayer-chromaticaberrationcorrection": [ - { - "engines": [], - "filename": "api/XRCompositionLayer.json", - "name": "chromaticAberrationCorrection", - "slug": "API/XRCompositionLayer/chromaticAberrationCorrection", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRCompositionLayer/chromaticAberrationCorrection", - "summary": "The chromaticAberrationCorrection property of the XRCompositionLayer interface is a boolean enabling the layer's optical chromatic aberration correction.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": { - "version_added": "16.1" - }, - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "XRCompositionLayer.chromaticAberrationCorrection" + "title": "XRCompositionLayer: blendTextureSourceAlpha property" } ], "dom-xrcompositionlayer-destroy": [ @@ -113,7 +74,7 @@ "version_added": false } }, - "title": "XRCompositionLayer.destroy()" + "title": "XRCompositionLayer: destroy() method" } ], "dom-xrcompositionlayer-layout": [ @@ -152,7 +113,7 @@ "version_added": false } }, - "title": "XRCompositionLayer.layout" + "title": "XRCompositionLayer: layout property" } ], "dom-xrcompositionlayer-miplevels": [ @@ -191,7 +152,7 @@ "version_added": false } }, - "title": "XRCompositionLayer.mipLevels" + "title": "XRCompositionLayer: mipLevels property" } ], "dom-xrcompositionlayer-needsredraw": [ @@ -230,7 +191,7 @@ "version_added": false } }, - "title": "XRCompositionLayer.needsRedraw" + "title": "XRCompositionLayer: needsRedraw property" } ], "xrcompositionlayertype": [ @@ -308,7 +269,7 @@ "version_added": false } }, - "title": "XRCubeLayer.orientation" + "title": "XRCubeLayer: orientation property" } ], "eventdef-xrlayer-redraw": [ @@ -497,7 +458,7 @@ "version_added": false } }, - "title": "XRCubeLayer.space" + "title": "XRCubeLayer: space property" } ], "xcubelayertype": [ @@ -575,7 +536,7 @@ "version_added": false } }, - "title": "XRCylinderLayer.aspectRatio" + "title": "XRCylinderLayer: aspectRatio property" } ], "dom-xrcylinderlayer-centralangle": [ @@ -614,7 +575,7 @@ "version_added": false } }, - "title": "XRCylinderLayer.centralAngle" + "title": "XRCylinderLayer: centralAngle property" } ], "dom-xrcylinderlayer-radius": [ @@ -653,7 +614,7 @@ "version_added": false } }, - "title": "XRCylinderLayer.radius" + "title": "XRCylinderLayer: radius property" } ], "dom-xrcylinderlayer-space": [ @@ -692,7 +653,7 @@ "version_added": false } }, - "title": "XRCylinderLayer.space" + "title": "XRCylinderLayer: space property" } ], "dom-xrcylinderlayer-transform": [ @@ -731,7 +692,7 @@ "version_added": false } }, - "title": "XRCylinderLayer.transform" + "title": "XRCylinderLayer: transform property" } ], "xrcylinderayertype": [ @@ -809,7 +770,7 @@ "version_added": false } }, - "title": "XREquirectLayer.centralHorizontalAngle" + "title": "XREquirectLayer: centralHorizontalAngle property" } ], "dom-xrequirectlayer-lowerverticalangle": [ @@ -848,7 +809,7 @@ "version_added": false } }, - "title": "XREquirectLayer.lowerVerticalAngle" + "title": "XREquirectLayer: lowerVerticalAngle property" } ], "dom-xrequirectlayer-radius": [ @@ -887,7 +848,7 @@ "version_added": false } }, - "title": "XREquirectLayer.radius" + "title": "XREquirectLayer: radius property" } ], "dom-xrequirectlayer-space": [ @@ -926,7 +887,7 @@ "version_added": false } }, - "title": "XREquirectLayer.space" + "title": "XREquirectLayer: space property" } ], "dom-xrequirectlayer-transform": [ @@ -965,7 +926,7 @@ "version_added": false } }, - "title": "XREquirectLayer.transform" + "title": "XREquirectLayer: transform property" } ], "dom-xrequirectlayer-upperverticalangle": [ @@ -1004,7 +965,7 @@ "version_added": false } }, - "title": "XREquirectLayer.upperVerticalAngle" + "title": "XREquirectLayer: upperVerticalAngle property" } ], "xrequirectlayertype": [ @@ -1082,7 +1043,7 @@ "version_added": false } }, - "title": "XRLayerEvent()" + "title": "XRLayerEvent: XRLayerEvent() constructor" } ], "dom-xrlayerevent-layer": [ @@ -1121,7 +1082,7 @@ "version_added": false } }, - "title": "XRLayerEvent.layer" + "title": "XRLayerEvent: layer property" } ], "xrlayerevent-interface": [ @@ -1199,7 +1160,7 @@ "version_added": false } }, - "title": "XRMediaBinding()" + "title": "XRMediaBinding: XRMediaBinding() constructor" } ], "dom-xrmediabinding-createcylinderlayer": [ @@ -1238,7 +1199,7 @@ "version_added": false } }, - "title": "XRMediaBinding.createCylinderLayer()" + "title": "XRMediaBinding: createCylinderLayer() method" } ], "dom-xrmediabinding-createequirectlayer": [ @@ -1277,7 +1238,7 @@ "version_added": false } }, - "title": "XRMediaBinding.createEquirectLayer()" + "title": "XRMediaBinding: createEquirectLayer() method" } ], "dom-xrmediabinding-createquadlayer": [ @@ -1316,7 +1277,7 @@ "version_added": false } }, - "title": "XRMediaBinding.createQuadLayer()" + "title": "XRMediaBinding: createQuadLayer() method" } ], "XRWebGLBindingtype": [ @@ -1433,7 +1394,7 @@ "version_added": false } }, - "title": "XRProjectionLayer.fixedFoveation" + "title": "XRProjectionLayer: fixedFoveation property" } ], "dom-xrprojectionlayer-ignoredepthvalues": [ @@ -1472,7 +1433,7 @@ "version_added": false } }, - "title": "XRProjectionLayer.ignoreDepthValues" + "title": "XRProjectionLayer: ignoreDepthValues property" } ], "dom-xrprojectionlayer-texturearraylength": [ @@ -1511,7 +1472,7 @@ "version_added": false } }, - "title": "XRProjectionLayer.textureArrayLength" + "title": "XRProjectionLayer: textureArrayLength property" } ], "dom-xrprojectionlayer-textureheight": [ @@ -1550,7 +1511,7 @@ "version_added": false } }, - "title": "XRProjectionLayer.textureHeight" + "title": "XRProjectionLayer: textureHeight property" } ], "dom-xrprojectionlayer-texturewidth": [ @@ -1589,7 +1550,7 @@ "version_added": false } }, - "title": "XRProjectionLayer.textureWidth" + "title": "XRProjectionLayer: textureWidth property" } ], "xrprojectionlayertype": [ @@ -1667,7 +1628,7 @@ "version_added": false } }, - "title": "XRQuadLayer.height" + "title": "XRQuadLayer: height property" } ], "dom-xrquadlayer-space": [ @@ -1706,7 +1667,7 @@ "version_added": false } }, - "title": "XRQuadLayer.space" + "title": "XRQuadLayer: space property" } ], "dom-xrquadlayer-transform": [ @@ -1745,7 +1706,7 @@ "version_added": false } }, - "title": "XRQuadLayer.transform" + "title": "XRQuadLayer: transform property" } ], "dom-xrquadlayer-width": [ @@ -1784,7 +1745,7 @@ "version_added": false } }, - "title": "XRQuadLayer.width" + "title": "XRQuadLayer: width property" } ], "xrquadlayertype": [ @@ -1862,7 +1823,7 @@ "version_added": false } }, - "title": "XRRenderState.layers" + "title": "XRRenderState: layers property" } ], "dom-xrsubimage-viewport": [ @@ -1901,7 +1862,7 @@ "version_added": false } }, - "title": "XRSubImage.viewport" + "title": "XRSubImage: viewport property" } ], "xrsubimagetype": [ @@ -1981,7 +1942,7 @@ "version_added": "89" } }, - "title": "XRWebGLBinding()" + "title": "XRWebGLBinding: XRWebGLBinding() constructor" } ], "dom-xrwebglbinding-createcubelayer": [ @@ -2020,7 +1981,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.createCubeLayer()" + "title": "XRWebGLBinding: createCubeLayer() method" } ], "dom-xrwebglbinding-createcylinderlayer": [ @@ -2059,7 +2020,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.createCylinderLayer()" + "title": "XRWebGLBinding: createCylinderLayer() method" } ], "dom-xrwebglbinding-createequirectlayer": [ @@ -2098,7 +2059,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.createEquirectLayer()" + "title": "XRWebGLBinding: createEquirectLayer() method" } ], "dom-xrwebglbinding-createprojectionlayer": [ @@ -2137,7 +2098,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.createProjectionLayer()" + "title": "XRWebGLBinding: createProjectionLayer() method" } ], "dom-xrwebglbinding-createquadlayer": [ @@ -2176,7 +2137,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.createQuadLayer()" + "title": "XRWebGLBinding: createQuadLayer() method" } ], "dom-xrwebglbinding-getsubimage": [ @@ -2215,7 +2176,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.getSubImage()" + "title": "XRWebGLBinding: getSubImage() method" } ], "dom-xrwebglbinding-getviewsubimage": [ @@ -2254,7 +2215,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.getViewSubImage()" + "title": "XRWebGLBinding: getViewSubImage() method" } ], "dom-xrwebglbinding-nativeprojectionscalefactor": [ @@ -2293,7 +2254,7 @@ "version_added": false } }, - "title": "XRWebGLBinding.nativeProjectionScaleFactor" + "title": "XRWebGLBinding: nativeProjectionScaleFactor property" } ], "dom-xrwebglsubimage-colortexture": [ @@ -2332,7 +2293,7 @@ "version_added": false } }, - "title": "XRWebGLSubImage.colorTexture" + "title": "XRWebGLSubImage: colorTexture property" } ], "dom-xrwebglsubimage-colortextureheight": [ @@ -2371,7 +2332,7 @@ "version_added": false } }, - "title": "XRWebGLSubImage.colorTextureHeight" + "title": "XRWebGLSubImage: colorTextureHeight property" } ], "dom-xrwebglsubimage-colortexturewidth": [ @@ -2410,7 +2371,7 @@ "version_added": false } }, - "title": "XRWebGLSubImage.colorTextureWidth" + "title": "XRWebGLSubImage: colorTextureWidth property" } ], "dom-xrwebglsubimage-depthstenciltexture": [ @@ -2449,7 +2410,7 @@ "version_added": false } }, - "title": "XRWebGLSubImage.depthStencilTexture" + "title": "XRWebGLSubImage: depthStencilTexture property" } ], "dom-xrwebglsubimage-imageindex": [ @@ -2488,7 +2449,7 @@ "version_added": false } }, - "title": "XRWebGLSubImage.imageIndex" + "title": "XRWebGLSubImage: imageIndex property" } ], "xrwebglsubimagetype": [ diff --git a/bikeshed/spec-data/readonly/mdn/webxr-lighting-estimation.json b/bikeshed/spec-data/readonly/mdn/webxr-lighting-estimation.json index 3ec4b1c432..476ea531d3 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr-lighting-estimation.json +++ b/bikeshed/spec-data/readonly/mdn/webxr-lighting-estimation.json @@ -37,7 +37,7 @@ "version_added": "90" } }, - "title": "XRFrame.getLightEstimate()" + "title": "XRFrame: getLightEstimate() method" } ], "dom-xrlightestimate-primarylightdirection": [ @@ -78,7 +78,7 @@ "version_added": "90" } }, - "title": "XRLightEstimate.primaryLightDirection" + "title": "XRLightEstimate: primaryLightDirection property" } ], "dom-xrlightestimate-primarylightintensity": [ @@ -119,7 +119,7 @@ "version_added": "90" } }, - "title": "XRLightEstimate.primaryLightIntensity" + "title": "XRLightEstimate: primaryLightIntensity property" } ], "dom-xrlightestimate-sphericalharmonicscoefficients": [ @@ -160,7 +160,7 @@ "version_added": "90" } }, - "title": "XRLightEstimate.sphericalHarmonicsCoefficients" + "title": "XRLightEstimate: sphericalHarmonicsCoefficients property" } ], "xrlightestimate-interface": [ @@ -242,7 +242,7 @@ "version_added": "90" } }, - "title": "XRLightProbe.probeSpace" + "title": "XRLightProbe: probeSpace property" } ], "eventdef-xrlightprobe-reflectionchange": [ @@ -406,7 +406,7 @@ "version_added": "90" } }, - "title": "XRSession.preferredReflectionFormat" + "title": "XRSession: preferredReflectionFormat property" } ], "dom-xrsession-requestlightprobe": [ @@ -447,7 +447,7 @@ "version_added": "90" } }, - "title": "XRSession.requestLightProbe()" + "title": "XRSession: requestLightProbe() method" } ], "dom-xrwebglbinding-getreflectioncubemap": [ @@ -488,7 +488,7 @@ "version_added": "90" } }, - "title": "XRWebGLBinding.getReflectionCubeMap()" + "title": "XRWebGLBinding: getReflectionCubeMap() method" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/webxr.json b/bikeshed/spec-data/readonly/mdn/webxr.json index 3202395d2d..af8f31eb08 100644 --- a/bikeshed/spec-data/readonly/mdn/webxr.json +++ b/bikeshed/spec-data/readonly/mdn/webxr.json @@ -39,7 +39,7 @@ "version_added": "79" } }, - "title": "Navigator.xr" + "title": "Navigator: xr property" } ], "dom-webglrenderingcontextbase-makexrcompatible": [ @@ -82,7 +82,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.makeXRCompatible()" + "title": "WebGLRenderingContext: makeXRCompatible() method" }, { "engines": [ @@ -127,7 +127,7 @@ "version_added": "79" } }, - "title": "WebGLRenderingContext.makeXRCompatible()" + "title": "WebGLRenderingContext: makeXRCompatible() method" } ], "dom-xrboundedreferencespace-boundsgeometry": [ @@ -170,7 +170,7 @@ "version_added": "79" } }, - "title": "XRBoundedReferenceSpace.boundsGeometry" + "title": "XRBoundedReferenceSpace: boundsGeometry property" } ], "xrboundedreferencespace-interface": [ @@ -256,7 +256,7 @@ "version_added": "79" } }, - "title": "XRFrame.getPose()" + "title": "XRFrame: getPose() method" } ], "dom-xrframe-getviewerpose": [ @@ -299,7 +299,7 @@ "version_added": "79" } }, - "title": "XRFrame.getViewerPose()" + "title": "XRFrame: getViewerPose() method" } ], "dom-xrframe-session": [ @@ -342,7 +342,7 @@ "version_added": "79" } }, - "title": "XRFrame.session" + "title": "XRFrame: session property" } ], "xrframe-interface": [ @@ -428,7 +428,7 @@ "version_added": "79" } }, - "title": "XRInputSource.gripSpace" + "title": "XRInputSource: gripSpace property" } ], "dom-xrinputsource-handedness": [ @@ -471,7 +471,7 @@ "version_added": "79" } }, - "title": "XRInputSource.handedness" + "title": "XRInputSource: handedness property" } ], "dom-xrinputsource-profiles": [ @@ -514,7 +514,7 @@ "version_added": "79" } }, - "title": "XRInputSource.profiles" + "title": "XRInputSource: profiles property" } ], "dom-xrinputsource-targetraymode": [ @@ -557,7 +557,7 @@ "version_added": "79" } }, - "title": "XRInputSource.targetRayMode" + "title": "XRInputSource: targetRayMode property" } ], "dom-xrinputsource-targetrayspace": [ @@ -600,7 +600,7 @@ "version_added": "79" } }, - "title": "XRInputSource.targetRaySpace" + "title": "XRInputSource: targetRaySpace property" } ], "xrinputsource-interface": [ @@ -686,7 +686,7 @@ "version_added": "79" } }, - "title": "XRInputSourceArray.length" + "title": "XRInputSourceArray: length property" } ], "xrinputsourcearray-interface": [ @@ -772,7 +772,7 @@ "version_added": "79" } }, - "title": "XRInputSourceEvent()" + "title": "XRInputSourceEvent: XRInputSourceEvent() constructor" } ], "dom-xrinputsourceevent-frame": [ @@ -815,7 +815,7 @@ "version_added": "79" } }, - "title": "XRInputSourceEvent.frame" + "title": "XRInputSourceEvent: frame property" } ], "dom-xrinputsourceevent-inputsource": [ @@ -858,7 +858,7 @@ "version_added": "79" } }, - "title": "XRInputSourceEvent.inputSource" + "title": "XRInputSourceEvent: inputSource property" } ], "xrinputsourceevent-interface": [ @@ -944,7 +944,7 @@ "version_added": "79" } }, - "title": "XRInputSourcesChangeEvent()" + "title": "XRInputSourcesChangeEvent: XRInputSourcesChangeEvent() constructor" } ], "dom-xrinputsourceschangeevent-added": [ @@ -987,7 +987,7 @@ "version_added": "79" } }, - "title": "XRInputSourcesChangeEvent.added" + "title": "XRInputSourcesChangeEvent: added property" } ], "dom-xrinputsourceschangeevent-removed": [ @@ -1030,7 +1030,7 @@ "version_added": "79" } }, - "title": "XRInputSourcesChangeEvent.removed" + "title": "XRInputSourcesChangeEvent: removed property" } ], "dom-xrinputsourceschangeevent-session": [ @@ -1073,7 +1073,7 @@ "version_added": "79" } }, - "title": "XRInputSourcesChangeEvent.session" + "title": "XRInputSourcesChangeEvent: session property" } ], "xrinputsourceschangeevent-interface": [ @@ -1158,91 +1158,6 @@ "title": "XRLayer" } ], - "dom-xrpermissionstatus-granted": [ - { - "engines": [], - "filename": "api/XRPermissionStatus.json", - "name": "granted", - "slug": "API/XRPermissionStatus/granted", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRPermissionStatus/granted", - "summary": "The WebXR Device API's XRPermissionStatus interface's granted property is an array of strings, each identifying one of the WebXR features for which permission has been granted as of the time at which the Permission API's navigator.permissions.query() method was called.", - "support": { - "chrome": { - "version_added": false - }, - "chrome_android": "mirror", - "edge": "mirror", - "firefox": { - "version_added": false - }, - "firefox_android": "mirror", - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": "mirror", - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false - } - }, - "title": "XRPermissionStatus.granted" - } - ], - "xrpermissionstatus": [ - { - "engines": [], - "filename": "api/XRPermissionStatus.json", - "name": "XRPermissionStatus", - "slug": "API/XRPermissionStatus", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRPermissionStatus", - "summary": "The XRPermissionStatus interface defines the object returned by calling navigator.permissions.query() for the xr permission name; it indicates whether or not the app or site has permission to use WebXR, and may be monitored over time for changes to that permissions tate.", - "support": { - "chrome": { - "version_added": false, - "notes": "See <a href='https://crbug.com/1060163'>bug 1060163</a>." - }, - "chrome_android": { - "version_added": false - }, - "edge": { - "version_added": false - }, - "firefox": { - "version_added": false, - "notes": "See <a href='https://bugzil.la/1582344'>bug 1582344</a>." - }, - "firefox_android": { - "version_added": false - }, - "ie": { - "version_added": false - }, - "oculus": "mirror", - "opera": { - "version_added": false - }, - "opera_android": "mirror", - "safari": { - "version_added": false - }, - "safari_ios": "mirror", - "samsunginternet_android": "mirror", - "webview_android": "mirror", - "edge_blink": { - "version_added": false, - "notes": "See <a href='https://crbug.com/1060163'>bug 1060163</a>." - } - }, - "title": "XRPermissionStatus" - } - ], "dom-xrpose-angularvelocity": [ { "engines": [], @@ -1283,7 +1198,7 @@ "impl_url": "https://crbug.com/1202213" } }, - "title": "XRPose.angularVelocity" + "title": "XRPose: angularVelocity property" } ], "dom-xrpose-emulatedposition": [ @@ -1326,7 +1241,7 @@ "version_added": "79" } }, - "title": "XRPose.emulatedPosition" + "title": "XRPose: emulatedPosition property" } ], "dom-xrpose-linearvelocity": [ @@ -1369,7 +1284,7 @@ "impl_url": "https://crbug.com/1202213" } }, - "title": "XRPose.linearVelocity" + "title": "XRPose: linearVelocity property" } ], "dom-xrpose-transform": [ @@ -1412,7 +1327,7 @@ "version_added": "79" } }, - "title": "XRPose.transform" + "title": "XRPose: transform property" } ], "xrpose-interface": [ @@ -1498,7 +1413,7 @@ "version_added": "79" } }, - "title": "XRReferenceSpace.getOffsetReferenceSpace()" + "title": "XRReferenceSpace: getOffsetReferenceSpace() method" } ], "eventdef-xrreferencespace-reset": [ @@ -1670,7 +1585,7 @@ "version_added": "79" } }, - "title": "XRReferenceSpaceEvent()" + "title": "XRReferenceSpaceEvent: XRReferenceSpaceEvent() constructor" } ], "dom-xrreferencespaceevent-referencespace": [ @@ -1713,7 +1628,7 @@ "version_added": "79" } }, - "title": "XRReferenceSpaceEvent.referenceSpace" + "title": "XRReferenceSpaceEvent: referenceSpace property" } ], "dom-xrreferencespaceevent-transform": [ @@ -1756,7 +1671,7 @@ "version_added": "79" } }, - "title": "XRReferenceSpaceEvent.transform" + "title": "XRReferenceSpaceEvent: transform property" } ], "xrreferencespaceevent-interface": [ @@ -1840,7 +1755,7 @@ "version_added": "79" } }, - "title": "XRRenderState.baseLayer" + "title": "XRRenderState: baseLayer property" } ], "dom-xrrenderstate-depthfar": [ @@ -1881,7 +1796,7 @@ "version_added": "79" } }, - "title": "XRRenderState.depthFar" + "title": "XRRenderState: depthFar property" } ], "dom-xrrenderstate-depthnear": [ @@ -1922,7 +1837,7 @@ "version_added": "79" } }, - "title": "XRRenderState.depthNear" + "title": "XRRenderState: depthNear property" } ], "dom-xrrenderstate-inlineverticalfieldofview": [ @@ -1963,7 +1878,7 @@ "version_added": "79" } }, - "title": "XRRenderState.inlineVerticalFieldOfView" + "title": "XRRenderState: inlineVerticalFieldOfView property" } ], "xrrenderstate-interface": [ @@ -2047,7 +1962,7 @@ "version_added": "79" } }, - "title": "XRRigidTransform()" + "title": "XRRigidTransform: XRRigidTransform() constructor" } ], "dom-xrrigidtransform-inverse": [ @@ -2090,7 +2005,7 @@ "version_added": "79" } }, - "title": "XRRigidTransform.inverse" + "title": "XRRigidTransform: inverse property" } ], "dom-xrrigidtransform-matrix": [ @@ -2133,7 +2048,7 @@ "version_added": "79" } }, - "title": "XRRigidTransform.matrix" + "title": "XRRigidTransform: matrix property" } ], "dom-xrrigidtransform-orientation": [ @@ -2176,7 +2091,7 @@ "version_added": "79" } }, - "title": "XRRigidTransform.orientation" + "title": "XRRigidTransform: orientation property" } ], "dom-xrrigidtransform-position": [ @@ -2219,7 +2134,7 @@ "version_added": "79" } }, - "title": "XRRigidTransform.position" + "title": "XRRigidTransform: position property" } ], "xrrigidtransform-interface": [ @@ -2305,7 +2220,7 @@ "version_added": "79" } }, - "title": "XRSession.cancelAnimationFrame()" + "title": "XRSession: cancelAnimationFrame() method" } ], "dom-xrsession-end": [ @@ -2348,7 +2263,7 @@ "version_added": "79" } }, - "title": "XRSession.end()" + "title": "XRSession: end() method" } ], "eventdef-xrsession-end": [ @@ -2477,7 +2392,7 @@ "version_added": "79" } }, - "title": "XRSession.inputSources" + "title": "XRSession: inputSources property" } ], "eventdef-xrsession-inputsourceschange": [ @@ -2606,7 +2521,7 @@ "version_added": "79" } }, - "title": "XRSession.renderState" + "title": "XRSession: renderState property" } ], "dom-xrsession-requestanimationframe": [ @@ -2649,7 +2564,7 @@ "version_added": "79" } }, - "title": "XRSession.requestAnimationFrame()" + "title": "XRSession: requestAnimationFrame() method" } ], "dom-xrsession-requestreferencespace": [ @@ -2692,7 +2607,7 @@ "version_added": "79" } }, - "title": "XRSession.requestReferenceSpace()" + "title": "XRSession: requestReferenceSpace() method" } ], "eventdef-xrsession-select": [ @@ -3239,7 +3154,7 @@ "version_added": "79" } }, - "title": "XRSession.updateRenderState()" + "title": "XRSession: updateRenderState() method" } ], "eventdef-xrsession-visibilitychange": [ @@ -3368,7 +3283,7 @@ "version_added": "79" } }, - "title": "XRSession.visibilityState" + "title": "XRSession: visibilityState property" } ], "xrsession-interface": [ @@ -3454,7 +3369,7 @@ "version_added": "79" } }, - "title": "XRSessionEvent()" + "title": "XRSessionEvent: XRSessionEvent() constructor" } ], "dom-xrsessionevent-session": [ @@ -3497,7 +3412,7 @@ "version_added": "79" } }, - "title": "XRSessionEvent.session" + "title": "XRSessionEvent: session property" } ], "xrsessionevent-interface": [ @@ -3616,9 +3531,7 @@ "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "11.2" - }, + "samsunginternet_android": "mirror", "webview_android": { "version_added": false }, @@ -3659,9 +3572,7 @@ "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "11.2" - }, + "samsunginternet_android": "mirror", "webview_android": { "version_added": false }, @@ -3702,9 +3613,7 @@ "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "11.2" - }, + "samsunginternet_android": "mirror", "webview_android": { "version_added": false }, @@ -3712,7 +3621,7 @@ "version_added": "79" } }, - "title": "XRSystem: isSessionSupported()" + "title": "XRSystem: isSessionSupported() method" } ], "dom-xrsystem-requestsession": [ @@ -3745,9 +3654,7 @@ "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "version_added": "11.2" - }, + "samsunginternet_android": "mirror", "webview_android": { "version_added": false }, @@ -3755,13 +3662,12 @@ "version_added": "79" } }, - "title": "XRSystem: requestSession()" + "title": "XRSystem: requestSession() method" } ], "xrsystem-interface": [ { - "engines": [], - "altname": [ + "engines": [ "blink" ], "filename": "api/XRSystem.json", @@ -3771,7 +3677,6 @@ "summary": "The WebXR Device API interface XRSystem provides methods which let you get access to an XRSession object representing a WebXR session. With that XRSession in hand, you can use it to interact with the Augmented Reality (AR) or Virtual Reality (VR) device.", "support": { "chrome": { - "alternative_name": "XR", "version_added": "79" }, "chrome_android": "mirror", @@ -3790,15 +3695,11 @@ "version_added": false }, "safari_ios": "mirror", - "samsunginternet_android": { - "alternative_name": "XR", - "version_added": "11.2" - }, + "samsunginternet_android": "mirror", "webview_android": { "version_added": false }, "edge_blink": { - "alternative_name": "XR", "version_added": "79" } }, @@ -3845,7 +3746,7 @@ "version_added": "79" } }, - "title": "XRView.eye" + "title": "XRView: eye property" } ], "dom-xrview-projectionmatrix": [ @@ -3888,7 +3789,7 @@ "version_added": "79" } }, - "title": "XRView.projectionMatrix" + "title": "XRView: projectionMatrix property" } ], "dom-xrview-recommendedviewportscale": [ @@ -3929,7 +3830,7 @@ "version_added": "90" } }, - "title": "XRView.recommendedViewportScale" + "title": "XRView: recommendedViewportScale property" } ], "dom-xrview-requestviewportscale": [ @@ -3970,7 +3871,7 @@ "version_added": "90" } }, - "title": "XRView.requestViewportScale()" + "title": "XRView: requestViewportScale() method" } ], "dom-xrview-transform": [ @@ -4013,7 +3914,7 @@ "version_added": "79" } }, - "title": "XRView.transform" + "title": "XRView: transform property" } ], "xrview-interface": [ @@ -4099,7 +4000,7 @@ "version_added": "79" } }, - "title": "XRViewerPose.views" + "title": "XRViewerPose: views property" } ], "xrviewerpose-interface": [ @@ -4185,7 +4086,7 @@ "version_added": "79" } }, - "title": "XRViewport.height" + "title": "XRViewport: height property" } ], "dom-xrviewport-width": [ @@ -4228,7 +4129,7 @@ "version_added": "79" } }, - "title": "XRViewport.width" + "title": "XRViewport: width property" } ], "dom-xrviewport-x": [ @@ -4271,7 +4172,7 @@ "version_added": "79" } }, - "title": "XRViewport.x" + "title": "XRViewport: x property" } ], "dom-xrviewport-y": [ @@ -4314,7 +4215,7 @@ "version_added": "79" } }, - "title": "XRViewport.y" + "title": "XRViewport: y property" } ], "xrviewport-interface": [ @@ -4400,7 +4301,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer()" + "title": "XRWebGLLayer: XRWebGLLayer() constructor" } ], "dom-xrwebgllayer-antialias": [ @@ -4412,7 +4313,7 @@ "name": "antialias", "slug": "API/XRWebGLLayer/antialias", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/antialias", - "summary": "The read-only XRWebGLLayer property antialias is a Boolean value which is true if the rendering layer's frame buffer supports antialiasing. Otherwise, this property's value is false. The specific antialiasing technique used is left to the user agent's discretion and cannot be specified by the web site or web app.", + "summary": "The read-only XRWebGLLayer property antialias is a Boolean value which is true if the rendering layer's frame buffer supports anti-aliasing. Otherwise, this property's value is false. The specific anti-aliasing technique used is left to the user agent's discretion and cannot be specified by the website or web app.", "support": { "chrome": { "version_added": "79" @@ -4443,7 +4344,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.antialias" + "title": "XRWebGLLayer: antialias property" } ], "dom-xrwebgllayer-fixedfoveation": [ @@ -4482,7 +4383,7 @@ "version_added": false } }, - "title": "XRWebGLLayer.fixedFoveation" + "title": "XRWebGLLayer: fixedFoveation property" } ], "dom-xrwebgllayer-framebuffer": [ @@ -4525,7 +4426,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.framebuffer" + "title": "XRWebGLLayer: framebuffer property" } ], "dom-xrwebgllayer-framebufferheight": [ @@ -4568,7 +4469,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.framebufferHeight" + "title": "XRWebGLLayer: framebufferHeight property" } ], "dom-xrwebgllayer-framebufferwidth": [ @@ -4611,7 +4512,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.framebufferWidth" + "title": "XRWebGLLayer: framebufferWidth property" } ], "dom-xrwebgllayer-getnativeframebufferscalefactor": [ @@ -4620,9 +4521,9 @@ "blink" ], "filename": "api/XRWebGLLayer.json", - "name": "getNativeFramebufferScaleFactor", - "slug": "API/XRWebGLLayer/getNativeFramebufferScaleFactor", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/getNativeFramebufferScaleFactor", + "name": "getNativeFramebufferScaleFactor_static", + "slug": "API/XRWebGLLayer/getNativeFramebufferScaleFactor_static", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/getNativeFramebufferScaleFactor_static", "summary": "The static method XRWebGLLayer.getNativeFramebufferScaleFactor() returns a floating-point scaling factor by which one can multiply the specified XRSession's resolution to get the native resolution of the WebXR device's frame buffer.", "support": { "chrome": { @@ -4654,7 +4555,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.getNativeFramebufferScaleFactor() static method" + "title": "XRWebGLLayer: getNativeFramebufferScaleFactor() static method" } ], "dom-xrwebgllayer-getviewport": [ @@ -4697,7 +4598,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.getViewport()" + "title": "XRWebGLLayer: getViewport() method" } ], "dom-xrwebgllayer-ignoredepthvalues": [ @@ -4740,7 +4641,7 @@ "version_added": "79" } }, - "title": "XRWebGLLayer.ignoreDepthValues" + "title": "XRWebGLLayer: ignoreDepthValues property" } ], "xrwebgllayer-interface": [ @@ -4795,7 +4696,7 @@ "name": "xr-spatial-tracking", "slug": "HTTP/Headers/Feature-Policy/xr-spatial-tracking", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/xr-spatial-tracking", - "summary": "The HTTP Feature-Policy header xr-spatial-tracking directive controls whether the current document is allowed to use the WebXR Device API. This policy controls whether navigator.xr.requestSession() can return XRSession that requires spatial tracking and whether user agent can indicate support for sessions supporting spatial tracking via navigator.xr.isSessionSupported() and devicechange event on navigator.xr object.", + "summary": "The HTTP Permissions-Policy header xr-spatial-tracking directive controls whether the current document is allowed to use the WebXR Device API.", "support": { "chrome": { "version_added": "79" @@ -4826,7 +4727,60 @@ "version_added": "79" } }, - "title": "Feature-Policy: xr-spatial-tracking" + "title": "Permissions-Policy: xr-spatial-tracking" + }, + { + "engines": [ + "blink" + ], + "filename": "http/headers/Permissions-Policy.json", + "name": "xr-spatial-tracking", + "slug": "HTTP/Headers/Permissions-Policy/xr-spatial-tracking", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/xr-spatial-tracking", + "summary": "The HTTP Permissions-Policy header xr-spatial-tracking directive controls whether the current document is allowed to use the WebXR Device API.", + "support": { + "chrome": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ], + "chrome_android": "mirror", + "edge": "mirror", + "firefox": { + "version_added": false + }, + "firefox_android": "mirror", + "ie": { + "version_added": false + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": { + "version_added": false + }, + "safari": { + "version_added": false + }, + "safari_ios": "mirror", + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": false + }, + "edge_blink": [ + { + "version_added": "88" + }, + { + "version_added": "79", + "alternative_name": "Feature-Policy" + } + ] + }, + "title": "Permissions-Policy: xr-spatial-tracking" } ] } diff --git a/bikeshed/spec-data/readonly/mdn/window-controls-overlay.json b/bikeshed/spec-data/readonly/mdn/window-controls-overlay.json index 38f1a668a9..08d865d121 100644 --- a/bikeshed/spec-data/readonly/mdn/window-controls-overlay.json +++ b/bikeshed/spec-data/readonly/mdn/window-controls-overlay.json @@ -37,7 +37,7 @@ "version_added": "105" } }, - "title": "Navigator.windowControlsOverlay" + "title": "Navigator: windowControlsOverlay property" }, { "engines": [ @@ -115,7 +115,7 @@ "version_added": "105" } }, - "title": "WindowControlsOverlayGeometryChangeEvent()" + "title": "WindowControlsOverlayGeometryChangeEvent: WindowControlsOverlayGeometryChangeEvent() constructor" }, { "engines": [ @@ -154,7 +154,7 @@ "version_added": "105" } }, - "title": "WindowControlsOverlayGeometryChangeEvent.titlebarAreaRect" + "title": "WindowControlsOverlayGeometryChangeEvent: titlebarAreaRect property" }, { "engines": [ @@ -193,7 +193,7 @@ "version_added": "105" } }, - "title": "WindowControlsOverlayGeometryChangeEvent.visible" + "title": "WindowControlsOverlayGeometryChangeEvent: visible property" }, { "engines": [ @@ -314,7 +314,7 @@ "version_added": "105" } }, - "title": "WindowControlsOverlay.getTitlebarAreaRect()" + "title": "WindowControlsOverlay: getTitlebarAreaRect() method" } ], "the-visible-attribute": [ @@ -355,7 +355,7 @@ "version_added": "105" } }, - "title": "WindowControlsOverlay.visible" + "title": "WindowControlsOverlay: visible property" } ], "title-bar-area-env-variables": [ @@ -367,7 +367,7 @@ "name": "titlebar-area-height", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": [ { @@ -428,7 +428,7 @@ "name": "titlebar-area-width", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": [ { @@ -489,7 +489,7 @@ "name": "titlebar-area-x", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": [ { @@ -550,7 +550,7 @@ "name": "titlebar-area-y", "slug": "CSS/env()", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env()", - "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", + "summary": "The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.", "support": { "chrome": [ { diff --git a/bikeshed/spec-data/readonly/mdn/xhr.json b/bikeshed/spec-data/readonly/mdn/xhr.json index 4d58bdb01f..bcd3282150 100644 --- a/bikeshed/spec-data/readonly/mdn/xhr.json +++ b/bikeshed/spec-data/readonly/mdn/xhr.json @@ -50,7 +50,7 @@ "version_added": "79" } }, - "title": "FormData()" + "title": "FormData: FormData() constructor" } ], "dom-formdata-append": [ @@ -107,7 +107,7 @@ "version_added": "79" } }, - "title": "FormData.append()" + "title": "FormData: append() method" } ], "dom-formdata-delete": [ @@ -153,7 +153,7 @@ "version_added": "79" } }, - "title": "FormData.delete()" + "title": "FormData: delete() method" } ], "dom-formdata-get": [ @@ -199,7 +199,7 @@ "version_added": "79" } }, - "title": "FormData.get()" + "title": "FormData: get() method" } ], "dom-formdata-getall": [ @@ -245,7 +245,7 @@ "version_added": "79" } }, - "title": "FormData.getAll()" + "title": "FormData: getAll() method" } ], "dom-formdata-has": [ @@ -291,7 +291,7 @@ "version_added": "79" } }, - "title": "FormData.has()" + "title": "FormData: has() method" } ], "dom-formdata-set": [ @@ -337,7 +337,7 @@ "version_added": "79" } }, - "title": "FormData.set()" + "title": "FormData: set() method" } ], "interface-formdata": [ @@ -351,7 +351,7 @@ "name": "FormData", "slug": "API/FormData", "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/FormData", - "summary": "The FormData interface provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the fetch() or XMLHttpRequest.send() method. It uses the same format a form would use if the encoding type were set to \"multipart/form-data\".", + "summary": "The FormData interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the fetch(), XMLHttpRequest.send() or navigator.sendBeacon() methods. It uses the same format a form would use if the encoding type were set to \"multipart/form-data\".", "support": { "chrome": { "version_added": "5" @@ -446,7 +446,7 @@ "version_added": "79" } }, - "title": "ProgressEvent()" + "title": "ProgressEvent: ProgressEvent() constructor" } ], "dom-progressevent-lengthcomputable": [ @@ -496,7 +496,7 @@ "version_added": "79" } }, - "title": "ProgressEvent.lengthComputable" + "title": "ProgressEvent: lengthComputable property" } ], "dom-progressevent-loaded": [ @@ -548,7 +548,7 @@ "version_added": "79" } }, - "title": "ProgressEvent.loaded" + "title": "ProgressEvent: loaded property" } ], "dom-progressevent-total": [ @@ -600,7 +600,7 @@ "version_added": "79" } }, - "title": "ProgressEvent.total" + "title": "ProgressEvent: total property" } ], "interface-progressevent": [ @@ -701,7 +701,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest()" + "title": "XMLHttpRequest: XMLHttpRequest() constructor" } ], "the-abort()-method": [ @@ -748,7 +748,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.abort()" + "title": "XMLHttpRequest: abort() method" } ], "event-xhr-abort": [ @@ -798,6 +798,55 @@ } }, "title": "XMLHttpRequest: abort event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "abort_event", + "slug": "API/XMLHttpRequestUpload/abort_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/abort_event", + "summary": "The abort event is fired at XMLHttpRequestUpload when a request has been aborted, for example because the program called XMLHttpRequest.abort().", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: abort event" } ], "handler-xhr-onabort": [ @@ -847,6 +896,55 @@ } }, "title": "XMLHttpRequest: abort event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "abort_event", + "slug": "API/XMLHttpRequestUpload/abort_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/abort_event", + "summary": "The abort event is fired at XMLHttpRequestUpload when a request has been aborted, for example because the program called XMLHttpRequest.abort().", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: abort event" } ], "event-xhr-error": [ @@ -896,6 +994,55 @@ } }, "title": "XMLHttpRequest: error event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "error_event", + "slug": "API/XMLHttpRequestUpload/error_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/error_event", + "summary": "The error event is fired when the request encountered an error.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: error event" } ], "handler-xhr-onerror": [ @@ -945,6 +1092,55 @@ } }, "title": "XMLHttpRequest: error event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "error_event", + "slug": "API/XMLHttpRequestUpload/error_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/error_event", + "summary": "The error event is fired when the request encountered an error.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: error event" } ], "the-getallresponseheaders()-method": [ @@ -992,7 +1188,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.getAllResponseHeaders()" + "title": "XMLHttpRequest: getAllResponseHeaders() method" } ], "dom-xmlhttprequest-getresponseheader": [ @@ -1040,7 +1236,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.getResponseHeader()" + "title": "XMLHttpRequest: getResponseHeader() method" } ], "event-xhr-load": [ @@ -1090,6 +1286,55 @@ } }, "title": "XMLHttpRequest: load event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "load_event", + "slug": "API/XMLHttpRequestUpload/load_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/load_event", + "summary": "The load event is fired when an XMLHttpRequestUpload transaction completes successfully.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: load event" } ], "handler-xhr-onload": [ @@ -1139,6 +1384,55 @@ } }, "title": "XMLHttpRequest: load event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "load_event", + "slug": "API/XMLHttpRequestUpload/load_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/load_event", + "summary": "The load event is fired when an XMLHttpRequestUpload transaction completes successfully.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: load event" } ], "event-xhr-loadend": [ @@ -1149,20 +1443,212 @@ "webkit" ], "filename": "api/XMLHttpRequest.json", - "name": "loadend_event", - "slug": "API/XMLHttpRequest/loadend_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/loadend_event", - "summary": "The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).", + "name": "loadend_event", + "slug": "API/XMLHttpRequest/loadend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/loadend_event", + "summary": "The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).", + "support": { + "chrome": { + "version_added": "18" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequest: loadend event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "loadend_event", + "slug": "API/XMLHttpRequestUpload/loadend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadend_event", + "summary": "The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).", + "support": { + "chrome": { + "version_added": "18" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: loadend event" + } + ], + "handler-xhr-onloadend": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequest.json", + "name": "loadend_event", + "slug": "API/XMLHttpRequest/loadend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/loadend_event", + "summary": "The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).", + "support": { + "chrome": { + "version_added": "18" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequest: loadend event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "loadend_event", + "slug": "API/XMLHttpRequestUpload/loadend_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadend_event", + "summary": "The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).", + "support": { + "chrome": { + "version_added": "18" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: loadend event" + } + ], + "event-xhr-loadstart": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequest.json", + "name": "loadstart_event", + "slug": "API/XMLHttpRequest/loadstart_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/loadstart_event", + "summary": "The loadstart event is fired when a request has started to load data.", "support": { "chrome": { - "version_added": "18" + "version_added": "1" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "5" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { @@ -1176,42 +1662,38 @@ "version_added": "12.1" }, "safari": { - "version_added": "4" - }, - "safari_ios": { - "version_added": "3" + "version_added": "1.3" }, + "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "XMLHttpRequest: loadend event" - } - ], - "handler-xhr-onloadend": [ + "title": "XMLHttpRequest: loadstart event" + }, { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XMLHttpRequest.json", - "name": "loadend_event", - "slug": "API/XMLHttpRequest/loadend_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/loadend_event", - "summary": "The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).", + "filename": "api/XMLHttpRequestUpload.json", + "name": "loadstart_event", + "slug": "API/XMLHttpRequestUpload/loadstart_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadstart_event", + "summary": "The loadstart event is fired when a request has started to load data.", "support": { "chrome": { - "version_added": "18" + "version_added": "2" }, "chrome_android": "mirror", "edge": { "version_added": "12" }, "firefox": { - "version_added": "5" + "version_added": "3.5" }, "firefox_android": "mirror", "ie": { @@ -1236,10 +1718,10 @@ "version_added": "79" } }, - "title": "XMLHttpRequest: loadend event" + "title": "XMLHttpRequestUpload: loadstart event" } ], - "event-xhr-loadstart": [ + "handler-xhr-onloadstart": [ { "engines": [ "blink", @@ -1284,23 +1766,21 @@ } }, "title": "XMLHttpRequest: loadstart event" - } - ], - "handler-xhr-onloadstart": [ + }, { "engines": [ "blink", "gecko", "webkit" ], - "filename": "api/XMLHttpRequest.json", + "filename": "api/XMLHttpRequestUpload.json", "name": "loadstart_event", - "slug": "API/XMLHttpRequest/loadstart_event", - "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/loadstart_event", + "slug": "API/XMLHttpRequestUpload/loadstart_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadstart_event", "summary": "The loadstart event is fired when a request has started to load data.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -1321,16 +1801,18 @@ "version_added": "12.1" }, "safari": { - "version_added": "1.3" + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" }, - "safari_ios": "mirror", "samsunginternet_android": "mirror", "webview_android": "mirror", "edge_blink": { "version_added": "79" } }, - "title": "XMLHttpRequest: loadstart event" + "title": "XMLHttpRequestUpload: loadstart event" } ], "the-open()-method": [ @@ -1378,7 +1860,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.open()" + "title": "XMLHttpRequest: open() method" } ], "the-overridemimetype()-method": [ @@ -1432,7 +1914,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.overrideMimeType()" + "title": "XMLHttpRequest: overrideMimeType() method" } ], "event-xhr-progress": [ @@ -1484,6 +1966,55 @@ } }, "title": "XMLHttpRequest: progress event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "progress_event", + "slug": "API/XMLHttpRequestUpload/progress_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/progress_event", + "summary": "The progress event is fired periodically when a request receives more data.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: progress event" } ], "handler-xhr-onprogress": [ @@ -1535,6 +2066,55 @@ } }, "title": "XMLHttpRequest: progress event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "progress_event", + "slug": "API/XMLHttpRequestUpload/progress_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/progress_event", + "summary": "The progress event is fired periodically when a request receives more data.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: progress event" } ], "states": [ @@ -1581,7 +2161,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.readyState" + "title": "XMLHttpRequest: readyState property" } ], "event-xhr-readystatechange": [ @@ -1724,7 +2304,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.response" + "title": "XMLHttpRequest: response property" } ], "the-responsetext-attribute": [ @@ -1772,7 +2352,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.responseText" + "title": "XMLHttpRequest: responseText property" } ], "the-responsetype-attribute": [ @@ -1833,7 +2413,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.responseType" + "title": "XMLHttpRequest: responseType property" } ], "the-responseurl-attribute": [ @@ -1876,7 +2456,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.responseURL" + "title": "XMLHttpRequest: responseURL property" } ], "the-responsexml-attribute": [ @@ -1928,7 +2508,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.responseXML" + "title": "XMLHttpRequest: responseXML property" } ], "the-send()-method": [ @@ -1975,7 +2555,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.send()" + "title": "XMLHttpRequest: send() method" } ], "the-setrequestheader()-method": [ @@ -2022,7 +2602,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.setRequestHeader()" + "title": "XMLHttpRequest: setRequestHeader() method" } ], "the-status-attribute": [ @@ -2070,7 +2650,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.status" + "title": "XMLHttpRequest: status property" } ], "the-statustext-attribute": [ @@ -2118,7 +2698,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.statusText" + "title": "XMLHttpRequest: statusText property" } ], "the-timeout-attribute": [ @@ -2177,7 +2757,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.timeout" + "title": "XMLHttpRequest: timeout property" } ], "event-xhr-timeout": [ @@ -2223,6 +2803,49 @@ } }, "title": "XMLHttpRequest: timeout event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "timeout_event", + "slug": "API/XMLHttpRequestUpload/timeout_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/timeout_event", + "summary": "The timeout event is fired when progression is terminated due to preset time expiring.", + "support": { + "chrome": { + "version_added": "29" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "12" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "7" + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": "1.0" + }, + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: timeout event" } ], "handler-xhr-ontimeout": [ @@ -2268,6 +2891,49 @@ } }, "title": "XMLHttpRequest: timeout event" + }, + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "timeout_event", + "slug": "API/XMLHttpRequestUpload/timeout_event", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/timeout_event", + "summary": "The timeout event is fired when progression is terminated due to preset time expiring.", + "support": { + "chrome": { + "version_added": "29" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "12" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": "mirror", + "opera_android": "mirror", + "safari": { + "version_added": "7" + }, + "safari_ios": "mirror", + "samsunginternet_android": { + "version_added": "1.0" + }, + "webview_android": "mirror", + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload: timeout event" } ], "the-upload-attribute": [ @@ -2284,7 +2950,7 @@ "summary": "The XMLHttpRequest upload property returns an XMLHttpRequestUpload object that can be observed to monitor an upload's progress.", "support": { "chrome": { - "version_added": "1" + "version_added": "2" }, "chrome_android": "mirror", "edge": { @@ -2316,7 +2982,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.upload" + "title": "XMLHttpRequest: upload property" } ], "the-withcredentials-attribute": [ @@ -2367,7 +3033,7 @@ "version_added": "79" } }, - "title": "XMLHttpRequest.withCredentials" + "title": "XMLHttpRequest: withCredentials property" } ], "interface-xmlhttprequest": [ @@ -2472,5 +3138,56 @@ }, "title": "XMLHttpRequestEventTarget" } + ], + "xmlhttprequestupload": [ + { + "engines": [ + "blink", + "gecko", + "webkit" + ], + "filename": "api/XMLHttpRequestUpload.json", + "name": "XMLHttpRequestUpload", + "slug": "API/XMLHttpRequestUpload", + "mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload", + "summary": "The XMLHttpRequestUpload interface represents the upload process for a specific XMLHttpRequest. It is an opaque object that represents the underlying, browser-dependent, upload process. It is an XMLHttpRequestEventTarget and can be obtained by calling XMLHttpRequest.upload.", + "support": { + "chrome": { + "version_added": "2" + }, + "chrome_android": "mirror", + "edge": { + "version_added": "12" + }, + "firefox": { + "version_added": "3.5" + }, + "firefox_android": "mirror", + "ie": { + "version_added": "10" + }, + "oculus": "mirror", + "opera": { + "version_added": "12.1" + }, + "opera_android": { + "version_added": "12.1" + }, + "safari": { + "version_added": "4" + }, + "safari_ios": { + "version_added": "3" + }, + "samsunginternet_android": "mirror", + "webview_android": { + "version_added": "37" + }, + "edge_blink": { + "version_added": "79" + } + }, + "title": "XMLHttpRequestUpload" + } ] } diff --git a/bikeshed/spec-data/readonly/methods.json b/bikeshed/spec-data/readonly/methods.json index bd44797793..845c8ffbba 100644 --- a/bikeshed/spec-data/readonly/methods.json +++ b/bikeshed/spec-data/readonly/methods.json @@ -1,4 +1,79 @@ { + "%AsyncGeneratorPrototype%.next()": { + "%AsyncGeneratorPrototype%.next(value)": { + "args": [ + "value" + ], + "for": [ + "%AsyncGeneratorPrototype%.next ( value )" + ], + "shortname": "ecmascript" + } + }, + "%AsyncGeneratorPrototype%.return()": { + "%AsyncGeneratorPrototype%.return(value)": { + "args": [ + "value" + ], + "for": [ + "%AsyncGeneratorPrototype%.return ( value )" + ], + "shortname": "ecmascript" + } + }, + "%AsyncGeneratorPrototype%.throw()": { + "%AsyncGeneratorPrototype%.throw(exception)": { + "args": [ + "exception" + ], + "for": [ + "%AsyncGeneratorPrototype%.throw ( exception )" + ], + "shortname": "ecmascript" + } + }, + "%GeneratorPrototype%.next()": { + "%GeneratorPrototype%.next(value)": { + "args": [ + "value" + ], + "for": [ + "%GeneratorPrototype%.next ( value )" + ], + "shortname": "ecmascript" + } + }, + "%GeneratorPrototype%.return()": { + "%GeneratorPrototype%.return(value)": { + "args": [ + "value" + ], + "for": [ + "%GeneratorPrototype%.return ( value )" + ], + "shortname": "ecmascript" + } + }, + "%GeneratorPrototype%.throw()": { + "%GeneratorPrototype%.throw(exception)": { + "args": [ + "exception" + ], + "for": [ + "%GeneratorPrototype%.throw ( exception )" + ], + "shortname": "ecmascript" + } + }, + "%TypedArray%.prototype %Symbol.iterator% ()": { + "%TypedArray%.prototype %Symbol.iterator% ()": { + "args": [], + "for": [ + "%TypedArray%.prototype [ %Symbol.iterator% ] ( )" + ], + "shortname": "ecmascript" + } + }, "AbortController()": { "AbortController()": { "args": [], @@ -186,10 +261,20 @@ "shortname": "ecmascript" } }, + "Array.prototype %Symbol.iterator% ()": { + "Array.prototype %Symbol.iterator% ()": { + "args": [], + "for": [ + "Array.prototype [ %Symbol.iterator% ] ( )" + ], + "shortname": "ecmascript" + } + }, "ArrayBuffer()": { - "ArrayBuffer(length)": { + "ArrayBuffer(length, options)": { "args": [ - "length" + "length", + "options" ], "for": [ "ArrayBuffer" @@ -496,6 +581,78 @@ "shortname": "web-bluetooth" } }, + "BluetoothDataFilter()": { + "BluetoothDataFilter()": { + "args": [], + "for": [ + "BluetoothDataFilter" + ], + "shortname": "web-bluetooth-scanning" + }, + "BluetoothDataFilter(init)": { + "args": [ + "init" + ], + "for": [ + "BluetoothDataFilter" + ], + "shortname": "web-bluetooth-scanning" + } + }, + "BluetoothLEScanFilter()": { + "BluetoothLEScanFilter()": { + "args": [], + "for": [ + "BluetoothLEScanFilter" + ], + "shortname": "web-bluetooth-scanning" + }, + "BluetoothLEScanFilter(init)": { + "args": [ + "init" + ], + "for": [ + "BluetoothLEScanFilter" + ], + "shortname": "web-bluetooth-scanning" + } + }, + "BluetoothManufacturerDataFilter()": { + "BluetoothManufacturerDataFilter()": { + "args": [], + "for": [ + "BluetoothManufacturerDataFilter" + ], + "shortname": "web-bluetooth-scanning" + }, + "BluetoothManufacturerDataFilter(init)": { + "args": [ + "init" + ], + "for": [ + "BluetoothManufacturerDataFilter" + ], + "shortname": "web-bluetooth-scanning" + } + }, + "BluetoothServiceDataFilter()": { + "BluetoothServiceDataFilter()": { + "args": [], + "for": [ + "BluetoothServiceDataFilter" + ], + "shortname": "web-bluetooth-scanning" + }, + "BluetoothServiceDataFilter(init)": { + "args": [ + "init" + ], + "for": [ + "BluetoothServiceDataFilter" + ], + "shortname": "web-bluetooth-scanning" + } + }, "Boolean()": { "Boolean(value)": { "args": [ @@ -507,6 +664,17 @@ "shortname": "ecmascript" } }, + "BroadcastChannel()": { + "BroadcastChannel(name)": { + "args": [ + "name" + ], + "for": [ + "StorageAccessHandle" + ], + "shortname": "saa-non-cookie-storage" + } + }, "ByteLengthQueuingStrategy()": { "ByteLengthQueuingStrategy(init)": { "args": [ @@ -1013,18 +1181,6 @@ "shortname": "css-typed-om" } }, - "CSSPositionValue()": { - "CSSPositionValue(x, y)": { - "args": [ - "x", - "y" - ], - "for": [ - "CSSPositionValue" - ], - "shortname": "css-typed-om" - } - }, "CSSRGB()": { "CSSRGB(r, g, b)": { "args": [ @@ -1345,24 +1501,6 @@ "shortname": "websockets" } }, - "CloseWatcher()": { - "CloseWatcher()": { - "args": [], - "for": [ - "CloseWatcher" - ], - "shortname": "close-watcher" - }, - "CloseWatcher(options)": { - "args": [ - "options" - ], - "for": [ - "CloseWatcher" - ], - "shortname": "close-watcher" - } - }, "Comment()": { "Comment()": { "args": [], @@ -1941,6 +2079,17 @@ "shortname": "ecmascript" } }, + "Date.prototype %Symbol.toPrimitive% ()": { + "Date.prototype %Symbol.toPrimitive% (hint)": { + "args": [ + "hint" + ], + "for": [ + "Date.prototype [ %Symbol.toPrimitive% ] ( hint )" + ], + "shortname": "ecmascript" + } + }, "DecompressionStream()": { "DecompressionStream(format)": { "args": [ @@ -2034,6 +2183,18 @@ "shortname": "dom" } }, + "DocumentPictureInPictureEvent()": { + "DocumentPictureInPictureEvent(type, eventInitDict)": { + "args": [ + "type", + "eventInitDict" + ], + "for": [ + "DocumentPictureInPictureEvent" + ], + "shortname": "document-picture-in-picture" + } + }, "DocumentTimeline()": { "DocumentTimeline()": { "args": [], @@ -2242,6 +2403,17 @@ "shortname": "credential-management" } }, + "FencedFrameConfig()": { + "FencedFrameConfig(url)": { + "args": [ + "url" + ], + "for": [ + "FencedFrameConfig" + ], + "shortname": "fenced-frame" + } + }, "FetchEvent()": { "FetchEvent(type, eventInitDict)": { "args": [ @@ -2440,6 +2612,17 @@ "shortname": "ecmascript" } }, + "Function.prototype %Symbol.hasInstance% ()": { + "Function.prototype %Symbol.hasInstance% (V)": { + "args": [ + "V" + ], + "for": [ + "Function.prototype [ %Symbol.hasInstance% ] ( V )" + ], + "shortname": "ecmascript" + } + }, "GPUInternalError()": { "GPUInternalError(message)": { "args": [ @@ -2463,6 +2646,22 @@ } }, "GPUPipelineError()": { + "GPUPipelineError()": { + "args": [], + "for": [ + "GPUPipelineError" + ], + "shortname": "webgpu" + }, + "GPUPipelineError(message)": { + "args": [ + "message" + ], + "for": [ + "GPUPipelineError" + ], + "shortname": "webgpu" + }, "GPUPipelineError(message, options)": { "args": [ "message", @@ -2627,6 +2826,15 @@ "shortname": "gyroscope" } }, + "HTMLFencedFrameElement()": { + "HTMLFencedFrameElement()": { + "args": [], + "for": [ + "HTMLFencedFrameElement" + ], + "shortname": "fenced-frame" + } + }, "HTMLPortalElement()": { "HTMLPortalElement()": { "args": [], @@ -2636,6 +2844,15 @@ "shortname": "portals" } }, + "HandwritingStroke()": { + "HandwritingStroke()": { + "args": [], + "for": [ + "HandwritingStroke" + ], + "shortname": "handwriting-recognition" + } + }, "Headers()": { "Headers()": { "args": [], @@ -2841,6 +3058,27 @@ "shortname": "html" } }, + "KeyFrameRequestEvent()": { + "KeyFrameRequestEvent(type)": { + "args": [ + "type" + ], + "for": [ + "KeyFrameRequestEvent" + ], + "shortname": "webrtc-encoded-transform" + }, + "KeyFrameRequestEvent(type, rid)": { + "args": [ + "type", + "rid" + ], + "for": [ + "KeyFrameRequestEvent" + ], + "shortname": "webrtc-encoded-transform" + } + }, "KeyboardEvent()": { "KeyboardEvent(type)": { "args": [ @@ -2970,6 +3208,15 @@ "shortname": "ecmascript" } }, + "Map.prototype %Symbol.iterator% ()": { + "Map.prototype %Symbol.iterator% ()": { + "args": [], + "for": [ + "Map.prototype [ %Symbol.iterator% ] ( )" + ], + "shortname": "ecmascript" + } + }, "MediaElementAudioSourceNode()": { "MediaElementAudioSourceNode(context, options)": { "args": [ @@ -3152,30 +3399,6 @@ "shortname": "dom" } }, - "NavigateEvent()": { - "NavigateEvent(type, eventInit)": { - "args": [ - "type", - "eventInit" - ], - "for": [ - "NavigateEvent" - ], - "shortname": "navigation-api" - } - }, - "NavigationCurrentEntryChangeEvent()": { - "NavigationCurrentEntryChangeEvent(type, eventInit)": { - "args": [ - "type", - "eventInit" - ], - "for": [ - "NavigationCurrentEntryChangeEvent" - ], - "shortname": "navigation-api" - } - }, "NavigationEvent()": { "NavigationEvent(type)": { "args": [ @@ -3533,45 +3756,87 @@ "shortname": "css-typed-om" } }, - "RTCRtpScriptTransform()": { - "RTCRtpScriptTransform(worker)": { + "RTCEncodedAudioFrame()": { + "RTCEncodedAudioFrame(originalFrame)": { "args": [ - "worker" + "originalFrame" ], "for": [ - "RTCRtpScriptTransform" + "RTCEncodedAudioFrame" ], "shortname": "webrtc-encoded-transform" }, - "RTCRtpScriptTransform(worker, options)": { + "RTCEncodedAudioFrame(originalFrame, options)": { "args": [ - "worker", + "originalFrame", "options" ], "for": [ - "RTCRtpScriptTransform" + "RTCEncodedAudioFrame" ], "shortname": "webrtc-encoded-transform" - }, - "RTCRtpScriptTransform(worker, options, transfer)": { + } + }, + "RTCEncodedVideoFrame()": { + "RTCEncodedVideoFrame(originalFrame)": { "args": [ - "worker", - "options", - "transfer" + "originalFrame" ], "for": [ - "RTCRtpScriptTransform" + "RTCEncodedVideoFrame" ], "shortname": "webrtc-encoded-transform" - } - }, - "Range()": { - "Range()": { - "args": [], + }, + "RTCEncodedVideoFrame(originalFrame, options)": { + "args": [ + "originalFrame", + "options" + ], "for": [ - "Range" + "RTCEncodedVideoFrame" ], - "shortname": "dom" + "shortname": "webrtc-encoded-transform" + } + }, + "RTCRtpScriptTransform()": { + "RTCRtpScriptTransform(worker)": { + "args": [ + "worker" + ], + "for": [ + "RTCRtpScriptTransform" + ], + "shortname": "webrtc-encoded-transform" + }, + "RTCRtpScriptTransform(worker, options)": { + "args": [ + "worker", + "options" + ], + "for": [ + "RTCRtpScriptTransform" + ], + "shortname": "webrtc-encoded-transform" + }, + "RTCRtpScriptTransform(worker, options, transfer)": { + "args": [ + "worker", + "options", + "transfer" + ], + "for": [ + "RTCRtpScriptTransform" + ], + "shortname": "webrtc-encoded-transform" + } + }, + "Range()": { + "Range()": { + "args": [], + "for": [ + "Range" + ], + "shortname": "dom" } }, "ReadableStream()": { @@ -3636,6 +3901,63 @@ "shortname": "ecmascript" } }, + "RegExp.prototype %Symbol.match% ()": { + "RegExp.prototype %Symbol.match% (string)": { + "args": [ + "string" + ], + "for": [ + "RegExp.prototype [ %Symbol.match% ] ( string )" + ], + "shortname": "ecmascript" + } + }, + "RegExp.prototype %Symbol.matchAll% ()": { + "RegExp.prototype %Symbol.matchAll% (string)": { + "args": [ + "string" + ], + "for": [ + "RegExp.prototype [ %Symbol.matchAll% ] ( string )" + ], + "shortname": "ecmascript" + } + }, + "RegExp.prototype %Symbol.replace% ()": { + "RegExp.prototype %Symbol.replace% (string, replaceValue)": { + "args": [ + "string", + "replaceValue" + ], + "for": [ + "RegExp.prototype [ %Symbol.replace% ] ( string, replaceValue )" + ], + "shortname": "ecmascript" + } + }, + "RegExp.prototype %Symbol.search% ()": { + "RegExp.prototype %Symbol.search% (string)": { + "args": [ + "string" + ], + "for": [ + "RegExp.prototype [ %Symbol.search% ] ( string )" + ], + "shortname": "ecmascript" + } + }, + "RegExp.prototype %Symbol.split% ()": { + "RegExp.prototype %Symbol.split% (string, limit)": { + "args": [ + "string", + "limit" + ], + "for": [ + "RegExp.prototype [ %Symbol.split% ] ( string, limit )" + ], + "shortname": "ecmascript" + } + }, "RelativeOrientationSensor()": { "RelativeOrientationSensor()": { "args": [], @@ -3888,10 +4210,20 @@ "shortname": "ecmascript" } }, + "Set.prototype %Symbol.iterator% ()": { + "Set.prototype %Symbol.iterator% ()": { + "args": [], + "for": [ + "Set.prototype [ %Symbol.iterator% ] ( )" + ], + "shortname": "ecmascript" + } + }, "SharedArrayBuffer()": { - "SharedArrayBuffer(length)": { + "SharedArrayBuffer(length, options)": { "args": [ - "length" + "length", + "options" ], "for": [ "SharedArrayBuffer" @@ -3900,17 +4232,48 @@ } }, "SharedWorker()": { + "SharedWorker(scriptURL)": { + "args": [ + "scriptURL" + ], + "for": [ + "StorageAccessHandle" + ], + "shortname": "saa-non-cookie-storage" + }, "SharedWorker(scriptURL, options)": { "args": [ "scriptURL", "options" ], "for": [ - "SharedWorker" + "SharedWorker", + "StorageAccessHandle" ], "shortname": "html" } }, + "SnapEvent()": { + "SnapEvent(type)": { + "args": [ + "type" + ], + "for": [ + "SnapEvent" + ], + "shortname": "css-scroll-snap" + }, + "SnapEvent(type, eventInitDict)": { + "args": [ + "type", + "eventInitDict" + ], + "for": [ + "SnapEvent" + ], + "shortname": "css-scroll-snap" + } + }, "SpeechGrammarList()": { "SpeechGrammarList()": { "args": [], @@ -4084,6 +4447,15 @@ "shortname": "ecmascript" } }, + "String.prototype %Symbol.iterator% ()": { + "String.prototype %Symbol.iterator% ()": { + "args": [], + "for": [ + "String.prototype [ %Symbol.iterator% ] ( )" + ], + "shortname": "ecmascript" + } + }, "Symbol()": { "Symbol(description)": { "args": [ @@ -4095,6 +4467,17 @@ "shortname": "ecmascript" } }, + "Symbol.prototype %Symbol.toPrimitive% ()": { + "Symbol.prototype %Symbol.toPrimitive% (hint)": { + "args": [ + "hint" + ], + "for": [ + "Symbol.prototype [ %Symbol.toPrimitive% ] ( hint )" + ], + "shortname": "ecmascript" + } + }, "SyncEvent()": { "SyncEvent(type, init)": { "args": [ @@ -4896,15 +5279,6 @@ ], "shortname": "webtransport" }, - "WebTransportError(init)": { - "args": [ - "init" - ], - "for": [ - "WebTransportError" - ], - "shortname": "webtransport" - }, "WebTransportError(message)": { "args": [ "message" @@ -5264,11 +5638,12 @@ ], "for": [ "Credential", + "DigitalCredential", "FederatedCredential", "PasswordCredential", "PublicKeyCredential" ], - "shortname": "credential-management" + "shortname": "digital-identities" } }, "[[DiscoverFromExternalSource]]()": { @@ -5280,6 +5655,7 @@ ], "for": [ "Credential", + "DigitalCredential", "IdentityCredential", "OTPCredential", "PublicKeyCredential" @@ -5295,11 +5671,12 @@ ], "for": [ "Credential", + "DigitalCredential", "FederatedCredential", "PasswordCredential", "PublicKeyCredential" ], - "shortname": "credential-management" + "shortname": "digital-identities" } }, "[[preventSilentAccess]]()": { @@ -5357,12 +5734,30 @@ } }, "abs()": { + "abs(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "abs(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "abs(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -5419,6 +5814,17 @@ "shortname": "portals" } }, + "adAuctionComponents()": { + "adAuctionComponents(numAdComponents)": { + "args": [ + "numAdComponents" + ], + "for": [ + "Navigator" + ], + "shortname": "fenced-frame" + } + }, "add()": { "add()": { "args": [], @@ -5459,6 +5865,17 @@ ], "shortname": "webnn" }, + "add(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "add(description)": { "args": [ "description" @@ -5541,7 +5958,6 @@ "value" ], "for": [ - "CustomStateSet", "IDBObjectStore", "Set", "WeakSet" @@ -5740,6 +6156,17 @@ "shortname": "html" } }, + "addPoint()": { + "addPoint(point)": { + "args": [ + "point" + ], + "for": [ + "HandwritingStroke" + ], + "shortname": "handwriting-recognition" + } + }, "addRange()": { "addRange()": { "args": [], @@ -5776,6 +6203,17 @@ "shortname": "webrtc-ice" } }, + "addRoutes()": { + "addRoutes(rules)": { + "args": [ + "rules" + ], + "for": [ + "InstallEvent" + ], + "shortname": "service-workers" + } + }, "addRule()": { "addRule()": { "args": [], @@ -5844,6 +6282,17 @@ "shortname": "media-source" } }, + "addStroke()": { + "addStroke(stroke)": { + "args": [ + "stroke" + ], + "for": [ + "HandwritingDrawing" + ], + "shortname": "handwriting-recognition" + } + }, "addTextTrack()": { "addTextTrack(kind, label, language)": { "args": [ @@ -6117,6 +6566,26 @@ "Promise" ], "shortname": "ecmascript" + }, + "any(signals)": { + "args": [ + "signals" + ], + "for": [ + "AbortSignal", + "TaskSignal" + ], + "shortname": "dom" + }, + "any(signals, init)": { + "args": [ + "signals", + "init" + ], + "for": [ + "TaskSignal" + ], + "shortname": "scheduling-apis" } }, "append()": { @@ -6146,6 +6615,16 @@ ], "shortname": "dom" }, + "append(key, value)": { + "args": [ + "key", + "value" + ], + "for": [ + "SharedStorage" + ], + "shortname": "shared-storage" + }, "append(name, blobValue)": { "args": [ "name", @@ -6335,6 +6814,52 @@ "shortname": "html" } }, + "argMax()": { + "argMax(input, axis)": { + "args": [ + "input", + "axis" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "argMax(input, axis, options)": { + "args": [ + "input", + "axis", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, + "argMin()": { + "argMin(input, axis)": { + "args": [ + "input", + "axis" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "argMin(input, axis, options)": { + "args": [ + "input", + "axis", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "arrayBuffer()": { "arrayBuffer()": { "args": [], @@ -6530,15 +7055,33 @@ "shortname": "html" } }, - "attachInternals()": { - "attachInternals()": { + "atomicWrite()": { + "atomicWrite()": { "args": [], "for": [ - "HTMLElement" + "WebTransportWriter" ], - "shortname": "html" - } - }, + "shortname": "webtransport" + }, + "atomicWrite(chunk)": { + "args": [ + "chunk" + ], + "for": [ + "WebTransportWriter" + ], + "shortname": "webtransport" + } + }, + "attachInternals()": { + "attachInternals()": { + "args": [], + "for": [ + "HTMLElement" + ], + "shortname": "html" + } + }, "attachShadow()": { "attachShadow(init)": { "args": [ @@ -6584,8 +7127,7 @@ "back()": { "args": [], "for": [ - "History", - "Navigation" + "History" ], "shortname": "html" }, @@ -6596,7 +7138,7 @@ "for": [ "Navigation" ], - "shortname": "navigation-api" + "shortname": "html" } }, "batchNormalization()": { @@ -6812,6 +7354,24 @@ "shortname": "indexeddb" } }, + "browsingTopics()": { + "browsingTopics()": { + "args": [], + "for": [ + "Document" + ], + "shortname": "topics" + }, + "browsingTopics(options)": { + "args": [ + "options" + ], + "for": [ + "Document" + ], + "shortname": "topics" + } + }, "btoa()": { "btoa(data)": { "args": [ @@ -6834,15 +7394,15 @@ "shortname": "webnn" } }, - "buildSync()": { - "buildSync(outputs)": { - "args": [ - "outputs" - ], + "bytes()": { + "bytes()": { + "args": [], "for": [ - "MLGraphBuilder" + "Blob", + "Body", + "PushMessageData" ], - "shortname": "webnn" + "shortname": "fetch" } }, "call()": { @@ -6857,6 +7417,15 @@ "shortname": "ecmascript" } }, + "canLoadAdAuctionFencedFrame()": { + "canLoadAdAuctionFencedFrame()": { + "args": [], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, "canMakePayment()": { "canMakePayment()": { "args": [], @@ -6866,22 +7435,25 @@ "shortname": "payment-request" } }, - "canPlayEffectType()": { - "canPlayEffectType()": { - "args": [], + "canParse()": { + "canParse(url)": { + "args": [ + "url" + ], "for": [ - "GamepadHapticActuator" + "URL" ], - "shortname": "gamepad-extensions" + "shortname": "url" }, - "canPlayEffectType(type)": { + "canParse(url, base)": { "args": [ - "type" + "url", + "base" ], "for": [ - "GamepadHapticActuator" + "URL" ], - "shortname": "gamepad-extensions" + "shortname": "url" } }, "canPlayType()": { @@ -7029,6 +7601,17 @@ "shortname": "web-bluetooth" } }, + "cap()": { + "cap(value)": { + "args": [ + "value" + ], + "for": [ + "CSS" + ], + "shortname": "css-typed-om" + } + }, "captureEvents()": { "captureEvents()": { "args": [], @@ -7068,6 +7651,40 @@ "Document" ], "shortname": "cssom-view" + }, + "caretPositionFromPoint(x, y, options)": { + "args": [ + "x", + "y", + "options" + ], + "for": [ + "Document" + ], + "shortname": "cssom-view" + } + }, + "cast()": { + "cast(input, type)": { + "args": [ + "input", + "type" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "cast(input, type, options)": { + "args": [ + "input", + "type", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "catch()": { @@ -7093,12 +7710,30 @@ } }, "ceil()": { + "ceil(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "ceil(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "ceil(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -7305,34 +7940,18 @@ } }, "clamp()": { - "clamp()": { - "args": [], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "clamp(options)": { - "args": [ - "options" - ], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "clamp(x)": { + "clamp(input)": { "args": [ - "x" + "input" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "clamp(x, options)": { + "clamp(input, options)": { "args": [ - "x", + "input", "options" ], "for": [ @@ -7348,10 +7967,13 @@ "DataTransferItemList", "Document", "FontFaceSet", + "HandwritingDrawing", + "HandwritingStroke", "IDBObjectStore", "MIDIOutput", "Map", "Set", + "SharedStorage", "Storage", "StylePropertyMap", "console" @@ -7400,15 +8022,6 @@ "shortname": "webgpu" } }, - "clearClientBadge()": { - "clearClientBadge()": { - "args": [], - "for": [ - "Navigator" - ], - "shortname": "badging" - } - }, "clearData()": { "clearData(format)": { "args": [ @@ -7488,6 +8101,36 @@ "shortname": "user-timing" } }, + "clearOriginJoinedAdInterestGroups()": { + "clearOriginJoinedAdInterestGroups(owner)": { + "args": [ + "owner" + ], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + }, + "clearOriginJoinedAdInterestGroups(owner, interestGroupsToKeep)": { + "args": [ + "owner", + "interestGroupsToKeep" + ], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, + "clearOverride()": { + "clearOverride()": { + "args": [], + "for": [ + "PreferenceObject" + ], + "shortname": "web-preferences-api" + } + }, "clearParameters()": { "clearParameters()": { "args": [], @@ -7593,7 +8236,7 @@ "SequenceEffect", "VideoFrame" ], - "shortname": "web-animations" + "shortname": "fetch" } }, "cloneContents()": { @@ -7648,6 +8291,7 @@ "FileSystemSyncAccessHandle", "HIDDevice", "IDBDatabase", + "IdentityProvider", "ImageBitmap", "ImageDecoder", "MIDIPort", @@ -7661,6 +8305,9 @@ "ReadableStreamDefaultController", "SerialPort", "SharedWorkerGlobalScope", + "TCPServerSocket", + "TCPSocket", + "UDPSocket", "USBDevice", "VideoDecoder", "VideoEncoder", @@ -7671,7 +8318,7 @@ "WritableStream", "WritableStreamDefaultWriter" ], - "shortname": "fs" + "shortname": "fedcm" }, "close(closeInfo)": { "args": [ @@ -8020,19 +8667,6 @@ "shortname": "webnn" } }, - "computeSync()": { - "computeSync(graph, inputs, outputs)": { - "args": [ - "graph", - "inputs", - "outputs" - ], - "for": [ - "MLContext" - ], - "shortname": "webnn" - } - }, "computedStyleMap()": { "computedStyleMap()": { "args": [], @@ -8070,6 +8704,17 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "concat(inputs, axis, options)": { + "args": [ + "inputs", + "axis", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "configure()": { @@ -8110,7 +8755,8 @@ "connect()": { "args": [], "for": [ - "BluetoothRemoteGATTServer" + "BluetoothRemoteGATTServer", + "SmartCardContext" ], "shortname": "web-bluetooth" }, @@ -8162,32 +8808,44 @@ "AudioNode" ], "shortname": "webaudio" - } - }, - "constant()": { - "constant(desc, bufferView)": { + }, + "connect(readerName, accessMode)": { "args": [ - "desc", - "bufferView" + "readerName", + "accessMode" ], "for": [ - "MLGraphBuilder" + "SmartCardContext" ], - "shortname": "webnn" + "shortname": "web-smart-card" }, - "constant(value)": { + "connect(readerName, accessMode, options)": { "args": [ - "value" + "readerName", + "accessMode", + "options" + ], + "for": [ + "SmartCardContext" + ], + "shortname": "web-smart-card" + } + }, + "constant()": { + "constant(descriptor, bufferView)": { + "args": [ + "descriptor", + "bufferView" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "constant(value, type)": { + "constant(type, value)": { "args": [ - "value", - "type" + "type", + "value" ], "for": [ "MLGraphBuilder" @@ -8268,6 +8926,11 @@ "BarcodeDetector", "BeforeInstallPromptEvent", "Blob", + "BluetoothDataFilter", + "BluetoothLEScanFilter", + "BluetoothManufacturerDataFilter", + "BluetoothServiceDataFilter", + "BufferedChangeEvent", "CSSMathMax", "CSSMathMin", "CSSMathProduct", @@ -8276,8 +8939,8 @@ "CanMakePaymentEvent", "CaptureActionEvent", "CaptureController", + "CapturedMouseEvent", "CharacterBoundsUpdateEvent", - "CloseWatcher", "Comment", "DOMException", "DOMMatrix", @@ -8287,6 +8950,7 @@ "DOMQuad", "DOMRect", "DOMRectReadOnly", + "DeviceChangeEvent", "Document", "DocumentFragment", "DocumentTimeline", @@ -8305,7 +8969,9 @@ "Gyroscope", "HIDConnectionEvent", "HIDInputReportEvent", + "HTMLFencedFrameElement", "HTMLPortalElement", + "HandwritingStroke", "Headers", "Highlight", "IdleDetector", @@ -8315,6 +8981,7 @@ "MIDIConnectionEvent", "MIDIMessageEvent", "Magnetometer", + "ManagedMediaSource", "MediaEncryptedEvent", "MediaKeyMessageEvent", "MediaMetadata", @@ -8343,6 +9010,8 @@ "PushSubscriptionChangeEvent", "RTCDTMFToneChangeEvent", "RTCDataChannelEvent", + "RTCEncodedAudioFrame", + "RTCEncodedVideoFrame", "RTCError", "RTCErrorEvent", "RTCIceCandidate", @@ -8365,9 +9034,12 @@ "SFrameTransform", "Sanitizer", "ScrollTimeline", + "SmartCardError", "SpeechGrammarList", "SpeechRecognition", "SpeechSynthesisUtterance", + "TCPServerSocket", + "TCPSocket", "TaskController", "Text", "TextDecoder", @@ -8381,6 +9053,7 @@ "Touch", "TouchEvent", "TransformStream", + "UDPSocket", "URLPattern", "URLSearchParams", "UncalibratedMagnetometer", @@ -8598,10 +9271,9 @@ ], "for": [ "IntersectionObserver", - "PressureObserver", "ReportingObserver" ], - "shortname": "compute-pressure" + "shortname": "intersection-observer" }, "constructor(candidateInitDict)": { "args": [ @@ -9060,6 +9732,10 @@ "AudioData", "AudioDecoder", "AudioEncoder", + "BluetoothDataFilter", + "BluetoothLEScanFilter", + "BluetoothManufacturerDataFilter", + "BluetoothServiceDataFilter", "ByteLengthQueuingStrategy", "CaptureActionEvent", "CountQueuingStrategy", @@ -9077,8 +9753,7 @@ "URLSearchParams", "VideoColorSpace", "VideoDecoder", - "VideoEncoder", - "WebTransportError" + "VideoEncoder" ], "shortname": "dom" }, @@ -9260,6 +9935,25 @@ ], "shortname": "css-typed-om" }, + "constructor(localAddress)": { + "args": [ + "localAddress" + ], + "for": [ + "TCPServerSocket" + ], + "shortname": "direct-sockets" + }, + "constructor(localAddress, options)": { + "args": [ + "localAddress", + "options" + ], + "for": [ + "TCPServerSocket" + ], + "shortname": "direct-sockets" + }, "constructor(lower, value, upper)": { "args": [ "lower", @@ -9326,6 +10020,7 @@ "DOMException", "GPUInternalError", "GPUOutOfMemoryError", + "GPUPipelineError", "GPUValidationError", "WebTransportError" ], @@ -9371,6 +10066,17 @@ ], "shortname": "payment-request" }, + "constructor(methodData, details, options)": { + "args": [ + "methodData", + "details", + "options" + ], + "for": [ + "PaymentRequest" + ], + "shortname": "payment-request" + }, "constructor(module)": { "args": [ "module" @@ -9461,7 +10167,6 @@ "AudioBuffer", "CSSStyleSheet", "CharacterBoundsUpdateEvent", - "CloseWatcher", "DocumentTimeline", "EditContext", "FragmentResult", @@ -9471,12 +10176,24 @@ "Profiler", "SFrameTransform", "ScrollTimeline", + "SmartCardError", "TextFormat", "TextFormatUpdateEvent", "TextUpdateEvent", + "UDPSocket", "ViewTimeline" ], - "shortname": "close-watcher" + "shortname": "direct-sockets" + }, + "constructor(options, message)": { + "args": [ + "options", + "message" + ], + "for": [ + "SmartCardError" + ], + "shortname": "web-smart-card" }, "constructor(origin)": { "args": [ @@ -9497,12 +10214,33 @@ ], "shortname": "webxr-hit-test" }, - "constructor(p1)": { + "constructor(originalFrame)": { "args": [ - "p1" + "originalFrame" ], "for": [ - "DOMQuad" + "RTCEncodedAudioFrame", + "RTCEncodedVideoFrame" + ], + "shortname": "webrtc-encoded-transform" + }, + "constructor(originalFrame, options)": { + "args": [ + "originalFrame", + "options" + ], + "for": [ + "RTCEncodedAudioFrame", + "RTCEncodedVideoFrame" + ], + "shortname": "webrtc-encoded-transform" + }, + "constructor(p1)": { + "args": [ + "p1" + ], + "for": [ + "DOMQuad" ], "shortname": "geometry" }, @@ -9629,6 +10367,27 @@ ], "shortname": "web-nfc" }, + "constructor(remoteAddress, remotePort)": { + "args": [ + "remoteAddress", + "remotePort" + ], + "for": [ + "TCPSocket" + ], + "shortname": "direct-sockets" + }, + "constructor(remoteAddress, remotePort, options)": { + "args": [ + "remoteAddress", + "remotePort", + "options" + ], + "for": [ + "TCPSocket" + ], + "shortname": "direct-sockets" + }, "constructor(sensorOptions)": { "args": [ "sensorOptions" @@ -9899,7 +10658,10 @@ "AnimationPlaybackEvent", "AudioRenderCapacityEvent", "BeforeInstallPromptEvent", + "BufferedChangeEvent", "CanMakePaymentEvent", + "CapturedMouseEvent", + "CharacterBoundsUpdateEvent", "ClipboardEvent", "CloseEvent", "CompositionEvent", @@ -9907,6 +10669,7 @@ "ContentVisibilityAutoStateChangedEvent", "CookieChangeEvent", "CustomEvent", + "DeviceChangeEvent", "DeviceMotionEvent", "DeviceOrientationEvent", "Event", @@ -9917,6 +10680,7 @@ "FontFaceSetLoadEvent", "IDBVersionChangeEvent", "InputEvent", + "KeyFrameRequestEvent", "KeyboardEvent", "MIDIConnectionEvent", "MIDIMessageEvent", @@ -9935,6 +10699,9 @@ "RTCDTMFToneChangeEvent", "RTCPeerConnectionIceEvent", "SecurityPolicyViolationEvent", + "SnapEvent", + "TextFormatUpdateEvent", + "TextUpdateEvent", "TouchEvent", "TransitionEvent", "UIEvent", @@ -9963,17 +10730,6 @@ ], "shortname": "generic-sensor" }, - "constructor(type, eventInit)": { - "args": [ - "type", - "eventInit" - ], - "for": [ - "NavigateEvent", - "NavigationCurrentEntryChangeEvent" - ], - "shortname": "navigation-api" - }, "constructor(type, eventInitDict)": { "args": [ "type", @@ -9985,6 +10741,8 @@ "AudioRenderCapacityEvent", "BeforeInstallPromptEvent", "BlobEvent", + "BufferedChangeEvent", + "CapturedMouseEvent", "ClipboardEvent", "CloseEvent", "CompositionEvent", @@ -9992,8 +10750,10 @@ "ContentVisibilityAutoStateChangedEvent", "CookieChangeEvent", "CustomEvent", + "DeviceChangeEvent", "DeviceMotionEvent", "DeviceOrientationEvent", + "DocumentPictureInPictureEvent", "Event", "ExtendableCookieChangeEvent", "ExtendableEvent", @@ -10036,6 +10796,7 @@ "RTCTrackEvent", "SFrameTransformErrorEvent", "SecurityPolicyViolationEvent", + "SnapEvent", "SpeechRecognitionErrorEvent", "SpeechRecognitionEvent", "SpeechSynthesisErrorEvent", @@ -10088,6 +10849,18 @@ ], "shortname": "web-bluetooth" }, + "constructor(type, options)": { + "args": [ + "type", + "options" + ], + "for": [ + "CharacterBoundsUpdateEvent", + "TextFormatUpdateEvent", + "TextUpdateEvent" + ], + "shortname": "edit-context" + }, "constructor(type, priorityChangeEventInitDict)": { "args": [ "type", @@ -10108,6 +10881,16 @@ ], "shortname": "web-nfc" }, + "constructor(type, rid)": { + "args": [ + "type", + "rid" + ], + "for": [ + "KeyFrameRequestEvent" + ], + "shortname": "webrtc-encoded-transform" + }, "constructor(type, transitionEventInitDict)": { "args": [ "type", @@ -10161,6 +10944,7 @@ "url" ], "for": [ + "FencedFrameConfig", "PresentationRequest", "URL", "WebSocket", @@ -10465,6 +11249,49 @@ "shortname": "indexeddb" } }, + "contributeToHistogram()": { + "contributeToHistogram(contribution)": { + "args": [ + "contribution" + ], + "for": [ + "PrivateAggregation", + "RealTimeReporting" + ], + "shortname": "private-aggregation-api" + } + }, + "contributeToHistogramOnEvent()": { + "contributeToHistogramOnEvent(event, contribution)": { + "args": [ + "event", + "contribution" + ], + "for": [ + "PrivateAggregation" + ], + "shortname": "private-aggregation-api" + } + }, + "control()": { + "control()": { + "args": [], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, + "control(controlCode, data)": { + "args": [ + "controlCode", + "data" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + } + }, "controlTransferIn()": { "controlTransferIn(setup, length)": { "args": [ @@ -10776,12 +11603,30 @@ } }, "cos()": { + "cos(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "cos(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "cos(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -11028,6 +11873,15 @@ "shortname": "dom" } }, + "createAuctionNonce()": { + "createAuctionNonce()": { + "args": [], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, "createBidirectionalStream()": { "createBidirectionalStream()": { "args": [], @@ -11168,8 +12022,7 @@ "createCommandEncoder()": { "args": [], "for": [ - "GPUDevice", - "MLContext" + "GPUDevice" ], "shortname": "webgpu" }, @@ -11265,49 +12118,15 @@ "shortname": "webnn" } }, - "createContextSync()": { - "createContextSync()": { - "args": [], - "for": [ - "ML" - ], - "shortname": "webnn" - }, - "createContextSync(gpuDevice)": { - "args": [ - "gpuDevice" - ], - "for": [ - "ML" - ], - "shortname": "webnn" - }, - "createContextSync(options)": { - "args": [ - "options" - ], - "for": [ - "ML" - ], - "shortname": "webnn" - } - }, "createContextualFragment()": { - "createContextualFragment()": { - "args": [], - "for": [ - "Range" - ], - "shortname": "dom-parsing" - }, - "createContextualFragment(fragment)": { + "createContextualFragment(string)": { "args": [ - "fragment" + "string" ], "for": [ "Range" ], - "shortname": "dom-parsing" + "shortname": "html" } }, "createConvolver()": { @@ -11420,27 +12239,6 @@ "shortname": "webaudio" } }, - "createDelayed()": { - "createDelayed(items)": { - "args": [ - "items" - ], - "for": [ - "ClipboardItem" - ], - "shortname": "clipboard-apis" - }, - "createDelayed(items, options)": { - "args": [ - "items", - "options" - ], - "for": [ - "ClipboardItem" - ], - "shortname": "clipboard-apis" - } - }, "createDocument()": { "createDocument(namespace, qualifiedName)": { "args": [ @@ -11665,6 +12463,17 @@ "shortname": "dom" } }, + "createHandwritingRecognizer()": { + "createHandwritingRecognizer(constraint)": { + "args": [ + "constraint" + ], + "for": [ + "Navigator" + ], + "shortname": "handwriting-recognition" + } + }, "createIIRFilter()": { "createIIRFilter(feedforward, feedback)": { "args": [ @@ -11869,9 +12678,10 @@ "obj" ], "for": [ + "StorageAccessHandle", "URL" ], - "shortname": "fileapi" + "shortname": "saa-non-cookie-storage" } }, "createOffer!overload-1()": { @@ -12251,6 +13061,15 @@ "shortname": "trusted-types" } }, + "createSendGroup()": { + "createSendGroup()": { + "args": [], + "for": [ + "WebTransport" + ], + "shortname": "webtransport" + } + }, "createSession()": { "createSession()": { "args": [], @@ -12259,9 +13078,8 @@ ], "shortname": "encrypted-media" }, - "createSession(, sessionType)": { + "createSession(sessionType)": { "args": [ - "", "sessionType" ], "for": [ @@ -12425,6 +13243,27 @@ "shortname": "webaudio" } }, + "createWorklet()": { + "createWorklet(moduleURL)": { + "args": [ + "moduleURL" + ], + "for": [ + "SharedStorage" + ], + "shortname": "shared-storage" + }, + "createWorklet(moduleURL, options)": { + "args": [ + "moduleURL", + "options" + ], + "for": [ + "SharedStorage" + ], + "shortname": "shared-storage" + } + }, "createWritable()": { "createWritable()": { "args": [], @@ -12473,6 +13312,15 @@ "shortname": "wasm-js-api" } }, + "dataType()": { + "dataType()": { + "args": [], + "for": [ + "MLOperand" + ], + "shortname": "webnn" + } + }, "databases()": { "databases()": { "args": [], @@ -12737,6 +13585,7 @@ ], "for": [ "Map", + "SharedStorage", "WeakMap" ], "shortname": "ecmascript" @@ -12749,10 +13598,21 @@ "CookieStore", "FormData", "Headers", + "StorageBucketManager", "URLSearchParams" ], "shortname": "fetch" }, + "delete(name, value)": { + "args": [ + "name", + "value" + ], + "for": [ + "URLSearchParams" + ], + "shortname": "url" + }, "delete(options)": { "args": [ "options" @@ -12979,6 +13839,39 @@ "shortname": "html" } }, + "deprecatedReplaceInURN()": { + "deprecatedReplaceInURN(urnOrConfig, replacements)": { + "args": [ + "urnOrConfig", + "replacements" + ], + "for": [ + "Navigator" + ], + "shortname": "fenced-frame" + } + }, + "deprecatedURNtoURL()": { + "deprecatedURNtoURL(urnOrConfig)": { + "args": [ + "urnOrConfig" + ], + "for": [ + "Navigator" + ], + "shortname": "fenced-frame" + }, + "deprecatedURNtoURL(urnOrConfig, send_reports)": { + "args": [ + "urnOrConfig", + "send_reports" + ], + "for": [ + "Navigator" + ], + "shortname": "fenced-frame" + } + }, "deref()": { "deref()": { "args": [], @@ -12996,6 +13889,16 @@ ], "shortname": "webcryptoapi" }, + "deriveBits(algorithm, baseKey)": { + "args": [ + "algorithm", + "baseKey" + ], + "for": [ + "SubtleCrypto" + ], + "shortname": "webcryptoapi" + }, "deriveBits(algorithm, baseKey, length)": { "args": [ "algorithm", @@ -13041,7 +13944,7 @@ "GPUTexture", "XRCompositionLayer" ], - "shortname": "close-watcher" + "shortname": "html" } }, "detach()": { @@ -13067,6 +13970,17 @@ "shortname": "shape-detection-api" } }, + "difference()": { + "difference(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" + } + }, "digest()": { "digest()": { "args": [], @@ -13147,12 +14061,14 @@ "for": [ "AudioNode", "BluetoothRemoteGATTServer", + "IdentityCredential", "IntersectionObserver", "MutationObserver", "PerformanceObserver", "PressureObserver", "ReportingObserver", - "ResizeObserver" + "ResizeObserver", + "SmartCardConnection" ], "shortname": "dom" }, @@ -13205,6 +14121,24 @@ ], "shortname": "webaudio" }, + "disconnect(disposition)": { + "args": [ + "disposition" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, + "disconnect(options)": { + "args": [ + "options" + ], + "for": [ + "IdentityCredential" + ], + "shortname": "fedcm" + }, "disconnect(output)": { "args": [ "output" @@ -13215,21 +14149,8 @@ "shortname": "webaudio" } }, - "dispatch()": { - "dispatch(graph, inputs, outputs)": { - "args": [ - "graph", - "inputs", - "outputs" - ], - "for": [ - "MLCommandEncoder" - ], - "shortname": "webnn" - } - }, - "dispatchEvent()": { - "dispatchEvent(event)": { + "dispatchEvent()": { + "dispatchEvent(event)": { "args": [ "event" ], @@ -13309,12 +14230,23 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "div(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "document.write()": { - "document.write(...)": { + "document.write(...text)": { "args": [ - "..." + "...text" ], "for": [ "Document" @@ -13323,9 +14255,9 @@ } }, "document.writeln()": { - "document.writeln(...)": { + "document.writeln(...text)": { "args": [ - "..." + "...text" ], "for": [ "Document" @@ -13419,6 +14351,16 @@ "CanvasUserInterface" ], "shortname": "html" + }, + "drawFocusIfNeeded(path, element)": { + "args": [ + "path", + "element" + ], + "for": [ + "CanvasUserInterface" + ], + "shortname": "html" } }, "drawImage()": { @@ -13620,34 +14562,18 @@ } }, "elu()": { - "elu()": { - "args": [], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "elu(options)": { - "args": [ - "options" - ], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "elu(x)": { + "elu(input)": { "args": [ - "x" + "input" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "elu(x, options)": { + "elu(input, options)": { "args": [ - "x", + "input", "options" ], "for": [ @@ -13685,6 +14611,24 @@ "shortname": "service-workers" } }, + "enableDebugMode()": { + "enableDebugMode()": { + "args": [], + "for": [ + "PrivateAggregation" + ], + "shortname": "private-aggregation-api" + }, + "enableDebugMode(options)": { + "args": [ + "options" + ], + "for": [ + "PrivateAggregation" + ], + "shortname": "private-aggregation-api" + } + }, "enableDelegations()": { "enableDelegations()": { "args": [], @@ -13917,7 +14861,7 @@ "Navigation", "Set" ], - "shortname": "ecmascript" + "shortname": "html" }, "entries(O)": { "args": [ @@ -13938,6 +14882,29 @@ "shortname": "mediacapture-streams" } }, + "equal()": { + "equal(a, b)": { + "args": [ + "a", + "b" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "equal(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "equals()": { "equals()": { "args": [], @@ -13965,6 +14932,27 @@ "shortname": "css-typed-om" } }, + "erf()": { + "erf(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "erf(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "error()": { "error()": { "args": [], @@ -14029,13 +15017,24 @@ "shortname": "ecmascript" } }, + "establishContext()": { + "establishContext()": { + "args": [], + "for": [ + "SmartCardResourceManager" + ], + "shortname": "web-smart-card" + } + }, "estimate()": { "estimate()": { "args": [], "for": [ + "StorageAccessHandle", + "StorageBucket", "StorageManager" ], - "shortname": "storage" + "shortname": "saa-non-cookie-storage" } }, "eval()": { @@ -14128,9 +15127,9 @@ } }, "every()": { - "every(callbackfn, thisArg)": { + "every(callback, thisArg)": { "args": [ - "callbackfn", + "callback", "thisArg" ], "for": [ @@ -14240,12 +15239,30 @@ } }, "exp()": { + "exp(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "exp(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "exp(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -14268,6 +15285,27 @@ ], "shortname": "json-ld-api" }, + "expand(input, newShape)": { + "args": [ + "input", + "newShape" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "expand(input, newShape, options)": { + "args": [ + "input", + "newShape", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "expand(input, options)": { "args": [ "input", @@ -14279,6 +15317,15 @@ "shortname": "json-ld-api" } }, + "expires()": { + "expires()": { + "args": [], + "for": [ + "StorageBucket" + ], + "shortname": "storage-buckets" + } + }, "expm1()": { "expm1(x)": { "args": [ @@ -14539,9 +15586,9 @@ } }, "filter()": { - "filter(callbackfn, thisArg)": { + "filter(callback, thisArg)": { "args": [ - "callbackfn", + "callback", "thisArg" ], "for": [ @@ -14632,9 +15679,9 @@ "Animation", "GPUCommandEncoder", "GPURenderBundleEncoder", - "MLCommandEncoder" + "HandwritingRecognizer" ], - "shortname": "web-animations" + "shortname": "handwriting-recognition" }, "finish(descriptor)": { "args": [ @@ -14642,8 +15689,7 @@ ], "for": [ "GPUCommandEncoder", - "GPURenderBundleEncoder", - "MLCommandEncoder" + "GPURenderBundleEncoder" ], "shortname": "webgpu" } @@ -14747,12 +15793,30 @@ } }, "floor()": { + "floor(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "floor(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "floor(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -14809,9 +15873,9 @@ } }, "fontcolor()": { - "fontcolor(color)": { + "fontcolor(colour)": { "args": [ - "color" + "colour" ], "for": [ "String" @@ -14842,9 +15906,9 @@ } }, "forEach()": { - "forEach(callbackfn, thisArg)": { + "forEach(callback, thisArg)": { "args": [ - "callbackfn", + "callback", "thisArg" ], "for": [ @@ -14881,8 +15945,7 @@ "forward()": { "args": [], "for": [ - "History", - "Navigation" + "History" ], "shortname": "html" }, @@ -14893,7 +15956,7 @@ "for": [ "Navigation" ], - "shortname": "navigation-api" + "shortname": "html" } }, "fr()": { @@ -14949,10 +16012,19 @@ } }, "from()": { - "from(items, mapfn, thisArg)": { + "from(asyncIterable)": { + "args": [ + "asyncIterable" + ], + "for": [ + "ReadableStream" + ], + "shortname": "streams" + }, + "from(items, mapper, thisArg)": { "args": [ "items", - "mapfn", + "mapper", "thisArg" ], "for": [ @@ -14987,18 +16059,20 @@ "fromElement()": { "args": [], "for": [ - "CropTarget" + "CropTarget", + "RestrictionTarget" ], - "shortname": "mediacapture-region" + "shortname": "element-capture" }, "fromElement(element)": { "args": [ "element" ], "for": [ - "CropTarget" + "CropTarget", + "RestrictionTarget" ], - "shortname": "mediacapture-region" + "shortname": "element-capture" } }, "fromEntries()": { @@ -15036,19 +16110,6 @@ "shortname": "geometry" } }, - "fromLiteral()": { - "fromLiteral(templateStringsArray)": { - "args": [ - "templateStringsArray" - ], - "for": [ - "TrustedHTML", - "TrustedScript", - "TrustedScriptURL" - ], - "shortname": "trusted-types" - } - }, "fromMatrix()": { "fromMatrix()": { "args": [], @@ -15176,6 +16237,27 @@ ], "shortname": "webrtc-ice" }, + "gather(input, indices)": { + "args": [ + "input", + "indices" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "gather(input, indices, options)": { + "args": [ + "input", + "indices", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "gather(options)": { "args": [ "options" @@ -15195,6 +16277,27 @@ "shortname": "testutils" } }, + "gelu()": { + "gelu(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "gelu(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "gemm()": { "gemm(a, b)": { "args": [ @@ -15270,6 +16373,7 @@ "rid" ], "for": [ + "RTCRtpScriptTransform", "RTCRtpScriptTransformer" ], "shortname": "webrtc-encoded-transform" @@ -15310,7 +16414,8 @@ "CookieStore", "CredentialsContainer", "MediaKeyStatusMap", - "NamedFlowMap" + "NamedFlowMap", + "Sanitizer" ], "shortname": "cookie-store" }, @@ -15348,6 +16453,7 @@ ], "for": [ "Map", + "SharedStorage", "WeakMap", "XRHand" ], @@ -15550,6 +16656,24 @@ "shortname": "web-animations" } }, + "getAnnotatedAssetId()": { + "getAnnotatedAssetId()": { + "args": [], + "for": [ + "NavigatorManagedData" + ], + "shortname": "device-attributes" + } + }, + "getAnnotatedLocation()": { + "getAnnotatedLocation()": { + "args": [], + "for": [ + "NavigatorManagedData" + ], + "shortname": "device-attributes" + } + }, "getAsFile()": { "getAsFile()": { "args": [], @@ -15580,6 +16704,13 @@ } }, "getAttribute()": { + "getAttribute()": { + "args": [], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, "getAttribute(qualifiedName)": { "args": [ "qualifiedName" @@ -15588,6 +16719,15 @@ "Element" ], "shortname": "dom" + }, + "getAttribute(tag)": { + "args": [ + "tag" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" } }, "getAttributeNS()": { @@ -15930,8 +17070,8 @@ "shortname": "css-animation-worklet" } }, - "getClientExtensionResults()": { - "getClientExtensionResults()": { + "getClientCapabilities()": { + "getClientCapabilities()": { "args": [], "for": [ "PublicKeyCredential" @@ -15939,8 +17079,17 @@ "shortname": "webauthn" } }, - "getClientRect()": { - "getClientRect()": { + "getClientExtensionResults()": { + "getClientExtensionResults()": { + "args": [], + "for": [ + "PublicKeyCredential" + ], + "shortname": "webauthn" + } + }, + "getClientRect()": { + "getClientRect()": { "args": [], "for": [ "CaretPosition" @@ -16022,7 +17171,7 @@ "AnimationEffect", "WorkletAnimationEffect" ], - "shortname": "web-animations" + "shortname": "css-animation-worklet" } }, "getConfiguration()": { @@ -16030,10 +17179,9 @@ "args": [], "for": [ "MediaKeySystemAccess", - "RTCPeerConnection", - "Sanitizer" + "RTCPeerConnection" ], - "shortname": "sanitizer-api" + "shortname": "encrypted-media" } }, "getConstraints()": { @@ -16162,18 +17310,9 @@ ], "shortname": "scroll-animations" }, - "getCurrentTime(optionalrangeName)": { + "getCurrentTime(options)": { "args": [ - "optionalrangeName" - ], - "for": [ - "AnimationTimeline" - ], - "shortname": "scroll-animations" - }, - "getCurrentTime(rangeName)": { - "args": [ - "rangeName" + "options" ], "for": [ "AnimationTimeline" @@ -16210,15 +17349,6 @@ "shortname": "ecmascript" } }, - "getDefaultConfiguration()": { - "getDefaultConfiguration()": { - "args": [], - "for": [ - "Sanitizer" - ], - "shortname": "sanitizer-api" - } - }, "getDepthInMeters()": { "getDepthInMeters(x, y)": { "args": [ @@ -16320,6 +17450,8 @@ "args": [], "for": [ "FileSystemDirectoryEntry", + "StorageAccessHandle", + "StorageBucket", "StorageManager" ], "shortname": "fs" @@ -16388,6 +17520,15 @@ "shortname": "fs" } }, + "getDirectoryId()": { + "getDirectoryId()": { + "args": [], + "for": [ + "NavigatorManagedData" + ], + "shortname": "device-attributes" + } + }, "getDisplayMedia()": { "getDisplayMedia()": { "args": [], @@ -16696,6 +17837,18 @@ "shortname": "gamepad" } }, + "getHTML()": { + "getHTML(options)": { + "args": [ + "options" + ], + "for": [ + "Element", + "ShadowRoot" + ], + "shortname": "html" + } + }, "getHighEntropyValues()": { "getHighEntropyValues(hints)": { "args": [ @@ -16730,6 +17883,15 @@ "shortname": "webxr-hit-test" } }, + "getHostname()": { + "getHostname()": { + "args": [], + "for": [ + "NavigatorManagedData" + ], + "shortname": "device-attributes" + } + }, "getHours()": { "getHours()": { "args": [], @@ -16854,6 +18016,17 @@ "shortname": "ecmascript" } }, + "getInterestGroupAdAuctionData()": { + "getInterestGroupAdAuctionData(config)": { + "args": [ + "config" + ], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, "getItem()": { "getItem(key)": { "args": [ @@ -16961,6 +18134,17 @@ "shortname": "webrtc" } }, + "getManagedConfiguration()": { + "getManagedConfiguration(keys)": { + "args": [ + "keys" + ], + "for": [ + "NavigatorManagedData" + ], + "shortname": "managed-configuration" + } + }, "getMappedRange()": { "getMappedRange()": { "args": [], @@ -17046,6 +18230,17 @@ "shortname": "ecmascript" } }, + "getName()": { + "getName(constructor)": { + "args": [ + "constructor" + ], + "for": [ + "CustomElementRegistry" + ], + "shortname": "html" + } + }, "getNamedItem()": { "getNamedItem(qualifiedName)": { "args": [ @@ -17080,6 +18275,15 @@ "shortname": "webxr" } }, + "getNestedConfigs()": { + "getNestedConfigs()": { + "args": [], + "for": [ + "Fence" + ], + "shortname": "fenced-frame" + } + }, "getNotifications()": { "getNotifications()": { "args": [], @@ -17241,6 +18445,15 @@ "shortname": "image-capture" } }, + "getPoints()": { + "getPoints()": { + "args": [], + "for": [ + "HandwritingStroke" + ], + "shortname": "handwriting-recognition" + } + }, "getPorts()": { "getPorts()": { "args": [], @@ -17280,6 +18493,15 @@ "shortname": "pointerevents" } }, + "getPrediction()": { + "getPrediction()": { + "args": [], + "for": [ + "HandwritingDrawing" + ], + "shortname": "handwriting-recognition" + } + }, "getPreferredCanvasFormat()": { "getPreferredCanvasFormat()": { "args": [], @@ -17620,7 +18842,7 @@ "for": [ "Window" ], - "shortname": "window-placement" + "shortname": "window-management" } }, "getSeconds()": { @@ -17660,6 +18882,15 @@ "shortname": "webrtc" } }, + "getSerialNumber()": { + "getSerialNumber()": { + "args": [], + "for": [ + "NavigatorManagedData" + ], + "shortname": "device-attributes" + } + }, "getService()": { "getService(name)": { "args": [ @@ -17730,11 +18961,10 @@ "getState()": { "args": [], "for": [ - "NavigationDestination", "NavigationHistoryEntry", "NavigationPreloadManager" ], - "shortname": "navigation-api" + "shortname": "html" } }, "getStats()": { @@ -17746,6 +18976,7 @@ "RTCRtpSender", "WebTransport", "WebTransportReceiveStream", + "WebTransportSendGroup", "WebTransportSendStream" ], "shortname": "webrtc" @@ -17760,6 +18991,61 @@ "shortname": "webrtc" } }, + "getStatusChange()": { + "getStatusChange()": { + "args": [], + "for": [ + "SmartCardContext" + ], + "shortname": "web-smart-card" + }, + "getStatusChange(readerStates)": { + "args": [ + "readerStates" + ], + "for": [ + "SmartCardContext" + ], + "shortname": "web-smart-card" + }, + "getStatusChange(readerStates, options)": { + "args": [ + "readerStates", + "options" + ], + "for": [ + "SmartCardContext" + ], + "shortname": "web-smart-card" + } + }, + "getStatusForPolicy()": { + "getStatusForPolicy()": { + "args": [], + "for": [ + "MediaKeys" + ], + "shortname": "encrypted-media" + }, + "getStatusForPolicy(policy)": { + "args": [ + "policy" + ], + "for": [ + "MediaKeys" + ], + "shortname": "encrypted-media" + } + }, + "getStrokes()": { + "getStrokes()": { + "args": [], + "for": [ + "HandwritingDrawing" + ], + "shortname": "handwriting-recognition" + } + }, "getSubImage()": { "getSubImage(layer, frame)": { "args": [ @@ -18085,6 +19371,15 @@ "shortname": "ecmascript" } }, + "getUnsafe()": { + "getUnsafe()": { + "args": [], + "for": [ + "Sanitizer" + ], + "shortname": "sanitizer-api" + } + }, "getUserData()": { "getUserData()": { "args": [], @@ -18094,6 +19389,17 @@ "shortname": "dom" } }, + "getUserInfo()": { + "getUserInfo(config)": { + "args": [ + "config" + ], + "for": [ + "IdentityProvider" + ], + "shortname": "fedcm" + } + }, "getUserMedia()": { "getUserMedia()": { "args": [], @@ -18207,6 +19513,7 @@ "getWriter()": { "args": [], "for": [ + "WebTransportSendStream", "WritableStream" ], "shortname": "streams" @@ -18270,6 +19577,52 @@ "shortname": "css-typed-om" } }, + "greater()": { + "greater(a, b)": { + "args": [ + "a", + "b" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "greater(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, + "greaterOrEqual()": { + "greaterOrEqual(a, b)": { + "args": [ + "a", + "b" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "greaterOrEqual(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "group()": { "group()": { "args": [], @@ -18288,6 +19641,19 @@ "shortname": "console" } }, + "groupBy()": { + "groupBy(items, callback)": { + "args": [ + "items", + "callback" + ], + "for": [ + "Map", + "Object" + ], + "shortname": "ecmascript" + } + }, "groupCollapsed()": { "groupCollapsed()": { "args": [], @@ -18335,6 +19701,15 @@ "Table" ], "shortname": "wasm-js-api" + }, + "grow(newLength)": { + "args": [ + "newLength" + ], + "for": [ + "SharedArrayBuffer" + ], + "shortname": "ecmascript" } }, "gru()": { @@ -18407,34 +19782,18 @@ } }, "hardSigmoid()": { - "hardSigmoid()": { - "args": [], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "hardSigmoid(options)": { - "args": [ - "options" - ], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "hardSigmoid(x)": { + "hardSigmoid(input)": { "args": [ - "x" + "input" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "hardSigmoid(x, options)": { + "hardSigmoid(input, options)": { "args": [ - "x", + "input", "options" ], "for": [ @@ -18444,16 +19803,19 @@ } }, "hardSwish()": { - "hardSwish()": { - "args": [], + "hardSwish(input)": { + "args": [ + "input" + ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "hardSwish(x)": { + "hardSwish(input, options)": { "args": [ - "x" + "input", + "options" ], "for": [ "MLGraphBuilder" @@ -18509,6 +19871,16 @@ ], "shortname": "fetch" }, + "has(name, value)": { + "args": [ + "name", + "value" + ], + "for": [ + "URLSearchParams" + ], + "shortname": "url" + }, "has(property)": { "args": [ "property" @@ -18660,6 +20032,28 @@ "shortname": "pointerevents" } }, + "hasPrivateToken()": { + "hasPrivateToken(issuer)": { + "args": [ + "issuer" + ], + "for": [ + "Document" + ], + "shortname": "trust-token-api" + } + }, + "hasRedemptionRecord()": { + "hasRedemptionRecord(issuer)": { + "args": [ + "issuer" + ], + "for": [ + "Document" + ], + "shortname": "trust-token-api" + } + }, "hasStorageAccess()": { "hasStorageAccess()": { "args": [], @@ -18669,6 +20063,15 @@ "shortname": "storage-access" } }, + "hasUnpartitionedCookieAccess()": { + "hasUnpartitionedCookieAccess()": { + "args": [], + "for": [ + "Document" + ], + "shortname": "saa-non-cookie-storage" + } + }, "hide()": { "hide()": { "args": [], @@ -18709,7 +20112,28 @@ "shortname": "css-typed-om" } }, - "importExternalTexture()": { + "identity()": { + "identity(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "identity(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, + "importExternalTexture()": { "importExternalTexture(descriptor)": { "args": [ "descriptor" @@ -19562,6 +20986,63 @@ "shortname": "html" } }, + "initTextEvent()": { + "initTextEvent(type)": { + "args": [ + "type" + ], + "for": [ + "TextEvent" + ], + "shortname": "uievents" + }, + "initTextEvent(type, bubbles)": { + "args": [ + "type", + "bubbles" + ], + "for": [ + "TextEvent" + ], + "shortname": "uievents" + }, + "initTextEvent(type, bubbles, cancelable)": { + "args": [ + "type", + "bubbles", + "cancelable" + ], + "for": [ + "TextEvent" + ], + "shortname": "uievents" + }, + "initTextEvent(type, bubbles, cancelable, view)": { + "args": [ + "type", + "bubbles", + "cancelable", + "view" + ], + "for": [ + "TextEvent" + ], + "shortname": "uievents" + }, + "initTextEvent(type, bubbles, cancelable, view, data)": { + "args": [ + "type", + "bubbles", + "cancelable", + "view", + "data" + ], + "for": [ + "TextEvent" + ], + "shortname": "uievents" + } + }, "initUIEvent()": { "initUIEvent(typeArg)": { "args": [ @@ -19619,22 +21100,20 @@ "shortname": "uievents" } }, - "initializeGraph()": { - "initializeGraph(graph)": { - "args": [ - "graph" - ], + "initiateRoomCapture()": { + "initiateRoomCapture()": { + "args": [], "for": [ - "MLCommandEncoder" + "XRSession" ], - "shortname": "webnn" + "shortname": "webxr-plane-detection" } }, "input()": { - "input(name, desc)": { + "input(name, descriptor)": { "args": [ "name", - "desc" + "descriptor" ], "for": [ "MLGraphBuilder" @@ -19655,22 +21134,15 @@ } }, "insertAdjacentHTML()": { - "insertAdjacentHTML()": { - "args": [], - "for": [ - "Element" - ], - "shortname": "dom-parsing" - }, - "insertAdjacentHTML(position, text)": { + "insertAdjacentHTML(position, string)": { "args": [ "position", - "text" + "string" ], "for": [ "Element" ], - "shortname": "dom-parsing" + "shortname": "html" } }, "insertAdjacentText()": { @@ -19901,13 +21373,6 @@ } }, "intercept()": { - "intercept()": { - "args": [], - "for": [ - "NavigateEvent" - ], - "shortname": "navigation-api" - }, "intercept(options)": { "args": [ "options" @@ -19915,7 +21380,18 @@ "for": [ "NavigateEvent" ], - "shortname": "navigation-api" + "shortname": "html" + } + }, + "intersection()": { + "intersection(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" } }, "intersectsNode()": { @@ -20032,6 +21508,17 @@ "shortname": "dom" } }, + "isDisjointFrom()": { + "isDisjointFrom(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" + } + }, "isEqualNode()": { "isEqualNode(otherNode)": { "args": [ @@ -20149,6 +21636,15 @@ "shortname": "ecmascript" } }, + "isPasskeyPlatformAuthenticatorAvailable()": { + "isPasskeyPlatformAuthenticatorAvailable()": { + "args": [], + "for": [ + "PublicKeyCredential" + ], + "shortname": "webauthn" + } + }, "isPointInPath()": { "isPointInPath(path, x, y, fillRule)": { "args": [ @@ -20286,6 +21782,15 @@ "shortname": "ecmascript" } }, + "isSecurePaymentConfirmationAvailable()": { + "isSecurePaymentConfirmationAvailable()": { + "args": [], + "for": [ + "PaymentRequest" + ], + "shortname": "secure-payment-confirmation" + } + }, "isSessionSupported()": { "isSessionSupported(mode)": { "args": [ @@ -20297,6 +21802,28 @@ "shortname": "webxr" } }, + "isSubsetOf()": { + "isSubsetOf(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" + } + }, + "isSupersetOf()": { + "isSupersetOf(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" + } + }, "isTypeSupported()": { "isTypeSupported()": { "args": [], @@ -20337,6 +21864,15 @@ "shortname": "ecmascript" } }, + "isWellFormed()": { + "isWellFormed()": { + "args": [], + "for": [ + "String" + ], + "shortname": "ecmascript" + } + }, "isochronousTransferIn()": { "isochronousTransferIn(endpointNumber, packetLengths)": { "args": [ @@ -20447,6 +21983,17 @@ "shortname": "ecmascript" } }, + "joinAdInterestGroup()": { + "joinAdInterestGroup(group)": { + "args": [ + "group" + ], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, "json()": { "json()": { "args": [], @@ -20518,7 +22065,8 @@ "Cache", "CacheStorage", "Map", - "Set" + "Set", + "StorageBucketManager" ], "shortname": "ecmascript" }, @@ -20604,6 +22152,27 @@ "shortname": "ecmascript" } }, + "layerNormalization()": { + "layerNormalization(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "layerNormalization(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "layoutNextFragment()": { "layoutNextFragment(constraints, breakToken)": { "args": [ @@ -20617,34 +22186,91 @@ } }, "leakyRelu()": { - "leakyRelu()": { - "args": [], + "leakyRelu(input)": { + "args": [ + "input" + ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "leakyRelu(options)": { + "leakyRelu(input, options)": { "args": [ + "input", "options" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" + } + }, + "leaveAdInterestGroup()": { + "leaveAdInterestGroup()": { + "args": [], + "for": [ + "Navigator" + ], + "shortname": "turtledove" }, - "leakyRelu(x)": { + "leaveAdInterestGroup(group)": { "args": [ - "x" + "group" + ], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, + "length()": { + "length()": { + "args": [], + "for": [ + "SharedStorage" + ], + "shortname": "shared-storage" + } + }, + "lesser()": { + "lesser(a, b)": { + "args": [ + "a", + "b" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "leakyRelu(x, options)": { + "lesser(a, b, options)": { "args": [ - "x", + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, + "lesserOrEqual()": { + "lesserOrEqual(a, b)": { + "args": [ + "a", + "b" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "lesserOrEqual(a, b, options)": { + "args": [ + "a", + "b", "options" ], "for": [ @@ -20677,34 +22303,18 @@ } }, "linear()": { - "linear()": { - "args": [], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "linear(options)": { - "args": [ - "options" - ], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "linear(x)": { + "linear(input)": { "args": [ - "x" + "input" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "linear(x, options)": { + "linear(input, options)": { "args": [ - "x", + "input", "options" ], "for": [ @@ -20754,6 +22364,15 @@ "shortname": "digital-goods" } }, + "listReaders()": { + "listReaders()": { + "args": [], + "for": [ + "SmartCardContext" + ], + "shortname": "web-smart-card" + } + }, "load()": { "load()": { "args": [], @@ -20861,21 +22480,39 @@ ], "shortname": "console" }, - "log(x)": { + "log(input)": { "args": [ - "x" + "input" ], "for": [ - "MLGraphBuilder", - "Math" + "MLGraphBuilder" ], - "shortname": "ecmascript" - } - }, - "log10()": { - "log10(x)": { + "shortname": "webnn" + }, + "log(input, options)": { "args": [ - "x" + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "log(x)": { + "args": [ + "x" + ], + "for": [ + "Math" + ], + "shortname": "ecmascript" + } + }, + "log10()": { + "log10(x)": { + "args": [ + "x" ], "for": [ "Math" @@ -20905,6 +22542,27 @@ "shortname": "ecmascript" } }, + "logicalNot()": { + "logicalNot(a)": { + "args": [ + "a" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "logicalNot(a, options)": { + "args": [ + "a", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "lookupNamespaceURI()": { "lookupNamespaceURI(prefix)": { "args": [ @@ -21103,9 +22761,9 @@ } }, "map()": { - "map(callbackfn, thisArg)": { + "map(callback, thisArg)": { "args": [ - "callbackfn", + "callback", "thisArg" ], "for": [ @@ -21291,6 +22949,17 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "matmul(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "matrixTransform()": { @@ -21346,6 +23015,17 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "max(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "maxPool2d()": { @@ -21493,6 +23173,17 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "min(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "mm()": { @@ -21607,6 +23298,17 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "mul(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" } }, "multiply()": { @@ -21686,10 +23388,9 @@ "url" ], "for": [ - "Navigation", "WindowClient" ], - "shortname": "navigation-api" + "shortname": "service-workers" }, "navigate(url, options)": { "args": [ @@ -21699,13 +23400,23 @@ "for": [ "Navigation" ], - "shortname": "navigation-api" + "shortname": "html" } }, "neg()": { - "neg(x)": { + "neg(input)": { "args": [ - "x" + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "neg(input, options)": { + "args": [ + "input", + "options" ], "for": [ "MLGraphBuilder" @@ -21749,18 +23460,6 @@ "shortname": "js-self-profiling" } }, - "next()": { - "next(value)": { - "args": [ - "value" - ], - "for": [ - "AsyncGenerator", - "Generator" - ], - "shortname": "ecmascript" - } - }, "nextNode()": { "nextNode()": { "args": [], @@ -21880,6 +23579,16 @@ ], "shortname": "compute-pressure" }, + "observe(source, options)": { + "args": [ + "source", + "options" + ], + "for": [ + "PressureObserver" + ], + "shortname": "compute-pressure" + }, "observe(target)": { "args": [ "target" @@ -22006,9 +23715,20 @@ "name" ], "for": [ - "IDBFactory" + "IDBFactory", + "StorageBucketManager" ], - "shortname": "indexeddb" + "shortname": "storage-buckets" + }, + "open(name, options)": { + "args": [ + "name", + "options" + ], + "for": [ + "StorageBucketManager" + ], + "shortname": "storage-buckets" }, "open(name, version)": { "args": [ @@ -22180,20 +23900,22 @@ } }, "pad()": { - "pad(input, padding)": { + "pad(input, beginningPadding, endingPadding)": { "args": [ "input", - "padding" + "beginningPadding", + "endingPadding" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "pad(input, padding, options)": { + "pad(input, beginningPadding, endingPadding, options)": { "args": [ "input", - "padding", + "beginningPadding", + "endingPadding", "options" ], "for": [ @@ -22274,6 +23996,25 @@ "JSON" ], "shortname": "ecmascript" + }, + "parse(url)": { + "args": [ + "url" + ], + "for": [ + "URL" + ], + "shortname": "url" + }, + "parse(url, base)": { + "args": [ + "url", + "base" + ], + "for": [ + "URL" + ], + "shortname": "url" } }, "parseAll()": { @@ -22376,6 +24117,48 @@ "shortname": "html" } }, + "parseHTML()": { + "parseHTML(html)": { + "args": [ + "html" + ], + "for": [ + "Document" + ], + "shortname": "sanitizer-api" + }, + "parseHTML(html, options)": { + "args": [ + "html", + "options" + ], + "for": [ + "Document" + ], + "shortname": "sanitizer-api" + } + }, + "parseHTMLUnsafe()": { + "parseHTMLUnsafe(html)": { + "args": [ + "html" + ], + "for": [ + "Document" + ], + "shortname": "html" + }, + "parseHTMLUnsafe(html, options)": { + "args": [ + "html", + "options" + ], + "for": [ + "Document" + ], + "shortname": "sanitizer-api" + } + }, "parseInt()": { "parseInt(string, radix)": { "args": [ @@ -22542,6 +24325,7 @@ "args": [], "for": [ "Animation", + "StorageBucket", "StorageManager" ], "shortname": "storage" @@ -22551,6 +24335,7 @@ "persisted()": { "args": [], "for": [ + "StorageBucket", "StorageManager" ], "shortname": "storage" @@ -22606,7 +24391,7 @@ "AnimationTimeline", "HTMLMediaElement" ], - "shortname": "web-animations" + "shortname": "html" }, "play(effect)": { "args": [ @@ -22624,7 +24409,7 @@ "for": [ "GamepadHapticActuator" ], - "shortname": "gamepad-extensions" + "shortname": "gamepad" }, "playEffect(type)": { "args": [ @@ -22633,7 +24418,7 @@ "for": [ "GamepadHapticActuator" ], - "shortname": "gamepad-extensions" + "shortname": "gamepad" }, "playEffect(type, params)": { "args": [ @@ -22643,7 +24428,7 @@ "for": [ "GamepadHapticActuator" ], - "shortname": "gamepad-extensions" + "shortname": "gamepad" } }, "pop()": { @@ -22773,6 +24558,17 @@ ], "shortname": "webnn" }, + "pow(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "pow(base, exponent)": { "args": [ "base", @@ -22802,6 +24598,29 @@ "shortname": "geometry" } }, + "prelu()": { + "prelu(input, slope)": { + "args": [ + "input", + "slope" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "prelu(input, slope, options)": { + "args": [ + "input", + "slope", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "prepend()": { "prepend()": { "args": [], @@ -23099,6 +24918,28 @@ "shortname": "permissions" } }, + "queryFeatureSupport()": { + "queryFeatureSupport(feature)": { + "args": [ + "feature" + ], + "for": [ + "ProtectedAudience" + ], + "shortname": "turtledove" + } + }, + "queryHandwritingRecognizer()": { + "queryHandwritingRecognizer(constraint)": { + "args": [ + "constraint" + ], + "for": [ + "Navigator" + ], + "shortname": "handwriting-recognition" + } + }, "queryLocalFonts()": { "queryLocalFonts()": { "args": [], @@ -23220,6 +25061,28 @@ "shortname": "ecmascript" } }, + "rcap()": { + "rcap(value)": { + "args": [ + "value" + ], + "for": [ + "CSS" + ], + "shortname": "css-typed-om" + } + }, + "rch()": { + "rch(value)": { + "args": [ + "value" + ], + "for": [ + "CSS" + ], + "shortname": "css-typed-om" + } + }, "read()": { "read()": { "args": [], @@ -23259,6 +25122,15 @@ ], "shortname": "fs" }, + "read(formats)": { + "args": [ + "formats" + ], + "for": [ + "Clipboard" + ], + "shortname": "clipboard-apis" + }, "read(readOptions)": { "args": [ "readOptions" @@ -23276,6 +25148,16 @@ "ReadableStreamBYOBReader" ], "shortname": "streams" + }, + "read(view, options)": { + "args": [ + "view", + "options" + ], + "for": [ + "ReadableStreamBYOBReader" + ], + "shortname": "streams" } }, "readAsArrayBuffer()": { @@ -23378,17 +25260,8 @@ "shortname": "web-bluetooth" } }, - "ready()": { - "ready()": { - "args": [], - "for": [ - "FontFaceSet" - ], - "shortname": "css-font-loading" - } - }, - "receiveFeatureReport()": { - "receiveFeatureReport()": { + "receiveFeatureReport()": { + "receiveFeatureReport()": { "args": [], "for": [ "HIDDevice" @@ -23405,6 +25278,27 @@ "shortname": "webhid" } }, + "reciprocal()": { + "reciprocal(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "reciprocal(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, "reconnect()": { "reconnect()": { "args": [], @@ -23459,9 +25353,9 @@ } }, "reduce()": { - "reduce(callbackfn, initialValue)": { + "reduce(callback, initialValue)": { "args": [ - "callbackfn", + "callback", "initialValue" ], "for": [ @@ -23640,9 +25534,9 @@ } }, "reduceRight()": { - "reduceRight(callbackfn, initialValue)": { + "reduceRight(callback, initialValue)": { "args": [ - "callbackfn", + "callback", "initialValue" ], "for": [ @@ -23720,6 +25614,16 @@ ], "shortname": "webrtc-identity" }, + "register(name, operationCtor)": { + "args": [ + "name", + "operationCtor" + ], + "for": [ + "SharedStorageWorkletGlobalScope" + ], + "shortname": "shared-storage" + }, "register(scriptURL)": { "args": [ "scriptURL" @@ -23771,6 +25675,29 @@ "shortname": "ecmascript" } }, + "registerAdBeacon()": { + "registerAdBeacon(map)": { + "args": [ + "map" + ], + "for": [ + "InterestGroupReportingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + } + }, + "registerAdMacro()": { + "registerAdMacro(name, value)": { + "args": [ + "name", + "value" + ], + "for": [ + "InterestGroupReportingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + } + }, "registerAnimator()": { "registerAnimator(name, animatorCtor)": { "args": [ @@ -23916,8 +25843,7 @@ "reload()": { "args": [], "for": [ - "Location", - "Navigation" + "Location" ], "shortname": "html" }, @@ -23928,20 +25854,23 @@ "for": [ "Navigation" ], - "shortname": "navigation-api" + "shortname": "html" } }, "relu()": { - "relu()": { - "args": [], + "relu(input)": { + "args": [ + "input" + ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "relu(x)": { + "relu(input, options)": { "args": [ - "x" + "input", + "options" ], "for": [ "MLGraphBuilder" @@ -23960,6 +25889,15 @@ "shortname": "css-typed-om" } }, + "remainingBudget()": { + "remainingBudget()": { + "args": [], + "for": [ + "SharedStorage" + ], + "shortname": "shared-storage" + } + }, "remove()": { "remove()": { "args": [], @@ -24252,6 +26190,17 @@ "shortname": "media-source" } }, + "removeStroke()": { + "removeStroke(stroke)": { + "args": [ + "stroke" + ], + "for": [ + "HandwritingDrawing" + ], + "shortname": "handwriting-recognition" + } + }, "removeTrack()": { "removeTrack()": { "args": [], @@ -24498,6 +26447,28 @@ "shortname": "dom" } }, + "reportAdAuctionLoss()": { + "reportAdAuctionLoss(url)": { + "args": [ + "url" + ], + "for": [ + "ForDebuggingOnly" + ], + "shortname": "turtledove" + } + }, + "reportAdAuctionWin()": { + "reportAdAuctionWin(url)": { + "args": [ + "url" + ], + "for": [ + "ForDebuggingOnly" + ], + "shortname": "turtledove" + } + }, "reportError()": { "reportError(e)": { "args": [ @@ -24509,6 +26480,24 @@ "shortname": "html" } }, + "reportEvent()": { + "reportEvent()": { + "args": [], + "for": [ + "Fence" + ], + "shortname": "fenced-frame" + }, + "reportEvent(event)": { + "args": [ + "event" + ], + "for": [ + "Fence" + ], + "shortname": "fenced-frame" + } + }, "reportValidity()": { "reportValidity()": { "args": [], @@ -24592,24 +26581,6 @@ "shortname": "webgpu" } }, - "requestAdapterInfo()": { - "requestAdapterInfo()": { - "args": [], - "for": [ - "GPUAdapter" - ], - "shortname": "webgpu" - }, - "requestAdapterInfo(unmaskHints)": { - "args": [ - "unmaskHints" - ], - "for": [ - "GPUAdapter" - ], - "shortname": "webgpu" - } - }, "requestAnimationFrame()": { "requestAnimationFrame(callback)": { "args": [ @@ -24622,6 +26593,15 @@ "shortname": "html" } }, + "requestClose()": { + "requestClose()": { + "args": [], + "for": [ + "CloseWatcher" + ], + "shortname": "html" + } + }, "requestData()": { "requestData()": { "args": [], @@ -24739,6 +26719,24 @@ "shortname": "requestidlecallback" } }, + "requestLEScan()": { + "requestLEScan()": { + "args": [], + "for": [ + "Bluetooth" + ], + "shortname": "web-bluetooth-scanning" + }, + "requestLEScan(options)": { + "args": [ + "options" + ], + "for": [ + "Bluetooth" + ], + "shortname": "web-bluetooth-scanning" + } + }, "requestLightProbe()": { "requestLightProbe()": { "args": [], @@ -24794,6 +26792,17 @@ "shortname": "encrypted-media" } }, + "requestOverride()": { + "requestOverride(value)": { + "args": [ + "value" + ], + "for": [ + "PreferenceObject" + ], + "shortname": "web-preferences-api" + } + }, "requestPermission()": { "requestPermission()": { "args": [], @@ -24806,6 +26815,15 @@ ], "shortname": "notifications" }, + "requestPermission(absolute)": { + "args": [ + "absolute" + ], + "for": [ + "DeviceOrientationEvent" + ], + "shortname": "orientation-event" + }, "requestPermission(deprecatedCallback)": { "args": [ "deprecatedCallback" @@ -24850,6 +26868,15 @@ "Element" ], "shortname": "pointerlock" + }, + "requestPointerLock(options)": { + "args": [ + "options" + ], + "for": [ + "Element" + ], + "shortname": "pointerlock" } }, "requestPort()": { @@ -24927,17 +26954,26 @@ "Document" ], "shortname": "storage-access" + }, + "requestStorageAccess(types)": { + "args": [ + "types" + ], + "for": [ + "Document" + ], + "shortname": "saa-non-cookie-storage" } }, - "requestStorageAccessForOrigin()": { - "requestStorageAccessForOrigin(requestedOrigin)": { + "requestStorageAccessFor()": { + "requestStorageAccessFor(requestedOrigin)": { "args": [ "requestedOrigin" ], "for": [ "Document" ], - "shortname": "requeststorageaccessfororigin" + "shortname": "requeststorageaccessfor" } }, "requestSubmit()": { @@ -24973,6 +27009,24 @@ "shortname": "webxr" } }, + "requestWindow()": { + "requestWindow()": { + "args": [], + "for": [ + "DocumentPictureInPicture" + ], + "shortname": "document-picture-in-picture" + }, + "requestWindow(options)": { + "args": [ + "options" + ], + "for": [ + "DocumentPictureInPicture" + ], + "shortname": "document-picture-in-picture" + } + }, "resample2d()": { "resample2d(input)": { "args": [ @@ -25031,6 +27085,28 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "reshape(input, newShape, options)": { + "args": [ + "input", + "newShape", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, + "resize()": { + "resize(newLength)": { + "args": [ + "newLength" + ], + "for": [ + "ArrayBuffer" + ], + "shortname": "ecmascript" } }, "resizeBy()": { @@ -25190,6 +27266,24 @@ "shortname": "anchors" } }, + "restrictTo()": { + "restrictTo()": { + "args": [], + "for": [ + "BrowserCaptureMediaStreamTrack" + ], + "shortname": "element-capture" + }, + "restrictTo(RestrictionTarget)": { + "args": [ + "RestrictionTarget" + ], + "for": [ + "BrowserCaptureMediaStreamTrack" + ], + "shortname": "element-capture" + } + }, "resume()": { "resume()": { "args": [], @@ -25220,18 +27314,6 @@ "shortname": "payment-request" } }, - "return()": { - "return(value)": { - "args": [ - "value" - ], - "for": [ - "AsyncGenerator", - "Generator" - ], - "shortname": "ecmascript" - } - }, "reverse()": { "reverse()": { "args": [], @@ -25272,9 +27354,32 @@ "url" ], "for": [ + "StorageAccessHandle", "URL" ], - "shortname": "fileapi" + "shortname": "saa-non-cookie-storage" + } + }, + "rex()": { + "rex(value)": { + "args": [ + "value" + ], + "for": [ + "CSS" + ], + "shortname": "css-typed-om" + } + }, + "ric()": { + "ric(value)": { + "args": [ + "value" + ], + "for": [ + "CSS" + ], + "shortname": "css-typed-om" } }, "rlh()": { @@ -25559,38 +27664,49 @@ "shortname": "html" } }, - "s()": { - "s(value)": { + "run()": { + "run(name)": { "args": [ - "value" + "name" ], "for": [ - "CSS" + "SharedStorage", + "SharedStorageWorklet" ], - "shortname": "css-typed-om" + "shortname": "shared-storage" + }, + "run(name, options)": { + "args": [ + "name", + "options" + ], + "for": [ + "SharedStorage", + "SharedStorageWorklet" + ], + "shortname": "shared-storage" } }, - "sanitize()": { - "sanitize(input)": { + "runAdAuction()": { + "runAdAuction(config)": { "args": [ - "input" + "config" ], "for": [ - "Sanitizer" + "Navigator" ], - "shortname": "sanitizer-api" + "shortname": "turtledove" } }, - "sanitizeFor()": { - "sanitizeFor(element, input)": { + "s()": { + "s(value)": { "args": [ - "element", - "input" + "value" ], "for": [ - "Sanitizer" + "CSS" ], - "shortname": "sanitizer-api" + "shortname": "css-typed-om" } }, "save()": { @@ -25924,7 +28040,7 @@ "NavigateEvent", "Window" ], - "shortname": "navigation-api" + "shortname": "html" }, "scroll(options)": { "args": [ @@ -25997,15 +28113,6 @@ "shortname": "cssom-view" } }, - "scrollPathIntoView()": { - "scrollPathIntoView()": { - "args": [], - "for": [ - "CanvasUserInterface" - ], - "shortname": "html" - } - }, "scrollTo()": { "scrollTo()": { "args": [], @@ -26180,6 +28287,31 @@ "shortname": "dom" } }, + "selectURL()": { + "selectURL(name, urls)": { + "args": [ + "name", + "urls" + ], + "for": [ + "SharedStorage", + "SharedStorageWorklet" + ], + "shortname": "shared-storage" + }, + "selectURL(name, urls, options)": { + "args": [ + "name", + "urls", + "options" + ], + "for": [ + "SharedStorage", + "SharedStorageWorklet" + ], + "shortname": "shared-storage" + } + }, "send!overload-1()": { "send!overload-1()": { "args": [], @@ -26360,6 +28492,7 @@ "sendKeyFrameRequest()": { "args": [], "for": [ + "RTCRtpScriptTransform", "RTCRtpScriptTransformer" ], "shortname": "webrtc-encoded-transform" @@ -26384,6 +28517,17 @@ "shortname": "webhid" } }, + "sendReportTo()": { + "sendReportTo(url)": { + "args": [ + "url" + ], + "for": [ + "InterestGroupReportingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + } + }, "serializeToString()": { "serializeToString()": { "args": [], @@ -26446,10 +28590,22 @@ ], "for": [ "Map", + "SharedStorage", "WeakMap" ], "shortname": "ecmascript" }, + "set(key, value, options)": { + "args": [ + "key", + "value", + "options" + ], + "for": [ + "SharedStorage" + ], + "shortname": "shared-storage" + }, "set(name, blobValue)": { "args": [ "name", @@ -26566,6 +28722,13 @@ } }, "setAttribute()": { + "setAttribute()": { + "args": [], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, "setAttribute(qualifiedName, value)": { "args": [ "qualifiedName", @@ -26575,6 +28738,16 @@ "Element" ], "shortname": "dom" + }, + "setAttribute(tag, value)": { + "args": [ + "tag", + "value" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" } }, "setAttributeNS()": { @@ -26612,6 +28785,17 @@ "shortname": "dom" } }, + "setAttributionReporting()": { + "setAttributionReporting(options)": { + "args": [ + "options" + ], + "for": [ + "XMLHttpRequest" + ], + "shortname": "attribution-reporting-api" + } + }, "setBaseAndExtent()": { "setBaseAndExtent()": { "args": [], @@ -26633,6 +28817,24 @@ "shortname": "selection-api" } }, + "setBid()": { + "setBid()": { + "args": [], + "for": [ + "InterestGroupBiddingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + }, + "setBid(oneOrManyBids)": { + "args": [ + "oneOrManyBids" + ], + "for": [ + "InterestGroupBiddingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + } + }, "setBigInt64()": { "setBigInt64(byteOffset, value, littleEndian)": { "args": [ @@ -26735,24 +28937,6 @@ "shortname": "capture-handle-identity" } }, - "setClientBadge()": { - "setClientBadge()": { - "args": [], - "for": [ - "Navigator" - ], - "shortname": "badging" - }, - "setClientBadge(contents)": { - "args": [ - "contents" - ], - "for": [ - "Navigator" - ], - "shortname": "badging" - } - }, "setCodecPreferences()": { "setCodecPreferences()": { "args": [], @@ -26915,6 +29099,17 @@ "shortname": "dom" } }, + "setExpires()": { + "setExpires(expires)": { + "args": [ + "expires" + ], + "for": [ + "StorageBucket" + ], + "shortname": "storage-buckets" + } + }, "setFloat32()": { "setFloat32(byteOffset, value, littleEndian)": { "args": [ @@ -26985,22 +29180,47 @@ } }, "setHTML()": { - "setHTML(input)": { + "setHTML(html)": { "args": [ - "input" + "html" ], "for": [ - "Element" + "Element", + "ShadowRoot" ], "shortname": "sanitizer-api" }, - "setHTML(input, options)": { + "setHTML(html, options)": { "args": [ - "input", + "html", "options" ], "for": [ - "Element" + "Element", + "ShadowRoot" + ], + "shortname": "sanitizer-api" + } + }, + "setHTMLUnsafe()": { + "setHTMLUnsafe(html)": { + "args": [ + "html" + ], + "for": [ + "Element", + "ShadowRoot" + ], + "shortname": "html" + }, + "setHTMLUnsafe(html, options)": { + "args": [ + "html", + "options" + ], + "for": [ + "Element", + "ShadowRoot" ], "shortname": "sanitizer-api" } @@ -27416,6 +29636,16 @@ "RTCRtpSender" ], "shortname": "webrtc" + }, + "setParameters(parameters, setParameterOptions)": { + "args": [ + "parameters", + "setParameterOptions" + ], + "for": [ + "RTCRtpSender" + ], + "shortname": "webrtc" } }, "setPeriodicWave()": { @@ -27523,11 +29753,44 @@ "priority" ], "for": [ + "InterestGroupBiddingScriptRunnerGlobalScope", "TaskController" ], "shortname": "scheduling-apis" } }, + "setPrioritySignalsOverride()": { + "setPrioritySignalsOverride(key)": { + "args": [ + "key" + ], + "for": [ + "InterestGroupBiddingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + }, + "setPrioritySignalsOverride(key, priority)": { + "args": [ + "key", + "priority" + ], + "for": [ + "InterestGroupBiddingScriptRunnerGlobalScope" + ], + "shortname": "turtledove" + } + }, + "setPrivateToken()": { + "setPrivateToken(privateToken)": { + "args": [ + "privateToken" + ], + "for": [ + "XMLHttpRequest" + ], + "shortname": "trust-token-api" + } + }, "setProperty()": { "setProperty(property, value)": { "args": [ @@ -27626,6 +29889,24 @@ "shortname": "webrtc" } }, + "setReportEventDataForAutomaticBeacons()": { + "setReportEventDataForAutomaticBeacons()": { + "args": [], + "for": [ + "Fence" + ], + "shortname": "fenced-frame" + }, + "setReportEventDataForAutomaticBeacons(event)": { + "args": [ + "event" + ], + "for": [ + "Fence" + ], + "shortname": "fenced-frame" + } + }, "setRequestHeader()": { "setRequestHeader(name, value)": { "args": [ @@ -27670,6 +29951,17 @@ "shortname": "webgpu" } }, + "setScreenshareActive()": { + "setScreenshareActive(active)": { + "args": [ + "active" + ], + "for": [ + "MediaSession" + ], + "shortname": "mediasession" + } + }, "setSeconds()": { "setSeconds(sec, ms)": { "args": [ @@ -27714,6 +30006,17 @@ "shortname": "encrypted-media" } }, + "setSharedStorageContext()": { + "setSharedStorageContext(contextString)": { + "args": [ + "contextString" + ], + "for": [ + "FencedFrameConfig" + ], + "shortname": "fenced-frame" + } + }, "setSignals()": { "setSignals()": { "args": [], @@ -27794,6 +30097,17 @@ "shortname": "dom" } }, + "setStatus()": { + "setStatus(status)": { + "args": [ + "status" + ], + "for": [ + "NavigatorLogin" + ], + "shortname": "fedcm" + } + }, "setStdDeviation()": { "setStdDeviation(stdDeviationX, stdDeviationY)": { "args": [ @@ -28150,6 +30464,15 @@ "shortname": "ecmascript" } }, + "shape()": { + "shape()": { + "args": [], + "for": [ + "MLOperand" + ], + "shortname": "webnn" + } + }, "share()": { "share()": { "args": [], @@ -28267,7 +30590,8 @@ "showPicker()": { "args": [], "for": [ - "HTMLInputElement" + "HTMLInputElement", + "HTMLSelectElement" ], "shortname": "html" } @@ -28300,16 +30624,19 @@ } }, "sigmoid()": { - "sigmoid()": { - "args": [], + "sigmoid(input)": { + "args": [ + "input" + ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "sigmoid(x)": { + "sigmoid(input, options)": { "args": [ - "x" + "input", + "options" ], "for": [ "MLGraphBuilder" @@ -28347,12 +30674,30 @@ } }, "sin()": { + "sin(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "sin(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "sin(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -28562,52 +30907,41 @@ } }, "softmax()": { - "softmax()": { - "args": [], - "for": [ - "MLGraphBuilder" - ], - "shortname": "webnn" - }, - "softmax(x)": { + "softmax(input, axis)": { "args": [ - "x" - ], - "for": [ - "MLGraphBuilder" + "input", + "axis" ], - "shortname": "webnn" - } - }, - "softplus()": { - "softplus()": { - "args": [], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "softplus(options)": { + "softmax(input, axis, options)": { "args": [ + "input", + "axis", "options" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" - }, - "softplus(x)": { + } + }, + "softplus()": { + "softplus(input)": { "args": [ - "x" + "input" ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "softplus(x, options)": { + "softplus(input, options)": { "args": [ - "x", + "input", "options" ], "for": [ @@ -28617,16 +30951,19 @@ } }, "softsign()": { - "softsign()": { - "args": [], + "softsign(input)": { + "args": [ + "input" + ], "for": [ "MLGraphBuilder" ], "shortname": "webnn" }, - "softsign(x)": { + "softsign(input, options)": { "args": [ - "x" + "input", + "options" ], "for": [ "MLGraphBuilder" @@ -28635,9 +30972,9 @@ } }, "some()": { - "some(callbackfn, thisArg)": { + "some(callback, thisArg)": { "args": [ - "callbackfn", + "callback", "thisArg" ], "for": [ @@ -28655,9 +30992,9 @@ ], "shortname": "url" }, - "sort(comparefn)": { + "sort(comparator)": { "args": [ - "comparefn" + "comparator" ], "for": [ "%TypedArray%", @@ -28765,18 +31102,7 @@ } }, "sqrt()": { - "sqrt(x)": { - "args": [ - "x" - ], - "for": [ - "Math" - ], - "shortname": "ecmascript" - } - }, - "squeeze()": { - "squeeze(input)": { + "sqrt(input)": { "args": [ "input" ], @@ -28785,7 +31111,7 @@ ], "shortname": "webnn" }, - "squeeze(input, options)": { + "sqrt(input, options)": { "args": [ "input", "options" @@ -28794,6 +31120,15 @@ "MLGraphBuilder" ], "shortname": "webnn" + }, + "sqrt(x)": { + "args": [ + "x" + ], + "for": [ + "Math" + ], + "shortname": "ecmascript" } }, "start()": { @@ -28893,14 +31228,32 @@ "shortname": "webaudio" } }, - "startMessages()": { - "startMessages()": { + "startDrawing()": { + "startDrawing()": { "args": [], "for": [ - "ServiceWorkerContainer" + "HandwritingRecognizer" ], - "shortname": "service-workers" - } + "shortname": "handwriting-recognition" + }, + "startDrawing(hints)": { + "args": [ + "hints" + ], + "for": [ + "HandwritingRecognizer" + ], + "shortname": "handwriting-recognition" + } + }, + "startMessages()": { + "startMessages()": { + "args": [], + "for": [ + "ServiceWorkerContainer" + ], + "shortname": "service-workers" + } }, "startNotifications()": { "startNotifications()": { @@ -28920,6 +31273,34 @@ "shortname": "webaudio" } }, + "startTransaction()": { + "startTransaction()": { + "args": [], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, + "startTransaction(transaction)": { + "args": [ + "transaction" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, + "startTransaction(transaction, options)": { + "args": [ + "transaction", + "options" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + } + }, "startViewTransition()": { "startViewTransition()": { "args": [], @@ -28928,9 +31309,9 @@ ], "shortname": "css-view-transitions" }, - "startViewTransition(callback)": { + "startViewTransition(callbackOptions)": { "args": [ - "callback" + "callbackOptions" ], "for": [ "Document" @@ -28968,6 +31349,15 @@ "shortname": "css-animation-worklet" } }, + "status()": { + "status()": { + "args": [], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + } + }, "stepDown()": { "stepDown(n)": { "args": [ @@ -28996,6 +31386,7 @@ "for": [ "AudioRenderCapacity", "AudioScheduledSourceNode", + "BluetoothLEScan", "HTMLMarqueeElement", "MediaRecorder", "MediaStreamTrack", @@ -29218,6 +31609,17 @@ ], "shortname": "webnn" }, + "sub(a, b, options)": { + "args": [ + "a", + "b", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "sub(typedArray, index, value)": { "args": [ "typedArray", @@ -29231,9 +31633,9 @@ } }, "subarray()": { - "subarray(begin, end)": { + "subarray(start, end)": { "args": [ - "begin", + "start", "end" ], "for": [ @@ -29366,6 +31768,7 @@ "type" ], "for": [ + "ClipboardItem", "HTMLScriptElement" ], "shortname": "html" @@ -29466,6 +31869,17 @@ "shortname": "css-typed-om" } }, + "symmetricDifference()": { + "symmetricDifference(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" + } + }, "table()": { "table()": { "args": [], @@ -29535,20 +31949,50 @@ } }, "tan()": { + "tan(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "tan(input, options)": { + "args": [ + "input", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, "tan(x)": { "args": [ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" } }, "tanh()": { - "tanh()": { - "args": [], + "tanh(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "tanh(input, options)": { + "args": [ + "input", + "options" + ], "for": [ "MLGraphBuilder" ], @@ -29559,7 +32003,6 @@ "x" ], "for": [ - "MLGraphBuilder", "Math" ], "shortname": "ecmascript" @@ -29645,18 +32088,6 @@ "shortname": "ecmascript" } }, - "throw()": { - "throw(exception)": { - "args": [ - "exception" - ], - "for": [ - "AsyncGenerator", - "Generator" - ], - "shortname": "ecmascript" - } - }, "throwIfAborted()": { "throwIfAborted()": { "args": [], @@ -29817,6 +32248,15 @@ "shortname": "ecmascript" } }, + "toFixedLengthBuffer()": { + "toFixedLengthBuffer()": { + "args": [], + "for": [ + "Memory" + ], + "shortname": "wasm-js-api" + } + }, "toFloat32Array()": { "toFloat32Array()": { "args": [], @@ -29864,6 +32304,8 @@ "DOMQuad", "DOMRectReadOnly", "DeprecationReportBody", + "GeolocationCoordinates", + "GeolocationPosition", "InterventionReportBody", "LargestContentfulPaint", "LayoutShift", @@ -29874,12 +32316,15 @@ "PerformanceElementTiming", "PerformanceEntry", "PerformanceEventTiming", + "PerformanceLongAnimationFrameTiming", "PerformanceLongTaskTiming", "PerformanceNavigation", "PerformanceNavigationTiming", "PerformanceResourceTiming", + "PerformanceScriptTiming", "PerformanceServerTiming", "PerformanceTiming", + "PermissionsPolicyViolationReportBody", "PressureRecord", "PublicKeyCredential", "PushSubscription", @@ -30039,6 +32484,50 @@ "shortname": "web-nfc" } }, + "toResizableBuffer()": { + "toResizableBuffer()": { + "args": [], + "for": [ + "Memory" + ], + "shortname": "wasm-js-api" + } + }, + "toReversed()": { + "toReversed()": { + "args": [], + "for": [ + "%TypedArray%", + "Array" + ], + "shortname": "ecmascript" + } + }, + "toSorted()": { + "toSorted(comparator)": { + "args": [ + "comparator" + ], + "for": [ + "%TypedArray%", + "Array" + ], + "shortname": "ecmascript" + } + }, + "toSpliced()": { + "toSpliced(start, skipCount, ...items)": { + "args": [ + "start", + "skipCount", + "...items" + ], + "for": [ + "Array" + ], + "shortname": "ecmascript" + } + }, "toString()": { "toString()": { "args": [], @@ -30112,6 +32601,15 @@ "shortname": "ecmascript" } }, + "toWellFormed()": { + "toWellFormed()": { + "args": [], + "for": [ + "String" + ], + "shortname": "ecmascript" + } + }, "toggle()": { "toggle(token)": { "args": [ @@ -30233,6 +32731,17 @@ "shortname": "indexeddb" } }, + "transfer()": { + "transfer(newLength)": { + "args": [ + "newLength" + ], + "for": [ + "ArrayBuffer" + ], + "shortname": "ecmascript" + } + }, "transferControlToOffscreen()": { "transferControlToOffscreen()": { "args": [], @@ -30277,6 +32786,17 @@ "shortname": "webusb" } }, + "transferToFixedLength()": { + "transferToFixedLength(newLength)": { + "args": [ + "newLength" + ], + "for": [ + "ArrayBuffer" + ], + "shortname": "ecmascript" + } + }, "transferToImageBitmap()": { "transferToImageBitmap()": { "args": [], @@ -30431,6 +32951,34 @@ "shortname": "geometry" } }, + "transmit()": { + "transmit()": { + "args": [], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, + "transmit(sendBuffer)": { + "args": [ + "sendBuffer" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + }, + "transmit(sendBuffer, options)": { + "args": [ + "sendBuffer", + "options" + ], + "for": [ + "SmartCardConnection" + ], + "shortname": "web-smart-card" + } + }, "transpose()": { "transpose(input)": { "args": [ @@ -30453,24 +33001,36 @@ } }, "traverseTo()": { - "traverseTo(key)": { + "traverseTo(key, options)": { "args": [ - "key" + "key", + "options" ], "for": [ "Navigation" ], - "shortname": "navigation-api" + "shortname": "html" + } + }, + "triangular()": { + "triangular(input)": { + "args": [ + "input" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" }, - "traverseTo(key, options)": { + "triangular(input, options)": { "args": [ - "key", + "input", "options" ], "for": [ - "Navigation" + "MLGraphBuilder" ], - "shortname": "navigation-api" + "shortname": "webnn" } }, "trim()": { @@ -30589,6 +33149,17 @@ "shortname": "ecmascript" } }, + "union()": { + "union(other)": { + "args": [ + "other" + ], + "for": [ + "Set" + ], + "shortname": "ecmascript" + } + }, "unlock()": { "unlock()": { "args": [], @@ -30756,6 +33327,15 @@ "shortname": "indexeddb" } }, + "updateAdInterestGroups()": { + "updateAdInterestGroups()": { + "args": [], + "for": [ + "Navigator" + ], + "shortname": "turtledove" + } + }, "updateCharacterBounds()": { "updateCharacterBounds()": { "args": [], @@ -30793,6 +33373,24 @@ "shortname": "edit-context" } }, + "updateControlBounds()": { + "updateControlBounds()": { + "args": [], + "for": [ + "EditContext" + ], + "shortname": "edit-context" + }, + "updateControlBounds(controlBounds)": { + "args": [ + "controlBounds" + ], + "for": [ + "EditContext" + ], + "shortname": "edit-context" + } + }, "updateCurrentEntry()": { "updateCurrentEntry(options)": { "args": [ @@ -30801,7 +33399,7 @@ "for": [ "Navigation" ], - "shortname": "navigation-api" + "shortname": "html" } }, "updateInkTrailStartPoint()": { @@ -30891,6 +33489,24 @@ "shortname": "edit-context" } }, + "updateSelectionBounds()": { + "updateSelectionBounds()": { + "args": [], + "for": [ + "EditContext" + ], + "shortname": "edit-context" + }, + "updateSelectionBounds(selectionBounds)": { + "args": [ + "selectionBounds" + ], + "for": [ + "EditContext" + ], + "shortname": "edit-context" + } + }, "updateTargetFrameRate()": { "updateTargetFrameRate(rate)": { "args": [ @@ -31175,6 +33791,20 @@ "shortname": "ecmascript" } }, + "waitAsync()": { + "waitAsync(typedArray, index, value, timeout)": { + "args": [ + "typedArray", + "index", + "value", + "timeout" + ], + "for": [ + "Atomics" + ], + "shortname": "ecmascript" + } + }, "waitUntil()": { "waitUntil(f)": { "args": [ @@ -31310,6 +33940,62 @@ "shortname": "html" } }, + "where()": { + "where(condition, trueValue, falseValue)": { + "args": [ + "condition", + "trueValue", + "falseValue" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + }, + "where(condition, trueValue, falseValue, options)": { + "args": [ + "condition", + "trueValue", + "falseValue", + "options" + ], + "for": [ + "MLGraphBuilder" + ], + "shortname": "webnn" + } + }, + "willRequestConditionalCreation()": { + "willRequestConditionalCreation()": { + "args": [], + "for": [ + "Credential" + ], + "shortname": "credential-management" + } + }, + "with()": { + "with(index, value)": { + "args": [ + "index", + "value" + ], + "for": [ + "%TypedArray%", + "Array" + ], + "shortname": "ecmascript" + } + }, + "withResolvers()": { + "withResolvers()": { + "args": [], + "for": [ + "Promise" + ], + "shortname": "ecmascript" + } + }, "wrapKey()": { "wrapKey()": { "args": [], @@ -31471,18 +34157,6 @@ "shortname": "webgpu" } }, - "writeTimestamp()": { - "writeTimestamp(querySet, queryIndex)": { - "args": [ - "querySet", - "queryIndex" - ], - "for": [ - "GPUCommandEncoder" - ], - "shortname": "webgpu" - } - }, "writeValue()": { "writeValue(value)": { "args": [ @@ -31529,5 +34203,14 @@ ], "shortname": "ecmascript" } + }, + "yield()": { + "yield()": { + "args": [], + "for": [ + "Scheduler" + ], + "shortname": "scheduling-apis" + } } } \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/specs.json b/bikeshed/spec-data/readonly/specs.json index 31ac428609..7939855e87 100644 --- a/bikeshed/spec-data/readonly/specs.json +++ b/bikeshed/spec-data/readonly/specs.json @@ -19,6 +19,16 @@ "title": "Accessible Name and Description Computation 1.2", "vshortname": "accname-1.2" }, + "afgs1-spec": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/afgs1-spec/", + "description": "AOMedia Film Grain Synthesis 1 (AFGS1) specification", + "level": null, + "shortname": "afgs1-spec", + "snapshot_url": null, + "title": "AFGS1", + "vshortname": "afgs1-spec" + }, "ambient-light": { "abstract": null, "current_url": "https://w3c.github.io/ambient-light/", @@ -39,6 +49,16 @@ "title": "WebXR Anchors", "vshortname": "anchors" }, + "anonymous-iframe": { + "abstract": null, + "current_url": "https://wicg.github.io/anonymous-iframe/", + "description": "Iframe credentialless", + "level": null, + "shortname": "anonymous-iframe", + "snapshot_url": null, + "title": "Iframe credentialless", + "vshortname": "anonymous-iframe" + }, "appmanifest": { "abstract": null, "current_url": "https://w3c.github.io/manifest/", @@ -69,6 +89,26 @@ "title": "Audio Output Devices API", "vshortname": "audio-output" }, + "audio-session": { + "abstract": null, + "current_url": "https://w3c.github.io/audio-session/", + "description": "Audio Session", + "level": null, + "shortname": "audio-session", + "snapshot_url": null, + "title": "Audio Session", + "vshortname": "audio-session" + }, + "audiobooks": { + "abstract": null, + "current_url": "https://w3c.github.io/audiobooks/", + "description": "Audiobooks", + "level": null, + "shortname": "audiobooks", + "snapshot_url": "https://www.w3.org/TR/audiobooks/", + "title": "Audiobooks", + "vshortname": "audiobooks" + }, "autoplay-detection": { "abstract": null, "current_url": "https://w3c.github.io/autoplay/", @@ -79,6 +119,66 @@ "title": "Autoplay Policy Detection", "vshortname": "autoplay-detection" }, + "av1-avif": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/av1-avif/", + "description": "AV1 Image File Format (AVIF)", + "level": null, + "shortname": "av1-avif", + "snapshot_url": null, + "title": "AVIF", + "vshortname": "av1-avif" + }, + "av1-hdr10plus": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/av1-hdr10plus/", + "description": "HDR10+ AV1 Metadata Handling Specification", + "level": null, + "shortname": "av1-hdr10plus", + "snapshot_url": null, + "title": "HDR10+ AV1 Metadata Handling", + "vshortname": "av1-hdr10plus" + }, + "av1-isobmff": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/av1-isobmff/", + "description": "AV1 Codec ISO Media File Format Binding", + "level": null, + "shortname": "av1-isobmff", + "snapshot_url": null, + "title": "AV1 Codec ISO Media File Format Binding", + "vshortname": "av1-isobmff" + }, + "av1-mpeg2-ts": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/av1-mpeg2-ts/", + "description": "Carriage of AV1 in MPEG-2 TS", + "level": null, + "shortname": "av1-mpeg2-ts", + "snapshot_url": null, + "title": "Carriage of AV1 in MPEG-2 TS", + "vshortname": "av1-mpeg2-ts" + }, + "av1-rtp-spec": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/av1-rtp-spec/", + "description": "RTP Payload Format For AV1", + "level": null, + "shortname": "av1-rtp-spec", + "snapshot_url": null, + "title": "v1.0", + "vshortname": "av1-rtp-spec" + }, + "av1-spec": { + "abstract": null, + "current_url": "https://aomediacodec.github.io/av1-spec/", + "description": "AV1 Bitstream & Decoding Process Specification", + "level": null, + "shortname": "av1-spec", + "snapshot_url": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", + "title": "AV1 Bitstream & Decoding Process", + "vshortname": "av1-spec" + }, "background-fetch": { "abstract": null, "current_url": "https://wicg.github.io/background-fetch/", @@ -105,7 +205,7 @@ "description": "Badging API", "level": null, "shortname": "badging", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/badging/", "title": "Badging API", "vshortname": "badging" }, @@ -149,6 +249,16 @@ "title": "Capture Handle - Bootstrapping Collaboration when Screensharing", "vshortname": "capture-handle-identity" }, + "captured-mouse-events": { + "abstract": null, + "current_url": "https://screen-share.github.io/captured-mouse-events/", + "description": "Captured Mouse Events", + "level": null, + "shortname": "captured-mouse-events", + "snapshot_url": null, + "title": "Captured Mouse Events", + "vshortname": "captured-mouse-events" + }, "change-password-url": { "abstract": null, "current_url": "https://w3c.github.io/webappsec-change-password-url/", @@ -199,16 +309,6 @@ "title": "Clipboard API and events", "vshortname": "clipboard-apis" }, - "close-watcher": { - "abstract": null, - "current_url": "https://wicg.github.io/close-watcher/", - "description": "Close Watcher API", - "level": null, - "shortname": "close-watcher", - "snapshot_url": null, - "title": "Close Watcher API", - "vshortname": "close-watcher" - }, "compat": { "abstract": null, "current_url": "https://compat.spec.whatwg.org/", @@ -241,12 +341,12 @@ }, "compression": { "abstract": null, - "current_url": "https://wicg.github.io/compression/", - "description": "Compression Streams", + "current_url": "https://compression.spec.whatwg.org/", + "description": "Compression Standard", "level": null, "shortname": "compression", "snapshot_url": null, - "title": "Compression Streams", + "title": "Compression", "vshortname": "compression" }, "compute-pressure": { @@ -405,7 +505,7 @@ "description": "CSS Anchor Positioning", "level": 1, "shortname": "css-anchor-position", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/css-anchor-position-1/", "title": "CSS Anchor Positioning", "vshortname": "css-anchor-position-1" }, @@ -435,7 +535,7 @@ "description": "CSS Animations Level 2", "level": 2, "shortname": "css-animations", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/css-animations-2/", "title": "CSS Animations 2", "vshortname": "css-animations-2" }, @@ -452,13 +552,23 @@ "css-backgrounds-4": { "abstract": null, "current_url": "https://drafts.csswg.org/css-backgrounds-4/", - "description": "CSS Backgrounds and Borders Module Level 4", + "description": "CSS Backgrounds Module Level 4", "level": 4, "shortname": "css-backgrounds", "snapshot_url": null, "title": "CSS Backgrounds 4", "vshortname": "css-backgrounds-4" }, + "css-borders-4": { + "abstract": null, + "current_url": "https://drafts.csswg.org/css-borders-4/", + "description": "CSS Borders and Box Decorations Module Level 4", + "level": 4, + "shortname": "css-borders", + "snapshot_url": null, + "title": "CSS Borders and Box Decorations 4", + "vshortname": "css-borders-4" + }, "css-box-3": { "abstract": null, "current_url": "https://drafts.csswg.org/css-box-3/", @@ -959,6 +1069,16 @@ "title": "CSS Masking 1", "vshortname": "css-masking-1" }, + "css-mixins-1": { + "abstract": null, + "current_url": "https://drafts.csswg.org/css-mixins-1/", + "description": "CSS Functions and Mixins Module", + "level": 1, + "shortname": "css-mixins", + "snapshot_url": null, + "title": "CSS Functions and Mixins", + "vshortname": "css-mixins-1" + }, "css-multicol-1": { "abstract": null, "current_url": "https://drafts.csswg.org/css-multicol-1/", @@ -1029,6 +1149,16 @@ "title": "CSS Overflow 4", "vshortname": "css-overflow-4" }, + "css-overflow-5": { + "abstract": null, + "current_url": "https://drafts.csswg.org/css-overflow-5/", + "description": "CSS Overflow Module Level 5", + "level": 5, + "shortname": "css-overflow", + "snapshot_url": null, + "title": "CSS Overflow 5", + "vshortname": "css-overflow-5" + }, "css-overscroll-1": { "abstract": null, "current_url": "https://drafts.csswg.org/css-overscroll-1/", @@ -1099,6 +1229,16 @@ "title": "CSS Positioned Layout 3", "vshortname": "css-position-3" }, + "css-position-4": { + "abstract": null, + "current_url": "https://drafts.csswg.org/css-position-4/", + "description": "CSS Positioned Layout Module Level 4", + "level": 4, + "shortname": "css-position", + "snapshot_url": null, + "title": "CSS Positioned Layout 4", + "vshortname": "css-position-4" + }, "css-properties-values-api-1": { "abstract": null, "current_url": "https://drafts.css-houdini.org/css-properties-values-api-1/", @@ -1195,7 +1335,7 @@ "description": "CSS Scroll Snap Module Level 2", "level": 2, "shortname": "css-scroll-snap", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/css-scroll-snap-2/", "title": "CSS Scroll Snap 2", "vshortname": "css-scroll-snap-2" }, @@ -1372,7 +1512,7 @@ "css-transitions-1": { "abstract": null, "current_url": "https://drafts.csswg.org/css-transitions-1/", - "description": "CSS Transitions", + "description": "CSS Transitions Level 1", "level": 1, "shortname": "css-transitions", "snapshot_url": "https://www.w3.org/TR/css-transitions-1/", @@ -1385,7 +1525,7 @@ "description": "CSS Transitions Level 2", "level": 2, "shortname": "css-transitions", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/css-transitions-2/", "title": "CSS Transitions 2", "vshortname": "css-transitions-2" }, @@ -1489,15 +1629,25 @@ "title": "CSS View Transitions 1", "vshortname": "css-view-transitions-1" }, - "css-viewport": { + "css-view-transitions-2": { + "abstract": null, + "current_url": "https://drafts.csswg.org/css-view-transitions-2/", + "description": "CSS View Transitions Module Level 2", + "level": 2, + "shortname": "css-view-transitions", + "snapshot_url": "https://www.w3.org/TR/css-view-transitions-2/", + "title": "CSS View Transitions 2", + "vshortname": "css-view-transitions-2" + }, + "css-viewport-1": { "abstract": null, "current_url": "https://drafts.csswg.org/css-viewport/", "description": "CSS Viewport Module Level 1", - "level": null, + "level": 1, "shortname": "css-viewport", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/css-viewport-1/", "title": "CSS Viewport 1", - "vshortname": "css-viewport" + "vshortname": "css-viewport-1" }, "css-will-change-1": { "abstract": null, @@ -1579,16 +1729,6 @@ "title": "CSSOM View", "vshortname": "cssom-view-1" }, - "custom-state-pseudo-class": { - "abstract": null, - "current_url": "https://wicg.github.io/custom-state-pseudo-class/", - "description": "Custom State Pseudo Class", - "level": null, - "shortname": "custom-state-pseudo-class", - "snapshot_url": null, - "title": "Custom State Pseudo Class", - "vshortname": "custom-state-pseudo-class" - }, "datacue": { "abstract": null, "current_url": "https://wicg.github.io/datacue/", @@ -1609,6 +1749,16 @@ "title": "Deprecation Reporting", "vshortname": "deprecation-reporting" }, + "device-attributes": { + "abstract": null, + "current_url": "https://wicg.github.io/WebApiDevice/device_attributes/", + "description": "Device Attributes API", + "level": null, + "shortname": "device-attributes", + "snapshot_url": null, + "title": "Device Attributes API", + "vshortname": "device-attributes" + }, "device-memory-1": { "abstract": null, "current_url": "https://www.w3.org/TR/device-memory/", @@ -1629,16 +1779,6 @@ "title": "Device Posture API", "vshortname": "device-posture" }, - "digest-headers": { - "abstract": null, - "current_url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html", - "description": "Digest Fields", - "level": null, - "shortname": "digest-headers", - "snapshot_url": null, - "title": "Digest Fields", - "vshortname": "digest-headers" - }, "digital-goods": { "abstract": null, "current_url": "https://wicg.github.io/digital-goods/", @@ -1649,6 +1789,36 @@ "title": "Digital Goods API", "vshortname": "digital-goods" }, + "digital-identities": { + "abstract": null, + "current_url": "https://wicg.github.io/digital-identities/", + "description": "Digital Credentials", + "level": null, + "shortname": "digital-identities", + "snapshot_url": null, + "title": "Digital Credentials", + "vshortname": "digital-identities" + }, + "direct-sockets": { + "abstract": null, + "current_url": "https://wicg.github.io/direct-sockets/", + "description": "Direct Sockets API", + "level": null, + "shortname": "direct-sockets", + "snapshot_url": null, + "title": "Direct Sockets API", + "vshortname": "direct-sockets" + }, + "document-picture-in-picture": { + "abstract": null, + "current_url": "https://wicg.github.io/document-picture-in-picture/", + "description": "Document Picture-in-Picture Specification", + "level": null, + "shortname": "document-picture-in-picture", + "snapshot_url": null, + "title": "Document Picture-in-Picture", + "vshortname": "document-picture-in-picture" + }, "document-policy": { "abstract": null, "current_url": "https://wicg.github.io/document-policy/", @@ -1689,10 +1859,30 @@ "title": "DOM Parsing and Serialization", "vshortname": "dom-parsing" }, + "dpub-aam-1.1": { + "abstract": null, + "current_url": "https://w3c.github.io/dpub-aam/", + "description": "Digital Publishing Accessibility API Mappings 1.1", + "level": null, + "shortname": "dpub-aam", + "snapshot_url": "https://www.w3.org/TR/dpub-aam-1.1/", + "title": "Digital Publishing Accessibility API Mappings 1.1", + "vshortname": "dpub-aam-1.1" + }, + "dpub-aria-1.1": { + "abstract": null, + "current_url": "https://w3c.github.io/dpub-aria/", + "description": "Digital Publishing WAI-ARIA Module 1.1", + "level": null, + "shortname": "dpub-aria", + "snapshot_url": "https://www.w3.org/TR/dpub-aria-1.1/", + "title": "Digital Publishing WAI-ARIA 1.1", + "vshortname": "dpub-aria-1.1" + }, "ecma-402": { "abstract": null, "current_url": "https://tc39.es/ecma402/", - "description": "ECMAScript® 2023 Internationalization API Specification", + "description": "ECMAScript® 2024 Internationalization API Specification", "level": null, "shortname": "ecma-402", "snapshot_url": null, @@ -1702,7 +1892,7 @@ "ecmascript": { "abstract": null, "current_url": "https://tc39.es/ecma262/multipage/", - "description": "ECMAScript® 2023 Language Specification", + "description": "ECMAScript® 2025 Language Specification", "level": null, "shortname": "ecmascript", "snapshot_url": null, @@ -1719,6 +1909,16 @@ "title": "EditContext API", "vshortname": "edit-context" }, + "element-capture": { + "abstract": null, + "current_url": "https://screen-share.github.io/element-capture/", + "description": "Element Capture", + "level": null, + "shortname": "element-capture", + "snapshot_url": null, + "title": "Element Capture", + "vshortname": "element-capture" + }, "element-timing": { "abstract": null, "current_url": "https://wicg.github.io/element-timing/", @@ -1729,6 +1929,86 @@ "title": "Element Timing API", "vshortname": "element-timing" }, + "eme-hdcp-version-registry": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/hdcp-version-registry.html", + "description": "Encrypted Media Extensions HDCP Version Registry", + "level": null, + "shortname": "eme-hdcp-version-registry", + "snapshot_url": "https://www.w3.org/TR/eme-hdcp-version-registry/", + "title": "Encrypted Media Extensions HDCP Version Registry", + "vshortname": "eme-hdcp-version-registry" + }, + "eme-initdata-cenc": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html", + "description": "\"cenc\" Initialization Data Format", + "level": null, + "shortname": "eme-initdata-cenc", + "snapshot_url": "https://www.w3.org/TR/eme-initdata-cenc/", + "title": "\"cenc\" Initialization Data Format", + "vshortname": "eme-initdata-cenc" + }, + "eme-initdata-keyids": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html", + "description": "\"keyids\" Initialization Data Format", + "level": null, + "shortname": "eme-initdata-keyids", + "snapshot_url": "https://www.w3.org/TR/eme-initdata-keyids/", + "title": "\"keyids\" Initialization Data Format", + "vshortname": "eme-initdata-keyids" + }, + "eme-initdata-registry": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/initdata/", + "description": "Encrypted Media Extensions Initialization Data Format Registry", + "level": null, + "shortname": "eme-initdata-registry", + "snapshot_url": "https://www.w3.org/TR/eme-initdata-registry/", + "title": "Encrypted Media Extensions Initialization Data Format Registry", + "vshortname": "eme-initdata-registry" + }, + "eme-initdata-webm": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html", + "description": "\"webm\" Initialization Data Format", + "level": null, + "shortname": "eme-initdata-webm", + "snapshot_url": "https://www.w3.org/TR/eme-initdata-webm/", + "title": "\"webm\" Initialization Data Format", + "vshortname": "eme-initdata-webm" + }, + "eme-stream-mp4": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html", + "description": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "level": 4, + "shortname": "eme-stream-mp4", + "snapshot_url": "https://www.w3.org/TR/eme-stream-mp4/", + "title": "ISO Common Encryption Protection Scheme for ISO Base Media File Format Stream Format", + "vshortname": "eme-stream-mp4" + }, + "eme-stream-registry": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/stream/", + "description": "Encrypted Media Extensions Stream Format Registry", + "level": null, + "shortname": "eme-stream-registry", + "snapshot_url": "https://www.w3.org/TR/eme-stream-registry/", + "title": "Encrypted Media Extensions Stream Format Registry", + "vshortname": "eme-stream-registry" + }, + "eme-stream-webm": { + "abstract": null, + "current_url": "https://w3c.github.io/encrypted-media/format-registry/stream/webm.html", + "description": "WebM Stream Format", + "level": null, + "shortname": "eme-stream-webm", + "snapshot_url": "https://www.w3.org/TR/eme-stream-webm/", + "title": "WebM Stream Format", + "vshortname": "eme-stream-webm" + }, "encoding": { "abstract": null, "current_url": "https://encoding.spec.whatwg.org/", @@ -1739,15 +2019,15 @@ "title": "Encoding", "vshortname": "encoding" }, - "encrypted-media": { + "encrypted-media-2": { "abstract": null, "current_url": "https://w3c.github.io/encrypted-media/", "description": "Encrypted Media Extensions", - "level": null, + "level": 2, "shortname": "encrypted-media", - "snapshot_url": "https://www.w3.org/TR/encrypted-media/", + "snapshot_url": "https://www.w3.org/TR/encrypted-media-2/", "title": "Encrypted Media Extensions", - "vshortname": "encrypted-media" + "vshortname": "encrypted-media-2" }, "entries-api": { "abstract": null, @@ -1779,9 +2059,19 @@ "title": "EPUB Reading Systems 3.3", "vshortname": "epub-rs-33" }, + "essl": { + "abstract": null, + "current_url": "https://registry.khronos.org/OpenGL/specs/es/3.2/GLSL_ES_Specification_3.20.html", + "description": "The OpenGL ES® Shading Language, Version 3.20.8", + "level": null, + "shortname": "essl", + "snapshot_url": null, + "title": "OpenGL ES® Shading Language 3.20", + "vshortname": "essl" + }, "event-timing": { "abstract": null, - "current_url": "https://w3c.github.io/event-timing", + "current_url": "https://w3c.github.io/event-timing/", "description": "Event Timing API", "level": null, "shortname": "event-timing", @@ -1809,6 +2099,16 @@ "title": "Federated Credential Management API", "vshortname": "fedcm" }, + "fenced-frame": { + "abstract": null, + "current_url": "https://wicg.github.io/fenced-frame/", + "description": "Fenced Frame", + "level": null, + "shortname": "fenced-frame", + "snapshot_url": null, + "title": "Fenced Frame", + "vshortname": "fenced-frame" + }, "fetch": { "abstract": null, "current_url": "https://fetch.spec.whatwg.org/", @@ -1902,11 +2202,11 @@ "first-party-sets": { "abstract": null, "current_url": "https://wicg.github.io/first-party-sets/", - "description": "User Agent Interaction with First-Party Sets", + "description": "User Agent Interaction with Related Website Sets", "level": null, "shortname": "first-party-sets", "snapshot_url": null, - "title": "User Agent Interaction with First-Party Sets", + "title": "User Agent Interaction with Related Website Sets", "vshortname": "first-party-sets" }, "font-metrics-api-1": { @@ -1971,12 +2271,12 @@ }, "geolocation": { "abstract": null, - "current_url": "https://w3c.github.io/geolocation-api/", - "description": "Geolocation API", + "current_url": "https://w3c.github.io/geolocation/", + "description": "Geolocation", "level": null, "shortname": "geolocation", "snapshot_url": "https://www.w3.org/TR/geolocation/", - "title": "Geolocation API", + "title": "Geolocation", "vshortname": "geolocation" }, "geolocation-sensor": { @@ -2009,6 +2309,16 @@ "title": "Get Installed Related Apps API", "vshortname": "get-installed-related-apps" }, + "gltf": { + "abstract": null, + "current_url": "https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html", + "description": "glTF™ 2.0 Specification", + "level": null, + "shortname": "gltf", + "snapshot_url": null, + "title": "glTF™ 2.0", + "vshortname": "gltf" + }, "gpc-spec": { "abstract": null, "current_url": "https://privacycg.github.io/gpc-spec/", @@ -2049,6 +2359,16 @@ "title": "Gyroscope", "vshortname": "gyroscope" }, + "handwriting-recognition": { + "abstract": null, + "current_url": "https://wicg.github.io/handwriting-recognition/", + "description": "Handwriting Recognition API", + "level": null, + "shortname": "handwriting-recognition", + "snapshot_url": null, + "title": "Handwriting Recognition API", + "vshortname": "handwriting-recognition" + }, "hr-time-3": { "abstract": null, "current_url": "https://w3c.github.io/hr-time/", @@ -2226,7 +2546,7 @@ "level": null, "shortname": "is-input-pending", "snapshot_url": null, - "title": "isInputPending", + "title": "Early detection of input events", "vshortname": "is-input-pending" }, "js-self-profiling": { @@ -2319,15 +2639,15 @@ "title": "Local Font Access", "vshortname": "local-font-access" }, - "local-network-access": { + "long-animation-frames": { "abstract": null, - "current_url": "https://wicg.github.io/local-network-access/", - "description": "Private Network Access", + "current_url": "https://w3c.github.io/long-animation-frames/", + "description": "Long Animation Frames API", "level": null, - "shortname": "local-network-access", + "shortname": "long-animation-frames", "snapshot_url": null, - "title": "Private Network Access", - "vshortname": "local-network-access" + "title": "Long Animation Frames API", + "vshortname": "long-animation-frames" }, "longtasks-1": { "abstract": null, @@ -2336,7 +2656,7 @@ "level": 1, "shortname": "longtasks", "snapshot_url": "https://www.w3.org/TR/longtasks-1/", - "title": "Long Tasks API 1", + "title": "Long Tasks API", "vshortname": "longtasks-1" }, "magnetometer": { @@ -2349,6 +2669,16 @@ "title": "Magnetometer", "vshortname": "magnetometer" }, + "managed-configuration": { + "abstract": null, + "current_url": "https://wicg.github.io/WebApiDevice/managed_config/", + "description": "Managed Configuration API", + "level": null, + "shortname": "managed-configuration", + "snapshot_url": null, + "title": "Managed Configuration API", + "vshortname": "managed-configuration" + }, "manifest-app-info": { "abstract": null, "current_url": "https://w3c.github.io/manifest-app-info/", @@ -2372,11 +2702,11 @@ "mathml-aam": { "abstract": null, "current_url": "https://w3c.github.io/mathml-aam/", - "description": "MathML Accessiblity API Mappings 1.0", + "description": "MathML Accessibility API Mappings 1.0", "level": null, "shortname": "mathml-aam", "snapshot_url": null, - "title": "MathML Accessiblity API Mappings 1.0", + "title": "MathML Accessibility API Mappings 1.0", "vshortname": "mathml-aam" }, "mathml-core": { @@ -2389,6 +2719,16 @@ "title": "MathML Core", "vshortname": "mathml-core" }, + "mathml4": { + "abstract": null, + "current_url": "https://w3c.github.io/mathml/", + "description": "Mathematical Markup Language (MathML) Version 4.0", + "level": 4, + "shortname": "mathml", + "snapshot_url": "https://www.w3.org/TR/mathml4/", + "title": "MathML 4.0", + "vshortname": "mathml4" + }, "media-capabilities": { "abstract": null, "current_url": "https://w3c.github.io/media-capabilities/", @@ -2532,7 +2872,7 @@ "mediasession": { "abstract": null, "current_url": "https://w3c.github.io/mediasession/", - "description": "Media Session Standard", + "description": "Media Session", "level": null, "shortname": "mediasession", "snapshot_url": "https://www.w3.org/TR/mediasession/", @@ -2619,6 +2959,56 @@ "title": "Motion Path 1", "vshortname": "motion-1" }, + "mse-byte-stream-format-isobmff": { + "abstract": null, + "current_url": "https://w3c.github.io/mse-byte-stream-format-isobmff/", + "description": "ISO BMFF Byte Stream Format", + "level": null, + "shortname": "mse-byte-stream-format-isobmff", + "snapshot_url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/", + "title": "ISO BMFF Byte Stream Format", + "vshortname": "mse-byte-stream-format-isobmff" + }, + "mse-byte-stream-format-mp2t": { + "abstract": null, + "current_url": "https://w3c.github.io/mse-byte-stream-format-mp2t/", + "description": "MPEG-2 TS Byte Stream Format", + "level": null, + "shortname": "mse-byte-stream-format-mp2t", + "snapshot_url": "https://www.w3.org/TR/mse-byte-stream-format-mp2t/", + "title": "MPEG-2 TS Byte Stream Format", + "vshortname": "mse-byte-stream-format-mp2t" + }, + "mse-byte-stream-format-mpeg-audio": { + "abstract": null, + "current_url": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/", + "description": "MPEG Audio Byte Stream Format", + "level": null, + "shortname": "mse-byte-stream-format-mpeg-audio", + "snapshot_url": "https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/", + "title": "MPEG Audio Byte Stream Format", + "vshortname": "mse-byte-stream-format-mpeg-audio" + }, + "mse-byte-stream-format-registry": { + "abstract": null, + "current_url": "https://w3c.github.io/mse-byte-stream-format-registry/", + "description": "Media Source Extensions Byte Stream Format Registry", + "level": null, + "shortname": "mse-byte-stream-format-registry", + "snapshot_url": "https://www.w3.org/TR/mse-byte-stream-format-registry/", + "title": "Media Source Extensions Byte Stream Format Registry", + "vshortname": "mse-byte-stream-format-registry" + }, + "mse-byte-stream-format-webm": { + "abstract": null, + "current_url": "https://w3c.github.io/mse-byte-stream-format-webm/", + "description": "WebM Byte Stream Format", + "level": null, + "shortname": "mse-byte-stream-format-webm", + "snapshot_url": "https://www.w3.org/TR/mse-byte-stream-format-webm/", + "title": "WebM Byte Stream Format", + "vshortname": "mse-byte-stream-format-webm" + }, "mst-content-hint": { "abstract": null, "current_url": "https://w3c.github.io/mst-content-hint/", @@ -2639,15 +3029,15 @@ "title": "RDF 1.1 N-Quads", "vshortname": "n-quads" }, - "navigation-api": { + "nav-tracking-mitigations": { "abstract": null, - "current_url": "https://wicg.github.io/navigation-api/", - "description": "Navigation API", + "current_url": "https://privacycg.github.io/nav-tracking-mitigations/", + "description": "Navigational-Tracking Mitigations", "level": null, - "shortname": "navigation-api", + "shortname": "nav-tracking-mitigations", "snapshot_url": null, - "title": "Navigation API", - "vshortname": "navigation-api" + "title": "Navigational-Tracking Mitigations", + "vshortname": "nav-tracking-mitigations" }, "navigation-timing-2": { "abstract": null, @@ -2669,15 +3059,35 @@ "title": "Network Information API", "vshortname": "netinfo" }, - "network-error-logging-1": { + "network-error-logging": { "abstract": null, "current_url": "https://w3c.github.io/network-error-logging/", "description": "Network Error Logging", - "level": 1, + "level": null, "shortname": "network-error-logging", - "snapshot_url": "https://www.w3.org/TR/network-error-logging-1/", + "snapshot_url": "https://www.w3.org/TR/network-error-logging/", "title": "Network Error Logging", - "vshortname": "network-error-logging-1" + "vshortname": "network-error-logging" + }, + "network-reporting": { + "abstract": null, + "current_url": "https://w3c.github.io/reporting/network-reporting.html", + "description": "Network Reporting API", + "level": null, + "shortname": "network-reporting", + "snapshot_url": null, + "title": "Network Reporting API", + "vshortname": "network-reporting" + }, + "no-vary-search": { + "abstract": null, + "current_url": "https://wicg.github.io/nav-speculation/no-vary-search.html", + "description": "No-Vary-Search", + "level": null, + "shortname": "no-vary-search", + "snapshot_url": null, + "title": "No-Vary-Search", + "vshortname": "no-vary-search" }, "notifications": { "abstract": null, @@ -2702,11 +3112,11 @@ "orientation-event": { "abstract": null, "current_url": "https://w3c.github.io/deviceorientation/", - "description": "DeviceOrientation Event Specification", + "description": "Device Orientation and Motion", "level": null, "shortname": "orientation-event", "snapshot_url": "https://www.w3.org/TR/orientation-event/", - "title": "DeviceOrientation Event", + "title": "Device Orientation and Motion", "vshortname": "orientation-event" }, "orientation-sensor": { @@ -2742,23 +3152,33 @@ "paint-timing": { "abstract": null, "current_url": "https://w3c.github.io/paint-timing/", - "description": "Paint Timing 1", + "description": "Paint Timing", "level": null, "shortname": "paint-timing", "snapshot_url": "https://www.w3.org/TR/paint-timing/", - "title": "Paint Timing 1", + "title": "Paint Timing", "vshortname": "paint-timing" }, "partitioned-cookies": { "abstract": null, - "current_url": "https://dcthetall.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html", + "current_url": "https://explainers-by-googlers.github.io/CHIPS-spec/draft-cutler-httpbis-partitioned-cookies.html", "description": "Cookies Having Independent Partitioned State specification", "level": null, "shortname": "partitioned-cookies", "snapshot_url": null, - "title": "Cookies Having Independent Partitioned State specification", + "title": "Cookies Having Independent Partitioned State", "vshortname": "partitioned-cookies" }, + "passkey-endpoints": { + "abstract": null, + "current_url": "https://w3c.github.io/webappsec-passkey-endpoints/passkey-endpoints.html", + "description": "A Well-Known URL for Passkey Endpoints", + "level": null, + "shortname": "passkey-endpoints", + "snapshot_url": null, + "title": "A Well-Known URL for Passkey Endpoints", + "vshortname": "passkey-endpoints" + }, "payment-handler": { "abstract": null, "current_url": "https://w3c.github.io/payment-handler/", @@ -2789,15 +3209,15 @@ "title": "Payment Method Manifest", "vshortname": "payment-method-manifest" }, - "payment-request-1.1": { + "payment-request": { "abstract": null, "current_url": "https://w3c.github.io/payment-request/", - "description": "Payment Request API 1.1", + "description": "Payment Request API", "level": null, "shortname": "payment-request", - "snapshot_url": "https://www.w3.org/TR/payment-request-1.1/", - "title": "Payment Request API 1.1", - "vshortname": "payment-request-1.1" + "snapshot_url": "https://www.w3.org/TR/payment-request/", + "title": "Payment Request API", + "vshortname": "payment-request" }, "performance-measure-memory": { "abstract": null, @@ -2849,6 +3269,16 @@ "title": "Permissions Policy", "vshortname": "permissions-policy-1" }, + "permissions-registry": { + "abstract": null, + "current_url": "https://w3c.github.io/permissions-registry/", + "description": "Permissions Registry", + "level": null, + "shortname": "permissions-registry", + "snapshot_url": null, + "title": "Permissions Registry", + "vshortname": "permissions-registry" + }, "permissions-request": { "abstract": null, "current_url": "https://wicg.github.io/permissions-request/", @@ -2879,15 +3309,15 @@ "title": "Picture-in-Picture", "vshortname": "picture-in-picture" }, - "png-spec": { + "png-3": { "abstract": null, - "current_url": "https://w3c.github.io/PNG-spec/", + "current_url": "https://w3c.github.io/png/", "description": "Portable Network Graphics (PNG) Specification (Third Edition)", - "level": null, - "shortname": "png-spec", - "snapshot_url": null, + "level": 3, + "shortname": "png", + "snapshot_url": "https://www.w3.org/TR/png-3/", "title": "PNG", - "vshortname": "png-spec" + "vshortname": "png-3" }, "pointerevents3": { "abstract": null, @@ -2959,6 +3389,16 @@ "title": "Presentation API", "vshortname": "presentation-api" }, + "private-aggregation-api": { + "abstract": null, + "current_url": "https://patcg-individual-drafts.github.io/private-aggregation-api/", + "description": "Private Aggregation API", + "level": null, + "shortname": "private-aggregation-api", + "snapshot_url": null, + "title": "Private Aggregation API", + "vshortname": "private-aggregation-api" + }, "private-click-measurement": { "abstract": null, "current_url": "https://privacycg.github.io/private-click-measurement/", @@ -2969,6 +3409,16 @@ "title": "Private Click Measurement", "vshortname": "private-click-measurement" }, + "private-network-access": { + "abstract": null, + "current_url": "https://wicg.github.io/private-network-access/", + "description": "Private Network Access", + "level": null, + "shortname": "private-network-access", + "snapshot_url": null, + "title": "Private Network Access", + "vshortname": "private-network-access" + }, "promises-guide": { "abstract": null, "current_url": "https://www.w3.org/2001/tag/doc/promises-guide", @@ -2989,6 +3439,16 @@ "title": "Proximity Sensor", "vshortname": "proximity" }, + "pub-manifest": { + "abstract": null, + "current_url": "https://w3c.github.io/pub-manifest/", + "description": "Publication Manifest", + "level": null, + "shortname": "pub-manifest", + "snapshot_url": "https://www.w3.org/TR/pub-manifest/", + "title": "Publication Manifest", + "vshortname": "pub-manifest" + }, "push-api": { "abstract": null, "current_url": "https://w3c.github.io/push-api/", @@ -3035,7 +3495,7 @@ "description": "RDF 1.2 Concepts and Abstract Syntax", "level": null, "shortname": "rdf-concepts", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-concepts/", "title": "RDF 1.2 Concepts and Abstract Syntax", "vshortname": "rdf12-concepts" }, @@ -3045,7 +3505,7 @@ "description": "RDF 1.2 N-Quads", "level": null, "shortname": "rdf-n-quads", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-n-quads/", "title": "RDF 1.2 N-Quads", "vshortname": "rdf12-n-quads" }, @@ -3055,7 +3515,7 @@ "description": "RDF 1.2 N-Triples", "level": null, "shortname": "rdf-n-triples", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-n-triples/", "title": "RDF 1.2 N-Triples", "vshortname": "rdf12-n-triples" }, @@ -3065,7 +3525,7 @@ "description": "RDF 1.2 Schema", "level": null, "shortname": "rdf-schema", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-schema/", "title": "RDF 1.2 Schema", "vshortname": "rdf12-schema" }, @@ -3075,7 +3535,7 @@ "description": "RDF 1.2 Semantics", "level": null, "shortname": "rdf-semantics", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-semantics/", "title": "RDF 1.2 Semantics", "vshortname": "rdf12-semantics" }, @@ -3085,7 +3545,7 @@ "description": "RDF 1.2 TriG", "level": null, "shortname": "rdf-trig", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-trig/", "title": "RDF 1.2 TriG", "vshortname": "rdf12-trig" }, @@ -3095,7 +3555,7 @@ "description": "RDF 1.2 Turtle", "level": null, "shortname": "rdf-turtle", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-turtle/", "title": "RDF 1.2 Turtle", "vshortname": "rdf12-turtle" }, @@ -3105,10 +3565,20 @@ "description": "RDF 1.2 XML Syntax", "level": null, "shortname": "rdf-xml", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/rdf12-xml/", "title": "RDF 1.2 XML Syntax", "vshortname": "rdf12-xml" }, + "real-world-meshing": { + "abstract": null, + "current_url": "https://immersive-web.github.io/real-world-meshing/", + "description": "WebXR Mesh Detection Module", + "level": null, + "shortname": "real-world-meshing", + "snapshot_url": null, + "title": "WebXR Mesh Detection", + "vshortname": "real-world-meshing" + }, "referrer-policy": { "abstract": null, "current_url": "https://w3c.github.io/webappsec-referrer-policy/", @@ -3149,15 +3619,15 @@ "title": "requestIdleCallback() Cooperative Scheduling of Background Tasks", "vshortname": "requestidlecallback" }, - "requeststorageaccessfororigin": { + "requeststorageaccessfor": { "abstract": null, - "current_url": "https://privacycg.github.io/requestStorageAccessForOrigin/", - "description": "requestStorageAccessForOrigin API", + "current_url": "https://privacycg.github.io/requestStorageAccessFor/", + "description": "requestStorageAccessFor API", "level": null, - "shortname": "requeststorageaccessfororigin", + "shortname": "requeststorageaccessfor", "snapshot_url": null, - "title": "requestStorageAccessForOrigin API", - "vshortname": "requeststorageaccessfororigin" + "title": "requestStorageAccessFor API", + "vshortname": "requeststorageaccessfor" }, "resize-observer-1": { "abstract": null, @@ -3169,16 +3639,6 @@ "title": "Resize Observer", "vshortname": "resize-observer-1" }, - "resource-hints": { - "abstract": null, - "current_url": "https://w3c.github.io/resource-hints/", - "description": "Resource Hints", - "level": null, - "shortname": "resource-hints", - "snapshot_url": "https://www.w3.org/TR/resource-hints/", - "title": "Resource Hints", - "vshortname": "resource-hints" - }, "resource-timing": { "abstract": null, "current_url": "https://w3c.github.io/resource-timing/", @@ -3289,26 +3749,6 @@ "title": "HTTP/1.1 Authentication", "vshortname": "rfc7235" }, - "rfc7538": { - "abstract": null, - "current_url": "https://httpwg.org/specs/rfc7538.html", - "description": "RFC 7538 - The Hypertext Transfer Protocol Status Code 308 (Permanent Redirect)", - "level": null, - "shortname": "rfc7538", - "snapshot_url": null, - "title": "Permanent Redirect", - "vshortname": "rfc7538" - }, - "rfc7540": { - "abstract": null, - "current_url": "https://httpwg.org/specs/rfc7540.html", - "description": "RFC 7540 - Hypertext Transfer Protocol Version 2 (HTTP/2)", - "level": null, - "shortname": "rfc7540", - "snapshot_url": null, - "title": "HTTP/2", - "vshortname": "rfc7540" - }, "rfc7616": { "abstract": null, "current_url": "https://httpwg.org/specs/rfc7616.html", @@ -3369,6 +3809,16 @@ "title": "Web Linking", "vshortname": "rfc8288" }, + "rfc8297": { + "abstract": null, + "current_url": "https://httpwg.org/specs/rfc8297.html", + "description": "RFC 8297 - An HTTP Status Code for Indicating Hints", + "level": null, + "shortname": "rfc8297", + "snapshot_url": null, + "title": "An HTTP Status Code for Indicating Hints", + "vshortname": "rfc8297" + }, "rfc8470": { "abstract": null, "current_url": "https://httpwg.org/specs/rfc8470.html", @@ -3379,6 +3829,16 @@ "title": "Using Early Data in HTTP", "vshortname": "rfc8470" }, + "rfc8878": { + "abstract": null, + "current_url": "https://www.rfc-editor.org/rfc/rfc8878", + "description": "RFC 8878: Zstandard Compression and the 'application/zstd' Media Type", + "level": null, + "shortname": "rfc8878", + "snapshot_url": null, + "title": "Zstandard Compression and the 'application/zstd' Media Type", + "vshortname": "rfc8878" + }, "rfc8942": { "abstract": null, "current_url": "https://www.rfc-editor.org/rfc/rfc8942", @@ -3449,6 +3909,36 @@ "title": "Expect-CT Extension for HTTP", "vshortname": "rfc9163" }, + "rfc9218": { + "abstract": null, + "current_url": "https://httpwg.org/specs/rfc9218.html", + "description": "RFC 9218 - Extensible Prioritization Scheme for HTTP", + "level": null, + "shortname": "rfc9218", + "snapshot_url": null, + "title": "Extensible Prioritization Scheme for HTTP", + "vshortname": "rfc9218" + }, + "rfc9530": { + "abstract": null, + "current_url": "https://httpwg.org/specs/rfc9530.html", + "description": "RFC 9530 - Digest Fields", + "level": null, + "shortname": "rfc9530", + "snapshot_url": null, + "title": "Digest Fields", + "vshortname": "rfc9530" + }, + "saa-non-cookie-storage": { + "abstract": null, + "current_url": "https://privacycg.github.io/saa-non-cookie-storage/", + "description": "Extending Storage Access API (SAA) to non-cookie storage", + "level": null, + "shortname": "saa-non-cookie-storage", + "snapshot_url": null, + "title": "Extending Storage Access API to non-cookie storage", + "vshortname": "saa-non-cookie-storage" + }, "sanitizer-api": { "abstract": null, "current_url": "https://wicg.github.io/sanitizer-api/", @@ -3516,17 +4006,17 @@ "level": 1, "shortname": "scroll-animations", "snapshot_url": "https://www.w3.org/TR/scroll-animations-1/", - "title": "Scroll-linked Animations", + "title": "Scroll-driven Animations", "vshortname": "scroll-animations-1" }, "scroll-to-text-fragment": { "abstract": null, "current_url": "https://wicg.github.io/scroll-to-text-fragment/", - "description": "Text Fragments", + "description": "URL Fragment Text Directives", "level": null, "shortname": "scroll-to-text-fragment", "snapshot_url": null, - "title": "Text Fragments", + "title": "URL Fragment Text Directives", "vshortname": "scroll-to-text-fragment" }, "secure-contexts": { @@ -3579,6 +4069,16 @@ "title": "Selectors 4", "vshortname": "selectors-4" }, + "selectors-5": { + "abstract": null, + "current_url": "https://drafts.csswg.org/selectors-5/", + "description": "Selectors Level 5", + "level": 5, + "shortname": "selectors", + "snapshot_url": null, + "title": "Selectors 5", + "vshortname": "selectors-5" + }, "selectors-nonelement-1": { "abstract": null, "current_url": "https://drafts.csswg.org/selectors-nonelement-1/", @@ -3629,6 +4129,16 @@ "title": "Accelerated Shape Detection in Images", "vshortname": "shape-detection-api" }, + "shared-storage": { + "abstract": null, + "current_url": "https://wicg.github.io/shared-storage/", + "description": "Shared Storage API", + "level": null, + "shortname": "shared-storage", + "snapshot_url": null, + "title": "Shared Storage API", + "vshortname": "shared-storage" + }, "sms-one-time-codes": { "abstract": null, "current_url": "https://wicg.github.io/sms-one-time-codes/", @@ -3639,6 +4149,26 @@ "title": "SMS One-Time Codes", "vshortname": "sms-one-time-codes" }, + "soft-navigations": { + "abstract": null, + "current_url": "https://wicg.github.io/soft-navigations/", + "description": "Soft Navigations", + "level": null, + "shortname": "soft-navigations", + "snapshot_url": null, + "title": "Soft Navigations", + "vshortname": "soft-navigations" + }, + "sourcemap": { + "abstract": null, + "current_url": "https://tc39.es/source-map/", + "description": "Source Map", + "level": null, + "shortname": "sourcemap", + "snapshot_url": null, + "title": "Source Map", + "vshortname": "sourcemap" + }, "sparql12-concepts": { "abstract": null, "current_url": "https://w3c.github.io/sparql-concepts/spec/", @@ -3655,7 +4185,7 @@ "description": "SPARQL 1.2 Entailment Regimes", "level": null, "shortname": "sparql-entailment", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-entailment/", "title": "SPARQL 1.2 Entailment Regimes", "vshortname": "sparql12-entailment" }, @@ -3665,7 +4195,7 @@ "description": "SPARQL 1.2 Federated Query", "level": null, "shortname": "sparql-federated-query", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-federated-query/", "title": "SPARQL 1.2 Federated Query", "vshortname": "sparql12-federated-query" }, @@ -3675,7 +4205,7 @@ "description": "SPARQL 1.2 Graph Store Protocol", "level": null, "shortname": "sparql-graph-store-protocol", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-graph-store-protocol/", "title": "SPARQL 1.2 Graph Store Protocol", "vshortname": "sparql12-graph-store-protocol" }, @@ -3685,7 +4215,7 @@ "description": "SPARQL 1.2 Protocol", "level": null, "shortname": "sparql-protocol", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-protocol/", "title": "SPARQL 1.2 Protocol", "vshortname": "sparql12-protocol" }, @@ -3695,7 +4225,7 @@ "description": "SPARQL 1.2 Query Language", "level": null, "shortname": "sparql-query", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-query/", "title": "SPARQL 1.2 Query Language", "vshortname": "sparql12-query" }, @@ -3705,7 +4235,7 @@ "description": "SPARQL 1.2 Query Results CSV and TSV Formats", "level": null, "shortname": "sparql-results-csv-tsv", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-results-csv-tsv/", "title": "SPARQL 1.2 Query Results CSV and TSV Formats", "vshortname": "sparql12-results-csv-tsv" }, @@ -3715,7 +4245,7 @@ "description": "SPARQL 1.2 Query Results JSON Format", "level": null, "shortname": "sparql-results-json", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-results-json/", "title": "SPARQL 1.2 Query Results JSON Format", "vshortname": "sparql12-results-json" }, @@ -3725,7 +4255,7 @@ "description": "SPARQL 1.2 Query Results XML Format", "level": null, "shortname": "sparql-results-xml", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-results-xml/", "title": "SPARQL 1.2 Query Results XML Format", "vshortname": "sparql12-results-xml" }, @@ -3735,7 +4265,7 @@ "description": "SPARQL 1.2 Service Description", "level": null, "shortname": "sparql-service-description", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-service-description/", "title": "SPARQL 1.2 Service Description", "vshortname": "sparql12-service-description" }, @@ -3745,7 +4275,7 @@ "description": "SPARQL 1.2 Update", "level": null, "shortname": "sparql-update", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/sparql12-update/", "title": "SPARQL 1.2 Update", "vshortname": "sparql12-update" }, @@ -3799,6 +4329,16 @@ "title": "The Storage Access API", "vshortname": "storage-access" }, + "storage-buckets": { + "abstract": null, + "current_url": "https://wicg.github.io/storage-buckets/", + "description": "Storage Buckets API", + "level": null, + "shortname": "storage-buckets", + "snapshot_url": null, + "title": "Storage Buckets API", + "vshortname": "storage-buckets" + }, "streams": { "abstract": null, "current_url": "https://streams.spec.whatwg.org/", @@ -3869,16 +4409,6 @@ "title": "SVG 2", "vshortname": "svg2" }, - "tc39-array-find-from-last": { - "abstract": null, - "current_url": "https://tc39.es/proposal-array-find-from-last/", - "description": "Proposal-array-find-from-last", - "level": null, - "shortname": "tc39-array-find-from-last", - "snapshot_url": null, - "title": "Proposal-array-find-from-last", - "vshortname": "tc39-array-find-from-last" - }, "tc39-array-from-async": { "abstract": null, "current_url": "https://tc39.es/proposal-array-from-async/", @@ -3899,6 +4429,16 @@ "title": "Array Grouping", "vshortname": "tc39-array-grouping" }, + "tc39-arraybuffer-base64": { + "abstract": null, + "current_url": "https://tc39.es/proposal-arraybuffer-base64/spec/", + "description": "Uint8Array to/from base64", + "level": null, + "shortname": "tc39-arraybuffer-base64", + "snapshot_url": null, + "title": "Uint8Array to/from base64", + "vshortname": "tc39-arraybuffer-base64" + }, "tc39-arraybuffer-transfer": { "abstract": null, "current_url": "https://tc39.es/proposal-arraybuffer-transfer/", @@ -3909,25 +4449,25 @@ "title": "ArrayBuffer transfer", "vshortname": "tc39-arraybuffer-transfer" }, - "tc39-atomics-wait-async": { + "tc39-async-explicit-resource-management": { "abstract": null, - "current_url": "https://tc39.es/proposal-atomics-wait-async/", - "description": "Atomics.waitAsync", + "current_url": "https://tc39.es/proposal-async-explicit-resource-management/", + "description": "ECMAScript Async Explicit Resource Management", "level": null, - "shortname": "tc39-atomics-wait-async", + "shortname": "tc39-async-explicit-resource-management", "snapshot_url": null, - "title": "Atomics.waitAsync", - "vshortname": "tc39-atomics-wait-async" + "title": "ECMAScript Async Explicit Resource Management", + "vshortname": "tc39-async-explicit-resource-management" }, - "tc39-change-array-by-copy": { + "tc39-canonical-tz": { "abstract": null, - "current_url": "https://tc39.es/proposal-change-array-by-copy/", - "description": "Change Array by copy", + "current_url": "https://tc39.es/proposal-canonical-tz/", + "description": "Time Zone Canonicalization proposal", "level": null, - "shortname": "tc39-change-array-by-copy", + "shortname": "tc39-canonical-tz", "snapshot_url": null, - "title": "Change Array by copy", - "vshortname": "tc39-change-array-by-copy" + "title": "Time Zone Canonicalization", + "vshortname": "tc39-canonical-tz" }, "tc39-decorators": { "abstract": null, @@ -3936,9 +4476,19 @@ "level": null, "shortname": "tc39-decorators", "snapshot_url": null, - "title": "Decorators proposal", + "title": "Decorators", "vshortname": "tc39-decorators" }, + "tc39-dynamic-code-brand-checks": { + "abstract": null, + "current_url": "https://tc39.es/proposal-dynamic-code-brand-checks/", + "description": "Dynamic Code Brand Checks", + "level": null, + "shortname": "tc39-dynamic-code-brand-checks", + "snapshot_url": null, + "title": "Dynamic Code Brand Checks", + "vshortname": "tc39-dynamic-code-brand-checks" + }, "tc39-explicit-resource-management": { "abstract": null, "current_url": "https://tc39.es/proposal-explicit-resource-management/", @@ -3949,15 +4499,25 @@ "title": "ECMAScript Explicit Resource Management", "vshortname": "tc39-explicit-resource-management" }, - "tc39-import-assertions": { + "tc39-float16array": { "abstract": null, - "current_url": "https://tc39.es/proposal-import-assertions/", - "description": "import assertions", + "current_url": "https://tc39.es/proposal-float16array/", + "description": "Float16Array", "level": null, - "shortname": "tc39-import-assertions", + "shortname": "tc39-float16array", "snapshot_url": null, - "title": "import assertions", - "vshortname": "tc39-import-assertions" + "title": "Float16Array", + "vshortname": "tc39-float16array" + }, + "tc39-import-attributes": { + "abstract": null, + "current_url": "https://tc39.es/proposal-import-attributes/", + "description": "Import Attributes", + "level": null, + "shortname": "tc39-import-attributes", + "snapshot_url": null, + "title": "Import Attributes", + "vshortname": "tc39-import-attributes" }, "tc39-intl-duration-format": { "abstract": null, @@ -3969,26 +4529,6 @@ "title": "Intl.DurationFormat", "vshortname": "tc39-intl-duration-format" }, - "tc39-intl-enumeration": { - "abstract": null, - "current_url": "https://tc39.es/proposal-intl-enumeration/", - "description": "Intl Enumeration API Specification", - "level": null, - "shortname": "tc39-intl-enumeration", - "snapshot_url": null, - "title": "Intl Enumeration API", - "vshortname": "tc39-intl-enumeration" - }, - "tc39-intl-extend-timezonename": { - "abstract": null, - "current_url": "https://tc39.es/proposal-intl-extend-timezonename/", - "description": "Extend TimeZoneName Option Proposal", - "level": null, - "shortname": "tc39-intl-extend-timezonename", - "snapshot_url": null, - "title": "Extend TimeZoneName Option", - "vshortname": "tc39-intl-extend-timezonename" - }, "tc39-intl-locale-info": { "abstract": null, "current_url": "https://tc39.es/proposal-intl-locale-info/", @@ -3999,46 +4539,6 @@ "title": "Intl Locale Info", "vshortname": "tc39-intl-locale-info" }, - "tc39-intl-negotiation": { - "abstract": null, - "current_url": "https://tc39.es/proposal-intl-numberformat-v3/out/negotiation/proposed.html", - "description": "Menu", - "level": null, - "shortname": "tc39-intl-negotiation", - "snapshot_url": null, - "title": "Intl Parameter Resolution", - "vshortname": "tc39-intl-negotiation" - }, - "tc39-intl-numberformat": { - "abstract": null, - "current_url": "https://tc39.es/proposal-intl-numberformat-v3/out/numberformat/proposed.html", - "description": "Menu", - "level": null, - "shortname": "tc39-intl-numberformat", - "snapshot_url": null, - "title": "Intl.NumberFormat", - "vshortname": "tc39-intl-numberformat" - }, - "tc39-intl-pluralrules": { - "abstract": null, - "current_url": "https://tc39.es/proposal-intl-numberformat-v3/out/pluralrules/proposed.html", - "description": "Menu", - "level": null, - "shortname": "tc39-intl-pluralrules", - "snapshot_url": null, - "title": "Intl.PluralRules", - "vshortname": "tc39-intl-pluralrules" - }, - "tc39-is-usv-string": { - "abstract": null, - "current_url": "https://tc39.es/proposal-is-usv-string/", - "description": "Well-Formed Unicode Strings", - "level": null, - "shortname": "tc39-is-usv-string", - "snapshot_url": null, - "title": "Well-Formed Unicode Strings", - "vshortname": "tc39-is-usv-string" - }, "tc39-iterator-helpers": { "abstract": null, "current_url": "https://tc39.es/proposal-iterator-helpers/", @@ -4069,6 +4569,36 @@ "title": "JSON.parse source text access", "vshortname": "tc39-json-parse-with-source" }, + "tc39-promise-try": { + "abstract": null, + "current_url": "https://tc39.es/proposal-promise-try/", + "description": "Promise.try", + "level": null, + "shortname": "tc39-promise-try", + "snapshot_url": null, + "title": "Promise.try", + "vshortname": "tc39-promise-try" + }, + "tc39-promise-with-resolvers": { + "abstract": null, + "current_url": "https://tc39.es/proposal-promise-with-resolvers/", + "description": "ES Promise.withResolvers (2023)", + "level": null, + "shortname": "tc39-promise-with-resolvers", + "snapshot_url": null, + "title": "2023", + "vshortname": "tc39-promise-with-resolvers" + }, + "tc39-regex-escaping": { + "abstract": null, + "current_url": "https://tc39.es/proposal-regex-escaping/", + "description": "RegExp.escape", + "level": null, + "shortname": "tc39-regex-escaping", + "snapshot_url": null, + "title": "RegExp.escape", + "vshortname": "tc39-regex-escaping" + }, "tc39-regexp-modifiers": { "abstract": null, "current_url": "https://tc39.es/proposal-regexp-modifiers/", @@ -4079,16 +4609,6 @@ "title": "Regular Expression Pattern Modifiers for ECMAScript", "vshortname": "tc39-regexp-modifiers" }, - "tc39-resizablearraybuffer": { - "abstract": null, - "current_url": "https://tc39.es/proposal-resizablearraybuffer/", - "description": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "level": null, - "shortname": "tc39-resizablearraybuffer", - "snapshot_url": null, - "title": "Resizable ArrayBuffer and growable SharedArrayBuffer", - "vshortname": "tc39-resizablearraybuffer" - }, "tc39-set-methods": { "abstract": null, "current_url": "https://tc39.es/proposal-set-methods/", @@ -4109,15 +4629,15 @@ "title": "ShadowRealm API", "vshortname": "tc39-shadowrealm" }, - "tc39-symbols-as-weakmap-keys": { + "tc39-source-phase-imports": { "abstract": null, - "current_url": "https://tc39.es/proposal-symbols-as-weakmap-keys/", - "description": "Symbol as WeakMap Keys Proposal", + "current_url": "https://tc39.es/proposal-source-phase-imports/", + "description": "Source Phase Imports", "level": null, - "shortname": "tc39-symbols-as-weakmap-keys", + "shortname": "tc39-source-phase-imports", "snapshot_url": null, - "title": "Symbol as WeakMap Keys", - "vshortname": "tc39-symbols-as-weakmap-keys" + "title": "Source Phase Imports", + "vshortname": "tc39-source-phase-imports" }, "tc39-temporal": { "abstract": null, @@ -4126,7 +4646,7 @@ "level": null, "shortname": "tc39-temporal", "snapshot_url": null, - "title": "Temporal proposal", + "title": "Temporal", "vshortname": "tc39-temporal" }, "test-methodology": { @@ -4169,6 +4689,16 @@ "title": "Timing Entry Names Registry", "vshortname": "timing-entrytypes-registry" }, + "topics": { + "abstract": null, + "current_url": "https://patcg-individual-drafts.github.io/topics/", + "description": "Topics API", + "level": null, + "shortname": "topics", + "snapshot_url": null, + "title": "Topics API", + "vshortname": "topics" + }, "touch-events": { "abstract": null, "current_url": "https://w3c.github.io/touch-events/", @@ -4189,6 +4719,16 @@ "title": "DNT", "vshortname": "tracking-dnt" }, + "trust-token-api": { + "abstract": null, + "current_url": "https://wicg.github.io/trust-token-api/", + "description": "Private State Token API", + "level": null, + "shortname": "trust-token-api", + "snapshot_url": null, + "title": "Private State Token API", + "vshortname": "trust-token-api" + }, "trusted-types": { "abstract": null, "current_url": "https://w3c.github.io/trusted-types/dist/spec/", @@ -4199,6 +4739,16 @@ "title": "Trusted Types", "vshortname": "trusted-types" }, + "turtledove": { + "abstract": null, + "current_url": "https://wicg.github.io/turtledove/", + "description": "Protected Audience (formerly FLEDGE)", + "level": null, + "shortname": "turtledove", + "snapshot_url": null, + "title": "Protected Audience", + "vshortname": "turtledove" + }, "ua-client-hints": { "abstract": null, "current_url": "https://wicg.github.io/ua-client-hints/", @@ -4261,12 +4811,12 @@ }, "urlpattern": { "abstract": null, - "current_url": "https://wicg.github.io/urlpattern/", - "description": "URLPattern API", + "current_url": "https://urlpattern.spec.whatwg.org/", + "description": "URL Pattern Standard", "level": null, "shortname": "urlpattern", "snapshot_url": null, - "title": "URLPattern API", + "title": "URL Pattern", "vshortname": "urlpattern" }, "user-preference-media-features-headers": { @@ -4289,6 +4839,26 @@ "title": "User Timing", "vshortname": "user-timing" }, + "vc-data-integrity": { + "abstract": null, + "current_url": "https://w3c.github.io/vc-data-integrity/", + "description": "Verifiable Credential Data Integrity 1.0", + "level": null, + "shortname": "vc-data-integrity", + "snapshot_url": "https://www.w3.org/TR/vc-data-integrity/", + "title": "Verifiable Credential Data Integrity 1.0", + "vshortname": "vc-data-integrity" + }, + "vc-data-model-2.0": { + "abstract": null, + "current_url": "https://w3c.github.io/vc-data-model/", + "description": "Verifiable Credentials Data Model v2.0", + "level": null, + "shortname": "vc-data-model", + "snapshot_url": "https://www.w3.org/TR/vc-data-model-2.0/", + "title": "Verifiable Credentials Data Model v2.0", + "vshortname": "vc-data-model-2.0" + }, "vibration": { "abstract": null, "current_url": "https://w3c.github.io/vibration/", @@ -4349,15 +4919,25 @@ "title": "WAI-ARIA", "vshortname": "wai-aria-1.2" }, - "wasm-core-1": { + "wai-aria-1.3": { + "abstract": null, + "current_url": "https://w3c.github.io/aria/", + "description": "Accessible Rich Internet Applications (WAI-ARIA) 1.3", + "level": null, + "shortname": "wai-aria", + "snapshot_url": "https://www.w3.org/TR/wai-aria-1.3/", + "title": "WAI-ARIA", + "vshortname": "wai-aria-1.3" + }, + "wasm-core-2": { "abstract": null, "current_url": "https://webassembly.github.io/spec/core/bikeshed/", "description": "WebAssembly Core Specification", - "level": 1, + "level": 2, "shortname": "wasm-core", - "snapshot_url": "https://www.w3.org/TR/wasm-core-1/", + "snapshot_url": "https://www.w3.org/TR/wasm-core-2/", "title": "WebAssembly Core", - "vshortname": "wasm-core-1" + "vshortname": "wasm-core-2" }, "wasm-js-api-2": { "abstract": null, @@ -4395,7 +4975,7 @@ "description": "Web Animations Level 2", "level": 2, "shortname": "web-animations", - "snapshot_url": null, + "snapshot_url": "https://www.w3.org/TR/web-animations-2/", "title": "Web Animations 2", "vshortname": "web-animations-2" }, @@ -4419,6 +4999,16 @@ "title": "Web Bluetooth", "vshortname": "web-bluetooth" }, + "web-bluetooth-scanning": { + "abstract": null, + "current_url": "https://webbluetoothcg.github.io/web-bluetooth/scanning.html", + "description": "Web Bluetooth Scanning", + "level": null, + "shortname": "web-bluetooth-scanning", + "snapshot_url": null, + "title": "Web Bluetooth Scanning", + "vshortname": "web-bluetooth-scanning" + }, "web-locks": { "abstract": null, "current_url": "https://w3c.github.io/web-locks/", @@ -4449,6 +5039,16 @@ "title": "WebOTP API", "vshortname": "web-otp" }, + "web-preferences-api": { + "abstract": null, + "current_url": "https://wicg.github.io/web-preferences-api/", + "description": "Web Preferences API", + "level": null, + "shortname": "web-preferences-api", + "snapshot_url": null, + "title": "Web Preferences API", + "vshortname": "web-preferences-api" + }, "web-share": { "abstract": null, "current_url": "https://w3c.github.io/web-share/", @@ -4469,6 +5069,16 @@ "title": "Web Share Target API", "vshortname": "web-share-target" }, + "web-smart-card": { + "abstract": null, + "current_url": "https://wicg.github.io/web-smart-card/", + "description": "Web Smart Card API", + "level": null, + "shortname": "web-smart-card", + "snapshot_url": null, + "title": "Web Smart Card API", + "vshortname": "web-smart-card" + }, "webaudio": { "abstract": null, "current_url": "https://webaudio.github.io/web-audio-api/", @@ -4482,7 +5092,7 @@ "webauthn-3": { "abstract": null, "current_url": "https://w3c.github.io/webauthn/", - "description": "Web Authentication: An API for accessing Public Key Credentials - Level", + "description": "Web Authentication: An API for accessing Public Key Credentials - Level 3", "level": 3, "shortname": "webauthn", "snapshot_url": "https://www.w3.org/TR/webauthn-3/", @@ -4609,6 +5219,16 @@ "title": "u-law PCM WebCodecs Registration", "vshortname": "webcodecs-ulaw-codec-registration" }, + "webcodecs-video-frame-metadata-registry": { + "abstract": null, + "current_url": "https://w3c.github.io/webcodecs/video_frame_metadata_registry.html", + "description": "WebCodecs VideoFrame Metadata Registry", + "level": null, + "shortname": "webcodecs-video-frame-metadata-registry", + "snapshot_url": "https://www.w3.org/TR/webcodecs-video-frame-metadata-registry/", + "title": "WebCodecs VideoFrame Metadata Registry", + "vshortname": "webcodecs-video-frame-metadata-registry" + }, "webcodecs-vorbis-codec-registration": { "abstract": null, "current_url": "https://w3c.github.io/webcodecs/vorbis_codec_registration.html", @@ -4749,6 +5369,16 @@ "title": "Web Neural Network API", "vshortname": "webnn" }, + "webp": { + "abstract": null, + "current_url": "https://www.ietf.org/archive/id/draft-zern-webp-15.html", + "description": "WebP Image Format", + "level": null, + "shortname": "webp", + "snapshot_url": null, + "title": "WebP Image Format", + "vshortname": "webp" + }, "webpackage": { "abstract": null, "current_url": "https://wicg.github.io/webpackage/loading.html", @@ -4949,6 +5579,26 @@ "title": "WebXR Lighting Estimation API 1", "vshortname": "webxr-lighting-estimation-1" }, + "webxr-meshing": { + "abstract": null, + "current_url": "https://immersive-web.github.io/real-world-geometry/webxrmeshing-1.html", + "description": "WebXR Meshing API Level 1", + "level": null, + "shortname": "webxr-meshing", + "snapshot_url": null, + "title": "WebXR Meshing API 1", + "vshortname": "webxr-meshing" + }, + "webxr-plane-detection": { + "abstract": null, + "current_url": "https://immersive-web.github.io/real-world-geometry/plane-detection.html", + "description": "WebXR Plane Detection Module", + "level": null, + "shortname": "webxr-plane-detection", + "snapshot_url": null, + "title": "WebXR Plane Detection", + "vshortname": "webxr-plane-detection" + }, "webxrlayers-1": { "abstract": null, "current_url": "https://immersive-web.github.io/layers/", @@ -4979,15 +5629,15 @@ "title": "Window Controls Overlay", "vshortname": "window-controls-overlay" }, - "window-placement": { + "window-management": { "abstract": null, - "current_url": "https://w3c.github.io/window-placement/", - "description": "Multi-Screen Window Placement", + "current_url": "https://w3c.github.io/window-management/", + "description": "Window Management", "level": null, - "shortname": "window-placement", - "snapshot_url": "https://www.w3.org/TR/window-placement/", - "title": "Multi-Screen Window Placement", - "vshortname": "window-placement" + "shortname": "window-management", + "snapshot_url": "https://www.w3.org/TR/window-management/", + "title": "Window Management", + "vshortname": "window-management" }, "woff": { "abstract": null, diff --git a/bikeshed/spec-data/readonly/statuses.kdl b/bikeshed/spec-data/readonly/statuses.kdl deleted file mode 100644 index 5ae9d388ec..0000000000 --- a/bikeshed/spec-data/readonly/statuses.kdl +++ /dev/null @@ -1,184 +0,0 @@ -/* -All recognized Status values. - -Slashed values namespace the status under an org; -any Group tagged to that org can use it by default -(without the slash), -or anyone can use it by referring to the full name. - -The `requires` child node lists what metadata keys are required for this Status. - -* w3c-ig: Usable by groups tagged as W3C Interest Groups -* w3c-wg: Usable by groups tagged as W3C Working Groups -* w3c-cg: Usable by groups tagged as W3C Community Groups -* w3c-tag: Usable by the W3C TAG - -*/ - -statuses { - DREAM "A Collection of Interesting Ideas" - LS "Living Standard" - LS-COMMIT "Commit Snapshot" - LS-BRANCH "Branch Snapshot" - LS-PR "PR Preview" - LD "Living Document" - - whatwg/RD "Review Draft" { - requires "Date" - } - - w3c/DRAFT-FINDING "Draft Finding" { - w3c-tag - } - w3c/FINDING "Finding" { - w3c-tag - } - w3c/ED "Editor's Draft" { - requires "Level" "ED" - w3c-ig - w3c-wg - w3c-tag - } - w3c/WD "W3C Working Draft" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" - w3c-wg - } - w3c/FPWD "W3C First Public Working Draft" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" - w3c-wg - } - w3c/LCWD "W3C Last Call Working Draft" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" "Deadline" - w3c-wg - } - w3c/CR "W3C Candidate Recommendation Snapshot" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implentation Report" - w3c-wg - } - w3c/CRD "W3C Candidate Recommendation Draft" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" "Deadline" - w3c-wg - } - w3c/PR "W3C Proposed Recommendation" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" "Deadline" - w3c-wg - } - w3c/REC "W3C Recommendation" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" - w3c-wg - } - w3c/PER "W3C Proposed Edited Recommendation" { - requires "Level" "ED" "TR" "Issue Tracking" "Date" "Implementation Report" "Deadline" - w3c-wg - } - w3c/NOTE "W3C Note" { - requires "TR" "Issue Tracking" "Date" - w3c-ig - w3c-wg - w3c-tag - } - w3c/NOTE-ED "Editor's Draft" { - requires "ED" - w3c-ig - w3c-wg - w3c-tag - } - w3c/NOTE-WD "W3C Working Draft" { - requires "ED" "TR" "Issue Tracking" "Date" - w3c-ig - w3c-wg - w3c-tag - } - w3c/NOTE-FPWD "W3C First Public Working Draft" { - requires "ED" "TR" "Issue Tracking" "Date" - w3c-ig - w3c-wg - w3c-tag - } - w3c/MO "W3C Member-only Draft" { - requires "TR" "Issue Tracking" "Date" - } - w3c/UD "Unofficial Proposal Draft" { - requires "ED" - w3c-ig - w3c-wg - w3c-tag - } - w3c/CG-DRAFT "Draft Community Group Report" { - requires "Level" "ED" - w3c-cg - } - w3c/CG-FINAL "Final Community Group Report" { - requires "Level" "ED" "TR" "Issue Tracking" - w3c-cg - } - - tc39/STAGE0 "Stage 0: Strawman" - tc39/STAGE1 "Stage 1: Proposal" - tc39/STAGE2 "Stage 2: Draft" - tc39/STAGE3 "Stage 3: Candidate" - tc39/STAGE4 "Stage 4: Finished" - - iso/I "Issue" - iso/DR "Defect Report" - iso/D "Draft Proposal" - iso/P "Published Proposal" - iso/MEET "Meeting Announcements" - iso/RESP "Records of Response" - iso/MIN "Minutes" - iso/ER "Editor's Report" - iso/SD "Standing Document" - iso/PWI "Preliminary Work Item" - iso/NP "New Proposal" - iso/NWIP "New Work Item Proposal" - iso/WD "Working Draft" - iso/CD "Committee Draft" - iso/FCD "Final Committee Draft" - iso/DIS "Draft International Standard" - iso/FDIS "Final Draft International Standard" - iso/PRF "Proof of a new International Standard" - iso/IS "International Standard" - iso/TR "Technical Report" - iso/DTR "Draft Technical Report" - iso/TS "Technical Specification" - iso/DTS "Draft Technical Specification" - iso/PAS "Publicly Available Specification" - iso/TTA "Technology Trends Assessment" - iso/IWA "International Workshop Agreement" - iso/COR "Technical Corrigendum" - iso/GUIDE "Guidance to Technical Committees" - iso/NP-AMD "New Proposal Amendment" - iso/AWI-AMD "Approved new Work Item Amendment" - iso/WD-AMD "Working Draft Amendment" - iso/CD-AMD "Committee Draft Amendment" - iso/PD-AMD "Proposed Draft Amendment" - iso/FPD-AMD "Final Proposed Draft Amendment" - iso/D-AMD "Draft Amendment" - iso/FD-AMD "Final Draft Amendment" - iso/PRF-AMD "Proof Amendment" - iso/AMD "Amendment" - - fido/ED "Editor's Draft" - fido/WD "Working Draft" { - requires "ED" - } - fido/RD "Review Draft" { - requires "ED" - } - fido/ID "Implementation Draft" { - requires "ED" - } - fido/PS "Proposed Standard" { - requires "ED" - } - fido/FD "Final Document" { - requires "ED" - } - - khronos/ED "Editor's Draft" - - aom/PD "Pre-Draft" - aom/WGD "AOM Working Group Draft" - aom/WGA "AOM Working Group Approved Draft" - aom/FD "AOM Final Deliverable" -} \ No newline at end of file diff --git a/bikeshed/spec-data/readonly/wpt-tests.txt b/bikeshed/spec-data/readonly/wpt-tests.txt index 95e8679ce8..a835268db9 100644 --- a/bikeshed/spec-data/readonly/wpt-tests.txt +++ b/bikeshed/spec-data/readonly/wpt-tests.txt @@ -1,46 +1,87 @@ -sha: fc0ce971ab3763aee16a97c7034227752fd14348 +sha: f26e9e75d78747a6a082f28c4e4831c990ca7029 crashtest FileAPI/blob/Blob-stream-byob-crash.html +crashtest FileAPI/blob/Blob-stream-sync-xhr-crash.html crashtest accessibility/crashtests/activedescendant-crash.html +crashtest accessibility/crashtests/add-detached-node.html +crashtest accessibility/crashtests/animated-textarea.html crashtest accessibility/crashtests/aom-in-destroyed-iframe.html +crashtest accessibility/crashtests/append-image-using-illegal-map.html crashtest accessibility/crashtests/aria-hidden-with-select.html +crashtest accessibility/crashtests/aria-modal-aria-hidden.html +crashtest accessibility/crashtests/aria-owned-with-role-change.html crashtest accessibility/crashtests/aria-owns-destroyed-by-content-replacement.html crashtest accessibility/crashtests/aria-owns-fallback-content.html +crashtest accessibility/crashtests/aria-owns-from-aria-hidden-subtree.html +crashtest accessibility/crashtests/aria-owns-inside-map.html +crashtest accessibility/crashtests/aria-owns-new-cycle.html +crashtest accessibility/crashtests/aria-owns-overlapping.html +crashtest accessibility/crashtests/aria-owns-owned-becomes-aria-hidden.html +crashtest accessibility/crashtests/aria-owns-owner-becomes-aria-hidden.html +crashtest accessibility/crashtests/aria-owns-presentation.html crashtest accessibility/crashtests/aria-owns-reparent.html crashtest accessibility/crashtests/aria-owns-select.html +crashtest accessibility/crashtests/aria-owns-with-role-change.html crashtest accessibility/crashtests/bdo-table-cell.html +crashtest accessibility/crashtests/br-in-changed-subtree.html crashtest accessibility/crashtests/computed-accessible-child-of-pseudo-element.html crashtest accessibility/crashtests/computed-accessible-text-node.html crashtest accessibility/crashtests/computed-node-checked.html crashtest accessibility/crashtests/computed-node.html +crashtest accessibility/crashtests/content-visibility-focusable-scroller-descendant.html crashtest accessibility/crashtests/content-visibility-generated-content-removal.html crashtest accessibility/crashtests/delayed-ignored-change.html +crashtest accessibility/crashtests/detached-line.html +crashtest accessibility/crashtests/display-table-column.html crashtest accessibility/crashtests/displaylocked-serialize.html +crashtest accessibility/crashtests/first-letter-inside-before-pseudo.html +crashtest accessibility/crashtests/hidden-textfield-with-combobox.html crashtest accessibility/crashtests/iframe-owns-child.html crashtest accessibility/crashtests/iframe-srcdoc.html +crashtest accessibility/crashtests/illegal-aria-owns-from-br.html +crashtest accessibility/crashtests/illegal-optgroup-structure.html +crashtest accessibility/crashtests/image-with-detached-text-child.html crashtest accessibility/crashtests/img-map-pseudo.html crashtest accessibility/crashtests/in-page-link-with-aria-hidden.html crashtest accessibility/crashtests/included-descendant-dom-removal.html crashtest accessibility/crashtests/included-descendant-layout-removal.html +crashtest accessibility/crashtests/inert-br-child.html crashtest accessibility/crashtests/input-time-datalist.html crashtest accessibility/crashtests/map-inside-map-2.html crashtest accessibility/crashtests/map-inside-map.html +crashtest accessibility/crashtests/map-update-crash.html +crashtest accessibility/crashtests/missing-parent-map.html +crashtest accessibility/crashtests/missing-parent-multi-col.html +crashtest accessibility/crashtests/missing-parent.html crashtest accessibility/crashtests/move-owned-inside-another-owned.html crashtest accessibility/crashtests/multicol-with-text-change-role-relayout-crash.html +crashtest accessibility/crashtests/null-node.html crashtest accessibility/crashtests/object-with-unrendered-text-fallback.html +crashtest accessibility/crashtests/remaining-invalid-objects.html +crashtest accessibility/crashtests/removed-from-flat-tree.html +crashtest accessibility/crashtests/select-in-display-none.html crashtest accessibility/crashtests/serialize-with-no-document.html crashtest accessibility/crashtests/slot-assignment-lockup.html -crashtest accessibility/crashtests/svg-mouse-listener.html crashtest accessibility/crashtests/table-ignored-child.html crashtest accessibility/crashtests/validation-message.html crashtest css/CSS2/floats-clear/adjoining-float-new-fc-crash.html crashtest css/CSS2/floats-clear/clearance-containing-fragmented-float-crash.html +crashtest css/CSS2/floats/crashtests/firefox-bug-1904409.html +crashtest css/CSS2/floats/crashtests/firefox-bug-1904419.html +crashtest css/CSS2/floats/crashtests/firefox-bug-1904421.html +crashtest css/CSS2/floats/crashtests/firefox-bug-1904428.html +crashtest css/CSS2/floats/crashtests/firefox-bug-1906768.html +crashtest css/CSS2/floats/crashtests/float-rewind-parallel-flow-1-crash.html +crashtest css/CSS2/floats/crashtests/float-rewind-parallel-flow-2-crash.html +crashtest css/CSS2/floats/crashtests/float-rewind-parallel-flow-3-crash.html crashtest css/CSS2/floats/floats-saturated-position-crash.html crashtest css/CSS2/floats/line-pushed-by-floats-crash.html crashtest css/CSS2/linebox/crashtests/dir-change-simplifed-crash.html crashtest css/CSS2/linebox/crashtests/inline-block-baseline-crash.html +crashtest css/CSS2/linebox/soft-wrap-opportunity-after-replaced-content-crash.html crashtest css/CSS2/linebox/video-needs-layout-crash.html crashtest css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html crashtest css/CSS2/text/crashtests/bidi-inline-fragment-oof-crash.html +crashtest css/compositing/background-blending/crashtests/bgblend-root-change.html crashtest css/compositing/opacity-and-transform-animation-crash.html crashtest css/compositing/root-element-filter-background-clip-text-crash.html crashtest css/css-anchor-position/anchor-scroll-composited-scrolling-001-crash.html @@ -48,7 +89,18 @@ crashtest css/css-anchor-position/anchor-scroll-composited-scrolling-002-crash.h crashtest css/css-anchor-position/anchor-scroll-composited-scrolling-003-crash.html crashtest css/css-anchor-position/anchor-scroll-composited-scrolling-004-crash.html crashtest css/css-anchor-position/anchor-scroll-composited-scrolling-005-crash.html +crashtest css/css-anchor-position/chrome-1512373-2-crash.html +crashtest css/css-anchor-position/chrome-1512373-crash.html +crashtest css/css-anchor-position/chrome-336164421-crash.html +crashtest css/css-anchor-position/chrome-336322507-crash.html +crashtest css/css-anchor-position/chrome-40286059-crash.html +crashtest css/css-anchor-position/grid-anchor-center-crash.html +crashtest css/css-anchor-position/inline-grid-try-fallbacks-crash.html +crashtest css/css-anchor-position/position-try-invalid-anchor-crash.html crashtest css/css-animations/CSSAnimation-getKeyframes-crash.html +crashtest css/css-animations/crashtests/add-pseudo-while-animating-001.html +crashtest css/css-animations/crashtests/cancel-update.html +crashtest css/css-animations/crashtests/pseudo-element-animation-with-marker.html crashtest css/css-animations/crashtests/replace-keyframes-animating-filter-001.html crashtest css/css-animations/keyframes-remove-documentElement-crash.html crashtest css/css-animations/keyframes-zero-angle-crash.html @@ -68,6 +120,9 @@ crashtest css/css-break/block-in-inline-004-crash.html crashtest css/css-break/block-in-inline-005-crash.html crashtest css/css-break/block-in-inline-006-crash.html crashtest css/css-break/block-in-inline-007-crash.html +crashtest css/css-break/block-in-inline-010-crash.html +crashtest css/css-break/box-decoration-break-clone-032-crash.html +crashtest css/css-break/box-decoration-break-clone-035-crash.html crashtest css/css-break/break-after-in-parallel-flow-crash.html crashtest css/css-break/break-after-oof-before-preceding-pushed-float-crash.html crashtest css/css-break/break-before-float-after-line-after-floats-crash.html @@ -85,8 +140,10 @@ crashtest css/css-break/clear-float-in-size-containment-crash.html crashtest css/css-break/clear-past-float-with-oof-twice-crash.html crashtest css/css-break/column-balancing-with-oofs-crash.html crashtest css/css-break/empty-fieldset-tall-bottom-padding-crash.html -crashtest css/css-break/firefox-bug1693616-001-crash.html -crashtest css/css-break/firefox-bug1693616-002-crash.html +crashtest css/css-break/firefox-bug-1693616-001-crash.html +crashtest css/css-break/firefox-bug-1693616-002-crash.html +crashtest css/css-break/firefox-bug-1903652-crash.html +crashtest css/css-break/flex-item-padding-block-in-inline-crash.html crashtest css/css-break/flexbox/button-in-multicol-crash.html crashtest css/css-break/flexbox/fixed-flex-item-inside-abs-flex-in-multicol-crash.html crashtest css/css-break/flexbox/flexbox-fragmentation-layout-001-crash.html @@ -94,8 +151,10 @@ crashtest css/css-break/flexbox/float-in-webkit-box-in-multicol-crash.html crashtest css/css-break/flexbox/monolithic-item-in-fragmented-flexbox-crash.html crashtest css/css-break/flexbox/quirks-flex-in-multicol-crash.html crashtest css/css-break/flexbox/slider-in-multicol-crash.html +crashtest css/css-break/flexbox/textarea-input-flex-items-in-multicol-crash.html crashtest css/css-break/float-011-crash.html crashtest css/css-break/float-after-self-collapsing-block-in-inline-crash.html +crashtest css/css-break/float-in-inline-widows-orphans-crash.html crashtest css/css-break/floated-multicol-in-multicol-crash.html crashtest css/css-break/fragmentainer-1px-clamping-000-crash.html crashtest css/css-break/fragmentainer-1px-clamping-001-crash.html @@ -119,12 +178,15 @@ crashtest css/css-break/out-of-flow-in-multicolumn-crash.html crashtest css/css-break/out-of-flow-in-nested-spanner-multicol-crash.html crashtest css/css-break/out-of-flow-in-new-column-crash.html crashtest css/css-break/out-of-flow-with-negative-offset-crash.html +crashtest css/css-break/out-of-order-float-in-inline-crash.html crashtest css/css-break/overflow-auto-height-with-bottom-padding-crash.html crashtest css/css-break/parallel-flow-trailing-margin-003-crash.html crashtest css/css-break/resumed-float-and-inline-block-crash.html +crashtest css/css-break/table-cell-padding-block-in-inline-crash.html crashtest css/css-break/table/bottom-padding-repeated-header-crash.html crashtest css/css-break/table/break-before-repeated-footer-instead-of-border-crash.html crashtest css/css-break/table/caption-bottom-margin-at-boundary-crash.html +crashtest css/css-break/table/cell-large-bottom-padding-crash.html crashtest css/css-break/table/dynamic-caption-child-change-002-crash.html crashtest css/css-break/table/repeated-section/border-spacing-taller-than-fragmentainer-001-crash.html crashtest css/css-break/table/repeated-section/border-spacing-taller-than-fragmentainer-002-crash.html @@ -145,62 +207,81 @@ crashtest css/css-break/uncontained-oof-in-inline-after-break-000-crash.html crashtest css/css-break/uncontained-oof-in-inline-after-break-001-crash.html crashtest css/css-break/wide-line-after-floats-crash.html crashtest css/css-cascade/layer-statement-copy-crash.html +crashtest css/css-cascade/scope-declaration-list-crash.html +crashtest css/css-cascade/tons-of-declarations-crash.html +crashtest css/css-conditional/container-queries/crashtests/br-crash.html +crashtest css/css-conditional/container-queries/crashtests/canvas-as-container-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-1289718-000-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-1289718-001-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-1346969-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-1362391-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-1429955-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-1505250-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-bug-346264227-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-custom-highlight-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-layout-root-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-quotes-crash.html +crashtest css/css-conditional/container-queries/crashtests/chrome-remove-insert-evaluator-crash.html +crashtest css/css-conditional/container-queries/crashtests/columns-in-table-001-crash.html +crashtest css/css-conditional/container-queries/crashtests/columns-in-table-002-crash.html +crashtest css/css-conditional/container-queries/crashtests/container-in-canvas-crash.html +crashtest css/css-conditional/container-queries/crashtests/container-type-change-chrome-legacy-crash.html +crashtest css/css-conditional/container-queries/crashtests/dialog-backdrop-crash.html +crashtest css/css-conditional/container-queries/crashtests/dirty-rowgroup-crash.html +crashtest css/css-conditional/container-queries/crashtests/flex-in-columns-000-crash.html +crashtest css/css-conditional/container-queries/crashtests/flex-in-columns-001-crash.html +crashtest css/css-conditional/container-queries/crashtests/flex-in-columns-002-crash.html +crashtest css/css-conditional/container-queries/crashtests/flex-in-columns-003-crash.html +crashtest css/css-conditional/container-queries/crashtests/focus-inside-content-visibility-crash.html +crashtest css/css-conditional/container-queries/crashtests/force-sibling-style-crash.html +crashtest css/css-conditional/container-queries/crashtests/grid-in-columns-000-crash.html +crashtest css/css-conditional/container-queries/crashtests/grid-in-columns-001-crash.html +crashtest css/css-conditional/container-queries/crashtests/grid-in-columns-002-crash.html +crashtest css/css-conditional/container-queries/crashtests/grid-in-columns-003-crash.html +crashtest css/css-conditional/container-queries/crashtests/iframe-init-crash.html +crashtest css/css-conditional/container-queries/crashtests/inline-multicol-inside-container-crash.html +crashtest css/css-conditional/container-queries/crashtests/inline-with-columns-000-crash.html +crashtest css/css-conditional/container-queries/crashtests/inline-with-columns-001-crash.html +crashtest css/css-conditional/container-queries/crashtests/input-column-group-container-crash.html +crashtest css/css-conditional/container-queries/crashtests/input-placeholder-inline-size-crash.html +crashtest css/css-conditional/container-queries/crashtests/marker-gcs-after-disconnect-crash.html +crashtest css/css-conditional/container-queries/crashtests/math-block-container-child-crash.html +crashtest css/css-conditional/container-queries/crashtests/mathml-container-type-crash.html +crashtest css/css-conditional/container-queries/crashtests/orthogonal-replaced-crash.html +crashtest css/css-conditional/container-queries/crashtests/pseudo-container-crash.html +crashtest css/css-conditional/container-queries/crashtests/remove-dom-child-change-style.html +crashtest css/css-conditional/container-queries/crashtests/reversed-ol-crash.html +crashtest css/css-conditional/container-queries/crashtests/size-change-during-transition-crash.html +crashtest css/css-conditional/container-queries/crashtests/svg-layout-root-crash.html +crashtest css/css-conditional/container-queries/crashtests/svg-text-crash.html +crashtest css/css-conditional/container-queries/crashtests/table-in-columns-000-crash.html +crashtest css/css-conditional/container-queries/crashtests/table-in-columns-001-crash.html +crashtest css/css-conditional/container-queries/crashtests/table-in-columns-002-crash.html +crashtest css/css-conditional/container-queries/crashtests/table-in-columns-003-crash.html +crashtest css/css-conditional/container-queries/crashtests/table-in-columns-004-crash.html +crashtest css/css-conditional/container-queries/crashtests/table-in-columns-005-crash.html crashtest css/css-contain/contain-crash.html -crashtest css/css-contain/container-queries/crashtests/br-crash.html -crashtest css/css-contain/container-queries/crashtests/canvas-as-container-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-bug-1289718-000-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-bug-1289718-001-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-bug-1346969-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-bug-1362391-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-layout-root-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-quotes-crash.html -crashtest css/css-contain/container-queries/crashtests/chrome-remove-insert-evaluator-crash.html -crashtest css/css-contain/container-queries/crashtests/columns-in-table-001-crash.html -crashtest css/css-contain/container-queries/crashtests/columns-in-table-002-crash.html -crashtest css/css-contain/container-queries/crashtests/container-in-canvas-crash.html -crashtest css/css-contain/container-queries/crashtests/container-type-change-chrome-legacy-crash.html -crashtest css/css-contain/container-queries/crashtests/dialog-backdrop-crash.html -crashtest css/css-contain/container-queries/crashtests/dirty-rowgroup-crash.html -crashtest css/css-contain/container-queries/crashtests/flex-in-columns-000-crash.html -crashtest css/css-contain/container-queries/crashtests/flex-in-columns-001-crash.html -crashtest css/css-contain/container-queries/crashtests/flex-in-columns-002-crash.html -crashtest css/css-contain/container-queries/crashtests/flex-in-columns-003-crash.html -crashtest css/css-contain/container-queries/crashtests/focus-inside-content-visibility-crash.html -crashtest css/css-contain/container-queries/crashtests/force-sibling-style-crash.html -crashtest css/css-contain/container-queries/crashtests/grid-in-columns-000-crash.html -crashtest css/css-contain/container-queries/crashtests/grid-in-columns-001-crash.html -crashtest css/css-contain/container-queries/crashtests/grid-in-columns-002-crash.html -crashtest css/css-contain/container-queries/crashtests/grid-in-columns-003-crash.html -crashtest css/css-contain/container-queries/crashtests/iframe-init-crash.html -crashtest css/css-contain/container-queries/crashtests/inline-multicol-inside-container-crash.html -crashtest css/css-contain/container-queries/crashtests/inline-with-columns-000-crash.html -crashtest css/css-contain/container-queries/crashtests/inline-with-columns-001-crash.html -crashtest css/css-contain/container-queries/crashtests/input-column-group-container-crash.html -crashtest css/css-contain/container-queries/crashtests/input-placeholder-inline-size-crash.html -crashtest css/css-contain/container-queries/crashtests/marker-gcs-after-disconnect-crash.html -crashtest css/css-contain/container-queries/crashtests/math-block-container-child-crash.html -crashtest css/css-contain/container-queries/crashtests/orthogonal-replaced-crash.html -crashtest css/css-contain/container-queries/crashtests/pseudo-container-crash.html -crashtest css/css-contain/container-queries/crashtests/reversed-ol-crash.html -crashtest css/css-contain/container-queries/crashtests/svg-layout-root-crash.html -crashtest css/css-contain/container-queries/crashtests/svg-text-crash.html -crashtest css/css-contain/container-queries/crashtests/table-in-columns-000-crash.html -crashtest css/css-contain/container-queries/crashtests/table-in-columns-001-crash.html -crashtest css/css-contain/container-queries/crashtests/table-in-columns-002-crash.html -crashtest css/css-contain/container-queries/crashtests/table-in-columns-003-crash.html -crashtest css/css-contain/container-queries/crashtests/table-in-columns-004-crash.html -crashtest css/css-contain/container-queries/crashtests/table-in-columns-005-crash.html +crashtest css/css-contain/contain-style-remove-element-crash.html +crashtest css/css-contain/content-visibility/content-visibility-auto-applied-to-th-crash.html crashtest css/css-contain/content-visibility/content-visibility-auto-selection-crash.html +crashtest css/css-contain/content-visibility/content-visibility-background-clip-crash.html crashtest css/css-contain/content-visibility/content-visibility-continuations-crash.html crashtest css/css-contain/content-visibility/content-visibility-form-controls-crash.html crashtest css/css-contain/content-visibility/content-visibility-hit-test-contents-crash.html crashtest css/css-contain/content-visibility/content-visibility-in-svg-000-crash.html crashtest css/css-contain/content-visibility/content-visibility-output-crash.html +crashtest css/css-contain/content-visibility/content-visibility-selection-crash.html +crashtest css/css-contain/content-visibility/content-visibility-with-float-crash.html crashtest css/css-contain/content-visibility/contentvisibility-nestedslot-crash.html +crashtest css/css-contain/content-visibility/crashtests/content-visibility-transition-finished-001.html +crashtest css/css-contain/content-visibility/crashtests/fieldset.html crashtest css/css-contain/content-visibility/crashtests/first-line-and-inline-block.html +crashtest css/css-contain/content-visibility/crashtests/grid-dynamic.html crashtest css/css-contain/content-visibility/detach-locked-slot-children-crash.html +crashtest css/css-contain/content-visibility/display-ruby-text-crash.html crashtest css/css-contain/content-visibility/hidden-execcommand-crash.html crashtest css/css-contain/content-visibility/hidden-pseudo-element-removed-crash.html +crashtest css/css-contain/content-visibility/locked-frame-crash.html crashtest css/css-contain/content-visibility/meter-selection-crash.html crashtest css/css-contain/content-visibility/slot-content-visibility-1-crash.html crashtest css/css-contain/content-visibility/slot-content-visibility-10-crash.html @@ -224,9 +305,17 @@ crashtest css/css-contain/content-visibility/slot-content-visibility-6-crash.htm crashtest css/css-contain/content-visibility/slot-content-visibility-7-crash.html crashtest css/css-contain/content-visibility/slot-content-visibility-8-crash.html crashtest css/css-contain/content-visibility/slot-content-visibility-9-crash.html +crashtest css/css-contain/content-visibility/touch-action-beside-display-locked-fixedpos-iframe-crash.html crashtest css/css-contain/crashtests/contain-nested-crash-001.html crashtest css/css-contain/crashtests/contain-nested-crash-002.html crashtest css/css-contain/crashtests/contain-nested-crash-003.html +crashtest css/css-contain/crashtests/contain-nested-crash-004.html +crashtest css/css-contain/crashtests/contain-nested-relayout-boundary.html +crashtest css/css-contain/quote-scoping-shadow-dom-crash.html +crashtest css/css-display/display-contents-001-crash.html +crashtest css/css-display/display-none-root-hit-test-crash.html +crashtest css/css-flexbox/animation/flex-basis-content-crash.html +crashtest css/css-flexbox/button-column-wrap-crash.html crashtest css/css-flexbox/column-intrinsic-size-aspect-ratio-crash.html crashtest css/css-flexbox/contain-size-layout-abspos-flex-container-crash.html crashtest css/css-flexbox/fixedpos-video-in-abspos-quirk-crash.html @@ -236,30 +325,47 @@ crashtest css/css-flexbox/frameset-crash.html crashtest css/css-flexbox/inline-flex-editing-crash.html crashtest css/css-flexbox/inline-flex-editing-with-updating-text-crash.html crashtest css/css-flexbox/inline-flex-frameset-main-axis-crash.html +crashtest css/css-flexbox/inline-flexbox-absurd-block-size-crash.html +crashtest css/css-flexbox/intrinsic-size/col-wrap-crash.html +crashtest css/css-flexbox/min-height-min-content-crash.html crashtest css/css-flexbox/negative-available-size-crash.html crashtest css/css-flexbox/negative-flex-margins-crash.html crashtest css/css-flexbox/negative-flex-rounding-crash.html crashtest css/css-flexbox/negative-item-margins-002-crash.html crashtest css/css-flexbox/negative-item-margins-crash.html crashtest css/css-flexbox/orthogonal-flex-item-crash.html -crashtest css/css-flexbox/padding-overflow-crash.html crashtest css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html crashtest css/css-flexbox/remove-out-of-flow-child-crash.html crashtest css/css-flexbox/zero-content-size-with-scrollbar-crash.html +crashtest css/css-font-loading/fontfaceset-loading-worker-crash.html +crashtest css/css-font-loading/fontfaceset-worker-fontface-crash.html crashtest css/css-fonts/font-face-local-css-wide-keyword-crash.html +crashtest css/css-fonts/font-features-two-stylesheets-crash.html +crashtest css/css-fonts/font-size-adjust-generic-font-fallback-crash.html +crashtest css/css-fonts/font-size-adjust-nan-crash.html crashtest css/css-fonts/infinite-size-crash.html crashtest css/css-fonts/math-script-level-and-math-style/math-depth-001-crash.html +crashtest css/css-fonts/variable-in-feature-crash.html crashtest css/css-grid/abspos/positioned-grid-items-crash.html +crashtest css/css-grid/fieldset-first-line-crash.html crashtest css/css-grid/grid-definition/grid-add-item-with-positioned-items-crash.html crashtest css/css-grid/grid-definition/grid-add-positioned-block-item-after-inline-item-crash.html -crashtest css/css-grid/subgrid/contain-strict-nested-subgrid-crash.html -crashtest css/css-grid/subgrid/contain-strict-subgrid-crash.html -crashtest css/css-grid/subgrid/subgrid-reflow-root-crash.html +crashtest css/css-grid/grid-table-cell-001-crash.html +crashtest css/css-grid/parsing/grid-template-columns-crash.html +crashtest css/css-grid/subgrid/crashtests/contain-strict-nested-subgrid.html +crashtest css/css-grid/subgrid/crashtests/contain-strict-subgrid.html +crashtest css/css-grid/subgrid/crashtests/subgrid-reflow-root.html +crashtest css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-001.html +crashtest css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html +crashtest css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-003.html +crashtest css/css-images/cross-fade-legacy-crash.html crashtest css/css-images/empty-radial-gradient-crash.html crashtest css/css-images/gradient-nan-crash.html crashtest css/css-images/radial-gradient-transition-hint-crash.html crashtest css/css-inline/change-inline-change-abspos-crash.html +crashtest css/css-inline/firefox-bug-1901624-crash.html crashtest css/css-inline/float-becomes-inflow-crash.html +crashtest css/css-inline/initial-letter/crashtests/initial-letter-dynamic-crash.html crashtest css/css-inline/inline-002-crash.html crashtest css/css-inline/inline-crash.html crashtest css/css-inline/too-big-line-height-crash.html @@ -275,10 +381,14 @@ crashtest css/css-layout-api/multicol-child-crash.https.html crashtest css/css-layout-api/multicol-details-crash.https.html crashtest css/css-layout-api/multicol-fieldset-crash.https.html crashtest css/css-lists/before-after-selectors-on-code-element-crash.html +crashtest css/css-lists/counters-container-crash.html +crashtest css/css-lists/crashtests/chrome-bug-1377573.html crashtest css/css-lists/crashtests/chrome-counter-in-multicol-details-crash.html crashtest css/css-lists/crashtests/chrome-legacy-propagation-crash.html crashtest css/css-lists/crashtests/chrome-legacy-propagation-remove-body-crash.html crashtest css/css-lists/crashtests/firefox-bug-1715631.html +crashtest css/css-lists/li-without-ul-counter-crash.html +crashtest css/css-lists/list-item-counter-crash.html crashtest css/css-lists/list-marker-containing-control-char-crash.html crashtest css/css-lists/list-marker-position-crash.html crashtest css/css-multicol/abspos-in-multicol-with-spanner-crash.html @@ -286,10 +396,12 @@ crashtest css/css-multicol/balance-extremely-tall-monolithic-content-crash.html crashtest css/css-multicol/change-abspos-width-in-second-column-crash.html crashtest css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash.html crashtest css/css-multicol/column-balancing-with-overflow-auto-crash.html +crashtest css/css-multicol/crashtests/add-list-item-marker.html crashtest css/css-multicol/crashtests/as-baseline-aligned-grid-item.html crashtest css/css-multicol/crashtests/balance-with-forced-break.html crashtest css/css-multicol/crashtests/balancing-flex-item-trailing-margin-freeze.html crashtest css/css-multicol/crashtests/balancing-tall-borders-freeze.html +crashtest css/css-multicol/crashtests/block-in-inline-become-float.html crashtest css/css-multicol/crashtests/body-becomes-spanner-html-becomes-vertical-rl.html crashtest css/css-multicol/crashtests/break-before-multicol-caption.html crashtest css/css-multicol/crashtests/chrome-bug-1293905.html @@ -301,9 +413,14 @@ crashtest css/css-multicol/crashtests/dynamic-simplified-layout-break-propagatio crashtest css/css-multicol/crashtests/fit-content-with-spanner-and-auto-scrollbar-sibling.html crashtest css/css-multicol/crashtests/float-becomes-non-float-spanner-surprises-inside.html crashtest css/css-multicol/crashtests/float-becomes-spanner.html +crashtest css/css-multicol/crashtests/float-multicol-crash.html +crashtest css/css-multicol/crashtests/floated-input-in-inline-next-column.html crashtest css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing-nested.html crashtest css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing.html +crashtest css/css-multicol/crashtests/inline-become-oof-container-make-oof-inflow.html +crashtest css/css-multicol/crashtests/inline-float-parallel-flow.html crashtest css/css-multicol/crashtests/inline-with-spanner-in-overflowed-container-before-multicol-float.html +crashtest css/css-multicol/crashtests/interleaved-bfc-crash.html crashtest css/css-multicol/crashtests/margin-and-break-before-child-spanner.html crashtest css/css-multicol/crashtests/monolithic-oof-in-clipped-container.html crashtest css/css-multicol/crashtests/move-linebreak-to-different-column.html @@ -316,7 +433,10 @@ crashtest css/css-multicol/crashtests/multicol-dynamic-contain-crash.html crashtest css/css-multicol/crashtests/multicol-dynamic-transform-crash.html crashtest css/css-multicol/crashtests/multicol-floats-after-column-span-crash.html crashtest css/css-multicol/crashtests/multicol-floats-in-ifc.html +crashtest css/css-multicol/crashtests/multicol-parallel-flow-after-spanner-in-inline.html +crashtest css/css-multicol/crashtests/multicol-table-caption-parallel-flow-after-spanner-in-inline.html crashtest css/css-multicol/crashtests/multicol-with-monolithic-oof-with-multicol-with-oof.html +crashtest css/css-multicol/crashtests/multicol-with-oof-in-multicol-with-oof-in-multicol.html crashtest css/css-multicol/crashtests/negative-margin-on-column-spanner.html crashtest css/css-multicol/crashtests/nested-as-balanced-legend.html crashtest css/css-multicol/crashtests/nested-as-nested-balanced-legend.html @@ -342,9 +462,21 @@ crashtest css/css-multicol/crashtests/nested-with-tall-padding-and-spanner-and-c crashtest css/css-multicol/crashtests/nested-with-tall-padding.html crashtest css/css-multicol/crashtests/oof-becomes-spanner.html crashtest css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html +crashtest css/css-multicol/crashtests/oof-in-area-001.html +crashtest css/css-multicol/crashtests/oof-in-area-002.html +crashtest css/css-multicol/crashtests/oof-in-area-003.html crashtest css/css-multicol/crashtests/oof-in-nested-line-float.html +crashtest css/css-multicol/crashtests/oof-in-oof-multicol-in-multicol-spanner-in-multicol.html +crashtest css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html +crashtest css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html +crashtest css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html +crashtest css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html +crashtest css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-nested-multicol.html +crashtest css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html +crashtest css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html crashtest css/css-multicol/crashtests/oof-nested-multicol-inside-oof.html crashtest css/css-multicol/crashtests/outline-move-oof-with-inline.html +crashtest css/css-multicol/crashtests/relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html crashtest css/css-multicol/crashtests/relayout-nested-with-oof.html crashtest css/css-multicol/crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html crashtest css/css-multicol/crashtests/relpos-spanner-with-spanner-child-becomes-regular.html @@ -365,12 +497,15 @@ crashtest css/css-multicol/crashtests/spanner-inside-inline-in-overflowed-contai crashtest css/css-multicol/crashtests/specified-height-with-just-spanner-and-oof.html crashtest css/css-multicol/crashtests/sticky-in-abs-in-sticky.html crashtest css/css-multicol/crashtests/table-caption-change-descendant-display-type.html +crashtest css/css-multicol/crashtests/table-caption-in-clipped-overflow.html crashtest css/css-multicol/crashtests/table-caption-inline-block-remove-child.html crashtest css/css-multicol/crashtests/table-cell-writing-mode-root.html +crashtest css/css-multicol/crashtests/text-in-inline-interrupted-by-float.html crashtest css/css-multicol/crashtests/trailing-parent-padding-between-spanners.html crashtest css/css-multicol/crashtests/vertical-rl-column-rules-wide-columns.html crashtest css/css-multicol/dynamic-become-multicol-add-oof-inside-inline-crash.html crashtest css/css-multicol/extremely-tall-multicol-with-extremely-tall-child-crash.html +crashtest css/css-multicol/file-control-crash.html crashtest css/css-multicol/img-alt-as-multicol-crash.html crashtest css/css-multicol/nested-balanced-monolithic-multicol-crash.html crashtest css/css-multicol/nested-balanced-very-tall-content-crash.html @@ -385,41 +520,71 @@ crashtest css/css-multicol/spanning-legend-000-crash.html crashtest css/css-multicol/spanning-legend-001-crash.html crashtest css/css-multicol/subpixel-scroll-crash.html crashtest css/css-multicol/table/balance-breakafter-before-table-section-crash.html +crashtest css/css-multicol/text-child-crash.html crashtest css/css-multicol/toggle-spanner-float-crash.html crashtest css/css-multicol/triply-nested-with-fixedpos-in-abspos-crash.html crashtest css/css-multicol/with-custom-layout-on-same-element-crash.https.html crashtest css/css-nesting/delete-other-rule-crash.html crashtest css/css-nesting/implicit-parent-insertion-crash.html crashtest css/css-nesting/pseudo-part-crash.html +crashtest css/css-nesting/pseudo-where-crash.html crashtest css/css-overflow/chrome-body-overflow-propagation-crash.html +crashtest css/css-overflow/ellipsis-with-image-crash.html +crashtest css/css-overflow/line-clamp/webkit-line-clamp-041-crash.html +crashtest css/css-overflow/line-clamp/webkit-line-clamp-042-crash.html +crashtest css/css-overflow/multicol-in-orthogonal-writing-mode-crash.html crashtest css/css-overflow/outline-with-opacity-crash.html crashtest css/css-overflow/overflow-clip-001-crash.html crashtest css/css-overflow/overflow-clip-002-crash.html crashtest css/css-overflow/shrink-to-fit-auto-overflow-relayout-crash.html crashtest css/css-overflow/table-header-group-overflow-crash.html -crashtest css/css-overflow/webkit-line-clamp-041-crash.html -crashtest css/css-overflow/webkit-line-clamp-042-crash.html +crashtest css/css-page/crashtests/match-media-listener-relayout-inside-fixed-size-overflow-hidden-print.html +crashtest css/css-page/crashtests/match-media-listener-shrink-content-print.html +crashtest css/css-page/crashtests/root-element-remove-print.html +crashtest css/css-page/crashtests/tall-inline-block-in-float-in-table-cell-print.html +crashtest css/css-page/trailing-declaration-crash.html crashtest css/css-paint-api/column-count-crash.https.html +crashtest css/css-position/crashtests/inline-containing-block-crash.html crashtest css/css-position/crashtests/position-absolute-crash-014.html crashtest css/css-position/crashtests/scroll-tree-parent-construction.html crashtest css/css-position/nested-positions-crash.html +crashtest css/css-position/overlay/overlay-popover-backdrop-crash.html crashtest css/css-position/position-absolute-in-inline-crash.html +crashtest css/css-position/sticky/position-sticky-details-crash.html +crashtest css/css-position/sticky/position-sticky-scroll-offset-clamp-crash.html crashtest css/css-properties-values-api/at-property-non-matching-media-crash.html +crashtest css/css-properties-values-api/crashtests/computed-property-universal-syntax.html +crashtest css/css-properties-values-api/crashtests/consume-color-contrast-crash.html crashtest css/css-properties-values-api/crashtests/initial-in-audio-crash.html +crashtest css/css-properties-values-api/crashtests/transition-to-none-crash-001.html +crashtest css/css-properties-values-api/crashtests/transition-to-none-crash-002.html crashtest css/css-pseudo/chrome-bug-1299142-crash.html +crashtest css/css-pseudo/chrome-first-letter-container-query-crash.html crashtest css/css-pseudo/chrome-first-letter-inside-replaced-crash.html crashtest css/css-pseudo/file-selector-button-display-none-overflow-crash.html crashtest css/css-pseudo/file-selector-button-display-toggle-crash.html +crashtest css/css-pseudo/firefox-bug-1907238-crash.html +crashtest css/css-pseudo/first-letter-bidi-pre-crash.html crashtest css/css-pseudo/first-letter-crash.html crashtest css/css-pseudo/first-line-first-letter-insert-crash.html +crashtest css/css-pseudo/first-line-float-mapped-attribute-crash.html +crashtest css/css-pseudo/first-line-inherited-transition-crash.html +crashtest css/css-pseudo/first-line-input-image-crash.html +crashtest css/css-pseudo/get-computed-style-crash.html +crashtest css/css-pseudo/highlight-painting-005-crash.html crashtest css/css-pseudo/highlight-painting-soft-hyphens-002-crash.html crashtest css/css-pseudo/placeholder-as-multicol-crash.html crashtest css/css-pseudo/placeholder-input-dynamic-crash.html crashtest css/css-pseudo/spelling-error-004-crash.html crashtest css/css-pseudo/spelling-error-005-crash.html +crashtest css/css-ruby/break-within-bases/break-spaces-crash.html +crashtest css/css-ruby/ruby-dynamic-removal-004-crash.html +crashtest css/css-scoping/chrome-1492368-crash.html crashtest css/css-scroll-anchoring/fullscreen-crash.html crashtest css/css-scroll-anchoring/table-collapsed-borders-crash.html -crashtest css/css-scrollbars/multicol-in-orthogonal-writing-mode-crash.html +crashtest css/css-scroll-snap/crashtests/fractional-covering-area-crash.html +crashtest css/css-scroll-snap/scroll-snap-stop-dynamic-crash.html +crashtest css/css-scrollbars/invalid-needs-layout-crash.html crashtest css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-integer-overflow-crash.html crashtest css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-integer-overflow-crash.html crashtest css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-crash.html @@ -431,6 +596,7 @@ crashtest css/css-sizing/frameset-intrinsic-crash.html crashtest css/css-sizing/min-content-negative-margin-crash.html crashtest css/css-sizing/textarea-large-padding-crash.html crashtest css/css-tables/absolute-crash.html +crashtest css/css-tables/crashtests/caption-repaint-crash.html crashtest css/css-tables/crashtests/caption-with-multicol-table-cell.html crashtest css/css-tables/crashtests/col_span_dynamic_crash.html crashtest css/css-tables/crashtests/dialog-table-crash.html @@ -458,30 +624,42 @@ crashtest css/css-tables/multicol-table-collapsed-border-crash.html crashtest css/css-tables/multicol-table-crash.html crashtest css/css-tables/visibility-collapse-colspan-crash.html crashtest css/css-tables/visibility-collapse-rowspan-crash.html +crashtest css/css-text-decor/crashtests/text-decoration-first-line-multi-crash.html crashtest css/css-text-decor/crashtests/text-decoration-on-empty-first-line-crash.html +crashtest css/css-text-decor/crashtests/text-decoration-on-pseudo-first-line-crash.html crashtest css/css-text-decor/text-decoration-line-spelling-error-001-crash.html crashtest css/css-text/altering-dom-crash.html +crashtest css/css-text/crashtests/eol-spaces-bidi-min-content-crash.html crashtest css/css-text/crashtests/line-break-float-crash.html +crashtest css/css-text/crashtests/overflow-wrap-anywhere-crash.html crashtest css/css-text/crashtests/rendering-rtl-bidi-override-crash.html crashtest css/css-text/crashtests/rendering-table-caption-with-list-item-and-svg-crash.html crashtest css/css-text/crashtests/rendering-table-caption-with-negative-margins-crash.html +crashtest css/css-text/crashtests/text-indent-each-line-crash.html +crashtest css/css-text/crashtests/text-wrap-balance-float-crash.html +crashtest css/css-text/crashtests/text-wrap-balance-nested-blocks-crash.html crashtest css/css-text/crashtests/trailing-space-with-cr-crash.html crashtest css/css-text/crashtests/white-space-pre-wrap-chash.html crashtest css/css-text/crashtests/word-spacing-large-value.html crashtest css/css-text/ellisize-rtl-text-crash.html crashtest css/css-text/hyphens/hyphens-auto-and-contenteditable-crash.html +crashtest css/css-text/overflow-wrap/crashtests/overflow-wrap-leading-floats-crash.html crashtest css/css-text/overflow-wrap/overflow-wrap-break-word-long-crash.html crashtest css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash.html crashtest css/css-text/removing-collapsible-crash.html crashtest css/css-text/removing-collapsible-spaces-before-float-crash.html crashtest css/css-text/text-align/text-align-inline-end-crash.html +crashtest css/css-text/text-autospace/crashtests/text-autospace-shape-cache-crash.html crashtest css/css-text/text-indent/text-indent-long-line-crash.html +crashtest css/css-text/text-indent/text-indent-ruby-crash.html crashtest css/css-text/white-space/nowrap-wbr-and-space-crash.html crashtest css/css-text/white-space/pre-line-br-with-whitespace-child-crash.html crashtest css/css-text/white-space/pre-with-whitespace-crash.html +crashtest css/css-text/white-space/text-wrap-balance-narrow-crash.html crashtest css/css-text/whitespace-followed-by-cham-symbol-crash.html crashtest css/css-transforms/crashtests/large-scale3d-001.html crashtest css/css-transforms/crashtests/large-scaley-001.html +crashtest css/css-transforms/crashtests/locked-display-transform-crash.html crashtest css/css-transforms/crashtests/preserve3d-containing-block-inline-001.html crashtest css/css-transforms/crashtests/preserve3d-containing-block-inline-002.html crashtest css/css-transforms/crashtests/preserve3d-containing-br-001.html @@ -498,8 +676,10 @@ crashtest css/css-transforms/crashtests/w-negative-003.html crashtest css/css-transforms/crashtests/zero-perspective-001.html crashtest css/css-transforms/large-matrix-crash.html crashtest css/css-transforms/transform-3d-fixed-under-fixed-opacity-crash.html +crashtest css/css-transitions/crashtests/delete-image-set.html crashtest css/css-transitions/crashtests/transition-during-style-attr-mutation.html crashtest css/css-transitions/crashtests/transition-large-word-spacing-001.html +crashtest css/css-transitions/infinite-duration-crash.html crashtest css/css-typed-om/perspective-typed-arithmetic-crash.html crashtest css/css-typed-om/set-css-wide-in-custom-property-crash.html crashtest css/css-typed-om/stylevalue-serialization/crashtests/cssInvertValue-convert-crash.html @@ -509,9 +689,28 @@ crashtest css/css-typed-om/the-stylepropertymap/computed/getAll-disconnected-ele crashtest css/css-ui/crashtests/outline-scrollIntoView-crash.html crashtest css/css-ui/neg-outline-offset-border-radius-crash.html crashtest css/css-ui/outline-with-001-crash.html +crashtest css/css-values/calc-complex-sign-function-crash.html crashtest css/css-values/crashtests/viewport-unit-inline-style-crash.html +crashtest css/css-values/mod-length-degrees-crash.html +crashtest css/css-values/premature-comment-crash.html +crashtest css/css-values/rem-length-degrees-crash.html +crashtest css/css-values/round-length-degrees-crash.html +crashtest css/css-variables/long-variable-reference-crash.html +crashtest css/css-variables/whitespace-in-fallback-crash.html +crashtest css/css-view-transitions/document-element-detached-crash.html crashtest css/css-view-transitions/get-computed-style-crash.html +crashtest css/css-view-transitions/iframe-transition-destroyed-document-crash.html +crashtest css/css-view-transitions/list-style-position-style-change-crash.html +crashtest css/css-view-transitions/navigation/opt-in-without-frame-crash.html +crashtest css/css-view-transitions/navigation/reload-crash.html +crashtest css/css-view-transitions/root-element-cv-hidden-crash.html +crashtest css/css-view-transitions/root-element-display-none-crash.html +crashtest css/css-view-transitions/root-element-display-none-during-transition-crash.html +crashtest css/css-viewport/zoom/scroll-corner-crash.html +crashtest css/css-viewport/zoom/scrollbar-crash.html +crashtest css/css-will-change/will-change-contents-crash.html crashtest css/css-writing-modes/bidi-inline-fragment-crash.html +crashtest css/css-writing-modes/crashtests/chrome-bug-1512988.html crashtest css/css-writing-modes/crashtests/orthogonal-percent-height-multicol-crash.html crashtest css/css-writing-modes/crashtests/orthogonal-scroll-percent-height-crash.html crashtest css/css-writing-modes/crashtests/orthogonal-table-in-flex-crash.html @@ -521,8 +720,18 @@ crashtest css/css-writing-modes/crashtests/wm-body-propagation-crash.html crashtest css/css-writing-modes/link-writing-mode-dependency-crash.html crashtest css/css-writing-modes/text-combine-webkit-crash.html crashtest css/cssom-view/client-props-root-display-none-crash.html +crashtest css/cssom/change-rule-with-layers-crash.html crashtest css/cssom/declaration-block-all-crash.html +crashtest css/cssom/getComputedStyle-insets-absolute-crash.html +crashtest css/cssom/getComputedStyle-insets-absolute-logical-crash.html +crashtest css/cssom/getComputedStyle-insets-multicol-absolute-crash.html +crashtest css/cssom/getComputedStyle-special-chars-crash.html +crashtest css/cssom/insert-dir-rule-crash.html +crashtest css/cssom/insert-dir-rule-in-iframe-crash.html +crashtest css/cssom/insert-invalid-where-rule-crash.html +crashtest css/cssom/insertRule-import-trailing-garbage-crash.html crashtest css/cssom/removerule-invalidation-crash.html +crashtest css/cssom/stylesheet-dom-mutation-event-crash.html crashtest css/filter-effects/backdrop-filter-feimage-crash.html crashtest css/filter-effects/crashtests/broken-reference-crash-001.html crashtest css/filter-effects/crashtests/felighting-display-none-mutation-crash.html @@ -537,18 +746,28 @@ crashtest css/filter-effects/svg-unused-filter-on-clippath-mutated-crash.html crashtest css/motion/offset-path-huge-angle-deg-001-crash.html crashtest css/motion/offset-path-huge-angle-grad-001-crash.html crashtest css/motion/offset-path-huge-angle-turn-001-crash.html +crashtest css/motion/offset-path-url-crash.html crashtest css/selectors/eof-right-after-selector-crash.html crashtest css/selectors/eof-some-after-selector-crash.html +crashtest css/selectors/has-sibling-chrome-crash.html +crashtest css/selectors/invalidation/crashtests/nth-child-of-attribute-crash.html +crashtest css/selectors/invalidation/nth-of-namespace-class-invalidation-crash.html +crashtest css/selectors/link-sharing-crash.html +crashtest css/selectors/pseudo-where-crash.html crashtest css/selectors/spurious-brace-crash.html +crashtest css/selectors/visited-part-crash.html crashtest custom-elements/prevent-extensions-crash.html crashtest custom-elements/when-defined-reentry-crash.html crashtest custom-elements/xhtml-crash.xhtml +crashtest dom/abort/abort-signal-any-crash.html crashtest dom/abort/crashtests/timeout-close.html crashtest dom/events/keypress-dispatch-crash.html crashtest dom/events/replace-event-listener-null-browsing-context-crash.html crashtest dom/nodes/DOMImplementation-createDocument-with-null-browsing-context-crash.html crashtest dom/nodes/DOMImplementation-createHTMLDocument-with-null-browsing-context-crash.html crashtest dom/nodes/Node-cloneNode-on-inactive-document-crash.html +crashtest dom/nodes/moveBefore/tentative/chrome-338071841-crash.html +crashtest dom/nodes/moveBefore/tentative/input-moveBefore-crash.html crashtest dom/nodes/node-appendchild-crash.html crashtest dom/svg-insert-crash.html crashtest dom/xslt/invalid-output-encoding-crash.html @@ -556,43 +775,72 @@ crashtest dom/xslt/strip-space-crash.xml crashtest dom/xslt/transformToFragment-on-node-from-inactive-document-crash.html crashtest domxpath/xpath-evaluate-crash.html crashtest editing/crashtests/backcolor-in-nested-editing-host-td-from-DOMAttrModified.html +crashtest editing/crashtests/blur-from-rtl-editing-host-containing-big-video.html crashtest editing/crashtests/bold-in-output.html +crashtest editing/crashtests/caret-display-list-002.html +crashtest editing/crashtests/caret-display-list.html +crashtest editing/crashtests/change-input-type-of-focused-text-control-and-make-it-editing-host.html crashtest editing/crashtests/contenteditable-will-be-blurred-by-focus-event-listener.html crashtest editing/crashtests/crash-test.html +crashtest editing/crashtests/delete-after-empty-script-element.html +crashtest editing/crashtests/delete-after-justifyleft-in-closed-editable-dialog.html crashtest editing/crashtests/delete-and-justifycenter-recursively-with-mutation-event-listeners.html +crashtest editing/crashtests/delete-at-next-to-svg-display-table-cell.html +crashtest editing/crashtests/delete-at-start-of-first-li-in-ol-in-video.html +crashtest editing/crashtests/delete-at-text-following-svg.html crashtest editing/crashtests/delete-content-in-no-data-object.html +crashtest editing/crashtests/delete-from-after-empty-table-header-grouped-element.html +crashtest editing/crashtests/delete-from-ruby-at-start-of-button.html +crashtest editing/crashtests/delete-immediately-after-changing-input-type-from-time.html +crashtest editing/crashtests/delete-in-block-in-progress.html crashtest editing/crashtests/delete-in-dd-editing-host-after-selectall-with-focus.html crashtest editing/crashtests/delete-in-dd-editing-host-after-selectall-without-focus.html crashtest editing/crashtests/delete-in-designMode-without-explicitly-setting-focus.html crashtest editing/crashtests/delete-in-empty-editable-list-followed-by-non-editable-listitem.html +crashtest editing/crashtests/designMode-caret-change.html crashtest editing/crashtests/designMode-document-will-be-blurred-by-focus-event-listener.html +crashtest editing/crashtests/designMode-off-during-inserthorizontalrule.html +crashtest editing/crashtests/designMode-on-of-lazy-loading-iframe.html +crashtest editing/crashtests/enableInlineTableEditing-after-updating-selection-range-cross-shadow-dom-boundary.html crashtest editing/crashtests/execCommand-at-load-with-changing-editing-host.html crashtest editing/crashtests/execCommand-backcolor-and-hilitecolor-in-empty-iframe-in-designMode.html crashtest editing/crashtests/execCommand-without-selection-ranges.html crashtest editing/crashtests/format-block-selection-containing-non-editable-list.html +crashtest editing/crashtests/forwarddelete-after-editable-slot-element-outside-body.html crashtest editing/crashtests/forwarddelete-at-empty-text-node-in-body.html crashtest editing/crashtests/forwarddelete-delete-after-justifyleft-indent.html crashtest editing/crashtests/forwarddelete-in-list-editing-host-after-selectall-with-focus.html crashtest editing/crashtests/forwarddelete-in-list-editing-host-after-selectall-without-focus.html crashtest editing/crashtests/forwarddelete-in-text-in-span-in-editable-documentElement.html +crashtest editing/crashtests/indent-in-inline-editing-host-outside-body.html +crashtest editing/crashtests/indent-in-textarea-in-designMode-during-outdent.html crashtest editing/crashtests/indent-outdent-after-closing-editable-dialog-element.html crashtest editing/crashtests/insert-image-with-joining-header-element-and-body.html +crashtest editing/crashtests/insertAdjacentElement-with-DOMSubtreeModified.html crashtest editing/crashtests/insertText-at-end-of-text-in-body.html +crashtest editing/crashtests/insertText-nested-by-DOMSubtreeModified.html crashtest editing/crashtests/inserthorizontalrule-in-fieldset-and-everything-styled-white-space-pre.html crashtest editing/crashtests/inserthorizontalrule-in-textarea-in-editor-and-undo-on-error-events.html crashtest editing/crashtests/inserthorizontalrule-with-2-selection-ranges-and-one-is-outside-body.html +crashtest editing/crashtests/inserthorizontalrule-with-range-ending-in-collapsible-spaces-before-comment.html crashtest editing/crashtests/inserthorizontalrule-with-selecting-text-in-document-element.html crashtest editing/crashtests/inserthtml-after-temporarily-removing-document-element.html crashtest editing/crashtests/inserthtml-in-inline-editing-host-at-load-event.html +crashtest editing/crashtests/inserthtml-in-li-in-option.html crashtest editing/crashtests/inserthtml-in-text-adopted-to-other-document.html crashtest editing/crashtests/inserthtml-indent-delete-when-input-element-in-editing-host-has-focus.html +crashtest editing/crashtests/inserthtml-to-replace-root-list-element-in-designMode.html +crashtest editing/crashtests/insertimage-with-replacing-selection-in-picture-element.html crashtest editing/crashtests/insertlinebreak-around-comment-node.html crashtest editing/crashtests/insertlinebreak-in-map-element-editing-host.html crashtest editing/crashtests/insertorderedlist-in-focused-inline-editing-host.html crashtest editing/crashtests/insertorderedlist-in-text-adopted-to-other-document.html crashtest editing/crashtests/insertparagraph-from-DOMNodeInserted-caused-by-insertorderedlist.html +crashtest editing/crashtests/insertparagraph-in-editable-dl-outside-body.html +crashtest editing/crashtests/insertparagraph-in-listitem-in-svg-followed-by-collapsible-spaces.html crashtest editing/crashtests/insertparagraph-in-map-element-editing-host.html crashtest editing/crashtests/inserttext-at-start-with-different-style.html +crashtest editing/crashtests/inserttext-with-clearing-subscript.html crashtest editing/crashtests/insertunorderedlist-in-empty-inline-editing-host.html crashtest editing/crashtests/insertunorderedlist-in-empty-table-editing-host.html crashtest editing/crashtests/justifycenter-around-textarea.html @@ -604,47 +852,68 @@ crashtest editing/crashtests/make-parent-element-editable-after-making-focused-e crashtest editing/crashtests/move-editing-host-to-subdocument-when-textarea-has-focus.html crashtest editing/crashtests/move-first-element-from-editinghost-to-outside-on-input-of-embolden.html crashtest editing/crashtests/move-legend-followed-by-textarea-into-orphan-div.html +crashtest editing/crashtests/mozilla-bug-1851730.html crashtest editing/crashtests/multiple-execCommand-calls-after-interting-long-text.html crashtest editing/crashtests/non-root-editable-html-element.html crashtest editing/crashtests/normalize_document_at_DOMSubtreeModified_during_insertparagraph.html crashtest editing/crashtests/outdent-across-svg-boundary.html crashtest editing/crashtests/outdent-editing-host-containing-combining-diacritical-mark.html crashtest editing/crashtests/outdent-in-empty-body-editing-host.html +crashtest editing/crashtests/outdent-in-meter-indented-by-legend-in-css-mode.html crashtest editing/crashtests/outdent-indent-inserthorizontalrule-on-selectionchange.html crashtest editing/crashtests/queryCommandIndeterm-backcolor-and-hilitecolor-in-empty-iframe-in-designMode.html crashtest editing/crashtests/queryCommandIndeterm-backcolor-in-empty-iframe-in-designMode-from-load.html crashtest editing/crashtests/queryCommandState-backcolor-after-removing-html-element-in-designMode-from-load.html crashtest editing/crashtests/queryCommandValue-backcolor-after-replacing-html-element-with-new-one-in-designMode-from-load.html crashtest editing/crashtests/remove-document-element-of-iframe-having-style-content.html +crashtest editing/crashtests/remove-editing-host-during-forwarddelete.html crashtest editing/crashtests/remove-editing-host-on-DOMNodeInserted-at-indent.html crashtest editing/crashtests/remove-editing-host-which-is-selected.html crashtest editing/crashtests/remove-iframe-for-designMode.html +crashtest editing/crashtests/remove-parent-element-during-inserthtml.html crashtest editing/crashtests/remove-right-block-during-joining-with-parent-left-block.html +crashtest editing/crashtests/removeformat-from-DOMNodeRemoved.html +crashtest editing/crashtests/removeformat-in-number-input-immediately-after-type-change-and-stepUp.html crashtest editing/crashtests/remve-documentElement-after-inserthtml-svg-and-td.html +crashtest editing/crashtests/replace-body-after-designMode-off-and-making-editing-host.html +crashtest editing/crashtests/replace-document-root-and-refocus-window.html +crashtest editing/crashtests/replace-document-root-with-object-and-mo.html crashtest editing/crashtests/replace-parent-of-editing-host-on-DOMSubtreeModified.html crashtest editing/crashtests/selectall-and-inerthtml-in-textarea-editing-host.html crashtest editing/crashtests/selectall-in-head-editing-host-after-body-removed.html crashtest editing/crashtests/selectall-selection-modify-move-forward-lineboundary-selectall-around-editable-canvas.html crashtest editing/crashtests/selection-modify-around-input-in-contenteditable.html crashtest editing/crashtests/selection-modify-extend-backward-character-to-outside-body-in-designMode.html +crashtest editing/crashtests/set-input-value-of-editing-host-after-changing-type.html +crashtest editing/crashtests/set-output-value-to-empty-while-deleting-its-content.html +crashtest editing/crashtests/set-selection-range-after-updating-textarea-default-value.html crashtest editing/crashtests/textarea-will-be-blurred-by-focus-event-listener.html crashtest editing/crashtests/unloading-editor-in-subdocument-containing-misspelled-word.html crashtest editing/crashtests/update-dom-during-undoing-in-textarea.html crashtest editing/other/design-mode-textarea-crash.html crashtest editing/run/empty-editable-crash.html crashtest editing/run/first-letter-crossing-engine-boundary-crash.html +crashtest encoding/streams/stringification-crash.html +crashtest fetch/api/crashtests/aborted-fetch-response.https.html +crashtest fetch/api/crashtests/body-window-destroy.html crashtest fetch/api/crashtests/request.html +crashtest fetch/api/response/many-empty-chunks-crash.html crashtest fullscreen/crashtests/backdrop-list-item.html crashtest fullscreen/crashtests/chrome-1312699.html crashtest fullscreen/crashtests/content-visibility-crash.html crashtest html/browsers/origin/origin-keyed-agent-clusters/popups-crash.https.html +crashtest html/canvas/element/manual/filters/svg-filter-crash.html crashtest html/canvas/element/manual/wide-gamut-canvas/imagedata-no-color-settings-crash.html +crashtest html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas-worker-font-load-crash.html crashtest html/canvas/offscreen/set-proprietary-font-names-001-crash.html +crashtest html/dom/elements/global-attributes/the-anchor-attribute-003-crash.tentative.html +crashtest html/dom/elements/the-innertext-and-outertext-properties/innertext-domnoderemoved-crash.html crashtest html/interaction/focus/focused-element-move-documents-crash.html crashtest html/obsolete/requirements-for-implementations/the-marquee-element-0/crashtests/marquee-with-calc.html crashtest html/obsolete/requirements-for-implementations/the-marquee-element-0/crashtests/marquee-with-table.html crashtest html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-adopt-to-inactive-document-crash.html crashtest html/rendering/non-replaced-elements/form-controls/select-fixedpos-crash.html +crashtest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/crashtests/fieldset-middleclick.html crashtest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-crash.html crashtest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-dynamic-oof-container-crash.html crashtest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/insert-legend-in-multicol-fieldset-crash.html @@ -655,14 +924,20 @@ crashtest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/ crashtest html/rendering/non-replaced-elements/the-frameset-and-frame-elements/multicol-table-crash.html crashtest html/rendering/non-replaced-elements/the-page/crashtests/body-huge-attr-value-crash.html crashtest html/rendering/replaced-elements/attributes-for-embedded-content-and-images/input-image-content-crash.html +crashtest html/rendering/the-details-element/details-autofocus-crash.html crashtest html/rendering/the-details-element/empty-crash.html crashtest html/rendering/the-details-element/two-summaries-removal-crash.html +crashtest html/rendering/widgets/input-checkbox-appearance-none-dynamic-crash.html crashtest html/semantics/embedded-content/media-elements/track/track-element/crashtests/track-element-src-aborted-load-onerror-crash.html crashtest html/semantics/embedded-content/the-audio-element/audio-appendChild-to-inactive-document-crash.html crashtest html/semantics/embedded-content/the-audio-element/audio-play-in-inactive-document-crash.html +crashtest html/semantics/embedded-content/the-embed-element/embed-named-attribute-detached-context-crash.html crashtest html/semantics/embedded-content/the-iframe-element/hittest-detached-iframe-crash.html crashtest html/semantics/embedded-content/the-iframe-element/iframe-document-move-crash.html +crashtest html/semantics/embedded-content/the-iframe-element/multiple-iframes-with-allow-scripts-crash.html crashtest html/semantics/embedded-content/the-iframe-element/sandbox-toggle-in-inactive-document-crash.html +crashtest html/semantics/embedded-content/the-iframe-element/srcdoc-removed-iframe-crash.html +crashtest html/semantics/embedded-content/the-img-element/document-destroyed-crash.html crashtest html/semantics/embedded-content/the-img-element/image-loading-lazy-subframe-detached-crash.html crashtest html/semantics/embedded-content/the-img-element/img-created-in-active-document-crash.html crashtest html/semantics/embedded-content/the-object-element/block-object-with-ruby-crash.html @@ -674,12 +949,20 @@ crashtest html/semantics/forms/constraints/reportValidity-crash.html crashtest html/semantics/forms/the-datalist-element/remove-datalist-crash.html crashtest html/semantics/forms/the-form-element/form-action-in-inactive-document-crash.html crashtest html/semantics/forms/the-input-element/input-form-detach-style-crash.html +crashtest html/semantics/forms/the-input-element/input-importNode-to-detached-document-crash.html +crashtest html/semantics/forms/the-input-element/input-type-change-empty-crash.html +crashtest html/semantics/forms/the-input-element/input-type-number-rtl-invalid-crash.html crashtest html/semantics/forms/the-input-element/invalid-datalist-options-crash.html crashtest html/semantics/forms/the-input-element/large-step-crash.html crashtest html/semantics/forms/the-input-element/time-datalist-crash.html crashtest html/semantics/forms/the-input-element/type-change-file-to-text-crash.html crashtest html/semantics/forms/the-select-element/select-add-option-crash.html -crashtest html/semantics/forms/the-selectmenu-element/selectmenu-listbox-fallback-change-crash.tentative.html +crashtest html/semantics/forms/the-select-element/select-attribute-crash.html +crashtest html/semantics/forms/the-select-element/select-in-table-crash.html +crashtest html/semantics/forms/the-selectlist-element/selectlist-listbox-fallback-change-crash.tentative.html +crashtest html/semantics/forms/the-textarea-element/textarea-splittext-with-range-crash.html +crashtest html/semantics/forms/the-textarea-element/textarea-splittext-with-range-simple-crash.html +crashtest html/semantics/forms/the-textarea-element/textarea-update-default-value-in-shadow-crash.html crashtest html/semantics/interactive-elements/the-details-element/auto-expand-ax-slot-recalc-crash.html crashtest html/semantics/interactive-elements/the-details-element/auto-expand-window-find-crash.html crashtest html/semantics/interactive-elements/the-details-element/details-cq-crash.html @@ -694,8 +977,9 @@ crashtest html/semantics/interactive-elements/the-dialog-element/dialog-showModa crashtest html/semantics/interactive-elements/the-dialog-element/showmodal-in-shadow-crash.html crashtest html/semantics/interactive-elements/the-dialog-element/showmodal-shadow-sibling-frame-crash.html crashtest html/semantics/interactive-elements/the-summary-element/display-table-with-rt-crash.html -crashtest html/semantics/popovers/popover-dialog-crash.tentative.html -crashtest html/semantics/popovers/popover-manual-crash.tentative.html +crashtest html/semantics/invokers/invoketarget-generic-eventtarget-crash.tentative.html +crashtest html/semantics/popovers/invoker-show-crash.html +crashtest html/semantics/popovers/popover-undefined-remove-crash.html crashtest html/semantics/scripting-1/the-template-element/template-element/template-construction-in-inactive-document-crash.html crashtest html/semantics/scripting-1/the-template-element/template-element/template-content-in-inactive-document-crash.html crashtest html/semantics/scripting-1/the-template-element/template-element/template-content-move-to-inactive-document-crash.html @@ -704,24 +988,37 @@ crashtest html/semantics/scripting-1/the-template-element/template-element/templ crashtest html/semantics/scripting-1/the-template-element/template-table-crash.html crashtest html/semantics/text-level-semantics/the-a-element/a-click-handler-with-null-browsing-context-crash.html crashtest html/semantics/text-level-semantics/the-ruby-element/rt-without-ruby-crash.html +crashtest html/webappapis/scripting/reporterror-in-detached-window-crash.html +crashtest html/webappapis/structured-clone/structured-clone-detached-window-crash.html crashtest infrastructure/crashtests/example.html crashtest mathml/crashtests/children-with-negative-block-sizes.html crashtest mathml/crashtests/children-with-negative-inline-sizes.html crashtest mathml/crashtests/chrome-bug-1287843.html crashtest mathml/crashtests/display-and-column-properties.html crashtest mathml/crashtests/dynamic-height-within-table-cell.html +crashtest mathml/crashtests/first-letter-contributed-to-ancestor.html crashtest mathml/crashtests/fixed-pos-children.html crashtest mathml/crashtests/math-depth-overflow.html crashtest mathml/crashtests/mathml-in-svg-001.html crashtest mathml/crashtests/mmultiscripts-with-two-prescripts.html crashtest mathml/crashtests/mozilla/1028521-1.xhtml crashtest mathml/crashtests/mozilla/1061027.html +crashtest mathml/crashtests/mozilla/1092053.html +crashtest mathml/crashtests/mozilla/1140268-1.html crashtest mathml/crashtests/mozilla/1221888-1.html crashtest mathml/crashtests/mozilla/1373767-1.html crashtest mathml/crashtests/mozilla/1376158.html +crashtest mathml/crashtests/mozilla/1397439-1.html +crashtest mathml/crashtests/mozilla/1403465.html +crashtest mathml/crashtests/mozilla/1435015.html crashtest mathml/crashtests/mozilla/151054-1.xml +crashtest mathml/crashtests/mozilla/1555757-1.html +crashtest mathml/crashtests/mozilla/1555757-2.html crashtest mathml/crashtests/mozilla/1600635.html +crashtest mathml/crashtests/mozilla/1701975-1.html +crashtest mathml/crashtests/mozilla/243159-2.xhtml crashtest mathml/crashtests/mozilla/289180-1.xml +crashtest mathml/crashtests/mozilla/306902-1.xml crashtest mathml/crashtests/mozilla/307826-1.xhtml crashtest mathml/crashtests/mozilla/307839-1.xhtml crashtest mathml/crashtests/mozilla/307839-2.xhtml @@ -734,6 +1031,7 @@ crashtest mathml/crashtests/mozilla/336074-1.xhtml crashtest mathml/crashtests/mozilla/347355-1-inner.xhtml crashtest mathml/crashtests/mozilla/347355-1.html crashtest mathml/crashtests/mozilla/347495-1.xhtml +crashtest mathml/crashtests/mozilla/347506-1.xhtml crashtest mathml/crashtests/mozilla/347507-1.xhtml crashtest mathml/crashtests/mozilla/348492-1.xhtml crashtest mathml/crashtests/mozilla/348709-1.xhtml @@ -741,43 +1039,67 @@ crashtest mathml/crashtests/mozilla/348811-1.xhtml crashtest mathml/crashtests/mozilla/348811-2.xhtml crashtest mathml/crashtests/mozilla/353612-1.xhtml crashtest mathml/crashtests/mozilla/355986-1.xhtml +crashtest mathml/crashtests/mozilla/355993-1.xhtml crashtest mathml/crashtests/mozilla/364685-1.xhtml +crashtest mathml/crashtests/mozilla/364686-1.xhtml crashtest mathml/crashtests/mozilla/366012-1.xhtml crashtest mathml/crashtests/mozilla/366564-1.xhtml crashtest mathml/crashtests/mozilla/367107-1.html crashtest mathml/crashtests/mozilla/368430-1.xhtml +crashtest mathml/crashtests/mozilla/368461-1.xhtml crashtest mathml/crashtests/mozilla/370791-1.xhtml crashtest mathml/crashtests/mozilla/370862-1.xhtml +crashtest mathml/crashtests/mozilla/370884-1.xhtml crashtest mathml/crashtests/mozilla/372483-1.xhtml crashtest mathml/crashtests/mozilla/373472-1.xhtml crashtest mathml/crashtests/mozilla/373472-2.xhtml +crashtest mathml/crashtests/mozilla/373533-1.xhtml +crashtest mathml/crashtests/mozilla/373533-2.xhtml +crashtest mathml/crashtests/mozilla/373533-3.xhtml crashtest mathml/crashtests/mozilla/375562-1.xhtml crashtest mathml/crashtests/mozilla/377824-1.xhtml crashtest mathml/crashtests/mozilla/379418-1.xhtml +crashtest mathml/crashtests/mozilla/382208-1.xhtml +crashtest mathml/crashtests/mozilla/382396-1.xhtml +crashtest mathml/crashtests/mozilla/384649-1.xhtml crashtest mathml/crashtests/mozilla/385226-1.xhtml +crashtest mathml/crashtests/mozilla/385265-1.xhtml +crashtest mathml/crashtests/mozilla/385289-1.xhtml crashtest mathml/crashtests/mozilla/393760-1.xhtml +crashtest mathml/crashtests/mozilla/394150-1.xhtml +crashtest mathml/crashtests/mozilla/395450-1.xhtml crashtest mathml/crashtests/mozilla/397518-1.xhtml crashtest mathml/crashtests/mozilla/398038-1.html +crashtest mathml/crashtests/mozilla/399676-1.xhtml +crashtest mathml/crashtests/mozilla/400445-1.xhtml crashtest mathml/crashtests/mozilla/400475-1.xhtml +crashtest mathml/crashtests/mozilla/400904-1.xhtml crashtest mathml/crashtests/mozilla/402400-1.xhtml crashtest mathml/crashtests/mozilla/403156-1.xhtml crashtest mathml/crashtests/mozilla/404485-1.xhtml crashtest mathml/crashtests/mozilla/405187-1.xhtml crashtest mathml/crashtests/mozilla/405271-1.xml +crashtest mathml/crashtests/mozilla/410728-1.xml +crashtest mathml/crashtests/mozilla/411603-1.html crashtest mathml/crashtests/mozilla/412237-1.xml crashtest mathml/crashtests/mozilla/413063-1.xhtml +crashtest mathml/crashtests/mozilla/413274-1.xhtml crashtest mathml/crashtests/mozilla/416907-1.xhtml +crashtest mathml/crashtests/mozilla/418007-1.xhtml crashtest mathml/crashtests/mozilla/420420-1.xhtml crashtest mathml/crashtests/mozilla/431072-1.xhtml crashtest mathml/crashtests/mozilla/443089-1.xhtml crashtest mathml/crashtests/mozilla/462929-1.html crashtest mathml/crashtests/mozilla/463763-1.xhtml crashtest mathml/crashtests/mozilla/463763-2.xhtml +crashtest mathml/crashtests/mozilla/467914-1.html crashtest mathml/crashtests/mozilla/476547-1.xhtml crashtest mathml/crashtests/mozilla/541620-1.xhtml +crashtest mathml/crashtests/mozilla/547843-1.xhtml crashtest mathml/crashtests/mozilla/557474-1.html crashtest mathml/crashtests/mozilla/654928-1.html crashtest mathml/crashtests/mozilla/655451-1.xhtml +crashtest mathml/crashtests/mozilla/700031.xhtml crashtest mathml/crashtests/mozilla/713606-1.html crashtest mathml/crashtests/mozilla/716349-1.html crashtest mathml/crashtests/mozilla/767251.xhtml @@ -786,6 +1108,7 @@ crashtest mathml/crashtests/mozilla/848725-1.html crashtest mathml/crashtests/mozilla/848725-2.html crashtest mathml/crashtests/mozilla/947557-1.html crashtest mathml/crashtests/mozilla/973322-1.xhtml +crashtest mathml/crashtests/mspace-mpadded-negative-dimensions.html crashtest mathml/crashtests/mtd-as-multicol.html crashtest mathml/crashtests/multicol-inside-ms.html crashtest mathml/crashtests/multicol-on-token-elements.html @@ -794,14 +1117,29 @@ crashtest mathml/crashtests/scrollbar-caching-assert.html crashtest mathml/presentation-markup/operators/embellished-operator-001-crash.html crashtest mediacapture-image/ImageCapture-grabFrame-crash.html crashtest mediacapture-streams/crashtests/enumerateDevices-after-discard-1.https.html -crashtest portals/portals-no-frame-crash.html +crashtest notifications/global-teardown-crash.html +crashtest print/crashtests/reload-crash.html crashtest quirks/crashtests/list-item-whole-line-quirks-crash.html crashtest quirks/table-replaced-descendant-percentage-height-crash.html +crashtest resize-observer/multiple-observers-with-mutation-crash.html +crashtest scroll-animations/crashtests/invalid-animation-range.html +crashtest scroll-animations/crashtests/viewport-100vh.html crashtest scroll-animations/scroll-timelines/animation-with-delay-crash.html crashtest scroll-animations/scroll-timelines/animation-with-offsets-crash.html crashtest scroll-animations/scroll-timelines/null-scroll-source-crash.html crashtest scroll-animations/scroll-timelines/scroll-timeline-in-removed-iframe-crash.html +crashtest scroll-animations/view-timelines/subject-br-crash.html +crashtest selection/crashtests/selectall-and-find-svg-text-on-selectstart.html crashtest selection/crashtests/selection-clip-crash.html +crashtest selection/crashtests/selection-details-editor-ui.html +crashtest selection/crashtests/selection-modify-around-input.html +crashtest selection/crashtests/selection-modify-around-textarea.html +crashtest selection/crashtests/selection-modify-line-boundary-around-empty-details.html +crashtest selection/crashtests/selection-modify-line-boundary-around-shadow.html +crashtest selection/crashtests/selection-modify-line-from-contenteditable-to-textarea.html +crashtest selection/crashtests/selection-modify-line-next-to-input-and-make-it-invisible.html +crashtest selection/crashtests/selection-modify-line-next-to-textarea.html +crashtest selection/crashtests/selection-modify-per-word-in-table-header-group.html crashtest selection/crashtests/table.html crashtest selection/selection-select-all-move-input-crash.html crashtest service-workers/cache-storage/crashtests/cache-response-clone.https.html @@ -813,7 +1151,12 @@ crashtest shadow-dom/invalidate-shadow-dom-crash.html crashtest shadow-dom/nested-slot-remove-crash.html crashtest shadow-dom/slot-dir-attach-child-crash.html crashtest shadow-dom/user-agent-shadow-root-crash.html +crashtest streams/piping/crashtests/cross-piping.html +crashtest streams/piping/crashtests/cross-piping2.https.html +crashtest streams/readable-streams/crashtests/from-cross-realm.https.html crashtest streams/readable-streams/crashtests/strategy-worker-terminate.html +crashtest streams/readable-streams/tee-detached-context-crash.html +crashtest streams/transferable/gc-crash.html crashtest svg/animations/animated-classname-crash.svg crashtest svg/animations/end-of-time-001-crash.html crashtest svg/animations/end-of-time-002-crash.html @@ -824,23 +1167,29 @@ crashtest svg/crashtests/chrome-bug-1207590.html crashtest svg/crashtests/chrome-bug-1238412.html crashtest svg/crashtests/chrome-bug-1345806.html crashtest svg/crashtests/chrome-bug-1371700.html +crashtest svg/crashtests/chrome-bug-1474157.html +crashtest svg/crashtests/chrome-bug-333487749.html crashtest svg/crashtests/firefox-bug-1688293.html crashtest svg/crashtests/firefox-bug-1703592.html crashtest svg/crashtests/firefox-bug-1719483.html crashtest svg/crashtests/firefox-bug-1723249.html crashtest svg/crashtests/firefox-bug-1724237.html crashtest svg/crashtests/firefox-bug-1753105.html +crashtest svg/crashtests/firefox-bug-1883804.html crashtest svg/extensibility/foreignObject/foreign-object-circular-filter-reference-crash.html crashtest svg/extensibility/foreignObject/foreign-object-under-clip-path-crash.html crashtest svg/extensibility/foreignObject/foreign-object-under-defs-crash.html crashtest svg/painting/marker-with-mask-cycle-crash.html crashtest svg/styling/font-size-number-calc-crash.svg crashtest svg/svg-in-svg/svg-in-svg-circular-filter-reference-crash.html +crashtest svg/text/crashtests/textlength-zwj-crash.svg crashtest svg/text/reftests/text-display-contents-crash.html crashtest svg/text/reftests/text-huge-font-size-crash.html crashtest svg/text/scripted/reattach-crash.html +crashtest svg/types/scripted/svglength-value-access-when-in-detached-document-crash.html crashtest web-animations/animation-model/keyframe-effects/effect-in-removed-iframe-crash.html crashtest web-animations/animation-model/keyframe-effects/effect-on-marquee-parent-crash.html +crashtest web-animations/crashtests/color-mix-crashtest.html crashtest web-animations/crashtests/get-computed-timing-crash.html crashtest web-animations/crashtests/infinite-active-duration.html crashtest web-animations/crashtests/partially-overlapping-animations-one-not-current-001.html @@ -856,7 +1205,9 @@ crashtest web-locks/crashtests/worker-termination.https.html crashtest webaudio/the-audio-api/the-audiobuffer-interface/crashtests/copyFromChannel-bufferOffset-1.html crashtest webaudio/the-audio-api/the-audiobuffer-interface/crashtests/copyToChannel-bufferOffset-1.html crashtest webaudio/the-audio-api/the-audiocontext-interface/crashtests/currentTime-after-discard.html +crashtest webaudio/the-audio-api/the-oscillatornode-interface/crashtests/stop-before-start.html crashtest webcodecs/image-decoder-disconnect-readable-stream-crash.https.html +crashtest webtransport/bidirectional-cancel-crash.https.html manual FileAPI/BlobURL/test2-manual.html manual FileAPI/FileReader/test_errors-manual.html manual FileAPI/FileReader/test_notreadableerrors-manual.html @@ -870,165 +1221,165 @@ manual FileAPI/reading-data-section/filereader_file_img-manual.html manual FileAPI/url/url_createobjecturl_file-manual.html manual FileAPI/url/url_createobjecturl_file_img-manual.html manual accelerometer/LinearAccelerationSensor-shake-threshold-manual.https.html -manual accname/description_1.0_combobox-focusable-manual.html -manual accname/description_from_content_of_describedby_element-manual.html -manual accname/description_link-with-label-manual.html -manual accname/description_test_case_557-manual.html -manual accname/description_test_case_664-manual.html -manual accname/description_test_case_665-manual.html -manual accname/description_test_case_666-manual.html -manual accname/description_test_case_772-manual.html -manual accname/description_test_case_773-manual.html -manual accname/description_test_case_774-manual.html -manual accname/description_test_case_838-manual.html -manual accname/description_test_case_broken_reference-manual.html -manual accname/description_test_case_one_valid_reference-manual.html -manual accname/description_title-same-element-manual.html -manual accname/name_1.0_combobox-focusable-alternative-manual.html -manual accname/name_1.0_combobox-focusable-manual.html -manual accname/name_checkbox-label-embedded-combobox-manual.html -manual accname/name_checkbox-label-embedded-listbox-manual.html -manual accname/name_checkbox-label-embedded-menu-manual.html -manual accname/name_checkbox-label-embedded-select-manual.html -manual accname/name_checkbox-label-embedded-slider-manual.html -manual accname/name_checkbox-label-embedded-spinbutton-manual.html -manual accname/name_checkbox-label-embedded-textbox-manual.html -manual accname/name_checkbox-label-multiple-label-alternative-manual.html -manual accname/name_checkbox-label-multiple-label-manual.html -manual accname/name_checkbox-title-manual.html -manual accname/name_file-label-embedded-combobox-manual.html -manual accname/name_file-label-embedded-menu-manual.html -manual accname/name_file-label-embedded-select-manual.html -manual accname/name_file-label-embedded-slider-manual.html -manual accname/name_file-label-embedded-spinbutton-manual.html -manual accname/name_file-label-inline-block-elements-manual.html -manual accname/name_file-label-inline-block-styles-manual.html -manual accname/name_file-label-inline-hidden-elements-manual.html -manual accname/name_file-label-owned-combobox-manual.html -manual accname/name_file-label-owned-combobox-owned-listbox-manual.html -manual accname/name_file-title-manual.html -manual accname/name_from_content-manual.html -manual accname/name_from_content_of_label-manual.html -manual accname/name_from_content_of_labelledby_element-manual.html -manual accname/name_from_content_of_labelledby_elements_one_of_which_is_hidden-manual.html -manual accname/name_heading-combobox-focusable-alternative-manual.html -manual accname/name_image-title-manual.html -manual accname/name_link-mixed-content-manual.html -manual accname/name_link-with-label-manual.html -manual accname/name_password-label-embedded-combobox-manual.html -manual accname/name_password-label-embedded-menu-manual.html -manual accname/name_password-label-embedded-select-manual.html -manual accname/name_password-label-embedded-slider-manual.html -manual accname/name_password-label-embedded-spinbutton-manual.html -manual accname/name_password-title-manual.html -manual accname/name_radio-label-embedded-combobox-manual.html -manual accname/name_radio-label-embedded-menu-manual.html -manual accname/name_radio-label-embedded-select-manual.html -manual accname/name_radio-label-embedded-slider-manual.html -manual accname/name_radio-label-embedded-spinbutton-manual.html -manual accname/name_radio-title-manual.html -manual accname/name_test_case_539-manual.html -manual accname/name_test_case_540-manual.html -manual accname/name_test_case_541-manual.html -manual accname/name_test_case_543-manual.html -manual accname/name_test_case_544-manual.html -manual accname/name_test_case_545-manual.html -manual accname/name_test_case_546-manual.html -manual accname/name_test_case_547-manual.html -manual accname/name_test_case_548-manual.html -manual accname/name_test_case_549-manual.html -manual accname/name_test_case_550-manual.html -manual accname/name_test_case_551-manual.html -manual accname/name_test_case_552-manual.html -manual accname/name_test_case_553-manual.html -manual accname/name_test_case_556-manual.html -manual accname/name_test_case_557-manual.html -manual accname/name_test_case_558-manual.html -manual accname/name_test_case_559-manual.html -manual accname/name_test_case_560-manual.html -manual accname/name_test_case_561-manual.html -manual accname/name_test_case_562-manual.html -manual accname/name_test_case_563-manual.html -manual accname/name_test_case_564-manual.html -manual accname/name_test_case_565-manual.html -manual accname/name_test_case_566-manual.html -manual accname/name_test_case_596-manual.html -manual accname/name_test_case_597-manual.html -manual accname/name_test_case_598-manual.html -manual accname/name_test_case_599-manual.html -manual accname/name_test_case_600-manual.html -manual accname/name_test_case_601-manual.html -manual accname/name_test_case_602-manual.html -manual accname/name_test_case_603-manual.html -manual accname/name_test_case_604-manual.html -manual accname/name_test_case_605-manual.html -manual accname/name_test_case_606-manual.html -manual accname/name_test_case_607-manual.html -manual accname/name_test_case_608-manual.html -manual accname/name_test_case_609-manual.html -manual accname/name_test_case_610-manual.html -manual accname/name_test_case_611-manual.html -manual accname/name_test_case_612-manual.html -manual accname/name_test_case_613-manual.html -manual accname/name_test_case_614-manual.html -manual accname/name_test_case_615-manual.html -manual accname/name_test_case_616-manual.html -manual accname/name_test_case_617-manual.html -manual accname/name_test_case_618-manual.html -manual accname/name_test_case_619-manual.html -manual accname/name_test_case_620-manual.html -manual accname/name_test_case_621-manual.html -manual accname/name_test_case_659-manual.html -manual accname/name_test_case_660-manual.html -manual accname/name_test_case_661-manual.html -manual accname/name_test_case_662-manual.html -manual accname/name_test_case_663a-manual.html -manual accname/name_test_case_721-manual.html -manual accname/name_test_case_723-manual.html -manual accname/name_test_case_724-manual.html -manual accname/name_test_case_725-manual.html -manual accname/name_test_case_726-manual.html -manual accname/name_test_case_727-manual.html -manual accname/name_test_case_728-manual.html -manual accname/name_test_case_729-manual.html -manual accname/name_test_case_730-manual.html -manual accname/name_test_case_731-manual.html -manual accname/name_test_case_733-manual.html -manual accname/name_test_case_734-manual.html -manual accname/name_test_case_735-manual.html -manual accname/name_test_case_736-manual.html -manual accname/name_test_case_737-manual.html -manual accname/name_test_case_738-manual.html -manual accname/name_test_case_739-manual.html -manual accname/name_test_case_740-manual.html -manual accname/name_test_case_741-manual.html -manual accname/name_test_case_742-manual.html -manual accname/name_test_case_743-manual.html -manual accname/name_test_case_744-manual.html -manual accname/name_test_case_745-manual.html -manual accname/name_test_case_746-manual.html -manual accname/name_test_case_747-manual.html -manual accname/name_test_case_748-manual.html -manual accname/name_test_case_749-manual.html -manual accname/name_test_case_750-manual.html -manual accname/name_test_case_751-manual.html -manual accname/name_test_case_752-manual.html -manual accname/name_test_case_753-manual.html -manual accname/name_test_case_754-manual.html -manual accname/name_test_case_755-manual.html -manual accname/name_test_case_756-manual.html -manual accname/name_test_case_757-manual.html -manual accname/name_test_case_758-manual.html -manual accname/name_test_case_759-manual.html -manual accname/name_test_case_760-manual.html -manual accname/name_test_case_761-manual.html -manual accname/name_test_case_762-manual.html -manual accname/name_text-label-embedded-combobox-manual.html -manual accname/name_text-label-embedded-menu-manual.html -manual accname/name_text-label-embedded-select-manual.html -manual accname/name_text-label-embedded-slider-manual.html -manual accname/name_text-label-embedded-spinbutton-manual.html -manual accname/name_text-title-manual.html +manual accname/manual/description_1.0_combobox-focusable-manual.html +manual accname/manual/description_from_content_of_describedby_element-manual.html +manual accname/manual/description_link-with-label-manual.html +manual accname/manual/description_test_case_557-manual.html +manual accname/manual/description_test_case_664-manual.html +manual accname/manual/description_test_case_665-manual.html +manual accname/manual/description_test_case_666-manual.html +manual accname/manual/description_test_case_772-manual.html +manual accname/manual/description_test_case_773-manual.html +manual accname/manual/description_test_case_774-manual.html +manual accname/manual/description_test_case_838-manual.html +manual accname/manual/description_test_case_broken_reference-manual.html +manual accname/manual/description_test_case_one_valid_reference-manual.html +manual accname/manual/description_title-same-element-manual.html +manual accname/manual/name_1.0_combobox-focusable-alternative-manual.html +manual accname/manual/name_1.0_combobox-focusable-manual.html +manual accname/manual/name_checkbox-label-embedded-combobox-manual.html +manual accname/manual/name_checkbox-label-embedded-listbox-manual.html +manual accname/manual/name_checkbox-label-embedded-menu-manual.html +manual accname/manual/name_checkbox-label-embedded-select-manual.html +manual accname/manual/name_checkbox-label-embedded-slider-manual.html +manual accname/manual/name_checkbox-label-embedded-spinbutton-manual.html +manual accname/manual/name_checkbox-label-embedded-textbox-manual.html +manual accname/manual/name_checkbox-label-multiple-label-alternative-manual.html +manual accname/manual/name_checkbox-label-multiple-label-manual.html +manual accname/manual/name_checkbox-title-manual.html +manual accname/manual/name_file-label-embedded-combobox-manual.html +manual accname/manual/name_file-label-embedded-menu-manual.html +manual accname/manual/name_file-label-embedded-select-manual.html +manual accname/manual/name_file-label-embedded-slider-manual.html +manual accname/manual/name_file-label-embedded-spinbutton-manual.html +manual accname/manual/name_file-label-inline-block-elements-manual.html +manual accname/manual/name_file-label-inline-block-styles-manual.html +manual accname/manual/name_file-label-inline-hidden-elements-manual.html +manual accname/manual/name_file-label-owned-combobox-manual.html +manual accname/manual/name_file-label-owned-combobox-owned-listbox-manual.html +manual accname/manual/name_file-title-manual.html +manual accname/manual/name_from_content-manual.html +manual accname/manual/name_from_content_of_label-manual.html +manual accname/manual/name_from_content_of_labelledby_element-manual.html +manual accname/manual/name_from_content_of_labelledby_elements_one_of_which_is_hidden-manual.html +manual accname/manual/name_heading-combobox-focusable-alternative-manual.html +manual accname/manual/name_image-title-manual.html +manual accname/manual/name_link-mixed-content-manual.html +manual accname/manual/name_link-with-label-manual.html +manual accname/manual/name_password-label-embedded-combobox-manual.html +manual accname/manual/name_password-label-embedded-menu-manual.html +manual accname/manual/name_password-label-embedded-select-manual.html +manual accname/manual/name_password-label-embedded-slider-manual.html +manual accname/manual/name_password-label-embedded-spinbutton-manual.html +manual accname/manual/name_password-title-manual.html +manual accname/manual/name_radio-label-embedded-combobox-manual.html +manual accname/manual/name_radio-label-embedded-menu-manual.html +manual accname/manual/name_radio-label-embedded-select-manual.html +manual accname/manual/name_radio-label-embedded-slider-manual.html +manual accname/manual/name_radio-label-embedded-spinbutton-manual.html +manual accname/manual/name_radio-title-manual.html +manual accname/manual/name_test_case_539-manual.html +manual accname/manual/name_test_case_540-manual.html +manual accname/manual/name_test_case_541-manual.html +manual accname/manual/name_test_case_543-manual.html +manual accname/manual/name_test_case_544-manual.html +manual accname/manual/name_test_case_545-manual.html +manual accname/manual/name_test_case_546-manual.html +manual accname/manual/name_test_case_547-manual.html +manual accname/manual/name_test_case_548-manual.html +manual accname/manual/name_test_case_549-manual.html +manual accname/manual/name_test_case_550-manual.html +manual accname/manual/name_test_case_551-manual.html +manual accname/manual/name_test_case_552-manual.html +manual accname/manual/name_test_case_553-manual.html +manual accname/manual/name_test_case_556-manual.html +manual accname/manual/name_test_case_557-manual.html +manual accname/manual/name_test_case_558-manual.html +manual accname/manual/name_test_case_559-manual.html +manual accname/manual/name_test_case_560-manual.html +manual accname/manual/name_test_case_561-manual.html +manual accname/manual/name_test_case_562-manual.html +manual accname/manual/name_test_case_563-manual.html +manual accname/manual/name_test_case_564-manual.html +manual accname/manual/name_test_case_565-manual.html +manual accname/manual/name_test_case_566-manual.html +manual accname/manual/name_test_case_596-manual.html +manual accname/manual/name_test_case_597-manual.html +manual accname/manual/name_test_case_598-manual.html +manual accname/manual/name_test_case_599-manual.html +manual accname/manual/name_test_case_600-manual.html +manual accname/manual/name_test_case_601-manual.html +manual accname/manual/name_test_case_602-manual.html +manual accname/manual/name_test_case_603-manual.html +manual accname/manual/name_test_case_604-manual.html +manual accname/manual/name_test_case_605-manual.html +manual accname/manual/name_test_case_606-manual.html +manual accname/manual/name_test_case_607-manual.html +manual accname/manual/name_test_case_608-manual.html +manual accname/manual/name_test_case_609-manual.html +manual accname/manual/name_test_case_610-manual.html +manual accname/manual/name_test_case_611-manual.html +manual accname/manual/name_test_case_612-manual.html +manual accname/manual/name_test_case_613-manual.html +manual accname/manual/name_test_case_614-manual.html +manual accname/manual/name_test_case_615-manual.html +manual accname/manual/name_test_case_616-manual.html +manual accname/manual/name_test_case_617-manual.html +manual accname/manual/name_test_case_618-manual.html +manual accname/manual/name_test_case_619-manual.html +manual accname/manual/name_test_case_620-manual.html +manual accname/manual/name_test_case_621-manual.html +manual accname/manual/name_test_case_659-manual.html +manual accname/manual/name_test_case_660-manual.html +manual accname/manual/name_test_case_661-manual.html +manual accname/manual/name_test_case_662-manual.html +manual accname/manual/name_test_case_663a-manual.html +manual accname/manual/name_test_case_721-manual.html +manual accname/manual/name_test_case_723-manual.html +manual accname/manual/name_test_case_724-manual.html +manual accname/manual/name_test_case_725-manual.html +manual accname/manual/name_test_case_726-manual.html +manual accname/manual/name_test_case_727-manual.html +manual accname/manual/name_test_case_728-manual.html +manual accname/manual/name_test_case_729-manual.html +manual accname/manual/name_test_case_730-manual.html +manual accname/manual/name_test_case_731-manual.html +manual accname/manual/name_test_case_733-manual.html +manual accname/manual/name_test_case_734-manual.html +manual accname/manual/name_test_case_735-manual.html +manual accname/manual/name_test_case_736-manual.html +manual accname/manual/name_test_case_737-manual.html +manual accname/manual/name_test_case_738-manual.html +manual accname/manual/name_test_case_739-manual.html +manual accname/manual/name_test_case_740-manual.html +manual accname/manual/name_test_case_741-manual.html +manual accname/manual/name_test_case_742-manual.html +manual accname/manual/name_test_case_743-manual.html +manual accname/manual/name_test_case_744-manual.html +manual accname/manual/name_test_case_745-manual.html +manual accname/manual/name_test_case_746-manual.html +manual accname/manual/name_test_case_747-manual.html +manual accname/manual/name_test_case_748-manual.html +manual accname/manual/name_test_case_749-manual.html +manual accname/manual/name_test_case_750-manual.html +manual accname/manual/name_test_case_751-manual.html +manual accname/manual/name_test_case_752-manual.html +manual accname/manual/name_test_case_753-manual.html +manual accname/manual/name_test_case_754-manual.html +manual accname/manual/name_test_case_755-manual.html +manual accname/manual/name_test_case_756-manual.html +manual accname/manual/name_test_case_757-manual.html +manual accname/manual/name_test_case_758-manual.html +manual accname/manual/name_test_case_759-manual.html +manual accname/manual/name_test_case_760-manual.html +manual accname/manual/name_test_case_761-manual.html +manual accname/manual/name_test_case_762-manual.html +manual accname/manual/name_text-label-embedded-combobox-manual.html +manual accname/manual/name_text-label-embedded-menu-manual.html +manual accname/manual/name_text-label-embedded-select-manual.html +manual accname/manual/name_text-label-embedded-slider-manual.html +manual accname/manual/name_text-label-embedded-spinbutton-manual.html +manual accname/manual/name_text-title-manual.html manual annotation-model/annotations/annotationMusts-manual.html manual annotation-model/annotations/annotationOptionals-manual.html manual annotation-model/annotations/annotationsAgentOptionals-manual.html @@ -1054,6 +1405,7 @@ manual appmanifest/display-override-member/display-override-member-media-feature manual appmanifest/display-override-member/display-override-member-media-feature-minimal-ui-manual.tentative.html manual appmanifest/display-override-member/display-override-member-media-feature-standalone-manual.tentative.html manual appmanifest/display-override-member/display-override-member-media-feature-standalone-overrides-browser-manual.tentative.html +manual appmanifest/display-override-member/display-override-member-media-feature-tabbed-manual.tentative.html manual appmanifest/display-override-member/display-override-member-media-feature-window-controls-overlay-overrides-browser-manual.tentative.html manual appmanifest/file_handlers-member/file_handlers-member-manual.tentative.html manual appmanifest/icons-member/icons-member-cors-fail-manual.sub.html @@ -1095,6 +1447,7 @@ manual battery-status/battery-discharging-manual.https.html manual battery-status/battery-full-manual.https.html manual battery-status/battery-plugging-in-manual.https.html manual battery-status/battery-unplugging-manual.https.html +manual captured-mouse-events/capturing-mouse-coordinates-manual.tentative.https.html manual clipboard-apis/clipboard-file-manual.html manual clipboard-apis/events/cut-event-manual.html manual clipboard-apis/events/paste-event-manual.html @@ -1113,6 +1466,9 @@ manual core-aam/aria-atomic_true-manual.html manual core-aam/aria-autocomplete_both-manual.html manual core-aam/aria-autocomplete_inline-manual.html manual core-aam/aria-autocomplete_list-manual.html +manual core-aam/aria-braillelabel-manual.html +manual core-aam/aria-brailleroledescription-manual.html +manual core-aam/aria-brailleroledescription_is_empty-manual.html manual core-aam/aria-busy_false-manual.html manual core-aam/aria-busy_true-manual.html manual core-aam/aria-busy_value_changes-manual.html @@ -1130,6 +1486,7 @@ manual core-aam/aria-current_value_changes-manual.html manual core-aam/aria-current_with_non-false_allowed_value-manual.html manual core-aam/aria-current_with_unrecognized_value-manual.html manual core-aam/aria-describedby-manual.html +manual core-aam/aria-description-manual.html manual core-aam/aria-details-manual.html manual core-aam/aria-disabled_false-manual.html manual core-aam/aria-disabled_true-manual.html @@ -1144,6 +1501,12 @@ manual core-aam/aria-dropeffect_value_changes-manual.html manual core-aam/aria-errormessage_aria-invalid_false-manual.html manual core-aam/aria-errormessage_aria-invalid_true-manual.html manual core-aam/aria-expanded_false-manual.html +manual core-aam/aria-expanded_not_supported_on_alert-manual.html +manual core-aam/aria-expanded_not_supported_on_banner-manual.html +manual core-aam/aria-expanded_not_supported_on_dialog-manual.html +manual core-aam/aria-expanded_not_supported_on_feed-manual.html +manual core-aam/aria-expanded_not_supported_on_form-manual.html +manual core-aam/aria-expanded_not_supported_on_group-manual.html manual core-aam/aria-expanded_true-manual.html manual core-aam/aria-expanded_true_on_application-manual.html manual core-aam/aria-expanded_true_on_checkbox-manual.html @@ -1158,6 +1521,7 @@ manual core-aam/aria-grabbed_true-manual.html manual core-aam/aria-grabbed_value_changes-manual.html manual core-aam/aria-haspopup_dialog-manual.html manual core-aam/aria-haspopup_false-manual.html +manual core-aam/aria-haspopup_grid-manual.html manual core-aam/aria-haspopup_listbox-manual.html manual core-aam/aria-haspopup_menu-manual.html manual core-aam/aria-haspopup_tree-manual.html @@ -1239,6 +1603,7 @@ manual core-aam/code-manual.html manual core-aam/columnheader-manual.html manual core-aam/combobox-manual.html manual core-aam/combobox-value-calculation-manual.html +manual core-aam/comment-manual.html manual core-aam/complementary-manual.html manual core-aam/contentinfo-manual.html manual core-aam/definition-manual.html @@ -1262,6 +1627,7 @@ manual core-aam/group-manual.html manual core-aam/group_as_child_of_listbox-manual.html manual core-aam/heading-manual.html manual core-aam/heading-no-level-manual.html +manual core-aam/image-manual.html manual core-aam/img-manual.html manual core-aam/include_element_referenced_by_global_aria-controls-manual.html manual core-aam/include_element_referenced_by_global_aria-describedby-manual.html @@ -1281,14 +1647,14 @@ manual core-aam/listbox_owned_by_or_child_of_combobox-manual.html manual core-aam/listitem-manual.html manual core-aam/log-manual.html manual core-aam/main-manual.html +manual core-aam/mark-manual.html manual core-aam/marquee-manual.html manual core-aam/math-manual.html manual core-aam/math_role_children_are_not_presentational-manual.html manual core-aam/menu-manual.html manual core-aam/menu_child_of_menu_item-manual.html manual core-aam/menubar-manual.html -manual core-aam/menuitem_not_owned_by_or_child_of_group-manual.html -manual core-aam/menuitem_owned_by_or_child_of_group-manual.html +manual core-aam/menuitem-manual.html manual core-aam/menuitemcheckbox-manual.html manual core-aam/menuitemcheckbox_child_of_group-manual.html manual core-aam/menuitemradio-manual.html @@ -1320,6 +1686,8 @@ manual core-aam/rowheader-manual.html manual core-aam/scrollbar-manual.html manual core-aam/search-manual.html manual core-aam/searchbox-manual.html +manual core-aam/sectionfooter-manual.html +manual core-aam/sectionheader-manual.html manual core-aam/separator_focusable-manual.html manual core-aam/separator_non-focusable-manual.html manual core-aam/slider-manual.html @@ -1327,6 +1695,7 @@ manual core-aam/spinbutton-manual.html manual core-aam/status-manual.html manual core-aam/strong-manual.html manual core-aam/subscript-manual.html +manual core-aam/suggestion-manual.html manual core-aam/superscript-manual.html manual core-aam/switch-manual.html manual core-aam/tab-manual.html @@ -2120,7 +2489,7 @@ manual css/css-text-decor/text-underline-position-074-manual.html manual css/css-text-decor/text-underline-position-075-manual.html manual css/css-text-decor/text-underline-position-076-manual.html manual css/css-text/text-transform/text-transform-copy-paste-001-manual.html -manual css/css-text/word-boundary/word-boundary-015-manual.html +manual css/css-text/word-space-transform/word-space-transform-015-manual.html manual css/css-transforms/css-transform-scale-001-manual.html manual css/css-transitions/transition-delay-000-manual.html manual css/css-transitions/transition-delay-002-manual.html @@ -2407,9 +2776,10 @@ manual css/css-ui/resize-019.html manual css/css-ui/resize-020.html manual css/css-ui/resize-021.html manual css/css-ui/select-cursor-001-manual.html -manual css/css-ui/text-overflow-017.html manual css/css-ui/text-overflow-018.html manual css/css-ui/text-overflow-019.html +manual css/css-values/absolute-length-units-manual.html +manual css/css-view-transitions/navigation/transition-to-prerender-manual.html manual css/css-writing-modes/alt-display-vertical-001-manual.html manual css/css-writing-modes/background-position-vlr-003.xht manual css/css-writing-modes/background-position-vlr-005.xht @@ -2506,52 +2876,57 @@ manual css/selectors/old-tests/css3-modsel-63.xml manual css/selectors/old-tests/css3-modsel-64.xml manual css/selectors/old-tests/css3-modsel-65.xml manual css/selectors/old-tests/css3-modsel-66.xml -manual dpub-aam/doc-abstract-manual.html -manual dpub-aam/doc-acknowledgments-manual.html -manual dpub-aam/doc-afterword-manual.html -manual dpub-aam/doc-appendix-manual.html -manual dpub-aam/doc-backlink-manual.html -manual dpub-aam/doc-biblioentry-manual.html -manual dpub-aam/doc-bibliography-manual.html -manual dpub-aam/doc-biblioref-manual.html -manual dpub-aam/doc-chapter-manual.html -manual dpub-aam/doc-colophon-manual.html -manual dpub-aam/doc-conclusion-manual.html -manual dpub-aam/doc-cover-manual.html -manual dpub-aam/doc-credit-manual.html -manual dpub-aam/doc-credits-manual.html -manual dpub-aam/doc-dedication-manual.html -manual dpub-aam/doc-endnote-manual.html -manual dpub-aam/doc-endnotes-manual.html -manual dpub-aam/doc-epigraph-manual.html -manual dpub-aam/doc-epilogue-manual.html -manual dpub-aam/doc-errata-manual.html -manual dpub-aam/doc-example-manual.html -manual dpub-aam/doc-footnote-manual.html -manual dpub-aam/doc-foreword-manual.html -manual dpub-aam/doc-glossary-manual.html -manual dpub-aam/doc-glossref-manual.html -manual dpub-aam/doc-index-manual.html -manual dpub-aam/doc-introduction-manual.html -manual dpub-aam/doc-noteref-manual.html -manual dpub-aam/doc-notice-manual.html -manual dpub-aam/doc-pagebreak-manual.html -manual dpub-aam/doc-pagelist-manual.html -manual dpub-aam/doc-part-manual.html -manual dpub-aam/doc-preface-manual.html -manual dpub-aam/doc-prologue-manual.html -manual dpub-aam/doc-pullquote-manual.html -manual dpub-aam/doc-qna-manual.html -manual dpub-aam/doc-subtitle-manual.html -manual dpub-aam/doc-tip-manual.html -manual dpub-aam/doc-toc-manual.html +manual document-picture-in-picture/hide-return-to-opener-button-manual.https.html +manual document-picture-in-picture/prefer-initial-window-placement-manual.https.html +manual dpub-aam/manual/doc-abstract-manual.html +manual dpub-aam/manual/doc-acknowledgments-manual.html +manual dpub-aam/manual/doc-afterword-manual.html +manual dpub-aam/manual/doc-appendix-manual.html +manual dpub-aam/manual/doc-backlink-manual.html +manual dpub-aam/manual/doc-biblioentry-manual.html +manual dpub-aam/manual/doc-bibliography-manual.html +manual dpub-aam/manual/doc-biblioref-manual.html +manual dpub-aam/manual/doc-chapter-manual.html +manual dpub-aam/manual/doc-colophon-manual.html +manual dpub-aam/manual/doc-conclusion-manual.html +manual dpub-aam/manual/doc-cover-manual.html +manual dpub-aam/manual/doc-credit-manual.html +manual dpub-aam/manual/doc-credits-manual.html +manual dpub-aam/manual/doc-dedication-manual.html +manual dpub-aam/manual/doc-endnote-manual.html +manual dpub-aam/manual/doc-endnotes-manual.html +manual dpub-aam/manual/doc-epigraph-manual.html +manual dpub-aam/manual/doc-epilogue-manual.html +manual dpub-aam/manual/doc-errata-manual.html +manual dpub-aam/manual/doc-example-manual.html +manual dpub-aam/manual/doc-footnote-manual.html +manual dpub-aam/manual/doc-foreword-manual.html +manual dpub-aam/manual/doc-glossary-manual.html +manual dpub-aam/manual/doc-glossref-manual.html +manual dpub-aam/manual/doc-index-manual.html +manual dpub-aam/manual/doc-introduction-manual.html +manual dpub-aam/manual/doc-noteref-manual.html +manual dpub-aam/manual/doc-notice-manual.html +manual dpub-aam/manual/doc-pagebreak-manual.html +manual dpub-aam/manual/doc-pagelist-manual.html +manual dpub-aam/manual/doc-part-manual.html +manual dpub-aam/manual/doc-preface-manual.html +manual dpub-aam/manual/doc-prologue-manual.html +manual dpub-aam/manual/doc-pullquote-manual.html +manual dpub-aam/manual/doc-qna-manual.html +manual dpub-aam/manual/doc-subtitle-manual.html +manual dpub-aam/manual/doc-tip-manual.html +manual dpub-aam/manual/doc-toc-manual.html manual dpub-aria/inuse-manual.html +manual editing/manual/contenteditable-insertfromdrop-type-inputevent-data-manual.html manual editing/manual/delete-manual.html manual editing/manual/forwarddelete-manual.html manual editing/manual/insertlinebreak-manual.html manual editing/manual/insertparagraph-manual.html manual editing/manual/inserttext-manual.html manual editing/manual/inserttext2-manual.html +manual editing/manual/textarea-insertfromdrop-type-inputevent-data-manual.html +manual editing/manual/textarea-insertfromdrop-type-inputevent-data-withnewline-manual.html manual entries-api/errors-manual.html manual entries-api/file-webkitRelativePath-manual.html manual entries-api/filesystem-manual.html @@ -2567,6 +2942,7 @@ manual entries-api/filesystemfileentry-attributes-manual.html manual entries-api/filesystemfileentry-file-manual.html manual entries-api/filesystemfileentry-getParent-manual.html manual entries-api/idlharness-manual.window.js +manual event-timing/interactionid-composition-manual.html manual feature-policy/experimental-features/vertical-scroll-disabled-frame-no-scroll-manual.tentative.html manual feature-policy/experimental-features/vertical-scroll-main-frame-manual.tentative.html manual feature-policy/experimental-features/vertical-scroll-touch-action-manual.tentative.html @@ -2602,6 +2978,8 @@ manual file-system-access/showDirectoryPicker-manual.https.html manual file-system-access/showOpenFilePicker-manual.https.html manual file-system-access/showSaveFilePicker-manual.https.html manual gamepad/events-manual.html +manual gamepad/gamepad-dual-rumble-effect-manual.https.html +manual gamepad/gamepad-trigger-rumble-effect-manual.https.html manual gamepad/getgamepads-polling-manual.html manual gamepad/idlharness-manual.html manual gamepad/timestamp-manual.html @@ -2684,14 +3062,19 @@ manual html/browsers/windows/noreferrer-cross-origin-window-name-manual.sub.html manual html/browsers/windows/opener-cross-origin-manual.sub.html manual html/browsers/windows/restore-window-name-manual.https.html manual html/browsers/windows/targeting-multiple-cross-origin-manual.sub.html -manual html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.basic-manual.html -manual html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.large-manual.html -manual html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.rtl-manual.html -manual html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.kern.consistent-manual.html -manual html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.stroke.basic-manual.html +manual html/canvas/element/canvas-host/2d.canvas.host.scaled-manual.html manual html/canvas/element/manual/drawing-paths-to-the-canvas/canvas_focus_drawFocusIfNeeded_AAPI_001-manual.html manual html/canvas/element/shadows/2d.shadow.blur.high-manual.html manual html/canvas/element/shadows/2d.shadow.blur.low-manual.html +manual html/canvas/element/text/2d.text.draw.fill.basic-manual.html +manual html/canvas/element/text/2d.text.draw.fill.maxWidth.large-manual.html +manual html/canvas/element/text/2d.text.draw.fill.rtl-manual.html +manual html/canvas/element/text/2d.text.draw.kern.consistent-manual.html +manual html/canvas/element/text/2d.text.draw.stroke.basic-manual.html +manual html/canvas/offscreen/shadows/2d.shadow.blur.high-manual.html +manual html/canvas/offscreen/shadows/2d.shadow.blur.high-manual.worker.js +manual html/canvas/offscreen/shadows/2d.shadow.blur.low-manual.html +manual html/canvas/offscreen/shadows/2d.shadow.blur.low-manual.worker.js manual html/canvas/offscreen/text/2d.text.draw.fill.basic-manual.html manual html/canvas/offscreen/text/2d.text.draw.fill.basic-manual.worker.js manual html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.large-manual.html @@ -2706,6 +3089,12 @@ manual html/dom/elements/global-attributes/title-manual.html manual html/editing/dnd/canvas/cross-domain/001-manual.xhtml manual html/editing/dnd/cross-document/002-manual.html manual html/editing/dnd/datastore/015-manual.html +manual html/editing/dnd/drop/events-contenteditable-manual.tentative.html +manual html/editing/dnd/drop/events-contenteditable-same-element-manual.tentative.html +manual html/editing/dnd/drop/events-input-manual.tentative.html +manual html/editing/dnd/drop/events-input-same-element-manual.tentative.html +manual html/editing/dnd/drop/events-textarea-manual.tentative.html +manual html/editing/dnd/drop/events-textarea-same-element-manual.tentative.html manual html/editing/dnd/events/drag-event-div-manual.html manual html/editing/dnd/events/drag-event-manual.html manual html/editing/dnd/events/dragend-event-manual.html @@ -2767,6 +3156,7 @@ manual html/editing/dnd/target-origin/117-manual.html manual html/editing/dnd/target-origin/118-manual.html manual html/editing/dnd/target-origin/201-manual.html manual html/editing/dnd/the-datatransfer-interface/DataTransfer-types-manual.html +manual html/editing/dnd/the-datatransfer-interface/dnd-datatransfer-setdragimage-manual.html manual html/editing/dnd/the-datatransfer-interface/dndTransferCases-manual.html manual html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html manual html/editing/dnd/the-datatransfer-interface/files-manual.html @@ -2825,7 +3215,6 @@ manual html/semantics/embedded-content/media-elements/video_muted_overriding_vol manual html/semantics/embedded-content/media-elements/video_muted_present-manual.html manual html/semantics/embedded-content/media-elements/video_volume_loudest-manual.html manual html/semantics/embedded-content/media-elements/video_volume_silent-manual.html -manual html/semantics/embedded-content/the-canvas-element/2d.scaled-manual.html manual html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation_by_user_activation-manual.html manual html/semantics/embedded-content/the-iframe-element/sandbox_003-manual.htm manual html/semantics/embedded-content/the-iframe-element/sandbox_006-manual.htm @@ -2921,17 +3310,14 @@ manual notifications/icon-basic-manual.https.html manual notifications/icon-empty-manual.https.html manual notifications/requestPermission-denied-manual.https.html manual notifications/requestPermission-granted-manual.https.html +manual notifications/requireInteraction-manual.https.html manual notifications/shownotification-resolve-manual.https.html -manual notifications/tag-different-manual.https.html -manual notifications/tag-same-manual.https.html manual orientation-event/motion/free-fall-manual.https.html -manual orientation-event/motion/page-visibility-manual.https.html manual orientation-event/motion/screen-upmost-manual.https.html manual orientation-event/motion/screen-upright-manual.https.html manual orientation-event/motion/t025-manual.https.html manual orientation-event/motion/t028-manual.https.html manual orientation-event/orientation/horizontal-surface-manual.https.html -manual orientation-event/orientation/page-visibility-manual.https.html manual orientation-event/orientation/t006-manual.https.html manual orientation-event/orientation/t009-manual.https.html manual orientation-event/orientation/t010-manual.https.html @@ -2945,8 +3331,20 @@ manual payment-handler/payment-request-event-manual.https.html manual payment-handler/supports-shipping-contact-delegation-manual.https.html manual payment-method-basic-card/billing-address-is-null-manual.https.html manual payment-method-basic-card/empty-data-manual.https.html +manual payment-request/PaymentAddress/attributes-and-toJSON-method-manual.https.html +manual payment-request/PaymentRequestUpdateEvent/updateWith-call-immediate-manual.https.html +manual payment-request/PaymentRequestUpdateEvent/updateWith-duplicate-shipping-options-manual.https.html +manual payment-request/PaymentRequestUpdateEvent/updateWith-incremental-update-manual.https.html +manual payment-request/PaymentRequestUpdateEvent/updateWith-method-abort-update-manual.https.html +manual payment-request/PaymentRequestUpdateEvent/updateWith-state-checks-manual.https.html manual payment-request/PaymentValidationErrors/retry-shows-error-member-manual.https.html manual payment-request/PaymentValidationErrors/retry-shows-payer-member-manual.https.html +manual payment-request/PaymentValidationErrors/retry-shows-shippingAddress-member-manual.https.html +manual payment-request/algorithms-manual.https.html +manual payment-request/billing-address-changed-manual.https.html +manual payment-request/change-shipping-option-manual.https.html +manual payment-request/change-shipping-option-select-last-manual.https.html +manual payment-request/dynamically-change-shipping-options-manual.https.html manual payment-request/payment-request-hasenrolledinstrument-method-manual.tentative.https.html manual payment-request/payment-response/complete-method-manual.https.html manual payment-request/payment-response/methodName-attribute-manual.https.html @@ -2958,17 +3356,36 @@ manual payment-request/payment-response/payerdetailschange-updateWith-immediate- manual payment-request/payment-response/payerdetailschange-updateWith-manual.https.html manual payment-request/payment-response/rejects_if_not_active-manual.https.html manual payment-request/payment-response/requestId-attribute-manual.https.html +manual payment-request/payment-response/retry-method-manual.https.html +manual payment-request/payment-response/retry-method-warnings-manual.https.html +manual payment-request/payment-response/shippingAddress-attribute-manual.https.html +manual payment-request/payment-response/shippingOption-attribute-manual.https.html +manual payment-request/shipping-address-changed-manual.https.html +manual payment-request/show-method-optional-promise-resolves-manual.https.html manual payment-request/show-method-postmessage-manual.https.html +manual payment-request/updateWith-method-pmi-handling-manual.https.html manual payment-request/user-abort-algorithm-manual.https.html +manual payment-request/user-accepts-payment-request-algo-manual.https.html manual permissions-policy/experimental-features/vertical-scroll-disabled-frame-no-scroll-manual.tentative.html manual permissions-policy/experimental-features/vertical-scroll-main-frame-manual.tentative.html manual permissions-policy/experimental-features/vertical-scroll-touch-action-manual.tentative.html manual permissions-policy/experimental-features/vertical-scroll-touch-block-manual.tentative.html manual permissions-policy/experimental-features/vertical-scroll-wheel-block-manual.tentative.html +manual png/apng/manual/acTL-plays-one-manual.html +manual png/apng/manual/acTL-plays-two-manual.html +manual png/apng/manual/acTL-plays-zero-manual.html +manual png/apng/manual/fcTL-delay-16bit-manual.html +manual png/apng/manual/fcTL-delay-basic-manual.html +manual png/apng/manual/fcTL-delay-rounding-manual.html +manual png/apng/manual/fcTL-delay-zero-denom-manual.html +manual png/apng/manual/fcTL-delay-zero-num-manual.html manual pointerevents/html/pointerevent_drag_interaction-manual.html +manual pointerevents/persistentDeviceId/persistentdeviceid-is-unique-manual.tentative.html +manual pointerevents/pointerevent_capture_implicit_release_on_parent_doc_while_subdoc_captures-manual.html +manual pointerevents/pointerevent_capture_implicit_release_on_subdoc_while_parent_doc_captures-manual.html manual pointerevents/pointerevent_multiple_primary_pointers_boundary_events-manual.html manual pointerevents/pointerevent_pointerleave_pen-manual.html -manual pointerevents/pointerevent_predicted_events_attributes-manual.html +manual pointerevents/pointerevent_predicted_coalesced_targets-manual.html manual pointerevents/pointerevent_touch-action-rotated-divs_touch-manual.html manual pointerevents/pointerlock/pointerevent_getPredictedEvents_when_pointerlocked-manual.html manual pointerlock/movementX_Y_no-jumps-manual.html @@ -3002,6 +3419,15 @@ manual presentation-api/receiving-ua/PresentationConnection_terminate-manual.htt manual presentation-api/receiving-ua/PresentationReceiver_create-manual.https.html manual presentation-api/receiving-ua/idlharness-manual.https.html manual quirks/active-and-hover-manual.html +manual remote-playback/event-handlers-manual.html +manual remote-playback/prompt-and-cancel-selection-manual.html +manual remote-playback/prompt-and-select-device-manual.html +manual remote-playback/prompt-and-watch-availability-no-device-manual.html +manual remote-playback/prompt-and-watch-availability-with-device-manual.html +manual remote-playback/remote-video-control-pausing-manual.html +manual remote-playback/remote-video-control-seek-manual.html +manual remote-playback/remote-video-playback-manual.html +manual remote-playback/state-attribute-changes-when-selecting-device-manual.html manual screen-orientation/page-visibility-manual.html manual selection/dir-manual.html manual serial/serialPort_disconnect-manual.https.html @@ -3541,6 +3967,7 @@ manual uievents/interface/dblclick-event-manual.htm manual uievents/keyboard/key-101en-us-manual.html manual uievents/keyboard/key-102fr-fr-manual.html manual uievents/order-of-events/focus-events/legacy-manual.html +manual uievents/textInput/smiley-manual.html manual vibration/cancel-when-hidden-manual.html manual vibration/cancel-with-0-manual.html manual vibration/cancel-with-array-0-manual.html @@ -3563,239 +3990,239 @@ manual visual-viewport/viewport-scale-iframe-manual.html manual visual-viewport/viewport-scale-manual.html manual visual-viewport/viewport-scroll-event-manual.html manual visual-viewport/viewport-url-bar-changes-height-manual.html -manual wai-aria/alertdialog_modal_false-manual.html -manual wai-aria/alertdialog_modal_true-manual.html -manual wai-aria/application_activedescendant-manual.html -manual wai-aria/application_activedescendant_value_changes-manual.html -manual wai-aria/aria-current_not_declared-manual.html -manual wai-aria/aria-current_with_value_changes-manual.html -manual wai-aria/aria-current_with_value_date-manual.html -manual wai-aria/aria-current_with_value_location-manual.html -manual wai-aria/aria-current_with_value_page-manual.html -manual wai-aria/aria-current_with_value_step-manual.html -manual wai-aria/aria-current_with_value_time-manual.html -manual wai-aria/aria-current_with_value_true-manual.html -manual wai-aria/aria-current_with_value_unspecified-manual.html -manual wai-aria/aria-details_pointing_to_details_element-manual.html -manual wai-aria/aria-details_pointing_to_div_element-manual.html -manual wai-aria/article_in_feed_posinset_and_setsize-manual.html -manual wai-aria/article_in_feed_setsize_-1-manual.html -manual wai-aria/article_not_in_feed_posinset_and_setsize-manual.html -manual wai-aria/button_haspopup_dialog-manual.html -manual wai-aria/button_haspopup_emptystring-manual.html -manual wai-aria/button_haspopup_false-manual.html -manual wai-aria/button_haspopup_foo-manual.html -manual wai-aria/button_haspopup_grid-manual.html -manual wai-aria/button_haspopup_listbox-manual.html -manual wai-aria/button_haspopup_menu-manual.html -manual wai-aria/button_haspopup_tree-manual.html -manual wai-aria/button_haspopup_true-manual.html -manual wai-aria/button_haspopup_unspecified-manual.html -manual wai-aria/button_roledescription_empty-manual.html -manual wai-aria/button_roledescription_valid-manual.html -manual wai-aria/button_roledescription_whitespace_only-manual.html -manual wai-aria/cell-manual.html -manual wai-aria/cell_aria-colspan_2_on_div-manual.html -manual wai-aria/cell_aria-colspan_2_on_td_html_colspan_3-manual.html -manual wai-aria/cell_aria-colspan_2_on_td_html_colspan_3_with_headers_and_border-manual.html -manual wai-aria/cell_aria-colspan_2_on_td_html_colspan_3_with_three_actual_columns-manual.html -manual wai-aria/cell_aria-colspan_2_on_td_with_html_colspan_not_specified-manual.html -manual wai-aria/cell_aria-rowspan_2_on_div-manual.html -manual wai-aria/cell_aria-rowspan_2_on_td_html_rowspan_3-manual.html -manual wai-aria/cell_aria-rowspan_2_on_td_html_rowspan_3_with_three_actual_rows-manual.html -manual wai-aria/cell_aria-rowspan_2_on_td_with_html_rowspan_not_specified-manual.html -manual wai-aria/cell_colindex_4-manual.html -manual wai-aria/cell_rowindex_4-manual.html -manual wai-aria/checkbox_readonly_false-manual.html -manual wai-aria/checkbox_readonly_true-manual.html -manual wai-aria/checkbox_readonly_unspecified-manual.html -manual wai-aria/columnheader_aria-colspan_2_on_div-manual.html -manual wai-aria/columnheader_aria-colspan_2_on_th_html_colspan_3-manual.html -manual wai-aria/columnheader_aria-colspan_2_on_th_html_colspan_3_with_three_actual_columns-manual.html -manual wai-aria/columnheader_aria-colspan_2_on_th_with_html_colspan_not_specified-manual.html -manual wai-aria/columnheader_aria-rowspan_2_on_div-manual.html -manual wai-aria/columnheader_aria-rowspan_2_on_th_html_rowspan_3-manual.html -manual wai-aria/columnheader_aria-rowspan_2_on_th_html_rowspan_3_with_three_actual_rows-manual.html -manual wai-aria/columnheader_aria-rowspan_2_on_th_with_html_rowspan_not_specified-manual.html -manual wai-aria/columnheader_colindex_4-manual.html -manual wai-aria/columnheader_rowindex_4-manual.html -manual wai-aria/columnheader_selected_false_not_automatically_propagated-manual.html -manual wai-aria/columnheader_selected_true_not_automatically_propagated-manual.html -manual wai-aria/combobox_controls_an_invalid_id-manual.html -manual wai-aria/combobox_haspopup_dialog-manual.html -manual wai-aria/combobox_haspopup_false-manual.html -manual wai-aria/combobox_haspopup_grid-manual.html -manual wai-aria/combobox_haspopup_listbox-manual.html -manual wai-aria/combobox_haspopup_menu-manual.html -manual wai-aria/combobox_haspopup_tree-manual.html -manual wai-aria/combobox_haspopup_true-manual.html -manual wai-aria/combobox_haspopup_unspecified-manual.html -manual wai-aria/combobox_orientation_horizontal-manual.html -manual wai-aria/combobox_orientation_unspecified-manual.html -manual wai-aria/combobox_orientation_vertical-manual.html -manual wai-aria/combobox_readonly_false-manual.html -manual wai-aria/combobox_readonly_true-manual.html -manual wai-aria/combobox_readonly_unspecified-manual.html -manual wai-aria/dialog_modal_false-manual.html -manual wai-aria/dialog_modal_true-manual.html -manual wai-aria/dialog_modal_unspecified-manual.html -manual wai-aria/div_element_without_role_roledescription_valid-manual.html -manual wai-aria/errormessage_object_in_invalid_state-manual.html -manual wai-aria/errormessage_object_in_valid_state-manual.html -manual wai-aria/feed-manual.html -manual wai-aria/figure-manual.html -manual wai-aria/grid_aria-readonly_false_automatically_propagated-manual.html -manual wai-aria/grid_aria-readonly_true_automatically_propagated-manual.html -manual wai-aria/grid_busy_false-manual.html -manual wai-aria/grid_busy_true-manual.html -manual wai-aria/grid_busy_value_changes-manual.html -manual wai-aria/grid_colcount_8-manual.html -manual wai-aria/grid_columnheader_readonly_false-manual.html -manual wai-aria/grid_columnheader_readonly_true-manual.html -manual wai-aria/grid_columnheader_readonly_unspecified-manual.html -manual wai-aria/grid_columnheader_required_false-manual.html -manual wai-aria/grid_columnheader_required_true-manual.html -manual wai-aria/grid_columnheader_required_unspecified-manual.html -manual wai-aria/grid_rowcount_3-manual.html -manual wai-aria/grid_rowheader_readonly_false-manual.html -manual wai-aria/grid_rowheader_readonly_true-manual.html -manual wai-aria/grid_rowheader_readonly_unspecified-manual.html -manual wai-aria/grid_rowheader_required_false-manual.html -manual wai-aria/grid_rowheader_required_true-manual.html -manual wai-aria/grid_rowheader_required_unspecified-manual.html -manual wai-aria/gridcell_aria-colspan_2_on_div-manual.html -manual wai-aria/gridcell_aria-rowspan_2_on_div-manual.html -manual wai-aria/gridcell_colindex_4-manual.html -manual wai-aria/gridcell_rowindex_4-manual.html -manual wai-aria/group_hidden_undefined_element_not_rendered-manual.html -manual wai-aria/group_hidden_undefined_element_rendered-manual.html -manual wai-aria/heading_level_unspecified-manual.html -manual wai-aria/keyshortcuts_multiple_shortcuts-manual.html -manual wai-aria/keyshortcuts_one_shortcut-manual.html -manual wai-aria/listbox_busy_false-manual.html -manual wai-aria/listbox_busy_true-manual.html -manual wai-aria/listbox_orientation_horizontal-manual.html -manual wai-aria/listbox_orientation_unspecified-manual.html -manual wai-aria/listbox_orientation_vertical-manual.html -manual wai-aria/listbox_readonly_false-manual.html -manual wai-aria/listbox_readonly_true-manual.html -manual wai-aria/listbox_readonly_unspecified-manual.html -manual wai-aria/listitem_setsize_-1-manual.html -manual wai-aria/menu_orientation_horizontal-manual.html -manual wai-aria/menu_orientation_unspecified-manual.html -manual wai-aria/menu_orientation_vertical-manual.html -manual wai-aria/menubar_busy_false-manual.html -manual wai-aria/menubar_busy_true-manual.html -manual wai-aria/menubar_orientation_horizontal-manual.html -manual wai-aria/menubar_orientation_unspecified-manual.html -manual wai-aria/menubar_orientation_vertical-manual.html -manual wai-aria/menuitem_expanded_false-manual.html -manual wai-aria/menuitem_expanded_true-manual.html -manual wai-aria/menuitem_posinset_and_setsize-manual.html -manual wai-aria/menuitemcheckbox_expanded_false-manual.html -manual wai-aria/menuitemcheckbox_expanded_true-manual.html -manual wai-aria/menuitemcheckbox_posinset_and_setsize-manual.html -manual wai-aria/menuitemcheckbox_readonly_false-manual.html -manual wai-aria/menuitemcheckbox_readonly_true-manual.html -manual wai-aria/menuitemcheckbox_readonly_unspecified-manual.html -manual wai-aria/menuitemradio_expanded_false-manual.html -manual wai-aria/menuitemradio_expanded_true-manual.html -manual wai-aria/menuitemradio_posinset_and_setsize-manual.html -manual wai-aria/menuitemradio_readonly_false-manual.html -manual wai-aria/menuitemradio_readonly_true-manual.html -manual wai-aria/menuitemradio_readonly_unspecified-manual.html -manual wai-aria/none-manual.html -manual wai-aria/option_selected_false-manual.html -manual wai-aria/option_selected_true-manual.html -manual wai-aria/option_selected_undefined-manual.html -manual wai-aria/option_selected_value_changes-manual.html -manual wai-aria/radiogroup_orientation_horizontal-manual.html -manual wai-aria/radiogroup_orientation_unspecified-manual.html -manual wai-aria/radiogroup_orientation_vertical-manual.html -manual wai-aria/radiogroup_readonly_false-manual.html -manual wai-aria/radiogroup_readonly_true-manual.html -manual wai-aria/radiogroup_readonly_unspecified-manual.html -manual wai-aria/region_with_name-manual.html -manual wai-aria/region_without_name-manual.html -manual wai-aria/row_colindex_4-manual.html -manual wai-aria/row_rowindex_4-manual.html -manual wai-aria/rowheader_aria-colspan_2_on_div-manual.html -manual wai-aria/rowheader_aria-rowspan_2_on_div-manual.html -manual wai-aria/rowheader_colindex_4-manual.html -manual wai-aria/rowheader_rowindex_4-manual.html -manual wai-aria/rowheader_selected_false_not_automatically_propagated-manual.html -manual wai-aria/rowheader_selected_true_not_automatically_propagated-manual.html -manual wai-aria/scrollbar_all_values_unspecified-manual.html -manual wai-aria/scrollbar_only_valuenow_unspecified-manual.html -manual wai-aria/scrollbar_orientation_unspecified-manual.html -manual wai-aria/searchbox-manual.html -manual wai-aria/searchbox_activedescendant-manual.html -manual wai-aria/searchbox_activedescendant_value_changes-manual.html -manual wai-aria/searchbox_autocomplete_both-manual.html -manual wai-aria/searchbox_autocomplete_inline-manual.html -manual wai-aria/searchbox_autocomplete_list-manual.html -manual wai-aria/searchbox_autocomplete_none-manual.html -manual wai-aria/searchbox_autocomplete_unspecified-manual.html -manual wai-aria/searchbox_multiline_false-manual.html -manual wai-aria/searchbox_multiline_true-manual.html -manual wai-aria/searchbox_multiline_unspecified-manual.html -manual wai-aria/searchbox_placeholder-manual.html -manual wai-aria/searchbox_readonly_false-manual.html -manual wai-aria/searchbox_readonly_true-manual.html -manual wai-aria/searchbox_readonly_unspecified-manual.html -manual wai-aria/searchbox_required_false-manual.html -manual wai-aria/searchbox_required_true-manual.html -manual wai-aria/searchbox_required_unspecified-manual.html -manual wai-aria/separator_focusable_all_values_unspecified-manual.html -manual wai-aria/separator_focusable_only_valuenow_unspecified-manual.html -manual wai-aria/separator_focusable_valuetext-manual.html -manual wai-aria/separator_orientation_unspecified-manual.html -manual wai-aria/separator_unfocusable_all_values_unspecified-manual.html -manual wai-aria/separator_unfocusable_valuetext-manual.html -manual wai-aria/slider_all_values_unspecified-manual.html -manual wai-aria/slider_only_valuenow_unspecified-manual.html -manual wai-aria/slider_orientation_unspecified-manual.html -manual wai-aria/slider_readonly_false-manual.html -manual wai-aria/slider_readonly_true-manual.html -manual wai-aria/slider_readonly_unspecified-manual.html -manual wai-aria/spinbutton_all_values_unspecified-manual.html -manual wai-aria/spinbutton_only_aria-valuenow_unspecified-manual.html -manual wai-aria/spinbutton_readonly_false-manual.html -manual wai-aria/spinbutton_readonly_true-manual.html -manual wai-aria/spinbutton_readonly_unspecified-manual.html -manual wai-aria/switch_checked_false-manual.html -manual wai-aria/switch_checked_mixed-manual.html -manual wai-aria/switch_checked_true-manual.html -manual wai-aria/switch_checked_undefined-manual.html -manual wai-aria/switch_checked_value_changes-manual.html -manual wai-aria/switch_readonly_false-manual.html -manual wai-aria/switch_readonly_true-manual.html -manual wai-aria/switch_readonly_unspecified-manual.html -manual wai-aria/tab_posinset_and_setsize-manual.html -manual wai-aria/table_colcount_-1-manual.html -manual wai-aria/table_colcount_8-manual.html -manual wai-aria/table_rowcount_-1-manual.html -manual wai-aria/table_rowcount_3-manual.html -manual wai-aria/tablist_orientation_horizontal-manual.html -manual wai-aria/tablist_orientation_unspecified-manual.html -manual wai-aria/tablist_orientation_vertical-manual.html -manual wai-aria/term_role-manual.html -manual wai-aria/textbox_placeholder-manual.html -manual wai-aria/toolbar_orientation_horizontal-manual.html -manual wai-aria/toolbar_orientation_unspecified-manual.html -manual wai-aria/toolbar_orientation_vertical-manual.html -manual wai-aria/tree_orientation_horizontal-manual.html -manual wai-aria/tree_orientation_unspecified-manual.html -manual wai-aria/tree_orientation_vertical-manual.html -manual wai-aria/treegrid_colcount_8-manual.html -manual wai-aria/treegrid_orientation_horizontal-manual.html -manual wai-aria/treegrid_orientation_unspecified-manual.html -manual wai-aria/treegrid_orientation_vertical-manual.html -manual wai-aria/treegrid_rowcount_3-manual.html -manual wai-aria/treeitem_selected_false-manual.html -manual wai-aria/treeitem_selected_true-manual.html -manual wai-aria/treeitem_selected_undefined-manual.html -manual wai-aria/treeitem_selected_value_changes-manual.html +manual wai-aria/manual/alertdialog_modal_false-manual.html +manual wai-aria/manual/alertdialog_modal_true-manual.html +manual wai-aria/manual/application_activedescendant-manual.html +manual wai-aria/manual/application_activedescendant_value_changes-manual.html +manual wai-aria/manual/aria-current_not_declared-manual.html +manual wai-aria/manual/aria-current_with_value_changes-manual.html +manual wai-aria/manual/aria-current_with_value_date-manual.html +manual wai-aria/manual/aria-current_with_value_location-manual.html +manual wai-aria/manual/aria-current_with_value_page-manual.html +manual wai-aria/manual/aria-current_with_value_step-manual.html +manual wai-aria/manual/aria-current_with_value_time-manual.html +manual wai-aria/manual/aria-current_with_value_true-manual.html +manual wai-aria/manual/aria-current_with_value_unspecified-manual.html +manual wai-aria/manual/aria-details_pointing_to_details_element-manual.html +manual wai-aria/manual/aria-details_pointing_to_div_element-manual.html +manual wai-aria/manual/article_in_feed_posinset_and_setsize-manual.html +manual wai-aria/manual/article_in_feed_setsize_-1-manual.html +manual wai-aria/manual/article_not_in_feed_posinset_and_setsize-manual.html +manual wai-aria/manual/button_haspopup_dialog-manual.html +manual wai-aria/manual/button_haspopup_emptystring-manual.html +manual wai-aria/manual/button_haspopup_false-manual.html +manual wai-aria/manual/button_haspopup_foo-manual.html +manual wai-aria/manual/button_haspopup_grid-manual.html +manual wai-aria/manual/button_haspopup_listbox-manual.html +manual wai-aria/manual/button_haspopup_menu-manual.html +manual wai-aria/manual/button_haspopup_tree-manual.html +manual wai-aria/manual/button_haspopup_true-manual.html +manual wai-aria/manual/button_haspopup_unspecified-manual.html +manual wai-aria/manual/button_roledescription_empty-manual.html +manual wai-aria/manual/button_roledescription_valid-manual.html +manual wai-aria/manual/button_roledescription_whitespace_only-manual.html +manual wai-aria/manual/cell-manual.html +manual wai-aria/manual/cell_aria-colspan_2_on_div-manual.html +manual wai-aria/manual/cell_aria-colspan_2_on_td_html_colspan_3-manual.html +manual wai-aria/manual/cell_aria-colspan_2_on_td_html_colspan_3_with_headers_and_border-manual.html +manual wai-aria/manual/cell_aria-colspan_2_on_td_html_colspan_3_with_three_actual_columns-manual.html +manual wai-aria/manual/cell_aria-colspan_2_on_td_with_html_colspan_not_specified-manual.html +manual wai-aria/manual/cell_aria-rowspan_2_on_div-manual.html +manual wai-aria/manual/cell_aria-rowspan_2_on_td_html_rowspan_3-manual.html +manual wai-aria/manual/cell_aria-rowspan_2_on_td_html_rowspan_3_with_three_actual_rows-manual.html +manual wai-aria/manual/cell_aria-rowspan_2_on_td_with_html_rowspan_not_specified-manual.html +manual wai-aria/manual/cell_colindex_4-manual.html +manual wai-aria/manual/cell_rowindex_4-manual.html +manual wai-aria/manual/checkbox_readonly_false-manual.html +manual wai-aria/manual/checkbox_readonly_true-manual.html +manual wai-aria/manual/checkbox_readonly_unspecified-manual.html +manual wai-aria/manual/columnheader_aria-colspan_2_on_div-manual.html +manual wai-aria/manual/columnheader_aria-colspan_2_on_th_html_colspan_3-manual.html +manual wai-aria/manual/columnheader_aria-colspan_2_on_th_html_colspan_3_with_three_actual_columns-manual.html +manual wai-aria/manual/columnheader_aria-colspan_2_on_th_with_html_colspan_not_specified-manual.html +manual wai-aria/manual/columnheader_aria-rowspan_2_on_div-manual.html +manual wai-aria/manual/columnheader_aria-rowspan_2_on_th_html_rowspan_3-manual.html +manual wai-aria/manual/columnheader_aria-rowspan_2_on_th_html_rowspan_3_with_three_actual_rows-manual.html +manual wai-aria/manual/columnheader_aria-rowspan_2_on_th_with_html_rowspan_not_specified-manual.html +manual wai-aria/manual/columnheader_colindex_4-manual.html +manual wai-aria/manual/columnheader_rowindex_4-manual.html +manual wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html +manual wai-aria/manual/columnheader_selected_true_not_automatically_propagated-manual.html +manual wai-aria/manual/combobox_controls_an_invalid_id-manual.html +manual wai-aria/manual/combobox_haspopup_dialog-manual.html +manual wai-aria/manual/combobox_haspopup_false-manual.html +manual wai-aria/manual/combobox_haspopup_grid-manual.html +manual wai-aria/manual/combobox_haspopup_listbox-manual.html +manual wai-aria/manual/combobox_haspopup_menu-manual.html +manual wai-aria/manual/combobox_haspopup_tree-manual.html +manual wai-aria/manual/combobox_haspopup_true-manual.html +manual wai-aria/manual/combobox_haspopup_unspecified-manual.html +manual wai-aria/manual/combobox_orientation_horizontal-manual.html +manual wai-aria/manual/combobox_orientation_unspecified-manual.html +manual wai-aria/manual/combobox_orientation_vertical-manual.html +manual wai-aria/manual/combobox_readonly_false-manual.html +manual wai-aria/manual/combobox_readonly_true-manual.html +manual wai-aria/manual/combobox_readonly_unspecified-manual.html +manual wai-aria/manual/dialog_modal_false-manual.html +manual wai-aria/manual/dialog_modal_true-manual.html +manual wai-aria/manual/dialog_modal_unspecified-manual.html +manual wai-aria/manual/div_element_without_role_roledescription_valid-manual.html +manual wai-aria/manual/errormessage_object_in_invalid_state-manual.html +manual wai-aria/manual/errormessage_object_in_valid_state-manual.html +manual wai-aria/manual/feed-manual.html +manual wai-aria/manual/figure-manual.html +manual wai-aria/manual/grid_aria-readonly_false_automatically_propagated-manual.html +manual wai-aria/manual/grid_aria-readonly_true_automatically_propagated-manual.html +manual wai-aria/manual/grid_busy_false-manual.html +manual wai-aria/manual/grid_busy_true-manual.html +manual wai-aria/manual/grid_busy_value_changes-manual.html +manual wai-aria/manual/grid_colcount_8-manual.html +manual wai-aria/manual/grid_columnheader_readonly_false-manual.html +manual wai-aria/manual/grid_columnheader_readonly_true-manual.html +manual wai-aria/manual/grid_columnheader_readonly_unspecified-manual.html +manual wai-aria/manual/grid_columnheader_required_false-manual.html +manual wai-aria/manual/grid_columnheader_required_true-manual.html +manual wai-aria/manual/grid_columnheader_required_unspecified-manual.html +manual wai-aria/manual/grid_rowcount_3-manual.html +manual wai-aria/manual/grid_rowheader_readonly_false-manual.html +manual wai-aria/manual/grid_rowheader_readonly_true-manual.html +manual wai-aria/manual/grid_rowheader_readonly_unspecified-manual.html +manual wai-aria/manual/grid_rowheader_required_false-manual.html +manual wai-aria/manual/grid_rowheader_required_true-manual.html +manual wai-aria/manual/grid_rowheader_required_unspecified-manual.html +manual wai-aria/manual/gridcell_aria-colspan_2_on_div-manual.html +manual wai-aria/manual/gridcell_aria-rowspan_2_on_div-manual.html +manual wai-aria/manual/gridcell_colindex_4-manual.html +manual wai-aria/manual/gridcell_rowindex_4-manual.html +manual wai-aria/manual/group_hidden_undefined_element_not_rendered-manual.html +manual wai-aria/manual/group_hidden_undefined_element_rendered-manual.html +manual wai-aria/manual/heading_level_unspecified-manual.html +manual wai-aria/manual/keyshortcuts_multiple_shortcuts-manual.html +manual wai-aria/manual/keyshortcuts_one_shortcut-manual.html +manual wai-aria/manual/listbox_busy_false-manual.html +manual wai-aria/manual/listbox_busy_true-manual.html +manual wai-aria/manual/listbox_orientation_horizontal-manual.html +manual wai-aria/manual/listbox_orientation_unspecified-manual.html +manual wai-aria/manual/listbox_orientation_vertical-manual.html +manual wai-aria/manual/listbox_readonly_false-manual.html +manual wai-aria/manual/listbox_readonly_true-manual.html +manual wai-aria/manual/listbox_readonly_unspecified-manual.html +manual wai-aria/manual/listitem_setsize_-1-manual.html +manual wai-aria/manual/menu_orientation_horizontal-manual.html +manual wai-aria/manual/menu_orientation_unspecified-manual.html +manual wai-aria/manual/menu_orientation_vertical-manual.html +manual wai-aria/manual/menubar_busy_false-manual.html +manual wai-aria/manual/menubar_busy_true-manual.html +manual wai-aria/manual/menubar_orientation_horizontal-manual.html +manual wai-aria/manual/menubar_orientation_unspecified-manual.html +manual wai-aria/manual/menubar_orientation_vertical-manual.html +manual wai-aria/manual/menuitem_expanded_false-manual.html +manual wai-aria/manual/menuitem_expanded_true-manual.html +manual wai-aria/manual/menuitem_posinset_and_setsize-manual.html +manual wai-aria/manual/menuitemcheckbox_expanded_false-manual.html +manual wai-aria/manual/menuitemcheckbox_expanded_true-manual.html +manual wai-aria/manual/menuitemcheckbox_posinset_and_setsize-manual.html +manual wai-aria/manual/menuitemcheckbox_readonly_false-manual.html +manual wai-aria/manual/menuitemcheckbox_readonly_true-manual.html +manual wai-aria/manual/menuitemcheckbox_readonly_unspecified-manual.html +manual wai-aria/manual/menuitemradio_expanded_false-manual.html +manual wai-aria/manual/menuitemradio_expanded_true-manual.html +manual wai-aria/manual/menuitemradio_posinset_and_setsize-manual.html +manual wai-aria/manual/menuitemradio_readonly_false-manual.html +manual wai-aria/manual/menuitemradio_readonly_true-manual.html +manual wai-aria/manual/menuitemradio_readonly_unspecified-manual.html +manual wai-aria/manual/none-manual.html +manual wai-aria/manual/option_selected_false-manual.html +manual wai-aria/manual/option_selected_true-manual.html +manual wai-aria/manual/option_selected_undefined-manual.html +manual wai-aria/manual/option_selected_value_changes-manual.html +manual wai-aria/manual/radiogroup_orientation_horizontal-manual.html +manual wai-aria/manual/radiogroup_orientation_unspecified-manual.html +manual wai-aria/manual/radiogroup_orientation_vertical-manual.html +manual wai-aria/manual/radiogroup_readonly_false-manual.html +manual wai-aria/manual/radiogroup_readonly_true-manual.html +manual wai-aria/manual/radiogroup_readonly_unspecified-manual.html +manual wai-aria/manual/region_with_name-manual.html +manual wai-aria/manual/region_without_name-manual.html +manual wai-aria/manual/row_colindex_4-manual.html +manual wai-aria/manual/row_rowindex_4-manual.html +manual wai-aria/manual/rowheader_aria-colspan_2_on_div-manual.html +manual wai-aria/manual/rowheader_aria-rowspan_2_on_div-manual.html +manual wai-aria/manual/rowheader_colindex_4-manual.html +manual wai-aria/manual/rowheader_rowindex_4-manual.html +manual wai-aria/manual/rowheader_selected_false_not_automatically_propagated-manual.html +manual wai-aria/manual/rowheader_selected_true_not_automatically_propagated-manual.html +manual wai-aria/manual/scrollbar_all_values_unspecified-manual.html +manual wai-aria/manual/scrollbar_only_valuenow_unspecified-manual.html +manual wai-aria/manual/scrollbar_orientation_unspecified-manual.html +manual wai-aria/manual/searchbox-manual.html +manual wai-aria/manual/searchbox_activedescendant-manual.html +manual wai-aria/manual/searchbox_activedescendant_value_changes-manual.html +manual wai-aria/manual/searchbox_autocomplete_both-manual.html +manual wai-aria/manual/searchbox_autocomplete_inline-manual.html +manual wai-aria/manual/searchbox_autocomplete_list-manual.html +manual wai-aria/manual/searchbox_autocomplete_none-manual.html +manual wai-aria/manual/searchbox_autocomplete_unspecified-manual.html +manual wai-aria/manual/searchbox_multiline_false-manual.html +manual wai-aria/manual/searchbox_multiline_true-manual.html +manual wai-aria/manual/searchbox_multiline_unspecified-manual.html +manual wai-aria/manual/searchbox_placeholder-manual.html +manual wai-aria/manual/searchbox_readonly_false-manual.html +manual wai-aria/manual/searchbox_readonly_true-manual.html +manual wai-aria/manual/searchbox_readonly_unspecified-manual.html +manual wai-aria/manual/searchbox_required_false-manual.html +manual wai-aria/manual/searchbox_required_true-manual.html +manual wai-aria/manual/searchbox_required_unspecified-manual.html +manual wai-aria/manual/separator_focusable_all_values_unspecified-manual.html +manual wai-aria/manual/separator_focusable_only_valuenow_unspecified-manual.html +manual wai-aria/manual/separator_focusable_valuetext-manual.html +manual wai-aria/manual/separator_orientation_unspecified-manual.html +manual wai-aria/manual/separator_unfocusable_all_values_unspecified-manual.html +manual wai-aria/manual/separator_unfocusable_valuetext-manual.html +manual wai-aria/manual/slider_all_values_unspecified-manual.html +manual wai-aria/manual/slider_only_valuenow_unspecified-manual.html +manual wai-aria/manual/slider_orientation_unspecified-manual.html +manual wai-aria/manual/slider_readonly_false-manual.html +manual wai-aria/manual/slider_readonly_true-manual.html +manual wai-aria/manual/slider_readonly_unspecified-manual.html +manual wai-aria/manual/spinbutton_all_values_unspecified-manual.html +manual wai-aria/manual/spinbutton_only_aria-valuenow_unspecified-manual.html +manual wai-aria/manual/spinbutton_readonly_false-manual.html +manual wai-aria/manual/spinbutton_readonly_true-manual.html +manual wai-aria/manual/spinbutton_readonly_unspecified-manual.html +manual wai-aria/manual/switch_checked_false-manual.html +manual wai-aria/manual/switch_checked_mixed-manual.html +manual wai-aria/manual/switch_checked_true-manual.html +manual wai-aria/manual/switch_checked_undefined-manual.html +manual wai-aria/manual/switch_checked_value_changes-manual.html +manual wai-aria/manual/switch_readonly_false-manual.html +manual wai-aria/manual/switch_readonly_true-manual.html +manual wai-aria/manual/switch_readonly_unspecified-manual.html +manual wai-aria/manual/tab_posinset_and_setsize-manual.html +manual wai-aria/manual/table_colcount_-1-manual.html +manual wai-aria/manual/table_colcount_8-manual.html +manual wai-aria/manual/table_rowcount_-1-manual.html +manual wai-aria/manual/table_rowcount_3-manual.html +manual wai-aria/manual/tablist_orientation_horizontal-manual.html +manual wai-aria/manual/tablist_orientation_unspecified-manual.html +manual wai-aria/manual/tablist_orientation_vertical-manual.html +manual wai-aria/manual/term_role-manual.html +manual wai-aria/manual/textbox_placeholder-manual.html +manual wai-aria/manual/toolbar_orientation_horizontal-manual.html +manual wai-aria/manual/toolbar_orientation_unspecified-manual.html +manual wai-aria/manual/toolbar_orientation_vertical-manual.html +manual wai-aria/manual/tree_orientation_horizontal-manual.html +manual wai-aria/manual/tree_orientation_unspecified-manual.html +manual wai-aria/manual/tree_orientation_vertical-manual.html +manual wai-aria/manual/treegrid_colcount_8-manual.html +manual wai-aria/manual/treegrid_orientation_horizontal-manual.html +manual wai-aria/manual/treegrid_orientation_unspecified-manual.html +manual wai-aria/manual/treegrid_orientation_vertical-manual.html +manual wai-aria/manual/treegrid_rowcount_3-manual.html +manual wai-aria/manual/treeitem_selected_false-manual.html +manual wai-aria/manual/treeitem_selected_true-manual.html +manual wai-aria/manual/treeitem_selected_undefined-manual.html +manual wai-aria/manual/treeitem_selected_value_changes-manual.html manual web-nfc/NDEFReader-make-read-only-document-hidden-manual.https.html manual web-nfc/NDEFReader-read-document-hidden-manual.https.html manual web-nfc/NDEFReader-write-document-hidden-manual.https.html @@ -3823,8 +4250,6 @@ manual webusb/usbDevice_controlTransferIn-manual.https.html manual webusb/usbDevice_forget-manual.https.html manual webusb/usbDevice_reset-manual.https.html manual webusb/usbDevice_transferIn-manual.https.html -manual window-placement/fullscreen-companion-window-manual.tentative.https.html -manual window-placement/multi-screen-fullscreen-manual.tentative.https.html manual xhr/send-authentication-existing-session-manual.htm manual xhr/send-authentication-prompt-2-manual.htm manual xhr/send-authentication-prompt-manual.htm @@ -3872,37 +4297,272 @@ print-reftest css/CSS2/pagination/table-page-break-inside-avoid-6-print.html print-reftest css/CSS2/pagination/table-page-break-inside-avoid-7-print.html print-reftest css/CSS2/pagination/table-page-break-inside-avoid-8-print.html print-reftest css/css-break/abspos-in-clipped-overflow-print.html +print-reftest css/css-break/abspos-overflow-hidden-001-print.html print-reftest css/css-break/block-001-wm-vlr-print.html print-reftest css/css-break/block-001-wm-vrl-print.html print-reftest css/css-break/block-002-wm-vlr-print.html print-reftest css/css-break/block-002-wm-vrl-print.html +print-reftest css/css-break/break-inside-avoid-multicol-001-print.html +print-reftest css/css-break/break-inside-avoid-multicol-iframe-crash-print.html print-reftest css/css-break/break-nested-float-in-table-001-print.html -print-reftest css/css-break/fixedpos-001-print.html -print-reftest css/css-break/fixedpos-002-print.html -print-reftest css/css-break/fixedpos-003-print.html -print-reftest css/css-break/fixedpos-004-print.html -print-reftest css/css-break/fixedpos-005-print.html -print-reftest css/css-break/fixedpos-006-print.html -print-reftest css/css-break/fixedpos-007-print.html -print-reftest css/css-break/fixedpos-008-print.html -print-reftest css/css-break/fixedpos-with-link-with-inline-child-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-063-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-064-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-075-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-076-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-080-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-081a-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-081b-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-081c-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-081d-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-082a-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-082b-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-082c-print.html +print-reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-082d-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-060-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-065-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-066-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-068a-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-068b-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-068c-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-068d-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-069a-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-069b-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-069c-print.html +print-reftest css/css-break/flexbox/single-line-column-flex-fragmentation-069d-print.html +print-reftest css/css-break/flexbox/single-line-row-flex-fragmentation-042-print.html +print-reftest css/css-break/flexbox/single-line-row-flex-fragmentation-045-print.html +print-reftest css/css-break/flexbox/single-line-row-flex-fragmentation-046-print.html print-reftest css/css-break/float-with-large-margin-bottom-cross-page-001-print.html print-reftest css/css-break/float-with-large-margin-bottom-cross-page-002-print.html +print-reftest css/css-break/grid/monolithic-overflow-print.html print-reftest css/css-break/ink-overflow-001-print.html print-reftest css/css-break/overflowed-abs-pos-with-percentage-height-print.html +print-reftest css/css-break/overflowing-block-002-print.html print-reftest css/css-break/overflowing-block-print.html +print-reftest css/css-break/table/repeated-section/fixedpos-in-footer-forced-break-print.html +print-reftest css/css-break/table/table-fragmentation-001a-print.html +print-reftest css/css-break/table/table-fragmentation-001b-print.html +print-reftest css/css-break/table/table-fragmentation-001c-print.html +print-reftest css/css-break/table/table-fragmentation-001d-print.html +print-reftest css/css-break/table/table-fragmentation-002a-print.html +print-reftest css/css-break/table/table-fragmentation-002b-print.html +print-reftest css/css-break/table/table-fragmentation-002c-print.html +print-reftest css/css-break/table/table-fragmentation-002d-print.html +print-reftest css/css-break/table/table-fragmentation-003a-print.html +print-reftest css/css-break/table/table-fragmentation-003b-print.html +print-reftest css/css-break/table/table-fragmentation-003c-print.html +print-reftest css/css-break/table/table-fragmentation-003d-print.html +print-reftest css/css-break/transform-022-print.html +print-reftest css/css-break/transform-023-print.html +print-reftest css/css-break/transform-024-print.html print-reftest css/css-break/underflow-from-next-page-print.html +print-reftest css/css-break/zero-height-page-break-001-print.html +print-reftest css/css-contain/content-visibility/content-visibility-auto-print.html print-reftest css/css-flexbox/break-nested-float-in-flex-item-001-print.html print-reftest css/css-flexbox/break-nested-float-in-flex-item-002-print.html print-reftest css/css-flexbox/inline-flexbox-vertical-rl-image-flexitem-crash-print.html print-reftest css/css-fonts/downloadable-font-in-iframe-print.html print-reftest css/css-fonts/downloadable-font-print.html +print-reftest css/css-grid/grid-fragmentation-between-rows-001-print.tentative.html print-reftest css/css-multicol/auto-fill-auto-size-001-print.html print-reftest css/css-multicol/auto-fill-auto-size-002-print.html print-reftest css/css-multicol/column-balancing-paged-001-print.html print-reftest css/css-multicol/multicol-height-002-print.xht +print-reftest css/css-page/background-image-only-for-print.html +print-reftest css/css-page/fixedpos-001-print.html +print-reftest css/css-page/fixedpos-002-print.html +print-reftest css/css-page/fixedpos-003-print.html +print-reftest css/css-page/fixedpos-004-print.html +print-reftest css/css-page/fixedpos-005-print.html +print-reftest css/css-page/fixedpos-006-print.html +print-reftest css/css-page/fixedpos-007-print.html +print-reftest css/css-page/fixedpos-008-print.html +print-reftest css/css-page/fixedpos-009-print.html +print-reftest css/css-page/fixedpos-010-print.html +print-reftest css/css-page/fixedpos-with-abspos-with-link-print.html +print-reftest css/css-page/fixedpos-with-iframe-print.html +print-reftest css/css-page/fixedpos-with-link-with-inline-child-print.html +print-reftest css/css-page/layers-001-print.html +print-reftest css/css-page/layers-002-print.html +print-reftest css/css-page/layers-003-print.html +print-reftest css/css-page/layers-004-print.html +print-reftest css/css-page/margin-boxes/alignment-001-print.html +print-reftest css/css-page/margin-boxes/auto-margins-001-print.html +print-reftest css/css-page/margin-boxes/auto-margins-002-print.html +print-reftest css/css-page/margin-boxes/auto-margins-003-print.html +print-reftest css/css-page/margin-boxes/background-001-print.html +print-reftest css/css-page/margin-boxes/content-001-print.html +print-reftest css/css-page/margin-boxes/content-002-print.html +print-reftest css/css-page/margin-boxes/content-003-print.html +print-reftest css/css-page/margin-boxes/content-004-print.html +print-reftest css/css-page/margin-boxes/content-005-print.html +print-reftest css/css-page/margin-boxes/content-006-print.html +print-reftest css/css-page/margin-boxes/dimensions-001-print.html +print-reftest css/css-page/margin-boxes/dimensions-002-print.html +print-reftest css/css-page/margin-boxes/dimensions-003-print.html +print-reftest css/css-page/margin-boxes/dimensions-004-print.html +print-reftest css/css-page/margin-boxes/dimensions-005-print.html +print-reftest css/css-page/margin-boxes/dimensions-006-print.html +print-reftest css/css-page/margin-boxes/dimensions-007-print.html +print-reftest css/css-page/margin-boxes/dimensions-008-print.html +print-reftest css/css-page/margin-boxes/dimensions-009-print.html +print-reftest css/css-page/margin-boxes/dimensions-010-print.html +print-reftest css/css-page/margin-boxes/dimensions-011-print.html +print-reftest css/css-page/margin-boxes/dimensions-012-print.html +print-reftest css/css-page/margin-boxes/dimensions-013-print.html +print-reftest css/css-page/margin-boxes/dimensions-014-print.html +print-reftest css/css-page/margin-boxes/inapplicable-properties-print.html +print-reftest css/css-page/margin-boxes/overconstrained-001-print.html +print-reftest css/css-page/margin-boxes/paint-order-001-print.html +print-reftest css/css-page/media-queries-001-print.html +print-reftest css/css-page/media-queries-002-print.html +print-reftest css/css-page/media-queries-003-print.html +print-reftest css/css-page/monolithic-overflow-001-print.html +print-reftest css/css-page/monolithic-overflow-002-print.html +print-reftest css/css-page/monolithic-overflow-003-print.html +print-reftest css/css-page/monolithic-overflow-004-print.html +print-reftest css/css-page/monolithic-overflow-005-print.html +print-reftest css/css-page/monolithic-overflow-006-print.html +print-reftest css/css-page/monolithic-overflow-007-print.html +print-reftest css/css-page/monolithic-overflow-008-print.html +print-reftest css/css-page/monolithic-overflow-009-print.html +print-reftest css/css-page/monolithic-overflow-010-print.html +print-reftest css/css-page/monolithic-overflow-011-print.html +print-reftest css/css-page/monolithic-overflow-012-print.html +print-reftest css/css-page/monolithic-overflow-013-print.html +print-reftest css/css-page/monolithic-overflow-014-print.html +print-reftest css/css-page/monolithic-overflow-015-print.html +print-reftest css/css-page/monolithic-overflow-016-print.html +print-reftest css/css-page/monolithic-overflow-017-print.html +print-reftest css/css-page/monolithic-overflow-018-print.html +print-reftest css/css-page/monolithic-overflow-019-print.html +print-reftest css/css-page/monolithic-overflow-020-print.html +print-reftest css/css-page/monolithic-overflow-021-print.html +print-reftest css/css-page/monolithic-overflow-022-print.html +print-reftest css/css-page/monolithic-overflow-023-print.html +print-reftest css/css-page/monolithic-overflow-024-print.html +print-reftest css/css-page/monolithic-overflow-025-print.html +print-reftest css/css-page/monolithic-overflow-026-print.html +print-reftest css/css-page/monolithic-overflow-027-print.html +print-reftest css/css-page/monolithic-overflow-028-print.html +print-reftest css/css-page/monolithic-overflow-029-print.html +print-reftest css/css-page/monolithic-overflow-030-print.html +print-reftest css/css-page/monolithic-overflow-031-print.html +print-reftest css/css-page/monolithic-overflow-032-print.tentative.html +print-reftest css/css-page/page-background-001-print.html +print-reftest css/css-page/page-background-002-print.html +print-reftest css/css-page/page-background-003-print.html +print-reftest css/css-page/page-background-image-print.html +print-reftest css/css-page/page-box-000-print.html +print-reftest css/css-page/page-box-001-print.html +print-reftest css/css-page/page-box-002-print.html +print-reftest css/css-page/page-box-003-print.html +print-reftest css/css-page/page-box-004-print.html +print-reftest css/css-page/page-box-005-print.html +print-reftest css/css-page/page-box-006-print.html +print-reftest css/css-page/page-box-007-print.html +print-reftest css/css-page/page-box-008-print.html +print-reftest css/css-page/page-box-009-print.html +print-reftest css/css-page/page-box-010-print.html +print-reftest css/css-page/page-left-right-001-print.html +print-reftest css/css-page/page-left-right-002-print.html +print-reftest css/css-page/page-margin-001-print.html +print-reftest css/css-page/page-margin-002-print.html +print-reftest css/css-page/page-margin-003-print.html +print-reftest css/css-page/page-margin-004-print.html +print-reftest css/css-page/page-margin-005-print.html +print-reftest css/css-page/page-margin-006-print.html +print-reftest css/css-page/page-margin-007-print.html +print-reftest css/css-page/page-margin-auto-and-non-zero-print.html +print-reftest css/css-page/page-margin-auto-negative-print.tentative.html +print-reftest css/css-page/page-margin-auto-print.html +print-reftest css/css-page/page-margin-negative-print.tentative.html +print-reftest css/css-page/page-name-000-print.html +print-reftest css/css-page/page-name-001-print.html +print-reftest css/css-page/page-name-002-print.html +print-reftest css/css-page/page-name-003-print.html +print-reftest css/css-page/page-name-abspos-001-print.html +print-reftest css/css-page/page-name-abspos-002-print.html +print-reftest css/css-page/page-name-abspos-003-print.html +print-reftest css/css-page/page-name-and-break-001-print.html +print-reftest css/css-page/page-name-and-break-002-print.html +print-reftest css/css-page/page-name-and-break-003-print.html +print-reftest css/css-page/page-name-and-break-004-print.html +print-reftest css/css-page/page-name-canvas-001-print.html +print-reftest css/css-page/page-name-canvas-002-print.html +print-reftest css/css-page/page-name-canvas-003-print.html +print-reftest css/css-page/page-name-canvas-004-print.html +print-reftest css/css-page/page-name-display-none-child-print.html +print-reftest css/css-page/page-name-fixed-pos-001-print.html +print-reftest css/css-page/page-name-flex-001-print.html +print-reftest css/css-page/page-name-flex-002-print.html +print-reftest css/css-page/page-name-flex-003-print.html +print-reftest css/css-page/page-name-flex-004-print.html +print-reftest css/css-page/page-name-float-001-print.html +print-reftest css/css-page/page-name-float-002-print.html +print-reftest css/css-page/page-name-img-001-print.html +print-reftest css/css-page/page-name-img-002-print.html +print-reftest css/css-page/page-name-img-003-print.html +print-reftest css/css-page/page-name-img-004-print.html +print-reftest css/css-page/page-name-inline-block-001-print.html +print-reftest css/css-page/page-name-inline-block-002-print.html +print-reftest css/css-page/page-name-inline-block-003-print.html +print-reftest css/css-page/page-name-margin-001-print.html +print-reftest css/css-page/page-name-margin-002-print.html +print-reftest css/css-page/page-name-orthogonal-writing-001-print.html +print-reftest css/css-page/page-name-orthogonal-writing-002-print.html +print-reftest css/css-page/page-name-orthogonal-writing-003-print.html +print-reftest css/css-page/page-name-orthogonal-writing-004-print.html +print-reftest css/css-page/page-name-propagated-001-print.html +print-reftest css/css-page/page-name-propagated-002-print.html +print-reftest css/css-page/page-name-propagated-003-print.html +print-reftest css/css-page/page-name-propagated-004-print.html +print-reftest css/css-page/page-name-propagated-005-print.html +print-reftest css/css-page/page-name-propagated-006-print.html +print-reftest css/css-page/page-name-propagated-007-print.html +print-reftest css/css-page/page-name-propagated-008-print.html +print-reftest css/css-page/page-name-propagated-009-print.html +print-reftest css/css-page/page-name-siblings-001-print.html +print-reftest css/css-page/page-name-siblings-002-print.html +print-reftest css/css-page/page-name-siblings-003-print.html +print-reftest css/css-page/page-name-siblings-004-print.html +print-reftest css/css-page/page-name-siblings-005-print.html +print-reftest css/css-page/page-name-unnamed-trailing-001-print.html +print-reftest css/css-page/page-name-zero-height-001-print.html +print-reftest css/css-page/page-orientation-on-landscape-001-print.html +print-reftest css/css-page/page-orientation-on-portrait-001-print.html +print-reftest css/css-page/page-orientation-on-portrait-002-print.html +print-reftest css/css-page/page-orientation-on-portrait-003-print.html +print-reftest css/css-page/page-orientation-on-square-001-print.html +print-reftest css/css-page/page-rule-specificity-001-print.html +print-reftest css/css-page/page-rule-specificity-002-print.html +print-reftest css/css-page/page-rule-specificity-003-print.html +print-reftest css/css-page/page-size-001-print.html +print-reftest css/css-page/page-size-002-print.html +print-reftest css/css-page/page-size-003-print.html +print-reftest css/css-page/page-size-004-print.html +print-reftest css/css-page/page-size-005-print.html +print-reftest css/css-page/page-size-006-print.html +print-reftest css/css-page/page-size-007-print.html +print-reftest css/css-page/page-size-008-print.html +print-reftest css/css-page/page-size-009-print.html +print-reftest css/css-page/page-size-010-print.html +print-reftest css/css-page/page-size-011-print.html +print-reftest css/css-page/page-size-012-print.html +print-reftest css/css-page/page-size-013-print.html +print-reftest css/css-page/page-size-014-print.html +print-reftest css/css-page/page-visibility-hidden-001-print.html +print-reftest css/css-page/pseudo-first-margin-001-print.html +print-reftest css/css-page/pseudo-first-margin-002-print.html +print-reftest css/css-page/pseudo-first-margin-003-print.html +print-reftest css/css-page/pseudo-first-margin-004-print.html +print-reftest css/css-page/remote-origin-iframe-print.html +print-reftest css/css-page/root-element-display-none-print.html +print-reftest css/css-page/subpixel-page-size-001-print.html +print-reftest css/css-page/subpixel-page-size-002-print.html print-reftest css/css-position/position-fixed-overflow-print.html print-reftest css/css-position/position-fixed-video-controls-print.html +print-reftest css/css-position/sticky/position-sticky-offset-print.html print-reftest css/css-tables/tfoot-crash-print.html print-reftest css/css-values/viewport-units-001-print.html print-reftest css/printing/animated-image-print.html @@ -3914,10 +4574,16 @@ print-reftest css/printing/existing-transition-in-media-print.tentative.html print-reftest css/printing/fragmented-inline-block-001-print.html print-reftest css/printing/fragmented-inline-block-002-print.html print-reftest css/printing/input-file-print.html +print-reftest css/printing/negative-overflow-print.html +print-reftest css/printing/no-resize-event-print.html print-reftest css/printing/page-overflow-crash-print.html print-reftest css/printing/paused-animations-print.html print-reftest css/printing/pseudo-animations-print.html +print-reftest css/printing/table-overflow-quirks-frameset-crash-print.html print-reftest css/printing/transition-in-media-print.tentative.html +print-reftest css/printing/zero-size-001-print.tentative.html +print-reftest css/printing/zero-size-002-print.tentative.html +print-reftest css/printing/zero-size-003-print.tentative.html print-reftest custom-elements/pseudo-class-defined-print.html print-reftest html/browsers/windows/iframe-cross-origin-print.sub.html print-reftest html/browsers/windows/iframe-cross-origin-scaled-print.sub.html @@ -3933,17 +4599,26 @@ print-reftest html/rendering/the-details-element/details-page-break-before-2-pri print-reftest html/rendering/widgets/input-date-baseline-print.html print-reftest html/semantics/embedded-content/the-img-element/image-srcdoc-relative-uri-print.html print-reftest html/semantics/embedded-content/the-img-element/responsive-image-select-print.html +print-reftest html/semantics/embedded-content/the-object-element/object-image-display-none-loading-for-print.html +print-reftest html/semantics/embedded-content/the-object-element/object-image-only-for-print.html +print-reftest html/semantics/embedded-content/the-object-element/object-svg-only-for-print.html print-reftest infrastructure/reftest/reftest_match-print.html print-reftest infrastructure/reftest/reftest_match_fail-print.html print-reftest infrastructure/reftest/reftest_mismatch-num-pages-print.html print-reftest infrastructure/reftest/reftest_mismatch-print.html print-reftest infrastructure/reftest/reftest_mismatch_fail-print.html print-reftest infrastructure/reftest/reftest_mismatch_page_margins-print.html +print-reftest infrastructure/reftest/reftest_wait_0-print.html print-reftest scroll-animations/css/printing/animation-timeline-none-with-progress-print.tentative.html print-reftest scroll-animations/css/printing/scroll-timeline-default-iframe-print.html print-reftest scroll-animations/css/printing/scroll-timeline-default-print.tentative.html print-reftest scroll-animations/css/printing/scroll-timeline-specified-scroller-print.html print-reftest selection/selection-shadow-dom-crash-print.html +print-reftest svg/layout/svg-use-symbol-animateMotion-print.html +print-reftest svg/layout/svg-use-symbol-animateTransform-print.html +print-reftest svg/layout/svg-use-symbol-opacity-print.html +print-reftest svg/layout/svg-use-symbol-path-print.html +print-reftest svg/layout/svg-use-symbol-width-2-print.html print-reftest svg/layout/svg-use-symbol-width-print.html print-reftest svg/painting/reftests/mask-print.svg print-reftest svg/print/svg-use-page-break-crash-print.html @@ -3993,7 +4668,7 @@ reftest content-dpr/image-pseudo-element-content-dpr.html reftest content-dpr/image-with-content-dpr-and-explicit-dimensions.html reftest content-dpr/tiled-background-image-with-content-dpr.html reftest content-dpr/tiled-background-svg-image-with-content-dpr.html -reftest contenteditable/synthetic-height.tentative.html +reftest contenteditable/synthetic-height.html reftest css/CSS2/abspos/abspos-containing-block-initial-001.xht reftest css/CSS2/abspos/abspos-containing-block-initial-004a.xht reftest css/CSS2/abspos/abspos-containing-block-initial-004b.xht @@ -4014,6 +4689,8 @@ reftest css/CSS2/abspos/between-float-and-text.html reftest css/CSS2/abspos/hypothetical-box-dynamic.html reftest css/CSS2/abspos/hypothetical-inline-alone-on-second-line.html reftest css/CSS2/abspos/remove-block-between-inline-and-abspos.html +reftest css/CSS2/abspos/static-fixed-inside-abspos.html +reftest css/CSS2/abspos/static-inside-inline-block.html reftest css/CSS2/abspos/static-inside-table-cell.html reftest css/CSS2/abspos/table-caption-is-containing-block-001.html reftest css/CSS2/abspos/table-caption-passes-abspos-up-001.html @@ -4153,151 +4830,7 @@ reftest css/CSS2/backgrounds/background-bg-pos-204.xht reftest css/CSS2/backgrounds/background-bg-pos-206.xht reftest css/CSS2/backgrounds/background-bg-pos-208.xht reftest css/CSS2/backgrounds/background-body-001.xht -reftest css/CSS2/backgrounds/background-color-001.xht -reftest css/CSS2/backgrounds/background-color-002.xht -reftest css/CSS2/backgrounds/background-color-003.xht -reftest css/CSS2/backgrounds/background-color-004.xht -reftest css/CSS2/backgrounds/background-color-005.xht -reftest css/CSS2/backgrounds/background-color-006.xht -reftest css/CSS2/backgrounds/background-color-007.xht -reftest css/CSS2/backgrounds/background-color-008.xht -reftest css/CSS2/backgrounds/background-color-009.xht -reftest css/CSS2/backgrounds/background-color-010.xht -reftest css/CSS2/backgrounds/background-color-011.xht -reftest css/CSS2/backgrounds/background-color-012.xht -reftest css/CSS2/backgrounds/background-color-013.xht -reftest css/CSS2/backgrounds/background-color-014.xht -reftest css/CSS2/backgrounds/background-color-015.xht -reftest css/CSS2/backgrounds/background-color-016.xht -reftest css/CSS2/backgrounds/background-color-017.xht -reftest css/CSS2/backgrounds/background-color-018.xht -reftest css/CSS2/backgrounds/background-color-019.xht -reftest css/CSS2/backgrounds/background-color-020.xht -reftest css/CSS2/backgrounds/background-color-021.xht -reftest css/CSS2/backgrounds/background-color-022.xht -reftest css/CSS2/backgrounds/background-color-023.xht -reftest css/CSS2/backgrounds/background-color-024.xht -reftest css/CSS2/backgrounds/background-color-025.xht -reftest css/CSS2/backgrounds/background-color-026.xht -reftest css/CSS2/backgrounds/background-color-027.xht -reftest css/CSS2/backgrounds/background-color-028.xht -reftest css/CSS2/backgrounds/background-color-029.xht -reftest css/CSS2/backgrounds/background-color-030.xht -reftest css/CSS2/backgrounds/background-color-031.xht -reftest css/CSS2/backgrounds/background-color-032.xht -reftest css/CSS2/backgrounds/background-color-033.xht -reftest css/CSS2/backgrounds/background-color-034.xht -reftest css/CSS2/backgrounds/background-color-035.xht -reftest css/CSS2/backgrounds/background-color-036.xht -reftest css/CSS2/backgrounds/background-color-037.xht -reftest css/CSS2/backgrounds/background-color-038.xht -reftest css/CSS2/backgrounds/background-color-039.xht -reftest css/CSS2/backgrounds/background-color-040.xht -reftest css/CSS2/backgrounds/background-color-041.xht -reftest css/CSS2/backgrounds/background-color-042.xht -reftest css/CSS2/backgrounds/background-color-043.xht -reftest css/CSS2/backgrounds/background-color-044.xht -reftest css/CSS2/backgrounds/background-color-045.xht -reftest css/CSS2/backgrounds/background-color-046.xht -reftest css/CSS2/backgrounds/background-color-047.xht -reftest css/CSS2/backgrounds/background-color-048.xht -reftest css/CSS2/backgrounds/background-color-049.xht -reftest css/CSS2/backgrounds/background-color-050.xht -reftest css/CSS2/backgrounds/background-color-051.xht -reftest css/CSS2/backgrounds/background-color-052.xht -reftest css/CSS2/backgrounds/background-color-053.xht -reftest css/CSS2/backgrounds/background-color-054.xht -reftest css/CSS2/backgrounds/background-color-055.xht -reftest css/CSS2/backgrounds/background-color-056.xht -reftest css/CSS2/backgrounds/background-color-057.xht -reftest css/CSS2/backgrounds/background-color-058.xht -reftest css/CSS2/backgrounds/background-color-059.xht -reftest css/CSS2/backgrounds/background-color-060.xht -reftest css/CSS2/backgrounds/background-color-061.xht -reftest css/CSS2/backgrounds/background-color-062.xht -reftest css/CSS2/backgrounds/background-color-063.xht -reftest css/CSS2/backgrounds/background-color-064.xht -reftest css/CSS2/backgrounds/background-color-065.xht -reftest css/CSS2/backgrounds/background-color-066.xht -reftest css/CSS2/backgrounds/background-color-067.xht -reftest css/CSS2/backgrounds/background-color-068.xht -reftest css/CSS2/backgrounds/background-color-069.xht -reftest css/CSS2/backgrounds/background-color-070.xht -reftest css/CSS2/backgrounds/background-color-071.xht -reftest css/CSS2/backgrounds/background-color-072.xht -reftest css/CSS2/backgrounds/background-color-073.xht -reftest css/CSS2/backgrounds/background-color-074.xht -reftest css/CSS2/backgrounds/background-color-075.xht -reftest css/CSS2/backgrounds/background-color-076.xht -reftest css/CSS2/backgrounds/background-color-077.xht -reftest css/CSS2/backgrounds/background-color-078.xht -reftest css/CSS2/backgrounds/background-color-079.xht -reftest css/CSS2/backgrounds/background-color-080.xht -reftest css/CSS2/backgrounds/background-color-081.xht -reftest css/CSS2/backgrounds/background-color-082.xht -reftest css/CSS2/backgrounds/background-color-083.xht -reftest css/CSS2/backgrounds/background-color-084.xht -reftest css/CSS2/backgrounds/background-color-085.xht -reftest css/CSS2/backgrounds/background-color-086.xht -reftest css/CSS2/backgrounds/background-color-087.xht -reftest css/CSS2/backgrounds/background-color-088.xht -reftest css/CSS2/backgrounds/background-color-089.xht -reftest css/CSS2/backgrounds/background-color-090.xht -reftest css/CSS2/backgrounds/background-color-091.xht -reftest css/CSS2/backgrounds/background-color-092.xht -reftest css/CSS2/backgrounds/background-color-093.xht -reftest css/CSS2/backgrounds/background-color-094.xht -reftest css/CSS2/backgrounds/background-color-095.xht -reftest css/CSS2/backgrounds/background-color-096.xht -reftest css/CSS2/backgrounds/background-color-097.xht -reftest css/CSS2/backgrounds/background-color-098.xht -reftest css/CSS2/backgrounds/background-color-099.xht -reftest css/CSS2/backgrounds/background-color-100.xht -reftest css/CSS2/backgrounds/background-color-101.xht -reftest css/CSS2/backgrounds/background-color-102.xht -reftest css/CSS2/backgrounds/background-color-103.xht -reftest css/CSS2/backgrounds/background-color-104.xht -reftest css/CSS2/backgrounds/background-color-105.xht -reftest css/CSS2/backgrounds/background-color-106.xht -reftest css/CSS2/backgrounds/background-color-107.xht -reftest css/CSS2/backgrounds/background-color-108.xht -reftest css/CSS2/backgrounds/background-color-109.xht -reftest css/CSS2/backgrounds/background-color-110.xht -reftest css/CSS2/backgrounds/background-color-111.xht -reftest css/CSS2/backgrounds/background-color-112.xht -reftest css/CSS2/backgrounds/background-color-113.xht -reftest css/CSS2/backgrounds/background-color-114.xht -reftest css/CSS2/backgrounds/background-color-115.xht -reftest css/CSS2/backgrounds/background-color-116.xht -reftest css/CSS2/backgrounds/background-color-117.xht -reftest css/CSS2/backgrounds/background-color-118.xht -reftest css/CSS2/backgrounds/background-color-119.xht -reftest css/CSS2/backgrounds/background-color-120.xht -reftest css/CSS2/backgrounds/background-color-121.xht -reftest css/CSS2/backgrounds/background-color-122.xht -reftest css/CSS2/backgrounds/background-color-123.xht -reftest css/CSS2/backgrounds/background-color-124.xht -reftest css/CSS2/backgrounds/background-color-125.xht -reftest css/CSS2/backgrounds/background-color-126.xht -reftest css/CSS2/backgrounds/background-color-127.xht -reftest css/CSS2/backgrounds/background-color-128.xht reftest css/CSS2/backgrounds/background-color-129.xht -reftest css/CSS2/backgrounds/background-color-130.xht -reftest css/CSS2/backgrounds/background-color-131.xht -reftest css/CSS2/backgrounds/background-color-132.xht -reftest css/CSS2/backgrounds/background-color-133.xht -reftest css/CSS2/backgrounds/background-color-134.xht -reftest css/CSS2/backgrounds/background-color-135.xht -reftest css/CSS2/backgrounds/background-color-136.xht -reftest css/CSS2/backgrounds/background-color-137.xht -reftest css/CSS2/backgrounds/background-color-138.xht -reftest css/CSS2/backgrounds/background-color-139.xht -reftest css/CSS2/backgrounds/background-color-140.xht -reftest css/CSS2/backgrounds/background-color-141.xht -reftest css/CSS2/backgrounds/background-color-142.xht -reftest css/CSS2/backgrounds/background-color-143.xht -reftest css/CSS2/backgrounds/background-color-144.xht -reftest css/CSS2/backgrounds/background-color-145.xht reftest css/CSS2/backgrounds/background-color-174.xht reftest css/CSS2/backgrounds/background-color-175.xht reftest css/CSS2/backgrounds/background-color-applies-to-001.xht @@ -4644,151 +5177,7 @@ reftest css/CSS2/borders/border-bottom-applies-to-012.xht reftest css/CSS2/borders/border-bottom-applies-to-013.xht reftest css/CSS2/borders/border-bottom-applies-to-014.xht reftest css/CSS2/borders/border-bottom-applies-to-015.xht -reftest css/CSS2/borders/border-bottom-color-001.xht -reftest css/CSS2/borders/border-bottom-color-002.xht -reftest css/CSS2/borders/border-bottom-color-003.xht -reftest css/CSS2/borders/border-bottom-color-004.xht -reftest css/CSS2/borders/border-bottom-color-005.xht -reftest css/CSS2/borders/border-bottom-color-006.xht -reftest css/CSS2/borders/border-bottom-color-007.xht -reftest css/CSS2/borders/border-bottom-color-008.xht -reftest css/CSS2/borders/border-bottom-color-009.xht -reftest css/CSS2/borders/border-bottom-color-010.xht -reftest css/CSS2/borders/border-bottom-color-011.xht -reftest css/CSS2/borders/border-bottom-color-012.xht -reftest css/CSS2/borders/border-bottom-color-013.xht -reftest css/CSS2/borders/border-bottom-color-014.xht -reftest css/CSS2/borders/border-bottom-color-015.xht -reftest css/CSS2/borders/border-bottom-color-016.xht -reftest css/CSS2/borders/border-bottom-color-017.xht -reftest css/CSS2/borders/border-bottom-color-018.xht -reftest css/CSS2/borders/border-bottom-color-019.xht -reftest css/CSS2/borders/border-bottom-color-020.xht -reftest css/CSS2/borders/border-bottom-color-021.xht -reftest css/CSS2/borders/border-bottom-color-022.xht -reftest css/CSS2/borders/border-bottom-color-023.xht -reftest css/CSS2/borders/border-bottom-color-024.xht -reftest css/CSS2/borders/border-bottom-color-025.xht -reftest css/CSS2/borders/border-bottom-color-026.xht -reftest css/CSS2/borders/border-bottom-color-027.xht -reftest css/CSS2/borders/border-bottom-color-028.xht -reftest css/CSS2/borders/border-bottom-color-029.xht -reftest css/CSS2/borders/border-bottom-color-030.xht -reftest css/CSS2/borders/border-bottom-color-031.xht -reftest css/CSS2/borders/border-bottom-color-032.xht -reftest css/CSS2/borders/border-bottom-color-033.xht -reftest css/CSS2/borders/border-bottom-color-034.xht -reftest css/CSS2/borders/border-bottom-color-035.xht -reftest css/CSS2/borders/border-bottom-color-036.xht -reftest css/CSS2/borders/border-bottom-color-037.xht -reftest css/CSS2/borders/border-bottom-color-038.xht -reftest css/CSS2/borders/border-bottom-color-039.xht -reftest css/CSS2/borders/border-bottom-color-040.xht -reftest css/CSS2/borders/border-bottom-color-041.xht -reftest css/CSS2/borders/border-bottom-color-042.xht -reftest css/CSS2/borders/border-bottom-color-043.xht -reftest css/CSS2/borders/border-bottom-color-044.xht -reftest css/CSS2/borders/border-bottom-color-045.xht -reftest css/CSS2/borders/border-bottom-color-046.xht -reftest css/CSS2/borders/border-bottom-color-047.xht -reftest css/CSS2/borders/border-bottom-color-048.xht -reftest css/CSS2/borders/border-bottom-color-049.xht -reftest css/CSS2/borders/border-bottom-color-050.xht -reftest css/CSS2/borders/border-bottom-color-051.xht -reftest css/CSS2/borders/border-bottom-color-052.xht -reftest css/CSS2/borders/border-bottom-color-053.xht -reftest css/CSS2/borders/border-bottom-color-054.xht -reftest css/CSS2/borders/border-bottom-color-055.xht -reftest css/CSS2/borders/border-bottom-color-056.xht -reftest css/CSS2/borders/border-bottom-color-057.xht -reftest css/CSS2/borders/border-bottom-color-058.xht -reftest css/CSS2/borders/border-bottom-color-059.xht -reftest css/CSS2/borders/border-bottom-color-060.xht -reftest css/CSS2/borders/border-bottom-color-061.xht -reftest css/CSS2/borders/border-bottom-color-062.xht -reftest css/CSS2/borders/border-bottom-color-063.xht -reftest css/CSS2/borders/border-bottom-color-064.xht -reftest css/CSS2/borders/border-bottom-color-065.xht -reftest css/CSS2/borders/border-bottom-color-066.xht -reftest css/CSS2/borders/border-bottom-color-067.xht -reftest css/CSS2/borders/border-bottom-color-068.xht -reftest css/CSS2/borders/border-bottom-color-069.xht -reftest css/CSS2/borders/border-bottom-color-070.xht -reftest css/CSS2/borders/border-bottom-color-071.xht -reftest css/CSS2/borders/border-bottom-color-072.xht -reftest css/CSS2/borders/border-bottom-color-073.xht -reftest css/CSS2/borders/border-bottom-color-074.xht -reftest css/CSS2/borders/border-bottom-color-075.xht -reftest css/CSS2/borders/border-bottom-color-076.xht -reftest css/CSS2/borders/border-bottom-color-077.xht -reftest css/CSS2/borders/border-bottom-color-078.xht -reftest css/CSS2/borders/border-bottom-color-079.xht -reftest css/CSS2/borders/border-bottom-color-080.xht -reftest css/CSS2/borders/border-bottom-color-081.xht -reftest css/CSS2/borders/border-bottom-color-082.xht -reftest css/CSS2/borders/border-bottom-color-083.xht -reftest css/CSS2/borders/border-bottom-color-084.xht -reftest css/CSS2/borders/border-bottom-color-085.xht -reftest css/CSS2/borders/border-bottom-color-086.xht -reftest css/CSS2/borders/border-bottom-color-087.xht -reftest css/CSS2/borders/border-bottom-color-088.xht -reftest css/CSS2/borders/border-bottom-color-089.xht -reftest css/CSS2/borders/border-bottom-color-090.xht -reftest css/CSS2/borders/border-bottom-color-091.xht -reftest css/CSS2/borders/border-bottom-color-092.xht -reftest css/CSS2/borders/border-bottom-color-093.xht -reftest css/CSS2/borders/border-bottom-color-094.xht -reftest css/CSS2/borders/border-bottom-color-095.xht -reftest css/CSS2/borders/border-bottom-color-096.xht -reftest css/CSS2/borders/border-bottom-color-097.xht -reftest css/CSS2/borders/border-bottom-color-098.xht -reftest css/CSS2/borders/border-bottom-color-099.xht -reftest css/CSS2/borders/border-bottom-color-100.xht -reftest css/CSS2/borders/border-bottom-color-101.xht -reftest css/CSS2/borders/border-bottom-color-102.xht -reftest css/CSS2/borders/border-bottom-color-103.xht -reftest css/CSS2/borders/border-bottom-color-104.xht -reftest css/CSS2/borders/border-bottom-color-105.xht -reftest css/CSS2/borders/border-bottom-color-106.xht -reftest css/CSS2/borders/border-bottom-color-107.xht -reftest css/CSS2/borders/border-bottom-color-108.xht -reftest css/CSS2/borders/border-bottom-color-109.xht -reftest css/CSS2/borders/border-bottom-color-110.xht -reftest css/CSS2/borders/border-bottom-color-111.xht -reftest css/CSS2/borders/border-bottom-color-112.xht -reftest css/CSS2/borders/border-bottom-color-113.xht -reftest css/CSS2/borders/border-bottom-color-114.xht -reftest css/CSS2/borders/border-bottom-color-115.xht -reftest css/CSS2/borders/border-bottom-color-116.xht -reftest css/CSS2/borders/border-bottom-color-117.xht -reftest css/CSS2/borders/border-bottom-color-118.xht -reftest css/CSS2/borders/border-bottom-color-119.xht -reftest css/CSS2/borders/border-bottom-color-120.xht -reftest css/CSS2/borders/border-bottom-color-121.xht -reftest css/CSS2/borders/border-bottom-color-122.xht -reftest css/CSS2/borders/border-bottom-color-123.xht -reftest css/CSS2/borders/border-bottom-color-124.xht -reftest css/CSS2/borders/border-bottom-color-125.xht -reftest css/CSS2/borders/border-bottom-color-126.xht -reftest css/CSS2/borders/border-bottom-color-127.xht -reftest css/CSS2/borders/border-bottom-color-128.xht reftest css/CSS2/borders/border-bottom-color-129.xht -reftest css/CSS2/borders/border-bottom-color-130.xht -reftest css/CSS2/borders/border-bottom-color-131.xht -reftest css/CSS2/borders/border-bottom-color-132.xht -reftest css/CSS2/borders/border-bottom-color-133.xht -reftest css/CSS2/borders/border-bottom-color-134.xht -reftest css/CSS2/borders/border-bottom-color-135.xht -reftest css/CSS2/borders/border-bottom-color-136.xht -reftest css/CSS2/borders/border-bottom-color-137.xht -reftest css/CSS2/borders/border-bottom-color-138.xht -reftest css/CSS2/borders/border-bottom-color-139.xht -reftest css/CSS2/borders/border-bottom-color-140.xht -reftest css/CSS2/borders/border-bottom-color-141.xht -reftest css/CSS2/borders/border-bottom-color-142.xht -reftest css/CSS2/borders/border-bottom-color-143.xht -reftest css/CSS2/borders/border-bottom-color-144.xht -reftest css/CSS2/borders/border-bottom-color-145.xht reftest css/CSS2/borders/border-bottom-color-174.xht reftest css/CSS2/borders/border-bottom-color-175.xht reftest css/CSS2/borders/border-bottom-color-applies-to-001.xht @@ -4920,151 +5309,7 @@ reftest css/CSS2/borders/border-left-applies-to-012.xht reftest css/CSS2/borders/border-left-applies-to-013.xht reftest css/CSS2/borders/border-left-applies-to-014.xht reftest css/CSS2/borders/border-left-applies-to-015.xht -reftest css/CSS2/borders/border-left-color-001.xht -reftest css/CSS2/borders/border-left-color-002.xht -reftest css/CSS2/borders/border-left-color-003.xht -reftest css/CSS2/borders/border-left-color-004.xht -reftest css/CSS2/borders/border-left-color-005.xht -reftest css/CSS2/borders/border-left-color-006.xht -reftest css/CSS2/borders/border-left-color-007.xht -reftest css/CSS2/borders/border-left-color-008.xht -reftest css/CSS2/borders/border-left-color-009.xht -reftest css/CSS2/borders/border-left-color-010.xht -reftest css/CSS2/borders/border-left-color-011.xht -reftest css/CSS2/borders/border-left-color-012.xht -reftest css/CSS2/borders/border-left-color-013.xht -reftest css/CSS2/borders/border-left-color-014.xht -reftest css/CSS2/borders/border-left-color-015.xht -reftest css/CSS2/borders/border-left-color-016.xht -reftest css/CSS2/borders/border-left-color-017.xht -reftest css/CSS2/borders/border-left-color-018.xht -reftest css/CSS2/borders/border-left-color-019.xht -reftest css/CSS2/borders/border-left-color-020.xht -reftest css/CSS2/borders/border-left-color-021.xht -reftest css/CSS2/borders/border-left-color-022.xht -reftest css/CSS2/borders/border-left-color-023.xht -reftest css/CSS2/borders/border-left-color-024.xht -reftest css/CSS2/borders/border-left-color-025.xht -reftest css/CSS2/borders/border-left-color-026.xht -reftest css/CSS2/borders/border-left-color-027.xht -reftest css/CSS2/borders/border-left-color-028.xht -reftest css/CSS2/borders/border-left-color-029.xht -reftest css/CSS2/borders/border-left-color-030.xht -reftest css/CSS2/borders/border-left-color-031.xht -reftest css/CSS2/borders/border-left-color-032.xht -reftest css/CSS2/borders/border-left-color-033.xht -reftest css/CSS2/borders/border-left-color-034.xht -reftest css/CSS2/borders/border-left-color-035.xht -reftest css/CSS2/borders/border-left-color-036.xht -reftest css/CSS2/borders/border-left-color-037.xht -reftest css/CSS2/borders/border-left-color-038.xht -reftest css/CSS2/borders/border-left-color-039.xht -reftest css/CSS2/borders/border-left-color-040.xht -reftest css/CSS2/borders/border-left-color-041.xht -reftest css/CSS2/borders/border-left-color-042.xht -reftest css/CSS2/borders/border-left-color-043.xht -reftest css/CSS2/borders/border-left-color-044.xht -reftest css/CSS2/borders/border-left-color-045.xht -reftest css/CSS2/borders/border-left-color-046.xht -reftest css/CSS2/borders/border-left-color-047.xht -reftest css/CSS2/borders/border-left-color-048.xht -reftest css/CSS2/borders/border-left-color-049.xht -reftest css/CSS2/borders/border-left-color-050.xht -reftest css/CSS2/borders/border-left-color-051.xht -reftest css/CSS2/borders/border-left-color-052.xht -reftest css/CSS2/borders/border-left-color-053.xht -reftest css/CSS2/borders/border-left-color-054.xht -reftest css/CSS2/borders/border-left-color-055.xht -reftest css/CSS2/borders/border-left-color-056.xht -reftest css/CSS2/borders/border-left-color-057.xht -reftest css/CSS2/borders/border-left-color-058.xht -reftest css/CSS2/borders/border-left-color-059.xht -reftest css/CSS2/borders/border-left-color-060.xht -reftest css/CSS2/borders/border-left-color-061.xht -reftest css/CSS2/borders/border-left-color-062.xht -reftest css/CSS2/borders/border-left-color-063.xht -reftest css/CSS2/borders/border-left-color-064.xht -reftest css/CSS2/borders/border-left-color-065.xht -reftest css/CSS2/borders/border-left-color-066.xht -reftest css/CSS2/borders/border-left-color-067.xht -reftest css/CSS2/borders/border-left-color-068.xht -reftest css/CSS2/borders/border-left-color-069.xht -reftest css/CSS2/borders/border-left-color-070.xht -reftest css/CSS2/borders/border-left-color-071.xht -reftest css/CSS2/borders/border-left-color-072.xht -reftest css/CSS2/borders/border-left-color-073.xht -reftest css/CSS2/borders/border-left-color-074.xht -reftest css/CSS2/borders/border-left-color-075.xht -reftest css/CSS2/borders/border-left-color-076.xht -reftest css/CSS2/borders/border-left-color-077.xht -reftest css/CSS2/borders/border-left-color-078.xht -reftest css/CSS2/borders/border-left-color-079.xht -reftest css/CSS2/borders/border-left-color-080.xht -reftest css/CSS2/borders/border-left-color-081.xht -reftest css/CSS2/borders/border-left-color-082.xht -reftest css/CSS2/borders/border-left-color-083.xht -reftest css/CSS2/borders/border-left-color-084.xht -reftest css/CSS2/borders/border-left-color-085.xht -reftest css/CSS2/borders/border-left-color-086.xht -reftest css/CSS2/borders/border-left-color-087.xht -reftest css/CSS2/borders/border-left-color-088.xht -reftest css/CSS2/borders/border-left-color-089.xht -reftest css/CSS2/borders/border-left-color-090.xht -reftest css/CSS2/borders/border-left-color-091.xht -reftest css/CSS2/borders/border-left-color-092.xht -reftest css/CSS2/borders/border-left-color-093.xht -reftest css/CSS2/borders/border-left-color-094.xht -reftest css/CSS2/borders/border-left-color-095.xht -reftest css/CSS2/borders/border-left-color-096.xht -reftest css/CSS2/borders/border-left-color-097.xht -reftest css/CSS2/borders/border-left-color-098.xht -reftest css/CSS2/borders/border-left-color-099.xht -reftest css/CSS2/borders/border-left-color-100.xht -reftest css/CSS2/borders/border-left-color-101.xht -reftest css/CSS2/borders/border-left-color-102.xht -reftest css/CSS2/borders/border-left-color-103.xht -reftest css/CSS2/borders/border-left-color-104.xht -reftest css/CSS2/borders/border-left-color-105.xht -reftest css/CSS2/borders/border-left-color-106.xht -reftest css/CSS2/borders/border-left-color-107.xht -reftest css/CSS2/borders/border-left-color-108.xht -reftest css/CSS2/borders/border-left-color-109.xht -reftest css/CSS2/borders/border-left-color-110.xht -reftest css/CSS2/borders/border-left-color-111.xht -reftest css/CSS2/borders/border-left-color-112.xht -reftest css/CSS2/borders/border-left-color-113.xht -reftest css/CSS2/borders/border-left-color-114.xht -reftest css/CSS2/borders/border-left-color-115.xht -reftest css/CSS2/borders/border-left-color-116.xht -reftest css/CSS2/borders/border-left-color-117.xht -reftest css/CSS2/borders/border-left-color-118.xht -reftest css/CSS2/borders/border-left-color-119.xht -reftest css/CSS2/borders/border-left-color-120.xht -reftest css/CSS2/borders/border-left-color-121.xht -reftest css/CSS2/borders/border-left-color-122.xht -reftest css/CSS2/borders/border-left-color-123.xht -reftest css/CSS2/borders/border-left-color-124.xht -reftest css/CSS2/borders/border-left-color-125.xht -reftest css/CSS2/borders/border-left-color-126.xht -reftest css/CSS2/borders/border-left-color-127.xht -reftest css/CSS2/borders/border-left-color-128.xht reftest css/CSS2/borders/border-left-color-129.xht -reftest css/CSS2/borders/border-left-color-130.xht -reftest css/CSS2/borders/border-left-color-131.xht -reftest css/CSS2/borders/border-left-color-132.xht -reftest css/CSS2/borders/border-left-color-133.xht -reftest css/CSS2/borders/border-left-color-134.xht -reftest css/CSS2/borders/border-left-color-135.xht -reftest css/CSS2/borders/border-left-color-136.xht -reftest css/CSS2/borders/border-left-color-137.xht -reftest css/CSS2/borders/border-left-color-138.xht -reftest css/CSS2/borders/border-left-color-139.xht -reftest css/CSS2/borders/border-left-color-140.xht -reftest css/CSS2/borders/border-left-color-141.xht -reftest css/CSS2/borders/border-left-color-142.xht -reftest css/CSS2/borders/border-left-color-143.xht -reftest css/CSS2/borders/border-left-color-144.xht -reftest css/CSS2/borders/border-left-color-145.xht reftest css/CSS2/borders/border-left-color-174.xht reftest css/CSS2/borders/border-left-color-175.xht reftest css/CSS2/borders/border-left-color-applies-to-001.xht @@ -5128,6 +5373,7 @@ reftest css/CSS2/borders/border-left-width-070.xht reftest css/CSS2/borders/border-left-width-071.xht reftest css/CSS2/borders/border-left-width-072.xht reftest css/CSS2/borders/border-left-width-073.xht +reftest css/CSS2/borders/border-left-width-078.xht reftest css/CSS2/borders/border-left-width-079.xht reftest css/CSS2/borders/border-left-width-080.xht reftest css/CSS2/borders/border-left-width-081.xht @@ -5168,151 +5414,7 @@ reftest css/CSS2/borders/border-right-applies-to-012.xht reftest css/CSS2/borders/border-right-applies-to-013.xht reftest css/CSS2/borders/border-right-applies-to-014.xht reftest css/CSS2/borders/border-right-applies-to-015.xht -reftest css/CSS2/borders/border-right-color-001.xht -reftest css/CSS2/borders/border-right-color-002.xht -reftest css/CSS2/borders/border-right-color-003.xht -reftest css/CSS2/borders/border-right-color-004.xht -reftest css/CSS2/borders/border-right-color-005.xht -reftest css/CSS2/borders/border-right-color-006.xht -reftest css/CSS2/borders/border-right-color-007.xht -reftest css/CSS2/borders/border-right-color-008.xht -reftest css/CSS2/borders/border-right-color-009.xht -reftest css/CSS2/borders/border-right-color-010.xht -reftest css/CSS2/borders/border-right-color-011.xht -reftest css/CSS2/borders/border-right-color-012.xht -reftest css/CSS2/borders/border-right-color-013.xht -reftest css/CSS2/borders/border-right-color-014.xht -reftest css/CSS2/borders/border-right-color-015.xht -reftest css/CSS2/borders/border-right-color-016.xht -reftest css/CSS2/borders/border-right-color-017.xht -reftest css/CSS2/borders/border-right-color-018.xht -reftest css/CSS2/borders/border-right-color-019.xht -reftest css/CSS2/borders/border-right-color-020.xht -reftest css/CSS2/borders/border-right-color-021.xht -reftest css/CSS2/borders/border-right-color-022.xht -reftest css/CSS2/borders/border-right-color-023.xht -reftest css/CSS2/borders/border-right-color-024.xht -reftest css/CSS2/borders/border-right-color-025.xht -reftest css/CSS2/borders/border-right-color-026.xht -reftest css/CSS2/borders/border-right-color-027.xht -reftest css/CSS2/borders/border-right-color-028.xht -reftest css/CSS2/borders/border-right-color-029.xht -reftest css/CSS2/borders/border-right-color-030.xht -reftest css/CSS2/borders/border-right-color-031.xht -reftest css/CSS2/borders/border-right-color-032.xht -reftest css/CSS2/borders/border-right-color-033.xht -reftest css/CSS2/borders/border-right-color-034.xht -reftest css/CSS2/borders/border-right-color-035.xht -reftest css/CSS2/borders/border-right-color-036.xht -reftest css/CSS2/borders/border-right-color-037.xht -reftest css/CSS2/borders/border-right-color-038.xht -reftest css/CSS2/borders/border-right-color-039.xht -reftest css/CSS2/borders/border-right-color-040.xht -reftest css/CSS2/borders/border-right-color-041.xht -reftest css/CSS2/borders/border-right-color-042.xht -reftest css/CSS2/borders/border-right-color-043.xht -reftest css/CSS2/borders/border-right-color-044.xht -reftest css/CSS2/borders/border-right-color-045.xht -reftest css/CSS2/borders/border-right-color-046.xht -reftest css/CSS2/borders/border-right-color-047.xht -reftest css/CSS2/borders/border-right-color-048.xht -reftest css/CSS2/borders/border-right-color-049.xht -reftest css/CSS2/borders/border-right-color-050.xht -reftest css/CSS2/borders/border-right-color-051.xht -reftest css/CSS2/borders/border-right-color-052.xht -reftest css/CSS2/borders/border-right-color-053.xht -reftest css/CSS2/borders/border-right-color-054.xht -reftest css/CSS2/borders/border-right-color-055.xht -reftest css/CSS2/borders/border-right-color-056.xht -reftest css/CSS2/borders/border-right-color-057.xht -reftest css/CSS2/borders/border-right-color-058.xht -reftest css/CSS2/borders/border-right-color-059.xht -reftest css/CSS2/borders/border-right-color-060.xht -reftest css/CSS2/borders/border-right-color-061.xht -reftest css/CSS2/borders/border-right-color-062.xht -reftest css/CSS2/borders/border-right-color-063.xht -reftest css/CSS2/borders/border-right-color-064.xht -reftest css/CSS2/borders/border-right-color-065.xht -reftest css/CSS2/borders/border-right-color-066.xht -reftest css/CSS2/borders/border-right-color-067.xht -reftest css/CSS2/borders/border-right-color-068.xht -reftest css/CSS2/borders/border-right-color-069.xht -reftest css/CSS2/borders/border-right-color-070.xht -reftest css/CSS2/borders/border-right-color-071.xht -reftest css/CSS2/borders/border-right-color-072.xht -reftest css/CSS2/borders/border-right-color-073.xht -reftest css/CSS2/borders/border-right-color-074.xht -reftest css/CSS2/borders/border-right-color-075.xht -reftest css/CSS2/borders/border-right-color-076.xht -reftest css/CSS2/borders/border-right-color-077.xht -reftest css/CSS2/borders/border-right-color-078.xht -reftest css/CSS2/borders/border-right-color-079.xht -reftest css/CSS2/borders/border-right-color-080.xht -reftest css/CSS2/borders/border-right-color-081.xht -reftest css/CSS2/borders/border-right-color-082.xht -reftest css/CSS2/borders/border-right-color-083.xht -reftest css/CSS2/borders/border-right-color-084.xht -reftest css/CSS2/borders/border-right-color-085.xht -reftest css/CSS2/borders/border-right-color-086.xht -reftest css/CSS2/borders/border-right-color-087.xht -reftest css/CSS2/borders/border-right-color-088.xht -reftest css/CSS2/borders/border-right-color-089.xht -reftest css/CSS2/borders/border-right-color-090.xht -reftest css/CSS2/borders/border-right-color-091.xht -reftest css/CSS2/borders/border-right-color-092.xht -reftest css/CSS2/borders/border-right-color-093.xht -reftest css/CSS2/borders/border-right-color-094.xht -reftest css/CSS2/borders/border-right-color-095.xht -reftest css/CSS2/borders/border-right-color-096.xht -reftest css/CSS2/borders/border-right-color-097.xht -reftest css/CSS2/borders/border-right-color-098.xht -reftest css/CSS2/borders/border-right-color-099.xht -reftest css/CSS2/borders/border-right-color-100.xht -reftest css/CSS2/borders/border-right-color-101.xht -reftest css/CSS2/borders/border-right-color-102.xht -reftest css/CSS2/borders/border-right-color-103.xht -reftest css/CSS2/borders/border-right-color-104.xht -reftest css/CSS2/borders/border-right-color-105.xht -reftest css/CSS2/borders/border-right-color-106.xht -reftest css/CSS2/borders/border-right-color-107.xht -reftest css/CSS2/borders/border-right-color-108.xht -reftest css/CSS2/borders/border-right-color-109.xht -reftest css/CSS2/borders/border-right-color-110.xht -reftest css/CSS2/borders/border-right-color-111.xht -reftest css/CSS2/borders/border-right-color-112.xht -reftest css/CSS2/borders/border-right-color-113.xht -reftest css/CSS2/borders/border-right-color-114.xht -reftest css/CSS2/borders/border-right-color-115.xht -reftest css/CSS2/borders/border-right-color-116.xht -reftest css/CSS2/borders/border-right-color-117.xht -reftest css/CSS2/borders/border-right-color-118.xht -reftest css/CSS2/borders/border-right-color-119.xht -reftest css/CSS2/borders/border-right-color-120.xht -reftest css/CSS2/borders/border-right-color-121.xht -reftest css/CSS2/borders/border-right-color-122.xht -reftest css/CSS2/borders/border-right-color-123.xht -reftest css/CSS2/borders/border-right-color-124.xht -reftest css/CSS2/borders/border-right-color-125.xht -reftest css/CSS2/borders/border-right-color-126.xht -reftest css/CSS2/borders/border-right-color-127.xht -reftest css/CSS2/borders/border-right-color-128.xht reftest css/CSS2/borders/border-right-color-129.xht -reftest css/CSS2/borders/border-right-color-130.xht -reftest css/CSS2/borders/border-right-color-131.xht -reftest css/CSS2/borders/border-right-color-132.xht -reftest css/CSS2/borders/border-right-color-133.xht -reftest css/CSS2/borders/border-right-color-134.xht -reftest css/CSS2/borders/border-right-color-135.xht -reftest css/CSS2/borders/border-right-color-136.xht -reftest css/CSS2/borders/border-right-color-137.xht -reftest css/CSS2/borders/border-right-color-138.xht -reftest css/CSS2/borders/border-right-color-139.xht -reftest css/CSS2/borders/border-right-color-140.xht -reftest css/CSS2/borders/border-right-color-141.xht -reftest css/CSS2/borders/border-right-color-142.xht -reftest css/CSS2/borders/border-right-color-143.xht -reftest css/CSS2/borders/border-right-color-144.xht -reftest css/CSS2/borders/border-right-color-145.xht reftest css/CSS2/borders/border-right-color-174.xht reftest css/CSS2/borders/border-right-color-175.xht reftest css/CSS2/borders/border-right-color-applies-to-001.xht @@ -5432,151 +5534,7 @@ reftest css/CSS2/borders/border-top-applies-to-012.xht reftest css/CSS2/borders/border-top-applies-to-013.xht reftest css/CSS2/borders/border-top-applies-to-014.xht reftest css/CSS2/borders/border-top-applies-to-015.xht -reftest css/CSS2/borders/border-top-color-001.xht -reftest css/CSS2/borders/border-top-color-002.xht -reftest css/CSS2/borders/border-top-color-003.xht -reftest css/CSS2/borders/border-top-color-004.xht -reftest css/CSS2/borders/border-top-color-005.xht -reftest css/CSS2/borders/border-top-color-006.xht -reftest css/CSS2/borders/border-top-color-007.xht -reftest css/CSS2/borders/border-top-color-008.xht -reftest css/CSS2/borders/border-top-color-009.xht -reftest css/CSS2/borders/border-top-color-010.xht -reftest css/CSS2/borders/border-top-color-011.xht -reftest css/CSS2/borders/border-top-color-012.xht -reftest css/CSS2/borders/border-top-color-013.xht -reftest css/CSS2/borders/border-top-color-014.xht -reftest css/CSS2/borders/border-top-color-015.xht -reftest css/CSS2/borders/border-top-color-016.xht -reftest css/CSS2/borders/border-top-color-017.xht -reftest css/CSS2/borders/border-top-color-018.xht -reftest css/CSS2/borders/border-top-color-019.xht -reftest css/CSS2/borders/border-top-color-020.xht -reftest css/CSS2/borders/border-top-color-021.xht -reftest css/CSS2/borders/border-top-color-022.xht -reftest css/CSS2/borders/border-top-color-023.xht -reftest css/CSS2/borders/border-top-color-024.xht -reftest css/CSS2/borders/border-top-color-025.xht -reftest css/CSS2/borders/border-top-color-026.xht -reftest css/CSS2/borders/border-top-color-027.xht -reftest css/CSS2/borders/border-top-color-028.xht -reftest css/CSS2/borders/border-top-color-029.xht -reftest css/CSS2/borders/border-top-color-030.xht -reftest css/CSS2/borders/border-top-color-031.xht -reftest css/CSS2/borders/border-top-color-032.xht -reftest css/CSS2/borders/border-top-color-033.xht -reftest css/CSS2/borders/border-top-color-034.xht -reftest css/CSS2/borders/border-top-color-035.xht -reftest css/CSS2/borders/border-top-color-036.xht -reftest css/CSS2/borders/border-top-color-037.xht -reftest css/CSS2/borders/border-top-color-038.xht -reftest css/CSS2/borders/border-top-color-039.xht -reftest css/CSS2/borders/border-top-color-040.xht -reftest css/CSS2/borders/border-top-color-041.xht -reftest css/CSS2/borders/border-top-color-042.xht -reftest css/CSS2/borders/border-top-color-043.xht -reftest css/CSS2/borders/border-top-color-044.xht -reftest css/CSS2/borders/border-top-color-045.xht -reftest css/CSS2/borders/border-top-color-046.xht -reftest css/CSS2/borders/border-top-color-047.xht -reftest css/CSS2/borders/border-top-color-048.xht -reftest css/CSS2/borders/border-top-color-049.xht -reftest css/CSS2/borders/border-top-color-050.xht -reftest css/CSS2/borders/border-top-color-051.xht -reftest css/CSS2/borders/border-top-color-052.xht -reftest css/CSS2/borders/border-top-color-053.xht -reftest css/CSS2/borders/border-top-color-054.xht -reftest css/CSS2/borders/border-top-color-055.xht -reftest css/CSS2/borders/border-top-color-056.xht -reftest css/CSS2/borders/border-top-color-057.xht -reftest css/CSS2/borders/border-top-color-058.xht -reftest css/CSS2/borders/border-top-color-059.xht -reftest css/CSS2/borders/border-top-color-060.xht -reftest css/CSS2/borders/border-top-color-061.xht -reftest css/CSS2/borders/border-top-color-062.xht -reftest css/CSS2/borders/border-top-color-063.xht -reftest css/CSS2/borders/border-top-color-064.xht -reftest css/CSS2/borders/border-top-color-065.xht -reftest css/CSS2/borders/border-top-color-066.xht -reftest css/CSS2/borders/border-top-color-067.xht -reftest css/CSS2/borders/border-top-color-068.xht -reftest css/CSS2/borders/border-top-color-069.xht -reftest css/CSS2/borders/border-top-color-070.xht -reftest css/CSS2/borders/border-top-color-071.xht -reftest css/CSS2/borders/border-top-color-072.xht -reftest css/CSS2/borders/border-top-color-073.xht -reftest css/CSS2/borders/border-top-color-074.xht -reftest css/CSS2/borders/border-top-color-075.xht -reftest css/CSS2/borders/border-top-color-076.xht -reftest css/CSS2/borders/border-top-color-077.xht -reftest css/CSS2/borders/border-top-color-078.xht -reftest css/CSS2/borders/border-top-color-079.xht -reftest css/CSS2/borders/border-top-color-080.xht -reftest css/CSS2/borders/border-top-color-081.xht -reftest css/CSS2/borders/border-top-color-082.xht -reftest css/CSS2/borders/border-top-color-083.xht -reftest css/CSS2/borders/border-top-color-084.xht -reftest css/CSS2/borders/border-top-color-085.xht -reftest css/CSS2/borders/border-top-color-086.xht -reftest css/CSS2/borders/border-top-color-087.xht -reftest css/CSS2/borders/border-top-color-088.xht -reftest css/CSS2/borders/border-top-color-089.xht -reftest css/CSS2/borders/border-top-color-090.xht -reftest css/CSS2/borders/border-top-color-091.xht -reftest css/CSS2/borders/border-top-color-092.xht -reftest css/CSS2/borders/border-top-color-093.xht -reftest css/CSS2/borders/border-top-color-094.xht -reftest css/CSS2/borders/border-top-color-095.xht -reftest css/CSS2/borders/border-top-color-096.xht -reftest css/CSS2/borders/border-top-color-097.xht -reftest css/CSS2/borders/border-top-color-098.xht -reftest css/CSS2/borders/border-top-color-099.xht -reftest css/CSS2/borders/border-top-color-100.xht -reftest css/CSS2/borders/border-top-color-101.xht -reftest css/CSS2/borders/border-top-color-102.xht -reftest css/CSS2/borders/border-top-color-103.xht -reftest css/CSS2/borders/border-top-color-104.xht -reftest css/CSS2/borders/border-top-color-105.xht -reftest css/CSS2/borders/border-top-color-106.xht -reftest css/CSS2/borders/border-top-color-107.xht -reftest css/CSS2/borders/border-top-color-108.xht -reftest css/CSS2/borders/border-top-color-109.xht -reftest css/CSS2/borders/border-top-color-110.xht -reftest css/CSS2/borders/border-top-color-111.xht -reftest css/CSS2/borders/border-top-color-112.xht -reftest css/CSS2/borders/border-top-color-113.xht -reftest css/CSS2/borders/border-top-color-114.xht -reftest css/CSS2/borders/border-top-color-115.xht -reftest css/CSS2/borders/border-top-color-116.xht -reftest css/CSS2/borders/border-top-color-117.xht -reftest css/CSS2/borders/border-top-color-118.xht -reftest css/CSS2/borders/border-top-color-119.xht -reftest css/CSS2/borders/border-top-color-120.xht -reftest css/CSS2/borders/border-top-color-121.xht -reftest css/CSS2/borders/border-top-color-122.xht -reftest css/CSS2/borders/border-top-color-123.xht -reftest css/CSS2/borders/border-top-color-124.xht -reftest css/CSS2/borders/border-top-color-125.xht -reftest css/CSS2/borders/border-top-color-126.xht -reftest css/CSS2/borders/border-top-color-127.xht -reftest css/CSS2/borders/border-top-color-128.xht reftest css/CSS2/borders/border-top-color-129.xht -reftest css/CSS2/borders/border-top-color-130.xht -reftest css/CSS2/borders/border-top-color-131.xht -reftest css/CSS2/borders/border-top-color-132.xht -reftest css/CSS2/borders/border-top-color-133.xht -reftest css/CSS2/borders/border-top-color-134.xht -reftest css/CSS2/borders/border-top-color-135.xht -reftest css/CSS2/borders/border-top-color-136.xht -reftest css/CSS2/borders/border-top-color-137.xht -reftest css/CSS2/borders/border-top-color-138.xht -reftest css/CSS2/borders/border-top-color-139.xht -reftest css/CSS2/borders/border-top-color-140.xht -reftest css/CSS2/borders/border-top-color-141.xht -reftest css/CSS2/borders/border-top-color-142.xht -reftest css/CSS2/borders/border-top-color-143.xht -reftest css/CSS2/borders/border-top-color-144.xht -reftest css/CSS2/borders/border-top-color-145.xht reftest css/CSS2/borders/border-top-color-174.xht reftest css/CSS2/borders/border-top-color-175.xht reftest css/CSS2/borders/border-top-color-applies-to-001.xht @@ -5788,6 +5746,7 @@ reftest css/CSS2/box/rtl-ib.xht reftest css/CSS2/box/rtl-linebreak.xht reftest css/CSS2/box/rtl-span-only-ib.xht reftest css/CSS2/box/rtl-span-only.xht +reftest css/CSS2/cascade-import/cascade-import-001.xht reftest css/CSS2/cascade-import/cascade-import-dynamic-001.xht reftest css/CSS2/cascade-import/cascade-import-dynamic-002.xht reftest css/CSS2/cascade-import/cascade-import-dynamic-003.xht @@ -5826,150 +5785,7 @@ reftest css/CSS2/cascade/specificity-007.xht reftest css/CSS2/cascade/specificity-008.xht reftest css/CSS2/cascade/specificity-011.xht reftest css/CSS2/cascade/specificity-013.xht -reftest css/CSS2/colors/color-001.xht -reftest css/CSS2/colors/color-002.xht -reftest css/CSS2/colors/color-003.xht -reftest css/CSS2/colors/color-004.xht -reftest css/CSS2/colors/color-005.xht -reftest css/CSS2/colors/color-006.xht -reftest css/CSS2/colors/color-007.xht -reftest css/CSS2/colors/color-008.xht -reftest css/CSS2/colors/color-009.xht -reftest css/CSS2/colors/color-010.xht -reftest css/CSS2/colors/color-011.xht -reftest css/CSS2/colors/color-012.xht -reftest css/CSS2/colors/color-013.xht -reftest css/CSS2/colors/color-014.xht -reftest css/CSS2/colors/color-015.xht -reftest css/CSS2/colors/color-016.xht -reftest css/CSS2/colors/color-017.xht -reftest css/CSS2/colors/color-018.xht -reftest css/CSS2/colors/color-019.xht -reftest css/CSS2/colors/color-020.xht -reftest css/CSS2/colors/color-021.xht -reftest css/CSS2/colors/color-022.xht -reftest css/CSS2/colors/color-023.xht -reftest css/CSS2/colors/color-024.xht -reftest css/CSS2/colors/color-025.xht -reftest css/CSS2/colors/color-026.xht -reftest css/CSS2/colors/color-027.xht -reftest css/CSS2/colors/color-028.xht -reftest css/CSS2/colors/color-029.xht -reftest css/CSS2/colors/color-031.xht -reftest css/CSS2/colors/color-032.xht -reftest css/CSS2/colors/color-033.xht -reftest css/CSS2/colors/color-034.xht -reftest css/CSS2/colors/color-035.xht -reftest css/CSS2/colors/color-036.xht -reftest css/CSS2/colors/color-037.xht -reftest css/CSS2/colors/color-038.xht -reftest css/CSS2/colors/color-039.xht -reftest css/CSS2/colors/color-040.xht -reftest css/CSS2/colors/color-041.xht -reftest css/CSS2/colors/color-042.xht -reftest css/CSS2/colors/color-043.xht -reftest css/CSS2/colors/color-044.xht -reftest css/CSS2/colors/color-045.xht -reftest css/CSS2/colors/color-046.xht -reftest css/CSS2/colors/color-047.xht -reftest css/CSS2/colors/color-048.xht -reftest css/CSS2/colors/color-049.xht -reftest css/CSS2/colors/color-050.xht -reftest css/CSS2/colors/color-051.xht -reftest css/CSS2/colors/color-052.xht -reftest css/CSS2/colors/color-053.xht -reftest css/CSS2/colors/color-054.xht -reftest css/CSS2/colors/color-055.xht -reftest css/CSS2/colors/color-056.xht -reftest css/CSS2/colors/color-057.xht -reftest css/CSS2/colors/color-058.xht -reftest css/CSS2/colors/color-059.xht -reftest css/CSS2/colors/color-060.xht -reftest css/CSS2/colors/color-061.xht -reftest css/CSS2/colors/color-062.xht -reftest css/CSS2/colors/color-063.xht -reftest css/CSS2/colors/color-064.xht -reftest css/CSS2/colors/color-065.xht -reftest css/CSS2/colors/color-066.xht -reftest css/CSS2/colors/color-067.xht -reftest css/CSS2/colors/color-068.xht -reftest css/CSS2/colors/color-069.xht -reftest css/CSS2/colors/color-070.xht -reftest css/CSS2/colors/color-071.xht -reftest css/CSS2/colors/color-072.xht -reftest css/CSS2/colors/color-073.xht -reftest css/CSS2/colors/color-074.xht -reftest css/CSS2/colors/color-075.xht -reftest css/CSS2/colors/color-076.xht -reftest css/CSS2/colors/color-077.xht -reftest css/CSS2/colors/color-078.xht -reftest css/CSS2/colors/color-079.xht -reftest css/CSS2/colors/color-080.xht -reftest css/CSS2/colors/color-081.xht -reftest css/CSS2/colors/color-082.xht -reftest css/CSS2/colors/color-083.xht -reftest css/CSS2/colors/color-084.xht -reftest css/CSS2/colors/color-085.xht -reftest css/CSS2/colors/color-086.xht -reftest css/CSS2/colors/color-087.xht -reftest css/CSS2/colors/color-088.xht -reftest css/CSS2/colors/color-089.xht -reftest css/CSS2/colors/color-090.xht -reftest css/CSS2/colors/color-091.xht -reftest css/CSS2/colors/color-092.xht -reftest css/CSS2/colors/color-093.xht -reftest css/CSS2/colors/color-094.xht -reftest css/CSS2/colors/color-095.xht -reftest css/CSS2/colors/color-096.xht -reftest css/CSS2/colors/color-097.xht -reftest css/CSS2/colors/color-098.xht -reftest css/CSS2/colors/color-099.xht -reftest css/CSS2/colors/color-100.xht -reftest css/CSS2/colors/color-101.xht -reftest css/CSS2/colors/color-102.xht -reftest css/CSS2/colors/color-103.xht -reftest css/CSS2/colors/color-104.xht -reftest css/CSS2/colors/color-105.xht -reftest css/CSS2/colors/color-106.xht -reftest css/CSS2/colors/color-107.xht -reftest css/CSS2/colors/color-108.xht -reftest css/CSS2/colors/color-109.xht -reftest css/CSS2/colors/color-110.xht -reftest css/CSS2/colors/color-111.xht -reftest css/CSS2/colors/color-112.xht -reftest css/CSS2/colors/color-113.xht -reftest css/CSS2/colors/color-114.xht -reftest css/CSS2/colors/color-115.xht -reftest css/CSS2/colors/color-116.xht -reftest css/CSS2/colors/color-117.xht -reftest css/CSS2/colors/color-118.xht -reftest css/CSS2/colors/color-119.xht -reftest css/CSS2/colors/color-120.xht -reftest css/CSS2/colors/color-121.xht -reftest css/CSS2/colors/color-122.xht -reftest css/CSS2/colors/color-123.xht -reftest css/CSS2/colors/color-124.xht -reftest css/CSS2/colors/color-125.xht -reftest css/CSS2/colors/color-126.xht -reftest css/CSS2/colors/color-127.xht -reftest css/CSS2/colors/color-128.xht reftest css/CSS2/colors/color-129.xht -reftest css/CSS2/colors/color-130.xht -reftest css/CSS2/colors/color-131.xht -reftest css/CSS2/colors/color-132.xht -reftest css/CSS2/colors/color-133.xht -reftest css/CSS2/colors/color-134.xht -reftest css/CSS2/colors/color-135.xht -reftest css/CSS2/colors/color-136.xht -reftest css/CSS2/colors/color-137.xht -reftest css/CSS2/colors/color-138.xht -reftest css/CSS2/colors/color-139.xht -reftest css/CSS2/colors/color-140.xht -reftest css/CSS2/colors/color-141.xht -reftest css/CSS2/colors/color-142.xht -reftest css/CSS2/colors/color-143.xht -reftest css/CSS2/colors/color-144.xht -reftest css/CSS2/colors/color-145.xht reftest css/CSS2/colors/color-174.xht reftest css/CSS2/colors/color-175.xht reftest css/CSS2/colors/color-176.xht @@ -6148,7 +5964,6 @@ reftest css/CSS2/css1/c563-list-type-000.xht reftest css/CSS2/css1/c61-ex-len-000.xht reftest css/CSS2/css1/c61-rel-len-000.xht reftest css/CSS2/css1/c62-percent-000.xht -reftest css/CSS2/css1/c63-color-000.xht reftest css/CSS2/css1/c64-uri-000.xht reftest css/CSS2/css1/c71-fwd-parsing-000.xht reftest css/CSS2/css1/c71-fwd-parsing-001.xht @@ -6217,6 +6032,7 @@ reftest css/CSS2/floats-clear/clear-on-parent-and-child.html reftest css/CSS2/floats-clear/clear-on-parent-with-margins-no-clearance.html reftest css/CSS2/floats-clear/clear-on-parent-with-margins.html reftest css/CSS2/floats-clear/clear-on-parent.html +reftest css/CSS2/floats-clear/clear-on-replaced-element.html reftest css/CSS2/floats-clear/clear-with-top-margin-after-cleared-empty-block.html reftest css/CSS2/floats-clear/clearance-006.xht reftest css/CSS2/floats-clear/float-003.xht @@ -6379,6 +6195,9 @@ reftest css/CSS2/floats-clear/remove-block-before-self-collapsing-sibling-with-c reftest css/CSS2/floats-clear/second-float-inside-empty-cleared-block-after-margin.html reftest css/CSS2/floats-clear/second-float-inside-empty-cleared-block.html reftest css/CSS2/floats/adjoining-floats-dynamic.html +reftest css/CSS2/floats/block-in-inline-become-float.html +reftest css/CSS2/floats/float-in-inline-anonymous-block-with-overflow-hidden.html +reftest css/CSS2/floats/float-in-nested-multicol-001.html reftest css/CSS2/floats/float-no-content-beside-001.html reftest css/CSS2/floats/float-nowrap-1.html reftest css/CSS2/floats/float-nowrap-2.html @@ -6390,10 +6209,12 @@ reftest css/CSS2/floats/float-nowrap-6.html reftest css/CSS2/floats/float-nowrap-7.html reftest css/CSS2/floats/float-nowrap-8.html reftest css/CSS2/floats/float-nowrap-9.html +reftest css/CSS2/floats/float-nowrap-hyphen-rewind-1.html reftest css/CSS2/floats/float-paint-relayout.html reftest css/CSS2/floats/float-root.html reftest css/CSS2/floats/float-table-align-left-quirk.html reftest css/CSS2/floats/float-under-flatten-under-preserve-3d.html +reftest css/CSS2/floats/float-with-absolutely-positioned-child-with-static-inset.html reftest css/CSS2/floats/floated-table-wider-than-specified.html reftest css/CSS2/floats/floats-in-table-caption-001.html reftest css/CSS2/floats/floats-line-wrap-shifted-001.html @@ -6402,6 +6223,9 @@ reftest css/CSS2/floats/floats-placement-002.html reftest css/CSS2/floats/floats-placement-003.html reftest css/CSS2/floats/floats-placement-004.html reftest css/CSS2/floats/floats-placement-005.html +reftest css/CSS2/floats/floats-placement-006.html +reftest css/CSS2/floats/floats-placement-007.html +reftest css/CSS2/floats/floats-placement-008.html reftest css/CSS2/floats/floats-placement-vertical-001a.xht reftest css/CSS2/floats/floats-placement-vertical-001b.xht reftest css/CSS2/floats/floats-placement-vertical-001c.xht @@ -6431,6 +6255,7 @@ reftest css/CSS2/floats/floats-wrap-bfc-004.xht reftest css/CSS2/floats/floats-wrap-bfc-005.xht reftest css/CSS2/floats/floats-wrap-bfc-006.xht reftest css/CSS2/floats/floats-wrap-bfc-007.xht +reftest css/CSS2/floats/floats-wrap-bfc-008.html reftest css/CSS2/floats/floats-wrap-bfc-outside-001.xht reftest css/CSS2/floats/floats-wrap-bfc-with-margin-001.html reftest css/CSS2/floats/floats-wrap-bfc-with-margin-001a.tentative.html @@ -6438,6 +6263,11 @@ reftest css/CSS2/floats/floats-wrap-bfc-with-margin-002.tentative.html reftest css/CSS2/floats/floats-wrap-bfc-with-margin-003.tentative.html reftest css/CSS2/floats/floats-wrap-bfc-with-margin-004.html reftest css/CSS2/floats/floats-wrap-bfc-with-margin-005.html +reftest css/CSS2/floats/floats-wrap-bfc-with-margin-006.tentative.html +reftest css/CSS2/floats/floats-wrap-bfc-with-margin-007.tentative.html +reftest css/CSS2/floats/floats-wrap-bfc-with-margin-008.tentative.html +reftest css/CSS2/floats/floats-wrap-bfc-with-margin-009.tentative.html +reftest css/CSS2/floats/floats-wrap-bfc-with-margin-010.html reftest css/CSS2/floats/floats-wrap-top-below-bfc-001l.xht reftest css/CSS2/floats/floats-wrap-top-below-bfc-001r.xht reftest css/CSS2/floats/floats-wrap-top-below-bfc-002l.xht @@ -6453,6 +6283,7 @@ reftest css/CSS2/floats/floats-wrap-top-below-inline-003r.xht reftest css/CSS2/floats/floats-zero-height-wrap-001.xht reftest css/CSS2/floats/floats-zero-height-wrap-002.xht reftest css/CSS2/floats/intrinsic-size-float-and-line.html +reftest css/CSS2/floats/negative-block-margin-pushing-float-out-of-block-formatting-context.html reftest css/CSS2/floats/negative-margin-float-positioning.html reftest css/CSS2/floats/new-fc-beside-adjoining-float-2.html reftest css/CSS2/floats/new-fc-beside-adjoining-float.html @@ -6566,6 +6397,7 @@ reftest css/CSS2/fonts/font-size-093.xht reftest css/CSS2/fonts/font-size-100.xht reftest css/CSS2/fonts/font-size-101.xht reftest css/CSS2/fonts/font-size-102.xht +reftest css/CSS2/fonts/font-size-119.xht reftest css/CSS2/fonts/font-size-120.xht reftest css/CSS2/fonts/font-size-121.xht reftest css/CSS2/fonts/font-size-122.xht @@ -7018,6 +6850,7 @@ reftest css/CSS2/linebox/vertical-align-111.xht reftest css/CSS2/linebox/vertical-align-117a.xht reftest css/CSS2/linebox/vertical-align-118a.xht reftest css/CSS2/linebox/vertical-align-121.xht +reftest css/CSS2/linebox/vertical-align-122.xht reftest css/CSS2/linebox/vertical-align-applies-to-001.xht reftest css/CSS2/linebox/vertical-align-applies-to-002.xht reftest css/CSS2/linebox/vertical-align-applies-to-003.xht @@ -7036,9 +6869,11 @@ reftest css/CSS2/linebox/vertical-align-baseline-002.xht reftest css/CSS2/linebox/vertical-align-baseline-003.xht reftest css/CSS2/linebox/vertical-align-baseline-004a.xht reftest css/CSS2/linebox/vertical-align-baseline-005a.xht +reftest css/CSS2/linebox/vertical-align-baseline-006.xht reftest css/CSS2/linebox/vertical-align-baseline-007.xht reftest css/CSS2/linebox/vertical-align-baseline-008.xht reftest css/CSS2/linebox/vertical-align-baseline-009.xht +reftest css/CSS2/linebox/vertical-align-baseline-010.xht reftest css/CSS2/linebox/vertical-align-negative-leading-001.html reftest css/CSS2/linebox/vertical-align-nested-top-001.html reftest css/CSS2/linebox/vertical-align-sub-001.xht @@ -7083,6 +6918,9 @@ reftest css/CSS2/lists/counter-increment-applies-to-012.xht reftest css/CSS2/lists/counter-increment-applies-to-013.xht reftest css/CSS2/lists/counter-increment-applies-to-014.xht reftest css/CSS2/lists/counter-increment-applies-to-015.xht +reftest css/CSS2/lists/counter-increment-auto-reset-001.xht +reftest css/CSS2/lists/counter-increment-display-001.xht +reftest css/CSS2/lists/counter-increment-not-generated-001.xht reftest css/CSS2/lists/counter-increment-visibility-001.xht reftest css/CSS2/lists/counter-reset-005.xht reftest css/CSS2/lists/counter-reset-006.xht @@ -7121,7 +6959,9 @@ reftest css/CSS2/lists/counter-reset-applies-to-012.xht reftest css/CSS2/lists/counter-reset-applies-to-013.xht reftest css/CSS2/lists/counter-reset-applies-to-014.xht reftest css/CSS2/lists/counter-reset-applies-to-015.xht +reftest css/CSS2/lists/counter-reset-display-001.xht reftest css/CSS2/lists/counter-reset-increment-002.xht +reftest css/CSS2/lists/counter-reset-not-generated-001.xht reftest css/CSS2/lists/counter-reset-visibility-001.xht reftest css/CSS2/lists/increment-counter-001.xht reftest css/CSS2/lists/list-style-019.xht @@ -7179,6 +7019,7 @@ reftest css/CSS2/margin-padding-clear/margin-applies-to-012.xht reftest css/CSS2/margin-padding-clear/margin-applies-to-013.xht reftest css/CSS2/margin-padding-clear/margin-applies-to-014.xht reftest css/CSS2/margin-padding-clear/margin-applies-to-015.xht +reftest css/CSS2/margin-padding-clear/margin-auto-on-block-box.html reftest css/CSS2/margin-padding-clear/margin-backgrounds-002.xht reftest css/CSS2/margin-padding-clear/margin-backgrounds-003.xht reftest css/CSS2/margin-padding-clear/margin-border-padding-001.xht @@ -7256,6 +7097,7 @@ reftest css/CSS2/margin-padding-clear/margin-collapse-006.xht reftest css/CSS2/margin-padding-clear/margin-collapse-007.xht reftest css/CSS2/margin-padding-clear/margin-collapse-008.xht reftest css/CSS2/margin-padding-clear/margin-collapse-009.xht +reftest css/CSS2/margin-padding-clear/margin-collapse-012.xht reftest css/CSS2/margin-padding-clear/margin-collapse-013.xht reftest css/CSS2/margin-padding-clear/margin-collapse-014.xht reftest css/CSS2/margin-padding-clear/margin-collapse-015.xht @@ -7294,6 +7136,9 @@ reftest css/CSS2/margin-padding-clear/margin-collapse-138.xht reftest css/CSS2/margin-padding-clear/margin-collapse-155.xht reftest css/CSS2/margin-padding-clear/margin-collapse-156.xht reftest css/CSS2/margin-padding-clear/margin-collapse-159.xht +reftest css/CSS2/margin-padding-clear/margin-collapse-clear-001.xht +reftest css/CSS2/margin-padding-clear/margin-collapse-clear-007.xht +reftest css/CSS2/margin-padding-clear/margin-collapse-clear-011.xht reftest css/CSS2/margin-padding-clear/margin-collapse-min-height-001.xht reftest css/CSS2/margin-padding-clear/margin-collapse-min-height-002.xht reftest css/CSS2/margin-padding-clear/margin-em-inherit-001.xht @@ -7356,6 +7201,7 @@ reftest css/CSS2/margin-padding-clear/margin-left-applies-to-004.xht reftest css/CSS2/margin-padding-clear/margin-left-applies-to-005.xht reftest css/CSS2/margin-padding-clear/margin-left-applies-to-006.xht reftest css/CSS2/margin-padding-clear/margin-left-applies-to-007.xht +reftest css/CSS2/margin-padding-clear/margin-left-applies-to-008.xht reftest css/CSS2/margin-padding-clear/margin-left-applies-to-009.xht reftest css/CSS2/margin-padding-clear/margin-left-applies-to-012.xht reftest css/CSS2/margin-padding-clear/margin-left-applies-to-013.xht @@ -7512,6 +7358,8 @@ reftest css/CSS2/margin-padding-clear/padding-applies-to-012.xht reftest css/CSS2/margin-padding-clear/padding-applies-to-013.xht reftest css/CSS2/margin-padding-clear/padding-applies-to-014.xht reftest css/CSS2/margin-padding-clear/padding-applies-to-015.xht +reftest css/CSS2/margin-padding-clear/padding-applies-to-016.xht +reftest css/CSS2/margin-padding-clear/padding-applies-to-017.xht reftest css/CSS2/margin-padding-clear/padding-background-001.xht reftest css/CSS2/margin-padding-clear/padding-bottom-001.xht reftest css/CSS2/margin-padding-clear/padding-bottom-002.xht @@ -7981,6 +7829,7 @@ reftest css/CSS2/normal-flow/block-non-replaced-height-005.xht reftest css/CSS2/normal-flow/block-non-replaced-height-011.xht reftest css/CSS2/normal-flow/block-non-replaced-height-013.xht reftest css/CSS2/normal-flow/block-non-replaced-width-001.xht +reftest css/CSS2/normal-flow/block-non-replaced-width-002.xht reftest css/CSS2/normal-flow/block-non-replaced-width-003.xht reftest css/CSS2/normal-flow/block-non-replaced-width-004.xht reftest css/CSS2/normal-flow/block-non-replaced-width-005.xht @@ -8133,6 +7982,8 @@ reftest css/CSS2/normal-flow/inline-block-zorder-002.xht reftest css/CSS2/normal-flow/inline-block-zorder-003.xht reftest css/CSS2/normal-flow/inline-block-zorder-004.xht reftest css/CSS2/normal-flow/inline-block-zorder-005.xht +reftest css/CSS2/normal-flow/inline-box-border-line-break.html +reftest css/CSS2/normal-flow/inline-box-padding-line-break.html reftest css/CSS2/normal-flow/inline-non-replaced-height-002.xht reftest css/CSS2/normal-flow/inline-non-replaced-height-003.xht reftest css/CSS2/normal-flow/inline-non-replaced-width-001.xht @@ -8278,6 +8129,7 @@ reftest css/CSS2/normal-flow/max-width-006.xht reftest css/CSS2/normal-flow/max-width-007.xht reftest css/CSS2/normal-flow/max-width-012.xht reftest css/CSS2/normal-flow/max-width-013.xht +reftest css/CSS2/normal-flow/max-width-014.xht reftest css/CSS2/normal-flow/max-width-015.xht reftest css/CSS2/normal-flow/max-width-016.xht reftest css/CSS2/normal-flow/max-width-017.xht @@ -8448,6 +8300,7 @@ reftest css/CSS2/normal-flow/min-width-006.xht reftest css/CSS2/normal-flow/min-width-007.xht reftest css/CSS2/normal-flow/min-width-012.xht reftest css/CSS2/normal-flow/min-width-013.xht +reftest css/CSS2/normal-flow/min-width-014.xht reftest css/CSS2/normal-flow/min-width-015.xht reftest css/CSS2/normal-flow/min-width-016.xht reftest css/CSS2/normal-flow/min-width-017.xht @@ -8543,6 +8396,7 @@ reftest css/CSS2/normal-flow/width-006.xht reftest css/CSS2/normal-flow/width-007.xht reftest css/CSS2/normal-flow/width-012.xht reftest css/CSS2/normal-flow/width-013.xht +reftest css/CSS2/normal-flow/width-014.xht reftest css/CSS2/normal-flow/width-015.xht reftest css/CSS2/normal-flow/width-016.xht reftest css/CSS2/normal-flow/width-017.xht @@ -8632,6 +8486,7 @@ reftest css/CSS2/positioning/absolute-non-replaced-height-010.xht reftest css/CSS2/positioning/absolute-non-replaced-height-011.xht reftest css/CSS2/positioning/absolute-non-replaced-height-012.xht reftest css/CSS2/positioning/absolute-non-replaced-height-013.html +reftest css/CSS2/positioning/absolute-non-replaced-max-001.html reftest css/CSS2/positioning/absolute-non-replaced-max-height-002.xht reftest css/CSS2/positioning/absolute-non-replaced-max-height-003.xht reftest css/CSS2/positioning/absolute-non-replaced-max-height-004.xht @@ -8643,6 +8498,8 @@ reftest css/CSS2/positioning/absolute-non-replaced-max-height-009.xht reftest css/CSS2/positioning/absolute-non-replaced-max-height-010.xht reftest css/CSS2/positioning/absolute-non-replaced-max-height-011.xht reftest css/CSS2/positioning/absolute-non-replaced-max-height-012.xht +reftest css/CSS2/positioning/absolute-non-replaced-min-001.html +reftest css/CSS2/positioning/absolute-non-replaced-min-max-001.html reftest css/CSS2/positioning/absolute-non-replaced-width-001.xht reftest css/CSS2/positioning/absolute-non-replaced-width-002.xht reftest css/CSS2/positioning/absolute-non-replaced-width-003.xht @@ -9656,6 +9513,8 @@ reftest css/CSS2/selectors/first-line-floats-004.xht reftest css/CSS2/selectors/first-line-inherit-001.xht reftest css/CSS2/selectors/first-line-inherit-002.xht reftest css/CSS2/selectors/first-line-inherit-003.xht +reftest css/CSS2/selectors/first-line-pseudo-007.xht +reftest css/CSS2/selectors/first-line-pseudo-008.xht reftest css/CSS2/selectors/first-line-pseudo-012.xht reftest css/CSS2/selectors/first-line-pseudo-013.xht reftest css/CSS2/selectors/first-line-pseudo-014.xht @@ -9665,6 +9524,7 @@ reftest css/CSS2/selectors/first-line-pseudo-018.xht reftest css/CSS2/selectors/first-line-pseudo-019.xht reftest css/CSS2/selectors/first-line-pseudo-020.xht reftest css/CSS2/selectors/first-line-pseudo-021.xht +reftest css/CSS2/selectors/first-line-selector-004.xht reftest css/CSS2/selectors/first-line-selector-010.xht reftest css/CSS2/selectors/first-line-selector-013.xht reftest css/CSS2/selectors/grouping-002.xht @@ -9812,6 +9672,13 @@ reftest css/CSS2/syntax/case-sensitive-004.xht reftest css/CSS2/syntax/case-sensitive-005.xht reftest css/CSS2/syntax/case-sensitive-006.html reftest css/CSS2/syntax/case-sensitive-007.xht +reftest css/CSS2/syntax/character-encoding-031.xht +reftest css/CSS2/syntax/character-encoding-032.xht +reftest css/CSS2/syntax/character-encoding-033.xht +reftest css/CSS2/syntax/character-encoding-034.xht +reftest css/CSS2/syntax/character-encoding-035.xht +reftest css/CSS2/syntax/character-encoding-036.xht +reftest css/CSS2/syntax/character-encoding-037.xht reftest css/CSS2/syntax/character-encoding-041.xht reftest css/CSS2/syntax/characters-0080-009F-001.xht reftest css/CSS2/syntax/charset-attr-001.xht @@ -9833,9 +9700,6 @@ reftest css/CSS2/syntax/comments-009.xht reftest css/CSS2/syntax/content-type-000.xht reftest css/CSS2/syntax/content-type-001.xht reftest css/CSS2/syntax/core-syntax-001.xht -reftest css/CSS2/syntax/core-syntax-002.xht -reftest css/CSS2/syntax/core-syntax-003.xht -reftest css/CSS2/syntax/core-syntax-004.xht reftest css/CSS2/syntax/core-syntax-006.xht reftest css/CSS2/syntax/core-syntax-007.xht reftest css/CSS2/syntax/core-syntax-008.xht @@ -10000,6 +9864,7 @@ reftest css/CSS2/tables/border-collapse-dynamic-rowgroup-003.xht reftest css/CSS2/tables/border-collapse-dynamic-table-001.xht reftest css/CSS2/tables/border-collapse-dynamic-table-002.xht reftest css/CSS2/tables/border-collapse-dynamic-table-003.xht +reftest css/CSS2/tables/border-collapse-empty-row.html reftest css/CSS2/tables/border-collapse-offset-001.xht reftest css/CSS2/tables/border-collapse-offset-002.xht reftest css/CSS2/tables/border-conflict-element-001a.xht @@ -10297,6 +10162,8 @@ reftest css/CSS2/tables/table-anonymous-objects-204.xht reftest css/CSS2/tables/table-anonymous-objects-205.xht reftest css/CSS2/tables/table-anonymous-objects-206.xht reftest css/CSS2/tables/table-anonymous-objects-211.xht +reftest css/CSS2/tables/table-anonymous-objects-212.xht +reftest css/CSS2/tables/table-anonymous-objects-213.xht reftest css/CSS2/tables/table-anonymous-text-indent.xht reftest css/CSS2/tables/table-backgrounds-bc-cell-001.xht reftest css/CSS2/tables/table-backgrounds-bc-colgroup-001.xht @@ -10325,6 +10192,8 @@ reftest css/CSS2/tables/table-vertical-align-baseline-004.xht reftest css/CSS2/tables/table-vertical-align-baseline-005.xht reftest css/CSS2/tables/table-vertical-align-baseline-006.xht reftest css/CSS2/tables/table-vertical-align-baseline-007.xht +reftest css/CSS2/tables/table-vertical-align-baseline-008.xht +reftest css/CSS2/tables/table-vertical-align-baseline-009.xht reftest css/CSS2/tables/table-visual-layout-017.xht reftest css/CSS2/tables/table-visual-layout-018.xht reftest css/CSS2/tables/table-visual-layout-026a.xht @@ -10399,9 +10268,9 @@ reftest css/CSS2/text/letter-spacing-applies-to-015.xht reftest css/CSS2/text/letter-spacing-justify-001.xht reftest css/CSS2/text/painting-order-underline-001.xht reftest css/CSS2/text/text-align-bidi-011.xht +reftest css/CSS2/text/text-align-justify-with-overflow.html reftest css/CSS2/text/text-align-white-space-001.xht reftest css/CSS2/text/text-align-white-space-002.xht -reftest css/CSS2/text/text-align-white-space-003.xht reftest css/CSS2/text/text-align-white-space-004.xht reftest css/CSS2/text/text-align-white-space-005.xht reftest css/CSS2/text/text-align-white-space-006.xht @@ -10512,6 +10381,7 @@ reftest css/CSS2/text/text-indent-wrap-001-notref-block-margin.xht reftest css/CSS2/text/text-indent-wrap-001-ref-float.xht reftest css/CSS2/text/text-indent-wrap-001-ref-inline-margin.xht reftest css/CSS2/text/text-indent-wrap-001.xht +reftest css/CSS2/text/text-indent-wrap-002.html reftest css/CSS2/text/text-transform-001.xht reftest css/CSS2/text/text-transform-002.xht reftest css/CSS2/text/text-transform-003.xht @@ -10744,63 +10614,6 @@ reftest css/CSS2/ui/outline-applies-to-005.xht reftest css/CSS2/ui/outline-applies-to-006.xht reftest css/CSS2/ui/outline-applies-to-016.xht reftest css/CSS2/ui/outline-applies-to-017.xht -reftest css/CSS2/ui/outline-color-001.xht -reftest css/CSS2/ui/outline-color-002.xht -reftest css/CSS2/ui/outline-color-007.xht -reftest css/CSS2/ui/outline-color-008.xht -reftest css/CSS2/ui/outline-color-013.xht -reftest css/CSS2/ui/outline-color-018.xht -reftest css/CSS2/ui/outline-color-023.xht -reftest css/CSS2/ui/outline-color-024.xht -reftest css/CSS2/ui/outline-color-025.xht -reftest css/CSS2/ui/outline-color-030.xht -reftest css/CSS2/ui/outline-color-031.xht -reftest css/CSS2/ui/outline-color-036.xht -reftest css/CSS2/ui/outline-color-041.xht -reftest css/CSS2/ui/outline-color-046.xht -reftest css/CSS2/ui/outline-color-047.xht -reftest css/CSS2/ui/outline-color-048.xht -reftest css/CSS2/ui/outline-color-049.xht -reftest css/CSS2/ui/outline-color-050.xht -reftest css/CSS2/ui/outline-color-051.xht -reftest css/CSS2/ui/outline-color-052.xht -reftest css/CSS2/ui/outline-color-053.xht -reftest css/CSS2/ui/outline-color-054.xht -reftest css/CSS2/ui/outline-color-058.xht -reftest css/CSS2/ui/outline-color-059.xht -reftest css/CSS2/ui/outline-color-061.xht -reftest css/CSS2/ui/outline-color-062.xht -reftest css/CSS2/ui/outline-color-069.xht -reftest css/CSS2/ui/outline-color-070.xht -reftest css/CSS2/ui/outline-color-071.xht -reftest css/CSS2/ui/outline-color-072.xht -reftest css/CSS2/ui/outline-color-073.xht -reftest css/CSS2/ui/outline-color-074.xht -reftest css/CSS2/ui/outline-color-075.xht -reftest css/CSS2/ui/outline-color-079.xht -reftest css/CSS2/ui/outline-color-081.xht -reftest css/CSS2/ui/outline-color-082.xht -reftest css/CSS2/ui/outline-color-089.xht -reftest css/CSS2/ui/outline-color-090.xht -reftest css/CSS2/ui/outline-color-091.xht -reftest css/CSS2/ui/outline-color-092.xht -reftest css/CSS2/ui/outline-color-093.xht -reftest css/CSS2/ui/outline-color-094.xht -reftest css/CSS2/ui/outline-color-095.xht -reftest css/CSS2/ui/outline-color-099.xht -reftest css/CSS2/ui/outline-color-101.xht -reftest css/CSS2/ui/outline-color-102.xht -reftest css/CSS2/ui/outline-color-109.xht -reftest css/CSS2/ui/outline-color-110.xht -reftest css/CSS2/ui/outline-color-111.xht -reftest css/CSS2/ui/outline-color-112.xht -reftest css/CSS2/ui/outline-color-113.xht -reftest css/CSS2/ui/outline-color-114.xht -reftest css/CSS2/ui/outline-color-115.xht -reftest css/CSS2/ui/outline-color-119.xht -reftest css/CSS2/ui/outline-color-121.xht -reftest css/CSS2/ui/outline-color-122.xht -reftest css/CSS2/ui/outline-color-130.xht reftest css/CSS2/ui/outline-color-applies-to-005.xht reftest css/CSS2/ui/outline-color-applies-to-006.xht reftest css/CSS2/ui/outline-style-001.xht @@ -10849,7 +10662,6 @@ reftest css/CSS2/ui/overflow-applies-to-012.xht reftest css/CSS2/ui/overflow-applies-to-013.xht reftest css/CSS2/ui/overflow-applies-to-014.xht reftest css/CSS2/ui/overflow-applies-to-015.xht -reftest css/CSS2/values/color-000.xht reftest css/CSS2/values/numbers-units-001.xht reftest css/CSS2/values/numbers-units-003.xht reftest css/CSS2/values/numbers-units-004.xht @@ -11332,7 +11144,6 @@ reftest css/WOFF2/valid-007.xht reftest css/WOFF2/valid-008.xht reftest css/compositing/background-blending/background-blend-mode-gradient-image.html reftest css/compositing/background-blending/background-blend-mode-plus-lighter.html -reftest css/compositing/compositing_simple_div.html reftest css/compositing/mix-blend-mode/mix-blend-mode-animation.html reftest css/compositing/mix-blend-mode/mix-blend-mode-blended-element-interposed.html reftest css/compositing/mix-blend-mode/mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html @@ -11355,6 +11166,7 @@ reftest css/compositing/mix-blend-mode/mix-blend-mode-overflowing-child-of-blend reftest css/compositing/mix-blend-mode/mix-blend-mode-overflowing-child.html reftest css/compositing/mix-blend-mode/mix-blend-mode-paragraph-background-image.html reftest css/compositing/mix-blend-mode/mix-blend-mode-paragraph.html +reftest css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-hidden-and-border-radius-2.html reftest css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html reftest css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-scroll-blended-position-fixed.html reftest css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-scroll.html @@ -11365,6 +11177,7 @@ reftest css/compositing/mix-blend-mode/mix-blend-mode-plus-lighter-basic.html reftest css/compositing/mix-blend-mode/mix-blend-mode-plus-lighter-svg-basic.html reftest css/compositing/mix-blend-mode/mix-blend-mode-plus-lighter-svg.html reftest css/compositing/mix-blend-mode/mix-blend-mode-plus-lighter.html +reftest css/compositing/mix-blend-mode/mix-blend-mode-root-element-group.html reftest css/compositing/mix-blend-mode/mix-blend-mode-rotated-clip.html reftest css/compositing/mix-blend-mode/mix-blend-mode-script.html reftest css/compositing/mix-blend-mode/mix-blend-mode-sibling-with-3D-transform.html @@ -11375,6 +11188,10 @@ reftest css/compositing/mix-blend-mode/mix-blend-mode-svg.html reftest css/compositing/mix-blend-mode/mix-blend-mode-video-sibling.html reftest css/compositing/mix-blend-mode/mix-blend-mode-video.html reftest css/compositing/mix-blend-mode/mix-blend-mode-with-transform-and-preserve-3D.html +reftest css/compositing/root-element-background-image-transparency-001.html +reftest css/compositing/root-element-background-image-transparency-002.html +reftest css/compositing/root-element-background-image-transparency-003.html +reftest css/compositing/root-element-background-image-transparency-004.html reftest css/compositing/root-element-background-transparency.html reftest css/compositing/root-element-blend-mode.html reftest css/compositing/root-element-filter.html @@ -11390,45 +11207,109 @@ reftest css/css-align/baseline-rules/grid-item-input-type-text.html reftest css/css-align/baseline-rules/inline-table-inline-block-baseline-vert-rl.html reftest css/css-align/baseline-rules/inline-table-inline-block-baseline.html reftest css/css-align/baseline-rules/synthesized-baseline-table-cell-001.html +reftest css/css-align/blocks/align-content-block-001.html +reftest css/css-align/blocks/align-content-block-break-content-010.html +reftest css/css-align/blocks/align-content-block-break-content-020.html +reftest css/css-align/blocks/align-content-block-break-overflow-010.html +reftest css/css-align/blocks/align-content-block-break-overflow-020.html +reftest css/css-align/blocks/align-content-block-dynamic-content.html +reftest css/css-align/blocks/align-content-block-overflow-000.html +reftest css/css-align/blocks/justify-self-auto-margins-1.html +reftest css/css-align/blocks/justify-self-auto-margins-2.html +reftest css/css-align/blocks/justify-self-text-align.html reftest css/css-align/content-distribution/place-content-shorthand-007.html reftest css/css-align/distribution-values/space-evenly-001.html reftest css/css-align/gaps/gap-normal-used-001.html reftest css/css-align/gaps/gap-normal-used-002.html +reftest css/css-align/self-alignment/block-justify-self.html reftest css/css-align/self-alignment/self-align-safe-unsafe-flex-001.html reftest css/css-align/self-alignment/self-align-safe-unsafe-flex-002.html reftest css/css-align/self-alignment/self-align-safe-unsafe-flex-003.html reftest css/css-align/self-alignment/self-align-safe-unsafe-grid-001.html reftest css/css-align/self-alignment/self-align-safe-unsafe-grid-002.html reftest css/css-align/self-alignment/self-align-safe-unsafe-grid-003.html +reftest css/css-align/self-alignment/self-align-start-end-flex-001.html +reftest css/css-anchor-position/anchor-center-002.html +reftest css/css-anchor-position/anchor-center-scroll.html +reftest css/css-anchor-position/anchor-position-circular.html +reftest css/css-anchor-position/anchor-position-dynamic-005.html reftest css/css-anchor-position/anchor-position-top-layer-001.html reftest css/css-anchor-position/anchor-position-top-layer-002.html reftest css/css-anchor-position/anchor-position-top-layer-003.html reftest css/css-anchor-position/anchor-position-top-layer-004.html reftest css/css-anchor-position/anchor-position-top-layer-005.html reftest css/css-anchor-position/anchor-position-top-layer-006.html -reftest css/css-anchor-position/anchor-scroll-basics.tentative.html -reftest css/css-anchor-position/anchor-scroll-fixedpos.tentative.html -reftest css/css-anchor-position/anchor-scroll-nested.tentative.html -reftest css/css-anchor-position/anchor-scroll-update-001.tentative.html -reftest css/css-anchor-position/anchor-scroll-update-002.tentative.html -reftest css/css-anchor-position/anchor-scroll-update-003.tentative.html -reftest css/css-anchor-position/anchor-scroll-update-004.tentative.html -reftest css/css-anchor-position/anchor-scroll-update-005.tentative.html -reftest css/css-anchor-position/anchor-scroll-update-006.tentative.html -reftest css/css-anchor-position/anchor-scroll-vlr.tentative.html -reftest css/css-anchor-position/anchor-scroll-vrl.tentative.html +reftest css/css-anchor-position/anchor-scroll-001.html +reftest css/css-anchor-position/anchor-scroll-chained-001.html +reftest css/css-anchor-position/anchor-scroll-chained-002.html +reftest css/css-anchor-position/anchor-scroll-chained-003.html +reftest css/css-anchor-position/anchor-scroll-chained-004.html +reftest css/css-anchor-position/anchor-scroll-chained-fallback.html +reftest css/css-anchor-position/anchor-scroll-composited-scrolling-006.html +reftest css/css-anchor-position/anchor-scroll-fixedpos-002.html +reftest css/css-anchor-position/anchor-scroll-fixedpos.html +reftest css/css-anchor-position/anchor-scroll-nested.html +reftest css/css-anchor-position/anchor-scroll-overflow-hidden.html +reftest css/css-anchor-position/anchor-scroll-position-try-012.html +reftest css/css-anchor-position/anchor-scroll-scrollable-anchor.html +reftest css/css-anchor-position/anchor-scroll-to-sticky-001.html +reftest css/css-anchor-position/anchor-scroll-to-sticky-002.html +reftest css/css-anchor-position/anchor-scroll-to-sticky-003.html +reftest css/css-anchor-position/anchor-scroll-to-sticky-004.html +reftest css/css-anchor-position/anchor-scroll-update-001.html +reftest css/css-anchor-position/anchor-scroll-update-002.html +reftest css/css-anchor-position/anchor-scroll-update-003.html +reftest css/css-anchor-position/anchor-scroll-update-004.html +reftest css/css-anchor-position/anchor-scroll-update-005.html +reftest css/css-anchor-position/anchor-scroll-update-006.html +reftest css/css-anchor-position/anchor-scroll-update-007.html +reftest css/css-anchor-position/anchor-scroll-vlr.html +reftest css/css-anchor-position/anchor-scroll-vrl.html +reftest css/css-anchor-position/position-anchor-001.html +reftest css/css-anchor-position/position-anchor-002.html +reftest css/css-anchor-position/position-area-abs-inline-container.html +reftest css/css-anchor-position/position-area-inline-container.html +reftest css/css-anchor-position/position-area-scroll-adjust.html +reftest css/css-anchor-position/position-try-switch-from-fixed-anchor.html +reftest css/css-anchor-position/position-try-switch-to-fixed-anchor.html +reftest css/css-anchor-position/position-visibility-add-no-overflow.html +reftest css/css-anchor-position/position-visibility-anchors-valid.tentative.html +reftest css/css-anchor-position/position-visibility-anchors-visible-after-scroll-in.html +reftest css/css-anchor-position/position-visibility-anchors-visible-after-scroll-out.html +reftest css/css-anchor-position/position-visibility-anchors-visible-both-position-fixed.tentative.html +reftest css/css-anchor-position/position-visibility-anchors-visible-chained-001.html +reftest css/css-anchor-position/position-visibility-anchors-visible-chained-002.html +reftest css/css-anchor-position/position-visibility-anchors-visible-chained-003.html +reftest css/css-anchor-position/position-visibility-anchors-visible-chained-004.html +reftest css/css-anchor-position/position-visibility-anchors-visible-change-anchor.html +reftest css/css-anchor-position/position-visibility-anchors-visible-change-css-visibility.html +reftest css/css-anchor-position/position-visibility-anchors-visible-css-visibility.html +reftest css/css-anchor-position/position-visibility-anchors-visible-non-intervening-container.html +reftest css/css-anchor-position/position-visibility-anchors-visible-position-fixed.tentative.html +reftest css/css-anchor-position/position-visibility-anchors-visible-stacked-child.html +reftest css/css-anchor-position/position-visibility-anchors-visible-stacked-child.tentative.html +reftest css/css-anchor-position/position-visibility-anchors-visible-with-position.html +reftest css/css-anchor-position/position-visibility-anchors-visible.html +reftest css/css-anchor-position/position-visibility-no-overflow-scroll.html +reftest css/css-anchor-position/position-visibility-no-overflow-stacked-child.html +reftest css/css-anchor-position/position-visibility-no-overflow.html +reftest css/css-anchor-position/position-visibility-remove-anchors-visible.html +reftest css/css-anchor-position/position-visibility-remove-no-overflow.html reftest css/css-anchor-position/sticky-anchor-position-invalid.html reftest css/css-animations/animation-delay-008.html reftest css/css-animations/animation-delay-009.html reftest css/css-animations/animation-delay-010.html reftest css/css-animations/animation-delay-011.html reftest css/css-animations/animation-important-002.html +reftest css/css-animations/animation-offscreen-to-onscreen.html reftest css/css-animations/animation-opacity-pause-and-set-time.html reftest css/css-animations/animation-pseudo-dynamic-001.html reftest css/css-animations/animation-transform-pause-and-set-time.html reftest css/css-animations/cancel-animation-shadow-slot-invalidation.html +reftest css/css-animations/display-none-to-display-block.html reftest css/css-animations/flip-running-animation-via-variable.html reftest css/css-animations/inheritance-pseudo-element.html +reftest css/css-animations/jump-start-animation-before-phase.html reftest css/css-animations/nested-scale-animations.html reftest css/css-animations/svg-transform-animation.html reftest css/css-animations/transform-animation-under-large-scale.html @@ -11474,8 +11355,14 @@ reftest css/css-backgrounds/animations/two-background-color-animation-diff-lengt reftest css/css-backgrounds/background-334.html reftest css/css-backgrounds/background-attachment-350.html reftest css/css-backgrounds/background-attachment-353.html +reftest css/css-backgrounds/background-attachment-fixed-block-002.html +reftest css/css-backgrounds/background-attachment-fixed-border-radius-offset.html +reftest css/css-backgrounds/background-attachment-fixed-inline-002.html +reftest css/css-backgrounds/background-attachment-fixed-inline-scrolled.html reftest css/css-backgrounds/background-attachment-fixed-inside-transform-1.html +reftest css/css-backgrounds/background-attachment-local-block-002.html reftest css/css-backgrounds/background-attachment-local-hidden.html +reftest css/css-backgrounds/background-attachment-local-inline-002.html reftest css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-1.html reftest css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-2.html reftest css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-3.html @@ -11509,10 +11396,21 @@ reftest css/css-backgrounds/background-clip-color.html reftest css/css-backgrounds/background-clip-content-box-001.html reftest css/css-backgrounds/background-clip-content-box-002.html reftest css/css-backgrounds/background-clip-padding-box-001.html +reftest css/css-backgrounds/background-clip-padding-box-with-border-radius.html +reftest css/css-backgrounds/background-clip/clip-border-area-background-geometry.html +reftest css/css-backgrounds/background-clip/clip-border-area-border-image.html +reftest css/css-backgrounds/background-clip/clip-border-area-border-on-top.html +reftest css/css-backgrounds/background-clip/clip-border-area-box-decoration-break.html +reftest css/css-backgrounds/background-clip/clip-border-area-multiple-backgrounds.html +reftest css/css-backgrounds/background-clip/clip-border-area.html reftest css/css-backgrounds/background-clip/clip-rounded-corner.html +reftest css/css-backgrounds/background-clip/clip-text-animated-text.html reftest css/css-backgrounds/background-clip/clip-text-dynamic-2.html +reftest css/css-backgrounds/background-clip/clip-text-ellipsis.html reftest css/css-backgrounds/background-clip/clip-text-flex.html reftest css/css-backgrounds/background-clip/clip-text-multi-line.html +reftest css/css-backgrounds/background-clip/clip-text-text-decorations.html +reftest css/css-backgrounds/background-clip/clip-text-text-emphasis.html reftest css/css-backgrounds/background-clip_padding-box.html reftest css/css-backgrounds/background-color-body-propagation-001.html reftest css/css-backgrounds/background-color-body-propagation-002.html @@ -11526,6 +11424,9 @@ reftest css/css-backgrounds/background-color-body-propagation-009.html reftest css/css-backgrounds/background-color-clip.html reftest css/css-backgrounds/background-color-root-propagation-001.html reftest css/css-backgrounds/background-color-root-propagation-002.html +reftest css/css-backgrounds/background-gradient-interpolation-001.html +reftest css/css-backgrounds/background-gradient-interpolation-002.html +reftest css/css-backgrounds/background-gradient-interpolation-003.html reftest css/css-backgrounds/background-gradient-subpixel-fills-area.html reftest css/css-backgrounds/background-image-001.html reftest css/css-backgrounds/background-image-002.html @@ -11543,6 +11444,7 @@ reftest css/css-backgrounds/background-image-gradient-currentcolor-conic-repaint reftest css/css-backgrounds/background-image-gradient-currentcolor-linear-repaint.html reftest css/css-backgrounds/background-image-gradient-currentcolor-radial-repaint.html reftest css/css-backgrounds/background-image-gradient-currentcolor-visited.html +reftest css/css-backgrounds/background-image-gradient-interpolation-repaint.html reftest css/css-backgrounds/background-image-large-with-auto.html reftest css/css-backgrounds/background-image-none-gradient-repaint.html reftest css/css-backgrounds/background-image-shared-stylesheet.html @@ -11561,12 +11463,27 @@ reftest css/css-backgrounds/background-origin-005.html reftest css/css-backgrounds/background-origin-006.html reftest css/css-backgrounds/background-origin-007.html reftest css/css-backgrounds/background-origin-008.html +reftest css/css-backgrounds/background-origin/origin-border-box.html +reftest css/css-backgrounds/background-origin/origin-border-box_with_position.html +reftest css/css-backgrounds/background-origin/origin-border-box_with_radius.html +reftest css/css-backgrounds/background-origin/origin-border-box_with_size.html +reftest css/css-backgrounds/background-origin/origin-content-box.html +reftest css/css-backgrounds/background-origin/origin-content-box_with_position.html +reftest css/css-backgrounds/background-origin/origin-content-box_with_radius.html +reftest css/css-backgrounds/background-origin/origin-content-box_with_size.html +reftest css/css-backgrounds/background-origin/origin-padding-box.html +reftest css/css-backgrounds/background-origin/origin-padding-box_with_position.html +reftest css/css-backgrounds/background-origin/origin-padding-box_with_radius.html +reftest css/css-backgrounds/background-origin/origin-padding-box_with_size.html reftest css/css-backgrounds/background-paint-order-001.html reftest css/css-backgrounds/background-position-calc-minmax-001.html +reftest css/css-backgrounds/background-position-negative-percentage-comparison-002.html reftest css/css-backgrounds/background-position-negative-percentage-comparison.html reftest css/css-backgrounds/background-position-subpixel-at-border.tentative.html reftest css/css-backgrounds/background-position-three-four-values.html reftest css/css-backgrounds/background-position-xy-three-four-values-passthru.html +reftest css/css-backgrounds/background-position/background-position-bottom-right-repeat-round.html +reftest css/css-backgrounds/background-position/background-position-right-in-body.html reftest css/css-backgrounds/background-position/subpixel-position-center.tentative.html reftest css/css-backgrounds/background-repeat-round-1a.html reftest css/css-backgrounds/background-repeat-round-1b.html @@ -11595,7 +11512,8 @@ reftest css/css-backgrounds/background-repeat/background-repeat-round-roundup.xh reftest css/css-backgrounds/background-repeat/background-repeat-round.xht reftest css/css-backgrounds/background-repeat/background-repeat-space.xht reftest css/css-backgrounds/background-repeat/gradient-repeat-spaced-with-borders.html -reftest css/css-backgrounds/background-rounded-image-clip.html +reftest css/css-backgrounds/background-rounded-image-clip-001.html +reftest css/css-backgrounds/background-rounded-image-clip-002.html reftest css/css-backgrounds/background-size-002.html reftest css/css-backgrounds/background-size-005.html reftest css/css-backgrounds/background-size-006.html @@ -11634,9 +11552,11 @@ reftest css/css-backgrounds/background-size-cover-003.html reftest css/css-backgrounds/background-size-one-value-1x1-image.html reftest css/css-backgrounds/background-size-percentage-root.html reftest css/css-backgrounds/background-size-with-negative-value.html +reftest css/css-backgrounds/background-size/background-size-contain-svg-view.html reftest css/css-backgrounds/background-size/background-size-contain.xht reftest css/css-backgrounds/background-size/background-size-cover-contain-001.xht reftest css/css-backgrounds/background-size/background-size-cover-contain-002.xht +reftest css/css-backgrounds/background-size/background-size-cover-svg-view.html reftest css/css-backgrounds/background-size/background-size-cover-svg.html reftest css/css-backgrounds/background-size/background-size-cover.xht reftest css/css-backgrounds/background-size/background-size-near-zero-color.html @@ -11865,20 +11785,37 @@ reftest css/css-backgrounds/border-bottom-right-radius-014.xht reftest css/css-backgrounds/border-bottom-width-medium.html reftest css/css-backgrounds/border-bottom-width-thick.html reftest css/css-backgrounds/border-bottom-width-thin.html +reftest css/css-backgrounds/border-image-002.html +reftest css/css-backgrounds/border-image-003.html +reftest css/css-backgrounds/border-image-004.html +reftest css/css-backgrounds/border-image-006.html +reftest css/css-backgrounds/border-image-007.html +reftest css/css-backgrounds/border-image-011.html +reftest css/css-backgrounds/border-image-012.html +reftest css/css-backgrounds/border-image-013.html reftest css/css-backgrounds/border-image-017.xht reftest css/css-backgrounds/border-image-018.xht reftest css/css-backgrounds/border-image-019.xht reftest css/css-backgrounds/border-image-020.xht -reftest css/css-backgrounds/border-image-6.html reftest css/css-backgrounds/border-image-calc.html reftest css/css-backgrounds/border-image-displayed-with-transparent-border-color.html +reftest css/css-backgrounds/border-image-image-type-001.htm +reftest css/css-backgrounds/border-image-image-type-002.htm reftest css/css-backgrounds/border-image-image-type-003.htm +reftest css/css-backgrounds/border-image-image-type-004.htm +reftest css/css-backgrounds/border-image-image-type-005.htm reftest css/css-backgrounds/border-image-outset-003.html +reftest css/css-backgrounds/border-image-repeat-002.htm +reftest css/css-backgrounds/border-image-repeat-004.htm reftest css/css-backgrounds/border-image-repeat-005.html reftest css/css-backgrounds/border-image-repeat-1.html +reftest css/css-backgrounds/border-image-repeat-repeat-001.html +reftest css/css-backgrounds/border-image-repeat-round-003.html reftest css/css-backgrounds/border-image-repeat-round-1.html reftest css/css-backgrounds/border-image-repeat-round-2.html +reftest css/css-backgrounds/border-image-repeat-round-stretch-001.html reftest css/css-backgrounds/border-image-repeat-round.html +reftest css/css-backgrounds/border-image-repeat-space-011.html reftest css/css-backgrounds/border-image-repeat-space-1.html reftest css/css-backgrounds/border-image-repeat-space-10.html reftest css/css-backgrounds/border-image-repeat-space-2.html @@ -11891,6 +11828,7 @@ reftest css/css-backgrounds/border-image-repeat-space-6.html reftest css/css-backgrounds/border-image-repeat-space-7.html reftest css/css-backgrounds/border-image-repeat-space-8.html reftest css/css-backgrounds/border-image-repeat-space-9.html +reftest css/css-backgrounds/border-image-repeat-stretch-round-001.html reftest css/css-backgrounds/border-image-round-and-stretch.html reftest css/css-backgrounds/border-image-shorthand-001.htm reftest css/css-backgrounds/border-image-shorthand-002.htm @@ -11898,10 +11836,16 @@ reftest css/css-backgrounds/border-image-shorthand-003.htm reftest css/css-backgrounds/border-image-slice-001.xht reftest css/css-backgrounds/border-image-slice-002.xht reftest css/css-backgrounds/border-image-slice-003.xht +reftest css/css-backgrounds/border-image-slice-004.htm reftest css/css-backgrounds/border-image-slice-005.htm +reftest css/css-backgrounds/border-image-slice-006.htm reftest css/css-backgrounds/border-image-slice-007.htm +reftest css/css-backgrounds/border-image-slice-fill-001.html +reftest css/css-backgrounds/border-image-slice-fill-002.html +reftest css/css-backgrounds/border-image-slice-fill-003.html reftest css/css-backgrounds/border-image-slice-percentage.html reftest css/css-backgrounds/border-image-space-001.html +reftest css/css-backgrounds/border-image-width-001.htm reftest css/css-backgrounds/border-image-width-005.xht reftest css/css-backgrounds/border-image-width-006.xht reftest css/css-backgrounds/border-image-width-007.xht @@ -11963,12 +11907,13 @@ reftest css/css-backgrounds/box-shadow-040.html reftest css/css-backgrounds/box-shadow-041.html reftest css/css-backgrounds/box-shadow-042.html reftest css/css-backgrounds/box-shadow-body.html +reftest css/css-backgrounds/box-shadow-border-radius-001.html reftest css/css-backgrounds/box-shadow-calc.html reftest css/css-backgrounds/box-shadow-currentcolor.html -reftest css/css-backgrounds/box-shadow-inset-spread-without-border-radius.html reftest css/css-backgrounds/box-shadow-inset-without-border-radius.html -reftest css/css-backgrounds/box-shadow-outset-spread-without-border-radius.html -reftest css/css-backgrounds/box-shadow-outset-without-border-radius.html +reftest css/css-backgrounds/box-shadow-invalid-001.html +reftest css/css-backgrounds/box-shadow-multiple-001.html +reftest css/css-backgrounds/box-shadow-outset-without-border-radius-001.html reftest css/css-backgrounds/box-shadow-overlapping-001.html reftest css/css-backgrounds/box-shadow-overlapping-002.html reftest css/css-backgrounds/box-shadow-overlapping-003.html @@ -11983,6 +11928,12 @@ reftest css/css-backgrounds/box-shadow/slice-inline-fragmentation-001.html reftest css/css-backgrounds/box-shadow/slice-inline-fragmentation-002.html reftest css/css-backgrounds/box-shadow/slice-inline-fragmentation-003.html reftest css/css-backgrounds/child-move-reveals-parent-background.html +reftest css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html +reftest css/css-backgrounds/color-mix-currentcolor-background-repaint.html +reftest css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html +reftest css/css-backgrounds/color-mix-currentcolor-border-repaint.html +reftest css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html +reftest css/css-backgrounds/color-mix-currentcolor-outline-repaint.html reftest css/css-backgrounds/css-border-radius-001.html reftest css/css-backgrounds/css-box-shadow-001.html reftest css/css-backgrounds/css3-background-clip-border-box.html @@ -11999,6 +11950,7 @@ reftest css/css-backgrounds/css3-border-image-repeat-repeat.html reftest css/css-backgrounds/css3-border-image-repeat-stretch.html reftest css/css-backgrounds/css3-border-image-source.html reftest css/css-backgrounds/css3-box-shadow.html +reftest css/css-backgrounds/currentcolor-border-repaint-parent.html reftest css/css-backgrounds/document-canvas-remove-body.html reftest css/css-backgrounds/fieldset-inset-shadow.html reftest css/css-backgrounds/first-letter-space-not-selected.html @@ -12009,21 +11961,58 @@ reftest css/css-backgrounds/inset-box-shadow-scroll.html reftest css/css-backgrounds/inset-box-shadow-stacking-context-scroll.html reftest css/css-backgrounds/linear-gradient-currentcolor-first-line.html reftest css/css-backgrounds/local-attachment-content-box-scroll.html +reftest css/css-backgrounds/order-of-images.htm reftest css/css-backgrounds/scroll-positioned-multiple-background-images.html -reftest css/css-backgrounds/simple-bg-color.html reftest css/css-backgrounds/subpixel-repeat-no-repeat-mix.html +reftest css/css-backgrounds/table-cell-background-local-002.html +reftest css/css-backgrounds/table-cell-background-local-003.html reftest css/css-backgrounds/table-cell-background-local.html reftest css/css-backgrounds/ttwf-reftest-borderRadius.html +reftest css/css-borders/border-radius-greater-than-width.html reftest css/css-borders/borders-on-sub-unit-sized-elements.html reftest css/css-borders/subpixel-border-width.tentative.html reftest css/css-borders/subpixel-borders-with-child-border-box-sizing.html reftest css/css-borders/subpixel-borders-with-child.html +reftest css/css-borders/tentative/border-radius-side-shorthands/border-radius-side-shorthands-001.html +reftest css/css-borders/tentative/border-radius-side-shorthands/border-radius-side-shorthands-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-003.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-004.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-bottom-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-bottom-left-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-bottom-right-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-bottom-right-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-left-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-right-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-left-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-left-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-left-bottom-right-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-left-bottom-right-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-left-bottom-right-003.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-right-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-right-bottom-left-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-right-bottom-left-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-angle-top-right-bottom-left-003.html +reftest css/css-borders/tentative/corner-shape/corner-shape-round-bottom-left-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-round-bottom-right-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-round-bottom-right-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-round-top-left-001.html +reftest css/css-borders/tentative/corner-shape/corner-shape-round-top-left-002.html +reftest css/css-borders/tentative/corner-shape/corner-shape-round-top-right-001.html reftest css/css-box/margin-trim/block-container-block-001.html reftest css/css-box/margin-trim/block-container-block-002.html reftest css/css-box/margin-trim/block-container-block-end-001.html reftest css/css-box/margin-trim/block-container-block-end-002.html +reftest css/css-box/margin-trim/block-container-block-end-collapsed-margins.html +reftest css/css-box/margin-trim/block-container-block-end-self-collapsing-item-has-larger-block-end.html +reftest css/css-box/margin-trim/block-container-block-end-self-collapsing-item-has-larger-block-start.html reftest css/css-box/margin-trim/block-container-block-start-001.html reftest css/css-box/margin-trim/block-container-block-start-002.html +reftest css/css-box/margin-trim/block-container-block-start-collapsed-margins.html +reftest css/css-box/margin-trim/block-container-block-start-self-collapsing-item-has-larger-block-end.html +reftest css/css-box/margin-trim/block-container-block-start-self-collapsing-item-larger-block-start.html reftest css/css-box/margin-trim/block-container-non-adjoining-item.html reftest css/css-box/margin-trim/block-container-replaced-block-end.html reftest css/css-box/margin-trim/block-container-replaced-block-start.html @@ -12036,6 +12025,9 @@ reftest css/css-box/margin-trim/flex-column-grow.html reftest css/css-box/margin-trim/flex-column-inline-multiline.html reftest css/css-box/margin-trim/flex-column-orthogonal-item.html reftest css/css-box/margin-trim/flex-column-shrink.html +reftest css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-end.html +reftest css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-start.html +reftest css/css-box/margin-trim/flex-column-style-change-triggers-layout-block.html reftest css/css-box/margin-trim/flex-inline-end-trimmed-only.html reftest css/css-box/margin-trim/flex-inline-start-trimmed-only.html reftest css/css-box/margin-trim/flex-inline-trimmed-only.html @@ -12044,6 +12036,9 @@ reftest css/css-box/margin-trim/flex-row-grow.html reftest css/css-box/margin-trim/flex-row-inline-multiline.html reftest css/css-box/margin-trim/flex-row-orthogonal-item.html reftest css/css-box/margin-trim/flex-row-shrink.html +reftest css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-end.html +reftest css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-start.html +reftest css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline.html reftest css/css-box/margin-trim/flex-trim-all-margins.html reftest css/css-box/margin-trim/grid-block-end.html reftest css/css-box/margin-trim/grid-block-start.html @@ -12055,11 +12050,20 @@ reftest css/css-box/margin-trim/grid-trim-ignores-collapsed-tracks.html reftest css/css-break/abspos-in-offset-relpos.html reftest css/css-break/abspos-in-opacity-000.html reftest css/css-break/abspos-in-opacity-001.html +reftest css/css-break/abspos-in-opacity-002.html +reftest css/css-break/abspos-in-opacity-003.html reftest css/css-break/abspos-inside-relpos-inside-monolithic.html reftest css/css-break/avoid-border-break.html +reftest css/css-break/background-attachment-fixed.html reftest css/css-break/background-image-000.html reftest css/css-break/background-image-001.html reftest css/css-break/background-image-002.html +reftest css/css-break/background-image-003.html +reftest css/css-break/background-image-004.html +reftest css/css-break/background-image-005.html +reftest css/css-break/background-image-006.html +reftest css/css-break/background-image-007.html +reftest css/css-break/become-unfragmented-001.html reftest css/css-break/block-end-aligned-abspos-nested.html reftest css/css-break/block-end-aligned-abspos-with-overflow.html reftest css/css-break/block-in-inline-000.html @@ -12067,14 +12071,19 @@ reftest css/css-break/block-in-inline-001.html reftest css/css-break/block-in-inline-002.html reftest css/css-break/block-in-inline-003.html reftest css/css-break/block-in-inline-004.html +reftest css/css-break/block-in-inline-008.html +reftest css/css-break/block-in-inline-009.html +reftest css/css-break/block-in-inline-011.html reftest css/css-break/block-max-height-001.html reftest css/css-break/block-max-height-001b.html reftest css/css-break/block-max-height-002.html reftest css/css-break/block-max-height-002b.html reftest css/css-break/block-max-height-003.html reftest css/css-break/block-max-height-003b.html +reftest css/css-break/block-max-height-004.html reftest css/css-break/block-min-height-001.html reftest css/css-break/block-min-height-001b.html +reftest css/css-break/border-image-000.html reftest css/css-break/borders-000.html reftest css/css-break/borders-001.html reftest css/css-break/borders-002.html @@ -12083,14 +12092,45 @@ reftest css/css-break/borders-004.html reftest css/css-break/borders-005.html reftest css/css-break/borders-006.html reftest css/css-break/borders-007.html +reftest css/css-break/borders-008.html reftest css/css-break/box-decoration-break-clone-001.html reftest css/css-break/box-decoration-break-clone-002.html reftest css/css-break/box-decoration-break-clone-003.html reftest css/css-break/box-decoration-break-clone-004.html +reftest css/css-break/box-decoration-break-clone-005.tentative.html +reftest css/css-break/box-decoration-break-clone-006.html +reftest css/css-break/box-decoration-break-clone-007.html +reftest css/css-break/box-decoration-break-clone-008.html +reftest css/css-break/box-decoration-break-clone-009.html +reftest css/css-break/box-decoration-break-clone-010.html +reftest css/css-break/box-decoration-break-clone-011.html +reftest css/css-break/box-decoration-break-clone-012.html +reftest css/css-break/box-decoration-break-clone-013.html +reftest css/css-break/box-decoration-break-clone-014.html +reftest css/css-break/box-decoration-break-clone-015.html +reftest css/css-break/box-decoration-break-clone-016.html +reftest css/css-break/box-decoration-break-clone-017.html +reftest css/css-break/box-decoration-break-clone-018.html +reftest css/css-break/box-decoration-break-clone-019.html +reftest css/css-break/box-decoration-break-clone-020.html +reftest css/css-break/box-decoration-break-clone-021.html +reftest css/css-break/box-decoration-break-clone-022.html +reftest css/css-break/box-decoration-break-clone-023.html +reftest css/css-break/box-decoration-break-clone-024.html +reftest css/css-break/box-decoration-break-clone-025.html +reftest css/css-break/box-decoration-break-clone-026.html +reftest css/css-break/box-decoration-break-clone-027.html +reftest css/css-break/box-decoration-break-clone-028.html +reftest css/css-break/box-decoration-break-clone-029.html +reftest css/css-break/box-decoration-break-clone-030.html +reftest css/css-break/box-decoration-break-clone-031.html +reftest css/css-break/box-decoration-break-clone-033.html +reftest css/css-break/box-decoration-break-clone-034.html reftest css/css-break/box-shadow-001.html reftest css/css-break/box-shadow-002.html reftest css/css-break/box-shadow-003.html reftest css/css-break/box-shadow-004.html +reftest css/css-break/box-shadow-005.html reftest css/css-break/br-clear-all.html reftest css/css-break/break-at-end-container-edge-000.html reftest css/css-break/break-at-end-container-edge-001.html @@ -12134,6 +12174,8 @@ reftest css/css-break/class-c-breakpoint-after-float-004.html reftest css/css-break/clearance-parallel-flow-001.html reftest css/css-break/clearance-parallel-flow-002.html reftest css/css-break/clearance-self-collapsing-past-fragmented-float.html +reftest css/css-break/clipping-001.html +reftest css/css-break/clipping-002.html reftest css/css-break/contain-strict-with-opacity-and-oof.html reftest css/css-break/fieldset-001.html reftest css/css-break/fieldset-002.html @@ -12155,7 +12197,16 @@ reftest css/css-break/flexbox/flex-container-fragmentation-009.html reftest css/css-break/flexbox/flex-container-fragmentation-010.html reftest css/css-break/flexbox/flex-container-fragmentation-011.html reftest css/css-break/flexbox/flex-fragmented-with-float-descendant-001.html +reftest css/css-break/flexbox/flex-item-content-overflow-001a.html +reftest css/css-break/flexbox/flex-item-content-overflow-001b.html +reftest css/css-break/flexbox/flex-item-content-overflow-002a.html +reftest css/css-break/flexbox/flex-item-content-overflow-002b.html +reftest css/css-break/flexbox/flex-item-content-overflow-003.html reftest css/css-break/flexbox/increase-fragmentainer-size-flex-item-trailing-margin.html +reftest css/css-break/flexbox/monolithic-overflow-001.tentative.html +reftest css/css-break/flexbox/monolithic-overflow-002.tentative.html +reftest css/css-break/flexbox/monolithic-overflow-003.tentative.html +reftest css/css-break/flexbox/monolithic-overflow-004.tentative.html reftest css/css-break/flexbox/multi-line-column-flex-fragmentation-001.html reftest css/css-break/flexbox/multi-line-column-flex-fragmentation-002.html reftest css/css-break/flexbox/multi-line-column-flex-fragmentation-003.html @@ -12223,7 +12274,6 @@ reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-011.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-012.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-013.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-014.html -reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-015.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-016.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-017.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-018.html @@ -12271,6 +12321,23 @@ reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-059.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-060.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-061.html reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-062.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-065.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-066.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-067.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-068.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-069.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-070.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-071.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-072.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-073.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-074.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-077.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-078.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-079.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-083a.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-083b.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-083c.html +reftest css/css-break/flexbox/multi-line-row-flex-fragmentation-083d.html reftest css/css-break/flexbox/nested-flex-item-expansion-in-mulicol.html reftest css/css-break/flexbox/single-line-column-flex-fragmentation-001.html reftest css/css-break/flexbox/single-line-column-flex-fragmentation-002.html @@ -12330,6 +12397,17 @@ reftest css/css-break/flexbox/single-line-column-flex-fragmentation-055.html reftest css/css-break/flexbox/single-line-column-flex-fragmentation-056.html reftest css/css-break/flexbox/single-line-column-flex-fragmentation-057.html reftest css/css-break/flexbox/single-line-column-flex-fragmentation-058.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-059.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-061.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-062.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-063.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-064.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-067.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-070a.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-070b.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-070c.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-070d.html +reftest css/css-break/flexbox/single-line-column-flex-fragmentation-071.html reftest css/css-break/flexbox/single-line-row-flex-fragmentation-001.html reftest css/css-break/flexbox/single-line-row-flex-fragmentation-002.html reftest css/css-break/flexbox/single-line-row-flex-fragmentation-003.html @@ -12371,6 +12449,10 @@ reftest css/css-break/flexbox/single-line-row-flex-fragmentation-038.html reftest css/css-break/flexbox/single-line-row-flex-fragmentation-039.html reftest css/css-break/flexbox/single-line-row-flex-fragmentation-040.html reftest css/css-break/flexbox/single-line-row-flex-fragmentation-041.html +reftest css/css-break/flexbox/single-line-row-flex-fragmentation-043.html +reftest css/css-break/flexbox/single-line-row-flex-fragmentation-044.html +reftest css/css-break/flexbox/single-line-row-flex-fragmentation-047.html +reftest css/css-break/flexbox/single-line-row-flex-fragmentation-048.html reftest css/css-break/float-000.html reftest css/css-break/float-001.html reftest css/css-break/float-002.html @@ -12383,6 +12465,11 @@ reftest css/css-break/float-008.html reftest css/css-break/float-009.html reftest css/css-break/float-010.html reftest css/css-break/float-012.html +reftest css/css-break/float-013.html +reftest css/css-break/float-014.tentative.html +reftest css/css-break/float-015.tentative.html +reftest css/css-break/float-016.html +reftest css/css-break/float-017.html reftest css/css-break/float-in-self-collapsing-block-000.html reftest css/css-break/float-in-self-collapsing-block-001.html reftest css/css-break/float-inside-small-block.html @@ -12405,6 +12492,7 @@ reftest css/css-break/grid/grid-container-fragmentation-008.html reftest css/css-break/grid/grid-container-fragmentation-009.html reftest css/css-break/grid/grid-container-fragmentation-010.html reftest css/css-break/grid/grid-container-fragmentation-011.html +reftest css/css-break/grid/grid-container-fragmentation-012.html reftest css/css-break/grid/grid-item-008.html reftest css/css-break/grid/grid-item-009.html reftest css/css-break/grid/grid-item-fragmentation-001.html @@ -12467,15 +12555,49 @@ reftest css/css-break/grid/grid-item-oof-008.html reftest css/css-break/grid/grid-item-oof-009.html reftest css/css-break/grid/grid-item-oof-010.html reftest css/css-break/grid/grid-item-oof-011.html +reftest css/css-break/grid/grid-item-overflow-001.html +reftest css/css-break/grid/monolithic-overflow-001.tentative.html +reftest css/css-break/grid/monolithic-overflow-002.tentative.html +reftest css/css-break/grid/monolithic-overflow-003.tentative.html +reftest css/css-break/grid/monolithic-overflow-004.tentative.html +reftest css/css-break/grid/monolithic-overflow-005.html +reftest css/css-break/grid/monolithic-overflow-006.html +reftest css/css-break/grid/monolithic-overflow-007.html +reftest css/css-break/grid/monolithic-overflow-008.html +reftest css/css-break/grid/monolithic-overflow-009.html +reftest css/css-break/grid/subgrid/subgrid-container-fragmentation-001.html +reftest css/css-break/grid/subgrid/subgrid-container-fragmentation-002.html +reftest css/css-break/grid/subgrid/subgrid-container-fragmentation-003.html +reftest css/css-break/grid/subgrid/subgrid-container-fragmentation-004.html +reftest css/css-break/grid/subgrid/subgrid-container-fragmentation-005.html +reftest css/css-break/grid/subgrid/subgrid-item-fragmentation-001.html +reftest css/css-break/grid/subgrid/subgrid-item-fragmentation-002.html +reftest css/css-break/grid/subgrid/subgrid-item-fragmentation-003.html +reftest css/css-break/grid/subgrid/subgrid-item-fragmentation-004.html +reftest css/css-break/grid/subgrid/subgrid-item-fragmentation-005.html reftest css/css-break/increase-fragmentainer-size-tall-border.html reftest css/css-break/ink-overflow-002.html +reftest css/css-break/inline-with-float-001.html +reftest css/css-break/inline-with-float-002.html +reftest css/css-break/inline-with-float-004.html reftest css/css-break/line-after-unbreakable-float-after-padding.html reftest css/css-break/line-pushed-by-float-000.html reftest css/css-break/line-pushed-by-float-001.html reftest css/css-break/margin-after-overflowed-block.html +reftest css/css-break/margin-at-break-001.html +reftest css/css-break/margin-at-break-002.html +reftest css/css-break/margin-at-break-003.html +reftest css/css-break/margin-at-break-004.html +reftest css/css-break/margin-at-break-005.html reftest css/css-break/monolithic-content-with-forced-break-001.html reftest css/css-break/monolithic-content-with-forced-break-002.html reftest css/css-break/monolithic-content-with-forced-break-003.html +reftest css/css-break/monolithic-overflow-001.tentative.html +reftest css/css-break/monolithic-overflow-002.tentative.html +reftest css/css-break/monolithic-overflow-003.tentative.html +reftest css/css-break/monolithic-overflow-004.tentative.html +reftest css/css-break/monolithic-overflow-005.tentative.html +reftest css/css-break/monolithic-overflow-006.tentative.html reftest css/css-break/monolithic-with-overflow-lr.html reftest css/css-break/monolithic-with-overflow-rl.html reftest css/css-break/monolithic-with-overflow.html @@ -12594,6 +12716,8 @@ reftest css/css-break/out-of-flow-in-multicolumn-112.html reftest css/css-break/out-of-flow-in-multicolumn-113.html reftest css/css-break/out-of-flow-in-multicolumn-114.html reftest css/css-break/out-of-flow-in-multicolumn-115.html +reftest css/css-break/out-of-flow-in-multicolumn-116.html +reftest css/css-break/out-of-flow-in-multicolumn-117.html reftest css/css-break/overflow-clip-000.html reftest css/css-break/overflow-clip-001.html reftest css/css-break/overflow-clip-002.html @@ -12607,6 +12731,10 @@ reftest css/css-break/overflow-clip-010.html reftest css/css-break/overflow-clip-011.html reftest css/css-break/overflow-clip-012.html reftest css/css-break/overflow-clip-013.html +reftest css/css-break/overflow-clip-014.html +reftest css/css-break/overflow-clip-015.html +reftest css/css-break/overflow-clip-016.html +reftest css/css-break/overflow-clip-017.html reftest css/css-break/overflowed-block-with-no-room-after-000.html reftest css/css-break/overflowed-block-with-no-room-after-001.html reftest css/css-break/overflowed-block-with-room-after-000.html @@ -12614,14 +12742,19 @@ reftest css/css-break/overflowed-block-with-room-after-001.html reftest css/css-break/overflowed-block-with-room-after-002.html reftest css/css-break/overflowed-block-with-room-after-003.html reftest css/css-break/overflowed-block-with-room-after-004.html +reftest css/css-break/overflowing-block-003.html +reftest css/css-break/overflowing-block-004.html reftest css/css-break/parallel-flow-trailing-margin-001.html reftest css/css-break/parallel-flow-trailing-margin-002.html reftest css/css-break/relpos-inline.html +reftest css/css-break/rounded-clipped-border.html reftest css/css-break/ruby-000.html reftest css/css-break/ruby-001.html reftest css/css-break/ruby-002.html reftest css/css-break/ruby-003.html +reftest css/css-break/soft-break-before-margin-001.html reftest css/css-break/svg-with-transform.html +reftest css/css-break/table/border-collapse-001.html reftest css/css-break/table/border-spacing-at-breaks.tentative.html reftest css/css-break/table/break-after-table-cell-child.html reftest css/css-break/table/break-after-table-cell.html @@ -12644,9 +12777,16 @@ reftest css/css-break/table/caption-margin-001.html reftest css/css-break/table/caption-margin-002.html reftest css/css-break/table/caption-margin-003.html reftest css/css-break/table/caption-margin-004.html +reftest css/css-break/table/caption-margin-005.html reftest css/css-break/table/dynamic-caption-child-change-001.html reftest css/css-break/table/final-border-spacing-at-fragmentainer-boundary.html reftest css/css-break/table/inside-flex-001.html +reftest css/css-break/table/monolithic-overflow-001.tentative.html +reftest css/css-break/table/monolithic-overflow-002.tentative.html +reftest css/css-break/table/monolithic-overflow-003.tentative.html +reftest css/css-break/table/monolithic-overflow-004.tentative.html +reftest css/css-break/table/monolithic-overflow-005.html +reftest css/css-break/table/monolithic-overflow-006.html reftest css/css-break/table/oof-in-cell-with-alignment-001.html reftest css/css-break/table/oof-in-cell-with-alignment-002.html reftest css/css-break/table/oof-in-cell-with-alignment-003.html @@ -12657,6 +12797,7 @@ reftest css/css-break/table/repeated-section/abspos-in-monolithic.tentative.html reftest css/css-break/table/repeated-section/abspos-uncontained-text.html reftest css/css-break/table/repeated-section/abspos-uncontained.tentative.html reftest css/css-break/table/repeated-section/abspos.tentative.html +reftest css/css-break/table/repeated-section/background-001.tentative.html reftest css/css-break/table/repeated-section/balanced-inner-multicol.html reftest css/css-break/table/repeated-section/block-in-inline.tentative.html reftest css/css-break/table/repeated-section/break-avoidance-in-bottom-caption.tentative.html @@ -12670,6 +12811,9 @@ reftest css/css-break/table/repeated-section/inline-block.tentative.html reftest css/css-break/table/repeated-section/multicol.tentative.html reftest css/css-break/table/repeated-section/multiple-row-groups.tentative.html reftest css/css-break/table/repeated-section/repeated-header-border-spacing.tentative.html +reftest css/css-break/table/repeated-section/repeated-section-in-clipped-overflow-001.tentative.html +reftest css/css-break/table/repeated-section/repeated-section-in-clipped-overflow-002.tentative.html +reftest css/css-break/table/repeated-section/repeated-section-in-clipped-overflow-003.tentative.html reftest css/css-break/table/repeated-section/tall-monolithic-after-repeated-header.tentative.html reftest css/css-break/table/repeated-section/variable-fragmentainer-size-001.html reftest css/css-break/table/repeated-section/variable-fragmentainer-size-002.html @@ -12697,6 +12841,8 @@ reftest css/css-break/table/table-border-008.html reftest css/css-break/table/table-caption-and-cells-fixed-width.html reftest css/css-break/table/table-caption-and-cells.html reftest css/css-break/table/table-caption-with-block.html +reftest css/css-break/table/table-cell-border-001.html +reftest css/css-break/table/table-cell-border-002.html reftest css/css-break/table/table-cell-expansion-001.html reftest css/css-break/table/table-cell-expansion-002.html reftest css/css-break/table/table-cell-expansion-003.html @@ -12738,6 +12884,7 @@ reftest css/css-break/tall-float-pushed-to-next-fragmentainer-000.html reftest css/css-break/tall-float-pushed-to-next-fragmentainer-001.html reftest css/css-break/tall-float-pushed-to-next-fragmentainer-002.html reftest css/css-break/tall-float-pushed-to-next-fragmentainer-003.html +reftest css/css-break/tall-float-pushed-to-next-fragmentainer-004.html reftest css/css-break/tall-line-in-short-fragmentainer-000.html reftest css/css-break/tall-line-in-short-fragmentainer-001.html reftest css/css-break/tall-line-in-short-fragmentainer-002.html @@ -12754,6 +12901,16 @@ reftest css/css-break/transform-006.html reftest css/css-break/transform-007.html reftest css/css-break/transform-008.html reftest css/css-break/transform-009.html +reftest css/css-break/transform-012.html +reftest css/css-break/transform-013.html +reftest css/css-break/transform-014.html +reftest css/css-break/transform-015.html +reftest css/css-break/transform-016.html +reftest css/css-break/transform-017.html +reftest css/css-break/transform-018.html +reftest css/css-break/transform-019.html +reftest css/css-break/transform-020.html +reftest css/css-break/transform-021.html reftest css/css-break/truncated-margin-at-fragmentainer-end-001.html reftest css/css-break/truncated-margin-at-fragmentainer-end-002.html reftest css/css-break/widows-001.html @@ -12775,6 +12932,7 @@ reftest css/css-break/widows-orphans-015.html reftest css/css-break/widows-orphans-016.html reftest css/css-break/widows-orphans-017.html reftest css/css-break/widows-orphans-018.html +reftest css/css-break/widows-orphans-019.html reftest css/css-break/will-change-filter.html reftest css/css-cascade/all-prop-001.html reftest css/css-cascade/all-prop-002.html @@ -12786,6 +12944,7 @@ reftest css/css-cascade/all-prop-revert-visited.html reftest css/css-cascade/all-prop-unset-color.html reftest css/css-cascade/all-prop-unset-visited.html reftest css/css-cascade/import-conditional-001.html +reftest css/css-cascade/import-conditional-002.html reftest css/css-cascade/import-removal.html reftest css/css-cascade/important-prop.html reftest css/css-cascade/initial-background-color.html @@ -12810,18 +12969,25 @@ reftest css/css-cascade/revert-layer-014.html reftest css/css-cascade/revert-layer-015.html reftest css/css-cascade/revert-val-001.html reftest css/css-cascade/revert-val-002.html +reftest css/css-cascade/scope-featureless.html +reftest css/css-cascade/scope-part.html +reftest css/css-cascade/scope-pseudo-element.html +reftest css/css-cascade/scope-shadow-sharing.html +reftest css/css-cascade/scope-visited.html reftest css/css-cascade/unset-val-001.html reftest css/css-cascade/unset-val-002.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-change-checkbox.html +reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-about-blank.tentative.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-alpha.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-used-preferred.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background.html +reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-page-dark.html +reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-page-light.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-table-border-currentcolor-responsive.html reftest css/css-color-adjust/rendering/dark-color-scheme/color-scheme-visited-link-initial.html -reftest css/css-color-adjust/rendering/dark-color-scheme/svg-as-image.html reftest css/css-color/a98rgb-001.html reftest css/css-color/a98rgb-002.html reftest css/css-color/a98rgb-003.html @@ -12838,17 +13004,22 @@ reftest css/css-color/background-color-rgb-002.html reftest css/css-color/background-color-rgb-003.html reftest css/css-color/body-opacity-0-to-1-stacking-context.html reftest css/css-color/border-bottom-color.xht +reftest css/css-color/border-color-currentcolor.html reftest css/css-color/border-left-color.xht reftest css/css-color/border-right-color.xht reftest css/css-color/border-top-color.xht reftest css/css-color/canvas-change-opacity.html +reftest css/css-color/clip-opacity-out-of-flow.html reftest css/css-color/color-001.html reftest css/css-color/color-002.html reftest css/css-color/color-003.html -reftest css/css-color/color-contrast-001.html +reftest css/css-color/color-layers-no-blend-mode.html reftest css/css-color/color-mix-basic-001.html reftest css/css-color/color-mix-currentcolor-001.html reftest css/css-color/color-mix-currentcolor-002.html +reftest css/css-color/color-mix-currentcolor-003.html +reftest css/css-color/color-mix-currentcolor-nested-for-color-property.html +reftest css/css-color/color-mix-currentcolor-visited.html reftest css/css-color/color-mix-non-srgb-001.html reftest css/css-color/color-mix-percents-01.html reftest css/css-color/color-mix-percents-02.html @@ -12856,6 +13027,8 @@ reftest css/css-color/composited-filters-under-opacity.html reftest css/css-color/currentcolor-001.html reftest css/css-color/currentcolor-002.html reftest css/css-color/currentcolor-003.html +reftest css/css-color/currentcolor-004.html +reftest css/css-color/currentcolor-visited-fallback.html reftest css/css-color/deprecated-sameas-001.html reftest css/css-color/deprecated-sameas-002.html reftest css/css-color/deprecated-sameas-003.html @@ -12898,6 +13071,7 @@ reftest css/css-color/hsl-005.html reftest css/css-color/hsl-006.html reftest css/css-color/hsl-007.html reftest css/css-color/hsl-008.html +reftest css/css-color/hsl-clamp-negative-saturation.html reftest css/css-color/hsla-001.html reftest css/css-color/hsla-002.html reftest css/css-color/hsla-003.html @@ -12906,6 +13080,7 @@ reftest css/css-color/hsla-005.html reftest css/css-color/hsla-006.html reftest css/css-color/hsla-007.html reftest css/css-color/hsla-008.html +reftest css/css-color/hsla-clamp-negative-saturation.html reftest css/css-color/hwb-001.html reftest css/css-color/hwb-002.html reftest css/css-color/hwb-003.html @@ -12920,6 +13095,8 @@ reftest css/css-color/lab-005.html reftest css/css-color/lab-006.html reftest css/css-color/lab-007.html reftest css/css-color/lab-008.html +reftest css/css-color/lab-l-over-100-1.html +reftest css/css-color/lab-l-over-100-2.html reftest css/css-color/lch-001.html reftest css/css-color/lch-002.html reftest css/css-color/lch-003.html @@ -12930,6 +13107,10 @@ reftest css/css-color/lch-007.html reftest css/css-color/lch-008.html reftest css/css-color/lch-009.html reftest css/css-color/lch-010.html +reftest css/css-color/lch-l-over-100-1.html +reftest css/css-color/lch-l-over-100-2.html +reftest css/css-color/light-dark-currentcolor.html +reftest css/css-color/light-dark-inheritance.html reftest css/css-color/named-001.html reftest css/css-color/oklab-001.html reftest css/css-color/oklab-002.html @@ -12939,6 +13120,11 @@ reftest css/css-color/oklab-005.html reftest css/css-color/oklab-006.html reftest css/css-color/oklab-007.html reftest css/css-color/oklab-008.html +reftest css/css-color/oklab-009.html +reftest css/css-color/oklab-l-almost-0.html +reftest css/css-color/oklab-l-almost-1.html +reftest css/css-color/oklab-l-over-1-1.html +reftest css/css-color/oklab-l-over-1-2.html reftest css/css-color/oklch-001.html reftest css/css-color/oklch-002.html reftest css/css-color/oklch-003.html @@ -12949,7 +13135,13 @@ reftest css/css-color/oklch-007.html reftest css/css-color/oklch-008.html reftest css/css-color/oklch-009.html reftest css/css-color/oklch-010.html +reftest css/css-color/oklch-011.html +reftest css/css-color/oklch-l-almost-0.html +reftest css/css-color/oklch-l-almost-1.html +reftest css/css-color/oklch-l-over-1-1.html +reftest css/css-color/oklch-l-over-1-2.html reftest css/css-color/opacity-overlapping-letters.html +reftest css/css-color/out-of-gamut-legacy-rgb.html reftest css/css-color/predefined-001.html reftest css/css-color/predefined-002.html reftest css/css-color/predefined-005.html @@ -12971,6 +13163,22 @@ reftest css/css-color/rec2020-002.html reftest css/css-color/rec2020-003.html reftest css/css-color/rec2020-004.html reftest css/css-color/rec2020-005.html +reftest css/css-color/relative-currentcolor-a98rgb-01.html +reftest css/css-color/relative-currentcolor-displayp3-01.html +reftest css/css-color/relative-currentcolor-hsl-01.html +reftest css/css-color/relative-currentcolor-hsl-02.html +reftest css/css-color/relative-currentcolor-hwb-01.html +reftest css/css-color/relative-currentcolor-lab-01.html +reftest css/css-color/relative-currentcolor-lch-01.html +reftest css/css-color/relative-currentcolor-oklab-01.html +reftest css/css-color/relative-currentcolor-oklch-01.html +reftest css/css-color/relative-currentcolor-prophoto-01.html +reftest css/css-color/relative-currentcolor-rec2020-01.html +reftest css/css-color/relative-currentcolor-rec2020-02.html +reftest css/css-color/relative-currentcolor-rgb-01.html +reftest css/css-color/relative-currentcolor-rgb-02.html +reftest css/css-color/relative-currentcolor-xyzd50-01.html +reftest css/css-color/relative-currentcolor-xyzd65-01.html reftest css/css-color/rgb-001.html reftest css/css-color/rgb-002.html reftest css/css-color/rgb-003.html @@ -12991,6 +13199,8 @@ reftest css/css-color/srgb-linear-001.html reftest css/css-color/srgb-linear-002.html reftest css/css-color/srgb-linear-003.html reftest css/css-color/srgb-linear-004.html +reftest css/css-color/system-color-hightlights-vs-getSelection-001.html +reftest css/css-color/system-color-hightlights-vs-getSelection-002.html reftest css/css-color/t31-color-currentColor-b.xht reftest css/css-color/t31-color-text-a.xht reftest css/css-color/t32-opacity-basic-0.0-a.xht @@ -13028,7 +13238,6 @@ reftest css/css-color/t422-rgba-values-meaning-b.xht reftest css/css-color/t423-transparent-1-a.xht reftest css/css-color/t423-transparent-2-a.xht reftest css/css-color/t424-hsl-basic-a.xht -reftest css/css-color/t424-hsl-clip-outside-gamut-b.xht reftest css/css-color/t424-hsl-h-rotating-b.xht reftest css/css-color/t424-hsl-parsing-f.xht reftest css/css-color/t424-hsl-values-b-1.html @@ -13047,7 +13256,6 @@ reftest css/css-color/t424-hsl-values-b-7.html reftest css/css-color/t424-hsl-values-b-8.html reftest css/css-color/t424-hsl-values-b-9.html reftest css/css-color/t425-hsla-basic-a.xht -reftest css/css-color/t425-hsla-clip-outside-device-gamut-b.xht reftest css/css-color/t425-hsla-h-rotating-b.xht reftest css/css-color/t425-hsla-parsing-f.xht reftest css/css-color/t425-hsla-values-b.xht @@ -13128,7 +13336,7 @@ reftest css/css-conditional/at-supports-043.html reftest css/css-conditional/at-supports-044.html reftest css/css-conditional/at-supports-045.html reftest css/css-conditional/at-supports-046.html -reftest css/css-conditional/at-supports-047.html +reftest css/css-conditional/at-supports-048.html reftest css/css-conditional/at-supports-content-001.html reftest css/css-conditional/at-supports-content-002.html reftest css/css-conditional/at-supports-content-003.html @@ -13142,6 +13350,50 @@ reftest css/css-conditional/at-supports-selector-002.html reftest css/css-conditional/at-supports-selector-003.html reftest css/css-conditional/at-supports-selector-004.html reftest css/css-conditional/at-supports-selector-detecting-invalid-in-logical-combinations.html +reftest css/css-conditional/at-supports-selector-file-selector-button.html +reftest css/css-conditional/at-supports-selector-placeholder.html +reftest css/css-conditional/at-supports-selector-webkit-slider-thumb.tentative.html +reftest css/css-conditional/container-queries/canvas-as-container-001.html +reftest css/css-conditional/container-queries/canvas-as-container-002.html +reftest css/css-conditional/container-queries/canvas-as-container-003.html +reftest css/css-conditional/container-queries/canvas-as-container-004.html +reftest css/css-conditional/container-queries/change-display-in-container.html +reftest css/css-conditional/container-queries/chrome-legacy-skip-recalc.html +reftest css/css-conditional/container-queries/container-for-cue.html +reftest css/css-conditional/container-queries/container-units-gradient-invalidation.html +reftest css/css-conditional/container-queries/container-units-gradient.html +reftest css/css-conditional/container-queries/container-units-rule-cache.html +reftest css/css-conditional/container-queries/container-units-sharing-via-rule-node.html +reftest css/css-conditional/container-queries/counters-in-container-dynamic.html +reftest css/css-conditional/container-queries/counters-in-container.html +reftest css/css-conditional/container-queries/custom-layout-container-001.https.html +reftest css/css-conditional/container-queries/dialog-backdrop-create.html +reftest css/css-conditional/container-queries/dialog-backdrop-remove.html +reftest css/css-conditional/container-queries/display-in-container.html +reftest css/css-conditional/container-queries/fieldset-legend-change.html +reftest css/css-conditional/container-queries/inline-size-bfc-floats.html +reftest css/css-conditional/container-queries/inner-first-line-non-matching.html +reftest css/css-conditional/container-queries/multicol-inside-container.html +reftest css/css-conditional/container-queries/no-layout-containment-abspos-dynamic.html +reftest css/css-conditional/container-queries/no-layout-containment-abspos.html +reftest css/css-conditional/container-queries/no-layout-containment-baseline.html +reftest css/css-conditional/container-queries/no-layout-containment-fixedpos-dynamic.html +reftest css/css-conditional/container-queries/no-layout-containment-fixedpos.html +reftest css/css-conditional/container-queries/pseudo-elements-002.html +reftest css/css-conditional/container-queries/pseudo-elements-002b.html +reftest css/css-conditional/container-queries/pseudo-elements-009.html +reftest css/css-conditional/container-queries/pseudo-elements-010.html +reftest css/css-conditional/container-queries/pseudo-elements-011.html +reftest css/css-conditional/container-queries/pseudo-elements-012.html +reftest css/css-conditional/container-queries/resize-while-content-visibility-hidden.html +reftest css/css-conditional/container-queries/scrollbar-container-units-block.html +reftest css/css-conditional/container-queries/scrollbar-container-units-inline.html +reftest css/css-conditional/container-queries/size-container-with-quotes.html +reftest css/css-conditional/container-queries/svg-foreignobject-no-size-container.html +reftest css/css-conditional/container-queries/svg-g-no-size-container.html +reftest css/css-conditional/container-queries/table-inside-container-changing-display.html +reftest css/css-conditional/container-queries/top-layer-dialog-backdrop.html +reftest css/css-conditional/container-queries/whitespace-update-after-removal.html reftest css/css-conditional/css-supports-001.xht reftest css/css-conditional/css-supports-002.xht reftest css/css-conditional/css-supports-003.xht @@ -13237,6 +13489,7 @@ reftest css/css-contain/contain-inline-size-bfc-floats-002.html reftest css/css-contain/contain-inline-size-fieldset.html reftest css/css-contain/contain-inline-size-flex.html reftest css/css-contain/contain-inline-size-flexitem.html +reftest css/css-contain/contain-inline-size-grid-stretches-auto-rows.html reftest css/css-contain/contain-inline-size-grid.html reftest css/css-contain/contain-inline-size-intrinsic.html reftest css/css-contain/contain-inline-size-legend.html @@ -13271,11 +13524,14 @@ reftest css/css-contain/contain-layout-baseline-004.html reftest css/css-contain/contain-layout-baseline-005.html reftest css/css-contain/contain-layout-breaks-001.html reftest css/css-contain/contain-layout-breaks-002.html -reftest css/css-contain/contain-layout-button-001.html +reftest css/css-contain/contain-layout-button-001.tentative.html +reftest css/css-contain/contain-layout-button-002.tentative.html reftest css/css-contain/contain-layout-cell-001.html reftest css/css-contain/contain-layout-cell-002.html reftest css/css-contain/contain-layout-containing-block-absolute-001.html reftest css/css-contain/contain-layout-containing-block-fixed-001.html +reftest css/css-contain/contain-layout-dynamic-004.html +reftest css/css-contain/contain-layout-dynamic-005.html reftest css/css-contain/contain-layout-flexbox-001.html reftest css/css-contain/contain-layout-formatting-context-float-001.html reftest css/css-contain/contain-layout-formatting-context-margin-001.html @@ -13350,6 +13606,10 @@ reftest css/css-contain/contain-paint-clip-018.html reftest css/css-contain/contain-paint-clip-019.html reftest css/css-contain/contain-paint-containing-block-absolute-001.html reftest css/css-contain/contain-paint-containing-block-fixed-001.html +reftest css/css-contain/contain-paint-dynamic-002.html +reftest css/css-contain/contain-paint-dynamic-003.html +reftest css/css-contain/contain-paint-dynamic-004.html +reftest css/css-contain/contain-paint-dynamic-005.html reftest css/css-contain/contain-paint-formatting-context-float-001.html reftest css/css-contain/contain-paint-formatting-context-margin-001.html reftest css/css-contain/contain-paint-ifc-011.html @@ -13415,6 +13675,8 @@ reftest css/css-contain/contain-size-flexbox-002.html reftest css/css-contain/contain-size-grid-001.html reftest css/css-contain/contain-size-grid-002.html reftest css/css-contain/contain-size-grid-005.html +reftest css/css-contain/contain-size-grid-indefinite-height-min-height-flex-row.html +reftest css/css-contain/contain-size-grid-stretches-auto-rows.html reftest css/css-contain/contain-size-inline-block-001.html reftest css/css-contain/contain-size-inline-block-002.html reftest css/css-contain/contain-size-inline-block-003.html @@ -13471,32 +13733,6 @@ reftest css/css-contain/contain-style-ol-ordinal-start-reversed.html reftest css/css-contain/contain-style-ol-ordinal-start.html reftest css/css-contain/contain-style-ol-ordinal.html reftest css/css-contain/contain-subgrid-001.html -reftest css/css-contain/container-queries/canvas-as-container-001.html -reftest css/css-contain/container-queries/canvas-as-container-002.html -reftest css/css-contain/container-queries/canvas-as-container-003.html -reftest css/css-contain/container-queries/canvas-as-container-004.html -reftest css/css-contain/container-queries/change-display-in-container.html -reftest css/css-contain/container-queries/chrome-legacy-skip-recalc.html -reftest css/css-contain/container-queries/container-for-cue.html -reftest css/css-contain/container-queries/container-units-gradient-invalidation.html -reftest css/css-contain/container-queries/container-units-gradient.html -reftest css/css-contain/container-queries/counters-in-container-dynamic.html -reftest css/css-contain/container-queries/counters-in-container.html -reftest css/css-contain/container-queries/custom-layout-container-001.https.html -reftest css/css-contain/container-queries/dialog-backdrop-create.html -reftest css/css-contain/container-queries/dialog-backdrop-remove.html -reftest css/css-contain/container-queries/display-in-container.html -reftest css/css-contain/container-queries/fieldset-legend-change.html -reftest css/css-contain/container-queries/inline-size-bfc-floats.html -reftest css/css-contain/container-queries/inner-first-line-non-matching.html -reftest css/css-contain/container-queries/multicol-inside-container.html -reftest css/css-contain/container-queries/pseudo-elements-002.html -reftest css/css-contain/container-queries/resize-while-content-visibility-hidden.html -reftest css/css-contain/container-queries/svg-foreignobject-no-size-container.html -reftest css/css-contain/container-queries/svg-g-no-size-container.html -reftest css/css-contain/container-queries/table-inside-container-changing-display.html -reftest css/css-contain/container-queries/top-layer-dialog-backdrop.html -reftest css/css-contain/container-queries/whitespace-update-after-removal.html reftest css/css-contain/content-visibility/content-visibility-001.html reftest css/css-contain/content-visibility/content-visibility-002.html reftest css/css-contain/content-visibility/content-visibility-003.html @@ -13554,20 +13790,49 @@ reftest css/css-contain/content-visibility/content-visibility-079.html reftest css/css-contain/content-visibility/content-visibility-082.html reftest css/css-contain/content-visibility/content-visibility-083.html reftest css/css-contain/content-visibility/content-visibility-084.html +reftest css/css-contain/content-visibility/content-visibility-085.html +reftest css/css-contain/content-visibility/content-visibility-094.html +reftest css/css-contain/content-visibility/content-visibility-095.html +reftest css/css-contain/content-visibility/content-visibility-096.html +reftest css/css-contain/content-visibility/content-visibility-097.html +reftest css/css-contain/content-visibility/content-visibility-098.html +reftest css/css-contain/content-visibility/content-visibility-099.html +reftest css/css-contain/content-visibility/content-visibility-animation-and-scroll.html +reftest css/css-contain/content-visibility/content-visibility-animation-becomes-visible.html reftest css/css-contain/content-visibility/content-visibility-auto-in-iframe.html reftest css/css-contain/content-visibility/content-visibility-auto-intrinsic-width.html +reftest css/css-contain/content-visibility/content-visibility-auto-nested-scroll.html reftest css/css-contain/content-visibility/content-visibility-auto-nested.html +reftest css/css-contain/content-visibility/content-visibility-auto-svg-image.html reftest css/css-contain/content-visibility/content-visibility-canvas.html reftest css/css-contain/content-visibility/content-visibility-fieldset-size.html +reftest css/css-contain/content-visibility/content-visibility-intrinsic-size-001.html +reftest css/css-contain/content-visibility/content-visibility-on-g.html +reftest css/css-contain/content-visibility/content-visibility-on-root-svg.html +reftest css/css-contain/content-visibility/content-visibility-paint-containment-001.html +reftest css/css-contain/content-visibility/content-visibility-paint-containment-002.html +reftest css/css-contain/content-visibility/content-visibility-paint-containment-003.html reftest css/css-contain/content-visibility/content-visibility-resize-observer-no-error.html reftest css/css-contain/content-visibility/content-visibility-video.html +reftest css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-001.html +reftest css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-002.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-000.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-001.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-002.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-003.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-004.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-005.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-and-auto-descendant.html +reftest css/css-contain/content-visibility/content-visibility-with-popover-top-layer-hide-after-addition.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-000.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-001.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-002.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-003.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-004.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-005.html +reftest css/css-contain/content-visibility/content-visibility-with-top-layer-and-auto-descendant.html reftest css/css-contain/content-visibility/content-visibility-with-top-layer-hide-after-addition.html +reftest css/css-contain/content-visibility/content-visibility-with-top-layer-in-auto-subtree-removal.html reftest css/css-contain/content-visibility/dynamic-change-paint-fully-obscuring-child-001.html reftest css/css-contain/content-visibility/element-reassigned-to-skipped-slot.html reftest css/css-contain/content-visibility/element-reassigned-to-slot-in-skipped-subtree.html @@ -13576,11 +13841,16 @@ reftest css/css-contain/content-visibility/scrollIntoView-with-focus-target-with reftest css/css-contain/counter-scoping-001.html reftest css/css-contain/counter-scoping-002.html reftest css/css-contain/counter-scoping-003.html +reftest css/css-contain/counter-scoping-004.html reftest css/css-contain/quote-scoping-001.html reftest css/css-contain/quote-scoping-002.html reftest css/css-contain/quote-scoping-003.html reftest css/css-contain/quote-scoping-004.html reftest css/css-contain/quote-scoping-empty-style-boundaries.html +reftest css/css-contain/quote-scoping-invalidation-001.html +reftest css/css-contain/quote-scoping-invalidation-002.html +reftest css/css-contain/quote-scoping-invalidation-003.html +reftest css/css-contain/quote-scoping-invalidation-004.html reftest css/css-content/attr-case-sensitivity-001.html reftest css/css-content/attr-case-sensitivity-002.html reftest css/css-content/attr-case-sensitivity-003.html @@ -13604,6 +13874,7 @@ reftest css/css-content/element-replacement-alt.html reftest css/css-content/element-replacement-display-contents.html reftest css/css-content/element-replacement-display-none.html reftest css/css-content/element-replacement-dynamic.html +reftest css/css-content/element-replacement-gradient.html reftest css/css-content/element-replacement-image-alt.html reftest css/css-content/element-replacement-image-no-src.tentative.html reftest css/css-content/element-replacement-image-src.tentative.html @@ -13644,6 +13915,11 @@ reftest css/css-content/quotes-031.html reftest css/css-content/quotes-032.html reftest css/css-content/quotes-033.html reftest css/css-content/quotes-034.html +reftest css/css-content/quotes-first-letter-001.html +reftest css/css-content/quotes-first-letter-002.html +reftest css/css-content/quotes-first-letter-003.html +reftest css/css-content/quotes-first-letter-004.html +reftest css/css-content/quotes-first-letter-005.html reftest css/css-content/quotes-slot-scoping.html reftest css/css-counter-styles/arabic-indic/css3-counter-styles-101.html reftest css/css-counter-styles/arabic-indic/css3-counter-styles-102.html @@ -13658,6 +13934,7 @@ reftest css/css-counter-styles/bengali/css3-counter-styles-118.html reftest css/css-counter-styles/cambodian/css3-counter-styles-158.html reftest css/css-counter-styles/cambodian/css3-counter-styles-159.html reftest css/css-counter-styles/cambodian/css3-counter-styles-160.html +reftest css/css-counter-styles/cjk-decimal/counter-cjk-decimal.html reftest css/css-counter-styles/cjk-decimal/css3-counter-styles-001.html reftest css/css-counter-styles/cjk-decimal/css3-counter-styles-004.html reftest css/css-counter-styles/cjk-decimal/css3-counter-styles-005.html @@ -13667,6 +13944,7 @@ reftest css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-203.html reftest css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-204.html reftest css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-205.html reftest css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-206.html +reftest css/css-counter-styles/counter-name-case-sensitive.html reftest css/css-counter-styles/counter-style-at-rule/access-from-shadow-dom.html reftest css/css-counter-styles/counter-style-at-rule/broken-symbols.html reftest css/css-counter-styles/counter-style-at-rule/dependent-builtin.html @@ -13685,6 +13963,7 @@ reftest css/css-counter-styles/counter-style-at-rule/descriptor-suffix.html reftest css/css-counter-styles/counter-style-at-rule/descriptor-symbols-invalid.html reftest css/css-counter-styles/counter-style-at-rule/descriptor-symbols.html reftest css/css-counter-styles/counter-style-at-rule/disclosure-styles.html +reftest css/css-counter-styles/counter-style-at-rule/empty-string-symbol.html reftest css/css-counter-styles/counter-style-at-rule/fallbacks-in-shadow-dom.html reftest css/css-counter-styles/counter-style-at-rule/name-case-sensitivity.html reftest css/css-counter-styles/counter-style-at-rule/override-in-shadow-dom.html @@ -13699,6 +13978,7 @@ reftest css/css-counter-styles/counter-style-at-rule/system-alphabetic-invalid.h reftest css/css-counter-styles/counter-style-at-rule/system-alphabetic.html reftest css/css-counter-styles/counter-style-at-rule/system-cyclic-invalid.html reftest css/css-counter-styles/counter-style-at-rule/system-cyclic.html +reftest css/css-counter-styles/counter-style-at-rule/system-extends-fixed.html reftest css/css-counter-styles/counter-style-at-rule/system-extends-invalid.html reftest css/css-counter-styles/counter-style-at-rule/system-extends.html reftest css/css-counter-styles/counter-style-at-rule/system-fixed-invalid.html @@ -13707,6 +13987,7 @@ reftest css/css-counter-styles/counter-style-at-rule/system-numeric-invalid.html reftest css/css-counter-styles/counter-style-at-rule/system-numeric.html reftest css/css-counter-styles/counter-style-at-rule/system-symbolic-invalid.html reftest css/css-counter-styles/counter-style-at-rule/system-symbolic.html +reftest css/css-counter-styles/counter-suffix.html reftest css/css-counter-styles/cssom/cssom-additive-symbols-setter-invalid.html reftest css/css-counter-styles/cssom/cssom-additive-symbols-setter.html reftest css/css-counter-styles/cssom/cssom-fallback-setter-invalid.html @@ -13729,6 +14010,7 @@ reftest css/css-counter-styles/cssom/cssom-system-setter-invalid.html reftest css/css-counter-styles/devanagari/css3-counter-styles-119.html reftest css/css-counter-styles/devanagari/css3-counter-styles-120.html reftest css/css-counter-styles/devanagari/css3-counter-styles-121.html +reftest css/css-counter-styles/ethiopic-numeric/counter-ethiopic-numeric.html reftest css/css-counter-styles/georgian/css3-counter-styles-010.html reftest css/css-counter-styles/georgian/css3-counter-styles-011.html reftest css/css-counter-styles/georgian/css3-counter-styles-012.html @@ -13739,6 +14021,7 @@ reftest css/css-counter-styles/gujarati/css3-counter-styles-124.html reftest css/css-counter-styles/gurmukhi/css3-counter-styles-125.html reftest css/css-counter-styles/gurmukhi/css3-counter-styles-126.html reftest css/css-counter-styles/gurmukhi/css3-counter-styles-127.html +reftest css/css-counter-styles/hebrew/counter-hebrew-nested.html reftest css/css-counter-styles/hebrew/css3-counter-styles-015.html reftest css/css-counter-styles/hebrew/css3-counter-styles-016.html reftest css/css-counter-styles/hebrew/css3-counter-styles-016a.html @@ -13749,11 +14032,13 @@ reftest css/css-counter-styles/hiragana-iroha/css3-counter-styles-035.html reftest css/css-counter-styles/hiragana/css3-counter-styles-030.html reftest css/css-counter-styles/hiragana/css3-counter-styles-031.html reftest css/css-counter-styles/hiragana/css3-counter-styles-032.html +reftest css/css-counter-styles/japanese-formal/counter-japanese-formal.html reftest css/css-counter-styles/japanese-formal/css3-counter-styles-047.html reftest css/css-counter-styles/japanese-formal/css3-counter-styles-048.html reftest css/css-counter-styles/japanese-formal/css3-counter-styles-049.html reftest css/css-counter-styles/japanese-formal/css3-counter-styles-050.html reftest css/css-counter-styles/japanese-formal/css3-counter-styles-051.html +reftest css/css-counter-styles/japanese-informal/counter-japanese-informal.html reftest css/css-counter-styles/japanese-informal/css3-counter-styles-042.html reftest css/css-counter-styles/japanese-informal/css3-counter-styles-043.html reftest css/css-counter-styles/japanese-informal/css3-counter-styles-044.html @@ -13771,16 +14056,19 @@ reftest css/css-counter-styles/katakana/css3-counter-styles-038.html reftest css/css-counter-styles/khmer/css3-counter-styles-161.html reftest css/css-counter-styles/khmer/css3-counter-styles-162.html reftest css/css-counter-styles/khmer/css3-counter-styles-163.html +reftest css/css-counter-styles/korean-hangul-formal/counter-korean-hangul-formal.html reftest css/css-counter-styles/korean-hangul-formal/css3-counter-styles-052.html reftest css/css-counter-styles/korean-hangul-formal/css3-counter-styles-053.html reftest css/css-counter-styles/korean-hangul-formal/css3-counter-styles-054.html reftest css/css-counter-styles/korean-hangul-formal/css3-counter-styles-055.html reftest css/css-counter-styles/korean-hangul-formal/css3-counter-styles-056.html +reftest css/css-counter-styles/korean-hanja-formal/counter-korean-hanja-formal.html reftest css/css-counter-styles/korean-hanja-formal/css3-counter-styles-062.html reftest css/css-counter-styles/korean-hanja-formal/css3-counter-styles-063.html reftest css/css-counter-styles/korean-hanja-formal/css3-counter-styles-064.html reftest css/css-counter-styles/korean-hanja-formal/css3-counter-styles-065.html reftest css/css-counter-styles/korean-hanja-formal/css3-counter-styles-066.html +reftest css/css-counter-styles/korean-hanja-informal/counter-korean-hanja-informal.html reftest css/css-counter-styles/korean-hanja-informal/css3-counter-styles-057.html reftest css/css-counter-styles/korean-hanja-informal/css3-counter-styles-058.html reftest css/css-counter-styles/korean-hanja-informal/css3-counter-styles-059.html @@ -13817,11 +14105,13 @@ reftest css/css-counter-styles/oriya/css3-counter-styles-145.html reftest css/css-counter-styles/persian/css3-counter-styles-104.html reftest css/css-counter-styles/persian/css3-counter-styles-105.html reftest css/css-counter-styles/persian/css3-counter-styles-106.html +reftest css/css-counter-styles/simp-chinese-formal/counter-simp-chinese-formal.html reftest css/css-counter-styles/simp-chinese-formal/css3-counter-styles-076.html reftest css/css-counter-styles/simp-chinese-formal/css3-counter-styles-077.html reftest css/css-counter-styles/simp-chinese-formal/css3-counter-styles-078.html reftest css/css-counter-styles/simp-chinese-formal/css3-counter-styles-079.html reftest css/css-counter-styles/simp-chinese-formal/css3-counter-styles-080.html +reftest css/css-counter-styles/simp-chinese-informal/counter-simp-chinese-informal.html reftest css/css-counter-styles/simp-chinese-informal/css3-counter-styles-071.html reftest css/css-counter-styles/simp-chinese-informal/css3-counter-styles-072.html reftest css/css-counter-styles/simp-chinese-informal/css3-counter-styles-073.html @@ -13839,11 +14129,13 @@ reftest css/css-counter-styles/thai/css3-counter-styles-154.html reftest css/css-counter-styles/tibetan/css3-counter-styles-155.html reftest css/css-counter-styles/tibetan/css3-counter-styles-156.html reftest css/css-counter-styles/tibetan/css3-counter-styles-157.html +reftest css/css-counter-styles/trad-chinese-formal/counter-trad-chinese-formal.html reftest css/css-counter-styles/trad-chinese-formal/css3-counter-styles-086.html reftest css/css-counter-styles/trad-chinese-formal/css3-counter-styles-087.html reftest css/css-counter-styles/trad-chinese-formal/css3-counter-styles-088.html reftest css/css-counter-styles/trad-chinese-formal/css3-counter-styles-089.html reftest css/css-counter-styles/trad-chinese-formal/css3-counter-styles-090.html +reftest css/css-counter-styles/trad-chinese-informal/counter-trad-chinese-informal.html reftest css/css-counter-styles/trad-chinese-informal/css3-counter-styles-081.html reftest css/css-counter-styles/trad-chinese-informal/css3-counter-styles-082.html reftest css/css-counter-styles/trad-chinese-informal/css3-counter-styles-083.html @@ -14071,13 +14363,14 @@ reftest css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01.xht reftest css/css-exclusions/css3-exclusions/exclusions-wrap-flow-02.xht reftest css/css-exclusions/css3-exclusions/exclusions-wrap-flow-03.xht reftest css/css-exclusions/css3-exclusions/exclusions-wrap-flow-04.xht -reftest css/css-fill-stroke/paint-order-001.tentative.html +reftest css/css-fill-stroke/paint-order-001.html reftest css/css-flexbox/abspos/abspos-autopos-htb-ltr.html reftest css/css-flexbox/abspos/abspos-autopos-htb-rtl.html reftest css/css-flexbox/abspos/abspos-autopos-vlr-ltr.html reftest css/css-flexbox/abspos/abspos-autopos-vlr-rtl.html reftest css/css-flexbox/abspos/abspos-autopos-vrl-ltr.html reftest css/css-flexbox/abspos/abspos-autopos-vrl-rtl.html +reftest css/css-flexbox/abspos/dynamic-align-self-001.html reftest css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001.html reftest css/css-flexbox/abspos/flex-abspos-staticpos-fallback-justify-content-001.html reftest css/css-flexbox/abspos/flex-abspos-staticpos-justify-self-001.html @@ -14161,7 +14454,9 @@ reftest css/css-flexbox/baseline-synthesis-001.html reftest css/css-flexbox/baseline-synthesis-002.html reftest css/css-flexbox/baseline-synthesis-003.html reftest css/css-flexbox/baseline-synthesis-004.html +reftest css/css-flexbox/baseline-synthesis-vert-lr-line-under.html reftest css/css-flexbox/canvas-contain-size.html +reftest css/css-flexbox/column-flex-child-with-max-width.html reftest css/css-flexbox/content-height-with-scrollbars.html reftest css/css-flexbox/cross-axis-scrollbar.html reftest css/css-flexbox/css-box-justify-content.html @@ -14183,6 +14478,7 @@ reftest css/css-flexbox/dynamic-isize-change-001.html reftest css/css-flexbox/dynamic-isize-change-002.html reftest css/css-flexbox/dynamic-isize-change-003.html reftest css/css-flexbox/dynamic-isize-change-004.html +reftest css/css-flexbox/dynamic-orthogonal-flex-item.html reftest css/css-flexbox/dynamic-stretch-change.html reftest css/css-flexbox/fieldset-as-item-dynamic.html reftest css/css-flexbox/fieldset-as-item-overflow.html @@ -14231,6 +14527,7 @@ reftest css/css-flexbox/flex-aspect-ratio-img-row-012.html reftest css/css-flexbox/flex-aspect-ratio-img-row-014.html reftest css/css-flexbox/flex-aspect-ratio-img-row-015.html reftest css/css-flexbox/flex-aspect-ratio-img-row-016.html +reftest css/css-flexbox/flex-aspect-ratio-img-row-017.html reftest css/css-flexbox/flex-basis-001.html reftest css/css-flexbox/flex-basis-002.html reftest css/css-flexbox/flex-basis-003.html @@ -14279,10 +14576,15 @@ reftest css/css-flexbox/flex-height-min-content.html reftest css/css-flexbox/flex-inline.html reftest css/css-flexbox/flex-item-and-percentage-abspos.html reftest css/css-flexbox/flex-item-contains-size-layout-001.html +reftest css/css-flexbox/flex-item-max-height-min-content.html +reftest css/css-flexbox/flex-item-max-width-min-content.html +reftest css/css-flexbox/flex-item-min-height-min-content.html +reftest css/css-flexbox/flex-item-min-width-min-content.html reftest css/css-flexbox/flex-item-transferred-sizes-padding-border-sizing.html reftest css/css-flexbox/flex-item-transferred-sizes-padding-content-sizing.html reftest css/css-flexbox/flex-item-vertical-align.html reftest css/css-flexbox/flex-item-z-ordering-001.html +reftest css/css-flexbox/flex-item-z-ordering-002.html reftest css/css-flexbox/flex-lines/multi-line-wrap-reverse-column-reverse.html reftest css/css-flexbox/flex-lines/multi-line-wrap-reverse-row-reverse.html reftest css/css-flexbox/flex-lines/multi-line-wrap-with-column-reverse.html @@ -14522,6 +14824,11 @@ reftest css/css-flexbox/flexbox-paint-ordering-003.html reftest css/css-flexbox/flexbox-root-node-001a.html reftest css/css-flexbox/flexbox-root-node-001b.html reftest css/css-flexbox/flexbox-safe-overflow-position-001.html +reftest css/css-flexbox/flexbox-safe-overflow-position-002.html +reftest css/css-flexbox/flexbox-safe-overflow-position-003.html +reftest css/css-flexbox/flexbox-safe-overflow-position-004.html +reftest css/css-flexbox/flexbox-safe-overflow-position-005.html +reftest css/css-flexbox/flexbox-safe-overflow-position-006.html reftest css/css-flexbox/flexbox-single-line-clamp-1.html reftest css/css-flexbox/flexbox-single-line-clamp-2.html reftest css/css-flexbox/flexbox-single-line-clamp-3.html @@ -14553,6 +14860,12 @@ reftest css/css-flexbox/flexbox-writing-mode-013.html reftest css/css-flexbox/flexbox-writing-mode-014.html reftest css/css-flexbox/flexbox-writing-mode-015.html reftest css/css-flexbox/flexbox-writing-mode-016.html +reftest css/css-flexbox/flexbox-writing-mode-slr-row-mix.html +reftest css/css-flexbox/flexbox-writing-mode-slr-rtl.html +reftest css/css-flexbox/flexbox-writing-mode-slr.html +reftest css/css-flexbox/flexbox-writing-mode-srl-row-mix.html +reftest css/css-flexbox/flexbox-writing-mode-srl-rtl.html +reftest css/css-flexbox/flexbox-writing-mode-srl.html reftest css/css-flexbox/flexbox_align-content-center.html reftest css/css-flexbox/flexbox_align-content-flexend.html reftest css/css-flexbox/flexbox_align-content-flexstart.html @@ -14799,15 +15112,21 @@ reftest css/css-flexbox/gap-013.html reftest css/css-flexbox/gap-014.html reftest css/css-flexbox/gap-015.html reftest css/css-flexbox/gap-016.html +reftest css/css-flexbox/gap-019.html +reftest css/css-flexbox/gap-020.html +reftest css/css-flexbox/gap-021.html +reftest css/css-flexbox/grandchild-span-height.html reftest css/css-flexbox/grid-flex-item-001.html reftest css/css-flexbox/grid-flex-item-002.html reftest css/css-flexbox/grid-flex-item-003.html reftest css/css-flexbox/grid-flex-item-004.html reftest css/css-flexbox/grid-flex-item-005.html reftest css/css-flexbox/grid-flex-item-006.html +reftest css/css-flexbox/grid-flex-item-007.html reftest css/css-flexbox/image-items-flake-001.html reftest css/css-flexbox/image-nested-within-definite-column-flexbox.html reftest css/css-flexbox/inline-flex-min-content-height.html +reftest css/css-flexbox/intrinsic-size/auto-min-size-001.html reftest css/css-flexbox/intrinsic-size/col-wrap-001.html reftest css/css-flexbox/intrinsic-size/col-wrap-002.html reftest css/css-flexbox/intrinsic-size/col-wrap-003.html @@ -14822,12 +15141,14 @@ reftest css/css-flexbox/intrinsic-size/col-wrap-014.html reftest css/css-flexbox/intrinsic-size/col-wrap-015.html reftest css/css-flexbox/intrinsic-size/col-wrap-016.html reftest css/css-flexbox/intrinsic-size/col-wrap-017.html +reftest css/css-flexbox/intrinsic-size/col-wrap-020.html reftest css/css-flexbox/intrinsic-size/row-001.html reftest css/css-flexbox/intrinsic-size/row-002.html reftest css/css-flexbox/intrinsic-size/row-003.html reftest css/css-flexbox/intrinsic-size/row-004.html reftest css/css-flexbox/intrinsic-size/row-006.html reftest css/css-flexbox/intrinsic-size/row-007.html +reftest css/css-flexbox/intrinsic-size/row-wrap-002.tentative.html reftest css/css-flexbox/item-with-max-height-and-scrollbar.html reftest css/css-flexbox/item-with-table-with-infinite-max-intrinsic-width.html reftest css/css-flexbox/justify-content-001.htm @@ -14837,12 +15158,15 @@ reftest css/css-flexbox/justify-content-004.htm reftest css/css-flexbox/justify-content-005.htm reftest css/css-flexbox/layout-algorithm_algo-cross-line-001.html reftest css/css-flexbox/layout-algorithm_algo-cross-line-002.html +reftest css/css-flexbox/min-size-auto-overflow-clip.html reftest css/css-flexbox/multiline-column-max-height.html reftest css/css-flexbox/multiline-reverse-wrap-baseline.html reftest css/css-flexbox/multiline-shrink-to-fit.html reftest css/css-flexbox/negative-margins-001.html +reftest css/css-flexbox/nested-flex-image-loading-invalidates-intrinsic-sizes.html reftest css/css-flexbox/nested-orthogonal-flexbox-relayout.html reftest css/css-flexbox/order-painting.html +reftest css/css-flexbox/order/order-abs-children-painting-order-different-container.html reftest css/css-flexbox/order/order-abs-children-painting-order.html reftest css/css-flexbox/order/order-with-column-reverse.html reftest css/css-flexbox/order/order-with-row-reverse.html @@ -14854,6 +15178,7 @@ reftest css/css-flexbox/overflow-auto-001.html reftest css/css-flexbox/overflow-auto-005.html reftest css/css-flexbox/overflow-auto-007.html reftest css/css-flexbox/overflow-top-left.html +reftest css/css-flexbox/padding-overflow.html reftest css/css-flexbox/percentage-descendant-of-anonymous-flex-item.html reftest css/css-flexbox/percentage-heights-002.html reftest css/css-flexbox/percentage-heights-004.html @@ -14874,12 +15199,16 @@ reftest css/css-flexbox/percentage-max-height-002.html reftest css/css-flexbox/percentage-max-height-003.html reftest css/css-flexbox/percentage-max-height-004.html reftest css/css-flexbox/percentage-padding-002.html +reftest css/css-flexbox/percentage-padding-003.html +reftest css/css-flexbox/percentage-padding-004.html reftest css/css-flexbox/percentage-size-subitems-001.html reftest css/css-flexbox/percentage-widths-001.html reftest css/css-flexbox/position-absolute-scrollbar-freeze.html reftest css/css-flexbox/position-fixed-001.html reftest css/css-flexbox/position-relative-percentage-top-002.html reftest css/css-flexbox/position-relative-percentage-top-003.html +reftest css/css-flexbox/remove-wrapped-001.html +reftest css/css-flexbox/remove-wrapped-002.html reftest css/css-flexbox/scrollbars-auto.html reftest css/css-flexbox/scrollbars-no-margin.html reftest css/css-flexbox/scrollbars.html @@ -14899,6 +15228,7 @@ reftest css/css-flexbox/svg-root-as-flex-item-003.html reftest css/css-flexbox/svg-root-as-flex-item-004.html reftest css/css-flexbox/svg-root-as-flex-item-005.html reftest css/css-flexbox/synthesize-vrl-baseline.html +reftest css/css-flexbox/table-as-flex-item-max-content.html reftest css/css-flexbox/table-as-item-auto-min-width.html reftest css/css-flexbox/table-as-item-change-cell.html reftest css/css-flexbox/table-as-item-fixed-min-width-2.html @@ -14939,6 +15269,7 @@ reftest css/css-font-loading/fontfaceset-clear-css-connected-2.html reftest css/css-font-loading/fontfaceset-delete-css-connected-2.html reftest css/css-fonts/alternates-order.html reftest css/css-fonts/ascent-descent-override.html +reftest css/css-fonts/downloadable-font-scoped-to-document.html reftest css/css-fonts/first-available-font-001.html reftest css/css-fonts/first-available-font-002.html reftest css/css-fonts/first-available-font-003.html @@ -15034,6 +15365,7 @@ reftest css/css-fonts/font-palette-32.html reftest css/css-fonts/font-palette-33.html reftest css/css-fonts/font-palette-34.html reftest css/css-fonts/font-palette-35.html +reftest css/css-fonts/font-palette-36.html reftest css/css-fonts/font-palette-4.html reftest css/css-fonts/font-palette-5.html reftest css/css-fonts/font-palette-6.html @@ -15045,6 +15377,7 @@ reftest css/css-fonts/font-palette-add.html reftest css/css-fonts/font-palette-empty-font-family.html reftest css/css-fonts/font-palette-modify-2.html reftest css/css-fonts/font-palette-modify.html +reftest css/css-fonts/font-palette-non-ident-font-family.html reftest css/css-fonts/font-palette-remove-2.html reftest css/css-fonts/font-palette-remove.html reftest css/css-fonts/font-palette.html @@ -15058,7 +15391,13 @@ reftest css/css-fonts/font-size-adjust-009.html reftest css/css-fonts/font-size-adjust-010.html reftest css/css-fonts/font-size-adjust-011.html reftest css/css-fonts/font-size-adjust-012.html +reftest css/css-fonts/font-size-adjust-013.html +reftest css/css-fonts/font-size-adjust-014.html +reftest css/css-fonts/font-size-adjust-ic-height.html +reftest css/css-fonts/font-size-adjust-metrics-override.html reftest css/css-fonts/font-size-adjust-order-001.html +reftest css/css-fonts/font-size-adjust-reload.html +reftest css/css-fonts/font-size-adjust-text-orientation.html reftest css/css-fonts/font-size-adjust-units-001.html reftest css/css-fonts/font-size-adjust-zero-1.html reftest css/css-fonts/font-size-adjust-zero-2.html @@ -15092,6 +15431,8 @@ reftest css/css-fonts/font-synthesis-04.html reftest css/css-fonts/font-synthesis-05.html reftest css/css-fonts/font-synthesis-06.html reftest css/css-fonts/font-synthesis-07.html +reftest css/css-fonts/font-synthesis-08.html +reftest css/css-fonts/font-synthesis-position-001.html reftest css/css-fonts/font-synthesis-small-caps-first-letter.html reftest css/css-fonts/font-synthesis-small-caps-first-line.html reftest css/css-fonts/font-synthesis-small-caps-not-applied.html @@ -15147,6 +15488,8 @@ reftest css/css-fonts/font-variant-east-asian-08.html reftest css/css-fonts/font-variant-east-asian-09.html reftest css/css-fonts/font-variant-east-asian-10.html reftest css/css-fonts/font-variant-east-asian.html +reftest css/css-fonts/font-variant-emoji-003.html +reftest css/css-fonts/font-variant-emoji-004.html reftest css/css-fonts/font-variant-emoji-1.html reftest css/css-fonts/font-variant-emoji-2.html reftest css/css-fonts/font-variant-ligatures-01.html @@ -15174,6 +15517,8 @@ reftest css/css-fonts/font-variant-numeric.html reftest css/css-fonts/font-variant-position-01.html reftest css/css-fonts/font-variant-position-02.html reftest css/css-fonts/font-variant-position-03.html +reftest css/css-fonts/font-variant-position-04.html +reftest css/css-fonts/font-variant-position-05.html reftest css/css-fonts/font-variant-position.html reftest css/css-fonts/font-weight-bolder-001.xht reftest css/css-fonts/font-weight-lighter-001.xht @@ -15181,9 +15526,13 @@ reftest css/css-fonts/font-weight-normal-001.xht reftest css/css-fonts/hiragana-katakana-kerning.html reftest css/css-fonts/line-gap-override.html reftest css/css-fonts/matching/fixed-stretch-style-over-weight.html +reftest css/css-fonts/matching/font-unicode-PUA-primary-font.html +reftest css/css-fonts/matching/font-unicode-PUA.html reftest css/css-fonts/matching/range-descriptor-reversed.html reftest css/css-fonts/matching/stretch-distance-over-weight-distance.html reftest css/css-fonts/matching/style-ranges-over-weight-direction.html +reftest css/css-fonts/math-script-level-and-math-style/font-size-math-001.tentative.html +reftest css/css-fonts/math-script-level-and-math-style/font-size-math-002.tentative.html reftest css/css-fonts/math-script-level-and-math-style/math-script-level-003.tentative.html reftest css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-001.tentative.html reftest css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-002.tentative.html @@ -15197,11 +15546,18 @@ reftest css/css-fonts/palette-values-rule-add.html reftest css/css-fonts/palette-values-rule-delete-2.html reftest css/css-fonts/palette-values-rule-delete.html reftest css/css-fonts/quoted-generic-ignored.html +reftest css/css-fonts/rcap-in-monospace.html +reftest css/css-fonts/rch-in-monospace.html reftest css/css-fonts/rem-in-monospace.html +reftest css/css-fonts/rex-in-monospace.html +reftest css/css-fonts/ric-in-monospace.html reftest css/css-fonts/rlh-in-monospace.html +reftest css/css-fonts/separators.html reftest css/css-fonts/size-adjust-01.html reftest css/css-fonts/size-adjust-02.html +reftest css/css-fonts/size-adjust-03.html reftest css/css-fonts/size-adjust-text-decoration.tentative.html +reftest css/css-fonts/size-adjust-unicode-range-system-fallback.html reftest css/css-fonts/size-adjust.tentative.html reftest css/css-fonts/standard-font-family-10.html reftest css/css-fonts/standard-font-family-11.html @@ -15223,6 +15579,7 @@ reftest css/css-fonts/standard-font-family-7.html reftest css/css-fonts/standard-font-family-8.html reftest css/css-fonts/standard-font-family-9.html reftest css/css-fonts/standard-font-family.html +reftest css/css-fonts/synthetic-bold-space-width.html reftest css/css-fonts/system-ui-ar.html reftest css/css-fonts/system-ui-ja-vs-zh.html reftest css/css-fonts/system-ui-ja.html @@ -15233,10 +15590,13 @@ reftest css/css-fonts/system-ui-zh.html reftest css/css-fonts/system-ui.html reftest css/css-fonts/test-synthetic-italic-2.html reftest css/css-fonts/test-synthetic-italic-3.html +reftest css/css-fonts/variation-sequences.html reftest css/css-fonts/variations/font-descriptor-range-reversed.html reftest css/css-fonts/variations/font-slant-1.html reftest css/css-fonts/variations/font-slant-2a.html reftest css/css-fonts/variations/font-slant-2b.html +reftest css/css-fonts/variations/font-slant-2c.html +reftest css/css-fonts/variations/font-slant-3.html reftest css/css-fonts/variations/font-weight-metrics.html reftest css/css-fonts/variations/slnt-backslant-variable.html reftest css/css-fonts/variations/slnt-variable.html @@ -15245,6 +15605,7 @@ reftest css/css-fonts/variations/variable-gpos-m2b.html reftest css/css-fonts/variations/variable-gsub.html reftest css/css-fonts/variations/variable-opsz-size-adjust.html reftest css/css-fonts/variations/variable-opsz.html +reftest css/css-fonts/web-font-no-longer-accessible-when-stylesheet-removed.html reftest css/css-grid/abspos/absolute-positioning-changing-containing-block-001.html reftest css/css-grid/abspos/descendant-static-position-001.html reftest css/css-grid/abspos/descendant-static-position-002.html @@ -15395,6 +15756,7 @@ reftest css/css-grid/alignment/grid-content-distribution-025.html reftest css/css-grid/alignment/grid-content-distribution-026.html reftest css/css-grid/alignment/grid-content-distribution-027.html reftest css/css-grid/alignment/grid-content-distribution-028.html +reftest css/css-grid/alignment/grid-content-distribution-029.html reftest css/css-grid/alignment/grid-content-distribution-with-collapsed-tracks-001.html reftest css/css-grid/alignment/grid-content-distribution-with-collapsed-tracks-002.html reftest css/css-grid/alignment/grid-content-distribution-with-collapsed-tracks-003.html @@ -15524,7 +15886,12 @@ reftest css/css-grid/chrome-bug-001.html reftest css/css-grid/dynamic-grid-with-auto-fill.html reftest css/css-grid/dynamic-grid-within-flexbox.html reftest css/css-grid/empty-grid-within-flexbox.html +reftest css/css-grid/firefox-bug-1881495.html reftest css/css-grid/grid-child-percent-basis-resize-1.html +reftest css/css-grid/grid-container-baseline-synthesized-001.html +reftest css/css-grid/grid-container-baseline-synthesized-002.html +reftest css/css-grid/grid-container-baseline-synthesized-003.html +reftest css/css-grid/grid-container-baseline-synthesized-004.html reftest css/css-grid/grid-definition/flex-item-grid-container-percentage-rows-001.html reftest css/css-grid/grid-definition/fr-unit-with-percentage.html reftest css/css-grid/grid-definition/fr-unit.html @@ -15548,6 +15915,7 @@ reftest css/css-grid/grid-definition/grid-support-named-grid-lines-002.html reftest css/css-grid/grid-definition/grid-support-named-grid-lines-003.html reftest css/css-grid/grid-definition/grid-template-columns-fit-content-001.html reftest css/css-grid/grid-definition/grid-template-rows-fit-content-001.html +reftest css/css-grid/grid-in-table-cell-with-img.html reftest css/css-grid/grid-item-non-auto-height-stretch-001.html reftest css/css-grid/grid-item-non-auto-height-stretch-002.html reftest css/css-grid/grid-item-non-auto-height-stretch-003.html @@ -15745,6 +16113,8 @@ reftest css/css-grid/grid-model/grid-multicol-001.html reftest css/css-grid/grid-model/grid-overflow-padding-001.html reftest css/css-grid/grid-model/grid-overflow-padding-002.html reftest css/css-grid/grid-model/grid-vertical-align-001.html +reftest css/css-grid/grid-relayout-with-nested-grid.html +reftest css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html reftest css/css-grid/grid-with-content-dynamic-display-001.html reftest css/css-grid/grid-with-content-dynamic-display-002.html reftest css/css-grid/grid-with-dynamic-img.html @@ -15775,14 +16145,14 @@ reftest css/css-grid/layout-algorithm/grid-percent-rows-filled-shrinkwrap-001.ht reftest css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html reftest css/css-grid/layout-algorithm/grid-stretch-respects-min-size-001.html reftest css/css-grid/layout-algorithm/grid-template-flexible-rerun-track-sizing.html -reftest css/css-grid/masonry/tentative/align-content/masonry-align-content-001.html -reftest css/css-grid/masonry/tentative/align-content/masonry-align-content-002.html -reftest css/css-grid/masonry/tentative/align-content/masonry-align-content-003.html -reftest css/css-grid/masonry/tentative/align-content/masonry-align-content-004.html -reftest css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-001.html -reftest css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-multi-001.html -reftest css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-stretch-001.html -reftest css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-stretch-002.html +reftest css/css-grid/masonry/tentative/alignment/masonry-align-content-001.html +reftest css/css-grid/masonry/tentative/alignment/masonry-align-content-002.html +reftest css/css-grid/masonry/tentative/alignment/masonry-align-content-003.html +reftest css/css-grid/masonry/tentative/alignment/masonry-align-content-004.html +reftest css/css-grid/masonry/tentative/alignment/masonry-justify-content-001.html +reftest css/css-grid/masonry/tentative/alignment/masonry-justify-content-002.html +reftest css/css-grid/masonry/tentative/alignment/masonry-justify-content-003.html +reftest css/css-grid/masonry/tentative/alignment/masonry-justify-content-004.html reftest css/css-grid/masonry/tentative/baseline/masonry-grid-item-content-baseline-001.html reftest css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-001.html reftest css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002a.html @@ -15790,18 +16160,23 @@ reftest css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline- reftest css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-001.html reftest css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-002.html reftest css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-003.html -reftest css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-004.html -reftest css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-005.html -reftest css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-006.html reftest css/css-grid/masonry/tentative/gap/masonry-gap-001.html +reftest css/css-grid/masonry/tentative/gap/masonry-gap-002.html reftest css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-001.html reftest css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-002.html -reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-001.html -reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-002.html -reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-003.html -reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-004.html -reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-005.html -reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-006.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-001.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-002.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-003.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-004.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-005.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-006.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-007.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-001.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-002.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-003.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-004.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-005.html +reftest css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-006.html reftest css/css-grid/masonry/tentative/item-placement/masonry-columns-item-placement-auto-flow-next-001.html reftest css/css-grid/masonry/tentative/item-placement/masonry-item-placement-001.html reftest css/css-grid/masonry/tentative/item-placement/masonry-item-placement-002.html @@ -15812,20 +16187,19 @@ reftest css/css-grid/masonry/tentative/item-placement/masonry-item-placement-006 reftest css/css-grid/masonry/tentative/item-placement/masonry-item-placement-007.html reftest css/css-grid/masonry/tentative/item-placement/masonry-item-placement-008.html reftest css/css-grid/masonry/tentative/item-placement/masonry-rows-item-placement-auto-flow-next-001.html -reftest css/css-grid/masonry/tentative/justify-content/masonry-justify-content-001.html -reftest css/css-grid/masonry/tentative/justify-content/masonry-justify-content-002.html -reftest css/css-grid/masonry/tentative/justify-content/masonry-justify-content-003.html -reftest css/css-grid/masonry/tentative/justify-content/masonry-justify-content-004.html -reftest css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-001.html -reftest css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-multi-001.html -reftest css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-stretch-001.html -reftest css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-stretch-002.html +reftest css/css-grid/masonry/tentative/item-placement/masonry-rows-with-grid-width-changed.html +reftest css/css-grid/masonry/tentative/masonry-columns-item-containing-block-is-grid-content-width.html +reftest css/css-grid/masonry/tentative/masonry-not-inhibited-001.html reftest css/css-grid/masonry/tentative/order/masonry-order-001.html reftest css/css-grid/masonry/tentative/order/masonry-order-002.html reftest css/css-grid/masonry/tentative/subgrid/masonry-subgrid-001.html reftest css/css-grid/masonry/tentative/subgrid/masonry-subgrid-002.html +reftest css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize.html +reftest css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-explicit-block.html reftest css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-left-side.html reftest css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-right-side.html +reftest css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-span-row.html +reftest css/css-grid/min-size-auto-overflow-clip.html reftest css/css-grid/nested-grid-item-block-size-001.html reftest css/css-grid/placement/grid-layout-grid-span.html reftest css/css-grid/placement/grid-layout-lines-shorthands.html @@ -15844,13 +16218,23 @@ reftest css/css-grid/placement/grid-placement-using-named-grid-lines-008.html reftest css/css-grid/placement/grid-placement-using-named-grid-lines-009.html reftest css/css-grid/placement/grid-template-areas-must-keep-named-columns-order-001.html reftest css/css-grid/relative-grandchild.html +reftest css/css-grid/stretch-grid-item-button-overflow.html reftest css/css-grid/stretch-grid-item-checkbox-input.html reftest css/css-grid/stretch-grid-item-radio-input.html +reftest css/css-grid/stretch-grid-item-text-input-overflow.html reftest css/css-grid/subgrid/abs-pos-001.html reftest css/css-grid/subgrid/abs-pos-002.html +reftest css/css-grid/subgrid/alignment-in-subgridded-axes-002.html reftest css/css-grid/subgrid/auto-track-sizing-001.html reftest css/css-grid/subgrid/auto-track-sizing-002.html +reftest css/css-grid/subgrid/auto-track-sizing-003.html +reftest css/css-grid/subgrid/auto-track-sizing-004.html reftest css/css-grid/subgrid/baseline-001.html +reftest css/css-grid/subgrid/contribution-size-flex-tracks-001.html +reftest css/css-grid/subgrid/dynamic-min-content-001.html +reftest css/css-grid/subgrid/dynamic-min-content-002.html +reftest css/css-grid/subgrid/dynamic-min-content-003.html +reftest css/css-grid/subgrid/dynamic-subgridded-item-height.html reftest css/css-grid/subgrid/grid-gap-001.html reftest css/css-grid/subgrid/grid-gap-002.html reftest css/css-grid/subgrid/grid-gap-003.html @@ -15862,11 +16246,13 @@ reftest css/css-grid/subgrid/grid-gap-008.html reftest css/css-grid/subgrid/grid-gap-009.html reftest css/css-grid/subgrid/grid-gap-010.html reftest css/css-grid/subgrid/grid-gap-011.html +reftest css/css-grid/subgrid/grid-gap-012.html reftest css/css-grid/subgrid/grid-gap-larger-001.html reftest css/css-grid/subgrid/grid-gap-larger-002.html reftest css/css-grid/subgrid/grid-gap-normal-001.html reftest css/css-grid/subgrid/grid-gap-smaller-001.html reftest css/css-grid/subgrid/independent-formatting-context.html +reftest css/css-grid/subgrid/independent-tracks-from-parent-grid.html reftest css/css-grid/subgrid/item-percentage-height-001.html reftest css/css-grid/subgrid/line-names-001.html reftest css/css-grid/subgrid/line-names-002.html @@ -15879,12 +16265,19 @@ reftest css/css-grid/subgrid/line-names-008.html reftest css/css-grid/subgrid/line-names-009.html reftest css/css-grid/subgrid/line-names-010.html reftest css/css-grid/subgrid/line-names-011.html +reftest css/css-grid/subgrid/line-names-012.html +reftest css/css-grid/subgrid/line-names-013.html reftest css/css-grid/subgrid/orthogonal-writing-mode-001.html reftest css/css-grid/subgrid/orthogonal-writing-mode-002.html reftest css/css-grid/subgrid/orthogonal-writing-mode-003.html reftest css/css-grid/subgrid/orthogonal-writing-mode-004.html +reftest css/css-grid/subgrid/orthogonal-writing-mode-005.html +reftest css/css-grid/subgrid/orthogonal-writing-mode-006.html +reftest css/css-grid/subgrid/overflow-hidden-does-not-prohibit-subgrid.html reftest css/css-grid/subgrid/parent-repeat-auto-fit-001.html reftest css/css-grid/subgrid/parent-repeat-auto-fit-002.html +reftest css/css-grid/subgrid/percentage-track-sizing.html +reftest css/css-grid/subgrid/placement-implicit-001.html reftest css/css-grid/subgrid/repeat-auto-fill-001.html reftest css/css-grid/subgrid/repeat-auto-fill-002.html reftest css/css-grid/subgrid/repeat-auto-fill-003.html @@ -15893,17 +16286,64 @@ reftest css/css-grid/subgrid/repeat-auto-fill-005.html reftest css/css-grid/subgrid/repeat-auto-fill-006.html reftest css/css-grid/subgrid/repeat-auto-fill-007.html reftest css/css-grid/subgrid/repeat-auto-fill-008.html +reftest css/css-grid/subgrid/scrollbar-gutter-001.html +reftest css/css-grid/subgrid/scrollbar-gutter-002.html +reftest css/css-grid/subgrid/standalone-axis-size-001.html +reftest css/css-grid/subgrid/standalone-axis-size-002.html +reftest css/css-grid/subgrid/standalone-axis-size-003.html +reftest css/css-grid/subgrid/standalone-axis-size-004.html +reftest css/css-grid/subgrid/standalone-axis-size-005.html +reftest css/css-grid/subgrid/standalone-axis-size-006.html +reftest css/css-grid/subgrid/standalone-axis-size-007.html +reftest css/css-grid/subgrid/standalone-axis-size-008.html +reftest css/css-grid/subgrid/standalone-axis-size-009.html reftest css/css-grid/subgrid/subgrid-baseline-001.html reftest css/css-grid/subgrid/subgrid-baseline-002.html reftest css/css-grid/subgrid/subgrid-baseline-003.html reftest css/css-grid/subgrid/subgrid-baseline-004.html +reftest css/css-grid/subgrid/subgrid-baseline-012.html +reftest css/css-grid/subgrid/subgrid-button.html reftest css/css-grid/subgrid/subgrid-item-block-size-001.html +reftest css/css-grid/subgrid/subgrid-no-items-on-edges-001.html +reftest css/css-grid/subgrid/subgrid-no-items-on-edges-002.html reftest css/css-grid/subgrid/subgrid-stretch.html +reftest css/css-grid/subgrid/writing-directions-001.html +reftest css/css-grid/subgrid/writing-directions-002.html +reftest css/css-grid/subgrid/writing-directions-003.html reftest css/css-grid/table-grid-item-dynamic-001.html reftest css/css-grid/table-grid-item-dynamic-002.html reftest css/css-grid/table-grid-item-dynamic-003.html reftest css/css-grid/table-grid-item-dynamic-004.html reftest css/css-grid/whitespace-reattach.html +reftest css/css-highlight-api/highlight-image.html +reftest css/css-highlight-api/highlight-priority-painting.html +reftest css/css-highlight-api/highlight-text-across-elements.html +reftest css/css-highlight-api/highlight-text-cascade.html +reftest css/css-highlight-api/highlight-text-decorations.html +reftest css/css-highlight-api/highlight-text-dynamic.html +reftest css/css-highlight-api/highlight-text-replace.html +reftest css/css-highlight-api/highlight-text.html +reftest css/css-highlight-api/painting/css-highlight-painting-underline-offset-001.html +reftest css/css-highlight-api/painting/css-target-text-decoration-001.html +reftest css/css-highlight-api/painting/custom-highlight-container-metrics-001.html +reftest css/css-highlight-api/painting/custom-highlight-container-metrics-002.html +reftest css/css-highlight-api/painting/custom-highlight-container-metrics-003.html +reftest css/css-highlight-api/painting/custom-highlight-container-metrics-004.html +reftest css/css-highlight-api/painting/custom-highlight-container-metrics-005.html +reftest css/css-highlight-api/painting/custom-highlight-container-metrics-006.html +reftest css/css-highlight-api/painting/custom-highlight-dynamic-container-metrics-001.html +reftest css/css-highlight-api/painting/custom-highlight-dynamic-container-metrics-002.html +reftest css/css-highlight-api/painting/custom-highlight-dynamic-container-metrics-003.html +reftest css/css-highlight-api/painting/custom-highlight-dynamic-container-metrics-004.html +reftest css/css-highlight-api/painting/custom-highlight-dynamic-font-metrics-001.html +reftest css/css-highlight-api/painting/custom-highlight-dynamic-logical-metrics-001.html +reftest css/css-highlight-api/painting/custom-highlight-font-metrics-001.html +reftest css/css-highlight-api/painting/custom-highlight-font-metrics-002.html +reftest css/css-highlight-api/painting/custom-highlight-font-metrics-003.html +reftest css/css-highlight-api/painting/custom-highlight-font-metrics-004.html +reftest css/css-highlight-api/painting/custom-highlight-font-metrics-005.html +reftest css/css-highlight-api/painting/custom-highlight-logical-metrics-001.html +reftest css/css-highlight-api/painting/custom-highlight-logical-metrics-002.html reftest css/css-highlight-api/painting/custom-highlight-painting-001.html reftest css/css-highlight-api/painting/custom-highlight-painting-002.html reftest css/css-highlight-api/painting/custom-highlight-painting-003.html @@ -15923,7 +16363,11 @@ reftest css/css-highlight-api/painting/custom-highlight-painting-015.html reftest css/css-highlight-api/painting/custom-highlight-painting-016.html reftest css/css-highlight-api/painting/custom-highlight-painting-017.html reftest css/css-highlight-api/painting/custom-highlight-painting-018.html +reftest css/css-highlight-api/painting/custom-highlight-painting-019.html +reftest css/css-highlight-api/painting/custom-highlight-painting-020.html +reftest css/css-highlight-api/painting/custom-highlight-painting-021.html reftest css/css-highlight-api/painting/custom-highlight-painting-below-grammar.html +reftest css/css-highlight-api/painting/custom-highlight-painting-below-selection-transparency.html reftest css/css-highlight-api/painting/custom-highlight-painting-below-selection.html reftest css/css-highlight-api/painting/custom-highlight-painting-below-target-text.html reftest css/css-highlight-api/painting/custom-highlight-painting-iframe-001.html @@ -15946,16 +16390,26 @@ reftest css/css-highlight-api/painting/custom-highlight-painting-overlapping-hig reftest css/css-highlight-api/painting/custom-highlight-painting-overlapping-highlights-002.html reftest css/css-highlight-api/painting/custom-highlight-painting-prioritization-001.html reftest css/css-highlight-api/painting/custom-highlight-painting-prioritization-002.html +reftest css/css-highlight-api/painting/custom-highlight-painting-prioritization-003.html +reftest css/css-highlight-api/painting/custom-highlight-painting-priority-text-decoration-001.html reftest css/css-highlight-api/painting/custom-highlight-painting-staticrange-001.html reftest css/css-highlight-api/painting/custom-highlight-painting-staticrange-002.html reftest css/css-highlight-api/painting/custom-highlight-painting-staticrange-003.html +reftest css/css-highlight-api/painting/custom-highlight-painting-staticrange-004.html +reftest css/css-highlight-api/painting/custom-highlight-painting-staticrange-005.html reftest css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001.html reftest css/css-highlight-api/painting/custom-highlight-painting-text-decoration-dynamic-001.html reftest css/css-highlight-api/painting/custom-highlight-painting-text-shadow.tentative.html +reftest css/css-highlight-api/painting/custom-highlight-painting-vertical-writing-mode-001.html +reftest css/css-highlight-api/painting/invalidation/css-highlight-invalidation-001.html reftest css/css-images/color-stop-currentcolor.html reftest css/css-images/conic-gradient-angle-negative.html reftest css/css-images/conic-gradient-angle.html reftest css/css-images/conic-gradient-center.html +reftest css/css-images/cross-fade-basic.html +reftest css/css-images/cross-fade-natural-size.html +reftest css/css-images/cross-fade-premultiplied-alpha.html +reftest css/css-images/cross-fade-target-alpha.html reftest css/css-images/css-image-fallbacks-and-annotations.html reftest css/css-images/css-image-fallbacks-and-annotations002.html reftest css/css-images/css-image-fallbacks-and-annotations003.html @@ -15966,6 +16420,7 @@ reftest css/css-images/gradient-button.html reftest css/css-images/gradient-content-box.html reftest css/css-images/gradient-move-stops.html reftest css/css-images/gradient-refcrash.html +reftest css/css-images/gradient/color-scheme-dependent-color-stops.html reftest css/css-images/gradient/css-color-4-colors-default-to-oklab-gradient.html reftest css/css-images/gradient/gradient-eval-001.html reftest css/css-images/gradient/gradient-eval-002.html @@ -15976,8 +16431,12 @@ reftest css/css-images/gradient/gradient-eval-006.html reftest css/css-images/gradient/gradient-eval-007.html reftest css/css-images/gradient/gradient-eval-008.html reftest css/css-images/gradient/gradient-eval-009.html +reftest css/css-images/gradient/gradient-none-interpolation.html +reftest css/css-images/gradient/gradient-single-stop-longer-hue-hsl.html +reftest css/css-images/gradient/gradient-single-stop-longer-hue-oklch.html reftest css/css-images/gradient/legacy-color-gradient.html reftest css/css-images/gradient/oklab-gradient.html +reftest css/css-images/gradient/repeating-gradient-hsl-and-oklch.html reftest css/css-images/gradient/srgb-gradient.html reftest css/css-images/gradient/srgb-linear-gradient.html reftest css/css-images/gradient/xyz-gradient.html @@ -15989,6 +16448,8 @@ reftest css/css-images/image-orientation/image-orientation-background-properties reftest css/css-images/image-orientation/image-orientation-background-properties.html reftest css/css-images/image-orientation/image-orientation-border-image.html reftest css/css-images/image-orientation/image-orientation-default.html +reftest css/css-images/image-orientation/image-orientation-exif-png-2.html +reftest css/css-images/image-orientation/image-orientation-exif-png-3.html reftest css/css-images/image-orientation/image-orientation-exif-png.html reftest css/css-images/image-orientation/image-orientation-from-image-composited-dynamic1.html reftest css/css-images/image-orientation/image-orientation-from-image-composited-dynamic2.html @@ -16012,21 +16473,30 @@ reftest css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html reftest css/css-images/image-orientation/svg-image-orientation-none.html reftest css/css-images/image-orientation/svg-image-orientation.html reftest css/css-images/image-rendering-border-image.html +reftest css/css-images/image-set/image-set-all-options-invalid.html +reftest css/css-images/image-set/image-set-calc-x-rendering-2.html +reftest css/css-images/image-set/image-set-calc-x-rendering.html +reftest css/css-images/image-set/image-set-conic-gradient-rendering.html reftest css/css-images/image-set/image-set-content-rendering.html +reftest css/css-images/image-set/image-set-dpcm-rendering.html reftest css/css-images/image-set/image-set-dpi-rendering-2.html reftest css/css-images/image-set/image-set-dpi-rendering.html reftest css/css-images/image-set/image-set-dppx-rendering.html reftest css/css-images/image-set/image-set-empty-url-rendering.html reftest css/css-images/image-set/image-set-first-match-rendering.html -reftest css/css-images/image-set/image-set-invalid-resolution-rendering-2.html -reftest css/css-images/image-set/image-set-invalid-resolution-rendering.html reftest css/css-images/image-set/image-set-linear-gradient-rendering.html +reftest css/css-images/image-set/image-set-negative-resolution-rendering-2.html +reftest css/css-images/image-set/image-set-negative-resolution-rendering-3.html +reftest css/css-images/image-set/image-set-negative-resolution-rendering.html reftest css/css-images/image-set/image-set-no-res-rendering-2.html reftest css/css-images/image-set/image-set-no-res-rendering.html reftest css/css-images/image-set/image-set-no-url-rendering.html reftest css/css-images/image-set/image-set-radial-gradient-rendering.html reftest css/css-images/image-set/image-set-rendering-2.html reftest css/css-images/image-set/image-set-rendering.html +reftest css/css-images/image-set/image-set-repeating-conic-gradient-rendering.html +reftest css/css-images/image-set/image-set-repeating-linear-gradient-rendering.html +reftest css/css-images/image-set/image-set-repeating-radial-gradient-rendering.html reftest css/css-images/image-set/image-set-resolution-001.html reftest css/css-images/image-set/image-set-resolution-002.html reftest css/css-images/image-set/image-set-resolution-003.html @@ -16038,6 +16508,8 @@ reftest css/css-images/image-set/image-set-type-skip-unsupported-rendering.html reftest css/css-images/image-set/image-set-type-unsupported-rendering-2.html reftest css/css-images/image-set/image-set-type-unsupported-rendering.html reftest css/css-images/image-set/image-set-unordered-res-rendering.html +reftest css/css-images/image-set/image-set-zero-resolution-rendering-2.html +reftest css/css-images/image-set/image-set-zero-resolution-rendering.html reftest css/css-images/infinite-radial-gradient-refcrash.html reftest css/css-images/linear-gradient-1.html reftest css/css-images/linear-gradient-2.html @@ -16054,6 +16526,8 @@ reftest css/css-images/normalization-linear-2.html reftest css/css-images/normalization-linear-degenerate.html reftest css/css-images/normalization-linear.html reftest css/css-images/normalization-radial-2.html +reftest css/css-images/normalization-radial-3.html +reftest css/css-images/normalization-radial-4.html reftest css/css-images/normalization-radial-degenerate.html reftest css/css-images/normalization-radial.html reftest css/css-images/object-fit-contain-png-001c.html @@ -16090,6 +16564,14 @@ reftest css/css-images/object-fit-contain-svg-006e.html reftest css/css-images/object-fit-contain-svg-006i.html reftest css/css-images/object-fit-contain-svg-006o.html reftest css/css-images/object-fit-contain-svg-006p.html +reftest css/css-images/object-fit-containcontainintrinsicsize-png-001c.tentative.html +reftest css/css-images/object-fit-containcontainintrinsicsize-png-001e.tentative.html +reftest css/css-images/object-fit-containcontainintrinsicsize-png-001i.tentative.html +reftest css/css-images/object-fit-containcontainintrinsicsize-png-001p.tentative.html +reftest css/css-images/object-fit-containsize-png-001c.tentative.html +reftest css/css-images/object-fit-containsize-png-001e.tentative.html +reftest css/css-images/object-fit-containsize-png-001i.tentative.html +reftest css/css-images/object-fit-containsize-png-001p.tentative.html reftest css/css-images/object-fit-cover-png-001c.html reftest css/css-images/object-fit-cover-png-001e.html reftest css/css-images/object-fit-cover-png-001i.html @@ -16281,9 +16763,12 @@ reftest css/css-images/object-view-box-xywh-percentage.html reftest css/css-images/object-view-box-xywh.html reftest css/css-images/out-of-range-color-stop-conic.html reftest css/css-images/repeating-conic-gradient.html +reftest css/css-images/svg-images-are-ignored.html +reftest css/css-images/svg-script-is-ignored.html reftest css/css-images/tiled-conic-gradients.html reftest css/css-images/tiled-gradients.html reftest css/css-images/tiled-radial-gradients.html +reftest css/css-inline/baseline-source/baseline-source-inline-box.html reftest css/css-inline/empty-text-node-001.html reftest css/css-inline/initial-letter/Initial-letter-breaking-rtl.html reftest css/css-inline/initial-letter/Initial-letter-breaking-vlr.html @@ -16331,6 +16816,42 @@ reftest css/css-inline/initial-letter/initial-letter-sunk-initial.html reftest css/css-inline/initial-letter/initial-letter-with-first-line.html reftest css/css-inline/initial-letter/initial-letter-with-tab-rtl.html reftest css/css-inline/initial-letter/initial-letter-with-tab.html +reftest css/css-inline/text-box-trim/text-box-trim-accumulation-001.html +reftest css/css-inline/text-box-trim/text-box-trim-atomic-inline-001.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-001.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-002.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-003.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-004.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-001.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-002.html +reftest css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-003.html +reftest css/css-inline/text-box-trim/text-box-trim-dynamic-001.html +reftest css/css-inline/text-box-trim/text-box-trim-dynamic-002.html +reftest css/css-inline/text-box-trim/text-box-trim-end-001.html +reftest css/css-inline/text-box-trim/text-box-trim-end-empty-line-001.html +reftest css/css-inline/text-box-trim/text-box-trim-float-clear-br-001.html +reftest css/css-inline/text-box-trim/text-box-trim-float-clear-br-002.html +reftest css/css-inline/text-box-trim/text-box-trim-float-clear-br-003.html +reftest css/css-inline/text-box-trim/text-box-trim-float-start-001.html +reftest css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001.html +reftest css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-002.html +reftest css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-003.html +reftest css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-004.html +reftest css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-005.html +reftest css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-006.html +reftest css/css-inline/text-box-trim/text-box-trim-height-001.html +reftest css/css-inline/text-box-trim/text-box-trim-height-002.html +reftest css/css-inline/text-box-trim/text-box-trim-initial-letter-end-001.html +reftest css/css-inline/text-box-trim/text-box-trim-initial-letter-start-001.html +reftest css/css-inline/text-box-trim/text-box-trim-line-clamp-001.html +reftest css/css-inline/text-box-trim/text-box-trim-multicol-001.html +reftest css/css-inline/text-box-trim/text-box-trim-multicol-002.html +reftest css/css-inline/text-box-trim/text-box-trim-ruby-end-001.html +reftest css/css-inline/text-box-trim/text-box-trim-ruby-start-001.html +reftest css/css-inline/text-box-trim/text-box-trim-ruby-start-002.html +reftest css/css-inline/text-box-trim/text-box-trim-start-001.html +reftest css/css-inline/text-box-trim/text-box-trim-tall-line-001.html +reftest css/css-inline/text-box-trim/text-box-trim-text-emphasis-001.html reftest css/css-layout-api/auto-block-size/absolute.https.html reftest css/css-layout-api/auto-block-size/flex.https.html reftest css/css-layout-api/auto-block-size/floats.https.html @@ -16486,6 +17007,10 @@ reftest css/css-lists/content-property/marker-text-matches-lower-roman.html reftest css/css-lists/content-property/marker-text-matches-square.html reftest css/css-lists/content-property/marker-text-matches-upper-latin.html reftest css/css-lists/content-property/marker-text-matches-upper-roman.html +reftest css/css-lists/counter-001.html +reftest css/css-lists/counter-002.html +reftest css/css-lists/counter-003.html +reftest css/css-lists/counter-004.html reftest css/css-lists/counter-increment-inside-display-contents.html reftest css/css-lists/counter-invalid.htm reftest css/css-lists/counter-list-item-2.html @@ -16493,6 +17018,7 @@ reftest css/css-lists/counter-list-item-3.html reftest css/css-lists/counter-list-item-slot-order.html reftest css/css-lists/counter-list-item.html reftest css/css-lists/counter-order-display-contents.html +reftest css/css-lists/counter-reset-increment-overflow-underflow.html reftest css/css-lists/counter-reset-increment-set-display-contents.html reftest css/css-lists/counter-reset-increment-set-display-none.html reftest css/css-lists/counter-reset-inside-display-contents.html @@ -16504,6 +17030,17 @@ reftest css/css-lists/counter-set-001.html reftest css/css-lists/counter-set-002.html reftest css/css-lists/counter-slot-order-scoping.html reftest css/css-lists/counter-slot-order.html +reftest css/css-lists/counters-001.html +reftest css/css-lists/counters-002.html +reftest css/css-lists/counters-003.html +reftest css/css-lists/counters-004.html +reftest css/css-lists/counters-005.html +reftest css/css-lists/counters-006.html +reftest css/css-lists/counters-scope-001.html +reftest css/css-lists/counters-scope-002.html +reftest css/css-lists/counters-scope-003.html +reftest css/css-lists/counters-scope-004.html +reftest css/css-lists/details-open.html reftest css/css-lists/foo-counter-reversed-006a.html reftest css/css-lists/foo-counter-reversed-006b.html reftest css/css-lists/foo-counter-reversed-006c.html @@ -16515,6 +17052,7 @@ reftest css/css-lists/foo-counter-reversed-008a.html reftest css/css-lists/foo-counter-reversed-008b.html reftest css/css-lists/foo-counter-reversed-009a.html reftest css/css-lists/foo-counter-reversed-009b.html +reftest css/css-lists/implicit-and-explicit-list-item-counters.html reftest css/css-lists/inline-block-list-marker.html reftest css/css-lists/inline-block-list.html reftest css/css-lists/inline-list-marker.html @@ -16570,6 +17108,7 @@ reftest css/css-lists/marker-webkit-text-fill-color.html reftest css/css-lists/nested-marker-dynamic.html reftest css/css-lists/nested-marker.html reftest css/css-lists/ol-change-display-type.html +reftest css/css-lists/pseudo-element-remove-update.html reftest css/css-logical/cascading-001.html reftest css/css-logical/logical-values-float-clear-1.html reftest css/css-logical/logical-values-float-clear-2.html @@ -16609,6 +17148,9 @@ reftest css/css-masking/clip-path-svg-content/clip-path-dom-child-changes.svg reftest css/css-masking/clip-path-svg-content/clip-path-dom-clippathunits.svg reftest css/css-masking/clip-path-svg-content/clip-path-dom-href.svg reftest css/css-masking/clip-path-svg-content/clip-path-dom-id.svg +reftest css/css-masking/clip-path-svg-content/clip-path-inset-stroke-001.svg +reftest css/css-masking/clip-path-svg-content/clip-path-inset-stroke-002.svg +reftest css/css-masking/clip-path-svg-content/clip-path-invalid-reference.svg reftest css/css-masking/clip-path-svg-content/clip-path-invalid.svg reftest css/css-masking/clip-path-svg-content/clip-path-negative-scale.svg reftest css/css-masking/clip-path-svg-content/clip-path-no-content-001.svg @@ -16630,6 +17172,9 @@ reftest css/css-masking/clip-path-svg-content/clip-path-on-marker-002.svg reftest css/css-masking/clip-path-svg-content/clip-path-on-marker-003.svg reftest css/css-masking/clip-path-svg-content/clip-path-on-svg-001.svg reftest css/css-masking/clip-path-svg-content/clip-path-on-svg-002.svg +reftest css/css-masking/clip-path-svg-content/clip-path-on-svg-003.svg +reftest css/css-masking/clip-path-svg-content/clip-path-on-svg-004.svg +reftest css/css-masking/clip-path-svg-content/clip-path-on-svg-005.svg reftest css/css-masking/clip-path-svg-content/clip-path-on-use-001.svg reftest css/css-masking/clip-path-svg-content/clip-path-on-use-002.svg reftest css/css-masking/clip-path-svg-content/clip-path-precision-001.svg @@ -16672,33 +17217,62 @@ reftest css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-cli reftest css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip.svg reftest css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip-transform.svg reftest css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip.svg +reftest css/css-masking/clip-path/animations/clip-path-animation-cancel.html reftest css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-reverse.html reftest css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function.html +reftest css/css-masking/clip-path/animations/clip-path-animation-ellipse-mixed-change.html +reftest css/css-masking/clip-path/animations/clip-path-animation-ellipse.html +reftest css/css-masking/clip-path/animations/clip-path-animation-ensure-keyframe-update.html reftest css/css-masking/clip-path/animations/clip-path-animation-filter.html reftest css/css-masking/clip-path/animations/clip-path-animation-fixed-position-rounding-error.html reftest css/css-masking/clip-path/animations/clip-path-animation-fixed-position.html +reftest css/css-masking/clip-path/animations/clip-path-animation-font-size-inherited.html +reftest css/css-masking/clip-path/animations/clip-path-animation-font-size-mixed-change.html +reftest css/css-masking/clip-path/animations/clip-path-animation-font-size.html +reftest css/css-masking/clip-path/animations/clip-path-animation-forward-fill.html reftest css/css-masking/clip-path/animations/clip-path-animation-fragmented.html reftest css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes1.html reftest css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes2.html +reftest css/css-masking/clip-path/animations/clip-path-animation-inherit.html +reftest css/css-masking/clip-path/animations/clip-path-animation-initial.html reftest css/css-masking/clip-path/animations/clip-path-animation-missing-0-percent.html +reftest css/css-masking/clip-path/animations/clip-path-animation-mixed-interpolation.html reftest css/css-masking/clip-path/animations/clip-path-animation-non-keyframe-timing-function.html reftest css/css-masking/clip-path/animations/clip-path-animation-none.html reftest css/css-masking/clip-path/animations/clip-path-animation-overflow.html +reftest css/css-masking/clip-path/animations/clip-path-animation-path.html +reftest css/css-masking/clip-path/animations/clip-path-animation-polygon-mixed-change.html +reftest css/css-masking/clip-path/animations/clip-path-animation-polygon.html +reftest css/css-masking/clip-path/animations/clip-path-animation-revert-layer.html +reftest css/css-masking/clip-path/animations/clip-path-animation-revert.html reftest css/css-masking/clip-path/animations/clip-path-animation-svg-zoom.html reftest css/css-masking/clip-path/animations/clip-path-animation-svg.html reftest css/css-masking/clip-path/animations/clip-path-animation-three-keyframes1.html reftest css/css-masking/clip-path/animations/clip-path-animation-three-keyframes2.html +reftest css/css-masking/clip-path/animations/clip-path-animation-unset.html reftest css/css-masking/clip-path/animations/clip-path-animation-zoom.html reftest css/css-masking/clip-path/animations/clip-path-animation.html +reftest css/css-masking/clip-path/animations/clip-path-path-interpolation-001.html +reftest css/css-masking/clip-path/animations/clip-path-path-interpolation-002.html +reftest css/css-masking/clip-path/animations/clip-path-path-interpolation-with-zoom.html +reftest css/css-masking/clip-path/animations/clip-path-rect-interpolation-001.html +reftest css/css-masking/clip-path/animations/clip-path-shape-interpolation-001.html +reftest css/css-masking/clip-path/animations/clip-path-shape-interpolation-002.html +reftest css/css-masking/clip-path/animations/clip-path-shape-interpolation-003.html +reftest css/css-masking/clip-path/animations/clip-path-shape-interpolation-004.html reftest css/css-masking/clip-path/animations/clip-path-transition-custom-timing-function.html reftest css/css-masking/clip-path/animations/clip-path-transition.html +reftest css/css-masking/clip-path/animations/clip-path-xywh-interpolation-001.html reftest css/css-masking/clip-path/animations/two-clip-path-animation-diff-length1.html reftest css/css-masking/clip-path/animations/two-clip-path-animation-diff-length2.html reftest css/css-masking/clip-path/animations/two-clip-path-animation-diff-length3.html +reftest css/css-masking/clip-path/animations/two-clip-path-animation-diff-length4.html reftest css/css-masking/clip-path/clip-path-blending-offset.html reftest css/css-masking/clip-path/clip-path-borderBox-1a.html reftest css/css-masking/clip-path/clip-path-borderBox-1b.html reftest css/css-masking/clip-path/clip-path-borderBox-1c.html +reftest css/css-masking/clip-path/clip-path-borderBox-1d.html +reftest css/css-masking/clip-path/clip-path-borderBox-1e.html reftest css/css-masking/clip-path/clip-path-circle-001.html reftest css/css-masking/clip-path/clip-path-circle-002.html reftest css/css-masking/clip-path/clip-path-circle-003.html @@ -16707,11 +17281,15 @@ reftest css/css-masking/clip-path/clip-path-circle-005.html reftest css/css-masking/clip-path/clip-path-circle-006.html reftest css/css-masking/clip-path/clip-path-circle-007.html reftest css/css-masking/clip-path/clip-path-circle-008.html +reftest css/css-masking/clip-path/clip-path-circle-closest-corner.html +reftest css/css-masking/clip-path/clip-path-circle-farthest-corner.html reftest css/css-masking/clip-path/clip-path-columns-shape-001.html reftest css/css-masking/clip-path/clip-path-columns-shape-002.html reftest css/css-masking/clip-path/clip-path-contentBox-1a.html reftest css/css-masking/clip-path/clip-path-contentBox-1b.html reftest css/css-masking/clip-path/clip-path-contentBox-1c.html +reftest css/css-masking/clip-path/clip-path-contentBox-1d.html +reftest css/css-masking/clip-path/clip-path-contentBox-1e.html reftest css/css-masking/clip-path/clip-path-descendant-text-mutated-001.html reftest css/css-masking/clip-path/clip-path-document-element-will-change.html reftest css/css-masking/clip-path/clip-path-document-element.html @@ -16727,27 +17305,41 @@ reftest css/css-masking/clip-path/clip-path-ellipse-005.html reftest css/css-masking/clip-path/clip-path-ellipse-006.html reftest css/css-masking/clip-path/clip-path-ellipse-007.html reftest css/css-masking/clip-path/clip-path-ellipse-008.html +reftest css/css-masking/clip-path/clip-path-ellipse-closest-farthest-corner.html reftest css/css-masking/clip-path/clip-path-fillBox-1a.html +reftest css/css-masking/clip-path/clip-path-fillBox-1b.html reftest css/css-masking/clip-path/clip-path-filter-order.html reftest css/css-masking/clip-path/clip-path-filter-radius-clips.html reftest css/css-masking/clip-path/clip-path-fixed-nested.html reftest css/css-masking/clip-path/clip-path-fixed-scroll.html +reftest css/css-masking/clip-path/clip-path-foreignobject-non-zero-xy.html reftest css/css-masking/clip-path/clip-path-geometryBox-2.html reftest css/css-masking/clip-path/clip-path-inline-001.html reftest css/css-masking/clip-path/clip-path-inline-002.html reftest css/css-masking/clip-path/clip-path-inline-003.html +reftest css/css-masking/clip-path/clip-path-inline-004.html +reftest css/css-masking/clip-path/clip-path-inline-005.html +reftest css/css-masking/clip-path/clip-path-inline-006.html +reftest css/css-masking/clip-path/clip-path-inline-007.html +reftest css/css-masking/clip-path/clip-path-inline-008.html +reftest css/css-masking/clip-path/clip-path-inline-009.html +reftest css/css-masking/clip-path/clip-path-inline-010.html reftest css/css-masking/clip-path/clip-path-inset-round-percent.html reftest css/css-masking/clip-path/clip-path-localRef-1.html reftest css/css-masking/clip-path/clip-path-marginBox-1a.html +reftest css/css-masking/clip-path/clip-path-marginBox-1b.html +reftest css/css-masking/clip-path/clip-path-marginBox-1c.html +reftest css/css-masking/clip-path/clip-path-marginBox-1d.html reftest css/css-masking/clip-path/clip-path-mix-blend-mode-1.html +reftest css/css-masking/clip-path/clip-path-on-fixed-position-scroll.html reftest css/css-masking/clip-path/clip-path-paddingBox-1a.html reftest css/css-masking/clip-path/clip-path-paddingBox-1b.html reftest css/css-masking/clip-path/clip-path-paddingBox-1c.html +reftest css/css-masking/clip-path/clip-path-paddingBox-1d.html +reftest css/css-masking/clip-path/clip-path-paddingBox-1e.html reftest css/css-masking/clip-path/clip-path-path-001.html reftest css/css-masking/clip-path/clip-path-path-002.html -reftest css/css-masking/clip-path/clip-path-path-interpolation-001.html -reftest css/css-masking/clip-path/clip-path-path-interpolation-002.html -reftest css/css-masking/clip-path/clip-path-path-interpolation-with-zoom.html +reftest css/css-masking/clip-path/clip-path-path-003.html reftest css/css-masking/clip-path/clip-path-path-with-zoom.html reftest css/css-masking/clip-path/clip-path-polygon-001.html reftest css/css-masking/clip-path/clip-path-polygon-002.html @@ -16762,6 +17354,9 @@ reftest css/css-masking/clip-path/clip-path-polygon-010.html reftest css/css-masking/clip-path/clip-path-polygon-011.html reftest css/css-masking/clip-path/clip-path-polygon-012.html reftest css/css-masking/clip-path/clip-path-polygon-013.html +reftest css/css-masking/clip-path/clip-path-rect-001.html +reftest css/css-masking/clip-path/clip-path-rect-002.html +reftest css/css-masking/clip-path/clip-path-rect-003.html reftest css/css-masking/clip-path/clip-path-reference-box-001.html reftest css/css-masking/clip-path/clip-path-reference-box-002.html reftest css/css-masking/clip-path/clip-path-reference-box-003.html @@ -16776,20 +17371,28 @@ reftest css/css-masking/clip-path/clip-path-shape-002-units.html reftest css/css-masking/clip-path/clip-path-shape-002.html reftest css/css-masking/clip-path/clip-path-shape-003.html reftest css/css-masking/clip-path/clip-path-shape-004.html -reftest css/css-masking/clip-path/clip-path-shape-interpolation-001.html -reftest css/css-masking/clip-path/clip-path-shape-interpolation-002.html +reftest css/css-masking/clip-path/clip-path-shape-005.html +reftest css/css-masking/clip-path/clip-path-shape-006.html +reftest css/css-masking/clip-path/clip-path-shape-foreignobject-non-zero-xy.html reftest css/css-masking/clip-path/clip-path-strokeBox-1a.html reftest css/css-masking/clip-path/clip-path-strokeBox-1b.html +reftest css/css-masking/clip-path/clip-path-strokeBox-1c.html reftest css/css-masking/clip-path/clip-path-svg-invalidate.html reftest css/css-masking/clip-path/clip-path-svg-text-backdrop-filter.html +reftest css/css-masking/clip-path/clip-path-svg-text-css.html reftest css/css-masking/clip-path/clip-path-svg-text-font-loading.html reftest css/css-masking/clip-path/clip-path-transform-mutated-001.html reftest css/css-masking/clip-path/clip-path-transform-mutated-002.html reftest css/css-masking/clip-path/clip-path-url-reference-change-from-empty.html reftest css/css-masking/clip-path/clip-path-url-reference-change.html +reftest css/css-masking/clip-path/clip-path-url-reference-svg-foreignobject-zoomed.html reftest css/css-masking/clip-path/clip-path-viewBox-1a.html reftest css/css-masking/clip-path/clip-path-viewBox-1b.html reftest css/css-masking/clip-path/clip-path-viewBox-1c.html +reftest css/css-masking/clip-path/clip-path-viewBox-1d.html +reftest css/css-masking/clip-path/clip-path-xywh-001.html +reftest css/css-masking/clip-path/clip-path-xywh-002.html +reftest css/css-masking/clip-path/clip-path-xywh-003.html reftest css/css-masking/clip-path/reference-local-url-with-base-001.html reftest css/css-masking/clip-path/reference-mutated.html reftest css/css-masking/clip-path/reference-nonexisting-existing-local.html @@ -16828,6 +17431,12 @@ reftest css/css-masking/clip/clip-transform-order-2.html reftest css/css-masking/clip/clip-transform-order.html reftest css/css-masking/mask-image/mask-clip-1.html reftest css/css-masking/mask-image/mask-clip-2.html +reftest css/css-masking/mask-image/mask-clip-3.html +reftest css/css-masking/mask-image/mask-clip-4.html +reftest css/css-masking/mask-image/mask-clip-5.html +reftest css/css-masking/mask-image/mask-clip-6.html +reftest css/css-masking/mask-image/mask-clip-7.html +reftest css/css-masking/mask-image/mask-clip-8.html reftest css/css-masking/mask-image/mask-composite-1a.html reftest css/css-masking/mask-image/mask-composite-1b.html reftest css/css-masking/mask-image/mask-composite-1c.html @@ -16835,6 +17444,7 @@ reftest css/css-masking/mask-image/mask-composite-1d.html reftest css/css-masking/mask-image/mask-composite-2a.html reftest css/css-masking/mask-image/mask-composite-2b.html reftest css/css-masking/mask-image/mask-composite-2c.html +reftest css/css-masking/mask-image/mask-composite-2d.html reftest css/css-masking/mask-image/mask-image-1a.html reftest css/css-masking/mask-image/mask-image-1b.html reftest css/css-masking/mask-image/mask-image-1c.html @@ -16857,7 +17467,11 @@ reftest css/css-masking/mask-image/mask-image-clip-exclude.html reftest css/css-masking/mask-image/mask-image-data-url-image.html reftest css/css-masking/mask-image/mask-image-ib-split-2.html reftest css/css-masking/mask-image/mask-image-ib-split.html +reftest css/css-masking/mask-image/mask-image-inline-sliced-1.html reftest css/css-masking/mask-image/mask-image-svg-child-will-change.html +reftest css/css-masking/mask-image/mask-image-svg-foreignobject-zoomed.html +reftest css/css-masking/mask-image/mask-image-svg-gradient-zoomed.html +reftest css/css-masking/mask-image/mask-image-svg-viewport-changed.html reftest css/css-masking/mask-image/mask-image-url-image-hash.html reftest css/css-masking/mask-image/mask-image-url-image.html reftest css/css-masking/mask-image/mask-image-url-local-mask.html @@ -16866,6 +17480,9 @@ reftest css/css-masking/mask-image/mask-mode-a.html reftest css/css-masking/mask-image/mask-mode-b.html reftest css/css-masking/mask-image/mask-mode-c.html reftest css/css-masking/mask-image/mask-mode-d.html +reftest css/css-masking/mask-image/mask-mode-e.html +reftest css/css-masking/mask-image/mask-mode-luminance-with-mask-size.html +reftest css/css-masking/mask-image/mask-mode-to-mask-type-svg.html reftest css/css-masking/mask-image/mask-mode-to-mask-type.html reftest css/css-masking/mask-image/mask-opacity-1a.html reftest css/css-masking/mask-image/mask-opacity-1b.html @@ -16873,8 +17490,8 @@ reftest css/css-masking/mask-image/mask-opacity-1c.html reftest css/css-masking/mask-image/mask-opacity-1d.html reftest css/css-masking/mask-image/mask-opacity-1e.html reftest css/css-masking/mask-image/mask-origin-1.html -reftest css/css-masking/mask-image/mask-origin-2.html reftest css/css-masking/mask-image/mask-origin-3.html +reftest css/css-masking/mask-image/mask-position-1a-svg.html reftest css/css-masking/mask-image/mask-position-1a.html reftest css/css-masking/mask-image/mask-position-1b.html reftest css/css-masking/mask-image/mask-position-1c.html @@ -16889,8 +17506,12 @@ reftest css/css-masking/mask-image/mask-position-4d.html reftest css/css-masking/mask-image/mask-position-5.html reftest css/css-masking/mask-image/mask-position-6.html reftest css/css-masking/mask-image/mask-position-7.html +reftest css/css-masking/mask-image/mask-position-8.html +reftest css/css-masking/mask-image/mask-repeat-1-svg.html reftest css/css-masking/mask-image/mask-repeat-1.html +reftest css/css-masking/mask-image/mask-repeat-2-svg.html reftest css/css-masking/mask-image/mask-repeat-2.html +reftest css/css-masking/mask-image/mask-repeat-3-svg.html reftest css/css-masking/mask-image/mask-repeat-3.html reftest css/css-masking/mask-image/mask-size-auto-auto.html reftest css/css-masking/mask-image/mask-size-auto-length.html @@ -16911,11 +17532,14 @@ reftest css/css-masking/mask-image/mask-size-percent-percent-stretch.html reftest css/css-masking/mask-image/mask-size-percent-percent.html reftest css/css-masking/mask-image/mask-size-percent.html reftest css/css-masking/mask-svg-content/mask-empty-container-with-filter.svg +reftest css/css-masking/mask-svg-content/mask-invalid-reference.svg reftest css/css-masking/mask-svg-content/mask-negative-scale.svg reftest css/css-masking/mask-svg-content/mask-text-001.svg reftest css/css-masking/mask-svg-content/mask-type-001.svg reftest css/css-masking/mask-svg-content/mask-type-002.svg reftest css/css-masking/mask-svg-content/mask-type-003.svg +reftest css/css-masking/mask-svg-content/mask-with-filter-clipped-to-region.svg +reftest css/css-masking/mask-svg-content/mask-with-filter.svg reftest css/css-masking/mask-svg-content/mask-with-rotation.svg reftest css/css-multicol/abspos-after-spanner-static-pos.html reftest css/css-multicol/abspos-after-spanner.html @@ -16977,6 +17601,7 @@ reftest css/css-multicol/intrinsic-size-004.html reftest css/css-multicol/intrinsic-size-005.html reftest css/css-multicol/intrinsic-width-change-column-count.html reftest css/css-multicol/large-actual-column-count.html +reftest css/css-multicol/move-with-text-after-paint.html reftest css/css-multicol/multicol-basic-001.html reftest css/css-multicol/multicol-basic-002.html reftest css/css-multicol/multicol-basic-003.html @@ -17051,6 +17676,7 @@ reftest css/css-multicol/multicol-fill-balance-006.html reftest css/css-multicol/multicol-fill-balance-018.html reftest css/css-multicol/multicol-fill-balance-024.html reftest css/css-multicol/multicol-fill-balance-026.html +reftest css/css-multicol/multicol-fill-balance-029.html reftest css/css-multicol/multicol-fill-balance-nested-000.html reftest css/css-multicol/multicol-gap-000.xht reftest css/css-multicol/multicol-gap-001.xht @@ -17102,6 +17728,8 @@ reftest css/css-multicol/multicol-nested-026.html reftest css/css-multicol/multicol-nested-027.html reftest css/css-multicol/multicol-nested-028.html reftest css/css-multicol/multicol-nested-029.html +reftest css/css-multicol/multicol-nested-030.html +reftest css/css-multicol/multicol-nested-031.html reftest css/css-multicol/multicol-nested-column-rule-001.xht reftest css/css-multicol/multicol-nested-column-rule-002.html reftest css/css-multicol/multicol-nested-column-rule-003.html @@ -17267,6 +17895,8 @@ reftest css/css-multicol/overflow-unsplittable-001.html reftest css/css-multicol/overflow-unsplittable-002.html reftest css/css-multicol/overflow-unsplittable-003.html reftest css/css-multicol/page-property-ignored.html +reftest css/css-multicol/parallel-flow-after-spanner-001.html +reftest css/css-multicol/parallel-flow-after-spanner-002.html reftest css/css-multicol/relative-child-overflowing-column-gap.html reftest css/css-multicol/relative-child-overflowing-container.html reftest css/css-multicol/remove-child-in-strict-containment-also-spanner.html @@ -17274,6 +17904,7 @@ reftest css/css-multicol/remove-inline-with-block-beside-spanners.html reftest css/css-multicol/replaced-content-spanner-auto-width.html reftest css/css-multicol/resize-in-strict-containment-nested.html reftest css/css-multicol/resize-multicol-with-fixed-size-children.html +reftest css/css-multicol/resize-with-text-after-paint.html reftest css/css-multicol/spanner-fragmentation-000.html reftest css/css-multicol/spanner-fragmentation-001.html reftest css/css-multicol/spanner-fragmentation-002.html @@ -17330,9 +17961,18 @@ reftest css/css-namespaces/syntax-014.xml reftest css/css-namespaces/syntax-015.xml reftest css/css-nesting/conditional-properties.html reftest css/css-nesting/conditional-rules.html +reftest css/css-nesting/has-nesting.html +reftest css/css-nesting/host-nesting-001.html +reftest css/css-nesting/host-nesting-002.html +reftest css/css-nesting/host-nesting-003.html +reftest css/css-nesting/host-nesting-004.html +reftest css/css-nesting/host-nesting-005.html reftest css/css-nesting/implicit-nesting.html +reftest css/css-nesting/nest-containing-forgiving.html reftest css/css-nesting/nesting-basic.html -reftest css/css-outline/subpixel-outline-width.tentative.html +reftest css/css-nesting/nesting-type-selector.html +reftest css/css-nesting/supports-is-consistent.html +reftest css/css-nesting/supports-rule.html reftest css/css-overflow/clip-001.html reftest css/css-overflow/clip-002.html reftest css/css-overflow/clip-003.html @@ -17341,10 +17981,144 @@ reftest css/css-overflow/clip-005.html reftest css/css-overflow/clip-006.html reftest css/css-overflow/clip-007.html reftest css/css-overflow/display-flex-svg-overflow-default.html +reftest css/css-overflow/document-element-overflow-hidden-scroll.html reftest css/css-overflow/dynamic-visible-to-clip-001.html reftest css/css-overflow/float-with-relpos-and-transform.html reftest css/css-overflow/incremental-scroll.html reftest css/css-overflow/input-scrollable-region-001.html +reftest css/css-overflow/line-clamp/line-clamp-001.html +reftest css/css-overflow/line-clamp/line-clamp-002.html +reftest css/css-overflow/line-clamp/line-clamp-003.html +reftest css/css-overflow/line-clamp/line-clamp-004.html +reftest css/css-overflow/line-clamp/line-clamp-005.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-006.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-007.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-008.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-009.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-010.html +reftest css/css-overflow/line-clamp/line-clamp-011.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-012.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-013.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-014.html +reftest css/css-overflow/line-clamp/line-clamp-015.html +reftest css/css-overflow/line-clamp/line-clamp-016.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-017.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-018.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-019.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-020.html +reftest css/css-overflow/line-clamp/line-clamp-021.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-022.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-023.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-024.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-025.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-026.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-027.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-028.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-001.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-002.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-003.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-004.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-005.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-006.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-007.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-008.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-009.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-010.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-011.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-012.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-013.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-014.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-015.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-016.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-017.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-018.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-019.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-020.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-021.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-022.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-023.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-024.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-025.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-026.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-027.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-028.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-029.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-030.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-031.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-032.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-033.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-034.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-with-ruby-001.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-with-ruby-002.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-with-ruby-003.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-with-ruby-004.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-auto-with-ruby-005.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-001.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-002.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-003.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-004.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-005.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-006.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-007.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-008.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-009.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-010.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-011.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-012.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-abspos-013.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-001.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-002.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-003.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-004.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-005.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-006.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-007.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-008.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-009.tentative.html +reftest css/css-overflow/line-clamp/line-clamp-with-floats-010.tentative.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-001.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-002.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-003.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-004.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-005.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-006.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-007.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-008.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-009.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-010.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-011.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-012.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-013.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-014.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-015.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-016.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-017.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-018.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-019.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-020.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-021.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-022.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-023.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-024.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-025.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-026.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-027.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-029.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-030.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-031.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-032.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-033.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-034.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-035.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-036.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-037.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-038.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-039.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-040.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-043.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-block-in-inline-001.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-dynamic-001.html +reftest css/css-overflow/line-clamp/webkit-line-clamp-with-line-height.tentative.html reftest css/css-overflow/margin-block-end-scroll-area-001.html reftest css/css-overflow/no-scrollable-overflow-vertical-rl-2.html reftest css/css-overflow/no-scrollable-overflow-vertical-rl.html @@ -17376,6 +18150,7 @@ reftest css/css-overflow/overflow-clip-margin-008.html reftest css/css-overflow/overflow-clip-margin-009.html reftest css/css-overflow/overflow-clip-margin-010.html reftest css/css-overflow/overflow-clip-margin-011.html +reftest css/css-overflow/overflow-clip-margin-012.html reftest css/css-overflow/overflow-clip-margin-invalidation.html reftest css/css-overflow/overflow-clip-margin-mul-column-border-box.html reftest css/css-overflow/overflow-clip-margin-mul-column-content-box.html @@ -17384,6 +18159,7 @@ reftest css/css-overflow/overflow-clip-margin-svg.html reftest css/css-overflow/overflow-clip-margin-visual-box-and-value-with-border-radius.html reftest css/css-overflow/overflow-clip-margin-visual-box-and-value.html reftest css/css-overflow/overflow-clip-margin-visual-box.html +reftest css/css-overflow/overflow-clip-rounded-table.html reftest css/css-overflow/overflow-clip-x-visible-y-svg.html reftest css/css-overflow/overflow-clip-y-visible-x-svg.html reftest css/css-overflow/overflow-ellipsis-dynamic-001.html @@ -17399,13 +18175,15 @@ reftest css/css-overflow/overflow-inline-block-with-opacity.html reftest css/css-overflow/overflow-negative-margin-dynamic.html reftest css/css-overflow/overflow-negative-margin.html reftest css/css-overflow/overflow-no-frameset-propagation.html -reftest css/css-overflow/overflow-overlay.tentative.html +reftest css/css-overflow/overflow-overlay.html reftest css/css-overflow/overflow-recalc-001.html reftest css/css-overflow/overflow-scroll-big-border-small-content.html reftest css/css-overflow/overflow-scroll-intrinsic-001.html reftest css/css-overflow/overflow-scroll-resize-visibility-hidden.html reftest css/css-overflow/overflow-video.html reftest css/css-overflow/paint-containment-svg.html +reftest css/css-overflow/rounded-overflow-clip-visible.html +reftest css/css-overflow/rounded-overflow-visible-clip.html reftest css/css-overflow/scrollable-overflow-input-001.html reftest css/css-overflow/scrollable-overflow-input-002.html reftest css/css-overflow/scrollbar-empty-001.html @@ -17413,9 +18191,17 @@ reftest css/css-overflow/scrollbar-empty-002.html reftest css/css-overflow/scrollbar-gutter-002.html reftest css/css-overflow/scrollbar-gutter-abspos-001.html reftest css/css-overflow/scrollbar-gutter-dynamic-001.html +reftest css/css-overflow/scrollbar-gutter-dynamic-002.html +reftest css/css-overflow/scrollbar-gutter-dynamic-003.html +reftest css/css-overflow/scrollbar-gutter-dynamic-004.html +reftest css/css-overflow/scrollbar-gutter-fixedpos-001.html +reftest css/css-overflow/scrollbar-gutter-fixedpos-002.html +reftest css/css-overflow/scrollbar-gutter-fixedpos-003.html +reftest css/css-overflow/scrollbar-gutter-fixedpos-004.html reftest css/css-overflow/scrollbar-gutter-rtl-002.html reftest css/css-overflow/scrollbar-gutter-vertical-lr-002.html reftest css/css-overflow/scrollbar-gutter-vertical-rl-002.html +reftest css/css-overflow/scrollbars-chrome-bug-001.html reftest css/css-overflow/select-size-overflow-001.html reftest css/css-overflow/text-overflow-ellipsis-001.html reftest css/css-overflow/text-overflow-ellipsis-002.html @@ -17430,49 +18216,6 @@ reftest css/css-overflow/text-overflow-scroll-vertical-lr-001.html reftest css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001.html reftest css/css-overflow/text-overflow-scroll-vertical-rl-001.html reftest css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001.html -reftest css/css-overflow/webkit-line-clamp-001.html -reftest css/css-overflow/webkit-line-clamp-002.html -reftest css/css-overflow/webkit-line-clamp-003.html -reftest css/css-overflow/webkit-line-clamp-004.html -reftest css/css-overflow/webkit-line-clamp-005.html -reftest css/css-overflow/webkit-line-clamp-006.html -reftest css/css-overflow/webkit-line-clamp-007.html -reftest css/css-overflow/webkit-line-clamp-008.html -reftest css/css-overflow/webkit-line-clamp-009.html -reftest css/css-overflow/webkit-line-clamp-010.html -reftest css/css-overflow/webkit-line-clamp-011.html -reftest css/css-overflow/webkit-line-clamp-012.html -reftest css/css-overflow/webkit-line-clamp-013.html -reftest css/css-overflow/webkit-line-clamp-014.html -reftest css/css-overflow/webkit-line-clamp-015.html -reftest css/css-overflow/webkit-line-clamp-016.html -reftest css/css-overflow/webkit-line-clamp-017.html -reftest css/css-overflow/webkit-line-clamp-018.html -reftest css/css-overflow/webkit-line-clamp-019.html -reftest css/css-overflow/webkit-line-clamp-020.html -reftest css/css-overflow/webkit-line-clamp-021.html -reftest css/css-overflow/webkit-line-clamp-022.html -reftest css/css-overflow/webkit-line-clamp-023.html -reftest css/css-overflow/webkit-line-clamp-024.html -reftest css/css-overflow/webkit-line-clamp-025.html -reftest css/css-overflow/webkit-line-clamp-026.html -reftest css/css-overflow/webkit-line-clamp-027.html -reftest css/css-overflow/webkit-line-clamp-029.html -reftest css/css-overflow/webkit-line-clamp-030.html -reftest css/css-overflow/webkit-line-clamp-031.html -reftest css/css-overflow/webkit-line-clamp-032.html -reftest css/css-overflow/webkit-line-clamp-033.html -reftest css/css-overflow/webkit-line-clamp-034.html -reftest css/css-overflow/webkit-line-clamp-035.html -reftest css/css-overflow/webkit-line-clamp-036.html -reftest css/css-overflow/webkit-line-clamp-037.html -reftest css/css-overflow/webkit-line-clamp-038.html -reftest css/css-overflow/webkit-line-clamp-039.html -reftest css/css-overflow/webkit-line-clamp-040.html -reftest css/css-overflow/webkit-line-clamp-043.html -reftest css/css-overflow/webkit-line-clamp-block-in-inline-001.html -reftest css/css-overflow/webkit-line-clamp-dynamic-001.html -reftest css/css-overflow/webkit-line-clamp-with-line-height.tentative.html reftest css/css-paint-api/background-image-alpha.https.html reftest css/css-paint-api/background-image-multiple.https.html reftest css/css-paint-api/background-image-tiled.https.html @@ -17491,6 +18234,7 @@ reftest css/css-paint-api/geometry-border-image-003.https.html reftest css/css-paint-api/geometry-border-image-004.https.html reftest css/css-paint-api/geometry-border-image-005.https.html reftest css/css-paint-api/geometry-with-float-size.https.html +reftest css/css-paint-api/hidpi/canvas-reset.https.html reftest css/css-paint-api/hidpi/canvas-transform.https.html reftest css/css-paint-api/hidpi/device-pixel-ratio.https.html reftest css/css-paint-api/invalid-image-constructor-error.https.html @@ -17584,6 +18328,7 @@ reftest css/css-paint-api/two-element-custom-property-animation.https.html reftest css/css-paint-api/two-element-one-custom-property-animation.https.html reftest css/css-paint-api/valid-image-after-load.https.html reftest css/css-paint-api/valid-image-before-load.https.html +reftest css/css-position/backdrop-inherit-rendered.html reftest css/css-position/change-insets-inside-strict-containment-nested.html reftest css/css-position/containing-block-change-button.html reftest css/css-position/containing-block-change-scrollframe.html @@ -17610,6 +18355,12 @@ reftest css/css-position/multicol/vrl-ltr-ltr-in-multicols.html reftest css/css-position/multicol/vrl-ltr-rtl-in-multicols.tentative.html reftest css/css-position/multicol/vrl-rtl-ltr-in-multicols.tentative.html reftest css/css-position/multicol/vrl-rtl-rtl-in-multicols.html +reftest css/css-position/overlay/overlay-transition-backdrop-entry.html +reftest css/css-position/overlay/overlay-transition-backdrop.html +reftest css/css-position/overlay/overlay-transition-dialog.html +reftest css/css-position/overlay/overlay-transition-finished.html +reftest css/css-position/overlay/overlay-transition-in-rendering.html +reftest css/css-position/overlay/overlay-transition-out-rendering.html reftest css/css-position/position-absolute-center-001.html reftest css/css-position/position-absolute-center-002.html reftest css/css-position/position-absolute-center-003.html @@ -17623,6 +18374,7 @@ reftest css/css-position/position-absolute-dynamic-overflow-002.html reftest css/css-position/position-absolute-dynamic-relayout-001.html reftest css/css-position/position-absolute-dynamic-relayout-002.html reftest css/css-position/position-absolute-dynamic-relayout-003.html +reftest css/css-position/position-absolute-dynamic-relayout-004.html reftest css/css-position/position-absolute-dynamic-static-position-flex.html reftest css/css-position/position-absolute-dynamic-static-position-floats-001.html reftest css/css-position/position-absolute-dynamic-static-position-floats-002.html @@ -17669,6 +18421,7 @@ reftest css/css-position/position-relative-010.html reftest css/css-position/position-relative-011.html reftest css/css-position/position-relative-012.html reftest css/css-position/position-relative-013.html +reftest css/css-position/position-relative-014.html reftest css/css-position/position-relative-table-caption.html reftest css/css-position/position-relative-table-tbody-left-absolute-child.html reftest css/css-position/position-relative-table-tbody-left.html @@ -17732,22 +18485,32 @@ reftest css/css-position/sticky/position-sticky-flex-item-002.html reftest css/css-position/sticky/position-sticky-flex-item-003.html reftest css/css-position/sticky/position-sticky-flex-item-004.html reftest css/css-position/sticky/position-sticky-flexbox.html +reftest css/css-position/sticky/position-sticky-fractional-offset.html reftest css/css-position/sticky/position-sticky-grid.html reftest css/css-position/sticky/position-sticky-hyperlink.html +reftest css/css-position/sticky/position-sticky-in-fixed-container.html reftest css/css-position/sticky/position-sticky-inline.html reftest css/css-position/sticky/position-sticky-large-top-2.tentative.html reftest css/css-position/sticky/position-sticky-large-top.tentative.html reftest css/css-position/sticky/position-sticky-left-002.html reftest css/css-position/sticky/position-sticky-left-003.html +reftest css/css-position/sticky/position-sticky-left-004.html +reftest css/css-position/sticky/position-sticky-left-005.html +reftest css/css-position/sticky/position-sticky-left-006.html +reftest css/css-position/sticky/position-sticky-margins-002.html +reftest css/css-position/sticky/position-sticky-margins-003.html reftest css/css-position/sticky/position-sticky-nested-inline.html reftest css/css-position/sticky/position-sticky-nested-table.html reftest css/css-position/sticky/position-sticky-nested-thead-th.html reftest css/css-position/sticky/position-sticky-overflow-clip-container.html +reftest css/css-position/sticky/position-sticky-padding-001.html +reftest css/css-position/sticky/position-sticky-padding-002.html reftest css/css-position/sticky/position-sticky-rendering.html reftest css/css-position/sticky/position-sticky-right-002.html reftest css/css-position/sticky/position-sticky-right-003.html reftest css/css-position/sticky/position-sticky-scroll-reposition.html reftest css/css-position/sticky/position-sticky-scroll-with-clip-and-abspos.html +reftest css/css-position/sticky/position-sticky-scrolled-remove-sibling-002.html reftest css/css-position/sticky/position-sticky-stacking-context-002.html reftest css/css-position/sticky/position-sticky-stacking-context.html reftest css/css-position/sticky/position-sticky-table-parts.html @@ -17765,9 +18528,17 @@ reftest css/css-position/sticky/position-sticky-table-tr-bottom.html reftest css/css-position/sticky/position-sticky-table-tr-top.html reftest css/css-position/sticky/position-sticky-top-002.html reftest css/css-position/sticky/position-sticky-top-003.html +reftest css/css-position/sticky/position-sticky-top-004.html +reftest css/css-position/sticky/position-sticky-top-005.html +reftest css/css-position/sticky/position-sticky-top-006.html reftest css/css-position/sticky/position-sticky-top-and-bottom-003.html reftest css/css-position/sticky/position-sticky-writing-modes.html reftest css/css-position/z-index-blend-will-change-overlapping-layers.html +reftest css/css-properties-values-api/registered-property-change-style-002.html +reftest css/css-properties-values-api/registered-property-computation-color-001.html +reftest css/css-properties-values-api/registered-property-computation-color-002.html +reftest css/css-properties-values-api/registered-property-computation-color-003.html +reftest css/css-properties-values-api/registered-property-computation-color-004.html reftest css/css-pseudo/active-selection-011.html reftest css/css-pseudo/active-selection-012.html reftest css/css-pseudo/active-selection-014.html @@ -17790,12 +18561,9 @@ reftest css/css-pseudo/active-selection-063.html reftest css/css-pseudo/backdrop-animate-002.html reftest css/css-pseudo/before-after-dynamic-custom-property-001.html reftest css/css-pseudo/before-dynamic-display-none.html -reftest css/css-pseudo/cascade-highlight-001.html -reftest css/css-pseudo/cascade-highlight-002.html -reftest css/css-pseudo/cascade-highlight-004.html -reftest css/css-pseudo/cascade-highlight-005.html reftest css/css-pseudo/file-selector-button-001.html reftest css/css-pseudo/file-selector-button-after-part.html +reftest css/css-pseudo/file-selector-button-float.html reftest css/css-pseudo/first-letter-001.html reftest css/css-pseudo/first-letter-002.html reftest css/css-pseudo/first-letter-003.html @@ -17823,13 +18591,18 @@ reftest css/css-pseudo/first-letter-skip-empty-span-nested.html reftest css/css-pseudo/first-letter-skip-empty-span.html reftest css/css-pseudo/first-letter-skip-marker.html reftest css/css-pseudo/first-letter-text-and-display-change.html +reftest css/css-pseudo/first-letter-width-2.html reftest css/css-pseudo/first-letter-width.html +reftest css/css-pseudo/first-letter-with-before-after.html +reftest css/css-pseudo/first-letter-with-preceding-new-line.html reftest css/css-pseudo/first-letter-with-quote.html reftest css/css-pseudo/first-letter-with-span.html reftest css/css-pseudo/first-line-and-marker.html reftest css/css-pseudo/first-line-and-placeholder.html reftest css/css-pseudo/first-line-change-inline-color-nested.html reftest css/css-pseudo/first-line-change-inline-color.html +reftest css/css-pseudo/first-line-inherited-no-transition.html +reftest css/css-pseudo/first-line-inherited-with-transition.html reftest css/css-pseudo/first-line-line-height-001.html reftest css/css-pseudo/first-line-line-height-002.html reftest css/css-pseudo/first-line-nested-gcs.html @@ -17846,32 +18619,50 @@ reftest css/css-pseudo/first-line-with-out-of-flow.html reftest css/css-pseudo/grammar-error-001.html reftest css/css-pseudo/grammar-spelling-errors-001.html reftest css/css-pseudo/grammar-spelling-errors-002.html -reftest css/css-pseudo/highlight-cascade-001.html -reftest css/css-pseudo/highlight-cascade-002.html -reftest css/css-pseudo/highlight-cascade-003.html -reftest css/css-pseudo/highlight-cascade-004.html -reftest css/css-pseudo/highlight-cascade-005.html -reftest css/css-pseudo/highlight-cascade-006.xhtml -reftest css/css-pseudo/highlight-currentcolor-painting-properties-001.html -reftest css/css-pseudo/highlight-currentcolor-painting-properties-002.html -reftest css/css-pseudo/highlight-currentcolor-painting-text-shadow-001.html -reftest css/css-pseudo/highlight-currentcolor-painting-text-shadow-002.html -reftest css/css-pseudo/highlight-currentcolor-root-explicit-default-001.html -reftest css/css-pseudo/highlight-currentcolor-root-explicit-default-002.html -reftest css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html -reftest css/css-pseudo/highlight-currentcolor-root-implicit-default-002.html +reftest css/css-pseudo/highlight-cascade/cascade-highlight-001.html +reftest css/css-pseudo/highlight-cascade/cascade-highlight-002.html +reftest css/css-pseudo/highlight-cascade/cascade-highlight-004.html +reftest css/css-pseudo/highlight-cascade/cascade-highlight-005.html +reftest css/css-pseudo/highlight-cascade/highlight-cascade-001.html +reftest css/css-pseudo/highlight-cascade/highlight-cascade-003.html +reftest css/css-pseudo/highlight-cascade/highlight-cascade-004.html +reftest css/css-pseudo/highlight-cascade/highlight-cascade-005.html +reftest css/css-pseudo/highlight-cascade/highlight-cascade-006.xhtml +reftest css/css-pseudo/highlight-cascade/highlight-cascade-008.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-properties-001.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-properties-002.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-text-shadow-001.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-text-shadow-002.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-root-explicit-default-001.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-root-explicit-default-002.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-root-implicit-default-001.html +reftest css/css-pseudo/highlight-cascade/highlight-currentcolor-root-implicit-default-002.html +reftest css/css-pseudo/highlight-cascade/highlight-paired-cascade-001.html +reftest css/css-pseudo/highlight-cascade/highlight-paired-cascade-002.html +reftest css/css-pseudo/highlight-cascade/highlight-paired-cascade-003.html +reftest css/css-pseudo/highlight-cascade/highlight-paired-cascade-004.html +reftest css/css-pseudo/highlight-cascade/highlight-paired-cascade-005.html +reftest css/css-pseudo/highlight-cascade/highlight-paired-cascade-006.html +reftest css/css-pseudo/highlight-custom-properties-dynamic-001.html reftest css/css-pseudo/highlight-painting-001.html reftest css/css-pseudo/highlight-painting-002.html reftest css/css-pseudo/highlight-painting-003.html reftest css/css-pseudo/highlight-painting-004.html +reftest css/css-pseudo/highlight-painting-currentcolor-001.html +reftest css/css-pseudo/highlight-painting-currentcolor-001a.html +reftest css/css-pseudo/highlight-painting-currentcolor-002.html +reftest css/css-pseudo/highlight-painting-currentcolor-002a.html +reftest css/css-pseudo/highlight-painting-currentcolor-002b.html +reftest css/css-pseudo/highlight-painting-currentcolor-003.html +reftest css/css-pseudo/highlight-painting-currentcolor-003a.html +reftest css/css-pseudo/highlight-painting-currentcolor-003b.html +reftest css/css-pseudo/highlight-painting-currentcolor-004.html +reftest css/css-pseudo/highlight-painting-currentcolor-004a.html +reftest css/css-pseudo/highlight-painting-currentcolor-004b.html reftest css/css-pseudo/highlight-painting-currentcolor-005.html +reftest css/css-pseudo/highlight-painting-shadows-horizontal.html +reftest css/css-pseudo/highlight-painting-shadows-vertical.html reftest css/css-pseudo/highlight-painting-soft-hyphens-001.html -reftest css/css-pseudo/highlight-paired-cascade-001.html -reftest css/css-pseudo/highlight-paired-cascade-002.html -reftest css/css-pseudo/highlight-paired-cascade-003.html -reftest css/css-pseudo/highlight-paired-cascade-004.html -reftest css/css-pseudo/highlight-paired-cascade-005.html -reftest css/css-pseudo/highlight-paired-cascade-006.html reftest css/css-pseudo/highlight-styling-001.html reftest css/css-pseudo/highlight-styling-002.html reftest css/css-pseudo/highlight-styling-003.tentative.html @@ -17943,6 +18734,7 @@ reftest css/css-pseudo/marker-word-spacing.html reftest css/css-pseudo/outside-marker-paint-order.html reftest css/css-pseudo/placeholder-excluded-properties.html reftest css/css-pseudo/placeholder-input-number.html +reftest css/css-pseudo/selection-background-color-001.html reftest css/css-pseudo/selection-background-painting-order.html reftest css/css-pseudo/selection-contenteditable-011.html reftest css/css-pseudo/selection-input-011.html @@ -17954,12 +18746,21 @@ reftest css/css-pseudo/selection-link-003.html reftest css/css-pseudo/selection-originating-decoration-color.html reftest css/css-pseudo/selection-originating-strikethrough-order.html reftest css/css-pseudo/selection-originating-underline-order.html +reftest css/css-pseudo/selection-over-highlight-001.html reftest css/css-pseudo/selection-overlay-and-grammar-001.html reftest css/css-pseudo/selection-overlay-and-spelling-001.html reftest css/css-pseudo/selection-paint-image.html reftest css/css-pseudo/selection-textarea-011.html +reftest css/css-pseudo/slider/slider-fill-001.html +reftest css/css-pseudo/slider/slider-fill-002.html +reftest css/css-pseudo/slider/slider-fill-003.html +reftest css/css-pseudo/slider/slider-thumb-001.html +reftest css/css-pseudo/slider/slider-track-001.html +reftest css/css-pseudo/slider/slider-track-002.html +reftest css/css-pseudo/slider/slider-track-003.html reftest css/css-pseudo/spelling-error-001.html reftest css/css-pseudo/spelling-error-006.html +reftest css/css-pseudo/svg-text-selection-002.html reftest css/css-pseudo/target-text-001.html reftest css/css-pseudo/target-text-002.html reftest css/css-pseudo/target-text-003.html @@ -17968,12 +18769,22 @@ reftest css/css-pseudo/target-text-005.html reftest css/css-pseudo/target-text-006.html reftest css/css-pseudo/target-text-007.html reftest css/css-pseudo/target-text-008.html +reftest css/css-pseudo/target-text-009.html +reftest css/css-pseudo/target-text-010.html reftest css/css-pseudo/target-text-dynamic-001.html reftest css/css-pseudo/target-text-dynamic-002.html reftest css/css-pseudo/target-text-dynamic-003.html reftest css/css-pseudo/target-text-dynamic-004.html +reftest css/css-pseudo/target-text-shadow-horizontal.html +reftest css/css-pseudo/target-text-shadow-vertical.html reftest css/css-pseudo/target-text-text-decoration-001.html reftest css/css-pseudo/textpath-selection-011.html +reftest css/css-rhythm/block-step-size-establishes-block-formatting-context-list-item.html +reftest css/css-rhythm/block-step-size-establishes-block-formatting-context.html +reftest css/css-rhythm/block-step-size-establishes-independent-formatting-context-list-item.html +reftest css/css-rhythm/block-step-size-establishes-independent-formatting-context.html +reftest css/css-rhythm/block-step-size-none-does-not-establish-block-formatting-context.html +reftest css/css-rhythm/block-step-size-none-does-not-establish-indepdendent-formatting-context.html reftest css/css-ruby/abs-in-ruby-base-container.html reftest css/css-ruby/abs-in-ruby-base.html reftest css/css-ruby/abs-in-ruby-container.html @@ -17982,13 +18793,19 @@ reftest css/css-ruby/block-ruby-002.html reftest css/css-ruby/block-ruby-003.html reftest css/css-ruby/block-ruby-004.html reftest css/css-ruby/block-ruby-005.html +reftest css/css-ruby/break-within-bases/basic.html +reftest css/css-ruby/break-within-bases/no-break-opportunity-at-end.html +reftest css/css-ruby/break-within-bases/nowrap.html reftest css/css-ruby/empty-ruby-base-container.html reftest css/css-ruby/empty-ruby-text-container-abs.html reftest css/css-ruby/empty-ruby-text-container-float.html reftest css/css-ruby/empty-ruby-text-container.html reftest css/css-ruby/improperly-contained-annotation-001.html +reftest css/css-ruby/interlinear-block-margin-box.html reftest css/css-ruby/intra-base-white-space-001.html reftest css/css-ruby/nested-ruby-pairing-001.html +reftest css/css-ruby/pseudo-first-letter.html +reftest css/css-ruby/pseudo-first-line.html reftest css/css-ruby/rb-display-001.html reftest css/css-ruby/rbc-rtc-basic-001.html reftest css/css-ruby/root-block-ruby.xhtml @@ -17998,6 +18815,7 @@ reftest css/css-ruby/ruby-align-001.html reftest css/css-ruby/ruby-align-001a.html reftest css/css-ruby/ruby-align-002.html reftest css/css-ruby/ruby-align-002a.html +reftest css/css-ruby/ruby-align-space-around.html reftest css/css-ruby/ruby-annotation-pairing-001.html reftest css/css-ruby/ruby-autohide-001.html reftest css/css-ruby/ruby-autohide-002.html @@ -18009,6 +18827,7 @@ reftest css/css-ruby/ruby-base-different-size.html reftest css/css-ruby/ruby-bidi-001.html reftest css/css-ruby/ruby-bidi-002.html reftest css/css-ruby/ruby-bidi-003.html +reftest css/css-ruby/ruby-bidi-004.html reftest css/css-ruby/ruby-box-generation-001.html reftest css/css-ruby/ruby-box-generation-002.html reftest css/css-ruby/ruby-box-generation-003.html @@ -18029,6 +18848,7 @@ reftest css/css-ruby/ruby-inlinize-blocks-002.html reftest css/css-ruby/ruby-inlinize-blocks-003.html reftest css/css-ruby/ruby-inlinize-blocks-004.html reftest css/css-ruby/ruby-inlinize-blocks-005.html +reftest css/css-ruby/ruby-inlinize-recursive-simple.html reftest css/css-ruby/ruby-intra-level-whitespace-001.html reftest css/css-ruby/ruby-intra-level-whitespace-002.html reftest css/css-ruby/ruby-intra-level-whitespace-003.html @@ -18056,6 +18876,7 @@ reftest css/css-ruby/ruby-text-combine-upright-001a.html reftest css/css-ruby/ruby-text-combine-upright-001b.html reftest css/css-ruby/ruby-text-combine-upright-002a.html reftest css/css-ruby/ruby-text-combine-upright-002b.html +reftest css/css-ruby/ruby-text-dynamic-style.html reftest css/css-ruby/ruby-whitespace-001.html reftest css/css-ruby/ruby-whitespace-002.html reftest css/css-ruby/ruby-with-floats-001.html @@ -18082,8 +18903,20 @@ reftest css/css-scoping/css-scoping-shadow-with-rules.html reftest css/css-scoping/host-context-specificity-001.html reftest css/css-scoping/host-context-specificity-002.html reftest css/css-scoping/host-context-specificity-003.html +reftest css/css-scoping/host-defined.html reftest css/css-scoping/host-descendant-001.html reftest css/css-scoping/host-descendant-002.html +reftest css/css-scoping/host-has-001.html +reftest css/css-scoping/host-has-002.html +reftest css/css-scoping/host-has-003.html +reftest css/css-scoping/host-has-internal-001.tentative.html +reftest css/css-scoping/host-has-internal-002.tentative.html +reftest css/css-scoping/host-has-internal-003.tentative.html +reftest css/css-scoping/host-is-001.html +reftest css/css-scoping/host-is-002.html +reftest css/css-scoping/host-is-003.html +reftest css/css-scoping/host-is-004.html +reftest css/css-scoping/host-is-005.html reftest css/css-scoping/host-multiple-001.html reftest css/css-scoping/host-nested-001.html reftest css/css-scoping/host-slotted-001.html @@ -18092,6 +18925,8 @@ reftest css/css-scoping/host-specificity-003.html reftest css/css-scoping/host-specificity.html reftest css/css-scoping/host-with-default-namespace-001.html reftest css/css-scoping/reslot-text-inheritance.html +reftest css/css-scoping/scoped-reference-animation-001.html +reftest css/css-scoping/scoped-reference-animation-002.html reftest css/css-scoping/shadow-assign-dynamic-001.html reftest css/css-scoping/shadow-at-import.html reftest css/css-scoping/shadow-directionality-001.tentative.html @@ -18141,16 +18976,42 @@ reftest css/css-scroll-snap/snap-after-initial-layout/scroll-snap-writing-mode-0 reftest css/css-scroll-snap/snap-after-initial-layout/writing-mode-horizontal-tb.html reftest css/css-scroll-snap/snap-after-initial-layout/writing-mode-vertical-lr.html reftest css/css-scroll-snap/snap-after-initial-layout/writing-mode-vertical-rl.html +reftest css/css-scrollbars/input-scrollbar-color.html +reftest css/css-scrollbars/scrollbar-color-006.html +reftest css/css-scrollbars/scrollbar-color-007.html +reftest css/css-scrollbars/scrollbar-color-008.html +reftest css/css-scrollbars/scrollbar-color-009.html +reftest css/css-scrollbars/scrollbar-color-010.html +reftest css/css-scrollbars/scrollbar-color-011.html +reftest css/css-scrollbars/scrollbar-color-012.html +reftest css/css-scrollbars/scrollbar-color-dynamic-1.html +reftest css/css-scrollbars/scrollbar-color-dynamic-2.html +reftest css/css-scrollbars/scrollbar-color-dynamic-3.html +reftest css/css-scrollbars/scrollbar-color-dynamic-4.html +reftest css/css-scrollbars/scrollbar-color-dynamic-5.html +reftest css/css-scrollbars/scrollbar-color-dynamic-6.html +reftest css/css-scrollbars/scrollbar-color-dynamic-7.html +reftest css/css-scrollbars/scrollbar-color-dynamic-8.html +reftest css/css-scrollbars/scrollbar-color-scheme-dynamic-1.html +reftest css/css-scrollbars/scrollbar-color-scheme-dynamic-2.html +reftest css/css-scrollbars/scrollbar-color-scheme-dynamic-3.html +reftest css/css-scrollbars/scrollbar-color-scheme-dynamic-4.html +reftest css/css-scrollbars/scrollbar-gutter-scroll-into-view.html reftest css/css-scrollbars/scrollbar-width-paint-001.html reftest css/css-scrollbars/scrollbar-width-paint-002.html reftest css/css-scrollbars/scrollbar-width-paint-003.html -reftest css/css-scrollbars/scrollbars-chrome-bug-001.html +reftest css/css-scrollbars/scrollbar-width-paint-004.html +reftest css/css-scrollbars/scrollbar-width-paint-005.html +reftest css/css-scrollbars/scrollbar-width-paint-006.html reftest css/css-scrollbars/textarea-scrollbar-width-none.html reftest css/css-scrollbars/transparent-on-root.html reftest css/css-scrollbars/viewport-scrollbar-body.html reftest css/css-scrollbars/viewport-scrollbar.html +reftest css/css-shadow-parts/animation-part.html +reftest css/css-shadow-parts/exportparts-different-scope.html reftest css/css-shadow-parts/interaction-with-nested-pseudo-class.html reftest css/css-shadow-parts/interaction-with-placeholder.html +reftest css/css-shadow-parts/part-after-combinator-invalidation.html reftest css/css-shadow-parts/part-nested-pseudo.html reftest css/css-shapes/shape-outside/assorted/float-retry-push-circle.html reftest css/css-shapes/shape-outside/assorted/float-retry-push-image.html @@ -18244,6 +19105,7 @@ reftest css/css-shapes/shape-outside/shape-image/shape-image-024.html reftest css/css-shapes/shape-outside/shape-image/shape-image-025.html reftest css/css-shapes/shape-outside/shape-image/shape-image-026.html reftest css/css-shapes/shape-outside/shape-image/shape-image-027.html +reftest css/css-shapes/shape-outside/shape-image/shape-image-029.html reftest css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-013.html reftest css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-014.html reftest css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-015.html @@ -18444,9 +19306,12 @@ reftest css/css-sizing/aspect-ratio/block-aspect-ratio-052.html reftest css/css-sizing/aspect-ratio/block-aspect-ratio-053.html reftest css/css-sizing/aspect-ratio/block-aspect-ratio-054.html reftest css/css-sizing/aspect-ratio/block-aspect-ratio-055.html +reftest css/css-sizing/aspect-ratio/block-aspect-ratio-056.html +reftest css/css-sizing/aspect-ratio/block-aspect-ratio-057.tentative.html reftest css/css-sizing/aspect-ratio/block-aspect-ratio-with-margin-collapsing-001.html reftest css/css-sizing/aspect-ratio/block-aspect-ratio-with-margin-collapsing-002.html reftest css/css-sizing/aspect-ratio/fieldset-element-001.html +reftest css/css-sizing/aspect-ratio/fieldset-element-002.html reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-001.html reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-002.html reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-003.html @@ -18489,6 +19354,18 @@ reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-039.html reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-040.html reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-041.html reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-042.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-043.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-044.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-045.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-046.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-047.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-048.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-049.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-050.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-051.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-052.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-053.html +reftest css/css-sizing/aspect-ratio/flex-aspect-ratio-054.html reftest css/css-sizing/aspect-ratio/floats-aspect-ratio-001.html reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-001.html reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-002.html @@ -18529,6 +19406,8 @@ reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-037.html reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-038.html reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-039.html reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-040.html +reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-041.html +reftest css/css-sizing/aspect-ratio/grid-aspect-ratio-042.html reftest css/css-sizing/aspect-ratio/intrinsic-size-001.html reftest css/css-sizing/aspect-ratio/intrinsic-size-002.html reftest css/css-sizing/aspect-ratio/intrinsic-size-003.html @@ -18545,6 +19424,15 @@ reftest css/css-sizing/aspect-ratio/intrinsic-size-013.html reftest css/css-sizing/aspect-ratio/intrinsic-size-014.html reftest css/css-sizing/aspect-ratio/intrinsic-size-015.html reftest css/css-sizing/aspect-ratio/intrinsic-size-016.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-017.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-018.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-019.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-020.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-021.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-022.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-023.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-024.html +reftest css/css-sizing/aspect-ratio/intrinsic-size-025.html reftest css/css-sizing/aspect-ratio/percentage-resolution-001.html reftest css/css-sizing/aspect-ratio/percentage-resolution-002.html reftest css/css-sizing/aspect-ratio/percentage-resolution-003.html @@ -18606,6 +19494,12 @@ reftest css/css-sizing/block-fit-content-as-initial.html reftest css/css-sizing/block-image-percentage-max-height-inside-inline.html reftest css/css-sizing/block-size-with-min-or-max-content-1a.html reftest css/css-sizing/block-size-with-min-or-max-content-1b.html +reftest css/css-sizing/block-size-with-min-or-max-content-2.html +reftest css/css-sizing/block-size-with-min-or-max-content-3.html +reftest css/css-sizing/block-size-with-min-or-max-content-4.html +reftest css/css-sizing/block-size-with-min-or-max-content-5.html +reftest css/css-sizing/block-size-with-min-or-max-content-6.html +reftest css/css-sizing/block-size-with-min-or-max-content-7.html reftest css/css-sizing/block-size-with-min-or-max-content-table-1a.html reftest css/css-sizing/block-size-with-min-or-max-content-table-1b.html reftest css/css-sizing/border-box-and-max-content-001.html @@ -18707,6 +19601,9 @@ reftest css/css-sizing/fit-content-length-percentage-013.html reftest css/css-sizing/fit-content-length-percentage-014.html reftest css/css-sizing/fit-content-length-percentage-015.html reftest css/css-sizing/fit-content-length-percentage-016.html +reftest css/css-sizing/fit-content-max-inline-size.tentative.html +reftest css/css-sizing/fit-content-min-inline-size.tentative.html +reftest css/css-sizing/grid-item-image-percentage-min-height-computes-as-0.html reftest css/css-sizing/hori-block-size-small-or-larger-than-container-with-min-or-max-content-1.html reftest css/css-sizing/hori-block-size-small-or-larger-than-container-with-min-or-max-content-2a.html reftest css/css-sizing/hori-block-size-small-or-larger-than-container-with-min-or-max-content-2b.html @@ -18722,6 +19619,7 @@ reftest css/css-sizing/image-min-max-content-intrinsic-size-change-008.html reftest css/css-sizing/image-percentage-max-height-in-anonymous-block.html reftest css/css-sizing/inline-intrinsic-size-calc.html reftest css/css-sizing/intrinsic-percent-non-replaced-001.html +reftest css/css-sizing/intrinsic-percent-non-replaced-002.html reftest css/css-sizing/intrinsic-percent-non-replaced-003.html reftest css/css-sizing/intrinsic-percent-non-replaced-004.html reftest css/css-sizing/intrinsic-percent-non-replaced-005.html @@ -18746,8 +19644,11 @@ reftest css/css-sizing/intrinsic-percent-replaced-dynamic-007.html reftest css/css-sizing/intrinsic-percent-replaced-dynamic-008.html reftest css/css-sizing/intrinsic-percent-replaced-dynamic-009.html reftest css/css-sizing/intrinsic-percent-replaced-dynamic-010.html +reftest css/css-sizing/intrinsic-percent-replaced-dynamic-011.html +reftest css/css-sizing/intrinsic-percent-replaced-dynamic-012.html reftest css/css-sizing/max-content-input-001.html reftest css/css-sizing/min-content-min-width-000.html +reftest css/css-sizing/nested-flexbox-image-percentage-max-height-computes-as-none.html reftest css/css-sizing/ortho-writing-mode-001.html reftest css/css-sizing/orthogonal-writing-mode-float-in-inline.html reftest css/css-sizing/range-percent-intrinsic-size-1.html @@ -18758,12 +19659,18 @@ reftest css/css-sizing/replaced-aspect-ratio-intrinsic-size-002.html reftest css/css-sizing/replaced-aspect-ratio-stretch-fit-001.html reftest css/css-sizing/replaced-aspect-ratio-stretch-fit-002.html reftest css/css-sizing/replaced-aspect-ratio-stretch-fit-003.html +reftest css/css-sizing/replaced-max-height-min-content.html reftest css/css-sizing/replaced-max-size-saturation.html +reftest css/css-sizing/replaced-max-width-min-content.html +reftest css/css-sizing/replaced-min-height-min-content.html +reftest css/css-sizing/replaced-min-width-min-content.html reftest css/css-sizing/slice-intrinsic-size.html reftest css/css-sizing/slice-nowrap-intrinsic-size-bidi.html reftest css/css-sizing/slice-nowrap-intrinsic-size.html reftest css/css-sizing/svg-intrinsic-size-005.html reftest css/css-sizing/svg-intrinsic-size-006.html +reftest css/css-sizing/svg-no-ar-max-height-min-content.html +reftest css/css-sizing/svg-no-ar-min-height-min-content.html reftest css/css-sizing/table-child-percentage-height-with-border-box.html reftest css/css-sizing/thin-element-render.html reftest css/css-sizing/vert-block-size-small-or-larger-than-container-with-min-or-max-content-1.html @@ -18786,6 +19693,7 @@ reftest css/css-style-attr/style-attr-specificity-002.xht reftest css/css-style-attr/style-attr-urls-001.xht reftest css/css-style-attr/style-attr-urls-002.xht reftest css/css-style-attr/style-attr-urls-003.xht +reftest css/css-syntax/missing-semicolon.html reftest css/css-tables/absolute-tables-006.html reftest css/css-tables/absolute-tables-007.html reftest css/css-tables/absolute-tables-008.tentative.html @@ -18797,6 +19705,7 @@ reftest css/css-tables/absolute-tables-013.html reftest css/css-tables/absolute-tables-014.html reftest css/css-tables/absolute-tables-015.html reftest css/css-tables/absolute-tables-016.html +reftest css/css-tables/abspos-container-change-dynamic-001.html reftest css/css-tables/anonymous-table-cell-margin-collapsing.html reftest css/css-tables/anonymous-table-ws-001.html reftest css/css-tables/background-clip-001.html @@ -18817,8 +19726,13 @@ reftest css/css-tables/col-definite-size-001.html reftest css/css-tables/collapsed-border-color-change-with-compositing.html reftest css/css-tables/collapsed-border-paint-phase-001.html reftest css/css-tables/collapsed-border-paint-phase-002.html +reftest css/css-tables/collapsed-border-partial-invalidation-001.html +reftest css/css-tables/collapsed-border-partial-invalidation-002.html +reftest css/css-tables/collapsed-border-partial-invalidation-003.html reftest css/css-tables/collapsed-border-positioned-tr-td.html reftest css/css-tables/collapsed-border-remove-cell.html +reftest css/css-tables/collapsed-border-remove-row-group.html +reftest css/css-tables/colspan-004.html reftest css/css-tables/dynamic-table-cell-height.html reftest css/css-tables/empty-table-height.html reftest css/css-tables/fixup-dynamic-anonymous-inline-table-001.html @@ -18843,8 +19757,11 @@ reftest css/css-tables/max-height-table.html reftest css/css-tables/min-height-table-2.html reftest css/css-tables/min-height-table.html reftest css/css-tables/min-max-size-table-content-box.html +reftest css/css-tables/paint/col-change-span-bg-invalidation-001.html +reftest css/css-tables/paint/col-change-span-bg-invalidation-002.html reftest css/css-tables/paint/col-paint-htb-rtl.html reftest css/css-tables/paint/col-paint-vrl-rtl.html +reftest css/css-tables/paint/row-background-paint-remove-last-cell.html reftest css/css-tables/percent-height-overflow-auto-in-unrestricted-block-size-cell.tentative.html reftest css/css-tables/percent-height-replaced-in-percent-cell-002.html reftest css/css-tables/percent-height-replaced-in-percent-cell.tentative.html @@ -18852,9 +19769,12 @@ reftest css/css-tables/percent-height-table-cell-child.html reftest css/css-tables/percent-width-cell-dynamic.html reftest css/css-tables/percentages-grandchildren-quirks-mode-001.html reftest css/css-tables/percentages-grandchildren-quirks-mode-002.html +reftest css/css-tables/remove-caption-from-anon-table.html +reftest css/css-tables/remove-colgroup-from-anon-table.html reftest css/css-tables/row-group-margin-border-padding.html reftest css/css-tables/row-group-order.html reftest css/css-tables/row-margin-border-padding.html +reftest css/css-tables/rules-groups.html reftest css/css-tables/subpixel-collapsed-borders-001.html reftest css/css-tables/subpixel-collapsed-borders-002.html reftest css/css-tables/subpixel-collapsed-borders-003.html @@ -18864,11 +19784,15 @@ reftest css/css-tables/subpixel-table-cell-width-002.html reftest css/css-tables/subpixel-table-width-001.html reftest css/css-tables/table-cell-baseline-static-position.html reftest css/css-tables/table-cell-child-overflow-measure.html +reftest css/css-tables/table-cell-inline-size-box-sizing-quirks.html reftest css/css-tables/table-cell-overflow-auto-scrolled.html reftest css/css-tables/table-cell-overflow-auto.html +reftest css/css-tables/table-cell-overflow-explicit-height-001.html +reftest css/css-tables/table-cell-overflow-explicit-height-002.html reftest css/css-tables/table-has-box-sizing-border-box-001.html reftest css/css-tables/table-has-box-sizing-border-box-002.html reftest css/css-tables/table_grid_size_col_colspan.html +reftest css/css-tables/tentative/padding-percentage.html reftest css/css-tables/tentative/paint/background-image-column-collapsed.html reftest css/css-tables/tentative/paint/background-image-column.html reftest css/css-tables/tentative/paint/background-image-row-collapsed.html @@ -18879,13 +19803,16 @@ reftest css/css-tables/tentative/section-no-tbody-fixed-distribution.html reftest css/css-tables/tentative/section-no-tbody-percent-distribution.html reftest css/css-tables/th-text-align.html reftest css/css-tables/toggle-row-display-property-001.html -reftest css/css-tables/visibility-collapse-border-spacing.html +reftest css/css-tables/visibility-collapse-border-spacing-001.html +reftest css/css-tables/visibility-collapse-border-spacing-002.html reftest css/css-tables/visibility-collapse-colspan-003.html reftest css/css-tables/visibility-collapse-rowspan-005.html reftest css/css-tables/visibility-hidden-collapsed-borders.html reftest css/css-tables/whitespace-001.html reftest css/css-tables/zero-rowspan-001.html reftest css/css-tables/zero-rowspan-002.html +reftest css/css-text-decor/invalidation/selection-pseudo-with-decoration-invalidation-001.html +reftest css/css-text-decor/invalidation/selection-pseudo-with-decoration-invalidation-002.html reftest css/css-text-decor/invalidation/text-decoration-invalidation-dashed.html reftest css/css-text-decor/invalidation/text-decoration-invalidation-double.html reftest css/css-text-decor/invalidation/text-decoration-invalidation-solid.html @@ -18893,6 +19820,7 @@ reftest css/css-text-decor/invalidation/text-decoration-invalidation-wavy.html reftest css/css-text-decor/invalidation/text-decoration-thickness.html reftest css/css-text-decor/line-through-vertical.html reftest css/css-text-decor/ruby-text-decoration-01.html +reftest css/css-text-decor/text-combine-emphasis.html reftest css/css-text-decor/text-decoration-color-recalc-002.html reftest css/css-text-decor/text-decoration-color-recalc.html reftest css/css-text-decor/text-decoration-color-selection-pseudo-01.html @@ -18904,18 +19832,18 @@ reftest css/css-text-decor/text-decoration-line-010.xht reftest css/css-text-decor/text-decoration-line-011.xht reftest css/css-text-decor/text-decoration-line-012.xht reftest css/css-text-decor/text-decoration-line-013.xht -reftest css/css-text-decor/text-decoration-line-grammar-error-color-001.optional.html -reftest css/css-text-decor/text-decoration-line-grammar-error-color-002.optional.html -reftest css/css-text-decor/text-decoration-line-grammar-error-color-dynamic-001.optional.html +reftest css/css-text-decor/text-decoration-line-grammar-error-color-001.html reftest css/css-text-decor/text-decoration-line-recalc.html -reftest css/css-text-decor/text-decoration-line-spelling-error-color-001.optional.html -reftest css/css-text-decor/text-decoration-line-spelling-error-color-002.optional.html -reftest css/css-text-decor/text-decoration-line-spelling-error-color-dynamic-001.optional.html +reftest css/css-text-decor/text-decoration-line-spelling-error-color-001.html reftest css/css-text-decor/text-decoration-line-through-wavy-covers-whole-line-length-001.html reftest css/css-text-decor/text-decoration-line.html reftest css/css-text-decor/text-decoration-lines-001.html reftest css/css-text-decor/text-decoration-overline-wavy-covers-whole-line-length-001.html reftest css/css-text-decor/text-decoration-propagation-01.html +reftest css/css-text-decor/text-decoration-propagation-02.html +reftest css/css-text-decor/text-decoration-propagation-03.html +reftest css/css-text-decor/text-decoration-propagation-04.html +reftest css/css-text-decor/text-decoration-propagation-05.html reftest css/css-text-decor/text-decoration-propagation-display-contents.html reftest css/css-text-decor/text-decoration-propagation-dynamic-001.html reftest css/css-text-decor/text-decoration-propagation-shadow.html @@ -18946,6 +19874,7 @@ reftest css/css-text-decor/text-decoration-subelements-003.html reftest css/css-text-decor/text-decoration-subelements-004.html reftest css/css-text-decor/text-decoration-subelements-005.html reftest css/css-text-decor/text-decoration-thickness-001.html +reftest css/css-text-decor/text-decoration-thickness-calc.html reftest css/css-text-decor/text-decoration-thickness-fixed.html reftest css/css-text-decor/text-decoration-thickness-from-font-variable.html reftest css/css-text-decor/text-decoration-thickness-from-zero-sized-font.html @@ -18954,6 +19883,7 @@ reftest css/css-text-decor/text-decoration-thickness-length-rounding-down.tentat reftest css/css-text-decor/text-decoration-thickness-length-rounding-min-val.html reftest css/css-text-decor/text-decoration-thickness-length-rounding-up.tentative.html reftest css/css-text-decor/text-decoration-thickness-linethrough-001.html +reftest css/css-text-decor/text-decoration-thickness-non-inherit.html reftest css/css-text-decor/text-decoration-thickness-overline-001.html reftest css/css-text-decor/text-decoration-thickness-percent-001.html reftest css/css-text-decor/text-decoration-thickness-scroll-001.html @@ -18961,9 +19891,6 @@ reftest css/css-text-decor/text-decoration-thickness-single.html reftest css/css-text-decor/text-decoration-thickness-underline-001.html reftest css/css-text-decor/text-decoration-thickness-vertical-001.html reftest css/css-text-decor/text-decoration-thickness-vertical-002.html -reftest css/css-text-decor/text-decoration-underline-position-horizontal.html -reftest css/css-text-decor/text-decoration-underline-position-vertical-ja.html -reftest css/css-text-decor/text-decoration-underline-position-vertical.html reftest css/css-text-decor/text-decoration-underline-wavy-covers-whole-line-length-001.html reftest css/css-text-decor/text-emphasis-color-001.xht reftest css/css-text-decor/text-emphasis-color-property-001.html @@ -19038,6 +19965,9 @@ reftest css/css-text-decor/text-emphasis-property-003a.html reftest css/css-text-decor/text-emphasis-property-003b.html reftest css/css-text-decor/text-emphasis-property-004.html reftest css/css-text-decor/text-emphasis-property-004a.html +reftest css/css-text-decor/text-emphasis-punctuation-1.html +reftest css/css-text-decor/text-emphasis-punctuation-2.html +reftest css/css-text-decor/text-emphasis-punctuation-3.html reftest css/css-text-decor/text-emphasis-ruby-001.html reftest css/css-text-decor/text-emphasis-ruby-002.html reftest css/css-text-decor/text-emphasis-ruby-003.html @@ -19097,6 +20027,8 @@ reftest css/css-text-decor/text-emphasis-style-property-020a.html reftest css/css-text-decor/text-emphasis-style-shape-001.xht reftest css/css-text-decor/text-emphasis-style-string-001.xht reftest css/css-text-decor/text-shadow/basic-negcoord.html +reftest css/css-text-decor/text-shadow/basic-opacity-near-zero.html +reftest css/css-text-decor/text-shadow/basic-opacity-zero.html reftest css/css-text-decor/text-shadow/basic-opacity.html reftest css/css-text-decor/text-shadow/basic.html reftest css/css-text-decor/text-shadow/blur.html @@ -19111,7 +20043,12 @@ reftest css/css-text-decor/text-shadow/overflow-not-scrollable-1.html reftest css/css-text-decor/text-shadow/overflow-not-scrollable-2.html reftest css/css-text-decor/text-shadow/padding-decoration.html reftest css/css-text-decor/text-shadow/quirks-decor-noblur.html +reftest css/css-text-decor/text-shadow/standards-decor-noblur-2.html reftest css/css-text-decor/text-shadow/standards-decor-noblur.html +reftest css/css-text-decor/text-shadow/svg-fill-none.html +reftest css/css-text-decor/text-shadow/svg-fill-opacity.html +reftest css/css-text-decor/text-shadow/svg-stroke-dasharray.html +reftest css/css-text-decor/text-shadow/svg-stroke.html reftest css/css-text-decor/text-shadow/textindent.html reftest css/css-text-decor/text-underline-offset-001.html reftest css/css-text-decor/text-underline-offset-002.html @@ -19127,6 +20064,9 @@ reftest css/css-text-decor/text-underline-offset-zero-position.html reftest css/css-text-decor/text-underline-position-001a.html reftest css/css-text-decor/text-underline-position-001b.html reftest css/css-text-decor/text-underline-position-from-font-variable.html +reftest css/css-text-decor/text-underline-position-horizontal.html +reftest css/css-text-decor/text-underline-position-vertical-ja.html +reftest css/css-text-decor/text-underline-position-vertical.html reftest css/css-text/bidi/bidi-lines-001.html reftest css/css-text/bidi/bidi-lines-002.html reftest css/css-text/bidi/bidi-tab-001.html @@ -19143,6 +20083,7 @@ reftest css/css-text/boundary-shaping/boundary-shaping-010.html reftest css/css-text/hanging-punctuation/hanging-punctuation-allow-end-001.xht reftest css/css-text/hanging-punctuation/hanging-punctuation-block-bound-001.html reftest css/css-text/hanging-punctuation/hanging-punctuation-first-001.xht +reftest css/css-text/hanging-punctuation/hanging-punctuation-first-002.html reftest css/css-text/hanging-punctuation/hanging-punctuation-force-end-001.xht reftest css/css-text/hanging-punctuation/hanging-punctuation-inline-001.html reftest css/css-text/hanging-punctuation/hanging-punctuation-inline-bound-001.html @@ -19177,6 +20118,7 @@ reftest css/css-text/hyphens/hyphens-none-012.html reftest css/css-text/hyphens/hyphens-none-013.html reftest css/css-text/hyphens/hyphens-none-014.html reftest css/css-text/hyphens/hyphens-none-015.html +reftest css/css-text/hyphens/hyphens-none-shy-on-2nd-line-001.html reftest css/css-text/hyphens/hyphens-out-of-flow-001.html reftest css/css-text/hyphens/hyphens-out-of-flow-002.html reftest css/css-text/hyphens/hyphens-overflow-001.html @@ -19189,11 +20131,14 @@ reftest css/css-text/hyphens/hyphens-vertical-001.html reftest css/css-text/hyphens/hyphens-vertical-002.html reftest css/css-text/hyphens/hyphens-vertical-003.html reftest css/css-text/hyphens/hyphens-vertical-004.html +reftest css/css-text/hyphens/hyphens-vs-float-clearance-001.html +reftest css/css-text/hyphens/hyphens-vs-float-clearance-002.html reftest css/css-text/hyphens/i18n/hyphens-i18n-auto-001.html reftest css/css-text/hyphens/i18n/hyphens-i18n-auto-002.html reftest css/css-text/hyphens/i18n/hyphens-i18n-auto-003.html reftest css/css-text/hyphens/i18n/hyphens-i18n-auto-004.html reftest css/css-text/hyphens/i18n/hyphens-i18n-auto-005.html +reftest css/css-text/hyphens/i18n/hyphens-i18n-auto-006.html reftest css/css-text/hyphens/i18n/hyphens-i18n-manual-001.html reftest css/css-text/hyphens/i18n/hyphens-i18n-manual-002.html reftest css/css-text/hyphens/i18n/hyphens-i18n-manual-003.html @@ -19375,6 +20320,7 @@ reftest css/css-text/letter-spacing/letter-spacing-bidi-004.xht reftest css/css-text/letter-spacing/letter-spacing-bidi-005.xht reftest css/css-text/letter-spacing/letter-spacing-control-chars-001.html reftest css/css-text/letter-spacing/letter-spacing-end-of-line-001.html +reftest css/css-text/letter-spacing/letter-spacing-end-of-line-002.html reftest css/css-text/letter-spacing/letter-spacing-ligatures-001.html reftest css/css-text/letter-spacing/letter-spacing-ligatures-002.html reftest css/css-text/letter-spacing/letter-spacing-ligatures-003.html @@ -19382,6 +20328,8 @@ reftest css/css-text/letter-spacing/letter-spacing-ligatures-004.html reftest css/css-text/letter-spacing/letter-spacing-nesting-001.html reftest css/css-text/letter-spacing/letter-spacing-nesting-002.html reftest css/css-text/letter-spacing/letter-spacing-nesting-003.xht +reftest css/css-text/letter-spacing/letter-spacing-percent-001.html +reftest css/css-text/letter-spacing/letter-spacing-trim-start-001.html reftest css/css-text/line-break/line-break-anywhere-001.html reftest css/css-text/line-break/line-break-anywhere-002.html reftest css/css-text/line-break/line-break-anywhere-003.html @@ -19492,6 +20440,9 @@ reftest css/css-text/line-breaking/line-breaking-024.html reftest css/css-text/line-breaking/line-breaking-025.html reftest css/css-text/line-breaking/line-breaking-026.html reftest css/css-text/line-breaking/line-breaking-027.html +reftest css/css-text/line-breaking/line-breaking-030.html +reftest css/css-text/line-breaking/line-breaking-031.html +reftest css/css-text/line-breaking/line-breaking-032.html reftest css/css-text/line-breaking/line-breaking-atomic-001.html reftest css/css-text/line-breaking/line-breaking-atomic-002.html reftest css/css-text/line-breaking/line-breaking-atomic-003.html @@ -19501,6 +20452,24 @@ reftest css/css-text/line-breaking/line-breaking-atomic-006.html reftest css/css-text/line-breaking/line-breaking-atomic-007.html reftest css/css-text/line-breaking/line-breaking-atomic-008.html reftest css/css-text/line-breaking/line-breaking-atomic-009.html +reftest css/css-text/line-breaking/line-breaking-atomic-010.html +reftest css/css-text/line-breaking/line-breaking-atomic-011.html +reftest css/css-text/line-breaking/line-breaking-atomic-012.html +reftest css/css-text/line-breaking/line-breaking-atomic-013.html +reftest css/css-text/line-breaking/line-breaking-atomic-014.html +reftest css/css-text/line-breaking/line-breaking-atomic-015.html +reftest css/css-text/line-breaking/line-breaking-atomic-016.html +reftest css/css-text/line-breaking/line-breaking-atomic-017.html +reftest css/css-text/line-breaking/line-breaking-atomic-018.html +reftest css/css-text/line-breaking/line-breaking-atomic-019.html +reftest css/css-text/line-breaking/line-breaking-atomic-020.html +reftest css/css-text/line-breaking/line-breaking-atomic-021.html +reftest css/css-text/line-breaking/line-breaking-atomic-022.html +reftest css/css-text/line-breaking/line-breaking-atomic-023.html +reftest css/css-text/line-breaking/line-breaking-atomic-024.html +reftest css/css-text/line-breaking/line-breaking-atomic-025.html +reftest css/css-text/line-breaking/line-breaking-atomic-026.html +reftest css/css-text/line-breaking/line-breaking-atomic-027.html reftest css/css-text/line-breaking/line-breaking-ic-001.html reftest css/css-text/line-breaking/line-breaking-ic-002.html reftest css/css-text/line-breaking/line-breaking-ic-003.html @@ -19670,6 +20639,7 @@ reftest css/css-text/tab-size/tab-size-integer-001.html reftest css/css-text/tab-size/tab-size-integer-002.html reftest css/css-text/tab-size/tab-size-integer-003.html reftest css/css-text/tab-size/tab-size-integer-004.html +reftest css/css-text/tab-size/tab-size-integer-005.html reftest css/css-text/tab-size/tab-size-length-001.html reftest css/css-text/tab-size/tab-size-length-002.html reftest css/css-text/tab-size/tab-size-percent-001.html @@ -19709,12 +20679,17 @@ reftest css/css-text/text-align/text-align-justify-003.html reftest css/css-text/text-align/text-align-justify-004.html reftest css/css-text/text-align/text-align-justify-005.html reftest css/css-text/text-align/text-align-justify-006.html +reftest css/css-text/text-align/text-align-justify-bidi-control.html reftest css/css-text/text-align/text-align-justify-last-center.html reftest css/css-text/text-align/text-align-justify-last-default.html reftest css/css-text/text-align/text-align-justify-last-end.html reftest css/css-text/text-align/text-align-justify-last-justify.html reftest css/css-text/text-align/text-align-justify-last-start.html reftest css/css-text/text-align/text-align-justify-shy-001.html +reftest css/css-text/text-align/text-align-justify-tabs-001.html +reftest css/css-text/text-align/text-align-justify-tabs-002.html +reftest css/css-text/text-align/text-align-justify-tabs-003.html +reftest css/css-text/text-align/text-align-justify-tabs-004.html reftest css/css-text/text-align/text-align-justifyall-001.html reftest css/css-text/text-align/text-align-justifyall-002.html reftest css/css-text/text-align/text-align-justifyall-003.html @@ -19723,8 +20698,10 @@ reftest css/css-text/text-align/text-align-justifyall-005.html reftest css/css-text/text-align/text-align-justifyall-006.html reftest css/css-text/text-align/text-align-last-010.html reftest css/css-text/text-align/text-align-last-011.html +reftest css/css-text/text-align/text-align-last-015.html reftest css/css-text/text-align/text-align-last-center.html reftest css/css-text/text-align/text-align-last-end.html +reftest css/css-text/text-align/text-align-last-justify-br.html reftest css/css-text/text-align/text-align-last-justify-rtl.html reftest css/css-text/text-align/text-align-last-justify.html reftest css/css-text/text-align/text-align-last-simple.html @@ -19758,6 +20735,12 @@ reftest css/css-text/text-align/text-align-start-last-default.html reftest css/css-text/text-align/text-align-start-last-end.html reftest css/css-text/text-align/text-align-start-last-justify.html reftest css/css-text/text-align/text-align-start-last-start.html +reftest css/css-text/text-autospace/text-autospace-001.html +reftest css/css-text/text-autospace/text-autospace-break-001.html +reftest css/css-text/text-autospace/text-autospace-dynamic-001.html +reftest css/css-text/text-autospace/text-autospace-no-001.html +reftest css/css-text/text-autospace/text-autospace-vertical-combine-001.html +reftest css/css-text/text-autospace/text-autospace-vertical-upright-001.html reftest css/css-text/text-encoding/shaping-join-001.html reftest css/css-text/text-encoding/shaping-join-002.html reftest css/css-text/text-encoding/shaping-join-003.html @@ -19780,11 +20763,16 @@ reftest css/css-text/text-group-align/text-group-align-start.html reftest css/css-text/text-indent/anonymous-flex-item-001.html reftest css/css-text/text-indent/anonymous-grid-item-001.html reftest css/css-text/text-indent/text-indent-each-line-hanging.html +reftest css/css-text/text-indent/text-indent-length-001.html +reftest css/css-text/text-indent/text-indent-length-002.html +reftest css/css-text/text-indent/text-indent-min-max-content-001.html +reftest css/css-text/text-indent/text-indent-overflow.html reftest css/css-text/text-indent/text-indent-percentage-001.xht reftest css/css-text/text-indent/text-indent-percentage-002.html reftest css/css-text/text-indent/text-indent-percentage-003.html reftest css/css-text/text-indent/text-indent-percentage-004.html reftest css/css-text/text-indent/text-indent-tab-positions-001.html +reftest css/css-text/text-indent/text-indent-text-align-end.html reftest css/css-text/text-indent/text-indent-with-absolute-pos-child.html reftest css/css-text/text-justify/text-justify-001.html reftest css/css-text/text-justify/text-justify-006.html @@ -19798,25 +20786,24 @@ reftest css/css-text/text-justify/text-justify-distribute-001.html reftest css/css-text/text-justify/text-justify-inter-character-001.html reftest css/css-text/text-justify/text-justify-inter-word-001.html reftest css/css-text/text-justify/text-justify-none-001.html -reftest css/css-text/text-transform/math/text-transform-math-auto-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-auto-002.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-bold-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-initial-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-italic-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-looped-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-monospace-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-script-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-stretched-001.tentative.html -reftest css/css-text/text-transform/math/text-transform-math-tailed-001.tentative.html +reftest css/css-text/text-justify/text-justify-word-separators.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-colon-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-dot-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-end-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-feature-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-narrow-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-quote-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-space-all-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-span-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-start-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-start-002.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-subset-001.html +reftest css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html +reftest css/css-text/text-stroke-width-subpixel.html +reftest css/css-text/text-transform/math/text-transform-math-auto-001.html +reftest css/css-text/text-transform/math/text-transform-math-auto-002.html reftest css/css-text/text-transform/text-transform-capitalize-001.html reftest css/css-text/text-transform/text-transform-capitalize-003.html reftest css/css-text/text-transform/text-transform-capitalize-005.html @@ -19836,6 +20823,8 @@ reftest css/css-text/text-transform/text-transform-capitalize-030.html reftest css/css-text/text-transform/text-transform-capitalize-031.html reftest css/css-text/text-transform/text-transform-capitalize-032.xht reftest css/css-text/text-transform/text-transform-capitalize-033.html +reftest css/css-text/text-transform/text-transform-capitalize-034.html +reftest css/css-text/text-transform/text-transform-capitalize-035.html reftest css/css-text/text-transform/text-transform-full-size-kana-001.html reftest css/css-text/text-transform/text-transform-full-size-kana-002.html reftest css/css-text/text-transform/text-transform-full-size-kana-003.html @@ -19843,6 +20832,7 @@ reftest css/css-text/text-transform/text-transform-full-size-kana-004.html reftest css/css-text/text-transform/text-transform-full-size-kana-005.html reftest css/css-text/text-transform/text-transform-full-size-kana-006.html reftest css/css-text/text-transform/text-transform-full-size-kana-007.html +reftest css/css-text/text-transform/text-transform-full-size-kana-008.html reftest css/css-text/text-transform/text-transform-fullwidth-001.xht reftest css/css-text/text-transform/text-transform-fullwidth-002.xht reftest css/css-text/text-transform/text-transform-fullwidth-004.xht @@ -19865,6 +20855,7 @@ reftest css/css-text/text-transform/text-transform-tailoring-003.html reftest css/css-text/text-transform/text-transform-tailoring-004.html reftest css/css-text/text-transform/text-transform-tailoring-005.html reftest css/css-text/text-transform/text-transform-uppercase-101.xht +reftest css/css-text/text-transform/text-transform-uppercase-dynamic.html reftest css/css-text/text-transform/text-transform-upperlower-001.html reftest css/css-text/text-transform/text-transform-upperlower-002.html reftest css/css-text/text-transform/text-transform-upperlower-003.html @@ -19911,6 +20902,7 @@ reftest css/css-text/text-transform/text-transform-upperlower-102.html reftest css/css-text/text-transform/text-transform-upperlower-103.html reftest css/css-text/text-transform/text-transform-upperlower-104.html reftest css/css-text/text-transform/text-transform-upperlower-105.html +reftest css/css-text/text-transform/text-transform-upperlower-106.html reftest css/css-text/white-space/break-spaces-001.html reftest css/css-text/white-space/break-spaces-002.html reftest css/css-text/white-space/break-spaces-003.html @@ -20059,14 +21051,20 @@ reftest css/css-text/white-space/display-contents-remove-whitespace-change.html reftest css/css-text/white-space/eol-spaces-bidi-001.html reftest css/css-text/white-space/eol-spaces-bidi-002.html reftest css/css-text/white-space/eol-spaces-bidi-003.html +reftest css/css-text/white-space/eol-spaces-bidi-004.html reftest css/css-text/white-space/full-width-leading-spaces-001.html reftest css/css-text/white-space/full-width-leading-spaces-002.html reftest css/css-text/white-space/full-width-leading-spaces-003.html reftest css/css-text/white-space/full-width-leading-spaces-004.html reftest css/css-text/white-space/full-width-leading-spaces-005.html +reftest css/css-text/white-space/hanging-whitespace-001.tentative.html +reftest css/css-text/white-space/hanging-whitespace-002.tentative.html +reftest css/css-text/white-space/hanging-whitespace-003.tentative.html reftest css/css-text/white-space/line-edge-white-space-collapse-001.html reftest css/css-text/white-space/line-edge-white-space-collapse-002.html reftest css/css-text/white-space/lone-cr-001.tentative.html +reftest css/css-text/white-space/object-replacement-1.html +reftest css/css-text/white-space/object-replacement-2.html reftest css/css-text/white-space/pre-float-001.html reftest css/css-text/white-space/pre-line-051.html reftest css/css-text/white-space/pre-line-052.html @@ -20093,6 +21091,21 @@ reftest css/css-text/white-space/pre-wrap-019.html reftest css/css-text/white-space/pre-wrap-020.html reftest css/css-text/white-space/pre-wrap-051.html reftest css/css-text/white-space/pre-wrap-052.html +reftest css/css-text/white-space/pre-wrap-align-center-001.html +reftest css/css-text/white-space/pre-wrap-align-center-002.html +reftest css/css-text/white-space/pre-wrap-align-center-003.html +reftest css/css-text/white-space/pre-wrap-align-end-001.html +reftest css/css-text/white-space/pre-wrap-align-end-002.html +reftest css/css-text/white-space/pre-wrap-align-end-003.html +reftest css/css-text/white-space/pre-wrap-align-left-001.html +reftest css/css-text/white-space/pre-wrap-align-left-002.html +reftest css/css-text/white-space/pre-wrap-align-left-003.html +reftest css/css-text/white-space/pre-wrap-align-right-001.html +reftest css/css-text/white-space/pre-wrap-align-right-002.html +reftest css/css-text/white-space/pre-wrap-align-right-003.html +reftest css/css-text/white-space/pre-wrap-align-start-001.html +reftest css/css-text/white-space/pre-wrap-align-start-002.html +reftest css/css-text/white-space/pre-wrap-align-start-003.html reftest css/css-text/white-space/pre-wrap-float-001.html reftest css/css-text/white-space/pre-wrap-leading-spaces-001.html reftest css/css-text/white-space/pre-wrap-leading-spaces-002.html @@ -20127,9 +21140,23 @@ reftest css/css-text/white-space/tab-stop-threshold-003.html reftest css/css-text/white-space/tab-stop-threshold-004.html reftest css/css-text/white-space/tab-stop-threshold-005.html reftest css/css-text/white-space/tab-stop-threshold-006.html -reftest css/css-text/white-space/text-space-collapse-discard-001.xht -reftest css/css-text/white-space/text-space-collapse-preserve-breaks-001.xht -reftest css/css-text/white-space/text-space-trim-trim-inner-001.xht +reftest css/css-text/white-space/text-wrap-balance-002.html +reftest css/css-text/white-space/text-wrap-balance-003.html +reftest css/css-text/white-space/text-wrap-balance-004.html +reftest css/css-text/white-space/text-wrap-balance-005.html +reftest css/css-text/white-space/text-wrap-balance-align-001.html +reftest css/css-text/white-space/text-wrap-balance-dynamic-001.html +reftest css/css-text/white-space/text-wrap-balance-float-001.html +reftest css/css-text/white-space/text-wrap-balance-float-002.html +reftest css/css-text/white-space/text-wrap-balance-float-003.html +reftest css/css-text/white-space/text-wrap-balance-float-004.html +reftest css/css-text/white-space/text-wrap-balance-float-005.html +reftest css/css-text/white-space/text-wrap-balance-float-006.html +reftest css/css-text/white-space/text-wrap-balance-line-clamp-001.html +reftest css/css-text/white-space/text-wrap-balance-overflow-001.html +reftest css/css-text/white-space/text-wrap-balance-overflow-002.html +reftest css/css-text/white-space/text-wrap-balance-text-indent-001.html +reftest css/css-text/white-space/text-wrap-nowrap-001.html reftest css/css-text/white-space/textarea-break-spaces-001.html reftest css/css-text/white-space/textarea-break-spaces-002.html reftest css/css-text/white-space/textarea-pre-wrap-001.html @@ -20211,6 +21238,8 @@ reftest css/css-text/white-space/trailing-space-and-text-alignment-rtl-004.html reftest css/css-text/white-space/trailing-space-and-text-alignment-rtl-005.html reftest css/css-text/white-space/trailing-space-rtl-001.html reftest css/css-text/white-space/white-space-applies-to-text-001.html +reftest css/css-text/white-space/white-space-collapse-discard-001.xht +reftest css/css-text/white-space/white-space-collapse-preserve-breaks-001.xht reftest css/css-text/white-space/white-space-empty-text-sibling.html reftest css/css-text/white-space/white-space-intrinsic-size-001.html reftest css/css-text/white-space/white-space-intrinsic-size-002.html @@ -20236,6 +21265,10 @@ reftest css/css-text/white-space/white-space-pre-034.html reftest css/css-text/white-space/white-space-pre-035.html reftest css/css-text/white-space/white-space-pre-051.html reftest css/css-text/white-space/white-space-pre-052.html +reftest css/css-text/white-space/white-space-pre-wrap-justify-001.html +reftest css/css-text/white-space/white-space-pre-wrap-justify-002.html +reftest css/css-text/white-space/white-space-pre-wrap-justify-003.html +reftest css/css-text/white-space/white-space-pre-wrap-justify-004.html reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-001.html reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-002.html reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-003.html @@ -20253,6 +21286,9 @@ reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-015.html reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-021.html reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-022.html reftest css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html +reftest css/css-text/white-space/white-space-trim-discard-inner-001.xht +reftest css/css-text/white-space/white-space-vs-joiners-001.html +reftest css/css-text/white-space/white-space-vs-joiners-002.html reftest css/css-text/white-space/white-space-wrap-after-nowrap-001.html reftest css/css-text/white-space/white-space-zero-fontsize-001.html reftest css/css-text/white-space/white-space-zero-fontsize-002.html @@ -20270,49 +21306,22 @@ reftest css/css-text/white-space/ws-break-spaces-applies-to-012.html reftest css/css-text/white-space/ws-break-spaces-applies-to-013.html reftest css/css-text/white-space/ws-break-spaces-applies-to-014.html reftest css/css-text/white-space/ws-break-spaces-applies-to-015.html -reftest css/css-text/word-boundary/word-boundary-001.html -reftest css/css-text/word-boundary/word-boundary-002.html -reftest css/css-text/word-boundary/word-boundary-003.html -reftest css/css-text/word-boundary/word-boundary-004.html -reftest css/css-text/word-boundary/word-boundary-005.html -reftest css/css-text/word-boundary/word-boundary-006.html -reftest css/css-text/word-boundary/word-boundary-007.html -reftest css/css-text/word-boundary/word-boundary-008.html -reftest css/css-text/word-boundary/word-boundary-009.html -reftest css/css-text/word-boundary/word-boundary-010.html -reftest css/css-text/word-boundary/word-boundary-011.html -reftest css/css-text/word-boundary/word-boundary-012.html -reftest css/css-text/word-boundary/word-boundary-013.html -reftest css/css-text/word-boundary/word-boundary-014.html -reftest css/css-text/word-boundary/word-boundary-101.html -reftest css/css-text/word-boundary/word-boundary-102.html -reftest css/css-text/word-boundary/word-boundary-103.html -reftest css/css-text/word-boundary/word-boundary-104.html -reftest css/css-text/word-boundary/word-boundary-105.html -reftest css/css-text/word-boundary/word-boundary-106.html -reftest css/css-text/word-boundary/word-boundary-107.html -reftest css/css-text/word-boundary/word-boundary-108.html -reftest css/css-text/word-boundary/word-boundary-109.html -reftest css/css-text/word-boundary/word-boundary-110.html -reftest css/css-text/word-boundary/word-boundary-111.html -reftest css/css-text/word-boundary/word-boundary-112.html -reftest css/css-text/word-boundary/word-boundary-113.html -reftest css/css-text/word-boundary/word-boundary-114.html -reftest css/css-text/word-boundary/word-boundary-115.html -reftest css/css-text/word-boundary/word-boundary-116.html -reftest css/css-text/word-boundary/word-boundary-117.html -reftest css/css-text/word-boundary/word-boundary-118.html -reftest css/css-text/word-boundary/word-boundary-119.html -reftest css/css-text/word-boundary/word-boundary-120.html -reftest css/css-text/word-boundary/word-boundary-121.html -reftest css/css-text/word-boundary/word-boundary-122.html -reftest css/css-text/word-boundary/word-boundary-123.html -reftest css/css-text/word-boundary/word-boundary-124.html -reftest css/css-text/word-boundary/word-boundary-125.html -reftest css/css-text/word-boundary/word-boundary-126.html -reftest css/css-text/word-boundary/word-boundary-127.html -reftest css/css-text/word-boundary/word-boundary-128.html -reftest css/css-text/word-boundary/word-boundary-129.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-001.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-002.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-003.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-004.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-005.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-006.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-007.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-008.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-009.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-001.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-002.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-003.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-intrinsic-001.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-overflow-001.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-wbr-nobr-001.html +reftest css/css-text/word-break/auto-phrase/word-break-auto-phrase-wbr-nobr-002.html reftest css/css-text/word-break/break-boundary-2-chars-001.html reftest css/css-text/word-break/break-boundary-2-chars-002.html reftest css/css-text/word-break/word-break-break-all-000.html @@ -20371,6 +21380,7 @@ reftest css/css-text/word-break/word-break-keep-all-008.html reftest css/css-text/word-break/word-break-keep-all-009.html reftest css/css-text/word-break/word-break-keep-all-010.html reftest css/css-text/word-break/word-break-keep-all-063.html +reftest css/css-text/word-break/word-break-manual-001.html reftest css/css-text/word-break/word-break-min-content-001.html reftest css/css-text/word-break/word-break-min-content-002.html reftest css/css-text/word-break/word-break-min-content-003.html @@ -20379,6 +21389,8 @@ reftest css/css-text/word-break/word-break-min-content-005.html reftest css/css-text/word-break/word-break-min-content-006.html reftest css/css-text/word-break/word-break-min-content-007.html reftest css/css-text/word-break/word-break-normal-001.html +reftest css/css-text/word-break/word-break-normal-002.html +reftest css/css-text/word-break/word-break-normal-003.html reftest css/css-text/word-break/word-break-normal-ar-000.html reftest css/css-text/word-break/word-break-normal-bo-000.html reftest css/css-text/word-break/word-break-normal-en-000.html @@ -20394,16 +21406,46 @@ reftest css/css-text/word-break/word-break-normal-lo-000.html reftest css/css-text/word-break/word-break-normal-my-000.html reftest css/css-text/word-break/word-break-normal-tdd-000.html reftest css/css-text/word-break/word-break-normal-th-000.html +reftest css/css-text/word-break/word-break-normal-th-001.html reftest css/css-text/word-break/word-break-normal-zh-000.html +reftest css/css-text/word-space-transform/word-space-transform-001.html +reftest css/css-text/word-space-transform/word-space-transform-002.html +reftest css/css-text/word-space-transform/word-space-transform-003.html +reftest css/css-text/word-space-transform/word-space-transform-004.html +reftest css/css-text/word-space-transform/word-space-transform-005.html +reftest css/css-text/word-space-transform/word-space-transform-006.html +reftest css/css-text/word-space-transform/word-space-transform-007.html +reftest css/css-text/word-space-transform/word-space-transform-008.html +reftest css/css-text/word-space-transform/word-space-transform-009.html +reftest css/css-text/word-space-transform/word-space-transform-010.html +reftest css/css-text/word-space-transform/word-space-transform-011.html +reftest css/css-text/word-space-transform/word-space-transform-012.html +reftest css/css-text/word-space-transform/word-space-transform-013.html +reftest css/css-text/word-space-transform/word-space-transform-014.html +reftest css/css-text/word-space-transform/word-space-transform-016.html +reftest css/css-text/word-space-transform/word-space-transform-017.html +reftest css/css-text/word-space-transform/word-space-transform-018.html +reftest css/css-text/word-space-transform/word-space-transform-019.html +reftest css/css-text/word-space-transform/word-space-transform-020.html +reftest css/css-text/word-space-transform/word-space-transform-021.html +reftest css/css-text/word-space-transform/word-space-transform-022.html +reftest css/css-text/word-space-transform/word-space-transform-023.html +reftest css/css-text/word-space-transform/word-space-transform-024.html +reftest css/css-text/word-space-transform/word-space-transform-025.html +reftest css/css-text/word-space-transform/word-space-transform-026.html +reftest css/css-text/word-space-transform/word-space-transform-027.html +reftest css/css-text/word-space-transform/word-space-transform-028.html +reftest css/css-text/word-space-transform/word-space-transform-029.html +reftest css/css-text/word-space-transform/word-space-transform-030.html reftest css/css-text/word-spacing/word-spacing-001.html +reftest css/css-text/word-spacing/word-spacing-002.html reftest css/css-text/word-spacing/word-spacing-negative-value-001.html +reftest css/css-text/word-spacing/word-spacing-percent-001.html reftest css/css-text/writing-system/writing-system-font-001.html reftest css/css-text/writing-system/writing-system-line-break-001.html reftest css/css-text/writing-system/writing-system-line-break-002.html reftest css/css-text/writing-system/writing-system-segment-break-001.html reftest css/css-text/writing-system/writing-system-text-transform-001.html -reftest css/css-toggle/toggle-visibility-z-ordering-001.tentative.html -reftest css/css-toggle/toggle-visibility-z-ordering-002.tentative.html reftest css/css-transforms/2d-rotate-001.html reftest css/css-transforms/2d-rotate-notref.html reftest css/css-transforms/2d-rotate-ref.html @@ -20422,7 +21464,10 @@ reftest css/css-transforms/animation/canvas-webgl-translate-in-animation.html reftest css/css-transforms/animation/rotate-animation-on-svg.html reftest css/css-transforms/animation/rotate-animation-with-will-change-transform-001.html reftest css/css-transforms/animation/rotate-transform-equivalent.html +reftest css/css-transforms/animation/scale-and-rotate-both-specified-on-animation-keyframes.html reftest css/css-transforms/animation/scale-animation-on-svg.html +reftest css/css-transforms/animation/transform-box-will-change-transform-layer.html +reftest css/css-transforms/animation/transform-box.html reftest css/css-transforms/animation/transform-interpolation-matrix.html reftest css/css-transforms/animation/transform-interpolation-perspective.html reftest css/css-transforms/animation/transform-interpolation-rotate-slerp.html @@ -20431,13 +21476,18 @@ reftest css/css-transforms/animation/transform-interpolation-scale.html reftest css/css-transforms/animation/transform-interpolation-skew.html reftest css/css-transforms/animation/transform-interpolation-translate-em.html reftest css/css-transforms/animation/transform-interpolation-translate.html +reftest css/css-transforms/animation/transform-non-invertible-discrete-interpolation.html +reftest css/css-transforms/animation/transform-percent-with-width-and-height-separate.html +reftest css/css-transforms/animation/transform-percent-with-width-and-height.html reftest css/css-transforms/animation/translate-animation-on-svg.html +reftest css/css-transforms/animation/translate-percent-with-width-and-height-separate.html +reftest css/css-transforms/animation/translate-percent-with-width-and-height.html reftest css/css-transforms/backface-visibility-001.html reftest css/css-transforms/backface-visibility-hidden-001.html -reftest css/css-transforms/backface-visibility-hidden-002.tentative.html -reftest css/css-transforms/backface-visibility-hidden-003.tentative.html -reftest css/css-transforms/backface-visibility-hidden-004.tentative.html -reftest css/css-transforms/backface-visibility-hidden-005.tentative.html +reftest css/css-transforms/backface-visibility-hidden-002.html +reftest css/css-transforms/backface-visibility-hidden-003.html +reftest css/css-transforms/backface-visibility-hidden-004.html +reftest css/css-transforms/backface-visibility-hidden-005.html reftest css/css-transforms/backface-visibility-hidden-006.html reftest css/css-transforms/backface-visibility-hidden-animated-001.html reftest css/css-transforms/backface-visibility-hidden-animated-002.html @@ -20449,6 +21499,8 @@ reftest css/css-transforms/change-scale-wide-range.html reftest css/css-transforms/change-transform-origin-property.html reftest css/css-transforms/composited-under-rotateY-180deg-clip-perspective.html reftest css/css-transforms/composited-under-rotateY-180deg-clip.html +reftest css/css-transforms/composited-under-rotateY-180deg-perspective.html +reftest css/css-transforms/composited-under-rotateY-180deg-preserve-3d.html reftest css/css-transforms/composited-under-rotateY-180deg.html reftest css/css-transforms/css-rotate-2d-3d-001.html reftest css/css-transforms/css-scale-nested-001.html @@ -20689,6 +21741,7 @@ reftest css/css-transforms/preserve3d-and-flattening-z-order-008.html reftest css/css-transforms/preserve3d-button.html reftest css/css-transforms/preserve3d-nested-perspective.html reftest css/css-transforms/preserve3d-overflow-percent.html +reftest css/css-transforms/preserve3d-pseudo-element.html reftest css/css-transforms/rotate/svg-rotate-3args-002.html reftest css/css-transforms/rotate/svg-rotate-3args-invalid-001.html reftest css/css-transforms/rotate/svg-rotate-3args-invalid-002.html @@ -20775,8 +21828,10 @@ reftest css/css-transforms/transform-background-005.html reftest css/css-transforms/transform-background-006.html reftest css/css-transforms/transform-background-007.html reftest css/css-transforms/transform-background-008.html +reftest css/css-transforms/transform-box/content-box-mutation-001.html reftest css/css-transforms/transform-box/cssbox-border-box.html -reftest css/css-transforms/transform-box/cssbox-content-box.html +reftest css/css-transforms/transform-box/cssbox-content-box-001.html +reftest css/css-transforms/transform-box/cssbox-content-box-002.html reftest css/css-transforms/transform-box/cssbox-fill-box.html reftest css/css-transforms/transform-box/cssbox-initial.html reftest css/css-transforms/transform-box/cssbox-stroke-box.html @@ -20785,11 +21840,19 @@ reftest css/css-transforms/transform-box/fill-box-001.html reftest css/css-transforms/transform-box/fill-box-002.html reftest css/css-transforms/transform-box/fill-box-mutation-001.html reftest css/css-transforms/transform-box/fill-box-mutation-002.html +reftest css/css-transforms/transform-box/stroke-box-mutation-001.html +reftest css/css-transforms/transform-box/stroke-box-mutation-002.html +reftest css/css-transforms/transform-box/stroke-box-mutation-003.html +reftest css/css-transforms/transform-box/stroke-box-mutation-004.html reftest css/css-transforms/transform-box/svgbox-border-box.html reftest css/css-transforms/transform-box/svgbox-content-box.html reftest css/css-transforms/transform-box/svgbox-fill-box.html reftest css/css-transforms/transform-box/svgbox-initial.html -reftest css/css-transforms/transform-box/svgbox-stroke-box.html +reftest css/css-transforms/transform-box/svgbox-stroke-box-001.html +reftest css/css-transforms/transform-box/svgbox-stroke-box-002.html +reftest css/css-transforms/transform-box/svgbox-stroke-box-003.html +reftest css/css-transforms/transform-box/svgbox-stroke-box-004.html +reftest css/css-transforms/transform-box/svgbox-stroke-box-005.html reftest css/css-transforms/transform-box/svgbox-view-box.html reftest css/css-transforms/transform-box/value-changed.html reftest css/css-transforms/transform-box/view-box-mutation-001.html @@ -20801,6 +21864,7 @@ reftest css/css-transforms/transform-box/view-box-viewbox.html reftest css/css-transforms/transform-box/view-box.html reftest css/css-transforms/transform-clip-001.html reftest css/css-transforms/transform-compound-001.html +reftest css/css-transforms/transform-containing-block-and-scrolling-area-for-fixed.html reftest css/css-transforms/transform-containing-block-dynamic-1a.html reftest css/css-transforms/transform-containing-block-dynamic-1b.html reftest css/css-transforms/transform-descendant-001.html @@ -20820,6 +21884,8 @@ reftest css/css-transforms/transform-flattening-001.html reftest css/css-transforms/transform-generated-001.html reftest css/css-transforms/transform-generated-002.html reftest css/css-transforms/transform-iframe-001.html +reftest css/css-transforms/transform-iframe-002.html +reftest css/css-transforms/transform-iframe-scroll-position.html reftest css/css-transforms/transform-image-001.html reftest css/css-transforms/transform-inherit-001.html reftest css/css-transforms/transform-inherit-002.html @@ -21089,6 +22155,7 @@ reftest css/css-transforms/transform3d-preserve3d-010.html reftest css/css-transforms/transform3d-preserve3d-011.html reftest css/css-transforms/transform3d-preserve3d-012.html reftest css/css-transforms/transform3d-preserve3d-013.html +reftest css/css-transforms/transform3d-preserve3d-014.html reftest css/css-transforms/transform3d-rotate3d-001.html reftest css/css-transforms/transform3d-rotate3d-002.html reftest css/css-transforms/transform3d-rotatex-001.html @@ -21152,6 +22219,7 @@ reftest css/css-transforms/ttwf-transform-translatex-001.html reftest css/css-transforms/ttwf-transform-translatey-001.html reftest css/css-transforms/z-index-does-not-apply.html reftest css/css-transitions/inherit-background-color-transition.html +reftest css/css-transitions/pseudo-element-transform.html reftest css/css-transitions/render-blocking/no-transition-from-ua-to-blocking-stylesheet.html reftest css/css-transitions/root-color-transition.html reftest css/css-transitions/transition-test.html @@ -21176,12 +22244,9 @@ reftest css/css-ui/appearance-menulist-button-002.tentative.html reftest css/css-ui/appearance-meter-001.html reftest css/css-ui/appearance-progress-bar-001.html reftest css/css-ui/appearance-progress-bar-002.html -reftest css/css-ui/appearance-push-button-001.html reftest css/css-ui/appearance-radio-001.html reftest css/css-ui/appearance-revert-001.tentative.html reftest css/css-ui/appearance-searchfield-001.html -reftest css/css-ui/appearance-slider-horizontal-001.html -reftest css/css-ui/appearance-square-button-001.html reftest css/css-ui/appearance-textarea-001.html reftest css/css-ui/appearance-textfield-001.html reftest css/css-ui/box-sizing-001.html @@ -22004,12 +23069,12 @@ reftest css/css-ui/compute-kind-widget-no-fallback-props-001.html reftest css/css-ui/input-security-auto-sensitive-text-input.html reftest css/css-ui/input-security-non-sensitive-elements.html reftest css/css-ui/input-security-none-sensitive-text-input.html +reftest css/css-ui/negative-outline-offset.html reftest css/css-ui/outline-001.html reftest css/css-ui/outline-002.html reftest css/css-ui/outline-003.html reftest css/css-ui/outline-004.html reftest css/css-ui/outline-005.html -reftest css/css-ui/outline-006.html reftest css/css-ui/outline-007.html reftest css/css-ui/outline-008.html reftest css/css-ui/outline-009.html @@ -22031,7 +23096,11 @@ reftest css/css-ui/outline-026.html reftest css/css-ui/outline-027.html reftest css/css-ui/outline-028.html reftest css/css-ui/outline-auto-dynamic-change.html +reftest css/css-ui/outline-auto-width-001.html reftest css/css-ui/outline-color-001.html +reftest css/css-ui/outline-color-002.html +reftest css/css-ui/outline-color-003.html +reftest css/css-ui/outline-color-004.html reftest css/css-ui/outline-negative-offset-composited-scroll.html reftest css/css-ui/outline-offset-001.html reftest css/css-ui/outline-offset-table-001.html @@ -22042,9 +23111,12 @@ reftest css/css-ui/outline-style-013.html reftest css/css-ui/outline-style-014.html reftest css/css-ui/outline-style-inherit.html reftest css/css-ui/outline-with-padding-001.html +reftest css/css-ui/pointer-events-no-scrollbars-001.html +reftest css/css-ui/pointer-events-no-scrollbars-002.html reftest css/css-ui/resize-change-margin.html reftest css/css-ui/resize-child-will-change-transform.html reftest css/css-ui/resize-generated-content.html +reftest css/css-ui/subpixel-outline-width.tentative.html reftest css/css-ui/text-overflow-001.html reftest css/css-ui/text-overflow-002.html reftest css/css-ui/text-overflow-003.html @@ -22076,8 +23148,11 @@ reftest css/css-ui/text-overflow-ellipsis-indent-001.html reftest css/css-ui/text-overflow-ruby.html reftest css/css-ui/text-overflow.html reftest css/css-ui/translucent-outline.html +reftest css/css-ui/transparent-accent-color-001.html +reftest css/css-ui/transparent-accent-color-002.html reftest css/css-ui/webkit-appearance-auto-001.html reftest css/css-ui/webkit-appearance-auto-input-non-widget-001.html +reftest css/css-ui/webkit-appearance-auto-non-html-namespace-001.html reftest css/css-ui/webkit-appearance-button-001.html reftest css/css-ui/webkit-appearance-checkbox-001.html reftest css/css-ui/webkit-appearance-listbox-001.html @@ -22087,11 +23162,8 @@ reftest css/css-ui/webkit-appearance-menulist-button-002.tentative.html reftest css/css-ui/webkit-appearance-meter-001.html reftest css/css-ui/webkit-appearance-progress-bar-001.html reftest css/css-ui/webkit-appearance-progress-bar-002.html -reftest css/css-ui/webkit-appearance-push-button-001.html reftest css/css-ui/webkit-appearance-radio-001.html reftest css/css-ui/webkit-appearance-searchfield-001.html -reftest css/css-ui/webkit-appearance-slider-horizontal-001.html -reftest css/css-ui/webkit-appearance-square-button-001.html reftest css/css-ui/webkit-appearance-textarea-001.html reftest css/css-ui/webkit-appearance-textfield-001.html reftest css/css-values/angle-units-001.html @@ -22105,12 +23177,12 @@ reftest css/css-values/attr-color-valid.html reftest css/css-values/attr-in-max.html reftest css/css-values/attr-invalid-type-001.html reftest css/css-values/attr-invalid-type-002.html -reftest css/css-values/attr-invalid-type-008.html reftest css/css-values/attr-length-invalid-cast.html reftest css/css-values/attr-length-invalid-fallback.html reftest css/css-values/attr-length-valid-zero-nofallback.html reftest css/css-values/attr-length-valid-zero.html reftest css/css-values/attr-length-valid.html +reftest css/css-values/attr-notype-fallback.html reftest css/css-values/attr-px-invalid-cast.html reftest css/css-values/attr-px-invalid-fallback.html reftest css/css-values/attr-px-valid.html @@ -22148,6 +23220,28 @@ reftest css/css-values/calc-padding-block-1.html reftest css/css-values/calc-parenthesis-stack.html reftest css/css-values/calc-positive-fraction-001.html reftest css/css-values/calc-rem-lang.html +reftest css/css-values/calc-rounding-001.html +reftest css/css-values/calc-rounding-002.html +reftest css/css-values/calc-rounding-003.html +reftest css/css-values/calc-size/calc-size-aspect-ratio-001.html +reftest css/css-values/calc-size/calc-size-aspect-ratio-002.html +reftest css/css-values/calc-size/calc-size-aspect-ratio-003.html +reftest css/css-values/calc-size/calc-size-aspect-ratio-004.html +reftest css/css-values/calc-size/calc-size-aspect-ratio-005.html +reftest css/css-values/calc-size/calc-size-flex-001.html +reftest css/css-values/calc-size/calc-size-flex-002.html +reftest css/css-values/calc-size/calc-size-flex-003.html +reftest css/css-values/calc-size/calc-size-flex-004.html +reftest css/css-values/calc-size/calc-size-flex-005.html +reftest css/css-values/calc-size/calc-size-flex-006.html +reftest css/css-values/calc-size/calc-size-flex-007.html +reftest css/css-values/calc-size/calc-size-grid-repeat.html +reftest css/css-values/calc-size/calc-size-min-max-sizes-001.html +reftest css/css-values/calc-size/calc-size-min-max-sizes-002.html +reftest css/css-values/calc-size/calc-size-min-max-sizes-003.html +reftest css/css-values/calc-size/calc-size-min-max-sizes-004.html +reftest css/css-values/calc-size/calc-size-min-max-sizes-005.html +reftest css/css-values/calc-size/calc-size-min-max-sizes-006.html reftest css/css-values/calc-text-indent-1.html reftest css/css-values/calc-text-indent-intrinsic-1.html reftest css/css-values/calc-transform-origin-1.html @@ -22189,6 +23283,8 @@ reftest css/css-values/ic-unit-014.html reftest css/css-values/ic-unit-015.html reftest css/css-values/lh-unit-001.html reftest css/css-values/lh-unit-002.html +reftest css/css-values/lh-unit-same-element-font-size-dependency.html +reftest css/css-values/lh-unit-same-element-line-height-dependency.html reftest css/css-values/max-20-arguments.html reftest css/css-values/max-length-percent-001.html reftest css/css-values/max-unitless-zero-invalid.html @@ -22199,6 +23295,7 @@ reftest css/css-values/percentage-rem-low.html reftest css/css-values/q-unit-case-insensitivity-001.html reftest css/css-values/q-unit-case-insensitivity-002.html reftest css/css-values/rem-root-font-size-restyle-1.html +reftest css/css-values/rlh-unit-001.html reftest css/css-values/vh-calc-support-pct.html reftest css/css-values/vh-calc-support.html reftest css/css-values/vh-em-inherit.html @@ -22213,6 +23310,8 @@ reftest css/css-values/vh-support.html reftest css/css-values/vh-zero-support.html reftest css/css-values/vh_not_refreshing_on_chrome.html reftest css/css-values/viewport-unit-011.html +reftest css/css-values/viewport-units-scrollbars-auto-vhw-001.html +reftest css/css-values/viewport-units-scrollbars-scroll-vhw-001.html reftest css/css-values/viewport-units-writing-mode-font-size.html reftest css/css-variables/css-vars-custom-property-case-sensitive-001.html reftest css/css-variables/css-vars-custom-property-inheritance.html @@ -22392,79 +23491,232 @@ reftest css/css-variables/variable-supports-66.html reftest css/css-variables/variable-supports-67.html reftest css/css-variables/vars-background-shorthand-001.html reftest css/css-variables/vars-font-shorthand-001.html -reftest css/css-variables/wide-keyword-fallback.html +reftest css/css-variables/wide-keyword-fallback-001.html +reftest css/css-variables/wide-keyword-fallback-002.html reftest css/css-view-transitions/3d-transform-incoming.html reftest css/css-view-transitions/3d-transform-outgoing.html +reftest css/css-view-transitions/active-view-transition-on-non-root.html +reftest css/css-view-transitions/active-view-transition-pseudo-class-match.html +reftest css/css-view-transitions/active-view-transition-type-on-non-root.html +reftest css/css-view-transitions/animating-new-content-subset.html +reftest css/css-view-transitions/animating-new-content.html +reftest css/css-view-transitions/backdrop-filter-animated.html +reftest css/css-view-transitions/backdrop-filter-captured.html +reftest css/css-view-transitions/block-with-overflowing-text.html reftest css/css-view-transitions/break-inside-avoid-child.html +reftest css/css-view-transitions/capture-with-offscreen-child-translated.html +reftest css/css-view-transitions/capture-with-offscreen-child.html +reftest css/css-view-transitions/capture-with-opacity-zero-child.html +reftest css/css-view-transitions/capture-with-visibility-hidden-child.html +reftest css/css-view-transitions/capture-with-visibility-mixed-descendants.html +reftest css/css-view-transitions/class-specificity.html +reftest css/css-view-transitions/clip-path-larger-than-border-box-on-child-of-named-element.html reftest css/css-view-transitions/content-smaller-than-box-size.html reftest css/css-view-transitions/content-visibility-auto-shared-element.html -reftest css/css-view-transitions/content-with-clip-max-texture-size.html +reftest css/css-view-transitions/content-with-child-with-transparent-background.html reftest css/css-view-transitions/content-with-clip-root.html reftest css/css-view-transitions/content-with-clip.html reftest css/css-view-transitions/content-with-inline-child.html reftest css/css-view-transitions/content-with-transform-new-image.html reftest css/css-view-transitions/content-with-transform-old-image.html +reftest css/css-view-transitions/content-with-transparent-background.html reftest css/css-view-transitions/css-tags-paint-order-with-entry.html reftest css/css-view-transitions/css-tags-paint-order.html reftest css/css-view-transitions/css-tags-shared-element.html reftest css/css-view-transitions/dialog-in-rtl-iframe.html reftest css/css-view-transitions/dialog-in-top-layer-during-transition-new.html reftest css/css-view-transitions/dialog-in-top-layer-during-transition-old.html +reftest css/css-view-transitions/element-is-grouping-during-animation.html +reftest css/css-view-transitions/element-stops-grouping-after-animation.html reftest css/css-view-transitions/element-with-overflow.html +reftest css/css-view-transitions/exit-transition-with-anonymous-layout-object.html reftest css/css-view-transitions/far-away-capture.html +reftest css/css-view-transitions/fractional-box-new.html +reftest css/css-view-transitions/fractional-box-old.html +reftest css/css-view-transitions/fractional-box-with-overflow-children-new.html +reftest css/css-view-transitions/fractional-box-with-overflow-children-old.html +reftest css/css-view-transitions/fractional-box-with-shadow-new.html +reftest css/css-view-transitions/fractional-box-with-shadow-old.html +reftest css/css-view-transitions/fractional-translation-from-position.html +reftest css/css-view-transitions/fractional-translation-from-transform.html +reftest css/css-view-transitions/fragmented-at-start-ignored.html +reftest css/css-view-transitions/fragmented-during-transition-skips.html reftest css/css-view-transitions/hit-test-unpainted-element.html reftest css/css-view-transitions/hit-test-unrelated-element.html +reftest css/css-view-transitions/iframe-and-main-frame-transition-new-main-new-iframe.html +reftest css/css-view-transitions/iframe-and-main-frame-transition-new-main-old-iframe.html +reftest css/css-view-transitions/iframe-and-main-frame-transition-old-main-new-iframe.html +reftest css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html +reftest css/css-view-transitions/iframe-and-main-frame-transition-old-main.html +reftest css/css-view-transitions/iframe-and-main-frame-transition-with-name-on-iframe.html +reftest css/css-view-transitions/iframe-new-has-scrollbar.html +reftest css/css-view-transitions/iframe-old-has-scrollbar.html reftest css/css-view-transitions/iframe-transition.sub.html reftest css/css-view-transitions/inline-child-with-filter.html +reftest css/css-view-transitions/inline-element-size.html +reftest css/css-view-transitions/inline-with-offset-from-containing-block.html reftest css/css-view-transitions/japanese-tag.html +reftest css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-new.html +reftest css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-old.html +reftest css/css-view-transitions/massive-element-below-viewport-offscreen-new.html +reftest css/css-view-transitions/massive-element-below-viewport-offscreen-old.html +reftest css/css-view-transitions/massive-element-below-viewport-partially-onscreen-new.html +reftest css/css-view-transitions/massive-element-below-viewport-partially-onscreen-old.html +reftest css/css-view-transitions/massive-element-left-of-viewport-offscreen-new.html +reftest css/css-view-transitions/massive-element-left-of-viewport-offscreen-old.html +reftest css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-new.html +reftest css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-old.html +reftest css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-new.html +reftest css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-old.html +reftest css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-new.html +reftest css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-old.html +reftest css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-new.html +reftest css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-old.html +reftest css/css-view-transitions/massive-element-right-of-viewport-offscreen-new.html +reftest css/css-view-transitions/massive-element-right-of-viewport-offscreen-old.html +reftest css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-new.html +reftest css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-old.html +reftest css/css-view-transitions/modify-style-via-cssom.html +reftest css/css-view-transitions/multiline-span-with-overflowing-text-and-box-decorations.html +reftest css/css-view-transitions/named-element-with-fix-pos-child-new.html +reftest css/css-view-transitions/named-element-with-fix-pos-child-old.html +reftest css/css-view-transitions/names-are-tree-scoped.html +reftest css/css-view-transitions/navigation/at-rule-opt-in-auto.html +reftest css/css-view-transitions/navigation/at-rule-opt-in-none-in-new.html +reftest css/css-view-transitions/navigation/at-rule-opt-in-none-in-old.html +reftest css/css-view-transitions/navigation/chromium-paint-holding-timeout.html +reftest css/css-view-transitions/navigation/navigation-auto-excludes-reload.html +reftest css/css-view-transitions/navigation/no-view-transition-with-cross-origin-redirect.sub.html +reftest css/css-view-transitions/navigation/opt-in-removed-during-transition.html +reftest css/css-view-transitions/navigation/pagereveal-finished-promise.html +reftest css/css-view-transitions/navigation/pagereveal-ready-promise.html +reftest css/css-view-transitions/navigation/pagereveal-setup-transition.html +reftest css/css-view-transitions/navigation/pageswap-fired-before-old-state-capture.html +reftest css/css-view-transitions/navigation/prerender-removed-during-navigation.html +reftest css/css-view-transitions/navigation/root-and-nested-element-transition.html +reftest css/css-view-transitions/navigation/root-element-transition-iframe-cross-origin.sub.html +reftest css/css-view-transitions/navigation/root-element-transition-iframe-with-startVT-on-main.html +reftest css/css-view-transitions/navigation/root-element-transition-iframe.html +reftest css/css-view-transitions/navigation/root-element-transition-no-opt-in-on-new.html +reftest css/css-view-transitions/navigation/root-element-transition-no-opt-in-on-old.html +reftest css/css-view-transitions/navigation/root-element-transition-opt-in-removed-on-new.html +reftest css/css-view-transitions/navigation/root-element-transition-opt-in-removed-on-old.html +reftest css/css-view-transitions/navigation/root-element-transition.html +reftest css/css-view-transitions/navigation/transition-to-prerender.html +reftest css/css-view-transitions/navigation/with-types/at-rule-opt-in-auto-with-types-mutable.html +reftest css/css-view-transitions/navigation/with-types/at-rule-opt-in-auto-with-types-no-cascade.html +reftest css/css-view-transitions/navigation/with-types/at-rule-opt-in-auto-with-types.html +reftest css/css-view-transitions/nested/adjust-transform-with-scale.tentative.html +reftest css/css-view-transitions/nested/adjust-transform.tenative.html +reftest css/css-view-transitions/nested/compute-explicit-name-direct.tentative.html +reftest css/css-view-transitions/nested/compute-explicit-name-nested-vt-names.tentative.html +reftest css/css-view-transitions/nested/compute-explicit-name-nested.tentative.html +reftest css/css-view-transitions/nested/compute-explicit-name-non-ancestor.tentative.html +reftest css/css-view-transitions/nested/compute-explicit-name-non-existent.tentative.html +reftest css/css-view-transitions/nested/compute-explicit-name-self.tentative.html +reftest css/css-view-transitions/nested/contain-direct.tentative.html +reftest css/css-view-transitions/nested/contain-nested.tentative.html +reftest css/css-view-transitions/nested/contain-on-self.tentative.html +reftest css/css-view-transitions/nested/nearest-direct.tentative.html +reftest css/css-view-transitions/nested/nearest-ignores-nearest-name.tentative.html +reftest css/css-view-transitions/nested/nearest-nested.tentative.html +reftest css/css-view-transitions/nested/nested-exit.tentative.html +reftest css/css-view-transitions/nested/nested-group-display-none.tentative.html +reftest css/css-view-transitions/nested/nested-group-in-pseudo-basic.tentative.html +reftest css/css-view-transitions/nested/normal-goes-up.tentative.html +reftest css/css-view-transitions/nested/render-element.tentative.html reftest css/css-view-transitions/new-and-old-sizes-match.html +reftest css/css-view-transitions/new-content-ancestor-clipped-2.html +reftest css/css-view-transitions/new-content-ancestor-clipped.html reftest css/css-view-transitions/new-content-captures-clip-path.html reftest css/css-view-transitions/new-content-captures-different-size.html reftest css/css-view-transitions/new-content-captures-opacity.html +reftest css/css-view-transitions/new-content-captures-positioned-spans.html reftest css/css-view-transitions/new-content-captures-root.html +reftest css/css-view-transitions/new-content-captures-spans.html +reftest css/css-view-transitions/new-content-changes-overflow-left.html +reftest css/css-view-transitions/new-content-changes-overflow.html reftest css/css-view-transitions/new-content-container-writing-modes.html reftest css/css-view-transitions/new-content-element-writing-modes.html +reftest css/css-view-transitions/new-content-escapes-clip-with-abspos-child.html +reftest css/css-view-transitions/new-content-flat-transform-ancestor.html +reftest css/css-view-transitions/new-content-from-root-display-none.html reftest css/css-view-transitions/new-content-has-scrollbars.html +reftest css/css-view-transitions/new-content-inline-with-offset-from-containing-block-clipped.html reftest css/css-view-transitions/new-content-intrinsic-aspect-ratio.html reftest css/css-view-transitions/new-content-is-empty-div.html +reftest css/css-view-transitions/new-content-is-inline.html reftest css/css-view-transitions/new-content-object-fit-fill.html reftest css/css-view-transitions/new-content-object-fit-none.html reftest css/css-view-transitions/new-content-object-view-box-clip-path-reference.html reftest css/css-view-transitions/new-content-object-view-box-clip-path.html reftest css/css-view-transitions/new-content-object-view-box-overflow-clipped.html reftest css/css-view-transitions/new-content-object-view-box-overflow.html +reftest css/css-view-transitions/new-content-preserve-3d-ancestor.html +reftest css/css-view-transitions/new-content-root-scrollbar-with-fixed-background.html reftest css/css-view-transitions/new-content-scaling.html +reftest css/css-view-transitions/new-content-transform-position-fixed.html +reftest css/css-view-transitions/new-content-with-object-view-box.html reftest css/css-view-transitions/new-content-with-overflow-zoomed.html reftest css/css-view-transitions/new-content-with-overflow.html reftest css/css-view-transitions/new-element-on-start.html reftest css/css-view-transitions/new-root-vertical-writing-mode.html +reftest css/css-view-transitions/no-named-elements.html +reftest css/css-view-transitions/no-painting-while-render-blocked.html reftest css/css-view-transitions/no-root-capture.html +reftest css/css-view-transitions/no-white-flash-before-activation.html reftest css/css-view-transitions/nothing-captured.html reftest css/css-view-transitions/object-view-box-new-image.html reftest css/css-view-transitions/object-view-box-old-image.html +reftest css/css-view-transitions/offscreen-element-modified-before-coming-onscreen.html reftest css/css-view-transitions/old-content-captures-clip-path.html reftest css/css-view-transitions/old-content-captures-different-size.html reftest css/css-view-transitions/old-content-captures-opacity.html reftest css/css-view-transitions/old-content-captures-root.html reftest css/css-view-transitions/old-content-container-writing-modes.html reftest css/css-view-transitions/old-content-element-writing-modes.html +reftest css/css-view-transitions/old-content-escapes-clip-with-abspos-child.html reftest css/css-view-transitions/old-content-has-scrollbars.html +reftest css/css-view-transitions/old-content-inline-with-offset-from-containing-block-clipped.html reftest css/css-view-transitions/old-content-intrinsic-aspect-ratio.html reftest css/css-view-transitions/old-content-is-empty-div.html +reftest css/css-view-transitions/old-content-is-inline.html reftest css/css-view-transitions/old-content-object-fit-fill.html reftest css/css-view-transitions/old-content-object-fit-none.html reftest css/css-view-transitions/old-content-object-view-box-clip-path-reference.html reftest css/css-view-transitions/old-content-object-view-box-clip-path.html reftest css/css-view-transitions/old-content-object-view-box-overflow.html +reftest css/css-view-transitions/old-content-root-scrollbar-with-fixed-background.html +reftest css/css-view-transitions/old-content-with-object-view-box.html reftest css/css-view-transitions/old-content-with-overflow-zoomed.html reftest css/css-view-transitions/old-content-with-overflow.html reftest css/css-view-transitions/old-root-vertical-writing-mode.html +reftest css/css-view-transitions/paint-holding-in-iframe.html +reftest css/css-view-transitions/pseudo-element-overflow-hidden.html +reftest css/css-view-transitions/pseudo-element-preserve-3d.html +reftest css/css-view-transitions/pseudo-rendering-invalidation.html +reftest css/css-view-transitions/pseudo-with-classes-entry.html +reftest css/css-view-transitions/pseudo-with-classes-exit.html +reftest css/css-view-transitions/pseudo-with-classes-match-ident.html +reftest css/css-view-transitions/pseudo-with-classes-match-multiple-wildcard.html +reftest css/css-view-transitions/pseudo-with-classes-match-multiple.html +reftest css/css-view-transitions/pseudo-with-classes-match-wildcard-no-star.html +reftest css/css-view-transitions/pseudo-with-classes-match-wildcard.html +reftest css/css-view-transitions/pseudo-with-classes-mismatch-ident.html +reftest css/css-view-transitions/pseudo-with-classes-mismatch-partial.html +reftest css/css-view-transitions/pseudo-with-classes-mismatch-wildcard.html +reftest css/css-view-transitions/pseudo-with-classes-multiple-vt-classes.html +reftest css/css-view-transitions/pseudo-with-classes-new-with-class-old-without.html +reftest css/css-view-transitions/pseudo-with-classes-old-with-class-new-without.html +reftest css/css-view-transitions/pseudo-with-classes-view-transition-group.html +reftest css/css-view-transitions/pseudo-with-classes-view-transition-image-pair.html +reftest css/css-view-transitions/reset-state-after-scrolled-view-transition.html reftest css/css-view-transitions/root-captured-as-different-tag.html -reftest css/css-view-transitions/root-scrollbar-with-fixed-background.html reftest css/css-view-transitions/root-style-change-during-animation.html reftest css/css-view-transitions/root-to-shared-animation-end.html reftest css/css-view-transitions/root-to-shared-animation-incoming.html reftest css/css-view-transitions/root-to-shared-animation-start.html +reftest css/css-view-transitions/rotated-cat-off-top-edge.html reftest css/css-view-transitions/rtl-with-scrollbar.html reftest css/css-view-transitions/scroller-child-abspos.html reftest css/css-view-transitions/scroller-child.html @@ -22472,9 +23724,63 @@ reftest css/css-view-transitions/scroller.html reftest css/css-view-transitions/set-current-time-transform.html reftest css/css-view-transitions/set-current-time.html reftest css/css-view-transitions/set-universal-specificity.html +reftest css/css-view-transitions/shadow-part-with-class-inside-shadow-important.html +reftest css/css-view-transitions/shadow-part-with-class-inside-shadow.html +reftest css/css-view-transitions/shadow-part-with-class.html +reftest css/css-view-transitions/shadow-part-with-name-nested.html +reftest css/css-view-transitions/shadow-part-with-name-overridden-by-important.html +reftest css/css-view-transitions/shadow-part-with-name.html +reftest css/css-view-transitions/sibling-frames-transition.html +reftest css/css-view-transitions/snapshot-containing-block-absolute.html +reftest css/css-view-transitions/snapshot-containing-block-includes-scrollbar-gutter.html +reftest css/css-view-transitions/snapshot-containing-block-static.html +reftest css/css-view-transitions/span-with-overflowing-text-and-box-decorations.html +reftest css/css-view-transitions/span-with-overflowing-text-hidden.html +reftest css/css-view-transitions/span-with-overflowing-text.html +reftest css/css-view-transitions/transform-origin-view-transition-group.html +reftest css/css-view-transitions/transformed-element-scroll-transform.html +reftest css/css-view-transitions/transition-in-empty-iframe.html reftest css/css-view-transitions/view-transition-name-is-backdrop-filter-root.html reftest css/css-view-transitions/view-transition-name-is-grouping.html +reftest css/css-view-transitions/view-transition-name-on-document-root.html +reftest css/css-view-transitions/view-transition-name-removed-mid-transition.html +reftest css/css-view-transitions/view-transition-types-match-early-mutation.html +reftest css/css-view-transitions/view-transition-types-match-early.html +reftest css/css-view-transitions/view-transition-types-match-late-mutation.html +reftest css/css-view-transitions/view-transition-types-matches.html +reftest css/css-view-transitions/view-transition-types-removed.html +reftest css/css-view-transitions/view-transition-types-reserved-mutation.html +reftest css/css-view-transitions/view-transition-types-reserved.html +reftest css/css-view-transitions/view-transition-types-stay.html +reftest css/css-view-transitions/web-animations-api-parse-pseudo-argument.html reftest css/css-view-transitions/web-animations-api.html +reftest css/css-view-transitions/writing-mode-container-resize.html +reftest css/css-viewport/width.html +reftest css/css-viewport/zoom/background-image.html +reftest css/css-viewport/zoom/basic.html +reftest css/css-viewport/zoom/border-spacing.html +reftest css/css-viewport/zoom/container-queries.html +reftest css/css-viewport/zoom/font-size.html +reftest css/css-viewport/zoom/iframe-zoom-nested.html +reftest css/css-viewport/zoom/iframe-zoom.sub.html +reftest css/css-viewport/zoom/image-intrinsic-size.html +reftest css/css-viewport/zoom/inherited-length.html +reftest css/css-viewport/zoom/inherited.html +reftest css/css-viewport/zoom/letter-spacing.html +reftest css/css-viewport/zoom/line-height.html +reftest css/css-viewport/zoom/list-style-image.html +reftest css/css-viewport/zoom/relative-units-from-parent.html +reftest css/css-viewport/zoom/stroke.html +reftest css/css-viewport/zoom/svg-path-simple.html +reftest css/css-viewport/zoom/svg-path.html +reftest css/css-viewport/zoom/svg-transform.html +reftest css/css-viewport/zoom/svg-viewBox.html +reftest css/css-viewport/zoom/svg.html +reftest css/css-viewport/zoom/text-indent.html +reftest css/css-viewport/zoom/text-shadow.html +reftest css/css-viewport/zoom/text-stroke-width.html +reftest css/css-viewport/zoom/text-underline-offset.html +reftest css/css-viewport/zoom/word-spacing.html reftest css/css-will-change/will-change-abspos-cb-001.html reftest css/css-will-change/will-change-abspos-cb-002.html reftest css/css-will-change/will-change-abspos-cb-003.html @@ -23093,17 +24399,38 @@ reftest css/css-writing-modes/float-vrl-006.xht reftest css/css-writing-modes/float-vrl-008.xht reftest css/css-writing-modes/float-vrl-010.xht reftest css/css-writing-modes/float-vrl-012.xht +reftest css/css-writing-modes/forms/button-appearance-native-horizontal.optional.html +reftest css/css-writing-modes/forms/button-appearance-native-vertical.optional.html +reftest css/css-writing-modes/forms/button-appearance-none-horizontal.optional.html +reftest css/css-writing-modes/forms/button-appearance-none-vertical.optional.html +reftest css/css-writing-modes/forms/checkbox-appearance-native-vertical-lr-baseline.optional.html +reftest css/css-writing-modes/forms/checkbox-appearance-native-vertical-rl-baseline.optional.html reftest css/css-writing-modes/forms/color-input-appearance-native-horizontal.optional.html reftest css/css-writing-modes/forms/color-input-appearance-native-vertical.optional.html reftest css/css-writing-modes/forms/color-input-appearance-none-horizontal.optional.html reftest css/css-writing-modes/forms/color-input-appearance-none-vertical.optional.html +reftest css/css-writing-modes/forms/date-input-appearance-native-horizontal.optional.html +reftest css/css-writing-modes/forms/date-input-appearance-native-vertical.optional.html +reftest css/css-writing-modes/forms/date-input-appearance-none-horizontal.optional.html +reftest css/css-writing-modes/forms/date-input-appearance-none-vertical.optional.html +reftest css/css-writing-modes/forms/file-input-horizontal.optional.html +reftest css/css-writing-modes/forms/file-input-vertical-rtl.optional.html +reftest css/css-writing-modes/forms/file-input-vertical.optional.html +reftest css/css-writing-modes/forms/meter-appearance-native-horizontal-rtl.optional.html reftest css/css-writing-modes/forms/meter-appearance-native-horizontal.optional.html +reftest css/css-writing-modes/forms/meter-appearance-native-vertical-rtl.optional.html reftest css/css-writing-modes/forms/meter-appearance-native-vertical.optional.html reftest css/css-writing-modes/forms/number-input-vertical-overflow.html +reftest css/css-writing-modes/forms/progress-appearance-native-horizontal-rtl.optional.html reftest css/css-writing-modes/forms/progress-appearance-native-horizontal.optional.html +reftest css/css-writing-modes/forms/progress-appearance-native-vertical-rtl.optional.html reftest css/css-writing-modes/forms/progress-appearance-native-vertical.optional.html +reftest css/css-writing-modes/forms/progress-appearance-none-horizontal-rtl.optional.html reftest css/css-writing-modes/forms/progress-appearance-none-horizontal.optional.html +reftest css/css-writing-modes/forms/progress-appearance-none-vertical-rtl.optional.html reftest css/css-writing-modes/forms/progress-appearance-none-vertical.optional.html +reftest css/css-writing-modes/forms/radio-appearance-native-vertical-lr-baseline.optional.html +reftest css/css-writing-modes/forms/radio-appearance-native-vertical-rl-baseline.optional.html reftest css/css-writing-modes/forms/range-input-appearance-native-horizontal-rtl.optional.html reftest css/css-writing-modes/forms/range-input-appearance-native-horizontal.optional.html reftest css/css-writing-modes/forms/range-input-appearance-native-vertical-rtl.optional.html @@ -23114,6 +24441,11 @@ reftest css/css-writing-modes/forms/range-input-appearance-none-vertical-rtl.opt reftest css/css-writing-modes/forms/range-input-appearance-none-vertical.optional.html reftest css/css-writing-modes/forms/range-input-vertical-ltr-painting.html reftest css/css-writing-modes/forms/range-input-vertical-rtl-painting.html +reftest css/css-writing-modes/forms/select-appearance-native-horizontal.optional.html +reftest css/css-writing-modes/forms/select-appearance-native-vertical.optional.html +reftest css/css-writing-modes/forms/select-appearance-none-horizontal.optional.html +reftest css/css-writing-modes/forms/select-appearance-none-vertical-lr.optional.html +reftest css/css-writing-modes/forms/select-appearance-none-vertical-rl.optional.html reftest css/css-writing-modes/forms/select-multiple-appearance-native-horizontal.optional.html reftest css/css-writing-modes/forms/select-multiple-appearance-native-vlr.optional.html reftest css/css-writing-modes/forms/select-multiple-appearance-native-vrl.optional.html @@ -23249,6 +24581,13 @@ reftest css/css-writing-modes/ortho-htb-alongside-vrl-floats-002.xht reftest css/css-writing-modes/ortho-htb-alongside-vrl-floats-006.xht reftest css/css-writing-modes/ortho-htb-alongside-vrl-floats-010.xht reftest css/css-writing-modes/ortho-htb-alongside-vrl-floats-014.xht +reftest css/css-writing-modes/orthogonal-root-resize-icb-001.html +reftest css/css-writing-modes/orthogonal-root-resize-icb-002.html +reftest css/css-writing-modes/orthogonal-root-resize-icb-003.html +reftest css/css-writing-modes/orthogonal-root-resize-icb-004.html +reftest css/css-writing-modes/orthogonal-root-resize-icb-005.html +reftest css/css-writing-modes/orthogonal-root-resize-icb-006.html +reftest css/css-writing-modes/orthogonal-root-resize-icb-007.html reftest css/css-writing-modes/outline-inline-block-vrl-006.html reftest css/css-writing-modes/outline-inline-vlr-006.html reftest css/css-writing-modes/outline-inline-vrl-006.html @@ -23480,6 +24819,8 @@ reftest css/css-writing-modes/text-combine-upright-inherit-all-001.html reftest css/css-writing-modes/text-combine-upright-inherit-all-002.html reftest css/css-writing-modes/text-combine-upright-layout-rules-001.html reftest css/css-writing-modes/text-combine-upright-line-breaking-rules-001.html +reftest css/css-writing-modes/text-combine-upright-rtl-001.html +reftest css/css-writing-modes/text-combine-upright-rtl-002.html reftest css/css-writing-modes/text-combine-upright-shadow.html reftest css/css-writing-modes/text-combine-upright-sideways-001.html reftest css/css-writing-modes/text-combine-upright-sideways-002.html @@ -23601,26 +24942,39 @@ reftest css/cssom-view/offsetTopLeft-inline.html reftest css/cssom-view/scrollTop-display-change.html reftest css/cssom-view/scrollingElement-quirks-dynamic-001.html reftest css/cssom-view/scrollingElement-quirks-dynamic-002.html +reftest css/cssom-view/window-scrollBy-display-change.html +reftest css/cssom/CSSStyleSheet-constructable-concat.html +reftest css/cssom/CSSStyleSheet-constructable-insertRule-base-uri.html reftest css/cssom/HTMLLinkElement-disabled-alternate.html reftest css/cssom/insertRule-from-script.html reftest css/cssom/medialist-dynamic-001.html reftest css/cssom/selectorText-modification-restyle-001.html reftest css/cssom/stylesheet-replacedata-dynamic.html +reftest css/filter-effects/backdrop-filter-backdrop-root-backdrop-filter.html +reftest css/filter-effects/backdrop-filter-backdrop-root-clip-path.html +reftest css/filter-effects/backdrop-filter-backdrop-root-filter.html +reftest css/filter-effects/backdrop-filter-backdrop-root-mix-blend-mode.html +reftest css/filter-effects/backdrop-filter-backdrop-root-opacity.html +reftest css/filter-effects/backdrop-filter-basic-blur.html reftest css/filter-effects/backdrop-filter-basic-opacity-2.html reftest css/filter-effects/backdrop-filter-basic-opacity.html reftest css/filter-effects/backdrop-filter-basic.html +reftest css/filter-effects/backdrop-filter-boundary.html +reftest css/filter-effects/backdrop-filter-clip-rect-2.html reftest css/filter-effects/backdrop-filter-clip-rect.html reftest css/filter-effects/backdrop-filter-clip-rounded-clip.html reftest css/filter-effects/backdrop-filter-clipped.html reftest css/filter-effects/backdrop-filter-containing-block.html reftest css/filter-effects/backdrop-filter-edge-behavior.html +reftest css/filter-effects/backdrop-filter-edge-clipping-2.html reftest css/filter-effects/backdrop-filter-edge-clipping.html +reftest css/filter-effects/backdrop-filter-edge-mirror.html +reftest css/filter-effects/backdrop-filter-edge-pixels-2.html reftest css/filter-effects/backdrop-filter-edge-pixels.html reftest css/filter-effects/backdrop-filter-fixed-clip.html reftest css/filter-effects/backdrop-filter-invalid.html reftest css/filter-effects/backdrop-filter-isolation-fixed.html reftest css/filter-effects/backdrop-filter-isolation-isolate.html -reftest css/filter-effects/backdrop-filter-isolation.html reftest css/filter-effects/backdrop-filter-opacity-rounded-clip.html reftest css/filter-effects/backdrop-filter-paint-order.html reftest css/filter-effects/backdrop-filter-plus-filter.html @@ -23629,7 +24983,9 @@ reftest css/filter-effects/backdrop-filter-plus-will-change-opacity.html reftest css/filter-effects/backdrop-filter-reference-filter.html reftest css/filter-effects/backdrop-filter-root-element.html reftest css/filter-effects/backdrop-filter-svg-background-image-blur.html +reftest css/filter-effects/backdrop-filter-svg-blur.html reftest css/filter-effects/backdrop-filter-svg-foreignObject.html +reftest css/filter-effects/backdrop-filter-svg.html reftest css/filter-effects/backdrop-filter-update.html reftest css/filter-effects/backdrop-filter-zero-size.html reftest css/filter-effects/backdrop-filters-brightness.html @@ -23645,6 +25001,7 @@ reftest css/filter-effects/backdrop-filters-sepia.html reftest css/filter-effects/background-image-blur-repaint.html reftest css/filter-effects/blur-clip-stacking-context-001.html reftest css/filter-effects/blur-clip-stacking-context-002.html +reftest css/filter-effects/blur-text.html reftest css/filter-effects/clip-under-filter-001.html reftest css/filter-effects/clip-under-filter-002.html reftest css/filter-effects/clip-under-filter-003.html @@ -23670,7 +25027,10 @@ reftest css/filter-effects/css-filters-animation-invert.html reftest css/filter-effects/css-filters-animation-opacity.html reftest css/filter-effects/css-filters-animation-saturate.html reftest css/filter-effects/css-filters-animation-sepia.html +reftest css/filter-effects/css-reference-large-svg-filter.html reftest css/filter-effects/drop-shadow-clipped-001.html +reftest css/filter-effects/drop-shadow-currentcolor-dynamic-001.html +reftest css/filter-effects/drop-shadow-currentcolor-dynamic-002.html reftest css/filter-effects/dynamic-filter-changes-001.html reftest css/filter-effects/effect-reference-add-hw-001.html reftest css/filter-effects/effect-reference-after-001.html @@ -23714,6 +25074,12 @@ reftest css/filter-effects/filter-function/filter-function-005.html reftest css/filter-effects/filter-function/filter-function-006.html reftest css/filter-effects/filter-function/filter-function-007.html reftest css/filter-effects/filter-function/filter-function-008.html +reftest css/filter-effects/filter-function/filter-function-conic-gradient.html +reftest css/filter-effects/filter-function/filter-function-linear-gradient.html +reftest css/filter-effects/filter-function/filter-function-radial-gradient.html +reftest css/filter-effects/filter-function/filter-function-repeating-conic-gradient.html +reftest css/filter-effects/filter-function/filter-function-repeating-linear-gradient.html +reftest css/filter-effects/filter-function/filter-function-repeating-radial-gradient.html reftest css/filter-effects/filter-grayscale-001.html reftest css/filter-effects/filter-grayscale-002.html reftest css/filter-effects/filter-grayscale-003.html @@ -23724,6 +25090,7 @@ reftest css/filter-effects/filter-invalid.html reftest css/filter-effects/filter-invert-001-test.html reftest css/filter-effects/filter-invert-002-test.html reftest css/filter-effects/filter-region-calc-001.html +reftest css/filter-effects/filter-region-html-content-viewport.tentative.html reftest css/filter-effects/filter-region-negative-positioned-child-001.html reftest css/filter-effects/filter-region-transformed-child-001.html reftest css/filter-effects/filter-region-transformed-composited-child-001.html @@ -23757,8 +25124,10 @@ reftest css/filter-effects/remove-filter-repaint.html reftest css/filter-effects/repaint-added-backdrop-filter.html reftest css/filter-effects/root-element-with-opacity-filter-001.html reftest css/filter-effects/svg-empty-container-with-filter-content-added.html +reftest css/filter-effects/svg-external-filter-resource.html reftest css/filter-effects/svg-feflood-001.html reftest css/filter-effects/svg-feimage-001.html +reftest css/filter-effects/svg-feimage-002.html reftest css/filter-effects/svg-feoffset-001.html reftest css/filter-effects/svg-filter-vs-clip-path.html reftest css/filter-effects/svg-filter-vs-mask.html @@ -23823,11 +25192,9 @@ reftest css/mediaqueries/aspect-ratio-003.html reftest css/mediaqueries/aspect-ratio-004.html reftest css/mediaqueries/aspect-ratio-005.html reftest css/mediaqueries/aspect-ratio-006.html -reftest css/mediaqueries/device-aspect-ratio-001.html reftest css/mediaqueries/device-aspect-ratio-002.html reftest css/mediaqueries/device-aspect-ratio-003.html reftest css/mediaqueries/device-aspect-ratio-004.html -reftest css/mediaqueries/device-aspect-ratio-005.html reftest css/mediaqueries/device-aspect-ratio-006.html reftest css/mediaqueries/min-width-001.xht reftest css/mediaqueries/min-width-tables-001.html @@ -23839,6 +25206,13 @@ reftest css/mediaqueries/mq-calc-005.html reftest css/mediaqueries/mq-calc-006.html reftest css/mediaqueries/mq-calc-007.html reftest css/mediaqueries/mq-calc-008.html +reftest css/mediaqueries/mq-calc-resolution.html +reftest css/mediaqueries/mq-calc-sign-function-001.html +reftest css/mediaqueries/mq-calc-sign-function-002.html +reftest css/mediaqueries/mq-calc-sign-function-003.html +reftest css/mediaqueries/mq-calc-sign-function-004.html +reftest css/mediaqueries/mq-calc-sign-function-005.html +reftest css/mediaqueries/mq-calc-sign-function-006.html reftest css/mediaqueries/mq-case-insensitive-001.html reftest css/mediaqueries/mq-deprecated-001.html reftest css/mediaqueries/mq-gamut-001.html @@ -23856,6 +25230,7 @@ reftest css/mediaqueries/mq-negative-range-002.html reftest css/mediaqueries/mq-range-001.html reftest css/mediaqueries/negation-001.html reftest css/mediaqueries/negation-002.html +reftest css/mediaqueries/prefers-color-scheme-svg-as-image.html reftest css/mediaqueries/prefers-color-scheme-svg-image-normal-with-meta-dark.html reftest css/mediaqueries/prefers-color-scheme-svg-image-normal-with-meta-light.html reftest css/mediaqueries/prefers-color-scheme-svg-image-normal.html @@ -23864,6 +25239,8 @@ reftest css/mediaqueries/relative-units-001.html reftest css/mediaqueries/relative-units-002.html reftest css/mediaqueries/relative-units-003.html reftest css/mediaqueries/relative-units-004.html +reftest css/mediaqueries/scripting-print-noscript.html +reftest css/mediaqueries/scripting-print-script.html reftest css/mediaqueries/viewport-script-dynamic.html reftest css/motion/animation/reftests/offset-distance-interpolation-001.html reftest css/motion/animation/reftests/offset-path-path-interpolation-001.html @@ -23882,7 +25259,10 @@ reftest css/motion/offset-distance-006.html reftest css/motion/offset-distance-007.html reftest css/motion/offset-distance-008.html reftest css/motion/offset-distance-009.html -reftest css/motion/offset-path-geometry-box.html +reftest css/motion/offset-path-coord-box-001.html +reftest css/motion/offset-path-coord-box-002.html +reftest css/motion/offset-path-coord-box-003.html +reftest css/motion/offset-path-coord-box-004.html reftest css/motion/offset-path-ray-001.html reftest css/motion/offset-path-ray-002.html reftest css/motion/offset-path-ray-003.html @@ -23892,15 +25272,66 @@ reftest css/motion/offset-path-ray-006.html reftest css/motion/offset-path-ray-007.html reftest css/motion/offset-path-ray-008.html reftest css/motion/offset-path-ray-009.html +reftest css/motion/offset-path-ray-010.html +reftest css/motion/offset-path-ray-011.html +reftest css/motion/offset-path-ray-012.html +reftest css/motion/offset-path-ray-013.html +reftest css/motion/offset-path-ray-014.html +reftest css/motion/offset-path-ray-015.html +reftest css/motion/offset-path-ray-016.html +reftest css/motion/offset-path-ray-017.html +reftest css/motion/offset-path-ray-018.html +reftest css/motion/offset-path-ray-019.html +reftest css/motion/offset-path-ray-020.html +reftest css/motion/offset-path-ray-021.html +reftest css/motion/offset-path-ray-022.html reftest css/motion/offset-path-ray-contain-001.html reftest css/motion/offset-path-ray-contain-002.html reftest css/motion/offset-path-ray-contain-003.html reftest css/motion/offset-path-ray-contain-004.html reftest css/motion/offset-path-ray-contain-005.html -reftest css/motion/offset-path-shape.html +reftest css/motion/offset-path-shape-circle-001.html +reftest css/motion/offset-path-shape-circle-002.html +reftest css/motion/offset-path-shape-circle-003.html +reftest css/motion/offset-path-shape-circle-004.html +reftest css/motion/offset-path-shape-circle-005.html +reftest css/motion/offset-path-shape-circle-006.html +reftest css/motion/offset-path-shape-circle-007.html +reftest css/motion/offset-path-shape-circle-008.html +reftest css/motion/offset-path-shape-ellipse-001.html +reftest css/motion/offset-path-shape-ellipse-002.html +reftest css/motion/offset-path-shape-ellipse-003.html +reftest css/motion/offset-path-shape-ellipse-004.html +reftest css/motion/offset-path-shape-ellipse-005.html +reftest css/motion/offset-path-shape-ellipse-006.html +reftest css/motion/offset-path-shape-ellipse-007.html +reftest css/motion/offset-path-shape-inset-001.html +reftest css/motion/offset-path-shape-inset-002.html +reftest css/motion/offset-path-shape-polygon-001.html +reftest css/motion/offset-path-shape-polygon-002.html +reftest css/motion/offset-path-shape-polygon-003.html +reftest css/motion/offset-path-shape-rect-001.html +reftest css/motion/offset-path-shape-rect-002.html +reftest css/motion/offset-path-shape-rect-003.html +reftest css/motion/offset-path-shape-shape-001.html +reftest css/motion/offset-path-shape-shape-002.html +reftest css/motion/offset-path-shape-shape-003.html +reftest css/motion/offset-path-shape-xywh-001.html +reftest css/motion/offset-path-shape-xywh-002.html +reftest css/motion/offset-path-shape-xywh-003.html reftest css/motion/offset-path-string-001.html reftest css/motion/offset-path-string-002.html -reftest css/motion/offset-path-url.html +reftest css/motion/offset-path-url-001.html +reftest css/motion/offset-path-url-002.html +reftest css/motion/offset-path-url-003.html +reftest css/motion/offset-path-url-004.html +reftest css/motion/offset-path-url-005.html +reftest css/motion/offset-path-url-006.html +reftest css/motion/offset-path-url-007.html +reftest css/motion/offset-path-url-008.html +reftest css/motion/offset-path-url-009.html +reftest css/motion/offset-path-url-010.html +reftest css/motion/offset-path-url-011.html reftest css/motion/offset-rotate-001.html reftest css/motion/offset-rotate-002.html reftest css/motion/offset-rotate-003.html @@ -23910,9 +25341,10 @@ reftest css/printing/animated-image-print-image-orientation-none.html reftest css/reference/pass_if_filler_text_match_bold.xht reftest css/reference/pass_if_filler_text_match_smallcaps.xht reftest css/reference/pass_if_filler_text_underlined.html -reftest css/selectors/any-link-dynamic-001.html +reftest css/selectors/case-insensitive-parent.html reftest css/selectors/child-indexed-no-parent.html reftest css/selectors/dir-pseudo-in-has.html +reftest css/selectors/dir-pseudo-update-document-element.html reftest css/selectors/dir-selector-auto-direction-change-001.html reftest css/selectors/dir-selector-change-001.html reftest css/selectors/dir-selector-change-002.html @@ -23930,6 +25362,11 @@ reftest css/selectors/dir-style-02b.html reftest css/selectors/dir-style-03a.html reftest css/selectors/dir-style-03b.html reftest css/selectors/dir-style-04.html +reftest css/selectors/featureless-001.html +reftest css/selectors/featureless-002.html +reftest css/selectors/featureless-003.html +reftest css/selectors/featureless-004.html +reftest css/selectors/featureless-005.html reftest css/selectors/first-letter-flag-001.html reftest css/selectors/first-line-bidi-001.html reftest css/selectors/first-line-bidi-002.html @@ -23953,24 +25390,70 @@ reftest css/selectors/focus-within-shadow-003.html reftest css/selectors/focus-within-shadow-004.html reftest css/selectors/focus-within-shadow-005.html reftest css/selectors/focus-within-shadow-006.html +reftest css/selectors/has-display-none-checked.html +reftest css/selectors/has-style-sharing-001.html +reftest css/selectors/has-style-sharing-002.html +reftest css/selectors/has-style-sharing-003.html +reftest css/selectors/has-style-sharing-004.html +reftest css/selectors/has-style-sharing-005.html +reftest css/selectors/has-style-sharing-006.html +reftest css/selectors/has-style-sharing-007.html +reftest css/selectors/has-style-sharing-pseudo-001.html +reftest css/selectors/has-style-sharing-pseudo-002.html +reftest css/selectors/has-style-sharing-pseudo-003.html +reftest css/selectors/has-style-sharing-pseudo-004.html +reftest css/selectors/has-style-sharing-pseudo-005.html +reftest css/selectors/has-style-sharing-pseudo-006.html +reftest css/selectors/has-style-sharing-pseudo-007.html +reftest css/selectors/has-style-sharing-pseudo-008.html reftest css/selectors/has-visited.html reftest css/selectors/historical-xmlid.xht reftest css/selectors/i18n/lang-pseudo-class-across-shadow-boundaries.html +reftest css/selectors/invalidation/any-link-attribute-removal.html reftest css/selectors/invalidation/class-id-attr.html reftest css/selectors/invalidation/dir-pseudo-class-in-has.html +reftest css/selectors/invalidation/has-append-first-node.html +reftest css/selectors/invalidation/has-pseudo-element.html reftest css/selectors/invalidation/lang-pseudo-class-in-has-document-element.html reftest css/selectors/invalidation/lang-pseudo-class-in-has-multiple-document-elements.html reftest css/selectors/invalidation/lang-pseudo-class-in-has-xhtml.xhtml reftest css/selectors/invalidation/lang-pseudo-class-in-has.html +reftest css/selectors/invalidation/negated-nth-child-when-ancestor-changes.html +reftest css/selectors/invalidation/negated-nth-last-child-when-ancestor-changes.html reftest css/selectors/invalidation/nth-child-containing-ancestor.html reftest css/selectors/invalidation/nth-child-in-shadow-root.html +reftest css/selectors/invalidation/nth-child-of-attr-largedom.html reftest css/selectors/invalidation/nth-child-of-attr.html +reftest css/selectors/invalidation/nth-child-of-class-prefix.html reftest css/selectors/invalidation/nth-child-of-class.html reftest css/selectors/invalidation/nth-child-of-has.html +reftest css/selectors/invalidation/nth-child-of-id-prefix.html +reftest css/selectors/invalidation/nth-child-of-ids.html reftest css/selectors/invalidation/nth-child-of-in-ancestor.html +reftest css/selectors/invalidation/nth-child-of-in-is.html +reftest css/selectors/invalidation/nth-child-of-in-shadow-root.html +reftest css/selectors/invalidation/nth-child-of-is.html +reftest css/selectors/invalidation/nth-child-of-pseudo-class.html reftest css/selectors/invalidation/nth-child-of-sibling.html reftest css/selectors/invalidation/nth-child-when-ancestor-changes.html reftest css/selectors/invalidation/nth-child-when-sibling-changes.html +reftest css/selectors/invalidation/nth-last-child-containing-ancestor.html +reftest css/selectors/invalidation/nth-last-child-in-shadow-root.html +reftest css/selectors/invalidation/nth-last-child-of-attr.html +reftest css/selectors/invalidation/nth-last-child-of-class-prefix.html +reftest css/selectors/invalidation/nth-last-child-of-class.html +reftest css/selectors/invalidation/nth-last-child-of-has.html +reftest css/selectors/invalidation/nth-last-child-of-id-prefix.html +reftest css/selectors/invalidation/nth-last-child-of-ids.html +reftest css/selectors/invalidation/nth-last-child-of-in-ancestor.html +reftest css/selectors/invalidation/nth-last-child-of-in-is.html +reftest css/selectors/invalidation/nth-last-child-of-in-shadow-root.html +reftest css/selectors/invalidation/nth-last-child-of-is.html +reftest css/selectors/invalidation/nth-last-child-of-pseudo-class.html +reftest css/selectors/invalidation/nth-last-child-of-sibling.html +reftest css/selectors/invalidation/nth-last-child-when-ancestor-changes.html +reftest css/selectors/invalidation/nth-last-child-when-sibling-changes.html +reftest css/selectors/invalidation/part-pseudo.html reftest css/selectors/invalidation/sheet-going-away-002.html reftest css/selectors/is-default-ns-001.html reftest css/selectors/is-default-ns-002.html @@ -23985,6 +25468,7 @@ reftest css/selectors/nth-child-and-nth-last-child.html reftest css/selectors/nth-child-of-attribute.html reftest css/selectors/nth-child-of-classname-002.html reftest css/selectors/nth-child-of-classname.html +reftest css/selectors/nth-child-of-complex-selector-many-children-2.html reftest css/selectors/nth-child-of-complex-selector-many-children.html reftest css/selectors/nth-child-of-complex-selector.html reftest css/selectors/nth-child-of-compound-selector.html @@ -23993,6 +25477,7 @@ reftest css/selectors/nth-child-of-nesting.html reftest css/selectors/nth-child-of-no-space-after-of.html reftest css/selectors/nth-child-of-not.html reftest css/selectors/nth-child-of-nth-child.html +reftest css/selectors/nth-child-of-pseudo.html reftest css/selectors/nth-child-of-tagname.html reftest css/selectors/nth-child-of-universal-selector.html reftest css/selectors/nth-child-specificity-1.html @@ -24133,11 +25618,38 @@ reftest css/selectors/selector-required-type-change-001.html reftest css/selectors/selector-required-type-change-002.html reftest css/selectors/selector-required.html reftest css/selectors/selector-structural-pseudo-root.html +reftest css/selectors/selectors-4/lang-000.html +reftest css/selectors/selectors-4/lang-001.html +reftest css/selectors/selectors-4/lang-002.html +reftest css/selectors/selectors-4/lang-003.html +reftest css/selectors/selectors-4/lang-004.html +reftest css/selectors/selectors-4/lang-005.html +reftest css/selectors/selectors-4/lang-006.html +reftest css/selectors/selectors-4/lang-007.html +reftest css/selectors/selectors-4/lang-008.html +reftest css/selectors/selectors-4/lang-009.html +reftest css/selectors/selectors-4/lang-010.html +reftest css/selectors/selectors-4/lang-011.html +reftest css/selectors/selectors-4/lang-012.html +reftest css/selectors/selectors-4/lang-013.html +reftest css/selectors/selectors-4/lang-014.html +reftest css/selectors/selectors-4/lang-015.html +reftest css/selectors/selectors-4/lang-016.html +reftest css/selectors/selectors-4/lang-017.html +reftest css/selectors/selectors-4/lang-018.html +reftest css/selectors/selectors-4/lang-019.html +reftest css/selectors/selectors-4/lang-020.html +reftest css/selectors/selectors-4/lang-021.html +reftest css/selectors/selectors-4/lang-022.html +reftest css/selectors/selectors-4/lang-023.html +reftest css/selectors/selectors-4/lang-024.html +reftest css/selectors/selectors-4/lang-025.html reftest css/selectors/selectors-attr-many.html reftest css/selectors/selectors-attr-white-space-001.html reftest css/selectors/selectors-empty-001.xml reftest css/selectors/selectors-namespace-001.xml reftest css/selectors/sharing-in-svg-use.html +reftest css/selectors/user-invalid-form-submission-invalidation.html reftest css/selectors/visited-inheritance.html reftest css/selectors/xml-class-selector.xml reftest custom-elements/form-associated/ElementInternals-reportValidity-bubble.html @@ -24161,9 +25673,9 @@ reftest density-size-correction/image-set-002.html reftest density-size-correction/image-set-003.html reftest density-size-correction/srcset-cross-origin.sub.html reftest density-size-correction/srcset.html -reftest document-policy/font-display/override-to-optional.tentative.html reftest dom/nodes/remove-from-shadow-host-and-adopt-into-iframe.html reftest dom/slot-recalc.html +reftest dom/xslt/large-cdata.html reftest dom/xslt/sort.html reftest encoding/eof-shift_jis.html reftest encoding/eof-utf-8-one.html @@ -24181,6 +25693,8 @@ reftest fetch/corb/img-svg-xml-decl.sub.html reftest fetch/http-cache/basic-auth-cache-test.html reftest fetch/orb/tentative/img-png-mislabeled-as-html.sub.html reftest fetch/orb/tentative/img-png-unlabeled.sub.html +reftest focus/focus-large-element-in-overflow-hidden-container.html +reftest focus/focus-visible-element-in-overflow-hidden-container.html reftest forced-colors-mode/backplate/forced-colors-mode-backplate-01.html reftest forced-colors-mode/backplate/forced-colors-mode-backplate-02.html reftest forced-colors-mode/backplate/forced-colors-mode-backplate-03.html @@ -24226,12 +25740,72 @@ reftest forced-colors-mode/forced-colors-mode-49.html reftest forced-colors-mode/forced-colors-mode-52.html reftest forced-colors-mode/forced-colors-mode-53.html reftest fullscreen/rendering/backdrop-iframe.html +reftest fullscreen/rendering/backdrop-inherit.html reftest fullscreen/rendering/backdrop-object.html reftest fullscreen/rendering/fullscreen-root-fills-page.html reftest html/browsers/sandboxing/sandbox-parse-noscript.html -reftest html/canvas/element/drawing-text-to-the-canvas/direction-inherit-rtl.html -reftest html/canvas/element/drawing-text-to-the-canvas/direction-ltr.html -reftest html/canvas/element/drawing-text-to-the-canvas/direction-rtl.html +reftest html/canvas/element/2d.text-outside-of-the-flat-tree.html +reftest html/canvas/element/compositing/colr-glyph-composition.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.dropShadow.tentative.html +reftest html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.html +reftest html/canvas/element/filters/2d.filter.layers.componentTransfer.discrete.html +reftest html/canvas/element/filters/2d.filter.layers.componentTransfer.gamma.html +reftest html/canvas/element/filters/2d.filter.layers.componentTransfer.identity.html +reftest html/canvas/element/filters/2d.filter.layers.componentTransfer.linear.html +reftest html/canvas/element/filters/2d.filter.layers.componentTransfer.table.html +reftest html/canvas/element/filters/2d.filter.layers.dropShadow.html +reftest html/canvas/element/filters/2d.filter.layers.gaussianBlur.html +reftest html/canvas/element/layers/2d.layer.anisotropic-blur.isotropic.html +reftest html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-x.html +reftest html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-y.html +reftest html/canvas/element/layers/2d.layer.anisotropic-blur.x-only.html +reftest html/canvas/element/layers/2d.layer.anisotropic-blur.y-only.html +reftest html/canvas/element/layers/2d.layer.blur-from-outside-canvas.no-clipping.html +reftest html/canvas/element/layers/2d.layer.blur-from-outside-canvas.with-clipping.html +reftest html/canvas/element/layers/2d.layer.clearRect.full.html +reftest html/canvas/element/layers/2d.layer.clearRect.partial.html +reftest html/canvas/element/layers/2d.layer.clip-inside-and-outside.html +reftest html/canvas/element/layers/2d.layer.clip-inside.html +reftest html/canvas/element/layers/2d.layer.clip-outside.html +reftest html/canvas/element/layers/2d.layer.cross-layer-paths.html +reftest html/canvas/element/layers/2d.layer.css-filters.blur-and-shadow.html +reftest html/canvas/element/layers/2d.layer.css-filters.blur.html +reftest html/canvas/element/layers/2d.layer.css-filters.shadow.html +reftest html/canvas/element/layers/2d.layer.ctm.ctx-filter.html +reftest html/canvas/element/layers/2d.layer.ctm.filter.html +reftest html/canvas/element/layers/2d.layer.ctm.resetTransform.html +reftest html/canvas/element/layers/2d.layer.ctm.setTransform.html +reftest html/canvas/element/layers/2d.layer.ctm.shadow-in-transformed-layer.html +reftest html/canvas/element/layers/2d.layer.drawImage.html +reftest html/canvas/element/layers/2d.layer.flush-on-frame-presentation.html +reftest html/canvas/element/layers/2d.layer.global-states.ctx-filter.no-transform.html +reftest html/canvas/element/layers/2d.layer.global-states.ctx-filter.rotation.html +reftest html/canvas/element/layers/2d.layer.global-states.filter.ctx-filter.no-transform.html +reftest html/canvas/element/layers/2d.layer.global-states.filter.ctx-filter.rotation.html +reftest html/canvas/element/layers/2d.layer.global-states.filter.no-cxt-filter.no-transform.html +reftest html/canvas/element/layers/2d.layer.global-states.filter.no-cxt-filter.rotation.html +reftest html/canvas/element/layers/2d.layer.global-states.no-cxt-filter.no-transform.html +reftest html/canvas/element/layers/2d.layer.global-states.no-cxt-filter.rotation.html +reftest html/canvas/element/layers/2d.layer.globalCompositeOperation.html +reftest html/canvas/element/layers/2d.layer.nested-ctx-filter.html +reftest html/canvas/element/layers/2d.layer.nested-filters.html +reftest html/canvas/element/layers/2d.layer.nested.html +reftest html/canvas/element/layers/2d.layer.non-invertible-matrix.html +reftest html/canvas/element/layers/2d.layer.non-invertible-matrix.shadow.html +reftest html/canvas/element/layers/2d.layer.non-invertible-matrix.with-render-states-and-filter.html +reftest html/canvas/element/layers/2d.layer.opaque-canvas.html +reftest html/canvas/element/layers/2d.layer.reset.html +reftest html/canvas/element/layers/2d.layer.restore-style.html +reftest html/canvas/element/layers/2d.layer.several-complex.html +reftest html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.html +reftest html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.long-distance.html +reftest html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.html +reftest html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.short-distance.html reftest html/canvas/element/manual/building-paths/canvas_complexshapes_arcto_001.htm reftest html/canvas/element/manual/building-paths/canvas_complexshapes_beziercurveto_001.htm reftest html/canvas/element/manual/compositing/canvas_compositing_globalcompositeoperation_001.htm @@ -24252,16 +25826,7 @@ reftest html/canvas/element/manual/drawing-images-to-the-canvas/image-orientatio reftest html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-element-swap-width-height.tentative.html reftest html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-element.tentative.html reftest html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-with-src-rect.tentative.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.disconnected.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.condensed.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.expanded.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.extra-condensed.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.extra-expanded.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.normal.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.semi-condensed.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.semi-expanded.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.ultra-condensed.html -reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.fontStretch.ultra-expanded.html +reftest html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.disconnected-font-size-math.html reftest html/canvas/element/manual/fill-and-stroke-styles/conic-gradient-rotation.html reftest html/canvas/element/manual/fill-and-stroke-styles/conic-gradient.html reftest html/canvas/element/manual/filters/canvas-fillStyle-opacity.html @@ -24272,6 +25837,7 @@ reftest html/canvas/element/manual/filters/canvas-filter-shadow-and-properties.h reftest html/canvas/element/manual/filters/canvas-filter-shadow.html reftest html/canvas/element/manual/filters/canvas-globalAlpha.html reftest html/canvas/element/manual/filters/canvas-opacity-blend-modes.html +reftest html/canvas/element/manual/filters/svg-filter-lh-rlh.html reftest html/canvas/element/manual/filters/tentative/canvas-filter-object-blur.html reftest html/canvas/element/manual/filters/tentative/canvas-filter-object-component-transfer.html reftest html/canvas/element/manual/filters/tentative/canvas-filter-object-convolve-matrix.html @@ -24282,26 +25848,23 @@ reftest html/canvas/element/manual/imagebitmap/imageBitmap-from-imageData-no-ima reftest html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap-flipped.html reftest html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap-webgl.html reftest html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap.html -reftest html/canvas/element/manual/layers/layers-alpha-filter-globalcompositeoperation.html -reftest html/canvas/element/manual/layers/layers-alpha-filter-shadow.html -reftest html/canvas/element/manual/layers/layers-alpha-filter.html -reftest html/canvas/element/manual/layers/layers-alpha-shadow.html -reftest html/canvas/element/manual/layers/layers-alpha.html -reftest html/canvas/element/manual/layers/layers-endlayer-noop.html -reftest html/canvas/element/manual/layers/layers-filter-globalcompositeoperation.html -reftest html/canvas/element/manual/layers/layers-filter-shadow.html -reftest html/canvas/element/manual/layers/layers-filter.html -reftest html/canvas/element/manual/layers/layers-globalcompositeoperation.html -reftest html/canvas/element/manual/layers/layers-loneendlayer.html -reftest html/canvas/element/manual/layers/layers-nested.html -reftest html/canvas/element/manual/layers/layers-restorestyle.html -reftest html/canvas/element/manual/layers/layers-several-complex.html -reftest html/canvas/element/manual/layers/layers-shadow.html +reftest html/canvas/element/manual/layers/unclosed-layers.html +reftest html/canvas/element/manual/layers/unclosed-nested-layers.html reftest html/canvas/element/manual/line-styles/canvas_linestyles_linecap_001.htm reftest html/canvas/element/manual/line-styles/lineto_a.html reftest html/canvas/element/manual/shadows/canvas_shadows_002.htm reftest html/canvas/element/manual/shadows/canvas_shadows_system_colors.html -reftest html/canvas/element/manual/text-styles/canvas_text_font_001.htm +reftest html/canvas/element/manual/text/canvas.2d.disconnected.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.condensed.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.expanded.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.extra-condensed.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.extra-expanded.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.normal.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.semi-condensed.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.semi-expanded.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.ultra-condensed.html +reftest html/canvas/element/manual/text/canvas.2d.fontStretch.ultra-expanded.html +reftest html/canvas/element/manual/text/canvas_text_font_001.htm reftest html/canvas/element/manual/the-canvas-state/canvas_state_restore_001.htm reftest html/canvas/element/manual/transformations/canvas_transformations_reset_001.html reftest html/canvas/element/manual/transformations/canvas_transformations_scale_001.htm @@ -24310,13 +25873,237 @@ reftest html/canvas/element/manual/unclosed-canvas-1.htm reftest html/canvas/element/manual/unclosed-canvas-2.htm reftest html/canvas/element/manual/unclosed-canvas-3.htm reftest html/canvas/element/manual/unclosed-canvas-4.htm +reftest html/canvas/element/reset/2d.reset.after-rasterization.html +reftest html/canvas/element/reset/2d.reset.render.drop_shadow.html +reftest html/canvas/element/reset/2d.reset.render.global_composite_operation.html +reftest html/canvas/element/reset/2d.reset.render.line.html +reftest html/canvas/element/reset/2d.reset.render.misc.html +reftest html/canvas/element/reset/2d.reset.render.miter_limit.html +reftest html/canvas/element/reset/2d.reset.render.text.html +reftest html/canvas/element/reset/2d.reset.state.clip.html +reftest html/canvas/element/text/2d.text.drawing.style.reset.fontKerning.none2.html +reftest html/canvas/element/text/2d.text.fontVariantCaps.after.reset.font.html +reftest html/canvas/element/text/2d.text.fontVariantCaps1.html +reftest html/canvas/element/text/2d.text.fontVariantCaps3.html +reftest html/canvas/element/text/2d.text.fontVariantCaps4.html +reftest html/canvas/element/text/2d.text.fontVariantCaps5.html +reftest html/canvas/element/text/2d.text.fontVariantCaps6.html +reftest html/canvas/element/text/2d.text.writingmode.html +reftest html/canvas/element/text/direction-inherit-rtl.html +reftest html/canvas/element/text/direction-ltr.html +reftest html/canvas/element/text/direction-rtl.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.html +reftest html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.discrete.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.discrete.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.gamma.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.gamma.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.identity.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.identity.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.linear.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.linear.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.table.html +reftest html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.table.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.dropShadow.html +reftest html/canvas/offscreen/filters/2d.filter.layers.dropShadow.w.html +reftest html/canvas/offscreen/filters/2d.filter.layers.gaussianBlur.html +reftest html/canvas/offscreen/filters/2d.filter.layers.gaussianBlur.w.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic.w.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x.w.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y.w.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only.w.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only.html +reftest html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only.w.html +reftest html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping.html +reftest html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping.w.html +reftest html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping.html +reftest html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping.w.html +reftest html/canvas/offscreen/layers/2d.layer.clearRect.full.html +reftest html/canvas/offscreen/layers/2d.layer.clearRect.full.w.html +reftest html/canvas/offscreen/layers/2d.layer.clearRect.partial.html +reftest html/canvas/offscreen/layers/2d.layer.clearRect.partial.w.html +reftest html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside.html +reftest html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside.w.html +reftest html/canvas/offscreen/layers/2d.layer.clip-inside.html +reftest html/canvas/offscreen/layers/2d.layer.clip-inside.w.html +reftest html/canvas/offscreen/layers/2d.layer.clip-outside.html +reftest html/canvas/offscreen/layers/2d.layer.clip-outside.w.html +reftest html/canvas/offscreen/layers/2d.layer.cross-layer-paths.html +reftest html/canvas/offscreen/layers/2d.layer.cross-layer-paths.w.html +reftest html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow.html +reftest html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow.w.html +reftest html/canvas/offscreen/layers/2d.layer.css-filters.blur.html +reftest html/canvas/offscreen/layers/2d.layer.css-filters.blur.w.html +reftest html/canvas/offscreen/layers/2d.layer.css-filters.shadow.html +reftest html/canvas/offscreen/layers/2d.layer.css-filters.shadow.w.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.ctx-filter.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.ctx-filter.w.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.filter.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.filter.w.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.resetTransform.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.resetTransform.w.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.setTransform.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.setTransform.w.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.shadow-in-transformed-layer.html +reftest html/canvas/offscreen/layers/2d.layer.ctm.shadow-in-transformed-layer.w.html +reftest html/canvas/offscreen/layers/2d.layer.drawImage.html +reftest html/canvas/offscreen/layers/2d.layer.drawImage.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.ctx-filter.no-transform.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.ctx-filter.no-transform.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.ctx-filter.rotation.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.ctx-filter.rotation.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.ctx-filter.no-transform.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.ctx-filter.no-transform.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.ctx-filter.rotation.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.ctx-filter.rotation.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.no-cxt-filter.no-transform.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.no-cxt-filter.no-transform.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.no-cxt-filter.rotation.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.filter.no-cxt-filter.rotation.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.no-cxt-filter.no-transform.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.no-cxt-filter.no-transform.w.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.no-cxt-filter.rotation.html +reftest html/canvas/offscreen/layers/2d.layer.global-states.no-cxt-filter.rotation.w.html +reftest html/canvas/offscreen/layers/2d.layer.globalCompositeOperation.html +reftest html/canvas/offscreen/layers/2d.layer.globalCompositeOperation.w.html +reftest html/canvas/offscreen/layers/2d.layer.nested-ctx-filter.html +reftest html/canvas/offscreen/layers/2d.layer.nested-ctx-filter.w.html +reftest html/canvas/offscreen/layers/2d.layer.nested-filters.html +reftest html/canvas/offscreen/layers/2d.layer.nested-filters.w.html +reftest html/canvas/offscreen/layers/2d.layer.nested.html +reftest html/canvas/offscreen/layers/2d.layer.nested.w.html +reftest html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.html +reftest html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.shadow.html +reftest html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.shadow.w.html +reftest html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.w.html +reftest html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.with-render-states-and-filter.html +reftest html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.with-render-states-and-filter.w.html +reftest html/canvas/offscreen/layers/2d.layer.opaque-canvas.html +reftest html/canvas/offscreen/layers/2d.layer.opaque-canvas.w.html +reftest html/canvas/offscreen/layers/2d.layer.reset.html +reftest html/canvas/offscreen/layers/2d.layer.reset.w.html +reftest html/canvas/offscreen/layers/2d.layer.restore-style.html +reftest html/canvas/offscreen/layers/2d.layer.restore-style.w.html +reftest html/canvas/offscreen/layers/2d.layer.several-complex.html +reftest html/canvas/offscreen/layers/2d.layer.several-complex.w.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.w.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance.w.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.w.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance.html +reftest html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance.w.html +reftest html/canvas/offscreen/manual/layers/unclosed-layers.html +reftest html/canvas/offscreen/manual/layers/unclosed-layers.w.html +reftest html/canvas/offscreen/manual/layers/unclosed-nested-layers.html +reftest html/canvas/offscreen/manual/layers/unclosed-nested-layers.w.html +reftest html/canvas/offscreen/reset/2d.reset.after-rasterization.html +reftest html/canvas/offscreen/reset/2d.reset.after-rasterization.w.html +reftest html/canvas/offscreen/reset/2d.reset.render.drop_shadow.html +reftest html/canvas/offscreen/reset/2d.reset.render.drop_shadow.w.html +reftest html/canvas/offscreen/reset/2d.reset.render.global_composite_operation.html +reftest html/canvas/offscreen/reset/2d.reset.render.global_composite_operation.w.html +reftest html/canvas/offscreen/reset/2d.reset.render.line.html +reftest html/canvas/offscreen/reset/2d.reset.render.line.w.html +reftest html/canvas/offscreen/reset/2d.reset.render.misc.html +reftest html/canvas/offscreen/reset/2d.reset.render.misc.w.html +reftest html/canvas/offscreen/reset/2d.reset.render.miter_limit.html +reftest html/canvas/offscreen/reset/2d.reset.render.miter_limit.w.html +reftest html/canvas/offscreen/reset/2d.reset.render.text.html +reftest html/canvas/offscreen/reset/2d.reset.render.text.w.html +reftest html/canvas/offscreen/reset/2d.reset.state.clip.html +reftest html/canvas/offscreen/reset/2d.reset.state.clip.w.html +reftest html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none2.html +reftest html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none2.w.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps.after.reset.font.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps.after.reset.font.w.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps1.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps1.w.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps3.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps3.w.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps4.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps4.w.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps5.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps5.w.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps6.html +reftest html/canvas/offscreen/text/2d.text.fontVariantCaps6.w.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.condensed.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.expanded.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.extra-condensed.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.extra-expanded.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.normal.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.semi-condensed.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.semi-expanded.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.ultra-condensed.html +reftest html/canvas/offscreen/text/canvas.2d.fontStretch.ultra-expanded.html reftest html/dom/directionality/bdi-element-invalid-dir.html +reftest html/dom/elements/global-attributes/dir-auto-dynamic-simple-dataChange.html +reftest html/dom/elements/global-attributes/dir-auto-dynamic-simple-replace.html +reftest html/dom/elements/global-attributes/dir-auto-dynamic-simple-textContent.html +reftest html/dom/elements/global-attributes/dir-shadow-01.html +reftest html/dom/elements/global-attributes/dir-shadow-02.html +reftest html/dom/elements/global-attributes/dir-shadow-03.html +reftest html/dom/elements/global-attributes/dir-shadow-04.html +reftest html/dom/elements/global-attributes/dir-shadow-05.html +reftest html/dom/elements/global-attributes/dir-shadow-06.html +reftest html/dom/elements/global-attributes/dir-shadow-07.html +reftest html/dom/elements/global-attributes/dir-shadow-08.html +reftest html/dom/elements/global-attributes/dir-shadow-09.html +reftest html/dom/elements/global-attributes/dir-shadow-10.html +reftest html/dom/elements/global-attributes/dir-shadow-11.html +reftest html/dom/elements/global-attributes/dir-shadow-12.html +reftest html/dom/elements/global-attributes/dir-shadow-13.html +reftest html/dom/elements/global-attributes/dir-shadow-14.html +reftest html/dom/elements/global-attributes/dir-shadow-15.html +reftest html/dom/elements/global-attributes/dir-shadow-16.html +reftest html/dom/elements/global-attributes/dir-shadow-17.html +reftest html/dom/elements/global-attributes/dir-shadow-18.html +reftest html/dom/elements/global-attributes/dir-shadow-19.html +reftest html/dom/elements/global-attributes/dir-shadow-20.html +reftest html/dom/elements/global-attributes/dir-shadow-21.html +reftest html/dom/elements/global-attributes/dir-shadow-22.html +reftest html/dom/elements/global-attributes/dir-shadow-23.html +reftest html/dom/elements/global-attributes/dir-shadow-24.html +reftest html/dom/elements/global-attributes/dir-shadow-25.html +reftest html/dom/elements/global-attributes/dir-shadow-26.html +reftest html/dom/elements/global-attributes/dir-shadow-27.html +reftest html/dom/elements/global-attributes/dir-shadow-28.html +reftest html/dom/elements/global-attributes/dir-shadow-29.html +reftest html/dom/elements/global-attributes/dir-shadow-30.html +reftest html/dom/elements/global-attributes/dir-shadow-31.html +reftest html/dom/elements/global-attributes/dir-shadow-32.html +reftest html/dom/elements/global-attributes/dir-shadow-33.html +reftest html/dom/elements/global-attributes/dir-shadow-34.html +reftest html/dom/elements/global-attributes/dir-shadow-35.html +reftest html/dom/elements/global-attributes/dir-shadow-36.html +reftest html/dom/elements/global-attributes/dir-shadow-37.html +reftest html/dom/elements/global-attributes/dir-shadow-38.html +reftest html/dom/elements/global-attributes/dir-shadow-39.html +reftest html/dom/elements/global-attributes/dir-shadow-40.html +reftest html/dom/elements/global-attributes/dir-shadow-41.html +reftest html/dom/elements/global-attributes/dir-shadow-42.html reftest html/dom/elements/global-attributes/dir_auto-EN-L.html reftest html/dom/elements/global-attributes/dir_auto-EN-R.html reftest html/dom/elements/global-attributes/dir_auto-L.html reftest html/dom/elements/global-attributes/dir_auto-N-EN-L.html reftest html/dom/elements/global-attributes/dir_auto-N-EN-R.html -reftest html/dom/elements/global-attributes/dir_auto-N-EN-ref.html reftest html/dom/elements/global-attributes/dir_auto-N-EN.html reftest html/dom/elements/global-attributes/dir_auto-N-L.html reftest html/dom/elements/global-attributes/dir_auto-N-R.html @@ -24413,8 +26200,13 @@ reftest html/editing/the-hidden-attribute/hidden-1e.html reftest html/editing/the-hidden-attribute/hidden-1f.html reftest html/editing/the-hidden-attribute/hidden-1g.html reftest html/editing/the-hidden-attribute/hidden-2.svg +reftest html/editing/the-hidden-attribute/hidden-until-found-001.html +reftest html/editing/the-hidden-attribute/hidden-until-found-004.html +reftest html/editing/the-hidden-attribute/hidden-until-found-005.html +reftest html/editing/the-hidden-attribute/hidden-until-found-007.html reftest html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive.html reftest html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-min-intrinsic-size.html +reftest html/rendering/bidi-rendering/slot-no-isolate-001.html reftest html/rendering/bindings/the-button-element/button-type-menu-historical.html reftest html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type.html reftest html/rendering/bindings/the-select-element-0/option-label.html @@ -24430,6 +26222,7 @@ reftest html/rendering/non-replaced-elements/form-controls/input-placeholder-lin reftest html/rendering/non-replaced-elements/form-controls/select-sizing-001.html reftest html/rendering/non-replaced-elements/form-controls/text-transform.html reftest html/rendering/non-replaced-elements/form-controls/toggle-display.html +reftest html/rendering/non-replaced-elements/lists/dir-type.html reftest html/rendering/non-replaced-elements/lists/li-type-supported-xhtml.xhtml reftest html/rendering/non-replaced-elements/lists/li-type-supported.html reftest html/rendering/non-replaced-elements/lists/li-type-unsupported-lower-alpha.html @@ -24468,6 +26261,7 @@ reftest html/rendering/non-replaced-elements/tables/table-border-2.html reftest html/rendering/non-replaced-elements/tables/table-border-3q.html reftest html/rendering/non-replaced-elements/tables/table-border-3s.html reftest html/rendering/non-replaced-elements/tables/table-border-presentational-hints-ascii-case-insensitive.html +reftest html/rendering/non-replaced-elements/tables/table-bordercolor-001.html reftest html/rendering/non-replaced-elements/tables/table-cell-nowrap-with-fixed-width.html reftest html/rendering/non-replaced-elements/tables/table-cell-width-s.html reftest html/rendering/non-replaced-elements/tables/table-cell-width.html @@ -24498,6 +26292,7 @@ reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fi reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-overflow-hidden.html reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-overflow.html reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-painting-order.html +reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-resize.html reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-transform-translatez.html reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-vertical.html reftest html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/grid-template-propagation.html @@ -24582,6 +26377,7 @@ reftest html/rendering/replaced-elements/the-select-element/select-1-block-size- reftest html/rendering/replaced-elements/the-select-element/select-1-block-size-001.html reftest html/rendering/replaced-elements/the-select-element/select-1-block-size.html reftest html/rendering/replaced-elements/the-select-element/select-1-line-height.html +reftest html/rendering/replaced-elements/the-select-element/select-button-min-height-001.html reftest html/rendering/replaced-elements/the-select-element/select-empty.html reftest html/rendering/replaced-elements/the-select-element/select-intrinsic-option-font-size.html reftest html/rendering/replaced-elements/the-select-element/select-intrinsic-text-transform.html @@ -24593,7 +26389,12 @@ reftest html/rendering/replaced-elements/the-textarea-element/textarea-padding-i reftest html/rendering/the-css-user-agent-style-sheet-and-presentational-hints/body-bgcolor-attribute-change.html reftest html/rendering/the-details-element/details-after.html reftest html/rendering/the-details-element/details-before.html -reftest html/rendering/the-details-element/details-display-property-is-ignored.html +reftest html/rendering/the-details-element/details-display-type-001-ref.html +reftest html/rendering/the-details-element/details-display-type-001.html +reftest html/rendering/the-details-element/details-display-type-002.html +reftest html/rendering/the-details-element/details-pseudo-elements-001.html +reftest html/rendering/the-details-element/details-pseudo-elements-002.html +reftest html/rendering/the-details-element/details-pseudo-elements-003.html reftest html/rendering/the-details-element/details-revert.html reftest html/rendering/the-details-element/summary-display-flex.html reftest html/rendering/the-details-element/summary-display-grid.html @@ -24609,14 +26410,27 @@ reftest html/rendering/widgets/appearance/appearance-transition-001.html reftest html/rendering/widgets/appearance/appearance-transition-002.html reftest html/rendering/widgets/appearance/appearance-transition-003.html reftest html/rendering/widgets/button-layout/anonymous-button-content-box.html +reftest html/rendering/widgets/button-layout/block-in-inline.html +reftest html/rendering/widgets/button-layout/button-dynamic-content.html +reftest html/rendering/widgets/button-layout/display-none-or-contents.html reftest html/rendering/widgets/button-layout/inline-level.html +reftest html/rendering/widgets/button-layout/input-type-button-clip.html reftest html/rendering/widgets/button-layout/input-type-button-newline-2.html reftest html/rendering/widgets/button-layout/input-type-button-newline.html reftest html/rendering/widgets/button-layout/propagate-text-decoration.html reftest html/rendering/widgets/input-checkbox-disabled-checked.html +reftest html/rendering/widgets/input-checkbox-no-centering.html +reftest html/rendering/widgets/input-checkbox-switch-indeterminate.tentative.html +reftest html/rendering/widgets/input-checkbox-switch-rtl.tentative.html +reftest html/rendering/widgets/input-checkbox-switch.tentative.html +reftest html/rendering/widgets/input-checkbox-zero-size.html +reftest html/rendering/widgets/input-date-baseline-min-height.html reftest html/rendering/widgets/input-date-baseline.html reftest html/rendering/widgets/input-date-content-size.html +reftest html/rendering/widgets/input-number-text-size.tentative.html +reftest html/rendering/widgets/input-password-background-suppresses-appearance.html reftest html/rendering/widgets/input-radio-disabled-checked.html +reftest html/rendering/widgets/input-radio-no-centering.html reftest html/rendering/widgets/input-time-content-size.html reftest html/rendering/widgets/the-select-element/option-add-label-quirks.html reftest html/rendering/widgets/the-select-element/option-add-label.html @@ -24629,6 +26443,7 @@ reftest html/rendering/widgets/the-select-element/option-rm-label.html reftest html/rendering/widgets/the-select-element/select-invalidation.html reftest html/rendering/widgets/the-select-element/select-size-001.html reftest html/rendering/widgets/the-select-element/select-size-002.html +reftest html/select/select-capitalize-sizing.html reftest html/semantics/document-metadata/the-link-element/link-rel-attribute-ascii-case-insensitive.html reftest html/semantics/document-metadata/the-link-element/link-type-attribute.html reftest html/semantics/document-metadata/the-link-element/stylesheet-change-href.html @@ -24651,6 +26466,7 @@ reftest html/semantics/embedded-content/the-embed-element/embed-represent-nothin reftest html/semantics/embedded-content/the-embed-element/embed-represent-nothing-03.html reftest html/semantics/embedded-content/the-embed-element/embed-represent-nothing-04.html reftest html/semantics/embedded-content/the-iframe-element/iframe-initially-empty-is-updated.html +reftest html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-viewport-001.html reftest html/semantics/embedded-content/the-iframe-element/iframe-modify-scrolling-attr-to-yes.html reftest html/semantics/embedded-content/the-iframe-element/iframe-with-base.html reftest html/semantics/embedded-content/the-img-element/adopt-from-image-document.html @@ -24665,6 +26481,10 @@ reftest html/semantics/embedded-content/the-img-element/image-loading-lazy-slow- reftest html/semantics/embedded-content/the-img-element/image-loading-lazy-slow.html reftest html/semantics/embedded-content/the-img-element/image-loading-subpixel-clip.html reftest html/semantics/embedded-content/the-img-element/img-with-containment-and-size.html +reftest html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering-2.html +reftest html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering-3.html +reftest html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering-dynamic.html +reftest html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering.html reftest html/semantics/embedded-content/the-img-element/sizes/sizes-dynamic-001.html reftest html/semantics/embedded-content/the-img-element/sizes/sizes-dynamic-002.html reftest html/semantics/embedded-content/the-img-element/svg-img-with-external-stylesheet.html @@ -24675,10 +26495,14 @@ reftest html/semantics/embedded-content/the-video-element/video_content_text.htm reftest html/semantics/embedded-content/the-video-element/video_dynamic_poster_absolute.htm reftest html/semantics/embedded-content/the-video-element/video_dynamic_poster_relative.htm reftest html/semantics/embedded-content/the-video-element/video_initially_paused.html +reftest html/semantics/forms/the-datalist-element/input-text-datalist-appearance.html +reftest html/semantics/forms/the-datalist-element/input-text-datalist-removal.html +reftest html/semantics/forms/the-input-element/auto-direction-dynamic.html reftest html/semantics/forms/the-input-element/image01.html reftest html/semantics/forms/the-input-element/multiline-placeholder-cr.html reftest html/semantics/forms/the-input-element/multiline-placeholder-crlf.html reftest html/semantics/forms/the-input-element/multiline-placeholder.html +reftest html/semantics/forms/the-input-element/placeholder-update.html reftest html/semantics/forms/the-input-element/range-intrinsic-size.html reftest html/semantics/forms/the-input-element/range-list-added-repaint.html reftest html/semantics/forms/the-input-element/range-list-change-repaint.html @@ -24693,11 +26517,40 @@ reftest html/semantics/forms/the-input-element/range-tick-marks-02.html reftest html/semantics/forms/the-input-element/range-tick-marks-03.html reftest html/semantics/forms/the-input-element/range-tick-marks-04.html reftest html/semantics/forms/the-input-element/range-tick-marks-05.html +reftest html/semantics/forms/the-meter-element/meter-appearance-none-even-less-good-value-rendering.html +reftest html/semantics/forms/the-meter-element/meter-appearance-none-optimum-value-rendering.html +reftest html/semantics/forms/the-meter-element/meter-appearance-none-rendering.html +reftest html/semantics/forms/the-meter-element/meter-appearance-none-suboptimum-value-rendering.html reftest html/semantics/forms/the-meter-element/meter-min-rendering.html reftest html/semantics/forms/the-option-element/dynamic-content-change-rendering.html reftest html/semantics/forms/the-select-element/reset-algorithm-rendering.html -reftest html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html -reftest html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-not-displayed.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/closed-listbox-rendering.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/select-child-button-and-datalist-invalidation.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/select-child-button-and-datalist.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/select-icon-color.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/select-open-invalidation.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/select-option-images.tentative.html +reftest html/semantics/forms/the-select-element/stylable-select/select-size-multiple-new-content.tentative.html +reftest html/semantics/forms/the-selectlist-element/button-type-selectlist-appearance.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-button-type-appearance.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-default-button-slot.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-explicit-size.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-font-size.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-listbox-element.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-marker-end-aligned.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-marker-part.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-marker-slot.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-marker-visible-overflow.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-option-label-rendering.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-overflow-x.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-rtl.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-selected-value-behavior.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-selected-value-part.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-selected-value-slot.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-selectedoption-element-cloning.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-text-only.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-writingmode-lr.tentative.html +reftest html/semantics/forms/the-selectlist-element/selectlist-writingmode-rl.tentative.html reftest html/semantics/forms/the-textarea-element/multiline-placeholder-cr.html reftest html/semantics/forms/the-textarea-element/multiline-placeholder-crlf.html reftest html/semantics/forms/the-textarea-element/multiline-placeholder.html @@ -24737,19 +26590,21 @@ reftest html/semantics/grouping-content/the-pre-element/grouping-pre-reftest-001 reftest html/semantics/grouping-content/the-pre-element/pre-newline-bidi.html reftest html/semantics/interactive-elements/the-details-element/details-add-summary.html reftest html/semantics/interactive-elements/the-dialog-element/backdrop-descendant-selector.html -reftest html/semantics/interactive-elements/the-dialog-element/backdrop-does-not-inherit.html reftest html/semantics/interactive-elements/the-dialog-element/backdrop-dynamic-display-none.html reftest html/semantics/interactive-elements/the-dialog-element/backdrop-dynamic-style-change.html reftest html/semantics/interactive-elements/the-dialog-element/backdrop-in-flow.html +reftest html/semantics/interactive-elements/the-dialog-element/backdrop-inherits.html reftest html/semantics/interactive-elements/the-dialog-element/backdrop-stacking-order.html +reftest html/semantics/interactive-elements/the-dialog-element/dialog-overlay-re-add-during-transition.html reftest html/semantics/interactive-elements/the-dialog-element/dialogs-with-no-backdrop.html reftest html/semantics/interactive-elements/the-dialog-element/dont-share-style-to-top-layer.html reftest html/semantics/interactive-elements/the-dialog-element/element-removed-from-top-layer-has-original-position.html reftest html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-contain-ancestor.html reftest html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-fo-ancestor.html -reftest html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-transformed-ancestor.html -reftest html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-will-change-ancestor.html +reftest html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-transformed-ancestor.tentative.html +reftest html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-will-change-ancestor.tentative.html reftest html/semantics/interactive-elements/the-dialog-element/inert-node-is-not-highlighted.html +reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-backdrop-opacity.html reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-backdrop.html reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-display-contents.html reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-generated-content.html @@ -24759,6 +26614,7 @@ reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-in-r reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-in-table-column.html reftest html/semantics/interactive-elements/the-dialog-element/modal-dialog-sibling.html reftest html/semantics/interactive-elements/the-dialog-element/removed-element-is-removed-from-top-layer.html +reftest html/semantics/interactive-elements/the-dialog-element/top-layer-backdrop-remove-add-ordering.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-containing-block.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-display-none.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-nesting.html @@ -24772,30 +26628,37 @@ reftest html/semantics/interactive-elements/the-dialog-element/top-layer-parent- reftest html/semantics/interactive-elements/the-dialog-element/top-layer-parent-transform.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-position-relative.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-position-static.html +reftest html/semantics/interactive-elements/the-dialog-element/top-layer-remove-popover-attribute.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-correct-order-remove-readd.html reftest html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-dynamic.html -reftest html/semantics/interactive-elements/the-dialog-element/top-layer-stacking.html +reftest html/semantics/interactive-elements/the-dialog-element/top-layer-stacking.tentative.html reftest html/semantics/links/linktypes/alternate-css.html reftest html/semantics/links/linktypes/link-type-stylesheet/process-stylesheet-linked-resource-ascii-case-insensitive.html +reftest html/semantics/permission-element/bounded-css-properties-reftest.tentative.html +reftest html/semantics/permission-element/bounded-sizes-reftest.tentative.html +reftest html/semantics/permission-element/display-css-property-reftest.tentative.html +reftest html/semantics/permission-element/large-min-size-reftest.tentative.html +reftest html/semantics/permission-element/pseudo-elements-in-div.tentative.html +reftest html/semantics/permission-element/pseudo-elements.tentative.html reftest html/semantics/popovers/popover-anchor-change-display.tentative.html reftest html/semantics/popovers/popover-anchor-display.tentative.html +reftest html/semantics/popovers/popover-anchor-inset-rule-display.tentative.html reftest html/semantics/popovers/popover-anchor-nested-display.tentative.html reftest html/semantics/popovers/popover-anchor-scroll-display.tentative.html -reftest html/semantics/popovers/popover-animated-hide-display.tentative.html -reftest html/semantics/popovers/popover-animated-hide-finishes.tentative.html -reftest html/semantics/popovers/popover-animated-show-display.tentative.html -reftest html/semantics/popovers/popover-appearance.tentative.html -reftest html/semantics/popovers/popover-backdrop-appearance.tentative.html -reftest html/semantics/popovers/popover-dialog-appearance.tentative.html -reftest html/semantics/popovers/popover-hidden-display.tentative.html -reftest html/semantics/popovers/popover-inside-display-none.tentative.html -reftest html/semantics/popovers/popover-open-display.tentative.html +reftest html/semantics/popovers/popover-and-svg.html +reftest html/semantics/popovers/popover-appearance.html +reftest html/semantics/popovers/popover-backdrop-appearance.html +reftest html/semantics/popovers/popover-dialog-appearance.html +reftest html/semantics/popovers/popover-hidden-display.html +reftest html/semantics/popovers/popover-inside-display-none.html +reftest html/semantics/popovers/popover-open-display.html reftest html/semantics/popovers/popover-open-overflow-display.tentative.html -reftest html/semantics/popovers/popover-stacking-context.tentative.html +reftest html/semantics/popovers/popover-stacking-context.html reftest html/semantics/scripting-1/the-script-element/module/dynamic-import/microtasks/worklet.https.html reftest html/semantics/scripting-1/the-template-element/additions-to-the-css-user-agent-style-sheet/css-user-agent-style-sheet-test-001.html reftest html/semantics/scripting-1/the-template-element/additions-to-the-css-user-agent-style-sheet/css-user-agent-style-sheet-test-002.html reftest html/semantics/scripting-1/the-template-element/additions-to-the-css-user-agent-style-sheet/css-user-agent-style-sheet-test-003.html +reftest html/semantics/selectors/pseudo-classes/indeterminate-radio-group.html reftest html/semantics/text-level-semantics/the-b-element/b-usage.html reftest html/semantics/text-level-semantics/the-bdi-element/bdi-auto-dir-default.html reftest html/semantics/text-level-semantics/the-bdi-element/bdi-neutral-missing-pdf.html @@ -24893,20 +26756,31 @@ reftest infrastructure/reftest/reftest_ref_timeout.html reftest infrastructure/reftest/reftest_timeout.html reftest infrastructure/reftest/reftest_wait_0.html reftest infrastructure/reftest/reftest_wait_TestRendered.html +reftest infrastructure/reftest/reftest_window_load.html reftest infrastructure/reftest/size.html +reftest jpegxl/3x3_jpeg_recompression.html +reftest jpegxl/3x3_srgb_lossless.html +reftest jpegxl/3x3_srgb_lossy.html +reftest jpegxl/3x3a_srgb_lossless.html +reftest jpegxl/3x3a_srgb_lossy.html reftest lifecycle/set-composited-layer-position.html reftest mathml/presentation-markup/direction/direction-006.html reftest mathml/presentation-markup/direction/direction-007.html reftest mathml/presentation-markup/direction/direction-008.html reftest mathml/presentation-markup/direction/direction-010.html +reftest mathml/presentation-markup/direction/direction-mpadded.html +reftest mathml/presentation-markup/direction/direction-overall-002.html +reftest mathml/presentation-markup/direction/direction-overall-003.html reftest mathml/presentation-markup/direction/direction-overall.html reftest mathml/presentation-markup/direction/direction-token.html reftest mathml/presentation-markup/fractions/frac-bar-001.html reftest mathml/presentation-markup/fractions/frac-bar-002.html +reftest mathml/presentation-markup/fractions/frac-bar-003.html reftest mathml/presentation-markup/fractions/frac-color-001.html reftest mathml/presentation-markup/fractions/frac-color-002.html reftest mathml/presentation-markup/fractions/frac-created-dynamically-2.html reftest mathml/presentation-markup/fractions/frac-created-dynamically-3.html +reftest mathml/presentation-markup/fractions/frac-created-dynamically-4.html reftest mathml/presentation-markup/fractions/frac-created-dynamically.html reftest mathml/presentation-markup/fractions/frac-default-padding.html reftest mathml/presentation-markup/fractions/frac-invalid-2.html @@ -24916,6 +26790,10 @@ reftest mathml/presentation-markup/fractions/frac-legacy-bevelled-attribute.tent reftest mathml/presentation-markup/fractions/frac-linethickness-001.html reftest mathml/presentation-markup/fractions/frac-linethickness-003.html reftest mathml/presentation-markup/fractions/frac-linethickness-004.html +reftest mathml/presentation-markup/fractions/frac-linethickness-005.html +reftest mathml/presentation-markup/fractions/frac-linethickness-006.html +reftest mathml/presentation-markup/fractions/frac-linethickness-007.html +reftest mathml/presentation-markup/fractions/frac-linethickness-008.html reftest mathml/presentation-markup/fractions/frac-mrow-001.html reftest mathml/presentation-markup/fractions/frac-numalign-denomalign-001.html reftest mathml/presentation-markup/fractions/frac-parameters-gap-001.html @@ -24927,17 +26805,46 @@ reftest mathml/presentation-markup/fractions/frac-parameters-gap-006.html reftest mathml/presentation-markup/fractions/frac-rendering-from-in-flow.html reftest mathml/presentation-markup/fractions/frac-visibility-001.html reftest mathml/presentation-markup/menclose/legacy-menclose-radical-notation.html +reftest mathml/presentation-markup/mpadded/mpadded-010.html +reftest mathml/presentation-markup/mpadded/mpadded-011.html +reftest mathml/presentation-markup/mpadded/mpadded-012.html +reftest mathml/presentation-markup/mpadded/mpadded-013.html reftest mathml/presentation-markup/mpadded/mpadded-percentage-001.html reftest mathml/presentation-markup/mrow/dynamic-mrow-like-001.html reftest mathml/presentation-markup/mrow/legacy-mfenced-element-001.html reftest mathml/presentation-markup/mrow/legacy-mrow-like-elements-002.html reftest mathml/presentation-markup/mrow/mrow-painting-order.html +reftest mathml/presentation-markup/mrow/semantics-001.html +reftest mathml/presentation-markup/mrow/semantics-002.html +reftest mathml/presentation-markup/mrow/semantics-003.html +reftest mathml/presentation-markup/mrow/semantics-004.html +reftest mathml/presentation-markup/mrow/semantics-005.html +reftest mathml/presentation-markup/operators/embellished-op-1-2.html +reftest mathml/presentation-markup/operators/embellished-op-1-3.html +reftest mathml/presentation-markup/operators/embellished-op-1-4.html +reftest mathml/presentation-markup/operators/embellished-op-1-5.html +reftest mathml/presentation-markup/operators/embellished-op-2-1.html +reftest mathml/presentation-markup/operators/embellished-op-2-2.html +reftest mathml/presentation-markup/operators/embellished-op-2-3.html +reftest mathml/presentation-markup/operators/embellished-op-2-4.html +reftest mathml/presentation-markup/operators/embellished-op-3-2.html +reftest mathml/presentation-markup/operators/embellished-op-3-3.html +reftest mathml/presentation-markup/operators/embellished-op-3-4.html +reftest mathml/presentation-markup/operators/embellished-op-3-5.html +reftest mathml/presentation-markup/operators/embellished-op-4-1.html +reftest mathml/presentation-markup/operators/embellished-op-4-2.html +reftest mathml/presentation-markup/operators/embellished-op-4-3.html +reftest mathml/presentation-markup/operators/embellished-op-5-1.html +reftest mathml/presentation-markup/operators/embellished-op-5-2.html reftest mathml/presentation-markup/operators/embellished-operator-dynamic-001.html +reftest mathml/presentation-markup/operators/mo-dynamic-mozilla-347348.xhtml reftest mathml/presentation-markup/operators/mo-form-dynamic-002.html reftest mathml/presentation-markup/operators/mo-form-dynamic.html reftest mathml/presentation-markup/operators/mo-form-fallback.html reftest mathml/presentation-markup/operators/mo-form-minus-plus.html reftest mathml/presentation-markup/operators/mo-form.html +reftest mathml/presentation-markup/operators/mo-invisibleoperators-2.html +reftest mathml/presentation-markup/operators/mo-invisibleoperators.html reftest mathml/presentation-markup/operators/mo-lspace-rspace-2.html reftest mathml/presentation-markup/operators/mo-lspace-rspace-3.html reftest mathml/presentation-markup/operators/mo-lspace-rspace-4.html @@ -24952,6 +26859,9 @@ reftest mathml/presentation-markup/operators/mo-not-in-dictionary-lspace-rspace. reftest mathml/presentation-markup/operators/mo-not-in-dictionary-movablelimits.html reftest mathml/presentation-markup/operators/mo-paint-lspace-rspace.html reftest mathml/presentation-markup/operators/mo-single-char-and-children.html +reftest mathml/presentation-markup/operators/munderover-accent-dynamic-001.html +reftest mathml/presentation-markup/operators/munderover-accentunder-dynamic-001.html +reftest mathml/presentation-markup/operators/non-spacing-accent-1.xhtml reftest mathml/presentation-markup/operators/op-dict-1.html reftest mathml/presentation-markup/operators/op-dict-12.html reftest mathml/presentation-markup/operators/op-dict-13.html @@ -24967,12 +26877,47 @@ reftest mathml/presentation-markup/operators/operator-dictionary-arabic-001.html reftest mathml/presentation-markup/operators/operator-dictionary-arabic-002.html reftest mathml/presentation-markup/operators/operator-dictionary-empty-and-three-chars.html reftest mathml/presentation-markup/operators/painting-stretchy-operator-001.html +reftest mathml/presentation-markup/operators/stretchy-underbar-1.xhtml reftest mathml/presentation-markup/radicals/dynamic-radical-paint-invalidation-001.html +reftest mathml/presentation-markup/radicals/empty-msqrt.html reftest mathml/presentation-markup/radicals/radical-rendering-from-in-flow.html +reftest mathml/presentation-markup/scripts/mmultiscript-001.html +reftest mathml/presentation-markup/scripts/mmultiscript-002.html +reftest mathml/presentation-markup/scripts/mmultiscript-003.html reftest mathml/presentation-markup/scripts/mover-accent-dynamic-change.html reftest mathml/presentation-markup/scripts/mprescripts-001.html +reftest mathml/presentation-markup/scripts/munder-mover-align-accent-false.html +reftest mathml/presentation-markup/scripts/munder-mover-align-accent-true.html +reftest mathml/presentation-markup/scripts/munderover-align-accent-false.html +reftest mathml/presentation-markup/scripts/munderover-align-accent-true.html reftest mathml/presentation-markup/scripts/none-001.html reftest mathml/presentation-markup/scripts/none-002.html +reftest mathml/presentation-markup/scripts/stretchy-mover-1a.html +reftest mathml/presentation-markup/scripts/stretchy-mover-1b.html +reftest mathml/presentation-markup/scripts/stretchy-mover-2a.html +reftest mathml/presentation-markup/scripts/stretchy-mover-2b.html +reftest mathml/presentation-markup/scripts/stretchy-mover-3.html +reftest mathml/presentation-markup/scripts/stretchy-msup-1a.html +reftest mathml/presentation-markup/scripts/stretchy-msup-1b.html +reftest mathml/presentation-markup/scripts/stretchy-msup-1c.html +reftest mathml/presentation-markup/scripts/stretchy-msup-1d.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-1a.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-1b.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-1c.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-1d.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-1e.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2a.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2b.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2c.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2d.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2e.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2f.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-2g.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-3a.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-3b.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-3c.html +reftest mathml/presentation-markup/scripts/stretchy-munderover-3d.html +reftest mathml/presentation-markup/scripts/sub-vs-sup-mozilla-345563.xhtml reftest mathml/presentation-markup/scripts/subsup-legacy-scriptshift-attributes-001.tentative.html reftest mathml/presentation-markup/scripts/underover-legacy-align-attribute-001.html reftest mathml/presentation-markup/scripts/underover-stretchy-001.html @@ -24981,8 +26926,27 @@ reftest mathml/presentation-markup/scripts/underover-stretchy-003.html reftest mathml/presentation-markup/spaces/mspace-children.html reftest mathml/presentation-markup/spaces/mspace-percentage-001.html reftest mathml/presentation-markup/spaces/space-2.html +reftest mathml/presentation-markup/spaces/space-3.html reftest mathml/presentation-markup/spaces/space-vertical-align.tentative.html +reftest mathml/presentation-markup/tables/columnspan-rowspan-001.html +reftest mathml/presentation-markup/tables/columnspan-rowspan-002.html +reftest mathml/presentation-markup/tables/columnspan-rowspan-003.html +reftest mathml/presentation-markup/tables/columnspan-rowspan-004.html +reftest mathml/presentation-markup/tables/columnspan-rowspan-005.html +reftest mathml/presentation-markup/tables/columnspan-rowspan-006.html +reftest mathml/presentation-markup/tables/dynamic-columnspan-rowspan-001a.html +reftest mathml/presentation-markup/tables/dynamic-columnspan-rowspan-001b.html +reftest mathml/presentation-markup/tables/dynamic-columnspan-rowspan-001c.html +reftest mathml/presentation-markup/tables/dynamic-columnspan-rowspan-002a.html +reftest mathml/presentation-markup/tables/dynamic-columnspan-rowspan-002b.html +reftest mathml/presentation-markup/tables/dynamic-columnspan-rowspan-002c.html +reftest mathml/presentation-markup/tables/dynamic-rowspan-mozilla-370692.xhtml +reftest mathml/presentation-markup/tokens/dynamic-mi-mozilla-409125.xhtml +reftest mathml/presentation-markup/tokens/dynamic-mi-mozilla-414123.xhtml reftest mathml/presentation-markup/tokens/dynamic-mtext-like-001.html +reftest mathml/presentation-markup/tokens/dynamic-mtext-like-002.html +reftest mathml/presentation-markup/tokens/mi-mathvariant-1.xhtml +reftest mathml/presentation-markup/tokens/mi-mathvariant-2.xhtml reftest mathml/presentation-markup/tokens/ms-001.html reftest mathml/relations/css-styling/blur-filter.html reftest mathml/relations/css-styling/clip-path.html @@ -24993,12 +26957,17 @@ reftest mathml/relations/css-styling/color-003.html reftest mathml/relations/css-styling/color-004.tentative.html reftest mathml/relations/css-styling/color-005.html reftest mathml/relations/css-styling/display-1.html +reftest mathml/relations/css-styling/display-with-overflow.html reftest mathml/relations/css-styling/displaystyle-011.html reftest mathml/relations/css-styling/displaystyle-012.html reftest mathml/relations/css-styling/displaystyle-013.html reftest mathml/relations/css-styling/displaystyle-014.html reftest mathml/relations/css-styling/displaystyle-015.html reftest mathml/relations/css-styling/dynamic-dir-1.html +reftest mathml/relations/css-styling/first-line-first-letter-pseudo-elements-001.html +reftest mathml/relations/css-styling/first-line-first-letter-pseudo-elements-002.html +reftest mathml/relations/css-styling/first-line-first-letter-pseudo-elements-003.html +reftest mathml/relations/css-styling/first-line-first-letter-pseudo-elements-004.html reftest mathml/relations/css-styling/floats/floating-inside-mathml-with-block-display.html reftest mathml/relations/css-styling/floats/floating-math.html reftest mathml/relations/css-styling/legacy-scriptminsize-attribute.html @@ -25017,41 +26986,33 @@ reftest mathml/relations/css-styling/mathsize-attribute-css-keywords.html reftest mathml/relations/css-styling/mathsize-attribute-legacy-values.html reftest mathml/relations/css-styling/mathsize-attribute.html reftest mathml/relations/css-styling/mathvariant-auto.html -reftest mathml/relations/css-styling/mathvariant-basic-transforms-with-default-font.html -reftest mathml/relations/css-styling/mathvariant-bold-fraktur.html -reftest mathml/relations/css-styling/mathvariant-bold-italic.html -reftest mathml/relations/css-styling/mathvariant-bold-sans-serif.html -reftest mathml/relations/css-styling/mathvariant-bold-script.html -reftest mathml/relations/css-styling/mathvariant-bold.html -reftest mathml/relations/css-styling/mathvariant-case-sensitivity.html -reftest mathml/relations/css-styling/mathvariant-double-struck-font-style-font-weight.html -reftest mathml/relations/css-styling/mathvariant-double-struck.html reftest mathml/relations/css-styling/mathvariant-font-style-font-weight.html -reftest mathml/relations/css-styling/mathvariant-fraktur.html -reftest mathml/relations/css-styling/mathvariant-initial.html -reftest mathml/relations/css-styling/mathvariant-italic.html -reftest mathml/relations/css-styling/mathvariant-looped.html -reftest mathml/relations/css-styling/mathvariant-monospace.html -reftest mathml/relations/css-styling/mathvariant-sans-serif-bold-italic.html -reftest mathml/relations/css-styling/mathvariant-sans-serif-italic.html -reftest mathml/relations/css-styling/mathvariant-sans-serif.html -reftest mathml/relations/css-styling/mathvariant-script.html -reftest mathml/relations/css-styling/mathvariant-stretched.html -reftest mathml/relations/css-styling/mathvariant-tailed.html reftest mathml/relations/css-styling/mi-fontstyle-fontweight.html +reftest mathml/relations/css-styling/mozilla-393760-1.xml +reftest mathml/relations/css-styling/mozilla-393760-2.xml reftest mathml/relations/css-styling/out-of-flow/absolutely-positioned-001.html reftest mathml/relations/css-styling/out-of-flow/fixed-positioned-001.html reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-001.html reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-002.html reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-003.html +reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-004.html +reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-005.html +reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-006.html +reftest mathml/relations/css-styling/padding-border-margin/padding-border-margin-007.html reftest mathml/relations/css-styling/presentational-hints-001.html reftest mathml/relations/css-styling/presentational-hints-002.html +reftest mathml/relations/css-styling/table-width-1.xhtml +reftest mathml/relations/css-styling/table-width-2.html +reftest mathml/relations/css-styling/table-width-3.html +reftest mathml/relations/css-styling/table-width-4.html reftest mathml/relations/css-styling/transform.html reftest mathml/relations/css-styling/visibility-001.html reftest mathml/relations/css-styling/visibility-002.html reftest mathml/relations/css-styling/visibility-003.html reftest mathml/relations/css-styling/visibility-004.tentative.html reftest mathml/relations/css-styling/visibility-005.html +reftest mathml/relations/css-styling/width-height-002.html +reftest mathml/relations/css-styling/width-height-003.html reftest mathml/relations/css-styling/writing-mode/reset-and-logicial-property.html reftest mathml/relations/html5-tree/class-1.html reftest mathml/relations/html5-tree/color-attributes-1.html @@ -25059,30 +27020,68 @@ reftest mathml/relations/html5-tree/css-inline-style-dynamic.tentative.html reftest mathml/relations/html5-tree/display-2.html reftest mathml/relations/html5-tree/dynamic-1.html reftest mathml/relations/html5-tree/dynamic-2.html -reftest mathml/relations/html5-tree/href-click-1.html -reftest mathml/relations/html5-tree/href-click-2.html +reftest mathml/relations/html5-tree/dynamic-mozilla-162063.xhtml +reftest mathml/relations/html5-tree/href-click-001.tentative.html +reftest mathml/relations/html5-tree/href-click-002.tentative.html reftest mathml/relations/html5-tree/integration-point-1.html reftest mathml/relations/html5-tree/integration-point-2.html reftest mathml/relations/html5-tree/integration-point-3.html +reftest mathml/relations/html5-tree/link-color-001.tentative.html reftest mathml/relations/html5-tree/required-extensions-2.html +reftest mathml/relations/html5-tree/shadow-dom-mozilla-1066554.html reftest mathml/relations/html5-tree/unique-identifier-1.html reftest mathml/relations/html5-tree/unique-identifier-3.html +reftest mathml/relations/text-and-math/mi-automatic-italic-with-default-font.html +reftest mathml/relations/text-and-math/mo-glyph-height-with-default-font.html reftest mathml/relations/text-and-math/use-typo-metrics-1.html reftest permissions-policy/experimental-features/vertical-scroll-disabled-scrollbar-tentative.html -reftest portals/portals-rendering.html +reftest png/apng/acTL-plays-one.html +reftest png/apng/acTL-plays-two.html +reftest png/apng/fDAT-inherits-cICP.html +reftest png/apng/fcTL-acTL-ordering.html +reftest png/apng/fcTL-blend-over-repeatedly.html +reftest png/apng/fcTL-blend-over-solid.html +reftest png/apng/fcTL-blend-source-nearly-transparent.html +reftest png/apng/fcTL-blend-source-solid.html +reftest png/apng/fcTL-blend-source-transparent.html +reftest png/apng/fcTL-dispose-background-final.html +reftest png/apng/fcTL-dispose-background.html +reftest png/apng/fcTL-dispose-before-region-background.html +reftest png/apng/fcTL-dispose-in-region-background.html +reftest png/apng/fcTL-dispose-in-region-none.html +reftest png/apng/fcTL-dispose-in-region-previous.html +reftest png/apng/fcTL-dispose-none.html +reftest png/apng/fcTL-dispose-previous-final.html +reftest png/apng/fcTL-dispose-previous-first.html +reftest png/apng/fcTL-dispose-previous.html +reftest png/apng/fdAT-16bit.html +reftest png/apng/fdAT-1bit-PLTE-tRNS.html +reftest png/apng/fdAT-1bit-PLTE.html +reftest png/apng/fdAT-2bit-PLTE-tRNS.html +reftest png/apng/fdAT-8bit-gray-alpha.html +reftest png/apng/fdAT-8bit-gray.html +reftest png/apng/fdAT-split-basic.html +reftest png/apng/fdAT-split-zero-length.html +reftest png/apng/first-frame-IDAT.html +reftest png/apng/first-frame-not-IDAT.html +reftest png/cICP-wins.html +reftest png/errors/unknown-ancillary-error-recovery-2.html +reftest png/errors/unknown-ancillary-error-recovery.html reftest preload/preload-in-data-doc.html reftest quirks/body-fills-html-quirk-float.html reftest quirks/body-fills-html-quirk-inline.html reftest quirks/body-fills-html-quirk-positioned.html reftest quirks/body-fills-html-quirk-vertical.html reftest quirks/body-fills-html-quirk.html +reftest quirks/class-names-across-iframes.html reftest quirks/dd-dl-firefox-001.html reftest quirks/historical/list-item-bullet-size.html reftest quirks/historical/vertical-align-in-quirks.html reftest quirks/html-fills-viewport-quirk-vertical.html reftest quirks/html-fills-viewport-quirk.html -reftest quirks/line-height-in-list-item.tentative.html +reftest quirks/line-height-in-list-item.html reftest quirks/line-height-limited-quirks-mode.html +reftest quirks/line-height-preserved-segment-break.html reftest quirks/line-height-quirks-mode.html reftest quirks/line-height-trailing-collapsable-whitespace.html reftest quirks/percentage-height-quirk-excludes-flex-grid-001.html @@ -25094,24 +27093,45 @@ reftest quirks/text-decoration-doesnt-propagate-into-tables/standards.html reftest resize-observer/devicepixel.html reftest resize-observer/devicepixel2.html reftest resize-observer/iframe-same-origin.html +reftest scroll-animations/css/animation-fill-outside-range-test.html +reftest scroll-animations/css/animation-inactive-outside-range-test.html +reftest scroll-animations/css/animation-range-visual-test.html +reftest scroll-animations/css/deferred-timeline-composited.html +reftest scroll-animations/css/scroll-animation-initial-offset.html reftest scroll-animations/css/scroll-timeline-default-iframe.html reftest scroll-animations/css/scroll-timeline-default-quirks-mode.html reftest scroll-animations/css/scroll-timeline-default-writing-mode-rl.html reftest scroll-animations/css/scroll-timeline-default.html reftest scroll-animations/css/scroll-timeline-frame-size-changed.html reftest scroll-animations/css/scroll-timeline-inline-orientation.html +reftest scroll-animations/css/scroll-timeline-update-reversed-animation.html +reftest scroll-animations/css/view-timeline-range-update-reversed-animation.html +reftest scroll-animations/css/view-timeline-range-update.html +reftest scroll-animations/css/view-timeline-subject-bounds-update.html reftest scroll-animations/scroll-timelines/animation-with-animatable-interface.html reftest scroll-animations/scroll-timelines/animation-with-display-none.html reftest scroll-animations/scroll-timelines/animation-with-overflow-hidden.html reftest scroll-animations/scroll-timelines/animation-with-root-scroller.html reftest scroll-animations/scroll-timelines/animation-with-transform.html +reftest scroll-animations/scroll-timelines/custom-property.html reftest scroll-animations/scroll-timelines/layout-changes-on-percentage-based-timeline.html reftest scroll-animations/scroll-timelines/progress-based-effect-delay.tentative.html reftest scroll-animations/scroll-timelines/set-current-time-before-play.html reftest scroll-animations/scroll-timelines/two-animations-attach-to-same-scroll-timeline-cancel-one.html reftest scroll-animations/scroll-timelines/two-animations-attach-to-same-scroll-timeline.html +reftest scroll-animations/view-timelines/range-boundary.html +reftest selection/caret/after-designMode-off.html reftest selection/caret/collapse-pre-linestart-1.html reftest selection/caret/collapse-pre-linestart-2.html +reftest selection/shadow-dom/cross-shadow-boundary-1.html +reftest selection/shadow-dom/cross-shadow-boundary-2.html +reftest selection/shadow-dom/cross-shadow-boundary-3.html +reftest selection/shadow-dom/cross-shadow-boundary-4.html +reftest selection/shadow-dom/cross-shadow-boundary-5.html +reftest selection/shadow-dom/cross-shadow-boundary-6.html +reftest selection/shadow-dom/cross-shadow-boundary-img.html +reftest selection/shadow-dom/cross-shadow-boundary-select-document.html +reftest selection/shadow-dom/cross-shadow-boundary-select-root.html reftest service-workers/service-worker/svg-target-reftest.https.html reftest shadow-dom/directionality-001.tentative.html reftest shadow-dom/directionality-002.tentative.html @@ -25136,6 +27156,13 @@ reftest shadow-dom/untriaged/shadow-trees/reprojection/reprojection-001.html reftest shadow-dom/untriaged/shadow-trees/shadow-root-001.html reftest shadow-dom/untriaged/shadow-trees/shadow-root-002.html reftest shadow-dom/untriaged/styles/not-apply-in-shadow-root-001.html +reftest svg/animations/conditional-processing-01.html +reftest svg/animations/scripted/animateMotion-animated-line.svg +reftest svg/animations/scripted/clear-mapped-animation.svg +reftest svg/animations/stop-animation-01.html +reftest svg/animations/switch-animation-01.html +reftest svg/animations/switch-animation-02.html +reftest svg/animations/use-animate-display-none-symbol-2.html reftest svg/animations/use-animate-display-none-symbol.html reftest svg/coordinate-systems/abspos.html reftest svg/coordinate-systems/outer-svg-intrinsic-size-003.html @@ -25150,12 +27177,20 @@ reftest svg/embedded/image-embedding-svg-nested-svg-in-foreignobject.html reftest svg/embedded/image-embedding-svg-viewref-with-viewbox.svg reftest svg/embedded/image-embedding-svg-with-auto-height.svg reftest svg/embedded/image-embedding-svg-with-fractional-viewbox.svg +reftest svg/embedded/image-embedding-svg-with-near-integral-width.html reftest svg/embedded/image-embedding-svg-with-viewport-units-inline-style.svg reftest svg/embedded/image-embedding-svg-with-viewport-units.svg reftest svg/embedded/image-fractional-width-vertical-fidelity.svg +reftest svg/embedded/image-modify-href-1.svg +reftest svg/embedded/image-modify-href-2.svg +reftest svg/embedded/image-modify-href-3.svg +reftest svg/embedded/image-remove-href-1.svg +reftest svg/embedded/image-remove-href-2.svg +reftest svg/embedded/image-remove-href-3.svg reftest svg/extensibility/foreignObject/composited-inside-object.html reftest svg/extensibility/foreignObject/compositing-backface-visibility.html reftest svg/extensibility/foreignObject/filter-repaint.html +reftest svg/extensibility/foreignObject/foreign-object-containing-svg-in-svg-in-object.html reftest svg/extensibility/foreignObject/foreign-object-margin-collapsing.html reftest svg/extensibility/foreignObject/foreign-object-paints-before-rect.html reftest svg/extensibility/foreignObject/foreign-object-scale-scroll.html @@ -25185,7 +27220,11 @@ reftest svg/geometry/reftests/rect-001.svg reftest svg/geometry/reftests/rect-002.svg reftest svg/geometry/reftests/rect-003.svg reftest svg/geometry/reftests/rect-004.svg +reftest svg/layout/svg-embed-intrinsic-size-min-size.html +reftest svg/layout/svg-foreign-relayout-001.html +reftest svg/layout/svg-foreign-relayout-002.html reftest svg/layout/svg-intrinsic-size-invalidation.html +reftest svg/layout/svg-intrinsic-size-min-size.html reftest svg/layout/svg-with-precent-dimensions-relayout.html reftest svg/linking/reftests/href-a-element-attr-change.html reftest svg/linking/reftests/href-feImage-element.html @@ -25195,7 +27234,7 @@ reftest svg/linking/reftests/href-image-element.html reftest svg/linking/reftests/href-pattern-element.html reftest svg/linking/reftests/href-textPath-element.html reftest svg/linking/reftests/href-use-element.html -reftest svg/linking/reftests/url-processing-invalid-base.svg +reftest svg/linking/reftests/svgview-viewbox-override-multiple.html reftest svg/linking/reftests/url-processing-whitespace-001.svg reftest svg/linking/reftests/url-processing-whitespace-002.svg reftest svg/linking/reftests/url-processing-whitespace-003.svg @@ -25207,9 +27246,14 @@ reftest svg/linking/reftests/use-hidden-attr-change.html reftest svg/linking/reftests/use-keyframes.html reftest svg/linking/reftests/use-nested-symbol-001.html reftest svg/linking/reftests/use-symbol-rendered-001.html +reftest svg/linking/reftests/use-template.html +reftest svg/linking/reftests/view-viewbox-override.html +reftest svg/painting/color-interpolation-001.svg +reftest svg/painting/color-mix-currentcolor-fill-stroke-repaint.html reftest svg/painting/currentColor-override-pserver-fallback.svg reftest svg/painting/currentColor-override-pserver-fill.svg reftest svg/painting/currentColor-override-pserver-stroke.svg +reftest svg/painting/currentcolor-fill-stroke-repaint.html reftest svg/painting/foreignObject-overflow.html reftest svg/painting/marker-001.svg reftest svg/painting/marker-002.svg @@ -25225,6 +27269,7 @@ reftest svg/painting/mask-containing-image-with-clip-path.svg reftest svg/painting/reftests/display-none-mask.html reftest svg/painting/reftests/fallback-001.svg reftest svg/painting/reftests/fallback-002.svg +reftest svg/painting/reftests/marker-implicit-subpaths.html reftest svg/painting/reftests/marker-path-001.svg reftest svg/painting/reftests/marker-path-002.svg reftest svg/painting/reftests/marker-path-003.svg @@ -25238,11 +27283,28 @@ reftest svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke.svg reftest svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke.svg reftest svg/painting/reftests/markers-orient-001.svg reftest svg/painting/reftests/markers-orient-002.svg +reftest svg/painting/reftests/mask-percentage.html +reftest svg/painting/reftests/non-scaling-stroke-001.html +reftest svg/painting/reftests/non-scaling-stroke-002.html +reftest svg/painting/reftests/non-scaling-stroke-003.html +reftest svg/painting/reftests/non-scaling-stroke-004.html +reftest svg/painting/reftests/non-scaling-stroke-005.html +reftest svg/painting/reftests/non-scaling-stroke-006.html reftest svg/painting/reftests/paint-context-001.svg reftest svg/painting/reftests/paint-context-002.svg +reftest svg/painting/reftests/paint-context-003.svg +reftest svg/painting/reftests/paint-context-004.svg +reftest svg/painting/reftests/paint-context-006.svg +reftest svg/painting/reftests/paint-context-007.svg +reftest svg/painting/reftests/paint-context-008.svg reftest svg/painting/reftests/paint-order-001.svg +reftest svg/painting/reftests/paint-order-002.svg +reftest svg/painting/reftests/paint-order-003.svg +reftest svg/painting/reftests/paintorder-text-decorations.svg reftest svg/painting/reftests/percentage-attribute.svg reftest svg/painting/reftests/percentage.svg +reftest svg/painting/reftests/symbol-in-mask.html +reftest svg/painting/scripted/marker-element-added.html reftest svg/painting/subpixel-clip-path-transform.html reftest svg/painting/svg-child-will-change-transform-invalidation.html reftest svg/painting/svg-with-outline.html @@ -25265,9 +27327,14 @@ reftest svg/path/distance/pathlength-path.svg reftest svg/path/distance/pathlength-rect-mutating.svg reftest svg/path/distance/pathlength-rect.svg reftest svg/path/error-handling/render-until-error.svg +reftest svg/path/property/d-none.svg reftest svg/path/property/marker-path.svg reftest svg/path/property/mpath.svg reftest svg/path/property/priority.svg +reftest svg/pservers/reftests/gradient-color-interpolation.svg +reftest svg/pservers/reftests/gradient-transform-01.svg +reftest svg/pservers/reftests/gradient-transform-02.svg +reftest svg/pservers/reftests/gradient-transform-03.svg reftest svg/pservers/reftests/meshgradient-basic-001.svg reftest svg/pservers/reftests/meshgradient-basic-002.svg reftest svg/pservers/reftests/meshgradient-basic-003.svg @@ -25276,9 +27343,18 @@ reftest svg/pservers/reftests/meshgradient-basic-005.svg reftest svg/pservers/reftests/meshgradient-bicubic-001.svg reftest svg/pservers/reftests/meshgradient-complex-001.svg reftest svg/pservers/reftests/pattern-inheritance-template-pattern-removed.svg +reftest svg/pservers/reftests/pattern-opacity-01.svg +reftest svg/pservers/reftests/pattern-text-01.svg +reftest svg/pservers/reftests/pattern-transform-01.svg +reftest svg/pservers/reftests/pattern-transform-02.svg +reftest svg/pservers/reftests/pattern-transform-03.svg +reftest svg/pservers/reftests/pattern-viewbox-01.svg reftest svg/pservers/reftests/radialgradient-basic-002.svg reftest svg/pservers/reftests/radialgradient-fully-overlapping.svg reftest svg/pservers/reftests/stop-color-currentcolor-dynamic-001.svg +reftest svg/pservers/scripted/pattern-transform-clear.svg +reftest svg/render/order/clip-path-filter-order.svg +reftest svg/render/order/z-index.svg reftest svg/render/reftests/blending-001.svg reftest svg/render/reftests/blending-002.svg reftest svg/render/reftests/blending-svg-foreign-object.html @@ -25288,8 +27364,6 @@ reftest svg/render/reftests/filter-effects-on-pattern.html reftest svg/render/reftests/nested-svg-overflow-clip.html reftest svg/render/reftests/overflow-clip.html reftest svg/render/reftests/render-sync-with-font-size.html -reftest svg/rendering/order/clip-path-filter-order.svg -reftest svg/rendering/order/z-index.svg reftest svg/scripted/script-style-attribute-csp.html reftest svg/shapes/circle-01.svg reftest svg/shapes/ellipse-01.svg @@ -25307,6 +27381,7 @@ reftest svg/shapes/rect-02.svg reftest svg/shapes/rect-03.svg reftest svg/shapes/rect-04.svg reftest svg/shapes/rect-05.svg +reftest svg/shapes/rect-rx-set-by-css.svg reftest svg/shapes/reftests/disabled-shapes-01.svg reftest svg/shapes/reftests/pathlength-001.svg reftest svg/shapes/reftests/pathlength-002.svg @@ -25314,33 +27389,66 @@ reftest svg/shapes/reftests/pathlength-003.svg reftest svg/shapes/reftests/polygon-with-filtered-marker.html reftest svg/struct/reftests/currentScale-change-repaint.html reftest svg/struct/reftests/currentScale.svg +reftest svg/struct/reftests/gradient-in-symbol.svg reftest svg/struct/reftests/nested-svg-through-display-contents.svg reftest svg/struct/reftests/requiredextensions-empty-string.svg reftest svg/struct/reftests/requiredextensions-xhtml.tentative.svg +reftest svg/struct/reftests/svg-getIntersectionList-001.svg +reftest svg/struct/reftests/use-a.svg reftest svg/struct/reftests/use-adopted-with-external-resource.tentative.svg reftest svg/struct/reftests/use-cross-origin.svg +reftest svg/struct/reftests/use-data-url-set-attributeName.tentative.svg +reftest svg/struct/reftests/use-data-url-setAttribute.tentative.html reftest svg/struct/reftests/use-data-url.tentative.svg +reftest svg/struct/reftests/use-encoding.svg +reftest svg/struct/reftests/use-external-html-resource-with-content-type-svg.html +reftest svg/struct/reftests/use-external-html-resource-with-doctype.html +reftest svg/struct/reftests/use-external-html-resource.html +reftest svg/struct/reftests/use-external-resource-no-svg-root.html +reftest svg/struct/reftests/use-external-resource-target-pseudo-001.html +reftest svg/struct/reftests/use-external-resource-target-pseudo-002.html reftest svg/struct/reftests/use-external-resource-with-revalidation.tentative.html reftest svg/struct/reftests/use-inheritance-001.svg +reftest svg/struct/reftests/use-inheritance-nth-child-of.svg +reftest svg/struct/reftests/use-inheritance-nth-last-child-of.svg +reftest svg/struct/reftests/use-no-tspan.svg +reftest svg/struct/reftests/use-ref-inside-data-url.tentative.html +reftest svg/struct/reftests/use-referencing-non-svg-fragment-element.html reftest svg/struct/reftests/use-same-origin.svg reftest svg/struct/reftests/use-svg-dimensions-override-001.svg reftest svg/struct/reftests/use-svg-dimensions-override-002.svg +reftest svg/struct/reftests/use-switch.svg reftest svg/struct/reftests/use-symbol-dimensions-override-001.svg reftest svg/struct/reftests/use-symbol-dimensions-override-002.svg +reftest svg/struct/reftests/use-symbol-display-none.svg +reftest svg/styling/color-inherit-link-visited.svg +reftest svg/styling/invalidation/nth-child-of-class.svg +reftest svg/styling/invalidation/nth-last-child-of-class.svg reftest svg/styling/padding-on-svg-via-img.tentative.html reftest svg/styling/render/transform-box.svg reftest svg/styling/render/transform-origin.svg reftest svg/styling/render/transform.svg +reftest svg/styling/use-element-animations.html +reftest svg/styling/use-element-transitions.html +reftest svg/styling/use-element-web-animations.html reftest svg/text/reftests/dominant-baseline-hanging-small-font-size.svg +reftest svg/text/reftests/first-letter.svg reftest svg/text/reftests/gradient-after-reposition.html reftest svg/text/reftests/lang-attribute-dynamic.svg reftest svg/text/reftests/lang-attribute.svg +reftest svg/text/reftests/lengthAdjust-large-font-vertical.svg +reftest svg/text/reftests/lengthAdjust-large-font.svg +reftest svg/text/reftests/lengthAdjust-vertical.svg reftest svg/text/reftests/multiple-textpaths.svg reftest svg/text/reftests/no-background.svg reftest svg/text/reftests/no-margin-border-padding.svg +reftest svg/text/reftests/opacity.svg +reftest svg/text/reftests/text-bidi-controls-anchors-1.svg +reftest svg/text/reftests/text-bidi-controls-anchors-2.svg reftest svg/text/reftests/text-clipped-offscreen-move-onscreen.html reftest svg/text/reftests/text-complex-001.svg reftest svg/text/reftests/text-complex-002.svg +reftest svg/text/reftests/text-font-face-load-image.html reftest svg/text/reftests/text-inline-size-001.svg reftest svg/text/reftests/text-inline-size-002.svg reftest svg/text/reftests/text-inline-size-003.svg @@ -25364,6 +27472,7 @@ reftest svg/text/reftests/text-text-anchor-203.svg reftest svg/text/reftests/text-transform-001.html reftest svg/text/reftests/text-transform-002.html reftest svg/text/reftests/text-xml-space-001.svg +reftest svg/text/reftests/textpath-letter-spacing-01.svg reftest svg/text/reftests/textpath-shape-001.svg reftest svg/text/reftests/textpath-side-001.svg reftest svg/text/reftests/transform-dynamic-change-root.html @@ -25372,7 +27481,13 @@ reftest svg/text/reftests/tspan-opacity-mixed-direction.svg reftest svg/text/reftests/writing-mode-dynamic-change.html reftest svg/text/reftests/xml-lang-attribute-dynamic.svg reftest svg/text/reftests/xml-lang-attribute.svg +reftest web-animations/animation-model/keyframe-effects/effect-value-opacity-replaced-effect-in-shadow-root.html +reftest web-animations/animation-model/keyframe-effects/effect-value-opacity-replaced-effect.html reftest web-animations/animation-model/keyframe-effects/transform-and-opacity-on-inline-001.html +reftest web-animations/animation-model/side-effects-of-animations-current.html +reftest web-animations/animation-model/side-effects-of-animations-in-effect.html +reftest web-animations/animation-model/side-effects-of-animations-none.html +reftest web-animations/responsive/neutral-keyframe.html reftest web-animations/responsive/toggle-animated-iframe-visibility.html reftest web-animations/timing-model/animations/document-timeline-animation.html reftest web-animations/timing-model/animations/infinite-duration-animation.html @@ -25432,6 +27547,7 @@ reftest webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlappin reftest webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely_all_cues_have_same_timestamp.html reftest webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html reftest webvtt/rendering/cues-with-video/processing-model/evil/media_height_19.html +reftest webvtt/rendering/cues-with-video/processing-model/evil/non-standard-pseudo-elements.html reftest webvtt/rendering/cues-with-video/processing-model/evil/single_quote.html reftest webvtt/rendering/cues-with-video/processing-model/evil/size_90.html reftest webvtt/rendering/cues-with-video/processing-model/evil/size_99.html @@ -25634,6 +27750,7 @@ testharness FileAPI/FileReader/progress_event_bubbles_cancelable.html testharness FileAPI/FileReader/workers.html testharness FileAPI/FileReaderSync.worker.js testharness FileAPI/blob/Blob-array-buffer.any.js +testharness FileAPI/blob/Blob-bytes.any.js testharness FileAPI/blob/Blob-constructor-dom.window.js testharness FileAPI/blob/Blob-constructor-endings.html testharness FileAPI/blob/Blob-constructor.any.js @@ -25690,10 +27807,8 @@ testharness FileAPI/url/url-with-xhr.any.js testharness IndexedDB/abort-in-initial-upgradeneeded.html testharness IndexedDB/back-forward-cache-open-connection.window.js testharness IndexedDB/back-forward-cache-open-transaction.window.js -testharness IndexedDB/bigint_value.htm -testharness IndexedDB/bindings-inject-keys-bypass-setters.html -testharness IndexedDB/bindings-inject-values-bypass-chain.html -testharness IndexedDB/bindings-inject-values-bypass-setters.html +testharness IndexedDB/bindings-inject-keys-bypass.any.js +testharness IndexedDB/bindings-inject-values-bypass.any.js testharness IndexedDB/blob-composite-blob-reads.any.js testharness IndexedDB/blob-contenttype.any.js testharness IndexedDB/blob-delete-objectstore-db.any.js @@ -25718,9 +27833,9 @@ testharness IndexedDB/idb-binary-key-detached.htm testharness IndexedDB/idb-binary-key-roundtrip.htm testharness IndexedDB/idb-explicit-commit-throw.any.js testharness IndexedDB/idb-explicit-commit.any.js -testharness IndexedDB/idb-partitioned-basic.tentative.sub.html -testharness IndexedDB/idb-partitioned-coverage.tentative.sub.html -testharness IndexedDB/idb-partitioned-persistence.tentative.sub.html +testharness IndexedDB/idb-partitioned-basic.sub.html +testharness IndexedDB/idb-partitioned-coverage.sub.html +testharness IndexedDB/idb-partitioned-persistence.sub.html testharness IndexedDB/idb_binary_key_conversion.htm testharness IndexedDB/idb_webworkers.htm testharness IndexedDB/idbcursor-advance-continue-async.htm @@ -25746,45 +27861,14 @@ testharness IndexedDB/idbcursor-request.any.js testharness IndexedDB/idbcursor-reused.htm testharness IndexedDB/idbcursor-source.htm testharness IndexedDB/idbcursor-update-exception-order.htm -testharness IndexedDB/idbcursor_advance_index.htm -testharness IndexedDB/idbcursor_advance_index2.htm -testharness IndexedDB/idbcursor_advance_index3.htm -testharness IndexedDB/idbcursor_advance_index5.htm -testharness IndexedDB/idbcursor_advance_index6.htm -testharness IndexedDB/idbcursor_advance_index7.htm -testharness IndexedDB/idbcursor_advance_index8.htm -testharness IndexedDB/idbcursor_advance_index9.htm -testharness IndexedDB/idbcursor_advance_objectstore.htm -testharness IndexedDB/idbcursor_advance_objectstore2.htm -testharness IndexedDB/idbcursor_advance_objectstore3.htm -testharness IndexedDB/idbcursor_advance_objectstore4.htm -testharness IndexedDB/idbcursor_advance_objectstore5.htm +testharness IndexedDB/idbcursor_advance_index.any.js +testharness IndexedDB/idbcursor_advance_objectstore.any.js testharness IndexedDB/idbcursor_continue_delete_objectstore.htm -testharness IndexedDB/idbcursor_continue_index.htm -testharness IndexedDB/idbcursor_continue_index2.htm -testharness IndexedDB/idbcursor_continue_index3.htm -testharness IndexedDB/idbcursor_continue_index4.htm -testharness IndexedDB/idbcursor_continue_index5.htm -testharness IndexedDB/idbcursor_continue_index6.htm -testharness IndexedDB/idbcursor_continue_index7.htm -testharness IndexedDB/idbcursor_continue_index8.htm +testharness IndexedDB/idbcursor_continue_index.any.js testharness IndexedDB/idbcursor_continue_invalid.htm -testharness IndexedDB/idbcursor_continue_objectstore.htm -testharness IndexedDB/idbcursor_continue_objectstore2.htm -testharness IndexedDB/idbcursor_continue_objectstore3.htm -testharness IndexedDB/idbcursor_continue_objectstore4.htm -testharness IndexedDB/idbcursor_continue_objectstore5.htm -testharness IndexedDB/idbcursor_continue_objectstore6.htm -testharness IndexedDB/idbcursor_delete_index.htm -testharness IndexedDB/idbcursor_delete_index2.htm -testharness IndexedDB/idbcursor_delete_index3.htm -testharness IndexedDB/idbcursor_delete_index4.htm -testharness IndexedDB/idbcursor_delete_index5.htm -testharness IndexedDB/idbcursor_delete_objectstore.htm -testharness IndexedDB/idbcursor_delete_objectstore2.htm -testharness IndexedDB/idbcursor_delete_objectstore3.htm -testharness IndexedDB/idbcursor_delete_objectstore4.htm -testharness IndexedDB/idbcursor_delete_objectstore5.htm +testharness IndexedDB/idbcursor_continue_objectstore.any.js +testharness IndexedDB/idbcursor_delete_index.any.js +testharness IndexedDB/idbcursor_delete_objectstore.any.js testharness IndexedDB/idbcursor_iterating.htm testharness IndexedDB/idbcursor_iterating_index.htm testharness IndexedDB/idbcursor_iterating_index2.htm @@ -25799,15 +27883,7 @@ testharness IndexedDB/idbcursor_update_index6.htm testharness IndexedDB/idbcursor_update_index7.htm testharness IndexedDB/idbcursor_update_index8.htm testharness IndexedDB/idbcursor_update_index9.any.js -testharness IndexedDB/idbcursor_update_objectstore.htm -testharness IndexedDB/idbcursor_update_objectstore2.htm -testharness IndexedDB/idbcursor_update_objectstore3.htm -testharness IndexedDB/idbcursor_update_objectstore4.htm -testharness IndexedDB/idbcursor_update_objectstore5.htm -testharness IndexedDB/idbcursor_update_objectstore6.htm -testharness IndexedDB/idbcursor_update_objectstore7.htm -testharness IndexedDB/idbcursor_update_objectstore8.htm -testharness IndexedDB/idbcursor_update_objectstore9.htm +testharness IndexedDB/idbcursor_update_objectstore.any.js testharness IndexedDB/idbdatabase-createObjectStore-exception-order.htm testharness IndexedDB/idbdatabase-deleteObjectStore-exception-order.htm testharness IndexedDB/idbdatabase-transaction-exception-order.html @@ -25826,15 +27902,8 @@ testharness IndexedDB/idbdatabase_createObjectStore6.htm testharness IndexedDB/idbdatabase_createObjectStore7.htm testharness IndexedDB/idbdatabase_createObjectStore8-parameters.htm testharness IndexedDB/idbdatabase_createObjectStore9-invalidparameters.htm -testharness IndexedDB/idbdatabase_deleteObjectStore.htm -testharness IndexedDB/idbdatabase_deleteObjectStore2.htm -testharness IndexedDB/idbdatabase_deleteObjectStore3.htm -testharness IndexedDB/idbdatabase_deleteObjectStore4-not_reused.htm -testharness IndexedDB/idbdatabase_transaction.htm -testharness IndexedDB/idbdatabase_transaction2.htm -testharness IndexedDB/idbdatabase_transaction3.htm -testharness IndexedDB/idbdatabase_transaction4.htm -testharness IndexedDB/idbdatabase_transaction5.htm +testharness IndexedDB/idbdatabase_deleteObjectStore.any.js +testharness IndexedDB/idbdatabase_transaction.any.js testharness IndexedDB/idbfactory-databases-opaque-origin.html testharness IndexedDB/idbfactory-deleteDatabase-opaque-origin.html testharness IndexedDB/idbfactory-deleteDatabase-request-success.html @@ -25851,18 +27920,7 @@ testharness IndexedDB/idbfactory_deleteDatabase.htm testharness IndexedDB/idbfactory_deleteDatabase2.htm testharness IndexedDB/idbfactory_deleteDatabase3.htm testharness IndexedDB/idbfactory_deleteDatabase4.htm -testharness IndexedDB/idbfactory_open.htm -testharness IndexedDB/idbfactory_open10.htm -testharness IndexedDB/idbfactory_open11.htm -testharness IndexedDB/idbfactory_open12.htm -testharness IndexedDB/idbfactory_open2.htm -testharness IndexedDB/idbfactory_open3.htm -testharness IndexedDB/idbfactory_open4.htm -testharness IndexedDB/idbfactory_open5.htm -testharness IndexedDB/idbfactory_open6.htm -testharness IndexedDB/idbfactory_open7.htm -testharness IndexedDB/idbfactory_open8.htm -testharness IndexedDB/idbfactory_open9.htm +testharness IndexedDB/idbfactory_open.any.js testharness IndexedDB/idbindex-cross-realm-methods.html testharness IndexedDB/idbindex-getAll-enforcerange.html testharness IndexedDB/idbindex-getAllKeys-enforcerange.html @@ -25875,38 +27933,17 @@ testharness IndexedDB/idbindex-rename-abort.html testharness IndexedDB/idbindex-rename-errors.html testharness IndexedDB/idbindex-rename.html testharness IndexedDB/idbindex-request-source.html -testharness IndexedDB/idbindex_batchGetAll.tentative.any.js -testharness IndexedDB/idbindex_count.htm -testharness IndexedDB/idbindex_count2.htm -testharness IndexedDB/idbindex_count3.htm -testharness IndexedDB/idbindex_count4.htm -testharness IndexedDB/idbindex_get.htm -testharness IndexedDB/idbindex_get2.htm -testharness IndexedDB/idbindex_get3.htm -testharness IndexedDB/idbindex_get4.htm -testharness IndexedDB/idbindex_get5.htm -testharness IndexedDB/idbindex_get6.htm -testharness IndexedDB/idbindex_get7.htm -testharness IndexedDB/idbindex_get8.htm -testharness IndexedDB/idbindex_getAll.html -testharness IndexedDB/idbindex_getAllKeys.html -testharness IndexedDB/idbindex_getKey.htm -testharness IndexedDB/idbindex_getKey2.htm -testharness IndexedDB/idbindex_getKey3.htm -testharness IndexedDB/idbindex_getKey4.htm -testharness IndexedDB/idbindex_getKey5.htm -testharness IndexedDB/idbindex_getKey6.htm -testharness IndexedDB/idbindex_getKey7.htm -testharness IndexedDB/idbindex_getKey8.htm +testharness IndexedDB/idbindex_count.any.js +testharness IndexedDB/idbindex_get.any.js +testharness IndexedDB/idbindex_getAll.any.js +testharness IndexedDB/idbindex_getAllKeys.any.js +testharness IndexedDB/idbindex_getKey.any.js testharness IndexedDB/idbindex_indexNames.htm testharness IndexedDB/idbindex_keyPath.any.js testharness IndexedDB/idbindex_openCursor.htm testharness IndexedDB/idbindex_openCursor2.htm testharness IndexedDB/idbindex_openCursor3.htm -testharness IndexedDB/idbindex_openKeyCursor.htm -testharness IndexedDB/idbindex_openKeyCursor2.htm -testharness IndexedDB/idbindex_openKeyCursor3.htm -testharness IndexedDB/idbindex_openKeyCursor4.htm +testharness IndexedDB/idbindex_openKeyCursor.any.js testharness IndexedDB/idbindex_reverse_cursor.any.js testharness IndexedDB/idbindex_tombstones.any.js testharness IndexedDB/idbkeyrange-includes.htm @@ -25926,56 +27963,12 @@ testharness IndexedDB/idbobjectstore-rename-errors.html testharness IndexedDB/idbobjectstore-rename-store.html testharness IndexedDB/idbobjectstore-request-source.html testharness IndexedDB/idbobjectstore-transaction-SameObject.html -testharness IndexedDB/idbobjectstore_add.htm -testharness IndexedDB/idbobjectstore_add10.htm -testharness IndexedDB/idbobjectstore_add11.htm -testharness IndexedDB/idbobjectstore_add12.htm -testharness IndexedDB/idbobjectstore_add13.htm -testharness IndexedDB/idbobjectstore_add14.htm -testharness IndexedDB/idbobjectstore_add15.htm -testharness IndexedDB/idbobjectstore_add16.htm -testharness IndexedDB/idbobjectstore_add2.htm -testharness IndexedDB/idbobjectstore_add3.htm -testharness IndexedDB/idbobjectstore_add4.htm -testharness IndexedDB/idbobjectstore_add5.htm -testharness IndexedDB/idbobjectstore_add6.htm -testharness IndexedDB/idbobjectstore_add7.htm -testharness IndexedDB/idbobjectstore_add8.htm -testharness IndexedDB/idbobjectstore_add9.htm -testharness IndexedDB/idbobjectstore_batchGetAll.tentative.any.js -testharness IndexedDB/idbobjectstore_batchGetAll_largeValue.tentative.any.js -testharness IndexedDB/idbobjectstore_clear.htm -testharness IndexedDB/idbobjectstore_clear2.htm -testharness IndexedDB/idbobjectstore_clear3.htm -testharness IndexedDB/idbobjectstore_clear4.htm -testharness IndexedDB/idbobjectstore_count.htm -testharness IndexedDB/idbobjectstore_count2.htm -testharness IndexedDB/idbobjectstore_count3.htm -testharness IndexedDB/idbobjectstore_count4.htm -testharness IndexedDB/idbobjectstore_createIndex.htm -testharness IndexedDB/idbobjectstore_createIndex10.htm -testharness IndexedDB/idbobjectstore_createIndex11.htm -testharness IndexedDB/idbobjectstore_createIndex12.htm -testharness IndexedDB/idbobjectstore_createIndex13.htm -testharness IndexedDB/idbobjectstore_createIndex14-exception_order.htm -testharness IndexedDB/idbobjectstore_createIndex15-autoincrement.htm -testharness IndexedDB/idbobjectstore_createIndex2.htm -testharness IndexedDB/idbobjectstore_createIndex3-usable-right-away.htm -testharness IndexedDB/idbobjectstore_createIndex4-deleteIndex-event_order.htm -testharness IndexedDB/idbobjectstore_createIndex5-emptykeypath.htm -testharness IndexedDB/idbobjectstore_createIndex6-event_order.htm -testharness IndexedDB/idbobjectstore_createIndex7-event_order.htm -testharness IndexedDB/idbobjectstore_createIndex8-valid_keys.htm -testharness IndexedDB/idbobjectstore_createIndex9-emptyname.htm -testharness IndexedDB/idbobjectstore_delete.htm -testharness IndexedDB/idbobjectstore_delete2.htm -testharness IndexedDB/idbobjectstore_delete3.htm -testharness IndexedDB/idbobjectstore_delete4.htm -testharness IndexedDB/idbobjectstore_delete5.htm -testharness IndexedDB/idbobjectstore_delete6.htm -testharness IndexedDB/idbobjectstore_delete7.htm -testharness IndexedDB/idbobjectstore_deleteIndex.htm -testharness IndexedDB/idbobjectstore_deleted.htm +testharness IndexedDB/idbobjectstore_add.any.js +testharness IndexedDB/idbobjectstore_clear.any.js +testharness IndexedDB/idbobjectstore_count.any.js +testharness IndexedDB/idbobjectstore_createIndex.any.js +testharness IndexedDB/idbobjectstore_delete.any.js +testharness IndexedDB/idbobjectstore_deleteIndex.any.js testharness IndexedDB/idbobjectstore_get.any.js testharness IndexedDB/idbobjectstore_get2.any.js testharness IndexedDB/idbobjectstore_get3.any.js @@ -25991,22 +27984,7 @@ testharness IndexedDB/idbobjectstore_keyPath.any.js testharness IndexedDB/idbobjectstore_openCursor.htm testharness IndexedDB/idbobjectstore_openCursor_invalid.htm testharness IndexedDB/idbobjectstore_openKeyCursor.htm -testharness IndexedDB/idbobjectstore_put.htm -testharness IndexedDB/idbobjectstore_put10.htm -testharness IndexedDB/idbobjectstore_put11.htm -testharness IndexedDB/idbobjectstore_put12.htm -testharness IndexedDB/idbobjectstore_put13.htm -testharness IndexedDB/idbobjectstore_put14.htm -testharness IndexedDB/idbobjectstore_put15.htm -testharness IndexedDB/idbobjectstore_put16.htm -testharness IndexedDB/idbobjectstore_put2.htm -testharness IndexedDB/idbobjectstore_put3.htm -testharness IndexedDB/idbobjectstore_put4.htm -testharness IndexedDB/idbobjectstore_put5.htm -testharness IndexedDB/idbobjectstore_put6.htm -testharness IndexedDB/idbobjectstore_put7.htm -testharness IndexedDB/idbobjectstore_put8.htm -testharness IndexedDB/idbobjectstore_put9.htm +testharness IndexedDB/idbobjectstore_put.any.js testharness IndexedDB/idbrequest-onupgradeneeded.htm testharness IndexedDB/idbrequest_error.html testharness IndexedDB/idbrequest_result.html @@ -26039,6 +28017,7 @@ testharness IndexedDB/keypath_maxsize.htm testharness IndexedDB/large-requests-abort.html testharness IndexedDB/list_ordering.htm testharness IndexedDB/name-scopes.html +testharness IndexedDB/nested-cloning-basic.html testharness IndexedDB/nested-cloning-large-multiple.html testharness IndexedDB/nested-cloning-large.html testharness IndexedDB/nested-cloning-small.html @@ -26068,7 +28047,7 @@ testharness IndexedDB/transaction-deactivation-timing.html testharness IndexedDB/transaction-lifetime-blocked.htm testharness IndexedDB/transaction-lifetime-empty.html testharness IndexedDB/transaction-lifetime.htm -testharness IndexedDB/transaction-relaxed-durability.tentative.any.js +testharness IndexedDB/transaction-relaxed-durability.any.js testharness IndexedDB/transaction-requestqueue.htm testharness IndexedDB/transaction-scheduling-across-connections.any.js testharness IndexedDB/transaction-scheduling-across-databases.any.js @@ -26082,12 +28061,14 @@ testharness IndexedDB/upgrade-transaction-deactivation-timing.html testharness IndexedDB/upgrade-transaction-lifecycle-backend-aborted.html testharness IndexedDB/upgrade-transaction-lifecycle-committed.html testharness IndexedDB/upgrade-transaction-lifecycle-user-aborted.html -testharness IndexedDB/value.htm +testharness IndexedDB/value.any.js testharness IndexedDB/value_recursive.htm +testharness IndexedDB/worker-termination-aborts-upgrade.window.js testharness IndexedDB/writer-starvation.htm testharness WebCryptoAPI/algorithm-discards-context.https.window.js testharness WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.js testharness WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.https.any.js +testharness WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.js testharness WebCryptoAPI/derive_bits_keys/ecdh_bits.https.any.js testharness WebCryptoAPI/derive_bits_keys/ecdh_keys.https.any.js testharness WebCryptoAPI/derive_bits_keys/hkdf.https.any.js @@ -26096,6 +28077,7 @@ testharness WebCryptoAPI/digest/digest.https.any.js testharness WebCryptoAPI/encrypt_decrypt/aes_cbc.https.any.js testharness WebCryptoAPI/encrypt_decrypt/aes_ctr.https.any.js testharness WebCryptoAPI/encrypt_decrypt/aes_gcm.https.any.js +testharness WebCryptoAPI/encrypt_decrypt/aes_gcm_256_iv.https.any.js testharness WebCryptoAPI/encrypt_decrypt/rsa_oaep.https.any.js testharness WebCryptoAPI/generateKey/failures_AES-CBC.https.any.js testharness WebCryptoAPI/generateKey/failures_AES-CTR.https.any.js @@ -26128,6 +28110,7 @@ testharness WebCryptoAPI/generateKey/successes_X448.https.any.js testharness WebCryptoAPI/getRandomValues.any.js testharness WebCryptoAPI/historical.any.js testharness WebCryptoAPI/idlharness.https.any.js +testharness WebCryptoAPI/import_export/crashtests/importKey-unsettled-promise.https.any.js testharness WebCryptoAPI/import_export/ec_importKey.https.any.js testharness WebCryptoAPI/import_export/okp_importKey.https.any.js testharness WebCryptoAPI/import_export/okp_importKey_failures_Ed25519.https.any.js @@ -26156,6 +28139,20 @@ testharness accelerometer/Accelerometer_insecure_context.html testharness accelerometer/GravitySensor.https.html testharness accelerometer/LinearAccelerationSensor.https.html testharness accelerometer/idlharness.https.window.js +testharness accessibility/svg-mouse-listener.html +testharness accname/basic.html +testharness accname/name/comp_embedded_control.html +testharness accname/name/comp_hidden_not_referenced.html +testharness accname/name/comp_host_language_label.html +testharness accname/name/comp_label.html +testharness accname/name/comp_labelledby.html +testharness accname/name/comp_labelledby_hidden_nodes.html +testharness accname/name/comp_name_from_content.html +testharness accname/name/comp_name_from_content.tentative.html +testharness accname/name/comp_text_node.html +testharness accname/name/comp_tooltip.html +testharness accname/name/shadowdom/basic.html +testharness accname/name/shadowdom/slot.html testharness acid/acid3/numbered-tests.html testharness ambient-light/AmbientLightSensor-disabled-by-feature-policy.https.html testharness ambient-light/AmbientLightSensor-enabled-by-feature-policy-attribute-redirect-on-load.https.html @@ -26191,6 +28188,13 @@ testharness animation-worklet/worklet-animation-with-fill-mode.https.html testharness animation-worklet/worklet-animation-with-invalid-effect.https.html testharness animation-worklet/worklet-animation-without-target.https.html testharness apng/supported-in-source-type.html +testharness attribution-reporting/aggregatable-debug/simple-source-aggregatable-debug-report.sub.https.html +testharness attribution-reporting/aggregatable-debug/simple-trigger-aggregatable-debug-report.sub.https.html +testharness attribution-reporting/aggregatable-report-no-contributions.sub.https.html +testharness attribution-reporting/header-parsing-error-debug-report.sub.https.html +testharness attribution-reporting/referrer-policy.sub.https.html +testharness attribution-reporting/request-format.sub.https.html +testharness attribution-reporting/simple-verbose-debug-report.sub.https.html testharness audio-output/enumerateDevices-permissions-policy.https.html testharness audio-output/enumerateDevices-with-selectAudioOutput.https.html testharness audio-output/idlharness.https.window.js @@ -26219,6 +28223,9 @@ testharness background-sync/idlharness.https.any.js testharness badging/badge-error.https.html testharness badging/badge-success.https.html testharness badging/idlharness.https.any.js +testharness badging/non-fully-active.https.html +testharness badging/setAppBadge_cross_origin.sub.https.html +testharness battery-status/api-defined.https.html testharness battery-status/battery-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html testharness battery-status/battery-allowed-by-permissions-policy-attribute.https.sub.html testharness battery-status/battery-allowed-by-permissions-policy.https.sub.html @@ -26229,11 +28236,18 @@ testharness battery-status/battery-disallowed-in-cross-origin-iframe.https.sub.h testharness battery-status/battery-promise-window.https.html testharness battery-status/battery-promise.https.html testharness battery-status/idlharness.https.window.js +testharness battery-status/multiple-promises-after-resolve.https.html +testharness battery-status/multiple-promises.https.html +testharness battery-status/no-leak-on-detached-use.https.html +testharness battery-status/page-visibility.https.html +testharness battery-status/promise-with-eventlisteners.https.html +testharness battery-status/restricted-level-precision.https.html testharness beacon/beacon-basic.https.window.js testharness beacon/beacon-cors.https.window.js testharness beacon/beacon-navigate.https.window.js testharness beacon/beacon-redirect.https.window.js testharness beacon/headers/header-content-type-and-body.html +testharness beacon/headers/header-origin-same-origin.html testharness beacon/headers/header-referrer-no-referrer-when-downgrade.https.html testharness beacon/headers/header-referrer-no-referrer.html testharness beacon/headers/header-referrer-origin-when-cross-origin.html @@ -26341,11 +28355,14 @@ testharness bluetooth/requestDevice/canonicalizeFilter/data-prefix-and-mask-size testharness bluetooth/requestDevice/canonicalizeFilter/dataPrefix-buffer-is-detached.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/device-name-longer-than-29-bytes.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/empty-dataPrefix.https.window.js +testharness bluetooth/requestDevice/canonicalizeFilter/empty-exclusion-filter.https.window.js +testharness bluetooth/requestDevice/canonicalizeFilter/empty-exclusion-filters-member.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/empty-filter.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/empty-filters-member.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/empty-manufacturerData-member.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/empty-namePrefix.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/empty-services-member.https.window.js +testharness bluetooth/requestDevice/canonicalizeFilter/exclusion-filters-require-filters.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/filters-xor-acceptAllDevices.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/invalid-companyIdentifier.https.window.js testharness bluetooth/requestDevice/canonicalizeFilter/mask-buffer-is-detached.https.window.js @@ -26470,10 +28487,30 @@ testharness bluetooth/service/getCharacteristics/gen-reconnect-during-with-uuid. testharness bluetooth/service/getCharacteristics/gen-reconnect-during.https.window.js testharness bluetooth/service/getCharacteristics/gen-service-is-removed-with-uuid.https.window.js testharness bluetooth/service/getCharacteristics/gen-service-is-removed.https.window.js +testharness browsing-topics/browsing-topics-permissions-policy-default.tentative.https.sub.html +testharness browsing-topics/browsing-topics-permissions-policy-none.tentative.https.sub.html +testharness browsing-topics/browsing-topics-permissions-policy-self.tentative.https.sub.html +testharness browsing-topics/document-api-insecure-context.tentative.http.html +testharness browsing-topics/document-api.tentative.https.html +testharness browsing-topics/fetch-topics-header-not-visible-in-service-worker.tentative.https.html +testharness browsing-topics/fetch-topics-insecure-context.tentative.http.html +testharness browsing-topics/fetch-topics.tentative.https.html +testharness browsing-topics/fetch-without-topics-flag.tentative.https.html +testharness browsing-topics/iframe-topics-attribute-insecure-context.tentative.http.sub.html +testharness browsing-topics/iframe-topics-attribute.tentative.https.html +testharness browsing-topics/topics-not-allowed-for-service-worker-fetch.tentative.https.html +testharness captured-mouse-events/capture-controller-oncapturedmousechange.https.html +testharness captured-mouse-events/captured-mouse-event-constructor-inherited.html +testharness captured-mouse-events/captured-mouse-event-constructor.html +testharness captured-mouse-events/idlharness.https.window.js testharness clear-site-data/executionContexts.sub.html testharness clear-site-data/navigation-insecure.html testharness clear-site-data/navigation.https.html testharness clear-site-data/resource.html +testharness clear-site-data/set-cookie-after-clear-all.https.html +testharness clear-site-data/set-cookie-after-clear-cookies.https.html +testharness clear-site-data/set-cookie-before-clear-all.https.html +testharness clear-site-data/set-cookie-before-clear-cookies.https.html testharness clear-site-data/storage.https.html testharness client-hints/accept-ch-change.https.html testharness client-hints/accept-ch-malformed-header.https.html @@ -26513,6 +28550,7 @@ testharness client-hints/accept-ch-stickiness/same-origin-navigation.https.html testharness client-hints/accept-ch-stickiness/same-origin-subresource-redirect-opted-in.https.html testharness client-hints/accept-ch-stickiness/same-origin-subresource-redirect.https.html testharness client-hints/accept-ch-stickiness/same-origin-subresource.https.html +testharness client-hints/accept-ch.wildcard.https.sub.html testharness client-hints/accept-ch/answers.sub.https.html testharness client-hints/accept-ch/cache-revalidation.https.html testharness client-hints/accept-ch/feature-policy-navigation/feature-policy.https.html @@ -26522,12 +28560,42 @@ testharness client-hints/accept-ch/meta/resource-in-markup-accept-ch.https.html testharness client-hints/accept-ch/meta/resource-in-markup-delegate-ch.https.html testharness client-hints/accept-ch/no-feature-policy.sub.https.html testharness client-hints/accept-ch/non-secure.http.html +testharness client-hints/clear-site-data/clear-site-data-all.https.html +testharness client-hints/clear-site-data/clear-site-data-cache.https.html +testharness client-hints/clear-site-data/clear-site-data-client-hints.https.html +testharness client-hints/clear-site-data/clear-site-data-cookies.https.html +testharness client-hints/clear-site-data/clear-site-data-storage.https.html +testharness client-hints/clear-site-data/set-client-hints-after-clear-all.https.html +testharness client-hints/clear-site-data/set-client-hints-after-clear-cache.https.html +testharness client-hints/clear-site-data/set-client-hints-after-clear-client-hints.https.html +testharness client-hints/clear-site-data/set-client-hints-after-clear-cookies.https.html +testharness client-hints/clear-site-data/set-client-hints-after-clear-storage.https.html +testharness client-hints/clear-site-data/set-critical-client-hints-after-clear-all.https.html +testharness client-hints/clear-site-data/set-critical-client-hints-after-clear-cache.https.html +testharness client-hints/clear-site-data/set-critical-client-hints-after-clear-client-hints.https.html +testharness client-hints/clear-site-data/set-critical-client-hints-after-clear-cookies.https.html +testharness client-hints/clear-site-data/set-critical-client-hints-after-clear-storage.https.html +testharness client-hints/critical-ch/critical-ch.navigation-timing.no-restart.https.html +testharness client-hints/critical-ch/critical-ch.navigation-timing.restart.https.html testharness client-hints/critical-ch/iframe.https.window.js testharness client-hints/critical-ch/mis-matched-count.https.window.js testharness client-hints/critical-ch/mis-matched.https.window.js -testharness client-hints/critical-ch/navigation.https.window.js +testharness client-hints/critical-ch/mis-matched.multiple.https.window.js +testharness client-hints/critical-ch/navigation.cross-origin.https.window.js +testharness client-hints/critical-ch/navigation.cross-origin.multiple.https.window.js +testharness client-hints/critical-ch/navigation.same-origin.https.window.js +testharness client-hints/critical-ch/navigation.same-origin.multiple.https.window.js testharness client-hints/critical-ch/non-secure.http.window.js +testharness client-hints/critical-ch/redirect.critical.cross-origin.https.window.js +testharness client-hints/critical-ch/redirect.critical.cross-origin.multiple.https.window.js +testharness client-hints/critical-ch/redirect.critical.same-origin.https.window.js +testharness client-hints/critical-ch/redirect.critical.same-origin.multiple.https.window.js +testharness client-hints/critical-ch/redirect.cross-origin.https.window.js +testharness client-hints/critical-ch/redirect.cross-origin.multiple.https.window.js +testharness client-hints/critical-ch/redirect.same-origin.https.window.js +testharness client-hints/critical-ch/redirect.same-origin.multiple.https.window.js testharness client-hints/critical-ch/request-count.https.window.js +testharness client-hints/critical-ch/request-count.multiple.https.window.js testharness client-hints/critical-ch/subresource.https.window.js testharness client-hints/critical-ch/unsafe-method.https.window.js testharness client-hints/http-equiv-accept-ch-iframe.https.html @@ -26554,6 +28622,9 @@ testharness client-hints/sandbox/iframe.https.html testharness client-hints/sec-ch-quotes.https.html testharness client-hints/sec-ch-ua.http.html testharness client-hints/sec-ch-ua.https.html +testharness client-hints/sec-ch-width-auto-sizes-img.https.html +testharness client-hints/sec-ch-width-auto-sizes-picture.https.html +testharness client-hints/sec-ch-width.https.html testharness client-hints/service-workers/intercept-request-critical.https.window.js testharness client-hints/service-workers/intercept-request.https.html testharness client-hints/service-workers/navigation-preload-critical.https.window.js @@ -26574,16 +28645,18 @@ testharness clipboard-apis/async-html-script-removal.https.html testharness clipboard-apis/async-navigator-clipboard-basics.https.html testharness clipboard-apis/async-navigator-clipboard-read-resource-load.https.html testharness clipboard-apis/async-navigator-clipboard-read-sanitize.https.html +testharness clipboard-apis/async-navigator-clipboard-write-multiple.tentative.https.sub.html testharness clipboard-apis/async-promise-write-blobs-read-blobs.https.html -testharness clipboard-apis/async-svg-script-removal.https.html +testharness clipboard-apis/async-svg-read-write.tentative.https.html testharness clipboard-apis/async-unsanitized-html-formats-write-read.tentative.https.html testharness clipboard-apis/async-unsanitized-plaintext-formats-write-read.tentative.https.html +testharness clipboard-apis/async-unsanitized-standard-html-read-fail.tentative.https.html testharness clipboard-apis/async-write-blobs-read-blobs.https.html testharness clipboard-apis/async-write-html-read-html.https.html testharness clipboard-apis/async-write-image-read-image.https.html -testharness clipboard-apis/async-write-svg-read-svg.https.html testharness clipboard-apis/clipboard-events-synthetic.html testharness clipboard-apis/clipboard-item.https.html +testharness clipboard-apis/dataTransfer-clearData.html testharness clipboard-apis/detached-iframe/clipboard-on-detached-iframe.https.html testharness clipboard-apis/detached-iframe/read-on-detaching-iframe.https.html testharness clipboard-apis/detached-iframe/write-on-detaching-iframe.https.html @@ -26612,11 +28685,49 @@ testharness clipboard-apis/text-write-read/async-write-readText.https.html testharness clipboard-apis/text-write-read/async-writeText-read.https.html testharness clipboard-apis/text-write-read/async-writeText-readText.https.html testharness close-watcher/abortsignal.html -testharness close-watcher/after-other-listeners.html testharness close-watcher/basic.html +testharness close-watcher/esc-key/keydown.html +testharness close-watcher/esc-key/keypress.html +testharness close-watcher/esc-key/keyup.html +testharness close-watcher/esc-key/not-user-activation.html +testharness close-watcher/esc-key/synthetic-keyboard-event.html +testharness close-watcher/event-properties.html testharness close-watcher/frame-removal.html -testharness close-watcher/user-activation-multiple-plus-free.html -testharness close-watcher/user-activation.html +testharness close-watcher/inside-event-listeners.html +testharness close-watcher/user-activation/n-activate-preventDefault.html +testharness close-watcher/user-activation/n-activate.html +testharness close-watcher/user-activation/n-closerequest-n.html +testharness close-watcher/user-activation/n-destroy-n.html +testharness close-watcher/user-activation/n.html +testharness close-watcher/user-activation/nn-CloseWatcher.html +testharness close-watcher/user-activation/nn-activate-CloseWatcher.html +testharness close-watcher/user-activation/nn-activate-dialog.html +testharness close-watcher/user-activation/nn-dialog.html +testharness close-watcher/user-activation/nnn-CloseWatcher-dialog-popover.html +testharness close-watcher/user-activation/nnn-CloseWatcher.html +testharness close-watcher/user-activation/nnn-dialog.html +testharness close-watcher/user-activation/nnn-popovers.html +testharness close-watcher/user-activation/ny-activate-preventDefault.html +testharness close-watcher/user-activation/ny.html +testharness close-watcher/user-activation/nyn-popovers.html +testharness close-watcher/user-activation/nyn.html +testharness close-watcher/user-activation/nynn-destroy.html +testharness close-watcher/user-activation/nynn.html +testharness close-watcher/user-activation/nyyn-CloseWatcher.html +testharness close-watcher/user-activation/nyyn-dialog.html +testharness close-watcher/user-activation/nyyyn-CloseWatcher.html +testharness close-watcher/user-activation/nyyyn-dialog.html +testharness close-watcher/user-activation/y.html +testharness close-watcher/user-activation/yn-activate.html +testharness close-watcher/user-activation/yn.html +testharness close-watcher/user-activation/ynn-CloseWatcher.html +testharness close-watcher/user-activation/ynn-dialog.html +testharness close-watcher/user-activation/yy.html +testharness close-watcher/user-activation/yyn.html +testharness close-watcher/user-activation/yyy-CloseWatcher-dialog-popover.html +testharness close-watcher/user-activation/yyy-activate-CloseWatcher-dialog-popover.html +testharness close-watcher/user-activation/yyy-popovers.html +testharness close-watcher/user-activation/yyy.html testharness compat/css-style-declaration-alias-enumeration.html testharness compat/historical.html testharness compat/idlharness.window.js @@ -26630,6 +28741,7 @@ testharness compat/webkit-text-fill-color-currentColor.html testharness compression/compression-bad-chunks.tentative.any.js testharness compression/compression-constructor-error.tentative.any.js testharness compression/compression-including-empty-chunk.tentative.any.js +testharness compression/compression-large-flush-output.any.js testharness compression/compression-multiple-chunks.tentative.any.js testharness compression/compression-output-length.tentative.any.js testharness compression/compression-stream.tentative.any.js @@ -26645,25 +28757,24 @@ testharness compression/decompression-uint8array-output.tentative.any.js testharness compression/decompression-with-detach.tentative.window.js testharness compression/idlharness-shadowrealm.window.js testharness compression/idlharness.https.any.js -testharness compute-pressure/compute_pressure_basic.tentative.https.window.js -testharness compute-pressure/compute_pressure_basic_async.tentative.https.window.js -testharness compute-pressure/compute_pressure_detached_iframe.tentative.https.html -testharness compute-pressure/compute_pressure_disconnect.tentative.https.window.js -testharness compute-pressure/compute_pressure_disconnect_idempotent.tentative.https.window.js -testharness compute-pressure/compute_pressure_disconnect_immediately.tentative.https.window.js -testharness compute-pressure/compute_pressure_duplicate_updates.tentative.https.window.js -testharness compute-pressure/compute_pressure_factors.tentative.https.window.js -testharness compute-pressure/compute_pressure_multiple.tentative.https.window.js -testharness compute-pressure/compute_pressure_multiple_across_iframes.tentative.https.window.js -testharness compute-pressure/compute_pressure_observe_idempotent.tentative.https.window.js -testharness compute-pressure/compute_pressure_observe_unobserve_failure.tentative.https.window.js -testharness compute-pressure/compute_pressure_options.tentative.https.window.js -testharness compute-pressure/compute_pressure_privacy_test.tentative.https.window.js -testharness compute-pressure/compute_pressure_supported_sources.tentative.https.window.js -testharness compute-pressure/compute_pressure_take_records.tentative.https.window.js -testharness compute-pressure/compute_pressure_timestamp.tentative.https.window.js -testharness compute-pressure/compute_pressure_update_toJSON.tentative.https.window.js -testharness compute-pressure/idlharness.https.window.js +testharness compute-pressure/compute_pressure_basic.https.any.js +testharness compute-pressure/compute_pressure_detached_iframe.https.html +testharness compute-pressure/compute_pressure_disconnect.https.any.js +testharness compute-pressure/compute_pressure_disconnect_idempotent.https.any.js +testharness compute-pressure/compute_pressure_disconnect_immediately.https.any.js +testharness compute-pressure/compute_pressure_duplicate_updates.https.any.js +testharness compute-pressure/compute_pressure_known_sources.https.any.js +testharness compute-pressure/compute_pressure_multiple.https.any.js +testharness compute-pressure/compute_pressure_observe_idempotent.https.any.js +testharness compute-pressure/compute_pressure_observe_unobserve_failure.https.any.js +testharness compute-pressure/compute_pressure_options.https.any.js +testharness compute-pressure/compute_pressure_rate_obfuscation_mitigation_not_triggered.https.window.js +testharness compute-pressure/compute_pressure_rate_obfuscation_mitigation_triggered.https.window.js +testharness compute-pressure/compute_pressure_take_records.https.any.js +testharness compute-pressure/compute_pressure_timestamp.https.any.js +testharness compute-pressure/compute_pressure_update_toJSON.https.any.js +testharness compute-pressure/idlharness.https.any.js +testharness compute-pressure/observe_return_type.https.any.js testharness compute-pressure/permissions-policy/compute-pressure-allowed-by-permissions-policy-attribute-redirect-on-load.https.html testharness compute-pressure/permissions-policy/compute-pressure-allowed-by-permissions-policy-attribute.https.html testharness compute-pressure/permissions-policy/compute-pressure-allowed-by-permissions-policy.https.html @@ -26673,6 +28784,8 @@ testharness compute-pressure/permissions-policy/compute-pressure-disabled-by-per testharness compute-pressure/permissions-policy/compute-pressure-supported-by-permissions-policy.html testharness console/console-is-a-namespace.any.js testharness console/console-label-conversion.any.js +testharness console/console-log-large-array.any.js +testharness console/console-log-symbol.any.js testharness console/console-namespace-object-class-string.any.js testharness console/console-tests-historical.any.js testharness console/idlharness-shadowrealm.window.js @@ -26681,7 +28794,9 @@ testharness contacts/contacts-select.https.window.js testharness content-dpr/image-with-dpr-header.html testharness content-index/content-index.https.window.js testharness content-index/idlharness.https.any.js +testharness content-security-policy/base-uri/base-uri-allow-leading-zero-port.sub.html testharness content-security-policy/base-uri/base-uri-allow.sub.html +testharness content-security-policy/base-uri/base-uri-deny-url-encoded-host.sub.html testharness content-security-policy/base-uri/base-uri-deny.sub.html testharness content-security-policy/base-uri/base-uri_iframe_sandbox.sub.html testharness content-security-policy/base-uri/report-uri-does-not-respect-base-uri.sub.html @@ -26704,6 +28819,11 @@ testharness content-security-policy/connect-src/connect-src-beacon-redirect-to-b testharness content-security-policy/connect-src/connect-src-eventsource-allowed.sub.html testharness content-security-policy/connect-src/connect-src-eventsource-blocked.sub.html testharness content-security-policy/connect-src/connect-src-eventsource-redirect-to-blocked.sub.html +testharness content-security-policy/connect-src/connect-src-json-import-allowed.sub.html +testharness content-security-policy/connect-src/connect-src-json-import-blocked.sub.html +testharness content-security-policy/connect-src/connect-src-syncxmlhttprequest-allowed.sub.html +testharness content-security-policy/connect-src/connect-src-syncxmlhttprequest-blocked.sub.html +testharness content-security-policy/connect-src/connect-src-syncxmlhttprequest-redirect-to-blocked.sub.html testharness content-security-policy/connect-src/connect-src-websocket-allowed.sub.html testharness content-security-policy/connect-src/connect-src-websocket-blocked.sub.html testharness content-security-policy/connect-src/connect-src-websocket-self.sub.html @@ -26717,6 +28837,7 @@ testharness content-security-policy/connect-src/worker-connect-src-blocked.sub.h testharness content-security-policy/connect-src/worker-from-guid.sub.html testharness content-security-policy/default-src/default-src-inline-allowed.sub.html testharness content-security-policy/default-src/default-src-inline-blocked.sub.html +testharness content-security-policy/default-src/default-src-sri_hash.sub.html testharness content-security-policy/default-src/default-src-strict_dynamic_and_unsafe_inline.html testharness content-security-policy/embedded-enforcement/allow_csp_from-header.html testharness content-security-policy/embedded-enforcement/blocked-iframe-are-cross-origin.html @@ -27063,10 +29184,11 @@ testharness content-security-policy/gen/top.meta/worker-src-wildcard/worklet-lay testharness content-security-policy/gen/top.meta/worker-src-wildcard/worklet-paint-import-data.https.html testharness content-security-policy/gen/top.meta/worker-src-wildcard/worklet-paint.https.html testharness content-security-policy/generic/304-response-should-update-csp.sub.html +testharness content-security-policy/generic/case-insensitive-scheme.sub.html testharness content-security-policy/generic/cspro-not-enforced-in-worker.html testharness content-security-policy/generic/directive-name-case-insensitive.sub.html testharness content-security-policy/generic/duplicate-directive.sub.html -testharness content-security-policy/generic/eval-typecheck-callout-order.tentative.html +testharness content-security-policy/generic/eval-typecheck-callout-order.html testharness content-security-policy/generic/filesystem-urls-do-not-match-self.sub.html testharness content-security-policy/generic/filesystem-urls-match-filesystem.sub.html testharness content-security-policy/generic/generic-0_1-img-src.html @@ -27084,11 +29206,14 @@ testharness content-security-policy/generic/no-default-src.sub.html testharness content-security-policy/generic/only-valid-whitespaces-are-allowed.html testharness content-security-policy/generic/policy-does-not-affect-child.sub.html testharness content-security-policy/generic/policy-inherited-correctly-by-plznavigate.html +testharness content-security-policy/generic/src-trailing-dot.sub.any.js +testharness content-security-policy/generic/wildcard-host-part.sub.window.js testharness content-security-policy/img-src/icon-allowed.sub.html testharness content-security-policy/img-src/icon-blocked.sub.html testharness content-security-policy/img-src/img-src-4_1.sub.html testharness content-security-policy/img-src/img-src-full-host-wildcard-blocked.sub.html testharness content-security-policy/img-src/img-src-host-partial-wildcard-allowed.sub.html +testharness content-security-policy/img-src/img-src-none-blocks-data-uri.html testharness content-security-policy/img-src/img-src-none-blocks.html testharness content-security-policy/img-src/img-src-port-wildcard-allowed.sub.html testharness content-security-policy/img-src/img-src-self-unique-origin.html @@ -27182,6 +29307,8 @@ testharness content-security-policy/navigation/to-javascript-parent-initiated-pa testharness content-security-policy/navigation/to-javascript-parent-initiated-parent-csp.html testharness content-security-policy/navigation/to-javascript-url-frame-src.html testharness content-security-policy/navigation/to-javascript-url-script-src.html +testharness content-security-policy/nonce-hiding/dangling-html-or-body.html +testharness content-security-policy/nonce-hiding/nonce-hiding-move-document.html testharness content-security-policy/nonce-hiding/nonces.html testharness content-security-policy/nonce-hiding/script-nonces-hidden-meta.sub.html testharness content-security-policy/nonce-hiding/script-nonces-hidden.html @@ -27197,12 +29324,6 @@ testharness content-security-policy/object-src/object-src-url-redirect-allowed.h testharness content-security-policy/object-src/object-src-url-redirect-blocked.sub.html testharness content-security-policy/parsing/invalid-directive.html testharness content-security-policy/plugin-types/plugin-types-ignored.html -testharness content-security-policy/prefetch-src/prefetch-allowed.html -testharness content-security-policy/prefetch-src/prefetch-blocked-by-default.html -testharness content-security-policy/prefetch-src/prefetch-blocked.html -testharness content-security-policy/prefetch-src/prefetch-header-allowed.html -testharness content-security-policy/prefetch-src/prefetch-header-blocked-by-default.html -testharness content-security-policy/prefetch-src/prefetch-header-blocked.html testharness content-security-policy/reporting-api/report-to-directive-allowed-in-meta.https.sub.html testharness content-security-policy/reporting-api/reporting-api-doesnt-send-reports-without-violation.https.sub.html testharness content-security-policy/reporting-api/reporting-api-report-only-sends-reports-on-violation.https.sub.html @@ -27220,10 +29341,12 @@ testharness content-security-policy/reporting/report-blocked-uri-cross-origin.su testharness content-security-policy/reporting/report-blocked-uri.html testharness content-security-policy/reporting/report-clips-sample.https.html testharness content-security-policy/reporting/report-cross-origin-no-cookies.sub.html +testharness content-security-policy/reporting/report-frame-ancestors-no-parent-cookies.sub.html testharness content-security-policy/reporting/report-frame-ancestors-with-x-frame-options.sub.html testharness content-security-policy/reporting/report-frame-ancestors.sub.html testharness content-security-policy/reporting/report-multiple-violations-01.html testharness content-security-policy/reporting/report-multiple-violations-02.html +testharness content-security-policy/reporting/report-only-cross-origin-frame.sub.html testharness content-security-policy/reporting/report-only-in-meta.sub.html testharness content-security-policy/reporting/report-only-unsafe-eval.html testharness content-security-policy/reporting/report-original-url-on-mixed-content-frame.https.sub.html @@ -27238,6 +29361,15 @@ testharness content-security-policy/reporting/report-uri-from-javascript.html testharness content-security-policy/reporting/report-uri-multiple-reversed.html testharness content-security-policy/reporting/report-uri-multiple.html testharness content-security-policy/reporting/report-uri-scheme-relative.html +testharness content-security-policy/resource-hints/prefetch-allowed-by-any-directive.sub.html +testharness content-security-policy/resource-hints/prefetch-allowed-by-default.html +testharness content-security-policy/resource-hints/prefetch-allowed-no-default.html +testharness content-security-policy/resource-hints/prefetch-allowed-with-conflicting-permissive-policies.html +testharness content-security-policy/resource-hints/prefetch-blocked-by-default-multiple-policies.html +testharness content-security-policy/resource-hints/prefetch-blocked-by-default.html +testharness content-security-policy/resource-hints/prefetch-generate-directives.html +testharness content-security-policy/resource-hints/prefetch-ignores-prefetch-src.sub.html +testharness content-security-policy/resource-hints/prefetch-no-csp.html testharness content-security-policy/sandbox/iframe-inside-csp.sub.html testharness content-security-policy/sandbox/meta-element.sub.html testharness content-security-policy/sandbox/sandbox-allow-scripts-subframe.sub.html @@ -27356,6 +29488,8 @@ testharness content-security-policy/style-src-attr-elem/style-src-elem-allowed-a testharness content-security-policy/style-src-attr-elem/style-src-elem-allowed-src-blocked.html testharness content-security-policy/style-src-attr-elem/style-src-elem-blocked-attr-allowed.html testharness content-security-policy/style-src-attr-elem/style-src-elem-blocked-src-allowed.html +testharness content-security-policy/style-src/import-style-allowed.sub.html +testharness content-security-policy/style-src/import-style-blocked.sub.html testharness content-security-policy/style-src/injected-inline-style-allowed.sub.html testharness content-security-policy/style-src/injected-inline-style-blocked.sub.html testharness content-security-policy/style-src/inline-style-allowed-while-cloning-objects.sub.html @@ -27479,6 +29613,9 @@ testharness content-security-policy/worker-src/shared-worker-src-default-fallbac testharness content-security-policy/worker-src/shared-worker-src-script-fallback.sub.html testharness content-security-policy/worker-src/shared-worker-src-self-fallback.sub.html testharness contenteditable/plaintext-only.html +testharness cookie-deprecation-label/cookie-deprecation-label-detached-iframe.https.html +testharness cookie-deprecation-label/cookie-deprecation-label-insecure-context.http.html +testharness cookie-deprecation-label/cookie-deprecation-label.https.html testharness cookie-store/change_eventhandler_for_document_cookie.https.window.js testharness cookie-store/change_eventhandler_for_http_cookie_and_set_cookie_headers.https.window.js testharness cookie-store/change_eventhandler_for_no_name_and_no_value.https.window.js @@ -27511,7 +29648,7 @@ testharness cookie-store/cookieStore_subscribe_arguments.https.any.js testharness cookie-store/cookieStore_subscriptions_empty.https.window.js testharness cookie-store/encoding.https.any.js testharness cookie-store/httponly_cookies.https.window.js -testharness cookie-store/idlharness.tentative.https.any.js +testharness cookie-store/idlharness.https.any.js testharness cookie-store/serviceworker_cookieStore_cross_origin.https.sub.html testharness cookie-store/serviceworker_cookieStore_subscriptions_reset.https.html testharness cookie-store/serviceworker_cookiechange_eventhandler_mismatched_subscription.https.any.js @@ -27586,14 +29723,11 @@ testharness cookies/secure/set-from-ws.sub.html testharness cookies/secure/set-from-wss.https.sub.html testharness cookies/size/attributes.www.sub.html testharness cookies/size/name-and-value.html +testharness cookies/third-party-cookies/third-party-cookie-heuristics.tentative.https.html +testharness cookies/third-party-cookies/third-party-cookies.tentative.https.html testharness cookies/value/value-ctl.html testharness cookies/value/value.html -testharness core-aam/aria-expanded_not_supported_on_alert.html -testharness core-aam/aria-expanded_not_supported_on_banner.html -testharness core-aam/aria-expanded_not_supported_on_dialog.html -testharness core-aam/aria-expanded_not_supported_on_feed.html -testharness core-aam/aria-expanded_not_supported_on_form.html -testharness core-aam/aria-expanded_not_supported_on_group.html +testharness core-aam/form-unnamed.html testharness cors/304.htm testharness cors/access-control-expose-headers-parsing.window.js testharness cors/basic.htm @@ -27621,34 +29755,24 @@ testharness cors/status-async.htm testharness cors/status-preflight.htm testharness cors/status.htm testharness credential-management/credentialscontainer-create-basics.https.html -testharness credential-management/fedcm-cross-origin-policy.https.html -testharness credential-management/fedcm-csp.https.html -testharness credential-management/fedcm-iframe.https.html -testharness credential-management/fedcm-logout-rps.https.html -testharness credential-management/fedcm-multi-idp/abort-multiple-gets-through-first-idp.https.html -testharness credential-management/fedcm-multi-idp/abort-multiple-gets-through-second-idp.https.html -testharness credential-management/fedcm-multi-idp/get-before-and-after-onload.https.html -testharness credential-management/fedcm-multi-idp/get-before-and-during-onload.https.html -testharness credential-management/fedcm-multi-idp/get-before-onload-and-during-dom-content-loaded.https.html -testharness credential-management/fedcm-multi-idp/multiple-gets-after-abort.https.html -testharness credential-management/fedcm-multi-idp/multiple-gets-after-onload.https.html -testharness credential-management/fedcm-multi-idp/multiple-gets-before-onload.https.html -testharness credential-management/fedcm-multi-idp/multiple-gets-during-onload.https.html -testharness credential-management/fedcm-multi-idp/single-get-after-onload.https.html -testharness credential-management/fedcm-multi-idp/single-get-before-onload.https.html -testharness credential-management/fedcm-multi-idp/single-get-during-onload.https.html -testharness credential-management/fedcm-network-requests.https.html +testharness credential-management/credentialscontainer-get-basics.https.html +testharness credential-management/credentialscontainer-prevent-silent-access.https.html testharness credential-management/federatedcredential-framed-get.sub.https.html testharness credential-management/idlharness.https.window.js +testharness credential-management/non-fully-active.https.html testharness credential-management/otpcredential-get-basics.https.html testharness credential-management/otpcredential-iframe.https.html +testharness credential-management/otpcredential-store.https.html testharness credential-management/passwordcredential-framed-get.sub.https.html testharness credential-management/require_securecontext.html testharness css/CSS2/abspos/abspos-in-block-in-inline-in-relpos-inline.html testharness css/CSS2/abspos/adjacent-to-relpos-inline-in-inline-that-had-block.html testharness css/CSS2/abspos/adjacent-to-relpos-inline-that-had-block.html +testharness css/CSS2/borders/discrete-no-interpolation.html +testharness css/CSS2/floats-clear/clear-no-interpolation.html testharness css/CSS2/floats/computed-float-position-absolute.html testharness css/CSS2/floats/float-in-self-painting-inline.html +testharness css/CSS2/floats/float-no-interpolation.html testharness css/CSS2/floats/hit-test-floats-001.html testharness css/CSS2/floats/hit-test-floats-002.html testharness css/CSS2/floats/hit-test-floats-003.html @@ -27668,6 +29792,8 @@ testharness css/CSS2/linebox/inline-negative-margin-minmax-crash-001.html testharness css/CSS2/linebox/needs-layout-transform.html testharness css/CSS2/linebox/vertical-align-top-bottom-001.html testharness css/CSS2/normal-flow/auto-margins-root-element.html +testharness css/CSS2/normal-flow/auto-margins-used-values-with-floats.tentative.html +testharness css/CSS2/normal-flow/auto-margins-used-values.html testharness css/CSS2/normal-flow/block-in-inline-client-rects-001.html testharness css/CSS2/normal-flow/block-in-inline-hittest-001.html testharness css/CSS2/normal-flow/block-in-inline-hittest-002.html @@ -27695,10 +29821,16 @@ testharness css/CSS2/positioning/line-break-after-leading-float.html testharness css/CSS2/positioning/relpos-percentage-left-in-scrollable-2.html testharness css/CSS2/positioning/relpos-percentage-left-in-scrollable.html testharness css/CSS2/positioning/relpos-percentage-top-in-scrollable.html +testharness css/CSS2/syntax/colors-007.html +testharness css/CSS2/tables/border-collapse-no-interpolation.html +testharness css/CSS2/tables/empty-cells-no-interpolation.html testharness css/CSS2/visufx/animation/visibility-interpolation.html +testharness css/compositing/canvas-composite-modes.html testharness css/compositing/inheritance.html +testharness css/compositing/isolation/animation/isolation-no-interpolation.html testharness css/compositing/mix-blend-mode/mix-blend-mode-creates-stacking-context.html testharness css/compositing/mix-blend-mode/mix-blend-mode-parsing.html +testharness css/compositing/parsing/background-blend-mode-computed-multiple.html testharness css/compositing/parsing/background-blend-mode-computed.html testharness css/compositing/parsing/background-blend-mode-invalid.html testharness css/compositing/parsing/background-blend-mode-valid.html @@ -27708,13 +29840,95 @@ testharness css/compositing/parsing/isolation-valid.html testharness css/compositing/parsing/mix-blend-mode-computed.html testharness css/compositing/parsing/mix-blend-mode-invalid.html testharness css/compositing/parsing/mix-blend-mode-valid.html +testharness css/css-align/abspos/align-self-htb-ltr-htb.html +testharness css/css-align/abspos/align-self-htb-ltr-vlr.html +testharness css/css-align/abspos/align-self-htb-ltr-vrl.html +testharness css/css-align/abspos/align-self-htb-rtl-htb.html +testharness css/css-align/abspos/align-self-htb-rtl-vlr.html +testharness css/css-align/abspos/align-self-htb-rtl-vrl.html +testharness css/css-align/abspos/align-self-vlr-ltr-htb.html +testharness css/css-align/abspos/align-self-vlr-ltr-vlr.html +testharness css/css-align/abspos/align-self-vlr-ltr-vrl.html +testharness css/css-align/abspos/align-self-vlr-rtl-htb.html +testharness css/css-align/abspos/align-self-vlr-rtl-vlr.html +testharness css/css-align/abspos/align-self-vlr-rtl-vrl.html +testharness css/css-align/abspos/align-self-vrl-ltr-htb.html +testharness css/css-align/abspos/align-self-vrl-ltr-vlr.html +testharness css/css-align/abspos/align-self-vrl-ltr-vrl.html +testharness css/css-align/abspos/align-self-vrl-rtl-htb.html +testharness css/css-align/abspos/align-self-vrl-rtl-vlr.html +testharness css/css-align/abspos/align-self-vrl-rtl-vrl.html +testharness css/css-align/abspos/justify-self-htb-ltr-htb.html +testharness css/css-align/abspos/justify-self-htb-ltr-vlr.html +testharness css/css-align/abspos/justify-self-htb-ltr-vrl.html +testharness css/css-align/abspos/justify-self-htb-rtl-htb.html +testharness css/css-align/abspos/justify-self-htb-rtl-vlr.html +testharness css/css-align/abspos/justify-self-htb-rtl-vrl.html +testharness css/css-align/abspos/justify-self-vlr-ltr-htb.html +testharness css/css-align/abspos/justify-self-vlr-ltr-vlr.html +testharness css/css-align/abspos/justify-self-vlr-ltr-vrl.html +testharness css/css-align/abspos/justify-self-vlr-rtl-htb.html +testharness css/css-align/abspos/justify-self-vlr-rtl-vlr.html +testharness css/css-align/abspos/justify-self-vlr-rtl-vrl.html +testharness css/css-align/abspos/justify-self-vrl-ltr-htb.html +testharness css/css-align/abspos/justify-self-vrl-ltr-vlr.html +testharness css/css-align/abspos/justify-self-vrl-ltr-vrl.html +testharness css/css-align/abspos/justify-self-vrl-rtl-htb.html +testharness css/css-align/abspos/justify-self-vrl-rtl-vlr.html +testharness css/css-align/abspos/justify-self-vrl-rtl-vrl.html +testharness css/css-align/abspos/safe-align-self-htb.html +testharness css/css-align/abspos/safe-align-self-vlr.html +testharness css/css-align/abspos/safe-align-self-vrl.html +testharness css/css-align/abspos/safe-justify-self-htb.html +testharness css/css-align/abspos/safe-justify-self-vlr.html +testharness css/css-align/abspos/safe-justify-self-vrl.html +testharness css/css-align/abspos/stretch-intrinsic-size-htb-htb.html +testharness css/css-align/abspos/stretch-intrinsic-size-htb-vrl.html +testharness css/css-align/abspos/stretch-intrinsic-size-vrl-htb.html +testharness css/css-align/abspos/stretch-intrinsic-size-vrl-vrl.html +testharness css/css-align/abspos/table-align-self-stretch.html +testharness css/css-align/abspos/table-justify-self-stretch.html +testharness css/css-align/animation/align-no-interpolation.html testharness css/css-align/animation/column-gap-composition.html testharness css/css-align/animation/column-gap-interpolation.html +testharness css/css-align/animation/justify-no-interpolation.html testharness css/css-align/animation/row-gap-composition.html testharness css/css-align/animation/row-gap-interpolation.html testharness css/css-align/baseline-rules/synthesized-baseline-flexbox-001.html testharness css/css-align/baseline-rules/synthesized-baseline-grid-001.html testharness css/css-align/baseline-rules/synthesized-baseline-inline-block-001.html +testharness css/css-align/blocks/align-content-block-002.html +testharness css/css-align/blocks/align-content-block-003.html +testharness css/css-align/blocks/align-content-block-004.html +testharness css/css-align/blocks/align-content-block-005.html +testharness css/css-align/blocks/align-content-block-006.html +testharness css/css-align/blocks/align-content-block-007.html +testharness css/css-align/blocks/align-content-block-008.html +testharness css/css-align/blocks/align-content-block-009.html +testharness css/css-align/blocks/align-content-block-010.html +testharness css/css-align/blocks/align-content-block-011.html +testharness css/css-align/blocks/align-content-block-display-coverage.html +testharness css/css-align/blocks/align-content-block-simple-height-change.html +testharness css/css-align/blocks/align-content-table-cell.html +testharness css/css-align/blocks/justify-self-block-in-inline.html +testharness css/css-align/blocks/justify-self-htb-ltr-htb.html +testharness css/css-align/blocks/justify-self-htb-ltr-vlr.html +testharness css/css-align/blocks/justify-self-htb-ltr-vrl.html +testharness css/css-align/blocks/justify-self-htb-rtl-htb.html +testharness css/css-align/blocks/justify-self-htb-rtl-vlr.html +testharness css/css-align/blocks/justify-self-htb-rtl-vrl.html +testharness css/css-align/blocks/justify-self-vlr-ltr-htb.html +testharness css/css-align/blocks/justify-self-vlr-ltr-vlr.html +testharness css/css-align/blocks/justify-self-vlr-ltr-vrl.html +testharness css/css-align/blocks/justify-self-vlr-rtl-htb.html +testharness css/css-align/blocks/justify-self-vlr-rtl-vlr.html +testharness css/css-align/blocks/justify-self-vlr-rtl-vrl.html +testharness css/css-align/blocks/justify-self-vrl-ltr-htb.html +testharness css/css-align/blocks/justify-self-vrl-ltr-vlr.html +testharness css/css-align/blocks/justify-self-vrl-ltr-vrl.html +testharness css/css-align/blocks/justify-self-vrl-rtl-htb.html +testharness css/css-align/blocks/justify-self-vrl-rtl-vlr.html +testharness css/css-align/blocks/justify-self-vrl-rtl-vrl.html testharness css/css-align/content-distribution/parse-align-content-001.html testharness css/css-align/content-distribution/parse-align-content-002.html testharness css/css-align/content-distribution/parse-align-content-003.html @@ -27760,6 +29974,7 @@ testharness css/css-align/gaps/gap-animation-003.html testharness css/css-align/gaps/gap-animation-004.html testharness css/css-align/gaps/gap-normal-computed-001.html testharness css/css-align/gaps/gap-parsing-001.html +testharness css/css-align/gaps/gap-parsing-002.html testharness css/css-align/gaps/grid-column-gap-parsing-001.html testharness css/css-align/gaps/grid-gap-parsing-001.html testharness css/css-align/gaps/grid-row-gap-parsing-001.html @@ -27768,6 +29983,7 @@ testharness css/css-align/gaps/row-gap-animation-002.html testharness css/css-align/gaps/row-gap-animation-003.html testharness css/css-align/gaps/row-gap-parsing-001.html testharness css/css-align/inheritance.html +testharness css/css-align/multicol/align-content-multicol.html testharness css/css-align/parsing/align-content-computed.html testharness css/css-align/parsing/align-content-invalid.html testharness css/css-align/parsing/align-content-valid.html @@ -27777,9 +29993,6 @@ testharness css/css-align/parsing/align-items-valid.html testharness css/css-align/parsing/align-self-computed.html testharness css/css-align/parsing/align-self-invalid.html testharness css/css-align/parsing/align-self-valid.html -testharness css/css-align/parsing/align-tracks-computed.html -testharness css/css-align/parsing/align-tracks-invalid.html -testharness css/css-align/parsing/align-tracks-valid.html testharness css/css-align/parsing/column-gap-computed.html testharness css/css-align/parsing/column-gap-invalid.html testharness css/css-align/parsing/column-gap-valid.html @@ -27787,6 +30000,16 @@ testharness css/css-align/parsing/gap-computed.html testharness css/css-align/parsing/gap-invalid.html testharness css/css-align/parsing/gap-shorthand.html testharness css/css-align/parsing/gap-valid.html +testharness css/css-align/parsing/grid-column-gap-computed.html +testharness css/css-align/parsing/grid-column-gap-invalid.html +testharness css/css-align/parsing/grid-column-gap-valid.html +testharness css/css-align/parsing/grid-gap-computed.html +testharness css/css-align/parsing/grid-gap-invalid.html +testharness css/css-align/parsing/grid-gap-shorthand.html +testharness css/css-align/parsing/grid-gap-valid.html +testharness css/css-align/parsing/grid-row-gap-computed.html +testharness css/css-align/parsing/grid-row-gap-invalid.html +testharness css/css-align/parsing/grid-row-gap-valid.html testharness css/css-align/parsing/justify-content-computed.html testharness css/css-align/parsing/justify-content-invalid.html testharness css/css-align/parsing/justify-content-valid.html @@ -27796,9 +30019,6 @@ testharness css/css-align/parsing/justify-items-valid.html testharness css/css-align/parsing/justify-self-computed.html testharness css/css-align/parsing/justify-self-invalid.html testharness css/css-align/parsing/justify-self-valid.html -testharness css/css-align/parsing/justify-tracks-computed.html -testharness css/css-align/parsing/justify-tracks-invalid.html -testharness css/css-align/parsing/justify-tracks-valid.html testharness css/css-align/parsing/place-content-computed.html testharness css/css-align/parsing/place-content-invalid.html testharness css/css-align/parsing/place-content-shorthand.html @@ -27830,11 +30050,30 @@ testharness css/css-align/self-alignment/place-self-shorthand-003.html testharness css/css-align/self-alignment/place-self-shorthand-004.html testharness css/css-align/self-alignment/place-self-shorthand-005.html testharness css/css-align/self-alignment/place-self-shorthand-006.html +testharness css/css-anchor-position/anchor-animation-dynamic-default.html +testharness css/css-anchor-position/anchor-animation-dynamic-name.html +testharness css/css-anchor-position/anchor-animation-iacvt.html +testharness css/css-anchor-position/anchor-animation.html +testharness css/css-anchor-position/anchor-center-001.html +testharness css/css-anchor-position/anchor-center-htb-htb.html +testharness css/css-anchor-position/anchor-center-htb-vrl.html +testharness css/css-anchor-position/anchor-center-offset-change.html +testharness css/css-anchor-position/anchor-center-vrl-htb.html +testharness css/css-anchor-position/anchor-center-vrl-vrl.html +testharness css/css-anchor-position/anchor-fallback-invalidation.html +testharness css/css-anchor-position/anchor-getComputedStyle-001.html +testharness css/css-anchor-position/anchor-getComputedStyle-002.html +testharness css/css-anchor-position/anchor-getComputedStyle-003.html +testharness css/css-anchor-position/anchor-inherited.html +testharness css/css-anchor-position/anchor-inside-outside.html +testharness css/css-anchor-position/anchor-invalid-fallback.html testharness css/css-anchor-position/anchor-name-001.html testharness css/css-anchor-position/anchor-name-002.html testharness css/css-anchor-position/anchor-name-003.html +testharness css/css-anchor-position/anchor-name-004.html testharness css/css-anchor-position/anchor-name-basics.html testharness css/css-anchor-position/anchor-name-cross-shadow.html +testharness css/css-anchor-position/anchor-name-in-shadow-002.html testharness css/css-anchor-position/anchor-name-in-shadow.html testharness css/css-anchor-position/anchor-name-inline-001.html testharness css/css-anchor-position/anchor-name-multicol-001.html @@ -27873,13 +30112,31 @@ testharness css/css-anchor-position/anchor-position-writing-modes-001.html testharness css/css-anchor-position/anchor-position-writing-modes-002.html testharness css/css-anchor-position/anchor-query-custom-property-registration.html testharness css/css-anchor-position/anchor-query-fallback.html -testharness css/css-anchor-position/anchor-scroll-fallback-position-001.html -testharness css/css-anchor-position/anchor-scroll-fallback-position-002.html -testharness css/css-anchor-position/anchor-scroll-fallback-position-003.html -testharness css/css-anchor-position/anchor-scroll-fallback-position-004.html -testharness css/css-anchor-position/anchor-scroll-fallback-position-005.html -testharness css/css-anchor-position/anchor-scroll-js-expose.tentative.html +testharness css/css-anchor-position/anchor-scope-basic.html +testharness css/css-anchor-position/anchor-scope-dynamic.html +testharness css/css-anchor-position/anchor-scope-shadow.tentative.html +testharness css/css-anchor-position/anchor-scroll-002.html +testharness css/css-anchor-position/anchor-scroll-003.html +testharness css/css-anchor-position/anchor-scroll-004.html +testharness css/css-anchor-position/anchor-scroll-005.html +testharness css/css-anchor-position/anchor-scroll-006.html +testharness css/css-anchor-position/anchor-scroll-007.html +testharness css/css-anchor-position/anchor-scroll-js-expose.html +testharness css/css-anchor-position/anchor-scroll-position-try-001.html +testharness css/css-anchor-position/anchor-scroll-position-try-002.html +testharness css/css-anchor-position/anchor-scroll-position-try-003.html +testharness css/css-anchor-position/anchor-scroll-position-try-004.html +testharness css/css-anchor-position/anchor-scroll-position-try-005.html +testharness css/css-anchor-position/anchor-scroll-position-try-006.html +testharness css/css-anchor-position/anchor-scroll-position-try-007.html +testharness css/css-anchor-position/anchor-scroll-position-try-008.html +testharness css/css-anchor-position/anchor-scroll-position-try-009.html +testharness css/css-anchor-position/anchor-scroll-position-try-010.html +testharness css/css-anchor-position/anchor-scroll-position-try-011.html +testharness css/css-anchor-position/anchor-scroll-position-try-013.html +testharness css/css-anchor-position/anchor-scroll-position-try-014.html testharness css/css-anchor-position/anchor-size-001.html +testharness css/css-anchor-position/anchor-size-animation.html testharness css/css-anchor-position/anchor-size-minmax-001.html testharness css/css-anchor-position/anchor-size-parse-invalid.html testharness css/css-anchor-position/anchor-size-parse-valid.html @@ -27888,18 +30145,84 @@ testharness css/css-anchor-position/anchor-size-writing-modes-001.html testharness css/css-anchor-position/anchor-transition-001.html testharness css/css-anchor-position/anchor-transition-002.html testharness css/css-anchor-position/anchor-transition-003.html -testharness css/css-anchor-position/at-fallback-position-allowed-declarations.html -testharness css/css-anchor-position/at-fallback-position-parse.html -testharness css/css-anchor-position/at-position-fallback-invalidation-shadow-dom.html -testharness css/css-anchor-position/at-position-fallback-invalidation.html -testharness css/css-anchor-position/position-fallback-001.html -testharness css/css-anchor-position/position-fallback-002.html -testharness css/css-anchor-position/position-fallback-basics.html -testharness css/css-anchor-position/position-fallback-cascade-layer-reorder.html -testharness css/css-anchor-position/position-fallback-custom-property.html -testharness css/css-anchor-position/position-fallback-dynamic.html -testharness css/css-anchor-position/position-fallback-grid-001.html -testharness css/css-anchor-position/position-fallback-tree-scoped.html +testharness css/css-anchor-position/anchor-transition-attr.html +testharness css/css-anchor-position/anchor-transition-default.html +testharness css/css-anchor-position/anchor-transition-eval.html +testharness css/css-anchor-position/anchor-transition-focus.html +testharness css/css-anchor-position/anchor-transition-name.html +testharness css/css-anchor-position/anchor-typed-om.html +testharness css/css-anchor-position/at-position-try-allowed-declarations.html +testharness css/css-anchor-position/at-position-try-cssom.html +testharness css/css-anchor-position/at-position-try-invalidation-shadow-dom.html +testharness css/css-anchor-position/at-position-try-invalidation.html +testharness css/css-anchor-position/at-position-try-parse.html +testharness css/css-anchor-position/base-style-invalidation.html +testharness css/css-anchor-position/idlharness.html +testharness css/css-anchor-position/last-successful-basic.html +testharness css/css-anchor-position/last-successful-change-fallbacks.html +testharness css/css-anchor-position/last-successful-change-try-rule.html +testharness css/css-anchor-position/last-successful-intermediate-ignored.html +testharness css/css-anchor-position/parsing/anchor-scope-computed.html +testharness css/css-anchor-position/parsing/anchor-scope-parsing.html +testharness css/css-anchor-position/parsing/position-try-computed.html +testharness css/css-anchor-position/parsing/position-try-fallbacks-computed.html +testharness css/css-anchor-position/parsing/position-try-fallbacks-parsing.html +testharness css/css-anchor-position/parsing/position-try-order-computed.html +testharness css/css-anchor-position/parsing/position-try-order-parsing.html +testharness css/css-anchor-position/parsing/position-try-parsing.html +testharness css/css-anchor-position/parsing/position-visibility-computed.tentative.html +testharness css/css-anchor-position/parsing/position-visibility-parsing.tentative.html +testharness css/css-anchor-position/popover-anchor-backdrop-transition.html +testharness css/css-anchor-position/position-anchor-003.html +testharness css/css-anchor-position/position-anchor-basics.html +testharness css/css-anchor-position/position-area-align-justify-wm-dir.html +testharness css/css-anchor-position/position-area-align-justify.html +testharness css/css-anchor-position/position-area-anchor-outside.html +testharness css/css-anchor-position/position-area-anchor-partially-outside.html +testharness css/css-anchor-position/position-area-basic.html +testharness css/css-anchor-position/position-area-computed-insets.html +testharness css/css-anchor-position/position-area-computed.html +testharness css/css-anchor-position/position-area-in-grid.html +testharness css/css-anchor-position/position-area-in-position-try.html +testharness css/css-anchor-position/position-area-interpolation.html +testharness css/css-anchor-position/position-area-parsing.html +testharness css/css-anchor-position/position-area-value.html +testharness css/css-anchor-position/position-area-with-insets.html +testharness css/css-anchor-position/position-area-wm-dir.html +testharness css/css-anchor-position/position-try-001.html +testharness css/css-anchor-position/position-try-002.html +testharness css/css-anchor-position/position-try-003.html +testharness css/css-anchor-position/position-try-004.html +testharness css/css-anchor-position/position-try-backdrop.html +testharness css/css-anchor-position/position-try-cascade-layer-reorder.html +testharness css/css-anchor-position/position-try-cascade.html +testharness css/css-anchor-position/position-try-container-query.html +testharness css/css-anchor-position/position-try-custom-property.html +testharness css/css-anchor-position/position-try-dynamic.html +testharness css/css-anchor-position/position-try-fallbacks-limit.html +testharness css/css-anchor-position/position-try-grid-001.html +testharness css/css-anchor-position/position-try-initial-transition.html +testharness css/css-anchor-position/position-try-order-basic.html +testharness css/css-anchor-position/position-try-order-position-area.html +testharness css/css-anchor-position/position-try-position-anchor.html +testharness css/css-anchor-position/position-try-pseudo-element.html +testharness css/css-anchor-position/position-try-transition-basic.html +testharness css/css-anchor-position/position-try-transition-flip.html +testharness css/css-anchor-position/position-try-tree-scoped.html +testharness css/css-anchor-position/position-try-typed-om.html +testharness css/css-anchor-position/property-interpolations.html +testharness css/css-anchor-position/pseudo-element-anchor-dynamic.html +testharness css/css-anchor-position/pseudo-element-anchor.html +testharness css/css-anchor-position/try-tactic-alignment.html +testharness css/css-anchor-position/try-tactic-anchor.html +testharness css/css-anchor-position/try-tactic-back-to-base.html +testharness css/css-anchor-position/try-tactic-base.html +testharness css/css-anchor-position/try-tactic-basic.html +testharness css/css-anchor-position/try-tactic-margin.html +testharness css/css-anchor-position/try-tactic-percentage.html +testharness css/css-anchor-position/try-tactic-position-area.html +testharness css/css-anchor-position/try-tactic-sizing.html +testharness css/css-anchor-position/try-tactic-wm.html testharness css/css-animations/AnimationEffect-getComputedTiming.tentative.html testharness css/css-animations/AnimationEffect-updateTiming.tentative.html testharness css/css-animations/CSSAnimation-animationName.tentative.html @@ -27919,6 +30242,7 @@ testharness css/css-animations/Element-getAnimations.tentative.html testharness css/css-animations/KeyframeEffect-getKeyframes.tentative.html testharness css/css-animations/KeyframeEffect-setKeyframes.tentative.html testharness css/css-animations/KeyframeEffect-target.tentative.html +testharness css/css-animations/animate-with-color-mix.html testharness css/css-animations/animation-base-response-001.html testharness css/css-animations/animation-base-response-002.html testharness css/css-animations/animation-base-response-003.html @@ -27927,12 +30251,14 @@ testharness css/css-animations/animation-before-initial-box-construction-001.htm testharness css/css-animations/animation-change-underlying-value-changed-in-flight.html testharness css/css-animations/animation-composition-keyframes.html testharness css/css-animations/animation-composition.html +testharness css/css-animations/animation-css-variable-dependent-property.html testharness css/css-animations/animation-css-variable-in-keyframe-adjusted.html testharness css/css-animations/animation-important-001.html testharness css/css-animations/animation-iteration-count-009.html testharness css/css-animations/animation-iteration-count-calc.html testharness css/css-animations/animation-multiple-from-to-keyframes-with-only-timing-function.html testharness css/css-animations/animation-play-state-005.tentative.html +testharness css/css-animations/animation-restarted-after-changing-iteration-count-after-completion.html testharness css/css-animations/animation-style-element-replaced-with-keyframes-rule-of-same-name.html testharness css/css-animations/animationevent-interface.html testharness css/css-animations/animationevent-marker-pseudoelement.html @@ -27941,6 +30267,12 @@ testharness css/css-animations/animationevent-types.html testharness css/css-animations/computed-style-animation-parsing.html testharness css/css-animations/dialog-animation.html testharness css/css-animations/dialog-backdrop-animation.html +testharness css/css-animations/display-interpolation.html +testharness css/css-animations/display-none-dont-cancel-pseudo.tentative.html +testharness css/css-animations/display-none-dont-cancel.tentative.html +testharness css/css-animations/display-none-prevents-starting-in-subtree.html +testharness css/css-animations/display-none-to-display-block-dont-cancel.tentative.html +testharness css/css-animations/empty-pseudo-class-with-animation.html testharness css/css-animations/event-dispatch.tentative.html testharness css/css-animations/event-order.tentative.html testharness css/css-animations/historical.html @@ -27954,15 +30286,7 @@ testharness css/css-animations/parsing/animation-composition-invalid.tentative.h testharness css/css-animations/parsing/animation-composition-valid.tentative.html testharness css/css-animations/parsing/animation-computed.html testharness css/css-animations/parsing/animation-delay-computed.html -testharness css/css-animations/parsing/animation-delay-end-computed.html -testharness css/css-animations/parsing/animation-delay-end-invalid.html -testharness css/css-animations/parsing/animation-delay-end-valid.html testharness css/css-animations/parsing/animation-delay-invalid.html -testharness css/css-animations/parsing/animation-delay-shorthand-computed.html -testharness css/css-animations/parsing/animation-delay-shorthand.html -testharness css/css-animations/parsing/animation-delay-start-computed.html -testharness css/css-animations/parsing/animation-delay-start-invalid.html -testharness css/css-animations/parsing/animation-delay-start-valid.html testharness css/css-animations/parsing/animation-delay-valid.html testharness css/css-animations/parsing/animation-direction-computed.html testharness css/css-animations/parsing/animation-direction-invalid.html @@ -27991,7 +30315,6 @@ testharness css/css-animations/parsing/animation-range-start-computed.html testharness css/css-animations/parsing/animation-range-start-invalid.html testharness css/css-animations/parsing/animation-range-start-valid.html testharness css/css-animations/parsing/animation-shorthand.html -testharness css/css-animations/parsing/animation-shorthand.tentative.html testharness css/css-animations/parsing/animation-valid.html testharness css/css-animations/parsing/keyframes-allowed-properties.html testharness css/css-animations/parsing/keyframes-name-invalid.html @@ -27999,8 +30322,14 @@ testharness css/css-animations/parsing/keyframes-name-valid.html testharness css/css-animations/pending-style-changes-001.html testharness css/css-animations/responsive/column-rule-color-001.html testharness css/css-animations/responsive/column-width-001.html +testharness css/css-animations/responsive/line-height.html +testharness css/css-animations/sample-on-last-keyframe.html +testharness css/css-animations/stability/animation-event-destroy-renderer.html testharness css/css-animations/style-animation-parsing.html +testharness css/css-animations/transition-properties-not-animatable.html +testharness css/css-animations/transition-ready-time-offscreen.html testharness css/css-backgrounds/animations/background-color-interpolation.html +testharness css/css-backgrounds/animations/background-color-transition-colormix.html testharness css/css-backgrounds/animations/background-image-interpolation.html testharness css/css-backgrounds/animations/background-position-interpolation.html testharness css/css-backgrounds/animations/background-position-origin-interpolation.html @@ -28028,12 +30357,14 @@ testharness css/css-backgrounds/animations/border-top-width-composition.html testharness css/css-backgrounds/animations/border-width-interpolation.html testharness css/css-backgrounds/animations/box-shadow-composition.html testharness css/css-backgrounds/animations/box-shadow-interpolation.html +testharness css/css-backgrounds/animations/discrete-no-interpolation.html testharness css/css-backgrounds/background-331.html testharness css/css-backgrounds/background-332.html testharness css/css-backgrounds/background-333.html testharness css/css-backgrounds/background-335.html testharness css/css-backgrounds/background-336.html testharness css/css-backgrounds/background-clip-001.html +testharness css/css-backgrounds/background-image-cors-no-reload.html testharness css/css-backgrounds/background-origin-001.html testharness css/css-backgrounds/background-size-001.html testharness css/css-backgrounds/border-image-repeat_repeatnegx_none_50px.html @@ -28115,7 +30446,56 @@ testharness css/css-backgrounds/parsing/box-shadow-computed.html testharness css/css-backgrounds/parsing/box-shadow-invalid.html testharness css/css-backgrounds/parsing/box-shadow-valid.html testharness css/css-backgrounds/parsing/webkit-border-radius-valid.html +testharness css/css-borders/border-image-width-interpolation-math-functions.html testharness css/css-borders/border-width-rounding.tentative.html +testharness css/css-borders/tentative/parsing/border-block-end-radius-computed.html +testharness css/css-borders/tentative/parsing/border-block-end-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-block-end-radius-valid.html +testharness css/css-borders/tentative/parsing/border-block-start-radius-computed.html +testharness css/css-borders/tentative/parsing/border-block-start-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-block-start-radius-valid.html +testharness css/css-borders/tentative/parsing/border-bottom-radius-computed.html +testharness css/css-borders/tentative/parsing/border-bottom-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-bottom-radius-valid.html +testharness css/css-borders/tentative/parsing/border-clip-computed.html +testharness css/css-borders/tentative/parsing/border-clip-invalid.html +testharness css/css-borders/tentative/parsing/border-clip-valid.html +testharness css/css-borders/tentative/parsing/border-inline-end-radius-computed.html +testharness css/css-borders/tentative/parsing/border-inline-end-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-inline-end-radius-valid.html +testharness css/css-borders/tentative/parsing/border-inline-start-radius-computed.html +testharness css/css-borders/tentative/parsing/border-inline-start-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-inline-start-radius-valid.html +testharness css/css-borders/tentative/parsing/border-left-radius-computed.html +testharness css/css-borders/tentative/parsing/border-left-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-left-radius-valid.html +testharness css/css-borders/tentative/parsing/border-right-radius-computed.html +testharness css/css-borders/tentative/parsing/border-right-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-right-radius-valid.html +testharness css/css-borders/tentative/parsing/border-top-radius-computed.html +testharness css/css-borders/tentative/parsing/border-top-radius-invalid.html +testharness css/css-borders/tentative/parsing/border-top-radius-valid.html +testharness css/css-borders/tentative/parsing/box-shadow-blur-computed.html +testharness css/css-borders/tentative/parsing/box-shadow-blur-invalid.html +testharness css/css-borders/tentative/parsing/box-shadow-blur-valid.html +testharness css/css-borders/tentative/parsing/box-shadow-color-computed.html +testharness css/css-borders/tentative/parsing/box-shadow-color-invalid.html +testharness css/css-borders/tentative/parsing/box-shadow-color-valid.html +testharness css/css-borders/tentative/parsing/box-shadow-offset-computed.html +testharness css/css-borders/tentative/parsing/box-shadow-offset-invalid.html +testharness css/css-borders/tentative/parsing/box-shadow-offset-valid.html +testharness css/css-borders/tentative/parsing/box-shadow-position-computed.html +testharness css/css-borders/tentative/parsing/box-shadow-position-invalid.html +testharness css/css-borders/tentative/parsing/box-shadow-position-valid.html +testharness css/css-borders/tentative/parsing/box-shadow-spread-computed.html +testharness css/css-borders/tentative/parsing/box-shadow-spread-invalid.html +testharness css/css-borders/tentative/parsing/box-shadow-spread-valid.html +testharness css/css-borders/tentative/parsing/corner-shape-computed.html +testharness css/css-borders/tentative/parsing/corner-shape-invalid.html +testharness css/css-borders/tentative/parsing/corner-shape-valid.html +testharness css/css-borders/tentative/parsing/corners-computed.html +testharness css/css-borders/tentative/parsing/corners-invalid.html +testharness css/css-borders/tentative/parsing/corners-valid.html testharness css/css-box/animation/margin-bottom-composition.html testharness css/css-box/animation/margin-interpolation.html testharness css/css-box/animation/margin-left-composition.html @@ -28128,6 +30508,48 @@ testharness css/css-box/animation/padding-right-composition.html testharness css/css-box/animation/padding-top-composition.html testharness css/css-box/box-chrome-crash-001.html testharness css/css-box/inheritance.html +testharness css/css-box/margin-trim/block-container-block-end-last-child-with-border.html +testharness css/css-box/margin-trim/block-container-block-end-nested-last-child-with-border.html +testharness css/css-box/margin-trim/block-container-block-end-self-collapsing-children-nested-at-bottom.html +testharness css/css-box/margin-trim/block-container-block-end-self-collapsing-children-nested-margin-trim.html +testharness css/css-box/margin-trim/block-container-block-end-self-collapsing-children-offsets-nested-multiple-times.html +testharness css/css-box/margin-trim/block-container-block-end-self-collapsing-children-offsets-nested-once.html +testharness css/css-box/margin-trim/block-container-block-end-self-collapsing-children-offsets-vert-lr.html +testharness css/css-box/margin-trim/block-container-block-end-self-collapsing-children-offsets.html +testharness css/css-box/margin-trim/computed-margin-values/block-container-block-end-nested-child.html +testharness css/css-box/margin-trim/computed-margin-values/block-container-block-end-with-self-collapsing-children.html +testharness css/css-box/margin-trim/computed-margin-values/block-container-block-end.html +testharness css/css-box/margin-trim/computed-margin-values/block-container-block-start-child-with-border.html +testharness css/css-box/margin-trim/computed-margin-values/block-container-block-start-self-collapsing-nested.html +testharness css/css-box/margin-trim/computed-margin-values/block-container-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-block-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-inline-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-inline-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-multi-line-block-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-multi-line-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-multi-line-block.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-multi-line-inline-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-multi-line-inline-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-column-style-change-triggers-layout-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-block-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-block.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-inline-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-inline-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-multi-line-block-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-multi-line-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-multi-line-block.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-multi-line-inline-end.html +testharness css/css-box/margin-trim/computed-margin-values/flexbox-row-multi-line-inline-start.html +testharness css/css-box/margin-trim/computed-margin-values/grid-block-end-column-auto-flow.html +testharness css/css-box/margin-trim/computed-margin-values/grid-block-end-item-spans-multiple-rows.html +testharness css/css-box/margin-trim/computed-margin-values/grid-block-end.html +testharness css/css-box/margin-trim/computed-margin-values/grid-block-start.html +testharness css/css-box/margin-trim/computed-margin-values/grid-inline-end-columns-added-to-end.html +testharness css/css-box/margin-trim/computed-margin-values/grid-inline-end-items-in-last-column-trimmed.html +testharness css/css-box/margin-trim/computed-margin-values/grid-inline-start-item-negative-span.html +testharness css/css-box/margin-trim/computed-margin-values/grid-inline-start.html testharness css/css-box/parsing/clear-computed.html testharness css/css-box/parsing/clear-invalid.html testharness css/css-box/parsing/clear-valid.html @@ -28157,6 +30579,7 @@ testharness css/css-box/parsing/visibility-invalid.html testharness css/css-box/parsing/visibility-valid.html testharness css/css-box/parsing/width-invalid.html testharness css/css-box/parsing/width-valid.html +testharness css/css-break/animation/break-no-interpolation.html testharness css/css-break/animation/orphans-interpolation.html testharness css/css-break/animation/widows-interpolation.html testharness css/css-break/block-end-aligned-abspos.html @@ -28166,9 +30589,11 @@ testharness css/css-break/hit-test-inline-fragmentation-with-border-radius.html testharness css/css-break/hit-test-transformed-inline.html testharness css/css-break/hit-test-transformed.html testharness css/css-break/inheritance.html +testharness css/css-break/inline-with-float-003.html testharness css/css-break/offset-top-block-in-inline.html testharness css/css-break/out-of-flow-in-multicolumn-108.html testharness css/css-break/overflow-clip-007.html +testharness css/css-break/page-break-important.html testharness css/css-break/page-break-legacy-shorthands.html testharness css/css-break/parsing/box-decoration-break-computed.html testharness css/css-break/parsing/box-decoration-break-invalid.html @@ -28195,13 +30620,18 @@ testharness css/css-break/table/repeated-section/hit-test-relative-in-transform. testharness css/css-break/table/repeated-section/hit-test-relative.tentative.html testharness css/css-break/table/repeated-section/hit-test.tentative.html testharness css/css-break/table/table-parts-offsetheight.html +testharness css/css-break/table/table-parts-offsets-vertical-lr.tentative.html +testharness css/css-break/table/table-parts-offsets-vertical-rl.tentative.html +testharness css/css-break/table/table-parts-offsets.tentative.html testharness css/css-break/transform-010.html +testharness css/css-break/transform-011.html testharness css/css-break/widows-orphans-005.html testharness css/css-cascade/all-prop-initial-xml.html testharness css/css-cascade/all-prop-revert-layer-noop.html testharness css/css-cascade/all-prop-revert-layer.html testharness css/css-cascade/all-prop-revert-noop.html testharness css/css-cascade/at-scope-parsing.html +testharness css/css-cascade/at-scope-relative-syntax.html testharness css/css-cascade/idlharness.html testharness css/css-cascade/import-conditions.html testharness css/css-cascade/important-vs-inline-001.html @@ -28226,6 +30656,7 @@ testharness css/css-cascade/parsing/all-invalid.html testharness css/css-cascade/parsing/all-valid.html testharness css/css-cascade/parsing/layer-import-parsing.html testharness css/css-cascade/parsing/layer.html +testharness css/css-cascade/parsing/supports-import-parsing.html testharness css/css-cascade/presentational-hints-cascade.html testharness css/css-cascade/presentational-hints-rollback.html testharness css/css-cascade/revert-layer-008.html @@ -28238,29 +30669,48 @@ testharness css/css-cascade/revert-val-008.html testharness css/css-cascade/revert-val-009.html testharness css/css-cascade/revert-val-010.html testharness css/css-cascade/revert-val-011.html +testharness css/css-cascade/scope-container.html +testharness css/css-cascade/scope-cssom.html testharness css/css-cascade/scope-deep.html testharness css/css-cascade/scope-evaluation.html +testharness css/css-cascade/scope-focus.html +testharness css/css-cascade/scope-hover.html testharness css/css-cascade/scope-implicit-external.html testharness css/css-cascade/scope-implicit.html testharness css/css-cascade/scope-invalidation.html +testharness css/css-cascade/scope-layer.html +testharness css/css-cascade/scope-media.html +testharness css/css-cascade/scope-name-defining-rules.html +testharness css/css-cascade/scope-nesting.html testharness css/css-cascade/scope-proximity.html +testharness css/css-cascade/scope-shadow.tentative.html testharness css/css-cascade/scope-specificity.html +testharness css/css-cascade/scope-starting-style.html +testharness css/css-cascade/scope-style-sharing-001.html +testharness css/css-cascade/scope-style-sharing-002.html +testharness css/css-cascade/scope-supports.html +testharness css/css-cascade/scope-visited-cssom.html testharness css/css-cascade/unset-value-storage.html +testharness css/css-color-adjust/animation/color-scheme-no-interpolation.html +testharness css/css-color-adjust/animation/forced-color-adjust-no-interpolation.html testharness css/css-color-adjust/inheritance.html testharness css/css-color-adjust/parsing/color-scheme-computed.html testharness css/css-color-adjust/parsing/color-scheme-invalid.html testharness css/css-color-adjust/parsing/color-scheme-valid.html testharness css/css-color-adjust/parsing/print-color-adjust.html testharness css/css-color-adjust/rendering/dark-color-scheme/color-scheme-color-property.html +testharness css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-dynamic.html testharness css/css-color-adjust/rendering/dark-color-scheme/color-scheme-root-background.html testharness css/css-color-adjust/rendering/dark-color-scheme/color-scheme-system-colors.html testharness css/css-color/animation/color-composition.html testharness css/css-color/animation/color-interpolation.html testharness css/css-color/animation/opacity-interpolation.html testharness css/css-color/color-initial-canvastext.html +testharness css/css-color/color-mix-currentcolor-visited-getcomputedstyle.html testharness css/css-color/inheritance.html +testharness css/css-color/light-dark-basic.html +testharness css/css-color/light-dark-currentcolor-in-color.html testharness css/css-color/nested-color-mix-with-currentcolor.html -testharness css/css-color/parsing/color-computed-color-contrast-function.html testharness css/css-color/parsing/color-computed-color-function.html testharness css/css-color/parsing/color-computed-color-mix-function.html testharness css/css-color/parsing/color-computed-hex-color.html @@ -28271,8 +30721,8 @@ testharness css/css-color/parsing/color-computed-named-color.html testharness css/css-color/parsing/color-computed-relative-color.html testharness css/css-color/parsing/color-computed-rgb.html testharness css/css-color/parsing/color-computed.html -testharness css/css-color/parsing/color-invalid-color-contrast-function.html testharness css/css-color/parsing/color-invalid-color-function.html +testharness css/css-color/parsing/color-invalid-color-layers-function.html testharness css/css-color/parsing/color-invalid-color-mix-function.html testharness css/css-color/parsing/color-invalid-hex-color.html testharness css/css-color/parsing/color-invalid-hsl.html @@ -28282,8 +30732,9 @@ testharness css/css-color/parsing/color-invalid-named-color.html testharness css/css-color/parsing/color-invalid-relative-color.html testharness css/css-color/parsing/color-invalid-rgb.html testharness css/css-color/parsing/color-invalid.html -testharness css/css-color/parsing/color-valid-color-contrast-function.html +testharness css/css-color/parsing/color-mix-out-of-gamut.html testharness css/css-color/parsing/color-valid-color-function.html +testharness css/css-color/parsing/color-valid-color-layers-function.html testharness css/css-color/parsing/color-valid-color-mix-function.html testharness css/css-color/parsing/color-valid-hsl.html testharness css/css-color/parsing/color-valid-hwb.html @@ -28295,9 +30746,127 @@ testharness css/css-color/parsing/color-valid.html testharness css/css-color/parsing/opacity-computed.html testharness css/css-color/parsing/opacity-invalid.html testharness css/css-color/parsing/opacity-valid.html +testharness css/css-color/parsing/relative-color-out-of-gamut.html testharness css/css-color/system-color-compute.html testharness css/css-color/system-color-consistency.html +testharness css/css-color/system-color-support.html testharness css/css-conditional/at-supports-whitespace.html +testharness css/css-conditional/container-queries/animation-container-size.html +testharness css/css-conditional/container-queries/animation-container-type-dynamic.html +testharness css/css-conditional/container-queries/animation-nested-animation.html +testharness css/css-conditional/container-queries/animation-nested-transition.html +testharness css/css-conditional/container-queries/aspect-ratio-feature-evaluation.html +testharness css/css-conditional/container-queries/at-container-parsing.html +testharness css/css-conditional/container-queries/at-container-serialization.html +testharness css/css-conditional/container-queries/at-container-style-parsing.html +testharness css/css-conditional/container-queries/at-container-style-serialization.html +testharness css/css-conditional/container-queries/auto-scrollbars.html +testharness css/css-conditional/container-queries/backdrop-invalidation.html +testharness css/css-conditional/container-queries/calc-evaluation.html +testharness css/css-conditional/container-queries/canvas-as-container-005.html +testharness css/css-conditional/container-queries/canvas-as-container-006.html +testharness css/css-conditional/container-queries/column-spanner-in-container.html +testharness css/css-conditional/container-queries/conditional-container-status.html +testharness css/css-conditional/container-queries/container-computed.html +testharness css/css-conditional/container-queries/container-for-shadow-dom.html +testharness css/css-conditional/container-queries/container-inheritance.html +testharness css/css-conditional/container-queries/container-inner-at-rules.html +testharness css/css-conditional/container-queries/container-inside-multicol-with-table.html +testharness css/css-conditional/container-queries/container-longhand-animation-type.html +testharness css/css-conditional/container-queries/container-name-computed.html +testharness css/css-conditional/container-queries/container-name-invalidation.html +testharness css/css-conditional/container-queries/container-name-parsing.html +testharness css/css-conditional/container-queries/container-name-tree-scoped.html +testharness css/css-conditional/container-queries/container-nested.html +testharness css/css-conditional/container-queries/container-parsing.html +testharness css/css-conditional/container-queries/container-selection-unknown-features.html +testharness css/css-conditional/container-queries/container-selection.html +testharness css/css-conditional/container-queries/container-size-invalidation-after-load.html +testharness css/css-conditional/container-queries/container-size-invalidation.html +testharness css/css-conditional/container-queries/container-size-nested-invalidation.html +testharness css/css-conditional/container-queries/container-size-shadow-invalidation.html +testharness css/css-conditional/container-queries/container-type-computed.html +testharness css/css-conditional/container-queries/container-type-containment.html +testharness css/css-conditional/container-queries/container-type-invalidation.html +testharness css/css-conditional/container-queries/container-type-layout-invalidation.html +testharness css/css-conditional/container-queries/container-type-parsing.html +testharness css/css-conditional/container-queries/container-units-animation.html +testharness css/css-conditional/container-queries/container-units-basic.html +testharness css/css-conditional/container-queries/container-units-computational-independence.html +testharness css/css-conditional/container-queries/container-units-content-box.html +testharness css/css-conditional/container-queries/container-units-in-at-container-dynamic.html +testharness css/css-conditional/container-queries/container-units-in-at-container-fallback.html +testharness css/css-conditional/container-queries/container-units-in-at-container.html +testharness css/css-conditional/container-queries/container-units-ineligible-container.html +testharness css/css-conditional/container-queries/container-units-invalidation.html +testharness css/css-conditional/container-queries/container-units-media-queries.html +testharness css/css-conditional/container-queries/container-units-selection.html +testharness css/css-conditional/container-queries/container-units-shadow.html +testharness css/css-conditional/container-queries/container-units-small-viewport-fallback.html +testharness css/css-conditional/container-queries/container-units-svglength.html +testharness css/css-conditional/container-queries/container-units-typed-om.html +testharness css/css-conditional/container-queries/counters-flex-circular.html +testharness css/css-conditional/container-queries/custom-property-style-queries.html +testharness css/css-conditional/container-queries/custom-property-style-query-change.html +testharness css/css-conditional/container-queries/deep-nested-inline-size-containers.html +testharness css/css-conditional/container-queries/display-contents-dynamic-style-queries.html +testharness css/css-conditional/container-queries/display-contents.html +testharness css/css-conditional/container-queries/display-none.html +testharness css/css-conditional/container-queries/font-relative-calc-dynamic.html +testharness css/css-conditional/container-queries/font-relative-units-dynamic.html +testharness css/css-conditional/container-queries/font-relative-units.html +testharness css/css-conditional/container-queries/fragmented-container-001.html +testharness css/css-conditional/container-queries/get-animations.html +testharness css/css-conditional/container-queries/grid-container.html +testharness css/css-conditional/container-queries/grid-item-container.html +testharness css/css-conditional/container-queries/idlharness.html +testharness css/css-conditional/container-queries/iframe-in-container-invalidation.html +testharness css/css-conditional/container-queries/iframe-invalidation.html +testharness css/css-conditional/container-queries/ineligible-containment.html +testharness css/css-conditional/container-queries/inheritance-from-container.html +testharness css/css-conditional/container-queries/inline-size-and-min-width.html +testharness css/css-conditional/container-queries/inline-size-containment-vertical-rl.html +testharness css/css-conditional/container-queries/inline-size-containment.html +testharness css/css-conditional/container-queries/layout-dependent-focus.html +testharness css/css-conditional/container-queries/multicol-container-001.html +testharness css/css-conditional/container-queries/nested-query-containers.html +testharness css/css-conditional/container-queries/nested-size-style-container-invalidation.html +testharness css/css-conditional/container-queries/never-match-container.html +testharness css/css-conditional/container-queries/no-layout-containment-scroll.html +testharness css/css-conditional/container-queries/orthogonal-wm-container-query.html +testharness css/css-conditional/container-queries/percentage-padding-orthogonal.html +testharness css/css-conditional/container-queries/pseudo-elements-001.html +testharness css/css-conditional/container-queries/pseudo-elements-003.html +testharness css/css-conditional/container-queries/pseudo-elements-004.html +testharness css/css-conditional/container-queries/pseudo-elements-005.html +testharness css/css-conditional/container-queries/pseudo-elements-006.html +testharness css/css-conditional/container-queries/pseudo-elements-007.html +testharness css/css-conditional/container-queries/pseudo-elements-008.html +testharness css/css-conditional/container-queries/pseudo-elements-013.html +testharness css/css-conditional/container-queries/query-content-box.html +testharness css/css-conditional/container-queries/query-evaluation-style.html +testharness css/css-conditional/container-queries/query-evaluation.html +testharness css/css-conditional/container-queries/reattach-container-with-dirty-child.html +testharness css/css-conditional/container-queries/registered-color-style-queries.html +testharness css/css-conditional/container-queries/sibling-layout-dependency.html +testharness css/css-conditional/container-queries/size-container-no-principal-box.html +testharness css/css-conditional/container-queries/size-feature-evaluation.html +testharness css/css-conditional/container-queries/style-change-in-container.html +testharness css/css-conditional/container-queries/style-container-for-shadow-dom.html +testharness css/css-conditional/container-queries/style-container-invalidation-inheritance.html +testharness css/css-conditional/container-queries/style-not-sharing-float.html +testharness css/css-conditional/container-queries/style-query-with-unknown-width.html +testharness css/css-conditional/container-queries/svg-foreignobject-child-container.html +testharness css/css-conditional/container-queries/svg-root-size-container.html +testharness css/css-conditional/container-queries/top-layer-dialog-container.html +testharness css/css-conditional/container-queries/top-layer-dialog.html +testharness css/css-conditional/container-queries/top-layer-nested-dialog.html +testharness css/css-conditional/container-queries/transition-scrollbars.html +testharness css/css-conditional/container-queries/transition-style-change-event-002.html +testharness css/css-conditional/container-queries/transition-style-change-event.html +testharness css/css-conditional/container-queries/unsupported-axis.html +testharness css/css-conditional/container-queries/viewport-units-dynamic.html +testharness css/css-conditional/container-queries/viewport-units.html testharness css/css-conditional/idlharness.html testharness css/css-conditional/js/001.html testharness css/css-conditional/js/CSS-supports-CSSStyleDeclaration.html @@ -28310,115 +30879,16 @@ testharness css/css-conditional/js/supports-conditionText.html testharness css/css-contain/contain-chrome-thcrash-001.html testharness css/css-contain/contain-flexbox-outline.html testharness css/css-contain/contain-inline-size-replaced.html +testharness css/css-contain/contain-layout-dynamic-001.html testharness css/css-contain/contain-paint-049.html +testharness css/css-contain/contain-paint-dynamic-001.html +testharness css/css-contain/contain-size-dynamic-001.html testharness css/css-contain/contain-size-grid-003.html testharness css/css-contain/contain-size-grid-004.html testharness css/css-contain/contain-size-grid-006.html testharness css/css-contain/contain-size-multicol-as-flex-item.html -testharness css/css-contain/container-queries/animation-container-size.html -testharness css/css-contain/container-queries/animation-container-type-dynamic.html -testharness css/css-contain/container-queries/animation-nested-animation.html -testharness css/css-contain/container-queries/animation-nested-transition.html -testharness css/css-contain/container-queries/aspect-ratio-feature-evaluation.html -testharness css/css-contain/container-queries/at-container-parsing.html -testharness css/css-contain/container-queries/at-container-serialization.html -testharness css/css-contain/container-queries/at-container-style-parsing.html -testharness css/css-contain/container-queries/at-container-style-serialization.html -testharness css/css-contain/container-queries/auto-scrollbars.html -testharness css/css-contain/container-queries/backdrop-invalidation.html -testharness css/css-contain/container-queries/calc-evaluation.html -testharness css/css-contain/container-queries/canvas-as-container-005.html -testharness css/css-contain/container-queries/canvas-as-container-006.html -testharness css/css-contain/container-queries/column-spanner-in-container.html -testharness css/css-contain/container-queries/conditional-container-status.html -testharness css/css-contain/container-queries/container-computed.html -testharness css/css-contain/container-queries/container-for-shadow-dom.html -testharness css/css-contain/container-queries/container-inheritance.html -testharness css/css-contain/container-queries/container-inner-at-rules.html -testharness css/css-contain/container-queries/container-inside-multicol-with-table.html -testharness css/css-contain/container-queries/container-longhand-animation-type.html -testharness css/css-contain/container-queries/container-name-computed.html -testharness css/css-contain/container-queries/container-name-invalidation.html -testharness css/css-contain/container-queries/container-name-parsing.html -testharness css/css-contain/container-queries/container-name-tree-scoped.html -testharness css/css-contain/container-queries/container-nested.html -testharness css/css-contain/container-queries/container-parsing.html -testharness css/css-contain/container-queries/container-selection.html -testharness css/css-contain/container-queries/container-size-invalidation-after-load.html -testharness css/css-contain/container-queries/container-size-invalidation.html -testharness css/css-contain/container-queries/container-size-nested-invalidation.html -testharness css/css-contain/container-queries/container-size-shadow-invalidation.html -testharness css/css-contain/container-queries/container-type-computed.html -testharness css/css-contain/container-queries/container-type-containment.html -testharness css/css-contain/container-queries/container-type-invalidation.html -testharness css/css-contain/container-queries/container-type-layout-invalidation.html -testharness css/css-contain/container-queries/container-type-parsing.html -testharness css/css-contain/container-queries/container-units-animation.html -testharness css/css-contain/container-queries/container-units-basic.html -testharness css/css-contain/container-queries/container-units-computational-independence.html -testharness css/css-contain/container-queries/container-units-in-at-container-dynamic.html -testharness css/css-contain/container-queries/container-units-in-at-container-fallback.html -testharness css/css-contain/container-queries/container-units-in-at-container.html -testharness css/css-contain/container-queries/container-units-ineligible-container.html -testharness css/css-contain/container-queries/container-units-invalidation.html -testharness css/css-contain/container-queries/container-units-media-queries.html -testharness css/css-contain/container-queries/container-units-selection.html -testharness css/css-contain/container-queries/container-units-shadow.html -testharness css/css-contain/container-queries/container-units-small-viewport-fallback.html -testharness css/css-contain/container-queries/container-units-svglength.html -testharness css/css-contain/container-queries/container-units-typed-om.html -testharness css/css-contain/container-queries/counters-flex-circular.html -testharness css/css-contain/container-queries/custom-property-style-queries.html -testharness css/css-contain/container-queries/custom-property-style-query-change.html -testharness css/css-contain/container-queries/deep-nested-inline-size-containers.html -testharness css/css-contain/container-queries/display-contents.html -testharness css/css-contain/container-queries/display-none.html -testharness css/css-contain/container-queries/font-relative-calc-dynamic.html -testharness css/css-contain/container-queries/font-relative-units-dynamic.html -testharness css/css-contain/container-queries/font-relative-units.html -testharness css/css-contain/container-queries/fragmented-container-001.html -testharness css/css-contain/container-queries/get-animations.html -testharness css/css-contain/container-queries/grid-container.html -testharness css/css-contain/container-queries/grid-item-container.html -testharness css/css-contain/container-queries/idlharness.html -testharness css/css-contain/container-queries/iframe-in-container-invalidation.html -testharness css/css-contain/container-queries/iframe-invalidation.html -testharness css/css-contain/container-queries/ineligible-containment.html -testharness css/css-contain/container-queries/inline-size-and-min-width.html -testharness css/css-contain/container-queries/inline-size-containment-vertical-rl.html -testharness css/css-contain/container-queries/inline-size-containment.html -testharness css/css-contain/container-queries/layout-dependent-focus.html -testharness css/css-contain/container-queries/multicol-container-001.html -testharness css/css-contain/container-queries/nested-query-containers.html -testharness css/css-contain/container-queries/never-match-container.html -testharness css/css-contain/container-queries/orthogonal-wm-container-query.html -testharness css/css-contain/container-queries/percentage-padding-orthogonal.html -testharness css/css-contain/container-queries/pseudo-elements-001.html -testharness css/css-contain/container-queries/pseudo-elements-003.html -testharness css/css-contain/container-queries/pseudo-elements-004.html -testharness css/css-contain/container-queries/pseudo-elements-005.html -testharness css/css-contain/container-queries/pseudo-elements-006.html -testharness css/css-contain/container-queries/pseudo-elements-007.html -testharness css/css-contain/container-queries/pseudo-elements-008.html -testharness css/css-contain/container-queries/query-content-box.html -testharness css/css-contain/container-queries/query-evaluation.html -testharness css/css-contain/container-queries/reattach-container-with-dirty-child.html -testharness css/css-contain/container-queries/sibling-layout-dependency.html -testharness css/css-contain/container-queries/size-container-no-principal-box.html -testharness css/css-contain/container-queries/size-feature-evaluation.html -testharness css/css-contain/container-queries/style-change-in-container.html -testharness css/css-contain/container-queries/style-not-sharing-float.html -testharness css/css-contain/container-queries/svg-foreignobject-child-container.html -testharness css/css-contain/container-queries/svg-root-size-container.html -testharness css/css-contain/container-queries/top-layer-dialog-container.html -testharness css/css-contain/container-queries/top-layer-dialog.html -testharness css/css-contain/container-queries/top-layer-nested-dialog.html -testharness css/css-contain/container-queries/transition-scrollbars.html -testharness css/css-contain/container-queries/transition-style-change-event-002.html -testharness css/css-contain/container-queries/transition-style-change-event.html -testharness css/css-contain/container-queries/unsupported-axis.html -testharness css/css-contain/container-queries/viewport-units-dynamic.html -testharness css/css-contain/container-queries/viewport-units.html +testharness css/css-contain/contain-style-dynamic-001.html +testharness css/css-contain/container-type-important.html testharness css/css-contain/content-visibility/animation-display-lock.html testharness css/css-contain/content-visibility/content-visibility-015.html testharness css/css-contain/content-visibility/content-visibility-016.html @@ -28446,14 +30916,48 @@ testharness css/css-contain/content-visibility/content-visibility-072.html testharness css/css-contain/content-visibility/content-visibility-077.html testharness css/css-contain/content-visibility/content-visibility-080.html testharness css/css-contain/content-visibility/content-visibility-081.html +testharness css/css-contain/content-visibility/content-visibility-086.html +testharness css/css-contain/content-visibility/content-visibility-087.html +testharness css/css-contain/content-visibility/content-visibility-088.html +testharness css/css-contain/content-visibility/content-visibility-089.html +testharness css/css-contain/content-visibility/content-visibility-090.html +testharness css/css-contain/content-visibility/content-visibility-091.html +testharness css/css-contain/content-visibility/content-visibility-092.html +testharness css/css-contain/content-visibility/content-visibility-093.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-001.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-002.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-003.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-004.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-005.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-006.html +testharness css/css-contain/content-visibility/content-visibility-anchor-positioning-007.html +testharness css/css-contain/content-visibility/content-visibility-animation-in-auto-subtree.html +testharness css/css-contain/content-visibility/content-visibility-animation-with-scroll-timeline-in-auto-subtree.html +testharness css/css-contain/content-visibility/content-visibility-animation-with-scroll-timeline-in-hidden-subtree.html +testharness css/css-contain/content-visibility/content-visibility-auto-first-observation-immediate.html +testharness css/css-contain/content-visibility/content-visibility-auto-relevancy-updates.html testharness css/css-contain/content-visibility/content-visibility-auto-state-changed-first-observation.html testharness css/css-contain/content-visibility/content-visibility-auto-state-changed-removed.html testharness css/css-contain/content-visibility/content-visibility-auto-state-changed.html +testharness css/css-contain/content-visibility/content-visibility-auto-text-fragment.html testharness css/css-contain/content-visibility/content-visibility-forced-layout-client-rects.html testharness css/css-contain/content-visibility/content-visibility-img.html testharness css/css-contain/content-visibility/content-visibility-input-image.html +testharness css/css-contain/content-visibility/content-visibility-interpolation.html +testharness css/css-contain/content-visibility/content-visibility-layout-containment-001.html +testharness css/css-contain/content-visibility/content-visibility-layout-paint-containment-001.html +testharness css/css-contain/content-visibility/content-visibility-size-containment-001.html +testharness css/css-contain/content-visibility/content-visibility-style-containment-001.html +testharness css/css-contain/content-visibility/content-visibility-svg-path.html +testharness css/css-contain/content-visibility/content-visibility-svg-rect.html +testharness css/css-contain/content-visibility/content-visibility-svg-text.html testharness css/css-contain/content-visibility/content-visibility-svg.html +testharness css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-003.html +testharness css/css-contain/content-visibility/content-visibility-web-animation-in-auto-subtree.html +testharness css/css-contain/content-visibility/content-visibility-with-popover-top-layer-006.html testharness css/css-contain/content-visibility/content-visibility-with-top-layer-006.html +testharness css/css-contain/content-visibility/content-visibility-with-top-layer-007.html +testharness css/css-contain/content-visibility/content-visibility-with-top-layer-008.html testharness css/css-contain/content-visibility/document-element-computed-style.html testharness css/css-contain/content-visibility/inheritance.html testharness css/css-contain/content-visibility/parsing/content-visibility-computed.html @@ -28466,7 +30970,11 @@ testharness css/css-contain/parsing/contain-invalid.html testharness css/css-contain/parsing/contain-valid.html testharness css/css-content/computed-value.html testharness css/css-content/content-animation.html +testharness css/css-content/content-no-interpolation.html testharness css/css-content/inheritance.html +testharness css/css-content/parsing/content-computed.html +testharness css/css-content/parsing/content-invalid.html +testharness css/css-content/parsing/content-valid.html testharness css/css-counter-styles/counter-style-at-rule/additive-symbols-syntax.html testharness css/css-counter-styles/counter-style-at-rule/fallback.html testharness css/css-counter-styles/counter-style-at-rule/name-syntax.html @@ -28482,10 +30990,12 @@ testharness css/css-device-adapt/documentElement-clientWidth-on-minimum-scale-si testharness css/css-device-adapt/viewport-user-scalable-no-clamp-to-max.tentative.html testharness css/css-device-adapt/viewport-user-scalable-no-clamp-to-min.tentative.html testharness css/css-device-adapt/viewport-user-scalable-no-wide-content.tentative.html +testharness css/css-display/accessibility/display-contents-role-and-label.html testharness css/css-display/animations/display-interpolation.html testharness css/css-display/animations/display-interpolation.tentative.html testharness css/css-display/display-contents-blockify-dynamic.html testharness css/css-display/display-contents-computed-style.html +testharness css/css-display/display-contents-focusable-001.html testharness css/css-display/display-contents-parsing-001.html testharness css/css-display/display-contents-svg-anchor-child.html testharness css/css-display/display-contents-svg-switch-child.html @@ -28495,14 +31005,22 @@ testharness css/css-display/display-math-on-non-mathml-elements.html testharness css/css-display/display-math-on-pseudo-elements-001.html testharness css/css-display/display-with-float-dynamic.html testharness css/css-display/display-with-float.html +testharness css/css-display/empty-text-baseline-001.html +testharness css/css-display/empty-text-baseline-002.html +testharness css/css-display/focus/display-contents-focus.html testharness css/css-display/inheritance.html testharness css/css-display/parsing/display-computed.html testharness css/css-display/parsing/display-invalid.html testharness css/css-display/parsing/display-valid.html +testharness css/css-display/parsing/tentative/display-computed.html +testharness css/css-display/parsing/tentative/display-valid.html +testharness css/css-display/reading-flow/tentative/reading-flow-computed.html +testharness css/css-display/reading-flow/tentative/reading-flow-invalid.html +testharness css/css-display/reading-flow/tentative/reading-flow-valid.html testharness css/css-display/textarea-display.html testharness css/css-easing/cubic-bezier-timing-functions-output.html -testharness css/css-easing/linear-timing-functions-output.tentative.html -testharness css/css-easing/linear-timing-functions-syntax.tentative.html +testharness css/css-easing/linear-timing-functions-output.html +testharness css/css-easing/linear-timing-functions-syntax.html testharness css/css-easing/step-timing-functions-output.html testharness css/css-easing/step-timing-functions-syntax.html testharness css/css-easing/timing-functions-syntax-computed.html @@ -28524,6 +31042,8 @@ testharness css/css-exclusions/wrap-flow-004.html testharness css/css-exclusions/wrap-flow-005.html testharness css/css-exclusions/wrap-flow-006.html testharness css/css-exclusions/wrap-through-001.html +testharness css/css-fill-stroke/animation/fill-interpolation.html +testharness css/css-fill-stroke/webkit-text-stroke-computed.html testharness css/css-flexbox/abspos/abspos-descendent-001.html testharness css/css-flexbox/abspos/flex-abspos-staticpos-align-content-001.html testharness css/css-flexbox/abspos/flex-abspos-staticpos-align-self-001.html @@ -28573,6 +31093,22 @@ testharness css/css-flexbox/align-content-wrap-001.html testharness css/css-flexbox/align-content-wrap-002.html testharness css/css-flexbox/align-content-wrap-003.html testharness css/css-flexbox/align-content-wrap-005.html +testharness css/css-flexbox/align-items-baseline-column-vert-lr-flexbox-item.html +testharness css/css-flexbox/align-items-baseline-column-vert-lr-grid-item.html +testharness css/css-flexbox/align-items-baseline-column-vert-lr-items.html +testharness css/css-flexbox/align-items-baseline-column-vert-lr-table-item.html +testharness css/css-flexbox/align-items-baseline-column-vert-rl-flexbox-item.html +testharness css/css-flexbox/align-items-baseline-column-vert-rl-grid-item.html +testharness css/css-flexbox/align-items-baseline-column-vert-rl-items.html +testharness css/css-flexbox/align-items-baseline-column-vert-rl-table-item.html +testharness css/css-flexbox/align-items-baseline-vert-lr-column-horz-flexbox-item.html +testharness css/css-flexbox/align-items-baseline-vert-lr-column-horz-grid-item.html +testharness css/css-flexbox/align-items-baseline-vert-lr-column-horz-items.html +testharness css/css-flexbox/align-items-baseline-vert-lr-column-horz-table-item.html +testharness css/css-flexbox/align-items-baseline-vert-rl-column-horz-flexbox-item.html +testharness css/css-flexbox/align-items-baseline-vert-rl-column-horz-grid-item.html +testharness css/css-flexbox/align-items-baseline-vert-rl-column-horz-items.html +testharness css/css-flexbox/align-items-baseline-vert-rl-column-horz-table-item.html testharness css/css-flexbox/align-self-014.html testharness css/css-flexbox/alignment/flex-align-baseline-001.html testharness css/css-flexbox/alignment/flex-align-baseline-002.html @@ -28603,6 +31139,7 @@ testharness css/css-flexbox/alignment/flex-align-baseline-overflow-003.html testharness css/css-flexbox/alignment/flex-align-baseline-table-001.html testharness css/css-flexbox/alignment/flex-align-baseline-table-002.html testharness css/css-flexbox/alignment/flex-align-baseline-table-003.html +testharness css/css-flexbox/animation/discrete-no-interpolation.html testharness css/css-flexbox/animation/flex-basis-composition.html testharness css/css-flexbox/animation/flex-basis-interpolation.html testharness css/css-flexbox/animation/flex-grow-interpolation.html @@ -28616,6 +31153,7 @@ testharness css/css-flexbox/column-flex-child-with-overflow-scroll.html testharness css/css-flexbox/column-reverse-gap.html testharness css/css-flexbox/columns-height-set-via-top-bottom.html testharness css/css-flexbox/dynamic-grid-flex-abspos.html +testharness css/css-flexbox/fieldset-as-container-justify-center.tentative.html testharness css/css-flexbox/flex-aspect-ratio-img-column-011.html testharness css/css-flexbox/flex-aspect-ratio-img-column-017.html testharness css/css-flexbox/flex-aspect-ratio-img-row-005.html @@ -28759,9 +31297,12 @@ testharness css/css-flexbox/intrinsic-size/col-wrap-018.html testharness css/css-flexbox/intrinsic-size/col-wrap-019.html testharness css/css-flexbox/intrinsic-size/row-005.html testharness css/css-flexbox/intrinsic-size/row-008.html +testharness css/css-flexbox/intrinsic-size/row-compat-001.html +testharness css/css-flexbox/intrinsic-size/row-use-cases-001.html testharness css/css-flexbox/intrinsic-size/row-wrap-001.html testharness css/css-flexbox/intrinsic-width-orthogonal-writing-mode.html testharness css/css-flexbox/justify-content-006.html +testharness css/css-flexbox/justify-content-007.html testharness css/css-flexbox/justify-content_space-between-002.html testharness css/css-flexbox/layout-with-inline-svg-001.html testharness css/css-flexbox/max-width-violation.html @@ -28843,6 +31384,9 @@ testharness css/css-font-loading/fontfaceset-update-after-stylesheet-change.html testharness css/css-font-loading/fontfacesetloadevent-constructor.html testharness css/css-font-loading/idlharness.https.html testharness css/css-font-loading/nonexistent-file-url.html +testharness css/css-fonts/animations/font-palette-animation-not-specified-endpoints.html +testharness css/css-fonts/animations/font-palette-interpolation.html +testharness css/css-fonts/animations/font-size-adjust-composition.html testharness css/css-fonts/animations/font-size-adjust-interpolation.html testharness css/css-fonts/animations/font-size-interpolation-001.html testharness css/css-fonts/animations/font-size-interpolation-002.html @@ -28851,11 +31395,13 @@ testharness css/css-fonts/animations/font-stretch-interpolation.html testharness css/css-fonts/animations/font-style-interpolation.html testharness css/css-fonts/animations/font-variation-settings-composition.html testharness css/css-fonts/animations/font-variation-settings-interpolation.html +testharness css/css-fonts/animations/multiple-elements-font-palette-animation.html testharness css/css-fonts/animations/system-fonts.html testharness css/css-fonts/calc-in-font-variation-settings.html testharness css/css-fonts/cjk-kerning.html testharness css/css-fonts/crash-font-face-invalid-descriptor.html testharness css/css-fonts/crash-large-grapheme-cluster.html +testharness css/css-fonts/discrete-no-interpolation.html testharness css/css-fonts/fallback-remote-to-data-url.html testharness css/css-fonts/fallback-url-to-local.html testharness css/css-fonts/font-display/font-display-failure-fallback.html @@ -28867,7 +31413,9 @@ testharness css/css-fonts/font-shorthand-serialization-001.html testharness css/css-fonts/font-shorthand-serialization-font-stretch.html testharness css/css-fonts/font-shorthand-serialization-prevention.html testharness css/css-fonts/font-shorthand-subproperties-reset.html +testharness css/css-fonts/font-size-adjust-interpolation-math-functions.html testharness css/css-fonts/font-size-relative-across-calc-ff-bug-001.html +testharness css/css-fonts/font-stretch-interpolation-math-functions.html testharness css/css-fonts/font-style-angle.html testharness css/css-fonts/font-variant-alternates-parsing.html testharness css/css-fonts/font-variation-settings-serialization-001.html @@ -28881,7 +31429,9 @@ testharness css/css-fonts/math-script-level-and-math-style/math-script-level-001 testharness css/css-fonts/math-script-level-and-math-style/math-script-level-002.tentative.html testharness css/css-fonts/math-script-level-and-math-style/math-script-level-004.tentative.html testharness css/css-fonts/math-script-level-and-math-style/math-style-001.tentative.html +testharness css/css-fonts/palette-mix-computed.html testharness css/css-fonts/parsing/font-computed.html +testharness css/css-fonts/parsing/font-face-size-adjust.html testharness css/css-fonts/parsing/font-face-src-format.html testharness css/css-fonts/parsing/font-face-src-list.html testharness css/css-fonts/parsing/font-face-src-local.html @@ -28922,6 +31472,8 @@ testharness css/css-fonts/parsing/font-style-invalid.html testharness css/css-fonts/parsing/font-style-valid.html testharness css/css-fonts/parsing/font-synthesis-computed.html testharness css/css-fonts/parsing/font-synthesis-invalid.html +testharness css/css-fonts/parsing/font-synthesis-position-invalid.html +testharness css/css-fonts/parsing/font-synthesis-position-valid.html testharness css/css-fonts/parsing/font-synthesis-small-caps-invalid.html testharness css/css-fonts/parsing/font-synthesis-small-caps-valid.html testharness css/css-fonts/parsing/font-synthesis-style-invalid.html @@ -28963,6 +31515,7 @@ testharness css/css-fonts/system-fonts-serialization.tentative.html testharness css/css-fonts/test_datafont_same_origin.html testharness css/css-fonts/test_font_family_parsing.html testharness css/css-fonts/test_font_feature_values_parsing.html +testharness css/css-fonts/variable-in-font-variation-settings.html testharness css/css-fonts/variations/at-font-face-descriptors.html testharness css/css-fonts/variations/at-font-face-font-matching.html testharness css/css-fonts/variations/font-opentype-collections.html @@ -29180,6 +31733,8 @@ testharness css/css-grid/alignment/grid-inline-axis-alignment-auto-margins-007.h testharness css/css-grid/alignment/grid-item-alignment-with-orthogonal-flows-vertical-lr.html testharness css/css-grid/alignment/grid-item-alignment-with-orthogonal-flows-vertical-rl.html testharness css/css-grid/alignment/grid-item-alignment-with-orthogonal-flows.html +testharness css/css-grid/alignment/grid-item-aspect-ratio-justify-self-001.html +testharness css/css-grid/alignment/grid-item-aspect-ratio-justify-self-002.html testharness css/css-grid/alignment/grid-item-auto-margins-alignment-vertical-lr.html testharness css/css-grid/alignment/grid-item-auto-margins-alignment-vertical-rl.html testharness css/css-grid/alignment/grid-item-auto-margins-alignment.html @@ -29292,6 +31847,7 @@ testharness css/css-grid/alignment/grid-self-alignment.html testharness css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-001.html testharness css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-002.html testharness css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-003.html +testharness css/css-grid/animation/grid-no-interpolation.html testharness css/css-grid/animation/grid-template-columns-composition.html testharness css/css-grid/animation/grid-template-columns-interpolation.html testharness css/css-grid/animation/grid-template-columns-neutral-keyframe-001.html @@ -29318,7 +31874,7 @@ testharness css/css-grid/grid-definition/grid-auto-fill-rows-001.html testharness css/css-grid/grid-definition/grid-auto-fit-columns-001.html testharness css/css-grid/grid-definition/grid-auto-fit-rows-001.html testharness css/css-grid/grid-definition/grid-auto-repeat-intrinsic-001.html -testharness css/css-grid/grid-definition/grid-auto-repeat-max-size-001.html +testharness css/css-grid/grid-definition/grid-auto-repeat-max-size-001.tentative.html testharness css/css-grid/grid-definition/grid-auto-repeat-max-size-002.html testharness css/css-grid/grid-definition/grid-auto-repeat-min-max-size-001.html testharness css/css-grid/grid-definition/grid-auto-repeat-min-size-001.html @@ -29350,6 +31906,7 @@ testharness css/css-grid/grid-definition/grid-support-repeat-002.html testharness css/css-grid/grid-definition/grid-template-columns-rows-changes-001.html testharness css/css-grid/grid-definition/grid-template-columns-rows-resolved-values-001.html testharness css/css-grid/grid-definition/grid-template-columns-rows-resolved-values-001.tentative.html +testharness css/css-grid/grid-important.html testharness css/css-grid/grid-items/grid-automatic-minimum-intrinsic-aspect-ratio-001.html testharness css/css-grid/grid-items/grid-item-dynamic-min-contribution-001.html testharness css/css-grid/grid-items/grid-item-flex-container-001.html @@ -29403,6 +31960,7 @@ testharness css/css-grid/grid-model/grid-item-hit-test.html testharness css/css-grid/grid-model/grid-min-max-height-001.html testharness css/css-grid/grid-model/grid-size-shrink-to-fit-001.html testharness css/css-grid/grid-model/grid-support-display-001.html +testharness css/css-grid/grid-tracks-fractional-fr.html testharness css/css-grid/grid-tracks-stretched-with-different-flex-factors-sum.html testharness css/css-grid/inheritance.html testharness css/css-grid/layout-algorithm/baseline-alignment-affects-intrinsic-size-001.html @@ -29450,8 +32008,14 @@ testharness css/css-grid/parsing/grid-auto-flow-valid.html testharness css/css-grid/parsing/grid-auto-rows-computed.html testharness css/css-grid/parsing/grid-auto-rows-invalid.html testharness css/css-grid/parsing/grid-auto-rows-valid.html +testharness css/css-grid/parsing/grid-column-invalid.html +testharness css/css-grid/parsing/grid-column-shortest-serialization.html +testharness css/css-grid/parsing/grid-column-shorthand.html testharness css/css-grid/parsing/grid-columns-rows-get-set-multiple.html testharness css/css-grid/parsing/grid-content-sized-columns-resolution.html +testharness css/css-grid/parsing/grid-row-invalid.html +testharness css/css-grid/parsing/grid-row-shortest-serialization.html +testharness css/css-grid/parsing/grid-row-shorthand.html testharness css/css-grid/parsing/grid-shorthand-invalid.html testharness css/css-grid/parsing/grid-shorthand-serialization.html testharness css/css-grid/parsing/grid-shorthand-valid.html @@ -29466,6 +32030,8 @@ testharness css/css-grid/parsing/grid-template-columns-computed-withcontent.html testharness css/css-grid/parsing/grid-template-columns-computed.html testharness css/css-grid/parsing/grid-template-columns-invalid.html testharness css/css-grid/parsing/grid-template-columns-valid.html +testharness css/css-grid/parsing/grid-template-important.html +testharness css/css-grid/parsing/grid-template-node-not-connected.html testharness css/css-grid/parsing/grid-template-repeat-auto-computed-withcontent-001.html testharness css/css-grid/parsing/grid-template-repeat-auto-computed-withcontent-002.html testharness css/css-grid/parsing/grid-template-rows-computed-implicit-track.html @@ -29482,12 +32048,23 @@ testharness css/css-grid/placement/grid-auto-flow-sparse-001.html testharness css/css-grid/placement/grid-auto-placement-implicit-tracks-001.html testharness css/css-grid/placement/grid-container-change-grid-tracks-recompute-child-positions-001.html testharness css/css-grid/placement/grid-container-change-named-grid-recompute-child-positions-001.html +testharness css/css-grid/subgrid/align-self-baseline-with-subgrid-mbp.html +testharness css/css-grid/subgrid/alignment-in-subgridded-axes-001.html testharness css/css-grid/subgrid/grid-template-computed-nogrid.html testharness css/css-grid/subgrid/grid-template-invalid.html testharness css/css-grid/subgrid/grid-template-valid.html +testharness css/css-grid/subgrid/placement-invalidation-001.html +testharness css/css-grid/subgrid/subgrid-baseline-005.html +testharness css/css-grid/subgrid/subgrid-baseline-006.html +testharness css/css-grid/subgrid/subgrid-baseline-007.html +testharness css/css-grid/subgrid/subgrid-baseline-008.html +testharness css/css-grid/subgrid/subgrid-baseline-009.html +testharness css/css-grid/subgrid/subgrid-baseline-010.html +testharness css/css-grid/subgrid/subgrid-baseline-011.html testharness css/css-grid/table-grid-item-005.html testharness css/css-highlight-api/Highlight-iteration-with-modifications.html testharness css/css-highlight-api/Highlight-iteration.html +testharness css/css-highlight-api/Highlight-multiple-type-attribute.html testharness css/css-highlight-api/Highlight-setlike-tampered-Set-prototype.html testharness css/css-highlight-api/Highlight-setlike.html testharness css/css-highlight-api/Highlight-type-attribute.tentative.html @@ -29495,9 +32072,17 @@ testharness css/css-highlight-api/HighlightRegistry-iteration-with-modifications testharness css/css-highlight-api/HighlightRegistry-iteration.html testharness css/css-highlight-api/HighlightRegistry-maplike-tampered-Map-prototype.html testharness css/css-highlight-api/HighlightRegistry-maplike.html +testharness css/css-highlight-api/highlight-priority.html testharness css/css-highlight-api/highlight-pseudo-computed.html +testharness css/css-highlight-api/highlight-pseudo-from-font-computed.html testharness css/css-highlight-api/highlight-pseudo-parsing.html +testharness css/css-highlight-api/historical.window.js testharness css/css-highlight-api/idlharness.window.js +testharness css/css-images/animation/image-no-interpolation.html +testharness css/css-images/animation/image-slice-interpolation-math-functions-tentative.html +testharness css/css-images/animation/object-position-interpolation.html +testharness css/css-images/animation/object-view-box-interpolation.html +testharness css/css-images/cross-fade-computed-value.html testharness css/css-images/empty-background-image.html testharness css/css-images/gradient/color-stops-parsing.html testharness css/css-images/idlharness.html @@ -29506,8 +32091,6 @@ testharness css/css-images/image-orientation/image-orientation-none-computed-sty testharness css/css-images/image-set/image-set-computed.sub.html testharness css/css-images/image-set/image-set-parsing.html testharness css/css-images/inheritance.html -testharness css/css-images/object-position-interpolation.html -testharness css/css-images/object-view-box-interpolation.html testharness css/css-images/object-view-box-parsing.html testharness css/css-images/object-view-box-transition-mutation.html testharness css/css-images/parsing/gradient-interpolation-method-computed.html @@ -29529,14 +32112,24 @@ testharness css/css-images/parsing/object-fit-valid.html testharness css/css-images/parsing/object-position-computed.html testharness css/css-images/parsing/object-position-invalid.html testharness css/css-images/parsing/object-position-valid.html +testharness css/css-inline/animation/alignment-baseline-no-interpolation.html +testharness css/css-inline/animation/dominant-baseline-no-interpolation.html +testharness css/css-inline/animation/initial-letter-no-interpolation.html testharness css/css-inline/baseline-source/baseline-source-computed.html testharness css/css-inline/baseline-source/baseline-source-first-001.html testharness css/css-inline/baseline-source/baseline-source-first-002.html testharness css/css-inline/baseline-source/baseline-source-first-003.html +testharness css/css-inline/baseline-source/baseline-source-first-textarea-001.tentative.html +testharness css/css-inline/baseline-source/baseline-source-first-textarea-002.tentative.html +testharness css/css-inline/baseline-source/baseline-source-first-textarea-003.tentative.html testharness css/css-inline/baseline-source/baseline-source-invalid.html testharness css/css-inline/baseline-source/baseline-source-last-001.html testharness css/css-inline/baseline-source/baseline-source-last-002.html testharness css/css-inline/baseline-source/baseline-source-last-003.html +testharness css/css-inline/baseline-source/baseline-source-last-textarea-001.tentative.html +testharness css/css-inline/baseline-source/baseline-source-last-textarea-002.tentative.html +testharness css/css-inline/baseline-source/baseline-source-last-textarea-003.tentative.html +testharness css/css-inline/baseline-source/baseline-source-no-interpolation.html testharness css/css-inline/baseline-source/baseline-source-valid.html testharness css/css-inline/baseline-source/baseline-source-vertical-align.html testharness css/css-inline/inheritance.html @@ -29559,6 +32152,18 @@ testharness css/css-inline/parsing/line-height-valid.html testharness css/css-inline/parsing/vertical-align-computed.html testharness css/css-inline/parsing/vertical-align-invalid.html testharness css/css-inline/parsing/vertical-align-valid.html +testharness css/css-inline/text-box-trim/parsing/inheritance.html +testharness css/css-inline/text-box-trim/parsing/text-box-computed.html +testharness css/css-inline/text-box-trim/parsing/text-box-edge-computed.html +testharness css/css-inline/text-box-trim/parsing/text-box-edge-invalid.html +testharness css/css-inline/text-box-trim/parsing/text-box-edge-valid.html +testharness css/css-inline/text-box-trim/parsing/text-box-invalid.html +testharness css/css-inline/text-box-trim/parsing/text-box-shorthand.html +testharness css/css-inline/text-box-trim/parsing/text-box-trim-computed.html +testharness css/css-inline/text-box-trim/parsing/text-box-trim-invalid.html +testharness css/css-inline/text-box-trim/parsing/text-box-trim-valid.html +testharness css/css-inline/text-box-trim/parsing/text-box-valid.html +testharness css/css-inline/text-box-trim/text-box-trim-om-001.html testharness css/css-layout-api/at-supports-rule.https.html testharness css/css-layout-api/computed-style-layout-function.https.html testharness css/css-layout-api/crash-multicol.https.html @@ -29567,6 +32172,8 @@ testharness css/css-layout-api/layout-child/inlines-dynamic.https.html testharness css/css-layout-api/supports.https.html testharness css/css-layout-api/sync-layout-microtasks.https.html testharness css/css-lists/animations/list-style-image-interpolation.html +testharness css/css-lists/counter-important.html +testharness css/css-lists/css-lists-no-interpolation.html testharness css/css-lists/inherit-overwrites.html testharness css/css-lists/inheritance.html testharness css/css-lists/li-counter-increment-computed-style.html @@ -29601,7 +32208,12 @@ testharness css/css-logical/animation-001.html testharness css/css-logical/animation-002.html testharness css/css-logical/animation-003.tentative.html testharness css/css-logical/animation-004.html +testharness css/css-logical/animations/caption-side-no-interpolation.html testharness css/css-logical/animations/float-interpolation.html +testharness css/css-logical/animations/margin-block-interpolation.html +testharness css/css-logical/animations/margin-inline-interpolation.html +testharness css/css-logical/animations/padding-block-interpolation.html +testharness css/css-logical/animations/padding-inline-interpolation.html testharness css/css-logical/getComputedStyle-listing.html testharness css/css-logical/inheritance.html testharness css/css-logical/logical-box-border-color.html @@ -29681,16 +32293,30 @@ testharness css/css-masking/animations/clip-path-composition.html testharness css/css-masking/animations/clip-path-interpolation-001.html testharness css/css-masking/animations/clip-path-interpolation-002.html testharness css/css-masking/animations/clip-path-interpolation-shape.html +testharness css/css-masking/animations/clip-path-interpolation-xywh-rect.html +testharness css/css-masking/animations/mask-border-outset-composition.html +testharness css/css-masking/animations/mask-border-outset-interpolation.html +testharness css/css-masking/animations/mask-border-slice-composition.html +testharness css/css-masking/animations/mask-border-slice-interpolation-stability.html +testharness css/css-masking/animations/mask-border-slice-interpolation.html +testharness css/css-masking/animations/mask-border-source-interpolation.html +testharness css/css-masking/animations/mask-border-width-composition.html +testharness css/css-masking/animations/mask-border-width-interpolation.html testharness css/css-masking/animations/mask-image-interpolation.html +testharness css/css-masking/animations/mask-no-interpolation.html testharness css/css-masking/animations/mask-position-interpolation.html +testharness css/css-masking/clip-path/animations/clip-path-interpolation-discrete.html testharness css/css-masking/clip-path/clip-path-path-with-zoom-hittest.html testharness css/css-masking/clip-path/interpolation.html +testharness css/css-masking/clip-rule/clip-rule-no-interpolation.html testharness css/css-masking/hit-test/clip-path-element-objectboundingbox-001.html testharness css/css-masking/hit-test/clip-path-element-objectboundingbox-002.html testharness css/css-masking/hit-test/clip-path-element-userspaceonuse-001.html testharness css/css-masking/hit-test/clip-path-shape-polygon-and-box-shadow.html +testharness css/css-masking/hit-test/clip-path-svg-geometry-box.html testharness css/css-masking/idlharness.html testharness css/css-masking/inheritance.sub.html +testharness css/css-masking/mask-shorthand-subproperties-reset.html testharness css/css-masking/parsing/clip-computed.html testharness css/css-masking/parsing/clip-invalid.html testharness css/css-masking/parsing/clip-path-computed.html @@ -29701,22 +32327,37 @@ testharness css/css-masking/parsing/clip-rule-computed.html testharness css/css-masking/parsing/clip-rule-invalid.html testharness css/css-masking/parsing/clip-rule-valid.html testharness css/css-masking/parsing/clip-valid.html +testharness css/css-masking/parsing/mask-composite-computed.html +testharness css/css-masking/parsing/mask-composite-invalid.html +testharness css/css-masking/parsing/mask-composite-valid.html +testharness css/css-masking/parsing/mask-computed.html testharness css/css-masking/parsing/mask-invalid.html testharness css/css-masking/parsing/mask-position-invalid.html testharness css/css-masking/parsing/mask-position-valid.html +testharness css/css-masking/parsing/mask-repeat-computed.html +testharness css/css-masking/parsing/mask-repeat-invalid.html +testharness css/css-masking/parsing/mask-repeat-valid.html testharness css/css-masking/parsing/mask-type-computed.html testharness css/css-masking/parsing/mask-type-invalid.html testharness css/css-masking/parsing/mask-type-valid.html testharness css/css-masking/parsing/mask-valid.sub.html +testharness css/css-masonry/tentative/parsing/masonry-template-tracks-invalid.html +testharness css/css-masonry/tentative/parsing/masonry-template-tracks-valid.html +testharness css/css-masonry/tentative/parsing/masonry-track-computed.html +testharness css/css-masonry/tentative/parsing/masonry-track-invalid.html +testharness css/css-masonry/tentative/parsing/masonry-track-valid.html testharness css/css-multicol/animation/column-count-interpolation.html testharness css/css-multicol/animation/column-rule-color-interpolation.html testharness css/css-multicol/animation/column-rule-width-interpolation.html testharness css/css-multicol/animation/column-width-interpolation.html +testharness css/css-multicol/animation/discrete-no-interpolation.html +testharness css/css-multicol/balance-grid-001.html testharness css/css-multicol/filter-with-abspos.html testharness css/css-multicol/getclientrects-000.html testharness css/css-multicol/getclientrects-001.html testharness css/css-multicol/going-out-of-flow-after-spanner.html testharness css/css-multicol/hit-test-child-under-perspective.html +testharness css/css-multicol/hit-test-in-vertical-rl.html testharness css/css-multicol/hit-test-transformed-child.html testharness css/css-multicol/inheritance.html testharness css/css-multicol/multicol-fill-balance-007.html @@ -29735,6 +32376,8 @@ testharness css/css-multicol/multicol-fill-balance-021.html testharness css/css-multicol/multicol-fill-balance-022.html testharness css/css-multicol/multicol-fill-balance-023.html testharness css/css-multicol/multicol-fill-balance-025.html +testharness css/css-multicol/multicol-fill-balance-027.html +testharness css/css-multicol/multicol-fill-balance-028.html testharness css/css-multicol/multicol-gap-animation-001.html testharness css/css-multicol/multicol-gap-animation-002.html testharness css/css-multicol/multicol-gap-animation-003.html @@ -29777,28 +32420,34 @@ testharness css/css-multicol/table/balance-table-with-border-spacing.html testharness css/css-multicol/table/balance-table-with-fractional-height-row.html testharness css/css-multicol/zero-column-width-computed-style.html testharness css/css-nesting/cssom.html +testharness css/css-nesting/implicit-nesting-ident-recovery.html +testharness css/css-nesting/implicit-nesting-ident.html testharness css/css-nesting/invalid-inner-rules.html testharness css/css-nesting/invalidation-001.html testharness css/css-nesting/invalidation-002.html testharness css/css-nesting/invalidation-003.html testharness css/css-nesting/invalidation-004.html +testharness css/css-nesting/nesting-layer.html testharness css/css-nesting/parsing.html -testharness css/css-nesting/serialize-group-rules-with-decls.tentative.html -testharness css/css-outline/outline-width-rounding.tentative.html +testharness css/css-nesting/serialize-group-rules-with-decls.html +testharness css/css-nesting/top-level-is-scope.html +testharness css/css-overflow/auto-scrollbar-inline-children.html testharness css/css-overflow/inheritance.html testharness css/css-overflow/logical-overflow-001.html testharness css/css-overflow/orthogonal-flow-with-inline-end-margin.html testharness css/css-overflow/overflow-abpos-transform.html testharness css/css-overflow/overflow-clip-hit-testing.html +testharness css/css-overflow/overflow-clip-margin-hit-testing.html testharness css/css-overflow/overflow-clip-margin-intersection-observer.html testharness css/css-overflow/overflow-clip-scroll-size.html testharness css/css-overflow/overflow-codependent-scrollbars.html testharness css/css-overflow/overflow-empty-child-box.html testharness css/css-overflow/overflow-inline-transform-relative.html +testharness css/css-overflow/overflow-no-interpolation.html +testharness css/css-overflow/overflow-outside-padding.html testharness css/css-overflow/overflow-padding.html testharness css/css-overflow/overflow-replaced-element-001.html testharness css/css-overflow/overflow-shorthand-001.html -testharness css/css-overflow/overfow-outside-padding.html testharness css/css-overflow/parsing/block-ellipsis-invalid.html testharness css/css-overflow/parsing/block-ellipsis-valid.html testharness css/css-overflow/parsing/continue-invalid.html @@ -29822,6 +32471,8 @@ testharness css/css-overflow/parsing/webkit-line-clamp-valid.html testharness css/css-overflow/resizer-no-size-change.tentative.html testharness css/css-overflow/resizer-transform.tentative.html testharness css/css-overflow/scroll-overflow-padding-block-001.html +testharness css/css-overflow/scroll-with-ancestor-border-radius.html +testharness css/css-overflow/scroll-with-border-radius.html testharness css/css-overflow/scrollable-overflow-float.html testharness css/css-overflow/scrollable-overflow-padding.html testharness css/css-overflow/scrollable-overflow-self-collapsing.html @@ -29848,12 +32499,19 @@ testharness css/css-overflow/scrollbar-gutter-propagation-007.html testharness css/css-overflow/scrollbar-gutter-rtl-001.html testharness css/css-overflow/scrollbar-gutter-vertical-lr-001.html testharness css/css-overflow/scrollbar-gutter-vertical-rl-001.html +testharness css/css-overflow/scroller-covered-by-empty-svg.html testharness css/css-overscroll-behavior/inheritance.html testharness css/css-overscroll-behavior/overscroll-behavior-logical.html +testharness css/css-overscroll-behavior/overscroll-behavior-root.html testharness css/css-overscroll-behavior/overscroll-behavior.html testharness css/css-overscroll-behavior/parsing/overscroll-behavior-computed.html testharness css/css-overscroll-behavior/parsing/overscroll-behavior-invalid.html testharness css/css-overscroll-behavior/parsing/overscroll-behavior-valid.html +testharness css/css-page/cssom/margin-001.html +testharness css/css-page/cssom/margin-002.html +testharness css/css-page/cssom/margin-003.html +testharness css/css-page/cssom/page-001.html +testharness css/css-page/cssom/page-002.html testharness css/css-page/inheritance.html testharness css/css-page/page-orientation.tentative.html testharness css/css-page/page-rule-declarations-000.html @@ -29861,12 +32519,16 @@ testharness css/css-page/page-rule-declarations-001.html testharness css/css-page/page-rule-declarations-002.html testharness css/css-page/page-rule-declarations-003.html testharness css/css-page/page-rule-declarations-004.html +testharness css/css-page/parsing/margin-rules-001.html +testharness css/css-page/parsing/nested-rules-001.html testharness css/css-page/parsing/page-computed.html testharness css/css-page/parsing/page-invalid.html testharness css/css-page/parsing/page-orientation-computed.tentative.html testharness css/css-page/parsing/page-orientation-invalid.tentative.html +testharness css/css-page/parsing/page-rules-001.html testharness css/css-page/parsing/page-valid.html -testharness css/css-page/parsing/size-001.html +testharness css/css-page/parsing/size-invalid.html +testharness css/css-page/parsing/size-valid.html testharness css/css-paint-api/idlharness.html testharness css/css-paint-api/parsing/paint-function-valid.https.html testharness css/css-parser-api/idlharness.html @@ -29879,7 +32541,16 @@ testharness css/css-position/animations/right-composition.html testharness css/css-position/animations/right-interpolation.html testharness css/css-position/animations/top-composition.html testharness css/css-position/animations/top-interpolation.html +testharness css/css-position/backdrop-inherit-computed.html +testharness css/css-position/backdrop-tree-abiding-slotted.html testharness css/css-position/inheritance.html +testharness css/css-position/overlay/animation/overlay-interpolation.html +testharness css/css-position/overlay/overlay-computed.html +testharness css/css-position/overlay/overlay-invalid.html +testharness css/css-position/overlay/overlay-transition-property.html +testharness css/css-position/overlay/overlay-transition.html +testharness css/css-position/overlay/overlay-user-agent-rules.html +testharness css/css-position/overlay/overlay-valid.html testharness css/css-position/parsing/bottom-computed.html testharness css/css-position/parsing/bottom-invalid.html testharness css/css-position/parsing/bottom-valid.html @@ -29923,12 +32594,15 @@ testharness css/css-position/position-absolute-crash-chrome-013.html testharness css/css-position/position-absolute-dynamic-containing-block.html testharness css/css-position/position-absolute-in-inline-001.html testharness css/css-position/position-absolute-in-inline-002.html +testharness css/css-position/position-absolute-margin-auto-001.html testharness css/css-position/position-absolute-padding-percentage.html testharness css/css-position/position-absolute-percentage-height.html testharness css/css-position/position-absolute-replaced-minmax.html testharness css/css-position/position-absolute-table-001.html testharness css/css-position/position-fixed-at-bottom-right-on-viewport.html +testharness css/css-position/position-sticky-dynamic-ancestor-001.html testharness css/css-position/positon-absolute-scrollable-overflow-001.html +testharness css/css-position/sticky-dialog.html testharness css/css-position/sticky/position-sticky-bottom.html testharness css/css-position/sticky/position-sticky-get-bounding-client-rect.html testharness css/css-position/sticky/position-sticky-inflow-position.html @@ -29972,6 +32646,7 @@ testharness css/css-properties-values-api/animation/custom-property-animation-le testharness css/css-properties-values-api/animation/custom-property-animation-length-percentage.html testharness css/css-properties-values-api/animation/custom-property-animation-length-space-list.html testharness css/css-properties-values-api/animation/custom-property-animation-length.html +testharness css/css-properties-values-api/animation/custom-property-animation-list-type-mismatch.html testharness css/css-properties-values-api/animation/custom-property-animation-non-inherited-used-by-standard-property.html testharness css/css-properties-values-api/animation/custom-property-animation-number-comma-list.html testharness css/css-properties-values-api/animation/custom-property-animation-number-space-list.html @@ -29988,7 +32663,9 @@ testharness css/css-properties-values-api/animation/custom-property-animation-ti testharness css/css-properties-values-api/animation/custom-property-animation-transform-function.html testharness css/css-properties-values-api/animation/custom-property-animation-transform-list-multiple-values.html testharness css/css-properties-values-api/animation/custom-property-animation-transform-list-single-values.html +testharness css/css-properties-values-api/animation/custom-property-animation-transform-none.tentative.html testharness css/css-properties-values-api/animation/custom-property-animation-url.html +testharness css/css-properties-values-api/animation/custom-property-animation-used-in-shorthand.html testharness css/css-properties-values-api/animation/custom-property-transition-angle.html testharness css/css-properties-values-api/animation/custom-property-transition-color.html testharness css/css-properties-values-api/animation/custom-property-transition-custom-ident.html @@ -30003,11 +32680,21 @@ testharness css/css-properties-values-api/animation/custom-property-transition-m testharness css/css-properties-values-api/animation/custom-property-transition-non-inherited-used-by-standard-property.html testharness css/css-properties-values-api/animation/custom-property-transition-number.html testharness css/css-properties-values-api/animation/custom-property-transition-percentage.html +testharness css/css-properties-values-api/animation/custom-property-transition-property-all.html testharness css/css-properties-values-api/animation/custom-property-transition-resolution.html testharness css/css-properties-values-api/animation/custom-property-transition-time.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-function-box-size.tentative.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-function-matrix.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-function-none.tentative.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-function-to-list.html testharness css/css-properties-values-api/animation/custom-property-transition-transform-function.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-list-box-size.tentative.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-list-matrix.html +testharness css/css-properties-values-api/animation/custom-property-transition-transform-list-none.tentative.html testharness css/css-properties-values-api/animation/custom-property-transition-transform-list.html testharness css/css-properties-values-api/animation/custom-property-transition-url.html +testharness css/css-properties-values-api/animation/registered-neutral-keyframe.html +testharness css/css-properties-values-api/animation/registered-var-to-registered-animating.html testharness css/css-properties-values-api/at-property-animation.html testharness css/css-properties-values-api/at-property-cssom.html testharness css/css-properties-values-api/at-property-shadow.html @@ -30019,7 +32706,9 @@ testharness css/css-properties-values-api/at-property.html testharness css/css-properties-values-api/conditional-rules.html testharness css/css-properties-values-api/determine-registration.html testharness css/css-properties-values-api/font-size-animation.html +testharness css/css-properties-values-api/get-computed-style-enumeration.html testharness css/css-properties-values-api/idlharness.html +testharness css/css-properties-values-api/invalid-at-computed-value-time.html testharness css/css-properties-values-api/property-cascade.html testharness css/css-properties-values-api/register-property-syntax-parsing.html testharness css/css-properties-values-api/register-property.html @@ -30034,6 +32723,7 @@ testharness css/css-properties-values-api/self-utils.html testharness css/css-properties-values-api/typedom.html testharness css/css-properties-values-api/unit-cycles.html testharness css/css-properties-values-api/url-resolution.html +testharness css/css-properties-values-api/var-reference-registered-properties-002.html testharness css/css-properties-values-api/var-reference-registered-properties-cycles.html testharness css/css-properties-values-api/var-reference-registered-properties.html testharness css/css-pseudo/backdrop-animate.html @@ -30041,13 +32731,15 @@ testharness css/css-pseudo/before-in-display-none-thcrash.html testharness css/css-pseudo/file-selector-button-inherit.html testharness css/css-pseudo/first-letter-allowed-properties.html testharness css/css-pseudo/first-line-allowed-properties.html -testharness css/css-pseudo/highlight-cascade-007.html -testharness css/css-pseudo/highlight-currentcolor-computed-inheritance.html -testharness css/css-pseudo/highlight-currentcolor-computed-visited.html -testharness css/css-pseudo/highlight-currentcolor-computed.html -testharness css/css-pseudo/highlight-pseudos-computed.html -testharness css/css-pseudo/highlight-pseudos-inheritance-computed-001.html -testharness css/css-pseudo/highlight-pseudos-visited-computed-001.html +testharness css/css-pseudo/highlight-cascade/highlight-cascade-007.html +testharness css/css-pseudo/highlight-cascade/highlight-cascade-009.html +testharness css/css-pseudo/highlight-cascade/highlight-currentcolor-computed-inheritance.html +testharness css/css-pseudo/highlight-cascade/highlight-currentcolor-computed-visited.html +testharness css/css-pseudo/highlight-cascade/highlight-currentcolor-computed.html +testharness css/css-pseudo/highlight-cascade/highlight-pseudos-computed-001.tentative.html +testharness css/css-pseudo/highlight-cascade/highlight-pseudos-computed.html +testharness css/css-pseudo/highlight-cascade/highlight-pseudos-inheritance-computed-001.html +testharness css/css-pseudo/highlight-cascade/highlight-pseudos-visited-computed-001.html testharness css/css-pseudo/idlharness.html testharness css/css-pseudo/marker-animate.html testharness css/css-pseudo/marker-computed-content.html @@ -30058,6 +32750,7 @@ testharness css/css-pseudo/marker-hit-testing.html testharness css/css-pseudo/marker-intrinsic-contribution-001.html testharness css/css-pseudo/marker-reverted-styles.html testharness css/css-pseudo/marker-variable-computed-style.html +testharness css/css-pseudo/parsing/highlight-pseudos-001.tentative.html testharness css/css-pseudo/parsing/highlight-pseudos.html testharness css/css-pseudo/parsing/marker-supported-properties-in-animation.html testharness css/css-pseudo/parsing/marker-supported-properties.html @@ -30065,6 +32758,12 @@ testharness css/css-pseudo/parsing/tree-abiding-pseudo-elements.html testharness css/css-pseudo/placeholder-inherit.html testharness css/css-pseudo/selection-universal-shadow-dom.html testharness css/css-pseudo/text-selection.html +testharness css/css-rhythm/parsing/block-step-insert-computed.html +testharness css/css-rhythm/parsing/block-step-insert-invalid.html +testharness css/css-rhythm/parsing/block-step-insert-valid.html +testharness css/css-rhythm/parsing/block-step-size-computed.html +testharness css/css-rhythm/parsing/block-step-size-invalid.html +testharness css/css-rhythm/parsing/block-step-size-valid.html testharness css/css-ruby/br-clear-all-000.html testharness css/css-ruby/br-clear-all-001.html testharness css/css-ruby/br-clear-all-002.html @@ -30077,9 +32776,20 @@ testharness css/css-ruby/parsing/ruby-merge-invalid.html testharness css/css-ruby/parsing/ruby-merge-valid.html testharness css/css-ruby/parsing/ruby-position-invalid.html testharness css/css-ruby/parsing/ruby-position-valid.html +testharness css/css-ruby/position-relative.html +testharness css/css-ruby/rt-display-blockified.html testharness css/css-ruby/ruby-position-alternate.html testharness css/css-ruby/ruby-position.html testharness css/css-scoping/css-scoping-shadow-dynamic-remove-style-detached.html +testharness css/css-scoping/font-face-001.html +testharness css/css-scoping/font-face-002.html +testharness css/css-scoping/font-face-003.html +testharness css/css-scoping/font-face-004.html +testharness css/css-scoping/font-face-005.html +testharness css/css-scoping/font-face-006.html +testharness css/css-scoping/font-face-007.html +testharness css/css-scoping/font-face-008.html +testharness css/css-scoping/font-face-009.html testharness css/css-scoping/host-context-parsing.html testharness css/css-scoping/host-descendant-invalidation.html testharness css/css-scoping/host-dom-001.html @@ -30109,6 +32819,12 @@ testharness css/css-scroll-anchoring/abspos-contributes-to-static-parent-bounds. testharness css/css-scroll-anchoring/abspos-in-multicol-001.html testharness css/css-scroll-anchoring/abspos-in-multicol-002.html testharness css/css-scroll-anchoring/abspos-in-multicol-003.html +testharness css/css-scroll-anchoring/adjustment-followed-by-scrollBy.html +testharness css/css-scroll-anchoring/adjustments-in-scroll-event-handler.tentative.html +testharness css/css-scroll-anchoring/after-scrollable-range-shrinkage-001.html +testharness css/css-scroll-anchoring/after-scrollable-range-shrinkage-002.html +testharness css/css-scroll-anchoring/after-scrollable-range-shrinkage-003.html +testharness css/css-scroll-anchoring/after-scrollable-range-shrinkage-004.html testharness css/css-scroll-anchoring/ancestor-change-heuristic.html testharness css/css-scroll-anchoring/anchor-inside-iframe.html testharness css/css-scroll-anchoring/anchor-updates-after-explicit-scroll.html @@ -30127,6 +32843,9 @@ testharness css/css-scroll-anchoring/exclude-fixed-position.html testharness css/css-scroll-anchoring/exclude-inline.html testharness css/css-scroll-anchoring/exclude-sticky.html testharness css/css-scroll-anchoring/focus-prioritized.html +testharness css/css-scroll-anchoring/focused-element-in-excluded-subtree.html +testharness css/css-scroll-anchoring/focused-element-nested-anchor.html +testharness css/css-scroll-anchoring/focused-element-outside-scroller.html testharness css/css-scroll-anchoring/fragment-scrolling-anchors.html testharness css/css-scroll-anchoring/heuristic-with-offset-update-from-scroll-event-listener.html testharness css/css-scroll-anchoring/heuristic-with-offset-update.html @@ -30153,20 +32872,73 @@ testharness css/css-scroll-anchoring/position-change-heuristic-in-nested-scroll- testharness css/css-scroll-anchoring/position-change-heuristic.html testharness css/css-scroll-anchoring/reading-scroll-forces-anchoring.html testharness css/css-scroll-anchoring/scroll-padding-affects-anchoring.html +testharness css/css-scroll-anchoring/shadow-dom-subscroller.html testharness css/css-scroll-anchoring/start-edge-in-block-layout-direction.html testharness css/css-scroll-anchoring/subtree-exclusion.html testharness css/css-scroll-anchoring/text-anchor-in-vertical-rl.html testharness css/css-scroll-anchoring/wrapped-text.html -testharness css/css-scroll-anchoring/zero-scroll-offset.html +testharness css/css-scroll-anchoring/zero-scroll-offset-001.html +testharness css/css-scroll-anchoring/zero-scroll-offset-002.html +testharness css/css-scroll-snap-2/parsing/scroll-start-computed.html +testharness css/css-scroll-snap-2/parsing/scroll-start-invalid.html +testharness css/css-scroll-snap-2/parsing/scroll-start-shorthand.html +testharness css/css-scroll-snap-2/parsing/scroll-start-target-computed.html +testharness css/css-scroll-snap-2/parsing/scroll-start-target-invalid.html +testharness css/css-scroll-snap-2/parsing/scroll-start-target-shorthand.html +testharness css/css-scroll-snap-2/parsing/scroll-start-target-valid.html +testharness css/css-scroll-snap-2/parsing/scroll-start-valid.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-aligns-with-snap-align.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-display-toggled.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-nested-container.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-root.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-rtl.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-anchor-navigation.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-hash-fragment-navigation.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-scroll-snap.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-scroll-start-root.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-scroll-start.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-text-fragment-navigation.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target-with-user-programmatic-scroll.tentative.html +testharness css/css-scroll-snap-2/scroll-start-target/scroll-start-target.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-display-toggled.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-fieldset.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-overflow-toggled.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-root.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-vertical-lr.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-with-anchor-navigation.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-with-fragment-navigation.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-with-programmatic-scroll.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-with-scroll-snap.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-with-text-fragment-navigation.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start-with-user-scroll.tentative.html +testharness css/css-scroll-snap-2/scroll-start/scroll-start.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-after-layout-change.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-on-interrupted-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-on-programmatic-root-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-on-programmatic-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-on-user-root-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-on-user-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-same-targets-after-layout-changed.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-scrolling-non-snapping-axis.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchange/scrollsnapchange-with-proximity-strictness.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchanging/scrollsnapchanging-after-layout-change.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchanging/scrollsnapchanging-on-programmatic-root-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchanging/scrollsnapchanging-on-programmatic-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchanging/scrollsnapchanging-on-user-root-scroll.tentative.html +testharness css/css-scroll-snap-2/scrollsnapchanging/scrollsnapchanging-on-user-scroll.tentative.html +testharness css/css-scroll-snap-2/snap-events-with-pseudo-target.tentative.html +testharness css/css-scroll-snap-2/snapevents-at-document-bubble-to-window.html testharness css/css-scroll-snap/capturing-snap-positions.html testharness css/css-scroll-snap/ignore-snap-points-orthogonal-to-snap-axis.html testharness css/css-scroll-snap/inheritance.html testharness css/css-scroll-snap/input/keyboard.html testharness css/css-scroll-snap/input/mouse-wheel.html -testharness css/css-scroll-snap/input/snap-area-overflow-boundary.html +testharness css/css-scroll-snap/input/snap-area-overflow-boundary-viewport-covering.tentative.html testharness css/css-scroll-snap/nested-scrollIntoView-snaps.html testharness css/css-scroll-snap/no-snap-position.html +testharness css/css-scroll-snap/overflowing-snap-areas-nested.tentative.html testharness css/css-scroll-snap/overflowing-snap-areas.html +testharness css/css-scroll-snap/overscroll-snap.html testharness css/css-scroll-snap/parsing/scroll-margin-block-inline-computed.html testharness css/css-scroll-snap/parsing/scroll-margin-block-inline-invalid.html testharness css/css-scroll-snap/parsing/scroll-margin-block-inline-shorthand.html @@ -30192,12 +32964,16 @@ testharness css/css-scroll-snap/parsing/scroll-snap-stop-valid.html testharness css/css-scroll-snap/parsing/scroll-snap-type-computed.html testharness css/css-scroll-snap/parsing/scroll-snap-type-invalid.html testharness css/css-scroll-snap/parsing/scroll-snap-type-valid.html +testharness css/css-scroll-snap/resnap-on-snap-alignment-change.html +testharness css/css-scroll-snap/scroll-margin-editable.html testharness css/css-scroll-snap/scroll-margin-visibility-check.html testharness css/css-scroll-snap/scroll-margin.html testharness css/css-scroll-snap/scroll-on-large-element-not-covering-snapport.tentative.html testharness css/css-scroll-snap/scroll-padding-and-margin.html testharness css/css-scroll-snap/scroll-padding.html +testharness css/css-scroll-snap/scroll-snap-nested-snap-area-layout-changed.tentative.html testharness css/css-scroll-snap/scroll-snap-stop-001.html +testharness css/css-scroll-snap/scroll-snap-stop-002-nested.tentative.html testharness css/css-scroll-snap/scroll-snap-stop-002.html testharness css/css-scroll-snap/scroll-snap-stop-change.html testharness css/css-scroll-snap/scroll-snap-type-change.html @@ -30207,13 +32983,26 @@ testharness css/css-scroll-snap/scroll-target-margin-005.html testharness css/css-scroll-snap/scroll-target-margin-006.html testharness css/css-scroll-snap/scrollTo-scrollBy-snaps.html testharness css/css-scroll-snap/selection-target.html +testharness css/css-scroll-snap/smooth-anchor-scroll-in-snap-container.html testharness css/css-scroll-snap/snap-after-relayout/adding-only-snap-area.html testharness css/css-scroll-snap/snap-after-relayout/adding-snap-area-while-snapped.html +testharness css/css-scroll-snap/snap-after-relayout/changing-scroll-snap-align-nested.tentative.html testharness css/css-scroll-snap/snap-after-relayout/changing-scroll-snap-align.html testharness css/css-scroll-snap/snap-after-relayout/changing-scroll-snap-type-on-root-element.html testharness css/css-scroll-snap/snap-after-relayout/changing-scroll-snap-type.html testharness css/css-scroll-snap/snap-after-relayout/focus-element-no-snap.html +testharness css/css-scroll-snap/snap-after-relayout/layout-follows-focused-targeted-block.html testharness css/css-scroll-snap/snap-after-relayout/move-current-target.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/common-to-both-axes-supercedes-first-in-tree-order.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/nested-supercedes-common-to-both-axes.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-common-to-both-axes.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-first-in-tree-order.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-focused-element.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-focused-nested-containers.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-inner-target.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-targeted-element-main-frame.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-targeted-element-positioned.html +testharness css/css-scroll-snap/snap-after-relayout/multiple-aligned-targets/prefer-targeted-element.html testharness css/css-scroll-snap/snap-after-relayout/not-resnap-outside-proximity-threshold.html testharness css/css-scroll-snap/snap-after-relayout/remove-current-target.html testharness css/css-scroll-snap/snap-after-relayout/resnap-to-focused.html @@ -30221,10 +33010,15 @@ testharness css/css-scroll-snap/snap-after-relayout/snap-to-different-targets.ht testharness css/css-scroll-snap/snap-area-capturing-add-scroll-container.html testharness css/css-scroll-snap/snap-area-capturing-remove-scroll-container.html testharness css/css-scroll-snap/snap-at-user-scroll-end.html +testharness css/css-scroll-snap/snap-fling-in-large-area.html testharness css/css-scroll-snap/snap-inline-block.html testharness css/css-scroll-snap/snap-intended-direction.html +testharness css/css-scroll-snap/snap-into-covering-area.tentative.html testharness css/css-scroll-snap/snap-on-focus.html +testharness css/css-scroll-snap/snap-to-combination-of-two-elements-1.html +testharness css/css-scroll-snap/snap-to-combination-of-two-elements-2.tentative.html testharness css/css-scroll-snap/snap-to-transformed-target.html +testharness css/css-scroll-snap/snap-to-visible-areas-both-pseudo.html testharness css/css-scroll-snap/snap-to-visible-areas-both.html testharness css/css-scroll-snap/snap-to-visible-areas-margin-both.html testharness css/css-scroll-snap/snap-to-visible-areas-margin-x-axis.html @@ -30233,8 +33027,15 @@ testharness css/css-scroll-snap/snap-to-visible-areas-x-axis.html testharness css/css-scroll-snap/snap-to-visible-areas-y-axis.html testharness css/css-scroll-snap/unreachable-snap-positions-001.html testharness css/css-scroll-snap/unreachable-snap-positions-002.html -testharness css/css-scrollbars/auto-scrollbar-inline-children.html +testharness css/css-scroll-snap/unreachable-snap-positions-003.html +testharness css/css-scroll-snap/unreachable-snap-positions-004.html testharness css/css-scrollbars/inheritance.html +testharness css/css-scrollbars/scrollbar-color-001.html +testharness css/css-scrollbars/scrollbar-color-002.html +testharness css/css-scrollbars/scrollbar-color-003.html +testharness css/css-scrollbars/scrollbar-color-004.html +testharness css/css-scrollbars/scrollbar-color-005.html +testharness css/css-scrollbars/scrollbar-color-parsing.html testharness css/css-scrollbars/scrollbar-width-001.html testharness css/css-scrollbars/scrollbar-width-002.html testharness css/css-scrollbars/scrollbar-width-003.html @@ -30243,6 +33044,14 @@ testharness css/css-scrollbars/scrollbar-width-005.html testharness css/css-scrollbars/scrollbar-width-006.html testharness css/css-scrollbars/scrollbar-width-007.html testharness css/css-scrollbars/scrollbar-width-008.html +testharness css/css-scrollbars/scrollbar-width-009.html +testharness css/css-scrollbars/scrollbar-width-010.html +testharness css/css-scrollbars/scrollbar-width-011.html +testharness css/css-scrollbars/scrollbar-width-012.html +testharness css/css-scrollbars/scrollbar-width-013.html +testharness css/css-scrollbars/scrollbar-width-014.html +testharness css/css-scrollbars/scrollbar-width-015.html +testharness css/css-scrollbars/scrollbar-width-016.html testharness css/css-scrollbars/scrollbar-width-keywords.html testharness css/css-scrollbars/scrollbar-width-parsing.html testharness css/css-shadow-parts/all-hosts.html @@ -30253,6 +33062,8 @@ testharness css/css-shadow-parts/complex-non-matching.html testharness css/css-shadow-parts/different-host.html testharness css/css-shadow-parts/double-forward.html testharness css/css-shadow-parts/exportparts-multiple.html +testharness css/css-shadow-parts/grouping-with-checked.html +testharness css/css-shadow-parts/grouping-with-disabled.html testharness css/css-shadow-parts/host-part-001.html testharness css/css-shadow-parts/host-stylesheet.html testharness css/css-shadow-parts/idlharness.html @@ -30267,8 +33078,10 @@ testharness css/css-shadow-parts/invalidation-complex-selector-forward.html testharness css/css-shadow-parts/invalidation-complex-selector.html testharness css/css-shadow-parts/invalidation-part-pseudo.html testharness css/css-shadow-parts/multiple-parts.html +testharness css/css-shadow-parts/part-mutation-pseudo.html testharness css/css-shadow-parts/part-name-idl.html testharness css/css-shadow-parts/precedence-part-vs-part.html +testharness css/css-shadow-parts/pseudo-classes-after-part.html testharness css/css-shadow-parts/serialization.html testharness css/css-shadow-parts/simple-forward-shorthand.html testharness css/css-shadow-parts/simple-forward.html @@ -30294,9 +33107,31 @@ testharness css/css-shapes/parsing/shape-margin-invalid.html testharness css/css-shapes/parsing/shape-margin-valid.html testharness css/css-shapes/parsing/shape-outside-computed.html testharness css/css-shapes/parsing/shape-outside-invalid-position.html -testharness css/css-shapes/parsing/shape-outside-invalid.html testharness css/css-shapes/parsing/shape-outside-valid-position.html -testharness css/css-shapes/parsing/shape-outside-valid.html +testharness css/css-shapes/shape-functions/circle-function-computed.html +testharness css/css-shapes/shape-functions/circle-function-invalid.html +testharness css/css-shapes/shape-functions/circle-function-valid.html +testharness css/css-shapes/shape-functions/ellipse-function-computed.html +testharness css/css-shapes/shape-functions/ellipse-function-invalid.html +testharness css/css-shapes/shape-functions/ellipse-function-valid.html +testharness css/css-shapes/shape-functions/inset-function-computed.html +testharness css/css-shapes/shape-functions/inset-function-invalid.html +testharness css/css-shapes/shape-functions/inset-function-valid.html +testharness css/css-shapes/shape-functions/path-function-computed.html +testharness css/css-shapes/shape-functions/path-function-invalid.html +testharness css/css-shapes/shape-functions/path-function-valid.html +testharness css/css-shapes/shape-functions/polygon-function-computed.html +testharness css/css-shapes/shape-functions/polygon-function-invalid.html +testharness css/css-shapes/shape-functions/polygon-function-valid.html +testharness css/css-shapes/shape-functions/rect-function-computed.html +testharness css/css-shapes/shape-functions/rect-function-invalid.html +testharness css/css-shapes/shape-functions/rect-function-valid.html +testharness css/css-shapes/shape-functions/shape-function-computed.tentative.html +testharness css/css-shapes/shape-functions/shape-function-invalid.tentative.html +testharness css/css-shapes/shape-functions/shape-function-valid.tentative.html +testharness css/css-shapes/shape-functions/xywh-function-computed.html +testharness css/css-shapes/shape-functions/xywh-function-invalid.html +testharness css/css-shapes/shape-functions/xywh-function-valid.html testharness css/css-shapes/shape-outside-invalid-001.html testharness css/css-shapes/shape-outside-invalid-circle-000.html testharness css/css-shapes/shape-outside-invalid-circle-001.html @@ -30394,8 +33229,10 @@ testharness css/css-size-adjust/parsing/text-size-adjust-computed.html testharness css/css-size-adjust/parsing/text-size-adjust-invalid.html testharness css/css-size-adjust/parsing/text-size-adjust-valid.html testharness css/css-sizing/animation/aspect-ratio-interpolation.html +testharness css/css-sizing/animation/box-sizing-no-interpolation.html testharness css/css-sizing/animation/height-composition.html testharness css/css-sizing/animation/height-interpolation.html +testharness css/css-sizing/animation/height-no-interpolation.html testharness css/css-sizing/animation/max-height-composition.html testharness css/css-sizing/animation/max-height-interpolation.html testharness css/css-sizing/animation/max-width-composition.html @@ -30407,6 +33244,8 @@ testharness css/css-sizing/animation/min-width-interpolation.html testharness css/css-sizing/animation/width-composition.html testharness css/css-sizing/animation/width-interpolation.html testharness css/css-sizing/aspect-ratio-affects-container-width-when-height-changes.html +testharness css/css-sizing/aspect-ratio/box-sizing-dimensions.html +testharness css/css-sizing/aspect-ratio/box-sizing-squashed.html testharness css/css-sizing/aspect-ratio/fractional-aspect-ratio.html testharness css/css-sizing/aspect-ratio/parsing/aspect-ratio-computed.html testharness css/css-sizing/aspect-ratio/parsing/aspect-ratio-invalid.html @@ -30431,6 +33270,12 @@ testharness css/css-sizing/contain-intrinsic-size/auto-009.html testharness css/css-sizing/contain-intrinsic-size/auto-010.html testharness css/css-sizing/contain-intrinsic-size/auto-011.html testharness css/css-sizing/contain-intrinsic-size/auto-012.html +testharness css/css-sizing/contain-intrinsic-size/auto-013.html +testharness css/css-sizing/contain-intrinsic-size/auto-014.html +testharness css/css-sizing/contain-intrinsic-size/auto-015.html +testharness css/css-sizing/contain-intrinsic-size/auto-016.html +testharness css/css-sizing/contain-intrinsic-size/auto-017.html +testharness css/css-sizing/contain-intrinsic-size/auto-018.html testharness css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-009.html testharness css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-028.html testharness css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-029.html @@ -30503,18 +33348,23 @@ testharness css/css-syntax/charset/page-windows-1251-css-no-decl.html testharness css/css-syntax/charset/page-windows-1251-css-utf8-bom.html testharness css/css-syntax/charset/page-windows-1252-http-windows-1251-css-utf8-bom.html testharness css/css-syntax/charset/xml-stylesheet-page-windows-1251-charset-attribute-windows-1250.xhtml +testharness css/css-syntax/custom-property-rule-ambiguity.html testharness css/css-syntax/decimal-points-in-numbers.html testharness css/css-syntax/declarations-trim-whitespace.html testharness css/css-syntax/escaped-eof.html testharness css/css-syntax/ident-three-code-points.html testharness css/css-syntax/inclusive-ranges.html testharness css/css-syntax/input-preprocessing.html +testharness css/css-syntax/non-ascii-codepoints.html testharness css/css-syntax/serialize-consecutive-tokens.html +testharness css/css-syntax/serialize-escape-identifiers.html +testharness css/css-syntax/trailing-braces.html testharness css/css-syntax/unclosed-constructs.html testharness css/css-syntax/unclosed-url-at-eof.html testharness css/css-syntax/unicode-range-selector.html testharness css/css-syntax/urange-parsing.html testharness css/css-syntax/url-whitespace-consumption.html +testharness css/css-syntax/var-with-blocks.html testharness css/css-syntax/whitespace.html testharness css/css-tables/absolute-tables-001.html testharness css/css-tables/absolute-tables-002.html @@ -30534,6 +33384,9 @@ testharness css/css-tables/caption-writing-mode-002.html testharness css/css-tables/chrome-rowspan-bug.html testharness css/css-tables/col_removal.html testharness css/css-tables/collapsed-scroll-overflow.html +testharness css/css-tables/colspan-001.html +testharness css/css-tables/colspan-002.html +testharness css/css-tables/colspan-003.html testharness css/css-tables/column-track-merging.html testharness css/css-tables/dynamic-rowspan-change.html testharness css/css-tables/fixed-layout-1.html @@ -30573,6 +33426,7 @@ testharness css/css-tables/percent-height-overflow-auto-in-restricted-block-size testharness css/css-tables/percent-width-ignored-001.tentative.html testharness css/css-tables/percent-width-ignored-002.tentative.html testharness css/css-tables/percent-width-ignored-003.tentative.html +testharness css/css-tables/table-cell-scroll-height.html testharness css/css-tables/table-cell-writing-mode-computed.html testharness css/css-tables/table-model-fixup-2.html testharness css/css-tables/table-model-fixup.html @@ -30591,6 +33445,7 @@ testharness css/css-tables/tentative/table-fixed-minmax.html testharness css/css-tables/tentative/table-height-redistribution.html testharness css/css-tables/tentative/table-minmax.html testharness css/css-tables/tentative/table-quirks.html +testharness css/css-tables/tentative/table-rows-with-zero-columns.html testharness css/css-tables/tentative/table-width-redistribution-fixed-padding.html testharness css/css-tables/tentative/table-width-redistribution-fixed.html testharness css/css-tables/tentative/table-width-redistribution.html @@ -30639,6 +33494,8 @@ testharness css/css-tables/width-distribution/distribution-algo-min-content-spec testharness css/css-tables/width-distribution/distribution-algo-min-content-specified-guess.html testharness css/css-tables/width-distribution/td-with-subpixel-padding-vertical-rl.html testharness css/css-tables/width-distribution/td-with-subpixel-padding.html +testharness css/css-text-decor/animations/discrete-no-interpolation.html +testharness css/css-text-decor/animations/text-decoration-thickness-interpolation.html testharness css/css-text-decor/animations/text-underline-offset-interpolation.html testharness css/css-text-decor/inheritance.html testharness css/css-text-decor/parsing/text-decoration-color-computed.html @@ -30677,8 +33534,10 @@ testharness css/css-text-decor/text-underline-offset-computed.html testharness css/css-text-decor/text-underline-offset-initial.html testharness css/css-text-decor/text-underline-offset-invalid.html testharness css/css-text-decor/text-underline-offset-valid.html +testharness css/css-text/animations/hyphen-no-interpolation.html testharness css/css-text/animations/letter-spacing-composition.html testharness css/css-text/animations/letter-spacing-interpolation.html +testharness css/css-text/animations/line-break-no-interpolation.html testharness css/css-text/animations/tab-size-interpolation.html testharness css/css-text/animations/text-indent-composition.html testharness css/css-text/animations/text-indent-interpolation.html @@ -30882,7 +33741,10 @@ testharness css/css-text/i18n/zh/css-text-line-break-zh-pr-loose.html testharness css/css-text/i18n/zh/css-text-line-break-zh-pr-normal.html testharness css/css-text/i18n/zh/css-text-line-break-zh-pr-strict.html testharness css/css-text/inheritance.html +testharness css/css-text/letter-spacing/letter-spacing-trim-start-002.html testharness css/css-text/line-breaking/line-breaking-020.html +testharness css/css-text/line-breaking/line-breaking-028.html +testharness css/css-text/line-breaking/line-breaking-029.html testharness css/css-text/line-breaking/line-breaking-atomic-nowrap-001.html testharness css/css-text/overflow-wrap/overflow-wrap-anywhere-span-002.html testharness css/css-text/overflow-wrap/overflow-wrap-break-word-keep-all-001.html @@ -30920,6 +33782,9 @@ testharness css/css-text/parsing/text-align-last-computed.html testharness css/css-text/parsing/text-align-last-invalid.html testharness css/css-text/parsing/text-align-last-valid.html testharness css/css-text/parsing/text-align-valid.html +testharness css/css-text/parsing/text-autospace-computed.html +testharness css/css-text/parsing/text-autospace-invalid.html +testharness css/css-text/parsing/text-autospace-valid.html testharness css/css-text/parsing/text-group-align-invalid.html testharness css/css-text/parsing/text-group-align-valid.html testharness css/css-text/parsing/text-indent-computed.html @@ -30929,23 +33794,39 @@ testharness css/css-text/parsing/text-justify-computed-legacy.html testharness css/css-text/parsing/text-justify-computed.html testharness css/css-text/parsing/text-justify-invalid.html testharness css/css-text/parsing/text-justify-valid.html +testharness css/css-text/parsing/text-spacing-computed.html +testharness css/css-text/parsing/text-spacing-invalid.html +testharness css/css-text/parsing/text-spacing-trim-computed.html +testharness css/css-text/parsing/text-spacing-trim-invalid.html +testharness css/css-text/parsing/text-spacing-trim-valid.html +testharness css/css-text/parsing/text-spacing-valid.html testharness css/css-text/parsing/text-transform-computed.html testharness css/css-text/parsing/text-transform-invalid.html testharness css/css-text/parsing/text-transform-valid.html +testharness css/css-text/parsing/text-wrap-computed.html testharness css/css-text/parsing/text-wrap-invalid.html +testharness css/css-text/parsing/text-wrap-mode-computed.html +testharness css/css-text/parsing/text-wrap-mode-invalid.html +testharness css/css-text/parsing/text-wrap-mode-valid.html +testharness css/css-text/parsing/text-wrap-pretty.html +testharness css/css-text/parsing/text-wrap-style-computed.html +testharness css/css-text/parsing/text-wrap-style-invalid.html +testharness css/css-text/parsing/text-wrap-style-valid.html testharness css/css-text/parsing/text-wrap-valid.html +testharness css/css-text/parsing/white-space-collapse-computed.html +testharness css/css-text/parsing/white-space-collapse-invalid.html +testharness css/css-text/parsing/white-space-collapse-valid.html testharness css/css-text/parsing/white-space-computed.html testharness css/css-text/parsing/white-space-invalid.html +testharness css/css-text/parsing/white-space-shorthand-text-wrap.html +testharness css/css-text/parsing/white-space-shorthand.html testharness css/css-text/parsing/white-space-valid.html -testharness css/css-text/parsing/word-boundary-detection-computed.html -testharness css/css-text/parsing/word-boundary-detection-invalid.html -testharness css/css-text/parsing/word-boundary-detection-valid.html -testharness css/css-text/parsing/word-boundary-expansion-computed.html -testharness css/css-text/parsing/word-boundary-expansion-invalid.html -testharness css/css-text/parsing/word-boundary-expansion-valid.html testharness css/css-text/parsing/word-break-computed.html testharness css/css-text/parsing/word-break-invalid.html testharness css/css-text/parsing/word-break-valid.html +testharness css/css-text/parsing/word-space-transform-computed.html +testharness css/css-text/parsing/word-space-transform-invalid.html +testharness css/css-text/parsing/word-space-transform-valid.html testharness css/css-text/parsing/word-spacing-computed.html testharness css/css-text/parsing/word-spacing-invalid.html testharness css/css-text/parsing/word-spacing-valid.html @@ -30958,9 +33839,15 @@ testharness css/css-text/text-align/text-align-last-empty-inline.html testharness css/css-text/text-align/text-align-last-interpolation.html testharness css/css-text/text-align/text-align-match-parent-002.html testharness css/css-text/text-align/text-align-webkit-match-parent.html +testharness css/css-text/text-autospace/text-autospace-first-line-001.html +testharness css/css-text/text-autospace/text-autospace-ligature-001.html +testharness css/css-text/text-autospace/text-autospace-mixed-001.html testharness css/css-text/text-indent/percentage-value-intrinsic-size.html testharness css/css-text/text-justify/distribute-alias.tentative.html testharness css/css-text/text-justify/text-justify-interpolation.html +testharness css/css-text/text-spacing-trim/text-spacing-trim-combinations-001.html +testharness css/css-text/text-transform/math/text-transform-math-auto-003.html +testharness css/css-text/text-transform/text-transform-upperlower-107.html testharness css/css-text/white-space/append-whitespace-only-node-crash-001.html testharness css/css-text/white-space/seg-break-transformation-000.tentative.html testharness css/css-text/white-space/seg-break-transformation-001.tentative.html @@ -30979,6 +33866,9 @@ testharness css/css-text/white-space/seg-break-transformation-014.tentative.html testharness css/css-text/white-space/seg-break-transformation-015.tentative.html testharness css/css-text/white-space/seg-break-transformation-016.tentative.html testharness css/css-text/white-space/seg-break-transformation-017.tentative.html +testharness css/css-text/white-space/text-wrap-balance-001.html +testharness css/css-text/white-space/text-wrap-balance-right-to-left.html +testharness css/css-text/white-space/text-wrap-balance-top-to-bottom.html testharness css/css-text/white-space/trailing-space-before-br-001.html testharness css/css-text/white-space/trailing-space-in-inline-box.html testharness css/css-text/white-space/trailing-space-position-001.html @@ -30987,37 +33877,10 @@ testharness css/css-text/white-space/white-space-collapse-001.html testharness css/css-text/white-space/white-space-collapse-002.html testharness css/css-text/word-break/word-break-break-word-crash-001.html testharness css/css-text/word-spacing/word-spacing-computed-001.html -testharness css/css-toggle/animations/toggle-group-interpolation.tentative.html -testharness css/css-toggle/animations/toggle-root-interpolation.tentative.html -testharness css/css-toggle/animations/toggle-trigger-interpolation.tentative.html -testharness css/css-toggle/idlharness.tentative.html -testharness css/css-toggle/parsing/toggle-computed.tentative.html -testharness css/css-toggle/parsing/toggle-group-computed.tentative.html -testharness css/css-toggle/parsing/toggle-group-invalid.tentative.html -testharness css/css-toggle/parsing/toggle-group-valid.tentative.html -testharness css/css-toggle/parsing/toggle-invalid.tentative.html -testharness css/css-toggle/parsing/toggle-root-computed.tentative.html -testharness css/css-toggle/parsing/toggle-root-invalid.tentative.html -testharness css/css-toggle/parsing/toggle-root-valid.tentative.html -testharness css/css-toggle/parsing/toggle-trigger-computed.tentative.html -testharness css/css-toggle/parsing/toggle-trigger-invalid.tentative.html -testharness css/css-toggle/parsing/toggle-trigger-valid.tentative.html -testharness css/css-toggle/parsing/toggle-valid.tentative.html -testharness css/css-toggle/parsing/toggle-visibility-computed.tentative.html -testharness css/css-toggle/parsing/toggle-visibility-invalid.tentative.html -testharness css/css-toggle/parsing/toggle-visibility-valid.tentative.html -testharness css/css-toggle/toggle-activation-with-groups.tentative.html -testharness css/css-toggle/toggle-activation.tentative.html -testharness css/css-toggle/toggle-api.tentative.html -testharness css/css-toggle/toggle-creation.tentative.html -testharness css/css-toggle/toggle-events.tentative.html -testharness css/css-toggle/toggle-pseudo-class.tentative.html -testharness css/css-toggle/toggle-shorthand-serialization.tentative.html -testharness css/css-toggle/toggle-trigger-focus.tentative.html -testharness css/css-toggle/toggle-trigger-multiple.tentative.html -testharness css/css-toggle/toggle-visibility.tentative.html testharness css/css-transforms/2d-rotate-js.html +testharness css/css-transforms/2d-transform-inline-js.html testharness css/css-transforms/3d-rendering-context-behavior.html +testharness css/css-transforms/animation/backface-visibility-no-interpolation.html testharness css/css-transforms/animation/composited-transform.html testharness css/css-transforms/animation/list-interpolation.html testharness css/css-transforms/animation/matrix-interpolation.html @@ -31025,7 +33888,9 @@ testharness css/css-transforms/animation/perspective-composition.html testharness css/css-transforms/animation/perspective-interpolation.html testharness css/css-transforms/animation/perspective-origin-interpolation.html testharness css/css-transforms/animation/rotate-composition.html +testharness css/css-transforms/animation/rotate-interpolation-math-functions-tentative.html testharness css/css-transforms/animation/rotate-interpolation.html +testharness css/css-transforms/animation/scale-animation-math-functions-tentative.html testharness css/css-transforms/animation/scale-composition.html testharness css/css-transforms/animation/scale-interpolation.html testharness css/css-transforms/animation/transform-composition.html @@ -31035,10 +33900,12 @@ testharness css/css-transforms/animation/transform-interpolation-003.html testharness css/css-transforms/animation/transform-interpolation-004.html testharness css/css-transforms/animation/transform-interpolation-005.html testharness css/css-transforms/animation/transform-interpolation-006.html +testharness css/css-transforms/animation/transform-interpolation-007.html testharness css/css-transforms/animation/transform-interpolation-computed-value.html testharness css/css-transforms/animation/transform-interpolation-inline-value.html testharness css/css-transforms/animation/transform-interpolation-verify-reftests.html testharness css/css-transforms/animation/transform-matrix-composition.html +testharness css/css-transforms/animation/transform-non-invertible-no-transition.html testharness css/css-transforms/animation/transform-origin-interpolation.html testharness css/css-transforms/animation/transform-perspective-composition.html testharness css/css-transforms/animation/transform-rotate-composition.html @@ -31057,8 +33924,10 @@ testharness css/css-transforms/parsing/backface-visibility-valid.html testharness css/css-transforms/parsing/perspective-origin-computed.html testharness css/css-transforms/parsing/perspective-origin-invalid.html testharness css/css-transforms/parsing/perspective-origin-valid.html +testharness css/css-transforms/parsing/rotate-parsing-computed.html testharness css/css-transforms/parsing/rotate-parsing-invalid.html testharness css/css-transforms/parsing/rotate-parsing-valid.html +testharness css/css-transforms/parsing/scale-parsing-computed.html testharness css/css-transforms/parsing/scale-parsing-invalid.html testharness css/css-transforms/parsing/scale-parsing-valid.html testharness css/css-transforms/parsing/transform-box-computed.html @@ -31070,6 +33939,7 @@ testharness css/css-transforms/parsing/transform-origin-computed.html testharness css/css-transforms/parsing/transform-origin-invalid.html testharness css/css-transforms/parsing/transform-origin-valid.html testharness css/css-transforms/parsing/transform-valid.html +testharness css/css-transforms/parsing/translate-parsing-computed.html testharness css/css-transforms/parsing/translate-parsing-invalid.html testharness css/css-transforms/parsing/translate-parsing-valid.html testharness css/css-transforms/preserve-3d-flat-grouping-properties-containing-block.html @@ -31079,10 +33949,12 @@ testharness css/css-transforms/transform-2d-getComputedStyle-001.html testharness css/css-transforms/transform-and-individual-transform-properties-computed-style.html testharness css/css-transforms/transform-getBoundingClientRect-001.html testharness css/css-transforms/transform-hit-testing.html +testharness css/css-transforms/transform-important.html testharness css/css-transforms/transform-origin-014.html testharness css/css-transforms/transform-origin-in-shadow.html testharness css/css-transforms/transform-percent-009.html testharness css/css-transforms/transform-scale-hittest.html +testharness css/css-transforms/transform-with-sign-function.html testharness css/css-transforms/transform_translate.html testharness css/css-transforms/transform_translate_invalid.html testharness css/css-transforms/transform_translate_max.html @@ -31097,6 +33969,7 @@ testharness css/css-transitions/CSSTransition-canceling.tentative.html testharness css/css-transitions/CSSTransition-currentTime.tentative.html testharness css/css-transitions/CSSTransition-effect.tentative.html testharness css/css-transitions/CSSTransition-finished.tentative.html +testharness css/css-transitions/CSSTransition-not-canceling.tentative.html testharness css/css-transitions/CSSTransition-ready.tentative.html testharness css/css-transitions/CSSTransition-startTime.tentative.html testharness css/css-transitions/CSSTransition-transitionProperty.tentative.html @@ -31106,6 +33979,7 @@ testharness css/css-transitions/KeyframeEffect-getKeyframes-width-and-height-tra testharness css/css-transitions/KeyframeEffect-getKeyframes.tentative.html testharness css/css-transitions/KeyframeEffect-setKeyframes.tentative.html testharness css/css-transitions/KeyframeEffect-target.tentative.html +testharness css/css-transitions/animations/animate-with-color-mix.html testharness css/css-transitions/animations/change-duration-during-transition.html testharness css/css-transitions/animations/color-transition-premultiplied.html testharness css/css-transitions/animations/move-after-transition.html @@ -31123,6 +33997,8 @@ testharness css/css-transitions/changing-while-transition-003.html testharness css/css-transitions/changing-while-transition-004.html testharness css/css-transitions/currentcolor-animation-001.html testharness css/css-transitions/disconnected-element-001.html +testharness css/css-transitions/display-none-no-animations.html +testharness css/css-transitions/dynamic-root-element.html testharness css/css-transitions/event-dispatch.tentative.html testharness css/css-transitions/events-001.html testharness css/css-transitions/events-002.html @@ -31132,12 +34008,16 @@ testharness css/css-transitions/events-005.html testharness css/css-transitions/events-006.html testharness css/css-transitions/events-007.html testharness css/css-transitions/historical.html +testharness css/css-transitions/idlharness-2.html testharness css/css-transitions/idlharness.html +testharness css/css-transitions/inert-while-transitioning-to-display-none.html testharness css/css-transitions/inherit-height-transition.html testharness css/css-transitions/inheritance.html testharness css/css-transitions/non-rendered-element-001.html testharness css/css-transitions/non-rendered-element-002.html testharness css/css-transitions/non-rendered-element-004.tentative.html +testharness css/css-transitions/parsing/starting-style-parsing.html +testharness css/css-transitions/parsing/transition-behavior.html testharness css/css-transitions/parsing/transition-computed.html testharness css/css-transitions/parsing/transition-delay-computed.html testharness css/css-transitions/parsing/transition-delay-invalid.html @@ -31164,30 +34044,44 @@ testharness css/css-transitions/properties-value-inherit-003.html testharness css/css-transitions/pseudo-elements-001.html testharness css/css-transitions/pseudo-elements-002.html testharness css/css-transitions/retargetted-transition-with-box-sizing.html +testharness css/css-transitions/shadow-root-insertion.html testharness css/css-transitions/starting-of-transitions-001.html +testharness css/css-transitions/starting-style-adjustment.html +testharness css/css-transitions/starting-style-cascade.html +testharness css/css-transitions/starting-style-name-defining-rules.html +testharness css/css-transitions/starting-style-rule-basic.html +testharness css/css-transitions/starting-style-rule-none.html +testharness css/css-transitions/starting-style-rule-pseudo-elements.html +testharness css/css-transitions/starting-style-size-container.html testharness css/css-transitions/transition-001.html testharness css/css-transitions/transition-after-animation-001.html testharness css/css-transitions/transition-background-position-with-edge-offset.html testharness css/css-transitions/transition-base-response-001.html testharness css/css-transitions/transition-base-response-002.html testharness css/css-transitions/transition-base-response-003.html +testharness css/css-transitions/transition-behavior.html testharness css/css-transitions/transition-delay-001.html testharness css/css-transitions/transition-duration-001.html testharness css/css-transitions/transition-duration-shorthand.html +testharness css/css-transitions/transition-events-with-document-change.html +testharness css/css-transitions/transition-important.html testharness css/css-transitions/transition-property-001.html testharness css/css-transitions/transition-property-002.html testharness css/css-transitions/transition-reparented.html testharness css/css-transitions/transitioncancel-001.html testharness css/css-transitions/transitioncancel-002.html testharness css/css-transitions/transitionevent-interface.html +testharness css/css-transitions/transitions-retarget.html testharness css/css-transitions/zero-duration-multiple-transition.html testharness css/css-typed-om/CSSMatrixComponent-DOMMatrix-mutable.html testharness css/css-typed-om/declared-styleMap-accepts-inherit.html testharness css/css-typed-om/factory-absolute-length.html testharness css/css-typed-om/factory-duration.html +testharness css/css-typed-om/factory-font-relative-length.html testharness css/css-typed-om/factory-frequency.html testharness css/css-typed-om/historical.html testharness css/css-typed-om/idlharness.html +testharness css/css-typed-om/parse-calc-expressions.html testharness css/css-typed-om/set-var-reference-thcrash.html testharness css/css-typed-om/stylevalue-normalization/normalize-ident.tentative.html testharness css/css-typed-om/stylevalue-normalization/normalize-image.html @@ -31294,8 +34188,7 @@ testharness css/css-typed-om/the-stylepropertymap/inline/set.tentative.html testharness css/css-typed-om/the-stylepropertymap/properties/accent-color.html testharness css/css-typed-om/the-stylepropertymap/properties/alignment-baseline.html testharness css/css-typed-om/the-stylepropertymap/properties/all.html -testharness css/css-typed-om/the-stylepropertymap/properties/animation-delay-end.tentative.html -testharness css/css-typed-om/the-stylepropertymap/properties/animation-delay-start.tentative.html +testharness css/css-typed-om/the-stylepropertymap/properties/anchor-scope.html testharness css/css-typed-om/the-stylepropertymap/properties/animation-delay.html testharness css/css-typed-om/the-stylepropertymap/properties/animation-direction.html testharness css/css-typed-om/the-stylepropertymap/properties/animation-duration.html @@ -31534,8 +34427,10 @@ testharness css/css-typed-om/the-stylepropertymap/properties/z-index.html testharness css/css-ui/accent-color-computed.html testharness css/css-ui/accent-color-parsing.html testharness css/css-ui/animation/accent-color-interpolation.html +testharness css/css-ui/animation/appearance-no-interpolation.html testharness css/css-ui/animation/caret-color-composition.html testharness css/css-ui/animation/caret-color-interpolation.html +testharness css/css-ui/animation/cursor-no-interpolation.html testharness css/css-ui/animation/outline-color-interpolation.html testharness css/css-ui/animation/outline-offset-composition.html testharness css/css-ui/animation/outline-offset-interpolation.html @@ -31567,19 +34462,23 @@ testharness css/css-ui/input-security-computed.html testharness css/css-ui/input-security-parsing.html testharness css/css-ui/outline-017.html testharness css/css-ui/outline-018.html +testharness css/css-ui/outline-width-rounding.tentative.html testharness css/css-ui/parsing/box-sizing-computed.html testharness css/css-ui/parsing/box-sizing-invalid.html testharness css/css-ui/parsing/box-sizing-valid.html +testharness css/css-ui/parsing/canonical-order-outline-sub-properties-001.html testharness css/css-ui/parsing/caret-color-computed.html testharness css/css-ui/parsing/caret-color-invalid.html testharness css/css-ui/parsing/caret-color-valid.html testharness css/css-ui/parsing/cursor-computed.html testharness css/css-ui/parsing/cursor-invalid.html testharness css/css-ui/parsing/cursor-valid.html +testharness css/css-ui/parsing/field-sizing-computed.html +testharness css/css-ui/parsing/field-sizing-invalid.html +testharness css/css-ui/parsing/field-sizing-valid.html testharness css/css-ui/parsing/outline-color-computed.html testharness css/css-ui/parsing/outline-color-invalid.html -testharness css/css-ui/parsing/outline-color-valid-mandatory.html -testharness css/css-ui/parsing/outline-color-valid-optional.html +testharness css/css-ui/parsing/outline-color-valid.html testharness css/css-ui/parsing/outline-invalid.html testharness css/css-ui/parsing/outline-offset-computed.html testharness css/css-ui/parsing/outline-offset-invalid.html @@ -31588,8 +34487,7 @@ testharness css/css-ui/parsing/outline-shorthand.html testharness css/css-ui/parsing/outline-style-computed.html testharness css/css-ui/parsing/outline-style-invalid.html testharness css/css-ui/parsing/outline-style-valid.html -testharness css/css-ui/parsing/outline-valid-mandatory.html -testharness css/css-ui/parsing/outline-valid-optional.html +testharness css/css-ui/parsing/outline-valid.html testharness css/css-ui/parsing/outline-width-computed.html testharness css/css-ui/parsing/outline-width-invalid.html testharness css/css-ui/parsing/outline-width-valid.html @@ -31602,12 +34500,15 @@ testharness css/css-ui/parsing/text-overflow-valid.html testharness css/css-ui/parsing/user-select-computed.html testharness css/css-ui/parsing/user-select-invalid.html testharness css/css-ui/parsing/user-select-valid.html +testharness css/css-ui/resize-interactive.html +testharness css/css-ui/text-overflow-017.html testharness css/css-ui/text-overflow-023.html testharness css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html testharness css/css-ui/text-overflow-ellipsis-hyphen.html testharness css/css-ui/text-overflow-ellipsis-self-painting.html testharness css/css-ui/text-overflow-ellipsis-width-001.html testharness css/css-ui/user-select-001.html +testharness css/css-ui/user-select-inheritance.html testharness css/css-ui/user-select-none-in-editable.html testharness css/css-ui/user-select-none-on-input.html testharness css/css-ui/webkit-appearance-parsing.html @@ -31619,6 +34520,9 @@ testharness css/css-values/acos-asin-atan-atan2-invalid.html testharness css/css-values/acos-asin-atan-atan2-serialize.html testharness css/css-values/animations/calc-interpolation.html testharness css/css-values/animations/line-height-lh-transition.html +testharness css/css-values/attr-all-types.html +testharness css/css-values/attr-invalidation.html +testharness css/css-values/attr-pseudo-elem-invalidation.html testharness css/css-values/calc-angle-values.html testharness css/css-values/calc-background-position-002.html testharness css/css-values/calc-background-position-003.html @@ -31629,26 +34533,61 @@ testharness css/css-values/calc-in-media-queries-with-mixed-units.html testharness css/css-values/calc-infinity-nan-computed.html testharness css/css-values/calc-infinity-nan-serialize-angle.html testharness css/css-values/calc-infinity-nan-serialize-length.html +testharness css/css-values/calc-infinity-nan-serialize-number.html +testharness css/css-values/calc-infinity-nan-serialize-resolution.html testharness css/css-values/calc-infinity-nan-serialize-time.html testharness css/css-values/calc-integer.html +testharness css/css-values/calc-invalid-parsing.html testharness css/css-values/calc-letter-spacing.html +testharness css/css-values/calc-linear-radial-conic-gradient-001.html testharness css/css-values/calc-nesting-002.html testharness css/css-values/calc-nesting.html testharness css/css-values/calc-numbers.html testharness css/css-values/calc-rgb-percent-001.html -testharness css/css-values/calc-rounding-001.html testharness css/css-values/calc-rounds-to-integer.html testharness css/css-values/calc-serialization-002.html testharness css/css-values/calc-serialization.html +testharness css/css-values/calc-size/animation/calc-size-height-interpolation.html +testharness css/css-values/calc-size/animation/calc-size-interpolation-expansion.html +testharness css/css-values/calc-size/animation/calc-size-width-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-height-composition.html +testharness css/css-values/calc-size/animation/interpolate-size-height-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-logical-properties-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-max-height-composition.html +testharness css/css-values/calc-size/animation/interpolate-size-max-height-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-max-width-composition.html +testharness css/css-values/calc-size/animation/interpolate-size-max-width-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-min-height-composition.html +testharness css/css-values/calc-size/animation/interpolate-size-min-height-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-min-width-composition.html +testharness css/css-values/calc-size/animation/interpolate-size-min-width-interpolation.html +testharness css/css-values/calc-size/animation/interpolate-size-which-value.html +testharness css/css-values/calc-size/animation/interpolate-size-width-composition.html +testharness css/css-values/calc-size/animation/interpolate-size-width-interpolation.html +testharness css/css-values/calc-size/calc-size-flex-basis-on-column.html +testharness css/css-values/calc-size/calc-size-flex-basis-on-row.html +testharness css/css-values/calc-size/calc-size-height-box-sizing.html +testharness css/css-values/calc-size/calc-size-height.html +testharness css/css-values/calc-size/calc-size-parsing.html +testharness css/css-values/calc-size/calc-size-typed-om.html +testharness css/css-values/calc-size/calc-size-width-box-sizing.html +testharness css/css-values/calc-size/calc-size-width.html +testharness css/css-values/calc-size/interpolate-size-computed.html +testharness css/css-values/calc-size/interpolate-size-parsing.html testharness css/css-values/calc-time-values.html testharness css/css-values/calc-unit-analysis.html testharness css/css-values/calc-z-index-fractions-001.html +testharness css/css-values/cap-invalidation.html testharness css/css-values/ch-empty-pseudo-recalc-on-font-load.html testharness css/css-values/ch-pseudo-recalc-on-font-load.html testharness css/css-values/ch-recalc-on-font-load.html testharness css/css-values/clamp-length-computed.html testharness css/css-values/clamp-length-invalid.html testharness css/css-values/clamp-length-serialize.html +testharness css/css-values/container-progress-computed.tentative.html +testharness css/css-values/container-progress-invalid.tentative.html +testharness css/css-values/container-progress-serialize.tentative.html testharness css/css-values/dynamic-viewport-units-rule-cache.html testharness css/css-values/exp-log-compute.html testharness css/css-values/exp-log-invalid.html @@ -31656,15 +34595,24 @@ testharness css/css-values/exp-log-serialize.html testharness css/css-values/getComputedStyle-border-radius-001.html testharness css/css-values/getComputedStyle-border-radius-002.html testharness css/css-values/getComputedStyle-border-radius-003.html +testharness css/css-values/getComputedStyle-calc-mixed-units-001.html +testharness css/css-values/getComputedStyle-calc-mixed-units-002.html +testharness css/css-values/getComputedStyle-calc-mixed-units-003.html testharness css/css-values/hypot-pow-sqrt-computed.html testharness css/css-values/hypot-pow-sqrt-invalid.html testharness css/css-values/hypot-pow-sqrt-serialize.html +testharness css/css-values/integer_interpolation_round_half_001.html +testharness css/css-values/integer_interpolation_round_half_002.html testharness css/css-values/integer_interpolation_round_half_towards_positive_infinity_order.html testharness css/css-values/integer_interpolation_round_half_towards_positive_infinity_z_index.html testharness css/css-values/lh-rlh-on-root-001.html testharness css/css-values/lh-unit-003.html testharness css/css-values/lh-unit-004.html +testharness css/css-values/lh-unit-005.html testharness css/css-values/line-break-ch-unit.html +testharness css/css-values/media-progress-computed.tentative.html +testharness css/css-values/media-progress-invalid.tentative.html +testharness css/css-values/media-progress-serialize.tentative.html testharness css/css-values/minmax-angle-computed.html testharness css/css-values/minmax-angle-invalid.html testharness css/css-values/minmax-angle-serialize.html @@ -31684,6 +34632,10 @@ testharness css/css-values/minmax-percentage-serialize.html testharness css/css-values/minmax-time-computed.html testharness css/css-values/minmax-time-invalid.html testharness css/css-values/minmax-time-serialize.html +testharness css/css-values/progress-computed.tentative.html +testharness css/css-values/progress-invalid.tentative.html +testharness css/css-values/progress-serialize.tentative.html +testharness css/css-values/rcap-invalidation.html testharness css/css-values/rch-invalidation.html testharness css/css-values/rem-unit-root-element.html testharness css/css-values/rex-invalidation.html @@ -31694,6 +34646,7 @@ testharness css/css-values/round-function.html testharness css/css-values/round-mod-rem-computed.html testharness css/css-values/round-mod-rem-invalid.html testharness css/css-values/round-mod-rem-serialize.html +testharness css/css-values/signed-zero.html testharness css/css-values/signs-abs-computed.html testharness css/css-values/signs-abs-invalid.html testharness css/css-values/signs-abs-serialize.html @@ -31705,10 +34658,12 @@ testharness css/css-values/urls/empty.html testharness css/css-values/urls/fragment-only.html testharness css/css-values/urls/resolve-relative-to-base.sub.html testharness css/css-values/urls/resolve-relative-to-stylesheet.html +testharness css/css-values/various-values-important.html testharness css/css-values/viewport-relative-lengths-scaled-viewport.html testharness css/css-values/viewport-units-after-font-load.html testharness css/css-values/viewport-units-compute.html testharness css/css-values/viewport-units-css2-001.html +testharness css/css-values/viewport-units-extreme-scale.html testharness css/css-values/viewport-units-invalidation.html testharness css/css-values/viewport-units-keyframes.html testharness css/css-values/viewport-units-media-queries.html @@ -31731,6 +34686,7 @@ testharness css/css-variables/variable-animation-substitute-within-keyframe.html testharness css/css-variables/variable-animation-to-only.html testharness css/css-variables/variable-created-document.html testharness css/css-variables/variable-created-element.html +testharness css/css-variables/variable-css-wide-keywords.html testharness css/css-variables/variable-cssText.html testharness css/css-variables/variable-cycles.html testharness css/css-variables/variable-definition-border-shorthand-serialize.html @@ -31744,6 +34700,7 @@ testharness css/css-variables/variable-first-line.html testharness css/css-variables/variable-invalidation.html testharness css/css-variables/variable-presentation-attribute.html testharness css/css-variables/variable-pseudo-element.html +testharness css/css-variables/variable-recalc-with-initial.html testharness css/css-variables/variable-reference-cssom.html testharness css/css-variables/variable-reference-refresh.html testharness css/css-variables/variable-reference-shorthands-cssom.html @@ -31759,18 +34716,52 @@ testharness css/css-variables/variable-substitution-shorthands.html testharness css/css-variables/variable-substitution-variable-declaration.html testharness css/css-variables/variable-transitions-transition-property-all-before-value.html testharness css/css-variables/variable-transitions-value-before-transition-property-all.html +testharness css/css-variables/variables-animation-math-functions.html testharness css/css-variables/variables-substitute-guaranteed-invalid.html testharness css/css-variables/vars-border-shorthand-serialize.html testharness css/css-view-transitions/duplicate-tag-rejects-capture.html testharness css/css-view-transitions/duplicate-tag-rejects-start.html testharness css/css-view-transitions/event-pseudo-name.html +testharness css/css-view-transitions/group-animation-for-root-transition.html +testharness css/css-view-transitions/hit-test-pseudo-element-element-from-point.html testharness css/css-view-transitions/hit-test-unpainted-element-from-point.html -testharness css/css-view-transitions/input-blocked-when-rendering-suppressed.html +testharness css/css-view-transitions/input-targets-root-while-render-blocked.html testharness css/css-view-transitions/mix-blend-mode-only-on-transition.html -testharness css/css-view-transitions/no-containment-on-new-element-mid-transition.html -testharness css/css-view-transitions/no-containment-on-new-element.html -testharness css/css-view-transitions/no-containment-on-old-element.html +testharness css/css-view-transitions/navigation/at-rule-cssom.html +testharness css/css-view-transitions/navigation/at-rule-in-layer-cascade-external-stylesheet.html +testharness css/css-view-transitions/navigation/at-rule-in-layer-cascade.html +testharness css/css-view-transitions/navigation/at-rule-in-layer.html +testharness css/css-view-transitions/navigation/at-rule-in-matching-media.html +testharness css/css-view-transitions/navigation/at-rule-in-non-matching-media.html +testharness css/css-view-transitions/navigation/at-rule-in-shadow-dom.html +testharness css/css-view-transitions/navigation/at-rule-multiple-rules.html +testharness css/css-view-transitions/navigation/at-rule-opt-in-change-with-script.html +testharness css/css-view-transitions/navigation/hide-before-reveal.html +testharness css/css-view-transitions/navigation/mismatched-snapshot-containing-block-size-skips.html +testharness css/css-view-transitions/navigation/old_vt_promises_bfcache.html +testharness css/css-view-transitions/navigation/pagereveal-ctor.html +testharness css/css-view-transitions/navigation/pagereveal-microtask-sequence.html +testharness css/css-view-transitions/navigation/pagereveal-no-view-transition-new-opt-out.html +testharness css/css-view-transitions/navigation/pagereveal-no-view-transition.html +testharness css/css-view-transitions/navigation/pagereveal-updatecallbackdone-promise.html +testharness css/css-view-transitions/navigation/pagereveal-with-view-transition.html +testharness css/css-view-transitions/navigation/pageswap-ctor.html +testharness css/css-view-transitions/navigation/pageswap-in-hidden-doc-should-skip-transition.html +testharness css/css-view-transitions/navigation/pageswap-long-delay.html +testharness css/css-view-transitions/navigation/pageswap-push-from-click.html +testharness css/css-view-transitions/navigation/pageswap-push-navigation.html +testharness css/css-view-transitions/navigation/pageswap-push-with-redirect.html +testharness css/css-view-transitions/navigation/pageswap-replace-navigation.html +testharness css/css-view-transitions/navigation/pageswap-skip-transition.html +testharness css/css-view-transitions/navigation/pageswap-traverse-navigation-no-bfcache.https.html +testharness css/css-view-transitions/navigation/skip-outbound-vt-before-reveal.html +testharness css/css-view-transitions/navigation/with-types/at-rule-with-types-parsing.html +testharness css/css-view-transitions/navigation/with-types/navigation-supersedes-types-same-rule.html +testharness css/css-view-transitions/navigation/with-types/navigation-supersedes-types-when-after.html +testharness css/css-view-transitions/navigation/with-types/types-in-pagereveal-and-pageswap.html +testharness css/css-view-transitions/navigation/zero-named-elements.html testharness css/css-view-transitions/no-crash-set-exception.html +testharness css/css-view-transitions/no-crash-view-transition-in-massive-iframe.html testharness css/css-view-transitions/no-css-animation-while-render-blocked.html testharness css/css-view-transitions/no-raf-while-render-blocked.html testharness css/css-view-transitions/only-child-group.html @@ -31780,30 +34771,60 @@ testharness css/css-view-transitions/only-child-no-transition.html testharness css/css-view-transitions/only-child-old.html testharness css/css-view-transitions/only-child-on-root-element-with-view-transition.html testharness css/css-view-transitions/only-child-view-transition.html +testharness css/css-view-transitions/parsing/pseudo-elements-invalid-with-classes.html +testharness css/css-view-transitions/parsing/pseudo-elements-invalid.html +testharness css/css-view-transitions/parsing/pseudo-elements-valid-with-classes.html +testharness css/css-view-transitions/parsing/pseudo-elements-valid.html +testharness css/css-view-transitions/parsing/view-transition-class-computed.html +testharness css/css-view-transitions/parsing/view-transition-class-invalid.html +testharness css/css-view-transitions/parsing/view-transition-class-valid.html +testharness css/css-view-transitions/parsing/view-transition-group-invalid.tentative.html +testharness css/css-view-transitions/parsing/view-transition-group-valid.tentative.html testharness css/css-view-transitions/parsing/view-transition-name-computed.html +testharness css/css-view-transitions/parsing/view-transition-name-invalid.html testharness css/css-view-transitions/parsing/view-transition-name-valid.html testharness css/css-view-transitions/paused-animation-at-end.html testharness css/css-view-transitions/pseudo-computed-style-stays-in-sync-with-new-element.html +testharness css/css-view-transitions/pseudo-element-animations.html testharness css/css-view-transitions/pseudo-get-computed-style.html testharness css/css-view-transitions/ready_resolves_after_dom_before_raf.html testharness css/css-view-transitions/style-inheritance.html testharness css/css-view-transitions/synchronous-callback-skipped-before-run.html +testharness css/css-view-transitions/transition-in-hidden-page.html testharness css/css-view-transitions/transition-skipped-after-animation-started.html testharness css/css-view-transitions/transition-skipped-from-invalid-callback.html testharness css/css-view-transitions/unset-and-initial-view-transition-name.html -testharness css/css-view-transitions/view-transition-name-on-added-element.html +testharness css/css-view-transitions/update-callback-timeout.html testharness css/css-view-transitions/view-transition-name-on-removed-element.html +testharness css/css-view-transitions/view-transition-types-mutable-no-document-element-crashtest.html +testharness css/css-view-transitions/view-transition-types-mutable.html +testharness css/css-view-transitions/web-animation-pseudo-incorrect-name.html +testharness css/css-view-transitions/window-resize-aborts-transition-before-ready.html testharness css/css-view-transitions/window-resize-aborts-transition.html +testharness css/css-viewport/computedStyle-zoom.html +testharness css/css-viewport/zoom/parsing/zoom-computed.html +testharness css/css-viewport/zoom/parsing/zoom-valid.html +testharness css/css-viewport/zoom/relative-units.html +testharness css/css-viewport/zoom/scroll-top-test-with-zoom.html testharness css/css-will-change/inheritance.html testharness css/css-will-change/parsing/will-change-computed.html testharness css/css-will-change/parsing/will-change-invalid.html testharness css/css-will-change/parsing/will-change-valid.html testharness css/css-will-change/will-change-inherit-dynamic.html testharness css/css-writing-modes/bidi-line-break-001.html +testharness css/css-writing-modes/forms/button-appearance-native-computed-style.html +testharness css/css-writing-modes/forms/checkbox-switch-input-computed-style.tentative.html +testharness css/css-writing-modes/forms/color-input-appearance-native-computed-style.html +testharness css/css-writing-modes/forms/date-input-appearance-native-computed-style.html +testharness css/css-writing-modes/forms/file-input-computed-style.html testharness css/css-writing-modes/forms/meter-appearance-native-computed-style.optional.html testharness css/css-writing-modes/forms/progress-appearance-native-computed-style.optional.html +testharness css/css-writing-modes/forms/select-appearance-native-computed-style.html +testharness css/css-writing-modes/forms/select-multiple-keyboard-selection.optional.html +testharness css/css-writing-modes/forms/select-multiple-options-visual-order.html testharness css/css-writing-modes/forms/select-multiple-scrolling.optional.html testharness css/css-writing-modes/forms/select-size-scrolling-and-sizing.optional.html +testharness css/css-writing-modes/forms/text-input-baseline.html testharness css/css-writing-modes/forms/text-input-block-size.optional.html testharness css/css-writing-modes/forms/text-input-vertical-overflow-no-scroll.html testharness css/css-writing-modes/forms/textarea-rows-cols-sizing.html @@ -31869,6 +34890,7 @@ testharness css/css-writing-modes/writing-mode-parsing-sideways-rl-001.html testharness css/css-writing-modes/writing-mode-parsing-svg1-001.html testharness css/cssom-view/CaretPosition-001.html testharness css/cssom-view/DOMRectList.html +testharness css/cssom-view/Element-currentCSSZoom.html testharness css/cssom-view/GetBoundingRect.html testharness css/cssom-view/HTMLBody-ScrollArea_quirksmode.html testharness css/cssom-view/HTMLImageElement-x-and-y-ignore-transforms.html @@ -31884,6 +34906,7 @@ testharness css/cssom-view/checkVisibility.html testharness css/cssom-view/client-props-inline-list-item.html testharness css/cssom-view/client-props-input.html testharness css/cssom-view/client-props-root.html +testharness css/cssom-view/client-props-zoom.html testharness css/cssom-view/cssom-getBoundingClientRect-001.html testharness css/cssom-view/cssom-getBoundingClientRect-002.html testharness css/cssom-view/cssom-getBoundingClientRect-003.html @@ -31928,6 +34951,7 @@ testharness css/cssom-view/elementsFromPoint.html testharness css/cssom-view/getBoundingClientRect-empty-inline.html testharness css/cssom-view/getBoundingClientRect-shy.html testharness css/cssom-view/getBoundingClientRect-svg.html +testharness css/cssom-view/getBoundingClientRect-zoom.html testharness css/cssom-view/getClientRects-br-htb-ltr.html testharness css/cssom-view/getClientRects-br-htb-rtl.html testharness css/cssom-view/getClientRects-br-vlr-ltr.html @@ -31936,9 +34960,11 @@ testharness css/cssom-view/getClientRects-br-vrl-ltr.html testharness css/cssom-view/getClientRects-br-vrl-rtl.html testharness css/cssom-view/getClientRects-inline-atomic-child.html testharness css/cssom-view/getClientRects-inline-inline-child.html +testharness css/cssom-view/getClientRects-zoom.html testharness css/cssom-view/historical.html testharness css/cssom-view/htmlelement-offset-width-001.html testharness css/cssom-view/idlharness.html +testharness css/cssom-view/image-x-y-zoom.html testharness css/cssom-view/inheritance.html testharness css/cssom-view/matchMedia-display-none-iframe.html testharness css/cssom-view/matchMedia.html @@ -31948,10 +34974,12 @@ testharness css/cssom-view/negativeMargins.html testharness css/cssom-view/offsetParent-block-in-inline.html testharness css/cssom-view/offsetParent_element_test.html testharness css/cssom-view/offsetTop-offsetLeft-nested-offsetParents.html +testharness css/cssom-view/offsetTop-offsetLeft-with-zoom.html testharness css/cssom-view/offsetTopLeft-border-box.html testharness css/cssom-view/offsetTopLeft-empty-inline-offset.html testharness css/cssom-view/offsetTopLeft-empty-inline.html testharness css/cssom-view/offsetTopLeft-leading-space-inline.html +testharness css/cssom-view/offsetTopLeft-table-caption.html testharness css/cssom-view/offsetTopLeft-trailing-space-inline.html testharness css/cssom-view/offsetTopLeftInScrollableParent.html testharness css/cssom-view/outer-svg.html @@ -31961,7 +34989,9 @@ testharness css/cssom-view/parsing/scroll-behavior-valid.html testharness css/cssom-view/position-sticky-root-scroller-with-scroll-behavior.html testharness css/cssom-view/pt-to-px-width.html testharness css/cssom-view/range-bounding-client-rect-with-display-contents.html +testharness css/cssom-view/range-bounding-client-rect-with-nested-text.html testharness css/cssom-view/resize-event-on-initial-layout.html +testharness css/cssom-view/screen-detached-frame.html testharness css/cssom-view/screenLeftTop.html testharness css/cssom-view/scroll-back-to-initial-position.html testharness css/cssom-view/scroll-behavior-default-css.html @@ -31977,11 +35007,15 @@ testharness css/cssom-view/scroll-behavior-subframe-window.html testharness css/cssom-view/scroll-no-layout-box.html testharness css/cssom-view/scroll-overflow-clip-quirks-001.html testharness css/cssom-view/scroll-overflow-clip-quirks-002.html +testharness css/cssom-view/scroll-zoom.html +testharness css/cssom-view/scrollIntoView-align-scrollport-covering-child.html testharness css/cssom-view/scrollIntoView-fixed.html testharness css/cssom-view/scrollIntoView-horizontal-partially-visible.html testharness css/cssom-view/scrollIntoView-horizontal-tb-writing-mode-and-rtl-direction.html testharness css/cssom-view/scrollIntoView-horizontal-tb-writing-mode.html testharness css/cssom-view/scrollIntoView-inline-image.html +testharness css/cssom-view/scrollIntoView-multiple-nested.html +testharness css/cssom-view/scrollIntoView-multiple.html testharness css/cssom-view/scrollIntoView-scrollMargin.html testharness css/cssom-view/scrollIntoView-scrollPadding.html testharness css/cssom-view/scrollIntoView-shadow.html @@ -31997,12 +35031,21 @@ testharness css/cssom-view/scrollIntoView-vertical-lr-writing-mode.html testharness css/cssom-view/scrollIntoView-vertical-rl-writing-mode.html testharness css/cssom-view/scrollLeft-of-scroller-with-wider-scrollbar.html testharness css/cssom-view/scrollLeftTop.html +testharness css/cssom-view/scrollWidthHeight-negative-margin-001.html +testharness css/cssom-view/scrollWidthHeight-negative-margin-002.html testharness css/cssom-view/scrollWidthHeight.xht testharness css/cssom-view/scrollWidthHeightWhenNotScrollable.xht testharness css/cssom-view/scrolling-no-browsing-context.html testharness css/cssom-view/scrolling-quirks-vs-nonquirks.html testharness css/cssom-view/scrollingElement.html +testharness css/cssom-view/scrollintoview-containingblock-chain.html +testharness css/cssom-view/scrollintoview-zero-height-item.html testharness css/cssom-view/scrollintoview.html +testharness css/cssom-view/smooth-scroll-in-load-event.html +testharness css/cssom-view/smooth-scroll-nonstop.html +testharness css/cssom-view/smooth-scrollIntoView-with-smooth-fragment-scroll.html +testharness css/cssom-view/smooth-scrollIntoView-with-unrelated-gesture-scroll.html +testharness css/cssom-view/subpixel-sizes-and-offsets.tentative.html testharness css/cssom-view/table-border-collapse-client-width-height.html testharness css/cssom-view/table-border-separate-client-width-height.html testharness css/cssom-view/table-client-props.html @@ -32015,6 +35058,7 @@ testharness css/cssom-view/window-screen-height.html testharness css/cssom-view/window-screen-width-immutable.html testharness css/cssom-view/window-screen-width.html testharness css/cssom/CSS-namespace-object-class-string.html +testharness css/cssom/CSSConditionRule-conditionText.html testharness css/cssom/CSSContainerRule.tentative.html testharness css/cssom/CSSCounterStyleRule.html testharness css/cssom/CSSFontFaceRule.html @@ -32028,12 +35072,13 @@ testharness css/cssom/CSSRuleList.html testharness css/cssom/CSSStyleRule-set-selectorText-namespace.html testharness css/cssom/CSSStyleRule-set-selectorText.html testharness css/cssom/CSSStyleRule.html -testharness css/cssom/CSSStyleSheet-constructable-baseURL.tentative.html -testharness css/cssom/CSSStyleSheet-constructable-concat.html +testharness css/cssom/CSSStyleSheet-constructable-baseURL.html testharness css/cssom/CSSStyleSheet-constructable-cssRules.html testharness css/cssom/CSSStyleSheet-constructable-disabled-regular-sheet-insertion.html testharness css/cssom/CSSStyleSheet-constructable-disallow-import.tentative.html testharness css/cssom/CSSStyleSheet-constructable-duplicate.html +testharness css/cssom/CSSStyleSheet-constructable-invalidation.html +testharness css/cssom/CSSStyleSheet-constructable-replace-cssRules.html testharness css/cssom/CSSStyleSheet-constructable-replace-on-regular-sheet.html testharness css/cssom/CSSStyleSheet-constructable.html testharness css/cssom/CSSStyleSheet-modify-after-removal.html @@ -32046,15 +35091,20 @@ testharness css/cssom/HTMLLinkElement-disabled-004.html testharness css/cssom/HTMLLinkElement-disabled-005.html testharness css/cssom/HTMLLinkElement-disabled-006.html testharness css/cssom/HTMLLinkElement-disabled-007.html +testharness css/cssom/HTMLLinkElement-load-event-002.html +testharness css/cssom/HTMLLinkElement-load-event.html +testharness css/cssom/HTMLStyleElement-load-event.html testharness css/cssom/MediaList.html testharness css/cssom/MediaList2.xhtml testharness css/cssom/MutationObserver-style.html testharness css/cssom/StyleSheetList.html +testharness css/cssom/adoptedstylesheets-modify-array-and-sheet.html testharness css/cssom/adoptedstylesheets-observablearray.html testharness css/cssom/at-namespace.html testharness css/cssom/base-uri.html testharness css/cssom/border-shorthand-serialization.html testharness css/cssom/caretPositionFromPoint-with-transformation.html +testharness css/cssom/caretPositionFromPoint.html testharness css/cssom/computed-style-001.html testharness css/cssom/computed-style-002.html testharness css/cssom/computed-style-003.html @@ -32080,6 +35130,7 @@ testharness css/cssom/cssstyledeclaration-cssfontrule.tentative.html testharness css/cssom/cssstyledeclaration-csstext-all-shorthand.html testharness css/cssom/cssstyledeclaration-csstext-final-delimiter.html testharness css/cssom/cssstyledeclaration-csstext-important.html +testharness css/cssom/cssstyledeclaration-csstext-setter.window.js testharness css/cssom/cssstyledeclaration-csstext.html testharness css/cssom/cssstyledeclaration-custom-properties.html testharness css/cssom/cssstyledeclaration-mutability.html @@ -32094,6 +35145,7 @@ testharness css/cssom/cssstyledeclaration-setter-attr.html testharness css/cssom/cssstyledeclaration-setter-declarations.html testharness css/cssom/cssstyledeclaration-setter-form-controls.html testharness css/cssom/cssstyledeclaration-setter-logical.html +testharness css/cssom/delete-namespace-rule-when-child-rule-exists.html testharness css/cssom/escape.html testharness css/cssom/flex-serialization.html testharness css/cssom/font-family-serialization-001.html @@ -32106,10 +35158,13 @@ testharness css/cssom/getComputedStyle-display-none-002.html testharness css/cssom/getComputedStyle-display-none-003.html testharness css/cssom/getComputedStyle-dynamic-subdoc.html testharness css/cssom/getComputedStyle-getter-v-properties.tentative.html +testharness css/cssom/getComputedStyle-insets-absolute-roundtrip.html testharness css/cssom/getComputedStyle-insets-absolute.html testharness css/cssom/getComputedStyle-insets-fixed.html +testharness css/cssom/getComputedStyle-insets-grid.html testharness css/cssom/getComputedStyle-insets-nobox.html testharness css/cssom/getComputedStyle-insets-relative.html +testharness css/cssom/getComputedStyle-insets-relpos-inline.html testharness css/cssom/getComputedStyle-insets-static.html testharness css/cssom/getComputedStyle-insets-sticky-container-for-abspos.html testharness css/cssom/getComputedStyle-insets-sticky.html @@ -32117,7 +35172,9 @@ testharness css/cssom/getComputedStyle-layout-dependent-removed-ib-sibling.html testharness css/cssom/getComputedStyle-layout-dependent-replaced-into-ib-split.html testharness css/cssom/getComputedStyle-line-height.html testharness css/cssom/getComputedStyle-logical-enumeration.html +testharness css/cssom/getComputedStyle-margins-roundtrip.html testharness css/cssom/getComputedStyle-property-order.html +testharness css/cssom/getComputedStyle-pseudo-with-argument.html testharness css/cssom/getComputedStyle-pseudo.html testharness css/cssom/getComputedStyle-resolved-colors.html testharness css/cssom/getComputedStyle-resolved-min-max-clamping.html @@ -32132,6 +35189,8 @@ testharness css/cssom/insertRule-import-no-index.html testharness css/cssom/insertRule-namespace-no-index.html testharness css/cssom/insertRule-no-index.html testharness css/cssom/insertRule-syntax-error-01.html +testharness css/cssom/invalid-pseudo-elements.html +testharness css/cssom/link-element-stylesheet-title.html testharness css/cssom/medialist-interfaces-001.html testharness css/cssom/medialist-interfaces-002.html testharness css/cssom/medialist-interfaces-004.html @@ -32165,14 +35224,17 @@ testharness css/cssom/ttwf-cssom-document-extension.html testharness css/cssom/variable-names.html testharness css/cssom/xml-stylesheet-pi-in-doctype.xhtml testharness css/fetching/fetch-resources.sub.html +testharness css/fill-stroke/animation/stroke-color-interpolation.html testharness css/filter-effects/animation/backdrop-filter-interpolation-001.html testharness css/filter-effects/animation/backdrop-filter-interpolation-002.html testharness css/filter-effects/animation/backdrop-filter-interpolation-003.html testharness css/filter-effects/animation/backdrop-filter-interpolation-004.html +testharness css/filter-effects/animation/color-interpolation-filters-no-interpolation.html testharness css/filter-effects/animation/filter-interpolation-001.html testharness css/filter-effects/animation/filter-interpolation-002.html testharness css/filter-effects/animation/filter-interpolation-003.html testharness css/filter-effects/animation/filter-interpolation-004.html +testharness css/filter-effects/backdrop-filter-important.html testharness css/filter-effects/idlharness.any.js testharness css/filter-effects/inheritance.html testharness css/filter-effects/parsing/backdrop-filter-computed.html @@ -32203,6 +35265,7 @@ testharness css/geometry/DOMMatrix-css-string.worker.js testharness css/geometry/DOMMatrix-invert-invertible.html testharness css/geometry/DOMMatrix-invert-non-invertible.html testharness css/geometry/DOMMatrix-invert-preserves-2d.html +testharness css/geometry/DOMMatrix-invertSelf.html testharness css/geometry/DOMMatrix-newobject.html testharness css/geometry/DOMMatrix-stringifier.html testharness css/geometry/DOMMatrix2DInit-validate-fixup.html @@ -32223,21 +35286,29 @@ testharness css/geometry/idlharness.any.js testharness css/geometry/spec-examples.html testharness css/geometry/structured-serialization.html testharness css/mediaqueries/aspect-ratio-serialization.html +testharness css/mediaqueries/display-mode.html +testharness css/mediaqueries/display-mode.tentative.html testharness css/mediaqueries/dynamic-range.html testharness css/mediaqueries/forced-colors.html +testharness css/mediaqueries/inverted-colors.html testharness css/mediaqueries/match-media-parsing.html testharness css/mediaqueries/media-query-matches-in-iframe.html testharness css/mediaqueries/mq-dynamic-empty-children.html testharness css/mediaqueries/mq-invalid-media-type-005.html testharness css/mediaqueries/mq-invalid-media-type-layer-002.html +testharness css/mediaqueries/mq-non-matching-lazy-load.tentative.html testharness css/mediaqueries/mq-unknown-feature-custom-property.html testharness css/mediaqueries/navigation-controls.tentative.html +testharness css/mediaqueries/overflow-media-features.html testharness css/mediaqueries/prefers-color-scheme.html testharness css/mediaqueries/prefers-contrast.html testharness css/mediaqueries/prefers-reduced-data.html testharness css/mediaqueries/prefers-reduced-motion.html +testharness css/mediaqueries/prefers-reduced-transparency.html testharness css/mediaqueries/relative-units-005.html +testharness css/mediaqueries/scripting.html testharness css/mediaqueries/test_media_queries.html +testharness css/mediaqueries/update-media-feature.html testharness css/motion/animation/offset-anchor-composition.html testharness css/motion/animation/offset-anchor-interpolation.html testharness css/motion/animation/offset-distance-composition.html @@ -32249,12 +35320,16 @@ testharness css/motion/animation/offset-path-interpolation-002.html testharness css/motion/animation/offset-path-interpolation-003.html testharness css/motion/animation/offset-path-interpolation-004.html testharness css/motion/animation/offset-path-interpolation-005.html +testharness css/motion/animation/offset-path-interpolation-006.html +testharness css/motion/animation/offset-path-interpolation-007.html +testharness css/motion/animation/offset-path-interpolation-008.html testharness css/motion/animation/offset-position-composition.html testharness css/motion/animation/offset-position-interpolation.html testharness css/motion/animation/offset-rotate-composition.html +testharness css/motion/animation/offset-rotate-interpolation-math-functions.html testharness css/motion/animation/offset-rotate-interpolation.html +testharness css/motion/animation/ray-angle-interpolation-math-functions.html testharness css/motion/inheritance.html -testharness css/motion/offset-path-serialization.html testharness css/motion/offset-supports-calc.html testharness css/motion/parsing/offset-anchor-computed.html testharness css/motion/parsing/offset-anchor-parsing-invalid.html @@ -32267,6 +35342,8 @@ testharness css/motion/parsing/offset-parsing-valid.html testharness css/motion/parsing/offset-path-computed.html testharness css/motion/parsing/offset-path-parsing-invalid.html testharness css/motion/parsing/offset-path-parsing-valid.html +testharness css/motion/parsing/offset-path-shape-computed.html +testharness css/motion/parsing/offset-path-shape-parsing.html testharness css/motion/parsing/offset-position-computed.html testharness css/motion/parsing/offset-position-parsing-invalid.html testharness css/motion/parsing/offset-position-parsing-valid.html @@ -32274,7 +35351,6 @@ testharness css/motion/parsing/offset-rotate-computed.html testharness css/motion/parsing/offset-rotate-parsing-invalid.html testharness css/motion/parsing/offset-rotate-parsing-valid.html testharness css/motion/parsing/offset-shorthand.html -testharness css/selectors/anplusb-selector-parsing.html testharness css/selectors/attribute-selectors/attribute-case/cssom.html testharness css/selectors/attribute-selectors/attribute-case/semantics.html testharness css/selectors/attribute-selectors/attribute-case/syntax.html @@ -32318,6 +35394,7 @@ testharness css/selectors/focus-visible-024.html testharness css/selectors/focus-visible-025.html testharness css/selectors/focus-visible-026.html testharness css/selectors/focus-visible-027.html +testharness css/selectors/focus-visible-028.html testharness css/selectors/focus-visible-script-focus-001.html testharness css/selectors/focus-visible-script-focus-002.tentative.html testharness css/selectors/focus-visible-script-focus-003.tentative.html @@ -32346,6 +35423,7 @@ testharness css/selectors/has-basic.html testharness css/selectors/has-matches-to-uninserted-elements.html testharness css/selectors/has-relative-argument.html testharness css/selectors/has-specificity.html +testharness css/selectors/hash-collision.html testharness css/selectors/hover-002.html testharness css/selectors/i18n/css3-selectors-lang-001.html testharness css/selectors/i18n/css3-selectors-lang-002.html @@ -32395,21 +35473,30 @@ testharness css/selectors/invalidation/any-link-pseudo.html testharness css/selectors/invalidation/attribute-or-elemental-selectors-in-has.html testharness css/selectors/invalidation/attribute.html testharness css/selectors/invalidation/child-indexed-pseudo-classes-in-has.html +testharness css/selectors/invalidation/defined-in-has.html testharness css/selectors/invalidation/defined.html testharness css/selectors/invalidation/empty-pseudo-in-has.html testharness css/selectors/invalidation/enabled-disabled.html testharness css/selectors/invalidation/first-child-last-child.html testharness css/selectors/invalidation/fullscreen-pseudo-class-in-has.html testharness css/selectors/invalidation/has-complexity.html +testharness css/selectors/invalidation/has-css-nesting-shared.html testharness css/selectors/invalidation/has-in-adjacent-position.html testharness css/selectors/invalidation/has-in-ancestor-position.html testharness css/selectors/invalidation/has-in-parent-position.html testharness css/selectors/invalidation/has-in-sibling-position.html testharness css/selectors/invalidation/has-invalidation-after-removing-non-first-element.html testharness css/selectors/invalidation/has-invalidation-for-wiping-an-element.html +testharness css/selectors/invalidation/has-sibling-insertion-removal.html testharness css/selectors/invalidation/has-sibling.html +testharness css/selectors/invalidation/has-side-effect.html +testharness css/selectors/invalidation/has-unstyled.html +testharness css/selectors/invalidation/has-with-nesting-parent-containing-complex.html +testharness css/selectors/invalidation/has-with-nesting-parent-containing-hover.html testharness css/selectors/invalidation/has-with-not.html +testharness css/selectors/invalidation/has-with-nth-child.html testharness css/selectors/invalidation/has-with-pseudo-class.html +testharness css/selectors/invalidation/host-context-pseudo-class-in-has.html testharness css/selectors/invalidation/host-pseudo-class-in-has.html testharness css/selectors/invalidation/input-pseudo-classes-in-has.html testharness css/selectors/invalidation/insert-sibling-001.html @@ -32417,7 +35504,10 @@ testharness css/selectors/invalidation/insert-sibling-002.html testharness css/selectors/invalidation/insert-sibling-003.html testharness css/selectors/invalidation/insert-sibling-004.html testharness css/selectors/invalidation/is-pseudo-containing-complex-in-has.html +testharness css/selectors/invalidation/is-pseudo-containing-sibling-relationship-in-has.html +testharness css/selectors/invalidation/is-where-pseudo-containing-hard-pseudo.html testharness css/selectors/invalidation/is.html +testharness css/selectors/invalidation/link-pseudo-class-in-has.html testharness css/selectors/invalidation/link-pseudo-in-has.html testharness css/selectors/invalidation/location-pseudo-classes-in-has.html testharness css/selectors/invalidation/media-loading-pseudo-classes-in-has.html @@ -32426,14 +35516,21 @@ testharness css/selectors/invalidation/modal-pseudo-class-in-has.html testharness css/selectors/invalidation/not-001.html testharness css/selectors/invalidation/not-002.html testharness css/selectors/invalidation/not-pseudo-containing-complex-in-has.html +testharness css/selectors/invalidation/not-pseudo-containing-sibling-relationship-in-has.html +testharness css/selectors/invalidation/nth-child-whole-subtree.html +testharness css/selectors/invalidation/part-dir.html +testharness css/selectors/invalidation/part-lang.html +testharness css/selectors/invalidation/placeholder-shown.html testharness css/selectors/invalidation/quirks-mode-stylesheet-dynamic-add-001.html testharness css/selectors/invalidation/selectorText-dynamic-001.html testharness css/selectors/invalidation/sheet-going-away-001.html testharness css/selectors/invalidation/sibling.html +testharness css/selectors/invalidation/state-in-has.html testharness css/selectors/invalidation/subject-has-invalidation-with-display-none-anchor-element.html testharness css/selectors/invalidation/target-pseudo-in-has.html testharness css/selectors/invalidation/typed-child-indexed-pseudo-classes-in-has.html testharness css/selectors/invalidation/user-action-pseudo-classes-in-has.html +testharness css/selectors/invalidation/user-valid-user-invalid.html testharness css/selectors/invalidation/where.html testharness css/selectors/is-nested.html testharness css/selectors/is-specificity-shadow.html @@ -32441,7 +35538,6 @@ testharness css/selectors/is-specificity.html testharness css/selectors/is-where-basic.html testharness css/selectors/is-where-error-recovery.html testharness css/selectors/is-where-not.html -testharness css/selectors/is-where-parsing.html testharness css/selectors/is-where-pseudo-classes.html testharness css/selectors/is-where-shadow.html testharness css/selectors/last-child.html @@ -32453,22 +35549,32 @@ testharness css/selectors/missing-right-token.html testharness css/selectors/modal-pseudo-class.html testharness css/selectors/not-complex.html testharness css/selectors/not-specificity.html +testharness css/selectors/nth-last-child-invalid.html testharness css/selectors/nth-of-type-namespace.html testharness css/selectors/only-child.html testharness css/selectors/only-of-type.html +testharness css/selectors/open-closed-pseudo.html +testharness css/selectors/parsing/invalid-pseudos.html +testharness css/selectors/parsing/parse-anplusb.html testharness css/selectors/parsing/parse-attribute.html testharness css/selectors/parsing/parse-child.html testharness css/selectors/parsing/parse-class.html testharness css/selectors/parsing/parse-descendant.html testharness css/selectors/parsing/parse-focus-visible.html testharness css/selectors/parsing/parse-has-disallow-nesting-has-inside-has.html +testharness css/selectors/parsing/parse-has-forgiving-selector.html testharness css/selectors/parsing/parse-has.html testharness css/selectors/parsing/parse-id.html +testharness css/selectors/parsing/parse-is-where.html testharness css/selectors/parsing/parse-is.html testharness css/selectors/parsing/parse-not.html +testharness css/selectors/parsing/parse-part.html testharness css/selectors/parsing/parse-sibling.html +testharness css/selectors/parsing/parse-slotted.html +testharness css/selectors/parsing/parse-state.html testharness css/selectors/parsing/parse-universal.html testharness css/selectors/parsing/parse-where.html +testharness css/selectors/placeholder-shown.html testharness css/selectors/pseudo-enabled-disabled.html testharness css/selectors/query/query-is.html testharness css/selectors/query/query-where.html @@ -32476,10 +35582,13 @@ testharness css/selectors/scope-selector.html testharness css/selectors/selector-placeholder-shown-emptify-placeholder.html testharness css/selectors/selectors-case-sensitive-001.html testharness css/selectors/user-invalid.html +testharness css/selectors/user-valid-user-invalid-multifield-inputs.tentative.html testharness css/selectors/user-valid.html +testharness css/selectors/valid-invalid-form-fieldset.html testharness css/selectors/webkit-pseudo-element.html testharness css/selectors/x-pseudo-element.html testharness custom-elements/CustomElementRegistry-constructor-and-callbacks-are-held-strongly.html +testharness custom-elements/CustomElementRegistry-getName.html testharness custom-elements/CustomElementRegistry.html testharness custom-elements/Document-createElement-customized-builtins.html testharness custom-elements/Document-createElement-svg.svg @@ -32487,13 +35596,15 @@ testharness custom-elements/Document-createElement.html testharness custom-elements/Document-createElementNS-customized-builtins.html testharness custom-elements/Document-createElementNS.html testharness custom-elements/ElementInternals-accessibility.html +testharness custom-elements/ElementInternals-role.html testharness custom-elements/HTMLElement-attachInternals.html -testharness custom-elements/HTMLElement-constructor-customized-bulitins.html +testharness custom-elements/HTMLElement-constructor-customized-builtins.html testharness custom-elements/HTMLElement-constructor.html testharness custom-elements/adopted-callback.html testharness custom-elements/attribute-changed-callback.html testharness custom-elements/builtin-coverage.html testharness custom-elements/connected-callbacks-html-fragment-parsing.html +testharness custom-elements/connected-callbacks-template.html testharness custom-elements/connected-callbacks.html testharness custom-elements/cross-realm-callback-report-exception.html testharness custom-elements/custom-element-reaction-queue.html @@ -32503,15 +35614,19 @@ testharness custom-elements/custom-element-registry/per-global.html testharness custom-elements/custom-element-registry/upgrade.html testharness custom-elements/customized-built-in-constructor-exceptions.html testharness custom-elements/disconnected-callbacks.html +testharness custom-elements/element-internals-aria-element-reflection.html testharness custom-elements/element-internals-shadowroot.html testharness custom-elements/enqueue-custom-element-callback-reactions-inside-another-callback.html testharness custom-elements/form-associated/ElementInternals-NotSupportedError.html testharness custom-elements/form-associated/ElementInternals-form.html testharness custom-elements/form-associated/ElementInternals-labels.html +testharness custom-elements/form-associated/ElementInternals-setFormValue-nullish-value.html testharness custom-elements/form-associated/ElementInternals-setFormValue.html testharness custom-elements/form-associated/ElementInternals-target-element-is-held-strongly.html testharness custom-elements/form-associated/ElementInternals-validation.html +testharness custom-elements/form-associated/disabled-delegatesFocus.html testharness custom-elements/form-associated/fieldset-elements.html +testharness custom-elements/form-associated/focusability.html testharness custom-elements/form-associated/form-associated-callback.html testharness custom-elements/form-associated/form-disabled-callback.html testharness custom-elements/form-associated/form-elements-namedItem.html @@ -32521,6 +35636,7 @@ testharness custom-elements/historical.html testharness custom-elements/htmlconstructor/newtarget-customized-builtins.html testharness custom-elements/htmlconstructor/newtarget.html testharness custom-elements/microtasks-and-constructors.html +testharness custom-elements/overwritten-customElements-global.html testharness custom-elements/parser/parser-constructs-custom-element-in-document-write.html testharness custom-elements/parser/parser-constructs-custom-element-synchronously.html testharness custom-elements/parser/parser-constructs-custom-elements-with-is.html @@ -32596,9 +35712,19 @@ testharness custom-elements/reactions/customized-builtins/HTMLTimeElement.html testharness custom-elements/reactions/with-exceptions.html testharness custom-elements/scoped-registry/CustomElementRegistry-constructor.tentative.html testharness custom-elements/scoped-registry/CustomElementRegistry-multi-register.tentative.html +testharness custom-elements/scoped-registry/ShadowRoot-createElement.tentative.html testharness custom-elements/scoped-registry/ShadowRoot-init-registry.tentative.html -testharness custom-elements/state/tentative/ElementInternals-states.html -testharness custom-elements/state/tentative/state-pseudo-class.html +testharness custom-elements/scoped-registry/ShadowRoot-innerHTML-upgrade.tentative.html +testharness custom-elements/scoped-registry/constructor-call.tentative.html +testharness custom-elements/scoped-registry/constructor-reentry-with-different-definition.tentative.html +testharness custom-elements/scoped-registry/scoped-registry-define-upgrade-criteria.tentative.html +testharness custom-elements/scoped-registry/scoped-registry-define-upgrade-order.tentative.html +testharness custom-elements/state/ElementInternals-states.html +testharness custom-elements/state/custom-state-set-strong-ref.html +testharness custom-elements/state/state-css-selector-nth-of.html +testharness custom-elements/state/state-css-selector-shadow-dom.html +testharness custom-elements/state/state-css-selector.html +testharness custom-elements/state/state-pseudo-class.html testharness custom-elements/throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml testharness custom-elements/throw-on-dynamic-markup-insertion-counter-construct.html testharness custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml @@ -32608,9 +35734,9 @@ testharness custom-elements/upgrading/Document-importNode-customized-builtins.ht testharness custom-elements/upgrading/Document-importNode.html testharness custom-elements/upgrading/Node-cloneNode-customized-builtins.html testharness custom-elements/upgrading/Node-cloneNode.html +testharness custom-elements/upgrading/upgrade-custom-element-error-event.html testharness custom-elements/upgrading/upgrading-enqueue-reactions.html testharness custom-elements/upgrading/upgrading-parser-created-element.html -testharness custom-state-pseudo-class/idlharness.window.js testharness delegated-ink/delete-presentation-area.html testharness delegated-ink/exception-thrown-bad-color.tentative.html testharness delegated-ink/exception-thrown-diameter-less-than-or-equal-to-0.tentative.html @@ -32621,51 +35747,46 @@ testharness density-size-correction/density-corrected-natural-size.html testharness deprecation-reporting/idlharness.any.js testharness device-memory/device-memory.https.any.js testharness device-memory/idlharness.https.any.js +testharness device-posture/device-posture-change-event.https.html +testharness device-posture/device-posture-clear.https.html +testharness device-posture/device-posture-event-listener.https.html +testharness device-posture/device-posture-media-queries.https.html +testharness device-posture/idlharness.https.window.js +testharness digital-credentials/allow-attribute.https.html +testharness digital-credentials/default-permissions-policy.https.sub.html +testharness digital-credentials/digital-credentials-static-methods.tentative.https.html +testharness digital-credentials/disabled-by-permissions-policy.https.sub.html +testharness digital-credentials/enabled-on-self-origin-by-permissions-policy.https.sub.html +testharness digital-credentials/get-user-activation.https.html +testharness digital-credentials/identity-create.tentative.https.html +testharness digital-credentials/identity-get.tentative.https.html +testharness digital-credentials/non-fully-active.https.html testharness direct-sockets/disabled-by-permissions-policy.https.sub.html -testharness direct-sockets/open-securecontext.http.html +testharness direct-sockets/tcp_socket.https.html +testharness direct-sockets/udp_socket.https.html +testharness document-picture-in-picture/beforeunload-is-disabled.https.html testharness document-picture-in-picture/clears-session-on-close.https.html +testharness document-picture-in-picture/display-mode.https.html testharness document-picture-in-picture/enter-event.https.html +testharness document-picture-in-picture/focus-opener.https.html testharness document-picture-in-picture/iframe-document-pip.https.html testharness document-picture-in-picture/open-pip-window-from-pip-window.https.html +testharness document-picture-in-picture/propagate-user-activation-from-opener.https.html +testharness document-picture-in-picture/propagate-user-activation-to-opener.https.html testharness document-picture-in-picture/requires-secure-context.html testharness document-picture-in-picture/requires-user-gesture.https.html testharness document-picture-in-picture/requires-width-and-height-to-both-be-specified.https.html +testharness document-picture-in-picture/resize-requires-user-gesture.https.html testharness document-picture-in-picture/returns-window-with-document.https.html -testharness document-policy/experimental-features/document-write.tentative.html -testharness document-policy/experimental-features/layout-animations-disabled-tentative.html -testharness document-policy/experimental-features/layout-animations-disabled-violation-report-js-tentative.html -testharness document-policy/experimental-features/layout-animations-disabled-violation-report-keyframes-tentative.html -testharness document-policy/experimental-features/layout-animations-enabled-tentative.html -testharness document-policy/experimental-features/sync-script.tentative.https.sub.html -testharness document-policy/experimental-features/unsized-media.tentative.https.sub.html -testharness document-policy/font-display/report-only-auto.tentative.html -testharness document-policy/font-display/report-only-blank.tentative.html -testharness document-policy/font-display/report-only-block.tentative.html -testharness document-policy/font-display/report-only-fallback.tentative.html -testharness document-policy/font-display/report-only-optional.tentative.html -testharness document-policy/font-display/report-only-swap.tentative.html -testharness document-policy/font-display/reporting-auto.tentative.html -testharness document-policy/font-display/reporting-blank.tentative.html -testharness document-policy/font-display/reporting-block.tentative.html -testharness document-policy/font-display/reporting-fallback.tentative.html -testharness document-policy/font-display/reporting-optional.tentative.html -testharness document-policy/font-display/reporting-swap.tentative.html -testharness document-policy/reporting/document-write-report-only-tentative.html -testharness document-policy/reporting/document-write-reporting-tentative.html -testharness document-policy/reporting/lossy-images-max-bpp-reporting-onload-tentative.html -testharness document-policy/reporting/lossy-images-max-bpp-reporting-tentative.html -testharness document-policy/reporting/oversized-images-reporting-tentative.html -testharness document-policy/reporting/sync-script-reporting.html testharness document-policy/reporting/sync-xhr-report-only.html testharness document-policy/reporting/sync-xhr-reporting.html -testharness document-policy/reporting/unsized-media-reporting-tentative.html testharness document-policy/required-policy/document-policy.html testharness document-policy/required-policy/no-document-policy.html testharness document-policy/required-policy/required-document-policy-nested.html testharness document-policy/required-policy/required-document-policy.html testharness document-policy/required-policy/separate-document-policies.html testharness dom/abort/AbortSignal.any.js -testharness dom/abort/abort-signal-any.tentative.any.js +testharness dom/abort/abort-signal-any.any.js testharness dom/abort/abort-signal-timeout.html testharness dom/abort/event.any.js testharness dom/abort/reason-constructor.html @@ -32710,8 +35831,10 @@ testharness dom/events/Event-dispatch-other-document.html testharness dom/events/Event-dispatch-propagation-stopped.html testharness dom/events/Event-dispatch-redispatch.html testharness dom/events/Event-dispatch-reenter.html +testharness dom/events/Event-dispatch-single-activation-behavior.html testharness dom/events/Event-dispatch-target-moved.html testharness dom/events/Event-dispatch-target-removed.html +testharness dom/events/Event-dispatch-throwing-multiple-globals.html testharness dom/events/Event-dispatch-throwing.html testharness dom/events/Event-init-while-dispatching.html testharness dom/events/Event-initEvent.html @@ -32796,7 +35919,10 @@ testharness dom/events/non-cancelable-when-passive/passive-wheel-event-listener- testharness dom/events/non-cancelable-when-passive/passive-wheel-event-listener-on-window.html testharness dom/events/non-cancelable-when-passive/synthetic-events-cancelable.html testharness dom/events/passive-by-default.html +testharness dom/events/pointer-event-document-move.html +testharness dom/events/preventDefault-during-activation-behavior.html testharness dom/events/relatedTarget.window.js +testharness dom/events/remove-all-listeners.html testharness dom/events/scrolling/iframe-chains.html testharness dom/events/scrolling/input-text-scroll-event-when-using-arrow-keys.html testharness dom/events/scrolling/overscroll-deltas.html @@ -32808,14 +35934,26 @@ testharness dom/events/scrolling/scrollend-event-fired-after-sequence-of-scrolls testharness dom/events/scrolling/scrollend-event-fired-after-snap.html testharness dom/events/scrolling/scrollend-event-fired-for-mandatory-snap-point-after-load.html testharness dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html +testharness dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html testharness dom/events/scrolling/scrollend-event-fired-for-scrollIntoView.html testharness dom/events/scrolling/scrollend-event-fired-to-document.html testharness dom/events/scrolling/scrollend-event-fired-to-element-with-overscroll-behavior.html -testharness dom/events/scrolling/scrollend-event-fired-to-scrolled-element.html testharness dom/events/scrolling/scrollend-event-fired-to-window.html +testharness dom/events/scrolling/scrollend-event-fires-on-visual-viewport.html +testharness dom/events/scrolling/scrollend-event-fires-to-iframe-window.html testharness dom/events/scrolling/scrollend-event-for-user-scroll.html testharness dom/events/scrolling/scrollend-event-handler-content-attributes.html testharness dom/events/scrolling/scrollend-event-not-fired-after-removing-scroller.tentative.html +testharness dom/events/scrolling/scrollend-event-not-fired-on-no-scroll.html +testharness dom/events/scrolling/scrollend-fires-to-text-input.html +testharness dom/events/scrolling/scrollend-with-snap-on-fractional-offset.html +testharness dom/events/scrolling/wheel-event-transactions-basic.html +testharness dom/events/scrolling/wheel-event-transactions-multiple-action-chains.html +testharness dom/events/scrolling/wheel-event-transactions-target-display-change.html +testharness dom/events/scrolling/wheel-event-transactions-target-elements.html +testharness dom/events/scrolling/wheel-event-transactions-target-move.html +testharness dom/events/scrolling/wheel-event-transactions-target-removal.html +testharness dom/events/scrolling/wheel-event-transactions-target-resize.html testharness dom/events/shadow-relatedTarget.html testharness dom/events/webkit-animation-end-event.html testharness dom/events/webkit-animation-iteration-event.html @@ -33064,12 +36202,83 @@ testharness dom/nodes/getElementsByClassName-32.html testharness dom/nodes/getElementsByClassName-empty-set.html testharness dom/nodes/getElementsByClassName-whitespace-class-names.html testharness dom/nodes/insert-adjacent.html +testharness dom/nodes/insertion-removing-steps/Node-append-form-and-script-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-append-meta-referrer-and-script-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-button-from-div.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-custom-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-default-style-meta-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-div-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-iframe.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-source-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-and-style.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-in-script.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-script-with-mutation-observer-takeRecords.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-text-and-script-in-style.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-text-in-script.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-three-scripts-from-fragment.tentative.html +testharness dom/nodes/insertion-removing-steps/Node-appendChild-three-scripts.tentative.html +testharness dom/nodes/insertion-removing-steps/blur-event.window.js +testharness dom/nodes/insertion-removing-steps/insertion-removing-steps-iframe.window.js +testharness dom/nodes/insertion-removing-steps/insertion-removing-steps-script.window.js +testharness dom/nodes/insertion-removing-steps/script-does-not-run-on-child-removal.window.js +testharness dom/nodes/moveBefore/tentative/Node-moveBefore.html +testharness dom/nodes/moveBefore/tentative/continue-css-animation-left.html +testharness dom/nodes/moveBefore/tentative/continue-css-animation-transform.html +testharness dom/nodes/moveBefore/tentative/continue-css-transition-left-pseudo.html +testharness dom/nodes/moveBefore/tentative/continue-css-transition-left.html +testharness dom/nodes/moveBefore/tentative/continue-css-transition-transform-pseudo.html +testharness dom/nodes/moveBefore/tentative/continue-css-transition-transform.html +testharness dom/nodes/moveBefore/tentative/css-animation-commit-styles.html +testharness dom/nodes/moveBefore/tentative/css-transition-cross-document.html +testharness dom/nodes/moveBefore/tentative/css-transition-cross-shadow.html +testharness dom/nodes/moveBefore/tentative/css-transition-to-disconnected-document.html +testharness dom/nodes/moveBefore/tentative/css-transition-trigger.html +testharness dom/nodes/moveBefore/tentative/focus-preserve.html +testharness dom/nodes/moveBefore/tentative/fullscreen-preserve.html +testharness dom/nodes/moveBefore/tentative/iframe-document-preserve.window.js +testharness dom/nodes/moveBefore/tentative/modal-dialog.html +testharness dom/nodes/moveBefore/tentative/moveBefore-shadow-inside.html +testharness dom/nodes/moveBefore/tentative/mutation-events.html +testharness dom/nodes/moveBefore/tentative/pointer-events.html +testharness dom/nodes/moveBefore/tentative/popover-preserve.html +testharness dom/nodes/moveBefore/tentative/selection-preserve.html testharness dom/nodes/prepend-on-Document.html testharness dom/nodes/query-target-in-load-event.html testharness dom/nodes/remove-and-adopt-thcrash.html testharness dom/nodes/remove-unscopable.html testharness dom/nodes/rootNode.html testharness dom/nodes/svg-template-querySelector.html +testharness dom/observable/tentative/idlharness.html +testharness dom/observable/tentative/observable-constructor.any.js +testharness dom/observable/tentative/observable-constructor.window.js +testharness dom/observable/tentative/observable-drop.any.js +testharness dom/observable/tentative/observable-event-target.any.js +testharness dom/observable/tentative/observable-event-target.window.js +testharness dom/observable/tentative/observable-every.any.js +testharness dom/observable/tentative/observable-filter.any.js +testharness dom/observable/tentative/observable-find.any.js +testharness dom/observable/tentative/observable-first.any.js +testharness dom/observable/tentative/observable-flatMap.any.js +testharness dom/observable/tentative/observable-forEach.any.js +testharness dom/observable/tentative/observable-forEach.window.js +testharness dom/observable/tentative/observable-from.any.js +testharness dom/observable/tentative/observable-inspect.any.js +testharness dom/observable/tentative/observable-last.any.js +testharness dom/observable/tentative/observable-map.any.js +testharness dom/observable/tentative/observable-map.window.js +testharness dom/observable/tentative/observable-some.any.js +testharness dom/observable/tentative/observable-switchMap.any.js +testharness dom/observable/tentative/observable-take.any.js +testharness dom/observable/tentative/observable-takeUntil.any.js +testharness dom/observable/tentative/observable-takeUntil.window.js +testharness dom/observable/tentative/observable-toArray.any.js +testharness dom/parts/basic-dom-part-declarative-brace-syntax-innerhtml.tentative.html +testharness dom/parts/basic-dom-part-declarative-brace-syntax.tentative.html +testharness dom/parts/basic-dom-part-objects.tentative.html +testharness dom/parts/dom-parts-parseparts-on-body.tentative.html +testharness dom/parts/dom-parts-parseparts-on-head.tentative.html +testharness dom/parts/dom-parts-parseparts-on-root.tentative.html +testharness dom/parts/dom-parts-valid-node-types.tentative.html testharness dom/ranges/Range-adopt-test.html testharness dom/ranges/Range-attributes.html testharness dom/ranges/Range-cloneContents.html @@ -33084,6 +36293,7 @@ testharness dom/ranges/Range-constructor.html testharness dom/ranges/Range-deleteContents.html testharness dom/ranges/Range-detach.html testharness dom/ranges/Range-extractContents.html +testharness dom/ranges/Range-in-shadow-after-the-shadow-removed.html testharness dom/ranges/Range-insertNode.html testharness dom/ranges/Range-intersectsNode-2.html testharness dom/ranges/Range-intersectsNode-binding.html @@ -33121,6 +36331,7 @@ testharness dom/traversal/TreeWalker-traversal-skip.html testharness dom/traversal/TreeWalker-walking-outside-a-tree.html testharness dom/traversal/TreeWalker.html testharness dom/window-extends-event-target.html +testharness dom/xslt/functions.tentative.window.js testharness dom/xslt/transformToFragment.tentative.window.js testharness domparsing/DOMParser-parseFromString-encoding.html testharness domparsing/DOMParser-parseFromString-html.html @@ -33151,11 +36362,13 @@ testharness domparsing/outerhtml-02.html testharness domparsing/style_attribute_html.html testharness domparsing/xml-serialization.xhtml testharness domparsing/xmldomparser.html -testharness domxpath/001.html -testharness domxpath/002.html testharness domxpath/booleans.html testharness domxpath/document.tentative.html testharness domxpath/evaluator-constructor.html +testharness domxpath/evaluator-cross-realm.tentative.html +testharness domxpath/evaluator-different-document.tentative.html +testharness domxpath/expression-cross-realm.tentative.html +testharness domxpath/expression-different-document.tentative.html testharness domxpath/fn-concat.html testharness domxpath/fn-contains.html testharness domxpath/fn-lang.html @@ -33172,16 +36385,32 @@ testharness domxpath/predicates.html testharness domxpath/resolver-callback-interface-cross-realm.tentative.html testharness domxpath/resolver-callback-interface.html testharness domxpath/resolver-non-string-result.html +testharness domxpath/text-html-attributes.html +testharness domxpath/text-html-elements.html testharness domxpath/xml_xpath_runner.html +testharness domxpath/xpathevaluatorbase-creatensresolver.html +testharness dpub-aam/role/roles.html +testharness ecmascript/locale-compat.html testharness ecmascript/regexp-lookbehind.html +testharness editing/edit-context/edit-context-basics.tentative.html +testharness editing/edit-context/edit-context-execCommand.tentative.https.html +testharness editing/edit-context/edit-context-inheritability.tentative.html +testharness editing/edit-context/edit-context-input.tentative.html +testharness editing/edit-context/edit-context-property.tentative.html testharness editing/event.html testharness editing/other/body-should-not-deleted-even-if-empty.html testharness editing/other/cefalse-boundaries-deletion.html testharness editing/other/cloning-attributes-at-splitting-element.tentative.html testharness editing/other/delete-in-child-of-head.tentative.html testharness editing/other/delete-in-child-of-html.tentative.html +testharness editing/other/delete-in-inline-editing-host-under-shadow-root.html +testharness editing/other/delete-in-last-definition-list-item-when-parent-list-is-editing-host.html +testharness editing/other/delete-in-last-list-item-when-parent-list-is-editing-host.html +testharness editing/other/delete-in-shadow-hosted-in-body.html +testharness editing/other/delete-without-unwrapping-first-line-of-child-block.html testharness editing/other/delete.html testharness editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html +testharness editing/other/editable-state-and-focus-in-assigned-slot-dom.tentative.html testharness editing/other/editable-state-and-focus-in-shadow-dom-in-designMode.tentative.html testharness editing/other/editing-around-select-element.tentative.html testharness editing/other/editing-div-outside-body.html @@ -33191,17 +36420,24 @@ testharness editing/other/exec-command-never-throw-exceptions.tentative.html testharness editing/other/exec-command-with-text-editor.tentative.html testharness editing/other/exec-command-without-editable-element.tentative.html testharness editing/other/extra-text-nodes.html +testharness editing/other/fire-selection-change-on-deleting-empty-element.html testharness editing/other/formatblock-preserving-selection.tentative.html +testharness editing/other/html-text-copy-paste-of-anchor-with-href-in-content-editable.html testharness editing/other/indent-preserving-selection.tentative.html +testharness editing/other/input-in-text-control-which-is-also-editing-host.tentative.html testharness editing/other/insert-list-preserving-selection.tentative.html testharness editing/other/insert-paragraph-in-void-element.tentative.html testharness editing/other/insert-text-in-void-element.tentative.html +testharness editing/other/inserthtml-do-not-preserve-inline-styles.html testharness editing/other/insertlinebreak-with-white-space-style.tentative.html testharness editing/other/insertparagraph-in-child-of-head.tentative.html testharness editing/other/insertparagraph-in-child-of-html.tentative.html +testharness editing/other/insertparagraph-in-editing-host-cannot-have-div.tentative.html testharness editing/other/insertparagraph-in-inline-editing-host.tentative.html testharness editing/other/insertparagraph-in-non-splittable-element.html testharness editing/other/insertparagraph-with-white-space-style.tentative.html +testharness editing/other/inserttext-after-bold-in-font-face-monospace.html +testharness editing/other/inserttext-at-end-of-block-when-br-always-block.html testharness editing/other/join-different-white-space-style-left-line-and-right-paragraph.html testharness editing/other/join-different-white-space-style-left-paragraph-and-right-line.html testharness editing/other/join-different-white-space-style-paragraphs.html @@ -33210,18 +36446,28 @@ testharness editing/other/justify-preserving-selection.tentative.html testharness editing/other/keeping-attributes-at-joining-elements.tentative.html testharness editing/other/legacy-edit-command.html testharness editing/other/link-boundaries-insertion.html +testharness editing/other/merge-span-with-style-after-backspace-having-contenteditable.html +testharness editing/other/merge-span-with-style-after-forwarddelete-having-contenteditable.html +testharness editing/other/merge-span-with-style-after-pressing-enter-followed-by-backspace-in-contenteditable-div.html testharness editing/other/move-inserted-node-from-DOMNodeInserted-during-exec-command-insertHTML.html +testharness editing/other/no-beforeinput-when-no-selection.html testharness editing/other/non-html-document.html testharness editing/other/outdent-preserving-selection.tentative.html +testharness editing/other/paste-in-list-with-inline-style.tentative.html +testharness editing/other/plain-text-copy-paste-of-paragraph-ending-with-non-layed-out-content.html testharness editing/other/recursive-exec-command-calls.tentative.html testharness editing/other/removing-inline-style-specified-by-parent-block.tentative.html testharness editing/other/restoration.html testharness editing/other/select-all-and-delete-in-html-element-having-contenteditable.html testharness editing/other/selectall-in-editinghost.html testharness editing/other/selectall-without-focus.html +testharness editing/other/selection-change-not-fired-if-selection-set-to-root.html testharness editing/other/setting-value-of-textcontrol-immediately-after-hidden.html +testharness editing/other/typing-around-link-element-after-joining-paragraphs.html testharness editing/other/typing-around-link-element-at-collapsed-selection.tentative.html testharness editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html +testharness editing/other/typing-space-in-editable-button.tentative.html +testharness editing/other/typing-space-in-editable-summary.tentative.html testharness editing/other/undo-insertparagraph-after-moving-split-nodes.html testharness editing/other/white-spaces-after-execCommand-delete.tentative.html testharness editing/other/white-spaces-after-execCommand-forwarddelete.tentative.html @@ -33233,6 +36479,7 @@ testharness editing/run/bold.html testharness editing/run/caret-navigation-after-removing-line-break.html testharness editing/run/caret-navigation-around-line-break.html testharness editing/run/caretnavigation.html +testharness editing/run/createlink-with-selecting-img.html testharness editing/run/createlink.html testharness editing/run/delete-list-items-in-table-cell.html testharness editing/run/delete.html @@ -33646,6 +36893,7 @@ testharness encrypted-media/encrypted-media-default-feature-policy.https.sub.htm testharness encrypted-media/encrypted-media-supported-by-feature-policy.tentative.html testharness encrypted-media/idlharness.https.html testharness entries-api/idlharness.window.js +testharness event-timing/TapToStopFling.html testharness event-timing/auxclick.html testharness event-timing/buffered-and-duration-threshold.html testharness event-timing/buffered-flag.html @@ -33661,13 +36909,22 @@ testharness event-timing/event-click-visibilitychange.html testharness event-timing/event-counts-zero.html testharness event-timing/event-retarget.html testharness event-timing/first-input-interactionid-click.html +testharness event-timing/first-input-interactionid-key.html testharness event-timing/first-input-interactionid-tap.html testharness event-timing/first-input-shadow-dom.html testharness event-timing/idlharness.any.js testharness event-timing/interaction-count-click.html testharness event-timing/interaction-count-press-key.html testharness event-timing/interaction-count-tap.html +testharness event-timing/interactionid-aux-pointerdown-and-pointerdown.html +testharness event-timing/interactionid-aux-pointerdown.html +testharness event-timing/interactionid-auxclick.html testharness event-timing/interactionid-click.html +testharness event-timing/interactionid-keyboard-event-simulated-click-button-space.html +testharness event-timing/interactionid-keyboard-event-simulated-click-checkbox-space.html +testharness event-timing/interactionid-keyboard-event-simulated-click-link-enter.html +testharness event-timing/interactionid-keypress.html +testharness event-timing/interactionid-orphan-pointerup.html testharness event-timing/interactionid-press-key-as-input.html testharness event-timing/interactionid-press-key-no-effect.html testharness event-timing/interactionid-tap.html @@ -33676,6 +36933,7 @@ testharness event-timing/keyup.html testharness event-timing/large-duration-threshold.html testharness event-timing/medium-duration-threshold.html testharness event-timing/min-duration-threshold.html +testharness event-timing/modal-dialog-interrupt-paint.html testharness event-timing/mousedown.html testharness event-timing/mouseenter.html testharness event-timing/mouseleave.html @@ -33699,6 +36957,7 @@ testharness event-timing/timingconditions.html testharness event-timing/toJSON.html testharness eventsource/dedicated-worker/eventsource-close.htm testharness eventsource/dedicated-worker/eventsource-close2.htm +testharness eventsource/dedicated-worker/eventsource-constructor-no-new.any.js testharness eventsource/dedicated-worker/eventsource-constructor-non-same-origin.htm testharness eventsource/dedicated-worker/eventsource-eventtarget.worker.js testharness eventsource/dedicated-worker/eventsource-onmessage.htm @@ -33721,7 +36980,7 @@ testharness eventsource/eventsource-onmessage.any.js testharness eventsource/eventsource-onopen.any.js testharness eventsource/eventsource-prototype.any.js testharness eventsource/eventsource-reconnect.window.js -testharness eventsource/eventsource-request-cancellation.any.window.js +testharness eventsource/eventsource-request-cancellation.window.js testharness eventsource/eventsource-url.any.js testharness eventsource/format-bom-2.any.js testharness eventsource/format-bom.any.js @@ -33748,8 +37007,8 @@ testharness eventsource/format-null-character.any.js testharness eventsource/format-utf-8.any.js testharness eventsource/request-accept.any.js testharness eventsource/request-cache-control.any.js -testharness eventsource/request-credentials.any.window.js -testharness eventsource/request-redirect.any.window.js +testharness eventsource/request-credentials.window.js +testharness eventsource/request-redirect.window.js testharness eventsource/request-status-error.window.js testharness eventsource/shared-worker/eventsource-close.htm testharness eventsource/shared-worker/eventsource-constructor-non-same-origin.htm @@ -33808,6 +37067,262 @@ testharness feature-policy/reporting/usb-reporting.https.html testharness feature-policy/reporting/vr-report-only.https.html testharness feature-policy/reporting/vr-reporting.https.html testharness feature-policy/reporting/xr-reporting.https.html +testharness fedcm/fedcm-abort.https.html +testharness fedcm/fedcm-after-abort.https.html +testharness fedcm/fedcm-authz/fedcm-continue-on-disallowed.https.html +testharness fedcm/fedcm-authz/fedcm-continue-on-with-account.https.html +testharness fedcm/fedcm-authz/fedcm-continue-on.https.html +testharness fedcm/fedcm-authz/fedcm-disclosure-text-shown.https.html +testharness fedcm/fedcm-authz/fedcm-userinfo-after-resolve.https.html +testharness fedcm/fedcm-authz/resolve-after-preventsilentaccess.https.html +testharness fedcm/fedcm-auto-reauthn-without-approved-clients.https.html +testharness fedcm/fedcm-auto-selected-flag.https.html +testharness fedcm/fedcm-basic.https.html +testharness fedcm/fedcm-button-and-other-account/fedcm-button-mode-auto-selected-flag.tentative.https.html +testharness fedcm/fedcm-button-and-other-account/fedcm-button-mode-basics.tentative.https.html +testharness fedcm/fedcm-button-and-other-account/fedcm-button-mode-priority.tentative.https.html +testharness fedcm/fedcm-button-and-other-account/fedcm-use-other-account-button-flow.tentative.https.html +testharness fedcm/fedcm-button-and-other-account/fedcm-use-other-account.tentative.https.html +testharness fedcm/fedcm-client-metadata-not-cached.https.html +testharness fedcm/fedcm-context.https.html +testharness fedcm/fedcm-cross-origin-policy.https.html +testharness fedcm/fedcm-csp.https.html +testharness fedcm/fedcm-disconnect-errors.https.html +testharness fedcm/fedcm-disconnect-iframe.sub.https.html +testharness fedcm/fedcm-disconnect.sub.https.html +testharness fedcm/fedcm-domainhint.https.html +testharness fedcm/fedcm-endpoint-redirects.https.html +testharness fedcm/fedcm-error-basic.https.html +testharness fedcm/fedcm-identity-assertion-nocors.https.html +testharness fedcm/fedcm-iframe.https.html +testharness fedcm/fedcm-login-status-unknown.https.html +testharness fedcm/fedcm-login-status/confirm-idp-login.https.html +testharness fedcm/fedcm-login-status/cross-origin-status.https.html +testharness fedcm/fedcm-login-status/logged-out.https.html +testharness fedcm/fedcm-loginhint.https.html +testharness fedcm/fedcm-manifest-not-in-list.https.html +testharness fedcm/fedcm-multi-idp/fedcm-multi-idp-abort.https.html +testharness fedcm/fedcm-multi-idp/fedcm-multi-idp-basic.https.html +testharness fedcm/fedcm-multi-idp/fedcm-multi-idp-context.https.html +testharness fedcm/fedcm-multi-idp/fedcm-multi-idp-mediation-optional.https.html +testharness fedcm/fedcm-multi-idp/fedcm-multi-idp-mediation-silent.https.html +testharness fedcm/fedcm-no-login-url.https.html +testharness fedcm/fedcm-nonce-is-optional.https.html +testharness fedcm/fedcm-not-observed-by-service-worker.https.html +testharness fedcm/fedcm-opaque-rp-origin.https.html +testharness fedcm/fedcm-pending-call-rejected.https.html +testharness fedcm/fedcm-pending-disconnect.https.html +testharness fedcm/fedcm-pending-userinfo.https.html +testharness fedcm/fedcm-register/fedcm-no-registered-idps.https.html +testharness fedcm/fedcm-reject-invalid-responses.https.html +testharness fedcm/fedcm-returning-account-auto-reauthn.https.html +testharness fedcm/fedcm-same-site-none.https.html +testharness fedcm/fedcm-storage-access-api-autogrant.tentative.https.sub.html +testharness fedcm/fedcm-store.https.html +testharness fedcm/fedcm-token-returned-with-http-error.https.html +testharness fedcm/fedcm-too-many-disconnect-calls.https.html +testharness fedcm/fedcm-userinfo.https.html +testharness fedcm/lfedcm-identity.create-store-collect.tentative.sub.https.html +testharness fedcm/lfedcm-identity.discovery.tentative.sub.https.html +testharness fenced-frame/add-fencedframe-to-detached-iframe.https.html +testharness fenced-frame/allow-attribute-src.https.html +testharness fenced-frame/ancestor-throttle.https.html +testharness fenced-frame/anchor-focus.https.html +testharness fenced-frame/autofocus-denied.https.html +testharness fenced-frame/automatic-beacon-anchor-click-handler.https.html +testharness fenced-frame/automatic-beacon-click-handler.https.html +testharness fenced-frame/automatic-beacon-component-ad.https.html +testharness fenced-frame/automatic-beacon-cross-origin-false.https.html +testharness fenced-frame/automatic-beacon-cross-origin-navigation.https.html +testharness fenced-frame/automatic-beacon-cross-origin-no-data.https.html +testharness fenced-frame/automatic-beacon-cross-origin-no-opt-in.https.html +testharness fenced-frame/automatic-beacon-data-cross-origin-subframe.https.html +testharness fenced-frame/automatic-beacon-no-destination.https.html +testharness fenced-frame/automatic-beacon-no-opt-in.https.html +testharness fenced-frame/automatic-beacon-shared-storage.https.html +testharness fenced-frame/automatic-beacon-two-events-clear.https.html +testharness fenced-frame/automatic-beacon-two-events-persist.https.html +testharness fenced-frame/automatic-beacon-unfenced-top.https.html +testharness fenced-frame/automatic-beacon-use-ancestor-data.https.html +testharness fenced-frame/background-fetch.https.html +testharness fenced-frame/background-sync.https.html +testharness fenced-frame/badging.https.html +testharness fenced-frame/battery_status.https.html +testharness fenced-frame/before-unload.https.html +testharness fenced-frame/can-load-api.https.html +testharness fenced-frame/change-src-attribute-after-config-installation-does-not-trigger-navigation.https.html +testharness fenced-frame/client-hints-meta.https.html +testharness fenced-frame/client-hints.https.html +testharness fenced-frame/compute-pressure.https.html +testharness fenced-frame/config-cross-origin-apis.https.html +testharness fenced-frame/config-installation-triggers-navigation-of-navigated-fenced-frame.https.html +testharness fenced-frame/config-installation-triggers-navigation.https.html +testharness fenced-frame/config-with-empty-url-installation-unloads-navigated-fenced-frame.https.html +testharness fenced-frame/consume-user-activation.https.html +testharness fenced-frame/content-index.https.html +testharness fenced-frame/coop-bcg-swap.https.html +testharness fenced-frame/create-credential.https.html +testharness fenced-frame/create-in-sandbox-and-adopt-outside-sandbox.https.html +testharness fenced-frame/csp-allowed-transparent.https.html +testharness fenced-frame/csp-allowed.https.html +testharness fenced-frame/csp-ancestors.https.sub.html +testharness fenced-frame/csp-blocked-transparent.https.html +testharness fenced-frame/csp-blocked.https.html +testharness fenced-frame/csp-fenced-frame-src-allowed.https.html +testharness fenced-frame/csp-fenced-frame-src-blocked.https.html +testharness fenced-frame/csp-frame-src-allowed.https.html +testharness fenced-frame/csp-frame-src-blocked.https.html +testharness fenced-frame/csp.https.html +testharness fenced-frame/cspee.https.html +testharness fenced-frame/deep-copy-config.https.html +testharness fenced-frame/default-enabled-features-allow-all.https.html +testharness fenced-frame/default-enabled-features-allow-none.https.html +testharness fenced-frame/default-enabled-features-allow-self.https.html +testharness fenced-frame/default-enabled-features-allow-unspecified.https.html +testharness fenced-frame/default-enabled-features-attribute-allow.https.html +testharness fenced-frame/default-enabled-features-attribute-change.https.html +testharness fenced-frame/default-enabled-features-attribute-disallow.https.html +testharness fenced-frame/default-enabled-features-attribution-disabled.https.html +testharness fenced-frame/default-enabled-features-subframe.https.html +testharness fenced-frame/default-enabled-features-unset.https.html +testharness fenced-frame/deprecated-config-apis.https.html +testharness fenced-frame/disallowed-navigation-to-blob.https.html +testharness fenced-frame/disallowed-navigation-to-data.https.html +testharness fenced-frame/disallowed-navigation-to-http.https.html +testharness fenced-frame/disallowed-navigations-dangling-markup-urn.https.html +testharness fenced-frame/disallowed-navigations-dangling-markup.https.html +testharness fenced-frame/disallowed-navigations.https.html +testharness fenced-frame/document-activeelement.https.html +testharness fenced-frame/document-hasfocus.https.html +testharness fenced-frame/document-picture-in-picture-denied.https.html +testharness fenced-frame/document-referrer.https.html +testharness fenced-frame/download.https.html +testharness fenced-frame/embedder-coop-coep-blocked.https.html +testharness fenced-frame/embedder-csp-not-propagate.https.html +testharness fenced-frame/embedder-no-coep.https.html +testharness fenced-frame/embedder-require-corp.https.html +testharness fenced-frame/fedcm-get-credential.https.html +testharness fenced-frame/fence-api.https.html +testharness fenced-frame/fence-report-event-cross-origin-content-initiated.https.html +testharness fenced-frame/fence-report-event-cross-origin-nested-urn-iframe.https.html +testharness fenced-frame/fence-report-event-cross-origin-nested.https.html +testharness fenced-frame/fence-report-event-cross-origin-no-embedder-opt-in.https.html +testharness fenced-frame/fence-report-event-cross-origin-no-subframe-opt-in.https.html +testharness fenced-frame/fence-report-event-cross-origin-urn-iframe-content-initiated.https.html +testharness fenced-frame/fence-report-event-cross-origin-urn-iframe-no-embedder-opt-in.https.html +testharness fenced-frame/fence-report-event-cross-origin-urn-iframe-no-subframe-opt-in.https.html +testharness fenced-frame/fence-report-event-cross-origin-urn-iframe.https.html +testharness fenced-frame/fence-report-event-cross-origin.sub.https.html +testharness fenced-frame/fence-report-event-destination-url.https.html +testharness fenced-frame/fence-report-event-sub-fencedframe.https.html +testharness fenced-frame/fence-report-event.https.html +testharness fenced-frame/fence-urn-iframes.https.html +testharness fenced-frame/fledge-container-size-mutation-observer.https.html +testharness fenced-frame/fledge-container-size.https.html +testharness fenced-frame/fragment-navigation.https.html +testharness fenced-frame/frame-navigation.https.html +testharness fenced-frame/gamepad.https.html +testharness fenced-frame/get-mode-in-nested-frame.https.html +testharness fenced-frame/get-nested-configs.https.html +testharness fenced-frame/header-referrer.https.html +testharness fenced-frame/header-secFetchDest.https.html +testharness fenced-frame/hid.https.html +testharness fenced-frame/history-back-and-forward-should-not-work-in-fenced-tree.https.html +testharness fenced-frame/history-length-fenced-navigations-replace-do-not-contribute-to-joint.https.html +testharness fenced-frame/history-length-outer-page-navigation-not-reflected-in-fenced.https.html +testharness fenced-frame/ignore-child-fenced-frame-onload-event.https.html +testharness fenced-frame/insecure-context.html +testharness fenced-frame/intersection-observer.https.html +testharness fenced-frame/invalid-url.https.html +testharness fenced-frame/key-scrolling.https.html +testharness fenced-frame/key-value-store.https.html +testharness fenced-frame/load-ad-with-size.https.html +testharness fenced-frame/loading.https.html +testharness fenced-frame/location-ancestorOrigins.https.html +testharness fenced-frame/mediaDevices-setCaptureHandle.https.html +testharness fenced-frame/multiple-component-ads.https.html +testharness fenced-frame/navigate-ancestor-by-name.https.html +testharness fenced-frame/navigate-ancestor-nested-fenced-frame.https.html +testharness fenced-frame/navigate-ancestor-nested-iframe.https.html +testharness fenced-frame/navigate-ancestor-top-level-fenced-frame.https.html +testharness fenced-frame/navigate-by-name-succeed.https.html +testharness fenced-frame/navigate-descendant-by-name.https.html +testharness fenced-frame/navigate-related-page-by-name.https.html +testharness fenced-frame/navigator-keyboard-layout-map.https.html +testharness fenced-frame/navigator-keyboard-lock.https.html +testharness fenced-frame/navigator-subapp.https.html +testharness fenced-frame/navigator-vibrate.https.html +testharness fenced-frame/navigator-virtualkeyboard.https.html +testharness fenced-frame/nested-opaque-ad-sizes.https.html +testharness fenced-frame/notification.https.html +testharness fenced-frame/notify-event-iframe.https.html +testharness fenced-frame/notify-event-invalid.https.html +testharness fenced-frame/notify-event-nested-fenced-frames.https.html +testharness fenced-frame/notify-event-prevent-caching.https.html +testharness fenced-frame/notify-event-success.https.html +testharness fenced-frame/notify-event-top-level-navigation.https.html +testharness fenced-frame/notify-event-transient-user-activation.https.html +testharness fenced-frame/opaque-ad-sizes-exact-size.https.html +testharness fenced-frame/opaque-ad-sizes-special-cases.https.html +testharness fenced-frame/parse-from-string-sandboxed-iframe.https.html +testharness fenced-frame/payment-handler.https.html +testharness fenced-frame/payment-request.https.html +testharness fenced-frame/permission-api-denied-non-standard.https.html +testharness fenced-frame/permission-api-denied.https.html +testharness fenced-frame/permission-geolocation.https.html +testharness fenced-frame/permission-notification.https.html +testharness fenced-frame/picture-in-picture.https.html +testharness fenced-frame/popup-noopener.https.html +testharness fenced-frame/prerender.https.html +testharness fenced-frame/presentation-receiver.https.html +testharness fenced-frame/reinsert.https.html +testharness fenced-frame/report-event-inactive-document.https.html +testharness fenced-frame/report-event-reserved-event.https.html +testharness fenced-frame/report-event-sandboxed-iframe.https.html +testharness fenced-frame/report-event.https.html +testharness fenced-frame/resize-lock-input.https.html +testharness fenced-frame/resize-lock-zoom.https.html +testharness fenced-frame/resize-lock.https.html +testharness fenced-frame/resolve-to-config-promise.https.html +testharness fenced-frame/sandbox-attribute.https.html +testharness fenced-frame/sandbox-mandatory-flags.https.html +testharness fenced-frame/sandboxed-features-alert.https.html +testharness fenced-frame/sandboxed-features-confirm.https.html +testharness fenced-frame/sandboxed-features-documentdomain.https.html +testharness fenced-frame/sandboxed-features-pointerlock.https.html +testharness fenced-frame/sandboxed-features-presentation-request.https.html +testharness fenced-frame/sandboxed-features-printdialog.https.html +testharness fenced-frame/sandboxed-features-prompt.https.html +testharness fenced-frame/sandboxed-features-screen-orientation-lock.https.html +testharness fenced-frame/script-focus.https.html +testharness fenced-frame/scroll-into-view.https.html +testharness fenced-frame/selecturl-flexible-size.https.html +testharness fenced-frame/self-urn-navigation.https.html +testharness fenced-frame/serviceWorker-dedicated-worker.https.html +testharness fenced-frame/serviceWorker-frameType.https.html +testharness fenced-frame/serviceWorker-push.https.html +testharness fenced-frame/set-automatic-beacon.https.html +testharness fenced-frame/setting-null-config-navigates-to-about-blank.https.html +testharness fenced-frame/shared-workers.https.html +testharness fenced-frame/show-directory-picker.https.html +testharness fenced-frame/show-open-file-picker.https.html +testharness fenced-frame/storage-partitioning.https.html +testharness fenced-frame/subframe-loading.https.html +testharness fenced-frame/unique-cookie-partition.https.html +testharness fenced-frame/user-activation.https.html +testharness fenced-frame/visual-viewport.https.html +testharness fenced-frame/web-bluetooth.https.html +testharness fenced-frame/web-nfc.https.html +testharness fenced-frame/web-share.https.html +testharness fenced-frame/web-usb.https.html +testharness fenced-frame/webrtc-peer-connection.https.html +testharness fenced-frame/window-close.https.html +testharness fenced-frame/window-frameElement.https.html +testharness fenced-frame/window-navigation-204.https.html +testharness fenced-frame/window-open-user-activation.https.html +testharness fenced-frame/window-outer-dimensions.https.html +testharness fenced-frame/window-parent.https.html +testharness fenced-frame/window-top.https.html testharness fetch/api/abort/cache.https.any.js testharness fetch/api/abort/destroyed-context.html testharness fetch/api/abort/general.any.js @@ -33823,7 +37338,7 @@ testharness fetch/api/basic/header-value-null-byte.any.js testharness fetch/api/basic/historical.any.js testharness fetch/api/basic/http-response-code.any.js testharness fetch/api/basic/integrity.sub.any.js -testharness fetch/api/basic/keepalive.html +testharness fetch/api/basic/keepalive.any.js testharness fetch/api/basic/mediasource.window.js testharness fetch/api/basic/mode-no-cors.sub.any.js testharness fetch/api/basic/mode-same-origin.any.js @@ -33833,6 +37348,7 @@ testharness fetch/api/basic/request-head.any.js testharness fetch/api/basic/request-headers-case.any.js testharness fetch/api/basic/request-headers-nonascii.any.js testharness fetch/api/basic/request-headers.any.js +testharness fetch/api/basic/request-private-network-headers.tentative.any.js testharness fetch/api/basic/request-referrer-redirected-worker.html testharness fetch/api/basic/request-referrer.any.js testharness fetch/api/basic/request-upload.any.js @@ -33847,6 +37363,7 @@ testharness fetch/api/basic/status.h2.any.js testharness fetch/api/basic/stream-response.any.js testharness fetch/api/basic/stream-safe-creation.any.js testharness fetch/api/basic/text-utf8.any.js +testharness fetch/api/basic/url-parsing.sub.html testharness fetch/api/body/formdata.any.js testharness fetch/api/body/mime-type.any.js testharness fetch/api/cors/cors-basic.any.js @@ -33854,6 +37371,7 @@ testharness fetch/api/cors/cors-cookies-redirect.any.js testharness fetch/api/cors/cors-cookies.any.js testharness fetch/api/cors/cors-expose-star.sub.any.js testharness fetch/api/cors/cors-filtering.sub.any.js +testharness fetch/api/cors/cors-keepalive.any.js testharness fetch/api/cors/cors-multiple-origins.sub.any.js testharness fetch/api/cors/cors-no-preflight.any.js testharness fetch/api/cors/cors-origin.any.js @@ -33872,9 +37390,11 @@ testharness fetch/api/cors/data-url-iframe.html testharness fetch/api/cors/data-url-shared-worker.html testharness fetch/api/cors/data-url-worker.html testharness fetch/api/cors/sandboxed-iframe.html +testharness fetch/api/crashtests/huge-fetch.any.js testharness fetch/api/credentials/authentication-basic.any.js testharness fetch/api/credentials/authentication-redirection.any.js testharness fetch/api/credentials/cookies.any.js +testharness fetch/api/headers/header-setcookie.any.js testharness fetch/api/headers/header-values-normalize.any.js testharness fetch/api/headers/header-values.any.js testharness fetch/api/headers/headers-basic.any.js @@ -33903,6 +37423,8 @@ testharness fetch/api/policies/referrer-unsafe-url.html testharness fetch/api/redirect/redirect-back-to-original-origin.any.js testharness fetch/api/redirect/redirect-count.any.js testharness fetch/api/redirect/redirect-empty-location.any.js +testharness fetch/api/redirect/redirect-keepalive.any.js +testharness fetch/api/redirect/redirect-keepalive.https.any.js testharness fetch/api/redirect/redirect-location-escape.tentative.any.js testharness fetch/api/redirect/redirect-location.any.js testharness fetch/api/redirect/redirect-method.any.js @@ -33920,6 +37442,7 @@ testharness fetch/api/request/destination/fetch-destination-prefetch.https.html testharness fetch/api/request/destination/fetch-destination-worker.https.html testharness fetch/api/request/destination/fetch-destination.https.html testharness fetch/api/request/forbidden-method.any.js +testharness fetch/api/request/multi-globals/construct-in-detached-frame.window.js testharness fetch/api/request/multi-globals/url-parsing.html testharness fetch/api/request/request-bad-port.any.js testharness fetch/api/request/request-cache-default-conditional.any.js @@ -33930,6 +37453,7 @@ testharness fetch/api/request/request-cache-no-store.any.js testharness fetch/api/request/request-cache-only-if-cached.any.js testharness fetch/api/request/request-cache-reload.any.js testharness fetch/api/request/request-clone.sub.html +testharness fetch/api/request/request-constructor-init-body-override.any.js testharness fetch/api/request/request-consume-empty.any.js testharness fetch/api/request/request-consume.any.js testharness fetch/api/request/request-disturbed.any.js @@ -33939,6 +37463,7 @@ testharness fetch/api/request/request-init-001.sub.html testharness fetch/api/request/request-init-002.any.js testharness fetch/api/request/request-init-003.sub.html testharness fetch/api/request/request-init-contenttype.any.js +testharness fetch/api/request/request-init-priority.any.js testharness fetch/api/request/request-init-stream.any.js testharness fetch/api/request/request-keepalive-quota.html testharness fetch/api/request/request-keepalive.any.js @@ -33947,6 +37472,8 @@ testharness fetch/api/request/request-structure.any.js testharness fetch/api/request/url-encoding.html testharness fetch/api/response/json.any.js testharness fetch/api/response/multi-globals/url-parsing.html +testharness fetch/api/response/response-arraybuffer-realm.window.js +testharness fetch/api/response/response-blob-realm.any.js testharness fetch/api/response/response-body-read-task-handling.html testharness fetch/api/response/response-cancel-stream.any.js testharness fetch/api/response/response-clone-iframe.window.js @@ -33957,6 +37484,7 @@ testharness fetch/api/response/response-consume.html testharness fetch/api/response/response-error-from-stream.any.js testharness fetch/api/response/response-error.any.js testharness fetch/api/response/response-from-stream.any.js +testharness fetch/api/response/response-headers-guard.any.js testharness fetch/api/response/response-init-001.any.js testharness fetch/api/response/response-init-002.any.js testharness fetch/api/response/response-init-contenttype.any.js @@ -33972,19 +37500,35 @@ testharness fetch/api/response/response-stream-disturbed-5.any.js testharness fetch/api/response/response-stream-disturbed-6.any.js testharness fetch/api/response/response-stream-disturbed-by-pipe.any.js testharness fetch/api/response/response-stream-with-broken-then.any.js +testharness fetch/compression-dictionary/dictionary-clear-site-data-cache.tentative.https.html +testharness fetch/compression-dictionary/dictionary-clear-site-data-cookies.tentative.https.html +testharness fetch/compression-dictionary/dictionary-clear-site-data-storage.tentative.https.html +testharness fetch/compression-dictionary/dictionary-decompression.tentative.https.html +testharness fetch/compression-dictionary/dictionary-fetch-with-link-element.tentative.https.html +testharness fetch/compression-dictionary/dictionary-fetch-with-link-header.tentative.https.html +testharness fetch/compression-dictionary/dictionary-registration.tentative.https.html testharness fetch/connection-pool/network-partition-key.html -testharness fetch/content-encoding/bad-gzip-body.any.js -testharness fetch/content-encoding/gzip-body.any.js +testharness fetch/content-encoding/br/bad-br-body.https.any.js +testharness fetch/content-encoding/br/big-br-body.https.any.js +testharness fetch/content-encoding/br/br-body.https.any.js +testharness fetch/content-encoding/gzip/bad-gzip-body.any.js +testharness fetch/content-encoding/gzip/big-gzip-body.https.any.js +testharness fetch/content-encoding/gzip/gzip-body.any.js +testharness fetch/content-encoding/zstd/bad-zstd-body.https.any.js +testharness fetch/content-encoding/zstd/big-window-zstd-body.tentative.https.any.js +testharness fetch/content-encoding/zstd/big-zstd-body.https.any.js +testharness fetch/content-encoding/zstd/zstd-body.https.any.js testharness fetch/content-length/api-and-duplicate-headers.any.js testharness fetch/content-length/content-length.html testharness fetch/content-length/parsing.window.js testharness fetch/content-length/too-long.window.js +testharness fetch/content-type/multipart-malformed.any.js testharness fetch/content-type/multipart.window.js testharness fetch/content-type/response.window.js testharness fetch/content-type/script.window.js testharness fetch/corb/img-mime-types-coverage.tentative.sub.html testharness fetch/corb/preload-image-png-mislabeled-as-html-nosniff.tentative.sub.html -testharness fetch/corb/response_block.tentative.sub.https.html +testharness fetch/corb/response_block.tentative.https.html testharness fetch/corb/script-html-correctly-labeled.tentative.sub.html testharness fetch/corb/script-html-js-polyglot.sub.html testharness fetch/corb/script-html-via-cross-origin-blob-url.sub.html @@ -34006,7 +37550,37 @@ testharness fetch/cross-origin-resource-policy/scheme-restriction.https.window.j testharness fetch/cross-origin-resource-policy/script-loads.html testharness fetch/cross-origin-resource-policy/syntax.any.js testharness fetch/data-urls/base64.any.js +testharness fetch/data-urls/navigate.window.js testharness fetch/data-urls/processing.any.js +testharness fetch/fetch-later/activate-after.tentative.https.window.js +testharness fetch/fetch-later/basic.tentative.https.window.js +testharness fetch/fetch-later/basic.tentative.https.worker.js +testharness fetch/fetch-later/headers/header-referrer-no-referrer-when-downgrade.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-no-referrer.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-origin-when-cross-origin.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-origin.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-same-origin.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-strict-origin-when-cross-origin.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-strict-origin.tentative.https.html +testharness fetch/fetch-later/headers/header-referrer-unsafe-url.tentative.https.html +testharness fetch/fetch-later/iframe.tentative.https.window.js +testharness fetch/fetch-later/new-window.tentative.https.window.js +testharness fetch/fetch-later/non-secure.window.js +testharness fetch/fetch-later/permissions-policy/deferred-fetch-allowed-by-permissions-policy-attribute-redirect.tentative.https.window.js +testharness fetch/fetch-later/permissions-policy/deferred-fetch-allowed-by-permissions-policy-attribute.tentative.https.window.js +testharness fetch/fetch-later/permissions-policy/deferred-fetch-allowed-by-permissions-policy.tentative.https.window.js +testharness fetch/fetch-later/permissions-policy/deferred-fetch-default-permissions-policy.tentative.https.window.js +testharness fetch/fetch-later/permissions-policy/deferred-fetch-disabled-by-permissions-policy.tentative.https.window.js +testharness fetch/fetch-later/permissions-policy/deferred-fetch-supported-by-permissions-policy.tentative.window.js +testharness fetch/fetch-later/policies/csp-allowed.tentative.https.window.js +testharness fetch/fetch-later/policies/csp-blocked.tentative.https.window.js +testharness fetch/fetch-later/policies/csp-redirect-to-blocked.tentative.https.window.js +testharness fetch/fetch-later/quota.tentative.https.window.js +testharness fetch/fetch-later/send-on-deactivate-with-background-sync.tentative.https.window.js +testharness fetch/fetch-later/send-on-deactivate.tentative.https.window.js +testharness fetch/fetch-later/send-on-discard/not-send-after-abort.tentative.https.window.js +testharness fetch/fetch-later/send-on-discard/send-multiple-with-activate-after.tentative.https.window.js +testharness fetch/fetch-later/send-on-discard/send-multiple.tentative.https.window.js testharness fetch/h1-parsing/lone-cr.window.js testharness fetch/h1-parsing/resources-with-0x00-in-header.window.js testharness fetch/h1-parsing/status-code.window.js @@ -34027,7 +37601,6 @@ testharness fetch/metadata/audio-worklet.https.html testharness fetch/metadata/embed.https.sub.tentative.html testharness fetch/metadata/fetch-preflight.https.sub.any.js testharness fetch/metadata/fetch.https.sub.any.js -testharness fetch/metadata/generated/appcache-manifest.https.sub.html testharness fetch/metadata/generated/audioworklet.https.sub.html testharness fetch/metadata/generated/css-font-face.https.sub.tentative.html testharness fetch/metadata/generated/css-font-face.sub.tentative.html @@ -34093,7 +37666,6 @@ testharness fetch/metadata/generated/worker-dedicated-importscripts.sub.html testharness fetch/metadata/navigation.https.sub.html testharness fetch/metadata/object.https.sub.html testharness fetch/metadata/paint-worklet.https.html -testharness fetch/metadata/portal.https.sub.html testharness fetch/metadata/preload.https.sub.html testharness fetch/metadata/redirect/multiple-redirect-https-downgrade-upgrade.sub.html testharness fetch/metadata/redirect/redirect-http-upgrade.sub.html @@ -34121,35 +37693,53 @@ testharness fetch/orb/tentative/known-mime-type.sub.any.js testharness fetch/orb/tentative/nosniff.sub.any.js testharness fetch/orb/tentative/script-js-unlabeled-gziped.sub.html testharness fetch/orb/tentative/script-unlabeled.sub.html +testharness fetch/orb/tentative/script-utf16-without-bom-hint-charset.sub.html testharness fetch/orb/tentative/status.sub.any.js testharness fetch/orb/tentative/status.sub.html testharness fetch/orb/tentative/unknown-mime-type.sub.any.js testharness fetch/origin/assorted.window.js -testharness fetch/private-network-access/fetch.https.window.js -testharness fetch/private-network-access/fetch.window.js +testharness fetch/private-network-access/anchor.tentative.https.window.js +testharness fetch/private-network-access/anchor.tentative.window.js +testharness fetch/private-network-access/fenced-frame-no-preflight-required.tentative.https.window.js +testharness fetch/private-network-access/fenced-frame-subresource-fetch.tentative.https.window.js +testharness fetch/private-network-access/fenced-frame.tentative.https.window.js +testharness fetch/private-network-access/fetch-from-treat-as-public.tentative.https.window.js +testharness fetch/private-network-access/fetch.tentative.https.window.js +testharness fetch/private-network-access/fetch.tentative.window.js testharness fetch/private-network-access/iframe.tentative.https.window.js testharness fetch/private-network-access/iframe.tentative.window.js testharness fetch/private-network-access/mixed-content-fetch.tentative.https.window.js -testharness fetch/private-network-access/nested-worker.https.window.js -testharness fetch/private-network-access/nested-worker.window.js -testharness fetch/private-network-access/preflight-cache.https.window.js -testharness fetch/private-network-access/redirect.https.window.js -testharness fetch/private-network-access/service-worker-background-fetch.https.window.js -testharness fetch/private-network-access/service-worker-fetch.https.window.js -testharness fetch/private-network-access/service-worker-update.https.window.js -testharness fetch/private-network-access/service-worker.https.window.js -testharness fetch/private-network-access/shared-worker-fetch.https.window.js -testharness fetch/private-network-access/shared-worker-fetch.window.js -testharness fetch/private-network-access/shared-worker.https.window.js -testharness fetch/private-network-access/shared-worker.window.js -testharness fetch/private-network-access/websocket.https.window.js -testharness fetch/private-network-access/websocket.window.js -testharness fetch/private-network-access/worker-fetch.https.window.js -testharness fetch/private-network-access/worker-fetch.window.js -testharness fetch/private-network-access/worker.https.window.js -testharness fetch/private-network-access/worker.window.js -testharness fetch/private-network-access/xhr.https.window.js -testharness fetch/private-network-access/xhr.window.js +testharness fetch/private-network-access/nested-worker.tentative.https.window.js +testharness fetch/private-network-access/nested-worker.tentative.window.js +testharness fetch/private-network-access/preflight-cache.https.tentative.window.js +testharness fetch/private-network-access/redirect.tentative.https.window.js +testharness fetch/private-network-access/service-worker-background-fetch.tentative.https.window.js +testharness fetch/private-network-access/service-worker-fetch-document-treat-as-public.tentative.https.window.js +testharness fetch/private-network-access/service-worker-fetch-document.tentative.https.window.js +testharness fetch/private-network-access/service-worker-fetch.tentative.https.window.js +testharness fetch/private-network-access/service-worker-update.tentative.https.window.js +testharness fetch/private-network-access/service-worker.tentative.https.window.js +testharness fetch/private-network-access/shared-worker-blob-fetch.tentative.https.window.js +testharness fetch/private-network-access/shared-worker-blob-fetch.tentative.window.js +testharness fetch/private-network-access/shared-worker-fetch.tentative.https.window.js +testharness fetch/private-network-access/shared-worker-fetch.tentative.window.js +testharness fetch/private-network-access/shared-worker.tentative.https.window.js +testharness fetch/private-network-access/shared-worker.tentative.window.js +testharness fetch/private-network-access/websocket.tentative.https.window.js +testharness fetch/private-network-access/websocket.tentative.window.js +testharness fetch/private-network-access/window-open-existing.tentative.https.window.js +testharness fetch/private-network-access/window-open-existing.tentative.window.js +testharness fetch/private-network-access/window-open.tentative.https.window.js +testharness fetch/private-network-access/window-open.tentative.window.js +testharness fetch/private-network-access/worker-blob-fetch.tentative.window.js +testharness fetch/private-network-access/worker-fetch.tentative.https.window.js +testharness fetch/private-network-access/worker-fetch.tentative.window.js +testharness fetch/private-network-access/worker.tentative.https.window.js +testharness fetch/private-network-access/worker.tentative.window.js +testharness fetch/private-network-access/xhr-from-treat-as-public.tentative.https.window.js +testharness fetch/private-network-access/xhr.https.tentative.window.js +testharness fetch/private-network-access/xhr.tentative.window.js +testharness fetch/range/blob.any.js testharness fetch/range/data.any.js testharness fetch/range/general.any.js testharness fetch/range/general.window.js @@ -34160,8 +37750,13 @@ testharness fetch/redirect-navigate/preserve-fragment.html testharness fetch/redirects/data.window.js testharness fetch/redirects/subresource-fragments.html testharness fetch/security/1xx-response.any.js -testharness fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html -testharness fetch/security/dangling-markup-mitigation.tentative.html +testharness fetch/security/dangling-markup/dangling-markup-mitigation-allowed-apis.tentative.https.html +testharness fetch/security/dangling-markup/dangling-markup-mitigation-data-url.tentative.sub.html +testharness fetch/security/dangling-markup/dangling-markup-mitigation.tentative.html +testharness fetch/security/dangling-markup/dangling-markup-mitigation.tentative.https.html +testharness fetch/security/dangling-markup/media.html +testharness fetch/security/dangling-markup/option.html +testharness fetch/security/dangling-markup/textarea.html testharness fetch/security/embedded-credentials.tentative.sub.html testharness fetch/security/redirect-to-url-with-credentials.https.html testharness fetch/stale-while-revalidate/fetch-sw.https.html @@ -34170,10 +37765,43 @@ testharness fetch/stale-while-revalidate/revalidate-not-blocked-by-csp.html testharness fetch/stale-while-revalidate/stale-css.html testharness fetch/stale-while-revalidate/stale-image.html testharness fetch/stale-while-revalidate/stale-script.html +testharness file-system-access/getDirectory.https.any.js testharness file-system-access/idlharness.https.any.js testharness file-system-access/opaque-origin.https.window.js testharness file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.js testharness file-system-access/showPicker-errors.https.window.js +testharness fledge/tentative/abort.https.window.js +testharness fledge/tentative/additional-bids.https.window.js +testharness fledge/tentative/auction-config-passed-to-worklets.https.window.js +testharness fledge/tentative/auction-config.https.window.js +testharness fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.js +testharness fledge/tentative/component-ads.https.window.js +testharness fledge/tentative/component-auction.https.window.js +testharness fledge/tentative/cross-origin.https.window.js +testharness fledge/tentative/currency.https.window.js +testharness fledge/tentative/deprecated-render-url-replacements.https.window.js +testharness fledge/tentative/direct-from-seller-signals.https.window.js +testharness fledge/tentative/fetch-ad-auction-headers-insecure-context.tentative.http.html +testharness fledge/tentative/fetch-ad-auction-headers.tentative.https.html +testharness fledge/tentative/generate-bid-browser-signals.https.window.js +testharness fledge/tentative/get-interest-group-auction-data.https.window.js +testharness fledge/tentative/insecure-context.window.js +testharness fledge/tentative/interest-group-passed-to-generate-bid.https.window.js +testharness fledge/tentative/interest-group-update.https.window.js +testharness fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.js +testharness fledge/tentative/join-leave-ad-interest-group.https.window.js +testharness fledge/tentative/kanon-status-below-threshold.https.window.js +testharness fledge/tentative/kanon-status-not-calculated.https.window.js +testharness fledge/tentative/network.https.window.js +testharness fledge/tentative/no-winner.https.window.js +testharness fledge/tentative/register-ad-beacon.https.window.js +testharness fledge/tentative/reporting-arguments.https.window.js +testharness fledge/tentative/round-a-value.https.window.js +testharness fledge/tentative/score-ad-browser-signals.https.window.js +testharness fledge/tentative/send-report-to.https.window.js +testharness fledge/tentative/tie.https.window.js +testharness fledge/tentative/trusted-bidding-signals.https.window.js +testharness fledge/tentative/trusted-scoring-signals.https.window.js testharness focus/activeelement-after-calling-window-focus.sub.html testharness focus/activeelement-after-focusing-different-site-iframe-contentwindow.html testharness focus/activeelement-after-focusing-different-site-iframe-then-immediately-focusing-back.html @@ -34184,12 +37812,17 @@ testharness focus/activeelement-after-immediately-focusing-different-site-iframe testharness focus/activeelement-after-immediately-focusing-different-site-iframe.html testharness focus/activeelement-after-immediately-focusing-same-site-iframe-contentwindow.html testharness focus/activeelement-after-immediately-focusing-same-site-iframe.html +testharness focus/activeelement-after-nested-loses-focus.html +testharness focus/ancestor-activeelement-after-child-lose-focus.html +testharness focus/cross-origin-ancestor-activeelement-after-child-lose-focus.sub.html testharness focus/focus-already-focused-iframe-deep-different-site.html testharness focus/focus-already-focused-iframe-deep-same-site.html testharness focus/focus-already-focused-iframe-different-site.html testharness focus/focus-already-focused-iframe-same-site.html +testharness focus/focus-centers-element.html testharness focus/focus-event-after-focusing-iframes.html testharness focus/focus-event-after-iframe-gets-focus.html +testharness focus/focus-event-after-switching-iframes.sub.html testharness focus/focus-restoration-in-different-site-iframes-window.html testharness focus/focus-restoration-in-different-site-iframes.html testharness focus/focus-restoration-in-same-site-iframes-window.html @@ -34226,6 +37859,7 @@ testharness forced-colors-mode/forced-colors-mode-40.html testharness forced-colors-mode/forced-colors-mode-41.html testharness forced-colors-mode/forced-colors-mode-50.html testharness forced-colors-mode/forced-colors-mode-51.html +testharness forced-colors-mode/forced-colors-mode-54.html testharness fs/FileSystemBaseHandle-IndexedDB.https.any.js testharness fs/FileSystemBaseHandle-buckets.https.any.js testharness fs/FileSystemBaseHandle-getUniqueId.https.any.js @@ -34244,20 +37878,29 @@ testharness fs/FileSystemDirectoryHandle-getFileHandle.https.any.js testharness fs/FileSystemDirectoryHandle-iteration.https.any.js testharness fs/FileSystemDirectoryHandle-removeEntry.https.any.js testharness fs/FileSystemDirectoryHandle-resolve.https.any.js -testharness fs/FileSystemFileHandle-create-sync-access-handle.https.tentative.window.js +testharness fs/FileSystemFileHandle-create-sync-access-handle.https.window.js +testharness fs/FileSystemFileHandle-cross-primitive-locking.https.tentative.worker.js testharness fs/FileSystemFileHandle-getFile.https.any.js testharness fs/FileSystemFileHandle-move.https.any.js -testharness fs/FileSystemFileHandle-sync-access-handle-writable-lock.https.tentative.worker.js -testharness fs/FileSystemSyncAccessHandle-close.https.tentative.worker.js -testharness fs/FileSystemSyncAccessHandle-flush.https.tentative.worker.js -testharness fs/FileSystemSyncAccessHandle-getSize.https.tentative.worker.js -testharness fs/FileSystemSyncAccessHandle-read-write.https.tentative.worker.js -testharness fs/FileSystemSyncAccessHandle-truncate.https.tentative.worker.js +testharness fs/FileSystemFileHandle-sync-access-handle-back-forward-cache.https.tentative.window.js +testharness fs/FileSystemFileHandle-sync-access-handle-lock-modes.https.tentative.worker.js +testharness fs/FileSystemFileHandle-writable-file-stream-back-forward-cache.https.tentative.window.js +testharness fs/FileSystemFileHandle-writable-file-stream-lock-modes.https.tentative.worker.js +testharness fs/FileSystemObserver-sync-access-handle.https.tentative.worker.js +testharness fs/FileSystemObserver-unsupported-global.https.tentative.any.js +testharness fs/FileSystemObserver-writable-file-stream.https.tentative.any.js +testharness fs/FileSystemObserver.https.tentative.any.js +testharness fs/FileSystemSyncAccessHandle-close.https.worker.js +testharness fs/FileSystemSyncAccessHandle-flush.https.worker.js +testharness fs/FileSystemSyncAccessHandle-getSize.https.worker.js +testharness fs/FileSystemSyncAccessHandle-read-write.https.worker.js +testharness fs/FileSystemSyncAccessHandle-truncate.https.worker.js testharness fs/FileSystemWritableFileStream-piped.https.any.js testharness fs/FileSystemWritableFileStream-write.https.any.js testharness fs/FileSystemWritableFileStream.https.any.js testharness fs/idlharness.https.any.js testharness fs/opaque-origin.https.window.js +testharness fs/root-name.https.any.js testharness fullscreen/api/document-exit-fullscreen-active-document.html testharness fullscreen/api/document-exit-fullscreen-nested-in-iframe.html testharness fullscreen/api/document-exit-fullscreen-nested-shadow-dom.html @@ -34296,22 +37939,27 @@ testharness fullscreen/api/element-request-fullscreen-namespaces.html testharness fullscreen/api/element-request-fullscreen-non-top.html testharness fullscreen/api/element-request-fullscreen-not-allowed.html testharness fullscreen/api/element-request-fullscreen-options.html -testharness fullscreen/api/element-request-fullscreen-options.tentative.html +testharness fullscreen/api/element-request-fullscreen-options.tentative.https.html testharness fullscreen/api/element-request-fullscreen-same-element.html testharness fullscreen/api/element-request-fullscreen-same.html +testharness fullscreen/api/element-request-fullscreen-screen-size.https.html testharness fullscreen/api/element-request-fullscreen-svg-rect.html testharness fullscreen/api/element-request-fullscreen-svg-svg.html testharness fullscreen/api/element-request-fullscreen-timing.html testharness fullscreen/api/element-request-fullscreen-top.html testharness fullscreen/api/element-request-fullscreen-twice.html testharness fullscreen/api/element-request-fullscreen-two-elements.html +testharness fullscreen/api/element-request-fullscreen-without-user-activation.tentative.https.html testharness fullscreen/api/element-request-fullscreen.html testharness fullscreen/api/fullscreen-display-contents.html +testharness fullscreen/api/fullscreen-reordering.html testharness fullscreen/api/historical.html +testharness fullscreen/api/permission.tentative.https.html testharness fullscreen/api/promises-reject.html testharness fullscreen/api/promises-resolve.html testharness fullscreen/api/shadowroot-fullscreen-element.html testharness fullscreen/idlharness.window.js +testharness fullscreen/model/move-fullscreen-element.html testharness fullscreen/model/move-to-fullscreen-iframe.html testharness fullscreen/model/move-to-iframe.html testharness fullscreen/model/move-to-inactive-document.html @@ -34328,30 +37976,13 @@ testharness fullscreen/rendering/fullscreen-root-block-scroll.html testharness fullscreen/rendering/fullscreen-root-block-size.html testharness fullscreen/rendering/ua-style-iframe.html testharness gamepad/gamepad-default-feature-policy.https.sub.html -testharness gamepad/gamepad-secure-context.html testharness gamepad/gamepad-supported-by-feature-policy.html testharness gamepad/idlharness-extensions.https.window.js -testharness gamepad/idlharness.https.window.js -testharness gamepad/not-fully-active.https.html +testharness gamepad/idlharness.window.js +testharness gamepad/not-fully-active.html testharness generic-sensor/SensorErrorEvent-constructor.https.html testharness generic-sensor/generic-sensor-permission.https.html testharness generic-sensor/idlharness.https.window.js -testharness geolocation-API/PositionOptions.https.html -testharness geolocation-API/clearWatch_TypeError.https.html -testharness geolocation-API/disabled-by-permissions-policy.https.sub.html -testharness geolocation-API/enabled-by-permission-policy-attribute-redirect-on-load.https.sub.html -testharness geolocation-API/enabled-by-permission-policy-attribute.https.sub.html -testharness geolocation-API/enabled-by-permissions-policy.https.sub.html -testharness geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html -testharness geolocation-API/getCurrentPosition_TypeError.https.html -testharness geolocation-API/getCurrentPosition_permission_allow.https.html -testharness geolocation-API/getCurrentPosition_permission_deny.https.html -testharness geolocation-API/idlharness.https.window.js -testharness geolocation-API/non-fully-active.https.html -testharness geolocation-API/non-secure-contexts.http.html -testharness geolocation-API/permission.https.html -testharness geolocation-API/watchPosition_TypeError.https.html -testharness geolocation-API/watchPosition_permission_deny.https.html testharness geolocation-sensor/GeolocationSensor-disabled-by-feature-policy.https.html testharness geolocation-sensor/GeolocationSensor-enabled-by-feature-policy-attribute-redirect-on-load.https.html testharness geolocation-sensor/GeolocationSensor-enabled-by-feature-policy-attribute.https.html @@ -34363,6 +37994,24 @@ testharness geolocation-sensor/GeolocationSensor.https.html testharness geolocation-sensor/GeolocationSensor_insecure_context.html testharness geolocation-sensor/GeolocationSensor_read.https.html testharness geolocation-sensor/idlharness.https.window.js +testharness geolocation/PositionOptions.https.html +testharness geolocation/clearWatch_TypeError.https.html +testharness geolocation/disabled-by-permissions-policy.https.sub.html +testharness geolocation/enabled-by-permission-policy-attribute-redirect-on-load.https.sub.html +testharness geolocation/enabled-by-permission-policy-attribute.https.sub.html +testharness geolocation/enabled-by-permissions-policy.https.sub.html +testharness geolocation/enabled-on-self-origin-by-permissions-policy.https.sub.html +testharness geolocation/getCurrentPosition_TypeError.https.html +testharness geolocation/getCurrentPosition_permission_allow.https.html +testharness geolocation/getCurrentPosition_permission_deny.https.html +testharness geolocation/idlharness.https.window.js +testharness geolocation/non-fully-active.https.html +testharness geolocation/non-secure-contexts.http.html +testharness geolocation/permission.https.html +testharness geolocation/tojson.https.window.js +testharness geolocation/watchPosition_TypeError.https.html +testharness geolocation/watchPosition_permission_deny.https.html +testharness graphics-aria/graphics-roles.html testharness gyroscope/Gyroscope-disabled-by-feature-policy.https.html testharness gyroscope/Gyroscope-enabled-by-feature-policy-attribute-redirect-on-load.https.html testharness gyroscope/Gyroscope-enabled-by-feature-policy-attribute.https.html @@ -34382,10 +38031,23 @@ testharness hr-time/idlharness.any.js testharness hr-time/monotonic-clock.any.js testharness hr-time/navigation-start-post-before-unload.html testharness hr-time/performance-tojson.html +testharness hr-time/raf-coarsened-time.https.html testharness hr-time/test_cross_frame_start.html testharness hr-time/timeOrigin.html testharness hr-time/timing-attack.html testharness hr-time/window-worker-timeOrigin.window.js +testharness html-aam/dir-role.tentative.html +testharness html-aam/fragile/area-role.html +testharness html-aam/fragile/optgroup-role.html +testharness html-aam/names.html +testharness html-aam/roles-contextual.html +testharness html-aam/roles-contextual.tentative.html +testharness html-aam/roles-dynamic-switch.tentative.window.js +testharness html-aam/roles-generic.html +testharness html-aam/roles-generic.tentative.html +testharness html-aam/roles.html +testharness html-aam/roles.tentative.html +testharness html-aam/table-roles.html testharness html-media-capture/capture_reflect.html testharness html-media-capture/idlharness.window.js testharness html/anonymous-iframe/anonymous-iframe-popup.tentative.https.window.js @@ -34396,15 +38058,19 @@ testharness html/anonymous-iframe/cookie.tentative.https.window.js testharness html/anonymous-iframe/embedding.tentative.https.window.js testharness html/anonymous-iframe/fenced-frame-bypass.tentative.https.window.js testharness html/anonymous-iframe/fenced-frame.tentative.https.window.js +testharness html/anonymous-iframe/hasStorageAccess.tentative.https.window.js testharness html/anonymous-iframe/indexeddb.tentative.https.window.js testharness html/anonymous-iframe/initial-empty-document.tentative.https.window.js testharness html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.js testharness html/anonymous-iframe/local-storage.tentative.https.window.js +testharness html/anonymous-iframe/requestStorageAccess.tentative.https.window.js +testharness html/anonymous-iframe/requestStorageAccessFor.tentative.https.window.js testharness html/anonymous-iframe/require-corp-embed-anonymous-iframe.tentative.https.window.js testharness html/anonymous-iframe/serviceworker-partitioning.tentative.https.window.js testharness html/anonymous-iframe/session-storage.tentative.https.window.js testharness html/anonymous-iframe/sharedworker-partitioning.tentative.https.window.js testharness html/anonymous-iframe/web-lock.tentative.https.window.js +testharness html/anonymous-iframe/worker-cookies.tentative.https.window.js testharness html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html testharness html/browsers/browsing-the-web/back-forward-cache/eligibility/dedicated-worker.html testharness html/browsers/browsing-the-web/back-forward-cache/eligibility/inflight-fetch-1.html @@ -34429,7 +38095,7 @@ testharness html/browsers/browsing-the-web/history-traversal/browsing_context_na testharness html/browsers/browsing-the-web/history-traversal/browsing_context_name_cross_origin.html testharness html/browsers/browsing-the-web/history-traversal/browsing_context_name_cross_origin_2.html testharness html/browsers/browsing-the-web/history-traversal/browsing_context_name_cross_origin_3.html -testharness html/browsers/browsing-the-web/history-traversal/document-state.tentative.https.html +testharness html/browsers/browsing-the-web/history-traversal/document-state.https.html testharness html/browsers/browsing-the-web/history-traversal/event-order/after-load-hash-twice.html testharness html/browsers/browsing-the-web/history-traversal/event-order/after-load-hash.html testharness html/browsers/browsing-the-web/history-traversal/event-order/after-load-pushState.html @@ -34445,6 +38111,24 @@ testharness html/browsers/browsing-the-web/history-traversal/events.html testharness html/browsers/browsing-the-web/history-traversal/hashchange_event.html testharness html/browsers/browsing-the-web/history-traversal/history-traversal-navigate-parent-while-child-loading.html testharness html/browsers/browsing-the-web/history-traversal/history-traversal-navigates-multiple-frames.html +testharness html/browsers/browsing-the-web/history-traversal/pagereveal/order-in-bfcache-restore-iframe.html +testharness html/browsers/browsing-the-web/history-traversal/pagereveal/order-in-bfcache-restore.html +testharness html/browsers/browsing-the-web/history-traversal/pagereveal/order-in-new-document-navigation-iframe.html +testharness html/browsers/browsing-the-web/history-traversal/pagereveal/order-in-new-document-navigation.html +testharness html/browsers/browsing-the-web/history-traversal/pagereveal/order-in-prerender-activation.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-cross-origin.sub.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-iframe.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-initial-navigation.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-push-from-click.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-push-navigation-hidden-document.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-push-navigation.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-push-with-cross-origin-redirect.sub.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-push-with-redirect.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-reload-navigation.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-replace-navigation.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-replace-with-cross-origin-redirect.sub.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-traverse-navigation-cross-origin-redirect-no-bfcache.https.sub.html +testharness html/browsers/browsing-the-web/history-traversal/pageswap/pageswap-traverse-navigation-no-bfcache.https.html testharness html/browsers/browsing-the-web/history-traversal/persisted-user-state-restoration/resume-timer-on-history-back.html testharness html/browsers/browsing-the-web/history-traversal/persisted-user-state-restoration/scroll-restoration-basic.html testharness html/browsers/browsing-the-web/history-traversal/persisted-user-state-restoration/scroll-restoration-fragment-scrolling-cross-origin.html @@ -34489,6 +38173,8 @@ testharness html/browsers/browsing-the-web/navigating-across-documents/cross-ori testharness html/browsers/browsing-the-web/navigating-across-documents/empty-iframe-load-event.html testharness html/browsers/browsing-the-web/navigating-across-documents/empty_fragment.html testharness html/browsers/browsing-the-web/navigating-across-documents/failure-check-sequence.https.html +testharness html/browsers/browsing-the-web/navigating-across-documents/grandparent_location_aboutsrcdoc.sub.window.js +testharness html/browsers/browsing-the-web/navigating-across-documents/grandparent_session_aboutsrcdoc.sub.window.js testharness html/browsers/browsing-the-web/navigating-across-documents/initial-empty-document/iframe-nosrc.html testharness html/browsers/browsing-the-web/navigating-across-documents/initial-empty-document/iframe-src-204-fragment.html testharness html/browsers/browsing-the-web/navigating-across-documents/initial-empty-document/iframe-src-204-pushState-replaceState.html @@ -34550,8 +38236,12 @@ testharness html/browsers/browsing-the-web/navigating-across-documents/replace-b testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-button-click-during-load.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-button-click-during-pageshow.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-button-click.html +testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-cross-frame-crossorigin.sub.html +testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-cross-frame.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-during-load.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-during-pageshow.html +testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-popup-crossorigin.sub.html +testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit-popup.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/form-submit.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/history-pushstate-during-load.html testharness html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/history-pushstate-during-pageshow.html @@ -34610,8 +38300,14 @@ testharness html/browsers/browsing-the-web/read-media/pageload-image-in-popup.ht testharness html/browsers/browsing-the-web/read-media/pageload-image.html testharness html/browsers/browsing-the-web/read-media/pageload-video.html testharness html/browsers/browsing-the-web/read-text/load-text-plain.html +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addEmbed.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addFrame.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addHTML.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-srcdoc-startOn.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-srcdoc.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-urlType.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addIframe.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addObject.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addScripts.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-defaults.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-extra-config.window.js @@ -34619,9 +38315,13 @@ testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-invalid-origin.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-startOn.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-target.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-urlType-data.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-urlType.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWorker.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/addWorkerNull.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/constructor.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/createContext-bad-executorCreator.window.js +testharness html/browsers/browsing-the-web/remote-context-helper-tests/getRequestHeaders.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/navigateToNew.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/navigation-bfcache.window.js testharness html/browsers/browsing-the-web/remote-context-helper-tests/navigation-helpers.window.js @@ -34639,12 +38339,14 @@ testharness html/browsers/browsing-the-web/scroll-to-fragid/fragment-and-encodin testharness html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-non-utf8-encoded-document.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html +testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-position-inline-nearest.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-position-vertical-lr.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-position-vertical-rl.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-position.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-to-anchor-name.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-to-id-top.html testharness html/browsers/browsing-the-web/scroll-to-fragid/scroll-to-top.html +testharness html/browsers/browsing-the-web/scroll-to-fragid/target-pseudo-after-reinsertion.html testharness html/browsers/browsing-the-web/unloading-documents/001.html testharness html/browsers/browsing-the-web/unloading-documents/002.html testharness html/browsers/browsing-the-web/unloading-documents/003.html @@ -34724,6 +38426,12 @@ testharness html/browsers/history/the-history-interface/history_state.html testharness html/browsers/history/the-history-interface/iframe_history_go_0.html testharness html/browsers/history/the-history-interface/joint_session_history/001.html testharness html/browsers/history/the-history-interface/joint_session_history/002.html +testharness html/browsers/history/the-history-interface/pushstate-replacestate-empty-string/pushstate-base.html +testharness html/browsers/history/the-history-interface/pushstate-replacestate-empty-string/pushstate-whitespace.html +testharness html/browsers/history/the-history-interface/pushstate-replacestate-empty-string/pushstate.html +testharness html/browsers/history/the-history-interface/pushstate-replacestate-empty-string/replacestate-base.html +testharness html/browsers/history/the-history-interface/pushstate-replacestate-empty-string/replacestate-whitespace.html +testharness html/browsers/history/the-history-interface/pushstate-replacestate-empty-string/replacestate.html testharness html/browsers/history/the-history-interface/traverse-during-beforeunload.html testharness html/browsers/history/the-history-interface/traverse-during-unload.html testharness html/browsers/history/the-history-interface/traverse_the_history_1.html @@ -34737,6 +38445,9 @@ testharness html/browsers/history/the-history-interface/traverse_the_history_wri testharness html/browsers/history/the-history-interface/traverse_the_history_write_onload_1.html testharness html/browsers/history/the-history-interface/traverse_the_history_write_onload_2.html testharness html/browsers/history/the-location-interface/allow_prototype_cycle_through_location.sub.html +testharness html/browsers/history/the-location-interface/assign-replace-from-iframe.html +testharness html/browsers/history/the-location-interface/assign-replace-from-top-to-nested-iframe.html +testharness html/browsers/history/the-location-interface/assign-with-nested-iframe.html testharness html/browsers/history/the-location-interface/assign_after_load.html testharness html/browsers/history/the-location-interface/assign_before_load.html testharness html/browsers/history/the-location-interface/document_location.html @@ -34778,6 +38489,7 @@ testharness html/browsers/history/the-location-interface/per-global.window.js testharness html/browsers/history/the-location-interface/reload_document_open_write.html testharness html/browsers/history/the-location-interface/reload_document_write.html testharness html/browsers/history/the-location-interface/reload_document_write_onload.html +testharness html/browsers/history/the-location-interface/replace-with-nested-iframe.html testharness html/browsers/history/the-location-interface/same-hash.html testharness html/browsers/history/the-location-interface/scripted_click_assign_during_load.html testharness html/browsers/history/the-location-interface/scripted_click_location_assign_during_load.html @@ -34791,11 +38503,12 @@ testharness html/browsers/origin/cross-origin-objects/cross-origin-objects-funct testharness html/browsers/origin/cross-origin-objects/cross-origin-objects-function-name.html testharness html/browsers/origin/cross-origin-objects/cross-origin-objects-on-new-window.html testharness html/browsers/origin/cross-origin-objects/cross-origin-objects.html -testharness html/browsers/origin/cross-origin-objects/location-properties-smoke-test.html +testharness html/browsers/origin/cross-origin-objects/location-properties-smoke-test.window.js testharness html/browsers/origin/cross-origin-objects/window-location-and-location-href-cross-realm-set.html testharness html/browsers/origin/inheritance/about-blank-iframe.html testharness html/browsers/origin/inheritance/about-blank-window.html testharness html/browsers/origin/inheritance/about-srcdoc.html +testharness html/browsers/origin/inheritance/document-write.https.window.js testharness html/browsers/origin/inheritance/javascript-url.html testharness html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-no-child-bad-subdomain.sub.https.html testharness html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-no-child-yes-port.sub.https.html @@ -34905,16 +38618,27 @@ testharness html/browsers/the-window-object/garbage-collection-and-browsing-cont testharness html/browsers/the-window-object/historical.window.js testharness html/browsers/the-window-object/length-attribute.window.js testharness html/browsers/the-window-object/name-attribute.window.js +testharness html/browsers/the-window-object/named-access-on-the-window-object/basics.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/changing.html testharness html/browsers/the-window-object/named-access-on-the-window-object/cross-global-npo.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/doc-no-window.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/existing-prop.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/multi-match.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/name-attribute-elements.html testharness html/browsers/the-window-object/named-access-on-the-window-object/named-objects.html testharness html/browsers/the-window-object/named-access-on-the-window-object/navigated-named-objects.window.js +testharness html/browsers/the-window-object/named-access-on-the-window-object/nested-context.html testharness html/browsers/the-window-object/named-access-on-the-window-object/prototype.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/removing.html +testharness html/browsers/the-window-object/named-access-on-the-window-object/strict-mode-redefine-readonly-property.html testharness html/browsers/the-window-object/named-access-on-the-window-object/window-named-properties.html testharness html/browsers/the-window-object/named-access-on-the-window-object/window-null-names.html testharness html/browsers/the-window-object/navigate-to-about-blank-while-initial-load-pending.html testharness html/browsers/the-window-object/noopener-noreferrer-BarProp.window.js testharness html/browsers/the-window-object/noopener-noreferrer-sizing.window.js testharness html/browsers/the-window-object/open-close/close_beforeunload.html +testharness html/browsers/the-window-object/open-close/close_noopener_beforeunload.html +testharness html/browsers/the-window-object/open-close/close_pagehide.html testharness html/browsers/the-window-object/open-close/close_script_defer.html testharness html/browsers/the-window-object/open-close/close_unload.html testharness html/browsers/the-window-object/open-close/creating_browsing_context_test_01.html @@ -34942,6 +38666,7 @@ testharness html/browsers/the-window-object/proxy-getOwnPropertyDescriptor.html testharness html/browsers/the-window-object/security-window/window-security.https.html testharness html/browsers/the-window-object/self-et-al.window.js testharness html/browsers/the-window-object/window-aliases.html +testharness html/browsers/the-window-object/window-indexed-access-vs-named-access.html testharness html/browsers/the-window-object/window-indexed-properties-delete-no-cache.html testharness html/browsers/the-window-object/window-indexed-properties-strict.html testharness html/browsers/the-window-object/window-indexed-properties.html @@ -34988,6 +38713,7 @@ testharness html/browsers/windows/browsing-context-names/choose-existing-001.htm testharness html/browsers/windows/browsing-context-window.html testharness html/browsers/windows/browsing-context.html testharness html/browsers/windows/clear-window-name.https.html +testharness html/browsers/windows/dangling-markup-window-name.html testharness html/browsers/windows/document-domain-nested-navigate.window.js testharness html/browsers/windows/document-domain-nested-set.window.js testharness html/browsers/windows/document-domain-nested.window.js @@ -35004,21 +38730,77 @@ testharness html/browsers/windows/nested-browsing-contexts/window-top-null.html testharness html/browsers/windows/nested-browsing-contexts/window-top.html testharness html/browsers/windows/noreferrer-null-opener.html testharness html/browsers/windows/noreferrer-window-name.html -testharness html/browsers/windows/post-message/first-party-to-first-party-cross-partition.sub.html -testharness html/browsers/windows/post-message/first-party-to-first-party-same-partition.html -testharness html/browsers/windows/post-message/first-party-to-third-party-cross-partition-cross-origin.sub.html -testharness html/browsers/windows/post-message/first-party-to-third-party-cross-partition-same-origin.sub.html -testharness html/browsers/windows/post-message/third-party-to-first-party-cross-partition-cross-origin.sub.html -testharness html/browsers/windows/post-message/third-party-to-first-party-cross-partition-same-origin.sub.html -testharness html/browsers/windows/post-message/third-party-to-third-party-cross-partition-cross-origin.sub.html -testharness html/browsers/windows/post-message/third-party-to-third-party-cross-partition-same-origin.sub.html -testharness html/browsers/windows/post-message/third-party-to-third-party-same-partition.sub.html +testharness html/browsers/windows/opener-string.window.js testharness html/browsers/windows/targeting-cross-origin-nested-browsing-contexts.html testharness html/browsers/windows/targeting-with-embedded-null-in-target.html testharness html/canvas/element/2d.conformance.requirements.basics.html testharness html/canvas/element/2d.conformance.requirements.delete.html testharness html/canvas/element/2d.conformance.requirements.drawings.html testharness html/canvas/element/2d.conformance.requirements.missingargs.html +testharness html/canvas/element/canvas-context/2d.canvas.context.exists.html +testharness html/canvas/element/canvas-context/2d.canvas.context.extraargs.cache.html +testharness html/canvas/element/canvas-context/2d.canvas.context.extraargs.create.html +testharness html/canvas/element/canvas-context/2d.canvas.context.invalid.args.html +testharness html/canvas/element/canvas-context/2d.canvas.context.prototype.html +testharness html/canvas/element/canvas-context/2d.canvas.context.shared.html +testharness html/canvas/element/canvas-context/2d.canvas.context.type.exists.html +testharness html/canvas/element/canvas-context/2d.canvas.context.type.extend.html +testharness html/canvas/element/canvas-context/2d.canvas.context.type.prototype.html +testharness html/canvas/element/canvas-context/2d.canvas.context.type.replace.html +testharness html/canvas/element/canvas-context/2d.canvas.context.unique.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.color.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.2dstate.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.clip.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.different.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.gradient.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.path.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.pattern.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.same.html +testharness html/canvas/element/canvas-host/2d.canvas.host.initial.reset.transform.html +testharness html/canvas/element/canvas-host/2d.canvas.host.readonly.html +testharness html/canvas/element/canvas-host/2d.canvas.host.reference.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.default.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.idl.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.idl.set.zero.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.decimal.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.em.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.empty.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.exp.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.hex.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.junk.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.minus.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.octal.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.onlyspace.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.percent.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.plus.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.space.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.trailingjunk.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.whitespace.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.parse.zero.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.reflect.setcontent.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.reflect.setidl.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.reflect.setidlzero.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.removed.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.decimal.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.em.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.empty.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.exp.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.hex.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.junk.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.minus.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.octal.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.onlyspace.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.percent.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.plus.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.space.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.trailingjunk.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.whitespace.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.attributes.setAttribute.zero.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.invalid.attributes.idl.html +testharness html/canvas/element/canvas-host/2d.canvas.host.size.large.html +testharness html/canvas/element/canvas-host/2d.canvas.host.type.delete.html +testharness html/canvas/element/canvas-host/2d.canvas.host.type.name.html +testharness html/canvas/element/compositing/2d.composite.canvas.clear.html testharness html/canvas/element/compositing/2d.composite.canvas.copy.html testharness html/canvas/element/compositing/2d.composite.canvas.destination-atop.html testharness html/canvas/element/compositing/2d.composite.canvas.destination-in.html @@ -35030,6 +38812,7 @@ testharness html/canvas/element/compositing/2d.composite.canvas.source-in.html testharness html/canvas/element/compositing/2d.composite.canvas.source-out.html testharness html/canvas/element/compositing/2d.composite.canvas.source-over.html testharness html/canvas/element/compositing/2d.composite.canvas.xor.html +testharness html/canvas/element/compositing/2d.composite.clip.clear.html testharness html/canvas/element/compositing/2d.composite.clip.copy.html testharness html/canvas/element/compositing/2d.composite.clip.destination-atop.html testharness html/canvas/element/compositing/2d.composite.clip.destination-in.html @@ -35050,6 +38833,7 @@ testharness html/canvas/element/compositing/2d.composite.globalAlpha.image.html testharness html/canvas/element/compositing/2d.composite.globalAlpha.imagepattern.html testharness html/canvas/element/compositing/2d.composite.globalAlpha.invalid.html testharness html/canvas/element/compositing/2d.composite.globalAlpha.range.html +testharness html/canvas/element/compositing/2d.composite.image.clear.html testharness html/canvas/element/compositing/2d.composite.image.copy.html testharness html/canvas/element/compositing/2d.composite.image.destination-atop.html testharness html/canvas/element/compositing/2d.composite.image.destination-in.html @@ -35070,6 +38854,7 @@ testharness html/canvas/element/compositing/2d.composite.operation.highlight.htm testharness html/canvas/element/compositing/2d.composite.operation.nullsuffix.html testharness html/canvas/element/compositing/2d.composite.operation.over.html testharness html/canvas/element/compositing/2d.composite.operation.unrecognised.html +testharness html/canvas/element/compositing/2d.composite.solid.clear.html testharness html/canvas/element/compositing/2d.composite.solid.copy.html testharness html/canvas/element/compositing/2d.composite.solid.destination-atop.html testharness html/canvas/element/compositing/2d.composite.solid.destination-in.html @@ -35081,6 +38866,7 @@ testharness html/canvas/element/compositing/2d.composite.solid.source-in.html testharness html/canvas/element/compositing/2d.composite.solid.source-out.html testharness html/canvas/element/compositing/2d.composite.solid.source-over.html testharness html/canvas/element/compositing/2d.composite.solid.xor.html +testharness html/canvas/element/compositing/2d.composite.transparent.clear.html testharness html/canvas/element/compositing/2d.composite.transparent.copy.html testharness html/canvas/element/compositing/2d.composite.transparent.destination-atop.html testharness html/canvas/element/compositing/2d.composite.transparent.destination-in.html @@ -35124,13 +38910,12 @@ testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.9arg.d testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.9arg.sourcepos.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.9arg.sourcesize.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.alpha.html -testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.animated.apng.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.animated.gif.html -testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.animated.poster.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.broken.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.canvas.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.clip.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.composite.html +testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.detachedcanvas.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.floatsource.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.incomplete.emptysrc.html testharness html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.incomplete.immediate.html @@ -35186,52 +38971,12 @@ testharness html/canvas/element/drawing-rectangles-to-the-canvas/2d.strokeRect.z testharness html/canvas/element/drawing-rectangles-to-the-canvas/2d.strokeRect.zero.3.html testharness html/canvas/element/drawing-rectangles-to-the-canvas/2d.strokeRect.zero.4.html testharness html/canvas/element/drawing-rectangles-to-the-canvas/2d.strokeRect.zero.5.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.center.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.end.ltr.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.end.rtl.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.left.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.right.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.start.ltr.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.align.start.rtl.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.NaN.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.bound.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.fontface.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.negative.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.small.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.zero.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.unaffected.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fontface.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fontface.notinpage.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fontface.repeat.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.space.basic.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.space.collapse.nonspace.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.stroke.unaffected.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.fontKerning.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.fontKerning.with.uppercase.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.fontVariant.settings.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.invalid.spacing.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.letterSpacing.change.font.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.letterSpacing.measure.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.nonfinite.spacing.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.spacing.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.textRendering.settings.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.wordSpacing.change.font.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.drawing.style.wordSpacing.measure.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.actualBoundingBox.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.advances.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.baselines.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.boundingBox.direction.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.boundingBox.textAlign.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.emHeights.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.fontBoundingBox.ahem.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.fontBoundingBox.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.rtl.text.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.width.basic.html -testharness html/canvas/element/drawing-text-to-the-canvas/2d.text.measure.width.empty.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.CSSHSL.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.CSSRGB.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.transparency.html +testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colormix.currentcolor.html +testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colormix.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.default.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.get.semitransparent.html @@ -35282,18 +39027,12 @@ testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-3. testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-4.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-5.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-6.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-1.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-2.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-3.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-4.html +testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-negative-saturation.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-1.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-2.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-1.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-2.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-3.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-4.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-5.html -testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-6.html +testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-1.html +testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-2.html +testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-negative-saturation.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.html4.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.invalid.css-color-4-hsl-1.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.invalid.css-color-4-hsl-2.html @@ -35365,6 +39104,7 @@ testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.system testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.transparent-1.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.transparent-2.html testharness html/canvas/element/fill-and-stroke-styles/2d.fillStyle.toStringFunctionCallback.html +testharness html/canvas/element/fill-and-stroke-styles/2d.gradient.colormix.html testharness html/canvas/element/fill-and-stroke-styles/2d.gradient.conic.invalid.inputs.html testharness html/canvas/element/fill-and-stroke-styles/2d.gradient.conic.negative.rotation.html testharness html/canvas/element/fill-and-stroke-styles/2d.gradient.conic.positive.rotation.html @@ -35477,18 +39217,40 @@ testharness html/canvas/element/fill-and-stroke-styles/2d.pattern.transform.infi testharness html/canvas/element/fill-and-stroke-styles/2d.pattern.transform.invalid.html testharness html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.html testharness html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.transparency.html +testharness html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colormix.html testharness html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.default.html testharness html/canvas/element/filters/2d.filter.canvasFilterObject.blur.exceptions.tentative.html testharness html/canvas/element/filters/2d.filter.canvasFilterObject.colorMatrix.tentative.html -testharness html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html -testharness html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html -testharness html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html -testharness html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html -testharness html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.html testharness html/canvas/element/filters/2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.html +testharness html/canvas/element/filters/2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.html testharness html/canvas/element/filters/2d.filter.canvasFilterObject.tentative.html testharness html/canvas/element/filters/2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.html +testharness html/canvas/element/filters/2d.filter.layers.blur.exceptions.html +testharness html/canvas/element/filters/2d.filter.layers.colorMatrix.html +testharness html/canvas/element/filters/2d.filter.layers.convolveMatrix.exceptions.html +testharness html/canvas/element/filters/2d.filter.layers.dropShadow.exceptions.html +testharness html/canvas/element/filters/2d.filter.layers.turbulence.inputTypes.html testharness html/canvas/element/filters/2d.filter.value.html +testharness html/canvas/element/layers/2d.layer.beginLayer-options.html +testharness html/canvas/element/layers/2d.layer.ctm.getTransform.html +testharness html/canvas/element/layers/2d.layer.exceptions-are-no-op.html +testharness html/canvas/element/layers/2d.layer.invalid-calls.beginLayer-reset-endLayer.html +testharness html/canvas/element/layers/2d.layer.invalid-calls.beginLayer-restore.html +testharness html/canvas/element/layers/2d.layer.invalid-calls.beginLayer-save-endLayer.html +testharness html/canvas/element/layers/2d.layer.invalid-calls.endLayer.html +testharness html/canvas/element/layers/2d.layer.invalid-calls.save-beginLayer-restore.html +testharness html/canvas/element/layers/2d.layer.invalid-calls.save-endLayer.html +testharness html/canvas/element/layers/2d.layer.layer-rendering-state-reset-in-layer.html +testharness html/canvas/element/layers/2d.layer.malformed-operations-with-promises.html +testharness html/canvas/element/layers/2d.layer.malformed-operations.html +testharness html/canvas/element/layers/2d.layer.valid-calls.beginLayer-endLayer.html +testharness html/canvas/element/layers/2d.layer.valid-calls.beginLayer-save.html +testharness html/canvas/element/layers/2d.layer.valid-calls.beginLayer.html +testharness html/canvas/element/layers/2d.layer.valid-calls.restore.html +testharness html/canvas/element/layers/2d.layer.valid-calls.save-beginLayer.html +testharness html/canvas/element/layers/2d.layer.valid-calls.save.html +testharness html/canvas/element/layers/2d.layer.valid-calls.save_reset_restore.html +testharness html/canvas/element/layers/2d.layer.valid-calls.save_restore.html testharness html/canvas/element/line-styles/2d.line.cap.butt.html testharness html/canvas/element/line-styles/2d.line.cap.closed.html testharness html/canvas/element/line-styles/2d.line.cap.invalid.html @@ -35498,6 +39260,7 @@ testharness html/canvas/element/line-styles/2d.line.cap.square.html testharness html/canvas/element/line-styles/2d.line.cap.valid.html testharness html/canvas/element/line-styles/2d.line.cross.html testharness html/canvas/element/line-styles/2d.line.defaults.html +testharness html/canvas/element/line-styles/2d.line.fill.noop.html testharness html/canvas/element/line-styles/2d.line.invalid.strokestyle.html testharness html/canvas/element/line-styles/2d.line.join.bevel.html testharness html/canvas/element/line-styles/2d.line.join.closed.html @@ -35547,6 +39310,7 @@ testharness html/canvas/element/manual/imagebitmap/createImageBitmap-colorSpaceC testharness html/canvas/element/manual/imagebitmap/createImageBitmap-drawImage-closed.html testharness html/canvas/element/manual/imagebitmap/createImageBitmap-drawImage.html testharness html/canvas/element/manual/imagebitmap/createImageBitmap-exif-orientation.html +testharness html/canvas/element/manual/imagebitmap/createImageBitmap-exif-orientation_none.html testharness html/canvas/element/manual/imagebitmap/createImageBitmap-flipY.html testharness html/canvas/element/manual/imagebitmap/createImageBitmap-in-worker-transfer.html testharness html/canvas/element/manual/imagebitmap/createImageBitmap-invalid-args.html @@ -35599,6 +39363,8 @@ testharness html/canvas/element/path-objects/2d.path.arc.twopie.1.html testharness html/canvas/element/path-objects/2d.path.arc.twopie.2.html testharness html/canvas/element/path-objects/2d.path.arc.twopie.3.html testharness html/canvas/element/path-objects/2d.path.arc.twopie.4.html +testharness html/canvas/element/path-objects/2d.path.arc.twopie.5.html +testharness html/canvas/element/path-objects/2d.path.arc.twopie.6.html testharness html/canvas/element/path-objects/2d.path.arc.zero.1.html testharness html/canvas/element/path-objects/2d.path.arc.zero.2.html testharness html/canvas/element/path-objects/2d.path.arc.zeroradius.html @@ -35697,7 +39463,7 @@ testharness html/canvas/element/path-objects/2d.path.rect.zero.4.html testharness html/canvas/element/path-objects/2d.path.rect.zero.5.html testharness html/canvas/element/path-objects/2d.path.rect.zero.6.html testharness html/canvas/element/path-objects/2d.path.roundrect.1.radius.dompoint.html -testharness html/canvas/element/path-objects/2d.path.roundrect.1.radius.dompoint.single argument.html +testharness html/canvas/element/path-objects/2d.path.roundrect.1.radius.dompoint.single.argument.html testharness html/canvas/element/path-objects/2d.path.roundrect.1.radius.dompointinit.html testharness html/canvas/element/path-objects/2d.path.roundrect.1.radius.dompointinit.single.argument.html testharness html/canvas/element/path-objects/2d.path.roundrect.1.radius.double.html @@ -35781,6 +39547,7 @@ testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.initial. testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.large.html testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.negative.html testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.nonfinite.html +testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.round.html testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.this.html testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.type.html testharness html/canvas/element/pixel-manipulation/2d.imageData.create2.zero.html @@ -35835,10 +39602,34 @@ testharness html/canvas/element/pixel-manipulation/2d.imageData.put.unaffected.h testharness html/canvas/element/pixel-manipulation/2d.imageData.put.unchanged.html testharness html/canvas/element/pixel-manipulation/2d.imageData.put.wrongtype.html testharness html/canvas/element/reset/2d.reset.basic.html -testharness html/canvas/element/scroll/2d.scrollPathIntoView.basic.html -testharness html/canvas/element/scroll/2d.scrollPathIntoView.path.html -testharness html/canvas/element/scroll/2d.scrollPathIntoView.verticalLR.html -testharness html/canvas/element/scroll/2d.scrollPathIntoView.verticalRL.html +testharness html/canvas/element/reset/2d.reset.state.direction.html +testharness html/canvas/element/reset/2d.reset.state.fill_style.html +testharness html/canvas/element/reset/2d.reset.state.filter.html +testharness html/canvas/element/reset/2d.reset.state.font.html +testharness html/canvas/element/reset/2d.reset.state.font_kerning.html +testharness html/canvas/element/reset/2d.reset.state.font_stretch.html +testharness html/canvas/element/reset/2d.reset.state.font_variant_caps.html +testharness html/canvas/element/reset/2d.reset.state.global_alpha.html +testharness html/canvas/element/reset/2d.reset.state.global_composite_operation.html +testharness html/canvas/element/reset/2d.reset.state.image_smoothing_enabled.html +testharness html/canvas/element/reset/2d.reset.state.image_smoothing_quality.html +testharness html/canvas/element/reset/2d.reset.state.letter_spacing.html +testharness html/canvas/element/reset/2d.reset.state.line_cap.html +testharness html/canvas/element/reset/2d.reset.state.line_dash.html +testharness html/canvas/element/reset/2d.reset.state.line_dash_offset.html +testharness html/canvas/element/reset/2d.reset.state.line_join.html +testharness html/canvas/element/reset/2d.reset.state.line_width.html +testharness html/canvas/element/reset/2d.reset.state.miter_limit.html +testharness html/canvas/element/reset/2d.reset.state.shadow_blur.html +testharness html/canvas/element/reset/2d.reset.state.shadow_color.html +testharness html/canvas/element/reset/2d.reset.state.shadow_offset_x.html +testharness html/canvas/element/reset/2d.reset.state.shadow_offset_y.html +testharness html/canvas/element/reset/2d.reset.state.stroke_style.html +testharness html/canvas/element/reset/2d.reset.state.text_align.html +testharness html/canvas/element/reset/2d.reset.state.text_baseline.html +testharness html/canvas/element/reset/2d.reset.state.text_rendering.html +testharness html/canvas/element/reset/2d.reset.state.transformation_matrix.html +testharness html/canvas/element/reset/2d.reset.state.word_spacing.html testharness html/canvas/element/shadows/2d.shadow.alpha.1.html testharness html/canvas/element/shadows/2d.shadow.alpha.2.html testharness html/canvas/element/shadows/2d.shadow.alpha.3.html @@ -35847,6 +39638,9 @@ testharness html/canvas/element/shadows/2d.shadow.alpha.5.html testharness html/canvas/element/shadows/2d.shadow.attributes.shadowBlur.initial.html testharness html/canvas/element/shadows/2d.shadow.attributes.shadowBlur.invalid.html testharness html/canvas/element/shadows/2d.shadow.attributes.shadowBlur.valid.html +testharness html/canvas/element/shadows/2d.shadow.attributes.shadowColor.current.basic.html +testharness html/canvas/element/shadows/2d.shadow.attributes.shadowColor.current.changed.html +testharness html/canvas/element/shadows/2d.shadow.attributes.shadowColor.current.removed.html testharness html/canvas/element/shadows/2d.shadow.attributes.shadowColor.initial.html testharness html/canvas/element/shadows/2d.shadow.attributes.shadowColor.invalid.html testharness html/canvas/element/shadows/2d.shadow.attributes.shadowColor.valid.html @@ -35895,34 +39689,96 @@ testharness html/canvas/element/shadows/2d.shadow.stroke.join.2.html testharness html/canvas/element/shadows/2d.shadow.stroke.join.3.html testharness html/canvas/element/shadows/2d.shadow.transform.1.html testharness html/canvas/element/shadows/2d.shadow.transform.2.html -testharness html/canvas/element/text-styles/2d.text.align.default.html -testharness html/canvas/element/text-styles/2d.text.align.invalid.html -testharness html/canvas/element/text-styles/2d.text.align.valid.html -testharness html/canvas/element/text-styles/2d.text.baseline.default.html -testharness html/canvas/element/text-styles/2d.text.baseline.invalid.html -testharness html/canvas/element/text-styles/2d.text.baseline.valid.html -testharness html/canvas/element/text-styles/2d.text.draw.baseline.alphabetic.html -testharness html/canvas/element/text-styles/2d.text.draw.baseline.bottom.html -testharness html/canvas/element/text-styles/2d.text.draw.baseline.hanging.html -testharness html/canvas/element/text-styles/2d.text.draw.baseline.ideographic.html -testharness html/canvas/element/text-styles/2d.text.draw.baseline.middle.html -testharness html/canvas/element/text-styles/2d.text.draw.baseline.top.html -testharness html/canvas/element/text-styles/2d.text.draw.space.collapse.end.html -testharness html/canvas/element/text-styles/2d.text.draw.space.collapse.other.html -testharness html/canvas/element/text-styles/2d.text.draw.space.collapse.space.html -testharness html/canvas/element/text-styles/2d.text.draw.space.collapse.start.html -testharness html/canvas/element/text-styles/2d.text.font.default.html -testharness html/canvas/element/text-styles/2d.text.font.parse.basic.html -testharness html/canvas/element/text-styles/2d.text.font.parse.complex.html -testharness html/canvas/element/text-styles/2d.text.font.parse.family.html -testharness html/canvas/element/text-styles/2d.text.font.parse.invalid.html -testharness html/canvas/element/text-styles/2d.text.font.parse.size.percentage.default.html -testharness html/canvas/element/text-styles/2d.text.font.parse.size.percentage.html -testharness html/canvas/element/text-styles/2d.text.font.parse.system.html -testharness html/canvas/element/text-styles/2d.text.font.parse.tiny.html -testharness html/canvas/element/text-styles/2d.text.font.relative_size.html -testharness html/canvas/element/text-styles/2d.text.measure.width.space.html -testharness html/canvas/element/text-styles/parent-style-relative-units.html +testharness html/canvas/element/text/2d.text.align.default.html +testharness html/canvas/element/text/2d.text.align.invalid.html +testharness html/canvas/element/text/2d.text.align.valid.html +testharness html/canvas/element/text/2d.text.baseline.default.html +testharness html/canvas/element/text/2d.text.baseline.invalid.html +testharness html/canvas/element/text/2d.text.baseline.valid.html +testharness html/canvas/element/text/2d.text.draw.align.center.html +testharness html/canvas/element/text/2d.text.draw.align.end.ltr.html +testharness html/canvas/element/text/2d.text.draw.align.end.rtl.html +testharness html/canvas/element/text/2d.text.draw.align.left.html +testharness html/canvas/element/text/2d.text.draw.align.right.html +testharness html/canvas/element/text/2d.text.draw.align.start.ltr.html +testharness html/canvas/element/text/2d.text.draw.align.start.rtl.html +testharness html/canvas/element/text/2d.text.draw.baseline.alphabetic.html +testharness html/canvas/element/text/2d.text.draw.baseline.bottom.html +testharness html/canvas/element/text/2d.text.draw.baseline.hanging.html +testharness html/canvas/element/text/2d.text.draw.baseline.ideographic.html +testharness html/canvas/element/text/2d.text.draw.baseline.middle.html +testharness html/canvas/element/text/2d.text.draw.baseline.top.html +testharness html/canvas/element/text/2d.text.draw.fill.maxWidth.NaN.html +testharness html/canvas/element/text/2d.text.draw.fill.maxWidth.bound.html +testharness html/canvas/element/text/2d.text.draw.fill.maxWidth.fontface.html +testharness html/canvas/element/text/2d.text.draw.fill.maxWidth.negative.html +testharness html/canvas/element/text/2d.text.draw.fill.maxWidth.small.html +testharness html/canvas/element/text/2d.text.draw.fill.maxWidth.zero.html +testharness html/canvas/element/text/2d.text.draw.fill.unaffected.html +testharness html/canvas/element/text/2d.text.draw.fontface.html +testharness html/canvas/element/text/2d.text.draw.fontface.notinpage.html +testharness html/canvas/element/text/2d.text.draw.fontface.repeat.html +testharness html/canvas/element/text/2d.text.draw.space.basic.html +testharness html/canvas/element/text/2d.text.draw.space.collapse.end.html +testharness html/canvas/element/text/2d.text.draw.space.collapse.nonspace.html +testharness html/canvas/element/text/2d.text.draw.space.collapse.other.html +testharness html/canvas/element/text/2d.text.draw.space.collapse.space.html +testharness html/canvas/element/text/2d.text.draw.space.collapse.start.html +testharness html/canvas/element/text/2d.text.draw.stroke.unaffected.html +testharness html/canvas/element/text/2d.text.drawing.style.absolute.spacing.html +testharness html/canvas/element/text/2d.text.drawing.style.font-relative.spacing.html +testharness html/canvas/element/text/2d.text.drawing.style.fontKerning.html +testharness html/canvas/element/text/2d.text.drawing.style.fontKerning.with.uppercase.html +testharness html/canvas/element/text/2d.text.drawing.style.fontStretch.settings.html +testharness html/canvas/element/text/2d.text.drawing.style.fontVariant.settings.html +testharness html/canvas/element/text/2d.text.drawing.style.invalid.spacing.html +testharness html/canvas/element/text/2d.text.drawing.style.letterSpacing.change.font.html +testharness html/canvas/element/text/2d.text.drawing.style.letterSpacing.measure.html +testharness html/canvas/element/text/2d.text.drawing.style.measure.direction.html +testharness html/canvas/element/text/2d.text.drawing.style.measure.rtl.text.html +testharness html/canvas/element/text/2d.text.drawing.style.measure.textAlign.html +testharness html/canvas/element/text/2d.text.drawing.style.nonfinite.spacing.html +testharness html/canvas/element/text/2d.text.drawing.style.reset.TextRendering.html +testharness html/canvas/element/text/2d.text.drawing.style.reset.fontKerning.none.html +testharness html/canvas/element/text/2d.text.drawing.style.textRendering.settings.html +testharness html/canvas/element/text/2d.text.drawing.style.wordSpacing.change.font.html +testharness html/canvas/element/text/2d.text.drawing.style.wordSpacing.measure.html +testharness html/canvas/element/text/2d.text.font.default.html +testharness html/canvas/element/text/2d.text.font.parse.basic.html +testharness html/canvas/element/text/2d.text.font.parse.complex.html +testharness html/canvas/element/text/2d.text.font.parse.complex2.html +testharness html/canvas/element/text/2d.text.font.parse.family.html +testharness html/canvas/element/text/2d.text.font.parse.invalid.html +testharness html/canvas/element/text/2d.text.font.parse.size.percentage.default.html +testharness html/canvas/element/text/2d.text.font.parse.size.percentage.html +testharness html/canvas/element/text/2d.text.font.parse.system.html +testharness html/canvas/element/text/2d.text.font.parse.tiny.html +testharness html/canvas/element/text/2d.text.font.relative_size.html +testharness html/canvas/element/text/2d.text.font.weight.html +testharness html/canvas/element/text/2d.text.fontVariantCaps2.html +testharness html/canvas/element/text/2d.text.measure.actualBoundingBox.html +testharness html/canvas/element/text/2d.text.measure.baselines.html +testharness html/canvas/element/text/2d.text.measure.caret-position-edge-cases.tentative.html +testharness html/canvas/element/text/2d.text.measure.caret-position-edges.tentative.html +testharness html/canvas/element/text/2d.text.measure.caret-position.tentative.html +testharness html/canvas/element/text/2d.text.measure.emHeights-low-ascent.html +testharness html/canvas/element/text/2d.text.measure.emHeights-zero-descent.html +testharness html/canvas/element/text/2d.text.measure.emHeights.html +testharness html/canvas/element/text/2d.text.measure.fontBoundingBox-reduced-ascent.html +testharness html/canvas/element/text/2d.text.measure.fontBoundingBox-zero-descent.html +testharness html/canvas/element/text/2d.text.measure.fontBoundingBox.ahem.html +testharness html/canvas/element/text/2d.text.measure.fontBoundingBox.html +testharness html/canvas/element/text/2d.text.measure.getActualBoundingBox-exceptions.tentative.html +testharness html/canvas/element/text/2d.text.measure.getActualBoundingBox-full-text.tentative.html +testharness html/canvas/element/text/2d.text.measure.getActualBoundingBox.tentative.html +testharness html/canvas/element/text/2d.text.measure.selection-rects-baselines.tentative.html +testharness html/canvas/element/text/2d.text.measure.selection-rects-exceptions.tentative.html +testharness html/canvas/element/text/2d.text.measure.selection-rects.tentative.html +testharness html/canvas/element/text/2d.text.measure.width.basic.html +testharness html/canvas/element/text/2d.text.measure.width.empty.html +testharness html/canvas/element/text/2d.text.measure.width.space.html +testharness html/canvas/element/text/2d.text.setFont.mathFont.html +testharness html/canvas/element/text/parent-style-relative-units.html testharness html/canvas/element/the-canvas-state/2d.state.saverestore.bitmap.html testharness html/canvas/element/the-canvas-state/2d.state.saverestore.clip.html testharness html/canvas/element/the-canvas-state/2d.state.saverestore.fillStyle.html @@ -35978,10 +39834,113 @@ testharness html/canvas/element/wide-gamut-canvas/2d.color.space.p3.toBlob.with. testharness html/canvas/element/wide-gamut-canvas/2d.color.space.p3.toDataURL.jpeg.p3.canvas.html testharness html/canvas/element/wide-gamut-canvas/2d.color.space.p3.toDataURL.p3.canvas.html testharness html/canvas/element/wide-gamut-canvas/2d.color.space.p3.toDataURL.with.putImageData.html +testharness html/canvas/historical.any.js +testharness html/canvas/historical.window.js testharness html/canvas/offscreen/2d.conformance.requirements.basics.html testharness html/canvas/offscreen/2d.conformance.requirements.basics.worker.js testharness html/canvas/offscreen/2d.conformance.requirements.missingargs.html testharness html/canvas/offscreen/2d.conformance.requirements.missingargs.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.arguments.missing.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.arguments.missing.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.casesensitive.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.casesensitive.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.emptystring.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.emptystring.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.exists.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.exists.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.extraargs.cache.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.extraargs.cache.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.extraargs.create.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.extraargs.create.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.invalid.args.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.invalid.args.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.prototype.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.prototype.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.shared.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.shared.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.exists.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.exists.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.extend.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.extend.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.prototype.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.prototype.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.replace.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.type.replace.worker.js +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.unique.html +testharness html/canvas/offscreen/canvas-context/2d.canvas.context.unique.worker.js +testharness html/canvas/offscreen/canvas-context/2d.getContext.options.any.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.color.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.color.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.2dstate.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.2dstate.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.clip.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.clip.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.different.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.different.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.gradient.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.gradient.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.path.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.path.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.pattern.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.pattern.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.same.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.same.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.transform.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.transform.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.readonly.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.readonly.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.reference.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.reference.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.default.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.default.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.idl.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.idl.set.zero.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.idl.set.zero.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.idl.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.decimal.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.decimal.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.em.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.em.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.empty.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.empty.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.exp.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.exp.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.hex.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.hex.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.junk.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.junk.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.minus.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.minus.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.octal.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.octal.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.onlyspace.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.onlyspace.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.percent.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.percent.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.plus.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.plus.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.space.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.space.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.trailingjunk.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.trailingjunk.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.whitespace.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.whitespace.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.zero.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.parse.zero.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.reflect.setidl.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.reflect.setidl.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.reflect.setidlzero.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.reflect.setidlzero.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.invalid.attributes.idl.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.invalid.attributes.idl.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.large.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.size.large.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.type.delete.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.type.delete.worker.js +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.type.name.html +testharness html/canvas/offscreen/canvas-host/2d.canvas.host.type.name.worker.js +testharness html/canvas/offscreen/compositing/2d.composite.canvas.clear.html +testharness html/canvas/offscreen/compositing/2d.composite.canvas.clear.worker.js testharness html/canvas/offscreen/compositing/2d.composite.canvas.copy.html testharness html/canvas/offscreen/compositing/2d.composite.canvas.copy.worker.js testharness html/canvas/offscreen/compositing/2d.composite.canvas.destination-atop.html @@ -36004,6 +39963,8 @@ testharness html/canvas/offscreen/compositing/2d.composite.canvas.source-over.ht testharness html/canvas/offscreen/compositing/2d.composite.canvas.source-over.worker.js testharness html/canvas/offscreen/compositing/2d.composite.canvas.xor.html testharness html/canvas/offscreen/compositing/2d.composite.canvas.xor.worker.js +testharness html/canvas/offscreen/compositing/2d.composite.clip.clear.html +testharness html/canvas/offscreen/compositing/2d.composite.clip.clear.worker.js testharness html/canvas/offscreen/compositing/2d.composite.clip.copy.html testharness html/canvas/offscreen/compositing/2d.composite.clip.copy.worker.js testharness html/canvas/offscreen/compositing/2d.composite.clip.destination-atop.html @@ -36044,6 +40005,8 @@ testharness html/canvas/offscreen/compositing/2d.composite.globalAlpha.invalid.h testharness html/canvas/offscreen/compositing/2d.composite.globalAlpha.invalid.worker.js testharness html/canvas/offscreen/compositing/2d.composite.globalAlpha.range.html testharness html/canvas/offscreen/compositing/2d.composite.globalAlpha.range.worker.js +testharness html/canvas/offscreen/compositing/2d.composite.image.clear.html +testharness html/canvas/offscreen/compositing/2d.composite.image.clear.worker.js testharness html/canvas/offscreen/compositing/2d.composite.image.copy.html testharness html/canvas/offscreen/compositing/2d.composite.image.copy.worker.js testharness html/canvas/offscreen/compositing/2d.composite.image.destination-atop.html @@ -36084,6 +40047,8 @@ testharness html/canvas/offscreen/compositing/2d.composite.operation.over.html testharness html/canvas/offscreen/compositing/2d.composite.operation.over.worker.js testharness html/canvas/offscreen/compositing/2d.composite.operation.unrecognised.html testharness html/canvas/offscreen/compositing/2d.composite.operation.unrecognised.worker.js +testharness html/canvas/offscreen/compositing/2d.composite.solid.clear.html +testharness html/canvas/offscreen/compositing/2d.composite.solid.clear.worker.js testharness html/canvas/offscreen/compositing/2d.composite.solid.copy.html testharness html/canvas/offscreen/compositing/2d.composite.solid.copy.worker.js testharness html/canvas/offscreen/compositing/2d.composite.solid.destination-atop.html @@ -36106,6 +40071,8 @@ testharness html/canvas/offscreen/compositing/2d.composite.solid.source-over.htm testharness html/canvas/offscreen/compositing/2d.composite.solid.source-over.worker.js testharness html/canvas/offscreen/compositing/2d.composite.solid.xor.html testharness html/canvas/offscreen/compositing/2d.composite.solid.xor.worker.js +testharness html/canvas/offscreen/compositing/2d.composite.transparent.clear.html +testharness html/canvas/offscreen/compositing/2d.composite.transparent.clear.worker.js testharness html/canvas/offscreen/compositing/2d.composite.transparent.copy.html testharness html/canvas/offscreen/compositing/2d.composite.transparent.copy.worker.js testharness html/canvas/offscreen/compositing/2d.composite.transparent.destination-atop.html @@ -36188,8 +40155,6 @@ testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg.sourcesize.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.alpha.html testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.alpha.worker.js -testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.animated.poster.html -testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.animated.poster.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.broken.html testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.broken.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.canvas.html @@ -36219,7 +40184,6 @@ testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.self testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.self.2.html testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.self.2.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.svg.html -testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.svg.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.transform.html testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.transform.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.wrongtype.html @@ -36228,7 +40192,6 @@ testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zero testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zerocanvas.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zerosource.html testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zerosource.image.html -testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zerosource.image.worker.js testharness html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zerosource.worker.js testharness html/canvas/offscreen/drawing-rectangles-to-the-canvas/2d.clearRect.basic.html testharness html/canvas/offscreen/drawing-rectangles-to-the-canvas/2d.clearRect.basic.worker.js @@ -36295,6 +40258,9 @@ testharness html/canvas/offscreen/drawing-rectangles-to-the-canvas/2d.strokeRect testharness html/canvas/offscreen/drawing-rectangles-to-the-canvas/2d.strokeRect.zero.5.html testharness html/canvas/offscreen/drawing-rectangles-to-the-canvas/2d.strokeRect.zero.5.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.CSSHSL.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.CSSRGB.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.colormix.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.colormix.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.default.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.default.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.html @@ -36397,6 +40363,8 @@ testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl- testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-3.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-4.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-4.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-negative-saturation.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-negative-saturation.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-1.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-1.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-2.html @@ -36413,6 +40381,12 @@ testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-5.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-6.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-6.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-1.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-1.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-2.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-2.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-negative-saturation.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-negative-saturation.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.html4.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.html4.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.invalid.css-color-4-hsl-1.html @@ -36585,10 +40559,14 @@ testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fill.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillRect.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillRect.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillText.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillText.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.stroke.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.stroke.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.strokeRect.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.strokeRect.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.strokeText.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.strokeText.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.linear.nonfinite.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.linear.nonfinite.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.linear.transform.1.html @@ -36605,6 +40583,10 @@ testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.inva testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.invalidcolor.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.invalidoffset.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.invalidoffset.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.return.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.return.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.type.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.type.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.update.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.object.update.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.radial.cone.behind.html @@ -36659,6 +40641,8 @@ testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.image. testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.image.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.nocontext.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.nocontext.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.type.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.type.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.zerocanvas.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.zerocanvas.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.crosscanvas.html @@ -36723,30 +40707,79 @@ testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.repeat.unrec testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.repeat.unrecognised.worker.js testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.repeat.unrecognisednull.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.repeat.unrecognisednull.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.transform.identity.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.transform.identity.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.transform.infinity.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.transform.infinity.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.transform.invalid.html +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.transform.invalid.worker.js +testharness html/canvas/offscreen/fill-and-stroke-styles/2d.strokeStyle.colormix.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.strokeStyle.default.html testharness html/canvas/offscreen/fill-and-stroke-styles/2d.strokeStyle.default.worker.js testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.blur.exceptions.tentative.html testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.blur.exceptions.tentative.worker.js testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.colorMatrix.tentative.html testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.colorMatrix.tentative.worker.js -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.worker.js -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.worker.js -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.worker.js -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.worker.js -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.html -testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.worker.js testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.html testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.worker.js +testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.html +testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.worker.js testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.tentative.html testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.tentative.worker.js testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.html testharness html/canvas/offscreen/filters/2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.worker.js +testharness html/canvas/offscreen/filters/2d.filter.layers.blur.exceptions.html +testharness html/canvas/offscreen/filters/2d.filter.layers.blur.exceptions.worker.js +testharness html/canvas/offscreen/filters/2d.filter.layers.colorMatrix.html +testharness html/canvas/offscreen/filters/2d.filter.layers.colorMatrix.worker.js +testharness html/canvas/offscreen/filters/2d.filter.layers.convolveMatrix.exceptions.html +testharness html/canvas/offscreen/filters/2d.filter.layers.convolveMatrix.exceptions.worker.js +testharness html/canvas/offscreen/filters/2d.filter.layers.dropShadow.exceptions.html +testharness html/canvas/offscreen/filters/2d.filter.layers.dropShadow.exceptions.worker.js +testharness html/canvas/offscreen/filters/2d.filter.layers.turbulence.inputTypes.html +testharness html/canvas/offscreen/filters/2d.filter.layers.turbulence.inputTypes.worker.js testharness html/canvas/offscreen/filters/2d.filter.value.html testharness html/canvas/offscreen/filters/2d.filter.value.worker.js +testharness html/canvas/offscreen/layers/2d.layer.beginLayer-options.html +testharness html/canvas/offscreen/layers/2d.layer.beginLayer-options.worker.js +testharness html/canvas/offscreen/layers/2d.layer.ctm.getTransform.html +testharness html/canvas/offscreen/layers/2d.layer.ctm.getTransform.worker.js +testharness html/canvas/offscreen/layers/2d.layer.exceptions-are-no-op.html +testharness html/canvas/offscreen/layers/2d.layer.exceptions-are-no-op.worker.js +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-reset-endLayer.html +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-reset-endLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-restore.html +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-restore.worker.js +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-save-endLayer.html +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-save-endLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.endLayer.html +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.endLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.save-beginLayer-restore.html +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.save-beginLayer-restore.worker.js +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.save-endLayer.html +testharness html/canvas/offscreen/layers/2d.layer.invalid-calls.save-endLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.layer-rendering-state-reset-in-layer.html +testharness html/canvas/offscreen/layers/2d.layer.layer-rendering-state-reset-in-layer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.malformed-operations-with-promises.html +testharness html/canvas/offscreen/layers/2d.layer.malformed-operations-with-promises.worker.js +testharness html/canvas/offscreen/layers/2d.layer.malformed-operations.html +testharness html/canvas/offscreen/layers/2d.layer.malformed-operations.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.beginLayer-endLayer.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.beginLayer-endLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.beginLayer-save.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.beginLayer-save.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.beginLayer.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.beginLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.restore.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.restore.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save-beginLayer.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save-beginLayer.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save_reset_restore.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save_reset_restore.worker.js +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save_restore.html +testharness html/canvas/offscreen/layers/2d.layer.valid-calls.save_restore.worker.js testharness html/canvas/offscreen/line-styles/2d.line.cap.butt.html testharness html/canvas/offscreen/line-styles/2d.line.cap.butt.worker.js testharness html/canvas/offscreen/line-styles/2d.line.cap.closed.html @@ -36765,6 +40798,8 @@ testharness html/canvas/offscreen/line-styles/2d.line.cross.html testharness html/canvas/offscreen/line-styles/2d.line.cross.worker.js testharness html/canvas/offscreen/line-styles/2d.line.defaults.html testharness html/canvas/offscreen/line-styles/2d.line.defaults.worker.js +testharness html/canvas/offscreen/line-styles/2d.line.fill.noop.html +testharness html/canvas/offscreen/line-styles/2d.line.fill.noop.worker.js testharness html/canvas/offscreen/line-styles/2d.line.invalid.strokestyle.html testharness html/canvas/offscreen/line-styles/2d.line.invalid.strokestyle.worker.js testharness html/canvas/offscreen/line-styles/2d.line.join.bevel.html @@ -36819,8 +40854,6 @@ testharness html/canvas/offscreen/manual/filter/offscreencanvas.filter.html testharness html/canvas/offscreen/manual/filter/offscreencanvas.filter.w.html testharness html/canvas/offscreen/manual/image-smoothing/image.smoothing.html testharness html/canvas/offscreen/manual/image-smoothing/image.smoothing.worker.js -testharness html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html -testharness html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.w.html testharness html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.constructor.html testharness html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.constructor.worker.js testharness html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.getcontext.html @@ -36886,6 +40919,10 @@ testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.3.html testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.3.worker.js testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.4.html testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.4.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.5.html +testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.5.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.6.html +testharness html/canvas/offscreen/path-objects/2d.path.arc.twopie.6.worker.js testharness html/canvas/offscreen/path-objects/2d.path.arc.zero.1.html testharness html/canvas/offscreen/path-objects/2d.path.arc.zero.1.worker.js testharness html/canvas/offscreen/path-objects/2d.path.arc.zero.2.html @@ -36960,6 +40997,8 @@ testharness html/canvas/offscreen/path-objects/2d.path.closePath.newline.html testharness html/canvas/offscreen/path-objects/2d.path.closePath.newline.worker.js testharness html/canvas/offscreen/path-objects/2d.path.closePath.nextpoint.html testharness html/canvas/offscreen/path-objects/2d.path.closePath.nextpoint.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.ellipse.basics.html +testharness html/canvas/offscreen/path-objects/2d.path.ellipse.basics.worker.js testharness html/canvas/offscreen/path-objects/2d.path.fill.closed.basic.html testharness html/canvas/offscreen/path-objects/2d.path.fill.closed.basic.worker.js testharness html/canvas/offscreen/path-objects/2d.path.fill.closed.unaffected.html @@ -36982,6 +41021,8 @@ testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.basic.1.htm testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.basic.1.worker.js testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.basic.2.html testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.basic.2.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.basic.html +testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.basic.worker.js testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.bezier.html testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.bezier.worker.js testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.bigarc.html @@ -37010,6 +41051,12 @@ testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.winding.htm testharness html/canvas/offscreen/path-objects/2d.path.isPointInPath.winding.worker.js testharness html/canvas/offscreen/path-objects/2d.path.isPointInStroke.basic.html testharness html/canvas/offscreen/path-objects/2d.path.isPointInStroke.basic.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.isPointInStroke.scaleddashes.html +testharness html/canvas/offscreen/path-objects/2d.path.isPointInStroke.scaleddashes.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.isPointInpath.invalid.html +testharness html/canvas/offscreen/path-objects/2d.path.isPointInpath.invalid.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.isPointInpath.multi.path.html +testharness html/canvas/offscreen/path-objects/2d.path.isPointInpath.multi.path.worker.js testharness html/canvas/offscreen/path-objects/2d.path.lineTo.basic.html testharness html/canvas/offscreen/path-objects/2d.path.lineTo.basic.worker.js testharness html/canvas/offscreen/path-objects/2d.path.lineTo.ensuresubpath.1.html @@ -37073,10 +41120,16 @@ testharness html/canvas/offscreen/path-objects/2d.path.rect.zero.5.worker.js testharness html/canvas/offscreen/path-objects/2d.path.rect.zero.6.html testharness html/canvas/offscreen/path-objects/2d.path.rect.zero.6.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.single.argument.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.single.argument.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompointinit.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompointinit.single.argument.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompointinit.single.argument.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompointinit.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.double.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.double.single.argument.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.double.single.argument.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.double.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.2.radii.1.dompoint.html testharness html/canvas/offscreen/path-objects/2d.path.roundrect.2.radii.1.dompoint.worker.js @@ -37132,6 +41185,8 @@ testharness html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.4.dompo testharness html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.4.dompointinit.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.4.double.html testharness html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.4.double.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.badinput.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.badinput.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.closed.html testharness html/canvas/offscreen/path-objects/2d.path.roundrect.closed.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.end.1.html @@ -37154,6 +41209,8 @@ testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.intersec testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.intersecting.2.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.negative.html testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.negative.worker.js +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.noargument.html +testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.noargument.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.none.html testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.none.worker.js testharness html/canvas/offscreen/path-objects/2d.path.roundrect.radius.toomany.html @@ -37214,6 +41271,8 @@ testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create1.zero.h testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create1.zero.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.basic.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.basic.worker.js +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.double.html +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.double.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.initial.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.initial.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.create2.large.html @@ -37230,6 +41289,12 @@ testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.basic.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.basic.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.clamp.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.clamp.worker.js +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.double.html +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.double.worker.js +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.invalid.html +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.invalid.worker.js +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.large.crash.html +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.large.crash.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.length.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.length.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.nonfinite.html @@ -37246,6 +41311,8 @@ testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.order.rows testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.order.rows.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.range.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.range.worker.js +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.rounding.html +testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.rounding.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.source.negative.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.source.negative.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.get.source.outside.html @@ -37306,6 +41373,64 @@ testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.put.unchanged. testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.put.unchanged.worker.js testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.put.wrongtype.html testharness html/canvas/offscreen/pixel-manipulation/2d.imageData.put.wrongtype.worker.js +testharness html/canvas/offscreen/reset/2d.reset.basic.html +testharness html/canvas/offscreen/reset/2d.reset.basic.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.direction.html +testharness html/canvas/offscreen/reset/2d.reset.state.direction.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.fill_style.html +testharness html/canvas/offscreen/reset/2d.reset.state.fill_style.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.filter.html +testharness html/canvas/offscreen/reset/2d.reset.state.filter.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.font.html +testharness html/canvas/offscreen/reset/2d.reset.state.font.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.font_kerning.html +testharness html/canvas/offscreen/reset/2d.reset.state.font_kerning.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.font_stretch.html +testharness html/canvas/offscreen/reset/2d.reset.state.font_stretch.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.font_variant_caps.html +testharness html/canvas/offscreen/reset/2d.reset.state.font_variant_caps.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.global_alpha.html +testharness html/canvas/offscreen/reset/2d.reset.state.global_alpha.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.global_composite_operation.html +testharness html/canvas/offscreen/reset/2d.reset.state.global_composite_operation.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.image_smoothing_enabled.html +testharness html/canvas/offscreen/reset/2d.reset.state.image_smoothing_enabled.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.image_smoothing_quality.html +testharness html/canvas/offscreen/reset/2d.reset.state.image_smoothing_quality.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.letter_spacing.html +testharness html/canvas/offscreen/reset/2d.reset.state.letter_spacing.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.line_cap.html +testharness html/canvas/offscreen/reset/2d.reset.state.line_cap.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.line_dash.html +testharness html/canvas/offscreen/reset/2d.reset.state.line_dash.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.line_dash_offset.html +testharness html/canvas/offscreen/reset/2d.reset.state.line_dash_offset.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.line_join.html +testharness html/canvas/offscreen/reset/2d.reset.state.line_join.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.line_width.html +testharness html/canvas/offscreen/reset/2d.reset.state.line_width.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.miter_limit.html +testharness html/canvas/offscreen/reset/2d.reset.state.miter_limit.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_blur.html +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_blur.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_color.html +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_color.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_offset_x.html +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_offset_x.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_offset_y.html +testharness html/canvas/offscreen/reset/2d.reset.state.shadow_offset_y.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.stroke_style.html +testharness html/canvas/offscreen/reset/2d.reset.state.stroke_style.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.text_align.html +testharness html/canvas/offscreen/reset/2d.reset.state.text_align.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.text_baseline.html +testharness html/canvas/offscreen/reset/2d.reset.state.text_baseline.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.text_rendering.html +testharness html/canvas/offscreen/reset/2d.reset.state.text_rendering.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.transformation_matrix.html +testharness html/canvas/offscreen/reset/2d.reset.state.transformation_matrix.worker.js +testharness html/canvas/offscreen/reset/2d.reset.state.word_spacing.html +testharness html/canvas/offscreen/reset/2d.reset.state.word_spacing.worker.js testharness html/canvas/offscreen/shadows/2d.shadow.alpha.1.html testharness html/canvas/offscreen/shadows/2d.shadow.alpha.1.worker.js testharness html/canvas/offscreen/shadows/2d.shadow.alpha.2.html @@ -37490,10 +41615,16 @@ testharness html/canvas/offscreen/text/2d.text.draw.space.collapse.start.html testharness html/canvas/offscreen/text/2d.text.draw.space.collapse.start.worker.js testharness html/canvas/offscreen/text/2d.text.draw.stroke.unaffected.html testharness html/canvas/offscreen/text/2d.text.draw.stroke.unaffected.worker.js +testharness html/canvas/offscreen/text/2d.text.drawing.style.absolute.spacing.html +testharness html/canvas/offscreen/text/2d.text.drawing.style.absolute.spacing.worker.js +testharness html/canvas/offscreen/text/2d.text.drawing.style.font-relative.spacing.html +testharness html/canvas/offscreen/text/2d.text.drawing.style.font-relative.spacing.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.fontKerning.html testharness html/canvas/offscreen/text/2d.text.drawing.style.fontKerning.with.uppercase.html testharness html/canvas/offscreen/text/2d.text.drawing.style.fontKerning.with.uppercase.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.fontKerning.worker.js +testharness html/canvas/offscreen/text/2d.text.drawing.style.fontStretch.settings.html +testharness html/canvas/offscreen/text/2d.text.drawing.style.fontStretch.settings.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.fontVariant.settings.html testharness html/canvas/offscreen/text/2d.text.drawing.style.fontVariant.settings.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.invalid.spacing.html @@ -37510,8 +41641,10 @@ testharness html/canvas/offscreen/text/2d.text.drawing.style.measure.textAlign.h testharness html/canvas/offscreen/text/2d.text.drawing.style.measure.textAlign.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.nonfinite.spacing.html testharness html/canvas/offscreen/text/2d.text.drawing.style.nonfinite.spacing.worker.js -testharness html/canvas/offscreen/text/2d.text.drawing.style.spacing.html -testharness html/canvas/offscreen/text/2d.text.drawing.style.spacing.worker.js +testharness html/canvas/offscreen/text/2d.text.drawing.style.reset.TextRendering.html +testharness html/canvas/offscreen/text/2d.text.drawing.style.reset.TextRendering.worker.js +testharness html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none.html +testharness html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.textRendering.settings.html testharness html/canvas/offscreen/text/2d.text.drawing.style.textRendering.settings.worker.js testharness html/canvas/offscreen/text/2d.text.drawing.style.wordSpacing.change.font.html @@ -37524,6 +41657,8 @@ testharness html/canvas/offscreen/text/2d.text.font.parse.basic.html testharness html/canvas/offscreen/text/2d.text.font.parse.basic.worker.js testharness html/canvas/offscreen/text/2d.text.font.parse.complex.html testharness html/canvas/offscreen/text/2d.text.font.parse.complex.worker.js +testharness html/canvas/offscreen/text/2d.text.font.parse.complex2.html +testharness html/canvas/offscreen/text/2d.text.font.parse.complex2.worker.js testharness html/canvas/offscreen/text/2d.text.font.parse.family.html testharness html/canvas/offscreen/text/2d.text.font.parse.family.worker.js testharness html/canvas/offscreen/text/2d.text.font.parse.invalid.html @@ -37534,16 +41669,44 @@ testharness html/canvas/offscreen/text/2d.text.font.parse.tiny.html testharness html/canvas/offscreen/text/2d.text.font.parse.tiny.worker.js testharness html/canvas/offscreen/text/2d.text.font.relative_size.html testharness html/canvas/offscreen/text/2d.text.font.relative_size.worker.js +testharness html/canvas/offscreen/text/2d.text.font.weight.html +testharness html/canvas/offscreen/text/2d.text.font.weight.worker.js +testharness html/canvas/offscreen/text/2d.text.fontVariantCaps2.html +testharness html/canvas/offscreen/text/2d.text.fontVariantCaps2.worker.js testharness html/canvas/offscreen/text/2d.text.measure.actualBoundingBox.html testharness html/canvas/offscreen/text/2d.text.measure.actualBoundingBox.worker.js -testharness html/canvas/offscreen/text/2d.text.measure.advances.html -testharness html/canvas/offscreen/text/2d.text.measure.advances.worker.js testharness html/canvas/offscreen/text/2d.text.measure.baselines.html testharness html/canvas/offscreen/text/2d.text.measure.baselines.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.caret-position-edge-cases.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.caret-position-edge-cases.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.caret-position-edges.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.caret-position-edges.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.caret-position.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.emHeights-low-ascent.html +testharness html/canvas/offscreen/text/2d.text.measure.emHeights-low-ascent.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.emHeights-zero-descent.html +testharness html/canvas/offscreen/text/2d.text.measure.emHeights-zero-descent.worker.js testharness html/canvas/offscreen/text/2d.text.measure.emHeights.html testharness html/canvas/offscreen/text/2d.text.measure.emHeights.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox-reduced-ascent.html +testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox-reduced-ascent.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox-zero-descent.html +testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox-zero-descent.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox.ahem.html +testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox.ahem.worker.js testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox.html testharness html/canvas/offscreen/text/2d.text.measure.fontBoundingBox.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox-exceptions.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox-exceptions.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox-full-text.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox-full-text.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.selection-rects-baselines.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.selection-rects-baselines.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.selection-rects-exceptions.tentative.html +testharness html/canvas/offscreen/text/2d.text.measure.selection-rects-exceptions.tentative.worker.js +testharness html/canvas/offscreen/text/2d.text.measure.selection-rects.tentative.html testharness html/canvas/offscreen/text/2d.text.measure.width.basic.html testharness html/canvas/offscreen/text/2d.text.measure.width.basic.worker.js testharness html/canvas/offscreen/text/2d.text.measure.width.empty.html @@ -37590,95 +41753,6 @@ testharness html/canvas/offscreen/the-canvas-state/2d.state.saverestore.transfor testharness html/canvas/offscreen/the-canvas-state/2d.state.saverestore.transformation.worker.js testharness html/canvas/offscreen/the-canvas-state/2d.state.saverestore.underflow.html testharness html/canvas/offscreen/the-canvas-state/2d.state.saverestore.underflow.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d-getcontext-options.any.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.canvas.readonly.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.canvas.readonly.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.canvas.reference.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.canvas.reference.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.exists.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.exists.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.extraargs.cache.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.extraargs.cache.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.extraargs.create.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.extraargs.create.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.shared.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.shared.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.unique.html -testharness html/canvas/offscreen/the-offscreen-canvas/2d.getcontext.unique.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.arguments.missing.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.arguments.missing.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.casesensitive.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.casesensitive.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.emptystring.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.emptystring.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.badname.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.badname.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.badsuffix.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.badsuffix.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.nullsuffix.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.nullsuffix.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.unicode.html -testharness html/canvas/offscreen/the-offscreen-canvas/context.unrecognised.unicode.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.color.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.color.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.2dstate.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.2dstate.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.clip.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.clip.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.different.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.different.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.gradient.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.gradient.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.path.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.path.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.pattern.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.pattern.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.same.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.same.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.transform.html -testharness html/canvas/offscreen/the-offscreen-canvas/initial.reset.transform.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.default.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.default.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.idl.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.idl.set.zero.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.idl.set.zero.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.idl.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.decimal.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.decimal.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.em.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.em.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.empty.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.empty.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.exp.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.exp.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.hex.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.hex.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.junk.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.junk.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.minus.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.minus.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.octal.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.octal.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.onlyspace.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.onlyspace.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.percent.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.percent.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.plus.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.plus.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.space.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.space.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.trailingjunk.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.trailingjunk.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.whitespace.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.whitespace.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.zero.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.parse.zero.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.reflect.setidl.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.reflect.setidl.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.reflect.setidlzero.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.attributes.reflect.setidlzero.worker.js -testharness html/canvas/offscreen/the-offscreen-canvas/size.large.html -testharness html/canvas/offscreen/the-offscreen-canvas/size.large.worker.js testharness html/canvas/offscreen/transformations/2d.transformation.order.html testharness html/canvas/offscreen/transformations/2d.transformation.order.worker.js testharness html/canvas/offscreen/transformations/2d.transformation.rotate.direction.html @@ -37749,6 +41823,7 @@ testharness html/cross-origin-embedder-policy/credentialless/dedicated-worker.ht testharness html/cross-origin-embedder-policy/credentialless/fetch.https.window.js testharness html/cross-origin-embedder-policy/credentialless/iframe-coep-credentialless.https.window.js testharness html/cross-origin-embedder-policy/credentialless/iframe-coep-none.https.window.js +testharness html/cross-origin-embedder-policy/credentialless/iframe-coep-redirect.https.window.js testharness html/cross-origin-embedder-policy/credentialless/iframe-coep-require-corp.https.window.js testharness html/cross-origin-embedder-policy/credentialless/iframe.window.js testharness html/cross-origin-embedder-policy/credentialless/image.https.window.js @@ -37762,6 +41837,7 @@ testharness html/cross-origin-embedder-policy/credentialless/service-worker-coep testharness html/cross-origin-embedder-policy/credentialless/service-worker.https.window.js testharness html/cross-origin-embedder-policy/credentialless/shared-worker.https.window.js testharness html/cross-origin-embedder-policy/credentialless/video.https.window.js +testharness html/cross-origin-embedder-policy/credentialless/websocket.https.window.js testharness html/cross-origin-embedder-policy/cross-origin-isolated-permission-iframe.https.window.js testharness html/cross-origin-embedder-policy/cross-origin-isolated-permission-worker.https.window.js testharness html/cross-origin-embedder-policy/data.https.html @@ -37913,8 +41989,16 @@ testharness html/cross-origin-opener-policy/reporting/navigation-reporting/repor testharness html/cross-origin-opener-policy/reporting/navigation-reporting/reporting-popup-same-origin.https.html testharness html/cross-origin-opener-policy/reporting/navigation-reporting/reporting-popup-unsafe-none-report-to.https.html testharness html/cross-origin-opener-policy/reporting/navigation-reporting/reporting-redirect-with-same-origin-allow-popups.https.html +testharness html/cross-origin-opener-policy/reporting/tentative/access-to-noopener-page-from-no-coop-ro.https.html testharness html/cross-origin-opener-policy/resource-popup.https.html +testharness html/cross-origin-opener-policy/tentative/noopener/coop-noopener-allow-popups-restrict-properties.https.html +testharness html/cross-origin-opener-policy/tentative/noopener/coop-noopener-allow-popups.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/access-reporting-closed.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/access-reporting-openee-rp-ro.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/access-reporting-opener-rp-ro.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/access-reporting-post-message.https.html testharness html/cross-origin-opener-policy/tentative/restrict-properties/coop-rp-in-navigation-chain.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-about-blank.https.window.js testharness html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-so.https.html testharness html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-soap.https.html testharness html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html @@ -37927,7 +42011,17 @@ testharness html/cross-origin-opener-policy/tentative/restrict-properties/popup- testharness html/cross-origin-opener-policy/tentative/restrict-properties/popup-with-cross-origin.https.html testharness html/cross-origin-opener-policy/tentative/restrict-properties/popup-with-same-origin.https.html testharness html/cross-origin-opener-policy/tentative/restrict-properties/popup-with-same-site.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/reporting-bcg-reuse.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/reporting-from-rp-ro.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/reporting-from-rp.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/reporting-to-rp-ro.https.html +testharness html/cross-origin-opener-policy/tentative/restrict-properties/reporting-to-rp.https.html +testharness html/document-isolation-policy/isolate-and-require-corp-load-from-cache-storage.tentative.https.html +testharness html/document-isolation-policy/isolate-and-require-corp.tentative.https.html +testharness html/document-isolation-policy/no-secure-context.tentative.html +testharness html/document-isolation-policy/shared-workers.tentative.https.html testharness html/dom/aria-attribute-reflection.html +testharness html/dom/aria-element-reflection-disconnected.html testharness html/dom/aria-element-reflection.html testharness html/dom/documents/dom-tree-accessors/Document.body.html testharness html/dom/documents/dom-tree-accessors/Document.currentScript.html @@ -37987,6 +42081,7 @@ testharness html/dom/documents/resource-metadata-management/document-lastModifie testharness html/dom/documents/resource-metadata-management/document-readyState.html testharness html/dom/elements/elements-in-the-dom/historical.html testharness html/dom/elements/elements-in-the-dom/unknown-element.html +testharness html/dom/elements/global-attributes/cdata-dir_auto.html testharness html/dom/elements/global-attributes/classlist-nonstring.html testharness html/dom/elements/global-attributes/custom-attrs.html testharness html/dom/elements/global-attributes/data_unicode_attr.html @@ -37997,14 +42092,24 @@ testharness html/dom/elements/global-attributes/dataset-get.html testharness html/dom/elements/global-attributes/dataset-prototype.html testharness html/dom/elements/global-attributes/dataset-set.html testharness html/dom/elements/global-attributes/dataset.html +testharness html/dom/elements/global-attributes/dir-assorted.window.js testharness html/dom/elements/global-attributes/dir-auto-div-append-child.html +testharness html/dom/elements/global-attributes/dir-auto-dynamic-changes.window.js +testharness html/dom/elements/global-attributes/dir-auto-form-associated.window.js testharness html/dom/elements/global-attributes/dir-bdi-script.html -testharness html/dom/elements/global-attributes/dir-slots-directionality.tentative.html +testharness html/dom/elements/global-attributes/dir-slots-directionality.html testharness html/dom/elements/global-attributes/document-dir.html testharness html/dom/elements/global-attributes/id-attribute.html testharness html/dom/elements/global-attributes/id-name-specialcase.html testharness html/dom/elements/global-attributes/id-name.html +testharness html/dom/elements/global-attributes/lang-attribute-shadow.window.js +testharness html/dom/elements/global-attributes/lang-attribute.window.js testharness html/dom/elements/global-attributes/mapped-attribute-adopt-001.html +testharness html/dom/elements/global-attributes/the-anchor-attribute-001.tentative.html +testharness html/dom/elements/global-attributes/the-anchor-attribute-002.tentative.html +testharness html/dom/elements/global-attributes/the-anchor-attribute-003.tentative.html +testharness html/dom/elements/global-attributes/the-anchor-attribute-004.tentative.html +testharness html/dom/elements/global-attributes/the-anchor-attribute-xml.tentative.html testharness html/dom/elements/global-attributes/the-lang-attribute-001.html testharness html/dom/elements/global-attributes/the-lang-attribute-002.html testharness html/dom/elements/global-attributes/the-lang-attribute-003.html @@ -38046,24 +42151,65 @@ testharness html/dom/reflection-obsolete.html testharness html/dom/reflection-sections.html testharness html/dom/reflection-tabular.html testharness html/dom/reflection-text.html -testharness html/dom/render-blocking/blocking-idl-attr.tentative.html +testharness html/dom/render-blocking/blocking-idl-attr.html +testharness html/dom/render-blocking/element-render-blocking-001.html +testharness html/dom/render-blocking/element-render-blocking-002.html +testharness html/dom/render-blocking/element-render-blocking-003.html +testharness html/dom/render-blocking/element-render-blocking-004.html +testharness html/dom/render-blocking/element-render-blocking-005.html +testharness html/dom/render-blocking/element-render-blocking-006.html +testharness html/dom/render-blocking/element-render-blocking-007.html +testharness html/dom/render-blocking/element-render-blocking-008.html +testharness html/dom/render-blocking/element-render-blocking-009.html +testharness html/dom/render-blocking/element-render-blocking-010.html +testharness html/dom/render-blocking/element-render-blocking-011.html +testharness html/dom/render-blocking/element-render-blocking-012.html +testharness html/dom/render-blocking/element-render-blocking-013.html +testharness html/dom/render-blocking/element-render-blocking-014.html +testharness html/dom/render-blocking/element-render-blocking-015.html +testharness html/dom/render-blocking/element-render-blocking-016.html +testharness html/dom/render-blocking/element-render-blocking-017.html +testharness html/dom/render-blocking/element-render-blocking-018.html +testharness html/dom/render-blocking/element-render-blocking-019.html +testharness html/dom/render-blocking/element-render-blocking-020.html +testharness html/dom/render-blocking/element-render-blocking-021.html +testharness html/dom/render-blocking/element-render-blocking-022.html +testharness html/dom/render-blocking/element-render-blocking-023.html +testharness html/dom/render-blocking/element-render-blocking-024.html +testharness html/dom/render-blocking/element-render-blocking-025.html +testharness html/dom/render-blocking/element-render-blocking-026.html +testharness html/dom/render-blocking/element-render-blocking-027.html +testharness html/dom/render-blocking/element-render-blocking-028.html +testharness html/dom/render-blocking/element-render-blocking-029.html +testharness html/dom/render-blocking/element-render-blocking-030.html +testharness html/dom/render-blocking/element-render-blocking-031.html +testharness html/dom/render-blocking/element-render-blocking-032.html +testharness html/dom/render-blocking/element-render-blocking-033.html +testharness html/dom/render-blocking/element-render-blocking-034.html +testharness html/dom/render-blocking/element-render-blocking-035.html +testharness html/dom/render-blocking/element-render-blocking-036.html +testharness html/dom/render-blocking/element-render-blocking-037.html +testharness html/dom/render-blocking/element-render-blocking-038.html testharness html/dom/render-blocking/non-render-blocking-scripts.optional.html -testharness html/dom/render-blocking/parser-blocking-script.tentative.html -testharness html/dom/render-blocking/parser-inserted-async-script.tentative.html -testharness html/dom/render-blocking/parser-inserted-defer-script.tentative.html -testharness html/dom/render-blocking/parser-inserted-module-script.tentative.html -testharness html/dom/render-blocking/parser-inserted-style-element.tentative.html -testharness html/dom/render-blocking/parser-inserted-stylesheet-link.tentative.html -testharness html/dom/render-blocking/remove-attr-script-keeps-blocking.tentative.html -testharness html/dom/render-blocking/remove-attr-style-keeps-blocking.tentative.html -testharness html/dom/render-blocking/remove-attr-stylesheet-link-keeps-blocking.tentative.html +testharness html/dom/render-blocking/parser-blocking-script.html +testharness html/dom/render-blocking/parser-inserted-async-inline-module-with-import.html +testharness html/dom/render-blocking/parser-inserted-async-script.html +testharness html/dom/render-blocking/parser-inserted-defer-script.html +testharness html/dom/render-blocking/parser-inserted-inline-module-with-import.html +testharness html/dom/render-blocking/parser-inserted-module-script.html +testharness html/dom/render-blocking/parser-inserted-style-element.html +testharness html/dom/render-blocking/parser-inserted-stylesheet-link.html +testharness html/dom/render-blocking/remove-attr-script-keeps-blocking.html +testharness html/dom/render-blocking/remove-attr-style-keeps-blocking.html +testharness html/dom/render-blocking/remove-attr-stylesheet-link-keeps-blocking.html testharness html/dom/render-blocking/remove-attr-unblocks-rendering.optional.html testharness html/dom/render-blocking/remove-element-unblocks-rendering.optional.html testharness html/dom/render-blocking/remove-pending-async-render-blocking-script.html -testharness html/dom/render-blocking/script-inserted-module-script.tentative.html +testharness html/dom/render-blocking/script-inserted-inline-module-with-import.html +testharness html/dom/render-blocking/script-inserted-module-script.html testharness html/dom/render-blocking/script-inserted-script.html -testharness html/dom/render-blocking/script-inserted-style-element.tentative.html -testharness html/dom/render-blocking/script-inserted-stylesheet-link.tentative.html +testharness html/dom/render-blocking/script-inserted-style-element.html +testharness html/dom/render-blocking/script-inserted-stylesheet-link.html testharness html/dom/self-origin.any.js testharness html/dom/self-origin.sub.html testharness html/dom/usvstring-reflection.https.html @@ -38103,7 +42249,6 @@ testharness html/editing/dnd/the-draggable-attribute/draggable-enumerated-ascii- testharness html/editing/dnd/the-draggable-attribute/draggable_attribute.html testharness html/editing/dnd/the-dropzone-attribute/dropzone_attribute.html testharness html/editing/editing-0/autocapitalization/autocapitalize.html -testharness html/editing/editing-0/contenteditable/contentEditable-invalidvalue.html testharness html/editing/editing-0/contenteditable/contentEditable-slotted-inherit.html testharness html/editing/editing-0/contenteditable/contenteditable-enumerated-ascii-case-insensitive.html testharness html/editing/editing-0/contenteditable/selection-in-contentEditable-at-turning-designMode-on-off.tentative.html @@ -38113,10 +42258,15 @@ testharness html/editing/editing-0/making-entire-documents-editable-the-designmo testharness html/editing/editing-0/making-entire-documents-editable-the-designmode-idl-attribute/user-interaction-editing-designMode.html testharness html/editing/editing-0/spelling-and-grammar-checking/spellcheck-enumerated-ascii-case-insensitive.html testharness html/editing/editing-0/spelling-and-grammar-checking/user-interaction-editing-spellcheck.html +testharness html/editing/editing-0/writing-suggestions/writingsuggestions.html testharness html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-event.html testharness html/editing/the-hidden-attribute/beforematch-element-fragment-navigation.html +testharness html/editing/the-hidden-attribute/beforematch-scroll-to-text-fragment.html testharness html/editing/the-hidden-attribute/hidden-idl.html testharness html/editing/the-hidden-attribute/hidden-ua-stylesheet.html +testharness html/editing/the-hidden-attribute/hidden-until-found-002.html +testharness html/editing/the-hidden-attribute/hidden-until-found-text-fragment.html +testharness html/embedded-content/the-img-element/attr-img-fetchpriority.html testharness html/infrastructure/common-dom-interfaces/collections/domstringlist.html testharness html/infrastructure/common-dom-interfaces/collections/historical.html testharness html/infrastructure/common-dom-interfaces/collections/htmlallcollection.html @@ -38151,6 +42301,15 @@ testharness html/infrastructure/safe-passing-of-structured-data/structuredclone_ testharness html/infrastructure/safe-passing-of-structured-data/transfer-errors.window.js testharness html/infrastructure/safe-passing-of-structured-data/window-postmessage.window.js testharness html/infrastructure/terminology/plugins/text-plain.html +testharness html/infrastructure/urls/base-url/base-url-detached-document.https.window.js +testharness html/infrastructure/urls/base-url/base-url-javascript-nav.https.window.js +testharness html/infrastructure/urls/base-url/document-base-uri-synthetic-document.html +testharness html/infrastructure/urls/base-url/document-base-url-changes-about-srcdoc-2.https.html +testharness html/infrastructure/urls/base-url/document-base-url-changes-after-nav-about-srcdoc.https.window.js +testharness html/infrastructure/urls/base-url/document-base-url-initiated-grand-parent.https.window.js +testharness html/infrastructure/urls/base-url/document-base-url-window-initiator-is-not-opener.https.window.js +testharness html/infrastructure/urls/base-url/document-base-url-window-open-about-blank.https.window.js +testharness html/infrastructure/urls/base-url/matches-about-blank-base-url.window.js testharness html/infrastructure/urls/dynamic-changes-to-base-urls/dynamic-urls.sub.html testharness html/infrastructure/urls/dynamic-changes-to-base-urls/historical.sub.xhtml testharness html/infrastructure/urls/resolving-urls/query-encoding/attributes.sub.html @@ -38164,10 +42323,9 @@ testharness html/infrastructure/urls/resolving-urls/query-encoding/windows-1251. testharness html/infrastructure/urls/resolving-urls/query-encoding/windows-1252.html testharness html/infrastructure/urls/terminology-0/document-base-url-about-srcdoc.https.window.js testharness html/infrastructure/urls/terminology-0/document-base-url-changes-about-srcdoc.https.window.js -testharness html/infrastructure/urls/terminology-0/document-base-url-changes-after-nav-about-srcdoc.https.window.js -testharness html/infrastructure/urls/terminology-0/document-base-url-initiated-grand-parent.https.window.js testharness html/infrastructure/urls/terminology-0/document-base-url.html testharness html/infrastructure/urls/terminology-0/multiple-base.sub.html +testharness html/infrastructure/urls/terminology-0/nontraditional-about-srcdoc.html testharness html/interaction/focus/chrome-object-tab-focus-bug.html testharness html/interaction/focus/composed.window.js testharness html/interaction/focus/document-level-focus-apis/document-has-system-focus.html @@ -38276,7 +42434,9 @@ testharness html/interaction/focus/sequential-focus-navigation-and-the-tabindex- testharness html/interaction/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-zero.html testharness html/interaction/focus/sequential-focus-navigation-and-the-tabindex-attribute/tabindex-getter-frame.html testharness html/interaction/focus/sequential-focus-navigation-and-the-tabindex-attribute/tabindex-getter.html +testharness html/interaction/focus/setSequentialFocusStartingPoint.tentative.html testharness html/interaction/focus/tabindex-focus-flag.html +testharness html/interaction/focus/the-autofocus-attribute/autofocus-area.html testharness html/interaction/focus/the-autofocus-attribute/autofocus-dialog.html testharness html/interaction/focus/the-autofocus-attribute/autofocus-in-not-fully-active-document.html testharness html/interaction/focus/the-autofocus-attribute/autofocus-on-stable-document.html @@ -38304,6 +42464,9 @@ testharness html/interaction/focus/the-autofocus-attribute/update-the-rendering. testharness html/links/icon/no-error-event.sub.html testharness html/links/icon/no-load-event.html testharness html/links/manifest/link-relationship/link-rel-manifest.html +testharness html/links/stylesheet/quirk-origin-check-recursive-import.html +testharness html/links/stylesheet/quirk-origin-check.html +testharness html/meta/refresh-time.html testharness html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-all.html testharness html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-01.html testharness html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-02.html @@ -38314,12 +42477,19 @@ testharness html/obsolete/requirements-for-implementations/other-elements-attrib testharness html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/script-IDL-event-htmlfor.html testharness html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-events-historical.html testharness html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-loop.html +testharness html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-overflow.html testharness html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount.html testharness html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrolldelay.html +testharness html/rendering/bidi-rendering/slot-direction.window.js +testharness html/rendering/bidi-rendering/unicode-bidi-ua-rules.html testharness html/rendering/dimension-attributes.html testharness html/rendering/non-replaced-elements/flow-content-0/dialog-display.html testharness html/rendering/non-replaced-elements/flow-content-0/dialog.html testharness html/rendering/non-replaced-elements/flow-content-0/form-margin-quirk.html +testharness html/rendering/non-replaced-elements/flow-content-0/search-styles-iso-8859-8.html +testharness html/rendering/non-replaced-elements/flow-content-0/search-styles.html +testharness html/rendering/non-replaced-elements/flow-content-0/slot-element-focusable.tentative.html +testharness html/rendering/non-replaced-elements/flow-content-0/slot-element-tabbable.tentative.html testharness html/rendering/non-replaced-elements/form-controls/input-line-height-computed.html testharness html/rendering/non-replaced-elements/form-controls/placeholder-opacity-default.tentative.html testharness html/rendering/non-replaced-elements/form-controls/resets.html @@ -38331,6 +42501,7 @@ testharness html/rendering/non-replaced-elements/margin-collapsing-quirks/multic testharness html/rendering/non-replaced-elements/margin-collapsing-quirks/multicol-standards-mode.html testharness html/rendering/non-replaced-elements/phrasing-content-0/font-element-text-decoration-color/font-face.html testharness html/rendering/non-replaced-elements/phrasing-content-0/font-element-text-decoration-color/font-size.html +testharness html/rendering/non-replaced-elements/sections-and-headings/headings-styles-no-h1-in-section.tentative.html testharness html/rendering/non-replaced-elements/sections-and-headings/headings-styles.html testharness html/rendering/non-replaced-elements/tables/form-in-tables-xhtml.xhtml testharness html/rendering/non-replaced-elements/tables/form-in-tables.html @@ -38394,6 +42565,7 @@ testharness html/rendering/replaced-elements/attributes-for-embedded-content-and testharness html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-aspect-ratio.html testharness html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-intrinsic-width-height.html testharness html/rendering/replaced-elements/embedded-content/audio-controls-intrinsic-size.html +testharness html/rendering/replaced-elements/images/img-sizes-auto.html testharness html/rendering/replaced-elements/svg-embedded-sizing/svg-in-iframe-auto.html testharness html/rendering/replaced-elements/svg-embedded-sizing/svg-in-iframe-fixed.html testharness html/rendering/replaced-elements/svg-embedded-sizing/svg-in-iframe-percentage.html @@ -38405,8 +42577,11 @@ testharness html/rendering/replaced-elements/svg-embedded-sizing/svg-in-object-f testharness html/rendering/replaced-elements/svg-embedded-sizing/svg-in-object-percentage.html testharness html/rendering/replaced-elements/svg-inline-sizing/svg-inline.html testharness html/rendering/the-css-user-agent-style-sheet-and-presentational-hints/mouse-cursor-imagemap.html +testharness html/rendering/the-css-user-agent-style-sheet-and-presentational-hints/no-help-cursor-on-links-wrapped-in-svg.historical.html testharness html/rendering/the-css-user-agent-style-sheet-and-presentational-hints/no-help-cursor-on-links.historical.html +testharness html/rendering/the-details-element/auto-expand-details-text-fragment.html testharness html/rendering/the-details-element/details-blockification.html +testharness html/rendering/the-details-element/details-display.html testharness html/rendering/unmapped-attributes.html testharness html/rendering/widgets/appearance/default-styles.html testharness html/rendering/widgets/baseline-alignment-and-overflow.tentative.html @@ -38415,21 +42590,38 @@ testharness html/rendering/widgets/button-layout/display-other.html testharness html/rendering/widgets/button-layout/flex.html testharness html/rendering/widgets/button-layout/grid.html testharness html/rendering/widgets/button-layout/shrink-wrap.html +testharness html/rendering/widgets/field-sizing-input-number.html +testharness html/rendering/widgets/field-sizing-input-text.html +testharness html/rendering/widgets/field-sizing-select.html +testharness html/rendering/widgets/field-sizing-textarea.html +testharness html/rendering/widgets/input-checkbox-switch.tentative.window.js testharness html/rendering/widgets/input-date-no-resize-on-hover.html +testharness html/rendering/widgets/input-text-size.html testharness html/rendering/widgets/select-wrap-no-spill.optional.html +testharness html/rendering/widgets/textarea-cols-rows.html +testharness html/rendering/widgets/textarea-scrollbar-sizing-001.html +testharness html/rendering/widgets/textarea-scrollbar-sizing-002.html testharness html/rendering/widgets/the-select-element/select-as-listbox-default-styles.tentative.html +testharness html/scripting/the-script-element/attr-script-fetchpriority.html testharness html/select/options-length-too-large.html +testharness html/semantics/disabled-elements/disabled-checkbox-click.html +testharness html/semantics/disabled-elements/disabled-event-dispatch-additional.tentative.html testharness html/semantics/disabled-elements/disabled-event-dispatch.tentative.html testharness html/semantics/disabled-elements/disabledElement.html +testharness html/semantics/disabled-elements/event-propagate-disabled-keyboard.tentative.html testharness html/semantics/disabled-elements/event-propagate-disabled.tentative.html +testharness html/semantics/disabled-elements/fieldset-event-propagation.tentative.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/conditionally-block-rendering-on-link-media-attr.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/dynamic-render-blocking-link-stylesheet-does-not-block-script.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/dynamic-render-blocking-style-element-does-not-block-script.html +testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/link-stylesheet-with-non-match-media-does-not-block-render.tentative.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/script-created-link-stylesheet-does-not-block-script.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/script-created-style-element-does-not-block-script.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/style-element-media-match-block-script.html testharness html/semantics/document-metadata/interactions-of-styling-and-scripting/style-element-media-not-match-does-not-block-script.html testharness html/semantics/document-metadata/styling/LinkStyle.html +testharness html/semantics/document-metadata/the-base-element/base-data.html +testharness html/semantics/document-metadata/the-base-element/base-javascript.html testharness html/semantics/document-metadata/the-base-element/base_about_blank.html testharness html/semantics/document-metadata/the-base-element/base_href_empty.html testharness html/semantics/document-metadata/the-base-element/base_href_invalid.html @@ -38452,6 +42644,8 @@ testharness html/semantics/document-metadata/the-link-element/link-rellist.html testharness html/semantics/document-metadata/the-link-element/link-style-error-01.html testharness html/semantics/document-metadata/the-link-element/link-style-error-limited-quirks.html testharness html/semantics/document-metadata/the-link-element/link-style-error-quirks.html +testharness html/semantics/document-metadata/the-link-element/stylesheet-bad-mime-type.html +testharness html/semantics/document-metadata/the-link-element/stylesheet-non-OK-status.html testharness html/semantics/document-metadata/the-link-element/stylesheet-not-removed-until-next-stylesheet-loads.html testharness html/semantics/document-metadata/the-meta-element/color-scheme/meta-color-scheme-attribute-changes.html testharness html/semantics/document-metadata/the-meta-element/color-scheme/meta-color-scheme-empty-content-value.html @@ -38464,7 +42658,8 @@ testharness html/semantics/document-metadata/the-meta-element/color-scheme/meta- testharness html/semantics/document-metadata/the-meta-element/color-scheme/meta-color-scheme-single-value-in-body.html testharness html/semantics/document-metadata/the-meta-element/color-scheme/meta-color-scheme-single-value-in-head.html testharness html/semantics/document-metadata/the-meta-element/color-scheme/meta-color-scheme-single-value-in-shadow-tree.html -testharness html/semantics/document-metadata/the-meta-element/http-equiv-and-name.html +testharness html/semantics/document-metadata/the-meta-element/http-equiv-and-name-1.html +testharness html/semantics/document-metadata/the-meta-element/http-equiv-and-name-2.html testharness html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/allow-scripts-flag-changing-1.html testharness html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/allow-scripts-flag-changing-2.html testharness html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/dynamic-append.html @@ -38618,6 +42813,7 @@ testharness html/semantics/embedded-content/media-elements/loading-the-media-res testharness html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-source.html testharness html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-src.html testharness html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-resumes-onload.html +testharness html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-source-media-env-change.html testharness html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-source-media.html testharness html/semantics/embedded-content/media-elements/location-of-the-media-resource/currentSrc.html testharness html/semantics/embedded-content/media-elements/media_fragment_seek.html @@ -38625,6 +42821,7 @@ testharness html/semantics/embedded-content/media-elements/mime-types/canPlayTyp testharness html/semantics/embedded-content/media-elements/networkState_during_loadstart.html testharness html/semantics/embedded-content/media-elements/networkState_during_progress.html testharness html/semantics/embedded-content/media-elements/networkState_initial.html +testharness html/semantics/embedded-content/media-elements/offsets-into-the-media-resource/currentTime-move-within-document.html testharness html/semantics/embedded-content/media-elements/offsets-into-the-media-resource/currentTime.html testharness html/semantics/embedded-content/media-elements/offsets-into-the-media-resource/duration.html testharness html/semantics/embedded-content/media-elements/paused_false_during_play.html @@ -38788,7 +42985,6 @@ testharness html/semantics/embedded-content/media-elements/track/track-element/t testharness html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-voice.html testharness html/semantics/embedded-content/media-elements/track/track-element/vtt-cue-float-precision.html testharness html/semantics/embedded-content/media-elements/user-interface/muted.html -testharness html/semantics/embedded-content/media-elements/video_008.htm testharness html/semantics/embedded-content/media-elements/video_loop_base.html testharness html/semantics/embedded-content/media-elements/video_volume_check.html testharness html/semantics/embedded-content/media-elements/volume_nonfinite.html @@ -38799,19 +42995,6 @@ testharness html/semantics/embedded-content/the-area-element/area-shape.html testharness html/semantics/embedded-content/the-area-element/area-stringifier.html testharness html/semantics/embedded-content/the-audio-element/audio_constructor.html testharness html/semantics/embedded-content/the-canvas-element/2d-getcontext-options.html -testharness html/semantics/embedded-content/the-canvas-element/2d.canvas.context.html -testharness html/semantics/embedded-content/the-canvas-element/2d.canvas.readonly.html -testharness html/semantics/embedded-content/the-canvas-element/2d.canvas.reference.html -testharness html/semantics/embedded-content/the-canvas-element/2d.getcontext.exists.html -testharness html/semantics/embedded-content/the-canvas-element/2d.getcontext.extraargs.cache.html -testharness html/semantics/embedded-content/the-canvas-element/2d.getcontext.extraargs.create.html -testharness html/semantics/embedded-content/the-canvas-element/2d.getcontext.invalid.args.html -testharness html/semantics/embedded-content/the-canvas-element/2d.getcontext.shared.html -testharness html/semantics/embedded-content/the-canvas-element/2d.getcontext.unique.html -testharness html/semantics/embedded-content/the-canvas-element/2d.type.exists.html -testharness html/semantics/embedded-content/the-canvas-element/2d.type.extend.html -testharness html/semantics/embedded-content/the-canvas-element/2d.type.prototype.html -testharness html/semantics/embedded-content/the-canvas-element/2d.type.replace.html testharness html/semantics/embedded-content/the-canvas-element/canvas-descendants-focusability-001.html testharness html/semantics/embedded-content/the-canvas-element/canvas-descendants-focusability-002.html testharness html/semantics/embedded-content/the-canvas-element/canvas-descendants-focusability-003.tentative.html @@ -38829,15 +43012,6 @@ testharness html/semantics/embedded-content/the-canvas-element/fallback.multiple testharness html/semantics/embedded-content/the-canvas-element/fallback.nested.html testharness html/semantics/embedded-content/the-canvas-element/historical.html testharness html/semantics/embedded-content/the-canvas-element/imagedata.html -testharness html/semantics/embedded-content/the-canvas-element/initial.colour.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.2dstate.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.clip.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.different.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.gradient.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.path.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.pattern.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.same.html -testharness html/semantics/embedded-content/the-canvas-element/initial.reset.transform.html testharness html/semantics/embedded-content/the-canvas-element/security.dataURI.html testharness html/semantics/embedded-content/the-canvas-element/security.drawImage.canvas.cross.html testharness html/semantics/embedded-content/the-canvas-element/security.drawImage.canvas.redirect.html @@ -38860,43 +43034,6 @@ testharness html/semantics/embedded-content/the-canvas-element/security.pattern. testharness html/semantics/embedded-content/the-canvas-element/security.pattern.image.strokeStyle.redirect.html testharness html/semantics/embedded-content/the-canvas-element/security.reset.cross.html testharness html/semantics/embedded-content/the-canvas-element/security.reset.redirect.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.default.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.idl.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.idl.set.zero.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.decimal.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.em.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.empty.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.exp.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.hex.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.junk.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.minus.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.octal.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.onlyspace.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.percent.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.plus.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.space.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.trailingjunk.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.whitespace.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.parse.zero.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.reflect.setcontent.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.reflect.setidl.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.reflect.setidlzero.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.removed.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.decimal.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.em.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.empty.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.exp.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.hex.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.junk.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.minus.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.octal.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.onlyspace.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.percent.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.plus.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.space.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.trailingjunk.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.whitespace.html -testharness html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.zero.html testharness html/semantics/embedded-content/the-canvas-element/size.attributes.style.html testharness html/semantics/embedded-content/the-canvas-element/toBlob-cross-realm-callback-report-exception.html testharness html/semantics/embedded-content/the-canvas-element/toBlob.jpeg.html @@ -38923,12 +43060,7 @@ testharness html/semantics/embedded-content/the-canvas-element/toDataURL.unrecog testharness html/semantics/embedded-content/the-canvas-element/toDataURL.zeroheight.html testharness html/semantics/embedded-content/the-canvas-element/toDataURL.zerosize.html testharness html/semantics/embedded-content/the-canvas-element/toDataURL.zerowidth.html -testharness html/semantics/embedded-content/the-canvas-element/type.delete.html testharness html/semantics/embedded-content/the-canvas-element/type.exists.html -testharness html/semantics/embedded-content/the-canvas-element/type.extend.html -testharness html/semantics/embedded-content/the-canvas-element/type.name.html -testharness html/semantics/embedded-content/the-canvas-element/type.prototype.html -testharness html/semantics/embedded-content/the-canvas-element/type.replace.html testharness html/semantics/embedded-content/the-embed-element/document-getters-return-null-for-cross-origin.html testharness html/semantics/embedded-content/the-embed-element/embed-change-src.html testharness html/semantics/embedded-content/the-embed-element/embed-dimension.html @@ -38956,13 +43088,37 @@ testharness html/semantics/embedded-content/the-iframe-element/iframe-display-no testharness html/semantics/embedded-content/the-iframe-element/iframe-first-load-canceled-second-load-blank.html testharness html/semantics/embedded-content/the-iframe-element/iframe-load-event.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-eager.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-adopt-lazy-iframe-from-script-disabled-document.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-base-url-2.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-base-url-3.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-base-url.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-history-pushState.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-history-replaceState.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-script-disabled-iframe.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-far.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-horizontal-far.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-horizontal.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-nested-2.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-nested-3.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-nested-4.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-nested-5.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-nested.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-load-event.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-multiple-queued-navigations.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-multiple-times.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-form-submit.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-link-click-fragment.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-link-click.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-location-assign.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-location-replace-set-src.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-location-replace.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-meta-refresh.optional.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-navigation-navigate.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-nav-window-open.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-referrerpolicy-change.sub.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-reload-location-reload.html +testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-reload-navigation-reload.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-to-eager.html testharness html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy.html testharness html/semantics/embedded-content/the-iframe-element/iframe-network-error.sub.html @@ -39008,10 +43164,27 @@ testharness html/semantics/embedded-content/the-iframe-element/same_origin_paren testharness html/semantics/embedded-content/the-iframe-element/sandbox-ascii-case-insensitive.html testharness html/semantics/embedded-content/the-iframe-element/sandbox-inherit-to-blank-document-unsandboxed-frame.html testharness html/semantics/embedded-content/the-iframe-element/sandbox-inherit-to-blank-document-unsandboxed.html -testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-special-cases.tentative.sub.window.js -testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child.tentative.sub.window.js -testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-escalate-privileges.tentative.sub.window.js -testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-cross-origin-delivered.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-cross-origin-frame.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-delivered-both.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-delivered.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-frame-both.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-frame.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-unsandboxed.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-cross-origin-escalate.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-cross-site.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-allow-same-origin.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-frame-allow-top.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-sandboxed-cross-origin-parent.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-sandboxed-escalate.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-sandboxed.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-unsandboxed-cross-origin-parent.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-unsandboxed-inherit.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-unsandboxed.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-same-site-no-activation.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-same-site.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-user-activation-no-sticky.tentative.sub.window.js +testharness html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-user-activation-sticky.tentative.sub.window.js testharness html/semantics/embedded-content/the-iframe-element/sandbox_001.htm testharness html/semantics/embedded-content/the-iframe-element/sandbox_002.htm testharness html/semantics/embedded-content/the-iframe-element/sandbox_004.htm @@ -39063,6 +43236,7 @@ testharness html/semantics/embedded-content/the-img-element/delay-load-event-det testharness html/semantics/embedded-content/the-img-element/delay-load-event-until-move-to-empty-source.html testharness html/semantics/embedded-content/the-img-element/delay-load-event.html testharness html/semantics/embedded-content/the-img-element/disconnected-image-loading-lazy.html +testharness html/semantics/embedded-content/the-img-element/empty-src-no-current-request.html testharness html/semantics/embedded-content/the-img-element/environment-changes/viewport-change.html testharness html/semantics/embedded-content/the-img-element/historical-progress-event.window.js testharness html/semantics/embedded-content/the-img-element/image-base-url.html @@ -39072,10 +43246,20 @@ testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-b testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-base-url.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-below-viewport-dynamic.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-crossorigin-change.sub.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-different-crossorigin.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-empty-src.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-cross-origin-iframe-001.sub.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-cross-origin-iframe-002.sub.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-script-disabled-iframe.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-far.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-horizontal-far.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-horizontal.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-nested-2.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-nested-3.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-nested-4.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-nested-5.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller-nested.html +testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-scroller.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-in-viewport-dynamic.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-move-document.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-move-into-script-disabled-iframe.html @@ -39090,6 +43274,7 @@ testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-u testharness html/semantics/embedded-content/the-img-element/image-loading-lazy-zero-intersection-area.html testharness html/semantics/embedded-content/the-img-element/image-loading-lazy.html testharness html/semantics/embedded-content/the-img-element/img-picture-ancestor.html +testharness html/semantics/embedded-content/the-img-element/img-src-in-synthetic-document.html testharness html/semantics/embedded-content/the-img-element/img.complete.html testharness html/semantics/embedded-content/the-img-element/invalid-src.html testharness html/semantics/embedded-content/the-img-element/invisible-image.html @@ -39104,6 +43289,7 @@ testharness html/semantics/embedded-content/the-img-element/not-rendered-dimensi testharness html/semantics/embedded-content/the-img-element/not-rendered-image-loading-lazy.html testharness html/semantics/embedded-content/the-img-element/null-image-source.html testharness html/semantics/embedded-content/the-img-element/picture-loading-lazy.html +testharness html/semantics/embedded-content/the-img-element/relevant-mutations-lazy.html testharness html/semantics/embedded-content/the-img-element/relevant-mutations.html testharness html/semantics/embedded-content/the-img-element/remove-element-and-scroll.html testharness html/semantics/embedded-content/the-img-element/scrolling-below-viewport-image-lazy-loading-in-iframe.html @@ -39112,6 +43298,7 @@ testharness html/semantics/embedded-content/the-img-element/sizes/parse-a-sizes- testharness html/semantics/embedded-content/the-img-element/sizes/parse-a-sizes-attribute-quirks-mode.html testharness html/semantics/embedded-content/the-img-element/sizes/parse-a-sizes-attribute-standards-mode.html testharness html/semantics/embedded-content/the-img-element/sizes/parse-a-sizes-attribute-width-1000px.html +testharness html/semantics/embedded-content/the-img-element/sizes/sizes-auto.html testharness html/semantics/embedded-content/the-img-element/source-media-outside-doc.html testharness html/semantics/embedded-content/the-img-element/srcset/avoid-reload-on-resize.html testharness html/semantics/embedded-content/the-img-element/srcset/parse-a-srcset-attribute.html @@ -39119,8 +43306,10 @@ testharness html/semantics/embedded-content/the-img-element/srcset/select-an-ima testharness html/semantics/embedded-content/the-img-element/srcset/srcset-media-dynamic.html testharness html/semantics/embedded-content/the-img-element/update-media.html testharness html/semantics/embedded-content/the-img-element/update-src-complete.html +testharness html/semantics/embedded-content/the-img-element/update-the-image-data/current-request-microtask-002.html testharness html/semantics/embedded-content/the-img-element/update-the-image-data/current-request-microtask.html testharness html/semantics/embedded-content/the-img-element/update-the-image-data/fail-to-resolve.html +testharness html/semantics/embedded-content/the-img-element/update-the-image-data/not-broken-while-load-task-scheduled.html testharness html/semantics/embedded-content/the-img-element/update-the-source-set.html testharness html/semantics/embedded-content/the-img-element/usemap-casing.html testharness html/semantics/embedded-content/the-object-element/document-getters-return-null-for-cross-origin.html @@ -39130,6 +43319,8 @@ testharness html/semantics/embedded-content/the-object-element/object-events.htm testharness html/semantics/embedded-content/the-object-element/object-fallback-failed-cross-origin-navigation.sub.html testharness html/semantics/embedded-content/the-object-element/object-handler.html testharness html/semantics/embedded-content/the-object-element/object-ignored-in-media-element.html +testharness html/semantics/embedded-content/the-object-element/object-image-click.sub.html +testharness html/semantics/embedded-content/the-object-element/object-image-display-none-loading.html testharness html/semantics/embedded-content/the-object-element/object-in-display-none-load-event.html testharness html/semantics/embedded-content/the-object-element/object-in-object-fallback-2.html testharness html/semantics/embedded-content/the-object-element/object-setcustomvalidity.html @@ -39140,6 +43331,7 @@ testharness html/semantics/embedded-content/the-video-element/video-tabindex.htm testharness html/semantics/embedded-content/the-video-element/video_crash_empty_src.html testharness html/semantics/embedded-content/the-video-element/video_size_preserved_after_ended.html testharness html/semantics/forms/attributes-common-to-form-controls/dirname-ltr.html +testharness html/semantics/forms/attributes-common-to-form-controls/dirname-only-if-applies.html testharness html/semantics/forms/attributes-common-to-form-controls/dirname-rtl-auto.html testharness html/semantics/forms/attributes-common-to-form-controls/dirname-rtl-inherited.html testharness html/semantics/forms/attributes-common-to-form-controls/disabled-elements-01.html @@ -39157,6 +43349,7 @@ testharness html/semantics/forms/constraints/form-validation-validity-rangeOverf testharness html/semantics/forms/constraints/form-validation-validity-rangeUnderflow-weekmonth.html testharness html/semantics/forms/constraints/form-validation-validity-rangeUnderflow.html testharness html/semantics/forms/constraints/form-validation-validity-stepMismatch.html +testharness html/semantics/forms/constraints/form-validation-validity-textarea-defaultValue.html testharness html/semantics/forms/constraints/form-validation-validity-tooLong.html testharness html/semantics/forms/constraints/form-validation-validity-tooShort.html testharness html/semantics/forms/constraints/form-validation-validity-typeMismatch.html @@ -39166,7 +43359,8 @@ testharness html/semantics/forms/constraints/form-validation-validity-valueMissi testharness html/semantics/forms/constraints/form-validation-validity-valueMissing.html testharness html/semantics/forms/constraints/form-validation-willValidate-datalist.html testharness html/semantics/forms/constraints/form-validation-willValidate.html -testharness html/semantics/forms/constraints/infinite_backtracking.html +testharness html/semantics/forms/constraints/infinite_backtracking.tentative.html +testharness html/semantics/forms/constraints/input-maxlength-emoji.html testharness html/semantics/forms/constraints/input-number-validity-dynamic-value-no-change.html testharness html/semantics/forms/constraints/input-pattern-dynamic-value.html testharness html/semantics/forms/constraints/inputwillvalidate.html @@ -39188,6 +43382,7 @@ testharness html/semantics/forms/form-submission-0/form-double-submit-default-ac testharness html/semantics/forms/form-submission-0/form-double-submit-multiple-targets.html testharness html/semantics/forms/form-submission-0/form-double-submit-preventdefault-click.html testharness html/semantics/forms/form-submission-0/form-double-submit-preventdefault.html +testharness html/semantics/forms/form-submission-0/form-double-submit-requestsubmit.html testharness html/semantics/forms/form-submission-0/form-double-submit-to-different-origin-frame.html testharness html/semantics/forms/form-submission-0/form-double-submit.html testharness html/semantics/forms/form-submission-0/form-submission-algorithm.html @@ -39220,6 +43415,7 @@ testharness html/semantics/forms/resetting-a-form/reset-event.html testharness html/semantics/forms/resetting-a-form/reset-form-2.html testharness html/semantics/forms/resetting-a-form/reset-form-event-realm.html testharness html/semantics/forms/resetting-a-form/reset-form.html +testharness html/semantics/forms/setCustomValidity-normalize-newlines.html testharness html/semantics/forms/textfieldselection/defaultSelection.html testharness html/semantics/forms/textfieldselection/select-event.html testharness html/semantics/forms/textfieldselection/selection-after-content-change.html @@ -39258,6 +43454,7 @@ testharness html/semantics/forms/the-datalist-element/datalistoptions.html testharness html/semantics/forms/the-fieldset-element/HTMLFieldSetElement.html testharness html/semantics/forms/the-fieldset-element/disabled-001.html testharness html/semantics/forms/the-fieldset-element/disabled-002.xhtml +testharness html/semantics/forms/the-fieldset-element/disabled-003.html testharness html/semantics/forms/the-fieldset-element/fieldset-checkvalidity.html testharness html/semantics/forms/the-fieldset-element/fieldset-intrinsic-size.html testharness html/semantics/forms/the-fieldset-element/fieldset-setcustomvalidity.html @@ -39277,6 +43474,7 @@ testharness html/semantics/forms/the-form-element/form-elements-matches.html testharness html/semantics/forms/the-form-element/form-elements-nameditem-01.html testharness html/semantics/forms/the-form-element/form-elements-nameditem-02.html testharness html/semantics/forms/the-form-element/form-elements-sameobject.html +testharness html/semantics/forms/the-form-element/form-indexed-element-shadow.html testharness html/semantics/forms/the-form-element/form-indexed-element.html testharness html/semantics/forms/the-form-element/form-length.html testharness html/semantics/forms/the-form-element/form-nameditem.html @@ -39284,6 +43482,7 @@ testharness html/semantics/forms/the-form-element/form-requestsubmit.html testharness html/semantics/forms/the-input-element/anchor-active-contenteditable.html testharness html/semantics/forms/the-input-element/anchor-contenteditable-navigate.html testharness html/semantics/forms/the-input-element/button.html +testharness html/semantics/forms/the-input-element/change-to-empty-value.html testharness html/semantics/forms/the-input-element/checkable-active-onblur-with-click.html testharness html/semantics/forms/the-input-element/checkable-active-onblur.html testharness html/semantics/forms/the-input-element/checkable-active-space-key-being-disabled.html @@ -39292,6 +43491,7 @@ testharness html/semantics/forms/the-input-element/checkable-active-space-key-un testharness html/semantics/forms/the-input-element/checkbox-click-events.html testharness html/semantics/forms/the-input-element/checkbox.html testharness html/semantics/forms/the-input-element/checked.xhtml +testharness html/semantics/forms/the-input-element/click-user-gesture.html testharness html/semantics/forms/the-input-element/clone.html testharness html/semantics/forms/the-input-element/cloning-steps.html testharness html/semantics/forms/the-input-element/color.html @@ -39304,22 +43504,27 @@ testharness html/semantics/forms/the-input-element/defaultValue-clobbering.html testharness html/semantics/forms/the-input-element/email-set-value.html testharness html/semantics/forms/the-input-element/email.html testharness html/semantics/forms/the-input-element/files.html +testharness html/semantics/forms/the-input-element/focus-dynamic-type-change-on-blur.html testharness html/semantics/forms/the-input-element/focus-dynamic-type-change.html testharness html/semantics/forms/the-input-element/hidden-charset-case-sensitive.html testharness html/semantics/forms/the-input-element/hidden.html testharness html/semantics/forms/the-input-element/image-click-form-data.html testharness html/semantics/forms/the-input-element/input-checkvalidity.html +testharness html/semantics/forms/the-input-element/input-disabled-fieldset-dynamic.html testharness html/semantics/forms/the-input-element/input-height.html testharness html/semantics/forms/the-input-element/input-labels.html testharness html/semantics/forms/the-input-element/input-list.html testharness html/semantics/forms/the-input-element/input-seconds-leading-zeroes.html testharness html/semantics/forms/the-input-element/input-setcustomvalidity.html +testharness html/semantics/forms/the-input-element/input-stepdown-02.html testharness html/semantics/forms/the-input-element/input-stepdown-weekmonth.html testharness html/semantics/forms/the-input-element/input-stepdown.html testharness html/semantics/forms/the-input-element/input-stepup-weekmonth.html testharness html/semantics/forms/the-input-element/input-stepup.html testharness html/semantics/forms/the-input-element/input-submit-remove-jssubmit.html testharness html/semantics/forms/the-input-element/input-type-button.html +testharness html/semantics/forms/the-input-element/input-type-change-value.html +testharness html/semantics/forms/the-input-element/input-type-checkbox-switch.tentative.window.js testharness html/semantics/forms/the-input-element/input-type-checkbox.html testharness html/semantics/forms/the-input-element/input-untrusted-key-event.html testharness html/semantics/forms/the-input-element/input-validationmessage.html @@ -39338,14 +43543,18 @@ testharness html/semantics/forms/the-input-element/maxlength-number.html testharness html/semantics/forms/the-input-element/maxlength.html testharness html/semantics/forms/the-input-element/minlength.html testharness html/semantics/forms/the-input-element/month.html +testharness html/semantics/forms/the-input-element/number-constraint-validation.html testharness html/semantics/forms/the-input-element/number-disabled.html testharness html/semantics/forms/the-input-element/number.html testharness html/semantics/forms/the-input-element/password-delete-space.html testharness html/semantics/forms/the-input-element/password.html testharness html/semantics/forms/the-input-element/pattern_attribute.html +testharness html/semantics/forms/the-input-element/pattern_attribute_v_flag.html +testharness html/semantics/forms/the-input-element/radio-disconnected-group-owner.html testharness html/semantics/forms/the-input-element/radio-double-activate-pseudo.html testharness html/semantics/forms/the-input-element/radio-groupname-case.html testharness html/semantics/forms/the-input-element/radio-input-cancel.html +testharness html/semantics/forms/the-input-element/radio-keyboard-navigation-order.html testharness html/semantics/forms/the-input-element/radio-morphed.html testharness html/semantics/forms/the-input-element/radio-multiple-selected.html testharness html/semantics/forms/the-input-element/radio.html @@ -39375,6 +43584,7 @@ testharness html/semantics/forms/the-input-element/week.html testharness html/semantics/forms/the-label-element/clicking-interactive-content.html testharness html/semantics/forms/the-label-element/clicking-noninteractive-labelable-content.html testharness html/semantics/forms/the-label-element/clicking-noninteractive-unlabelable-content.html +testharness html/semantics/forms/the-label-element/control-active-with-multiple-clicks.html testharness html/semantics/forms/the-label-element/forward-focus-to-associated-element.html testharness html/semantics/forms/the-label-element/label-attributes.sub.html testharness html/semantics/forms/the-label-element/label-inside-anchor.html @@ -39384,6 +43594,7 @@ testharness html/semantics/forms/the-label-element/proxy-modifier-click-to-assoc testharness html/semantics/forms/the-legend-element/HTMLLegendElement.html testharness html/semantics/forms/the-legend-element/legend-form.html testharness html/semantics/forms/the-meter-element/meter.html +testharness html/semantics/forms/the-optgroup-element/optgroup-removal.window.js testharness html/semantics/forms/the-option-element/option-element-constructor.html testharness html/semantics/forms/the-option-element/option-form.html testharness html/semantics/forms/the-option-element/option-index.html @@ -39406,6 +43617,7 @@ testharness html/semantics/forms/the-select-element/common-HTMLOptionsCollection testharness html/semantics/forms/the-select-element/common-HTMLOptionsCollection-namedItem.html testharness html/semantics/forms/the-select-element/common-HTMLOptionsCollection.html testharness html/semantics/forms/the-select-element/inserted-or-removed.html +testharness html/semantics/forms/the-select-element/select-add-optgroup.html testharness html/semantics/forms/the-select-element/select-add.html testharness html/semantics/forms/the-select-element/select-ask-for-reset.html testharness html/semantics/forms/the-select-element/select-multiple.html @@ -39417,23 +43629,54 @@ testharness html/semantics/forms/the-select-element/select-validity.html testharness html/semantics/forms/the-select-element/select-value.html testharness html/semantics/forms/the-select-element/select-willvalidate-readonly-attribute.html testharness html/semantics/forms/the-select-element/selected-index.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-ask-for-reset.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-events.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-form-attribute.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-form-state-restore.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-form-submission.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-keyboard.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-labels.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-many-options.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-nested.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-option-focusable.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-parts-structure.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-popup-position-with-zoom.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-popup-position.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-popup.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-required-attribute.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-validity.tentative.html -testharness html/semantics/forms/the-selectmenu-element/selectmenu-value-selectedOption.tentative.html +testharness html/semantics/forms/the-select-element/show-picker-being-cv-hidden.html +testharness html/semantics/forms/the-select-element/show-picker-being-rendered.html +testharness html/semantics/forms/the-select-element/show-picker-cross-origin-iframe.html +testharness html/semantics/forms/the-select-element/show-picker-disabled.html +testharness html/semantics/forms/the-select-element/show-picker-multiple.html +testharness html/semantics/forms/the-select-element/show-picker-size.html +testharness html/semantics/forms/the-select-element/show-picker-user-gesture.html +testharness html/semantics/forms/the-select-element/stylable-select/nested-options.tenative.html +testharness html/semantics/forms/the-select-element/stylable-select/option-computed-style.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-accessibility-minimum-target-size.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-datalist-options-idl.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-datalist-popover-behavior.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-disabled.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-fallback-datalist-animations.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-keyboard-behavior.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-mouse-behavior.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-option-hover-styles.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/select-parsing.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/selectedoption.tentative.html +testharness html/semantics/forms/the-select-element/stylable-select/selectedoptionelement-attr.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-ask-for-reset.html +testharness html/semantics/forms/the-selectlist-element/selectlist-button-closes-listbox.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-button-type-behavior.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-disabled.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-events.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-form-attribute.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-form-elements.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-form-submission.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-keyboard-behavior.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-keyboard.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-labels.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-many-options.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-nested.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-option-focusable.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-popover-position-with-zoom.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-popover-position.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-pseudo-light-dismiss-invalidation.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-pseudo-open-closed.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-required-attribute.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-selectedoption-element.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-tab-navigation.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-tabindex-order.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-user-select.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-validity.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-value-option.tentative.html +testharness html/semantics/forms/the-selectlist-element/selectlist-value-selectedOption.tentative.html +testharness html/semantics/forms/the-selectlist-element/tab-closes-listbox.tentative.html +testharness html/semantics/forms/the-textarea-element/change-to-empty-value.html testharness html/semantics/forms/the-textarea-element/cloning-steps.html testharness html/semantics/forms/the-textarea-element/textarea-maxlength.html testharness html/semantics/forms/the-textarea-element/textarea-minlength.html @@ -39466,40 +43709,47 @@ testharness html/semantics/interactive-elements/the-details-element/auto-expand- testharness html/semantics/interactive-elements/the-details-element/closed-details-layout-apis.tentative.html testharness html/semantics/interactive-elements/the-details-element/details-keyboard-activation.html testharness html/semantics/interactive-elements/the-details-element/details.html +testharness html/semantics/interactive-elements/the-details-element/name-attribute.html testharness html/semantics/interactive-elements/the-details-element/toggleEvent.html testharness html/semantics/interactive-elements/the-dialog-element/abspos-dialog-layout.html testharness html/semantics/interactive-elements/the-dialog-element/backdrop-receives-element-events.html testharness html/semantics/interactive-elements/the-dialog-element/centering.html +testharness html/semantics/interactive-elements/the-dialog-element/child-sequential-focus.html testharness html/semantics/interactive-elements/the-dialog-element/closed-dialog-does-not-block-mouse-events.html testharness html/semantics/interactive-elements/the-dialog-element/default-color.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-autofocus-just-once.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-autofocus-multiple-times.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-autofocus.html -testharness html/semantics/interactive-elements/the-dialog-element/dialog-cancel-events-closewatcher.tentative.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-cancel-events.html -testharness html/semantics/interactive-elements/the-dialog-element/dialog-cancel-preventDefault-closewatcher.tentative.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-cancel-preventDefault.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-cancel-with-input.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-cancel-with-select.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-canceling.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-close-event-async.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-close-event.html +testharness html/semantics/interactive-elements/the-dialog-element/dialog-close-via-attribute.tentative.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-close.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-enabled.html +testharness html/semantics/interactive-elements/the-dialog-element/dialog-focus-previous-outside.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-focus-shadow-double-nested.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-focus-shadow.html +testharness html/semantics/interactive-elements/the-dialog-element/dialog-focusability.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-focusing-steps-disconnected.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-focusing-steps-inert.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-focusing-steps-prevent-autofocus.html +testharness html/semantics/interactive-elements/the-dialog-element/dialog-form-submission-unusual.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-form-submission.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-inert.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-keydown-preventDefault.html +testharness html/semantics/interactive-elements/the-dialog-element/dialog-no-throw-requested-state.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-open-2.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-open.html +testharness html/semantics/interactive-elements/the-dialog-element/dialog-overlay.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-return-value.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-showModal-remove.html testharness html/semantics/interactive-elements/the-dialog-element/dialog-showModal.html testharness html/semantics/interactive-elements/the-dialog-element/focus-after-close.html +testharness html/semantics/interactive-elements/the-dialog-element/focus-previous-iframe.tentative.html testharness html/semantics/interactive-elements/the-dialog-element/inert-does-not-match-disabled-selector.html testharness html/semantics/interactive-elements/the-dialog-element/inert-focus-in-frames.html testharness html/semantics/interactive-elements/the-dialog-element/inert-inlines.html @@ -39527,8 +43777,33 @@ testharness html/semantics/interactive-elements/the-summary-element/activation-b testharness html/semantics/interactive-elements/the-summary-element/anchor-with-inline-element.html testharness html/semantics/interactive-elements/the-summary-element/anchor-without-link.html testharness html/semantics/interactive-elements/the-summary-element/click-behavior-optional.tentative.html +testharness html/semantics/interactive-elements/the-summary-element/interactive-content.html testharness html/semantics/interactive-elements/the-summary-element/summary-untrusted-key-event.html testharness html/semantics/interfaces.html +testharness html/semantics/invokers/idlharness.tentative.html +testharness html/semantics/invokers/interestelement-interface.tentative.html +testharness html/semantics/invokers/interestevent-dispatch-shadow.tentative.html +testharness html/semantics/invokers/interestevent-interface.tentative.html +testharness html/semantics/invokers/interesttarget-anchor-event-dispatch.tentative.html +testharness html/semantics/invokers/interesttarget-area-event-dispatch.tentative.html +testharness html/semantics/invokers/interesttarget-button-event-dispatch.tentative.html +testharness html/semantics/invokers/interesttarget-on-popover-behavior.tentative.html +testharness html/semantics/invokers/interesttarget-svg-a-event-dispatch.tentative.html +testharness html/semantics/invokers/invokeelement-interface.tentative.html +testharness html/semantics/invokers/invokeevent-dispatch-shadow.tentative.html +testharness html/semantics/invokers/invokeevent-interface.tentative.html +testharness html/semantics/invokers/invoketarget-button-event-dispatch.tentative.html +testharness html/semantics/invokers/invoketarget-fullscreen-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-audio-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-audio-invalid-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-details-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-details-invalid-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-dialog-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-dialog-invalid-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-input-number.tentative.html +testharness html/semantics/invokers/invoketarget-on-popover-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-popover-invalid-behavior.tentative.html +testharness html/semantics/invokers/invoketarget-on-video-behavior.tentative.html testharness html/semantics/links/downloading-resources/header-origin-no-referrer-when-downgrade.html testharness html/semantics/links/downloading-resources/header-origin-no-referrer.html testharness html/semantics/links/downloading-resources/header-origin-origin-when-cross-origin.html @@ -39553,37 +43828,77 @@ testharness html/semantics/links/hyperlink-auditing/headers.optional.html testharness html/semantics/links/links-created-by-a-and-area-elements/htmlanchorelement_attribute-getter-setter.html testharness html/semantics/links/links-created-by-a-and-area-elements/htmlanchorelement_getter.html testharness html/semantics/links/links-created-by-a-and-area-elements/htmlanchorelement_noopener.html +testharness html/semantics/links/links-created-by-a-and-area-elements/non-parsable-url-getter-setter.window.js +testharness html/semantics/links/links-created-by-a-and-area-elements/non-special-opaque-path-url-getter-setter.window.js +testharness html/semantics/links/links-created-by-a-and-area-elements/non-special-url-getter-setter.window.js testharness html/semantics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener.html testharness html/semantics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener_base.html +testharness html/semantics/permission-element/bounded-css-properties.tentative.html +testharness html/semantics/permission-element/bounded-sizes.tentative.html +testharness html/semantics/permission-element/display-css-property.tentative.html +testharness html/semantics/permission-element/invalid-css-properties.tentative.html +testharness html/semantics/permission-element/negative-offset-and-margin.tentative.html +testharness html/semantics/permission-element/no-end-tag-no-contents.tentative.html +testharness html/semantics/permission-element/no-focus.tentative.html +testharness html/semantics/popovers/button-type-reset-popovertarget.tentative.html testharness html/semantics/popovers/hide-other-popover-side-effects.html -testharness html/semantics/popovers/idlharness.tentative.html -testharness html/semantics/popovers/light-dismiss-event-ordering.tentative.html +testharness html/semantics/popovers/label-in-invoker.html +testharness html/semantics/popovers/light-dismiss-event-ordering.html testharness html/semantics/popovers/popover-anchor-display-none.tentative.html testharness html/semantics/popovers/popover-anchor-idl-property.tentative.html testharness html/semantics/popovers/popover-anchor-multicol-display.tentative.html testharness html/semantics/popovers/popover-anchor-nesting.tentative.html -testharness html/semantics/popovers/popover-animated-hide-cleanup.tentative.html -testharness html/semantics/popovers/popover-animation-corner-cases.tentative.html -testharness html/semantics/popovers/popover-attribute-basic.tentative.html -testharness html/semantics/popovers/popover-beforetoggle-opening-event.tentative.html -testharness html/semantics/popovers/popover-document-open.tentative.html -testharness html/semantics/popovers/popover-events.tentative.html -testharness html/semantics/popovers/popover-focus-2.tentative.html -testharness html/semantics/popovers/popover-focus-child-dialog.html -testharness html/semantics/popovers/popover-focus.tentative.html -testharness html/semantics/popovers/popover-invoking-attribute.tentative.html -testharness html/semantics/popovers/popover-light-dismiss-on-scroll.tentative.html -testharness html/semantics/popovers/popover-light-dismiss.tentative.html -testharness html/semantics/popovers/popover-not-keyboard-focusable.tentative.html -testharness html/semantics/popovers/popover-removal-2.tentative.html -testharness html/semantics/popovers/popover-removal.tentative.html -testharness html/semantics/popovers/popover-shadow-dom.tentative.html -testharness html/semantics/popovers/popover-stacking.tentative.html -testharness html/semantics/popovers/popover-target-element-disabled.tentative.html -testharness html/semantics/popovers/popover-top-layer-combinations.tentative.html -testharness html/semantics/popovers/popover-top-layer-interactions.tentative.html -testharness html/semantics/popovers/popover-types.tentative.html -testharness html/semantics/popovers/toggleevent-interface.tentative.html +testharness html/semantics/popovers/popover-anchor-transition.tentative.tentative.html +testharness html/semantics/popovers/popover-attribute-all-elements.html +testharness html/semantics/popovers/popover-attribute-basic.html +testharness html/semantics/popovers/popover-beforetoggle-opening-event.html +testharness html/semantics/popovers/popover-change-type.html +testharness html/semantics/popovers/popover-close-request.html +testharness html/semantics/popovers/popover-css-properties.tentative.html +testharness html/semantics/popovers/popover-document-open.html +testharness html/semantics/popovers/popover-events.html +testharness html/semantics/popovers/popover-focus-2.html +testharness html/semantics/popovers/popover-focus-harness.html +testharness html/semantics/popovers/popover-focus.html +testharness html/semantics/popovers/popover-hover-crash-hang.tentative.html +testharness html/semantics/popovers/popover-hover-hide-hide.tentative.html +testharness html/semantics/popovers/popover-hover-hide-hover.tentative.html +testharness html/semantics/popovers/popover-hover-hide-show.tentative.html +testharness html/semantics/popovers/popover-hover-hide-toggle.tentative.html +testharness html/semantics/popovers/popover-invoker-reset.html +testharness html/semantics/popovers/popover-invoking-attribute-hint.tentative.html +testharness html/semantics/popovers/popover-invoking-attribute.html +testharness html/semantics/popovers/popover-light-dismiss-flat-tree-nested.html +testharness html/semantics/popovers/popover-light-dismiss-flat-tree.html +testharness html/semantics/popovers/popover-light-dismiss-hint.tentative.html +testharness html/semantics/popovers/popover-light-dismiss-on-scroll.html +testharness html/semantics/popovers/popover-light-dismiss-scroll-within.html +testharness html/semantics/popovers/popover-light-dismiss-with-anchor.tentative.html +testharness html/semantics/popovers/popover-light-dismiss.html +testharness html/semantics/popovers/popover-move-documents.html +testharness html/semantics/popovers/popover-not-keyboard-focusable.html +testharness html/semantics/popovers/popover-open-in-beforetoggle.html +testharness html/semantics/popovers/popover-open-overflow-display-2.html +testharness html/semantics/popovers/popover-overlay.html +testharness html/semantics/popovers/popover-removal-2.html +testharness html/semantics/popovers/popover-removal.html +testharness html/semantics/popovers/popover-shadow-dom-anchor.tentative.html +testharness html/semantics/popovers/popover-shadow-dom.html +testharness html/semantics/popovers/popover-shadowhost-focus.html +testharness html/semantics/popovers/popover-stacking-anchor-attribute.tentative.html +testharness html/semantics/popovers/popover-stacking.html +testharness html/semantics/popovers/popover-target-action-hover.tentative.html +testharness html/semantics/popovers/popover-target-element-disabled.html +testharness html/semantics/popovers/popover-top-layer-combinations.html +testharness html/semantics/popovers/popover-top-layer-interactions.html +testharness html/semantics/popovers/popover-top-layer-nesting-anchor.tentative.html +testharness html/semantics/popovers/popover-top-layer-nesting-hints.tentative.html +testharness html/semantics/popovers/popover-top-layer-nesting.html +testharness html/semantics/popovers/popover-types-with-hints.tentative.html +testharness html/semantics/popovers/popover-types.html +testharness html/semantics/popovers/popovertarget-reflection.html +testharness html/semantics/popovers/togglePopover.html +testharness html/semantics/popovers/toggleevent-interface.html testharness html/semantics/rellist-feature-detection.html testharness html/semantics/scripting-1/the-noscript-element/non-html-noscript.html testharness html/semantics/scripting-1/the-script-element/async_001.htm @@ -39597,6 +43912,7 @@ testharness html/semantics/scripting-1/the-script-element/async_008.htm testharness html/semantics/scripting-1/the-script-element/async_009.htm testharness html/semantics/scripting-1/the-script-element/async_010.htm testharness html/semantics/scripting-1/the-script-element/async_011.htm +testharness html/semantics/scripting-1/the-script-element/change-src-attr-prepare-a-script.html testharness html/semantics/scripting-1/the-script-element/css-module/charset-2.html testharness html/semantics/scripting-1/the-script-element/css-module/charset-bom.html testharness html/semantics/scripting-1/the-script-element/css-module/charset.html @@ -39612,11 +43928,6 @@ testharness html/semantics/scripting-1/the-script-element/css-module/referrer-po testharness html/semantics/scripting-1/the-script-element/css-module/relative-urls.html testharness html/semantics/scripting-1/the-script-element/css-module/script-element-css-src.html testharness html/semantics/scripting-1/the-script-element/data-url.html -testharness html/semantics/scripting-1/the-script-element/defer-script/async-script-2.html -testharness html/semantics/scripting-1/the-script-element/defer-script/async-script.html -testharness html/semantics/scripting-1/the-script-element/defer-script/defer-script-xml.xhtml -testharness html/semantics/scripting-1/the-script-element/defer-script/defer-script.html -testharness html/semantics/scripting-1/the-script-element/defer-script/document-write.html testharness html/semantics/scripting-1/the-script-element/emptyish-script-elements.html testharness html/semantics/scripting-1/the-script-element/execution-timing/001.html testharness html/semantics/scripting-1/the-script-element/execution-timing/002.html @@ -39779,15 +44090,17 @@ testharness html/semantics/scripting-1/the-script-element/execution-timing/150-i testharness html/semantics/scripting-1/the-script-element/execution-timing/150-import.html testharness html/semantics/scripting-1/the-script-element/execution-timing/150-noimport-xhtml.xhtml testharness html/semantics/scripting-1/the-script-element/execution-timing/150-noimport.html +testharness html/semantics/scripting-1/the-script-element/execution-timing/non-external-no-import.html testharness html/semantics/scripting-1/the-script-element/fetch-src/alpha/base.html testharness html/semantics/scripting-1/the-script-element/fetch-src/empty-with-base.html testharness html/semantics/scripting-1/the-script-element/fetch-src/empty.html testharness html/semantics/scripting-1/the-script-element/fetch-src/failure.html testharness html/semantics/scripting-1/the-script-element/historical.html -testharness html/semantics/scripting-1/the-script-element/import-assertions/dynamic-import-with-assertion-argument.any.js -testharness html/semantics/scripting-1/the-script-element/import-assertions/empty-assertion-clause.html -testharness html/semantics/scripting-1/the-script-element/import-assertions/invalid-type-assertion-error.html -testharness html/semantics/scripting-1/the-script-element/import-assertions/unsupported-assertion.html +testharness html/semantics/scripting-1/the-script-element/import-attributes/dynamic-import-with-attributes-argument.any.js +testharness html/semantics/scripting-1/the-script-element/import-attributes/empty-attributes-clause.html +testharness html/semantics/scripting-1/the-script-element/import-attributes/invalid-import-errors-order.html +testharness html/semantics/scripting-1/the-script-element/import-attributes/invalid-type-attribute-error.html +testharness html/semantics/scripting-1/the-script-element/import-attributes/unsupported-attribute.html testharness html/semantics/scripting-1/the-script-element/json-module/charset-2.html testharness html/semantics/scripting-1/the-script-element/json-module/charset-bom.any.js testharness html/semantics/scripting-1/the-script-element/json-module/charset.html @@ -39891,6 +44204,10 @@ testharness html/semantics/scripting-1/the-script-element/module/import-subgraph testharness html/semantics/scripting-1/the-script-element/module/imports.html testharness html/semantics/scripting-1/the-script-element/module/inactive-context-import.html testharness html/semantics/scripting-1/the-script-element/module/inline-async-execorder.html +testharness html/semantics/scripting-1/the-script-element/module/inline-async-inserted-execorder.html +testharness html/semantics/scripting-1/the-script-element/module/inline-async-onload.html +testharness html/semantics/scripting-1/the-script-element/module/inline-defer-onload.html +testharness html/semantics/scripting-1/the-script-element/module/inline-no-async-onload.html testharness html/semantics/scripting-1/the-script-element/module/instantiation-error-1.html testharness html/semantics/scripting-1/the-script-element/module/instantiation-error-2.html testharness html/semantics/scripting-1/the-script-element/module/instantiation-error-3.html @@ -39904,6 +44221,7 @@ testharness html/semantics/scripting-1/the-script-element/module/late-namespace- testharness html/semantics/scripting-1/the-script-element/module/late-star-export-request.html testharness html/semantics/scripting-1/the-script-element/module/load-error-events-inline.html testharness html/semantics/scripting-1/the-script-element/module/load-error-events.html +testharness html/semantics/scripting-1/the-script-element/module/module-import-referrer.html testharness html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml testharness html/semantics/scripting-1/the-script-element/module/module-vs-script-1.html testharness html/semantics/scripting-1/the-script-element/module/module-vs-script-2.html @@ -39912,6 +44230,7 @@ testharness html/semantics/scripting-1/the-script-element/module/nomodule-attrib testharness html/semantics/scripting-1/the-script-element/module/referrer-no-referrer.sub.html testharness html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html testharness html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html +testharness html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html testharness html/semantics/scripting-1/the-script-element/module/referrer-same-origin.sub.html testharness html/semantics/scripting-1/the-script-element/module/referrer-strict-policies.sub.html testharness html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html @@ -39920,6 +44239,7 @@ testharness html/semantics/scripting-1/the-script-element/module/single-evaluati testharness html/semantics/scripting-1/the-script-element/module/single-evaluation-2.html testharness html/semantics/scripting-1/the-script-element/module/slow-cycle.html testharness html/semantics/scripting-1/the-script-element/module/specifier-error.html +testharness html/semantics/scripting-1/the-script-element/module/top-level-await/sibling-imports-not-blocked.any.js testharness html/semantics/scripting-1/the-script-element/module/type.html testharness html/semantics/scripting-1/the-script-element/moving-between-documents-during-evaluation.html testharness html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-createHTMLDocument-fetch-error-external-classic.html @@ -39986,6 +44306,7 @@ testharness html/semantics/scripting-1/the-script-element/nomodule-set-on-inline testharness html/semantics/scripting-1/the-script-element/nomodule-set-on-inline-module-script.html testharness html/semantics/scripting-1/the-script-element/nomodule-set-on-synchronously-loaded-classic-scripts.html testharness html/semantics/scripting-1/the-script-element/promise-reject-and-remove.html +testharness html/semantics/scripting-1/the-script-element/remove-src-attr-prepare-a-script.html testharness html/semantics/scripting-1/the-script-element/script-charset-01.html testharness html/semantics/scripting-1/the-script-element/script-charset-02.html testharness html/semantics/scripting-1/the-script-element/script-charset-03.html @@ -40013,6 +44334,7 @@ testharness html/semantics/scripting-1/the-script-element/script-type-and-langua testharness html/semantics/scripting-1/the-script-element/script-type-and-language-js-xhtml.xhtml testharness html/semantics/scripting-1/the-script-element/script-type-and-language-js.html testharness html/semantics/scripting-1/the-script-element/script-type-and-language-with-params.html +testharness html/semantics/scripting-1/the-script-element/script-type-whitespace.html testharness html/semantics/scripting-1/the-script-element/scripting-enabled.html testharness html/semantics/scripting-1/the-template-element/additions-to-parsing-xhtml-documents/node-document.html testharness html/semantics/scripting-1/the-template-element/additions-to-parsing-xhtml-documents/tag-name.xhtml @@ -40035,11 +44357,14 @@ testharness html/semantics/scripting-1/the-template-element/template-element/tem testharness html/semantics/scripting-1/the-template-element/template-element/template-descendant-body.html testharness html/semantics/scripting-1/the-template-element/template-element/template-descendant-frameset.html testharness html/semantics/scripting-1/the-template-element/template-element/template-descendant-head.html +testharness html/semantics/selectors/case-sensitivity/values.window.js testharness html/semantics/selectors/pseudo-classes/active-disabled.html testharness html/semantics/selectors/pseudo-classes/autofill.html +testharness html/semantics/selectors/pseudo-classes/checked-indeterminate.window.js testharness html/semantics/selectors/pseudo-classes/checked-type-change.html testharness html/semantics/selectors/pseudo-classes/checked.html testharness html/semantics/selectors/pseudo-classes/default.html +testharness html/semantics/selectors/pseudo-classes/dir-dynamic.html testharness html/semantics/selectors/pseudo-classes/dir-html-input-dynamic-text.html testharness html/semantics/selectors/pseudo-classes/dir.html testharness html/semantics/selectors/pseudo-classes/dir01.html @@ -40050,6 +44375,7 @@ testharness html/semantics/selectors/pseudo-classes/focus.html testharness html/semantics/selectors/pseudo-classes/indeterminate-radio.html testharness html/semantics/selectors/pseudo-classes/indeterminate-type-change.html testharness html/semantics/selectors/pseudo-classes/indeterminate.html +testharness html/semantics/selectors/pseudo-classes/input-checkbox-switch.tentative.window.js testharness html/semantics/selectors/pseudo-classes/inrange-outofrange-type-change.html testharness html/semantics/selectors/pseudo-classes/inrange-outofrange.html testharness html/semantics/selectors/pseudo-classes/invalid-after-clone.html @@ -40096,6 +44422,17 @@ testharness html/semantics/text-level-semantics/the-a-element/a-stringifier.html testharness html/semantics/text-level-semantics/the-a-element/a.text-getter-01.html testharness html/semantics/text-level-semantics/the-a-element/a.text-setter-01.html testharness html/semantics/text-level-semantics/the-time-element/001.html +testharness html/semantics/the-link-element/attr-link-fetchpriority.html +testharness html/syntax/charset/inheritance-bogus-meta-utf-8.html +testharness html/syntax/charset/inheritance-bogus-meta.html +testharness html/syntax/charset/meta-charset-double-quotes.html +testharness html/syntax/charset/meta-charset-no-quotes.html +testharness html/syntax/charset/meta-charset-single-quotes.html +testharness html/syntax/charset/meta-commented-out.html +testharness html/syntax/charset/meta-http-equiv-attribute-order.html +testharness html/syntax/charset/meta-http-equiv-double-quotes.html +testharness html/syntax/charset/meta-http-equiv-no-quotes.html +testharness html/syntax/charset/meta-http-equiv-single-quotes.html testharness html/syntax/charset/with-inheritance.html testharness html/syntax/charset/without-inheritance.html testharness html/syntax/charset/xhr.html @@ -40135,6 +44472,7 @@ testharness html/syntax/parsing/html5lib_innerHTML_adoption01.html testharness html/syntax/parsing/html5lib_innerHTML_foreign-fragment.html testharness html/syntax/parsing/html5lib_innerHTML_math.html testharness html/syntax/parsing/html5lib_innerHTML_svg.html +testharness html/syntax/parsing/html5lib_innerHTML_template.html testharness html/syntax/parsing/html5lib_innerHTML_tests4.html testharness html/syntax/parsing/html5lib_innerHTML_tests6.html testharness html/syntax/parsing/html5lib_innerHTML_tests7.html @@ -40147,11 +44485,13 @@ testharness html/syntax/parsing/html5lib_namespace-sensitivity.html testharness html/syntax/parsing/html5lib_pending-spec-changes-plain-text-unsafe.html testharness html/syntax/parsing/html5lib_pending-spec-changes.html testharness html/syntax/parsing/html5lib_plain-text-unsafe.html +testharness html/syntax/parsing/html5lib_quirks01.html testharness html/syntax/parsing/html5lib_ruby.html testharness html/syntax/parsing/html5lib_scriptdata01.html testharness html/syntax/parsing/html5lib_scripted_adoption01.html testharness html/syntax/parsing/html5lib_scripted_ark.html testharness html/syntax/parsing/html5lib_scripted_webkit01.html +testharness html/syntax/parsing/html5lib_search-element.html testharness html/syntax/parsing/html5lib_tables01.html testharness html/syntax/parsing/html5lib_template.html testharness html/syntax/parsing/html5lib_tests1.html @@ -40248,6 +44588,8 @@ testharness html/syntax/speculative-parsing/generated/document-write/meta-csp-im testharness html/syntax/speculative-parsing/generated/document-write/meta-csp-img-src-none.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/meta-referrer-no-referrer-img-src.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/meta-viewport-link-stylesheet-media.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/nested-template-shadowrootmode-1.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/nested-template-shadowrootmode-2.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/picture-source-br-img.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/picture-source-no-img.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/picture-source-nomatch-media.tentative.sub.html @@ -40268,7 +44610,12 @@ testharness html/syntax/speculative-parsing/generated/document-write/svg-image-x testharness html/syntax/speculative-parsing/generated/document-write/svg-script-href.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/svg-script-src.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/svg-script-xlinkhref.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/template-img-src.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/template-link-stylesheet.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/template-script-src.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/template-shadowrootmode-img-src.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/template-shadowrootmode-link-stylesheet.tentative.sub.html +testharness html/syntax/speculative-parsing/generated/document-write/template-shadowrootmode-script-src.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/video-poster.tentative.sub.html testharness html/syntax/speculative-parsing/generated/document-write/xmp-script-src.tentative.sub.html testharness html/syntax/speculative-parsing/generated/page-load/base-href-script-src.tentative.html @@ -40301,6 +44648,8 @@ testharness html/syntax/speculative-parsing/generated/page-load/meta-csp-img-src testharness html/syntax/speculative-parsing/generated/page-load/meta-csp-img-src-none.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/meta-referrer-no-referrer-img-src.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/meta-viewport-link-stylesheet-media.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/nested-template-shadowrootmode-1.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/nested-template-shadowrootmode-2.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/picture-source-br-img.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/picture-source-no-img.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/picture-source-nomatch-media.tentative.html @@ -40321,7 +44670,12 @@ testharness html/syntax/speculative-parsing/generated/page-load/svg-image-xlinkh testharness html/syntax/speculative-parsing/generated/page-load/svg-script-href.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/svg-script-src.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/svg-script-xlinkhref.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/template-img-src.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/template-link-stylesheet.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/template-script-src.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/template-shadowrootmode-img-src.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/template-shadowrootmode-link-stylesheet.tentative.html +testharness html/syntax/speculative-parsing/generated/page-load/template-shadowrootmode-script-src.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/video-poster.tentative.html testharness html/syntax/speculative-parsing/generated/page-load/xmp-script-src.tentative.html testharness html/syntax/xmldecl/xmldecl-1.html @@ -40343,8 +44697,6 @@ testharness html/user-activation/activation-trigger-mouse-left.html testharness html/user-activation/activation-trigger-mouse-right.html testharness html/user-activation/activation-trigger-pointerevent.html testharness html/user-activation/chained-setTimeout.html -testharness html/user-activation/consumption-crossorigin.sub.tentative.html -testharness html/user-activation/consumption-sameorigin.tentative.html testharness html/user-activation/detached-iframe.html testharness html/user-activation/message-event-activation-api-iframe-cross-origin.sub.tentative.html testharness html/user-activation/message-event-init.tentative.html @@ -40458,6 +44810,18 @@ testharness html/webappapis/dynamic-markup-insertion/document-write/write-active testharness html/webappapis/dynamic-markup-insertion/document-writeln/document.writeln-01.xhtml testharness html/webappapis/dynamic-markup-insertion/document-writeln/document.writeln-02.html testharness html/webappapis/dynamic-markup-insertion/document-writeln/document.writeln-03.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-encoding.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-style-attribute.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-url-base-pushstate.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-url-base.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-url-moretests.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-url-pushstate.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe-url.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Document-parseHTMLUnsafe.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/Element-setHTMLUnsafe-04.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/setHTMLUnsafe-CEReactions.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/setHTMLUnsafe-xml.html +testharness html/webappapis/dynamic-markup-insertion/html-unsafe-methods/setHTMLUnsafe.html testharness html/webappapis/dynamic-markup-insertion/opening-the-input-stream/002.html testharness html/webappapis/dynamic-markup-insertion/opening-the-input-stream/004.html testharness html/webappapis/dynamic-markup-insertion/opening-the-input-stream/006.html @@ -40519,6 +44883,7 @@ testharness html/webappapis/scripting/event-loops/fully_active_document.window.j testharness html/webappapis/scripting/event-loops/microtask_after_raf.html testharness html/webappapis/scripting/event-loops/microtask_after_script.html testharness html/webappapis/scripting/event-loops/task_microtask_ordering.html +testharness html/webappapis/scripting/event-loops/update-the-rendering-resize-autofocus.html testharness html/webappapis/scripting/events/body-onload.html testharness html/webappapis/scripting/events/compile-event-handler-lexical-scopes-form-owner.html testharness html/webappapis/scripting/events/compile-event-handler-lexical-scopes.html @@ -40530,6 +44895,8 @@ testharness html/webappapis/scripting/events/event-handler-attributes-frameset-w testharness html/webappapis/scripting/events/event-handler-attributes-windowless-body.html testharness html/webappapis/scripting/events/event-handler-handleEvent-ignored.html testharness html/webappapis/scripting/events/event-handler-javascript.html +testharness html/webappapis/scripting/events/event-handler-onmove-01.tentative.html +testharness html/webappapis/scripting/events/event-handler-onmove-02.tentative.html testharness html/webappapis/scripting/events/event-handler-onresize.html testharness html/webappapis/scripting/events/event-handler-processing-algorithm-error/body-element-synthetic-errorevent.html testharness html/webappapis/scripting/events/event-handler-processing-algorithm-error/body-element-synthetic-event.html @@ -40574,6 +44941,7 @@ testharness html/webappapis/scripting/processing-model-2/compile-error-in-setTim testharness html/webappapis/scripting/processing-model-2/compile-error-same-origin-with-hash.html testharness html/webappapis/scripting/processing-model-2/compile-error-same-origin.html testharness html/webappapis/scripting/processing-model-2/compile-error.html +testharness html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/atomics-wait-async.https.any.js testharness html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-failure.https.any.js testharness html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-success.any.js testharness html/webappapis/scripting/processing-model-2/integration-with-the-javascript-job-queue/promise-job-entry-different-function-realm.html @@ -40602,6 +44970,7 @@ testharness html/webappapis/scripting/processing-model-2/unhandled-promise-rejec testharness html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.html testharness html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.serviceworker.https.html testharness html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.sharedworker.html +testharness html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-resolution-order.html testharness html/webappapis/scripting/processing-model-2/window-onerror-parse-error.html testharness html/webappapis/scripting/processing-model-2/window-onerror-runtime-error-throw.html testharness html/webappapis/scripting/processing-model-2/window-onerror-runtime-error.html @@ -40617,14 +44986,19 @@ testharness html/webappapis/structured-clone/structured-clone.any.js testharness html/webappapis/system-state-and-capabilities/the-navigator-object/clientinformation.window.js testharness html/webappapis/system-state-and-capabilities/the-navigator-object/historical.https.window.js testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator-indexed.html -testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator-window-controls-overlay.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator-window-controls-overlay.tentative.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator.any.js -testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator_user_agent.https.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator_user_agent.https.tentative.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigator_user_agent.tentative.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigatorcookies-cookieenabled-true.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/navigatorlanguage.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/per-global.window.js testharness html/webappapis/system-state-and-capabilities/the-navigator-object/plugins-and-mimetypes.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol-handler-fragment-nosw.https.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol-handler-fragment.https.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol-handler-path.https.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol-handler-query-nosw.https.html +testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol-handler-query.https.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.tentative.https.html testharness html/webappapis/system-state-and-capabilities/the-navigator-object/secure_context.html @@ -40645,16 +45019,24 @@ testharness html/webappapis/user-prompts/cannot-show-simple-dialogs/prompt-diffe testharness html/webappapis/user-prompts/print-during-beforeunload.html testharness html/webappapis/user-prompts/print-during-unload.html testharness html/webappapis/user-prompts/print-in-detached-frame.html +testharness https-upgrades/tentative/fallback.sub.html +testharness https-upgrades/tentative/http-redirecting-to-http-redirecting-to-http.https.sub.html +testharness https-upgrades/tentative/http-redirecting-to-http.https.sub.html +testharness https-upgrades/tentative/http-redirecting-to-https.https.sub.html +testharness https-upgrades/tentative/referrer.https.sub.html +testharness https-upgrades/tentative/upgrade.https.sub.html testharness idle-detection/basics.tentative.https.window.js testharness idle-detection/idle-detection-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html testharness idle-detection/idle-detection-allowed-by-permissions-policy-attribute.https.sub.html testharness idle-detection/idle-detection-allowed-by-permissions-policy.https.sub.html testharness idle-detection/idle-detection-default-permissions-policy.https.sub.html +testharness idle-detection/idle-detection-detached-frame.https.html testharness idle-detection/idle-detection-disabled-by-permissions-policy.https.sub.html testharness idle-detection/idle-permission.tentative.https.window.js testharness idle-detection/idlharness-worker.https.window.js testharness idle-detection/idlharness.https.window.js testharness idle-detection/interceptor.https.html +testharness idle-detection/page-visibility.https.html testharness imagebitmap-renderingcontext/bitmaprenderer-as-imagesource.html testharness imagebitmap-renderingcontext/context-creation-offscreen-with-alpha.html testharness imagebitmap-renderingcontext/context-creation-offscreen.html @@ -40685,21 +45067,29 @@ testharness import-maps/csp/nonce.html testharness import-maps/csp/unsafe-inline.html testharness import-maps/data-driven/resolving.html testharness import-maps/data-url-specifiers.sub.html +testharness import-maps/dynamic-integrity.html testharness import-maps/http-url-like-specifiers.sub.html testharness import-maps/import-maps-base-url.sub.html testharness import-maps/module-map-key.html testharness import-maps/multiple-import-maps/basic.html testharness import-maps/multiple-import-maps/with-errors.html +testharness import-maps/no-referencing-script-integrity-valid.html +testharness import-maps/no-referencing-script-integrity.html +testharness import-maps/nonimport-integrity.html testharness import-maps/not-as-classic-script.html testharness import-maps/script-supports-importmap.html +testharness import-maps/static-integrity.html testharness inert/dynamic-inert-on-focused-element.html testharness inert/inert-and-contenteditable.html +testharness inert/inert-and-find-flat-tree.html +testharness inert/inert-and-find.html testharness inert/inert-canvas-fallback-content.html testharness inert/inert-computed-style.html testharness inert/inert-does-not-match-disabled-selector.html testharness inert/inert-iframe-hittest.html testharness inert/inert-iframe-tabbing.html testharness inert/inert-in-shadow-dom.html +testharness inert/inert-inlines-around-selection-range-in-contenteditable.html testharness inert/inert-inlines.html testharness inert/inert-label-focus.html testharness inert/inert-node-is-uneditable.html @@ -40709,8 +45099,10 @@ testharness inert/inert-on-non-html.html testharness inert/inert-on-slots.html testharness inert/inert-pseudo-element-hittest.html testharness inert/inert-svg-hittest.html +testharness inert/inert-with-fullscreen-element.html testharness inert/inert-with-modal-dialog-001.html testharness inert/inert-with-modal-dialog-002.html +testharness inert/inert-with-modal-dialog-003.html testharness infrastructure/assumptions/allowed-to-play.html testharness infrastructure/assumptions/cookie.html testharness infrastructure/assumptions/document-fonts-ready.html @@ -40729,6 +45121,8 @@ testharness infrastructure/expected-fail/uncaught-exception.html testharness infrastructure/expected-fail/unhandled-rejection-following-subtest.html testharness infrastructure/expected-fail/unhandled-rejection-single-test.html testharness infrastructure/expected-fail/unhandled-rejection.html +testharness infrastructure/expected-fail/user-prompt.html +testharness infrastructure/expected-fail/window-onload-test.html testharness infrastructure/server/context.any.js testharness infrastructure/server/http2-context.sub.h2.any.js testharness infrastructure/server/http2-websocket.sub.h2.any.js @@ -40759,6 +45153,7 @@ testharness infrastructure/testdriver/actions/multiTouchPointsWithPause.html testharness infrastructure/testdriver/actions/pause.html testharness infrastructure/testdriver/actions/penPointerEventProperties.html testharness infrastructure/testdriver/actions/penPointerEvents.html +testharness infrastructure/testdriver/actions/popup.html testharness infrastructure/testdriver/actions/textEditCommands.html testharness infrastructure/testdriver/actions/touchPointerEventProperties.html testharness infrastructure/testdriver/actions/wheelScroll.html @@ -40777,12 +45172,19 @@ testharness infrastructure/testdriver/get_all_cookies.sub.html testharness infrastructure/testdriver/get_all_cookies.sub.https.html testharness infrastructure/testdriver/get_named_cookie.sub.html testharness infrastructure/testdriver/get_named_cookie.sub.https.html +testharness infrastructure/testdriver/minimize_restore_popup.html testharness infrastructure/testdriver/send_keys.html +testharness infrastructure/testdriver/set_get_window_rect.html testharness infrastructure/testdriver/set_permission.https.html testharness infrastructure/testdriver/virtual_authenticator.html testharness infrastructure/testharness/lone-surrogates.html +testharness infrastructure/webdriver/bidi/subscription.html testharness input-device-capabilities/idlharness.window.js +testharness input-events/contenteditable-insertfrompaste-type-inputevent-data.html testharness input-events/idlharness.window.js +testharness input-events/input-events-arrow-key-on-number-input-delete-document.html +testharness input-events/input-events-arrow-key-on-number-input-prevent-default.html +testharness input-events/input-events-arrow-key-on-number-input.html testharness input-events/input-events-cut-paste.html testharness input-events/input-events-exec-command.html testharness input-events/input-events-get-target-ranges-backspace.tentative.html @@ -40794,8 +45196,14 @@ testharness input-events/input-events-get-target-ranges-joining-dl-element-and-a testharness input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html testharness input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html testharness input-events/input-events-get-target-ranges.html +testharness input-events/input-events-spin-button-click-on-number-input-delete-document.html +testharness input-events/input-events-spin-button-click-on-number-input-prevent-default.html +testharness input-events/input-events-spin-button-click-on-number-input.html testharness input-events/input-events-typing.html testharness input-events/select-event-drag-remove.html +testharness input-events/textarea-insertfrompaste-type-inputevent-data-withnewline-atend.html +testharness input-events/textarea-insertfrompaste-type-inputevent-data-withnewline-atstart.html +testharness input-events/textarea-insertfrompaste-type-inputevent-data.html testharness installedapp/idlharness.https.window.js testharness installedapp/installedapp.https.window.js testharness intersection-observer/bounding-box.html @@ -40810,7 +45218,10 @@ testharness intersection-observer/display-none.html testharness intersection-observer/document-scrolling-element-root.html testharness intersection-observer/edge-inclusive-intersection.html testharness intersection-observer/empty-root-margin.html -testharness intersection-observer/explicit-root-different-document.tentative.html +testharness intersection-observer/explicit-root-different-document.html +testharness intersection-observer/fixed-position-child-scroll.html +testharness intersection-observer/fixed-position-iframe-scroll.html +testharness intersection-observer/fixed-position-scroll.html testharness intersection-observer/idlharness.window.js testharness intersection-observer/iframe-no-root-with-wrapping-scroller.html testharness intersection-observer/iframe-no-root.html @@ -40826,30 +45237,61 @@ testharness intersection-observer/isIntersecting-threshold.html testharness intersection-observer/multiple-targets.html testharness intersection-observer/multiple-thresholds.html testharness intersection-observer/nested-cross-origin-iframe.sub.html -testharness intersection-observer/not-in-containing-block-chain.tentative.html +testharness intersection-observer/not-in-containing-block-chain.html testharness intersection-observer/observer-attributes.html testharness intersection-observer/observer-callback-arguments.html testharness intersection-observer/observer-exceptions.html testharness intersection-observer/observer-without-js-reference.html +testharness intersection-observer/padding-clip.html testharness intersection-observer/remove-element.html testharness intersection-observer/root-margin-root-element.html testharness intersection-observer/root-margin-rounding.html testharness intersection-observer/root-margin.html +testharness intersection-observer/root-vertical-rl.html testharness intersection-observer/rtl-clipped-root.html testharness intersection-observer/same-document-no-root.html testharness intersection-observer/same-document-root.html testharness intersection-observer/same-document-with-document-root.html testharness intersection-observer/same-document-zero-size-target.html testharness intersection-observer/same-origin-grand-child-iframe.sub.html +testharness intersection-observer/scroll-and-root-margin.html +testharness intersection-observer/scroll-margin-4-val.html +testharness intersection-observer/scroll-margin-clip-path.html +testharness intersection-observer/scroll-margin-dynamic.html +testharness intersection-observer/scroll-margin-horizontal.html +testharness intersection-observer/scroll-margin-iframe.html +testharness intersection-observer/scroll-margin-nested-2.html +testharness intersection-observer/scroll-margin-nested-3.html +testharness intersection-observer/scroll-margin-nested.html +testharness intersection-observer/scroll-margin-no-intersect.html +testharness intersection-observer/scroll-margin-non-scrolling-root.html +testharness intersection-observer/scroll-margin-not-contained.html +testharness intersection-observer/scroll-margin-percent.html +testharness intersection-observer/scroll-margin-with-border-outline.html +testharness intersection-observer/scroll-margin-zero.html +testharness intersection-observer/scroll-margin.html testharness intersection-observer/shadow-content.html +testharness intersection-observer/svg-clipped-rect-target.html +testharness intersection-observer/svg-container-element.html +testharness intersection-observer/svg-group-target.html +testharness intersection-observer/svg-image.html +testharness intersection-observer/svg-intersection-with-fractional-bounds-2.html +testharness intersection-observer/svg-intersection-with-fractional-bounds.html +testharness intersection-observer/svg-rect-target.html +testharness intersection-observer/svg-stroke-change.html +testharness intersection-observer/svg-target-changes-position.html +testharness intersection-observer/svg-transformed-rect-target.html +testharness intersection-observer/svg-viewbox.html testharness intersection-observer/target-in-detached-document.html testharness intersection-observer/target-in-different-window.html testharness intersection-observer/target-is-root.html testharness intersection-observer/text-target.html testharness intersection-observer/timestamp.html +testharness intersection-observer/transform-animation.html testharness intersection-observer/unclipped-root.html testharness intersection-observer/v2/animated-occlusion.html testharness intersection-observer/v2/blur-filter.html +testharness intersection-observer/v2/box-reflect.html testharness intersection-observer/v2/box-shadow.html testharness intersection-observer/v2/cross-origin-effects.sub.html testharness intersection-observer/v2/cross-origin-occlusion.sub.html @@ -40865,8 +45307,10 @@ testharness intersection-observer/v2/simple-occlusion-svg-foreign-object.html testharness intersection-observer/v2/simple-occlusion.html testharness intersection-observer/v2/text-editor-occlusion.html testharness intersection-observer/v2/text-shadow.html +testharness intersection-observer/visibility-hidden.html testharness intersection-observer/zero-area-element-hidden.html testharness intersection-observer/zero-area-element-visible.html +testharness intersection-observer/zoom-scaled-target.html testharness intervention-reporting/idlharness.any.js testharness is-input-pending/idlharness.window.js testharness is-input-pending/security/cross-origin-subframe-complex-clip.sub.html @@ -40938,6 +45382,8 @@ testharness keyboard-map/navigator-keyboard-map-blocked-from-iframe.https.html testharness keyboard-map/navigator-keyboard-map-two-parallel-requests.https.html testharness keyboard-map/navigator-keyboard-map-two-sequential-requests.https.html testharness keyboard-map/navigator-keyboard-map.https.html +testharness language_detection/canDetect.tentative.window.js +testharness language_detection/detect-en.tentative.window.js testharness largest-contentful-paint/animated/observe-animated-image-gif.tentative.html testharness largest-contentful-paint/animated/observe-animated-image-webp.tentative.html testharness largest-contentful-paint/animated/observe-animated-image.tentative.html @@ -40945,6 +45391,8 @@ testharness largest-contentful-paint/animated/observe-cross-origin-animated-imag testharness largest-contentful-paint/animated/observe-cross-origin-tao-animated-image.tentative.html testharness largest-contentful-paint/animated/observe-non-animated-image.tentative.html testharness largest-contentful-paint/animated/observe-video.tentative.html +testharness largest-contentful-paint/background-image-set-image.html +testharness largest-contentful-paint/broken-image-icon.html testharness largest-contentful-paint/contracted-image.html testharness largest-contentful-paint/cross-origin-image.sub.html testharness largest-contentful-paint/element-only-when-fully-active.html @@ -40968,28 +45416,35 @@ testharness largest-contentful-paint/invisible-images.html testharness largest-contentful-paint/larger-image.html testharness largest-contentful-paint/larger-text.html testharness largest-contentful-paint/loadTime-after-appendChild.html -testharness largest-contentful-paint/mouseover-heuristics-background.tentative.html -testharness largest-contentful-paint/mouseover-heuristics-element.tentative.html +testharness largest-contentful-paint/multiple-image-same-src.html testharness largest-contentful-paint/multiple-redirects-TAO.html testharness largest-contentful-paint/non-tao-image-load-after-fcp.tentative.html testharness largest-contentful-paint/non-tao-image-load-before-fcp-render-after.tentative.html testharness largest-contentful-paint/non-tao-image-load-before-fcp-render-at-fcp.tentative.html testharness largest-contentful-paint/non-tao-image-subsequent-lcp-candidate.tentative.html testharness largest-contentful-paint/observe-after-untrusted-scroll.html +testharness largest-contentful-paint/observe-css-generated-image.html testharness largest-contentful-paint/observe-css-generated-text.html testharness largest-contentful-paint/observe-image.html +testharness largest-contentful-paint/observe-mathml.html +testharness largest-contentful-paint/observe-random-namespace.html testharness largest-contentful-paint/observe-svg-background-image.html testharness largest-contentful-paint/observe-svg-data-uri-background-image.html testharness largest-contentful-paint/observe-svg-data-uri-image.html testharness largest-contentful-paint/observe-svg-image.html testharness largest-contentful-paint/observe-text.html testharness largest-contentful-paint/placeholder-image.html +testharness largest-contentful-paint/progressively-loaded-image.html testharness largest-contentful-paint/redirects-tao-star.html testharness largest-contentful-paint/repeated-image.html +testharness largest-contentful-paint/resized-image-not-reconsidered.html testharness largest-contentful-paint/same-origin-redirects.html testharness largest-contentful-paint/supported-lcp-type.html testharness largest-contentful-paint/text-with-display-style.html testharness largest-contentful-paint/toJSON.html +testharness largest-contentful-paint/transparent-text-with-shadow.html +testharness largest-contentful-paint/transparent-text-with-text-stroke.html +testharness largest-contentful-paint/transparent-text.html testharness largest-contentful-paint/update-on-style-change.tentative.html testharness largest-contentful-paint/video-data-uri.html testharness largest-contentful-paint/video-poster.html @@ -41102,9 +45557,14 @@ testharness loading/early-hints/iframe-coep-disallow.h2.html testharness loading/early-hints/iframe-pdf.h2.window.js testharness loading/early-hints/iframe-x-frame-options-deny.h2.window.js testharness loading/early-hints/invalid-headers-in-early-hints.h2.window.js +testharness loading/early-hints/modulepreload-as-worker-cross-origin.h2.window.js +testharness loading/early-hints/modulepreload-as-worker.h2.window.js +testharness loading/early-hints/modulepreload-cross-origin.h2.window.js testharness loading/early-hints/modulepreload-in-early-hints.h2.window.js testharness loading/early-hints/multiple-early-hints-responses.h2.window.js testharness loading/early-hints/preconnect-in-early-hints.h2.window.js +testharness loading/early-hints/preload-fetch.h2.window.js +testharness loading/early-hints/preload-fetchpriority.h2.window.js testharness loading/early-hints/preload-finished-before-final-response.h2.window.js testharness loading/early-hints/preload-finished-while-receiving-final-response-body.h2.window.js testharness loading/early-hints/preload-in-flight-when-consumed.h2.window.js @@ -41122,13 +45582,42 @@ testharness loading/early-hints/referrer-policy-origin-when-cross-origin.h2.wind testharness loading/early-hints/referrer-policy-origin.h2.window.js testharness loading/early-hints/referrer-policy-same-origin.h2.window.js testharness loading/early-hints/referrer-policy-unsafe-url.h2.window.js -testharness loading/preloader-css-import-no-quote.tentative.html -testharness loading/preloader-css-import-no-semicolon.tentative.html -testharness loading/preloader-css-import-no-space.tentative.html -testharness loading/preloader-css-import-single-quote.tentative.html -testharness loading/preloader-css-import.tentative.html -testharness loading/preloader-link-media.tentative.html -testharness loading/preloader-template.tentative.html +testharness loading/preloader-css-import-no-quote.html +testharness loading/preloader-css-import-no-semicolon.html +testharness loading/preloader-css-import-no-space.html +testharness loading/preloader-css-import-single-quote.html +testharness loading/preloader-css-import.html +testharness loading/preloader-link-media.html +testharness loading/preloader-template.html +testharness long-animation-frame/tentative/loaf-basic.html +testharness long-animation-frame/tentative/loaf-blocking-duration.html +testharness long-animation-frame/tentative/loaf-buffered.html +testharness long-animation-frame/tentative/loaf-event-blocking-duration.html +testharness long-animation-frame/tentative/loaf-event-listener.html +testharness long-animation-frame/tentative/loaf-first-ui-event.html +testharness long-animation-frame/tentative/loaf-idle.html +testharness long-animation-frame/tentative/loaf-iframe-crossorigin.html +testharness long-animation-frame/tentative/loaf-iframe-same-origin.html +testharness long-animation-frame/tentative/loaf-iframe-self.html +testharness long-animation-frame/tentative/loaf-pause-duration.html +testharness long-animation-frame/tentative/loaf-pointer-without-render-iframe.html +testharness long-animation-frame/tentative/loaf-pointer-without-render.html +testharness long-animation-frame/tentative/loaf-popup.html +testharness long-animation-frame/tentative/loaf-promise.html +testharness long-animation-frame/tentative/loaf-script-block.html +testharness long-animation-frame/tentative/loaf-script-nested-callback.html +testharness long-animation-frame/tentative/loaf-script-window-attribution.html +testharness long-animation-frame/tentative/loaf-source-location-redirect.html +testharness long-animation-frame/tentative/loaf-source-location.html +testharness long-animation-frame/tentative/loaf-stream-source-location.html +testharness long-animation-frame/tentative/loaf-stream.html +testharness long-animation-frame/tentative/loaf-supportedEntryTypes.html +testharness long-animation-frame/tentative/loaf-timeline.html +testharness long-animation-frame/tentative/loaf-toJSON.html +testharness long-animation-frame/tentative/loaf-ui-event-render-start.html +testharness long-animation-frame/tentative/loaf-user-callback.html +testharness long-animation-frame/tentative/loaf-visibility.html +testharness long-animation-frame/tentative/loaf-window-only.worker.js testharness longtask-timing/buffered-flag.window.js testharness longtask-timing/containerNames.html testharness longtask-timing/containerTypes.html @@ -41136,6 +45625,7 @@ testharness longtask-timing/idlharness.window.js testharness longtask-timing/long-microtask.window.js testharness longtask-timing/longtask-attributes.html testharness longtask-timing/longtask-before-observer.window.js +testharness longtask-timing/longtask-detach-frame.html testharness longtask-timing/longtask-in-childiframe-crossorigin.html testharness longtask-timing/longtask-in-childiframe.html testharness longtask-timing/longtask-in-externalscript.html @@ -41143,6 +45633,7 @@ testharness longtask-timing/longtask-in-parentiframe.html testharness longtask-timing/longtask-in-raf.html testharness longtask-timing/longtask-in-sibling-iframe-crossorigin.html testharness longtask-timing/longtask-in-sibling-iframe.html +testharness longtask-timing/longtask-promise.html testharness longtask-timing/longtask-sync-xhr.html testharness longtask-timing/longtask-tojson.html testharness longtask-timing/shared-renderer/longtask-in-new-window.html @@ -41161,6 +45652,7 @@ testharness magnetometer/idlharness.https.window.js testharness managed/managed-config-error.https.window.js testharness managed/managed-config-success.https.window.js testharness mathml/presentation-markup/direction/direction.html +testharness mathml/presentation-markup/fractions/default-mfrac-padding-style.html testharness mathml/presentation-markup/fractions/frac-1.html testharness mathml/presentation-markup/fractions/frac-linethickness-002.html testharness mathml/presentation-markup/fractions/frac-parameters-1.html @@ -41171,12 +45663,15 @@ testharness mathml/presentation-markup/mpadded/mpadded-001.html testharness mathml/presentation-markup/mpadded/mpadded-002.html testharness mathml/presentation-markup/mpadded/mpadded-003.html testharness mathml/presentation-markup/mpadded/mpadded-percentage-002.html +testharness mathml/presentation-markup/mpadded/mpadded-rendering-from-in-flow.html testharness mathml/presentation-markup/mrow/inferred-mrow-baseline.html testharness mathml/presentation-markup/mrow/inferred-mrow-stretchy.html testharness mathml/presentation-markup/mrow/legacy-mrow-like-elements-001.html testharness mathml/presentation-markup/mrow/legacy-mstyle-attributes.html testharness mathml/presentation-markup/mrow/merror-001.html -testharness mathml/presentation-markup/mrow/mrow-fallback.html +testharness mathml/presentation-markup/mrow/mphantom-001.html +testharness mathml/presentation-markup/mrow/mrow-fallback-001.html +testharness mathml/presentation-markup/mrow/mrow-fallback-002.html testharness mathml/presentation-markup/mrow/mrow-preferred-width.html testharness mathml/presentation-markup/mrow/no-spacing.html testharness mathml/presentation-markup/mrow/spacing.html @@ -41189,6 +45684,7 @@ testharness mathml/presentation-markup/operators/largeop-hit-testing.html testharness mathml/presentation-markup/operators/mo-axis-height-1.html testharness mathml/presentation-markup/operators/mo-font-relative-lengths-001.html testharness mathml/presentation-markup/operators/mo-minsize-maxsize-001.html +testharness mathml/presentation-markup/operators/mo-no-vertical-adjustment-for-basic-binary-operators.html testharness mathml/presentation-markup/operators/mo-stretch-properties-001.html testharness mathml/presentation-markup/operators/mo-stretch-properties-dynamic-001.html testharness mathml/presentation-markup/operators/operator-dictionary-combining.html @@ -41222,10 +45718,15 @@ testharness mathml/presentation-markup/operators/operator-dictionary-symmetric-0 testharness mathml/presentation-markup/operators/operator-dictionary-symmetric-004.html testharness mathml/presentation-markup/operators/operator-dictionary-symmetric-005.html testharness mathml/presentation-markup/operators/operator-dictionary-symmetric-006.html +testharness mathml/presentation-markup/operators/size-and-position-of-stretchy-fences-with-default-font-001.html +testharness mathml/presentation-markup/operators/stretchy-largeop-with-default-font-1.html +testharness mathml/presentation-markup/operators/stretchy-largeop-with-default-font-2.html +testharness mathml/presentation-markup/operators/stretchy-largeop-with-default-font-3.html testharness mathml/presentation-markup/radicals/root-parameters-1.html testharness mathml/presentation-markup/radicals/root-parameters-2.html testharness mathml/presentation-markup/scripts/cramped-001.html testharness mathml/presentation-markup/scripts/empty-underover.html +testharness mathml/presentation-markup/scripts/scripts-rendering-from-in-flow.html testharness mathml/presentation-markup/scripts/subsup-1.html testharness mathml/presentation-markup/scripts/subsup-2.html testharness mathml/presentation-markup/scripts/subsup-3.html @@ -41241,6 +45742,7 @@ testharness mathml/presentation-markup/scripts/underover-parameters-3.html testharness mathml/presentation-markup/scripts/underover-parameters-4.tentative.html testharness mathml/presentation-markup/scripts/underover-parameters-and-embellished-operator-1.html testharness mathml/presentation-markup/scripts/underover-parameters-and-embellished-operator-2.html +testharness mathml/presentation-markup/spaces/mspace-width-height-001.html testharness mathml/presentation-markup/spaces/space-1.html testharness mathml/presentation-markup/spaces/space-like-001.html testharness mathml/presentation-markup/spaces/space-like-002.html @@ -41253,6 +45755,7 @@ testharness mathml/presentation-markup/tables/table-003.html testharness mathml/presentation-markup/tables/table-axis-height.html testharness mathml/presentation-markup/tables/table-cell-mrow-layout.html testharness mathml/presentation-markup/tables/table-default-styles-001.html +testharness mathml/presentation-markup/tokens/tokens-rendering-from-in-flow.html testharness mathml/relations/css-styling/attribute-mapping-001.html testharness mathml/relations/css-styling/attribute-mapping-002.html testharness mathml/relations/css-styling/default-font-family.html @@ -41266,6 +45769,7 @@ testharness mathml/relations/css-styling/displaystyle-3.html testharness mathml/relations/css-styling/floats/not-floating-001.html testharness mathml/relations/css-styling/ignored-properties-001.html testharness mathml/relations/css-styling/lengths-2.html +testharness mathml/relations/css-styling/mathvariant-auto-selection.html testharness mathml/relations/css-styling/multi-column-layout.html testharness mathml/relations/css-styling/not-participating-to-parent-layout.html testharness mathml/relations/css-styling/out-of-flow/all-mathml-containers.html @@ -41278,7 +45782,9 @@ testharness mathml/relations/css-styling/padding-border-margin/margin-003.html testharness mathml/relations/css-styling/padding-border-margin/padding-001.html testharness mathml/relations/css-styling/padding-border-margin/padding-002.html testharness mathml/relations/css-styling/scriptlevel-001.html +testharness mathml/relations/css-styling/size-containment-001.tentative.html testharness mathml/relations/css-styling/width-height-001.html +testharness mathml/relations/css-styling/width-height-004.html testharness mathml/relations/css-styling/writing-mode/force-horizontal-tb.html testharness mathml/relations/css-styling/writing-mode/writing-mode-001.html testharness mathml/relations/css-styling/writing-mode/writing-mode-002.html @@ -41289,13 +45795,14 @@ testharness mathml/relations/html5-tree/css-inline-style-interface.tentative.htm testharness mathml/relations/html5-tree/display-1.html testharness mathml/relations/html5-tree/dynamic-childlist-001.html testharness mathml/relations/html5-tree/dynamic-childlist-002.html -testharness mathml/relations/html5-tree/href-click-3.html +testharness mathml/relations/html5-tree/href-click-003.tentative.html testharness mathml/relations/html5-tree/html-or-foreign-element-interfaces.tentative.html testharness mathml/relations/html5-tree/integration-point-4.html testharness mathml/relations/html5-tree/integration-point-5.html testharness mathml/relations/html5-tree/math-global-event-handlers.tentative.html -testharness mathml/relations/html5-tree/tabindex-001.html -testharness mathml/relations/html5-tree/tabindex-002.html +testharness mathml/relations/html5-tree/tabindex-001.tentative.html +testharness mathml/relations/html5-tree/tabindex-002.tentative.html +testharness mathml/relations/html5-tree/tabindex-focus-001.tentative.html testharness mathml/relations/html5-tree/unique-identifier-2.html testharness mathml/relations/text-and-math/basic-mathematical-alphanumeric-symbols-with-default-font.html testharness measure-memory/detached.https.window.js @@ -41398,9 +45905,14 @@ testharness media-source/mediasource-sourcebufferlist.html testharness media-source/mediasource-timestamp-offset.html testharness media-source/mediasource-trackdefault.html testharness media-source/mediasource-trackdefaultlist.html +testharness media-source/mse-for-webcodecs/tentative/mediasource-encrypted-webcodecs-appendencodedchunks-play.https.html testharness media-source/mse-for-webcodecs/tentative/mediasource-webcodecs-addsourcebuffer.html testharness media-source/mse-for-webcodecs/tentative/mediasource-webcodecs-appendencodedchunks-play.html testharness mediacapture-extensions/GUM-backgroundBlur.https.html +testharness mediacapture-extensions/GUM-eyeGazeCorrection.https.html +testharness mediacapture-extensions/GUM-faceFraming.https.html +testharness mediacapture-extensions/MediaStreamTrack-audio-stats.https.html +testharness mediacapture-extensions/MediaStreamTrack-video-stats.https.html testharness mediacapture-fromelement/HTMLCanvasElement-getImageData-noframe.html testharness mediacapture-fromelement/capture.html testharness mediacapture-fromelement/creation.html @@ -41432,16 +45944,23 @@ testharness mediacapture-image/takePhoto-reject.html testharness mediacapture-image/takePhoto-with-PhotoSettings.html testharness mediacapture-image/takePhoto-without-PhotoCapabilities.https.window.js testharness mediacapture-image/takePhoto.html -testharness mediacapture-insertable-streams/MediaStreamTrackGenerator-audio.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackGenerator-in-service-worker.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackGenerator-in-shared-worker.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackGenerator-in-worker.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackGenerator-pipes-data-in-worker.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackGenerator-video.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackProcessor-audio.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackProcessor-backpressure.https.html -testharness mediacapture-insertable-streams/MediaStreamTrackProcessor-video.https.html -testharness mediacapture-insertable-streams/VideoTrackGenerator.https.html +testharness mediacapture-insertable-streams/MediaStreamTrackProcessor-backpressure.worker.js +testharness mediacapture-insertable-streams/MediaStreamTrackProcessor-maxBufferSize.worker.js +testharness mediacapture-insertable-streams/MediaStreamTrackProcessor-with-window-tracks.https.html +testharness mediacapture-insertable-streams/MediaStreamTrackProcessor.worker.js +testharness mediacapture-insertable-streams/VideoTrackGenerator-with-window-tracks.https.html +testharness mediacapture-insertable-streams/VideoTrackGenerator.worker.js +testharness mediacapture-insertable-streams/idlharness.any.js +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackGenerator-audio.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackGenerator-in-service-worker.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackGenerator-in-shared-worker.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackGenerator-in-worker.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackGenerator-pipes-data-in-worker.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackGenerator-video.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackProcessor-backpressure.https.html +testharness mediacapture-insertable-streams/legacy/MediaStreamTrackProcessor-video.https.html +testharness mediacapture-insertable-streams/tentative/MediaStreamTrackProcessor-audio.https.html +testharness mediacapture-insertable-streams/tentative/VideoTrackGenerator.https.html testharness mediacapture-record/BlobEvent-constructor.html testharness mediacapture-record/MediaRecorder-bitrate.https.html testharness mediacapture-record/MediaRecorder-canvas-media-source.https.html @@ -41457,9 +45976,12 @@ testharness mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html testharness mediacapture-record/MediaRecorder-peerconnection.https.html testharness mediacapture-record/MediaRecorder-start.html testharness mediacapture-record/MediaRecorder-stop.html +testharness mediacapture-record/MediaRecorder-video-key-frame-distance.html testharness mediacapture-record/idlharness.window.js testharness mediacapture-record/passthrough/MediaRecorder-passthrough.https.html testharness mediacapture-region/CropTarget-fromElement.https.html +testharness mediacapture-streams/BrowserCaptureMediaStreamTrack-cropTo.https.html +testharness mediacapture-streams/BrowserCaptureMediaStreamTrack-restrictTo.https.html testharness mediacapture-streams/GUM-api.https.html testharness mediacapture-streams/GUM-deny.https.html testharness mediacapture-streams/GUM-empty-option-param.https.html @@ -41467,6 +45989,7 @@ testharness mediacapture-streams/GUM-impossible-constraint.https.html testharness mediacapture-streams/GUM-invalid-facing-mode.https.html testharness mediacapture-streams/GUM-non-applicable-constraint.https.html testharness mediacapture-streams/GUM-optional-constraint.https.html +testharness mediacapture-streams/GUM-permissions-query.https.html testharness mediacapture-streams/GUM-required-constraint-with-ideal-value.https.html testharness mediacapture-streams/GUM-trivial-constraint.https.html testharness mediacapture-streams/GUM-unknownkey-option-param.https.html @@ -41509,6 +46032,7 @@ testharness mediacapture-streams/MediaStreamTrackEvent-constructor.https.html testharness mediacapture-streams/enumerateDevices-with-navigation.https.html testharness mediacapture-streams/historical.https.html testharness mediacapture-streams/idlharness.https.window.js +testharness mediacapture-streams/overconstrained_error.https.html testharness mediacapture-streams/parallel-capture-requests.https.html testharness mediasession/idlharness.window.js testharness mediasession/mediametadata.html @@ -41524,6 +46048,7 @@ testharness merchant-validation/onmerchantvalidation-attribute.https.html testharness mimesniff/media/media-sniff.window.js testharness mimesniff/mime-types/charset-parameter.window.js testharness mimesniff/mime-types/parsing.any.js +testharness mimesniff/sniffing/html.window.js testharness mixed-content/blob.https.sub.html testharness mixed-content/csp.https.window.js testharness mixed-content/gen/sharedworker-classic-data.http-rp/opt-in/fetch.https.html @@ -41682,13 +46207,25 @@ testharness mixed-content/gen/worker-module.http-rp/unset/worker-classic.https.h testharness mixed-content/gen/worker-module.http-rp/unset/worker-module.https.html testharness mixed-content/gen/worker-module.http-rp/unset/xhr.https.html testharness mixed-content/imageset.https.sub.html +testharness mixed-content/nested-iframes.window.js testharness mixed-content/tentative/autoupgrades/audio-upgrade.https.sub.html testharness mixed-content/tentative/autoupgrades/image-upgrade.https.sub.html testharness mixed-content/tentative/autoupgrades/mixed-content-cors.https.sub.html testharness mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html testharness mst-content-hint/MediaStreamTrack-contentHint.html +testharness mst-content-hint/RTCRtpSendParameters-degradationEffect.html testharness mst-content-hint/RTCRtpSendParameters-degradationPreference.html testharness mst-content-hint/idlharness.window.js +testharness navigation-api/commit-behavior/after-transition-new-navigation-before-commit.html +testharness navigation-api/commit-behavior/after-transition-push.html +testharness navigation-api/commit-behavior/after-transition-reload.html +testharness navigation-api/commit-behavior/after-transition-replace.html +testharness navigation-api/commit-behavior/after-transition-traversal-commit-new-navigation-before-commit.html +testharness navigation-api/commit-behavior/after-transition-traverse.html +testharness navigation-api/commit-behavior/after-transition-uncancelable.html +testharness navigation-api/commit-behavior/after-transition-window-stop-before-commit.html +testharness navigation-api/commit-behavior/commit-throws.html +testharness navigation-api/commit-behavior/multiple-intercept.html testharness navigation-api/currententrychange-event/anchor-click.html testharness navigation-api/currententrychange-event/constructor.html testharness navigation-api/currententrychange-event/history-back-same-doc.html @@ -41718,8 +46255,10 @@ testharness navigation-api/focus-reset/change-focus-again-in-blur-during-interce testharness navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html testharness navigation-api/focus-reset/change-focus-during-intercept.html testharness navigation-api/focus-reset/change-focus-then-remove-during-intercept.html +testharness navigation-api/focus-reset/focus-reset-timing.html testharness navigation-api/focus-reset/multiple-intercept.html testharness navigation-api/navigate-event/cross-origin-traversal-does-not-fire-navigate.html +testharness navigation-api/navigate-event/cross-origin-traversal-redirect.html testharness navigation-api/navigate-event/cross-window/click-crossdocument-crossorigin-sameorigindomain.sub.html testharness navigation-api/navigate-event/cross-window/click-crossdocument-crossorigin.html testharness navigation-api/navigate-event/cross-window/click-crossdocument-sameorigin.html @@ -41744,6 +46283,8 @@ testharness navigation-api/navigate-event/cross-window/submit-crossdocument-same testharness navigation-api/navigate-event/cross-window/submit-samedocument-crossorigin-sameorigindomain.sub.html testharness navigation-api/navigate-event/cross-window/submit-samedocument-crossorigin.html testharness navigation-api/navigate-event/cross-window/submit-samedocument-sameorigin.html +testharness navigation-api/navigate-event/defaultPrevented-navigation-preempted.html +testharness navigation-api/navigate-event/defaultPrevented-window-stop-after-dispatch.html testharness navigation-api/navigate-event/event-constructor.html testharness navigation-api/navigate-event/intercept-after-dispatch.html testharness navigation-api/navigate-event/intercept-and-navigate.html @@ -41772,18 +46313,23 @@ testharness navigation-api/navigate-event/navigate-anchor-fragment.html testharness navigation-api/navigate-event/navigate-anchor-same-origin-cross-document.html testharness navigation-api/navigate-event/navigate-anchor-userInitiated.html testharness navigation-api/navigate-event/navigate-anchor-with-target.html +testharness navigation-api/navigate-event/navigate-destination-after-detach.html +testharness navigation-api/navigate-event/navigate-destination-dynamic-index.html testharness navigation-api/navigate-event/navigate-destination-getState-back-forward.html testharness navigation-api/navigate-event/navigate-destination-getState-navigate.html testharness navigation-api/navigate-event/navigate-destination-getState-reload.html testharness navigation-api/navigate-event/navigate-form-get.html testharness navigation-api/navigate-event/navigate-form-reload.html +testharness navigation-api/navigate-event/navigate-form-requestSubmit.html testharness navigation-api/navigate-event/navigate-form-traverse.html testharness navigation-api/navigate-event/navigate-form-userInitiated.html testharness navigation-api/navigate-event/navigate-form-with-target.html testharness navigation-api/navigate-event/navigate-form.html testharness navigation-api/navigate-event/navigate-history-back-after-fragment.html testharness navigation-api/navigate-event/navigate-history-back-after-pushState.html +testharness navigation-api/navigate-event/navigate-history-back-bfcache.html testharness navigation-api/navigate-event/navigate-history-back-cross-document.html +testharness navigation-api/navigate-event/navigate-history-back-noop.html testharness navigation-api/navigate-event/navigate-history-go-0.html testharness navigation-api/navigate-event/navigate-history-pushState.html testharness navigation-api/navigate-event/navigate-history-replaceState.html @@ -41791,20 +46337,46 @@ testharness navigation-api/navigate-event/navigate-iframe-location.html testharness navigation-api/navigate-event/navigate-location.html testharness navigation-api/navigate-event/navigate-meta-refresh.html testharness navigation-api/navigate-event/navigate-navigation-back-cross-document.html +testharness navigation-api/navigate-event/navigate-navigation-back-same-document-in-iframe.html testharness navigation-api/navigate-event/navigate-navigation-back-same-document.html testharness navigation-api/navigate-event/navigate-navigation-navigate.html +testharness navigation-api/navigate-event/navigate-svg-anchor-fragment.html testharness navigation-api/navigate-event/navigate-to-javascript.html testharness navigation-api/navigate-event/navigate-to-srcdoc.html testharness navigation-api/navigate-event/navigate-window-open-self.html testharness navigation-api/navigate-event/navigate-window-open.html testharness navigation-api/navigate-event/navigatesuccess-cross-document.html testharness navigation-api/navigate-event/navigatesuccess-same-document.html +testharness navigation-api/navigate-event/navigation-back-cross-document-preventDefault.html +testharness navigation-api/navigate-event/navigation-back-same-document-preventDefault.html +testharness navigation-api/navigate-event/navigation-traverseTo-in-iframe-same-document-preventDefault.html +testharness navigation-api/navigate-event/navigation-traverseTo-navigates-top-and-same-doc-child-and-cross-doc-child.html +testharness navigation-api/navigate-event/navigation-traverseTo-same-document-preventDefault-multiple-windows.html +testharness navigation-api/navigate-event/navigation-traverseTo-top-cancels-cross-document-child.html +testharness navigation-api/navigate-event/replaceState-in-unload-then-remove-iframe.html +testharness navigation-api/navigate-event/replaceState-inside-back-handler.html +testharness navigation-api/navigate-event/same-url-replace-cross-document.html +testharness navigation-api/navigate-event/same-url-replace-same-document.html testharness navigation-api/navigate-event/signal-abort-detach-in-onnavigate.html testharness navigation-api/navigate-event/signal-abort-intercept.html testharness navigation-api/navigate-event/signal-abort-preventDefault.html testharness navigation-api/navigate-event/signal-abort-window-stop-after-intercept.html testharness navigation-api/navigate-event/signal-abort-window-stop-in-onnavigate.html testharness navigation-api/navigate-event/signal-abort-window-stop.html +testharness navigation-api/navigation-activation/activation-after-bfcache-cross-origin.html +testharness navigation-api/navigation-activation/activation-after-bfcache.html +testharness navigation-api/navigation-activation/activation-history-pushState.html +testharness navigation-api/navigation-activation/activation-history-replaceState.html +testharness navigation-api/navigation-activation/activation-initial-about-blank.html +testharness navigation-api/navigation-activation/activation-push-cross-origin.html +testharness navigation-api/navigation-activation/activation-push.html +testharness navigation-api/navigation-activation/activation-reload.html +testharness navigation-api/navigation-activation/activation-replace-cross-origin.html +testharness navigation-api/navigation-activation/activation-replace.html +testharness navigation-api/navigation-activation/activation-same-document-then-cross-document.html +testharness navigation-api/navigation-activation/activation-traverse-not-in-entries.html +testharness navigation-api/navigation-activation/activation-traverse-then-clobber.html +testharness navigation-api/navigation-activation/activation-traverse.html testharness navigation-api/navigation-history-entry/after-detach.html testharness navigation-api/navigation-history-entry/current-basic.html testharness navigation-api/navigation-history-entry/entries-across-origins.html @@ -41848,10 +46420,14 @@ testharness navigation-api/navigation-methods/navigate-base-url.html testharness navigation-api/navigation-methods/navigate-from-initial-about-blank-gc.html testharness navigation-api/navigation-methods/navigate-from-initial-about-blank-src.html testharness navigation-api/navigation-methods/navigate-from-initial-about-blank.html +testharness navigation-api/navigation-methods/navigate-history-push-not-loaded.html +testharness navigation-api/navigation-methods/navigate-history-push-same-url-cross-document.html +testharness navigation-api/navigation-methods/navigate-history-push-same-url.html testharness navigation-api/navigation-methods/navigate-history-state-replace.html testharness navigation-api/navigation-methods/navigate-history-state.html testharness navigation-api/navigation-methods/navigate-info-and-state.html testharness navigation-api/navigation-methods/navigate-intercept-history-state.html +testharness navigation-api/navigation-methods/navigate-relative-url-utf8.html testharness navigation-api/navigation-methods/navigate-relative-url.html testharness navigation-api/navigation-methods/navigate-replace-cross-document.html testharness navigation-api/navigation-methods/navigate-replace-same-document.html @@ -41895,19 +46471,17 @@ testharness navigation-api/navigation-methods/return-value/navigate-interrupted- testharness navigation-api/navigation-methods/return-value/navigate-interrupted.html testharness navigation-api/navigation-methods/return-value/navigate-invalid-url.html testharness navigation-api/navigation-methods/return-value/navigate-opaque-origin.html +testharness navigation-api/navigation-methods/return-value/navigate-pagehide.html testharness navigation-api/navigation-methods/return-value/navigate-preventDefault.html testharness navigation-api/navigation-methods/return-value/navigate-push-initial-about-blank.html testharness navigation-api/navigation-methods/return-value/navigate-push-javascript-url.html -testharness navigation-api/navigation-methods/return-value/navigate-push-not-loaded.html -testharness navigation-api/navigation-methods/return-value/navigate-push-same-url.html testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-beforeunload-unserializablestate.html testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-detached-unserializablestate.html testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-invalidurl-beforeunload.html testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-invalidurl-detached.html -testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-invalidurl-unload.html +testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-invalidurl-pagehide.html testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-invalidurl-unserializablestate.html -testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-unload-unserializablestate.html -testharness navigation-api/navigation-methods/return-value/navigate-unload.html +testharness navigation-api/navigation-methods/return-value/navigate-rejection-order-pagehide-unserializablestate.html testharness navigation-api/navigation-methods/return-value/navigate-unserializable-state.html testharness navigation-api/navigation-methods/return-value/navigate.html testharness navigation-api/navigation-methods/return-value/reload-already-detached.html @@ -41917,18 +46491,20 @@ testharness navigation-api/navigation-methods/return-value/reload-detach-in-seri testharness navigation-api/navigation-methods/return-value/reload-initial-about-blank.html testharness navigation-api/navigation-methods/return-value/reload-intercept-rejected.html testharness navigation-api/navigation-methods/return-value/reload-intercept.html +testharness navigation-api/navigation-methods/return-value/reload-pagehide.html testharness navigation-api/navigation-methods/return-value/reload-preventDefault.html testharness navigation-api/navigation-methods/return-value/reload-rejection-order-beforeunload-unserializablestate.html testharness navigation-api/navigation-methods/return-value/reload-rejection-order-detached-unserializablestate.html -testharness navigation-api/navigation-methods/return-value/reload-rejection-order-unload-unserializablestate.html -testharness navigation-api/navigation-methods/return-value/reload-unload.html +testharness navigation-api/navigation-methods/return-value/reload-rejection-order-pagehide-unserializablestate.html testharness navigation-api/navigation-methods/return-value/reload-unserializable-state.html testharness navigation-api/navigation-methods/return-value/reload.html testharness navigation-api/navigation-methods/return-value/traverseTo-already-detached.html testharness navigation-api/navigation-methods/return-value/traverseTo-beforeunload.html testharness navigation-api/navigation-methods/return-value/traverseTo-cross-document-preventDefault.html testharness navigation-api/navigation-methods/return-value/traverseTo-current.html +testharness navigation-api/navigation-methods/return-value/traverseTo-detach-cross-document-before-navigate-event.html testharness navigation-api/navigation-methods/return-value/traverseTo-detach-cross-document.html +testharness navigation-api/navigation-methods/return-value/traverseTo-detach-same-document-before-navigate-event.html testharness navigation-api/navigation-methods/return-value/traverseTo-detach-same-document.html testharness navigation-api/navigation-methods/return-value/traverseTo-intercept-rejected.html testharness navigation-api/navigation-methods/return-value/traverseTo-intercept.html @@ -41950,6 +46526,7 @@ testharness navigation-api/navigation-methods/traverseTo-with-cross-origin-in-hi testharness navigation-api/ordering-and-transition/anchor-download-intercept-reject.html testharness navigation-api/ordering-and-transition/anchor-download-intercept.html testharness navigation-api/ordering-and-transition/anchor-download.html +testharness navigation-api/ordering-and-transition/back-cross-document-event-order.html testharness navigation-api/ordering-and-transition/back-same-document-intercept-reject.html testharness navigation-api/ordering-and-transition/back-same-document-intercept.html testharness navigation-api/ordering-and-transition/back-same-document.html @@ -41963,6 +46540,7 @@ testharness navigation-api/ordering-and-transition/location-href-intercept-rejec testharness navigation-api/ordering-and-transition/location-href-intercept.html testharness navigation-api/ordering-and-transition/navigate-204-205-download-then-same-document.html testharness navigation-api/ordering-and-transition/navigate-canceled.html +testharness navigation-api/ordering-and-transition/navigate-commit-after-transition-intercept.html testharness navigation-api/ordering-and-transition/navigate-cross-document-double.html testharness navigation-api/ordering-and-transition/navigate-cross-document-event-order.html testharness navigation-api/ordering-and-transition/navigate-double-intercept.html @@ -42002,12 +46580,15 @@ testharness navigation-api/scroll-behavior/manual-basic.html testharness navigation-api/scroll-behavior/manual-immediate-scroll.html testharness navigation-api/scroll-behavior/manual-scroll-after-dispatch.html testharness navigation-api/scroll-behavior/manual-scroll-after-resolve.html +testharness navigation-api/scroll-behavior/manual-scroll-before-after-transition-commit.html testharness navigation-api/scroll-behavior/manual-scroll-fragment-does-not-exist.html testharness navigation-api/scroll-behavior/manual-scroll-push.html testharness navigation-api/scroll-behavior/manual-scroll-reload.html testharness navigation-api/scroll-behavior/manual-scroll-repeated.html testharness navigation-api/scroll-behavior/manual-scroll-replace.html testharness navigation-api/scroll-behavior/manual-scroll-resets-when-no-fragment.html +testharness navigation-api/scroll-behavior/scroll-after-preventDefault.html +testharness navigation-api/scroll-behavior/scroll-on-synthetic-event.html testharness navigation-api/scroll-behavior/scroll-without-intercept.html testharness navigation-api/state/cross-document-away-and-back.html testharness navigation-api/state/cross-document-getState-undefined.html @@ -42077,6 +46658,7 @@ testharness navigation-timing/test-performance-attributes-exist-in-object.html testharness navigation-timing/test-performance-attributes-exist.html testharness navigation-timing/test-performance-attributes.sub.html testharness navigation-timing/test-readwrite.html +testharness navigation-timing/test-timing-attributes-dependent-on-document-load.html testharness navigation-timing/test-timing-attributes-exist.html testharness navigation-timing/test-timing-attributes-order.html testharness navigation-timing/test-timing-client-redirect.html @@ -42103,12 +46685,19 @@ testharness notifications/constructor-invalid.https.html testharness notifications/constructor-non-secure.html testharness notifications/event-onclose.https.html testharness notifications/event-onshow.https.html +testharness notifications/fetch-url-resolve.https.window.js +testharness notifications/getnotifications-across-processes.https.window.js testharness notifications/historical.any.js testharness notifications/idlharness.https.any.js -testharness notifications/instance.https.html +testharness notifications/instance.https.window.js testharness notifications/lang.https.html testharness notifications/permission.html testharness notifications/permissions-non-secure.html +testharness notifications/registration-association.https.window.js +testharness notifications/shownotification-window.https.html +testharness notifications/shownotification-without-permission.https.window.js +testharness notifications/shownotification.https.window.js +testharness notifications/tag.https.html testharness old-tests/submission/Microsoft/foreigncontent/foreign_content_014.html testharness old-tests/submission/Microsoft/foreigncontent/foreign_content_015.html testharness old-tests/submission/Microsoft/history/history_000.htm @@ -42133,7 +46722,9 @@ testharness orientation-event/motion/create-event.https.html testharness orientation-event/motion/multiple-event-listeners.https.html testharness orientation-event/motion/null-values.https.html testharness orientation-event/motion/optional-event-properties.https.html +testharness orientation-event/motion/page-visibility.https.html testharness orientation-event/motion/requestPermission.https.window.js +testharness orientation-event/motion/rounding.https.html testharness orientation-event/orientation/absolute-fallback.https.html testharness orientation-event/orientation/add-listener-from-callback.https.html testharness orientation-event/orientation/basic-operation-absolute.https.html @@ -42143,7 +46734,9 @@ testharness orientation-event/orientation/multiple-event-listeners.https.html testharness orientation-event/orientation/no-synchronous-events.https.html testharness orientation-event/orientation/null-values.https.html testharness orientation-event/orientation/optional-event-properties.https.html +testharness orientation-event/orientation/page-visibility.https.html testharness orientation-event/orientation/requestPermission.https.window.js +testharness orientation-event/orientation/rounding.https.html testharness orientation-event/orientation/updates.https.html testharness orientation-sensor/AbsoluteOrientationSensor-disabled-by-feature-policy.https.html testharness orientation-sensor/AbsoluteOrientationSensor-enabled-by-feature-policy-attribute-redirect-on-load.https.html @@ -42229,6 +46822,11 @@ testharness paint-timing/with-first-paint/sibling-painting-first-image.html testharness parakeet/createAdRequest.tentative.https.sub.window.js testharness parakeet/finalizeAd.tentative.https.sub.window.js testharness parakeet/idlharness.tentative.https.window.js +testharness partitioned-popins/partitioned-popins.cookies.tentative.sub.https.window.js +testharness partitioned-popins/partitioned-popins.localStorage.tentative.sub.https.window.js +testharness partitioned-popins/partitioned-popins.permission-all.tentative.sub.https.window.js +testharness partitioned-popins/partitioned-popins.permission-default.tentative.sub.https.window.js +testharness partitioned-popins/partitioned-popins.permission-self.tentative.sub.https.window.js testharness payment-handler/can-make-payment-event-constructor.https.html testharness payment-handler/can-make-payment-event-constructor.https.serviceworker.html testharness payment-handler/can-make-payment-event-constructor.https.worker.js @@ -42257,29 +46855,26 @@ testharness payment-request/onpaymentmethodchange-attribute.https.html testharness payment-request/payment-is-showing.https.html testharness payment-request/payment-request-abort-method.https.html testharness payment-request/payment-request-canmakepayment-method.https.html +testharness payment-request/payment-request-constructor-thcrash.https.html testharness payment-request/payment-request-constructor.https.sub.html testharness payment-request/payment-request-ctor-currency-code-checks.https.sub.html testharness payment-request/payment-request-ctor-pmi-handling.https.sub.html +testharness payment-request/payment-request-disallowed-when-hidden.https.html testharness payment-request/payment-request-hasenrolledinstrument-method-protection.tentative.https.html testharness payment-request/payment-request-hasenrolledinstrument-method.tentative.https.html testharness payment-request/payment-request-id-attribute.https.html testharness payment-request/payment-request-insecure.http.html testharness payment-request/payment-request-not-exposed.https.worker.js +testharness payment-request/payment-request-onshippingaddresschange-attribute.https.html +testharness payment-request/payment-request-onshippingoptionchange-attribute.https.html +testharness payment-request/payment-request-shippingAddress-attribute.https.html +testharness payment-request/payment-request-shippingOption-attribute.https.html +testharness payment-request/payment-request-shippingType-attribute.https.html testharness payment-request/payment-request-show-method.https.html testharness payment-request/payment-response/onpayerdetailchange-attribute.https.html testharness payment-request/rejects_if_not_active.https.html testharness payment-request/show-consume-activation.https.html testharness payment-request/show-method-optional-promise-rejects.https.html -testharness pending-beacon/pending_beacon-basic.tentative.https.window.js -testharness pending-beacon/pending_beacon-basic.window.js -testharness pending-beacon/pending_beacon-deactivate.tentative.https.window.js -testharness pending-beacon/pending_beacon-sendnow.tentative.https.window.js -testharness pending-beacon/pending_beacon-sendondiscard.tentative.https.window.js -testharness pending-beacon/pending_beacon-sendonhidden.tentative.https.window.js -testharness pending-beacon/pending_get_beacon-cors.tentative.https.window.js -testharness pending-beacon/pending_get_beacon-send.tentative.https.window.js -testharness pending-beacon/pending_post_beacon-cors.tentative.https.window.js -testharness pending-beacon/pending_post_beacon-sendwithdata.tentative.https.window.js testharness performance-timeline/back-forward-cache-restoration.tentative.html testharness performance-timeline/buffered-flag-after-timeout.any.js testharness performance-timeline/buffered-flag-observer.any.js @@ -42296,13 +46891,20 @@ testharness performance-timeline/navigation-id-long-task-task-attribution.tentat testharness performance-timeline/navigation-id-mark-measure.tentative.html testharness performance-timeline/navigation-id-reset.tentative.html testharness performance-timeline/navigation-id-resource-timing.tentative.html +testharness performance-timeline/navigation-id-worker-created-entries.html testharness performance-timeline/not-clonable.html +testharness performance-timeline/not-restored-reasons/abort-block-bfcache.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-attributes.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-bfcache-reasons-stay.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-bfcache.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.js +testharness performance-timeline/not-restored-reasons/performance-navigation-timing-fetch.tentative.window.js +testharness performance-timeline/not-restored-reasons/performance-navigation-timing-iframes-without-attributes.tentative.window.js +testharness performance-timeline/not-restored-reasons/performance-navigation-timing-lock.https.tentative.window.js +testharness performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-not-bfcached.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-redirect-on-history.tentative.window.js +testharness performance-timeline/not-restored-reasons/performance-navigation-timing-reload.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-same-origin-bfcache.tentative.window.js testharness performance-timeline/not-restored-reasons/performance-navigation-timing-same-origin-replace.tentative.window.js testharness performance-timeline/observer-buffered-false.any.js @@ -42330,6 +46932,7 @@ testharness performance-timeline/tentative/include-frames-originA-B-A.html testharness performance-timeline/tentative/include-frames-originA-B-B.html testharness performance-timeline/tentative/include-frames-originA-B.html testharness performance-timeline/tentative/performance-entry-source.html +testharness performance-timeline/tentative/with-filter-options-originA.html testharness performance-timeline/timing-removed-iframe.html testharness performance-timeline/webtiming-resolution.any.js testharness performance-timeline/worker-with-performance-observer.html @@ -42342,9 +46945,18 @@ testharness permissions-policy/bluetooth-default-permissions-policy.https.sub.ht testharness permissions-policy/bluetooth-disabled-by-permissions-policy.https.sub.html testharness permissions-policy/experimental-features/focus-without-user-activation-disabled-tentative.html testharness permissions-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html -testharness permissions-policy/experimental-features/trust-token-redemption-default-permissions-policy.tentative.https.sub.html -testharness permissions-policy/experimental-features/trust-token-redemption-supported-by-permissions-policy.tentative.html +testharness permissions-policy/experimental-features/permissions-policy-header-host-wildcard.https.sub.html +testharness permissions-policy/experimental-features/permissions-policy-header-port-wildcard.https.sub.html +testharness permissions-policy/experimental-features/permissions-policy-header-scheme-only.https.sub.html +testharness permissions-policy/experimental-features/private-state-token-redemption-default-permissions-policy.tentative.https.sub.html +testharness permissions-policy/experimental-features/private-state-token-redemption-supported-by-permissions-policy.tentative.html testharness permissions-policy/experimental-features/unload-allowed-by-default.tentative.window.js +testharness permissions-policy/experimental-features/unload-allowed-embed.tentative.window.js +testharness permissions-policy/experimental-features/unload-allowed-frameset.tentative.window.js +testharness permissions-policy/experimental-features/unload-allowed-object.tentative.window.js +testharness permissions-policy/experimental-features/unload-disallowed-embed.tentative.window.js +testharness permissions-policy/experimental-features/unload-disallowed-frameset.tentative.window.js +testharness permissions-policy/experimental-features/unload-disallowed-object.tentative.window.js testharness permissions-policy/experimental-features/unload-disallowed-subframe.tentative.window.js testharness permissions-policy/experimental-features/unload-disallowed.tentative.window.js testharness permissions-policy/experimental-features/vertical-scroll-scrollintoview.tentative.html @@ -42382,6 +46994,10 @@ testharness permissions-policy/picture-in-picture-default-permissions-policy.htt testharness permissions-policy/picture-in-picture-disabled-by-permissions-policy.https.sub.html testharness permissions-policy/picture-in-picture-supported-by-permissions-policy.html testharness permissions-policy/policy-extends-to-sandbox.html +testharness permissions-policy/private-state-token-issue-allowed-by-permissions-policy-attribute.tentative.https.sub.html +testharness permissions-policy/private-state-token-issue-disabled-by-permissions-policy.tentative.https.sub.html +testharness permissions-policy/private-state-token-issue-enabled-by-permissions-policy.tentative.https.sub.html +testharness permissions-policy/private-state-token-issue-supported-by-permissions-policy.tentative.html testharness permissions-policy/reporting/bluetooth-report-only.https.html testharness permissions-policy/reporting/bluetooth-reporting.https.html testharness permissions-policy/reporting/camera-report-only.https.html @@ -42402,6 +47018,10 @@ testharness permissions-policy/reporting/payment-report-only.https.html testharness permissions-policy/reporting/payment-reporting.https.html testharness permissions-policy/reporting/picture-in-picture-report-only.html testharness permissions-policy/reporting/picture-in-picture-reporting.html +testharness permissions-policy/reporting/report-only-and-enforce.https.sub.html +testharness permissions-policy/reporting/report-only-single-endpoint.https.sub.html +testharness permissions-policy/reporting/report-to-multiple-endpoints.https.sub.html +testharness permissions-policy/reporting/report-to-single-endpoint.https.sub.html testharness permissions-policy/reporting/screen-wake-lock-reporting.https.html testharness permissions-policy/reporting/serial-report-only.https.html testharness permissions-policy/reporting/serial-reporting.https.html @@ -42434,37 +47054,59 @@ testharness picture-in-picture/removed-from-document.html testharness picture-in-picture/request-picture-in-picture-twice.html testharness picture-in-picture/request-picture-in-picture.html testharness picture-in-picture/shadow-dom.html +testharness png/cicp-chunk.html +testharness png/exif-chunk.html +testharness png/trns-chunk.html testharness pointerevents/capturing_boundary_event_handler_at_ua_shadowdom.html -testharness pointerevents/coalesced_events_attributes.html -testharness pointerevents/coalesced_events_attributes_under_load.html +testharness pointerevents/coalesced_events_attributes.https.html +testharness pointerevents/coalesced_events_attributes_under_load.https.optional.html testharness pointerevents/compat/pointerevent_compat-mouse-events-when-removing-nodes.html testharness pointerevents/compat/pointerevent_mouse-on-object.html testharness pointerevents/compat/pointerevent_mouse-pointer-on-scrollbar.html +testharness pointerevents/compat/pointerevent_mouse-pointer-preventdefault-passive.html testharness pointerevents/compat/pointerevent_mouse-pointer-preventdefault.html testharness pointerevents/compat/pointerevent_mouse-pointer-updown-events.html testharness pointerevents/compat/pointerevent_mouseevent_key_pressed.html testharness pointerevents/compat/pointerevent_touch-action-verification.html testharness pointerevents/compat/pointerevent_touch-action_two-finger_interaction.html -testharness pointerevents/idlharness.window.js +testharness pointerevents/compat/pointerevent_touch_target_after_pointerdown_target_removed.tentative.html +testharness pointerevents/idlharness.https.window.js testharness pointerevents/inheritance.html testharness pointerevents/mouse-pointer-boundary-events-for-shadowdom.html testharness pointerevents/parsing/touch-action-computed.html testharness pointerevents/parsing/touch-action-invalid.html testharness pointerevents/parsing/touch-action-valid.html +testharness pointerevents/persistentDeviceId/get-persistendeviceid-from-pointer-event.tentative.html +testharness pointerevents/persistentDeviceId/pointer-event-has-persistentdeviceid-from-pointer-event-init.tentative.html +testharness pointerevents/pointer-events-none-skip-scroll-in-iframe.html +testharness pointerevents/pointer-events-none-skip-scroll-scrollbar.html +testharness pointerevents/pointer-events-none-skip-scroll-will-change-in-iframe.html +testharness pointerevents/pointer-events-none-skip-scroll-will-change-scrollbar.html +testharness pointerevents/pointer-events-none-skip-scroll-will-change.html +testharness pointerevents/pointer-events-none-skip-scroll.html +testharness pointerevents/pointerevent-boundary-event-target-when-hover-generates-content-under-pointer.html +testharness pointerevents/pointerevent_after_target_appended.html +testharness pointerevents/pointerevent_after_target_appended_interleaved.tentative.html testharness pointerevents/pointerevent_after_target_removed.html -testharness pointerevents/pointerevent_attributes_hoverable_pointers.html -testharness pointerevents/pointerevent_attributes_hoverable_rightbutton.html -testharness pointerevents/pointerevent_attributes_nohover_pointers.html +testharness pointerevents/pointerevent_after_target_removed_from_slot.html +testharness pointerevents/pointerevent_after_target_removed_interleaved.tentative.html +testharness pointerevents/pointerevent_attributes.html testharness pointerevents/pointerevent_auxclick_is_a_pointerevent.html testharness pointerevents/pointerevent_boundary_events_at_implicit_release_hoverable_pointers.html testharness pointerevents/pointerevent_boundary_events_in_capturing.html +testharness pointerevents/pointerevent_bubble_ancestors_none.html +testharness pointerevents/pointerevent_bubble_display_none.html +testharness pointerevents/pointerevent_bubble_mousedown_mouseup_different_target.html testharness pointerevents/pointerevent_capture_mouse.html +testharness pointerevents/pointerevent_capture_mouse_and_release_and_capture_again.html testharness pointerevents/pointerevent_capture_suppressing_mouse.html +testharness pointerevents/pointerevent_capture_touch_and_release_at_got_capture.html testharness pointerevents/pointerevent_change-touch-action-onpointerdown_touch.html testharness pointerevents/pointerevent_click_during_capture.html testharness pointerevents/pointerevent_click_is_a_pointerevent.html testharness pointerevents/pointerevent_click_is_a_pointerevent_multiple_clicks.html testharness pointerevents/pointerevent_constructor.html +testharness pointerevents/pointerevent_constructor.https.html testharness pointerevents/pointerevent_contextmenu_is_a_pointerevent.html testharness pointerevents/pointerevent_disabled_form_control.html testharness pointerevents/pointerevent_element_haspointercapture.html @@ -42477,11 +47119,14 @@ testharness pointerevents/pointerevent_lostpointercapture_for_disconnected_node. testharness pointerevents/pointerevent_lostpointercapture_for_disconnected_node_in_shadow_dom.html testharness pointerevents/pointerevent_lostpointercapture_for_disconnected_shadow_host.html testharness pointerevents/pointerevent_lostpointercapture_is_first.html +testharness pointerevents/pointerevent_lostpointercapture_remove_setcapture_node.html testharness pointerevents/pointerevent_mouse_capture_change_hover.html testharness pointerevents/pointerevent_mouse_pointercapture_inactivate_pointer.html testharness pointerevents/pointerevent_movementxy.html testharness pointerevents/pointerevent_on_event_handlers.html testharness pointerevents/pointerevent_pointerId_scope.html +testharness pointerevents/pointerevent_pointer_boundary_events_after_reappending_last_over_target.html +testharness pointerevents/pointerevent_pointer_boundary_events_after_removing_last_over_element.html testharness pointerevents/pointerevent_pointercancel_touch.html testharness pointerevents/pointerevent_pointercapture-in-custom-element.html testharness pointerevents/pointerevent_pointercapture-in-shadow-dom.html @@ -42493,12 +47138,15 @@ testharness pointerevents/pointerevent_pointerleave_descendant_over.html testharness pointerevents/pointerevent_pointerleave_descendants.html testharness pointerevents/pointerevent_pointerleave_does_not_bubble.html testharness pointerevents/pointerevent_pointermove.html +testharness pointerevents/pointerevent_pointermove_after_pointerup_target_removed.html testharness pointerevents/pointerevent_pointermove_isprimary_same_as_pointerdown.html testharness pointerevents/pointerevent_pointermove_on_chorded_mouse_button.html testharness pointerevents/pointerevent_pointerout_after_pointercancel_touch.html +testharness pointerevents/pointerevent_pointerout_no_pointer_movement.html testharness pointerevents/pointerevent_pointerout_pen.html testharness pointerevents/pointerevent_pointerout_received_once.html testharness pointerevents/pointerevent_pointerrawupdate.html +testharness pointerevents/pointerevent_pointerrawupdate.https.html testharness pointerevents/pointerevent_releasepointercapture_events_to_original_target.html testharness pointerevents/pointerevent_releasepointercapture_invalid_pointerid.html testharness pointerevents/pointerevent_releasepointercapture_onpointercancel_touch.html @@ -42521,6 +47169,7 @@ testharness pointerevents/pointerevent_setpointercapture_to_same_element_twice.h testharness pointerevents/pointerevent_suppress_compat_events_on_click.html testharness pointerevents/pointerevent_suppress_compat_events_on_drag_mouse.html testharness pointerevents/pointerevent_tiltX_tiltY_to_azimuth_altitude.html +testharness pointerevents/pointerevent_to_slotted_target.html testharness pointerevents/pointerevent_touch-action-auto-css_touch.html testharness pointerevents/pointerevent_touch-action-button-none-test_touch.html testharness pointerevents/pointerevent_touch-action-illegal.html @@ -42549,14 +47198,17 @@ testharness pointerevents/pointerevent_touch-action-table-none-test_touch.html testharness pointerevents/pointerevent_touch-action-verification.html testharness pointerevents/pointerevent_touch-adjustment_click_target.html testharness pointerevents/pointerlock/pointerevent_coordinates_when_locked.html -testharness pointerevents/pointerlock/pointerevent_getCoalescedEvents_when_pointerlocked.html +testharness pointerevents/pointerlock/pointerevent_getCoalescedEvents_when_pointerlocked.https.html testharness pointerevents/pointerlock/pointerevent_movementxy_with_pointerlock.html testharness pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture.html testharness pointerevents/pointerlock/pointerevent_pointerlock_supercedes_capture.html testharness pointerevents/pointerlock/pointerevent_pointermove_in_pointerlock.html testharness pointerevents/pointerlock/pointerevent_pointermove_on_chorded_mouse_button_when_locked.html -testharness pointerevents/pointerlock/pointerevent_pointerrawupdate_in_pointerlock.html +testharness pointerevents/pointerlock/pointerevent_pointerrawupdate_in_pointerlock.https.html testharness pointerevents/pointerup_after_pointerdown_target_removed.html +testharness pointerevents/pointerup_button_value_matches_corresponding_pointerdown.html +testharness pointerevents/predicted_events_attributes.html +testharness pointerevents/touch-action-with-swipe-dir-change.html testharness pointerlock/constructor.html testharness pointerlock/idlharness.window.js testharness pointerlock/mouse_buttons_back_forward.html @@ -42564,48 +47216,6 @@ testharness pointerlock/movementX_Y_basic.html testharness pointerlock/pointerlock_remove_target.html testharness pointerlock/pointerlock_remove_target_on_mouseup.html testharness pointerlock/pointerlock_shadow.html -testharness portals/about-blank-cannot-host.html -testharness portals/csp/frame-ancestors.sub.html -testharness portals/csp/frame-src.sub.html -testharness portals/history/history-manipulation-inside-portal-with-subframes.html -testharness portals/history/history-manipulation-inside-portal.html -testharness portals/htmlportalelement-event-handler-content-attributes.html -testharness portals/idlharness.window.js -testharness portals/no-portal-in-sandboxed-popup.html -testharness portals/portal-activate-data.html -testharness portals/portal-activate-default.html -testharness portals/portal-activate-event-constructor.html -testharness portals/portal-activate-event.html -testharness portals/portal-non-http-navigation.html -testharness portals/portal-onload-event.html -testharness portals/portals-activate-empty-browsing-context.html -testharness portals/portals-activate-inside-iframe.html -testharness portals/portals-activate-inside-portal.html -testharness portals/portals-activate-network-error.html -testharness portals/portals-activate-no-browsing-context.html -testharness portals/portals-activate-resolution.html -testharness portals/portals-activate-twice.html -testharness portals/portals-activate-while-unloading.html -testharness portals/portals-adopt-predecessor.html -testharness portals/portals-api.html -testharness portals/portals-close-window.html -testharness portals/portals-cross-origin-load.sub.html -testharness portals/portals-focus.sub.html -testharness portals/portals-host-exposure.sub.html -testharness portals/portals-host-hidden-after-activation.html -testharness portals/portals-host-null.html -testharness portals/portals-host-post-message.sub.html -testharness portals/portals-navigate-after-adoption.html -testharness portals/portals-nested.html -testharness portals/portals-post-message.sub.html -testharness portals/portals-referrer-inherit-header.html -testharness portals/portals-referrer-inherit-meta.html -testharness portals/portals-referrer.html -testharness portals/portals-repeated-activate.html -testharness portals/portals-set-src-after-activate.html -testharness portals/predecessor-fires-unload.html -testharness portals/xfo/portals-xfo-deny.sub.html -testharness portals/xfo/portals-xfo-sameorigin.html testharness preload/avoid-delaying-onload-link-modulepreload-exec.html testharness preload/avoid-delaying-onload-link-modulepreload.html testharness preload/avoid-delaying-onload-link-preload-style.html @@ -42623,6 +47233,9 @@ testharness preload/link-header-preload-imagesrcset.html testharness preload/link-header-preload-non-html.html testharness preload/link-header-preload-nonce.html testharness preload/link-header-preload.html +testharness preload/modulepreload-as.html +testharness preload/modulepreload-sri-importmap.html +testharness preload/modulepreload-sri.html testharness preload/modulepreload.html testharness preload/onerror-event.html testharness preload/onload-event.html @@ -42632,9 +47245,10 @@ testharness preload/prefetch-accept.html testharness preload/prefetch-cache.html testharness preload/prefetch-document.html testharness preload/prefetch-events.html -testharness preload/prefetch-headers.html +testharness preload/prefetch-headers.https.html testharness preload/prefetch-load-event.html -testharness preload/prefetch-types.html +testharness preload/prefetch-time-to-fetch.https.html +testharness preload/prefetch-types.https.html testharness preload/preload-connect-to-doc.html testharness preload/preload-csp.sub.html testharness preload/preload-default-csp.sub.html @@ -42643,6 +47257,7 @@ testharness preload/preload-error.sub.html testharness preload/preload-font-crossorigin.html testharness preload/preload-invalid-resources.html testharness preload/preload-link-cached-stylesheet-different-doc.html +testharness preload/preload-nonce.sub.html testharness preload/preload-referrer-policy.html testharness preload/preload-resource-match.https.html testharness preload/preload-strict-dynamic.sub.html @@ -42656,6 +47271,7 @@ testharness preload/single-download-preload.html testharness preload/subresource-integrity-font.html testharness preload/subresource-integrity-partial-image.html testharness preload/subresource-integrity.html +testharness preload/supported-as-values.html testharness presentation-api/controlling-ua/PresentationConnectionCloseEvent.https.html testharness presentation-api/controlling-ua/PresentationRequest_error.https.html testharness presentation-api/controlling-ua/PresentationRequest_mixedcontent.https.html @@ -42669,11 +47285,18 @@ testharness presentation-api/controlling-ua/getAvailability_sandboxing_success.h testharness presentation-api/controlling-ua/idlharness.https.html testharness presentation-api/controlling-ua/reconnectToPresentation_sandboxing_success.https.html testharness presentation-api/controlling-ua/startNewPresentation_error.https.html -testharness priority-hints/fetch-api-request.tentative.any.js -testharness priority-hints/iframe-attr-fetchpriority.tentative.html -testharness priority-hints/img-attr-fetchpriority.tentative.html -testharness priority-hints/link-attr-fetchpriority.tentative.html -testharness priority-hints/script-attr-fetchpriority.tentative.html +testharness private-aggregation/private-aggregation-permissions-policy-default.https.sub.html +testharness private-aggregation/private-aggregation-permissions-policy-none.https.sub.html +testharness private-aggregation/private-aggregation-permissions-policy-self.https.sub.html +testharness private-aggregation/protected-audience-auction-report-buyers-debug-mode-surface.https.html +testharness private-aggregation/protected-audience-surface-failure.https.html +testharness private-aggregation/protected-audience-surface-success.https.html +testharness private-aggregation/shared-storage-surface-context-id.https.html +testharness private-aggregation/shared-storage-surface-failure-2.https.html +testharness private-aggregation/shared-storage-surface-failure.https.html +testharness private-aggregation/shared-storage-surface-filtering-id.https.html +testharness private-aggregation/shared-storage-surface-success-2.https.html +testharness private-aggregation/shared-storage-surface-success.https.html testharness private-click-measurement/idlharness.window.js testharness proximity/ProximitySensor-iframe-access.https.html testharness proximity/ProximitySensor.https.html @@ -42681,6 +47304,7 @@ testharness proximity/ProximitySensor_insecure_context.html testharness proximity/idlharness.https.window.js testharness push-api/idlharness.https.any.js testharness push-api/permission.https.html +testharness push-api/subscribe-with-faulty-applicationServerKey.https.window.js testharness quirks/blocks-ignore-line-height.html testharness quirks/classname-query-after-sibling-adoption.html testharness quirks/hashless-hex-color/limited-quirks.html @@ -44005,7 +48629,9 @@ testharness remote-playback/disable-remote-playback-prompt-throws.html testharness remote-playback/disable-remote-playback-watch-availability-throws.html testharness remote-playback/idlharness.window.js testharness remote-playback/prompt-in-detached-iframe.html +testharness remote-playback/watch-availability-callback-parameter.html testharness remote-playback/watch-availability-initial-callback.html +testharness remote-playback/watch-availability-promise-return-callback-id.html testharness reporting/bufferSize.html testharness reporting/cross-origin-report-no-credentials.https.sub.html testharness reporting/cross-origin-reports-isolated.https.sub.html @@ -44084,7 +48710,7 @@ testharness resource-timing/cached-image-gets-single-entry.html testharness resource-timing/clear-resource-timings.html testharness resource-timing/connection-reuse.html testharness resource-timing/connection-reuse.https.html -testharness resource-timing/content-type-parsing.html +testharness resource-timing/content-type-minimization.html testharness resource-timing/content-type.html testharness resource-timing/cors-preflight.any.js testharness resource-timing/cross-origin-iframe.html @@ -44125,6 +48751,7 @@ testharness resource-timing/initiator-type/workers.html testharness resource-timing/input-sequence-of-events.html testharness resource-timing/interim-response-times.h2.html testharness resource-timing/interim-response-times.html +testharness resource-timing/internal-resources-not-counted.html testharness resource-timing/link-sequence-of-events.html testharness resource-timing/load-from-mem-cache-transfer-size.html testharness resource-timing/nested-context-navigations-embed.html @@ -44145,6 +48772,8 @@ testharness resource-timing/render-blocking-status-link.html testharness resource-timing/render-blocking-status-script.html testharness resource-timing/resource-ignore-data-url.html testharness resource-timing/resource-reload-TAO.html +testharness resource-timing/resource-timing-failed-fetch-web-bundle.tentative.html +testharness resource-timing/resource-timing-failed-fetch.html testharness resource-timing/resource-timing-level1.sub.html testharness resource-timing/resource_connection_reuse_mixed_content.html testharness resource-timing/resource_connection_reuse_mixed_content_redirect.html @@ -44164,6 +48793,9 @@ testharness resource-timing/sizes-redirect-img.html testharness resource-timing/sizes-redirect.any.js testharness resource-timing/status-codes-create-entry.html testharness resource-timing/supported_resource_type.any.js +testharness resource-timing/tentative/document-initiated.html +testharness resource-timing/tentative/script-initiated.html +testharness resource-timing/tentative/stylesheet-initiated.html testharness resource-timing/test_resource_timing.html testharness resource-timing/test_resource_timing.https.html testharness resource-timing/tojson.html @@ -44203,7 +48835,19 @@ testharness scheduler/task-controller-setPriority-recursive.any.js testharness scheduler/task-controller-setPriority-repeated.any.js testharness scheduler/task-controller-setPriority1.any.js testharness scheduler/task-controller-setPriority2.any.js +testharness scheduler/task-signal-any-abort.tentative.any.js +testharness scheduler/task-signal-any-post-task-run-order.tentative.any.js +testharness scheduler/task-signal-any-priority.tentative.any.js testharness scheduler/task-signal-onprioritychange.any.js +testharness scheduler/tentative/yield/yield-abort.any.js +testharness scheduler/tentative/yield/yield-inherit-across-promises.any.js +testharness scheduler/tentative/yield/yield-priority-idle-callbacks.html +testharness scheduler/tentative/yield/yield-priority-posttask.any.js +testharness scheduler/tentative/yield/yield-priority-timers.any.js +testharness scheduler/tentative/yield/yield-then-detach.html +testharness screen-capture/capture-controller-event-target.https.window.js +testharness screen-capture/delegate-request.https.sub.html +testharness screen-capture/getallscreensmedia-exposure.tentative.https.window.js testharness screen-capture/getdisplaymedia-after-discard.https.html testharness screen-capture/getdisplaymedia-capture-controller.https.window.js testharness screen-capture/getdisplaymedia-framerate.https.html @@ -44231,6 +48875,7 @@ testharness screen-orientation/onchange-event-subframe.html testharness screen-orientation/onchange-event.html testharness screen-orientation/orientation-reading.html testharness screen-orientation/unlock.html +testharness screen-wake-lock/chrome-bug-1348019.https.html testharness screen-wake-lock/idlharness.https.window.js testharness screen-wake-lock/wakelock-active-document.https.window.js testharness screen-wake-lock/wakelock-disabled-by-permissions-policy.https.html @@ -44248,8 +48893,12 @@ testharness screen-wake-lock/wakelock-supported-by-permissions-policy.html testharness screen-wake-lock/wakelock-type.https.window.js testharness screen-wake-lock/wakelockpermissiondescriptor.https.html testharness scroll-animations/css/animation-duration-auto.tentative.html +testharness scroll-animations/css/animation-events.html +testharness scroll-animations/css/animation-range-ignored.html +testharness scroll-animations/css/animation-range-normal-matches-cover.html testharness scroll-animations/css/animation-shorthand.html testharness scroll-animations/css/animation-timeline-computed.html +testharness scroll-animations/css/animation-timeline-deferred.html testharness scroll-animations/css/animation-timeline-ignored.tentative.html testharness scroll-animations/css/animation-timeline-in-keyframe.html testharness scroll-animations/css/animation-timeline-multiple.html @@ -44259,9 +48908,11 @@ testharness scroll-animations/css/animation-timeline-parsing.html testharness scroll-animations/css/animation-timeline-scroll-functional-notation.tentative.html testharness scroll-animations/css/animation-timeline-view-functional-notation.tentative.html testharness scroll-animations/css/get-animations-inactive-timeline.html +testharness scroll-animations/css/merge-timeline-offset-keyframes.html testharness scroll-animations/css/named-range-keyframes-with-document-timeline.tentative.html testharness scroll-animations/css/progress-based-animation-animation-longhand-properties.tentative.html testharness scroll-animations/css/progress-based-animation-timeline.html +testharness scroll-animations/css/pseudo-on-scroller.html testharness scroll-animations/css/scroll-timeline-axis-computed.html testharness scroll-animations/css/scroll-timeline-axis-parsing.html testharness scroll-animations/css/scroll-timeline-axis-writing-mode.html @@ -44274,13 +48925,21 @@ testharness scroll-animations/css/scroll-timeline-name-computed.html testharness scroll-animations/css/scroll-timeline-name-parsing.html testharness scroll-animations/css/scroll-timeline-name-shadow.html testharness scroll-animations/css/scroll-timeline-nearest-dirty.html +testharness scroll-animations/css/scroll-timeline-nearest-with-absolute-positioned-element.html testharness scroll-animations/css/scroll-timeline-paused-animations.html +testharness scroll-animations/css/scroll-timeline-range-animation.html testharness scroll-animations/css/scroll-timeline-responsiveness-from-endpoint.html testharness scroll-animations/css/scroll-timeline-root-dirty.html testharness scroll-animations/css/scroll-timeline-sampling.html -testharness scroll-animations/css/scroll-timeline-shorthand.tentative.html -testharness scroll-animations/css/scroll-timeline-sibling-gcs.html +testharness scroll-animations/css/scroll-timeline-shorthand.html +testharness scroll-animations/css/scroll-timeline-with-percent-delay.tentative.html +testharness scroll-animations/css/timeline-offset-in-keyframe-change-timeline.tentative.html +testharness scroll-animations/css/timeline-offset-keyframes-hidden-subject.html +testharness scroll-animations/css/timeline-offset-keyframes-with-document-timeline.html testharness scroll-animations/css/timeline-range-name-offset-in-keyframes.tentative.html +testharness scroll-animations/css/timeline-scope-computed.tentative.html +testharness scroll-animations/css/timeline-scope-parsing.tentative.html +testharness scroll-animations/css/timeline-scope.html testharness scroll-animations/css/view-timeline-animation-range-update.tentative.html testharness scroll-animations/css/view-timeline-animation.html testharness scroll-animations/css/view-timeline-axis-computed.html @@ -44289,13 +48948,16 @@ testharness scroll-animations/css/view-timeline-dynamic.html testharness scroll-animations/css/view-timeline-inset-animation.html testharness scroll-animations/css/view-timeline-inset-computed.html testharness scroll-animations/css/view-timeline-inset-parsing.html +testharness scroll-animations/css/view-timeline-keyframe-boundary-interpolation.html testharness scroll-animations/css/view-timeline-lookup.html testharness scroll-animations/css/view-timeline-name-computed.html testharness scroll-animations/css/view-timeline-name-parsing.html testharness scroll-animations/css/view-timeline-name-shadow.html testharness scroll-animations/css/view-timeline-range-animation.html -testharness scroll-animations/css/view-timeline-shorthand.tentative.html +testharness scroll-animations/css/view-timeline-shorthand.html testharness scroll-animations/css/view-timeline-used-values.html +testharness scroll-animations/css/view-timeline-with-delay-and-range.tentative.html +testharness scroll-animations/css/view-timeline-with-transform-on-subject.html testharness scroll-animations/scroll-timelines/cancel-animation.html testharness scroll-animations/scroll-timelines/constructor-no-document.html testharness scroll-animations/scroll-timelines/constructor.html @@ -44305,6 +48967,7 @@ testharness scroll-animations/scroll-timelines/current-time-writing-modes.html testharness scroll-animations/scroll-timelines/effect-updateTiming.html testharness scroll-animations/scroll-timelines/finish-animation.html testharness scroll-animations/scroll-timelines/idlharness.window.js +testharness scroll-animations/scroll-timelines/intrinsic-iteration-duration.tentative.html testharness scroll-animations/scroll-timelines/pause-animation.html testharness scroll-animations/scroll-timelines/play-animation.html testharness scroll-animations/scroll-timelines/reverse-animation.html @@ -44313,6 +48976,7 @@ testharness scroll-animations/scroll-timelines/scroll-animation-effect-phases.te testharness scroll-animations/scroll-timelines/scroll-animation-inactive-timeline.html testharness scroll-animations/scroll-timelines/scroll-animation.html testharness scroll-animations/scroll-timelines/scroll-timeline-invalidation.html +testharness scroll-animations/scroll-timelines/scroll-timeline-range.html testharness scroll-animations/scroll-timelines/scroll-timeline-snapshotting.html testharness scroll-animations/scroll-timelines/setting-current-time.html testharness scroll-animations/scroll-timelines/setting-playback-rate.html @@ -44321,30 +48985,64 @@ testharness scroll-animations/scroll-timelines/setting-timeline.tentative.html testharness scroll-animations/scroll-timelines/source-quirks-mode.html testharness scroll-animations/scroll-timelines/update-playback-rate.html testharness scroll-animations/scroll-timelines/updating-the-finished-state.html +testharness scroll-animations/view-timelines/animation-events.html testharness scroll-animations/view-timelines/block-view-timeline-current-time-vertical-rl.tentative.html testharness scroll-animations/view-timelines/block-view-timeline-current-time.tentative.html testharness scroll-animations/view-timelines/block-view-timeline-nested-subject.tentative.html +testharness scroll-animations/view-timelines/change-animation-range-updates-play-state.html +testharness scroll-animations/view-timelines/contain-alignment.html +testharness scroll-animations/view-timelines/fieldset-source.html +testharness scroll-animations/view-timelines/get-keyframes-with-timeline-offset.html +testharness scroll-animations/view-timelines/inline-subject.html testharness scroll-animations/view-timelines/inline-view-timeline-current-time.tentative.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-1.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-2.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-3.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-4.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-5.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-6.html +testharness scroll-animations/view-timelines/sticky/view-timeline-sticky-offscreen-7.html +testharness scroll-animations/view-timelines/svg-graphics-element-001.html +testharness scroll-animations/view-timelines/svg-graphics-element-002.html +testharness scroll-animations/view-timelines/svg-graphics-element-003.html +testharness scroll-animations/view-timelines/timeline-offset-in-keyframe.html +testharness scroll-animations/view-timelines/unattached-subject-inset.html testharness scroll-animations/view-timelines/view-timeline-get-current-time-range-name.html +testharness scroll-animations/view-timelines/view-timeline-get-set-range.html testharness scroll-animations/view-timelines/view-timeline-inset.html testharness scroll-animations/view-timelines/view-timeline-missing-subject.html +testharness scroll-animations/view-timelines/view-timeline-on-display-none-element.html testharness scroll-animations/view-timelines/view-timeline-range-large-subject.html testharness scroll-animations/view-timelines/view-timeline-range.html +testharness scroll-animations/view-timelines/view-timeline-root-source.html testharness scroll-animations/view-timelines/view-timeline-snapport.html testharness scroll-animations/view-timelines/view-timeline-source.tentative.html +testharness scroll-animations/view-timelines/view-timeline-sticky-block.html +testharness scroll-animations/view-timelines/view-timeline-sticky-inline.html testharness scroll-animations/view-timelines/view-timeline-subject-size-changes.html +testharness scroll-animations/view-timelines/zero-intrinsic-iteration-duration.tentative.html +testharness scroll-to-text-fragment/drag-selection-over-target-text.html testharness scroll-to-text-fragment/find-range-from-text-directive.html testharness scroll-to-text-fragment/force-load-at-top.html testharness scroll-to-text-fragment/idlharness.window.js testharness scroll-to-text-fragment/iframe-scroll.sub.html testharness scroll-to-text-fragment/iframes.sub.html +testharness scroll-to-text-fragment/non-html-documents-json.html testharness scroll-to-text-fragment/non-html-documents.html +testharness scroll-to-text-fragment/percent-encoding.html testharness scroll-to-text-fragment/redirects.html +testharness scroll-to-text-fragment/same-document-test-sync-load.html +testharness scroll-to-text-fragment/same-document-tests-force-load-at-top.html +testharness scroll-to-text-fragment/same-document-tests-no-force-load-at-top.html testharness scroll-to-text-fragment/same-document-tests.html +testharness scroll-to-text-fragment/scroll-to-text-fragment-after-DOMContentLoaded.html testharness scroll-to-text-fragment/scroll-to-text-fragment-api.html +testharness scroll-to-text-fragment/scroll-to-text-fragment-open-link-in-new-tab-desktop.html testharness scroll-to-text-fragment/scroll-to-text-fragment-same-doc.html +testharness scroll-to-text-fragment/scroll-to-text-fragment-scroll-to-center.html testharness scroll-to-text-fragment/scroll-to-text-fragment-security.sub.html testharness scroll-to-text-fragment/scroll-to-text-fragment.html +testharness scroll-to-text-fragment/sequential-focus.html testharness secure-contexts/basic-dedicated-worker.html testharness secure-contexts/basic-dedicated-worker.https.html testharness secure-contexts/basic-popup-and-iframe-tests.html @@ -44388,6 +49086,7 @@ testharness selection/anonymous/details-ancestor.html testharness selection/anonymous/details-mutate.html testharness selection/bidi/modify.tentative.html testharness selection/caret/empty-elements.html +testharness selection/caret/move-around-contenteditable-false.html testharness selection/collapse-00.html testharness selection/collapse-15.html testharness selection/collapse-30.html @@ -44398,7 +49097,7 @@ testharness selection/contenteditable/cefalse-on-boundaries.html testharness selection/contenteditable/collapse.html testharness selection/contenteditable/initial-selection-on-focus.tentative.html testharness selection/contenteditable/modify.tentative.html -testharness selection/contenteditable/modifying-selection-with-middle-mouse-button.tentative.html +testharness selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html testharness selection/contenteditable/modifying-selection-with-primary-mouse-button.tentative.html testharness selection/deleteFromDocument.html testharness selection/drag-disabled-textarea-shadow-dom.html @@ -44415,50 +49114,47 @@ testharness selection/modify-line-flex-column.tentative.html testharness selection/modify-line-flex-row.tentative.html testharness selection/modify-line-grid-basic.tentative.html testharness selection/modify.tentative.html +testharness selection/move-paragraph-cross-editing-boundary.tentative.html +testharness selection/move-paragraphboundary-cross-editing-boundary.tentative.html +testharness selection/move-selection-range-into-different-root.tentative.html +testharness selection/onselectionchange-on-distinct-text-controls.html +testharness selection/onselectionchange-on-document.html testharness selection/removeAllRanges.html testharness selection/removeRange.html testharness selection/script-and-style-elements.html testharness selection/select-end-of-line-image.tentative.html testharness selection/selectAllChildren.html +testharness selection/selection-content-visibility-hidden.html +testharness selection/selection-nested-video.html +testharness selection/selection-range-after-editinghost-removed.html +testharness selection/selection-range-after-textcontrol-removed.html +testharness selection/selection-range-in-shadow-after-the-shadow-removed.tentative.html testharness selection/setBaseAndExtent.html +testharness selection/shadow-dom/tentative/Range-isPointInRange.html +testharness selection/shadow-dom/tentative/Selection-collapse-and-extend.html +testharness selection/shadow-dom/tentative/Selection-getComposedRanges-collapsed.html +testharness selection/shadow-dom/tentative/Selection-getComposedRanges.html +testharness selection/shadow-dom/tentative/Selection-isCollapsed.html +testharness selection/shadow-dom/tentative/Selection-later-become-slotted-content.html testharness selection/stringifier.tentative.html testharness selection/textcontrols/focus.html testharness selection/textcontrols/onselectionchange-content-attribute.html testharness selection/textcontrols/selectionchange-bubble.html +testharness selection/textcontrols/selectionchange-on-shadow-dom.html testharness selection/textcontrols/selectionchange.html testharness selection/toString-ff-bug-001.html testharness selection/type.html testharness selection/user-select-on-input-and-contenteditable.html +testharness serial/getPorts/reject_opaque_origin.https.html +testharness serial/getPorts/sandboxed_iframe.https.window.js testharness serial/idlharness.https.any.js +testharness serial/requestPort/reject_opaque_origin.https.html +testharness serial/requestPort/sandboxed_iframe.https.window.js testharness serial/serial-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html testharness serial/serial-allowed-by-permissions-policy-attribute.https.sub.html testharness serial/serial-allowed-by-permissions-policy.https.sub.html testharness serial/serial-default-permissions-policy.https.sub.html testharness serial/serial-disabled-by-permissions-policy.https.sub.html -testharness serial/serialPort_close.https.any.js -testharness serial/serialPort_events.https.any.js -testharness serial/serialPort_forget.https.any.js -testharness serial/serialPort_getInfo.https.any.js -testharness serial/serialPort_getSignals.https.any.js -testharness serial/serialPort_ondisconnect.https.any.js -testharness serial/serialPort_open.https.any.js -testharness serial/serialPort_readable_byob.https.any.js -testharness serial/serialPort_readable_cancel.https.any.js -testharness serial/serialPort_readable_chain.https.any.js -testharness serial/serialPort_readable_closeLocked.https.any.js -testharness serial/serialPort_readable_disconnect.https.any.js -testharness serial/serialPort_readable_largeRead.https.any.js -testharness serial/serialPort_readable_open.https.any.js -testharness serial/serialPort_readable_parityError.https.any.js -testharness serial/serialPort_readable_pipeThrough.https.any.js -testharness serial/serialPort_readable_smallRead.https.any.js -testharness serial/serialPort_setSignals.https.any.js -testharness serial/serialPort_writable.https.any.js -testharness serial/serialPort_writable_detachBuffer.https.any.js -testharness serial/serial_getPorts.https.any.js -testharness serial/serial_onconnect.https.any.js -testharness serial/serial_ondisconnect.https.any.js -testharness serial/serial_requestPort.https.window.js testharness server-timing/cross_origin.https.html testharness server-timing/idlharness.https.any.js testharness server-timing/navigation-timing-trickle.https.html @@ -44487,10 +49183,12 @@ testharness service-workers/cache-storage/sandboxed-iframes.https.html testharness service-workers/idlharness.https.any.js testharness service-workers/service-worker/Service-Worker-Allowed-header.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/close.https.html +testharness service-workers/service-worker/ServiceWorkerGlobalScope/error-message-event.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/extendable-message-event-constructor.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/extendable-message-event.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/fetch-on-the-right-interface.https.any.js testharness service-workers/service-worker/ServiceWorkerGlobalScope/isSecureContext.https.html +testharness service-workers/service-worker/ServiceWorkerGlobalScope/message-event-ports.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/postmessage.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/registration-attribute.https.html testharness service-workers/service-worker/ServiceWorkerGlobalScope/service-worker-error-event.https.html @@ -44523,6 +49221,8 @@ testharness service-workers/service-worker/clients-matchall-include-uncontrolled testharness service-workers/service-worker/clients-matchall-on-evaluation.https.html testharness service-workers/service-worker/clients-matchall-order.https.html testharness service-workers/service-worker/clients-matchall.https.html +testharness service-workers/service-worker/controlled-dedicatedworker-postMessage.https.html +testharness service-workers/service-worker/controlled-iframe-postMessage.https.html testharness service-workers/service-worker/controller-on-disconnect.https.html testharness service-workers/service-worker/controller-on-load.https.html testharness service-workers/service-worker/controller-on-reload.https.html @@ -44590,6 +49290,7 @@ testharness service-workers/service-worker/historical.https.any.js testharness service-workers/service-worker/http-to-https-redirect-and-register.https.html testharness service-workers/service-worker/immutable-prototype-serviceworker.https.html testharness service-workers/service-worker/import-scripts-cross-origin.https.html +testharness service-workers/service-worker/import-scripts-data-url.https.html testharness service-workers/service-worker/import-scripts-mime-types.https.html testharness service-workers/service-worker/import-scripts-redirect.https.html testharness service-workers/service-worker/import-scripts-resource-map.https.html @@ -44625,6 +49326,7 @@ testharness service-workers/service-worker/navigation-redirect-to-http.https.htm testharness service-workers/service-worker/navigation-redirect.https.html testharness service-workers/service-worker/navigation-sets-cookie.https.html testharness service-workers/service-worker/navigation-timing-extended.https.html +testharness service-workers/service-worker/navigation-timing-sizes.https.html testharness service-workers/service-worker/navigation-timing.https.html testharness service-workers/service-worker/nested-blob-url-workers.https.html testharness service-workers/service-worker/next-hop-protocol.https.html @@ -44635,6 +49337,7 @@ testharness service-workers/service-worker/oninstall-script-error.https.html testharness service-workers/service-worker/opaque-response-preloaded.https.html testharness service-workers/service-worker/opaque-script.https.html testharness service-workers/service-worker/partitioned-claim.tentative.https.html +testharness service-workers/service-worker/partitioned-cookies.tentative.https.html testharness service-workers/service-worker/partitioned-getRegistrations.tentative.https.html testharness service-workers/service-worker/partitioned-matchAll.tentative.https.html testharness service-workers/service-worker/partitioned.tentative.https.html @@ -44685,13 +49388,25 @@ testharness service-workers/service-worker/service-worker-csp-script.https.html testharness service-workers/service-worker/service-worker-header.https.html testharness service-workers/service-worker/serviceworker-message-event-historical.https.html testharness service-workers/service-worker/serviceworkerobject-scripturl.https.html +testharness service-workers/service-worker/shadowrealm-promise-rejection.https.html testharness service-workers/service-worker/skip-waiting-installed.https.html testharness service-workers/service-worker/skip-waiting-using-registration.https.html testharness service-workers/service-worker/skip-waiting-without-client.https.html testharness service-workers/service-worker/skip-waiting-without-using-registration.https.html testharness service-workers/service-worker/skip-waiting.https.html testharness service-workers/service-worker/state.https.html +testharness service-workers/service-worker/static-router-fetch-event.https.html +testharness service-workers/service-worker/static-router-invalid-rules.https.html +testharness service-workers/service-worker/static-router-main-resource.https.html +testharness service-workers/service-worker/static-router-multiple-router-registrations.https.html +testharness service-workers/service-worker/static-router-mutiple-conditions.https.html +testharness service-workers/service-worker/static-router-no-fetch-handler.https.html +testharness service-workers/service-worker/static-router-race-network-and-fetch-handler.https.html +testharness service-workers/service-worker/static-router-request-destination.https.html +testharness service-workers/service-worker/static-router-request-method.https.html +testharness service-workers/service-worker/static-router-subresource.https.html testharness service-workers/service-worker/synced-state.https.html +testharness service-workers/service-worker/tentative/static-router/static-router-resource-timing.https.html testharness service-workers/service-worker/uncontrolled-page.https.html testharness service-workers/service-worker/unregister-controller.https.html testharness service-workers/service-worker/unregister-immediately-before-installed.https.html @@ -44727,6 +49442,7 @@ testharness service-workers/service-worker/worker-interception.https.html testharness service-workers/service-worker/xhr-content-length.https.window.js testharness service-workers/service-worker/xhr-response-url.https.html testharness service-workers/service-worker/xsl-base-url.https.html +testharness shadow-dom/Document-caretPositionFromPoint.tentative.html testharness shadow-dom/Document-prototype-adoptNode.html testharness shadow-dom/Document-prototype-currentScript.html testharness shadow-dom/Document-prototype-importNode.html @@ -44743,17 +49459,23 @@ testharness shadow-dom/ShadowRoot-interface.html testharness shadow-dom/Slottable-mixin.html testharness shadow-dom/accesskey.tentative.html testharness shadow-dom/capturing-and-bubbling-event-listeners-across-shadow-trees.html -testharness shadow-dom/declarative/declarative-after-attachshadow.tentative.html -testharness shadow-dom/declarative/declarative-parser-interaction.tentative.html -testharness shadow-dom/declarative/declarative-shadow-dom-attachment.tentative.html -testharness shadow-dom/declarative/declarative-shadow-dom-basic.tentative.html -testharness shadow-dom/declarative/declarative-shadow-dom-opt-in.tentative.html -testharness shadow-dom/declarative/declarative-with-disabled-shadow.tentative.html +testharness shadow-dom/declarative/declarative-after-attachshadow.html +testharness shadow-dom/declarative/declarative-parser-interaction.html +testharness shadow-dom/declarative/declarative-shadow-dom-attachment.html +testharness shadow-dom/declarative/declarative-shadow-dom-available-to-element-internals.html +testharness shadow-dom/declarative/declarative-shadow-dom-basic.html +testharness shadow-dom/declarative/declarative-shadow-dom-opt-in.html +testharness shadow-dom/declarative/declarative-shadow-dom-repeats-2.html +testharness shadow-dom/declarative/declarative-shadow-dom-repeats.html +testharness shadow-dom/declarative/declarative-shadow-dom-write-to-iframe.html +testharness shadow-dom/declarative/declarative-with-disabled-shadow.html +testharness shadow-dom/declarative/gethtml-ordering.html +testharness shadow-dom/declarative/gethtml.html testharness shadow-dom/declarative/getinnerhtml.tentative.html -testharness shadow-dom/declarative/innerhtml-before-closing-tag.tentative.html -testharness shadow-dom/declarative/innerhtml-on-ordinary-template.tentative.html -testharness shadow-dom/declarative/move-template-before-closing-tag.tentative.html -testharness shadow-dom/declarative/script-access.tentative.html +testharness shadow-dom/declarative/innerhtml-before-closing-tag.html +testharness shadow-dom/declarative/innerhtml-on-ordinary-template.html +testharness shadow-dom/declarative/move-template-before-closing-tag.html +testharness shadow-dom/declarative/script-access.html testharness shadow-dom/event-composed-path-after-dom-mutation.html testharness shadow-dom/event-composed-path-with-related-target.html testharness shadow-dom/event-composed-path.html @@ -44775,7 +49497,7 @@ testharness shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-slot.htm testharness shadow-dom/focus-navigation/focus-navigation-slot-with-tabindex.html testharness shadow-dom/focus-navigation/focus-navigation-slots-in-slot.html testharness shadow-dom/focus-navigation/focus-navigation-slots.html -testharness shadow-dom/focus-navigation/focus-navigation-web-component-input-type-radio.html +testharness shadow-dom/focus-navigation/focus-navigation-web-component-radio.html testharness shadow-dom/focus-navigation/focus-navigation-with-delegatesFocus.html testharness shadow-dom/focus-navigation/focus-navigation.html testharness shadow-dom/focus-navigation/focus-nested-slots.html @@ -44783,6 +49505,22 @@ testharness shadow-dom/focus-navigation/focus-reverse-unassignable-slot.html testharness shadow-dom/focus-navigation/focus-reverse-unassigned-slot.html testharness shadow-dom/focus-navigation/focus-unassignable-slot.html testharness shadow-dom/focus-navigation/focus-with-negative-index.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/flex-flow.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/flex-visual-order.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-columns.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-across-scopes.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-on-shadow-host.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-pseudo-elements.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-display-contents.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-iframe.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-nested-grids.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-popover.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-position-absolute.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-position-fixed.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-slots.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-order.html +testharness shadow-dom/focus-navigation/reading-flow/tentative/grid-rows.html +testharness shadow-dom/focus-within-shadow.html testharness shadow-dom/focus/DocumentOrShadowRoot-activeElement.html testharness shadow-dom/focus/ShadowRoot-delegatesFocus.html testharness shadow-dom/focus/blur-on-shadow-host-delegatesFocus.html @@ -44796,8 +49534,10 @@ testharness shadow-dom/focus/focus-method-delegatesFocus-nested-browsing-context testharness shadow-dom/focus/focus-method-delegatesFocus.html testharness shadow-dom/focus/focus-method-with-delegatesFocus.html testharness shadow-dom/focus/focus-pseudo-matches-on-shadow-host.html +testharness shadow-dom/focus/focus-scroll-under-delegatesFocus.html testharness shadow-dom/focus/focus-selector-delegatesFocus.html testharness shadow-dom/focus/focus-shadowhost-display-none.html +testharness shadow-dom/focus/focus-slot-box-generated-tabindex-0.html testharness shadow-dom/focus/focus-tab-on-shadow-host.html testharness shadow-dom/focus/focus-tabindex-order-shadow-negative-delegatesFocus.html testharness shadow-dom/focus/focus-tabindex-order-shadow-negative.html @@ -44813,9 +49553,11 @@ testharness shadow-dom/focus/focus-tabindex-order-shadow-zero-host-not-set.html testharness shadow-dom/focus/focus-tabindex-order-shadow-zero-host-one.html testharness shadow-dom/focus/focus-tabindex-order-shadow-zero-host-scrollable.html testharness shadow-dom/focus/focus-tabindex-order-shadow-zero.html +testharness shadow-dom/focus/text-selection-with-delegatesFocus.html testharness shadow-dom/form-control-form-attribute.html testharness shadow-dom/getElementById-dynamic-001.html testharness shadow-dom/historical.html +testharness shadow-dom/host-with-namespace.xhtml testharness shadow-dom/imperative-slot-api-slotchange.html testharness shadow-dom/imperative-slot-api.html testharness shadow-dom/imperative-slot-fallback-clear.html @@ -44825,10 +49567,19 @@ testharness shadow-dom/input-element-list.html testharness shadow-dom/input-type-radio.html testharness shadow-dom/leaktests/get-elements.html testharness shadow-dom/leaktests/html-collection.html +testharness shadow-dom/leaktests/selection.html testharness shadow-dom/leaktests/window-frames.html testharness shadow-dom/offsetParent-across-shadow-boundaries.html testharness shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html +testharness shadow-dom/reference-target/tentative/anchor.html +testharness shadow-dom/reference-target/tentative/aria-labelledby.html +testharness shadow-dom/reference-target/tentative/label-descendant.html +testharness shadow-dom/reference-target/tentative/label-for.html +testharness shadow-dom/reference-target/tentative/popovertarget.html +testharness shadow-dom/reference-target/tentative/property-reflection.html testharness shadow-dom/scroll-to-the-fragment-in-shadow-tree.html +testharness shadow-dom/selection-direction.tentative.html +testharness shadow-dom/shadow-root-clonable.html testharness shadow-dom/slotchange-customelements.html testharness shadow-dom/slotchange-event.html testharness shadow-dom/slotchange.html @@ -44912,12 +49663,85 @@ testharness shape-detection/detection-security-test.https.html testharness shape-detection/detector-same-object.https.html testharness shape-detection/idlharness.https.any.js testharness shape-detection/shapedetection-cross-origin.sub.https.html +testharness shape-detection/single-barcode-detection.https.html +testharness shape-detection/single-face-detection.https.html +testharness shape-detection/single-text-detection.https.html +testharness shared-storage-selecturl-limit/run-url-selection-operation-limit-multiple-sites.tentative.https.sub.html +testharness shared-storage-selecturl-limit/run-url-selection-operation-limit.tentative.https.sub.html +testharness shared-storage-selecturl-limit/select-url-limit-multiple-worklets.tentative.https.sub.html +testharness shared-storage/add-module-cross-origin-script.tentative.https.sub.html +testharness shared-storage/add-module-or-create-worklet-with-data-url.tentative.https.sub.html +testharness shared-storage/add-module.tentative.https.sub.html +testharness shared-storage/append-exceed-former-entry-limit.tentative.https.html +testharness shared-storage/blob-module-script-url-invalid-mime-type.tentative.https.sub.html +testharness shared-storage/blob-module-script-url.tentative.https.sub.html +testharness shared-storage/combined-setters-and-operations.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-credentials-include.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-credentials-omit.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-credentials-same-origin.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-data-origin-option.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-failure-missing-access-control-allow-credentials.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-failure-missing-access-control-allow-origin.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-false-shared-storage-cross-origin-worklet-allowed.tentative.https.sub.html +testharness shared-storage/cross-origin-create-worklet-missing-shared-storage-cross-origin-worklet-allowed.tentative.https.sub.html +testharness shared-storage/cross-origin-worklet-in-sandboxed-frame.tentative.https.sub.html +testharness shared-storage/cross-origin-worklet-select-url-and-verify-data-origin.tentative.https.sub.html +testharness shared-storage/embedder-context.tentative.https.sub.html +testharness shared-storage/insecure-context.tentative.http.html +testharness shared-storage/run-operation-in-detached-frame.tentative.https.sub.html +testharness shared-storage/run-operation-keep-alive.tentative.https.sub.html +testharness shared-storage/run-operation.tentative.https.sub.html +testharness shared-storage/run-url-selection-operation-without-add-module.tentative.https.sub.html +testharness shared-storage/run-url-selection-operation.tentative.https.sub.html +testharness shared-storage/same-origin-add-module-credentials-include.tentative.https.sub.html +testharness shared-storage/same-origin-add-module-credentials-omit.tentative.https.sub.html +testharness shared-storage/same-origin-add-module-credentials-same-origin.tentative.https.sub.html +testharness shared-storage/same-origin-create-worklet-credentials-include.tentative.https.sub.html +testharness shared-storage/same-origin-create-worklet-credentials-omit.tentative.https.sub.html +testharness shared-storage/same-origin-create-worklet-credentials-same-origin.tentative.https.sub.html +testharness shared-storage/same-origin-create-worklet-data-origin-option.tentative.https.sub.html +testharness shared-storage/select-url-keep-alive.tentative.https.sub.html +testharness shared-storage/select-url-on-shared-storage-and-worklet-object-successively.tentative.https.sub.html +testharness shared-storage/select-url-on-two-worklets.tentative.https.sub.html testharness shared-storage/select-url-permissions-policy-default.tentative.https.sub.html testharness shared-storage/select-url-permissions-policy-none.tentative.https.sub.html testharness shared-storage/select-url-permissions-policy-self.tentative.https.sub.html +testharness shared-storage/select-url-report-event.tentative.https.sub.html +testharness shared-storage/set-exceed-former-entry-limit.tentative.https.html +testharness shared-storage/setters-long-string.tentative.https.sub.html +testharness shared-storage/setters.tentative.https.sub.html +testharness shared-storage/shared-storage-in-sandboxed-iframe.tentative.https.html testharness shared-storage/shared-storage-permissions-policy-default.tentative.https.sub.html testharness shared-storage/shared-storage-permissions-policy-none.tentative.https.sub.html testharness shared-storage/shared-storage-permissions-policy-self.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-clear.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-delete.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-fetch-request-for-data-url.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-fetch-request-in-data-url.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-fetch-request-in-sandboxed-frame.tentative.https.html +testharness shared-storage/shared-storage-writable-forbidden-header-tentative.https.html +testharness shared-storage/shared-storage-writable-iframe-content-attribute.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-iframe-idl-attribute-included.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-iframe-idl-attribute-not-included.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-iframe-in-fenced.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-iframe-request-in-data-url.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-iframe-request-in-sandboxed-frame.tentative.https.html +testharness shared-storage/shared-storage-writable-img-content-attribute.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-img-idl-attribute-included-bytes.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-img-idl-attribute-included.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-img-idl-attribute-not-included.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-img-request-in-data-url.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-img-request-in-sandboxed-frame.tentative.https.html +testharness shared-storage/shared-storage-writable-insecure-context.tentative.http.sub.html +testharness shared-storage/shared-storage-writable-multi-redirect.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-permissions-policy-default.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-permissions-policy-none.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-permissions-policy-self.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-service-worker-fetch.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-service-worker-iframe.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-service-worker-img.tentative.https.sub.html +testharness shared-storage/shared-storage-writable-setters.tentative.https.sub.html +testharness shared-storage/verify-get-undefined.tentative.https.sub.html testharness signed-exchange/check-cert-request.tentative.html testharness signed-exchange/fallback-to-another-sxg.tentative.html testharness signed-exchange/nested-sxg.tentative.html @@ -44979,54 +49803,87 @@ testharness signed-exchange/sxg-variants-match.tentative.html testharness signed-exchange/sxg-variants-mismatch.tentative.html testharness signed-exchange/sxg-version1b2.tentative.html testharness soft-navigation-heuristics/back.tentative.html +testharness soft-navigation-heuristics/click-event-bubbles.tentative.html +testharness soft-navigation-heuristics/disabled.html testharness soft-navigation-heuristics/dropped-entries.tentative.html +testharness soft-navigation-heuristics/first-interaction-not-softnav.tentative.html testharness soft-navigation-heuristics/hash.tentative.html +testharness soft-navigation-heuristics/image-lcp-before-detection-second-softnav.tentative.html +testharness soft-navigation-heuristics/image-lcp-before-detection.tentative.html testharness soft-navigation-heuristics/image-lcp-followed-by-image-softnav-lcp.tentative.html testharness soft-navigation-heuristics/image-lcp-followed-by-text-softnav-lcp.tentative.html testharness soft-navigation-heuristics/image-lcp-followed-by-two-image-softnavs-lcp.tentative.html +testharness soft-navigation-heuristics/innertext.tentative.html +testharness soft-navigation-heuristics/interaction-with-paint-before-back.tentative.html +testharness soft-navigation-heuristics/load-classic-script-history-push.tentative.html +testharness soft-navigation-heuristics/load-module-script-history-push.tentative.html +testharness soft-navigation-heuristics/multiple-nested-events.tentative.html testharness soft-navigation-heuristics/multiple-paint-entries-buffered.tentative.html testharness soft-navigation-heuristics/navigate-child.html +testharness soft-navigation-heuristics/navigation-api-after-transition-commit.tentative.html testharness soft-navigation-heuristics/navigation-api-back.tentative.html testharness soft-navigation-heuristics/navigation-api-forward.tentative.html testharness soft-navigation-heuristics/navigation-api-hash.tentative.html testharness soft-navigation-heuristics/navigation-api-preventDefault.tentative.html testharness soft-navigation-heuristics/navigation-api-rejected.tentative.html testharness soft-navigation-heuristics/navigation-api-traverseto.tentative.html +testharness soft-navigation-heuristics/navigation-api-view-transition.tentative.html testharness soft-navigation-heuristics/navigation-api.tentative.html +testharness soft-navigation-heuristics/popstate-multiple-backs.tentative.html testharness soft-navigation-heuristics/popstate.tentative.html testharness soft-navigation-heuristics/replacestate-null-then-push.tentative.html testharness soft-navigation-heuristics/replacestate.tentative.html +testharness soft-navigation-heuristics/second-interaction-not-softnav.tentative.html testharness soft-navigation-heuristics/soft-navigation-detection-main-descendent.tentative.html testharness soft-navigation-heuristics/soft-navigation-detection-non-main.tentative.html testharness soft-navigation-heuristics/soft-navigation-detection-web-component-lifecycle.tentative.html testharness soft-navigation-heuristics/soft-navigation-detection.tentative.html testharness soft-navigation-heuristics/soft-navigation-no-url.tentative.html +testharness soft-navigation-heuristics/softnav-after-lcp-paint-larger-than-viewport.tentative.html +testharness soft-navigation-heuristics/softnav-after-lcp-paint.tentative.html +testharness soft-navigation-heuristics/softnav-before-lcp-paint.tentative.html +testharness soft-navigation-heuristics/softnav-between-lcp-render-and-paint.tentative.html testharness soft-navigation-heuristics/supported-entry-types.tentative.html +testharness soft-navigation-heuristics/text-lcp-before-detection-second-softnav.tentative.html +testharness soft-navigation-heuristics/text-lcp-before-detection.tentative.html +testharness soft-navigation-heuristics/text-lcp-followed-by-anim-image-softnav-lcp.tentative.html testharness soft-navigation-heuristics/text-lcp-followed-by-image-softnav-lcp.tentative.html testharness soft-navigation-heuristics/text-lcp-followed-by-text-softnav-lcp.tentative.html +testharness soft-navigation-heuristics/visited-link.tentative.html testharness speculation-rules/prefetch/anonymous-client.https.html +testharness speculation-rules/prefetch/cookie-indices.https.html testharness speculation-rules/prefetch/cross-origin-cookies.https.html +testharness speculation-rules/prefetch/different-initiators-2.https.html +testharness speculation-rules/prefetch/different-initiators.sub.https.html testharness speculation-rules/prefetch/document-rules.https.html testharness speculation-rules/prefetch/duplicate-urls.https.html +testharness speculation-rules/prefetch/fragment.https.html +testharness speculation-rules/prefetch/implicit-source.https.html +testharness speculation-rules/prefetch/initiators-a-element.sub.https.html +testharness speculation-rules/prefetch/initiators-iframe-location-href.sub.https.html +testharness speculation-rules/prefetch/initiators-window-open.sub.https.html testharness speculation-rules/prefetch/invalid-rules.https.html testharness speculation-rules/prefetch/multiple-url.https.html -testharness speculation-rules/prefetch/navigation-timing-delivery-type.tentative.https.html +testharness speculation-rules/prefetch/navigation-timing-delivery-type.https.html testharness speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html testharness speculation-rules/prefetch/navigation-timing-sizes.https.html +testharness speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html testharness speculation-rules/prefetch/no-vary-search/prefetch-single.https.html testharness speculation-rules/prefetch/out-of-document-rule-set.https.html testharness speculation-rules/prefetch/prefetch-single.https.html testharness speculation-rules/prefetch/prefetch-status.https.html testharness speculation-rules/prefetch/prefetch-traverse-reload.sub.html -testharness speculation-rules/prefetch/redirect-url.https.html +testharness speculation-rules/prefetch/prefetch-uses-cache.sub.https.html +testharness speculation-rules/prefetch/redirect-url.sub.https.html testharness speculation-rules/prefetch/referrer-policy-from-rules.https.html testharness speculation-rules/prefetch/referrer-policy-not-accepted.https.html testharness speculation-rules/prefetch/referrer-policy.https.html testharness speculation-rules/prefetch/same-origin-cookies.https.html testharness speculation-rules/prefetch/user-pass.https.html testharness speculation-rules/prerender/about-blank-iframes.html -testharness speculation-rules/prerender/accept-clint-hint-cache.https.html +testharness speculation-rules/prerender/accept-client-hint-cache.https.html testharness speculation-rules/prerender/activation-start.html +testharness speculation-rules/prerender/blob_object_url.html testharness speculation-rules/prerender/cache-storage.https.html testharness speculation-rules/prerender/clients-matchall.https.html testharness speculation-rules/prerender/cookies.https.html @@ -45034,21 +49891,27 @@ testharness speculation-rules/prerender/credentialed-prerender-not-opt-in.html testharness speculation-rules/prerender/credentialed-prerender-opt-in.html testharness speculation-rules/prerender/cross-origin-iframe.html testharness speculation-rules/prerender/cross-origin-isolated.https.html -testharness speculation-rules/prerender/csp-prefetch-src-allow.html -testharness speculation-rules/prerender/csp-prefetch-src-disallow.html -testharness speculation-rules/prerender/csp-script-src-elem-inline-speculation-rules.tentative.html -testharness speculation-rules/prerender/csp-script-src-inline-speculation-rules.tentative.html +testharness speculation-rules/prerender/csp-script-src-elem-inline-speculation-rules.html +testharness speculation-rules/prerender/csp-script-src-inline-speculation-rules.html testharness speculation-rules/prerender/csp-script-src-self.html +testharness speculation-rules/prerender/csp-script-src-strict-dynamic.html testharness speculation-rules/prerender/csp-script-src-unsafe-inline.html testharness speculation-rules/prerender/fetch-blob.html testharness speculation-rules/prerender/fetch-intercepted-by-service-worker.https.html testharness speculation-rules/prerender/iframe-added-post-activation.html testharness speculation-rules/prerender/indexeddb.html testharness speculation-rules/prerender/local-storage.html +testharness speculation-rules/prerender/main-frame-navigation.https.html testharness speculation-rules/prerender/media-autoplay.html +testharness speculation-rules/prerender/navigation-api-location-replace.html +testharness speculation-rules/prerender/navigation-api-multiple-entries.html +testharness speculation-rules/prerender/navigation-api.html testharness speculation-rules/prerender/navigation-intercepted-by-service-worker.https.html -testharness speculation-rules/prerender/navigator-plugins.tentative.html -testharness speculation-rules/prerender/navigator-subapp.https.tentative.html +testharness speculation-rules/prerender/navigator-plugins.html +testharness speculation-rules/prerender/no-vary-search-hint.https.html +testharness speculation-rules/prerender/no-vary-search.https.html +testharness speculation-rules/prerender/prefetch.https.html +testharness speculation-rules/prerender/prerender-while-prerender.html testharness speculation-rules/prerender/referrer-policy-from-rules.html testharness speculation-rules/prerender/referrer-policy-mismatch.html testharness speculation-rules/prerender/referrer-policy-no-referrer.html @@ -45074,6 +49937,8 @@ testharness speculation-rules/prerender/restriction-idle-detection.https.html testharness speculation-rules/prerender/restriction-local-file-system-access.https.html testharness speculation-rules/prerender/restriction-media-auto-play-attribute.html testharness speculation-rules/prerender/restriction-media-camera.https.html +testharness speculation-rules/prerender/restriction-media-capabilities-decoding-info.https.html +testharness speculation-rules/prerender/restriction-media-capabilities-encoding-info.https.html testharness speculation-rules/prerender/restriction-media-device-info.https.html testharness speculation-rules/prerender/restriction-media-microphone.https.html testharness speculation-rules/prerender/restriction-media-play.html @@ -45118,12 +49983,13 @@ testharness speculation-rules/prerender/session-history-navigation.https.html testharness speculation-rules/prerender/session-history-pushstate.https.html testharness speculation-rules/prerender/session-history-subframe-navigation.https.html testharness speculation-rules/prerender/session-history-subframe-reload.https.html +testharness speculation-rules/prerender/session-storage.tentative.html testharness speculation-rules/prerender/state-and-event.html testharness speculation-rules/prerender/visibility-state.html -testharness speculation-rules/prerender/web-database.https.html testharness speculation-rules/prerender/windowclient-navigate-to-cross-origin-url-on-iframe.https.html testharness speculation-rules/prerender/windowclient-navigate-to-same-origin-url-on-iframe.https.html testharness speculation-rules/prerender/windowclient-navigate.https.html +testharness speculation-rules/prerender/workers-in-cross-origin-iframe.html testharness speculation-rules/prerender/workers.html testharness speech-api/SpeechRecognition-basics.https.html testharness speech-api/SpeechSynthesis-pause-resume.tentative.html @@ -45132,24 +49998,54 @@ testharness speech-api/SpeechSynthesis-speak-twice.html testharness speech-api/SpeechSynthesis-speak-without-activation-fails.tentative.html testharness speech-api/SpeechSynthesisErrorEvent-constructor.html testharness speech-api/SpeechSynthesisEvent-constructor.html +testharness speech-api/SpeechSynthesisEvent-properties.html testharness speech-api/SpeechSynthesisUtterance-basics.https.html testharness speech-api/historical.html testharness speech-api/idlharness.window.js +testharness storage-access-api/hasStorageAccess-ABA.sub.https.window.js testharness storage-access-api/hasStorageAccess-insecure.sub.window.js testharness storage-access-api/hasStorageAccess.sub.https.window.js testharness storage-access-api/idlharness.window.js +testharness storage-access-api/requestStorageAccess-ABA.sub.https.window.js +testharness storage-access-api/requestStorageAccess-cross-origin-iframe-navigation-relax.sub.https.window.js testharness storage-access-api/requestStorageAccess-cross-origin-iframe-navigation.sub.https.window.js -testharness storage-access-api/requestStorageAccess-cross-origin-iframe.sub.https.window.js -testharness storage-access-api/requestStorageAccess-cross-origin-sibling-iframes.sub.https.window.js +testharness storage-access-api/requestStorageAccess-cross-site-iframe.sub.https.window.js +testharness storage-access-api/requestStorageAccess-cross-site-sibling-iframes.sub.https.window.js +testharness storage-access-api/requestStorageAccess-dedicated-worker.sub.https.window.js testharness storage-access-api/requestStorageAccess-insecure.sub.window.js testharness storage-access-api/requestStorageAccess-nested-cross-origin-iframe.sub.https.window.js +testharness storage-access-api/requestStorageAccess-nested-cross-site-iframe.sub.https.window.js testharness storage-access-api/requestStorageAccess-nested-same-origin-iframe.sub.https.window.js testharness storage-access-api/requestStorageAccess-non-fully-active.sub.https.window.js -testharness storage-access-api/requestStorageAccess-same-origin-iframe.sub.https.window.js +testharness storage-access-api/requestStorageAccess-same-site-iframe.sub.https.window.js +testharness storage-access-api/requestStorageAccess-sandboxed-iframe-allow-storage-access.sub.https.window.js +testharness storage-access-api/requestStorageAccess-sandboxed-iframe-no-storage-access.sub.https.window.js +testharness storage-access-api/requestStorageAccess-web-socket.sub.https.window.js testharness storage-access-api/requestStorageAccess.sub.https.window.js -testharness storage-access-api/sandboxAttribute.window.js +testharness storage-access-api/storage-access-beyond-cookies.BroadcastChannel.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.SharedWorker.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.blobStorage.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.caches.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.cookies.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.estimate.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.getDirectory.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.indexedDB.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.localStorage.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.locks.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.none.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.sessionStorage.sub.https.window.js +testharness storage-access-api/storage-access-beyond-cookies.unpartitioned.sub.https.window.js testharness storage-access-api/storage-access-permission.sub.https.window.js testharness storage-access-api/storageAccess.testdriver.sub.html +testharness storage/buckets/bucket-quota-indexeddb.tentative.https.any.js +testharness storage/buckets/bucket-storage-policy.tentative.https.any.js +testharness storage/buckets/bucket_names.tentative.https.any.js +testharness storage/buckets/buckets_basic.tentative.https.any.js +testharness storage/buckets/buckets_storage_policy.tentative.https.any.js +testharness storage/buckets/detached-iframe.https.html +testharness storage/buckets/idlharness-worker.https.any.js +testharness storage/buckets/opaque-origin.https.window.js +testharness storage/buckets/storage_bucket_object.tentative.https.any.js testharness storage/estimate-indexeddb.https.any.js testharness storage/estimate-parallel.https.any.js testharness storage/estimate-usage-details-caches.https.tentative.any.js @@ -45165,6 +50061,7 @@ testharness storage/permission-query.https.any.js testharness storage/persisted.https.any.js testharness storage/quotachange-in-detached-iframe.tentative.https.html testharness storage/storagemanager-estimate.https.any.js +testharness storage/storagemanager-persist-persisted-match.https.window.js testharness storage/storagemanager-persist.https.window.js testharness storage/storagemanager-persist.https.worker.js testharness storage/storagemanager-persisted.https.any.js @@ -45176,6 +50073,7 @@ testharness streams/piping/close-propagation-forward.any.js testharness streams/piping/error-propagation-backward.any.js testharness streams/piping/error-propagation-forward.any.js testharness streams/piping/flow-control.any.js +testharness streams/piping/general-addition.any.js testharness streams/piping/general.any.js testharness streams/piping/multiple-propagation.any.js testharness streams/piping/pipe-through.any.js @@ -45186,9 +50084,10 @@ testharness streams/queuing-strategies-size-function-per-global.window.js testharness streams/queuing-strategies.any.js testharness streams/readable-byte-streams/bad-buffers-and-views.any.js testharness streams/readable-byte-streams/construct-byob-request.any.js -testharness streams/readable-byte-streams/enqueue-with-detached-buffer.window.js +testharness streams/readable-byte-streams/enqueue-with-detached-buffer.any.js testharness streams/readable-byte-streams/general.any.js testharness streams/readable-byte-streams/non-transferable-buffers.any.js +testharness streams/readable-byte-streams/read-min.any.js testharness streams/readable-byte-streams/respond-after-enqueue.any.js testharness streams/readable-byte-streams/tee.any.js testharness streams/readable-streams/async-iterator.any.js @@ -45200,10 +50099,15 @@ testharness streams/readable-streams/count-queuing-strategy-integration.any.js testharness streams/readable-streams/cross-realm-crash.window.js testharness streams/readable-streams/default-reader.any.js testharness streams/readable-streams/floating-point-total-queue-size.any.js +testharness streams/readable-streams/from.any.js testharness streams/readable-streams/garbage-collection.any.js testharness streams/readable-streams/general.any.js testharness streams/readable-streams/global.html +testharness streams/readable-streams/owning-type-message-port.any.js +testharness streams/readable-streams/owning-type-video-frame.any.js +testharness streams/readable-streams/owning-type.any.js testharness streams/readable-streams/patched-global.any.js +testharness streams/readable-streams/read-task-handling.window.js testharness streams/readable-streams/reentrant-strategies.any.js testharness streams/readable-streams/tee.any.js testharness streams/readable-streams/templated.any.js @@ -45213,14 +50117,17 @@ testharness streams/transferable/reason.html testharness streams/transferable/service-worker.https.html testharness streams/transferable/shared-worker.html testharness streams/transferable/transfer-with-messageport.window.js +testharness streams/transferable/transform-stream-members.any.js testharness streams/transferable/transform-stream.html testharness streams/transferable/window.html testharness streams/transferable/worker.html testharness streams/transferable/writable-stream.html testharness streams/transform-streams/backpressure.any.js +testharness streams/transform-streams/cancel.any.js testharness streams/transform-streams/errors.any.js testharness streams/transform-streams/flush.any.js testharness streams/transform-streams/general.any.js +testharness streams/transform-streams/invalid-realm.tentative.window.js testharness streams/transform-streams/lipfuzz.any.js testharness streams/transform-streams/patched-global.any.js testharness streams/transform-streams/properties.any.js @@ -45250,6 +50157,10 @@ testharness subapps/list-success.tentative.https.html testharness subapps/remove-error.tentative.https.html testharness subapps/remove-success.tentative.https.html testharness subresource-integrity/subresource-integrity.html +testharness svg-aam/name/comp_host_language_label.html +testharness svg-aam/role/role-img.tentative.html +testharness svg-aam/role/roles-generic.html +testharness svg-aam/role/roles.html testharness svg/animations/accumulate-values-width-animation.html testharness svg/animations/additive-from-to-width-animation.html testharness svg/animations/additive-type-by-animation.html @@ -45305,8 +50216,10 @@ testharness svg/animations/animateMotion-display-none.html testharness svg/animations/animateMotion-ellipse.html testharness svg/animations/animateMotion-fill-freeze.html testharness svg/animations/animateMotion-fill-remove.html +testharness svg/animations/animateMotion-from-to-rotate-auto.html testharness svg/animations/animateMotion-keyPoints-001.html testharness svg/animations/animateMotion-line.html +testharness svg/animations/animateMotion-mpath.html testharness svg/animations/animateMotion-multiple.html testharness svg/animations/animateMotion-rect.html testharness svg/animations/animateMotion-still.html @@ -45322,6 +50235,7 @@ testharness svg/animations/change-css-property-while-animating-fill-freeze.html testharness svg/animations/change-css-property-while-animating-fill-remove.html testharness svg/animations/change-target-while-animating-SVG-property.html testharness svg/animations/correct-events-for-short-animations-with-syncbases.html +testharness svg/animations/custom-events.html testharness svg/animations/cyclic-syncbase-2.html testharness svg/animations/cyclic-syncbase-events.html testharness svg/animations/cyclic-syncbase.html @@ -45329,6 +50243,7 @@ testharness svg/animations/dependent-begin-on-syncbase.html testharness svg/animations/dependent-end-on-syncbase.html testharness svg/animations/end-attribute-change-end-time.html testharness svg/animations/end-event.svg +testharness svg/animations/event-listeners.html testharness svg/animations/eventbase-non-svg-element.html testharness svg/animations/first-interval-in-the-past-contribute.html testharness svg/animations/first-interval-in-the-past-dont-contribute.html @@ -45354,6 +50269,7 @@ testharness svg/animations/repeat-iteration-event-003.svg testharness svg/animations/repeat-iteration-event-004.svg testharness svg/animations/repeat-iteration-event-005.svg testharness svg/animations/repeat-iteration-event-006.svg +testharness svg/animations/repeatcount-attribute-mutation.html testharness svg/animations/repeatcount-numeric-limit.tentative.svg testharness svg/animations/repeatn-remove-add-animation.html testharness svg/animations/restart-never-and-begin-click.html @@ -45382,6 +50298,7 @@ testharness svg/animations/svgangle-animation-grad-to-deg.html testharness svg/animations/svgangle-animation-grad-to-rad.html testharness svg/animations/svgangle-animation-rad-to-deg.html testharness svg/animations/svgangle-animation-rad-to-grad.html +testharness svg/animations/svgangle-animation-unitType.html testharness svg/animations/svgboolean-animation-1.html testharness svg/animations/svgenum-animation-1.html testharness svg/animations/svgenum-animation-10.html @@ -45430,6 +50347,7 @@ testharness svg/animations/svglengthlist-animation-2.html testharness svg/animations/svglengthlist-animation-3.html testharness svg/animations/svglengthlist-animation-4.html testharness svg/animations/svglengthlist-animation-5.html +testharness svg/animations/svglengthlist-animation-unitType.html testharness svg/animations/svgnumber-animation-1.html testharness svg/animations/svgnumber-animation-2.html testharness svg/animations/svgnumber-animation-3.html @@ -45454,6 +50372,7 @@ testharness svg/animations/syncbase-remove-add-while-running.html testharness svg/coordinate-systems/outer-svg-intrinsic-size-001.html testharness svg/coordinate-systems/outer-svg-intrinsic-size-002.html testharness svg/coordinate-systems/svgtransformlist-replaceitem.html +testharness svg/embedded/image-crossorigin.sub.html testharness svg/extensibility/foreignObject/containing-block.html testharness svg/extensibility/foreignObject/getboundingclientrect.html testharness svg/extensibility/foreignObject/properties.svg @@ -45494,25 +50413,33 @@ testharness svg/interact/parsing/pointer-events-invalid.svg testharness svg/interact/parsing/pointer-events-valid.svg testharness svg/interact/script-common.html testharness svg/interact/script-content.svg +testharness svg/interact/scripted/async-01.svg +testharness svg/interact/scripted/async-02.html +testharness svg/interact/scripted/async-03.html testharness svg/interact/scripted/composed.window.svg +testharness svg/interact/scripted/defer-01.svg +testharness svg/interact/scripted/defer-02.html testharness svg/interact/scripted/ellipse-hittest.html testharness svg/interact/scripted/focus-events.svg testharness svg/interact/scripted/focus-tabindex-default-value.svg +testharness svg/interact/scripted/module-01.svg +testharness svg/interact/scripted/module-02.html testharness svg/interact/scripted/rect-hittest-001.html testharness svg/interact/scripted/rect-hittest-002.html testharness svg/interact/scripted/svg-pointer-events-bbox.html +testharness svg/interact/scripted/svg-root-border-radius.html testharness svg/interact/scripted/svg-small-big-path.html testharness svg/interact/scripted/tabindex-focus-flag.svg testharness svg/linking/scripted/a-download-click.svg testharness svg/linking/scripted/a.rel-getter-01.svg testharness svg/linking/scripted/a.rel-setter-01.svg -testharness svg/linking/scripted/a.text-getter-01.svg -testharness svg/linking/scripted/a.text-setter-01.svg testharness svg/linking/scripted/href-animate-element.html testharness svg/linking/scripted/href-mpath-element.html testharness svg/linking/scripted/href-script-element-markup.html testharness svg/linking/scripted/href-script-element.html testharness svg/linking/scripted/rellist-feature-detection.svg +testharness svg/painting/color-interpolation-animation.html +testharness svg/painting/fill-rule-no-interpolation.html testharness svg/painting/inheritance.svg testharness svg/painting/parsing/color-interpolation-computed.svg testharness svg/painting/parsing/color-interpolation-invalid.svg @@ -45575,6 +50502,7 @@ testharness svg/painting/parsing/stroke-width-valid.svg testharness svg/painting/parsing/text-rendering-computed.svg testharness svg/painting/parsing/text-rendering-invalid.svg testharness svg/painting/parsing/text-rendering-valid.svg +testharness svg/painting/reftests/paint-context-005.svg testharness svg/painting/scripted/paint-order-computed-value-01.svg testharness svg/path/error-handling/bounding.svg testharness svg/path/interfaces/SVGAnimatedPathData-removed.svg @@ -45594,6 +50522,7 @@ testharness svg/pservers/parsing/stop-opacity-valid.svg testharness svg/pservers/pattern-with-invalid-base-cloned-thcrash.html testharness svg/pservers/scripted/stop-color-inheritance-currentcolor.svg testharness svg/render/foreignObject-in-non-rendered-getComputedStyle.html +testharness svg/scripted/script-invalid-script-type.html testharness svg/scripted/script-runs-in-shadow-tree.html testharness svg/scripted/text-attrs-dxdy-have-length.svg testharness svg/scripted/text-attrs-xyrotate-have-length.svg @@ -45610,7 +50539,15 @@ testharness svg/shapes/scripted/shapes-clip-path.svg testharness svg/shapes/scripted/stroke-dashes-hit-at-high-scale.svg testharness svg/struct/UnknownElement/interface.svg testharness svg/struct/scripted/autofocus-attribute.svg -testharness svg/struct/scripted/svg-getIntersectionList.svg +testharness svg/struct/scripted/svg-checkIntersection-001.svg +testharness svg/struct/scripted/svg-checkIntersection-002.svg +testharness svg/struct/scripted/svg-getIntersectionList-001.svg +testharness svg/struct/scripted/svg-getIntersectionList-002.svg +testharness svg/struct/scripted/svg-getIntersectionList-003.svg +testharness svg/struct/scripted/svg-getIntersectionList-004.svg +testharness svg/struct/scripted/svg-getIntersectionList-005.svg +testharness svg/struct/scripted/svg-getIntersectionList-006.svg +testharness svg/struct/scripted/use-external-reload-in-iframe.html testharness svg/struct/scripted/use-load-error-events.tentative.html testharness svg/struct/use-getComputedStyle.html testharness svg/styling/css-selectors-case-sensitivity.html @@ -45620,6 +50557,7 @@ testharness svg/styling/presentation-attributes-special-cases.html testharness svg/styling/presentation-attributes-unknown.html testharness svg/styling/required-properties.svg testharness svg/styling/style-sheet-interfaces.svg +testharness svg/styling/vector-effect-invalid.html testharness svg/text/inheritance.svg testharness svg/text/parsing/inline-size-invalid.svg testharness svg/text/parsing/inline-size-valid.svg @@ -45680,14 +50618,23 @@ testharness svg/types/scripted/SVGGeometryElement.getTotalLength-01.svg testharness svg/types/scripted/SVGGeometryElement.isPointInFill-01.svg testharness svg/types/scripted/SVGGeometryElement.isPointInStroke-01.svg testharness svg/types/scripted/SVGGeometryElement.isPointInStroke-02.svg +testharness svg/types/scripted/SVGGraphicsElement-clone.svg testharness svg/types/scripted/SVGGraphicsElement.getBBox-01.html testharness svg/types/scripted/SVGGraphicsElement.getBBox-02.html testharness svg/types/scripted/SVGGraphicsElement.getBBox-03.html +testharness svg/types/scripted/SVGGraphicsElement.getBBox-04.html +testharness svg/types/scripted/SVGGraphicsElement.getScreenCTM.html testharness svg/types/scripted/SVGGraphicsElement.svg +testharness svg/types/scripted/SVGLength-cap.html +testharness svg/types/scripted/SVGLength-ch.html testharness svg/types/scripted/SVGLength-ic.html testharness svg/types/scripted/SVGLength-lh.html testharness svg/types/scripted/SVGLength-px-with-context.html testharness svg/types/scripted/SVGLength-px.html +testharness svg/types/scripted/SVGLength-rem.html +testharness svg/types/scripted/SVGLength-rlh.html +testharness svg/types/scripted/SVGLength-viewport.html +testharness svg/types/scripted/SVGLength-zoom.html testharness svg/types/scripted/SVGLength.html testharness svg/types/scripted/SVGLengthList-appendItem.html testharness svg/types/scripted/SVGLengthList-appendItemFromClearedList.html @@ -45697,10 +50644,13 @@ testharness svg/types/scripted/SVGPoint.html testharness svg/types/scripted/event-handler-all-document-element-events.svg testharness timing-entrytypes-registry/registry.any.js testharness timing-entrytypes-registry/registry.window.js -testharness top-level-storage-access-api/tentative/requestStorageAccessForOrigin.sub.window.js +testharness top-level-storage-access-api/requestStorageAccessFor-insecure.sub.window.js +testharness top-level-storage-access-api/requestStorageAccessFor.sub.https.window.js +testharness top-level-storage-access-api/top-level-storage-access-permission.sub.https.window.js testharness touch-events/expose-legacy-touch-event-apis.html testharness touch-events/historical.html testharness touch-events/idlharness.window.js +testharness touch-events/mouseevents-after-touchend.tentative.html testharness touch-events/multi-touch-interactions.html testharness touch-events/multi-touch-interfaces.html testharness touch-events/single-touch-vertical-rl.html @@ -45710,93 +50660,107 @@ testharness touch-events/touch-touchevent-constructor.html testharness trust-tokens/end-to-end/has-trust-token-with-no-top-frame.tentative.https.html testharness trust-tokens/trust-token-parameter-validation-xhr.tentative.https.html testharness trust-tokens/trust-token-parameter-validation.tentative.https.html -testharness trusted-types/DOMParser-parseFromString-regression.tentative.html -testharness trusted-types/DOMParser-parseFromString.tentative.html -testharness trusted-types/DOMWindowTimers-setTimeout-setInterval.tentative.html -testharness trusted-types/Document-execCommand.tentative.html -testharness trusted-types/Document-write.tentative.html -testharness trusted-types/Element-insertAdjacentHTML.tentative.html -testharness trusted-types/Element-insertAdjacentText.tentative.html -testharness trusted-types/Element-outerHTML.tentative.html -testharness trusted-types/Element-setAttribute.tentative.html -testharness trusted-types/Element-setAttributeNS.tentative.html -testharness trusted-types/GlobalEventHandlers-onclick.tentative.html -testharness trusted-types/HTMLElement-generic.tentative.html +testharness trusted-types/DOMParser-parseFromString-regression.html +testharness trusted-types/DOMParser-parseFromString.html +testharness trusted-types/DOMWindowTimers-setTimeout-setInterval.html +testharness trusted-types/Document-execCommand.html +testharness trusted-types/Document-write-exception-order.xhtml +testharness trusted-types/Document-write.html +testharness trusted-types/Element-insertAdjacentHTML.html +testharness trusted-types/Element-insertAdjacentText.html +testharness trusted-types/Element-outerHTML.html +testharness trusted-types/Element-setAttribute-respects-Elements-node-documents-globals-CSP.html +testharness trusted-types/Element-setAttribute.html +testharness trusted-types/Element-setAttributeNS.html +testharness trusted-types/Element-toggleAttribute.html +testharness trusted-types/GlobalEventHandlers-onclick.html +testharness trusted-types/HTMLElement-generic.html testharness trusted-types/HTMLScriptElement-in-xhtml-document.tentative.https.xhtml -testharness trusted-types/HTMLScriptElement-internal-slot.tentative.html -testharness trusted-types/Node-multiple-arguments.tentative.html -testharness trusted-types/Range-createContextualFragment.tentative.html -testharness trusted-types/TrustedType-AttributeNodes.tentative.html -testharness trusted-types/TrustedTypePolicy-CSP-no-name.tentative.html -testharness trusted-types/TrustedTypePolicy-CSP-wildcard.tentative.html -testharness trusted-types/TrustedTypePolicy-createXXX.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-blocking.html -testharness trusted-types/TrustedTypePolicyFactory-constants.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-createXYZTests.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-noNamesGiven.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none-skip.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-wildcard.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-nameTests.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-createPolicy-unenforced.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-getAttributeType-namespace.tentative.html +testharness trusted-types/HTMLScriptElement-internal-slot.html +testharness trusted-types/Node-multiple-arguments-tt-enforced.html +testharness trusted-types/Node-multiple-arguments.html +testharness trusted-types/Range-createContextualFragment.html +testharness trusted-types/SVGScriptElement-internal-slot.html +testharness trusted-types/TrustedType-AttributeNodes.html +testharness trusted-types/TrustedTypePolicy-CSP-no-name.html +testharness trusted-types/TrustedTypePolicy-CSP-wildcard.html +testharness trusted-types/TrustedTypePolicy-createXXX.html +testharness trusted-types/TrustedTypePolicyFactory-blocking.tentative.html +testharness trusted-types/TrustedTypePolicyFactory-constants.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-createXYZTests.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-noNamesGiven.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none-none-name.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none-none.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none-skip.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-wildcard.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-nameTests.html +testharness trusted-types/TrustedTypePolicyFactory-createPolicy-unenforced.html +testharness trusted-types/TrustedTypePolicyFactory-defaultPolicy.html +testharness trusted-types/TrustedTypePolicyFactory-getAttributeType-namespace.html +testharness trusted-types/TrustedTypePolicyFactory-getAttributeType-svg.html testharness trusted-types/TrustedTypePolicyFactory-getPropertyType.tentative.html -testharness trusted-types/TrustedTypePolicyFactory-isXXX.tentative.html +testharness trusted-types/TrustedTypePolicyFactory-isXXX.html testharness trusted-types/TrustedTypePolicyFactory-metadata.tentative.html -testharness trusted-types/Window-TrustedTypes.tentative.html +testharness trusted-types/Window-TrustedTypes.html testharness trusted-types/WorkerGlobalScope-eval.html testharness trusted-types/WorkerGlobalScope-importScripts.html -testharness trusted-types/block-Document-execCommand.tentative.html -testharness trusted-types/block-Node-multiple-arguments.tentative.html -testharness trusted-types/block-string-assignment-to-DOMParser-parseFromString.tentative.html -testharness trusted-types/block-string-assignment-to-DOMWindowTimers-setTimeout-setInterval.tentative.html -testharness trusted-types/block-string-assignment-to-Document-write.tentative.html -testharness trusted-types/block-string-assignment-to-Element-insertAdjacentHTML.tentative.html -testharness trusted-types/block-string-assignment-to-Element-outerHTML.tentative.html -testharness trusted-types/block-string-assignment-to-Element-setAttribute.tentative.html -testharness trusted-types/block-string-assignment-to-Element-setAttributeNS.tentative.html -testharness trusted-types/block-string-assignment-to-HTMLElement-generic.tentative.html -testharness trusted-types/block-string-assignment-to-Range-createContextualFragment.tentative.html -testharness trusted-types/block-string-assignment-to-attribute-via-attribute-node.tentative.html -testharness trusted-types/block-text-node-insertion-into-script-element.tentative.html -testharness trusted-types/csp-block-eval.tentative.html -testharness trusted-types/default-policy-callback-arguments.tentative.html -testharness trusted-types/default-policy-report-only.tentative.html -testharness trusted-types/default-policy.tentative.html -testharness trusted-types/empty-default-policy-report-only.tentative.html -testharness trusted-types/empty-default-policy.tentative.html -testharness trusted-types/eval-csp-no-tt.tentative.html -testharness trusted-types/eval-csp-tt-default-policy.tentative.html -testharness trusted-types/eval-csp-tt-no-default-policy.tentative.html -testharness trusted-types/eval-function-constructor.tentative.html -testharness trusted-types/eval-no-csp-no-tt-default-policy.tentative.html -testharness trusted-types/eval-no-csp-no-tt.tentative.html -testharness trusted-types/eval-with-permissive-csp.tentative.html -testharness trusted-types/idlharness.tentative.window.js -testharness trusted-types/no-require-trusted-types-for-report-only.tentative.html -testharness trusted-types/no-require-trusted-types-for.tentative.html -testharness trusted-types/require-trusted-types-for-report-only.tentative.html -testharness trusted-types/require-trusted-types-for.tentative.html -testharness trusted-types/trusted-types-createHTMLDocument.tentative.html -testharness trusted-types/trusted-types-duplicate-names-list-report-only.tentative.html -testharness trusted-types/trusted-types-duplicate-names-list.tentative.html -testharness trusted-types/trusted-types-duplicate-names-without-enforcement.tentative.html -testharness trusted-types/trusted-types-duplicate-names.tentative.html -testharness trusted-types/trusted-types-eval-reporting-no-unsafe-eval.tentative.html -testharness trusted-types/trusted-types-eval-reporting-report-only.tentative.html -testharness trusted-types/trusted-types-eval-reporting.tentative.html -testharness trusted-types/trusted-types-event-handlers.tentative.html +testharness trusted-types/block-Document-execCommand.html +testharness trusted-types/block-string-assignment-to-DOMParser-parseFromString.html +testharness trusted-types/block-string-assignment-to-DOMWindowTimers-setTimeout-setInterval.html +testharness trusted-types/block-string-assignment-to-Document-parseHTMLUnsafe.html +testharness trusted-types/block-string-assignment-to-Document-write.html +testharness trusted-types/block-string-assignment-to-Element-insertAdjacentHTML.html +testharness trusted-types/block-string-assignment-to-Element-outerHTML.html +testharness trusted-types/block-string-assignment-to-Element-setAttribute.html +testharness trusted-types/block-string-assignment-to-Element-setAttributeNS.html +testharness trusted-types/block-string-assignment-to-Element-setHTMLUnsafe.html +testharness trusted-types/block-string-assignment-to-HTMLElement-generic.html +testharness trusted-types/block-string-assignment-to-Range-createContextualFragment.html +testharness trusted-types/block-string-assignment-to-ShadowRoot-setHTMLUnsafe.html +testharness trusted-types/block-string-assignment-to-attribute-via-attribute-node.html +testharness trusted-types/block-text-node-insertion-into-script-element.html +testharness trusted-types/block-text-node-insertion-into-svg-script-element.html +testharness trusted-types/csp-block-eval.html +testharness trusted-types/default-policy-callback-arguments.html +testharness trusted-types/default-policy-report-only.html +testharness trusted-types/default-policy.html +testharness trusted-types/empty-default-policy-report-only.html +testharness trusted-types/empty-default-policy.html +testharness trusted-types/eval-csp-no-tt.html +testharness trusted-types/eval-csp-tt-default-policy-mutate.html +testharness trusted-types/eval-csp-tt-default-policy.html +testharness trusted-types/eval-csp-tt-no-default-policy.html +testharness trusted-types/eval-function-constructor.html +testharness trusted-types/eval-no-csp-no-tt-default-policy.html +testharness trusted-types/eval-no-csp-no-tt.html +testharness trusted-types/eval-with-permissive-csp.html +testharness trusted-types/idlharness.window.js +testharness trusted-types/modify-attributes-in-callback.html +testharness trusted-types/no-require-trusted-types-for-report-only.html +testharness trusted-types/no-require-trusted-types-for.html +testharness trusted-types/require-trusted-types-for-report-only.html +testharness trusted-types/require-trusted-types-for.html +testharness trusted-types/trusted-types-createHTMLDocument.html +testharness trusted-types/trusted-types-duplicate-names-list-report-only.html +testharness trusted-types/trusted-types-duplicate-names-list.html +testharness trusted-types/trusted-types-duplicate-names-without-enforcement.html +testharness trusted-types/trusted-types-duplicate-names.html +testharness trusted-types/trusted-types-eval-reporting-no-unsafe-eval.html +testharness trusted-types/trusted-types-eval-reporting-report-only.html +testharness trusted-types/trusted-types-eval-reporting.html +testharness trusted-types/trusted-types-event-handlers.html testharness trusted-types/trusted-types-from-literal.tentative.html -testharness trusted-types/trusted-types-navigation.tentative.html -testharness trusted-types/trusted-types-report-only.tentative.html +testharness trusted-types/trusted-types-navigation.html +testharness trusted-types/trusted-types-report-only.html testharness trusted-types/trusted-types-reporting-check-report.html -testharness trusted-types/trusted-types-reporting.tentative.html -testharness trusted-types/trusted-types-source-file-path.tentative.html -testharness trusted-types/trusted-types-svg-script.tentative.html -testharness trusted-types/trusted-types-tojson.tentative.html -testharness trusted-types/tt-block-eval.tentative.html +testharness trusted-types/trusted-types-reporting.html +testharness trusted-types/trusted-types-source-file-path.html +testharness trusted-types/trusted-types-svg-script-set-href.html +testharness trusted-types/trusted-types-svg-script.html +testharness trusted-types/trusted-types-tojson.html +testharness trusted-types/tt-block-eval.html testharness trusted-types/worker-constructor.https.html testharness ua-client-hints/idlharness.https.any.js testharness ua-client-hints/useragentdata.https.any.js @@ -45824,10 +50788,14 @@ testharness uievents/legacy/Event-subclasses-init.html testharness uievents/mouse/attributes.html testharness uievents/mouse/cancel-mousedown-in-subframe.html testharness uievents/mouse/layout_change_should_fire_mouseover.html +testharness uievents/mouse/mouse_boundary_events_after_reappending_last_over_target.tentative.html +testharness uievents/mouse/mouse_boundary_events_after_removing_last_over_element.html testharness uievents/mouse/mouse_buttons_back_forward.html testharness uievents/mouse/mouseenter-mouseleave-on-drag.html testharness uievents/mouse/mouseevent_move_button.html -testharness uievents/mouse/mousemove_prevent_default_action.tentative.html +testharness uievents/mouse/mousemove_prevent_default_action.html +testharness uievents/mouse/mouseover-at-removing-mousedown-target.html +testharness uievents/mouse/synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html testharness uievents/order-of-events/focus-events/focus-automated-blink-webkit.html testharness uievents/order-of-events/focus-events/focus-contained.html testharness uievents/order-of-events/focus-events/focus-management-expectations.html @@ -45843,6 +50811,13 @@ testharness uievents/order-of-events/mouse-events/mousemove-between.html testharness uievents/order-of-events/mouse-events/mouseover-out.html testharness uievents/order-of-events/mouse-events/wheel-basic.html testharness uievents/order-of-events/mouse-events/wheel-scrolling.html +testharness uievents/textInput/api.html +testharness uievents/textInput/backspace.html +testharness uievents/textInput/basic.html +testharness uievents/textInput/delete-selection.html +testharness uievents/textInput/delete.html +testharness uievents/textInput/enter-input.html +testharness uievents/textInput/enter-textarea-contenteditable.html testharness upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/fetch.https.html testharness upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/iframe-tag.https.html testharness upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/img-tag.https.html @@ -46050,6 +51025,7 @@ testharness url/failure.html testharness url/historical.any.js testharness url/idlharness-shadowrealm.window.js testharness url/idlharness.any.js +testharness url/javascript-urls.window.js testharness url/percent-encoding.window.js testharness url/toascii.window.js testharness url/url-constructor.any.js @@ -46058,6 +51034,8 @@ testharness url/url-searchparams.any.js testharness url/url-setters-a-area.window.js testharness url/url-setters-stripping.any.js testharness url/url-setters.any.js +testharness url/url-statics-canparse.any.js +testharness url/url-statics-parse.any.js testharness url/url-tojson.any.js testharness url/urlencoded-parser.any.js testharness url/urlsearchparams-append.any.js @@ -46068,10 +51046,12 @@ testharness url/urlsearchparams-get.any.js testharness url/urlsearchparams-getall.any.js testharness url/urlsearchparams-has.any.js testharness url/urlsearchparams-set.any.js +testharness url/urlsearchparams-size.any.js testharness url/urlsearchparams-sort.any.js testharness url/urlsearchparams-stringifier.any.js testharness urlpattern/urlpattern-compare.any.js testharness urlpattern/urlpattern-compare.https.any.js +testharness urlpattern/urlpattern-hasregexpgroups.any.js testharness urlpattern/urlpattern.any.js testharness urlpattern/urlpattern.https.any.js testharness user-timing/buffered-flag.any.js @@ -46125,6 +51105,7 @@ testharness video-rvfc/request-video-frame-callback-parallel.html testharness video-rvfc/request-video-frame-callback-repeating.html testharness video-rvfc/request-video-frame-callback-webrtc.https.html testharness video-rvfc/request-video-frame-callback.html +testharness viewport/viewport-segments.html testharness virtual-keyboard/idlharness.https.window.js testharness virtual-keyboard/virtual-keyboard-policy.html testharness virtual-keyboard/virtual-keyboard-type.https.html @@ -46137,8 +51118,8 @@ testharness visual-viewport/viewport-read-size-in-iframe-causes-layout.html testharness visual-viewport/viewport-resize-event-on-iframe-show.html testharness visual-viewport/viewport-resize-event-on-iframe-size-change.html testharness visual-viewport/viewport-resize-event-on-load-overflowing-page.html +testharness visual-viewport/viewport-scrollbars-cause-resize-in-iframe.html testharness visual-viewport/viewport-scrollbars-cause-resize.html -testharness visual-viewport/viewport-segments.tentative.html testharness visual-viewport/viewport-type.html testharness visual-viewport/viewport-unscaled-scale-iframe.html testharness visual-viewport/viewport-unscaled-scale.html @@ -46147,6 +51128,33 @@ testharness visual-viewport/viewport-unscaled-scroll.html testharness visual-viewport/viewport-unscaled-size-iframe.html testharness visual-viewport/viewport-unscaled-size.html testharness wai-aria/idlharness.window.js +testharness wai-aria/role/abstract-roles.html +testharness wai-aria/role/basic.html +testharness wai-aria/role/button-roles.html +testharness wai-aria/role/contextual-roles.html +testharness wai-aria/role/contextual-roles.tentative.html +testharness wai-aria/role/fallback-roles.html +testharness wai-aria/role/form-roles.html +testharness wai-aria/role/generic-roles.html +testharness wai-aria/role/grid-roles.html +testharness wai-aria/role/grid-roles.tentative.html +testharness wai-aria/role/invalid-roles.html +testharness wai-aria/role/list-roles.html +testharness wai-aria/role/list-roles.tentative.html +testharness wai-aria/role/listbox-roles.html +testharness wai-aria/role/listbox-roles.tentative.html +testharness wai-aria/role/menu-roles.html +testharness wai-aria/role/menu-roles.tentative.html +testharness wai-aria/role/region-roles.html +testharness wai-aria/role/role_none_conflict_resolution.html +testharness wai-aria/role/roles.html +testharness wai-aria/role/roles.tentative.html +testharness wai-aria/role/synonym-roles.html +testharness wai-aria/role/tab-roles.html +testharness wai-aria/role/tab-roles.tentative.html +testharness wai-aria/role/table-roles.html +testharness wai-aria/role/tree-roles.html +testharness wai-aria/role/tree-roles.tentative.html testharness wasm/create_multiple_memory.worker.js testharness wasm/jsapi/constructor/compile.any.js testharness wasm/jsapi/constructor/instantiate-bad-imports.any.js @@ -46157,6 +51165,7 @@ testharness wasm/jsapi/constructor/validate.any.js testharness wasm/jsapi/exception/basic.tentative.any.js testharness wasm/jsapi/exception/constructor.tentative.any.js testharness wasm/jsapi/exception/getArg.tentative.any.js +testharness wasm/jsapi/exception/identity.tentative.any.js testharness wasm/jsapi/exception/is.tentative.any.js testharness wasm/jsapi/exception/toString.tentative.any.js testharness wasm/jsapi/function/call.tentative.any.js @@ -46166,6 +51175,9 @@ testharness wasm/jsapi/function/type.tentative.any.js testharness wasm/jsapi/functions/entry-different-function-realm.html testharness wasm/jsapi/functions/entry.html testharness wasm/jsapi/functions/incumbent.html +testharness wasm/jsapi/gc/casts.tentative.any.js +testharness wasm/jsapi/gc/exported-object.tentative.any.js +testharness wasm/jsapi/gc/i31.tentative.any.js testharness wasm/jsapi/global/constructor.any.js testharness wasm/jsapi/global/toString.any.js testharness wasm/jsapi/global/type.tentative.any.js @@ -46178,6 +51190,9 @@ testharness wasm/jsapi/instance/constructor.any.js testharness wasm/jsapi/instance/exports.any.js testharness wasm/jsapi/instance/toString.any.js testharness wasm/jsapi/interface.any.js +testharness wasm/jsapi/js-string/basic.tentative.any.js +testharness wasm/jsapi/js-string/constants.tentative.any.js +testharness wasm/jsapi/js-string/imports.tentative.any.js testharness wasm/jsapi/memory/buffer.any.js testharness wasm/jsapi/memory/constructor-shared.tentative.any.js testharness wasm/jsapi/memory/constructor-types.tentative.any.js @@ -46189,6 +51204,7 @@ testharness wasm/jsapi/module/constructor.any.js testharness wasm/jsapi/module/customSections.any.js testharness wasm/jsapi/module/exports.any.js testharness wasm/jsapi/module/imports.any.js +testharness wasm/jsapi/module/moduleSource.tentative.any.js testharness wasm/jsapi/module/toString.any.js testharness wasm/jsapi/proto-from-ctor-realm.html testharness wasm/jsapi/prototypes.any.js @@ -46230,10 +51246,14 @@ testharness wasm/webapi/esm-integration/js-wasm-cycle-errors.tentative.html testharness wasm/webapi/esm-integration/js-wasm-cycle.tentative.html testharness wasm/webapi/esm-integration/module-parse-error.tentative.html testharness wasm/webapi/esm-integration/resolve-export.tentative.html +testharness wasm/webapi/esm-integration/script-src-allows-wasm.tentative.html +testharness wasm/webapi/esm-integration/script-src-blocks-wasm.tentative.sub.html +testharness wasm/webapi/esm-integration/source-phase.tentative.html testharness wasm/webapi/esm-integration/wasm-import-wasm-export.tentative.html testharness wasm/webapi/esm-integration/wasm-import.tentative.html testharness wasm/webapi/esm-integration/wasm-js-cycle.tentative.html testharness wasm/webapi/esm-integration/wasm-to-wasm-link-error.tentative.html +testharness wasm/webapi/esm-integration/worker-import-source-phase.tentative.html testharness wasm/webapi/esm-integration/worker-import.tentative.html testharness wasm/webapi/esm-integration/worker.tentative.html testharness wasm/webapi/historical.any.js @@ -46256,10 +51276,12 @@ testharness web-animations/animation-model/animation-types/discrete.html testharness web-animations/animation-model/animation-types/display.tentative.html testharness web-animations/animation-model/animation-types/interpolation-per-property-001.html testharness web-animations/animation-model/animation-types/interpolation-per-property-002.html +testharness web-animations/animation-model/animation-types/scrollbar-interpolation.html testharness web-animations/animation-model/animation-types/visibility.html testharness web-animations/animation-model/combining-effects/applying-interpolated-transform.html testharness web-animations/animation-model/combining-effects/applying-the-composited-result.html testharness web-animations/animation-model/combining-effects/effect-composition.html +testharness web-animations/animation-model/keyframe-effects/background-shorthand.html testharness web-animations/animation-model/keyframe-effects/computed-keyframes-shorthands.html testharness web-animations/animation-model/keyframe-effects/effect-value-context-filling.html testharness web-animations/animation-model/keyframe-effects/effect-value-context.html @@ -46268,6 +51290,7 @@ testharness web-animations/animation-model/keyframe-effects/effect-value-iterati testharness web-animations/animation-model/keyframe-effects/effect-value-overlapping-keyframes.html testharness web-animations/animation-model/keyframe-effects/effect-value-replaced-animations.html testharness web-animations/animation-model/keyframe-effects/effect-value-transformed-distance.html +testharness web-animations/animation-model/keyframe-effects/keyframe-exceptions.html testharness web-animations/idlharness.window.js testharness web-animations/interfaces/Animatable/animate-no-browsing-context.html testharness web-animations/interfaces/Animatable/animate.html @@ -46286,7 +51309,9 @@ testharness web-animations/interfaces/Animation/pause.html testharness web-animations/interfaces/Animation/pending.html testharness web-animations/interfaces/Animation/persist.html testharness web-animations/interfaces/Animation/play.html +testharness web-animations/interfaces/Animation/progress.tentative.html testharness web-animations/interfaces/Animation/ready.html +testharness web-animations/interfaces/Animation/scroll-timeline-progress.tentative.html testharness web-animations/interfaces/Animation/startTime.html testharness web-animations/interfaces/Animation/style-change-events.html testharness web-animations/interfaces/AnimationEffect/getComputedTiming.html @@ -46307,12 +51332,14 @@ testharness web-animations/interfaces/KeyframeEffect/setKeyframes.html testharness web-animations/interfaces/KeyframeEffect/style-change-events.html testharness web-animations/interfaces/KeyframeEffect/target.html testharness web-animations/responsive/assorted-lengths.html +testharness web-animations/responsive/background-position-responsive.html testharness web-animations/responsive/backgroundPosition.html testharness web-animations/responsive/backgroundSize.html testharness web-animations/responsive/baselineShift.html testharness web-animations/responsive/borderImageWidth.html testharness web-animations/responsive/borderRadius.html testharness web-animations/responsive/borderWidth.html +testharness web-animations/responsive/box-shadow-responsive.html testharness web-animations/responsive/boxShadow.html testharness web-animations/responsive/clip.html testharness web-animations/responsive/columnCount.html @@ -46341,6 +51368,7 @@ testharness web-animations/responsive/to-style-change.html testharness web-animations/responsive/transform.html testharness web-animations/responsive/translate.html testharness web-animations/responsive/verticalAlign.html +testharness web-animations/responsive/width.html testharness web-animations/timing-model/animation-effects/active-time.html testharness web-animations/timing-model/animation-effects/current-iteration.html testharness web-animations/timing-model/animation-effects/local-time.html @@ -46348,6 +51376,7 @@ testharness web-animations/timing-model/animation-effects/phases-and-states.html testharness web-animations/timing-model/animation-effects/simple-iteration-progress.html testharness web-animations/timing-model/animations/canceling-an-animation.html testharness web-animations/timing-model/animations/finishing-an-animation.html +testharness web-animations/timing-model/animations/invalidating-animation-before-start-time-synced.html testharness web-animations/timing-model/animations/pausing-an-animation.html testharness web-animations/timing-model/animations/play-states.html testharness web-animations/timing-model/animations/playing-an-animation.html @@ -46392,38 +51421,36 @@ testharness web-bundle/subresource-loading/reuse-web-bundle-resource.https.tenta testharness web-bundle/subresource-loading/service-worker-controlled.https.tentative.html testharness web-bundle/subresource-loading/static-element-with-base.https.tentative.sub.html testharness web-bundle/subresource-loading/static-element.https.tentative.sub.html -testharness web-bundle/subresource-loading/subframe-from-web-bundle.https.tentative.html testharness web-bundle/subresource-loading/subresource-load.https.tentative.sub.html testharness web-bundle/subresource-loading/supports-webbundle.https.tentative.html -testharness web-bundle/wbn-from-network/wbn-location.tentative.html -testharness web-locks/acquire.tentative.https.any.js +testharness web-locks/acquire.https.any.js testharness web-locks/bfcache/abort.tentative.https.html testharness web-locks/bfcache/held.tentative.https.html testharness web-locks/bfcache/release-across-thread.tentative.https.html testharness web-locks/bfcache/release.tentative.https.html testharness web-locks/bfcache/sharedworker-multiple.tentative.https.html -testharness web-locks/clientids.tentative.https.html -testharness web-locks/frames.tentative.https.html -testharness web-locks/held.tentative.https.any.js -testharness web-locks/idlharness.tentative.https.any.js -testharness web-locks/ifAvailable.tentative.https.any.js -testharness web-locks/lock-attributes.tentative.https.any.js -testharness web-locks/mode-exclusive.tentative.https.any.js -testharness web-locks/mode-mixed.tentative.https.any.js -testharness web-locks/mode-shared.tentative.https.any.js -testharness web-locks/non-fully-active.tentative.https.html -testharness web-locks/non-secure-context.tentative.any.js -testharness web-locks/opaque-origin.tentative.https.html +testharness web-locks/clientids.https.html +testharness web-locks/frames.https.html +testharness web-locks/held.https.any.js +testharness web-locks/idlharness.https.any.js +testharness web-locks/ifAvailable.https.any.js +testharness web-locks/lock-attributes.https.any.js +testharness web-locks/mode-exclusive.https.any.js +testharness web-locks/mode-mixed.https.any.js +testharness web-locks/mode-shared.https.any.js +testharness web-locks/non-fully-active.https.html +testharness web-locks/non-secure-context.any.js +testharness web-locks/opaque-origin.https.html testharness web-locks/partitioned-web-locks.tentative.https.html -testharness web-locks/query-empty.tentative.https.any.js -testharness web-locks/query-ordering.tentative.https.html -testharness web-locks/query.tentative.https.any.js -testharness web-locks/resource-names.tentative.https.any.js -testharness web-locks/secure-context.tentative.https.any.js -testharness web-locks/signal.tentative.https.any.js -testharness web-locks/steal.tentative.https.any.js +testharness web-locks/query-empty.https.any.js +testharness web-locks/query-ordering.https.html +testharness web-locks/query.https.any.js +testharness web-locks/resource-names.https.any.js +testharness web-locks/secure-context.https.any.js +testharness web-locks/signal.https.any.js +testharness web-locks/steal.https.any.js testharness web-locks/storage-buckets.tentative.https.any.js -testharness web-locks/workers.tentative.https.html +testharness web-locks/workers.https.html testharness web-nfc/NDEFMessage_constructor.https.window.js testharness web-nfc/NDEFMessage_recursion-limit.https.window.js testharness web-nfc/NDEFReader_make-read-only.https.window.js @@ -46441,7 +51468,7 @@ testharness web-share/canShare-insecure.http.html testharness web-share/canShare.https.html testharness web-share/disabled-by-permissions-policy-cross-origin.https.sub.html testharness web-share/disabled-by-permissions-policy.https.sub.html -testharness web-share/feature-policy-listed.html +testharness web-share/feature-policy-listed.tentative.html testharness web-share/idlharness.https.window.js testharness web-share/share-consume-activation.https.html testharness web-share/share-empty.https.html @@ -46497,6 +51524,7 @@ testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-not-f testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-sinkid-constructor.https.html testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-sinkid-setsinkid.https.html testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-sinkid-state-change.https.html +testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-state-change-after-close.http.window.js testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-suspend-resume-close.html testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontext-suspend-resume.html testharness webaudio/the-audio-api/the-audiocontext-interface/audiocontextoptions.html @@ -46519,6 +51547,7 @@ testharness webaudio/the-audio-api/the-audioparam-interface/adding-events.html testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-cancel-and-hold.html testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-close.html testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-connect-audioratesignal.html +testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-default-value.window.js testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-exceptional-values.html testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-exponentialRampToValueAtTime.html testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-large-endtime.html @@ -46533,6 +51562,7 @@ testharness webaudio/the-audio-api/the-audioparam-interface/audioparam-summingju testharness webaudio/the-audio-api/the-audioparam-interface/automation-rate.html testharness webaudio/the-audio-api/the-audioparam-interface/cancel-scheduled-values.html testharness webaudio/the-audio-api/the-audioparam-interface/event-insertion.html +testharness webaudio/the-audio-api/the-audioparam-interface/exponentialRamp-special-cases.html testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-audiobuffersource-connections.html testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-audioworklet-connections.https.html testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-audioworklet.https.html @@ -46549,6 +51579,7 @@ testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-oscillator.ht testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-panner-connections.html testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-panner.html testharness webaudio/the-audio-api/the-audioparam-interface/k-rate-stereo-panner.html +testharness webaudio/the-audio-api/the-audioparam-interface/moderate-exponentialRamp.html testharness webaudio/the-audio-api/the-audioparam-interface/nan-param.html testharness webaudio/the-audio-api/the-audioparam-interface/retrospective-exponentialRampToValueAtTime.html testharness webaudio/the-audio-api/the-audioparam-interface/retrospective-linearRampToValueAtTime.html @@ -46562,9 +51593,11 @@ testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-addmo testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-audioparam-iterable.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-audioparam-size.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-audioparam.https.html +testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-denormals.https.window.js testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-messageport.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-postmessage-sharedarraybuffer.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-registerprocessor-called-on-globalthis.https.html +testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-registerprocessor-constructor.https.window.js testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-registerprocessor-dynamic.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-suspend.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworklet-throw-onmessage.https.html @@ -46582,6 +51615,7 @@ testharness webaudio/the-audio-api/the-audioworklet-interface/audioworkletproces testharness webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-process-frozen-array.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-process-zero-outputs.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-promises.https.html +testharness webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-unconnected-outputs.https.window.js testharness webaudio/the-audio-api/the-audioworklet-interface/baseaudiocontext-audioworklet.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/extended-audioworkletnode-with-parameters.https.html testharness webaudio/the-audio-api/the-audioworklet-interface/process-getter.https.html @@ -46656,6 +51690,7 @@ testharness webaudio/the-audio-api/the-iirfilternode-interface/test-iirfilternod testharness webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/cors-check.https.html testharness webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html testharness webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/no-cors.https.html +testharness webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/setSinkId-with-MediaElementAudioSourceNode.https.html testharness webaudio/the-audio-api/the-mediastreamaudiodestinationnode-interface/ctor-mediastreamaudiodestination.html testharness webaudio/the-audio-api/the-mediastreamaudiosourcenode-interface/mediastreamaudiosourcenode-ctor.html testharness webaudio/the-audio-api/the-mediastreamaudiosourcenode-interface/mediastreamaudiosourcenode-routing.html @@ -46704,9 +51739,12 @@ testharness webauthn/createcredential-badargs-authnrselection.https.html testharness webauthn/createcredential-badargs-challenge.https.html testharness webauthn/createcredential-badargs-rp.https.html testharness webauthn/createcredential-badargs-user.https.html +testharness webauthn/createcredential-clientdata.https.html +testharness webauthn/createcredential-cross-origin-iframe.https.sub.html testharness webauthn/createcredential-excludecredentials.https.html testharness webauthn/createcredential-extensions.https.html testharness webauthn/createcredential-getpublickey.https.html +testharness webauthn/createcredential-hints.https.html testharness webauthn/createcredential-large-blob-not-supported.https.html testharness webauthn/createcredential-large-blob-supported.https.html testharness webauthn/createcredential-minpinlength.https.html @@ -46718,10 +51756,12 @@ testharness webauthn/createcredential-timeout.https.html testharness webauthn/credblob-not-supported.https.html testharness webauthn/credblob-supported.https.html testharness webauthn/getcredential-abort.https.html +testharness webauthn/getcredential-allowcredentials.https.html testharness webauthn/getcredential-attachment.https.html testharness webauthn/getcredential-badargs-rpid.https.html testharness webauthn/getcredential-badargs-userverification.https.html testharness webauthn/getcredential-extensions.https.html +testharness webauthn/getcredential-hints.https.html testharness webauthn/getcredential-large-blob-not-supported.https.html testharness webauthn/getcredential-large-blob-supported.https.html testharness webauthn/getcredential-passing.https.html @@ -46729,15 +51769,20 @@ testharness webauthn/getcredential-prf.https.html testharness webauthn/getcredential-rk-passing.https.html testharness webauthn/getcredential-timeout.https.html testharness webauthn/idlharness.https.window.js +testharness webauthn/public-key-credential-creation-options-from-json.https.window.js +testharness webauthn/public-key-credential-request-options-from-json.https.window.js +testharness webauthn/public-key-credential-to-json.https.window.js testharness webauthn/remote-desktop-client-override.tentative.https.html testharness webauthn/securecontext.http.html testharness webauthn/securecontext.https.html +testharness webauthn/storecredential.https.html testharness webauthn/webauthn-testdriver-basic.https.html testharness webcodecs/audio-data-serialization.any.js testharness webcodecs/audio-data.any.js testharness webcodecs/audio-data.crossOriginIsolated.https.any.js testharness webcodecs/audio-decoder.crossOriginIsolated.https.any.js testharness webcodecs/audio-decoder.https.any.js +testharness webcodecs/audio-encoder-codec-specific.https.any.js testharness webcodecs/audio-encoder-config.https.any.js testharness webcodecs/audio-encoder.https.any.js testharness webcodecs/audioDecoder-codec-specific.https.any.js @@ -46746,16 +51791,23 @@ testharness webcodecs/encoded-audio-chunk.any.js testharness webcodecs/encoded-audio-chunk.crossOriginIsolated.https.any.js testharness webcodecs/encoded-video-chunk.any.js testharness webcodecs/encoded-video-chunk.crossOriginIsolated.https.any.js +testharness webcodecs/encodedVideoChunk-serialization.crossAgentCluster.https.html testharness webcodecs/full-cycle-test.https.any.js testharness webcodecs/idlharness.https.any.js testharness webcodecs/image-decoder-image-orientation-none.https.html testharness webcodecs/image-decoder.crossOriginIsolated.https.any.js testharness webcodecs/image-decoder.https.any.js +testharness webcodecs/per-frame-qp-encoding.https.any.js testharness webcodecs/reconfiguring-encoder.https.any.js testharness webcodecs/temporal-svc-encoding.https.any.js +testharness webcodecs/transfering.https.any.js testharness webcodecs/video-decoder.crossOriginIsolated.https.any.js testharness webcodecs/video-decoder.https.any.js +testharness webcodecs/video-encoder-canvasImageSource.https.html testharness webcodecs/video-encoder-config.https.any.js +testharness webcodecs/video-encoder-content-hint.https.any.js +testharness webcodecs/video-encoder-flush.https.any.js +testharness webcodecs/video-encoder-h264.https.any.js testharness webcodecs/video-encoder.https.any.js testharness webcodecs/video-frame-serialization.any.js testharness webcodecs/videoColorSpace.any.js @@ -46766,14 +51818,18 @@ testharness webcodecs/videoFrame-construction.any.js testharness webcodecs/videoFrame-construction.crossOriginIsolated.https.any.js testharness webcodecs/videoFrame-construction.crossOriginSource.sub.html testharness webcodecs/videoFrame-construction.window.js +testharness webcodecs/videoFrame-copyTo-rgb.any.js testharness webcodecs/videoFrame-copyTo.any.js testharness webcodecs/videoFrame-copyTo.crossOriginIsolated.https.any.js testharness webcodecs/videoFrame-createImageBitmap.any.js testharness webcodecs/videoFrame-createImageBitmap.https.any.js +testharness webcodecs/videoFrame-drawImage-hbd.any.js testharness webcodecs/videoFrame-drawImage.any.js +testharness webcodecs/videoFrame-odd-size.any.js testharness webcodecs/videoFrame-serialization.crossAgentCluster.https.html +testharness webcodecs/videoFrame-serialization.https.html testharness webcodecs/videoFrame-texImage.any.js -testharness webdriver/tests/idlharness.window.js +testharness webdriver/tests/classic/idlharness.window.js testharness webgl/bufferSubData.html testharness webgl/compressedTexImage2D.html testharness webgl/compressedTexSubImage2D.html @@ -46799,6 +51855,7 @@ testharness webidl/ecmascript-binding/es-exceptions/DOMException-constructor-beh testharness webidl/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.js testharness webidl/ecmascript-binding/es-exceptions/exceptions.html testharness webidl/ecmascript-binding/global-immutable-prototype.any.js +testharness webidl/ecmascript-binding/global-mutable-prototype.any.js testharness webidl/ecmascript-binding/global-object-implicit-this-value-cross-realm.html testharness webidl/ecmascript-binding/global-object-implicit-this-value.any.js testharness webidl/ecmascript-binding/has-instance.html @@ -46811,6 +51868,7 @@ testharness webidl/ecmascript-binding/iterator-invalidation-foreach.html testharness webidl/ecmascript-binding/iterator-prototype-object.html testharness webidl/ecmascript-binding/legacy-callback-interface-object.html testharness webidl/ecmascript-binding/legacy-factor-function-subclass.window.js +testharness webidl/ecmascript-binding/legacy-factory-function-builtin-properties.window.js testharness webidl/ecmascript-binding/legacy-platform-object/DefineOwnProperty.html testharness webidl/ecmascript-binding/legacy-platform-object/GetOwnProperty.html testharness webidl/ecmascript-binding/legacy-platform-object/OwnPropertyKeys.html @@ -46819,6 +51877,7 @@ testharness webidl/ecmascript-binding/no-regexp-special-casing.any.js testharness webidl/ecmascript-binding/observable-array-no-leak-of-internals.window.js testharness webidl/ecmascript-binding/observable-array-ownkeys.window.js testharness webidl/ecmascript-binding/put-forwards.html +testharness webidl/ecmascript-binding/replaceable-setter-throws-if-defineownproperty-fails.html testharness webidl/ecmascript-binding/sequence-conversion.html testharness webidl/ecmascript-binding/window-named-properties-object.html testharness webidl/idlharness-shadowrealm.window.js @@ -46860,6 +51919,10 @@ testharness webmessaging/event.ports.sub.htm testharness webmessaging/event.source.htm testharness webmessaging/event.source.xorigin.sub.htm testharness webmessaging/message-channels/basics.any.js +testharness webmessaging/message-channels/close-event/document-destroyed.tentative.window.js +testharness webmessaging/message-channels/close-event/entangled-after-back-forward-cache-restore.https.tentative.window.js +testharness webmessaging/message-channels/close-event/explicitly-closed.tentative.window.js +testharness webmessaging/message-channels/close-event/garbage-collected.tentative.any.js testharness webmessaging/message-channels/close.any.js testharness webmessaging/message-channels/cross-document.html testharness webmessaging/message-channels/detached-iframe.window.js @@ -46884,6 +51947,7 @@ testharness webmessaging/postMessage_MessagePorts_xorigin.sub.htm testharness webmessaging/postMessage_MessagePorts_xsite.sub.window.js testharness webmessaging/postMessage_arrays.sub.htm testharness webmessaging/postMessage_asterisk_xorigin.sub.htm +testharness webmessaging/postMessage_cross_domain_image_transfer_2d.sub.htm testharness webmessaging/postMessage_crosssite.sub.htm testharness webmessaging/postMessage_dup_transfer_objects.htm testharness webmessaging/postMessage_invalid_targetOrigin.htm @@ -46954,54 +52018,174 @@ testharness webmessaging/without-ports/028.html testharness webmessaging/without-ports/029.html testharness webmessaging/worker_postMessage_user_activation.tentative.html testharness webmidi/idlharness.https.window.js -testharness webnn/batch_normalization.https.any.js -testharness webnn/clamp.https.any.js -testharness webnn/concat.https.any.js -testharness webnn/conv2d.https.any.js -testharness webnn/elementwise_binary.https.any.js -testharness webnn/elementwise_unary.https.any.js -testharness webnn/gemm.https.any.js +testharness webnn/conformance_tests/abs.https.any.js +testharness webnn/conformance_tests/add.https.any.js +testharness webnn/conformance_tests/arg_min_max.https.any.js +testharness webnn/conformance_tests/batch_normalization.https.any.js +testharness webnn/conformance_tests/buffer.https.any.js +testharness webnn/conformance_tests/byob_readbuffer.https.any.js +testharness webnn/conformance_tests/cast.https.any.js +testharness webnn/conformance_tests/ceil.https.any.js +testharness webnn/conformance_tests/clamp.https.any.js +testharness webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.js +testharness webnn/conformance_tests/concat.https.any.js +testharness webnn/conformance_tests/conv2d.https.any.js +testharness webnn/conformance_tests/conv_transpose2d.https.any.js +testharness webnn/conformance_tests/cos.https.any.js +testharness webnn/conformance_tests/div.https.any.js +testharness webnn/conformance_tests/elu.https.any.js +testharness webnn/conformance_tests/equal.https.any.js +testharness webnn/conformance_tests/erf.https.any.js +testharness webnn/conformance_tests/exp.https.any.js +testharness webnn/conformance_tests/expand.https.any.js +testharness webnn/conformance_tests/floor.https.any.js +testharness webnn/conformance_tests/gather.https.any.js +testharness webnn/conformance_tests/gelu.https.any.js +testharness webnn/conformance_tests/gemm.https.any.js +testharness webnn/conformance_tests/greater.https.any.js +testharness webnn/conformance_tests/greater_or_equal.https.any.js +testharness webnn/conformance_tests/gru.https.any.js +testharness webnn/conformance_tests/gru_cell.https.any.js +testharness webnn/conformance_tests/hard_sigmoid.https.any.js +testharness webnn/conformance_tests/hard_swish.https.any.js +testharness webnn/conformance_tests/identity.https.any.js +testharness webnn/conformance_tests/instance_normalization.https.any.js +testharness webnn/conformance_tests/layer_normalization.https.any.js +testharness webnn/conformance_tests/leaky_relu.https.any.js +testharness webnn/conformance_tests/lesser.https.any.js +testharness webnn/conformance_tests/lesser_or_equal.https.any.js +testharness webnn/conformance_tests/linear.https.any.js +testharness webnn/conformance_tests/log.https.any.js +testharness webnn/conformance_tests/logical_not.https.any.js +testharness webnn/conformance_tests/lstm.https.any.js +testharness webnn/conformance_tests/lstm_cell.https.any.js +testharness webnn/conformance_tests/matmul.https.any.js +testharness webnn/conformance_tests/max.https.any.js +testharness webnn/conformance_tests/min.https.any.js +testharness webnn/conformance_tests/mul.https.any.js +testharness webnn/conformance_tests/neg.https.any.js +testharness webnn/conformance_tests/pad.https.any.js +testharness webnn/conformance_tests/parallel-compute.https.any.js +testharness webnn/conformance_tests/parallel-dispatch.https.any.js +testharness webnn/conformance_tests/pooling.https.any.js +testharness webnn/conformance_tests/pow.https.any.js +testharness webnn/conformance_tests/prelu.https.any.js +testharness webnn/conformance_tests/reciprocal.https.any.js +testharness webnn/conformance_tests/reduce_l1.https.any.js +testharness webnn/conformance_tests/reduce_l2.https.any.js +testharness webnn/conformance_tests/reduce_log_sum.https.any.js +testharness webnn/conformance_tests/reduce_log_sum_exp.https.any.js +testharness webnn/conformance_tests/reduce_max.https.any.js +testharness webnn/conformance_tests/reduce_mean.https.any.js +testharness webnn/conformance_tests/reduce_min.https.any.js +testharness webnn/conformance_tests/reduce_product.https.any.js +testharness webnn/conformance_tests/reduce_sum.https.any.js +testharness webnn/conformance_tests/reduce_sum_square.https.any.js +testharness webnn/conformance_tests/relu.https.any.js +testharness webnn/conformance_tests/resample2d.https.any.js +testharness webnn/conformance_tests/reshape.https.any.js +testharness webnn/conformance_tests/sigmoid.https.any.js +testharness webnn/conformance_tests/sin.https.any.js +testharness webnn/conformance_tests/slice.https.any.js +testharness webnn/conformance_tests/softmax.https.any.js +testharness webnn/conformance_tests/softplus.https.any.js +testharness webnn/conformance_tests/softsign.https.any.js +testharness webnn/conformance_tests/split.https.any.js +testharness webnn/conformance_tests/sqrt.https.any.js +testharness webnn/conformance_tests/sub.https.any.js +testharness webnn/conformance_tests/tan.https.any.js +testharness webnn/conformance_tests/tanh.https.any.js +testharness webnn/conformance_tests/transpose.https.any.js +testharness webnn/conformance_tests/triangular.https.any.js +testharness webnn/conformance_tests/where.https.any.js testharness webnn/idlharness.https.any.js -testharness webnn/leaky_relu.https.any.js -testharness webnn/matmul.https.any.js -testharness webnn/pooling.https.any.js -testharness webnn/reduction.https.any.js -testharness webnn/relu.https.any.js -testharness webnn/reshape.https.any.js -testharness webnn/sigmoid.https.any.js -testharness webnn/slice.https.any.js -testharness webnn/softmax.https.any.js -testharness webnn/split.https.any.js -testharness webnn/squeeze.https.any.js -testharness webnn/tanh.https.any.js -testharness webnn/transpose.https.any.js -testharness webrtc-encoded-transform/RTCEncodedAudioFrame-serviceworker-failure.https.html -testharness webrtc-encoded-transform/RTCEncodedVideoFrame-clone.https.html -testharness webrtc-encoded-transform/RTCEncodedVideoFrame-serviceworker-failure.https.html -testharness webrtc-encoded-transform/RTCPeerConnection-insertable-streams-audio.https.html -testharness webrtc-encoded-transform/RTCPeerConnection-insertable-streams-errors.https.html -testharness webrtc-encoded-transform/RTCPeerConnection-insertable-streams-simulcast.https.html -testharness webrtc-encoded-transform/RTCPeerConnection-insertable-streams-video-frames.https.html -testharness webrtc-encoded-transform/RTCPeerConnection-insertable-streams-video.https.html -testharness webrtc-encoded-transform/RTCPeerConnection-insertable-streams-worker.https.html -testharness webrtc-encoded-transform/codec-specific-metadata.https.html +testharness webnn/validation_tests/argMinMax.https.any.js +testharness webnn/validation_tests/batchNormalization.https.any.js +testharness webnn/validation_tests/build-more-than-once.https.any.js +testharness webnn/validation_tests/cast.https.any.js +testharness webnn/validation_tests/clamp.https.any.js +testharness webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.js +testharness webnn/validation_tests/concat.https.any.js +testharness webnn/validation_tests/constant-changed-buffer.https.any.js +testharness webnn/validation_tests/constant.https.any.js +testharness webnn/validation_tests/conv2d.https.any.js +testharness webnn/validation_tests/convTranspose2d.https.any.js +testharness webnn/validation_tests/createContext.https.any.js +testharness webnn/validation_tests/destroyContext.https.any.js +testharness webnn/validation_tests/destroyGraph.https.any.js +testharness webnn/validation_tests/elementwise-binary.https.any.js +testharness webnn/validation_tests/elementwise-logical.https.any.js +testharness webnn/validation_tests/elementwise-unary.https.any.js +testharness webnn/validation_tests/elu.https.any.js +testharness webnn/validation_tests/expand.https.any.js +testharness webnn/validation_tests/gather.https.any.js +testharness webnn/validation_tests/gelu.https.any.js +testharness webnn/validation_tests/gemm.https.any.js +testharness webnn/validation_tests/gru.https.any.js +testharness webnn/validation_tests/gruCell.https.any.js +testharness webnn/validation_tests/hardSigmoid.https.any.js +testharness webnn/validation_tests/hardSwish.https.any.js +testharness webnn/validation_tests/input.https.any.js +testharness webnn/validation_tests/instanceNormalization.https.any.js +testharness webnn/validation_tests/invalid-rank.https.any.js +testharness webnn/validation_tests/layerNormalization.https.any.js +testharness webnn/validation_tests/leakyRelu.https.any.js +testharness webnn/validation_tests/linear.https.any.js +testharness webnn/validation_tests/lstm.https.any.js +testharness webnn/validation_tests/lstmCell.https.any.js +testharness webnn/validation_tests/matmul.https.any.js +testharness webnn/validation_tests/pad.https.any.js +testharness webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.js +testharness webnn/validation_tests/pooling.https.any.js +testharness webnn/validation_tests/prelu.https.any.js +testharness webnn/validation_tests/reduction.https.any.js +testharness webnn/validation_tests/relu.https.any.js +testharness webnn/validation_tests/resample2d.https.any.js +testharness webnn/validation_tests/reshape.https.any.js +testharness webnn/validation_tests/sigmoid.https.any.js +testharness webnn/validation_tests/slice.https.any.js +testharness webnn/validation_tests/softmax.https.any.js +testharness webnn/validation_tests/softplus.https.any.js +testharness webnn/validation_tests/softsign.https.any.js +testharness webnn/validation_tests/split.https.any.js +testharness webnn/validation_tests/tanh.https.any.js +testharness webnn/validation_tests/transpose.https.any.js +testharness webnn/validation_tests/triangular.https.any.js +testharness webnn/validation_tests/where.https.any.js +testharness webrtc-encoded-transform/RTCRtpScriptTransform-bad-chunk.https.html +testharness webrtc-encoded-transform/RTCRtpScriptTransform-encoded-transform.https.html +testharness webrtc-encoded-transform/RTCRtpScriptTransform-sender-worker-single-frame.https.html testharness webrtc-encoded-transform/idlharness.https.window.js testharness webrtc-encoded-transform/script-audio-transform.https.html testharness webrtc-encoded-transform/script-change-transform.https.html testharness webrtc-encoded-transform/script-late-transform.https.html testharness webrtc-encoded-transform/script-metadata-transform.https.html +testharness webrtc-encoded-transform/script-transform-generateKeyFrame-simulcast.https.html +testharness webrtc-encoded-transform/script-transform-generateKeyFrame.https.html +testharness webrtc-encoded-transform/script-transform-sendKeyFrameRequest.https.html testharness webrtc-encoded-transform/script-transform.https.html testharness webrtc-encoded-transform/script-write-twice-transform.https.html -testharness webrtc-encoded-transform/set-metadata.https.html testharness webrtc-encoded-transform/sframe-keys.https.html testharness webrtc-encoded-transform/sframe-transform-buffer-source.html testharness webrtc-encoded-transform/sframe-transform-in-worker.https.html testharness webrtc-encoded-transform/sframe-transform-readable.html testharness webrtc-encoded-transform/sframe-transform.html +testharness webrtc-encoded-transform/tentative/RTCEncodedAudioFrame-clone.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedAudioFrame-metadata.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedAudioFrame-receive-cloned.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedAudioFrame-send-incoming.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedAudioFrame-serviceworker-failure.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedVideoFrame-clone.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedVideoFrame-metadata.https.html +testharness webrtc-encoded-transform/tentative/RTCEncodedVideoFrame-serviceworker-failure.https.html +testharness webrtc-encoded-transform/tentative/RTCPeerConnection-insertable-streams-audio.https.html +testharness webrtc-encoded-transform/tentative/RTCPeerConnection-insertable-streams-errors.https.html +testharness webrtc-encoded-transform/tentative/RTCPeerConnection-insertable-streams-simulcast.https.html +testharness webrtc-encoded-transform/tentative/RTCPeerConnection-insertable-streams-video-frames.https.html +testharness webrtc-encoded-transform/tentative/RTCPeerConnection-insertable-streams-video.https.html +testharness webrtc-encoded-transform/tentative/RTCPeerConnection-insertable-streams-worker.https.html testharness webrtc-extensions/RTCOAuthCredential.html testharness webrtc-extensions/RTCRtpParameters-adaptivePtime.html -testharness webrtc-extensions/RTCRtpParameters-maxFramerate.html -testharness webrtc-extensions/RTCRtpReceiver-playoutDelayHint.html testharness webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html testharness webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html testharness webrtc-extensions/RTCRtpTransceiver-headerExtensionControl.html @@ -47032,15 +52216,18 @@ testharness webrtc/RTCConfiguration-iceCandidatePoolSize.html testharness webrtc/RTCConfiguration-iceServers.html testharness webrtc/RTCConfiguration-iceTransportPolicy.html testharness webrtc/RTCConfiguration-rtcpMuxPolicy.html +testharness webrtc/RTCConfiguration-validation.html testharness webrtc/RTCDTMFSender-insertDTMF.https.html testharness webrtc/RTCDTMFSender-ontonechange-long.https.html testharness webrtc/RTCDTMFSender-ontonechange.https.html +testharness webrtc/RTCDataChannel-GC.html testharness webrtc/RTCDataChannel-binaryType.window.js testharness webrtc/RTCDataChannel-bufferedAmount.html testharness webrtc/RTCDataChannel-close.html testharness webrtc/RTCDataChannel-iceRestart.html testharness webrtc/RTCDataChannel-id.html testharness webrtc/RTCDataChannel-send-blob-order.html +testharness webrtc/RTCDataChannel-send-close.html testharness webrtc/RTCDataChannel-send.html testharness webrtc/RTCDataChannelEvent-constructor.html testharness webrtc/RTCDtlsTransport-getRemoteCertificates.html @@ -47049,11 +52236,13 @@ testharness webrtc/RTCError.html testharness webrtc/RTCIceCandidate-constructor.html testharness webrtc/RTCIceConnectionState-candidate-pair.https.html testharness webrtc/RTCIceTransport.html +testharness webrtc/RTCPeerConnection-GC.https.html testharness webrtc/RTCPeerConnection-SLD-SRD-timing.https.html testharness webrtc/RTCPeerConnection-add-track-no-deadlock.https.html testharness webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html testharness webrtc/RTCPeerConnection-addIceCandidate-timing.https.html testharness webrtc/RTCPeerConnection-addIceCandidate.html +testharness webrtc/RTCPeerConnection-addTcpIceCandidate.html testharness webrtc/RTCPeerConnection-addTrack.https.html testharness webrtc/RTCPeerConnection-addTransceiver.https.html testharness webrtc/RTCPeerConnection-canTrickleIceCandidates.html @@ -47110,20 +52299,28 @@ testharness webrtc/RTCPeerConnection-transport-stats.https.html testharness webrtc/RTCPeerConnection-videoDetectorTest.html testharness webrtc/RTCPeerConnectionIceErrorEvent.html testharness webrtc/RTCPeerConnectionIceEvent-constructor.html +testharness webrtc/RTCRtpParameters-codec.html testharness webrtc/RTCRtpParameters-codecs.html testharness webrtc/RTCRtpParameters-encodings.html testharness webrtc/RTCRtpParameters-headerExtensions.html +testharness webrtc/RTCRtpParameters-maxFramerate.html testharness webrtc/RTCRtpParameters-rtcp.html testharness webrtc/RTCRtpParameters-transactionId.html +testharness webrtc/RTCRtpReceiver-audio-jitterBufferTarget-stats.https.html testharness webrtc/RTCRtpReceiver-getCapabilities.html testharness webrtc/RTCRtpReceiver-getContributingSources.https.html testharness webrtc/RTCRtpReceiver-getParameters.html testharness webrtc/RTCRtpReceiver-getStats.https.html testharness webrtc/RTCRtpReceiver-getSynchronizationSources.https.html +testharness webrtc/RTCRtpReceiver-jitterBufferTarget.html +testharness webrtc/RTCRtpReceiver-video-jitterBufferTarget-stats.html +testharness webrtc/RTCRtpReceiver.https.html testharness webrtc/RTCRtpSender-encode-same-track-twice.https.html testharness webrtc/RTCRtpSender-getCapabilities.html +testharness webrtc/RTCRtpSender-getParameters.html testharness webrtc/RTCRtpSender-getStats.https.html testharness webrtc/RTCRtpSender-replaceTrack.https.html +testharness webrtc/RTCRtpSender-setParameters-keyFrame.html testharness webrtc/RTCRtpSender-setParameters.html testharness webrtc/RTCRtpSender-setStreams.https.html testharness webrtc/RTCRtpSender-transport.https.html @@ -47140,18 +52337,28 @@ testharness webrtc/RTCSctpTransport-maxMessageSize.html testharness webrtc/RTCTrackEvent-constructor.html testharness webrtc/RTCTrackEvent-fire.html testharness webrtc/RollbackEvents.https.html +testharness webrtc/back-forward-cache-with-closed-webrtc-connection-ccns.https.tentative.window.js +testharness webrtc/back-forward-cache-with-closed-webrtc-connection.https.window.js +testharness webrtc/back-forward-cache-with-open-webrtc-connection-ccns.https.tentative.window.js +testharness webrtc/back-forward-cache-with-open-webrtc-connection.https.window.js testharness webrtc/getstats.html testharness webrtc/historical.html testharness webrtc/idlharness.https.window.js testharness webrtc/legacy/RTCPeerConnection-createOffer-offerToReceive.html testharness webrtc/legacy/RTCRtpTransceiver-with-OfferToReceive-options.https.html +testharness webrtc/legacy/munge-dont.html testharness webrtc/legacy/onaddstream.https.html +testharness webrtc/legacy/simplecall_callbacks.https.html testharness webrtc/no-media-call.html testharness webrtc/promises-call.html testharness webrtc/protocol/RTCPeerConnection-payloadTypes.html +testharness webrtc/protocol/additional-codecs.html testharness webrtc/protocol/bundle.https.html testharness webrtc/protocol/candidate-exchange.https.html +testharness webrtc/protocol/codecs-filtered-by-direction.https.html +testharness webrtc/protocol/codecs-subsequent-offer.https.html testharness webrtc/protocol/crypto-suite.https.html +testharness webrtc/protocol/dtls-certificates.html testharness webrtc/protocol/dtls-fingerprint-validation.html testharness webrtc/protocol/dtls-setup.https.html testharness webrtc/protocol/h264-profile-levels.https.html @@ -47163,9 +52370,11 @@ testharness webrtc/protocol/jsep-initial-offer.https.html testharness webrtc/protocol/missing-fields.html testharness webrtc/protocol/msid-generate.html testharness webrtc/protocol/msid-parse.html +testharness webrtc/protocol/pt-no-bundle.html testharness webrtc/protocol/rtp-clockrate.html testharness webrtc/protocol/rtp-demuxing.html testharness webrtc/protocol/rtp-extension-support.html +testharness webrtc/protocol/rtp-headerextensions.html testharness webrtc/protocol/rtp-payloadtypes.html testharness webrtc/protocol/rtx-codecs.https.html testharness webrtc/protocol/sctp-format.html @@ -47173,6 +52382,7 @@ testharness webrtc/protocol/sdes-dont-dont-dont.html testharness webrtc/protocol/simulcast-answer.html testharness webrtc/protocol/simulcast-offer.html testharness webrtc/protocol/split.https.html +testharness webrtc/protocol/transceiver-mline-recycling.html testharness webrtc/protocol/unknown-mediatypes.html testharness webrtc/protocol/video-codecs.https.html testharness webrtc/protocol/vp8-fmtp.html @@ -47187,7 +52397,10 @@ testharness webrtc/simulcast/negotiation-encodings.https.html testharness webrtc/simulcast/rid-manipulation.html testharness webrtc/simulcast/setParameters-active.https.html testharness webrtc/simulcast/setParameters-encodings.https.html +testharness webrtc/simulcast/setParameters-maxFramerate.https.html testharness webrtc/simulcast/vp8.https.html +testharness webrtc/simulcast/vp9-scalability-mode.https.html +testharness webrtc/simulcast/vp9.https.html testharness webrtc/toJSON.html testharness websockets/Close-1000-reason.any.js testharness websockets/Close-1000-verify-code.any.js @@ -47209,6 +52422,7 @@ testharness websockets/Close-undefined.any.js testharness websockets/Create-asciiSep-protocol-string.any.js testharness websockets/Create-blocked-port.any.js testharness websockets/Create-extensions-empty.any.js +testharness websockets/Create-http-urls.any.js testharness websockets/Create-invalid-urls.any.js testharness websockets/Create-non-absolute-url.any.js testharness websockets/Create-nonAscii-protocol-string.any.js @@ -47217,6 +52431,7 @@ testharness websockets/Create-protocol-with-space.any.js testharness websockets/Create-protocols-repeated-case-insensitive.any.js testharness websockets/Create-protocols-repeated.any.js testharness websockets/Create-url-with-space.any.js +testharness websockets/Create-url-with-windows-1252-encoding.html testharness websockets/Create-valid-url-array-protocols.any.js testharness websockets/Create-valid-url-binaryType-blob.any.js testharness websockets/Create-valid-url-protocol-empty.any.js @@ -47224,12 +52439,12 @@ testharness websockets/Create-valid-url-protocol-setCorrectly.any.js testharness websockets/Create-valid-url-protocol-string.any.js testharness websockets/Create-valid-url-protocol.any.js testharness websockets/Create-valid-url.any.js -testharness websockets/Create-wrong-scheme.any.js testharness websockets/Send-0byte-data.any.js testharness websockets/Send-65K-data.any.js testharness websockets/Send-before-open.any.js testharness websockets/Send-binary-65K-arraybuffer.any.js testharness websockets/Send-binary-arraybuffer.any.js +testharness websockets/Send-binary-arraybufferview-float16.any.js testharness websockets/Send-binary-arraybufferview-float32.any.js testharness websockets/Send-binary-arraybufferview-float64.any.js testharness websockets/Send-binary-arraybufferview-int16-offset.any.js @@ -47246,6 +52461,10 @@ testharness websockets/Send-null.any.js testharness websockets/Send-paired-surrogates.any.js testharness websockets/Send-unicode-data.any.js testharness websockets/Send-unpaired-surrogates.any.js +testharness websockets/back-forward-cache-with-closed-websocket-connection-ccns.tentative.window.js +testharness websockets/back-forward-cache-with-closed-websocket-connection.window.js +testharness websockets/back-forward-cache-with-open-websocket-connection-ccns.tentative.window.js +testharness websockets/back-forward-cache-with-open-websocket-connection.window.js testharness websockets/basic-auth.any.js testharness websockets/binary/001.html testharness websockets/binary/002.html @@ -47259,7 +52478,6 @@ testharness websockets/closing-handshake/003.html testharness websockets/closing-handshake/004.html testharness websockets/constructor.any.js testharness websockets/constructor/001.html -testharness websockets/constructor/002.html testharness websockets/constructor/004.html testharness websockets/constructor/005.html testharness websockets/constructor/006.html @@ -47303,6 +52521,7 @@ testharness websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large. testharness websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-readonly.html testharness websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html testharness websockets/interfaces/WebSocket/close/close-basic.html +testharness websockets/interfaces/WebSocket/close/close-connecting-async.any.js testharness websockets/interfaces/WebSocket/close/close-connecting.html testharness websockets/interfaces/WebSocket/close/close-multiple.html testharness websockets/interfaces/WebSocket/close/close-nested.html @@ -47363,21 +52582,27 @@ testharness websockets/interfaces/WebSocket/url/005.html testharness websockets/interfaces/WebSocket/url/006.html testharness websockets/interfaces/WebSocket/url/resolve.html testharness websockets/keeping-connection-open/001.html +testharness websockets/mixed-content.https.any.js testharness websockets/multi-globals/message-received.html +testharness websockets/multi-globals/url-parsing/url-parsing.html testharness websockets/opening-handshake/001.html testharness websockets/opening-handshake/002.html testharness websockets/opening-handshake/003-sets-origin.worker.js testharness websockets/opening-handshake/003.html testharness websockets/opening-handshake/005.html +testharness websockets/opening-handshake/006.html testharness websockets/referrer.any.js testharness websockets/remove-own-iframe-during-onerror.window.js testharness websockets/security/001.html testharness websockets/security/002.html +testharness websockets/send-many-64K-messages-with-backpressure.any.js testharness websockets/stream/tentative/abort.any.js testharness websockets/stream/tentative/backpressure-receive.any.js testharness websockets/stream/tentative/backpressure-send.any.js testharness websockets/stream/tentative/close.any.js testharness websockets/stream/tentative/constructor.any.js +testharness websockets/stream/tentative/remote-close.any.js +testharness websockets/stream/tentative/websocket-error.any.js testharness websockets/unload-a-document/001.html testharness websockets/unload-a-document/002.html testharness websockets/unload-a-document/003.html @@ -47404,11 +52629,11 @@ testharness webstorage/event_session_removeitem.html testharness webstorage/event_session_storagearea.html testharness webstorage/event_session_url.html testharness webstorage/event_setattribute.html -testharness webstorage/localstorage-about-blank-3P-iframe-opens-3P-window.partitioned.tentative.html -testharness webstorage/localstorage-basic-partitioned.tentative.sub.html -testharness webstorage/localstorage-cross-origin-iframe.tentative.https.window.js +testharness webstorage/localstorage-about-blank-3P-iframe-opens-3P-window.partitioned.html +testharness webstorage/localstorage-basic-partitioned.sub.html +testharness webstorage/localstorage-cross-origin-iframe.https.window.js testharness webstorage/missing_arguments.window.js -testharness webstorage/sessionStorage-basic-partitioned.tentative.sub.html +testharness webstorage/sessionStorage-basic-partitioned.sub.html testharness webstorage/set.window.js testharness webstorage/storage_builtins.window.js testharness webstorage/storage_clear.window.js @@ -47432,20 +52657,34 @@ testharness webstorage/storage_setitem.window.js testharness webstorage/storage_string_conversion.window.js testharness webstorage/storage_supported_property_names.window.js testharness webstorage/symbol-props.window.js +testharness webtransport/back-forward-cache-with-closed-webtransport-connection-ccns.https.tentative.window.js +testharness webtransport/back-forward-cache-with-closed-webtransport-connection.https.window.js +testharness webtransport/back-forward-cache-with-open-webtransport-connection-ccns.https.tentative.window.js +testharness webtransport/back-forward-cache-with-open-webtransport-connection.https.window.js testharness webtransport/close.https.any.js testharness webtransport/connect.https.any.js testharness webtransport/constructor.https.any.js testharness webtransport/csp-fail.https.window.js testharness webtransport/csp-pass.https.window.js +testharness webtransport/datagram-bad-chunk.https.any.js testharness webtransport/datagram-cancel-crash.https.window.js testharness webtransport/datagrams.https.any.js +testharness webtransport/echo-large-bidirectional-streams.https.any.js testharness webtransport/idlharness.https.any.js testharness webtransport/in-removed-iframe.https.html +testharness webtransport/sendorder.https.any.js +testharness webtransport/sendstream-bad-chunk.https.any.js +testharness webtransport/server-certificate-hashes.https.any.js +testharness webtransport/stats.https.any.js testharness webtransport/streams-close.https.any.js testharness webtransport/streams-echo.https.any.js +testharness webusb/getDevices/reject_opaque_origin.https.html +testharness webusb/getDevices/sandboxed_iframe.https.window.js testharness webusb/idlharness.https.any.js testharness webusb/insecure-context.any.js testharness webusb/protected-interface-classes.https.any.js +testharness webusb/requestDevice/reject_opaque_origin.https.html +testharness webusb/requestDevice/sandboxed_iframe.https.window.js testharness webusb/usb-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html testharness webusb/usb-allowed-by-permissions-policy-attribute.https.sub.html testharness webusb/usb-allowed-by-permissions-policy.https.sub.html @@ -47568,6 +52807,7 @@ testharness webxr/depth-sensing/cpu/depth_sensing_cpu_incorrectUsage.https.html testharness webxr/depth-sensing/cpu/depth_sensing_cpu_luminance_alpha_dataValid.https.html testharness webxr/depth-sensing/cpu/depth_sensing_cpu_staleView.https.html testharness webxr/depth-sensing/depth_sensing_notEnabled.https.html +testharness webxr/depth-sensing/depth_sensing_preferences.https.html testharness webxr/depth-sensing/gpu/depth_sensing_gpu_dataUnavailable.https.html testharness webxr/depth-sensing/gpu/depth_sensing_gpu_inactiveFrame.https.html testharness webxr/depth-sensing/gpu/depth_sensing_gpu_incorrectUsage.https.html @@ -47602,6 +52842,7 @@ testharness webxr/hit-test/idlharness.https.html testharness webxr/hit-test/xrRay_constructor.https.html testharness webxr/hit-test/xrRay_matrix.https.html testharness webxr/idlharness.https.window.js +testharness webxr/layers/xrSession_updateRenderState.https.html testharness webxr/layers/xrWebGLBinding_constructor.https.html testharness webxr/light-estimation/xrFrame_getLightEstimate_oldSession.https.html testharness webxr/light-estimation/xrFrame_getLightEstimate_staleFrame.https.html @@ -47617,9 +52858,8 @@ testharness webxr/render_state_vertical_fov_inline.https.html testharness webxr/webGLCanvasContext_create_xrcompatible.https.html testharness webxr/webGLCanvasContext_makecompatible_contextlost.https.html testharness webxr/webGLCanvasContext_makecompatible_reentrant.https.html -testharness webxr/webxr-supported-by-feature-policy.html testharness webxr/webxr_availability.http.sub.html -testharness webxr/webxr_feature_policy.https.html +testharness webxr/webxr_permissions_policy.https.html testharness webxr/xrBoundedReferenceSpace_updates.https.html testharness webxr/xrDevice_disconnect_ends.https.html testharness webxr/xrDevice_isSessionSupported_immersive.https.html @@ -47685,7 +52925,10 @@ testharness webxr/xrWebGLLayer_opaque_framebuffer.https.html testharness webxr/xrWebGLLayer_opaque_framebuffer_stencil.https.html testharness webxr/xrWebGLLayer_viewports.https.html testharness webxr/xr_viewport_scale.https.html -testharness window-placement/multi-screen-window-open.tentative.https.html +testharness window-management/multi-screen-fullscreen-companion.tentative.https.html +testharness window-management/multi-screen-fullscreen-enter.tentative.https.html +testharness window-management/multi-screen-fullscreen-move.tentative.https.html +testharness window-management/multi-screen-window-open.tentative.https.html testharness workers/SharedWorker-MessageEvent-source.any.js testharness workers/SharedWorker-constructor.html testharness workers/SharedWorker-detach-frame-in-error-event.html @@ -47700,12 +52943,14 @@ testharness workers/SharedWorker_dataUrl.html testharness workers/Worker-base64.any.js testharness workers/Worker-call.worker.js testharness workers/Worker-constructor-proto.any.js +testharness workers/Worker-creation-happens-in-parallel.https.html testharness workers/Worker-custom-event.any.js testharness workers/Worker-formdata.any.js testharness workers/Worker-location.sub.any.js testharness workers/Worker-messageport.html testharness workers/Worker-multi-port.html testharness workers/Worker-nested-importScripts-error.html +testharness workers/Worker-postMessage-happens-in-parallel.https.html testharness workers/Worker-replace-event-handler.any.js testharness workers/Worker-replace-global-constructor.any.js testharness workers/Worker-replace-self.any.js @@ -47725,7 +52970,7 @@ testharness workers/WorkerGlobalScope_ErrorEvent_message.htm testharness workers/WorkerGlobalScope_importScripts.htm testharness workers/WorkerGlobalScope_importScripts_NetworkErr.htm testharness workers/WorkerGlobalScope_importScripts_NosniffErr.htm -testharness workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker.js +testharness workers/WorkerGlobalScope_requestAnimationFrame.worker.js testharness workers/WorkerGlobalScope_setInterval.htm testharness workers/WorkerGlobalScope_setTimeout.htm testharness workers/WorkerLocation-origin.sub.window.js @@ -47818,6 +53063,7 @@ testharness workers/examples/general.any.js testharness workers/examples/general.worker.js testharness workers/examples/onconnect.any.js testharness workers/importscripts_mime.any.js +testharness workers/importscripts_mime_local.any.js testharness workers/interfaces/DedicatedWorkerGlobalScope/EventTarget.worker.js testharness workers/interfaces/DedicatedWorkerGlobalScope/onmessage.worker.js testharness workers/interfaces/DedicatedWorkerGlobalScope/postMessage/event-ports-dedicated.html @@ -47885,6 +53131,7 @@ testharness workers/interfaces/WorkerUtils/navigator/004.html testharness workers/interfaces/WorkerUtils/navigator/005.html testharness workers/interfaces/WorkerUtils/navigator/006.html testharness workers/interfaces/WorkerUtils/navigator/007.html +testharness workers/interfaces/WorkerUtils/navigator/008.worker.js testharness workers/interfaces/WorkerUtils/navigator/language.html testharness workers/modules/dedicated-worker-import-blob-url.any.js testharness workers/modules/dedicated-worker-import-csp.html @@ -47925,6 +53172,12 @@ testharness workers/postMessage_event_properties.htm testharness workers/postMessage_ports_readonly_array.htm testharness workers/postMessage_target_source.htm testharness workers/same-origin-check.sub.html +testharness workers/same-site-cookies/first-party.all.tentative.https.window.js +testharness workers/same-site-cookies/first-party.default.tentative.https.window.js +testharness workers/same-site-cookies/first-party.none.tentative.https.window.js +testharness workers/same-site-cookies/third-party.all.tentative.sub.https.window.js +testharness workers/same-site-cookies/third-party.default.tentative.sub.https.window.js +testharness workers/same-site-cookies/third-party.none.tentative.sub.https.window.js testharness workers/semantics/encodings/001.html testharness workers/semantics/encodings/002.html testharness workers/semantics/encodings/003.html @@ -47962,6 +53215,7 @@ testharness workers/shared-worker-in-data-url-context.window.js testharness workers/shared-worker-name-via-options.html testharness workers/shared-worker-options-mismatch.html testharness workers/shared-worker-parse-error-failure.html +testharness workers/shared-worker-partitioned-cookies.tentative.https.html testharness workers/shared-worker-partitioned.tentative.html testharness workers/worker-performance.worker.js testharness workers/worker-request-animation-frame.html @@ -48010,6 +53264,7 @@ testharness xhr/abort-event-loadend.any.js testharness xhr/abort-event-order.htm testharness xhr/abort-upload-event-abort.any.js testharness xhr/abort-upload-event-loadend.any.js +testharness xhr/abort-with-error.any.js testharness xhr/access-control-and-redirects-async-same-origin.any.js testharness xhr/access-control-and-redirects-async.any.js testharness xhr/access-control-and-redirects.any.js @@ -48062,6 +53317,7 @@ testharness xhr/access-control-sandboxed-iframe-denied-without-wildcard.htm testharness xhr/access-control-sandboxed-iframe-denied.htm testharness xhr/allow-lists-starting-with-comma.htm testharness xhr/anonymous-mode-unsupported.htm +testharness xhr/blob-range.any.js testharness xhr/close-worker-with-xhr-in-progress.html testharness xhr/content-type-unmodified.any.js testharness xhr/cookies.http.html @@ -48088,6 +53344,7 @@ testharness xhr/formdata.html testharness xhr/formdata/append-formelement.html testharness xhr/formdata/append.any.js testharness xhr/formdata/constructor-formelement.html +testharness xhr/formdata/constructor-submitter-coordinate.html testharness xhr/formdata/constructor-submitter.html testharness xhr/formdata/constructor.any.js testharness xhr/formdata/delete-formelement.html @@ -48190,6 +53447,7 @@ testharness xhr/responseurl.html testharness xhr/responsexml-basic.htm testharness xhr/responsexml-document-properties.htm testharness xhr/responsexml-get-twice.htm +testharness xhr/responsexml-invalid-type.html testharness xhr/responsexml-media-type.htm testharness xhr/responsexml-non-document-types.htm testharness xhr/responsexml-non-well-formed.htm @@ -48484,7 +53742,6 @@ visual css/CSS2/borders/border-left-style-applies-to-014.xht visual css/CSS2/borders/border-left-style-applies-to-015.xht visual css/CSS2/borders/border-left-width-036.xht visual css/CSS2/borders/border-left-width-047.xht -visual css/CSS2/borders/border-left-width-078.xht visual css/CSS2/borders/border-left-width-092.xht visual css/CSS2/borders/border-left-width-093.xht visual css/CSS2/borders/border-left-width-094.xht @@ -48637,7 +53894,6 @@ visual css/CSS2/box-display/display-applies-to-001.xht visual css/CSS2/box-display/display-applies-to-002.xht visual css/CSS2/box-display/display-initial-001.xht visual css/CSS2/box-display/viewport-004.xht -visual css/CSS2/cascade-import/cascade-import-001.xht visual css/CSS2/cascade-import/cascade-import-002.xht visual css/CSS2/cascade-import/cascade-import-003.xht visual css/CSS2/cascade-import/cascade-import-004.xht @@ -48914,7 +54170,6 @@ visual css/CSS2/fonts/font-size-115.xht visual css/CSS2/fonts/font-size-116.xht visual css/CSS2/fonts/font-size-117.xht visual css/CSS2/fonts/font-size-118.xht -visual css/CSS2/fonts/font-size-119.xht visual css/CSS2/fonts/font-size-applies-to-001.xht visual css/CSS2/fonts/font-size-applies-to-002.xht visual css/CSS2/fonts/font-size-applies-to-003.xht @@ -49170,9 +54425,7 @@ visual css/CSS2/linebox/vertical-align-120.xht visual css/CSS2/linebox/vertical-align-applies-to-010.xht visual css/CSS2/linebox/vertical-align-baseline-004.xht visual css/CSS2/linebox/vertical-align-baseline-005.xht -visual css/CSS2/linebox/vertical-align-baseline-006.xht visual css/CSS2/linebox/vertical-align-baseline-006a.xht -visual css/CSS2/linebox/vertical-align-baseline-010.xht visual css/CSS2/linebox/vertical-align-boxes-001.xht visual css/CSS2/lists/counter-increment-003.xht visual css/CSS2/lists/counter-increment-004.xht @@ -49203,13 +54456,10 @@ visual css/CSS2/lists/counter-increment-051.xht visual css/CSS2/lists/counter-increment-052.xht visual css/CSS2/lists/counter-increment-056.xht visual css/CSS2/lists/counter-increment-applies-to-010.xht -visual css/CSS2/lists/counter-increment-auto-reset-001.xht -visual css/CSS2/lists/counter-increment-display-001.xht visual css/CSS2/lists/counter-increment-display-002.xht visual css/CSS2/lists/counter-increment-display-003.xht visual css/CSS2/lists/counter-increment-display-004.xht visual css/CSS2/lists/counter-increment-multiple-001.xht -visual css/CSS2/lists/counter-increment-not-generated-001.xht visual css/CSS2/lists/counter-increment-visibility-002.xht visual css/CSS2/lists/counter-increment-visibility-003.xht visual css/CSS2/lists/counter-increment-visibility-004.xht @@ -49244,10 +54494,8 @@ visual css/CSS2/lists/counter-reset-053.xht visual css/CSS2/lists/counter-reset-054.xht visual css/CSS2/lists/counter-reset-056.xht visual css/CSS2/lists/counter-reset-applies-to-010.xht -visual css/CSS2/lists/counter-reset-display-001.xht visual css/CSS2/lists/counter-reset-increment-001.xht visual css/CSS2/lists/counter-reset-multiple-001.xht -visual css/CSS2/lists/counter-reset-not-generated-001.xht visual css/CSS2/lists/counter-reset-sibling-001.xht visual css/CSS2/lists/list-alignment-001.xht visual css/CSS2/lists/list-bidi-000.xht @@ -49343,7 +54591,6 @@ visual css/CSS2/margin-padding-clear/margin-backgrounds-001.xht visual css/CSS2/margin-padding-clear/margin-bottom-applies-to-010.xht visual css/CSS2/margin-padding-clear/margin-collapse-010.xht visual css/CSS2/margin-padding-clear/margin-collapse-011.xht -visual css/CSS2/margin-padding-clear/margin-collapse-012.xht visual css/CSS2/margin-padding-clear/margin-collapse-029.xht visual css/CSS2/margin-padding-clear/margin-collapse-030.xht visual css/CSS2/margin-padding-clear/margin-collapse-032.xht @@ -49373,12 +54620,9 @@ visual css/CSS2/margin-padding-clear/margin-collapse-154.xht visual css/CSS2/margin-padding-clear/margin-collapse-162.xht visual css/CSS2/margin-padding-clear/margin-collapse-163.xht visual css/CSS2/margin-padding-clear/margin-collapse-clear-000.xht -visual css/CSS2/margin-padding-clear/margin-collapse-clear-001.xht visual css/CSS2/margin-padding-clear/margin-collapse-clear-004.xht visual css/CSS2/margin-padding-clear/margin-collapse-clear-006.xht -visual css/CSS2/margin-padding-clear/margin-collapse-clear-007.xht visual css/CSS2/margin-padding-clear/margin-collapse-clear-010.xht -visual css/CSS2/margin-padding-clear/margin-left-applies-to-008.xht visual css/CSS2/margin-padding-clear/margin-left-applies-to-010.xht visual css/CSS2/margin-padding-clear/margin-percentage-undefined-001.xht visual css/CSS2/margin-padding-clear/margin-right-applies-to-008.xht @@ -49386,8 +54630,6 @@ visual css/CSS2/margin-padding-clear/margin-right-applies-to-010.xht visual css/CSS2/margin-padding-clear/margin-top-applies-to-010.xht visual css/CSS2/margin-padding-clear/padding-applies-to-008.xht visual css/CSS2/margin-padding-clear/padding-applies-to-010.xht -visual css/CSS2/margin-padding-clear/padding-applies-to-016.xht -visual css/CSS2/margin-padding-clear/padding-applies-to-017.xht visual css/CSS2/margin-padding-clear/padding-bottom-036.xht visual css/CSS2/margin-padding-clear/padding-bottom-047.xht visual css/CSS2/margin-padding-clear/padding-bottom-applies-to-008.xht @@ -49416,7 +54658,6 @@ visual css/CSS2/normal-flow/block-non-replaced-height-012.xht visual css/CSS2/normal-flow/block-non-replaced-height-014.xht visual css/CSS2/normal-flow/block-non-replaced-height-015.xht visual css/CSS2/normal-flow/block-non-replaced-height-016.xht -visual css/CSS2/normal-flow/block-non-replaced-width-002.xht visual css/CSS2/normal-flow/block-non-replaced-width-008.xht visual css/CSS2/normal-flow/block-replaced-height-003.xht visual css/CSS2/normal-flow/block-replaced-width-001.xht @@ -49456,7 +54697,6 @@ visual css/CSS2/normal-flow/max-height-applies-to-004.xht visual css/CSS2/normal-flow/max-height-applies-to-007.xht visual css/CSS2/normal-flow/max-height-applies-to-010.xht visual css/CSS2/normal-flow/max-height-max-width-001.xht -visual css/CSS2/normal-flow/max-width-014.xht visual css/CSS2/normal-flow/max-width-108.xht visual css/CSS2/normal-flow/max-width-applies-to-010.xht visual css/CSS2/normal-flow/max-width-percentage-003.xht @@ -49468,13 +54708,11 @@ visual css/CSS2/normal-flow/min-height-applies-to-003.xht visual css/CSS2/normal-flow/min-height-applies-to-004.xht visual css/CSS2/normal-flow/min-height-applies-to-007.xht visual css/CSS2/normal-flow/min-height-applies-to-010.xht -visual css/CSS2/normal-flow/min-width-014.xht visual css/CSS2/normal-flow/min-width-applies-to-010.xht visual css/CSS2/normal-flow/min-width-percentage-003.xht visual css/CSS2/normal-flow/replaced-elements-001.xht visual css/CSS2/normal-flow/replaced-intrinsic-ratio-001.xht visual css/CSS2/normal-flow/replaced-min-max-001.xht -visual css/CSS2/normal-flow/width-014.xht visual css/CSS2/normal-flow/width-applies-to-010.xht visual css/CSS2/normal-flow/width-replaced-element-001.xht visual css/CSS2/normal-flow/width-undefined-001.xht @@ -49552,15 +54790,12 @@ visual css/CSS2/selectors/first-line-pseudo-001.xht visual css/CSS2/selectors/first-line-pseudo-002.xht visual css/CSS2/selectors/first-line-pseudo-004.xht visual css/CSS2/selectors/first-line-pseudo-005.xht -visual css/CSS2/selectors/first-line-pseudo-007.xht -visual css/CSS2/selectors/first-line-pseudo-008.xht visual css/CSS2/selectors/first-line-pseudo-010.xht visual css/CSS2/selectors/first-line-pseudo-011.xht visual css/CSS2/selectors/first-line-pseudo-017.xht visual css/CSS2/selectors/first-line-selector-001.xht visual css/CSS2/selectors/first-line-selector-002.xht visual css/CSS2/selectors/first-line-selector-003.xht -visual css/CSS2/selectors/first-line-selector-004.xht visual css/CSS2/selectors/first-line-selector-006.xht visual css/CSS2/selectors/first-line-selector-007.xht visual css/CSS2/selectors/first-line-selector-008.xht @@ -49571,13 +54806,6 @@ visual css/CSS2/selectors/first-line-selector-014.xht visual css/CSS2/selectors/first-line-selector-015.xht visual css/CSS2/selectors/first-line-selector-016.xht visual css/CSS2/syntax/case-sensitive-008.xht -visual css/CSS2/syntax/character-encoding-031.xht -visual css/CSS2/syntax/character-encoding-032.xht -visual css/CSS2/syntax/character-encoding-033.xht -visual css/CSS2/syntax/character-encoding-034.xht -visual css/CSS2/syntax/character-encoding-035.xht -visual css/CSS2/syntax/character-encoding-036.xht -visual css/CSS2/syntax/character-encoding-037.xht visual css/CSS2/syntax/character-encoding-038.xht visual css/CSS2/syntax/character-representation-001.xht visual css/CSS2/tables/background-table-001.xht @@ -50485,94 +55713,7 @@ visual css/CSS2/ui/outline-applies-to-012.xht visual css/CSS2/ui/outline-applies-to-013.xht visual css/CSS2/ui/outline-applies-to-014.xht visual css/CSS2/ui/outline-applies-to-015.xht -visual css/CSS2/ui/outline-color-003.xht -visual css/CSS2/ui/outline-color-004.xht -visual css/CSS2/ui/outline-color-005.xht -visual css/CSS2/ui/outline-color-006.xht -visual css/CSS2/ui/outline-color-009.xht -visual css/CSS2/ui/outline-color-010.xht -visual css/CSS2/ui/outline-color-011.xht -visual css/CSS2/ui/outline-color-012.xht -visual css/CSS2/ui/outline-color-014.xht -visual css/CSS2/ui/outline-color-015.xht -visual css/CSS2/ui/outline-color-016.xht -visual css/CSS2/ui/outline-color-017.xht -visual css/CSS2/ui/outline-color-019.xht -visual css/CSS2/ui/outline-color-020.xht -visual css/CSS2/ui/outline-color-021.xht -visual css/CSS2/ui/outline-color-022.xht -visual css/CSS2/ui/outline-color-026.xht -visual css/CSS2/ui/outline-color-027.xht -visual css/CSS2/ui/outline-color-028.xht -visual css/CSS2/ui/outline-color-029.xht -visual css/CSS2/ui/outline-color-032.xht -visual css/CSS2/ui/outline-color-033.xht -visual css/CSS2/ui/outline-color-034.xht -visual css/CSS2/ui/outline-color-035.xht -visual css/CSS2/ui/outline-color-037.xht -visual css/CSS2/ui/outline-color-038.xht -visual css/CSS2/ui/outline-color-039.xht -visual css/CSS2/ui/outline-color-040.xht -visual css/CSS2/ui/outline-color-042.xht -visual css/CSS2/ui/outline-color-043.xht -visual css/CSS2/ui/outline-color-044.xht -visual css/CSS2/ui/outline-color-045.xht -visual css/CSS2/ui/outline-color-055.xht -visual css/CSS2/ui/outline-color-056.xht -visual css/CSS2/ui/outline-color-057.xht -visual css/CSS2/ui/outline-color-060.xht -visual css/CSS2/ui/outline-color-063.xht -visual css/CSS2/ui/outline-color-064.xht -visual css/CSS2/ui/outline-color-065.xht -visual css/CSS2/ui/outline-color-066.xht -visual css/CSS2/ui/outline-color-067.xht -visual css/CSS2/ui/outline-color-068.xht -visual css/CSS2/ui/outline-color-076.xht -visual css/CSS2/ui/outline-color-077.xht -visual css/CSS2/ui/outline-color-078.xht -visual css/CSS2/ui/outline-color-080.xht -visual css/CSS2/ui/outline-color-083.xht -visual css/CSS2/ui/outline-color-084.xht -visual css/CSS2/ui/outline-color-085.xht -visual css/CSS2/ui/outline-color-086.xht -visual css/CSS2/ui/outline-color-087.xht -visual css/CSS2/ui/outline-color-088.xht -visual css/CSS2/ui/outline-color-096.xht -visual css/CSS2/ui/outline-color-097.xht -visual css/CSS2/ui/outline-color-098.xht -visual css/CSS2/ui/outline-color-100.xht -visual css/CSS2/ui/outline-color-103.xht -visual css/CSS2/ui/outline-color-104.xht -visual css/CSS2/ui/outline-color-105.xht -visual css/CSS2/ui/outline-color-106.xht -visual css/CSS2/ui/outline-color-107.xht -visual css/CSS2/ui/outline-color-108.xht -visual css/CSS2/ui/outline-color-116.xht -visual css/CSS2/ui/outline-color-117.xht -visual css/CSS2/ui/outline-color-118.xht -visual css/CSS2/ui/outline-color-120.xht -visual css/CSS2/ui/outline-color-123.xht -visual css/CSS2/ui/outline-color-124.xht -visual css/CSS2/ui/outline-color-125.xht -visual css/CSS2/ui/outline-color-126.xht -visual css/CSS2/ui/outline-color-127.xht -visual css/CSS2/ui/outline-color-128.xht visual css/CSS2/ui/outline-color-129.xht -visual css/CSS2/ui/outline-color-131.xht -visual css/CSS2/ui/outline-color-132.xht -visual css/CSS2/ui/outline-color-133.xht -visual css/CSS2/ui/outline-color-134.xht -visual css/CSS2/ui/outline-color-135.xht -visual css/CSS2/ui/outline-color-136.xht -visual css/CSS2/ui/outline-color-137.xht -visual css/CSS2/ui/outline-color-138.xht -visual css/CSS2/ui/outline-color-139.xht -visual css/CSS2/ui/outline-color-140.xht -visual css/CSS2/ui/outline-color-141.xht -visual css/CSS2/ui/outline-color-142.xht -visual css/CSS2/ui/outline-color-143.xht -visual css/CSS2/ui/outline-color-144.xht -visual css/CSS2/ui/outline-color-145.xht visual css/CSS2/ui/outline-color-174.xht visual css/CSS2/ui/outline-color-175.xht visual css/CSS2/ui/outline-color-176.xht @@ -50781,7 +55922,6 @@ visual css/compositing/text-with-svg-background.html visual css/css-align/ttwf-reftest-alignContent.html visual css/css-backgrounds/background-attachment-local-scrolling.htm visual css/css-backgrounds/background-clip-content-box.html -visual css/css-backgrounds/background-clip-padding-box-with-border-radius.html visual css/css-backgrounds/background-clip-root.html visual css/css-backgrounds/background-clip/clip-border-box.html visual css/css-backgrounds/background-clip/clip-border-box_with_position.html @@ -50797,18 +55937,6 @@ visual css/css-backgrounds/background-clip/clip-padding-box_with_radius.html visual css/css-backgrounds/background-clip/clip-padding-box_with_size.html visual css/css-backgrounds/background-color-applied-to-rounded-inline-element.htm visual css/css-backgrounds/background-color-border-box.htm -visual css/css-backgrounds/background-origin/origin-border-box.html -visual css/css-backgrounds/background-origin/origin-border-box_with_position.html -visual css/css-backgrounds/background-origin/origin-border-box_with_radius.html -visual css/css-backgrounds/background-origin/origin-border-box_with_size.html -visual css/css-backgrounds/background-origin/origin-content-box.html -visual css/css-backgrounds/background-origin/origin-content-box_with_position.html -visual css/css-backgrounds/background-origin/origin-content-box_with_radius.html -visual css/css-backgrounds/background-origin/origin-content-box_with_size.html -visual css/css-backgrounds/background-origin/origin-padding-box.html -visual css/css-backgrounds/background-origin/origin-padding-box_with_position.html -visual css/css-backgrounds/background-origin/origin-padding-box_with_radius.html -visual css/css-backgrounds/background-origin/origin-padding-box_with_size.html visual css/css-backgrounds/background-repeat-round-001.html visual css/css-backgrounds/background-repeat-round-002.html visual css/css-backgrounds/background-repeat-space-padding-box.htm @@ -50831,34 +55959,8 @@ visual css/css-backgrounds/border-bottom-right-radius-002.xht visual css/css-backgrounds/border-bottom-right-radius-012.xht visual css/css-backgrounds/border-bottom-right-radius-013.xht visual css/css-backgrounds/border-color_transparent.html -visual css/css-backgrounds/border-image-1.html -visual css/css-backgrounds/border-image-10.html -visual css/css-backgrounds/border-image-11.html -visual css/css-backgrounds/border-image-12.html -visual css/css-backgrounds/border-image-13.html -visual css/css-backgrounds/border-image-14.html -visual css/css-backgrounds/border-image-15.html -visual css/css-backgrounds/border-image-16.html -visual css/css-backgrounds/border-image-2.html -visual css/css-backgrounds/border-image-3.html -visual css/css-backgrounds/border-image-4.html -visual css/css-backgrounds/border-image-7.html -visual css/css-backgrounds/border-image-8.html -visual css/css-backgrounds/border-image-9.html -visual css/css-backgrounds/border-image-image-type-001.htm -visual css/css-backgrounds/border-image-image-type-002.htm visual css/css-backgrounds/border-image-outset-001.htm visual css/css-backgrounds/border-image-outset-002.htm -visual css/css-backgrounds/border-image-repeat-001.htm -visual css/css-backgrounds/border-image-repeat-002.htm -visual css/css-backgrounds/border-image-repeat-003.htm -visual css/css-backgrounds/border-image-repeat-004.htm -visual css/css-backgrounds/border-image-slice-004.htm -visual css/css-backgrounds/border-image-slice-006.htm -visual css/css-backgrounds/border-image-width-001.htm -visual css/css-backgrounds/border-image-width-002.htm -visual css/css-backgrounds/border-image-width-003.htm -visual css/css-backgrounds/border-image-width-004.htm visual css/css-backgrounds/border-images.html visual css/css-backgrounds/border-radius-applies-to-001.htm visual css/css-backgrounds/border-radius-applies-to-002.htm @@ -50910,7 +56012,6 @@ visual css/css-backgrounds/box-shadow-004.htm visual css/css-backgrounds/box-shadow/box-shadow-blur-definition-001.xht visual css/css-backgrounds/color-behind-images.htm visual css/css-backgrounds/none-as-image-layer.htm -visual css/css-backgrounds/order-of-images.htm visual css/css-backgrounds/ttwf-css3background-border-color-shorthand-missing-bottom.htm visual css/css-backgrounds/ttwf-css3background-border-color-shorthand-missing-left.htm visual css/css-backgrounds/ttwf-css3background-border-color-shorthand-missing-right.htm @@ -50937,6 +56038,7 @@ visual css/css-break/nested-multicol-with-spanner-and-oof-crash-005.html visual css/css-break/nested-multicol-with-spanner-and-oof-crash-006.html visual css/css-break/nested-multicol-with-spanner-and-oof-crash-007.html visual css/css-break/nested-multicol-with-spanner-and-oof-crash-008.html +visual css/css-contain/contain-inline-size-grid-indefinite-height-min-height-flex-row.html visual css/css-counter-styles/ethiopic-numeric/css3-counter-styles-068.html visual css/css-counter-styles/ethiopic-numeric/css3-counter-styles-069.html visual css/css-counter-styles/ethiopic-numeric/css3-counter-styles-070.html @@ -51057,13 +56159,7 @@ visual css/css-fonts/test-synthetic-bold.xht visual css/css-fonts/test-synthetic-italic.xht visual css/css-grid/abspos/absolute-positioning-grid-container-parent-002.html visual css/css-grid/layout-algorithm/grid-automatic-minimum-for-auto-rows-001.html -visual css/css-grid/subgrid/grid-subgridded-axis-auto-repeater-crash-001.html -visual css/css-grid/subgrid/grid-subgridded-axis-auto-repeater-crash-002.html -visual css/css-grid/subgrid/grid-subgridded-axis-auto-repeater-crash-003.html -visual css/css-images/gradient/oklab-gradient-expected.html -visual css/css-images/gradient/srgb-gradient-expected.html -visual css/css-images/gradient/srgb-linear-gradient-expected.html -visual css/css-images/gradient/xyz-gradient-expected.html +visual css/css-grid/subgrid/repeat-auto-fill-009.html visual css/css-images/image-fit-001.xht visual css/css-images/image-fit-006.xht visual css/css-images/image-orientation/image-orientation-cursor.html @@ -51071,6 +56167,26 @@ visual css/css-lists/list-style-type-armenian-002.xht visual css/css-lists/list-style-type-armenian-003.xht visual css/css-multicol/multicol-rule-large-002.xht visual css/css-namespaces/syntax-016.xml +visual css/css-overflow/overflow-alignment-block-001.html +visual css/css-overflow/overflow-alignment-block-002.html +visual css/css-overflow/overflow-alignment-flex-col-reverse-001.html +visual css/css-overflow/overflow-alignment-flex-col-reverse-002.html +visual css/css-overflow/overflow-alignment-flex-col-reverse-overflow-001.html +visual css/css-overflow/overflow-alignment-flex-col-reverse-overflow-002.html +visual css/css-overflow/overflow-alignment-flex-col-wrap-001.html +visual css/css-overflow/overflow-alignment-flex-col-wrap-002.html +visual css/css-overflow/overflow-alignment-flex-col-wrap-overflow-001.html +visual css/css-overflow/overflow-alignment-flex-col-wrap-overflow-002.html +visual css/css-overflow/overflow-alignment-flex-row-reverse-001.html +visual css/css-overflow/overflow-alignment-flex-row-reverse-002.html +visual css/css-overflow/overflow-alignment-flex-row-reverse-overflow-001.html +visual css/css-overflow/overflow-alignment-flex-row-reverse-overflow-002.html +visual css/css-overflow/overflow-alignment-flex-row-wrap-001.html +visual css/css-overflow/overflow-alignment-flex-row-wrap-002.html +visual css/css-overflow/overflow-alignment-flex-row-wrap-overflow-001.html +visual css/css-overflow/overflow-alignment-flex-row-wrap-overflow-002.html +visual css/css-overflow/overflow-alignment-grid-001.html +visual css/css-overflow/overflow-alignment-grid-002.html visual css/css-round-display/polar-anchor-center-001.html visual css/css-round-display/polar-anchor-center-002.html visual css/css-round-display/polar-anchor-center-003.html @@ -51088,9 +56204,7 @@ visual css/css-round-display/polar-origin-left-001.html visual css/css-round-display/polar-origin-left-bottom-001.html visual css/css-ruby/ruby-001.xht visual css/css-ruby/ruby-reflow-001-noruby.html -visual css/css-sizing/intrinsic-percent-non-replaced-002.html visual css/css-sizing/replaced-fractional-height-from-aspect-ratio.html -visual css/css-sizing/table-child-percentage-height-with-border-box-expected.html visual css/css-text-decor/text-decoration-color-selection-002.html visual css/css-text-decor/text-decoration-visibility-001.xht visual css/css-text-decor/text-decoration-visibility-002.xht @@ -51124,6 +56238,10 @@ visual css/css-text/text-align/text-align-start-018.html visual css/css-text/text-align/text-align-start-019.html visual css/css-text/text-align/text-align-start-020.html visual css/css-text/text-align/text-align-start-021.html +visual css/css-text/text-autospace/text-autospace-dynamic-text-001.html +visual css/css-text/text-autospace/text-autospace-dynamic-text-002.html +visual css/css-text/text-autospace/text-autospace-dynamic-text-003.html +visual css/css-text/text-autospace/text-autospace-dynamic-text-004.html visual css/css-text/text-justify/text-justify-002.html visual css/css-text/text-justify/text-justify-003.html visual css/css-text/text-justify/text-justify-004.html @@ -51133,7 +56251,6 @@ visual css/css-transforms/css-transform-inherit-rotate.html visual css/css-transforms/rotate-180-degrees-001.html visual css/css-transforms/rotate-270-degrees-001.html visual css/css-transforms/rotate-90-degrees-001.html -visual css/css-values/absolute_length_units.html visual css/css-view-transitions/shared-transition-author-style.manual.html visual css/css-view-transitions/shared-transition-half.manual.html visual css/css-view-transitions/shared-transition-shapes.manual.html @@ -51377,27 +56494,47 @@ visual svg/text/visualtests/text-inline-size-007-visual.svg visual svg/text/visualtests/text-inline-size-101-visual.svg visual svg/text/visualtests/text-inline-size-201-visual.svg wdspec infrastructure/webdriver/tests/test_load_file.py -wdspec webdriver/tests/accept_alert/accept.py -wdspec webdriver/tests/add_cookie/add.py -wdspec webdriver/tests/add_cookie/user_prompts.py -wdspec webdriver/tests/back/back.py -wdspec webdriver/tests/back/user_prompts.py +wdspec webdriver/tests/bidi/browser/create_user_context/create_user_context.py +wdspec webdriver/tests/bidi/browser/get_user_contexts/get_user_contexts.py +wdspec webdriver/tests/bidi/browser/remove_user_context/invalid.py +wdspec webdriver/tests/bidi/browser/remove_user_context/user_context.py +wdspec webdriver/tests/bidi/browsing_context/activate/activate.py +wdspec webdriver/tests/bidi/browsing_context/activate/invalid.py wdspec webdriver/tests/bidi/browsing_context/capture_screenshot/capture_screenshot.py +wdspec webdriver/tests/bidi/browsing_context/capture_screenshot/clip.py +wdspec webdriver/tests/bidi/browsing_context/capture_screenshot/format.py wdspec webdriver/tests/bidi/browsing_context/capture_screenshot/frame.py wdspec webdriver/tests/bidi/browsing_context/capture_screenshot/invalid.py -wdspec webdriver/tests/bidi/browsing_context/classic_interop/window_handle.py +wdspec webdriver/tests/bidi/browsing_context/capture_screenshot/origin.py wdspec webdriver/tests/bidi/browsing_context/close/close.py wdspec webdriver/tests/bidi/browsing_context/close/invalid.py +wdspec webdriver/tests/bidi/browsing_context/close/prompt_unload.py wdspec webdriver/tests/bidi/browsing_context/context_created/context_created.py +wdspec webdriver/tests/bidi/browsing_context/context_created/original_opener.py +wdspec webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py +wdspec webdriver/tests/bidi/browsing_context/context_destroyed/original_opener.py +wdspec webdriver/tests/bidi/browsing_context/create/background.py wdspec webdriver/tests/bidi/browsing_context/create/invalid.py wdspec webdriver/tests/bidi/browsing_context/create/reference_context.py wdspec webdriver/tests/bidi/browsing_context/create/type.py +wdspec webdriver/tests/bidi/browsing_context/create/user_context.py wdspec webdriver/tests/bidi/browsing_context/dom_content_loaded/dom_content_loaded.py +wdspec webdriver/tests/bidi/browsing_context/fragment_navigated/fragment_navigated.py +wdspec webdriver/tests/bidi/browsing_context/fragment_navigated/history_api.py wdspec webdriver/tests/bidi/browsing_context/get_tree/frames.py wdspec webdriver/tests/bidi/browsing_context/get_tree/invalid.py wdspec webdriver/tests/bidi/browsing_context/get_tree/max_depth.py +wdspec webdriver/tests/bidi/browsing_context/get_tree/original_opener.py wdspec webdriver/tests/bidi/browsing_context/get_tree/root.py +wdspec webdriver/tests/bidi/browsing_context/handle_user_prompt/handle_user_prompt.py +wdspec webdriver/tests/bidi/browsing_context/handle_user_prompt/invalid.py wdspec webdriver/tests/bidi/browsing_context/load/load.py +wdspec webdriver/tests/bidi/browsing_context/locate_nodes/context.py +wdspec webdriver/tests/bidi/browsing_context/locate_nodes/invalid.py +wdspec webdriver/tests/bidi/browsing_context/locate_nodes/locator.py +wdspec webdriver/tests/bidi/browsing_context/locate_nodes/max_node_count.py +wdspec webdriver/tests/bidi/browsing_context/locate_nodes/serialization_options.py +wdspec webdriver/tests/bidi/browsing_context/locate_nodes/start_nodes.py wdspec webdriver/tests/bidi/browsing_context/navigate/about_blank.py wdspec webdriver/tests/bidi/browsing_context/navigate/data_url.py wdspec webdriver/tests/bidi/browsing_context/navigate/error.py @@ -51407,52 +56544,165 @@ wdspec webdriver/tests/bidi/browsing_context/navigate/image.py wdspec webdriver/tests/bidi/browsing_context/navigate/invalid.py wdspec webdriver/tests/bidi/browsing_context/navigate/navigate.py wdspec webdriver/tests/bidi/browsing_context/navigate/wait.py +wdspec webdriver/tests/bidi/browsing_context/navigation_failed/navigation_failed.py +wdspec webdriver/tests/bidi/browsing_context/navigation_started/navigation_started.py +wdspec webdriver/tests/bidi/browsing_context/print/background.py +wdspec webdriver/tests/bidi/browsing_context/print/context.py +wdspec webdriver/tests/bidi/browsing_context/print/invalid.py +wdspec webdriver/tests/bidi/browsing_context/print/margin.py +wdspec webdriver/tests/bidi/browsing_context/print/orientation.py +wdspec webdriver/tests/bidi/browsing_context/print/page.py +wdspec webdriver/tests/bidi/browsing_context/print/page_ranges.py +wdspec webdriver/tests/bidi/browsing_context/print/scale.py +wdspec webdriver/tests/bidi/browsing_context/print/shrink_to_fit.py +wdspec webdriver/tests/bidi/browsing_context/reload/frame.py +wdspec webdriver/tests/bidi/browsing_context/reload/invalid.py +wdspec webdriver/tests/bidi/browsing_context/reload/reload.py +wdspec webdriver/tests/bidi/browsing_context/reload/wait.py +wdspec webdriver/tests/bidi/browsing_context/set_viewport/device_pixel_ratio.py +wdspec webdriver/tests/bidi/browsing_context/set_viewport/invalid.py +wdspec webdriver/tests/bidi/browsing_context/set_viewport/viewport.py +wdspec webdriver/tests/bidi/browsing_context/traverse_history/context.py +wdspec webdriver/tests/bidi/browsing_context/traverse_history/delta.py +wdspec webdriver/tests/bidi/browsing_context/traverse_history/invalid.py +wdspec webdriver/tests/bidi/browsing_context/user_prompt_closed/beforeunload.py +wdspec webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py +wdspec webdriver/tests/bidi/browsing_context/user_prompt_opened/beforeunload.py +wdspec webdriver/tests/bidi/browsing_context/user_prompt_opened/handler.py +wdspec webdriver/tests/bidi/browsing_context/user_prompt_opened/user_prompt_opened.py wdspec webdriver/tests/bidi/errors/errors.py +wdspec webdriver/tests/bidi/external/permissions/set_permission/invalid.py +wdspec webdriver/tests/bidi/external/permissions/set_permission/set_permission.py +wdspec webdriver/tests/bidi/external/permissions/set_permission/user_context.py +wdspec webdriver/tests/bidi/input/perform_actions/invalid.py +wdspec webdriver/tests/bidi/input/perform_actions/key.py +wdspec webdriver/tests/bidi/input/perform_actions/key_events.py +wdspec webdriver/tests/bidi/input/perform_actions/key_modifier.py +wdspec webdriver/tests/bidi/input/perform_actions/key_tentative.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_mouse.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_mouse_drag.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_mouse_modifier.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_mouse_multiclick.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_origin.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_pen.py +wdspec webdriver/tests/bidi/input/perform_actions/pointer_touch.py +wdspec webdriver/tests/bidi/input/perform_actions/wheel.py +wdspec webdriver/tests/bidi/input/perform_actions/wheel_origin.py +wdspec webdriver/tests/bidi/input/release_actions/context.py +wdspec webdriver/tests/bidi/input/release_actions/invalid.py +wdspec webdriver/tests/bidi/input/release_actions/release.py +wdspec webdriver/tests/bidi/input/release_actions/sequence.py +wdspec webdriver/tests/bidi/input/release_actions/sequence_tentative.py +wdspec webdriver/tests/bidi/input/set_files/context.py +wdspec webdriver/tests/bidi/input/set_files/files.py +wdspec webdriver/tests/bidi/input/set_files/invalid.py +wdspec webdriver/tests/bidi/integration/cookies_with_network_events.py +wdspec webdriver/tests/bidi/integration/navigation.py wdspec webdriver/tests/bidi/log/entry_added/console.py wdspec webdriver/tests/bidi/log/entry_added/console_args.py wdspec webdriver/tests/bidi/log/entry_added/event_buffer.py wdspec webdriver/tests/bidi/log/entry_added/javascript.py +wdspec webdriver/tests/bidi/log/entry_added/realm.py wdspec webdriver/tests/bidi/log/entry_added/stacktrace.py wdspec webdriver/tests/bidi/log/entry_added/subscription.py -wdspec webdriver/tests/bidi/network/before_request_sent/before_request_sent_tentative.py -wdspec webdriver/tests/bidi/network/combined/network_events_tentative.py -wdspec webdriver/tests/bidi/network/response_completed/response_completed_tentative.py -wdspec webdriver/tests/bidi/network/response_started/response_started_tentative.py +wdspec webdriver/tests/bidi/network/add_intercept/add_intercept.py +wdspec webdriver/tests/bidi/network/add_intercept/contexts.py +wdspec webdriver/tests/bidi/network/add_intercept/invalid.py +wdspec webdriver/tests/bidi/network/add_intercept/phase_auth_required.py +wdspec webdriver/tests/bidi/network/add_intercept/phases.py +wdspec webdriver/tests/bidi/network/add_intercept/url_patterns.py +wdspec webdriver/tests/bidi/network/auth_required/auth_required.py +wdspec webdriver/tests/bidi/network/auth_required/unsubscribe.py +wdspec webdriver/tests/bidi/network/before_request_sent/before_request_sent.py +wdspec webdriver/tests/bidi/network/before_request_sent/before_request_sent_cached.py +wdspec webdriver/tests/bidi/network/combined/network_events.py +wdspec webdriver/tests/bidi/network/continue_request/body.py +wdspec webdriver/tests/bidi/network/continue_request/cookies.py +wdspec webdriver/tests/bidi/network/continue_request/headers.py +wdspec webdriver/tests/bidi/network/continue_request/invalid.py +wdspec webdriver/tests/bidi/network/continue_request/method.py +wdspec webdriver/tests/bidi/network/continue_request/request.py +wdspec webdriver/tests/bidi/network/continue_response/cookies.py +wdspec webdriver/tests/bidi/network/continue_response/credentials.py +wdspec webdriver/tests/bidi/network/continue_response/headers.py +wdspec webdriver/tests/bidi/network/continue_response/invalid.py +wdspec webdriver/tests/bidi/network/continue_response/request.py +wdspec webdriver/tests/bidi/network/continue_with_auth/action.py +wdspec webdriver/tests/bidi/network/continue_with_auth/invalid.py +wdspec webdriver/tests/bidi/network/fail_request/invalid.py +wdspec webdriver/tests/bidi/network/fail_request/request.py +wdspec webdriver/tests/bidi/network/fetch_error/fetch_error.py +wdspec webdriver/tests/bidi/network/provide_response/body.py +wdspec webdriver/tests/bidi/network/provide_response/cookies.py +wdspec webdriver/tests/bidi/network/provide_response/headers.py +wdspec webdriver/tests/bidi/network/provide_response/invalid.py +wdspec webdriver/tests/bidi/network/provide_response/reason_phrase.py +wdspec webdriver/tests/bidi/network/provide_response/request.py +wdspec webdriver/tests/bidi/network/provide_response/status_code.py +wdspec webdriver/tests/bidi/network/remove_intercept/invalid.py +wdspec webdriver/tests/bidi/network/remove_intercept/remove_intercept.py +wdspec webdriver/tests/bidi/network/response_completed/response_completed.py +wdspec webdriver/tests/bidi/network/response_completed/response_completed_cached.py +wdspec webdriver/tests/bidi/network/response_started/response_started.py +wdspec webdriver/tests/bidi/network/response_started/response_started_cached.py +wdspec webdriver/tests/bidi/network/set_cache_behavior/contexts.py +wdspec webdriver/tests/bidi/network/set_cache_behavior/invalid.py +wdspec webdriver/tests/bidi/network/set_cache_behavior/set_cache_behavior.py +wdspec webdriver/tests/bidi/script/add_preload_script/add_preload_script.py +wdspec webdriver/tests/bidi/script/add_preload_script/arguments.py +wdspec webdriver/tests/bidi/script/add_preload_script/contexts.py +wdspec webdriver/tests/bidi/script/add_preload_script/invalid.py +wdspec webdriver/tests/bidi/script/add_preload_script/sandbox.py wdspec webdriver/tests/bidi/script/call_function/arguments.py wdspec webdriver/tests/bidi/script/call_function/await_promise.py +wdspec webdriver/tests/bidi/script/call_function/channel.py wdspec webdriver/tests/bidi/script/call_function/exception_details.py +wdspec webdriver/tests/bidi/script/call_function/exception_details_await_promise.py wdspec webdriver/tests/bidi/script/call_function/function_declaration.py wdspec webdriver/tests/bidi/script/call_function/internal_id.py wdspec webdriver/tests/bidi/script/call_function/invalid.py -wdspec webdriver/tests/bidi/script/call_function/invalid_tentative.py +wdspec webdriver/tests/bidi/script/call_function/primitive_values.py wdspec webdriver/tests/bidi/script/call_function/realm.py -wdspec webdriver/tests/bidi/script/call_function/result.py +wdspec webdriver/tests/bidi/script/call_function/remote_reference.py +wdspec webdriver/tests/bidi/script/call_function/remote_values.py wdspec webdriver/tests/bidi/script/call_function/result_node.py wdspec webdriver/tests/bidi/script/call_function/result_ownership.py wdspec webdriver/tests/bidi/script/call_function/sandbox.py +wdspec webdriver/tests/bidi/script/call_function/serialization_options.py wdspec webdriver/tests/bidi/script/call_function/strict_mode.py +wdspec webdriver/tests/bidi/script/call_function/target.py wdspec webdriver/tests/bidi/script/call_function/this.py +wdspec webdriver/tests/bidi/script/call_function/user_activation.py wdspec webdriver/tests/bidi/script/disown/handles.py wdspec webdriver/tests/bidi/script/disown/invalid.py -wdspec webdriver/tests/bidi/script/disown/invalid_tentative.py wdspec webdriver/tests/bidi/script/disown/target.py wdspec webdriver/tests/bidi/script/evaluate/await_promise.py wdspec webdriver/tests/bidi/script/evaluate/evaluate.py wdspec webdriver/tests/bidi/script/evaluate/exception_details.py +wdspec webdriver/tests/bidi/script/evaluate/exception_details_await_promise.py wdspec webdriver/tests/bidi/script/evaluate/internal_id.py wdspec webdriver/tests/bidi/script/evaluate/invalid.py -wdspec webdriver/tests/bidi/script/evaluate/invalid_tentative.py -wdspec webdriver/tests/bidi/script/evaluate/result.py +wdspec webdriver/tests/bidi/script/evaluate/primitive_values.py +wdspec webdriver/tests/bidi/script/evaluate/remote_values.py wdspec webdriver/tests/bidi/script/evaluate/result_node.py wdspec webdriver/tests/bidi/script/evaluate/result_ownership.py wdspec webdriver/tests/bidi/script/evaluate/sandbox.py wdspec webdriver/tests/bidi/script/evaluate/strict_mode.py +wdspec webdriver/tests/bidi/script/evaluate/target.py +wdspec webdriver/tests/bidi/script/evaluate/user_activation.py wdspec webdriver/tests/bidi/script/get_realms/context.py wdspec webdriver/tests/bidi/script/get_realms/get_realms.py wdspec webdriver/tests/bidi/script/get_realms/invalid.py wdspec webdriver/tests/bidi/script/get_realms/sandbox.py wdspec webdriver/tests/bidi/script/get_realms/type.py -wdspec webdriver/tests/bidi/session/new/connect.py +wdspec webdriver/tests/bidi/script/message/message.py +wdspec webdriver/tests/bidi/script/realm_created/realm_created.py +wdspec webdriver/tests/bidi/script/realm_destroyed/realm_destroyed.py +wdspec webdriver/tests/bidi/script/remove_preload_script/invalid.py +wdspec webdriver/tests/bidi/script/remove_preload_script/remove_preload_script.py +wdspec webdriver/tests/bidi/script/remove_preload_script/sandbox.py +wdspec webdriver/tests/bidi/session/new/bidi_upgrade.py wdspec webdriver/tests/bidi/session/status/status.py wdspec webdriver/tests/bidi/session/subscribe/contexts.py wdspec webdriver/tests/bidi/session/subscribe/events.py @@ -51460,178 +56710,212 @@ wdspec webdriver/tests/bidi/session/subscribe/invalid.py wdspec webdriver/tests/bidi/session/unsubscribe/contexts.py wdspec webdriver/tests/bidi/session/unsubscribe/events.py wdspec webdriver/tests/bidi/session/unsubscribe/invalid.py -wdspec webdriver/tests/close_window/close.py -wdspec webdriver/tests/close_window/user_prompts.py -wdspec webdriver/tests/delete_all_cookies/delete.py -wdspec webdriver/tests/delete_all_cookies/user_prompts.py -wdspec webdriver/tests/delete_cookie/delete.py -wdspec webdriver/tests/delete_cookie/user_prompts.py -wdspec webdriver/tests/delete_session/delete.py -wdspec webdriver/tests/dismiss_alert/dismiss.py -wdspec webdriver/tests/element_clear/clear.py -wdspec webdriver/tests/element_clear/user_prompts.py -wdspec webdriver/tests/element_click/bubbling.py -wdspec webdriver/tests/element_click/center_point.py -wdspec webdriver/tests/element_click/click.py -wdspec webdriver/tests/element_click/events.py -wdspec webdriver/tests/element_click/file_upload.py -wdspec webdriver/tests/element_click/interactability.py -wdspec webdriver/tests/element_click/navigate.py -wdspec webdriver/tests/element_click/scroll_into_view.py -wdspec webdriver/tests/element_click/select.py -wdspec webdriver/tests/element_click/shadow_dom.py -wdspec webdriver/tests/element_click/user_prompts.py -wdspec webdriver/tests/element_send_keys/content_editable.py -wdspec webdriver/tests/element_send_keys/events.py -wdspec webdriver/tests/element_send_keys/file_upload.py -wdspec webdriver/tests/element_send_keys/form_controls.py -wdspec webdriver/tests/element_send_keys/interactability.py -wdspec webdriver/tests/element_send_keys/scroll_into_view.py -wdspec webdriver/tests/element_send_keys/send_keys.py -wdspec webdriver/tests/element_send_keys/user_prompts.py -wdspec webdriver/tests/execute_async_script/arguments.py -wdspec webdriver/tests/execute_async_script/collections.py -wdspec webdriver/tests/execute_async_script/cyclic.py -wdspec webdriver/tests/execute_async_script/execute_async.py -wdspec webdriver/tests/execute_async_script/node.py -wdspec webdriver/tests/execute_async_script/objects.py -wdspec webdriver/tests/execute_async_script/promise.py -wdspec webdriver/tests/execute_async_script/properties.py -wdspec webdriver/tests/execute_async_script/user_prompts.py -wdspec webdriver/tests/execute_script/arguments.py -wdspec webdriver/tests/execute_script/collections.py -wdspec webdriver/tests/execute_script/cyclic.py -wdspec webdriver/tests/execute_script/execute.py -wdspec webdriver/tests/execute_script/json_serialize_windowproxy.py -wdspec webdriver/tests/execute_script/node.py -wdspec webdriver/tests/execute_script/objects.py -wdspec webdriver/tests/execute_script/promise.py -wdspec webdriver/tests/execute_script/properties.py -wdspec webdriver/tests/execute_script/user_prompts.py -wdspec webdriver/tests/find_element/find.py -wdspec webdriver/tests/find_element/user_prompts.py -wdspec webdriver/tests/find_element_from_element/find.py -wdspec webdriver/tests/find_element_from_element/user_prompts.py -wdspec webdriver/tests/find_element_from_shadow_root/find.py -wdspec webdriver/tests/find_element_from_shadow_root/user_prompts.py -wdspec webdriver/tests/find_elements/find.py -wdspec webdriver/tests/find_elements/user_prompts.py -wdspec webdriver/tests/find_elements_from_element/find.py -wdspec webdriver/tests/find_elements_from_element/user_prompts.py -wdspec webdriver/tests/find_elements_from_shadow_root/find.py -wdspec webdriver/tests/find_elements_from_shadow_root/user_prompts.py -wdspec webdriver/tests/forward/forward.py -wdspec webdriver/tests/forward/user_prompts.py -wdspec webdriver/tests/fullscreen_window/fullscreen.py -wdspec webdriver/tests/fullscreen_window/stress.py -wdspec webdriver/tests/fullscreen_window/user_prompts.py -wdspec webdriver/tests/get_active_element/get.py -wdspec webdriver/tests/get_active_element/user_prompts.py -wdspec webdriver/tests/get_alert_text/get.py -wdspec webdriver/tests/get_computed_label/get.py -wdspec webdriver/tests/get_computed_role/get.py -wdspec webdriver/tests/get_current_url/file.py -wdspec webdriver/tests/get_current_url/get.py -wdspec webdriver/tests/get_current_url/iframe.py -wdspec webdriver/tests/get_current_url/user_prompts.py -wdspec webdriver/tests/get_element_attribute/get.py -wdspec webdriver/tests/get_element_attribute/user_prompts.py -wdspec webdriver/tests/get_element_css_value/get.py -wdspec webdriver/tests/get_element_css_value/user_prompts.py -wdspec webdriver/tests/get_element_property/get.py -wdspec webdriver/tests/get_element_property/user_prompts.py -wdspec webdriver/tests/get_element_rect/get.py -wdspec webdriver/tests/get_element_rect/user_prompts.py -wdspec webdriver/tests/get_element_shadow_root/get.py -wdspec webdriver/tests/get_element_shadow_root/user_prompts.py -wdspec webdriver/tests/get_element_tag_name/get.py -wdspec webdriver/tests/get_element_tag_name/user_prompts.py -wdspec webdriver/tests/get_element_text/get.py -wdspec webdriver/tests/get_element_text/user_prompts.py -wdspec webdriver/tests/get_named_cookie/get.py -wdspec webdriver/tests/get_named_cookie/user_prompts.py -wdspec webdriver/tests/get_page_source/source.py -wdspec webdriver/tests/get_page_source/user_prompts.py -wdspec webdriver/tests/get_timeouts/get.py -wdspec webdriver/tests/get_title/get.py -wdspec webdriver/tests/get_title/iframe.py -wdspec webdriver/tests/get_title/user_prompts.py -wdspec webdriver/tests/get_window_handle/get.py -wdspec webdriver/tests/get_window_handle/user_prompts.py -wdspec webdriver/tests/get_window_handles/get.py -wdspec webdriver/tests/get_window_handles/user_prompts.py -wdspec webdriver/tests/get_window_rect/get.py -wdspec webdriver/tests/get_window_rect/user_prompts.py -wdspec webdriver/tests/interface/interface.py -wdspec webdriver/tests/is_element_enabled/enabled.py -wdspec webdriver/tests/is_element_enabled/user_prompts.py -wdspec webdriver/tests/is_element_selected/selected.py -wdspec webdriver/tests/is_element_selected/user_prompts.py -wdspec webdriver/tests/maximize_window/maximize.py -wdspec webdriver/tests/maximize_window/stress.py -wdspec webdriver/tests/maximize_window/user_prompts.py -wdspec webdriver/tests/minimize_window/minimize.py -wdspec webdriver/tests/minimize_window/stress.py -wdspec webdriver/tests/minimize_window/user_prompts.py -wdspec webdriver/tests/navigate_to/file.py -wdspec webdriver/tests/navigate_to/navigate.py -wdspec webdriver/tests/navigate_to/user_prompts.py -wdspec webdriver/tests/new_session/create_alwaysMatch.py -wdspec webdriver/tests/new_session/create_firstMatch.py -wdspec webdriver/tests/new_session/default_values.py -wdspec webdriver/tests/new_session/invalid_capabilities.py -wdspec webdriver/tests/new_session/merge.py -wdspec webdriver/tests/new_session/page_load_strategy.py -wdspec webdriver/tests/new_session/platform_name.py -wdspec webdriver/tests/new_session/response.py -wdspec webdriver/tests/new_session/timeouts.py -wdspec webdriver/tests/new_session/websocket_url.py -wdspec webdriver/tests/new_window/new.py -wdspec webdriver/tests/new_window/new_tab.py -wdspec webdriver/tests/new_window/new_window.py -wdspec webdriver/tests/new_window/user_prompts.py -wdspec webdriver/tests/perform_actions/key.py -wdspec webdriver/tests/perform_actions/key_events.py -wdspec webdriver/tests/perform_actions/key_modifiers.py -wdspec webdriver/tests/perform_actions/key_shortcuts.py -wdspec webdriver/tests/perform_actions/key_special_keys.py -wdspec webdriver/tests/perform_actions/none.py -wdspec webdriver/tests/perform_actions/pointer_contextmenu.py -wdspec webdriver/tests/perform_actions/pointer_dblclick.py -wdspec webdriver/tests/perform_actions/pointer_modifier_click.py -wdspec webdriver/tests/perform_actions/pointer_mouse.py -wdspec webdriver/tests/perform_actions/pointer_origin.py -wdspec webdriver/tests/perform_actions/pointer_pause_dblclick.py -wdspec webdriver/tests/perform_actions/pointer_pen.py -wdspec webdriver/tests/perform_actions/pointer_touch.py -wdspec webdriver/tests/perform_actions/pointer_tripleclick.py -wdspec webdriver/tests/perform_actions/sequence.py -wdspec webdriver/tests/perform_actions/user_prompts.py -wdspec webdriver/tests/perform_actions/validity.py -wdspec webdriver/tests/perform_actions/wheel.py -wdspec webdriver/tests/permissions/set.py -wdspec webdriver/tests/print/printcmd.py -wdspec webdriver/tests/print/user_prompts.py -wdspec webdriver/tests/refresh/refresh.py -wdspec webdriver/tests/refresh/user_prompts.py -wdspec webdriver/tests/release_actions/release.py -wdspec webdriver/tests/release_actions/sequence.py -wdspec webdriver/tests/send_alert_text/send.py -wdspec webdriver/tests/set_timeouts/set.py -wdspec webdriver/tests/set_timeouts/user_prompts.py -wdspec webdriver/tests/set_window_rect/set.py -wdspec webdriver/tests/set_window_rect/user_prompts.py -wdspec webdriver/tests/status/status.py -wdspec webdriver/tests/switch_to_frame/cross_origin.py -wdspec webdriver/tests/switch_to_frame/switch.py -wdspec webdriver/tests/switch_to_frame/switch_number.py -wdspec webdriver/tests/switch_to_frame/switch_webelement.py -wdspec webdriver/tests/switch_to_parent_frame/switch.py -wdspec webdriver/tests/switch_to_window/alerts.py -wdspec webdriver/tests/switch_to_window/switch.py -wdspec webdriver/tests/take_element_screenshot/iframe.py -wdspec webdriver/tests/take_element_screenshot/screenshot.py -wdspec webdriver/tests/take_element_screenshot/user_prompts.py -wdspec webdriver/tests/take_screenshot/iframe.py -wdspec webdriver/tests/take_screenshot/screenshot.py -wdspec webdriver/tests/take_screenshot/user_prompts.py +wdspec webdriver/tests/bidi/storage/delete_cookies/filter.py +wdspec webdriver/tests/bidi/storage/delete_cookies/invalid.py +wdspec webdriver/tests/bidi/storage/delete_cookies/partition.py +wdspec webdriver/tests/bidi/storage/get_cookies/filter.py +wdspec webdriver/tests/bidi/storage/get_cookies/invalid.py +wdspec webdriver/tests/bidi/storage/get_cookies/partition.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_domain.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_expiry.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_http_only.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_name.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_path.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_same_site.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_secure.py +wdspec webdriver/tests/bidi/storage/set_cookie/cookie_value.py +wdspec webdriver/tests/bidi/storage/set_cookie/invalid.py +wdspec webdriver/tests/bidi/storage/set_cookie/page_protocols.py +wdspec webdriver/tests/bidi/storage/set_cookie/partition.py +wdspec webdriver/tests/classic/accept_alert/accept.py +wdspec webdriver/tests/classic/add_cookie/add.py +wdspec webdriver/tests/classic/add_cookie/user_prompts.py +wdspec webdriver/tests/classic/back/back.py +wdspec webdriver/tests/classic/back/user_prompts.py +wdspec webdriver/tests/classic/close_window/close.py +wdspec webdriver/tests/classic/close_window/user_prompts.py +wdspec webdriver/tests/classic/delete_all_cookies/delete.py +wdspec webdriver/tests/classic/delete_all_cookies/user_prompts.py +wdspec webdriver/tests/classic/delete_cookie/delete.py +wdspec webdriver/tests/classic/delete_cookie/user_prompts.py +wdspec webdriver/tests/classic/delete_session/delete.py +wdspec webdriver/tests/classic/dismiss_alert/dismiss.py +wdspec webdriver/tests/classic/element_clear/clear.py +wdspec webdriver/tests/classic/element_clear/disabled.py +wdspec webdriver/tests/classic/element_clear/user_prompts.py +wdspec webdriver/tests/classic/element_click/bubbling.py +wdspec webdriver/tests/classic/element_click/center_point.py +wdspec webdriver/tests/classic/element_click/click.py +wdspec webdriver/tests/classic/element_click/events.py +wdspec webdriver/tests/classic/element_click/file_upload.py +wdspec webdriver/tests/classic/element_click/interactability.py +wdspec webdriver/tests/classic/element_click/navigate.py +wdspec webdriver/tests/classic/element_click/scroll_into_view.py +wdspec webdriver/tests/classic/element_click/select.py +wdspec webdriver/tests/classic/element_click/shadow_dom.py +wdspec webdriver/tests/classic/element_click/user_prompts.py +wdspec webdriver/tests/classic/element_send_keys/content_editable.py +wdspec webdriver/tests/classic/element_send_keys/events.py +wdspec webdriver/tests/classic/element_send_keys/file_upload.py +wdspec webdriver/tests/classic/element_send_keys/form_controls.py +wdspec webdriver/tests/classic/element_send_keys/interactability.py +wdspec webdriver/tests/classic/element_send_keys/scroll_into_view.py +wdspec webdriver/tests/classic/element_send_keys/send_keys.py +wdspec webdriver/tests/classic/element_send_keys/user_prompts.py +wdspec webdriver/tests/classic/execute_async_script/arguments.py +wdspec webdriver/tests/classic/execute_async_script/collections.py +wdspec webdriver/tests/classic/execute_async_script/cyclic.py +wdspec webdriver/tests/classic/execute_async_script/execute_async.py +wdspec webdriver/tests/classic/execute_async_script/node.py +wdspec webdriver/tests/classic/execute_async_script/objects.py +wdspec webdriver/tests/classic/execute_async_script/promise.py +wdspec webdriver/tests/classic/execute_async_script/properties.py +wdspec webdriver/tests/classic/execute_async_script/user_prompts.py +wdspec webdriver/tests/classic/execute_async_script/window.py +wdspec webdriver/tests/classic/execute_script/arguments.py +wdspec webdriver/tests/classic/execute_script/collections.py +wdspec webdriver/tests/classic/execute_script/cyclic.py +wdspec webdriver/tests/classic/execute_script/execute.py +wdspec webdriver/tests/classic/execute_script/node.py +wdspec webdriver/tests/classic/execute_script/objects.py +wdspec webdriver/tests/classic/execute_script/promise.py +wdspec webdriver/tests/classic/execute_script/properties.py +wdspec webdriver/tests/classic/execute_script/user_prompts.py +wdspec webdriver/tests/classic/execute_script/window.py +wdspec webdriver/tests/classic/find_element/find.py +wdspec webdriver/tests/classic/find_element/user_prompts.py +wdspec webdriver/tests/classic/find_element_from_element/find.py +wdspec webdriver/tests/classic/find_element_from_element/user_prompts.py +wdspec webdriver/tests/classic/find_element_from_shadow_root/find.py +wdspec webdriver/tests/classic/find_element_from_shadow_root/user_prompts.py +wdspec webdriver/tests/classic/find_elements/find.py +wdspec webdriver/tests/classic/find_elements/user_prompts.py +wdspec webdriver/tests/classic/find_elements_from_element/find.py +wdspec webdriver/tests/classic/find_elements_from_element/user_prompts.py +wdspec webdriver/tests/classic/find_elements_from_shadow_root/find.py +wdspec webdriver/tests/classic/find_elements_from_shadow_root/user_prompts.py +wdspec webdriver/tests/classic/forward/forward.py +wdspec webdriver/tests/classic/forward/user_prompts.py +wdspec webdriver/tests/classic/fullscreen_window/fullscreen.py +wdspec webdriver/tests/classic/fullscreen_window/stress.py +wdspec webdriver/tests/classic/fullscreen_window/user_prompts.py +wdspec webdriver/tests/classic/get_active_element/get.py +wdspec webdriver/tests/classic/get_active_element/user_prompts.py +wdspec webdriver/tests/classic/get_alert_text/get.py +wdspec webdriver/tests/classic/get_computed_label/get.py +wdspec webdriver/tests/classic/get_computed_role/get.py +wdspec webdriver/tests/classic/get_current_url/file.py +wdspec webdriver/tests/classic/get_current_url/get.py +wdspec webdriver/tests/classic/get_current_url/iframe.py +wdspec webdriver/tests/classic/get_current_url/user_prompts.py +wdspec webdriver/tests/classic/get_element_attribute/get.py +wdspec webdriver/tests/classic/get_element_attribute/user_prompts.py +wdspec webdriver/tests/classic/get_element_css_value/get.py +wdspec webdriver/tests/classic/get_element_css_value/user_prompts.py +wdspec webdriver/tests/classic/get_element_property/get.py +wdspec webdriver/tests/classic/get_element_property/user_prompts.py +wdspec webdriver/tests/classic/get_element_rect/get.py +wdspec webdriver/tests/classic/get_element_rect/user_prompts.py +wdspec webdriver/tests/classic/get_element_shadow_root/get.py +wdspec webdriver/tests/classic/get_element_shadow_root/user_prompts.py +wdspec webdriver/tests/classic/get_element_tag_name/get.py +wdspec webdriver/tests/classic/get_element_tag_name/user_prompts.py +wdspec webdriver/tests/classic/get_element_text/get.py +wdspec webdriver/tests/classic/get_element_text/user_prompts.py +wdspec webdriver/tests/classic/get_named_cookie/get.py +wdspec webdriver/tests/classic/get_named_cookie/user_prompts.py +wdspec webdriver/tests/classic/get_page_source/source.py +wdspec webdriver/tests/classic/get_page_source/user_prompts.py +wdspec webdriver/tests/classic/get_timeouts/get.py +wdspec webdriver/tests/classic/get_title/get.py +wdspec webdriver/tests/classic/get_title/iframe.py +wdspec webdriver/tests/classic/get_title/user_prompts.py +wdspec webdriver/tests/classic/get_window_handle/get.py +wdspec webdriver/tests/classic/get_window_handle/user_prompts.py +wdspec webdriver/tests/classic/get_window_handles/get.py +wdspec webdriver/tests/classic/get_window_handles/user_prompts.py +wdspec webdriver/tests/classic/get_window_rect/get.py +wdspec webdriver/tests/classic/get_window_rect/user_prompts.py +wdspec webdriver/tests/classic/interface/interface.py +wdspec webdriver/tests/classic/is_element_enabled/enabled.py +wdspec webdriver/tests/classic/is_element_enabled/user_prompts.py +wdspec webdriver/tests/classic/is_element_selected/selected.py +wdspec webdriver/tests/classic/is_element_selected/user_prompts.py +wdspec webdriver/tests/classic/maximize_window/maximize.py +wdspec webdriver/tests/classic/maximize_window/stress.py +wdspec webdriver/tests/classic/maximize_window/user_prompts.py +wdspec webdriver/tests/classic/minimize_window/minimize.py +wdspec webdriver/tests/classic/minimize_window/stress.py +wdspec webdriver/tests/classic/minimize_window/user_prompts.py +wdspec webdriver/tests/classic/navigate_to/file.py +wdspec webdriver/tests/classic/navigate_to/navigate.py +wdspec webdriver/tests/classic/navigate_to/user_prompts.py +wdspec webdriver/tests/classic/new_session/create_alwaysMatch.py +wdspec webdriver/tests/classic/new_session/create_firstMatch.py +wdspec webdriver/tests/classic/new_session/default_values.py +wdspec webdriver/tests/classic/new_session/invalid_capabilities.py +wdspec webdriver/tests/classic/new_session/merge.py +wdspec webdriver/tests/classic/new_session/no_capabilities.py +wdspec webdriver/tests/classic/new_session/page_load_strategy.py +wdspec webdriver/tests/classic/new_session/platform_name.py +wdspec webdriver/tests/classic/new_session/response.py +wdspec webdriver/tests/classic/new_session/timeouts.py +wdspec webdriver/tests/classic/new_session/unhandled_prompt_behavior.py +wdspec webdriver/tests/classic/new_session/websocket_url.py +wdspec webdriver/tests/classic/new_window/new.py +wdspec webdriver/tests/classic/new_window/new_tab.py +wdspec webdriver/tests/classic/new_window/new_window.py +wdspec webdriver/tests/classic/new_window/user_prompts.py +wdspec webdriver/tests/classic/perform_actions/invalid.py +wdspec webdriver/tests/classic/perform_actions/key.py +wdspec webdriver/tests/classic/perform_actions/key_events.py +wdspec webdriver/tests/classic/perform_actions/key_modifiers.py +wdspec webdriver/tests/classic/perform_actions/key_shortcuts.py +wdspec webdriver/tests/classic/perform_actions/key_special_keys.py +wdspec webdriver/tests/classic/perform_actions/key_tentative.py +wdspec webdriver/tests/classic/perform_actions/none.py +wdspec webdriver/tests/classic/perform_actions/perform.py +wdspec webdriver/tests/classic/perform_actions/pointer_contextmenu.py +wdspec webdriver/tests/classic/perform_actions/pointer_dblclick.py +wdspec webdriver/tests/classic/perform_actions/pointer_modifier_click.py +wdspec webdriver/tests/classic/perform_actions/pointer_mouse.py +wdspec webdriver/tests/classic/perform_actions/pointer_origin.py +wdspec webdriver/tests/classic/perform_actions/pointer_pause_dblclick.py +wdspec webdriver/tests/classic/perform_actions/pointer_pen.py +wdspec webdriver/tests/classic/perform_actions/pointer_touch.py +wdspec webdriver/tests/classic/perform_actions/pointer_tripleclick.py +wdspec webdriver/tests/classic/perform_actions/sequence.py +wdspec webdriver/tests/classic/perform_actions/user_prompts.py +wdspec webdriver/tests/classic/perform_actions/wheel.py +wdspec webdriver/tests/classic/permissions/set.py +wdspec webdriver/tests/classic/print/background.py +wdspec webdriver/tests/classic/print/orientation.py +wdspec webdriver/tests/classic/print/printcmd.py +wdspec webdriver/tests/classic/print/user_prompts.py +wdspec webdriver/tests/classic/refresh/refresh.py +wdspec webdriver/tests/classic/refresh/user_prompts.py +wdspec webdriver/tests/classic/release_actions/release.py +wdspec webdriver/tests/classic/release_actions/sequence.py +wdspec webdriver/tests/classic/send_alert_text/send.py +wdspec webdriver/tests/classic/set_timeouts/set.py +wdspec webdriver/tests/classic/set_timeouts/user_prompts.py +wdspec webdriver/tests/classic/set_window_rect/set.py +wdspec webdriver/tests/classic/set_window_rect/user_prompts.py +wdspec webdriver/tests/classic/status/status.py +wdspec webdriver/tests/classic/switch_to_frame/cross_origin.py +wdspec webdriver/tests/classic/switch_to_frame/switch.py +wdspec webdriver/tests/classic/switch_to_frame/switch_number.py +wdspec webdriver/tests/classic/switch_to_frame/switch_webelement.py +wdspec webdriver/tests/classic/switch_to_parent_frame/switch.py +wdspec webdriver/tests/classic/switch_to_window/alerts.py +wdspec webdriver/tests/classic/switch_to_window/switch.py +wdspec webdriver/tests/classic/take_element_screenshot/iframe.py +wdspec webdriver/tests/classic/take_element_screenshot/screenshot.py +wdspec webdriver/tests/classic/take_element_screenshot/user_prompts.py +wdspec webdriver/tests/classic/take_screenshot/iframe.py +wdspec webdriver/tests/classic/take_screenshot/screenshot.py +wdspec webdriver/tests/classic/take_screenshot/user_prompts.py +wdspec webdriver/tests/interop/beforeunload_prompt.py +wdspec webdriver/tests/interop/frames.py +wdspec webdriver/tests/interop/shared_id_node.py +wdspec webdriver/tests/interop/shared_id_window.py diff --git a/tests/abstract001.html b/tests/abstract001.html index 09d3adfe2c..9403875d6b 100644 --- a/tests/abstract001.html +++ b/tests/abstract001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/adjacent-boilerplate/adjacent-boilerplate.html b/tests/adjacent-boilerplate/adjacent-boilerplate.html index afbded52f7..e740800d4b 100644 --- a/tests/adjacent-boilerplate/adjacent-boilerplate.html +++ b/tests/adjacent-boilerplate/adjacent-boilerplate.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/advisement001.html b/tests/advisement001.html index 3af128ce75..2caa863933 100644 --- a/tests/advisement001.html +++ b/tests/advisement001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Advisements</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/algorithm001.html b/tests/algorithm001.html index 937d84fbc4..6021655a3c 100644 --- a/tests/algorithm001.html +++ b/tests/algorithm001.html @@ -574,7 +574,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/basic001.html b/tests/basic001.html index 0fffb263f9..7e38479ba8 100644 --- a/tests/basic001.html +++ b/tests/basic001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio001.html b/tests/biblio001.html index 1a27f33c2c..fc3a7def37 100644 --- a/tests/biblio001.html +++ b/tests/biblio001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio002.html b/tests/biblio002.html index fa56d3872b..94b2d65706 100644 --- a/tests/biblio002.html +++ b/tests/biblio002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio003.html b/tests/biblio003.html index b7d5936a49..564a85db68 100644 --- a/tests/biblio003.html +++ b/tests/biblio003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio004.html b/tests/biblio004.html index ea0aa9e99a..2cd74155e8 100644 --- a/tests/biblio004.html +++ b/tests/biblio004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio005.html b/tests/biblio005.html index 6c686b5fcf..37a440239a 100644 --- a/tests/biblio005.html +++ b/tests/biblio005.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio006.html b/tests/biblio006.html index ddb93c8bda..1a67f429af 100644 --- a/tests/biblio006.html +++ b/tests/biblio006.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/biblio007.html b/tests/biblio007.html index 7e58386016..46dcf65b7f 100644 --- a/tests/biblio007.html +++ b/tests/biblio007.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/boilerplate-substitution001.html b/tests/boilerplate-substitution001.html index a7f11ed0f3..a54f4272e7 100644 --- a/tests/boilerplate-substitution001.html +++ b/tests/boilerplate-substitution001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/caniuse001.html b/tests/caniuse001.html index 94bc6c0532..2a4370846f 100644 --- a/tests/caniuse001.html +++ b/tests/caniuse001.html @@ -717,7 +717,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: @@ -755,8 +755,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <details class="caniuse-status unpositioned" data-anno-for="insertadjacentelement-where-element" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>48+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>9.5+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>10+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=insert-adjacent">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>48+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>9.5+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>10+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=insert-adjacent">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/comments001.html b/tests/comments001.html index 5e7369790b..3a7bdeae6a 100644 --- a/tests/comments001.html +++ b/tests/comments001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/conditional001.bs b/tests/conditional001.bs index 5d78c5dbd6..ab2d7caec8 100644 --- a/tests/conditional001.bs +++ b/tests/conditional001.bs @@ -1,64 +1,65 @@ <pre class=metadata> Title: Foo -Group: test Shortname: foo Level: 1 -Status: w3c/ED +Org: bikeshed +Group: test +Status: TEST ED: http://example.com/foo Abstract: Testing basic support for conditionals. Editor: Example Editor Date: 1970-01-01 </pre> -<div include-if="ED"> - 1. Included, since status is ED +<div include-if="TEST"> + 1. Included, since status is TEST </div> -<p include-if="w3c/ED"> - 2. Included, since status canonicalizes to w3c/ED. +<p include-if="bikeshed/TEST"> + 2. Included, since status canonicalizes to bikeshed/TEST. </p> -<div include-if="ietf/ED"> - Excluded, since megagroup is wrong. +<div include-if="bikeshed-2/TEST"> + Excluded, since org is wrong. </div> -<div include-if="CR"> - Excluded, since status is not CR. +<div include-if="TEST-2"> + Excluded, since status is not TEST-2. </div> <hr> -<div exclude-if="ED"> - Excluded, since status is ED +<div exclude-if="TEST"> + Excluded, since status is TEST </div> -<p exclude-if="w3c/ED"> - Excluded, since status canonicalizes to w3c/ED. +<p exclude-if="bikeshed/TEST"> + Excluded, since status canonicalizes to bikeshed/TEST. </p> -<div exclude-if="ietf/ED"> - 3. Included, since megagroup is wrong. +<div exclude-if="bikeshed-2/TEST"> + 3. Included, since org is wrong. </div> -<div exclude-if="CR"> - 4. Included, since status is not CR. +<div exclude-if="TEST-2"> + 4. Included, since status is not TEST-2. </div> -<p>The attributes <span include-if=ED>5. can</span><span exclude-if=ED>can't</span> be used on inlines as well.</p> +<p>The attributes <span include-if=TEST>5. can</span><span exclude-if=TEST>can't</span> be used on inlines as well.</p> -<div include-if="CR, ED"> +<div include-if="CR, TEST"> 6. Included, because at least one condition matched. </div> -<div include-if="CR, REC"> +<div include-if="CR, TEST-2"> Excluded, because none of the conditions matched. </div> -<div exclude-if="CR, REC"> +<div exclude-if="CR, TEST-2"> 7. Included, because none of the exclude conditions matched. </div> -<div exclude-if="CR, ED"> +<div exclude-if="CR, TEST"> Excluded because at least one condition matched. </div> diff --git a/tests/conditional001.html b/tests/conditional001.html index a683d9bc02..0d69e3ac53 100644 --- a/tests/conditional001.html +++ b/tests/conditional001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Bikeshed Test File, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: @@ -432,26 +432,26 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <div> <ol> <li data-md> - <p>Included, since status is ED</p> + <p>Included, since status is TEST</p> </ol> </div> <p></p> <ol start="2"> <li data-md> - <p>Included, since status canonicalizes to w3c/ED.</p> + <p>Included, since status canonicalizes to bikeshed/TEST.</p> </ol> <p></p> <hr> <div> <ol start="3"> <li data-md> - <p>Included, since megagroup is wrong.</p> + <p>Included, since org is wrong.</p> </ol> </div> <div> <ol start="4"> <li data-md> - <p>Included, since status is not CR.</p> + <p>Included, since status is not TEST-2.</p> </ol> </div> <p>The attributes <span>5. can</span> be used on inlines as well.</p> diff --git a/tests/conditional002.bs b/tests/conditional002.bs index 6a5097fa7c..66928bb483 100644 --- a/tests/conditional002.bs +++ b/tests/conditional002.bs @@ -1,9 +1,10 @@ <pre class=metadata> Title: Foo +Org: bikeshed Group: test +Status: test Shortname: foo Level: 1 -Status: w3c/ED ED: http://example.com/foo Abstract: Testing support for &lt;if-wrapper>. Editor: Example Editor @@ -12,29 +13,29 @@ Date: 1970-01-01 <if-wrapper>Excluded and an error, since no conditions.</if-wrapper> -<if-wrapper include-if=ED> +<if-wrapper include-if=TEST> <div>1. Included, since the wrapper passes.</div> </if-wrapper> <div> - <if-wrapper include-if=ED>2. Included, since the wrapper passes.</if-wrapper> + <if-wrapper include-if=TEST>2. Included, since the wrapper passes.</if-wrapper> </div> -<if-wrapper include-if=ED> - <if-wrapper include-if=ED> +<if-wrapper include-if=TEST> + <if-wrapper include-if=TEST> <div>3. Stacked wrapper is ok.</div> </if-wrapper> </if-wrapper> -<if-wrapper include-if=ED> +<if-wrapper include-if=TEST> <div>4. Stuff between the wrappers - <if-wrapper include-if=ED> + <if-wrapper include-if=TEST> 5. also shows up fine. </if-wrapper> </div> </if-wrapper> -<if-wrapper exclude-if=ED> +<if-wrapper exclude-if=TEST> Removed, since the wrapper fails. </if-wrapper> diff --git a/tests/conditional002.console.txt b/tests/conditional002.console.txt index 7bd108a7c7..a2c16e4ca9 100644 --- a/tests/conditional002.console.txt +++ b/tests/conditional002.console.txt @@ -1 +1 @@ -LINE 13: <if-wrapper> elements must have an include-if and/or exclude-if attribute. +LINE 14: <if-wrapper> elements must have an include-if and/or exclude-if attribute. diff --git a/tests/conditional002.html b/tests/conditional002.html index 7035a8bca3..c6f7fd877d 100644 --- a/tests/conditional002.html +++ b/tests/conditional002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Bikeshed Test File, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/conditional003.bs b/tests/conditional003.bs index 3c18cbfbf5..9584cf12a6 100644 --- a/tests/conditional003.bs +++ b/tests/conditional003.bs @@ -1,9 +1,9 @@ <pre class=metadata> Title: Foo Group: test +Status: TEST Shortname: foo Level: 1 -Status: w3c/ED ED: http://example.com/foo Abstract: Testing conditionals over boilerplate and text macros. Editor: Example Editor diff --git a/tests/conditional003.html b/tests/conditional003.html index d53b25b732..1d4e07311d 100644 --- a/tests/conditional003.html +++ b/tests/conditional003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Bikeshed Test File, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/css-production-range001.html b/tests/css-production-range001.html index fc2c53b340..fe807feb08 100644 --- a/tests/css-production-range001.html +++ b/tests/css-production-range001.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/dict-type.html b/tests/dict-type.html index 2d54be26a8..14382aef65 100644 --- a/tests/dict-type.html +++ b/tests/dict-type.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/elementdef001.html b/tests/elementdef001.html index 5fe0b31069..93d9744c43 100644 --- a/tests/elementdef001.html +++ b/tests/elementdef001.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/fingerprint001.html b/tests/fingerprint001.html index c524a288c9..b97f43fc77 100644 --- a/tests/fingerprint001.html +++ b/tests/fingerprint001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/fingerprint002.html b/tests/fingerprint002.html index f546b73507..0f32449e42 100644 --- a/tests/fingerprint002.html +++ b/tests/fingerprint002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/fingerprint003.html b/tests/fingerprint003.html index 79b78427ee..228a91b1ee 100644 --- a/tests/fingerprint003.html +++ b/tests/fingerprint003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/fingerprint004.html b/tests/fingerprint004.html index be99e30df8..54e7b051ff 100644 --- a/tests/fingerprint004.html +++ b/tests/fingerprint004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/fingerprint005.html b/tests/fingerprint005.html index f101295444..e8729eeceb 100644 --- a/tests/fingerprint005.html +++ b/tests/fingerprint005.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/fingerprint006.html b/tests/fingerprint006.html index 6664ca92ff..ee3dc5882c 100644 --- a/tests/fingerprint006.html +++ b/tests/fingerprint006.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/force-crossorigin001.html b/tests/force-crossorigin001.html index 42da625fb9..ac20678deb 100644 --- a/tests/force-crossorigin001.html +++ b/tests/force-crossorigin001.html @@ -408,7 +408,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/github/WICG/WebApiDevice/managed_config/index.html b/tests/github/WICG/WebApiDevice/managed_config/index.html index a7861ceb27..901e81d29a 100644 --- a/tests/github/WICG/WebApiDevice/managed_config/index.html +++ b/tests/github/WICG/WebApiDevice/managed_config/index.html @@ -702,7 +702,7 @@ <h1 class="p-name no-ref" id="title">Managed Configuration API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Managed Configuration API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Managed Configuration API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -750,7 +750,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -903,20 +902,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/aom/spec/custom-element-semantics.console.txt b/tests/github/WICG/aom/spec/custom-element-semantics.console.txt index 2f19626d32..d655fe357b 100644 --- a/tests/github/WICG/aom/spec/custom-element-semantics.console.txt +++ b/tests/github/WICG/aom/spec/custom-element-semantics.console.txt @@ -1,7 +1,5 @@ LINK ERROR: No 'idl' refs found for 'createInternals()'. {{createInternals()}} -LINE 310: No 'dfn' refs found for 'reflected' that are marked for export. -<a bs-line-number="310" data-link-type="dfn" data-lt="reflected">reflected</a> LINE ~218: Couldn't find section '#custom-element-definition' in spec 'html': [[HTML#custom-element-definition]] LINE ~218: Couldn't find section '#element-definition' in spec 'html': diff --git a/tests/github/WICG/aom/spec/custom-element-semantics.html b/tests/github/WICG/aom/spec/custom-element-semantics.html index 6f80d987df..c531a706da 100644 --- a/tests/github/WICG/aom/spec/custom-element-semantics.html +++ b/tests/github/WICG/aom/spec/custom-element-semantics.html @@ -705,7 +705,7 @@ <h1 class="p-name no-ref" id="title">Default semantic properties for Custom Elem </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Default semantic properties for Custom Elements Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Default semantic properties for Custom Elements Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -755,7 +755,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -967,7 +966,7 @@ <h2 class="heading settled" data-level="2" id="semantics-precedence"><span class <h3 class="heading settled" data-level="2.1" id="semantics-precedence-intro"><span class="secno">2.1. </span><span class="content">Introduction</span><a class="self-link" href="#semantics-precedence-intro"></a></h3> <p><em>This section is non-normative</em></p> <p>In general, the precedence of semantic properties is that -any ARIA property set directly on the <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#element" id="ref-for-element">Element</a></code> (either via setting an attribute or via the associated <a data-link-type="dfn">reflected</a> property) +any ARIA property set directly on the <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#element" id="ref-for-element">Element</a></code> (either via setting an attribute or via the associated <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflected</a> property) overrides a value for the same property on the <code>Element</code>’s <code class="idl"><a data-link-type="idl" href="#dictdef-elementinternals" id="ref-for-dictdef-elementinternals⑦">ElementInternals</a></code> object, and any ARIA property set either on the <code>Element</code> or the <code class="idl"><a data-link-type="idl" href="#dictdef-elementinternals" id="ref-for-dictdef-elementinternals⑧">ElementInternals</a></code> object @@ -1073,20 +1072,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1126,6 +1111,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="bc8115d9">custom element definition</span> <li><span class="dfn-paneled" id="31559e1b">define(name, constructor, options)</span> <li><span class="dfn-paneled" id="8ed014b2">defined</span> + <li><span class="dfn-paneled" id="5ab7b520">reflect</span> </ul> <li> <a data-link-type="biblio">[HTML-AAM]</a> defines the following terms: @@ -1151,7 +1137,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-html-aam-10">[HTML-AAM-1.0] - <dd>Steve Faulkner; Scott O'Hara. <a href="https://w3c.github.io/html-aam/"><cite>HTML Accessibility API Mappings 1.0</cite></a>. URL: <a href="https://w3c.github.io/html-aam/">https://w3c.github.io/html-aam/</a> + <dd>Scott O'Hara. <a href="https://w3c.github.io/html-aam/"><cite>HTML Accessibility API Mappings 1.0</cite></a>. URL: <a href="https://w3c.github.io/html-aam/">https://w3c.github.io/html-aam/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-webidl">[WEBIDL] @@ -1388,6 +1374,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "31559e1b": {"dfnID":"31559e1b","dfnText":"define(name, constructor, options)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-customelementregistry-define"}],"title":"1.1.1. Defining custom element semantics as part of the custom element definition"},{"refs":[{"id":"ref-for-dom-customelementregistry-define\u2460"},{"id":"ref-for-dom-customelementregistry-define\u2461"}],"title":"1.2. Changes to custom element definition"},{"refs":[{"id":"ref-for-dom-customelementregistry-define\u2462"}],"title":"2.1. Introduction"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#dom-customelementregistry-define"}, "3fca5a9e": {"dfnID":"3fca5a9e","dfnText":"map","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-map"}],"title":"1.1.1. Defining custom element semantics as part of the custom element definition"},{"refs":[{"id":"ref-for-ordered-map\u2460"}],"title":"1.1.2. Defining per-instance custom element semantics"}],"url":"https://infra.spec.whatwg.org/#ordered-map"}, "5889f566": {"dfnID":"5889f566","dfnText":"accessibility tree","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-accessibility-tree"}],"title":"1.1.1. Defining custom element semantics as part of the custom element definition"}],"url":"https://www.w3.org/TR/core-aam-1.1/#dfn-accessibility-tree"}, +"5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"}],"title":"2.1. Introduction"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "7e4580af": {"dfnID":"7e4580af","dfnText":"ElementDefinitionOptions","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdefinitionoptions"},{"id":"ref-for-elementdefinitionoptions\u2460"}],"title":"1.1.1. Defining custom element semantics as part of the custom element definition"},{"refs":[{"id":"ref-for-elementdefinitionoptions\u2461"},{"id":"ref-for-elementdefinitionoptions\u2462"}],"title":"1.2. Changes to custom element definition"},{"refs":[{"id":"ref-for-elementdefinitionoptions\u2463"}],"title":"2. ARIA semantic precedence between ElementDefinitionOptions, ElementInternals and ARIA properties"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#elementdefinitionoptions"}, "81c9c6df": {"dfnID":"81c9c6df","dfnText":"accessible object","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-accessible-object"},{"id":"ref-for-dfn-accessible-object\u2460"}],"title":"1.1.1. Defining custom element semantics as part of the custom element definition"},{"refs":[{"id":"ref-for-dfn-accessible-object\u2461"}],"title":"1.1.2. Defining per-instance custom element semantics"}],"url":"https://www.w3.org/TR/core-aam-1.1/#dfn-accessible-object"}, "87f26218": {"dfnID":"87f26218","dfnText":"AriaAttributes","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-def-ariaattributes"},{"id":"ref-for-idl-def-ariaattributes\u2460"},{"id":"ref-for-idl-def-ariaattributes\u2461"},{"id":"ref-for-idl-def-ariaattributes\u2462"}],"title":"1.2. Changes to custom element definition"}],"url":"https://www.w3.org/TR/wai-aria-1.2/#idl-def-ariaattributes"}, @@ -1795,6 +1782,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#semantic-properties": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"aom-aria","spec":"aom-aria-1","status":"local","text":"semantic properties","type":"dfn","url":"#semantic-properties"}, "https://dom.spec.whatwg.org/#concept-element-custom": {"export":true,"for_":["Element"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"custom","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-element-custom"}, "https://dom.spec.whatwg.org/#element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Element","type":"interface","url":"https://dom.spec.whatwg.org/#element"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"custom element","type":"dfn","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element-definition": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"custom element definition","type":"dfn","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element-definition"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#customelementregistry": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"CustomElementRegistry","type":"interface","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#customelementregistry"}, diff --git a/tests/github/WICG/aom/spec/input-events.html b/tests/github/WICG/aom/spec/input-events.html index 8e7848e414..07757b6282 100644 --- a/tests/github/WICG/aom/spec/input-events.html +++ b/tests/github/WICG/aom/spec/input-events.html @@ -5,8 +5,8 @@ <title>AOM Input Event Types</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://wicg.github.io/aom/spec/input-events.html" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -710,7 +710,7 @@ <h1>AOM Input Event Types</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -754,7 +754,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -898,20 +897,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -978,7 +963,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-uievents">[UIEVENTS] <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents/"><cite>UI Events</cite></a>. URL: <a href="https://w3c.github.io/uievents/">https://w3c.github.io/uievents/</a> <dt id="biblio-uievents-code">[UIEVENTS-CODE] - <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents-code/"><cite>UI Events KeyboardEvent code Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-code/">https://w3c.github.io/uievents-code/</a> + <dd>Travis Leithead; Gary Kacmarcik. <a href="https://w3c.github.io/uievents-code/"><cite>UI Events KeyboardEvent code Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-code/">https://w3c.github.io/uievents-code/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> diff --git a/tests/github/WICG/app-history/spec.console.txt b/tests/github/WICG/app-history/spec.console.txt index dbdcc4f193..cbbfddd957 100644 --- a/tests/github/WICG/app-history/spec.console.txt +++ b/tests/github/WICG/app-history/spec.console.txt @@ -8,13 +8,19 @@ LINE ~509: Multiple possible 'user agent' dfn refs. Arbitrarily chose https://infra.spec.whatwg.org/#user-agent To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:infra; type:dfn; text:user agent -spec:css2; type:dfn; text:user agent +The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). +spec:css2; type:dfn; for:/; text:user agent + https://www.w3.org/TR/CSS21/conform.html#ua + https://www.w3.org/TR/CSS21/conform.html#user-agent [=user agent=] LINE ~517: Multiple possible 'user agent' dfn refs. Arbitrarily chose https://infra.spec.whatwg.org/#user-agent To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:infra; type:dfn; text:user agent -spec:css2; type:dfn; text:user agent +The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). +spec:css2; type:dfn; for:/; text:user agent + https://www.w3.org/TR/CSS21/conform.html#ua + https://www.w3.org/TR/CSS21/conform.html#user-agent [=user agent=] LINE ~607: No 'dfn' refs found for 'entries' with for='['FormData']'. [=FormData/entries=] @@ -25,8 +31,6 @@ spec:html; type:dfn; for:/; text:submit button https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type-submit-state https://html.spec.whatwg.org/multipage/forms.html#concept-submit-button <a bs-line-number="688" data-link-spec="HTML" data-link-type="dfn" data-lt="submit button">submit button</a> -LINE 708: No 'dfn' refs found for 'current entry' with spec 'html'. -<a bs-line-number="708" data-link-spec="HTML" data-link-type="dfn" data-lt="current entry">current entry</a> LINE ~720: No 'dfn' refs found for 'active document' with for='None'. [=active document=] LINE ~720: No 'dfn' refs found for 'source browsing context'. diff --git a/tests/github/WICG/app-history/spec.html b/tests/github/WICG/app-history/spec.html index 24faa33944..60efa2ac0c 100644 --- a/tests/github/WICG/app-history/spec.html +++ b/tests/github/WICG/app-history/spec.html @@ -811,7 +811,7 @@ <h1 class="p-name no-ref" id="title">App History API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the App History API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the App History API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1242,7 +1242,7 @@ <h2 class="heading settled" data-level="2" id="navigate-event"><span class="secn and the following rejection steps given reason <var>rejectionReason</var>: <ol> <li data-md> - <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire①">Fire an event</a> named <code class="idl"><a data-link-type="idl" href="#eventdef-apphistory-navigateerror" id="ref-for-eventdef-apphistory-navigateerror①">navigateerror</a></code> at <var>appHistory</var> using <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#errorevent" id="ref-for-errorevent">ErrorEvent</a></code>, with <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-error" id="ref-for-dom-errorevent-error">error</a></code> initialized to <var>rejectionReason</var>, and <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-message" id="ref-for-dom-errorevent-message">message</a></code>, <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-filename" id="ref-for-dom-errorevent-filename">filename</a></code>, <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-lineno" id="ref-for-dom-errorevent-lineno">lineno</a></code>, and <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-colno" id="ref-for-dom-errorevent-colno">colno</a></code> initialized to appropriate values that can be extracted from <var>rejectionReason</var> in the same underspecified way the user agent typically does for the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#report-the-exception" id="ref-for-report-the-exception">report an exception</a> algorithm.</p> + <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire①">Fire an event</a> named <code class="idl"><a data-link-type="idl" href="#eventdef-apphistory-navigateerror" id="ref-for-eventdef-apphistory-navigateerror①">navigateerror</a></code> at <var>appHistory</var> using <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#errorevent" id="ref-for-errorevent">ErrorEvent</a></code>, with <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-error" id="ref-for-dom-errorevent-error">error</a></code> initialized to <var>rejectionReason</var>, and <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-message" id="ref-for-dom-errorevent-message">message</a></code>, <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-filename" id="ref-for-dom-errorevent-filename">filename</a></code>, <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-lineno" id="ref-for-dom-errorevent-lineno">lineno</a></code>, and <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-errorevent-colno" id="ref-for-dom-errorevent-colno">colno</a></code> initialized to appropriate values that can be extracted from <var>rejectionReason</var> in the same underspecified way the user agent typically does for the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#report-an-exception" id="ref-for-report-an-exception">report an exception</a> algorithm.</p> </ol> </ol> <p class="note" role="note">If <var>event</var>’s <a data-link-type="dfn" href="#apphistorynavigateevent-navigation-action-promise" id="ref-for-apphistorynavigateevent-navigation-action-promise④">navigation action promise</a> is non-null, then <code class="idl"><a data-link-type="idl" href="#dom-apphistorynavigateevent-respondwith" id="ref-for-dom-apphistorynavigateevent-respondwith③">respondWith()</a></code> was called and so we’re performing a same-document navigation, for which we want to fire <code class="idl"><a data-link-type="idl" href="#eventdef-apphistory-navigatesuccess" id="ref-for-eventdef-apphistory-navigatesuccess②">navigatesuccess</a></code> or <code class="idl"><a data-link-type="idl" href="#eventdef-apphistory-navigateerror" id="ref-for-eventdef-apphistory-navigateerror②">navigateerror</a></code> events as appropriate. Otherwise, if the navigation is same-document and was not canceled, we still fire <code class="idl"><a data-link-type="idl" href="#eventdef-apphistory-navigatesuccess" id="ref-for-eventdef-apphistory-navigatesuccess③">navigatesuccess</a></code> after a microtask. </p> @@ -1441,7 +1441,7 @@ <h3 class="heading settled" data-level="4.2" id="user-initiated-patches"><span c <h3 class="heading settled" data-level="4.3" id="navigate-algorithm-patches"><span class="secno">4.3. </span><span class="content">Navigation algorithm updates</span><a class="self-link" href="#navigate-algorithm-patches"></a></h3> <p>With the above infrastructure in place, we can actually fire and handle the <code class="idl"><a data-link-type="idl" href="#eventdef-apphistory-navigate" id="ref-for-eventdef-apphistory-navigate④">navigate</a></code> event in the following locations:</p> <div class="algorithm" data-algorithm="shared history push/replace steps"> - Modify the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push/replace-state-steps" id="ref-for-shared-history-push/replace-state-steps">shared history push/replace state steps</a> by inserting the following steps right before the step that runs the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#url-and-history-update-steps" id="ref-for-url-and-history-update-steps②">URL and history update steps</a>. + Modify the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push%2Freplace-state-steps" id="ref-for-shared-history-push%2Freplace-state-steps">shared history push/replace state steps</a> by inserting the following steps right before the step that runs the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#url-and-history-update-steps" id="ref-for-url-and-history-update-steps②">URL and history update steps</a>. <ol> <li data-md> <p>Let <var>appHistory</var> be <var>history</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global①⑧">relevant global object</a>'s <a data-link-type="dfn" href="#window-app-history" id="ref-for-window-app-history①">app history</a>.</p> @@ -1457,7 +1457,7 @@ <h3 class="heading settled" data-level="4.3" id="navigate-algorithm-patches"><sp Modify the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate-fragid" id="ref-for-navigate-fragid②">navigate to a fragment</a> algorithm by prepending the following steps. Recall that per <a href="#user-initiated-patches">§ 4.2 Browser UI/user-initiated patches</a> we have introduced a <var>userInvolvement</var> argument. <ol> <li data-md> - <p>Let <var>appHistory</var> be the <a data-link-type="dfn">current entry</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/history.html#she-document" id="ref-for-she-document①">document</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global①⑨">relevant global object</a>'s <a data-link-type="dfn" href="#window-app-history" id="ref-for-window-app-history②">app history</a>.</p> + <p>Let <var>appHistory</var> be the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry" id="ref-for-navigation-current-entry">current entry</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/history.html#she-document" id="ref-for-she-document①">document</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global①⑨">relevant global object</a>'s <a data-link-type="dfn" href="#window-app-history" id="ref-for-window-app-history②">app history</a>.</p> <li data-md> <p>Let <var>navigationType</var> be "<code class="idl"><a data-link-type="idl" href="#dom-apphistorynavigationtype-push" id="ref-for-dom-apphistorynavigationtype-push⑥">push</a></code>" if <var>historyHandling</var> is "<a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#hh-default" id="ref-for-hh-default"><code>default</code></a>"; otherwise, "<code class="idl"><a data-link-type="idl" href="#dom-apphistorynavigationtype-replace" id="ref-for-dom-apphistorynavigationtype-replace⑤">replace</a></code>".</p> <li data-md> @@ -1712,7 +1712,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6d88ab2e">browsing context <small>(for Window)</small></span> <li><span class="dfn-paneled" id="bfff6250">button</span> <li><span class="dfn-paneled" id="527c3ddf">colno</span> - <li><span class="dfn-paneled" id="a7510263">current entry</span> + <li><span class="dfn-paneled" id="cff2c60f">current entry</span> + <li><span class="dfn-paneled" id="a7510263">current entry <small>(for session history)</small></span> <li><span class="dfn-paneled" id="a8ea6c66">default</span> <li><span class="dfn-paneled" id="04e0443f">document <small>(for Window)</small></span> <li><span class="dfn-paneled" id="f3d97e87">document <small>(for session history entry)</small></span> @@ -1742,18 +1743,18 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e99bd18e">relevant global object</span> <li><span class="dfn-paneled" id="5991ccfb">relevant realm</span> <li><span class="dfn-paneled" id="c75feb22">replace</span> - <li><span class="dfn-paneled" id="385fc270">report an exception</span> + <li><span class="dfn-paneled" id="560275c7">report an exception</span> <li><span class="dfn-paneled" id="7393da89">same origin</span> <li><span class="dfn-paneled" id="521818b9">same origin-domain</span> <li><span class="dfn-paneled" id="078e5c59">serialized state</span> <li><span class="dfn-paneled" id="316ad5bf">serializeddata</span> <li><span class="dfn-paneled" id="48093925">session history</span> <li><span class="dfn-paneled" id="90c6a866">session history entry</span> - <li><span class="dfn-paneled" id="bda66ea0">shared history push/replace state steps</span> + <li><span class="dfn-paneled" id="5a8390d7">shared history push/replace state steps</span> <li><span class="dfn-paneled" id="d9fec0a7">state</span> + <li><span class="dfn-paneled" id="332f81b5">submit</span> <li><span class="dfn-paneled" id="c26b4f17">submit as entity body</span> <li><span class="dfn-paneled" id="967921f0">submit button</span> - <li><span class="dfn-paneled" id="6f89ecfa">submitted</span> <li><span class="dfn-paneled" id="deb71015">traverse the history by a delta</span> <li><span class="dfn-paneled" id="0cacde69">url</span> <li><span class="dfn-paneled" id="220e841a">url and history update steps</span> @@ -2127,10 +2128,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "2e9f6464": {"dfnID":"2e9f6464","dfnText":"canceled flag","external":true,"refSections":[{"refs":[{"id":"ref-for-canceled-flag"},{"id":"ref-for-canceled-flag\u2460"}],"title":"2. The navigate event"}],"url":"https://dom.spec.whatwg.org/#canceled-flag"}, "2f8afbfe": {"dfnID":"2f8afbfe","dfnText":"ArrayBuffer","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-ArrayBuffer"}],"title":"3. App history entries"}],"url":"https://webidl.spec.whatwg.org/#idl-ArrayBuffer"}, "316ad5bf": {"dfnID":"316ad5bf","dfnText":"serializeddata","external":true,"refSections":[{"refs":[{"id":"ref-for-uhus-serializeddata"}],"title":"2. The navigate event"}],"url":"https://html.spec.whatwg.org/multipage/history.html#uhus-serializeddata"}, +"332f81b5": {"dfnID":"332f81b5","dfnText":"submit","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-form-submit"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-concept-form-submit\u2460"},{"id":"ref-for-concept-form-submit\u2461"},{"id":"ref-for-concept-form-submit\u2462"},{"id":"ref-for-concept-form-submit\u2463"},{"id":"ref-for-concept-form-submit\u2464"},{"id":"ref-for-concept-form-submit\u2465"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit"}, "3349d69f": {"dfnID":"3349d69f","dfnText":"associated document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-window"},{"id":"ref-for-concept-document-window\u2460"},{"id":"ref-for-concept-document-window\u2461"},{"id":"ref-for-concept-document-window\u2462"},{"id":"ref-for-concept-document-window\u2463"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-concept-document-window\u2464"},{"id":"ref-for-concept-document-window\u2465"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-concept-document-window\u2466"},{"id":"ref-for-concept-document-window\u2467"},{"id":"ref-for-concept-document-window\u2468"},{"id":"ref-for-concept-document-window\u2460\u24ea"},{"id":"ref-for-concept-document-window\u2460\u2460"},{"id":"ref-for-concept-document-window\u2460\u2461"},{"id":"ref-for-concept-document-window\u2460\u2462"}],"title":"3. App history entries"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window"}, "347e8fe9": {"dfnID":"347e8fe9","dfnText":"url","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-url"},{"id":"ref-for-concept-document-url\u2460"}],"title":"2. The navigate event"}],"url":"https://dom.spec.whatwg.org/#concept-document-url"}, "37b5f0f9": {"dfnID":"37b5f0f9","dfnText":"historyhandling","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-hh"}],"title":"4.1. Form submission patches"}],"url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-hh"}, -"385fc270": {"dfnID":"385fc270","dfnText":"report an exception","external":true,"refSections":[{"refs":[{"id":"ref-for-report-the-exception"}],"title":"2. The navigate event"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#report-the-exception"}, "3ab2ec8b": {"dfnID":"3ab2ec8b","dfnText":"query","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-query"}],"title":"2. The navigate event"}],"url":"https://url.spec.whatwg.org/#concept-url-query"}, "3b2ff63e": {"dfnID":"3b2ff63e","dfnText":"browsing context (for Document)","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-bc"}],"title":"1. The AppHistory class"}],"url":"https://html.spec.whatwg.org/multipage/document-sequences.html#concept-document-bc"}, "4013a022": {"dfnID":"4013a022","dfnText":"this","external":true,"refSections":[{"refs":[{"id":"ref-for-this"},{"id":"ref-for-this\u2460"},{"id":"ref-for-this\u2461"},{"id":"ref-for-this\u2462"},{"id":"ref-for-this\u2463"},{"id":"ref-for-this\u2464"},{"id":"ref-for-this\u2465"},{"id":"ref-for-this\u2466"},{"id":"ref-for-this\u2467"},{"id":"ref-for-this\u2468"},{"id":"ref-for-this\u2460\u24ea"},{"id":"ref-for-this\u2460\u2460"},{"id":"ref-for-this\u2460\u2461"},{"id":"ref-for-this\u2460\u2462"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-this\u2460\u2463"},{"id":"ref-for-this\u2460\u2464"},{"id":"ref-for-this\u2460\u2465"},{"id":"ref-for-this\u2460\u2466"},{"id":"ref-for-this\u2460\u2467"},{"id":"ref-for-this\u2460\u2468"},{"id":"ref-for-this\u2461\u24ea"},{"id":"ref-for-this\u2461\u2460"},{"id":"ref-for-this\u2461\u2461"},{"id":"ref-for-this\u2461\u2462"},{"id":"ref-for-this\u2461\u2463"},{"id":"ref-for-this\u2461\u2464"},{"id":"ref-for-this\u2461\u2465"},{"id":"ref-for-this\u2461\u2466"},{"id":"ref-for-this\u2461\u2467"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-this\u2461\u2468"},{"id":"ref-for-this\u2462\u24ea"},{"id":"ref-for-this\u2462\u2460"},{"id":"ref-for-this\u2462\u2461"},{"id":"ref-for-this\u2462\u2462"},{"id":"ref-for-this\u2462\u2463"},{"id":"ref-for-this\u2462\u2464"},{"id":"ref-for-this\u2462\u2465"},{"id":"ref-for-this\u2462\u2466"},{"id":"ref-for-this\u2462\u2467"},{"id":"ref-for-this\u2462\u2468"},{"id":"ref-for-this\u2463\u24ea"},{"id":"ref-for-this\u2463\u2460"},{"id":"ref-for-this\u2463\u2461"}],"title":"3. App history entries"}],"url":"https://webidl.spec.whatwg.org/#this"}, @@ -2143,9 +2144,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "53275e46": {"dfnID":"53275e46","dfnText":"append","external":true,"refSections":[{"refs":[{"id":"ref-for-list-append"},{"id":"ref-for-list-append\u2460"},{"id":"ref-for-list-append\u2461"},{"id":"ref-for-list-append\u2462"}],"title":"1. The AppHistory class"}],"url":"https://infra.spec.whatwg.org/#list-append"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"},{"id":"ref-for-idl-boolean\u2460"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-idl-boolean\u2461"},{"id":"ref-for-idl-boolean\u2462"},{"id":"ref-for-idl-boolean\u2463"},{"id":"ref-for-idl-boolean\u2464"},{"id":"ref-for-idl-boolean\u2465"},{"id":"ref-for-idl-boolean\u2466"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-idl-boolean\u2467"}],"title":"3. App history entries"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, "5442ea33": {"dfnID":"5442ea33","dfnText":"url serializer","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-serializer"}],"title":"3. App history entries"}],"url":"https://url.spec.whatwg.org/#concept-url-serializer"}, +"560275c7": {"dfnID":"560275c7","dfnText":"report an exception","external":true,"refSections":[{"refs":[{"id":"ref-for-report-an-exception"}],"title":"2. The navigate event"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#report-an-exception"}, "56c301bd": {"dfnID":"56c301bd","dfnText":"entry update","external":true,"refSections":[{"refs":[{"id":"ref-for-hh-entry-update"},{"id":"ref-for-hh-entry-update\u2460"}],"title":"4.3. Navigation algorithm updates"}],"url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#hh-entry-update"}, "56f81a8e": {"dfnID":"56f81a8e","dfnText":"new","external":true,"refSections":[{"refs":[{"id":"ref-for-new"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-new\u2460"}],"title":"2. The navigate event"}],"url":"https://webidl.spec.whatwg.org/#new"}, "5991ccfb": {"dfnID":"5991ccfb","dfnText":"relevant realm","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-relevant-realm"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-concept-relevant-realm\u2460"}],"title":"2. The navigate event"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-realm"}, +"5a8390d7": {"dfnID":"5a8390d7","dfnText":"shared history push/replace state steps","external":true,"refSections":[{"refs":[{"id":"ref-for-shared-history-push%2Freplace-state-steps"}],"title":"4.3. Navigation algorithm updates"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push%2Freplace-state-steps"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"},{"id":"ref-for-window\u2460"},{"id":"ref-for-window\u2461"},{"id":"ref-for-window\u2462"}],"title":"1. The AppHistory class"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"},{"id":"ref-for-idl-undefined\u2460"}],"title":"2. The navigate event"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "5fd23811": {"dfnID":"5fd23811","dfnText":"fire an event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event-fire"},{"id":"ref-for-concept-event-fire\u2460"}],"title":"2. The navigate event"}],"url":"https://dom.spec.whatwg.org/#concept-event-fire"}, @@ -2157,7 +2160,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"},{"id":"ref-for-idl-any\u2460"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-idl-any\u2461"}],"title":"3. App history entries"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "6d19ac93": {"dfnID":"6d19ac93","dfnText":"user agent","external":true,"refSections":[{"refs":[{"id":"ref-for-user-agent"},{"id":"ref-for-user-agent\u2460"}],"title":"3. App history entries"}],"url":"https://infra.spec.whatwg.org/#user-agent"}, "6d88ab2e": {"dfnID":"6d88ab2e","dfnText":"browsing context (for Window)","external":true,"refSections":[{"refs":[{"id":"ref-for-window-bc"},{"id":"ref-for-window-bc\u2460"},{"id":"ref-for-window-bc\u2461"}],"title":"2. The navigate event"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-bc"}, -"6f89ecfa": {"dfnID":"6f89ecfa","dfnText":"submitted","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-form-submit"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-concept-form-submit\u2460"},{"id":"ref-for-concept-form-submit\u2461"},{"id":"ref-for-concept-form-submit\u2462"},{"id":"ref-for-concept-form-submit\u2463"},{"id":"ref-for-concept-form-submit\u2464"},{"id":"ref-for-concept-form-submit\u2465"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit"}, "6fbdf145": {"dfnID":"6fbdf145","dfnText":"equal","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-equals"}],"title":"2. The navigate event"}],"url":"https://url.spec.whatwg.org/#concept-url-equals"}, "7393da89": {"dfnID":"7393da89","dfnText":"same origin","external":true,"refSections":[{"refs":[{"id":"ref-for-same-origin"},{"id":"ref-for-same-origin\u2460"},{"id":"ref-for-same-origin\u2461"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-same-origin\u2462"},{"id":"ref-for-same-origin\u2463"}],"title":"2. The navigate event"},{"refs":[{"id":"ref-for-same-origin\u2464"}],"title":"5.2. Carrying over the app history key"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#same-origin"}, "750a2f08": {"dfnID":"750a2f08","dfnText":"react","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-perform-steps-once-promise-is-settled"}],"title":"2. The navigate event"}],"url":"https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled"}, @@ -2185,7 +2187,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "9d386f55": {"dfnID":"9d386f55","dfnText":"event handler event type","external":true,"refSections":[{"refs":[{"id":"ref-for-event-handler-event-type"},{"id":"ref-for-event-handler-event-type\u2460"}],"title":"1. The AppHistory class"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type"}, "a1a807e5": {"dfnID":"a1a807e5","dfnText":"area","external":true,"refSections":[{"refs":[{"id":"ref-for-the-area-element"},{"id":"ref-for-the-area-element\u2460"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://html.spec.whatwg.org/multipage/image-maps.html#the-area-element"}, "a72449dd": {"dfnID":"a72449dd","dfnText":"in parallel","external":true,"refSections":[{"refs":[{"id":"ref-for-in-parallel"}],"title":"4.1. Form submission patches"},{"refs":[{"id":"ref-for-in-parallel\u2460"}],"title":"4.3. Navigation algorithm updates"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, -"a7510263": {"dfnID":"a7510263","dfnText":"current entry","external":true,"refSections":[{"refs":[{"id":"ref-for-current-entry"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-current-entry\u2460"},{"id":"ref-for-current-entry\u2461"}],"title":"5.2. Carrying over the app history key"},{"refs":[{"id":"ref-for-current-entry\u2462"}],"title":"5.3. Tracking the origin member"}],"url":"https://html.spec.whatwg.org/multipage/history.html#current-entry"}, +"a7510263": {"dfnID":"a7510263","dfnText":"current entry (for session history)","external":true,"refSections":[{"refs":[{"id":"ref-for-current-entry"}],"title":"1. The AppHistory class"},{"refs":[{"id":"ref-for-current-entry\u2460"},{"id":"ref-for-current-entry\u2461"}],"title":"5.2. Carrying over the app history key"},{"refs":[{"id":"ref-for-current-entry\u2462"}],"title":"5.3. Tracking the origin member"}],"url":"https://html.spec.whatwg.org/multipage/history.html#current-entry"}, "a8ea6c66": {"dfnID":"a8ea6c66","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-hh-default"},{"id":"ref-for-hh-default\u2460"}],"title":"4.3. Navigation algorithm updates"},{"refs":[{"id":"ref-for-hh-default\u2461"}],"title":"5.3. Tracking the origin member"}],"url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#hh-default"}, "aa8d681c": {"dfnID":"aa8d681c","dfnText":"exclude fragments","external":true,"refSections":[{"refs":[{"id":"ref-for-url-equals-exclude-fragments"}],"title":"2. The navigate event"}],"url":"https://url.spec.whatwg.org/#url-equals-exclude-fragments"}, "ae8def21": {"dfnID":"ae8def21","dfnText":"contain","external":true,"refSections":[{"refs":[{"id":"ref-for-list-contain"}],"title":"1. The AppHistory class"}],"url":"https://infra.spec.whatwg.org/#list-contain"}, @@ -2202,7 +2204,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "apphistorynavigateevent-destination-url": {"dfnID":"apphistorynavigateevent-destination-url","dfnText":"destination URL","external":false,"refSections":[{"refs":[{"id":"ref-for-apphistorynavigateevent-destination-url"},{"id":"ref-for-apphistorynavigateevent-destination-url\u2460"}],"title":"2. The navigate event"}],"url":"#apphistorynavigateevent-destination-url"}, "apphistorynavigateevent-navigation-action-promise": {"dfnID":"apphistorynavigateevent-navigation-action-promise","dfnText":"navigation action promise","external":false,"refSections":[{"refs":[{"id":"ref-for-apphistorynavigateevent-navigation-action-promise"},{"id":"ref-for-apphistorynavigateevent-navigation-action-promise\u2460"},{"id":"ref-for-apphistorynavigateevent-navigation-action-promise\u2461"},{"id":"ref-for-apphistorynavigateevent-navigation-action-promise\u2462"},{"id":"ref-for-apphistorynavigateevent-navigation-action-promise\u2463"}],"title":"2. The navigate event"}],"url":"#apphistorynavigateevent-navigation-action-promise"}, "b0d7f3c3": {"dfnID":"b0d7f3c3","dfnText":"USVString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-USVString"}],"title":"3. App history entries"}],"url":"https://webidl.spec.whatwg.org/#idl-USVString"}, -"bda66ea0": {"dfnID":"bda66ea0","dfnText":"shared history push/replace state steps","external":true,"refSections":[{"refs":[{"id":"ref-for-shared-history-push/replace-state-steps"}],"title":"4.3. Navigation algorithm updates"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push/replace-state-steps"}, "bdbd19d1": {"dfnID":"bdbd19d1","dfnText":"Promise","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-promise"},{"id":"ref-for-idl-promise\u2460"}],"title":"2. The navigate event"}],"url":"https://webidl.spec.whatwg.org/#idl-promise"}, "bec14ad5": {"dfnID":"bec14ad5","dfnText":"activation behavior","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget-activation-behavior"},{"id":"ref-for-eventtarget-activation-behavior\u2460"},{"id":"ref-for-eventtarget-activation-behavior\u2461"},{"id":"ref-for-eventtarget-activation-behavior\u2462"},{"id":"ref-for-eventtarget-activation-behavior\u2463"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://dom.spec.whatwg.org/#eventtarget-activation-behavior"}, "bfff6250": {"dfnID":"bfff6250","dfnText":"button","external":true,"refSections":[{"refs":[{"id":"ref-for-the-button-element"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://html.spec.whatwg.org/multipage/form-elements.html#the-button-element"}, @@ -2215,6 +2216,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "c88f3887": {"dfnID":"c88f3887","dfnText":"item","external":true,"refSections":[{"refs":[{"id":"ref-for-struct-item"}],"title":"5.1. New session history entry items"}],"url":"https://infra.spec.whatwg.org/#struct-item"}, "cc84e68c": {"dfnID":"cc84e68c","dfnText":"sec-fetch-site","external":true,"refSections":[{"refs":[{"id":"ref-for-http-headerdef-sec-fetch-site"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://w3c.github.io/webappsec-fetch-metadata/#http-headerdef-sec-fetch-site"}, "ccfe986b": {"dfnID":"ccfe986b","dfnText":"ErrorEvent","external":true,"refSections":[{"refs":[{"id":"ref-for-errorevent"}],"title":"2. The navigate event"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#errorevent"}, +"cff2c60f": {"dfnID":"cff2c60f","dfnText":"current entry","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-current-entry"}],"title":"4.3. Navigation algorithm updates"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry"}, "d4b32370": {"dfnID":"d4b32370","dfnText":"generate a random uuid","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-generate-a-random-uuid"},{"id":"ref-for-dfn-generate-a-random-uuid\u2460"}],"title":"5.1. New session history entry items"}],"url":"https://wicg.github.io/uuid/#dfn-generate-a-random-uuid"}, "d7d642a2": {"dfnID":"d7d642a2","dfnText":"input","external":true,"refSections":[{"refs":[{"id":"ref-for-the-input-element"}],"title":"4.2. Browser UI/user-initiated patches"}],"url":"https://html.spec.whatwg.org/multipage/input.html#the-input-element"}, "d9fec0a7": {"dfnID":"d9fec0a7","dfnText":"state","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-history-state"},{"id":"ref-for-dom-history-state\u2460"}],"title":"3. App history entries"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-state"}, @@ -2772,7 +2774,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#concept-document-bc": {"export":true,"for_":["Document"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#concept-document-bc"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active": {"export":true,"for_":["Document"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"fully active","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active"}, -"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"submitted","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit"}, +"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"submit","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-form-submit"}, "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#plan-to-navigate": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"plan to navigate","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#plan-to-navigate"}, "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submit-body": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"submit as entity body","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submit-body"}, "https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type-submit-state": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"submit button","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type-submit-state"}, @@ -2796,7 +2798,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"associated document","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-document-2": {"export":true,"for_":["Window"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"document","type":"attribute","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-document-2"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-state": {"export":true,"for_":["History"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"state","type":"attribute","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-state"}, -"https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push/replace-state-steps": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"shared history push/replace state steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push/replace-state-steps"}, +"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"current entry","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry"}, +"https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push%2Freplace-state-steps": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"shared history push/replace state steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#shared-history-push%2Freplace-state-steps"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-bc": {"export":true,"for_":["Window"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window-bc"}, "https://html.spec.whatwg.org/multipage/structured-data.html#structureddeserialize": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"StructuredDeserialize","type":"abstract-op","url":"https://html.spec.whatwg.org/multipage/structured-data.html#structureddeserialize"}, @@ -2813,7 +2816,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event handler idl attribute","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes"}, "https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event handler","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers"}, "https://html.spec.whatwg.org/multipage/webappapis.html#eventhandler": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"EventHandler","type":"typedef","url":"https://html.spec.whatwg.org/multipage/webappapis.html#eventhandler"}, -"https://html.spec.whatwg.org/multipage/webappapis.html#report-the-exception": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"report an exception","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#report-the-exception"}, +"https://html.spec.whatwg.org/multipage/webappapis.html#report-an-exception": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"report an exception","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#report-an-exception"}, "https://infra.spec.whatwg.org/#assert": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"assert","type":"dfn","url":"https://infra.spec.whatwg.org/#assert"}, "https://infra.spec.whatwg.org/#iteration-break": {"export":true,"for_":["iteration"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"break","type":"dfn","url":"https://infra.spec.whatwg.org/#iteration-break"}, "https://infra.spec.whatwg.org/#list": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"list","type":"dfn","url":"https://infra.spec.whatwg.org/#list"}, diff --git a/tests/github/WICG/background-fetch/index.html b/tests/github/WICG/background-fetch/index.html index 7426325a87..f5b158f365 100644 --- a/tests/github/WICG/background-fetch/index.html +++ b/tests/github/WICG/background-fetch/index.html @@ -1027,7 +1027,7 @@ <h1 class="p-name no-ref" id="title">Background Fetch</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Background Fetch Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Background Fetch Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1120,7 +1120,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -2534,20 +2533,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3105,7 +3090,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="background-fetch-manager-fetch"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BackgroundFetchManager/fetch" title="The fetch() method of the BackgroundFetchManager interface returns a Promise that resolves with a BackgroundFetchRegistration object for a supplied array of URLs and Request objects.">BackgroundFetchManager/fetch</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BackgroundFetchManager/fetch" title="The fetch() method of the BackgroundFetchManager interface initiates a background fetch operation, given one or more URLs or Request objects.">BackgroundFetchManager/fetch</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> @@ -3470,6 +3455,86 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerglobalscope-onbackgroundfetchabort"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchabort_event" title="The backgroundfetchabort event of the ServiceWorkerGlobalScope interface is fired when the user or the app itself cancels a background fetch operation.">ServiceWorkerGlobalScope/backgroundfetchabort_event</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerglobalscope-onbackgroundfetchclick"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchclick_event" title="The backgroundfetchclick event of the ServiceWorkerGlobalScope interface is fired when the user clicks on the UI that the browser provides to show the user the progress of the background fetch operation.">ServiceWorkerGlobalScope/backgroundfetchclick_event</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerglobalscope-onbackgroundfetchfail"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchfail_event" title="The backgroundfetchfail event of the ServiceWorkerGlobalScope interface is fired when a background fetch operation has failed: that is, when at least one network request in the fetch has failed to complete successfully.">ServiceWorkerGlobalScope/backgroundfetchfail_event</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerglobalscope-onbackgroundfetchsuccess"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/backgroundfetchsuccess_event" title="The backgroundfetchsuccess event of the ServiceWorkerGlobalScope interface is fired when a background fetch operation has completed successfully: that is, when all network requests in the fetch have completed successfully.">ServiceWorkerGlobalScope/backgroundfetchsuccess_event</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerregistration-backgroundfetch"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/backgroundFetch" title="The backgroundFetch property of the ServiceWorkerRegistration interface returns a reference to a BackgroundFetchManager object, which can be used to initiate background fetch operations.">ServiceWorkerRegistration/backgroundFetch</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } diff --git a/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html b/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html index f6a8b1d0e4..9cdc35171e 100644 --- a/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html +++ b/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html @@ -970,7 +970,7 @@ <h1 class="p-name no-ref" id="title">Web Periodic Background Synchronization</h1 </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Periodic Background Synchronization Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Periodic Background Synchronization Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1038,7 +1038,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1453,20 +1452,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1654,7 +1639,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1670,7 +1655,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1686,7 +1671,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -1715,7 +1700,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1731,7 +1716,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1747,7 +1732,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1763,7 +1748,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> diff --git a/tests/github/WICG/background-sync/spec/index.html b/tests/github/WICG/background-sync/spec/index.html index 00f8c54ce5..391601db9e 100644 --- a/tests/github/WICG/background-sync/spec/index.html +++ b/tests/github/WICG/background-sync/spec/index.html @@ -927,7 +927,7 @@ <h1 class="p-name no-ref" id="title">Web Background Synchronization</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Background Synchronization Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Background Synchronization Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -971,7 +971,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1246,20 +1245,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1523,7 +1508,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-syncmanager-register"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SyncManager/register" title="The SyncManager.register method of the SyncManager interface returns a Promise that resolves to a SyncRegistration instance.">SyncManager/register</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SyncManager/register" title="The SyncManager.register method of the SyncManager interface registers a synchronization event, triggering a sync event inside the associated service worker as soon as network connectivity is available.">SyncManager/register</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> diff --git a/tests/github/WICG/client-hints-infrastructure/index.html b/tests/github/WICG/client-hints-infrastructure/index.html index f64b867668..2d3a7175cf 100644 --- a/tests/github/WICG/client-hints-infrastructure/index.html +++ b/tests/github/WICG/client-hints-infrastructure/index.html @@ -580,7 +580,7 @@ <h1 class="p-name no-ref" id="title">Client Hints Infrastructure</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Client Hints Infrastructure Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Client Hints Infrastructure Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -638,7 +638,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1004,20 +1003,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/compression/index.html b/tests/github/WICG/compression/index.html index 6d35a60efd..9b2ee757c0 100644 --- a/tests/github/WICG/compression/index.html +++ b/tests/github/WICG/compression/index.html @@ -927,7 +927,7 @@ <h1 class="p-name no-ref" id="title">Compression Streams</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Compression Streams Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Compression Streams Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1268,7 +1268,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-rfc7230">[RFC7230] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9112"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9112">https://www.rfc-editor.org/rfc/rfc9112</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9112.html"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9112.html">https://httpwg.org/specs/rfc9112.html</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed"><c- g>Exposed</c-></a>=(<c- n>Window</c->,<c- n>Worker</c->)] @@ -1285,12 +1285,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </pre> <details class="mdn-anno unpositioned" data-anno-for="dom-compressionstream-compressionstream"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream/CompressionStream" title="The CompressionStream() constructor creates a new CompressionStream object which compresses a stream of data.">CompressionStream/CompressionStream</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -1303,12 +1303,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="compression-stream"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream" title="The CompressionStream interface of the Compression Streams API is an API for compressing a stream of data.">CompressionStream</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -1321,12 +1321,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-decompressionstream-decompressionstream"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream/DecompressionStream" title="The DecompressionStream() constructor creates a new DecompressionStream object which decompresses a stream of data.">DecompressionStream/DecompressionStream</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -1339,12 +1339,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="decompression-stream"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream" title="The DecompressionStream interface of the Compression Streams API is an API for decompressing a stream of data.">DecompressionStream</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> diff --git a/tests/github/WICG/construct-stylesheets/index.html b/tests/github/WICG/construct-stylesheets/index.html index 57481cd089..2856d3233b 100644 --- a/tests/github/WICG/construct-stylesheets/index.html +++ b/tests/github/WICG/construct-stylesheets/index.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2189,8 +2190,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. +the editors have made this specification available under the <a href="https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, +which is available at https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> <hr title="Separator for header"> </div> @@ -2350,7 +2351,7 @@ <h2 class="heading settled" data-level="4" id="modifying-constructed-stylesheets <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel" id="ref-for-in-parallel">In parallel</a>, do these steps:</p> <ol> <li data-md> - <p>Let <var>rules</var> be the result of running <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules" id="ref-for-parse-a-list-of-rules">parse a list of rules</a> from <var>text</var>. If <var>rules</var> is not a list of rules (i.e. an error occurred during parsing), set <var>rules</var> to an empty list.</p> + <p>Let <var>rules</var> be the result of running <a data-link-type="dfn" href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules" id="ref-for-parse-a-list-of-rules">parse a list of rules</a> from <var>text</var>. If <var>rules</var> is not a list of rules (i.e. an error occurred during parsing), set <var>rules</var> to an empty list.</p> <li data-md> <p>Wait for loading of <a class="css" data-link-type="at-rule" href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import" id="ref-for-at-ruledef-import①">@import</a> rules in <var>rules</var> and any nested <a class="css" data-link-type="at-rule" href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import" id="ref-for-at-ruledef-import②">@import</a>s from those rules (and so on).</p> <ul> @@ -2389,7 +2390,7 @@ <h2 class="heading settled" data-level="4" id="modifying-constructed-stylesheets <li data-md> <p>If <var>sheet</var>’s <a data-link-type="dfn" href="#cssstylesheet-constructed-flag" id="ref-for-cssstylesheet-constructed-flag⑦">constructed flag</a> is not set, or <var>sheet</var>’s <a data-link-type="dfn" href="#cssstylesheet-disallow-modification-flag" id="ref-for-cssstylesheet-disallow-modification-flag⑦">disallow modification flag</a> is set, throw a "<code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror④">NotAllowedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑤">DOMException</a></code>.</p> <li data-md> - <p>Let <var>rules</var> be the result of running <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules" id="ref-for-parse-a-list-of-rules①">parse a list of rules</a> from <var>text</var>. If <var>rules</var> is not a list of rules (i.e. an error occurred during parsing), set <var>rules</var> to an empty list.</p> + <p>Let <var>rules</var> be the result of running <a data-link-type="dfn" href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules" id="ref-for-parse-a-list-of-rules①">parse a list of rules</a> from <var>text</var>. If <var>rules</var> is not a list of rules (i.e. an error occurred during parsing), set <var>rules</var> to an empty list.</p> <li data-md> <p>If <var>rules</var> contains one or more <a class="css" data-link-type="at-rule" href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import" id="ref-for-at-ruledef-import⑦">@import</a> rules, throw a "<code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror⑤">NotAllowedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑥">DOMException</a></code>.</p> <li data-md> @@ -2602,7 +2603,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="6ae9aa1a">parse a list of rules</span> + <li><span class="dfn-paneled" id="048efb7d">parse a list of rules</span> <li><span class="dfn-paneled" id="9bf5ff7b">parse a rule</span> </ul> <li> @@ -2906,6 +2907,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "use strict"; { let dfnPanelData = { +"048efb7d": {"dfnID":"048efb7d","dfnText":"parse a list of rules","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-list-of-rules"},{"id":"ref-for-parse-a-list-of-rules\u2460"}],"title":"4. Modifying Constructed Stylesheets"}],"url":"https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules"}, "06f8d393": {"dfnID":"06f8d393","dfnText":"owner node","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node"}],"title":"3. Constructing Stylesheets"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-owner-node"}, "17a7ffc9": {"dfnID":"17a7ffc9","dfnText":"fetch group","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-fetch-group"}],"title":"4. Modifying Constructed Stylesheets"}],"url":"https://fetch.spec.whatwg.org/#concept-fetch-group"}, "1cd7ff31": {"dfnID":"1cd7ff31","dfnText":"ShadowRoot","external":true,"refSections":[{"refs":[{"id":"ref-for-shadowroot"}],"title":"5. Using Constructed Stylesheets"}],"url":"https://dom.spec.whatwg.org/#shadowroot"}, @@ -2918,7 +2920,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "5216e1a0": {"dfnID":"5216e1a0","dfnText":"node document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-node-document"}],"title":"5. Using Constructed Stylesheets"}],"url":"https://dom.spec.whatwg.org/#concept-node-document"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"},{"id":"ref-for-idl-boolean\u2460"}],"title":"3. Constructing Stylesheets"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"}],"title":"3. Constructing Stylesheets"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, -"6ae9aa1a": {"dfnID":"6ae9aa1a","dfnText":"parse a list of rules","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-list-of-rules"},{"id":"ref-for-parse-a-list-of-rules\u2460"}],"title":"4. Modifying Constructed Stylesheets"}],"url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules"}, "6b116b45": {"dfnID":"6b116b45","dfnText":"origin-clean flag","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag"}],"title":"3. Constructing Stylesheets"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-origin-clean-flag"}, "6c425c37": {"dfnID":"6c425c37","dfnText":"create a medialist object","external":true,"refSections":[{"refs":[{"id":"ref-for-create-a-medialist-object"},{"id":"ref-for-create-a-medialist-object\u2460"}],"title":"3. Constructing Stylesheets"}],"url":"https://drafts.csswg.org/cssom-1/#create-a-medialist-object"}, "72e9b3e7": {"dfnID":"72e9b3e7","dfnText":"css rule","external":true,"refSections":[{"refs":[{"id":"ref-for-css-rule"},{"id":"ref-for-css-rule\u2460"}],"title":"4. Modifying Constructed Stylesheets"}],"url":"https://drafts.csswg.org/cssom-1/#css-rule"}, @@ -3374,7 +3375,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://dom.spec.whatwg.org/#documentorshadowroot": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"DocumentOrShadowRoot","type":"interface","url":"https://dom.spec.whatwg.org/#documentorshadowroot"}, "https://dom.spec.whatwg.org/#shadowroot": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"ShadowRoot","type":"interface","url":"https://dom.spec.whatwg.org/#shadowroot"}, "https://drafts.csswg.org/css-cascade-5/#at-ruledef-import": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"@import","type":"at-rule","url":"https://drafts.csswg.org/css-cascade-5/#at-ruledef-import"}, -"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse a list of rules","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules"}, "https://drafts.csswg.org/css-syntax-3/#parse-a-rule": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse a rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#parse-a-rule"}, "https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-alternate-flag": {"export":false,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"alternate flag","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-alternate-flag"}, "https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-disabled-flag": {"export":false,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"disabled flag","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-disabled-flag"}, @@ -3409,6 +3409,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#idl-undefined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"undefined","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "https://webidl.spec.whatwg.org/#networkerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"NetworkError","type":"exception","url":"https://webidl.spec.whatwg.org/#networkerror"}, "https://webidl.spec.whatwg.org/#notallowederror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"NotAllowedError","type":"exception","url":"https://webidl.spec.whatwg.org/#notallowederror"}, +"https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"snapshot","text":"parse a list of rules","type":"dfn","url":"https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/WICG/contact-api/spec/index.html b/tests/github/WICG/contact-api/spec/index.html index 99ce1228fe..8d17306407 100644 --- a/tests/github/WICG/contact-api/spec/index.html +++ b/tests/github/WICG/contact-api/spec/index.html @@ -475,6 +475,230 @@ margin-bottom: 0; } </style> +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; +} +</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -746,7 +970,7 @@ <h1 class="p-name no-ref" id="title">Contact Picker API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Contact Picker API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Contact Picker API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -799,7 +1023,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1174,20 +1397,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1346,6 +1555,66 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I }; </pre> + <details class="mdn-anno unpositioned" data-anno-for="contacts-manager-getproperties"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ContactsManager/getProperties" title="The getProperties() method of the ContactsManager interface returns a Promise which resolves with an Array of strings indicating which contact properties are available.">ContactsManager/getProperties</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span title="Requires setting a user preference or runtime flag.">🔰 14.5+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>80+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="contacts-manager-select"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ContactsManager/select" title="The select() method of the ContactsManager interface returns a Promise which, when resolved, presents the user with a contact picker which allows them to select contact(s) they wish to share. This method requires a user gesture for the Promise to resolve.">ContactsManager/select</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span title="Requires setting a user preference or runtime flag.">🔰 14.5+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>80+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="contacts-manager"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ContactsManager" title="The ContactsManager interface of the Contact Picker API allows users to select entries from their contact list and share limited details of the selected entries with a website or application.">ContactsManager</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span title="Requires setting a user preference or runtime flag.">🔰 14.5+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>80+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-navigator-contacts"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Navigator/contacts" title="The contacts read-only property of the Navigator interface returns a ContactsManager interface which allows users to select entries from their contact list and share limited details of the selected entries with a website or application.">Navigator/contacts</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span title="Requires setting a user preference or runtime flag.">🔰 14.5+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>80+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -2005,6 +2274,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/WICG/container-queries/index.html b/tests/github/WICG/container-queries/index.html index 0679d356d4..a62e1b1532 100644 --- a/tests/github/WICG/container-queries/index.html +++ b/tests/github/WICG/container-queries/index.html @@ -3,10 +3,10 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Container Queries</title> - <meta content="CG-Draft" name="w3c-status"> + <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://github.com/ResponsiveImagesCG/container-queries" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -554,7 +554,7 @@ <h1 class="p-name no-ref" id="title">Container Queries</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -595,7 +595,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -656,20 +655,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/WICG/content-index/spec/index.console.txt b/tests/github/WICG/content-index/spec/index.console.txt index 7433e54ac9..1e4817e6cb 100644 --- a/tests/github/WICG/content-index/spec/index.console.txt +++ b/tests/github/WICG/content-index/spec/index.console.txt @@ -1,4 +1,4 @@ -WARNING: You used Status: ED, but W3C Community and Business Groups are limited to these statuses: CG-DRAFT, CG-FINAL, UD. +WARNING: You used Status ED, but your Group (WICG) is limited to the statuses CG-DRAFT, CG-FINAL, or UD. LINE ~76: Multiple possible 'service worker' dfn refs. Arbitrarily chose https://w3c.github.io/ServiceWorker/#dfn-service-worker To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: diff --git a/tests/github/WICG/content-index/spec/index.html b/tests/github/WICG/content-index/spec/index.html index 71f1d4e6ad..697c838a36 100644 --- a/tests/github/WICG/content-index/spec/index.html +++ b/tests/github/WICG/content-index/spec/index.html @@ -988,7 +988,7 @@ <h1 class="p-name no-ref" id="title">Content Index</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Content Index Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Content Index Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1515,20 +1515,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/conversion-measurement-api/index.html b/tests/github/WICG/conversion-measurement-api/index.html index 4792916945..a9bd1e771c 100644 --- a/tests/github/WICG/conversion-measurement-api/index.html +++ b/tests/github/WICG/conversion-measurement-api/index.html @@ -745,7 +745,7 @@ <h1 class="p-name no-ref" id="title">Conversion Measurement</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Conversion Measurement Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Conversion Measurement Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -800,7 +800,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1063,20 +1062,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/cookie-store/index.html b/tests/github/WICG/cookie-store/index.html index 96121dc2b0..ffb32b6a94 100644 --- a/tests/github/WICG/cookie-store/index.html +++ b/tests/github/WICG/cookie-store/index.html @@ -770,7 +770,7 @@ <h1 class="p-name no-ref" id="title">Cookie Store API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Cookie Store API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Cookie Store API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -866,7 +866,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -2103,20 +2102,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/cq-usecases/index.console.txt b/tests/github/WICG/cq-usecases/index.console.txt index 3c54f5b598..062190474d 100644 --- a/tests/github/WICG/cq-usecases/index.console.txt +++ b/tests/github/WICG/cq-usecases/index.console.txt @@ -1,4 +1,4 @@ -WARNING: You used Status: ED, but W3C Community and Business Groups are limited to these statuses: CG-DRAFT, CG-FINAL, UD. +WARNING: You used Status ED, but your Group (WICG) is limited to the statuses CG-DRAFT, CG-FINAL, or UD. LINT: Your document appears to use spaces to indent, but line 48 starts with tabs. LINT: Your document appears to use spaces to indent, but line 49 starts with tabs. LINT: Your document appears to use spaces to indent, but line 55 starts with tabs. diff --git a/tests/github/WICG/cq-usecases/index.html b/tests/github/WICG/cq-usecases/index.html index 12d40699de..200763c844 100644 --- a/tests/github/WICG/cq-usecases/index.html +++ b/tests/github/WICG/cq-usecases/index.html @@ -557,7 +557,7 @@ <h1>Use Cases and Requirements for Element Queries</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Use Cases and Requirements for Element Queries Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Use Cases and Requirements for Element Queries Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -692,20 +692,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/crash-reporting/index.console.txt b/tests/github/WICG/crash-reporting/index.console.txt index e69de29bb2..ef4c0baf0f 100644 --- a/tests/github/WICG/crash-reporting/index.console.txt +++ b/tests/github/WICG/crash-reporting/index.console.txt @@ -0,0 +1,2 @@ +FATAL ERROR: Couldn't load MDN Spec Links data for this spec. +Expecting value: line 1 column 1 (char 0) diff --git a/tests/github/WICG/crash-reporting/index.html b/tests/github/WICG/crash-reporting/index.html index db1801cdd1..62da808814 100644 --- a/tests/github/WICG/crash-reporting/index.html +++ b/tests/github/WICG/crash-reporting/index.html @@ -475,230 +475,6 @@ margin-bottom: 0; } </style> -<style>/* Boilerplate: style-mdn-anno */ -:root { - --mdn-bg: #EEE; - --mdn-shadow: #999; - --mdn-nosupport-text: #ccc; - --mdn-pass: green; - --mdn-fail: red; -} -@media (prefers-color-scheme: dark) { - :root { - --mdn-bg: #222; - --mdn-shadow: #444; - --mdn-nosupport-text: #666; - --mdn-pass: #690; - --mdn-fail: #d22; - } -} -.mdn-anno { - background: var(--mdn-bg, #EEE); - border-radius: .25em; - box-shadow: 0 0 3px var(--mdn-shadow, #999); - color: var(--text, black); - font: 1em sans-serif; - hyphens: none; - max-width: min-content; - overflow: hidden; - padding: 0.2em; - position: absolute; - right: 0.3em; - top: auto; - white-space: nowrap; - word-wrap: normal; - z-index: 8; -} -.mdn-anno.unpositioned { - display: none; -} -.mdn-anno.overlapping-main { - opacity: .2; - transition: opacity .1s; -} -.mdn-anno[open] { - opacity: 1; - z-index: 9; - min-width: 9em; -} -.mdn-anno:hover { - opacity: 1; - outline: var(--text, black) 1px solid; -} -.mdn-anno > summary { - font-weight: normal; - text-align: right; - cursor: pointer; - display: block; -} -.mdn-anno > summary > .less-than-two-engines-flag { - color: var(--mdn-fail); - padding-right: 2px; -} -.mdn-anno > summary > .all-engines-flag { - color: var(--mdn-pass); - padding-right: 2px; -} -.mdn-anno > summary > span { - color: #fff; - background-color: #000; - font-weight: normal; - font-family: zillaslab, Palatino, "Palatino Linotype", serif; - padding: 2px 3px 0px 3px; - line-height: 1.3em; - vertical-align: top; -} -.mdn-anno > .feature { - margin-top: 20px; -} -.mdn-anno > .feature:not(:first-of-type) { - border-top: 1px solid #999; - margin-top: 6px; - padding-top: 2px; -} -.mdn-anno > .feature > .less-than-two-engines-text { - color: var(--mdn-fail); -} -.mdn-anno > .feature > .all-engines-text { - color: var(--mdn-pass); -} -.mdn-anno > .feature > p { - font-size: .75em; - margin-top: 6px; - margin-bottom: 0; -} -.mdn-anno > .feature > p + p { - margin-top: 3px; -} -.mdn-anno > .feature > .support { - display: block; - font-size: 0.6em; - margin: 0; - padding: 0; - margin-top: 2px; -} -.mdn-anno > .feature > .support + div { - padding-top: 0.5em; -} -.mdn-anno > .feature > .support > hr { - display: block; - border: none; - border-top: 1px dotted #999; - padding: 3px 0px 0px 0px; - margin: 2px 3px 0px 3px; -} -.mdn-anno > .feature > .support > hr::before { - content: ""; -} -.mdn-anno > .feature > .support > span { - padding: 0.2em 0; - display: block; - display: table; -} -.mdn-anno > .feature > .support > span.no { - color: var(--mdn-nosupport-text); - filter: grayscale(100%); -} -.mdn-anno > .feature > .support > span.no::before { - opacity: 0.5; -} -.mdn-anno > .feature > .support > span:first-of-type { - padding-top: 0.5em; -} -.mdn-anno > .feature > .support > span > span { - padding: 0 0.5em; - display: table-cell; -} -.mdn-anno > .feature > .support > span > span:first-child { - width: 100%; -} -.mdn-anno > .feature > .support > span > span:last-child { - width: 100%; - white-space: pre; - padding: 0; -} -.mdn-anno > .feature > .support > span::before { - content: ' '; - display: table-cell; - min-width: 1.5em; - height: 1.5em; - background: no-repeat center center; - background-size: contain; - text-align: right; - font-size: 0.75em; - font-weight: bold; -} -.mdn-anno > .feature > .support > .chrome_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); -} -.mdn-anno > .feature > .support > .firefox_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); -} -.mdn-anno > .feature > .support > .chrome::before { - background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); -} -.mdn-anno > .feature > .support > .edge_blink::before { - background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); -} -.mdn-anno > .feature > .support > .edge::before { - background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); -} -.mdn-anno > .feature > .support > .firefox::before { - background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); -} -.mdn-anno > .feature > .support > .ie::before { - background-image: url(https://resources.whatwg.org/browser-logos/ie.png); -} -.mdn-anno > .feature > .support > .safari_ios::before { - background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); -} -.mdn-anno > .feature > .support > .nodejs::before { - background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); -} -.mdn-anno > .feature > .support > .opera_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); -} -.mdn-anno > .feature > .support > .opera::before { - background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); -} -.mdn-anno > .feature > .support > .safari::before { - background-image: url(https://resources.whatwg.org/browser-logos/safari.png); -} -.mdn-anno > .feature > .support > .samsunginternet_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); -} -.mdn-anno > .feature > .support > .webview_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); -} -.name-slug-mismatch { - color: red; -} -.caniuse-status:hover { - z-index: 9; -} -/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; -.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { - right: -6.7em; -} -.h-entry p + .mdn-anno { - margin-top: 0; -} - h2 + .mdn-anno.after { - margin: -48px 0 0 0; -} - h3 + .mdn-anno.after { - margin: -46px 0 0 0; -} - h4 + .mdn-anno.after { - margin: -42px 0 0 0; -} - h5 + .mdn-anno.after { - margin: -40px 0 0 0; -} - h6 + .mdn-anno.after { - margin: -40px 0 0 0; -} -</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -930,7 +706,7 @@ <h1>Crash Reporting</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Crash Reporting Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Crash Reporting Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1160,22 +936,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I }; </pre> - <details class="mdn-anno unpositioned" data-anno-for="crashreportbody"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CrashReportBody" title="The CrashReportBody interface of the Reporting API represents the body of a crash report (the return value of its Report.body property).">CrashReportBody</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> - <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>72+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -1774,63 +1534,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> -<script>/* Boilerplate: script-position-annos */ -"use strict"; -{ -function repositionAnnoPanels(){ - const panels = [...document.querySelectorAll("[data-anno-for]")]; - hydratePanels(panels); - let vSoFar = 0; - for(const panel of panels.sort(cmpTops)) { - if(panel.top < vSoFar) { - panel.top = vSoFar; - panel.style.top = vSoFar + "px"; - } - vSoFar = panel.top + panel.height + 15; - } -} -function hydratePanels(panels) { - const main = document.querySelector("main"); - let mainRect; - if(main) mainRect = main.getBoundingClientRect(); - // First display them all, if they're not already visible. - for(const panel of panels) { - panel.classList.remove("unpositioned"); - } - // Measure them all - for(const panel of panels) { - const dfn = document.getElementById(panel.getAttribute("data-anno-for")); - if(!dfn) { - console.log("Can't find the annotation panel target:", panel); - continue; - } - panel.dfn = dfn; - panel.top = window.scrollY + dfn.getBoundingClientRect().top; - let panelRect = panel.getBoundingClientRect(); - panel.height = panelRect.height; - if(main) { - panel.overlappingMain = panelRect.left < mainRect.right; - } else { - panel.overlappingMain = false; - } - } - // And finally position them - for(const panel of panels) { - const dfn = panel.dfn; - if(!dfn) continue; - panel.style.top = panel.top + "px"; - panel.classList.toggle("overlapping-main", panel.overlappingMain); - } -} - -function cmpTops(a,b) { - return a.top - b.top; -} - -window.addEventListener("load", repositionAnnoPanels); -window.addEventListener("resize", repositionAnnoPanels); -} -</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/WICG/css-parser-api/index.console.txt b/tests/github/WICG/css-parser-api/index.console.txt index e69de29bb2..8d40d41fcb 100644 --- a/tests/github/WICG/css-parser-api/index.console.txt +++ b/tests/github/WICG/css-parser-api/index.console.txt @@ -0,0 +1 @@ +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/WICG/css-parser-api/index.html b/tests/github/WICG/css-parser-api/index.html index 5eb0cd77e5..4bc910ad81 100644 --- a/tests/github/WICG/css-parser-api/index.html +++ b/tests/github/WICG/css-parser-api/index.html @@ -5,7 +5,6 @@ <title>CSS Parser API</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.css-houdini.org/css-parser-api/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -710,7 +709,7 @@ <h1 class="p-name no-ref" id="title">CSS Parser API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -730,12 +729,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-parser-api] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-parser-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1101,7 +1100,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-html">[HTML] diff --git a/tests/github/WICG/custom-state-pseudo-class/index.html b/tests/github/WICG/custom-state-pseudo-class/index.html index 33f2bab417..0ec441a4c3 100644 --- a/tests/github/WICG/custom-state-pseudo-class/index.html +++ b/tests/github/WICG/custom-state-pseudo-class/index.html @@ -475,6 +475,230 @@ margin-bottom: 0; } </style> +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; +} +</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -704,7 +928,7 @@ <h1 class="p-name no-ref" id="title">Custom State Pseudo Class</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Custom State Pseudo Class Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Custom State Pseudo Class Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -742,7 +966,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -754,6 +977,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> <ol class="toc"> <li><a href="#normative"><span class="secno"></span> <span class="content">Normative References</span></a> + <li><a href="#informative"><span class="secno"></span> <span class="content">Informative References</span></a> </ol> <li><a href="#idl-index"><span class="secno"></span> <span class="content">IDL Index</span></a> <li><a href="#issues-index"><span class="secno"></span> <span class="content">Issues Index</span></a> @@ -890,7 +1114,7 @@ <h2 class="heading settled" data-level="3" id="selecting"><span class="secno">3. followed by one <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-dashed-ident" id="ref-for-typedef-dashed-ident①">&lt;dashed-ident></a>, otherwise the selector is invalid.</p> <p>The <a data-link-type="dfn" href="#custom-state-pseudo-class" id="ref-for-custom-state-pseudo-class③">custom state pseudo class</a> must match any element that is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/custom-elements.html#autonomous-custom-element" id="ref-for-autonomous-custom-element①">autonomous custom element</a> and whose <a data-link-type="dfn" href="#states-set" id="ref-for-states-set②">states set</a> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain">contains</a> the specified <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-dashed-ident" id="ref-for-typedef-dashed-ident②">&lt;dashed-ident></a>.</p> <div class="example" id="ex-selector-logic"><a class="self-link" href="#ex-selector-logic"></a> A <a data-link-type="dfn" href="#custom-state-pseudo-class" id="ref-for-custom-state-pseudo-class④">custom state pseudo class</a> contains just one <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-dashed-ident" id="ref-for-typedef-dashed-ident③">&lt;dashed-ident></a>, and an -element can expose multiple states. Authors can use <a data-link-type="dfn" href="#custom-state-pseudo-class" id="ref-for-custom-state-pseudo-class⑤">custom state pseudo class</a> with logical <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-class" id="ref-for-pseudo-class③">pseudo-classes</a> like <span class="css">x-foo:is(:--state1, :--state2)</span>, <span class="css">x-foo:not(:--state2)</span>, and <span class="css">x-foo:--state1:--state2</span>. </div> +element can expose multiple states. Authors can use <a data-link-type="dfn" href="#custom-state-pseudo-class" id="ref-for-custom-state-pseudo-class⑤">custom state pseudo class</a> with logical <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x23" id="ref-for-x23">pseudo-classes</a> like <span class="css">x-foo:is(:--state1, :--state2)</span>, <span class="css">x-foo:not(:--state2)</span>, and <span class="css">x-foo:--state1:--state2</span>. </div> </main> <div data-fill-with="conformance"> <h2 class="no-ref no-num heading settled" id="w3c-conformance"><span class="content">Conformance</span><a class="self-link" href="#w3c-conformance"></a></h2> @@ -918,20 +1142,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -951,6 +1161,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="8a427103">&lt;dashed-ident></span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="cc123316">pseudo-classes</span> + </ul> <li> <a data-link-type="biblio">[HTML]</a> defines the following terms: <ul> @@ -997,6 +1212,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> + <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> + <dl> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> + </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def"><c- b>partial</c-> <c- b>interface</c-> <a class="idl-code" data-link-type="interface" href="https://html.spec.whatwg.org/multipage/custom-elements.html#elementinternals"><c- g>ElementInternals</c-></a> { <c- b>readonly</c-> <c- b>attribute</c-> <a data-link-type="idl-name" href="#customstateset"><c- n>CustomStateSet</c-></a> <a data-readonly data-type="CustomStateSet" href="#dom-elementinternals-states"><code><c- g>states</c-></code></a>; @@ -1014,6 +1234,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> Support customized built-in elements. <a href="https://github.com/whatwg/html/issues/5166">[Issue #whatwg/html#5166]</a> <a class="issue-return" href="#issue-172e10b8" title="Jump to section">↵</a></div> <div class="issue"> Support non-boolean states. <a href="https://github.com/WICG/custom-state-pseudo-class/issues/4">[Issue #WICG/custom-state-pseudo-class#4]</a> <a class="issue-return" href="#issue-8463f5b0" title="Jump to section">↵</a></div> </div> + <details class="mdn-anno unpositioned" data-anno-for="dom-elementinternals-states"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/states" title="The states read-only property of the ElementInternals interface returns a CustomStateSet representing the possible states of the custom element.">ElementInternals/states</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>90+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>90+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -1216,7 +1452,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let dfnPanelData = { "15e48c39": {"dfnID":"15e48c39","dfnText":"set","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-set"},{"id":"ref-for-ordered-set\u2460"}],"title":"2. Exposing custom element states"}],"url":"https://infra.spec.whatwg.org/#ordered-set"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"}],"title":"2. Exposing custom element states"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, -"628c6566": {"dfnID":"628c6566","dfnText":"pseudo-class","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-class"}],"title":"1.1. Motivation"},{"refs":[{"id":"ref-for-pseudo-class\u2460"}],"title":"1.2. Solution"},{"refs":[{"id":"ref-for-pseudo-class\u2461"},{"id":"ref-for-pseudo-class\u2462"}],"title":"3. Selecting a custom element with a specific state"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-class"}, +"628c6566": {"dfnID":"628c6566","dfnText":"pseudo-class","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-class"}],"title":"1.1. Motivation"},{"refs":[{"id":"ref-for-pseudo-class\u2460"}],"title":"1.2. Solution"},{"refs":[{"id":"ref-for-pseudo-class\u2461"}],"title":"3. Selecting a custom element with a specific state"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-class"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"},{"id":"ref-for-idl-DOMString\u2460"}],"title":"2. Exposing custom element states"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"2. Exposing custom element states"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "8a427103": {"dfnID":"8a427103","dfnText":"<dashed-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dashed-ident"}],"title":"2. Exposing custom element states"},{"refs":[{"id":"ref-for-typedef-dashed-ident\u2460"},{"id":"ref-for-typedef-dashed-ident\u2461"},{"id":"ref-for-typedef-dashed-ident\u2462"}],"title":"3. Selecting a custom element with a specific state"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-dashed-ident"}, @@ -1227,6 +1463,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b6fb7a51": {"dfnID":"b6fb7a51","dfnText":"custom element","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-element"},{"id":"ref-for-custom-element\u2460"}],"title":"1.1. Motivation"},{"refs":[{"id":"ref-for-custom-element\u2461"}],"title":"1.2. Solution"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element"}, "ba0ed6e8": {"dfnID":"ba0ed6e8","dfnText":":invalid","external":true,"refSections":[{"refs":[{"id":"ref-for-invalid-pseudo"}],"title":"1.1. Motivation"}],"url":"https://drafts.csswg.org/selectors-4/#invalid-pseudo"}, "be2d2b4c": {"dfnID":"be2d2b4c","dfnText":"SyntaxError","external":true,"refSections":[{"refs":[{"id":"ref-for-syntaxerror"}],"title":"2. Exposing custom element states"}],"url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"cc123316": {"dfnID":"cc123316","dfnText":"pseudo-classes","external":true,"refSections":[{"refs":[{"id":"ref-for-x23"}],"title":"3. Selecting a custom element with a specific state"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x23"}, "custom-state-pseudo-class": {"dfnID":"custom-state-pseudo-class","dfnText":"custom state pseudo class","external":false,"refSections":[{"refs":[{"id":"ref-for-custom-state-pseudo-class\u2460"}],"title":"1.2. Solution"},{"refs":[{"id":"ref-for-custom-state-pseudo-class\u2461"},{"id":"ref-for-custom-state-pseudo-class\u2462"},{"id":"ref-for-custom-state-pseudo-class\u2463"},{"id":"ref-for-custom-state-pseudo-class\u2464"}],"title":"3. Selecting a custom element with a specific state"}],"url":"#custom-state-pseudo-class"}, "customstateset": {"dfnID":"customstateset","dfnText":"CustomStateSet","external":false,"refSections":[{"refs":[{"id":"ref-for-customstateset"},{"id":"ref-for-customstateset\u2460"}],"title":"2. Exposing custom element states"}],"url":"#customstateset"}, "dca2de17": {"dfnID":"dca2de17","dfnText":"DOMException","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMException"}],"title":"2. Exposing custom element states"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMException"}, @@ -1618,6 +1855,63 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -1641,6 +1935,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-DOMString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "https://webidl.spec.whatwg.org/#idl-undefined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"undefined","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"https://www.w3.org/TR/CSS21/selector.html#x23": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-classes","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x23"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/WICG/datacue/index.html b/tests/github/WICG/datacue/index.html index 2deb3d4382..d37d5fac5b 100644 --- a/tests/github/WICG/datacue/index.html +++ b/tests/github/WICG/datacue/index.html @@ -707,7 +707,7 @@ <h1 class="p-name no-ref" id="title">DataCue API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the DataCue API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the DataCue API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -755,7 +755,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -849,20 +848,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -899,9 +884,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-mpegcmaf">[MPEGCMAF] - <dd><a href="https://www.iso.org/standard/79106.html"><cite>Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media</cite></a>. March 2020. Published. URL: <a href="https://www.iso.org/standard/79106.html">https://www.iso.org/standard/79106.html</a> + <dd><a href="https://www.iso.org/standard/85623.html"><cite>Information technology — Multimedia application format (MPEG-A) — Part 19: Common media application format (CMAF) for segmented media</cite></a>. February 2024. Published. URL: <a href="https://www.iso.org/standard/85623.html">https://www.iso.org/standard/85623.html</a> <dt id="biblio-mpegdash">[MPEGDASH] - <dd><a href="https://www.iso.org/standard/83314.html"><cite>Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats</cite></a>. Under development. URL: <a href="https://www.iso.org/standard/83314.html">https://www.iso.org/standard/83314.html</a> + <dd><a href="https://www.iso.org/standard/89027.html"><cite>Information technology — Dynamic adaptive streaming over HTTP (DASH) — Part 1: Media presentation description and segment formats</cite></a>. Under development. URL: <a href="https://www.iso.org/standard/89027.html">https://www.iso.org/standard/89027.html</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-webidl">[WEBIDL] diff --git a/tests/github/WICG/deprecation-reporting/index.console.txt b/tests/github/WICG/deprecation-reporting/index.console.txt index 5ea6535589..4ba3d58d07 100644 --- a/tests/github/WICG/deprecation-reporting/index.console.txt +++ b/tests/github/WICG/deprecation-reporting/index.console.txt @@ -1,6 +1,3 @@ -LINE 55: No 'dfn' refs found for 'visible to reportingobservers' that are marked for export. -<a bs-line-number="55" data-link-type="dfn" data-lt="visible to ReportingObservers">visible to - <code bs-line-number="56">ReportingObserver</code>s</a> LINE 78: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="78" data-dfn-for="DeprecationReportBody" data-dfn-type="dfn" id="deprecationreportbody-anticipatedremoval" data-lt="anticipatedRemoval" data-noexport="by-default" class="dfn-paneled">anticipatedRemoval</dfn> LINE 86: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/WICG/deprecation-reporting/index.html b/tests/github/WICG/deprecation-reporting/index.html index 694aa16e37..ad6426cc29 100644 --- a/tests/github/WICG/deprecation-reporting/index.html +++ b/tests/github/WICG/deprecation-reporting/index.html @@ -930,7 +930,7 @@ <h1>Deprecation Reporting</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Deprecation Reporting Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Deprecation Reporting Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -997,7 +997,7 @@ <h2 class="heading settled" data-level="2" id="deprecation-report"><span class=" used which is expected to stop working in a future update to the browser.</p> <p><a data-link-type="dfn" href="#deprecation-reports" id="ref-for-deprecation-reports">Deprecation reports</a> are a type of <a data-link-type="dfn" href="https://w3c.github.io/reporting/#report" id="ref-for-report">report</a>.</p> <p><a data-link-type="dfn" href="#deprecation-reports" id="ref-for-deprecation-reports①">Deprecation reports</a> have the <a data-link-type="dfn" href="https://w3c.github.io/reporting/#report-type" id="ref-for-report-type">report type</a> "deprecation".</p> - <p><a data-link-type="dfn" href="#deprecation-reports" id="ref-for-deprecation-reports②">Deprecation reports</a> are <a data-link-type="dfn">visible to <code>ReportingObserver</code>s</a>.</p> + <p><a data-link-type="dfn" href="#deprecation-reports" id="ref-for-deprecation-reports②">Deprecation reports</a> are <a data-link-type="dfn" href="https://w3c.github.io/reporting/#visible-to-reportingobservers" id="ref-for-visible-to-reportingobservers">visible to <code>ReportingObserver</code>s</a>.</p> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed" id="ref-for-Exposed"><c- g>Exposed</c-></a>=(<c- n>Window</c->,<c- n>Worker</c->)] <c- b>interface</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="interface" data-export id="deprecationreportbody"><code><c- g>DeprecationReportBody</c-></code></dfn> : <a data-link-type="idl-name" href="https://w3c.github.io/reporting/#reportbody" id="ref-for-reportbody"><c- n>ReportBody</c-></a> { [<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Default" id="ref-for-Default"><c- g>Default</c-></a>] <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-object" id="ref-for-idl-object"><c- b>object</c-></a> <dfn class="dfn-paneled idl-code" data-dfn-for="DeprecationReportBody" data-dfn-type="method" data-export data-lt="toJSON()" id="dom-deprecationreportbody-tojson"><code><c- g>toJSON</c-></code></dfn>(); @@ -1145,6 +1145,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9239678f">endpoint</span> <li><span class="dfn-paneled" id="9fe8836b">report</span> <li><span class="dfn-paneled" id="4d5cebba">report type</span> + <li><span class="dfn-paneled" id="3c4b330a">visible to reportingobservers</span> </ul> <li> <a data-link-type="biblio">[WEBIDL]</a> defines the following terms: @@ -1508,6 +1509,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I { let dfnPanelData = { "188c6617": {"dfnID":"188c6617","dfnText":"ReportBody","external":true,"refSections":[{"refs":[{"id":"ref-for-reportbody"}],"title":"2. Deprecation Reports"}],"url":"https://w3c.github.io/reporting/#reportbody"}, +"3c4b330a": {"dfnID":"3c4b330a","dfnText":"visible to reportingobservers","external":true,"refSections":[{"refs":[{"id":"ref-for-visible-to-reportingobservers"}],"title":"2. Deprecation Reports"}],"url":"https://w3c.github.io/reporting/#visible-to-reportingobservers"}, "4d5cebba": {"dfnID":"4d5cebba","dfnText":"report type","external":true,"refSections":[{"refs":[{"id":"ref-for-report-type"}],"title":"2. Deprecation Reports"}],"url":"https://w3c.github.io/reporting/#report-type"}, "6fe88df8": {"dfnID":"6fe88df8","dfnText":"date object","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-date-objects"}],"title":"2. Deprecation Reports"}],"url":"https://tc39.github.io/ecma262/#sec-date-objects"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"},{"id":"ref-for-idl-DOMString\u2460"},{"id":"ref-for-idl-DOMString\u2461"}],"title":"2. Deprecation Reports"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, @@ -1988,6 +1990,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/reporting/#report-body": {"export":true,"for_":["report"],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"body","type":"dfn","url":"https://w3c.github.io/reporting/#report-body"}, "https://w3c.github.io/reporting/#report-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"report type","type":"dfn","url":"https://w3c.github.io/reporting/#report-type"}, "https://w3c.github.io/reporting/#reportbody": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"ReportBody","type":"interface","url":"https://w3c.github.io/reporting/#reportbody"}, +"https://w3c.github.io/reporting/#visible-to-reportingobservers": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"visible to reportingobservers","type":"dfn","url":"https://w3c.github.io/reporting/#visible-to-reportingobservers"}, "https://webidl.spec.whatwg.org/#Default": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Default","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Default"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#idl-DOMString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, diff --git a/tests/github/WICG/document-policy/index.console.txt b/tests/github/WICG/document-policy/index.console.txt index a715de484f..4adec0d5ab 100644 --- a/tests/github/WICG/document-policy/index.console.txt +++ b/tests/github/WICG/document-policy/index.console.txt @@ -4,54 +4,59 @@ LINE 350: Ambiguous for-less link for 'type', please see <https://speced.github. Local references: spec:document-policy-1; type:dfn; for:configuration point; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type <a bs-line-number="350" data-link-type="dfn" data-lt="type">type</a> LINE 354: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:document-policy-1; type:dfn; for:configuration point; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type <a bs-line-number="354" data-link-type="dfn" data-lt="type">type</a> LINE 356: Ambiguous for-less link for 'range', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:document-policy-1; type:dfn; for:configuration point; text:range for-less references: spec:dom; type:dfn; for:/; text:range -spec:i18n-glossary; type:dfn; for:/; text:range -spec:i18n-glossary; type:dfn; for:/; text:range <a bs-line-number="356" data-link-type="dfn" data-lt="range">range</a> LINE 359: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:document-policy-1; type:dfn; for:configuration point; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type <a bs-line-number="359" data-link-type="dfn" data-lt="type">type</a> LINE 361: Ambiguous for-less link for 'range', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:document-policy-1; type:dfn; for:configuration point; text:range for-less references: spec:dom; type:dfn; for:/; text:range -spec:i18n-glossary; type:dfn; for:/; text:range -spec:i18n-glossary; type:dfn; for:/; text:range <a bs-line-number="361" data-link-type="dfn" data-lt="range">range</a> LINE 364: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:document-policy-1; type:dfn; for:configuration point; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type <a bs-line-number="364" data-link-type="dfn" data-lt="type">type</a> LINE 366: Ambiguous for-less link for 'range', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:document-policy-1; type:dfn; for:configuration point; text:range for-less references: spec:dom; type:dfn; for:/; text:range -spec:i18n-glossary; type:dfn; for:/; text:range -spec:i18n-glossary; type:dfn; for:/; text:range <a bs-line-number="366" data-link-type="dfn" data-lt="range">range</a> LINE 429: No 'dfn' refs found for 'policy directive' that are marked for export. <a bs-line-number="429" data-link-type="dfn" data-lt="policy directive">policy directive</a> LINE 464: No 'dfn' refs found for 'nested browsing context'. <a bs-line-number="464" data-link-type="dfn" data-lt="nested browsing context">nested browsing context</a> +LINE 481: Multiple possible 'content type' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-document-content-type +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:content type +spec:fetch; type:dfn; text:content type +<a bs-line-number="481" data-link-type="dfn" data-lt="content type">content +type</a> LINE 482: Multiple possible 'origin' dfn refs for '/'. Arbitrarily chose https://html.spec.whatwg.org/multipage/browsers.html#concept-origin The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). @@ -67,6 +72,19 @@ LINE 484: No 'dfn' refs found for 'feature policy'. <a bs-line-number="484" data-link-type="dfn" data-lt="feature policy">feature policy</a> LINE ~489: No 'dfn' refs found for 'process a navigate fetch'. [=process a navigate fetch=] +LINE ~587: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:document-policy-1; type:dfn; for:configuration point; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +[=name=] +LINE ~590: Ambiguous for-less link for 'value', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:document-policy-1; type:dfn; for:policy configuration; text:value +for-less references: +spec:css2; type:dfn; for:/; text:value +[=value=] LINE 697: No 'dfn' refs found for 'nested browsing context'. <a bs-line-number="697" data-link-type="dfn" data-lt="nested browsing context">nested browsing context</a> LINE 698: No 'dfn' refs found for 'browsing context container' that are marked for export. @@ -74,5 +92,11 @@ LINE 698: No 'dfn' refs found for 'browsing context container' that are marked f context container</a> LINE 701: No 'dfn' refs found for 'browsing context container' that are marked for export. <a bs-line-number="701" data-link-type="dfn" data-lt="browsing context container">browsing context container</a> +LINE 765: Ambiguous for-less link for 'value', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:document-policy-1; type:dfn; for:policy configuration; text:value +for-less references: +spec:css2; type:dfn; for:/; text:value +<a bs-line-number="765" data-link-type="dfn" data-lt="value">value</a> LINE 340: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="340" data-dfn-type="dfn" id="policy-value" data-lt="policy value" data-noexport="by-default" class="dfn-paneled">policy value</dfn> diff --git a/tests/github/WICG/document-policy/index.html b/tests/github/WICG/document-policy/index.html index ba49f5f1b2..a30fcf97d0 100644 --- a/tests/github/WICG/document-policy/index.html +++ b/tests/github/WICG/document-policy/index.html @@ -619,7 +619,7 @@ <h1 class="p-name no-ref" id="title">Document Policy</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Document Policy Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Document Policy Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -721,7 +721,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1205,10 +1204,10 @@ <h3 class="heading settled" data-level="9.2" id="algo-process-response-policy">< <ol> <li data-md> <p>Abort these steps if <var>response</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-header-list" id="ref-for-concept-response-header-list">header list</a> does - not contain a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-header" id="ref-for-concept-header">header</a> whose <a data-link-type="dfn" href="#configuration-point-name" id="ref-for-configuration-point-name①">name</a> is + not contain a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-header" id="ref-for-concept-header">header</a> whose <a data-link-type="dfn">name</a> is "<code>Document-Policy</code>".</p> <li data-md> - <p>Let <var>header</var> be the concatenation of the <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value">value</a>s of all <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-header" id="ref-for-concept-header①">header</a> fields in <var>response</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-header-list" id="ref-for-concept-response-header-list①">header list</a> whose name is + <p>Let <var>header</var> be the concatenation of the <a data-link-type="dfn">value</a>s of all <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-header" id="ref-for-concept-header①">header</a> fields in <var>response</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-header-list" id="ref-for-concept-response-header-list①">header list</a> whose name is "<code>Document-Policy</code>", separated by U+002C (,) (according to [RFC7230, 3.2.2]).</p> <li data-md> @@ -1266,7 +1265,7 @@ <h3 class="heading settled" data-level="9.3" id="algo-parse-document-policy"><sp <li data-md> <p>If <var>value</var> is not a Boolean, then fail.</p> <li data-md> - <p>Set <var>policy</var>[<var>configuration point</var>] to a new boolean <a data-link-type="dfn" href="#policy-configuration" id="ref-for-policy-configuration①">policy configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value①">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint">reporting endpoint</a> <var>currentEndpoint</var>.</p> + <p>Set <var>policy</var>[<var>configuration point</var>] to a new boolean <a data-link-type="dfn" href="#policy-configuration" id="ref-for-policy-configuration①">policy configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint">reporting endpoint</a> <var>currentEndpoint</var>.</p> <li data-md> <p>Continue with the next <var>element</var>.</p> </ol> @@ -1280,7 +1279,7 @@ <h3 class="heading settled" data-level="9.3" id="algo-parse-document-policy"><sp allowed enum values, then fail.</p> <li data-md> <p>Set <var>policy</var>[<var>configuration point</var>] to a new enum <a data-link-type="dfn" href="#policy-configuration" id="ref-for-policy-configuration②">policy -configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value②">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint①">reporting endpoint</a> <var>currentEndpoint</var>.</p> +configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value①">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint①">reporting endpoint</a> <var>currentEndpoint</var>.</p> <li data-md> <p>Continue with the next <var>element</var>.</p> </ol> @@ -1293,7 +1292,7 @@ <h3 class="heading settled" data-level="9.3" id="algo-parse-document-policy"><sp <p>If <var>value</var> is not in <var>configuration point</var>’s range, then fail.</p> <li data-md> - <p>Set <var>policy</var>[<var>configuration point</var>] to a new integer <a data-link-type="dfn" href="#policy-configuration" id="ref-for-policy-configuration③">policy configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value③">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint②">reporting endpoint</a> <var>currentEndpoint</var>.</p> + <p>Set <var>policy</var>[<var>configuration point</var>] to a new integer <a data-link-type="dfn" href="#policy-configuration" id="ref-for-policy-configuration③">policy configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value②">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint②">reporting endpoint</a> <var>currentEndpoint</var>.</p> <li data-md> <p>Continue with the next <var>element</var>.</p> </ol> @@ -1307,7 +1306,7 @@ <h3 class="heading settled" data-level="9.3" id="algo-parse-document-policy"><sp fail.</p> <li data-md> <p>Set <var>policy</var>[<var>configuration point</var>] to a new float <a data-link-type="dfn" href="#policy-configuration" id="ref-for-policy-configuration④">policy -configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value④">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint③">reporting endpoint</a> <var>currentEndpoint</var>.</p> +configuration</a> with <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value③">value</a> <var>value</var>, and <a data-link-type="dfn" href="#policy-configuration-reporting-endpoint" id="ref-for-policy-configuration-reporting-endpoint③">reporting endpoint</a> <var>currentEndpoint</var>.</p> <li data-md> <p>Continue with the next <var>element</var>.</p> </ol> @@ -1435,7 +1434,7 @@ <h3 class="heading settled" data-level="9.8" id="algo-get-policy-value"><span cl <li data-md> <p>Let <var>policy</var> be <var>document</var>’s <a data-link-type="dfn" href="#document-policy" id="ref-for-document-policy①③">Document Policy</a>.</p> <li data-md> - <p>If <var>policy</var>[<var>feature</var>] exists, return its <a data-link-type="dfn" href="#policy-configuration-value" id="ref-for-policy-configuration-value⑤">value</a>.</p> + <p>If <var>policy</var>[<var>feature</var>] exists, return its <a data-link-type="dfn">value</a>.</p> <li data-md> <p>Return <var>feature</var>’s <a data-link-type="dfn" href="#configuration-point-default-value" id="ref-for-configuration-point-default-value①">default value</a>.</p> </ol> @@ -1679,20 +1678,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2026,7 +2011,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c9e7c11a": {"dfnID":"c9e7c11a","dfnText":"header","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-header"},{"id":"ref-for-concept-header\u2460"}],"title":"9.2. Process response policy"}],"url":"https://fetch.spec.whatwg.org/#concept-header"}, "configuration-point": {"dfnID":"configuration-point","dfnText":"configuration point","external":false,"refSections":[{"refs":[{"id":"ref-for-configuration-point"},{"id":"ref-for-configuration-point\u2460"},{"id":"ref-for-configuration-point\u2461"},{"id":"ref-for-configuration-point\u2462"}],"title":"4.1. Configuration Points"},{"refs":[{"id":"ref-for-configuration-point\u2463"},{"id":"ref-for-configuration-point\u2464"}],"title":"4.2. Policies"},{"refs":[{"id":"ref-for-configuration-point\u2465"},{"id":"ref-for-configuration-point\u2466"}],"title":"7.1. Policies as Structured Headers"},{"refs":[{"id":"ref-for-configuration-point\u2467"},{"id":"ref-for-configuration-point\u2468"},{"id":"ref-for-configuration-point\u2460\u24ea"},{"id":"ref-for-configuration-point\u2460\u2460"},{"id":"ref-for-configuration-point\u2460\u2461"},{"id":"ref-for-configuration-point\u2460\u2462"},{"id":"ref-for-configuration-point\u2460\u2463"}],"title":"7.1.1. Parameters"}],"url":"#configuration-point"}, "configuration-point-default-value": {"dfnID":"configuration-point-default-value","dfnText":"default value","external":false,"refSections":[{"refs":[{"id":"ref-for-configuration-point-default-value"}],"title":"4.1. Configuration Points"},{"refs":[{"id":"ref-for-configuration-point-default-value\u2460"}],"title":"9.8. Get policy value for feature in document"},{"refs":[{"id":"ref-for-configuration-point-default-value\u2461"},{"id":"ref-for-configuration-point-default-value\u2462"}],"title":"9.9. Determine compatibility of value with policy for feature"}],"url":"#configuration-point-default-value"}, -"configuration-point-name": {"dfnID":"configuration-point-name","dfnText":"name","external":false,"refSections":[{"refs":[{"id":"ref-for-configuration-point-name"}],"title":"7.1. Policies as Structured Headers"},{"refs":[{"id":"ref-for-configuration-point-name\u2460"}],"title":"9.2. Process response policy"}],"url":"#configuration-point-name"}, +"configuration-point-name": {"dfnID":"configuration-point-name","dfnText":"name","external":false,"refSections":[{"refs":[{"id":"ref-for-configuration-point-name"}],"title":"7.1. Policies as Structured Headers"}],"url":"#configuration-point-name"}, "configuration-point-range": {"dfnID":"configuration-point-range","dfnText":"range","external":false,"refSections":[{"refs":[{"id":"ref-for-configuration-point-range"}],"title":"4.1. Configuration Points"},{"refs":[{"id":"ref-for-configuration-point-range\u2460"}],"title":"4.2. Policies"},{"refs":[{"id":"ref-for-configuration-point-range\u2461"}],"title":"7.1. Policies as Structured Headers"}],"url":"#configuration-point-range"}, "configuration-point-type": {"dfnID":"configuration-point-type","dfnText":"type","external":false,"refSections":[{"refs":[{"id":"ref-for-configuration-point-type"}],"title":"4.1. Configuration Points"}],"url":"#configuration-point-type"}, "create-document-policy": {"dfnID":"create-document-policy","dfnText":"Create a document Policy for a browsing context from response","external":false,"refSections":[{"refs":[{"id":"ref-for-create-document-policy"}],"title":"8.1. Integration with HTML"}],"url":"#create-document-policy"}, @@ -2050,7 +2035,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "parse-document-policy": {"dfnID":"parse-document-policy","dfnText":"Parse document policy","external":false,"refSections":[{"refs":[{"id":"ref-for-parse-document-policy"}],"title":"9.2. Process response policy"}],"url":"#parse-document-policy"}, "policy-configuration": {"dfnID":"policy-configuration","dfnText":"policy configuration","external":false,"refSections":[{"refs":[{"id":"ref-for-policy-configuration"}],"title":"4.2. Policies"},{"refs":[{"id":"ref-for-policy-configuration\u2460"},{"id":"ref-for-policy-configuration\u2461"},{"id":"ref-for-policy-configuration\u2462"},{"id":"ref-for-policy-configuration\u2463"}],"title":"9.3. Parse document policy"}],"url":"#policy-configuration"}, "policy-configuration-reporting-endpoint": {"dfnID":"policy-configuration-reporting-endpoint","dfnText":"reporting endpoint","external":false,"refSections":[{"refs":[{"id":"ref-for-policy-configuration-reporting-endpoint"},{"id":"ref-for-policy-configuration-reporting-endpoint\u2460"},{"id":"ref-for-policy-configuration-reporting-endpoint\u2461"},{"id":"ref-for-policy-configuration-reporting-endpoint\u2462"},{"id":"ref-for-policy-configuration-reporting-endpoint\u2463"},{"id":"ref-for-policy-configuration-reporting-endpoint\u2464"}],"title":"9.3. Parse document policy"}],"url":"#policy-configuration-reporting-endpoint"}, -"policy-configuration-value": {"dfnID":"policy-configuration-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-policy-configuration-value"}],"title":"9.2. Process response policy"},{"refs":[{"id":"ref-for-policy-configuration-value\u2460"},{"id":"ref-for-policy-configuration-value\u2461"},{"id":"ref-for-policy-configuration-value\u2462"},{"id":"ref-for-policy-configuration-value\u2463"}],"title":"9.3. Parse document policy"},{"refs":[{"id":"ref-for-policy-configuration-value\u2464"}],"title":"9.8. Get policy value for feature in document"}],"url":"#policy-configuration-value"}, +"policy-configuration-value": {"dfnID":"policy-configuration-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-policy-configuration-value"},{"id":"ref-for-policy-configuration-value\u2460"},{"id":"ref-for-policy-configuration-value\u2461"},{"id":"ref-for-policy-configuration-value\u2462"}],"title":"9.3. Parse document policy"}],"url":"#policy-configuration-value"}, "policy-value": {"dfnID":"policy-value","dfnText":"policy value","external":false,"refSections":[],"url":"#policy-value"}, "process-response-policy": {"dfnID":"process-response-policy","dfnText":"Process response policy","external":false,"refSections":[{"refs":[{"id":"ref-for-process-response-policy"}],"title":"9.6. Create a document Policy for a browsing context from response"}],"url":"#process-response-policy"}, "report-only-document-policy": {"dfnID":"report-only-document-policy","dfnText":"report-only document policy","external":false,"refSections":[{"refs":[{"id":"ref-for-report-only-document-policy"}],"title":"7.2.2. Document-Policy-Report-Only"},{"refs":[{"id":"ref-for-report-only-document-policy\u2460"},{"id":"ref-for-report-only-document-policy\u2461"}],"title":"9.9. Determine compatibility of value with policy for feature"}],"url":"#report-only-document-policy"}, diff --git a/tests/github/WICG/element-timing/index.console.txt b/tests/github/WICG/element-timing/index.console.txt index 46fda10c5d..abc718a709 100644 --- a/tests/github/WICG/element-timing/index.console.txt +++ b/tests/github/WICG/element-timing/index.console.txt @@ -2,10 +2,20 @@ LINE 155: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="155" data-link-type="dfn" data-lt="context object">context object</a> LINE 173: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="173" data-link-type="dfn" data-lt="context object">context object</a> -LINE 205: No 'dfn' refs found for 'reflect' that are marked for export. -<a bs-line-number="205" data-link-type="dfn" data-lt="reflect">reflect</a> +LINE 175: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="175" data-link-type="dfn" data-lt="descendant">descendant</a> LINE 249: No 'dfn' refs found for 'event loop processing model' that are marked for export. <a bs-line-number="249" data-link-type="dfn" data-lt="event loop processing model">event loop processing model</a> +LINE 326: Multiple possible 'descendants' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="326" data-link-type="dfn" data-lt="descendants">descendants</a> LINE 339: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="339" data-link-type="dfn" data-lt="context object">context object</a> LINE 340: No 'dfn' refs found for 'responsible document'. diff --git a/tests/github/WICG/element-timing/index.html b/tests/github/WICG/element-timing/index.html index 730c851d98..be259f85f5 100644 --- a/tests/github/WICG/element-timing/index.html +++ b/tests/github/WICG/element-timing/index.html @@ -972,7 +972,7 @@ <h1 class="p-name no-ref" id="title">Element Timing API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Element Timing API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Element Timing API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1023,7 +1023,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1154,7 +1153,7 @@ <h3 class="heading settled" data-level="3.1" id="sec-modifications-DOM"><span cl [<a class="idl-code" data-link-type="extended-attribute" href="https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions" id="ref-for-cereactions"><c- g>CEReactions</c-></a>] <c- b>attribute</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString④"><c- b>DOMString</c-></a> <dfn class="dfn-paneled idl-code" data-dfn-for="Element" data-dfn-type="attribute" data-export data-type="DOMString" id="dom-element-elementtiming"><code class="highlight"><c- g>elementTiming</c-></code></dfn>; }; </pre> - <p>The <code class="idl"><a data-link-type="idl" href="#dom-element-elementtiming" id="ref-for-dom-element-elementtiming">elementTiming</a></code> attribute must <a data-link-type="dfn">reflect</a> the element’s "<code class="highlight">elementtiming</code>" content attribute.</p> + <p>The <code class="idl"><a data-link-type="idl" href="#dom-element-elementtiming" id="ref-for-dom-element-elementtiming">elementTiming</a></code> attribute must <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflect</a> the element’s "<code class="highlight">elementtiming</code>" content attribute.</p> <p>Each <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#element" id="ref-for-element⑤">Element</a></code> has an <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="associated-image-request">associated image request</dfn> which is initially null. When the processing model for an <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#element" id="ref-for-element⑥">Element</a></code> <em>element</em> of type <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/embedded-content.html#htmlimageelement" id="ref-for-htmlimageelement">HTMLImageElement</a></code>, <code class="idl"><a data-link-type="idl" href="https://svgwg.org/svg2-draft/embedded.html#InterfaceSVGImageElement" id="ref-for-InterfaceSVGImageElement">SVGImageElement</a></code>, or <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement" id="ref-for-htmlvideoelement">HTMLVideoElement</a></code> creates a new image resource (e.g., to be displayed as an image or poster image), <em>element</em>’s <a data-link-type="dfn" href="#associated-image-request" id="ref-for-associated-image-request">associated image request</a> is set to the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage#image-request" id="ref-for-image-request">image request</a> of the created image resource.</p> <p class="note" role="note"><span class="marker">Note:</span> Every image resource that is obtained from a URL whose <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-scheme" id="ref-for-concept-url-scheme①">scheme</a> is equal to "data" has an associated <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage#image-request" id="ref-for-image-request①">image request</a> which is not fetched but still needs to be loaded. @@ -1414,20 +1413,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1521,6 +1506,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="33e96e84">list of available images</span> <li><span class="dfn-paneled" id="3f52e3d0">naturalHeight</span> <li><span class="dfn-paneled" id="4cecaafa">naturalWidth</span> + <li><span class="dfn-paneled" id="5ab7b520">reflect</span> <li><span class="dfn-paneled" id="e99bd18e">relevant global object</span> <li><span class="dfn-paneled" id="5991ccfb">relevant realm</span> <li><span class="dfn-paneled" id="9c4c1e66">relevant settings object</span> @@ -1558,7 +1544,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="de4bb79b">supportedEntryTypes</span> </ul> <li> - <a data-link-type="biblio">[RESOURCE-TIMING-2]</a> defines the following terms: + <a data-link-type="biblio">[RESOURCE-TIMING]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="2e117fc6">timing allow check</span> </ul> @@ -1588,11 +1574,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-geometry-1">[GEOMETRY-1] @@ -1604,12 +1590,12 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-intersection-observer">[INTERSECTION-OBSERVER] - <dd>Stefan Zager; Emilio Cobos Álvarez. <a href="https://w3c.github.io/IntersectionObserver/"><cite>Intersection Observer</cite></a>. URL: <a href="https://w3c.github.io/IntersectionObserver/">https://w3c.github.io/IntersectionObserver/</a> + <dd>Stefan Zager; Emilio Cobos Álvarez; Traian Captan. <a href="https://w3c.github.io/IntersectionObserver/"><cite>Intersection Observer</cite></a>. URL: <a href="https://w3c.github.io/IntersectionObserver/">https://w3c.github.io/IntersectionObserver/</a> <dt id="biblio-largest-contentful-paint">[LARGEST-CONTENTFUL-PAINT] <dd>Yoav Weiss; Nicolas Pena Moreno. <a href="https://w3c.github.io/largest-contentful-paint/"><cite>Largest Contentful Paint</cite></a>. URL: <a href="https://w3c.github.io/largest-contentful-paint/">https://w3c.github.io/largest-contentful-paint/</a> <dt id="biblio-performance-timeline">[PERFORMANCE-TIMELINE] <dd>Nicolas Pena Moreno. <a href="https://w3c.github.io/performance-timeline/"><cite>Performance Timeline</cite></a>. URL: <a href="https://w3c.github.io/performance-timeline/">https://w3c.github.io/performance-timeline/</a> - <dt id="biblio-resource-timing-2">[RESOURCE-TIMING-2] + <dt id="biblio-resource-timing">[RESOURCE-TIMING] <dd>Yoav Weiss; Noam Rosenthal. <a href="https://w3c.github.io/resource-timing/"><cite>Resource Timing</cite></a>. URL: <a href="https://w3c.github.io/resource-timing/">https://w3c.github.io/resource-timing/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> @@ -1645,10 +1631,26 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I }; </pre> + <details class="mdn-anno unpositioned" data-anno-for="dom-element-elementtiming"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/elementTiming" title="The elementTiming property of the Element interface identifies elements for observation in the PerformanceElementTiming API. The elementTiming property reflects the value of the elementtiming attribute.">Element/elementTiming</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-performanceelementtiming-element"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming/element" title="The element read-only property of the PerformanceElementTiming interface returns an Element which is a literal representation of the associated element.">PerformanceElementTiming/element</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming/element" title="The element read-only property of the PerformanceElementTiming interface returns an Element which is a pointer to the observed element.">PerformanceElementTiming/element</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> @@ -1776,7 +1778,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-performanceelementtiming-tojson"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming/toJSON" title="The toJSON() method of the PerformanceElementTiming interface is a standard serializer. It returns a JSON representation of the object&apos;s properties.">PerformanceElementTiming/toJSON</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming/toJSON" title="The toJSON() method of the PerformanceElementTiming interface is a serializer; it returns a JSON representation of the PerformanceElementTiming object.">PerformanceElementTiming/toJSON</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> @@ -1808,7 +1810,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="sec-performance-element-timing"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming" title="The PerformanceElementTiming interface of the Element Timing API reports timing information on a specific element identified by the page author. For example it could report timing information about the main image in an article.">PerformanceElementTiming</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceElementTiming" title="The PerformanceElementTiming interface contains render timing information for image and text node elements the developer annotated with an elementtiming attribute for observation.">PerformanceElementTiming</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> @@ -2043,6 +2045,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "55641d29": {"dfnID":"55641d29","dfnText":"image request","external":true,"refSections":[{"refs":[{"id":"ref-for-image-request"},{"id":"ref-for-image-request\u2460"},{"id":"ref-for-image-request\u2461"}],"title":"3.1. Modifications to the DOM specification"},{"refs":[{"id":"ref-for-image-request\u2462"},{"id":"ref-for-image-request\u2463"},{"id":"ref-for-image-request\u2464"},{"id":"ref-for-image-request\u2465"},{"id":"ref-for-image-request\u2466"}],"title":"3.2. Modifications to the CSS specification"},{"refs":[{"id":"ref-for-image-request\u2467"}],"title":"3.7. Element Timing processing"}],"url":"https://html.spec.whatwg.org/multipage#image-request"}, "597088f0": {"dfnID":"597088f0","dfnText":"Text","external":true,"refSections":[{"refs":[{"id":"ref-for-text"}],"title":"3.2. Modifications to the CSS specification"},{"refs":[{"id":"ref-for-text\u2460"}],"title":"3.6. Report text Element Timing"}],"url":"https://dom.spec.whatwg.org/#text"}, "5991ccfb": {"dfnID":"5991ccfb","dfnText":"relevant realm","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-relevant-realm"}],"title":"3.6. Report text Element Timing"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-realm"}, +"5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"}],"title":"3.1. Modifications to the DOM specification"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "5b31c866": {"dfnID":"5b31c866","dfnText":"font block period","external":true,"refSections":[{"refs":[{"id":"ref-for-font-block-period"}],"title":"3.2. Modifications to the CSS specification"}],"url":"https://drafts.csswg.org/css-fonts-4/#font-block-period"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"}],"title":"3. Processing model"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "692595fe": {"dfnID":"692595fe","dfnText":"ordered set","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-set"},{"id":"ref-for-ordered-set\u2460"}],"title":"3.1. Modifications to the DOM specification"}],"url":"https://infra.spec.whatwg.org/#ordered-set"}, @@ -2583,6 +2586,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage#dom-img-naturalheight": {"export":true,"for_":["img"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"naturalHeight","type":"attribute","url":"https://html.spec.whatwg.org/multipage#dom-img-naturalheight"}, "https://html.spec.whatwg.org/multipage#dom-img-naturalwidth": {"export":true,"for_":["img"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"naturalWidth","type":"attribute","url":"https://html.spec.whatwg.org/multipage#dom-img-naturalwidth"}, "https://html.spec.whatwg.org/multipage#image-request": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"image request","type":"dfn","url":"https://html.spec.whatwg.org/multipage#image-request"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"CEReactions","type":"extended-attribute","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active": {"export":true,"for_":["Document"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"fully active","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#htmlimageelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLImageElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#htmlimageelement"}, diff --git a/tests/github/WICG/encrypted-media-encryption-scheme/index.console.txt b/tests/github/WICG/encrypted-media-encryption-scheme/index.console.txt index ac7f4755b7..f21e0c79cd 100644 --- a/tests/github/WICG/encrypted-media-encryption-scheme/index.console.txt +++ b/tests/github/WICG/encrypted-media-encryption-scheme/index.console.txt @@ -6,9 +6,9 @@ LINE 75: No 'dfn' refs found for 'not present'. <a bs-line-number="75" data-link-type="dfn" data-lt="not present">not present</a> LINE 204: No 'dfn' refs found for 'not present'. <a bs-line-number="204" data-link-type="dfn" data-lt="not present">not present</a> -LINE ~159: Couldn't find section '#dom-mediakeysystemconfiguration' in spec 'encrypted-media': +LINE ~159: Couldn't find section '#dom-mediakeysystemconfiguration' in spec 'encrypted-media-2': [[encrypted-media#dom-mediakeysystemconfiguration|configurations]] -LINE ~159: Couldn't find section '#dom-mediakeysystemmediacapability' in spec 'encrypted-media': +LINE ~159: Couldn't find section '#dom-mediakeysystemmediacapability' in spec 'encrypted-media-2': [[encrypted-media#dom-mediakeysystemmediacapability|capabilities]] LINE 82: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="82" data-dfn-type="dfn" id="cbcs" data-lt="cbcs" data-noexport="by-default" class="dfn-paneled">cbcs</dfn> diff --git a/tests/github/WICG/encrypted-media-encryption-scheme/index.html b/tests/github/WICG/encrypted-media-encryption-scheme/index.html index 606947cc04..58a9e99c99 100644 --- a/tests/github/WICG/encrypted-media-encryption-scheme/index.html +++ b/tests/github/WICG/encrypted-media-encryption-scheme/index.html @@ -707,7 +707,7 @@ <h1 class="p-name no-ref" id="title">Encrypted Media: Encryption Scheme Query</h </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Encrypted Media: Encryption Scheme Query Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Encrypted Media: Encryption Scheme Query Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -748,7 +748,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1014,20 +1013,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1041,7 +1026,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> <li> - <a data-link-type="biblio">[ENCRYPTED-MEDIA]</a> defines the following terms: + <a data-link-type="biblio">[ENCRYPTED-MEDIA-2]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="9c2a0780">Clear Key</span> <li><span class="dfn-paneled" id="974c6c1b">Get Supported Capabilities...</span> @@ -1065,8 +1050,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> - <dt id="biblio-encrypted-media">[ENCRYPTED-MEDIA] - <dd>David Dorwin; et al. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> + <dt id="biblio-encrypted-media-2">[ENCRYPTED-MEDIA-2] + <dd>Joey Parrish; Greg Freedman. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> <dt id="biblio-html51">[HTML51] <dd>Steve Faulkner; et al. <a href="https://rawgit.com/w3c/html/html5.1-2/single-page.html"><cite>HTML 5.1 2nd Edition</cite></a>. URL: <a href="https://rawgit.com/w3c/html/html5.1-2/single-page.html">https://rawgit.com/w3c/html/html5.1-2/single-page.html</a> <dt id="biblio-rfc2119">[RFC2119] @@ -1691,7 +1676,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#cenc": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"encrypted-media-encryption-scheme","spec":"encrypted-media-encryption-scheme-1","status":"local","text":"cenc","type":"dfn","url":"#cenc"}, "#dom-mediakeysystemmediacapability-encryptionscheme": {"export":true,"for_":["MediaKeySystemMediaCapability"],"level":"1","normative":true,"shortname":"encrypted-media-encryption-scheme","spec":"encrypted-media-encryption-scheme-1","status":"local","text":"encryptionScheme","type":"dict-member","url":"#dom-mediakeysystemmediacapability-encryptionscheme"}, "https://heycam.github.io/webidl/#dfn-present": {"export":true,"for_":[],"level":"","normative":true,"shortname":"webidl","spec":"webidl","status":"anchor-block","text":"present","type":"dfn","url":"https://heycam.github.io/webidl/#dfn-present"}, -"https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"encrypted-media","spec":"encrypted-media","status":"current","text":"MediaKeySystemMediaCapability","type":"dictionary","url":"https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability"}, +"https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"encrypted-media","spec":"encrypted-media-2","status":"current","text":"MediaKeySystemMediaCapability","type":"dictionary","url":"https://w3c.github.io/encrypted-media/#dom-mediakeysystemmediacapability"}, "https://webidl.spec.whatwg.org/#idl-DOMString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "https://www.w3.org/TR/encrypted-media/#clear-key": {"export":true,"for_":[],"level":"","normative":true,"shortname":"encrypted-media","spec":"encrypted-media","status":"anchor-block","text":"Clear Key","type":"interface","url":"https://www.w3.org/TR/encrypted-media/#clear-key"}, "https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess": {"export":true,"for_":[],"level":"","normative":true,"shortname":"encrypted-media","spec":"encrypted-media","status":"anchor-block","text":"MediaKeySystemAccess","type":"interface","url":"https://www.w3.org/TR/encrypted-media/#dom-mediakeysystemaccess"}, diff --git a/tests/github/WICG/entries-api/index.html b/tests/github/WICG/entries-api/index.html index ed141c9aff..315874f1bf 100644 --- a/tests/github/WICG/entries-api/index.html +++ b/tests/github/WICG/entries-api/index.html @@ -972,7 +972,7 @@ <h1 class="p-name no-ref" id="title">File and Directory Entries API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the File and Directory Entries API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the File and Directory Entries API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1025,7 +1025,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1746,20 +1745,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1904,7 +1889,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5d1a2ad0">TypeMismatchError</span> <li><span class="dfn-paneled" id="b0d7f3c3">USVString</span> <li><span class="dfn-paneled" id="5372cca8">boolean</span> - <li><span class="dfn-paneled" id="c164edfe">created</span> + <li><span class="dfn-paneled" id="6a73c310">create</span> <li><span class="dfn-paneled" id="10ce5f6f">invoke</span> <li><span class="dfn-paneled" id="9cce47fd">sequence</span> <li><span class="dfn-paneled" id="4013a022">this</span> @@ -2038,7 +2023,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2048,7 +2033,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/File/webkitRelativePath" title="The File.webkitRelativePath is a read-only property that contains a string which specifies the file&apos;s path relative to the directory selected by the user in an <input> element with its webkitdirectory attribute set.">File/webkitRelativePath</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>13+</span></span> + <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>13+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2118,7 +2103,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2134,7 +2119,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2150,7 +2135,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2166,7 +2151,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2182,7 +2167,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2198,7 +2183,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>18</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2214,7 +2199,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2230,7 +2215,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2246,7 +2231,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2262,7 +2247,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2278,7 +2263,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2294,7 +2279,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2310,7 +2295,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2326,7 +2311,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2342,7 +2327,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2352,7 +2337,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory" title="The HTMLInputElement.webkitdirectory is a property that reflects the webkitdirectory HTML attribute and indicates that the <input> element should let the user select directories instead of files. When a directory is selected, the directory and its entire hierarchy of contents are included in the set of selected items. The selected file system entries can be obtained using the webkitEntries property.">HTMLInputElement/webkitdirectory</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>6+</span></span> + <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>7+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2374,7 +2359,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2591,6 +2576,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5d1a2ad0": {"dfnID":"5d1a2ad0","dfnText":"TypeMismatchError","external":true,"refSections":[{"refs":[{"id":"ref-for-typemismatcherror"}],"title":"7. Files and Directories"},{"refs":[{"id":"ref-for-typemismatcherror\u2460"},{"id":"ref-for-typemismatcherror\u2461"},{"id":"ref-for-typemismatcherror\u2462"},{"id":"ref-for-typemismatcherror\u2463"}],"title":"7.2. The FileSystemDirectoryEntry Interface"},{"refs":[{"id":"ref-for-typemismatcherror\u2464"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"https://webidl.spec.whatwg.org/#typemismatcherror"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"}],"title":"7. Files and Directories"},{"refs":[{"id":"ref-for-idl-undefined\u2460"}],"title":"7.1. The FileSystemEntry Interface"},{"refs":[{"id":"ref-for-idl-undefined\u2461"},{"id":"ref-for-idl-undefined\u2462"},{"id":"ref-for-idl-undefined\u2463"}],"title":"7.2. The FileSystemDirectoryEntry Interface"},{"refs":[{"id":"ref-for-idl-undefined\u2464"},{"id":"ref-for-idl-undefined\u2465"}],"title":"7.3. The FileSystemDirectoryReader Interface"},{"refs":[{"id":"ref-for-idl-undefined\u2466"},{"id":"ref-for-idl-undefined\u2467"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "66aee777": {"dfnID":"66aee777","dfnText":"type","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-input-type"}],"title":"5. HTML: Forms"}],"url":"https://html.spec.whatwg.org/multipage/input.html#attr-input-type"}, +"6a73c310": {"dfnID":"6a73c310","dfnText":"create","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"}],"title":"7.1. The FileSystemEntry Interface"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460"},{"id":"ref-for-dfn-create-exception\u2461"},{"id":"ref-for-dfn-create-exception\u2462"},{"id":"ref-for-dfn-create-exception\u2463"},{"id":"ref-for-dfn-create-exception\u2464"},{"id":"ref-for-dfn-create-exception\u2465"},{"id":"ref-for-dfn-create-exception\u2466"},{"id":"ref-for-dfn-create-exception\u2467"}],"title":"7.2. The FileSystemDirectoryEntry Interface"},{"refs":[{"id":"ref-for-dfn-create-exception\u2468"},{"id":"ref-for-dfn-create-exception\u2460\u24ea"}],"title":"7.3. The FileSystemDirectoryReader Interface"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460\u2460"},{"id":"ref-for-dfn-create-exception\u2460\u2461"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "6d417535": {"dfnID":"6d417535","dfnText":"asynciterator","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-asynciterator-interface"}],"title":"7.3. The FileSystemDirectoryReader Interface"}],"url":"https://tc39.github.io/ecma262/#sec-asynciterator-interface"}, "6fca3fed": {"dfnID":"6fca3fed","dfnText":"FileReader","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-filereader"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"https://w3c.github.io/FileAPI/#dfn-filereader"}, "797018a7": {"dfnID":"797018a7","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"}],"title":"7.3. The FileSystemDirectoryReader Interface"}],"url":"https://webidl.spec.whatwg.org/#invalidstateerror"}, @@ -2603,7 +2589,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a50de0b6": {"dfnID":"a50de0b6","dfnText":"read/write mode","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-dnd-rw"}],"title":"6. HTML: Drag and drop"}],"url":"https://html.spec.whatwg.org/multipage/interaction.html#concept-dnd-rw"}, "absolute-path": {"dfnID":"absolute-path","dfnText":"absolute path","external":false,"refSections":[{"refs":[{"id":"ref-for-absolute-path"}],"title":"2.1. Names and Paths"},{"refs":[{"id":"ref-for-absolute-path\u2460"}],"title":"2.3. Entries"},{"refs":[{"id":"ref-for-absolute-path\u2461"},{"id":"ref-for-absolute-path\u2462"},{"id":"ref-for-absolute-path\u2463"},{"id":"ref-for-absolute-path\u2464"},{"id":"ref-for-absolute-path\u2465"},{"id":"ref-for-absolute-path\u2466"}],"title":"3. Algorithms"}],"url":"#absolute-path"}, "b0d7f3c3": {"dfnID":"b0d7f3c3","dfnText":"USVString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-USVString"}],"title":"2.1. Names and Paths"},{"refs":[{"id":"ref-for-idl-USVString\u2460"}],"title":"2.2. Files and Directories"},{"refs":[{"id":"ref-for-idl-USVString\u2461"}],"title":"4. The File Interface"},{"refs":[{"id":"ref-for-idl-USVString\u2462"},{"id":"ref-for-idl-USVString\u2463"}],"title":"7.1. The FileSystemEntry Interface"},{"refs":[{"id":"ref-for-idl-USVString\u2464"},{"id":"ref-for-idl-USVString\u2465"}],"title":"7.2. The FileSystemDirectoryEntry Interface"},{"refs":[{"id":"ref-for-idl-USVString\u2466"}],"title":"7.5. The FileSystem Interface"}],"url":"https://webidl.spec.whatwg.org/#idl-USVString"}, -"c164edfe": {"dfnID":"c164edfe","dfnText":"created","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"}],"title":"7.1. The FileSystemEntry Interface"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460"},{"id":"ref-for-dfn-create-exception\u2461"},{"id":"ref-for-dfn-create-exception\u2462"},{"id":"ref-for-dfn-create-exception\u2463"},{"id":"ref-for-dfn-create-exception\u2464"},{"id":"ref-for-dfn-create-exception\u2465"},{"id":"ref-for-dfn-create-exception\u2466"},{"id":"ref-for-dfn-create-exception\u2467"}],"title":"7.2. The FileSystemDirectoryEntry Interface"},{"refs":[{"id":"ref-for-dfn-create-exception\u2468"},{"id":"ref-for-dfn-create-exception\u2460\u24ea"}],"title":"7.3. The FileSystemDirectoryReader Interface"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460\u2460"},{"id":"ref-for-dfn-create-exception\u2460\u2461"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "c3e881ef": {"dfnID":"c3e881ef","dfnText":"SecurityError","external":true,"refSections":[{"refs":[{"id":"ref-for-securityerror"},{"id":"ref-for-securityerror\u2460"}],"title":"7.2. The FileSystemDirectoryEntry Interface"}],"url":"https://webidl.spec.whatwg.org/#securityerror"}, "callbackdef-errorcallback": {"dfnID":"callbackdef-errorcallback","dfnText":"ErrorCallback","external":false,"refSections":[{"refs":[{"id":"ref-for-callbackdef-errorcallback"}],"title":"7. Files and Directories"},{"refs":[{"id":"ref-for-callbackdef-errorcallback\u2460"}],"title":"7.1. The FileSystemEntry Interface"},{"refs":[{"id":"ref-for-callbackdef-errorcallback\u2461"},{"id":"ref-for-callbackdef-errorcallback\u2462"}],"title":"7.2. The FileSystemDirectoryEntry Interface"},{"refs":[{"id":"ref-for-callbackdef-errorcallback\u2463"}],"title":"7.3. The FileSystemDirectoryReader Interface"},{"refs":[{"id":"ref-for-callbackdef-errorcallback\u2464"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"#callbackdef-errorcallback"}, "callbackdef-filecallback": {"dfnID":"callbackdef-filecallback","dfnText":"FileCallback","external":false,"refSections":[{"refs":[{"id":"ref-for-callbackdef-filecallback"}],"title":"7.4. The FileSystemFileEntry Interface"}],"url":"#callbackdef-filecallback"}, @@ -3213,7 +3198,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://w3c.github.io/FileAPI/#dfn-filereader": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"FileReader","type":"interface","url":"https://w3c.github.io/FileAPI/#dfn-filereader"}, "https://w3c.github.io/FileAPI/#dfn-name": {"export":true,"for_":["File"],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"name","type":"attribute","url":"https://w3c.github.io/FileAPI/#dfn-name"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, -"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"created","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, +"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "https://webidl.spec.whatwg.org/#exceptiondef-typeerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"TypeError","type":"exception","url":"https://webidl.spec.whatwg.org/#exceptiondef-typeerror"}, "https://webidl.spec.whatwg.org/#idl-DOMException": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMException","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMException"}, "https://webidl.spec.whatwg.org/#idl-USVString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"USVString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-USVString"}, diff --git a/tests/github/WICG/event-timing/index.html b/tests/github/WICG/event-timing/index.html index 9465e3e01d..4b923694a8 100644 --- a/tests/github/WICG/event-timing/index.html +++ b/tests/github/WICG/event-timing/index.html @@ -972,7 +972,7 @@ <h1 class="p-name no-ref" id="title">Event Timing API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Event Timing API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Event Timing API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1024,7 +1024,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1464,20 +1463,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1647,7 +1632,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-paint-timing">[PAINT-TIMING] - <dd>Shubhie Panicker. <a href="https://w3c.github.io/paint-timing/"><cite>Paint Timing 1</cite></a>. URL: <a href="https://w3c.github.io/paint-timing/">https://w3c.github.io/paint-timing/</a> + <dd>Ian Clelland; Noam Rosenthal. <a href="https://w3c.github.io/paint-timing/"><cite>Paint Timing</cite></a>. URL: <a href="https://w3c.github.io/paint-timing/">https://w3c.github.io/paint-timing/</a> <dt id="biblio-performance-timeline-2">[PERFORMANCE-TIMELINE-2] <dd>Nicolas Pena Moreno. <a href="https://w3c.github.io/performance-timeline/"><cite>Performance Timeline</cite></a>. URL: <a href="https://w3c.github.io/performance-timeline/">https://w3c.github.io/performance-timeline/</a> <dt id="biblio-pointerevents">[POINTEREVENTS] @@ -1694,7 +1679,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="sec-event-counts"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/EventCounts" title="The EventCounts interface is a read-only map where the keys are event types and the values are the number of events that have been dispatched for that event type.">EventCounts</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/EventCounts" title="The EventCounts interface of the Performance API provides the number of events that have been dispatched for each event type.">EventCounts</a></p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> @@ -1786,7 +1771,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-performanceeventtiming-tojson"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEventTiming/toJSON" title="The toJSON() method is a serializer; it returns a JSON representation of the performance event timing entry object.">PerformanceEventTiming/toJSON</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEventTiming/toJSON" title="The toJSON() method of the PerformanceEventTiming interface is a serializer; it returns a JSON representation of the PerformanceEventTiming object.">PerformanceEventTiming/toJSON</a></p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> diff --git a/tests/github/WICG/file-system-access/index.console.txt b/tests/github/WICG/file-system-access/index.console.txt index ea5695df06..40d9cc56f5 100644 --- a/tests/github/WICG/file-system-access/index.console.txt +++ b/tests/github/WICG/file-system-access/index.console.txt @@ -1,6 +1,34 @@ +LINE ~118: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:file-system-access-1; type:dfn; for:directory entry; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +[=children=] +LINE ~129: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:file-system-access-1; type:dfn; for:directory entry; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +[=children=] +LINE ~151: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:file-system-access-1; type:dfn; for:directory entry; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +[=children=] LINE ~206: No 'dfn' refs found for 'boolean permission query algorithm'. [=boolean permission query algorithm=] LINE ~215: No 'dfn' refs found for 'boolean permission query algorithm'. [=boolean permission query algorithm=] +LINE ~959: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] LINE ~1419: No 'dfn' refs found for 'pairs'. [=pairs=] diff --git a/tests/github/WICG/file-system-access/index.html b/tests/github/WICG/file-system-access/index.html index 9f02d0a119..6b1ec86ada 100644 --- a/tests/github/WICG/file-system-access/index.html +++ b/tests/github/WICG/file-system-access/index.html @@ -988,7 +988,7 @@ <h1 class="p-name no-ref" id="title">File System Access</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the File System Access Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the File System Access Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1080,7 +1080,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1142,7 +1141,7 @@ <h3 class="heading settled" data-level="2.1" id="concepts"><span class="secno">2 hence the inclusion of + and . as allowed code points.</p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="file|file entry" data-noexport id="file">file entry</dfn> additionally consists of <dfn class="dfn-paneled" data-dfn-for="file entry" data-dfn-type="dfn" data-noexport id="file-entry-binary-data">binary data</dfn> (a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#byte-sequence" id="ref-for-byte-sequence">byte sequence</a>) and a <dfn class="dfn-paneled" data-dfn-for="file entry" data-dfn-type="dfn" data-noexport id="file-entry-modification-timestamp">modification timestamp</dfn> (a number representing the number of milliseconds since the <a data-link-type="dfn" href="https://w3c.github.io/FileAPI/#UnixEpoch" id="ref-for-UnixEpoch">Unix Epoch</a>).</p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="directory|directory entry" data-noexport id="directory">directory entry</dfn> additionally consists of a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set">set</a> of <dfn class="dfn-paneled" data-dfn-for="directory entry" data-dfn-type="dfn" data-noexport id="directory-entry-children">children</dfn>, which are themselves <a data-link-type="dfn" href="#entry" id="ref-for-entry①">entries</a>. Each member is either a <a data-link-type="dfn" href="#file" id="ref-for-file①">file</a> or a <a data-link-type="dfn" href="#directory" id="ref-for-directory①">directory</a>.</p> - <p>An <a data-link-type="dfn" href="#entry" id="ref-for-entry②">entry</a> <var>entry</var> should be <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain">contained</a> in the <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children">children</a> of at most one <a data-link-type="dfn" href="#directory" id="ref-for-directory②">directory entry</a>, and that directory entry is also known as <var>entry</var>’s <dfn class="dfn-paneled" data-dfn-for="entry" data-dfn-type="dfn" data-noexport id="entry-parent">parent</dfn>. + <p>An <a data-link-type="dfn" href="#entry" id="ref-for-entry②">entry</a> <var>entry</var> should be <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain">contained</a> in the <a data-link-type="dfn">children</a> of at most one <a data-link-type="dfn" href="#directory" id="ref-for-directory②">directory entry</a>, and that directory entry is also known as <var>entry</var>’s <dfn class="dfn-paneled" data-dfn-for="entry" data-dfn-type="dfn" data-noexport id="entry-parent">parent</dfn>. An <a data-link-type="dfn" href="#entry" id="ref-for-entry③">entry</a>'s <a data-link-type="dfn" href="#entry-parent" id="ref-for-entry-parent">parent</a> is null if no such directory entry exists.</p> <p class="note" role="note"><span class="marker">Note:</span> Two different <a data-link-type="dfn" href="#entry" id="ref-for-entry④">entries</a> can represent the same file or directory on disk, in which case it is possible for both entries to have a different parent, or for one entry to have a @@ -1151,7 +1150,7 @@ <h3 class="heading settled" data-level="2.1" id="concepts"><span class="secno">2 and an entry will have a parent in all other cases.</p> <p><a data-link-type="dfn" href="#entry" id="ref-for-entry⑤">Entries</a> can (but don’t have to) be backed by files on the host operating system’s local file system, so it is possible for the <a data-link-type="dfn" href="#file-entry-binary-data" id="ref-for-file-entry-binary-data">binary data</a>, <a data-link-type="dfn" href="#file-entry-modification-timestamp" id="ref-for-file-entry-modification-timestamp">modification timestamp</a>, -and <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children①">children</a> of entries to be modified by applications outside of this specification. +and <a data-link-type="dfn">children</a> of entries to be modified by applications outside of this specification. Exactly how external changes are reflected in the data structures defined by this specification, as well as how changes made to the data structures defined here are reflected externally is left up to individual user-agent implementations.</p> @@ -1173,7 +1172,7 @@ <h3 class="heading settled" data-level="2.1" id="concepts"><span class="secno">2 <li data-md> <p>Let <var>childPromises</var> be « ».</p> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate">For each</a> <var>entry</var> of <var>root</var>’s <a data-link-type="dfn" href="#filesystemhandle-entry" id="ref-for-filesystemhandle-entry">entry</a>'s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children②">children</a>:</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate">For each</a> <var>entry</var> of <var>root</var>’s <a data-link-type="dfn" href="#filesystemhandle-entry" id="ref-for-filesystemhandle-entry">entry</a>'s <a data-link-type="dfn">children</a>:</p> <ol> <li data-md> <p>Let <var>p</var> be the result of <a data-link-type="dfn" href="#entry-resolve" id="ref-for-entry-resolve">resolving</a> <var>child</var> relative to <var>entry</var>.</p> @@ -1669,7 +1668,7 @@ <h4 class="heading settled" data-level="2.5.1" id="api-filesystemdirectoryhandle <p>If <var>permissionStatus</var> is not <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/permissions/#dom-permissionstate-granted" id="ref-for-dom-permissionstate-granted⑤">"granted"</a></code>, reject <var>promise</var> with a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror③">NotAllowedError</a></code> and return <var>promise</var>.</p> <li data-md> - <p>Let <var>child</var> be an <a data-link-type="dfn" href="#entry" id="ref-for-entry①③">entry</a> in <var>directory</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children③">children</a>, + <p>Let <var>child</var> be an <a data-link-type="dfn" href="#entry" id="ref-for-entry①③">entry</a> in <var>directory</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children">children</a>, such that <var>child</var>’s <a data-link-type="dfn" href="#entry-name" id="ref-for-entry-name⑤">name</a> is not contained in <var>iterator</var>’s <a data-link-type="dfn" href="#filesystemdirectoryhandle-iterator-past-results" id="ref-for-filesystemdirectoryhandle-iterator-past-results">past results</a>, or <code>null</code> if no such entry exists.</p> <p class="note" role="note"><span class="marker">Note:</span> This is intentionally very vague about the iteration order. Different platforms @@ -1757,7 +1756,7 @@ <h4 class="heading settled" data-level="2.5.2" id="api-filesystemdirectoryhandle <p>If <var>permissionStatus</var> is not <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/permissions/#dom-permissionstate-granted" id="ref-for-dom-permissionstate-granted⑥">"granted"</a></code>, reject <var>result</var> with a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror④">NotAllowedError</a></code> and abort.</p> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate①">For each</a> <var>child</var> of <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children④">children</a>:</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate①">For each</a> <var>child</var> of <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children①">children</a>:</p> <ol> <li data-md> <p>If <var>child</var>’s <a data-link-type="dfn" href="#entry-name" id="ref-for-entry-name⑧">name</a> equals <var>name</var>:</p> @@ -1787,7 +1786,7 @@ <h4 class="heading settled" data-level="2.5.2" id="api-filesystemdirectoryhandle <li data-md> <p>Set <var>child</var>’s <a data-link-type="dfn" href="#file-entry-modification-timestamp" id="ref-for-file-entry-modification-timestamp②">modification timestamp</a> to the current time.</p> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#set-append" id="ref-for-set-append①">Append</a> <var>child</var> to <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑤">children</a>.</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#set-append" id="ref-for-set-append①">Append</a> <var>child</var> to <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children②">children</a>.</p> <li data-md> <p>If creating <var>child</var> in the underlying file system throws an exception, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#reject" id="ref-for-reject⑥">reject</a> <var>result</var> with that exception and abort.</p> <p class="issue" id="issue-721a33e4"><a class="self-link" href="#issue-721a33e4"></a> Better specify what possible exceptions this could throw. <a href="https://github.com/wicg/file-system-access/issues/68">[Issue #68]</a></p> @@ -1847,7 +1846,7 @@ <h4 class="heading settled" data-level="2.5.3" id="api-filesystemdirectoryhandle <p>If <var>permissionStatus</var> is not <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/permissions/#dom-permissionstate-granted" id="ref-for-dom-permissionstate-granted⑦">"granted"</a></code>, reject <var>result</var> with a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror⑤">NotAllowedError</a></code> and abort.</p> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate②">For each</a> <var>child</var> of <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑥">children</a>:</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate②">For each</a> <var>child</var> of <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children③">children</a>:</p> <ol> <li data-md> <p>If <var>child</var>’s <a data-link-type="dfn" href="#entry-name" id="ref-for-entry-name①⓪">name</a> equals <var>name</var>:</p> @@ -1873,9 +1872,9 @@ <h4 class="heading settled" data-level="2.5.3" id="api-filesystemdirectoryhandle <li data-md> <p>Set <var>child</var>’s <a data-link-type="dfn" href="#entry-name" id="ref-for-entry-name①①">name</a> to <var>name</var>.</p> <li data-md> - <p>Set <var>child</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑦">children</a> to an empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set②">set</a>.</p> + <p>Set <var>child</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children④">children</a> to an empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set②">set</a>.</p> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#set-append" id="ref-for-set-append②">Append</a> <var>child</var> to <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑧">children</a>.</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#set-append" id="ref-for-set-append②">Append</a> <var>child</var> to <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑤">children</a>.</p> <li data-md> <p>If creating <var>child</var> in the underlying file system throws an exception, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#reject" id="ref-for-reject①①">reject</a> <var>result</var> with that exception and abort.</p> <p class="issue" id="issue-721a33e4①"><a class="self-link" href="#issue-721a33e4①"></a> Better specify what possible exceptions this could throw. <a href="https://github.com/wicg/file-system-access/issues/68">[Issue #68]</a></p> @@ -1924,7 +1923,7 @@ <h4 class="heading settled" data-level="2.5.4" id="api-filesystemdirectoryhandle <p>If <var>permissionStatus</var> is not <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/permissions/#dom-permissionstate-granted" id="ref-for-dom-permissionstate-granted⑧">"granted"</a></code>, reject <var>result</var> with a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror⑥">NotAllowedError</a></code> and abort.</p> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate③">For each</a> <var>child</var> of <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑨">children</a>:</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate③">For each</a> <var>child</var> of <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑥">children</a>:</p> <ol> <li data-md> <p>If <var>child</var>’s <a data-link-type="dfn" href="#entry-name" id="ref-for-entry-name①②">name</a> equals <var>name</var>:</p> @@ -1933,14 +1932,14 @@ <h4 class="heading settled" data-level="2.5.4" id="api-filesystemdirectoryhandle <p>If <var>child</var> is a <a data-link-type="dfn" href="#directory" id="ref-for-directory⑦">directory entry</a>:</p> <ol> <li data-md> - <p>If <var>child</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children①⓪">children</a> is not <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-is-empty" id="ref-for-list-is-empty">empty</a> and <var>options</var>.<code class="idl"><a data-link-type="idl" href="#dom-filesystemremoveoptions-recursive" id="ref-for-dom-filesystemremoveoptions-recursive②">recursive</a></code> is <code>false</code>:</p> + <p>If <var>child</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑦">children</a> is not <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-is-empty" id="ref-for-list-is-empty">empty</a> and <var>options</var>.<code class="idl"><a data-link-type="idl" href="#dom-filesystemremoveoptions-recursive" id="ref-for-dom-filesystemremoveoptions-recursive②">recursive</a></code> is <code>false</code>:</p> <ol> <li data-md> <p><a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#reject" id="ref-for-reject①④">Reject</a> <var>result</var> with an <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#invalidmodificationerror" id="ref-for-invalidmodificationerror">InvalidModificationError</a></code> and abort.</p> </ol> </ol> <li data-md> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-remove" id="ref-for-list-remove">Remove</a> <var>child</var> from <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children①①">children</a>.</p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-remove" id="ref-for-list-remove">Remove</a> <var>child</var> from <var>entry</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑧">children</a>.</p> <li data-md> <p>If removing <var>child</var> in the underlying file system throws an exception, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#reject" id="ref-for-reject①⑤">reject</a> <var>result</var> with that exception and abort.</p> <p class="note" role="note"><span class="marker">Note:</span> If <code class="idl"><a data-link-type="idl" href="#dom-filesystemremoveoptions-recursive" id="ref-for-dom-filesystemremoveoptions-recursive③">recursive</a></code> is <code>true</code>, the removal can fail @@ -2868,7 +2867,7 @@ <h2 class="heading settled" data-level="4" id="sandboxed-filesystem"><span class <li data-md> <p>Set <var>dir</var>’s <a data-link-type="dfn" href="#entry-name" id="ref-for-entry-name①③">name</a> to <code>""</code>.</p> <li data-md> - <p>Set <var>dir</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children①②">children</a> to an empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set③">set</a>.</p> + <p>Set <var>dir</var>’s <a data-link-type="dfn" href="#directory-entry-children" id="ref-for-directory-entry-children⑨">children</a> to an empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set③">set</a>.</p> <li data-md> <p>Set <var>map</var>["root"] to <var>dir</var>.</p> </ol> @@ -3012,20 +3011,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3544,7 +3529,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3560,7 +3545,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3940,7 +3925,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dictdef-savefilepickeroptions": {"dfnID":"dictdef-savefilepickeroptions","dfnText":"SaveFilePickerOptions","external":false,"refSections":[{"refs":[{"id":"ref-for-dictdef-savefilepickeroptions"}],"title":"3. Accessing Local File System"}],"url":"#dictdef-savefilepickeroptions"}, "dictdef-writeparams": {"dfnID":"dictdef-writeparams","dfnText":"WriteParams","external":false,"refSections":[{"refs":[{"id":"ref-for-dictdef-writeparams"},{"id":"ref-for-dictdef-writeparams\u2460"},{"id":"ref-for-dictdef-writeparams\u2461"},{"id":"ref-for-dictdef-writeparams\u2462"},{"id":"ref-for-dictdef-writeparams\u2463"}],"title":"2.6. The FileSystemWritableFileStream interface"}],"url":"#dictdef-writeparams"}, "directory": {"dfnID":"directory","dfnText":"directory entry","external":false,"refSections":[{"refs":[{"id":"ref-for-directory"},{"id":"ref-for-directory\u2460"},{"id":"ref-for-directory\u2461"},{"id":"ref-for-directory\u2462"}],"title":"2.1. Concepts"},{"refs":[{"id":"ref-for-directory\u2463"}],"title":"2.5. The FileSystemDirectoryHandle interface"},{"refs":[{"id":"ref-for-directory\u2464"}],"title":"2.5.2. The getFileHandle() method"},{"refs":[{"id":"ref-for-directory\u2465"}],"title":"2.5.3. The getDirectoryHandle() method"},{"refs":[{"id":"ref-for-directory\u2466"}],"title":"2.5.4. The removeEntry() method"},{"refs":[{"id":"ref-for-directory\u2467"}],"title":"3.5. The showDirectoryPicker() method"},{"refs":[{"id":"ref-for-directory\u2468"},{"id":"ref-for-directory\u2460\u24ea"}],"title":"3.6. Drag and Drop"},{"refs":[{"id":"ref-for-directory\u2460\u2460"}],"title":"4. Accessing the Origin Private File System"}],"url":"#directory"}, -"directory-entry-children": {"dfnID":"directory-entry-children","dfnText":"children","external":false,"refSections":[{"refs":[{"id":"ref-for-directory-entry-children"},{"id":"ref-for-directory-entry-children\u2460"},{"id":"ref-for-directory-entry-children\u2461"}],"title":"2.1. Concepts"},{"refs":[{"id":"ref-for-directory-entry-children\u2462"}],"title":"2.5.1. Directory iteration"},{"refs":[{"id":"ref-for-directory-entry-children\u2463"},{"id":"ref-for-directory-entry-children\u2464"}],"title":"2.5.2. The getFileHandle() method"},{"refs":[{"id":"ref-for-directory-entry-children\u2465"},{"id":"ref-for-directory-entry-children\u2466"},{"id":"ref-for-directory-entry-children\u2467"}],"title":"2.5.3. The getDirectoryHandle() method"},{"refs":[{"id":"ref-for-directory-entry-children\u2468"},{"id":"ref-for-directory-entry-children\u2460\u24ea"},{"id":"ref-for-directory-entry-children\u2460\u2460"}],"title":"2.5.4. The removeEntry() method"},{"refs":[{"id":"ref-for-directory-entry-children\u2460\u2461"}],"title":"4. Accessing the Origin Private File System"}],"url":"#directory-entry-children"}, +"directory-entry-children": {"dfnID":"directory-entry-children","dfnText":"children","external":false,"refSections":[{"refs":[{"id":"ref-for-directory-entry-children"}],"title":"2.5.1. Directory iteration"},{"refs":[{"id":"ref-for-directory-entry-children\u2460"},{"id":"ref-for-directory-entry-children\u2461"}],"title":"2.5.2. The getFileHandle() method"},{"refs":[{"id":"ref-for-directory-entry-children\u2462"},{"id":"ref-for-directory-entry-children\u2463"},{"id":"ref-for-directory-entry-children\u2464"}],"title":"2.5.3. The getDirectoryHandle() method"},{"refs":[{"id":"ref-for-directory-entry-children\u2465"},{"id":"ref-for-directory-entry-children\u2466"},{"id":"ref-for-directory-entry-children\u2467"}],"title":"2.5.4. The removeEntry() method"},{"refs":[{"id":"ref-for-directory-entry-children\u2468"}],"title":"4. Accessing the Origin Private File System"}],"url":"#directory-entry-children"}, "dom-datatransferitem-getasfilesystemhandle": {"dfnID":"dom-datatransferitem-getasfilesystemhandle","dfnText":"getAsFileSystemHandle()","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-datatransferitem-getasfilesystemhandle"},{"id":"ref-for-dom-datatransferitem-getasfilesystemhandle\u2460"}],"title":"3.6. Drag and Drop"}],"url":"#dom-datatransferitem-getasfilesystemhandle"}, "dom-filepickeraccepttype-accept": {"dfnID":"dom-filepickeraccepttype-accept","dfnText":"accept","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-filepickeraccepttype-accept"},{"id":"ref-for-dom-filepickeraccepttype-accept\u2460"},{"id":"ref-for-dom-filepickeraccepttype-accept\u2461"},{"id":"ref-for-dom-filepickeraccepttype-accept\u2462"},{"id":"ref-for-dom-filepickeraccepttype-accept\u2463"}],"title":"3.4. FilePickerOptions.types"}],"url":"#dom-filepickeraccepttype-accept"}, "dom-filepickeraccepttype-description": {"dfnID":"dom-filepickeraccepttype-description","dfnText":"description","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-filepickeraccepttype-description"},{"id":"ref-for-dom-filepickeraccepttype-description\u2460"},{"id":"ref-for-dom-filepickeraccepttype-description\u2461"},{"id":"ref-for-dom-filepickeraccepttype-description\u2462"}],"title":"3.4. FilePickerOptions.types"}],"url":"#dom-filepickeraccepttype-description"}, diff --git a/tests/github/WICG/floc/floc.html b/tests/github/WICG/floc/floc.html index 237ef6ff89..58a471c6d5 100644 --- a/tests/github/WICG/floc/floc.html +++ b/tests/github/WICG/floc/floc.html @@ -705,7 +705,7 @@ <h1 class="p-name no-ref" id="title">Federated Learning of Cohorts</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Federated Learning of Cohorts Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Federated Learning of Cohorts Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -765,7 +765,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -947,20 +946,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> 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 931e821a56..69cacfeab2 100644 --- a/tests/github/WICG/get-installed-related-apps/spec/index.html +++ b/tests/github/WICG/get-installed-related-apps/spec/index.html @@ -745,7 +745,7 @@ <h1 class="p-name no-ref" id="title">Get Installed Related Apps API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Get Installed Related Apps API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Get Installed Related Apps API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -799,7 +799,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1006,20 +1005,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/hdcp-detection/index.console.txt b/tests/github/WICG/hdcp-detection/index.console.txt index 8895f4da6d..30755fc491 100644 --- a/tests/github/WICG/hdcp-detection/index.console.txt +++ b/tests/github/WICG/hdcp-detection/index.console.txt @@ -2,11 +2,13 @@ LINK ERROR: Ambiguous for-less link for 'MediaKeys', please see <https://speced. Local references: spec:encrypted-media; type:interface; for:EME; text:MediaKeys for-less references: -spec:encrypted-media; type:interface; for:/; text:MediaKeys +spec:encrypted-media-2; type:interface; for:/; text:MediaKeys +spec:encrypted-media-2; type:interface; for:/; text:MediaKeys <a data-lt="MediaKeys" data-link-type="interface">MediaKeys</a> LINK ERROR: Ambiguous for-less link for 'MediaKeyStatus', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:encrypted-media; type:interface; for:EME; text:MediaKeyStatus for-less references: -spec:encrypted-media; type:enum; for:/; text:MediaKeyStatus +spec:encrypted-media-2; type:enum; for:/; text:MediaKeyStatus +spec:encrypted-media-2; type:enum; for:/; text:MediaKeyStatus <a data-link-type="idl-name" data-lt="MediaKeyStatus">MediaKeyStatus</a> diff --git a/tests/github/WICG/hdcp-detection/index.html b/tests/github/WICG/hdcp-detection/index.html index 1e379fc277..a78ae353fc 100644 --- a/tests/github/WICG/hdcp-detection/index.html +++ b/tests/github/WICG/hdcp-detection/index.html @@ -708,7 +708,7 @@ <h1 class="p-name no-ref" id="title">Encrypted Media: HDCP Policy Check</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Encrypted Media: HDCP Policy Check Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Encrypted Media: HDCP Policy Check Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -752,7 +752,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -894,20 +893,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -938,7 +923,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="58788f9d">TypeError</span> </ul> <li> - <a data-link-type="biblio">[ENCRYPTED-MEDIA]</a> defines the following terms: + <a data-link-type="biblio">[ENCRYPTED-MEDIA-2]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="9badd66b">output-restricted</span> <li><span class="dfn-paneled" id="7bf17ea6">requestMediaKeySystemAccess()</span> @@ -960,8 +945,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dl> <dt id="biblio-ecmascript">[ECMASCRIPT] <dd><a href="https://tc39.es/ecma262/multipage/"><cite>ECMAScript Language Specification</cite></a>. URL: <a href="https://tc39.es/ecma262/multipage/">https://tc39.es/ecma262/multipage/</a> - <dt id="biblio-encrypted-media">[ENCRYPTED-MEDIA] - <dd>David Dorwin; et al. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> + <dt id="biblio-encrypted-media-2">[ENCRYPTED-MEDIA-2] + <dd>Joey Parrish; Greg Freedman. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-webidl">[WEBIDL] diff --git a/tests/github/WICG/idle-detection/index.console.txt b/tests/github/WICG/idle-detection/index.console.txt index d774a2030a..5179daad03 100644 --- a/tests/github/WICG/idle-detection/index.console.txt +++ b/tests/github/WICG/idle-detection/index.console.txt @@ -3,12 +3,15 @@ LINE 293: Couldn't find WPT test 'idle-detection/idle-detection-allowed-by-featu LINE 293: Couldn't find WPT test 'idle-detection/idle-detection-allowed-by-feature-policy.https.sub.html' - did you misspell something? LINE 293: Couldn't find WPT test 'idle-detection/idle-detection-default-feature-policy.https.sub.html' - did you misspell something? LINE 293: Couldn't find WPT test 'idle-detection/idle-detection-disabled-by-feature-policy.https.sub.html' - did you misspell something? -WARNING: There are 5 WPT tests underneath your path prefix '/idle-detection/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +WARNING: There are 7 WPT tests underneath your path prefix '/idle-detection/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) idle-detection/idle-detection-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html idle-detection/idle-detection-allowed-by-permissions-policy-attribute.https.sub.html idle-detection/idle-detection-allowed-by-permissions-policy.https.sub.html idle-detection/idle-detection-default-permissions-policy.https.sub.html + idle-detection/idle-detection-detached-frame.https.html idle-detection/idle-detection-disabled-by-permissions-policy.https.sub.html + idle-detection/page-visibility.https.html +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINE ~146: No 'dfn' refs found for 'boolean feature'. [=boolean feature=] LINE ~274: No 'dfn' refs found for 'permission task source' that are marked for export. diff --git a/tests/github/WICG/idle-detection/index.html b/tests/github/WICG/idle-detection/index.html index c94712ec30..7b941cd435 100644 --- a/tests/github/WICG/idle-detection/index.html +++ b/tests/github/WICG/idle-detection/index.html @@ -1121,7 +1121,7 @@ <h1 class="p-name no-ref" id="title">Idle Detection API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Idle Detection API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Idle Detection API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1185,7 +1185,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1572,7 +1571,7 @@ <h2 class="heading settled" data-level="3" id="security-and-privacy"><span class <h3 class="heading settled" data-level="3.1" id="privacy-cross-origin-leakage"><span class="secno">3.1. </span><span class="content">Cross-origin information leakage</span><a class="self-link" href="#privacy-cross-origin-leakage"></a></h3> <p>This interface exposes the state of global system properties and so care must be taken to prevent them from being used as cross-origin communication or -identification channels. Similar concerns are present in specifications such as <a data-link-type="biblio" href="#biblio-device-orientation" title="DeviceOrientation Event Specification">[DEVICE-ORIENTATION]</a> and <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a>, which mitigate them by requiring +identification channels. Similar concerns are present in specifications such as <a data-link-type="biblio" href="#biblio-device-orientation" title="Device Orientation and Motion">[DEVICE-ORIENTATION]</a> and <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a>, which mitigate them by requiring a visible or focused context. This prevents multiple origins from observing the global state at the same time. These mitigations are unfortunately inappropriate here because the intent of this specification is precisely to allow a limited @@ -1692,20 +1691,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont <ul class="wpt-tests-list"></ul> <hr> </details> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1843,11 +1828,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-device-orientation">[DEVICE-ORIENTATION] - <dd>Rich Tibbett; et al. <a href="https://w3c.github.io/deviceorientation/"><cite>DeviceOrientation Event Specification</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> + <dd>Reilly Grant; Raphael Kubo da Costa; Marcos Caceres. <a href="https://w3c.github.io/deviceorientation/"><cite>Device Orientation and Motion</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> <dt id="biblio-fetch">[FETCH] <dd>Anne van Kesteren. <a href="https://fetch.spec.whatwg.org/"><cite>Fetch Standard</cite></a>. Living Standard. URL: <a href="https://fetch.spec.whatwg.org/">https://fetch.spec.whatwg.org/</a> <dt id="biblio-geolocation-api">[GEOLOCATION-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> <dt id="biblio-push-api">[PUSH-API] <dd>Peter Beverloo; Martin Thomson; Marcos Caceres. <a href="https://w3c.github.io/push-api/"><cite>Push API</cite></a>. URL: <a href="https://w3c.github.io/push-api/">https://w3c.github.io/push-api/</a> </dl> @@ -1915,7 +1900,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="api-idledetector-requestpermission"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IdleDetector/requestPermission" title="The requestPermission() method of the IdleDetector interface returns a Promise that resolves with a string when the user has chosen whether to grant the origin access to their idle state. Resolves with &quot;granted&quot; on acceptance and &quot;denied&quot; on refusal.">IdleDetector/requestPermission</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IdleDetector/requestPermission_static" title="The requestPermission() static method of the IdleDetector interface returns a Promise that resolves with a string when the user has chosen whether to grant the origin access to their idle state. Resolves with &quot;granted&quot; on acceptance and &quot;denied&quot; on refusal.">IdleDetector/requestPermission_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>94+</span></span> @@ -1992,6 +1977,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="api-permissions-policy"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/idle-detection" title="The HTTP Permissions-Policy header idle-detection directive controls whether the current document is allowed to use the Idle Detection API to detect when users are interacting with their devices, for example to report &quot;available&quot;/&quot;away&quot; status in chat applications.">Headers/Permissions-Policy/idle-detection</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>94+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>94+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } diff --git a/tests/github/WICG/import-maps/spec.html b/tests/github/WICG/import-maps/spec.html index 142a1d5b46..7db970f1b5 100644 --- a/tests/github/WICG/import-maps/spec.html +++ b/tests/github/WICG/import-maps/spec.html @@ -759,7 +759,7 @@ <h1 class="p-name no-ref" id="title">Import Maps</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Import Maps Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Import Maps Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> diff --git a/tests/github/WICG/intervention-reporting/index.console.txt b/tests/github/WICG/intervention-reporting/index.console.txt index 0f79a2383f..b195e0cdac 100644 --- a/tests/github/WICG/intervention-reporting/index.console.txt +++ b/tests/github/WICG/intervention-reporting/index.console.txt @@ -1,6 +1,3 @@ -LINE 58: No 'dfn' refs found for 'visible to reportingobservers' that are marked for export. -<a bs-line-number="58" data-link-type="dfn" data-lt="visible to ReportingObservers">visible to - <code bs-line-number="59">ReportingObserver</code>s</a> LINE 80: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="80" data-dfn-for="InterventionReportBody" data-dfn-type="dfn" id="interventionreportbody-message" data-lt="message" data-noexport="by-default" class="dfn-paneled">message</dfn> LINE 89: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/WICG/intervention-reporting/index.html b/tests/github/WICG/intervention-reporting/index.html index 2b1f0ba91f..addca1a554 100644 --- a/tests/github/WICG/intervention-reporting/index.html +++ b/tests/github/WICG/intervention-reporting/index.html @@ -930,7 +930,7 @@ <h1>Intervention Reporting</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Intervention Reporting Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Intervention Reporting Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1009,7 +1009,7 @@ <h2 class="heading settled" data-level="3" id="intervention-report"><span class= user annoyance reasons).</p> <p><a data-link-type="dfn" href="#intervention-reports" id="ref-for-intervention-reports">Intervention reports</a> are a type of <a data-link-type="dfn" href="https://w3c.github.io/reporting/#report" id="ref-for-report">report</a>.</p> <p><a data-link-type="dfn" href="#intervention-reports" id="ref-for-intervention-reports①">Intervention reports</a> have the <a data-link-type="dfn" href="https://w3c.github.io/reporting/#report-type" id="ref-for-report-type">report type</a> "intervention".</p> - <p><a data-link-type="dfn" href="#intervention-reports" id="ref-for-intervention-reports②">Intervention reports</a> are <a data-link-type="dfn">visible to <code>ReportingObserver</code>s</a>.</p> + <p><a data-link-type="dfn" href="#intervention-reports" id="ref-for-intervention-reports②">Intervention reports</a> are <a data-link-type="dfn" href="https://w3c.github.io/reporting/#visible-to-reportingobservers" id="ref-for-visible-to-reportingobservers">visible to <code>ReportingObserver</code>s</a>.</p> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed" id="ref-for-Exposed"><c- g>Exposed</c-></a>=(<c- n>Window</c->,<c- n>Worker</c->)] <c- b>interface</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="interface" data-export id="interventionreportbody"><code><c- g>InterventionReportBody</c-></code></dfn> : <a data-link-type="idl-name" href="https://w3c.github.io/reporting/#reportbody" id="ref-for-reportbody"><c- n>ReportBody</c-></a> { [<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Default" id="ref-for-Default"><c- g>Default</c-></a>] <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-object" id="ref-for-idl-object"><c- b>object</c-></a> <dfn class="dfn-paneled idl-code" data-dfn-for="InterventionReportBody" data-dfn-type="method" data-export data-lt="toJSON()" id="dom-interventionreportbody-tojson"><code><c- g>toJSON</c-></code></dfn>(); @@ -1136,6 +1136,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9239678f">endpoint</span> <li><span class="dfn-paneled" id="9fe8836b">report</span> <li><span class="dfn-paneled" id="4d5cebba">report type</span> + <li><span class="dfn-paneled" id="3c4b330a">visible to reportingobservers</span> </ul> <li> <a data-link-type="biblio">[WEBIDL]</a> defines the following terms: @@ -1480,6 +1481,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I { let dfnPanelData = { "188c6617": {"dfnID":"188c6617","dfnText":"ReportBody","external":true,"refSections":[{"refs":[{"id":"ref-for-reportbody"}],"title":"3. Intervention Reports"}],"url":"https://w3c.github.io/reporting/#reportbody"}, +"3c4b330a": {"dfnID":"3c4b330a","dfnText":"visible to reportingobservers","external":true,"refSections":[{"refs":[{"id":"ref-for-visible-to-reportingobservers"}],"title":"3. Intervention Reports"}],"url":"https://w3c.github.io/reporting/#visible-to-reportingobservers"}, "4d5cebba": {"dfnID":"4d5cebba","dfnText":"report type","external":true,"refSections":[{"refs":[{"id":"ref-for-report-type"}],"title":"3. Intervention Reports"}],"url":"https://w3c.github.io/reporting/#report-type"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"},{"id":"ref-for-idl-DOMString\u2460"},{"id":"ref-for-idl-DOMString\u2461"}],"title":"3. Intervention Reports"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"3. Intervention Reports"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, @@ -1956,6 +1958,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/reporting/#report-body": {"export":true,"for_":["report"],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"body","type":"dfn","url":"https://w3c.github.io/reporting/#report-body"}, "https://w3c.github.io/reporting/#report-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"report type","type":"dfn","url":"https://w3c.github.io/reporting/#report-type"}, "https://w3c.github.io/reporting/#reportbody": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"ReportBody","type":"interface","url":"https://w3c.github.io/reporting/#reportbody"}, +"https://w3c.github.io/reporting/#visible-to-reportingobservers": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"reporting","spec":"reporting-1","status":"current","text":"visible to reportingobservers","type":"dfn","url":"https://w3c.github.io/reporting/#visible-to-reportingobservers"}, "https://webidl.spec.whatwg.org/#Default": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Default","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Default"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#idl-DOMString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, diff --git a/tests/github/WICG/keyboard-lock/index.console.txt b/tests/github/WICG/keyboard-lock/index.console.txt index 7243b6c61a..4e767c3a9a 100644 --- a/tests/github/WICG/keyboard-lock/index.console.txt +++ b/tests/github/WICG/keyboard-lock/index.console.txt @@ -1,3 +1,4 @@ +WARNING: You used Status CG-DRAFT, but your Group (WEBPLATFORM) is limited to the statuses CR, CRD, CRY, CRYD, DRAFT-FINDING, DRY, ED, FINDING, FPWD, LCWD, LS, MO, NOTE, NOTE-ED, NOTE-FPWD, NOTE-WD, PER, PR, REC, RY, UD, WD, or WG-NOTE. LINT: Your document appears to use tabs to indent, but line 40 starts with spaces. LINT: Your document appears to use tabs to indent, but line 41 starts with spaces. LINT: Your document appears to use tabs to indent, but line 54 starts with spaces. diff --git a/tests/github/WICG/keyboard-lock/index.html b/tests/github/WICG/keyboard-lock/index.html index 01cd4ad987..bc2b5fd5f3 100644 --- a/tests/github/WICG/keyboard-lock/index.html +++ b/tests/github/WICG/keyboard-lock/index.html @@ -5,8 +5,8 @@ <title>Keyboard Lock</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://wicg.github.io/keyboard-lock/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -752,7 +752,7 @@ <h1>Keyboard Lock</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -814,7 +814,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1187,20 +1186,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1307,7 +1292,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-uievents">[UIEVENTS] <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents/"><cite>UI Events</cite></a>. URL: <a href="https://w3c.github.io/uievents/">https://w3c.github.io/uievents/</a> <dt id="biblio-uievents-code">[UIEvents-Code] - <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents-code/"><cite>UI Events KeyboardEvent code Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-code/">https://w3c.github.io/uievents-code/</a> + <dd>Travis Leithead; Gary Kacmarcik. <a href="https://w3c.github.io/uievents-code/"><cite>UI Events KeyboardEvent code Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-code/">https://w3c.github.io/uievents-code/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> diff --git a/tests/github/WICG/keyboard-map/index.html b/tests/github/WICG/keyboard-map/index.html index b4cc3b33ff..6b9db221c8 100644 --- a/tests/github/WICG/keyboard-map/index.html +++ b/tests/github/WICG/keyboard-map/index.html @@ -972,7 +972,7 @@ <h1>Keyboard Map</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Keyboard Map Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Keyboard Map Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1039,7 +1039,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1348,20 +1347,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1437,9 +1422,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-uievents">[UIEVENTS] <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents/"><cite>UI Events</cite></a>. URL: <a href="https://w3c.github.io/uievents/">https://w3c.github.io/uievents/</a> <dt id="biblio-uievents-code">[UIEvents-Code] - <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents-code/"><cite>UI Events KeyboardEvent code Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-code/">https://w3c.github.io/uievents-code/</a> + <dd>Travis Leithead; Gary Kacmarcik. <a href="https://w3c.github.io/uievents-code/"><cite>UI Events KeyboardEvent code Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-code/">https://w3c.github.io/uievents-code/</a> <dt id="biblio-uievents-key">[UIEVENTS-KEY] - <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents-key/"><cite>UI Events KeyboardEvent key Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-key/">https://w3c.github.io/uievents-key/</a> + <dd>Travis Leithead; Gary Kacmarcik. <a href="https://w3c.github.io/uievents-key/"><cite>UI Events KeyboardEvent key Values</cite></a>. URL: <a href="https://w3c.github.io/uievents-key/">https://w3c.github.io/uievents-key/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -1494,7 +1479,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="keyboardlayoutmap-interface"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/KeyboardLayoutMap" title="The KeyboardLayoutMap interface of the Keyboard API is a map-like object with functions for retrieving the string associated with specific physical keys.">KeyboardLayoutMap</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/KeyboardLayoutMap" title="The KeyboardLayoutMap interface of the Keyboard API is a read-only object with functions for retrieving the string associated with specific physical keys.">KeyboardLayoutMap</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> diff --git a/tests/github/WICG/kv-storage/spec.html b/tests/github/WICG/kv-storage/spec.html index a4eb8cf31a..4c66ff798b 100644 --- a/tests/github/WICG/kv-storage/spec.html +++ b/tests/github/WICG/kv-storage/spec.html @@ -794,7 +794,7 @@ <h1 class="p-name no-ref" id="title">KV Storage</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the KV Storage Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the KV Storage Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1623,7 +1623,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-indexeddb-2">[INDEXEDDB-2] <dd>Ali Alabbas; Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 2.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> <dt id="biblio-indexeddb-3">[IndexedDB-3] - <dd>Ali Alabbas; Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> + <dd>Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-webidl">[WEBIDL] diff --git a/tests/github/WICG/largest-contentful-paint/index.console.txt b/tests/github/WICG/largest-contentful-paint/index.console.txt index 16673cb3bf..1b41af0da0 100644 --- a/tests/github/WICG/largest-contentful-paint/index.console.txt +++ b/tests/github/WICG/largest-contentful-paint/index.console.txt @@ -10,6 +10,12 @@ LINE 151: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="151" data-link-type="dfn" data-lt="context object">context object</a> LINE 153: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="153" data-link-type="dfn" data-lt="context object">context object</a> +LINE 157: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="157" data-link-type="dfn" data-lt="descendant">descendant</a> LINE 160: No 'dfn' refs found for 'pairs'. <a bs-line-number="160" data-link-type="dfn" data-lt="pairs">pairs</a> LINE 162: No 'dfn' refs found for 'pairs'. @@ -22,6 +28,6 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:cssom-view-1; type:event; for:Document; text:scroll spec:cssom-view-1; type:event; for:Element; text:scroll spec:cssom-view-1; type:event; for:VisualViewport; text:scroll +spec:html; type:dict-member; text:scroll spec:webvtt1; type:attribute; text:scroll -spec:navigation-api; type:dict-member; text:scroll {{scroll}} diff --git a/tests/github/WICG/largest-contentful-paint/index.html b/tests/github/WICG/largest-contentful-paint/index.html index 46060fef0e..3876a29bda 100644 --- a/tests/github/WICG/largest-contentful-paint/index.html +++ b/tests/github/WICG/largest-contentful-paint/index.html @@ -972,7 +972,7 @@ <h1 class="p-name no-ref" id="title">Largest Contentful Paint</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Largest Contentful Paint Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Largest Contentful Paint Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1021,7 +1021,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1270,20 +1269,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1432,7 +1417,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-element-timing">[ELEMENT-TIMING] <dd><a href="https://wicg.github.io/element-timing/"><cite>Element Timing API</cite></a>. cg-draft. URL: <a href="https://wicg.github.io/element-timing/">https://wicg.github.io/element-timing/</a> <dt id="biblio-event-timing">[EVENT-TIMING] - <dd>Nicolas Pena Moreno; Tim Dresser. <a href="https://w3c.github.io/event-timing"><cite>Event Timing API</cite></a>. URL: <a href="https://w3c.github.io/event-timing">https://w3c.github.io/event-timing</a> + <dd>Nicolas Pena Moreno; Tim Dresser. <a href="https://w3c.github.io/event-timing/"><cite>Event Timing API</cite></a>. URL: <a href="https://w3c.github.io/event-timing/">https://w3c.github.io/event-timing/</a> <dt id="biblio-fetch">[FETCH] <dd>Anne van Kesteren. <a href="https://fetch.spec.whatwg.org/"><cite>Fetch Standard</cite></a>. Living Standard. URL: <a href="https://fetch.spec.whatwg.org/">https://fetch.spec.whatwg.org/</a> <dt id="biblio-geometry-1">[GEOMETRY-1] @@ -1546,7 +1531,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-largestcontentfulpaint-tojson"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint/toJSON" title="The toJSON() method of the LargestContentfulPaint interface is a serializer, and returns a JSON representation of the LargestContentfulPaint object.">LargestContentfulPaint/toJSON</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint/toJSON" title="The toJSON() method of the LargestContentfulPaint interface is a serializer; it returns a JSON representation of the LargestContentfulPaint object.">LargestContentfulPaint/toJSON</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> @@ -1578,7 +1563,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="sec-largest-contentful-paint-interface"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint" title="The LargestContentfulPaint interface of the Largest Contentful Paint API provides details about the largest image or text paint before user input on a web page. The timing of this paint is a good heuristic for when the main page content is available during load.">LargestContentfulPaint</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint" title="The LargestContentfulPaint interface provides timing information about the largest image or text paint before user input on a web page.">LargestContentfulPaint</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> diff --git a/tests/github/WICG/layout-instability/index.html b/tests/github/WICG/layout-instability/index.html index 5c9b66e364..597d969c1f 100644 --- a/tests/github/WICG/layout-instability/index.html +++ b/tests/github/WICG/layout-instability/index.html @@ -971,7 +971,7 @@ <h1 class="p-name no-ref" id="title">Layout Instability API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Layout Instability API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Layout Instability API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1022,7 +1022,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1482,20 +1481,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1661,7 +1646,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="de4bb79b">supportedEntryTypes</span> </ul> <li> - <a data-link-type="biblio">[RESOURCE-TIMING-2]</a> defines the following terms: + <a data-link-type="biblio">[RESOURCE-TIMING]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="ad2f296e">statistical fingerprinting</span> </ul> @@ -1692,7 +1677,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-color-3">[CSS-COLOR-3] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] @@ -1718,10 +1703,10 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-paint-timing">[PAINT-TIMING] - <dd>Shubhie Panicker. <a href="https://w3c.github.io/paint-timing/"><cite>Paint Timing 1</cite></a>. URL: <a href="https://w3c.github.io/paint-timing/">https://w3c.github.io/paint-timing/</a> + <dd>Ian Clelland; Noam Rosenthal. <a href="https://w3c.github.io/paint-timing/"><cite>Paint Timing</cite></a>. URL: <a href="https://w3c.github.io/paint-timing/">https://w3c.github.io/paint-timing/</a> <dt id="biblio-performance-timeline">[PERFORMANCE-TIMELINE] <dd>Nicolas Pena Moreno. <a href="https://w3c.github.io/performance-timeline/"><cite>Performance Timeline</cite></a>. URL: <a href="https://w3c.github.io/performance-timeline/">https://w3c.github.io/performance-timeline/</a> - <dt id="biblio-resource-timing-2">[RESOURCE-TIMING-2] + <dt id="biblio-resource-timing">[RESOURCE-TIMING] <dd>Yoav Weiss; Noam Rosenthal. <a href="https://w3c.github.io/resource-timing/"><cite>Resource Timing</cite></a>. URL: <a href="https://w3c.github.io/resource-timing/">https://w3c.github.io/resource-timing/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> @@ -1754,10 +1739,74 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content Element Timing spec and into a place more suitable for reuse here. <a class="issue-return" href="#issue-fa232fd7" title="Jump to section">↵</a></div> <div class="issue"> The <a data-link-type="dfn" href="https://wicg.github.io/element-timing/#get-an-element">get an element</a> algorithm should be generalized to accept <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#node">Node</a></code> instead of <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#element">Element</a></code>. <a class="issue-return" href="#issue-96ebd277" title="Jump to section">↵</a></div> </div> + <details class="mdn-anno unpositioned" data-anno-for="dom-layoutshift-hadrecentinput"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/hadRecentInput" title="The hadRecentInput read-only property of the LayoutShift interface returns true if lastInputTime is less than 500 milliseconds in the past.">LayoutShift/hadRecentInput</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-layoutshift-lastinputtime"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/lastInputTime" title="The lastInputTime read-only property of the LayoutShift interface returns the time of the most recent excluding input or 0 if no excluding input has occurred.">LayoutShift/lastInputTime</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-layoutshift-sources"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/sources" title="The sources read-only property of the LayoutShift interface returns an array of LayoutShiftAttribution objects that indicate the DOM elements that moved during the layout shift.">LayoutShift/sources</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>84+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-layoutshift-value"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift/value" title="The value read-only property of the LayoutShift interface returns the layout shift score calculated as the impact fraction (fraction of the viewport that was shifted) multiplied by the distance fraction (distance moved as a fraction of viewport).">LayoutShift/value</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="sec-layout-shift"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift" title="The LayoutShift interface of the Layout Instability API provides insights into the stability of web pages based on movements of the elements on the page.">LayoutShift</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShift" title="The LayoutShift interface of the Performance API provides insights into the layout stability of web pages based on movements of the elements on the page.">LayoutShift</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> @@ -1789,7 +1838,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-layoutshiftattribution-node"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution/node" title="The node read-only property of the LayoutShiftAttribution interface returns a node representing the object that has shifted.">LayoutShiftAttribution/node</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution/node" title="The node read-only property of the LayoutShiftAttribution interface returns a Node representing the object that has shifted.">LayoutShiftAttribution/node</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span> @@ -1834,7 +1883,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution" title="The LayoutShiftAttribution interface of the Layout Instability API provides debugging information about elements which have shifted.">LayoutShiftAttribution</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution" title="The LayoutShiftAttribution interface provides debugging information about elements which have shifted.">LayoutShiftAttribution</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span> diff --git a/tests/github/WICG/local-font-access/index.html b/tests/github/WICG/local-font-access/index.html index 69ad0dbc4d..d4d8f3863d 100644 --- a/tests/github/WICG/local-font-access/index.html +++ b/tests/github/WICG/local-font-access/index.html @@ -773,7 +773,7 @@ <h1 class="p-name no-ref" id="title">Local Font Access API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Local Font Access API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Local Font Access API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -838,7 +838,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1324,20 +1323,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1466,7 +1451,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-woff">[WOFF] <dd>Jonathan Kew; Tal Leming; Erik van Blokland. <a href="https://www.w3.org/TR/WOFF/"><cite>WOFF File Format 1.0</cite></a>. 13 December 2012. REC. URL: <a href="https://www.w3.org/TR/WOFF/">https://www.w3.org/TR/WOFF/</a> <dt id="biblio-woff2">[WOFF2] - <dd>Vladimir Levantovsky; Raph Levien. <a href="https://w3c.github.io/woff/woff2/"><cite>WOFF File Format 2.0</cite></a>. URL: <a href="https://w3c.github.io/woff/woff2/">https://w3c.github.io/woff/woff2/</a> + <dd>Vladimir Levantovsky. <a href="https://w3c.github.io/woff/woff2/"><cite>WOFF File Format 2.0</cite></a>. URL: <a href="https://w3c.github.io/woff/woff2/">https://w3c.github.io/woff/woff2/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#SecureContext"><c- g>SecureContext</c-></a>] diff --git a/tests/github/WICG/page-lifecycle/spec.html b/tests/github/WICG/page-lifecycle/spec.html index a1e1ee1c49..1e1d44ec2e 100644 --- a/tests/github/WICG/page-lifecycle/spec.html +++ b/tests/github/WICG/page-lifecycle/spec.html @@ -475,6 +475,230 @@ margin-bottom: 0; } </style> +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; +} +</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -746,7 +970,7 @@ <h1 class="p-name no-ref" id="title">Page Lifecycle</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Page Lifecycle Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Page Lifecycle Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -824,7 +1048,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1281,20 +1504,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1474,6 +1683,35 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I }; </pre> + <details class="mdn-anno unpositioned" data-anno-for="feature-policies"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/execution-while-not-rendered" title="The HTTP Permissions-Policy header execution-while-not-rendered directive controls whether tasks should execute in frames while they&apos;re not being rendered (e.g. if an iframe is hidden or has display: none set).">Headers/Permissions-Policy/execution-while-not-rendered</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span title="Requires setting a user preference or runtime flag.">🔰 Yes</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 Yes</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/execution-while-out-of-viewport" title="The HTTP Permissions-Policy header execution-while-out-of-viewport directive controls whether tasks should execute in frames while they&apos;re outside of the visible viewport.">Headers/Permissions-Policy/execution-while-out-of-viewport</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span title="Requires setting a user preference or runtime flag.">🔰 Yes</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 Yes</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -2133,6 +2371,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/WICG/periodic-background-sync/index.html b/tests/github/WICG/periodic-background-sync/index.html index f48dbf4ee6..6312df6b9f 100644 --- a/tests/github/WICG/periodic-background-sync/index.html +++ b/tests/github/WICG/periodic-background-sync/index.html @@ -970,7 +970,7 @@ <h1 class="p-name no-ref" id="title">Web Periodic Background Synchronization</h1 </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Periodic Background Synchronization Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Periodic Background Synchronization Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1037,7 +1037,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1418,20 +1417,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1618,7 +1603,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1634,7 +1619,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1650,7 +1635,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -1679,7 +1664,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1695,7 +1680,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1711,7 +1696,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1727,7 +1712,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> diff --git a/tests/github/WICG/permissions-request/index.console.txt b/tests/github/WICG/permissions-request/index.console.txt index 364d15fbe7..253725942f 100644 --- a/tests/github/WICG/permissions-request/index.console.txt +++ b/tests/github/WICG/permissions-request/index.console.txt @@ -1,3 +1,4 @@ +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINE 100: No 'dfn' refs found for 'boolean permission query algorithm'. <a bs-line-number="100" data-link-type="dfn" data-lt="boolean permission query algorithm">boolean permission query algorithm</a> LINE 104: No 'dfn' refs found for 'boolean permission query algorithm'. diff --git a/tests/github/WICG/permissions-request/index.html b/tests/github/WICG/permissions-request/index.html index 9a59fcb924..62403aa962 100644 --- a/tests/github/WICG/permissions-request/index.html +++ b/tests/github/WICG/permissions-request/index.html @@ -704,7 +704,7 @@ <h1 class="p-name no-ref" id="title">Requesting Permissions</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Requesting Permissions Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Requesting Permissions Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -740,7 +740,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -768,7 +767,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <p>The <a data-link-type="biblio" href="#biblio-notifications" title="Notifications API Standard">[notifications]</a> API allows developers to request a permission and check the permission status explicitly.</p> <li data-md> - <p>The <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[geolocation-API]</a> conflates the permission request with a location request.</p> + <p>The <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[geolocation-API]</a> conflates the permission request with a location request.</p> </ul> <p>It’s easier for developers to design their permission-related code if they have a single pattern to follow for all powerful features.</p> @@ -884,20 +883,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -953,7 +938,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-geolocation-api">[geolocation-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> <dt id="biblio-notifications">[NOTIFICATIONS] <dd>Anne van Kesteren. <a href="https://notifications.spec.whatwg.org/"><cite>Notifications API Standard</cite></a>. Living Standard. URL: <a href="https://notifications.spec.whatwg.org/">https://notifications.spec.whatwg.org/</a> </dl> diff --git a/tests/github/WICG/permissions-revoke/index.html b/tests/github/WICG/permissions-revoke/index.html index 88b2f93f7d..f14596f193 100644 --- a/tests/github/WICG/permissions-revoke/index.html +++ b/tests/github/WICG/permissions-revoke/index.html @@ -704,7 +704,7 @@ <h1 class="p-name no-ref" id="title">Relinquishing Permissions</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Relinquishing Permissions Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Relinquishing Permissions Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -735,7 +735,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -819,20 +818,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/portals/index.console.txt b/tests/github/WICG/portals/index.console.txt index d67317d0a3..f5776baacf 100644 --- a/tests/github/WICG/portals/index.console.txt +++ b/tests/github/WICG/portals/index.console.txt @@ -1,6 +1,46 @@ -WARNING: There are 2 WPT tests underneath your path prefix '/portals/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) - portals/idlharness.window.js - portals/portals-no-frame-crash.html +LINE 253: Couldn't find WPT test 'portals/portal-activate-event.html' - did you misspell something? +LINE 253: Couldn't find WPT test 'portals/portals-host-hidden-after-activation.html' - did you misspell something? +LINE 323: Couldn't find WPT test 'portals/portals-rendering.html' - did you misspell something? +LINE 370: Couldn't find WPT test 'portals/portals-api.html' - did you misspell something? +LINE 385: Couldn't find WPT test 'portals/portals-activate-no-browsing-context.html' - did you misspell something? +LINE 416: Couldn't find WPT test 'portals/portal-activate-data.html' - did you misspell something? +LINE 416: Couldn't find WPT test 'portals/portals-activate-inside-iframe.html' - did you misspell something? +LINE 416: Couldn't find WPT test 'portals/portals-activate-inside-portal.html' - did you misspell something? +LINE 416: Couldn't find WPT test 'portals/portals-activate-resolution.html' - did you misspell something? +LINE 416: Couldn't find WPT test 'portals/portals-activate-twice.html' - did you misspell something? +LINE 467: Couldn't find WPT test 'portals/portals-post-message.sub.html' - did you misspell something? +LINE 477: Couldn't find WPT test 'portals/portals-nested.html' - did you misspell something? +LINE 490: Couldn't find WPT test 'portals/about-blank-cannot-host.html' - did you misspell something? +LINE 504: Couldn't find WPT test 'portals/no-portal-in-sandboxed-popup.html' - did you misspell something? +LINE 583: Couldn't find WPT test 'portals/portals-cross-origin-load.sub.html' - did you misspell something? +LINE 583: Couldn't find WPT test 'portals/portals-referrer.html' - did you misspell something? +LINE 583: Couldn't find WPT test 'portals/portals-referrer-inherit-header.html' - did you misspell something? +LINE 583: Couldn't find WPT test 'portals/portals-referrer-inherit-meta.html' - did you misspell something? +LINE 651: Couldn't find WPT test 'portals/portal-onload-event.html' - did you misspell something? +LINE 651: Couldn't find WPT test 'portals/portals-cross-origin-load.sub.html' - did you misspell something? +LINE 710: Couldn't find WPT test 'portals/htmlportalelement-event-handler-content-attributes.html' - did you misspell something? +LINE 744: Couldn't find WPT test 'portals/portals-host-exposure.sub.html' - did you misspell something? +LINE 744: Couldn't find WPT test 'portals/portals-host-null.html' - did you misspell something? +LINE 814: Couldn't find WPT test 'portals/portals-host-post-message.sub.html' - did you misspell something? +LINE 882: Couldn't find WPT test 'portals/portal-activate-event-constructor.html' - did you misspell something? +LINE 910: Couldn't find WPT test 'portals/portals-adopt-predecessor.html' - did you misspell something? +LINE 998: Couldn't find WPT test 'portals/portals-close-window.html' - did you misspell something? +LINE 1040: Couldn't find WPT test 'portals/portal-non-http-navigation.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/history/history-manipulation-inside-portal-with-subframes.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/history/history-manipulation-inside-portal.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portal-activate-default.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-activate-empty-browsing-context.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-activate-network-error.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-activate-while-unloading.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-focus.sub.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-navigate-after-adoption.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-repeated-activate.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/portals-set-src-after-activate.html' - did you misspell something? +LINE 1212: Couldn't find WPT test 'portals/predecessor-fires-unload.html' - did you misspell something? +LINE 1228: Couldn't find WPT test 'portals/csp/frame-ancestors.sub.html' - did you misspell something? +LINE 1228: Couldn't find WPT test 'portals/xfo/portals-xfo-deny.sub.html' - did you misspell something? +LINE 1228: Couldn't find WPT test 'portals/xfo/portals-xfo-sameorigin.html' - did you misspell something? +LINE 1228: Couldn't find WPT test 'portals/csp/frame-src.sub.html' - did you misspell something? LINE 99: Image doesn't exist, so I couldn't determine its width and height: 'portals-state-transitions.svg' LINE ~87: No 'dfn' refs found for 'nested browsing context'. [=nested browsing context=] @@ -38,6 +78,8 @@ LINE 1009: No 'dfn' refs found for 'process a navigate response'. <a bs-line-number="1009" data-link-spec="HTML" data-link-type="dfn" data-lt="process a navigate response">process a navigate response</a> LINE 1033: No 'dfn' refs found for 'process a navigate url scheme'. <a bs-line-number="1033" data-link-spec="HTML" data-link-type="dfn" data-lt="process a navigate URL scheme">process a navigate URL scheme</a> +LINE 1047: No 'dfn' refs found for 'allowed to download'. +<a bs-line-number="1047" data-link-spec="HTML" data-link-type="dfn" data-lt="allowed to download">allowed to download</a> LINE ~1163: No 'dfn' refs found for 'nested browsing context'. [=nested browsing context=] LINE ~1163: No 'dfn' refs found for 'nested browsing context'. diff --git a/tests/github/WICG/portals/index.html b/tests/github/WICG/portals/index.html index 429cd9e8f4..d80ebe3b1d 100644 --- a/tests/github/WICG/portals/index.html +++ b/tests/github/WICG/portals/index.html @@ -1104,12 +1104,10 @@ <h1 class="p-name no-ref" id="title">Portals</h1> <dt class="editor">Editors: <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:jbroman@chromium.org">Jeremy Roman</a> (<span class="p-org org">Google</span>) <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:lfg@chromium.org">Lucas Gadani</a> (<span class="p-org org">Google</span>) - <dt>Test Suite: - <dd class="wpt-overview"><a href="https://wpt.fyi/results/portals/">https://wpt.fyi/results/portals/</a> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Portals Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Portals Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1176,7 +1174,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1348,10 +1345,7 @@ <h2 class="heading settled" data-level="2" id="concepts"><span class="secno">2. </section> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portal-activate-event.html" title="portals/portal-activate-event.html">portal-activate-event.html</a> <a class="wpt-live" href="http://wpt.live/portals/portal-activate-event.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portal-activate-event.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-host-hidden-after-activation.html" title="portals/portals-host-hidden-after-activation.html">portals-host-hidden-after-activation.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-host-hidden-after-activation.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-host-hidden-after-activation.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <div class="issue" id="issue-b49e4903"><a class="self-link" href="#issue-b49e4903"></a> In the case that structured deserialization throws, it may be useful to do something else to indicate it, rather than simply providing null data. </div> @@ -1406,9 +1400,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" <p>A <dfn class="dfn-paneled" data-dfn-type="element" data-export id="elementdef-portal"><code>portal</code></dfn> element allows for a <a data-link-type="dfn" href="#portal-browsing-context" id="ref-for-portal-browsing-context③">portal browsing context</a> to be embedded in an HTML document.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-rendering.html" title="portals/portals-rendering.html">portals-rendering.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-rendering.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-rendering.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>A <code><a data-link-type="element" href="#elementdef-portal" id="ref-for-elementdef-portal③">portal</a></code> element <var>portalElement</var> has a <dfn class="dfn-paneled" data-dfn-for="HTMLPortalElement" data-dfn-type="dfn" data-lt="guest browsing context" data-noexport id="htmlportalelement-guest-browsing-context">guest browsing context</dfn>, which is the <a data-link-type="dfn" href="#portal-browsing-context" id="ref-for-portal-browsing-context④">portal browsing context</a> whose <a data-link-type="dfn" href="#host-element" id="ref-for-host-element⑥">host @@ -1444,9 +1436,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" </pre> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-api.html" title="portals/portals-api.html">portals-api.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-api.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-api.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLPortalElement" data-dfn-type="attribute" data-export id="dom-htmlportalelement-src"><code>src</code></dfn> IDL attribute must <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflect</a> the <code><a data-link-type="element-sub" href="#element-attrdef-portal-src" id="ref-for-element-attrdef-portal-src">src</a></code> content attribute.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLPortalElement" data-dfn-type="attribute" data-export id="dom-htmlportalelement-referrerpolicy"><code>referrerPolicy</code></dfn> IDL attribute must <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect①">reflect</a> the <code><a data-link-type="element-sub" href="#element-attrdef-portal-referrerpolicy" id="ref-for-element-attrdef-portal-referrerpolicy">referrerpolicy</a></code> content attribute, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#limited-to-only-known-values" id="ref-for-limited-to-only-known-values">limited to only known values</a>.</p> @@ -1459,9 +1449,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" <p>If <var>portalBrowsingContext</var> is null, throw an "<code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#invalidstateerror" id="ref-for-invalidstateerror①">InvalidStateError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException①">DOMException</a></code>.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-no-browsing-context.html" title="portals/portals-activate-no-browsing-context.html">portals-activate-no-browsing-context.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-no-browsing-context.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-no-browsing-context.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <li data-md> <p>Let <var>predecessorBrowsingContext</var> be the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#concept-document-bc" id="ref-for-concept-document-bc">browsing context</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①">this</a>'s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-node-document" id="ref-for-concept-node-document①">node document</a>.</p> @@ -1486,13 +1474,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" </ol> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portal-activate-data.html" title="portals/portal-activate-data.html">portal-activate-data.html</a> <a class="wpt-live" href="http://wpt.live/portals/portal-activate-data.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portal-activate-data.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-inside-iframe.html" title="portals/portals-activate-inside-iframe.html">portals-activate-inside-iframe.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-inside-iframe.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-inside-iframe.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-inside-portal.html" title="portals/portals-activate-inside-portal.html">portals-activate-inside-portal.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-inside-portal.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-inside-portal.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-resolution.html" title="portals/portals-activate-resolution.html">portals-activate-resolution.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-resolution.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-resolution.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-twice.html" title="portals/portals-activate-twice.html">portals-activate-twice.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-twice.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-twice.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </section> <section class="algorithm" data-algorithm="htmlportalelement-postmessage"> @@ -1538,9 +1520,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" </ol> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-post-message.sub.html" title="portals/portals-post-message.sub.html">portals-post-message.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-post-message.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-post-message.sub.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </section> <section class="algorithm" data-algorithm="htmlportalelement-may-have-guest-browsing-context"> @@ -1550,9 +1530,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" <p>If <var>element</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-node-document" id="ref-for-concept-node-document②">node document</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context" id="ref-for-browsing-context③">browsing context</a> is not a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context" id="ref-for-top-level-browsing-context①">top-level browsing context</a>, then return false.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-nested.html" title="portals/portals-nested.html">portals-nested.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-nested.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-nested.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="note" role="note"> The user agent may choose to emit a warning if the author attempts to use a <code><a data-link-type="element" href="#elementdef-portal" id="ref-for-elementdef-portal⑨">portal</a></code> element in a <a data-link-type="dfn">nested browsing context</a>, as this is not @@ -1561,9 +1539,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" <p>If <var>element</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-node-document" id="ref-for-concept-node-document③">node document</a>'s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-url" id="ref-for-concept-document-url">URL</a>'s <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-scheme" id="ref-for-concept-url-scheme">scheme</a> is not an <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#http-scheme" id="ref-for-http-scheme">HTTP(S) scheme</a>, then return false.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/about-blank-cannot-host.html" title="portals/about-blank-cannot-host.html">about-blank-cannot-host.html</a> <a class="wpt-live" href="http://wpt.live/portals/about-blank-cannot-host.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/about-blank-cannot-host.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="note" role="note"> This is to prevent problems later, if the portaled content attempts to <a data-link-type="dfn" href="#adopt-the-predecessor-browsing-context" id="ref-for-adopt-the-predecessor-browsing-context②">adopt its predecessor</a>. Since portaled content can only have a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#http-scheme" id="ref-for-http-scheme①">HTTP(S) scheme</a>, adoption would fail, and so its simpler to restrict @@ -1573,9 +1549,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" then return false.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/no-portal-in-sandboxed-popup.html" title="portals/no-portal-in-sandboxed-popup.html">no-portal-in-sandboxed-popup.html</a> <a class="wpt-live" href="http://wpt.live/portals/no-portal-in-sandboxed-popup.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/no-portal-in-sandboxed-popup.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="note" role="note"> Since portals cannot be created in <a data-link-type="dfn">child browsing contexts</a> anyway, this step is about preventing portal uses in <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#auxiliary-browsing-context" id="ref-for-auxiliary-browsing-context">auxiliary browsing contexts</a> spawned by sandboxed <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element" id="ref-for-the-iframe-element①">iframe</a></code>s, or pages using CSP’s <a data-link-type="dfn" href="https://w3c.github.io/webappsec-csp/#sandbox" id="ref-for-sandbox">sandbox</a> directive. </p> @@ -1637,12 +1611,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" </section> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-cross-origin-load.sub.html" title="portals/portals-cross-origin-load.sub.html">portals-cross-origin-load.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-cross-origin-load.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-cross-origin-load.sub.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-referrer.html" title="portals/portals-referrer.html">portals-referrer.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-referrer.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-referrer.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-referrer-inherit-header.html" title="portals/portals-referrer-inherit-header.html">portals-referrer-inherit-header.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-referrer-inherit-header.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-referrer-inherit-header.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-referrer-inherit-meta.html" title="portals/portals-referrer-inherit-meta.html">portals-referrer-inherit-meta.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-referrer-inherit-meta.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-referrer-inherit-meta.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>Whenever a <code><a data-link-type="element" href="#elementdef-portal" id="ref-for-elementdef-portal①⑤">portal</a></code> element <var>element</var> has its <code><a data-link-type="element-sub" href="#element-attrdef-portal-src" id="ref-for-element-attrdef-portal-src④">src</a></code> attribute set, changed, or removed, run the following steps:</p> @@ -1699,10 +1668,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" </ol> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portal-onload-event.html" title="portals/portal-onload-event.html">portal-onload-event.html</a> <a class="wpt-live" href="http://wpt.live/portals/portal-onload-event.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portal-onload-event.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-cross-origin-load.sub.html" title="portals/portals-cross-origin-load.sub.html">portals-cross-origin-load.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-cross-origin-load.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-cross-origin-load.sub.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <section class="algorithm" data-algorithm="htmlportalelement-activation-behavior"> A <code><a data-link-type="element" href="#elementdef-portal" id="ref-for-elementdef-portal②③">portal</a></code> element <var>el</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#eventtarget-activation-behavior" id="ref-for-eventtarget-activation-behavior">activation behavior</a> is to run the following steps: @@ -1747,9 +1713,7 @@ <h2 class="heading settled" data-level="3" id="the-portal-element"><span class=" <p>The <code><a data-link-type="element" href="#elementdef-portal" id="ref-for-elementdef-portal②④">portal</a></code> element exposes <code class="idl"><a data-link-type="idl" href="#dom-htmlportalelement-onmessage" id="ref-for-dom-htmlportalelement-onmessage">onmessage</a></code> and <code class="idl"><a data-link-type="idl" href="#dom-htmlportalelement-onmessageerror" id="ref-for-dom-htmlportalelement-onmessageerror">onmessageerror</a></code> as <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-content-attributes" id="ref-for-event-handler-content-attributes">event handler content attributes</a>.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/htmlportalelement-event-handler-content-attributes.html" title="portals/htmlportalelement-event-handler-content-attributes.html">htmlportalelement-event-handler-content-attributes.html</a> <a class="wpt-live" href="http://wpt.live/portals/htmlportalelement-event-handler-content-attributes.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/htmlportalelement-event-handler-content-attributes.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <h3 class="heading settled" data-level="3.1" id="the-portalhost-interface"><span class="secno">3.1. </span><span class="content">Portal hosts</span><a class="self-link" href="#the-portalhost-interface"></a></h3> <p>Every <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window">Window</a></code> has a <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="portal-host-object">portal host object</dfn>, which is a <code class="idl"><a data-link-type="idl" href="#portalhost" id="ref-for-portalhost①">PortalHost</a></code>. It is exposed @@ -1774,10 +1738,7 @@ <h3 class="heading settled" data-level="3.1" id="the-portalhost-interface"><span </section> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-host-exposure.sub.html" title="portals/portals-host-exposure.sub.html">portals-host-exposure.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-host-exposure.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-host-exposure.sub.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-host-null.html" title="portals/portals-host-null.html">portals-host-null.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-host-null.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-host-null.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <hr> <p>The <code class="idl"><a data-link-type="idl" href="#portalhost" id="ref-for-portalhost③">PortalHost</a></code> interface definition is as follows:</p> @@ -1839,9 +1800,7 @@ <h3 class="heading settled" data-level="3.1" id="the-portalhost-interface"><span </section> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-host-post-message.sub.html" title="portals/portals-host-post-message.sub.html">portals-host-post-message.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-host-post-message.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-host-post-message.sub.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>The following events are dispatched on <code class="idl"><a data-link-type="idl" href="#portalhost" id="ref-for-portalhost④">PortalHost</a></code> objects:</p> <table class="data"> @@ -1893,9 +1852,7 @@ <h3 class="heading settled" data-level="3.2" id="the-portalactivateevent-interfa </section> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portal-activate-event-constructor.html" title="portals/portal-activate-event-constructor.html">portal-activate-event-constructor.html</a> <a class="wpt-live" href="http://wpt.live/portals/portal-activate-event-constructor.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portal-activate-event-constructor.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <section class="algorithm" data-algorithm="portalactivateevent-adoptpredecessor"> The <dfn class="dfn-paneled idl-code" data-dfn-for="PortalActivateEvent" data-dfn-type="method" data-export id="dom-portalactivateevent-adoptpredecessor"><code>adoptPredecessor()</code></dfn> method <em>must</em> run these steps: @@ -1922,9 +1879,7 @@ <h3 class="heading settled" data-level="3.2" id="the-portalactivateevent-interfa </ol> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-adopt-predecessor.html" title="portals/portals-adopt-predecessor.html">portals-adopt-predecessor.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-adopt-predecessor.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-adopt-predecessor.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </section> </section> @@ -1988,9 +1943,7 @@ <h3 class="heading settled" data-level="4.3" id="patch-window-apis"><span class= </ul> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-close-window.html" title="portals/portals-close-window.html">portals-close-window.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-close-window.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-close-window.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <h3 class="heading settled" data-level="4.4" id="patch-navigation"><span class="secno">4.4. </span><span class="content">Navigation</span><a class="self-link" href="#patch-navigation"></a></h3> <p>Patch the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate" id="ref-for-navigate②">navigate</a> algorithm to prevent certain navigations in a @@ -2038,12 +1991,10 @@ <h3 class="heading settled" data-level="4.4" id="patch-navigation"><span class=" </div> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portal-non-http-navigation.html" title="portals/portal-non-http-navigation.html">portal-non-http-navigation.html</a> <a class="wpt-live" href="http://wpt.live/portals/portal-non-http-navigation.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portal-non-http-navigation.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <h3 class="heading settled" data-level="4.5" id="patch-downloading"><span class="secno">4.5. </span><span class="content">Downloading resources</span><a class="self-link" href="#patch-downloading"></a></h3> - <p>Modify the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/links.html#allowed-to-download" id="ref-for-allowed-to-download">allowed to download</a> algorithm to ensure that portaled content never + <p>Modify the <a data-link-type="dfn">allowed to download</a> algorithm to ensure that portaled content never performs downloads, by prepending the following steps:</p> <div class="algorithm" data-algorithm="allowed to download patch"> <ol> @@ -2089,7 +2040,7 @@ <h5 class="heading settled" data-level="5.1.1.1" id="portal-src-pre-request"><sp <li data-md> <p>If the result of executing <a href="https://w3c.github.io/webappsec-csp/#should-directive-execute"><cite>Content Security Policy 3</cite> § 6.8.4 Should fetch directive execute</a> on <var>name</var>, <code>portal-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="https://w3c.github.io/webappsec-csp/#match-request-to-source-list"><cite>Content Security Policy 3</cite> § 6.7.2.4 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="https://w3c.github.io/webappsec-csp/#directive-value" id="ref-for-directive-value">value</a>, and <var>policy</var> is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> + <p>If the result of executing <a href="https://w3c.github.io/webappsec-csp/#match-request-to-source-list"><cite>Content Security Policy 3</cite> § 6.7.2.5 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="https://w3c.github.io/webappsec-csp/#directive-value" id="ref-for-directive-value">value</a>, and <var>policy</var> is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> </ol> @@ -2104,7 +2055,7 @@ <h5 class="heading settled" data-level="5.1.1.2" id="portal-src-post-request"><s <li data-md> <p>If the result of executing <a href="https://w3c.github.io/webappsec-csp/#should-directive-execute"><cite>Content Security Policy 3</cite> § 6.8.4 Should fetch directive execute</a> on <var>name</var>, <code>portal-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="https://w3c.github.io/webappsec-csp/#match-response-to-source-list"><cite>Content Security Policy 3</cite> § 6.7.2.5 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, + <p>If the result of executing <a href="https://w3c.github.io/webappsec-csp/#match-response-to-source-list"><cite>Content Security Policy 3</cite> § 6.7.2.6 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="https://w3c.github.io/webappsec-csp/#directive-value" id="ref-for-directive-value①">value</a>, and <var>policy</var> is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> @@ -2160,29 +2111,12 @@ <h2 class="heading settled" data-level="7" id="untriaged-tests"><span class="sec haven’t triaged into the appropriate sections.</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/history/history-manipulation-inside-portal-with-subframes.html" title="portals/history/history-manipulation-inside-portal-with-subframes.html">history-manipulation-inside-portal-with-subframes.html</a> <a class="wpt-live" href="http://wpt.live/portals/history/history-manipulation-inside-portal-with-subframes.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/history/history-manipulation-inside-portal-with-subframes.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/history/history-manipulation-inside-portal.html" title="portals/history/history-manipulation-inside-portal.html">history-manipulation-inside-portal.html</a> <a class="wpt-live" href="http://wpt.live/portals/history/history-manipulation-inside-portal.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/history/history-manipulation-inside-portal.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portal-activate-default.html" title="portals/portal-activate-default.html">portal-activate-default.html</a> <a class="wpt-live" href="http://wpt.live/portals/portal-activate-default.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portal-activate-default.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-empty-browsing-context.html" title="portals/portals-activate-empty-browsing-context.html">portals-activate-empty-browsing-context.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-empty-browsing-context.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-empty-browsing-context.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-network-error.html" title="portals/portals-activate-network-error.html">portals-activate-network-error.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-network-error.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-network-error.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-activate-while-unloading.html" title="portals/portals-activate-while-unloading.html">portals-activate-while-unloading.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-activate-while-unloading.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-activate-while-unloading.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-focus.sub.html" title="portals/portals-focus.sub.html">portals-focus.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-focus.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-focus.sub.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-navigate-after-adoption.html" title="portals/portals-navigate-after-adoption.html">portals-navigate-after-adoption.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-navigate-after-adoption.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-navigate-after-adoption.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-repeated-activate.html" title="portals/portals-repeated-activate.html">portals-repeated-activate.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-repeated-activate.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-repeated-activate.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/portals-set-src-after-activate.html" title="portals/portals-set-src-after-activate.html">portals-set-src-after-activate.html</a> <a class="wpt-live" href="http://wpt.live/portals/portals-set-src-after-activate.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/portals-set-src-after-activate.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/predecessor-fires-unload.html" title="portals/predecessor-fires-unload.html">predecessor-fires-unload.html</a> <a class="wpt-live" href="http://wpt.live/portals/predecessor-fires-unload.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/predecessor-fires-unload.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>The following tests are actively incorrect and need to get updated:</p> <details class="wpt-tests-block" dir="ltr" lang="en" open> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/csp/frame-ancestors.sub.html" title="portals/csp/frame-ancestors.sub.html">frame-ancestors.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/csp/frame-ancestors.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/csp/frame-ancestors.sub.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/xfo/portals-xfo-deny.sub.html" title="portals/xfo/portals-xfo-deny.sub.html">portals-xfo-deny.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/xfo/portals-xfo-deny.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/xfo/portals-xfo-deny.sub.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/xfo/portals-xfo-sameorigin.html" title="portals/xfo/portals-xfo-sameorigin.html">portals-xfo-sameorigin.html</a> <a class="wpt-live" href="http://wpt.live/portals/xfo/portals-xfo-sameorigin.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/xfo/portals-xfo-sameorigin.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/portals/csp/frame-src.sub.html" title="portals/csp/frame-src.sub.html">frame-src.sub.html</a> <a class="wpt-live" href="http://wpt.live/portals/csp/frame-src.sub.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/portals/csp/frame-src.sub.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </section> </main> @@ -2220,20 +2154,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont <ul class="wpt-tests-list"></ul> <hr> </details> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2397,7 +2317,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8baa72cd">WindowEventHandlers</span> <li><span class="dfn-paneled" id="94039a0c">WindowProxy</span> <li><span class="dfn-paneled" id="27e10eaf">active sandboxing flag set</span> - <li><span class="dfn-paneled" id="28ad22ad">allowed to download</span> <li><span class="dfn-paneled" id="3349d69f">associated document</span> <li><span class="dfn-paneled" id="58ebefde">auxiliary browsing context</span> <li><span class="dfn-paneled" id="01844357">become browsing-context connected</span> @@ -2820,7 +2739,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "2594e562": {"dfnID":"2594e562","dfnText":"navigate","external":true,"refSections":[{"refs":[{"id":"ref-for-navigate"},{"id":"ref-for-navigate\u2460"}],"title":"3. The portal element"},{"refs":[{"id":"ref-for-navigate\u2461"}],"title":"4.4. Navigation"}],"url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate"}, "27ce3281": {"dfnID":"27ce3281","dfnText":"limited to only known values","external":true,"refSections":[{"refs":[{"id":"ref-for-limited-to-only-known-values"}],"title":"3. The portal element"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#limited-to-only-known-values"}, "27e10eaf": {"dfnID":"27e10eaf","dfnText":"active sandboxing flag set","external":true,"refSections":[{"refs":[{"id":"ref-for-active-sandboxing-flag-set"}],"title":"3. The portal element"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#active-sandboxing-flag-set"}, -"28ad22ad": {"dfnID":"28ad22ad","dfnText":"allowed to download","external":true,"refSections":[{"refs":[{"id":"ref-for-allowed-to-download"}],"title":"4.5. Downloading resources"}],"url":"https://html.spec.whatwg.org/multipage/links.html#allowed-to-download"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3.1. Portal hosts"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2d09a0dd": {"dfnID":"2d09a0dd","dfnText":"referrer policy","external":true,"refSections":[{"refs":[{"id":"ref-for-referrer-policy"}],"title":"3. The portal element"}],"url":"https://w3c.github.io/webappsec-referrer-policy/#referrer-policy"}, "3349d69f": {"dfnID":"3349d69f","dfnText":"associated document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-window"}],"title":"2. Portal browsing contexts"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window"}, @@ -3529,7 +3447,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/infrastructure.html#becomes-browsing-context-disconnected": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"become browsing-context disconnected","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#becomes-browsing-context-disconnected"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#browsing-context-connected": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing-context connected","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#browsing-context-connected"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, -"https://html.spec.whatwg.org/multipage/links.html#allowed-to-download": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"allowed to download","type":"dfn","url":"https://html.spec.whatwg.org/multipage/links.html#allowed-to-download"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"associated document","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#script-closable": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"script-closable","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#script-closable"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, @@ -3871,118 +3788,4 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content return leastUsedColor(colorCounts); } } -</script> -<script>/* Boilerplate: script-wpt */ -"use strict"; -{ -let wptData = { -"paths": ["/portals/"], -}; - -document.addEventListener("DOMContentLoaded", async ()=>{ - if(wptData.paths.length == 0) return; - - const runsUrl = "https://wpt.fyi/api/runs?label=master&label=stable&max-count=1&product=chrome&product=firefox&product=safari&product=edge"; - const runs = await (await fetch(runsUrl)).json(); - - let testResults = []; - for(const pathPrefix of wptData.paths) { - const pathResults = await (await fetch("https://wpt.fyi/api/search", { - method:"POST", - headers:{ - "Content-Type":"application/json", - }, - body: JSON.stringify({ - "run_ids": runs.map(x=>x.id), - "query": {"path": pathPrefix}, - }) - })).json(); - testResults = testResults.concat(pathResults.results); - } - - const browsers = runs.map(x=>({name:x.browser_name, version:x.browser_version, passes:0, total: 0})); - const resultsFromPath = new Map(testResults.map(result=>{ - const testPath = result.test; - const passes = result.legacy_status.map(x=>[x.passes, x.total]); - return [testPath, passes]; - })); - const seenTests = new Set(); - document.querySelectorAll(".wpt-name").forEach(nameEl=>{ - const passData = resultsFromPath.get("/" + nameEl.getAttribute("title")); - if(!passData) { - console.log("Couldn't find test in results:", nameEl); - return - } - const numTests = passData[0][1]; - if(numTests > 1) { - nameEl.insertAdjacentElement("beforeend", - mk.small({}, ` (${numTests} tests)`)); - } - if(passData == undefined) return; - const resultsEl = mk.span({"class":"wpt-results"}, - ...passData.map((p,i) => mk.span( - { - "title": `${browsers[i].name} ${p[0]}/${p[1]}`, - "class": "wpt-result", - "style": `background: conic-gradient(forestgreen ${p[0]/p[1]*360}deg, darkred 0deg);`, - })), - ); - nameEl.insertAdjacentElement("afterend", resultsEl); - - // Only update the summary pass/total count if we haven't seen this - // test before, to support authors listing the same test multiple times - // in a spec. - if (!seenTests.has(nameEl.getAttribute("title"))) { - seenTests.add(nameEl.getAttribute("title")); - passData.forEach((p,i) => { - browsers[i].passes += p[0]; - browsers[i].total += p[1]; - }); - } - }); - const overview = document.querySelector(".wpt-overview"); - if(overview) { - overview.appendChild(mk.ul({}, ...browsers.map(formatWptResult))); - document.head.appendChild(mk.style({}, - `.wpt-overview ul { display: flex; flex-flow: row wrap; gap: .2em; justify-content: start; list-style: none; padding: 0; margin: 0;} - .wpt-overview li { padding: .25em 1em; color: black; text-align: center; } - .wpt-overview img { height: 1.5em; height: max(1.5em, 32px); background: transparent; } - .wpt-overview .browser { font-weight: bold; } - .wpt-overview .passes-none { background: #e57373; } - .wpt-overview .passes-hardly { background: #ffb74d; } - .wpt-overview .passes-a-few { background: #ffd54f; } - .wpt-overview .passes-half { background: #fff176; } - .wpt-overview .passes-lots { background: #dce775; } - .wpt-overview .passes-most { background: #aed581; } - .wpt-overview .passes-all { background: #81c784; }`)); - } -}); - -function formatWptResult({name, version, passes, total}) { - const passRate = passes/total; - let passClass = ""; - if(passRate == 0) passClass = "passes-none"; - else if(passRate < .2) passClass = "passes-hardly"; - else if(passRate < .4) passClass = "passes-a-few"; - else if(passRate < .6) passClass = "passes-half"; - else if(passRate < .8) passClass = "passes-lots"; - else if(passRate < 1) passClass = "passes-most"; - else passClass = "passes-all"; - - name = name[0].toUpperCase() + name.slice(1); - const shortVersion = /^\d+/.exec(version); - const icon = [] - - if(name == "Chrome") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/chrome_64x64.png"})); - if(name == "Edge") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/edge_64x64.png"})); - if(name == "Safari") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/safari_64x64.png"})); - if(name == "Firefox") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/firefox_64x64.png"})); - - return mk.li({"class":passClass}, - mk.nobr({'class':'browser'}, ...icon, ` ${name} ${shortVersion}`), - mk.br(), - mk.nobr({'class':'pass-rate'}, `${passes}/${total}`) - ); -} -} </script> \ No newline at end of file diff --git a/tests/github/WICG/priority-hints/index.console.txt b/tests/github/WICG/priority-hints/index.console.txt index e35631d11d..b91be0a132 100644 --- a/tests/github/WICG/priority-hints/index.console.txt +++ b/tests/github/WICG/priority-hints/index.console.txt @@ -3,10 +3,12 @@ Arbitrarily chose https://fetch.spec.whatwg.org/#concept-request-destination To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:fetch; type:dfn; text:destination spec:reporting-1; type:dfn; text:destination +spec:fenced-frame; type:dfn; text:destination <a bs-line-number="67" data-link-type="dfn" data-lt="destination">destination</a> LINE 129: Multiple possible 'destination' dfn refs. Arbitrarily chose https://fetch.spec.whatwg.org/#concept-request-destination To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:fetch; type:dfn; text:destination spec:reporting-1; type:dfn; text:destination +spec:fenced-frame; type:dfn; text:destination <a bs-line-number="129" data-lt="destination" data-link-type="dfn">destinations</a> diff --git a/tests/github/WICG/priority-hints/index.html b/tests/github/WICG/priority-hints/index.html index 0cae3cdccb..9fa96eeb43 100644 --- a/tests/github/WICG/priority-hints/index.html +++ b/tests/github/WICG/priority-hints/index.html @@ -698,7 +698,7 @@ <h1 class="p-name no-ref" id="title">Priority Hints</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Priority Hints Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Priority Hints Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -749,7 +749,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1100,20 +1099,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1127,7 +1112,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[HTML]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="5f331bfb">enumerated attributes</span> + <li><span class="dfn-paneled" id="96e13811">enumerated attribute</span> <li><span class="dfn-paneled" id="bb919e84">invalid value default</span> <li><span class="dfn-paneled" id="eeea093f">missing value default</span> </ul> @@ -1350,7 +1335,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" { let dfnPanelData = { "3ae34c95": {"dfnID":"3ae34c95","dfnText":"destination","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-destination"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-concept-request-destination\u2460"}],"title":"3. Effects of Priority Hints"}],"url":"https://fetch.spec.whatwg.org/#concept-request-destination"}, -"5f331bfb": {"dfnID":"5f331bfb","dfnText":"enumerated attributes","external":true,"refSections":[{"refs":[{"id":"ref-for-enumerated-attribute"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-enumerated-attribute\u2460"}],"title":"2. Solution"}],"url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute"}, +"96e13811": {"dfnID":"96e13811","dfnText":"enumerated attribute","external":true,"refSections":[{"refs":[{"id":"ref-for-enumerated-attribute"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-enumerated-attribute\u2460"}],"title":"2. Solution"}],"url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute"}, "bb919e84": {"dfnID":"bb919e84","dfnText":"invalid value default","external":true,"refSections":[{"refs":[{"id":"ref-for-invalid-value-default"}],"title":"2. Solution"}],"url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#invalid-value-default"}, "eeea093f": {"dfnID":"eeea093f","dfnText":"missing value default","external":true,"refSections":[{"refs":[{"id":"ref-for-missing-value-default"}],"title":"2. Solution"}],"url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#missing-value-default"}, }; @@ -1742,7 +1727,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" { let refsData = { "https://fetch.spec.whatwg.org/#concept-request-destination": {"export":true,"for_":["request"],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"destination","type":"dfn","url":"https://fetch.spec.whatwg.org/#concept-request-destination"}, -"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"enumerated attributes","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute"}, +"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"enumerated attribute","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute"}, "https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#invalid-value-default": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"invalid value default","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#invalid-value-default"}, "https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#missing-value-default": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"missing value default","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#missing-value-default"}, }; diff --git a/tests/github/WICG/responsive-image-client-hints/index.console.txt b/tests/github/WICG/responsive-image-client-hints/index.console.txt index 163f27337f..761faf5a6a 100644 --- a/tests/github/WICG/responsive-image-client-hints/index.console.txt +++ b/tests/github/WICG/responsive-image-client-hints/index.console.txt @@ -9,3 +9,7 @@ LINT: Your document appears to use spaces to indent, but line 44 starts with tab LINT: Your document appears to use spaces to indent, but line 53 starts with tabs. LINT: Your document appears to use spaces to indent, but line 54 starts with tabs. LINT: Your document appears to use spaces to indent, but line 55 starts with tabs. +LINE 74: No 'dfn' refs found for 'density-corrected intrinsic width and height'. +<a bs-line-number="74" data-link-spec="html" data-lt="density-corrected intrinsic width and height" data-link-type="dfn">density-corrected intrinsic width</a> +LINE 206: No 'dfn' refs found for 'density-corrected intrinsic width and height'. +<a bs-line-number="206" data-link-spec="html" data-lt="density-corrected intrinsic width and height" data-link-type="dfn">density-corrected intrinsic width</a> diff --git a/tests/github/WICG/responsive-image-client-hints/index.html b/tests/github/WICG/responsive-image-client-hints/index.html index e18db8448c..75b13fa568 100644 --- a/tests/github/WICG/responsive-image-client-hints/index.html +++ b/tests/github/WICG/responsive-image-client-hints/index.html @@ -704,7 +704,7 @@ <h1 class="p-name no-ref" id="title">Responsive Image Client Hints</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Responsive Image Client Hints Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Responsive Image Client Hints Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -761,7 +761,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -814,7 +813,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s Sec-CH-Width: 1200 Sec-CH-DPR: 3 </pre> - <p><code>media.shoeshoppe.biz</code> might note that <code>cool-shoe-hero.jpg</code> contains photographic content, and that the apparent-quality benefits of sending a full-3x, 1200-pixel-wide version won’t outweigh the cost in increased filesize. So it sends an 800-pixel-wide, 2x response instead, and <a href="https://github.com/whatwg/html/pull/5574">modifies the response resource’s EXIF resolution</a> in order to ensure that resulting <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element" id="ref-for-the-img-element">img</a></code> has the expected <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/images.html#density-corrected-intrinsic-width-and-height" id="ref-for-density-corrected-intrinsic-width-and-height">density-corrected intrinsic width</a> of 400px.</p> + <p><code>media.shoeshoppe.biz</code> might note that <code>cool-shoe-hero.jpg</code> contains photographic content, and that the apparent-quality benefits of sending a full-3x, 1200-pixel-wide version won’t outweigh the cost in increased filesize. So it sends an 800-pixel-wide, 2x response instead, and <a href="https://github.com/whatwg/html/pull/5574">modifies the response resource’s EXIF resolution</a> in order to ensure that resulting <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element" id="ref-for-the-img-element">img</a></code> has the expected <a data-link-type="dfn">density-corrected intrinsic width</a> of 400px.</p> </div> <h2 class="heading settled" data-level="2" id="responsive-image-hints"><span class="secno">2. </span><span class="content">Responsive Image Hints</span><a class="self-link" href="#responsive-image-hints"></a></h2> <h3 class="heading settled" data-level="2.1" id="sec-ch-width"><span class="secno">2.1. </span><span class="content">The <code>Sec-CH-Width</code> Header Field</span><a class="self-link" href="#sec-ch-width"></a></h3> @@ -884,7 +883,7 @@ <h3 class="heading settled" data-level="2.3" id="sec-ch-viewport-height"><span c <h3 class="heading settled" data-level="2.4" id="sec-ch-dpr"><span class="secno">2.4. </span><span class="content">The <code>Sec-CH-DPR</code> Header Field</span><a class="self-link" href="#sec-ch-dpr"></a></h3> <p>The <code><dfn class="dfn-paneled" data-dfn-type="http-header" data-export id="http-headerdef-sec-ch-dpr">Sec-CH-DPR</dfn></code> request header field gives a server information about the user-agent’s current device pixel ratio. It is a <a data-link-type="dfn" href="https://tools.ietf.org/html/draft-ietf-httpbis-header-structure#" id="ref-for-something④">Structured Header</a> whose value MUST be an <a data-link-type="dfn" href="https://tools.ietf.org/html/draft-ietf-httpbis-header-structure#section-3.3.2" id="ref-for-section-3.3.2">decimal</a> greater than 0.</p> <p>For <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-fetch" id="ref-for-concept-fetch③">fetches</a> within web contexts, its value SHOULD be the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window③">Window</a></code>'s current <code class="idl"><a data-link-type="idl" href="https://drafts.csswg.org/cssom-view-1/#dom-window-devicepixelratio" id="ref-for-dom-window-devicepixelratio③">devicePixelRatio</a></code>.</p> - <p>Servers that send resources in response to requests including <a data-link-type="http-header" href="#http-headerdef-sec-ch-dpr" id="ref-for-http-headerdef-sec-ch-dpr②">Sec-CH-DPR</a> SHOULD <a href="https://github.com/whatwg/html/pull/5574">adjust those resource’s intrinsic resolutions via metadata</a> to ensure that, even as the resolution of the width is changing, its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/images.html#density-corrected-intrinsic-width-and-height" id="ref-for-density-corrected-intrinsic-width-and-height①">density-corrected intrinsic width</a> does not.</p> + <p>Servers that send resources in response to requests including <a data-link-type="http-header" href="#http-headerdef-sec-ch-dpr" id="ref-for-http-headerdef-sec-ch-dpr②">Sec-CH-DPR</a> SHOULD <a href="https://github.com/whatwg/html/pull/5574">adjust those resource’s intrinsic resolutions via metadata</a> to ensure that, even as the resolution of the width is changing, its <a data-link-type="dfn">density-corrected intrinsic width</a> does not.</p> <div class="example" id="example-343f2449"> <a class="self-link" href="#example-343f2449"></a> <p>Given:</p> @@ -980,20 +979,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1039,7 +1024,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[HTML]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="5d7209e9">Window</span> - <li><span class="dfn-paneled" id="0d5c3dcf">density-corrected intrinsic width and height</span> <li><span class="dfn-paneled" id="f0811ff8">img</span> <li><span class="dfn-paneled" id="29399d44">picture</span> <li><span class="dfn-paneled" id="c219fdf4">srcset</span> @@ -1301,7 +1285,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let dfnPanelData = { "04dca76c": {"dfnID":"04dca76c","dfnText":"clientWidth","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-element-clientwidth"}],"title":"2.1. The Sec-CH-Width Header Field"}],"url":"https://drafts.csswg.org/cssom-view-1/#dom-element-clientwidth"}, "089b1354": {"dfnID":"089b1354","dfnText":"integer","external":true,"refSections":[{"refs":[{"id":"ref-for-section-3.3.1"}],"title":"2.1. The Sec-CH-Width Header Field"},{"refs":[{"id":"ref-for-section-3.3.1\u2460"}],"title":"2.2. The Sec-CH-Viewport-Width Header Field"},{"refs":[{"id":"ref-for-section-3.3.1\u2461"}],"title":"2.3. The Sec-CH-Viewport-Height Header Field"}],"url":"https://tools.ietf.org/html/draft-ietf-httpbis-header-structure#section-3.3.1"}, -"0d5c3dcf": {"dfnID":"0d5c3dcf","dfnText":"density-corrected intrinsic width and height","external":true,"refSections":[{"refs":[{"id":"ref-for-density-corrected-intrinsic-width-and-height"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-density-corrected-intrinsic-width-and-height\u2460"}],"title":"2.4. The Sec-CH-DPR Header Field"}],"url":"https://html.spec.whatwg.org/multipage/images.html#density-corrected-intrinsic-width-and-height"}, "0e3ba2bf": {"dfnID":"0e3ba2bf","dfnText":"permissions-policy","external":true,"refSections":[{"refs":[{"id":"ref-for-permissions-policy-header"}],"title":"1. Introduction"}],"url":"https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-header"}, "29399d44": {"dfnID":"29399d44","dfnText":"picture","external":true,"refSections":[{"refs":[{"id":"ref-for-the-picture-element"}],"title":"1. Introduction"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element"}, "455b8b09": {"dfnID":"455b8b09","dfnText":"structured header","external":true,"refSections":[{"refs":[{"id":"ref-for-something\u2460"}],"title":"2.1. The Sec-CH-Width Header Field"},{"refs":[{"id":"ref-for-something\u2461"}],"title":"2.2. The Sec-CH-Viewport-Width Header Field"},{"refs":[{"id":"ref-for-something\u2462"}],"title":"2.3. The Sec-CH-Viewport-Height Header Field"},{"refs":[{"id":"ref-for-something\u2463"}],"title":"2.4. The Sec-CH-DPR Header Field"}],"url":"https://tools.ietf.org/html/draft-ietf-httpbis-header-structure#"}, @@ -1722,7 +1705,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset": {"export":true,"for_":["img"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"srcset","type":"element-attr","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"img","type":"element","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"picture","type":"element","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element"}, -"https://html.spec.whatwg.org/multipage/images.html#density-corrected-intrinsic-width-and-height": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"density-corrected intrinsic width and height","type":"dfn","url":"https://html.spec.whatwg.org/multipage/images.html#density-corrected-intrinsic-width-and-height"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "https://tools.ietf.org/html/draft-ietf-httpbis-client-hints#": {"export":true,"for_":[],"level":"","normative":true,"shortname":"i-d.ietf-httpbis-client-hints","spec":"i-d.ietf-httpbis-client-hints","status":"anchor-block","text":"client hints","type":"dfn","url":"https://tools.ietf.org/html/draft-ietf-httpbis-client-hints#"}, "https://tools.ietf.org/html/draft-ietf-httpbis-client-hints#section-3.1": {"export":true,"for_":["client hints"],"level":"","normative":true,"shortname":"i-d.ietf-httpbis-client-hints","spec":"i-d.ietf-httpbis-client-hints","status":"anchor-block","text":"accept-ch","type":"http-header","url":"https://tools.ietf.org/html/draft-ietf-httpbis-client-hints#section-3.1"}, diff --git a/tests/github/WICG/sanitizer-api/index.html b/tests/github/WICG/sanitizer-api/index.html index de1ed9f2b2..221975e4ac 100644 --- a/tests/github/WICG/sanitizer-api/index.html +++ b/tests/github/WICG/sanitizer-api/index.html @@ -747,7 +747,7 @@ <h1 class="p-name no-ref" id="title">HTML Sanitizer API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the HTML Sanitizer API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the HTML Sanitizer API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> diff --git a/tests/github/WICG/scheduling-apis/spec/index.html b/tests/github/WICG/scheduling-apis/spec/index.html index dc60f790e5..cb84e81fe8 100644 --- a/tests/github/WICG/scheduling-apis/spec/index.html +++ b/tests/github/WICG/scheduling-apis/spec/index.html @@ -472,7 +472,7 @@ <h1 class="p-name no-ref" id="title">Prioritized Task Scheduling</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Prioritized Task Scheduling Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Prioritized Task Scheduling Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -499,7 +499,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -535,20 +534,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span></h2> diff --git a/tests/github/WICG/scroll-to-text-fragment/index.console.txt b/tests/github/WICG/scroll-to-text-fragment/index.console.txt index c6298a48a7..14ccda77ee 100644 --- a/tests/github/WICG/scroll-to-text-fragment/index.console.txt +++ b/tests/github/WICG/scroll-to-text-fragment/index.console.txt @@ -8,100 +8,16 @@ LINE 848: No 'dfn' refs found for ' href="https://w3c.github.io/webappsec-fetch- <a bs-line-number="848" data-link-type="dfn" data-lt=' href="https://w3c.github.io/webappsec-fetch-metadata/#directly-user-initiated"&gt;sec-fetch-site'> href="https://w3c.github.io/webappsec-fetch-metadata/#directly-user-initiated"&gt;sec-fetch-site</a> LINE 856: No 'dfn' refs found for 'session history' with spec 'html'. <a bs-line-number="856" data-link-spec="HTML" data-link-type="dfn" data-lt="session history">session history</a> -LINE ~917: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~931: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE 932: No 'dfn' refs found for 'the indicated part of the document'. <a bs-line-number="932" data-link-spec="HTML" data-link-type="dfn" data-lt="the indicated part of the document">the indicated part of the document</a> LINE 957: No 'dfn' refs found for 'the indicated part of the document'. <a bs-line-number="957" data-link-spec="HTML" data-link-type="dfn" data-lt="the indicated part of the document">the indicated part of the document</a> -LINE ~968: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1059: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=Range=] -LINE ~1063: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1076: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=Ranges=] -LINE ~1098: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1098: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~1114: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~1128: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~1147: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1153: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1197: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1197: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] LINE ~1197: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. [=range/end=] LINE ~1207: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] -LINE ~1209: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1209: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] LINE ~1209: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. @@ -116,24 +32,12 @@ LINE ~1234: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-wr [=range/start=] LINE ~1252: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] -LINE ~1256: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1256: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] LINE ~1256: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. [=range/end=] LINE ~1267: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. [=range/end=] -LINE ~1273: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1273: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] LINE ~1273: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. @@ -142,54 +46,18 @@ LINE ~1276: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-wr [=range/start=] LINE ~1287: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] -LINE ~1298: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1298: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] -LINE ~1335: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1340: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1348: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1387: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. [=range/end=] -LINE ~1399: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~1405: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] -LINE ~1445: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~1520: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range +LINE ~1424: Multiple possible 'parent element' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#parent-element To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] +spec:dom; type:dfn; text:parent element +spec:wai-aria-1.2; type:dfn; text:parent element +[=parent element=] LINE ~1520: No 'dfn' refs found for 'start' with for='['range']' in spec 'css-writing-modes-4'. [=range/start=] LINE ~1520: No 'dfn' refs found for 'end' with for='['range']' in spec 'css-writing-modes-4'. diff --git a/tests/github/WICG/scroll-to-text-fragment/index.html b/tests/github/WICG/scroll-to-text-fragment/index.html index 04ed372f71..d970e5a63c 100644 --- a/tests/github/WICG/scroll-to-text-fragment/index.html +++ b/tests/github/WICG/scroll-to-text-fragment/index.html @@ -885,7 +885,7 @@ <h1 class="p-name no-ref" id="title">Text Fragments</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Text Fragments Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Text Fragments Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -978,7 +978,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -2269,7 +2268,7 @@ <h4 class="heading settled" data-level="3.5.3" id="word-boundaries"><span class= proposal to specify unicode segmentation, including word segmentation. Once specified, this algorithm may be improved by making use of the Intl.Segmenter API for word boundary matching. </div> - <p> A <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="word-boundary">word boundary</dfn> is defined in <a data-link-type="biblio" href="#biblio-uax29" title="Unicode Text Segmentation">[UAX29]</a> in <a href="https://www.unicode.org/reports/tr29/tr29-41.html#Word_Boundaries">Unicode Text Segmentation § Word_Boundaries</a>. <a href="https://www.unicode.org/reports/tr29/tr29-41.html#Default_Word_Boundaries">Unicode Text Segmentation § Default_Word_Boundaries</a> defines a + <p> A <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="word-boundary">word boundary</dfn> is defined in <a data-link-type="biblio" href="#biblio-uax29" title="Unicode Text Segmentation">[UAX29]</a> in <a href="https://www.unicode.org/reports/tr29/tr29-43.html#Word_Boundaries">Unicode Text Segmentation § Word_Boundaries</a>. <a href="https://www.unicode.org/reports/tr29/tr29-43.html#Default_Word_Boundaries">Unicode Text Segmentation § Default_Word_Boundaries</a> defines a default set of what constitutes a word boundary, but as the specification mentions, a more sophisticated algorithm should be used based on the locale. </p> <p> Dictionary-based word bounding should take specific care in locales without a @@ -2566,20 +2565,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont <ul class="wpt-tests-list"></ul> <hr> </details> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2785,9 +2770,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-cssom-view">[CSSOM-VIEW] <dd>Simon Pieters. <a href="https://drafts.csswg.org/cssom-view/"><cite>CSSOM View Module</cite></a>. URL: <a href="https://drafts.csswg.org/cssom-view/">https://drafts.csswg.org/cssom-view/</a> <dt id="biblio-document-policy">[DOCUMENT-POLICY] @@ -2805,11 +2790,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> <dt id="biblio-url">[URL] <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/"><cite>URL Standard</cite></a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a> <dt id="biblio-uts10">[UTS10] - <dd>Ken Whistler; Markus Scherer. <a href="https://www.unicode.org/reports/tr10/tr10-47.html"><cite>Unicode Collation Algorithm</cite></a>. 26 August 2022. Unicode Technical Standard #10. URL: <a href="https://www.unicode.org/reports/tr10/tr10-47.html">https://www.unicode.org/reports/tr10/tr10-47.html</a> + <dd>Ken Whistler; Markus Scherer. <a href="https://www.unicode.org/reports/tr10/tr10-49.html"><cite>Unicode Collation Algorithm</cite></a>. 5 September 2023. Unicode Technical Standard #10. URL: <a href="https://www.unicode.org/reports/tr10/tr10-49.html">https://www.unicode.org/reports/tr10/tr10-49.html</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -3674,7 +3659,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLVideoElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#location": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Location","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#location"}, "https://html.spec.whatwg.org/multipage/parsing.html#serializes-as-void": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"serializes as void","type":"dfn","url":"https://html.spec.whatwg.org/multipage/parsing.html#serializes-as-void"}, -"https://html.spec.whatwg.org/multipage/rendering.html#being-rendered": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"being rendered","type":"dfn","url":"https://html.spec.whatwg.org/multipage/rendering.html#being-rendered"}, +"https://html.spec.whatwg.org/multipage/rendering.html#being-rendered": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"being rendered","type":"dfn","url":"https://html.spec.whatwg.org/multipage/rendering.html#being-rendered"}, "https://html.spec.whatwg.org/multipage/scripting.html#htmlscriptelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLScriptElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/scripting.html#htmlscriptelement"}, "https://html.spec.whatwg.org/multipage/semantics.html#htmlstyleelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLStyleElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/semantics.html#htmlstyleelement"}, "https://infra.spec.whatwg.org/#ascii-string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ascii string","type":"dfn","url":"https://infra.spec.whatwg.org/#ascii-string"}, diff --git a/tests/github/WICG/shape-detection-api/index-zh-cn.html b/tests/github/WICG/shape-detection-api/index-zh-cn.html index 3d8d16c939..4a13d3dee2 100644 --- a/tests/github/WICG/shape-detection-api/index-zh-cn.html +++ b/tests/github/WICG/shape-detection-api/index-zh-cn.html @@ -946,7 +946,7 @@ <h1 class="p-name no-ref allcaps" id="title">加速的图形识别</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the 加速的图形识别 Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the 加速的图形识别 Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -994,7 +994,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1236,20 +1235,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/shape-detection-api/index.html b/tests/github/WICG/shape-detection-api/index.html index b7a9069773..80ce18f658 100644 --- a/tests/github/WICG/shape-detection-api/index.html +++ b/tests/github/WICG/shape-detection-api/index.html @@ -949,7 +949,7 @@ <h1 class="p-name no-ref" id="title">Accelerated Shape Detection in Images</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Accelerated Shape Detection in Images Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Accelerated Shape Detection in Images Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1007,7 +1007,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1337,20 +1336,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1627,7 +1612,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-barcodedetector-getsupportedformats"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector/getSupportedFormats" title="The getSupportedFormats() static method of the BarcodeDetector interface returns a Promise which fulfills with an Array of supported barcode format types.">BarcodeDetector/getSupportedFormats</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector/getSupportedFormats_static" title="The getSupportedFormats() static method of the BarcodeDetector interface returns a Promise which fulfills with an Array of supported barcode format types.">BarcodeDetector/getSupportedFormats_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> diff --git a/tests/github/WICG/shape-detection-api/text.html b/tests/github/WICG/shape-detection-api/text.html index 8c2c312987..12b56301e4 100644 --- a/tests/github/WICG/shape-detection-api/text.html +++ b/tests/github/WICG/shape-detection-api/text.html @@ -723,7 +723,7 @@ <h1 class="p-name no-ref" id="title">Accelerated Text Detection in Images</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Accelerated Text Detection in Images Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Accelerated Text Detection in Images Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -771,7 +771,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -889,20 +888,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/sms-one-time-codes/index.html b/tests/github/WICG/sms-one-time-codes/index.html index 2eefbc8eb8..76d7b193f9 100644 --- a/tests/github/WICG/sms-one-time-codes/index.html +++ b/tests/github/WICG/sms-one-time-codes/index.html @@ -577,7 +577,7 @@ <h1 class="p-name no-ref" id="title">Origin-bound one-time codes delivered via S </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Origin-bound one-time codes delivered via SMS Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Origin-bound one-time codes delivered via SMS Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -620,7 +620,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -863,20 +862,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WICG/speech-api/index.html b/tests/github/WICG/speech-api/index.html index 9f5c4029e5..c6320dc91d 100644 --- a/tests/github/WICG/speech-api/index.html +++ b/tests/github/WICG/speech-api/index.html @@ -932,7 +932,7 @@ <h1 class="p-name no-ref" id="title">Web Speech API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Speech API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Speech API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1005,7 +1005,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1892,20 +1891,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2752,7 +2737,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-speechrecognition-lang"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang" title="A string representing the BCP 47 language tag for the current SpeechRecognition.">SpeechRecognition/lang</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang" title="The lang property of the SpeechRecognition interface returns and sets the language of the current SpeechRecognition. If not specified, this defaults to the HTML lang attribute value, or the user agent&apos;s language setting if that isn&apos;t set either.">SpeechRecognition/lang</a></p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>33+</span></span> <hr> @@ -3087,11 +3072,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3102,11 +3087,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3118,11 +3103,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> - <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3265,7 +3250,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="speechreco-resultlist"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList" title="The SpeechRecognitionResultList interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in continuous mode.">SpeechRecognitionResultList</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList" title="The SpeechRecognitionResultList interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in non-continuous mode.">SpeechRecognitionResultList</a></p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>33+</span></span> <hr> @@ -3466,6 +3451,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesiserrorevent-speechsynthesiserrorevent"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisErrorEvent/SpeechSynthesisErrorEvent" title="The SpeechSynthesisErrorEvent() constructor creates a new SpeechSynthesisErrorEvent object.">SpeechSynthesisErrorEvent/SpeechSynthesisErrorEvent</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesiserrorevent-error"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3498,6 +3499,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesisevent-speechsynthesisevent"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisEvent/SpeechSynthesisEvent" title="The SpeechSynthesisEvent() constructor creates a new SpeechSynthesisEvent object.">SpeechSynthesisEvent/SpeechSynthesisEvent</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesisevent-charindex"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3514,6 +3531,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesisevent-charlength"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisEvent/charLength" title="The read-only charLength property of the SpeechSynthesisEvent interface returns the number of characters left to be spoken after the character at the charIndex position.">SpeechSynthesisEvent/charLength</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>77+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>15+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesisevent-elapsedtime"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3595,34 +3628,32 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="eventdef-speechsynthesisutterance-boundary"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/boundary_event" title="The boundary event of the Web Speech API is fired when the spoken utterance reaches a word or sentence boundary.">SpeechSynthesisUtterance/boundary_event</a></p> - <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>33+</span></span> + <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>21+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>21+</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>3.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>3.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-speechsynthesisutterance-onboundary"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/boundary_event" title="The boundary event of the Web Speech API is fired when the spoken utterance reaches a word or sentence boundary.">SpeechSynthesisUtterance/boundary_event</a></p> - <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>33+</span></span> + <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>21+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>21+</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>3.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android yes"><span>Firefox for Android</span><span>62+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>3.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> </div> </div> </details> diff --git a/tests/github/WICG/storage-buckets/index.html b/tests/github/WICG/storage-buckets/index.html index a080d62e00..5110f60082 100644 --- a/tests/github/WICG/storage-buckets/index.html +++ b/tests/github/WICG/storage-buckets/index.html @@ -421,7 +421,7 @@ <h1 class="p-name no-ref" id="title">Storage Buckets</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Storage Buckets Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Storage Buckets Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -449,7 +449,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -488,20 +487,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/WICG/ua-client-hints/index.console.txt b/tests/github/WICG/ua-client-hints/index.console.txt index ef580e351f..f47e551d22 100644 --- a/tests/github/WICG/ua-client-hints/index.console.txt +++ b/tests/github/WICG/ua-client-hints/index.console.txt @@ -2,4 +2,5 @@ LINK ERROR: Obsolete biblio ref: [rfc7231] is replaced by [rfc9110]. Either upda LINK ERROR: Obsolete biblio ref: [rfc7231] is replaced by [RFC7231]. Either update the reference, or use [rfc7231 obsolete] if this is an intentionally-obsolete reference. LINE ~551: No 'dfn' refs found for 'permission task source' that are marked for export. [=permission task source=] +WARNING: No 'dom-navigatoruadata-tojson' ID found, skipping MDN features that would target it. WARNING: No 'sec-ch-ua-full-version-list' ID found, skipping MDN features that would target it. diff --git a/tests/github/WICG/ua-client-hints/index.html b/tests/github/WICG/ua-client-hints/index.html index 3002f5bdf3..d7c04fa538 100644 --- a/tests/github/WICG/ua-client-hints/index.html +++ b/tests/github/WICG/ua-client-hints/index.html @@ -974,7 +974,7 @@ <h1 class="p-name no-ref" id="title">User-Agent Client Hints</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the User-Agent Client Hints Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the User-Agent Client Hints Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1766,7 +1766,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-rfc8941">[RFC8941] - <dd>M. Nottingham; P-H. Kamp. <a href="https://www.rfc-editor.org/rfc/rfc8941"><cite>Structured Field Values for HTTP</cite></a>. February 2021. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc8941">https://www.rfc-editor.org/rfc/rfc8941</a> + <dd>M. Nottingham; P-H. Kamp. <a href="https://httpwg.org/specs/rfc8941.html"><cite>Structured Field Values for HTTP</cite></a>. February 2021. Proposed Standard. URL: <a href="https://httpwg.org/specs/rfc8941.html">https://httpwg.org/specs/rfc8941.html</a> <dt id="biblio-rfc8942">[RFC8942] <dd>I. Grigorik; Y. Weiss. <a href="https://www.rfc-editor.org/rfc/rfc8942"><cite>HTTP Client Hints</cite></a>. February 2021. Experimental. URL: <a href="https://www.rfc-editor.org/rfc/rfc8942">https://www.rfc-editor.org/rfc/rfc8942</a> <dt id="biblio-webidl">[WEBIDL] @@ -1785,7 +1785,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-rfc3864">[RFC3864] <dd>G. Klyne; M. Nottingham; J. Mogul. <a href="https://www.rfc-editor.org/rfc/rfc3864"><cite>Registration Procedures for Message Header Fields</cite></a>. September 2004. Best Current Practice. URL: <a href="https://www.rfc-editor.org/rfc/rfc3864">https://www.rfc-editor.org/rfc/rfc3864</a> <dt id="biblio-rfc7231">[RFC7231] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-rossi2015">[Rossi2015] <dd><a href="https://channel9.msdn.com/Events/WebPlatformSummit/2015/The-Microsoft-Edge-Rendering-Engine-that-makes-the-Web-just-work#time=9m45s"><cite>The Microsoft Edge Rendering Engine that makes the Web just work</cite></a>. URL: <a href="https://channel9.msdn.com/Events/WebPlatformSummit/2015/The-Microsoft-Edge-Rendering-Engine-that-makes-the-Web-just-work#time=9m45s">https://channel9.msdn.com/Events/WebPlatformSummit/2015/The-Microsoft-Edge-Rendering-Engine-that-makes-the-Web-just-work#time=9m45s</a> </dl> @@ -1828,6 +1828,102 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> Perhaps <code>Sec-CH-UA-Mobile</code> is enough, and we don’t need to expose the model? <a class="issue-return" href="#issue-1a9c4c0c" title="Jump to section">↵</a></div> <div class="issue"> We can improve upon when and why a UA decides to refuse a hint once <a href="https://github.com/WICG/ua-client-hints/issues/151">Issue #151</a> is resolved. <a class="issue-return" href="#issue-22962aa8" title="Jump to section">↵</a></div> </div> + <details class="mdn-anno unpositioned" data-anno-for="dom-navigatoruadata-brands"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/brands" title="The brands read-only property of the NavigatorUAData interface returns an array of brand information.">NavigatorUAData/brands</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>90+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>90+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-navigatoruadata-gethighentropyvalues"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/getHighEntropyValues" title="The getHighEntropyValues() method of the NavigatorUAData interface is a Promise that resolves with a dictionary object containing the high entropy values the user-agent returns.">NavigatorUAData/getHighEntropyValues</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>90+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>90+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-navigatoruadata-mobile"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/mobile" title="The mobile read-only property of the NavigatorUAData interface returns a value indicating whether the device is a mobile device.">NavigatorUAData/mobile</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>90+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>90+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-navigatoruadata-platform"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData/platform" title="The platform read-only property of the NavigatorUAData interface returns the platform brand information.">NavigatorUAData/platform</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>93+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>93+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="navigatoruadata"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData" title="The NavigatorUAData interface of the User-Agent Client Hints API returns information about the browser and operating system of a user.">NavigatorUAData</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>90+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>90+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-navigatorua-useragentdata"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/userAgentData" title="The userAgentData read-only property of the WorkerNavigator interface returns an NavigatorUAData object which can be used to access the User-Agent Client Hints API.">WorkerNavigator/userAgentData</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>90+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>90+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="sec-ch-ua-arch"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> diff --git a/tests/github/WICG/video-rvfc/index.html b/tests/github/WICG/video-rvfc/index.html index b4a48f2c4b..af3db7c8c3 100644 --- a/tests/github/WICG/video-rvfc/index.html +++ b/tests/github/WICG/video-rvfc/index.html @@ -750,7 +750,7 @@ <h1 class="p-name no-ref" id="title">HTMLVideoElement.requestVideoFrameCallback( </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the HTMLVideoElement.requestVideoFrameCallback() Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the HTMLVideoElement.requestVideoFrameCallback() Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -797,7 +797,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1111,20 +1110,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1216,7 +1201,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-media-capabilities">[MEDIA-CAPABILITIES] - <dd>Jean-Yves Avenard; Will Cassella. <a href="https://w3c.github.io/media-capabilities/"><cite>Media Capabilities</cite></a>. URL: <a href="https://w3c.github.io/media-capabilities/">https://w3c.github.io/media-capabilities/</a> + <dd>Jean-Yves Avenard. <a href="https://w3c.github.io/media-capabilities/"><cite>Media Capabilities</cite></a>. URL: <a href="https://w3c.github.io/media-capabilities/">https://w3c.github.io/media-capabilities/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-webidl">[WEBIDL] diff --git a/tests/github/WICG/web-locks/index.html b/tests/github/WICG/web-locks/index.html index 690d83d422..ff7728a02f 100644 --- a/tests/github/WICG/web-locks/index.html +++ b/tests/github/WICG/web-locks/index.html @@ -990,7 +990,7 @@ <h1 class="p-name no-ref" id="title">Web Locks API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Locks API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Locks API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1068,7 +1068,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1827,20 +1826,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2194,6 +2179,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/locks" title="The locks read-only property of the WorkerNavigator interface returns a LockManager object which provides methods for requesting a new Lock object and querying for an existing Lock object.">WorkerNavigator/locks</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>96+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/WICG/web-otp/index.console.txt b/tests/github/WICG/web-otp/index.console.txt index daf43efb87..b0c416205f 100644 --- a/tests/github/WICG/web-otp/index.console.txt +++ b/tests/github/WICG/web-otp/index.console.txt @@ -3,8 +3,20 @@ If this is not a typo, please add an ignore='' attribute to the <var>. LINE 62: Image doesn't exist, so I couldn't determine its width and height: 'logo-otp.svg' LINK ERROR: No 'idl' refs found for '[[CollectFromCredentialStore]]()' with for='['OTPCredential']'. {{OTPCredential/[[CollectFromCredentialStore]]()}} +LINE ~239: Multiple possible 'credentials' dfn refs. +Arbitrarily chose https://fetch.spec.whatwg.org/#credentials +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:fetch; type:dfn; text:credentials +spec:vc-data-model-2.0; type:dfn; text:credentials +[=credentials=] LINE ~245: No 'dfn' refs found for 'authorization gesture' that are marked for export. [=authorization gesture=] +LINE ~245: Multiple possible 'credentials' dfn refs. +Arbitrarily chose https://fetch.spec.whatwg.org/#credentials +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:fetch; type:dfn; text:credentials +spec:vc-data-model-2.0; type:dfn; text:credentials +[=credentials=] LINE ~245: No 'dfn' refs found for 'internal method'. [=internal method=] LINE ~274: No 'dfn' refs found for 'internal slot'. diff --git a/tests/github/WICG/web-otp/index.html b/tests/github/WICG/web-otp/index.html index c4ffb0da41..c17fb5f24d 100644 --- a/tests/github/WICG/web-otp/index.html +++ b/tests/github/WICG/web-otp/index.html @@ -719,7 +719,7 @@ <h1 class="p-name no-ref" id="title">WebOTP API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the WebOTP API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the WebOTP API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -784,7 +784,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1187,20 +1186,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1299,7 +1284,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-credential-management-1">[CREDENTIAL-MANAGEMENT-1] - <dd>Mike West. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> + <dd>Nina Satragno; Marcos Caceres. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-fetch">[FETCH] diff --git a/tests/github/WICG/webpackage/loading.html b/tests/github/WICG/webpackage/loading.html index a6a750dec1..e8d58dcf9c 100644 --- a/tests/github/WICG/webpackage/loading.html +++ b/tests/github/WICG/webpackage/loading.html @@ -740,7 +740,7 @@ <h1 class="p-name no-ref" id="title">Loading Signed Exchanges</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Loading Signed Exchanges Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Loading Signed Exchanges Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -849,7 +849,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -2627,20 +2626,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2960,7 +2945,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="fc5a3214">parameters</span> </ul> <li> - <a data-link-type="biblio">[NETWORK-ERROR-LOGGING-1]</a> defines the following terms: + <a data-link-type="biblio">[NETWORK-ERROR-LOGGING]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="935cf05e">nel policy</span> </ul> @@ -3130,8 +3115,8 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dd>Jeffrey Yasskin; Kouhei Ueno. <a href="https://tools.ietf.org/html/draft-yasskin-httpbis-origin-signed-exchanges-impl-03"><cite>Signed HTTP Exchanges Implementation Checkpoints</cite></a>. ED. URL: <a href="https://tools.ietf.org/html/draft-yasskin-httpbis-origin-signed-exchanges-impl-03">https://tools.ietf.org/html/draft-yasskin-httpbis-origin-signed-exchanges-impl-03</a> <dt id="biblio-http-dig-alg">[HTTP-DIG-ALG] <dd><a href="https://www.iana.org/assignments/http-dig-alg/http-dig-alg.xhtml"><cite>Hypertext Transfer Protocol (HTTP) Digest Algorithm Values</cite></a>. LS. URL: <a href="https://www.iana.org/assignments/http-dig-alg/http-dig-alg.xhtml">https://www.iana.org/assignments/http-dig-alg/http-dig-alg.xhtml</a> - <dt id="biblio-network-error-logging-1">[NETWORK-ERROR-LOGGING-1] - <dd>Douglas Creager; et al. <a href="https://w3c.github.io/network-error-logging/"><cite>Network Error Logging</cite></a>. URL: <a href="https://w3c.github.io/network-error-logging/">https://w3c.github.io/network-error-logging/</a> + <dt id="biblio-network-error-logging">[NETWORK-ERROR-LOGGING] + <dd>Douglas Creager; Ian Clelland. <a href="https://w3c.github.io/network-error-logging/"><cite>Network Error Logging</cite></a>. URL: <a href="https://w3c.github.io/network-error-logging/">https://w3c.github.io/network-error-logging/</a> <dt id="biblio-rfc3230">[RFC3230] <dd>J. Mogul; A. Van Hoff. <a href="https://www.rfc-editor.org/rfc/rfc3230"><cite>Instance Digests in HTTP</cite></a>. January 2002. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc3230">https://www.rfc-editor.org/rfc/rfc3230</a> <dt id="biblio-service-workers">[SERVICE-WORKERS] @@ -4259,7 +4244,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://w3c.github.io/ServiceWorker/#dom-fetchevent-request": {"export":true,"for_":["FetchEvent"],"level":"1","normative":true,"shortname":"service-workers","spec":"service-workers","status":"current","text":"request","type":"attribute","url":"https://w3c.github.io/ServiceWorker/#dom-fetchevent-request"}, "https://w3c.github.io/ServiceWorker/#dom-serviceworkerregistration-navigationpreload": {"export":true,"for_":["ServiceWorkerRegistration"],"level":"1","normative":true,"shortname":"service-workers","spec":"service-workers","status":"current","text":"navigationPreload","type":"attribute","url":"https://w3c.github.io/ServiceWorker/#dom-serviceworkerregistration-navigationpreload"}, "https://w3c.github.io/ServiceWorker/#fetchevent": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"service-workers","spec":"service-workers","status":"current","text":"FetchEvent","type":"interface","url":"https://w3c.github.io/ServiceWorker/#fetchevent"}, -"https://w3c.github.io/network-error-logging/#dfn-nel-policies": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"network-error-logging","spec":"network-error-logging-1","status":"current","text":"nel policy","type":"dfn","url":"https://w3c.github.io/network-error-logging/#dfn-nel-policies"}, +"https://w3c.github.io/network-error-logging/#dfn-nel-policies": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"network-error-logging","spec":"network-error-logging","status":"current","text":"nel policy","type":"dfn","url":"https://w3c.github.io/network-error-logging/#dfn-nel-policies"}, "https://w3c.github.io/webappsec-csp/#grammardef-hash-source": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"csp","spec":"csp3","status":"current","text":"hash-source","type":"grammar","url":"https://w3c.github.io/webappsec-csp/#grammardef-hash-source"}, "https://w3c.github.io/webappsec-secure-contexts/#potentially-trustworthy-origin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"secure-contexts","spec":"secure-contexts","status":"current","text":"potentially trustworthy origin","type":"dfn","url":"https://w3c.github.io/webappsec-secure-contexts/#potentially-trustworthy-origin"}, "https://webidl.spec.whatwg.org/#idl-ArrayBuffer": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"ArrayBuffer","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-ArrayBuffer"}, diff --git a/tests/github/WICG/webusb/index.console.txt b/tests/github/WICG/webusb/index.console.txt index 8bb67e94ef..237c78652f 100644 --- a/tests/github/WICG/webusb/index.console.txt +++ b/tests/github/WICG/webusb/index.console.txt @@ -1,2 +1,3 @@ WARNING: No 'usbconfiguration-interface' ID found, skipping MDN features that would target it. +WARNING: No 'dom-usbdevice-forget' ID found, skipping MDN features that would target it. WARNING: No 'usbendpoint-interface' ID found, skipping MDN features that would target it. diff --git a/tests/github/WICG/webusb/index.html b/tests/github/WICG/webusb/index.html index 0d0395fee5..b0c9a3d210 100644 --- a/tests/github/WICG/webusb/index.html +++ b/tests/github/WICG/webusb/index.html @@ -949,7 +949,7 @@ <h1 class="p-name no-ref" id="title">WebUSB API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the WebUSB API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the WebUSB API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1032,7 +1032,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -2603,20 +2602,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3276,7 +3261,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="disconnect"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USB/disconnect_event" title="The connect event of the USB interface is fired whenever a paired device is disconnected.">USB/disconnect_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USB/disconnect_event" title="The disconnect event of the USB interface is fired whenever a paired device is disconnected.">USB/disconnect_event</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -3292,7 +3277,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-usb-ondisconnect"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USB/disconnect_event" title="The connect event of the USB interface is fired whenever a paired device is disconnected.">USB/disconnect_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USB/disconnect_event" title="The disconnect event of the USB interface is fired whenever a paired device is disconnected.">USB/disconnect_event</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -3564,7 +3549,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-usbdevice-controltransferin"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/controlTransferIn" title="The controlTransferIn() method of the USBDevice interface returns a promise that resolves with a USBInTransferResult when the result of a command or status request has been received from the USB device.">USBDevice/controlTransferIn</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/controlTransferIn" title="The controlTransferIn() method of the USBDevice interface returns a Promise that resolves with a USBInTransferResult when a command or status request has been transmitted to (received by) the USB device.">USBDevice/controlTransferIn</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -3580,7 +3565,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-usbdevice-controltransferout①"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/controlTransferOut" title="The controlTransferOut() method of the USBDevice interface returns a promise that resolves with a USBOutTransferResult when a command or status operation has been transmitted to the USB device.">USBDevice/controlTransferOut</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/controlTransferOut" title="The controlTransferOut() method of the USBDevice interface returns a Promise that resolves with a USBOutTransferResult when a command or status operation has been transmitted from the USB device.">USBDevice/controlTransferOut</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -3692,7 +3677,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-usbdevice-isochronoustransferin"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/isochronousTransferIn" title="The isochronousTransferIn() method of the USBDevice interface returns a promise that resolves with a USBIsochronousInTransferResult when time sensitive information has been transmitted received from the USB device.">USBDevice/isochronousTransferIn</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/isochronousTransferIn" title="The isochronousTransferIn() method of the USBDevice interface returns a Promise that resolves with a USBIsochronousInTransferResult when time sensitive information has been transmitted to (received by) the USB device.">USBDevice/isochronousTransferIn</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -3708,7 +3693,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-usbdevice-isochronoustransferout"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/isochronousTransferOut" title="The isochronousTransferOut() method of the USBDevice interface returns a promise that resolves with a USBIsochronousOutTransferResult when time sensitive information has been transmitted to the USB device.">USBDevice/isochronousTransferOut</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/USBDevice/isochronousTransferOut" title="The isochronousTransferOut() method of the USBDevice interface returns a Promise that resolves with a USBIsochronousOutTransferResult when time sensitive information has been transmitted from the USB device.">USBDevice/isochronousTransferOut</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -4108,7 +4093,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="permissions-policy"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/usb" title="The HTTP Feature-Policy header usb directive controls whether the current document is allowed to use the WebUSB API.">Headers/Feature-Policy/usb</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/usb" title="The HTTP Permissions-Policy header usb directive controls whether the current document is allowed to use the WebUSB API.">Headers/Feature-Policy/usb</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> @@ -4120,6 +4105,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/usb" title="The HTTP Permissions-Policy header usb directive controls whether the current document is allowed to use the WebUSB API.">Headers/Permissions-Policy/usb</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>88+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/WICG/webusb/test/index.html b/tests/github/WICG/webusb/test/index.html index a3d24b2dd7..7aa28b2e9a 100644 --- a/tests/github/WICG/webusb/test/index.html +++ b/tests/github/WICG/webusb/test/index.html @@ -706,7 +706,7 @@ <h1 class="p-name no-ref" id="title">WebUSB Testing API</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the WebUSB Testing API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the WebUSB Testing API Specification, published by the <a href="https://www.w3.org/community/wicg/">Web Platform Incubator Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -750,7 +750,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1115,20 +1114,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WebAudio/web-audio-api-v2/index.console.txt b/tests/github/WebAudio/web-audio-api-v2/index.console.txt index dcd77cfd0e..5b2ccae1c0 100644 --- a/tests/github/WebAudio/web-audio-api-v2/index.console.txt +++ b/tests/github/WebAudio/web-audio-api-v2/index.console.txt @@ -38,6 +38,9 @@ WARNING: No 'dom-audiocontext-createmediastreamtracksource' ID found, skipping M WARNING: No 'dom-audiocontext-getoutputtimestamp' ID found, skipping MDN features that would target it. WARNING: No 'dom-audiocontext-outputlatency' ID found, skipping MDN features that would target it. WARNING: No 'dom-audiocontext-resume' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audiocontext-setsinkid' ID found, skipping MDN features that would target it. +WARNING: No 'eventdef-audiocontext-sinkchange' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audiocontext-sinkid' ID found, skipping MDN features that would target it. WARNING: No 'dom-audiocontext-suspend' ID found, skipping MDN features that would target it. WARNING: No 'AudioContext' ID found, skipping MDN features that would target it. WARNING: No 'dom-audiodestinationnode-maxchannelcount' ID found, skipping MDN features that would target it. @@ -79,8 +82,13 @@ WARNING: No 'dom-audioscheduledsourcenode-onended' ID found, skipping MDN featur WARNING: No 'dom-audioscheduledsourcenode-start' ID found, skipping MDN features that would target it. WARNING: No 'dom-audioscheduledsourcenode-stop' ID found, skipping MDN features that would target it. WARNING: No 'AudioScheduledSourceNode' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audiosinkinfo-type' ID found, skipping MDN features that would target it. +WARNING: No 'AudioSinkInfo' ID found, skipping MDN features that would target it. WARNING: No 'AudioWorklet' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audioworkletglobalscope-currentframe' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audioworkletglobalscope-currenttime' ID found, skipping MDN features that would target it. WARNING: No 'dom-audioworkletglobalscope-registerprocessor' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audioworkletglobalscope-samplerate' ID found, skipping MDN features that would target it. WARNING: No 'AudioWorkletGlobalScope' ID found, skipping MDN features that would target it. WARNING: No 'dom-audioworkletnode-audioworkletnode' ID found, skipping MDN features that would target it. WARNING: No 'dom-audioworkletnode-parameters' ID found, skipping MDN features that would target it. diff --git a/tests/github/WebAudio/web-audio-api-v2/index.html b/tests/github/WebAudio/web-audio-api-v2/index.html index 71f8600179..509d88f170 100644 --- a/tests/github/WebAudio/web-audio-api-v2/index.html +++ b/tests/github/WebAudio/web-audio-api-v2/index.html @@ -5,7 +5,6 @@ <title>Web Audio API V2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://github.com/WebAudio/web-audio-api-v2" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -429,7 +428,7 @@ <h1 class="p-name no-ref" id="title">Web Audio API V2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -445,11 +444,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> If you wish to make comments regarding this document, please <a href="https://github.com/WebAudio/web-audio-api-v2/issues/new">file an issue on the specification repository</a> or send them to <a href="mailto:public-audio@w3.org">public-audio@w3.org</a> (<a href="mailto:public-audio-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-audio/">archives</a>). </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/audio">Web Audio Working Group</a>. </p> <p> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/audio/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -521,20 +520,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/WebAudio/web-audio-api/index.console.txt b/tests/github/WebAudio/web-audio-api/index.console.txt index b1d7463537..5503dc434d 100644 --- a/tests/github/WebAudio/web-audio-api/index.console.txt +++ b/tests/github/WebAudio/web-audio-api/index.console.txt @@ -223,6 +223,11 @@ LINE 10398: No 'dfn' refs found for 'present'. LINE 10424: No 'dfn' refs found for 'present'. <a bs-line-number="10424" data-link-spec="webidl" data-lt="present" data-link-type="dfn">not present</a> LINE 12379: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'dom-audiocontext-setsinkid' ID found, skipping MDN features that would target it. +WARNING: No 'eventdef-audiocontext-sinkchange' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audiocontext-sinkid' ID found, skipping MDN features that would target it. +WARNING: No 'dom-audiosinkinfo-type' ID found, skipping MDN features that would target it. +WARNING: No 'AudioSinkInfo' ID found, skipping MDN features that would target it. LINE 3068: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="3068" data-dfn-type="dfn" data-dfn-for="AudioNode" id="audionode-channelinterpretation-constraints" data-lt="channelInterpretation constraints" data-noexport="by-default" class="dfn-paneled">channelInterpretation constraints</dfn> LINE 3391: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/WebAudio/web-audio-api/index.html b/tests/github/WebAudio/web-audio-api/index.html index 765f82ba65..abb0c8cf66 100644 --- a/tests/github/WebAudio/web-audio-api/index.html +++ b/tests/github/WebAudio/web-audio-api/index.html @@ -5,7 +5,6 @@ <title>Web Audio API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webaudio/" rel="canonical"> <link href="favicon.png" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1170,7 +1169,7 @@ <h1 class="p-name no-ref" id="title">Web Audio API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1196,11 +1195,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> If you wish to make comments regarding this document, please <a href="https://github.com/WebAudio/web-audio-api/issues/new">file an issue on the specification repository</a> or send them to <a href="mailto:public-audio@w3.org">public-audio@w3.org</a> (<a href="mailto:public-audio-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-audio/">archives</a>). </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/audio">Web Audio Working Group</a>. </p> <p> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/audio/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1801,10 +1800,10 @@ <h3 class="heading settled" id="Features"><span class="content"> Features</span> <p>Integration with WebRTC</p> <ul> <li data-md> - <p>Processing audio received from a remote peer using a <code class="idl"><a data-link-type="idl" href="#mediastreamtrackaudiosourcenode" id="ref-for-mediastreamtrackaudiosourcenode①">MediaStreamTrackAudioSourceNode</a></code> and <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[webrtc]</a>.</p> + <p>Processing audio received from a remote peer using a <code class="idl"><a data-link-type="idl" href="#mediastreamtrackaudiosourcenode" id="ref-for-mediastreamtrackaudiosourcenode①">MediaStreamTrackAudioSourceNode</a></code> and <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[webrtc]</a>.</p> <li data-md> <p>Sending a generated or processed audio stream to a remote -peer using a <code class="idl"><a data-link-type="idl" href="#mediastreamaudiodestinationnode" id="ref-for-mediastreamaudiodestinationnode">MediaStreamAudioDestinationNode</a></code> and <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[webrtc]</a>.</p> +peer using a <code class="idl"><a data-link-type="idl" href="#mediastreamaudiodestinationnode" id="ref-for-mediastreamaudiodestinationnode">MediaStreamAudioDestinationNode</a></code> and <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[webrtc]</a>.</p> </ul> <li data-md> <p>Audio stream synthesis and processing <a href="#AudioWorklet" id="ref-for-AudioWorklet">directly using scripts</a>.</p> @@ -7674,7 +7673,7 @@ <h3 class="heading settled dfn-paneled idl-code" data-dfn-type="interface" data- <p>This interface is an audio destination representing a <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-mediastream" id="ref-for-dom-mediastream⑥">MediaStream</a></code> with a single <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack" id="ref-for-dom-mediastreamtrack⑤">MediaStreamTrack</a></code> whose <code>kind</code> is <code>"audio"</code>. This <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-mediastream" id="ref-for-dom-mediastream⑦">MediaStream</a></code> is created when the node is created and is accessible via the <code class="idl"><a data-link-type="idl" href="#dom-mediastreamaudiodestinationnode-stream" id="ref-for-dom-mediastreamaudiodestinationnode-stream">stream</a></code> attribute. This stream can be used in a similar way as a <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-mediastream" id="ref-for-dom-mediastream⑧">MediaStream</a></code> obtained via <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#dom-mediadevices-getusermedia" id="ref-for-dom-mediadevices-getusermedia①">getUserMedia()</a></code>, and can, for example, be sent to a -remote peer using the <code>RTCPeerConnection</code> (described in <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[webrtc]</a>) <code>addStream()</code> method.</p> +remote peer using the <code>RTCPeerConnection</code> (described in <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[webrtc]</a>) <code>addStream()</code> method.</p> <p>The number of channels of the input is by default 2 (stereo).</p> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed" id="ref-for-Exposed②③"><c- g>Exposed</c-></a>=<c- n>Window</c->] <c- b>interface</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="interface" data-export id="mediastreamaudiodestinationnode"><code><c- g>MediaStreamAudioDestinationNode</c-></code></dfn> : <a data-link-type="idl-name" href="#audionode" id="ref-for-audionode①⑥⓪"><c- n>AudioNode</c-></a> { @@ -9417,7 +9416,7 @@ <h5 class="heading settled" data-level="1.32.3.2" id="AudioWorkletNode-attribute <p>Every <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode③①">AudioWorkletNode</a></code> has an associated <code>port</code> which is the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messageport" id="ref-for-messageport④">MessagePort</a></code>. It is connected to the port on the corresponding <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor①⑧">AudioWorkletProcessor</a></code> object allowing bidirectional communication between the <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode③②">AudioWorkletNode</a></code> and its <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor①⑨">AudioWorkletProcessor</a></code>.</p> - <p class="note" role="note"><span class="marker">Note:</span> Authors that register a event listener on the <code>"message"</code> event of this <code class="idl"><a data-link-type="idl" href="#dom-audioworkletnode-port" id="ref-for-dom-audioworkletnode-port③">port</a></code> should call <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-close" id="ref-for-dom-messageport-close">close</a></code> on + <p class="note" role="note"><span class="marker">Note:</span> Authors that register a event listener on the <code>"message"</code> event of this <code class="idl"><a data-link-type="idl" href="#dom-audioworkletnode-port" id="ref-for-dom-audioworkletnode-port③">port</a></code> should call <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/indices.html#event-close" id="ref-for-event-close">close</a></code> on either end of the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel" id="ref-for-messagechannel①">MessageChannel</a></code> (either in the <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor②⓪">AudioWorkletProcessor</a></code> or the <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode③③">AudioWorkletNode</a></code> side) to allow for resources to be <a href="https://html.spec.whatwg.org/multipage/web-messaging.html#ports-and-garbage-collection">collected</a>.</p> </dl> @@ -9565,7 +9564,7 @@ <h5 class="heading settled" data-level="1.32.4.2" id="AudioWorkletProcessor-attr <p>Every <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor②⑥">AudioWorkletProcessor</a></code> has an associated <code>port</code> which is a <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messageport" id="ref-for-messageport⑦">MessagePort</a></code>. It is connected to the port on the corresponding <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode④⓪">AudioWorkletNode</a></code> object allowing bidirectional communication between an <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode④①">AudioWorkletNode</a></code> and its <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor②⑦">AudioWorkletProcessor</a></code>.</p> - <p class="note" role="note"><span class="marker">Note:</span> Authors that register a event listener on the <code>"message"</code> event of this <code class="idl"><a data-link-type="idl" href="#dom-audioworkletprocessor-port" id="ref-for-dom-audioworkletprocessor-port②">port</a></code> should call <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-close" id="ref-for-dom-messageport-close①">close</a></code> on either end of the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel" id="ref-for-messagechannel②">MessageChannel</a></code> (either in the <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor②⑧">AudioWorkletProcessor</a></code> or the <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode④②">AudioWorkletNode</a></code> side) to allow for + <p class="note" role="note"><span class="marker">Note:</span> Authors that register a event listener on the <code>"message"</code> event of this <code class="idl"><a data-link-type="idl" href="#dom-audioworkletprocessor-port" id="ref-for-dom-audioworkletprocessor-port②">port</a></code> should call <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/indices.html#event-close" id="ref-for-event-close①">close</a></code> on either end of the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel" id="ref-for-messagechannel②">MessageChannel</a></code> (either in the <code class="idl"><a data-link-type="idl" href="#audioworkletprocessor" id="ref-for-audioworkletprocessor②⑧">AudioWorkletProcessor</a></code> or the <code class="idl"><a data-link-type="idl" href="#audioworkletnode" id="ref-for-audioworkletnode④②">AudioWorkletNode</a></code> side) to allow for resources to be <a href="https://html.spec.whatwg.org/multipage/web-messaging.html#ports-and-garbage-collection">collected</a>.</p> </dl> <h5 class="heading settled" data-level="1.32.4.3" id="callback-audioworketprocess-callback"><span class="secno">1.32.4.3. </span><span class="content"> Callback <code class="idl"><a data-link-type="idl" href="#audioworkletprocess-callback-parameters" id="ref-for-audioworkletprocess-callback-parameters①">AudioWorkletProcessCallback</a></code></span><a class="self-link" href="#callback-audioworketprocess-callback"></a></h5> @@ -11456,20 +11455,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -12558,7 +12559,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="2c82d279">audio</span> <li><span class="dfn-paneled" id="d5ac3b38">clean up after running a callback</span> <li><span class="dfn-paneled" id="b6a1ae3f">clean up after running script</span> - <li><span class="dfn-paneled" id="c074e819">close()</span> + <li><span class="dfn-paneled" id="dff7b498">close</span> <li><span class="dfn-paneled" id="12b8dfc0">current settings object</span> <li><span class="dfn-paneled" id="0e3ba9f8">fully active</span> <li><span class="dfn-paneled" id="8603b31a">perform a microtask checkpoint</span> @@ -12655,7 +12656,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> @@ -13330,7 +13331,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-analysernode-frequencybincount"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/frequencyBinCount" title="The frequencyBinCount read-only property of the AnalyserNode interface is an unsigned integer half that of the AnalyserNode.fftSize. This generally equates to the number of data values you will have to play with for the visualization.">AnalyserNode/frequencyBinCount</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/frequencyBinCount" title="The frequencyBinCount read-only property of the AnalyserNode interface contains the total number of data points available to AudioContext sampleRate. This is half of the value of the AnalyserNode.fftSize. The two methods&apos; indices have a linear relationship with the frequencies they represent, between 0 and the Nyquist frequency.">AnalyserNode/frequencyBinCount</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> @@ -13378,7 +13379,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-analysernode-getfloatfrequencydata"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatFrequencyData" title="The getFloatFrequencyData() method of the AnalyserNode Interface copies the current frequency data into a Float32Array array passed into it.">AnalyserNode/getFloatFrequencyData</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatFrequencyData" title="The getFloatFrequencyData() method of the AnalyserNode Interface copies the current frequency data into a Float32Array array passed into it. Each array value is a sample, the magnitude of the signal at a particular time.">AnalyserNode/getFloatFrequencyData</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> @@ -13394,7 +13395,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-analysernode-getfloattimedomaindata"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatTimeDomainData" title="The getFloatTimeDomainData() method of the AnalyserNode Interface copies the current waveform, or time-domain, data into a Float32Array array passed into it.">AnalyserNode/getFloatTimeDomainData</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatTimeDomainData" title="The getFloatTimeDomainData() method of the AnalyserNode Interface copies the current waveform, or time-domain, data into a Float32Array array passed into it. Each array value is a sample, the magnitude of the signal at a particular time.">AnalyserNode/getFloatTimeDomainData</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>30+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>35+</span></span> @@ -13625,7 +13626,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -13813,7 +13814,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaElementSource" title="The createMediaElementSource() method of the AudioContext Interface is used to create a new MediaElementAudioSourceNode object, given an existing HTML <audio> or <video> element, the audio from which can then be played and manipulated.">AudioContext/createMediaElementSource</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -13829,7 +13830,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamDestination" title="The createMediaStreamDestination() method of the AudioContext Interface is used to create a new MediaStreamAudioDestinationNode object associated with a WebRTC MediaStream representing an audio stream, which may be stored in a local file or sent to another computer.">AudioContext/createMediaStreamDestination</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>25+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -13845,7 +13846,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamSource" title="The createMediaStreamSource() method of the AudioContext Interface is used to create a new MediaStreamAudioSourceNode object, given a media stream (say, from a MediaDevices.getUserMedia instance), the audio from which can then be played and manipulated.">AudioContext/createMediaStreamSource</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>22+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -13874,7 +13875,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-audiocontext-getoutputtimestamp"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/getOutputTimestamp" title="The getOutputTimestamp() property of the AudioContext interface returns a new AudioTimestamp object containing two audio timestamp values relating to the current audio context.">AudioContext/getOutputTimestamp</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/getOutputTimestamp" title="The getOutputTimestamp() method of the AudioContext interface returns a new AudioTimestamp object containing two audio timestamp values relating to the current audio context.">AudioContext/getOutputTimestamp</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>70+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> @@ -13956,7 +13957,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount" title="The maxchannelCount property of the AudioDestinationNode interface is an unsigned long defining the maximum amount of channels that the physical device can handle.">AudioDestinationNode/maxChannelCount</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -14139,7 +14140,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelCount" title="The channelCount property of the AudioNode interface represents an integer used to determine how many channels are used when up-mixing and down-mixing connections to any inputs to the node.">AudioNode/channelCount</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -14155,7 +14156,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelCountMode" title="The channelCountMode property of the AudioNode interface represents an enumerated value describing the way channels must be matched between the node&apos;s inputs and outputs.">AudioNode/channelCountMode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -14171,7 +14172,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelInterpretation" title="The channelInterpretation property of the AudioNode interface represents an enumerated value describing how input channels are mapped to output channels when the number of inputs/outputs is different. For example, this setting defines how a mono input will be up-mixed to a stereo or 5.1 channel output, or how a quad channel input will be down-mixed to a stereo or mono output.">AudioNode/channelInterpretation</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -14485,7 +14486,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="audioparammap"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioParamMap" title="The Web Audio API interface AudioParamMap represents a set of multiple audio parameters, each described as a mapping of a string identifying the parameter to the AudioParam object representing its value.">AudioParamMap</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioParamMap" title="The AudioParamMap interface of the Web Audio API represents an iterable and read-only set of multiple audio parameters.">AudioParamMap</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>76+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> @@ -14578,6 +14579,38 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-audioworkletglobalscope-currentframe"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentFrame" title="The read-only currentFrame property of the AudioWorkletGlobalScope interface returns an integer that represents the ever-increasing current sample-frame of the audio block being processed. It is incremented by 128 (the size of a render quantum) after the processing of each audio block.">AudioWorkletGlobalScope/currentFrame</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>76+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-audioworkletglobalscope-currenttime"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentTime" title="The read-only currentTime property of the AudioWorkletGlobalScope interface returns a double that represents the ever-increasing context time of the audio block being processed. It is equal to the currentTime property of the BaseAudioContext the worklet belongs to.">AudioWorkletGlobalScope/currentTime</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>76+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="dom-audioworkletglobalscope-registerprocessor"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -14594,6 +14627,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-audioworkletglobalscope-samplerate"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/sampleRate" title="The read-only sampleRate property of the AudioWorkletGlobalScope interface returns a float that represents the sample rate of the associated BaseAudioContext the worklet belongs to.">AudioWorkletGlobalScope/sampleRate</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>76+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="AudioWorkletGlobalScope"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -14888,7 +14937,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createDelay" title="The createDelay() method of the BaseAudioContext Interface is used to create a DelayNode, which is used to delay the incoming audio signal by a certain amount of time.">BaseAudioContext/createDelay</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>24+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -14920,7 +14969,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createGain" title="The createGain() method of the BaseAudioContext interface creates a GainNode, which can be used to control the overall gain (or volume) of the audio graph.">BaseAudioContext/createGain</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>24+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15016,7 +15065,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createWaveShaper" title="The createWaveShaper() method of the BaseAudioContext interface creates a WaveShaperNode, which represents a non-linear distortion. It is used to apply distortion effects to your audio.">BaseAudioContext/createWaveShaper</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15045,7 +15094,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-baseaudiocontext-decodeaudiodata"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/decodeAudioData" title="The decodeAudioData() method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an ArrayBuffer. In this case the ArrayBuffer is loaded from XMLHttpRequest and FileReader. The decoded AudioBuffer is resampled to the AudioContext&apos;s sampling rate, then passed to a callback or promise.">BaseAudioContext/decodeAudioData</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/decodeAudioData" title="The decodeAudioData() method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an ArrayBuffer that is loaded from fetch(), XMLHttpRequest, or FileReader. The decoded AudioBuffer is resampled to the AudioContext&apos;s sampling rate, then passed to a callback or promise.">BaseAudioContext/decodeAudioData</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> @@ -15164,7 +15213,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15192,7 +15241,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/detune" title="The detune property of the BiquadFilterNode interface is an a-rate AudioParam representing detuning of the frequency in cents.">BiquadFilterNode/detune</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>25+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15240,7 +15289,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/getFrequencyResponse" title="The getFrequencyResponse() method of the BiquadFilterNode interface takes the current filtering algorithm&apos;s settings and calculates the frequency response for frequencies specified in a specified array of frequencies.">BiquadFilterNode/getFrequencyResponse</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>17+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15468,7 +15517,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15480,7 +15529,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DelayNode/delayTime" title="The delayTime property of the DelayNode interface is an a-rate AudioParam representing the amount of delay to apply.">DelayNode/delayTime</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>24+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15496,7 +15545,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DelayNode" title="The DelayNode interface represents a delay-line; an AudioNode audio-processing module that causes a delay between the arrival of an input data and its propagation to the output.">DelayNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>24+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15516,7 +15565,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15528,7 +15577,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/attack" title="The attack property of the DynamicsCompressorNode interface is a k-rate AudioParam representing the amount of time, in seconds, required to reduce the gain by 10 dB. It defines how quickly the signal is adapted when its volume is increased.">DynamicsCompressorNode/attack</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15544,7 +15593,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/knee" title="The knee property of the DynamicsCompressorNode interface is a k-rate AudioParam containing a decibel value representing the range above the threshold where the curve smoothly transitions to the compressed portion.">DynamicsCompressorNode/knee</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15560,7 +15609,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/ratio" title="The ratio property of the DynamicsCompressorNode interface Is a k-rate AudioParam representing the amount of change, in dB, needed in the input for a 1 dB change in the output.">DynamicsCompressorNode/ratio</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15576,7 +15625,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/reduction" title="The reduction read-only property of the DynamicsCompressorNode interface is a float representing the amount of gain reduction currently applied by the compressor to the signal.">DynamicsCompressorNode/reduction</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>15+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15592,7 +15641,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/release" title="The release property of the DynamicsCompressorNode interface Is a k-rate AudioParam representing the amount of time, in seconds, required to increase the gain by 10 dB. It defines how quick the signal is adapted when its volume is reduced.">DynamicsCompressorNode/release</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>20+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15608,7 +15657,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/threshold" title="The threshold property of the DynamicsCompressorNode interface is a k-rate AudioParam representing the decibel value above which the compression will start taking effect.">DynamicsCompressorNode/threshold</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15644,7 +15693,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15656,7 +15705,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/GainNode/gain" title="The gain property of the GainNode interface is an a-rate AudioParam representing the amount of gain to apply.">GainNode/gain</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>24+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15672,7 +15721,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/GainNode" title="The GainNode interface represents a change in volume. It is an AudioNode audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A GainNode always has exactly one input and one output, both with the same number of channels.">GainNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>24+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15692,7 +15741,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15740,7 +15789,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15752,7 +15801,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode/mediaElement" title="The MediaElementAudioSourceNode interface&apos;s read-only mediaElement property indicates the HTMLMediaElement that contains the audio track from which the node is receiving audio.">MediaElementAudioSourceNode/mediaElement</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>70+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>70+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15768,7 +15817,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode" title="The MediaElementAudioSourceNode interface represents an audio source consisting of an HTML <audio> or <video> element. It is an AudioNode that acts as an audio source.">MediaElementAudioSourceNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15784,11 +15833,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode" title="The MediaStreamAudioDestinationNode() constructor of the Web Audio API creates a new MediaStreamAudioDestinationNode object instance.">MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>55+</span></span> + <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15800,7 +15849,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream" title="The stream property of the AudioContext interface represents a MediaStream containing a single audio MediaStreamTrack with the same number of channels as the node itself.">MediaStreamAudioDestinationNode/stream</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>25+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15816,7 +15865,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode" title="The MediaStreamAudioDestinationNode interface represents an audio destination consisting of a WebRTC MediaStream with a single AudioMediaStreamTrack, which can be used in a similar way to a MediaStream obtained from navigator.mediaDevices.getUserMedia().">MediaStreamAudioDestinationNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>25+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15836,7 +15885,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -15848,7 +15897,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/mediaStream" title="The MediaStreamAudioSourceNode interface&apos;s read-only mediaStream property indicates the MediaStream that contains the audio track from which the node is receiving audio.">MediaStreamAudioSourceNode/mediaStream</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>70+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> + <span class="firefox yes"><span>Firefox</span><span>70+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>22+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15864,7 +15913,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode" title="The MediaStreamAudioSourceNode interface is a type of AudioNode which operates as an audio source whose media is received from a MediaStream obtained using the WebRTC or Media Capture and Streams APIs.">MediaStreamAudioSourceNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>22+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -15916,7 +15965,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -16088,7 +16137,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -16184,7 +16233,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -16420,7 +16469,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PannerNode" title="The PannerNode interface defines an audio-processing object that represents the location, direction, and behavior of an audio source signal in a simulated physical space. This AudioNode uses right-hand Cartesian coordinates to describe the source&apos;s position as a vector and its orientation as a 3D directional cone.">PannerNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -16440,7 +16489,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -16472,7 +16521,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -16520,7 +16569,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -16532,7 +16581,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/curve" title="The curve property of the WaveShaperNode interface is a Float32Array of numbers describing the distortion to apply.">WaveShaperNode/curve</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -16548,7 +16597,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/oversample" title="The oversample property of the WaveShaperNode interface is an enumerated value indicating if oversampling must be used. Oversampling is a technique for creating more samples (up-sampling) before applying a distortion effect to the audio signal.">WaveShaperNode/oversample</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>26+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>26+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>29+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -16564,7 +16613,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode" title="The WaveShaperNode interface represents a non-linear distorter.">WaveShaperNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>14+</span></span> + <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -16936,7 +16985,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "begin-offline-rendering": {"dfnID":"begin-offline-rendering","dfnText":"begin offline rendering","external":false,"refSections":[{"refs":[{"id":"ref-for-begin-offline-rendering"}],"title":"1.3.3. \nMethods"}],"url":"#begin-offline-rendering"}, "biquadfilternode": {"dfnID":"biquadfilternode","dfnText":"BiquadFilterNode","external":false,"refSections":[{"refs":[{"id":"ref-for-biquadfilternode"}],"title":"\nAPI Overview"},{"refs":[{"id":"ref-for-biquadfilternode\u2460"}],"title":"1.1. \nThe BaseAudioContext Interface"},{"refs":[{"id":"ref-for-biquadfilternode\u2461"},{"id":"ref-for-biquadfilternode\u2462"}],"title":"1.1.2. \nMethods"},{"refs":[{"id":"ref-for-biquadfilternode\u2463"},{"id":"ref-for-biquadfilternode\u2464"},{"id":"ref-for-biquadfilternode\u2465"},{"id":"ref-for-biquadfilternode\u2466"},{"id":"ref-for-biquadfilternode\u2467"}],"title":"1.13. \nThe BiquadFilterNode Interface"},{"refs":[{"id":"ref-for-biquadfilternode\u2468"},{"id":"ref-for-biquadfilternode\u2460\u24ea"}],"title":"1.13.1. \nConstructors"},{"refs":[{"id":"ref-for-biquadfilternode\u2460\u2460"},{"id":"ref-for-biquadfilternode\u2460\u2461"}],"title":"1.13.2. \nAttributes"},{"refs":[{"id":"ref-for-biquadfilternode\u2460\u2462"}],"title":"1.13.4. \nBiquadFilterOptions"},{"refs":[{"id":"ref-for-biquadfilternode\u2460\u2463"},{"id":"ref-for-biquadfilternode\u2460\u2464"},{"id":"ref-for-biquadfilternode\u2460\u2465"}],"title":"1.13.5. \nFilters Characteristics"},{"refs":[{"id":"ref-for-biquadfilternode\u2460\u2466"}],"title":"1.21. \nThe IIRFilterNode Interface"},{"refs":[{"id":"ref-for-biquadfilternode\u2460\u2467"}],"title":"7.1. \nLatency"}],"url":"#biquadfilternode"}, "blackman-window": {"dfnID":"blackman-window","dfnText":"Applying a Blackman window","external":false,"refSections":[{"refs":[{"id":"ref-for-blackman-window"}],"title":"1.8.6. \nFFT Windowing and Smoothing over Time"}],"url":"#blackman-window"}, -"c074e819": {"dfnID":"c074e819","dfnText":"close()","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-messageport-close"}],"title":"1.32.3.2. \nAttributes"},{"refs":[{"id":"ref-for-dom-messageport-close\u2460"}],"title":"1.32.4.2. Attributes"}],"url":"https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-close"}, "c2359c09": {"dfnID":"c2359c09","dfnText":"prepare to run script","external":true,"refSections":[{"refs":[{"id":"ref-for-prepare-to-run-script"}],"title":"2.4. \nRendering an Audio Graph"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#prepare-to-run-script"}, "c464e7b6": {"dfnID":"c464e7b6","dfnText":"MediaDevices","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mediadevices"}],"title":"8. \nSecurity and Privacy Considerations"}],"url":"https://w3c.github.io/mediacapture-main/#dom-mediadevices"}, "c88f3887": {"dfnID":"c88f3887","dfnText":"item","external":true,"refSections":[{"refs":[{"id":"ref-for-struct-item"}],"title":"1.32.2.3. \nThe instantiation of AudioWorkletProcessor"}],"url":"https://infra.spec.whatwg.org/#struct-item"}, @@ -16982,6 +17030,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "destination-node": {"dfnID":"destination-node","dfnText":"destination node","external":false,"refSections":[{"refs":[{"id":"ref-for-destination-node"}],"title":"2.4. \nRendering an Audio Graph"}],"url":"#destination-node"}, "detector-curve": {"dfnID":"detector-curve","dfnText":"detector curve","external":false,"refSections":[{"refs":[{"id":"ref-for-detector-curve"}],"title":"1.19.4. \nProcessing"}],"url":"#detector-curve"}, "df16744f": {"dfnID":"df16744f","dfnText":"MessagePort","external":true,"refSections":[{"refs":[{"id":"ref-for-messageport"}],"title":"1.32.2. \nThe AudioWorkletGlobalScope Interface"},{"refs":[{"id":"ref-for-messageport\u2460"}],"title":"1.32.2.3. \nThe instantiation of AudioWorkletProcessor"},{"refs":[{"id":"ref-for-messageport\u2461"}],"title":"1.32.3. \nThe AudioWorkletNode Interface"},{"refs":[{"id":"ref-for-messageport\u2462"},{"id":"ref-for-messageport\u2463"}],"title":"1.32.3.2. \nAttributes"},{"refs":[{"id":"ref-for-messageport\u2464"}],"title":"1.32.4. \nThe AudioWorkletProcessor Interface"},{"refs":[{"id":"ref-for-messageport\u2465"},{"id":"ref-for-messageport\u2466"}],"title":"1.32.4.2. Attributes"}],"url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messageport"}, +"dff7b498": {"dfnID":"dff7b498","dfnText":"close","external":true,"refSections":[{"refs":[{"id":"ref-for-event-close"}],"title":"1.32.3.2. \nAttributes"},{"refs":[{"id":"ref-for-event-close\u2460"}],"title":"1.32.4.2. Attributes"}],"url":"https://html.spec.whatwg.org/multipage/indices.html#event-close"}, "dfn-automation-event": {"dfnID":"dfn-automation-event","dfnText":"automation events","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-automation-event"},{"id":"ref-for-dfn-automation-event"}],"title":"1.6.3. \nComputation of Value"}],"url":"#dfn-automation-event"}, "dfn-automation-method": {"dfnID":"dfn-automation-method","dfnText":"automation methods","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-automation-method"}],"title":"1.6. \nThe AudioParam Interface"}],"url":"#dfn-automation-method"}, "dictdef-analyseroptions": {"dfnID":"dictdef-analyseroptions","dfnText":"AnalyserOptions","external":false,"refSections":[{"refs":[{"id":"ref-for-dictdef-analyseroptions"}],"title":"1.8. \nThe AnalyserNode Interface"},{"refs":[{"id":"ref-for-dictdef-analyseroptions\u2460"}],"title":"1.8.1. \nConstructors"},{"refs":[{"id":"ref-for-dictdef-analyseroptions\u2461"}],"title":"1.8.4. \nAnalyserOptions"},{"refs":[{"id":"ref-for-dictdef-analyseroptions\u2462"}],"title":"1.8.4.1. \nDictionary AnalyserOptions Members"}],"url":"#dictdef-analyseroptions"}, @@ -18726,6 +18775,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://dom.spec.whatwg.org/#event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Event","type":"interface","url":"https://dom.spec.whatwg.org/#event"}, "https://dom.spec.whatwg.org/#eventtarget": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventTarget","type":"interface","url":"https://dom.spec.whatwg.org/#eventtarget"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active": {"export":true,"for_":["Document"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"fully active","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active"}, +"https://html.spec.whatwg.org/multipage/indices.html#event-close": {"export":true,"for_":["CloseWatcher","HTMLElement","MessagePort"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"close","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-close"}, "https://html.spec.whatwg.org/multipage/interaction.html#sticky-activation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"sticky activation","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#sticky-activation"}, "https://html.spec.whatwg.org/multipage/media.html#audio": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"audio","type":"element","url":"https://html.spec.whatwg.org/multipage/media.html#audio"}, "https://html.spec.whatwg.org/multipage/media.html#htmlmediaelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLMediaElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/media.html#htmlmediaelement"}, @@ -18736,7 +18786,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/structured-data.html#structuredserializewithtransfer": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"StructuredSerializeWithTransfer","type":"abstract-op","url":"https://html.spec.whatwg.org/multipage/structured-data.html#structuredserializewithtransfer"}, "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel-port1": {"export":true,"for_":["MessageChannel"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"port1","type":"attribute","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel-port1"}, "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel-port2": {"export":true,"for_":["MessageChannel"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"port2","type":"attribute","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel-port2"}, -"https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-close": {"export":true,"for_":["MessagePort"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"close()","type":"method","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-close"}, "https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessageChannel","type":"interface","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel"}, "https://html.spec.whatwg.org/multipage/web-messaging.html#messageport": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessagePort","type":"interface","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messageport"}, "https://html.spec.whatwg.org/multipage/webappapis.html#clean-up-after-running-a-callback": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"clean up after running a callback","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#clean-up-after-running-a-callback"}, diff --git a/tests/github/WebBluetoothCG/web-bluetooth/index.console.txt b/tests/github/WebBluetoothCG/web-bluetooth/index.console.txt index 58eea133bd..c8854bbed0 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/index.console.txt +++ b/tests/github/WebBluetoothCG/web-bluetooth/index.console.txt @@ -1,3 +1,4 @@ +LINK ERROR: Obsolete biblio ref: [rfc4122] is replaced by [rfc9562]. Either update the reference, or use [rfc4122 obsolete] if this is an intentionally-obsolete reference. LINK ERROR: No 'enum-value' refs found for '"denied"' with spec 'permissions-1'. {{"denied"}} LINK ERROR: No 'enum-value' refs found for '"bluetooth"' with spec 'permissions-1'. @@ -15,4 +16,28 @@ LINE ~2190: No 'dfn' refs found for 'responsible document'. [=responsible document=] LINE ~2206: No 'dfn' refs found for 'responsible document'. [=responsible document=] +LINE 3761: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="3761" data-link-type="dfn" data-lt="children">children</a> +LINE 3767: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="3767" data-link-type="dfn" data-lt="children">children</a> +LINE 3774: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="3774" data-link-type="dfn" data-lt="children">children</a> +LINE 3779: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="3779" data-link-type="dfn" data-lt="children">children</a> LINE 361: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/WebBluetoothCG/web-bluetooth/index.html b/tests/github/WebBluetoothCG/web-bluetooth/index.html index 09c0978d7c..d35f20b3a1 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/index.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/index.html @@ -5,7 +5,6 @@ <title>Web Bluetooth</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://webbluetoothcg.github.io/web-bluetooth/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -1031,7 +1030,7 @@ <h1 class="p-name no-ref" id="title">Web Bluetooth</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -1141,7 +1140,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -2081,7 +2079,7 @@ <h2 class="heading settled" data-level="3" id="device-discovery"><span class="se to an IDL value</a> of type <code class="idl"><a data-link-type="idl" href="#dictdef-bluetoothdatafilterinit" id="ref-for-dictdef-bluetoothdatafilterinit②">BluetoothDataFilterInit</a></code>. If this conversion throws an exception, propagate it and abort these steps.</p> <li data-md> - <p>Let <var>canonicalizedDataFilter</var> be the result of <a data-link-type="dfn" href="#bluetoothdatafilterinit-canonicalizing" id="ref-for-bluetoothdatafilterinit-canonicalizing①">canonicalizing</a> <var>dataFilter</var>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value" id="ref-for-dfn-convert-idl-to-ecmascript-value">converted to an ECMAScript value</a>. If this throws an exception, + <p>Let <var>canonicalizedDataFilter</var> be the result of <a data-link-type="dfn" href="#bluetoothdatafilterinit-canonicalizing" id="ref-for-bluetoothdatafilterinit-canonicalizing①">canonicalizing</a> <var>dataFilter</var>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value" id="ref-for-dfn-convert-idl-to-javascript-value">converted to an ECMAScript value</a>. If this throws an exception, propagate that exception and abort these steps.</p> <li data-md> <p>Call <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createdataproperty" id="ref-for-sec-createdataproperty">CreateDataProperty</a> (<var>canonicalizedFilter</var>.manufacturerData, <var>key</var>, <var>canonicalizedDataFilter</var>).</p> @@ -2110,7 +2108,7 @@ <h2 class="heading settled" data-level="3" id="device-discovery"><span class="se If this conversion throws an exception, propagate it and abort these steps.</p> <li data-md> - <p>Let <var>canonicalizedDataFilter</var> be the result of <a data-link-type="dfn" href="#bluetoothdatafilterinit-canonicalizing" id="ref-for-bluetoothdatafilterinit-canonicalizing②">canonicalizing</a> <var>dataFilter</var>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value" id="ref-for-dfn-convert-idl-to-ecmascript-value①">converted to an ECMAScript value</a>. If this throws an exception, + <p>Let <var>canonicalizedDataFilter</var> be the result of <a data-link-type="dfn" href="#bluetoothdatafilterinit-canonicalizing" id="ref-for-bluetoothdatafilterinit-canonicalizing②">canonicalizing</a> <var>dataFilter</var>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value" id="ref-for-dfn-convert-idl-to-javascript-value①">converted to an ECMAScript value</a>. If this throws an exception, propagate that exception and abort these steps.</p> <li data-md> <p>Call <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createdataproperty" id="ref-for-sec-createdataproperty①">CreateDataProperty</a>(<var>canonicalizedFilter</var>.serviceData, <var>service</var>, <var>canonicalizedDataFilter</var>).</p> @@ -4382,7 +4380,7 @@ <h3 class="heading settled" data-level="5.7" id="error-handling"><span class="se <h2 class="heading settled" data-level="6" id="uuids"><span class="secno">6. </span><span class="content">UUIDs</span><a class="self-link" href="#uuids"></a></h2> <pre class="idl highlight def"><c- b>typedef</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString①②"><c- b>DOMString</c-></a> <dfn class="dfn-paneled idl-code" data-dfn-type="typedef" data-export id="typedefdef-uuid"><code><c- g>UUID</c-></code></dfn>; </pre> - <p>A <a data-link-type="dfn" href="#uuid" id="ref-for-uuid③">UUID</a> string represents a 128-bit <a data-link-type="biblio" href="#biblio-rfc4122" title="A Universally Unique IDentifier (UUID) URN Namespace">[RFC4122]</a> UUID. A <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="valid UUID" data-noexport id="valid-uuid">valid + <p>A <a data-link-type="dfn" href="#uuid" id="ref-for-uuid③">UUID</a> string represents a 128-bit <a data-link-type="biblio" href="#biblio-rfc4122" title="Universally Unique IDentifiers (UUIDs)">[RFC4122]</a> UUID. A <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="valid UUID" data-noexport id="valid-uuid">valid UUID</dfn> is a string that matches the <a data-link-type="biblio" href="#biblio-ecmascript" title="ECMAScript Language Specification">[ECMAScript]</a> regexp <code>/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/</code>. That is, a <a data-link-type="dfn" href="#valid-uuid" id="ref-for-valid-uuid">valid UUID</a> is lower-case and does not use the 16- or 32-bit abbreviations defined by the Bluetooth standard. All UUIDs returned from @@ -4930,20 +4928,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -5475,7 +5459,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6c6b1005">any</span> <li><span class="dfn-paneled" id="5372cca8">boolean</span> <li><span class="dfn-paneled" id="f4813f78">byte</span> - <li><span class="dfn-paneled" id="f76fae78">converted to an ecmascript value</span> + <li><span class="dfn-paneled" id="ae4bc361">converted to an ecmascript value</span> <li><span class="dfn-paneled" id="cadf5fe9">converted to an idl value</span> <li><span class="dfn-paneled" id="77996ab1">maplike</span> <li><span class="dfn-paneled" id="efd1ec5d">object</span> @@ -5524,7 +5508,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-rfc4122">[RFC4122] - <dd>P. Leach; M. Mealling; R. Salz. <a href="https://www.rfc-editor.org/rfc/rfc4122"><cite>A Universally Unique IDentifier (UUID) URN Namespace</cite></a>. July 2005. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc4122">https://www.rfc-editor.org/rfc/rfc4122</a> + <dd>K. Davis; B. Peabody; P. Leach. <a href="https://www.rfc-editor.org/rfc/rfc9562"><cite>Universally Unique IDentifiers (UUIDs)</cite></a>. May 2024. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9562">https://www.rfc-editor.org/rfc/rfc9562</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -5823,7 +5807,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -5839,7 +5823,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -5849,7 +5833,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Bluetooth/getAvailability" title="The getAvailability() method of the Bluetooth interface returns true if the device has a Bluetooth adapter, and false otherwise (unless the user has configured the browser to not expose a real value).">Bluetooth/getAvailability</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -5875,22 +5859,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-bluetooth-referringdevice"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Bluetooth/referringDevice" title="The Bluetooth.referringDevice attribute of the Bluetooth interface returns a BluetoothDevice if the current document was opened in response to an instruction sent by this device and null otherwise.">Bluetooth/referringDevice</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> - <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="dom-bluetooth-requestdevice"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> @@ -6153,7 +6121,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/getDescriptor" title="The BluetoothRemoteGATTCharacteristic.getDescriptor() method returns a Promise that resolves to the first BluetoothRemoteGATTDescriptor for a given descriptor UUID.">BluetoothRemoteGATTCharacteristic/getDescriptor</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -6169,7 +6137,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/getDescriptors" title="The BluetoothRemoteGATTCharacteristic.getDescriptors() method returns a Promise that resolves to an Array of all BluetoothRemoteGATTDescriptor objects for a given descriptor UUID.">BluetoothRemoteGATTCharacteristic/getDescriptors</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -6502,7 +6470,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-bluetoothremotegattserver-getprimaryservice"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTServer/getPrimaryService" title="The BluetoothRemoteGATTServer.getPrimaryService() method returns a promise to the primary BluetoothRemoteGATTService offered by the Bluetooth device for a specified BluetoothServiceUUID.">BluetoothRemoteGATTServer/getPrimaryService</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTServer/getPrimaryService" title="The BluetoothRemoteGATTServer.getPrimaryService() method returns a promise to the primary BluetoothRemoteGATTService offered by the Bluetooth device for a specified bluetooth service UUID.">BluetoothRemoteGATTServer/getPrimaryService</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> @@ -6646,7 +6614,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-bluetoothuuid-canonicaluuid"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/canonicalUUID" title="The canonicalUUID() method of the BluetoothUUID interface returns the 128-bit UUID when passed a 16- or 32-bit UUID alias.">BluetoothUUID/canonicalUUID</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/canonicalUUID_static" title="The canonicalUUID() static method of the BluetoothUUID interface returns the 128-bit UUID when passed a 16- or 32-bit UUID alias.">BluetoothUUID/canonicalUUID_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> @@ -6662,7 +6630,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-bluetoothuuid-getcharacteristic"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getCharacteristic" title="The getCharacteristic() method of the BluetoothUUID interface returns a UUID representing a registered characteristic when passed a name or the 16- or 32-bit UUID alias.">BluetoothUUID/getCharacteristic</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getCharacteristic_static" title="The getCharacteristic() static method of the BluetoothUUID interface returns a UUID representing a registered characteristic when passed a name or the 16- or 32-bit UUID alias.">BluetoothUUID/getCharacteristic_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> @@ -6678,7 +6646,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-bluetoothuuid-getdescriptor"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getDescriptor" title="The getDescriptor() method of the BluetoothUUID interface returns a UUID representing a registered descriptor when passed a name or the 16- or 32-bit UUID alias.">BluetoothUUID/getDescriptor</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getDescriptor_static" title="The getDescriptor() static method of the BluetoothUUID interface returns a UUID representing a registered descriptor when passed a name or the 16- or 32-bit UUID alias.">BluetoothUUID/getDescriptor_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> @@ -6694,7 +6662,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-bluetoothuuid-getservice"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getService" title="The getService() method of the BluetoothUUID interface returns a UUID representing a registered service when passed a name or the 16- or 32-bit UUID alias.">BluetoothUUID/getService</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/BluetoothUUID/getService_static" title="The getService() static method of the BluetoothUUID interface returns a UUID representing a registered service when passed a name or the 16- or 32-bit UUID alias.">BluetoothUUID/getService_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> @@ -7009,6 +6977,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "add-device-to-storage": {"dfnID":"add-device-to-storage","dfnText":"add an allowed\nBluetooth device","external":false,"refSections":[{"refs":[{"id":"ref-for-add-device-to-storage"}],"title":"3. Device Discovery"}],"url":"#add-device-to-storage"}, "advertising-data": {"dfnID":"advertising-data","dfnText":"Advertising Data","external":false,"refSections":[{"refs":[{"id":"ref-for-advertising-data"},{"id":"ref-for-advertising-data\u2460"}],"title":"4.1. Global Bluetooth device properties"}],"url":"#advertising-data"}, "advertising-event": {"dfnID":"advertising-event","dfnText":"advertising events","external":false,"refSections":[{"refs":[{"id":"ref-for-advertising-event"},{"id":"ref-for-advertising-event\u2460"}],"title":"4.2.3. Responding to Advertising Events"}],"url":"#advertising-event"}, +"ae4bc361": {"dfnID":"ae4bc361","dfnText":"converted to an ecmascript value","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-convert-idl-to-javascript-value"},{"id":"ref-for-dfn-convert-idl-to-javascript-value\u2460"}],"title":"3. Device Discovery"}],"url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value"}, "appearance": {"dfnID":"appearance","dfnText":"Appearance","external":false,"refSections":[{"refs":[{"id":"ref-for-appearance"},{"id":"ref-for-appearance\u2460"}],"title":"4.2.3. Responding to Advertising Events"}],"url":"#appearance"}, "att-bearer": {"dfnID":"att-bearer","dfnText":"ATT Bearer","external":false,"refSections":[{"refs":[{"id":"ref-for-att-bearer"}],"title":"3. Device Discovery"},{"refs":[{"id":"ref-for-att-bearer\u2460"},{"id":"ref-for-att-bearer\u2461"}],"title":"4.1. Global Bluetooth device properties"},{"refs":[{"id":"ref-for-att-bearer\u2462"},{"id":"ref-for-att-bearer\u2463"},{"id":"ref-for-att-bearer\u2464"},{"id":"ref-for-att-bearer\u2465"}],"title":"5.2. BluetoothRemoteGATTServer"},{"refs":[{"id":"ref-for-att-bearer\u2466"},{"id":"ref-for-att-bearer\u2467"}],"title":"5.6.3. Responding to Disconnection"}],"url":"#att-bearer"}, "attribute": {"dfnID":"attribute","dfnText":"Attribute","external":false,"refSections":[{"refs":[{"id":"ref-for-attribute"}],"title":"4.1. Global Bluetooth device properties"}],"url":"#attribute"}, @@ -7263,7 +7232,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "extended-inquiry-response": {"dfnID":"extended-inquiry-response","dfnText":"Extended Inquiry Response","external":false,"refSections":[{"refs":[{"id":"ref-for-extended-inquiry-response"},{"id":"ref-for-extended-inquiry-response\u2460"}],"title":"3. Device Discovery"},{"refs":[{"id":"ref-for-extended-inquiry-response\u2461"},{"id":"ref-for-extended-inquiry-response\u2462"}],"title":"4.1. Global Bluetooth device properties"}],"url":"#extended-inquiry-response"}, "f0951476": {"dfnID":"f0951476","dfnText":"EventHandler","external":true,"refSections":[{"refs":[{"id":"ref-for-eventhandler"}],"title":"3. Device Discovery"},{"refs":[{"id":"ref-for-eventhandler\u2460"},{"id":"ref-for-eventhandler\u2461"},{"id":"ref-for-eventhandler\u2462"},{"id":"ref-for-eventhandler\u2463"},{"id":"ref-for-eventhandler\u2464"},{"id":"ref-for-eventhandler\u2465"}],"title":"5.6.6. IDL event handlers"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#eventhandler"}, "f4813f78": {"dfnID":"f4813f78","dfnText":"byte","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-byte"},{"id":"ref-for-idl-byte\u2460"},{"id":"ref-for-idl-byte\u2461"},{"id":"ref-for-idl-byte\u2462"}],"title":"4.2.3. Responding to Advertising Events"}],"url":"https://webidl.spec.whatwg.org/#idl-byte"}, -"f76fae78": {"dfnID":"f76fae78","dfnText":"converted to an ecmascript value","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-convert-idl-to-ecmascript-value"},{"id":"ref-for-dfn-convert-idl-to-ecmascript-value\u2460"}],"title":"3. Device Discovery"}],"url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value"}, "faf954d6": {"dfnID":"faf954d6","dfnText":"browsing context","external":true,"refSections":[{"refs":[{"id":"ref-for-browsing-context"}],"title":"3. Device Discovery"},{"refs":[{"id":"ref-for-browsing-context\u2460"}],"title":"5.2. BluetoothRemoteGATTServer"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#browsing-context"}, "fire-an-advertisementreceived-event": {"dfnID":"fire-an-advertisementreceived-event","dfnText":"fire an advertisementreceived event","external":false,"refSections":[{"refs":[{"id":"ref-for-fire-an-advertisementreceived-event"}],"title":"4.2.3. Responding to Advertising Events"}],"url":"#fire-an-advertisementreceived-event"}, "flags-data-type": {"dfnID":"flags-data-type","dfnText":"Flags Data Type","external":false,"refSections":[{"refs":[{"id":"ref-for-flags-data-type"}],"title":"4.1. Global Bluetooth device properties"}],"url":"#flags-data-type"}, @@ -8131,7 +8099,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#a-promise-rejected-with": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"a promise rejected with","type":"dfn","url":"https://webidl.spec.whatwg.org/#a-promise-rejected-with"}, "https://webidl.spec.whatwg.org/#aborterror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"AbortError","type":"exception","url":"https://webidl.spec.whatwg.org/#aborterror"}, "https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"converted to an idl value","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value"}, -"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"converted to an ecmascript value","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value"}, +"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"converted to an ecmascript value","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value"}, "https://webidl.spec.whatwg.org/#dfn-maplike": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"maplike","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-maplike"}, "https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled": {"export":true,"for_":["promise"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"react","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled"}, "https://webidl.spec.whatwg.org/#idl-DOMException": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMException","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMException"}, diff --git a/tests/github/WebBluetoothCG/web-bluetooth/scanning.console.txt b/tests/github/WebBluetoothCG/web-bluetooth/scanning.console.txt index 1a23aeab02..c9f79d8b10 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/scanning.console.txt +++ b/tests/github/WebBluetoothCG/web-bluetooth/scanning.console.txt @@ -1,3 +1,4 @@ +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINK ERROR: No 'enum-value' refs found for '"denied"' with spec 'permissions-1'. {{"denied"}} LINE ~541: No 'dfn' refs found for 'responsible document'. diff --git a/tests/github/WebBluetoothCG/web-bluetooth/scanning.html b/tests/github/WebBluetoothCG/web-bluetooth/scanning.html index a7b1e1493d..515d47012c 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/scanning.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/scanning.html @@ -5,7 +5,6 @@ <title>Web Bluetooth Scanning</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -760,7 +759,7 @@ <h1 class="p-name no-ref" id="title">Web Bluetooth Scanning</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -809,7 +808,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -894,7 +892,7 @@ <h2 class="heading settled" data-level="2" id="privacy"><span class="secno">2. < <p> If a user has already given a site permission to know their location, it might be ok to implicitly grant access to BLE advertisements. However, BLE advertisements give away - strictly less location information than full <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[geolocation-api]</a> access, + strictly less location information than full <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[geolocation-api]</a> access, so UAs should allow users to grant that intermediate level of access. </p> <p> BLE advertisements are usually fully public, since they’re broadcast unencrypted on 2.4GHz radio waves. @@ -1437,20 +1435,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1666,7 +1650,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-geolocation-api">[GEOLOCATION-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def"><c- b>dictionary</c-> <a href="#dictdef-bluetoothlescanoptions"><code><c- g>BluetoothLEScanOptions</c-></code></a> { diff --git a/tests/github/WebBluetoothCG/web-bluetooth/tests.html b/tests/github/WebBluetoothCG/web-bluetooth/tests.html index c394840cec..7a99b6141e 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/tests.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/tests.html @@ -5,7 +5,6 @@ <title>Testing Web Bluetooth</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://webbluetoothcg.github.io/web-bluetooth/tests" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -712,7 +711,7 @@ <h1 class="p-name no-ref" id="title">Testing Web Bluetooth</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -771,7 +770,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -995,20 +993,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/WebBluetoothCG/web-bluetooth/use-cases.html b/tests/github/WebBluetoothCG/web-bluetooth/use-cases.html index 7bed436899..e5fd7dc10b 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/use-cases.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/use-cases.html @@ -5,7 +5,6 @@ <title>Web Bluetooth Use Cases</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://webbluetoothcg.github.io/web-bluetooth/use-cases.html" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -429,7 +428,7 @@ <h1 class="p-name no-ref" id="title">Web Bluetooth Use Cases</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to the Web Bluetooth Specification, published by the <a href="https://www.w3.org/community/web-bluetooth/">Web Bluetooth Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> <hr title="Separator for header"> </div> @@ -470,7 +469,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -692,20 +690,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/heycam/webidl/index.console.txt b/tests/github/heycam/webidl/index.console.txt index 8423fdc84a..80f9422e59 100644 --- a/tests/github/heycam/webidl/index.console.txt +++ b/tests/github/heycam/webidl/index.console.txt @@ -1,17 +1,5 @@ LINE ~580: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] -LINK ERROR: Ambiguous for-less link for '@@iterator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:ecma-262; type:const; for:ECMAScript; text:@@iterator -for-less references: -spec:ecmascript; type:const; for:/; text:@@iterator -{{@@iterator}} -LINK ERROR: Ambiguous for-less link for '@@asyncIterator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:ecma-262; type:const; for:ECMAScript; text:@@asyncIterator -for-less references: -spec:ecmascript; type:const; for:/; text:@@asyncIterator -{{@@asyncIterator}} LINE ~4381: No 'dfn' refs found for 'pair' that are marked for export. [=pair=] LINK ERROR: Ambiguous for-less link for '%Object.prototype%', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: @@ -26,12 +14,6 @@ spec:ecma-262; type:interface; for:ECMAScript; text:%Array.prototype% for-less references: spec:ecmascript; type:interface; for:/; text:%Array.prototype% {{%Array.prototype%}} -LINK ERROR: Ambiguous for-less link for '@@toStringTag', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:ecma-262; type:const; for:ECMAScript; text:@@toStringTag -for-less references: -spec:ecmascript; type:const; for:/; text:@@toStringTag -{{@@toStringTag}} LINE ~7305: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] LINK ERROR: Ambiguous for-less link for '%Promise%', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: @@ -44,12 +26,6 @@ LINE ~9526: No 'dfn' refs found for 'settings object' with for='['Realm']'. [=Realm/settings object=] LINE ~9528: No 'dfn' refs found for 'settings object' with for='['Realm']'. [=Realm/settings object=] -LINK ERROR: Ambiguous for-less link for '@@unscopables', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:ecma-262; type:const; for:ECMAScript; text:@@unscopables -for-less references: -spec:ecmascript; type:const; for:/; text:@@unscopables -{{@@unscopables}} LINE ~11289: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] LINK ERROR: Ambiguous for-less link for '%Function.prototype%', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: @@ -96,10 +72,4 @@ LINE ~14220: No 'dfn' refs found for 'settings object' with for='['Realm']'. [=Realm/settings object=] LINE ~14244: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] -LINK ERROR: Ambiguous for-less link for 'SharedArrayBuffer', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:ecma-262; type:interface; for:ECMAScript; text:SharedArrayBuffer -for-less references: -spec:ecmascript; type:interface; for:/; text:SharedArrayBuffer -{{SharedArrayBuffer}} LINE 14663: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/heycam/webidl/index.html b/tests/github/heycam/webidl/index.html index 8aa9c00663..438005719f 100644 --- a/tests/github/heycam/webidl/index.html +++ b/tests/github/heycam/webidl/index.html @@ -5,8 +5,8 @@ <title>Web IDL</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://heycam.github.io/webidl/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -905,7 +905,7 @@ <h1 class="p-name no-ref" id="title">Web IDL</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -4087,7 +4087,7 @@ <h4 class="heading settled" data-level="2.5.8" id="idl-iterable"><span class="se <p>Objects implementing an interface that is declared to be iterable support being iterated over to obtain a sequence of values.</p> <p class="note" role="note"><span class="marker">Note:</span> In the ECMAScript language binding, an interface that is iterable -will have <code class="idl">entries</code>, <code class="idl">forEach</code>, <code class="idl">keys</code>, <code class="idl">values</code>, and <code class="idl"><a data-link-type="idl">@@iterator</a></code> properties on its <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object①">interface prototype object</a>.</p> +will have <code class="idl">entries</code>, <code class="idl">forEach</code>, <code class="idl">keys</code>, <code class="idl">values</code>, and <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols">@@iterator</a></code> properties on its <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object①">interface prototype object</a>.</p> <p>If a single type parameter is given, then the interface has a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="dfn-value-iterator">value iterator</dfn> and provides values of the specified type. If two type parameters are given, then the interface has a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="dfn-pair-iterator">pair iterator</dfn> and provides <a data-link-type="dfn" href="#value-pair" id="ref-for-value-pair">value pairs</a> with the given types.</p> @@ -4120,7 +4120,7 @@ <h4 class="heading settled" data-level="2.5.8" id="idl-iterable"><span class="se </div> <p class="note" role="note"><span class="marker">Note:</span> This is how <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-array-iterator-objects" id="ref-for-sec-array-iterator-objects">array iterator objects</a> work. For interfaces that <a data-link-type="dfn" href="#dfn-support-indexed-properties" id="ref-for-dfn-support-indexed-properties⑦">support indexed properties</a>, -the iterator objects returned by <code class="idl">entries</code>, <code class="idl">keys</code>, <code class="idl">values</code>, and <code class="idl"><a data-link-type="idl">@@iterator</a></code> are +the iterator objects returned by <code class="idl">entries</code>, <code class="idl">keys</code>, <code class="idl">values</code>, and <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①">@@iterator</a></code> are actual <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-array-iterator-objects" id="ref-for-sec-array-iterator-objects①">array iterator objects</a>.</p> <p>Interfaces with iterable declarations must not have any <a data-link-type="dfn" href="#dfn-interface-member" id="ref-for-dfn-interface-member⑦">interface members</a> named "<code>entries</code>", "<code>forEach</code>", @@ -4151,7 +4151,7 @@ <h4 class="heading settled" data-level="2.5.8" id="idl-iterable"><span class="se returns an iterator object that itself has a <code>next</code> method that returns the next value to be iterated over. It has <code>keys</code> and <code>entries</code> methods that iterate over the usernames of session objects and username/<code class="idl">Session</code> object pairs, respectively. It also has - a <code class="idl"><a data-link-type="idl">@@iterator</a></code> method that allows a <code class="idl">SessionManager</code> to be used in a <code>for..of</code> loop that has the same value as the <code>entries</code> method:</p> + a <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②">@@iterator</a></code> method that allows a <code class="idl">SessionManager</code> to be used in a <code>for..of</code> loop that has the same value as the <code>entries</code> method:</p> <pre class="highlight"><c- c1>// Get an instance of SessionManager.</c-> <c- c1>// Assume that it has sessions for two users, "anna" and "brian".</c-> <c- a>var</c-> sm <c- o>=</c-> getSessionManager<c- p>();</c-> @@ -4211,11 +4211,11 @@ <h4 class="heading settled" data-level="2.5.9" id="idl-async-iterable"><span cla specified type. If two type parameters are given, then the interface has a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="pair-asynchronously-iterable-declaration">pair asynchronously iterable declaration</dfn> and asynchronously provides <a data-link-type="dfn" href="#value-pair" id="ref-for-value-pair⑤">value pairs</a> with the given types.</p> <p>If given, an <a data-link-type="dfn" href="#dfn-async-iterable-declaration" id="ref-for-dfn-async-iterable-declaration③">asynchronously iterable declaration</a>'s arguments (matching <emu-nt><a href="#prod-ArgumentList">ArgumentList</a></emu-nt>) must all be <a data-link-type="dfn" href="#dfn-optional-argument" id="ref-for-dfn-optional-argument①⑦">optional arguments</a>.</p> <div class="note" role="note"> - In the ECMAScript language binding, an interface that is asynchronously iterable will have <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code> and <code class="idl">values</code> properties on its <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object③">interface prototype object</a>. If the interface has a <a data-link-type="dfn" href="#pair-asynchronously-iterable-declaration" id="ref-for-pair-asynchronously-iterable-declaration">pair asynchronously iterable declaration</a>, it will additionally have <code class="idl">entries</code> and <code class="idl">keys</code> properties. All of these + In the ECMAScript language binding, an interface that is asynchronously iterable will have <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols③">@@asyncIterator</a></code> and <code class="idl">values</code> properties on its <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object③">interface prototype object</a>. If the interface has a <a data-link-type="dfn" href="#pair-asynchronously-iterable-declaration" id="ref-for-pair-asynchronously-iterable-declaration">pair asynchronously iterable declaration</a>, it will additionally have <code class="idl">entries</code> and <code class="idl">keys</code> properties. All of these methods can be passed optional arguments, which correspond to the argument list in the <a data-link-type="dfn" href="#dfn-async-iterable-declaration" id="ref-for-dfn-async-iterable-declaration④">asynchronously iterable declaration</a>, and are processed by the <a data-link-type="dfn" href="#asynchronous-iterator-initialization-steps" id="ref-for-asynchronous-iterator-initialization-steps">asynchronous iterator initialization steps</a>, if any exist. <p>With this in mind, the requirement that all arguments be optional ensures that, in the ECMAScript binding, <code>for</code>-<code>await</code>-<code>of</code> can work directly on - instances of the interface, since <code>for</code>-<code>await</code>-<code>of</code> calls the <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code> method with no arguments.</p> + instances of the interface, since <code>for</code>-<code>await</code>-<code>of</code> calls the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols④">@@asyncIterator</a></code> method with no arguments.</p> </div> <p>Prose accompanying an <a data-link-type="dfn" href="#dfn-interface" id="ref-for-dfn-interface⑧⓪">interface</a> with an <a data-link-type="dfn" href="#dfn-async-iterable-declaration" id="ref-for-dfn-async-iterable-declaration⑤">asynchronously iterable declaration</a> must define a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="dfn-get-the-next-iteration-result">get the next iteration result</dfn> algorithm. This algorithm receives the instance of the <a data-link-type="dfn" href="#dfn-interface" id="ref-for-dfn-interface⑧①">interface</a> that is being iterated, as well as the @@ -4310,7 +4310,7 @@ <h4 class="heading settled" data-level="2.5.9" id="idl-async-iterable"><span cla function, which, when invoked, returns an asynchronous iterator object that itself has a <code>next</code> method that returns the next value to be iterated over. It has <code>keys</code> and <code>entries</code> methods that iterate over the usernames of session objects and (username, <code class="idl">Session</code>) object pairs, respectively. - It also has a <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code> method that allows a <code class="idl">SessionManager</code> to be used in a <code>for await..of</code> loop that has the same value as the <code>entries</code> method:</p> + It also has a <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols⑤">@@asyncIterator</a></code> method that allows a <code class="idl">SessionManager</code> to be used in a <code>for await..of</code> loop that has the same value as the <code>entries</code> method:</p> <pre class="highlight"><c- c1>// Get an instance of SessionManager.</c-> <c- c1>// Assume that it has sessions for two users, "anna" and "brian".</c-> <c- a>var</c-> sm <c- o>=</c-> getSessionManager<c- p>();</c-> @@ -4365,7 +4365,7 @@ <h4 class="heading settled" data-level="2.5.10" id="idl-maplike"><span class="se appropriate for the language binding. If the <emu-t>readonly</emu-t> keyword is not used, then it also supports an API for modifying the map entries.</p> <p class="note" role="note"><span class="marker">Note:</span> In the ECMAScript language binding, the API for interacting -with the map entries is similar to that available on ECMAScript <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-map-objects" id="ref-for-sec-map-objects">Map</a></code> objects. If the <emu-t>readonly</emu-t> keyword is used, this includes <code class="idl">entries</code>, <code class="idl">forEach</code>, <code class="idl">get</code>, <code class="idl">has</code>, <code class="idl">keys</code>, <code class="idl">values</code>, <code class="idl"><a data-link-type="idl">@@iterator</a></code> methods, and a <code class="idl">size</code> getter. +with the map entries is similar to that available on ECMAScript <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-map-objects" id="ref-for-sec-map-objects">Map</a></code> objects. If the <emu-t>readonly</emu-t> keyword is used, this includes <code class="idl">entries</code>, <code class="idl">forEach</code>, <code class="idl">get</code>, <code class="idl">has</code>, <code class="idl">keys</code>, <code class="idl">values</code>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols⑥">@@iterator</a></code> methods, and a <code class="idl">size</code> getter. For read–write maplikes, it also includes <code class="idl">clear</code>, <code class="idl">delete</code>, and <code class="idl">set</code> methods.</p> <p>Maplike interfaces must not have any <a data-link-type="dfn" href="#dfn-interface-member" id="ref-for-dfn-interface-member①⓪">interface members</a> named "<code>entries</code>", "<code>forEach</code>", @@ -4418,7 +4418,7 @@ <h4 class="heading settled" data-level="2.5.11" id="idl-setlike"><span class="se appropriate for the language binding. If the <emu-t>readonly</emu-t> keyword is not used, then it also supports an API for modifying the set entries.</p> <p class="note" role="note"><span class="marker">Note:</span> In the ECMAScript language binding, the API for interacting -with the set entries is similar to that available on ECMAScript <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-set-objects" id="ref-for-sec-set-objects">Set</a></code> objects. If the <emu-t>readonly</emu-t> keyword is used, this includes <code class="idl">entries</code>, <code class="idl">forEach</code>, <code class="idl">has</code>, <code class="idl">keys</code>, <code class="idl">values</code>, <code class="idl"><a data-link-type="idl">@@iterator</a></code> methods, and a <code class="idl">size</code> getter. +with the set entries is similar to that available on ECMAScript <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-set-objects" id="ref-for-sec-set-objects">Set</a></code> objects. If the <emu-t>readonly</emu-t> keyword is used, this includes <code class="idl">entries</code>, <code class="idl">forEach</code>, <code class="idl">has</code>, <code class="idl">keys</code>, <code class="idl">values</code>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols⑦">@@iterator</a></code> methods, and a <code class="idl">size</code> getter. For read–write setlikes, it also includes <code class="idl">add</code>, <code class="idl">clear</code>, and <code class="idl">delete</code> methods.</p> <p>Setlike interfaces must not have any <a data-link-type="dfn" href="#dfn-interface-member" id="ref-for-dfn-interface-member①①">interface members</a> named "<code>entries</code>", "<code>forEach</code>", @@ -6112,7 +6112,7 @@ <h2 class="heading settled" data-level="3" id="ecmascript-binding"><span class=" <p>Some objects described in this section are defined to have a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="dfn-class-string">class string</dfn>, which is the string to include in the string returned from <code>Object.prototype.toString</code>.</p> <p>If an object has a <a data-link-type="dfn" href="#dfn-class-string" id="ref-for-dfn-class-string">class string</a> <var>classString</var>, then the object must, -at the time it is created, have a property whose name is the <code class="idl"><a data-link-type="idl">@@toStringTag</a></code> symbol +at the time it is created, have a property whose name is the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols⑧">@@toStringTag</a></code> symbol with PropertyDescriptor{[[Writable]]: <emu-val>false</emu-val>, [[Enumerable]]: <emu-val>false</emu-val>, [[Configurable]]: <emu-val>true</emu-val>, [[Value]]: <var>classString</var>}.</p> @@ -6929,7 +6929,7 @@ <h4 class="heading settled" data-level="3.2.21" id="es-sequence"><span class="se <li data-md> <p>If <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values" id="ref-for-sec-ecmascript-data-types-and-values①④">Type</a>(<var>V</var>) is not Object, <a data-link-type="dfn" href="#ecmascript-throw" id="ref-for-ecmascript-throw①③">throw</a> a <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-typeerror" id="ref-for-sec-native-error-types-used-in-this-standard-typeerror①④">TypeError</a></code>.</p> <li data-md> - <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands②⓪">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl">@@iterator</a></code>).</p> + <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands②⓪">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols⑨">@@iterator</a></code>).</p> <li data-md> <p>If <var>method</var> is <emu-val>undefined</emu-val>, <a data-link-type="dfn" href="#ecmascript-throw" id="ref-for-ecmascript-throw①④">throw</a> a <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-typeerror" id="ref-for-sec-native-error-types-used-in-this-standard-typeerror①⑤">TypeError</a></code>.</p> <li data-md> @@ -7710,7 +7710,7 @@ <h4 class="heading settled" data-level="3.2.24" id="es-union"><span class="secno <p>If <var>types</var> includes a <a data-link-type="dfn" href="#sequence-type" id="ref-for-sequence-type②⓪">sequence type</a>, then</p> <ol> <li data-md> - <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands④④">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod①">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl">@@iterator</a></code>).</p> + <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands④④">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod①">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①⓪">@@iterator</a></code>).</p> <li data-md> <p>If <var>method</var> is not <emu-val>undefined</emu-val>, return the result of <a data-link-type="dfn" href="#create-sequence-from-iterable" id="ref-for-create-sequence-from-iterable①">creating a sequence</a> of that type from <var>V</var> and <var>method</var>.</p> @@ -7719,7 +7719,7 @@ <h4 class="heading settled" data-level="3.2.24" id="es-union"><span class="secno <p>If <var>types</var> includes a <a data-link-type="dfn" href="#dfn-frozen-array-type" id="ref-for-dfn-frozen-array-type⑤">frozen array type</a>, then</p> <ol> <li data-md> - <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands④⑤">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod②">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl">@@iterator</a></code>).</p> + <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands④⑤">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod②">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①①">@@iterator</a></code>).</p> <li data-md> <p>If <var>method</var> is not <emu-val>undefined</emu-val>, return the result of <a data-link-type="dfn" href="#create-frozen-array-from-iterable" id="ref-for-create-frozen-array-from-iterable">creating a frozen array</a> of that type from <var>V</var> and <var>method</var>.</p> @@ -8752,7 +8752,7 @@ <h4 class="heading settled dfn-paneled idl-code" data-dfn-type="extended-attribu environment record with it as its base object. The result of this is that bare identifiers matching the property name will not resolve to the property in a <code>with</code> statement. This is achieved by -including the property name on the <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object⑧">interface prototype object</a>’s <code class="idl"><a data-link-type="idl">@@unscopables</a></code> property’s value.</p> +including the property name on the <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object⑧">interface prototype object</a>’s <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①②">@@unscopables</a></code> property’s value.</p> <p>The [<code class="idl"><a data-link-type="idl" href="#Unscopable" id="ref-for-Unscopable①">Unscopable</a></code>] extended attribute must <a data-link-type="dfn" href="#dfn-xattr-no-arguments" id="ref-for-dfn-xattr-no-arguments⑨">take no arguments</a>.</p> <p>The [<code class="idl"><a data-link-type="idl" href="#Unscopable" id="ref-for-Unscopable②">Unscopable</a></code>] @@ -9481,7 +9481,7 @@ <h3 class="heading settled" data-level="3.6" id="es-overloads"><span class="secn <p>and after performing the following steps,</p> <ol> <li data-md> - <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands④⑦">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod③">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl">@@iterator</a></code>).</p> + <p>Let <var>method</var> be <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands④⑦">?</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-getmethod" id="ref-for-sec-getmethod③">GetMethod</a>(<var>V</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①③">@@iterator</a></code>).</p> </ol> <p><var>method</var> is not <emu-val>undefined</emu-val>, then remove from <var>S</var> all other entries.</p> @@ -9706,7 +9706,7 @@ <h3 class="heading settled" data-level="3.6" id="es-overloads"><span class="secn side effects, and the only side effects in the overload resolution algorithm are the result of converting the ECMAScript values to IDL values. (An exception exists when one of the overloads has a <a data-link-type="dfn" href="#sequence-type" id="ref-for-sequence-type②⑤">sequence type</a> or <a data-link-type="dfn" href="#dfn-frozen-array-type" id="ref-for-dfn-frozen-array-type⑧">frozen array type</a> at the distinguishing argument index. - In this case, we attempt to get the <code class="idl"><a data-link-type="idl">@@iterator</a></code> property to determine the appropriate + In this case, we attempt to get the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①④">@@iterator</a></code> property to determine the appropriate overload, and perform the conversion of the distinguishing argument separately before continuing with the next step.)</p> <p>At this point, we have determined which overload to use. We now @@ -9940,7 +9940,7 @@ <h4 class="heading settled" data-level="3.7.3" id="interface-prototype-object">< <li data-md> <p>If <var>interface</var> has any <a data-link-type="dfn" href="#dfn-member" id="ref-for-dfn-member②④">member</a> declared with the [<code class="idl"><a data-link-type="idl" href="#Unscopable" id="ref-for-Unscopable⑤">Unscopable</a></code>] <a data-link-type="dfn" href="#dfn-extended-attribute" id="ref-for-dfn-extended-attribute①⓪⑧">extended attribute</a>, then:</p> - <p class="issue" id="issue-0112317b"><a class="self-link" href="#issue-0112317b"></a> Should an <code class="idl"><a data-link-type="idl">@@unscopables</a></code> property also be defined if <var>interface</var> is + <p class="issue" id="issue-0112317b"><a class="self-link" href="#issue-0112317b"></a> Should an <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①⑤">@@unscopables</a></code> property also be defined if <var>interface</var> is declared with the [<code class="idl"><a data-link-type="idl" href="#Global" id="ref-for-Global①⑦">Global</a></code>] <a data-link-type="dfn" href="#dfn-extended-attribute" id="ref-for-dfn-extended-attribute①⓪⑨">extended attribute</a>? This is discussed in <a href="https://github.com/heycam/webidl/issues/544">issue #544</a>.</p> <ol> @@ -9959,7 +9959,7 @@ <h4 class="heading settled" data-level="3.7.3" id="interface-prototype-object">< [[Writable]]: <emu-val>false</emu-val>, [[Enumerable]]: <emu-val>false</emu-val>, [[Configurable]]: <emu-val>true</emu-val>}.</p> <li data-md> - <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑥①">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-definepropertyorthrow" id="ref-for-sec-definepropertyorthrow②">DefinePropertyOrThrow</a>(<var>interfaceProtoObj</var>, <code class="idl"><a data-link-type="idl">@@unscopables</a></code>, <var>desc</var>).</p> + <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑥①">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-definepropertyorthrow" id="ref-for-sec-definepropertyorthrow②">DefinePropertyOrThrow</a>(<var>interfaceProtoObj</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①⑥">@@unscopables</a></code>, <var>desc</var>).</p> </ol> <li data-md> <p>If <var>interface</var> is not declared with the [<code class="idl"><a data-link-type="idl" href="#Global" id="ref-for-Global①⑧">Global</a></code>] <a data-link-type="dfn" href="#dfn-extended-attribute" id="ref-for-dfn-extended-attribute①①①">extended attribute</a>, then:</p> @@ -10796,7 +10796,7 @@ <h4 class="heading settled" data-level="3.7.8" id="es-iterators"><span class="se <h5 class="heading settled" data-level="3.7.8.1" id="es-iterator"><span class="secno">3.7.8.1. </span><span class="content">@@iterator</span><a class="self-link" href="#es-iterator"></a></h5> <p>If the <a data-link-type="dfn" href="#dfn-interface" id="ref-for-dfn-interface①⑨⑨">interface</a> has a <a data-link-type="dfn" href="#dfn-maplike-declaration" id="ref-for-dfn-maplike-declaration⑨">maplike declaration</a> or a <a data-link-type="dfn" href="#dfn-setlike-declaration" id="ref-for-dfn-setlike-declaration⑨">setlike declaration</a>, then a property must exist -whose name is the <code class="idl"><a data-link-type="idl">@@iterator</a></code> symbol, with attributes +whose name is the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①⑦">@@iterator</a></code> symbol, with attributes { [[Writable]]: <emu-val>true</emu-val>, [[Enumerable]]: <emu-val>false</emu-val>, [[Configurable]]: <emu-val>true</emu-val> } and whose value is a <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object①③">function object</a>.</p> <p>The location of the property is determined as follows:</p> @@ -10846,8 +10846,8 @@ <h5 class="heading settled" data-level="3.7.8.1" id="es-iterator"><span class="s </ol> </ol> </div> - <p>The value of the <code class="idl"><a data-link-type="idl">@@iterator</a></code> <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object①⑤">function object</a>’s <code class="idl">length</code> property is the Number value <emu-val>0</emu-val>.</p> - <p>The value of the <code class="idl"><a data-link-type="idl">@@iterator</a></code> <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object①⑥">function object</a>’s <code class="idl">name</code> property + <p>The value of the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①⑧">@@iterator</a></code> <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object①⑤">function object</a>’s <code class="idl">length</code> property is the Number value <emu-val>0</emu-val>.</p> + <p>The value of the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols①⑨">@@iterator</a></code> <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object①⑥">function object</a>’s <code class="idl">name</code> property is the String value "<code>entries</code>" if the interface has a <a data-link-type="dfn" href="#dfn-maplike-declaration" id="ref-for-dfn-maplike-declaration①③">maplike declaration</a> and the String "<code>values</code>" if the interface has a <a data-link-type="dfn" href="#dfn-setlike-declaration" id="ref-for-dfn-setlike-declaration①②">setlike declaration</a>.</p> @@ -10930,7 +10930,7 @@ <h4 class="heading settled" data-level="3.7.9" id="es-iterable"><span class="sec <p>If <var>definition</var> has an <a data-link-type="dfn" href="#dfn-indexed-property-getter" id="ref-for-dfn-indexed-property-getter⑦">indexed property getter</a>, then:</p> <ol> <li data-md> - <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑧⑧">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl">@@iterator</a></code>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-array.prototype.values" id="ref-for-sec-array.prototype.values">%Array.prototype.values%</a></code>).</p> + <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑧⑧">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②⓪">@@iterator</a></code>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-array.prototype.values" id="ref-for-sec-array.prototype.values">%Array.prototype.values%</a></code>).</p> <li data-md> <p>If <var>definition</var> has a <a data-link-type="dfn" href="#dfn-value-iterator" id="ref-for-dfn-value-iterator⑥">value iterator</a>, then:</p> <ol> @@ -10948,7 +10948,7 @@ <h4 class="heading settled" data-level="3.7.9" id="es-iterable"><span class="sec <p>Otherwise, if <var>definition</var> has a <a data-link-type="dfn" href="#dfn-pair-iterator" id="ref-for-dfn-pair-iterator③">pair iterator</a>, then:</p> <ol> <li data-md> - <p>Define the <code class="idl"><a data-link-type="idl">@@iterator</a></code> and <code class="idl">entries</code> methods:</p> + <p>Define the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②①">@@iterator</a></code> and <code class="idl">entries</code> methods:</p> <ol> <li data-md> <p>Let <var>steps</var> be the following series of steps:</p> @@ -10971,7 +10971,7 @@ <h4 class="heading settled" data-level="3.7.9" id="es-iterable"><span class="sec <li data-md> <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑨⑥">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-setfunctionlength" id="ref-for-sec-setfunctionlength⑤">SetFunctionLength</a>(<var>F</var>, 0).</p> <li data-md> - <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑨⑦">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty①">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl">@@iterator</a></code>, <var>F</var>).</p> + <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑨⑦">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty①">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②②">@@iterator</a></code>, <var>F</var>).</p> <li data-md> <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands⑨⑧">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createdataproperty" id="ref-for-sec-createdataproperty①⓪">CreateDataProperty</a>(<var>target</var>, "<code>entries</code>", <var>F</var>).</p> </ol> @@ -11200,7 +11200,7 @@ <h4 class="heading settled" data-level="3.7.10" id="es-asynchronous-iterable"><s <li data-md> <p class="assertion">Assert: <var>definition</var> does not have an <a data-link-type="dfn" href="#dfn-indexed-property-getter" id="ref-for-dfn-indexed-property-getter⑧">indexed property getter</a> or an <a data-link-type="dfn" href="#dfn-iterable-declaration" id="ref-for-dfn-iterable-declaration①①">iterable declaration</a>.</p> <li data-md> - <p>If <var>definition</var> has a <a data-link-type="dfn" href="#pair-asynchronously-iterable-declaration" id="ref-for-pair-asynchronously-iterable-declaration②">pair asynchronously iterable declaration</a>, then define the <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code> and <code class="idl">entries</code> methods:</p> + <p>If <var>definition</var> has a <a data-link-type="dfn" href="#pair-asynchronously-iterable-declaration" id="ref-for-pair-asynchronously-iterable-declaration②">pair asynchronously iterable declaration</a>, then define the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②③">@@asyncIterator</a></code> and <code class="idl">entries</code> methods:</p> <ol> <li data-md> <p>Let <var>steps</var> be the following series of steps, given function argument values <var>args</var>:</p> @@ -11229,7 +11229,7 @@ <h4 class="heading settled" data-level="3.7.10" id="es-asynchronous-iterable"><s <li data-md> <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①①⑦">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-setfunctionlength" id="ref-for-sec-setfunctionlength⑨">SetFunctionLength</a>(<var>F</var>, 0).</p> <li data-md> - <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①①⑧">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty②">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code>, <var>F</var>).</p> + <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①①⑧">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty②">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②④">@@asyncIterator</a></code>, <var>F</var>).</p> <li data-md> <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①①⑨">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createdataproperty" id="ref-for-sec-createdataproperty①⑥">CreateDataProperty</a>(<var>target</var>, "<code>entries</code>", <var>F</var>).</p> </ol> @@ -11266,7 +11266,7 @@ <h4 class="heading settled" data-level="3.7.10" id="es-asynchronous-iterable"><s <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①②④">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createdataproperty" id="ref-for-sec-createdataproperty①⑦">CreateDataProperty</a>(<var>target</var>, "<code>keys</code>", <var>F</var>).</p> </ol> <li data-md> - <p>Define the <code class="idl">values</code>, and possibly <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code>, methods:</p> + <p>Define the <code class="idl">values</code>, and possibly <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②⑤">@@asyncIterator</a></code>, methods:</p> <ol> <li data-md> <p>Let <var>steps</var> be the following series of steps, given function argument values <var>args</var>:</p> @@ -11297,7 +11297,7 @@ <h4 class="heading settled" data-level="3.7.10" id="es-asynchronous-iterable"><s <li data-md> <p>Perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①②⑨">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createdataproperty" id="ref-for-sec-createdataproperty①⑧">CreateDataProperty</a>(<var>target</var>, "<code>values</code>", <var>F</var>).</p> <li data-md> - <p>If <var>definition</var> has a <a data-link-type="dfn" href="#value-asynchronously-iterable-declaration" id="ref-for-value-asynchronously-iterable-declaration①">value asynchronously iterable declaration</a>, then perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①③⓪">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty③">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl">@@asyncIterator</a></code>, <var>F</var>).</p> + <p>If <var>definition</var> has a <a data-link-type="dfn" href="#value-asynchronously-iterable-declaration" id="ref-for-value-asynchronously-iterable-declaration①">value asynchronously iterable declaration</a>, then perform <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#sec-returnifabrupt-shorthands" id="ref-for-sec-returnifabrupt-shorthands①③⓪">!</a> <a data-link-type="abstract-op" href="https://tc39.github.io/ecma262/#sec-createmethodproperty" id="ref-for-sec-createmethodproperty③">CreateMethodProperty</a>(<var>target</var>, <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②⑥">@@asyncIterator</a></code>, <var>F</var>).</p> </ol> </ol> </div> @@ -11678,7 +11678,7 @@ <h5 class="heading settled" data-level="3.7.11.1" id="es-map-size"><span class=" <h5 class="heading settled" data-level="3.7.11.2" id="es-map-entries"><span class="secno">3.7.11.2. </span><span class="content">entries</span><a class="self-link" href="#es-map-entries"></a></h5> <p>An <code class="idl">entries</code> data property must exist on <var>A</var>’s <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object②⑤">interface prototype object</a> with attributes { [[Writable]]: <emu-val>true</emu-val>, [[Enumerable]]: <emu-val>false</emu-val>, [[Configurable]]: <emu-val>true</emu-val> } and whose value is the <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object②③">function object</a> that is the value of -the <code class="idl"><a data-link-type="idl">@@iterator</a></code> property.</p> +the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②⑦">@@iterator</a></code> property.</p> <h5 class="heading settled" data-level="3.7.11.3" id="es-map-keys-values"><span class="secno">3.7.11.3. </span><span class="content">keys and values</span><a class="self-link" href="#es-map-keys-values"></a></h5> <p>For both of <code class="idl">keys</code> and <code class="idl">values</code>, there must exist a data property with that name on <var>A</var>’s <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object②⑥">interface prototype object</a> with the following characteristics:</p> <ul> @@ -11929,7 +11929,7 @@ <h5 class="heading settled" data-level="3.7.12.1" id="es-set-size"><span class=" <h5 class="heading settled" data-level="3.7.12.2" id="es-set-values"><span class="secno">3.7.12.2. </span><span class="content">values</span><a class="self-link" href="#es-set-values"></a></h5> <p>A <code class="idl">values</code> data property must exist on <var>A</var>’s <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object③③">interface prototype object</a> with attributes { [[Writable]]: <emu-val>true</emu-val>, [[Enumerable]]: <emu-val>false</emu-val>, [[Configurable]]: <emu-val>true</emu-val> } and whose value is the <a data-link-type="dfn" href="https://tc39.github.io/ecma262/#function-object" id="ref-for-function-object③⑥">function object</a> that is the value of -the <code class="idl"><a data-link-type="idl">@@iterator</a></code> property.</p> +the <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-well-known-symbols" id="ref-for-sec-well-known-symbols②⑧">@@iterator</a></code> property.</p> <h5 class="heading settled" data-level="3.7.12.3" id="es-set-entries-keys"><span class="secno">3.7.12.3. </span><span class="content">entries and keys</span><a class="self-link" href="#es-set-entries-keys"></a></h5> <p>For both of <code class="idl">entries</code> and <code class="idl">keys</code>, there must exist a data property with that name on <var>A</var>’s <a data-link-type="dfn" href="#dfn-interface-prototype-object" id="ref-for-dfn-interface-prototype-object③④">interface prototype object</a> with the following characteristics:</p> <ul> @@ -13626,7 +13626,7 @@ <h2 class="heading settled" data-level="8" id="priv-sec"><span class="secno">8. <p>This specification also provides the ability to use JavaScript values directly, through the <code class="idl"><a data-link-type="idl" href="#idl-any" id="ref-for-idl-any①⑧">any</a></code> and <code class="idl"><a data-link-type="idl" href="#idl-object" id="ref-for-idl-object③⓪">object</a></code> IDL types. These values need to be handled carefully to avoid security issues. In particular, user script can run in response to nearly any manipulation of these values, and invalidate the expectations of specifications or implementations using them.</p> - <p>This specification makes it possible to interact with <code class="idl"><a data-link-type="idl">SharedArrayBuffer</a></code> objects, which can be + <p>This specification makes it possible to interact with <code class="idl"><a data-link-type="idl" href="https://tc39.github.io/ecma262/#sec-sharedarraybuffer-objects" id="ref-for-sec-sharedarraybuffer-objects③">SharedArrayBuffer</a></code> objects, which can be used to build timing attacks. Specifications that use these objects need to consider such attacks.</p> <h2 class="heading settled" data-level="9" id="acknowledgements"><span class="secno">9. </span><span class="content">Acknowledgements</span><a class="self-link" href="#acknowledgements"></a></h2> <p><i>This section is informative.</i></p> @@ -14559,6 +14559,10 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6288ff8d">%Promise.prototype.then%</span> <li><span class="dfn-paneled" id="d94fe18a">%Promise.reject%</span> <li><span class="dfn-paneled" id="ebb4ace3">?</span> + <li><span class="dfn-paneled" id="d14008fe">@@asyncIterator</span> + <li><span class="dfn-paneled" id="d3ec80b9">@@iterator</span> + <li><span class="dfn-paneled" id="25fdad0f">@@toStringTag</span> + <li><span class="dfn-paneled" id="733c5227">@@unscopables</span> <li><span class="dfn-paneled" id="f17862f0">ArrayBuffer</span> <li><span class="dfn-paneled" id="437d21ea">ArrayCreate</span> <li><span class="dfn-paneled" id="1010768b">Call</span> @@ -14777,9 +14781,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-api-design-principles">[API-DESIGN-PRINCIPLES] - <dd>Sangwhan Moon. <a href="https://w3ctag.github.io/design-principles/"><cite>Web Platform Design Principles</cite></a>. URL: <a href="https://w3ctag.github.io/design-principles/">https://w3ctag.github.io/design-principles/</a> + <dd>Lea Verou. <a href="https://w3ctag.github.io/design-principles/"><cite>Web Platform Design Principles</cite></a>. URL: <a href="https://w3ctag.github.io/design-principles/">https://w3ctag.github.io/design-principles/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-fetch">[FETCH] @@ -15062,6 +15066,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "1ab6911b": {"dfnID":"1ab6911b","dfnText":"IsCallable","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-iscallable"}],"title":"3.1. ECMAScript environment"},{"refs":[{"id":"ref-for-sec-iscallable\u2460"}],"title":"3.2.19. Callback function types"},{"refs":[{"id":"ref-for-sec-iscallable\u2461"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-sec-iscallable\u2462"},{"id":"ref-for-sec-iscallable\u2463"}],"title":"3.4.8. [LegacyTreatNonObjectAsNull]"},{"refs":[{"id":"ref-for-sec-iscallable\u2464"}],"title":"3.6. Overload resolution algorithm"},{"refs":[{"id":"ref-for-sec-iscallable\u2465"}],"title":"3.7.8.2. forEach"},{"refs":[{"id":"ref-for-sec-iscallable\u2466"}],"title":"3.8. Platform objects implementing interfaces"},{"refs":[{"id":"ref-for-sec-iscallable\u2467"},{"id":"ref-for-sec-iscallable\u2468"},{"id":"ref-for-sec-iscallable\u2460\u24ea"}],"title":"3.11. Callback interfaces"},{"refs":[{"id":"ref-for-sec-iscallable\u2460\u2460"},{"id":"ref-for-sec-iscallable\u2460\u2461"}],"title":"3.12. Invoking callback functions"}],"url":"https://tc39.github.io/ecma262/#sec-iscallable"}, "2546fae0": {"dfnID":"2546fae0","dfnText":"promisecapability","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-promisecapability-records"}],"title":"3.2.23. Promise types \u2014 Promise<T>"}],"url":"https://tc39.github.io/ecma262/#sec-promisecapability-records"}, "25976a48": {"dfnID":"25976a48","dfnText":"supports(property, value)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-css-supports"}],"title":"2.5.7.1. Overloading vs. union types"}],"url":"https://drafts.csswg.org/css-conditional-3/#dom-css-supports"}, +"25fdad0f": {"dfnID":"25fdad0f","dfnText":"@@toStringTag","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-well-known-symbols"},{"id":"ref-for-sec-well-known-symbols\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461"}],"title":"2.5.8. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2462"},{"id":"ref-for-sec-well-known-symbols\u2463"},{"id":"ref-for-sec-well-known-symbols\u2464"}],"title":"2.5.9. Asynchronously iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2465"}],"title":"2.5.10. Maplike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2466"}],"title":"2.5.11. Setlike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2467"}],"title":"3. ECMAScript binding"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2468"}],"title":"3.2.21. Sequences \u2014 sequence<T>"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2460\u2460"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2461"}],"title":"3.3.13. [Unscopable]"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2462"},{"id":"ref-for-sec-well-known-symbols\u2460\u2463"}],"title":"3.6. Overload resolution algorithm"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2464"},{"id":"ref-for-sec-well-known-symbols\u2460\u2465"}],"title":"3.7.3. Interface prototype object"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2466"},{"id":"ref-for-sec-well-known-symbols\u2460\u2467"},{"id":"ref-for-sec-well-known-symbols\u2460\u2468"}],"title":"3.7.8.1. @@iterator"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2461\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461\u2461"}],"title":"3.7.9. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2462"},{"id":"ref-for-sec-well-known-symbols\u2461\u2463"},{"id":"ref-for-sec-well-known-symbols\u2461\u2464"},{"id":"ref-for-sec-well-known-symbols\u2461\u2465"}],"title":"3.7.10. Asynchronous iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2466"}],"title":"3.7.11.2. entries"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2467"}],"title":"3.7.12.2. values"}],"url":"https://tc39.github.io/ecma262/#sec-well-known-symbols"}, "26e81ada": {"dfnID":"26e81ada","dfnText":"error objects","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-error-objects"},{"id":"ref-for-sec-error-objects\u2460"}],"title":"2.8. Exceptions"},{"refs":[{"id":"ref-for-sec-error-objects\u2461"}],"title":"3.14.1. DOMException custom bindings"}],"url":"https://tc39.github.io/ecma262/#sec-error-objects"}, "2879c404": {"dfnID":"2879c404","dfnText":"Worklet","external":true,"refSections":[{"refs":[{"id":"ref-for-worklet"}],"title":"3.3.6. [Exposed]"}],"url":"https://html.spec.whatwg.org/multipage/worklets.html#worklet"}, "2bec5692": {"dfnID":"2bec5692","dfnText":"array index","external":true,"refSections":[{"refs":[{"id":"ref-for-array-index"}],"title":"3.9. Legacy platform objects"},{"refs":[{"id":"ref-for-array-index\u2460"}],"title":"3.9.7. Abstract operations"},{"refs":[{"id":"ref-for-array-index\u2461"}],"title":"3.10. Observable array exotic objects"}],"url":"https://tc39.github.io/ecma262/#array-index"}, @@ -15113,6 +15118,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "6b815fdd": {"dfnID":"6b815fdd","dfnText":"is empty","external":true,"refSections":[{"refs":[{"id":"ref-for-list-is-empty"}],"title":"2.5.7. Overloading"},{"refs":[{"id":"ref-for-list-is-empty\u2460"}],"title":"3.7.7.1.1. Default toJSON operation"}],"url":"https://infra.spec.whatwg.org/#list-is-empty"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any\u2460\u2465"},{"id":"ref-for-idl-any\u2460\u2466"}],"title":"4.5. Function"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "70de881b": {"dfnID":"70de881b","dfnText":"CanvasDrawPath","external":true,"refSections":[{"refs":[{"id":"ref-for-canvasdrawpath"},{"id":"ref-for-canvasdrawpath\u2460"}],"title":"2.5.7.1. Overloading vs. union types"}],"url":"https://html.spec.whatwg.org/multipage/canvas.html#canvasdrawpath"}, +"733c5227": {"dfnID":"733c5227","dfnText":"@@unscopables","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-well-known-symbols"},{"id":"ref-for-sec-well-known-symbols\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461"}],"title":"2.5.8. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2462"},{"id":"ref-for-sec-well-known-symbols\u2463"},{"id":"ref-for-sec-well-known-symbols\u2464"}],"title":"2.5.9. Asynchronously iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2465"}],"title":"2.5.10. Maplike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2466"}],"title":"2.5.11. Setlike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2467"}],"title":"3. ECMAScript binding"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2468"}],"title":"3.2.21. Sequences \u2014 sequence<T>"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2460\u2460"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2461"}],"title":"3.3.13. [Unscopable]"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2462"},{"id":"ref-for-sec-well-known-symbols\u2460\u2463"}],"title":"3.6. Overload resolution algorithm"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2464"},{"id":"ref-for-sec-well-known-symbols\u2460\u2465"}],"title":"3.7.3. Interface prototype object"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2466"},{"id":"ref-for-sec-well-known-symbols\u2460\u2467"},{"id":"ref-for-sec-well-known-symbols\u2460\u2468"}],"title":"3.7.8.1. @@iterator"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2461\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461\u2461"}],"title":"3.7.9. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2462"},{"id":"ref-for-sec-well-known-symbols\u2461\u2463"},{"id":"ref-for-sec-well-known-symbols\u2461\u2464"},{"id":"ref-for-sec-well-known-symbols\u2461\u2465"}],"title":"3.7.10. Asynchronous iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2466"}],"title":"3.7.11.2. entries"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2467"}],"title":"3.7.12.2. values"}],"url":"https://tc39.github.io/ecma262/#sec-well-known-symbols"}, "7b0d918d": {"dfnID":"7b0d918d","dfnText":"break","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-break"}],"title":"2.5.7. Overloading"}],"url":"https://infra.spec.whatwg.org/#iteration-break"}, "7b9fa20b": {"dfnID":"7b9fa20b","dfnText":"enumerable","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-property-attributes"}],"title":"3.2.22. Records \u2014 record<K, V>"}],"url":"https://tc39.github.io/ecma262/#sec-property-attributes"}, "7c3de606": {"dfnID":"7c3de606","dfnText":"push","external":true,"refSections":[{"refs":[{"id":"ref-for-stack-push"},{"id":"ref-for-stack-push\u2460"}],"title":"3.7.7.1.1. Default toJSON operation"}],"url":"https://infra.spec.whatwg.org/#stack-push"}, @@ -15240,9 +15246,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "create-frozen-array-from-iterable": {"dfnID":"create-frozen-array-from-iterable","dfnText":"3.2.26.1. Creating a frozen array from an iterable","external":false,"refSections":[{"refs":[{"id":"ref-for-create-frozen-array-from-iterable"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-create-frozen-array-from-iterable"}],"title":"3.2.26.1. Creating a frozen array from an iterable"},{"refs":[{"id":"ref-for-create-frozen-array-from-iterable\u2460"}],"title":"3.6. Overload resolution algorithm"}],"url":"#create-frozen-array-from-iterable"}, "create-sequence-from-iterable": {"dfnID":"create-sequence-from-iterable","dfnText":"3.2.21.1. Creating a sequence from an iterable","external":false,"refSections":[{"refs":[{"id":"ref-for-create-sequence-from-iterable"}],"title":"3.2.21. Sequences \u2014 sequence<T>"},{"refs":[{"id":"ref-for-create-sequence-from-iterable"}],"title":"3.2.21.1. Creating a sequence from an iterable"},{"refs":[{"id":"ref-for-create-sequence-from-iterable\u2460"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-create-sequence-from-iterable\u2461"}],"title":"3.2.26.1. Creating a frozen array from an iterable"},{"refs":[{"id":"ref-for-create-sequence-from-iterable\u2462"}],"title":"3.6. Overload resolution algorithm"}],"url":"#create-sequence-from-iterable"}, "creating-an-observable-array-exotic-object": {"dfnID":"creating-an-observable-array-exotic-object","dfnText":"create an observable array exotic object","external":false,"refSections":[{"refs":[{"id":"ref-for-creating-an-observable-array-exotic-object"}],"title":"3.7.6. Attributes"}],"url":"#creating-an-observable-array-exotic-object"}, +"d14008fe": {"dfnID":"d14008fe","dfnText":"@@asyncIterator","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-well-known-symbols"},{"id":"ref-for-sec-well-known-symbols\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461"}],"title":"2.5.8. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2462"},{"id":"ref-for-sec-well-known-symbols\u2463"},{"id":"ref-for-sec-well-known-symbols\u2464"}],"title":"2.5.9. Asynchronously iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2465"}],"title":"2.5.10. Maplike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2466"}],"title":"2.5.11. Setlike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2467"}],"title":"3. ECMAScript binding"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2468"}],"title":"3.2.21. Sequences \u2014 sequence<T>"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2460\u2460"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2461"}],"title":"3.3.13. [Unscopable]"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2462"},{"id":"ref-for-sec-well-known-symbols\u2460\u2463"}],"title":"3.6. Overload resolution algorithm"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2464"},{"id":"ref-for-sec-well-known-symbols\u2460\u2465"}],"title":"3.7.3. Interface prototype object"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2466"},{"id":"ref-for-sec-well-known-symbols\u2460\u2467"},{"id":"ref-for-sec-well-known-symbols\u2460\u2468"}],"title":"3.7.8.1. @@iterator"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2461\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461\u2461"}],"title":"3.7.9. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2462"},{"id":"ref-for-sec-well-known-symbols\u2461\u2463"},{"id":"ref-for-sec-well-known-symbols\u2461\u2464"},{"id":"ref-for-sec-well-known-symbols\u2461\u2465"}],"title":"3.7.10. Asynchronous iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2466"}],"title":"3.7.11.2. entries"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2467"}],"title":"3.7.12.2. values"}],"url":"https://tc39.github.io/ecma262/#sec-well-known-symbols"}, "d19b9dc6": {"dfnID":"d19b9dc6","dfnText":"callable","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-iscallable"}],"title":"3.1. ECMAScript environment"},{"refs":[{"id":"ref-for-sec-iscallable\u2460"}],"title":"3.2.19. Callback function types"},{"refs":[{"id":"ref-for-sec-iscallable\u2461"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-sec-iscallable\u2462"},{"id":"ref-for-sec-iscallable\u2463"}],"title":"3.4.8. [LegacyTreatNonObjectAsNull]"},{"refs":[{"id":"ref-for-sec-iscallable\u2464"}],"title":"3.6. Overload resolution algorithm"},{"refs":[{"id":"ref-for-sec-iscallable\u2465"}],"title":"3.7.8.2. forEach"},{"refs":[{"id":"ref-for-sec-iscallable\u2466"}],"title":"3.8. Platform objects implementing interfaces"},{"refs":[{"id":"ref-for-sec-iscallable\u2467"},{"id":"ref-for-sec-iscallable\u2468"},{"id":"ref-for-sec-iscallable\u2460\u24ea"}],"title":"3.11. Callback interfaces"},{"refs":[{"id":"ref-for-sec-iscallable\u2460\u2460"},{"id":"ref-for-sec-iscallable\u2460\u2461"}],"title":"3.12. Invoking callback functions"}],"url":"https://tc39.github.io/ecma262/#sec-iscallable"}, "d289ceaa": {"dfnID":"d289ceaa","dfnText":"Path2D","external":true,"refSections":[{"refs":[{"id":"ref-for-path2d"}],"title":"2.5.7.1. Overloading vs. union types"}],"url":"https://html.spec.whatwg.org/multipage/canvas.html#path2d"}, "d30f4c38": {"dfnID":"d30f4c38","dfnText":"EventListener","external":true,"refSections":[{"refs":[{"id":"ref-for-callbackdef-eventlistener"}],"title":"2.4. Callback interfaces"},{"refs":[{"id":"ref-for-callbackdef-eventlistener\u2460"}],"title":"2.12. Objects implementing interfaces"}],"url":"https://dom.spec.whatwg.org/#callbackdef-eventlistener"}, +"d3ec80b9": {"dfnID":"d3ec80b9","dfnText":"@@iterator","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-well-known-symbols"},{"id":"ref-for-sec-well-known-symbols\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461"}],"title":"2.5.8. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2462"},{"id":"ref-for-sec-well-known-symbols\u2463"},{"id":"ref-for-sec-well-known-symbols\u2464"}],"title":"2.5.9. Asynchronously iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2465"}],"title":"2.5.10. Maplike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2466"}],"title":"2.5.11. Setlike declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2467"}],"title":"3. ECMAScript binding"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2468"}],"title":"3.2.21. Sequences \u2014 sequence<T>"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2460\u2460"}],"title":"3.2.24. Union types"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2461"}],"title":"3.3.13. [Unscopable]"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2462"},{"id":"ref-for-sec-well-known-symbols\u2460\u2463"}],"title":"3.6. Overload resolution algorithm"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2464"},{"id":"ref-for-sec-well-known-symbols\u2460\u2465"}],"title":"3.7.3. Interface prototype object"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2460\u2466"},{"id":"ref-for-sec-well-known-symbols\u2460\u2467"},{"id":"ref-for-sec-well-known-symbols\u2460\u2468"}],"title":"3.7.8.1. @@iterator"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u24ea"},{"id":"ref-for-sec-well-known-symbols\u2461\u2460"},{"id":"ref-for-sec-well-known-symbols\u2461\u2461"}],"title":"3.7.9. Iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2462"},{"id":"ref-for-sec-well-known-symbols\u2461\u2463"},{"id":"ref-for-sec-well-known-symbols\u2461\u2464"},{"id":"ref-for-sec-well-known-symbols\u2461\u2465"}],"title":"3.7.10. Asynchronous iterable declarations"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2466"}],"title":"3.7.11.2. entries"},{"refs":[{"id":"ref-for-sec-well-known-symbols\u2461\u2467"}],"title":"3.7.12.2. values"}],"url":"https://tc39.github.io/ecma262/#sec-well-known-symbols"}, "d48e7b62": {"dfnID":"d48e7b62","dfnText":"PerformPromiseThen","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-performpromisethen"},{"id":"ref-for-sec-performpromisethen\u2460"}],"title":"3.2.23.1. Creating and manipulating Promises"},{"refs":[{"id":"ref-for-sec-performpromisethen\u2461"},{"id":"ref-for-sec-performpromisethen\u2462"},{"id":"ref-for-sec-performpromisethen\u2463"},{"id":"ref-for-sec-performpromisethen\u2464"}],"title":"3.7.10.2. Asynchronous iterator prototype object"}],"url":"https://tc39.github.io/ecma262/#sec-performpromisethen"}, "d5ac3b38": {"dfnID":"d5ac3b38","dfnText":"clean up after running a callback","external":true,"refSections":[{"refs":[{"id":"ref-for-clean-up-after-running-a-callback"}],"title":"3.11. Callback interfaces"},{"refs":[{"id":"ref-for-clean-up-after-running-a-callback\u2460"},{"id":"ref-for-clean-up-after-running-a-callback\u2461"}],"title":"3.12. Invoking callback functions"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#clean-up-after-running-a-callback"}, "d5bd3770": {"dfnID":"d5bd3770","dfnText":"ToString","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-tostring"},{"id":"ref-for-sec-tostring\u2460"}],"title":"3. ECMAScript binding"},{"refs":[{"id":"ref-for-sec-tostring\u2461"}],"title":"3.2.10. DOMString"},{"refs":[{"id":"ref-for-sec-tostring\u2462"}],"title":"3.2.11. ByteString"},{"refs":[{"id":"ref-for-sec-tostring\u2463"}],"title":"3.2.18. Enumeration types"},{"refs":[{"id":"ref-for-sec-tostring\u2464"}],"title":"3.2.21. Sequences \u2014 sequence<T>"},{"refs":[{"id":"ref-for-sec-tostring\u2465"}],"title":"3.7.6. Attributes"},{"refs":[{"id":"ref-for-sec-tostring\u2466"}],"title":"3.9.6. [[OwnPropertyKeys]]"},{"refs":[{"id":"ref-for-sec-tostring\u2467"}],"title":"3.10.6. ownKeys"}],"url":"https://tc39.github.io/ecma262/#sec-tostring"}, @@ -15473,7 +15481,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "domexception-name": {"dfnID":"domexception-name","dfnText":"name","external":false,"refSections":[{"refs":[{"id":"ref-for-domexception-name"},{"id":"ref-for-domexception-name\u2460"},{"id":"ref-for-domexception-name\u2461"},{"id":"ref-for-domexception-name\u2462"},{"id":"ref-for-domexception-name\u2463"}],"title":"4.3. DOMException"}],"url":"#domexception-name"}, "e0349206": {"dfnID":"e0349206","dfnText":"OrdinarySetWithOwnDescriptor","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-ordinarysetwithowndescriptor"}],"title":"3.9.2. [[Set]]"}],"url":"https://tc39.github.io/ecma262/#sec-ordinarysetwithowndescriptor"}, "e08958d5": {"dfnID":"e08958d5","dfnText":"OrdinaryGetOwnProperty","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-ordinarygetownproperty"}],"title":"3.7.4.1. [[GetOwnProperty]]"},{"refs":[{"id":"ref-for-sec-ordinarygetownproperty\u2460"}],"title":"3.9.7. Abstract operations"}],"url":"https://tc39.github.io/ecma262/#sec-ordinarygetownproperty"}, -"e0e026a8": {"dfnID":"e0e026a8","dfnText":"SharedArrayBuffer","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-sharedarraybuffer-objects"}],"title":"3.2.25. Buffer source types"},{"refs":[{"id":"ref-for-sec-sharedarraybuffer-objects\u2460"},{"id":"ref-for-sec-sharedarraybuffer-objects\u2461"}],"title":"3.3.1. [AllowShared]"}],"url":"https://tc39.github.io/ecma262/#sec-sharedarraybuffer-objects"}, +"e0e026a8": {"dfnID":"e0e026a8","dfnText":"SharedArrayBuffer","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-sharedarraybuffer-objects"}],"title":"3.2.25. Buffer source types"},{"refs":[{"id":"ref-for-sec-sharedarraybuffer-objects\u2460"},{"id":"ref-for-sec-sharedarraybuffer-objects\u2461"}],"title":"3.3.1. [AllowShared]"},{"refs":[{"id":"ref-for-sec-sharedarraybuffer-objects\u2462"}],"title":"8. Privacy and Security Considerations"}],"url":"https://tc39.github.io/ecma262/#sec-sharedarraybuffer-objects"}, "e28ccd60": {"dfnID":"e28ccd60","dfnText":"concatenation","external":true,"refSections":[{"refs":[{"id":"ref-for-string-concatenate"}],"title":"2.2. Interfaces"}],"url":"https://infra.spec.whatwg.org/#string-concatenate"}, "e423907c": {"dfnID":"e423907c","dfnText":"internal slot (for ordinary object)","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-ordinary-object-internal-methods-and-internal-slots"},{"id":"ref-for-sec-ordinary-object-internal-methods-and-internal-slots\u2460"},{"id":"ref-for-sec-ordinary-object-internal-methods-and-internal-slots\u2461"}],"title":"3. ECMAScript binding"}],"url":"https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots"}, "e5ea84f2": {"dfnID":"e5ea84f2","dfnText":"intersection","external":true,"refSections":[{"refs":[{"id":"ref-for-set-intersection"},{"id":"ref-for-set-intersection\u2460"},{"id":"ref-for-set-intersection\u2461"},{"id":"ref-for-set-intersection\u2462"}],"title":"3.3.6. [Exposed]"}],"url":"https://infra.spec.whatwg.org/#set-intersection"}, @@ -16566,6 +16574,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://tc39.github.io/ecma262/#sec-topropertydescriptor": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"ToPropertyDescriptor","type":"abstract-op","url":"https://tc39.github.io/ecma262/#sec-topropertydescriptor"}, "https://tc39.github.io/ecma262/#sec-tostring": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"ToString","type":"abstract-op","url":"https://tc39.github.io/ecma262/#sec-tostring"}, "https://tc39.github.io/ecma262/#sec-touint32": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"ToUint32","type":"abstract-op","url":"https://tc39.github.io/ecma262/#sec-touint32"}, +"https://tc39.github.io/ecma262/#sec-well-known-symbols": {"export":true,"for_":["ECMAScript"],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"@@iterator","type":"const","url":"https://tc39.github.io/ecma262/#sec-well-known-symbols"}, "https://webidl.spec.whatwg.org/#idl-any": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"any","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-any"}, }; diff --git a/tests/github/immersive-web/WebXR-WebGPU-Binding/index.html b/tests/github/immersive-web/WebXR-WebGPU-Binding/index.html index 6c95fb0e9a..0c8a56f01b 100644 --- a/tests/github/immersive-web/WebXR-WebGPU-Binding/index.html +++ b/tests/github/immersive-web/WebXR-WebGPU-Binding/index.html @@ -5,7 +5,6 @@ <title>WebXR/WebGPU Binding Module - Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webxr-webgpu-binding-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -490,7 +489,7 @@ <h1 class="p-name no-ref" id="title">WebXR/WebGPU Binding Module - Level 1</h1> <p>For additional context on the use of this API please reference the <a href="https://github.com/immersive-web/webxr-webgpu-binding/blob/master/explainer.md">WebXR/WebGPU Binding Module Explainer</a>.</p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -509,12 +508,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -568,20 +567,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/immersive-web/anchors/index.html b/tests/github/immersive-web/anchors/index.html index 50271e5d22..33c8425b3a 100644 --- a/tests/github/immersive-web/anchors/index.html +++ b/tests/github/immersive-web/anchors/index.html @@ -5,8 +5,8 @@ <title>WebXR Anchors Module</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/anchors/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -806,7 +806,7 @@ <h1 class="p-name no-ref" id="title">WebXR Anchors Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -850,7 +850,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1114,20 +1113,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/immersive-web/depth-sensing/index.html b/tests/github/immersive-web/depth-sensing/index.html index 6cba6ee9a5..f5f1f03ef9 100644 --- a/tests/github/immersive-web/depth-sensing/index.html +++ b/tests/github/immersive-web/depth-sensing/index.html @@ -5,8 +5,8 @@ <title>WebXR Depth Sensing Module</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/depth-sensing/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -806,7 +806,7 @@ <h1 class="p-name no-ref" id="title">WebXR Depth Sensing Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -852,7 +852,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1359,20 +1358,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/immersive-web/detached-elements/index.html b/tests/github/immersive-web/detached-elements/index.html index 35dd8e866a..dc1aad959a 100644 --- a/tests/github/immersive-web/detached-elements/index.html +++ b/tests/github/immersive-web/detached-elements/index.html @@ -5,8 +5,8 @@ <title>WebXR/Detached Elements Module - Level 1</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/detached-elements/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <link href="favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"> @@ -488,7 +488,7 @@ <h1 class="p-name no-ref" id="title">WebXR/Detached Elements Module - Level 1</h <p>For additional context on the use of this API please reference the <a href="https://github.com/immersive-web/detached-elements/blob/master/explainer.md">WebXR/Detached Elements Module Explainer</a>.</p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -508,7 +508,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -547,20 +546,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/immersive-web/dom-overlays/index.html b/tests/github/immersive-web/dom-overlays/index.html index 54f6e90cbc..d77faf7b77 100644 --- a/tests/github/immersive-web/dom-overlays/index.html +++ b/tests/github/immersive-web/dom-overlays/index.html @@ -5,7 +5,6 @@ <title>WebXR DOM Overlays Module</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/dom-overlays/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -997,7 +996,7 @@ <h1 class="p-name no-ref" id="title">WebXR DOM Overlays Module</h1> <p>For additional context on the use of this API please reference the <a href="https://github.com/immersive-web/dom-overlays/blob/master/explainer.md">WebXR DOM Overlays Module Explainer</a>.</p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1016,12 +1015,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1110,7 +1109,7 @@ <h3 class="heading settled" data-level="2.2" id="css-pseudo-class"><span class=" <p>The <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element①">overlay element</a> is a <a data-link-type="dfn" href="https://drafts.fxtf.org/filter-effects-2/#backdrop-root" id="ref-for-backdrop-root">backdrop root</a>.</p> <p class="note" role="note"><span class="marker">NOTE:</span> Backdrop filter effects on the DOM overlay element or its descendants do not modify the AR camera image (if applicable) or the rendered content drawn to the immersive session’s <code class="idl"><a data-link-type="idl" href="https://immersive-web.github.io/webxr/#xrwebgllayer" id="ref-for-xrwebgllayer">XRWebGLLayer</a></code>.</p> <p>The stacking contexts for ancestors of the overlay element, if any, do not paint to the immersive session’s display.</p> - <p class="note" role="note"><span class="marker">NOTE:</span> The <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element②">overlay element</a> itself is a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a> due to `position: fixed` styling.</p> + <p class="note" role="note"><span class="marker">NOTE:</span> The <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element②">overlay element</a> itself is a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a> due to `position: fixed` styling.</p> <p class="note" role="note"><span class="marker">NOTE:</span> on a multi-display system, the UA MAY paint and draw stacking contexts for ancestors or sibling trees of the overlay element on a separate display such as a desktop monitor.</p> <h3 class="heading settled" data-level="2.3" id="ua-style-sheet-defaults"><span class="secno">2.3. </span><span class="content">User-agent level style sheet defaults</span><a class="self-link" href="#ua-style-sheet-defaults"></a></h3> <p>The user-agent style sheet defaults for the <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element③">overlay element</a> are as follows:</p> @@ -1141,13 +1140,13 @@ <h3 class="heading settled" data-level="2.3" id="ua-style-sheet-defaults"><span object-fit: contain<c- p>;</c-> <c- p>}</c-> </pre> - <p class="note" role="note"><span class="marker">NOTE:</span> This is based on <a href="https://fullscreen.spec.whatwg.org/#user-agent-level-style-sheet-defaults"><cite>Fullscreen API</cite> § 5.4 User-agent level style sheet defaults</a>, with additional styling to make the overlay element’s background transparent. The styling for <a data-link-type="dfn" href="#xr-overlay" id="ref-for-xr-overlay">:xr-overlay</a> does not explicitly depend on the Fullscreen API’s pseudoclass or styling so that user agents have the flexibility to implement it independently of the Fullscreen API.</p> + <p class="note" role="note"><span class="marker">NOTE:</span> This is based on <a href="https://fullscreen.spec.whatwg.org/#user-agent-level-style-sheet-defaults"><cite>Fullscreen API</cite> § 5.2 User-agent level style sheet defaults</a>, with additional styling to make the overlay element’s background transparent. The styling for <a data-link-type="dfn" href="#xr-overlay" id="ref-for-xr-overlay">:xr-overlay</a> does not explicitly depend on the Fullscreen API’s pseudoclass or styling so that user agents have the flexibility to implement it independently of the Fullscreen API.</p> <p class="note" role="note"><span class="marker">NOTE:</span> The Fullscreen API does not currently specify the `contain: paint` rule, though this matches typical UA behavior and is planned to be added in a future revision of that specification.</p> <p class="note" role="note"><span class="marker">NOTE:</span> Applications are encouraged to use the <a data-link-type="dfn" href="#xr-overlay" id="ref-for-xr-overlay①">:xr-overlay</a> pseudo-class for conditionally styling UI elements during the session, including controlling visibility of interface elements.</p> <h3 class="heading settled" data-level="2.4" id="fullscreen-api-integration"><span class="secno">2.4. </span><span class="content">Fullscreen API integration</span><a class="self-link" href="#fullscreen-api-integration"></a></h3> <p>The UA MAY implement DOM Overlay as a special case of the <a data-link-type="biblio" href="#biblio-fullscreen" title="Fullscreen API Standard">[FULLSCREEN]</a> API. In this case, the UA MUST prevent changes to the active fullscreen element, rejecting <code class="idl"><a data-link-type="idl" href="https://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen" id="ref-for-dom-element-requestfullscreen">requestFullscreen</a></code> requests for the duration of the immersive session.</p> <p class="note" role="note"><span class="marker">NOTE:</span> The DOM Overlay API requires specifying the overlay element at session start, and does not provide a mechanism to change the active overlay element during the session. Applications would behave inconsistently across platforms if they could use the Fullscreen API to indirectly change the active overlay element.</p> - <p>When DOM Overlay is implemented through the Fullscreen API, the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#root-element" id="ref-for-root-element">root element</a> <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext①">stacking context</a> does not paint to the immersive display. Only the stacking contexts for the elements in the <a data-link-type="dfn" href="https://fullscreen.spec.whatwg.org/#top-layer" id="ref-for-top-layer">top layer</a>, including the <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element④">overlay element</a>, paint to the immersive display.</p> + <p>When DOM Overlay is implemented through the Fullscreen API, the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#root-element" id="ref-for-root-element">root element</a> <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43①">stacking context</a> does not paint to the immersive display. Only the stacking contexts for the elements in the <a data-link-type="dfn" href="https://drafts.csswg.org/css-position-4/#document-top-layer" id="ref-for-document-top-layer">top layer</a>, including the <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element④">overlay element</a>, paint to the immersive display.</p> <p class="note" role="note"><span class="marker">NOTE:</span> By default, fullscreen mode uses an opaque black backdrop. The modified paint rules ensure that this backdrop does not need to be drawn, and that ancestors of the overlay element or sibling trees aren’t visible through the transparent overlay element.</p> <p class="note" role="note"><span class="marker">NOTE:</span> Allowing implementation based on the Fullscreen API is primarily intended for single-display systems where the rest of the page is not visible during the immersive session. A multi-display system could technically use the Fullscreen API for the overlay element while showing the rest of the page on a separate display such as a desktop monitor, and in that case the UA MAY paint and draw stacking contexts for ancestors or sibling trees of the overlay element on the separate display.</p> <p>Alternatively, the UA MAY implement DOM Overlay independently of the <a data-link-type="biblio" href="#biblio-fullscreen" title="Fullscreen API Standard">[FULLSCREEN]</a> API. In this case, the <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element⑤">overlay element</a> MUST still match the <a data-link-type="dfn" href="#xr-overlay" id="ref-for-xr-overlay②">:xr-overlay</a> pseudoclass and MUST be styled in the immersive view using the <a href="#ua-style-sheet-defaults">§ 2.3 User-agent level style sheet defaults</a> for this pseudoclass. The UA MAY separately support using the fullscreen API for elements outside the <a data-link-type="dfn" href="#overlay-element" id="ref-for-overlay-element⑥">overlay element</a>, but this MUST NOT have any effect on how the DOM overlay content is displayed.</p> @@ -1226,7 +1225,7 @@ <h2 class="heading settled" data-level="4" id="initialization"><span class="secn </pre> </div> <p>While active, the DOM overlay element is automatically resized to fill the dimensions of the UA-provided DOM overlay rectangle. Its background color is automatically styled as transparent for the duration of the session.</p> - <p class="note" role="note"><span class="marker">NOTE:</span> A UA MAY use the <a href="https://fullscreen.spec.whatwg.org/#user-agent-level-style-sheet-defaults"><cite>Fullscreen API</cite> § 5.4 User-agent level style sheet defaults</a> to style the DOM overlay element, with an additional rule containing <code>background-color: rgba(0,0,0,0) !important;</code> to set the background transparent.</p> + <p class="note" role="note"><span class="marker">NOTE:</span> A UA MAY use the <a href="https://fullscreen.spec.whatwg.org/#user-agent-level-style-sheet-defaults"><cite>Fullscreen API</cite> § 5.2 User-agent level style sheet defaults</a> to style the DOM overlay element, with an additional rule containing <code>background-color: rgba(0,0,0,0) !important;</code> to set the background transparent.</p> <p>Once the session is active, the <code class="idl"><a data-link-type="idl" href="#dom-xrsession-domoverlaystate" id="ref-for-dom-xrsession-domoverlaystate③">domOverlayState</a></code> attribute provides information about the DOM overlay.</p> <pre class="idl highlight def"><c- b>enum</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="enum" data-export id="enumdef-xrdomoverlaytype"><code><c- g>XRDOMOverlayType</c-></code></dfn> { <a class="idl-code" data-link-type="enum-value" href="#dom-xrdomoverlaytype-screen" id="ref-for-dom-xrdomoverlaytype-screen"><c- s>"screen"</c-></a>, @@ -1301,20 +1300,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1346,6 +1347,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="cc682c89">root element</span> </ul> + <li> + <a data-link-type="biblio">[CSS-POSITION-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="8f59bb58">top layer</span> + </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[DOM]</a> defines the following terms: <ul> @@ -1363,7 +1374,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[FULLSCREEN]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="bcdb6841">requestFullscreen()</span> - <li><span class="dfn-paneled" id="a258638a">top layer</span> </ul> <li> <a data-link-type="biblio">[HTML]</a> defines the following terms: @@ -1381,11 +1391,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="628c6566">pseudo-class</span> </ul> - <li> - <a data-link-type="biblio">[SVG2]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> - </ul> <li> <a data-link-type="biblio">[UIEVENTS]</a> defines the following terms: <ul> @@ -1421,11 +1426,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-csp3">[CSP3] <dd>Mike West; Antonio Sartori. <a href="https://w3c.github.io/webappsec-csp/"><cite>Content Security Policy Level 3</cite></a>. URL: <a href="https://w3c.github.io/webappsec-csp/">https://w3c.github.io/webappsec-csp/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dt id="biblio-css-position-4">[CSS-POSITION-4] + <dd><a href="https://drafts.csswg.org/css-position-4/"><cite>CSS Positioned Layout Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-position-4/">https://drafts.csswg.org/css-position-4/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-filter-effects-2">[FILTER-EFFECTS-2] - <dd>Filter Effects Module Level 2 URL: <a href="https://drafts.fxtf.org/filter-effects-2/">https://drafts.fxtf.org/filter-effects-2/</a> + <dd><a href="https://drafts.fxtf.org/filter-effects-2/"><cite>Filter Effects Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.fxtf.org/filter-effects-2/">https://drafts.fxtf.org/filter-effects-2/</a> <dt id="biblio-fullscreen">[FULLSCREEN] <dd>Philip Jägenstedt. <a href="https://fullscreen.spec.whatwg.org/"><cite>Fullscreen API Standard</cite></a>. Living Standard. URL: <a href="https://fullscreen.spec.whatwg.org/">https://fullscreen.spec.whatwg.org/</a> <dt id="biblio-html">[HTML] @@ -1434,8 +1443,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> - <dt id="biblio-svg2">[SVG2] - <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> <dt id="biblio-uievents">[UIEVENTS] <dd>Gary Kacmarcik; Travis Leithead. <a href="https://w3c.github.io/uievents/"><cite>UI Events</cite></a>. URL: <a href="https://w3c.github.io/uievents/">https://w3c.github.io/uievents/</a> <dt id="biblio-webidl">[WEBIDL] @@ -1710,7 +1717,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "296f3551": {"dfnID":"296f3551","dfnText":"Element","external":true,"refSections":[{"refs":[{"id":"ref-for-element"}],"title":"4. Initialization"}],"url":"https://dom.spec.whatwg.org/#element"}, "3182eb71": {"dfnID":"3182eb71","dfnText":"NotSupportedError","external":true,"refSections":[{"refs":[{"id":"ref-for-notsupportederror"}],"title":"3.1. XRSessionInit"}],"url":"https://webidl.spec.whatwg.org/#notsupportederror"}, "31c41a75": {"dfnID":"31c41a75","dfnText":"backdrop root","external":true,"refSections":[{"refs":[{"id":"ref-for-backdrop-root"}],"title":"2.2. CSS pseudo-class"}],"url":"https://drafts.fxtf.org/filter-effects-2/#backdrop-root"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"2.2. CSS pseudo-class"},{"refs":[{"id":"ref-for-TermStackingContext\u2460"}],"title":"2.4. Fullscreen API integration"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "53ce93e0": {"dfnID":"53ce93e0","dfnText":"targetRaySpace","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-xrinputsource-targetrayspace"},{"id":"ref-for-dom-xrinputsource-targetrayspace\u2460"}],"title":"2.1. onbeforexrselect"},{"refs":[{"id":"ref-for-dom-xrinputsource-targetrayspace\u2461"},{"id":"ref-for-dom-xrinputsource-targetrayspace\u2462"}],"title":"3.3. XRInputSource"},{"refs":[{"id":"ref-for-dom-xrinputsource-targetrayspace\u2463"}],"title":"5. Event handling for cross-origin content"}],"url":"https://immersive-web.github.io/webxr/#dom-xrinputsource-targetrayspace"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"}],"title":"3.2. XRSession"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "5fd23811": {"dfnID":"5fd23811","dfnText":"fire an event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event-fire"}],"title":"3.3. XRInputSource"}],"url":"https://dom.spec.whatwg.org/#concept-event-fire"}, @@ -1718,10 +1724,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "6998ead7": {"dfnID":"6998ead7","dfnText":"rendering opportunity","external":true,"refSections":[{"refs":[{"id":"ref-for-rendering-opportunity"}],"title":"3.2. XRSession"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#rendering-opportunity"}, "762ce945": {"dfnID":"762ce945","dfnText":"GlobalEventHandlers","external":true,"refSections":[{"refs":[{"id":"ref-for-globaleventhandlers"}],"title":"2. HTML API Integration"},{"refs":[{"id":"ref-for-globaleventhandlers\u2460"}],"title":"2.1. onbeforexrselect"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers"}, "881a9e6b": {"dfnID":"881a9e6b","dfnText":"XRSessionInit","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-xrsessioninit"}],"title":"3. WebXR Device API Integration"},{"refs":[{"id":"ref-for-dictdef-xrsessioninit\u2460"},{"id":"ref-for-dictdef-xrsessioninit\u2461"}],"title":"3.1. XRSessionInit"}],"url":"https://immersive-web.github.io/webxr/#dictdef-xrsessioninit"}, +"8f59bb58": {"dfnID":"8f59bb58","dfnText":"top layer","external":true,"refSections":[{"refs":[{"id":"ref-for-document-top-layer"}],"title":"2.4. Fullscreen API integration"}],"url":"https://drafts.csswg.org/css-position-4/#document-top-layer"}, "9a517a7d": {"dfnID":"9a517a7d","dfnText":"queue a task","external":true,"refSections":[{"refs":[{"id":"ref-for-queue-a-task"}],"title":"3.3. XRInputSource"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task"}, "9db85b4a": {"dfnID":"9db85b4a","dfnText":"selectend","external":true,"refSections":[{"refs":[{"id":"ref-for-eventdef-xrsession-selectend"}],"title":"2.1. onbeforexrselect"},{"refs":[{"id":"ref-for-eventdef-xrsession-selectend\u2460"}],"title":"3.3. XRInputSource"},{"refs":[{"id":"ref-for-eventdef-xrsession-selectend\u2461"}],"title":"5. Event handling for cross-origin content"}],"url":"https://immersive-web.github.io/webxr/#eventdef-xrsession-selectend"}, -"a258638a": {"dfnID":"a258638a","dfnText":"top layer","external":true,"refSections":[{"refs":[{"id":"ref-for-top-layer"}],"title":"2.4. Fullscreen API integration"}],"url":"https://fullscreen.spec.whatwg.org/#top-layer"}, "a42ed5f1": {"dfnID":"a42ed5f1","dfnText":"optionalFeatures","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-xrsessioninit-optionalfeatures"}],"title":"3.1. XRSessionInit"}],"url":"https://immersive-web.github.io/webxr/#dom-xrsessioninit-optionalfeatures"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"2.2. CSS pseudo-class"},{"refs":[{"id":"ref-for-x43\u2460"}],"title":"2.4. Fullscreen API integration"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "b23556e5": {"dfnID":"b23556e5","dfnText":"XRSession","external":true,"refSections":[{"refs":[{"id":"ref-for-xrsession"}],"title":"3. WebXR Device API Integration"},{"refs":[{"id":"ref-for-xrsession\u2460"}],"title":"3.2. XRSession"}],"url":"https://immersive-web.github.io/webxr/#xrsession"}, "b9bda52b": {"dfnID":"b9bda52b","dfnText":"selectstart","external":true,"refSections":[{"refs":[{"id":"ref-for-eventdef-xrsession-selectstart"},{"id":"ref-for-eventdef-xrsession-selectstart\u2460"}],"title":"2.1. onbeforexrselect"},{"refs":[{"id":"ref-for-eventdef-xrsession-selectstart\u2461"}],"title":"3.3. XRInputSource"}],"url":"https://immersive-web.github.io/webxr/#eventdef-xrsession-selectstart"}, "bcdb6841": {"dfnID":"bcdb6841","dfnText":"requestFullscreen()","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-element-requestfullscreen"}],"title":"2.4. Fullscreen API integration"}],"url":"https://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen"}, @@ -2215,10 +2222,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://dom.spec.whatwg.org/#dom-event-target": {"export":true,"for_":["Event"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"target","type":"attribute","url":"https://dom.spec.whatwg.org/#dom-event-target"}, "https://dom.spec.whatwg.org/#element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Element","type":"interface","url":"https://dom.spec.whatwg.org/#element"}, "https://drafts.csswg.org/css-display-4/#root-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"root element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#root-element"}, +"https://drafts.csswg.org/css-position-4/#document-top-layer": {"export":true,"for_":["Document"],"level":"4","normative":true,"shortname":"css-position","spec":"css-position-4","status":"current","text":"top layer","type":"dfn","url":"https://drafts.csswg.org/css-position-4/#document-top-layer"}, "https://drafts.csswg.org/selectors-4/#pseudo-class": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"pseudo-class","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#pseudo-class"}, "https://drafts.fxtf.org/filter-effects-2/#backdrop-root": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"filter-effects","spec":"filter-effects-2","status":"anchor-block","text":"backdrop root","type":"dfn","url":"https://drafts.fxtf.org/filter-effects-2/#backdrop-root"}, "https://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen": {"export":true,"for_":["Element"],"level":"1","normative":true,"shortname":"fullscreen","spec":"fullscreen","status":"current","text":"requestFullscreen()","type":"method","url":"https://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen"}, -"https://fullscreen.spec.whatwg.org/#top-layer": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fullscreen","spec":"fullscreen","status":"current","text":"top layer","type":"dfn","url":"https://fullscreen.spec.whatwg.org/#top-layer"}, "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmliframeelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLIFrameElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmliframeelement"}, "https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#dom-animationframeprovider-requestanimationframe": {"export":true,"for_":["Window"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"requestAnimationFrame(callback)","type":"method","url":"https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#dom-animationframeprovider-requestanimationframe"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, @@ -2240,9 +2247,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://immersive-web.github.io/webxr/#xrspace": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webxr","spec":"webxr","status":"current","text":"XRSpace","type":"interface","url":"https://immersive-web.github.io/webxr/#xrspace"}, "https://immersive-web.github.io/webxr/#xrviewport": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webxr","spec":"webxr","status":"current","text":"XRViewport","type":"interface","url":"https://immersive-web.github.io/webxr/#xrviewport"}, "https://immersive-web.github.io/webxr/#xrwebgllayer": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webxr","spec":"webxr","status":"current","text":"XRWebGLLayer","type":"interface","url":"https://immersive-web.github.io/webxr/#xrwebgllayer"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "https://w3c.github.io/uievents/#topmost-event-target": {"export":true,"for_":[],"level":"","normative":true,"shortname":"ui-events","spec":"ui-events","status":"anchor-block","text":"topmost event target","type":"dfn","url":"https://w3c.github.io/uievents/#topmost-event-target"}, "https://webidl.spec.whatwg.org/#notsupportederror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"NotSupportedError","type":"exception","url":"https://webidl.spec.whatwg.org/#notsupportederror"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/immersive-web/hit-test/index.html b/tests/github/immersive-web/hit-test/index.html index 0bd128b20b..fd8c0e17be 100644 --- a/tests/github/immersive-web/hit-test/index.html +++ b/tests/github/immersive-web/hit-test/index.html @@ -5,7 +5,6 @@ <title>WebXR Hit Test Module</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/hit-test/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -1032,7 +1031,7 @@ <h1 class="p-name no-ref" id="title">WebXR Hit Test Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1051,12 +1050,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1725,20 +1724,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/immersive-web/layers/webxrlayers-1.console.txt b/tests/github/immersive-web/layers/webxrlayers-1.console.txt index e2280ecfd3..e2642e14d1 100644 --- a/tests/github/immersive-web/layers/webxrlayers-1.console.txt +++ b/tests/github/immersive-web/layers/webxrlayers-1.console.txt @@ -12,6 +12,12 @@ WARNING: Image doesn't exist, so I couldn't determine its width and height: 'ima WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/equirect-layer.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/equirect.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/cube-layer.jpg' +LINK ERROR: Multiple possible '"local"' idl refs. +Arbitrarily chose https://immersive-web.github.io/webxr/#dom-xrreferencespacetype-local +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:webxr; type:enum-value; text:"local" +spec:private-network-access; type:enum-value; text:"local" +{{"local"}} LINE ~1095: No 'dfn' refs found for 'recommended webgl texture resolution'. [=recommended WebGL texture resolution=] LINE ~1110: No 'dfn' refs found for 'recommended webgl texture resolution'. diff --git a/tests/github/immersive-web/layers/webxrlayers-1.html b/tests/github/immersive-web/layers/webxrlayers-1.html index 6876de833b..d04457d8b6 100644 --- a/tests/github/immersive-web/layers/webxrlayers-1.html +++ b/tests/github/immersive-web/layers/webxrlayers-1.html @@ -5,7 +5,6 @@ <title>WebXR Layers API Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webxrlayers-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -810,7 +809,7 @@ <h1 class="p-name no-ref" id="title">WebXR Layers API Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -829,12 +828,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2786,20 +2785,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3278,7 +3279,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing-1">[COMPOSITING-1] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-dom">[DOM] diff --git a/tests/github/immersive-web/lighting-estimation/index.html b/tests/github/immersive-web/lighting-estimation/index.html index ae2fa228b0..ef8fdcb4aa 100644 --- a/tests/github/immersive-web/lighting-estimation/index.html +++ b/tests/github/immersive-web/lighting-estimation/index.html @@ -3,9 +3,8 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>WebXR Lighting Estimation API Level 1</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <link href="favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"> @@ -806,7 +805,7 @@ <h1 class="p-name no-ref" id="title">WebXR Lighting Estimation API Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -825,12 +824,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1120,20 +1119,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/immersive-web/real-world-geometry/plane-detection.html b/tests/github/immersive-web/real-world-geometry/plane-detection.html index 103e37311c..285a46cc08 100644 --- a/tests/github/immersive-web/real-world-geometry/plane-detection.html +++ b/tests/github/immersive-web/real-world-geometry/plane-detection.html @@ -5,8 +5,8 @@ <title>WebXR Plane Detection Module</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://github.com/immersive-web/real-world-geometry/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -806,7 +806,7 @@ <h1 class="p-name no-ref" id="title">WebXR Plane Detection Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -848,7 +848,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1075,20 +1074,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.console.txt b/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.console.txt index 3da4c40d78..9b80b249e0 100644 --- a/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.console.txt +++ b/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.console.txt @@ -1,4 +1,4 @@ -WARNING: You used Status: DREAM for a W3C document. Consider UD instead. +WARNING: You used Status:DREAM for a W3C document. Consider Status:UD instead. LINE 259: Multiple elements have the same ID 'dom-xrframe-metadata'. Deduping, but this ID may not be stable across revisions. LINK ERROR: No 'idl-name' refs found for 'XRFeatureInit'. diff --git a/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.html b/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.html index e219298687..3b7138ae9a 100644 --- a/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.html +++ b/tests/github/immersive-web/real-world-geometry/webxrmeshing-1.html @@ -1,1493 +1,12 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>WebXR Meshing API Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> -<style data-fill-with="stylesheet">/****************************************************************************** - * Style sheet for the W3C specifications * - * - * Special classes handled by this style sheet include: - * - * Indices - * - .toc for the Table of Contents (<ol class="toc">) - * + <span class="secno"> for the section numbers - * - #toc for the Table of Contents (<nav id="toc">) - * - ul.index for Indices (<a href="#ref">term</a><span>, in § N.M</span>) - * - table.index for Index Tables (e.g. for properties or elements) - * - * Structural Markup - * - table.data for general data tables - * -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results ! - * -> use <table class='complex data'> for extra-complex tables - * -> use <td class='long'> for paragraph-length cell content - * -> use <td class='pre'> when manual line breaks/indentation would help readability - * - dl.switch for switch statements - * - ol.algorithm for algorithms (helps to visualize nesting) - * - .figure and .caption (HTML4) and figure and figcaption (HTML5) - * -> .sidefigure for right-floated figures - * - ins/del - * -> ins/del.c### for candidate and proposed changes (amendments) - * - * Code - * - pre and code - * - * Special Sections - * - .note for informative notes (div, p, span, aside, details) - * - .example for informative examples (div, p, pre, span) - * - .issue for issues (div, p, span) - * - .advisement for loud normative statements (div, p, strong) - * - .annoying-warning for spec obsoletion notices (div, aside, details) - * - .correction for "candidate corrections" (div, aside, details, section) - * - .addition for "candidate additions" (div, aside, details, section) - * - .correction.proposed for "proposed corrections" (div, aside, details, section) - * - .addition.proposed for "proposed additions" (div, aside, details, section) - * - * Definition Boxes - * - pre.def for WebIDL definitions - * - table.def for tables that define other entities (e.g. CSS properties) - * - dl.def for definition lists that define other entitles (e.g. HTML elements) - * - * Numbering - * - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>) - * - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>) - * - ::before styled for CSS-generated issue/example/figure numbers: - * -> Documents wishing to use this only need to add - * figcaption::before, - * .caption::before { content: "Figure " counter(figure) " "; } - * .example::before { content: "Example " counter(example) " "; } - * .issue::before { content: "Issue " counter(issue) " "; } - * - * Header Stuff (ignore, just don't conflict with these classes) - * - .head for the header - * - .copyright for the copyright - * - * Outdated warning for old specs - * - * Miscellaneous - * - .overlarge for things that should be as wide as possible, even if - * that overflows the body text area. This can be used on an item or - * on its container, depending on the effect desired. - * Note that this styling basically doesn't help at all when printing, - * since A4 paper isn't much wider than the max-width here. - * It's better to design things to fit into a narrower measure if possible. - * - * - js-added ToC jump links (see fixup.js) - * - ******************************************************************************/ - -/* color variables included separately for reliability */ - -/******************************************************************************/ -/* Body */ -/******************************************************************************/ - - html { - } - - body { - counter-reset: example figure issue; - - /* Layout */ - max-width: 50em; /* limit line length to 50em for readability */ - margin: 0 auto; /* center text within page */ - padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */ - padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */ - - /* Typography */ - line-height: 1.5; - font-family: sans-serif; - widows: 2; - orphans: 2; - word-wrap: break-word; - overflow-wrap: break-word; - hyphens: auto; - - color: black; - color: var(--text); - background: white top left fixed no-repeat; - background: var(--bg) top left fixed no-repeat; - background-size: 25px auto; - } - - -/******************************************************************************/ -/* Front Matter & Navigation */ -/******************************************************************************/ - -/** Header ********************************************************************/ - - div.head { margin-bottom: 1em; } - div.head hr { border-style: solid; } - - div.head h1 { - font-weight: bold; - margin: 0 0 .1em; - font-size: 220%; - } - - div.head h2 { margin-bottom: 1.5em;} - -/** W3C Logo ******************************************************************/ - - .head .logo { - float: right; - margin: 0.4rem 0 0.2rem .4rem; - } - - .head img[src*="logos/W3C"] { - display: block; - border: solid #1a5e9a; - border: solid var(--logo-bg); - border-width: .65rem .7rem .6rem; - border-radius: .4rem; - background: #1a5e9a; - background: var(--logo-bg); - color: white; - color: var(--logo-text); - font-weight: bold; - } - - .head a:hover > img[src*="logos/W3C"], - .head a:focus > img[src*="logos/W3C"] { - opacity: .8; - } - - .head a:active > img[src*="logos/W3C"] { - background: #c00; - background: var(--logo-active-bg); - border-color: #c00; - border-color: var(--logo-active-bg); - } - - /* see also additional rules in Link Styling section */ - -/** Copyright *****************************************************************/ - - p.copyright, - p.copyright small { font-size: small; } - -/** Back to Top / ToC Toggle **************************************************/ - - @media print { - #toc-nav { - display: none; - } - } - @media not print { - #toc-nav { - position: fixed; - z-index: 3; - bottom: 0; left: 0; - margin: 0; - min-width: 1.33em; - border-top-right-radius: 2rem; - box-shadow: 0 0 2px; - font-size: 1.5em; - } - #toc-nav > a { - display: block; - white-space: nowrap; - - height: 1.33em; - padding: .1em 0.3em; - margin: 0; - - box-shadow: 0 0 2px; - border: none; - border-top-right-radius: 1.33em; - - color: #707070; - color: var(--tocnav-normal-text); - background: white; - background: var(--tocnav-normal-bg); - } - #toc-nav > a:hover, - #toc-nav > a:focus { - color: black; - color: var(--tocnav-hover-text); - background: #f8f8f8; - background: var(--tocnav-hover-bg); - } - #toc-nav > a:active { - color: #c00; - color: var(--tocnav-active-text); - background: white; - background: var(--tocnav-active-bg); - } - - #toc-nav > #toc-jump { - padding-bottom: 2em; - margin-bottom: -1.9em; - } - - /* statusbar gets in the way on keyboard focus; remove once browsers fix */ - #toc-nav > a[href="#toc"]:not(:hover):focus:last-child { - padding-bottom: 1.5rem; - } - - #toc-nav:not(:hover) > a:not(:focus) > span + span { - /* Ideally this uses :focus-within on #toc-nav */ - display: none; - } - #toc-nav > a > span + span { - padding-right: 0.2em; - } - } - -/** ToC Sidebar ***************************************************************/ - - /* Floating sidebar */ - @media screen { - body.toc-sidebar #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - max-width: 80%; - max-width: calc(100% - 2em - 26px); - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body.toc-sidebar #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - body.toc-sidebar #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - /* Hide main scroller when only the ToC is visible anyway */ - @media screen and (max-width: 28em) { - body.toc-sidebar { - overflow: hidden; - } - } - - /* Sidebar with its own space */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body:not(.toc-inline) #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - - body:not(.toc-inline) { - padding-left: 29em; - } - /* See also Overflow section at the bottom */ - - body:not(.toc-inline) #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) { - margin: 0 4em; - } - } - -/******************************************************************************/ -/* Sectioning */ -/******************************************************************************/ - -/** Headings ******************************************************************/ - - h1, h2, h3, h4, h5, h6, dt { - page-break-after: avoid; - page-break-inside: avoid; - font: 100% sans-serif; /* Reset all font styling to clear out UA styles */ - font-family: inherit; /* Inherit the font family. */ - line-height: 1.2; /* Keep wrapped headings compact */ - hyphens: manual; /* Hyphenated headings look weird */ - } - - h2, h3, h4, h5, h6 { - margin-top: 3rem; - } - - h1, h2, h3 { - color: #005A9C; - color: var(--heading-text); - } - - h1 { font-size: 170%; } - h2 { font-size: 140%; } - h3 { font-size: 120%; } - h4 { font-weight: bold; } - h5 { font-style: italic; } - h6 { font-variant: small-caps; } - dt { font-weight: bold; } - -/** Subheadings ***************************************************************/ - - h1 + h2, - #profile-and-date { - /* #profile-and-date is a subtitle in an H2 under the H1 */ - margin-top: 0; - } - h2 + h3, - h3 + h4, - h4 + h5, - h5 + h6 { - margin-top: 1.2em; /* = 1 x line-height */ - } - -/** Section divider ***********************************************************/ - - :not(.head) > :not(.head) + hr { - font-size: 1.5em; - text-align: center; - margin: 1em auto; - height: auto; - color: black; - color: var(--hr-text); - border: transparent solid 0; - background: transparent; - } - :not(.head) > hr::before { - content: "\2727\2003\2003\2727\2003\2003\2727"; - } - -/******************************************************************************/ -/* Paragraphs and Lists */ -/******************************************************************************/ - - p { - margin: 1em 0; - } - - dd > p:first-child, - li > p:first-child { - margin-top: 0; - } - - ul, ol { - margin-left: 0; - padding-left: 2em; - } - - li { - margin: 0.25em 0 0.5em; - padding: 0; - } - - dl dd { - margin: 0 0 .5em 2em; - } - - .head dd + dd { /* compact for header */ - margin-top: -.5em; - } - - /* Style for algorithms */ - ol.algorithm ol:not(.algorithm), - .algorithm > ol ol:not(.algorithm) { - border-left: 0.5em solid #DEF; - border-left: 0.5em solid var(--algo-border); - } - - /* Put nice boxes around each algorithm. */ - [data-algorithm]:not(.heading) { - padding: .5em; - border: thin solid #ddd; - border: thin solid var(--algo-border); - border-radius: .5em; - margin: .5em calc(-0.5em - 1px); - } - [data-algorithm]:not(.heading) > :first-child { - margin-top: 0; - } - [data-algorithm]:not(.heading) > :last-child { - margin-bottom: 0; - } - - /* Style for switch/case <dl>s */ - dl.switch > dd > ol.only, - dl.switch > dd > .only > ol { - margin-left: 0; - } - dl.switch > dd > ol.algorithm, - dl.switch > dd > .algorithm > ol { - margin-left: -2em; - } - dl.switch { - padding-left: 2em; - } - dl.switch > dt { - text-indent: -1.5em; - margin-top: 1em; - } - dl.switch > dt + dt { - margin-top: 0; - } - dl.switch > dt::before { - content: '\21AA'; - padding: 0 0.5em 0 0; - display: inline-block; - width: 1em; - text-align: right; - line-height: 0.5em; - } - -/** Terminology Markup ********************************************************/ - - -/******************************************************************************/ -/* Inline Markup */ -/******************************************************************************/ - -/** Terminology Markup ********************************************************/ - dfn { /* Defining instance */ - font-weight: bolder; - } - a > i { /* Instance of term */ - font-style: normal; - } - dt dfn code, code.idl { - font-size: inherit; - } - dfn var { - font-style: normal; - } - -/** Change Marking ************************************************************/ - - del { - color: #aa0000; - color: var(--del-text); - background: transparent; - background: var(--del-bg); - text-decoration: line-through; - } - ins { - color: #006100; - color: var(--ins-text); - background: transparent; - background: var(--ins-bg); - text-decoration: underline; - } - - /* for amendments (candidate/proposed changes) */ - - .amendment ins, .correction ins, .addition ins, - ins[class^=c] { - text-decoration-style: dotted; - } - .amendment del, .correction del, .addition del, - del[class^=c] { - text-decoration-style: dotted; - } - .amendment.proposed ins, .correction.proposed ins, .addition.proposed ins, - ins[class^=c].proposed { - text-decoration-style: double; - } - .amendment.proposed del, .correction.proposed del, .addition.proposed del, - del[class^=c].proposed { - text-decoration-style: double; - } - -/** Miscellaneous improvements to inline formatting ***************************/ - - sup { - vertical-align: super; - font-size: 80% - } - -/******************************************************************************/ -/* Code */ -/******************************************************************************/ - -/** General monospace/pre rules ***********************************************/ - - pre, code, samp { - font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace; - font-size: .9em; - hyphens: none; - text-transform: none; - text-align: left; - text-align: start; - font-variant: normal; - orphans: 3; - widows: 3; - page-break-before: avoid; - } - pre code, - code code { - font-size: 100%; - } - - pre { - margin-top: 1em; - margin-bottom: 1em; - overflow: auto; - } - -/** Inline Code fragments *****************************************************/ - - /* Do something nice. */ - -/******************************************************************************/ -/* Links */ -/******************************************************************************/ - -/** General Hyperlinks ********************************************************/ - - /* We hyperlink a lot, so make it less intrusive */ - a[href] { - color: #034575; - color: var(--a-normal-text); - text-decoration: underline #707070; - text-decoration: underline var(--a-normal-underline); - text-decoration-skip-ink: none; - } - a:visited { - color: #034575; - color: var(--a-visited-text); - text-decoration-color: #bbb; - text-decoration-color: var(--a-visited-underline); - } - - /* Indicate interaction with the link */ - a[href]:focus, - a[href]:hover { - text-decoration-thickness: 2px; - } - a[href]:active { - color: #c00; - color: var(--a-active-text); - text-decoration-color: #c00; - text-decoration-color: var(--a-active-underline); - } - - /* Backout above styling for W3C logo */ - .head .logo, - .head .logo a { - border: none; - text-decoration: none; - background: transparent; - } - -/******************************************************************************/ -/* Images */ -/******************************************************************************/ - - img { - border-style: none; - } - - img, svg { - /* Intentionally not color-scheme aware. */ - background: white; - } - - /* For autogen numbers, add - .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; } - */ - - figure, .figure, .sidefigure { - page-break-inside: avoid; - text-align: center; - margin: 2.5em 0; - } - .figure img, .sidefigure img, figure img, - .figure object, .sidefigure object, figure object { - max-width: 100%; - margin: auto; - height: auto; - } - .figure pre, .sidefigure pre, figure pre { - text-align: left; - display: table; - margin: 1em auto; - } - .figure table, figure table { - margin: auto; - } - @media screen and (min-width: 20em) { - .sidefigure { - float: right; - width: 50%; - margin: 0 0 0.5em 0.5em; - } - } - .caption, figcaption, caption { - font-style: italic; - font-size: 90%; - } - .caption::before, figcaption::before, figcaption > .marker { - font-weight: bold; - } - .caption, figcaption { - counter-increment: figure; - } - - /* DL list is indented 2em, but figure inside it is not */ - dd > .figure, dd > figure { margin-left: -2em; } - -/******************************************************************************/ -/* Colored Boxes */ -/******************************************************************************/ - - .issue, .note, .example, .assertion, .advisement, blockquote, - .amendment, .correction, .addition { - margin: 1em auto; - padding: .5em; - border: .5em; - border-left-style: solid; - page-break-inside: avoid; - } - span.issue, span.note { - padding: .1em .5em .15em; - border-right-style: solid; - } - - blockquote > :first-child, - .note > p:first-child, - .issue > p:first-child, - .amendment > p:first-child, - .correction > p:first-child, - .addition > p:first-child { - margin-top: 0; - } - blockquote > :last-child, - .note > p:last-child, - .issue > p:last-child, - .amendment > p:last-child, - .correction > p:last-child, - .addition > p:last-child { - margin-bottom: 0; - } - - - .issue::before, .issue > .marker, - .example::before, .example > .marker, - .note::before, .note > .marker, - details.note > summary > .marker, - .amendment::before, .amendment > .marker, - details.amendment > summary > .marker, - .addition::before, .addition > .marker, - addition.amendment > summary > .marker, - .correction::before, .correction > .marker, - correction.amendment > summary > .marker - { - text-transform: uppercase; - padding-right: 1em; - } - - .example::before, .example > .marker { - display: block; - padding-right: 0em; - } - -/** Blockquotes ***************************************************************/ - - blockquote { - border-color: silver; - border-color: var(--blockquote-border); - background: transparent; - background: var(--blockquote-bg); - color: currentcolor; - color: var(--blockquote-text); - } - -/** Open issue ****************************************************************/ - - .issue { - border-color: #e05252; - border-color: var(--issue-border); - background: #fbe9e9; - background: var(--issue-bg); - color: black; - color: var(--issue-text); - counter-increment: issue; - overflow: auto; - } - .issue::before, .issue > .marker { - color: #831616; - color: var(--issueheading-text); - } - /* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers, - or use class="marker" to mark up the issue number in source. */ - -/** Example *******************************************************************/ - - .example { - border-color: #e0cb52; - border-color: var(--example-border); - background: #fcfaee; - background: var(--example-bg); - color: black; - color: var(--example-text); - counter-increment: example; - overflow: auto; - clear: both; - } - .example::before, .example > .marker { - color: #574b0f; - color: var(--exampleheading-text); - } - /* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers, - or use class="marker" to mark up the example number in source. */ - -/** Non-normative Note ********************************************************/ - - .note { - border-color: #52e052; - border-color: var(--note-border); - background: #e9fbe9; - background: var(--note-bg); - color: black; - color: var(--note-text); - overflow: auto; - } - - .note::before, .note > .marker, - details.note > summary { - color: hsl(120, 70%, 30%); - color: var(--noteheading-text); - } - /* Add .note::before { content: "Note "; } for autogen label, - or use class="marker" to mark up the label in source. */ - - details.note[open] > summary { - border-bottom: 1px silver solid; - border-bottom: 1px var(--notesummary-underline) solid; - } - -/** Assertion Box *************************************************************/ - /* for assertions in algorithms */ - - .assertion { - border-color: #AAA; - border-color: var(--assertion-border); - background: #EEE; - background: var(--assertion-bg); - color: black; - color: var(--assertion-text); - } - -/** Advisement Box ************************************************************/ - /* for attention-grabbing normative statements */ - - .advisement { - border-color: orange; - border-color: var(--advisement-border); - border-style: none solid; - background: #fec; - background: var(--advisement-bg); - color: black; - color: var(--advisement-text); - } - strong.advisement { - display: block; - text-align: center; - } - .advisement::before, .advisement > .marker { - color: #b35f00; - color: var(--advisementheading-text); - } - -/** Amendment Box *************************************************************/ - - .amendment, .correction, .addition { - border-color: #330099; - border-color: var(--amendment-border); - background: #F5F0FF; - background: var(--amendment-bg); - color: black; - color: var(--amendment-text); - } - .amendment.proposed, .correction.proposed, .addition.proposed { - border-style: solid; - border-block-width: 0.25em; - } - .amendment::before, .amendment > .marker, - details.amendment > summary::before, details.amendment > summary > .marker, - .correction::before, .correction > .marker, - details.correction > summary::before, details.correction > summary > .marker, - .addition::before, .addition > .marker, - details.addition > summary::before, details.addition > summary > .marker { - color: #220066; - color: var(--amendmentheading-text); - } - .amendment.proposed::before, .amendment.proposed > .marker, - details.amendment.proposed > summary::before, details.amendment.proposed > summary > .marker, - .correction.proposed::before, .correction.proposed > .marker, - details.correction.proposed > summary::before, details.correction.proposed > summary > .marker, - .addition.proposed::before, .addition.proposed > .marker, - details.addition.proposed > summary::before, details.addition.proposed > summary > .marker { - font-weight: bold; - } - -/** Spec Obsoletion Notice ****************************************************/ - /* obnoxious obsoletion notice for older/abandoned specs. */ - - details { - display: block; - } - summary { - font-weight: bolder; - } - - .annoying-warning:not(details), - details.annoying-warning:not([open]) > summary, - details.annoying-warning[open] { - background: hsla(40,100%,50%,0.95); - background: var(--warning-bg); - color: black; - color: var(--warning-text); - padding: .75em 1em; - border: red; - border: var(--warning-border); - border-style: solid none; - box-shadow: 0 2px 8px black; - text-align: center; - } - .annoying-warning :last-child { - margin-bottom: 0; - } - -@media not print { - details.annoying-warning[open] { - position: fixed; - left: 0; - right: 0; - bottom: 2em; - z-index: 1000; - } -} - - details.annoying-warning:not([open]) > summary { - text-align: center; - } - -/** Entity Definition Boxes ***************************************************/ - - .def { - padding: .5em 1em; - background: #def; - background: var(--def-bg); - margin: 1.2em 0; - border-left: 0.5em solid #8ccbf2; - border-left: 0.5em solid var(--def-border); - color: black; - color: var(--def-text); - } - -/******************************************************************************/ -/* Tables */ -/******************************************************************************/ - - th, td { - text-align: left; - text-align: start; - } - -/** Property/Descriptor Definition Tables *************************************/ - - table.def { - /* inherits .def box styling, see above */ - width: 100%; - border-spacing: 0; - } - - table.def td, - table.def th { - padding: 0.5em; - vertical-align: baseline; - border-bottom: 1px solid #bbd7e9; - border-bottom: 1px solid var(--defrow-border); - } - - table.def > tbody > tr:last-child th, - table.def > tbody > tr:last-child td { - border-bottom: 0; - } - - table.def th { - font-style: italic; - font-weight: normal; - padding-left: 1em; - width: 3em; - } - - /* For when values are extra-complex and need formatting for readability */ - table td.pre { - white-space: pre-wrap; - } - - /* A footnote at the bottom of a def table */ - table.def td.footnote { - padding-top: 0.6em; - } - table.def td.footnote::before { - content: " "; - display: block; - height: 0.6em; - width: 4em; - border-top: thin solid; - } - -/** Data tables (and properly marked-up index tables) *************************/ - /* - <table class="data"> highlights structural relationships in a table - when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute) - - Use class="complex data" for particularly complicated tables -- - (This will draw more lines: busier, but clearer.) - - Use class="long" on table cells with paragraph-like contents - (This will adjust text alignment accordingly.) - Alternately use class="longlastcol" on tables, to have the last column assume "long". - */ - - table { - word-wrap: normal; - overflow-wrap: normal; - hyphens: manual; - } - - table.data, - table.index { - margin: 1em auto; - border-collapse: collapse; - border: hidden; - width: 100%; - } - table.data caption, - table.index caption { - max-width: 50em; - margin: 0 auto 1em; - } - - table.data td, table.data th, - table.index td, table.index th { - padding: 0.5em 1em; - border-width: 1px; - border-color: silver; - border-color: var(--datacell-border); - border-top-style: solid; - } - - table.data thead td:empty { - padding: 0; - border: 0; - } - - table.data thead, - table.index thead, - table.data tbody, - table.index tbody { - border-bottom: 2px solid; - } - - table.data colgroup, - table.index colgroup { - border-left: 2px solid; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - border-right: 2px solid; - border-top: 1px solid silver; - border-top: 1px solid var(--datacell-border); - padding-right: 1em; - } - - table.data th[colspan], - table.data td[colspan] { - text-align: center; - } - - table.complex.data th, - table.complex.data td { - border: 1px solid silver; - border: 1px solid var(--datacell-border); - text-align: center; - } - - table.data.longlastcol td:last-child, - table.data td.long { - vertical-align: baseline; - text-align: left; - } - - table.data img { - vertical-align: middle; - } - - -/* -Alternate table alignment rules - - table.data, - table.index { - text-align: center; - } - - table.data thead th[scope="row"], - table.index thead th[scope="row"] { - text-align: right; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - text-align: right; - } - -Possible extra rowspan handling - - table.data tbody th[rowspan]:not([rowspan='1']), - table.index tbody th[rowspan]:not([rowspan='1']), - table.data tbody td[rowspan]:not([rowspan='1']), - table.index tbody td[rowspan]:not([rowspan='1']) { - border-left: 1px solid silver; - } - - table.data tbody th[rowspan]:first-child, - table.index tbody th[rowspan]:first-child, - table.data tbody td[rowspan]:first-child, - table.index tbody td[rowspan]:first-child{ - border-left: 0; - border-right: 1px solid silver; - } -*/ - -/******************************************************************************/ -/* Indices */ -/******************************************************************************/ - - -/** Table of Contents *********************************************************/ - - .toc a { - /* More spacing; use padding to make it part of the click target. */ - padding: 0.1rem 1px 0; - /* Larger, more consistently-sized click target */ - display: block; - /* Switch to using border-bottom for underlines */ - text-decoration: none; - border-bottom: 1px solid; - /* Reverse color scheme */ - color: black; - color: var(--toclink-text); - border-color: #3980b5; - border-color: var(--toclink-underline); - } - .toc a:visited { - color: black; - color: var(--toclink-visited-text); - border-color: #054572; - border-color: var(--toclink-visited-underline); - } - .toc a:focus, - .toc a:hover { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom-width: 3px; - margin-bottom: -2px; - } - .toc a:not(:focus):not(:hover) { - /* Allow colors to cascade through from link styling */ - border-bottom-color: transparent; - } - - .toc, .toc ol, .toc ul, .toc li { - list-style: none; /* Numbers must be inlined into source */ - /* because generated content isn't search/selectable and markers can't do multilevel yet */ - margin: 0; - padding: 0; - } - .toc { - line-height: 1.1em; - } - - /* ToC not indented until third level, but font style & margins show hierarchy */ - .toc > li { font-weight: bold; } - .toc > li li { font-weight: normal; } - .toc > li li li { font-size: 95%; } - .toc > li li li li { font-size: 90%; } - .toc > li li li li li { font-size: 85%; } - - /* @supports not (display:grid) { */ - .toc > li { margin: 1.5rem 0; } - .toc > li li { margin: 0.3rem 0; } - .toc > li li li { margin-left: 2rem; } - - /* Section numbers in a column of their own */ - .toc .secno { - float: left; - width: 4rem; - white-space: nowrap; - } - .toc > li li li li .secno { font-size: 85%; } - .toc > li li li li li .secno { font-size: 100%; } - - .toc li { - clear: both; - } - - :not(li) > .toc { margin-left: 5rem; } - .toc .secno { margin-left: -5rem; } - .toc > li li li .secno { margin-left: -7rem; } - .toc > li li li li .secno { margin-left: -9rem; } - .toc > li li li li li .secno { margin-left: -11rem; } - - /* Tighten up indentation in narrow ToCs */ - @media (max-width: 30em) { - :not(li) > .toc { margin-left: 4rem; } - .toc .secno { margin-left: -4rem; } - .toc > li li li { margin-left: 1rem; } - .toc > li li li .secno { margin-left: -5rem; } - .toc > li li li li .secno { margin-left: -6rem; } - .toc > li li li li li .secno { margin-left: -7rem; } - } - /* Loosen it on wide screens */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) :not(li) > .toc { margin-left: 4rem; } - body:not(.toc-inline) .toc .secno { margin-left: -4rem; } - body:not(.toc-inline) .toc > li li li { margin-left: 1rem; } - body:not(.toc-inline) .toc > li li li .secno { margin-left: -5rem; } - body:not(.toc-inline) .toc > li li li li .secno { margin-left: -6rem; } - body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; } - } - /* } */ - - @supports (display:grid) and (display:contents) { - /* Use #toc over .toc to override non-@supports rules. */ - #toc { - display: grid; - align-content: start; - grid-template-columns: auto 1fr; - grid-column-gap: 1rem; - column-gap: 1rem; - grid-row-gap: .6rem; - row-gap: .6rem; - } - #toc h2 { - grid-column: 1 / -1; - margin-bottom: 0; - } - #toc ol, - #toc li, - #toc a { - display: contents; - /* Switch <a> to subgrid when supported */ - } - #toc span { - margin: 0; - } - #toc > .toc > li > a > span { - /* The spans of the top-level list, - comprising the first items of each top-level section. */ - margin-top: 1.1rem; - } - #toc#toc .secno { /* Ugh, need more specificity to override base.css */ - grid-column: 1; - width: auto; - margin-left: 0; - } - #toc .content { - grid-column: 2; - width: auto; - margin-right: 1rem; - } - #toc .content:hover, - #toc .content:focus { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; - } - #toc li li li .content { - margin-left: 1rem; - } - #toc li li li li .content { - margin-left: 2rem; - } - } - - -/** Index *********************************************************************/ - - /* Index Lists: Layout */ - ul.index { margin-left: 0; columns: 15em; text-indent: 1em hanging; } - ul.index li { margin-left: 0; list-style: none; break-inside: avoid; } - ul.index li li { margin-left: 1em; } - ul.index dl { margin-top: 0; } - ul.index dt { margin: .2em 0 .2em 20px;} - ul.index dd { margin: .2em 0 .2em 40px;} - /* Index Lists: Typography */ - ul.index ul, - ul.index dl { font-size: smaller; } - @media not print { - ul.index li a + span { - white-space: nowrap; - color: transparent; } - ul.index li a:hover + span, - ul.index li a:focus + span { - color: #707070; - color: var(--indexinfo-text); - } - } - -/** Index Tables *****************************************************/ - /* See also the data table styling section, which this effectively subclasses */ - - table.index { - font-size: small; - border-collapse: collapse; - border-spacing: 0; - text-align: left; - margin: 1em 0; - } - - table.index td, - table.index th { - padding: 0.4em; - } - - table.index tr:hover td:not([rowspan]), - table.index tr:hover th:not([rowspan]) { - color: black; - color: var(--indextable-hover-text); - background: #f7f8f9; - background: var(--indextable-hover-bg); - } - - /* The link in the first column in the property table (formerly a TD) */ - table.index th:first-child a { - font-weight: bold; - } - -/** Outdated warning **********************************************************/ - -.outdated-spec { - color: black; - color: var(--outdatedspec-text); - background-color: rgba(0,0,0,0.5); - background-color: var(--outdatedspec-bg); -} - -.outdated-warning { - position: fixed; - bottom: 50%; - left: 0; - right: 0; - margin: 0 auto; - width: 50%; - background: maroon; - background: var(--outdated-bg); - color: white; - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - position: absolute; - top: 0; - right:0; - margin: 0; - border: 0; - padding: 0.25em 0.5em; - background: transparent; - color: white; - color: var(--outdated-text); - font:1em sans-serif; - text-align:center; -} - -.outdated-warning span { - display: block; -} - -.outdated-collapsed { - bottom: 0; - border-radius: 0; - width: 100%; - padding: 0; -} - -/******************************************************************************/ -/* Print */ -/******************************************************************************/ - - @media print { - /* Pages have their own margins. */ - html { - margin: 0; - } - /* Serif for print. */ - body { - font-family: serif; - } - - .outdated-warning { - position: absolute; - border-style: solid; - border-color: red; - } - - .outdated-warning input { - display: none; - } - } - @page { - margin: 1.5cm 1.1cm; - } - - - -/******************************************************************************/ -/* Overflow Control */ -/******************************************************************************/ - - .figure .caption, .sidefigure .caption, figcaption { - /* in case figure is overlarge, limit caption to 50em */ - max-width: 50rem; - margin-left: auto; - margin-right: auto; - } - .overlarge { - /* Magic to create good item positioning: - "content column" is 50ems wide at max; less on smaller screens. - Extra space (after ToC + content) is empty on the right. - - 1. When item < content column, centers item in column. - 2. When content < item < available, left-aligns. - 3. When item > available, fills available + scroll bar. - */ - display: grid; - grid-template-columns: minmax(0, 50em); - } - .overlarge > table { - /* limit preferred width of table */ - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - @media (min-width: 55em) { - .overlarge { - margin-right: calc(13px + 26.5rem - 50vw); - max-width: none; - } - } - @media screen and (min-width: 78em) { - body:not(.toc-inline) .overlarge { - /* 30.5em body padding 50em content area */ - margin-right: calc(40em - 50vw) !important; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) .overlarge { - /* 4em html margin 30.5em body padding 50em content area */ - margin-right: calc(84.5em - 100vw) !important; - } - } - - @media not print { - .overlarge { - overflow-x: auto; - /* See Lea Verou's explanation background-attachment: - * http://lea.verou.me/2012/04/background-attachment-local/ - * - background: top left / 4em 100% linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) local, - top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local, - top left / 1em 100% linear-gradient(to right, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - white; - background-repeat: no-repeat; - */ - } - } -</style> + <title>WebXR Meshing API Level 1</title> + <meta content="DREAM" name="w3c-status"> + <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-DREAM" rel="stylesheet"> <meta content="dark light" name="color-scheme"> + <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <link href="favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"> <link href="favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"> <style> @@ -2227,30 +746,32 @@ </style> <body class="h-entry"> <div class="head"> - <p data-fill-with="logo"></p> + <p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p> <h1 class="p-name no-ref" id="title">WebXR Meshing API Level 1</h1> - <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span class="content">A Collection of Interesting Ideas, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></span></h2> - <div data-fill-with="spec-metadata"> - <dl> - <dt>Previous Versions: - <dd><a href rel="prev"></a> - <dt class="editor">Editor: - <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:rcabanier@magicleap.com">Rik Cabanier</a> (<a class="p-org org" href="https://magicleap.com">Magic Leap</a>) - </dl> - </div> + <p id="w3c-state"><a href="https://www.w3.org/standards/types#DREAM">A Collection of Interesting Ideas</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <details open> + <summary>More details about this document</summary> + <div data-fill-with="spec-metadata"> + <dl> + <dt>Previous Versions: + <dd><a href rel="prev"></a> + <dt class="editor">Editor: + <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:rcabanier@magicleap.com">Rik Cabanier</a> (<a class="p-org org" href="https://magicleap.com">Magic Leap</a>) + </dl> + </div> + </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright -and related or neighboring rights to this work. -In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. -Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This specification describes support for accessing the geometry of real world objects during a WebXR session.</p> </div> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> + <div data-fill-with="status"> + <p></p> + </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> @@ -2275,7 +796,11 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <li><a href="#xrframe-interface"><span class="secno">3.2</span> <span class="content">XRFrame</span></a> </ol> <li><a href="#security"><span class="secno">4</span> <span class="content">Security and Privacy Considerations</span></a> - <li><a href="#conformance"><span class="secno"></span> <span class="content"> Conformance</span></a> + <li> + <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> + <ol class="toc"> + <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> + </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> <ol class="toc"> @@ -2422,151 +947,33 @@ <h2 class="heading settled" data-level="4" id="security"><span class="secno">4. <p class="issue" id="issue-22eb3e63"><a class="self-link" href="#issue-22eb3e63"></a> clarify this section</p> </main> <div data-fill-with="conformance"> - <h2 class="no-ref no-num heading settled" id="conformance"><span class="content"> Conformance</span><a class="self-link" href="#conformance"></a></h2> - <p> Conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. - The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” - in the normative parts of this document - are to be interpreted as described in RFC 2119. - However, for readability, - these words do not appear in all uppercase letters in this specification. </p> - <p> All of the text of this specification is normative - except sections explicitly marked as non-normative, examples, and notes. <a data-link-type="biblio" href="#biblio-rfc2119" title="Key words for use in RFCs to Indicate Requirement Levels">[RFC2119]</a> </p> - <p> Examples in this specification are introduced with the words “for example” - or are set apart from the normative text with <code>class="example"</code>, like this: </p> - <div class="example" id="example-example"><a class="self-link" href="#example-example"></a> This is an example of an informative example. </div> - <p> Informative notes begin with the word “Note” - and are set apart from the normative text with <code>class="note"</code>, like this: </p> - <p class="note" role="note"> Note, this is an informative note.</p> + <h2 class="no-ref no-num heading settled" id="w3c-conformance"><span class="content">Conformance</span><a class="self-link" href="#w3c-conformance"></a></h2> + <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="content">Document conventions</span><a class="self-link" href="#w3c-conventions"></a></h3> + <p>Conformance requirements are expressed + with a combination of descriptive assertions + and RFC 2119 terminology. + The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” + in the normative parts of this document + are to be interpreted as described in RFC 2119. + However, for readability, + these words do not appear in all uppercase letters in this specification. </p> + <p>All of the text of this specification is normative + except sections explicitly marked as non-normative, examples, and notes. <a data-link-type="biblio" href="#biblio-rfc2119" title="Key words for use in RFCs to Indicate Requirement Levels">[RFC2119]</a> </p> + <p>Examples in this specification are introduced with the words “for example” + or are set apart from the normative text + with <code>class="example"</code>, + like this: </p> + <div class="example" id="w3c-example"> + <a class="self-link" href="#w3c-example"></a> + <p>This is an example of an informative example. </p> + </div> + <p>Informative notes begin with the word “Note” + and are set apart from the normative text + with <code>class="note"</code>, + like this: </p> + <p class="note" role="note">Note, this is an informative note.</p> </div> -<script> -(function() { - "use strict"; - var collapseSidebarText = '<span aria-hidden="true">←</span> ' - + '<span>Collapse Sidebar</span>'; - var expandSidebarText = '<span aria-hidden="true">→</span> ' - + '<span>Pop Out Sidebar</span>'; - var tocJumpText = '<span aria-hidden="true">↑</span> ' - + '<span>Jump to Table of Contents</span>'; - - var sidebarMedia = window.matchMedia('screen and (min-width: 78em)'); - var autoToggle = function(e){ toggleSidebar(e.matches) }; - if(sidebarMedia.addListener) { - sidebarMedia.addListener(autoToggle); - } - - function toggleSidebar(on) { - if (on == undefined) { - on = !document.body.classList.contains('toc-sidebar'); - } - - /* Don't scroll to compensate for the ToC if we're above it already. */ - var headY = 0; - var head = document.querySelector('.head'); - if (head) { - // terrible approx of "top of ToC" - headY += head.offsetTop + head.offsetHeight; - } - var skipScroll = window.scrollY < headY; - - var toggle = document.getElementById('toc-toggle'); - var tocNav = document.getElementById('toc'); - if (on) { - var tocHeight = tocNav.offsetHeight; - document.body.classList.add('toc-sidebar'); - document.body.classList.remove('toc-inline'); - toggle.innerHTML = collapseSidebarText; - if (!skipScroll) { - window.scrollBy(0, 0 - tocHeight); - } - tocNav.focus(); - sidebarMedia.addListener(autoToggle); // auto-collapse when out of room - } - else { - document.body.classList.add('toc-inline'); - document.body.classList.remove('toc-sidebar'); - toggle.innerHTML = expandSidebarText; - if (!skipScroll) { - window.scrollBy(0, tocNav.offsetHeight); - } - if (toggle.matches(':hover')) { - /* Unfocus button when not using keyboard navigation, - because I don't know where else to send the focus. */ - toggle.blur(); - } - } - } - - function createSidebarToggle() { - /* Create the sidebar toggle in JS; it shouldn't exist when JS is off. */ - var toggle = document.createElement('a'); - /* This should probably be a button, but appearance isn't standards-track.*/ - toggle.id = 'toc-toggle'; - toggle.class = 'toc-toggle'; - toggle.href = '#toc'; - toggle.innerHTML = collapseSidebarText; - - sidebarMedia.addListener(autoToggle); - var toggler = function(e) { - e.preventDefault(); - sidebarMedia.removeListener(autoToggle); // persist explicit off states - toggleSidebar(); - return false; - } - toggle.addEventListener('click', toggler, false); - - - /* Get <nav id=toc-nav>, or make it if we don't have one. */ - var tocNav = document.getElementById('toc-nav'); - if (!tocNav) { - tocNav = document.createElement('p'); - tocNav.id = 'toc-nav'; - /* Prepend for better keyboard navigation */ - document.body.insertBefore(tocNav, document.body.firstChild); - } - /* While we're at it, make sure we have a Jump to Toc link. */ - var tocJump = document.getElementById('toc-jump'); - if (!tocJump) { - tocJump = document.createElement('a'); - tocJump.id = 'toc-jump'; - tocJump.href = '#toc'; - tocJump.innerHTML = tocJumpText; - tocNav.appendChild(tocJump); - } - - tocNav.appendChild(toggle); - } - - var toc = document.getElementById('toc'); - if (toc) { - createSidebarToggle(); - toggleSidebar(sidebarMedia.matches); - - /* If the sidebar has been manually opened and is currently overlaying the text - (window too small for the MQ to add the margin to body), - then auto-close the sidebar once you click on something in there. */ - toc.addEventListener('click', function(e) { - if(e.target.tagName.toLowerCase() == "a" && document.body.classList.contains('toc-sidebar') && !sidebarMedia.matches) { - toggleSidebar(false); - } - }, false); - } - else { - console.warn("Can't find Table of Contents. Please use <nav id='toc'> around the ToC."); - } - - /* Wrap tables in case they overflow */ - var tables = document.querySelectorAll(':not(.overlarge) > table.data, :not(.overlarge) > table.index'); - var numTables = tables.length; - for (var i = 0; i < numTables; i++) { - var table = tables[i]; - var wrapper = document.createElement('div'); - wrapper.className = 'overlarge'; - table.parentNode.insertBefore(wrapper, table); - wrapper.appendChild(table); - } - -})(); -</script> + <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="content">Terms defined by this specification</span><a class="self-link" href="#index-defined-here"></a></h3> <ul class="index"> diff --git a/tests/github/immersive-web/webvr/spec/1.1/index.console.txt b/tests/github/immersive-web/webvr/spec/1.1/index.console.txt index ca04b68fd3..8346970c4f 100644 --- a/tests/github/immersive-web/webvr/spec/1.1/index.console.txt +++ b/tests/github/immersive-web/webvr/spec/1.1/index.console.txt @@ -1,3 +1,4 @@ +FATAL ERROR: Unknown Group 'immersiveweb'. See docs for recognized Group values. FATAL ERROR: The [Constructor] extended attribute (on VRFrameData) is deprecated, please switch to a constructor() method. FATAL ERROR: The [Constructor] extended attribute (on VRDisplayEvent) is deprecated, please switch to a constructor() method. LINE 193: Multiple elements have the same ID 'dom-vrdisplay-geteyeparameters'. diff --git a/tests/github/immersive-web/webvr/spec/1.1/index.html b/tests/github/immersive-web/webvr/spec/1.1/index.html index 819fd87974..b76edfd05b 100644 --- a/tests/github/immersive-web/webvr/spec/1.1/index.html +++ b/tests/github/immersive-web/webvr/spec/1.1/index.html @@ -3,10 +3,10 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>WebVR</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/webvr/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -716,7 +716,7 @@ <h1 class="p-name no-ref" id="title">WebVR</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1335,20 +1335,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/immersive-web/webxr-ar-module/index.console.txt b/tests/github/immersive-web/webxr-ar-module/index.console.txt index c46c6f2c79..88564613cf 100644 --- a/tests/github/immersive-web/webxr-ar-module/index.console.txt +++ b/tests/github/immersive-web/webxr-ar-module/index.console.txt @@ -10,7 +10,7 @@ LINK ERROR: No 'enum-value' refs found for '"inline"' with spec 'webxr-1'. {{XRSessionMode/"inline"}} LINE ~163: No 'dfn' refs found for 'immersive sessions' with spec 'webxr-1'. [=immersive sessions=] -LINE ~33: No 'dfn' refs found for 'xr compositor' with spec 'webxr-1'. +LINE ~32: No 'dfn' refs found for 'xr compositor' with spec 'webxr-1'. [=XR Compositor=] LINE ~206: No 'dfn' refs found for 'xr compositor' with spec 'webxr-1'. [=XR Compositor=] diff --git a/tests/github/immersive-web/webxr-ar-module/index.html b/tests/github/immersive-web/webxr-ar-module/index.html index 1ecb20d19d..6af8597b28 100644 --- a/tests/github/immersive-web/webxr-ar-module/index.html +++ b/tests/github/immersive-web/webxr-ar-module/index.html @@ -5,7 +5,6 @@ <title>WebXR Augmented Reality Module - Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webxr-ar-module-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -779,7 +778,7 @@ <h1 class="p-name no-ref" id="title">WebXR Augmented Reality Module - Level 1</h <p>For additional context on the use of this API please reference the <a href="https://github.com/immersive-web/webxr-ar-module/blob/master/ar-module-explainer.md">WebXR Augmented Reality Module Explainer</a>.</p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -798,12 +797,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This WebXR Augmented Reality Module is designed as a module to be implemented in addition to <a href="https://www.w3.org/TR/webxr/">WebXR Device API</a>, and is originally included in WebXR Device API which was divided into core and modules.</p> </div> @@ -1030,20 +1029,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1119,7 +1120,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing-1">[COMPOSITING-1] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-rfc2119">[RFC2119] diff --git a/tests/github/immersive-web/webxr-gamepads-module/index.console.txt b/tests/github/immersive-web/webxr-gamepads-module/index.console.txt index e569bd846c..949168a2b8 100644 --- a/tests/github/immersive-web/webxr-gamepads-module/index.console.txt +++ b/tests/github/immersive-web/webxr-gamepads-module/index.console.txt @@ -1,5 +1,5 @@ LINE 281: Image doesn't exist, so I couldn't determine its width and height: 'images/xr-standard-mapping.svg' -LINE ~33: No 'dfn' refs found for 'viewer' with spec 'webxr-1'. +LINE ~32: No 'dfn' refs found for 'viewer' with spec 'webxr-1'. [=viewer=] LINE ~149: No 'dfn' refs found for 'xr device' with spec 'webxr-1'. [=XRSession/XR device=] diff --git a/tests/github/immersive-web/webxr-gamepads-module/index.html b/tests/github/immersive-web/webxr-gamepads-module/index.html index 2111fd1528..232ce6f8ae 100644 --- a/tests/github/immersive-web/webxr-gamepads-module/index.html +++ b/tests/github/immersive-web/webxr-gamepads-module/index.html @@ -5,7 +5,6 @@ <title>WebXR Gamepads Module - Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webxr-gamepads-module-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -772,7 +771,7 @@ <h1 class="p-name no-ref" id="title">WebXR Gamepads Module - Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -791,12 +790,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This WebXR Gamepads Module is designed as a module to be implemented in addition to <a href="https://www.w3.org/TR/webxr/">WebXR Device API</a>, and was originally included in WebXR Device API which was divided into core and modules.</p> </div> @@ -1013,20 +1012,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1088,7 +1089,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-gamepad">[GAMEPAD] - <dd>Steve Agoston; James Hollyer; Matthew Reynolds. <a href="https://w3c.github.io/gamepad/"><cite>Gamepad</cite></a>. URL: <a href="https://w3c.github.io/gamepad/">https://w3c.github.io/gamepad/</a> + <dd>Steve Agoston; Matthew Reynolds. <a href="https://w3c.github.io/gamepad/"><cite>Gamepad</cite></a>. URL: <a href="https://w3c.github.io/gamepad/">https://w3c.github.io/gamepad/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-webidl">[WEBIDL] diff --git a/tests/github/immersive-web/webxr-hand-input/index.html b/tests/github/immersive-web/webxr-hand-input/index.html index ea8f70a38b..8763312ea9 100644 --- a/tests/github/immersive-web/webxr-hand-input/index.html +++ b/tests/github/immersive-web/webxr-hand-input/index.html @@ -5,7 +5,6 @@ <title>WebXR Hand Input Module - Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webxr-hand-input-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -1044,7 +1043,7 @@ <h1 class="p-name no-ref" id="title">WebXR Hand Input Module - Level 1</h1> <p>For additional context on the use of this API please reference the <a href="https://github.com/immersive-web/webxr-hand-input/blob/master/explainer.md">Hand Input Module Explainer</a>.</p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1063,12 +1062,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This WebXR Augmented Reality Module is designed as a module to be implemented in addition to <a href="https://www.w3.org/TR/webxr/">WebXR Device API</a>, and is originally included in WebXR Device API which was divided into core and modules.</p> </div> @@ -1523,20 +1522,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1756,7 +1757,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1772,7 +1773,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1788,7 +1789,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1804,7 +1805,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1817,7 +1818,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1833,7 +1834,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1849,7 +1850,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1865,7 +1866,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1881,7 +1882,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> diff --git a/tests/github/immersive-web/webxr-test-api/index.console.txt b/tests/github/immersive-web/webxr-test-api/index.console.txt index e15b0c0cfd..1397197d57 100644 --- a/tests/github/immersive-web/webxr-test-api/index.console.txt +++ b/tests/github/immersive-web/webxr-test-api/index.console.txt @@ -1,4 +1,4 @@ -LINE ~33: No 'dfn' refs found for 'xr device' with spec 'webxr-1'. +LINE ~32: No 'dfn' refs found for 'xr device' with spec 'webxr-1'. [=/XR device=] LINE ~149: No 'dfn' refs found for 'native bounds geometry' with spec 'webxr-1'. [=XRBoundedReferenceSpace/native bounds geometry=] @@ -52,9 +52,9 @@ LINE ~343: No 'dfn' refs found for 'view offset' with spec 'webxr-1'. [=view offset=] LINE ~347: No 'dfn' refs found for 'projection matrix' with spec 'webxr-1'. [=view/projection matrix=] -LINE ~33: No 'dfn' refs found for 'viewer' with spec 'webxr-1'. +LINE ~32: No 'dfn' refs found for 'viewer' with spec 'webxr-1'. [=viewer=] -LINE ~33: No 'dfn' refs found for 'native origin' with spec 'webxr-1'. +LINE ~32: No 'dfn' refs found for 'native origin' with spec 'webxr-1'. [=native origin=] LINE ~400: No 'dfn' refs found for 'xr animation frame' with spec 'webxr-1'. [=XR animation frame=] diff --git a/tests/github/immersive-web/webxr-test-api/index.html b/tests/github/immersive-web/webxr-test-api/index.html index dfcb25ad6c..76fcec3891 100644 --- a/tests/github/immersive-web/webxr-test-api/index.html +++ b/tests/github/immersive-web/webxr-test-api/index.html @@ -5,7 +5,6 @@ <title>WebXR Test API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://immersive-web.github.io/webxr-test-api/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -812,7 +811,7 @@ <h1 class="p-name no-ref" id="title">WebXR Test API</h1> <p><b>The API represented in this document is for testing only and should not be exposed to users.</b></p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -831,12 +830,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1627,20 +1626,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1965,7 +1966,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-gamepad">[GAMEPAD] - <dd>Steve Agoston; James Hollyer; Matthew Reynolds. <a href="https://w3c.github.io/gamepad/"><cite>Gamepad</cite></a>. URL: <a href="https://w3c.github.io/gamepad/">https://w3c.github.io/gamepad/</a> + <dd>Steve Agoston; Matthew Reynolds. <a href="https://w3c.github.io/gamepad/"><cite>Gamepad</cite></a>. URL: <a href="https://w3c.github.io/gamepad/">https://w3c.github.io/gamepad/</a> <dt id="biblio-geometry-1">[GEOMETRY-1] <dd>Simon Pieters; Chris Harrelson. <a href="https://drafts.fxtf.org/geometry/"><cite>Geometry Interfaces Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/geometry/">https://drafts.fxtf.org/geometry/</a> <dt id="biblio-html">[HTML] diff --git a/tests/github/immersive-web/webxr/index.console.txt b/tests/github/immersive-web/webxr/index.console.txt index 7c00002aed..f5a96cecda 100644 --- a/tests/github/immersive-web/webxr/index.console.txt +++ b/tests/github/immersive-web/webxr/index.console.txt @@ -29,6 +29,18 @@ for-less references: spec:selection-api; type:event; for:/; text:selectstart spec:selection-api; type:event; for:/; text:selectstart {{selectstart!!event}} +LINE ~2448: Multiple possible 'ancestor' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-ancestor +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:ancestor +spec:css2; type:dfn; text:ancestor +[=ancestor=] +LINE ~2448: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +[=descendant=] LINE ~2642: No 'dfn' refs found for 'powerful feature' with spec 'permissions-1'. [=powerful feature=] LINE ~2712: No 'dfn' refs found for 'powerful feature' with spec 'permissions-1'. diff --git a/tests/github/immersive-web/webxr/index.html b/tests/github/immersive-web/webxr/index.html index eeaad2c9cd..e124becb9c 100644 --- a/tests/github/immersive-web/webxr/index.html +++ b/tests/github/immersive-web/webxr/index.html @@ -5,7 +5,6 @@ <title>WebXR Device API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webxr/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -1046,7 +1045,7 @@ <h1 class="p-name no-ref" id="title">WebXR Device API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1065,12 +1064,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors' Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/immersive-web/ipr" rel="disclosure">public list of any patent - disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section + disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -3521,7 +3520,7 @@ <h4 class="heading settled" data-level="13.5.3" id="protect-reference-spaces"><s <p>Return <code>false</code>.</p> </ol> </div> - <p class="note" role="note"><span class="marker">Note:</span> The requirement for document visibility is based on <a data-link-type="biblio" href="#biblio-device-orientation" title="DeviceOrientation Event Specification">[DEVICE-ORIENTATION]</a>.</p> + <p class="note" role="note"><span class="marker">Note:</span> The requirement for document visibility is based on <a data-link-type="biblio" href="#biblio-device-orientation" title="Device Orientation and Motion">[DEVICE-ORIENTATION]</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> Is is suggested that poses reported relative to a <code class="idl"><a data-link-type="idl" href="#dom-xrreferencespacetype-local" id="ref-for-dom-xrreferencespacetype-local①①">"local"</a></code> or <code class="idl"><a data-link-type="idl" href="#dom-xrreferencespacetype-local-floor" id="ref-for-dom-xrreferencespacetype-local-floor①①">"local-floor"</a></code> reference space be <a data-link-type="dfn" href="#limiting" id="ref-for-limiting②">limited</a> to a distance of 15 meters from the <code class="idl"><a data-link-type="idl" href="#xrreferencespace" id="ref-for-xrreferencespace③⑦">XRReferenceSpace</a></code>'s <a data-link-type="dfn" href="#xrspace-native-origin" id="ref-for-xrspace-native-origin②③">native origin</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> Is is suggested that poses reported relative to a <code class="idl"><a data-link-type="idl" href="#xrboundedreferencespace" id="ref-for-xrboundedreferencespace①④">XRBoundedReferenceSpace</a></code> be <a data-link-type="dfn" href="#limiting" id="ref-for-limiting③">limited</a> to a distance of 1 meter outside the <code class="idl"><a data-link-type="idl" href="#xrboundedreferencespace" id="ref-for-xrboundedreferencespace①⑤">XRBoundedReferenceSpace</a></code>'s <a data-link-type="dfn" href="#xrboundedreferencespace-native-bounds-geometry" id="ref-for-xrboundedreferencespace-native-bounds-geometry⑦">native bounds geometry</a>.</p> <h3 class="heading settled" data-level="13.6" id="trustedenvironment-security"><span class="secno">13.6. </span><span class="content">Trusted Environment</span><a class="self-link" href="#trustedenvironment-security"></a></h3> @@ -3874,20 +3873,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -4629,7 +4630,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-device-orientation">[DEVICE-ORIENTATION] - <dd>Rich Tibbett; et al. <a href="https://w3c.github.io/deviceorientation/"><cite>DeviceOrientation Event Specification</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> + <dd>Reilly Grant; Raphael Kubo da Costa; Marcos Caceres. <a href="https://w3c.github.io/deviceorientation/"><cite>Device Orientation and Motion</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> <dt id="biblio-screen-orientation">[SCREEN-ORIENTATION] <dd>Marcos Caceres. <a href="https://w3c.github.io/screen-orientation/"><cite>Screen Orientation</cite></a>. URL: <a href="https://w3c.github.io/screen-orientation/">https://w3c.github.io/screen-orientation/</a> <dt id="biblio-webxr-ar-module-1">[WEBXR-AR-MODULE-1] @@ -5350,38 +5351,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-xrpermissionstatus-granted"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRPermissionStatus/granted" title="The WebXR Device API&apos;s XRPermissionStatus interface&apos;s granted property is an array of strings, each identifying one of the WebXR features for which permission has been granted as of the time at which the Permission API&apos;s navigator.permissions.query() method was called.">XRPermissionStatus/granted</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> - <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> - <details class="mdn-anno unpositioned" data-anno-for="xrpermissionstatus"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRPermissionStatus" title="The XRPermissionStatus interface defines the object returned by calling navigator.permissions.query() for the xr permission name; it indicates whether or not the app or site has permission to use WebXR, and may be monitored over time for changes to that permissions tate.">XRPermissionStatus</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> - <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="dom-xrpose-angularvelocity"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> @@ -6274,7 +6243,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>11.2+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -6290,7 +6259,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>11.2+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -6306,7 +6275,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>11.2+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -6322,7 +6291,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>11.2+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -6330,15 +6299,15 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRSystem" title="The WebXR Device API interface XRSystem provides methods which let you get access to an XRSession object representing a WebXR session. With that XRSession in hand, you can use it to interact with the Augmented Reality (AR) or Virtual Reality (VR) device.">XRSystem</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>79+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -6569,7 +6538,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-xrwebgllayer-antialias"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/antialias" title="The read-only XRWebGLLayer property antialias is a Boolean value which is true if the rendering layer&apos;s frame buffer supports antialiasing. Otherwise, this property&apos;s value is false. The specific antialiasing technique used is left to the user agent&apos;s discretion and cannot be specified by the web site or web app.">XRWebGLLayer/antialias</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/antialias" title="The read-only XRWebGLLayer property antialias is a Boolean value which is true if the rendering layer&apos;s frame buffer supports anti-aliasing. Otherwise, this property&apos;s value is false. The specific anti-aliasing technique used is left to the user agent&apos;s discretion and cannot be specified by the website or web app.">XRWebGLLayer/antialias</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>79+</span></span> @@ -6633,7 +6602,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-xrwebgllayer-getnativeframebufferscalefactor"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/getNativeFramebufferScaleFactor" title="The static method XRWebGLLayer.getNativeFramebufferScaleFactor() returns a floating-point scaling factor by which one can multiply the specified XRSession&apos;s resolution to get the native resolution of the WebXR device&apos;s frame buffer.">XRWebGLLayer/getNativeFramebufferScaleFactor</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLLayer/getNativeFramebufferScaleFactor_static" title="The static method XRWebGLLayer.getNativeFramebufferScaleFactor() returns a floating-point scaling factor by which one can multiply the specified XRSession&apos;s resolution to get the native resolution of the WebXR device&apos;s frame buffer.">XRWebGLLayer/getNativeFramebufferScaleFactor_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>79+</span></span> @@ -6697,7 +6666,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="permissions-policy"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/xr-spatial-tracking" title="The HTTP Feature-Policy header xr-spatial-tracking directive controls whether the current document is allowed to use the WebXR Device API. This policy controls whether navigator.xr.requestSession() can return XRSession that requires spatial tracking and whether user agent can indicate support for sessions supporting spatial tracking via navigator.xr.isSessionSupported() and devicechange event on navigator.xr object.">Headers/Feature-Policy/xr-spatial-tracking</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/xr-spatial-tracking" title="The HTTP Permissions-Policy header xr-spatial-tracking directive controls whether the current document is allowed to use the WebXR Device API.">Headers/Feature-Policy/xr-spatial-tracking</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>79+</span></span> @@ -6709,6 +6678,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/xr-spatial-tracking" title="The HTTP Permissions-Policy header xr-spatial-tracking directive controls whether the current document is allowed to use the WebXR Device API.">Headers/Permissions-Policy/xr-spatial-tracking</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>88+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/jfbastien/papers/source/D1501R0.html b/tests/github/jfbastien/papers/source/D1501R0.html index 6b4883e38c..abee64c6f9 100644 --- a/tests/github/jfbastien/papers/source/D1501R0.html +++ b/tests/github/jfbastien/papers/source/D1501R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG13 <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Draft Revision: <dd>0 <dt>Source: diff --git a/tests/github/jfbastien/papers/source/D2151r0.html b/tests/github/jfbastien/papers/source/D2151r0.html index 8724bb792b..0ba489dbe1 100644 --- a/tests/github/jfbastien/papers/source/D2151r0.html +++ b/tests/github/jfbastien/papers/source/D2151r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -1975,7 +1976,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P2151r0.bs">github.com/jfbastien/papers/blob/master/source/P2151r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/Math.signbit.html b/tests/github/jfbastien/papers/source/Math.signbit.html index 54a43b80cf..48dc5ebe7a 100644 --- a/tests/github/jfbastien/papers/source/Math.signbit.html +++ b/tests/github/jfbastien/papers/source/Math.signbit.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; diff --git a/tests/github/jfbastien/papers/source/N2218.html b/tests/github/jfbastien/papers/source/N2218.html index c3918bb15c..ea08c5524c 100644 --- a/tests/github/jfbastien/papers/source/N2218.html +++ b/tests/github/jfbastien/papers/source/N2218.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2033,7 +2034,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt class="editor">Author: <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:jfbastien@apple.com">JF Bastien</a> (<span class="p-org org">Apple</span>) <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG14 9899: Programming Language — C + <dd>ISO/IEC 9899 Programming Languages — C, ISO/IEC JTC1/SC22/WG14 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/N2218.bs">github.com/jfbastien/papers/blob/master/source/N2218.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/N4455.html b/tests/github/jfbastien/papers/source/N4455.html index dbcaee5da0..0e61249d19 100644 --- a/tests/github/jfbastien/papers/source/N4455.html +++ b/tests/github/jfbastien/papers/source/N4455.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2094,7 +2095,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt class="editor">Author: <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:jfb@google.com">JF Bastien</a> (<span class="p-org org">Google</span>) <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 </dl> </div> <div data-fill-with="warning"></div> diff --git a/tests/github/jfbastien/papers/source/P0323R10.html b/tests/github/jfbastien/papers/source/P0323R10.html index 8db0ee8351..2ff14cd00a 100644 --- a/tests/github/jfbastien/papers/source/P0323R10.html +++ b/tests/github/jfbastien/papers/source/P0323R10.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2100,7 +2101,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0323R10.bs">github.com/jfbastien/papers/blob/master/source/P0323R10.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0323R8.html b/tests/github/jfbastien/papers/source/P0323R8.html index 2f384e0562..61e0e4fbd6 100644 --- a/tests/github/jfbastien/papers/source/P0323R8.html +++ b/tests/github/jfbastien/papers/source/P0323R8.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0323R8.bs">github.com/jfbastien/papers/blob/master/source/P0323R8.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0323R9.html b/tests/github/jfbastien/papers/source/P0323R9.html index 45b615ed06..17cb688d2e 100644 --- a/tests/github/jfbastien/papers/source/P0323R9.html +++ b/tests/github/jfbastien/papers/source/P0323R9.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0323R9.bs">github.com/jfbastien/papers/blob/master/source/P0323R9.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0323r4.html b/tests/github/jfbastien/papers/source/P0323r4.html index 561a47e103..c967fa41dc 100644 --- a/tests/github/jfbastien/papers/source/P0323r4.html +++ b/tests/github/jfbastien/papers/source/P0323r4.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0323r4.bs">github.com/jfbastien/papers/blob/master/source/P0323r4.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0323r5.html b/tests/github/jfbastien/papers/source/P0323r5.html index c093191c1e..e240ca48a0 100644 --- a/tests/github/jfbastien/papers/source/P0323r5.html +++ b/tests/github/jfbastien/papers/source/P0323r5.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0323r5.bs">github.com/jfbastien/papers/blob/master/source/P0323r5.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0323r6.html b/tests/github/jfbastien/papers/source/P0323r6.html index 38a157bbf7..daf5eff7b4 100644 --- a/tests/github/jfbastien/papers/source/P0323r6.html +++ b/tests/github/jfbastien/papers/source/P0323r6.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0323r6.bs">github.com/jfbastien/papers/blob/master/source/P0323r6.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0418r1.html b/tests/github/jfbastien/papers/source/P0418r1.html index ab4ea432f1..e08a09cbd4 100644 --- a/tests/github/jfbastien/papers/source/P0418r1.html +++ b/tests/github/jfbastien/papers/source/P0418r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2115,7 +2116,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0418r1.bs">github.com/jfbastien/papers/blob/master/source/P0418r1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0418r2.html b/tests/github/jfbastien/papers/source/P0418r2.html index 799ea3944a..8a7073ec51 100644 --- a/tests/github/jfbastien/papers/source/P0418r2.html +++ b/tests/github/jfbastien/papers/source/P0418r2.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2115,7 +2116,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0418r2.bs">github.com/jfbastien/papers/blob/master/source/P0418r2.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0476r0.html b/tests/github/jfbastien/papers/source/P0476r0.html index 5a6e12ad8d..9784da8b62 100644 --- a/tests/github/jfbastien/papers/source/P0476r0.html +++ b/tests/github/jfbastien/papers/source/P0476r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LEWG, LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0476r0.bs">github.com/jfbastien/papers/blob/master/source/P0476r0.bs</a> <dt>Implementation: diff --git a/tests/github/jfbastien/papers/source/P0476r1.html b/tests/github/jfbastien/papers/source/P0476r1.html index a94087be46..4b0c19576f 100644 --- a/tests/github/jfbastien/papers/source/P0476r1.html +++ b/tests/github/jfbastien/papers/source/P0476r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LEWG, LWG, CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0476r1.bs">github.com/jfbastien/papers/blob/master/source/P0476r1.bs</a> <dt>Implementation: diff --git a/tests/github/jfbastien/papers/source/P0476r2.html b/tests/github/jfbastien/papers/source/P0476r2.html index 24b4e17627..36b06ad293 100644 --- a/tests/github/jfbastien/papers/source/P0476r2.html +++ b/tests/github/jfbastien/papers/source/P0476r2.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0476r2.bs">github.com/jfbastien/papers/blob/master/source/P0476r2.bs</a> <dt>Implementation: diff --git a/tests/github/jfbastien/papers/source/P0502r0.html b/tests/github/jfbastien/papers/source/P0502r0.html index 74adc6f232..ec7ed77930 100644 --- a/tests/github/jfbastien/papers/source/P0502r0.html +++ b/tests/github/jfbastien/papers/source/P0502r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2116,7 +2117,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0502r0.bs">github.com/jfbastien/papers/blob/master/source/P0502r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0528r0.html b/tests/github/jfbastien/papers/source/P0528r0.html index 0e21f6dd34..3906a714c3 100644 --- a/tests/github/jfbastien/papers/source/P0528r0.html +++ b/tests/github/jfbastien/papers/source/P0528r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, LEWG, LWG, CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0528r0.bs">github.com/jfbastien/papers/blob/master/source/P0528r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0528r1.html b/tests/github/jfbastien/papers/source/P0528r1.html index 2778880524..544d384b18 100644 --- a/tests/github/jfbastien/papers/source/P0528r1.html +++ b/tests/github/jfbastien/papers/source/P0528r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, EWG, CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0528r1.bs">github.com/jfbastien/papers/blob/master/source/P0528r1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0528r2.html b/tests/github/jfbastien/papers/source/P0528r2.html index 202e68f6ad..3f0e28e6ea 100644 --- a/tests/github/jfbastien/papers/source/P0528r2.html +++ b/tests/github/jfbastien/papers/source/P0528r2.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0528r2.bs">github.com/jfbastien/papers/blob/master/source/P0528r2.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0690r0.html b/tests/github/jfbastien/papers/source/P0690r0.html index 523e8754cc..db667b8053 100644 --- a/tests/github/jfbastien/papers/source/P0690r0.html +++ b/tests/github/jfbastien/papers/source/P0690r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2136,7 +2137,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1 <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0690r0.bs">github.com/jfbastien/papers/blob/master/source/P0690r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0690r1.html b/tests/github/jfbastien/papers/source/P0690r1.html index fb5e12ac35..e5623e5c54 100644 --- a/tests/github/jfbastien/papers/source/P0690r1.html +++ b/tests/github/jfbastien/papers/source/P0690r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2137,7 +2138,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1 <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0690r1.bs">github.com/jfbastien/papers/blob/master/source/P0690r1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0750r0.html b/tests/github/jfbastien/papers/source/P0750r0.html index 35833d7b51..64e9016914 100644 --- a/tests/github/jfbastien/papers/source/P0750r0.html +++ b/tests/github/jfbastien/papers/source/P0750r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1 <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0750r0.bs">github.com/jfbastien/papers/blob/master/source/P0750r0.bs</a> <dt>Implementation: diff --git a/tests/github/jfbastien/papers/source/P0750r1.html b/tests/github/jfbastien/papers/source/P0750r1.html index 8c8d12103b..8e1869fd88 100644 --- a/tests/github/jfbastien/papers/source/P0750r1.html +++ b/tests/github/jfbastien/papers/source/P0750r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1 <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0750r1.bs">github.com/jfbastien/papers/blob/master/source/P0750r1.bs</a> <dt>Implementation: diff --git a/tests/github/jfbastien/papers/source/P0907R4.html b/tests/github/jfbastien/papers/source/P0907R4.html index a0794afd4f..92bd240a02 100644 --- a/tests/github/jfbastien/papers/source/P0907R4.html +++ b/tests/github/jfbastien/papers/source/P0907R4.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2114,7 +2115,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0907R4.bs">github.com/jfbastien/papers/blob/master/source/P0907R4.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0907r0.html b/tests/github/jfbastien/papers/source/P0907r0.html index 70cf9375f0..9cf1c5219e 100644 --- a/tests/github/jfbastien/papers/source/P0907r0.html +++ b/tests/github/jfbastien/papers/source/P0907r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2114,7 +2115,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0907r0.bs">github.com/jfbastien/papers/blob/master/source/P0907r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0907r1.html b/tests/github/jfbastien/papers/source/P0907r1.html index 64b8ab69d6..99febabd20 100644 --- a/tests/github/jfbastien/papers/source/P0907r1.html +++ b/tests/github/jfbastien/papers/source/P0907r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2114,7 +2115,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0907r1.bs">github.com/jfbastien/papers/blob/master/source/P0907r1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0907r2.html b/tests/github/jfbastien/papers/source/P0907r2.html index a9808ad3af..e6c04225d0 100644 --- a/tests/github/jfbastien/papers/source/P0907r2.html +++ b/tests/github/jfbastien/papers/source/P0907r2.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2114,7 +2115,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0907r2.bs">github.com/jfbastien/papers/blob/master/source/P0907r2.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P0908r0.html b/tests/github/jfbastien/papers/source/P0908r0.html index 5e5915ada9..18c7892110 100644 --- a/tests/github/jfbastien/papers/source/P0908r0.html +++ b/tests/github/jfbastien/papers/source/P0908r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 </dl> </div> <div data-fill-with="warning"></div> diff --git a/tests/github/jfbastien/papers/source/P0995r0.html b/tests/github/jfbastien/papers/source/P0995r0.html index 62597cdd64..47c4b46291 100644 --- a/tests/github/jfbastien/papers/source/P0995r0.html +++ b/tests/github/jfbastien/papers/source/P0995r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2101,7 +2102,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, LEWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0995r0.bs">github.com/jfbastien/papers/blob/master/source/P0995r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1018r5.html b/tests/github/jfbastien/papers/source/P1018r5.html index becb167303..df9d380475 100644 --- a/tests/github/jfbastien/papers/source/P1018r5.html +++ b/tests/github/jfbastien/papers/source/P1018r5.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>WG21, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r5.bs">github.com/jfbastien/papers/blob/master/source/P1018r5.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1018r6.html b/tests/github/jfbastien/papers/source/P1018r6.html index f0927613a3..c59c8712fb 100644 --- a/tests/github/jfbastien/papers/source/P1018r6.html +++ b/tests/github/jfbastien/papers/source/P1018r6.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -1975,7 +1976,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>WG21, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r6.bs">github.com/jfbastien/papers/blob/master/source/P1018r6.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1018r7.html b/tests/github/jfbastien/papers/source/P1018r7.html index a9ae3a89c9..7a4636d17a 100644 --- a/tests/github/jfbastien/papers/source/P1018r7.html +++ b/tests/github/jfbastien/papers/source/P1018r7.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>WG21, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r7.bs">github.com/jfbastien/papers/blob/master/source/P1018r7.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1018r8.html b/tests/github/jfbastien/papers/source/P1018r8.html index 36b381e356..1aaaa3e740 100644 --- a/tests/github/jfbastien/papers/source/P1018r8.html +++ b/tests/github/jfbastien/papers/source/P1018r8.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>WG21, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r8.bs">github.com/jfbastien/papers/blob/master/source/P1018r8.bs</a> </dl> @@ -2316,7 +2317,7 @@ <h3 class="heading settled" data-level="5.7" id="P1949R6"><span class="secno">5. <li data-md> <p>Not yet seen by WG14, nor the SG22 C / C++ liaison group.</p> <li data-md> - <p><strong>Highlight:</strong> C++11 uses a hand-curated list of Unicode codepoints to determine which characters are allowed in identifiers. This is flawed in many ways outlined in the paper. Replace this hand-curated list with the Unicode consortium’s recommendations for identifiers <a data-link-type="biblio" href="#biblio-uax31" title="Unicode Identifier and Pattern Syntax">[UAX31]</a>.</p> + <p><strong>Highlight:</strong> C++11 uses a hand-curated list of Unicode codepoints to determine which characters are allowed in identifiers. This is flawed in many ways outlined in the paper. Replace this hand-curated list with the Unicode consortium’s recommendations for identifiers <a data-link-type="biblio" href="#biblio-uax31" title="Unicode Identifiers and Syntax">[UAX31]</a>.</p> <li data-md> <p>🗳 <strong>Poll:</strong> Forward P1949R6 "C++ Identifier Syntax using Unicode Standard Annex 31" to Core.</p> </ul> @@ -3524,7 +3525,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-cwg1643">[CWG1643] <dd>Vinny Romano. <a href="https://wg21.link/cwg1643"><cite>Default arguments for template parameter packs</cite></a>. 17 March 2013. NAD. URL: <a href="https://wg21.link/cwg1643">https://wg21.link/cwg1643</a> <dt id="biblio-cwg1698">[CWG1698] - <dd>David Krauss. <a href="https://wg21.link/cwg1698"><cite>Files ending in \</cite></a>. 10 June 2013. open. URL: <a href="https://wg21.link/cwg1698">https://wg21.link/cwg1698</a> + <dd>David Krauss. <a href="https://wg21.link/cwg1698"><cite>Files ending in \</cite></a>. 10 June 2013. DRWP. URL: <a href="https://wg21.link/cwg1698">https://wg21.link/cwg1698</a> <dt id="biblio-cwg1790">[CWG1790] <dd>Daryle Walker. <a href="https://wg21.link/cwg1790"><cite>Ellipsis following function parameter pack</cite></a>. 1 October 2013. open. URL: <a href="https://wg21.link/cwg1790">https://wg21.link/cwg1790</a> <dt id="biblio-cwg1864">[CWG1864] @@ -3592,7 +3593,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-cwg794">[CWG794] <dd>CH. <a href="https://wg21.link/cwg794"><cite>Base-derived conversion in member type of pointer-to-member conversion</cite></a>. 3 March 2009. NAD. URL: <a href="https://wg21.link/cwg794">https://wg21.link/cwg794</a> <dt id="biblio-cwg900">[CWG900] - <dd>Thomas J. Gritzan. <a href="https://wg21.link/cwg900"><cite>Lifetime of temporaries in range-based for</cite></a>. 12 May 2009. DR. URL: <a href="https://wg21.link/cwg900">https://wg21.link/cwg900</a> + <dd>Thomas J. Gritzan. <a href="https://wg21.link/cwg900"><cite>Lifetime of temporaries in range-based for</cite></a>. 12 May 2009. C++23. URL: <a href="https://wg21.link/cwg900">https://wg21.link/cwg900</a> <dt id="biblio-cwg914">[CWG914] <dd>Gabriel Dos Reis. <a href="https://wg21.link/cwg914"><cite>Value-initialization of array types</cite></a>. 10 June 2009. open. URL: <a href="https://wg21.link/cwg914">https://wg21.link/cwg914</a> <dt id="biblio-cwg944">[CWG944] @@ -3708,5 +3709,5 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-p2223r1">[P2223R1] <dd>Corentin Jabot. <a href="https://wg21.link/p2223r1"><cite>Trimming whitespaces before line splicing</cite></a>. 17 October 2020. URL: <a href="https://wg21.link/p2223r1">https://wg21.link/p2223r1</a> <dt id="biblio-uax31">[UAX31] - <dd>Mark Davis; Robin Leroy. <a href="https://www.unicode.org/reports/tr31/tr31-37.html"><cite>Unicode Identifier and Pattern Syntax</cite></a>. 31 August 2022. Unicode Standard Annex #31. URL: <a href="https://www.unicode.org/reports/tr31/tr31-37.html">https://www.unicode.org/reports/tr31/tr31-37.html</a> + <dd>Mark Davis; Robin Leroy. <a href="https://www.unicode.org/reports/tr31/tr31-39.html"><cite>Unicode Identifiers and Syntax</cite></a>. 1 September 2023. Unicode Standard Annex #31. URL: <a href="https://www.unicode.org/reports/tr31/tr31-39.html">https://www.unicode.org/reports/tr31/tr31-39.html</a> </dl> \ No newline at end of file diff --git a/tests/github/jfbastien/papers/source/P1018r9.html b/tests/github/jfbastien/papers/source/P1018r9.html index 97408fa158..6061ed4184 100644 --- a/tests/github/jfbastien/papers/source/P1018r9.html +++ b/tests/github/jfbastien/papers/source/P1018r9.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>WG21, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r9.bs">github.com/jfbastien/papers/blob/master/source/P1018r9.bs</a> </dl> @@ -2490,7 +2491,7 @@ <h3 class="heading settled" data-level="5.7" id="P1949R6"><span class="secno">5. <li data-md> <p>Not yet seen by WG14, nor the SG22 C / C++ liaison group.</p> <li data-md> - <p><strong>Highlight:</strong> C++11 uses a hand-curated list of Unicode codepoints to determine which characters are allowed in identifiers. This is flawed in many ways outlined in the paper. Replace this hand-curated list with the Unicode consortium’s recommendations for identifiers <a data-link-type="biblio" href="#biblio-uax31" title="Unicode Identifier and Pattern Syntax">[UAX31]</a>.</p> + <p><strong>Highlight:</strong> C++11 uses a hand-curated list of Unicode codepoints to determine which characters are allowed in identifiers. This is flawed in many ways outlined in the paper. Replace this hand-curated list with the Unicode consortium’s recommendations for identifiers <a data-link-type="biblio" href="#biblio-uax31" title="Unicode Identifiers and Syntax">[UAX31]</a>.</p> <li data-md> <p>🗳 <strong>Poll:</strong> Forward P1949R6 "C++ Identifier Syntax using Unicode Standard Annex 31" to Core.</p> </ul> @@ -4169,7 +4170,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-cwg1643">[CWG1643] <dd>Vinny Romano. <a href="https://wg21.link/cwg1643"><cite>Default arguments for template parameter packs</cite></a>. 17 March 2013. NAD. URL: <a href="https://wg21.link/cwg1643">https://wg21.link/cwg1643</a> <dt id="biblio-cwg1698">[CWG1698] - <dd>David Krauss. <a href="https://wg21.link/cwg1698"><cite>Files ending in \</cite></a>. 10 June 2013. open. URL: <a href="https://wg21.link/cwg1698">https://wg21.link/cwg1698</a> + <dd>David Krauss. <a href="https://wg21.link/cwg1698"><cite>Files ending in \</cite></a>. 10 June 2013. DRWP. URL: <a href="https://wg21.link/cwg1698">https://wg21.link/cwg1698</a> <dt id="biblio-cwg1790">[CWG1790] <dd>Daryle Walker. <a href="https://wg21.link/cwg1790"><cite>Ellipsis following function parameter pack</cite></a>. 1 October 2013. open. URL: <a href="https://wg21.link/cwg1790">https://wg21.link/cwg1790</a> <dt id="biblio-cwg1864">[CWG1864] @@ -4237,7 +4238,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-cwg794">[CWG794] <dd>CH. <a href="https://wg21.link/cwg794"><cite>Base-derived conversion in member type of pointer-to-member conversion</cite></a>. 3 March 2009. NAD. URL: <a href="https://wg21.link/cwg794">https://wg21.link/cwg794</a> <dt id="biblio-cwg900">[CWG900] - <dd>Thomas J. Gritzan. <a href="https://wg21.link/cwg900"><cite>Lifetime of temporaries in range-based for</cite></a>. 12 May 2009. DR. URL: <a href="https://wg21.link/cwg900">https://wg21.link/cwg900</a> + <dd>Thomas J. Gritzan. <a href="https://wg21.link/cwg900"><cite>Lifetime of temporaries in range-based for</cite></a>. 12 May 2009. C++23. URL: <a href="https://wg21.link/cwg900">https://wg21.link/cwg900</a> <dt id="biblio-cwg914">[CWG914] <dd>Gabriel Dos Reis. <a href="https://wg21.link/cwg914"><cite>Value-initialization of array types</cite></a>. 10 June 2009. open. URL: <a href="https://wg21.link/cwg914">https://wg21.link/cwg914</a> <dt id="biblio-cwg944">[CWG944] @@ -4353,5 +4354,5 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-p2223r1">[P2223R1] <dd>Corentin Jabot. <a href="https://wg21.link/p2223r1"><cite>Trimming whitespaces before line splicing</cite></a>. 17 October 2020. URL: <a href="https://wg21.link/p2223r1">https://wg21.link/p2223r1</a> <dt id="biblio-uax31">[UAX31] - <dd>Mark Davis; Robin Leroy. <a href="https://www.unicode.org/reports/tr31/tr31-37.html"><cite>Unicode Identifier and Pattern Syntax</cite></a>. 31 August 2022. Unicode Standard Annex #31. URL: <a href="https://www.unicode.org/reports/tr31/tr31-37.html">https://www.unicode.org/reports/tr31/tr31-37.html</a> + <dd>Mark Davis; Robin Leroy. <a href="https://www.unicode.org/reports/tr31/tr31-39.html"><cite>Unicode Identifiers and Syntax</cite></a>. 1 September 2023. Unicode Standard Annex #31. URL: <a href="https://www.unicode.org/reports/tr31/tr31-39.html">https://www.unicode.org/reports/tr31/tr31-39.html</a> </dl> \ No newline at end of file diff --git a/tests/github/jfbastien/papers/source/P1152R0.html b/tests/github/jfbastien/papers/source/P1152R0.html index cf9978cdaf..2f1735d6cb 100644 --- a/tests/github/jfbastien/papers/source/P1152R0.html +++ b/tests/github/jfbastien/papers/source/P1152R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2148,7 +2149,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, LEWG, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/D1152R0.bs">github.com/jfbastien/papers/blob/master/source/D1152R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1152R1.html b/tests/github/jfbastien/papers/source/P1152R1.html index 0ac9675da4..5d8e269e8f 100644 --- a/tests/github/jfbastien/papers/source/P1152R1.html +++ b/tests/github/jfbastien/papers/source/P1152R1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2141,7 +2142,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, LEWG, EWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1152R1.bs">github.com/jfbastien/papers/blob/master/source/P1152R1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1152R2.html b/tests/github/jfbastien/papers/source/P1152R2.html index cdedbc5eb1..e22de228ea 100644 --- a/tests/github/jfbastien/papers/source/P1152R2.html +++ b/tests/github/jfbastien/papers/source/P1152R2.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LEWG, CWG, LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1152R2.bs">github.com/jfbastien/papers/blob/master/source/P1152R2.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1152R3.html b/tests/github/jfbastien/papers/source/P1152R3.html index a3eecc05c0..9674248b63 100644 --- a/tests/github/jfbastien/papers/source/P1152R3.html +++ b/tests/github/jfbastien/papers/source/P1152R3.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG, LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1152R3.bs">github.com/jfbastien/papers/blob/master/source/P1152R3.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1152R4.html b/tests/github/jfbastien/papers/source/P1152R4.html index d9dfbc42d0..4512e233b1 100644 --- a/tests/github/jfbastien/papers/source/P1152R4.html +++ b/tests/github/jfbastien/papers/source/P1152R4.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1152R4.bs">github.com/jfbastien/papers/blob/master/source/P1152R4.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1205R0.html b/tests/github/jfbastien/papers/source/P1205R0.html index fe63399f48..13cac0ae42 100644 --- a/tests/github/jfbastien/papers/source/P1205R0.html +++ b/tests/github/jfbastien/papers/source/P1205R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1205R0.bs">github.com/jfbastien/papers/blob/master/source/P1205R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1225R0.html b/tests/github/jfbastien/papers/source/P1225R0.html index a81e50b7e8..9b7c2a0c51 100644 --- a/tests/github/jfbastien/papers/source/P1225R0.html +++ b/tests/github/jfbastien/papers/source/P1225R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2096,7 +2097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LEWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1225R0.bs">github.com/jfbastien/papers/blob/master/source/P1225R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1482r0.html b/tests/github/jfbastien/papers/source/P1482r0.html index f2f6b29a20..1302a97df9 100644 --- a/tests/github/jfbastien/papers/source/P1482r0.html +++ b/tests/github/jfbastien/papers/source/P1482r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2148,7 +2149,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>EWG, SG15 <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1482R0.bs">github.com/jfbastien/papers/blob/master/source/P1482R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1831R0.html b/tests/github/jfbastien/papers/source/P1831R0.html index e894df442c..c15ebf16dc 100644 --- a/tests/github/jfbastien/papers/source/P1831R0.html +++ b/tests/github/jfbastien/papers/source/P1831R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1831R0.bs">github.com/jfbastien/papers/blob/master/source/P1831R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1831R1.html b/tests/github/jfbastien/papers/source/P1831R1.html index dc7c05b16f..bc02c8c804 100644 --- a/tests/github/jfbastien/papers/source/P1831R1.html +++ b/tests/github/jfbastien/papers/source/P1831R1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2099,7 +2100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1831R1.bs">github.com/jfbastien/papers/blob/master/source/P1831R1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P1860R0.html b/tests/github/jfbastien/papers/source/P1860R0.html index 4fbc53c35c..776619067c 100644 --- a/tests/github/jfbastien/papers/source/P1860R0.html +++ b/tests/github/jfbastien/papers/source/P1860R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LEWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1860R0.bs">github.com/jfbastien/papers/blob/master/source/P1860R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P2186R0.html b/tests/github/jfbastien/papers/source/P2186R0.html index 6cb0076efa..a2dc7e6658 100644 --- a/tests/github/jfbastien/papers/source/P2186R0.html +++ b/tests/github/jfbastien/papers/source/P2186R0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>EWG, LEWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P2186R0.bs">github.com/jfbastien/papers/blob/master/source/P2186R0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P2186R1.html b/tests/github/jfbastien/papers/source/P2186R1.html index 4ba5293202..5065167cce 100644 --- a/tests/github/jfbastien/papers/source/P2186R1.html +++ b/tests/github/jfbastien/papers/source/P2186R1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG, LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P2186R1.bs">github.com/jfbastien/papers/blob/master/source/P2186R1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/P2186R2.html b/tests/github/jfbastien/papers/source/P2186R2.html index ccc056c8d7..bc7d7dd31c 100644 --- a/tests/github/jfbastien/papers/source/P2186R2.html +++ b/tests/github/jfbastien/papers/source/P2186R2.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG, LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P2186R2.bs">github.com/jfbastien/papers/blob/master/source/P2186R2.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/bikeshed.html b/tests/github/jfbastien/papers/source/bikeshed.html index cb3df2db7e..cc12c1f525 100644 --- a/tests/github/jfbastien/papers/source/bikeshed.html +++ b/tests/github/jfbastien/papers/source/bikeshed.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -1993,7 +1994,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/bikeshed.bs">github.com/jfbastien/papers/blob/master/source/bikeshed.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/p0323r7.html b/tests/github/jfbastien/papers/source/p0323r7.html index b6359a0a89..52105fb63d 100644 --- a/tests/github/jfbastien/papers/source/p0323r7.html +++ b/tests/github/jfbastien/papers/source/p0323r7.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/p0323r7.bs">github.com/jfbastien/papers/blob/master/source/p0323r7.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/p0528r3.html b/tests/github/jfbastien/papers/source/p0528r3.html index 3a45f24a67..ef9adad3ea 100644 --- a/tests/github/jfbastien/papers/source/p0528r3.html +++ b/tests/github/jfbastien/papers/source/p0528r3.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2097,7 +2098,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P0528r3.bs">github.com/jfbastien/papers/blob/master/source/P0528r3.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/p0907r3.html b/tests/github/jfbastien/papers/source/p0907r3.html index 9ec4c21502..42329a1fa3 100644 --- a/tests/github/jfbastien/papers/source/p0907r3.html +++ b/tests/github/jfbastien/papers/source/p0907r3.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2114,7 +2115,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dd> <label for="hidedel" id="hidedel-label">Hide deleted text</label> <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/p0907r3.bs">github.com/jfbastien/papers/blob/master/source/p0907r3.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/p0995r1.html b/tests/github/jfbastien/papers/source/p0995r1.html index 94a491c799..a2e8878fcf 100644 --- a/tests/github/jfbastien/papers/source/p0995r1.html +++ b/tests/github/jfbastien/papers/source/p0995r1.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2101,7 +2102,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/p0995r1.bs">github.com/jfbastien/papers/blob/master/source/p0995r1.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/p1102r0.html b/tests/github/jfbastien/papers/source/p1102r0.html index 8764d40293..ef1628f968 100644 --- a/tests/github/jfbastien/papers/source/p1102r0.html +++ b/tests/github/jfbastien/papers/source/p1102r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2102,7 +2103,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>CWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/p1102r0.bs">https://github.com/jfbastien/papers/blob/master/source/p1102r0.bs</a> </dl> diff --git a/tests/github/jfbastien/papers/source/p1119r0.html b/tests/github/jfbastien/papers/source/p1119r0.html index cd7f094fba..d2c49a0dfd 100644 --- a/tests/github/jfbastien/papers/source/p1119r0.html +++ b/tests/github/jfbastien/papers/source/p1119r0.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2101,7 +2102,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <dt>Audience: <dd>SG1, LEWG, LWG <dt>Project: - <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++ + <dd>ISO/IEC 14882 Programming Languages — C++, ISO/IEC JTC1/SC22/WG21 <dt>Source: <dd><a href="https://github.com/jfbastien/papers/blob/master/source/p1119r0.bs">github.com/jfbastien/papers/blob/master/source/p1119r0.bs</a> </dl> diff --git a/tests/github/privacycg/is-logged-in/is-logged-in.html b/tests/github/privacycg/is-logged-in/is-logged-in.html index 3c38013ba6..00f1f1e878 100644 --- a/tests/github/privacycg/is-logged-in/is-logged-in.html +++ b/tests/github/privacycg/is-logged-in/is-logged-in.html @@ -5,6 +5,7 @@ <meta content="width=device-width" name="viewport"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> <link href="https://privacycg.github.io/is-logged-in/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -420,7 +421,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="cont </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to “The IsLoggedIn API”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to “The IsLoggedIn API”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. This document is licensed under the <a href="http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document">W3C Software and Document License</a>. @@ -449,7 +450,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -500,20 +500,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/privacycg/private-click-measurement/private-click-measurement.console.txt b/tests/github/privacycg/private-click-measurement/private-click-measurement.console.txt index acfc8d2b92..e69de29bb2 100644 --- a/tests/github/privacycg/private-click-measurement/private-click-measurement.console.txt +++ b/tests/github/privacycg/private-click-measurement/private-click-measurement.console.txt @@ -1,2 +0,0 @@ -LINE ~104: No 'dfn' refs found for 'reflect' that are marked for export. -[=reflect=] diff --git a/tests/github/privacycg/private-click-measurement/private-click-measurement.html b/tests/github/privacycg/private-click-measurement/private-click-measurement.html index 797920e455..12d7172827 100644 --- a/tests/github/privacycg/private-click-measurement/private-click-measurement.html +++ b/tests/github/privacycg/private-click-measurement/private-click-measurement.html @@ -5,6 +5,7 @@ <meta content="width=device-width" name="viewport"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> <link href="https://privacycg.github.io/private-click-measurement/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -745,7 +746,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="cont </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to “Private Click Measurement”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to “Private Click Measurement”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. This document is licensed under the <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. @@ -796,7 +797,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -905,7 +905,7 @@ <h2 class="heading settled" data-level="2" id="linkformat"><span class="secno">2 [<a class="idl-code" data-link-type="extended-attribute" href="https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions" id="ref-for-cereactions①"><c- g>CEReactions</c-></a>] <c- b>attribute</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString"><c- b>DOMString</c-></a> <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLAnchorElement" data-dfn-type="attribute" data-export data-type="DOMString" id="dom-htmlanchorelement-attributiondestination"><code><c- g>attributionDestination</c-></code></dfn>; }; </pre> - <p>The IDL attributes <code class="idl"><a data-link-type="idl" href="#dom-htmlanchorelement-attributionsourceid" id="ref-for-dom-htmlanchorelement-attributionsourceid">attributionSourceId</a></code> and <code class="idl"><a data-link-type="idl" href="#dom-htmlanchorelement-attributiondestination" id="ref-for-dom-htmlanchorelement-attributiondestination">attributionDestination</a></code> must <a data-link-type="dfn">reflect</a> the <code>attributionsourceid</code> and <code>attributiondestination</code> content attributes, respectively.</p> + <p>The IDL attributes <code class="idl"><a data-link-type="idl" href="#dom-htmlanchorelement-attributionsourceid" id="ref-for-dom-htmlanchorelement-attributionsourceid">attributionSourceId</a></code> and <code class="idl"><a data-link-type="idl" href="#dom-htmlanchorelement-attributiondestination" id="ref-for-dom-htmlanchorelement-attributiondestination">attributionDestination</a></code> must <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflect</a> the <code>attributionsourceid</code> and <code>attributiondestination</code> content attributes, respectively.</p> <p class="issue" id="issue-717d647e"><a class="self-link" href="#issue-717d647e"></a> Should these attributes be on <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/links.html#htmlhyperlinkelementutils" id="ref-for-htmlhyperlinkelementutils">HTMLHyperlinkElementUtils</a></code> instead? <a href="https://github.com/privacycg/private-click-measurement/issues/1">[Issue #1]</a></p> <p>If an element with such attributes triggers a top frame navigation that lands, possibly after HTTP redirects, on the <a data-link-type="dfn" href="#attribution-destination-website" id="ref-for-attribution-destination-website⑥">attribution destination website</a>, the user agent stores the request for click attribution as the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#tuple" id="ref-for-tuple">tuple</a> ( <a data-link-type="dfn" href="#click-source-website" id="ref-for-click-source-website③">click source website</a>, <a data-link-type="dfn" href="#attribution-destination-website" id="ref-for-attribution-destination-website⑦">attribution destination website</a>, <a data-link-type="dfn" href="#attribution-source-id" id="ref-for-attribution-source-id③">attribution source id</a> ). If any of the conditions do not hold, such as the <a data-link-type="dfn" href="#attribution-source-id" id="ref-for-attribution-source-id④">attribution source id</a> not being a valid <a data-link-type="dfn" href="#eight-bit-decimal-value" id="ref-for-eight-bit-decimal-value①">eight-bit decimal value</a>, the request for click attribution is ignored.</p> <h2 class="heading settled" data-level="3" id="triggering"><span class="secno">3. </span><span class="content">Triggering of Click Attribution</span><a class="self-link" href="#triggering"></a></h2> @@ -1095,20 +1095,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1141,6 +1127,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="402ed79d">CEReactions</span> <li><span class="dfn-paneled" id="041f209a">HTMLAnchorElement</span> <li><span class="dfn-paneled" id="154d8845">HTMLHyperlinkElementUtils</span> + <li><span class="dfn-paneled" id="5ab7b520">reflect</span> <li><span class="dfn-paneled" id="fb9bb722">site</span> </ul> <li> @@ -1410,6 +1397,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "402ed79d": {"dfnID":"402ed79d","dfnText":"CEReactions","external":true,"refSections":[{"refs":[{"id":"ref-for-cereactions"},{"id":"ref-for-cereactions\u2460"}],"title":"2. Click Source Link Format"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions"}, "4a3bf5fb": {"dfnID":"4a3bf5fb","dfnText":"concatenate","external":true,"refSections":[{"refs":[{"id":"ref-for-string-concatenate"}],"title":"6.1. Triggering Event URL"}],"url":"https://infra.spec.whatwg.org/#string-concatenate"}, "59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"},{"id":"ref-for-code-unit\u2460"},{"id":"ref-for-code-unit\u2461"},{"id":"ref-for-code-unit\u2462"}],"title":"8. N-bit decimal values"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, +"5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"}],"title":"2. Click Source Link Format"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "74903df9": {"dfnID":"74903df9","dfnText":"URL(url, base)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-url-url"}],"title":"6.1. Triggering Event URL"},{"refs":[{"id":"ref-for-dom-url-url\u2460"}],"title":"6.2. Attribution Report URL"}],"url":"https://url.spec.whatwg.org/#dom-url-url"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"}],"title":"2. Click Source Link Format"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "attribution": {"dfnID":"attribution","dfnText":"attribution","external":false,"refSections":[{"refs":[{"id":"ref-for-attribution"}],"title":"1.2. Terminology"}],"url":"#attribution"}, @@ -1839,6 +1827,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#trigger-data": {"export":true,"for_":[],"level":"","normative":true,"shortname":"private-click-measurement","spec":"private-click-measurement","status":"local","text":"trigger data","type":"dfn","url":"#trigger-data"}, "#triggering-event": {"export":true,"for_":[],"level":"","normative":true,"shortname":"private-click-measurement","spec":"private-click-measurement","status":"local","text":"triggering event","type":"dfn","url":"#triggering-event"}, "https://html.spec.whatwg.org/multipage/browsers.html#site": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"site","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#site"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"CEReactions","type":"extended-attribute","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions"}, "https://html.spec.whatwg.org/multipage/links.html#htmlhyperlinkelementutils": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLHyperlinkElementUtils","type":"interface","url":"https://html.spec.whatwg.org/multipage/links.html#htmlhyperlinkelementutils"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLAnchorElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement"}, diff --git a/tests/github/privacycg/storage-access/storage-access.console.txt b/tests/github/privacycg/storage-access/storage-access.console.txt index c0db84c40f..495e8d3a7e 100644 --- a/tests/github/privacycg/storage-access/storage-access.console.txt +++ b/tests/github/privacycg/storage-access/storage-access.console.txt @@ -21,12 +21,8 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:html; type:dfn; for:site; text:same site spec:html; type:dfn; for:/; text:same site [=same site=] -LINE ~262: No 'dfn' refs found for 'current entry' with spec 'html'. -[=current entry=] LINE ~262: No 'dfn' refs found for 'session history' with spec 'html'. [=session history=] -LINE ~264: No 'dfn' refs found for 'current entry' with spec 'html'. -[=current entry=] LINE ~286: Multiple possible 'sandboxing flag set' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/browsers.html#sandboxing-flag-set To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: diff --git a/tests/github/privacycg/storage-access/storage-access.html b/tests/github/privacycg/storage-access/storage-access.html index d02339e77b..87af436302 100644 --- a/tests/github/privacycg/storage-access/storage-access.html +++ b/tests/github/privacycg/storage-access/storage-access.html @@ -5,6 +5,7 @@ <meta content="width=device-width" name="viewport"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> <link href="https://privacycg.github.io/storage-access/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -712,7 +713,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="cont </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 the Contributors to “The Storage Access API”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 the Contributors to “The Storage Access API”, published by the <a href="http://www.w3.org/community/privacycg/">Privacy Community Group</a>. This document is licensed under the <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. @@ -765,7 +766,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -1006,10 +1006,10 @@ <h4 class="heading settled" data-level="3.2.1" id="ua-policy"><span class="secno </ol> <p class="issue" id="issue-65ce4cf9"><a class="self-link" href="#issue-65ce4cf9"></a> <a href="https://github.com/privacycg/storage-access/pull/24#discussion_r408784492">since this is UA-defined, does it make sense to follow-up separately with a user prompt?</a></p> <h3 class="heading settled" data-level="3.3" id="navigation"><span class="secno">3.3. </span><span class="content">Changes to navigation</span><a class="self-link" href="#navigation"></a></h3> - <p>Before changing the <a data-link-type="dfn">current entry</a> of a <a data-link-type="dfn">session history</a>, run the following steps:</p> + <p>Before changing the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry" id="ref-for-navigation-current-entry">current entry</a> of a <a data-link-type="dfn">session history</a>, run the following steps:</p> <ol> <li data-md> - <p>Let <var>doc</var> be <a data-link-type="dfn">current entry</a>'s <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#document" id="ref-for-document①②">Document</a></code>.</p> + <p>Let <var>doc</var> be <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry" id="ref-for-navigation-current-entry①">current entry</a>'s <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#document" id="ref-for-document①②">Document</a></code>.</p> <li data-md> <p>Let <var>map</var> be the result of <a data-link-type="dfn" href="#obtain-the-storage-access-map" id="ref-for-obtain-the-storage-access-map④">obtaining the storage access map</a> for <var>doc</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#concept-document-bc" id="ref-for-concept-document-bc⑥">browsing context</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context" id="ref-for-top-level-browsing-context⑦">top-level browsing context</a>.</p> <li data-md> @@ -1184,20 +1184,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1253,6 +1239,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3b2ff63e">browsing context</span> <li><span class="dfn-paneled" id="aca22383">consume user activation</span> <li><span class="dfn-paneled" id="a1e6e861">cookie</span> + <li><span class="dfn-paneled" id="cff2c60f">current entry</span> <li><span class="dfn-paneled" id="102df61f">enqueue the following steps</span> <li><span class="dfn-paneled" id="87fcd40c">iframe</span> <li><span class="dfn-paneled" id="602b1a68">obtain a site</span> @@ -1605,6 +1592,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c62cd7cf": {"dfnID":"c62cd7cf","dfnText":"origin","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-origin"},{"id":"ref-for-concept-document-origin\u2460"}],"title":"3.2. Changes to Document"}],"url":"https://dom.spec.whatwg.org/#concept-document-origin"}, "c63519ed": {"dfnID":"c63519ed","dfnText":"top-level origin","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-environment-top-level-origin"}],"title":"3. The Storage Access API"},{"refs":[{"id":"ref-for-concept-environment-top-level-origin\u2460"}],"title":"3.1. User Agent state related to storage access"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-top-level-origin"}, "ca3ca4ae": {"dfnID":"ca3ca4ae","dfnText":"url parser","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-parser"}],"title":"6.1. Set Storage Access"}],"url":"https://url.spec.whatwg.org/#concept-url-parser"}, +"cff2c60f": {"dfnID":"cff2c60f","dfnText":"current entry","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-current-entry"},{"id":"ref-for-navigation-current-entry\u2460"}],"title":"3.3. Changes to navigation"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry"}, "d695a1e4": {"dfnID":"d695a1e4","dfnText":"current browsing context","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-current-browsing-context"},{"id":"ref-for-dfn-current-browsing-context\u2460"},{"id":"ref-for-dfn-current-browsing-context\u2461"}],"title":"6.1. Set Storage Access"}],"url":"https://w3c.github.io/webdriver/webdriver-spec.html#dfn-current-browsing-context"}, "d8049b98": {"dfnID":"d8049b98","dfnText":"relevant agent","external":true,"refSections":[{"refs":[{"id":"ref-for-relevant-agent"}],"title":"3.1. User Agent state related to storage access"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#relevant-agent"}, "dacde8b5": {"dfnID":"dacde8b5","dfnText":"a new promise","external":true,"refSections":[{"refs":[{"id":"ref-for-a-new-promise"},{"id":"ref-for-a-new-promise\u2460"}],"title":"3.2. Changes to Document"}],"url":"https://webidl.spec.whatwg.org/#a-new-promise"}, @@ -2059,6 +2047,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/infrastructure.html#enqueue-the-following-steps": {"export":true,"for_":["parallel queue"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"enqueue the following steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#enqueue-the-following-steps"}, "https://html.spec.whatwg.org/multipage/interaction.html#consume-user-activation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"consume user activation","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#consume-user-activation"}, "https://html.spec.whatwg.org/multipage/interaction.html#transient-activation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"transient activation","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#transient-activation"}, +"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"current entry","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-current-entry"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-top-level-origin": {"export":true,"for_":["environment"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"top-level origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-top-level-origin"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-origin": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-origin"}, diff --git a/tests/github/w3c/FileAPI/index.console.txt b/tests/github/w3c/FileAPI/index.console.txt index ca6c7d8b37..f3ef4d18f5 100644 --- a/tests/github/w3c/FileAPI/index.console.txt +++ b/tests/github/w3c/FileAPI/index.console.txt @@ -1,3 +1,4 @@ +LINK ERROR: Obsolete biblio ref: [rfc4122] is replaced by [rfc9562]. Either update the reference, or use [rfc4122 obsolete] if this is an intentionally-obsolete reference. LINK ERROR: No 'interface' refs found for 'ReadableStream' with spec 'fetch'. <a data-link-type="idl-name" data-lt="ReadableStream">ReadableStream</a> LINE ~269: No 'dfn' refs found for 'construct a readablestream object'. @@ -16,12 +17,26 @@ LINE ~581: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] LINE ~597: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] +LINK ERROR: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:fileapi; type:event; for:FileReader; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +{{error!!event}} LINE ~943: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] LINE ~954: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] LINE ~957: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] +LINK ERROR: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:fileapi; type:event; for:FileReader; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +{{abort}} LINE ~1125: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] LINE ~1129: No 'dfn' refs found for 'context object' that are marked for export. diff --git a/tests/github/w3c/FileAPI/index.html b/tests/github/w3c/FileAPI/index.html index fb0e0a85ef..3d7326ec04 100644 --- a/tests/github/w3c/FileAPI/index.html +++ b/tests/github/w3c/FileAPI/index.html @@ -981,7 +981,7 @@ <h1 class="p-name no-ref" id="title">File API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1023,8 +1023,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -1821,7 +1821,7 @@ <h3 class="heading settled" data-level="4.2" id="file-attrs"><span class="secno" and thus represents file data that can be read into memory at the time a <a data-link-type="dfn" href="#readOperation" id="ref-for-readOperation">read operation</a> is initiated. User agents must process reads on files that no longer exist at the time of read as <a data-link-type="dfn" href="#file-error-read" id="ref-for-file-error-read①">errors</a>, throwing a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notfounderror" id="ref-for-notfounderror">NotFoundError</a></code> exception -if using a <code class="idl"><a data-link-type="idl" href="#dfn-FileReaderSync" id="ref-for-dfn-FileReaderSync①">FileReaderSync</a></code> on a Web Worker <a data-link-type="biblio" href="#biblio-workers" title="Web Workers">[Workers]</a> or firing an <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event">error</a></code> event +if using a <code class="idl"><a data-link-type="idl" href="#dfn-FileReaderSync" id="ref-for-dfn-FileReaderSync①">FileReaderSync</a></code> on a Web Worker <a data-link-type="biblio" href="#biblio-workers" title="Web Workers">[Workers]</a> or firing an <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> event with the <code class="idl"><a class="idl-code" data-link-type="attribute" href="#dom-filereader-error" id="ref-for-dom-filereader-error">error</a></code> attribute returning a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#notfounderror" id="ref-for-notfounderror①">NotFoundError</a></code>.</p> <div class="example" id="example-c4014f19"> <a class="self-link" href="#example-c4014f19"></a> In the examples below, metadata from a file object is displayed meaningfully, and a file object is created with a name and a last modified date. @@ -2026,7 +2026,7 @@ <h3 class="heading settled" data-level="6.2" id="APIASynch"><span class="secno"> <li data-md> <p>Set <var>fr</var>’s <a data-link-type="dfn" href="#filereader-error" id="ref-for-filereader-error②">error</a> to <var>error</var>.</p> <li data-md> - <p><a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event②">Fire a progress event</a> called <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event①">error</a></code> at <var>fr</var>.</p> + <p><a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event②">Fire a progress event</a> called <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> at <var>fr</var>.</p> </ol> <li data-md> <p>Else:</p> @@ -2038,7 +2038,7 @@ <h3 class="heading settled" data-level="6.2" id="APIASynch"><span class="secno"> </ol> <li data-md> <p>If <var>fr</var>’s <a data-link-type="dfn" href="#filereader-state" id="ref-for-filereader-state④">state</a> is not <code>"loading"</code>, <a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event④">fire a progress event</a> called <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event">loadend</a></code> at the <var>fr</var>.</p> - <p class="note" role="note"><span class="marker">Note:</span> Event handler for the <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event①">load</a></code> or <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event②">error</a></code> events could have started another load, + <p class="note" role="note"><span class="marker">Note:</span> Event handler for the <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event①">load</a></code> or <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> events could have started another load, if that happens the <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event①">loadend</a></code> event for this load is not fired.</p> </ol> <li data-md> @@ -2049,10 +2049,10 @@ <h3 class="heading settled" data-level="6.2" id="APIASynch"><span class="secno"> <li data-md> <p>Set <var>fr</var>’s <a data-link-type="dfn" href="#filereader-error" id="ref-for-filereader-error③">error</a> to <var>error</var>.</p> <li data-md> - <p><a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event⑤">Fire a progress event</a> called <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event③">error</a></code> at <var>fr</var>.</p> + <p><a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event⑤">Fire a progress event</a> called <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> at <var>fr</var>.</p> <li data-md> <p>If <var>fr</var>’s <a data-link-type="dfn" href="#filereader-state" id="ref-for-filereader-state⑥">state</a> is not <code>"loading"</code>, <a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event⑥">fire a progress event</a> called <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event②">loadend</a></code> at <var>fr</var>.</p> - <p class="note" role="note"><span class="marker">Note:</span> Event handler for the <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event④">error</a></code> event could have started another load, + <p class="note" role="note"><span class="marker">Note:</span> Event handler for the <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> event could have started another load, if that happens the <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event③">loadend</a></code> event for this load is not fired.</p> </ol> </ol> @@ -2076,10 +2076,10 @@ <h4 class="heading settled" data-level="6.2.1" id="event-handler-attributes-sect <td><code class="idl"><a data-link-type="idl" href="#dfn-progress-event" id="ref-for-dfn-progress-event①">progress</a></code> <tr> <td><dfn class="dfn-paneled idl-code" data-dfn-for="FileReader" data-dfn-type="attribute" data-export id="dfn-onabort"><code>onabort</code></dfn> - <td><code class="idl"><a data-link-type="idl" href="#dfn-abort-event" id="ref-for-dfn-abort-event">abort</a></code> + <td><code class="idl"><a data-link-type="idl">abort</a></code> <tr> <td><dfn class="dfn-paneled idl-code" data-dfn-for="FileReader" data-dfn-type="attribute" data-export id="dfn-onerror"><code>onerror</code></dfn> - <td><code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event⑤">error</a></code> + <td><code class="idl"><a class="idl-code" data-link-type="event">error</a></code> <tr> <td><dfn class="dfn-paneled idl-code" data-dfn-for="FileReader" data-dfn-type="attribute" data-export id="dfn-onload"><code>onload</code></dfn> <td><code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event②">load</a></code> @@ -2149,7 +2149,7 @@ <h5 class="heading settled" data-level="6.2.3.5" id="abort"><span class="secno"> <li data-md> <p><a data-link-type="dfn" href="#terminate-an-algorithm" id="ref-for-terminate-an-algorithm①">Terminate the algorithm</a> for the <a data-link-type="dfn" href="#read-method" id="ref-for-read-method⑤">read method</a> being processed.</p> <li data-md> - <p><a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event⑦">Fire a progress event</a> called <code class="idl"><a data-link-type="idl" href="#dfn-abort-event" id="ref-for-dfn-abort-event①">abort</a></code> at the <a data-link-type="dfn">context object</a>.</p> + <p><a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event⑦">Fire a progress event</a> called <code class="idl"><a data-link-type="idl">abort</a></code> at the <a data-link-type="dfn">context object</a>.</p> <li data-md> <p>If <a data-link-type="dfn">context object</a>'s <a data-link-type="dfn" href="#filereader-state" id="ref-for-filereader-state①①">state</a> is not <code>"loading"</code>, <a data-link-type="dfn" href="#fire-a-progress-event" id="ref-for-fire-a-progress-event⑧">fire a progress event</a> called <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event⑤">loadend</a></code> at the <a data-link-type="dfn">context object</a>.</p> </ol> @@ -2262,7 +2262,7 @@ <h4 class="heading settled" data-level="6.4.2" id="eventInvariants"><span class= <li data-md> <p>the event handler function for a <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event③">load</a></code> event initiates a new read</p> <li data-md> - <p>the event handler function for a <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event⑥">error</a></code> event initiates a new read.</p> + <p>the event handler function for a <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> event initiates a new read.</p> </ul> <p class="note" role="note"><span class="marker">Note:</span> The events <code class="idl"><a data-link-type="idl" href="#dfn-loadstart-event" id="ref-for-dfn-loadstart-event④">loadstart</a></code> and <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event⑦">loadend</a></code> are not coupled in a one-to-one manner.</p> <div class="example" id="example-4eee468a"> @@ -2288,10 +2288,10 @@ <h4 class="heading settled" data-level="6.4.2" id="eventInvariants"><span class= <li data-md> <p>No <code class="idl"><a data-link-type="idl" href="#dfn-progress-event" id="ref-for-dfn-progress-event③">progress</a></code> event fires before <code class="idl"><a data-link-type="idl" href="#dfn-loadstart-event" id="ref-for-dfn-loadstart-event⑤">loadstart</a></code>.</p> <li data-md> - <p>No <code class="idl"><a data-link-type="idl" href="#dfn-progress-event" id="ref-for-dfn-progress-event④">progress</a></code> event fires after any one of <code class="idl"><a data-link-type="idl" href="#dfn-abort-event" id="ref-for-dfn-abort-event②">abort</a></code>, <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event④">load</a></code>, and <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event⑦">error</a></code> have fired. -At most one of <code class="idl"><a data-link-type="idl" href="#dfn-abort-event" id="ref-for-dfn-abort-event③">abort</a></code>, <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event⑤">load</a></code>, and <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event⑧">error</a></code> fire for a given read.</p> + <p>No <code class="idl"><a data-link-type="idl" href="#dfn-progress-event" id="ref-for-dfn-progress-event④">progress</a></code> event fires after any one of <code class="idl"><a data-link-type="idl">abort</a></code>, <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event④">load</a></code>, and <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> have fired. +At most one of <code class="idl"><a data-link-type="idl">abort</a></code>, <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event⑤">load</a></code>, and <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> fire for a given read.</p> <li data-md> - <p>No <code class="idl"><a data-link-type="idl" href="#dfn-abort-event" id="ref-for-dfn-abort-event④">abort</a></code>, <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event⑥">load</a></code>, or <code class="idl"><a class="idl-code" data-link-type="event" href="#dfn-error-event" id="ref-for-dfn-error-event⑨">error</a></code> event fires after <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event⑧">loadend</a></code>.</p> + <p>No <code class="idl"><a data-link-type="idl">abort</a></code>, <code class="idl"><a data-link-type="idl" href="#dfn-load-event" id="ref-for-dfn-load-event⑥">load</a></code>, or <code class="idl"><a class="idl-code" data-link-type="event">error</a></code> event fires after <code class="idl"><a data-link-type="idl" href="#dfn-loadend-event" id="ref-for-dfn-loadend-event⑧">loadend</a></code>.</p> </ol> <h3 class="heading settled" data-level="6.5" id="readingOnThreads"><span class="secno">6.5. </span><span class="content">Reading on Threads</span><a class="self-link" href="#readingOnThreads"></a></h3> <p>Web Workers allow for the use of synchronous <code class="idl"><a data-link-type="idl" href="#dfn-file" id="ref-for-dfn-file③④">File</a></code> or <code class="idl"><a data-link-type="idl" href="#dfn-Blob" id="ref-for-dfn-Blob④④">Blob</a></code> read APIs, @@ -2522,7 +2522,7 @@ <h3 class="heading settled" data-level="8.2" id="url-model"><span class="secno"> <li data-md> <p>Append U+0024 SOLIDUS (<code>/</code>) to <var>result</var>.</p> <li data-md> - <p>Generate a UUID <a data-link-type="biblio" href="#biblio-rfc4122" title="A Universally Unique IDentifier (UUID) URN Namespace">[RFC4122]</a> as a string and append it to <var>result</var>.</p> + <p>Generate a UUID <a data-link-type="biblio" href="#biblio-rfc4122" title="Universally Unique IDentifiers (UUIDs)">[RFC4122]</a> as a string and append it to <var>result</var>.</p> <li data-md> <p>Return <var>result</var>.</p> </ol> @@ -2789,20 +2789,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3054,7 +3056,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="12d6b9a8">values</span> </ul> <li> - <a data-link-type="biblio">[MEDIA-SOURCE]</a> defines the following terms: + <a data-link-type="biblio">[MEDIA-SOURCE-2]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="1cd4985f">MediaSource</span> </ul> @@ -3136,8 +3138,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> - <dt id="biblio-media-source">[MEDIA-SOURCE] - <dd>Matthew Wolenetz; et al. <a href="https://w3c.github.io/media-source/"><cite>Media Source Extensions™</cite></a>. URL: <a href="https://w3c.github.io/media-source/">https://w3c.github.io/media-source/</a> + <dt id="biblio-media-source-2">[MEDIA-SOURCE-2] + <dd>Jean-Yves Avenard; Mark Watson. <a href="https://w3c.github.io/media-source/"><cite>Media Source Extensions™</cite></a>. URL: <a href="https://w3c.github.io/media-source/">https://w3c.github.io/media-source/</a> <dt id="biblio-mimesniff">[MIMESNIFF] <dd>Gordon P. Hemsley. <a href="https://mimesniff.spec.whatwg.org/"><cite>MIME Sniffing Standard</cite></a>. Living Standard. URL: <a href="https://mimesniff.spec.whatwg.org/">https://mimesniff.spec.whatwg.org/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -3145,7 +3147,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2397">[RFC2397] <dd>L. Masinter. <a href="https://www.rfc-editor.org/rfc/rfc2397"><cite>The "data" URL scheme</cite></a>. August 1998. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc2397">https://www.rfc-editor.org/rfc/rfc2397</a> <dt id="biblio-rfc4122">[RFC4122] - <dd>P. Leach; M. Mealling; R. Salz. <a href="https://www.rfc-editor.org/rfc/rfc4122"><cite>A Universally Unique IDentifier (UUID) URN Namespace</cite></a>. July 2005. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc4122">https://www.rfc-editor.org/rfc/rfc4122</a> + <dd>K. Davis; B. Peabody; P. Leach. <a href="https://www.rfc-editor.org/rfc/rfc9562"><cite>Universally Unique IDentifiers (UUIDs)</cite></a>. May 2024. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9562">https://www.rfc-editor.org/rfc/rfc9562</a> <dt id="biblio-streams">[STREAMS] <dd>Adam Rice; et al. <a href="https://streams.spec.whatwg.org/"><cite>Streams Standard</cite></a>. Living Standard. URL: <a href="https://streams.spec.whatwg.org/">https://streams.spec.whatwg.org/</a> <dt id="biblio-url">[URL] @@ -3495,7 +3497,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FileList/item" title="The item() method of the FileList API returns a File object representing the file at the specified index in the file list.">FileList/item</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3511,7 +3513,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FileList/length" title="The read-only FileList length property returns the number of files in the FileList.">FileList/length</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3527,7 +3529,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FileList" title="An object of this type is returned by the files property of the HTML <input> element; this lets you access the list of files selected with the <input type=&quot;file&quot;> element. It&apos;s also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage.">FileList</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3889,13 +3891,29 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="filereadersyncConstrctr"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FileReaderSync/FileReaderSync" title="The FileReaderSync() constructor creates a new FileReaderSync.">FileReaderSync/FileReaderSync</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>8+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>7+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="readAsArrayBufferSyncSection"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FileReaderSync/readAsArrayBuffer" title="The readAsArrayBuffer() method of the FileReaderSync interface allows to read File or Blob objects in a synchronous way into an ArrayBuffer. This interface is only available in workers as it enables synchronous I/O that could potentially block.">FileReaderSync/readAsArrayBuffer</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>8+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>7+</span></span> + <span class="firefox yes"><span>Firefox</span><span>8+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>9+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3956,7 +3974,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dfn-createObjectURL"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL" title="The URL.createObjectURL() static method creates a string containing a URL representing the object given in the parameter.">URL/createObjectURL</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL_static" title="The URL.createObjectURL() static method creates a string containing a URL representing the object given in the parameter.">URL/createObjectURL_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> @@ -3974,7 +3992,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dfn-revokeObjectURL"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL" title="The URL.revokeObjectURL() static method releases an existing object URL which was previously created by calling URL.createObjectURL().">URL/revokeObjectURL</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL_static" title="The URL.revokeObjectURL() static method releases an existing object URL which was previously created by calling URL.createObjectURL().">URL/revokeObjectURL_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari yes"><span>Safari</span><span>6+</span></span><span class="chrome yes"><span>Chrome</span><span>19+</span></span> @@ -4300,12 +4318,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dfn-FilePropertyBag": {"dfnID":"dfn-FilePropertyBag","dfnText":"FilePropertyBag","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-FilePropertyBag"}],"title":"4. The File Interface"},{"refs":[{"id":"ref-for-dfn-FilePropertyBag\u2460"}],"title":"4.1. Constructor"},{"refs":[{"id":"ref-for-dfn-FilePropertyBag\u2461"}],"title":"4.1.1. Constructor Parameters"}],"url":"#dfn-FilePropertyBag"}, "dfn-FileReaderSync": {"dfnID":"dfn-FileReaderSync","dfnText":"FileReaderSync","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-FileReaderSync"}],"title":"3.2. Attributes"},{"refs":[{"id":"ref-for-dfn-FileReaderSync\u2460"}],"title":"4.2. Attributes"},{"refs":[{"id":"ref-for-dfn-FileReaderSync\u2461"},{"id":"ref-for-dfn-FileReaderSync\u2462"}],"title":"6.2.3. Reading a File or Blob"},{"refs":[{"id":"ref-for-dfn-FileReaderSync\u2463"}],"title":"6.5. Reading on Threads"},{"refs":[{"id":"ref-for-dfn-FileReaderSync\u2464"}],"title":"6.5.1. The FileReaderSync API"},{"refs":[{"id":"ref-for-dfn-FileReaderSync\u2465"}],"title":"6.5.1.1. Constructors"}],"url":"#dfn-FileReaderSync"}, "dfn-abort": {"dfnID":"dfn-abort","dfnText":"abort()","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-abort"}],"title":"2. Terminology and Algorithms"},{"refs":[{"id":"ref-for-dfn-abort\u2460"}],"title":"6.2. The FileReader API"},{"refs":[{"id":"ref-for-dfn-abort\u2461"}],"title":"6.2.2. FileReader States"},{"refs":[{"id":"ref-for-dfn-abort\u2462"}],"title":"6.2.3.5. The abort() method"},{"refs":[{"id":"ref-for-dfn-abort\u2463"}],"title":"6.4.1. Event Summary"},{"refs":[{"id":"ref-for-dfn-abort\u2464"}],"title":"6.4.2. Summary of Event Invariants"}],"url":"#dfn-abort"}, -"dfn-abort-event": {"dfnID":"dfn-abort-event","dfnText":"abort","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-abort-event"}],"title":"6.2.1. Event Handler Content Attributes"},{"refs":[{"id":"ref-for-dfn-abort-event\u2460"}],"title":"6.2.3.5. The abort() method"},{"refs":[{"id":"ref-for-dfn-abort-event\u2461"},{"id":"ref-for-dfn-abort-event\u2462"},{"id":"ref-for-dfn-abort-event\u2463"}],"title":"6.4.2. Summary of Event Invariants"}],"url":"#dfn-abort-event"}, +"dfn-abort-event": {"dfnID":"dfn-abort-event","dfnText":"abort","external":false,"refSections":[],"url":"#dfn-abort-event"}, "dfn-blobParts": {"dfnID":"dfn-blobParts","dfnText":"blobParts","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-blobParts"}],"title":"3. The Blob Interface and Binary Data"},{"refs":[{"id":"ref-for-dfn-blobParts\u2460"}],"title":"3.1. Constructors"},{"refs":[{"id":"ref-for-dfn-blobParts\u2461"}],"title":"3.1.1. Constructor Parameters"}],"url":"#dfn-blobParts"}, "dfn-contentTypeBlob": {"dfnID":"dfn-contentTypeBlob","dfnText":"contentType","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-contentTypeBlob"}],"title":"3. The Blob Interface and Binary Data"},{"refs":[{"id":"ref-for-dfn-contentTypeBlob\u2460"},{"id":"ref-for-dfn-contentTypeBlob\u2461"},{"id":"ref-for-dfn-contentTypeBlob\u2462"},{"id":"ref-for-dfn-contentTypeBlob\u2463"}],"title":"3.3.1. The slice() method"}],"url":"#dfn-contentTypeBlob"}, "dfn-createObjectURL": {"dfnID":"dfn-createObjectURL","dfnText":"createObjectURL(obj)","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-createObjectURL"}],"title":"8.1. Introduction"},{"refs":[{"id":"ref-for-dfn-createObjectURL\u2460"}],"title":"8.4. Creating and Revoking a blob URL"},{"refs":[{"id":"ref-for-dfn-createObjectURL\u2461"}],"title":"8.4.1. Examples of blob URL Creation and Revocation"}],"url":"#dfn-createObjectURL"}, "dfn-end": {"dfnID":"dfn-end","dfnText":"end","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-end"}],"title":"3. The Blob Interface and Binary Data"},{"refs":[{"id":"ref-for-dfn-end\u2460"},{"id":"ref-for-dfn-end\u2461"},{"id":"ref-for-dfn-end\u2462"},{"id":"ref-for-dfn-end\u2463"}],"title":"3.3.1. The slice() method"}],"url":"#dfn-end"}, -"dfn-error-event": {"dfnID":"dfn-error-event","dfnText":"error","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-error-event"}],"title":"4.2. Attributes"},{"refs":[{"id":"ref-for-dfn-error-event\u2460"},{"id":"ref-for-dfn-error-event\u2461"},{"id":"ref-for-dfn-error-event\u2462"},{"id":"ref-for-dfn-error-event\u2463"}],"title":"6.2. The FileReader API"},{"refs":[{"id":"ref-for-dfn-error-event\u2464"}],"title":"6.2.1. Event Handler Content Attributes"},{"refs":[{"id":"ref-for-dfn-error-event\u2465"},{"id":"ref-for-dfn-error-event\u2466"},{"id":"ref-for-dfn-error-event\u2467"},{"id":"ref-for-dfn-error-event\u2468"}],"title":"6.4.2. Summary of Event Invariants"}],"url":"#dfn-error-event"}, +"dfn-error-event": {"dfnID":"dfn-error-event","dfnText":"error","external":false,"refSections":[],"url":"#dfn-error-event"}, "dfn-file": {"dfnID":"dfn-file","dfnText":"File","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-file\u2462"},{"id":"ref-for-dfn-file\u2463"},{"id":"ref-for-dfn-file\u2464"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-dfn-file\u2465"}],"title":"3. The Blob Interface and Binary Data"},{"refs":[{"id":"ref-for-dfn-file\u2466"},{"id":"ref-for-dfn-file\u2467"}],"title":"3.3.1. The slice() method"},{"refs":[{"id":"ref-for-dfn-file\u2468"},{"id":"ref-for-dfn-file\u2460\u24ea"},{"id":"ref-for-dfn-file\u2460\u2460"},{"id":"ref-for-dfn-file\u2460\u2461"},{"id":"ref-for-dfn-file\u2460\u2462"},{"id":"ref-for-dfn-file\u2460\u2463"},{"id":"ref-for-dfn-file\u2460\u2464"}],"title":"4. The File Interface"},{"refs":[{"id":"ref-for-dfn-file\u2460\u2465"},{"id":"ref-for-dfn-file\u2460\u2466"}],"title":"4.1. Constructor"},{"refs":[{"id":"ref-for-dfn-file\u2460\u2467"}],"title":"4.1.1. Constructor Parameters"},{"refs":[{"id":"ref-for-dfn-file\u2460\u2468"},{"id":"ref-for-dfn-file\u2461\u24ea"},{"id":"ref-for-dfn-file\u2461\u2460"},{"id":"ref-for-dfn-file\u2461\u2461"}],"title":"4.2. Attributes"},{"refs":[{"id":"ref-for-dfn-file\u2461\u2462"},{"id":"ref-for-dfn-file\u2461\u2463"}],"title":"5. The FileList Interface"},{"refs":[{"id":"ref-for-dfn-file\u2461\u2464"},{"id":"ref-for-dfn-file\u2461\u2465"},{"id":"ref-for-dfn-file\u2461\u2466"},{"id":"ref-for-dfn-file\u2461\u2467"},{"id":"ref-for-dfn-file\u2461\u2468"}],"title":"5.2. Methods and Parameters"},{"refs":[{"id":"ref-for-dfn-file\u2462\u24ea"}],"title":"6.1. The File Reading Task Source"},{"refs":[{"id":"ref-for-dfn-file\u2462\u2460"},{"id":"ref-for-dfn-file\u2462\u2461"},{"id":"ref-for-dfn-file\u2462\u2462"}],"title":"6.2.2. FileReader States"},{"refs":[{"id":"ref-for-dfn-file\u2462\u2463"}],"title":"6.5. Reading on Threads"},{"refs":[{"id":"ref-for-dfn-file\u2462\u2464"}],"title":"6.5.1. The FileReaderSync API"},{"refs":[{"id":"ref-for-dfn-file\u2462\u2465"},{"id":"ref-for-dfn-file\u2462\u2466"},{"id":"ref-for-dfn-file\u2462\u2467"}],"title":"7. Errors and Exceptions"},{"refs":[{"id":"ref-for-dfn-file\u2462\u2468"},{"id":"ref-for-dfn-file\u2463\u24ea"},{"id":"ref-for-dfn-file\u2463\u2460"},{"id":"ref-for-dfn-file\u2463\u2461"},{"id":"ref-for-dfn-file\u2463\u2462"},{"id":"ref-for-dfn-file\u2463\u2463"}],"title":"7.1. Throwing an Exception or Returning an Error"},{"refs":[{"id":"ref-for-dfn-file\u2463\u2464"}],"title":"10. Requirements and Use Cases"}],"url":"#dfn-file"}, "dfn-fileBits": {"dfnID":"dfn-fileBits","dfnText":"fileBits","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-fileBits"}],"title":"4. The File Interface"},{"refs":[{"id":"ref-for-dfn-fileBits\u2460"}],"title":"4.1. Constructor"}],"url":"#dfn-fileBits"}, "dfn-fileName": {"dfnID":"dfn-fileName","dfnText":"fileName","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-fileName"}],"title":"4. The File Interface"},{"refs":[{"id":"ref-for-dfn-fileName\u2460"},{"id":"ref-for-dfn-fileName\u2461"}],"title":"4.1. Constructor"}],"url":"#dfn-fileName"}, @@ -4869,12 +4887,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#dfn-FilePropertyBag": {"export":true,"for_":[],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"FilePropertyBag","type":"dictionary","url":"#dfn-FilePropertyBag"}, "#dfn-FileReaderSync": {"export":true,"for_":[],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"FileReaderSync","type":"interface","url":"#dfn-FileReaderSync"}, "#dfn-abort": {"export":true,"for_":["FileReader"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"abort()","type":"method","url":"#dfn-abort"}, -"#dfn-abort-event": {"export":true,"for_":["FileReader"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"abort","type":"event","url":"#dfn-abort-event"}, "#dfn-blobParts": {"export":true,"for_":["Blob/Blob(blobParts, options)"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"blobParts","type":"argument","url":"#dfn-blobParts"}, "#dfn-contentTypeBlob": {"export":true,"for_":["Blob/slice(start, end, contentType)"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"contentType","type":"argument","url":"#dfn-contentTypeBlob"}, "#dfn-createObjectURL": {"export":true,"for_":["URL"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"createObjectURL(obj)","type":"method","url":"#dfn-createObjectURL"}, "#dfn-end": {"export":true,"for_":["Blob/slice(start, end, contentType)"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"end","type":"argument","url":"#dfn-end"}, -"#dfn-error-event": {"export":true,"for_":["FileReader"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"error","type":"event","url":"#dfn-error-event"}, "#dfn-file": {"export":true,"for_":[],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"File","type":"interface","url":"#dfn-file"}, "#dfn-fileBits": {"export":true,"for_":["File/File(fileBits, fileName, options)"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"fileBits","type":"argument","url":"#dfn-fileBits"}, "#dfn-fileName": {"export":true,"for_":["File/File(fileBits, fileName, options)"],"level":"","normative":true,"shortname":"fileapi","spec":"fileapi","status":"local","text":"fileName","type":"argument","url":"#dfn-fileName"}, diff --git a/tests/github/w3c/IndexedDB/index.console.txt b/tests/github/w3c/IndexedDB/index.console.txt index 01b1326745..56db27d4b6 100644 --- a/tests/github/w3c/IndexedDB/index.console.txt +++ b/tests/github/w3c/IndexedDB/index.console.txt @@ -1,36 +1,145 @@ +LINE 1048: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="1048" data-link-type="event" data-lt="error"><code bs-line-number="1048" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> LINE ~1047: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=event=] +LINE 1261: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="1261" data-link-type="event" data-lt="error"><code bs-line-number="1261" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 2047: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="2047" data-link-type="event" data-lt="error"><code bs-line-number="2047" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 2239: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="2239" data-link-type="event" data-lt="error"><code bs-line-number="2239" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 2299: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="2299" data-link-type="event" data-lt="error"><code bs-line-number="2299" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 2412: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:transaction; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="2412" data-link-type="event" data-lt="abort"><code bs-line-number="2412" bs-autolink-syntax="`abort`" bs-opaque="">abort</code></a> +LINE 2412: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="2412" data-link-type="event" data-lt="error"><code bs-line-number="2412" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 2701: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:transaction; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="2701" data-link-type="event" data-lt="abort"><code bs-line-number="2701" bs-autolink-syntax="`abort`" bs-opaque="">abort</code></a> LINE 2703: Multiple possible 'close' event refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/indices.html#event-close To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:html; type:event; text:close +spec:html; type:event; for:CloseWatcher; text:close +spec:html; type:event; for:HTMLElement; text:close +spec:html; type:event; for:MessagePort; text:close spec:indexeddb-3; type:event; text:close spec:webrtc; type:event; text:close spec:websockets; type:event; text:close -spec:close-watcher; type:event; text:close <a bs-line-number="2703" data-link-type="event" data-lt="close"><code bs-line-number="2703" bs-autolink-syntax="`close`" bs-opaque="">close</code></a> +LINE 2705: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="2705" data-link-type="event" data-lt="error"><code bs-line-number="2705" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 4848: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="4848" data-link-type="event" data-lt="error"><code bs-line-number="4848" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 4926: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:transaction; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="4926" data-link-type="event" data-lt="abort"><code bs-line-number="4926" bs-autolink-syntax="`abort`" bs-opaque="">abort</code></a> +LINE 4930: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="4930" data-link-type="event" data-lt="error"><code bs-line-number="4930" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> LINE 5043: Multiple possible 'close' event refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/indices.html#event-close To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:html; type:event; text:close +spec:html; type:event; for:CloseWatcher; text:close +spec:html; type:event; for:HTMLElement; text:close +spec:html; type:event; for:MessagePort; text:close spec:indexeddb-3; type:event; text:close spec:webrtc; type:event; text:close spec:websockets; type:event; text:close -spec:close-watcher; type:event; text:close <a bs-line-number="5043" data-link-type="event" data-lt="close"><code bs-line-number="5043" bs-autolink-syntax="`close`" bs-opaque="">close</code></a> LINE 5046: Multiple possible 'close' event refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/indices.html#event-close To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:html; type:event; text:close +spec:html; type:event; for:CloseWatcher; text:close +spec:html; type:event; for:HTMLElement; text:close +spec:html; type:event; for:MessagePort; text:close spec:indexeddb-3; type:event; text:close spec:webrtc; type:event; text:close spec:websockets; type:event; text:close -spec:close-watcher; type:event; text:close <a bs-line-number="5046" data-link-type="event" data-lt="close"><code bs-line-number="5046" bs-autolink-syntax="`close`" bs-opaque="">close</code></a> +LINE 5212: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="5212" data-link-type="event" data-lt="error"><code bs-line-number="5212" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 5217: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:request; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="5217" data-link-type="event" data-lt="error"><code bs-line-number="5217" bs-autolink-syntax="`error`" bs-opaque="">error</code></a> +LINE 5228: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:indexeddb-3; type:event; for:transaction; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="5228" data-link-type="event" data-lt="abort"><code bs-line-number="5228" bs-autolink-syntax="`abort`" bs-opaque="">abort</code></a> LINK ERROR: Multiple possible 'any' idl refs. Arbitrarily chose https://w3c.github.io/screen-orientation/#dom-orientationlocktype-any To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: diff --git a/tests/github/w3c/IndexedDB/index.html b/tests/github/w3c/IndexedDB/index.html index 6b7c3b2d09..6cd21c9c5b 100644 --- a/tests/github/w3c/IndexedDB/index.html +++ b/tests/github/w3c/IndexedDB/index.html @@ -5,7 +5,6 @@ <title>Indexed Database API 3.0</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/IndexedDB/" rel="canonical"> <link href="logo-db.svg" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1018,7 +1017,7 @@ <h1 class="p-name no-ref" id="title">Indexed Database API 3.0</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1042,8 +1041,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -1882,7 +1881,7 @@ <h4 class="heading settled" data-level="2.7.1" id="transaction-lifecycle"><span database. </aside> <li data-md> <p>When each <a data-link-type="dfn" href="#request" id="ref-for-request⑧">request</a> associated with a transaction is <a data-link-type="dfn" href="#request-processed" id="ref-for-request-processed">processed</a>, -a <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success①"><code>success</code></a> or <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error"><code>error</code></a> <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event" id="ref-for-concept-event">event</a> will be +a <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success①"><code>success</code></a> or <a class="idl-code" data-link-type="event"><code>error</code></a> <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event" id="ref-for-concept-event">event</a> will be fired. While the event is being <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-dispatch" id="ref-for-concept-event-dispatch">dispatched</a>, the transaction <a data-link-type="dfn" href="#transaction-state" id="ref-for-transaction-state①">state</a> is set to <a data-link-type="dfn" href="#transaction-active" id="ref-for-transaction-active①">active</a>, allowing additional requests to be made against the transaction. Once the event dispatch is complete, the transaction’s <a data-link-type="dfn" href="#transaction-state" id="ref-for-transaction-state②">state</a> is set to <a data-link-type="dfn" href="#transaction-inactive" id="ref-for-transaction-inactive">inactive</a> again.</p> @@ -2037,7 +2036,7 @@ <h3 class="heading settled" data-level="2.8" id="request-construct"><span class= <h4 class="heading settled" data-level="2.8.1" id="open-requests"><span class="secno">2.8.1. </span><span class="content">Open requests</span><a class="self-link" href="#open-requests"></a></h4> <p>An <dfn class="dfn-paneled" data-dfn-for="request" data-dfn-type="dfn" data-noexport id="request-open-request">open request</dfn> is a special type of <a data-link-type="dfn" href="#request" id="ref-for-request②③">request</a> used when opening a <a data-link-type="dfn" href="#connection" id="ref-for-connection②⑦">connection</a> or deleting a <a data-link-type="dfn" href="#database" id="ref-for-database②⑧">database</a>. -In addition to <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success②"><code>success</code></a> and <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error①"><code>error</code></a> events, <dfn class="dfn-paneled idl-code" data-dfn-for="request" data-dfn-type="event" data-export id="eventdef-request-blocked"><code>blocked</code></dfn> and <dfn class="dfn-paneled idl-code" data-dfn-for="request" data-dfn-type="event" data-export id="eventdef-request-upgradeneeded"><code>upgradeneeded</code></dfn> events may be fired at an <a data-link-type="dfn" href="#request-open-request" id="ref-for-request-open-request①">open +In addition to <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success②"><code>success</code></a> and <a class="idl-code" data-link-type="event"><code>error</code></a> events, <dfn class="dfn-paneled idl-code" data-dfn-for="request" data-dfn-type="event" data-export id="eventdef-request-blocked"><code>blocked</code></dfn> and <dfn class="dfn-paneled idl-code" data-dfn-for="request" data-dfn-type="event" data-export id="eventdef-request-upgradeneeded"><code>upgradeneeded</code></dfn> events may be fired at an <a data-link-type="dfn" href="#request-open-request" id="ref-for-request-open-request①">open request</a> to indicate progress.</p> <p>The <a data-link-type="dfn" href="#request-source" id="ref-for-request-source">source</a> of an <a data-link-type="dfn" href="#request-open-request" id="ref-for-request-open-request②">open request</a> is always null.</p> <p>The <a data-link-type="dfn" href="#request-transaction" id="ref-for-request-transaction①">transaction</a> of an <a data-link-type="dfn" href="#request-open-request" id="ref-for-request-open-request③">open request</a> is null @@ -2591,7 +2590,7 @@ <h3 class="heading settled" data-level="4.1" id="request-api"><span class="secno <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBRequest" data-dfn-type="attribute" data-export id="dom-idbrequest-readystate"><code>readyState</code></dfn> getter steps are to return <code class="idl"><a data-link-type="idl" href="#dom-idbrequestreadystate-pending" id="ref-for-dom-idbrequestreadystate-pending①">"pending"</a></code> if <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑥">this</a>'s <a data-link-type="dfn" href="#request-done-flag" id="ref-for-request-done-flag⑦">done flag</a> is false, and <code class="idl"><a data-link-type="idl" href="#dom-idbrequestreadystate-done" id="ref-for-dom-idbrequestreadystate-done①">"done"</a></code> otherwise.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBRequest" data-dfn-type="attribute" data-export id="dom-idbrequest-onsuccess"><code>onsuccess</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes①">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success③"><code>success</code></a>.</p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBRequest" data-dfn-type="attribute" data-export id="dom-idbrequest-onerror"><code>onerror</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes②">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type①">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error②"><code>error</code></a> event.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBRequest" data-dfn-type="attribute" data-export id="dom-idbrequest-onerror"><code>onerror</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes②">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type①">event handler event type</a> is <a class="idl-code" data-link-type="event"><code>error</code></a> event.</p> <p>Methods on <code class="idl"><a data-link-type="idl" href="#idbdatabase" id="ref-for-idbdatabase">IDBDatabase</a></code> that return a <a data-link-type="dfn" href="#request-open-request" id="ref-for-request-open-request①⓪">open request</a> use an extended interface to allow listening to the <a class="idl-code" data-link-type="event" href="#eventdef-request-blocked" id="ref-for-eventdef-request-blocked②"><code>blocked</code></a> and <a class="idl-code" data-link-type="event" href="#eventdef-request-upgradeneeded" id="ref-for-eventdef-request-upgradeneeded⑧"><code>upgradeneeded</code></a> events.</p> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed" id="ref-for-Exposed①"><c- g>Exposed</c-></a>=(<c- n>Window</c->,<c- n>Worker</c->)] @@ -2739,7 +2738,7 @@ <h3 class="heading settled" data-level="4.3" id="factory-interface"><span class= <li data-md> <p>Set <var>request</var>’s <a data-link-type="dfn" href="#request-done-flag" id="ref-for-request-done-flag⑧">done flag</a> to true.</p> <li data-md> - <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire">Fire an event</a> named <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error③"><code>error</code></a> at <var>request</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles①">bubbles</a></code> and <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-cancelable" id="ref-for-dom-event-cancelable①">cancelable</a></code> attributes initialized to true.</p> + <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire">Fire an event</a> named <a class="idl-code" data-link-type="event"><code>error</code></a> at <var>request</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles①">bubbles</a></code> and <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-cancelable" id="ref-for-dom-event-cancelable①">cancelable</a></code> attributes initialized to true.</p> </ol> <li data-md> <p>Otherwise:</p> @@ -2797,7 +2796,7 @@ <h3 class="heading settled" data-level="4.3" id="factory-interface"><span class= <p>If <var>result</var> is an error, set <var>request</var>’s <a data-link-type="dfn" href="#request-error" id="ref-for-request-error⑤">error</a> to <var>result</var>, set <var>request</var>’s <a data-link-type="dfn" href="#request-done-flag" id="ref-for-request-done-flag①⓪">done flag</a> to true, -and <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire②">fire an event</a> named <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error④"><code>error</code></a> at <var>request</var> with +and <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire②">fire an event</a> named <a class="idl-code" data-link-type="event"><code>error</code></a> at <var>request</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles②">bubbles</a></code> and <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-cancelable" id="ref-for-dom-event-cancelable②">cancelable</a></code> attributes initialized to true.</p> <li data-md> <p>Otherwise, @@ -2894,7 +2893,7 @@ <h3 class="heading settled" data-level="4.4" id="database-interface"><span class <p>The <code class="idl"><a data-link-type="idl" href="#idbdatabase" id="ref-for-idbdatabase②">IDBDatabase</a></code> interface represents a <a data-link-type="dfn" href="#connection" id="ref-for-connection③⑤">connection</a> to a <a data-link-type="dfn" href="#database" id="ref-for-database④①">database</a>.</p> <p>An <code class="idl"><a data-link-type="idl" href="#idbdatabase" id="ref-for-idbdatabase③">IDBDatabase</a></code> object must not be garbage collected if its associated <a data-link-type="dfn" href="#connection" id="ref-for-connection③⑥">connection</a>'s <a data-link-type="dfn" href="#connection-close-pending-flag" id="ref-for-connection-close-pending-flag①">close pending flag</a> is false and it -has one or more event listeners registers whose type is one of <a class="idl-code" data-link-type="event" href="#eventdef-transaction-abort" id="ref-for-eventdef-transaction-abort"><code>abort</code></a>, <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error⑤"><code>error</code></a>, or <a class="idl-code" data-link-type="event" href="#eventdef-connection-versionchange" id="ref-for-eventdef-connection-versionchange⑥"><code>versionchange</code></a>. +has one or more event listeners registers whose type is one of <a class="idl-code" data-link-type="event"><code>abort</code></a>, <a class="idl-code" data-link-type="event"><code>error</code></a>, or <a class="idl-code" data-link-type="event" href="#eventdef-connection-versionchange" id="ref-for-eventdef-connection-versionchange⑥"><code>versionchange</code></a>. If an <code class="idl"><a data-link-type="idl" href="#idbdatabase" id="ref-for-idbdatabase④">IDBDatabase</a></code> object is garbage collected, the associated <a data-link-type="dfn" href="#connection" id="ref-for-connection③⑦">connection</a> must be <a data-link-type="dfn" href="#connection-closed" id="ref-for-connection-closed①">closed</a>.</p> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed" id="ref-for-Exposed④"><c- g>Exposed</c-></a>=(<c- n>Window</c->,<c- n>Worker</c->)] <c- b>interface</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="interface" data-export id="idbdatabase"><code><c- g>IDBDatabase</c-></code></dfn> : <a data-link-type="idl-name" href="https://dom.spec.whatwg.org/#eventtarget" id="ref-for-eventtarget①"><c- n>EventTarget</c-></a> { @@ -3101,9 +3100,9 @@ <h3 class="heading settled" data-level="4.4" id="database-interface"><span class </ol> </div> <aside class="note"> The <a data-link-type="dfn" href="#connection" id="ref-for-connection④⑨">connection</a> will not actually <a data-link-type="dfn" href="#connection-closed" id="ref-for-connection-closed④">close</a> until all outstanding <a data-link-type="dfn" href="#transaction-concept" id="ref-for-transaction-concept④⑥">transactions</a> have completed. Subsequent calls to <code class="idl"><a data-link-type="idl" href="#dom-idbdatabase-close" id="ref-for-dom-idbdatabase-close③">close()</a></code> will have no effect. </aside> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBDatabase" data-dfn-type="attribute" data-export id="dom-idbdatabase-onabort"><code>onabort</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑤">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type④">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-transaction-abort" id="ref-for-eventdef-transaction-abort①"><code>abort</code></a>.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBDatabase" data-dfn-type="attribute" data-export id="dom-idbdatabase-onabort"><code>onabort</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑤">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type④">event handler event type</a> is <a class="idl-code" data-link-type="event"><code>abort</code></a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBDatabase" data-dfn-type="attribute" data-export id="dom-idbdatabase-onclose"><code>onclose</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑥">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑤">event handler event type</a> is <a class="idl-code" data-link-type="event" href="https://html.spec.whatwg.org/multipage/indices.html#event-close" id="ref-for-event-close"><code>close</code></a>.</p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBDatabase" data-dfn-type="attribute" data-export id="dom-idbdatabase-onerror"><code>onerror</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑦">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑥">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error⑥"><code>error</code></a>.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBDatabase" data-dfn-type="attribute" data-export id="dom-idbdatabase-onerror"><code>onerror</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑦">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑥">event handler event type</a> is <a class="idl-code" data-link-type="event"><code>error</code></a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBDatabase" data-dfn-type="attribute" data-export id="dom-idbdatabase-onversionchange"><code>onversionchange</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑧">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑦">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-connection-versionchange" id="ref-for-eventdef-connection-versionchange⑦"><code>versionchange</code></a>.</p> <h3 class="heading settled" data-level="4.5" id="object-store-interface"><span class="secno">4.5. </span><span class="content">The <code class="idl"><a data-link-type="idl" href="#idbobjectstore" id="ref-for-idbobjectstore⑤">IDBObjectStore</a></code> interface</span><a class="self-link" href="#object-store-interface"></a></h3> <p>The <code class="idl"><a data-link-type="idl" href="#idbobjectstore" id="ref-for-idbobjectstore⑥">IDBObjectStore</a></code> interface represents an <a data-link-type="dfn" href="#object-store-handle" id="ref-for-object-store-handle⑨">object store handle</a>.</p> @@ -4705,7 +4704,7 @@ <h3 class="heading settled" data-level="4.9" id="transaction"><span class="secno <p>The transaction will abort if a pending request fails, for example due to a constraint error. The <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success⑨"><code>success</code></a> events for successful requests will still fire, but throwing an exception in an event handler will not abort -the transaction. Similarly, <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error⑦"><code>error</code></a> events for failed requests +the transaction. Similarly, <a class="idl-code" data-link-type="event"><code>error</code></a> events for failed requests will still fire, but calling <code>preventDefault()</code> will not prevent the transaction from aborting.</p> </dl> @@ -4757,9 +4756,9 @@ <h3 class="heading settled" data-level="4.9" id="transaction"><span class="secno when all outstanding requests have been satisfied and no new requests have been made. This call can be used to start the <a data-link-type="dfn" href="#transaction-commit" id="ref-for-transaction-commit⑦">commit</a> process without waiting for events from outstanding <a data-link-type="dfn" href="#request" id="ref-for-request③④">requests</a> to be dispatched. </aside> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBTransaction" data-dfn-type="attribute" data-export id="dom-idbtransaction-onabort"><code>onabort</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑨">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑧">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-transaction-abort" id="ref-for-eventdef-transaction-abort②"><code>abort</code></a>.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBTransaction" data-dfn-type="attribute" data-export id="dom-idbtransaction-onabort"><code>onabort</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes⑨">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑧">event handler event type</a> is <a class="idl-code" data-link-type="event"><code>abort</code></a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBTransaction" data-dfn-type="attribute" data-export id="dom-idbtransaction-oncomplete"><code>oncomplete</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes①⓪">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type⑨">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-transaction-complete" id="ref-for-eventdef-transaction-complete①"><code>complete</code></a>.</p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBTransaction" data-dfn-type="attribute" data-export id="dom-idbtransaction-onerror"><code>onerror</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes①①">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type①⓪">event handler event type</a> is <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error⑧"><code>error</code></a>.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="IDBTransaction" data-dfn-type="attribute" data-export id="dom-idbtransaction-onerror"><code>onerror</code></dfn> attribute is an <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes" id="ref-for-event-handler-idl-attributes①①">event handler IDL attribute</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type" id="ref-for-event-handler-event-type①⓪">event handler event type</a> is <a class="idl-code" data-link-type="event"><code>error</code></a>.</p> <aside class="note"> To determine if a <a data-link-type="dfn" href="#transaction-concept" id="ref-for-transaction-concept⑥⑨">transaction</a> has completed successfully, listen to the <a data-link-type="dfn" href="#transaction-concept" id="ref-for-transaction-concept⑦⓪">transaction</a>'s <a class="idl-code" data-link-type="event" href="#eventdef-transaction-complete" id="ref-for-eventdef-transaction-complete②"><code>complete</code></a> event rather than the <a class="idl-code" data-link-type="event" href="#eventdef-request-success" id="ref-for-eventdef-request-success①⓪"><code>success</code></a> event of a particular <a data-link-type="dfn" href="#request" id="ref-for-request③⑤">request</a>, because the <a data-link-type="dfn" href="#transaction-concept" id="ref-for-transaction-concept⑦①">transaction</a> can still fail after @@ -4960,9 +4959,9 @@ <h3 class="heading settled" data-level="5.5" id="abort-transaction"><span class= <li data-md> <p>Set <var>request</var>’s <a data-link-type="dfn" href="#request-error" id="ref-for-request-error⑦">error</a> to a newly <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception④">created</a> "<code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#aborterror" id="ref-for-aborterror⑥">AbortError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException①⑦⑦">DOMException</a></code>.</p> <li data-md> - <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire⑤">Fire an event</a> named <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error⑨"><code>error</code></a> at <var>request</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles③">bubbles</a></code> and <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-cancelable" id="ref-for-dom-event-cancelable③">cancelable</a></code> attributes initialized to true.</p> + <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire⑤">Fire an event</a> named <a class="idl-code" data-link-type="event"><code>error</code></a> at <var>request</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles③">bubbles</a></code> and <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-cancelable" id="ref-for-dom-event-cancelable③">cancelable</a></code> attributes initialized to true.</p> </ol> - <aside class="note"> This does not always result in any <a class="idl-code" data-link-type="event" href="#eventdef-request-error" id="ref-for-eventdef-request-error①⓪"><code>error</code></a> events + <aside class="note"> This does not always result in any <a class="idl-code" data-link-type="event"><code>error</code></a> events being fired. For example if a transaction is aborted due to an error while <a data-link-type="dfn" href="#transaction-committing" id="ref-for-transaction-committing④">committing</a> the transaction, or if it was the last remaining request that failed. </aside> @@ -4972,7 +4971,7 @@ <h3 class="heading settled" data-level="5.5" id="abort-transaction"><span class= <li data-md> <p>If <var>transaction</var> is an <a data-link-type="dfn" href="#upgrade-transaction" id="ref-for-upgrade-transaction⑤①">upgrade transaction</a>, then set <var>transaction</var>’s <a data-link-type="dfn" href="#transaction-connection" id="ref-for-transaction-connection④">connection</a>'s associated <a data-link-type="dfn" href="#database" id="ref-for-database⑥⑤">database</a>'s <a data-link-type="dfn" href="#database-upgrade-transaction" id="ref-for-database-upgrade-transaction③">upgrade transaction</a> to null.</p> <li data-md> - <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire⑥">Fire an event</a> named <a class="idl-code" data-link-type="event" href="#eventdef-transaction-abort" id="ref-for-eventdef-transaction-abort③"><code>abort</code></a> at <var>transaction</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles④">bubbles</a></code> attribute initialized to true.</p> + <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire⑥">Fire an event</a> named <a class="idl-code" data-link-type="event"><code>abort</code></a> at <var>transaction</var> with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-bubbles" id="ref-for-dom-event-bubbles④">bubbles</a></code> attribute initialized to true.</p> <li data-md> <p>If <var>transaction</var> is an <a data-link-type="dfn" href="#upgrade-transaction" id="ref-for-upgrade-transaction⑤②">upgrade transaction</a>, then:</p> <ol> @@ -6376,20 +6375,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -7044,7 +7045,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5372cca8">boolean</span> <li><span class="dfn-paneled" id="b05bf85d">buffer source types</span> <li><span class="dfn-paneled" id="f4813f78">byte</span> - <li><span class="dfn-paneled" id="c164edfe">created</span> + <li><span class="dfn-paneled" id="6a73c310">create</span> <li><span class="dfn-paneled" id="92d13070">get a copy of the buffer source</span> <li><span class="dfn-paneled" id="b262501e">reject</span> <li><span class="dfn-paneled" id="3b90bdcd">resolve</span> @@ -7719,7 +7720,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBFactory/databases" title="The databases method of the IDBFactory interface returns a list representing all the available databases, including their names and versions.">IDBFactory/databases</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>14+</span></span><span class="chrome yes"><span>Chrome</span><span>72+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7831,7 +7832,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBIndex/getAllKeys" title="The getAllKeys() method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the result of the request object.">IDBIndex/getAllKeys</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7988,7 +7989,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbkeyrange-bound①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/bound" title="The bound() method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds. The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the bounds include the endpoint values). By default, the bounds are closed.">IDBKeyRange/bound</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/bound_static" title="The bound() static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds. The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the bounds include the endpoint values). By default, the bounds are closed.">IDBKeyRange/bound_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -8036,7 +8037,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbkeyrange-lowerbound①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/lowerBound" title="The lowerBound() method of the IDBKeyRange interface creates a new key range with only a lower bound. By default, it includes the lower endpoint value and is closed.">IDBKeyRange/lowerBound</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/lowerBound_static" title="The lowerBound() static method of the IDBKeyRange interface creates a new key range with only a lower bound. By default, it includes the lower endpoint value and is closed.">IDBKeyRange/lowerBound_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -8068,7 +8069,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbkeyrange-only①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/only" title="The only() method of the IDBKeyRange interface creates a new key range containing a single value.">IDBKeyRange/only</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/only_static" title="The only() static method of the IDBKeyRange interface creates a new key range containing a single value.">IDBKeyRange/only_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -8100,7 +8101,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbkeyrange-upperbound①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/upperBound" title="The upperBound() method of the IDBKeyRange interface creates a new upper-bound key range. By default, it includes the upper endpoint value and is closed.">IDBKeyRange/upperBound</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBKeyRange/upperBound_static" title="The upperBound() static method of the IDBKeyRange interface creates a new upper-bound key range. By default, it includes the upper endpoint value and is closed.">IDBKeyRange/upperBound_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -8260,7 +8261,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbobjectstore-get①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/get" title="The get() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object store selected by the specified key. This is for retrieving specific records from an object store.">IDBObjectStore/get</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/get" title="The get() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object selected by the specified key. This is for retrieving specific records from an object store.">IDBObjectStore/get</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -8407,13 +8408,13 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/openKeyCursor" title="The openKeyCursor() method of the IDBObjectStore interface returns an IDBRequest object whose result will be set to an IDBCursor that can be used to iterate through matching results. Used for iterating through the keys of an object store with a cursor.">IDBObjectStore/openKeyCursor</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 44+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>22+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -8516,7 +8517,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbrequest-result①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/result" title="The result read-only property of the IDBRequest interface returns the result of the request. If the request failed and the result is not available, an InvalidStateError exception is thrown.">IDBRequest/result</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/result" title="The result read-only property of the IDBRequest interface returns the result of the request. If the request is not completed, the result is not available and an InvalidStateError exception is thrown.">IDBRequest/result</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -8532,7 +8533,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-idbrequest-source①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/source" title="The source read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store. If no source exists (such as when calling indexedDB.open), it returns null.">IDBRequest/source</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/source" title="The source read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store. If no source exists (such as when calling IDBFactory.open), it returns null.">IDBRequest/source</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>8+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span> @@ -9047,6 +9048,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "6148dd37": {"dfnID":"6148dd37","dfnText":"storage bucket","external":true,"refSections":[{"refs":[{"id":"ref-for-storage-bucket"}],"title":"2.7. Transactions"}],"url":"https://storage.spec.whatwg.org/#storage-bucket"}, "61c308d6": {"dfnID":"61c308d6","dfnText":"hasownproperty","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-hasownproperty"}],"title":"7.1. Extract a key from a value"},{"refs":[{"id":"ref-for-sec-hasownproperty\u2460"},{"id":"ref-for-sec-hasownproperty\u2461"}],"title":"7.2. Inject a key into a value"},{"refs":[{"id":"ref-for-sec-hasownproperty\u2462"}],"title":"7.4. Convert a value to a key"}],"url":"https://tc39.github.io/ecma262/#sec-hasownproperty"}, "649608b9": {"dfnID":"649608b9","dfnText":"list","external":true,"refSections":[{"refs":[{"id":"ref-for-list"}],"title":"2.4. Keys"},{"refs":[{"id":"ref-for-list\u2460"}],"title":"4.3. The IDBFactory interface"},{"refs":[{"id":"ref-for-list\u2461"},{"id":"ref-for-list\u2462"},{"id":"ref-for-list\u2463"}],"title":"6.2. Object store retrieval operations"},{"refs":[{"id":"ref-for-list\u2464"},{"id":"ref-for-list\u2465"}],"title":"6.3. Index retrieval operations"},{"refs":[{"id":"ref-for-list\u2466"}],"title":"7.1. Extract a key from a value"},{"refs":[{"id":"ref-for-list\u2467"}],"title":"7.4. Convert a value to a key"}],"url":"https://infra.spec.whatwg.org/#list"}, +"6a73c310": {"dfnID":"6a73c310","dfnText":"create","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"},{"id":"ref-for-dfn-create-exception\u2460"},{"id":"ref-for-dfn-create-exception\u2461"}],"title":"5.1. Opening a database"},{"refs":[{"id":"ref-for-dfn-create-exception\u2462"}],"title":"5.2. Closing a database"},{"refs":[{"id":"ref-for-dfn-create-exception\u2463"}],"title":"5.5. Aborting a transaction"},{"refs":[{"id":"ref-for-dfn-create-exception\u2464"}],"title":"5.7. Running an upgrade transaction"},{"refs":[{"id":"ref-for-dfn-create-exception\u2465"}],"title":"5.9. Firing a success event"},{"refs":[{"id":"ref-for-dfn-create-exception\u2466"}],"title":"5.10. Firing an error event"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "6aabef20": {"dfnID":"6aabef20","dfnText":"get","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-get-o-p"},{"id":"ref-for-sec-get-o-p\u2460"}],"title":"7.1. Extract a key from a value"},{"refs":[{"id":"ref-for-sec-get-o-p\u2461"},{"id":"ref-for-sec-get-o-p\u2462"}],"title":"7.2. Inject a key into a value"},{"refs":[{"id":"ref-for-sec-get-o-p\u2463"},{"id":"ref-for-sec-get-o-p\u2464"},{"id":"ref-for-sec-get-o-p\u2465"},{"id":"ref-for-sec-get-o-p\u2466"}],"title":"7.4. Convert a value to a key"}],"url":"https://tc39.github.io/ecma262/#sec-get-o-p"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"}],"title":"4.1. The IDBRequest interface"},{"refs":[{"id":"ref-for-idl-any\u2460"},{"id":"ref-for-idl-any\u2461"}],"title":"4.3. The IDBFactory interface"},{"refs":[{"id":"ref-for-idl-any\u2462"},{"id":"ref-for-idl-any\u2463"},{"id":"ref-for-idl-any\u2464"},{"id":"ref-for-idl-any\u2465"},{"id":"ref-for-idl-any\u2466"},{"id":"ref-for-idl-any\u2467"},{"id":"ref-for-idl-any\u2468"},{"id":"ref-for-idl-any\u2460\u24ea"},{"id":"ref-for-idl-any\u2460\u2460"},{"id":"ref-for-idl-any\u2460\u2461"},{"id":"ref-for-idl-any\u2460\u2462"},{"id":"ref-for-idl-any\u2460\u2463"},{"id":"ref-for-idl-any\u2460\u2464"}],"title":"4.5. The IDBObjectStore interface"},{"refs":[{"id":"ref-for-idl-any\u2460\u2465"},{"id":"ref-for-idl-any\u2460\u2466"},{"id":"ref-for-idl-any\u2460\u2467"},{"id":"ref-for-idl-any\u2460\u2468"},{"id":"ref-for-idl-any\u2461\u24ea"},{"id":"ref-for-idl-any\u2461\u2460"},{"id":"ref-for-idl-any\u2461\u2461"},{"id":"ref-for-idl-any\u2461\u2462"}],"title":"4.6. The IDBIndex interface"},{"refs":[{"id":"ref-for-idl-any\u2461\u2463"},{"id":"ref-for-idl-any\u2461\u2464"},{"id":"ref-for-idl-any\u2461\u2465"},{"id":"ref-for-idl-any\u2461\u2466"},{"id":"ref-for-idl-any\u2461\u2467"},{"id":"ref-for-idl-any\u2461\u2468"},{"id":"ref-for-idl-any\u2462\u24ea"},{"id":"ref-for-idl-any\u2462\u2460"}],"title":"4.7. The IDBKeyRange interface"},{"refs":[{"id":"ref-for-idl-any\u2462\u2461"},{"id":"ref-for-idl-any\u2462\u2462"},{"id":"ref-for-idl-any\u2462\u2463"},{"id":"ref-for-idl-any\u2462\u2464"},{"id":"ref-for-idl-any\u2462\u2465"},{"id":"ref-for-idl-any\u2462\u2466"},{"id":"ref-for-idl-any\u2462\u2467"}],"title":"4.8. The IDBCursor interface"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "6e4c081e": {"dfnID":"6e4c081e","dfnText":"byte less than","external":true,"refSections":[{"refs":[{"id":"ref-for-byte-less-than"},{"id":"ref-for-byte-less-than\u2460"}],"title":"2.4. Keys"}],"url":"https://infra.spec.whatwg.org/#byte-less-than"}, @@ -9094,7 +9096,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "bdbd19d1": {"dfnID":"bdbd19d1","dfnText":"Promise","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-promise"}],"title":"4.3. The IDBFactory interface"}],"url":"https://webidl.spec.whatwg.org/#idl-promise"}, "be2d2b4c": {"dfnID":"be2d2b4c","dfnText":"SyntaxError","external":true,"refSections":[{"refs":[{"id":"ref-for-syntaxerror"}],"title":"3. Exceptions"},{"refs":[{"id":"ref-for-syntaxerror\u2460"}],"title":"4.4. The IDBDatabase interface"},{"refs":[{"id":"ref-for-syntaxerror\u2461"}],"title":"4.5. The IDBObjectStore interface"}],"url":"https://webidl.spec.whatwg.org/#syntaxerror"}, "c01cbda0": {"dfnID":"c01cbda0","dfnText":"EnforceRange","external":true,"refSections":[{"refs":[{"id":"ref-for-EnforceRange"}],"title":"4.3. The IDBFactory interface"},{"refs":[{"id":"ref-for-EnforceRange\u2460"},{"id":"ref-for-EnforceRange\u2461"}],"title":"4.5. The IDBObjectStore interface"},{"refs":[{"id":"ref-for-EnforceRange\u2462"},{"id":"ref-for-EnforceRange\u2463"}],"title":"4.6. The IDBIndex interface"},{"refs":[{"id":"ref-for-EnforceRange\u2464"}],"title":"4.8. The IDBCursor interface"}],"url":"https://webidl.spec.whatwg.org/#EnforceRange"}, -"c164edfe": {"dfnID":"c164edfe","dfnText":"created","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"},{"id":"ref-for-dfn-create-exception\u2460"},{"id":"ref-for-dfn-create-exception\u2461"}],"title":"5.1. Opening a database"},{"refs":[{"id":"ref-for-dfn-create-exception\u2462"}],"title":"5.2. Closing a database"},{"refs":[{"id":"ref-for-dfn-create-exception\u2463"}],"title":"5.5. Aborting a transaction"},{"refs":[{"id":"ref-for-dfn-create-exception\u2464"}],"title":"5.7. Running an upgrade transaction"},{"refs":[{"id":"ref-for-dfn-create-exception\u2465"}],"title":"5.9. Firing a success event"},{"refs":[{"id":"ref-for-dfn-create-exception\u2466"}],"title":"5.10. Firing an error event"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "c3e881ef": {"dfnID":"c3e881ef","dfnText":"SecurityError","external":true,"refSections":[{"refs":[{"id":"ref-for-securityerror"},{"id":"ref-for-securityerror\u2460"},{"id":"ref-for-securityerror\u2461"}],"title":"4.3. The IDBFactory interface"}],"url":"https://webidl.spec.whatwg.org/#securityerror"}, "c4df1374": {"dfnID":"c4df1374","dfnText":"type","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-ecmascript-data-types-and-values"},{"id":"ref-for-sec-ecmascript-data-types-and-values\u2460"}],"title":"7.1. Extract a key from a value"},{"refs":[{"id":"ref-for-sec-ecmascript-data-types-and-values\u2461"},{"id":"ref-for-sec-ecmascript-data-types-and-values\u2462"}],"title":"7.4. Convert a value to a key"}],"url":"https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values"}, "c602a659": {"dfnID":"c602a659","dfnText":"date","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-date-objects"}],"title":"2.3. Values"},{"refs":[{"id":"ref-for-sec-date-objects\u2460"}],"title":"2.4. Keys"},{"refs":[{"id":"ref-for-sec-date-objects\u2461"},{"id":"ref-for-sec-date-objects\u2462"}],"title":"4.8. The IDBCursor interface"},{"refs":[{"id":"ref-for-sec-date-objects\u2463"}],"title":"7.4. Convert a value to a key"}],"url":"https://tc39.github.io/ecma262/#sec-date-objects"}, @@ -9344,10 +9345,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "evaluate-a-key-path-on-a-value": {"dfnID":"evaluate-a-key-path-on-a-value","dfnText":"evaluate a key path on a value","external":false,"refSections":[{"refs":[{"id":"ref-for-evaluate-a-key-path-on-a-value"},{"id":"ref-for-evaluate-a-key-path-on-a-value\u2460"}],"title":"7.1. Extract a key from a value"}],"url":"#evaluate-a-key-path-on-a-value"}, "eventdef-connection-versionchange": {"dfnID":"eventdef-connection-versionchange","dfnText":"versionchange","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-connection-versionchange"},{"id":"ref-for-eventdef-connection-versionchange\u2460"},{"id":"ref-for-eventdef-connection-versionchange\u2461"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-eventdef-connection-versionchange\u2462"},{"id":"ref-for-eventdef-connection-versionchange\u2463"},{"id":"ref-for-eventdef-connection-versionchange\u2464"}],"title":"4.3. The IDBFactory interface"},{"refs":[{"id":"ref-for-eventdef-connection-versionchange\u2465"},{"id":"ref-for-eventdef-connection-versionchange\u2466"}],"title":"4.4. The IDBDatabase interface"},{"refs":[{"id":"ref-for-eventdef-connection-versionchange\u2467"},{"id":"ref-for-eventdef-connection-versionchange\u2468"}],"title":"5.1. Opening a database"},{"refs":[{"id":"ref-for-eventdef-connection-versionchange\u2460\u24ea"},{"id":"ref-for-eventdef-connection-versionchange\u2460\u2460"}],"title":"5.3. Deleting a database"}],"url":"#eventdef-connection-versionchange"}, "eventdef-request-blocked": {"dfnID":"eventdef-request-blocked","dfnText":"blocked","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-request-blocked"},{"id":"ref-for-eventdef-request-blocked\u2460"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-eventdef-request-blocked\u2461"},{"id":"ref-for-eventdef-request-blocked\u2462"}],"title":"4.1. The IDBRequest interface"},{"refs":[{"id":"ref-for-eventdef-request-blocked\u2463"}],"title":"5.1. Opening a database"},{"refs":[{"id":"ref-for-eventdef-request-blocked\u2464"}],"title":"5.3. Deleting a database"}],"url":"#eventdef-request-blocked"}, -"eventdef-request-error": {"dfnID":"eventdef-request-error","dfnText":"error","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-request-error"}],"title":"2.7.1. Transaction lifecycle"},{"refs":[{"id":"ref-for-eventdef-request-error\u2460"}],"title":"2.8.1. Open requests"},{"refs":[{"id":"ref-for-eventdef-request-error\u2461"}],"title":"4.1. The IDBRequest interface"},{"refs":[{"id":"ref-for-eventdef-request-error\u2462"},{"id":"ref-for-eventdef-request-error\u2463"}],"title":"4.3. The IDBFactory interface"},{"refs":[{"id":"ref-for-eventdef-request-error\u2464"},{"id":"ref-for-eventdef-request-error\u2465"}],"title":"4.4. The IDBDatabase interface"},{"refs":[{"id":"ref-for-eventdef-request-error\u2466"},{"id":"ref-for-eventdef-request-error\u2467"}],"title":"4.9. The IDBTransaction interface"},{"refs":[{"id":"ref-for-eventdef-request-error\u2468"},{"id":"ref-for-eventdef-request-error\u2460\u24ea"}],"title":"5.5. Aborting a transaction"}],"url":"#eventdef-request-error"}, +"eventdef-request-error": {"dfnID":"eventdef-request-error","dfnText":"error","external":false,"refSections":[],"url":"#eventdef-request-error"}, "eventdef-request-success": {"dfnID":"eventdef-request-success","dfnText":"success","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-request-success"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-eventdef-request-success\u2460"}],"title":"2.7.1. Transaction lifecycle"},{"refs":[{"id":"ref-for-eventdef-request-success\u2461"}],"title":"2.8.1. Open requests"},{"refs":[{"id":"ref-for-eventdef-request-success\u2462"}],"title":"4.1. The IDBRequest interface"},{"refs":[{"id":"ref-for-eventdef-request-success\u2463"},{"id":"ref-for-eventdef-request-success\u2464"},{"id":"ref-for-eventdef-request-success\u2465"}],"title":"4.3. The IDBFactory interface"},{"refs":[{"id":"ref-for-eventdef-request-success\u2466"}],"title":"4.8. The IDBCursor interface"},{"refs":[{"id":"ref-for-eventdef-request-success\u2467"},{"id":"ref-for-eventdef-request-success\u2468"},{"id":"ref-for-eventdef-request-success\u2460\u24ea"},{"id":"ref-for-eventdef-request-success\u2460\u2460"}],"title":"4.9. The IDBTransaction interface"}],"url":"#eventdef-request-success"}, "eventdef-request-upgradeneeded": {"dfnID":"eventdef-request-upgradeneeded","dfnText":"upgradeneeded","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded"},{"id":"ref-for-eventdef-request-upgradeneeded\u2460"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2461"}],"title":"2.2. Object store"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2462"}],"title":"2.7. Transactions"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2463"},{"id":"ref-for-eventdef-request-upgradeneeded\u2464"}],"title":"2.7.3. Upgrade transactions"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2465"}],"title":"2.8. Requests"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2466"}],"title":"2.8.1. Open requests"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2467"},{"id":"ref-for-eventdef-request-upgradeneeded\u2468"}],"title":"4.1. The IDBRequest interface"},{"refs":[{"id":"ref-for-eventdef-request-upgradeneeded\u2460\u24ea"}],"title":"5.7. Running an upgrade transaction"}],"url":"#eventdef-request-upgradeneeded"}, -"eventdef-transaction-abort": {"dfnID":"eventdef-transaction-abort","dfnText":"abort","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-transaction-abort"},{"id":"ref-for-eventdef-transaction-abort\u2460"}],"title":"4.4. The IDBDatabase interface"},{"refs":[{"id":"ref-for-eventdef-transaction-abort\u2461"}],"title":"4.9. The IDBTransaction interface"},{"refs":[{"id":"ref-for-eventdef-transaction-abort\u2462"}],"title":"5.5. Aborting a transaction"}],"url":"#eventdef-transaction-abort"}, +"eventdef-transaction-abort": {"dfnID":"eventdef-transaction-abort","dfnText":"abort","external":false,"refSections":[],"url":"#eventdef-transaction-abort"}, "eventdef-transaction-complete": {"dfnID":"eventdef-transaction-complete","dfnText":"complete","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-transaction-complete"}],"title":"2.7. Transactions"},{"refs":[{"id":"ref-for-eventdef-transaction-complete\u2460"},{"id":"ref-for-eventdef-transaction-complete\u2461"}],"title":"4.9. The IDBTransaction interface"},{"refs":[{"id":"ref-for-eventdef-transaction-complete\u2462"},{"id":"ref-for-eventdef-transaction-complete\u2463"}],"title":"5.4. Committing a transaction"}],"url":"#eventdef-transaction-complete"}, "extract-a-key-from-a-value-using-a-key-path": {"dfnID":"extract-a-key-from-a-value-using-a-key-path","dfnText":"extract a key from a value using a key path","external":false,"refSections":[{"refs":[{"id":"ref-for-extract-a-key-from-a-value-using-a-key-path"}],"title":"2.6. Index"},{"refs":[{"id":"ref-for-extract-a-key-from-a-value-using-a-key-path\u2460"}],"title":"4.5. The IDBObjectStore interface"},{"refs":[{"id":"ref-for-extract-a-key-from-a-value-using-a-key-path\u2461"}],"title":"4.8. The IDBCursor interface"},{"refs":[{"id":"ref-for-extract-a-key-from-a-value-using-a-key-path\u2462"}],"title":"6.1. Object store storage operation"}],"url":"#extract-a-key-from-a-value-using-a-key-path"}, "f0951476": {"dfnID":"f0951476","dfnText":"EventHandler","external":true,"refSections":[{"refs":[{"id":"ref-for-eventhandler"},{"id":"ref-for-eventhandler\u2460"},{"id":"ref-for-eventhandler\u2461"},{"id":"ref-for-eventhandler\u2462"}],"title":"4.1. The IDBRequest interface"},{"refs":[{"id":"ref-for-eventhandler\u2463"},{"id":"ref-for-eventhandler\u2464"},{"id":"ref-for-eventhandler\u2465"},{"id":"ref-for-eventhandler\u2466"}],"title":"4.4. The IDBDatabase interface"},{"refs":[{"id":"ref-for-eventhandler\u2467"},{"id":"ref-for-eventhandler\u2468"},{"id":"ref-for-eventhandler\u2460\u24ea"}],"title":"4.9. The IDBTransaction interface"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#eventhandler"}, @@ -10077,10 +10078,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#evaluate-a-key-path-on-a-value": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"evaluate a key path on a value","type":"dfn","url":"#evaluate-a-key-path-on-a-value"}, "#eventdef-connection-versionchange": {"export":true,"for_":["connection"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"versionchange","type":"event","url":"#eventdef-connection-versionchange"}, "#eventdef-request-blocked": {"export":true,"for_":["request"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"blocked","type":"event","url":"#eventdef-request-blocked"}, -"#eventdef-request-error": {"export":true,"for_":["request"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"error","type":"event","url":"#eventdef-request-error"}, "#eventdef-request-success": {"export":true,"for_":["request"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"success","type":"event","url":"#eventdef-request-success"}, "#eventdef-request-upgradeneeded": {"export":true,"for_":["request"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"upgradeneeded","type":"event","url":"#eventdef-request-upgradeneeded"}, -"#eventdef-transaction-abort": {"export":true,"for_":["transaction"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"abort","type":"event","url":"#eventdef-transaction-abort"}, "#eventdef-transaction-complete": {"export":true,"for_":["transaction"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"complete","type":"event","url":"#eventdef-transaction-complete"}, "#extract-a-key-from-a-value-using-a-key-path": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"extract a key from a value using a key path","type":"dfn","url":"#extract-a-key-from-a-value-using-a-key-path"}, "#fire-a-success-event": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"local","text":"fire a success event","type":"dfn","url":"#fire-a-success-event"}, @@ -10214,7 +10213,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#domstringlist": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"DOMStringList","type":"interface","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#domstringlist"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context"}, "https://html.spec.whatwg.org/multipage/dom.html#document": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"Document","type":"interface","url":"https://html.spec.whatwg.org/multipage/dom.html#document"}, -"https://html.spec.whatwg.org/multipage/indices.html#event-close": {"export":true,"for_":["HTMLElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"close","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-close"}, +"https://html.spec.whatwg.org/multipage/indices.html#event-close": {"export":true,"for_":["CloseWatcher","HTMLElement","MessagePort"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"close","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-close"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "https://html.spec.whatwg.org/multipage/structured-data.html#serializable-objects": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"serializable object","type":"dfn","url":"https://html.spec.whatwg.org/multipage/structured-data.html#serializable-objects"}, "https://html.spec.whatwg.org/multipage/structured-data.html#structureddeserialize": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"StructuredDeserialize","type":"abstract-op","url":"https://html.spec.whatwg.org/multipage/structured-data.html#structureddeserialize"}, @@ -10286,7 +10285,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#datacloneerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DataCloneError","type":"exception","url":"https://webidl.spec.whatwg.org/#datacloneerror"}, "https://webidl.spec.whatwg.org/#dataerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DataError","type":"exception","url":"https://webidl.spec.whatwg.org/#dataerror"}, "https://webidl.spec.whatwg.org/#dfn-buffer-source-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"buffer source types","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-buffer-source-type"}, -"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"created","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, +"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "https://webidl.spec.whatwg.org/#dfn-get-buffer-source-copy": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"get a copy of the buffer source","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-get-buffer-source-copy"}, "https://webidl.spec.whatwg.org/#dfn-throw": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"throw","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-throw"}, "https://webidl.spec.whatwg.org/#idl-DOMException": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMException","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMException"}, diff --git a/tests/github/w3c/IntersectionObserver/index.html b/tests/github/w3c/IntersectionObserver/index.html index ac01b105cb..f31b123c8f 100644 --- a/tests/github/w3c/IntersectionObserver/index.html +++ b/tests/github/w3c/IntersectionObserver/index.html @@ -5,7 +5,6 @@ <title>Intersection Observer</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/intersection-observer/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -928,7 +927,7 @@ <h1 class="p-name no-ref" id="title">Intersection Observer</h1> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/intersection-observer/">https://www.w3.org/TR/intersection-observer/</a> <dt>Previous Versions: - <dd><a href="https://www.w3.org/TR/2022/WD-intersection-observer-20220706/" rel="prev">https://www.w3.org/TR/2022/WD-intersection-observer-20220706/</a> + <dd><a href="https://www.w3.org/TR/2023/WD-intersection-observer-20231018/" rel="prev">https://www.w3.org/TR/2023/WD-intersection-observer-20231018/</a> <dt>Test Suite: <dd><a href="http://w3c-test.org/intersection-observer/">http://w3c-test.org/intersection-observer/</a> <dt class="editor">Editors: @@ -940,7 +939,7 @@ <h1 class="p-name no-ref" id="title">Intersection Observer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -958,8 +957,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -1691,20 +1690,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2013,7 +2014,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-intersectionobserver-observe"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/observe" title="To stop observing the element, call IntersectionObserver.unobserve().">IntersectionObserver/observe</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/observe" title="The IntersectionObserver method observe() adds an element to the set of target elements being watched by the IntersectionObserver. One observer has one set of thresholds and one root, but can watch multiple target elements for visibility changes in keeping with those.">IntersectionObserver/observe</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>55+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> diff --git a/tests/github/w3c/PFE/Overview.html b/tests/github/w3c/PFE/Overview.html index 8ebdacc5c4..441cc04d62 100644 --- a/tests/github/w3c/PFE/Overview.html +++ b/tests/github/w3c/PFE/Overview.html @@ -3,7 +3,7 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Incremental Font Transfer</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/example/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -426,7 +426,7 @@ <h1 class="p-name no-ref" id="title">Incremental Font Transfer</h1> </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -441,12 +441,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" Don’t cite this document other than as work in progress. </p> <p> If you wish to make comments regarding this document, please <a href="https://github.com/w3c/PFE/issues/new">file an issue on the specification repository</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webfonts">Web Fonts Working Group</a> </p> - <p> This document was produced by groups operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p> This document was produced by a group operating under + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webfonts/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This is a largely empty document because we have just started working on it.</p> </div> @@ -934,20 +934,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> @@ -963,7 +965,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-pfe-report">[PFE-report] <dd>Chris Lilley. <a href="https://www.w3.org/TR/PFE-evaluation/"><cite>Progressive Font Enrichment: Evaluation Report</cite></a>. 15 October 2020. Note. URL: <a href="https://www.w3.org/TR/PFE-evaluation/">https://www.w3.org/TR/PFE-evaluation/</a> <dt id="biblio-woff2">[WOFF2] - <dd>Vladimir Levantovsky; Raph Levien. <a href="https://w3c.github.io/woff/woff2/"><cite>WOFF File Format 2.0</cite></a>. URL: <a href="https://w3c.github.io/woff/woff2/">https://w3c.github.io/woff/woff2/</a> + <dd>Vladimir Levantovsky. <a href="https://w3c.github.io/woff/woff2/"><cite>WOFF File Format 2.0</cite></a>. URL: <a href="https://w3c.github.io/woff/woff2/">https://w3c.github.io/woff/woff2/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> diff --git a/tests/github/w3c/ServiceWorker/docs/index.console.txt b/tests/github/w3c/ServiceWorker/docs/index.console.txt index dbc8ed4832..c685851617 100644 --- a/tests/github/w3c/ServiceWorker/docs/index.console.txt +++ b/tests/github/w3c/ServiceWorker/docs/index.console.txt @@ -13,12 +13,14 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=event=] LINE ~201: Multiple possible 'events' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=events=] LINK ERROR: Multiple possible 'event' local refs for 'message'. Randomly chose one of them; other instances might get a different random choice. @@ -35,12 +37,14 @@ Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state <a bs-line-number="383" data-link-type="dfn" data-lt="state">state</a> LINE 600: Ambiguous for-less link for 'state', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state <a bs-line-number="600" data-link-type="dfn" data-lt="state">state</a> LINE 698: No 'dfn' refs found for 'responsible document'. <a bs-line-number="698" data-link-type="dfn" data-lt="responsible document">responsible document</a> @@ -65,30 +69,35 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1542" data-link-type="dfn" data-lt="event">event</a> LINE 1548: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1548" data-link-type="dfn" data-lt="event">event</a> LINE 1554: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1554" data-link-type="dfn" data-lt="event">event</a> LINE 1560: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1560" data-link-type="dfn" data-lt="event">event</a> LINE 1566: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1566" data-link-type="dfn" data-lt="event">event</a> LINE ~1619: No 'dfn' refs found for 'creating' with for='['ReadableStream']'. [=ReadableStream/creating=] @@ -112,12 +121,18 @@ LINE ~1942: No 'dfn' refs found for 'terminate' with for='['fetch']'. [=fetch/Terminate=] LINE ~1945: No 'dfn' refs found for 'process response end-of-body' that are marked for export. [=process response end-of-body=] +LINE ~1970: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE ~1991: No 'dfn' refs found for 'disturbed' with for='['Body']'. [=Body/disturbed=] LINE ~1991: No 'dfn' refs found for 'locked' with for='['Body']'. [=Body/locked=] LINE ~1999: No 'dfn' refs found for 'locked' with for='['Body']'. [=Body/locked=] +LINE ~2015: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] +LINE ~2044: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE 2208: Multiple possible 'enforce' dfn refs. Arbitrarily chose https://w3c.github.io/webappsec-csp/#enforced To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -133,7 +148,12 @@ Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] +LINE ~2512: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] +LINE ~2515: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE ~2616: No 'dfn' refs found for 'perform the fetch'. [=fetching scripts/perform the fetch=] LINE ~2630: No 'dfn' refs found for 'is top-level'. @@ -153,15 +173,19 @@ Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] LINE ~2882: Ambiguous for-less link for 'state', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] LINE ~2888: No 'dfn' refs found for 'create a new javascript realm'. [=create a new JavaScript realm|creating a new JavaScript realm=] +LINE 2897: No 'dfn' refs found for 'api url character encoding'. +<a bs-line-number="2897" data-link-type="dfn" data-lt="API URL character encoding">API URL character encoding</a> LINE ~2903: No 'dfn' refs found for 'referrer policy' with for='['environment settings object']'. [=environment settings object/referrer policy=] LINE ~2904: No 'dfn' refs found for 'referrer policy' with for='['WorkerGlobalScope']'. @@ -183,16 +207,20 @@ Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state <a bs-line-number="3022" data-link-type="dfn" data-lt="state">state</a> LINE ~3045: No 'dfn' refs found for 'source' with for='['Body']'. [=Body/source=] LINE ~3049: No 'dfn' refs found for 'terminated' with for='['fetch']'. [=fetch/terminated=] +LINE ~3049: No 'dfn' refs found for 'signal abort' with for='['AbortSignal']'. +[=AbortSignal/signal abort=] LINE ~3101: Ambiguous for-less link for 'state', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:service-workers; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] LINE 3139: No 'dfn' refs found for 'unload a document' that are marked for export. <a bs-line-number="3139" data-lt="unload a document" data-link-type="dfn">unloading</a> @@ -201,6 +229,7 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=event=] LINE ~3437: No 'dfn' refs found for 'nested browsing context'. [=Nested browsing context=] diff --git a/tests/github/w3c/ServiceWorker/docs/index.html b/tests/github/w3c/ServiceWorker/docs/index.html index 186816f00f..e9ca1a933b 100644 --- a/tests/github/w3c/ServiceWorker/docs/index.html +++ b/tests/github/w3c/ServiceWorker/docs/index.html @@ -5,7 +5,6 @@ <title>Service Workers Nightly</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/service-workers/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -981,7 +980,7 @@ <h1 class="p-name no-ref" id="title">Service Workers Nightly</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1002,7 +1001,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/101220/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -3337,7 +3336,7 @@ <h4 class="heading settled" data-level="5.4.4" id="cache-addAll"><span class="se <li data-md> <p>If <var>errorData</var> is null, resolve <var>cacheJobPromise</var> with undefined.</p> <li data-md> - <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message">message</a>, in <var>realm</var>.</p> + <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>realm</var>.</p> </ol> </ol> <li data-md> @@ -3428,7 +3427,7 @@ <h4 class="heading settled" data-level="5.4.5" id="cache-put"><span class="secno <li data-md> <p>If <var>errorData</var> is null, resolve <var>cacheJobPromise</var> with undefined.</p> <li data-md> - <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception①">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception①">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message①">message</a>, in <var>realm</var>.</p> + <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception①">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception①">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>realm</var>.</p> </ol> </ol> </ol> @@ -3489,7 +3488,7 @@ <h4 class="heading settled" data-level="5.4.6" id="cache-delete"><span class="se <p>Else, resolve <var>cacheJobPromise</var> with false.</p> </ol> <li data-md> - <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception②">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception②">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message②">message</a>, in <var>realm</var>.</p> + <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception②">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception②">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>realm</var>.</p> </ol> </ol> <li data-md> @@ -4118,14 +4117,14 @@ <h3 class="heading settled" id="reject-job-promise-algorithm"><span class="conte </dl> <ol> <li data-md> - <p>If <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client⑨">client</a> is not null, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②④">queue a task</a>, on <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①⓪">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑦">DOM manipulation task source</a>, to reject <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise④">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception④">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception③">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message③">message</a>, in <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①①">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑦">Realm</a>.</p> + <p>If <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client⑨">client</a> is not null, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②④">queue a task</a>, on <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①⓪">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑦">DOM manipulation task source</a>, to reject <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise④">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception④">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception③">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①①">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑦">Realm</a>.</p> <li data-md> <p>For each <var>equivalentJob</var> in <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-list-of-equivalent-jobs" id="ref-for-dfn-job-list-of-equivalent-jobs②">list of equivalent jobs</a>:</p> <ol> <li data-md> <p>If <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①②">client</a> is null, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#iteration-continue" id="ref-for-iteration-continue⑦">continue</a>.</p> <li data-md> - <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⑤">Queue a task</a>, on <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①③">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①④">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑧">DOM manipulation task source</a>, to reject <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise⑤">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception⑤">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception④">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message④">message</a>, in <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①④">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑧">Realm</a>.</p> + <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⑤">Queue a task</a>, on <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①③">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①④">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑧">DOM manipulation task source</a>, to reject <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise⑤">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception⑤">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception④">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①④">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑧">Realm</a>.</p> </ol> </ol> </section> @@ -4802,7 +4801,7 @@ <h3 class="heading settled" id="run-service-worker-algorithm"><span class="conte <dt data-md>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-module-map" id="ref-for-concept-settings-object-module-map">module map</a> <dd data-md> <p>Return <var>workerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-module-map" id="ref-for-concept-workerglobalscope-module-map">module map</a>.</p> - <dt data-md>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding" id="ref-for-api-url-character-encoding">API URL character encoding</a> + <dt data-md>The <a data-link-type="dfn">API URL character encoding</a> <dd data-md> <p>Return <a data-link-type="dfn" href="https://encoding.spec.whatwg.org/#utf-8" id="ref-for-utf-8">UTF-8</a>.</p> <dt data-md>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url⑤">API base URL</a> @@ -5087,7 +5086,7 @@ <h3 class="heading settled" id="on-fetch-request-algorithm"><span class="content <li data-md> <p>If <var>e</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#canceled-flag" id="ref-for-canceled-flag">canceled flag</a> is set, set <var>eventCanceled</var> to true.</p> <li data-md> - <p>If <var>fetchInstance</var> is <a data-link-type="dfn">terminated</a>, then <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task③④">queue a task</a> to <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort">signal abort</a> on <var>requestObject</var>’s <code class="idl"><a data-link-type="idl" href="https://fetch.spec.whatwg.org/#dom-request-signal" id="ref-for-dom-request-signal">signal</a></code>.</p> + <p>If <var>fetchInstance</var> is <a data-link-type="dfn">terminated</a>, then <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task③④">queue a task</a> to <a data-link-type="dfn">signal abort</a> on <var>requestObject</var>’s <code class="idl"><a data-link-type="idl" href="https://fetch.spec.whatwg.org/#dom-request-signal" id="ref-for-dom-request-signal">signal</a></code>.</p> </ol> <p>If <var>task</var> is discarded, set <var>handleFetchFailed</var> to true.</p> <p>The <var>task</var> <em>must</em> use <var>activeWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#event-loop" id="ref-for-event-loop①④">event loop</a> and the <a data-link-type="dfn" href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source③">handle fetch task source</a>.</p> @@ -6107,20 +6106,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -6636,7 +6637,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="06950d36">event listener</span> <li><span class="dfn-paneled" id="5fd23811">fire an event</span> <li><span class="dfn-paneled" id="838900a7">isTrusted</span> - <li><span class="dfn-paneled" id="790f0b49">signal abort</span> <li><span class="dfn-paneled" id="38340ce0">stop immediate propagation flag</span> <li><span class="dfn-paneled" id="c89908b4">stop propagation flag</span> <li><span class="dfn-paneled" id="9d09d04c">type</span> @@ -6749,7 +6749,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="0ba26d3b">active service worker</span> <li><span class="dfn-paneled" id="fff7fefb">ancestor origins list</span> <li><span class="dfn-paneled" id="1b5b1c0c">api base url</span> - <li><span class="dfn-paneled" id="2a37f6e3">api url character encoding</span> <li><span class="dfn-paneled" id="58ebefde">auxiliary browsing context</span> <li><span class="dfn-paneled" id="3b0ee7a3">base url</span> <li><span class="dfn-paneled" id="0d0390b4">browsing context</span> @@ -6973,12 +6972,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8f5c2179">a promise resolved with</span> <li><span class="dfn-paneled" id="6c6b1005">any</span> <li><span class="dfn-paneled" id="5372cca8">boolean</span> + <li><span class="dfn-paneled" id="6a73c310">create</span> <li><span class="dfn-paneled" id="1641b9ef">create a frozen array</span> - <li><span class="dfn-paneled" id="c164edfe">created</span> <li><span class="dfn-paneled" id="cd787c3f">exception</span> <li><span class="dfn-paneled" id="abbed741">frozen array type</span> <li><span class="dfn-paneled" id="4ae6d1ad">getting a promise to wait for all</span> - <li><span class="dfn-paneled" id="3ad6b69f">message</span> <li><span class="dfn-paneled" id="efd1ec5d">object</span> <li><span class="dfn-paneled" id="d0eba3fd">partial interface</span> <li><span class="dfn-paneled" id="116848ac">reacting</span> @@ -7694,7 +7692,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ExtendableEvent/ExtendableEvent" title="The ExtendableEvent() constructor creates a new ExtendableEvent object.">ExtendableEvent/ExtendableEvent</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>24+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7854,7 +7852,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent/FetchEvent" title="The FetchEvent() constructor creates a new FetchEvent object.">FetchEvent/FetchEvent</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>44+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7880,6 +7878,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-fetchevent-handled"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent/handled" title="The handled property of the FetchEvent interface returns a promise indicating if the event has been handled by the fetch algorithm or not. This property allows executing code after the browser has consumed a response, and is usually used together with the waitUntil() method.">FetchEvent/handled</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>84+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>86+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>86+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="fetch-event-preloadresponse"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -8072,6 +8086,38 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworker-postmessage"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/postMessage" title="The postMessage() method of the ServiceWorker interface sends a message to the worker. This accepts a single parameter, which is the data to send to the worker. The data may be any JavaScript object which can be handled by the structured clone algorithm.">ServiceWorker/postMessage</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworker-postmessage-message-options"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/postMessage" title="The postMessage() method of the ServiceWorker interface sends a message to the worker. This accepts a single parameter, which is the data to send to the worker. The data may be any JavaScript object which can be handled by the structured clone algorithm.">ServiceWorker/postMessage</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="service-worker-url"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -8331,7 +8377,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerglobalscope-onfetch"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/fetch_event" title="The fetch event is fired when the fetch() method is called.">ServiceWorkerGlobalScope/fetch_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/fetch_event" title="The fetch event is fired in the service worker&apos;s global scope when the main app thread makes a network request. It enables the service worker to intercept network requests and send customized responses (for example, from a local cache).">ServiceWorkerGlobalScope/fetch_event</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> @@ -8633,11 +8679,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="client-navigate"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WindowClient/navigate" title="The navigate() method of the WindowClient interface loads a specified URL into a controlled client page then returns a Promise that resolves to the existing WindowClient.">WindowClient/navigate</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> + <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8707,7 +8754,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>18</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -8941,7 +8988,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "26b82890": {"dfnID":"26b82890","dfnText":"event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event"},{"id":"ref-for-concept-event\u2460"}],"title":"2.1.2. Events"},{"refs":[{"id":"ref-for-concept-event\u2461"}],"title":"4.5.2. event.preloadResponse"},{"refs":[{"id":"ref-for-concept-event\u2462"}],"title":"4.5.3. event.clientId"},{"refs":[{"id":"ref-for-concept-event\u2463"}],"title":"4.5.4. event.resultingClientId"},{"refs":[{"id":"ref-for-concept-event\u2464"}],"title":"4.5.5. event.replacesClientId"},{"refs":[{"id":"ref-for-concept-event\u2465"}],"title":"4.5.6. event.handled"},{"refs":[{"id":"ref-for-concept-event\u2466"}],"title":"Update Service Worker Extended Events Set"}],"url":"https://dom.spec.whatwg.org/#concept-event"}, "26c1acab": {"dfnID":"26c1acab","dfnText":"parse a referrer policy from a referrer-policy header","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-referrer-policy-from-header"}],"title":"Update"}],"url":"https://w3c.github.io/webappsec-referrer-policy/#parse-referrer-policy-from-header"}, "2889d1ec": {"dfnID":"2889d1ec","dfnText":"navigation request","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-request"},{"id":"ref-for-navigation-request\u2460"},{"id":"ref-for-navigation-request\u2461"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#navigation-request"}, -"2a37f6e3": {"dfnID":"2a37f6e3","dfnText":"api url character encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-api-url-character-encoding"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "2aaa2f42": {"dfnID":"2aaa2f42","dfnText":"http fetch","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-http-fetch"}],"title":"2.4.1. The window client case"},{"refs":[{"id":"ref-for-concept-http-fetch\u2460"}],"title":"2.4.2. The worker client case"},{"refs":[{"id":"ref-for-concept-http-fetch\u2461"},{"id":"ref-for-concept-http-fetch\u2462"}],"title":"4.7. Events"}],"url":"https://fetch.spec.whatwg.org/#concept-http-fetch"}, "2aaa937f": {"dfnID":"2aaa937f","dfnText":"cross-origin resource policy check","external":true,"refSections":[{"refs":[{"id":"ref-for-cross-origin-resource-policy-check"}],"title":"5.4.2. matchAll(request, options)"}],"url":"https://fetch.spec.whatwg.org/#cross-origin-resource-policy-check"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-eventtarget\u2460"}],"title":"3.2. ServiceWorkerRegistration"},{"refs":[{"id":"ref-for-eventtarget\u2461"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, @@ -8962,7 +9008,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "38381ead": {"dfnID":"38381ead","dfnText":"message","external":true,"refSections":[{"refs":[{"id":"ref-for-event-message"}],"title":"4.2.6. postMessage(message, options)"}],"url":"https://html.spec.whatwg.org/multipage/indices.html#event-message"}, "3a711be7": {"dfnID":"3a711be7","dfnText":"scheme","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-scheme"},{"id":"ref-for-concept-url-scheme\u2460"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-url-scheme\u2461"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-concept-url-scheme\u2462"},{"id":"ref-for-concept-url-scheme\u2463"}],"title":"Start Register"},{"refs":[{"id":"ref-for-concept-url-scheme\u2464"}],"title":"Batch Cache Operations"}],"url":"https://url.spec.whatwg.org/#concept-url-scheme"}, "3ab2ec8b": {"dfnID":"3ab2ec8b","dfnText":"query","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-query"},{"id":"ref-for-concept-url-query\u2460"}],"title":"Request Matches Cached Item"}],"url":"https://url.spec.whatwg.org/#concept-url-query"}, -"3ad6b69f": {"dfnID":"3ad6b69f","dfnText":"message","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-exception-message"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-dfn-exception-message\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-dfn-exception-message\u2461"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-dfn-exception-message\u2462"},{"id":"ref-for-dfn-exception-message\u2463"}],"title":"Reject Job Promise"}],"url":"https://webidl.spec.whatwg.org/#dfn-exception-message"}, "3ae34c95": {"dfnID":"3ae34c95","dfnText":"destination","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-destination"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-request-destination\u2460"}],"title":"Update"},{"refs":[{"id":"ref-for-concept-request-destination\u2461"},{"id":"ref-for-concept-request-destination\u2462"},{"id":"ref-for-concept-request-destination\u2463"},{"id":"ref-for-concept-request-destination\u2464"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#concept-request-destination"}, "3b0ee7a3": {"dfnID":"3b0ee7a3","dfnText":"base url","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-script-base-url"},{"id":"ref-for-concept-script-base-url\u2460"}],"title":"Update"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-script-base-url"}, "3b90bdcd": {"dfnID":"3b90bdcd","dfnText":"resolve","external":true,"refSections":[{"refs":[{"id":"ref-for-resolve"},{"id":"ref-for-resolve\u2460"}],"title":"Handle Fetch"}],"url":"https://webidl.spec.whatwg.org/#resolve"}, @@ -9018,6 +9063,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "692595fe": {"dfnID":"692595fe","dfnText":"ordered set","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-set"},{"id":"ref-for-ordered-set\u2460"},{"id":"ref-for-ordered-set\u2461"},{"id":"ref-for-ordered-set\u2462"},{"id":"ref-for-ordered-set\u2463"},{"id":"ref-for-ordered-set\u2464"}],"title":"2.1. Service Worker"},{"refs":[{"id":"ref-for-ordered-set\u2465"}],"title":"5.5.5. keys()"}],"url":"https://infra.spec.whatwg.org/#ordered-set"}, "69ec9122": {"dfnID":"69ec9122","dfnText":"obtain a service worker agent","external":true,"refSections":[{"refs":[{"id":"ref-for-obtain-a-service-worker-agent"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#obtain-a-service-worker-agent"}, "6a5a59a0": {"dfnID":"6a5a59a0","dfnText":"event handler","external":true,"refSections":[{"refs":[{"id":"ref-for-event-handlers"},{"id":"ref-for-event-handlers\u2460"}],"title":"3.1.6. Event handler"},{"refs":[{"id":"ref-for-event-handlers\u2461"},{"id":"ref-for-event-handlers\u2462"}],"title":"3.2.10. Event handler"},{"refs":[{"id":"ref-for-event-handlers\u2463"},{"id":"ref-for-event-handlers\u2464"}],"title":"3.4.7. Event handlers"},{"refs":[{"id":"ref-for-event-handlers\u2465"},{"id":"ref-for-event-handlers\u2466"}],"title":"4.1.5. Event handlers"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers"}, +"6a73c310": {"dfnID":"6a73c310","dfnText":"create","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2461"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2462"},{"id":"ref-for-dfn-create-exception\u2463"},{"id":"ref-for-dfn-create-exception\u2464"}],"title":"Reject Job Promise"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "6b6bb798": {"dfnID":"6b6bb798","dfnText":"enqueue","external":true,"refSections":[{"refs":[{"id":"ref-for-readablestream-enqueue"}],"title":"4.5.7. event.respondWith(r)"}],"url":"https://streams.spec.whatwg.org/#readablestream-enqueue"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"},{"id":"ref-for-idl-any\u2460"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-idl-any\u2461"},{"id":"ref-for-idl-any\u2462"}],"title":"4.2. Client"},{"refs":[{"id":"ref-for-idl-any\u2463"}],"title":"4.4. ExtendableEvent"},{"refs":[{"id":"ref-for-idl-any\u2464"},{"id":"ref-for-idl-any\u2465"}],"title":"4.5. FetchEvent"},{"refs":[{"id":"ref-for-idl-any\u2466"},{"id":"ref-for-idl-any\u2467"}],"title":"4.6. ExtendableMessageEvent"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "6d1db60d": {"dfnID":"6d1db60d","dfnText":"service-workers mode","external":true,"refSections":[{"refs":[{"id":"ref-for-request-service-workers-mode"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-request-service-workers-mode\u2460"}],"title":"6.3.2. importScripts(urls)"},{"refs":[{"id":"ref-for-request-service-workers-mode\u2461"}],"title":"Update"},{"refs":[{"id":"ref-for-request-service-workers-mode\u2462"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#request-service-workers-mode"}, @@ -9031,7 +9077,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "78457614": {"dfnID":"78457614","dfnText":"module map (for environment settings object)","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-settings-object-module-map"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-module-map"}, "78a97411": {"dfnID":"78a97411","dfnText":"environment discarding steps","external":true,"refSections":[{"refs":[{"id":"ref-for-environment-discarding-steps"}],"title":"2.3. Service Worker Client"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#environment-discarding-steps"}, "78aa7d8d": {"dfnID":"78aa7d8d","dfnText":"run a module script","external":true,"refSections":[{"refs":[{"id":"ref-for-run-a-module-script"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#run-a-module-script"}, -"790f0b49": {"dfnID":"790f0b49","dfnText":"signal abort","external":true,"refSections":[{"refs":[{"id":"ref-for-abortsignal-signal-abort"}],"title":"Handle Fetch"}],"url":"https://dom.spec.whatwg.org/#abortsignal-signal-abort"}, "797018a7": {"dfnID":"797018a7","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"},{"id":"ref-for-invalidstateerror\u2460"}],"title":"3.2.8. update()"},{"refs":[{"id":"ref-for-invalidstateerror\u2461"}],"title":"3.6.1. enable()"},{"refs":[{"id":"ref-for-invalidstateerror\u2462"}],"title":"3.6.2. disable()"},{"refs":[{"id":"ref-for-invalidstateerror\u2463"}],"title":"3.6.3. setHeaderValue(value)"},{"refs":[{"id":"ref-for-invalidstateerror\u2464"}],"title":"4.3.4. claim()"},{"refs":[{"id":"ref-for-invalidstateerror\u2465"},{"id":"ref-for-invalidstateerror\u2466"}],"title":"4.4. ExtendableEvent"},{"refs":[{"id":"ref-for-invalidstateerror\u2467"},{"id":"ref-for-invalidstateerror\u2468"}],"title":"4.5.7. event.respondWith(r)"},{"refs":[{"id":"ref-for-invalidstateerror\u2460\u24ea"}],"title":"Batch Cache Operations"}],"url":"https://webidl.spec.whatwg.org/#invalidstateerror"}, "7a2fc3e3": {"dfnID":"7a2fc3e3","dfnText":"type","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-workerglobalscope-type"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-type"}, "7b0d918d": {"dfnID":"7b0d918d","dfnText":"break","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-break"}],"title":"4.2.6. postMessage(message, options)"}],"url":"https://infra.spec.whatwg.org/#iteration-break"}, @@ -9129,7 +9174,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "bffb633e": {"dfnID":"bffb633e","dfnText":"utf-8","external":true,"refSections":[{"refs":[{"id":"ref-for-utf-8"}],"title":"Run Service Worker"}],"url":"https://encoding.spec.whatwg.org/#utf-8"}, "c0868016": {"dfnID":"c0868016","dfnText":"path","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-path"}],"title":"6.5. Path restriction"},{"refs":[{"id":"ref-for-concept-url-path\u2460"},{"id":"ref-for-concept-url-path\u2461"}],"title":"Start Register"},{"refs":[{"id":"ref-for-concept-url-path\u2462"},{"id":"ref-for-concept-url-path\u2463"},{"id":"ref-for-concept-url-path\u2464"},{"id":"ref-for-concept-url-path\u2465"}],"title":"Update"}],"url":"https://url.spec.whatwg.org/#concept-url-path"}, "c1030cbe": {"dfnID":"c1030cbe","dfnText":"unusable","external":true,"refSections":[{"refs":[{"id":"ref-for-body-unusable"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#body-unusable"}, -"c164edfe": {"dfnID":"c164edfe","dfnText":"created","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2461"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2462"},{"id":"ref-for-dfn-create-exception\u2463"},{"id":"ref-for-dfn-create-exception\u2464"}],"title":"Reject Job Promise"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "c262266a": {"dfnID":"c262266a","dfnText":"WorkerType","external":true,"refSections":[{"refs":[{"id":"ref-for-workertype"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://html.spec.whatwg.org/multipage/workers.html#workertype"}, "c3b2d08c": {"dfnID":"c3b2d08c","dfnText":"task source","external":true,"refSections":[{"refs":[{"id":"ref-for-task-source"},{"id":"ref-for-task-source\u2460"},{"id":"ref-for-task-source\u2461"}],"title":"2.5. Task Sources"},{"refs":[{"id":"ref-for-task-source\u2462"},{"id":"ref-for-task-source\u2463"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-task-source\u2464"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-task-source\u2465"},{"id":"ref-for-task-source\u2466"},{"id":"ref-for-task-source\u2467"}],"title":"Terminate Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-source"}, "c3e881ef": {"dfnID":"c3e881ef","dfnText":"SecurityError","external":true,"refSections":[{"refs":[{"id":"ref-for-securityerror"}],"title":"3.4.4. getRegistration(clientURL)"},{"refs":[{"id":"ref-for-securityerror\u2460"},{"id":"ref-for-securityerror\u2461"},{"id":"ref-for-securityerror\u2462"}],"title":"Register"},{"refs":[{"id":"ref-for-securityerror\u2463"},{"id":"ref-for-securityerror\u2464"},{"id":"ref-for-securityerror\u2465"}],"title":"Update"},{"refs":[{"id":"ref-for-securityerror\u2466"}],"title":"Unregister"},{"refs":[{"id":"ref-for-securityerror\u2467"},{"id":"ref-for-securityerror\u2468"}],"title":"Resolve Get Client Promise"}],"url":"https://webidl.spec.whatwg.org/#securityerror"}, @@ -10254,7 +10298,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "http://tc39.github.io/ecma262/#sec-detacharraybuffer": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"detacharraybuffer","type":"dfn","url":"http://tc39.github.io/ecma262/#sec-detacharraybuffer"}, "http://tc39.github.io/ecma262/#sec-map-objects": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"map objects","type":"dfn","url":"http://tc39.github.io/ecma262/#sec-map-objects"}, "http://tc39.github.io/ecma262/#sec-promise-objects": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"promise","type":"dfn","url":"http://tc39.github.io/ecma262/#sec-promise-objects"}, -"https://dom.spec.whatwg.org/#abortsignal-signal-abort": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"signal abort","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-signal-abort"}, "https://dom.spec.whatwg.org/#canceled-flag": {"export":true,"for_":["Event"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"canceled flag","type":"dfn","url":"https://dom.spec.whatwg.org/#canceled-flag"}, "https://dom.spec.whatwg.org/#concept-document": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"document","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-document"}, "https://dom.spec.whatwg.org/#concept-event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"event","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-event"}, @@ -10364,7 +10407,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/web-messaging.html#messageport": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessagePort","type":"interface","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messageport"}, "https://html.spec.whatwg.org/multipage/webappapis.html#abort-a-running-script": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"abort a running script","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#abort-a-running-script"}, "https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api base url","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, -"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api url character encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "https://html.spec.whatwg.org/multipage/webappapis.html#classic-script": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"classic script","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#classic-script"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop": {"export":true,"for_":["agent"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event loop","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-active-service-worker": {"export":true,"for_":["environment"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"active service worker","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-active-service-worker"}, @@ -10504,10 +10546,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#a-promise-rejected-with": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"a promise rejected with","type":"dfn","url":"https://webidl.spec.whatwg.org/#a-promise-rejected-with"}, "https://webidl.spec.whatwg.org/#a-promise-resolved-with": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"a promise resolved with","type":"dfn","url":"https://webidl.spec.whatwg.org/#a-promise-resolved-with"}, "https://webidl.spec.whatwg.org/#aborterror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"AbortError","type":"exception","url":"https://webidl.spec.whatwg.org/#aborterror"}, -"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"created","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, +"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "https://webidl.spec.whatwg.org/#dfn-create-frozen-array": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create a frozen array","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-frozen-array"}, "https://webidl.spec.whatwg.org/#dfn-exception": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"exception","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-exception"}, -"https://webidl.spec.whatwg.org/#dfn-exception-message": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"message","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-exception-message"}, "https://webidl.spec.whatwg.org/#dfn-frozen-array-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"frozen array type","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-frozen-array-type"}, "https://webidl.spec.whatwg.org/#dfn-partial-interface": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"partial interface","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-partial-interface"}, "https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled": {"export":true,"for_":["promise"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"reacting","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled"}, diff --git a/tests/github/w3c/ServiceWorker/docs/v1/index.console.txt b/tests/github/w3c/ServiceWorker/docs/v1/index.console.txt index faabf38215..7b8dd0dac0 100644 --- a/tests/github/w3c/ServiceWorker/docs/v1/index.console.txt +++ b/tests/github/w3c/ServiceWorker/docs/v1/index.console.txt @@ -23,12 +23,14 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=event=] LINE ~187: Multiple possible 'events' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=events=] LINE 211: Multiple possible 'event loop' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop @@ -57,6 +59,7 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state <a bs-line-number="361" data-link-type="dfn" data-lt="state">state</a> LINE ~408: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] @@ -67,6 +70,7 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state <a bs-line-number="561" data-link-type="dfn" data-lt="state">state</a> LINE 563: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="563" data-link-type="dfn" data-lt="context object">context object</a> @@ -201,6 +205,7 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1415" data-link-type="dfn" data-lt="event">event</a> LINE ~1425: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] @@ -224,6 +229,8 @@ LINE ~1784: No 'dfn' refs found for 'process response end-of-body' that are mark [=process response end-of-body=] LINE ~1802: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] +LINE ~1809: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE ~1830: No 'dfn' refs found for 'disturbed' with for='['Body']'. [=Body/disturbed=] LINE ~1830: No 'dfn' refs found for 'locked' with for='['Body']'. @@ -234,8 +241,12 @@ LINK ERROR: No 'interface' refs found for 'ReadableStream' with spec 'fetch'. {{ReadableStream}} LINE ~1843: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] +LINE ~1850: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE ~1871: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] +LINE ~1880: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE ~1896: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] LINE ~1946: No 'dfn' refs found for 'present'. @@ -255,7 +266,12 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] +LINE ~2333: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] +LINE ~2336: No 'dfn' refs found for 'message' with for='['exception']'. +[=exception/message=] LINE ~2401: No 'dfn' refs found for 'perform the fetch'. [=fetching scripts/perform the fetch=] LINE ~2415: No 'dfn' refs found for 'is top-level'. @@ -289,6 +305,7 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] LINE ~2646: No 'dfn' refs found for 'completion'. [=Completion=] @@ -297,6 +314,7 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] LINE 2661: Multiple possible 'event loop' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop @@ -308,6 +326,8 @@ LINE ~2670: No 'dfn' refs found for 'referrer policy' with for='['environment se [=environment settings object/referrer policy=] LINE ~2671: No 'dfn' refs found for 'referrer policy' with for='['WorkerGlobalScope']'. [=WorkerGlobalScope/referrer policy=] +LINE 2672: No 'dfn' refs found for 'api url character encoding'. +<a bs-line-number="2672" data-link-type="dfn" data-lt="API URL character encoding">API URL character encoding</a> LINE ~2680: No 'dfn' refs found for 'https state'. [=environment settings object/HTTPS state=] LINE ~2681: No 'dfn' refs found for 'https state'. @@ -335,6 +355,7 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state <a bs-line-number="2773" data-link-type="dfn" data-lt="state">state</a> LINE 2792: Multiple possible 'event loop' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop @@ -347,6 +368,7 @@ Local references: spec:service-workers-1; type:dfn; for:service worker; text:state for-less references: spec:wai-aria-1.2; type:dfn; for:/; text:state +spec:wai-aria-1.3; type:dfn; for:/; text:state [=state=] LINE ~2843: Multiple possible 'event loop' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop @@ -361,6 +383,7 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=event=] LINE ~3164: No 'dfn' refs found for 'nested browsing context'. [=Nested browsing context=] @@ -371,6 +394,7 @@ spec:html; type:dfn; for:agent; text:event loop spec:html; type:dfn; for:/; text:event loop [=event loop=] WARNING: No 'dom-client-postmessage-message-options' ID found, skipping MDN features that would target it. +WARNING: No 'dom-fetchevent-handled' ID found, skipping MDN features that would target it. WARNING: No 'fetch-event-preloadresponse' ID found, skipping MDN features that would target it. WARNING: No 'fetch-event-replacesClientId' ID found, skipping MDN features that would target it. WARNING: No 'fetch-event-resultingclientid' ID found, skipping MDN features that would target it. @@ -379,4 +403,5 @@ WARNING: No 'dom-navigationpreloadmanager-enable' ID found, skipping MDN feature WARNING: No 'dom-navigationpreloadmanager-getstate' ID found, skipping MDN features that would target it. WARNING: No 'dom-navigationpreloadmanager-setheadervalue' ID found, skipping MDN features that would target it. WARNING: No 'navigation-preload-manager' ID found, skipping MDN features that would target it. +WARNING: No 'dom-serviceworker-postmessage-message-options' ID found, skipping MDN features that would target it. WARNING: No 'service-worker-registration-navigationpreload' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/ServiceWorker/docs/v1/index.html b/tests/github/w3c/ServiceWorker/docs/v1/index.html index 025ed3c6e3..a8a54f1cc8 100644 --- a/tests/github/w3c/ServiceWorker/docs/v1/index.html +++ b/tests/github/w3c/ServiceWorker/docs/v1/index.html @@ -5,7 +5,6 @@ <title>Service Workers 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/service-workers/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -986,7 +985,7 @@ <h1 class="p-name no-ref" id="title">Service Workers 1</h1> <p>This spec is a subset of <a href="https://w3c.github.io/ServiceWorker/">the nightly version</a>. It is advancing toward a W3C Recommendation. For implementers and developers who seek all the latest features, <a href="https://w3c.github.io/ServiceWorker/">Service Workers Nightly</a> is the right document as is constantly reflects new requirements.</p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1005,7 +1004,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/101220/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -3157,7 +3156,7 @@ <h4 class="heading settled" data-level="5.4.4" id="cache-addAll"><span class="se <li data-md> <p>If <var>errorData</var> is null, resolve <var>cacheJobPromise</var> with undefined.</p> <li data-md> - <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message">message</a>, in <var>realm</var>.</p> + <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>realm</var>.</p> </ol> </ol> <li data-md> @@ -3246,7 +3245,7 @@ <h4 class="heading settled" data-level="5.4.5" id="cache-put"><span class="secno <li data-md> <p>If <var>errorData</var> is null, resolve <var>cacheJobPromise</var> with undefined.</p> <li data-md> - <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception①">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception①">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message①">message</a>, in <var>realm</var>.</p> + <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception①">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception①">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>realm</var>.</p> </ol> </ol> <li data-md> @@ -3308,7 +3307,7 @@ <h4 class="heading settled" data-level="5.4.6" id="cache-delete"><span class="se <p>Else, resolve <var>cacheJobPromise</var> with false.</p> </ol> <li data-md> - <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception②">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception②">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message②">message</a>, in <var>realm</var>.</p> + <p>Else, reject <var>cacheJobPromise</var> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception②">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception②">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>realm</var>.</p> </ol> </ol> <li data-md> @@ -3914,14 +3913,14 @@ <h3 class="heading settled" id="reject-job-promise-algorithm"><span class="conte </dl> <ol> <li data-md> - <p>If <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client⑨">client</a> is not null, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②④">queue a task</a>, on <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①⓪">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑦">DOM manipulation task source</a>, to reject <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise④">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception④">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception③">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message③">message</a>, in <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①①">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑦">Realm</a>.</p> + <p>If <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client⑨">client</a> is not null, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②④">queue a task</a>, on <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①⓪">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑦">DOM manipulation task source</a>, to reject <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise④">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception④">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception③">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①①">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑦">Realm</a>.</p> <li data-md> <p>For each <var>equivalentJob</var> in <var>job</var>’s <a data-link-type="dfn" href="#dfn-job-list-of-equivalent-jobs" id="ref-for-dfn-job-list-of-equivalent-jobs②">list of equivalent jobs</a>:</p> <ol> <li data-md> <p>If <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①②">client</a> is null, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#iteration-continue" id="ref-for-iteration-continue⑦">continue</a>.</p> <li data-md> - <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⑤">Queue a task</a>, on <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①③">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①④">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑧">DOM manipulation task source</a>, to reject <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise⑤">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception⑤">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception④">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception-message" id="ref-for-dfn-exception-message④">message</a>, in <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①④">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑧">Realm</a>.</p> + <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⑤">Queue a task</a>, on <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①③">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①④">responsible event loop</a> using the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source①⑧">DOM manipulation task source</a>, to reject <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-promise" id="ref-for-dfn-job-promise⑤">job promise</a> with a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception⑤">new</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-exception" id="ref-for-dfn-exception④">exception</a> with <var>errorData</var> and a user agent-defined <a data-link-type="dfn">message</a>, in <var>equivalentJob</var>’s <a data-link-type="dfn" href="#dfn-job-client" id="ref-for-dfn-job-client①④">client</a>'s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object&apos;s-realm" id="ref-for-environment-settings-object&apos;s-realm⑧">Realm</a>.</p> </ol> </ol> </section> @@ -4532,7 +4531,7 @@ <h3 class="heading settled" id="run-service-worker-algorithm"><span class="conte <dt data-md>The <a data-link-type="dfn">referrer policy</a> <dd data-md> <p>Return <var>workerGlobalScope</var>’s <a data-link-type="dfn">referrer policy</a>.</p> - <dt data-md>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding" id="ref-for-api-url-character-encoding">API URL character encoding</a> + <dt data-md>The <a data-link-type="dfn">API URL character encoding</a> <dd data-md> <p>Return UTF-8.</p> <dt data-md>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url⑤">API base URL</a> @@ -5740,20 +5739,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -6303,7 +6304,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="0ba26d3b">active service worker</span> <li><span class="dfn-paneled" id="fff7fefb">ancestor origins list</span> <li><span class="dfn-paneled" id="1b5b1c0c">api base url</span> - <li><span class="dfn-paneled" id="2a37f6e3">api url character encoding</span> <li><span class="dfn-paneled" id="58ebefde">auxiliary browsing context</span> <li><span class="dfn-paneled" id="3b0ee7a3">base url</span> <li><span class="dfn-paneled" id="0d0390b4">browsing context</span> @@ -6503,12 +6503,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8f5c2179">a promise resolved with</span> <li><span class="dfn-paneled" id="6c6b1005">any</span> <li><span class="dfn-paneled" id="5372cca8">boolean</span> + <li><span class="dfn-paneled" id="6a73c310">create</span> <li><span class="dfn-paneled" id="1641b9ef">create a frozen array</span> - <li><span class="dfn-paneled" id="c164edfe">created</span> <li><span class="dfn-paneled" id="cd787c3f">exception</span> <li><span class="dfn-paneled" id="abbed741">frozen array type</span> <li><span class="dfn-paneled" id="4ae6d1ad">getting a promise to wait for all</span> - <li><span class="dfn-paneled" id="3ad6b69f">message</span> <li><span class="dfn-paneled" id="efd1ec5d">object</span> <li><span class="dfn-paneled" id="d0eba3fd">partial interface</span> <li><span class="dfn-paneled" id="116848ac">reacting</span> @@ -7170,7 +7169,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ExtendableEvent/ExtendableEvent" title="The ExtendableEvent() constructor creates a new ExtendableEvent object.">ExtendableEvent/ExtendableEvent</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>24+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7330,7 +7329,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent/FetchEvent" title="The FetchEvent() constructor creates a new FetchEvent object.">FetchEvent/FetchEvent</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>44+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7420,6 +7419,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworker-postmessage"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/postMessage" title="The postMessage() method of the ServiceWorker interface sends a message to the worker. This accepts a single parameter, which is the data to send to the worker. The data may be any JavaScript object which can be handled by the structured clone algorithm.">ServiceWorker/postMessage</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="service-worker-url"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -7679,7 +7694,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerglobalscope-onfetch"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/fetch_event" title="The fetch event is fired when the fetch() method is called.">ServiceWorkerGlobalScope/fetch_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope/fetch_event" title="The fetch event is fired in the service worker&apos;s global scope when the main app thread makes a network request. It enables the service worker to intercept network requests and send customized responses (for example, from a local cache).">ServiceWorkerGlobalScope/fetch_event</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> @@ -7965,11 +7980,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="client-navigate"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WindowClient/navigate" title="The navigate() method of the WindowClient interface loads a specified URL into a controlled client page then returns a Promise that resolves to the existing WindowClient.">WindowClient/navigate</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> + <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8039,7 +8055,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>18</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -8272,7 +8288,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "26b82890": {"dfnID":"26b82890","dfnText":"event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event"},{"id":"ref-for-concept-event\u2460"}],"title":"2.1.2. Events"},{"refs":[{"id":"ref-for-concept-event\u2461"}],"title":"4.5.2. event.clientId"},{"refs":[{"id":"ref-for-concept-event\u2462"}],"title":"Update Service Worker Extended Events Set"}],"url":"https://dom.spec.whatwg.org/#concept-event"}, "26c1acab": {"dfnID":"26c1acab","dfnText":"parse a referrer policy from a referrer-policy header","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-referrer-policy-from-header"}],"title":"Update"}],"url":"https://w3c.github.io/webappsec-referrer-policy/#parse-referrer-policy-from-header"}, "2889d1ec": {"dfnID":"2889d1ec","dfnText":"navigation request","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-request"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#navigation-request"}, -"2a37f6e3": {"dfnID":"2a37f6e3","dfnText":"api url character encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-api-url-character-encoding"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "2aaa2f42": {"dfnID":"2aaa2f42","dfnText":"http fetch","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-http-fetch"}],"title":"2.4.1. The window client case"},{"refs":[{"id":"ref-for-concept-http-fetch\u2460"}],"title":"2.4.2. The worker client case"},{"refs":[{"id":"ref-for-concept-http-fetch\u2461"},{"id":"ref-for-concept-http-fetch\u2462"}],"title":"4.7. Events"}],"url":"https://fetch.spec.whatwg.org/#concept-http-fetch"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-eventtarget\u2460"}],"title":"3.2. ServiceWorkerRegistration"},{"refs":[{"id":"ref-for-eventtarget\u2461"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2d09a0dd": {"dfnID":"2d09a0dd","dfnText":"referrer policy","external":true,"refSections":[{"refs":[{"id":"ref-for-referrer-policy"}],"title":"2.1. Service Worker"}],"url":"https://w3c.github.io/webappsec-referrer-policy/#referrer-policy"}, @@ -8288,7 +8303,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "38381ead": {"dfnID":"38381ead","dfnText":"message","external":true,"refSections":[{"refs":[{"id":"ref-for-event-message"}],"title":"4.2.5. postMessage(message, transfer)"}],"url":"https://html.spec.whatwg.org/multipage/indices.html#event-message"}, "3a711be7": {"dfnID":"3a711be7","dfnText":"scheme","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-scheme"},{"id":"ref-for-concept-url-scheme\u2460"}],"title":"3.4.3. register(scriptURL, options)"},{"refs":[{"id":"ref-for-concept-url-scheme\u2461"},{"id":"ref-for-concept-url-scheme\u2462"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-url-scheme\u2463"},{"id":"ref-for-concept-url-scheme\u2464"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-concept-url-scheme\u2465"}],"title":"Batch Cache Operations"}],"url":"https://url.spec.whatwg.org/#concept-url-scheme"}, "3ab2ec8b": {"dfnID":"3ab2ec8b","dfnText":"query","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-query"},{"id":"ref-for-concept-url-query\u2460"}],"title":"Request Matches Cached Item"}],"url":"https://url.spec.whatwg.org/#concept-url-query"}, -"3ad6b69f": {"dfnID":"3ad6b69f","dfnText":"message","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-exception-message"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-dfn-exception-message\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-dfn-exception-message\u2461"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-dfn-exception-message\u2462"},{"id":"ref-for-dfn-exception-message\u2463"}],"title":"Reject Job Promise"}],"url":"https://webidl.spec.whatwg.org/#dfn-exception-message"}, "3ae34c95": {"dfnID":"3ae34c95","dfnText":"destination","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-destination"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-request-destination\u2460"}],"title":"Update"},{"refs":[{"id":"ref-for-concept-request-destination\u2461"},{"id":"ref-for-concept-request-destination\u2462"},{"id":"ref-for-concept-request-destination\u2463"},{"id":"ref-for-concept-request-destination\u2464"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#concept-request-destination"}, "3b0ee7a3": {"dfnID":"3b0ee7a3","dfnText":"base url","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-script-base-url"},{"id":"ref-for-concept-script-base-url\u2460"}],"title":"Update"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-script-base-url"}, "3bd18bd6": {"dfnID":"3bd18bd6","dfnText":"error","external":true,"refSections":[{"refs":[{"id":"ref-for-readablestream-error"}],"title":"4.5.3. event.respondWith(r)"}],"url":"https://streams.spec.whatwg.org/#readablestream-error"}, @@ -8332,6 +8346,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "688f9669": {"dfnID":"688f9669","dfnText":"cache mode","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-cache-mode"}],"title":"6.3.2. importScripts(urls)"},{"refs":[{"id":"ref-for-concept-request-cache-mode\u2460"},{"id":"ref-for-concept-request-cache-mode\u2461"}],"title":"Update"}],"url":"https://fetch.spec.whatwg.org/#concept-request-cache-mode"}, "692595fe": {"dfnID":"692595fe","dfnText":"ordered set","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-set"},{"id":"ref-for-ordered-set\u2460"}],"title":"2.1. Service Worker"},{"refs":[{"id":"ref-for-ordered-set\u2461"}],"title":"5.5.5. keys()"}],"url":"https://infra.spec.whatwg.org/#ordered-set"}, "6a5a59a0": {"dfnID":"6a5a59a0","dfnText":"event handler","external":true,"refSections":[{"refs":[{"id":"ref-for-event-handlers"},{"id":"ref-for-event-handlers\u2460"}],"title":"3.1.5. Event handler"},{"refs":[{"id":"ref-for-event-handlers\u2461"},{"id":"ref-for-event-handlers\u2462"}],"title":"3.2.9. Event handler"},{"refs":[{"id":"ref-for-event-handlers\u2463"},{"id":"ref-for-event-handlers\u2464"}],"title":"3.4.7. Event handlers"},{"refs":[{"id":"ref-for-event-handlers\u2465"},{"id":"ref-for-event-handlers\u2466"}],"title":"4.1.4. Event handlers"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers"}, +"6a73c310": {"dfnID":"6a73c310","dfnText":"create","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2461"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2462"},{"id":"ref-for-dfn-create-exception\u2463"},{"id":"ref-for-dfn-create-exception\u2464"}],"title":"Reject Job Promise"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "6b6bb798": {"dfnID":"6b6bb798","dfnText":"enqueue","external":true,"refSections":[{"refs":[{"id":"ref-for-readablestream-enqueue"}],"title":"4.5.3. event.respondWith(r)"}],"url":"https://streams.spec.whatwg.org/#readablestream-enqueue"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-idl-any\u2460"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-idl-any\u2461"}],"title":"4.2. Client"},{"refs":[{"id":"ref-for-idl-any\u2462"}],"title":"4.3. Clients"},{"refs":[{"id":"ref-for-idl-any\u2463"}],"title":"4.4. ExtendableEvent"},{"refs":[{"id":"ref-for-idl-any\u2464"},{"id":"ref-for-idl-any\u2465"}],"title":"4.6. ExtendableMessageEvent"},{"refs":[{"id":"ref-for-idl-any\u2466"}],"title":"5.4. Cache"},{"refs":[{"id":"ref-for-idl-any\u2467"}],"title":"5.5. CacheStorage"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "6d1db60d": {"dfnID":"6d1db60d","dfnText":"service-workers mode","external":true,"refSections":[{"refs":[{"id":"ref-for-request-service-workers-mode"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-request-service-workers-mode\u2460"}],"title":"6.3.2. importScripts(urls)"},{"refs":[{"id":"ref-for-request-service-workers-mode\u2461"}],"title":"Update"}],"url":"https://fetch.spec.whatwg.org/#request-service-workers-mode"}, @@ -8429,7 +8444,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "be0c27b2": {"dfnID":"be0c27b2","dfnText":"Navigator","external":true,"refSections":[{"refs":[{"id":"ref-for-navigator"}],"title":"3.3. navigator.serviceWorker"},{"refs":[{"id":"ref-for-navigator\u2460"},{"id":"ref-for-navigator\u2461"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://html.spec.whatwg.org/multipage/system-state.html#navigator"}, "bfc1c271": {"dfnID":"bfc1c271","dfnText":"Worker","external":true,"refSections":[{"refs":[{"id":"ref-for-worker"}],"title":"4.1. ServiceWorkerGlobalScope"}],"url":"https://html.spec.whatwg.org/multipage/workers.html#worker"}, "c0868016": {"dfnID":"c0868016","dfnText":"path","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-path"},{"id":"ref-for-concept-url-path\u2460"}],"title":"3.4.3. register(scriptURL, options)"},{"refs":[{"id":"ref-for-concept-url-path\u2461"}],"title":"6.5. Path restriction"},{"refs":[{"id":"ref-for-concept-url-path\u2462"},{"id":"ref-for-concept-url-path\u2463"},{"id":"ref-for-concept-url-path\u2464"},{"id":"ref-for-concept-url-path\u2465"}],"title":"Update"}],"url":"https://url.spec.whatwg.org/#concept-url-path"}, -"c164edfe": {"dfnID":"c164edfe","dfnText":"created","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2461"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-dfn-create-exception\u2462"},{"id":"ref-for-dfn-create-exception\u2463"},{"id":"ref-for-dfn-create-exception\u2464"}],"title":"Reject Job Promise"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "c262266a": {"dfnID":"c262266a","dfnText":"WorkerType","external":true,"refSections":[{"refs":[{"id":"ref-for-workertype"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://html.spec.whatwg.org/multipage/workers.html#workertype"}, "c3b2d08c": {"dfnID":"c3b2d08c","dfnText":"task source","external":true,"refSections":[{"refs":[{"id":"ref-for-task-source"},{"id":"ref-for-task-source\u2460"},{"id":"ref-for-task-source\u2461"}],"title":"2.5. Task Sources"},{"refs":[{"id":"ref-for-task-source\u2462"},{"id":"ref-for-task-source\u2463"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-task-source\u2464"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-task-source\u2465"},{"id":"ref-for-task-source\u2466"},{"id":"ref-for-task-source\u2467"}],"title":"Terminate Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-source"}, "c3e881ef": {"dfnID":"c3e881ef","dfnText":"SecurityError","external":true,"refSections":[{"refs":[{"id":"ref-for-securityerror"}],"title":"3.4.4. getRegistration(clientURL)"},{"refs":[{"id":"ref-for-securityerror\u2460"},{"id":"ref-for-securityerror\u2461"},{"id":"ref-for-securityerror\u2462"}],"title":"Register"},{"refs":[{"id":"ref-for-securityerror\u2463"},{"id":"ref-for-securityerror\u2464"},{"id":"ref-for-securityerror\u2465"}],"title":"Update"},{"refs":[{"id":"ref-for-securityerror\u2466"}],"title":"Unregister"},{"refs":[{"id":"ref-for-securityerror\u2467"},{"id":"ref-for-securityerror\u2468"}],"title":"Resolve Get Client Promise"}],"url":"https://webidl.spec.whatwg.org/#securityerror"}, @@ -9590,7 +9604,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/web-messaging.html#messageport": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessagePort","type":"interface","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messageport"}, "https://html.spec.whatwg.org/multipage/webappapis.html#abort-a-running-script": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"abort a running script","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#abort-a-running-script"}, "https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api base url","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, -"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api url character encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "https://html.spec.whatwg.org/multipage/webappapis.html#classic-script": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"classic script","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#classic-script"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop": {"export":true,"for_":["agent"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event loop","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-active-service-worker": {"export":true,"for_":["environment"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"active service worker","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-active-service-worker"}, @@ -9713,10 +9726,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#a-promise-rejected-with": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"a promise rejected with","type":"dfn","url":"https://webidl.spec.whatwg.org/#a-promise-rejected-with"}, "https://webidl.spec.whatwg.org/#a-promise-resolved-with": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"a promise resolved with","type":"dfn","url":"https://webidl.spec.whatwg.org/#a-promise-resolved-with"}, "https://webidl.spec.whatwg.org/#aborterror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"AbortError","type":"exception","url":"https://webidl.spec.whatwg.org/#aborterror"}, -"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"created","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, +"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "https://webidl.spec.whatwg.org/#dfn-create-frozen-array": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create a frozen array","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-frozen-array"}, "https://webidl.spec.whatwg.org/#dfn-exception": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"exception","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-exception"}, -"https://webidl.spec.whatwg.org/#dfn-exception-message": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"message","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-exception-message"}, "https://webidl.spec.whatwg.org/#dfn-frozen-array-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"frozen array type","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-frozen-array-type"}, "https://webidl.spec.whatwg.org/#dfn-partial-interface": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"partial interface","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-partial-interface"}, "https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled": {"export":true,"for_":["promise"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"reacting","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled"}, diff --git a/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.console.txt b/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.console.txt index cfe27c6243..5027444cfa 100644 --- a/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.console.txt +++ b/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.console.txt @@ -1,5 +1,3 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINE 633: The var 'client' (in algorithm 'service-worker-registration-update') is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. LINE 649: The var 'client' (in algorithm 'navigator-service-worker-unregister') is only used once. @@ -140,10 +138,10 @@ LINE 366: No 'dfn' refs found for 'url' with for='['url']'. LINE 367: No 'dfn' refs found for 'url' with for='['url']'. <a bs-line-number="367" data-link-for="url" data-link-type="dfn" data-lt="URL">URL</a> LINE 373: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="373" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 373: Multiple possible 'event loop' dfn refs. @@ -211,10 +209,10 @@ spec:html; type:dfn; for:Document; text:browsing context spec:html; type:dfn; for:Window; text:browsing context <a bs-line-number="536" data-link-type="dfn" data-lt="browsing context">browsing context</a> LINE 541: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="541" data-link-type="dfn" data-lt="task">task</a> LINE 632: No 'dfn' refs found for 'context object' that are marked for export. @@ -246,10 +244,10 @@ spec:html; type:dfn; for:agent; text:event loop spec:html; type:dfn; for:/; text:event loop <a bs-line-number="730" data-link-type="dfn" data-lt="event loop">event loop</a> LINE 730: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="730" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 730: No 'dfn' refs found for 'responsible document'. @@ -336,10 +334,10 @@ LINE 1227: No 'dfn' refs found for 'context object' that are marked for export. LINE 1228: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="1228" data-link-type="dfn" data-lt="context object">context object</a> LINE 1234: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="1234" data-link-type="dfn" data-lt="task">task</a> LINE 1238: No 'dfn' refs found for 'unicode serialisation of an origin'. @@ -573,14 +571,14 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event -spec:webmidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1756" data-link-type="dfn" data-lt="event">event</a> LINE 1762: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event -spec:webmidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1762" data-link-type="dfn" data-lt="event">event</a> LINE 1793: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="1793" data-link-type="dfn" data-lt="context object" data-link-for-hint="FetchEvent">context object</a> @@ -646,10 +644,6 @@ spec:fetch; type:dfn; for:response; text:body for-less references: spec:fetch; type:dfn; for:/; text:body <a bs-line-number="1979" data-link-type="dfn" data-lt="body" data-link-for-hint="ForeignFetchEvent">body</a> -LINE 2187: No 'dfn' refs found for 'reflect' that are marked for export. -<a bs-line-number="2187" data-link-type="dfn" data-lt="reflect">reflect</a> -LINE 2189: No 'dfn' refs found for 'reflect' that are marked for export. -<a bs-line-number="2189" data-link-type="dfn" data-lt="reflect">reflect</a> LINE 2404: Ambiguous for-less link for 'status', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:fetch; type:dfn; for:response; text:status @@ -683,10 +677,10 @@ spec:html; type:dfn; for:environment settings object; text:global object spec:html; type:dfn; for:/; text:global object <a bs-line-number="2862" data-link-type="dfn" data-lt="global object">global object</a> LINE 2971: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="2971" data-link-type="dfn" data-lt="task">task</a> LINE 2988: No 'dfn' refs found for 'url' with for='['url']'. @@ -719,10 +713,10 @@ spec:html; type:dfn; for:environment settings object; text:global object spec:html; type:dfn; for:/; text:global object <a bs-line-number="3396" data-link-type="dfn" data-lt="global object">global object</a> LINE 3436: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3436" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 3470: No 'dfn' refs found for 'responsible document'. @@ -767,11 +761,13 @@ spec:html; type:dfn; for:realm; text:global object spec:html; type:dfn; for:environment settings object; text:global object spec:html; type:dfn; for:/; text:global object <a bs-line-number="3522" data-link-type="dfn" data-lt="global object">global object</a> +LINE 3529: No 'dfn' refs found for 'api url character encoding'. +<a bs-line-number="3529" data-link-type="dfn" data-lt="API URL character encoding">API URL character encoding</a> LINE 3545: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3545" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 3545: Multiple possible 'event loop' dfn refs. @@ -797,10 +793,10 @@ spec:html; type:dfn; for:environment settings object; text:global object spec:html; type:dfn; for:/; text:global object <a bs-line-number="3573" data-link-type="dfn" data-lt="global object">global object</a> LINE 3575: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3575" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 3575: Multiple possible 'event loop' dfn refs. @@ -873,24 +869,24 @@ LINE 3805: No 'dfn' refs found for 'unload a document' with spec 'html'. LINE 3889: No 'dfn' refs found for 'url' with for='['url']'. <a bs-line-number="3889" data-link-for="url" data-link-type="dfn" data-lt="URL">URL</a> LINE 3987: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3987" data-link-type="dfn" data-lt="task">task</a> LINE 4036: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="4036" data-link-type="dfn" data-lt="task">task</a> LINE 4054: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="4054" data-link-type="dfn" data-lt="task">task</a> LINE 4062: No 'dfn' refs found for 'url' with for='['url']'. diff --git a/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.html b/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.html index e453e4bc65..a19d6549bd 100644 --- a/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.html +++ b/tests/github/w3c/ServiceWorker/publish/service_worker/WD-service-workers-20160830/index.html @@ -5,8 +5,8 @@ <title>Service Workers Nightly</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/service-workers/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -764,7 +764,7 @@ <h1 class="p-name no-ref" id="title">Service Workers Nightly</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1090,7 +1090,7 @@ <h3 class="heading settled" data-level="2.2" id="service-worker-registration-con <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration⑨">service worker registration</a> has an associated <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-active-worker">active worker</dfn> (a <a href="#dfn-service-worker" id="ref-for-dfn-service-worker③③">service worker</a> or null) whose <a href="#dfn-state" id="ref-for-dfn-state②">state</a> is either <em>activating</em> or <em>activated</em>. It is initially set to null.</p> <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⓪">service worker registration</a> has an associated <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-last-update-check-time">last update check time</dfn>. It is initially set to null.</p> <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①①">service worker registration</a> has an associated <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-uninstalling-flag">uninstalling flag</dfn>. It is initially unset.</p> - <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①②">service worker registration</a> has one or more <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-service-worker-registration-task-queue">task queues</dfn> that back up the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task">tasks</a> from its <a href="#dfn-active-worker" id="ref-for-dfn-active-worker④">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue">task queues</a>. (The target task sources for this back up operation are the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source">handle fetch task source</a> and the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source">handle functional event task source</a>.) The user agent dumps the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑤">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①">tasks</a> to the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①③">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑥">active worker</a> is <a href="#terminate-service-worker-algorithm">terminated</a> and <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task">re-queues those tasks</a> to the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑦">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop①">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue①">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑧">active worker</a> spins off. Unlike the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue②">task queues</a> owned by <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop②">event loops</a>, the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①④">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue①">task queues</a> are not processed by any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop③">event loops</a> in and of itself.</p> + <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①②">service worker registration</a> has one or more <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-service-worker-registration-task-queue">task queues</dfn> that back up the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task">tasks</a> from its <a href="#dfn-active-worker" id="ref-for-dfn-active-worker④">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue">task queues</a>. (The target task sources for this back up operation are the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source">handle fetch task source</a> and the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source">handle functional event task source</a>.) The user agent dumps the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑤">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①">tasks</a> to the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①③">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑥">active worker</a> is <a href="#terminate-service-worker-algorithm">terminated</a> and <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task">re-queues those tasks</a> to the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑦">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop①">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue①">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑧">active worker</a> spins off. Unlike the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue②">task queues</a> owned by <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop②">event loops</a>, the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①④">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue①">task queues</a> are not processed by any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop③">event loops</a> in and of itself.</p> <section> <h4 class="heading settled" data-level="2.2.1" id="service-worker-registration-lifetime"><span class="secno">2.2.1. </span><span class="content">Lifetime</span><a class="self-link" href="#service-worker-registration-lifetime"></a></h4> <p>A user agent <em class="rfc2119" title="MUST">must</em> persistently keep a list of <a href="#register-algorithm">registered</a> <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑤">service worker registrations</a> unless otherwise they are explicitly <a href="#unregister-algorithm">unregistered</a>. A user agent has a <a href="#dfn-scope-to-registration-map" id="ref-for-dfn-scope-to-registration-map">scope to registration map</a> that stores the entries of the tuple of <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑥">service worker registration</a>’s <a href="#dfn-scope-url" id="ref-for-dfn-scope-url④">scope url</a> and the corresponding <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑦">service worker registration</a>. The lifetime of <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑧">service worker registrations</a> is beyond that of the <code><a href="#service-worker-registration-interface" id="ref-for-service-worker-registration-interface">ServiceWorkerRegistration</a></code> objects which represent them within the lifetime of their corresponding <a href="#dfn-service-worker-client" id="ref-for-dfn-service-worker-client②">service worker clients</a>.</p> @@ -1219,7 +1219,7 @@ <h4 class="heading settled" data-level="3.1.3" id="service-worker-postmessage">< <li>Let the <code class="idl"><a data-link-type="idl" href="#extendablemessage-event-ports-attribute" id="ref-for-extendablemessage-event-ports-attribute">ports</a></code> attribute of <var>e</var> be initialized to <var>newPorts</var>. <li><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-dispatch" id="ref-for-concept-event-dispatch②">Dispatch</a> <var>e</var> at <var>destination</var>. </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task②">task</a> <em class="rfc2119" title="MUST">must</em> use the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task②">task</a> <em class="rfc2119" title="MUST">must</em> use the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source">DOM manipulation task source</a>.</p> </ol> </section> <section> @@ -1357,7 +1357,7 @@ <h3 class="heading settled" data-level="3.4" id="service-worker-container"><span <p>A <code><dfn class="dfn-paneled idl-code" data-dfn-for="ServiceWorkerContainer" data-dfn-type="interface" data-export id="service-worker-container-interface"><code>ServiceWorkerContainer</code></dfn></code> provides capabilities to register, unregister, and update the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration③⑤">service worker registrations</a>, and provides access to the state of the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration③⑥">service worker registrations</a> and their associated <a href="#dfn-service-worker" id="ref-for-dfn-service-worker④⑦">service workers</a>.</p> <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑥">ServiceWorkerContainer</a></code> has an associated <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-service-worker-container-interface-client">service worker client</dfn>, which is a <a href="#dfn-service-worker-client" id="ref-for-dfn-service-worker-client②⓪">service worker client</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-realm-global" id="ref-for-concept-realm-global④">global object</a> is associated with the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/system-state.html#navigator" id="ref-for-navigator②">Navigator</a></code> object or the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/workers.html#workernavigator" id="ref-for-workernavigator②">WorkerNavigator</a></code> object that the <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑦">ServiceWorkerContainer</a></code> is retrieved from.</p> <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑧">ServiceWorkerContainer</a></code> object has an associated <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-ready-promise">ready promise</dfn> (a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②">promise</a>). It is initially set to a new <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects③">promise</a>.</p> - <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑨">ServiceWorkerContainer</a></code> object has a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source③">task source</a> called the <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-client-message-queue">client message queue</dfn>, initially empty. A <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue">client message queue</a> can be enabled or disabled, and is initially disabled. When a <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①⓪">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue①">client message queue</a> is enabled, the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop④">event loop</a> <em class="rfc2119" title="MUST">must</em> use it as one of its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source④">task sources</a>. When the <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①①">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global">relevant global object</a> is a <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window②">Window</a></code> object, all <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task③">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②">queued</a> on its <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue②">client message queue</a> <em class="rfc2119" title="MUST">must</em> be associated with its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object③">relevant settings object</a>’s <a data-link-type="dfn">responsible document</a>.</p> + <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑨">ServiceWorkerContainer</a></code> object has a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source③">task source</a> called the <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-client-message-queue">client message queue</dfn>, initially empty. A <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue">client message queue</a> can be enabled or disabled, and is initially disabled. When a <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①⓪">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue①">client message queue</a> is enabled, the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop④">event loop</a> <em class="rfc2119" title="MUST">must</em> use it as one of its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source④">task sources</a>. When the <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①①">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global">relevant global object</a> is a <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window②">Window</a></code> object, all <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task③">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②">queued</a> on its <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue②">client message queue</a> <em class="rfc2119" title="MUST">must</em> be associated with its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object③">relevant settings object</a>’s <a data-link-type="dfn">responsible document</a>.</p> <section class="algorithm" data-algorithm="navigator-service-worker-controller"> <h4 class="heading settled" data-level="3.4.1" id="navigator-service-worker-controller"><span class="secno">3.4.1. </span><span class="content"><code class="idl"><a data-link-type="idl" href="#service-worker-container-controller-attribute" id="ref-for-service-worker-container-controller-attribute①">controller</a></code></span><a class="self-link" href="#navigator-service-worker-controller"></a></h4> <p><dfn class="dfn-paneled idl-code" data-dfn-for="ServiceWorkerContainer" data-dfn-type="attribute" data-export id="service-worker-container-controller-attribute"><code>controller</code></dfn> attribute <em class="rfc2119" title="MUST">must</em> run these steps:</p> @@ -1753,7 +1753,7 @@ <h4 class="heading settled" data-level="4.2.4" id="client-postmessage"><span cla <li>Let <var>clonedMessage</var> be <var>cloneRecord</var>.[[Clone]]. <li>Let <var>newPorts</var> be a new <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-frozen-array-type" id="ref-for-dfn-frozen-array-type①">frozen array</a> consisting of all <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messageport" id="ref-for-messageport⑥">MessagePort</a></code> objects in <var>cloneRecord</var>.[[TransferList]], if any, maintaining their relative order. <li> - Add a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task④">task</a> that runs the following steps to <var>destination</var>’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue⑤">client message queue</a>: + Add a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task④">task</a> that runs the following steps to <var>destination</var>’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue⑤">client message queue</a>: <ol> <li>Create an event <var>e</var> that uses the <code class="idl"><a data-link-type="idl" href="#serviceworkermessage-event-interface" id="ref-for-serviceworkermessage-event-interface③">ServiceWorkerMessageEvent</a></code> interface, with the event type <a href="#service-worker-container-message-event" id="ref-for-service-worker-container-message-event③">message</a>, which does not bubble and is not cancelable. <li>Let the <code class="idl"><a data-link-type="idl" href="#serviceworkermessage-event-data-attribute" id="ref-for-serviceworkermessage-event-data-attribute②">data</a></code> attribute of <var>e</var> be initialized to <var>clonedMessage</var>. @@ -1805,7 +1805,7 @@ <h4 class="heading settled" data-level="4.2.8" id="client-navigate"><span class= <ol> <li>Let <var>url</var> be the result of <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser③">parsing</a> <var>url</var> with the <a data-link-type="dfn">context object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object⑤">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url②">API base URL</a>. <li>If <var>url</var> is failure, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①③">promise</a> rejected with a <code>TypeError</code>. - <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank" id="ref-for-about:blank">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①④">promise</a> rejected with a <code>TypeError</code>. + <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank" id="ref-for-about%3Ablank">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①④">promise</a> rejected with a <code>TypeError</code>. <li>If the <a data-link-type="dfn">context object</a>’s associated <a href="#dfn-service-worker-client-client" id="ref-for-dfn-service-worker-client-client⑦">service worker client</a>’s <a href="#dfn-service-worker-client-active-worker" id="ref-for-dfn-service-worker-client-active-worker③">active worker</a> is not the <a data-link-type="dfn">context object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global①">relevant global object</a>’s <a href="#dfn-service-worker-global-scope-service-worker" id="ref-for-dfn-service-worker-global-scope-service-worker⑤">service worker</a>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①⑤">promise</a> rejected with a <code>TypeError</code>. <li>Let <var>promise</var> be a new <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①⑥">promise</a>. <li> @@ -2019,7 +2019,7 @@ <h4 class="heading settled" data-level="4.3.3" id="clients-openwindow"><span cla <ol> <li>Let <var>url</var> be the result of <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser④">parsing</a> <var>url</var> with the <a data-link-type="dfn">context object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object⑥">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url③">API base URL</a>. <li>If <var>url</var> is failure, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①⑨">promise</a> rejected with a <code>TypeError</code>. - <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank" id="ref-for-about:blank①">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②⓪">promise</a> rejected with a <code>TypeError</code>. + <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank" id="ref-for-about%3Ablank①">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②⓪">promise</a> rejected with a <code>TypeError</code>. <li>If this algorithm is not <a data-link-type="dfn">triggered by user activation</a>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②①">promise</a> rejected with an "<code class="idl"><a data-link-type="idl" href="https://heycam.github.io/webidl/#invalidaccesserror" id="ref-for-invalidaccesserror①">InvalidAccessError</a></code>" exception. <li>Let <var>promise</var> be a new <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②②">promise</a>. <li> @@ -2581,8 +2581,8 @@ <h3 class="heading settled" data-level="5.2" id="link-element-interface-section" [<a class="idl-code" data-link-type="extended-attribute" href="https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions" id="ref-for-cereactions①"><c- g>CEReactions</c-></a>] <c- b>attribute</c-> <a data-link-type="idl-name" href="https://html.spec.whatwg.org/multipage/workers.html#workertype" id="ref-for-workertype③"><c- n>WorkerType</c-></a> <a class="idl-code" data-link-type="attribute" data-type="WorkerType" href="#link-workertype-attribute" id="ref-for-link-workertype-attribute"><c- g>workerType</c-></a>; }; </pre> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLLinkElement" data-dfn-type="attribute" data-export id="link-scope-attribute"><code>scope</code></dfn> IDL attribute must <a data-link-type="dfn">reflect</a> the element’s <dfn class="dfn-paneled" data-dfn-for="link" data-dfn-type="element-attr" data-export id="element-attrdef-link-scope"><code>scope</code></dfn> content attribute.</p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLLinkElement" data-dfn-type="attribute" data-export id="link-workertype-attribute"><code>workerType</code></dfn> IDL attribute must <a data-link-type="dfn">reflect</a> the element’s <dfn class="dfn-paneled" data-dfn-for="link" data-dfn-type="element-attr" data-export id="element-attrdef-link-workertype"><code>workertype</code></dfn> content attribute.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLLinkElement" data-dfn-type="attribute" data-export id="link-scope-attribute"><code>scope</code></dfn> IDL attribute must <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflect</a> the element’s <dfn class="dfn-paneled" data-dfn-for="link" data-dfn-type="element-attr" data-export id="element-attrdef-link-scope"><code>scope</code></dfn> content attribute.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="HTMLLinkElement" data-dfn-type="attribute" data-export id="link-workertype-attribute"><code>workerType</code></dfn> IDL attribute must <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect①">reflect</a> the element’s <dfn class="dfn-paneled" data-dfn-for="link" data-dfn-type="element-attr" data-export id="element-attrdef-link-workertype"><code>workertype</code></dfn> content attribute.</p> </section> </section> <section> @@ -3260,7 +3260,7 @@ <h3 class="heading settled" data-level="9.3" id="extension-to-service-worker-glo <section> <h3 class="heading settled" data-level="9.4" id="request-functional-event-dispatch"><span class="secno">9.4. </span><span class="content">Request Functional Event Dispatch</span><a class="self-link" href="#request-functional-event-dispatch"></a></h3> <p>To request a <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑧">functional event</a> dispatch to a <a href="#dfn-service-worker" id="ref-for-dfn-service-worker⑨⑧">service worker</a>, specifications <em class="rfc2119" title="MAY">may</em> invoke <a href="#handle-functional-event-algorithm">Handle Functional Event</a> algorithm with its <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration④⑦">service worker registration</a> <var>registration</var> and the algorithm <var>callbackSteps</var> as the arguments.</p> - <p>Specifications <em class="rfc2119" title="MAY">may</em> define an algorithm <var>callbackSteps</var> where the corresponding <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑨">functional event</a> can be created and fired with specification specific objects. The algorithm is passed <var>globalObject</var> (a <code class="idl"><a data-link-type="idl" href="#service-worker-global-scope-interface" id="ref-for-service-worker-global-scope-interface①①">ServiceWorkerGlobalScope</a></code> object) at which it <em class="rfc2119" title="MAY">may</em> fire its <a href="#dfn-functional-events" id="ref-for-dfn-functional-events①⓪">functional events</a>. This algorithm is called on a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑤">task</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task①③">queued</a> by <a href="#handle-functional-event-algorithm">Handle Functional Event</a> algorithm.</p> + <p>Specifications <em class="rfc2119" title="MAY">may</em> define an algorithm <var>callbackSteps</var> where the corresponding <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑨">functional event</a> can be created and fired with specification specific objects. The algorithm is passed <var>globalObject</var> (a <code class="idl"><a data-link-type="idl" href="#service-worker-global-scope-interface" id="ref-for-service-worker-global-scope-interface①①">ServiceWorkerGlobalScope</a></code> object) at which it <em class="rfc2119" title="MAY">may</em> fire its <a href="#dfn-functional-events" id="ref-for-dfn-functional-events①⓪">functional events</a>. This algorithm is called on a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑤">task</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task①③">queued</a> by <a href="#handle-functional-event-algorithm">Handle Functional Event</a> algorithm.</p> <p class="note" role="note">See an <a href="https://notifications.spec.whatwg.org/#activating-a-notification">example</a> hook defined in <a data-link-type="biblio" href="#biblio-notifications" title="Notifications API Standard">Notifications API</a>.</p> </section> </section> @@ -3686,7 +3686,7 @@ <h3 class="heading settled" id="installation-algorithm"><span class="content">In <li>Invoke <a href="#finish-job-algorithm">Finish Job</a> with <var>job</var> and abort these steps. </ol> <li>Invoke <a href="#finish-job-algorithm">Finish Job</a> with <var>job</var>. - <li>Wait for all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑥">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②①">queued</a> by <a href="#update-state-algorithm">Update Worker State</a> invoked in this algorithm have executed. + <li>Wait for all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑥">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②①">queued</a> by <a href="#update-state-algorithm">Update Worker State</a> invoked in this algorithm have executed. <li>Wait until no <a href="#dfn-service-worker-client" id="ref-for-dfn-service-worker-client③⑦">service worker client</a> is <a href="#dfn-use" id="ref-for-dfn-use③">using</a> <var>registration</var> or <var>registration</var>’s <a href="#dfn-waiting-worker" id="ref-for-dfn-waiting-worker①③">waiting worker</a>’s <a href="#dfn-skip-waiting-flag" id="ref-for-dfn-skip-waiting-flag③">skip waiting flag</a> is set. <li>If <var>registration</var>’s <a href="#dfn-waiting-worker" id="ref-for-dfn-waiting-worker①④">waiting worker</a> <var>waitingWorker</var> is not null and <var>waitingWorker</var>’s <a href="#dfn-skip-waiting-flag" id="ref-for-dfn-skip-waiting-flag④">skip waiting flag</a> is not set, invoke <a href="#activation-algorithm">Activate</a> algorithm with <var>registration</var> as its argument. </ol> @@ -3775,7 +3775,7 @@ <h3 class="heading settled" id="run-service-worker-algorithm"><span class="conte <dt>The <a data-link-type="dfn">referrer source</a> <dd>Return <var>serviceWorker</var>’s <a href="#dfn-script-url" id="ref-for-dfn-script-url⑦">script url</a>.</dd> <p class="issue" id="issue-b739bfcf"><a class="self-link" href="#issue-b739bfcf"></a>Remove this definition after sorting out the referencing sites.</p> - <dt>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding" id="ref-for-api-url-character-encoding">API URL character encoding</a> + <dt>The <a data-link-type="dfn">API URL character encoding</a> <dd>Return UTF-8. <dt>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url⑥">API base URL</a> <dd>Return <var>serviceWorker</var>’s <a href="#dfn-script-url" id="ref-for-dfn-script-url⑧">script url</a>. @@ -3790,7 +3790,7 @@ <h3 class="heading settled" id="run-service-worker-algorithm"><span class="conte <li>Set <var>workerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-https-state" id="ref-for-concept-workerglobalscope-https-state①">HTTPS state</a> to <var>serviceWorker</var>’s <a data-link-type="dfn" href="#dfn-script-resource" id="ref-for-dfn-script-resource①">script resource</a>’s <a href="#dfn-https-state" id="ref-for-dfn-https-state">HTTPS state</a>. <li>Set <var>workerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-type" id="ref-for-concept-workerglobalscope-type">type</a> to <var>serviceWorker</var>’s <a href="#dfn-type" id="ref-for-dfn-type③">type</a>. <li>Create a new <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/workers.html#workerlocation" id="ref-for-workerlocation">WorkerLocation</a></code> object and associate it with <var>workerGlobalScope</var>. - <li>If <var>serviceWorker</var> is an <a href="#dfn-active-worker" id="ref-for-dfn-active-worker③①">active worker</a>, and there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑦">tasks</a> queued in <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①②">containing service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue②">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②③">queue</a> them to <var>serviceWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑥">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source⑨">task sources</a>. + <li>If <var>serviceWorker</var> is an <a href="#dfn-active-worker" id="ref-for-dfn-active-worker③①">active worker</a>, and there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑦">tasks</a> queued in <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①②">containing service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue②">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②③">queue</a> them to <var>serviceWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑥">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source⑨">task sources</a>. <li> If <var>script</var> is a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#classic-script" id="ref-for-classic-script">classic script</a>, then <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#run-a-classic-script" id="ref-for-run-a-classic-script">run the classic script</a> <var>script</var>. Otherwise, it is a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#module-script" id="ref-for-module-script">module script</a>; <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#run-a-module-script" id="ref-for-run-a-module-script">run the module script</a> <var>script</var>. <p class="note" role="note">In addition to the usual possibilities of returning a value or failing due to an exception, this could be prematurely aborted by the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#kill-a-worker" id="ref-for-kill-a-worker">kill a worker</a> or <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#terminate-a-worker" id="ref-for-terminate-a-worker">terminate a worker</a> algorithms.</p> @@ -3819,7 +3819,7 @@ <h3 class="heading settled" id="terminate-service-worker-algorithm"><span class= <li>Let <var>serviceWorkerGlobalScope</var> be <var>serviceWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object" id="ref-for-environment-settings-object①③">environment settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-realm-global" id="ref-for-concept-realm-global②②">global object</a>. <li>Set <var>serviceWorkerGlobalScope</var>’s closing flag to true. <li> - If there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑧">tasks</a>, whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①⓪">task source</a> is either the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source①">handle fetch task source</a> or the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source①">handle functional event task source</a>, queued in <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑦">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue④">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②④">queue</a> them to <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①③">containing service worker registration</a>’s corresponding <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①①">task sources</a>, and discard all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑨">tasks</a> (including <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①⓪">tasks</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①②">task source</a> is neither the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source②">handle fetch task source</a> nor the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source②">handle functional event task source</a>) from <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑧">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue⑤">task queues</a> without processing them. + If there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑧">tasks</a>, whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①⓪">task source</a> is either the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source①">handle fetch task source</a> or the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source①">handle functional event task source</a>, queued in <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑦">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue④">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②④">queue</a> them to <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①③">containing service worker registration</a>’s corresponding <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①①">task sources</a>, and discard all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑨">tasks</a> (including <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①⓪">tasks</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①②">task source</a> is neither the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source②">handle fetch task source</a> nor the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source②">handle functional event task source</a>) from <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑧">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue⑤">task queues</a> without processing them. <p class="note" role="note">This effectively means that the fetch events and the other functional events such as push events are backed up by the registration’s task queues while the other tasks including message events are discarded.</p> <li>Abort the script currently running in <var>serviceWorker</var>. </ol> @@ -4210,7 +4210,7 @@ <h3 class="heading settled" id="update-registration-state-algorithm"><span class <li><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task③⓪">Queue a task</a> to set the <a href="#service-worker-registration-active-attribute" id="ref-for-service-worker-registration-active-attribute②">active</a> attribute of <var>registrationObject</var> to the <code class="idl"><a data-link-type="idl" href="#service-worker-interface" id="ref-for-service-worker-interface②⑧">ServiceWorker</a></code> object that represents <var>registration</var>’s <a data-link-type="dfn" href="#dfn-active-worker" id="ref-for-dfn-active-worker①">active worker</a>, or null if <var>registration</var>’s <a data-link-type="dfn" href="#dfn-active-worker" id="ref-for-dfn-active-worker②">active worker</a> is null. </ol> </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①①">task</a> <em class="rfc2119" title="MUST">must</em> use <var>registrationObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object⑨">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①①">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑤">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①①">task</a> <em class="rfc2119" title="MUST">must</em> use <var>registrationObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object⑨">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①①">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑤">DOM manipulation task source</a>.</p> </ol> </section> <section class="algorithm" data-algorithm="update-state-algorithm"> @@ -4258,7 +4258,7 @@ <h3 class="heading settled" id="update-state-algorithm"><span class="content">Up <li><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#fire-a-simple-event" id="ref-for-fire-a-simple-event⑤">Fire a simple event</a> named <code>statechange</code> at <var>workerObject</var>. </ol> </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①②">task</a> <em class="rfc2119" title="MUST">must</em> use <var>workerObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object①⓪">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①②">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑥">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①②">task</a> <em class="rfc2119" title="MUST">must</em> use <var>workerObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object①⓪">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①②">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑥">DOM manipulation task source</a>.</p> </ol> </section> <section class="algorithm" data-algorithm="notify-controller-change-algorithm"> @@ -4273,7 +4273,7 @@ <h3 class="heading settled" id="notify-controller-change-algorithm"><span class= <li><a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-algorithm-conventions" id="ref-for-sec-algorithm-conventions⑤">Assert</a>: <var>client</var> is not null. <li><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task③②">Queue a task</a> to <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#fire-a-simple-event" id="ref-for-fire-a-simple-event⑥">fire a simple event</a> named <code>controllerchange</code> at the <code><a href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①⑤">ServiceWorkerContainer</a></code> object <var>client</var> is <a href="#dfn-service-worker-container-interface-client" id="ref-for-dfn-service-worker-container-interface-client⑧">associated</a> with. </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①③">task</a> <em class="rfc2119" title="MUST">must</em> use <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑦">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①③">task</a> <em class="rfc2119" title="MUST">must</em> use <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑦">DOM manipulation task source</a>.</p> </section> <section class="algorithm" data-algorithm="scope-match-algorithm"> <h3 class="heading settled" id="scope-match-algorithm"><span class="content">Match Service Worker Registration</span><a class="self-link" href="#scope-match-algorithm"></a></h3> @@ -4651,20 +4651,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -5178,10 +5180,9 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e9ac3051">WorkerLocation</span> <li><span class="dfn-paneled" id="a4785085">WorkerNavigator</span> <li><span class="dfn-paneled" id="c262266a">WorkerType</span> - <li><span class="dfn-paneled" id="4db93020">about:blank</span> + <li><span class="dfn-paneled" id="1bf9ed4c">about:blank</span> <li><span class="dfn-paneled" id="26513a72">active document</span> <li><span class="dfn-paneled" id="1b5b1c0c">api base url</span> - <li><span class="dfn-paneled" id="2a37f6e3">api url character encoding</span> <li><span class="dfn-paneled" id="58ebefde">auxiliary browsing context</span> <li><span class="dfn-paneled" id="0d0390b4">browsing context</span> <li><span class="dfn-paneled" id="caa8344c">classic script</span> @@ -5214,6 +5215,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="c4479bad">origin</span> <li><span class="dfn-paneled" id="9a517a7d">queue a task</span> <li><span class="dfn-paneled" id="ce15d5dc">realm execution context</span> + <li><span class="dfn-paneled" id="5ab7b520">reflect</span> <li><span class="dfn-paneled" id="e99bd18e">relevant global object</span> <li><span class="dfn-paneled" id="5991ccfb">relevant realm</span> <li><span class="dfn-paneled" id="9c4c1e66">relevant settings object</span> @@ -5224,7 +5226,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="dd6462cb">script</span> <li><span class="dfn-paneled" id="b5c48f2c">shared workers</span> <li><span class="dfn-paneled" id="59131bdf">structuredclonewithtransfer</span> - <li><span class="dfn-paneled" id="6e60af1e">task</span> + <li><span class="dfn-paneled" id="1ee15438">task</span> <li><span class="dfn-paneled" id="2df777b6">task queue</span> <li><span class="dfn-paneled" id="c3b2d08c">task source</span> <li><span class="dfn-paneled" id="a41b1317">terminate a worker</span> @@ -5344,7 +5346,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc7231">[RFC7231] <dd>R. Fielding, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc7231.html"><cite>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</cite></a>. June 2014. Proposed Standard. URL: <a href="https://httpwg.org/specs/rfc7231.html">https://httpwg.org/specs/rfc7231.html</a> <dt id="biblio-secure-contexts">[SECURE-CONTEXTS] - <dd>Mike West. <a href="https://www.w3.org/TR/secure-contexts/"><cite>Secure Contexts</cite></a>. 18 September 2021. CR. URL: <a href="https://www.w3.org/TR/secure-contexts/">https://www.w3.org/TR/secure-contexts/</a> + <dd>Mike West. <a href="https://www.w3.org/TR/secure-contexts/"><cite>Secure Contexts</cite></a>. 10 November 2023. CR. URL: <a href="https://www.w3.org/TR/secure-contexts/">https://www.w3.org/TR/secure-contexts/</a> <dt id="biblio-url">[URL] <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/"><cite>URL Standard</cite></a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a> <dt id="biblio-webidl">[WEBIDL] @@ -5837,8 +5839,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "168f1b6e": {"dfnID":"168f1b6e","dfnText":"global object","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-realm-global"},{"id":"ref-for-concept-realm-global\u2460"},{"id":"ref-for-concept-realm-global\u2461"}],"title":"2.3. Service Worker Client"},{"refs":[{"id":"ref-for-concept-realm-global\u2462"}],"title":"3.2.5. update()"},{"refs":[{"id":"ref-for-concept-realm-global\u2463"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-concept-realm-global\u2464"},{"id":"ref-for-concept-realm-global\u2465"},{"id":"ref-for-concept-realm-global\u2466"}],"title":"4.2.2. frameType"},{"refs":[{"id":"ref-for-concept-realm-global\u2467"}],"title":"4.2.7. focus()"},{"refs":[{"id":"ref-for-concept-realm-global\u2468"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u24ea"}],"title":"4.3.1. get(id)"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2460"},{"id":"ref-for-concept-realm-global\u2460\u2461"}],"title":"4.3.2. matchAll(options)"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2462"}],"title":"4.4. ExtendableEvent"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2463"}],"title":"6.5. CacheStorage"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2464"}],"title":"7.3.2. importScripts(urls)"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2465"}],"title":"Install"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2466"},{"id":"ref-for-concept-realm-global\u2460\u2467"}],"title":"Activate"},{"refs":[{"id":"ref-for-concept-realm-global\u2460\u2468"},{"id":"ref-for-concept-realm-global\u2461\u24ea"},{"id":"ref-for-concept-realm-global\u2461\u2460"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-concept-realm-global\u2461\u2461"}],"title":"Terminate Service Worker"},{"refs":[{"id":"ref-for-concept-realm-global\u2461\u2462"}],"title":"Handle Fetch"},{"refs":[{"id":"ref-for-concept-realm-global\u2461\u2463"}],"title":"Handle Foreign Fetch"},{"refs":[{"id":"ref-for-concept-realm-global\u2461\u2464"}],"title":"Handle Functional Event"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-realm-global"}, "1aa4c641": {"dfnID":"1aa4c641","dfnText":"empty","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-empty-readablestream"}],"title":"6.4.5. put(request, response)"}],"url":"https://fetch.spec.whatwg.org/#concept-empty-readablestream"}, "1b5b1c0c": {"dfnID":"1b5b1c0c","dfnText":"api base url","external":true,"refSections":[{"refs":[{"id":"ref-for-api-base-url"}],"title":"3.4.3. register(scriptURL, options)"},{"refs":[{"id":"ref-for-api-base-url\u2460"}],"title":"3.4.4. getRegistration(clientURL)"},{"refs":[{"id":"ref-for-api-base-url\u2461"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-api-base-url\u2462"}],"title":"4.3.3. openWindow(url)"},{"refs":[{"id":"ref-for-api-base-url\u2463"}],"title":"4.5.1. event.registerForeignFetch(options)"},{"refs":[{"id":"ref-for-api-base-url\u2464"}],"title":"Start Register"},{"refs":[{"id":"ref-for-api-base-url\u2465"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, +"1bf9ed4c": {"dfnID":"1bf9ed4c","dfnText":"about:blank","external":true,"refSections":[{"refs":[{"id":"ref-for-about%3Ablank"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-about%3Ablank\u2460"}],"title":"4.3.3. openWindow(url)"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank"}, "1db1ee46": {"dfnID":"1db1ee46","dfnText":"get(name)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-headers-get"},{"id":"ref-for-dom-headers-get\u2460"}],"title":"Query Cache"}],"url":"https://fetch.spec.whatwg.org/#dom-headers-get"}, "1e01e86c": {"dfnID":"1e01e86c","dfnText":"errored","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-readablestream-errored"}],"title":"4.6.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-readablestream-errored\u2460"}],"title":"4.7.3. event.respondWith(r)"}],"url":"https://fetch.spec.whatwg.org/#concept-readablestream-errored"}, +"1ee15438": {"dfnID":"1ee15438","dfnText":"task","external":true,"refSections":[{"refs":[{"id":"ref-for-toggle-task-task"},{"id":"ref-for-toggle-task-task\u2460"}],"title":"2.2. Service Worker Registration"},{"refs":[{"id":"ref-for-toggle-task-task\u2461"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-toggle-task-task\u2462"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-toggle-task-task\u2463"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-toggle-task-task\u2464"}],"title":"9.4. Request Functional Event Dispatch"},{"refs":[{"id":"ref-for-toggle-task-task\u2465"}],"title":"Install"},{"refs":[{"id":"ref-for-toggle-task-task\u2466"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-toggle-task-task\u2467"},{"id":"ref-for-toggle-task-task\u2468"},{"id":"ref-for-toggle-task-task\u2460\u24ea"}],"title":"Terminate Service Worker"},{"refs":[{"id":"ref-for-toggle-task-task\u2460\u2460"}],"title":"Update Registration State"},{"refs":[{"id":"ref-for-toggle-task-task\u2460\u2461"}],"title":"Update Worker State"},{"refs":[{"id":"ref-for-toggle-task-task\u2460\u2462"}],"title":"Notify Controller Change"}],"url":"https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task"}, "1f4ce6c1": {"dfnID":"1f4ce6c1","dfnText":"external resource link","external":true,"refSections":[{"refs":[{"id":"ref-for-external-resource-link"}],"title":"5. Link type \"serviceworker\""}],"url":"https://html.spec.whatwg.org/multipage/semantics.html#external-resource-link"}, "22c27bbb": {"dfnID":"22c27bbb","dfnText":"headers","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-request-headers"}],"title":"Handle Fetch"},{"refs":[{"id":"ref-for-dom-request-headers\u2460"},{"id":"ref-for-dom-request-headers\u2461"}],"title":"Query Cache"}],"url":"https://fetch.spec.whatwg.org/#dom-request-headers"}, "22cb9a16": {"dfnID":"22cb9a16","dfnText":"ByteString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-ByteString"}],"title":"4.7. ForeignFetchEvent"}],"url":"https://webidl.spec.whatwg.org/#idl-ByteString"}, @@ -5849,7 +5853,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "270490c0": {"dfnID":"270490c0","dfnText":"cors-exposed header-name list","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response-cors-exposed-header-name-list"},{"id":"ref-for-concept-response-cors-exposed-header-name-list\u2460"}],"title":"Handle Foreign Fetch"}],"url":"https://fetch.spec.whatwg.org/#concept-response-cors-exposed-header-name-list"}, "2889d1ec": {"dfnID":"2889d1ec","dfnText":"navigation request","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-request"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#navigation-request"}, "2987477f": {"dfnID":"2987477f","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-invalidstateerror\u2460"},{"id":"ref-for-invalidstateerror\u2461"}],"title":"3.2.5. update()"},{"refs":[{"id":"ref-for-invalidstateerror\u2462"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-invalidstateerror\u2463"}],"title":"4.3.4. claim()"},{"refs":[{"id":"ref-for-invalidstateerror\u2464"}],"title":"4.4.1. event.waitUntil(f)"},{"refs":[{"id":"ref-for-invalidstateerror\u2465"},{"id":"ref-for-invalidstateerror\u2466"}],"title":"4.6.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-invalidstateerror\u2467"},{"id":"ref-for-invalidstateerror\u2468"}],"title":"4.7.3. event.respondWith(r)"},{"refs":[{"id":"ref-for-invalidstateerror\u2460\u24ea"}],"title":"Batch Cache Operations"}],"url":"https://heycam.github.io/webidl/#invalidstateerror"}, -"2a37f6e3": {"dfnID":"2a37f6e3","dfnText":"api url character encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-api-url-character-encoding"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "2aaa2f42": {"dfnID":"2aaa2f42","dfnText":"http fetch","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-http-fetch"},{"id":"ref-for-concept-http-fetch\u2460"},{"id":"ref-for-concept-http-fetch\u2461"},{"id":"ref-for-concept-http-fetch\u2462"}],"title":"4.9. Events"}],"url":"https://fetch.spec.whatwg.org/#concept-http-fetch"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-eventtarget\u2460"}],"title":"3.2. ServiceWorkerRegistration"},{"refs":[{"id":"ref-for-eventtarget\u2461"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2df777b6": {"dfnID":"2df777b6","dfnText":"task queue","external":true,"refSections":[{"refs":[{"id":"ref-for-task-queue"},{"id":"ref-for-task-queue\u2460"},{"id":"ref-for-task-queue\u2461"}],"title":"2.2. Service Worker Registration"},{"refs":[{"id":"ref-for-task-queue\u2462"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-task-queue\u2463"},{"id":"ref-for-task-queue\u2464"}],"title":"Terminate Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-queue"}, @@ -5870,7 +5873,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "44a7708c": {"dfnID":"44a7708c","dfnText":"EventInit","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-eventinit"}],"title":"3.5. ServiceWorkerMessageEvent"},{"refs":[{"id":"ref-for-dictdef-eventinit\u2460"}],"title":"4.4. ExtendableEvent"}],"url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, "4b8429ef": {"dfnID":"4b8429ef","dfnText":"https state (for environment settings object)","external":true,"refSections":[{"refs":[{"id":"ref-for-https-state"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#https-state"}, "4b84a0bc": {"dfnID":"4b84a0bc","dfnText":"name","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-header-name"}],"title":"6.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-header-name\u2460"}],"title":"6.4.5. put(request, response)"},{"refs":[{"id":"ref-for-concept-header-name\u2461"}],"title":"Query Cache"}],"url":"https://fetch.spec.whatwg.org/#concept-header-name"}, -"4db93020": {"dfnID":"4db93020","dfnText":"about:blank","external":true,"refSections":[{"refs":[{"id":"ref-for-about:blank"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-about:blank\u2460"}],"title":"4.3.3. openWindow(url)"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank"}, "4eb7d3e8": {"dfnID":"4eb7d3e8","dfnText":"disturbed","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-body-disturbed"}],"title":"4.6.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-body-disturbed\u2460"}],"title":"4.7.3. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-body-disturbed\u2461"}],"title":"6.4.5. put(request, response)"}],"url":"https://fetch.spec.whatwg.org/#concept-body-disturbed"}, "50b05fad": {"dfnID":"50b05fad","dfnText":"method","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-method"}],"title":"6.4.2. matchAll(request, options)"},{"refs":[{"id":"ref-for-concept-request-method\u2460"}],"title":"6.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-request-method\u2461"}],"title":"6.4.5. put(request, response)"},{"refs":[{"id":"ref-for-concept-request-method\u2462"}],"title":"6.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-concept-request-method\u2463"}],"title":"6.4.7. keys(request, options)"},{"refs":[{"id":"ref-for-concept-request-method\u2464"}],"title":"Batch Cache Operations"}],"url":"https://fetch.spec.whatwg.org/#concept-request-method"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"}],"title":"3.2. ServiceWorkerRegistration"},{"refs":[{"id":"ref-for-idl-boolean\u2460"}],"title":"4.2. Client"},{"refs":[{"id":"ref-for-idl-boolean\u2461"}],"title":"4.3. Clients"},{"refs":[{"id":"ref-for-idl-boolean\u2462"},{"id":"ref-for-idl-boolean\u2463"}],"title":"4.6. FetchEvent"},{"refs":[{"id":"ref-for-idl-boolean\u2464"},{"id":"ref-for-idl-boolean\u2465"},{"id":"ref-for-idl-boolean\u2466"},{"id":"ref-for-idl-boolean\u2467"}],"title":"6.4. Cache"},{"refs":[{"id":"ref-for-idl-boolean\u2468"},{"id":"ref-for-idl-boolean\u2460\u24ea"}],"title":"6.5. CacheStorage"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, @@ -5881,6 +5883,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5991ccfb": {"dfnID":"5991ccfb","dfnText":"relevant realm","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-relevant-realm"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-concept-relevant-realm\u2460"}],"title":"4.6.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-relevant-realm\u2461"}],"title":"4.7.3. event.respondWith(r)"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-realm"}, "59c3c200": {"dfnID":"59c3c200","dfnText":"secure context","external":true,"refSections":[{"refs":[{"id":"ref-for-secure-context"}],"title":"4.3.1. get(id)"},{"refs":[{"id":"ref-for-secure-context\u2460"}],"title":"4.3.2. matchAll(options)"},{"refs":[{"id":"ref-for-secure-context\u2461"}],"title":"4.3.4. claim()"},{"refs":[{"id":"ref-for-secure-context\u2462"},{"id":"ref-for-secure-context\u2463"}],"title":"5.1. Processing"},{"refs":[{"id":"ref-for-secure-context\u2464"},{"id":"ref-for-secure-context\u2465"},{"id":"ref-for-secure-context\u2466"}],"title":"7.1. Secure Context"},{"refs":[{"id":"ref-for-secure-context\u2467"}],"title":"Handle Fetch"},{"refs":[{"id":"ref-for-secure-context\u2468"}],"title":"Handle Foreign Fetch"}],"url":"https://w3c.github.io/webappsec/specs/powerfulfeatures/#secure-context"}, "5a391458": {"dfnID":"5a391458","dfnText":"non-subresource request","external":true,"refSections":[{"refs":[{"id":"ref-for-non-subresource-request"}],"title":"2.4. Selection and Use"},{"refs":[{"id":"ref-for-non-subresource-request\u2460"},{"id":"ref-for-non-subresource-request\u2461"},{"id":"ref-for-non-subresource-request\u2462"},{"id":"ref-for-non-subresource-request\u2463"},{"id":"ref-for-non-subresource-request\u2464"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#non-subresource-request"}, +"5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"},{"id":"ref-for-reflect\u2460"}],"title":"5.2. Link element interface extensions"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "5c1ed6fb": {"dfnID":"5c1ed6fb","dfnText":"locked","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-body-locked"}],"title":"4.6.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-body-locked\u2460"}],"title":"4.7.3. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-body-locked\u2461"}],"title":"6.4.5. put(request, response)"}],"url":"https://fetch.spec.whatwg.org/#concept-body-locked"}, "5d596cd5": {"dfnID":"5d596cd5","dfnText":"readablestream","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-readablestream"}],"title":"6.4.5. put(request, response)"}],"url":"https://fetch.spec.whatwg.org/#concept-readablestream"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"}],"title":"2.3. Service Worker Client"},{"refs":[{"id":"ref-for-window\u2460"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-window\u2461"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-window\u2462"},{"id":"ref-for-window\u2463"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-window\u2464"},{"id":"ref-for-window\u2465"},{"id":"ref-for-window\u2466"}],"title":"4.3.3. openWindow(url)"},{"refs":[{"id":"ref-for-window\u2467"}],"title":"6. Caches"},{"refs":[{"id":"ref-for-window\u2468"}],"title":"6.5. CacheStorage"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, @@ -5895,7 +5898,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "6c60589d": {"dfnID":"6c60589d","dfnText":"onbeforeevicted","external":true,"refSections":[{"refs":[{"id":"ref-for-widl-ServiceWorkerGlobalScope-onbeforeevicted"}],"title":"8. Storage Considerations"}],"url":"http://www.w3.org/TR/quota-api/#widl-ServiceWorkerGlobalScope-onbeforeevicted"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-idl-any\u2460"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-idl-any\u2461"},{"id":"ref-for-idl-any\u2462"}],"title":"3.5. ServiceWorkerMessageEvent"},{"refs":[{"id":"ref-for-idl-any\u2463"}],"title":"4.2. Client"},{"refs":[{"id":"ref-for-idl-any\u2464"}],"title":"4.3. Clients"},{"refs":[{"id":"ref-for-idl-any\u2465"}],"title":"4.4. ExtendableEvent"},{"refs":[{"id":"ref-for-idl-any\u2466"},{"id":"ref-for-idl-any\u2467"}],"title":"4.8. ExtendableMessageEvent"},{"refs":[{"id":"ref-for-idl-any\u2468"}],"title":"6.4. Cache"},{"refs":[{"id":"ref-for-idl-any\u2460\u24ea"}],"title":"6.5. CacheStorage"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "6cfa013d": {"dfnID":"6cfa013d","dfnText":"link","external":true,"refSections":[{"refs":[{"id":"ref-for-the-link-element"}],"title":"5. Link type \"serviceworker\""},{"refs":[{"id":"ref-for-the-link-element\u2460"},{"id":"ref-for-the-link-element\u2461"},{"id":"ref-for-the-link-element\u2462"},{"id":"ref-for-the-link-element\u2463"},{"id":"ref-for-the-link-element\u2464"},{"id":"ref-for-the-link-element\u2465"},{"id":"ref-for-the-link-element\u2466"}],"title":"5.1. Processing"}],"url":"https://html.spec.whatwg.org/multipage/semantics.html#the-link-element"}, -"6e60af1e": {"dfnID":"6e60af1e","dfnText":"task","external":true,"refSections":[{"refs":[{"id":"ref-for-popover-toggle-task-task"},{"id":"ref-for-popover-toggle-task-task\u2460"}],"title":"2.2. Service Worker Registration"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2461"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2462"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2463"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2464"}],"title":"9.4. Request Functional Event Dispatch"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2465"}],"title":"Install"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2466"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2467"},{"id":"ref-for-popover-toggle-task-task\u2468"},{"id":"ref-for-popover-toggle-task-task\u2460\u24ea"}],"title":"Terminate Service Worker"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2460\u2460"}],"title":"Update Registration State"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2460\u2461"}],"title":"Update Worker State"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2460\u2462"}],"title":"Notify Controller Change"}],"url":"https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task"}, "6eb8a5d8": {"dfnID":"6eb8a5d8","dfnText":"document base url","external":true,"refSections":[{"refs":[{"id":"ref-for-document-base-url"}],"title":"5.1. Processing"}],"url":"https://html.spec.whatwg.org/multipage/urls-and-fetching.html#document-base-url"}, "6ee0eab1": {"dfnID":"6ee0eab1","dfnText":"header list (for request)","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-header-list"}],"title":"Update"}],"url":"https://fetch.spec.whatwg.org/#concept-request-header-list"}, "6fbdf145": {"dfnID":"6fbdf145","dfnText":"equal","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-equals"}],"title":"Register"},{"refs":[{"id":"ref-for-concept-url-equals\u2460"},{"id":"ref-for-concept-url-equals\u2461"}],"title":"Update"},{"refs":[{"id":"ref-for-concept-url-equals\u2462"},{"id":"ref-for-concept-url-equals\u2463"}],"title":"Query Cache"}],"url":"https://url.spec.whatwg.org/#concept-url-equals"}, @@ -6922,6 +6924,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/browsers.html#origin-2": {"export":true,"for_":["resource"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#origin-2"}, "https://html.spec.whatwg.org/multipage/browsers.html#same-origin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"same origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#same-origin"}, "https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"navigate","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"CEReactions","type":"extended-attribute","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#active-document": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"active document","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#active-document"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#auxiliary-browsing-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"auxiliary browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#auxiliary-browsing-context"}, @@ -6929,13 +6932,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context"}, "https://html.spec.whatwg.org/multipage/indices.html#event-domcontentloaded": {"export":true,"for_":["Document"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"DOMContentLoaded","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-domcontentloaded"}, "https://html.spec.whatwg.org/multipage/indices.html#event-message": {"export":true,"for_":["Window"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"message","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-message"}, -"https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"about:blank","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank"}, +"https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"about:blank","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#structuredclonewithtransfer": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"structuredclonewithtransfer","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#structuredclonewithtransfer"}, "https://html.spec.whatwg.org/multipage/interaction.html#focusing-steps": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"focusing steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#focusing-steps"}, "https://html.spec.whatwg.org/multipage/interaction.html#has-focus-steps": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"has focus steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#has-focus-steps"}, +"https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"task","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, -"https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"task","type":"dfn","url":"https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task"}, "https://html.spec.whatwg.org/multipage/semantics.html#attr-link-href": {"export":true,"for_":["link"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"href","type":"element-attr","url":"https://html.spec.whatwg.org/multipage/semantics.html#attr-link-href"}, "https://html.spec.whatwg.org/multipage/semantics.html#external-resource-link": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"external resource link","type":"dfn","url":"https://html.spec.whatwg.org/multipage/semantics.html#external-resource-link"}, "https://html.spec.whatwg.org/multipage/semantics.html#htmllinkelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLLinkElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/semantics.html#htmllinkelement"}, @@ -6945,7 +6948,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#unsafe-response": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"unsafe response","type":"dfn","url":"https://html.spec.whatwg.org/multipage/urls-and-fetching.html#unsafe-response"}, "https://html.spec.whatwg.org/multipage/web-messaging.html#messageport": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessagePort","type":"interface","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messageport"}, "https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api base url","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, -"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api url character encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "https://html.spec.whatwg.org/multipage/webappapis.html#classic-script": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"classic script","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#classic-script"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop": {"export":true,"for_":["agent"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event loop","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-realm-global": {"export":true,"for_":["realm"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"global object","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-realm-global"}, diff --git a/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.console.txt b/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.console.txt index e2ec57aabc..da00c7eabe 100644 --- a/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.console.txt +++ b/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.console.txt @@ -1,5 +1,3 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINE 610: The var 'client' (in algorithm 'service-worker-registration-update') is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. LINE 626: The var 'client' (in algorithm 'navigator-service-worker-unregister') is only used once. @@ -115,10 +113,10 @@ LINE 343: No 'dfn' refs found for 'url' with for='['url']'. LINE 344: No 'dfn' refs found for 'url' with for='['url']'. <a bs-line-number="344" data-link-for="url" data-link-type="dfn" data-lt="URL">URL</a> LINE 350: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="350" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 350: Multiple possible 'event loop' dfn refs. @@ -161,10 +159,10 @@ spec:html; type:dfn; for:Document; text:browsing context spec:html; type:dfn; for:Window; text:browsing context <a bs-line-number="513" data-link-type="dfn" data-lt="browsing context">browsing context</a> LINE 518: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="518" data-link-type="dfn" data-lt="task">task</a> LINE 609: No 'dfn' refs found for 'context object' that are marked for export. @@ -182,10 +180,10 @@ spec:html; type:dfn; for:agent; text:event loop spec:html; type:dfn; for:/; text:event loop <a bs-line-number="707" data-link-type="dfn" data-lt="event loop">event loop</a> LINE 707: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="707" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 707: No 'dfn' refs found for 'responsible document'. @@ -257,10 +255,10 @@ LINE 1209: No 'dfn' refs found for 'context object' that are marked for export. LINE 1210: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="1210" data-link-type="dfn" data-lt="context object">context object</a> LINE 1216: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="1216" data-link-type="dfn" data-lt="task">task</a> LINE 1220: No 'dfn' refs found for 'unicode serialization of an origin'. @@ -440,14 +438,14 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event -spec:webmidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1680" data-link-type="dfn" data-lt="event">event</a> LINE 1686: Multiple possible 'event' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event -spec:webmidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1686" data-link-type="dfn" data-lt="event">event</a> LINE 1717: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="1717" data-link-type="dfn" data-lt="context object" data-link-for-hint="FetchEvent">context object</a> @@ -500,10 +498,10 @@ LINK ERROR: No 'idl' refs found for 'importScripts(urls)' with for='['WorkerGlob LINE 2555: No 'dfn' refs found for 'perform the fetch'. <a bs-line-number="2555" data-link-for="fetching scripts" data-link-type="dfn" data-lt="perform the fetch">perform the fetch</a> LINE 2667: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="2667" data-link-type="dfn" data-lt="task">task</a> LINE 2684: No 'dfn' refs found for 'url' with for='['url']'. @@ -521,10 +519,10 @@ LINE 2917: No 'dfn' refs found for 'is top-level'. LINE 3055: No 'dfn' refs found for 'trusted event'. <a bs-line-number="3055" data-link-type="dfn" data-lt="trusted event">trusted event</a> LINE 3096: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3096" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 3130: No 'dfn' refs found for 'responsible document'. @@ -541,11 +539,13 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:html; type:dfn; for:agent; text:event loop spec:html; type:dfn; for:/; text:event loop <a bs-line-number="3176" data-link-type="dfn" data-lt="event loop">event loop</a> +LINE 3189: No 'dfn' refs found for 'api url character encoding'. +<a bs-line-number="3189" data-link-type="dfn" data-lt="API URL character encoding">API URL character encoding</a> LINE 3205: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3205" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 3205: Multiple possible 'event loop' dfn refs. @@ -559,10 +559,10 @@ LINE 3207: No 'dfn' refs found for 'kill a worker'. LINE 3218: No 'dfn' refs found for 'list of active timers'. <a bs-line-number="3218" data-link-type="dfn" data-lt="list of active timers">list of active timers</a> LINE 3235: Multiple possible 'tasks' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3235" data-link-type="dfn" data-lt="tasks">tasks</a> LINE 3235: Multiple possible 'event loop' dfn refs. @@ -592,24 +592,24 @@ LINE 3366: No 'dfn' refs found for 'kill a worker'. LINE 3450: No 'dfn' refs found for 'url' with for='['url']'. <a bs-line-number="3450" data-link-for="url" data-link-type="dfn" data-lt="URL">URL</a> LINE 3548: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3548" data-link-type="dfn" data-lt="task">task</a> LINE 3597: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3597" data-link-type="dfn" data-lt="task">task</a> LINE 3615: Multiple possible 'task' dfn refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task +Arbitrarily chose https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). spec:html; type:dfn; for:/; text:task - https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task + https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task https://html.spec.whatwg.org/multipage/webappapis.html#concept-task <a bs-line-number="3615" data-link-type="dfn" data-lt="task">task</a> LINE 3623: No 'dfn' refs found for 'url' with for='['url']'. diff --git a/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.html b/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.html index fe95df292a..fddd049821 100644 --- a/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.html +++ b/tests/github/w3c/ServiceWorker/publish/service_worker_1/WD-service-workers-1-20161011/index.html @@ -5,8 +5,8 @@ <title>Service Workers 1</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/service-workers-1/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -761,7 +761,7 @@ <h1 class="p-name no-ref" id="title">Service Workers 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1063,7 +1063,7 @@ <h3 class="heading settled" data-level="2.2" id="service-worker-registration-con <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration⑨">service worker registration</a> has an associated <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-active-worker">active worker</dfn> (a <a href="#dfn-service-worker" id="ref-for-dfn-service-worker③①">service worker</a> or null) whose <a href="#dfn-state" id="ref-for-dfn-state②">state</a> is either <em>activating</em> or <em>activated</em>. It is initially set to null.</p> <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⓪">service worker registration</a> has an associated <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-last-update-check-time">last update check time</dfn>. It is initially set to null.</p> <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①①">service worker registration</a> has an associated <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-uninstalling-flag">uninstalling flag</dfn>. It is initially unset.</p> - <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①②">service worker registration</a> has one or more <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-service-worker-registration-task-queue">task queues</dfn> that back up the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task">tasks</a> from its <a href="#dfn-active-worker" id="ref-for-dfn-active-worker③">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue">task queues</a>. (The target task sources for this back up operation are the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source">handle fetch task source</a> and the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source">handle functional event task source</a>.) The user agent dumps the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker④">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①">tasks</a> to the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①③">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑤">active worker</a> is <a href="#terminate-service-worker-algorithm">terminated</a> and <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task">re-queues those tasks</a> to the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑥">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop①">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue①">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑦">active worker</a> spins off. Unlike the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue②">task queues</a> owned by <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop②">event loops</a>, the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①④">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue①">task queues</a> are not processed by any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop③">event loops</a> in and of itself.</p> + <p>A <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①②">service worker registration</a> has one or more <dfn class="dfn-paneled" data-dfn-for="service worker registration" data-dfn-type="dfn" data-noexport id="dfn-service-worker-registration-task-queue">task queues</dfn> that back up the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task">tasks</a> from its <a href="#dfn-active-worker" id="ref-for-dfn-active-worker③">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue">task queues</a>. (The target task sources for this back up operation are the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source">handle fetch task source</a> and the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source">handle functional event task source</a>.) The user agent dumps the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker④">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①">tasks</a> to the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①③">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑤">active worker</a> is <a href="#terminate-service-worker-algorithm">terminated</a> and <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task">re-queues those tasks</a> to the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑥">active worker</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop①">event loop</a>’s corresponding <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue①">task queues</a> when the <a href="#dfn-active-worker" id="ref-for-dfn-active-worker⑦">active worker</a> spins off. Unlike the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue②">task queues</a> owned by <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop②">event loops</a>, the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①④">service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue①">task queues</a> are not processed by any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop③">event loops</a> in and of itself.</p> <section> <h4 class="heading settled" data-level="2.2.1" id="service-worker-registration-lifetime"><span class="secno">2.2.1. </span><span class="content">Lifetime</span><a class="self-link" href="#service-worker-registration-lifetime"></a></h4> <p>A user agent <em class="rfc2119" title="MUST">must</em> persistently keep a list of <a href="#register-algorithm">registered</a> <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑤">service worker registrations</a> unless otherwise they are explicitly <a href="#unregister-algorithm">unregistered</a>. A user agent has a <a href="#dfn-scope-to-registration-map" id="ref-for-dfn-scope-to-registration-map">scope to registration map</a> that stores the entries of the tuple of <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑥">service worker registration</a>’s <a href="#dfn-scope-url" id="ref-for-dfn-scope-url③">scope url</a> and the corresponding <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑦">service worker registration</a>. The lifetime of <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration①⑧">service worker registrations</a> is beyond that of the <code><a href="#service-worker-registration-interface" id="ref-for-service-worker-registration-interface">ServiceWorkerRegistration</a></code> objects which represent them within the lifetime of their corresponding <a href="#dfn-service-worker-client" id="ref-for-dfn-service-worker-client②">service worker clients</a>.</p> @@ -1192,7 +1192,7 @@ <h4 class="heading settled" data-level="3.1.3" id="service-worker-postmessage">< <li>Let the <code class="idl"><a data-link-type="idl" href="#extendablemessage-event-ports-attribute" id="ref-for-extendablemessage-event-ports-attribute">ports</a></code> attribute of <var>e</var> be initialized to <var>newPorts</var>. <li><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-dispatch" id="ref-for-concept-event-dispatch②">Dispatch</a> <var>e</var> at <var>destination</var>. </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task②">task</a> <em class="rfc2119" title="MUST">must</em> use the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task②">task</a> <em class="rfc2119" title="MUST">must</em> use the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source">DOM manipulation task source</a>.</p> </ol> </section> <section> @@ -1330,7 +1330,7 @@ <h3 class="heading settled" data-level="3.4" id="service-worker-container"><span <p>A <code><dfn class="dfn-paneled idl-code" data-dfn-for="ServiceWorkerContainer" data-dfn-type="interface" data-export id="service-worker-container-interface"><code>ServiceWorkerContainer</code></dfn></code> provides capabilities to register, unregister, and update the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration③⑤">service worker registrations</a>, and provides access to the state of the <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration③⑥">service worker registrations</a> and their associated <a href="#dfn-service-worker" id="ref-for-dfn-service-worker④⑤">service workers</a>.</p> <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑥">ServiceWorkerContainer</a></code> has an associated <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-service-worker-container-interface-client">service worker client</dfn>, which is a <a href="#dfn-service-worker-client" id="ref-for-dfn-service-worker-client②⓪">service worker client</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-global" id="ref-for-concept-settings-object-global⑤">global object</a> is associated with the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/system-state.html#navigator" id="ref-for-navigator②">Navigator</a></code> object or the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/workers.html#workernavigator" id="ref-for-workernavigator②">WorkerNavigator</a></code> object that the <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑦">ServiceWorkerContainer</a></code> is retrieved from.</p> <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑧">ServiceWorkerContainer</a></code> object has an associated <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-ready-promise">ready promise</dfn> (a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②">promise</a>). It is initially set to a new <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects③">promise</a>.</p> - <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑨">ServiceWorkerContainer</a></code> object has a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source③">task source</a> called the <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-client-message-queue">client message queue</dfn>, initially empty. A <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue">client message queue</a> can be enabled or disabled, and is initially disabled. When a <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①⓪">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue①">client message queue</a> is enabled, the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop④">event loop</a> <em class="rfc2119" title="MUST">must</em> use it as one of its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source④">task sources</a>. When the <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①①">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global">relevant global object</a> is a <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window②">Window</a></code> object, all <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task③">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②">queued</a> on its <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue②">client message queue</a> <em class="rfc2119" title="MUST">must</em> be associated with its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object③">relevant settings object</a>’s <a data-link-type="dfn">responsible document</a>.</p> + <p>A <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface⑨">ServiceWorkerContainer</a></code> object has a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source③">task source</a> called the <dfn class="dfn-paneled" data-dfn-for="ServiceWorkerContainer" data-dfn-type="dfn" data-noexport id="dfn-client-message-queue">client message queue</dfn>, initially empty. A <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue">client message queue</a> can be enabled or disabled, and is initially disabled. When a <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①⓪">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue①">client message queue</a> is enabled, the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop④">event loop</a> <em class="rfc2119" title="MUST">must</em> use it as one of its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source④">task sources</a>. When the <code class="idl"><a data-link-type="idl" href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①①">ServiceWorkerContainer</a></code> object’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global">relevant global object</a> is a <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window②">Window</a></code> object, all <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task③">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②">queued</a> on its <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue②">client message queue</a> <em class="rfc2119" title="MUST">must</em> be associated with its <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object③">relevant settings object</a>’s <a data-link-type="dfn">responsible document</a>.</p> <section class="algorithm" data-algorithm="navigator-service-worker-controller"> <h4 class="heading settled" data-level="3.4.1" id="navigator-service-worker-controller"><span class="secno">3.4.1. </span><span class="content"><code class="idl"><a data-link-type="idl" href="#service-worker-container-controller-attribute" id="ref-for-service-worker-container-controller-attribute①">controller</a></code></span><a class="self-link" href="#navigator-service-worker-controller"></a></h4> <p><dfn class="dfn-paneled idl-code" data-dfn-for="ServiceWorkerContainer" data-dfn-type="attribute" data-export id="service-worker-container-controller-attribute"><code>controller</code></dfn> attribute <em class="rfc2119" title="MUST">must</em> run these steps:</p> @@ -1732,7 +1732,7 @@ <h4 class="heading settled" data-level="4.2.4" id="client-postmessage"><span cla <li>Let <var>clonedMessage</var> be <var>cloneRecord</var>.[[Clone]]. <li>Let <var>newPorts</var> be a new <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-frozen-array-type" id="ref-for-dfn-frozen-array-type①">frozen array</a> consisting of all <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/web-messaging.html#messageport" id="ref-for-messageport⑥">MessagePort</a></code> objects in <var>cloneRecord</var>.[[TransferList]], if any, maintaining their relative order. <li> - Add a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task④">task</a> that runs the following steps to <var>destination</var>’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue⑤">client message queue</a>: + Add a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task④">task</a> that runs the following steps to <var>destination</var>’s <a data-link-type="dfn" href="#dfn-client-message-queue" id="ref-for-dfn-client-message-queue⑤">client message queue</a>: <ol> <li>Create an event <var>e</var> that uses the <code class="idl"><a data-link-type="idl" href="#serviceworkermessage-event-interface" id="ref-for-serviceworkermessage-event-interface③">ServiceWorkerMessageEvent</a></code> interface, with the event type <a href="#service-worker-container-message-event" id="ref-for-service-worker-container-message-event③">message</a>, which does not bubble and is not cancelable. <li>Let the <code class="idl"><a data-link-type="idl" href="#serviceworkermessage-event-data-attribute" id="ref-for-serviceworkermessage-event-data-attribute②">data</a></code> attribute of <var>e</var> be initialized to <var>clonedMessage</var>. @@ -1784,7 +1784,7 @@ <h4 class="heading settled" data-level="4.2.8" id="client-navigate"><span class= <ol> <li>Let <var>url</var> be the result of <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser⑤">parsing</a> <var>url</var> with the <a data-link-type="dfn">context object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object⑧">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url③">API base URL</a>. <li>If <var>url</var> is failure, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①③">promise</a> rejected with a <code>TypeError</code>. - <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank" id="ref-for-about:blank">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①④">promise</a> rejected with a <code>TypeError</code>. + <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank" id="ref-for-about%3Ablank">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①④">promise</a> rejected with a <code>TypeError</code>. <li>If the <a data-link-type="dfn">context object</a>’s associated <a href="#dfn-service-worker-client-client" id="ref-for-dfn-service-worker-client-client⑦">service worker client</a>’s <a href="#dfn-service-worker-client-active-worker" id="ref-for-dfn-service-worker-client-active-worker③">active worker</a> is not the <a data-link-type="dfn">context object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global" id="ref-for-concept-relevant-global①">relevant global object</a>’s <a href="#dfn-service-worker-global-scope-service-worker" id="ref-for-dfn-service-worker-global-scope-service-worker④">service worker</a>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①⑤">promise</a> rejected with a <code>TypeError</code>. <li>Let <var>promise</var> be a new <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①⑥">promise</a>. <li> @@ -1998,7 +1998,7 @@ <h4 class="heading settled" data-level="4.3.3" id="clients-openwindow"><span cla <ol> <li>Let <var>url</var> be the result of <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser⑥">parsing</a> <var>url</var> with the <a data-link-type="dfn">context object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object⑨">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url④">API base URL</a>. <li>If <var>url</var> is failure, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects①⑨">promise</a> rejected with a <code>TypeError</code>. - <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank" id="ref-for-about:blank①">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②⓪">promise</a> rejected with a <code>TypeError</code>. + <li>If <var>url</var> is <code><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank" id="ref-for-about%3Ablank①">about:blank</a></code>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②⓪">promise</a> rejected with a <code>TypeError</code>. <li>If this algorithm is not <a data-link-type="dfn">triggered by user activation</a>, return a <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②①">promise</a> rejected with an "<code class="idl"><a data-link-type="idl" href="https://heycam.github.io/webidl/#invalidaccesserror" id="ref-for-invalidaccesserror①">InvalidAccessError</a></code>" exception. <li>Let <var>promise</var> be a new <a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" id="ref-for-sec-promise-objects②②">promise</a>. <li> @@ -2989,7 +2989,7 @@ <h3 class="heading settled" data-level="8.3" id="extension-to-service-worker-glo <section> <h3 class="heading settled" data-level="8.4" id="request-functional-event-dispatch"><span class="secno">8.4. </span><span class="content">Request Functional Event Dispatch</span><a class="self-link" href="#request-functional-event-dispatch"></a></h3> <p>To request a <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑥">functional event</a> dispatch to a <a href="#dfn-service-worker" id="ref-for-dfn-service-worker⑨②">service worker</a>, specifications <em class="rfc2119" title="MAY">may</em> invoke <a href="#handle-functional-event-algorithm">Handle Functional Event</a> algorithm with its <a href="#dfn-service-worker-registration" id="ref-for-dfn-service-worker-registration④⑥">service worker registration</a> <var>registration</var> and the algorithm <var>callbackSteps</var> as the arguments.</p> - <p>Specifications <em class="rfc2119" title="MAY">may</em> define an algorithm <var>callbackSteps</var> where the corresponding <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑦">functional event</a> can be created and fired with specification specific objects. The algorithm is passed <var>globalObject</var> (a <code class="idl"><a data-link-type="idl" href="#service-worker-global-scope-interface" id="ref-for-service-worker-global-scope-interface①①">ServiceWorkerGlobalScope</a></code> object) at which it <em class="rfc2119" title="MAY">may</em> fire its <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑧">functional events</a>. This algorithm is called on a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑤">task</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task⑨">queued</a> by <a href="#handle-functional-event-algorithm">Handle Functional Event</a> algorithm.</p> + <p>Specifications <em class="rfc2119" title="MAY">may</em> define an algorithm <var>callbackSteps</var> where the corresponding <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑦">functional event</a> can be created and fired with specification specific objects. The algorithm is passed <var>globalObject</var> (a <code class="idl"><a data-link-type="idl" href="#service-worker-global-scope-interface" id="ref-for-service-worker-global-scope-interface①①">ServiceWorkerGlobalScope</a></code> object) at which it <em class="rfc2119" title="MAY">may</em> fire its <a href="#dfn-functional-events" id="ref-for-dfn-functional-events⑧">functional events</a>. This algorithm is called on a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑤">task</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task⑨">queued</a> by <a href="#handle-functional-event-algorithm">Handle Functional Event</a> algorithm.</p> <p class="note" role="note">See an <a href="https://notifications.spec.whatwg.org/#activating-a-notification">example</a> hook defined in <a data-link-type="biblio" href="#biblio-notifications" title="Notifications API Standard">Notifications API</a>.</p> </section> </section> @@ -3382,7 +3382,7 @@ <h3 class="heading settled" id="installation-algorithm"><span class="content">In <li>Invoke <a href="#finish-job-algorithm">Finish Job</a> with <var>job</var> and abort these steps. </ol> <li>Invoke <a href="#finish-job-algorithm">Finish Job</a> with <var>job</var>. - <li>Wait for all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑥">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task①⑦">queued</a> by <a href="#update-state-algorithm">Update Worker State</a> invoked in this algorithm have executed. + <li>Wait for all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑥">tasks</a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task①⑦">queued</a> by <a href="#update-state-algorithm">Update Worker State</a> invoked in this algorithm have executed. <li>Wait until no <a href="#dfn-service-worker-client" id="ref-for-dfn-service-worker-client③⑥">service worker client</a> is <a href="#dfn-use" id="ref-for-dfn-use③">using</a> <var>registration</var> or <var>registration</var>’s <a href="#dfn-waiting-worker" id="ref-for-dfn-waiting-worker①③">waiting worker</a>’s <a href="#dfn-skip-waiting-flag" id="ref-for-dfn-skip-waiting-flag③">skip waiting flag</a> is set. <li>If <var>registration</var>’s <a href="#dfn-waiting-worker" id="ref-for-dfn-waiting-worker①④">waiting worker</a> <var>waitingWorker</var> is not null and <var>waitingWorker</var>’s <a href="#dfn-skip-waiting-flag" id="ref-for-dfn-skip-waiting-flag④">skip waiting flag</a> is not set, invoke <a href="#activation-algorithm">Activate</a> algorithm with <var>registration</var> as its argument. </ol> @@ -3471,7 +3471,7 @@ <h3 class="heading settled" id="run-service-worker-algorithm"><span class="conte <dt>The <a data-link-type="dfn">referrer source</a> <dd>Return <var>serviceWorker</var>’s <a href="#dfn-script-url" id="ref-for-dfn-script-url⑦">script url</a>.</dd> <p class="issue" id="issue-b739bfcf"><a class="self-link" href="#issue-b739bfcf"></a>Remove this definition after sorting out the referencing sites.</p> - <dt>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding" id="ref-for-api-url-character-encoding">API URL character encoding</a> + <dt>The <a data-link-type="dfn">API URL character encoding</a> <dd>Return UTF-8. <dt>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url⑤">API base URL</a> <dd>Return <var>serviceWorker</var>’s <a href="#dfn-script-url" id="ref-for-dfn-script-url⑧">script url</a>. @@ -3486,7 +3486,7 @@ <h3 class="heading settled" id="run-service-worker-algorithm"><span class="conte <li>Set <var>workerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-https-state" id="ref-for-concept-workerglobalscope-https-state①">HTTPS state</a> to <var>serviceWorker</var>’s <a data-link-type="dfn" href="#dfn-script-resource" id="ref-for-dfn-script-resource①">script resource</a>’s <a href="#dfn-https-state" id="ref-for-dfn-https-state">HTTPS state</a>. <li>Set <var>workerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-type" id="ref-for-concept-workerglobalscope-type">type</a> to <var>serviceWorker</var>’s <a href="#dfn-type" id="ref-for-dfn-type③">type</a>. <li>Create a new <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/workers.html#workerlocation" id="ref-for-workerlocation">WorkerLocation</a></code> object and associate it with <var>workerGlobalScope</var>. - <li>If <var>serviceWorker</var> is an <a href="#dfn-active-worker" id="ref-for-dfn-active-worker③⓪">active worker</a>, and there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑦">tasks</a> queued in <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①①">containing service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue②">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task①⑨">queue</a> them to <var>serviceWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑥">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source⑨">task sources</a>. + <li>If <var>serviceWorker</var> is an <a href="#dfn-active-worker" id="ref-for-dfn-active-worker③⓪">active worker</a>, and there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑦">tasks</a> queued in <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①①">containing service worker registration</a>’s <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue②">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task①⑨">queue</a> them to <var>serviceWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑥">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source⑨">task sources</a>. <li> If <var>script</var> is a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#classic-script" id="ref-for-classic-script">classic script</a>, then <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#run-a-classic-script" id="ref-for-run-a-classic-script">run the classic script</a> <var>script</var>. Otherwise, it is a <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#module-script" id="ref-for-module-script">module script</a>; <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#run-a-module-script" id="ref-for-run-a-module-script">run the module script</a> <var>script</var>. <p class="note" role="note">In addition to the usual possibilities of returning a value or failing due to an exception, this could be prematurely aborted by the <a data-link-type="dfn">kill a worker</a> or <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/workers.html#terminate-a-worker" id="ref-for-terminate-a-worker">terminate a worker</a> algorithms.</p> @@ -3515,7 +3515,7 @@ <h3 class="heading settled" id="terminate-service-worker-algorithm"><span class= <li>Let <var>serviceWorkerGlobalScope</var> be <var>serviceWorker</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object" id="ref-for-environment-settings-object①③">environment settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-global" id="ref-for-concept-settings-object-global②②">global object</a>. <li>Set <var>serviceWorkerGlobalScope</var>’s closing flag to true. <li> - If there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑧">tasks</a>, whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①⓪">task source</a> is either the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source①">handle fetch task source</a> or the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source①">handle functional event task source</a>, queued in <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑦">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue④">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⓪">queue</a> them to <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①②">containing service worker registration</a>’s corresponding <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①①">task sources</a>, and discard all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task⑨">tasks</a> (including <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①⓪">tasks</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①②">task source</a> is neither the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source②">handle fetch task source</a> nor the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source②">handle functional event task source</a>) from <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑧">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue⑤">task queues</a> without processing them. + If there are any <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑧">tasks</a>, whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①⓪">task source</a> is either the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source①">handle fetch task source</a> or the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source①">handle functional event task source</a>, queued in <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑦">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue④">task queues</a>, <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⓪">queue</a> them to <var>serviceWorker</var>’s <a href="#dfn-containing-service-worker-registration" id="ref-for-dfn-containing-service-worker-registration①②">containing service worker registration</a>’s corresponding <a href="#dfn-service-worker-registration-task-queue" id="ref-for-dfn-service-worker-registration-task-queue③">task queues</a> in the same order using their original <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①①">task sources</a>, and discard all the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task⑨">tasks</a> (including <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①⓪">tasks</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-source" id="ref-for-task-source①②">task source</a> is neither the <a href="#dfn-handle-fetch-task-source" id="ref-for-dfn-handle-fetch-task-source②">handle fetch task source</a> nor the <a href="#dfn-handle-functional-event-task-source" id="ref-for-dfn-handle-functional-event-task-source②">handle functional event task source</a>) from <var>serviceWorkerGlobalScope</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop" id="ref-for-concept-agent-event-loop⑧">event loop</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#task-queue" id="ref-for-task-queue⑤">task queues</a> without processing them. <p class="note" role="note">This effectively means that the fetch events and the other functional events such as push events are backed up by the registration’s task queues while the other tasks including message events are discarded.</p> <li>Abort the script currently running in <var>serviceWorker</var>. </ol> @@ -3810,7 +3810,7 @@ <h3 class="heading settled" id="update-registration-state-algorithm"><span class <li><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⑤">Queue a task</a> to set the <a href="#service-worker-registration-active-attribute" id="ref-for-service-worker-registration-active-attribute②">active</a> attribute of <var>registrationObject</var> to the <code class="idl"><a data-link-type="idl" href="#service-worker-interface" id="ref-for-service-worker-interface②⑧">ServiceWorker</a></code> object that represents <var>registration</var>’s <a data-link-type="dfn" href="#dfn-active-worker" id="ref-for-dfn-active-worker①">active worker</a>, or null if <var>registration</var>’s <a data-link-type="dfn" href="#dfn-active-worker" id="ref-for-dfn-active-worker②">active worker</a> is null. </ol> </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①①">task</a> <em class="rfc2119" title="MUST">must</em> use <var>registrationObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object①①">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①①">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑤">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①①">task</a> <em class="rfc2119" title="MUST">must</em> use <var>registrationObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object①①">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①①">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑤">DOM manipulation task source</a>.</p> </ol> </section> <section class="algorithm" data-algorithm="update-state-algorithm"> @@ -3858,7 +3858,7 @@ <h3 class="heading settled" id="update-state-algorithm"><span class="content">Up <li><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#fire-a-simple-event" id="ref-for-fire-a-simple-event①">Fire a simple event</a> named <code>statechange</code> at <var>workerObject</var>. </ol> </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①②">task</a> <em class="rfc2119" title="MUST">must</em> use <var>workerObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object①②">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①②">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑥">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①②">task</a> <em class="rfc2119" title="MUST">must</em> use <var>workerObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object" id="ref-for-relevant-settings-object①②">relevant settings object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①②">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑥">DOM manipulation task source</a>.</p> </ol> </section> <section class="algorithm" data-algorithm="notify-controller-change-algorithm"> @@ -3873,7 +3873,7 @@ <h3 class="heading settled" id="notify-controller-change-algorithm"><span class= <li><a data-link-type="dfn" href="http://www.ecma-international.org/ecma-262/6.0/#sec-algorithm-conventions" id="ref-for-sec-algorithm-conventions⑤">Assert</a>: <var>client</var> is not null. <li><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task" id="ref-for-queue-a-task②⑦">Queue a task</a> to <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#fire-a-simple-event" id="ref-for-fire-a-simple-event②">fire a simple event</a> named <code>controllerchange</code> at the <code><a href="#service-worker-container-interface" id="ref-for-service-worker-container-interface①⑤">ServiceWorkerContainer</a></code> object <var>client</var> is <a href="#dfn-service-worker-container-interface-client" id="ref-for-dfn-service-worker-container-interface-client⑦">associated</a> with. </ol> - <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task" id="ref-for-popover-toggle-task-task①③">task</a> <em class="rfc2119" title="MUST">must</em> use <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑦">DOM manipulation task source</a>.</p> + <p>The <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task" id="ref-for-toggle-task-task①③">task</a> <em class="rfc2119" title="MUST">must</em> use <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#responsible-event-loop" id="ref-for-responsible-event-loop①③">responsible event loop</a> and the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#dom-manipulation-task-source" id="ref-for-dom-manipulation-task-source⑦">DOM manipulation task source</a>.</p> </section> <section class="algorithm" data-algorithm="scope-match-algorithm"> <h3 class="heading settled" id="scope-match-algorithm"><span class="content">Match Service Worker Registration</span><a class="self-link" href="#scope-match-algorithm"></a></h3> @@ -4227,20 +4227,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -4690,10 +4692,9 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e9ac3051">WorkerLocation</span> <li><span class="dfn-paneled" id="a4785085">WorkerNavigator</span> <li><span class="dfn-paneled" id="c262266a">WorkerType</span> - <li><span class="dfn-paneled" id="4db93020">about:blank</span> + <li><span class="dfn-paneled" id="1bf9ed4c">about:blank</span> <li><span class="dfn-paneled" id="26513a72">active document</span> <li><span class="dfn-paneled" id="1b5b1c0c">api base url</span> - <li><span class="dfn-paneled" id="2a37f6e3">api url character encoding</span> <li><span class="dfn-paneled" id="58ebefde">auxiliary browsing context</span> <li><span class="dfn-paneled" id="0d0390b4">browsing context</span> <li><span class="dfn-paneled" id="caa8344c">classic script</span> @@ -4731,7 +4732,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="dd6462cb">script</span> <li><span class="dfn-paneled" id="b5c48f2c">shared workers</span> <li><span class="dfn-paneled" id="59131bdf">structuredclonewithtransfer</span> - <li><span class="dfn-paneled" id="6e60af1e">task</span> + <li><span class="dfn-paneled" id="1ee15438">task</span> <li><span class="dfn-paneled" id="2df777b6">task queue</span> <li><span class="dfn-paneled" id="c3b2d08c">task source</span> <li><span class="dfn-paneled" id="a41b1317">terminate a worker</span> @@ -4843,7 +4844,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc7231">[RFC7231] <dd>R. Fielding, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc7231.html"><cite>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</cite></a>. June 2014. Proposed Standard. URL: <a href="https://httpwg.org/specs/rfc7231.html">https://httpwg.org/specs/rfc7231.html</a> <dt id="biblio-secure-contexts">[SECURE-CONTEXTS] - <dd>Mike West. <a href="https://www.w3.org/TR/secure-contexts/"><cite>Secure Contexts</cite></a>. 18 September 2021. CR. URL: <a href="https://www.w3.org/TR/secure-contexts/">https://www.w3.org/TR/secure-contexts/</a> + <dd>Mike West. <a href="https://www.w3.org/TR/secure-contexts/"><cite>Secure Contexts</cite></a>. 10 November 2023. CR. URL: <a href="https://www.w3.org/TR/secure-contexts/">https://www.w3.org/TR/secure-contexts/</a> <dt id="biblio-url">[URL] <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/"><cite>URL Standard</cite></a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a> <dt id="biblio-webidl">[WEBIDL] @@ -5299,8 +5300,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "165b73c9": {"dfnID":"165b73c9","dfnText":"SharedWorkerGlobalScope","external":true,"refSections":[{"refs":[{"id":"ref-for-sharedworkerglobalscope"}],"title":"2.3. Service Worker Client"}],"url":"https://html.spec.whatwg.org/multipage/workers.html#sharedworkerglobalscope"}, "1aa4c641": {"dfnID":"1aa4c641","dfnText":"empty","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-empty-readablestream"}],"title":"5.4.5. put(request, response)"}],"url":"https://fetch.spec.whatwg.org/#concept-empty-readablestream"}, "1b5b1c0c": {"dfnID":"1b5b1c0c","dfnText":"api base url","external":true,"refSections":[{"refs":[{"id":"ref-for-api-base-url"},{"id":"ref-for-api-base-url\u2460"}],"title":"3.4.3. register(scriptURL, options)"},{"refs":[{"id":"ref-for-api-base-url\u2461"}],"title":"3.4.4. getRegistration(clientURL)"},{"refs":[{"id":"ref-for-api-base-url\u2462"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-api-base-url\u2463"}],"title":"4.3.3. openWindow(url)"},{"refs":[{"id":"ref-for-api-base-url\u2464"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, +"1bf9ed4c": {"dfnID":"1bf9ed4c","dfnText":"about:blank","external":true,"refSections":[{"refs":[{"id":"ref-for-about%3Ablank"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-about%3Ablank\u2460"}],"title":"4.3.3. openWindow(url)"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank"}, "1db1ee46": {"dfnID":"1db1ee46","dfnText":"get(name)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-headers-get"},{"id":"ref-for-dom-headers-get\u2460"}],"title":"Query Cache"}],"url":"https://fetch.spec.whatwg.org/#dom-headers-get"}, "1e01e86c": {"dfnID":"1e01e86c","dfnText":"errored","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-readablestream-errored"}],"title":"4.5.4. event.respondWith(r)"}],"url":"https://fetch.spec.whatwg.org/#concept-readablestream-errored"}, +"1ee15438": {"dfnID":"1ee15438","dfnText":"task","external":true,"refSections":[{"refs":[{"id":"ref-for-toggle-task-task"},{"id":"ref-for-toggle-task-task\u2460"}],"title":"2.2. Service Worker Registration"},{"refs":[{"id":"ref-for-toggle-task-task\u2461"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-toggle-task-task\u2462"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-toggle-task-task\u2463"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-toggle-task-task\u2464"}],"title":"8.4. Request Functional Event Dispatch"},{"refs":[{"id":"ref-for-toggle-task-task\u2465"}],"title":"Install"},{"refs":[{"id":"ref-for-toggle-task-task\u2466"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-toggle-task-task\u2467"},{"id":"ref-for-toggle-task-task\u2468"},{"id":"ref-for-toggle-task-task\u2460\u24ea"}],"title":"Terminate Service Worker"},{"refs":[{"id":"ref-for-toggle-task-task\u2460\u2460"}],"title":"Update Registration State"},{"refs":[{"id":"ref-for-toggle-task-task\u2460\u2461"}],"title":"Update Worker State"},{"refs":[{"id":"ref-for-toggle-task-task\u2460\u2462"}],"title":"Notify Controller Change"}],"url":"https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task"}, "22c27bbb": {"dfnID":"22c27bbb","dfnText":"headers","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-request-headers"}],"title":"Handle Fetch"},{"refs":[{"id":"ref-for-dom-request-headers\u2460"},{"id":"ref-for-dom-request-headers\u2461"}],"title":"Query Cache"}],"url":"https://fetch.spec.whatwg.org/#dom-request-headers"}, "2594e562": {"dfnID":"2594e562","dfnText":"navigate","external":true,"refSections":[{"refs":[{"id":"ref-for-navigate"}],"title":"3.2.6. unregister()"},{"refs":[{"id":"ref-for-navigate\u2460"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-navigate\u2461"}],"title":"4.3.3. openWindow(url)"},{"refs":[{"id":"ref-for-navigate\u2462"}],"title":"Handle Fetch"}],"url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate"}, "25b16dad": {"dfnID":"25b16dad","dfnText":"error readablestream","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-error-readablestream"}],"title":"4.5.4. event.respondWith(r)"}],"url":"https://fetch.spec.whatwg.org/#concept-error-readablestream"}, @@ -5308,7 +5311,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "26b82890": {"dfnID":"26b82890","dfnText":"event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event"}],"title":"4.5.2. event.clientId"},{"refs":[{"id":"ref-for-concept-event\u2460"}],"title":"4.5.3. event.isReload"}],"url":"https://dom.spec.whatwg.org/#concept-event"}, "2889d1ec": {"dfnID":"2889d1ec","dfnText":"navigation request","external":true,"refSections":[{"refs":[{"id":"ref-for-navigation-request"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#navigation-request"}, "2987477f": {"dfnID":"2987477f","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-invalidstateerror\u2460"},{"id":"ref-for-invalidstateerror\u2461"}],"title":"3.2.5. update()"},{"refs":[{"id":"ref-for-invalidstateerror\u2462"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-invalidstateerror\u2463"}],"title":"4.3.4. claim()"},{"refs":[{"id":"ref-for-invalidstateerror\u2464"}],"title":"4.4.1. event.waitUntil(f)"},{"refs":[{"id":"ref-for-invalidstateerror\u2465"},{"id":"ref-for-invalidstateerror\u2466"}],"title":"4.5.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-invalidstateerror\u2467"}],"title":"Batch Cache Operations"}],"url":"https://heycam.github.io/webidl/#invalidstateerror"}, -"2a37f6e3": {"dfnID":"2a37f6e3","dfnText":"api url character encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-api-url-character-encoding"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "2aaa2f42": {"dfnID":"2aaa2f42","dfnText":"http fetch","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-http-fetch"},{"id":"ref-for-concept-http-fetch\u2460"}],"title":"4.7. Events"}],"url":"https://fetch.spec.whatwg.org/#concept-http-fetch"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-eventtarget\u2460"}],"title":"3.2. ServiceWorkerRegistration"},{"refs":[{"id":"ref-for-eventtarget\u2461"}],"title":"3.4. ServiceWorkerContainer"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2df777b6": {"dfnID":"2df777b6","dfnText":"task queue","external":true,"refSections":[{"refs":[{"id":"ref-for-task-queue"},{"id":"ref-for-task-queue\u2460"},{"id":"ref-for-task-queue\u2461"}],"title":"2.2. Service Worker Registration"},{"refs":[{"id":"ref-for-task-queue\u2462"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-task-queue\u2463"},{"id":"ref-for-task-queue\u2464"}],"title":"Terminate Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-queue"}, @@ -5326,7 +5328,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "44a7708c": {"dfnID":"44a7708c","dfnText":"EventInit","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-eventinit"}],"title":"3.5. ServiceWorkerMessageEvent"},{"refs":[{"id":"ref-for-dictdef-eventinit\u2460"}],"title":"4.4. ExtendableEvent"}],"url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, "4b8429ef": {"dfnID":"4b8429ef","dfnText":"https state (for environment settings object)","external":true,"refSections":[{"refs":[{"id":"ref-for-https-state"}],"title":"Run Service Worker"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#https-state"}, "4b84a0bc": {"dfnID":"4b84a0bc","dfnText":"name","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-header-name"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-header-name\u2460"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-concept-header-name\u2461"}],"title":"Query Cache"}],"url":"https://fetch.spec.whatwg.org/#concept-header-name"}, -"4db93020": {"dfnID":"4db93020","dfnText":"about:blank","external":true,"refSections":[{"refs":[{"id":"ref-for-about:blank"}],"title":"4.2.8. navigate(url)"},{"refs":[{"id":"ref-for-about:blank\u2460"}],"title":"4.3.3. openWindow(url)"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank"}, "4eb7d3e8": {"dfnID":"4eb7d3e8","dfnText":"disturbed","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-body-disturbed"}],"title":"4.5.4. event.respondWith(r)"},{"refs":[{"id":"ref-for-concept-body-disturbed\u2460"}],"title":"5.4.5. put(request, response)"}],"url":"https://fetch.spec.whatwg.org/#concept-body-disturbed"}, "50b05fad": {"dfnID":"50b05fad","dfnText":"method","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-method"}],"title":"5.4.2. matchAll(request, options)"},{"refs":[{"id":"ref-for-concept-request-method\u2460"}],"title":"5.4.4. addAll(requests)"},{"refs":[{"id":"ref-for-concept-request-method\u2461"}],"title":"5.4.5. put(request, response)"},{"refs":[{"id":"ref-for-concept-request-method\u2462"}],"title":"5.4.6. delete(request, options)"},{"refs":[{"id":"ref-for-concept-request-method\u2463"}],"title":"5.4.7. keys(request, options)"},{"refs":[{"id":"ref-for-concept-request-method\u2464"}],"title":"Batch Cache Operations"}],"url":"https://fetch.spec.whatwg.org/#concept-request-method"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"}],"title":"3.2. ServiceWorkerRegistration"},{"refs":[{"id":"ref-for-idl-boolean\u2460"}],"title":"4.2. Client"},{"refs":[{"id":"ref-for-idl-boolean\u2461"}],"title":"4.3. Clients"},{"refs":[{"id":"ref-for-idl-boolean\u2462"},{"id":"ref-for-idl-boolean\u2463"}],"title":"4.5. FetchEvent"},{"refs":[{"id":"ref-for-idl-boolean\u2464"},{"id":"ref-for-idl-boolean\u2465"},{"id":"ref-for-idl-boolean\u2466"},{"id":"ref-for-idl-boolean\u2467"}],"title":"5.4. Cache"},{"refs":[{"id":"ref-for-idl-boolean\u2468"},{"id":"ref-for-idl-boolean\u2460\u24ea"}],"title":"5.5. CacheStorage"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, @@ -5350,7 +5351,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "6a5a59a0": {"dfnID":"6a5a59a0","dfnText":"event handler","external":true,"refSections":[{"refs":[{"id":"ref-for-event-handlers"},{"id":"ref-for-event-handlers\u2460"}],"title":"3.1.4. Event handler"},{"refs":[{"id":"ref-for-event-handlers\u2461"},{"id":"ref-for-event-handlers\u2462"}],"title":"3.2.7. Event handler"},{"refs":[{"id":"ref-for-event-handlers\u2463"},{"id":"ref-for-event-handlers\u2464"}],"title":"3.4.7. Event handlers"},{"refs":[{"id":"ref-for-event-handlers\u2465"},{"id":"ref-for-event-handlers\u2466"}],"title":"4.1.4. Event handlers"},{"refs":[{"id":"ref-for-event-handlers\u2467"},{"id":"ref-for-event-handlers\u2468"}],"title":"Update Worker State"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers"}, "6c60589d": {"dfnID":"6c60589d","dfnText":"onbeforeevicted","external":true,"refSections":[{"refs":[{"id":"ref-for-widl-ServiceWorkerGlobalScope-onbeforeevicted"}],"title":"7. Storage Considerations"}],"url":"http://www.w3.org/TR/quota-api/#widl-ServiceWorkerGlobalScope-onbeforeevicted"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"}],"title":"3.1. ServiceWorker"},{"refs":[{"id":"ref-for-idl-any\u2460"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-idl-any\u2461"},{"id":"ref-for-idl-any\u2462"}],"title":"3.5. ServiceWorkerMessageEvent"},{"refs":[{"id":"ref-for-idl-any\u2463"}],"title":"4.2. Client"},{"refs":[{"id":"ref-for-idl-any\u2464"}],"title":"4.3. Clients"},{"refs":[{"id":"ref-for-idl-any\u2465"}],"title":"4.4. ExtendableEvent"},{"refs":[{"id":"ref-for-idl-any\u2466"},{"id":"ref-for-idl-any\u2467"}],"title":"4.6. ExtendableMessageEvent"},{"refs":[{"id":"ref-for-idl-any\u2468"}],"title":"5.4. Cache"},{"refs":[{"id":"ref-for-idl-any\u2460\u24ea"}],"title":"5.5. CacheStorage"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, -"6e60af1e": {"dfnID":"6e60af1e","dfnText":"task","external":true,"refSections":[{"refs":[{"id":"ref-for-popover-toggle-task-task"},{"id":"ref-for-popover-toggle-task-task\u2460"}],"title":"2.2. Service Worker Registration"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2461"}],"title":"3.1.3. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2462"}],"title":"3.4. ServiceWorkerContainer"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2463"}],"title":"4.2.4. postMessage(message, transfer)"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2464"}],"title":"8.4. Request Functional Event Dispatch"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2465"}],"title":"Install"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2466"}],"title":"Run Service Worker"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2467"},{"id":"ref-for-popover-toggle-task-task\u2468"},{"id":"ref-for-popover-toggle-task-task\u2460\u24ea"}],"title":"Terminate Service Worker"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2460\u2460"}],"title":"Update Registration State"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2460\u2461"}],"title":"Update Worker State"},{"refs":[{"id":"ref-for-popover-toggle-task-task\u2460\u2462"}],"title":"Notify Controller Change"}],"url":"https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task"}, "6ee0eab1": {"dfnID":"6ee0eab1","dfnText":"header list (for request)","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-header-list"}],"title":"Update"}],"url":"https://fetch.spec.whatwg.org/#concept-request-header-list"}, "6fbdf145": {"dfnID":"6fbdf145","dfnText":"equal","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-equals"}],"title":"Register"},{"refs":[{"id":"ref-for-concept-url-equals\u2460"},{"id":"ref-for-concept-url-equals\u2461"}],"title":"Update"},{"refs":[{"id":"ref-for-concept-url-equals\u2462"},{"id":"ref-for-concept-url-equals\u2463"}],"title":"Query Cache"}],"url":"https://url.spec.whatwg.org/#concept-url-equals"}, "70ef9d74": {"dfnID":"70ef9d74","dfnText":"potential-navigation-or-subresource request","external":true,"refSections":[{"refs":[{"id":"ref-for-potential-navigation-or-subresource-request"}],"title":"6.5. Implementer Concerns"},{"refs":[{"id":"ref-for-potential-navigation-or-subresource-request\u2460"}],"title":"Handle Fetch"}],"url":"https://fetch.spec.whatwg.org/#potential-navigation-or-subresource-request"}, @@ -6302,18 +6302,17 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context"}, "https://html.spec.whatwg.org/multipage/indices.html#event-domcontentloaded": {"export":true,"for_":["Document"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"DOMContentLoaded","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-domcontentloaded"}, "https://html.spec.whatwg.org/multipage/indices.html#event-message": {"export":true,"for_":["Window"],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"message","type":"event","url":"https://html.spec.whatwg.org/multipage/indices.html#event-message"}, -"https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"about:blank","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about:blank"}, +"https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"about:blank","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#about%3Ablank"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#structuredclonewithtransfer": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"structuredclonewithtransfer","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#structuredclonewithtransfer"}, "https://html.spec.whatwg.org/multipage/interaction.html#focusing-steps": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"focusing steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#focusing-steps"}, "https://html.spec.whatwg.org/multipage/interaction.html#has-focus-steps": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"has focus steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#has-focus-steps"}, +"https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"task","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, -"https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"task","type":"dfn","url":"https://html.spec.whatwg.org/multipage/popover.html#popover-toggle-task-task"}, "https://html.spec.whatwg.org/multipage/system-state.html#navigator": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Navigator","type":"interface","url":"https://html.spec.whatwg.org/multipage/system-state.html#navigator"}, "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#unsafe-response": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"unsafe response","type":"dfn","url":"https://html.spec.whatwg.org/multipage/urls-and-fetching.html#unsafe-response"}, "https://html.spec.whatwg.org/multipage/web-messaging.html#messageport": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessagePort","type":"interface","url":"https://html.spec.whatwg.org/multipage/web-messaging.html#messageport"}, "https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api base url","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, -"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api url character encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "https://html.spec.whatwg.org/multipage/webappapis.html#classic-script": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"classic script","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#classic-script"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop": {"export":true,"for_":["agent"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event loop","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-global-object-realm": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"the global object's realm","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-global-object-realm"}, diff --git a/tests/github/w3c/accelerometer/index.console.txt b/tests/github/w3c/accelerometer/index.console.txt index 8563657db4..fd4d1a2919 100644 --- a/tests/github/w3c/accelerometer/index.console.txt +++ b/tests/github/w3c/accelerometer/index.console.txt @@ -1,8 +1,14 @@ LINE 206: Image doesn't exist, so I couldn't determine its width and height: 'images/accelerometer_coordinate_system.svg' LINE 238: Image doesn't exist, so I couldn't determine its width and height: 'images/device_coordinate_system.svg' LINE 248: Image doesn't exist, so I couldn't determine its width and height: 'images/screen_coordinate_system.svg' -LINE 190: No 'enum-value' refs found for '"accelerometer"' with for='['PermissionName']'. +LINE 190: No 'enum-value' refs found for '"accelerometer"'. <a bs-line-number="190" data-link-type="enum-value" data-link-for="PermissionName" data-lt='"accelerometer"'>"accelerometer"</a> +LINE 411: No 'enum-value' refs found for '"accelerometer"'. +<a bs-line-number="411" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"accelerometer"'>"accelerometer"</a> +LINE 423: No 'enum-value' refs found for '"linear-acceleration"'. +<a bs-line-number="423" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"linear-acceleration"'>"linear-acceleration"</a> +LINE 432: No 'enum-value' refs found for '"gravity"'. +<a bs-line-number="432" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"gravity"'>"gravity"</a> LINE 167: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 459: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="459" data-dfn-type="dfn" id="conformant-user-agent" data-lt="conformant user agent" data-noexport="by-default" class="dfn-paneled">conformant user agent</dfn> diff --git a/tests/github/w3c/accelerometer/index.html b/tests/github/w3c/accelerometer/index.html index a0ca42500c..396b50b613 100644 --- a/tests/github/w3c/accelerometer/index.html +++ b/tests/github/w3c/accelerometer/index.html @@ -5,7 +5,6 @@ <title>Accelerometer</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/accelerometer/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -764,7 +763,7 @@ <h1 class="p-name no-ref" id="title">Accelerometer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -785,13 +784,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[accelerometer] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1061,18 +1060,18 @@ <h2 class="heading settled" data-level="8" id="automation"><span class="secno">8 This section extends the <a data-link-type="dfn" href="https://w3c.github.io/sensors/#automation" id="ref-for-automation">automation</a> section defined in the Generic Sensor API <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide mocking information about the <a data-link-type="dfn" href="#acceleration" id="ref-for-acceleration①④">acceleration</a> applied to the X, Y and Z axis of a device that hosts the sensor for the purposes of testing a user agent’s implementation of <code class="idl"><a data-link-type="idl" href="#accelerometer" id="ref-for-accelerometer①⑦">Accelerometer</a></code>, <code class="idl"><a data-link-type="idl" href="#linearaccelerationsensor" id="ref-for-linearaccelerationsensor①①">LinearAccelerationSensor</a></code> and <code class="idl"><a data-link-type="idl" href="#gravitysensor" id="ref-for-gravitysensor①①">GravitySensor</a></code> APIs. <h3 class="heading settled" data-level="8.1" id="mock-accelerometer-type"><span class="secno">8.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-accelerometer-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#accelerometer" id="ref-for-accelerometer①⑧">Accelerometer</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-accelerometer" id="ref-for-dom-mocksensortype-accelerometer">"accelerometer"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#accelerometer" id="ref-for-accelerometer①⑧">Accelerometer</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"accelerometer"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-accelerometerreadingvalues"><code><c- g>AccelerometerReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double③"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="AccelerometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-accelerometerreadingvalues-x"><code><c- g>x</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double④"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="AccelerometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-accelerometerreadingvalues-y"><code><c- g>y</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double⑤"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="AccelerometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-accelerometerreadingvalues-z"><code><c- g>z</c-></code></dfn>; }; </pre> - <p>The <code class="idl"><a data-link-type="idl" href="#linearaccelerationsensor" id="ref-for-linearaccelerationsensor①②">LinearAccelerationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type①">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-linear-acceleration" id="ref-for-dom-mocksensortype-linear-acceleration">"linear-acceleration"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values①">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#linearaccelerationsensor" id="ref-for-linearaccelerationsensor①②">LinearAccelerationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type①">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"linear-acceleration"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values①">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-linearaccelerationreadingvalues"><code><c- g>LinearAccelerationReadingValues</c-></code></dfn> : <a data-link-type="idl-name" href="#dictdef-accelerometerreadingvalues" id="ref-for-dictdef-accelerometerreadingvalues"><c- n>AccelerometerReadingValues</c-></a> { }; </pre> - <p>The <code class="idl"><a data-link-type="idl" href="#gravitysensor" id="ref-for-gravitysensor①②">GravitySensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type②">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-gravity" id="ref-for-dom-mocksensortype-gravity">"gravity"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values②">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#gravitysensor" id="ref-for-gravitysensor①②">GravitySensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type②">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"gravity"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values②">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-gravityreadingvalues"><code><c- g>GravityReadingValues</c-></code></dfn> : <a data-link-type="idl-name" href="#dictdef-accelerometerreadingvalues" id="ref-for-dictdef-accelerometerreadingvalues①"><c- n>AccelerometerReadingValues</c-></a> { }; </pre> @@ -1164,9 +1163,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="41eb6e6f">"accelerometer"</span> - <li><span class="dfn-paneled" id="7f28f775">"gravity"</span> - <li><span class="dfn-paneled" id="2c4f9f29">"linear-acceleration"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="8b05f5b6">automation</span> @@ -1487,11 +1483,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "1b956603": {"dfnID":"1b956603","dfnText":"Sensor","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor"},{"id":"ref-for-sensor\u2460"}],"title":"5. Model"},{"refs":[{"id":"ref-for-sensor\u2461"}],"title":"6.1. The Accelerometer Interface"}],"url":"https://w3c.github.io/sensors/#sensor"}, "207de9db": {"dfnID":"207de9db","dfnText":"SensorOptions","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-sensoroptions"}],"title":"6.1. The Accelerometer Interface"}],"url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, "2797dd43": {"dfnID":"2797dd43","dfnText":"default sensor","external":true,"refSections":[{"refs":[{"id":"ref-for-default-sensor"}],"title":"5. Model"}],"url":"https://w3c.github.io/sensors/#default-sensor"}, -"2c4f9f29": {"dfnID":"2c4f9f29","dfnText":"\"linear-acceleration\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-linear-acceleration"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-linear-acceleration"}, "31db57e6": {"dfnID":"31db57e6","dfnText":"keys","external":true,"refSections":[{"refs":[{"id":"ref-for-map-getting-the-keys"}],"title":"5. Model"}],"url":"https://infra.spec.whatwg.org/#map-getting-the-keys"}, "378064f9": {"dfnID":"378064f9","dfnText":"latest reading","external":true,"refSections":[{"refs":[{"id":"ref-for-latest-reading"},{"id":"ref-for-latest-reading\u2460"},{"id":"ref-for-latest-reading\u2461"}],"title":"5. Model"}],"url":"https://w3c.github.io/sensors/#latest-reading"}, "40b81364": {"dfnID":"40b81364","dfnText":"sensor permission name","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor-permission-names"}],"title":"5. Model"}],"url":"https://w3c.github.io/sensors/#sensor-permission-names"}, -"41eb6e6f": {"dfnID":"41eb6e6f","dfnText":"\"accelerometer\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-accelerometer"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-accelerometer"}, "435b7a7b": {"dfnID":"435b7a7b","dfnText":"dom screen","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-screen"},{"id":"ref-for-dom-screen\u2460"}],"title":"2. Examples"},{"refs":[{"id":"ref-for-dom-screen\u2461"},{"id":"ref-for-dom-screen\u2462"},{"id":"ref-for-dom-screen\u2463"},{"id":"ref-for-dom-screen\u2464"},{"id":"ref-for-dom-screen\u2465"},{"id":"ref-for-dom-screen\u2466"},{"id":"ref-for-dom-screen\u2467"}],"title":"5.1. Reference Frame"}],"url":"https://www.w3.org/TR/screen-orientation/#dom-screen"}, "47391bd7": {"dfnID":"47391bd7","dfnText":"location tracking","external":true,"refSections":[{"refs":[{"id":"ref-for-location-tracking"}],"title":"4. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#location-tracking"}, "4acdbf1c": {"dfnID":"4acdbf1c","dfnText":"mock sensor reading values","external":true,"refSections":[{"refs":[{"id":"ref-for-mock-sensor-reading-values"},{"id":"ref-for-mock-sensor-reading-values\u2460"},{"id":"ref-for-mock-sensor-reading-values\u2461"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#mock-sensor-reading-values"}, @@ -1499,7 +1493,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "5af83a7f": {"dfnID":"5af83a7f","dfnText":"generic mitigations","external":true,"refSections":[{"refs":[{"id":"ref-for-mitigation-strategies"}],"title":"4. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#mitigation-strategies"}, "636bcfaf": {"dfnID":"636bcfaf","dfnText":"sensor readings","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor-reading"},{"id":"ref-for-sensor-reading\u2460"}],"title":"4. Security and Privacy Considerations"},{"refs":[{"id":"ref-for-sensor-reading\u2461"}],"title":"5.1. Reference Frame"}],"url":"https://w3c.github.io/sensors/#sensor-reading"}, "7272b427": {"dfnID":"7272b427","dfnText":"keylogging","external":true,"refSections":[{"refs":[{"id":"ref-for-keystroke-monitoring"}],"title":"4. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#keystroke-monitoring"}, -"7f28f775": {"dfnID":"7f28f775","dfnText":"\"gravity\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-gravity"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-gravity"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"6.1. The Accelerometer Interface"},{"refs":[{"id":"ref-for-Exposed\u2460"}],"title":"6.2. The LinearAccelerationSensor Interface"},{"refs":[{"id":"ref-for-Exposed\u2461"}],"title":"6.3. The GravitySensor Interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "8958b003": {"dfnID":"8958b003","dfnText":"entry","external":true,"refSections":[{"refs":[{"id":"ref-for-map-entry"}],"title":"5. Model"}],"url":"https://infra.spec.whatwg.org/#map-entry"}, "8b05f5b6": {"dfnID":"8b05f5b6","dfnText":"automation","external":true,"refSections":[{"refs":[{"id":"ref-for-automation"}],"title":"8. Automation"}],"url":"https://w3c.github.io/sensors/#automation"}, @@ -1961,9 +1954,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors/#default-sensor": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"default sensor","type":"dfn","url":"https://w3c.github.io/sensors/#default-sensor"}, "https://w3c.github.io/sensors/#device-fingerprinting": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"fingerprinting","type":"dfn","url":"https://w3c.github.io/sensors/#device-fingerprinting"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-accelerometer": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"accelerometer\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-accelerometer"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-gravity": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"gravity\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-gravity"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-linear-acceleration": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"linear-acceleration\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-linear-acceleration"}, "https://w3c.github.io/sensors/#get-value-from-latest-reading": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"get value from latest reading","type":"dfn","url":"https://w3c.github.io/sensors/#get-value-from-latest-reading"}, "https://w3c.github.io/sensors/#initialize-a-sensor-object": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"initialize a sensor object","type":"dfn","url":"https://w3c.github.io/sensors/#initialize-a-sensor-object"}, "https://w3c.github.io/sensors/#keystroke-monitoring": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"keylogging","type":"dfn","url":"https://w3c.github.io/sensors/#keystroke-monitoring"}, diff --git a/tests/github/w3c/ambient-light/index.console.txt b/tests/github/w3c/ambient-light/index.console.txt index 3481d2dee9..69a6ac3bd4 100644 --- a/tests/github/w3c/ambient-light/index.console.txt +++ b/tests/github/w3c/ambient-light/index.console.txt @@ -13,6 +13,8 @@ LINT: Your document appears to use spaces to indent, but line 65 starts with tab LINT: Your document appears to use spaces to indent, but line 66 starts with tabs. LINE 218: No 'enum-value' refs found for '"ambient-light-sensor"'. <a bs-line-number="218" data-link-type="enum-value" data-link-for="PermissionName" data-lt='"ambient-light-sensor"'>"ambient-light-sensor"</a> +LINE 282: No 'enum-value' refs found for '"ambient-light"'. +<a bs-line-number="282" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"ambient-light"'>"ambient-light"</a> LINE 178: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 220: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="220" data-dfn-type="dfn" id="illuminance" data-lt="illuminance" data-noexport="by-default" class="dfn-paneled">illuminance</dfn> diff --git a/tests/github/w3c/ambient-light/index.html b/tests/github/w3c/ambient-light/index.html index 3f67ece016..c713db382e 100644 --- a/tests/github/w3c/ambient-light/index.html +++ b/tests/github/w3c/ambient-light/index.html @@ -5,7 +5,6 @@ <title>Ambient Light Sensor</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/ambient-light/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -768,7 +767,7 @@ <h1 class="p-name no-ref" id="title">Ambient Light Sensor</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -788,13 +787,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[ambient-light] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1018,7 +1017,7 @@ <h2 class="heading settled" data-level="7" id="automation"><span class="secno">7 This section extends the <a data-link-type="dfn" href="https://w3c.github.io/sensors/#automation" id="ref-for-automation">automation</a> section defined in the Generic Sensor API <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide mocking information about the ambient light levels for the purposes of testing a user agent’s implementation of <a data-link-type="dfn" href="#ambient-light-sensor" id="ref-for-ambient-light-sensor②">Ambient Light Sensor</a>. <h3 class="heading settled" data-level="7.1" id="mock-ambient-light-sensor-type"><span class="secno">7.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-ambient-light-sensor-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#ambientlightsensor" id="ref-for-ambientlightsensor⑥">AmbientLightSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-ambient-light" id="ref-for-dom-mocksensortype-ambient-light">"ambient-light"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#ambientlightsensor" id="ref-for-ambientlightsensor⑥">AmbientLightSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"ambient-light"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-ambientlightreadingvalues"><code><c- g>AmbientLightReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double①"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="AmbientLightReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-ambientlightreadingvalues-illuminance"><code><c- g>illuminance</c-></code></dfn>; }; @@ -1086,7 +1085,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="09e1ad7e">"ambient-light"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="8b05f5b6">automation</span> @@ -1348,7 +1346,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I { let dfnPanelData = { "0026f53f": {"dfnID":"0026f53f","dfnText":"initialize a sensor object","external":true,"refSections":[{"refs":[{"id":"ref-for-initialize-a-sensor-object"}],"title":"6.1. Construct an ambient light sensor object"}],"url":"https://w3c.github.io/sensors/#initialize-a-sensor-object"}, -"09e1ad7e": {"dfnID":"09e1ad7e","dfnText":"\"ambient-light\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-ambient-light"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-ambient-light"}, "1b956603": {"dfnID":"1b956603","dfnText":"Sensor","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor"}],"title":"4. Model"},{"refs":[{"id":"ref-for-sensor\u2460"}],"title":"5.1. The AmbientLightSensor Interface"}],"url":"https://w3c.github.io/sensors/#sensor"}, "207de9db": {"dfnID":"207de9db","dfnText":"SensorOptions","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-sensoroptions"}],"title":"5.1. The AmbientLightSensor Interface"},{"refs":[{"id":"ref-for-dictdef-sensoroptions\u2460"}],"title":"6.1. Construct an ambient light sensor object"}],"url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, "214e5c65": {"dfnID":"214e5c65","dfnText":"reduce accuracy","external":true,"refSections":[{"refs":[{"id":"ref-for-reduce-accuracy"}],"title":"3. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#reduce-accuracy"}, @@ -1779,7 +1776,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors/#check-sensor-policy-controlled-features": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"check sensor policy-controlled features","type":"dfn","url":"https://w3c.github.io/sensors/#check-sensor-policy-controlled-features"}, "https://w3c.github.io/sensors/#default-sensor": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"default sensor","type":"dfn","url":"https://w3c.github.io/sensors/#default-sensor"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-ambient-light": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"ambient-light\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-ambient-light"}, "https://w3c.github.io/sensors/#get-value-from-latest-reading": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"get value from latest reading","type":"dfn","url":"https://w3c.github.io/sensors/#get-value-from-latest-reading"}, "https://w3c.github.io/sensors/#high-level": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"high-level","type":"dfn","url":"https://w3c.github.io/sensors/#high-level"}, "https://w3c.github.io/sensors/#initialize-a-sensor-object": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"initialize a sensor object","type":"dfn","url":"https://w3c.github.io/sensors/#initialize-a-sensor-object"}, diff --git a/tests/github/w3c/clipboard-apis/index.console.txt b/tests/github/w3c/clipboard-apis/index.console.txt index d907e9a126..31cf9370f7 100644 --- a/tests/github/w3c/clipboard-apis/index.console.txt +++ b/tests/github/w3c/clipboard-apis/index.console.txt @@ -1,3 +1,11 @@ LINT: Your document appears to use tabs to indent, but line 42 starts with spaces. LINT: Your document appears to use tabs to indent, but line 43 starts with spaces. LINT: Your document appears to use tabs to indent, but line 44 starts with spaces. +LINE ~745: Multiple possible 'data' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-cd-data +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:data +spec:trusted-types; type:dfn; for:TrustedHTML; text:data +spec:trusted-types; type:dfn; for:TrustedScript; text:data +spec:trusted-types; type:dfn; for:TrustedScriptURL; text:data +[=data=] diff --git a/tests/github/w3c/clipboard-apis/index.html b/tests/github/w3c/clipboard-apis/index.html index 04562b08a2..faaa3e9fb4 100644 --- a/tests/github/w3c/clipboard-apis/index.html +++ b/tests/github/w3c/clipboard-apis/index.html @@ -3,9 +3,8 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Clipboard API and events</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/clipboard-apis/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -971,7 +970,7 @@ <h1>Clipboard API and events</h1> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/clipboard-apis/">https://www.w3.org/TR/clipboard-apis/</a> <dt>Previous Versions: - <dd><a href="https://www.w3.org/TR/2021/WD-clipboard-apis-20210806/" rel="prev">https://www.w3.org/TR/2021/WD-clipboard-apis-20210806/</a> + <dd><a href="https://www.w3.org/TR/2023/WD-clipboard-apis-20230516/" rel="prev">https://www.w3.org/TR/2023/WD-clipboard-apis-20230516/</a> <dt class="editor">Editors: <dd class="editor p-author h-card vcard" data-editor-id="59482"><a class="p-name fn u-email email" href="mailto:garykac@google.com">Gary Kacmarcik</a> (<span class="p-org org">Google</span>) <dd class="editor p-author h-card vcard" data-editor-id="78883"><a class="p-name fn u-email email" href="mailto:glyuk@microsoft.com">Grisha Lyukshin</a> (<span class="p-org org">Microsoft</span>) @@ -983,7 +982,7 @@ <h1>Clipboard API and events</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1005,8 +1004,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Publication as an Editors Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -2546,20 +2545,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2842,12 +2843,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-clipboard-readtext"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/readText" title="The Clipboard interface&apos;s readText() method returns a Promise which resolves with a copy of the textual contents of the system clipboard.">Clipboard/readText</a></p> - <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>63+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2954,17 +2954,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-clipboarditem-clipboarditem"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ClipboardItem/ClipboardItem" title="The ClipboardItem() constructor of the Clipboard API creates a new ClipboardItem object which represents data to be stored or retrieved via the Clipboard API, that is clipboard.write() and clipboard.read() respectively.">ClipboardItem/ClipboardItem</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>98+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>98+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>98+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2974,13 +2975,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ClipboardItem/getType" title="The getType() method of the ClipboardItem interface returns a Promise that resolves with a Blob of the requested MIME type or an error if the MIME type is not found.">ClipboardItem/getType</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>84+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3005,13 +3006,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ClipboardItem/types" title="The read-only types property of the ClipboardItem interface returns an Array of MIME types available within the ClipboardItem">ClipboardItem/types</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>84+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3021,13 +3022,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ClipboardItem" title="The ClipboardItem interface of the Clipboard API represents a single item format, used when reading or writing data via the Clipboard API. That is clipboard.read() and clipboard.write() respectively.">ClipboardItem</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 87+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>84+</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> diff --git a/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.console.txt index 3796fe9414..51ef18da9e 100644 --- a/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.console.txt @@ -1,4 +1,4 @@ -WARNING: You used Status: DREAM for a W3C document. Consider UD instead. +WARNING: You used Status:DREAM for a W3C document. Consider Status:UD instead. LINK ERROR: No 'idl-name' refs found for 'void'. <a data-link-type="idl-name" data-lt="void">void</a> WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.html b/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.html index cf6590b57b..3bd9c36fd0 100644 --- a/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/box-tree-api/Overview.html @@ -1,1494 +1,13 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Box Tree API Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> -<style data-fill-with="stylesheet">/****************************************************************************** - * Style sheet for the W3C specifications * - * - * Special classes handled by this style sheet include: - * - * Indices - * - .toc for the Table of Contents (<ol class="toc">) - * + <span class="secno"> for the section numbers - * - #toc for the Table of Contents (<nav id="toc">) - * - ul.index for Indices (<a href="#ref">term</a><span>, in § N.M</span>) - * - table.index for Index Tables (e.g. for properties or elements) - * - * Structural Markup - * - table.data for general data tables - * -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results ! - * -> use <table class='complex data'> for extra-complex tables - * -> use <td class='long'> for paragraph-length cell content - * -> use <td class='pre'> when manual line breaks/indentation would help readability - * - dl.switch for switch statements - * - ol.algorithm for algorithms (helps to visualize nesting) - * - .figure and .caption (HTML4) and figure and figcaption (HTML5) - * -> .sidefigure for right-floated figures - * - ins/del - * -> ins/del.c### for candidate and proposed changes (amendments) - * - * Code - * - pre and code - * - * Special Sections - * - .note for informative notes (div, p, span, aside, details) - * - .example for informative examples (div, p, pre, span) - * - .issue for issues (div, p, span) - * - .advisement for loud normative statements (div, p, strong) - * - .annoying-warning for spec obsoletion notices (div, aside, details) - * - .correction for "candidate corrections" (div, aside, details, section) - * - .addition for "candidate additions" (div, aside, details, section) - * - .correction.proposed for "proposed corrections" (div, aside, details, section) - * - .addition.proposed for "proposed additions" (div, aside, details, section) - * - * Definition Boxes - * - pre.def for WebIDL definitions - * - table.def for tables that define other entities (e.g. CSS properties) - * - dl.def for definition lists that define other entitles (e.g. HTML elements) - * - * Numbering - * - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>) - * - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>) - * - ::before styled for CSS-generated issue/example/figure numbers: - * -> Documents wishing to use this only need to add - * figcaption::before, - * .caption::before { content: "Figure " counter(figure) " "; } - * .example::before { content: "Example " counter(example) " "; } - * .issue::before { content: "Issue " counter(issue) " "; } - * - * Header Stuff (ignore, just don't conflict with these classes) - * - .head for the header - * - .copyright for the copyright - * - * Outdated warning for old specs - * - * Miscellaneous - * - .overlarge for things that should be as wide as possible, even if - * that overflows the body text area. This can be used on an item or - * on its container, depending on the effect desired. - * Note that this styling basically doesn't help at all when printing, - * since A4 paper isn't much wider than the max-width here. - * It's better to design things to fit into a narrower measure if possible. - * - * - js-added ToC jump links (see fixup.js) - * - ******************************************************************************/ - -/* color variables included separately for reliability */ - -/******************************************************************************/ -/* Body */ -/******************************************************************************/ - - html { - } - - body { - counter-reset: example figure issue; - - /* Layout */ - max-width: 50em; /* limit line length to 50em for readability */ - margin: 0 auto; /* center text within page */ - padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */ - padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */ - - /* Typography */ - line-height: 1.5; - font-family: sans-serif; - widows: 2; - orphans: 2; - word-wrap: break-word; - overflow-wrap: break-word; - hyphens: auto; - - color: black; - color: var(--text); - background: white top left fixed no-repeat; - background: var(--bg) top left fixed no-repeat; - background-size: 25px auto; - } - - -/******************************************************************************/ -/* Front Matter & Navigation */ -/******************************************************************************/ - -/** Header ********************************************************************/ - - div.head { margin-bottom: 1em; } - div.head hr { border-style: solid; } - - div.head h1 { - font-weight: bold; - margin: 0 0 .1em; - font-size: 220%; - } - - div.head h2 { margin-bottom: 1.5em;} - -/** W3C Logo ******************************************************************/ - - .head .logo { - float: right; - margin: 0.4rem 0 0.2rem .4rem; - } - - .head img[src*="logos/W3C"] { - display: block; - border: solid #1a5e9a; - border: solid var(--logo-bg); - border-width: .65rem .7rem .6rem; - border-radius: .4rem; - background: #1a5e9a; - background: var(--logo-bg); - color: white; - color: var(--logo-text); - font-weight: bold; - } - - .head a:hover > img[src*="logos/W3C"], - .head a:focus > img[src*="logos/W3C"] { - opacity: .8; - } - - .head a:active > img[src*="logos/W3C"] { - background: #c00; - background: var(--logo-active-bg); - border-color: #c00; - border-color: var(--logo-active-bg); - } - - /* see also additional rules in Link Styling section */ - -/** Copyright *****************************************************************/ - - p.copyright, - p.copyright small { font-size: small; } - -/** Back to Top / ToC Toggle **************************************************/ - - @media print { - #toc-nav { - display: none; - } - } - @media not print { - #toc-nav { - position: fixed; - z-index: 3; - bottom: 0; left: 0; - margin: 0; - min-width: 1.33em; - border-top-right-radius: 2rem; - box-shadow: 0 0 2px; - font-size: 1.5em; - } - #toc-nav > a { - display: block; - white-space: nowrap; - - height: 1.33em; - padding: .1em 0.3em; - margin: 0; - - box-shadow: 0 0 2px; - border: none; - border-top-right-radius: 1.33em; - - color: #707070; - color: var(--tocnav-normal-text); - background: white; - background: var(--tocnav-normal-bg); - } - #toc-nav > a:hover, - #toc-nav > a:focus { - color: black; - color: var(--tocnav-hover-text); - background: #f8f8f8; - background: var(--tocnav-hover-bg); - } - #toc-nav > a:active { - color: #c00; - color: var(--tocnav-active-text); - background: white; - background: var(--tocnav-active-bg); - } - - #toc-nav > #toc-jump { - padding-bottom: 2em; - margin-bottom: -1.9em; - } - - /* statusbar gets in the way on keyboard focus; remove once browsers fix */ - #toc-nav > a[href="#toc"]:not(:hover):focus:last-child { - padding-bottom: 1.5rem; - } - - #toc-nav:not(:hover) > a:not(:focus) > span + span { - /* Ideally this uses :focus-within on #toc-nav */ - display: none; - } - #toc-nav > a > span + span { - padding-right: 0.2em; - } - } - -/** ToC Sidebar ***************************************************************/ - - /* Floating sidebar */ - @media screen { - body.toc-sidebar #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - max-width: 80%; - max-width: calc(100% - 2em - 26px); - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body.toc-sidebar #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - body.toc-sidebar #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - /* Hide main scroller when only the ToC is visible anyway */ - @media screen and (max-width: 28em) { - body.toc-sidebar { - overflow: hidden; - } - } - - /* Sidebar with its own space */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body:not(.toc-inline) #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - - body:not(.toc-inline) { - padding-left: 29em; - } - /* See also Overflow section at the bottom */ - - body:not(.toc-inline) #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) { - margin: 0 4em; - } - } - -/******************************************************************************/ -/* Sectioning */ -/******************************************************************************/ - -/** Headings ******************************************************************/ - - h1, h2, h3, h4, h5, h6, dt { - page-break-after: avoid; - page-break-inside: avoid; - font: 100% sans-serif; /* Reset all font styling to clear out UA styles */ - font-family: inherit; /* Inherit the font family. */ - line-height: 1.2; /* Keep wrapped headings compact */ - hyphens: manual; /* Hyphenated headings look weird */ - } - - h2, h3, h4, h5, h6 { - margin-top: 3rem; - } - - h1, h2, h3 { - color: #005A9C; - color: var(--heading-text); - } - - h1 { font-size: 170%; } - h2 { font-size: 140%; } - h3 { font-size: 120%; } - h4 { font-weight: bold; } - h5 { font-style: italic; } - h6 { font-variant: small-caps; } - dt { font-weight: bold; } - -/** Subheadings ***************************************************************/ - - h1 + h2, - #profile-and-date { - /* #profile-and-date is a subtitle in an H2 under the H1 */ - margin-top: 0; - } - h2 + h3, - h3 + h4, - h4 + h5, - h5 + h6 { - margin-top: 1.2em; /* = 1 x line-height */ - } - -/** Section divider ***********************************************************/ - - :not(.head) > :not(.head) + hr { - font-size: 1.5em; - text-align: center; - margin: 1em auto; - height: auto; - color: black; - color: var(--hr-text); - border: transparent solid 0; - background: transparent; - } - :not(.head) > hr::before { - content: "\2727\2003\2003\2727\2003\2003\2727"; - } - -/******************************************************************************/ -/* Paragraphs and Lists */ -/******************************************************************************/ - - p { - margin: 1em 0; - } - - dd > p:first-child, - li > p:first-child { - margin-top: 0; - } - - ul, ol { - margin-left: 0; - padding-left: 2em; - } - - li { - margin: 0.25em 0 0.5em; - padding: 0; - } - - dl dd { - margin: 0 0 .5em 2em; - } - - .head dd + dd { /* compact for header */ - margin-top: -.5em; - } - - /* Style for algorithms */ - ol.algorithm ol:not(.algorithm), - .algorithm > ol ol:not(.algorithm) { - border-left: 0.5em solid #DEF; - border-left: 0.5em solid var(--algo-border); - } - - /* Put nice boxes around each algorithm. */ - [data-algorithm]:not(.heading) { - padding: .5em; - border: thin solid #ddd; - border: thin solid var(--algo-border); - border-radius: .5em; - margin: .5em calc(-0.5em - 1px); - } - [data-algorithm]:not(.heading) > :first-child { - margin-top: 0; - } - [data-algorithm]:not(.heading) > :last-child { - margin-bottom: 0; - } - - /* Style for switch/case <dl>s */ - dl.switch > dd > ol.only, - dl.switch > dd > .only > ol { - margin-left: 0; - } - dl.switch > dd > ol.algorithm, - dl.switch > dd > .algorithm > ol { - margin-left: -2em; - } - dl.switch { - padding-left: 2em; - } - dl.switch > dt { - text-indent: -1.5em; - margin-top: 1em; - } - dl.switch > dt + dt { - margin-top: 0; - } - dl.switch > dt::before { - content: '\21AA'; - padding: 0 0.5em 0 0; - display: inline-block; - width: 1em; - text-align: right; - line-height: 0.5em; - } - -/** Terminology Markup ********************************************************/ - - -/******************************************************************************/ -/* Inline Markup */ -/******************************************************************************/ - -/** Terminology Markup ********************************************************/ - dfn { /* Defining instance */ - font-weight: bolder; - } - a > i { /* Instance of term */ - font-style: normal; - } - dt dfn code, code.idl { - font-size: inherit; - } - dfn var { - font-style: normal; - } - -/** Change Marking ************************************************************/ - - del { - color: #aa0000; - color: var(--del-text); - background: transparent; - background: var(--del-bg); - text-decoration: line-through; - } - ins { - color: #006100; - color: var(--ins-text); - background: transparent; - background: var(--ins-bg); - text-decoration: underline; - } - - /* for amendments (candidate/proposed changes) */ - - .amendment ins, .correction ins, .addition ins, - ins[class^=c] { - text-decoration-style: dotted; - } - .amendment del, .correction del, .addition del, - del[class^=c] { - text-decoration-style: dotted; - } - .amendment.proposed ins, .correction.proposed ins, .addition.proposed ins, - ins[class^=c].proposed { - text-decoration-style: double; - } - .amendment.proposed del, .correction.proposed del, .addition.proposed del, - del[class^=c].proposed { - text-decoration-style: double; - } - -/** Miscellaneous improvements to inline formatting ***************************/ - - sup { - vertical-align: super; - font-size: 80% - } - -/******************************************************************************/ -/* Code */ -/******************************************************************************/ - -/** General monospace/pre rules ***********************************************/ - - pre, code, samp { - font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace; - font-size: .9em; - hyphens: none; - text-transform: none; - text-align: left; - text-align: start; - font-variant: normal; - orphans: 3; - widows: 3; - page-break-before: avoid; - } - pre code, - code code { - font-size: 100%; - } - - pre { - margin-top: 1em; - margin-bottom: 1em; - overflow: auto; - } - -/** Inline Code fragments *****************************************************/ - - /* Do something nice. */ - -/******************************************************************************/ -/* Links */ -/******************************************************************************/ - -/** General Hyperlinks ********************************************************/ - - /* We hyperlink a lot, so make it less intrusive */ - a[href] { - color: #034575; - color: var(--a-normal-text); - text-decoration: underline #707070; - text-decoration: underline var(--a-normal-underline); - text-decoration-skip-ink: none; - } - a:visited { - color: #034575; - color: var(--a-visited-text); - text-decoration-color: #bbb; - text-decoration-color: var(--a-visited-underline); - } - - /* Indicate interaction with the link */ - a[href]:focus, - a[href]:hover { - text-decoration-thickness: 2px; - } - a[href]:active { - color: #c00; - color: var(--a-active-text); - text-decoration-color: #c00; - text-decoration-color: var(--a-active-underline); - } - - /* Backout above styling for W3C logo */ - .head .logo, - .head .logo a { - border: none; - text-decoration: none; - background: transparent; - } - -/******************************************************************************/ -/* Images */ -/******************************************************************************/ - - img { - border-style: none; - } - - img, svg { - /* Intentionally not color-scheme aware. */ - background: white; - } - - /* For autogen numbers, add - .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; } - */ - - figure, .figure, .sidefigure { - page-break-inside: avoid; - text-align: center; - margin: 2.5em 0; - } - .figure img, .sidefigure img, figure img, - .figure object, .sidefigure object, figure object { - max-width: 100%; - margin: auto; - height: auto; - } - .figure pre, .sidefigure pre, figure pre { - text-align: left; - display: table; - margin: 1em auto; - } - .figure table, figure table { - margin: auto; - } - @media screen and (min-width: 20em) { - .sidefigure { - float: right; - width: 50%; - margin: 0 0 0.5em 0.5em; - } - } - .caption, figcaption, caption { - font-style: italic; - font-size: 90%; - } - .caption::before, figcaption::before, figcaption > .marker { - font-weight: bold; - } - .caption, figcaption { - counter-increment: figure; - } - - /* DL list is indented 2em, but figure inside it is not */ - dd > .figure, dd > figure { margin-left: -2em; } - -/******************************************************************************/ -/* Colored Boxes */ -/******************************************************************************/ - - .issue, .note, .example, .assertion, .advisement, blockquote, - .amendment, .correction, .addition { - margin: 1em auto; - padding: .5em; - border: .5em; - border-left-style: solid; - page-break-inside: avoid; - } - span.issue, span.note { - padding: .1em .5em .15em; - border-right-style: solid; - } - - blockquote > :first-child, - .note > p:first-child, - .issue > p:first-child, - .amendment > p:first-child, - .correction > p:first-child, - .addition > p:first-child { - margin-top: 0; - } - blockquote > :last-child, - .note > p:last-child, - .issue > p:last-child, - .amendment > p:last-child, - .correction > p:last-child, - .addition > p:last-child { - margin-bottom: 0; - } - - - .issue::before, .issue > .marker, - .example::before, .example > .marker, - .note::before, .note > .marker, - details.note > summary > .marker, - .amendment::before, .amendment > .marker, - details.amendment > summary > .marker, - .addition::before, .addition > .marker, - addition.amendment > summary > .marker, - .correction::before, .correction > .marker, - correction.amendment > summary > .marker - { - text-transform: uppercase; - padding-right: 1em; - } - - .example::before, .example > .marker { - display: block; - padding-right: 0em; - } - -/** Blockquotes ***************************************************************/ - - blockquote { - border-color: silver; - border-color: var(--blockquote-border); - background: transparent; - background: var(--blockquote-bg); - color: currentcolor; - color: var(--blockquote-text); - } - -/** Open issue ****************************************************************/ - - .issue { - border-color: #e05252; - border-color: var(--issue-border); - background: #fbe9e9; - background: var(--issue-bg); - color: black; - color: var(--issue-text); - counter-increment: issue; - overflow: auto; - } - .issue::before, .issue > .marker { - color: #831616; - color: var(--issueheading-text); - } - /* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers, - or use class="marker" to mark up the issue number in source. */ - -/** Example *******************************************************************/ - - .example { - border-color: #e0cb52; - border-color: var(--example-border); - background: #fcfaee; - background: var(--example-bg); - color: black; - color: var(--example-text); - counter-increment: example; - overflow: auto; - clear: both; - } - .example::before, .example > .marker { - color: #574b0f; - color: var(--exampleheading-text); - } - /* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers, - or use class="marker" to mark up the example number in source. */ - -/** Non-normative Note ********************************************************/ - - .note { - border-color: #52e052; - border-color: var(--note-border); - background: #e9fbe9; - background: var(--note-bg); - color: black; - color: var(--note-text); - overflow: auto; - } - - .note::before, .note > .marker, - details.note > summary { - color: hsl(120, 70%, 30%); - color: var(--noteheading-text); - } - /* Add .note::before { content: "Note "; } for autogen label, - or use class="marker" to mark up the label in source. */ - - details.note[open] > summary { - border-bottom: 1px silver solid; - border-bottom: 1px var(--notesummary-underline) solid; - } - -/** Assertion Box *************************************************************/ - /* for assertions in algorithms */ - - .assertion { - border-color: #AAA; - border-color: var(--assertion-border); - background: #EEE; - background: var(--assertion-bg); - color: black; - color: var(--assertion-text); - } - -/** Advisement Box ************************************************************/ - /* for attention-grabbing normative statements */ - - .advisement { - border-color: orange; - border-color: var(--advisement-border); - border-style: none solid; - background: #fec; - background: var(--advisement-bg); - color: black; - color: var(--advisement-text); - } - strong.advisement { - display: block; - text-align: center; - } - .advisement::before, .advisement > .marker { - color: #b35f00; - color: var(--advisementheading-text); - } - -/** Amendment Box *************************************************************/ - - .amendment, .correction, .addition { - border-color: #330099; - border-color: var(--amendment-border); - background: #F5F0FF; - background: var(--amendment-bg); - color: black; - color: var(--amendment-text); - } - .amendment.proposed, .correction.proposed, .addition.proposed { - border-style: solid; - border-block-width: 0.25em; - } - .amendment::before, .amendment > .marker, - details.amendment > summary::before, details.amendment > summary > .marker, - .correction::before, .correction > .marker, - details.correction > summary::before, details.correction > summary > .marker, - .addition::before, .addition > .marker, - details.addition > summary::before, details.addition > summary > .marker { - color: #220066; - color: var(--amendmentheading-text); - } - .amendment.proposed::before, .amendment.proposed > .marker, - details.amendment.proposed > summary::before, details.amendment.proposed > summary > .marker, - .correction.proposed::before, .correction.proposed > .marker, - details.correction.proposed > summary::before, details.correction.proposed > summary > .marker, - .addition.proposed::before, .addition.proposed > .marker, - details.addition.proposed > summary::before, details.addition.proposed > summary > .marker { - font-weight: bold; - } - -/** Spec Obsoletion Notice ****************************************************/ - /* obnoxious obsoletion notice for older/abandoned specs. */ - - details { - display: block; - } - summary { - font-weight: bolder; - } - - .annoying-warning:not(details), - details.annoying-warning:not([open]) > summary, - details.annoying-warning[open] { - background: hsla(40,100%,50%,0.95); - background: var(--warning-bg); - color: black; - color: var(--warning-text); - padding: .75em 1em; - border: red; - border: var(--warning-border); - border-style: solid none; - box-shadow: 0 2px 8px black; - text-align: center; - } - .annoying-warning :last-child { - margin-bottom: 0; - } - -@media not print { - details.annoying-warning[open] { - position: fixed; - left: 0; - right: 0; - bottom: 2em; - z-index: 1000; - } -} - - details.annoying-warning:not([open]) > summary { - text-align: center; - } - -/** Entity Definition Boxes ***************************************************/ - - .def { - padding: .5em 1em; - background: #def; - background: var(--def-bg); - margin: 1.2em 0; - border-left: 0.5em solid #8ccbf2; - border-left: 0.5em solid var(--def-border); - color: black; - color: var(--def-text); - } - -/******************************************************************************/ -/* Tables */ -/******************************************************************************/ - - th, td { - text-align: left; - text-align: start; - } - -/** Property/Descriptor Definition Tables *************************************/ - - table.def { - /* inherits .def box styling, see above */ - width: 100%; - border-spacing: 0; - } - - table.def td, - table.def th { - padding: 0.5em; - vertical-align: baseline; - border-bottom: 1px solid #bbd7e9; - border-bottom: 1px solid var(--defrow-border); - } - - table.def > tbody > tr:last-child th, - table.def > tbody > tr:last-child td { - border-bottom: 0; - } - - table.def th { - font-style: italic; - font-weight: normal; - padding-left: 1em; - width: 3em; - } - - /* For when values are extra-complex and need formatting for readability */ - table td.pre { - white-space: pre-wrap; - } - - /* A footnote at the bottom of a def table */ - table.def td.footnote { - padding-top: 0.6em; - } - table.def td.footnote::before { - content: " "; - display: block; - height: 0.6em; - width: 4em; - border-top: thin solid; - } - -/** Data tables (and properly marked-up index tables) *************************/ - /* - <table class="data"> highlights structural relationships in a table - when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute) - - Use class="complex data" for particularly complicated tables -- - (This will draw more lines: busier, but clearer.) - - Use class="long" on table cells with paragraph-like contents - (This will adjust text alignment accordingly.) - Alternately use class="longlastcol" on tables, to have the last column assume "long". - */ - - table { - word-wrap: normal; - overflow-wrap: normal; - hyphens: manual; - } - - table.data, - table.index { - margin: 1em auto; - border-collapse: collapse; - border: hidden; - width: 100%; - } - table.data caption, - table.index caption { - max-width: 50em; - margin: 0 auto 1em; - } - - table.data td, table.data th, - table.index td, table.index th { - padding: 0.5em 1em; - border-width: 1px; - border-color: silver; - border-color: var(--datacell-border); - border-top-style: solid; - } - - table.data thead td:empty { - padding: 0; - border: 0; - } - - table.data thead, - table.index thead, - table.data tbody, - table.index tbody { - border-bottom: 2px solid; - } - - table.data colgroup, - table.index colgroup { - border-left: 2px solid; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - border-right: 2px solid; - border-top: 1px solid silver; - border-top: 1px solid var(--datacell-border); - padding-right: 1em; - } - - table.data th[colspan], - table.data td[colspan] { - text-align: center; - } - - table.complex.data th, - table.complex.data td { - border: 1px solid silver; - border: 1px solid var(--datacell-border); - text-align: center; - } - - table.data.longlastcol td:last-child, - table.data td.long { - vertical-align: baseline; - text-align: left; - } - - table.data img { - vertical-align: middle; - } - - -/* -Alternate table alignment rules - - table.data, - table.index { - text-align: center; - } - - table.data thead th[scope="row"], - table.index thead th[scope="row"] { - text-align: right; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - text-align: right; - } - -Possible extra rowspan handling - - table.data tbody th[rowspan]:not([rowspan='1']), - table.index tbody th[rowspan]:not([rowspan='1']), - table.data tbody td[rowspan]:not([rowspan='1']), - table.index tbody td[rowspan]:not([rowspan='1']) { - border-left: 1px solid silver; - } - - table.data tbody th[rowspan]:first-child, - table.index tbody th[rowspan]:first-child, - table.data tbody td[rowspan]:first-child, - table.index tbody td[rowspan]:first-child{ - border-left: 0; - border-right: 1px solid silver; - } -*/ - -/******************************************************************************/ -/* Indices */ -/******************************************************************************/ - - -/** Table of Contents *********************************************************/ - - .toc a { - /* More spacing; use padding to make it part of the click target. */ - padding: 0.1rem 1px 0; - /* Larger, more consistently-sized click target */ - display: block; - /* Switch to using border-bottom for underlines */ - text-decoration: none; - border-bottom: 1px solid; - /* Reverse color scheme */ - color: black; - color: var(--toclink-text); - border-color: #3980b5; - border-color: var(--toclink-underline); - } - .toc a:visited { - color: black; - color: var(--toclink-visited-text); - border-color: #054572; - border-color: var(--toclink-visited-underline); - } - .toc a:focus, - .toc a:hover { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom-width: 3px; - margin-bottom: -2px; - } - .toc a:not(:focus):not(:hover) { - /* Allow colors to cascade through from link styling */ - border-bottom-color: transparent; - } - - .toc, .toc ol, .toc ul, .toc li { - list-style: none; /* Numbers must be inlined into source */ - /* because generated content isn't search/selectable and markers can't do multilevel yet */ - margin: 0; - padding: 0; - } - .toc { - line-height: 1.1em; - } - - /* ToC not indented until third level, but font style & margins show hierarchy */ - .toc > li { font-weight: bold; } - .toc > li li { font-weight: normal; } - .toc > li li li { font-size: 95%; } - .toc > li li li li { font-size: 90%; } - .toc > li li li li li { font-size: 85%; } - - /* @supports not (display:grid) { */ - .toc > li { margin: 1.5rem 0; } - .toc > li li { margin: 0.3rem 0; } - .toc > li li li { margin-left: 2rem; } - - /* Section numbers in a column of their own */ - .toc .secno { - float: left; - width: 4rem; - white-space: nowrap; - } - .toc > li li li li .secno { font-size: 85%; } - .toc > li li li li li .secno { font-size: 100%; } - - .toc li { - clear: both; - } - - :not(li) > .toc { margin-left: 5rem; } - .toc .secno { margin-left: -5rem; } - .toc > li li li .secno { margin-left: -7rem; } - .toc > li li li li .secno { margin-left: -9rem; } - .toc > li li li li li .secno { margin-left: -11rem; } - - /* Tighten up indentation in narrow ToCs */ - @media (max-width: 30em) { - :not(li) > .toc { margin-left: 4rem; } - .toc .secno { margin-left: -4rem; } - .toc > li li li { margin-left: 1rem; } - .toc > li li li .secno { margin-left: -5rem; } - .toc > li li li li .secno { margin-left: -6rem; } - .toc > li li li li li .secno { margin-left: -7rem; } - } - /* Loosen it on wide screens */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) :not(li) > .toc { margin-left: 4rem; } - body:not(.toc-inline) .toc .secno { margin-left: -4rem; } - body:not(.toc-inline) .toc > li li li { margin-left: 1rem; } - body:not(.toc-inline) .toc > li li li .secno { margin-left: -5rem; } - body:not(.toc-inline) .toc > li li li li .secno { margin-left: -6rem; } - body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; } - } - /* } */ - - @supports (display:grid) and (display:contents) { - /* Use #toc over .toc to override non-@supports rules. */ - #toc { - display: grid; - align-content: start; - grid-template-columns: auto 1fr; - grid-column-gap: 1rem; - column-gap: 1rem; - grid-row-gap: .6rem; - row-gap: .6rem; - } - #toc h2 { - grid-column: 1 / -1; - margin-bottom: 0; - } - #toc ol, - #toc li, - #toc a { - display: contents; - /* Switch <a> to subgrid when supported */ - } - #toc span { - margin: 0; - } - #toc > .toc > li > a > span { - /* The spans of the top-level list, - comprising the first items of each top-level section. */ - margin-top: 1.1rem; - } - #toc#toc .secno { /* Ugh, need more specificity to override base.css */ - grid-column: 1; - width: auto; - margin-left: 0; - } - #toc .content { - grid-column: 2; - width: auto; - margin-right: 1rem; - } - #toc .content:hover, - #toc .content:focus { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; - } - #toc li li li .content { - margin-left: 1rem; - } - #toc li li li li .content { - margin-left: 2rem; - } - } - - -/** Index *********************************************************************/ - - /* Index Lists: Layout */ - ul.index { margin-left: 0; columns: 15em; text-indent: 1em hanging; } - ul.index li { margin-left: 0; list-style: none; break-inside: avoid; } - ul.index li li { margin-left: 1em; } - ul.index dl { margin-top: 0; } - ul.index dt { margin: .2em 0 .2em 20px;} - ul.index dd { margin: .2em 0 .2em 40px;} - /* Index Lists: Typography */ - ul.index ul, - ul.index dl { font-size: smaller; } - @media not print { - ul.index li a + span { - white-space: nowrap; - color: transparent; } - ul.index li a:hover + span, - ul.index li a:focus + span { - color: #707070; - color: var(--indexinfo-text); - } - } - -/** Index Tables *****************************************************/ - /* See also the data table styling section, which this effectively subclasses */ - - table.index { - font-size: small; - border-collapse: collapse; - border-spacing: 0; - text-align: left; - margin: 1em 0; - } - - table.index td, - table.index th { - padding: 0.4em; - } - - table.index tr:hover td:not([rowspan]), - table.index tr:hover th:not([rowspan]) { - color: black; - color: var(--indextable-hover-text); - background: #f7f8f9; - background: var(--indextable-hover-bg); - } - - /* The link in the first column in the property table (formerly a TD) */ - table.index th:first-child a { - font-weight: bold; - } - -/** Outdated warning **********************************************************/ - -.outdated-spec { - color: black; - color: var(--outdatedspec-text); - background-color: rgba(0,0,0,0.5); - background-color: var(--outdatedspec-bg); -} - -.outdated-warning { - position: fixed; - bottom: 50%; - left: 0; - right: 0; - margin: 0 auto; - width: 50%; - background: maroon; - background: var(--outdated-bg); - color: white; - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - position: absolute; - top: 0; - right:0; - margin: 0; - border: 0; - padding: 0.25em 0.5em; - background: transparent; - color: white; - color: var(--outdated-text); - font:1em sans-serif; - text-align:center; -} - -.outdated-warning span { - display: block; -} - -.outdated-collapsed { - bottom: 0; - border-radius: 0; - width: 100%; - padding: 0; -} - -/******************************************************************************/ -/* Print */ -/******************************************************************************/ - - @media print { - /* Pages have their own margins. */ - html { - margin: 0; - } - /* Serif for print. */ - body { - font-family: serif; - } - - .outdated-warning { - position: absolute; - border-style: solid; - border-color: red; - } - - .outdated-warning input { - display: none; - } - } - @page { - margin: 1.5cm 1.1cm; - } - - - -/******************************************************************************/ -/* Overflow Control */ -/******************************************************************************/ - - .figure .caption, .sidefigure .caption, figcaption { - /* in case figure is overlarge, limit caption to 50em */ - max-width: 50rem; - margin-left: auto; - margin-right: auto; - } - .overlarge { - /* Magic to create good item positioning: - "content column" is 50ems wide at max; less on smaller screens. - Extra space (after ToC + content) is empty on the right. - - 1. When item < content column, centers item in column. - 2. When content < item < available, left-aligns. - 3. When item > available, fills available + scroll bar. - */ - display: grid; - grid-template-columns: minmax(0, 50em); - } - .overlarge > table { - /* limit preferred width of table */ - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - @media (min-width: 55em) { - .overlarge { - margin-right: calc(13px + 26.5rem - 50vw); - max-width: none; - } - } - @media screen and (min-width: 78em) { - body:not(.toc-inline) .overlarge { - /* 30.5em body padding 50em content area */ - margin-right: calc(40em - 50vw) !important; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) .overlarge { - /* 4em html margin 30.5em body padding 50em content area */ - margin-right: calc(84.5em - 100vw) !important; - } - } - - @media not print { - .overlarge { - overflow-x: auto; - /* See Lea Verou's explanation background-attachment: - * http://lea.verou.me/2012/04/background-attachment-local/ - * - background: top left / 4em 100% linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) local, - top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local, - top left / 1em 100% linear-gradient(to right, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - white; - background-repeat: no-repeat; - */ - } - } -</style> + <title>Box Tree API Level 1</title> + <meta content="DREAM" name="w3c-status"> + <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-DREAM" rel="stylesheet"> <link href="https://drafts.css-houdini.org/box-tree-api-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> + <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ .css.css, .property.property, .descriptor.descriptor { color: var(--a-normal-text); @@ -2172,37 +691,55 @@ </style> <body class="h-entry"> <div class="head"> - <p data-fill-with="logo"></p> + <p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p> <h1 class="p-name no-ref" id="title">Box Tree API Level 1</h1> - <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span class="content">A Collection of Interesting Ideas, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></span></h2> - <div data-fill-with="spec-metadata"> - <dl> - <dt>This version: - <dd><a class="u-url" href="https://drafts.css-houdini.org/box-tree-api-1/">https://drafts.css-houdini.org/box-tree-api-1/</a> - <dt>Feedback: - <dd><span><a href="mailto:public-houdini@w3.org?subject=%5Bbox-tree-api%5D%20YOUR%20TOPIC%20HERE">public-houdini@w3.org</a> with subject line “<kbd>[box-tree-api] <i data-lt>… message topic …</i></kbd>” (<a href="http://lists.w3.org/Archives/Public/public-houdini/" rel="discussion">archives</a>)</span> - <dt class="editor">Editors: - <dd class="editor p-author h-card vcard" data-editor-id="42199"><a class="p-name fn u-url url" href="http://xanthir.com/contact/">Tab Atkins-Bittner</a> (<span class="p-org org">Google</span>) - <dd class="editor p-author h-card vcard" data-editor-id="4200"><a class="p-name fn u-email email" href="mailto:peter.linss@hp.com">Peter Linss</a> - <dd class="editor p-author h-card vcard" data-editor-id="73001"><a class="p-name fn u-email email" href="mailto:ikilpatrick@chromium.org">Ian Kilpatrick</a> - <dd class="editor p-author h-card vcard" data-editor-id="49885"><a class="p-name fn u-email email" href="mailto:rossen.atanassov@microsoft.com">Rossen Atanassov</a> - <dt class="editor">Former Editor: - <dd class="editor p-author h-card vcard" data-editor-id="47691"><a class="p-name fn u-email email" href="mailto:shanestephens@google.com">Shane Stephens</a> - </dl> - </div> + <p id="w3c-state"><a href="https://www.w3.org/standards/types#DREAM">A Collection of Interesting Ideas</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <details open> + <summary>More details about this document</summary> + <div data-fill-with="spec-metadata"> + <dl> + <dt>This version: + <dd><a class="u-url" href="https://drafts.css-houdini.org/box-tree-api-1/">https://drafts.css-houdini.org/box-tree-api-1/</a> + <dt>Feedback: + <dd><span><a href="mailto:public-houdini@w3.org?subject=%5Bbox-tree-api%5D%20YOUR%20TOPIC%20HERE">public-houdini@w3.org</a> with subject line “<kbd>[box-tree-api] <i data-lt>… message topic …</i></kbd>” (<a href="http://lists.w3.org/Archives/Public/public-houdini/" rel="discussion">archives</a>)</span> + <dt class="editor">Editors: + <dd class="editor p-author h-card vcard" data-editor-id="42199"><a class="p-name fn u-url url" href="http://xanthir.com/contact/">Tab Atkins-Bittner</a> (<span class="p-org org">Google</span>) + <dd class="editor p-author h-card vcard" data-editor-id="4200"><a class="p-name fn u-email email" href="mailto:peter.linss@hp.com">Peter Linss</a> + <dd class="editor p-author h-card vcard" data-editor-id="73001"><a class="p-name fn u-email email" href="mailto:ikilpatrick@chromium.org">Ian Kilpatrick</a> + <dd class="editor p-author h-card vcard" data-editor-id="49885"><a class="p-name fn u-email email" href="mailto:rossen.atanassov@microsoft.com">Rossen Atanassov</a> + <dt class="editor">Former Editor: + <dd class="editor p-author h-card vcard" data-editor-id="47691"><a class="p-name fn u-email email" href="mailto:shanestephens@google.com">Shane Stephens</a> + </dl> + </div> + </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright -and related or neighboring rights to this work. -In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. -Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>Layout as described by CSS produces boxes that control how content is displayed and positioned. This specification describes an API for accessing information about these boxes.</p> </div> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> + <div data-fill-with="status"> + <p><em>This section describes the status of this document at the time of its publication. + A list of current W3C publications + and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> + <p>Please send feedback + by <a href="https://github.com/w3c/css-houdini-drafts/issues">filing issues in GitHub</a> (preferred), + including the spec code “box-tree-api” in the title, like this: + “[box-tree-api] <i>…summary of comment…</i>”. + All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. + Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bbox-tree-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. + W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; + that page also includes instructions for disclosing a patent. + An individual who has actual knowledge of a patent which the individual believes + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p></p> + </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> @@ -2440,7 +977,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-rfc2119">[RFC2119] diff --git a/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.console.txt index 458a91e1d7..e2cdc95116 100644 --- a/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.console.txt @@ -5,4 +5,6 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] diff --git a/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.html b/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.html index 4f6d584174..b864daa3f8 100644 --- a/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-animation-worklet-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Animation Worklet API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-animation-worklet-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -756,7 +755,7 @@ <h1 class="p-name no-ref" id="title">CSS Animation Worklet API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -774,7 +773,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-animation-worklet] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-animation-worklet%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2172,7 +2171,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-web-animations-1">[WEB-ANIMATIONS-1] <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/web-animations-1/"><cite>Web Animations</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-1/">https://drafts.csswg.org/web-animations-1/</a> <dt id="biblio-web-animations-2">[WEB-ANIMATIONS-2] - <dd>Web Animations Level 2 URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> + <dd>Brian Birtles; Robert Flack. <a href="https://drafts.csswg.org/web-animations-2/"><cite>Web Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> diff --git a/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.console.txt index e69de29bb2..a5aab19906 100644 --- a/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.console.txt @@ -0,0 +1,56 @@ +LINE ~357: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~378: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~388: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~399: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~404: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~1853: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~1979: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] +LINE ~1987: Multiple possible 'converting' dfn refs. +Arbitrarily chose https://infra.spec.whatwg.org/#javascript-string-convert +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:infra; type:dfn; for:string; text:convert +spec:infra; type:dfn; for:JavaScript string; text:convert +spec:handwriting-recognition; type:dfn; text:convert +[=converting=] diff --git a/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.html b/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.html index c1c293fed1..edf50ef602 100644 --- a/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-layout-api/Overview.html @@ -5,7 +5,6 @@ <title>CSS Layout API Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-layout-api-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -774,7 +773,7 @@ <h1 class="p-name no-ref" id="title">CSS Layout API Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -794,7 +793,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-layout-api] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-layout-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -931,7 +930,7 @@ <h2 class="heading settled" data-level="2" id="layout-api-containers"><span clas </div> <h3 class="heading settled" data-level="2.1" id="painting"><span class="secno">2.1. </span><span class="content">Layout API Container Painting</span><a class="self-link" href="#painting"></a></h3> <p><a data-link-type="dfn" href="#layout-api-container" id="ref-for-layout-api-container④">Layout API Container</a> children paint exactly the same as inline blocks <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>, except that -the order in which they are returned from the layout method (via <code class="idl"><a data-link-type="idl" href="#dom-fragmentresultoptions-childfragments" id="ref-for-dom-fragmentresultoptions-childfragments">childFragments</a></code>) is used in place of raw document order, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> values other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a>.</p> +the order in which they are returned from the layout method (via <code class="idl"><a data-link-type="idl" href="#dom-fragmentresultoptions-childfragments" id="ref-for-dom-fragmentresultoptions-childfragments">childFragments</a></code>) is used in place of raw document order, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> values other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a>.</p> <h3 class="heading settled" data-level="2.2" id="layout-api-box-tree"><span class="secno">2.2. </span><span class="content">Box Tree Transformations</span><a class="self-link" href="#layout-api-box-tree"></a></h3> <p>The inflow children of a <a data-link-type="dfn" href="#layout-api-container" id="ref-for-layout-api-container⑤">layout API container</a> can act in different ways depending on the value of <a data-link-type="dfn" href="#document-layout-definition-layout-options" id="ref-for-document-layout-definition-layout-options">layout options'</a> <code class="idl"><a data-link-type="idl" href="#dom-layoutoptions-childdisplay" id="ref-for-dom-layoutoptions-childdisplay">childDisplay</a></code> (set by <code>layoutOptions</code> on the class).</p> @@ -3419,11 +3418,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="37f0daea">inline size</span> <li><span class="dfn-paneled" id="466b2ed9">inline-start</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d332e4ec">auto</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS3-DISPLAY]</a> defines the following terms: @@ -3511,13 +3514,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-page-floats-3">[CSS-PAGE-FLOATS-3] @@ -3529,11 +3532,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-css21">[CSS21] @@ -3541,7 +3544,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-display">[CSS3-DISPLAY] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-dom">[DOM] @@ -3560,7 +3563,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] - <dd>CSS Shapes Module Level 2 URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def"><c- b>partial</c-> <c- b>namespace</c-> <a class="idl-code" data-link-type="namespace" href="https://drafts.csswg.org/cssom-1/#namespacedef-css"><c- g>CSS</c-></a> { @@ -3941,6 +3944,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "4739df91": {"dfnID":"4739df91","dfnText":"typeerror","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-native-error-types-used-in-this-standard-typeerror"},{"id":"ref-for-sec-native-error-types-used-in-this-standard-typeerror\u2460"}],"title":"3.2. Registering A Layout"},{"refs":[{"id":"ref-for-sec-native-error-types-used-in-this-standard-typeerror\u2461"},{"id":"ref-for-sec-native-error-types-used-in-this-standard-typeerror\u2462"}],"title":"6.2. Performing Layout"}],"url":"https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-typeerror"}, "527b10aa": {"dfnID":"527b10aa","dfnText":"get","external":true,"refSections":[{"refs":[{"id":"ref-for-map-get"}],"title":"3.2. Registering A Layout"},{"refs":[{"id":"ref-for-map-get\u2460"}],"title":"4.1.1. LayoutChildren and the Box Tree"},{"refs":[{"id":"ref-for-map-get\u2461"}],"title":"6.2.4. Utility Algorithms"}],"url":"https://infra.spec.whatwg.org/#map-get"}, "53275e46": {"dfnID":"53275e46","dfnText":"append","external":true,"refSections":[{"refs":[{"id":"ref-for-list-append"},{"id":"ref-for-list-append\u2460"}],"title":"4.1. Layout Children"},{"refs":[{"id":"ref-for-list-append\u2461"}],"title":"6.2.1. Determining Intrinsic Sizes"},{"refs":[{"id":"ref-for-list-append\u2462"}],"title":"6.2.2. Generating Fragments"}],"url":"https://infra.spec.whatwg.org/#list-append"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"2.1. Layout API Container Painting"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "5568b839": {"dfnID":"5568b839","dfnText":"blockification","external":true,"refSections":[{"refs":[{"id":"ref-for-blockify"},{"id":"ref-for-blockify\u2460"}],"title":"2.2. Box Tree Transformations"},{"refs":[{"id":"ref-for-blockify\u2461"},{"id":"ref-for-blockify\u2462"}],"title":"4.1. Layout Children"}],"url":"https://drafts.csswg.org/css-display-4/#blockify"}, "5722daa9": {"dfnID":"5722daa9","dfnText":"box","external":true,"refSections":[{"refs":[{"id":"ref-for-box"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-box\u2460"},{"id":"ref-for-box\u2461"},{"id":"ref-for-box\u2462"},{"id":"ref-for-box\u2463"},{"id":"ref-for-box\u2464"},{"id":"ref-for-box\u2465"}],"title":"3.2. Registering A Layout"},{"refs":[{"id":"ref-for-box\u2466"},{"id":"ref-for-box\u2467"}],"title":"3.3. Terminology"},{"refs":[{"id":"ref-for-box\u2468"},{"id":"ref-for-box\u2460\u24ea"}],"title":"4.1. Layout Children"},{"refs":[{"id":"ref-for-box\u2460\u2460"},{"id":"ref-for-box\u2460\u2461"},{"id":"ref-for-box\u2460\u2462"},{"id":"ref-for-box\u2460\u2463"}],"title":"4.1.1. LayoutChildren and the Box Tree"},{"refs":[{"id":"ref-for-box\u2460\u2464"}],"title":"4.3. Intrinsic Sizes"},{"refs":[{"id":"ref-for-box\u2460\u2465"}],"title":"4.6. Edges"},{"refs":[{"id":"ref-for-box\u2460\u2466"}],"title":"6.1. Processing Model"},{"refs":[{"id":"ref-for-box\u2460\u2467"},{"id":"ref-for-box\u2460\u2468"}],"title":"6.2. Performing Layout"},{"refs":[{"id":"ref-for-box\u2461\u24ea"}],"title":"6.2.1. Determining Intrinsic Sizes"},{"refs":[{"id":"ref-for-box\u2461\u2460"}],"title":"6.2.2. Generating Fragments"},{"refs":[{"id":"ref-for-box\u2461\u2461"}],"title":"6.2.4. Utility Algorithms"}],"url":"https://drafts.csswg.org/css-display-3/#box"}, "5778d843": {"dfnID":"5778d843","dfnText":"inline","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline"},{"id":"ref-for-valdef-display-inline\u2460"}],"title":"2.2. Box Tree Transformations"}],"url":"https://drafts.csswg.org/css-display-3/#valdef-display-inline"}, @@ -3997,7 +4001,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "breaktoken": {"dfnID":"breaktoken","dfnText":"BreakToken","external":false,"refSections":[{"refs":[{"id":"ref-for-breaktoken"}],"title":"6.2.2. Generating Fragments"},{"refs":[{"id":"ref-for-breaktoken\u2460"},{"id":"ref-for-breaktoken\u2461"}],"title":"7. Examples"}],"url":"#breaktoken"}, "c43fb743": {"dfnID":"c43fb743","dfnText":"function","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-terms-and-definitions-function"},{"id":"ref-for-sec-terms-and-definitions-function\u2460"}],"title":"3.1. Concepts"},{"refs":[{"id":"ref-for-sec-terms-and-definitions-function\u2461"},{"id":"ref-for-sec-terms-and-definitions-function\u2462"}],"title":"3.2. Registering A Layout"}],"url":"https://tc39.github.io/ecma262/#sec-terms-and-definitions-function"}, "c4df1374": {"dfnID":"c4df1374","dfnText":"type","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-ecmascript-data-types-and-values"}],"title":"3.2. Registering A Layout"}],"url":"https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"2.1. Layout API Container Painting"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "ca960d4f": {"dfnID":"ca960d4f","dfnText":"block formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-block-formatting-context"},{"id":"ref-for-block-formatting-context\u2460"}],"title":"5.1. Sizing"}],"url":"https://drafts.csswg.org/css-display-4/#block-formatting-context"}, "cae6bf57": {"dfnID":"cae6bf57","dfnText":"InvalidModificationError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidmodificationerror"}],"title":"3.2. Registering A Layout"}],"url":"https://webidl.spec.whatwg.org/#invalidmodificationerror"}, "cbdc89b4": {"dfnID":"cbdc89b4","dfnText":"while","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-while"}],"title":"6.2.4. Utility Algorithms"}],"url":"https://infra.spec.whatwg.org/#iteration-while"}, @@ -4757,7 +4760,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-writing-modes-4/#block-start": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"block-start","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#block-start"}, "https://drafts.csswg.org/css-writing-modes-4/#inline-size": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"inline size","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "https://drafts.csswg.org/css-writing-modes-4/#inline-start": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"inline-start","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#inline-start"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-z-index-auto": {"export":true,"for_":["z-index"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-z-index-auto"}, "https://drafts.csswg.org/cssom-1/#namespacedef-css": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSS","type":"namespace","url":"https://drafts.csswg.org/cssom-1/#namespacedef-css"}, "https://drafts.csswg.org/cssom-1/#supported-css-property": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"supported css property","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#supported-css-property"}, @@ -4811,6 +4813,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#notsupportederror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"NotSupportedError","type":"exception","url":"https://webidl.spec.whatwg.org/#notsupportederror"}, "https://www.w3.org/TR/CSS21/box.html#box-dimensions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-layout-api","spec":"","status":"anchor-block","text":"box model edges","type":"dfn","url":"https://www.w3.org/TR/CSS21/box.html#box-dimensions"}, "https://www.w3.org/TR/CSS21/visudet.html#static-position": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-layout-api","spec":"","status":"anchor-block","text":"static position","type":"dfn","url":"https://www.w3.org/TR/CSS21/visudet.html#static-position"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/css-houdini-drafts/css-paint-api/Overview.html b/tests/github/w3c/css-houdini-drafts/css-paint-api/Overview.html index 893c2acaf7..60ea7f3ab4 100644 --- a/tests/github/w3c/css-houdini-drafts/css-paint-api/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-paint-api/Overview.html @@ -5,7 +5,6 @@ <title>CSS Painting API Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/css-paint-api-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -998,7 +997,7 @@ <h1 class="p-name no-ref" id="title">CSS Painting API Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1019,7 +1018,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-paint-api] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-paint-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2188,27 +2187,27 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-properties-values-api-1">[CSS-PROPERTIES-VALUES-API-1] - <dd>Tab Atkins Jr.; et al. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> + <dd>Tab Atkins Jr.; Alan Stearns; Greg Whitworth. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-css-ui-4">[CSS-UI-4] <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-cssom-view-1">[CSSOM-VIEW-1] @@ -2264,7 +2263,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-css-paintworklet"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/paintWorklet" title="The static, read-only paintWorklet property of the CSS interface provides access to the PaintWorklet, which programmatically generates an image where a CSS property expects a file.">CSS/paintWorklet</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/paintWorklet_static" title="The static, read-only paintWorklet property of the CSS interface provides access to the paint worklet, which programmatically generates an image where a CSS property expects a file.">CSS/paintWorklet_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>65+</span></span> @@ -2280,7 +2279,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-paintworkletglobalscope-devicepixelratio"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PaintWorklet/devicePixelRatio" title="The PaintWorkletGlobalScope.devicePixelRatio read-only property of the PaintWorklet interface returns the current device&apos;s ratio of physical pixels to logical pixels.">PaintWorklet/devicePixelRatio</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PaintWorkletGlobalScope/devicePixelRatio" title="The read-only devicePixelRatio read-only property of the PaintWorkletGlobalScope interface returns the current device&apos;s ratio of physical pixels to logical pixels.">PaintWorkletGlobalScope/devicePixelRatio</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>65+</span></span> @@ -2296,7 +2295,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-paintworkletglobalscope-registerpaint"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PaintWorklet/registerPaint" title="The PaintWorkletGlobalScope.registerPaint() method of the PaintWorklet interface registers a class programmatically generate an image where a CSS property expects a file.">PaintWorklet/registerPaint</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PaintWorkletGlobalScope/registerPaint" title="The registerPaint() method of the PaintWorkletGlobalScope interface registers a class to programmatically generate an image where a CSS property expects a file.">PaintWorkletGlobalScope/registerPaint</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>65+</span></span> @@ -2312,7 +2311,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="paintworkletglobalscope"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PaintWorklet" title="The PaintWorklet interface of the CSS Painting API programmatically generates an image where a CSS property expects a file. Access this interface through CSS.paintWorklet.">PaintWorklet</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PaintWorkletGlobalScope" title="The PaintWorkletGlobalScope interface of the CSS Painting API represents the global object available inside a paint Worklet.">PaintWorkletGlobalScope</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>65+</span></span> diff --git a/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.console.txt index e69de29bb2..8d40d41fcb 100644 --- a/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.console.txt @@ -0,0 +1 @@ +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.html b/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.html index 5746c0281e..a63dc9a5e7 100644 --- a/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-parser-api/Overview.html @@ -5,7 +5,6 @@ <title>CSS Parser API</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.css-houdini.org/css-parser-api/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -426,7 +425,7 @@ <h1 class="p-name no-ref" id="title">CSS Parser API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -446,12 +445,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-parser-api] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-parser-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/css-houdini-drafts/css-properties-values-api/Overview.html b/tests/github/w3c/css-houdini-drafts/css-properties-values-api/Overview.html index d16d10886f..4abd60084d 100644 --- a/tests/github/w3c/css-houdini-drafts/css-properties-values-api/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-properties-values-api/Overview.html @@ -5,7 +5,6 @@ <title>CSS Properties and Values API Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-properties-values-api-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -989,7 +988,7 @@ <h1 class="p-name no-ref" id="title">CSS Properties and Values API Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1008,7 +1007,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-properties-values-api] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-properties-values-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1213,7 +1212,7 @@ <h3 class="heading settled" data-level="2.3" id="specified-value"><span class="s <p>Just like unregistered <a data-link-type="dfn" href="https://drafts.csswg.org/css-variables-2/#custom-property" id="ref-for-custom-property⑦">custom properties</a>, all <a data-link-type="dfn" href="#registered-custom-property" id="ref-for-registered-custom-property④">registered custom properties</a>, regardless of registered syntax, accept the <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-wide-keywords" id="ref-for-css-wide-keywords">CSS-wide keywords</a>, -such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit" id="ref-for-valdef-all-inherit">inherit</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-4/#valdef-all-revert" id="ref-for-valdef-all-revert">revert</a>. +such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit" id="ref-for-valdef-all-inherit">inherit</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-revert" id="ref-for-valdef-all-revert">revert</a>. Their behavior is defined in <a href="https://drafts.csswg.org/css-cascade-4/#defaulting-keywords"><cite>CSS Cascading 4</cite> § 7.3 Explicit Defaulting</a>.</p> <h3 class="heading settled" data-level="2.4" id="calculation-of-computed-values"><span class="secno">2.4. </span><span class="content"><a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value">Computed Value</a>-Time Behavior</span><a class="self-link" href="#calculation-of-computed-values"></a></h3> <p>The <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value①">computed value</a> of a <a data-link-type="dfn" href="#registered-custom-property" id="ref-for-registered-custom-property⑤">registered custom property</a> is determined by the syntax of its <a data-link-type="dfn" href="#custom-property-registration" id="ref-for-custom-property-registration">registration</a>.</p> @@ -2220,17 +2219,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> - <li> - <a data-link-type="biblio">[CSS-CASCADE-4]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="a8ac6f1b">revert</span> - </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="9cd25054">computed value</span> <li><span class="dfn-paneled" id="c388d253">inherit</span> <li><span class="dfn-paneled" id="9ea6bed2">initial value</span> + <li><span class="dfn-paneled" id="bef88b2d">revert</span> <li><span class="dfn-paneled" id="1cf918c1">specified value</span> <li><span class="dfn-paneled" id="9e004c39">unset</span> </ul> @@ -2418,25 +2413,25 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables">[CSS-VARIABLES] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-variables/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-variables/">https://drafts.csswg.org/css-variables/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-values">[CSS3-VALUES] @@ -2459,13 +2454,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-layout-api-1">[CSS-LAYOUT-API-1] <dd>Greg Whitworth; et al. <a href="https://drafts.css-houdini.org/css-layout-api-1/"><cite>CSS Layout API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-layout-api-1/">https://drafts.css-houdini.org/css-layout-api-1/</a> <dt id="biblio-css-paint-api-1">[CSS-PAINT-API-1] <dd>Ian Kilpatrick; Dean Jackson. <a href="https://drafts.css-houdini.org/css-paint-api-1/"><cite>CSS Painting API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-paint-api-1/">https://drafts.css-houdini.org/css-paint-api-1/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css3-transitions">[CSS3-TRANSITIONS] <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-transitions/"><cite>CSS Transitions</cite></a>. URL: <a href="https://drafts.csswg.org/css-transitions/">https://drafts.csswg.org/css-transitions/</a> </dl> @@ -2522,12 +2517,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content becomes more consistently defined. <a href="https://github.com/w3c/css-houdini-drafts/issues/939">[Issue #939]</a> <a class="issue-return" href="#issue-14fa952d" title="Jump to section">↵</a></div> </div> <details class="mdn-anno unpositioned" data-anno-for="the-registerproperty-function"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/registerProperty" title="The CSS.registerProperty() method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.">CSS/registerProperty</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/registerProperty_static" title="The CSS.registerProperty() static method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.">CSS/registerProperty_static</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2538,12 +2533,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csspropertyrule-inherits"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule/inherits" title="The read-only inherits property of the CSSPropertyRule interface returns the inherit flag of the custom property registration represented by the @property rule, a boolean describing whether or not the property inherits by default.">CSSPropertyRule/inherits</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2554,12 +2549,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csspropertyrule-initialvalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule/initialValue" title="The read-only initialValue nullable property of the CSSPropertyRule interface returns the initial value of the custom property registration represented by the @property rule, controlling the property&apos;s initial value.">CSSPropertyRule/initialValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2570,12 +2565,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csspropertyrule-name"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule/name" title="The read-only name property of the CSSPropertyRule interface represents the property name, this being the serialization of the name given to the custom property in the @property rule&apos;s prelude.">CSSPropertyRule/name</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2586,12 +2581,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csspropertyrule-syntax"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule/syntax" title="The read-only syntax property of the CSSPropertyRule interface returns the literal syntax of the custom property registration represented by the @property rule, controlling how the property&apos;s value is parsed at computed-value time.">CSSPropertyRule/syntax</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2602,12 +2597,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-css-property-rule-interface"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule" title="The CSSPropertyRule interface of the CSS_Properties_and_Values_API represents a single CSS @property rule.">CSSPropertyRule</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPropertyRule" title="The CSSPropertyRule interface of the CSS Properties and Values API represents a single CSS @property rule.">CSSPropertyRule</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2618,12 +2613,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="inherits-descriptor"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@property/inherits" title="The inherits CSS descriptor is required when using the @property at-rule and controls whether the custom property registration specified by @property inherits by default.">@property/inherits</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2634,12 +2629,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="initial-value-descriptor"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@property/initial-value" title="The initial-value CSS descriptor is required when using the @property at-rule unless the syntax accepts any valid token stream. It sets the initial-value for the property.">@property/initial-value</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2650,12 +2645,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-syntax-descriptor"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@property/syntax" title="The syntax CSS descriptor is required when using the @property at-rule and describes the allowable syntax for the property.">@property/syntax</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2666,12 +2661,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="at-property-rule"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@property" title="The @property CSS at-rule is part of the CSS Houdini umbrella of APIs, it allows developers to explicitly define their css custom properties, allowing for property type checking, setting default values, and define whether a property can inherit values or not.">@property</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@property" title="The @property CSS at-rule is part of the CSS Houdini umbrella of APIs. It allows developers to explicitly define their CSS custom properties, allowing for property type checking and constraining, setting default values, and defining whether a custom property can inherit values or not.">@property</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -2949,7 +2944,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a3b18719": {"dfnID":"a3b18719","dfnText":"append (for set)","external":true,"refSections":[{"refs":[{"id":"ref-for-set-append"}],"title":"4.1. The registerProperty() Function"}],"url":"https://infra.spec.whatwg.org/#set-append"}, "a43c62be": {"dfnID":"a43c62be","dfnText":"CSS","external":true,"refSections":[{"refs":[{"id":"ref-for-namespacedef-css"}],"title":"4. Registering Custom Properties in JS"}],"url":"https://drafts.csswg.org/cssom-1/#namespacedef-css"}, "a63375cb": {"dfnID":"a63375cb","dfnText":"<dimension-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dimension-token"}],"title":"2.7. Substitution via var()"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-dimension-token"}, -"a8ac6f1b": {"dfnID":"a8ac6f1b","dfnText":"revert","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-revert"}],"title":"2.3. Specified Value-Time Behavior"}],"url":"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert"}, "ac54fbff": {"dfnID":"ac54fbff","dfnText":"line-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-height"}],"title":"2.7.2. Dependency Cycles via Relative Units"}],"url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "ae8def21": {"dfnID":"ae8def21","dfnText":"contain (for list)","external":true,"refSections":[{"refs":[{"id":"ref-for-list-contain"}],"title":"2.1. Determining the Registration"}],"url":"https://infra.spec.whatwg.org/#list-contain"}, "at-ruledef-property": {"dfnID":"at-ruledef-property","dfnText":"@property","external":false,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-property"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-at-ruledef-property\u2460"},{"id":"ref-for-at-ruledef-property\u2461"}],"title":"2. Registered Custom Properties"},{"refs":[{"id":"ref-for-at-ruledef-property\u2462"}],"title":"2.1. Determining the Registration"},{"refs":[{"id":"ref-for-at-ruledef-property\u2463"},{"id":"ref-for-at-ruledef-property\u2464"},{"id":"ref-for-at-ruledef-property\u2465"},{"id":"ref-for-at-ruledef-property\u2466"},{"id":"ref-for-at-ruledef-property\u2467"},{"id":"ref-for-at-ruledef-property\u2468"},{"id":"ref-for-at-ruledef-property\u2460\u24ea"},{"id":"ref-for-at-ruledef-property\u2460\u2460"},{"id":"ref-for-at-ruledef-property\u2460\u2461"}],"title":"3. The @property Rule"},{"refs":[{"id":"ref-for-at-ruledef-property\u2460\u2462"},{"id":"ref-for-at-ruledef-property\u2460\u2463"},{"id":"ref-for-at-ruledef-property\u2460\u2464"},{"id":"ref-for-at-ruledef-property\u2460\u2465"}],"title":"3.1. The syntax Descriptor"},{"refs":[{"id":"ref-for-at-ruledef-property\u2460\u2466"},{"id":"ref-for-at-ruledef-property\u2460\u2467"},{"id":"ref-for-at-ruledef-property\u2460\u2468"},{"id":"ref-for-at-ruledef-property\u2461\u24ea"}],"title":"3.2. The inherits Descriptor"},{"refs":[{"id":"ref-for-at-ruledef-property\u2461\u2460"},{"id":"ref-for-at-ruledef-property\u2461\u2461"},{"id":"ref-for-at-ruledef-property\u2461\u2462"},{"id":"ref-for-at-ruledef-property\u2461\u2463"}],"title":"3.3. The initial-value Descriptor"},{"refs":[{"id":"ref-for-at-ruledef-property\u2461\u2464"},{"id":"ref-for-at-ruledef-property\u2461\u2465"},{"id":"ref-for-at-ruledef-property\u2461\u2466"},{"id":"ref-for-at-ruledef-property\u2461\u2467"},{"id":"ref-for-at-ruledef-property\u2461\u2468"}],"title":"6.1. The CSSPropertyRule Interface"},{"refs":[{"id":"ref-for-at-ruledef-property\u2462\u24ea"}],"title":"7.2. Example 2: Using @property to register a property"}],"url":"#at-ruledef-property"}, @@ -2958,6 +2952,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b5eb4a2a": {"dfnID":"b5eb4a2a","dfnText":"by computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-by-computed-value"}],"title":"2.5. Animation Behavior"}],"url":"https://drafts.csswg.org/web-animations-1/#by-computed-value"}, "b66e28f1": {"dfnID":"b66e28f1","dfnText":"reify an identifier","external":true,"refSections":[{"refs":[{"id":"ref-for-reify-an-identifier"}],"title":"6.2. CSSStyleValue Reification"}],"url":"https://drafts.css-houdini.org/css-typed-om-1/#reify-an-identifier"}, "be2d2b4c": {"dfnID":"be2d2b4c","dfnText":"SyntaxError","external":true,"refSections":[{"refs":[{"id":"ref-for-syntaxerror"},{"id":"ref-for-syntaxerror\u2460"},{"id":"ref-for-syntaxerror\u2461"},{"id":"ref-for-syntaxerror\u2462"},{"id":"ref-for-syntaxerror\u2463"},{"id":"ref-for-syntaxerror\u2464"}],"title":"4.1. The registerProperty() Function"}],"url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"bef88b2d": {"dfnID":"bef88b2d","dfnText":"revert","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-revert"}],"title":"2.3. Specified Value-Time Behavior"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert"}, "bf7aa8ab": {"dfnID":"bf7aa8ab","dfnText":"whitespace","external":true,"refSections":[{"refs":[{"id":"ref-for-whitespace"}],"title":"5.4.2. Consume a Syntax Definition"},{"refs":[{"id":"ref-for-whitespace\u2460"}],"title":"5.4.3. Consume a Syntax Component"}],"url":"https://drafts.csswg.org/css-syntax-3/#whitespace"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"}],"title":"2.6. Conditional Rules"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "c388d253": {"dfnID":"c388d253","dfnText":"inherit","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-inherit"}],"title":"2.3. Specified Value-Time Behavior"},{"refs":[{"id":"ref-for-valdef-all-inherit\u2460"},{"id":"ref-for-valdef-all-inherit\u2461"},{"id":"ref-for-valdef-all-inherit\u2462"}],"title":"4.1. The registerProperty() Function"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, @@ -3405,7 +3400,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#resolution-value": "Expands to: dpcm | dpi | dppx | x", @@ -3527,17 +3522,17 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.css-houdini.org/css-typed-om-1/#reify-a-transform-list": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-typed-om","spec":"css-typed-om-1","status":"current","text":"reify a <transform-list>","type":"dfn","url":"https://drafts.css-houdini.org/css-typed-om-1/#reify-a-transform-list"}, "https://drafts.css-houdini.org/css-typed-om-1/#reify-an-identifier": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-typed-om","spec":"css-typed-om-1","status":"current","text":"reify an identifier","type":"dfn","url":"https://drafts.css-houdini.org/css-typed-om-1/#reify-an-identifier"}, "https://drafts.css-houdini.org/css-typed-om-1/#reify-as-a-cssstylevalue": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-typed-om","spec":"css-typed-om-1","status":"current","text":"reify as a cssstylevalue","type":"dfn","url":"https://drafts.css-houdini.org/css-typed-om-1/#reify-as-a-cssstylevalue"}, -"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert": {"export":true,"for_":["all"],"level":"4","normative":true,"shortname":"css-cascade","spec":"css-cascade-4","status":"current","text":"revert","type":"value","url":"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert"}, "https://drafts.csswg.org/css-cascade-5/#computed-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"computed value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "https://drafts.csswg.org/css-cascade-5/#initial-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"initial value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#initial-value"}, "https://drafts.csswg.org/css-cascade-5/#specified-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"specified value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"inherit","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, +"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"revert","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-unset": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"unset","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-unset"}, "https://drafts.csswg.org/css-cascade-6/#cascade": {"export":true,"for_":[],"level":"6","normative":true,"shortname":"css-cascade","spec":"css-cascade-6","status":"current","text":"cascade","type":"dfn","url":"https://drafts.csswg.org/css-cascade-6/#cascade"}, "https://drafts.csswg.org/css-color-4/#propdef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"color","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-black": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"black","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-black"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-blue": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"blue","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-blue"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-red": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"red","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-black": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"black","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-black"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-blue": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"blue","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-blue"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-red": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"red","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@supports","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "https://drafts.csswg.org/css-fonts-4/#propdef-font-size": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"font-size","type":"property","url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, diff --git a/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.console.txt index b1b2b5fffa..c653805840 100644 --- a/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.console.txt @@ -1,5 +1,60 @@ -WARNING: You used Status: DREAM for a W3C document. Consider UD instead. +WARNING: You used Status:DREAM for a W3C document. Consider Status:UD instead. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. +WARNING: No 'dom-css-hz' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-q' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-ch' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cm' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-deg' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dpcm' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dpi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dppx' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-em' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-ex' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-fr' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-grad' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-in' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-khz' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-mm' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-ms' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-number' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-pc' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-percent' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-pt' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-px' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-rad' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-rem' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-s' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-turn' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-vb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-vh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-vi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-vmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-vmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-vw' ID found, skipping MDN features that would target it. WARNING: No 'imagevalue-objects' ID found, skipping MDN features that would target it. WARNING: No 'dom-csskeywordvalue-csskeywordvalue' ID found, skipping MDN features that would target it. WARNING: No 'dom-csskeywordvalue-value' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.html b/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.html index 228ed619c2..2aa3d0c58f 100644 --- a/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-typed-om-2/Overview.html @@ -1,1494 +1,13 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>CSS Typed OM Level 2</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> -<style data-fill-with="stylesheet">/****************************************************************************** - * Style sheet for the W3C specifications * - * - * Special classes handled by this style sheet include: - * - * Indices - * - .toc for the Table of Contents (<ol class="toc">) - * + <span class="secno"> for the section numbers - * - #toc for the Table of Contents (<nav id="toc">) - * - ul.index for Indices (<a href="#ref">term</a><span>, in § N.M</span>) - * - table.index for Index Tables (e.g. for properties or elements) - * - * Structural Markup - * - table.data for general data tables - * -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results ! - * -> use <table class='complex data'> for extra-complex tables - * -> use <td class='long'> for paragraph-length cell content - * -> use <td class='pre'> when manual line breaks/indentation would help readability - * - dl.switch for switch statements - * - ol.algorithm for algorithms (helps to visualize nesting) - * - .figure and .caption (HTML4) and figure and figcaption (HTML5) - * -> .sidefigure for right-floated figures - * - ins/del - * -> ins/del.c### for candidate and proposed changes (amendments) - * - * Code - * - pre and code - * - * Special Sections - * - .note for informative notes (div, p, span, aside, details) - * - .example for informative examples (div, p, pre, span) - * - .issue for issues (div, p, span) - * - .advisement for loud normative statements (div, p, strong) - * - .annoying-warning for spec obsoletion notices (div, aside, details) - * - .correction for "candidate corrections" (div, aside, details, section) - * - .addition for "candidate additions" (div, aside, details, section) - * - .correction.proposed for "proposed corrections" (div, aside, details, section) - * - .addition.proposed for "proposed additions" (div, aside, details, section) - * - * Definition Boxes - * - pre.def for WebIDL definitions - * - table.def for tables that define other entities (e.g. CSS properties) - * - dl.def for definition lists that define other entitles (e.g. HTML elements) - * - * Numbering - * - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>) - * - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>) - * - ::before styled for CSS-generated issue/example/figure numbers: - * -> Documents wishing to use this only need to add - * figcaption::before, - * .caption::before { content: "Figure " counter(figure) " "; } - * .example::before { content: "Example " counter(example) " "; } - * .issue::before { content: "Issue " counter(issue) " "; } - * - * Header Stuff (ignore, just don't conflict with these classes) - * - .head for the header - * - .copyright for the copyright - * - * Outdated warning for old specs - * - * Miscellaneous - * - .overlarge for things that should be as wide as possible, even if - * that overflows the body text area. This can be used on an item or - * on its container, depending on the effect desired. - * Note that this styling basically doesn't help at all when printing, - * since A4 paper isn't much wider than the max-width here. - * It's better to design things to fit into a narrower measure if possible. - * - * - js-added ToC jump links (see fixup.js) - * - ******************************************************************************/ - -/* color variables included separately for reliability */ - -/******************************************************************************/ -/* Body */ -/******************************************************************************/ - - html { - } - - body { - counter-reset: example figure issue; - - /* Layout */ - max-width: 50em; /* limit line length to 50em for readability */ - margin: 0 auto; /* center text within page */ - padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */ - padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */ - - /* Typography */ - line-height: 1.5; - font-family: sans-serif; - widows: 2; - orphans: 2; - word-wrap: break-word; - overflow-wrap: break-word; - hyphens: auto; - - color: black; - color: var(--text); - background: white top left fixed no-repeat; - background: var(--bg) top left fixed no-repeat; - background-size: 25px auto; - } - - -/******************************************************************************/ -/* Front Matter & Navigation */ -/******************************************************************************/ - -/** Header ********************************************************************/ - - div.head { margin-bottom: 1em; } - div.head hr { border-style: solid; } - - div.head h1 { - font-weight: bold; - margin: 0 0 .1em; - font-size: 220%; - } - - div.head h2 { margin-bottom: 1.5em;} - -/** W3C Logo ******************************************************************/ - - .head .logo { - float: right; - margin: 0.4rem 0 0.2rem .4rem; - } - - .head img[src*="logos/W3C"] { - display: block; - border: solid #1a5e9a; - border: solid var(--logo-bg); - border-width: .65rem .7rem .6rem; - border-radius: .4rem; - background: #1a5e9a; - background: var(--logo-bg); - color: white; - color: var(--logo-text); - font-weight: bold; - } - - .head a:hover > img[src*="logos/W3C"], - .head a:focus > img[src*="logos/W3C"] { - opacity: .8; - } - - .head a:active > img[src*="logos/W3C"] { - background: #c00; - background: var(--logo-active-bg); - border-color: #c00; - border-color: var(--logo-active-bg); - } - - /* see also additional rules in Link Styling section */ - -/** Copyright *****************************************************************/ - - p.copyright, - p.copyright small { font-size: small; } - -/** Back to Top / ToC Toggle **************************************************/ - - @media print { - #toc-nav { - display: none; - } - } - @media not print { - #toc-nav { - position: fixed; - z-index: 3; - bottom: 0; left: 0; - margin: 0; - min-width: 1.33em; - border-top-right-radius: 2rem; - box-shadow: 0 0 2px; - font-size: 1.5em; - } - #toc-nav > a { - display: block; - white-space: nowrap; - - height: 1.33em; - padding: .1em 0.3em; - margin: 0; - - box-shadow: 0 0 2px; - border: none; - border-top-right-radius: 1.33em; - - color: #707070; - color: var(--tocnav-normal-text); - background: white; - background: var(--tocnav-normal-bg); - } - #toc-nav > a:hover, - #toc-nav > a:focus { - color: black; - color: var(--tocnav-hover-text); - background: #f8f8f8; - background: var(--tocnav-hover-bg); - } - #toc-nav > a:active { - color: #c00; - color: var(--tocnav-active-text); - background: white; - background: var(--tocnav-active-bg); - } - - #toc-nav > #toc-jump { - padding-bottom: 2em; - margin-bottom: -1.9em; - } - - /* statusbar gets in the way on keyboard focus; remove once browsers fix */ - #toc-nav > a[href="#toc"]:not(:hover):focus:last-child { - padding-bottom: 1.5rem; - } - - #toc-nav:not(:hover) > a:not(:focus) > span + span { - /* Ideally this uses :focus-within on #toc-nav */ - display: none; - } - #toc-nav > a > span + span { - padding-right: 0.2em; - } - } - -/** ToC Sidebar ***************************************************************/ - - /* Floating sidebar */ - @media screen { - body.toc-sidebar #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - max-width: 80%; - max-width: calc(100% - 2em - 26px); - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body.toc-sidebar #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - body.toc-sidebar #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - /* Hide main scroller when only the ToC is visible anyway */ - @media screen and (max-width: 28em) { - body.toc-sidebar { - overflow: hidden; - } - } - - /* Sidebar with its own space */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body:not(.toc-inline) #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - - body:not(.toc-inline) { - padding-left: 29em; - } - /* See also Overflow section at the bottom */ - - body:not(.toc-inline) #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) { - margin: 0 4em; - } - } - -/******************************************************************************/ -/* Sectioning */ -/******************************************************************************/ - -/** Headings ******************************************************************/ - - h1, h2, h3, h4, h5, h6, dt { - page-break-after: avoid; - page-break-inside: avoid; - font: 100% sans-serif; /* Reset all font styling to clear out UA styles */ - font-family: inherit; /* Inherit the font family. */ - line-height: 1.2; /* Keep wrapped headings compact */ - hyphens: manual; /* Hyphenated headings look weird */ - } - - h2, h3, h4, h5, h6 { - margin-top: 3rem; - } - - h1, h2, h3 { - color: #005A9C; - color: var(--heading-text); - } - - h1 { font-size: 170%; } - h2 { font-size: 140%; } - h3 { font-size: 120%; } - h4 { font-weight: bold; } - h5 { font-style: italic; } - h6 { font-variant: small-caps; } - dt { font-weight: bold; } - -/** Subheadings ***************************************************************/ - - h1 + h2, - #profile-and-date { - /* #profile-and-date is a subtitle in an H2 under the H1 */ - margin-top: 0; - } - h2 + h3, - h3 + h4, - h4 + h5, - h5 + h6 { - margin-top: 1.2em; /* = 1 x line-height */ - } - -/** Section divider ***********************************************************/ - - :not(.head) > :not(.head) + hr { - font-size: 1.5em; - text-align: center; - margin: 1em auto; - height: auto; - color: black; - color: var(--hr-text); - border: transparent solid 0; - background: transparent; - } - :not(.head) > hr::before { - content: "\2727\2003\2003\2727\2003\2003\2727"; - } - -/******************************************************************************/ -/* Paragraphs and Lists */ -/******************************************************************************/ - - p { - margin: 1em 0; - } - - dd > p:first-child, - li > p:first-child { - margin-top: 0; - } - - ul, ol { - margin-left: 0; - padding-left: 2em; - } - - li { - margin: 0.25em 0 0.5em; - padding: 0; - } - - dl dd { - margin: 0 0 .5em 2em; - } - - .head dd + dd { /* compact for header */ - margin-top: -.5em; - } - - /* Style for algorithms */ - ol.algorithm ol:not(.algorithm), - .algorithm > ol ol:not(.algorithm) { - border-left: 0.5em solid #DEF; - border-left: 0.5em solid var(--algo-border); - } - - /* Put nice boxes around each algorithm. */ - [data-algorithm]:not(.heading) { - padding: .5em; - border: thin solid #ddd; - border: thin solid var(--algo-border); - border-radius: .5em; - margin: .5em calc(-0.5em - 1px); - } - [data-algorithm]:not(.heading) > :first-child { - margin-top: 0; - } - [data-algorithm]:not(.heading) > :last-child { - margin-bottom: 0; - } - - /* Style for switch/case <dl>s */ - dl.switch > dd > ol.only, - dl.switch > dd > .only > ol { - margin-left: 0; - } - dl.switch > dd > ol.algorithm, - dl.switch > dd > .algorithm > ol { - margin-left: -2em; - } - dl.switch { - padding-left: 2em; - } - dl.switch > dt { - text-indent: -1.5em; - margin-top: 1em; - } - dl.switch > dt + dt { - margin-top: 0; - } - dl.switch > dt::before { - content: '\21AA'; - padding: 0 0.5em 0 0; - display: inline-block; - width: 1em; - text-align: right; - line-height: 0.5em; - } - -/** Terminology Markup ********************************************************/ - - -/******************************************************************************/ -/* Inline Markup */ -/******************************************************************************/ - -/** Terminology Markup ********************************************************/ - dfn { /* Defining instance */ - font-weight: bolder; - } - a > i { /* Instance of term */ - font-style: normal; - } - dt dfn code, code.idl { - font-size: inherit; - } - dfn var { - font-style: normal; - } - -/** Change Marking ************************************************************/ - - del { - color: #aa0000; - color: var(--del-text); - background: transparent; - background: var(--del-bg); - text-decoration: line-through; - } - ins { - color: #006100; - color: var(--ins-text); - background: transparent; - background: var(--ins-bg); - text-decoration: underline; - } - - /* for amendments (candidate/proposed changes) */ - - .amendment ins, .correction ins, .addition ins, - ins[class^=c] { - text-decoration-style: dotted; - } - .amendment del, .correction del, .addition del, - del[class^=c] { - text-decoration-style: dotted; - } - .amendment.proposed ins, .correction.proposed ins, .addition.proposed ins, - ins[class^=c].proposed { - text-decoration-style: double; - } - .amendment.proposed del, .correction.proposed del, .addition.proposed del, - del[class^=c].proposed { - text-decoration-style: double; - } - -/** Miscellaneous improvements to inline formatting ***************************/ - - sup { - vertical-align: super; - font-size: 80% - } - -/******************************************************************************/ -/* Code */ -/******************************************************************************/ - -/** General monospace/pre rules ***********************************************/ - - pre, code, samp { - font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace; - font-size: .9em; - hyphens: none; - text-transform: none; - text-align: left; - text-align: start; - font-variant: normal; - orphans: 3; - widows: 3; - page-break-before: avoid; - } - pre code, - code code { - font-size: 100%; - } - - pre { - margin-top: 1em; - margin-bottom: 1em; - overflow: auto; - } - -/** Inline Code fragments *****************************************************/ - - /* Do something nice. */ - -/******************************************************************************/ -/* Links */ -/******************************************************************************/ - -/** General Hyperlinks ********************************************************/ - - /* We hyperlink a lot, so make it less intrusive */ - a[href] { - color: #034575; - color: var(--a-normal-text); - text-decoration: underline #707070; - text-decoration: underline var(--a-normal-underline); - text-decoration-skip-ink: none; - } - a:visited { - color: #034575; - color: var(--a-visited-text); - text-decoration-color: #bbb; - text-decoration-color: var(--a-visited-underline); - } - - /* Indicate interaction with the link */ - a[href]:focus, - a[href]:hover { - text-decoration-thickness: 2px; - } - a[href]:active { - color: #c00; - color: var(--a-active-text); - text-decoration-color: #c00; - text-decoration-color: var(--a-active-underline); - } - - /* Backout above styling for W3C logo */ - .head .logo, - .head .logo a { - border: none; - text-decoration: none; - background: transparent; - } - -/******************************************************************************/ -/* Images */ -/******************************************************************************/ - - img { - border-style: none; - } - - img, svg { - /* Intentionally not color-scheme aware. */ - background: white; - } - - /* For autogen numbers, add - .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; } - */ - - figure, .figure, .sidefigure { - page-break-inside: avoid; - text-align: center; - margin: 2.5em 0; - } - .figure img, .sidefigure img, figure img, - .figure object, .sidefigure object, figure object { - max-width: 100%; - margin: auto; - height: auto; - } - .figure pre, .sidefigure pre, figure pre { - text-align: left; - display: table; - margin: 1em auto; - } - .figure table, figure table { - margin: auto; - } - @media screen and (min-width: 20em) { - .sidefigure { - float: right; - width: 50%; - margin: 0 0 0.5em 0.5em; - } - } - .caption, figcaption, caption { - font-style: italic; - font-size: 90%; - } - .caption::before, figcaption::before, figcaption > .marker { - font-weight: bold; - } - .caption, figcaption { - counter-increment: figure; - } - - /* DL list is indented 2em, but figure inside it is not */ - dd > .figure, dd > figure { margin-left: -2em; } - -/******************************************************************************/ -/* Colored Boxes */ -/******************************************************************************/ - - .issue, .note, .example, .assertion, .advisement, blockquote, - .amendment, .correction, .addition { - margin: 1em auto; - padding: .5em; - border: .5em; - border-left-style: solid; - page-break-inside: avoid; - } - span.issue, span.note { - padding: .1em .5em .15em; - border-right-style: solid; - } - - blockquote > :first-child, - .note > p:first-child, - .issue > p:first-child, - .amendment > p:first-child, - .correction > p:first-child, - .addition > p:first-child { - margin-top: 0; - } - blockquote > :last-child, - .note > p:last-child, - .issue > p:last-child, - .amendment > p:last-child, - .correction > p:last-child, - .addition > p:last-child { - margin-bottom: 0; - } - - - .issue::before, .issue > .marker, - .example::before, .example > .marker, - .note::before, .note > .marker, - details.note > summary > .marker, - .amendment::before, .amendment > .marker, - details.amendment > summary > .marker, - .addition::before, .addition > .marker, - addition.amendment > summary > .marker, - .correction::before, .correction > .marker, - correction.amendment > summary > .marker - { - text-transform: uppercase; - padding-right: 1em; - } - - .example::before, .example > .marker { - display: block; - padding-right: 0em; - } - -/** Blockquotes ***************************************************************/ - - blockquote { - border-color: silver; - border-color: var(--blockquote-border); - background: transparent; - background: var(--blockquote-bg); - color: currentcolor; - color: var(--blockquote-text); - } - -/** Open issue ****************************************************************/ - - .issue { - border-color: #e05252; - border-color: var(--issue-border); - background: #fbe9e9; - background: var(--issue-bg); - color: black; - color: var(--issue-text); - counter-increment: issue; - overflow: auto; - } - .issue::before, .issue > .marker { - color: #831616; - color: var(--issueheading-text); - } - /* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers, - or use class="marker" to mark up the issue number in source. */ - -/** Example *******************************************************************/ - - .example { - border-color: #e0cb52; - border-color: var(--example-border); - background: #fcfaee; - background: var(--example-bg); - color: black; - color: var(--example-text); - counter-increment: example; - overflow: auto; - clear: both; - } - .example::before, .example > .marker { - color: #574b0f; - color: var(--exampleheading-text); - } - /* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers, - or use class="marker" to mark up the example number in source. */ - -/** Non-normative Note ********************************************************/ - - .note { - border-color: #52e052; - border-color: var(--note-border); - background: #e9fbe9; - background: var(--note-bg); - color: black; - color: var(--note-text); - overflow: auto; - } - - .note::before, .note > .marker, - details.note > summary { - color: hsl(120, 70%, 30%); - color: var(--noteheading-text); - } - /* Add .note::before { content: "Note "; } for autogen label, - or use class="marker" to mark up the label in source. */ - - details.note[open] > summary { - border-bottom: 1px silver solid; - border-bottom: 1px var(--notesummary-underline) solid; - } - -/** Assertion Box *************************************************************/ - /* for assertions in algorithms */ - - .assertion { - border-color: #AAA; - border-color: var(--assertion-border); - background: #EEE; - background: var(--assertion-bg); - color: black; - color: var(--assertion-text); - } - -/** Advisement Box ************************************************************/ - /* for attention-grabbing normative statements */ - - .advisement { - border-color: orange; - border-color: var(--advisement-border); - border-style: none solid; - background: #fec; - background: var(--advisement-bg); - color: black; - color: var(--advisement-text); - } - strong.advisement { - display: block; - text-align: center; - } - .advisement::before, .advisement > .marker { - color: #b35f00; - color: var(--advisementheading-text); - } - -/** Amendment Box *************************************************************/ - - .amendment, .correction, .addition { - border-color: #330099; - border-color: var(--amendment-border); - background: #F5F0FF; - background: var(--amendment-bg); - color: black; - color: var(--amendment-text); - } - .amendment.proposed, .correction.proposed, .addition.proposed { - border-style: solid; - border-block-width: 0.25em; - } - .amendment::before, .amendment > .marker, - details.amendment > summary::before, details.amendment > summary > .marker, - .correction::before, .correction > .marker, - details.correction > summary::before, details.correction > summary > .marker, - .addition::before, .addition > .marker, - details.addition > summary::before, details.addition > summary > .marker { - color: #220066; - color: var(--amendmentheading-text); - } - .amendment.proposed::before, .amendment.proposed > .marker, - details.amendment.proposed > summary::before, details.amendment.proposed > summary > .marker, - .correction.proposed::before, .correction.proposed > .marker, - details.correction.proposed > summary::before, details.correction.proposed > summary > .marker, - .addition.proposed::before, .addition.proposed > .marker, - details.addition.proposed > summary::before, details.addition.proposed > summary > .marker { - font-weight: bold; - } - -/** Spec Obsoletion Notice ****************************************************/ - /* obnoxious obsoletion notice for older/abandoned specs. */ - - details { - display: block; - } - summary { - font-weight: bolder; - } - - .annoying-warning:not(details), - details.annoying-warning:not([open]) > summary, - details.annoying-warning[open] { - background: hsla(40,100%,50%,0.95); - background: var(--warning-bg); - color: black; - color: var(--warning-text); - padding: .75em 1em; - border: red; - border: var(--warning-border); - border-style: solid none; - box-shadow: 0 2px 8px black; - text-align: center; - } - .annoying-warning :last-child { - margin-bottom: 0; - } - -@media not print { - details.annoying-warning[open] { - position: fixed; - left: 0; - right: 0; - bottom: 2em; - z-index: 1000; - } -} - - details.annoying-warning:not([open]) > summary { - text-align: center; - } - -/** Entity Definition Boxes ***************************************************/ - - .def { - padding: .5em 1em; - background: #def; - background: var(--def-bg); - margin: 1.2em 0; - border-left: 0.5em solid #8ccbf2; - border-left: 0.5em solid var(--def-border); - color: black; - color: var(--def-text); - } - -/******************************************************************************/ -/* Tables */ -/******************************************************************************/ - - th, td { - text-align: left; - text-align: start; - } - -/** Property/Descriptor Definition Tables *************************************/ - - table.def { - /* inherits .def box styling, see above */ - width: 100%; - border-spacing: 0; - } - - table.def td, - table.def th { - padding: 0.5em; - vertical-align: baseline; - border-bottom: 1px solid #bbd7e9; - border-bottom: 1px solid var(--defrow-border); - } - - table.def > tbody > tr:last-child th, - table.def > tbody > tr:last-child td { - border-bottom: 0; - } - - table.def th { - font-style: italic; - font-weight: normal; - padding-left: 1em; - width: 3em; - } - - /* For when values are extra-complex and need formatting for readability */ - table td.pre { - white-space: pre-wrap; - } - - /* A footnote at the bottom of a def table */ - table.def td.footnote { - padding-top: 0.6em; - } - table.def td.footnote::before { - content: " "; - display: block; - height: 0.6em; - width: 4em; - border-top: thin solid; - } - -/** Data tables (and properly marked-up index tables) *************************/ - /* - <table class="data"> highlights structural relationships in a table - when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute) - - Use class="complex data" for particularly complicated tables -- - (This will draw more lines: busier, but clearer.) - - Use class="long" on table cells with paragraph-like contents - (This will adjust text alignment accordingly.) - Alternately use class="longlastcol" on tables, to have the last column assume "long". - */ - - table { - word-wrap: normal; - overflow-wrap: normal; - hyphens: manual; - } - - table.data, - table.index { - margin: 1em auto; - border-collapse: collapse; - border: hidden; - width: 100%; - } - table.data caption, - table.index caption { - max-width: 50em; - margin: 0 auto 1em; - } - - table.data td, table.data th, - table.index td, table.index th { - padding: 0.5em 1em; - border-width: 1px; - border-color: silver; - border-color: var(--datacell-border); - border-top-style: solid; - } - - table.data thead td:empty { - padding: 0; - border: 0; - } - - table.data thead, - table.index thead, - table.data tbody, - table.index tbody { - border-bottom: 2px solid; - } - - table.data colgroup, - table.index colgroup { - border-left: 2px solid; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - border-right: 2px solid; - border-top: 1px solid silver; - border-top: 1px solid var(--datacell-border); - padding-right: 1em; - } - - table.data th[colspan], - table.data td[colspan] { - text-align: center; - } - - table.complex.data th, - table.complex.data td { - border: 1px solid silver; - border: 1px solid var(--datacell-border); - text-align: center; - } - - table.data.longlastcol td:last-child, - table.data td.long { - vertical-align: baseline; - text-align: left; - } - - table.data img { - vertical-align: middle; - } - - -/* -Alternate table alignment rules - - table.data, - table.index { - text-align: center; - } - - table.data thead th[scope="row"], - table.index thead th[scope="row"] { - text-align: right; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - text-align: right; - } - -Possible extra rowspan handling - - table.data tbody th[rowspan]:not([rowspan='1']), - table.index tbody th[rowspan]:not([rowspan='1']), - table.data tbody td[rowspan]:not([rowspan='1']), - table.index tbody td[rowspan]:not([rowspan='1']) { - border-left: 1px solid silver; - } - - table.data tbody th[rowspan]:first-child, - table.index tbody th[rowspan]:first-child, - table.data tbody td[rowspan]:first-child, - table.index tbody td[rowspan]:first-child{ - border-left: 0; - border-right: 1px solid silver; - } -*/ - -/******************************************************************************/ -/* Indices */ -/******************************************************************************/ - - -/** Table of Contents *********************************************************/ - - .toc a { - /* More spacing; use padding to make it part of the click target. */ - padding: 0.1rem 1px 0; - /* Larger, more consistently-sized click target */ - display: block; - /* Switch to using border-bottom for underlines */ - text-decoration: none; - border-bottom: 1px solid; - /* Reverse color scheme */ - color: black; - color: var(--toclink-text); - border-color: #3980b5; - border-color: var(--toclink-underline); - } - .toc a:visited { - color: black; - color: var(--toclink-visited-text); - border-color: #054572; - border-color: var(--toclink-visited-underline); - } - .toc a:focus, - .toc a:hover { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom-width: 3px; - margin-bottom: -2px; - } - .toc a:not(:focus):not(:hover) { - /* Allow colors to cascade through from link styling */ - border-bottom-color: transparent; - } - - .toc, .toc ol, .toc ul, .toc li { - list-style: none; /* Numbers must be inlined into source */ - /* because generated content isn't search/selectable and markers can't do multilevel yet */ - margin: 0; - padding: 0; - } - .toc { - line-height: 1.1em; - } - - /* ToC not indented until third level, but font style & margins show hierarchy */ - .toc > li { font-weight: bold; } - .toc > li li { font-weight: normal; } - .toc > li li li { font-size: 95%; } - .toc > li li li li { font-size: 90%; } - .toc > li li li li li { font-size: 85%; } - - /* @supports not (display:grid) { */ - .toc > li { margin: 1.5rem 0; } - .toc > li li { margin: 0.3rem 0; } - .toc > li li li { margin-left: 2rem; } - - /* Section numbers in a column of their own */ - .toc .secno { - float: left; - width: 4rem; - white-space: nowrap; - } - .toc > li li li li .secno { font-size: 85%; } - .toc > li li li li li .secno { font-size: 100%; } - - .toc li { - clear: both; - } - - :not(li) > .toc { margin-left: 5rem; } - .toc .secno { margin-left: -5rem; } - .toc > li li li .secno { margin-left: -7rem; } - .toc > li li li li .secno { margin-left: -9rem; } - .toc > li li li li li .secno { margin-left: -11rem; } - - /* Tighten up indentation in narrow ToCs */ - @media (max-width: 30em) { - :not(li) > .toc { margin-left: 4rem; } - .toc .secno { margin-left: -4rem; } - .toc > li li li { margin-left: 1rem; } - .toc > li li li .secno { margin-left: -5rem; } - .toc > li li li li .secno { margin-left: -6rem; } - .toc > li li li li li .secno { margin-left: -7rem; } - } - /* Loosen it on wide screens */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) :not(li) > .toc { margin-left: 4rem; } - body:not(.toc-inline) .toc .secno { margin-left: -4rem; } - body:not(.toc-inline) .toc > li li li { margin-left: 1rem; } - body:not(.toc-inline) .toc > li li li .secno { margin-left: -5rem; } - body:not(.toc-inline) .toc > li li li li .secno { margin-left: -6rem; } - body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; } - } - /* } */ - - @supports (display:grid) and (display:contents) { - /* Use #toc over .toc to override non-@supports rules. */ - #toc { - display: grid; - align-content: start; - grid-template-columns: auto 1fr; - grid-column-gap: 1rem; - column-gap: 1rem; - grid-row-gap: .6rem; - row-gap: .6rem; - } - #toc h2 { - grid-column: 1 / -1; - margin-bottom: 0; - } - #toc ol, - #toc li, - #toc a { - display: contents; - /* Switch <a> to subgrid when supported */ - } - #toc span { - margin: 0; - } - #toc > .toc > li > a > span { - /* The spans of the top-level list, - comprising the first items of each top-level section. */ - margin-top: 1.1rem; - } - #toc#toc .secno { /* Ugh, need more specificity to override base.css */ - grid-column: 1; - width: auto; - margin-left: 0; - } - #toc .content { - grid-column: 2; - width: auto; - margin-right: 1rem; - } - #toc .content:hover, - #toc .content:focus { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; - } - #toc li li li .content { - margin-left: 1rem; - } - #toc li li li li .content { - margin-left: 2rem; - } - } - - -/** Index *********************************************************************/ - - /* Index Lists: Layout */ - ul.index { margin-left: 0; columns: 15em; text-indent: 1em hanging; } - ul.index li { margin-left: 0; list-style: none; break-inside: avoid; } - ul.index li li { margin-left: 1em; } - ul.index dl { margin-top: 0; } - ul.index dt { margin: .2em 0 .2em 20px;} - ul.index dd { margin: .2em 0 .2em 40px;} - /* Index Lists: Typography */ - ul.index ul, - ul.index dl { font-size: smaller; } - @media not print { - ul.index li a + span { - white-space: nowrap; - color: transparent; } - ul.index li a:hover + span, - ul.index li a:focus + span { - color: #707070; - color: var(--indexinfo-text); - } - } - -/** Index Tables *****************************************************/ - /* See also the data table styling section, which this effectively subclasses */ - - table.index { - font-size: small; - border-collapse: collapse; - border-spacing: 0; - text-align: left; - margin: 1em 0; - } - - table.index td, - table.index th { - padding: 0.4em; - } - - table.index tr:hover td:not([rowspan]), - table.index tr:hover th:not([rowspan]) { - color: black; - color: var(--indextable-hover-text); - background: #f7f8f9; - background: var(--indextable-hover-bg); - } - - /* The link in the first column in the property table (formerly a TD) */ - table.index th:first-child a { - font-weight: bold; - } - -/** Outdated warning **********************************************************/ - -.outdated-spec { - color: black; - color: var(--outdatedspec-text); - background-color: rgba(0,0,0,0.5); - background-color: var(--outdatedspec-bg); -} - -.outdated-warning { - position: fixed; - bottom: 50%; - left: 0; - right: 0; - margin: 0 auto; - width: 50%; - background: maroon; - background: var(--outdated-bg); - color: white; - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - position: absolute; - top: 0; - right:0; - margin: 0; - border: 0; - padding: 0.25em 0.5em; - background: transparent; - color: white; - color: var(--outdated-text); - font:1em sans-serif; - text-align:center; -} - -.outdated-warning span { - display: block; -} - -.outdated-collapsed { - bottom: 0; - border-radius: 0; - width: 100%; - padding: 0; -} - -/******************************************************************************/ -/* Print */ -/******************************************************************************/ - - @media print { - /* Pages have their own margins. */ - html { - margin: 0; - } - /* Serif for print. */ - body { - font-family: serif; - } - - .outdated-warning { - position: absolute; - border-style: solid; - border-color: red; - } - - .outdated-warning input { - display: none; - } - } - @page { - margin: 1.5cm 1.1cm; - } - - - -/******************************************************************************/ -/* Overflow Control */ -/******************************************************************************/ - - .figure .caption, .sidefigure .caption, figcaption { - /* in case figure is overlarge, limit caption to 50em */ - max-width: 50rem; - margin-left: auto; - margin-right: auto; - } - .overlarge { - /* Magic to create good item positioning: - "content column" is 50ems wide at max; less on smaller screens. - Extra space (after ToC + content) is empty on the right. - - 1. When item < content column, centers item in column. - 2. When content < item < available, left-aligns. - 3. When item > available, fills available + scroll bar. - */ - display: grid; - grid-template-columns: minmax(0, 50em); - } - .overlarge > table { - /* limit preferred width of table */ - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - @media (min-width: 55em) { - .overlarge { - margin-right: calc(13px + 26.5rem - 50vw); - max-width: none; - } - } - @media screen and (min-width: 78em) { - body:not(.toc-inline) .overlarge { - /* 30.5em body padding 50em content area */ - margin-right: calc(40em - 50vw) !important; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) .overlarge { - /* 4em html margin 30.5em body padding 50em content area */ - margin-right: calc(84.5em - 100vw) !important; - } - } - - @media not print { - .overlarge { - overflow-x: auto; - /* See Lea Verou's explanation background-attachment: - * http://lea.verou.me/2012/04/background-attachment-local/ - * - background: top left / 4em 100% linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) local, - top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local, - top left / 1em 100% linear-gradient(to right, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - white; - background-repeat: no-repeat; - */ - } - } -</style> + <title>CSS Typed OM Level 2</title> + <meta content="DREAM" name="w3c-status"> + <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-DREAM" rel="stylesheet"> <link href="https://drafts.css-houdini.org/css-typed-om-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> + <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ .css.css, .property.property, .descriptor.descriptor { color: var(--a-normal-text); @@ -2046,33 +565,51 @@ </style> <body class="h-entry"> <div class="head"> - <p data-fill-with="logo"></p> + <p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p> <h1 class="p-name no-ref" id="title">CSS Typed OM Level 2</h1> - <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span class="content">A Collection of Interesting Ideas, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></span></h2> - <div data-fill-with="spec-metadata"> - <dl> - <dt>This version: - <dd><a class="u-url" href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> - <dt>Feedback: - <dd><span><a href="mailto:public-houdini@w3.org?subject=%5Bcss-typed-om%5D%20YOUR%20TOPIC%20HERE">public-houdini@w3.org</a> with subject line “<kbd>[css-typed-om] <i data-lt>… message topic …</i></kbd>” (<a href="http://lists.w3.org/Archives/Public/public-houdini/" rel="discussion">archives</a>)</span> - <dt class="editor">Editor: - <dd class="editor p-author h-card vcard" data-editor-id="42199"><a class="p-name fn u-url url" href="http://xanthir.com/contact/">Tab Atkins-Bittner</a> (<span class="p-org org">Google</span>) - <dt class="editor">Former Editor: - <dd class="editor p-author h-card vcard" data-editor-id="47691"><a class="p-name fn u-email email" href="mailto:shanestephens@google.com">Shane Stephens</a> - </dl> - </div> + <p id="w3c-state"><a href="https://www.w3.org/standards/types#DREAM">A Collection of Interesting Ideas</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <details open> + <summary>More details about this document</summary> + <div data-fill-with="spec-metadata"> + <dl> + <dt>This version: + <dd><a class="u-url" href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dt>Feedback: + <dd><span><a href="mailto:public-houdini@w3.org?subject=%5Bcss-typed-om%5D%20YOUR%20TOPIC%20HERE">public-houdini@w3.org</a> with subject line “<kbd>[css-typed-om] <i data-lt>… message topic …</i></kbd>” (<a href="http://lists.w3.org/Archives/Public/public-houdini/" rel="discussion">archives</a>)</span> + <dt class="editor">Editor: + <dd class="editor p-author h-card vcard" data-editor-id="42199"><a class="p-name fn u-url url" href="http://xanthir.com/contact/">Tab Atkins-Bittner</a> (<span class="p-org org">Google</span>) + <dt class="editor">Former Editor: + <dd class="editor p-author h-card vcard" data-editor-id="47691"><a class="p-name fn u-email email" href="mailto:shanestephens@google.com">Shane Stephens</a> + </dl> + </div> + </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright -and related or neighboring rights to this work. -In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. -Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> </div> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> + <div data-fill-with="status"> + <p><em>This section describes the status of this document at the time of its publication. + A list of current W3C publications + and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> + <p>Please send feedback + by <a href="https://github.com/w3c/css-houdini-drafts/issues">filing issues in GitHub</a> (preferred), + including the spec code “css-typed-om” in the title, like this: + “[css-typed-om] <i>…summary of comment…</i>”. + All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. + Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-typed-om%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. + W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; + that page also includes instructions for disclosing a patent. + An individual who has actual knowledge of a patent which the individual believes + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p></p> + </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> @@ -2109,7 +646,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <p class="issue" id="issue-8285bb8e"><a class="self-link" href="#issue-8285bb8e"></a> Spec up URIValue, ShapeValue, StringValue, CounterValue, TimeValue, PercentageValue, FrequencyValue, VoiceValue, CustomIdentValue, TransitionTimingFunctionValue. What is attr(<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-identifier" id="ref-for-value-def-identifier">&lt;identifier></a>) in other specs? <a href="https://github.com/w3c/css-houdini-drafts/issues/158">[Issue #158]</a></p> <p class="issue" id="issue-64cda90d"><a class="self-link" href="#issue-64cda90d"></a> Do we want to make a generic PairValue and QuadValue, or have more specific classes for background-size, border-image-repeat, border-radius-*, border-image-outset, border-image-width? <a href="https://github.com/w3c/css-houdini-drafts/issues/155">[Issue #155]</a></p> <p class="issue" id="issue-40db8f10"><a class="self-link" href="#issue-40db8f10"></a> BorderImageSliceValue represents [<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value">&lt;number></a> | <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value">&lt;percentage></a>]{1,4} &amp;&amp; fill? <a href="https://github.com/w3c/css-houdini-drafts/issues/153">[Issue #153]</a></p> - <p class="issue" id="issue-f7aba10d"><a class="self-link" href="#issue-f7aba10d"></a> What do we do for play-during, which takes <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-uri" id="ref-for-value-def-uri">&lt;uri></a> [ mix || repeat ]? <a href="https://github.com/w3c/css-houdini-drafts/issues/152">[Issue #152]</a></p> + <p class="issue" id="issue-f7aba10d"><a class="self-link" href="#issue-f7aba10d"></a> What do we do for play-during, which takes <a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/syndata.html#value-def-uri" id="ref-for-value-def-uri">&lt;uri></a> [ mix || repeat ]? <a href="https://github.com/w3c/css-houdini-drafts/issues/152">[Issue #152]</a></p> <p class="issue" id="issue-ab276710"><a class="self-link" href="#issue-ab276710"></a> Do we want a pair type for things like quotes which take [<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#string-value" id="ref-for-string-value">&lt;string></a> <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#string-value" id="ref-for-string-value①">&lt;string></a>] <a href="https://github.com/w3c/css-houdini-drafts/issues/150">[Issue #150]</a></p> <p class="issue" id="issue-bcc44595"><a class="self-link" href="#issue-bcc44595"></a> Do we want a font value class? How about a FontWeightValue (for 100, 200 etc) class? <a href="https://github.com/w3c/css-houdini-drafts/issues/142">[Issue #142]</a></p> <p class="issue" id="issue-bf0b8aa0"><a class="self-link" href="#issue-bf0b8aa0"></a> Add more CSS3 properties. This table currently only contains CSS2.1 properties and CSS3 properties alphabetically to border-radius. <a href="https://github.com/w3c/css-houdini-drafts/issues/144">[Issue #144]</a></p> @@ -2209,11 +746,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="15f5b381">&lt;percentage></span> <li><span class="dfn-paneled" id="977d3003">&lt;string></span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="8e76f952">&lt;uri></span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="fe1e6dc9">&lt;identifier></span> - <li><span class="dfn-paneled" id="d6a1ad1b">&lt;uri></span> </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span></h2> @@ -2221,6 +762,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dl> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -2234,7 +777,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> Spec up URIValue, ShapeValue, StringValue, CounterValue, TimeValue, PercentageValue, FrequencyValue, VoiceValue, CustomIdentValue, TransitionTimingFunctionValue. What is attr(<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-identifier">&lt;identifier></a>) in other specs? <a href="https://github.com/w3c/css-houdini-drafts/issues/158">[Issue #158]</a> <a class="issue-return" href="#issue-8285bb8e" title="Jump to section">↵</a></div> <div class="issue"> Do we want to make a generic PairValue and QuadValue, or have more specific classes for background-size, border-image-repeat, border-radius-*, border-image-outset, border-image-width? <a href="https://github.com/w3c/css-houdini-drafts/issues/155">[Issue #155]</a> <a class="issue-return" href="#issue-64cda90d" title="Jump to section">↵</a></div> <div class="issue"> BorderImageSliceValue represents [<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value">&lt;number></a> | <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value">&lt;percentage></a>]{1,4} &amp;&amp; fill? <a href="https://github.com/w3c/css-houdini-drafts/issues/153">[Issue #153]</a> <a class="issue-return" href="#issue-40db8f10" title="Jump to section">↵</a></div> - <div class="issue"> What do we do for play-during, which takes <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-uri">&lt;uri></a> [ mix || repeat ]? <a href="https://github.com/w3c/css-houdini-drafts/issues/152">[Issue #152]</a> <a class="issue-return" href="#issue-f7aba10d" title="Jump to section">↵</a></div> + <div class="issue"> What do we do for play-during, which takes <a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/syndata.html#value-def-uri">&lt;uri></a> [ mix || repeat ]? <a href="https://github.com/w3c/css-houdini-drafts/issues/152">[Issue #152]</a> <a class="issue-return" href="#issue-f7aba10d" title="Jump to section">↵</a></div> <div class="issue"> Do we want a pair type for things like quotes which take [<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#string-value">&lt;string></a> <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#string-value">&lt;string></a>] <a href="https://github.com/w3c/css-houdini-drafts/issues/150">[Issue #150]</a> <a class="issue-return" href="#issue-ab276710" title="Jump to section">↵</a></div> <div class="issue"> Do we want a font value class? How about a FontWeightValue (for 100, 200 etc) class? <a href="https://github.com/w3c/css-houdini-drafts/issues/142">[Issue #142]</a> <a class="issue-return" href="#issue-bcc44595" title="Jump to section">↵</a></div> <div class="issue"> Add more CSS3 properties. This table currently only contains CSS2.1 properties and CSS3 properties alphabetically to border-radius. <a href="https://github.com/w3c/css-houdini-drafts/issues/144">[Issue #144]</a> <a class="issue-return" href="#issue-bf0b8aa0" title="Jump to section">↵</a></div> @@ -2441,11 +984,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let dfnPanelData = { -"15f5b381": {"dfnID":"15f5b381","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"}],"title":"Unnamed section"}],"url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, -"16310992": {"dfnID":"16310992","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"}],"title":"Unnamed section"}],"url":"https://drafts.csswg.org/css-values-4/#number-value"}, -"977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"}],"title":"Unnamed section"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, -"d6a1ad1b": {"dfnID":"d6a1ad1b","dfnText":"<uri>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-uri"}],"title":"Unnamed section"}],"url":"https://drafts.csswg.org/css2/#value-def-uri"}, -"fe1e6dc9": {"dfnID":"fe1e6dc9","dfnText":"<identifier>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"Unnamed section"}],"url":"https://drafts.csswg.org/css2/#value-def-identifier"}, +"15f5b381": {"dfnID":"15f5b381","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"}],"title":"Unnumbered Section"}],"url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, +"16310992": {"dfnID":"16310992","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"}],"title":"Unnumbered Section"}],"url":"https://drafts.csswg.org/css-values-4/#number-value"}, +"8e76f952": {"dfnID":"8e76f952","dfnText":"<uri>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-uri"}],"title":"Unnumbered Section"}],"url":"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri"}, +"977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"}],"title":"Unnumbered Section"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, +"fe1e6dc9": {"dfnID":"fe1e6dc9","dfnText":"<identifier>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"Unnumbered Section"}],"url":"https://drafts.csswg.org/css2/#value-def-identifier"}, }; document.addEventListener("DOMContentLoaded", ()=>{ @@ -2838,7 +1381,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#percentage-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<percentage>","type":"type","url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, "https://drafts.csswg.org/css-values-4/#string-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<string>","type":"type","url":"https://drafts.csswg.org/css-values-4/#string-value"}, "https://drafts.csswg.org/css2/#value-def-identifier": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<identifier>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-identifier"}, -"https://drafts.csswg.org/css2/#value-def-uri": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<uri>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-uri"}, +"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"<uri>","type":"type","url":"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.console.txt index 52a32155d2..71254edec4 100644 --- a/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.console.txt @@ -10,103 +10,126 @@ LINE ~1084: Ambiguous for-less link for 'types', please see <https://speced.gith Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~1164: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~1227: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~1258: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~1443: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1451: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1482: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] +LINE ~1594: Ambiguous for-less link for 'values', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-typed-om-1; type:dfn; for:sum value; text:value +for-less references: +spec:css2; type:dfn; for:/; text:value +[=values=] LINE ~1715: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1763: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1844: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1876: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1884: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1886: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1890: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1892: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1895: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~1898: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE 1898: No 'type' refs found for '<number-percentage>'. <<number-percentage>> @@ -114,84 +137,95 @@ LINE ~1909: Ambiguous for-less link for 'types', please see <https://speced.gith Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=Types=] LINE ~1971: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2160: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~2190: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~2218: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2225: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2225: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~2229: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2229: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~2233: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2233: Ambiguous for-less link for 'types', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:types +spec:vc-data-model-2.0; type:dfn; for:/; text:types [=types=] LINE ~2237: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2240: Ambiguous for-less link for 'type', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-typed-om-1; type:dfn; for:CSSNumericValue; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~2946: No 'dfn' refs found for 'reify a color value' that are marked for export. [=Reify a color value=] -LINE 3298: No 'property' refs found for 'azimuth'. -<a bs-line-number="3298" data-link-type="property" data-lt="azimuth">azimuth</a> LINE ~3366: No 'dfn' refs found for 'reify a url'. [=reify a url=] LINE ~3370: No 'dfn' refs found for 'reify an image'. @@ -200,16 +234,386 @@ LINE 3374: No 'property' refs found for 'background-image-transform'. <a bs-line-number="3374" data-link-type="property" data-lt="background-image-transform">background-image-transform</a> LINE ~3380: No 'dfn' refs found for 'reify a position'. [=reify a position=] +LINE 3475: Multiple possible 'border-block' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block +spec:css-logical-1; type:property; text:border-block +<a bs-line-number="3475" data-link-type="property" data-lt="border-block">border-block</a> +LINE ~3476: Multiple possible 'border-block-start' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start +spec:css-logical-1; type:property; text:border-block-start +'border-block-start' +LINE 3478: Multiple possible 'border-block-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-color +spec:css-logical-1; type:property; text:border-block-color +<a bs-line-number="3478" data-link-type="property" data-lt="border-block-color">border-block-color</a> +LINE 3483: Multiple possible 'border-block-end' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-end +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-end +spec:css-logical-1; type:property; text:border-block-end +<a bs-line-number="3483" data-link-type="property" data-lt="border-block-end">border-block-end</a> +LINE ~3484: Multiple possible 'border-block-start' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start +spec:css-logical-1; type:property; text:border-block-start +'border-block-start' +LINE 3486: Multiple possible 'border-block-end-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-end-color +spec:css-logical-1; type:property; text:border-block-end-color +<a bs-line-number="3486" data-link-type="property" data-lt="border-block-end-color">border-block-end-color</a> +LINE ~3487: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE 3489: Multiple possible 'border-block-end-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-end-style +spec:css-logical-1; type:property; text:border-block-end-style +<a bs-line-number="3489" data-link-type="property" data-lt="border-block-end-style">border-block-end-style</a> +LINE ~3490: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE 3492: Multiple possible 'border-block-end-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-end-width +spec:css-logical-1; type:property; text:border-block-end-width +<a bs-line-number="3492" data-link-type="property" data-lt="border-block-end-width">border-block-end-width</a> +LINE ~3493: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE 3495: Multiple possible 'border-block-start' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start +spec:css-logical-1; type:property; text:border-block-start +<a bs-line-number="3495" data-link-type="property" data-lt="border-block-start">border-block-start</a> +LINE ~3496: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +'border-top' +LINE 3498: Multiple possible 'border-block-start-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start-color +spec:css-logical-1; type:property; text:border-block-start-color +<a bs-line-number="3498" data-link-type="property" data-lt="border-block-start-color">border-block-start-color</a> +LINE ~3499: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE 3501: Multiple possible 'border-block-start-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start-style +spec:css-logical-1; type:property; text:border-block-start-style +<a bs-line-number="3501" data-link-type="property" data-lt="border-block-start-style">border-block-start-style</a> +LINE ~3502: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE 3504: Multiple possible 'border-block-start-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start-width +spec:css-logical-1; type:property; text:border-block-start-width +<a bs-line-number="3504" data-link-type="property" data-lt="border-block-start-width">border-block-start-width</a> +LINE ~3505: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE 3507: Multiple possible 'border-block-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-style +spec:css-logical-1; type:property; text:border-block-style +<a bs-line-number="3507" data-link-type="property" data-lt="border-block-style">border-block-style</a> +LINE 3512: Multiple possible 'border-block-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-width +spec:css-logical-1; type:property; text:border-block-width +<a bs-line-number="3512" data-link-type="property" data-lt="border-block-width">border-block-width</a> +LINE 3517: Multiple possible 'border-bottom' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom +spec:css-borders-4; type:property; text:border-bottom +<a bs-line-number="3517" data-link-type="property" data-lt="border-bottom">border-bottom</a> +LINE ~3518: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +'border-top' +LINE 3520: Multiple possible 'border-bottom-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-color +spec:css-borders-4; type:property; text:border-bottom-color +<a bs-line-number="3520" data-link-type="property" data-lt="border-bottom-color">border-bottom-color</a> +LINE ~3521: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE 3523: Multiple possible 'border-bottom-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-style +spec:css-borders-4; type:property; text:border-bottom-style +<a bs-line-number="3523" data-link-type="property" data-lt="border-bottom-style">border-bottom-style</a> +LINE ~3524: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE 3526: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +<a bs-line-number="3526" data-link-type="property" data-lt="border-bottom-width">border-bottom-width</a> +LINE ~3527: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE 3539: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +<a bs-line-number="3539" data-link-type="property" data-lt="border-color">border-color</a> LINE 3544: No 'property' refs found for 'border-image-transform'. <a bs-line-number="3544" data-link-type="property" data-lt="border-image-transform">border-image-transform</a> -LINE 3614: Multiple possible 'border-spacing' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-spacing -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-spacing -spec:css22; type:property; text:border-spacing -<a bs-line-number="3614" data-link-type="property" data-lt="border-spacing">border-spacing</a> -LINE 3797: No 'property' refs found for 'elevation'. -<a bs-line-number="3797" data-link-type="property" data-lt="elevation">elevation</a> +LINE 3549: Multiple possible 'border-inline' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline +spec:css-logical-1; type:property; text:border-inline +<a bs-line-number="3549" data-link-type="property" data-lt="border-inline">border-inline</a> +LINE 3552: Multiple possible 'border-inline-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-color +spec:css-logical-1; type:property; text:border-inline-color +<a bs-line-number="3552" data-link-type="property" data-lt="border-inline-color">border-inline-color</a> +LINE 3555: Multiple possible 'border-inline-end' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-end +spec:css-logical-1; type:property; text:border-inline-end +<a bs-line-number="3555" data-link-type="property" data-lt="border-inline-end">border-inline-end</a> +LINE 3558: Multiple possible 'border-inline-end-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-end-color +spec:css-logical-1; type:property; text:border-inline-end-color +<a bs-line-number="3558" data-link-type="property" data-lt="border-inline-end-color">border-inline-end-color</a> +LINE 3561: Multiple possible 'border-inline-end-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-end-style +spec:css-logical-1; type:property; text:border-inline-end-style +<a bs-line-number="3561" data-link-type="property" data-lt="border-inline-end-style">border-inline-end-style</a> +LINE 3564: Multiple possible 'border-inline-end-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-end-width +spec:css-logical-1; type:property; text:border-inline-end-width +<a bs-line-number="3564" data-link-type="property" data-lt="border-inline-end-width">border-inline-end-width</a> +LINE 3567: Multiple possible 'border-inline-start' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-start +spec:css-logical-1; type:property; text:border-inline-start +<a bs-line-number="3567" data-link-type="property" data-lt="border-inline-start">border-inline-start</a> +LINE 3570: Multiple possible 'border-inline-start-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-start-color +spec:css-logical-1; type:property; text:border-inline-start-color +<a bs-line-number="3570" data-link-type="property" data-lt="border-inline-start-color">border-inline-start-color</a> +LINE 3573: Multiple possible 'border-inline-start-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-start-style +spec:css-logical-1; type:property; text:border-inline-start-style +<a bs-line-number="3573" data-link-type="property" data-lt="border-inline-start-style">border-inline-start-style</a> +LINE 3576: Multiple possible 'border-inline-start-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-start-width +spec:css-logical-1; type:property; text:border-inline-start-width +<a bs-line-number="3576" data-link-type="property" data-lt="border-inline-start-width">border-inline-start-width</a> +LINE 3579: Multiple possible 'border-inline-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-style +spec:css-logical-1; type:property; text:border-inline-style +<a bs-line-number="3579" data-link-type="property" data-lt="border-inline-style">border-inline-style</a> +LINE 3582: Multiple possible 'border-inline-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-width +spec:css-logical-1; type:property; text:border-inline-width +<a bs-line-number="3582" data-link-type="property" data-lt="border-inline-width">border-inline-width</a> +LINE 3585: Multiple possible 'border-left' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left +spec:css-borders-4; type:property; text:border-left +<a bs-line-number="3585" data-link-type="property" data-lt="border-left">border-left</a> +LINE ~3586: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +'border-top' +LINE 3588: Multiple possible 'border-left-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-color +spec:css-borders-4; type:property; text:border-left-color +<a bs-line-number="3588" data-link-type="property" data-lt="border-left-color">border-left-color</a> +LINE ~3589: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE 3591: Multiple possible 'border-left-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-style +spec:css-borders-4; type:property; text:border-left-style +<a bs-line-number="3591" data-link-type="property" data-lt="border-left-style">border-left-style</a> +LINE ~3592: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE 3594: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +<a bs-line-number="3594" data-link-type="property" data-lt="border-left-width">border-left-width</a> +LINE ~3595: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE 3597: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +<a bs-line-number="3597" data-link-type="property" data-lt="border-radius">border-radius</a> +LINE 3602: Multiple possible 'border-right' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right +spec:css-borders-4; type:property; text:border-right +<a bs-line-number="3602" data-link-type="property" data-lt="border-right">border-right</a> +LINE ~3603: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +'border-top' +LINE 3605: Multiple possible 'border-right-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-color +spec:css-borders-4; type:property; text:border-right-color +<a bs-line-number="3605" data-link-type="property" data-lt="border-right-color">border-right-color</a> +LINE ~3606: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE 3608: Multiple possible 'border-right-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-style +spec:css-borders-4; type:property; text:border-right-style +<a bs-line-number="3608" data-link-type="property" data-lt="border-right-style">border-right-style</a> +LINE ~3609: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE 3611: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +<a bs-line-number="3611" data-link-type="property" data-lt="border-right-width">border-right-width</a> +LINE ~3612: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE 3620: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +<a bs-line-number="3620" data-link-type="property" data-lt="border-top">border-top</a> +LINE 3625: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +<a bs-line-number="3625" data-link-type="property" data-lt="border-top-color">border-top-color</a> +LINE 3635: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +<a bs-line-number="3635" data-link-type="property" data-lt="border-top-style">border-top-style</a> +LINE 3640: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +<a bs-line-number="3640" data-link-type="property" data-lt="border-top-width">border-top-width</a> LINE 3887: No 'property' refs found for 'font-max-size'. <a bs-line-number="3887" data-link-type="property" data-lt="font-max-size">font-max-size</a> LINE 3897: No 'property' refs found for 'font-min-size'. @@ -232,16 +636,8 @@ LINE 4361: No 'property' refs found for 'offset-end'. <a bs-line-number="4361" data-link-type="property" data-lt="offset-end">offset-end</a> LINE 4373: No 'property' refs found for 'offset-start'. <a bs-line-number="4373" data-link-type="property" data-lt="offset-start">offset-start</a> -LINE 4498: No 'property' refs found for 'pitch'. -<a bs-line-number="4498" data-link-type="property" data-lt="pitch">pitch</a> -LINE 4501: No 'property' refs found for 'pitch-range'. -<a bs-line-number="4501" data-link-type="property" data-lt="pitch-range">pitch-range</a> -LINE 4513: No 'property' refs found for 'play-during'. -<a bs-line-number="4513" data-link-type="property" data-lt="play-during">play-during</a> LINE 4524: No 'property' refs found for 'presentation-level'. <a bs-line-number="4524" data-link-type="property" data-lt="presentation-level">presentation-level</a> -LINE 4550: No 'property' refs found for 'richness'. -<a bs-line-number="4550" data-link-type="property" data-lt="richness">richness</a> LINE 4665: No 'property' refs found for 'scrollbar-3dlight-color'. <a bs-line-number="4665" data-link-type="property" data-lt="scrollbar-3dlight-color">scrollbar-3dlight-color</a> LINE 4668: No 'property' refs found for 'scrollbar-arrow-color'. @@ -264,16 +660,6 @@ LINE 4710: No 'property' refs found for 'solid-color'. <a bs-line-number="4710" data-link-type="property" data-lt="solid-color">solid-color</a> LINE 4713: No 'property' refs found for 'solid-opacity'. <a bs-line-number="4713" data-link-type="property" data-lt="solid-opacity">solid-opacity</a> -LINE 4722: No 'property' refs found for 'speak-header'. -<a bs-line-number="4722" data-link-type="property" data-lt="speak-header">speak-header</a> -LINE 4725: No 'property' refs found for 'speak-numeral'. -<a bs-line-number="4725" data-link-type="property" data-lt="speak-numeral">speak-numeral</a> -LINE 4728: No 'property' refs found for 'speak-punctuation'. -<a bs-line-number="4728" data-link-type="property" data-lt="speak-punctuation">speak-punctuation</a> -LINE 4731: No 'property' refs found for 'speech-rate'. -<a bs-line-number="4731" data-link-type="property" data-lt="speech-rate">speech-rate</a> -LINE 4740: No 'property' refs found for 'stress'. -<a bs-line-number="4740" data-link-type="property" data-lt="stress">stress</a> LINE 4826: No 'property' refs found for 'text-decoration-width'. <a bs-line-number="4826" data-link-type="property" data-lt="text-decoration-width">text-decoration-width</a> LINE 4838: Multiple possible 'text-overflow' property refs. @@ -282,8 +668,6 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-overflow-4; type:property; text:text-overflow spec:css-ui-3; type:property; text:text-overflow <a bs-line-number="4838" data-link-type="property" data-lt="text-overflow">text-overflow</a> -LINE 4934: No 'property' refs found for 'volume'. -<a bs-line-number="4934" data-link-type="property" data-lt="volume">volume</a> LINE ~5064: No 'dfn' refs found for 'identifier' with spec 'css-syntax-3'. [=Identifier=] LINE ~5067: No 'dfn' refs found for 'identifiers' with spec 'css-syntax-3'. @@ -296,3 +680,33 @@ LINK ERROR: No 'idl' refs found for 'CSSResourceValue'. {{CSSResourceValue}} LINK ERROR: No 'idl' refs found for 'url' with for='['CSSURLImageValue']'. {{CSSURLImageValue/url}} +LINE ~5798: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' +WARNING: No 'dom-css-cqb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-cqw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-dvw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-lvw' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svb' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svh' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svi' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svmax' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svmin' ID found, skipping MDN features that would target it. +WARNING: No 'dom-css-svw' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.html b/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.html index 4fcb78978e..6e25334838 100644 --- a/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/css-typed-om/Overview.html @@ -5,7 +5,6 @@ <title>CSS Typed OM Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-typed-om-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -1003,7 +1002,7 @@ <h1 class="p-name no-ref" id="title">CSS Typed OM Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1022,7 +1021,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-typed-om] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-typed-om%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1766,7 +1765,7 @@ <h3 class="heading settled" data-level="4.3" id="numeric-objects"><span class="s <c- a>var</c-> zIndex <c- o>=</c-> computedStyle<c- p>.</c->get<c- p>(</c-><c- u>"z-index"</c-><c- p>);</c-> </pre> <p>After execution, the value of <code>opacity</code> is <code>1</code> (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity">opacity</a> is range-restricted), - and the value of <code>zIndex</code> is <code>15</code> (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> is rounded to an integer value).</p> + and the value of <code>zIndex</code> is <code>15</code> (<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> is rounded to an integer value).</p> </div> <p class="note" role="note"><span class="marker">Note:</span> "Numeric values" which incorporate variable references will instead be represented as <code class="idl"><a data-link-type="idl" href="#cssunparsedvalue" id="ref-for-cssunparsedvalue①①">CSSUnparsedValue</a></code> objects, @@ -2366,10 +2365,10 @@ <h4 class="heading settled" data-level="4.3.1" id="numeric-value"><span class="s <p>If <var>values</var> is failure, return failure.</p> <li data-md> - <p>If the length of <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value⑦">values</a> is more than one, + <p>If the length of <a data-link-type="dfn">values</a> is more than one, return failure.</p> <li data-md> - <p>Invert (find the reciprocal of) the <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value⑧">value</a> of the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤②">item</a> in <var>values</var>, + <p>Invert (find the reciprocal of) the <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value⑦">value</a> of the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤②">item</a> in <var>values</var>, and negate the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#map-value" id="ref-for-map-value①">value</a> of each <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#map-entry" id="ref-for-map-entry⑥">entry</a> in its <a data-link-type="dfn" href="#sum-value-unit-map" id="ref-for-sum-value-unit-map⑦">unit map</a>.</p> <li data-md> <p>Return <var>values</var>.</p> @@ -2389,7 +2388,7 @@ <h4 class="heading settled" data-level="4.3.1" id="numeric-value"><span class="s <p>If not all of the <a data-link-type="dfn" href="#sum-value-unit-map" id="ref-for-sum-value-unit-map⑧">unit maps</a> among the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤⑤">items</a> of <var>args</var> are identical, return failure.</p> <li data-md> - <p>Return the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤⑥">item</a> of <var>args</var> whose sole <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤⑦">item</a> has the smallest <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value⑨">value</a>.</p> + <p>Return the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤⑥">item</a> of <var>args</var> whose sole <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑤⑦">item</a> has the smallest <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value⑧">value</a>.</p> </ol> </div> <dt data-md><code class="idl"><a data-link-type="idl" href="#cssmathmax" id="ref-for-cssmathmax③">CSSMathMax</a></code> @@ -2406,7 +2405,7 @@ <h4 class="heading settled" data-level="4.3.1" id="numeric-value"><span class="s <p>If not all of the <a data-link-type="dfn" href="#sum-value-unit-map" id="ref-for-sum-value-unit-map⑨">unit maps</a> among the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑥⓪">items</a> of <var>args</var> are identical, return failure.</p> <li data-md> - <p>Return the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑥①">item</a> of <var>args</var> whose sole <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑥②">item</a> has the largest <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value①⓪">value</a>.</p> + <p>Return the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑥①">item</a> of <var>args</var> whose sole <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item⑥②">item</a> has the largest <a data-link-type="dfn" href="#sum-value-value" id="ref-for-sum-value-value⑨">value</a>.</p> </ol> </div> </dl> @@ -3763,7 +3762,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <p>For both specified and computed values, <a data-link-type="dfn" href="#reify-an-identifier" id="ref-for-reify-an-identifier⑨">reify an identifier</a> from the value and return the result.</p> - <dt data-md><a class="css" data-link-type="property">azimuth</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth" id="ref-for-propdef-azimuth">azimuth</a> <dd data-md> <dl> <dt data-md>For specified values: @@ -3923,42 +3922,42 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <p>For both specified and computed values, reify as a <code class="idl"><a data-link-type="idl" href="#cssstylevalue" id="ref-for-cssstylevalue③⑧">CSSStyleValue</a></code> and return the result.</p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block" id="ref-for-propdef-border-block">border-block</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block" id="ref-for-propdef-border-block">border-block</a> <dd data-md> - <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start" id="ref-for-propdef-border-block-start">border-block-start</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-color" id="ref-for-propdef-border-block-color">border-block-color</a> + <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start" id="ref-for-propdef-border-block-start">border-block-start</a></p> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-color" id="ref-for-propdef-border-block-color">border-block-color</a> <dd data-md> <p>For both specified and computed values, reify as a <code class="idl"><a data-link-type="idl" href="#cssstylevalue" id="ref-for-cssstylevalue③⑨">CSSStyleValue</a></code> and return the result.</p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end" id="ref-for-propdef-border-block-end">border-block-end</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end" id="ref-for-propdef-border-block-end">border-block-end</a> <dd data-md> - <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start" id="ref-for-propdef-border-block-start①">border-block-start</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color" id="ref-for-propdef-border-block-end-color">border-block-end-color</a> + <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start" id="ref-for-propdef-border-block-start①">border-block-start</a></p> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color" id="ref-for-propdef-border-block-end-color">border-block-end-color</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color" id="ref-for-propdef-border-top-color">border-top-color</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-style" id="ref-for-propdef-border-block-end-style">border-block-end-style</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style" id="ref-for-propdef-border-block-end-style">border-block-end-style</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style" id="ref-for-propdef-border-top-style">border-top-style</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-width" id="ref-for-propdef-border-block-end-width">border-block-end-width</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width" id="ref-for-propdef-border-block-end-width">border-block-end-width</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width" id="ref-for-propdef-border-top-width">border-top-width</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start" id="ref-for-propdef-border-block-start②">border-block-start</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start" id="ref-for-propdef-border-block-start②">border-block-start</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top" id="ref-for-propdef-border-top">border-top</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color" id="ref-for-propdef-border-block-start-color">border-block-start-color</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color" id="ref-for-propdef-border-block-start-color">border-block-start-color</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color" id="ref-for-propdef-border-top-color①">border-top-color</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-style" id="ref-for-propdef-border-block-start-style">border-block-start-style</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style" id="ref-for-propdef-border-block-start-style">border-block-start-style</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style" id="ref-for-propdef-border-top-style①">border-top-style</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-width" id="ref-for-propdef-border-block-start-width">border-block-start-width</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width" id="ref-for-propdef-border-block-start-width">border-block-start-width</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width" id="ref-for-propdef-border-top-width①">border-top-width</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-style" id="ref-for-propdef-border-block-style">border-block-style</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-style" id="ref-for-propdef-border-block-style">border-block-style</a> <dd data-md> <p>For both specified and computed values, reify as a <code class="idl"><a data-link-type="idl" href="#cssstylevalue" id="ref-for-cssstylevalue④⓪">CSSStyleValue</a></code> and return the result.</p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-width" id="ref-for-propdef-border-block-width">border-block-width</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-width" id="ref-for-propdef-border-block-width">border-block-width</a> <dd data-md> <p>For both specified and computed values, reify as a <code class="idl"><a data-link-type="idl" href="#cssstylevalue" id="ref-for-cssstylevalue④①">CSSStyleValue</a></code> and return the result.</p> @@ -3990,29 +3989,29 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <p>For both specified and computed values, <a data-link-type="dfn" href="#reify-an-identifier" id="ref-for-reify-an-identifier③⓪">reify an identifier</a> from the value and return the result.</p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline" id="ref-for-propdef-border-inline">border-inline</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline" id="ref-for-propdef-border-inline">border-inline</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-color" id="ref-for-propdef-border-inline-color">border-inline-color</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color" id="ref-for-propdef-border-inline-color">border-inline-color</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end" id="ref-for-propdef-border-inline-end">border-inline-end</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end" id="ref-for-propdef-border-inline-end">border-inline-end</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color" id="ref-for-propdef-border-inline-end-color">border-inline-end-color</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color" id="ref-for-propdef-border-inline-end-color">border-inline-end-color</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-style" id="ref-for-propdef-border-inline-end-style">border-inline-end-style</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style" id="ref-for-propdef-border-inline-end-style">border-inline-end-style</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-width" id="ref-for-propdef-border-inline-end-width">border-inline-end-width</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width" id="ref-for-propdef-border-inline-end-width">border-inline-end-width</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start" id="ref-for-propdef-border-inline-start">border-inline-start</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start" id="ref-for-propdef-border-inline-start">border-inline-start</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color" id="ref-for-propdef-border-inline-start-color">border-inline-start-color</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color" id="ref-for-propdef-border-inline-start-color">border-inline-start-color</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-style" id="ref-for-propdef-border-inline-start-style">border-inline-start-style</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style" id="ref-for-propdef-border-inline-start-style">border-inline-start-style</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-width" id="ref-for-propdef-border-inline-start-width">border-inline-start-width</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width" id="ref-for-propdef-border-inline-start-width">border-inline-start-width</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-style" id="ref-for-propdef-border-inline-style">border-inline-style</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style" id="ref-for-propdef-border-inline-style">border-inline-style</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-width" id="ref-for-propdef-border-inline-width">border-inline-width</a> + <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width" id="ref-for-propdef-border-inline-width">border-inline-width</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left" id="ref-for-propdef-border-left">border-left</a> <dd data-md> @@ -4042,7 +4041,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width" id="ref-for-propdef-border-right-width">border-right-width</a> <dd data-md> <p>Same as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width" id="ref-for-propdef-border-top-width④">border-top-width</a></p> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style" id="ref-for-propdef-border-style">border-style</a> <dd data-md> @@ -4188,7 +4187,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se and return the result.</p> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-inline-3/#propdef-dominant-baseline" id="ref-for-propdef-dominant-baseline">dominant-baseline</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">elevation</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-elevation" id="ref-for-propdef-elevation">elevation</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-empty-cells" id="ref-for-propdef-empty-cells">empty-cells</a> <dd data-md> @@ -4724,11 +4723,11 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se and return the result.</p> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-page-3/#propdef-page" id="ref-for-propdef-page">page</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://svgwg.org/svg2-draft/painting.html#PaintOrderProperty" id="ref-for-PaintOrderProperty">paint-order</a> <dd data-md> @@ -4742,9 +4741,9 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-2/#propdef-perspective-origin" id="ref-for-propdef-perspective-origin">perspective-origin</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">pitch</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch" id="ref-for-propdef-pitch">pitch</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">pitch-range</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range" id="ref-for-propdef-pitch-range">pitch-range</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-place-content" id="ref-for-propdef-place-content">place-content</a> <dd data-md> @@ -4752,7 +4751,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-place-self" id="ref-for-propdef-place-self">place-self</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">play-during</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-play-during" id="ref-for-propdef-play-during">play-during</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-ui-4/#propdef-pointer-events" id="ref-for-propdef-pointer-events">pointer-events</a> <dd data-md> @@ -4778,7 +4777,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-speech-1/#propdef-rest-before" id="ref-for-propdef-rest-before">rest-before</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">richness</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-richness" id="ref-for-propdef-richness">richness</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-right" id="ref-for-propdef-right">right</a> <dd data-md> @@ -4897,19 +4896,19 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-speech-1/#propdef-speak-as" id="ref-for-propdef-speak-as">speak-as</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">speak-header</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header" id="ref-for-propdef-speak-header">speak-header</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">speak-numeral</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral" id="ref-for-propdef-speak-numeral">speak-numeral</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">speak-punctuation</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation" id="ref-for-propdef-speak-punctuation">speak-punctuation</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">speech-rate</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate" id="ref-for-propdef-speech-rate">speech-rate</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://svgwg.org/svg2-draft/pservers.html#StopColorProperty" id="ref-for-StopColorProperty">stop-color</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://svgwg.org/svg2-draft/pservers.html#StopOpacityProperty" id="ref-for-StopOpacityProperty">stop-opacity</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">stress</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-stress" id="ref-for-propdef-stress">stress</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://svgwg.org/svg2-draft/painting.html#StrokeProperty" id="ref-for-StrokeProperty">stroke</a> <dd data-md> @@ -5049,7 +5048,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-speech-1/#propdef-voice-volume" id="ref-for-propdef-voice-volume">voice-volume</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property">volume</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/aural.html#propdef-volume" id="ref-for-propdef-volume">volume</a> <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> <dd data-md> @@ -5078,7 +5077,7 @@ <h3 class="heading settled" data-level="5.1" id="reify-property"><span class="se <dd data-md> <dt data-md><a class="css" data-link-type="property" href="https://svgwg.org/svg2-draft/geometry.html#YProperty" id="ref-for-YProperty">y</a> <dd data-md> - <dt data-md><a class="css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> + <dt data-md><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> <dd data-md> </dl> <h3 class="heading settled" data-level="5.2" id="reify-failure"><span class="secno">5.2. </span><span class="content">Unrepresentable Values</span><a class="self-link" href="#reify-failure"></a></h3> @@ -6662,6 +6661,34 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="cf1dc4f6">fill</span> <li><span class="dfn-paneled" id="fe85b73a">stretch</span> </ul> + <li> + <a data-link-type="biblio">[CSS-BORDERS-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="45a96a37">border-block</span> + <li><span class="dfn-paneled" id="6b65248d">border-block-color</span> + <li><span class="dfn-paneled" id="5d70435a">border-block-end</span> + <li><span class="dfn-paneled" id="26b72b18">border-block-end-color</span> + <li><span class="dfn-paneled" id="ceced8d4">border-block-end-style</span> + <li><span class="dfn-paneled" id="50391fa8">border-block-end-width</span> + <li><span class="dfn-paneled" id="f793e65e">border-block-start</span> + <li><span class="dfn-paneled" id="7b5a0ddb">border-block-start-color</span> + <li><span class="dfn-paneled" id="58cdf4fb">border-block-start-style</span> + <li><span class="dfn-paneled" id="91481de2">border-block-start-width</span> + <li><span class="dfn-paneled" id="ff338f6c">border-block-style</span> + <li><span class="dfn-paneled" id="8b01f835">border-block-width</span> + <li><span class="dfn-paneled" id="59de49b2">border-inline</span> + <li><span class="dfn-paneled" id="eeeb1518">border-inline-color</span> + <li><span class="dfn-paneled" id="125de889">border-inline-end</span> + <li><span class="dfn-paneled" id="60e9c55d">border-inline-end-color</span> + <li><span class="dfn-paneled" id="99cf77dd">border-inline-end-style</span> + <li><span class="dfn-paneled" id="8f60c8e7">border-inline-end-width</span> + <li><span class="dfn-paneled" id="121d9bdb">border-inline-start</span> + <li><span class="dfn-paneled" id="635a5b71">border-inline-start-color</span> + <li><span class="dfn-paneled" id="f2b8b95d">border-inline-start-style</span> + <li><span class="dfn-paneled" id="883360ae">border-inline-start-width</span> + <li><span class="dfn-paneled" id="ac2531a4">border-inline-style</span> + <li><span class="dfn-paneled" id="be8e9f0a">border-inline-width</span> + </ul> <li> <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: <ul> @@ -6841,30 +6868,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-LOGICAL-1]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="f0c46389">block-size</span> - <li><span class="dfn-paneled" id="ddc793c2">border-block</span> - <li><span class="dfn-paneled" id="3fbe8c02">border-block-color</span> - <li><span class="dfn-paneled" id="75e7d8af">border-block-end</span> - <li><span class="dfn-paneled" id="46f3dfbb">border-block-end-color</span> - <li><span class="dfn-paneled" id="bb8ecb5e">border-block-end-style</span> - <li><span class="dfn-paneled" id="0f90c115">border-block-end-width</span> - <li><span class="dfn-paneled" id="87270354">border-block-start</span> - <li><span class="dfn-paneled" id="f52484cc">border-block-start-color</span> - <li><span class="dfn-paneled" id="052babf7">border-block-start-style</span> - <li><span class="dfn-paneled" id="bd5c9eab">border-block-start-width</span> - <li><span class="dfn-paneled" id="19a240c0">border-block-style</span> - <li><span class="dfn-paneled" id="fbf8e945">border-block-width</span> - <li><span class="dfn-paneled" id="cabb703c">border-inline</span> - <li><span class="dfn-paneled" id="f9d36ed0">border-inline-color</span> - <li><span class="dfn-paneled" id="7c2461b4">border-inline-end</span> - <li><span class="dfn-paneled" id="eb956f90">border-inline-end-color</span> - <li><span class="dfn-paneled" id="11ec9096">border-inline-end-style</span> - <li><span class="dfn-paneled" id="6de818f9">border-inline-end-width</span> - <li><span class="dfn-paneled" id="1907b4dd">border-inline-start</span> - <li><span class="dfn-paneled" id="dfc674d2">border-inline-start-color</span> - <li><span class="dfn-paneled" id="8548ccb9">border-inline-start-style</span> - <li><span class="dfn-paneled" id="b678cf24">border-inline-start-width</span> - <li><span class="dfn-paneled" id="25a128cf">border-inline-style</span> - <li><span class="dfn-paneled" id="694d67fb">border-inline-width</span> <li><span class="dfn-paneled" id="0fffddd1">inline-size</span> <li><span class="dfn-paneled" id="78a34e77">margin-block</span> <li><span class="dfn-paneled" id="052c1740">margin-block-end</span> @@ -7080,7 +7083,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="911f092b">border-collapse</span> - <li><span class="dfn-paneled" id="6882117f">border-spacing</span> <li><span class="dfn-paneled" id="07083329">caption-side</span> <li><span class="dfn-paneled" id="b2d6dec4">empty-cells</span> <li><span class="dfn-paneled" id="e1ea7acd">table-layout</span> @@ -7239,6 +7241,27 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3bd4bbe9">text-orientation</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="36504895">azimuth</span> + <li><span class="dfn-paneled" id="fe0abd77">border-spacing</span> + <li><span class="dfn-paneled" id="f1ecd537">elevation</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="7ee8e6fb">page-break-inside</span> + <li><span class="dfn-paneled" id="90b2accf">pitch</span> + <li><span class="dfn-paneled" id="a9069881">pitch-range</span> + <li><span class="dfn-paneled" id="e2b8e6b7">play-during</span> + <li><span class="dfn-paneled" id="fdaa092f">richness</span> + <li><span class="dfn-paneled" id="7ca33cdf">speak-header</span> + <li><span class="dfn-paneled" id="d6711e02">speak-numeral</span> + <li><span class="dfn-paneled" id="24bdba2c">speak-punctuation</span> + <li><span class="dfn-paneled" id="b8f14ba7">speech-rate</span> + <li><span class="dfn-paneled" id="78404507">stress</span> + <li><span class="dfn-paneled" id="22308f61">volume</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -7247,10 +7270,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> - <li><span class="dfn-paneled" id="f6cbcbce">page-break-inside</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSSOM]</a> defines the following terms: @@ -7419,15 +7438,17 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing-2">[COMPOSITING-2] - <dd>Compositing and Blending Level 2 URL: <a href="https://drafts.fxtf.org/compositing-2/">https://drafts.fxtf.org/compositing-2/</a> + <dd><a href="https://drafts.fxtf.org/compositing-2/"><cite>Compositing and Blending Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.fxtf.org/compositing-2/">https://drafts.fxtf.org/compositing-2/</a> <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-animations-2">[CSS-ANIMATIONS-2] - <dd>CSS Animations Level 2 URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> + <dd>David Baron; Brian Birtles. <a href="https://drafts.csswg.org/css-animations-2/"><cite>CSS Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dt id="biblio-css-borders-4">[CSS-BORDERS-4] + <dd><a href="https://drafts.csswg.org/css-borders-4/"><cite>CSS Borders and Box Decorations Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-borders-4/">https://drafts.csswg.org/css-borders-4/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] @@ -7437,7 +7458,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-color-adjust-1">[CSS-COLOR-ADJUST-1] @@ -7447,23 +7468,23 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-gcpm-4">[CSS-GCPM-4] - <dd>CSS Generated Content for Paged Media Module Level 4 URL: <a href="https://drafts.csswg.org/css-gcpm-4/">https://drafts.csswg.org/css-gcpm-4/</a> + <dd><a href="https://drafts.csswg.org/css-gcpm-4/"><cite>CSS Generated Content for Paged Media Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-gcpm-4/">https://drafts.csswg.org/css-gcpm-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-line-grid-1">[CSS-LINE-GRID-1] <dd>Elika Etemad; Koji Ishii; Alan Stearns. <a href="https://drafts.csswg.org/css-line-grid/"><cite>CSS Line Grid Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-line-grid/">https://drafts.csswg.org/css-line-grid/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] @@ -7473,19 +7494,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-multicol-2">[CSS-MULTICOL-2] - <dd>CSS Multi-column Layout Module Level 2 URL: <a href="https://drafts.csswg.org/css-multicol-2/">https://drafts.csswg.org/css-multicol-2/</a> + <dd><a href="https://drafts.csswg.org/css-multicol-2/"><cite>CSS Multi-column Layout Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-multicol-2/">https://drafts.csswg.org/css-multicol-2/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-page-floats-3">[CSS-PAGE-FLOATS-3] <dd>Johannes Wilm. <a href="https://drafts.csswg.org/css-page-floats/"><cite>CSS Page Floats</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-floats/">https://drafts.csswg.org/css-page-floats/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-properties-values-api-1">[CSS-PROPERTIES-VALUES-API-1] - <dd>Tab Atkins Jr.; et al. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> + <dd>Tab Atkins Jr.; Alan Stearns; Greg Whitworth. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> <dt id="biblio-css-regions-1">[CSS-REGIONS-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-css-rhythm-1">[CSS-RHYTHM-1] @@ -7501,13 +7522,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-shapes/"><cite>CSS Shapes Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-shapes/">https://drafts.csswg.org/css-shapes/</a> <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] - <dd>CSS Shapes Module Level 2 URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> <dt id="biblio-css-size-adjust-1">[CSS-SIZE-ADJUST-1] - <dd>CSS Mobile Text Size Adjustment Module Level 1 URL: <a href="https://drafts.csswg.org/css-size-adjust-1/">https://drafts.csswg.org/css-size-adjust-1/</a> + <dd><a href="https://drafts.csswg.org/css-size-adjust-1/"><cite>CSS Mobile Text Size Adjustment Module Level 1</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-size-adjust-1/">https://drafts.csswg.org/css-size-adjust-1/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-tables-3">[CSS-TABLES-3] @@ -7525,19 +7546,21 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-transitions-1">[CSS-TRANSITIONS-1] <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-transitions/"><cite>CSS Transitions</cite></a>. URL: <a href="https://drafts.csswg.org/css-transitions/">https://drafts.csswg.org/css-transitions/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-css-ui-4">[CSS-UI-4] <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-cssom">[CSSOM] @@ -7547,7 +7570,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-fill-stroke-3">[FILL-STROKE-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/fill-stroke/"><cite>CSS Fill and Stroke Module Level 3</cite></a>. URL: <a href="https://drafts.fxtf.org/fill-stroke/">https://drafts.fxtf.org/fill-stroke/</a> <dt id="biblio-filter-effects-2">[FILTER-EFFECTS-2] - <dd>Filter Effects Module Level 2 URL: <a href="https://drafts.fxtf.org/filter-effects-2/">https://drafts.fxtf.org/filter-effects-2/</a> + <dd><a href="https://drafts.fxtf.org/filter-effects-2/"><cite>Filter Effects Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.fxtf.org/filter-effects-2/">https://drafts.fxtf.org/filter-effects-2/</a> <dt id="biblio-geometry-1">[GEOMETRY-1] <dd>Simon Pieters; Chris Harrelson. <a href="https://drafts.fxtf.org/geometry/"><cite>Geometry Interfaces Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/geometry/">https://drafts.fxtf.org/geometry/</a> <dt id="biblio-html">[HTML] @@ -7978,13 +8001,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> TODO add stringifiers <a class="issue-return" href="#issue-0e2e471e" title="Jump to section">↵</a></div> <div class="issue"> Phrase the per-item channels setting. <a class="issue-return" href="#issue-76f66623" title="Jump to section">↵</a></div> </div> - <details class="mdn-anno unpositioned" data-anno-for="imagevalue-objects"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-hz"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSImageValue" title="The CSSImageValue interface of the CSS Typed Object Model API represents values for properties that take an image, for example background-image, list-style-image, or border-image-source.">CSSImageValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -7994,13 +8016,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-csskeywordvalue-csskeywordvalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-q"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue/CSSKeywordValue" title="The CSSKeywordValue() constructor creates a new CSSKeywordValue object which represents CSS keywords and other identifiers.">CSSKeywordValue/CSSKeywordValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8010,13 +8031,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-csskeywordvalue-value"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-ch"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue/value" title="The value property of the CSSKeywordValue interface returns or sets the value of the CSSKeywordValue.">CSSKeywordValue/value</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8026,13 +8046,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="keywordvalue-objects"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-cm"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue" title="The CSSKeywordValue interface of the CSS Typed Object Model API creates an object to represent CSS keywords and other identifiers.">CSSKeywordValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8042,13 +8061,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathinvert-cssmathinvert"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-deg"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathInvert/CSSMathInvert" title="The CSSMathInvert() constructor creates a new CSSMathInvert object which represents a CSS calc() used as calc(1 / value)">CSSMathInvert/CSSMathInvert</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8058,13 +8076,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathinvert-value"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-dpcm"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathInvert/value" title="The CSSMathInvert.value read-only property of the CSSMathInvert interface returns a CSSNumericValue object.">CSSMathInvert/value</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8074,13 +8091,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmathinvert"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-dpi"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathInvert" title="The CSSMathInvert interface of the CSS_Object_Model#css_typed_object_model represents a CSS calc() used as calc(1 / <value>). It inherits properties and methods from its parent CSSNumericValue.">CSSMathInvert</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8090,13 +8106,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmax-cssmathmax"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-dppx"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMax/CSSMathMax" title="The CSSMathMax() constructor creates a new CSSMathMax object which represents the CSS max() function.">CSSMathMax/CSSMathMax</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8106,13 +8121,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmax-values"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-em"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMax/values" title="The CSSMathMax.values read-only property of the CSSMathMax interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathMax/values</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8122,13 +8136,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmathmax"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-ex"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMax" title="The CSSMathMax interface of the CSS_Object_Model#css_typed_object_model represents the CSS max() function. It inherits properties and methods from its parent CSSNumericValue.">CSSMathMax</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8138,13 +8151,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmin-cssmathmin"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-fr"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMin/CSSMathMin" title="The CSSMathMin() constructor creates a new CSSMathMin object which represents the CSS min() function.">CSSMathMin/CSSMathMin</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8154,13 +8166,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmin-values"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-grad"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMin/values" title="The CSSMathMin.values read-only property of the CSSMathMin interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathMin/values</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8170,13 +8181,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmathmin"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-in"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMin" title="The CSSMathMin interface of the CSS_Object_Model#css_typed_object_model represents the CSS min() function. It inherits properties and methods from its parent CSSNumericValue.">CSSMathMin</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8186,13 +8196,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathnegate-cssmathnegate"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-khz"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathNegate/CSSMathNegate" title="The CSSMathNegate() constructor creates a new CSSMathNegate object which negates the value passed into it.">CSSMathNegate/CSSMathNegate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8202,13 +8211,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathnegate-value"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-mm"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathNegate/value" title="The CSSMathNegate.value read-only property of the CSSMathNegate interface returns a CSSNumericValue object.">CSSMathNegate/value</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8218,13 +8226,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmathnegate"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-ms"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathNegate" title="The CSSMathNegate interface of the CSS_Object_Model#css_typed_object_model negates the value passed into it. It inherits properties and methods from its parent CSSNumericValue.">CSSMathNegate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8234,13 +8241,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathproduct-cssmathproduct"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-number"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathProduct/CSSMathProduct" title="The CSSMathProduct() constructor creates a new CSSMathProduct object which creates a new CSSMathProduct object which multiplies the arguments passed into it.">CSSMathProduct/CSSMathProduct</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8250,13 +8256,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathproduct-values"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-pc"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathProduct/values" title="The CSSMathProduct.values read-only property of the CSSMathProduct interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathProduct/values</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8266,13 +8271,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmathproduct"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-percent"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathProduct" title="The CSSMathProduct interface of the CSS_Object_Model#css_typed_object_model represents the result obtained by calling add(), sub(), or toSum() on CSSNumericValue. It inherits properties and methods from its parent CSSNumericValue.">CSSMathProduct</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8282,13 +8286,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathsum-cssmathsum"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-pt"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathSum/CSSMathSum" title="The CSSMathSum() constructor creates a new CSSMathSum object which creates a new CSSKeywordValue object which represents the result obtained by calling add(), sub(), or toSum() on CSSNumericValue.">CSSMathSum/CSSMathSum</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8298,13 +8301,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathsum-values"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-px"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathSum/values" title="The CSSMathSum.values read-only property of the CSSMathSum interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathSum/values</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8314,13 +8316,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmathsum"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-rad"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathSum" title="The CSSMathSum interface of the CSS_Object_Model#css_typed_object_model represents the result obtained by calling add(), sub(), or toSum() on CSSNumericValue.">CSSMathSum</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8330,13 +8331,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathvalue-operator"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-rem"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathValue/operator" title="The CSSMathValue.operator read-only property of the CSSMathValue interface indicates the operator that the current subtype represents. For example, if the current CSSMathValue subtype is CSSMathSum, this property will return the string &quot;sum&quot;.">CSSMathValue/operator</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8346,13 +8346,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="complex-numeric"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-s"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathValue" title="The CSSMathValue interface of the CSS_Object_Model#css_typed_object_model a base class for classes representing complex numeric values.">CSSMathValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8362,13 +8361,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmatrixcomponent-cssmatrixcomponent"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-turn"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMatrixComponent/CSSMatrixComponent" title="The CSSMatrixComponent() constructor creates a new CSSMatrixComponent object representing the matrix() and matrix3d() values of the individual transform property in CSS.">CSSMatrixComponent/CSSMatrixComponent</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8378,15 +8376,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssmatrixcomponent-matrix"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-vb"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMatrixComponent/matrix" title="The matrix property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.">CSSMatrixComponent/matrix</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>108+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>108+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -8394,13 +8391,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssmatrixcomponent"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-vh"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMatrixComponent" title="The CSSMatrixComponent interface of the CSS_Object_Model#css_typed_object_model represents the matrix() and matrix3d() values of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSMatrixComponent</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8410,15 +8406,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericarray-length"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-vi"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericArray/length" title="The read-only length property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.">CSSNumericArray/length</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>108+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>108+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -8426,13 +8421,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssnumericarray"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-vmax"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericArray" title="The CSSNumericArray interface of the CSS_Object_Model#css_typed_object_model contains a list of CSSNumericValue objects.">CSSNumericArray</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8442,13 +8436,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-add"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-vmin"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/add" title="The add() method of the CSSNumericValue interface adds a supplied number to the CSSNumericValue.">CSSNumericValue/add</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8458,13 +8451,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-div"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-vw"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/div" title="The div() method of the CSSNumericValue interface divides the CSSNumericValue by the supplied value.">CSSNumericValue/div</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/factory_functions_static" title="The CSS numeric factory functions, such as CSS.em() and CSS.turn() are methods that return CSSUnitValues with the value being the numeric argument and the unit being the name of the method used. These functions create new numeric values less verbosely than using the CSSUnitValue() constructor.">CSS/factory_functions_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8474,13 +8466,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-equals"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="imagevalue-objects"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/equals" title="The equals() method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal. To return a value of true, all passed values must be of the same type and value and must be in the same order. This allows structural equality to be tested quickly.">CSSNumericValue/equals</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSImageValue" title="The CSSImageValue interface of the CSS Typed Object Model API represents values for properties that take an image, for example background-image, list-style-image, or border-image-source.">CSSImageValue</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8490,13 +8481,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-max"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-csskeywordvalue-csskeywordvalue"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/max" title="The max() method of the CSSNumericValue interface returns the highest value from among the values passed. The passed values must be of the same type.">CSSNumericValue/max</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue/CSSKeywordValue" title="The CSSKeywordValue() constructor creates a new CSSKeywordValue object which represents CSS keywords and other identifiers.">CSSKeywordValue/CSSKeywordValue</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8506,13 +8496,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-min"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-csskeywordvalue-value"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/min" title="The min() method of the CSSNumericValue interface returns the lowest value from among those values passed. The passed values must be of the same type.">CSSNumericValue/min</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue/value" title="The value property of the CSSKeywordValue interface returns or sets the value of the CSSKeywordValue.">CSSKeywordValue/value</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8522,13 +8511,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-mul"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="keywordvalue-objects"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/mul" title="The mul() method of the CSSNumericValue interface multiplies the CSSNumericValue by the supplied value.">CSSNumericValue/mul</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue" title="The CSSKeywordValue interface of the CSS Typed Object Model API creates an object to represent CSS keywords and other identifiers.">CSSKeywordValue</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8538,13 +8526,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-parse"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathinvert-cssmathinvert"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/parse" title="The parse() method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.">CSSNumericValue/parse</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathInvert/CSSMathInvert" title="The CSSMathInvert() constructor creates a new CSSMathInvert object which represents a CSS calc() used as calc(1 / value)">CSSMathInvert/CSSMathInvert</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8554,13 +8541,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-sub"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathinvert-value"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/sub" title="The sub() method of the CSSNumericValue interface subtracts a supplied number from the CSSNumericValue.">CSSNumericValue/sub</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathInvert/value" title="The CSSMathInvert.value read-only property of the CSSMathInvert interface returns a CSSNumericValue object.">CSSMathInvert/value</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8570,13 +8556,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-to"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="cssmathinvert"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/to" title="The to() method of the CSSNumericValue interface converts a numeric value from one unit to another.">CSSNumericValue/to</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathInvert" title="The CSSMathInvert interface of the CSS_Object_Model#css_typed_object_model represents a CSS calc() used as calc(1 / <value>). It inherits properties and methods from its parent CSSNumericValue.">CSSMathInvert</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8586,10 +8571,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-tosum"> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmax-cssmathmax"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/toSum" title="The toSum() method of the CSSNumericValue interface converts the object&apos;s value to a CSSMathSum object to values of the specified unit.">CSSNumericValue/toSum</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMax/CSSMathMax" title="The CSSMathMax() constructor creates a new CSSMathMax object which represents the CSS max() function.">CSSMathMax/CSSMathMax</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> @@ -8602,13 +8587,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-type"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmax-values"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/type" title="The type() method of the CSSNumericValue interface returns the type of CSSNumericValue, one of angle, flex, frequency, length, resolution, percent, percentHint, or time.">CSSNumericValue/type</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMax/values" title="The CSSMathMax.values read-only property of the CSSMathMax interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathMax/values</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8618,13 +8602,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="numeric-value"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="cssmathmax"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue" title="The CSSNumericValue interface of the CSS Typed Object Model API represents operations that all numeric values can perform.">CSSNumericValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMax" title="The CSSMathMax interface of the CSS_Object_Model#css_typed_object_model represents the CSS max() function. It inherits properties and methods from its parent CSSNumericValue.">CSSMathMax</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8634,10 +8617,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssperspective-cssperspective"> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmin-cssmathmin"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPerspective/CSSPerspective" title="The CSSPerspective() constructor creates a new CSSPerspective object representing the perspective() value of the individual transform property in CSS.">CSSPerspective/CSSPerspective</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMin/CSSMathMin" title="The CSSMathMin() constructor creates a new CSSMathMin object which represents the CSS min() function.">CSSMathMin/CSSMathMin</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> @@ -8650,13 +8633,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssperspective-length"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathmin-values"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPerspective/length" title="The length property of the CSSPerspective interface sets the distance from z=0.">CSSPerspective/length</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMin/values" title="The CSSMathMin.values read-only property of the CSSMathMin interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathMin/values</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8666,13 +8648,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="cssperspective"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="cssmathmin"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPerspective" title="The CSSPerspective interface of the CSS_Object_Model#css_typed_object_model represents the perspective() value of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSPerspective</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathMin" title="The CSSMathMin interface of the CSS_Object_Model#css_typed_object_model represents the CSS min() function. It inherits properties and methods from its parent CSSNumericValue.">CSSMathMin</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8682,13 +8663,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-cssrotate"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathnegate-cssmathnegate"> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/CSSRotate" title="The CSSRotate() constructor creates a new CSSRotate object representing the rotate() value of the individual transform property in CSS.">CSSRotate/CSSRotate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathNegate/CSSMathNegate" title="The CSSMathNegate() constructor creates a new CSSMathNegate object which negates the value passed into it.">CSSMathNegate/CSSMathNegate</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8698,13 +8678,479 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-cssrotate-x-y-z-angle"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathnegate-value"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathNegate/value" title="The CSSMathNegate.value read-only property of the CSSMathNegate interface returns a CSSNumericValue object.">CSSMathNegate/value</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssmathnegate"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathNegate" title="The CSSMathNegate interface of the CSS_Object_Model#css_typed_object_model negates the value passed into it. It inherits properties and methods from its parent CSSNumericValue.">CSSMathNegate</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathproduct-cssmathproduct"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathProduct/CSSMathProduct" title="The CSSMathProduct() constructor creates a new CSSMathProduct object which creates a new CSSMathProduct object which multiplies the arguments passed into it.">CSSMathProduct/CSSMathProduct</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathproduct-values"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathProduct/values" title="The CSSMathProduct.values read-only property of the CSSMathProduct interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathProduct/values</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssmathproduct"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathProduct" title="The CSSMathProduct interface of the CSS_Object_Model#css_typed_object_model represents the result obtained by calling add(), sub(), or toSum() on CSSNumericValue. It inherits properties and methods from its parent CSSNumericValue.">CSSMathProduct</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathsum-cssmathsum"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathSum/CSSMathSum" title="The CSSMathSum() constructor creates a new CSSMathSum object which creates a new CSSKeywordValue object which represents the result obtained by calling add(), sub(), or toSum() on CSSNumericValue.">CSSMathSum/CSSMathSum</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathsum-values"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathSum/values" title="The CSSMathSum.values read-only property of the CSSMathSum interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.">CSSMathSum/values</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssmathsum"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathSum" title="The CSSMathSum interface of the CSS_Object_Model#css_typed_object_model represents the result obtained by calling add(), sub(), or toSum() on CSSNumericValue.">CSSMathSum</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmathvalue-operator"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathValue/operator" title="The CSSMathValue.operator read-only property of the CSSMathValue interface indicates the operator that the current subtype represents. For example, if the current CSSMathValue subtype is CSSMathSum, this property will return the string &quot;sum&quot;.">CSSMathValue/operator</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="complex-numeric"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMathValue" title="The CSSMathValue interface of the CSS_Object_Model#css_typed_object_model a base class for classes representing complex numeric values.">CSSMathValue</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmatrixcomponent-cssmatrixcomponent"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMatrixComponent/CSSMatrixComponent" title="The CSSMatrixComponent() constructor creates a new CSSMatrixComponent object representing the matrix() and matrix3d() values of the individual transform property in CSS.">CSSMatrixComponent/CSSMatrixComponent</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssmatrixcomponent-matrix"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMatrixComponent/matrix" title="The matrix property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.">CSSMatrixComponent/matrix</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssmatrixcomponent"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSMatrixComponent" title="The CSSMatrixComponent interface of the CSS_Object_Model#css_typed_object_model represents the matrix() and matrix3d() values of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSMatrixComponent</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericarray-length"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericArray/length" title="The read-only length property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.">CSSNumericArray/length</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssnumericarray"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericArray" title="The CSSNumericArray interface of the CSS_Object_Model#css_typed_object_model contains a list of CSSNumericValue objects.">CSSNumericArray</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-add"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/add" title="The add() method of the CSSNumericValue interface adds a supplied number to the CSSNumericValue.">CSSNumericValue/add</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-div"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/div" title="The div() method of the CSSNumericValue interface divides the CSSNumericValue by the supplied value.">CSSNumericValue/div</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-equals"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/equals" title="The equals() method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal. To return a value of true, all passed values must be of the same type and value and must be in the same order. This allows structural equality to be tested quickly.">CSSNumericValue/equals</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-max"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/max" title="The max() method of the CSSNumericValue interface returns the highest value from among the values passed. The passed values must be of the same type.">CSSNumericValue/max</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-min"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/min" title="The min() method of the CSSNumericValue interface returns the lowest value from among those values passed. The passed values must be of the same type.">CSSNumericValue/min</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-mul"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/mul" title="The mul() method of the CSSNumericValue interface multiplies the CSSNumericValue by the supplied value.">CSSNumericValue/mul</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-parse"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/parse_static" title="The parse() static method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.">CSSNumericValue/parse_static</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-sub"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/sub" title="The sub() method of the CSSNumericValue interface subtracts a supplied number from the CSSNumericValue.">CSSNumericValue/sub</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-to"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/to" title="The to() method of the CSSNumericValue interface converts a numeric value from one unit to another.">CSSNumericValue/to</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-tosum"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/toSum" title="The toSum() method of the CSSNumericValue interface converts the object&apos;s value to a CSSMathSum object to values of the specified unit.">CSSNumericValue/toSum</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssnumericvalue-type"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/type" title="The type() method of the CSSNumericValue interface returns the type of CSSNumericValue, one of angle, flex, frequency, length, resolution, percent, percentHint, or time.">CSSNumericValue/type</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="numeric-value"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue" title="The CSSNumericValue interface of the CSS Typed Object Model API represents operations that all numeric values can perform.">CSSNumericValue</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssperspective-cssperspective"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPerspective/CSSPerspective" title="The CSSPerspective() constructor creates a new CSSPerspective object representing the perspective() value of the individual transform property in CSS.">CSSPerspective/CSSPerspective</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssperspective-length"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPerspective/length" title="The length property of the CSSPerspective interface sets the distance from z=0.">CSSPerspective/length</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssperspective"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPerspective" title="The CSSPerspective interface of the CSS_Object_Model#css_typed_object_model represents the perspective() value of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSPerspective</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-cssrotate"> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/CSSRotate" title="The CSSRotate() constructor creates a new CSSRotate object representing the rotate() value of the individual transform property in CSS.">CSSRotate/CSSRotate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-cssrotate-x-y-z-angle"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/CSSRotate" title="The CSSRotate() constructor creates a new CSSRotate object representing the rotate() value of the individual transform property in CSS.">CSSRotate/CSSRotate</a></p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8715,12 +9161,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-angle"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/angle" title="The angle property of the CSSRotate interface gets and sets the angle of rotation. A positive angle denotes a clockwise rotation, a negative angle a counter-clockwise one.">CSSRotate/angle</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8731,12 +9176,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-x"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/x" title="The x property of the CSSRotate interface gets and sets the abscissa or x-axis of the translating vector.">CSSRotate/x</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8747,12 +9191,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-y"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/y" title="The y property of the CSSRotate interface gets and sets the ordinate or y-axis of the translating vector.">CSSRotate/y</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8763,12 +9206,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssrotate-z"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate/z" title="The z property of the CSSRotate interface representing the z-component of the translating vector. A positive value moves the element towards the viewer, and a negative value farther away.">CSSRotate/z</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8779,12 +9221,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssrotate"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSRotate" title="The CSSRotate interface of the CSS_Object_Model#css_typed_object_model represents the rotate value of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSRotate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8795,12 +9236,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssscale-cssscale"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSScale/CSSScale" title="The CSSScale() constructor creates a new CSSScale object representing the scale() and scale3d() values of the individual transform property in CSS.">CSSScale/CSSScale</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8811,12 +9251,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssscale-x"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSScale/x" title="The x property of the CSSScale interface gets and sets the abscissa or x-axis of the translating vector.">CSSScale/x</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8827,12 +9266,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssscale-y"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSScale/y" title="The y property of the CSSScale interface gets and sets the ordinate or y-axis of the translating vector.">CSSScale/y</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8843,12 +9281,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssscale-z"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSScale/z" title="The z property of the CSSScale interface representing the z-component of the translating vector. A positive value moves the element towards the viewer, and a negative value farther away.">CSSScale/z</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8859,12 +9296,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssscale"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSScale" title="The CSSScale interface of the CSS_Object_Model#css_typed_object_model represents the scale() and scale3d() values of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSScale</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8875,12 +9311,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskew-cssskew"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkew/CSSSkew" title="The CSSSkew() constructor creates a new CSSSkew object which represents the skew() value of the individual transform property in CSS.">CSSSkew/CSSSkew</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8891,12 +9326,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskew-ax"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkew/ax" title="The ax property of the CSSSkew interface gets and sets the angle used to distort the element along the x-axis (or abscissa).">CSSSkew/ax</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8907,12 +9341,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskew-ay"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkew/ay" title="The ay property of the CSSSkew interface gets and sets the angle used to distort the element along the y-axis (or ordinate).">CSSSkew/ay</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8923,12 +9356,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssskew"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkew" title="The CSSSkew interface of the CSS_Object_Model#css_typed_object_model is part of the CSSTransformValue interface. It represents the skew() value of the individual transform property in CSS.">CSSSkew</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8939,12 +9371,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskewx-cssskewx"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkewX/CSSSkewX" title="The CSSSkewX() constructor creates a new CSSSkewX object which represents the skewX() value of the individual transform property in CSS.">CSSSkewX/CSSSkewX</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8955,12 +9386,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskewx-ax"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkewX/ax" title="The ax property of the CSSSkewX interface gets and sets the angle used to distort the element along the x-axis (or abscissa).">CSSSkewX/ax</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8971,12 +9401,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssskewx"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkewX" title="The CSSSkewX interface of the CSS_Object_Model#css_typed_object_model represents the skewX() value of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSSkewX</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -8987,12 +9416,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskewy-cssskewy"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkewY/CSSSkewY" title="The CSSSkewY() constructor creates a new CSSSkewY object which represents the skewY() value of the individual transform property in CSS.">CSSSkewY/CSSSkewY</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9003,12 +9431,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssskewy-ay"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkewY/ay" title="The ay property of the CSSSkewY interface gets and sets the angle used to distort the element along the y-axis (or ordinate).">CSSSkewY/ay</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9019,12 +9446,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssskewy"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSSkewY" title="The CSSSkewY interface of the CSS_Object_Model#css_typed_object_model represents the skewY() value of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSSkewY</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9035,12 +9461,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssstylerule-stylemap"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleRule/styleMap" title="The styleMap read-only property of the CSSStyleRule interface returns a StylePropertyMap object which provides access to the rule&apos;s property-value pairs.">CSSStyleRule/styleMap</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9051,12 +9476,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssstylevalue-parse"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parse" title="The parse() method of the CSSStyleValue interface sets a specific CSS property to the specified values and returns the first value as a CSSStyleValue object.">CSSStyleValue/parse</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parse_static" title="The parse() static method of the CSSStyleValue interface sets a specific CSS property to the specified values and returns the first value as a CSSStyleValue object.">CSSStyleValue/parse_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9067,12 +9491,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssstylevalue-parseall"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parseAll" title="The parseAll() method of the CSSStyleValue interface sets all occurrences of a specific CSS property to the specified value and returns an array of CSSStyleValue objects, each containing one of the supplied values.">CSSStyleValue/parseAll</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue/parseAll_static" title="The parseAll() static method of the CSSStyleValue interface sets all occurrences of a specific CSS property to the specified value and returns an array of CSSStyleValue objects, each containing one of the supplied values.">CSSStyleValue/parseAll_static</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9083,12 +9506,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="stylevalue-objects"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue" title="The CSSStyleValue interface of the CSS Typed Object Model API is the base class of all CSS values accessible through the Typed OM API. An instance of this class may be used anywhere a string is expected.">CSSStyleValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9099,12 +9521,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstransformcomponent-is2d"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformComponent/is2D" title="The is2D read-only property of the CSSTransformComponent interface indicates where the transform is 2D or 3D.">CSSTransformComponent/is2D</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9115,12 +9536,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstransformcomponent-tomatrix"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformComponent/toMatrix" title="The toMatrix() method of the CSSTransformComponent interface returns a DOMMatrix object.">CSSTransformComponent/toMatrix</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9131,12 +9551,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="CSSTransformComponent-stringification-behavior"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformComponent/toString" title="The toString() method of the CSSTransformComponent interface is a stringifier returning a CSS Transforms function.">CSSTransformComponent/toString</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9147,12 +9566,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="csstransformcomponent"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformComponent" title="The CSSTransformComponent interface of the CSS_Object_Model#css_typed_object_model is part of the CSSTransformValue interface.">CSSTransformComponent</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9163,12 +9581,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstransformvalue-csstransformvalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformValue/CSSTransformValue" title="The CSSTransformValue() constructor creates a new CSSTransformValue object which represents a list of individual transform objects.">CSSTransformValue/CSSTransformValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9179,12 +9596,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstransformvalue-is2d"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformValue/is2D" title="The read-only is2D property of the CSSTransformValue interface returns whether the transform is 2D or 3D.">CSSTransformValue/is2D</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9195,12 +9611,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstransformvalue-length"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformValue/length" title="The read-only length property of the CSSTransformValue interface returns the number of transform components in the list.">CSSTransformValue/length</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9211,12 +9626,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstransformvalue-tomatrix"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformValue/toMatrix" title="The toMatrix() method of the CSSTransformValue interface returns a DOMMatrix object.">CSSTransformValue/toMatrix</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9227,12 +9641,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="transformvalue-objects"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransformValue" title="The CSSTransformValue interface of the CSS_Object_Model#css_typed_object_model represents transform-list values as used by the CSS transform property.">CSSTransformValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9243,12 +9656,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstranslate-csstranslate"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTranslate/CSSTranslate" title="The CSSTranslate() constructor creates a new CSSTranslate object representing the translate() value of the individual transform property in CSS.">CSSTranslate/CSSTranslate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9259,12 +9671,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstranslate-x"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTranslate/x" title="The x property of the CSSTranslate interface gets and sets the abscissa or x-axis of the translating vector.">CSSTranslate/x</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9275,12 +9686,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstranslate-y"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTranslate/y" title="The y property of the CSSTranslate interface gets and sets the ordinate or y-axis of the translating vector.">CSSTranslate/y</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9291,12 +9701,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csstranslate-z"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTranslate/z" title="The z property of the CSSTranslate interface representing the z-component of the translating vector. A positive value moves the element towards the viewer, and a negative value farther away.">CSSTranslate/z</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9307,12 +9716,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="csstranslate"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTranslate" title="The CSSTranslate interface of the CSS_Object_Model#css_typed_object_model represents the translate() value of the individual transform property in CSS. It inherits properties and methods from its parent CSSTransformValue.">CSSTranslate</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9323,12 +9731,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssunitvalue-cssunitvalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnitValue/CSSUnitValue" title="The CSSUnitValue() constructor creates a new CSSUnitValue object which returns a new CSSUnitValue object which represents values that contain a single unit type. For example, &quot;42px&quot; would be represented by a CSSNumericValue.">CSSUnitValue/CSSUnitValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9339,12 +9746,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssunitvalue-unit"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnitValue/unit" title="The CSSUnitValue.unit read-only property of the CSSUnitValue interface returns a string indicating the type of unit.">CSSUnitValue/unit</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9355,12 +9761,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssunitvalue-value"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnitValue/value" title="The CSSUnitValue.value property of the CSSUnitValue interface returns a double indicating the number of units.">CSSUnitValue/value</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9371,12 +9776,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="simple-numeric"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnitValue" title="The CSSUnitValue interface of the CSS_Object_Model#css_typed_object_model represents values that contain a single unit type. For example, &quot;42px&quot; would be represented by a CSSNumericValue.">CSSUnitValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9387,12 +9791,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssunparsedvalue-cssunparsedvalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/CSSUnparsedValue" title="The CSSUnparsedValue() constructor creates a new CSSUnparsedValue object which represents property values that reference custom properties.">CSSUnparsedValue/CSSUnparsedValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9403,12 +9806,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssunparsedvalue-length"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/length" title="The length read-only property of the CSSUnparsedValue interface returns the number of items in the object.">CSSUnparsedValue/length</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9419,12 +9821,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssunparsedvalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue" title="The CSSUnparsedValue interface of the CSS_Object_Model#css_typed_object_model represents property values that reference custom properties. It consists of a list of string fragments and variable references.">CSSUnparsedValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9435,12 +9836,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssvariablereferencevalue-cssvariablereferencevalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSVariableReferenceValue/CSSVariableReferenceValue" title="Creates a new CSSVariableReferenceValue.">CSSVariableReferenceValue/CSSVariableReferenceValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9451,12 +9851,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssvariablereferencevalue-fallback"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSVariableReferenceValue/fallback" title="The fallback read-only property of the CSSVariableReferenceValue interface returns the custom property fallback value of the CSSVariableReferenceValue.">CSSVariableReferenceValue/fallback</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9467,12 +9866,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssvariablereferencevalue-variable"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSVariableReferenceValue/variable" title="The variable property of the CSSVariableReferenceValue interface returns the custom property name of the CSSVariableReferenceValue.">CSSVariableReferenceValue/variable</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9483,12 +9881,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="cssvariablereferencevalue"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSVariableReferenceValue" title="The CSSVariableReferenceValue interface of the CSS_Object_Model#css_typed_object_model allows you to create a custom name for a built-in CSS value. This object functionality is sometimes called a &quot;CSS variable&quot; and serves the same purpose as the var() function. The custom name must begin with two dashes.">CSSVariableReferenceValue</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9499,12 +9896,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-element-computedstylemap"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/computedStyleMap" title="The computedStyleMap() method of the Element interface returns a StylePropertyMapReadOnly interface which provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.">Element/computedStyleMap</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9515,12 +9911,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymap-append"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMap/append" title="The append() method of the StylePropertyMap interface adds the passed CSS value to the StylePropertyMap with the given property.">StylePropertyMap/append</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9531,12 +9926,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymap-clear"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMap/clear" title="The clear() method of the StylePropertyMap interface removes all declarations in the StylePropertyMap.">StylePropertyMap/clear</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9547,12 +9941,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymap-delete"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMap/delete" title="The delete() method of the StylePropertyMap interface removes the CSS declaration with the given property.">StylePropertyMap/delete</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9563,12 +9956,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymap-set"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMap/set" title="The set() method of the StylePropertyMap interface changes the CSS declaration with the given property.">StylePropertyMap/set</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9579,12 +9971,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-stylepropertymap"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMap" title="The StylePropertyMap interface of the CSS Typed Object Model API provides a representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.">StylePropertyMap</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9595,9 +9986,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly" title="The StylePropertyMapReadOnly interface of the CSS Typed Object Model API provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration. Retrieve an instance of this interface using Element.computedStyleMap().">StylePropertyMapReadOnly</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9608,12 +9998,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymapreadonly-get"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/get" title="The get() method of the StylePropertyMapReadOnly interface returns a CSSStyleValue object for the first value of the specified property.">StylePropertyMapReadOnly/get</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9624,12 +10013,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymapreadonly-getall"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/getAll" title="The getAll() method of the StylePropertyMapReadOnly interface returns an array of CSSStyleValue objects containing the values for the provided property.">StylePropertyMapReadOnly/getAll</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9640,12 +10028,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymapreadonly-has"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/has" title="The has() method of the StylePropertyMapReadOnly interface indicates whether the specified property is in the StylePropertyMapReadOnly object.">StylePropertyMapReadOnly/has</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9656,12 +10043,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-stylepropertymapreadonly-size"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size" title="The size read-only property of the StylePropertyMapReadOnly interface returns an unsigned long integer containing the size of the StylePropertyMapReadOnly object.">StylePropertyMapReadOnly/size</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9882,7 +10268,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "03afaf9c": {"dfnID":"03afaf9c","dfnText":"empty","external":true,"refSections":[{"refs":[{"id":"ref-for-list-empty"},{"id":"ref-for-list-empty\u2460"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-list-empty\u2461"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://infra.spec.whatwg.org/#list-empty"}, "03d34748": {"dfnID":"03d34748","dfnText":"marker-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-marker-side"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-marker-side"}, "051caff4": {"dfnID":"051caff4","dfnText":"voice-balance","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-voice-balance"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-voice-balance"}, -"052babf7": {"dfnID":"052babf7","dfnText":"border-block-start-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-style"}, "052c1740": {"dfnID":"052c1740","dfnText":"margin-block-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-block-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block-end"}, "0570259e": {"dfnID":"0570259e","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-float"}, "0698d556": {"dfnID":"0698d556","dfnText":"string","external":true,"refSections":[{"refs":[{"id":"ref-for-string"},{"id":"ref-for-string\u2460"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-string\u2461"}],"title":"2.1. Direct CSSStyleValue Objects"},{"refs":[{"id":"ref-for-string\u2462"},{"id":"ref-for-string\u2463"},{"id":"ref-for-string\u2464"},{"id":"ref-for-string\u2465"},{"id":"ref-for-string\u2466"},{"id":"ref-for-string\u2467"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-string\u2468"}],"title":"6.1. CSSUnparsedValue Serialization"},{"refs":[{"id":"ref-for-string\u2460\u24ea"}],"title":"6.4. CSSMathValue Serialization"},{"refs":[{"id":"ref-for-string\u2460\u2460"},{"id":"ref-for-string\u2460\u2461"},{"id":"ref-for-string\u2460\u2462"}],"title":"6.5. CSSTransformValue and CSSTransformComponent Serialization"}],"url":"https://infra.spec.whatwg.org/#string"}, @@ -9908,14 +10293,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "0e8de730": {"dfnID":"0e8de730","dfnText":"tuple","external":true,"refSections":[{"refs":[{"id":"ref-for-tuple"},{"id":"ref-for-tuple\u2460"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://infra.spec.whatwg.org/#tuple"}, "0f07310d": {"dfnID":"0f07310d","dfnText":"cx","external":true,"refSections":[{"refs":[{"id":"ref-for-CxProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/geometry.html#CxProperty"}, "0f401002": {"dfnID":"0f401002","dfnText":"translatex()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-transform-translatex"},{"id":"ref-for-funcdef-transform-translatex\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translatex"}, -"0f90c115": {"dfnID":"0f90c115","dfnText":"border-block-end-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-width"}, "0fdaa620": {"dfnID":"0fdaa620","dfnText":"justify-self","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-justify-self"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-justify-self"}, "0fffddd1": {"dfnID":"0fffddd1","dfnText":"inline-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-inline-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-inline-size"}, "11151628": {"dfnID":"11151628","dfnText":"mask-clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-clip"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-clip"}, "11c5a02b": {"dfnID":"11c5a02b","dfnText":"margin-inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-inline-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-inline-end"}, -"11ec9096": {"dfnID":"11ec9096","dfnText":"border-inline-end-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-style"}, "11fb4d5b": {"dfnID":"11fb4d5b","dfnText":"background-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-color"}],"title":"5.1. Property-specific Rules"},{"refs":[{"id":"ref-for-propdef-background-color\u2460"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color"}, +"121d9bdb": {"dfnID":"121d9bdb","dfnText":"border-inline-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start"}, "1243a891": {"dfnID":"1243a891","dfnText":"exist","external":true,"refSections":[{"refs":[{"id":"ref-for-map-exists"},{"id":"ref-for-map-exists\u2460"},{"id":"ref-for-map-exists\u2461"},{"id":"ref-for-map-exists\u2462"},{"id":"ref-for-map-exists\u2463"},{"id":"ref-for-map-exists\u2464"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-map-exists\u2465"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-map-exists\u2466"},{"id":"ref-for-map-exists\u2467"},{"id":"ref-for-map-exists\u2468"},{"id":"ref-for-map-exists\u2460\u24ea"},{"id":"ref-for-map-exists\u2460\u2460"},{"id":"ref-for-map-exists\u2460\u2461"},{"id":"ref-for-map-exists\u2460\u2462"},{"id":"ref-for-map-exists\u2460\u2463"},{"id":"ref-for-map-exists\u2460\u2464"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://infra.spec.whatwg.org/#map-exists"}, +"125de889": {"dfnID":"125de889","dfnText":"border-inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end"}, "12629b81": {"dfnID":"12629b81","dfnText":"margin-block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-block-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block-start"}, "12cf38c9": {"dfnID":"12cf38c9","dfnText":"initial-letter","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-initial-letter"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-initial-letter"}, "12d6b9a8": {"dfnID":"12d6b9a8","dfnText":"values","external":true,"refSections":[{"refs":[{"id":"ref-for-map-getting-the-values"}],"title":"4.3.2. Numeric Value Typing"},{"refs":[{"id":"ref-for-map-getting-the-values\u2460"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"}],"url":"https://infra.spec.whatwg.org/#map-getting-the-values"}, @@ -9933,10 +10318,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "17fc5603": {"dfnID":"17fc5603","dfnText":"canonical unit","external":true,"refSections":[{"refs":[{"id":"ref-for-canonical-unit"},{"id":"ref-for-canonical-unit\u2460"},{"id":"ref-for-canonical-unit\u2461"},{"id":"ref-for-canonical-unit\u2462"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-canonical-unit\u2463"},{"id":"ref-for-canonical-unit\u2464"}],"title":"5.6. <number>, <percentage>, and <dimension> values"}],"url":"https://drafts.csswg.org/css-values-4/#canonical-unit"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"}],"title":"4.3.2. Numeric Value Typing"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2461"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "18f79675": {"dfnID":"18f79675","dfnText":"translate3d()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-translate3d"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-translate3d"}, -"1907b4dd": {"dfnID":"1907b4dd","dfnText":"border-inline-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start"}, "194f46b6": {"dfnID":"194f46b6","dfnText":"text-size-adjust","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-size-adjust"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-size-adjust-1/#propdef-text-size-adjust"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"},{"id":"ref-for-custom-property\u2460"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-custom-property\u2461"},{"id":"ref-for-custom-property\u2462"}],"title":"3.1. Computed StylePropertyMapReadOnly objects"},{"refs":[{"id":"ref-for-custom-property\u2463"},{"id":"ref-for-custom-property\u2464"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, -"19a240c0": {"dfnID":"19a240c0","dfnText":"border-block-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-style"}, "19c03666": {"dfnID":"19c03666","dfnText":"font-synthesis","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-synthesis"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis"}, "1a55f38d": {"dfnID":"1a55f38d","dfnText":"outline-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-style"}, "1a63abfd": {"dfnID":"1a63abfd","dfnText":"border-image-slice","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image-slice"},{"id":"ref-for-propdef-border-image-slice\u2460"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-slice"}, @@ -9948,18 +10331,20 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1e94b403": {"dfnID":"1e94b403","dfnText":"voice-stress","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-voice-stress"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-voice-stress"}, "1ee7f091": {"dfnID":"1ee7f091","dfnText":"outline-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-color"}, "20bdc649": {"dfnID":"20bdc649","dfnText":"text-decoration-skip-ink","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration-skip-ink"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip-ink"}, +"22308f61": {"dfnID":"22308f61","dfnText":"volume","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-volume"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-volume"}, "223bd4c4": {"dfnID":"223bd4c4","dfnText":"scale","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scale"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transforms-2/#propdef-scale"}, "225a8f51": {"dfnID":"225a8f51","dfnText":"scroll-margin-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block"}, "229ebbaa": {"dfnID":"229ebbaa","dfnText":"mask-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-mode"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-mode"}, "23809067": {"dfnID":"23809067","dfnText":"nav-up","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-nav-up"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-nav-up"}, "23d7d55d": {"dfnID":"23d7d55d","dfnText":"channels","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-csscolor-channels"}],"title":"4.6. CSSColorValue objects"}],"url":"https://drafts.css-houdini.org/css-typed-om-1/#dom-csscolor-channels"}, "2467179e": {"dfnID":"2467179e","dfnText":"content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-content"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-content-3/#propdef-content"}, +"24bdba2c": {"dfnID":"24bdba2c","dfnText":"speak-punctuation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-speak-punctuation"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation"}, "24c4db74": {"dfnID":"24c4db74","dfnText":"border-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top"},{"id":"ref-for-propdef-border-top\u2460"},{"id":"ref-for-propdef-border-top\u2461"},{"id":"ref-for-propdef-border-top\u2462"},{"id":"ref-for-propdef-border-top\u2463"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top"}, "24f4b323": {"dfnID":"24f4b323","dfnText":"overflow-x","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow-x"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow-x"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, -"25a128cf": {"dfnID":"25a128cf","dfnText":"border-inline-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-style"}, "261e1efd": {"dfnID":"261e1efd","dfnText":"stroke-dash-corner","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-dash-corner"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-dash-corner"}, "2641466b": {"dfnID":"2641466b","dfnText":"transition-duration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transition-duration"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration"}, +"26b72b18": {"dfnID":"26b72b18","dfnText":"border-block-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color"}, "280cdaac": {"dfnID":"280cdaac","dfnText":"stroke-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-image"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-image"}, "296f3551": {"dfnID":"296f3551","dfnText":"Element","external":true,"refSections":[{"refs":[{"id":"ref-for-element"},{"id":"ref-for-element\u2460"},{"id":"ref-for-element\u2461"},{"id":"ref-for-element\u2462"}],"title":"3.1. Computed StylePropertyMapReadOnly objects"}],"url":"https://dom.spec.whatwg.org/#element"}, "29a4aea4": {"dfnID":"29a4aea4","dfnText":"<frequency>","external":true,"refSections":[{"refs":[{"id":"ref-for-frequency-value"},{"id":"ref-for-frequency-value\u2460"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://drafts.csswg.org/css-values-4/#frequency-value"}, @@ -9984,6 +10369,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"},{"id":"ref-for-angle-value\u2460"}],"title":"4.3.2. Numeric Value Typing"},{"refs":[{"id":"ref-for-angle-value\u2461"},{"id":"ref-for-angle-value\u2462"},{"id":"ref-for-angle-value\u2463"},{"id":"ref-for-angle-value\u2464"},{"id":"ref-for-angle-value\u2465"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-angle-value\u2466"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "355da394": {"dfnID":"355da394","dfnText":"outline","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline"}, "35fd0e56": {"dfnID":"35fd0e56","dfnText":"place-items","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-place-items"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-place-items"}, +"36504895": {"dfnID":"36504895","dfnText":"azimuth","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-azimuth"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth"}, "36789bc1": {"dfnID":"36789bc1","dfnText":"inset","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-inset"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-inset"}, "3680847b": {"dfnID":"3680847b","dfnText":"border-image-source","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image-source"}],"title":"4.5. CSSImageValue objects"},{"refs":[{"id":"ref-for-propdef-border-image-source\u2460"},{"id":"ref-for-propdef-border-image-source\u2461"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-source"}, "37328630": {"dfnID":"37328630","dfnText":"stop-color","external":true,"refSections":[{"refs":[{"id":"ref-for-StopColorProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/pservers.html#StopColorProperty"}, @@ -10004,7 +10390,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "3d5243d5": {"dfnID":"3d5243d5","dfnText":"object-fit","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-object-fit"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-images-4/#propdef-object-fit"}, "3f0b4366": {"dfnID":"3f0b4366","dfnText":"offset","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-offset"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/motion-1/#propdef-offset"}, "3f82a859": {"dfnID":"3f82a859","dfnText":"offset-anchor","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-offset-anchor"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/motion-1/#propdef-offset-anchor"}, -"3fbe8c02": {"dfnID":"3fbe8c02","dfnText":"border-block-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-color"}, "3fca5a9e": {"dfnID":"3fca5a9e","dfnText":"map","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-map"},{"id":"ref-for-ordered-map\u2460"},{"id":"ref-for-ordered-map\u2461"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-ordered-map\u2462"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-ordered-map\u2463"},{"id":"ref-for-ordered-map\u2464"},{"id":"ref-for-ordered-map\u2465"},{"id":"ref-for-ordered-map\u2466"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://infra.spec.whatwg.org/#ordered-map"}, "4014202e": {"dfnID":"4014202e","dfnText":"nav-down","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-nav-down"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-nav-down"}, "4202ca10": {"dfnID":"4202ca10","dfnText":"<angle-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-angle-percentage"},{"id":"ref-for-typedef-angle-percentage\u2460"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-angle-percentage"}, @@ -10015,8 +10400,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "443d78ea": {"dfnID":"443d78ea","dfnText":"grid-row-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-row-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-row-start"}, "45209803": {"dfnID":"45209803","dfnText":"for each (for map)","external":true,"refSections":[{"refs":[{"id":"ref-for-map-iterate"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-map-iterate\u2460"},{"id":"ref-for-map-iterate\u2461"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-map-iterate\u2462"},{"id":"ref-for-map-iterate\u2463"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://infra.spec.whatwg.org/#map-iterate"}, +"45a96a37": {"dfnID":"45a96a37","dfnText":"border-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block"}, "45f25378": {"dfnID":"45f25378","dfnText":"skew()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-transform-skew"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-funcdef-transform-skew\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-1/#funcdef-transform-skew"}, -"46f3dfbb": {"dfnID":"46f3dfbb","dfnText":"border-block-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color"}, "475d27ea": {"dfnID":"475d27ea","dfnText":"scroll-padding-inline-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding-inline-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-inline-start"}, "48350e83": {"dfnID":"48350e83","dfnText":"align-self","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-align-self"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-align-self"}, "48dc3432": {"dfnID":"48dc3432","dfnText":"line-grid","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-grid"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-line-grid-1/#propdef-line-grid"}, @@ -10039,12 +10424,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4ffe613d": {"dfnID":"4ffe613d","dfnText":"<percentage-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-percentage-token"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-percentage-token"}, "4ffe871f": {"dfnID":"4ffe871f","dfnText":"DOMMatrix","external":true,"refSections":[{"refs":[{"id":"ref-for-dommatrix"},{"id":"ref-for-dommatrix\u2460"},{"id":"ref-for-dommatrix\u2461"},{"id":"ref-for-dommatrix\u2462"},{"id":"ref-for-dommatrix\u2463"},{"id":"ref-for-dommatrix\u2464"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://drafts.fxtf.org/geometry-1/#dommatrix"}, "500f2c1d": {"dfnID":"500f2c1d","dfnText":"border-top-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-color"},{"id":"ref-for-propdef-border-top-color\u2460"},{"id":"ref-for-propdef-border-top-color\u2461"},{"id":"ref-for-propdef-border-top-color\u2462"},{"id":"ref-for-propdef-border-top-color\u2463"},{"id":"ref-for-propdef-border-top-color\u2464"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color"}, +"50391fa8": {"dfnID":"50391fa8","dfnText":"border-block-end-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width"}, "510cef3b": {"dfnID":"510cef3b","dfnText":"text-decoration-fill","external":true,"refSections":[{"refs":[{"id":"ref-for-TextDecorationFillProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/SVG2/text.html#TextDecorationFillProperty"}, "51e9c018": {"dfnID":"51e9c018","dfnText":"ruby-merge","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-ruby-merge"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ruby-1/#propdef-ruby-merge"}, "53275e46": {"dfnID":"53275e46","dfnText":"append","external":true,"refSections":[{"refs":[{"id":"ref-for-list-append"},{"id":"ref-for-list-append\u2460"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-list-append\u2461"}],"title":"4.1. CSSUnparsedValue objects"},{"refs":[{"id":"ref-for-list-append\u2462"},{"id":"ref-for-list-append\u2463"},{"id":"ref-for-list-append\u2464"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-list-append\u2465"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://infra.spec.whatwg.org/#list-append"}, "5348b29d": {"dfnID":"5348b29d","dfnText":"padding-block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-block-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-padding-block-start"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-idl-boolean\u2460"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-idl-boolean\u2461"},{"id":"ref-for-idl-boolean\u2462"},{"id":"ref-for-idl-boolean\u2463"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, "539e4c80": {"dfnID":"539e4c80","dfnText":"image-resolution","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-image-resolution"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-images-4/#propdef-image-resolution"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"4.3. Numeric Values:"},{"refs":[{"id":"ref-for-propdef-z-index\u2460"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "54fa0afb": {"dfnID":"54fa0afb","dfnText":"backdrop-filter","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-backdrop-filter"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/filter-effects-2/#propdef-backdrop-filter"}, "5594901c": {"dfnID":"5594901c","dfnText":"ElementCSSInlineStyle","external":true,"refSections":[{"refs":[{"id":"ref-for-elementcssinlinestyle"},{"id":"ref-for-elementcssinlinestyle\u2460"}],"title":"3.2. Declared & Inline StylePropertyMap objects"}],"url":"https://drafts.csswg.org/cssom-1/#elementcssinlinestyle"}, "559a1521": {"dfnID":"559a1521","dfnText":"isolation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-isolation"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/compositing-2/#propdef-isolation"}, @@ -10055,7 +10442,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "57dbc9ff": {"dfnID":"57dbc9ff","dfnText":"border-image-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image-width"},{"id":"ref-for-propdef-border-image-width\u2460"},{"id":"ref-for-propdef-border-image-width\u2461"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-width"}, "584e9c31": {"dfnID":"584e9c31","dfnText":"calc()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-calc"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"},{"refs":[{"id":"ref-for-funcdef-calc\u2460"},{"id":"ref-for-funcdef-calc\u2461"}],"title":"5.6. <number>, <percentage>, and <dimension> values"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-calc"}, "58a520d5": {"dfnID":"58a520d5","dfnText":"mask-repeat","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-repeat"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat"}, +"58cdf4fb": {"dfnID":"58cdf4fb","dfnText":"border-block-start-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style"}, "58d94cb8": {"dfnID":"58d94cb8","dfnText":"grid-column","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-column"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-column"}, +"59de49b2": {"dfnID":"59de49b2","dfnText":"border-inline","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline"}, "5a1d84b9": {"dfnID":"5a1d84b9","dfnText":"d","external":true,"refSections":[{"refs":[{"id":"ref-for-DProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/paths.html#DProperty"}, "5a2f7ea1": {"dfnID":"5a2f7ea1","dfnText":"url()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-url"}],"title":"4.5. CSSImageValue objects"},{"refs":[{"id":"ref-for-funcdef-url\u2460"},{"id":"ref-for-funcdef-url\u2461"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-url"}, "5ac891d7": {"dfnID":"5ac891d7","dfnText":"stroke-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-break"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-break"}, @@ -10066,17 +10455,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5c4b7db5": {"dfnID":"5c4b7db5","dfnText":"border-bottom-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color"}, "5d275b21": {"dfnID":"5d275b21","dfnText":"<overflow-position>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-overflow-position"},{"id":"ref-for-typedef-overflow-position\u2460"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#typedef-overflow-position"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, +"5d70435a": {"dfnID":"5d70435a","dfnText":"border-block-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end"}, "5dea8beb": {"dfnID":"5dea8beb","dfnText":"scroll-padding-block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding-block-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block-start"}, "5e2a67d5": {"dfnID":"5e2a67d5","dfnText":"ruby-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-ruby-align"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ruby-1/#propdef-ruby-align"}, "5f162d41": {"dfnID":"5f162d41","dfnText":"scale3d()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-scale3d"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-scale3d"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"},{"id":"ref-for-idl-undefined\u2460"},{"id":"ref-for-idl-undefined\u2461"},{"id":"ref-for-idl-undefined\u2462"}],"title":"3. The StylePropertyMap"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "6052f41c": {"dfnID":"6052f41c","dfnText":"CSSStyleRule","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstylerule"},{"id":"ref-for-cssstylerule\u2460"},{"id":"ref-for-cssstylerule\u2461"},{"id":"ref-for-cssstylerule\u2462"}],"title":"3.2. Declared & Inline StylePropertyMap objects"}],"url":"https://drafts.csswg.org/cssom-1/#cssstylerule"}, +"60e9c55d": {"dfnID":"60e9c55d","dfnText":"border-inline-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color"}, "61111288": {"dfnID":"61111288","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-top-auto"},{"id":"ref-for-valdef-top-auto\u2460"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-valdef-top-auto\u2461"},{"id":"ref-for-valdef-top-auto\u2462"},{"id":"ref-for-valdef-top-auto\u2463"},{"id":"ref-for-valdef-top-auto\u2464"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-position-3/#valdef-top-auto"}, "61fd84c3": {"dfnID":"61fd84c3","dfnText":"transform-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transform-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transforms-2/#propdef-transform-style"}, "623d7634": {"dfnID":"623d7634","dfnText":"rest-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-rest-before"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-rest-before"}, "6276ac24": {"dfnID":"6276ac24","dfnText":"grid-template-areas","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-template-areas"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-template-areas"}, +"635a5b71": {"dfnID":"635a5b71","dfnText":"border-inline-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color"}, "63a7a8ed": {"dfnID":"63a7a8ed","dfnText":"style (for html-global)","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-style"}],"title":"4.5. CSSImageValue objects"}],"url":"https://html.spec.whatwg.org/multipage/dom.html#attr-style"}, "647de2a6": {"dfnID":"647de2a6","dfnText":"cursor","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-cursor"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-cursor"}, "649608b9": {"dfnID":"649608b9","dfnText":"list","external":true,"refSections":[{"refs":[{"id":"ref-for-list"},{"id":"ref-for-list\u2460"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-list\u2461"},{"id":"ref-for-list\u2462"},{"id":"ref-for-list\u2463"},{"id":"ref-for-list\u2464"},{"id":"ref-for-list\u2465"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-list\u2466"}],"title":"4.1. CSSUnparsedValue objects"},{"refs":[{"id":"ref-for-list\u2467"},{"id":"ref-for-list\u2468"},{"id":"ref-for-list\u2460\u24ea"},{"id":"ref-for-list\u2460\u2460"},{"id":"ref-for-list\u2460\u2461"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-list\u2460\u2462"},{"id":"ref-for-list\u2460\u2463"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-list\u2460\u2464"}],"title":"5.3. Raw CSS tokens: properties with var() references"},{"refs":[{"id":"ref-for-list\u2460\u2465"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://infra.spec.whatwg.org/#list"}, @@ -10088,23 +10479,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "66a959ce": {"dfnID":"66a959ce","dfnText":"stroke","external":true,"refSections":[{"refs":[{"id":"ref-for-StrokeProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#StrokeProperty"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6821b177": {"dfnID":"6821b177","dfnText":"mask-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-image"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-image"}, -"6882117f": {"dfnID":"6882117f","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, "689df481": {"dfnID":"689df481","dfnText":"stroke-linejoin","external":true,"refSections":[{"refs":[{"id":"ref-for-StrokeLinejoinProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#StrokeLinejoinProperty"}, "691fe546": {"dfnID":"691fe546","dfnText":"color-interpolation","external":true,"refSections":[{"refs":[{"id":"ref-for-ColorInterpolationProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#ColorInterpolationProperty"}, -"694d67fb": {"dfnID":"694d67fb","dfnText":"border-inline-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-width"}, "6a10a8b5": {"dfnID":"6a10a8b5","dfnText":"marker-start","external":true,"refSections":[{"refs":[{"id":"ref-for-MarkerStartProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#MarkerStartProperty"}, "6ab8bc69": {"dfnID":"6ab8bc69","dfnText":"bookmark-label","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bookmark-label"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-content-3/#propdef-bookmark-label"}, "6ae98fc9": {"dfnID":"6ae98fc9","dfnText":"rotate","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-rotate"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transforms-2/#propdef-rotate"}, "6b116b45": {"dfnID":"6b116b45","dfnText":"origin-clean flag","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag"}],"title":"3.1. Computed StylePropertyMapReadOnly objects"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-origin-clean-flag"}, "6b14b18a": {"dfnID":"6b14b18a","dfnText":"clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clip"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-clip"}, +"6b65248d": {"dfnID":"6b65248d","dfnText":"border-block-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-color"}, "6b712c13": {"dfnID":"6b712c13","dfnText":"block-step-round","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-block-step-round"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-rhythm-1/#propdef-block-step-round"}, "6b815fdd": {"dfnID":"6b815fdd","dfnText":"is empty","external":true,"refSections":[{"refs":[{"id":"ref-for-list-is-empty"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"},{"refs":[{"id":"ref-for-list-is-empty\u2460"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://infra.spec.whatwg.org/#list-is-empty"}, "6c11133a": {"dfnID":"6c11133a","dfnText":"grid-column-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-column-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-column-start"}, "6c1be06e": {"dfnID":"6c1be06e","dfnText":"offset-distance","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-offset-distance"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/motion-1/#propdef-offset-distance"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"}],"title":"3. The StylePropertyMap"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, "6ce023df": {"dfnID":"6ce023df","dfnText":"stroke-dashoffset","external":true,"refSections":[{"refs":[{"id":"ref-for-StrokeDashoffsetProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#StrokeDashoffsetProperty"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6d86f7f7": {"dfnID":"6d86f7f7","dfnText":"pause-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-pause-after"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-pause-after"}, -"6de818f9": {"dfnID":"6de818f9","dfnText":"border-inline-end-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-width"}, "6e04ae14": {"dfnID":"6e04ae14","dfnText":"scroll-padding-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block"}, "6e57cf97": {"dfnID":"6e57cf97","dfnText":"shape-margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-shape-margin"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-shapes-1/#propdef-shape-margin"}, "6f2dfa22": {"dfnID":"6f2dfa22","dfnText":"ascii lowercase","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-lowercase"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-ascii-lowercase\u2460"},{"id":"ref-for-ascii-lowercase\u2461"},{"id":"ref-for-ascii-lowercase\u2462"},{"id":"ref-for-ascii-lowercase\u2463"},{"id":"ref-for-ascii-lowercase\u2464"},{"id":"ref-for-ascii-lowercase\u2465"},{"id":"ref-for-ascii-lowercase\u2466"},{"id":"ref-for-ascii-lowercase\u2467"}],"title":"3. The StylePropertyMap"}],"url":"https://infra.spec.whatwg.org/#ascii-lowercase"}, @@ -10126,25 +10516,27 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "7575be44": {"dfnID":"7575be44","dfnText":"font-language-override","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-language-override"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-language-override"}, "75b51222": {"dfnID":"75b51222","dfnText":"fill-opacity","external":true,"refSections":[{"refs":[{"id":"ref-for-FillOpacityProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#FillOpacityProperty"}, "75e46141": {"dfnID":"75e46141","dfnText":"box-sizing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-sizing"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing"}, -"75e7d8af": {"dfnID":"75e7d8af","dfnText":"border-block-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end"}, "75f6cfb6": {"dfnID":"75f6cfb6","dfnText":"justify-content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-justify-content"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-justify-content"}, "76207212": {"dfnID":"76207212","dfnText":"padding-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-left"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-left"}, "76c4403d": {"dfnID":"76c4403d","dfnText":"parse","external":true,"refSections":[{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2460"}],"title":"4.6. CSSColorValue objects"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, "77f17203": {"dfnID":"77f17203","dfnText":"clip-path","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clip-path"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-clip-path"}, +"78404507": {"dfnID":"78404507","dfnText":"stress","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stress"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-stress"}, "78a34e77": {"dfnID":"78a34e77","dfnText":"margin-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block"}, "79f99545": {"dfnID":"79f99545","dfnText":"grid-row-gap","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-row-gap"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-grid-row-gap"}, "79fe07ed": {"dfnID":"79fe07ed","dfnText":"bookmark-level","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bookmark-level"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-content-3/#propdef-bookmark-level"}, "7a03d15b": {"dfnID":"7a03d15b","dfnText":"fill-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-fill-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-size"}, "7aa5d99a": {"dfnID":"7aa5d99a","dfnText":"transition-delay","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transition-delay"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transitions-1/#propdef-transition-delay"}, +"7b5a0ddb": {"dfnID":"7b5a0ddb","dfnText":"border-block-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color"}, "7b665bf7": {"dfnID":"7b665bf7","dfnText":"rx","external":true,"refSections":[{"refs":[{"id":"ref-for-RxProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/geometry.html#RxProperty"}, "7be9005f": {"dfnID":"7be9005f","dfnText":"scaley()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-scaley"},{"id":"ref-for-funcdef-scaley\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-scaley"}, -"7c2461b4": {"dfnID":"7c2461b4","dfnText":"border-inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end"}, "7c31c7d3": {"dfnID":"7c31c7d3","dfnText":"rotatez()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rotatez"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-rotatez"}, +"7ca33cdf": {"dfnID":"7ca33cdf","dfnText":"speak-header","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-speak-header"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header"}, "7d4424b2": {"dfnID":"7d4424b2","dfnText":"remove (for map)","external":true,"refSections":[{"refs":[{"id":"ref-for-map-remove"},{"id":"ref-for-map-remove\u2460"},{"id":"ref-for-map-remove\u2461"}],"title":"3. The StylePropertyMap"}],"url":"https://infra.spec.whatwg.org/#map-remove"}, "7d8e4778": {"dfnID":"7d8e4778","dfnText":"DOMMatrixReadOnly","external":true,"refSections":[{"refs":[{"id":"ref-for-dommatrixreadonly"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://drafts.fxtf.org/geometry-1/#dommatrixreadonly"}, "7de09c13": {"dfnID":"7de09c13","dfnText":"flex-basis","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-basis"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis"}, "7dee9c12": {"dfnID":"7dee9c12","dfnText":"grid-column-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-column-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-column-end"}, "7e095c03": {"dfnID":"7e095c03","dfnText":"rotatex()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rotatex"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-rotatex"}, +"7ee8e6fb": {"dfnID":"7ee8e6fb","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, "7ffa1652": {"dfnID":"7ffa1652","dfnText":"outline-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-width"}, "8000726e": {"dfnID":"8000726e","dfnText":"border-left-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width"}, "801118f1": {"dfnID":"801118f1","dfnText":"x","external":true,"refSections":[{"refs":[{"id":"ref-for-XProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/geometry.html#XProperty"}, @@ -10156,11 +10548,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "84566536": {"dfnID":"84566536","dfnText":"padding-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-padding-block"}, "847d4593": {"dfnID":"847d4593","dfnText":"transition-property","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transition-property"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transitions-1/#propdef-transition-property"}, "84b454ff": {"dfnID":"84b454ff","dfnText":"ordered map","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-map"},{"id":"ref-for-ordered-map\u2460"},{"id":"ref-for-ordered-map\u2461"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-ordered-map\u2462"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-ordered-map\u2463"},{"id":"ref-for-ordered-map\u2464"},{"id":"ref-for-ordered-map\u2465"},{"id":"ref-for-ordered-map\u2466"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://infra.spec.whatwg.org/#ordered-map"}, -"8548ccb9": {"dfnID":"8548ccb9","dfnText":"border-inline-start-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-style"}, "85c51660": {"dfnID":"85c51660","dfnText":"region-fragment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-region-fragment"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-regions-1/#propdef-region-fragment"}, "86928bde": {"dfnID":"86928bde","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, -"87270354": {"dfnID":"87270354","dfnText":"border-block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start"},{"id":"ref-for-propdef-border-block-start\u2460"},{"id":"ref-for-propdef-border-block-start\u2461"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start"}, "8831f13c": {"dfnID":"8831f13c","dfnText":"text-indent","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-indent"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, +"883360ae": {"dfnID":"883360ae","dfnText":"border-inline-start-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"},{"id":"ref-for-idl-DOMString\u2460"}],"title":"4.2. CSSKeywordValue objects"},{"refs":[{"id":"ref-for-idl-DOMString\u2461"}],"title":"4.6. CSSColorValue objects"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-propdef-width\u2460"}],"title":"3.1. Computed StylePropertyMapReadOnly objects"},{"refs":[{"id":"ref-for-propdef-width\u2461"},{"id":"ref-for-propdef-width\u2462"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"},{"id":"ref-for-Exposed\u2460"},{"id":"ref-for-Exposed\u2461"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-Exposed\u2462"},{"id":"ref-for-Exposed\u2463"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-Exposed\u2464"},{"id":"ref-for-Exposed\u2465"}],"title":"4.1. CSSUnparsedValue objects"},{"refs":[{"id":"ref-for-Exposed\u2466"}],"title":"4.2. CSSKeywordValue objects"},{"refs":[{"id":"ref-for-Exposed\u2467"},{"id":"ref-for-Exposed\u2468"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-Exposed\u2460\u24ea"}],"title":"4.3.3. Value + Unit: CSSUnitValue objects"},{"refs":[{"id":"ref-for-Exposed\u2460\u2460"},{"id":"ref-for-Exposed\u2460\u2461"},{"id":"ref-for-Exposed\u2460\u2462"},{"id":"ref-for-Exposed\u2460\u2463"},{"id":"ref-for-Exposed\u2460\u2464"},{"id":"ref-for-Exposed\u2460\u2465"},{"id":"ref-for-Exposed\u2460\u2466"},{"id":"ref-for-Exposed\u2460\u2467"},{"id":"ref-for-Exposed\u2460\u2468"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"},{"refs":[{"id":"ref-for-Exposed\u2461\u24ea"},{"id":"ref-for-Exposed\u2461\u2460"},{"id":"ref-for-Exposed\u2461\u2461"},{"id":"ref-for-Exposed\u2461\u2462"},{"id":"ref-for-Exposed\u2461\u2463"},{"id":"ref-for-Exposed\u2461\u2464"},{"id":"ref-for-Exposed\u2461\u2465"},{"id":"ref-for-Exposed\u2461\u2466"},{"id":"ref-for-Exposed\u2461\u2467"},{"id":"ref-for-Exposed\u2461\u2468"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-Exposed\u2462\u24ea"}],"title":"4.5. CSSImageValue objects"},{"refs":[{"id":"ref-for-Exposed\u2462\u2460"},{"id":"ref-for-Exposed\u2462\u2461"},{"id":"ref-for-Exposed\u2462\u2462"},{"id":"ref-for-Exposed\u2462\u2463"},{"id":"ref-for-Exposed\u2462\u2464"},{"id":"ref-for-Exposed\u2462\u2465"},{"id":"ref-for-Exposed\u2462\u2466"},{"id":"ref-for-Exposed\u2462\u2467"},{"id":"ref-for-Exposed\u2462\u2468"}],"title":"4.6. CSSColorValue objects"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, @@ -10169,6 +10560,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8958b003": {"dfnID":"8958b003","dfnText":"entry","external":true,"refSections":[{"refs":[{"id":"ref-for-map-entry"},{"id":"ref-for-map-entry\u2460"},{"id":"ref-for-map-entry\u2461"},{"id":"ref-for-map-entry\u2462"},{"id":"ref-for-map-entry\u2463"},{"id":"ref-for-map-entry\u2464"},{"id":"ref-for-map-entry\u2465"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-map-entry\u2466"},{"id":"ref-for-map-entry\u2467"},{"id":"ref-for-map-entry\u2468"},{"id":"ref-for-map-entry\u2460\u24ea"},{"id":"ref-for-map-entry\u2460\u2460"},{"id":"ref-for-map-entry\u2460\u2461"},{"id":"ref-for-map-entry\u2460\u2462"},{"id":"ref-for-map-entry\u2460\u2463"},{"id":"ref-for-map-entry\u2460\u2464"},{"id":"ref-for-map-entry\u2460\u2465"},{"id":"ref-for-map-entry\u2460\u2466"},{"id":"ref-for-map-entry\u2460\u2467"},{"id":"ref-for-map-entry\u2460\u2468"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://infra.spec.whatwg.org/#map-entry"}, "8a0619b3": {"dfnID":"8a0619b3","dfnText":"padding-inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-inline-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-padding-inline-end"}, "8a745a4c": {"dfnID":"8a745a4c","dfnText":"scroll-padding-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding-top"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-top"}, +"8b01f835": {"dfnID":"8b01f835","dfnText":"border-block-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-width"}, "8b78f470": {"dfnID":"8b78f470","dfnText":"border-right-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style"}, "8c3a081a": {"dfnID":"8c3a081a","dfnText":"inset-inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-inset-inline-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-inset-inline-end"}, "8c800cdf": {"dfnID":"8c800cdf","dfnText":"double","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-double"},{"id":"ref-for-idl-double\u2460"},{"id":"ref-for-idl-double\u2461"}],"title":"4.3. Numeric Values:"},{"refs":[{"id":"ref-for-idl-double\u2462"},{"id":"ref-for-idl-double\u2463"}],"title":"4.3.3. Value + Unit: CSSUnitValue objects"},{"refs":[{"id":"ref-for-idl-double\u2464"},{"id":"ref-for-idl-double\u2465"},{"id":"ref-for-idl-double\u2466"},{"id":"ref-for-idl-double\u2467"},{"id":"ref-for-idl-double\u2468"},{"id":"ref-for-idl-double\u2460\u24ea"},{"id":"ref-for-idl-double\u2460\u2460"},{"id":"ref-for-idl-double\u2460\u2461"},{"id":"ref-for-idl-double\u2460\u2462"},{"id":"ref-for-idl-double\u2460\u2463"},{"id":"ref-for-idl-double\u2460\u2464"},{"id":"ref-for-idl-double\u2460\u2465"},{"id":"ref-for-idl-double\u2460\u2466"},{"id":"ref-for-idl-double\u2460\u2467"},{"id":"ref-for-idl-double\u2460\u2468"},{"id":"ref-for-idl-double\u2461\u24ea"},{"id":"ref-for-idl-double\u2461\u2460"},{"id":"ref-for-idl-double\u2461\u2461"},{"id":"ref-for-idl-double\u2461\u2462"},{"id":"ref-for-idl-double\u2461\u2463"},{"id":"ref-for-idl-double\u2461\u2464"},{"id":"ref-for-idl-double\u2461\u2465"},{"id":"ref-for-idl-double\u2461\u2466"},{"id":"ref-for-idl-double\u2461\u2467"},{"id":"ref-for-idl-double\u2461\u2468"},{"id":"ref-for-idl-double\u2462\u24ea"},{"id":"ref-for-idl-double\u2462\u2460"},{"id":"ref-for-idl-double\u2462\u2461"},{"id":"ref-for-idl-double\u2462\u2462"},{"id":"ref-for-idl-double\u2462\u2463"},{"id":"ref-for-idl-double\u2462\u2464"},{"id":"ref-for-idl-double\u2462\u2465"},{"id":"ref-for-idl-double\u2462\u2466"},{"id":"ref-for-idl-double\u2462\u2467"}],"title":"4.3.5. Numeric Factory Functions"},{"refs":[{"id":"ref-for-idl-double\u2462\u2468"}],"title":"4.6. CSSColorValue objects"}],"url":"https://webidl.spec.whatwg.org/#idl-double"}, @@ -10177,12 +10569,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8da7b47a": {"dfnID":"8da7b47a","dfnText":"scroll-margin-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin-bottom"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-bottom"}, "8dff42a3": {"dfnID":"8dff42a3","dfnText":"stroke-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-align"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-align"}, "8e0f26cc": {"dfnID":"8e0f26cc","dfnText":"caret-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caret-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-caret-color"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, +"8f60c8e7": {"dfnID":"8f60c8e7","dfnText":"border-inline-end-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width"}, "9000c09c": {"dfnID":"9000c09c","dfnText":"voice-pitch","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-voice-pitch"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-voice-pitch"}, +"90b2accf": {"dfnID":"90b2accf","dfnText":"pitch","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-pitch"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-pitch"}, "90bb6645": {"dfnID":"90bb6645","dfnText":"fill-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-fill-break"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-break"}, "910f1ef6": {"dfnID":"910f1ef6","dfnText":"mask-border-slice","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-border-slice"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-slice"}, "9112c920": {"dfnID":"9112c920","dfnText":"border-left-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color"}, "911f092b": {"dfnID":"911f092b","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse"}, +"91481de2": {"dfnID":"91481de2","dfnText":"border-block-start-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width"}, "915aff5e": {"dfnID":"915aff5e","dfnText":"code point","external":true,"refSections":[{"refs":[{"id":"ref-for-code-point"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://infra.spec.whatwg.org/#code-point"}, "91bfbe18": {"dfnID":"91bfbe18","dfnText":"opacity","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-opacity"}],"title":"4.3. Numeric Values:"},{"refs":[{"id":"ref-for-propdef-opacity\u2460"}],"title":"5.1. Property-specific Rules"},{"refs":[{"id":"ref-for-propdef-opacity\u2461"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, "92700be8": {"dfnID":"92700be8","dfnText":"<number-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-number-token"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-number-token"}, @@ -10201,6 +10595,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9987a023": {"dfnID":"9987a023","dfnText":"y","external":true,"refSections":[{"refs":[{"id":"ref-for-YProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/geometry.html#YProperty"}, "998b9e6e": {"dfnID":"998b9e6e","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-typedef-image\u2460"},{"id":"ref-for-typedef-image\u2461"}],"title":"4.5. CSSImageValue objects"}],"url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, "99c988d6": {"dfnID":"99c988d6","dfnText":"remove (for list)","external":true,"refSections":[{"refs":[{"id":"ref-for-list-remove"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://infra.spec.whatwg.org/#list-remove"}, +"99cf77dd": {"dfnID":"99cf77dd","dfnText":"border-inline-end-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style"}, "9af48a71": {"dfnID":"9af48a71","dfnText":"mask-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-position"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-position"}, "9b0fa0e9": {"dfnID":"9b0fa0e9","dfnText":"background-clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-clip"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip"}, "9b166ddb": {"dfnID":"9b166ddb","dfnText":"scroll-padding-block-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding-block-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block-end"}, @@ -10241,12 +10636,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a8510841": {"dfnID":"a8510841","dfnText":"box-snap","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-snap"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-line-grid-1/#propdef-box-snap"}, "a8e4abd6": {"dfnID":"a8e4abd6","dfnText":"stroke-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-position"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-position"}, "a8fe91d7": {"dfnID":"a8fe91d7","dfnText":"font-weight","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-weight"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-weight"}, +"a9069881": {"dfnID":"a9069881","dfnText":"pitch-range","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-pitch-range"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range"}, "a9734ee4": {"dfnID":"a9734ee4","dfnText":"border","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border"}, "a9fe516e": {"dfnID":"a9fe516e","dfnText":"text-decoration-skip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration-skip"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip"}, "aa7ec909": {"dfnID":"aa7ec909","dfnText":"scroll-padding-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding-left"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-left"}, "aa9d496e": {"dfnID":"aa9d496e","dfnText":"scroll-padding","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding"}, "aaf6abed": {"dfnID":"aaf6abed","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "ab57267e": {"dfnID":"ab57267e","dfnText":"rotatey()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rotatey"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-rotatey"}, +"ac2531a4": {"dfnID":"ac2531a4","dfnText":"border-inline-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style"}, "ac51ff4d": {"dfnID":"ac51ff4d","dfnText":"determine the value of an indexed property","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-determine-the-value-of-an-indexed-property"}],"title":"4.1. CSSUnparsedValue objects"},{"refs":[{"id":"ref-for-dfn-determine-the-value-of-an-indexed-property\u2460"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://webidl.spec.whatwg.org/#dfn-determine-the-value-of-an-indexed-property"}, "ac54fbff": {"dfnID":"ac54fbff","dfnText":"line-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-height"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "ad065a5c": {"dfnID":"ad065a5c","dfnText":"margin-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-right"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-right"}, @@ -10279,21 +10676,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b6029199": {"dfnID":"b6029199","dfnText":"text-decoration-stroke","external":true,"refSections":[{"refs":[{"id":"ref-for-TextDecorationStrokeProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/SVG2/text.html#TextDecorationStrokeProperty"}, "b61c296e": {"dfnID":"b61c296e","dfnText":"mask-border-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-border-mode"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-mode"}, "b6730ce5": {"dfnID":"b6730ce5","dfnText":"widows","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-widows"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-break-4/#propdef-widows"}, -"b678cf24": {"dfnID":"b678cf24","dfnText":"border-inline-start-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-width"}, "b85b86c5": {"dfnID":"b85b86c5","dfnText":"min()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-min"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"},{"refs":[{"id":"ref-for-funcdef-min\u2460"}],"title":"5.6. <number>, <percentage>, and <dimension> values"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-min"}, "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "b8d7db46": {"dfnID":"b8d7db46","dfnText":"counter-increment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-counter-increment"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-counter-increment"}, +"b8f14ba7": {"dfnID":"b8f14ba7","dfnText":"speech-rate","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-speech-rate"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate"}, "b9aaa547": {"dfnID":"b9aaa547","dfnText":"dominant-baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-dominant-baseline"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-dominant-baseline"}, "ba920583": {"dfnID":"ba920583","dfnText":"style","external":true,"refSections":[{"refs":[{"id":"ref-for-the-style-element"}],"title":"4.5. CSSImageValue objects"}],"url":"https://html.spec.whatwg.org/multipage/semantics.html#the-style-element"}, "baca35b9": {"dfnID":"baca35b9","dfnText":"<flex>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-flex"},{"id":"ref-for-typedef-flex\u2460"}],"title":"4.3.2. Numeric Value Typing"}],"url":"https://drafts.csswg.org/css-grid-2/#typedef-flex"}, "bb5423f6": {"dfnID":"bb5423f6","dfnText":"speak","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-speak"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-speak"}, "bb72d539": {"dfnID":"bb72d539","dfnText":"text-rendering","external":true,"refSections":[{"refs":[{"id":"ref-for-TextRenderingProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/painting.html#TextRenderingProperty"}, -"bb8ecb5e": {"dfnID":"bb8ecb5e","dfnText":"border-block-end-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-style"}, -"bd5c9eab": {"dfnID":"bd5c9eab","dfnText":"border-block-start-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-width"}, "bd765d87": {"dfnID":"bd765d87","dfnText":"mask","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask"}, "bdaa3107": {"dfnID":"bdaa3107","dfnText":"offset-rotate","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-offset-rotate"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/motion-1/#propdef-offset-rotate"}, "bde23f6a": {"dfnID":"bde23f6a","dfnText":"mask-border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-border-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-width"}, "be2d2b4c": {"dfnID":"be2d2b4c","dfnText":"SyntaxError","external":true,"refSections":[{"refs":[{"id":"ref-for-syntaxerror"},{"id":"ref-for-syntaxerror\u2460"},{"id":"ref-for-syntaxerror\u2461"},{"id":"ref-for-syntaxerror\u2462"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-syntaxerror\u2463"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"},{"refs":[{"id":"ref-for-syntaxerror\u2464"},{"id":"ref-for-syntaxerror\u2465"}],"title":"4.6. CSSColorValue objects"}],"url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"be8e9f0a": {"dfnID":"be8e9f0a","dfnText":"border-inline-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, "bf29f5ff": {"dfnID":"bf29f5ff","dfnText":"text-anchor","external":true,"refSections":[{"refs":[{"id":"ref-for-TextAnchorProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/text.html#TextAnchorProperty"}, "c0ae46c9": {"dfnID":"c0ae46c9","dfnText":"place-self","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-place-self"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-place-self"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, @@ -10304,12 +10701,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c6af4268": {"dfnID":"c6af4268","dfnText":"font-variation-settings","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variation-settings"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-variation-settings"}, "c7965b42": {"dfnID":"c7965b42","dfnText":"percentage","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://drafts.csswg.org/css-values-4/#percentage"}, "c7fc22df": {"dfnID":"c7fc22df","dfnText":"voice-family","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-voice-family"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-voice-family"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"4.3. Numeric Values:"},{"refs":[{"id":"ref-for-propdef-z-index\u2460"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "c914acd1": {"dfnID":"c914acd1","dfnText":"max-block-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-block-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-max-block-size"}, "c9b2f77d": {"dfnID":"c9b2f77d","dfnText":"text-underline-offset","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-underline-offset"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-underline-offset"}, "c9ecad15": {"dfnID":"c9ecad15","dfnText":"border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, "ca62982f": {"dfnID":"ca62982f","dfnText":"padding-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-bottom"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-bottom"}, -"cabb703c": {"dfnID":"cabb703c","dfnText":"border-inline","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline"}, "cacc0af2": {"dfnID":"cacc0af2","dfnText":"letter-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-letter-spacing"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, "cad72d2f": {"dfnID":"cad72d2f","dfnText":"currentcolor","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-currentcolor"},{"id":"ref-for-valdef-color-currentcolor\u2460"},{"id":"ref-for-valdef-color-currentcolor\u2461"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor"}, "caf45308": {"dfnID":"caf45308","dfnText":"font-size-adjust","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size-adjust"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust"}, @@ -10319,6 +10714,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "cd6e7c23": {"dfnID":"cd6e7c23","dfnText":"grid-row-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-row-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-row-end"}, "ce1c3a64": {"dfnID":"ce1c3a64","dfnText":"align-content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-align-content"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-align-content"}, "cecbe9cd": {"dfnID":"cecbe9cd","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin"}, +"ceced8d4": {"dfnID":"ceced8d4","dfnText":"border-block-end-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style"}, "cf1dc4f6": {"dfnID":"cf1dc4f6","dfnText":"fill","external":true,"refSections":[{"refs":[{"id":"ref-for-border-image-slice-fill"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#border-image-slice-fill"}, "computed-stylepropertymap": {"dfnID":"computed-stylepropertymap","dfnText":"Computed StylePropertyMap","external":false,"refSections":[],"url":"#computed-stylepropertymap"}, "convert-a-cssunitvalue": {"dfnID":"convert-a-cssunitvalue","dfnText":"convert a CSSUnitValue","external":false,"refSections":[{"refs":[{"id":"ref-for-convert-a-cssunitvalue"},{"id":"ref-for-convert-a-cssunitvalue\u2460"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"#convert-a-cssunitvalue"}, @@ -10390,6 +10786,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "d45afbab": {"dfnID":"d45afbab","dfnText":"font-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-style"}, "d4611c95": {"dfnID":"d4611c95","dfnText":"font-variant-emoji","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variant-emoji"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-emoji"}, "d65d17df": {"dfnID":"d65d17df","dfnText":"font-family","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-family"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-family"}, +"d6711e02": {"dfnID":"d6711e02","dfnText":"speak-numeral","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-speak-numeral"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral"}, "d686638a": {"dfnID":"d686638a","dfnText":"<relative-size>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-relative-size"},{"id":"ref-for-value-def-relative-size\u2460"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#value-def-relative-size"}, "d84118c0": {"dfnID":"d84118c0","dfnText":"outline-offset","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-offset"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-offset"}, "d85aba47": {"dfnID":"d85aba47","dfnText":"inset-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-inset-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-inset-block"}, @@ -10402,13 +10799,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dd0f8cfb": {"dfnID":"dd0f8cfb","dfnText":"border-bottom-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width"}, "dd21c139": {"dfnID":"dd21c139","dfnText":"ruby-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-ruby-position"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ruby-1/#propdef-ruby-position"}, "dda6df97": {"dfnID":"dda6df97","dfnText":"flex-wrap","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-wrap"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-wrap"}, -"ddc793c2": {"dfnID":"ddc793c2","dfnText":"border-block","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block"}, "dde41168": {"dfnID":"dde41168","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"}],"title":"5.1. Property-specific Rules"},{"refs":[{"id":"ref-for-propdef-left\u2460"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-left"}, "de56fbfe": {"dfnID":"de56fbfe","dfnText":"list-style-type","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-type"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, "decf3b99": {"dfnID":"decf3b99","dfnText":"page","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-page-3/#propdef-page"}, "declared-stylepropertymap": {"dfnID":"declared-stylepropertymap","dfnText":"Declared StylePropertyMap","external":false,"refSections":[{"refs":[{"id":"ref-for-declared-stylepropertymap"}],"title":"3.2. Declared & Inline StylePropertyMap objects"},{"refs":[{"id":"ref-for-declared-stylepropertymap\u2460"}],"title":"4.3. Numeric Values:"}],"url":"#declared-stylepropertymap"}, "df6c9896": {"dfnID":"df6c9896","dfnText":"grid-template","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid-template"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid-template"}, -"dfc674d2": {"dfnID":"dfc674d2","dfnText":"border-inline-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color"}, "dfd78ca3": {"dfnID":"dfd78ca3","dfnText":"cy","external":true,"refSections":[{"refs":[{"id":"ref-for-CyProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/geometry.html#CyProperty"}, "dictdef-cssmatrixcomponentoptions": {"dfnID":"dictdef-cssmatrixcomponentoptions","dfnText":"CSSMatrixComponentOptions","external":false,"refSections":[{"refs":[{"id":"ref-for-dictdef-cssmatrixcomponentoptions"}],"title":"4.4. CSSTransformValue objects"}],"url":"#dictdef-cssmatrixcomponentoptions"}, "dictdef-cssnumerictype": {"dfnID":"dictdef-cssnumerictype","dfnText":"CSSNumericType","external":false,"refSections":[{"refs":[{"id":"ref-for-dictdef-cssnumerictype"},{"id":"ref-for-dictdef-cssnumerictype\u2460"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"#dictdef-cssnumerictype"}, @@ -10736,6 +11131,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e1483d91": {"dfnID":"e1483d91","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"5.1. Property-specific Rules"},{"refs":[{"id":"ref-for-propdef-top\u2460"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-top"}, "e1ea7acd": {"dfnID":"e1ea7acd","dfnText":"table-layout","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-table-layout"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-table-layout"}, "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"}],"title":"5.4. var() References"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, +"e2b8e6b7": {"dfnID":"e2b8e6b7","dfnText":"play-during","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-play-during"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-play-during"}, "e2e08d07": {"dfnID":"e2e08d07","dfnText":"transform","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transform"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://drafts.csswg.org/css-transforms-1/#propdef-transform"}, "e2fc6023": {"dfnID":"e2fc6023","dfnText":"prepend","external":true,"refSections":[{"refs":[{"id":"ref-for-list-prepend"},{"id":"ref-for-list-prepend\u2460"},{"id":"ref-for-list-prepend\u2461"},{"id":"ref-for-list-prepend\u2462"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://infra.spec.whatwg.org/#list-prepend"}, "e4039478": {"dfnID":"e4039478","dfnText":"border-top-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-style"},{"id":"ref-for-propdef-border-top-style\u2460"},{"id":"ref-for-propdef-border-top-style\u2461"},{"id":"ref-for-propdef-border-top-style\u2462"},{"id":"ref-for-propdef-border-top-style\u2463"},{"id":"ref-for-propdef-border-top-style\u2464"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style"}, @@ -10757,13 +11153,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "eaf6621e": {"dfnID":"eaf6621e","dfnText":"skewy()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-transform-skewy"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-funcdef-transform-skewy\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-1/#funcdef-transform-skewy"}, "eb4bd624": {"dfnID":"eb4bd624","dfnText":"caret","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caret"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-caret"}, "eb76a058": {"dfnID":"eb76a058","dfnText":"baseline-shift","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-baseline-shift"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-baseline-shift"}, -"eb956f90": {"dfnID":"eb956f90","dfnText":"border-inline-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color"}, "ebfaf864": {"dfnID":"ebfaf864","dfnText":"border-bottom-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style"}, "ec878a66": {"dfnID":"ec878a66","dfnText":"RangeError","external":true,"refSections":[{"refs":[{"id":"ref-for-exceptiondef-rangeerror"}],"title":"4.1. CSSUnparsedValue objects"},{"refs":[{"id":"ref-for-exceptiondef-rangeerror\u2460"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"},{"refs":[{"id":"ref-for-exceptiondef-rangeerror\u2461"}],"title":"4.4. CSSTransformValue objects"}],"url":"https://webidl.spec.whatwg.org/#exceptiondef-rangeerror"}, "ec9deea6": {"dfnID":"ec9deea6","dfnText":"stroke-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-size"}, "eda608e1": {"dfnID":"eda608e1","dfnText":"animation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation"}],"title":"3. The StylePropertyMap"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, "edc3a18b": {"dfnID":"edc3a18b","dfnText":"flex-grow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-grow"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow"}, "ee106661": {"dfnID":"ee106661","dfnText":"min-block-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-block-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-min-block-size"}, +"eeeb1518": {"dfnID":"eeeb1518","dfnText":"border-inline-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color"}, "ef338520": {"dfnID":"ef338520","dfnText":"scroll-margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin-left"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-left"}, "enumdef-cssmathoperator": {"dfnID":"enumdef-cssmathoperator","dfnText":"CSSMathOperator","external":false,"refSections":[{"refs":[{"id":"ref-for-enumdef-cssmathoperator"},{"id":"ref-for-enumdef-cssmathoperator\u2460"}],"title":"4.3.4. Complex Numeric Values: CSSMathValue objects"}],"url":"#enumdef-cssmathoperator"}, "enumdef-cssnumericbasetype": {"dfnID":"enumdef-cssnumericbasetype","dfnText":"CSSNumericBaseType","external":false,"refSections":[{"refs":[{"id":"ref-for-enumdef-cssnumericbasetype"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"#enumdef-cssnumericbasetype"}, @@ -10771,36 +11167,38 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "f08b32ef": {"dfnID":"f08b32ef","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-max-width"}, "f0c46389": {"dfnID":"f0c46389","dfnText":"block-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-block-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-block-size"}, "f136959b": {"dfnID":"f136959b","dfnText":"rest-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-rest-after"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-rest-after"}, +"f1ecd537": {"dfnID":"f1ecd537","dfnText":"elevation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-elevation"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-elevation"}, "f210b721": {"dfnID":"f210b721","dfnText":"order","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-order"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-order"}, "f2a0f55a": {"dfnID":"f2a0f55a","dfnText":"stroke-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-color"}, +"f2b8b95d": {"dfnID":"f2b8b95d","dfnText":"border-inline-start-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style"}, "f3917b3e": {"dfnID":"f3917b3e","dfnText":"grid","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-grid"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-grid-2/#propdef-grid"}, "f3aea489": {"dfnID":"f3aea489","dfnText":"matrix3d()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-matrix3d"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-matrix3d"}, -"f52484cc": {"dfnID":"f52484cc","dfnText":"border-block-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color"}, "f5eca8c9": {"dfnID":"f5eca8c9","dfnText":"background","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background"}, "f6265c91": {"dfnID":"f6265c91","dfnText":"scale()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-scale"},{"id":"ref-for-funcdef-scale\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-scale"}, "f6ae7ae8": {"dfnID":"f6ae7ae8","dfnText":"mask-border","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-border"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-border"}, -"f6cbcbce": {"dfnID":"f6cbcbce","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "f6db8b04": {"dfnID":"f6db8b04","dfnText":"perspective()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-perspective"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-funcdef-perspective\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-2/#funcdef-perspective"}, "f73b681a": {"dfnID":"f73b681a","dfnText":"perspective","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-perspective"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-transforms-2/#propdef-perspective"}, +"f793e65e": {"dfnID":"f793e65e","dfnText":"border-block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start"},{"id":"ref-for-propdef-border-block-start\u2460"},{"id":"ref-for-propdef-border-block-start\u2461"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"},{"id":"ref-for-propdef-background-image\u2460"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-propdef-background-image\u2461"},{"id":"ref-for-propdef-background-image\u2462"}],"title":"4.5. CSSImageValue objects"},{"refs":[{"id":"ref-for-propdef-background-image\u2463"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, "f8783aff": {"dfnID":"f8783aff","dfnText":"scroll-margin-inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin-inline-end"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-inline-end"}, "f8de33a3": {"dfnID":"f8de33a3","dfnText":"long","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-long"},{"id":"ref-for-idl-long\u2460"},{"id":"ref-for-idl-long\u2461"},{"id":"ref-for-idl-long\u2462"},{"id":"ref-for-idl-long\u2463"},{"id":"ref-for-idl-long\u2464"},{"id":"ref-for-idl-long\u2465"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"https://webidl.spec.whatwg.org/#idl-long"}, "f95a7c3b": {"dfnID":"f95a7c3b","dfnText":"background-attachment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-attachment"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment"}, -"f9d36ed0": {"dfnID":"f9d36ed0","dfnText":"border-inline-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-color"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-color"}, "fa293cdd": {"dfnID":"fa293cdd","dfnText":"<url>","external":true,"refSections":[{"refs":[{"id":"ref-for-url-value"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-url-value\u2460"}],"title":"5.8. <url> (and subtype) Values"}],"url":"https://drafts.csswg.org/css-values-4/#url-value"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"},{"id":"ref-for-length-value\u2460"},{"id":"ref-for-length-value\u2461"},{"id":"ref-for-length-value\u2462"}],"title":"4.3.2. Numeric Value Typing"},{"refs":[{"id":"ref-for-length-value\u2463"},{"id":"ref-for-length-value\u2464"},{"id":"ref-for-length-value\u2465"}],"title":"4.4. CSSTransformValue objects"},{"refs":[{"id":"ref-for-length-value\u2466"},{"id":"ref-for-length-value\u2467"},{"id":"ref-for-length-value\u2468"}],"title":"5.1. Property-specific Rules"},{"refs":[{"id":"ref-for-length-value\u2460\u24ea"},{"id":"ref-for-length-value\u2460\u2460"},{"id":"ref-for-length-value\u2460\u2461"},{"id":"ref-for-length-value\u2460\u2462"},{"id":"ref-for-length-value\u2460\u2463"},{"id":"ref-for-length-value\u2460\u2464"},{"id":"ref-for-length-value\u2460\u2465"},{"id":"ref-for-length-value\u2460\u2466"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "fb7153bd": {"dfnID":"fb7153bd","dfnText":"font-variant","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variant"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-variant"}, "fb8e6438": {"dfnID":"fb8e6438","dfnText":"scroll-margin-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin-top"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-top"}, "fbaebff6": {"dfnID":"fbaebff6","dfnText":"text-emphasis-skip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-emphasis-skip"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-skip"}, -"fbf8e945": {"dfnID":"fbf8e945","dfnText":"border-block-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-width"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-width"}, "fc8d4e6c": {"dfnID":"fc8d4e6c","dfnText":"ry","external":true,"refSections":[{"refs":[{"id":"ref-for-RyProperty"}],"title":"5.1. Property-specific Rules"}],"url":"https://svgwg.org/svg2-draft/geometry.html#RyProperty"}, "fcbf3baa": {"dfnID":"fcbf3baa","dfnText":"glyph-orientation-vertical","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-glyph-orientation-vertical"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-glyph-orientation-vertical"}, "fceff2e9": {"dfnID":"fceff2e9","dfnText":"translatey()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-transform-translatey"},{"id":"ref-for-funcdef-transform-translatey\u2460"}],"title":"5.7. <transform-list> and <transform-function> values"}],"url":"https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translatey"}, "fd01d513": {"dfnID":"fd01d513","dfnText":"scroll-margin-block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin-block-start"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block-start"}, +"fdaa092f": {"dfnID":"fdaa092f","dfnText":"richness","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-richness"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/aural.html#propdef-richness"}, "fdf6efd5": {"dfnID":"fdf6efd5","dfnText":"font-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size"},{"id":"ref-for-propdef-font-size\u2460"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, +"fe0abd77": {"dfnID":"fe0abd77","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"5.1. Property-specific Rules"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, "fe0c9ada": {"dfnID":"fe0c9ada","dfnText":"block-step","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-block-step"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-rhythm-1/#propdef-block-step"}, "fe85b73a": {"dfnID":"fe85b73a","dfnText":"stretch","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-border-image-repeat-stretch"}],"title":"6.7. Serialization from CSSOM Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-repeat-stretch"}, "feff90bd": {"dfnID":"feff90bd","dfnText":"mask-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-size"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-size"}, +"ff338f6c": {"dfnID":"ff338f6c","dfnText":"border-block-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-style"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-style"}, "fffe4623": {"dfnID":"fffe4623","dfnText":"counter-set","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-counter-set"}],"title":"5.1. Property-specific Rules"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-counter-set"}, "list-valued-properties": {"dfnID":"list-valued-properties","dfnText":"list-valued properties","external":false,"refSections":[{"refs":[{"id":"ref-for-list-valued-properties"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-list-valued-properties\u2460"},{"id":"ref-for-list-valued-properties\u2461"},{"id":"ref-for-list-valued-properties\u2462"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-list-valued-properties\u2463"}],"title":"5. CSSStyleValue Reification"}],"url":"#list-valued-properties"}, "parse-a-cssstylevalue": {"dfnID":"parse-a-cssstylevalue","dfnText":"parse a CSSStyleValue","external":false,"refSections":[{"refs":[{"id":"ref-for-parse-a-cssstylevalue"},{"id":"ref-for-parse-a-cssstylevalue\u2460"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-parse-a-cssstylevalue\u2461"}],"title":"3. The StylePropertyMap"}],"url":"#parse-a-cssstylevalue"}, @@ -10835,7 +11233,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "stylepropertymapreadonly": {"dfnID":"stylepropertymapreadonly","dfnText":"StylePropertyMapReadOnly","external":false,"refSections":[{"refs":[{"id":"ref-for-stylepropertymapreadonly"},{"id":"ref-for-stylepropertymapreadonly\u2460"},{"id":"ref-for-stylepropertymapreadonly\u2461"}],"title":"3. The StylePropertyMap"},{"refs":[{"id":"ref-for-stylepropertymapreadonly\u2462"},{"id":"ref-for-stylepropertymapreadonly\u2463"},{"id":"ref-for-stylepropertymapreadonly\u2464"},{"id":"ref-for-stylepropertymapreadonly\u2465"}],"title":"3.1. Computed StylePropertyMapReadOnly objects"}],"url":"#stylepropertymapreadonly"}, "subdivide-into-iterations": {"dfnID":"subdivide-into-iterations","dfnText":"subdivide into iterations","external":false,"refSections":[{"refs":[{"id":"ref-for-subdivide-into-iterations"}],"title":"2. CSSStyleValue objects"},{"refs":[{"id":"ref-for-subdivide-into-iterations\u2460"},{"id":"ref-for-subdivide-into-iterations\u2461"},{"id":"ref-for-subdivide-into-iterations\u2462"}],"title":"3. The StylePropertyMap"}],"url":"#subdivide-into-iterations"}, "sum-value-unit-map": {"dfnID":"sum-value-unit-map","dfnText":"unit map","external":false,"refSections":[{"refs":[{"id":"ref-for-sum-value-unit-map"},{"id":"ref-for-sum-value-unit-map\u2460"},{"id":"ref-for-sum-value-unit-map\u2461"},{"id":"ref-for-sum-value-unit-map\u2462"},{"id":"ref-for-sum-value-unit-map\u2463"},{"id":"ref-for-sum-value-unit-map\u2464"},{"id":"ref-for-sum-value-unit-map\u2465"},{"id":"ref-for-sum-value-unit-map\u2466"},{"id":"ref-for-sum-value-unit-map\u2467"},{"id":"ref-for-sum-value-unit-map\u2468"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"#sum-value-unit-map"}, -"sum-value-value": {"dfnID":"sum-value-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-sum-value-value"},{"id":"ref-for-sum-value-value\u2460"},{"id":"ref-for-sum-value-value\u2461"},{"id":"ref-for-sum-value-value\u2462"},{"id":"ref-for-sum-value-value\u2463"},{"id":"ref-for-sum-value-value\u2464"},{"id":"ref-for-sum-value-value\u2465"},{"id":"ref-for-sum-value-value\u2466"},{"id":"ref-for-sum-value-value\u2467"},{"id":"ref-for-sum-value-value\u2468"},{"id":"ref-for-sum-value-value\u2460\u24ea"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"#sum-value-value"}, +"sum-value-value": {"dfnID":"sum-value-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-sum-value-value"},{"id":"ref-for-sum-value-value\u2460"},{"id":"ref-for-sum-value-value\u2461"},{"id":"ref-for-sum-value-value\u2462"},{"id":"ref-for-sum-value-value\u2463"},{"id":"ref-for-sum-value-value\u2464"},{"id":"ref-for-sum-value-value\u2465"},{"id":"ref-for-sum-value-value\u2466"},{"id":"ref-for-sum-value-value\u2467"},{"id":"ref-for-sum-value-value\u2468"}],"title":"4.3.1. Common Numeric Operations, and the CSSNumericValue Superclass"}],"url":"#sum-value-value"}, "type-of-a-cssmathvalue": {"dfnID":"type-of-a-cssmathvalue","dfnText":"type of a CSSMathValue","external":false,"refSections":[],"url":"#type-of-a-cssmathvalue"}, "type-of-a-cssunitvalue": {"dfnID":"type-of-a-cssunitvalue","dfnText":"type of a CSSUnitValue","external":false,"refSections":[],"url":"#type-of-a-cssunitvalue"}, "typedefdef-csskeywordish": {"dfnID":"typedefdef-csskeywordish","dfnText":"CSSKeywordish","external":false,"refSections":[{"refs":[{"id":"ref-for-typedefdef-csskeywordish"}],"title":"4.6. CSSColorValue objects"}],"url":"#typedefdef-csskeywordish"}, @@ -11232,7 +11630,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let linkTitleData = { "https://drafts.csswg.org/css-align-3/#typedef-overflow-position": "Expands to: safe | unsafe", "https://drafts.csswg.org/css-align-3/#typedef-self-position": "Expands to: center | end | flex-end | flex-start | self-end | self-start | start", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-grid-2/#typedef-flex": "Expands to: fr", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#frequency-value": "Expands to: hz | khz", @@ -11573,6 +11971,30 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-top-width","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-width","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, "https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-repeat-stretch": {"export":true,"for_":["border-image-repeat"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"stretch","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-repeat-stretch"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-end","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-end-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-end-style","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-end-width","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-start","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-start-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-start-style","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-start-width","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-style": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-style","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-style"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-width","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-width"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-end","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-end-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-end-style","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-end-width","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-start","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-start-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-start-style","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-start-width","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-style","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-width","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width"}, "https://drafts.csswg.org/css-box-4/#propdef-margin": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin"}, "https://drafts.csswg.org/css-box-4/#propdef-margin-bottom": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin-bottom","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin-bottom"}, "https://drafts.csswg.org/css-box-4/#propdef-margin-left": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin-left","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, @@ -11669,30 +12091,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-lists-3/#propdef-list-style-type": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-type","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, "https://drafts.csswg.org/css-lists-3/#propdef-marker-side": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"marker-side","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-marker-side"}, "https://drafts.csswg.org/css-logical-1/#propdef-block-size": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"block-size","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-block-size"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-end","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-end-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-end-style","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-style"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-end-width","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-width"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-start","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-start-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-start-style","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-style"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-start-width","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-width"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-style","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-style"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-width","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-width"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-end","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-end-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-end-style","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-style"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-end-width","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-width"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-start","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-start-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-start-style","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-style"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-start-width","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-width"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-style","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-style"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-width","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-width"}, "https://drafts.csswg.org/css-logical-1/#propdef-inline-size": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"inline-size","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-inline-size"}, "https://drafts.csswg.org/css-logical-1/#propdef-margin-block": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"margin-block","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block"}, "https://drafts.csswg.org/css-logical-1/#propdef-margin-block-end": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"margin-block-end","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block-end"}, @@ -11808,7 +12206,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-syntax-3/#typedef-number-token": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<number-token>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-number-token"}, "https://drafts.csswg.org/css-syntax-3/#typedef-percentage-token": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<percentage-token>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-percentage-token"}, "https://drafts.csswg.org/css-tables-3/#propdef-border-collapse": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-collapse","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-spacing","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, "https://drafts.csswg.org/css-tables-3/#propdef-caption-side": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"caption-side","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, "https://drafts.csswg.org/css-tables-3/#propdef-empty-cells": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"empty-cells","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-empty-cells"}, "https://drafts.csswg.org/css-tables-3/#propdef-table-layout": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"table-layout","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-table-layout"}, @@ -11915,10 +12312,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, -"https://drafts.csswg.org/css2/#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-inside","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#value-def-absolute-size": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<absolute-size>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-absolute-size"}, "https://drafts.csswg.org/css2/#value-def-relative-size": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<relative-size>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-relative-size"}, "https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-origin-clean-flag": {"export":false,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"origin-clean flag","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-origin-clean-flag"}, @@ -12059,6 +12452,23 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-undefined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"undefined","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "https://webidl.spec.whatwg.org/#idl-unsigned-long": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned long","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-long"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"azimuth","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-elevation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"elevation","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-elevation"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-pitch": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pitch","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-pitch"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pitch-range","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-play-during": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"play-during","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-play-during"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-richness": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"richness","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-richness"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"speak-header","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"speak-numeral","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"speak-punctuation","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"speech-rate","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-stress": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stress","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-stress"}, +"https://www.w3.org/TR/CSS21/aural.html#propdef-volume": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"volume","type":"property","url":"https://www.w3.org/TR/CSS21/aural.html#propdef-volume"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-inside","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-spacing","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "https://www.w3.org/TR/SVG2/painting.html#ColorRenderingProperty": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"color-rendering","type":"property","url":"https://www.w3.org/TR/SVG2/painting.html#ColorRenderingProperty"}, "https://www.w3.org/TR/SVG2/text.html#TextDecorationFillProperty": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"text-decoration-fill","type":"property","url":"https://www.w3.org/TR/SVG2/text.html#TextDecorationFillProperty"}, "https://www.w3.org/TR/SVG2/text.html#TextDecorationStrokeProperty": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"text-decoration-stroke","type":"property","url":"https://www.w3.org/TR/SVG2/text.html#TextDecorationStrokeProperty"}, diff --git a/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.console.txt index c9dd680bf2..72c388642b 100644 --- a/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.console.txt @@ -1,2 +1,2 @@ -WARNING: You used Status: DREAM for a W3C document. Consider UD instead. +WARNING: You used Status:DREAM for a W3C document. Consider Status:UD instead. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.html b/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.html index 53a3c1af6d..cf79588869 100644 --- a/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/font-metrics-api/Overview.html @@ -1,1494 +1,13 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Font Metrics API Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> -<style data-fill-with="stylesheet">/****************************************************************************** - * Style sheet for the W3C specifications * - * - * Special classes handled by this style sheet include: - * - * Indices - * - .toc for the Table of Contents (<ol class="toc">) - * + <span class="secno"> for the section numbers - * - #toc for the Table of Contents (<nav id="toc">) - * - ul.index for Indices (<a href="#ref">term</a><span>, in § N.M</span>) - * - table.index for Index Tables (e.g. for properties or elements) - * - * Structural Markup - * - table.data for general data tables - * -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results ! - * -> use <table class='complex data'> for extra-complex tables - * -> use <td class='long'> for paragraph-length cell content - * -> use <td class='pre'> when manual line breaks/indentation would help readability - * - dl.switch for switch statements - * - ol.algorithm for algorithms (helps to visualize nesting) - * - .figure and .caption (HTML4) and figure and figcaption (HTML5) - * -> .sidefigure for right-floated figures - * - ins/del - * -> ins/del.c### for candidate and proposed changes (amendments) - * - * Code - * - pre and code - * - * Special Sections - * - .note for informative notes (div, p, span, aside, details) - * - .example for informative examples (div, p, pre, span) - * - .issue for issues (div, p, span) - * - .advisement for loud normative statements (div, p, strong) - * - .annoying-warning for spec obsoletion notices (div, aside, details) - * - .correction for "candidate corrections" (div, aside, details, section) - * - .addition for "candidate additions" (div, aside, details, section) - * - .correction.proposed for "proposed corrections" (div, aside, details, section) - * - .addition.proposed for "proposed additions" (div, aside, details, section) - * - * Definition Boxes - * - pre.def for WebIDL definitions - * - table.def for tables that define other entities (e.g. CSS properties) - * - dl.def for definition lists that define other entitles (e.g. HTML elements) - * - * Numbering - * - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>) - * - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>) - * - ::before styled for CSS-generated issue/example/figure numbers: - * -> Documents wishing to use this only need to add - * figcaption::before, - * .caption::before { content: "Figure " counter(figure) " "; } - * .example::before { content: "Example " counter(example) " "; } - * .issue::before { content: "Issue " counter(issue) " "; } - * - * Header Stuff (ignore, just don't conflict with these classes) - * - .head for the header - * - .copyright for the copyright - * - * Outdated warning for old specs - * - * Miscellaneous - * - .overlarge for things that should be as wide as possible, even if - * that overflows the body text area. This can be used on an item or - * on its container, depending on the effect desired. - * Note that this styling basically doesn't help at all when printing, - * since A4 paper isn't much wider than the max-width here. - * It's better to design things to fit into a narrower measure if possible. - * - * - js-added ToC jump links (see fixup.js) - * - ******************************************************************************/ - -/* color variables included separately for reliability */ - -/******************************************************************************/ -/* Body */ -/******************************************************************************/ - - html { - } - - body { - counter-reset: example figure issue; - - /* Layout */ - max-width: 50em; /* limit line length to 50em for readability */ - margin: 0 auto; /* center text within page */ - padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */ - padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */ - - /* Typography */ - line-height: 1.5; - font-family: sans-serif; - widows: 2; - orphans: 2; - word-wrap: break-word; - overflow-wrap: break-word; - hyphens: auto; - - color: black; - color: var(--text); - background: white top left fixed no-repeat; - background: var(--bg) top left fixed no-repeat; - background-size: 25px auto; - } - - -/******************************************************************************/ -/* Front Matter & Navigation */ -/******************************************************************************/ - -/** Header ********************************************************************/ - - div.head { margin-bottom: 1em; } - div.head hr { border-style: solid; } - - div.head h1 { - font-weight: bold; - margin: 0 0 .1em; - font-size: 220%; - } - - div.head h2 { margin-bottom: 1.5em;} - -/** W3C Logo ******************************************************************/ - - .head .logo { - float: right; - margin: 0.4rem 0 0.2rem .4rem; - } - - .head img[src*="logos/W3C"] { - display: block; - border: solid #1a5e9a; - border: solid var(--logo-bg); - border-width: .65rem .7rem .6rem; - border-radius: .4rem; - background: #1a5e9a; - background: var(--logo-bg); - color: white; - color: var(--logo-text); - font-weight: bold; - } - - .head a:hover > img[src*="logos/W3C"], - .head a:focus > img[src*="logos/W3C"] { - opacity: .8; - } - - .head a:active > img[src*="logos/W3C"] { - background: #c00; - background: var(--logo-active-bg); - border-color: #c00; - border-color: var(--logo-active-bg); - } - - /* see also additional rules in Link Styling section */ - -/** Copyright *****************************************************************/ - - p.copyright, - p.copyright small { font-size: small; } - -/** Back to Top / ToC Toggle **************************************************/ - - @media print { - #toc-nav { - display: none; - } - } - @media not print { - #toc-nav { - position: fixed; - z-index: 3; - bottom: 0; left: 0; - margin: 0; - min-width: 1.33em; - border-top-right-radius: 2rem; - box-shadow: 0 0 2px; - font-size: 1.5em; - } - #toc-nav > a { - display: block; - white-space: nowrap; - - height: 1.33em; - padding: .1em 0.3em; - margin: 0; - - box-shadow: 0 0 2px; - border: none; - border-top-right-radius: 1.33em; - - color: #707070; - color: var(--tocnav-normal-text); - background: white; - background: var(--tocnav-normal-bg); - } - #toc-nav > a:hover, - #toc-nav > a:focus { - color: black; - color: var(--tocnav-hover-text); - background: #f8f8f8; - background: var(--tocnav-hover-bg); - } - #toc-nav > a:active { - color: #c00; - color: var(--tocnav-active-text); - background: white; - background: var(--tocnav-active-bg); - } - - #toc-nav > #toc-jump { - padding-bottom: 2em; - margin-bottom: -1.9em; - } - - /* statusbar gets in the way on keyboard focus; remove once browsers fix */ - #toc-nav > a[href="#toc"]:not(:hover):focus:last-child { - padding-bottom: 1.5rem; - } - - #toc-nav:not(:hover) > a:not(:focus) > span + span { - /* Ideally this uses :focus-within on #toc-nav */ - display: none; - } - #toc-nav > a > span + span { - padding-right: 0.2em; - } - } - -/** ToC Sidebar ***************************************************************/ - - /* Floating sidebar */ - @media screen { - body.toc-sidebar #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - max-width: 80%; - max-width: calc(100% - 2em - 26px); - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body.toc-sidebar #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - body.toc-sidebar #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - /* Hide main scroller when only the ToC is visible anyway */ - @media screen and (max-width: 28em) { - body.toc-sidebar { - overflow: hidden; - } - } - - /* Sidebar with its own space */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body:not(.toc-inline) #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - - body:not(.toc-inline) { - padding-left: 29em; - } - /* See also Overflow section at the bottom */ - - body:not(.toc-inline) #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) { - margin: 0 4em; - } - } - -/******************************************************************************/ -/* Sectioning */ -/******************************************************************************/ - -/** Headings ******************************************************************/ - - h1, h2, h3, h4, h5, h6, dt { - page-break-after: avoid; - page-break-inside: avoid; - font: 100% sans-serif; /* Reset all font styling to clear out UA styles */ - font-family: inherit; /* Inherit the font family. */ - line-height: 1.2; /* Keep wrapped headings compact */ - hyphens: manual; /* Hyphenated headings look weird */ - } - - h2, h3, h4, h5, h6 { - margin-top: 3rem; - } - - h1, h2, h3 { - color: #005A9C; - color: var(--heading-text); - } - - h1 { font-size: 170%; } - h2 { font-size: 140%; } - h3 { font-size: 120%; } - h4 { font-weight: bold; } - h5 { font-style: italic; } - h6 { font-variant: small-caps; } - dt { font-weight: bold; } - -/** Subheadings ***************************************************************/ - - h1 + h2, - #profile-and-date { - /* #profile-and-date is a subtitle in an H2 under the H1 */ - margin-top: 0; - } - h2 + h3, - h3 + h4, - h4 + h5, - h5 + h6 { - margin-top: 1.2em; /* = 1 x line-height */ - } - -/** Section divider ***********************************************************/ - - :not(.head) > :not(.head) + hr { - font-size: 1.5em; - text-align: center; - margin: 1em auto; - height: auto; - color: black; - color: var(--hr-text); - border: transparent solid 0; - background: transparent; - } - :not(.head) > hr::before { - content: "\2727\2003\2003\2727\2003\2003\2727"; - } - -/******************************************************************************/ -/* Paragraphs and Lists */ -/******************************************************************************/ - - p { - margin: 1em 0; - } - - dd > p:first-child, - li > p:first-child { - margin-top: 0; - } - - ul, ol { - margin-left: 0; - padding-left: 2em; - } - - li { - margin: 0.25em 0 0.5em; - padding: 0; - } - - dl dd { - margin: 0 0 .5em 2em; - } - - .head dd + dd { /* compact for header */ - margin-top: -.5em; - } - - /* Style for algorithms */ - ol.algorithm ol:not(.algorithm), - .algorithm > ol ol:not(.algorithm) { - border-left: 0.5em solid #DEF; - border-left: 0.5em solid var(--algo-border); - } - - /* Put nice boxes around each algorithm. */ - [data-algorithm]:not(.heading) { - padding: .5em; - border: thin solid #ddd; - border: thin solid var(--algo-border); - border-radius: .5em; - margin: .5em calc(-0.5em - 1px); - } - [data-algorithm]:not(.heading) > :first-child { - margin-top: 0; - } - [data-algorithm]:not(.heading) > :last-child { - margin-bottom: 0; - } - - /* Style for switch/case <dl>s */ - dl.switch > dd > ol.only, - dl.switch > dd > .only > ol { - margin-left: 0; - } - dl.switch > dd > ol.algorithm, - dl.switch > dd > .algorithm > ol { - margin-left: -2em; - } - dl.switch { - padding-left: 2em; - } - dl.switch > dt { - text-indent: -1.5em; - margin-top: 1em; - } - dl.switch > dt + dt { - margin-top: 0; - } - dl.switch > dt::before { - content: '\21AA'; - padding: 0 0.5em 0 0; - display: inline-block; - width: 1em; - text-align: right; - line-height: 0.5em; - } - -/** Terminology Markup ********************************************************/ - - -/******************************************************************************/ -/* Inline Markup */ -/******************************************************************************/ - -/** Terminology Markup ********************************************************/ - dfn { /* Defining instance */ - font-weight: bolder; - } - a > i { /* Instance of term */ - font-style: normal; - } - dt dfn code, code.idl { - font-size: inherit; - } - dfn var { - font-style: normal; - } - -/** Change Marking ************************************************************/ - - del { - color: #aa0000; - color: var(--del-text); - background: transparent; - background: var(--del-bg); - text-decoration: line-through; - } - ins { - color: #006100; - color: var(--ins-text); - background: transparent; - background: var(--ins-bg); - text-decoration: underline; - } - - /* for amendments (candidate/proposed changes) */ - - .amendment ins, .correction ins, .addition ins, - ins[class^=c] { - text-decoration-style: dotted; - } - .amendment del, .correction del, .addition del, - del[class^=c] { - text-decoration-style: dotted; - } - .amendment.proposed ins, .correction.proposed ins, .addition.proposed ins, - ins[class^=c].proposed { - text-decoration-style: double; - } - .amendment.proposed del, .correction.proposed del, .addition.proposed del, - del[class^=c].proposed { - text-decoration-style: double; - } - -/** Miscellaneous improvements to inline formatting ***************************/ - - sup { - vertical-align: super; - font-size: 80% - } - -/******************************************************************************/ -/* Code */ -/******************************************************************************/ - -/** General monospace/pre rules ***********************************************/ - - pre, code, samp { - font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace; - font-size: .9em; - hyphens: none; - text-transform: none; - text-align: left; - text-align: start; - font-variant: normal; - orphans: 3; - widows: 3; - page-break-before: avoid; - } - pre code, - code code { - font-size: 100%; - } - - pre { - margin-top: 1em; - margin-bottom: 1em; - overflow: auto; - } - -/** Inline Code fragments *****************************************************/ - - /* Do something nice. */ - -/******************************************************************************/ -/* Links */ -/******************************************************************************/ - -/** General Hyperlinks ********************************************************/ - - /* We hyperlink a lot, so make it less intrusive */ - a[href] { - color: #034575; - color: var(--a-normal-text); - text-decoration: underline #707070; - text-decoration: underline var(--a-normal-underline); - text-decoration-skip-ink: none; - } - a:visited { - color: #034575; - color: var(--a-visited-text); - text-decoration-color: #bbb; - text-decoration-color: var(--a-visited-underline); - } - - /* Indicate interaction with the link */ - a[href]:focus, - a[href]:hover { - text-decoration-thickness: 2px; - } - a[href]:active { - color: #c00; - color: var(--a-active-text); - text-decoration-color: #c00; - text-decoration-color: var(--a-active-underline); - } - - /* Backout above styling for W3C logo */ - .head .logo, - .head .logo a { - border: none; - text-decoration: none; - background: transparent; - } - -/******************************************************************************/ -/* Images */ -/******************************************************************************/ - - img { - border-style: none; - } - - img, svg { - /* Intentionally not color-scheme aware. */ - background: white; - } - - /* For autogen numbers, add - .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; } - */ - - figure, .figure, .sidefigure { - page-break-inside: avoid; - text-align: center; - margin: 2.5em 0; - } - .figure img, .sidefigure img, figure img, - .figure object, .sidefigure object, figure object { - max-width: 100%; - margin: auto; - height: auto; - } - .figure pre, .sidefigure pre, figure pre { - text-align: left; - display: table; - margin: 1em auto; - } - .figure table, figure table { - margin: auto; - } - @media screen and (min-width: 20em) { - .sidefigure { - float: right; - width: 50%; - margin: 0 0 0.5em 0.5em; - } - } - .caption, figcaption, caption { - font-style: italic; - font-size: 90%; - } - .caption::before, figcaption::before, figcaption > .marker { - font-weight: bold; - } - .caption, figcaption { - counter-increment: figure; - } - - /* DL list is indented 2em, but figure inside it is not */ - dd > .figure, dd > figure { margin-left: -2em; } - -/******************************************************************************/ -/* Colored Boxes */ -/******************************************************************************/ - - .issue, .note, .example, .assertion, .advisement, blockquote, - .amendment, .correction, .addition { - margin: 1em auto; - padding: .5em; - border: .5em; - border-left-style: solid; - page-break-inside: avoid; - } - span.issue, span.note { - padding: .1em .5em .15em; - border-right-style: solid; - } - - blockquote > :first-child, - .note > p:first-child, - .issue > p:first-child, - .amendment > p:first-child, - .correction > p:first-child, - .addition > p:first-child { - margin-top: 0; - } - blockquote > :last-child, - .note > p:last-child, - .issue > p:last-child, - .amendment > p:last-child, - .correction > p:last-child, - .addition > p:last-child { - margin-bottom: 0; - } - - - .issue::before, .issue > .marker, - .example::before, .example > .marker, - .note::before, .note > .marker, - details.note > summary > .marker, - .amendment::before, .amendment > .marker, - details.amendment > summary > .marker, - .addition::before, .addition > .marker, - addition.amendment > summary > .marker, - .correction::before, .correction > .marker, - correction.amendment > summary > .marker - { - text-transform: uppercase; - padding-right: 1em; - } - - .example::before, .example > .marker { - display: block; - padding-right: 0em; - } - -/** Blockquotes ***************************************************************/ - - blockquote { - border-color: silver; - border-color: var(--blockquote-border); - background: transparent; - background: var(--blockquote-bg); - color: currentcolor; - color: var(--blockquote-text); - } - -/** Open issue ****************************************************************/ - - .issue { - border-color: #e05252; - border-color: var(--issue-border); - background: #fbe9e9; - background: var(--issue-bg); - color: black; - color: var(--issue-text); - counter-increment: issue; - overflow: auto; - } - .issue::before, .issue > .marker { - color: #831616; - color: var(--issueheading-text); - } - /* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers, - or use class="marker" to mark up the issue number in source. */ - -/** Example *******************************************************************/ - - .example { - border-color: #e0cb52; - border-color: var(--example-border); - background: #fcfaee; - background: var(--example-bg); - color: black; - color: var(--example-text); - counter-increment: example; - overflow: auto; - clear: both; - } - .example::before, .example > .marker { - color: #574b0f; - color: var(--exampleheading-text); - } - /* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers, - or use class="marker" to mark up the example number in source. */ - -/** Non-normative Note ********************************************************/ - - .note { - border-color: #52e052; - border-color: var(--note-border); - background: #e9fbe9; - background: var(--note-bg); - color: black; - color: var(--note-text); - overflow: auto; - } - - .note::before, .note > .marker, - details.note > summary { - color: hsl(120, 70%, 30%); - color: var(--noteheading-text); - } - /* Add .note::before { content: "Note "; } for autogen label, - or use class="marker" to mark up the label in source. */ - - details.note[open] > summary { - border-bottom: 1px silver solid; - border-bottom: 1px var(--notesummary-underline) solid; - } - -/** Assertion Box *************************************************************/ - /* for assertions in algorithms */ - - .assertion { - border-color: #AAA; - border-color: var(--assertion-border); - background: #EEE; - background: var(--assertion-bg); - color: black; - color: var(--assertion-text); - } - -/** Advisement Box ************************************************************/ - /* for attention-grabbing normative statements */ - - .advisement { - border-color: orange; - border-color: var(--advisement-border); - border-style: none solid; - background: #fec; - background: var(--advisement-bg); - color: black; - color: var(--advisement-text); - } - strong.advisement { - display: block; - text-align: center; - } - .advisement::before, .advisement > .marker { - color: #b35f00; - color: var(--advisementheading-text); - } - -/** Amendment Box *************************************************************/ - - .amendment, .correction, .addition { - border-color: #330099; - border-color: var(--amendment-border); - background: #F5F0FF; - background: var(--amendment-bg); - color: black; - color: var(--amendment-text); - } - .amendment.proposed, .correction.proposed, .addition.proposed { - border-style: solid; - border-block-width: 0.25em; - } - .amendment::before, .amendment > .marker, - details.amendment > summary::before, details.amendment > summary > .marker, - .correction::before, .correction > .marker, - details.correction > summary::before, details.correction > summary > .marker, - .addition::before, .addition > .marker, - details.addition > summary::before, details.addition > summary > .marker { - color: #220066; - color: var(--amendmentheading-text); - } - .amendment.proposed::before, .amendment.proposed > .marker, - details.amendment.proposed > summary::before, details.amendment.proposed > summary > .marker, - .correction.proposed::before, .correction.proposed > .marker, - details.correction.proposed > summary::before, details.correction.proposed > summary > .marker, - .addition.proposed::before, .addition.proposed > .marker, - details.addition.proposed > summary::before, details.addition.proposed > summary > .marker { - font-weight: bold; - } - -/** Spec Obsoletion Notice ****************************************************/ - /* obnoxious obsoletion notice for older/abandoned specs. */ - - details { - display: block; - } - summary { - font-weight: bolder; - } - - .annoying-warning:not(details), - details.annoying-warning:not([open]) > summary, - details.annoying-warning[open] { - background: hsla(40,100%,50%,0.95); - background: var(--warning-bg); - color: black; - color: var(--warning-text); - padding: .75em 1em; - border: red; - border: var(--warning-border); - border-style: solid none; - box-shadow: 0 2px 8px black; - text-align: center; - } - .annoying-warning :last-child { - margin-bottom: 0; - } - -@media not print { - details.annoying-warning[open] { - position: fixed; - left: 0; - right: 0; - bottom: 2em; - z-index: 1000; - } -} - - details.annoying-warning:not([open]) > summary { - text-align: center; - } - -/** Entity Definition Boxes ***************************************************/ - - .def { - padding: .5em 1em; - background: #def; - background: var(--def-bg); - margin: 1.2em 0; - border-left: 0.5em solid #8ccbf2; - border-left: 0.5em solid var(--def-border); - color: black; - color: var(--def-text); - } - -/******************************************************************************/ -/* Tables */ -/******************************************************************************/ - - th, td { - text-align: left; - text-align: start; - } - -/** Property/Descriptor Definition Tables *************************************/ - - table.def { - /* inherits .def box styling, see above */ - width: 100%; - border-spacing: 0; - } - - table.def td, - table.def th { - padding: 0.5em; - vertical-align: baseline; - border-bottom: 1px solid #bbd7e9; - border-bottom: 1px solid var(--defrow-border); - } - - table.def > tbody > tr:last-child th, - table.def > tbody > tr:last-child td { - border-bottom: 0; - } - - table.def th { - font-style: italic; - font-weight: normal; - padding-left: 1em; - width: 3em; - } - - /* For when values are extra-complex and need formatting for readability */ - table td.pre { - white-space: pre-wrap; - } - - /* A footnote at the bottom of a def table */ - table.def td.footnote { - padding-top: 0.6em; - } - table.def td.footnote::before { - content: " "; - display: block; - height: 0.6em; - width: 4em; - border-top: thin solid; - } - -/** Data tables (and properly marked-up index tables) *************************/ - /* - <table class="data"> highlights structural relationships in a table - when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute) - - Use class="complex data" for particularly complicated tables -- - (This will draw more lines: busier, but clearer.) - - Use class="long" on table cells with paragraph-like contents - (This will adjust text alignment accordingly.) - Alternately use class="longlastcol" on tables, to have the last column assume "long". - */ - - table { - word-wrap: normal; - overflow-wrap: normal; - hyphens: manual; - } - - table.data, - table.index { - margin: 1em auto; - border-collapse: collapse; - border: hidden; - width: 100%; - } - table.data caption, - table.index caption { - max-width: 50em; - margin: 0 auto 1em; - } - - table.data td, table.data th, - table.index td, table.index th { - padding: 0.5em 1em; - border-width: 1px; - border-color: silver; - border-color: var(--datacell-border); - border-top-style: solid; - } - - table.data thead td:empty { - padding: 0; - border: 0; - } - - table.data thead, - table.index thead, - table.data tbody, - table.index tbody { - border-bottom: 2px solid; - } - - table.data colgroup, - table.index colgroup { - border-left: 2px solid; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - border-right: 2px solid; - border-top: 1px solid silver; - border-top: 1px solid var(--datacell-border); - padding-right: 1em; - } - - table.data th[colspan], - table.data td[colspan] { - text-align: center; - } - - table.complex.data th, - table.complex.data td { - border: 1px solid silver; - border: 1px solid var(--datacell-border); - text-align: center; - } - - table.data.longlastcol td:last-child, - table.data td.long { - vertical-align: baseline; - text-align: left; - } - - table.data img { - vertical-align: middle; - } - - -/* -Alternate table alignment rules - - table.data, - table.index { - text-align: center; - } - - table.data thead th[scope="row"], - table.index thead th[scope="row"] { - text-align: right; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - text-align: right; - } - -Possible extra rowspan handling - - table.data tbody th[rowspan]:not([rowspan='1']), - table.index tbody th[rowspan]:not([rowspan='1']), - table.data tbody td[rowspan]:not([rowspan='1']), - table.index tbody td[rowspan]:not([rowspan='1']) { - border-left: 1px solid silver; - } - - table.data tbody th[rowspan]:first-child, - table.index tbody th[rowspan]:first-child, - table.data tbody td[rowspan]:first-child, - table.index tbody td[rowspan]:first-child{ - border-left: 0; - border-right: 1px solid silver; - } -*/ - -/******************************************************************************/ -/* Indices */ -/******************************************************************************/ - - -/** Table of Contents *********************************************************/ - - .toc a { - /* More spacing; use padding to make it part of the click target. */ - padding: 0.1rem 1px 0; - /* Larger, more consistently-sized click target */ - display: block; - /* Switch to using border-bottom for underlines */ - text-decoration: none; - border-bottom: 1px solid; - /* Reverse color scheme */ - color: black; - color: var(--toclink-text); - border-color: #3980b5; - border-color: var(--toclink-underline); - } - .toc a:visited { - color: black; - color: var(--toclink-visited-text); - border-color: #054572; - border-color: var(--toclink-visited-underline); - } - .toc a:focus, - .toc a:hover { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom-width: 3px; - margin-bottom: -2px; - } - .toc a:not(:focus):not(:hover) { - /* Allow colors to cascade through from link styling */ - border-bottom-color: transparent; - } - - .toc, .toc ol, .toc ul, .toc li { - list-style: none; /* Numbers must be inlined into source */ - /* because generated content isn't search/selectable and markers can't do multilevel yet */ - margin: 0; - padding: 0; - } - .toc { - line-height: 1.1em; - } - - /* ToC not indented until third level, but font style & margins show hierarchy */ - .toc > li { font-weight: bold; } - .toc > li li { font-weight: normal; } - .toc > li li li { font-size: 95%; } - .toc > li li li li { font-size: 90%; } - .toc > li li li li li { font-size: 85%; } - - /* @supports not (display:grid) { */ - .toc > li { margin: 1.5rem 0; } - .toc > li li { margin: 0.3rem 0; } - .toc > li li li { margin-left: 2rem; } - - /* Section numbers in a column of their own */ - .toc .secno { - float: left; - width: 4rem; - white-space: nowrap; - } - .toc > li li li li .secno { font-size: 85%; } - .toc > li li li li li .secno { font-size: 100%; } - - .toc li { - clear: both; - } - - :not(li) > .toc { margin-left: 5rem; } - .toc .secno { margin-left: -5rem; } - .toc > li li li .secno { margin-left: -7rem; } - .toc > li li li li .secno { margin-left: -9rem; } - .toc > li li li li li .secno { margin-left: -11rem; } - - /* Tighten up indentation in narrow ToCs */ - @media (max-width: 30em) { - :not(li) > .toc { margin-left: 4rem; } - .toc .secno { margin-left: -4rem; } - .toc > li li li { margin-left: 1rem; } - .toc > li li li .secno { margin-left: -5rem; } - .toc > li li li li .secno { margin-left: -6rem; } - .toc > li li li li li .secno { margin-left: -7rem; } - } - /* Loosen it on wide screens */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) :not(li) > .toc { margin-left: 4rem; } - body:not(.toc-inline) .toc .secno { margin-left: -4rem; } - body:not(.toc-inline) .toc > li li li { margin-left: 1rem; } - body:not(.toc-inline) .toc > li li li .secno { margin-left: -5rem; } - body:not(.toc-inline) .toc > li li li li .secno { margin-left: -6rem; } - body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; } - } - /* } */ - - @supports (display:grid) and (display:contents) { - /* Use #toc over .toc to override non-@supports rules. */ - #toc { - display: grid; - align-content: start; - grid-template-columns: auto 1fr; - grid-column-gap: 1rem; - column-gap: 1rem; - grid-row-gap: .6rem; - row-gap: .6rem; - } - #toc h2 { - grid-column: 1 / -1; - margin-bottom: 0; - } - #toc ol, - #toc li, - #toc a { - display: contents; - /* Switch <a> to subgrid when supported */ - } - #toc span { - margin: 0; - } - #toc > .toc > li > a > span { - /* The spans of the top-level list, - comprising the first items of each top-level section. */ - margin-top: 1.1rem; - } - #toc#toc .secno { /* Ugh, need more specificity to override base.css */ - grid-column: 1; - width: auto; - margin-left: 0; - } - #toc .content { - grid-column: 2; - width: auto; - margin-right: 1rem; - } - #toc .content:hover, - #toc .content:focus { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; - } - #toc li li li .content { - margin-left: 1rem; - } - #toc li li li li .content { - margin-left: 2rem; - } - } - - -/** Index *********************************************************************/ - - /* Index Lists: Layout */ - ul.index { margin-left: 0; columns: 15em; text-indent: 1em hanging; } - ul.index li { margin-left: 0; list-style: none; break-inside: avoid; } - ul.index li li { margin-left: 1em; } - ul.index dl { margin-top: 0; } - ul.index dt { margin: .2em 0 .2em 20px;} - ul.index dd { margin: .2em 0 .2em 40px;} - /* Index Lists: Typography */ - ul.index ul, - ul.index dl { font-size: smaller; } - @media not print { - ul.index li a + span { - white-space: nowrap; - color: transparent; } - ul.index li a:hover + span, - ul.index li a:focus + span { - color: #707070; - color: var(--indexinfo-text); - } - } - -/** Index Tables *****************************************************/ - /* See also the data table styling section, which this effectively subclasses */ - - table.index { - font-size: small; - border-collapse: collapse; - border-spacing: 0; - text-align: left; - margin: 1em 0; - } - - table.index td, - table.index th { - padding: 0.4em; - } - - table.index tr:hover td:not([rowspan]), - table.index tr:hover th:not([rowspan]) { - color: black; - color: var(--indextable-hover-text); - background: #f7f8f9; - background: var(--indextable-hover-bg); - } - - /* The link in the first column in the property table (formerly a TD) */ - table.index th:first-child a { - font-weight: bold; - } - -/** Outdated warning **********************************************************/ - -.outdated-spec { - color: black; - color: var(--outdatedspec-text); - background-color: rgba(0,0,0,0.5); - background-color: var(--outdatedspec-bg); -} - -.outdated-warning { - position: fixed; - bottom: 50%; - left: 0; - right: 0; - margin: 0 auto; - width: 50%; - background: maroon; - background: var(--outdated-bg); - color: white; - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - position: absolute; - top: 0; - right:0; - margin: 0; - border: 0; - padding: 0.25em 0.5em; - background: transparent; - color: white; - color: var(--outdated-text); - font:1em sans-serif; - text-align:center; -} - -.outdated-warning span { - display: block; -} - -.outdated-collapsed { - bottom: 0; - border-radius: 0; - width: 100%; - padding: 0; -} - -/******************************************************************************/ -/* Print */ -/******************************************************************************/ - - @media print { - /* Pages have their own margins. */ - html { - margin: 0; - } - /* Serif for print. */ - body { - font-family: serif; - } - - .outdated-warning { - position: absolute; - border-style: solid; - border-color: red; - } - - .outdated-warning input { - display: none; - } - } - @page { - margin: 1.5cm 1.1cm; - } - - - -/******************************************************************************/ -/* Overflow Control */ -/******************************************************************************/ - - .figure .caption, .sidefigure .caption, figcaption { - /* in case figure is overlarge, limit caption to 50em */ - max-width: 50rem; - margin-left: auto; - margin-right: auto; - } - .overlarge { - /* Magic to create good item positioning: - "content column" is 50ems wide at max; less on smaller screens. - Extra space (after ToC + content) is empty on the right. - - 1. When item < content column, centers item in column. - 2. When content < item < available, left-aligns. - 3. When item > available, fills available + scroll bar. - */ - display: grid; - grid-template-columns: minmax(0, 50em); - } - .overlarge > table { - /* limit preferred width of table */ - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - @media (min-width: 55em) { - .overlarge { - margin-right: calc(13px + 26.5rem - 50vw); - max-width: none; - } - } - @media screen and (min-width: 78em) { - body:not(.toc-inline) .overlarge { - /* 30.5em body padding 50em content area */ - margin-right: calc(40em - 50vw) !important; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) .overlarge { - /* 4em html margin 30.5em body padding 50em content area */ - margin-right: calc(84.5em - 100vw) !important; - } - } - - @media not print { - .overlarge { - overflow-x: auto; - /* See Lea Verou's explanation background-attachment: - * http://lea.verou.me/2012/04/background-attachment-local/ - * - background: top left / 4em 100% linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) local, - top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local, - top left / 1em 100% linear-gradient(to right, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - white; - background-repeat: no-repeat; - */ - } - } -</style> + <title>Font Metrics API Level 1</title> + <meta content="DREAM" name="w3c-status"> + <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-DREAM" rel="stylesheet"> <link href="https://drafts.css-houdini.org/font-metrics-api-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> + <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ .css.css, .property.property, .descriptor.descriptor { color: var(--a-normal-text); @@ -2172,32 +691,50 @@ </style> <body class="h-entry"> <div class="head"> - <p data-fill-with="logo"></p> + <p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p> <h1 class="p-name no-ref" id="title">Font Metrics API Level 1</h1> - <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span class="content">A Collection of Interesting Ideas, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></span></h2> - <div data-fill-with="spec-metadata"> - <dl> - <dt>This version: - <dd><a class="u-url" href="https://drafts.css-houdini.org/font-metrics-api-1/">https://drafts.css-houdini.org/font-metrics-api-1/</a> - <dt>Feedback: - <dd><span><a href="mailto:public-houdini@w3.org?subject=%5Bfont-metrics-api%5D%20YOUR%20TOPIC%20HERE">public-houdini@w3.org</a> with subject line “<kbd>[font-metrics-api] <i data-lt>… message topic …</i></kbd>” (<a href="http://lists.w3.org/Archives/Public/public-houdini/" rel="discussion">archives</a>)</span> - <dt class="editor">Editors: - <dd class="editor p-author h-card vcard" data-editor-id="93298"><a class="p-name fn u-email email" href="mailto:eae@google.com">Emil A Eklund</a> - <dd class="editor p-author h-card vcard" data-editor-id="46659"><a class="p-name fn u-email email" href="mailto:stearns@adobe.com">Alan Stearns</a> - </dl> - </div> + <p id="w3c-state"><a href="https://www.w3.org/standards/types#DREAM">A Collection of Interesting Ideas</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <details open> + <summary>More details about this document</summary> + <div data-fill-with="spec-metadata"> + <dl> + <dt>This version: + <dd><a class="u-url" href="https://drafts.css-houdini.org/font-metrics-api-1/">https://drafts.css-houdini.org/font-metrics-api-1/</a> + <dt>Feedback: + <dd><span><a href="mailto:public-houdini@w3.org?subject=%5Bfont-metrics-api%5D%20YOUR%20TOPIC%20HERE">public-houdini@w3.org</a> with subject line “<kbd>[font-metrics-api] <i data-lt>… message topic …</i></kbd>” (<a href="http://lists.w3.org/Archives/Public/public-houdini/" rel="discussion">archives</a>)</span> + <dt class="editor">Editors: + <dd class="editor p-author h-card vcard" data-editor-id="93298"><a class="p-name fn u-email email" href="mailto:eae@google.com">Emil A Eklund</a> + <dd class="editor p-author h-card vcard" data-editor-id="46659"><a class="p-name fn u-email email" href="mailto:stearns@adobe.com">Alan Stearns</a> + </dl> + </div> + </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright -and related or neighboring rights to this work. -In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. -Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> </div> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> + <div data-fill-with="status"> + <p><em>This section describes the status of this document at the time of its publication. + A list of current W3C publications + and the latest revision of this technical report + can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> + <p>Please send feedback + by <a href="https://github.com/w3c/css-houdini-drafts/issues">filing issues in GitHub</a> (preferred), + including the spec code “font-metrics-api” in the title, like this: + “[font-metrics-api] <i>…summary of comment…</i>”. + All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. + Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bfont-metrics-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. + W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; + that page also includes instructions for disclosing a patent. + An individual who has actual knowledge of a patent which the individual believes + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p></p> + </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> @@ -2499,7 +1036,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-rfc2119">[RFC2119] diff --git a/tests/github/w3c/css-houdini-drafts/worklets/Overview.console.txt b/tests/github/w3c/css-houdini-drafts/worklets/Overview.console.txt index ad89219dda..8d40d41fcb 100644 --- a/tests/github/w3c/css-houdini-drafts/worklets/Overview.console.txt +++ b/tests/github/w3c/css-houdini-drafts/worklets/Overview.console.txt @@ -1,3 +1 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/css-houdini-drafts/worklets/Overview.html b/tests/github/w3c/css-houdini-drafts/worklets/Overview.html index a658d37f6e..521a942338 100644 --- a/tests/github/w3c/css-houdini-drafts/worklets/Overview.html +++ b/tests/github/w3c/css-houdini-drafts/worklets/Overview.html @@ -5,7 +5,6 @@ <title>Worklets Level 1</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://html.spec.whatwg.org/multipage/worklets.html" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -436,7 +435,7 @@ <h1 class="p-name no-ref" id="title">Worklets Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -455,12 +454,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[worklets] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-houdini-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bworklets%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/csswg-drafts/css-2015/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-2015/Overview.console.txt index 7dfd635ed2..169dec30bb 100644 --- a/tests/github/w3c/csswg-drafts/css-2015/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-2015/Overview.console.txt @@ -10,6 +10,7 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css22; type:selector; text::lang() spec:selectors-4; type:selector; text::lang() '':lang()'' +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 128: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="128" data-dfn-type="dfn" id="cascading-style-sheets-css" data-lt="Cascading Style Sheets (CSS)" data-noexport="by-default" class="dfn-paneled">Cascading Style Sheets (CSS)</dfn> LINE 313: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/css-2015/Overview.html b/tests/github/w3c/csswg-drafts/css-2015/Overview.html index bcbe0ec6b9..c39189ee26 100644 --- a/tests/github/w3c/csswg-drafts/css-2015/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-2015/Overview.html @@ -5,7 +5,6 @@ <title>CSS Snapshot 2015</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/CSS/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -729,7 +728,7 @@ <h1 class="p-name no-ref" id="title">CSS Snapshot 2015</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -900,7 +899,7 @@ <h2 class="heading settled" data-level="2" id="css"><span class="secno">2. </spa <dd> Replaces CSS2§7.2, updating the definition of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media" id="ref-for-at-ruledef-media">@media</a> rules to allow nesting, and introduces <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports" id="ref-for-at-ruledef-supports">@supports</a> rules for feature-support queries. <dt><a href="https://www.w3.org/TR/css3-namespace/">CSS Namespaces</a> <a data-link-type="biblio" href="#biblio-css3-namespace" title="CSS Namespaces Module Level 3">[CSS3-NAMESPACE]</a> - <dd> Introduces an <span class="css">@namespace</span> rule to allow namespace-prefixed selectors. + <dd> Introduces an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule to allow namespace-prefixed selectors. <dt><a href="https://www.w3.org/TR/css3-selectors/">Selectors Level 3</a> <a data-link-type="biblio" href="#biblio-select" title="Selectors Level 3">[SELECT]</a> <dd> Replaces CSS2§5 and CSS2§6.4.3, defining an extended range of selectors. <dt><a href="https://www.w3.org/TR/css3-cascade/">CSS Cascading and Inheritance Level 3</a> <a data-link-type="biblio" href="#biblio-css-cascade-3" title="CSS Cascading and Inheritance Level 3">[CSS-CASCADE-3]</a> @@ -967,7 +966,7 @@ <h2 class="heading settled" data-level="2" id="css"><span class="secno">2. </spa and text shadows. <dt><a href="https://www.w3.org/TR/css-will-change-1/">CSS Will Change Level 1</a> <a data-link-type="biblio" href="#biblio-css-will-change-1" title="CSS Will Change Module Level 1">[CSS-WILL-CHANGE-1]</a> <dd> Introduces a performance hint property called <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-will-change-1/#propdef-will-change" id="ref-for-propdef-will-change">will-change</a>. - <dt><a href="https://www.w3.org/TR/css3-speech/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module">[CSS3-SPEECH]</a> + <dt><a href="https://www.w3.org/TR/css3-speech/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module Level 1">[CSS3-SPEECH]</a> <dd> Replaces CSS2§A, overhauling the (non-normative) speech rendering chapter. </dl> @@ -1617,6 +1616,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5f1b7f60">@media</span> <li><span class="dfn-paneled" id="c1ebc639">@supports</span> </ul> + <li> + <a data-link-type="biblio">[CSS3-NAMESPACE]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> + </ul> <li> <a data-link-type="biblio">[SELECTORS4]</a> defines the following terms: <ul> @@ -1627,11 +1631,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing">[COMPOSITING] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-css-cascade-3">[CSS-CASCADE-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-3/">https://drafts.csswg.org/css-cascade-3/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -1651,13 +1655,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css3-background">[CSS3-BACKGROUND] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3-color">[CSS3-COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css3-images">[CSS3-IMAGES] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css3-mediaqueries">[CSS3-MEDIAQUERIES] @@ -1692,7 +1696,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> <dt id="biblio-css3-speech">[CSS3-SPEECH] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> @@ -1912,6 +1916,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "647de2a6": {"dfnID":"647de2a6","dfnText":"cursor","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-cursor"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-cursor"}, "91bfbe18": {"dfnID":"91bfbe18","dfnText":"opacity","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-opacity"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, "ab039d4e": {"dfnID":"ab039d4e","dfnText":"<counter-style>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-counter-style"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "cascading-style-sheets-css": {"dfnID":"cascading-style-sheets-css","dfnText":"Cascading Style Sheets (CSS)","external":false,"refSections":[],"url":"#cascading-style-sheets-css"}, "css-level-1": {"dfnID":"css-level-1","dfnText":"CSS Level 1","external":false,"refSections":[{"refs":[{"id":"ref-for-css-level-1"}],"title":"2.1. \nCSS Levels"}],"url":"#css-level-1"}, @@ -2344,6 +2349,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@supports","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"@counter-style","type":"at-rule","url":"https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style"}, "https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"<counter-style>","type":"type","url":"https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"max-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"min-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content"}, "https://drafts.csswg.org/css-ui-4/#propdef-cursor": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"cursor","type":"property","url":"https://drafts.csswg.org/css-ui-4/#propdef-cursor"}, diff --git a/tests/github/w3c/csswg-drafts/css-2017/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-2017/Overview.console.txt index e82b7db166..2da1b0ab3e 100644 --- a/tests/github/w3c/csswg-drafts/css-2017/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-2017/Overview.console.txt @@ -350,6 +350,7 @@ LINE 804: Unknown spec name 'css-style-attr-1' on <index bs-line-number="804" ty css-grid-1, filter-effects-1, css-break-3" data-link-status="TR"></index> +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 129: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="129" data-dfn-type="dfn" id="cascading-style-sheets-css" data-lt="Cascading Style Sheets (CSS)" data-noexport="by-default" class="dfn-paneled">Cascading Style Sheets (CSS)</dfn> LINE 360: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/css-2017/Overview.html b/tests/github/w3c/csswg-drafts/css-2017/Overview.html index c1b86bb17e..a00529440a 100644 --- a/tests/github/w3c/csswg-drafts/css-2017/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-2017/Overview.html @@ -5,7 +5,6 @@ <title>CSS Snapshot 2017</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/CSS/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -727,7 +726,7 @@ <h1 class="p-name no-ref" id="title">CSS Snapshot 2017</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -897,7 +896,7 @@ <h2 class="heading settled" data-level="2" id="css"><span class="secno">2. </spa <dd> Replaces CSS2§7.2, updating the definition of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media" id="ref-for-at-ruledef-media">@media</a> rules to allow nesting, and introduces <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports" id="ref-for-at-ruledef-supports">@supports</a> rules for feature-support queries. <dt><a href="https://www.w3.org/TR/css3-namespace/">CSS Namespaces</a> <a data-link-type="biblio" href="#biblio-css3-namespace" title="CSS Namespaces Module Level 3">[CSS3-NAMESPACE]</a> - <dd> Introduces an <span class="css">@namespace</span> rule to allow namespace-prefixed selectors. + <dd> Introduces an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule to allow namespace-prefixed selectors. <dt><a href="https://www.w3.org/TR/css3-selectors/">Selectors Level 3</a> <a data-link-type="biblio" href="#biblio-select" title="Selectors Level 3">[SELECT]</a> <dd> Replaces CSS2§5 and CSS2§6.4.3, defining an extended range of selectors. <dt><a href="https://www.w3.org/TR/css3-cascade/">CSS Cascading and Inheritance Level 3</a> <a data-link-type="biblio" href="#biblio-css-cascade-3" title="CSS Cascading and Inheritance Level 3">[CSS-CASCADE-3]</a> @@ -975,7 +974,7 @@ <h2 class="heading settled" data-level="2" id="css"><span class="secno">2. </spa and text shadows. <dt><a href="https://www.w3.org/TR/css-will-change-1/">CSS Will Change Level 1</a> <a data-link-type="biblio" href="#biblio-css-will-change-1" title="CSS Will Change Module Level 1">[CSS-WILL-CHANGE-1]</a> <dd> Introduces a performance hint property called <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-will-change-1/#propdef-will-change" id="ref-for-propdef-will-change">will-change</a>. - <dt><a href="https://www.w3.org/TR/css3-speech/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module">[CSS3-SPEECH]</a> + <dt><a href="https://www.w3.org/TR/css3-speech/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module Level 1">[CSS3-SPEECH]</a> <dd> Replaces CSS2§A, overhauling the (non-normative) speech rendering chapter. <dt><a href="https://www.w3.org/TR/css-align-3/">CSS Box Alignment Module Level 3</a> <a data-link-type="biblio" href="#biblio-css-align-3" title="CSS Box Alignment Module Level 3">[CSS-ALIGN-3]</a> @@ -1253,49 +1252,88 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. filter-effects-1, css-break-3" data-link-status="TR"> <ul class="index"> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18"></a> + <li> + = + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x14">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x16">~=</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-x">1st &lt;length></a> <li><a href="https://drafts.csswg.org/css-transforms-1/#2d-matrix">2d matrix</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-y">2nd &lt;length></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-blur-radius">3rd &lt;length [0,∞]></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-spread-distance">4th &lt;length></a> <li><a href="https://drafts.csswg.org/css-values-3/#absolute-length">absolute length</a> + <li><a href="https://drafts.csswg.org/css-values-3/#absolute-length">absolute length unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#absolutely-positioned">absolutely positioned element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#abstract-dimensions">abstract dimensions</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">:active</a> <li><a href="https://drafts.csswg.org/css-color-3/#activeborder">activeborder</a> <li><a href="https://drafts.csswg.org/css-color-3/#activecaption">activecaption</a> <li><a href="https://drafts.csswg.org/css-animations-1/#active-duration">active duration</a> - <li><a href="https://drafts.csswg.org/css-cascade-3/#actual-value">actual value</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">active (pseudo-class)</a> + <li> + actual value + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#actual-value">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#actual-value">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#additive-tuple">additive tuple</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x28">adjoining margins</a> <li><a href="https://drafts.csswg.org/css-values-3/#length-advance-measure">advance measure</a> + <li> + :after + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x59">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">after</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#after-change-style">after-change style</a> <li><a href="https://drafts.csswg.org/css-color-3/#aliceblue">aliceblue</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-baseline">alignment baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-container">alignment container</a> <li><a href="https://drafts.csswg.org/css-align-3/#shared-alignment-context">alignment context</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-subject">alignment subject</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#all-media-group">'all' media group</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#alphabetic-baseline">alphabetic baseline</a> <li><a href="https://drafts.csswg.org/css-color-3/#alphavalue-def">&lt;alphavalue></a> <li><a href="https://drafts.csswg.org/css-images-3/#css-ambiguous-image-url">ambiguous image url</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#anb">an+b</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ancestor">ancestor</a> <li><a href="https://drafts.csswg.org/css-values-3/#anchor-unit">anchor</a> <li><a href="https://drafts.csswg.org/css-values-3/#anchor-unit">anchor unit</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-angle">&lt;angle></a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-animation">animation origin</a> <li><a href="https://drafts.csswg.org/css-variables-1/#animation-tainted">animation-tainted</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x9">anonymous</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x14">anonymous inline boxes</a> <li><a href="https://drafts.csswg.org/css-color-3/#antiquewhite">antiquewhite</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#applies-to">applies to</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#applies-to">apply to</a> <li><a href="https://drafts.csswg.org/css-color-3/#appworkspace">appworkspace</a> <li><a href="https://drafts.csswg.org/css-color-3/#aqua">aqua</a> <li><a href="https://drafts.csswg.org/css-color-3/#aquamarine">aquamarine</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">arbitrary substitution</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#arbitrary-substitution-function">arbitrary substitution function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-two-code-points-are-a-valid-escape">are a valid escape</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x13">atomic inline-level box</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#at-rule">at-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x18">attr()</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#attribute">attribute</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#audio-media-group">'audio' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x0">auditory icon</a> <li><a href="https://drafts.csswg.org/css-grid-1/#augmented-grid">augmented grid</a> <li><a href="https://drafts.csswg.org/css-speech-1/#aural-box-model">aural box model</a> <li><a href="https://www.w3.org/TR/CSS21/conform.html#author">author</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#authoring">authoring tool</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-author">author origin</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-author">author-origin</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-author">author style sheet</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic column position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic grid position</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x1">automatic numbering</a> <li><a href="https://drafts.csswg.org/css-grid-1/#auto-placement">automatic placement</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic row position</a> @@ -1306,8 +1344,12 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#azure">azure</a> <li><a href="https://drafts.fxtf.org/compositing-1/#backdrop">backdrop</a> <li><a href="https://drafts.csswg.org/css-color-3/#background">background</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-color-layer">background color</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-images">background image</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-image-layer">background image layer</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-painting-area">background painting area</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-positioning-area">background positioning area</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#escaped-characters">backslash escapes</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#baseline">baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-alignment">baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-alignment-preference">baseline alignment preference</a> @@ -1318,6 +1360,13 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#baseline-table">baseline table</a> <li><a href="https://drafts.csswg.org/css-grid-1/#base-size">base size</a> <li><a href="https://drafts.csswg.org/css-values-3/#bearing-angle">bearing angle</a> + <li> + :before + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x57">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">before</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#before-change-style">before-change style</a> <li><a href="https://drafts.csswg.org/css-color-3/#beige">beige</a> <li><a href="https://drafts.csswg.org/css-text-3/#bidi-formatting-characters">bidi formatting characters</a> @@ -1326,21 +1375,28 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidi-isolate">bidi isolation</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidi-paragraph">bidi paragraph</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidirectionality">bidirectionality</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x45">bidirectionality (bidi)</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bi-orientational">bi-orientational</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bi-orientational-transform">bi-orientational transform</a> <li><a href="https://drafts.csswg.org/css-color-3/#bisque">bisque</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#bitmap-media-group">'bitmap' media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#black">black</a> <li><a href="https://drafts.csswg.org/css-color-3/#blanchedalmond">blanchedalmond</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#paren-block">()-block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#square-block">[]-block</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-block">block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#curly-block">{}-block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#block-at-rule">block at-rule</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-axis">block axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-axis">block-axis</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x8">block box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#block-container-box">block container box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-dimension">block dimension</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-end">block end</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-end">block-end</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-flow-direction">block flow direction</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x5">block-level box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#block-level">block-level element</a> <li><a href="https://drafts.csswg.org/css-text-3/#block-scripts">block scripts</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-size">block size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-size">block-size</a> @@ -1348,13 +1404,29 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-start">block-start</a> <li><a href="https://drafts.csswg.org/css-color-3/#blue">blue</a> <li><a href="https://drafts.csswg.org/css-color-3/#blueviolet">blueviolet</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#blur-radius">blur radius</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-blur-radius">blur radius</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x14">border box</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-color-dfn">border color</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#border-edge">border edge</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-dfn">border image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-area">border image area</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-region">border image region</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-border-area">border::of a box</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-radii">border radius</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style></a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-style-dfn">border style</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-width-dfn">border width</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-align-3/#box-alignment-properties">box alignment properties</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-border-area">box::border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-content-area">box::content</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-height">box::content height</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-width">box::content width</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#box-corner">box-corner</a> <li><a href="https://drafts.csswg.org/css-break-3/#box-fragment">box fragment</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-margin-area">box::margin</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#x0">box::overflow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-padding-area">box::padding</a> <li><a href="https://www.w3.org/TR/css-break-3/#break">break</a> <li><a href="https://drafts.csswg.org/css-color-3/#brown">brown</a> <li><a href="https://drafts.csswg.org/css-color-3/#burlywood">burlywood</a> @@ -1365,34 +1437,49 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#cadetblue">cadetblue</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-cancel">cancel</a> <li><a href="https://drafts.csswg.org/css-values-3/#canonical-unit">canonical unit</a> + <li><a href="https://www.w3.org/TR/CSS21/intro.html#canvas">canvas</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#canvas-background">canvas background</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#canvas-surface">canvas surface</a> <li><a href="https://drafts.csswg.org/css-color-3/#captiontext">captiontext</a> - <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade">cascade</a> + <li> + cascade + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x12">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascaded-value">cascaded value</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#origin">cascade origin</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#central-baseline">central baseline</a> <li><a href="https://drafts.csswg.org/css-text-3/#character">character</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x50">character encoding</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x57">"@charset"</a> <li><a href="https://drafts.csswg.org/css-color-3/#chartreuse">chartreuse</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">check if three code points would start an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">check if three code points would start a number</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range">check if three code points would start a unicode-range</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-two-code-points-are-a-valid-escape">check if two code points are a valid escape</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#child">child</a> <li><a href="https://drafts.csswg.org/selectors-3/#child-combinator">child combinator</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x13">child selector</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-chinese">chinese</a> <li><a href="https://drafts.csswg.org/css-color-3/#chocolate">chocolate</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circled-lower-latin">circled-lower-latin</a> <li><a href="https://drafts.csswg.org/css-grid-1/#clamp-a-grid-area">clamp a grid area</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#clearance">clearance.</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#clipping-path">clipping path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#clipping-region">clipping region</a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#closest-side">closest-side</a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#closest-side">closest-side</a> <li><a href="https://drafts.csswg.org/css-text-3/#clustered-scripts">clustered scripts</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x26">collapse</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#collapsed-flex-item">collapsed flex item</a> <li><a href="https://drafts.csswg.org/css-grid-1/#collapsed-grid-track">collapsed grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#collapsed-gutter">collapsed gutter</a> <li><a href="https://www.w3.org/TR/css-grid-1/#collapsed-track">collapsed track</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x29">collapse through</a> <li><a href="https://drafts.csswg.org/css-text-3/#collapsible-white-space">collapsible white space</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x27">collapsing margin</a> <li><a href="https://drafts.csswg.org/css-color-3/#ltcolorgt">&lt;color></a> - <li><a href="https://drafts.csswg.org/css-color-3/#color0">color</a> + <li><a href="https://drafts.csswg.org/css-color-3/#color1">color</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-stop">color stop</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-stop-list">color stop list</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-transition-hint">color transition hint</a> @@ -1402,6 +1489,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-multicol-1/#column-height">column height</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#column-rule">column rule</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#column-width">column width</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#combinator">combinator</a> <li><a href="https://drafts.csswg.org/selectors-3/#combinators0">combinators</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-combined-duration">combined duration</a> <li><a href="https://drafts.csswg.org/css-align-3/#compatible-baseline-alignment-preferences">compatible baseline alignment preferences</a> @@ -1411,16 +1499,27 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#component-value">component value</a> <li><a href="https://drafts.csswg.org/css-images-3/#computed-image">computed &lt;image></a> <li><a href="https://drafts.csswg.org/css-grid-1/#computed-track-list">computed track list</a> - <li><a href="https://drafts.csswg.org/css-cascade-3/#computed-value">computed value</a> + <li> + computed value + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#computed-value">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#computed-value">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-images-3/#concrete-object-size">concrete object size</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#conditional-group-rule">conditional group rule</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x9">conditional import</a> <li><a href="https://drafts.csswg.org/css-text-3/#conditionally-hang">conditionally hang</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#conformance-term">conformance</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x21">consecutive</a> <li><a href="https://drafts.csswg.org/css-images-3/#constraint-rectangle">constraint rectangle</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-block">consume a block</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-blocks-contents">consume a block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-component-value">consume a component value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-declaration">consume a declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-function">consume a function</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-declarations">consume a list of declarations</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-rules">consume a list of rules</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-component-values">consume a list of component values</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-declarations">consume a list of declarations</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-rules">consume a list of rules</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-at-rule">consume an at-rule</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-escaped-code-point">consume an escaped code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-ident-like-token">consume an ident-like token</a> @@ -1430,24 +1529,41 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-qualified-rule">consume a qualified rule</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-simple-block">consume a simple block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-string-token">consume a string token</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-style-blocks-contents">consume a style block's contents</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-token">consume a token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-style-blocks-contents">consume a style block's contents</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-stylesheets-contents">consume a stylesheet's contents</a> + <li> + consume a token + <ul> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-token">in css-syntax-3</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-consume-a-token">in css-syntax-3, for token stream</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#tokenizer-consume-a-token">in css-syntax-3, for tokenizer</a> + </ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-unicode-range-token">consume a unicode-range token</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-url-token">consume a url token</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-comments">consume comments</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-next-input-token">consume the next input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-the-next-input-token">consume the next input token</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-declaration">consume the remnants of a bad declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-url">consume the remnants of a bad url</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-value-of-a-unicode-range-descriptor">consume the value of a unicode-range descriptor</a> <li><a href="https://drafts.csswg.org/css-images-3/#contain-constraint">contain constraint</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#containing-block">containing block</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#containing-block-for-all-descendants">containing block for all descendants</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#x1">containing block::initial</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#content">content</a> <li> content-based minimum size <ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#content-based-minimum-size">in css-flexbox-1</a> <li><a href="https://drafts.csswg.org/css-grid-1/#content-based-minimum-size">in css-grid-1</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x10">content box</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribute">content distribution</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribute">content-distribution</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribution-properties">content-distribution properties</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-edge">content edge</a> <li><a href="https://drafts.csswg.org/css-text-3/#content-language">content language</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-content-area">content::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#rendered-content">content::rendered</a> <li> content size suggestion <ul> @@ -1455,11 +1571,15 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-grid-1/#content-size-suggestion">in css-grid-1</a> </ul> <li><a href="https://drafts.csswg.org/css-text-3/#content-writing-system">content writing system</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#convert-a-string-to-a-number">convert a string to a number</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#continuous-media-group">'continuous' media group</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#convert-a-string-to-a-number">convert a string to a number</a> <li><a href="https://drafts.csswg.org/css-align-3/#coordinated-self-alignment-preference">coordinated self-alignment preference</a> <li><a href="https://drafts.csswg.org/css-color-3/#coral">coral</a> <li><a href="https://drafts.csswg.org/css-color-3/#cornflowerblue">cornflowerblue</a> <li><a href="https://drafts.csswg.org/css-color-3/#cornsilk">cornsilk</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-counter">&lt;counter></a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x46">counter()</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#counters">counters</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#counter-style">counter style</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#counter-symbol">counter symbol</a> <li><a href="https://drafts.csswg.org/css-images-3/#cover-constraint">cover constraint</a> @@ -1479,12 +1599,14 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">css identifier</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-sequence">css ident sequence</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#css-qualified-name">css qualified name</a> + <li><a href="https://drafts.csswg.org/css-values-3/#css-value-definition-syntax">css value definition syntax</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-wide-keywords">css-wide keywords</a> <li><a href="https://drafts.csswg.org/css-color-3/#currentColor-def">currentcolor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#current-input-code-point">current input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#current-input-token">current input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#current-input-token">current input token</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#current-transformation-matrix">current transformation matrix</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#current-value">current value</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#cursive-def">cursive</a> <li><a href="https://drafts.csswg.org/css-text-3/#cursive-script">cursive script</a> <li><a href="https://drafts.csswg.org/css-variables-1/#custom-property">custom property</a> <li><a href="https://drafts.csswg.org/css-color-3/#cyan">cyan</a> @@ -1507,7 +1629,13 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#darkslategrey">darkslategrey</a> <li><a href="https://drafts.csswg.org/css-color-3/#darkturquoise">darkturquoise</a> <li><a href="https://drafts.csswg.org/css-color-3/#darkviolet">darkviolet</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#declaration">declaration</a> + <li> + declaration + <ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#declaration">in css-syntax-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x19">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x14">declaration block</a> <li><a href="https://drafts.csswg.org/selectors-3/#declared">declared</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#declared-value">declared value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-decode-bytes">decode bytes</a> @@ -1517,6 +1645,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-namespaces-3/#default-namespace">default namespace</a> <li><a href="https://drafts.csswg.org/css-images-3/#default-object-size">default object size</a> <li><a href="https://drafts.csswg.org/css-images-3/#default-sizing-algorithm">default sizing algorithm</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#default-style-sheet">default style sheet</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">definite</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-position">definite column position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite column span</a> @@ -1527,6 +1656,8 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite row span</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">definite size</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite span</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#descendant">descendant</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x12">descendant-selectors</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-descriptor">descriptor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-descriptor-declarations">descriptor declarations</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#destination">destination</a> @@ -1539,22 +1670,32 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#dimgrey">dimgrey</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#directional-embedding">directional embedding</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#directional-override">directional override</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-mark">discard a mark</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-token">discard a token</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-whitespace">discard whitespace</a> <li><a href="https://drafts.csswg.org/css-align-3/#distributed-alignment">distributed alignment</a> <li><a href="https://drafts.csswg.org/css-grid-1/#distribute-extra-space">distribute extra space</a> - <li> - document - <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#document">in css-backgrounds-3</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#document">in css-speech-1</a> - </ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#document">document</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#doclanguage">document language</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#doctree">document tree</a> <li><a href="https://drafts.csswg.org/css-text-3/#white-space">document white space</a> <li><a href="https://drafts.csswg.org/css-text-3/#white-space">document white space characters</a> <li><a href="https://drafts.csswg.org/css-color-3/#dodgerblue">dodgerblue</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#dominant-baseline">dominant baseline</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#element">element</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#following">element::following</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#preceding">element::preceding</a> + <li> + empty + <ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-empty">in css-syntax-3, for token stream</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#empty">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#em-width">em (unit)</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-end">end</a> <li><a href="https://drafts.csswg.org/css-images-3/#ending-point">ending point</a> <li><a href="https://drafts.csswg.org/css-images-3/#ending-shape">ending shape</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#ending-token">ending token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#ending-token">ending token</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-end">endmost</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-end-time">end time</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-end-value">end value</a> @@ -1562,6 +1703,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#eof-code-point">eof code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#escape-codepoint">escaping</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#establish-an-orthogonal-flow">establish an orthogonal flow</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x14">exact matching</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#expanded-name">expanded name</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid">explicit grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid column</a> @@ -1569,8 +1711,11 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid row</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicitly-assigned-line-name">explicitly-assigned line name</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#ex">ex (unit)</a> <li><a href="https://drafts.csswg.org/css-align-3/#fallback-alignment">fallback alignment</a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#farthest-side">farthest-side</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#fantasy-def">fantasy</a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#farthest-side">farthest-side</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x48">fictional tag sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-filter-code-points">filter code points</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-filter-code-points">filtered code points</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-primitive">filter primitive</a> @@ -1579,13 +1724,20 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-primitive-tree">filter primitive tree</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-region">filter region</a> <li><a href="https://drafts.csswg.org/css-color-3/#firebrick">firebrick</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x10">:first</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-alignment">first-baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-content-alignment">first-baseline content-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-set">first baselines</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-self-alignment">first-baseline self-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-set">first baseline set</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x24">:first-child</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x24">first-child</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#cross-axis-baseline">first cross-axis baseline set</a> <li><a href="https://drafts.csswg.org/selectors-3/#first-formatted-line0">first formatted line</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">:first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">:first-line</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">first-line</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-axis-baseline">first main-axis baseline set</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#first-symbol-value">first symbol value</a> <li><a href="https://drafts.csswg.org/css-grid-1/#fixed-sizing-function">fixed sizing function</a> @@ -1618,9 +1770,15 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#flex-line">flex line</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#flex-flex-shrink-factor">flex shrink factor</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#float-area">float area</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#float-rules">float rules</a> <li><a href="https://drafts.csswg.org/css-color-3/#floralwhite">floralwhite</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x25">flow of an element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#flow-relative">flow-relative</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#flow-relative-direction">flow-relative direction</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">:focus</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#x8">focus</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">focus (pseudo-class)</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#following">following element</a> <li><a href="https://drafts.csswg.org/css-values-3/#font-relative-length">font-relative lengths</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#footnote">footnote</a> <li><a href="https://drafts.csswg.org/css-break-3/#forced-break">forced break</a> @@ -1628,6 +1786,9 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-text-3/#forced-line-break">forced line break</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#forced-paragraph-break">forced paragraph break</a> <li><a href="https://drafts.csswg.org/css-color-3/#forestgreen">forestgreen</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x32">formatting context</a> + <li><a href="https://www.w3.org/TR/CSS21/intro.html#formatting-structure">formatting structure</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x0">forward-compatible parsing</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragment">fragment</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmentainer">fragmentainer</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmentation">fragmentation</a> @@ -1638,6 +1799,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-break-3/#fragmentation-root">fragmentation root</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmented-flow">fragmented flow</a> <li><a href="https://drafts.csswg.org/css-grid-1/#free-space">free space</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-frequency">&lt;frequency></a> <li><a href="https://drafts.csswg.org/css-color-3/#fuchsia">fuchsia</a> <li><a href="https://drafts.csswg.org/css-text-3/#kana-full-size">full-size</a> <li><a href="https://drafts.csswg.org/css-text-3/#kana-full-size">full-size kana</a> @@ -1649,6 +1811,8 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter">generate a counter</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter">generate a counter representation</a> <li><a href="https://drafts.csswg.org/css-align-3/#generate-baselines">generate baselines</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x0">generated content</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-generic-voice">&lt;generic-voice></a> <li><a href="https://drafts.csswg.org/css-color-3/#ghostwhite">ghostwhite</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#go">go</a> <li><a href="https://drafts.csswg.org/css-color-3/#gold">gold</a> @@ -1674,8 +1838,10 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-grid-1/#grid-item">grid item</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-item-placement-algorithm">grid item placement algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-layout">grid layout</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#layout-algorithm">grid layout algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-level">grid-level</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-line">grid line</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#grid-media-group">'grid' media group</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-order">grid-modified document order</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-order">grid order</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-placement">grid placement</a> @@ -1683,7 +1849,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-grid-1/#grid-position">grid position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-row">grid row</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-line">grid row line</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#grid-sizing-algorithm">grid sizing algorithm</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#algo-grid-sizing">grid sizing algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-span">grid span</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-track">grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#growth-limit">growth limit</a> @@ -1700,25 +1866,35 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#x-axis">horizontal axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-block-flow">horizontal block flow</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-dimension">horizontal dimension</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#horizontal-offset">horizontal offset</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-horizontal-offset">horizontal offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-only">horizontal-only</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-script">horizontal script</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-typographic-mode">horizontal typographic mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-writing-mode">horizontal writing mode</a> <li><a href="https://drafts.csswg.org/css-color-3/#hotpink">hotpink</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">:hover</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">hover (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenate">hyphenate</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenate">hyphenation</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenation-opportunity">hyphenation opportunity</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18">hyphen-separated matching</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#hypothetical-cross-size">hypothetical cross size</a> <li><a href="https://drafts.csswg.org/css-grid-1/#hypothetical-fr-size">hypothetical fr size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#hypothetical-main-size">hypothetical main size</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">ident</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-code-point">ident code point</a> - <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">identifier</a> + <li> + identifier + <ul> + <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">in css-values-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-transforms-1/#identity-transform-function">identity transform function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-sequence">ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-start-code-point">ident-start code point</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ignore">ignore</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-ignored">ignored</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#illegal">illegal</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid">implicit grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-track">implicit grid column</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-lines">implicit grid lines</a> @@ -1727,6 +1903,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-track">implicit grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicitly-assigned-line-name">implicitly-assigned line name</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicitly-named-area">implicitly-named area</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x7">@import</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#important">important</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#import-conditions">import conditions</a> <li><a href="https://drafts.csswg.org/css-color-3/#inactiveborder">inactiveborder</a> @@ -1734,9 +1911,11 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#inactivecaptiontext">inactivecaptiontext</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">indefinite</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">indefinite size</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-index">index</a> <li><a href="https://drafts.csswg.org/css-color-3/#indianred">indianred</a> <li><a href="https://drafts.csswg.org/css-color-3/#indigo">indigo</a> <li><a href="https://drafts.csswg.org/css-grid-1/#infinitely-growable">infinitely growable</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x24">in-flow</a> <li><a href="https://drafts.csswg.org/css-color-3/#infobackground">infobackground</a> <li><a href="https://drafts.csswg.org/css-color-3/#infotext">infotext</a> <li> @@ -1744,6 +1923,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <ul> <li><a href="https://www.w3.org/TR/css-cascade-3/#inheritance">in css-cascade-3</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#css-inheritance">in css-cascade-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">in css2</a> </ul> <li> inheritance @@ -1753,28 +1933,44 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. </ul> <li><a href="https://drafts.csswg.org/css-cascade-3/#inherited-property">inherited property</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#inherited-value">inherited value</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#x1">initial containing block</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#initial-free-space">initial free space</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#initial-representation-for-the-counter-value">initial representation for the counter value</a> - <li><a href="https://drafts.csswg.org/css-cascade-3/#initial-value">initial value</a> + <li> + initial value + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#initial-value">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x1">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-inline">inline</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-axis">inline axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-axis">inline-axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-base-direction">inline base direction</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-inline-block">inline-block</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#inline-box">inline box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-dimension">inline dimension</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-end">inline end</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-end">inline-end</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x11">inline-level box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#inline-level">inline-level element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-size">inline size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-size">inline-size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-start">inline start</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-start">inline-start</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#inner-box-shadow">inner box-shadow</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-inner-box-shadow">inner box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#inner-edge">inner edge</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#input-stream">input stream</a> <li><a href="https://drafts.csswg.org/css-values-3/#integer">integer</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#interactive-media-group">'interactive media group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x19">internal table box</a> <li><a href="https://www.w3.org/TR/CSS21/tables.html#internal-table-element">internal table element</a> <li><a href="https://www.w3.org/TR/css-namespaces-3/#interpreter">interpreter</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#intrinsic">intrinsic dimensions</a> <li><a href="https://drafts.csswg.org/css-grid-1/#intrinsic-sizing-function">intrinsic sizing function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-invalid">invalid</a> <li><a href="https://drafts.csswg.org/css-variables-1/#invalid-at-computed-value-time">invalid at computed-value time</a> <li><a href="https://drafts.csswg.org/css-images-3/#invalid-image">invalid image</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#invalid-rule-error">invalid rule error</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#isolated-sequence">isolated sequence</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidi-isolate">isolation</a> <li><a href="https://drafts.csswg.org/css-color-3/#ivory">ivory</a> @@ -1784,6 +1980,8 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#khaki">khaki</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-known">known</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-korean">korean</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">:lang</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">lang (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-align-3/#last-baseline-alignment">last-baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-content-alignment">last-baseline content-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#last-baseline-set">last baselines</a> @@ -1794,6 +1992,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#lavender">lavender</a> <li><a href="https://drafts.csswg.org/css-color-3/#lavenderblush">lavenderblush</a> <li><a href="https://drafts.csswg.org/css-color-3/#lawngreen">lawngreen</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x6">:left</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-left">left</a> <li><a href="https://drafts.csswg.org/css-grid-1/#leftover-space">leftover space</a> <li><a href="https://drafts.csswg.org/css-color-3/#lemonchiffon">lemonchiffon</a> @@ -1823,6 +2022,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#limegreen">limegreen</a> <li><a href="https://drafts.csswg.org/css-grid-1/#limited-contribution">limited max-content contribution</a> <li><a href="https://drafts.csswg.org/css-grid-1/#limited-contribution">limited min-content contribution</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#line-box">line box</a> <li> line break <ul> @@ -1841,6 +2041,10 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#line-relative-direction">line-relative direction</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#line-right">line-right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#line-under">line-under</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">:link</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">link (pseudo-class)</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-list-item">list-item</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x30">list properties</a> <li><a href="https://drafts.csswg.org/css-images-3/#loading-image">loading image</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#local-coordinate-system">local coordinate system</a> <li><a href="https://drafts.csswg.org/css-values-3/#url-local-url-flag">local url flag</a> @@ -1859,6 +2063,12 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://www.w3.org/TR/css-flexbox-1/#main-size">main-size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-size-property">main size property</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-start">main-start</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x17">margin box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#margin-edge">margin edge</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-margin-area">margin::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-margin-width">&lt;margin-width></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-mark">mark</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-marked-indexes">marked indexes</a> <li><a href="https://drafts.csswg.org/css-color-3/#maroon">maroon</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-border-image">mask border image</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-border-image-area">mask border image area</a> @@ -1868,6 +2078,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-position">mask-position</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-positioning-area">mask positioning area</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-size">mask-size</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x1">match</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-delay">matching transition delay</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-duration">matching transition duration</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-property-value">matching transition-property value</a> @@ -1880,6 +2091,10 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#max-main-size">max main size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#max-main-size-property">max main size property</a> <li><a href="https://drafts.csswg.org/css-grid-1/#max-track-sizing-function">max track sizing function</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x8">may</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#x2">media</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x9">media-dependent import</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#x4">media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#mediumaquamarine">mediumaquamarine</a> <li><a href="https://drafts.csswg.org/css-color-3/#mediumblue">mediumblue</a> <li><a href="https://drafts.csswg.org/css-color-3/#mediumorchid">mediumorchid</a> @@ -1891,6 +2106,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#mediumvioletred">mediumvioletred</a> <li><a href="https://drafts.csswg.org/css-color-3/#menu">menu</a> <li><a href="https://drafts.csswg.org/css-color-3/#menutext">menutext</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#message-entity">message entity</a> <li><a href="https://drafts.csswg.org/css-color-3/#midnightblue">midnightblue</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#min-cross-size">min cross size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#min-cross-size-property">min cross size property</a> @@ -1904,6 +2120,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#mistyrose">mistyrose</a> <li><a href="https://drafts.csswg.org/css-color-3/#moccasin">moccasin</a> <li><a href="https://drafts.csswg.org/css-break-3/#monolithic">monolithic</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#monospace-def">monospace</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-container">multicol container</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-line">multi-col line</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-line">multicol line</a> @@ -1914,7 +2131,10 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-spanner">multi-column spanner</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-spanning-element">multi-column spanning element</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#multi-line-flex-container">multi-line flex container</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x8">multiple declarations</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#multiply">multiply</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x0">must</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x1">must not</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-areas-named-cell-token">named cell token</a> <li><a href="https://drafts.csswg.org/css-grid-1/#named-grid-area">named grid area</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#namespace-prefix">namespace prefix</a> @@ -1929,10 +2149,13 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-images-3/#nearest-neighbor">nearest neighbor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#newline">newline</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#next-input-code-point">next input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#next-input-token">next input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#next-input-token">next input token</a> <li><a href="https://drafts.csswg.org/selectors-3/#next-sibling-combinator">next-sibling combinator</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-next-token">next token</a> <li><a href="https://www.w3.org/TR/css-syntax-3/#non-ascii-code-point">non-ascii code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#non-ascii-ident-code-point">non-ascii ident code point</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x21">'none'::as display value</a> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#non-overridable-counter-style-names">non-overridable counter-style names</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#non-printable-code-point">non-printable code point</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#normal">normal</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#normalize-into-a-token-stream">normalize into a token stream</a> @@ -1947,6 +2170,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#olivedrab">olivedrab</a> <li><a href="https://drafts.csswg.org/css-color-3/#opacity">opacity</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#operating-coordinate-space">operating coordinate space</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x9">optional</a> <li><a href="https://drafts.csswg.org/css-color-3/#orange">orange</a> <li><a href="https://drafts.csswg.org/css-color-3/#orangered">orangered</a> <li><a href="https://drafts.csswg.org/css-color-3/#orchid">orchid</a> @@ -1954,19 +2178,35 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#establish-an-orthogonal-flow">orthogonal</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#establish-an-orthogonal-flow">orthogonal flow</a> <li><a href="https://drafts.csswg.org/css-text-3/#other-space-separators">other space separators</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#outer-box-shadow">outer box-shadow</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-outer-box-shadow">outer box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#outer-edge">outer edge</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#x2">outline</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x23">out of flow</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#output-of-the-cascade">output of the cascade</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#over">over</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#x0">overflow</a> <li><a href="https://drafts.csswg.org/css-align-3/#overflow-alignment">overflow alignment</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#overflow-columns">overflow columns</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x12">padding box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#padding-edge">padding edge</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-padding-area">padding::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-padding-width">&lt;padding-width></a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x3">@page</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#page-area">page area</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x1">page box</a> <li><a href="https://drafts.csswg.org/css-break-3/#page-break">page break</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#page-context">page-context</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#paged-media-group">'paged' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x5">page selector</a> <li><a href="https://drafts.csswg.org/css-break-3/#pagination">pagination</a> <li><a href="https://drafts.csswg.org/css-color-3/#palegoldenrod">palegoldenrod</a> <li><a href="https://drafts.csswg.org/css-color-3/#palegreen">palegreen</a> <li><a href="https://drafts.csswg.org/css-color-3/#paleturquoise">paleturquoise</a> <li><a href="https://drafts.csswg.org/css-color-3/#palevioletred">palevioletred</a> <li><a href="https://drafts.csswg.org/css-color-3/#papayawhip">papayawhip</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#parent">parent</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar">parse</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-blocks-contents">parse a block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parse a comma-separated list according to a css grammar</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-comma-separated-list-of-component-values">parse a comma-separated list of component values</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-component-value">parse a component value</a> @@ -1974,14 +2214,15 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-declaration">parse a declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parse a list</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values">parse a list of component values</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations">parse a list of declarations</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules">parse a list of rules</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations">parse a list of declarations</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules">parse a list of rules</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-rule">parse a rule</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-style-blocks-contents">parse a style block's contents</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-style-blocks-contents">parse a style block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheet">parse a stylesheet</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheets-contents">parse a stylesheet's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-error">parse error</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar">parse something according to a css grammar</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parsing a list</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parsing a list</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#baseline-participation">participates in baseline alignment</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#pass-through-filter">pass through filter</a> <li><a href="https://drafts.csswg.org/css-color-3/#peachpuff">peachpuff</a> @@ -1995,28 +2236,68 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-left">physical left</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-right">physical right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-top">physical top</a> - <li><a href="https://drafts.csswg.org/css-values-3/#physical-units">physical units</a> + <li><a href="https://drafts.csswg.org/css-values-3/#physical-unit">physical unit</a> <li><a href="https://drafts.csswg.org/css-color-3/#pink">pink</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x40">pixel</a> <li><a href="https://drafts.csswg.org/css-values-3/#visual-angle-unit">pixel unit</a> <li><a href="https://drafts.csswg.org/css-color-3/#plum">plum</a> <li><a href="https://drafts.csswg.org/css-align-3/#positional-alignment">positional alignment</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#positioned-element">positioned element/box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x22">positioning scheme</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#post-multiplied">post-multiplied</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#post-multiply">post-multiply</a> <li><a href="https://drafts.csswg.org/css-color-3/#powderblue">powderblue</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#preceding">preceding element</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#pre-multiplied">pre-multiplied</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#pre-multiply">pre-multiply</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#preserved-tokens">preserved tokens</a> <li><a href="https://drafts.csswg.org/css-text-3/#preserved-white-space">preserved white space</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#primary-filter-primitive-tree">primary filter primitive tree</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#principal-box">principal block-level box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#principal-writing-mode">principal writing mode</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-process">process</a> <li><a href="https://drafts.csswg.org/css-break-3/#propagate">propagate</a> <li><a href="https://drafts.csswg.org/css-break-3/#propagate">propagation</a> - <li><a href="https://drafts.csswg.org/css-cascade-3/#css-property">property</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x17">proper table child</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x18">proper table row parent</a> + <li> + property + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#css-property">in css-cascade-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#property">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-property-declarations">property declarations</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x23">pseudo-classes</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">pseudo-classes:::active</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">pseudo-classes:::focus</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">pseudo-classes:::hover</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">pseudo-classes:::lang</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">pseudo-classes:::link</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">pseudo-classes:::visited</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x10">pseudo-class:::first</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x6">pseudo-class:::left</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x8">pseudo-class:::right</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x22">pseudo-elements</a> + <li> + pseudo-elements:::after + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x59">in css2</a> + </ul> + <li> + pseudo-elements:::before + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x57">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">pseudo-elements:::first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">pseudo-elements:::first-line</a> <li><a href="https://drafts.csswg.org/css-color-3/#purple">purple</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#em-width">quad width</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#qualified-rule">qualified rule</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x7">recommended</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-code-point">reconsume the current input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-token">reconsume the current input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#reconsume-the-current-input-token">reconsume the current input token</a> <li><a href="https://drafts.csswg.org/css-color-3/#red">red</a> <li> reference box @@ -2027,39 +2308,81 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-values-3/#reference-pixel">reference pixel</a> <li><a href="https://drafts.csswg.org/css-break-3/#region-break">region break</a> <li><a href="https://drafts.csswg.org/css-values-3/#relative-length">relative length</a> + <li><a href="https://drafts.csswg.org/css-values-3/#relative-length">relative length unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x34">relative positioning</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x34">relative units</a> <li><a href="https://drafts.csswg.org/css-break-3/#remaining-fragmentainer-extent">remaining fragmentainer extent</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#remaining-free-space">remaining free space</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#representation">representation</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#rendered-content">rendered content</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#replaced-element">replaced element</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#representation">representation</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x2">required</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#reset-only-sub-property">reset-only sub-property</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#resolve-an-arbitrary-substitution-function">resolve an arbitrary substitution function</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#resolve-a-var-function">resolve a var() function</a> <li><a href="https://drafts.csswg.org/css-values-3/#resolved-type">resolved type</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-restore-a-mark">restore a mark</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-reversing-adjusted-start-value">reversing-adjusted start value</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-reversing-shortening-factor">reversing shortening factor</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x8">:right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-right">right</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#root">root</a> <li><a href="https://drafts.csswg.org/css-color-3/#rosybrown">rosybrown</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x16">row group box</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x5">row groups</a> <li><a href="https://drafts.csswg.org/css-color-3/#royalblue">royalblue</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-rule">rule</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x15">run-in</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#running-transition">running transition</a> <li><a href="https://drafts.csswg.org/css-color-3/#saddlebrown">saddlebrown</a> <li><a href="https://drafts.csswg.org/css-color-3/#salmon">salmon</a> <li><a href="https://drafts.csswg.org/css-color-3/#sandybrown">sandybrown</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#sans-serif-def">sans-serif</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#scaled-flex-shrink-factor">scaled flex shrink factor</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x29">scope</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x1">screen reader</a> <li><a href="https://drafts.csswg.org/css-color-3/#scrollbar">scrollbar</a> <li><a href="https://drafts.csswg.org/css-color-3/#seagreen">seagreen</a> <li><a href="https://drafts.csswg.org/css-color-3/#seashell">seashell</a> <li><a href="https://drafts.csswg.org/css-text-3/#segment-break">segment break</a> - <li><a href="https://drafts.csswg.org/selectors-3/#selector">selector</a> + <li> + selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x15">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#selector">in selectors-3</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x1">selector::match</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#subject">selector::subject of</a> <li><a href="https://drafts.csswg.org/css-align-3/#self-align">self-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#self-alignment-properties">self-alignment properties</a> <li><a href="https://drafts.csswg.org/css-speech-1/#voice-pitch-semitone">semitone</a> <li><a href="https://drafts.csswg.org/selectors-3/#sequence-of-simple-selectors">sequence of simple selectors</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#serialize-an-anb-value">serialize an &lt;an+b> value</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#serif-def">serif</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x3">shall</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x4">shall not</a> <li><a href="https://drafts.csswg.org/css-align-3/#shared-alignment-context">shared alignment context</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x0">sheet</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#shorthand-property">shorthand</a> - <li><a href="https://drafts.csswg.org/css-cascade-3/#shorthand-property">shorthand property</a> + <li> + shorthand property + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#shorthand-property">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/about.html#x1">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x5">should</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x6">should not</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#sibling">sibling</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-sideways">sideways typesetting</a> <li><a href="https://drafts.csswg.org/css-color-3/#sienna">sienna</a> <li><a href="https://drafts.csswg.org/css-color-3/#silver">silver</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#simple-block">simple block</a> - <li><a href="https://drafts.csswg.org/selectors-3/#simple-selector">simple selector</a> + <li> + simple selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#simple-selector">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#simple-selector">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#single-line-flex-container">single-line flex container</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-rows-track-sizing-function">sizing function</a> <li><a href="https://drafts.csswg.org/css-color-3/#skyblue">skyblue</a> @@ -2072,11 +2395,12 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-text-3/#soft-wrap-break">soft wrap break</a> <li><a href="https://drafts.csswg.org/css-text-3/#soft-wrap-opportunity">soft wrap opportunity</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#source">source</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#source-document">source document</a> <li><a href="https://drafts.csswg.org/css-text-3/#spaces">spaces</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x16">space-separated matching</a> <li><a href="https://drafts.csswg.org/css-grid-1/#space-to-fill">space to fill</a> <li><a href="https://drafts.csswg.org/css-grid-1/#span-count">span count</a> - <li><a href="https://www.w3.org/TR/css-multicol-1/#spanner">spanner</a> - <li><a href="https://www.w3.org/TR/css-multicol-1/#spanning-element">spanning element</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-specific-voice">&lt;specific-voice></a> <li><a href="https://drafts.csswg.org/css-images-3/#specified-size">specified size</a> <li> specified size suggestion @@ -2084,10 +2408,18 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#specified-size-suggestion">in css-flexbox-1</a> <li><a href="https://drafts.csswg.org/css-grid-1/#specified-size-suggestion">in css-grid-1</a> </ul> - <li><a href="https://drafts.csswg.org/css-cascade-3/#specified-value">specified value</a> + <li> + specified value + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-3/#specified-value">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#specified-value">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/media.html#speech-media-group">'speech' media group</a> <li><a href="https://drafts.csswg.org/css-break-3/#spread-break">spread break</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#spread-distance">spread distance</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance">spread distance</a> <li><a href="https://drafts.csswg.org/css-color-3/#springgreen">springgreen</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x43">stacking context</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#stack-level">stack level</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-start">start</a> <li><a href="https://drafts.csswg.org/css-images-3/#starting-point">starting point</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-start">startmost</a> @@ -2099,6 +2431,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">start with an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">start with a number</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#statement-at-rule">statement at-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#static-media-group">'static' media group</a> <li> static-position rectangle <ul> @@ -2108,6 +2441,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#steelblue">steelblue</a> <li><a href="https://drafts.csswg.org/css-text-3/#stop-or-comma">stop or comma</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#stretched">stretched</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-string">&lt;string></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#stroke-bounding-box">stroke bounding box</a> <li><a href="https://drafts.csswg.org/selectors-3/#structural-pseudo-classes">structural pseudo-classes</a> <li><a href="https://www.w3.org/TR/css-flexbox-1/#strut-size">strut size</a> @@ -2116,24 +2450,33 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li> style sheet <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#style-sheet">in css-backgrounds-3</a> <li><a href="https://www.w3.org/TR/css-namespaces-3/#style-sheet">in css-namespaces-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#style-sheet">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#style-sheet">in css2</a> </ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-stylesheet">stylesheet</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#subject">subject (of selector)</a> <li><a href="https://drafts.csswg.org/selectors-3/#subjects-of-the-selector">subjects of the selector</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#longhand">sub-property</a> <li><a href="https://drafts.csswg.org/selectors-3/#subsequent-sibling-combinator">subsequent-sibling combinator</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">substitute arbitrary substitution function</a> <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">substitute a var()</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#dfn-support">support</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#supports-queries">supports queries</a> <li><a href="https://drafts.csswg.org/css-align-3/#synthesize-baseline">synthesize baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#synthesize-baseline">synthesized baseline</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#x11">system fonts</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x2">table element</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x0">tables</a> <li><a href="https://drafts.csswg.org/css-text-3/#tabs">tabs</a> <li><a href="https://drafts.csswg.org/css-text-3/#tab-size-dfn">tab size</a> <li><a href="https://drafts.csswg.org/css-text-3/#tab-stop">tab stop</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x20">tabular container</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#tactile-media-group">'tactile' media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#tan">tan</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#target-main-size">target main size</a> <li><a href="https://drafts.csswg.org/css-color-3/#teal">teal</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#text-css">text/css</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-textual-data-types">textual data types</a> <li><a href="https://drafts.csswg.org/css-color-3/#thistle">thistle</a> <li><a href="https://drafts.csswg.org/css-color-3/#threeddarkshadow">threeddarkshadow</a> @@ -2141,8 +2484,12 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-color-3/#threedhighlight">threedhighlight</a> <li><a href="https://drafts.csswg.org/css-color-3/#threedlightshadow">threedlightshadow</a> <li><a href="https://drafts.csswg.org/css-color-3/#threedshadow">threedshadow</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-time">&lt;time></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-tokenize">tokenization</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-tokenize">tokenize</a> + <li><a href="https://www.w3.org/TR/CSS21/grammar.html#x3">tokenizer</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-tokens">tokens</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-token-stream">token stream</a> <li><a href="https://drafts.csswg.org/css-color-3/#tomato">tomato</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-top">top</a> <li><a href="https://drafts.csswg.org/css-text-3/#tracking">tracking</a> @@ -2168,7 +2515,12 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-counter-styles-3/#triangle">triangle</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#trinary">trinary</a> <li><a href="https://drafts.csswg.org/css-color-3/#turquoise">turquoise</a> - <li><a href="https://drafts.csswg.org/selectors-3/#type-selector">type selector</a> + <li> + type selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x11">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#type-selector">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-sideways">typeset sideways</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-sideways">typesetting sideways</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-upright">typesetting upright</a> @@ -2180,15 +2532,21 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li> ua <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#ua">in css-backgrounds-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#ua">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ua">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#user-agent">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-ua">ua origin</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-ua">ua-origin</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-ua">ua style sheet</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#under">under</a> <li><a href="https://drafts.csswg.org/css-break-3/#unforced-break">unforced break</a> - <li><a href="https://drafts.csswg.org/selectors-3/#universal-selector0">universal selector</a> + <li> + universal selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x10">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#universal-selector0">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-known">unknown</a> <li><a href="https://drafts.csswg.org/css-grid-1/#unoccupied">unoccupied</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-alpha-legal">upper-alpha-legal</a> @@ -2200,14 +2558,16 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. used value <ul> <li><a href="https://drafts.csswg.org/css-cascade-3/#used-value">in css-cascade-3</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#used-value">in css2</a> <li><a href="https://www.w3.org/TR/CSS21/cascade.html#usedValue">in css2</a> </ul> <li><a href="https://www.w3.org/TR/CSS21/conform.html#user">user</a> <li> user agent <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#user-agent">in css-backgrounds-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#user-agent">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ua">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#user-agent">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-ua">user-agent origin</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-ua">user-agent style sheet</a> @@ -2217,19 +2577,28 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-cascade-3/#cascade-origin-user">user style sheet</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#use-a-negative-sign">uses a negative sign</a> <li><a href="https://drafts.csswg.org/css-images-3/#invalid-image">valid image</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">validity</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">valid style sheet</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x21">value</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-value-definition-syntax">value definition syntax</a> <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">var() substitution</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#y-axis">vertical axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-block-flow">vertical block flow</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-dimension">vertical dimension</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#vertical-offset">vertical offset</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-vertical-offset">vertical offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-only">vertical-only</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-script">vertical script</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-typographic-mode">vertical typographic mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-writing-mode">vertical writing mode</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x1">viewport</a> <li><a href="https://drafts.csswg.org/css-values-3/#viewport-percentage-lengths">viewport-percentage lengths</a> <li><a href="https://drafts.csswg.org/css-color-3/#violet">violet</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">:visited</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">visited (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-values-3/#visual-angle-unit">visual angle unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x0">visual formatting model</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#visual-media-group">'visual' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x10">volume</a> <li><a href="https://drafts.csswg.org/css-color-3/#wheat">wheat</a> <li><a href="https://drafts.csswg.org/css-color-3/#white">white</a> <li><a href="https://drafts.csswg.org/css-color-3/#whitesmoke">whitesmoke</a> @@ -2244,6 +2613,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. <li><a href="https://drafts.csswg.org/css-text-3/#word-separator">word-separator character</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">would start an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">would start a number</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range">would start a unicode-range</a> <li> wrap <ul> @@ -2258,6 +2628,7 @@ <h3 class="heading settled" data-level="4.1" id="terms"><span class="secno">4.1. </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#writing-mode">writing mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#x-axis">x-axis</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#ex">x-height</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#y-axis">y-axis</a> <li><a href="https://drafts.csswg.org/css-color-3/#yellow">yellow</a> <li><a href="https://drafts.csswg.org/css-color-3/#yellowgreen">yellowgreen</a> @@ -2370,6 +2741,7 @@ <h3 class="heading settled" data-level="4.3" id="at-rules"><span class="secno">4 <li><a href="https://drafts.csswg.org/css-cascade-3/#at-ruledef-import">@import</a> <li><a href="https://drafts.csswg.org/css-animations-1/#at-ruledef-keyframes">@keyframes</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media">@media</a> + <li><a href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace">@namespace</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports">@supports</a> </ul> </div> @@ -2438,6 +2810,7 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name">animation-name</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-play-state">animation-play-state</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function">animation-timing-function</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth">azimuth</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background">background</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment">background-attachment</a> <li><a href="https://drafts.fxtf.org/compositing-1/#propdef-background-blend-mode">background-blend-mode</a> @@ -2455,6 +2828,7 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius">border-bottom-right-radius</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style">border-bottom-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width">border-bottom-width</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse">border-collapse</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color">border-color</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image">border-image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-outset">border-image-outset</a> @@ -2471,6 +2845,7 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color">border-right-color</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style">border-right-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width">border-right-width</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing">border-spacing</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style">border-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top">border-top</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color">border-top-color</a> @@ -2479,16 +2854,20 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style">border-top-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width">border-top-width</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width">border-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-box-decoration-break">box-decoration-break</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow">box-shadow</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-box-sizing">box-sizing</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-after">break-after</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-before">break-before</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-inside">break-inside</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side">caption-side</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-caret-color">caret-color</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear">clear</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip">clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-path">clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-rule">clip-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/colors.html#propdef-color">color</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-color-interpolation-filters">color-interpolation-filters</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-count">column-count</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-fill">column-fill</a> @@ -2500,11 +2879,32 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-columns">columns</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-span">column-span</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-width">column-width</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">cue</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">cue-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">cue-before</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-content">content</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment">counter-increment</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset">counter-reset</a> + <li> + cue + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue">in css2</a> + </ul> + <li> + cue-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-after">in css2</a> + </ul> + <li> + cue-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-before">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-cursor">cursor</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-direction">direction</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display">display</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-elevation">elevation</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells">empty-cells</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-filter">filter</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex">flex</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis">flex-basis</a> @@ -2513,8 +2913,15 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow">flex-grow</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-shrink">flex-shrink</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-wrap">flex-wrap</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float">float</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-flood-color">flood-color</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-flood-opacity">flood-opacity</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font">font</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-family">font-family</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-size">font-size</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-style">font-style</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant">font-variant</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight">font-weight</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-gap">gap</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-glyph-orientation-vertical">glyph-orientation-vertical</a> <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid">grid</a> @@ -2536,6 +2943,7 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-columns">grid-template-columns</a> <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-rows">grid-template-rows</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-hanging-punctuation">hanging-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height">height</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-hyphens">hyphens</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">image-orientation</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-image-rendering">image-rendering</a> @@ -2548,9 +2956,20 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" </ul> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-items">justify-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-self">justify-self</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left">left</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-letter-spacing">letter-spacing</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-lighting-color">lighting-color</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-line-break">line-break</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height">line-height</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style">list-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image">list-style-image</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position">list-style-position</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type">list-style-type</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin">margin</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom">margin-bottom</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-left">margin-left</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-right">margin-right</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-top">margin-top</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask">mask</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-border">mask-border</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-mode">mask-border-mode</a> @@ -2568,6 +2987,10 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat">mask-repeat</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-size">mask-size</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-type">mask-type</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height">max-height</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width">max-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height">min-height</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width">min-width</a> <li><a href="https://drafts.fxtf.org/compositing-1/#propdef-mix-blend-mode">mix-blend-mode</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-object-fit">object-fit</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-object-position">object-position</a> @@ -2578,23 +3001,66 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-offset">outline-offset</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-style">outline-style</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-width">outline-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow">overflow</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap">overflow-wrap</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">pause</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">pause-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">pause-before</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding">padding</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom">padding-bottom</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left">padding-left</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-right">padding-right</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-top">padding-top</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after">page-break-after</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before">page-break-before</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside">page-break-inside</a> + <li> + pause + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause">in css2</a> + </ul> + <li> + pause-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-after">in css2</a> + </ul> + <li> + pause-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-before">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch">pitch</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range">pitch-range</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-content">place-content</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-items">place-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-self">place-self</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-play-during">play-during</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-position">position</a> + <li><a href="https://www.w3.org/TR/CSS21/about.html#propdef-property-name">property-name</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-quotes">quotes</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-resize">resize</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest">rest</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-after">rest-after</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-before">rest-before</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-richness">richness</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right">right</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-row-gap">row-gap</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-image-threshold">shape-image-threshold</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-margin">shape-margin</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-outside">shape-outside</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">speak</a> + <li> + speak + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak-as">speak-as</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header">speak-header</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral">speak-numeral</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation">speak-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate">speech-rate</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-stress">stress</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout">table-layout</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-tab-size">tab-size</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-align">text-align</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-align-all">text-align-all</a> @@ -2615,6 +3081,7 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-text-decor-3/#propdef-text-shadow">text-shadow</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-transform">text-transform</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#propdef-text-underline-position">text-underline-position</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top">top</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform">transform</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-box">transform-box</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin">transform-origin</a> @@ -2624,21 +3091,31 @@ <h3 class="heading settled" data-level="4.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-property">transition-property</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function">transition-timing-function</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi">unicode-bidi</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align">vertical-align</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility">visibility</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-balance">voice-balance</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-duration">voice-duration</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">voice-family</a> + <li> + voice-family + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-voice-family">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-pitch">voice-pitch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-range">voice-range</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-rate">voice-rate</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-stress">voice-stress</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-volume">voice-volume</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-volume">volume</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-white-space">white-space</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-widows">widows</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width">width</a> <li><a href="https://drafts.csswg.org/css-will-change-1/#propdef-will-change">will-change</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-break">word-break</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-spacing">word-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-wrap">word-wrap</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-writing-mode">writing-mode</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index">z-index</a> </ul> </div> <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5. </span><span class="content">Values Index</span><a class="self-link" href="#values"></a></h3> @@ -2677,7 +3154,6 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 filter-effects-1, css-break-3" data-link-status="TR"> <ul class="index"> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle"></a> <li> absolute <ul> @@ -2715,7 +3191,12 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-anywhere">in css-text-3, for overflow-wrap</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-arabic-indic">arabic-indic</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">armenian</a> + <li> + armenian + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-armenian">in css2</a> + </ul> <li> auto <ul> @@ -2831,13 +3312,14 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 </ul> <li><a href="https://drafts.csswg.org/css-values-3/#ch">ch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-child">child</a> + <li><a href="https://drafts.csswg.org/css-values-3/#ch">ch unit</a> <li> circle <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circle">in css-counter-styles-3, for &lt;counter-style-name></a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-circle">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle">in css-images-3, for &lt;rg-ending-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle">in css-images-3, for &lt;radial-shape></a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-circle">in css-text-decor-3, for text-emphasis-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-circle">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-decimal">cjk-decimal</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-cjk-earthly-branch">cjk-earthly-branch</a> @@ -2845,18 +3327,9 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-ideographic">cjk-ideographic</a> <li><a href="https://drafts.csswg.org/css-ui-3/#overflow-clip">clip</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-box-decoration-break-clone">clone</a> - <li> - closest-corner - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-corner">in css-images-3, for &lt;size></a> - </ul> - <li> - closest-side - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-side">in css-images-3, for &lt;size></a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-close-quote">close-quote</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner">closest-corner</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side">closest-side</a> <li><a href="https://drafts.csswg.org/css-values-3/#cm">cm</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-color">color</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-color-burn">color-burn</a> @@ -2902,44 +3375,69 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-crosshair">crosshair</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-cyclic">cyclic</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-darken">darken</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">dashed</a> + <li> + dashed + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dashed">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-decibel">&lt;decibel></a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">decimal</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">decimal-leading-zero</a> + <li> + decimal + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal">in css2</a> + </ul> + <li> + decimal-leading-zero + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal-leading-zero">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-default">default</a> <li><a href="https://drafts.csswg.org/css-values-3/#deg">deg</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-auto-flow-dense">dense</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-devanagari">devanagari</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-difference">difference</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-digits">digits</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">disc</a> + <li> + disc + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-disc">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-closed">disclosure-closed</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-open">disclosure-open</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-distribute">distribute</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-dot">dot</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">dotted</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">double</a> + <li> + dotted + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dotted">in css2</a> + </ul> + <li> + double + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-double">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-double-circle">double-circle</a> <li><a href="https://drafts.csswg.org/css-values-3/#dpcm">dpcm</a> <li><a href="https://drafts.csswg.org/css-values-3/#dpi">dpi</a> <li><a href="https://drafts.csswg.org/css-values-3/#dppx">dppx</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-indent-each-line">each-line</a> - <li> - ellipse - <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-ellipse">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse">in css-images-3, for &lt;rg-ending-shape></a> - </ul> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse">ellipse</a> <li><a href="https://drafts.csswg.org/css-ui-3/#overflow-ellipsis">ellipsis</a> <li><a href="https://drafts.csswg.org/css-values-3/#em">em</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-embed">embed</a> + <li><a href="https://drafts.csswg.org/css-values-3/#em">em unit</a> <li> end <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-self-position-end">in css-align-3, for &lt;self-position>, &lt;content-position>, justify-self, align-self, justify-content, align-content</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-align-end">in css-text-3, for text-align</a> </ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-ending-shape">&lt;ending-shape></a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-e-resize">e-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-ethiopic-numeric">ethiopic-numeric</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-evenodd">evenodd</a> @@ -2948,18 +3446,9 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-exclude">exclude</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-exclusion">exclusion</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-extends">extends</a> - <li> - farthest-corner - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-corner">in css-images-3, for &lt;size></a> - </ul> - <li> - farthest-side - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-side">in css-images-3, for &lt;size></a> - </ul> + <li><a href="https://drafts.csswg.org/css-values-3/#ex">ex unit</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner">farthest-corner</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side">farthest-side</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-rate-fast">fast</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-female">female</a> <li> @@ -2985,15 +3474,16 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-text-3/#valdef-hanging-punctuation-first">in css-text-3, for hanging-punctuation</a> </ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-self-first-baseline">first baseline</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-fit-content">fit-content()</a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-fit-content">fit-content()</a> <li> fixed <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-fixed">in css-backgrounds-3, for background-attachment</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-fixed">in css-counter-styles-3, for @counter-style/system</a> </ul> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex">&lt;flex></a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-flex">&lt;flex></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-display-flex">flex</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex-0">&lt;flex [0,∞]></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-basis">&lt;'flex-basis'></a> <li> flex-end @@ -3021,21 +3511,36 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-flex-fr">fr unit</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-full-size-kana">full-size-kana</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-full-width">full-width</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">georgian</a> + <li> + georgian + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-georgian">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-grab">grab</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-grabbing">grabbing</a> <li><a href="https://drafts.csswg.org/css-values-3/#grad">grad</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-display-grid">grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-s-auto-row">&lt;'grid-template-rows'> / [ auto-flow &amp;&amp; dense? ] &lt;'grid-auto-columns'>?</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-rowcol">&lt;'grid-template-rows'> / &lt;'grid-template-columns'></a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">groove</a> + <li> + groove + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-groove">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gujarati">gujarati</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gurmukhi">gurmukhi</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-indent-hanging">hanging</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-hard-light">hard-light</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#hebrew">hebrew</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-help">help</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-hidden">hidden</a> + <li> + hidden + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-hidden">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-hidden">in css2</a> + </ul> <li> high <ul> @@ -3054,18 +3559,25 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-cascade-3/#valdef-all-initial">initial</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-display-inline-flex">inline-flex</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-display-inline-grid">inline-grid</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table">inline-table</a> <li> inset <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-inset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-inset">in css-backgrounds-3, for box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-inset">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-placement-int">[ &lt;integer [-∞,-1]> | &lt;integer [1,∞]> ] &amp;&amp; &lt;custom-ident>?</a> <li><a href="https://www.w3.org/TR/css-grid-1/#grid-placement-int">&lt;integer> &amp;&amp; &lt;custom-ident>?</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-inter-character">inter-character</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-intersect">intersect</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-inter-word">inter-word</a> - <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-outline-color-invert">invert</a> + <li> + invert + <ul> + <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-outline-color-invert">in css-ui-3, for outline-color</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#value-def-invert">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-isolate">isolate</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-isolate-override">isolate-override</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#japanese-formal">japanese-formal</a> @@ -3107,14 +3619,12 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li> &lt;length> <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length">in css-images-3, for &lt;size></a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-letter-spacing-length">in css-text-3, for letter-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-indent-length">in css-text-3, for text-indent</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-word-spacing-length">in css-text-3, for word-spacing</a> </ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-0">&lt;length [0,∞]></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length-percentage2">&lt;length-percentage>{2}</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-0">&lt;length [0,∞]></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-lighten">lighten</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#valdef-color-interpolation-filters-linearrgb">linearrgb</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-ascii">[ &lt;line-names>? &lt;string> &lt;track-size>? &lt;line-names>? ]+ [ / &lt;explicit-track-list> ]?</a> @@ -3132,9 +3642,24 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-alpha">lower-alpha</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-lower-armenian">lower-armenian</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-lowercase">lowercase</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">lower-greek</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">lower-latin</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">lower-roman</a> + <li> + lower-greek + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-greek">in css2</a> + </ul> + <li> + lower-latin + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-latin">in css2</a> + </ul> + <li> + lower-roman + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-roman">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-direction-ltr">ltr</a> <li> luminance @@ -3163,7 +3688,7 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-medium">in css-speech-1, for voice-volume</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-min-content">min-content</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-minmax">minmax()</a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-minmax">minmax()</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-mixed">mixed</a> <li><a href="https://drafts.csswg.org/css-values-3/#mm">mm</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-stress-moderate">moderate</a> @@ -3177,6 +3702,7 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-neutral">neutral</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-never">never</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-no-clip">no-clip</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-close-quote">no-close-quote</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-no-drop">no-drop</a> <li> none @@ -3207,7 +3733,9 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-none">in css-ui-3, for cursor</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-text-combine-upright-none">in css-writing-modes-3, for text-combine-upright</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-bo-none">'none'::as border style</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-nonzero">nonzero</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-open-quote">no-open-quote</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-no-punctuation">no-punctuation</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-no-repeat">no-repeat</a> <li> @@ -3252,8 +3780,14 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-old">old</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-text-emphasis-open">open</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-open-quote">open-quote</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-oriya">oriya</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">outset</a> + <li> + outset + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-outset">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-position-over">over</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-overlay">overlay</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-decoration-line-overline">overline</a> @@ -3283,10 +3817,13 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-values-3/#px">px</a> <li><a href="https://drafts.csswg.org/css-values-3/#Q">q</a> <li><a href="https://drafts.csswg.org/css-values-3/#rad">rad</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-shape">&lt;radial-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-size">&lt;radial-size></a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-break-before-recto">recto</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-stress-reduced">reduced</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-break-before-region">region</a> <li><a href="https://drafts.csswg.org/css-values-3/#rem">rem</a> + <li><a href="https://drafts.csswg.org/css-values-3/#rem">rem unit</a> <li> repeat <ul> @@ -3296,9 +3833,12 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat-x">repeat-x</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat-y">repeat-y</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-direction-reverse">reverse</a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-ending-shape">&lt;rg-ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-size">&lt;rg-size></a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">ridge</a> + <li> + ridge + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-ridge">in css2</a> + </ul> <li> right <ul> @@ -3350,13 +3890,17 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-silent">silent</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-formal">simp-chinese-formal</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-informal">simp-chinese-informal</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-size">&lt;size></a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-box-decoration-break-slice">slice</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-rate-slow">slow</a> <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-rendering-smooth">smooth</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-soft">soft</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-soft-light">soft-light</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">solid</a> + <li> + solid + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-solid">in css2</a> + </ul> <li> space <ul> @@ -3386,7 +3930,12 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-speak-as-spell-out">in css-counter-styles-3, for @counter-style/speak-as</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-spell-out">in css-speech-1, for speak-as</a> </ul> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">square</a> + <li> + square + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-square">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-s-resize">s-resize</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#valdef-color-interpolation-filters-srgb">srgb</a> <li> @@ -3425,6 +3974,15 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-subtract">subtract</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-sw-resize">sw-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-system-symbolic">symbolic</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table">table</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-caption">table-caption</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell">table-cell</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column">table-column</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column-group">table-column-group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-footer-group">table-footer-group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-header-group">table-header-group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row">table-row</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row-group">table-row-group</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-tamil">tamil</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-telugu">telugu</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-text">text</a> @@ -3455,8 +4013,18 @@ <h3 class="heading settled" data-level="4.5" id="values"><span class="secno">4.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-alpha">upper-alpha</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-upper-armenian">upper-armenian</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-uppercase">uppercase</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">upper-latin</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">upper-roman</a> + <li> + upper-latin + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-latin">in css2</a> + </ul> + <li> + upper-roman + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-roman">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-upright">upright</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-image-url">&lt;url></a> <li> @@ -3679,6 +4247,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5f1b7f60">@media</span> <li><span class="dfn-paneled" id="c1ebc639">@supports</span> </ul> + <li> + <a data-link-type="biblio">[CSS3-NAMESPACE]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> + </ul> <li> <a data-link-type="biblio">[SELECTORS4]</a> defines the following terms: <ul> @@ -3689,11 +4262,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing">[COMPOSITING] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-css-cascade-3">[CSS-CASCADE-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-3/">https://drafts.csswg.org/css-cascade-3/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -3713,13 +4286,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css3-background">[CSS3-BACKGROUND] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3-color">[CSS3-COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css3-images">[CSS3-IMAGES] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css3-mediaqueries">[CSS3-MEDIAQUERIES] @@ -3764,7 +4337,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> <dt id="biblio-css3-speech">[CSS3-SPEECH] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-filter-effects-1">[FILTER-EFFECTS-1] <dd>Dirk Schulze; Dean Jackson. <a href="https://drafts.fxtf.org/filter-effects-1/"><cite>Filter Effects Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/filter-effects-1/">https://drafts.fxtf.org/filter-effects-1/</a> </dl> @@ -3978,6 +4551,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "91bfbe18": {"dfnID":"91bfbe18","dfnText":"opacity","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-opacity"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, "ab039d4e": {"dfnID":"ab039d4e","dfnText":"<counter-style>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-counter-style"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"}],"title":"2. Cascading Style Sheets (CSS) \u2014 The Official Definition"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "cascading-style-sheets-css": {"dfnID":"cascading-style-sheets-css","dfnText":"Cascading Style Sheets (CSS)","external":false,"refSections":[],"url":"#cascading-style-sheets-css"}, "css-level-1": {"dfnID":"css-level-1","dfnText":"CSS Level 1","external":false,"refSections":[{"refs":[{"id":"ref-for-css-level-1"}],"title":"2.1. \nCSS Levels"}],"url":"#css-level-1"}, @@ -4410,6 +4984,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@supports","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"@counter-style","type":"at-rule","url":"https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style"}, "https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"<counter-style>","type":"type","url":"https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"max-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"min-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content"}, "https://drafts.csswg.org/css-ui-3/#propdef-cursor": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-ui","spec":"css-ui-3","status":"current","text":"cursor","type":"property","url":"https://drafts.csswg.org/css-ui-3/#propdef-cursor"}, diff --git a/tests/github/w3c/csswg-drafts/css-2018/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-2018/Overview.console.txt index d7e65825fa..651f35f59a 100644 --- a/tests/github/w3c/csswg-drafts/css-2018/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-2018/Overview.console.txt @@ -424,3 +424,4 @@ LINE 877: Unknown spec name 'css-style-attr-1' on <index bs-line-number="877" ty css-break-3, css-contain-1, css-scroll-snap-1" data-link-status="TR"></index> +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-2018/Overview.html b/tests/github/w3c/csswg-drafts/css-2018/Overview.html index d45477d8e5..16765abe3d 100644 --- a/tests/github/w3c/csswg-drafts/css-2018/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-2018/Overview.html @@ -5,7 +5,6 @@ <title>CSS Snapshot 2018</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/CSS/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -729,7 +728,7 @@ <h1 class="p-name no-ref" id="title">CSS Snapshot 2018</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -894,7 +893,7 @@ <h2 class="heading settled" data-level="2" id="css"><span class="secno">2. </spa <dd> Replaces CSS2§7.2, updating the definition of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media" id="ref-for-at-ruledef-media">@media</a> rules to allow nesting, and introduces <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports" id="ref-for-at-ruledef-supports">@supports</a> rules for feature-support queries. <dt><a href="https://www.w3.org/TR/css3-namespace/">CSS Namespaces</a> <a data-link-type="biblio" href="#biblio-css3-namespace" title="CSS Namespaces Module Level 3">[CSS3-NAMESPACE]</a> - <dd> Introduces an <span class="css">@namespace</span> rule to allow namespace-prefixed selectors. + <dd> Introduces an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule to allow namespace-prefixed selectors. <dt><a href="https://www.w3.org/TR/css3-selectors/">Selectors Level 3</a> <a data-link-type="biblio" href="#biblio-select" title="Selectors Level 3">[SELECT]</a> <dd> Replaces CSS2§5 and CSS2§6.4.3, defining an extended range of selectors. <dt><a href="https://www.w3.org/TR/css3-cascade/">CSS Cascading and Inheritance Level 3</a> <a data-link-type="biblio" href="#biblio-css-cascade-3" title="CSS Cascading and Inheritance Level 3">[CSS-CASCADE-3]</a> @@ -980,7 +979,7 @@ <h2 class="heading settled" data-level="2" id="css"><span class="secno">2. </spa providing more control over text decoration lines and adding the ability to specify text emphasis marks and text shadows. - <dt><a href="https://www.w3.org/TR/css3-speech/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module">[CSS3-SPEECH]</a> + <dt><a href="https://www.w3.org/TR/css3-speech/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module Level 1">[CSS3-SPEECH]</a> <dd> Replaces CSS2§A, overhauling the (non-normative) speech rendering chapter. <dt><a href="https://www.w3.org/TR/css-align-3/">CSS Box Alignment Module Level 3</a> <a data-link-type="biblio" href="#biblio-css-align-3" title="CSS Box Alignment Module Level 3">[CSS-ALIGN-3]</a> @@ -1284,33 +1283,58 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. css-contain-1, css-scroll-snap-1" data-link-status="TR"> <ul class="index"> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18"></a> + <li> + = + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x14">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x16">~=</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-x">1st &lt;length></a> <li><a href="https://drafts.csswg.org/css-transforms-1/#2d-matrix">2d matrix</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-y">2nd &lt;length></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-blur-radius">3rd &lt;length [0,∞]></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-spread-distance">4th &lt;length></a> <li><a href="https://drafts.csswg.org/css-values-3/#absolute-length">absolute length</a> + <li><a href="https://drafts.csswg.org/css-values-3/#absolute-length">absolute length unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#absolutely-positioned">absolutely positioned element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#abstract-dimensions">abstract dimensions</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">:active</a> <li><a href="https://drafts.csswg.org/css-color-3/#activeborder">activeborder</a> <li><a href="https://drafts.csswg.org/css-color-3/#activecaption">activecaption</a> <li><a href="https://drafts.csswg.org/css-animations-1/#active-duration">active duration</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">active (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#actual-value">actual value</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#additive-tuple">additive tuple</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x28">adjoining margins</a> <li><a href="https://drafts.csswg.org/css-values-3/#length-advance-measure">advance measure</a> + <li> + :after + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x59">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">after</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#after-change-style">after-change style</a> <li><a href="https://drafts.csswg.org/css-color-3/#aliceblue">aliceblue</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-baseline">alignment baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-container">alignment container</a> <li><a href="https://drafts.csswg.org/css-align-3/#shared-alignment-context">alignment context</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-subject">alignment subject</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#all-media-group">'all' media group</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#alphabetic-baseline">alphabetic baseline</a> <li><a href="https://drafts.csswg.org/css-color-3/#alphavalue-def">&lt;alphavalue></a> <li><a href="https://drafts.csswg.org/css-images-3/#css-ambiguous-image-url">ambiguous image url</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#anb">an+b</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ancestor">ancestor</a> <li><a href="https://drafts.csswg.org/css-values-3/#anchor-unit">anchor</a> <li><a href="https://drafts.csswg.org/css-values-3/#anchor-unit">anchor unit</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-angle">&lt;angle></a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-animation">animation origin</a> <li><a href="https://drafts.csswg.org/css-variables-1/#animation-tainted">animation-tainted</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x9">anonymous</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x14">anonymous inline boxes</a> <li><a href="https://drafts.csswg.org/css-color-3/#antiquewhite">antiquewhite</a> <li><a href="https://drafts.csswg.org/css-cascade-3/#applies-to">applies to</a> <li> @@ -1322,17 +1346,26 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#appworkspace">appworkspace</a> <li><a href="https://drafts.csswg.org/css-color-3/#aqua">aqua</a> <li><a href="https://drafts.csswg.org/css-color-3/#aquamarine">aquamarine</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">arbitrary substitution</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#arbitrary-substitution-function">arbitrary substitution function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-two-code-points-are-a-valid-escape">are a valid escape</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x13">atomic inline-level box</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#at-rule">at-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x18">attr()</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#attribute">attribute</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#audio-media-group">'audio' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x0">auditory icon</a> <li><a href="https://drafts.csswg.org/css-grid-1/#augmented-grid">augmented grid</a> <li><a href="https://drafts.csswg.org/css-speech-1/#aural-box-model">aural box model</a> <li><a href="https://www.w3.org/TR/CSS21/conform.html#author">author</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#authoring">authoring tool</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-author">author origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-author">author-origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#author-presentational-hint-origin">author presentational hint origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-author">author style sheet</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic column position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic grid position</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x1">automatic numbering</a> <li><a href="https://drafts.csswg.org/css-grid-1/#auto-placement">automatic placement</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic row position</a> @@ -1345,8 +1378,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#azure">azure</a> <li><a href="https://drafts.fxtf.org/compositing-1/#backdrop">backdrop</a> <li><a href="https://drafts.csswg.org/css-color-3/#background">background</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-color-layer">background color</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-images">background image</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-image-layer">background image layer</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-painting-area">background painting area</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-positioning-area">background positioning area</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#escaped-characters">backslash escapes</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#baseline">baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-alignment">baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-alignment-preference">baseline alignment preference</a> @@ -1357,6 +1394,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#baseline-table">baseline table</a> <li><a href="https://drafts.csswg.org/css-grid-1/#base-size">base size</a> <li><a href="https://drafts.csswg.org/css-values-3/#bearing-angle">bearing angle</a> + <li> + :before + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x57">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">before</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#before-change-style">before-change style</a> <li><a href="https://drafts.csswg.org/css-easing-1/#before-flag">before flag</a> <li><a href="https://drafts.csswg.org/css-color-3/#beige">beige</a> @@ -1366,21 +1410,28 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidi-isolate">bidi isolation</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidi-paragraph">bidi paragraph</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidirectionality">bidirectionality</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x45">bidirectionality (bidi)</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bi-orientational">bi-orientational</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bi-orientational-transform">bi-orientational transform</a> <li><a href="https://drafts.csswg.org/css-color-3/#bisque">bisque</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#bitmap-media-group">'bitmap' media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#black">black</a> <li><a href="https://drafts.csswg.org/css-color-3/#blanchedalmond">blanchedalmond</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#paren-block">()-block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#square-block">[]-block</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-block">block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#curly-block">{}-block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#block-at-rule">block at-rule</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-axis">block axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-axis">block-axis</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x8">block box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#block-container-box">block container box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-dimension">block dimension</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-end">block end</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-end">block-end</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-flow-direction">block flow direction</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x5">block-level box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#block-level">block-level element</a> <li><a href="https://drafts.csswg.org/css-text-3/#block-scripts">block scripts</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-size">block size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-size">block-size</a> @@ -1388,14 +1439,30 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#block-start">block-start</a> <li><a href="https://drafts.csswg.org/css-color-3/#blue">blue</a> <li><a href="https://drafts.csswg.org/css-color-3/#blueviolet">blueviolet</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#blur-radius">blur radius</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-blur-radius">blur radius</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#boolean-context">boolean context</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x14">border box</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-color-dfn">border color</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#border-edge">border edge</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-dfn">border image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-area">border image area</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-region">border image region</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-border-area">border::of a box</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-radii">border radius</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style></a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-style-dfn">border style</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-width-dfn">border width</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-align-3/#box-alignment-properties">box alignment properties</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-border-area">box::border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-content-area">box::content</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-height">box::content height</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-width">box::content width</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#box-corner">box-corner</a> <li><a href="https://drafts.csswg.org/css-break-3/#box-fragment">box fragment</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-margin-area">box::margin</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#x0">box::overflow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-padding-area">box::padding</a> <li><a href="https://www.w3.org/TR/css-break-3/#break">break</a> <li><a href="https://drafts.csswg.org/css-color-3/#brown">brown</a> <li><a href="https://drafts.csswg.org/css-color-3/#burlywood">burlywood</a> @@ -1406,6 +1473,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#cadetblue">cadetblue</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-cancel">cancel</a> <li><a href="https://drafts.csswg.org/css-values-3/#canonical-unit">canonical unit</a> + <li><a href="https://www.w3.org/TR/CSS21/intro.html#canvas">canvas</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#canvas-background">canvas background</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#canvas-surface">canvas surface</a> <li><a href="https://drafts.csswg.org/css-color-3/#captiontext">captiontext</a> @@ -1416,26 +1484,35 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-cascade-4/#origin">cascade origin</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#central-baseline">central baseline</a> <li><a href="https://drafts.csswg.org/css-text-3/#character">character</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x50">character encoding</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x57">"@charset"</a> <li><a href="https://drafts.csswg.org/css-color-3/#chartreuse">chartreuse</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">check if three code points would start an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">check if three code points would start a number</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range">check if three code points would start a unicode-range</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-two-code-points-are-a-valid-escape">check if two code points are a valid escape</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#child">child</a> <li><a href="https://drafts.csswg.org/selectors-3/#child-combinator">child combinator</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x13">child selector</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-chinese">chinese</a> <li><a href="https://drafts.csswg.org/css-color-3/#chocolate">chocolate</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circled-lower-latin">circled-lower-latin</a> <li><a href="https://drafts.csswg.org/css-grid-1/#clamp-a-grid-area">clamp a grid area</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#clearance">clearance.</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#clipping-path">clipping path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#clipping-region">clipping region</a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#closest-side">closest-side</a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#closest-side">closest-side</a> <li><a href="https://drafts.csswg.org/css-text-3/#clustered-scripts">clustered scripts</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x26">collapse</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#collapsed-flex-item">collapsed flex item</a> <li><a href="https://drafts.csswg.org/css-grid-1/#collapsed-grid-track">collapsed grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#collapsed-gutter">collapsed gutter</a> <li><a href="https://www.w3.org/TR/css-grid-1/#collapsed-track">collapsed track</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x29">collapse through</a> <li><a href="https://drafts.csswg.org/css-text-3/#collapsible-white-space">collapsible white space</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x27">collapsing margin</a> <li><a href="https://drafts.csswg.org/css-color-3/#ltcolorgt">&lt;color></a> - <li><a href="https://drafts.csswg.org/css-color-3/#color0">color</a> + <li><a href="https://drafts.csswg.org/css-color-3/#color1">color</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-stop">color stop</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-stop-list">color stop list</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-transition-hint">color transition hint</a> @@ -1445,6 +1522,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-multicol-1/#column-height">column height</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#column-rule">column rule</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#column-width">column width</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#combinator">combinator</a> <li><a href="https://drafts.csswg.org/selectors-3/#combinators0">combinators</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-combined-duration">combined duration</a> <li><a href="https://drafts.csswg.org/css-align-3/#compatible-baseline-alignment-preferences">compatible baseline alignment preferences</a> @@ -1457,13 +1535,19 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-cascade-4/#computed-value">computed value</a> <li><a href="https://drafts.csswg.org/css-images-3/#concrete-object-size">concrete object size</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#conditional-group-rule">conditional group rule</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x9">conditional import</a> <li><a href="https://drafts.csswg.org/css-text-3/#conditionally-hang">conditionally hang</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#conformance-term">conformance</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x21">consecutive</a> <li><a href="https://drafts.csswg.org/css-images-3/#constraint-rectangle">constraint rectangle</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-block">consume a block</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-blocks-contents">consume a block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-component-value">consume a component value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-declaration">consume a declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-function">consume a function</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-declarations">consume a list of declarations</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-rules">consume a list of rules</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-component-values">consume a list of component values</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-declarations">consume a list of declarations</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-rules">consume a list of rules</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-at-rule">consume an at-rule</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-escaped-code-point">consume an escaped code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-ident-like-token">consume an ident-like token</a> @@ -1473,25 +1557,42 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-qualified-rule">consume a qualified rule</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-simple-block">consume a simple block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-string-token">consume a string token</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-style-blocks-contents">consume a style block's contents</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-token">consume a token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-style-blocks-contents">consume a style block's contents</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-stylesheets-contents">consume a stylesheet's contents</a> + <li> + consume a token + <ul> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-token">in css-syntax-3</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-consume-a-token">in css-syntax-3, for token stream</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#tokenizer-consume-a-token">in css-syntax-3, for tokenizer</a> + </ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-unicode-range-token">consume a unicode-range token</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-url-token">consume a url token</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-comments">consume comments</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-next-input-token">consume the next input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-the-next-input-token">consume the next input token</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-declaration">consume the remnants of a bad declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-url">consume the remnants of a bad url</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-value-of-a-unicode-range-descriptor">consume the value of a unicode-range descriptor</a> <li><a href="https://drafts.csswg.org/css-images-3/#contain-constraint">contain constraint</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#containing-block">containing block</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#containing-block-for-all-descendants">containing block for all descendants</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#x1">containing block::initial</a> <li><a href="https://drafts.csswg.org/css-contain-1/#containment">containment</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#content">content</a> <li> content-based minimum size <ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#content-based-minimum-size">in css-flexbox-1</a> <li><a href="https://drafts.csswg.org/css-grid-1/#content-based-minimum-size">in css-grid-1</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x10">content box</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribute">content distribution</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribute">content-distribution</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribution-properties">content-distribution properties</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-edge">content edge</a> <li><a href="https://drafts.csswg.org/css-text-3/#content-language">content language</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-content-area">content::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#rendered-content">content::rendered</a> <li> content size suggestion <ul> @@ -1500,11 +1601,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. </ul> <li><a href="https://drafts.csswg.org/css-text-3/#content-writing-system">content writing system</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#continuous-media">continuous media</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#convert-a-string-to-a-number">convert a string to a number</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#continuous-media-group">'continuous' media group</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#convert-a-string-to-a-number">convert a string to a number</a> <li><a href="https://drafts.csswg.org/css-align-3/#coordinated-self-alignment-preference">coordinated self-alignment preference</a> <li><a href="https://drafts.csswg.org/css-color-3/#coral">coral</a> <li><a href="https://drafts.csswg.org/css-color-3/#cornflowerblue">cornflowerblue</a> <li><a href="https://drafts.csswg.org/css-color-3/#cornsilk">cornsilk</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-counter">&lt;counter></a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x46">counter()</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#counters">counters</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#counter-style">counter style</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#counter-symbol">counter symbol</a> <li><a href="https://drafts.csswg.org/css-images-3/#cover-constraint">cover constraint</a> @@ -1524,13 +1629,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">css identifier</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-sequence">css ident sequence</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#css-qualified-name">css qualified name</a> + <li><a href="https://drafts.csswg.org/css-values-3/#css-value-definition-syntax">css value definition syntax</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-wide-keywords">css-wide keywords</a> <li><a href="https://drafts.csswg.org/css-easing-1/#cubic-bzier-easing-function">cubic bézier easing function</a> <li><a href="https://drafts.csswg.org/css-color-3/#currentColor-def">currentcolor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#current-input-code-point">current input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#current-input-token">current input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#current-input-token">current input token</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#current-transformation-matrix">current transformation matrix</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#current-value">current value</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#cursive-def">cursive</a> <li><a href="https://drafts.csswg.org/css-text-3/#cursive-script">cursive script</a> <li><a href="https://drafts.csswg.org/css-variables-1/#custom-property">custom property</a> <li><a href="https://drafts.csswg.org/css-color-3/#cyan">cyan</a> @@ -1553,7 +1660,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#darkslategrey">darkslategrey</a> <li><a href="https://drafts.csswg.org/css-color-3/#darkturquoise">darkturquoise</a> <li><a href="https://drafts.csswg.org/css-color-3/#darkviolet">darkviolet</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#declaration">declaration</a> + <li> + declaration + <ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#declaration">in css-syntax-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x19">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x14">declaration block</a> <li><a href="https://drafts.csswg.org/selectors-3/#declared">declared</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#declared-value">declared value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-decode-bytes">decode bytes</a> @@ -1563,6 +1676,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-namespaces-3/#default-namespace">default namespace</a> <li><a href="https://drafts.csswg.org/css-images-3/#default-object-size">default object size</a> <li><a href="https://drafts.csswg.org/css-images-3/#default-sizing-algorithm">default sizing algorithm</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#default-style-sheet">default style sheet</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">definite</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-position">definite column position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite column span</a> @@ -1573,6 +1687,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite row span</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">definite size</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite span</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#descendant">descendant</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x12">descendant-selectors</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-descriptor">descriptor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-descriptor-declarations">descriptor declarations</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#destination">destination</a> @@ -1585,24 +1701,34 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#dimgrey">dimgrey</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#directional-embedding">directional embedding</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#directional-override">directional override</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-mark">discard a mark</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-token">discard a token</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-whitespace">discard whitespace</a> <li><a href="https://drafts.csswg.org/css-align-3/#distributed-alignment">distributed alignment</a> <li><a href="https://drafts.csswg.org/css-grid-1/#distribute-extra-space">distribute extra space</a> - <li> - document - <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#document">in css-backgrounds-3</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#document">in css-speech-1</a> - </ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#document">document</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#doclanguage">document language</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#doctree">document tree</a> <li><a href="https://drafts.csswg.org/css-text-3/#white-space">document white space</a> <li><a href="https://drafts.csswg.org/css-text-3/#white-space">document white space characters</a> <li><a href="https://drafts.csswg.org/css-color-3/#dodgerblue">dodgerblue</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#dominant-baseline">dominant baseline</a> <li><a href="https://drafts.csswg.org/css-easing-1/#easing-function">easing function</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#element">element</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#following">element::following</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#preceding">element::preceding</a> + <li> + empty + <ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-empty">in css-syntax-3, for token stream</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#empty">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#em-width">em (unit)</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#encapsulation-contexts">encapsulation contexts</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-end">end</a> <li><a href="https://drafts.csswg.org/css-images-3/#ending-point">ending point</a> <li><a href="https://drafts.csswg.org/css-images-3/#ending-shape">ending shape</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#ending-token">ending token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#ending-token">ending token</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-end">endmost</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-end-time">end time</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-end-value">end value</a> @@ -1610,6 +1736,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#eof-code-point">eof code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#escape-codepoint">escaping</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#establish-an-orthogonal-flow">establish an orthogonal flow</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x14">exact matching</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#expanded-name">expanded name</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid">explicit grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid column</a> @@ -1617,10 +1744,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid row</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicitly-assigned-line-name">explicitly-assigned line name</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#ex">ex (unit)</a> <li><a href="https://drafts.csswg.org/css-align-3/#fallback-alignment">fallback alignment</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#false-in-the-negative-range">false in the negative range</a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#farthest-side">farthest-side</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#fantasy-def">fantasy</a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#farthest-side">farthest-side</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#fetch-an-import">fetch an @import</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x48">fictional tag sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-filter-code-points">filter code points</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-filter-code-points">filtered code points</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-primitive">filter primitive</a> @@ -1629,13 +1759,20 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-primitive-tree">filter primitive tree</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-region">filter region</a> <li><a href="https://drafts.csswg.org/css-color-3/#firebrick">firebrick</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x10">:first</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-alignment">first-baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-content-alignment">first-baseline content-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-set">first baselines</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-self-alignment">first-baseline self-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-set">first baseline set</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x24">:first-child</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x24">first-child</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#cross-axis-baseline">first cross-axis baseline set</a> <li><a href="https://drafts.csswg.org/selectors-3/#first-formatted-line0">first formatted line</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">:first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">:first-line</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">first-line</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-axis-baseline">first main-axis baseline set</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#first-symbol-value">first symbol value</a> <li><a href="https://drafts.csswg.org/css-grid-1/#fixed-sizing-function">fixed sizing function</a> @@ -1668,9 +1805,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#flex-line">flex line</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#flex-flex-shrink-factor">flex shrink factor</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#float-area">float area</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#float-rules">float rules</a> <li><a href="https://drafts.csswg.org/css-color-3/#floralwhite">floralwhite</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x25">flow of an element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#flow-relative">flow-relative</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#flow-relative-direction">flow-relative direction</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">:focus</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#x8">focus</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">focus (pseudo-class)</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#following">following element</a> <li><a href="https://drafts.csswg.org/css-values-3/#font-relative-length">font-relative lengths</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#footnote">footnote</a> <li><a href="https://drafts.csswg.org/css-break-3/#forced-break">forced break</a> @@ -1678,6 +1821,9 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#forced-line-break">forced line break</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#forced-paragraph-break">forced paragraph break</a> <li><a href="https://drafts.csswg.org/css-color-3/#forestgreen">forestgreen</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x32">formatting context</a> + <li><a href="https://www.w3.org/TR/CSS21/intro.html#formatting-structure">formatting structure</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x0">forward-compatible parsing</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragment">fragment</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmentainer">fragmentainer</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmentation">fragmentation</a> @@ -1688,6 +1834,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-break-3/#fragmentation-root">fragmentation root</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmented-flow">fragmented flow</a> <li><a href="https://drafts.csswg.org/css-grid-1/#free-space">free space</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-frequency">&lt;frequency></a> <li><a href="https://drafts.csswg.org/css-color-3/#fuchsia">fuchsia</a> <li><a href="https://drafts.csswg.org/css-text-3/#kana-full-size">full-size</a> <li><a href="https://drafts.csswg.org/css-text-3/#kana-full-size">full-size kana</a> @@ -1699,6 +1846,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter">generate a counter</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter">generate a counter representation</a> <li><a href="https://drafts.csswg.org/css-align-3/#generate-baselines">generate baselines</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x0">generated content</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-generic-voice">&lt;generic-voice></a> <li><a href="https://drafts.csswg.org/css-color-3/#ghostwhite">ghostwhite</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#go">go</a> <li><a href="https://drafts.csswg.org/css-color-3/#gold">gold</a> @@ -1724,8 +1873,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#grid-item">grid item</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-item-placement-algorithm">grid item placement algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-layout">grid layout</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#layout-algorithm">grid layout algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-level">grid-level</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-line">grid line</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#grid-media-group">'grid' media group</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-order">grid-modified document order</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-order">grid order</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-placement">grid placement</a> @@ -1733,7 +1884,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#grid-position">grid position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-row">grid row</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-line">grid row line</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#grid-sizing-algorithm">grid sizing algorithm</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#algo-grid-sizing">grid sizing algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-span">grid span</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-track">grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#growth-limit">growth limit</a> @@ -1750,25 +1901,35 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#x-axis">horizontal axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-block-flow">horizontal block flow</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-dimension">horizontal dimension</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#horizontal-offset">horizontal offset</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-horizontal-offset">horizontal offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-only">horizontal-only</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-script">horizontal script</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-typographic-mode">horizontal typographic mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#horizontal-writing-mode">horizontal writing mode</a> <li><a href="https://drafts.csswg.org/css-color-3/#hotpink">hotpink</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">:hover</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">hover (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenate">hyphenate</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenate">hyphenation</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenation-opportunity">hyphenation opportunity</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18">hyphen-separated matching</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#hypothetical-cross-size">hypothetical cross size</a> <li><a href="https://drafts.csswg.org/css-grid-1/#hypothetical-fr-size">hypothetical fr size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#hypothetical-main-size">hypothetical main size</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">ident</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-code-point">ident code point</a> - <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">identifier</a> + <li> + identifier + <ul> + <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">in css-values-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-transforms-1/#identity-transform-function">identity transform function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-sequence">ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-start-code-point">ident-start code point</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ignore">ignore</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-ignored">ignored</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#illegal">illegal</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid">implicit grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-track">implicit grid column</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-lines">implicit grid lines</a> @@ -1777,6 +1938,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-track">implicit grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicitly-assigned-line-name">implicitly-assigned line name</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicitly-named-area">implicitly-named area</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x7">@import</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#important">important</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#import-conditions">import conditions</a> <li><a href="https://drafts.csswg.org/css-color-3/#inactiveborder">inactiveborder</a> @@ -1784,9 +1946,11 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#inactivecaptiontext">inactivecaptiontext</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">indefinite</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">indefinite size</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-index">index</a> <li><a href="https://drafts.csswg.org/css-color-3/#indianred">indianred</a> <li><a href="https://drafts.csswg.org/css-color-3/#indigo">indigo</a> <li><a href="https://drafts.csswg.org/css-grid-1/#infinitely-growable">infinitely growable</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x24">in-flow</a> <li><a href="https://drafts.csswg.org/css-color-3/#infobackground">infobackground</a> <li><a href="https://drafts.csswg.org/css-color-3/#infotext">infotext</a> <li> @@ -1803,32 +1967,43 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#inherited-property">inherited property</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#inherited-value">inherited value</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#x1">initial containing block</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#initial-free-space">initial free space</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#initial-representation-for-the-counter-value">initial representation for the counter value</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#initial-value">initial value</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-inline">inline</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-axis">inline axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-axis">inline-axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-base-direction">inline base direction</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-inline-block">inline-block</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#inline-box">inline box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-dimension">inline dimension</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-end">inline end</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-end">inline-end</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x11">inline-level box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#inline-level">inline-level element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-size">inline size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-size">inline-size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-start">inline start</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#inline-start">inline-start</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#inner-box-shadow">inner box-shadow</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-inner-box-shadow">inner box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#inner-edge">inner edge</a> <li><a href="https://drafts.csswg.org/css-easing-1/#input-progress-value">input progress value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#input-stream">input stream</a> <li><a href="https://drafts.csswg.org/css-values-3/#integer">integer</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#intended-direction">intended direction</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#intended-direction-and-end-position">intended direction and end position</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#intended-end-position">intended end position</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#interactive-media-group">'interactive media group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x19">internal table box</a> <li><a href="https://www.w3.org/TR/CSS21/tables.html#internal-table-element">internal table element</a> <li><a href="https://www.w3.org/TR/css-namespaces-3/#interpreter">interpreter</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#intrinsic">intrinsic dimensions</a> <li><a href="https://drafts.csswg.org/css-grid-1/#intrinsic-sizing-function">intrinsic sizing function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-invalid">invalid</a> <li><a href="https://drafts.csswg.org/css-variables-1/#invalid-at-computed-value-time">invalid at computed-value time</a> <li><a href="https://drafts.csswg.org/css-images-3/#invalid-image">invalid image</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#invalid-rule-error">invalid rule error</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#isolated-sequence">isolated sequence</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#bidi-isolate">isolation</a> <li><a href="https://drafts.csswg.org/css-color-3/#ivory">ivory</a> @@ -1838,6 +2013,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#khaki">khaki</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-known">known</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-korean">korean</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">:lang</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">lang (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-align-3/#last-baseline-alignment">last-baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-content-alignment">last-baseline content-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#last-baseline-set">last baselines</a> @@ -1851,6 +2028,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-contain-1/#laying-out-in-place">laying out in-place</a> <li><a href="https://drafts.csswg.org/css-contain-1/#layout-containment">layout containment</a> <li><a href="https://drafts.csswg.org/css-contain-1/#layout-containment-box">layout containment box</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x6">:left</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-left">left</a> <li><a href="https://drafts.csswg.org/css-grid-1/#leftover-space">leftover space</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#legacy-name-alias">legacy name alias</a> @@ -1885,6 +2063,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#limited-contribution">limited min-content contribution</a> <li><a href="https://drafts.csswg.org/css-easing-1/#linear-easing-function">linear easing function</a> <li><a href="https://drafts.csswg.org/css-easing-1/#linear-easing-function">linear timing function</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#line-box">line box</a> <li> line break <ul> @@ -1903,6 +2082,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#line-relative-direction">line-relative direction</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#line-right">line-right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#line-under">line-under</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">:link</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">link (pseudo-class)</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-list-item">list-item</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x30">list properties</a> <li><a href="https://drafts.csswg.org/css-images-3/#loading-image">loading image</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#local-coordinate-system">local coordinate system</a> <li><a href="https://drafts.csswg.org/css-values-3/#url-local-url-flag">local url flag</a> @@ -1921,6 +2104,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://www.w3.org/TR/css-flexbox-1/#main-size">main-size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-size-property">main size property</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-start">main-start</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x17">margin box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#margin-edge">margin edge</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-margin-area">margin::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-margin-width">&lt;margin-width></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-mark">mark</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-marked-indexes">marked indexes</a> <li><a href="https://drafts.csswg.org/css-color-3/#maroon">maroon</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-border-image">mask border image</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-border-image-area">mask border image area</a> @@ -1930,6 +2119,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-position">mask-position</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-positioning-area">mask positioning area</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-size">mask-size</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x1">match</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-delay">matching transition delay</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-duration">matching transition duration</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-property-value">matching transition-property value</a> @@ -1942,8 +2132,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#max-main-size">max main size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#max-main-size-property">max main size property</a> <li><a href="https://drafts.csswg.org/css-grid-1/#max-track-sizing-function">max track sizing function</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x8">may</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#x2">media</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-condition">media condition</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x9">media-dependent import</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-feature">media feature</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#x4">media group</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-query">media query</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-query-list">media query list</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-query-modifier">media query modifier</a> @@ -1959,6 +2153,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#mediumvioletred">mediumvioletred</a> <li><a href="https://drafts.csswg.org/css-color-3/#menu">menu</a> <li><a href="https://drafts.csswg.org/css-color-3/#menutext">menutext</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#message-entity">message entity</a> <li><a href="https://drafts.csswg.org/css-color-3/#midnightblue">midnightblue</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#min-cross-size">min cross size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#min-cross-size-property">min cross size property</a> @@ -1972,6 +2167,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#mistyrose">mistyrose</a> <li><a href="https://drafts.csswg.org/css-color-3/#moccasin">moccasin</a> <li><a href="https://drafts.csswg.org/css-break-3/#monolithic">monolithic</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#monospace-def">monospace</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-container">multicol container</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-line">multi-col line</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-line">multicol line</a> @@ -1982,7 +2178,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-spanner">multi-column spanner</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-spanning-element">multi-column spanning element</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#multi-line-flex-container">multi-line flex container</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x8">multiple declarations</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#multiply">multiply</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x0">must</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x1">must not</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-areas-named-cell-token">named cell token</a> <li><a href="https://drafts.csswg.org/css-grid-1/#named-grid-area">named grid area</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#namespace-prefix">namespace prefix</a> @@ -1998,10 +2197,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-images-3/#nearest-neighbor">nearest neighbor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#newline">newline</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#next-input-code-point">next input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#next-input-token">next input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#next-input-token">next input token</a> <li><a href="https://drafts.csswg.org/selectors-3/#next-sibling-combinator">next-sibling combinator</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-next-token">next token</a> <li><a href="https://www.w3.org/TR/css-syntax-3/#non-ascii-code-point">non-ascii code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#non-ascii-ident-code-point">non-ascii ident code point</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x21">'none'::as display value</a> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#non-overridable-counter-style-names">non-overridable counter-style names</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#non-printable-code-point">non-printable code point</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#normal">normal</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#normalize-into-a-token-stream">normalize into a token stream</a> @@ -2017,6 +2219,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#opacity">opacity</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#operating-coordinate-space">operating coordinate space</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#optimal-viewing-region">optimal viewing region</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x9">optional</a> <li><a href="https://drafts.csswg.org/css-color-3/#orange">orange</a> <li><a href="https://drafts.csswg.org/css-color-3/#orangered">orangered</a> <li><a href="https://drafts.csswg.org/css-color-3/#orchid">orchid</a> @@ -2024,14 +2227,28 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#establish-an-orthogonal-flow">orthogonal</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#establish-an-orthogonal-flow">orthogonal flow</a> <li><a href="https://drafts.csswg.org/css-text-3/#other-space-separators">other space separators</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#outer-box-shadow">outer box-shadow</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-outer-box-shadow">outer box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#outer-edge">outer edge</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#x2">outline</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x23">out of flow</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#output-of-the-cascade">output of the cascade</a> <li><a href="https://drafts.csswg.org/css-easing-1/#output-progress-value">output progress value</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#over">over</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#x0">overflow</a> <li><a href="https://drafts.csswg.org/css-align-3/#overflow-alignment">overflow alignment</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#overflow-columns">overflow columns</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x12">padding box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#padding-edge">padding edge</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-padding-area">padding::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-padding-width">&lt;padding-width></a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x3">@page</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#page-area">page area</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x1">page box</a> <li><a href="https://drafts.csswg.org/css-break-3/#page-break">page break</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#page-context">page-context</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#paged-media">paged media</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#paged-media-group">'paged' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x5">page selector</a> <li><a href="https://drafts.csswg.org/css-break-3/#pagination">pagination</a> <li><a href="https://drafts.csswg.org/css-contain-1/#paint-containment">paint containment</a> <li><a href="https://drafts.csswg.org/css-contain-1/#paint-containment-box">paint containment box</a> @@ -2040,7 +2257,9 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#paleturquoise">paleturquoise</a> <li><a href="https://drafts.csswg.org/css-color-3/#palevioletred">palevioletred</a> <li><a href="https://drafts.csswg.org/css-color-3/#papayawhip">papayawhip</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#parent">parent</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar">parse</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-blocks-contents">parse a block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parse a comma-separated list according to a css grammar</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-comma-separated-list-of-component-values">parse a comma-separated list of component values</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-component-value">parse a component value</a> @@ -2048,14 +2267,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-declaration">parse a declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parse a list</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values">parse a list of component values</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations">parse a list of declarations</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules">parse a list of rules</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations">parse a list of declarations</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules">parse a list of rules</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-rule">parse a rule</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-style-blocks-contents">parse a style block's contents</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-style-blocks-contents">parse a style block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheet">parse a stylesheet</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheets-contents">parse a stylesheet's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-error">parse error</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar">parse something according to a css grammar</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parsing a list</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parsing a list</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#baseline-participation">participates in baseline alignment</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#pass-through-filter">pass through filter</a> <li><a href="https://drafts.csswg.org/css-color-3/#peachpuff">peachpuff</a> @@ -2069,29 +2289,69 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-left">physical left</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-right">physical right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-top">physical top</a> - <li><a href="https://drafts.csswg.org/css-values-3/#physical-units">physical units</a> + <li><a href="https://drafts.csswg.org/css-values-3/#physical-unit">physical unit</a> <li><a href="https://drafts.csswg.org/css-color-3/#pink">pink</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x40">pixel</a> <li><a href="https://drafts.csswg.org/css-values-3/#visual-angle-unit">pixel unit</a> <li><a href="https://drafts.csswg.org/css-color-3/#plum">plum</a> <li><a href="https://drafts.csswg.org/css-align-3/#positional-alignment">positional alignment</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#positioned-element">positioned element/box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x22">positioning scheme</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#post-multiplied">post-multiplied</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#post-multiply">post-multiply</a> <li><a href="https://drafts.csswg.org/css-color-3/#powderblue">powderblue</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#preceding">preceding element</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#pre-multiplied">pre-multiplied</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#pre-multiply">pre-multiply</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#preserved-tokens">preserved tokens</a> <li><a href="https://drafts.csswg.org/css-text-3/#preserved-white-space">preserved white space</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#primary-filter-primitive-tree">primary filter primitive tree</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#principal-box">principal block-level box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#principal-writing-mode">principal writing mode</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-process">process</a> <li><a href="https://drafts.csswg.org/css-break-3/#propagate">propagate</a> <li><a href="https://drafts.csswg.org/css-break-3/#propagate">propagation</a> - <li><a href="https://drafts.csswg.org/css-cascade-4/#css-property">property</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x17">proper table child</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x18">proper table row parent</a> + <li> + property + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-4/#css-property">in css-cascade-4, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#property">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-property-declarations">property declarations</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x23">pseudo-classes</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">pseudo-classes:::active</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">pseudo-classes:::focus</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">pseudo-classes:::hover</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">pseudo-classes:::lang</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">pseudo-classes:::link</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">pseudo-classes:::visited</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x10">pseudo-class:::first</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x6">pseudo-class:::left</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x8">pseudo-class:::right</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x22">pseudo-elements</a> + <li> + pseudo-elements:::after + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x59">in css2</a> + </ul> + <li> + pseudo-elements:::before + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x57">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">pseudo-elements:::first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">pseudo-elements:::first-line</a> <li><a href="https://drafts.csswg.org/css-color-3/#purple">purple</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#em-width">quad width</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#qualified-rule">qualified rule</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#range-context">range context</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x7">recommended</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-code-point">reconsume the current input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-token">reconsume the current input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#reconsume-the-current-input-token">reconsume the current input token</a> <li><a href="https://drafts.csswg.org/css-color-3/#red">red</a> <li> reference box @@ -2102,22 +2362,40 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-values-3/#reference-pixel">reference pixel</a> <li><a href="https://drafts.csswg.org/css-break-3/#region-break">region break</a> <li><a href="https://drafts.csswg.org/css-values-3/#relative-length">relative length</a> + <li><a href="https://drafts.csswg.org/css-values-3/#relative-length">relative length unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x34">relative positioning</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x34">relative units</a> <li><a href="https://drafts.csswg.org/css-break-3/#remaining-fragmentainer-extent">remaining fragmentainer extent</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#remaining-free-space">remaining free space</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#representation">representation</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#rendered-content">rendered content</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#replaced-element">replaced element</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#representation">representation</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x2">required</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#reset-only-sub-property">reset-only sub-property</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#re-snap">re-snap</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#resolve-an-arbitrary-substitution-function">resolve an arbitrary substitution function</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#resolve-a-var-function">resolve a var() function</a> <li><a href="https://drafts.csswg.org/css-values-3/#resolved-type">resolved type</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-restore-a-mark">restore a mark</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-reversing-adjusted-start-value">reversing-adjusted start value</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-reversing-shortening-factor">reversing shortening factor</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x8">:right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-right">right</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#root">root</a> <li><a href="https://drafts.csswg.org/css-color-3/#rosybrown">rosybrown</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x16">row group box</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x5">row groups</a> <li><a href="https://drafts.csswg.org/css-color-3/#royalblue">royalblue</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-rule">rule</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x15">run-in</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#running-transition">running transition</a> <li><a href="https://drafts.csswg.org/css-color-3/#saddlebrown">saddlebrown</a> <li><a href="https://drafts.csswg.org/css-color-3/#salmon">salmon</a> <li><a href="https://drafts.csswg.org/css-color-3/#sandybrown">sandybrown</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#sans-serif-def">sans-serif</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#scaled-flex-shrink-factor">scaled flex shrink factor</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x29">scope</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x1">screen reader</a> <li><a href="https://drafts.csswg.org/css-color-3/#scrollbar">scrollbar</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#scroll-snap">scroll snap</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#scroll-snap-area">scroll snap area</a> @@ -2127,20 +2405,39 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#seagreen">seagreen</a> <li><a href="https://drafts.csswg.org/css-color-3/#seashell">seashell</a> <li><a href="https://drafts.csswg.org/css-text-3/#segment-break">segment break</a> - <li><a href="https://drafts.csswg.org/selectors-3/#selector">selector</a> + <li> + selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x15">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#selector">in selectors-3</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x1">selector::match</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#subject">selector::subject of</a> <li><a href="https://drafts.csswg.org/css-align-3/#self-align">self-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#self-alignment-properties">self-alignment properties</a> <li><a href="https://drafts.csswg.org/css-speech-1/#voice-pitch-semitone">semitone</a> <li><a href="https://drafts.csswg.org/selectors-3/#sequence-of-simple-selectors">sequence of simple selectors</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#serialize-an-anb-value">serialize an &lt;an+b> value</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#serif-def">serif</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x3">shall</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x4">shall not</a> <li><a href="https://drafts.csswg.org/css-align-3/#shared-alignment-context">shared alignment context</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x0">sheet</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#shorthand-property">shorthand</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#shorthand-property">shorthand property</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x5">should</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x6">should not</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#sibling">sibling</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-sideways">sideways typesetting</a> <li><a href="https://drafts.csswg.org/css-color-3/#sienna">sienna</a> <li><a href="https://drafts.csswg.org/css-color-3/#silver">silver</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#simple-block">simple block</a> - <li><a href="https://drafts.csswg.org/selectors-3/#simple-selector">simple selector</a> + <li> + simple selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#simple-selector">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#simple-selector">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#single-line-flex-container">single-line flex container</a> <li><a href="https://drafts.csswg.org/css-contain-1/#size-containment">size containment</a> <li><a href="https://drafts.csswg.org/css-contain-1/#size-containment-box">size containment box</a> @@ -2156,11 +2453,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#soft-wrap-break">soft wrap break</a> <li><a href="https://drafts.csswg.org/css-text-3/#soft-wrap-opportunity">soft wrap opportunity</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#source">source</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#source-document">source document</a> <li><a href="https://drafts.csswg.org/css-text-3/#spaces">spaces</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x16">space-separated matching</a> <li><a href="https://drafts.csswg.org/css-grid-1/#space-to-fill">space to fill</a> <li><a href="https://drafts.csswg.org/css-grid-1/#span-count">span count</a> - <li><a href="https://www.w3.org/TR/css-multicol-1/#spanner">spanner</a> - <li><a href="https://www.w3.org/TR/css-multicol-1/#spanning-element">spanning element</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-specific-voice">&lt;specific-voice></a> <li><a href="https://drafts.csswg.org/css-images-3/#specified-size">specified size</a> <li> specified size suggestion @@ -2169,9 +2467,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#specified-size-suggestion">in css-grid-1</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#specified-value">specified value</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#speech-media-group">'speech' media group</a> <li><a href="https://drafts.csswg.org/css-break-3/#spread-break">spread break</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#spread-distance">spread distance</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance">spread distance</a> <li><a href="https://drafts.csswg.org/css-color-3/#springgreen">springgreen</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x43">stacking context</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#stack-level">stack level</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-start">start</a> <li><a href="https://drafts.csswg.org/css-images-3/#starting-point">starting point</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#css-start">startmost</a> @@ -2183,6 +2484,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">start with an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">start with a number</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#statement-at-rule">statement at-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#static-media-group">'static' media group</a> <li> static-position rectangle <ul> @@ -2196,6 +2498,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#stop-or-comma">stop or comma</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#stretched">stretched</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#strictness-value">strictness value</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-string">&lt;string></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#stroke-bounding-box">stroke bounding box</a> <li><a href="https://drafts.csswg.org/selectors-3/#structural-pseudo-classes">structural pseudo-classes</a> <li><a href="https://www.w3.org/TR/css-flexbox-1/#strut-size">strut size</a> @@ -2204,24 +2507,33 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li> style sheet <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#style-sheet">in css-backgrounds-3</a> <li><a href="https://www.w3.org/TR/css-namespaces-3/#style-sheet">in css-namespaces-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#style-sheet">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#style-sheet">in css2</a> </ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-stylesheet">stylesheet</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#subject">subject (of selector)</a> <li><a href="https://drafts.csswg.org/selectors-3/#subjects-of-the-selector">subjects of the selector</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#longhand">sub-property</a> <li><a href="https://drafts.csswg.org/selectors-3/#subsequent-sibling-combinator">subsequent-sibling combinator</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">substitute arbitrary substitution function</a> <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">substitute a var()</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#dfn-support">support</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#supports-queries">supports queries</a> <li><a href="https://drafts.csswg.org/css-align-3/#synthesize-baseline">synthesize baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#synthesize-baseline">synthesized baseline</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#x11">system fonts</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x2">table element</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x0">tables</a> <li><a href="https://drafts.csswg.org/css-text-3/#tabs">tabs</a> <li><a href="https://drafts.csswg.org/css-text-3/#tab-size-dfn">tab size</a> <li><a href="https://drafts.csswg.org/css-text-3/#tab-stop">tab stop</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x20">tabular container</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#tactile-media-group">'tactile' media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#tan">tan</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#target-main-size">target main size</a> <li><a href="https://drafts.csswg.org/css-color-3/#teal">teal</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#text-css">text/css</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-textual-data-types">textual data types</a> <li><a href="https://drafts.csswg.org/css-color-3/#thistle">thistle</a> <li><a href="https://drafts.csswg.org/css-color-3/#threeddarkshadow">threeddarkshadow</a> @@ -2229,9 +2541,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#threedhighlight">threedhighlight</a> <li><a href="https://drafts.csswg.org/css-color-3/#threedlightshadow">threedlightshadow</a> <li><a href="https://drafts.csswg.org/css-color-3/#threedshadow">threedshadow</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-time">&lt;time></a> <li><a href="https://drafts.csswg.org/css-easing-1/#easing-function">timing function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-tokenize">tokenization</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-tokenize">tokenize</a> + <li><a href="https://www.w3.org/TR/CSS21/grammar.html#x3">tokenizer</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-tokens">tokens</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-token-stream">token stream</a> <li><a href="https://drafts.csswg.org/css-color-3/#tomato">tomato</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#physical-top">top</a> <li><a href="https://drafts.csswg.org/css-text-3/#tracking">tracking</a> @@ -2257,7 +2573,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-counter-styles-3/#triangle">triangle</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#trinary">trinary</a> <li><a href="https://drafts.csswg.org/css-color-3/#turquoise">turquoise</a> - <li><a href="https://drafts.csswg.org/selectors-3/#type-selector">type selector</a> + <li> + type selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x11">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#type-selector">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-sideways">typeset sideways</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-sideways">typesetting sideways</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#typeset-upright">typesetting upright</a> @@ -2269,15 +2590,21 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li> ua <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#ua">in css-backgrounds-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#ua">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ua">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#user-agent">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">ua origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">ua-origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">ua style sheet</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#under">under</a> <li><a href="https://drafts.csswg.org/css-break-3/#unforced-break">unforced break</a> - <li><a href="https://drafts.csswg.org/selectors-3/#universal-selector0">universal selector</a> + <li> + universal selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x10">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#universal-selector0">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-known">unknown</a> <li><a href="https://drafts.csswg.org/css-grid-1/#unoccupied">unoccupied</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-alpha-legal">upper-alpha-legal</a> @@ -2290,8 +2617,9 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li> user agent <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#user-agent">in css-backgrounds-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#user-agent">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ua">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#user-agent">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">user-agent origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">user-agent style sheet</a> @@ -2301,19 +2629,28 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-user">user style sheet</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#use-a-negative-sign">uses a negative sign</a> <li><a href="https://drafts.csswg.org/css-images-3/#invalid-image">valid image</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">validity</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">valid style sheet</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x21">value</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-value-definition-syntax">value definition syntax</a> <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">var() substitution</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#y-axis">vertical axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-block-flow">vertical block flow</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-dimension">vertical dimension</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#vertical-offset">vertical offset</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-vertical-offset">vertical offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-only">vertical-only</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-script">vertical script</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-typographic-mode">vertical typographic mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#vertical-writing-mode">vertical writing mode</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x1">viewport</a> <li><a href="https://drafts.csswg.org/css-values-3/#viewport-percentage-lengths">viewport-percentage lengths</a> <li><a href="https://drafts.csswg.org/css-color-3/#violet">violet</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">:visited</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">visited (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-values-3/#visual-angle-unit">visual angle unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x0">visual formatting model</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#visual-media-group">'visual' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x10">volume</a> <li><a href="https://drafts.csswg.org/css-color-3/#wheat">wheat</a> <li><a href="https://drafts.csswg.org/css-color-3/#white">white</a> <li><a href="https://drafts.csswg.org/css-color-3/#whitesmoke">whitesmoke</a> @@ -2328,6 +2665,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#word-separator">word-separator character</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">would start an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">would start a number</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range">would start a unicode-range</a> <li> wrap <ul> @@ -2342,6 +2680,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#writing-mode">writing mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#x-axis">x-axis</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#ex">x-height</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#y-axis">y-axis</a> <li><a href="https://drafts.csswg.org/css-color-3/#yellow">yellow</a> <li><a href="https://drafts.csswg.org/css-color-3/#yellowgreen">yellowgreen</a> @@ -2464,6 +2803,7 @@ <h3 class="heading settled" data-level="5.3" id="at-rules"><span class="secno">5 <li><a href="https://drafts.csswg.org/css-cascade-4/#at-ruledef-import">@import</a> <li><a href="https://drafts.csswg.org/css-animations-1/#at-ruledef-keyframes">@keyframes</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media">@media</a> + <li><a href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace">@namespace</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports">@supports</a> </ul> </div> @@ -2537,6 +2877,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name">animation-name</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-play-state">animation-play-state</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function">animation-timing-function</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth">azimuth</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background">background</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment">background-attachment</a> <li><a href="https://drafts.fxtf.org/compositing-1/#propdef-background-blend-mode">background-blend-mode</a> @@ -2554,6 +2895,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius">border-bottom-right-radius</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style">border-bottom-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width">border-bottom-width</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse">border-collapse</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color">border-color</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image">border-image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-outset">border-image-outset</a> @@ -2570,6 +2912,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color">border-right-color</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style">border-right-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width">border-right-width</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing">border-spacing</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style">border-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top">border-top</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color">border-top-color</a> @@ -2578,16 +2921,20 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style">border-top-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width">border-top-width</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width">border-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-box-decoration-break">box-decoration-break</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow">box-shadow</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-box-sizing">box-sizing</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-after">break-after</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-before">break-before</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-inside">break-inside</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side">caption-side</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-caret-color">caret-color</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear">clear</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip">clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-path">clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-rule">clip-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/colors.html#propdef-color">color</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-color-interpolation-filters">color-interpolation-filters</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-count">column-count</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-fill">column-fill</a> @@ -2600,11 +2947,32 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-span">column-span</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-width">column-width</a> <li><a href="https://drafts.csswg.org/css-contain-1/#propdef-contain">contain</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">cue</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">cue-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">cue-before</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-content">content</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment">counter-increment</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset">counter-reset</a> + <li> + cue + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue">in css2</a> + </ul> + <li> + cue-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-after">in css2</a> + </ul> + <li> + cue-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-before">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-cursor">cursor</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-direction">direction</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display">display</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-elevation">elevation</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells">empty-cells</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-filter">filter</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex">flex</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis">flex-basis</a> @@ -2613,8 +2981,15 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow">flex-grow</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-shrink">flex-shrink</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-wrap">flex-wrap</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float">float</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-flood-color">flood-color</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-flood-opacity">flood-opacity</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font">font</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-family">font-family</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-size">font-size</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-style">font-style</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant">font-variant</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight">font-weight</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-gap">gap</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-glyph-orientation-vertical">glyph-orientation-vertical</a> <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid">grid</a> @@ -2636,6 +3011,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-columns">grid-template-columns</a> <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-rows">grid-template-rows</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-hanging-punctuation">hanging-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height">height</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-hyphens">hyphens</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">image-orientation</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-image-rendering">image-rendering</a> @@ -2648,9 +3024,20 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" </ul> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-items">justify-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-self">justify-self</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left">left</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-letter-spacing">letter-spacing</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-lighting-color">lighting-color</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-line-break">line-break</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height">line-height</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style">list-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image">list-style-image</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position">list-style-position</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type">list-style-type</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin">margin</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom">margin-bottom</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-left">margin-left</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-right">margin-right</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-top">margin-top</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask">mask</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-border">mask-border</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-mode">mask-border-mode</a> @@ -2668,6 +3055,10 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat">mask-repeat</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-size">mask-size</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-type">mask-type</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height">max-height</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width">max-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height">min-height</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width">min-width</a> <li><a href="https://drafts.fxtf.org/compositing-1/#propdef-mix-blend-mode">mix-blend-mode</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-object-fit">object-fit</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-object-position">object-position</a> @@ -2678,17 +3069,49 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-offset">outline-offset</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-style">outline-style</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-width">outline-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow">overflow</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap">overflow-wrap</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">pause</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">pause-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">pause-before</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding">padding</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom">padding-bottom</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left">padding-left</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-right">padding-right</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-top">padding-top</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after">page-break-after</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before">page-break-before</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside">page-break-inside</a> + <li> + pause + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause">in css2</a> + </ul> + <li> + pause-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-after">in css2</a> + </ul> + <li> + pause-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-before">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch">pitch</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range">pitch-range</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-content">place-content</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-items">place-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-self">place-self</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-play-during">play-during</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-position">position</a> + <li><a href="https://www.w3.org/TR/CSS21/about.html#propdef-property-name">property-name</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-quotes">quotes</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-resize">resize</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest">rest</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-after">rest-after</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-before">rest-before</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-richness">richness</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right">right</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-row-gap">row-gap</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin">scroll-margin</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block">scroll-margin-block</a> @@ -2718,8 +3141,19 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-image-threshold">shape-image-threshold</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-margin">shape-margin</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-outside">shape-outside</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">speak</a> + <li> + speak + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak-as">speak-as</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header">speak-header</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral">speak-numeral</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation">speak-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate">speech-rate</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-stress">stress</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout">table-layout</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-tab-size">tab-size</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-align">text-align</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-align-all">text-align-all</a> @@ -2740,6 +3174,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-text-decor-3/#propdef-text-shadow">text-shadow</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-transform">text-transform</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#propdef-text-underline-position">text-underline-position</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top">top</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform">transform</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-box">transform-box</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin">transform-origin</a> @@ -2749,21 +3184,31 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-property">transition-property</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function">transition-timing-function</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi">unicode-bidi</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align">vertical-align</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility">visibility</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-balance">voice-balance</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-duration">voice-duration</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">voice-family</a> + <li> + voice-family + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-voice-family">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-pitch">voice-pitch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-range">voice-range</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-rate">voice-rate</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-stress">voice-stress</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-volume">voice-volume</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-volume">volume</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-white-space">white-space</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-widows">widows</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width">width</a> <li><a href="https://drafts.csswg.org/css-will-change-1/#propdef-will-change">will-change</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-break">word-break</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-spacing">word-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-wrap">word-wrap</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#propdef-writing-mode">writing-mode</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index">z-index</a> </ul> </div> <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5. </span><span class="content">Values Index</span><a class="self-link" href="#values"></a></h3> @@ -2807,7 +3252,6 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 css-contain-1, css-scroll-snap-1" data-link-status="TR"> <ul class="index"> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle"></a> <li> absolute <ul> @@ -2851,7 +3295,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-anywhere">in css-text-3, for overflow-wrap</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-arabic-indic">arabic-indic</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">armenian</a> + <li> + armenian + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-armenian">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-aural">aural</a> <li> auto @@ -2977,13 +3426,14 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 </ul> <li><a href="https://drafts.csswg.org/css-values-3/#ch">ch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-child">child</a> + <li><a href="https://drafts.csswg.org/css-values-3/#ch">ch unit</a> <li> circle <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circle">in css-counter-styles-3, for &lt;counter-style-name></a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-circle">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle">in css-images-3, for &lt;rg-ending-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle">in css-images-3, for &lt;radial-shape></a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-circle">in css-text-decor-3, for text-emphasis-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-circle">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-decimal">cjk-decimal</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-cjk-earthly-branch">cjk-earthly-branch</a> @@ -2991,18 +3441,9 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-ideographic">cjk-ideographic</a> <li><a href="https://drafts.csswg.org/css-ui-3/#overflow-clip">clip</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-box-decoration-break-clone">clone</a> - <li> - closest-corner - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-corner">in css-images-3, for &lt;size></a> - </ul> - <li> - closest-side - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-side">in css-images-3, for &lt;size></a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-close-quote">close-quote</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner">closest-corner</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side">closest-side</a> <li><a href="https://drafts.csswg.org/css-values-3/#cm">cm</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-pointer-coarse">coarse</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-color">color</a> @@ -3054,23 +3495,53 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-crosshair">crosshair</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-cyclic">cyclic</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-darken">darken</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">dashed</a> + <li> + dashed + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dashed">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-decibel">&lt;decibel></a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">decimal</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">decimal-leading-zero</a> + <li> + decimal + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal">in css2</a> + </ul> + <li> + decimal-leading-zero + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal-leading-zero">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-default">default</a> <li><a href="https://drafts.csswg.org/css-values-3/#deg">deg</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-auto-flow-dense">dense</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-devanagari">devanagari</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-difference">difference</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-digits">digits</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">disc</a> + <li> + disc + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-disc">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-closed">disclosure-closed</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-open">disclosure-open</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-distribute">distribute</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-dot">dot</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">dotted</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">double</a> + <li> + dotted + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dotted">in css2</a> + </ul> + <li> + double + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-double">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-double-circle">double-circle</a> <li><a href="https://drafts.csswg.org/css-values-3/#dpcm">dpcm</a> <li><a href="https://drafts.csswg.org/css-values-3/#dpi">dpi</a> @@ -3080,16 +3551,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-in">ease-in</a> <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-in-out">ease-in-out</a> <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-out">ease-out</a> - <li> - ellipse - <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-ellipse">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse">in css-images-3, for &lt;rg-ending-shape></a> - </ul> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse">ellipse</a> <li><a href="https://drafts.csswg.org/css-ui-3/#overflow-ellipsis">ellipsis</a> <li><a href="https://drafts.csswg.org/css-values-3/#em">em</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-embed">embed</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-embossed">embossed</a> + <li><a href="https://drafts.csswg.org/css-values-3/#em">em unit</a> <li> end <ul> @@ -3098,7 +3565,6 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-align-end">in css-scroll-snap-1, for scroll-snap-align</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-align-end">in css-text-3, for text-align</a> </ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-ending-shape">&lt;ending-shape></a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-e-resize">e-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-ethiopic-numeric">ethiopic-numeric</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-evenodd">evenodd</a> @@ -3107,18 +3573,9 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-exclude">exclude</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-exclusion">exclusion</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-extends">extends</a> - <li> - farthest-corner - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-corner">in css-images-3, for &lt;size></a> - </ul> - <li> - farthest-side - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-side">in css-images-3, for &lt;size></a> - </ul> + <li><a href="https://drafts.csswg.org/css-values-3/#ex">ex unit</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner">farthest-corner</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side">farthest-side</a> <li> fast <ul> @@ -3150,15 +3607,16 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-text-3/#valdef-hanging-punctuation-first">in css-text-3, for hanging-punctuation</a> </ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-self-first-baseline">first baseline</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-fit-content">fit-content()</a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-fit-content">fit-content()</a> <li> fixed <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-fixed">in css-backgrounds-3, for background-attachment</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-fixed">in css-counter-styles-3, for @counter-style/system</a> </ul> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex">&lt;flex></a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-flex">&lt;flex></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-display-flex">flex</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex-0">&lt;flex [0,∞]></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-basis">&lt;'flex-basis'></a> <li> flex-end @@ -3186,14 +3644,24 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-flex-fr">fr unit</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-full-size-kana">full-size-kana</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-full-width">full-width</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">georgian</a> + <li> + georgian + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-georgian">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-grab">grab</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-grabbing">grabbing</a> <li><a href="https://drafts.csswg.org/css-values-3/#grad">grad</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-display-grid">grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-s-auto-row">&lt;'grid-template-rows'> / [ auto-flow &amp;&amp; dense? ] &lt;'grid-auto-columns'>?</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-rowcol">&lt;'grid-template-rows'> / &lt;'grid-template-columns'></a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">groove</a> + <li> + groove + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-groove">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gujarati">gujarati</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gurmukhi">gurmukhi</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-handheld">handheld</a> @@ -3201,7 +3669,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-hard-light">hard-light</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#hebrew">hebrew</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-help">help</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-hidden">hidden</a> + <li> + hidden + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-hidden">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-hidden">in css2</a> + </ul> <li> high <ul> @@ -3227,11 +3700,13 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-inline">inline</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-display-inline-flex">inline-flex</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-display-inline-grid">inline-grid</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table">inline-table</a> <li> inset <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-inset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-inset">in css-backgrounds-3, for box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-inset">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-placement-int">[ &lt;integer [-∞,-1]> | &lt;integer [1,∞]> ] &amp;&amp; &lt;custom-ident>?</a> <li><a href="https://www.w3.org/TR/css-grid-1/#grid-placement-int">&lt;integer> &amp;&amp; &lt;custom-ident>?</a> @@ -3239,7 +3714,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-scan-interlace">interlace</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-intersect">intersect</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-inter-word">inter-word</a> - <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-outline-color-invert">invert</a> + <li> + invert + <ul> + <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-outline-color-invert">in css-ui-3, for outline-color</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#value-def-invert">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-isolate">isolate</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-isolate-override">isolate-override</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#japanese-formal">japanese-formal</a> @@ -3287,14 +3767,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li> &lt;length> <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length">in css-images-3, for &lt;size></a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-letter-spacing-length">in css-text-3, for letter-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-indent-length">in css-text-3, for text-indent</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-word-spacing-length">in css-text-3, for word-spacing</a> </ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-0">&lt;length [0,∞]></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length-percentage2">&lt;length-percentage>{2}</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-0">&lt;length [0,∞]></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-lighten">lighten</a> <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-easing-function-linear">linear</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#valdef-color-interpolation-filters-linearrgb">linearrgb</a> @@ -3313,9 +3791,24 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-alpha">lower-alpha</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-lower-armenian">lower-armenian</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-lowercase">lowercase</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">lower-greek</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">lower-latin</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">lower-roman</a> + <li> + lower-greek + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-greek">in css2</a> + </ul> + <li> + lower-latin + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-latin">in css2</a> + </ul> + <li> + lower-roman + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-roman">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-direction-ltr">ltr</a> <li> luminance @@ -3345,7 +3838,7 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-medium">in css-speech-1, for voice-volume</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-min-content">min-content</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-minmax">minmax()</a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-minmax">minmax()</a> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-mixed">mixed</a> <li><a href="https://drafts.csswg.org/css-values-3/#mm">mm</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-stress-moderate">moderate</a> @@ -3359,6 +3852,7 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-neutral">neutral</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-never">never</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-no-clip">no-clip</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-close-quote">no-close-quote</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-no-drop">no-drop</a> <li> none @@ -3397,7 +3891,9 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-pointer-none">in mediaqueries-4, for @media/pointer</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-update-none">in mediaqueries-4, for @media/update</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-bo-none">'none'::as border style</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-nonzero">nonzero</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-open-quote">no-open-quote</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-no-punctuation">no-punctuation</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-no-repeat">no-repeat</a> <li> @@ -3445,8 +3941,14 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-old">old</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-only">only</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-text-emphasis-open">open</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-open-quote">open-quote</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-oriya">oriya</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">outset</a> + <li> + outset + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-outset">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-position-over">over</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-overlay">overlay</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-decoration-line-overline">overline</a> @@ -3484,11 +3986,14 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-values-3/#px">px</a> <li><a href="https://drafts.csswg.org/css-values-3/#Q">q</a> <li><a href="https://drafts.csswg.org/css-values-3/#rad">rad</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-shape">&lt;radial-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-size">&lt;radial-size></a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-color-gamut-rec2020">rec2020</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-break-before-recto">recto</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-stress-reduced">reduced</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-break-before-region">region</a> <li><a href="https://drafts.csswg.org/css-values-3/#rem">rem</a> + <li><a href="https://drafts.csswg.org/css-values-3/#rem">rem unit</a> <li> repeat <ul> @@ -3499,9 +4004,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat-y">repeat-y</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-direction-reverse">reverse</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#valdef-all-revert">revert</a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-ending-shape">&lt;rg-ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-size">&lt;rg-size></a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">ridge</a> + <li> + ridge + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-ridge">in css2</a> + </ul> <li> right <ul> @@ -3564,7 +4072,6 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-silent">silent</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-formal">simp-chinese-formal</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-informal">simp-chinese-informal</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-size">&lt;size></a> <li><a href="https://drafts.csswg.org/css-contain-1/#valdef-contain-size">size</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-box-decoration-break-slice">slice</a> <li> @@ -3576,7 +4083,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-rendering-smooth">smooth</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-soft">soft</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-soft-light">soft-light</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">solid</a> + <li> + solid + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-solid">in css2</a> + </ul> <li> space <ul> @@ -3607,7 +4119,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-speak-as-spell-out">in css-counter-styles-3, for @counter-style/speak-as</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-spell-out">in css-speech-1, for speak-as</a> </ul> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">square</a> + <li> + square + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-square">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-s-resize">s-resize</a> <li> srgb @@ -3660,6 +4177,15 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-subtract">subtract</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-sw-resize">sw-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-system-symbolic">symbolic</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table">table</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-caption">table-caption</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell">table-cell</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column">table-column</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column-group">table-column-group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-footer-group">table-footer-group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-header-group">table-header-group</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row">table-row</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row-group">table-row-group</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-tamil">tamil</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-telugu">telugu</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-text">text</a> @@ -3692,8 +4218,18 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-alpha">upper-alpha</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-upper-armenian">upper-armenian</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-uppercase">uppercase</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">upper-latin</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">upper-roman</a> + <li> + upper-latin + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-latin">in css2</a> + </ul> + <li> + upper-roman + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-roman">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-upright">upright</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-image-url">&lt;url></a> <li> @@ -3863,11 +4399,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing">[COMPOSITING] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-css-cascade-3">[CSS-CASCADE-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-3/">https://drafts.csswg.org/css-cascade-3/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] @@ -3875,7 +4411,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-grid-1">[CSS-GRID-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-grid/"><cite>CSS Grid Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid/">https://drafts.csswg.org/css-grid/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-style-attr">[CSS-STYLE-ATTR] @@ -3895,11 +4431,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-background">[CSS3-BACKGROUND] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3-color">[CSS3-COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css3-images">[CSS3-IMAGES] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css3-mediaqueries">[CSS3-MEDIAQUERIES] @@ -3930,7 +4466,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-easing-1">[CSS-EASING-1] - <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> + <dd>Brian Birtles; Dean Jackson; Matt Rakow. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-scroll-snap-1">[CSS-SCROLL-SNAP-1] @@ -3944,9 +4480,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css3-speech">[CSS3-SPEECH] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css3-transforms">[CSS3-TRANSFORMS] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css3-transitions">[CSS3-TRANSITIONS] @@ -4588,6 +5124,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"@counter-style","type":"at-rule","url":"https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style"}, "https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"<counter-style>","type":"type","url":"https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style"}, "https://drafts.csswg.org/css-images-4/#funcdef-conic-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"conic-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-conic-gradient"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-sizing-3/#propdef-height": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"height","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "https://drafts.csswg.org/css-sizing-3/#propdef-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"width","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"max-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, diff --git a/tests/github/w3c/csswg-drafts/css-2020/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-2020/Overview.console.txt index 0c4cbc0b58..fa29a35ffa 100644 --- a/tests/github/w3c/csswg-drafts/css-2020/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-2020/Overview.console.txt @@ -1,4 +1,4 @@ -FATAL ERROR: Under Process2021, w3c/WG-NOTE is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead. +FATAL ERROR: Under Process2021, WG-NOTE is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead. LINT: Your document appears to use tabs to indent, but line 94 starts with spaces. LINT: Line 94's indent contains tabs after spaces. LINT: Your document appears to use tabs to indent, but line 95 starts with spaces. @@ -415,3 +415,4 @@ LINE 953: Unknown spec name 'css-style-attr-1' on <index bs-line-number="953" ty css-scroll-snap-1, css-display-3, css-font-loading-3" data-link-status="TR"></index> +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-2020/Overview.html b/tests/github/w3c/csswg-drafts/css-2020/Overview.html index 95f46ca1ed..542c3e7793 100644 --- a/tests/github/w3c/csswg-drafts/css-2020/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-2020/Overview.html @@ -3,7 +3,7 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>CSS Snapshot 2020</title> - <meta content="NOTE" name="w3c-status"> + <meta content="WG-NOTE" name="w3c-status"> <link href="https://www.w3.org/TR/css-2020/" rel="canonical"> <meta content="dark light" name="color-scheme"> <style>/* Boilerplate: style-autolinks */ @@ -573,7 +573,7 @@ <h1 class="p-name no-ref" id="title">CSS Snapshot 2020</h1> <div data-fill-with="spec-metadata"> <dl> <dt>This version: - <dd><a class="u-url" href="https://www.w3.org/TR/1970/NOTE-css-2020-19700101/">https://www.w3.org/TR/1970/NOTE-css-2020-19700101/</a> + <dd><a class="u-url" href="https://www.w3.org/TR/1970/WG-NOTE-css-2020-19700101/">https://www.w3.org/TR/1970/WG-NOTE-css-2020-19700101/</a> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/css-2020/">https://www.w3.org/TR/css-2020/</a> <dt>Editor's Draft: @@ -594,7 +594,7 @@ <h1 class="p-name no-ref" id="title">CSS Snapshot 2020</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -771,7 +771,7 @@ <h3 class="heading settled" data-level="2.1" id="css"><span class="secno">2.1. < <dt><a href="https://www.w3.org/TR/selectors-3/">Selectors Level 3</a> <a data-link-type="biblio" href="#biblio-selectors-3" title="Selectors Level 3">[SELECTORS-3]</a> <dd> Replaces CSS2§5 and CSS2§6.4.3, defining an extended range of selectors. <dt><a href="https://www.w3.org/TR/css-namespaces/">CSS Namespaces</a> <a data-link-type="biblio" href="#biblio-css3-namespace" title="CSS Namespaces Module Level 3">[CSS3-NAMESPACE]</a> - <dd> Introduces an <span class="css">@namespace</span> rule to allow namespace-prefixed selectors. + <dd> Introduces an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule to allow namespace-prefixed selectors. <dt><a href="https://www.w3.org/TR/css-cascade-4/">CSS Cascading and Inheritance Level 4</a> <a data-link-type="biblio" href="#biblio-css-cascade-4" title="CSS Cascading and Inheritance Level 4">[CSS-CASCADE-4]</a> <dd> Extends and supersedes CSS2§1.4.3 and CSS2§6, as well as <a data-link-type="biblio" href="#biblio-css-cascade-3" title="CSS Cascading and Inheritance Level 3">[CSS-CASCADE-3]</a>. Describes how to collate style rules and assign values to all properties on all elements. @@ -885,7 +885,7 @@ <h3 class="heading settled" data-level="2.2" id="fairly-stable"><span class="sec and introduces more powerful ways of clipping and masking content. <dt><a href="https://www.w3.org/TR/css-scroll-snap-1/">CSS Scroll Snap Module Level 1</a> <a data-link-type="biblio" href="#biblio-css-scroll-snap-1" title="CSS Scroll Snap Module Level 1">[CSS-SCROLL-SNAP-1]</a> <dd> Contains features to control panning and scrolling behavior with “snap positions”. - <dt><a href="https://www.w3.org/TR/css-speech-1/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module">[CSS-SPEECH-1]</a> + <dt><a href="https://www.w3.org/TR/css-speech-1/">CSS Speech Module Level 1</a> <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module Level 1">[CSS-SPEECH-1]</a> <dd> Replaces CSS2§A, overhauling the (non-normative) speech rendering chapter. </dl> @@ -1191,53 +1191,91 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. css-display-3, css-font-loading-3" data-link-status="TR"> <ul class="index"> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18"></a> + <li> + = + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x14">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x16">~=</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-x">1st &lt;length></a> <li><a href="https://drafts.csswg.org/css-transforms-1/#2d-matrix">2d matrix</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-offset-y">2nd &lt;length></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-blur-radius">3rd &lt;length [0,∞]></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-spread-distance">4th &lt;length></a> <li><a href="https://drafts.csswg.org/css-values-3/#absolute-length">absolute length</a> + <li><a href="https://drafts.csswg.org/css-values-3/#absolute-length">absolute length unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#absolutely-positioned">absolutely positioned element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#abstract-dimensions">abstract dimensions</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">:active</a> <li><a href="https://drafts.csswg.org/css-color-3/#activeborder">activeborder</a> <li><a href="https://drafts.csswg.org/css-color-3/#activecaption">activecaption</a> <li><a href="https://drafts.csswg.org/css-animations-1/#active-duration">active duration</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">active (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#actual-value">actual value</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#additive-tuple">additive tuple</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x28">adjoining margins</a> <li><a href="https://drafts.csswg.org/css-values-3/#length-advance-measure">advance measure</a> + <li> + :after + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x59">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">after</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#after-change-style">after-change style</a> <li><a href="https://drafts.csswg.org/css-color-3/#aliceblue">aliceblue</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-baseline">alignment baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-container">alignment container</a> <li><a href="https://drafts.csswg.org/css-align-3/#shared-alignment-context">alignment context</a> <li><a href="https://drafts.csswg.org/css-align-3/#alignment-subject">alignment subject</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#all-media-group">'all' media group</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#alphabetic-baseline">alphabetic baseline</a> <li><a href="https://drafts.csswg.org/css-color-3/#alphavalue-def">&lt;alphavalue></a> <li><a href="https://drafts.csswg.org/css-images-3/#css-ambiguous-image-url">ambiguous image url</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#anb">an+b</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ancestor">ancestor</a> <li><a href="https://drafts.csswg.org/css-values-3/#anchor-unit">anchor</a> <li><a href="https://drafts.csswg.org/css-values-3/#anchor-unit">anchor unit</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-angle">&lt;angle></a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-animation">animation origin</a> <li><a href="https://drafts.csswg.org/css-variables-1/#animation-tainted">animation-tainted</a> - <li><a href="https://drafts.csswg.org/css-display-3/#anonymous">anonymous</a> + <li> + anonymous + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#anonymous">in css-display-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x9">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-display-3/#anonymous">anonymous box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x14">anonymous inline boxes</a> <li><a href="https://drafts.csswg.org/css-color-3/#antiquewhite">antiquewhite</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#apply">apply to</a> <li><a href="https://drafts.csswg.org/css-color-3/#appworkspace">appworkspace</a> <li><a href="https://drafts.csswg.org/css-color-3/#aqua">aqua</a> <li><a href="https://drafts.csswg.org/css-color-3/#aquamarine">aquamarine</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">arbitrary substitution</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#arbitrary-substitution-function">arbitrary substitution function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-two-code-points-are-a-valid-escape">are a valid escape</a> <li><a href="https://drafts.csswg.org/css-display-3/#atomic-inline">atomic inline</a> <li><a href="https://drafts.csswg.org/css-display-3/#atomic-inline">atomic inline box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x13">atomic inline-level box</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#at-rule">at-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x18">attr()</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#attribute">attribute</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#audio-media-group">'audio' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x0">auditory icon</a> <li><a href="https://drafts.csswg.org/css-grid-1/#augmented-grid">augmented grid</a> <li><a href="https://drafts.csswg.org/css-speech-1/#aural-box-model">aural box model</a> <li><a href="https://www.w3.org/TR/CSS21/conform.html#author">author</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#authoring">authoring tool</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-author">author origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-author">author-origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#author-presentational-hint-origin">author presentational hint origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-author">author style sheet</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic column position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic grid position</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x1">automatic numbering</a> <li><a href="https://drafts.csswg.org/css-grid-1/#auto-placement">automatic placement</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#automatic-grid-position">automatic row position</a> @@ -1251,8 +1289,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#azure">azure</a> <li><a href="https://drafts.fxtf.org/compositing-1/#backdrop">backdrop</a> <li><a href="https://drafts.csswg.org/css-color-3/#background">background</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-color-layer">background color</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-images">background image</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-image-layer">background image layer</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-painting-area">background painting area</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#background-positioning-area">background positioning area</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#escaped-characters">backslash escapes</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#baseline">baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-alignment">baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-alignment-preference">baseline alignment preference</a> @@ -1263,6 +1305,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#baseline-table">baseline table</a> <li><a href="https://drafts.csswg.org/css-grid-1/#base-size">base size</a> <li><a href="https://drafts.csswg.org/css-values-3/#bearing-angle">bearing angle</a> + <li> + :before + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x57">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">before</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#before-change-style">before-change style</a> <li><a href="https://drafts.csswg.org/css-easing-1/#before-flag">before flag</a> <li><a href="https://drafts.csswg.org/css-color-3/#beige">beige</a> @@ -1273,9 +1322,11 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#bidi-isolate">bidi isolation</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#bidi-paragraph">bidi paragraph</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#bidirectionality">bidirectionality</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x45">bidirectionality (bidi)</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#bi-orientational">bi-orientational</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#bi-orientational-transform">bi-orientational transform</a> <li><a href="https://drafts.csswg.org/css-color-3/#bisque">bisque</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#bitmap-media-group">'bitmap' media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#black">black</a> <li><a href="https://drafts.csswg.org/css-color-3/#blanchedalmond">blanchedalmond</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#paren-block">()-block</a> @@ -1300,6 +1351,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-display-3/#block-level">block-level</a> <li><a href="https://drafts.csswg.org/css-display-3/#block-level-box">block-level box</a> <li><a href="https://drafts.csswg.org/css-display-3/#block-level">block-level content</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#block-level">block-level element</a> <li><a href="https://drafts.csswg.org/css-text-3/#block-scripts">block scripts</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#block-size">block size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#block-size">block-size</a> @@ -1307,15 +1359,31 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#block-start">block-start</a> <li><a href="https://drafts.csswg.org/css-color-3/#blue">blue</a> <li><a href="https://drafts.csswg.org/css-color-3/#blueviolet">blueviolet</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#blur-radius">blur radius</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-blur-radius">blur radius</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#boolean-context">boolean context</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x14">border box</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-color-dfn">border color</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#border-edge">border edge</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-dfn">border image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-area">border image area</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-image-region">border image region</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-border-area">border::of a box</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-radii">border radius</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style></a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-style-dfn">border style</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#border-width-dfn">border width</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-display-3/#box">box</a> <li><a href="https://drafts.csswg.org/css-align-3/#box-alignment-properties">box alignment properties</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-border-area">box::border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-content-area">box::content</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-height">box::content height</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-width">box::content width</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#box-corner">box-corner</a> <li><a href="https://drafts.csswg.org/css-break-3/#box-fragment">box fragment</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-margin-area">box::margin</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#x0">box::overflow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-padding-area">box::padding</a> <li><a href="https://drafts.csswg.org/css-display-3/#box-tree">box tree</a> <li><a href="https://www.w3.org/TR/css-break-3/#break">break</a> <li><a href="https://drafts.csswg.org/css-color-3/#brown">brown</a> @@ -1327,6 +1395,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#cadetblue">cadetblue</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-cancel">cancel</a> <li><a href="https://drafts.csswg.org/css-values-3/#canonical-unit">canonical unit</a> + <li><a href="https://www.w3.org/TR/CSS21/intro.html#canvas">canvas</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#canvas-background">canvas background</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#canvas-surface">canvas surface</a> <li><a href="https://drafts.csswg.org/css-color-3/#captiontext">captiontext</a> @@ -1337,27 +1406,36 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-cascade-4/#origin">cascade origin</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#central-baseline">central baseline</a> <li><a href="https://drafts.csswg.org/css-text-3/#character">character</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x50">character encoding</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x57">"@charset"</a> <li><a href="https://drafts.csswg.org/css-color-3/#chartreuse">chartreuse</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">check if three code points would start an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">check if three code points would start a number</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range">check if three code points would start a unicode-range</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-two-code-points-are-a-valid-escape">check if two code points are a valid escape</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#child">child</a> <li><a href="https://drafts.csswg.org/selectors-3/#child-combinator">child combinator</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x13">child selector</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-chinese">chinese</a> <li><a href="https://drafts.csswg.org/css-color-3/#chocolate">chocolate</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circled-lower-latin">circled-lower-latin</a> <li><a href="https://drafts.csswg.org/css-grid-1/#clamp-a-grid-area">clamp a grid area</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#clearance">clearance.</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#clipping-path">clipping path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#clipping-region">clipping region</a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#closest-side">closest-side</a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#closest-side">closest-side</a> <li><a href="https://drafts.csswg.org/css-text-3/#clustered-scripts">clustered scripts</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x26">collapse</a> <li><a href="https://drafts.csswg.org/css-display-3/#collapsed">collapsed</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#collapsed-flex-item">collapsed flex item</a> <li><a href="https://drafts.csswg.org/css-grid-1/#collapsed-grid-track">collapsed grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#collapsed-gutter">collapsed gutter</a> <li><a href="https://www.w3.org/TR/css-grid-1/#collapsed-track">collapsed track</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x29">collapse through</a> <li><a href="https://drafts.csswg.org/css-text-3/#collapsible-white-space">collapsible white space</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x27">collapsing margin</a> <li><a href="https://drafts.csswg.org/css-color-3/#ltcolorgt">&lt;color></a> - <li><a href="https://drafts.csswg.org/css-color-3/#color0">color</a> + <li><a href="https://drafts.csswg.org/css-color-3/#color1">color</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-stop">color stop</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-stop-list">color stop list</a> <li><a href="https://drafts.csswg.org/css-images-3/#color-transition-hint">color transition hint</a> @@ -1367,6 +1445,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-multicol-1/#column-height">column height</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#column-rule">column rule</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#column-width">column width</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#combinator">combinator</a> <li><a href="https://drafts.csswg.org/selectors-3/#combinators0">combinators</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-combined-duration">combined duration</a> <li><a href="https://drafts.csswg.org/css-align-3/#compatible-baseline-alignment-preferences">compatible baseline alignment preferences</a> @@ -1379,13 +1458,19 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-cascade-4/#computed-value">computed value</a> <li><a href="https://drafts.csswg.org/css-images-3/#concrete-object-size">concrete object size</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#conditional-group-rule">conditional group rule</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x9">conditional import</a> <li><a href="https://drafts.csswg.org/css-text-3/#conditionally-hang">conditionally hang</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#conformance-term">conformance</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x21">consecutive</a> <li><a href="https://drafts.csswg.org/css-images-3/#constraint-rectangle">constraint rectangle</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-block">consume a block</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-blocks-contents">consume a block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-component-value">consume a component value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-declaration">consume a declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-function">consume a function</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-declarations">consume a list of declarations</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-rules">consume a list of rules</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-list-of-component-values">consume a list of component values</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-declarations">consume a list of declarations</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-list-of-rules">consume a list of rules</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-at-rule">consume an at-rule</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-escaped-code-point">consume an escaped code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-an-ident-like-token">consume an ident-like token</a> @@ -1395,27 +1480,43 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-qualified-rule">consume a qualified rule</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-simple-block">consume a simple block</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-string-token">consume a string token</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-style-blocks-contents">consume a style block's contents</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-token">consume a token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-style-blocks-contents">consume a style block's contents</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-stylesheets-contents">consume a stylesheet's contents</a> + <li> + consume a token + <ul> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-a-token">in css-syntax-3</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-consume-a-token">in css-syntax-3, for token stream</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#tokenizer-consume-a-token">in css-syntax-3, for tokenizer</a> + </ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-unicode-range-token">consume a unicode-range token</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-a-url-token">consume a url token</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-comments">consume comments</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-next-input-token">consume the next input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#consume-the-next-input-token">consume the next input token</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-declaration">consume the remnants of a bad declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-remnants-of-a-bad-url">consume the remnants of a bad url</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#consume-the-value-of-a-unicode-range-descriptor">consume the value of a unicode-range descriptor</a> <li><a href="https://drafts.csswg.org/css-images-3/#contain-constraint">contain constraint</a> <li><a href="https://drafts.csswg.org/css-display-3/#containing-block">containing block</a> <li><a href="https://drafts.csswg.org/css-display-3/#containing-block-chain">containing block chain</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#containing-block-for-all-descendants">containing block for all descendants</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#x1">containing block::initial</a> <li><a href="https://drafts.csswg.org/css-contain-1/#containment">containment</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#content">content</a> <li> content-based minimum size <ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#content-based-minimum-size">in css-flexbox-1</a> <li><a href="https://drafts.csswg.org/css-grid-1/#content-based-minimum-size">in css-grid-1</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x10">content box</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribute">content distribution</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribute">content-distribution</a> <li><a href="https://drafts.csswg.org/css-align-3/#content-distribution-properties">content-distribution properties</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#content-edge">content edge</a> <li><a href="https://drafts.csswg.org/css-text-3/#content-language">content language</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-content-area">content::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#rendered-content">content::rendered</a> <li> content size suggestion <ul> @@ -1424,11 +1525,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. </ul> <li><a href="https://drafts.csswg.org/css-text-3/#content-writing-system">content writing system</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#continuous-media">continuous media</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#convert-a-string-to-a-number">convert a string to a number</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#continuous-media-group">'continuous' media group</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#convert-a-string-to-a-number">convert a string to a number</a> <li><a href="https://drafts.csswg.org/css-align-3/#coordinated-self-alignment-preference">coordinated self-alignment preference</a> <li><a href="https://drafts.csswg.org/css-color-3/#coral">coral</a> <li><a href="https://drafts.csswg.org/css-color-3/#cornflowerblue">cornflowerblue</a> <li><a href="https://drafts.csswg.org/css-color-3/#cornsilk">cornsilk</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-counter">&lt;counter></a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x46">counter()</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#counters">counters</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#counter-style">counter style</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#counter-symbol">counter symbol</a> <li><a href="https://drafts.csswg.org/css-images-3/#cover-constraint">cover constraint</a> @@ -1449,13 +1554,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">css identifier</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-sequence">css ident sequence</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#css-qualified-name">css qualified name</a> + <li><a href="https://drafts.csswg.org/css-values-3/#css-value-definition-syntax">css value definition syntax</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-wide-keywords">css-wide keywords</a> <li><a href="https://drafts.csswg.org/css-easing-1/#cubic-bzier-easing-function">cubic bézier easing function</a> <li><a href="https://drafts.csswg.org/css-color-3/#currentColor-def">currentcolor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#current-input-code-point">current input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#current-input-token">current input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#current-input-token">current input token</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#current-transformation-matrix">current transformation matrix</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#current-value">current value</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#cursive-def">cursive</a> <li><a href="https://drafts.csswg.org/css-text-3/#cursive-script">cursive script</a> <li><a href="https://drafts.csswg.org/css-variables-1/#custom-property">custom property</a> <li><a href="https://drafts.csswg.org/css-color-3/#cyan">cyan</a> @@ -1478,7 +1585,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#darkslategrey">darkslategrey</a> <li><a href="https://drafts.csswg.org/css-color-3/#darkturquoise">darkturquoise</a> <li><a href="https://drafts.csswg.org/css-color-3/#darkviolet">darkviolet</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#declaration">declaration</a> + <li> + declaration + <ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#declaration">in css-syntax-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x19">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x14">declaration block</a> <li><a href="https://drafts.csswg.org/selectors-3/#declared">declared</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#declared-value">declared value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-decode-bytes">decode bytes</a> @@ -1488,6 +1601,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-namespaces-3/#default-namespace">default namespace</a> <li><a href="https://drafts.csswg.org/css-images-3/#default-object-size">default object size</a> <li><a href="https://drafts.csswg.org/css-images-3/#default-sizing-algorithm">default sizing algorithm</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#default-style-sheet">default style sheet</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">definite</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-position">definite column position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite column span</a> @@ -1498,6 +1612,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite row span</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">definite size</a> <li><a href="https://drafts.csswg.org/css-grid-1/#definite-grid-span">definite span</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#descendant">descendant</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x12">descendant-selectors</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-descriptor">descriptor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-descriptor-declarations">descriptor declarations</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#destination">destination</a> @@ -1510,28 +1626,42 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#dimgrey">dimgrey</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#directional-embedding">directional embedding</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#directional-override">directional override</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-mark">discard a mark</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-a-token">discard a token</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-discard-whitespace">discard whitespace</a> <li><a href="https://drafts.csswg.org/css-display-3/#display-type">display type</a> <li><a href="https://drafts.csswg.org/css-align-3/#distributed-alignment">distributed alignment</a> <li><a href="https://drafts.csswg.org/css-grid-1/#distribute-extra-space">distribute extra space</a> - <li> - document - <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#document">in css-backgrounds-3</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#document">in css-speech-1</a> - </ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#document">document</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#doclanguage">document language</a> <li><a href="https://drafts.csswg.org/css-display-3/#document-order">document order</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#doctree">document tree</a> <li><a href="https://drafts.csswg.org/css-text-3/#white-space">document white space</a> <li><a href="https://drafts.csswg.org/css-text-3/#white-space">document white space characters</a> <li><a href="https://drafts.csswg.org/css-color-3/#dodgerblue">dodgerblue</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#dominant-baseline">dominant baseline</a> <li><a href="https://drafts.csswg.org/css-easing-1/#easing-function">easing function</a> - <li><a href="https://drafts.csswg.org/css-display-3/#elements">element</a> + <li> + element + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#elements">in css-display-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#element">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#following">element::following</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#preceding">element::preceding</a> <li><a href="https://drafts.csswg.org/css-display-3/#element-tree">element tree</a> + <li> + empty + <ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-empty">in css-syntax-3, for token stream</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#empty">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#em-width">em (unit)</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#encapsulation-contexts">encapsulation contexts</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#css-end">end</a> <li><a href="https://drafts.csswg.org/css-images-3/#ending-point">ending point</a> <li><a href="https://drafts.csswg.org/css-images-3/#ending-shape">ending shape</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#ending-token">ending token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#ending-token">ending token</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#css-end">endmost</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-end-time">end time</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-end-value">end value</a> @@ -1543,6 +1673,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-display-3/#establish-an-independent-formatting-context">established an independent formatting context</a> <li><a href="https://drafts.csswg.org/css-display-3/#establish-an-independent-formatting-context">establishes an independent formatting context</a> <li><a href="https://drafts.csswg.org/css-display-3/#establish-an-independent-formatting-context">establishing an independent formatting context</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x14">exact matching</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#expanded-name">expanded name</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid">explicit grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid column</a> @@ -1550,10 +1681,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid row</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicit-grid-track">explicit grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#explicitly-assigned-line-name">explicitly-assigned line name</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#ex">ex (unit)</a> <li><a href="https://drafts.csswg.org/css-align-3/#fallback-alignment">fallback alignment</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#false-in-the-negative-range">false in the negative range</a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#farthest-side">farthest-side</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#fantasy-def">fantasy</a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#farthest-side">farthest-side</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#fetch-an-import">fetch an @import</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x48">fictional tag sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-filter-code-points">filter code points</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-filter-code-points">filtered code points</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#filter-primitive">filter primitive</a> @@ -1564,13 +1698,20 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-font-loading-3/#find-the-matching-font-faces">find the matching font faces</a> <li><a href="https://drafts.csswg.org/css-font-loading-3/#fire-a-font-load-event">fire a font load event</a> <li><a href="https://drafts.csswg.org/css-color-3/#firebrick">firebrick</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x10">:first</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-alignment">first-baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-content-alignment">first-baseline content-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-set">first baselines</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-self-alignment">first-baseline self-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#first-baseline-set">first baseline set</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x24">:first-child</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x24">first-child</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#cross-axis-baseline">first cross-axis baseline set</a> <li><a href="https://drafts.csswg.org/selectors-3/#first-formatted-line0">first formatted line</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">:first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">:first-line</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">first-line</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-axis-baseline">first main-axis baseline set</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#first-symbol-value">first symbol value</a> <li><a href="https://drafts.csswg.org/css-grid-1/#fixed-sizing-function">fixed sizing function</a> @@ -1603,10 +1744,16 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#flex-line">flex line</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#flex-flex-shrink-factor">flex shrink factor</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#float-area">float area</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#float-rules">float rules</a> <li><a href="https://drafts.csswg.org/css-color-3/#floralwhite">floralwhite</a> <li><a href="https://drafts.csswg.org/css-display-3/#flow-layout">flow layout</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x25">flow of an element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#flow-relative">flow-relative</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#flow-relative-direction">flow-relative direction</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">:focus</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#x8">focus</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">focus (pseudo-class)</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#following">following element</a> <li><a href="https://drafts.csswg.org/css-values-3/#font-relative-length">font-relative lengths</a> <li><a href="https://drafts.csswg.org/css-font-loading-3/#font-source">font source</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#footnote">footnote</a> @@ -1616,6 +1763,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#forced-paragraph-break">forced paragraph break</a> <li><a href="https://drafts.csswg.org/css-color-3/#forestgreen">forestgreen</a> <li><a href="https://drafts.csswg.org/css-display-3/#formatting-context">formatting context</a> + <li><a href="https://www.w3.org/TR/CSS21/intro.html#formatting-structure">formatting structure</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x0">forward-compatible parsing</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragment">fragment</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmentainer">fragmentainer</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmentation">fragmentation</a> @@ -1626,6 +1775,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-break-3/#fragmentation-root">fragmentation root</a> <li><a href="https://drafts.csswg.org/css-break-3/#fragmented-flow">fragmented flow</a> <li><a href="https://drafts.csswg.org/css-grid-1/#free-space">free space</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-frequency">&lt;frequency></a> <li><a href="https://drafts.csswg.org/css-color-3/#fuchsia">fuchsia</a> <li><a href="https://drafts.csswg.org/css-text-3/#kana-full-size">full-size</a> <li><a href="https://drafts.csswg.org/css-text-3/#kana-full-size">full-size kana</a> @@ -1637,6 +1787,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter">generate a counter</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter">generate a counter representation</a> <li><a href="https://drafts.csswg.org/css-align-3/#generate-baselines">generate baselines</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x0">generated content</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-generic-voice">&lt;generic-voice></a> <li><a href="https://drafts.csswg.org/css-color-3/#ghostwhite">ghostwhite</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#go">go</a> <li><a href="https://drafts.csswg.org/css-color-3/#gold">gold</a> @@ -1662,8 +1814,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#grid-item">grid item</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-item-placement-algorithm">grid item placement algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-layout">grid layout</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#layout-algorithm">grid layout algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-level">grid-level</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-line">grid line</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#grid-media-group">'grid' media group</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-order">grid-modified document order</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-order">grid order</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-placement">grid placement</a> @@ -1671,7 +1825,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#grid-position">grid position</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-row">grid row</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-line">grid row line</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#grid-sizing-algorithm">grid sizing algorithm</a> + <li><a href="https://drafts.csswg.org/css-grid-1/#algo-grid-sizing">grid sizing algorithm</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-span">grid span</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-track">grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#growth-limit">growth limit</a> @@ -1688,25 +1842,35 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#x-axis">horizontal axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#horizontal-block-flow">horizontal block flow</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#horizontal-dimension">horizontal dimension</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#horizontal-offset">horizontal offset</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-horizontal-offset">horizontal offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#horizontal-only">horizontal-only</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#horizontal-script">horizontal script</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#horizontal-typographic-mode">horizontal typographic mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#horizontal-writing-mode">horizontal writing mode</a> <li><a href="https://drafts.csswg.org/css-color-3/#hotpink">hotpink</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">:hover</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">hover (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenate">hyphenate</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenate">hyphenation</a> <li><a href="https://drafts.csswg.org/css-text-3/#hyphenation-opportunity">hyphenation opportunity</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x18">hyphen-separated matching</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#hypothetical-cross-size">hypothetical cross size</a> <li><a href="https://drafts.csswg.org/css-grid-1/#hypothetical-fr-size">hypothetical fr size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#hypothetical-main-size">hypothetical main size</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">ident</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-code-point">ident code point</a> - <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">identifier</a> + <li> + identifier + <ul> + <li><a href="https://drafts.csswg.org/css-values-3/#css-css-identifier">in css-values-3, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-transforms-1/#identity-transform-function">identity transform function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-sequence">ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#ident-start-code-point">ident-start code point</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ignore">ignore</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-ignored">ignored</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#illegal">illegal</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid">implicit grid</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-track">implicit grid column</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-lines">implicit grid lines</a> @@ -1715,6 +1879,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#implicit-grid-track">implicit grid track</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicitly-assigned-line-name">implicitly-assigned line name</a> <li><a href="https://drafts.csswg.org/css-grid-1/#implicitly-named-area">implicitly-named area</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x7">@import</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#important">important</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#import-conditions">import conditions</a> <li><a href="https://drafts.csswg.org/css-color-3/#inactiveborder">inactiveborder</a> @@ -1723,6 +1888,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">indefinite</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#definite">indefinite size</a> <li><a href="https://drafts.csswg.org/css-display-3/#independent-formatting-context">independent formatting context</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-index">index</a> <li><a href="https://drafts.csswg.org/css-color-3/#indianred">indianred</a> <li><a href="https://drafts.csswg.org/css-color-3/#indigo">indigo</a> <li><a href="https://drafts.csswg.org/css-grid-1/#infinitely-growable">infinitely growable</a> @@ -1753,6 +1919,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-axis">inline-axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction">inline base direction</a> <li><a href="https://drafts.csswg.org/css-display-3/#inline-block">inline block</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-inline-block">inline-block</a> <li><a href="https://drafts.csswg.org/css-display-3/#inline-block">inline block box</a> <li><a href="https://drafts.csswg.org/css-display-3/#inline-box">inline box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-dimension">inline dimension</a> @@ -1762,29 +1929,34 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-display-3/#inline-level">inline-level</a> <li><a href="https://drafts.csswg.org/css-display-3/#inline-level-box">inline-level box</a> <li><a href="https://drafts.csswg.org/css-display-3/#inline-level">inline-level content</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#inline-level">inline-level element</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-size">inline size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-size">inline-size</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-start">inline start</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#inline-start">inline-start</a> <li><a href="https://drafts.csswg.org/css-display-3/#inlinify">inlinification</a> <li><a href="https://drafts.csswg.org/css-display-3/#inlinify">inlinify</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#inner-box-shadow">inner box-shadow</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-inner-box-shadow">inner box-shadow</a> <li><a href="https://drafts.csswg.org/css-display-3/#inner-display-type">inner display type</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#inner-edge">inner edge</a> <li><a href="https://drafts.csswg.org/css-easing-1/#input-progress-value">input progress value</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#input-stream">input stream</a> <li><a href="https://drafts.csswg.org/css-values-3/#integer">integer</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#intended-direction">intended direction</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#intended-direction-and-end-position">intended direction and end position</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#intended-end-position">intended end position</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#interactive-media-group">'interactive media group</a> <li><a href="https://drafts.csswg.org/css-display-3/#internal-ruby-box">internal ruby box</a> <li><a href="https://drafts.csswg.org/css-display-3/#internal-ruby-element">internal ruby element</a> <li><a href="https://drafts.csswg.org/css-display-3/#internal-table-box">internal table box</a> <li><a href="https://drafts.csswg.org/css-display-3/#internal-table-element">internal table element</a> <li><a href="https://www.w3.org/TR/css-namespaces-3/#interpreter">interpreter</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#intrinsic">intrinsic dimensions</a> <li><a href="https://drafts.csswg.org/css-grid-1/#intrinsic-sizing-function">intrinsic sizing function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-invalid">invalid</a> <li><a href="https://drafts.csswg.org/css-variables-1/#invalid-at-computed-value-time">invalid at computed-value time</a> <li><a href="https://drafts.csswg.org/css-images-3/#invalid-image">invalid image</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#invalid-rule-error">invalid rule error</a> <li><a href="https://drafts.csswg.org/css-display-3/#invisible">invisible</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#isolated-sequence">isolated sequence</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#bidi-isolate">isolation</a> @@ -1796,6 +1968,8 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#khaki">khaki</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-known">known</a> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-korean">korean</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">:lang</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">lang (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-align-3/#last-baseline-alignment">last-baseline alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#baseline-content-alignment">last-baseline content-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#last-baseline-set">last baselines</a> @@ -1810,6 +1984,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-contain-1/#layout-containment">layout containment</a> <li><a href="https://drafts.csswg.org/css-contain-1/#layout-containment-box">layout containment box</a> <li><a href="https://drafts.csswg.org/css-display-3/#layout-internal">layout-internal</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x6">:left</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-left">left</a> <li><a href="https://drafts.csswg.org/css-grid-1/#leftover-space">leftover space</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#legacy-name-alias">legacy name alias</a> @@ -1844,6 +2019,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#limited-contribution">limited min-content contribution</a> <li><a href="https://drafts.csswg.org/css-easing-1/#linear-easing-function">linear easing function</a> <li><a href="https://drafts.csswg.org/css-easing-1/#linear-easing-function">linear timing function</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#line-box">line box</a> <li> line break <ul> @@ -1862,6 +2038,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#line-relative-direction">line-relative direction</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#line-right">line-right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#line-under">line-under</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">:link</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">link (pseudo-class)</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#value-def-list-item">list-item</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x30">list properties</a> <li><a href="https://drafts.csswg.org/css-images-3/#loading-image">loading image</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#local-coordinate-system">local coordinate system</a> <li><a href="https://drafts.csswg.org/css-values-3/#url-local-url-flag">local url flag</a> @@ -1880,6 +2060,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://www.w3.org/TR/css-flexbox-1/#main-size">main-size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-size-property">main size property</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#main-start">main-start</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x17">margin box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#margin-edge">margin edge</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-margin-area">margin::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-margin-width">&lt;margin-width></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-mark">mark</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-marked-indexes">marked indexes</a> <li><a href="https://drafts.csswg.org/css-color-3/#maroon">maroon</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-border-image">mask border image</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-border-image-area">mask border image area</a> @@ -1889,6 +2075,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-position">mask-position</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-positioning-area">mask positioning area</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#mask-size">mask-size</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x1">match</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-delay">matching transition delay</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-duration">matching transition duration</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#matching-transition-property-value">matching transition-property value</a> @@ -1901,8 +2088,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-flexbox-1/#max-main-size">max main size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#max-main-size-property">max main size property</a> <li><a href="https://drafts.csswg.org/css-grid-1/#max-track-sizing-function">max track sizing function</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x8">may</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#x2">media</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-condition">media condition</a> + <li><a href="https://www.w3.org/TR/CSS21/cascade.html#x9">media-dependent import</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-feature">media feature</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#x4">media group</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-query">media query</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-query-list">media query list</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#media-query-modifier">media query modifier</a> @@ -1918,6 +2109,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#mediumvioletred">mediumvioletred</a> <li><a href="https://drafts.csswg.org/css-color-3/#menu">menu</a> <li><a href="https://drafts.csswg.org/css-color-3/#menutext">menutext</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#message-entity">message entity</a> <li><a href="https://drafts.csswg.org/css-color-3/#midnightblue">midnightblue</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#min-cross-size">min cross size</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#min-cross-size-property">min cross size property</a> @@ -1931,6 +2123,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#mistyrose">mistyrose</a> <li><a href="https://drafts.csswg.org/css-color-3/#moccasin">moccasin</a> <li><a href="https://drafts.csswg.org/css-break-3/#monolithic">monolithic</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#monospace-def">monospace</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-container">multicol container</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-line">multi-col line</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-line">multicol line</a> @@ -1941,7 +2134,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-spanner">multi-column spanner</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#multi-column-spanning-element">multi-column spanning element</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#multi-line-flex-container">multi-line flex container</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x8">multiple declarations</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#multiply">multiply</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x0">must</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x1">must not</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-areas-named-cell-token">named cell token</a> <li><a href="https://drafts.csswg.org/css-grid-1/#named-grid-area">named grid area</a> <li><a href="https://drafts.csswg.org/css-namespaces-3/#namespace-prefix">namespace prefix</a> @@ -1957,14 +2153,16 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-images-3/#nearest-neighbor">nearest neighbor</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#newline">newline</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#next-input-code-point">next input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#next-input-token">next input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#next-input-token">next input token</a> <li><a href="https://drafts.csswg.org/selectors-3/#next-sibling-combinator">next-sibling combinator</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-next-token">next token</a> <li><a href="https://www.w3.org/TR/css-syntax-3/#non-ascii-code-point">non-ascii code point</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#non-ascii-ident-code-point">non-ascii ident code point</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x21">'none'::as display value</a> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#non-overridable-counter-style-names">non-overridable counter-style names</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#non-printable-code-point">non-printable code point</a> <li><a href="https://drafts.csswg.org/css-display-3/#non-replaced">non-replaced</a> <li><a href="https://drafts.csswg.org/css-display-3/#non-replaced">non-replaced element</a> - <li><a href="https://www.w3.org/TR/css-font-loading-3/#no-pending-font-loads">no pending font loads</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#normal">normal</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#normalize-into-a-token-stream">normalize into a token stream</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-areas-null-cell-token">null cell token</a> @@ -1979,6 +2177,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#opacity">opacity</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#operating-coordinate-space">operating coordinate space</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#optimal-viewing-region">optimal viewing region</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x9">optional</a> <li><a href="https://drafts.csswg.org/css-color-3/#orange">orange</a> <li><a href="https://drafts.csswg.org/css-color-3/#orangered">orangered</a> <li><a href="https://drafts.csswg.org/css-color-3/#orchid">orchid</a> @@ -1991,17 +2190,30 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#establish-an-orthogonal-flow">orthogonal</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#establish-an-orthogonal-flow">orthogonal flow</a> <li><a href="https://drafts.csswg.org/css-text-3/#other-space-separators">other space separators</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#outer-box-shadow">outer box-shadow</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-outer-box-shadow">outer box-shadow</a> <li><a href="https://drafts.csswg.org/css-display-3/#outer-display-type">outer display type</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#outer-edge">outer edge</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#x2">outline</a> <li><a href="https://drafts.csswg.org/css-display-3/#out-of-flow">out of flow</a> <li><a href="https://drafts.csswg.org/css-display-3/#out-of-flow">out-of-flow</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#output-of-the-cascade">output of the cascade</a> <li><a href="https://drafts.csswg.org/css-easing-1/#output-progress-value">output progress value</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#over">over</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#x0">overflow</a> <li><a href="https://drafts.csswg.org/css-align-3/#overflow-alignment">overflow alignment</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#overflow-columns">overflow columns</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#x12">padding box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#padding-edge">padding edge</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#box-padding-area">padding::of a box</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-padding-width">&lt;padding-width></a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x3">@page</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#page-area">page area</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x1">page box</a> <li><a href="https://drafts.csswg.org/css-break-3/#page-break">page break</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#page-context">page-context</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#paged-media">paged media</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#paged-media-group">'paged' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x5">page selector</a> <li><a href="https://drafts.csswg.org/css-break-3/#pagination">pagination</a> <li><a href="https://drafts.csswg.org/css-contain-1/#paint-containment">paint containment</a> <li><a href="https://drafts.csswg.org/css-contain-1/#paint-containment-box">paint containment box</a> @@ -2010,8 +2222,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#paleturquoise">paleturquoise</a> <li><a href="https://drafts.csswg.org/css-color-3/#palevioletred">palevioletred</a> <li><a href="https://drafts.csswg.org/css-color-3/#papayawhip">papayawhip</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#parent">parent</a> <li><a href="https://drafts.csswg.org/css-display-3/#css-parent-box">parent box</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar">parse</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-blocks-contents">parse a block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parse a comma-separated list according to a css grammar</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-comma-separated-list-of-component-values">parse a comma-separated list of component values</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-component-value">parse a component value</a> @@ -2019,14 +2233,15 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-declaration">parse a declaration</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parse a list</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values">parse a list of component values</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations">parse a list of declarations</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-rules">parse a list of rules</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations">parse a list of declarations</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-rules">parse a list of rules</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-rule">parse a rule</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-style-blocks-contents">parse a style block's contents</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#parse-a-style-blocks-contents">parse a style block's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheet">parse a stylesheet</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-a-stylesheets-contents">parse a stylesheet's contents</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#parse-error">parse error</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar">parse something according to a css grammar</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parsing a list</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#css-parse-a-comma-separated-list-according-to-a-css-grammar">parsing a list</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#baseline-participation">participates in baseline alignment</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#pass-through-filter">pass through filter</a> <li><a href="https://drafts.csswg.org/css-color-3/#peachpuff">peachpuff</a> @@ -2041,31 +2256,70 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-left">physical left</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-right">physical right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-top">physical top</a> - <li><a href="https://drafts.csswg.org/css-values-3/#physical-units">physical units</a> + <li><a href="https://drafts.csswg.org/css-values-3/#physical-unit">physical unit</a> <li><a href="https://drafts.csswg.org/css-color-3/#pink">pink</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x40">pixel</a> <li><a href="https://drafts.csswg.org/css-values-3/#visual-angle-unit">pixel unit</a> <li><a href="https://drafts.csswg.org/css-color-3/#plum">plum</a> <li><a href="https://drafts.csswg.org/css-align-3/#positional-alignment">positional alignment</a> - <li><a href="https://www.w3.org/TR/css-font-loading-3/#possibly-pending-font-loads">possibly pending font loads</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#positioned-element">positioned element/box</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x22">positioning scheme</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#post-multiplied">post-multiplied</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#post-multiply">post-multiply</a> <li><a href="https://drafts.csswg.org/css-color-3/#powderblue">powderblue</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#preceding">preceding element</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#pre-multiplied">pre-multiplied</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#pre-multiply">pre-multiply</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#preserved-tokens">preserved tokens</a> <li><a href="https://drafts.csswg.org/css-text-3/#preserved-white-space">preserved white space</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#primary-filter-primitive-tree">primary filter primitive tree</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#principal-box">principal block-level box</a> <li><a href="https://drafts.csswg.org/css-display-3/#principal-box">principal box</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode">principal writing mode</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-process">process</a> <li><a href="https://drafts.csswg.org/css-break-3/#propagate">propagate</a> <li><a href="https://drafts.csswg.org/css-break-3/#propagate">propagation</a> - <li><a href="https://drafts.csswg.org/css-cascade-4/#css-property">property</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x17">proper table child</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x18">proper table row parent</a> + <li> + property + <ul> + <li><a href="https://drafts.csswg.org/css-cascade-4/#css-property">in css-cascade-4, for CSS</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#property">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-property-declarations">property declarations</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x23">pseudo-classes</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x35">pseudo-classes:::active</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x38">pseudo-classes:::focus</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x32">pseudo-classes:::hover</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x41">pseudo-classes:::lang</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x26">pseudo-classes:::link</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">pseudo-classes:::visited</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x10">pseudo-class:::first</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x6">pseudo-class:::left</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x8">pseudo-class:::right</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x22">pseudo-elements</a> + <li> + pseudo-elements:::after + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x5">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x59">in css2</a> + </ul> + <li> + pseudo-elements:::before + <ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x2">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x57">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x50">pseudo-elements:::first-letter</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#first-line-pseudo">pseudo-elements:::first-line</a> <li><a href="https://drafts.csswg.org/css-color-3/#purple">purple</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#em-width">quad width</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#qualified-rule">qualified rule</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#range-context">range context</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x7">recommended</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-code-point">reconsume the current input code point</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#reconsume-the-current-input-token">reconsume the current input token</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#reconsume-the-current-input-token">reconsume the current input token</a> <li><a href="https://drafts.csswg.org/css-color-3/#red">red</a> <li> reference box @@ -2076,20 +2330,33 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-values-3/#reference-pixel">reference pixel</a> <li><a href="https://drafts.csswg.org/css-break-3/#region-break">region break</a> <li><a href="https://drafts.csswg.org/css-values-3/#relative-length">relative length</a> + <li><a href="https://drafts.csswg.org/css-values-3/#relative-length">relative length unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x34">relative positioning</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x34">relative units</a> <li><a href="https://drafts.csswg.org/css-break-3/#remaining-fragmentainer-extent">remaining fragmentainer extent</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#remaining-free-space">remaining free space</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#rendered-content">rendered content</a> <li><a href="https://drafts.csswg.org/css-display-3/#replaced-element">replaced</a> <li><a href="https://drafts.csswg.org/css-display-3/#replaced-element">replaced element</a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#representation">representation</a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#representation">representation</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x2">required</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#reset-only-sub-property">reset-only sub-property</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#re-snap">re-snap</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#resolve-an-arbitrary-substitution-function">resolve an arbitrary substitution function</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#resolve-a-var-function">resolve a var() function</a> <li><a href="https://drafts.csswg.org/css-values-3/#resolved-type">resolved type</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-restore-a-mark">restore a mark</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-reversing-adjusted-start-value">reversing-adjusted start value</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#transition-reversing-shortening-factor">reversing shortening factor</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x8">:right</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-right">right</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#root">root</a> <li><a href="https://drafts.csswg.org/css-display-3/#root-element">root element</a> <li><a href="https://drafts.csswg.org/css-color-3/#rosybrown">rosybrown</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x16">row group box</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x5">row groups</a> <li><a href="https://drafts.csswg.org/css-color-3/#royalblue">royalblue</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-rule">rule</a> <li><a href="https://drafts.csswg.org/css-display-3/#run-in">run-in</a> <li><a href="https://drafts.csswg.org/css-display-3/#run-in">run-in box</a> <li><a href="https://drafts.csswg.org/css-display-3/#run-in-sequence">run-in sequence</a> @@ -2097,7 +2364,10 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#saddlebrown">saddlebrown</a> <li><a href="https://drafts.csswg.org/css-color-3/#salmon">salmon</a> <li><a href="https://drafts.csswg.org/css-color-3/#sandybrown">sandybrown</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#sans-serif-def">sans-serif</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#scaled-flex-shrink-factor">scaled flex shrink factor</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#x29">scope</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x1">screen reader</a> <li><a href="https://drafts.csswg.org/css-color-3/#scrollbar">scrollbar</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#scroll-snap">scroll snap</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#scroll-snap-area">scroll snap area</a> @@ -2107,21 +2377,40 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#seagreen">seagreen</a> <li><a href="https://drafts.csswg.org/css-color-3/#seashell">seashell</a> <li><a href="https://drafts.csswg.org/css-text-3/#segment-break">segment break</a> - <li><a href="https://drafts.csswg.org/selectors-3/#selector">selector</a> + <li> + selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x15">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#selector">in selectors-3</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x1">selector::match</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#subject">selector::subject of</a> <li><a href="https://drafts.csswg.org/css-align-3/#self-align">self-alignment</a> <li><a href="https://drafts.csswg.org/css-align-3/#self-alignment-properties">self-alignment properties</a> <li><a href="https://drafts.csswg.org/css-speech-1/#voice-pitch-semitone">semitone</a> <li><a href="https://drafts.csswg.org/selectors-3/#sequence-of-simple-selectors">sequence of simple selectors</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#serialize-an-anb-value">serialize an &lt;an+b> value</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#serif-def">serif</a> <li><a href="https://drafts.csswg.org/css-font-loading-3/#fontfaceset-set-entries">set entries</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x3">shall</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x4">shall not</a> <li><a href="https://drafts.csswg.org/css-align-3/#shared-alignment-context">shared alignment context</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#x0">sheet</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#shorthand-property">shorthand</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#shorthand-property">shorthand property</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x5">should</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#x6">should not</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#sibling">sibling</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#typeset-sideways">sideways typesetting</a> <li><a href="https://drafts.csswg.org/css-color-3/#sienna">sienna</a> <li><a href="https://drafts.csswg.org/css-color-3/#silver">silver</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#simple-block">simple block</a> - <li><a href="https://drafts.csswg.org/selectors-3/#simple-selector">simple selector</a> + <li> + simple selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#simple-selector">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#simple-selector">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#single-line-flex-container">single-line flex container</a> <li><a href="https://drafts.csswg.org/css-contain-1/#size-containment">size containment</a> <li><a href="https://drafts.csswg.org/css-contain-1/#size-containment-box">size containment box</a> @@ -2137,11 +2426,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#soft-wrap-break">soft wrap break</a> <li><a href="https://drafts.csswg.org/css-text-3/#soft-wrap-opportunity">soft wrap opportunity</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#source">source</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#source-document">source document</a> <li><a href="https://drafts.csswg.org/css-text-3/#spaces">spaces</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x16">space-separated matching</a> <li><a href="https://drafts.csswg.org/css-grid-1/#space-to-fill">space to fill</a> <li><a href="https://drafts.csswg.org/css-grid-1/#span-count">span count</a> - <li><a href="https://www.w3.org/TR/css-multicol-1/#spanner">spanner</a> - <li><a href="https://www.w3.org/TR/css-multicol-1/#spanning-element">spanning element</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-specific-voice">&lt;specific-voice></a> <li><a href="https://drafts.csswg.org/css-images-3/#specified-size">specified size</a> <li> specified size suggestion @@ -2150,9 +2440,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-grid-1/#specified-size-suggestion">in css-grid-1</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#specified-value">specified value</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#speech-media-group">'speech' media group</a> <li><a href="https://drafts.csswg.org/css-break-3/#spread-break">spread break</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#spread-distance">spread distance</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance">spread distance</a> <li><a href="https://drafts.csswg.org/css-color-3/#springgreen">springgreen</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x43">stacking context</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#stack-level">stack level</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#css-start">start</a> <li><a href="https://drafts.csswg.org/css-images-3/#starting-point">starting point</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#css-start">startmost</a> @@ -2164,6 +2457,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">start with an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">start with a number</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#statement-at-rule">statement at-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#static-media-group">'static' media group</a> <li> static-position rectangle <ul> @@ -2177,6 +2471,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#stop-or-comma">stop or comma</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#stretched">stretched</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#strictness-value">strictness value</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-string">&lt;string></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#stroke-bounding-box">stroke bounding box</a> <li><a href="https://drafts.csswg.org/selectors-3/#structural-pseudo-classes">structural pseudo-classes</a> <li><a href="https://www.w3.org/TR/css-flexbox-1/#strut-size">strut size</a> @@ -2186,13 +2481,16 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li> style sheet <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#style-sheet">in css-backgrounds-3</a> <li><a href="https://www.w3.org/TR/css-namespaces-3/#style-sheet">in css-namespaces-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#style-sheet">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#style-sheet">in css2</a> </ul> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-stylesheet">stylesheet</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#subject">subject (of selector)</a> <li><a href="https://drafts.csswg.org/selectors-3/#subjects-of-the-selector">subjects of the selector</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#longhand">sub-property</a> <li><a href="https://drafts.csswg.org/selectors-3/#subsequent-sibling-combinator">subsequent-sibling combinator</a> + <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">substitute arbitrary substitution function</a> <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">substitute a var()</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#dfn-support">support</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#supports-queries">supports queries</a> @@ -2200,15 +2498,21 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-font-loading-3/#switch-the-fontfaceset-to-loading">switch the fontfaceset to loading</a> <li><a href="https://drafts.csswg.org/css-align-3/#synthesize-baseline">synthesize baseline</a> <li><a href="https://drafts.csswg.org/css-align-3/#synthesize-baseline">synthesized baseline</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#x11">system fonts</a> <li><a href="https://drafts.csswg.org/css-display-3/#table-caption-box">table caption box</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x2">table element</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x0">tables</a> <li><a href="https://drafts.csswg.org/css-text-3/#tabs">tabs</a> <li><a href="https://drafts.csswg.org/css-text-3/#tab-size-dfn">tab size</a> <li><a href="https://drafts.csswg.org/css-text-3/#tab-stop">tab stop</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#x20">tabular container</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#tactile-media-group">'tactile' media group</a> <li><a href="https://drafts.csswg.org/css-color-3/#tan">tan</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#target-main-size">target main size</a> <li><a href="https://drafts.csswg.org/css-color-3/#teal">teal</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#text-css">text/css</a> <li><a href="https://drafts.csswg.org/css-display-3/#text-nodes">text node</a> - <li><a href="https://drafts.csswg.org/css-display-3/#text-run">text run</a> + <li><a href="https://drafts.csswg.org/css-display-3/#css-text-sequence">text sequence</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-textual-data-types">textual data types</a> <li><a href="https://drafts.csswg.org/css-color-3/#thistle">thistle</a> <li><a href="https://drafts.csswg.org/css-color-3/#threeddarkshadow">threeddarkshadow</a> @@ -2216,9 +2520,13 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-color-3/#threedhighlight">threedhighlight</a> <li><a href="https://drafts.csswg.org/css-color-3/#threedlightshadow">threedlightshadow</a> <li><a href="https://drafts.csswg.org/css-color-3/#threedshadow">threedshadow</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#value-def-time">&lt;time></a> <li><a href="https://drafts.csswg.org/css-easing-1/#easing-function">timing function</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-tokenize">tokenization</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#css-tokenize">tokenize</a> + <li><a href="https://www.w3.org/TR/CSS21/grammar.html#x3">tokenizer</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#token-stream-tokens">tokens</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#css-token-stream">token stream</a> <li><a href="https://drafts.csswg.org/css-color-3/#tomato">tomato</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#physical-top">top</a> <li><a href="https://drafts.csswg.org/css-text-3/#tracking">tracking</a> @@ -2244,7 +2552,12 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-counter-styles-3/#triangle">triangle</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#trinary">trinary</a> <li><a href="https://drafts.csswg.org/css-color-3/#turquoise">turquoise</a> - <li><a href="https://drafts.csswg.org/selectors-3/#type-selector">type selector</a> + <li> + type selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x11">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#type-selector">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#typeset-sideways">typeset sideways</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#typeset-sideways">typesetting sideways</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#typeset-upright">typesetting upright</a> @@ -2256,15 +2569,21 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li> ua <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#ua">in css-backgrounds-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#ua">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ua">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#user-agent">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">ua origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">ua-origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">ua style sheet</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#under">under</a> <li><a href="https://drafts.csswg.org/css-break-3/#unforced-break">unforced break</a> - <li><a href="https://drafts.csswg.org/selectors-3/#universal-selector0">universal selector</a> + <li> + universal selector + <ul> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x10">in css2</a> + <li><a href="https://drafts.csswg.org/selectors-3/#universal-selector0">in selectors-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-3/#writing-system-known">unknown</a> <li><a href="https://drafts.csswg.org/css-grid-1/#unoccupied">unoccupied</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-alpha-legal">upper-alpha-legal</a> @@ -2277,8 +2596,9 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li> user agent <ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#user-agent">in css-backgrounds-3</a> <li><a href="https://drafts.csswg.org/css-speech-1/#user-agent">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#ua">in css2</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#user-agent">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">user-agent origin</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-ua">user-agent style sheet</a> @@ -2288,19 +2608,28 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-cascade-4/#cascade-origin-user">user style sheet</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#use-a-negative-sign">uses a negative sign</a> <li><a href="https://drafts.csswg.org/css-images-3/#invalid-image">valid image</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">validity</a> + <li><a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">valid style sheet</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#x21">value</a> <li><a href="https://drafts.csswg.org/css-values-3/#css-value-definition-syntax">value definition syntax</a> <li><a href="https://drafts.csswg.org/css-variables-1/#substitute-a-var">var() substitution</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#y-axis">vertical axis</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#vertical-block-flow">vertical block flow</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#vertical-dimension">vertical dimension</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#vertical-offset">vertical offset</a> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-vertical-offset">vertical offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#vertical-only">vertical-only</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#vertical-script">vertical script</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#vertical-typographic-mode">vertical typographic mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode">vertical writing mode</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x1">viewport</a> <li><a href="https://drafts.csswg.org/css-values-3/#viewport-percentage-lengths">viewport-percentage lengths</a> <li><a href="https://drafts.csswg.org/css-color-3/#violet">violet</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">:visited</a> + <li><a href="https://www.w3.org/TR/CSS21/selector.html#x29">visited (pseudo-class)</a> <li><a href="https://drafts.csswg.org/css-values-3/#visual-angle-unit">visual angle unit</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#x0">visual formatting model</a> + <li><a href="https://www.w3.org/TR/CSS21/media.html#visual-media-group">'visual' media group</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#x10">volume</a> <li><a href="https://drafts.csswg.org/css-color-3/#wheat">wheat</a> <li><a href="https://drafts.csswg.org/css-color-3/#white">white</a> <li><a href="https://drafts.csswg.org/css-color-3/#whitesmoke">whitesmoke</a> @@ -2315,6 +2644,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. <li><a href="https://drafts.csswg.org/css-text-3/#word-separator">word-separator character</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-an-ident-sequence">would start an ident sequence</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-number">would start a number</a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#check-if-three-code-points-would-start-a-unicode-range">would start a unicode-range</a> <li> wrap <ul> @@ -2329,6 +2659,7 @@ <h3 class="heading settled" data-level="5.1" id="terms"><span class="secno">5.1. </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#writing-mode">writing mode</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#x-axis">x-axis</a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#ex">x-height</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#y-axis">y-axis</a> <li><a href="https://drafts.csswg.org/css-color-3/#yellow">yellow</a> <li><a href="https://drafts.csswg.org/css-color-3/#yellowgreen">yellowgreen</a> @@ -2455,6 +2786,7 @@ <h3 class="heading settled" data-level="5.3" id="at-rules"><span class="secno">5 <li><a href="https://drafts.csswg.org/css-cascade-4/#at-ruledef-import">@import</a> <li><a href="https://drafts.csswg.org/css-animations-1/#at-ruledef-keyframes">@keyframes</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media">@media</a> + <li><a href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace">@namespace</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports">@supports</a> </ul> </div> @@ -2530,6 +2862,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name">animation-name</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-play-state">animation-play-state</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function">animation-timing-function</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth">azimuth</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background">background</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment">background-attachment</a> <li><a href="https://drafts.fxtf.org/compositing-1/#propdef-background-blend-mode">background-blend-mode</a> @@ -2547,6 +2880,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius">border-bottom-right-radius</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style">border-bottom-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width">border-bottom-width</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse">border-collapse</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color">border-color</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image">border-image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-outset">border-image-outset</a> @@ -2563,6 +2897,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color">border-right-color</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style">border-right-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width">border-right-width</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing">border-spacing</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style">border-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top">border-top</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color">border-top-color</a> @@ -2571,16 +2906,20 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style">border-top-style</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width">border-top-width</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width">border-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-box-decoration-break">box-decoration-break</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow">box-shadow</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-box-sizing">box-sizing</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-after">break-after</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-before">break-before</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-break-inside">break-inside</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side">caption-side</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-caret-color">caret-color</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear">clear</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip">clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-path">clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-rule">clip-rule</a> + <li><a href="https://www.w3.org/TR/CSS21/colors.html#propdef-color">color</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-color-interpolation-filters">color-interpolation-filters</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-count">column-count</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-fill">column-fill</a> @@ -2593,12 +2932,32 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-span">column-span</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-width">column-width</a> <li><a href="https://drafts.csswg.org/css-contain-1/#propdef-contain">contain</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">cue</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">cue-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">cue-before</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-content">content</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment">counter-increment</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset">counter-reset</a> + <li> + cue + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue">in css2</a> + </ul> + <li> + cue-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-after">in css2</a> + </ul> + <li> + cue-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-before">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-cursor">cursor</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-direction">direction</a> <li><a href="https://drafts.csswg.org/css-display-3/#propdef-display">display</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-elevation">elevation</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells">empty-cells</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-filter">filter</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex">flex</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis">flex-basis</a> @@ -2607,8 +2966,15 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow">flex-grow</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-shrink">flex-shrink</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-wrap">flex-wrap</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float">float</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-flood-color">flood-color</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-flood-opacity">flood-opacity</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font">font</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-family">font-family</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-size">font-size</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-style">font-style</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant">font-variant</a> + <li><a href="https://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight">font-weight</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-gap">gap</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-glyph-orientation-vertical">glyph-orientation-vertical</a> <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid">grid</a> @@ -2630,6 +2996,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-columns">grid-template-columns</a> <li><a href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-rows">grid-template-rows</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-hanging-punctuation">hanging-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height">height</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-hyphens">hyphens</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">image-orientation</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-image-rendering">image-rendering</a> @@ -2642,9 +3009,20 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" </ul> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-items">justify-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-self">justify-self</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left">left</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-letter-spacing">letter-spacing</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-lighting-color">lighting-color</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-line-break">line-break</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height">line-height</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style">list-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image">list-style-image</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position">list-style-position</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type">list-style-type</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin">margin</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom">margin-bottom</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-left">margin-left</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-right">margin-right</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-top">margin-top</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask">mask</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-border">mask-border</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-mode">mask-border-mode</a> @@ -2662,6 +3040,10 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat">mask-repeat</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-size">mask-size</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-type">mask-type</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height">max-height</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width">max-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height">min-height</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width">min-width</a> <li><a href="https://drafts.fxtf.org/compositing-1/#propdef-mix-blend-mode">mix-blend-mode</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-object-fit">object-fit</a> <li><a href="https://drafts.csswg.org/css-images-3/#propdef-object-position">object-position</a> @@ -2677,17 +3059,49 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-offset">outline-offset</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-style">outline-style</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-outline-width">outline-width</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow">overflow</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap">overflow-wrap</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">pause</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">pause-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">pause-before</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding">padding</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom">padding-bottom</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left">padding-left</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-right">padding-right</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-top">padding-top</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after">page-break-after</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before">page-break-before</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside">page-break-inside</a> + <li> + pause + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause">in css2</a> + </ul> + <li> + pause-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-after">in css2</a> + </ul> + <li> + pause-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-before">in css2</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch">pitch</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range">pitch-range</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-content">place-content</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-items">place-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-self">place-self</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-play-during">play-during</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-position">position</a> + <li><a href="https://www.w3.org/TR/CSS21/about.html#propdef-property-name">property-name</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#propdef-quotes">quotes</a> <li><a href="https://drafts.csswg.org/css-ui-3/#propdef-resize">resize</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest">rest</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-after">rest-after</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-before">rest-before</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-richness">richness</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right">right</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-row-gap">row-gap</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin">scroll-margin</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block">scroll-margin-block</a> @@ -2717,8 +3131,19 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-image-threshold">shape-image-threshold</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-margin">shape-margin</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#propdef-shape-outside">shape-outside</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">speak</a> + <li> + speak + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak-as">speak-as</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header">speak-header</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral">speak-numeral</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation">speak-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate">speech-rate</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-stress">stress</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout">table-layout</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-tab-size">tab-size</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-align">text-align</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-align-all">text-align-all</a> @@ -2739,6 +3164,7 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-text-decor-3/#propdef-text-shadow">text-shadow</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-text-transform">text-transform</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#propdef-text-underline-position">text-underline-position</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top">top</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform">transform</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-box">transform-box</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin">transform-origin</a> @@ -2748,22 +3174,31 @@ <h3 class="heading settled" data-level="5.4" id="properties"><span class="secno" <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-property">transition-property</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function">transition-timing-function</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-unicode-bidi">unicode-bidi</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align">vertical-align</a> <li><a href="https://drafts.csswg.org/css-display-3/#propdef-visibility">visibility</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-balance">voice-balance</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-duration">voice-duration</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">voice-family</a> + <li> + voice-family + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-voice-family">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-pitch">voice-pitch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-range">voice-range</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-rate">voice-rate</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-stress">voice-stress</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-volume">voice-volume</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-volume">volume</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-white-space">white-space</a> <li><a href="https://drafts.csswg.org/css-break-3/#propdef-widows">widows</a> + <li><a href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width">width</a> <li><a href="https://drafts.csswg.org/css-will-change-1/#propdef-will-change">will-change</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-break">word-break</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-spacing">word-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#propdef-word-wrap">word-wrap</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode">writing-mode</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index">z-index</a> </ul> </div> <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5. </span><span class="content">Values Index</span><a class="self-link" href="#values"></a></h3> @@ -2809,7 +3244,6 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 css-display-3, css-font-loading-3" data-link-status="TR"> <ul class="index"> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle"></a> <li> absolute <ul> @@ -2853,7 +3287,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-anywhere">in css-text-3, for overflow-wrap</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-arabic-indic">arabic-indic</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">armenian</a> + <li> + armenian + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-armenian">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-aural">aural</a> <li> auto @@ -2984,13 +3423,14 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 </ul> <li><a href="https://drafts.csswg.org/css-values-3/#ch">ch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-child">child</a> + <li><a href="https://drafts.csswg.org/css-values-3/#ch">ch unit</a> <li> circle <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circle">in css-counter-styles-3, for &lt;counter-style-name></a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-circle">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle">in css-images-3, for &lt;rg-ending-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle">in css-images-3, for &lt;radial-shape></a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-circle">in css-text-decor-3, for text-emphasis-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-circle">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-decimal">cjk-decimal</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-cjk-earthly-branch">cjk-earthly-branch</a> @@ -2998,18 +3438,9 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-ideographic">cjk-ideographic</a> <li><a href="https://drafts.csswg.org/css-ui-3/#overflow-clip">clip</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-box-decoration-break-clone">clone</a> - <li> - closest-corner - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-corner">in css-images-3, for &lt;size></a> - </ul> - <li> - closest-side - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-side">in css-images-3, for &lt;size></a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-close-quote">close-quote</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner">closest-corner</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side">closest-side</a> <li><a href="https://drafts.csswg.org/css-values-3/#cm">cm</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-pointer-coarse">coarse</a> <li><a href="https://drafts.csswg.org/css-display-3/#valdef-visibility-collapse">collapse</a> @@ -3067,10 +3498,25 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-crosshair">crosshair</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-cyclic">cyclic</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-darken">darken</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">dashed</a> + <li> + dashed + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dashed">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-decibel">&lt;decibel></a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">decimal</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">decimal-leading-zero</a> + <li> + decimal + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal">in css2</a> + </ul> + <li> + decimal-leading-zero + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal-leading-zero">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-default">default</a> <li><a href="https://drafts.csswg.org/css-values-3/#deg">deg</a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-auto-flow-dense">dense</a> @@ -3079,13 +3525,28 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-digits">digits</a> <li><a href="https://www.w3.org/TR/css-writing-modes-4/#valdef-text-combine-upright-digits-integer">digits &lt;integer>?</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-text-combine-upright-digits-integer-2-4">digits &lt;integer [2,4]>?</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">disc</a> + <li> + disc + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-disc">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-closed">disclosure-closed</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-open">disclosure-open</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-distribute">distribute</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-dot">dot</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">dotted</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">double</a> + <li> + dotted + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dotted">in css2</a> + </ul> + <li> + double + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-double">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-style-double-circle">double-circle</a> <li><a href="https://drafts.csswg.org/css-values-3/#dpcm">dpcm</a> <li><a href="https://drafts.csswg.org/css-values-3/#dpi">dpi</a> @@ -3095,16 +3556,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-in">ease-in</a> <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-in-out">ease-in-out</a> <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-out">ease-out</a> - <li> - ellipse - <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-ellipse">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse">in css-images-3, for &lt;rg-ending-shape></a> - </ul> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse">ellipse</a> <li><a href="https://drafts.csswg.org/css-ui-3/#overflow-ellipsis">ellipsis</a> <li><a href="https://drafts.csswg.org/css-values-3/#em">em</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-embed">embed</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-embossed">embossed</a> + <li><a href="https://drafts.csswg.org/css-values-3/#em">em unit</a> <li> end <ul> @@ -3113,7 +3570,6 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-align-end">in css-scroll-snap-1, for scroll-snap-align</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-align-end">in css-text-3, for text-align</a> </ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-ending-shape">&lt;ending-shape></a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-e-resize">e-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-ethiopic-numeric">ethiopic-numeric</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-evenodd">evenodd</a> @@ -3122,18 +3578,9 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-exclude">exclude</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-exclusion">exclusion</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-extends">extends</a> - <li> - farthest-corner - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-corner">in css-images-3, for &lt;size></a> - </ul> - <li> - farthest-side - <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-side">in css-images-3, for &lt;size></a> - </ul> + <li><a href="https://drafts.csswg.org/css-values-3/#ex">ex unit</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner">farthest-corner</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side">farthest-side</a> <li> fast <ul> @@ -3165,20 +3612,21 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-text-3/#valdef-hanging-punctuation-first">in css-text-3, for hanging-punctuation</a> </ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-self-first-baseline">first baseline</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-fit-content">fit-content()</a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-fit-content">fit-content()</a> <li> fixed <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-fixed">in css-backgrounds-3, for background-attachment</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-fixed">in css-counter-styles-3, for @counter-style/system</a> </ul> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex">&lt;flex></a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-flex">&lt;flex></a> <li> flex <ul> <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-flex">in css-display-3, for display, &lt;display-inside></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-display-flex">in css-flexbox-1, for display</a> </ul> + <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-flex-0">&lt;flex [0,∞]></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-basis">&lt;'flex-basis'></a> <li> flex-end @@ -3208,7 +3656,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-flex-fr">fr unit</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-full-size-kana">full-size-kana</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-full-width">full-width</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">georgian</a> + <li> + georgian + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-georgian">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-grab">grab</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-grabbing">grabbing</a> <li><a href="https://drafts.csswg.org/css-values-3/#grad">grad</a> @@ -3220,7 +3673,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-s-auto-row">&lt;'grid-template-rows'> / [ auto-flow &amp;&amp; dense? ] &lt;'grid-auto-columns'>?</a> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-template-rowcol">&lt;'grid-template-rows'> / &lt;'grid-template-columns'></a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">groove</a> + <li> + groove + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-groove">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gujarati">gujarati</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gurmukhi">gurmukhi</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-handheld">handheld</a> @@ -3233,6 +3691,7 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-hidden">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-display-3/#valdef-visibility-hidden">in css-display-3, for visibility</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-hidden">in css2</a> </ul> <li> high @@ -3275,12 +3734,18 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-inline-grid">in css-display-3, for display, &lt;display-legacy></a> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-display-inline-grid">in css-grid-1, for display</a> </ul> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-inline-table">inline-table</a> + <li> + inline-table + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-inline-table">in css-display-3, for display, &lt;display-legacy></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table">in css2</a> + </ul> <li> inset <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-inset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-inset">in css-backgrounds-3, for box-shadow</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-inset">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#grid-placement-int">[ &lt;integer [-∞,-1]> | &lt;integer [1,∞]> ] &amp;&amp; &lt;custom-ident>?</a> <li><a href="https://www.w3.org/TR/css-grid-1/#grid-placement-int">&lt;integer> &amp;&amp; &lt;custom-ident>?</a> @@ -3288,7 +3753,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-scan-interlace">interlace</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-intersect">intersect</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-inter-word">inter-word</a> - <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-outline-color-invert">invert</a> + <li> + invert + <ul> + <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-outline-color-invert">in css-ui-3, for outline-color</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#value-def-invert">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-isolate">isolate</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-isolate-override">isolate-override</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#japanese-formal">japanese-formal</a> @@ -3336,14 +3806,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li> &lt;length> <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length">in css-images-3, for &lt;size></a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-letter-spacing-length">in css-text-3, for letter-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-indent-length">in css-text-3, for text-indent</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-word-spacing-length">in css-text-3, for word-spacing</a> </ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-0">&lt;length [0,∞]></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length-percentage2">&lt;length-percentage>{2}</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-0">&lt;length [0,∞]></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-lighten">lighten</a> <li><a href="https://drafts.csswg.org/css-easing-1/#valdef-easing-function-linear">linear</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#valdef-color-interpolation-filters-linearrgb">linearrgb</a> @@ -3363,9 +3831,24 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-alpha">lower-alpha</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-lower-armenian">lower-armenian</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-lowercase">lowercase</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">lower-greek</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">lower-latin</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">lower-roman</a> + <li> + lower-greek + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-greek">in css2</a> + </ul> + <li> + lower-latin + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-latin">in css2</a> + </ul> + <li> + lower-roman + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-roman">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr">ltr</a> <li> luminance @@ -3395,7 +3878,7 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-medium">in css-speech-1, for voice-volume</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-min-content">min-content</a> - <li><a href="https://drafts.csswg.org/css-grid-1/#valdef-grid-template-columns-minmax">minmax()</a> + <li><a href="https://www.w3.org/TR/css-grid-1/#valdef-grid-template-columns-minmax">minmax()</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-text-orientation-mixed">mixed</a> <li><a href="https://drafts.csswg.org/css-values-3/#mm">mm</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-stress-moderate">moderate</a> @@ -3409,6 +3892,7 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-neutral">neutral</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-never">never</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-no-clip">no-clip</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-close-quote">no-close-quote</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-no-drop">no-drop</a> <li> none @@ -3448,7 +3932,9 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-pointer-none">in mediaqueries-4, for @media/pointer</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-update-none">in mediaqueries-4, for @media/update</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-bo-none">'none'::as border style</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-nonzero">nonzero</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-open-quote">no-open-quote</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-no-punctuation">no-punctuation</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-no-repeat">no-repeat</a> <li> @@ -3496,8 +3982,14 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-old">old</a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-only">only</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-text-emphasis-open">open</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-open-quote">open-quote</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-oriya">oriya</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">outset</a> + <li> + outset + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-outset">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-emphasis-position-over">over</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-overlay">overlay</a> <li><a href="https://drafts.csswg.org/css-text-decor-3/#valdef-text-decoration-line-overline">overline</a> @@ -3535,11 +4027,14 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-values-3/#px">px</a> <li><a href="https://drafts.csswg.org/css-values-3/#Q">q</a> <li><a href="https://drafts.csswg.org/css-values-3/#rad">rad</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-shape">&lt;radial-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-size">&lt;radial-size></a> <li><a href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-color-gamut-rec2020">rec2020</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-break-before-recto">recto</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-stress-reduced">reduced</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-break-before-region">region</a> <li><a href="https://drafts.csswg.org/css-values-3/#rem">rem</a> + <li><a href="https://drafts.csswg.org/css-values-3/#rem">rem unit</a> <li> repeat <ul> @@ -3550,9 +4045,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat-y">repeat-y</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-direction-reverse">reverse</a> <li><a href="https://drafts.csswg.org/css-cascade-4/#valdef-all-revert">revert</a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-ending-shape">&lt;rg-ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-size">&lt;rg-size></a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">ridge</a> + <li> + ridge + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-ridge">in css2</a> + </ul> <li> right <ul> @@ -3623,7 +4121,6 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-silent">silent</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-formal">simp-chinese-formal</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-informal">simp-chinese-informal</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-size">&lt;size></a> <li><a href="https://drafts.csswg.org/css-contain-1/#valdef-contain-size">size</a> <li><a href="https://drafts.csswg.org/css-break-3/#valdef-box-decoration-break-slice">slice</a> <li> @@ -3635,7 +4132,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-rendering-smooth">smooth</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-soft">soft</a> <li><a href="https://drafts.fxtf.org/compositing-1/#valdef-blend-mode-soft-light">soft-light</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">solid</a> + <li> + solid + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-solid">in css2</a> + </ul> <li> space <ul> @@ -3666,7 +4168,12 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-speak-as-spell-out">in css-counter-styles-3, for @counter-style/speak-as</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-spell-out">in css-speech-1, for speak-as</a> </ul> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">square</a> + <li> + square + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-square">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-s-resize">s-resize</a> <li> srgb @@ -3719,15 +4226,60 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-subtract">subtract</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-sw-resize">sw-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-system-symbolic">symbolic</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table">table</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-caption">table-caption</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-cell">table-cell</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-column">table-column</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-column-group">table-column-group</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-footer-group">table-footer-group</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-header-group">table-header-group</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-row">table-row</a> - <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-row-group">table-row-group</a> + <li> + table + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table">in css-display-3, for display, &lt;display-inside></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table">in css2</a> + </ul> + <li> + table-caption + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-caption">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-caption">in css2</a> + </ul> + <li> + table-cell + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-cell">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell">in css2</a> + </ul> + <li> + table-column + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-column">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column">in css2</a> + </ul> + <li> + table-column-group + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-column-group">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column-group">in css2</a> + </ul> + <li> + table-footer-group + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-footer-group">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-footer-group">in css2</a> + </ul> + <li> + table-header-group + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-header-group">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-header-group">in css2</a> + </ul> + <li> + table-row + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-row">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row">in css2</a> + </ul> + <li> + table-row-group + <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-table-row-group">in css-display-3, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row-group">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-tamil">tamil</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-telugu">telugu</a> <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-cursor-text">text</a> @@ -3760,8 +4312,18 @@ <h3 class="heading settled" data-level="5.5" id="values"><span class="secno">5.5 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-alpha">upper-alpha</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-upper-armenian">upper-armenian</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-text-transform-uppercase">uppercase</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">upper-latin</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">upper-roman</a> + <li> + upper-latin + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-latin">in css2</a> + </ul> + <li> + upper-roman + <ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-roman">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-text-orientation-upright">upright</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-image-url">&lt;url></a> <li> @@ -3924,29 +4486,29 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing">[COMPOSITING] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://www.w3.org/TR/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. 13 January 2015. CR. URL: <a href="https://www.w3.org/TR/compositing-1/">https://www.w3.org/TR/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://www.w3.org/TR/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. 21 March 2024. CR. URL: <a href="https://www.w3.org/TR/compositing-1/">https://www.w3.org/TR/compositing-1/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 26 July 2021. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 11 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> <dt id="biblio-css-box-3">[CSS-BOX-3] - <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-3/"><cite>CSS Box Model Module Level 3</cite></a>. 3 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-box-3/">https://www.w3.org/TR/css-box-3/</a> + <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-3/"><cite>CSS Box Model Module Level 3</cite></a>. 11 April 2024. REC. URL: <a href="https://www.w3.org/TR/css-box-3/">https://www.w3.org/TR/css-box-3/</a> <dt id="biblio-css-cascade-4">[CSS-CASCADE-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-cascade-4/"><cite>CSS Cascading and Inheritance Level 4</cite></a>. 13 January 2022. CR. URL: <a href="https://www.w3.org/TR/css-cascade-4/">https://www.w3.org/TR/css-cascade-4/</a> <dt id="biblio-css-color-3">[CSS-COLOR-3] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://www.w3.org/TR/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. 18 January 2022. REC. URL: <a href="https://www.w3.org/TR/css-color-3/">https://www.w3.org/TR/css-color-3/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 1 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 13 February 2024. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://www.w3.org/TR/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. 13 January 2022. CR. URL: <a href="https://www.w3.org/TR/css-conditional-3/">https://www.w3.org/TR/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://www.w3.org/TR/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. 15 August 2024. CR. URL: <a href="https://www.w3.org/TR/css-conditional-3/">https://www.w3.org/TR/css-conditional-3/</a> <dt id="biblio-css-contain-1">[CSS-CONTAIN-1] - <dd>Tab Atkins Jr.; Florian Rivoal. <a href="https://www.w3.org/TR/css-contain-1/"><cite>CSS Containment Module Level 1</cite></a>. 25 October 2022. REC. URL: <a href="https://www.w3.org/TR/css-contain-1/">https://www.w3.org/TR/css-contain-1/</a> + <dd>Tab Atkins Jr.; Florian Rivoal. <a href="https://www.w3.org/TR/css-contain-1/"><cite>CSS Containment Module Level 1</cite></a>. 25 June 2024. REC. URL: <a href="https://www.w3.org/TR/css-contain-1/">https://www.w3.org/TR/css-contain-1/</a> <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://www.w3.org/TR/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. 17 September 2022. WD. URL: <a href="https://www.w3.org/TR/css-contain-2/">https://www.w3.org/TR/css-contain-2/</a> <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-counter-styles-3/"><cite>CSS Counter Styles Level 3</cite></a>. 27 July 2021. CR. URL: <a href="https://www.w3.org/TR/css-counter-styles-3/">https://www.w3.org/TR/css-counter-styles-3/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 18 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 30 March 2023. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> <dt id="biblio-css-easing-1">[CSS-EASING-1] - <dd>Brian Birtles; et al. <a href="https://www.w3.org/TR/css-easing-1/"><cite>CSS Easing Functions Level 1</cite></a>. 1 April 2021. CR. URL: <a href="https://www.w3.org/TR/css-easing-1/">https://www.w3.org/TR/css-easing-1/</a> + <dd>Brian Birtles; Dean Jackson; Matt Rakow. <a href="https://www.w3.org/TR/css-easing-1/"><cite>CSS Easing Functions Level 1</cite></a>. 13 February 2023. CR. URL: <a href="https://www.w3.org/TR/css-easing-1/">https://www.w3.org/TR/css-easing-1/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://www.w3.org/TR/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. 19 November 2018. CR. URL: <a href="https://www.w3.org/TR/css-flexbox-1/">https://www.w3.org/TR/css-flexbox-1/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] @@ -3956,11 +4518,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://www.w3.org/TR/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. 18 December 2020. CR. URL: <a href="https://www.w3.org/TR/css-grid-2/">https://www.w3.org/TR/css-grid-2/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 17 December 2020. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 18 December 2023. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. 13 April 2017. WD. URL: <a href="https://www.w3.org/TR/css-images-4/">https://www.w3.org/TR/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. 17 February 2023. WD. URL: <a href="https://www.w3.org/TR/css-images-4/">https://www.w3.org/TR/css-images-4/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] - <dd>Florian Rivoal; Rachel Andrew. <a href="https://www.w3.org/TR/css-multicol-1/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. 12 October 2021. CR. URL: <a href="https://www.w3.org/TR/css-multicol-1/">https://www.w3.org/TR/css-multicol-1/</a> + <dd>Florian Rivoal; Rachel Andrew. <a href="https://www.w3.org/TR/css-multicol-1/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. 16 May 2024. CR. URL: <a href="https://www.w3.org/TR/css-multicol-1/">https://www.w3.org/TR/css-multicol-1/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. 17 December 2021. WD. URL: <a href="https://www.w3.org/TR/css-sizing-3/">https://www.w3.org/TR/css-sizing-3/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] @@ -3976,7 +4538,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-ui-4">[CSS-UI-4] <dd>Florian Rivoal. <a href="https://www.w3.org/TR/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. 16 March 2021. WD. URL: <a href="https://www.w3.org/TR/css-ui-4/">https://www.w3.org/TR/css-ui-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 1 December 2022. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 22 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> <dt id="biblio-css-variables-1">[CSS-VARIABLES-1] <dd>Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-variables-1/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. 16 June 2022. CR. URL: <a href="https://www.w3.org/TR/css-variables-1/">https://www.w3.org/TR/css-variables-1/</a> <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] @@ -3986,7 +4548,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://www.w3.org/TR/CSS21/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. 7 June 2011. REC. URL: <a href="https://www.w3.org/TR/CSS21/">https://www.w3.org/TR/CSS21/</a> <dt id="biblio-css3-mediaqueries">[CSS3-MEDIAQUERIES] - <dd>Florian Rivoal. <a href="https://www.w3.org/TR/mediaqueries-3/"><cite>Media Queries Level 3</cite></a>. 5 April 2022. REC. URL: <a href="https://www.w3.org/TR/mediaqueries-3/">https://www.w3.org/TR/mediaqueries-3/</a> + <dd>Florian Rivoal. <a href="https://www.w3.org/TR/mediaqueries-3/"><cite>Media Queries Level 3</cite></a>. 21 May 2024. REC. URL: <a href="https://www.w3.org/TR/mediaqueries-3/">https://www.w3.org/TR/mediaqueries-3/</a> <dt id="biblio-css3-namespace">[CSS3-NAMESPACE] <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-namespaces-3/"><cite>CSS Namespaces Module Level 3</cite></a>. 20 March 2014. REC. URL: <a href="https://www.w3.org/TR/css-namespaces-3/">https://www.w3.org/TR/css-namespaces-3/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -3999,15 +4561,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-align-3">[CSS-ALIGN-3] - <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-align-3/"><cite>CSS Box Alignment Module Level 3</cite></a>. 24 December 2021. WD. URL: <a href="https://www.w3.org/TR/css-align-3/">https://www.w3.org/TR/css-align-3/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-align-3/"><cite>CSS Box Alignment Module Level 3</cite></a>. 17 February 2023. WD. URL: <a href="https://www.w3.org/TR/css-align-3/">https://www.w3.org/TR/css-align-3/</a> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://www.w3.org/TR/css-animations-1/"><cite>CSS Animations Level 1</cite></a>. 11 October 2018. WD. URL: <a href="https://www.w3.org/TR/css-animations-1/">https://www.w3.org/TR/css-animations-1/</a> + <dd>David Baron; et al. <a href="https://www.w3.org/TR/css-animations-1/"><cite>CSS Animations Level 1</cite></a>. 2 March 2023. WD. URL: <a href="https://www.w3.org/TR/css-animations-1/">https://www.w3.org/TR/css-animations-1/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://www.w3.org/TR/css-break-3/"><cite>CSS Fragmentation Module Level 3</cite></a>. 4 December 2018. CR. URL: <a href="https://www.w3.org/TR/css-break-3/">https://www.w3.org/TR/css-break-3/</a> <dt id="biblio-css-cascade-3">[CSS-CASCADE-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. 11 February 2021. REC. URL: <a href="https://www.w3.org/TR/css-cascade-3/">https://www.w3.org/TR/css-cascade-3/</a> <dt id="biblio-css-font-loading-3">[CSS-FONT-LOADING-3] - <dd>Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-font-loading-3/"><cite>CSS Font Loading Module Level 3</cite></a>. 22 May 2014. WD. URL: <a href="https://www.w3.org/TR/css-font-loading-3/">https://www.w3.org/TR/css-font-loading-3/</a> + <dd>Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-font-loading-3/"><cite>CSS Font Loading Module Level 3</cite></a>. 6 April 2023. WD. URL: <a href="https://www.w3.org/TR/css-font-loading-3/">https://www.w3.org/TR/css-font-loading-3/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. 5 August 2021. CR. URL: <a href="https://www.w3.org/TR/css-masking-1/">https://www.w3.org/TR/css-masking-1/</a> <dt id="biblio-css-scroll-snap-1">[CSS-SCROLL-SNAP-1] @@ -4015,9 +4577,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://www.w3.org/TR/css-shapes-1/"><cite>CSS Shapes Module Level 1</cite></a>. 15 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-shapes-1/">https://www.w3.org/TR/css-shapes-1/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://www.w3.org/TR/css-speech-1/"><cite>CSS Speech Module</cite></a>. 10 March 2020. CR. URL: <a href="https://www.w3.org/TR/css-speech-1/">https://www.w3.org/TR/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://www.w3.org/TR/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. 14 February 2023. CR. URL: <a href="https://www.w3.org/TR/css-speech-1/">https://www.w3.org/TR/css-speech-1/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] - <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://www.w3.org/TR/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. 27 January 2023. CR. URL: <a href="https://www.w3.org/TR/css-text-3/">https://www.w3.org/TR/css-text-3/</a> + <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://www.w3.org/TR/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. 3 September 2023. CR. URL: <a href="https://www.w3.org/TR/css-text-3/">https://www.w3.org/TR/css-text-3/</a> <dt id="biblio-css-text-decor-3">[CSS-TEXT-DECOR-3] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. 5 May 2022. CR. URL: <a href="https://www.w3.org/TR/css-text-decor-3/">https://www.w3.org/TR/css-text-decor-3/</a> <dt id="biblio-css-transitions-1">[CSS-TRANSITIONS-1] @@ -4654,6 +5216,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "#rough-interoperability": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css-2020","spec":"css-2020","status":"local","text":"rough interoperability","type":"dfn","url":"#rough-interoperability"}, "#unstable": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css-2020","spec":"css-2020","status":"local","text":"unstable","type":"dfn","url":"#unstable"}, "#vendor-prefix": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css-2020","spec":"css-2020","status":"local","text":"prefixed","type":"dfn","url":"#vendor-prefix"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://www.w3.org/TR/css-color-4/#propdef-opacity": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"opacity","type":"property","url":"https://www.w3.org/TR/css-color-4/#propdef-opacity"}, "https://www.w3.org/TR/css-conditional-3/#at-ruledef-media": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"snapshot","text":"@media","type":"at-rule","url":"https://www.w3.org/TR/css-conditional-3/#at-ruledef-media"}, "https://www.w3.org/TR/css-conditional-3/#at-ruledef-supports": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"snapshot","text":"@supports","type":"at-rule","url":"https://www.w3.org/TR/css-conditional-3/#at-ruledef-supports"}, diff --git a/tests/github/w3c/csswg-drafts/css-align-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-align-3/Overview.console.txt index 72a9326d7a..b4097c9c4a 100644 --- a/tests/github/w3c/csswg-drafts/css-align-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-align-3/Overview.console.txt @@ -21,40 +21,12 @@ LINE 729: Image doesn't exist, so I couldn't determine its width and height: 'im LINE 744: Image doesn't exist, so I couldn't determine its width and height: 'images/space-stretch.svg' LINE 1127: Image doesn't exist, so I couldn't determine its width and height: 'images/scroll-align-padding.jpg' LINE 1148: Image doesn't exist, so I couldn't determine its width and height: 'images/scroll-align-overflow.jpg' -LINE ~102: No 'property' refs found for 'vertical-align' with spec 'css2'. -'vertical-align' -LINE ~666: No 'property' refs found for 'vertical-align' with spec 'css2'. -'vertical-align' -LINE ~736: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~736: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~946: No 'property' refs found for 'vertical-align' with spec 'css2'. -'vertical-align' -LINE ~1288: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~1288: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1288: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~1288: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~2006: Multiple possible 'border-spacing' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-spacing -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-spacing -spec:css22; type:property; text:border-spacing -'border-spacing' LINE 2189: No 'dfn' refs found for 'first available font' with spec 'css-fonts-3'. <a bs-line-number="2189" data-link-type="dfn" data-lt="first available font">first available font</a> LINE 2205: No 'dfn' refs found for 'first available font' with spec 'css-fonts-3'. <a bs-line-number="2205" data-link-type="dfn" data-lt="first available font">first available font</a> -LINE ~2280: No 'property' refs found for 'vertical-align' with spec 'css2'. -'vertical-align' LINE 2309: No 'dfn' refs found for 'first available font' with spec 'css-fonts-3'. <a bs-line-number="2309" data-link-type="dfn" data-lt="first available font">first available font</a> -LINE 2364: No 'dfn' refs found for 'line box' with spec 'css2'. -<a bs-line-number="2364" data-link-type="dfn" data-lt="line box">line box</a> LINE ~1346: Couldn't find section '#visudet' in spec 'css2': [[CSS2#visudet]] LINE ~2334: Couldn't find section '/#abs-non-replaced-width' in spec 'css2': diff --git a/tests/github/w3c/csswg-drafts/css-align-3/Overview.html b/tests/github/w3c/csswg-drafts/css-align-3/Overview.html index 3c0826e2cb..3ddf3c9bdd 100644 --- a/tests/github/w3c/csswg-drafts/css-align-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-align-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Box Alignment Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-align-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -999,7 +998,7 @@ <h1 class="p-name no-ref" id="title">CSS Box Alignment Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1021,7 +1020,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-align] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-align%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1166,7 +1165,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno">1.1. </span><span class="content"> Module Interactions</span><a class="self-link" href="#placement"></a></h3> <p>This module adds some new alignment capabilities to the block layout model described in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <a href="https://www.w3.org/TR/CSS2/visuren.html">chapters 9</a> and <a href="https://www.w3.org/TR/CSS2/visudet.html">10</a> and defines the interaction of these properties - with the alignment of table cell content using <a class="property css" data-link-type="property">vertical-align</a>, + with the alignment of table cell content using <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" id="ref-for-propdef-vertical-align">vertical-align</a>, as defined in <span title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</span> <a href="https://www.w3.org/TR/CSS2/tables.html#height-layout">chapter 17</a>.</p> <p>The interaction of these properties with Grid Layout <a data-link-type="biblio" href="#biblio-css-grid-1" title="CSS Grid Layout Module Level 1">[CSS-GRID-1]</a> and Flexible Box Layout <a data-link-type="biblio" href="#biblio-css-flexbox-1" title="CSS Flexible Box Layout Module Level 1">[CSS-FLEXBOX-1]</a> is defined in their respective modules. @@ -1512,7 +1511,7 @@ <h3 class="heading settled" data-level="4.2" id="baseline-values"><span class="s <p class="note" role="note"><span class="marker">Note:</span> Because they are equivalent, and <a class="css" data-link-type="maybe" href="#valdef-justify-self-baseline" id="ref-for-valdef-justify-self-baseline①">baseline</a> is shorter, the CSSOM serializes <a class="css" data-link-type="maybe" href="#valdef-justify-self-first-baseline" id="ref-for-valdef-justify-self-first-baseline④">first baseline</a> as <span class="css" id="ref-for-valdef-justify-self-baseline②">baseline</span>. See <a href="https://drafts.csswg.org/cssom-1/#serializing-css-values"><cite>CSSOM</cite> § 6.7.2 Serializing CSS Values</a>.</p> - <p class="note" role="note"><span class="marker">Note:</span> For the somewhat-related <a class="property css" data-link-type="property">vertical-align</a> property, + <p class="note" role="note"><span class="marker">Note:</span> For the somewhat-related <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" id="ref-for-propdef-vertical-align①">vertical-align</a> property, due to inconsistent design decisions in CSS2.1, <a class="css" data-link-type="maybe" href="#valdef-justify-self-baseline" id="ref-for-valdef-justify-self-baseline③">baseline</a> is not equivalent to <a class="css" data-link-type="maybe" href="#valdef-justify-self-first-baseline" id="ref-for-valdef-justify-self-first-baseline⑤">first baseline</a> as an inline-level box’s <a data-link-type="dfn" href="#baseline-alignment-preference" id="ref-for-baseline-alignment-preference">baseline alignment preference</a> depends on <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-3/#propdef-display" id="ref-for-propdef-display">display</a>. (E.g., <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-block" id="ref-for-valdef-display-inline-block">inline-block</a> uses its last baseline by default, while <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-table" id="ref-for-valdef-display-inline-table">inline-table</a> uses its first baseline by default.)</p> @@ -1556,7 +1555,7 @@ <h3 class="heading settled" data-level="4.3" id="distribution-values"><span clas <dd> If the combined size of the <a data-link-type="dfn" href="#alignment-subject" id="ref-for-alignment-subject③⑧">alignment subjects</a> is less than the size of the <a data-link-type="dfn" href="#alignment-container" id="ref-for-alignment-container②①">alignment container</a>, any <span class="css">auto</span>-sized <span id="ref-for-alignment-subject③⑨">alignment subjects</span> have their size increased equally (not proportionally), - while still respecting the constraints imposed by <a class="property css" data-link-type="property">max-height</a>/<span class="property">max-width</span> (or equivalent functionality), + while still respecting the constraints imposed by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a> (or equivalent functionality), so that the combined size exactly fills the <span id="ref-for-alignment-container②②">alignment container</span>. <figure> <img alt="For example, given three items, all excess space is split into thirds and distributed: one third to each item." src="images/space-stretch.svg"> </figure> <p>The default <a data-link-type="dfn" href="#fallback-alignment" id="ref-for-fallback-alignment①①">fallback alignment</a> for this value is <a class="css" data-link-type="maybe" href="#valdef-self-position-flex-start" id="ref-for-valdef-self-position-flex-start③">flex-start</a>. <span class="note">(For layout modes other than flex layout, <a class="css" data-link-type="maybe" href="#valdef-self-position-flex-start" id="ref-for-valdef-self-position-flex-start④">flex-start</a> is identical to <a class="css" data-link-type="maybe" href="#valdef-self-position-start" id="ref-for-valdef-self-position-start②①">start</a>.)</span></p> @@ -1727,7 +1726,7 @@ <h4 class="heading settled" data-level="5.1.1" id="distribution-block"><span cla <th><a class="css" data-link-type="maybe" href="#valdef-justify-content-normal" id="ref-for-valdef-justify-content-normal">normal</a> Behavior <td> All values other than <a class="css" data-link-type="maybe" href="#valdef-justify-content-normal" id="ref-for-valdef-justify-content-normal①">normal</a> force the block container to <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context" id="ref-for-establish-an-independent-formatting-context">establish an independent formatting context</a>. - <p>For table cells, the behavior of <a class="css" data-link-type="propdesc" href="#propdef-align-content" id="ref-for-propdef-align-content①⓪">align-content: normal</a> depends on the computed value of <a class="property css" data-link-type="property">vertical-align</a>: <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-top" id="ref-for-valdef-baseline-shift-top">top</a> makes it behave as <a class="css" data-link-type="maybe" href="#valdef-self-position-start" id="ref-for-valdef-self-position-start②③">start</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-bottom" id="ref-for-valdef-baseline-shift-bottom">bottom</a> makes it behave as <a class="css" data-link-type="maybe" href="#valdef-self-position-end" id="ref-for-valdef-self-position-end①③">end</a>; + <p>For table cells, the behavior of <a class="css" data-link-type="propdesc" href="#propdef-align-content" id="ref-for-propdef-align-content①⓪">align-content: normal</a> depends on the computed value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" id="ref-for-propdef-vertical-align②">vertical-align</a>: <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-top" id="ref-for-valdef-baseline-shift-top">top</a> makes it behave as <a class="css" data-link-type="maybe" href="#valdef-self-position-start" id="ref-for-valdef-self-position-start②③">start</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-bottom" id="ref-for-valdef-baseline-shift-bottom">bottom</a> makes it behave as <a class="css" data-link-type="maybe" href="#valdef-self-position-end" id="ref-for-valdef-self-position-end①③">end</a>; otherwise <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-alignment-baseline-middle" id="ref-for-valdef-alignment-baseline-middle">middle</a> makes it behave as <a class="css" data-link-type="maybe" href="#valdef-self-position-center" id="ref-for-valdef-self-position-center①">center</a>, and all other values make it behave as <a class="css" data-link-type="maybe" href="#valdef-justify-self-baseline" id="ref-for-valdef-justify-self-baseline④">baseline</a>. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a></p> <p><a class="css" data-link-type="maybe" href="#valdef-justify-content-normal" id="ref-for-valdef-justify-content-normal②">normal</a> otherwise behaves as <a class="css" data-link-type="maybe" href="#valdef-self-position-start" id="ref-for-valdef-self-position-start②④">start</a>.</p> @@ -1854,7 +1853,7 @@ <h3 class="heading settled" data-level="5.3" id="overflow-scroll-position"><span <p>When the <a data-link-type="dfn" href="#content-distribution-properties" id="ref-for-content-distribution-properties②">content-distribution properties</a> are set on a <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scroll-container" id="ref-for-scroll-container①">scroll container</a> with an overflowing <a data-link-type="dfn" href="#alignment-subject" id="ref-for-alignment-subject⑤①">alignment subject</a>, rather than shifting the layout positions of its content, - they instead change its <a data-link-type="dfn" href="https://www.w3.org/TR/css-overflow-3/#initial-scroll-position" id="ref-for-initial-scroll-position">initial scroll position</a> so that the initially-visible content + they instead change its <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#initial-scroll-position" id="ref-for-initial-scroll-position">initial scroll position</a> so that the initially-visible content of the <span id="ref-for-scroll-container②">scroll container</span> satisfies the <a href="#alignment-values">expected alignment</a> of the <span id="ref-for-alignment-subject⑤②">alignment subject</span> and <a data-link-type="dfn" href="#alignment-container" id="ref-for-alignment-container③③">alignment container</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> The presence of scrollbars can change the size of the <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scroll-container" id="ref-for-scroll-container③">scroll container’s</a> content box, and thus the size of the <a data-link-type="dfn" href="#alignment-container" id="ref-for-alignment-container③④">alignment container</a> and/or <a data-link-type="dfn" href="#alignment-subject" id="ref-for-alignment-subject⑤③">alignment subject</a>.</p> @@ -2005,7 +2004,7 @@ <h3 class="heading settled" data-level="6.1" id="justify-self-property"><span cl is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> and neither of its margins (in the appropriate axis) are <span class="css">auto</span>, sets the box’s used size to the length necessary to make its outer size as close to filling the <a data-link-type="dfn" href="#alignment-container" id="ref-for-alignment-container③⑧">alignment container</a> as possible -while still respecting the constraints imposed by <a class="property css" data-link-type="property">min-height</a>/<span class="property">min-width</span>/<span class="property">max-height</span>/<span class="property">max-width</span>.</p> +while still respecting the constraints imposed by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width①">max-width</a>.</p> <p>Unless otherwise specified, this value falls back to <a class="css" data-link-type="maybe" href="#valdef-self-position-flex-start" id="ref-for-valdef-self-position-flex-start⑦">flex-start</a> generally, and to <a class="css" data-link-type="maybe" href="#valdef-self-position-self-start" id="ref-for-valdef-self-position-self-start⑥">self-start</a> or <a class="css" data-link-type="maybe" href="#valdef-self-position-self-end" id="ref-for-valdef-self-position-self-end④">self-end</a> if the box has also specified <a data-link-type="dfn" href="#first-baseline-set" id="ref-for-first-baseline-set①">first baseline</a> or <a data-link-type="dfn" href="#last-baseline-set" id="ref-for-last-baseline-set①">last baseline</a> <a data-link-type="dfn" href="#baseline-content-alignment" id="ref-for-baseline-content-alignment①⓪">baseline content-alignment</a> (respectively) in the same axis.</p> @@ -2630,7 +2629,7 @@ <h3 class="heading settled" data-level="8.1" id="column-row-gap"><span class="se </dl> <p class="note" role="note"><span class="marker">Note:</span> Table boxes do not use the <a class="property css" data-link-type="property" href="#propdef-gap" id="ref-for-propdef-gap①">gap</a> properties to specify separation between their cells. - Instead, they use the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> property, + Instead, they use the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> property, which has slightly different functionality: it inherits, and it also specifies the additional spacing between the outermost cells @@ -2799,7 +2798,7 @@ <h3 class="heading settled" data-level="9.1" id="baseline-export"><span class="s To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-local-lt="synthesize|synthesized" data-lt="synthesize baseline|synthesized baseline" id="synthesize-baseline">synthesize baselines</dfn> from a rectangle (or two parallel lines), synthesize the alphabetic baseline from the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-under" id="ref-for-line-under">line-under</a> line, and the central baseline by averaging the positions of the two edges or lines. - See <a href="https://drafts.csswg.org/css-inline-3/#baseline-synthesis"><cite>CSS Inline Layout 3</cite> §  Appendix A: Synthesizing Alignment Metrics</a> for rules on synthesizing additional baselines.</p> + See <a href="https://drafts.csswg.org/css-inline-3/#baseline-synthesis"><cite>CSS Inline Layout 3</cite> § A Synthesizing Alignment Metrics</a> for rules on synthesizing additional baselines.</p> <p class="note" role="note"><span class="marker">Note:</span> The edges used to <a data-link-type="dfn" href="#synthesize-baseline" id="ref-for-synthesize-baseline②">synthesize</a> baselines from a box depend on their <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#formatting-context" id="ref-for-formatting-context①">formatting context</a>: inline-level boxes <span id="ref-for-synthesize-baseline③">synthesize</span> from their margin edges <a data-link-type="biblio" href="#biblio-css-inline-3" title="CSS Inline Layout Module Level 3">[CSS-INLINE-3]</a>, @@ -2853,7 +2852,7 @@ <h3 class="heading settled" data-level="9.2" id="baseline-terms"><span class="se <p class="note" role="note"><span class="marker">Note:</span> Conceptually, the inline-level boxes in a line box also share a self-alignment context and participate in a baseline-sharing group; - however they only baseline-align in response to the <a class="property css" data-link-type="property">vertical-align</a> property, + however they only baseline-align in response to the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" id="ref-for-propdef-vertical-align③">vertical-align</a> property, not any of the properties defined in this module. See <a data-link-type="biblio" href="#biblio-css-inline-3" title="CSS Inline Layout Module Level 3">[CSS-INLINE-3]</a>.</p> <p>If a box spans multiple <a data-link-type="dfn" href="#shared-alignment-context" id="ref-for-shared-alignment-context①①">shared alignment contexts</a>, @@ -2907,7 +2906,7 @@ <h2 class="heading settled" id="staticpos-rect"><span class="content"> Appendix <dt>Inline Layout <dd> The <a data-link-type="dfn" href="https://drafts.csswg.org/css-position-3/#static-position" id="ref-for-static-position⑨">static positions</a> of an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level-box" id="ref-for-inline-level-box">inline-level box</a> are defined in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> Chapter 10. The <a data-link-type="dfn" href="#static-position-rectangle" id="ref-for-static-position-rectangle⑨">static position rectangle</a> is a zero-thickness rectangle spanning between - the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-over" id="ref-for-line-over①">line-over</a>/<a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-under" id="ref-for-line-under②">line-under</a> sides of the <a data-link-type="dfn">line box</a> that would have contained its “hypothetical box” + the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-over" id="ref-for-line-over①">line-over</a>/<a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-under" id="ref-for-line-under②">line-under</a> sides of the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#line-box" id="ref-for-line-box">line box</a> that would have contained its “hypothetical box” (see <a href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-width">CSS2§10.3.7</a>); and positioned at its <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#inline-start" id="ref-for-inline-start①">inline-start</a> <span id="ref-for-static-position①⓪">static position</span>. <dt>Flex Layout @@ -3308,7 +3307,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-OVERFLOW-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="a3972067">initial scroll position</span> + <li><span class="dfn-paneled" id="1880be96">initial scroll position</span> <li><span class="dfn-paneled" id="86928bde">overflow</span> <li><span class="dfn-paneled" id="86923d07">scroll container</span> <li><span class="dfn-paneled" id="99a64665">scrollable overflow area</span> @@ -3341,11 +3340,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="799c2725">fit-content</span> </ul> - <li> - <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="6882117f">border-spacing</span> - </ul> <li> <a data-link-type="biblio">[CSS-TEXT-3]</a> defines the following terms: <ul> @@ -3394,6 +3388,17 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="fe0abd77">border-spacing</span> + <li><span class="dfn-paneled" id="6cc328ad">line box</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="65e57966">vertical-align</span> + </ul> <li> <a data-link-type="biblio">[SELECTORS-3]</a> defines the following terms: <ul> @@ -3408,7 +3413,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-grid-1">[CSS-GRID-1] @@ -3416,7 +3421,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] @@ -3449,9 +3454,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> - <dt id="biblio-css-tables-3">[CSS-TABLES-3] - <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> </dl> @@ -4002,6 +4005,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "11ee6625": {"dfnID":"11ee6625","dfnText":"available space","external":true,"refSections":[{"refs":[{"id":"ref-for-available"},{"id":"ref-for-available\u2460"},{"id":"ref-for-available\u2461"},{"id":"ref-for-available\u2462"},{"id":"ref-for-available\u2463"},{"id":"ref-for-available\u2464"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"}],"url":"https://drafts.csswg.org/css-sizing-3/#available"}, "1370dad0": {"dfnID":"1370dad0","dfnText":"block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-block-start"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-start"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"},{"id":"ref-for-typedef-length-percentage\u2461"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, +"1880be96": {"dfnID":"1880be96","dfnText":"initial scroll position","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-scroll-position"}],"title":"5.3. \nOverflow and Scroll Positions"}],"url":"https://drafts.csswg.org/css-overflow-3/#initial-scroll-position"}, "1907ed1c": {"dfnID":"1907ed1c","dfnText":"first formatted line","external":true,"refSections":[{"refs":[{"id":"ref-for-first-formatted-line0"}],"title":"9. \nBaseline Alignment Details"}],"url":"https://drafts.csswg.org/selectors-3/#first-formatted-line0"}, "1adf69d9": {"dfnID":"1adf69d9","dfnText":"grid row","external":true,"refSections":[{"refs":[{"id":"ref-for-grid-row"}],"title":"5.1.4. Grid Containers"},{"refs":[{"id":"ref-for-grid-row\u2460"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://drafts.csswg.org/css-grid-2/#grid-row"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"},{"id":"ref-for-flex-container\u2460"}],"title":"2. \nOverview of Alignment Properties"},{"refs":[{"id":"ref-for-flex-container\u2461"},{"id":"ref-for-flex-container\u2462"},{"id":"ref-for-flex-container\u2463"},{"id":"ref-for-flex-container\u2464"},{"id":"ref-for-flex-container\u2465"},{"id":"ref-for-flex-container\u2466"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"},{"refs":[{"id":"ref-for-flex-container\u2467"}],"title":"5.1.3. Flex Containers"},{"refs":[{"id":"ref-for-flex-container\u2468"}],"title":"5.4. \nBaseline Content-Alignment"},{"refs":[{"id":"ref-for-flex-container\u2460\u24ea"},{"id":"ref-for-flex-container\u2460\u2460"}],"title":"6.2.4. Flex Items"},{"refs":[{"id":"ref-for-flex-container\u2460\u2461"},{"id":"ref-for-flex-container\u2460\u2462"},{"id":"ref-for-flex-container\u2460\u2463"},{"id":"ref-for-flex-container\u2460\u2464"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"},{"refs":[{"id":"ref-for-flex-container\u2460\u2465"}],"title":"8.2. \nGap Shorthand: the gap property"},{"refs":[{"id":"ref-for-flex-container\u2460\u2466"}],"title":"9.2. \nBaseline Alignment Grouping"},{"refs":[{"id":"ref-for-flex-container\u2460\u2467"},{"id":"ref-for-flex-container\u2460\u2468"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, @@ -4013,6 +4017,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"},{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"9.1. \nDetermining the Baselines of a Box"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3a74ed0c": {"dfnID":"3a74ed0c","dfnText":"flex-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-flow"}],"title":"5.3. \nOverflow and Scroll Positions"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3f92298d": {"dfnID":"3f92298d","dfnText":"stretch-fit size","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit-size"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-size"}, "4225558e": {"dfnID":"4225558e","dfnText":"inline-table","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline-table"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline-table"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, @@ -4035,9 +4040,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "60bbf126": {"dfnID":"60bbf126","dfnText":"scrollport","external":true,"refSections":[{"refs":[{"id":"ref-for-scrollport"}],"title":"5.3. \nOverflow and Scroll Positions"}],"url":"https://drafts.csswg.org/css-overflow-3/#scrollport"}, "61111288": {"dfnID":"61111288","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-top-auto"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-valdef-top-auto\u2460"},{"id":"ref-for-valdef-top-auto\u2461"},{"id":"ref-for-valdef-top-auto\u2462"},{"id":"ref-for-valdef-top-auto\u2463"}],"title":"6.1.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-valdef-top-auto\u2464"},{"id":"ref-for-valdef-top-auto\u2465"},{"id":"ref-for-valdef-top-auto\u2466"},{"id":"ref-for-valdef-top-auto\u2467"}],"title":"6.2.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-valdef-top-auto\u2468"},{"id":"ref-for-valdef-top-auto\u2460\u24ea"},{"id":"ref-for-valdef-top-auto\u2460\u2460"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"},{"refs":[{"id":"ref-for-valdef-top-auto\u2460\u2461"}],"title":"\nAppendix A: Static Position Terminology"},{"refs":[{"id":"ref-for-valdef-top-auto\u2460\u2462"}],"title":"10. \nChanges"}],"url":"https://drafts.csswg.org/css-position-3/#valdef-top-auto"}, "6256baca": {"dfnID":"6256baca","dfnText":"physical left","external":true,"refSections":[{"refs":[{"id":"ref-for-physical-left"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#physical-left"}, +"65e57966": {"dfnID":"65e57966","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"1.1. \nModule Interactions"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2460"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2461"}],"title":"5.1.1. Block Containers (Including Table Cells)"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2462"}],"title":"9.2. \nBaseline Alignment Grouping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align"}, "66c521a7": {"dfnID":"66c521a7","dfnText":"flex item","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-item"}],"title":"2. \nOverview of Alignment Properties"},{"refs":[{"id":"ref-for-flex-item\u2460"},{"id":"ref-for-flex-item\u2461"},{"id":"ref-for-flex-item\u2462"},{"id":"ref-for-flex-item\u2463"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"},{"refs":[{"id":"ref-for-flex-item\u2464"}],"title":"5.1.3. Flex Containers"},{"refs":[{"id":"ref-for-flex-item\u2465"}],"title":"5.4. \nBaseline Content-Alignment"},{"refs":[{"id":"ref-for-flex-item\u2466"}],"title":"6.1.4. Flex Items"},{"refs":[{"id":"ref-for-flex-item\u2467"},{"id":"ref-for-flex-item\u2468"},{"id":"ref-for-flex-item\u2460\u24ea"}],"title":"6.2.4. Flex Items"},{"refs":[{"id":"ref-for-flex-item\u2460\u2460"}],"title":"6.4. \nBaseline Self-Alignment"},{"refs":[{"id":"ref-for-flex-item\u2460\u2461"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"},{"refs":[{"id":"ref-for-propdef-height\u2461"}],"title":"6.1.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-propdef-height\u2462"}],"title":"6.2.2. Absolutely-Positioned Boxes"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, -"6882117f": {"dfnID":"6882117f","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, +"6cc328ad": {"dfnID":"6cc328ad","dfnText":"line box","external":true,"refSections":[{"refs":[{"id":"ref-for-line-box"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#line-box"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"},{"refs":[{"id":"ref-for-comb-one\u2460\u24ea"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"},{"refs":[{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"}],"title":"4.3. \nDistributed Alignment: the stretch, space-between, space-around, and space-evenly keywords"},{"refs":[{"id":"ref-for-comb-one\u2460\u2463"}],"title":"4.4. \nOverflow Alignment: the safe and unsafe keywords and scroll safety limits"},{"refs":[{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"}],"title":"5.1. \nThe justify-content and align-content Properties"},{"refs":[{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"},{"id":"ref-for-comb-one\u2461\u2465"},{"id":"ref-for-comb-one\u2461\u2466"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"},{"refs":[{"id":"ref-for-comb-one\u2461\u2467"},{"id":"ref-for-comb-one\u2461\u2468"},{"id":"ref-for-comb-one\u2462\u24ea"},{"id":"ref-for-comb-one\u2462\u2460"}],"title":"6.2. \nBlock-Axis (or Cross-Axis) Alignment: the align-self property"},{"refs":[{"id":"ref-for-comb-one\u2462\u2461"},{"id":"ref-for-comb-one\u2462\u2462"},{"id":"ref-for-comb-one\u2462\u2463"},{"id":"ref-for-comb-one\u2462\u2464"},{"id":"ref-for-comb-one\u2462\u2465"},{"id":"ref-for-comb-one\u2462\u2466"},{"id":"ref-for-comb-one\u2462\u2467"},{"id":"ref-for-comb-one\u2462\u2468"},{"id":"ref-for-comb-one\u2463\u24ea"}],"title":"7.1. \nInline-Axis (or Main-Axis) Alignment: the justify-items property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2460"},{"id":"ref-for-comb-one\u2463\u2461"},{"id":"ref-for-comb-one\u2463\u2462"}],"title":"7.2. \nBlock-Axis (or Cross-Axis) Alignment: the align-items property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2463"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "73a16e8f": {"dfnID":"73a16e8f","dfnText":"flex","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex"}],"title":"5.1.3. Flex Containers"},{"refs":[{"id":"ref-for-propdef-flex\u2460"}],"title":"6.1.4. Flex Items"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex"}, "73a98e20": {"dfnID":"73a98e20","dfnText":"flex layout","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-layout"}],"title":"10. \nChanges"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-layout"}, @@ -4061,9 +4067,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9f3d4f17": {"dfnID":"9f3d4f17","dfnText":"block container","external":true,"refSections":[{"refs":[{"id":"ref-for-block-container"},{"id":"ref-for-block-container\u2460"}],"title":"2. \nOverview of Alignment Properties"},{"refs":[{"id":"ref-for-block-container\u2461"},{"id":"ref-for-block-container\u2462"}],"title":"5.1.1. Block Containers (Including Table Cells)"},{"refs":[{"id":"ref-for-block-container\u2463"}],"title":"9.1. \nDetermining the Baselines of a Box"}],"url":"https://drafts.csswg.org/css-display-4/#block-container"}, "a27e1637": {"dfnID":"a27e1637","dfnText":"grid layout","external":true,"refSections":[{"refs":[{"id":"ref-for-grid-layout"}],"title":"10. \nChanges"}],"url":"https://drafts.csswg.org/css-grid-2/#grid-layout"}, -"a3972067": {"dfnID":"a3972067","dfnText":"initial scroll position","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-scroll-position"}],"title":"5.3. \nOverflow and Scroll Positions"}],"url":"https://www.w3.org/TR/css-overflow-3/#initial-scroll-position"}, "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"6.1.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-propdef-bottom\u2460"}],"title":"6.2.2. Absolutely-Positioned Boxes"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"},{"id":"ref-for-writing-mode\u2460"},{"id":"ref-for-writing-mode\u2461"}],"title":"3. \nAlignment Terminology"},{"refs":[{"id":"ref-for-writing-mode\u2462"},{"id":"ref-for-writing-mode\u2463"},{"id":"ref-for-writing-mode\u2464"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"},{"refs":[{"id":"ref-for-writing-mode\u2465"}],"title":"5.1. \nThe justify-content and align-content Properties"},{"refs":[{"id":"ref-for-writing-mode\u2466"},{"id":"ref-for-writing-mode\u2467"}],"title":"6.1.1. Block-Level Boxes"},{"refs":[{"id":"ref-for-writing-mode\u2468"},{"id":"ref-for-writing-mode\u2460\u24ea"}],"title":"6.1.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-writing-mode\u2460\u2460"},{"id":"ref-for-writing-mode\u2460\u2461"}],"title":"6.1.5. Grid Items"},{"refs":[{"id":"ref-for-writing-mode\u2460\u2462"},{"id":"ref-for-writing-mode\u2460\u2463"}],"title":"6.2.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-writing-mode\u2460\u2464"},{"id":"ref-for-writing-mode\u2460\u2465"}],"title":"6.2.4. Flex Items"},{"refs":[{"id":"ref-for-writing-mode\u2460\u2466"},{"id":"ref-for-writing-mode\u2460\u2467"}],"title":"6.2.5. Grid Items"},{"refs":[{"id":"ref-for-writing-mode\u2460\u2468"}],"title":"9. \nBaseline Alignment Details"},{"refs":[{"id":"ref-for-writing-mode\u2461\u24ea"},{"id":"ref-for-writing-mode\u2461\u2460"},{"id":"ref-for-writing-mode\u2461\u2461"},{"id":"ref-for-writing-mode\u2461\u2462"}],"title":"9.1. \nDetermining the Baselines of a Box"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"4.3. \nDistributed Alignment: the stretch, space-between, space-around, and space-evenly keywords"},{"refs":[{"id":"ref-for-propdef-max-width\u2460"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a76cd631": {"dfnID":"a76cd631","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-baseline-shift-bottom"}],"title":"5.1.1. Block Containers (Including Table Cells)"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-bottom"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"6.1.5. Grid Items"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"6.2.5. Grid Items"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "alignment-baseline": {"dfnID":"alignment-baseline","dfnText":"alignment baseline","external":false,"refSections":[{"refs":[{"id":"ref-for-alignment-baseline"},{"id":"ref-for-alignment-baseline\u2460"},{"id":"ref-for-alignment-baseline\u2461"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"},{"refs":[{"id":"ref-for-alignment-baseline\u2462"}],"title":"5.4. \nBaseline Content-Alignment"},{"refs":[{"id":"ref-for-alignment-baseline\u2463"}],"title":"6.4. \nBaseline Self-Alignment"},{"refs":[{"id":"ref-for-alignment-baseline\u2464"}],"title":"9. \nBaseline Alignment Details"},{"refs":[{"id":"ref-for-alignment-baseline\u2465"},{"id":"ref-for-alignment-baseline\u2466"}],"title":"9.1. \nDetermining the Baselines of a Box"},{"refs":[{"id":"ref-for-alignment-baseline\u2467"},{"id":"ref-for-alignment-baseline\u2468"}],"title":"9.3. \nAligning Boxes by Baseline"},{"refs":[{"id":"ref-for-alignment-baseline\u2460\u24ea"}],"title":"10. \nChanges"}],"url":"#alignment-baseline"}, @@ -4105,6 +4111,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e33664cd": {"dfnID":"e33664cd","dfnText":"inline-block","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline-block"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline-block"}, "e3ccce60": {"dfnID":"e3ccce60","dfnText":"grid area","external":true,"refSections":[{"refs":[{"id":"ref-for-grid-area"}],"title":"6.1.5. Grid Items"},{"refs":[{"id":"ref-for-grid-area\u2460"}],"title":"6.2.5. Grid Items"},{"refs":[{"id":"ref-for-grid-area\u2461"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-grid-2/#grid-area"}, "e453a13a": {"dfnID":"e453a13a","dfnText":"alignment-baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-alignment-baseline"}],"title":"9.1. \nDetermining the Baselines of a Box"},{"refs":[{"id":"ref-for-propdef-alignment-baseline\u2460"}],"title":"9.3. \nAligning Boxes by Baseline"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-alignment-baseline"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e72eaaaa": {"dfnID":"e72eaaaa","dfnText":"dominant baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-dominant-baseline"}],"title":"9.3. \nAligning Boxes by Baseline"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#dominant-baseline"}, "e7b3aa1a": {"dfnID":"e7b3aa1a","dfnText":"main axis","external":true,"refSections":[{"refs":[{"id":"ref-for-main-axis"}],"title":"2. \nOverview of Alignment Properties"},{"refs":[{"id":"ref-for-main-axis\u2460"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"},{"refs":[{"id":"ref-for-main-axis\u2461"},{"id":"ref-for-main-axis\u2462"}],"title":"5.1.3. Flex Containers"},{"refs":[{"id":"ref-for-main-axis\u2463"}],"title":"5.4. \nBaseline Content-Alignment"},{"refs":[{"id":"ref-for-main-axis\u2464"},{"id":"ref-for-main-axis\u2465"}],"title":"6.1.4. Flex Items"},{"refs":[{"id":"ref-for-main-axis\u2466"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://drafts.csswg.org/css-flexbox-1/#main-axis"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"},{"id":"ref-for-containing-block\u2460"},{"id":"ref-for-containing-block\u2461"}],"title":"6.1.1. Block-Level Boxes"},{"refs":[{"id":"ref-for-containing-block\u2462"},{"id":"ref-for-containing-block\u2463"}],"title":"6.1.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-containing-block\u2464"},{"id":"ref-for-containing-block\u2465"},{"id":"ref-for-containing-block\u2466"}],"title":"6.2.2. Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-containing-block\u2467"},{"id":"ref-for-containing-block\u2468"},{"id":"ref-for-containing-block\u2460\u24ea"},{"id":"ref-for-containing-block\u2460\u2460"},{"id":"ref-for-containing-block\u2460\u2461"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"},{"refs":[{"id":"ref-for-containing-block\u2460\u2462"},{"id":"ref-for-containing-block\u2460\u2463"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, @@ -4114,10 +4121,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "f41ab620": {"dfnID":"f41ab620","dfnText":"establish an independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-independent-formatting-context"}],"title":"5.1.1. Block Containers (Including Table Cells)"}],"url":"https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context"}, "f4a5f1c1": {"dfnID":"f4a5f1c1","dfnText":"inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-end"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-end"}, "f616a86d": {"dfnID":"f616a86d","dfnText":"inset properties","external":true,"refSections":[{"refs":[{"id":"ref-for-inset-properties"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-logical-1/#inset-properties"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"4.3. \nDistributed Alignment: the stretch, space-between, space-around, and space-evenly keywords"},{"refs":[{"id":"ref-for-propdef-max-height\u2460"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "f952f01b": {"dfnID":"f952f01b","dfnText":"non-replaced","external":true,"refSections":[{"refs":[{"id":"ref-for-non-replaced"},{"id":"ref-for-non-replaced\u2460"},{"id":"ref-for-non-replaced\u2461"}],"title":"5.4. \nBaseline Content-Alignment"},{"refs":[{"id":"ref-for-non-replaced\u2462"}],"title":"6.1.5. Grid Items"},{"refs":[{"id":"ref-for-non-replaced\u2463"}],"title":"6.2.5. Grid Items"}],"url":"https://drafts.csswg.org/css-display-4/#non-replaced"}, "fa646702": {"dfnID":"fa646702","dfnText":"line-right","external":true,"refSections":[{"refs":[{"id":"ref-for-line-right"}],"title":"4.1. \nPositional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#line-right"}, "fallback-alignment": {"dfnID":"fallback-alignment","dfnText":"fallback alignment","external":false,"refSections":[{"refs":[{"id":"ref-for-fallback-alignment"},{"id":"ref-for-fallback-alignment\u2460"},{"id":"ref-for-fallback-alignment\u2461"},{"id":"ref-for-fallback-alignment\u2462"},{"id":"ref-for-fallback-alignment\u2463"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"},{"refs":[{"id":"ref-for-fallback-alignment\u2464"},{"id":"ref-for-fallback-alignment\u2465"},{"id":"ref-for-fallback-alignment\u2466"},{"id":"ref-for-fallback-alignment\u2467"},{"id":"ref-for-fallback-alignment\u2468"},{"id":"ref-for-fallback-alignment\u2460\u24ea"},{"id":"ref-for-fallback-alignment\u2460\u2460"}],"title":"4.3. \nDistributed Alignment: the stretch, space-between, space-around, and space-evenly keywords"},{"refs":[{"id":"ref-for-fallback-alignment\u2460\u2461"}],"title":"5.1.1. Block Containers (Including Table Cells)"},{"refs":[{"id":"ref-for-fallback-alignment\u2460\u2462"}],"title":"5.1.2. Multicol Containers"},{"refs":[{"id":"ref-for-fallback-alignment\u2460\u2463"},{"id":"ref-for-fallback-alignment\u2460\u2464"}],"title":"5.4. \nBaseline Content-Alignment"},{"refs":[{"id":"ref-for-fallback-alignment\u2460\u2465"}],"title":"6.5. \nEffects on Sizing of Absolutely Positioned Boxes with Static-Position Insets"},{"refs":[{"id":"ref-for-fallback-alignment\u2460\u2466"}],"title":"9.3. \nAligning Boxes by Baseline"},{"refs":[{"id":"ref-for-fallback-alignment\u2460\u2467"}],"title":"10. \nChanges"}],"url":"#fallback-alignment"}, "fd9aa8f7": {"dfnID":"fd9aa8f7","dfnText":"block-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-level-box"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, +"fe0abd77": {"dfnID":"fe0abd77","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"8.1. \nRow and Column Gutters: the row-gap and column-gap properties"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, "ff0f7174": {"dfnID":"ff0f7174","dfnText":"content edge","external":true,"refSections":[{"refs":[{"id":"ref-for-content-edge"},{"id":"ref-for-content-edge\u2460"}],"title":"\nAppendix A: Static Position Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#content-edge"}, "first-baseline-alignment": {"dfnID":"first-baseline-alignment","dfnText":"first-baseline alignment","external":false,"refSections":[{"refs":[{"id":"ref-for-first-baseline-alignment"}],"title":"9.2. \nBaseline Alignment Grouping"}],"url":"#first-baseline-alignment"}, "first-baseline-set": {"dfnID":"first-baseline-set","dfnText":"first baseline set","external":false,"refSections":[{"refs":[{"id":"ref-for-first-baseline-set"}],"title":"4.2. \nBaseline Alignment: the baseline keyword and first/last modifiers"},{"refs":[{"id":"ref-for-first-baseline-set\u2460"}],"title":"6.1. \nInline-Axis (or Main-Axis) Alignment: the justify-self property"}],"url":"#first-baseline-set"}, @@ -4775,6 +4784,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-multicol-1/#multi-column-container": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-multicol","spec":"css-multicol-1","status":"current","text":"multi-column container","type":"dfn","url":"https://drafts.csswg.org/css-multicol-1/#multi-column-container"}, "https://drafts.csswg.org/css-multicol-1/#propdef-column-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-multicol","spec":"css-multicol-1","status":"current","text":"column-width","type":"property","url":"https://drafts.csswg.org/css-multicol-1/#propdef-column-width"}, "https://drafts.csswg.org/css-multicol-1/#valdef-column-width-auto": {"export":true,"for_":["column-width"],"level":"1","normative":true,"shortname":"css-multicol","spec":"css-multicol-1","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-multicol-1/#valdef-column-width-auto"}, +"https://drafts.csswg.org/css-overflow-3/#initial-scroll-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"initial scroll position","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#initial-scroll-position"}, "https://drafts.csswg.org/css-overflow-3/#propdef-overflow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"overflow","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "https://drafts.csswg.org/css-overflow-3/#scroll-container": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scroll container","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scroll-container"}, "https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scrollable overflow area","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region"}, @@ -4794,7 +4804,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-sizing-3/#stretch-fit-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"stretch-fit size","type":"dfn","url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-size"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto": {"export":true,"for_":["width","height","min-width","min-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, "https://drafts.csswg.org/css-sizing-4/#valdef-width-fit-content": {"export":true,"for_":["width","height","inline-size","block-size","min-width","min-height","min-inline-size","min-block-size","max-width","max-height","max-inline-size","max-block-size"],"level":"4","normative":true,"shortname":"css-sizing","spec":"css-sizing-4","status":"current","text":"fit-content","type":"value","url":"https://drafts.csswg.org/css-sizing-4/#valdef-width-fit-content"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-spacing","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, "https://drafts.csswg.org/css-text-3/#propdef-text-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"text-align","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "https://drafts.csswg.org/css-values-4/#comb-all": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"&&","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -4827,7 +4836,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode"}, "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, "https://drafts.csswg.org/selectors-3/#first-formatted-line0": {"export":false,"for_":[],"level":"3","normative":true,"shortname":"selectors","spec":"selectors-3","status":"current","text":"first formatted line","type":"dfn","url":"https://drafts.csswg.org/selectors-3/#first-formatted-line0"}, -"https://www.w3.org/TR/css-overflow-3/#initial-scroll-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"snapshot","text":"initial scroll position","type":"dfn","url":"https://www.w3.org/TR/css-overflow-3/#initial-scroll-position"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-spacing","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"vertical-align","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align"}, +"https://www.w3.org/TR/CSS21/visuren.html#line-box": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"line box","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#line-box"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-animations-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-animations-1/Overview.console.txt index 41e2109988..116656e2c0 100644 --- a/tests/github/w3c/csswg-drafts/css-animations-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-animations-1/Overview.console.txt @@ -220,12 +220,8 @@ LINT: Line 1366's indent contains tabs after spaces. LINE 1:73 of !Issues List metadata: Character reference '&list' didn't end in ;. LINE 1:99 of !Issues List metadata: Character reference '&query' didn't end in ;. LINE 390: Image doesn't exist, so I couldn't determine its width and height: './animation1.png' -LINE ~196: No 'property' refs found for 'display' with spec 'css2'. -'display' LINE 243: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="243" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> -LINE 1093: No 'dfn' refs found for 'readonly flag'. -<a bs-line-number="1093" data-link-spec="cssom" data-link-for="CSSStyleDeclaration" data-link-type="dfn" data-lt="readonly flag">readonly flag</a> LINE 1099: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="1099" data-link-type="dfn" data-lt="context object">context object</a> LINE 1294: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-animations-1/Overview.html b/tests/github/w3c/csswg-drafts/css-animations-1/Overview.html index 27931bb5e4..efc1365b56 100644 --- a/tests/github/w3c/csswg-drafts/css-animations-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-animations-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Animations Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-animations-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1101,7 +1100,7 @@ <h1 class="p-name no-ref" id="title">CSS Animations Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1123,7 +1122,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-animations] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-animations%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1339,10 +1338,10 @@ <h2 class="heading settled" data-level="2" id="animations"><span class="secno">2 (100px, 100px) over five seconds and repeats itself nine times (for a total of ten iterations).</p> </div> - <p>Setting the <a class="property css" data-link-type="property">display</a> property to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-none" id="ref-for-valdef-display-none">none</a> will terminate any running animation applied - to the element and its descendants. If an element has a <span class="property">display</span> of <span class="css" id="ref-for-valdef-display-none①">none</span>, updating <span class="property">display</span> to a value other than <span class="css" id="ref-for-valdef-display-none②">none</span> will start all animations applied to the element + <p>Setting the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display</a> property to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-none" id="ref-for-valdef-display-none">none</a> will terminate any running animation applied + to the element and its descendants. If an element has a <span class="property" id="ref-for-propdef-display①">display</span> of <span class="css" id="ref-for-valdef-display-none①">none</span>, updating <span class="property" id="ref-for-propdef-display②">display</span> to a value other than <span class="css" id="ref-for-valdef-display-none②">none</span> will start all animations applied to the element by the <a class="property css" data-link-type="property" href="#propdef-animation-name" id="ref-for-propdef-animation-name⑦">animation-name</a> property, as well as all animations applied to descendants - with <span class="property">display</span> other than <span class="css" id="ref-for-valdef-display-none③">none</span>.</p> + with <span class="property" id="ref-for-propdef-display③">display</span> other than <span class="css" id="ref-for-valdef-display-none③">none</span>.</p> <p>While authors can use animations to create dynamically changing content, dynamically changing content can lead to seizures in some users. For information on how to avoid content that can lead to seizures, see Guideline 2.3: Seizures: Do not design content @@ -2164,7 +2163,7 @@ <h4 class="heading settled" data-level="5.2.2" id="interface-csskeyframerule-att Must return a <code class="idl"><a data-link-type="idl" href="https://drafts.csswg.org/cssom-1/#cssstyledeclaration" id="ref-for-cssstyledeclaration②">CSSStyleDeclaration</a></code> object for the keyframe rule, with the following properties: <dl> - <dt><a data-link-type="dfn">readonly flag</a> + <dt><a data-link-type="dfn" href="https://drafts.csswg.org/cssom-1/#cssstyledeclaration-readonly-flag" id="ref-for-cssstyledeclaration-readonly-flag">readonly flag</a> <dd>Unset. <dt><a data-link-type="dfn" href="https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations" id="ref-for-cssstyledeclaration-declarations">declarations</a> <dd>The declared declarations in the rule, in <a data-link-type="dfn" href="https://drafts.csswg.org/cssom-1/#concept-declarations-specified-order" id="ref-for-concept-declarations-specified-order">specified @@ -2655,6 +2654,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="34de5360">will-change</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + </ul> <li> <a data-link-type="biblio">[CSSOM-1]</a> defines the following terms: <ul> @@ -2666,6 +2670,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e4ffca7f">declarations</span> <li><span class="dfn-paneled" id="eab73120">owner node</span> <li><span class="dfn-paneled" id="8056dead">parent css rule</span> + <li><span class="dfn-paneled" id="6eabcb67">readonly flag</span> <li><span class="dfn-paneled" id="c475bc01">specified order</span> </ul> <li> @@ -2703,13 +2708,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-easing-1">[CSS-EASING-1] - <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> + <dd>Brian Birtles; Dean Jackson; Matt Rakow. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] - <dd>CSS Shapes Module Level 2 URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -2738,7 +2743,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css3-transitions">[CSS3-TRANSITIONS] @@ -3035,7 +3040,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSKeyframesRule/appendRule" title="The appendRule() method of the CSSKeyframeRule interface appends a CSSKeyFrameRule to the end of the rules.">CSSKeyframesRule/appendRule</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>22+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span> + <span class="firefox yes"><span>Firefox</span><span>21+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>28+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3272,7 +3277,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="animation"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation" title="The animation shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, and animation-play-state.">animation</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation" title="The animation shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, animation-play-state, and animation-timeline.">animation</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>16+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> @@ -3507,6 +3512,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "621c7c7e": {"dfnID":"621c7c7e","dfnText":"<time>","external":true,"refSections":[{"refs":[{"id":"ref-for-time-value"},{"id":"ref-for-time-value\u2460"},{"id":"ref-for-time-value\u2461"},{"id":"ref-for-time-value\u2462"},{"id":"ref-for-time-value\u2463"}],"title":"3.3. \nThe animation-duration property"},{"refs":[{"id":"ref-for-time-value\u2464"},{"id":"ref-for-time-value\u2465"},{"id":"ref-for-time-value\u2466"}],"title":"3.8. \nThe animation-delay property"},{"refs":[{"id":"ref-for-time-value\u2467"},{"id":"ref-for-time-value\u2468"},{"id":"ref-for-time-value\u2460\u24ea"},{"id":"ref-for-time-value\u2460\u2460"}],"title":"3.10. \nThe animation shorthand property"}],"url":"https://drafts.csswg.org/css-values-3/#time-value"}, "65c9f2cf": {"dfnID":"65c9f2cf","dfnText":"<rule-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-rule-list"},{"id":"ref-for-typedef-rule-list\u2460"}],"title":"3. \nKeyframes"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-rule-list"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"3.2. \nThe animation-name property"},{"refs":[{"id":"ref-for-mult-comma\u2460"}],"title":"3.3. \nThe animation-duration property"},{"refs":[{"id":"ref-for-mult-comma\u2461"}],"title":"3.4. \nThe animation-timing-function property"},{"refs":[{"id":"ref-for-mult-comma\u2462"}],"title":"3.5. \nThe animation-iteration-count property"},{"refs":[{"id":"ref-for-mult-comma\u2463"}],"title":"3.6. \nThe animation-direction property"},{"refs":[{"id":"ref-for-mult-comma\u2464"}],"title":"3.7. \nThe animation-play-state property"},{"refs":[{"id":"ref-for-mult-comma\u2465"}],"title":"3.8. \nThe animation-delay property"},{"refs":[{"id":"ref-for-mult-comma\u2466"}],"title":"3.9. \nThe animation-fill-mode property"},{"refs":[{"id":"ref-for-mult-comma\u2467"}],"title":"3.10. \nThe animation shorthand property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, +"6eabcb67": {"dfnID":"6eabcb67","dfnText":"readonly flag","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstyledeclaration-readonly-flag"}],"title":"5.2.2. \nAttributes"}],"url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-readonly-flag"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"3.2. \nThe animation-name property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "762ce945": {"dfnID":"762ce945","dfnText":"GlobalEventHandlers","external":true,"refSections":[{"refs":[{"id":"ref-for-globaleventhandlers"}],"title":"5.4. \nExtensions to the GlobalEventHandlers Interface Mixin"},{"refs":[{"id":"ref-for-globaleventhandlers\u2460"}],"title":"5.4.1. \nIDL Definition"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers"}, "8056dead": {"dfnID":"8056dead","dfnText":"parent css rule","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstyledeclaration-parent-css-rule"}],"title":"5.2.2. \nAttributes"}],"url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-parent-css-rule"}, @@ -3569,6 +3575,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e9189aba": {"dfnID":"e9189aba","dfnText":"event handlers","external":true,"refSections":[{"refs":[{"id":"ref-for-event-handlers"},{"id":"ref-for-event-handlers\u2460"}],"title":"4.3. Event\nhandlers on elements, Document objects, and Window\nobjects"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers"}, "eab73120": {"dfnID":"eab73120","dfnText":"owner node","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstyledeclaration-owner-node"}],"title":"5.2.2. \nAttributes"}],"url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-owner-node"}, "ebaeb088": {"dfnID":"ebaeb088","dfnText":"CSSRule","external":true,"refSections":[{"refs":[{"id":"ref-for-cssrule"}],"title":"5.1. \nThe CSSRule Interface"},{"refs":[{"id":"ref-for-cssrule\u2460"}],"title":"5.1.1. \nIDL Definition"},{"refs":[{"id":"ref-for-cssrule\u2461"}],"title":"5.2.1. \nIDL Definition"},{"refs":[{"id":"ref-for-cssrule\u2462"}],"title":"5.3.1. \nIDL Definition"}],"url":"https://drafts.csswg.org/cssom-1/#cssrule"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"},{"id":"ref-for-propdef-display\u2461"},{"id":"ref-for-propdef-display\u2462"}],"title":"2. \nAnimations"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "eventdef-animationevent-animationcancel": {"dfnID":"eventdef-animationevent-animationcancel","dfnText":"animationcancel","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-animationevent-animationcancel"}],"title":"4.2. \nTypes of AnimationEvent"},{"refs":[{"id":"ref-for-eventdef-animationevent-animationcancel\u2460"}],"title":"4.3. Event\nhandlers on elements, Document objects, and Window\nobjects"}],"url":"#eventdef-animationevent-animationcancel"}, "eventdef-animationevent-animationend": {"dfnID":"eventdef-animationevent-animationend","dfnText":"animationend","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-animationevent-animationend"}],"title":"2. \nAnimations"},{"refs":[{"id":"ref-for-eventdef-animationevent-animationend\u2460"},{"id":"ref-for-eventdef-animationevent-animationend\u2461"}],"title":"4.2. \nTypes of AnimationEvent"},{"refs":[{"id":"ref-for-eventdef-animationevent-animationend\u2462"}],"title":"4.3. Event\nhandlers on elements, Document objects, and Window\nobjects"}],"url":"#eventdef-animationevent-animationend"}, "eventdef-animationevent-animationiteration": {"dfnID":"eventdef-animationevent-animationiteration","dfnText":"animationiteration","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-animationevent-animationiteration"}],"title":"4.2. \nTypes of AnimationEvent"},{"refs":[{"id":"ref-for-eventdef-animationevent-animationiteration\u2460"}],"title":"4.3. Event\nhandlers on elements, Document objects, and Window\nobjects"}],"url":"#eventdef-animationevent-animationiteration"}, @@ -4161,6 +4168,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"declarations","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations"}, "https://drafts.csswg.org/cssom-1/#cssstyledeclaration-owner-node": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"owner node","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-owner-node"}, "https://drafts.csswg.org/cssom-1/#cssstyledeclaration-parent-css-rule": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"parent css rule","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-parent-css-rule"}, +"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-readonly-flag": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"readonly flag","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-readonly-flag"}, "https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-csstext": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"cssText","type":"attribute","url":"https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-csstext"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#html-elements": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"html elements","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#html-elements"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"Window","type":"interface","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, @@ -4177,6 +4185,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-undefined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"undefined","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "https://webidl.spec.whatwg.org/#idl-unsigned-short": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned short","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-animations-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-animations-2/Overview.console.txt index 956b6f6b6c..048df7b8a6 100644 --- a/tests/github/w3c/csswg-drafts/css-animations-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-animations-2/Overview.console.txt @@ -2,3 +2,4 @@ LINE 1:73 of !Issues List metadata: Character reference '&list' didn't end in ;. LINE 1:99 of !Issues List metadata: Character reference '&query' didn't end in ;. LINE ~583: Section autolink [[web-animations#animation-effect-phases-and-states|phases]] attempts to link to unversioned spec name 'web-animations', but that spec is versioned as 'web-animations-1' or 'web-animations-2'. Please choose a versioned spec name. LINE 777: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'valdef-animation-duration-auto' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-animations-2/Overview.html b/tests/github/w3c/csswg-drafts/css-animations-2/Overview.html index 0d3c8b62e5..bbbfca3bd7 100644 --- a/tests/github/w3c/csswg-drafts/css-animations-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-animations-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Animations Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-animations-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1093,7 +1092,7 @@ <h1 class="p-name no-ref" id="title">CSS Animations Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1115,7 +1114,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-animations-2] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-animations-2%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1211,7 +1210,7 @@ <h2 class="heading settled" data-level="2" id="animations"><span class="secno">2 for each property included in the <code class="idl"><a data-link-type="idl" href="https://drafts.csswg.org/web-animations-1/#dom-animationeffect-updatetiming-timing-timing" id="ref-for-dom-animationeffect-updatetiming-timing-timing">timing</a></code> parameter, any subsequent change to a corresponding animation property will not be reflected in that animation.</p> - <p>For example, calling <code>cssAnimation.effect.updateTiming({ duration: 1000 })</code> would cause subsequent changes to <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-duration" id="ref-for-propdef-animation-duration">animation-duration</a> to be ignored + <p>For example, calling <code>cssAnimation.effect.updateTiming({ duration: 1000 })</code> would cause subsequent changes to <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-2/#propdef-animation-duration" id="ref-for-propdef-animation-duration">animation-duration</a> to be ignored whilst changes to <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-delay" id="ref-for-propdef-animation-delay">animation-delay</a> would still be reflected in the <code class="idl"><a data-link-type="idl" href="https://drafts.csswg.org/web-animations-1/#keyframeeffect" id="ref-for-keyframeeffect②">KeyframeEffect</a></code>'s timing.</p> <li data-md> @@ -1322,7 +1321,7 @@ <h2 class="heading settled" data-level="3" id="keyframes"><span class="secno">3. <li data-md> <p>Let <var>default timing function</var> be the timing function at position <var>position</var> of the <a data-link-type="dfn" href="https://drafts.csswg.org/cssom-1/#resolved-value" id="ref-for-resolved-value">resolved value</a> of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function" id="ref-for-propdef-animation-timing-function①">animation-timing-function</a> for <var>element</var>, - repeating the list as necessary as described in <a href="https://drafts.csswg.org/css-animations-1/#animation-name"><cite>CSS Animations 1</cite> § 3.2 The animation-name property</a>.</p> + repeating the list as necessary as described in <a href="https://drafts.csswg.org/css-animations-1/#animation-name"><cite>CSS Animations 1</cite> § 4.1 The animation-name property</a>.</p> <li data-md> <p>Find the last <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-animations-1/#at-ruledef-keyframes" id="ref-for-at-ruledef-keyframes④">@keyframes</a> at-rule in document order with <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-animations-1/#typedef-keyframes-name" id="ref-for-typedef-keyframes-name">&lt;keyframes-name></a> matching <var>name</var>.</p> @@ -1418,8 +1417,8 @@ <h2 class="heading settled" data-level="3" id="keyframes"><span class="secno">3. the behavior for some edge cases. We should verify what current implementations do and possible remove the requirement to iterate in reverse.</p> - <h3 class="heading settled" data-level="3.1" id="animation-duration"><span class="secno">3.1. </span><span class="content">The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-duration" id="ref-for-propdef-animation-duration①">animation-duration</a> property</span><a class="self-link" href="#animation-duration"></a></h3> - <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-duration" id="ref-for-propdef-animation-duration②">animation-duration</a> property specifies the <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#iteration-duration" id="ref-for-iteration-duration">iteration duration</a> of the animation’s associated <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#animation-effect" id="ref-for-animation-effect">animation effect</a>.</p> + <h3 class="heading settled" data-level="3.1" id="animation-duration"><span class="secno">3.1. </span><span class="content">The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-2/#propdef-animation-duration" id="ref-for-propdef-animation-duration①">animation-duration</a> property</span><a class="self-link" href="#animation-duration"></a></h3> + <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-2/#propdef-animation-duration" id="ref-for-propdef-animation-duration②">animation-duration</a> property specifies the <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#iteration-duration" id="ref-for-iteration-duration">iteration duration</a> of the animation’s associated <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#animation-effect" id="ref-for-animation-effect">animation effect</a>.</p> <h3 class="heading settled" data-level="3.2" id="animation-timing-function"><span class="secno">3.2. </span><span class="content">The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function" id="ref-for-propdef-animation-timing-function③">animation-timing-function</a> property</span><a class="self-link" href="#animation-timing-function"></a></h3> <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function" id="ref-for-propdef-animation-timing-function④">animation-timing-function</a> is used to determine the <a data-link-type="dfn" href="https://drafts.csswg.org/css-easing-2/#easing-function" id="ref-for-easing-function">timing function</a> applied to each <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#keyframe" id="ref-for-keyframe④">keyframe</a> as defined in <a href="#keyframes">§ 3 Keyframes</a>.</p> <h3 class="heading settled" data-level="3.3" id="animation-iteration-count"><span class="secno">3.3. </span><span class="content">The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count" id="ref-for-propdef-animation-iteration-count">animation-iteration-count</a> property</span><a class="self-link" href="#animation-iteration-count"></a></h3> @@ -1575,7 +1574,7 @@ <h3 class="heading settled" data-level="3.9" id="animation-timeline"><span class </table> <pre><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-single-animation-timeline">&lt;single-animation-timeline></dfn> = auto | none | <a class="production" data-link-type="type" href="#typedef-timeline-name" id="ref-for-typedef-timeline-name">&lt;timeline-name></a> </pre> - <p>The <a class="property css" data-link-type="property" href="#propdef-animation-timeline" id="ref-for-propdef-animation-timeline②">animation-timeline</a> property is similar to properties like <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name" id="ref-for-propdef-animation-name⑥">animation-name</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-duration" id="ref-for-propdef-animation-duration③">animation-duration</a> in that it can have one or more values, each one + <p>The <a class="property css" data-link-type="property" href="#propdef-animation-timeline" id="ref-for-propdef-animation-timeline②">animation-timeline</a> property is similar to properties like <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name" id="ref-for-propdef-animation-name⑥">animation-name</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-2/#propdef-animation-duration" id="ref-for-propdef-animation-duration③">animation-duration</a> in that it can have one or more values, each one imparting additional behavior to a corresponding <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#animation" id="ref-for-animation①">animation</a> on the element, with the timelines matched up with animations as described <a href="https://drafts.csswg.org/css-animations-1/#animation-name">here</a>.</p> <p>Each value has type <a class="production css" data-link-type="type" href="#typedef-single-animation-timeline" id="ref-for-typedef-single-animation-timeline①">&lt;single-animation-timeline></a>, whose possible values have @@ -1853,6 +1852,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[CSS-ANIMATIONS-2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="06a8cc3f">animation-duration</span> + </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> @@ -1902,7 +1906,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="eda608e1">animation</span> <li><span class="dfn-paneled" id="78be83bb">animation-delay</span> <li><span class="dfn-paneled" id="be0387bc">animation-direction</span> - <li><span class="dfn-paneled" id="5e8da52b">animation-duration</span> <li><span class="dfn-paneled" id="baa76d7b">animation-fill-mode</span> <li><span class="dfn-paneled" id="7ddf964e">animation-iteration-count</span> <li><span class="dfn-paneled" id="d984b6fe">animation-name</span> @@ -1991,16 +1994,18 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-css-animations-2">[CSS-ANIMATIONS-2] + <dd>David Baron; Brian Birtles. <a href="https://drafts.csswg.org/css-animations-2/"><cite>CSS Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-dom">[DOM] @@ -2010,7 +2015,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-web-animations">[WEB-ANIMATIONS] <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/web-animations-1/"><cite>Web Animations</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-1/">https://drafts.csswg.org/web-animations-1/</a> <dt id="biblio-web-animations-2">[WEB-ANIMATIONS-2] - <dd>Web Animations Level 2 URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> + <dd>Brian Birtles; Robert Flack. <a href="https://drafts.csswg.org/web-animations-2/"><cite>Web Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -2125,13 +2130,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="animation-composition"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation-composition" title="The animation-composition CSS property specifies the composite operation to use when multiple animations affect the same property simultaneously.">animation-composition</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 104+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>115+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>112+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>112+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2140,14 +2146,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="animation-timeline"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timeline" title="The animation-timeline CSS property specifies the name of the timeline that defines the progress of the animation.">animation-timeline</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timeline" title="The animation-timeline CSS property specifies the timeline that is used to control the progress of a CSS animation.">animation-timeline</a></p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 97+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>110+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>115+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>115+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2358,6 +2363,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "000c54c5": {"dfnID":"000c54c5","dfnText":"KeyframeEffect","external":true,"refSections":[{"refs":[{"id":"ref-for-keyframeeffect"},{"id":"ref-for-keyframeeffect\u2460"},{"id":"ref-for-keyframeeffect\u2461"},{"id":"ref-for-keyframeeffect\u2462"}],"title":"2. Animations"}],"url":"https://drafts.csswg.org/web-animations-1/#keyframeeffect"}, "022ed06a": {"dfnID":"022ed06a","dfnText":"step-end","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-step-easing-function-step-end"}],"title":"3. Keyframes"}],"url":"https://drafts.csswg.org/css-easing-2/#valdef-step-easing-function-step-end"}, "03570f9e": {"dfnID":"03570f9e","dfnText":"<time>","external":true,"refSections":[{"refs":[{"id":"ref-for-time-value"},{"id":"ref-for-time-value\u2460"}],"title":"3.10. The animation shorthand property"}],"url":"https://drafts.csswg.org/css-values-4/#time-value"}, +"06a8cc3f": {"dfnID":"06a8cc3f","dfnText":"animation-duration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-duration"}],"title":"2. Animations"},{"refs":[{"id":"ref-for-propdef-animation-duration\u2460"},{"id":"ref-for-propdef-animation-duration\u2461"}],"title":"3.1. The animation-duration property"},{"refs":[{"id":"ref-for-propdef-animation-duration\u2462"}],"title":"3.9. The animation-timeline property"}],"url":"https://drafts.csswg.org/css-animations-2/#propdef-animation-duration"}, "1360d6d3": {"dfnID":"1360d6d3","dfnText":"target effect","external":true,"refSections":[{"refs":[{"id":"ref-for-target-effect"}],"title":"2.1. Owning element"},{"refs":[{"id":"ref-for-target-effect\u2460"},{"id":"ref-for-target-effect\u2461"},{"id":"ref-for-target-effect\u2462"},{"id":"ref-for-target-effect\u2463"},{"id":"ref-for-target-effect\u2464"}],"title":"4.1. Event dispatch"},{"refs":[{"id":"ref-for-target-effect\u2465"}],"title":"5.1. The CSSAnimation interface"}],"url":"https://drafts.csswg.org/web-animations-1/#target-effect"}, "14b67d5f": {"dfnID":"14b67d5f","dfnText":"setKeyframes(keyframes)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-keyframeeffect-setkeyframes"}],"title":"2. Animations"}],"url":"https://drafts.csswg.org/web-animations-1/#dom-keyframeeffect-setkeyframes"}, "1f7bca82": {"dfnID":"1f7bca82","dfnText":"effect","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-animation-effect"}],"title":"2. Animations"}],"url":"https://drafts.csswg.org/web-animations-1/#dom-animation-effect"}, @@ -2380,7 +2386,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5d951c68": {"dfnID":"5d951c68","dfnText":"<single-animation-direction>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-single-animation-direction"}],"title":"3.10. The animation shorthand property"}],"url":"https://drafts.csswg.org/css-animations-1/#typedef-single-animation-direction"}, "5e4c6440": {"dfnID":"5e4c6440","dfnText":"play an animation","external":true,"refSections":[{"refs":[{"id":"ref-for-play-an-animation"}],"title":"3.5. The animation-play-state property"}],"url":"https://drafts.csswg.org/web-animations-1/#play-an-animation"}, "5e871285": {"dfnID":"5e871285","dfnText":"sampling","external":true,"refSections":[{"refs":[{"id":"ref-for-sampling"}],"title":"4.1. Event dispatch"}],"url":"https://drafts.csswg.org/web-animations-1/#sampling"}, -"5e8da52b": {"dfnID":"5e8da52b","dfnText":"animation-duration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-duration"}],"title":"2. Animations"},{"refs":[{"id":"ref-for-propdef-animation-duration\u2460"},{"id":"ref-for-propdef-animation-duration\u2461"}],"title":"3.1. The animation-duration property"},{"refs":[{"id":"ref-for-propdef-animation-duration\u2462"}],"title":"3.9. The animation-timeline property"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-duration"}, "5fced98b": {"dfnID":"5fced98b","dfnText":"CSSOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-cssomstring"},{"id":"ref-for-cssomstring\u2460"}],"title":"5.1. The CSSAnimation interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, "6295808f": {"dfnID":"6295808f","dfnText":"equivalent physical property","external":true,"refSections":[{"refs":[{"id":"ref-for-logical-to-physical"}],"title":"3. Keyframes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#logical-to-physical"}, "65d2348f": {"dfnID":"65d2348f","dfnText":"add","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-mask-composite-add"}],"title":"3.8. The animation-composition property"}],"url":"https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-add"}, @@ -2944,7 +2949,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-animations-1/#propdef-animation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-delay": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-delay","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-delay"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-direction": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-direction","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-direction"}, -"https://drafts.csswg.org/css-animations-1/#propdef-animation-duration": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-duration","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-duration"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-fill-mode": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-fill-mode","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-fill-mode"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-iteration-count","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-name": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-name","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-name"}, @@ -2957,6 +2961,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-animations-1/#typedef-single-animation-play-state": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"<single-animation-play-state>","type":"type","url":"https://drafts.csswg.org/css-animations-1/#typedef-single-animation-play-state"}, "https://drafts.csswg.org/css-animations-1/#valdef-animation-play-state-paused": {"export":true,"for_":["animation-play-state"],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"paused","type":"value","url":"https://drafts.csswg.org/css-animations-1/#valdef-animation-play-state-paused"}, "https://drafts.csswg.org/css-animations-1/#valdef-animation-play-state-running": {"export":true,"for_":["animation-play-state"],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"running","type":"value","url":"https://drafts.csswg.org/css-animations-1/#valdef-animation-play-state-running"}, +"https://drafts.csswg.org/css-animations-2/#propdef-animation-duration": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-animations","spec":"css-animations-2","status":"current","text":"animation-duration","type":"property","url":"https://drafts.csswg.org/css-animations-2/#propdef-animation-duration"}, "https://drafts.csswg.org/css-cascade-5/#computed-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"computed value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "https://drafts.csswg.org/css-easing-2/#easing-function": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-easing","spec":"css-easing-2","status":"current","text":"timing function","type":"dfn","url":"https://drafts.csswg.org/css-easing-2/#easing-function"}, "https://drafts.csswg.org/css-easing-2/#typedef-easing-function": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-easing","spec":"css-easing-2","status":"current","text":"<easing-function>","type":"type","url":"https://drafts.csswg.org/css-easing-2/#typedef-easing-function"}, diff --git a/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.console.txt index 17e21804c6..2bd34e93c9 100644 --- a/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.console.txt @@ -49,72 +49,12 @@ LINE 2780: Image doesn't exist, so I couldn't determine its width and height: 'i WARNING: Use <i> Autolinks is deprecated and will be removed. Please switch to using <a> elements. LINE 97: No 'dfn' refs found for '…summary of comment…'. <i bs-line-number="97" data-link-type="dfn" data-lt="…summary of comment…">…summary of comment…</i> -LINE ~500: No 'property' refs found for 'overflow' with spec 'css2'. -'overflow' -LINE 1264: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' LINE ~1789: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE ~1986: No 'property' refs found for 'overflow' with spec 'css2'. -'overflow' -LINE 2111: Multiple possible 'border-collapse' propdesc refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -''border-collapse: separate'' -LINE ~2109: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' -LINE ~2228: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' -LINE ~2265: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' -LINE ~2353: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' -LINE ~2438: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' -LINE ~2501: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' -LINE ~2660: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css2/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css22; type:property; text:border-collapse -spec:css-tables-3; type:property; text:border-collapse -'border-collapse' LINE ~2720: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE 3043: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' -LINE 3044: No 'property' refs found for 'display' with spec 'css2'. -''display: contents'' LINE ~3083: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE 3119: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 2729: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="2729" id="shadow-offset-x" data-dfn-type="dfn" data-lt="1st &lt;length&gt;" data-noexport="by-default" class="dfn-paneled">1st <a bs-line-number="2729" bs-autolink-syntax="&lt;&lt;length&gt;&gt;" bs-opaque="" class="production" data-lt="&lt;length&gt;" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value⑦" data-silently-dedup="">&lt;length&gt;</a></dfn> diff --git a/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.html b/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.html index a6b2dc3327..3c4af0daac 100644 --- a/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-backgrounds-3/Overview.html @@ -599,7 +599,7 @@ <h1 class="p-name no-ref" id="title">CSS Backgrounds and Borders Module Level 3< </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -616,12 +616,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> <p> This document was published - by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. - A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, - is intended to gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, + is intended to gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. This document is intended to become a W3C Recommendation; it will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="2021-02-22">22 February 2021</time> to gather additional feedback. </p> <p>Please send feedback @@ -630,12 +630,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-backgrounds] <i data-lt="…summary of comment…">…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-backgrounds%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -866,7 +866,7 @@ <h3 class="heading settled" data-level="2.2" id="background-color"><span class=" <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-background-color">background-color</dfn> <tr> <th><a href="#values">Value</a>: - <td><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color">&lt;color></a> + <td><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color">&lt;color></a> <tr> <th>Initial: <td>transparent @@ -1112,7 +1112,7 @@ <h3 class="heading settled" data-level="2.5" id="background-attachment"><span cl <dd>The background is fixed with regard to the viewport. In paged media where there is no viewport, a <a class="css" data-link-type="maybe" href="#valdef-background-attachment-fixed" id="ref-for-valdef-background-attachment-fixed①">fixed</a> background is fixed with respect to the <a href="https://www.w3.org/TR/CSS2/page.html#page-box">page box</a> and therefore replicated on every page. <span class="note">Note that there is only one viewport per view. - Even if an element has a scrolling mechanism (see the <a class="property css" data-link-type="property">overflow</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>), a <a class="css" data-link-type="maybe" href="#valdef-background-attachment-fixed" id="ref-for-valdef-background-attachment-fixed②">fixed</a> background doesn’t move with the + Even if an element has a scrolling mechanism (see the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow" id="ref-for-propdef-overflow">overflow</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>), a <a class="css" data-link-type="maybe" href="#valdef-background-attachment-fixed" id="ref-for-valdef-background-attachment-fixed②">fixed</a> background doesn’t move with the element.</span> <dt><dfn class="dfn-paneled css" data-dfn-for="background-attachment" data-dfn-type="value" data-export id="valdef-background-attachment-local">local</dfn> <dd>The background is fixed with regard to the element’s contents: @@ -1701,7 +1701,7 @@ <h3 class="heading settled" data-level="2.11" id="special-backgrounds"><span cla (or, in the case of HTML, the &lt;body> element) as described below. However, the element whose background would be used for the canvas -is <a class="css" data-link-type="propdesc">display: none</a>, +is <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display: none</a>, then the <a data-link-type="dfn" href="#canvas-background" id="ref-for-canvas-background">canvas background</a> is transparent. </p> <p>If the <a data-link-type="dfn" href="#canvas-background" id="ref-for-canvas-background①">canvas background</a> is not opaque, the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="canvas-surface">canvas surface</dfn> below it shows through. @@ -1764,7 +1764,7 @@ <h3 class="heading settled" data-level="3.1" id="border-color"><span class="secn <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-top-color">border-top-color</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-right-color">border-right-color</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-bottom-color">border-bottom-color</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-left-color">border-left-color</dfn> <tr> <th><a href="#values">Value</a>: - <td><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> + <td><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> <tr> <th>Initial: <td><a href="https://www.w3.org/TR/css-color-4/#currentcolor">currentColor</a> @@ -1791,7 +1791,7 @@ <h3 class="heading settled" data-level="3.1" id="border-color"><span class="secn <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-color">border-color</dfn> <tr> <th><a href="#values">Value</a>: - <td><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color②">&lt;color></a>{1,4} + <td><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color②">&lt;color></a>{1,4} <tr> <th>Initial: <td>(see individual properties) @@ -2030,7 +2030,7 @@ <h3 class="heading settled" data-level="3.4" id="border-shorthands"><span class= <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-top">border-top</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-right">border-right</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-bottom">border-bottom</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border-left">border-left</dfn> <tr> <th><a href="#values">Value</a>: - <td><a class="production css" data-link-type="type" href="#typedef-line-width" id="ref-for-typedef-line-width③">&lt;line-width></a> || <a class="production css" data-link-type="type" href="#typedef-line-style" id="ref-for-typedef-line-style③">&lt;line-style></a> || <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color③">&lt;color></a> + <td><a class="production css" data-link-type="type" href="#typedef-line-width" id="ref-for-typedef-line-width③">&lt;line-width></a> || <a class="production css" data-link-type="type" href="#typedef-line-style" id="ref-for-typedef-line-style③">&lt;line-style></a> || <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color③">&lt;color></a> <tr> <th>Initial: <td>See individual properties @@ -2060,7 +2060,7 @@ <h3 class="heading settled" data-level="3.4" id="border-shorthands"><span class= <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-border">border</dfn> <tr> <th><a href="#values">Value</a>: - <td><a class="production css" data-link-type="type" href="#typedef-line-width" id="ref-for-typedef-line-width④">&lt;line-width></a> || <a class="production css" data-link-type="type" href="#typedef-line-style" id="ref-for-typedef-line-style④">&lt;line-style></a> || <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color④">&lt;color></a> + <td><a class="production css" data-link-type="type" href="#typedef-line-width" id="ref-for-typedef-line-width④">&lt;line-width></a> || <a class="production css" data-link-type="type" href="#typedef-line-style" id="ref-for-typedef-line-style④">&lt;line-style></a> || <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color④">&lt;color></a> <tr> <th>Initial: <td>See individual properties @@ -2285,7 +2285,7 @@ <h3 class="heading settled" data-level="4.3" id="corner-clipping"><span class="s to the border, padding, or content edge must clip to their respective curves. For example, -backgrounds clip to the curve specified by <a class="property css" data-link-type="property" href="#propdef-background-clip" id="ref-for-propdef-background-clip⑧">background-clip</a>, <a class="property css" data-link-type="property">overflow</a> values other than <span class="css">visible</span> to the curved padding edge, <a data-link-type="dfn" href="https://www.w3.org/TR/css-display-3/#replaced-element" id="ref-for-replaced-element">replaced element</a> content to the curved content edge, +backgrounds clip to the curve specified by <a class="property css" data-link-type="property" href="#propdef-background-clip" id="ref-for-propdef-background-clip⑧">background-clip</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow" id="ref-for-propdef-overflow①">overflow</a> values other than <span class="css">visible</span> to the curved padding edge, <a data-link-type="dfn" href="https://www.w3.org/TR/css-display-3/#replaced-element" id="ref-for-replaced-element">replaced element</a> content to the curved content edge, pointer events to the curved border edge, etc. </p> <p class="note" role="note">As <a class="property css" data-link-type="property" href="#propdef-border-radius" id="ref-for-propdef-border-radius④">border-radius</a> reduces the interactive area of an element @@ -2376,8 +2376,8 @@ <h3 class="heading settled" data-level="4.5" id="corner-overlap"><span class="se </div> </div> <h3 class="heading settled" data-level="4.6" id="border-radius-tables"><span class="secno">4.6. </span><span class="content">Effect on Tables</span><a class="self-link" href="#border-radius-tables"></a></h3> - <p>The <a class="property css" data-link-type="property" href="#propdef-border-radius" id="ref-for-propdef-border-radius⑥">border-radius</a> properties do apply to <span class="css">table</span>, <span class="css">inline-table</span>, and <span class="css">table-cell</span> boxes -in separated borders mode (<a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse: separate</a>). + <p>The <a class="property css" data-link-type="property" href="#propdef-border-radius" id="ref-for-propdef-border-radius⑥">border-radius</a> properties do apply to <span class="css">table</span>, <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table" id="ref-for-value-def-inline-table">inline-table</a>, and <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell" id="ref-for-value-def-table-cell">table-cell</a> boxes +in separated borders mode (<a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse: separate</a>). When <span class="property" id="ref-for-propdef-border-collapse①">border-collapse</span> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse">collapse</a>, they have no effect. </p> <h2 class="heading settled" data-level="5" id="border-images"><span class="secno">5. </span><span class="content">Border Images</span><a class="self-link" href="#border-images"></a></h2> <p>Authors can specify an image to be used in place of the border styles. @@ -2474,7 +2474,7 @@ <h3 class="heading settled" data-level="5.1" id="border-image-source"><span clas <td>none <tr> <th>Applies to: - <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse②">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse①">collapse</a> + <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse②">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse①">collapse</a> <tr> <th>Inherited: <td>no @@ -2508,7 +2508,7 @@ <h3 class="heading settled" data-level="5.2" id="border-image-slice"><span class <td>100% <tr> <th>Applies to: - <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse③">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse②">collapse</a> + <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse③">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse②">collapse</a> <tr> <th>Inherited: <td>no @@ -2583,7 +2583,7 @@ <h3 class="heading settled" data-level="5.3" id="border-image-width"><span class <td>1 <tr> <th>Applies to: - <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse④">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse③">collapse</a> + <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse④">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse③">collapse</a> <tr> <th>Inherited: <td>no @@ -2653,7 +2653,7 @@ <h3 class="heading settled" data-level="5.4" id="border-image-outset"><span clas <td>0 <tr> <th>Applies to: - <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse⑤">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse④">collapse</a> + <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse⑤">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse④">collapse</a> <tr> <th>Inherited: <td>no @@ -2706,7 +2706,7 @@ <h3 class="heading settled" data-level="5.5" id="border-image-repeat"><span clas <td>stretch <tr> <th>Applies to: - <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse⑥">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse⑤">collapse</a> + <td>All elements, except internal table elements when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse⑥">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse⑤">collapse</a> <tr> <th>Inherited: <td>no @@ -2855,7 +2855,7 @@ <h3 class="heading settled" data-level="5.7" id="border-image"><span class="secn <p>This is a shorthand property for setting <a class="property css" data-link-type="property" href="#propdef-border-image-source" id="ref-for-propdef-border-image-source⑥">border-image-source</a>, <a class="property css" data-link-type="property" href="#propdef-border-image-slice" id="ref-for-propdef-border-image-slice⑦">border-image-slice</a>, <a class="property css" data-link-type="property" href="#propdef-border-image-width" id="ref-for-propdef-border-image-width①⓪">border-image-width</a>, <a class="property css" data-link-type="property" href="#propdef-border-image-outset" id="ref-for-propdef-border-image-outset③">border-image-outset</a> and <a class="property css" data-link-type="property" href="#propdef-border-image-repeat" id="ref-for-propdef-border-image-repeat③">border-image-repeat</a>. Omitted values are set to their initial values. </p> <h3 class="heading settled" data-level="5.8" id="border-image-tables"><span class="secno">5.8. </span><span class="content">Effect on Tables</span><a class="self-link" href="#border-image-tables"></a></h3> <p>The <a class="property css" data-link-type="property" href="#propdef-border-image" id="ref-for-propdef-border-image⑤">border-image</a> properties apply to the border of tables and -inline tables that have <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-border-collapse" id="ref-for-propdef-border-collapse⑦">border-collapse</a> set to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse⑥">collapse</a>. However, this specification does not define how such an +inline tables that have <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse⑦">border-collapse</a> set to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse" id="ref-for-valdef-border-collapse-collapse⑥">collapse</a>. However, this specification does not define how such an image border is rendered. In particular, it does not define how the image border interacts with the borders of cells, rows and row groups at the edges of the table @@ -2909,7 +2909,7 @@ <h3 class="heading settled" data-level="6.1" id="box-shadow"><span class="secno" <p>Each shadow is given as a <a class="production css" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow①">&lt;shadow></a>, represented by 2-4 length values, an optional color, and an optional <a class="css" data-link-type="maybe" href="#shadow-inset" id="ref-for-shadow-inset②">inset</a> keyword. Omitted lengths are 0; omitted colors default to the value of the <a class="property css" data-link-type="property">color</a> property. </p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-shadow"><a class="production" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow②">&lt;shadow></a></dfn> = <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color⑤">&lt;color></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt④">?</a> <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-all" id="ref-for-comb-all①">&amp;&amp;</a> [<a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value④">&lt;length></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-num" id="ref-for-mult-num">{2}</a> <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value⑤">&lt;length [0,∞]></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt⑤">?</a> <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value⑥">&lt;length></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt⑥">?</a>] <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-all" id="ref-for-comb-all②">&amp;&amp;</a> inset<a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt⑦">?</a></pre> +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-shadow"><a class="production" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow②">&lt;shadow></a></dfn> = <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color⑤">&lt;color></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt④">?</a> <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-all" id="ref-for-comb-all①">&amp;&amp;</a> [<a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value④">&lt;length></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-num" id="ref-for-mult-num">{2}</a> <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value⑤">&lt;length [0,∞]></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt⑤">?</a> <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value⑥">&lt;length></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt⑥">?</a>] <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-all" id="ref-for-comb-all②">&amp;&amp;</a> inset<a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt⑦">?</a></pre> <p>The components of each <a class="production css" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow③">&lt;shadow></a> are interpreted as follows: </p> <dl> <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="shadow-offset-x">1st <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value⑦">&lt;length></a></dfn> @@ -2934,7 +2934,7 @@ <h3 class="heading settled" data-level="6.1" id="box-shadow"><span class="secno" <p class="note" role="note">Note that for inner shadows, expanding the shadow (creating more shadow area) means contracting the shadow’s perimeter shape. </p> - <dt><dfn class="dfn-paneled css" data-dfn-for="box-shadow" data-dfn-type="value" data-export id="shadow-color"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color⑥">&lt;color></a></dfn> + <dt><dfn class="dfn-paneled css" data-dfn-for="box-shadow" data-dfn-type="value" data-export id="shadow-color"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color⑥">&lt;color></a></dfn> <dd> Specifies the color of the shadow. If the color is absent, it defaults to <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor" id="ref-for-valdef-color-currentcolor">currentColor</a>. <dt><dfn class="dfn-paneled css" data-dfn-for="box-shadow" data-dfn-type="value" data-export id="shadow-inset">inset</dfn> @@ -3143,8 +3143,8 @@ <h2 class="heading settled" data-level="8" id="changes"><span class="secno">8. < <h3 class="heading settled" data-level="8.1" id="changes-2020-12"><span class="secno">8.1. </span><span class="content"> Changes since the 22 December 2020 Candidate Recommendation Snapshot</span><a class="self-link" href="#changes-2020-12"></a></h3> <ul> <li>Clarified that the rule about not propagating backgrounds from the root - when it doesn’t generate boxes only applies to <a class="css" data-link-type="propdesc">display: none</a>, - not <span class="css">display: contents</span>. + when it doesn’t generate boxes only applies to <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display①">display: none</a>, + not <span class="css" id="ref-for-propdef-display②">display: contents</span>. (<a href="https://github.com/w3c/csswg-drafts/issues/3779">Issue 3779</a>) </ul> <h3 class="heading settled" data-level="8.2" id="changes-2017-10"><span class="secno">8.2. </span><span class="content"> Changes since the 17 October 2017 Candidate Recommendation</span><a class="self-link" href="#changes-2017-10"></a></h3> @@ -3153,7 +3153,7 @@ <h3 class="heading settled" data-level="8.2" id="changes-2017-10"><span class="s Inverted order of <a class="production css" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow④">&lt;shadow></a> grammar to match browser serialization and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/css-text-decor-4/#propdef-text-shadow" id="ref-for-propdef-text-shadow">text-shadow</a>/<a class="css" data-link-type="maybe" href="https://www.w3.org/TR/filter-effects-1/#funcdef-filter-drop-shadow" id="ref-for-funcdef-filter-drop-shadow">drop-shadow()</a>. (<a href="https://github.com/w3c/csswg-drafts/issues/2305">Issue 2305</a>) <blockquote> -<pre><a class="production" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow⑤">&lt;shadow></a> = <del>inset</del><ins><a class="production" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color⑦">&lt;color></a></ins>? &amp;&amp; <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value①①">&lt;length></a>{2,4} &amp;&amp; <del><a class="production" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color⑧">&lt;color></a></del><ins>inset</ins>?</pre> +<pre><a class="production" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow⑤">&lt;shadow></a> = <del>inset</del><ins><a class="production" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color⑦">&lt;color></a></ins>? &amp;&amp; <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value①①">&lt;length></a>{2,4} &amp;&amp; <del><a class="production" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color⑧">&lt;color></a></del><ins>inset</ins>?</pre> </blockquote> <li> Spread radius adjustment is only applied to shadows and margins @@ -3178,7 +3178,7 @@ <h3 class="heading settled" data-level="8.2" id="changes-2017-10"><span class="s </p> </blockquote> <li> - Clarified that an omitted <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color⑨">&lt;color></a> in a <a class="production css" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow⑥">&lt;shadow></a> defaults to <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor" id="ref-for-valdef-color-currentcolor①">currentColor</a>, + Clarified that an omitted <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color⑨">&lt;color></a> in a <a class="production css" data-link-type="type" href="#typedef-shadow" id="ref-for-typedef-shadow⑥">&lt;shadow></a> defaults to <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor" id="ref-for-valdef-color-currentcolor①">currentColor</a>, not some mysterious unnamed value with the same behavior. (<a href="https://github.com/w3c/csswg-drafts/issues/2766">2766</a>) <blockquote> @@ -3209,7 +3209,7 @@ <h3 class="heading settled" data-level="8.4" id="changes-2014-02"><span class="s <ul> <li>Fixed spread radius and margin radius calculations to only apply adjustment factor when spread/margin is larger than border radius. - <li>Defined handling of canvas background when root element has <a class="css" data-link-type="propdesc">display: none</a>. + <li>Defined handling of canvas background when root element has <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display③">display: none</a>. </ul> <p>A full <a href="https://drafts.csswg.org/css-backgrounds-3/issues-lc-2014">Disposition of Comments</a> is available. </p> <h3 class="heading settled" data-level="8.5" id="changes-2012-07"><span class="secno">8.5. </span><span class="content"> Changes since the 24 July 2012 Candidate Recommendation</span><a class="self-link" href="#changes-2012-07"></a></h3> @@ -3217,7 +3217,7 @@ <h3 class="heading settled" data-level="8.5" id="changes-2012-07"><span class="s <ul> <li>Allow <a class="production css" data-link-type="property" href="#propdef-background-clip" id="ref-for-propdef-background-clip⑨">&lt;'background-clip'></a> and <a class="production css" data-link-type="property" href="#propdef-background-origin" id="ref-for-propdef-background-origin⑥">&lt;'background-origin'></a> to be separated by other component values in the <a class="property css" data-link-type="property" href="#propdef-background" id="ref-for-propdef-background⑤">background</a> shorthand, since this is what is implemented. - <li>Allow <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color①⓪">&lt;color></a> and <a class="css" data-link-type="maybe" href="#shadow-inset" id="ref-for-shadow-inset④">inset</a> to be interleaved in any order in <a class="property css" data-link-type="property" href="#propdef-box-shadow" id="ref-for-propdef-box-shadow⑥">box-shadow</a>, + <li>Allow <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color①⓪">&lt;color></a> and <a class="css" data-link-type="maybe" href="#shadow-inset" id="ref-for-shadow-inset④">inset</a> to be interleaved in any order in <a class="property css" data-link-type="property" href="#propdef-box-shadow" id="ref-for-propdef-box-shadow⑥">box-shadow</a>, since they are not ambiguous and CSS generally allows variant ordering where not ambiguous. <li>Define gradually increasing corner radius formula for <a class="property css" data-link-type="property" href="#propdef-box-shadow" id="ref-for-propdef-box-shadow⑦">box-shadow</a> spread curvature to create continuity between sharp corners (<a class="property css" data-link-type="property" href="#propdef-border-radius" id="ref-for-propdef-border-radius⑧">border-radius</a> = 0) @@ -3754,9 +3754,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="329ecc08">&lt;color></span> <li><span class="dfn-paneled" id="a42c65ac">currentcolor</span> </ul> + <li> + <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="d04b6986">&lt;color></span> + </ul> <li> <a data-link-type="biblio">[CSS-DISPLAY-3]</a> defines the following terms: <ul> @@ -3806,10 +3810,18 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="4eb9d37e">|</span> <li><span class="dfn-paneled" id="a0336d84">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="29ca9f85">border-collapse</span> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="a2942f61">inline-table</span> + <li><span class="dfn-paneled" id="244c26d9">overflow</span> + <li><span class="dfn-paneled" id="97bfa2a1">table-cell</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="a1ca79a0">border-collapse</span> <li><span class="dfn-paneled" id="8b60933e">collapse</span> </ul> <li> @@ -3828,25 +3840,27 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-box-3">[CSS-BOX-3] - <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-3/"><cite>CSS Box Model Module Level 3</cite></a>. 3 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-box-3/">https://www.w3.org/TR/css-box-3/</a> + <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-3/"><cite>CSS Box Model Module Level 3</cite></a>. 11 April 2024. REC. URL: <a href="https://www.w3.org/TR/css-box-3/">https://www.w3.org/TR/css-box-3/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] - <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. 3 November 2022. WD. URL: <a href="https://www.w3.org/TR/css-box-4/">https://www.w3.org/TR/css-box-4/</a> + <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. 4 August 2024. WD. URL: <a href="https://www.w3.org/TR/css-box-4/">https://www.w3.org/TR/css-box-4/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://www.w3.org/TR/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. 18 December 2018. WD. URL: <a href="https://www.w3.org/TR/css-break-4/">https://www.w3.org/TR/css-break-4/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 1 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 13 February 2024. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dt id="biblio-css-color-5">[CSS-COLOR-5] + <dd>Chris Lilley; et al. <a href="https://www.w3.org/TR/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. 29 February 2024. WD. URL: <a href="https://www.w3.org/TR/css-color-5/">https://www.w3.org/TR/css-color-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 18 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 30 March 2023. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 17 December 2020. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 18 December 2023. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> <dt id="biblio-css-ruby-1">[CSS-RUBY-1] <dd>Elika Etemad; et al. <a href="https://www.w3.org/TR/css-ruby-1/"><cite>CSS Ruby Annotation Layout Module Level 1</cite></a>. 31 December 2022. WD. URL: <a href="https://www.w3.org/TR/css-ruby-1/">https://www.w3.org/TR/css-ruby-1/</a> <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-text-decor-4/"><cite>CSS Text Decoration Module Level 4</cite></a>. 4 May 2022. WD. URL: <a href="https://www.w3.org/TR/css-text-decor-4/">https://www.w3.org/TR/css-text-decor-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 1 December 2022. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 22 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 19 October 2022. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 12 March 2024. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://www.w3.org/TR/CSS21/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. 7 June 2011. REC. URL: <a href="https://www.w3.org/TR/CSS21/">https://www.w3.org/TR/CSS21/</a> <dt id="biblio-css22">[CSS22] @@ -4540,12 +4554,13 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "128295ac": {"dfnID":"128295ac","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"}],"title":"2.6. Positioning Images: the background-position property"},{"refs":[{"id":"ref-for-percentage-value\u2460"},{"id":"ref-for-percentage-value\u2461"}],"title":"5.2. Image Slicing: the border-image-slice property"}],"url":"https://www.w3.org/TR/css-values-4/#percentage-value"}, "153743a1": {"dfnID":"153743a1","dfnText":"ruby base container","external":true,"refSections":[{"refs":[{"id":"ref-for-ruby-base-container-box"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-ruby-base-container-box\u2460"},{"id":"ref-for-ruby-base-container-box\u2461"}],"title":"3.1. Line Colors: the border-color properties"},{"refs":[{"id":"ref-for-ruby-base-container-box\u2462"},{"id":"ref-for-ruby-base-container-box\u2463"}],"title":"3.2. Line Patterns: the border-style properties"},{"refs":[{"id":"ref-for-ruby-base-container-box\u2464"},{"id":"ref-for-ruby-base-container-box\u2465"}],"title":"3.3. Line Thickness: the border-width properties"},{"refs":[{"id":"ref-for-ruby-base-container-box\u2466"},{"id":"ref-for-ruby-base-container-box\u2467"}],"title":"3.4. Border Shorthand Properties"}],"url":"https://www.w3.org/TR/css-ruby-1/#ruby-base-container-box"}, "1a2825fc": {"dfnID":"1a2825fc","dfnText":"drop-shadow()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-filter-drop-shadow"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"}],"url":"https://www.w3.org/TR/filter-effects-1/#funcdef-filter-drop-shadow"}, +"244c26d9": {"dfnID":"244c26d9","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"2.5. Affixing Images: the background-attachment property"},{"refs":[{"id":"ref-for-propdef-overflow\u2460"}],"title":"4.3. Corner Clipping"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow"}, "24ae9eec": {"dfnID":"24ae9eec","dfnText":"natural width","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-width"}],"title":"2.9. Sizing Images: the background-size property"}],"url":"https://www.w3.org/TR/css-images-3/#natural-width"}, "253362bb": {"dfnID":"253362bb","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"3.4. Border Shorthand Properties"}],"url":"https://www.w3.org/TR/css-box-4/#propdef-margin"}, "299e10e4": {"dfnID":"299e10e4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"4.3. Corner Clipping"}],"url":"https://www.w3.org/TR/css-display-3/#replaced-element"}, +"29ca9f85": {"dfnID":"29ca9f85","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"},{"id":"ref-for-propdef-border-collapse\u2460"}],"title":"4.6. Effect on Tables"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2461"}],"title":"5.1. Image Source: the border-image-source property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2462"}],"title":"5.2. Image Slicing: the border-image-slice property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2463"}],"title":"5.3. Drawing Areas: the border-image-width property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2464"}],"title":"5.4. Edge Overhang: the border-image-outset property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2465"}],"title":"5.5. Image Tiling: the border-image-repeat property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2466"}],"title":"5.8. Effect on Tables"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, "31d72d5d": {"dfnID":"31d72d5d","dfnText":"<position>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-position"}],"title":"8.3. \nChanges since the 9 September 2014 Candidate Recommendation"},{"refs":[{"id":"ref-for-typedef-position\u2460"}],"title":"8.8. \nChanges Since the 15 February 2011 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-values-3/#typedef-position"}, "3218f3af": {"dfnID":"3218f3af","dfnText":"::first-line","external":true,"refSections":[{"refs":[{"id":"ref-for-sel-first-line"},{"id":"ref-for-sel-first-line\u2460"}],"title":"2.11.3. \nThe ::first-line Pseudo-element\u2018s Background"},{"refs":[{"id":"ref-for-sel-first-line\u2461"}],"title":"8.7. \nChanges since the 14 February 2012 \u201cLast Call\u201d Working Draft"}],"url":"https://www.w3.org/TR/selectors-3/#sel-first-line"}, -"329ecc08": {"dfnID":"329ecc08","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2.2. Base Color: the background-color property"},{"refs":[{"id":"ref-for-typedef-color\u2460"},{"id":"ref-for-typedef-color\u2461"}],"title":"3.1. Line Colors: the border-color properties"},{"refs":[{"id":"ref-for-typedef-color\u2462"},{"id":"ref-for-typedef-color\u2463"}],"title":"3.4. Border Shorthand Properties"},{"refs":[{"id":"ref-for-typedef-color\u2464"},{"id":"ref-for-typedef-color\u2465"}],"title":"6.1. Drop Shadows: the box-shadow property"},{"refs":[{"id":"ref-for-typedef-color\u2466"},{"id":"ref-for-typedef-color\u2467"},{"id":"ref-for-typedef-color\u2468"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"},{"refs":[{"id":"ref-for-typedef-color\u2460\u24ea"}],"title":"8.5. \nChanges since the 24 July 2012 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "35bf32f2": {"dfnID":"35bf32f2","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"},{"id":"ref-for-typedef-image\u2460"}],"title":"2.3. Image Sources: the background-image property"},{"refs":[{"id":"ref-for-typedef-image\u2461"},{"id":"ref-for-typedef-image\u2462"}],"title":"5.1. Image Source: the border-image-source property"}],"url":"https://www.w3.org/TR/css-images-3/#typedef-image"}, "3bafef5e": {"dfnID":"3bafef5e","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"}],"title":"2.4. Tiling Images: the background-repeat property"},{"refs":[{"id":"ref-for-mult-num-range\u2460"}],"title":"2.9. Sizing Images: the background-size property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-num-range"}, "487e1aa9": {"dfnID":"487e1aa9","dfnText":"natural dimension","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-dimensions"}],"title":"5.2. Image Slicing: the border-image-slice property"},{"refs":[{"id":"ref-for-natural-dimensions\u2460"}],"title":"5.3. Drawing Areas: the border-image-width property"}],"url":"https://www.w3.org/TR/css-images-3/#natural-dimensions"}, @@ -4558,11 +4573,12 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "8a110a7b": {"dfnID":"8a110a7b","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions"}],"url":"https://www.w3.org/TR/css-values-4/#css-wide-keywords"}, "8b60933e": {"dfnID":"8b60933e","dfnText":"collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-border-collapse-collapse"}],"title":"4.6. Effect on Tables"},{"refs":[{"id":"ref-for-valdef-border-collapse-collapse\u2460"}],"title":"5.1. Image Source: the border-image-source property"},{"refs":[{"id":"ref-for-valdef-border-collapse-collapse\u2461"}],"title":"5.2. Image Slicing: the border-image-slice property"},{"refs":[{"id":"ref-for-valdef-border-collapse-collapse\u2462"}],"title":"5.3. Drawing Areas: the border-image-width property"},{"refs":[{"id":"ref-for-valdef-border-collapse-collapse\u2463"}],"title":"5.4. Edge Overhang: the border-image-outset property"},{"refs":[{"id":"ref-for-valdef-border-collapse-collapse\u2464"}],"title":"5.5. Image Tiling: the border-image-repeat property"},{"refs":[{"id":"ref-for-valdef-border-collapse-collapse\u2465"}],"title":"5.8. Effect on Tables"}],"url":"https://drafts.csswg.org/css2/#valdef-border-collapse-collapse"}, "8cbc2b3b": {"dfnID":"8cbc2b3b","dfnText":"{a}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num"}],"title":"6.1. Drop Shadows: the box-shadow property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-num"}, +"97bfa2a1": {"dfnID":"97bfa2a1","dfnText":"table-cell","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-table-cell"}],"title":"4.6. Effect on Tables"}],"url":"https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell"}, "98ddb9b0": {"dfnID":"98ddb9b0","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"}],"title":"2.6. Positioning Images: the background-position property"},{"refs":[{"id":"ref-for-length-value\u2460"}],"title":"3.3. Line Thickness: the border-width properties"},{"refs":[{"id":"ref-for-length-value\u2461"},{"id":"ref-for-length-value\u2462"}],"title":"5.4. Edge Overhang: the border-image-outset property"},{"refs":[{"id":"ref-for-length-value\u2463"},{"id":"ref-for-length-value\u2464"},{"id":"ref-for-length-value\u2465"},{"id":"ref-for-length-value\u2466"},{"id":"ref-for-length-value\u2467"},{"id":"ref-for-length-value\u2468"},{"id":"ref-for-length-value\u2460\u24ea"}],"title":"6.1. Drop Shadows: the box-shadow property"},{"refs":[{"id":"ref-for-length-value\u2460\u2460"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"},{"refs":[{"id":"ref-for-length-value\u2460\u2461"}],"title":"8.8. \nChanges Since the 15 February 2011 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-values-4/#length-value"}, "99261030": {"dfnID":"99261030","dfnText":"css bracketed range notation","external":true,"refSections":[{"refs":[{"id":"ref-for-css-bracketed-range-notation"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-values-4/#css-bracketed-range-notation"}, "a0336d84": {"dfnID":"a0336d84","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"},{"id":"ref-for-comb-any\u2461"},{"id":"ref-for-comb-any\u2462"},{"id":"ref-for-comb-any\u2463"},{"id":"ref-for-comb-any\u2464"},{"id":"ref-for-comb-any\u2465"},{"id":"ref-for-comb-any\u2466"},{"id":"ref-for-comb-any\u2467"},{"id":"ref-for-comb-any\u2468"},{"id":"ref-for-comb-any\u2460\u24ea"}],"title":"2.10. Backgrounds Shorthand: the background property"}],"url":"https://www.w3.org/TR/css-values-4/#comb-any"}, "a0542bba": {"dfnID":"a0542bba","dfnText":"box-decoration-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-decoration-break"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-propdef-box-decoration-break\u2460"}],"title":"2.8. Positioning Area: the background-origin property"},{"refs":[{"id":"ref-for-propdef-box-decoration-break\u2461"}],"title":"6. Miscellaneous Effects"},{"refs":[{"id":"ref-for-propdef-box-decoration-break\u2462"}],"title":"6.1.3. \nLayering, Layout, and Other Details"},{"refs":[{"id":"ref-for-propdef-box-decoration-break\u2463"}],"title":"8.5. \nChanges since the 24 July 2012 Candidate Recommendation"},{"refs":[{"id":"ref-for-propdef-box-decoration-break\u2464"}],"title":"8.8. \nChanges Since the 15 February 2011 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-break-4/#propdef-box-decoration-break"}, -"a1ca79a0": {"dfnID":"a1ca79a0","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"},{"id":"ref-for-propdef-border-collapse\u2460"}],"title":"4.6. Effect on Tables"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2461"}],"title":"5.1. Image Source: the border-image-source property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2462"}],"title":"5.2. Image Slicing: the border-image-slice property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2463"}],"title":"5.3. Drawing Areas: the border-image-width property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2464"}],"title":"5.4. Edge Overhang: the border-image-outset property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2465"}],"title":"5.5. Image Tiling: the border-image-repeat property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2466"}],"title":"5.8. Effect on Tables"}],"url":"https://drafts.csswg.org/css2/#propdef-border-collapse"}, +"a2942f61": {"dfnID":"a2942f61","dfnText":"inline-table","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-inline-table"}],"title":"4.6. Effect on Tables"}],"url":"https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table"}, "a3a070bd": {"dfnID":"a3a070bd","dfnText":"padding","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding"}],"title":"3.4. Border Shorthand Properties"}],"url":"https://www.w3.org/TR/css-box-4/#propdef-padding"}, "a42c65ac": {"dfnID":"a42c65ac","dfnText":"currentcolor","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-currentcolor"}],"title":"6.1. Drop Shadows: the box-shadow property"},{"refs":[{"id":"ref-for-valdef-color-currentcolor\u2460"},{"id":"ref-for-valdef-color-currentcolor\u2461"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor"}, "a7f17cc4": {"dfnID":"a7f17cc4","dfnText":"text-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-shadow"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-text-decor-4/#propdef-text-shadow"}, @@ -4579,9 +4595,11 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "c82a1380": {"dfnID":"c82a1380","dfnText":"default object size","external":true,"refSections":[{"refs":[{"id":"ref-for-default-object-size"}],"title":"5.2. Image Slicing: the border-image-slice property"}],"url":"https://www.w3.org/TR/css-images-3/#default-object-size"}, "canvas-background": {"dfnID":"canvas-background","dfnText":"canvas background","external":false,"refSections":[{"refs":[{"id":"ref-for-canvas-background"},{"id":"ref-for-canvas-background\u2460"}],"title":"2.11. \nBackgrounds of Special Elements"}],"url":"#canvas-background"}, "canvas-surface": {"dfnID":"canvas-surface","dfnText":"canvas surface","external":false,"refSections":[{"refs":[{"id":"ref-for-canvas-surface"}],"title":"2.11. \nBackgrounds of Special Elements"}],"url":"#canvas-surface"}, +"d04b6986": {"dfnID":"d04b6986","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2.2. Base Color: the background-color property"},{"refs":[{"id":"ref-for-typedef-color\u2460"},{"id":"ref-for-typedef-color\u2461"}],"title":"3.1. Line Colors: the border-color properties"},{"refs":[{"id":"ref-for-typedef-color\u2462"},{"id":"ref-for-typedef-color\u2463"}],"title":"3.4. Border Shorthand Properties"},{"refs":[{"id":"ref-for-typedef-color\u2464"},{"id":"ref-for-typedef-color\u2465"}],"title":"6.1. Drop Shadows: the box-shadow property"},{"refs":[{"id":"ref-for-typedef-color\u2466"},{"id":"ref-for-typedef-color\u2467"},{"id":"ref-for-typedef-color\u2468"}],"title":"8.2. \nChanges since the 17 October 2017 Candidate Recommendation"},{"refs":[{"id":"ref-for-typedef-color\u2460\u24ea"}],"title":"8.5. \nChanges since the 24 July 2012 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "d4441b24": {"dfnID":"d4441b24","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"2.6. Positioning Images: the background-position property"},{"refs":[{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"}],"title":"2.10. Backgrounds Shorthand: the background property"},{"refs":[{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"},{"id":"ref-for-mult-opt\u2465"},{"id":"ref-for-mult-opt\u2466"}],"title":"6.1. Drop Shadows: the box-shadow property"},{"refs":[{"id":"ref-for-mult-opt\u2467"},{"id":"ref-for-mult-opt\u2468"},{"id":"ref-for-mult-opt\u2460\u24ea"}],"title":"8.8. \nChanges Since the 15 February 2011 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-values-4/#mult-opt"}, "document": {"dfnID":"document","dfnText":"document","external":false,"refSections":[],"url":"#document"}, "e99a4517": {"dfnID":"e99a4517","dfnText":"specified size","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-size"}],"title":"5.2. Image Slicing: the border-image-slice property"}],"url":"https://www.w3.org/TR/css-images-3/#specified-size"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"2.11. \nBackgrounds of Special Elements"},{"refs":[{"id":"ref-for-propdef-display\u2460"},{"id":"ref-for-propdef-display\u2461"}],"title":"8.1. \nChanges since the 22 December 2020 Candidate Recommendation Snapshot"},{"refs":[{"id":"ref-for-propdef-display\u2462"}],"title":"8.4. \nChanges since the 4 February 2014 Last Call Working Draft"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "ffedca23": {"dfnID":"ffedca23","dfnText":"natural aspect ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-aspect-ratio"},{"id":"ref-for-natural-aspect-ratio\u2460"},{"id":"ref-for-natural-aspect-ratio\u2461"}],"title":"2.9. Sizing Images: the background-size property"}],"url":"https://www.w3.org/TR/css-images-3/#natural-aspect-ratio"}, "horizontal-offset": {"dfnID":"horizontal-offset","dfnText":"horizontal offset","external":false,"refSections":[],"url":"#horizontal-offset"}, "inner-box-shadow": {"dfnID":"inner-box-shadow","dfnText":"inner box-shadow","external":false,"refSections":[{"refs":[{"id":"ref-for-inner-box-shadow"},{"id":"ref-for-inner-box-shadow\u2460"}],"title":"6.1.1. \nShadow Shape, Spread, and Knockout"},{"refs":[{"id":"ref-for-inner-box-shadow\u2461"}],"title":"6.1.3. \nLayering, Layout, and Other Details"}],"url":"#inner-box-shadow"}, @@ -5086,10 +5104,10 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "use strict"; { let linkTitleData = { -"#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", +"#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | view-box", "#typedef-line-style": "Expands to: dashed | dotted | double | groove | hidden | inset | none | outset | ridge | solid", "#typedef-line-width": "Expands to: medium | thick | thin", -"https://www.w3.org/TR/css-color-4/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://www.w3.org/TR/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://www.w3.org/TR/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; @@ -5208,14 +5226,18 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "#valdef-line-style-ridge": {"export":true,"for_":["<line-style>","border","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"local","text":"ridge","type":"value","url":"#valdef-line-style-ridge"}, "#valdef-line-style-solid": {"export":true,"for_":["<line-style>","border","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"local","text":"solid","type":"value","url":"#valdef-line-style-solid"}, "#valdef-line-width-medium": {"export":true,"for_":["<line-width>","border","border-bottom-width","border-left-width","border-right-width","border-top-width","border-width"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"local","text":"medium","type":"value","url":"#valdef-line-width-medium"}, -"https://drafts.csswg.org/css2/#propdef-border-collapse": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"border-collapse","type":"property","url":"https://drafts.csswg.org/css2/#propdef-border-collapse"}, "https://drafts.csswg.org/css2/#valdef-border-collapse-collapse": {"export":true,"for_":["border-collapse"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"collapse","type":"value","url":"https://drafts.csswg.org/css2/#valdef-border-collapse-collapse"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-collapse","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, +"https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"inline-table","type":"value","url":"https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table"}, +"https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"table-cell","type":"value","url":"https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell"}, +"https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"overflow","type":"property","url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "https://www.w3.org/TR/css-box-4/#border-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"snapshot","text":"border box","type":"dfn","url":"https://www.w3.org/TR/css-box-4/#border-box"}, "https://www.w3.org/TR/css-box-4/#propdef-margin": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"snapshot","text":"margin","type":"property","url":"https://www.w3.org/TR/css-box-4/#propdef-margin"}, "https://www.w3.org/TR/css-box-4/#propdef-padding": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"snapshot","text":"padding","type":"property","url":"https://www.w3.org/TR/css-box-4/#propdef-padding"}, "https://www.w3.org/TR/css-break-4/#propdef-box-decoration-break": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-break","spec":"css-break-4","status":"snapshot","text":"box-decoration-break","type":"property","url":"https://www.w3.org/TR/css-break-4/#propdef-box-decoration-break"}, -"https://www.w3.org/TR/css-color-4/#typedef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"currentcolor","type":"value","url":"https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor"}, +"https://www.w3.org/TR/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "https://www.w3.org/TR/css-display-3/#replaced-element": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"snapshot","text":"replaced element","type":"dfn","url":"https://www.w3.org/TR/css-display-3/#replaced-element"}, "https://www.w3.org/TR/css-images-3/#default-object-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"default object size","type":"dfn","url":"https://www.w3.org/TR/css-images-3/#default-object-size"}, "https://www.w3.org/TR/css-images-3/#natural-aspect-ratio": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"natural aspect ratio","type":"dfn","url":"https://www.w3.org/TR/css-images-3/#natural-aspect-ratio"}, diff --git a/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.console.txt index a450ebc32d..c8ab9d6d50 100644 --- a/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.console.txt @@ -35,22 +35,4 @@ LINE 358: The propdef for 'border-limit' is missing a 'Animation type' line. LINE 414: The propdef for 'border-clip, border-clip-top, border-clip-right, border-clip-bottom, border-clip-left' is missing a 'Animation type' line. LINE 226: Image doesn't exist, so I couldn't determine its width and height: 'images/multicolor-border.png' LINE 230: Image doesn't exist, so I couldn't determine its width and height: 'images/multicolor-border-dotted.png' -LINE ~242: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-collapse -spec:css22; type:property; text:border-collapse -'border-collapse' -LINE ~255: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-collapse -spec:css22; type:property; text:border-collapse -'border-collapse' -LINE ~358: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-collapse -spec:css22; type:property; text:border-collapse -'border-collapse' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.html b/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.html index 0434020dec..b4acd92ffc 100644 --- a/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-backgrounds-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Backgrounds and Borders Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-backgrounds-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1080,7 +1079,7 @@ <h1 class="p-name no-ref" id="title">CSS Backgrounds and Borders Module Level 4< please contact the CSSWG at www-style@w3.org. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1102,7 +1101,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-backgrounds] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-backgrounds%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1388,13 +1387,13 @@ <h3 class="heading settled" data-level="2.2" id="background-clip"><span class="s <p>Determines the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="background-painting-area">background painting area</dfn>, which determines the area within which the background is painted. The syntax of the property is given with</p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-bg-clip">&lt;bg-clip></dfn> = <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-backgrounds-3/#typedef-box" id="ref-for-typedef-box">&lt;box></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one④④">|</a> border <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one④⑤">|</a> text +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-bg-clip">&lt;bg-clip></dfn> = <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-box-4/#typedef-box" id="ref-for-typedef-box">&lt;box></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one④④">|</a> border <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one④⑤">|</a> text </pre> <p class="issue" id="issue-09d02635"><a class="self-link" href="#issue-09d02635"></a> Or should this be defining the <span class="css">-webkit-background-clip</span> property, saying that all the values are identical, with this additional <a class="css" data-link-type="maybe" href="#valdef-background-clip-text" id="ref-for-valdef-background-clip-text">text</a> value?</p> <dl> - <dt><dfn class="dfn-paneled css" data-dfn-for="background-clip, <bg-clip>" data-dfn-type="value" data-export id="valdef-background-clip-box"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-backgrounds-3/#typedef-box" id="ref-for-typedef-box①">&lt;box></a></dfn> + <dt><dfn class="dfn-paneled css" data-dfn-for="background-clip, <bg-clip>" data-dfn-type="value" data-export id="valdef-background-clip-box"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-box-4/#typedef-box" id="ref-for-typedef-box①">&lt;box></a></dfn> <dd> The background is painted within (clipped to) the specified box of the element. <dt><dfn class="dfn-paneled css" data-dfn-for="background-clip, <bg-clip>" data-dfn-type="value" data-export id="valdef-background-clip-text">text</dfn> @@ -1509,7 +1508,7 @@ <h3 class="heading settled" data-level="4.1" id="corner-sizing"><span class="sec <td>0 <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td>all elements, except table element when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse" id="ref-for-valdef-text-space-collapse-collapse">collapse</a> + <td>all elements, except table element when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse" id="ref-for-valdef-white-space-collapse-collapse">collapse</a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>no @@ -1538,7 +1537,7 @@ <h3 class="heading settled" data-level="4.2" id="corner-shaping"><span class="se <td>round <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td>all elements, except table element when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-collapse" id="ref-for-propdef-border-collapse①">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse" id="ref-for-valdef-text-space-collapse-collapse①">collapse</a> + <td>all elements, except table element when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse①">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse" id="ref-for-valdef-white-space-collapse-collapse①">collapse</a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>no @@ -1662,7 +1661,7 @@ <h3 class="heading settled" data-level="5.1" id="border-limit"><span class="secn <td>round <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td>all elements, except table element when <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-collapse" id="ref-for-propdef-border-collapse②">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse" id="ref-for-valdef-text-space-collapse-collapse②">collapse</a> + <td>all elements, except table element when <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse②">border-collapse</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse" id="ref-for-valdef-white-space-collapse-collapse②">collapse</a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>no @@ -2128,6 +2127,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="e7382b89">&lt;box></span> + </ul> <li> <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: <ul> @@ -2144,15 +2148,10 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="baca35b9">&lt;flex></span> <li><span class="dfn-paneled" id="cc878a3a">fr</span> </ul> - <li> - <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="911f092b">border-collapse</span> - </ul> <li> <a data-link-type="biblio">[CSS-TEXT-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="968cbf52">collapse</span> + <li><span class="dfn-paneled" id="b0e59af4">collapse</span> </ul> <li> <a data-link-type="biblio">[CSS-VALUES-4]</a> defines the following terms: @@ -2167,10 +2166,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="29ca9f85">border-collapse</span> + </ul> <li> <a data-link-type="biblio">[CSS3BG]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="342bb58f">&lt;box></span> <li><span class="dfn-paneled" id="b16da9c9">background-repeat</span> <li><span class="dfn-paneled" id="42871fa3">border-style</span> <li><span class="dfn-paneled" id="c9ecad15">border-width</span> @@ -2180,20 +2183,22 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-css-box-4">[CSS-BOX-4] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> - <dt id="biblio-css-tables-3">[CSS-TABLES-3] - <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> </dl> @@ -2201,8 +2206,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dl> <dt id="biblio-css1">[CSS1] <dd>Håkon Wium Lie; Bert Bos. <a href="https://www.w3.org/TR/CSS1/"><cite>Cascading Style Sheets, level 1</cite></a>. 13 September 2018. REC. URL: <a href="https://www.w3.org/TR/CSS1/">https://www.w3.org/TR/CSS1/</a> - <dt id="biblio-css21">[CSS21] - <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3grid">[CSS3GRID] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-grid/"><cite>CSS Grid Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid/">https://drafts.csswg.org/css-grid/</a> </dl> @@ -2680,16 +2683,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "08eba280": {"dfnID":"08eba280","dfnText":"!","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-req"},{"id":"ref-for-mult-req\u2460"}],"title":"2.1.1. \nBackground Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-req"}, "1548047a": {"dfnID":"1548047a","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"},{"id":"ref-for-typedef-color\u2460"}],"title":"3.1. Line Colors: the border-color properties"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"},{"id":"ref-for-typedef-length-percentage\u2461"},{"id":"ref-for-typedef-length-percentage\u2462"},{"id":"ref-for-typedef-length-percentage\u2463"},{"id":"ref-for-typedef-length-percentage\u2464"},{"id":"ref-for-typedef-length-percentage\u2465"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2466"},{"id":"ref-for-typedef-length-percentage\u2467"},{"id":"ref-for-typedef-length-percentage\u2468"},{"id":"ref-for-typedef-length-percentage\u2460\u24ea"},{"id":"ref-for-typedef-length-percentage\u2460\u2460"},{"id":"ref-for-typedef-length-percentage\u2460\u2461"},{"id":"ref-for-typedef-length-percentage\u2460\u2462"},{"id":"ref-for-typedef-length-percentage\u2460\u2463"}],"title":"2.1.1. \nBackground Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2460\u2464"},{"id":"ref-for-typedef-length-percentage\u2460\u2465"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2460\u2466"},{"id":"ref-for-typedef-length-percentage\u2460\u2467"}],"title":"5.1. \nPartial Borders: the border-limit property"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2460\u2468"},{"id":"ref-for-typedef-length-percentage\u2461\u24ea"}],"title":"5.2. \nThe border-clip properties"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, +"29ca9f85": {"dfnID":"29ca9f85","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2460"}],"title":"4.2. \nCorner Shaping: the corner-shape property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2461"}],"title":"5.1. \nPartial Borders: the border-limit property"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, "30ae4883": {"dfnID":"30ae4883","dfnText":"center","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-background-position-center"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-center"}, -"342bb58f": {"dfnID":"342bb58f","dfnText":"<box>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-box"},{"id":"ref-for-typedef-box\u2460"}],"title":"2.2. \nPainting Area: the background-clip property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-box"}, "42871fa3": {"dfnID":"42871fa3","dfnText":"border-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-style"}],"title":"2.2. \nPainting Area: the background-clip property"},{"refs":[{"id":"ref-for-propdef-border-style\u2460"},{"id":"ref-for-propdef-border-style\u2461"}],"title":"3.1. Line Colors: the border-color properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"},{"refs":[{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"},{"id":"ref-for-mult-opt\u2465"},{"id":"ref-for-mult-opt\u2466"},{"id":"ref-for-mult-opt\u2467"},{"id":"ref-for-mult-opt\u2468"},{"id":"ref-for-mult-opt\u2460\u24ea"},{"id":"ref-for-mult-opt\u2460\u2460"}],"title":"2.1.1. \nBackground Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2461"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2462"}],"title":"5.1. \nPartial Borders: the border-limit property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"},{"refs":[{"id":"ref-for-mult-comma\u2460"},{"id":"ref-for-mult-comma\u2461"},{"id":"ref-for-mult-comma\u2462"},{"id":"ref-for-mult-comma\u2463"}],"title":"2.1.1. \nBackground Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties"},{"refs":[{"id":"ref-for-mult-comma\u2464"}],"title":"2.2. \nPainting Area: the background-clip property"},{"refs":[{"id":"ref-for-mult-comma\u2465"},{"id":"ref-for-mult-comma\u2466"}],"title":"3.1. Line Colors: the border-color properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"},{"id":"ref-for-comb-one\u2461\u2465"},{"id":"ref-for-comb-one\u2461\u2466"},{"id":"ref-for-comb-one\u2461\u2467"},{"id":"ref-for-comb-one\u2461\u2468"},{"id":"ref-for-comb-one\u2462\u24ea"},{"id":"ref-for-comb-one\u2462\u2460"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"},{"refs":[{"id":"ref-for-comb-one\u2462\u2461"},{"id":"ref-for-comb-one\u2462\u2462"},{"id":"ref-for-comb-one\u2462\u2463"},{"id":"ref-for-comb-one\u2462\u2464"},{"id":"ref-for-comb-one\u2462\u2465"},{"id":"ref-for-comb-one\u2462\u2466"},{"id":"ref-for-comb-one\u2462\u2467"},{"id":"ref-for-comb-one\u2462\u2468"},{"id":"ref-for-comb-one\u2463\u24ea"},{"id":"ref-for-comb-one\u2463\u2460"},{"id":"ref-for-comb-one\u2463\u2461"},{"id":"ref-for-comb-one\u2463\u2462"}],"title":"2.1.1. \nBackground Positioning Longhands: the background-position-x, background-position-y, background-position-inline, and background-position-block properties"},{"refs":[{"id":"ref-for-comb-one\u2463\u2463"},{"id":"ref-for-comb-one\u2463\u2464"}],"title":"2.2. \nPainting Area: the background-clip property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2465"}],"title":"4.2. \nCorner Shaping: the corner-shape property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2466"},{"id":"ref-for-comb-one\u2463\u2467"},{"id":"ref-for-comb-one\u2463\u2468"},{"id":"ref-for-comb-one\u2464\u24ea"},{"id":"ref-for-comb-one\u2464\u2460"},{"id":"ref-for-comb-one\u2464\u2461"}],"title":"5.1. \nPartial Borders: the border-limit property"},{"refs":[{"id":"ref-for-comb-one\u2464\u2462"},{"id":"ref-for-comb-one\u2464\u2463"}],"title":"5.2. \nThe border-clip properties"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"4.3. \nCorner Shape and Size: the corners shorthand"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, -"911f092b": {"dfnID":"911f092b","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2460"}],"title":"4.2. \nCorner Shaping: the corner-shape property"},{"refs":[{"id":"ref-for-propdef-border-collapse\u2461"}],"title":"5.1. \nPartial Borders: the border-limit property"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse"}, "938ba280": {"dfnID":"938ba280","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"},{"id":"ref-for-mult-num-range\u2460"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-mult-num-range\u2461"}],"title":"4.2. \nCorner Shaping: the corner-shape property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, -"968cbf52": {"dfnID":"968cbf52","dfnText":"collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-space-collapse-collapse"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-valdef-text-space-collapse-collapse\u2460"}],"title":"4.2. \nCorner Shaping: the corner-shape property"},{"refs":[{"id":"ref-for-valdef-text-space-collapse-collapse\u2461"}],"title":"5.1. \nPartial Borders: the border-limit property"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse"}, +"b0e59af4": {"dfnID":"b0e59af4","dfnText":"collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-white-space-collapse-collapse"}],"title":"4.1. \nCorner Sizing: the 'border-radius property"},{"refs":[{"id":"ref-for-valdef-white-space-collapse-collapse\u2460"}],"title":"4.2. \nCorner Shaping: the corner-shape property"},{"refs":[{"id":"ref-for-valdef-white-space-collapse-collapse\u2461"}],"title":"5.1. \nPartial Borders: the border-limit property"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse"}, "b16da9c9": {"dfnID":"b16da9c9","dfnText":"background-repeat","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-repeat"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-propdef-background-repeat\u2460"}],"title":"6.1. \nAdditions Since Level 3"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-repeat"}, "baca35b9": {"dfnID":"baca35b9","dfnText":"<flex>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-flex"}],"title":"5.2. \nThe border-clip properties"}],"url":"https://drafts.csswg.org/css-grid-2/#typedef-flex"}, "background-painting-area": {"dfnID":"background-painting-area","dfnText":"background painting area","external":false,"refSections":[],"url":"#background-painting-area"}, @@ -2697,6 +2699,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c9ecad15": {"dfnID":"c9ecad15","dfnText":"border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-width"}],"title":"2.2. \nPainting Area: the background-clip property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, "cacb54e0": {"dfnID":"cacb54e0","dfnText":"cubic-bezier()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-cubic-bezier-easing-function-cubic-bezier"}],"title":"4.2. \nCorner Shaping: the corner-shape property"}],"url":"https://drafts.csswg.org/css-easing-2/#funcdef-cubic-bezier-easing-function-cubic-bezier"}, "cc878a3a": {"dfnID":"cc878a3a","dfnText":"fr","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-flex-fr"}],"title":"5.2. \nThe border-clip properties"}],"url":"https://drafts.csswg.org/css-grid-2/#valdef-flex-fr"}, +"e7382b89": {"dfnID":"e7382b89","dfnText":"<box>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-box"},{"id":"ref-for-typedef-box\u2460"}],"title":"2.2. \nPainting Area: the background-clip property"}],"url":"https://drafts.csswg.org/css-box-4/#typedef-box"}, "f0809abc": {"dfnID":"f0809abc","dfnText":"&&","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-all"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "propdef-background-clip": {"dfnID":"propdef-background-clip","dfnText":"background-clip","external":false,"refSections":[{"refs":[{"id":"ref-for-propdef-background-clip"}],"title":"2.2. \nPainting Area: the background-clip property"}],"url":"#propdef-background-clip"}, "propdef-background-position": {"dfnID":"propdef-background-position","dfnText":"background-position","external":false,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position\u2460"}],"title":"2.1. \nBackground Positioning: the background-position shorthand property"},{"refs":[{"id":"ref-for-propdef-background-position\u2461"}],"title":"6.1. \nAdditions Since Level 3"}],"url":"#propdef-background-position"}, @@ -3119,8 +3122,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-backgrounds-3/#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-box-4/#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | view-box", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-grid-2/#typedef-flex": "Expands to: fr", }; @@ -3230,14 +3233,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-repeat": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-repeat","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-repeat"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-style","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-width","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, -"https://drafts.csswg.org/css-backgrounds-3/#typedef-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"<box>","type":"type","url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-box"}, "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-center": {"export":true,"for_":["background-position"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"center","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-center"}, +"https://drafts.csswg.org/css-box-4/#typedef-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"<box>","type":"type","url":"https://drafts.csswg.org/css-box-4/#typedef-box"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-easing-2/#funcdef-cubic-bezier-easing-function-cubic-bezier": {"export":true,"for_":["<cubic-bezier-easing-function>"],"level":"2","normative":true,"shortname":"css-easing","spec":"css-easing-2","status":"current","text":"cubic-bezier()","type":"function","url":"https://drafts.csswg.org/css-easing-2/#funcdef-cubic-bezier-easing-function-cubic-bezier"}, "https://drafts.csswg.org/css-grid-2/#typedef-flex": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"<flex>","type":"type","url":"https://drafts.csswg.org/css-grid-2/#typedef-flex"}, "https://drafts.csswg.org/css-grid-2/#valdef-flex-fr": {"export":true,"for_":["<flex>"],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"fr","type":"value","url":"https://drafts.csswg.org/css-grid-2/#valdef-flex-fr"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-collapse","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse"}, -"https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse": {"export":true,"for_":["text-space-collapse"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"collapse","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse"}, +"https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse": {"export":true,"for_":["white-space-collapse"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"collapse","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse"}, "https://drafts.csswg.org/css-values-4/#comb-all": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"&&","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "https://drafts.csswg.org/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"||","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -3247,6 +3249,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#mult-opt": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"?","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "https://drafts.csswg.org/css-values-4/#mult-req": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"!","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-req"}, "https://drafts.csswg.org/css-values-4/#typedef-length-percentage": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<length-percentage>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-collapse","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-box-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-box-3/Overview.console.txt index 7104739234..ff11316ee9 100644 --- a/tests/github/w3c/csswg-drafts/css-box-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-box-3/Overview.console.txt @@ -1,2 +1,14 @@ LINE 125: Image doesn't exist, so I couldn't determine its width and height: 'images/box.png' +LINE 28: Multiple possible 'document tree' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-document-tree +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:document tree +spec:css2; type:dfn; text:document tree +<a bs-line-number="28" data-link-type="dfn" data-lt="document tree">document tree</a> +LINE 35: Multiple possible 'document tree' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-document-tree +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:document tree +spec:css2; type:dfn; text:document tree +<a bs-line-number="35" data-link-type="dfn" data-lt="document tree">document tree</a> LINE 482: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-box-3/Overview.html b/tests/github/w3c/csswg-drafts/css-box-3/Overview.html index 1fcb7a91c0..a4ef741f39 100644 --- a/tests/github/w3c/csswg-drafts/css-box-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-box-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Box Model Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-box-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -952,7 +951,7 @@ <h1 class="p-name no-ref" id="title">CSS Box Model Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -974,7 +973,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-box] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-box%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1046,7 +1045,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <p>CSS describes how each element and each string of text in a source document is laid out by transforming the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-tree" id="ref-for-concept-document-tree">document tree</a> into a set of <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box" id="ref-for-box">boxes</a>, - whose size, position, and stacking level on the <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/coords.html#TermCanvas" id="ref-for-TermCanvas">canvas</a> depend on the values of their CSS properties. </p> + whose size, position, and stacking level on the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/intro.html#canvas" id="ref-for-canvas">canvas</a> depend on the values of their CSS properties. </p> <p class="note" role="note"><span class="marker">Note:</span> <a href="https://www.w3.org/TR/css-cascade/">CSS Cascading and Inheritance</a> describes how properties are assigned to elements in the box tree, while <a href="https://drafts.csswg.org/css-display-3/#intro"><cite>CSS Display 3</cite> § 1 Introduction</a> describes how the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-tree" id="ref-for-concept-document-tree①">document tree</a> is transformed into the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box-tree" id="ref-for-box-tree">box tree</a>.</p> <p>Each CSS <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box" id="ref-for-box①">box</a> has a rectangular content area, @@ -1658,6 +1657,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d9c76793">physical</span> <li><span class="dfn-paneled" id="a73617e0">writing mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="2a2f1579">canvas</span> + </ul> <li> <a data-link-type="biblio">[DOM]</a> defines the following terms: <ul> @@ -1666,7 +1670,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[SVG2]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="1b9e57ee">canvas</span> <li><span class="dfn-paneled" id="ff72fec7">object bounding box</span> <li><span class="dfn-paneled" id="19d42a6f">stroke bounding box</span> <li><span class="dfn-paneled" id="45ea65d2">svg viewports</span> @@ -1678,13 +1681,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-ruby-1">[CSS-RUBY-1] @@ -1713,7 +1716,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> </dl> @@ -2180,7 +2183,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "0cab481d": {"dfnID":"0cab481d","dfnText":"box-decoration-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-decoration-break"}],"title":"2. The CSS Box Model"}],"url":"https://drafts.csswg.org/css-break-4/#propdef-box-decoration-break"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"}],"title":"3.1. Page-relative (Physical) Margin Properties: the margin-top, margin-right, margin-bottom, and margin-left properties"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2461"},{"id":"ref-for-typedef-length-percentage\u2462"}],"title":"4.1. Page-relative (Physical) Padding Properties: the padding-top, padding-right, padding-bottom, and padding-left properties"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "19d42a6f": {"dfnID":"19d42a6f","dfnText":"stroke bounding box","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStrokeBoundingBox"}],"title":"2.1. Box-edge Keywords"}],"url":"https://svgwg.org/svg2-draft/coords.html#TermStrokeBoundingBox"}, -"1b9e57ee": {"dfnID":"1b9e57ee","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-TermCanvas"}],"title":"1. Introduction"}],"url":"https://svgwg.org/svg2-draft/coords.html#TermCanvas"}, +"2a2f1579": {"dfnID":"2a2f1579","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-canvas"}],"title":"1. Introduction"}],"url":"https://www.w3.org/TR/CSS21/intro.html#canvas"}, "2ebd6278": {"dfnID":"2ebd6278","dfnText":"ruby annotation container","external":true,"refSections":[{"refs":[{"id":"ref-for-ruby-annotation-container-box"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2460"}],"title":"3.1. Page-relative (Physical) Margin Properties: the margin-top, margin-right, margin-bottom, and margin-left properties"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2461"}],"title":"3.2. Margin Shorthand: the margin property"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2462"}],"title":"4.1. Page-relative (Physical) Padding Properties: the padding-top, padding-right, padding-bottom, and padding-left properties"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2463"}],"title":"4.2. Padding Shorthand: the padding property"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2464"}],"title":"6. Changes Since CSS Level 2"}],"url":"https://drafts.csswg.org/css-ruby-1/#ruby-annotation-container-box"}, "31ccd1a9": {"dfnID":"31ccd1a9","dfnText":"longhand property","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"},{"id":"ref-for-longhand\u2460"},{"id":"ref-for-longhand\u2461"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-longhand\u2462"},{"id":"ref-for-longhand\u2463"},{"id":"ref-for-longhand\u2464"}],"title":"3. Margins"},{"refs":[{"id":"ref-for-longhand\u2465"},{"id":"ref-for-longhand\u2466"},{"id":"ref-for-longhand\u2467"}],"title":"4. Padding"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, @@ -2766,12 +2769,12 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-writing-modes-4/#logical-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"logical width","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#logical-width"}, "https://drafts.csswg.org/css-writing-modes-4/#physical": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"physical","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#physical"}, "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, -"https://svgwg.org/svg2-draft/coords.html#TermCanvas": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"canvas","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermCanvas"}, "https://svgwg.org/svg2-draft/coords.html#TermObjectBoundingBox": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"object bounding box","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermObjectBoundingBox"}, "https://svgwg.org/svg2-draft/coords.html#TermSVGViewport": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"svg viewports","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermSVGViewport"}, "https://svgwg.org/svg2-draft/coords.html#TermStrokeBoundingBox": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stroke bounding box","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermStrokeBoundingBox"}, "https://svgwg.org/svg2-draft/coords.html#TermUserCoordinateSystem": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"user coordinate system","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermUserCoordinateSystem"}, "https://svgwg.org/svg2-draft/coords.html#TermViewBox": {"export":true,"for_":["svg"],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"viewbox","type":"element-attr","url":"https://svgwg.org/svg2-draft/coords.html#TermViewBox"}, +"https://www.w3.org/TR/CSS21/intro.html#canvas": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"canvas","type":"dfn","url":"https://www.w3.org/TR/CSS21/intro.html#canvas"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-box-3/block-layout.console.txt b/tests/github/w3c/csswg-drafts/css-box-3/block-layout.console.txt index d17b94abc3..e3ea89e6bb 100644 --- a/tests/github/w3c/csswg-drafts/css-box-3/block-layout.console.txt +++ b/tests/github/w3c/csswg-drafts/css-box-3/block-layout.console.txt @@ -271,6 +271,18 @@ LINE 1955: Multiple elements have the same ID 'inline-level'. Deduping, but this ID may not be stable across revisions. LINE 232: No 'dfn' refs found for 'generated' that are marked for export. <a bs-line-number="232" title="generated box" data-link-type="dfn" data-lt="generated">generated</a> +LINE ~309: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE ~421: Multiple possible 'border-right' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right +spec:css-borders-4; type:property; text:border-right +'border-right' LINE 442: No 'dfn' refs found for 'block flow direction,'. <a bs-line-number="442" data-link-type="dfn" data-lt="block flow direction,">block flow direction,</a> LINE 513: No 'dfn' refs found for 'containing block.'. @@ -347,7 +359,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -374,6 +386,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -386,37 +399,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -424,9 +423,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -439,14 +440,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -464,7 +469,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -491,6 +496,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -503,37 +509,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -541,9 +533,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -556,14 +550,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -572,7 +570,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -599,6 +597,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -611,37 +610,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -649,9 +634,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -664,14 +651,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -691,8 +682,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:border-box spec:css-backgrounds-3; type:value; for:background-origin; text:border-box spec:css-box-4; type:value; for:<box>; text:border-box +spec:css-box-4; type:value; for:<visual-box>; text:border-box +spec:css-box-4; type:value; for:<layout-box>; text:border-box spec:css-box-4; type:value; for:<shape-box>; text:border-box spec:css-box-4; type:value; for:<geometry-box>; text:border-box +spec:css-box-4; type:value; for:<paint-box>; text:border-box +spec:css-box-4; type:value; for:<coord-box>; text:border-box spec:css-inline-3; type:value; text:border-box spec:css-shapes-1; type:value; for:<shape-box>; text:border-box spec:css-shapes-1; type:value; for:shape-outside; text:border-box @@ -710,8 +705,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:content-box spec:css-backgrounds-3; type:value; for:background-origin; text:content-box spec:css-box-4; type:value; for:<box>; text:content-box +spec:css-box-4; type:value; for:<visual-box>; text:content-box +spec:css-box-4; type:value; for:<layout-box>; text:content-box spec:css-box-4; type:value; for:<shape-box>; text:content-box spec:css-box-4; type:value; for:<geometry-box>; text:content-box +spec:css-box-4; type:value; for:<paint-box>; text:content-box +spec:css-box-4; type:value; for:<coord-box>; text:content-box spec:css-shapes-1; type:value; for:<shape-box>; text:content-box spec:css-shapes-1; type:value; for:shape-outside; text:content-box spec:css-sizing-3; type:value; text:content-box @@ -728,8 +727,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:border-box spec:css-backgrounds-3; type:value; for:background-origin; text:border-box spec:css-box-4; type:value; for:<box>; text:border-box +spec:css-box-4; type:value; for:<visual-box>; text:border-box +spec:css-box-4; type:value; for:<layout-box>; text:border-box spec:css-box-4; type:value; for:<shape-box>; text:border-box spec:css-box-4; type:value; for:<geometry-box>; text:border-box +spec:css-box-4; type:value; for:<paint-box>; text:border-box +spec:css-box-4; type:value; for:<coord-box>; text:border-box spec:css-inline-3; type:value; text:border-box spec:css-shapes-1; type:value; for:<shape-box>; text:border-box spec:css-shapes-1; type:value; for:shape-outside; text:border-box @@ -747,8 +750,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:content-box spec:css-backgrounds-3; type:value; for:background-origin; text:content-box spec:css-box-4; type:value; for:<box>; text:content-box +spec:css-box-4; type:value; for:<visual-box>; text:content-box +spec:css-box-4; type:value; for:<layout-box>; text:content-box spec:css-box-4; type:value; for:<shape-box>; text:content-box spec:css-box-4; type:value; for:<geometry-box>; text:content-box +spec:css-box-4; type:value; for:<paint-box>; text:content-box +spec:css-box-4; type:value; for:<coord-box>; text:content-box spec:css-shapes-1; type:value; for:<shape-box>; text:content-box spec:css-shapes-1; type:value; for:shape-outside; text:content-box spec:css-sizing-3; type:value; text:content-box @@ -844,8 +851,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:border-box spec:css-backgrounds-3; type:value; for:background-origin; text:border-box spec:css-box-4; type:value; for:<box>; text:border-box +spec:css-box-4; type:value; for:<visual-box>; text:border-box +spec:css-box-4; type:value; for:<layout-box>; text:border-box spec:css-box-4; type:value; for:<shape-box>; text:border-box spec:css-box-4; type:value; for:<geometry-box>; text:border-box +spec:css-box-4; type:value; for:<paint-box>; text:border-box +spec:css-box-4; type:value; for:<coord-box>; text:border-box spec:css-inline-3; type:value; text:border-box spec:css-shapes-1; type:value; for:<shape-box>; text:border-box spec:css-shapes-1; type:value; for:shape-outside; text:border-box @@ -863,8 +874,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:content-box spec:css-backgrounds-3; type:value; for:background-origin; text:content-box spec:css-box-4; type:value; for:<box>; text:content-box +spec:css-box-4; type:value; for:<visual-box>; text:content-box +spec:css-box-4; type:value; for:<layout-box>; text:content-box spec:css-box-4; type:value; for:<shape-box>; text:content-box spec:css-box-4; type:value; for:<geometry-box>; text:content-box +spec:css-box-4; type:value; for:<paint-box>; text:content-box +spec:css-box-4; type:value; for:<coord-box>; text:content-box spec:css-shapes-1; type:value; for:<shape-box>; text:content-box spec:css-shapes-1; type:value; for:shape-outside; text:content-box spec:css-sizing-3; type:value; text:content-box @@ -906,7 +921,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -933,6 +948,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -945,37 +961,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -983,9 +985,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -998,14 +1002,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1040,7 +1048,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1067,6 +1075,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1079,37 +1088,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1117,9 +1112,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1132,14 +1129,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1149,8 +1150,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:content-box spec:css-backgrounds-3; type:value; for:background-origin; text:content-box spec:css-box-4; type:value; for:<box>; text:content-box +spec:css-box-4; type:value; for:<visual-box>; text:content-box +spec:css-box-4; type:value; for:<layout-box>; text:content-box spec:css-box-4; type:value; for:<shape-box>; text:content-box spec:css-box-4; type:value; for:<geometry-box>; text:content-box +spec:css-box-4; type:value; for:<paint-box>; text:content-box +spec:css-box-4; type:value; for:<coord-box>; text:content-box spec:css-shapes-1; type:value; for:<shape-box>; text:content-box spec:css-shapes-1; type:value; for:shape-outside; text:content-box spec:css-sizing-3; type:value; text:content-box @@ -1226,7 +1231,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1253,6 +1258,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1265,37 +1271,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1303,9 +1295,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1318,14 +1312,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1347,7 +1345,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1374,6 +1372,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1386,37 +1385,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1424,9 +1409,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1439,14 +1426,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1455,7 +1446,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1482,6 +1473,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1494,37 +1486,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1532,9 +1510,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1547,14 +1527,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1572,7 +1556,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1599,6 +1583,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1611,37 +1596,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1649,9 +1620,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1664,14 +1637,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1680,7 +1657,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1707,6 +1684,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1719,37 +1697,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1757,9 +1721,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1772,14 +1738,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1788,7 +1758,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1815,6 +1785,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1827,37 +1798,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1865,9 +1822,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1880,14 +1839,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -1900,7 +1863,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -1927,6 +1890,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -1939,37 +1903,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -1977,9 +1927,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -1992,14 +1944,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2015,7 +1971,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2042,6 +1998,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2054,37 +2011,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2092,9 +2035,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2107,14 +2052,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2125,7 +2074,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2152,6 +2101,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2164,37 +2114,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2202,9 +2138,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2217,14 +2155,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2233,7 +2175,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2260,6 +2202,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2272,37 +2215,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2310,9 +2239,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2325,14 +2256,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2341,7 +2276,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2368,6 +2303,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2380,37 +2316,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2418,9 +2340,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2433,14 +2357,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2449,7 +2377,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2476,6 +2404,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2488,37 +2417,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2526,9 +2441,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2541,14 +2458,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2557,7 +2478,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2584,6 +2505,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2596,37 +2518,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2634,9 +2542,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2649,14 +2559,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2665,7 +2579,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2692,6 +2606,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2704,37 +2619,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2742,9 +2643,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2757,14 +2660,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2773,7 +2680,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2800,6 +2707,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2812,37 +2720,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2850,9 +2744,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2865,14 +2761,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2885,7 +2785,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -2912,6 +2812,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -2924,37 +2825,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -2962,9 +2849,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -2977,14 +2866,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -2993,7 +2886,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3020,6 +2913,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3032,37 +2926,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3070,9 +2950,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3085,14 +2967,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3119,7 +3005,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3146,6 +3032,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3158,37 +3045,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3196,9 +3069,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3211,14 +3086,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3227,7 +3106,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3254,6 +3133,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3266,37 +3146,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3304,9 +3170,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3319,14 +3187,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3335,7 +3207,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3362,6 +3234,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3374,37 +3247,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3412,9 +3271,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3427,14 +3288,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3443,7 +3308,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3470,6 +3335,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3482,37 +3348,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3520,9 +3372,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3535,14 +3389,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3551,7 +3409,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3578,6 +3436,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3590,37 +3449,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3628,9 +3473,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3643,14 +3490,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3672,7 +3523,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3699,6 +3550,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3711,37 +3563,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3749,9 +3587,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3764,14 +3604,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3796,7 +3640,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3823,6 +3667,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3835,37 +3680,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3873,9 +3704,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3888,14 +3721,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -3904,7 +3741,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -3931,6 +3768,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -3943,37 +3781,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -3981,9 +3805,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -3996,14 +3822,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4012,7 +3842,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4039,6 +3869,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4051,37 +3882,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4089,9 +3906,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4104,14 +3923,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4120,7 +3943,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4147,6 +3970,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4159,37 +3983,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4197,9 +4007,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4212,14 +4024,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4228,7 +4044,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4255,6 +4071,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4267,37 +4084,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4305,9 +4108,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4320,14 +4125,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4336,7 +4145,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4363,6 +4172,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4375,37 +4185,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4413,9 +4209,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4428,14 +4226,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4444,7 +4246,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4471,6 +4273,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4483,37 +4286,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4521,9 +4310,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4536,14 +4327,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4563,7 +4358,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4590,6 +4385,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4602,37 +4398,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4640,9 +4422,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4655,14 +4439,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4673,7 +4461,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4700,6 +4488,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4712,37 +4501,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4750,9 +4525,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4765,14 +4542,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4785,7 +4566,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4812,6 +4593,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4824,37 +4606,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4862,9 +4630,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4877,14 +4647,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -4893,7 +4667,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -4920,6 +4694,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -4932,37 +4707,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -4970,9 +4731,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -4985,14 +4748,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5001,7 +4768,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5028,6 +4795,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5040,37 +4808,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5078,9 +4832,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5093,25 +4849,41 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' LINE ~2487: No 'property' refs found for 'none'. 'none' +LINE ~2522: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' +LINE ~2522: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' LINE 2527: Multiple possible 'auto' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5138,6 +4910,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5150,37 +4923,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5188,9 +4947,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5203,14 +4964,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5219,7 +4984,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5246,6 +5011,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5258,37 +5024,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5296,9 +5048,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5311,14 +5065,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5327,7 +5085,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5354,6 +5112,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5366,37 +5125,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5404,9 +5149,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5419,14 +5166,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5435,7 +5186,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5462,6 +5213,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5474,37 +5226,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5512,9 +5250,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5527,14 +5267,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5543,7 +5287,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5570,6 +5314,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5582,37 +5327,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5620,9 +5351,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5635,14 +5368,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5651,7 +5388,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5678,6 +5415,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5690,37 +5428,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5728,9 +5452,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5743,14 +5469,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5759,7 +5489,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5786,6 +5516,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5798,37 +5529,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5836,9 +5553,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5851,14 +5570,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5867,7 +5590,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -5894,6 +5617,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -5906,37 +5630,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -5944,9 +5654,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -5959,14 +5671,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -5975,7 +5691,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6002,6 +5718,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6014,37 +5731,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6052,9 +5755,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6067,14 +5772,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6083,7 +5792,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6110,6 +5819,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6122,37 +5832,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6160,9 +5856,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6175,14 +5873,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6191,7 +5893,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6218,6 +5920,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6230,37 +5933,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6268,9 +5957,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6283,14 +5974,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6299,7 +5994,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6326,6 +6021,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6338,37 +6034,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6376,9 +6058,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6391,23 +6075,39 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' +LINE ~2575: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~2575: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' LINE 2580: Multiple possible 'auto' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6434,6 +6134,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6446,37 +6147,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6484,9 +6171,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6499,14 +6188,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6515,7 +6208,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6542,6 +6235,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6554,37 +6248,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6592,9 +6272,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6607,14 +6289,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6623,7 +6309,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6650,6 +6336,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6662,37 +6349,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6700,9 +6373,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6715,14 +6390,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6731,7 +6410,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6758,6 +6437,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6770,37 +6450,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6808,9 +6474,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6823,14 +6491,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6839,7 +6511,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6866,6 +6538,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6878,37 +6551,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -6916,9 +6575,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -6931,14 +6592,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -6947,7 +6612,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -6974,6 +6639,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -6986,37 +6652,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7024,9 +6676,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7039,14 +6693,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7055,7 +6713,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7082,6 +6740,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7094,37 +6753,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7132,9 +6777,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7147,14 +6794,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7165,7 +6816,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7192,6 +6843,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7204,37 +6856,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7242,9 +6880,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7257,14 +6897,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7273,7 +6917,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7300,6 +6944,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7312,37 +6957,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7350,9 +6981,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7365,14 +6998,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7381,7 +7018,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7408,6 +7045,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7420,37 +7058,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7458,9 +7082,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7473,14 +7099,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7489,7 +7119,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7516,6 +7146,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7528,37 +7159,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7566,9 +7183,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7581,14 +7200,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7597,7 +7220,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7624,6 +7247,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7636,37 +7260,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7674,9 +7284,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7689,14 +7301,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7705,7 +7321,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7732,6 +7348,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7744,37 +7361,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7782,9 +7385,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7797,14 +7402,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7813,7 +7422,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7840,6 +7449,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7852,37 +7462,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7890,9 +7486,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -7905,14 +7503,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -7921,7 +7523,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -7948,6 +7550,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -7960,37 +7563,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -7998,9 +7587,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8013,14 +7604,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8029,7 +7624,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8056,6 +7651,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8068,37 +7664,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8106,9 +7688,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8121,14 +7705,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8137,7 +7725,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8164,6 +7752,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8176,37 +7765,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8214,9 +7789,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8229,14 +7806,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8245,7 +7826,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8272,6 +7853,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8284,37 +7866,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8322,9 +7890,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8337,14 +7907,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8357,7 +7931,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8384,6 +7958,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8396,37 +7971,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8434,9 +7995,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8449,14 +8012,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8467,7 +8034,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8494,6 +8061,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8506,37 +8074,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8544,9 +8098,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8559,14 +8115,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8575,7 +8135,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8602,6 +8162,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8614,37 +8175,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8652,9 +8199,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8667,14 +8216,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8683,7 +8236,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8710,6 +8263,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8722,37 +8276,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8760,9 +8300,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8775,14 +8317,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8791,7 +8337,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8818,6 +8364,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8830,37 +8377,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8868,9 +8401,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8883,14 +8418,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -8899,7 +8438,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -8926,6 +8465,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -8938,37 +8478,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -8976,9 +8502,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -8991,23 +8519,51 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' +LINE ~2668: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' +LINE ~2668: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~2672: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~2672: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' LINE 2702: Multiple possible 'auto' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -9034,6 +8590,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -9046,37 +8603,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -9084,9 +8627,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -9099,14 +8644,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -9117,7 +8666,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -9144,6 +8693,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -9156,37 +8706,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -9194,9 +8730,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -9209,14 +8747,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -9225,7 +8767,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -9252,6 +8794,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -9264,37 +8807,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -9302,9 +8831,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -9317,14 +8848,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -9333,7 +8868,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -9360,6 +8895,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -9372,37 +8908,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -9410,9 +8932,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -9425,14 +8949,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -9442,8 +8970,11 @@ Randomly chose one of them; other instances might get a different random choice. LINE 2774: Multiple possible 'top' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-top To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-anchor-position-1; type:value; text:top +spec:css-anchor-position-1; type:value; for:anchor(); text:top +spec:css-anchor-position-1; type:value; for:position-area; text:top +spec:css-anchor-position-1; type:value; for:<position-area>; text:top spec:css-backgrounds-3; type:value; text:top +spec:css-borders-4; type:value; text:top spec:css-inline-3; type:value; for:baseline-shift; text:top spec:css-inline-3; type:value; for:vertical-align; text:top spec:css-page-floats-3; type:value; for:clear; text:top @@ -9456,8 +8987,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:left spec:css-align-3; type:value; for:justify-self; text:left spec:css-align-3; type:value; for:justify-items; text:left -spec:css-anchor-position-1; type:value; text:left +spec:css-anchor-position-1; type:value; for:anchor(); text:left +spec:css-anchor-position-1; type:value; for:position-area; text:left +spec:css-anchor-position-1; type:value; for:<position-area>; text:left spec:css-backgrounds-3; type:value; text:left +spec:css-borders-4; type:value; text:left spec:css-break-4; type:value; for:break-before; text:left spec:css-break-4; type:value; for:break-after; text:left spec:css-page-floats-3; type:value; for:clear; text:left @@ -9475,8 +9009,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:left spec:css-align-3; type:value; for:justify-self; text:left spec:css-align-3; type:value; for:justify-items; text:left -spec:css-anchor-position-1; type:value; text:left +spec:css-anchor-position-1; type:value; for:anchor(); text:left +spec:css-anchor-position-1; type:value; for:position-area; text:left +spec:css-anchor-position-1; type:value; for:<position-area>; text:left spec:css-backgrounds-3; type:value; text:left +spec:css-borders-4; type:value; text:left spec:css-break-4; type:value; for:break-before; text:left spec:css-break-4; type:value; for:break-after; text:left spec:css-page-floats-3; type:value; for:clear; text:left @@ -9491,8 +9028,11 @@ spec:css-transforms-2; type:value; text:left LINE 2783: Multiple possible 'bottom' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-bottom To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-anchor-position-1; type:value; text:bottom +spec:css-anchor-position-1; type:value; for:anchor(); text:bottom +spec:css-anchor-position-1; type:value; for:position-area; text:bottom +spec:css-anchor-position-1; type:value; for:<position-area>; text:bottom spec:css-backgrounds-3; type:value; text:bottom +spec:css-borders-4; type:value; text:bottom spec:css-inline-3; type:value; for:baseline-shift; text:bottom spec:css-inline-3; type:value; for:vertical-align; text:bottom spec:css-page-floats-3; type:value; for:clear; text:bottom @@ -9505,8 +9045,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:right spec:css-align-3; type:value; for:justify-self; text:right spec:css-align-3; type:value; for:justify-items; text:right -spec:css-anchor-position-1; type:value; text:right +spec:css-anchor-position-1; type:value; for:anchor(); text:right +spec:css-anchor-position-1; type:value; for:position-area; text:right +spec:css-anchor-position-1; type:value; for:<position-area>; text:right spec:css-backgrounds-3; type:value; text:right +spec:css-borders-4; type:value; text:right spec:css-break-4; type:value; for:break-before; text:right spec:css-break-4; type:value; for:break-after; text:right spec:css-page-floats-3; type:value; for:clear; text:right @@ -9524,8 +9067,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:right spec:css-align-3; type:value; for:justify-self; text:right spec:css-align-3; type:value; for:justify-items; text:right -spec:css-anchor-position-1; type:value; text:right +spec:css-anchor-position-1; type:value; for:anchor(); text:right +spec:css-anchor-position-1; type:value; for:position-area; text:right +spec:css-anchor-position-1; type:value; for:<position-area>; text:right spec:css-backgrounds-3; type:value; text:right +spec:css-borders-4; type:value; text:right spec:css-break-4; type:value; for:break-before; text:right spec:css-break-4; type:value; for:break-after; text:right spec:css-page-floats-3; type:value; for:clear; text:right @@ -9543,8 +9089,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:left spec:css-align-3; type:value; for:justify-self; text:left spec:css-align-3; type:value; for:justify-items; text:left -spec:css-anchor-position-1; type:value; text:left +spec:css-anchor-position-1; type:value; for:anchor(); text:left +spec:css-anchor-position-1; type:value; for:position-area; text:left +spec:css-anchor-position-1; type:value; for:<position-area>; text:left spec:css-backgrounds-3; type:value; text:left +spec:css-borders-4; type:value; text:left spec:css-break-4; type:value; for:break-before; text:left spec:css-break-4; type:value; for:break-after; text:left spec:css-page-floats-3; type:value; for:clear; text:left @@ -9565,18 +9114,15 @@ spec:css-align-3; type:value; for:justify-self; text:start spec:css-align-3; type:value; for:align-self; text:start spec:css-align-3; type:value; for:justify-content; text:start spec:css-align-3; type:value; for:align-content; text:start -spec:css-anchor-position-1; type:value; text:start +spec:css-anchor-position-1; type:value; for:anchor(); text:start +spec:css-anchor-position-1; type:value; for:position-area; text:start +spec:css-anchor-position-1; type:value; for:<position-area>; text:start spec:css-content-3; type:value; text:start spec:css-easing-2; type:value; text:start spec:css3-exclusions; type:value; text:start -spec:css-inline-3; type:value; text:start spec:css-rhythm-1; type:value; text:start spec:css-ruby-1; type:value; text:start -spec:css-scroll-snap-2; type:value; for:scroll-start; text:start -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:start -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:start -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:start -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:start +spec:css-scroll-snap-1; type:value; text:start spec:css-text-4; type:value; for:text-align; text:start spec:css-text-4; type:value; for:text-group-align; text:start spec:css-text-decor-4; type:value; text:start @@ -9587,8 +9133,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:left spec:css-align-3; type:value; for:justify-self; text:left spec:css-align-3; type:value; for:justify-items; text:left -spec:css-anchor-position-1; type:value; text:left +spec:css-anchor-position-1; type:value; for:anchor(); text:left +spec:css-anchor-position-1; type:value; for:position-area; text:left +spec:css-anchor-position-1; type:value; for:<position-area>; text:left spec:css-backgrounds-3; type:value; text:left +spec:css-borders-4; type:value; text:left spec:css-break-4; type:value; for:break-before; text:left spec:css-break-4; type:value; for:break-after; text:left spec:css-page-floats-3; type:value; for:clear; text:left @@ -9606,8 +9155,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:right spec:css-align-3; type:value; for:justify-self; text:right spec:css-align-3; type:value; for:justify-items; text:right -spec:css-anchor-position-1; type:value; text:right +spec:css-anchor-position-1; type:value; for:anchor(); text:right +spec:css-anchor-position-1; type:value; for:position-area; text:right +spec:css-anchor-position-1; type:value; for:<position-area>; text:right spec:css-backgrounds-3; type:value; text:right +spec:css-borders-4; type:value; text:right spec:css-break-4; type:value; for:break-before; text:right spec:css-break-4; type:value; for:break-after; text:right spec:css-page-floats-3; type:value; for:clear; text:right @@ -9628,16 +9180,13 @@ spec:css-align-3; type:value; for:justify-self; text:end spec:css-align-3; type:value; for:align-self; text:end spec:css-align-3; type:value; for:justify-content; text:end spec:css-align-3; type:value; for:align-content; text:end -spec:css-anchor-position-1; type:value; text:end +spec:css-anchor-position-1; type:value; for:anchor(); text:end +spec:css-anchor-position-1; type:value; for:position-area; text:end +spec:css-anchor-position-1; type:value; for:<position-area>; text:end spec:css-easing-2; type:value; text:end spec:css3-exclusions; type:value; text:end -spec:css-inline-3; type:value; text:end spec:css-rhythm-1; type:value; text:end -spec:css-scroll-snap-2; type:value; for:scroll-start; text:end -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:end -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:end -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:end -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:end +spec:css-scroll-snap-1; type:value; text:end spec:css-text-4; type:value; for:text-align; text:end spec:css-text-4; type:value; for:text-group-align; text:end spec:css-text-decor-4; type:value; text:end @@ -9648,8 +9197,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:right spec:css-align-3; type:value; for:justify-self; text:right spec:css-align-3; type:value; for:justify-items; text:right -spec:css-anchor-position-1; type:value; text:right +spec:css-anchor-position-1; type:value; for:anchor(); text:right +spec:css-anchor-position-1; type:value; for:position-area; text:right +spec:css-anchor-position-1; type:value; for:<position-area>; text:right spec:css-backgrounds-3; type:value; text:right +spec:css-borders-4; type:value; text:right spec:css-break-4; type:value; for:break-before; text:right spec:css-break-4; type:value; for:break-after; text:right spec:css-page-floats-3; type:value; for:clear; text:right @@ -9667,8 +9219,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:left spec:css-align-3; type:value; for:justify-self; text:left spec:css-align-3; type:value; for:justify-items; text:left -spec:css-anchor-position-1; type:value; text:left +spec:css-anchor-position-1; type:value; for:anchor(); text:left +spec:css-anchor-position-1; type:value; for:position-area; text:left +spec:css-anchor-position-1; type:value; for:<position-area>; text:left spec:css-backgrounds-3; type:value; text:left +spec:css-borders-4; type:value; text:left spec:css-break-4; type:value; for:break-before; text:left spec:css-break-4; type:value; for:break-after; text:left spec:css-page-floats-3; type:value; for:clear; text:left @@ -9725,8 +9280,11 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-align-3; type:value; for:justify-content; text:left spec:css-align-3; type:value; for:justify-self; text:left spec:css-align-3; type:value; for:justify-items; text:left -spec:css-anchor-position-1; type:value; text:left +spec:css-anchor-position-1; type:value; for:anchor(); text:left +spec:css-anchor-position-1; type:value; for:position-area; text:left +spec:css-anchor-position-1; type:value; for:<position-area>; text:left spec:css-backgrounds-3; type:value; text:left +spec:css-borders-4; type:value; text:left spec:css-break-4; type:value; for:break-before; text:left spec:css-break-4; type:value; for:break-after; text:left spec:css-page-floats-3; type:value; for:clear; text:left @@ -9764,7 +9322,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -9791,6 +9349,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -9803,37 +9362,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -9841,9 +9386,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -9856,14 +9403,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -9890,7 +9441,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -9917,6 +9468,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -9929,37 +9481,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -9967,9 +9505,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -9982,14 +9522,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -10125,7 +9669,9 @@ spec:css-align-3; type:value; for:justify-self; text:center spec:css-align-3; type:value; for:align-self; text:center spec:css-align-3; type:value; for:justify-content; text:center spec:css-align-3; type:value; for:align-content; text:center -spec:css-anchor-position-1; type:value; text:center +spec:css-anchor-position-1; type:value; for:anchor(); text:center +spec:css-anchor-position-1; type:value; for:position-area; text:center +spec:css-anchor-position-1; type:value; for:<position-area>; text:center spec:css-backgrounds-3; type:value; text:center spec:css-flexbox-1; type:value; for:align-content; text:center spec:css-flexbox-1; type:value; for:align-items; text:center @@ -10136,11 +9682,7 @@ spec:css-inline-3; type:value; for:vertical-align; text:center spec:css-line-grid-1; type:value; text:center spec:css-rhythm-1; type:value; text:center spec:css-ruby-1; type:value; text:center -spec:css-scroll-snap-2; type:value; for:scroll-start; text:center -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:center -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:center -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:center -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:center +spec:css-scroll-snap-1; type:value; text:center spec:css-speech-1; type:value; text:center spec:css-text-4; type:value; for:text-align; text:center spec:css-text-4; type:value; for:text-group-align; text:center @@ -10166,7 +9708,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -10193,6 +9735,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -10205,37 +9748,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -10243,9 +9772,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -10258,14 +9789,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -10274,7 +9809,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -10301,6 +9836,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -10313,37 +9849,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -10351,9 +9873,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -10366,14 +9890,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -10382,7 +9910,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -10409,6 +9937,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -10421,37 +9950,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -10459,9 +9974,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -10474,14 +9991,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -10490,7 +10011,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -10517,6 +10038,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -10529,37 +10051,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -10567,9 +10075,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -10582,14 +10092,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' diff --git a/tests/github/w3c/csswg-drafts/css-box-3/block-layout.html b/tests/github/w3c/csswg-drafts/css-box-3/block-layout.html index 4abfc11655..f0a6f971be 100644 --- a/tests/github/w3c/csswg-drafts/css-box-3/block-layout.html +++ b/tests/github/w3c/csswg-drafts/css-box-3/block-layout.html @@ -5,7 +5,6 @@ <title>CSS Basic Box Model Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css3-box/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -767,7 +766,7 @@ <h1 class="p-name no-ref" id="title">CSS Basic Box Model Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -804,7 +803,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css3-box] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss3-box%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p></p> <div> @@ -1906,7 +1905,7 @@ <h2 class="heading settled" data-level="10" id="width-and-height"><span class="s mean the same as (and overrides) setting the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing" id="ref-for-propdef-box-sizing①">box-sizing</a> property to that property, but allows width and height to be treated differently and avoids that width and box-sizing getout of sync. </p> - <p class="issue" id="issue-01c5412c"><a class="self-link" href="#issue-01c5412c"></a>The width property of <span class="css">@viewport</span> <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Device Adaptation Module Level 1">[CSS-DEVICE-ADAPT]</a> is a shorthand for min-width and max-width and + <p class="issue" id="issue-01c5412c"><a class="self-link" href="#issue-01c5412c"></a>The width property of <span class="css">@viewport</span> <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Viewport Module Level 1">[CSS-DEVICE-ADAPT]</a> is a shorthand for min-width and max-width and can have either one or two values. Anything we can do to alleviate risk of the confusion? </p> <p class="note" role="note">Note that <span class="css">available</span>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-max-content" id="ref-for-valdef-grid-template-columns-max-content①">max-content</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-min-content" id="ref-for-valdef-grid-template-columns-min-content②">min-content</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-4/#valdef-width-fit-content" id="ref-for-valdef-width-fit-content">fit-content</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-border-box" id="ref-for-valdef-background-clip-border-box②">border-box</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-content-box" id="ref-for-valdef-background-clip-content-box②">content-box</a> and <span class="css">complex</span> do not exist in level 2. </p> @@ -3685,7 +3684,7 @@ <h3 class="heading settled" data-level="21.2" id="painting"><span class="secno"> and contains the root element. Initially, the viewport is anchored with its top left corner at the canvas origin. </p> <p>The painting order for the descendants of an element generating - a stacking context (see the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property) is: </p> + a stacking context (see the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property) is: </p> <ol class="stack"> <li> <p>If the element is a root element: </p> @@ -4567,11 +4566,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="16b64b43">vertical-rl</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d159b57d">print</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS3-EXCLUSIONS]</a> defines the following terms: @@ -4647,7 +4650,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Ian Kilpatrick. <a href="https://drafts.csswg.org/css-anchor-position-1/"><cite>CSS Anchor Positioning</cite></a>. URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] @@ -4655,15 +4658,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-page-floats-3">[CSS-PAGE-FLOATS-3] <dd>Johannes Wilm. <a href="https://drafts.csswg.org/css-page-floats/"><cite>CSS Page Floats</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-floats/">https://drafts.csswg.org/css-page-floats/</a> <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] - <dd>CSS Shapes Module Level 2 URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] @@ -4687,11 +4690,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-writing-modes">[CSS3-WRITING-MODES] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3col">[CSS3COL] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> <dt id="biblio-css3line">[CSS3LINE] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css3pos">[CSS3POS] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css3text">[CSS3TEXT] @@ -4702,11 +4705,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-device-adapt">[CSS-DEVICE-ADAPT] - <dd>Rune Lillesveen; Florian Rivoal; Matt Rakow. <a href="https://drafts.csswg.org/css-device-adapt/"><cite>CSS Device Adaptation Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-device-adapt/">https://drafts.csswg.org/css-device-adapt/</a> + <dd>Florian Rivoal; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/css-viewport/"><cite>CSS Viewport Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-viewport/">https://drafts.csswg.org/css-viewport/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-template-3">[CSS-TEMPLATE-3] <dd>Bert Bos; César Acebal. <a href="https://drafts.csswg.org/css-template/"><cite>CSS Template Layout Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-template/">https://drafts.csswg.org/css-template/</a> <dt id="biblio-css3-break">[CSS3-BREAK] @@ -4714,9 +4717,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css3-marquee">[CSS3-MARQUEE] <dd>Bert Bos. <a href="https://www.w3.org/TR/css3-marquee/"><cite>CSS Marquee Module Level 3</cite></a>. 14 October 2014. NOTE. URL: <a href="https://www.w3.org/TR/css3-marquee/">https://www.w3.org/TR/css3-marquee/</a> <dt id="biblio-css3gcpm">[CSS3GCPM] - <dd>Dave Cramer. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> + <dd>Rachel Andrew; Mike Bremford. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css3tbl">[CSS3TBL] <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> <dt id="biblio-mediaq">[MEDIAQ] @@ -5224,7 +5227,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content mean the same as (and overrides) setting the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing">box-sizing</a> property to that property, but allows width and height to be treated differently and avoids that width and box-sizing getout of sync. <a class="issue-return" href="#issue-1268780e" title="Jump to section">↵</a></div> - <div class="issue">The width property of <span class="css">@viewport</span> <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Device Adaptation Module Level 1">[CSS-DEVICE-ADAPT]</a> is a shorthand for min-width and max-width and + <div class="issue">The width property of <span class="css">@viewport</span> <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Viewport Module Level 1">[CSS-DEVICE-ADAPT]</a> is a shorthand for min-width and max-width and can have either one or two values. Anything we can do to alleviate risk of the confusion? <a class="issue-return" href="#issue-01c5412c" title="Jump to section">↵</a></div> <div class="issue">Or: use the initial value? <a class="issue-return" href="#issue-b0d9dafb" title="Jump to section">↵</a></div> @@ -5507,6 +5510,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "53150a85": {"dfnID":"53150a85","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-top"}],"title":"16. The float property"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-top"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"11. The min-width, max-width, min-height and\nmax-height properties"},{"refs":[{"id":"ref-for-mult-opt\u2461"}],"title":"The \u2018float-displace\u2019 property [alternative\u00a03]"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "539e4c80": {"dfnID":"539e4c80","dfnText":"image-resolution","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-image-resolution"}],"title":"12. Aspect ratios of replaced elements"}],"url":"https://drafts.csswg.org/css-images-4/#propdef-image-resolution"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"21.2. Painting order"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "5737bd1a": {"dfnID":"5737bd1a","dfnText":"block","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-block"},{"id":"ref-for-valdef-display-block\u2460"},{"id":"ref-for-valdef-display-block\u2461"}],"title":"4. Containing blocks"},{"refs":[{"id":"ref-for-valdef-display-block\u2462"}],"title":"5. Flows"},{"refs":[{"id":"ref-for-valdef-display-block\u2463"},{"id":"ref-for-valdef-display-block\u2464"}],"title":"6.1. Block-level boxes, containing blocks\nand anonymous boxes"},{"refs":[{"id":"ref-for-valdef-display-block\u2465"}],"title":"22.1. The float-displace property"},{"refs":[{"id":"ref-for-valdef-display-block\u2466"}],"title":"The \u2018float-displace\u2019 property [alternative\u00a02]"},{"refs":[{"id":"ref-for-valdef-display-block\u2467"},{"id":"ref-for-valdef-display-block\u2468"}],"title":"The \u2018float-displace\u2019 property [alternative\u00a03]"}],"url":"https://drafts.csswg.org/css-display-3/#valdef-display-block"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"},{"id":"ref-for-propdef-direction\u2461"},{"id":"ref-for-propdef-direction\u2462"}],"title":"2. Introduction & definitions"},{"refs":[{"id":"ref-for-propdef-direction\u2463"},{"id":"ref-for-propdef-direction\u2464"}],"title":"4. Containing blocks"},{"refs":[{"id":"ref-for-propdef-direction\u2465"},{"id":"ref-for-propdef-direction\u2466"},{"id":"ref-for-propdef-direction\u2467"},{"id":"ref-for-propdef-direction\u2468"},{"id":"ref-for-propdef-direction\u2460\u24ea"},{"id":"ref-for-propdef-direction\u2460\u2460"}],"title":"15.6. Absolutely positioned, non-replaced\nelements"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u2461"},{"id":"ref-for-propdef-direction\u2460\u2462"},{"id":"ref-for-propdef-direction\u2460\u2463"},{"id":"ref-for-propdef-direction\u2460\u2464"}],"title":"15.7. Absolutely positioned, replaced\nelements"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u2465"},{"id":"ref-for-propdef-direction\u2460\u2466"}],"title":"16. The float property"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u2467"},{"id":"ref-for-propdef-direction\u2460\u2468"}],"title":"18. The clear-after property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"}],"title":"2. Introduction & definitions"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, @@ -5562,7 +5566,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c": {"dfnID":"c","dfnText":"C\nedge","external":false,"refSections":[{"refs":[{"id":"ref-for-c"}],"title":"7. Block-level formatting"},{"refs":[{"id":"ref-for-c\u2460"}],"title":"18. The clear-after property"}],"url":"#c"}, "c1626016": {"dfnID":"c1626016","dfnText":"min-content","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-grid-template-columns-min-content"},{"id":"ref-for-valdef-grid-template-columns-min-content\u2460"},{"id":"ref-for-valdef-grid-template-columns-min-content\u2461"},{"id":"ref-for-valdef-grid-template-columns-min-content\u2462"},{"id":"ref-for-valdef-grid-template-columns-min-content\u2463"}],"title":"10. The width and height properties"},{"refs":[{"id":"ref-for-valdef-grid-template-columns-min-content\u2464"},{"id":"ref-for-valdef-grid-template-columns-min-content\u2465"}],"title":"11. The min-width, max-width, min-height and\nmax-height properties"},{"refs":[{"id":"ref-for-valdef-grid-template-columns-min-content\u2466"}],"title":"15.3. Block-level, non-replaced elements\nin normal flow\nwhen overflow computes to visible"}],"url":"https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-min-content"}, "c1b73c63": {"dfnID":"c1b73c63","dfnText":"padding","external":true,"refSections":[{"refs":[{"id":"ref-for-padding"}],"title":"13. Collapsing margins"}],"url":"https://drafts.csswg.org/css-box-4/#padding"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"21.2. Painting order"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "canvas": {"dfnID":"canvas","dfnText":"canvas","external":false,"refSections":[{"refs":[{"id":"ref-for-canvas"}],"title":"2. Introduction & definitions"},{"refs":[{"id":"ref-for-canvas\u2460"}],"title":"3. The viewport and the canvas"},{"refs":[{"id":"ref-for-canvas\u2461"}],"title":"4. Containing blocks"}],"url":"#canvas"}, "cb055b23": {"dfnID":"cb055b23","dfnText":"line","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-shape-line"},{"id":"ref-for-valdef-shape-line\u2460"},{"id":"ref-for-valdef-shape-line\u2461"},{"id":"ref-for-valdef-shape-line\u2462"},{"id":"ref-for-valdef-shape-line\u2463"}],"title":"The \u2018float-displace\u2019 property [alternative\u00a02]"}],"url":"https://drafts.csswg.org/css-shapes-2/#valdef-shape-line"}, "cc682c89": {"dfnID":"cc682c89","dfnText":"root element","external":true,"refSections":[{"refs":[{"id":"ref-for-root-element"}],"title":"4. Containing blocks"},{"refs":[{"id":"ref-for-root-element\u2460"},{"id":"ref-for-root-element\u2461"}],"title":"15.3. Block-level, non-replaced elements\nin normal flow\nwhen overflow computes to visible"}],"url":"https://drafts.csswg.org/css-display-4/#root-element"}, @@ -6126,7 +6129,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-cascade-5/#computed-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"computed value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "https://drafts.csswg.org/css-contain-2/#valdef-content-visibility-visible": {"export":true,"for_":["content-visibility"],"level":"2","normative":true,"shortname":"css-contain","spec":"css-contain-2","status":"current","text":"visible","type":"value","url":"https://drafts.csswg.org/css-contain-2/#valdef-content-visibility-visible"}, "https://drafts.csswg.org/css-display-3/#valdef-display-block": {"export":true,"for_":["display","<display-outside>"],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"current","text":"block","type":"value","url":"https://drafts.csswg.org/css-display-3/#valdef-display-block"}, -"https://drafts.csswg.org/css-display-3/#valdef-display-list-item": {"export":true,"for_":["display","<display-list-item>"],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"current","text":"list-item","type":"value","url":"https://drafts.csswg.org/css-display-3/#valdef-display-list-item"}, +"https://drafts.csswg.org/css-display-3/#valdef-display-list-item": {"export":true,"for_":["display","<display-listitem>"],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"current","text":"list-item","type":"value","url":"https://drafts.csswg.org/css-display-3/#valdef-display-list-item"}, "https://drafts.csswg.org/css-display-3/#valdef-display-table": {"export":true,"for_":["display","<display-inside>"],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"current","text":"table","type":"value","url":"https://drafts.csswg.org/css-display-3/#valdef-display-table"}, "https://drafts.csswg.org/css-display-4/#block-level-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"block-level box","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, "https://drafts.csswg.org/css-display-4/#initial-containing-block": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"initial containing block","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#initial-containing-block"}, @@ -6178,8 +6181,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-sideways-rl": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"sideways-rl","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-sideways-rl"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical-lr","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical-rl","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-media-print": {"export":true,"for_":["@media"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"print","type":"value","url":"https://drafts.csswg.org/css2/#valdef-media-print"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-box-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-box-4/Overview.console.txt index bd93097d70..ebceb3202a 100644 --- a/tests/github/w3c/csswg-drafts/css-box-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-box-4/Overview.console.txt @@ -1,2 +1,14 @@ LINE 114: Image doesn't exist, so I couldn't determine its width and height: 'images/box.png' +LINE 27: Multiple possible 'document tree' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-document-tree +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:document tree +spec:css2; type:dfn; text:document tree +<a bs-line-number="27" data-link-type="dfn" data-lt="document tree">document tree</a> +LINE 34: Multiple possible 'document tree' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-document-tree +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:document tree +spec:css2; type:dfn; text:document tree +<a bs-line-number="34" data-link-type="dfn" data-lt="document tree">document tree</a> LINE 568: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-box-4/Overview.html b/tests/github/w3c/csswg-drafts/css-box-4/Overview.html index caeca49caf..1d3d3e34e1 100644 --- a/tests/github/w3c/csswg-drafts/css-box-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-box-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Box Model Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-box-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -951,7 +950,7 @@ <h1 class="p-name no-ref" id="title">CSS Box Model Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -973,7 +972,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-box] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-box%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1042,7 +1041,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <p>CSS describes how each element and each string of text in a source document is laid out by transforming the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-tree" id="ref-for-concept-document-tree">document tree</a> into a set of <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box" id="ref-for-box">boxes</a>, - whose size, position, and stacking level on the <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/coords.html#TermCanvas" id="ref-for-TermCanvas">canvas</a> depend on the values of their CSS properties. </p> + whose size, position, and stacking level on the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/intro.html#canvas" id="ref-for-canvas">canvas</a> depend on the values of their CSS properties. </p> <p class="note" role="note"><span class="marker">Note:</span> <a href="https://www.w3.org/TR/css-cascade/">CSS Cascading and Inheritance</a> describes how properties are assigned to elements in the box tree, while <a href="https://drafts.csswg.org/css-display-3/#intro"><cite>CSS Display 3</cite> § 1 Introduction</a> describes how the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-tree" id="ref-for-concept-document-tree①">document tree</a> is transformed into the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box-tree" id="ref-for-box-tree">box tree</a>.</p> <p>Each CSS <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box" id="ref-for-box①">box</a> has a rectangular content area, @@ -1768,6 +1767,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d9c76793">physical</span> <li><span class="dfn-paneled" id="a73617e0">writing mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="2a2f1579">canvas</span> + </ul> <li> <a data-link-type="biblio">[DOM]</a> defines the following terms: <ul> @@ -1776,7 +1780,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[SVG2]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="1b9e57ee">canvas</span> <li><span class="dfn-paneled" id="ff72fec7">object bounding box</span> <li><span class="dfn-paneled" id="19d42a6f">stroke bounding box</span> <li><span class="dfn-paneled" id="45ea65d2">svg viewports</span> @@ -1786,13 +1789,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] @@ -1829,7 +1832,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -1970,9 +1973,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-trim" title="The margin-trim property allows the container to trim the margins of its children where they adjoin the container&apos;s edges.">margin-trim</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -2190,8 +2193,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"}],"title":"3.1. Page-relative (Physical) Margin Properties: the margin-top, margin-right, margin-bottom, and margin-left properties"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2461"},{"id":"ref-for-typedef-length-percentage\u2462"}],"title":"4.1. Page-relative (Physical) Padding Properties: the padding-top, padding-right, padding-bottom, and padding-left properties"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "190183bb": {"dfnID":"190183bb","dfnText":"block size","external":true,"refSections":[{"refs":[{"id":"ref-for-block-size"}],"title":"3.3. Margins at Container Edges: the margin-trim property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-size"}, "19d42a6f": {"dfnID":"19d42a6f","dfnText":"stroke bounding box","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStrokeBoundingBox"}],"title":"2.1. Box-edge Keywords"}],"url":"https://svgwg.org/svg2-draft/coords.html#TermStrokeBoundingBox"}, -"1b9e57ee": {"dfnID":"1b9e57ee","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-TermCanvas"}],"title":"1. Introduction"}],"url":"https://svgwg.org/svg2-draft/coords.html#TermCanvas"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"}],"title":"3.3. Margins at Container Edges: the margin-trim property"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, +"2a2f1579": {"dfnID":"2a2f1579","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-canvas"}],"title":"1. Introduction"}],"url":"https://www.w3.org/TR/CSS21/intro.html#canvas"}, "2ebd6278": {"dfnID":"2ebd6278","dfnText":"ruby annotation container","external":true,"refSections":[{"refs":[{"id":"ref-for-ruby-annotation-container-box"}],"title":"3.1. Page-relative (Physical) Margin Properties: the margin-top, margin-right, margin-bottom, and margin-left properties"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2460"}],"title":"3.2. Margin Shorthand: the margin property"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2461"}],"title":"4.1. Page-relative (Physical) Padding Properties: the padding-top, padding-right, padding-bottom, and padding-left properties"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2462"}],"title":"4.2. Padding Shorthand: the padding property"},{"refs":[{"id":"ref-for-ruby-annotation-container-box\u2463"}],"title":"7. Changes Since CSS Level 2"}],"url":"https://drafts.csswg.org/css-ruby-1/#ruby-annotation-container-box"}, "31ccd1a9": {"dfnID":"31ccd1a9","dfnText":"longhand property","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"},{"id":"ref-for-longhand\u2460"},{"id":"ref-for-longhand\u2461"}],"title":"3. Margins"},{"refs":[{"id":"ref-for-longhand\u2462"},{"id":"ref-for-longhand\u2463"},{"id":"ref-for-longhand\u2464"}],"title":"4. Padding"},{"refs":[{"id":"ref-for-longhand\u2465"}],"title":"5. Borders"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, @@ -2808,10 +2811,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#logical-width": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"logical width","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#logical-width"}, "https://drafts.csswg.org/css-writing-modes-4/#physical": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"physical","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#physical"}, "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, -"https://svgwg.org/svg2-draft/coords.html#TermCanvas": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"canvas","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermCanvas"}, "https://svgwg.org/svg2-draft/coords.html#TermObjectBoundingBox": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"object bounding box","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermObjectBoundingBox"}, "https://svgwg.org/svg2-draft/coords.html#TermSVGViewport": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"svg viewports","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermSVGViewport"}, "https://svgwg.org/svg2-draft/coords.html#TermStrokeBoundingBox": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stroke bounding box","type":"dfn","url":"https://svgwg.org/svg2-draft/coords.html#TermStrokeBoundingBox"}, +"https://www.w3.org/TR/CSS21/intro.html#canvas": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"canvas","type":"dfn","url":"https://www.w3.org/TR/CSS21/intro.html#canvas"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-break-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-break-3/Overview.console.txt index 10b35d0416..0f0091145d 100644 --- a/tests/github/w3c/csswg-drafts/css-break-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-break-3/Overview.console.txt @@ -6,4 +6,22 @@ LINE 890: Image doesn't exist, so I couldn't determine its width and height: 'im LINE 997: Image doesn't exist, so I couldn't determine its width and height: 'images/Remaining-Fragmentainer-Extent.svg' LINE 1062: Image doesn't exist, so I couldn't determine its width and height: 'images/box-break.png' LINE 1173: Image doesn't exist, so I couldn't determine its width and height: 'images/fragmented-transforms.png' +LINE ~1037: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE ~1037: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE ~1050: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' LINE 1358: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-break-3/Overview.html b/tests/github/w3c/csswg-drafts/css-break-3/Overview.html index 0b034f70d1..0e5becfd60 100644 --- a/tests/github/w3c/csswg-drafts/css-break-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-break-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Fragmentation Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-break-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -954,7 +953,7 @@ <h1>CSS Fragmentation Module Level 3 <br> <small>Breaking the Web, one fragment </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -978,7 +977,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-break] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-break%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1428,9 +1427,9 @@ <h3 class="heading settled" data-level="3.3" id="widows-orphans"><span class="se Negative values and zero are invalid and must cause the declaration to be <a href="https://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>. </p> <p> If a block contains fewer lines than the value of <a class="property css" data-link-type="property" href="#propdef-widows" id="ref-for-propdef-widows④">widows</a> or <a class="property css" data-link-type="property" href="#propdef-orphans" id="ref-for-propdef-orphans④">orphans</a>, the rule simply becomes that all lines in the block must be kept together. </p> - <h3 class="heading settled" data-level="3.4" id="page-break-properties"><span class="secno">3.4. </span><span class="content"> Page Break Aliases: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> properties</span><a class="self-link" href="#page-break-properties"></a></h3> + <h3 class="heading settled" data-level="3.4" id="page-break-properties"><span class="secno">3.4. </span><span class="content"> Page Break Aliases: the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> properties</span><a class="self-link" href="#page-break-properties"></a></h3> <p>For compatibility with <a href="https://www.w3.org/TR/CSS21/page.html">CSS Level 2</a>, - UAs that conform to <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> must alias the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before①">page-break-before</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-inside" id="ref-for-propdef-page-break-inside①">page-break-inside</a> properties + UAs that conform to <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> must alias the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before①">page-break-before</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" id="ref-for-propdef-page-break-inside①">page-break-inside</a> properties to <a class="property css" data-link-type="property" href="#propdef-break-before" id="ref-for-propdef-break-before④">break-before</a>, <a class="property css" data-link-type="property" href="#propdef-break-after" id="ref-for-propdef-break-after④">break-after</a>, and <a class="property css" data-link-type="property" href="#propdef-break-inside" id="ref-for-propdef-break-inside③">break-inside</a> by treating the <a class="property css" data-link-type="property">page-break-*</a> properties as <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#legacy-shorthand" id="ref-for-legacy-shorthand">legacy shorthands</a> for the <span class="property">break-*</span> properties with the following value mappings: </p> <table class="data"> @@ -2281,11 +2280,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d97c40f4">principal writing mode</span> </ul> <li> - <a data-link-type="biblio">[CSS22]</a> defines the following terms: + <a data-link-type="biblio">[CSS2]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> - <li><span class="dfn-paneled" id="f6cbcbce">page-break-inside</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="7ee8e6fb">page-break-inside</span> </ul> <li> <a data-link-type="biblio">[CSS3-REGIONS]</a> defines the following terms: @@ -2334,7 +2333,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -2349,8 +2348,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> - <dt id="biblio-css22">[CSS22] - <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-regions">[CSS3-REGIONS] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-css3-sizing">[CSS3-SIZING] @@ -2360,11 +2357,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-writing-modes">[CSS3-WRITING-MODES] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3col">[CSS3COL] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/mediaqueries-5/"><cite>Media Queries Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/mediaqueries-5/">https://drafts.csswg.org/mediaqueries-5/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -2768,23 +2765,23 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "4a57c942": {"dfnID":"4a57c942","dfnText":"border area","external":true,"refSections":[{"refs":[{"id":"ref-for-border-area"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#border-area"}, "5a6dc1f0": {"dfnID":"5a6dc1f0","dfnText":"line break","external":true,"refSections":[{"refs":[{"id":"ref-for-line-break"}],"title":"4.2. \nTypes of Breaks"}],"url":"https://drafts.csswg.org/css-text-4/#line-break"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"},{"id":"ref-for-propdef-direction\u2461"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"},{"refs":[{"id":"ref-for-propdef-direction\u2462"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"},{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"},{"id":"ref-for-propdef-border-radius\u2460"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, "62dcf741": {"dfnID":"62dcf741","dfnText":"margin area","external":true,"refSections":[{"refs":[{"id":"ref-for-margin-area"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#margin-area"}, "65b081ea": {"dfnID":"65b081ea","dfnText":"mask positioning area","external":true,"refSections":[{"refs":[{"id":"ref-for-mask-positioning-area"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.fxtf.org/css-masking-1/#mask-positioning-area"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"5.1. \nBreaking into Varying-size Fragmentainers"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"},{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"}],"title":"3.1. \nBreaks Between Boxes: the break-before and break-after properties"},{"refs":[{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"}],"title":"3.2. \nBreaks Within Boxes: the break-inside property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2464"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "70c9f859": {"dfnID":"70c9f859","dfnText":"<integer>","external":true,"refSections":[{"refs":[{"id":"ref-for-integer-value"}],"title":"3.3. \nBreaks Between Lines: orphans, widows"}],"url":"https://drafts.csswg.org/css-values-4/#integer-value"}, "758665a5": {"dfnID":"758665a5","dfnText":"paged media","external":true,"refSections":[{"refs":[{"id":"ref-for-paged-media"},{"id":"ref-for-paged-media\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-paged-media\u2461"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "7ba1e996": {"dfnID":"7ba1e996","dfnText":"out-of-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-out-of-flow"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-display-4/#out-of-flow"}, +"7ee8e6fb": {"dfnID":"7ee8e6fb","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"},{"id":"ref-for-propdef-page-break-inside\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, "7f0d729a": {"dfnID":"7f0d729a","dfnText":"ltr","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-direction-ltr"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr"}, "8141cabb": {"dfnID":"8141cabb","dfnText":"independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-independent-formatting-context"}],"title":"4.1. \nPossible Break Points"},{"refs":[{"id":"ref-for-independent-formatting-context\u2460"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-display-4/#independent-formatting-context"}, "86928bde": {"dfnID":"86928bde","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"},{"id":"ref-for-propdef-overflow\u2460"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "887c0c5c": {"dfnID":"887c0c5c","dfnText":"inline base direction","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-base-direction"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction"}, "88dd7551": {"dfnID":"88dd7551","dfnText":"block flow direction","external":true,"refSections":[{"refs":[{"id":"ref-for-block-flow-direction"},{"id":"ref-for-block-flow-direction\u2460"},{"id":"ref-for-block-flow-direction\u2461"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-flow-direction"}, "8b3ca704": {"dfnID":"8b3ca704","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-auto"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "99cabd32": {"dfnID":"99cabd32","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"},{"id":"ref-for-in-flow\u2460"}],"title":"3.1.1. \nChild\u2192Parent Break Propagation"}],"url":"https://drafts.csswg.org/css-display-4/#in-flow"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"3.1.1. \nChild\u2192Parent Break Propagation"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9f3d4f17": {"dfnID":"9f3d4f17","dfnText":"block container","external":true,"refSections":[{"refs":[{"id":"ref-for-block-container"}],"title":"3.3. \nBreaks Between Lines: orphans, widows"},{"refs":[{"id":"ref-for-block-container\u2460"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"},{"refs":[{"id":"ref-for-block-container\u2461"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-display-4/#block-container"}, @@ -2792,6 +2789,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "aba1ccaf": {"dfnID":"aba1ccaf","dfnText":"continuous media","external":true,"refSections":[{"refs":[{"id":"ref-for-continuous-media"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/mediaqueries-5/#continuous-media"}, "avoid-break-values": {"dfnID":"avoid-break-values","dfnText":"avoid break values","external":false,"refSections":[{"refs":[{"id":"ref-for-avoid-break-values"}],"title":"4.3. \nForced Breaks"}],"url":"#avoid-break-values"}, "b8f126f1": {"dfnID":"b8f126f1","dfnText":"inline formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-formatting-context"}],"title":"3.3. \nBreaks Between Lines: orphans, widows"}],"url":"https://drafts.csswg.org/css-display-4/#inline-formatting-context"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, "box-fragment": {"dfnID":"box-fragment","dfnText":"box fragment","external":false,"refSections":[{"refs":[{"id":"ref-for-box-fragment"}],"title":"2. \nFragmentation Model and Terminology"},{"refs":[{"id":"ref-for-box-fragment\u2460"},{"id":"ref-for-box-fragment\u2461"}],"title":"4.5. \nOptimizing Unforced Breaks"},{"refs":[{"id":"ref-for-box-fragment\u2462"},{"id":"ref-for-box-fragment\u2463"},{"id":"ref-for-box-fragment\u2464"}],"title":"\nChanges"}],"url":"#box-fragment"}, "column-break": {"dfnID":"column-break","dfnText":"column break","external":false,"refSections":[],"url":"#column-break"}, "d97c40f4": {"dfnID":"d97c40f4","dfnText":"principal writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-principal-writing-mode"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode"}, @@ -2801,7 +2799,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "e511deaa": {"dfnID":"e511deaa","dfnText":"padding area","external":true,"refSections":[{"refs":[{"id":"ref-for-padding-area"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#padding-area"}, "e7ab0d6a": {"dfnID":"e7ab0d6a","dfnText":"scroll","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-scroll"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-scroll"}, "ec0a7b21": {"dfnID":"ec0a7b21","dfnText":"region chain","external":true,"refSections":[{"refs":[{"id":"ref-for-region-chain"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-regions-1/#region-chain"}, -"f6cbcbce": {"dfnID":"f6cbcbce","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"},{"id":"ref-for-propdef-page-break-inside\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "fd9aa8f7": {"dfnID":"fd9aa8f7","dfnText":"block-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-level-box"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"},{"refs":[{"id":"ref-for-block-level-box\u2460"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, "forced-break": {"dfnID":"forced-break","dfnText":"forced break","external":false,"refSections":[{"refs":[{"id":"ref-for-forced-break"}],"title":"2.1. \nParallel Fragmentation Flows"},{"refs":[{"id":"ref-for-forced-break\u2460"}],"title":"4.3. \nForced Breaks"}],"url":"#forced-break"}, "forced-break-values": {"dfnID":"forced-break-values","dfnText":"forced break values","external":false,"refSections":[{"refs":[{"id":"ref-for-forced-break-values"},{"id":"ref-for-forced-break-values\u2460"},{"id":"ref-for-forced-break-values\u2461"}],"title":"4.3. \nForced Breaks"}],"url":"#forced-break-values"}, @@ -3378,12 +3375,12 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-writing-modes-4/#inline-size": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"inline size","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"principal writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr": {"export":true,"for_":["direction"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"ltr","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, -"https://drafts.csswg.org/css2/#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-inside","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "https://drafts.csswg.org/mediaqueries-5/#continuous-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"continuous media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#continuous-media"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://drafts.fxtf.org/css-masking-1/#mask-positioning-area": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"mask positioning area","type":"dfn","url":"https://drafts.fxtf.org/css-masking-1/#mask-positioning-area"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-inside","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-break-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-break-4/Overview.console.txt index c296f09776..4f949bba52 100644 --- a/tests/github/w3c/csswg-drafts/css-break-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-break-4/Overview.console.txt @@ -6,8 +6,24 @@ LINE 1023: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1048: Image doesn't exist, so I couldn't determine its width and height: 'images/Remaining-Fragmentainer-Extent.svg' LINE 1109: Image doesn't exist, so I couldn't determine its width and height: 'images/box-break.png' LINE 1219: Image doesn't exist, so I couldn't determine its width and height: 'images/fragmented-transforms.png' -LINE 302: No 'dfn' refs found for 'region' that are marked for export. -<a bs-line-number="302" data-link-type="dfn" data-lt="region">region</a> +LINE ~1088: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE ~1088: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE ~1098: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' LINE 1238: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 137: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="137" data-dfn-type="dfn" id="break" data-lt="break" data-noexport="by-default" class="dfn-paneled">break</dfn> diff --git a/tests/github/w3c/csswg-drafts/css-break-4/Overview.html b/tests/github/w3c/csswg-drafts/css-break-4/Overview.html index 758723796a..6b4f1f4639 100644 --- a/tests/github/w3c/csswg-drafts/css-break-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-break-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Fragmentation Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-break-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -950,7 +949,7 @@ <h1>CSS Fragmentation Module Level 4 <br> <small>Breaking the Web, one fragment </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -974,7 +973,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-break] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-break%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1276,7 +1275,7 @@ <h4 class="no-num heading settled" id="generic-break-values"><span class="conten <dd> Always force a break before/after the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#principal-box" id="ref-for-principal-box①">principal box</a>. This value breaks through all containing <a data-link-type="dfn" href="#fragmentation-context" id="ref-for-fragmentation-context⑦">fragmentation contexts</a>. - For example, inside a <a data-link-type="dfn" href="https://drafts.csswg.org/css-multicol-1/#multi-column-container" id="ref-for-multi-column-container②">multi-column container</a> in a <a data-link-type="dfn">region</a> in a <span id="ref-for-multi-column-container③">multi-column container</span> in <a data-link-type="dfn" href="https://drafts.csswg.org/mediaqueries-5/#paged-media" id="ref-for-paged-media④">paged media</a>, + For example, inside a <a data-link-type="dfn" href="https://drafts.csswg.org/css-multicol-1/#multi-column-container" id="ref-for-multi-column-container②">multi-column container</a> in a <a data-link-type="dfn" href="https://w3c.github.io/contact-picker/#physical-address-region" id="ref-for-physical-address-region">region</a> in a <span id="ref-for-multi-column-container③">multi-column container</span> in <a data-link-type="dfn" href="https://drafts.csswg.org/mediaqueries-5/#paged-media" id="ref-for-paged-media④">paged media</a>, it forces simultaneously a <a data-link-type="dfn" href="#column-break" id="ref-for-column-break①">column break</a> in the inner <span id="ref-for-multi-column-container④">multi-column container</span>, a <a data-link-type="dfn" href="#region-break" id="ref-for-region-break">region break</a>, a <span id="ref-for-column-break②">column break</span> in the outer <span id="ref-for-multi-column-container⑤">multi-column container</span>, and a <a data-link-type="dfn" href="#page-break" id="ref-for-page-break①">page break</a>. @@ -1426,9 +1425,9 @@ <h3 class="heading settled" data-level="3.3" id="widows-orphans"><span class="se Negative values and zero are invalid and must cause the declaration to be <a href="https://www.w3.org/TR/CSS2/conform.html#ignore">ignored</a>.</p> <p>If a block contains fewer lines than the value of <a class="property css" data-link-type="property" href="#propdef-widows" id="ref-for-propdef-widows④">widows</a> or <a class="property css" data-link-type="property" href="#propdef-orphans" id="ref-for-propdef-orphans④">orphans</a>, the rule simply becomes that all lines in the block must be kept together.</p> - <h3 class="heading settled" data-level="3.4" id="page-break-properties"><span class="secno">3.4. </span><span class="content"> Page Break Aliases: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> properties</span><a class="self-link" href="#page-break-properties"></a></h3> + <h3 class="heading settled" data-level="3.4" id="page-break-properties"><span class="secno">3.4. </span><span class="content"> Page Break Aliases: the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> properties</span><a class="self-link" href="#page-break-properties"></a></h3> <p>For compatibility with <a href="https://www.w3.org/TR/CSS2/page.html">CSS Level 2</a>, - UAs that conform to <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> must alias the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before①">page-break-before</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-inside" id="ref-for-propdef-page-break-inside①">page-break-inside</a> properties + UAs that conform to <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> must alias the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before①">page-break-before</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" id="ref-for-propdef-page-break-inside①">page-break-inside</a> properties to <a class="property css" data-link-type="property" href="#propdef-break-before" id="ref-for-propdef-break-before⑥">break-before</a>, <a class="property css" data-link-type="property" href="#propdef-break-after" id="ref-for-propdef-break-after⑥">break-after</a>, and <a class="property css" data-link-type="property" href="#propdef-break-inside" id="ref-for-propdef-break-inside③">break-inside</a> by treating the <a class="property css" data-link-type="property">page-break-*</a> properties as <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#legacy-shorthand" id="ref-for-legacy-shorthand">legacy shorthands</a> for the <span class="property">break-*</span> properties with the following value mappings:</p> <table class="data"> @@ -2186,6 +2185,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[CONTACT-PICKER]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="4cf37eb4">region</span> + </ul> <li> <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> @@ -2298,11 +2302,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d97c40f4">principal writing mode</span> </ul> <li> - <a data-link-type="biblio">[CSS22]</a> defines the following terms: + <a data-link-type="biblio">[CSS2]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> - <li><span class="dfn-paneled" id="f6cbcbce">page-break-inside</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="7ee8e6fb">page-break-inside</span> </ul> <li> <a data-link-type="biblio">[CSS3-REGIONS]</a> defines the following terms: @@ -2319,14 +2323,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-contact-picker">[CONTACT-PICKER] + <dd>Peter Beverloo. <a href="https://w3c.github.io/contact-picker/"><cite>Contact Picker API</cite></a>. URL: <a href="https://w3c.github.io/contact-picker/">https://w3c.github.io/contact-picker/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] @@ -2334,7 +2340,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-shapes/"><cite>CSS Shapes Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-shapes/">https://drafts.csswg.org/css-shapes/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -2351,8 +2357,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> - <dt id="biblio-css22">[CSS22] - <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-regions">[CSS3-REGIONS] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] @@ -2778,19 +2782,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4225558e": {"dfnID":"4225558e","dfnText":"inline-table","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline-table"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline-table"}, "46080d3b": {"dfnID":"46080d3b","dfnText":"page progression","external":true,"refSections":[{"refs":[{"id":"ref-for-page-progression"},{"id":"ref-for-page-progression\u2460"}],"title":"\nPage Break Values"}],"url":"https://drafts.csswg.org/css-page-3/#page-progression"}, "4a57c942": {"dfnID":"4a57c942","dfnText":"border area","external":true,"refSections":[{"refs":[{"id":"ref-for-border-area"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#border-area"}, +"4cf37eb4": {"dfnID":"4cf37eb4","dfnText":"region","external":true,"refSections":[{"refs":[{"id":"ref-for-physical-address-region"}],"title":"\nGeneric Break Values"}],"url":"https://w3c.github.io/contact-picker/#physical-address-region"}, "521eb6d4": {"dfnID":"521eb6d4","dfnText":"multi-column container","external":true,"refSections":[{"refs":[{"id":"ref-for-multi-column-container"},{"id":"ref-for-multi-column-container\u2460"},{"id":"ref-for-multi-column-container\u2461"},{"id":"ref-for-multi-column-container\u2462"},{"id":"ref-for-multi-column-container\u2463"},{"id":"ref-for-multi-column-container\u2464"}],"title":"\nGeneric Break Values"}],"url":"https://drafts.csswg.org/css-multicol-1/#multi-column-container"}, "54aa64f0": {"dfnID":"54aa64f0","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-margin"}],"title":"5.2. \nAdjoining Margins at Breaks: the margin-break property"}],"url":"https://drafts.csswg.org/css-box-4/#margin"}, "5a6dc1f0": {"dfnID":"5a6dc1f0","dfnText":"line break","external":true,"refSections":[{"refs":[{"id":"ref-for-line-break"}],"title":"4.2. \nTypes of Breaks"}],"url":"https://drafts.csswg.org/css-text-4/#line-break"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"},{"id":"ref-for-propdef-direction\u2461"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"},{"refs":[{"id":"ref-for-propdef-direction\u2462"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"},{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"},{"id":"ref-for-propdef-border-radius\u2460"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, "62dcf741": {"dfnID":"62dcf741","dfnText":"margin area","external":true,"refSections":[{"refs":[{"id":"ref-for-margin-area"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#margin-area"}, "65b081ea": {"dfnID":"65b081ea","dfnText":"mask positioning area","external":true,"refSections":[{"refs":[{"id":"ref-for-mask-positioning-area"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.fxtf.org/css-masking-1/#mask-positioning-area"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"5.1. \nBreaking into Varying-size Fragmentainers"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"},{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"}],"title":"3.1. \nBreaks Between Boxes: the break-before and break-after properties"},{"refs":[{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"}],"title":"3.2. \nBreaks Within Boxes: the break-inside property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"}],"title":"5.2. \nAdjoining Margins at Breaks: the margin-break property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2468"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "70c9f859": {"dfnID":"70c9f859","dfnText":"<integer>","external":true,"refSections":[{"refs":[{"id":"ref-for-integer-value"}],"title":"3.3. \nBreaks Between Lines: orphans, widows"}],"url":"https://drafts.csswg.org/css-values-4/#integer-value"}, "758665a5": {"dfnID":"758665a5","dfnText":"paged media","external":true,"refSections":[{"refs":[{"id":"ref-for-paged-media"},{"id":"ref-for-paged-media\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-paged-media\u2461"}],"title":"2. \nFragmentation Model and Terminology"},{"refs":[{"id":"ref-for-paged-media\u2462"},{"id":"ref-for-paged-media\u2463"}],"title":"\nGeneric Break Values"}],"url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, +"7ee8e6fb": {"dfnID":"7ee8e6fb","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"},{"id":"ref-for-propdef-page-break-inside\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, "7f0d729a": {"dfnID":"7f0d729a","dfnText":"ltr","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-direction-ltr"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr"}, "80eb9508": {"dfnID":"80eb9508","dfnText":"principal box","external":true,"refSections":[{"refs":[{"id":"ref-for-principal-box"},{"id":"ref-for-principal-box\u2460"}],"title":"\nGeneric Break Values"}],"url":"https://drafts.csswg.org/css-display-4/#principal-box"}, "8141cabb": {"dfnID":"8141cabb","dfnText":"independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-independent-formatting-context"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-display-4/#independent-formatting-context"}, @@ -2798,7 +2804,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "887c0c5c": {"dfnID":"887c0c5c","dfnText":"inline base direction","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-base-direction"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction"}, "88dd7551": {"dfnID":"88dd7551","dfnText":"block flow direction","external":true,"refSections":[{"refs":[{"id":"ref-for-block-flow-direction"},{"id":"ref-for-block-flow-direction\u2460"},{"id":"ref-for-block-flow-direction\u2461"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-flow-direction"}, "8b3ca704": {"dfnID":"8b3ca704","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-auto"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "99cabd32": {"dfnID":"99cabd32","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"},{"id":"ref-for-in-flow\u2460"}],"title":"3.1.1. \nChild\u2192Parent Break Propagation"}],"url":"https://drafts.csswg.org/css-display-4/#in-flow"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"3.1.1. \nChild\u2192Parent Break Propagation"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9f3d4f17": {"dfnID":"9f3d4f17","dfnText":"block container","external":true,"refSections":[{"refs":[{"id":"ref-for-block-container"}],"title":"3.3. \nBreaks Between Lines: orphans, widows"},{"refs":[{"id":"ref-for-block-container\u2460"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-display-4/#block-container"}, @@ -2806,6 +2811,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "aba1ccaf": {"dfnID":"aba1ccaf","dfnText":"continuous media","external":true,"refSections":[{"refs":[{"id":"ref-for-continuous-media"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/mediaqueries-5/#continuous-media"}, "avoid-break-values": {"dfnID":"avoid-break-values","dfnText":"avoid break values","external":false,"refSections":[{"refs":[{"id":"ref-for-avoid-break-values"}],"title":"4.3. \nForced Breaks"}],"url":"#avoid-break-values"}, "b8f126f1": {"dfnID":"b8f126f1","dfnText":"inline formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-formatting-context"}],"title":"3.3. \nBreaks Between Lines: orphans, widows"}],"url":"https://drafts.csswg.org/css-display-4/#inline-formatting-context"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, "box-fragment": {"dfnID":"box-fragment","dfnText":"box fragment","external":false,"refSections":[{"refs":[{"id":"ref-for-box-fragment"}],"title":"2. \nFragmentation Model and Terminology"},{"refs":[{"id":"ref-for-box-fragment\u2460"},{"id":"ref-for-box-fragment\u2461"}],"title":"4.5. \nOptimizing Unforced Breaks"}],"url":"#box-fragment"}, "break": {"dfnID":"break","dfnText":"break","external":false,"refSections":[],"url":"#break"}, "column-break": {"dfnID":"column-break","dfnText":"column break","external":false,"refSections":[{"refs":[{"id":"ref-for-column-break"},{"id":"ref-for-column-break\u2460"},{"id":"ref-for-column-break\u2461"}],"title":"\nGeneric Break Values"}],"url":"#column-break"}, @@ -2817,7 +2823,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e511deaa": {"dfnID":"e511deaa","dfnText":"padding area","external":true,"refSections":[{"refs":[{"id":"ref-for-padding-area"}],"title":"2. \nFragmentation Model and Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#padding-area"}, "e7ab0d6a": {"dfnID":"e7ab0d6a","dfnText":"scroll","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-scroll"}],"title":"4.1. \nPossible Break Points"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-scroll"}, "ec0a7b21": {"dfnID":"ec0a7b21","dfnText":"region chain","external":true,"refSections":[{"refs":[{"id":"ref-for-region-chain"}],"title":"5.4.1. \nJoining Boxes for slice"}],"url":"https://drafts.csswg.org/css-regions-1/#region-chain"}, -"f6cbcbce": {"dfnID":"f6cbcbce","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"},{"id":"ref-for-propdef-page-break-inside\u2460"}],"title":"3.4. \nPage Break Aliases: the page-break-before, page-break-after, and page-break-inside properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "fd9aa8f7": {"dfnID":"fd9aa8f7","dfnText":"block-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-level-box"}],"title":"5.4. \nFragmented Borders and Backgrounds: the box-decoration-break property"}],"url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, "forced-break": {"dfnID":"forced-break","dfnText":"forced break","external":false,"refSections":[{"refs":[{"id":"ref-for-forced-break"}],"title":"2.1. \nParallel Fragmentation Flows"},{"refs":[{"id":"ref-for-forced-break\u2460"}],"title":"4.3. \nForced Breaks"}],"url":"#forced-break"}, "forced-break-values": {"dfnID":"forced-break-values","dfnText":"forced break values","external":false,"refSections":[{"refs":[{"id":"ref-for-forced-break-values"},{"id":"ref-for-forced-break-values\u2460"},{"id":"ref-for-forced-break-values\u2461"}],"title":"4.3. \nForced Breaks"}],"url":"#forced-break-values"}, @@ -3410,12 +3415,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#logical-height": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"logical height","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#logical-height"}, "https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"principal writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr": {"export":true,"for_":["direction"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"ltr","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, -"https://drafts.csswg.org/css2/#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-inside","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "https://drafts.csswg.org/mediaqueries-5/#continuous-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"continuous media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#continuous-media"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://drafts.fxtf.org/css-masking-1/#mask-positioning-area": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"mask positioning area","type":"dfn","url":"https://drafts.fxtf.org/css-masking-1/#mask-positioning-area"}, +"https://w3c.github.io/contact-picker/#physical-address-region": {"export":true,"for_":["physical address"],"level":"1","normative":true,"shortname":"contact-picker","spec":"contact-picker","status":"current","text":"region","type":"dfn","url":"https://w3c.github.io/contact-picker/#physical-address-region"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-inside","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.console.txt index e38277fc14..1798ea2ee5 100644 --- a/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.console.txt @@ -3,6 +3,8 @@ Local references: spec:css-cascade-3; type:dfn; for:CSS; text:property for-less references: spec:rdf12-concepts; type:dfn; for:/; text:property +spec:rdf12-concepts; type:dfn; for:/; text:property +spec:css2; type:dfn; for:/; text:property [=property=] LINE ~45: The only 'property' refs for 'font-size' were in ignored specs: 'font-size' @@ -28,8 +30,30 @@ LINE 239: The only 'property' refs for 'font-family' were in ignored specs: LINE ~257: The only 'property' refs for 'font' were in ignored specs: 'font' 'font' -LINE 312: No 'property' refs found for 'display' with spec 'css2'. -''display: block'' +LINE ~547: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~547: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~547: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~547: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE ~583: The only 'property' refs for 'font-size' were in ignored specs: 'font-size' 'font-size' @@ -47,6 +71,8 @@ Local references: spec:css-cascade-3; type:dfn; for:CSS; text:property for-less references: spec:rdf12-concepts; type:dfn; for:/; text:property +spec:rdf12-concepts; type:dfn; for:/; text:property +spec:css2; type:dfn; for:/; text:property [=property=] LINE 1030: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: No 'default' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.html b/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.html index 39defaf1b4..3ef180d212 100644 --- a/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-cascade-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Cascading and Inheritance Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-cascade-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1268,7 +1267,7 @@ <h1 class="p-name no-ref" id="title">CSS Cascading and Inheritance Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1290,7 +1289,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-cascade] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-cascade%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1423,12 +1422,12 @@ <h2 class="heading settled" data-level="2" id="at-import"><span class="secno">2. <ul> <li data-md> <p>If a feature -(such as the <span class="css">@namespace</span> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, +(such as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, and not any imported ones, then it doesn’t apply to the imported stylesheet.</p> <li data-md> <p>If a feature relies on the relative ordering of two or more constructs in a stylesheet -(such as the requirement that <span class="css">@namespace</span> rules must not have any other rules other than <a class="css" data-link-type="maybe" href="#at-ruledef-import" id="ref-for-at-ruledef-import③">@import</a> preceding it), +(such as the requirement that <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①">@namespace</a> rules must not have any other rules other than <a class="css" data-link-type="maybe" href="#at-ruledef-import" id="ref-for-at-ruledef-import③">@import</a> preceding it), it only applies between constructs in the same stylesheet.</p> </ul> <p class="example" id="example-d425da12"><a class="self-link" href="#example-d425da12"></a> For example, declarations in style rules from imported stylesheets interact with the cascade @@ -1581,7 +1580,7 @@ <h3 class="heading settled caniuse-paneled" data-level="3.1" id="all-shorthand"> <p>This can be useful for the root element of a "widget" included in a page, which does not wish to inherit the styles of the outer page. Note, however, that any "default" style applied to that element - (such as, e.g. <a class="css" data-link-type="propdesc">display: block</a> from the UA style sheet on block elements such as <code>&lt;div></code>) + (such as, e.g. <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display: block</a> from the UA style sheet on block elements such as <code>&lt;div></code>) will also be blown away.</p> </div> <h2 class="heading settled" data-level="4" id="value-stages"><span class="secno">4. </span><span class="content"> Value Processing</span><a class="self-link" href="#value-stages"></a></h2> @@ -1686,7 +1685,7 @@ <h3 class="heading settled" data-level="4.5" id="used"><span class="secno">4.5. The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-before" id="ref-for-selectordef-before">::before</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-after" id="ref-for-selectordef-after">::after</a> pseudo-elements, however, are defined to generate boxes almost exactly like normal elements and are therefore defined accept all properties that apply to “all elements”. - See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <span id="ref-for-pseudo-element①">pseudo-elements</span>.</p> + See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22">pseudo-elements</a>.</p> <h3 class="heading settled" data-level="4.6" id="actual"><span class="secno">4.6. </span><span class="content"> Actual Values</span><a class="self-link" href="#actual"></a></h3> <p>A <a data-link-type="dfn" href="#used-value" id="ref-for-used-value⑦">used value</a> is in principle ready to be used, but a user agent may not be able to make use of the value in a given environment. <span class="ex">For example, a user agent may only be able to render borders with integer pixel widths @@ -1697,7 +1696,7 @@ <h3 class="heading settled" data-level="4.6" id="actual"><span class="secno">4.6 <p class="note" role="note"><span class="marker">Note:</span> By probing the actual values of elements, much can be learned about how the document is laid out. However, not all information is recorded in the actual values. - For example, the actual value of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> property + For example, the actual value of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> property does not reflect whether there is a page break or not after the element. Similarly, the actual value of <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-orphans" id="ref-for-propdef-orphans">orphans</a> does not reflect how many orphan lines there is in a certain element. See examples (j) and (k) in the <a href="#stages-examples">table below</a>.</p> @@ -1798,7 +1797,7 @@ <h3 class="heading settled" data-level="4.7" id="stages-examples"><span class="s <td><span class="css">176px</span> <tr> <td>(j) - <th><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a> + <th><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a> <td><small>(none)</small> <td><small>(none)</small> <td><span class="css">auto</span> <small>(initial value)</small> @@ -2013,8 +2012,8 @@ <h3 class="heading settled" data-level="7.2" id="inheriting"><span class="secno" For the root element, which has no parent element, the <a data-link-type="dfn" href="#inherited-value" id="ref-for-inherited-value">inherited value</a> is the <a data-link-type="dfn" href="#initial-value" id="ref-for-initial-value④">initial value</a> of the property.</p> - <p><a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element②">Pseudo-elements</a> inherit according to the fictional tag sequence - described for each <span id="ref-for-pseudo-element③">pseudo-element</span>. <a data-link-type="biblio" href="#biblio-select" title="Selectors Level 3">[SELECT]</a></p> + <p><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22①">Pseudo-elements</a> inherit according to the fictional tag sequence + described for each <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element①">pseudo-element</a>. <a data-link-type="biblio" href="#biblio-select" title="Selectors Level 3">[SELECT]</a></p> <p>Some properties are <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="inherited property" id="inherited-property">inherited properties</dfn>, as defined in their property definition table. This means that, @@ -2300,6 +2299,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="16d57f47">list-style-position</span> </ul> + <li> + <a data-link-type="biblio">[CSS-NAMESPACES-3]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> + </ul> <li> <a data-link-type="biblio">[CSS-PSEUDO-4]</a> defines the following terms: <ul> @@ -2359,11 +2363,17 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5bc8bd12">direction</span> <li><span class="dfn-paneled" id="982e17a3">unicode-bidi</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="2161cf2b">pseudo-elements</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> </ul> <li> <a data-link-type="biblio">[CSSOM]</a> defines the following terms: @@ -2396,15 +2406,17 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-transitions-1">[CSS-TRANSITIONS-1] @@ -2414,7 +2426,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css2">[CSS2] @@ -2441,15 +2453,15 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -2560,18 +2572,18 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </details> <details class="caniuse-status unpositioned" data-anno-for="all-shorthand" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-all">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-all">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-initial" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.2+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-initial-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.2+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-initial-value">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-unset" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>13+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-unset-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>13+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-unset-value">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -2779,6 +2791,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "1548047a": {"dfnID":"1548047a","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "16d57f47": {"dfnID":"16d57f47","dfnText":"list-style-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-position"},{"id":"ref-for-propdef-list-style-position\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-position"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"}],"title":"3.1. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, +"2161cf2b": {"dfnID":"2161cf2b","dfnText":"pseudo-elements","external":true,"refSections":[{"refs":[{"id":"ref-for-x22"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-x22\u2460"}],"title":"7.2. \nInheritance"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-orphans\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, "29a9020b": {"dfnID":"29a9020b","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-values-3/#typedef-length-percentage"}, "2bd7646e": {"dfnID":"2bd7646e","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"}],"title":"3.1. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-values-3/#comb-one"}, @@ -2795,11 +2808,11 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "5869f885": {"dfnID":"5869f885","dfnText":"::before","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-before"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"}],"title":"3.1. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5d973ccb": {"dfnID":"5d973ccb","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"4.3. \nSpecified Values"}],"url":"https://drafts.csswg.org/css-values-3/#css-wide-keywords"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"}],"title":"2.1. \nConditional @import Rules"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "66c521a7": {"dfnID":"66c521a7","dfnText":"flex item","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-item"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6a56abc9": {"dfnID":"6a56abc9","dfnText":"url()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-url"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-3/#funcdef-url"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"4.7. \nExamples"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6e51b40a": {"dfnID":"6e51b40a","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-align-self-auto"}],"title":"4.4. \nComputed Values"},{"refs":[{"id":"ref-for-valdef-align-self-auto\u2460"},{"id":"ref-for-valdef-align-self-auto\u2461"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-align-self-auto"}, "73a16e8f": {"dfnID":"73a16e8f","dfnText":"flex","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex"}, "73ea1d43": {"dfnID":"73ea1d43","dfnText":"color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-color"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, @@ -2811,7 +2824,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"},{"id":"ref-for-string-value\u2461"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "982e17a3": {"dfnID":"982e17a3","dfnText":"unicode-bidi","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-unicode-bidi"},{"id":"ref-for-propdef-unicode-bidi\u2460"}],"title":"3.1. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi"}, "989f9ee6": {"dfnID":"989f9ee6","dfnText":"border-right-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width"}, -"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"},{"id":"ref-for-pseudo-element\u2460"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-pseudo-element\u2461"},{"id":"ref-for-pseudo-element\u2462"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, +"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-pseudo-element\u2460"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "a2a30ba8": {"dfnID":"a2a30ba8","dfnText":"cors protocol","external":true,"refSections":[{"refs":[{"id":"ref-for-cors-protocol"}],"title":"\nPrivacy and Security Considerations"}],"url":"https://fetch.spec.whatwg.org/#cors-protocol"}, "a4cd8a8d": {"dfnID":"a4cd8a8d","dfnText":"border-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image"}, "a9734ee4": {"dfnID":"a9734ee4","dfnText":"border","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border"}, @@ -2822,6 +2835,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "at-ruledef-import": {"dfnID":"at-ruledef-import","dfnText":"@import","external":false,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-import"},{"id":"ref-for-at-ruledef-import\u2460"},{"id":"ref-for-at-ruledef-import\u2461"},{"id":"ref-for-at-ruledef-import\u2462"},{"id":"ref-for-at-ruledef-import\u2463"},{"id":"ref-for-at-ruledef-import\u2464"},{"id":"ref-for-at-ruledef-import\u2465"},{"id":"ref-for-at-ruledef-import\u2466"},{"id":"ref-for-at-ruledef-import\u2467"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-at-ruledef-import\u2468"},{"id":"ref-for-at-ruledef-import\u2460\u24ea"}],"title":"2.1. \nConditional @import Rules"},{"refs":[{"id":"ref-for-at-ruledef-import\u2460\u2460"},{"id":"ref-for-at-ruledef-import\u2460\u2461"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-at-ruledef-import\u2460\u2462"},{"id":"ref-for-at-ruledef-import\u2460\u2463"}],"title":"\nPrivacy and Security Considerations"}],"url":"#at-ruledef-import"}, "b203675a": {"dfnID":"b203675a","dfnText":"getComputedStyle(elt)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-window-getcomputedstyle"}],"title":"4.4. \nComputed Values"}],"url":"https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle"}, "b928dec0": {"dfnID":"b928dec0","dfnText":"em","external":true,"refSections":[{"refs":[{"id":"ref-for-em"}],"title":"4.4. \nComputed Values"}],"url":"https://drafts.csswg.org/css-values-3/#em"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"},{"id":"ref-for-at-ruledef-namespace\u2460"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"},{"id":"ref-for-propdef-break-before\u2460"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, "c533ddd8": {"dfnID":"c533ddd8","dfnText":"@charset","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-charset"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset"}, "caf45308": {"dfnID":"caf45308","dfnText":"font-size-adjust","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size-adjust"}],"title":"4.6. \nActual Values"}],"url":"https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust"}, @@ -2836,6 +2850,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "css-property": {"dfnID":"css-property","dfnText":"properties","external":false,"refSections":[],"url":"#css-property"}, "dd0f8cfb": {"dfnID":"dd0f8cfb","dfnText":"border-bottom-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width"}, "declared-value": {"dfnID":"declared-value","dfnText":"declared value","external":false,"refSections":[{"refs":[{"id":"ref-for-declared-value"},{"id":"ref-for-declared-value\u2460"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-declared-value\u2461"}],"title":"4.2. \nCascaded Values"},{"refs":[{"id":"ref-for-declared-value\u2462"},{"id":"ref-for-declared-value\u2463"}],"title":"5. \nFiltering"},{"refs":[{"id":"ref-for-declared-value\u2464"}],"title":"6. \nCascading"},{"refs":[{"id":"ref-for-declared-value\u2465"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-declared-value\u2466"}],"title":"7.3.3. \nErasing All Declarations: the unset keyword"}],"url":"#declared-value"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"3.1. \nResetting All Properties: the all property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "f5eca8c9": {"dfnID":"f5eca8c9","dfnText":"background","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, "fa293cdd": {"dfnID":"fa293cdd","dfnText":"<url>","external":true,"refSections":[{"refs":[{"id":"ref-for-url-value"},{"id":"ref-for-url-value\u2460"},{"id":"ref-for-url-value\u2461"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-4/#url-value"}, @@ -3246,7 +3261,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", }; function setTypeTitles() { @@ -3372,6 +3387,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-flexbox-1/#propdef-flex": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex","type":"property","url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex"}, "https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-fonts","spec":"css-fonts-5","status":"current","text":"font-size-adjust","type":"property","url":"https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-position","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-position"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-after": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::after","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-after"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-before": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::before","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, "https://drafts.csswg.org/css-sizing-3/#propdef-height": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"height","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, @@ -3396,13 +3412,15 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-writing-modes-3/#propdef-direction": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-3","status":"current","text":"direction","type":"property","url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-3","status":"current","text":"unicode-bidi","type":"property","url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle": {"export":true,"for_":["Window"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"getComputedStyle(elt)","type":"method","url":"https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle"}, "https://drafts.csswg.org/mediaqueries-4/#typedef-media-query": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"<media-query>","type":"type","url":"https://drafts.csswg.org/mediaqueries-4/#typedef-media-query"}, "https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"<media-query-list>","type":"type","url":"https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list"}, "https://drafts.csswg.org/selectors-4/#pseudo-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"pseudo-element","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "https://fetch.spec.whatwg.org/#cors-protocol": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"cors protocol","type":"dfn","url":"https://fetch.spec.whatwg.org/#cors-protocol"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"s","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/selector.html#x22": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-elements","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.console.txt index f980d9e91d..0662f84373 100644 --- a/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.console.txt @@ -3,12 +3,11 @@ Local references: spec:css-cascade-4; type:dfn; for:CSS; text:property for-less references: spec:rdf12-concepts; type:dfn; for:/; text:property +spec:rdf12-concepts; type:dfn; for:/; text:property [=property=] LINE ~46: The only 'property' refs for 'font-size' were in ignored specs: 'font-size' 'font-size' -LINE 144: No 'property' refs found for 'display' with spec 'css2'. -''display: flex'' LINE ~294: The only 'property' refs for 'font' were in ignored specs: 'font' 'font' @@ -30,10 +29,30 @@ LINE 296: The only 'property' refs for 'font-family' were in ignored specs: LINE ~314: The only 'property' refs for 'font' were in ignored specs: 'font' 'font' -LINE 425: No 'property' refs found for 'display' with spec 'css2'. -''display: block'' -LINE 633: No 'property' refs found for 'display' with spec 'css2'. -''display: block'' +LINE ~700: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~700: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~700: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~700: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE ~736: The only 'property' refs for 'font-size' were in ignored specs: 'font-size' 'font-size' @@ -51,7 +70,6 @@ Local references: spec:css-cascade-4; type:dfn; for:CSS; text:property for-less references: spec:rdf12-concepts; type:dfn; for:/; text:property +spec:rdf12-concepts; type:dfn; for:/; text:property [=property=] -LINE 1319: No 'property' refs found for 'display' with spec 'css2'. -''display: contents'' LINE 1380: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.html b/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.html index 62ddd3043d..74d96f891d 100644 --- a/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-cascade-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Cascading and Inheritance Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-cascade-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1266,7 +1265,7 @@ <h1 class="p-name no-ref" id="title">CSS Cascading and Inheritance Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1289,7 +1288,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-cascade] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-cascade%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1435,12 +1434,12 @@ <h2 class="heading settled" data-level="2" id="at-import"><span class="secno">2. <ul> <li data-md> <p>If a feature -(such as the <span class="css">@namespace</span> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, +(such as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, and not any imported ones, then it doesn’t apply to the imported stylesheet.</p> <li data-md> <p>If a feature relies on the relative ordering of two or more constructs in a stylesheet -(such as the requirement that <span class="css">@namespace</span> rules must not have any other rules other than <a class="css" data-link-type="maybe" href="#at-ruledef-import" id="ref-for-at-ruledef-import④">@import</a> preceding it), +(such as the requirement that <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①">@namespace</a> rules must not have any other rules other than <a class="css" data-link-type="maybe" href="#at-ruledef-import" id="ref-for-at-ruledef-import④">@import</a> preceding it), it only applies between constructs in the same stylesheet.</p> </ul> <p class="example" id="example-d425da12"><a class="self-link" href="#example-d425da12"></a> For example, declarations in style rules from imported stylesheets interact with the cascade @@ -1455,7 +1454,7 @@ <h2 class="heading settled" data-level="2" id="at-import"><span class="secno">2. and the optional [<a class="production css" data-link-type="type" href="#typedef-supports-condition" id="ref-for-typedef-supports-condition②">&lt;supports-condition></a>|<a class="production css" data-link-type="type" href="#typedef-declaration" id="ref-for-typedef-declaration①">&lt;declaration></a>] and <a class="production css" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list" id="ref-for-typedef-media-query-list①">&lt;media-query-list></a> (collectively, the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="import-conditions">import conditions</dfn>) state the conditions under which it applies.</p> <div class="example" id="example-05c74581"> - <a class="self-link" href="#example-05c74581"></a> The following <a href="#conditional-import">conditional <span class="css">@import</span> rule</a> only loads the style sheet when the UA <a href="https://www.w3.org/TR/css-conditional-3/#support-definition">supports</a> <a class="css" data-link-type="propdesc">display: flex</a>, + <a class="self-link" href="#example-05c74581"></a> The following <a href="#conditional-import">conditional <span class="css">@import</span> rule</a> only loads the style sheet when the UA <a href="https://www.w3.org/TR/css-conditional-3/#support-definition">supports</a> <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display: flex</a>, and only applies the style sheet on a <a href="https://www.w3.org/TR/CSS2/media.html#media-types">handheld</a> device with a <a href="https://www.w3.org/TR/mediaqueries-4/#width">maximum viewport width</a> of 400px. <pre>@import url("narrow.css") supports(display: flex) handheld and (max-width: 400px);</pre> @@ -1621,7 +1620,7 @@ <h3 class="heading settled" data-level="3.1" id="aliasing"><span class="secno">3 <a class="self-link" href="#example-c7a1887e"></a> For example, the <a class="property css" data-link-type="property">page-break-*</a> properties are <a data-link-type="dfn" href="#legacy-shorthand" id="ref-for-legacy-shorthand①">legacy shorthands</a> for the <span class="property">break-*</span> properties (see <a href="https://drafts.csswg.org/css-break-3/#page-break-properties"><cite>CSS Fragmentation 3</cite> § 3.4 Page Break Aliases: the page-break-before, page-break-after, and page-break-inside properties</a>). - <p>Setting <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before: always</a> expands to <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before">break-before: page</a> at parse time, + <p>Setting <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before: always</a> expands to <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before">break-before: page</a> at parse time, like other shorthands do. Similarly, if <span class="css" id="ref-for-propdef-break-before①">break-before: page</span> is set, calling <code class="highlight">getComputedStyle<c- p>(</c->el<c- p>).</c->pageBreakBefore</code> will return <code class="highlight"><c- u>"always"</c-></code>. @@ -1678,7 +1677,7 @@ <h3 class="heading settled caniuse-paneled" data-level="3.2" id="all-shorthand"> <p>This can be useful for the root element of a "widget" included in a page, which does not wish to inherit the styles of the outer page. Note, however, that any "default" style applied to that element - (such as, e.g. <a class="css" data-link-type="propdesc">display: block</a> from the UA style sheet on block elements such as <code>&lt;div></code>) + (such as, e.g. <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display①">display: block</a> from the UA style sheet on block elements such as <code>&lt;div></code>) will also be blown away.</p> </div> <h2 class="heading settled" data-level="4" id="value-stages"><span class="secno">4. </span><span class="content"> Value Processing</span><a class="self-link" href="#value-stages"></a></h2> @@ -1795,7 +1794,7 @@ <h4 class="heading settled" data-level="4.5.1" id="applies-to"><span class="secn will still affect the calculation of font relative units such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-3/#ch" id="ref-for-ch">ch</a>, and thus possibly any property that takes a <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#length-value" id="ref-for-length-value">&lt;length></a>. </div> <div class="example" id="example-c1c9d619"><a class="self-link" href="#example-c1c9d619"></a> Setting <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-transform" id="ref-for-propdef-text-transform">text-transform</a> on an HTML <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-p-element" id="ref-for-the-p-element">p</a></code> element - (which is <a class="css" data-link-type="propdesc">display: block</a> by default) + (which is <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display②">display: block</a> by default) will have an effect, even though <span class="property" id="ref-for-propdef-text-transform①">text-transform</span> only applies to <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-box" id="ref-for-inline-box">inline boxes</a>, because the property inherits @@ -1808,7 +1807,7 @@ <h4 class="heading settled" data-level="4.5.1" id="applies-to"><span class="secn The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-before" id="ref-for-selectordef-before">::before</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-after" id="ref-for-selectordef-after">::after</a> pseudo-elements, however, are defined to generate boxes almost exactly like normal elements and are therefore defined accept all properties that apply to “all elements”. - See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <span id="ref-for-pseudo-element①">pseudo-elements</span>.</p> + See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22">pseudo-elements</a>.</p> <h3 class="heading settled" data-level="4.6" id="actual"><span class="secno">4.6. </span><span class="content"> Actual Values</span><a class="self-link" href="#actual"></a></h3> <p>A <a data-link-type="dfn" href="#used-value" id="ref-for-used-value⑧">used value</a> is in principle ready to be used, but a user agent may not be able to make use of the value in a given environment. <span class="ex">For example, a user agent may only be able to render borders with integer pixel widths @@ -1819,7 +1818,7 @@ <h3 class="heading settled" data-level="4.6" id="actual"><span class="secno">4.6 <p class="note" role="note"><span class="marker">Note:</span> By probing the actual values of elements, much can be learned about how the document is laid out. However, not all information is recorded in the actual values. - For example, the actual value of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> property + For example, the actual value of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> property does not reflect whether there is a page break or not after the element. Similarly, the actual value of <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-orphans" id="ref-for-propdef-orphans">orphans</a> does not reflect how many orphan lines there is in a certain element. See examples (j) and (k) in the <a href="#stages-examples">table below</a>.</p> @@ -1920,7 +1919,7 @@ <h3 class="heading settled" data-level="4.7" id="stages-examples"><span class="s <td><span class="css">176px</span> <tr> <td>(j) - <th><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a> + <th><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a> <td><small>(none)</small> <td><small>(none)</small> <td><span class="css">auto</span> <small>(initial value)</small> @@ -2152,8 +2151,8 @@ <h3 class="heading settled" data-level="7.2" id="inheriting"><span class="secno" the <a data-link-type="dfn" href="#inherited-value" id="ref-for-inherited-value">inherited value</a> is the <a data-link-type="dfn" href="#initial-value" id="ref-for-initial-value④">initial value</a> of the property.</p> <p>For a <a data-link-type="biblio" href="#biblio-dom" title="DOM Standard">[DOM]</a> tree with shadows, inheritance operates on the <a data-link-type="dfn" href="https://drafts.csswg.org/css-scoping-1/#flat-tree" id="ref-for-flat-tree②">flattened element tree</a>. <span class="note">This means that slotted elements inherit from the <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element" id="ref-for-the-slot-element">slot</a></code> they’re assigned to, - rather than directly from their <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-light-tree" id="ref-for-concept-light-tree">light tree</a> parent.</span> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element②">Pseudo-elements</a> inherit according to the fictional tag sequence - described for each <span id="ref-for-pseudo-element③">pseudo-element</span>. <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a></p> + rather than directly from their <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-light-tree" id="ref-for-concept-light-tree">light tree</a> parent.</span> <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22①">Pseudo-elements</a> inherit according to the fictional tag sequence + described for each <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element①">pseudo-element</a>. <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a></p> <p>Some properties are <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="inherited property" id="inherited-property">inherited properties</dfn>, as defined in their property definition table. This means that, @@ -2291,7 +2290,7 @@ <h3 class="heading settled" data-level="8.2" id="changes-2016"><span class="secn <ins> <ul> <li>If a feature - (such as the <span class="css">@namespace</span> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, + (such as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace②">@namespace</a> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, and not any imported ones, then it doesn’t apply to the imported stylesheet. <li>If a feature relies on the relative ordering of two or more constructs in a stylesheet @@ -2304,7 +2303,7 @@ <h3 class="heading settled" data-level="8.2" id="changes-2016"><span class="secn <a class="self-link" href="#change-2016-text"></a> Specified that text nodes are considered children of their parent element, and receive styles via defaulting, as their properties are now observable distinct from their inline parent’s - via <a class="css" data-link-type="propdesc">display: contents</a> <a data-link-type="biblio" href="#biblio-css-display-3" title="CSS Display Module Level 3">[css-display-3]</a>. + via <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display③">display: contents</a> <a data-link-type="biblio" href="#biblio-css-display-3" title="CSS Display Module Level 3">[css-display-3]</a>. <blockquote> <ins> <p>For the purpose of this specification, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-nodes" id="ref-for-text-nodes①">text nodes</a> are treated as <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-3/#elements" id="ref-for-elements①">element</a> children of their associated element, @@ -2613,6 +2612,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="16d57f47">list-style-position</span> </ul> + <li> + <a data-link-type="biblio">[CSS-NAMESPACES-3]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> + </ul> <li> <a data-link-type="biblio">[CSS-PSEUDO-4]</a> defines the following terms: <ul> @@ -2688,12 +2692,18 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3bd4bbe9">text-orientation</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="2161cf2b">pseudo-elements</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> </ul> <li> <a data-link-type="biblio">[CSSOM]</a> defines the following terms: @@ -2741,21 +2751,23 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-conditional-5">[CSS-CONDITIONAL-5] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-5/"><cite>CSS Conditional Rules Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-5/">https://drafts.csswg.org/css-conditional-5/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-5/"><cite>CSS Conditional Rules Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-5/">https://drafts.csswg.org/css-conditional-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-scoping-1">[CSS-SCOPING-1] @@ -2769,7 +2781,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css2">[CSS2] @@ -2800,13 +2812,13 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] @@ -2902,7 +2914,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <details class="mdn-anno unpositioned" data-anno-for="default"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/revert" title="The revert CSS keyword reverts the cascaded value of the property from its current value to the value the property would have had if no changes had been made by the current style origin to the current element. Thus, it resets the property to its inherited value if it inherits from its parent or to the default value established by the user agent&apos;s stylesheet (or by user styles, if any exist). It can be applied to any CSS property, including the CSS shorthand property all.">revert</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/revert" title="The revert CSS keyword reverts the cascaded value of the property from its current value to the value the property would have had if no changes had been made by the current style origin to the current element. Thus, it resets the property either to user agent set value, to user set value, to its inherited value (if it is inheritable), or to initial value. It can be applied to any CSS property, including the CSS shorthand property all.">revert</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>67+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span> @@ -2933,23 +2945,23 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </details> <details class="caniuse-status unpositioned" data-anno-for="all-shorthand" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-all">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-all">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-initial" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.2+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-initial-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.2+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-initial-value">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-unset" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>13+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-unset-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>13+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-unset-value">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-revert" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>84+</span></span><span class="firefox yes"><span>Firefox</span><span>67+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>73+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>14.0+</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-revert-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>84+</span></span><span class="firefox yes"><span>Firefox</span><span>67+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>73+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>14.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-revert-value">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -3161,6 +3173,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "174d5a21": {"dfnID":"174d5a21","dfnText":"element","external":true,"refSections":[{"refs":[{"id":"ref-for-elements"}],"title":"1.1. \nModule Interactions"},{"refs":[{"id":"ref-for-elements\u2460"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-display-3/#elements"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"}],"title":"3.2. \nResetting All Properties: the all property"},{"refs":[{"id":"ref-for-custom-property\u2460"},{"id":"ref-for-custom-property\u2461"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, "19f9e9df": {"dfnID":"19f9e9df","dfnText":"shadow tree","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-shadow-tree"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2460"}],"title":"8.1. \nChanges Since the 28 August 2018 Candidate Recommendation"}],"url":"https://dom.spec.whatwg.org/#concept-shadow-tree"}, +"2161cf2b": {"dfnID":"2161cf2b","dfnText":"pseudo-elements","external":true,"refSections":[{"refs":[{"id":"ref-for-x22"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-x22\u2460"}],"title":"7.2. \nInheritance"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, "22109b0e": {"dfnID":"22109b0e","dfnText":"flat tree","external":true,"refSections":[{"refs":[{"id":"ref-for-flat-tree"},{"id":"ref-for-flat-tree\u2460"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-flat-tree\u2461"}],"title":"7.2. \nInheritance"},{"refs":[{"id":"ref-for-flat-tree\u2462"},{"id":"ref-for-flat-tree\u2463"}],"title":"8.1. \nChanges Since the 28 August 2018 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-scoping-1/#flat-tree"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-orphans\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, "29a9020b": {"dfnID":"29a9020b","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-values-3/#typedef-length-percentage"}, @@ -3182,11 +3195,11 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "5869f885": {"dfnID":"5869f885","dfnText":"::before","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-before"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"}],"title":"3.2. \nResetting All Properties: the all property"},{"refs":[{"id":"ref-for-propdef-direction\u2461"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5d973ccb": {"dfnID":"5d973ccb","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"4.3. \nSpecified Values"}],"url":"https://drafts.csswg.org/css-values-3/#css-wide-keywords"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"}],"title":"2.1. \nConditional @import Rules"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "66c521a7": {"dfnID":"66c521a7","dfnText":"flex item","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-item"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6a56abc9": {"dfnID":"6a56abc9","dfnText":"url()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-url"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-3/#funcdef-url"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"4.7. \nExamples"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6e51b40a": {"dfnID":"6e51b40a","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-align-self-auto"}],"title":"4.4. \nComputed Values"},{"refs":[{"id":"ref-for-valdef-align-self-auto\u2460"},{"id":"ref-for-valdef-align-self-auto\u2461"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-align-self-auto"}, "6f7798a0": {"dfnID":"6f7798a0","dfnText":"root inline box","external":true,"refSections":[{"refs":[{"id":"ref-for-root-inline-box"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-inline-3/#root-inline-box"}, "732c4198": {"dfnID":"732c4198","dfnText":"flattened element tree","external":true,"refSections":[{"refs":[{"id":"ref-for-flat-tree"},{"id":"ref-for-flat-tree\u2460"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-flat-tree\u2461"}],"title":"7.2. \nInheritance"},{"refs":[{"id":"ref-for-flat-tree\u2462"},{"id":"ref-for-flat-tree\u2463"}],"title":"8.1. \nChanges Since the 28 August 2018 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-scoping-1/#flat-tree"}, @@ -3198,12 +3211,11 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "8831f13c": {"dfnID":"8831f13c","dfnText":"text-indent","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-indent"}],"title":"6.3. \nImportant Declarations: the !important annotation"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"},{"id":"ref-for-propdef-width\u2462"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8c1eb8d0": {"dfnID":"8c1eb8d0","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-3/#mult-opt"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.1. \nAliasing"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "9638f92b": {"dfnID":"9638f92b","dfnText":"connected","external":true,"refSections":[{"refs":[{"id":"ref-for-connected"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-connected\u2460"}],"title":"8.1. \nChanges Since the 28 August 2018 Candidate Recommendation"}],"url":"https://dom.spec.whatwg.org/#connected"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"},{"id":"ref-for-string-value\u2461"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "982e17a3": {"dfnID":"982e17a3","dfnText":"unicode-bidi","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-unicode-bidi"},{"id":"ref-for-propdef-unicode-bidi\u2460"}],"title":"3.2. \nResetting All Properties: the all property"},{"refs":[{"id":"ref-for-propdef-unicode-bidi\u2461"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi"}, "989f9ee6": {"dfnID":"989f9ee6","dfnText":"border-right-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width"}, -"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"},{"id":"ref-for-pseudo-element\u2460"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-pseudo-element\u2461"},{"id":"ref-for-pseudo-element\u2462"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, +"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-pseudo-element\u2460"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "a15951ea": {"dfnID":"a15951ea","dfnText":"supports()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-supports"}],"title":"8.3. \nChanges Since the 21 April 2015 Working Draft"},{"refs":[{"id":"ref-for-funcdef-supports\u2460"}],"title":"8.4. \nAdditions Since Level 3"}],"url":"https://drafts.csswg.org/css-conditional-5/#funcdef-supports"}, "a2a30ba8": {"dfnID":"a2a30ba8","dfnText":"cors protocol","external":true,"refSections":[{"refs":[{"id":"ref-for-cors-protocol"}],"title":"\nPrivacy and Security Considerations"}],"url":"https://fetch.spec.whatwg.org/#cors-protocol"}, "a4cd8a8d": {"dfnID":"a4cd8a8d","dfnText":"border-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image"}, @@ -3218,6 +3230,8 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "b80d76a2": {"dfnID":"b80d76a2","dfnText":"p","external":true,"refSections":[{"refs":[{"id":"ref-for-the-p-element"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://html.spec.whatwg.org/multipage/grouping-content.html#the-p-element"}, "b928dec0": {"dfnID":"b928dec0","dfnText":"em","external":true,"refSections":[{"refs":[{"id":"ref-for-em"}],"title":"4.4. \nComputed Values"}],"url":"https://drafts.csswg.org/css-values-3/#em"}, "b9b4e99a": {"dfnID":"b9b4e99a","dfnText":"ch","external":true,"refSections":[{"refs":[{"id":"ref-for-ch"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-values-3/#ch"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.1. \nAliasing"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"},{"id":"ref-for-at-ruledef-namespace\u2460"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-at-ruledef-namespace\u2461"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"},{"id":"ref-for-propdef-break-before\u2460"},{"id":"ref-for-propdef-break-before\u2461"},{"id":"ref-for-propdef-break-before\u2462"}],"title":"3.1. \nAliasing"},{"refs":[{"id":"ref-for-propdef-break-before\u2463"},{"id":"ref-for-propdef-break-before\u2464"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"},{"id":"ref-for-at-ruledef-supports\u2460"}],"title":"2.1. \nConditional @import Rules"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "c533ddd8": {"dfnID":"c533ddd8","dfnText":"@charset","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-charset"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-at-ruledef-charset\u2460"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset"}, @@ -3237,6 +3251,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "dd0f8cfb": {"dfnID":"dd0f8cfb","dfnText":"border-bottom-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width"}, "declared-value": {"dfnID":"declared-value","dfnText":"declared value","external":false,"refSections":[{"refs":[{"id":"ref-for-declared-value"},{"id":"ref-for-declared-value\u2460"},{"id":"ref-for-declared-value\u2461"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-declared-value\u2462"}],"title":"4.2. \nCascaded Values"},{"refs":[{"id":"ref-for-declared-value\u2463"},{"id":"ref-for-declared-value\u2464"}],"title":"5. \nFiltering"},{"refs":[{"id":"ref-for-declared-value\u2465"}],"title":"6. \nCascading"},{"refs":[{"id":"ref-for-declared-value\u2466"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-declared-value\u2467"}],"title":"7.3.3. \nErasing All Declarations: the unset keyword"},{"refs":[{"id":"ref-for-declared-value\u2468"}],"title":"8.1. \nChanges Since the 28 August 2018 Candidate Recommendation"}],"url":"#declared-value"}, "ee7bba09": {"dfnID":"ee7bba09","dfnText":"response","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response"}],"title":"2.3. \nContent-Type of CSS Style Sheets"}],"url":"https://fetch.spec.whatwg.org/#concept-response"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-propdef-display\u2460"}],"title":"3.2. \nResetting All Properties: the all property"},{"refs":[{"id":"ref-for-propdef-display\u2461"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-propdef-display\u2462"}],"title":"8.2. \nChanges Since the 14 January 2016 Candidate Recommendation"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "encapsulation-contexts": {"dfnID":"encapsulation-contexts","dfnText":"encapsulation contexts","external":false,"refSections":[{"refs":[{"id":"ref-for-encapsulation-contexts"},{"id":"ref-for-encapsulation-contexts\u2460"},{"id":"ref-for-encapsulation-contexts\u2461"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-encapsulation-contexts\u2462"}],"title":"8.4. \nAdditions Since Level 3"}],"url":"#encapsulation-contexts"}, "f5eca8c9": {"dfnID":"f5eca8c9","dfnText":"background","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, @@ -3657,7 +3672,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | ch | cm | em | ex | in | mm | pc | pt | px | q | rem | vh | vmax | vmin | vw", }; @@ -3802,6 +3817,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-fonts","spec":"css-fonts-5","status":"current","text":"font-size-adjust","type":"property","url":"https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust"}, "https://drafts.csswg.org/css-inline-3/#root-inline-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"root inline box","type":"dfn","url":"https://drafts.csswg.org/css-inline-3/#root-inline-box"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-position","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-position"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-after": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::after","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-after"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-before": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::before","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, "https://drafts.csswg.org/css-scoping-1/#flat-tree": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-scoping","spec":"css-scoping-1","status":"current","text":"flat tree","type":"dfn","url":"https://drafts.csswg.org/css-scoping-1/#flat-tree"}, @@ -3833,8 +3849,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"text-orientation","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing-mode","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle": {"export":true,"for_":["Window"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"getComputedStyle(elt)","type":"method","url":"https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle"}, "https://drafts.csswg.org/mediaqueries-4/#media-query": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"media query","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-4/#media-query"}, "https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"<media-query-list>","type":"type","url":"https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list"}, @@ -3847,6 +3861,10 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"slot","type":"element","url":"https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"s","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element"}, "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#content-type": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"content-type metadata","type":"dfn","url":"https://html.spec.whatwg.org/multipage/urls-and-fetching.html#content-type"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/selector.html#x22": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-elements","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.console.txt index 62bbdb22d1..a97af999fc 100644 --- a/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.console.txt @@ -3,6 +3,8 @@ Local references: spec:css-cascade-5; type:dfn; for:CSS; text:property for-less references: spec:rdf12-concepts; type:dfn; for:/; text:property +spec:rdf12-concepts; type:dfn; for:/; text:property +spec:css2; type:dfn; for:/; text:property [=property=] LINE ~43: The only 'property' refs for 'font-size' were in ignored specs: 'font-size' @@ -28,9 +30,39 @@ LINE 313: The only 'property' refs for 'font-family' were in ignored specs: LINE ~331: The only 'property' refs for 'font' were in ignored specs: 'font' 'font' +LINE ~728: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~728: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~728: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~728: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE ~764: The only 'property' refs for 'font-size' were in ignored specs: 'font-size' 'font-size' +LINE ~854: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' LINE ~1164: The only 'property' refs for 'font-style' were in ignored specs: 'font-style' 'font-style' @@ -42,10 +74,8 @@ LINE ~1170: The only 'property' refs for 'font-family' were in ignored specs: 'font-family' LINE ~1231: No 'dfn' refs found for 'css identifier' with spec 'css-syntax-3'. [=CSS identifier=] -LINE 1325: Multiple possible 'default' maybe refs. -Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-anchor-position-1; type:value; text:default -spec:css-ui-4; type:value; text:default -''default'' LINE 1673: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'dom-csslayerblockrule-name' ID found, skipping MDN features that would target it. +WARNING: No 'csslayerblockrule' ID found, skipping MDN features that would target it. +WARNING: No 'dom-csslayerstatementrule-namelist' ID found, skipping MDN features that would target it. +WARNING: No 'csslayerstatementrule' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.html b/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.html index 172d520674..74a1539aba 100644 --- a/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-cascade-5/Overview.html @@ -5,7 +5,6 @@ <title>CSS Cascading and Inheritance Level 5</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-cascade-5/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1261,7 +1260,7 @@ <h1 class="p-name no-ref" id="title">CSS Cascading and Inheritance Level 5</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1284,7 +1283,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-cascade] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-cascade%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1442,12 +1441,12 @@ <h2 class="heading settled" data-level="2" id="at-import"><span class="secno">2. <ul> <li data-md> <p>If a feature -(such as the <span class="css">@namespace</span> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, +(such as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule) <em>explicitly</em> defines that it only applies to a particular stylesheet, and not any imported ones, then it doesn’t apply to the imported stylesheet.</p> <li data-md> <p>If a feature relies on the relative ordering of two or more constructs in a stylesheet -(such as the requirement that <span class="css">@namespace</span> rules must not have any other rules other than <a class="css" data-link-type="maybe" href="#at-ruledef-import" id="ref-for-at-ruledef-import③">@import</a> preceding it), +(such as the requirement that <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①">@namespace</a> rules must not have any other rules other than <a class="css" data-link-type="maybe" href="#at-ruledef-import" id="ref-for-at-ruledef-import③">@import</a> preceding it), it only applies between constructs in the same stylesheet.</p> </ul> <p class="example" id="example-d425da12"><a class="self-link" href="#example-d425da12"></a> For example, declarations in style rules from imported stylesheets interact with the cascade @@ -1645,7 +1644,7 @@ <h3 class="heading settled" data-level="3.1" id="aliasing"><span class="secno">3 <a class="self-link" href="#example-c7a1887e"></a> For example, the <a class="property css" data-link-type="property">page-break-*</a> properties are <a data-link-type="dfn" href="#legacy-shorthand" id="ref-for-legacy-shorthand①">legacy shorthands</a> for the <span class="property">break-*</span> properties (see <a href="https://drafts.csswg.org/css-break-3/#page-break-properties"><cite>CSS Fragmentation 3</cite> § 3.4 Page Break Aliases: the page-break-before, page-break-after, and page-break-inside properties</a>). - <p>Setting <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before: always</a> expands to <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before">break-before: page</a> at parse time, + <p>Setting <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before: always</a> expands to <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before">break-before: page</a> at parse time, like other shorthands do. Similarly, if <span class="css" id="ref-for-propdef-break-before①">break-before: page</span> is set, calling <code class="highlight">getComputedStyle<c- p>(</c->el<c- p>).</c->pageBreakBefore</code> will return <code class="highlight"><c- u>"always"</c-></code>. @@ -1811,7 +1810,7 @@ <h3 class="heading settled" data-level="4.5" id="used"><span class="secno">4.5. The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-before" id="ref-for-selectordef-before">::before</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-after" id="ref-for-selectordef-after">::after</a> pseudo-elements, however, are defined to generate boxes almost exactly like normal elements and are therefore defined accept all properties that apply to “all elements”. - See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <span id="ref-for-pseudo-element①">pseudo-elements</span>.</p> + See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22">pseudo-elements</a>.</p> <h4 class="heading settled" data-level="4.5.1" id="applies-to"><span class="secno">4.5.1. </span><span class="content"> Applicable Properties</span><a class="self-link" href="#applies-to"></a></h4> <p>If a property does not <dfn class="dfn-paneled" data-dfn-for="CSS" data-dfn-type="dfn" data-export id="apply">apply to</dfn> an element or box type—​as noted in its “Applies to” line—​this means it does not directly take effect on that type of box or element.</p> <p class="note" role="note"><span class="marker">Note:</span> A property that does not apply @@ -1835,13 +1834,13 @@ <h4 class="heading settled" data-level="4.5.1" id="applies-to"><span class="secn into the paragraph’s anonymous <a data-link-type="dfn" href="https://drafts.csswg.org/css-inline-3/#root-inline-box" id="ref-for-root-inline-box">root inline box</a> and applies to the text it contains. </div> <p class="note" role="note"><span class="marker">Note:</span> A property defined to apply to “all elements” applies to all elements and <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#display-type" id="ref-for-display-type①">display types</a>, - but not necessarily to all <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element②">pseudo-element</a> types, + but not necessarily to all <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element①">pseudo-element</a> types, since pseudo-elements often have their own specific rendering models or other restrictions. The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-before" id="ref-for-selectordef-before①">::before</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-after" id="ref-for-selectordef-after①">::after</a> pseudo-elements, however, are defined to generate boxes almost exactly like normal elements and are therefore defined accept all properties that apply to “all elements”. - See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <span id="ref-for-pseudo-element③">pseudo-elements</span>.</p> + See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> for more information about <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22①">pseudo-elements</a>.</p> <h3 class="heading settled" data-level="4.6" id="actual"><span class="secno">4.6. </span><span class="content"> Actual Values</span><a class="self-link" href="#actual"></a></h3> <p>A <a data-link-type="dfn" href="#used-value" id="ref-for-used-value⑧">used value</a> is in principle ready to be used, but a user agent may not be able to make use of the value in a given environment. <span class="ex">For example, a user agent may only be able to render borders with integer pixel widths @@ -1852,7 +1851,7 @@ <h3 class="heading settled" data-level="4.6" id="actual"><span class="secno">4.6 <p class="note" role="note"><span class="marker">Note:</span> By probing the actual values of elements, much can be learned about how the document is laid out. However, not all information is recorded in the actual values. - For example, the actual value of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> property + For example, the actual value of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> property does not reflect whether there is a page break or not after the element. Similarly, the actual value of <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-orphans" id="ref-for-propdef-orphans">orphans</a> does not reflect how many orphan lines there is in a certain element. See examples (j) and (k) in the <a href="#stages-examples">table below</a>.</p> @@ -1953,7 +1952,7 @@ <h3 class="heading settled" data-level="4.7" id="stages-examples"><span class="s <td><span class="css">176px</span> <tr> <td>(j) - <th><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a> + <th><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after①">page-break-after</a> <td><small>(none)</small> <td><small>(none)</small> <td><span class="css">auto</span> <small>(initial value)</small> @@ -1982,7 +1981,7 @@ <h3 class="heading settled" data-level="4.8" id="fragments"><span class="secno"> are resolved per <a data-link-type="dfn" href="https://drafts.csswg.org/css-break-4/#box-fragment" id="ref-for-box-fragment">box fragment</a>. Subsequent value processing proceeds as normal in each fragment.</p> <p>APIs that assume a singular value per <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#box" id="ref-for-box">box</a> (rather than per <a data-link-type="dfn" href="https://drafts.csswg.org/css-break-4/#box-fragment" id="ref-for-box-fragment①">box fragment</a>) - must ignore the effects of non-<a data-link-type="dfn" href="https://drafts.csswg.org/css-pseudo-4/#tree-abiding" id="ref-for-tree-abiding">tree-abiding</a> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element④">pseudo-elements</a>. + must ignore the effects of non-<a data-link-type="dfn" href="https://drafts.csswg.org/css-pseudo-4/#tree-abiding" id="ref-for-tree-abiding">tree-abiding</a> <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22②">pseudo-elements</a>. (For example, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-line" id="ref-for-selectordef-first-line①">::first-line</a> styles have no effect on the value returned by <code class="idl"><a data-link-type="idl" href="https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle" id="ref-for-dom-window-getcomputedstyle①">getComputedStyle()</a></code>.)</p> <div class="example" id="example-d0a2e292"> <a class="self-link" href="#example-d0a2e292"></a> For example, given the following markup: @@ -2224,7 +2223,7 @@ <h4 class="heading settled" data-level="6.4.1" id="at-layer"><span class="secno" defines an explicit <a data-link-type="dfn" href="#cascade-layers" id="ref-for-cascade-layers⑥">cascade layer</a>, with the option to assign style rules.</p> <p>The block layer-assignment syntax is:</p> <pre class="prod">@layer <a class="production" data-link-type="type" href="#typedef-layer-layer-ident" id="ref-for-typedef-layer-layer-ident①">&lt;layer-ident></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-3/#mult-opt" id="ref-for-mult-opt③">?</a> { - <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet">&lt;stylesheet></a> + <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet">&lt;stylesheet></a> } </pre> <p>Such <a class="css" data-link-type="maybe" href="#at-ruledef-layer" id="ref-for-at-ruledef-layer②">@layer</a> block rules have the same restrictions and processing @@ -2298,7 +2297,7 @@ <h5 class="no-toc heading settled" data-level="6.4.1.1" id="nested-layers"><span <div class="example" id="example-aad34687"> <a class="self-link" href="#example-aad34687"></a> In this example, the nested <span class="css">framework default</span> layer is distinct - from the top-level <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default" id="ref-for-valdef-anchor-scroll-default">default</a> layer: + from the top-level <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-default" id="ref-for-valdef-cursor-default">default</a> layer: <pre class="lang-css highlight"><c- n>@layer</c-> default <c- p>{</c-> p <c- p>{</c-> <c- k>max-width</c-><c- p>:</c-> <c- m>70</c-><c- k>ch</c-><c- p>;</c-> <c- p>}</c-> <c- p>}</c-> @@ -2449,8 +2448,8 @@ <h3 class="heading settled" data-level="7.2" id="inheriting"><span class="secno" the <a data-link-type="dfn" href="#inherited-value" id="ref-for-inherited-value">inherited value</a> is the <a data-link-type="dfn" href="#initial-value" id="ref-for-initial-value④">initial value</a> of the property.</p> <p>For a <a data-link-type="biblio" href="#biblio-dom" title="DOM Standard">[DOM]</a> tree with shadows, inheritance operates on the <a data-link-type="dfn" href="https://drafts.csswg.org/css-scoping-1/#flat-tree" id="ref-for-flat-tree①">flattened element tree</a>. <span class="note">This means that slotted elements inherit from the <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element" id="ref-for-the-slot-element">slot</a></code> they’re assigned to, - rather than directly from their <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-light-tree" id="ref-for-concept-light-tree">light tree</a> parent.</span> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element⑤">Pseudo-elements</a> inherit according to the fictional tag sequence - described for each <span id="ref-for-pseudo-element⑥">pseudo-element</span>. <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a></p> + rather than directly from their <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-light-tree" id="ref-for-concept-light-tree">light tree</a> parent.</span> <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22③">Pseudo-elements</a> inherit according to the fictional tag sequence + described for each <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element②">pseudo-element</a>. <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a></p> <p>Some properties are <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="inherited property" id="inherited-property">inherited properties</dfn>, as defined in their property definition table. This means that, @@ -2744,11 +2743,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="6e51b40a">auto</span> </ul> - <li> - <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="306f9323">default</span> - </ul> <li> <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> @@ -2836,6 +2830,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="16d57f47">list-style-position</span> </ul> + <li> + <a data-link-type="biblio">[CSS-NAMESPACES-3]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> + </ul> <li> <a data-link-type="biblio">[CSS-PSEUDO-4]</a> defines the following terms: <ul> @@ -2859,7 +2858,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e55dda10">&lt;stylesheet></span> + <li><span class="dfn-paneled" id="7ef4dcc3">&lt;stylesheet></span> <li><span class="dfn-paneled" id="c533ddd8">@charset</span> <li><span class="dfn-paneled" id="7e4aa58b">environment encoding</span> <li><span class="dfn-paneled" id="36630685">property declarations</span> @@ -2875,6 +2874,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8831f13c">text-indent</span> <li><span class="dfn-paneled" id="cbc54f93">text-transform</span> </ul> + <li> + <a data-link-type="biblio">[CSS-UI-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="7397920e">default</span> + </ul> <li> <a data-link-type="biblio">[CSS-VALUES-3]</a> defines the following terms: <ul> @@ -2915,12 +2919,17 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3bd4bbe9">text-orientation</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="2161cf2b">pseudo-elements</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> </ul> <li> <a data-link-type="biblio">[CSSOM]</a> defines the following terms: @@ -2971,23 +2980,25 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-conditional-5">[CSS-CONDITIONAL-5] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-5/"><cite>CSS Conditional Rules Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-5/">https://drafts.csswg.org/css-conditional-5/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-5/"><cite>CSS Conditional Rules Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-5/">https://drafts.csswg.org/css-conditional-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-scoping-1">[CSS-SCOPING-1] @@ -3001,7 +3012,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css2">[CSS2] @@ -3027,26 +3038,26 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dl> <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> - <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> + <dt id="biblio-css-ui-4">[CSS-UI-4] + <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-css-variables-1">[CSS-VARIABLES-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-variables/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-variables/">https://drafts.csswg.org/css-variables/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] @@ -3091,7 +3102,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="at-import"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@import" title="The @import CSS at-rule is used to import style rules from other stylesheets.">@import</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@import" title="The @import CSS at-rule is used to import style rules from other valid stylesheets. An @import rule must be defined at the top of the stylesheet, before any other at-rule (except @charset and @layer) and style declarations, or it will be ignored.">@import</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -3138,23 +3149,23 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="all-shorthand" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-all">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-all">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-initial" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.2+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-initial-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.2+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-initial-value">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-unset" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>13+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-unset-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>13+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-unset-value">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-all-revert" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>84+</span></span><span class="firefox yes"><span>Firefox</span><span>67+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>73+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>14.0+</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-revert-value">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>84+</span></span><span class="firefox yes"><span>Firefox</span><span>67+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>73+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>14.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-revert-value">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -3367,12 +3378,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "174d5a21": {"dfnID":"174d5a21","dfnText":"element","external":true,"refSections":[{"refs":[{"id":"ref-for-elements"}],"title":"1.1. \nModule Interactions"}],"url":"https://drafts.csswg.org/css-display-3/#elements"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"}],"title":"3.2. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, "19f9e9df": {"dfnID":"19f9e9df","dfnText":"shadow tree","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-shadow-tree"}],"title":"6.1. \nCascade Sorting Order"}],"url":"https://dom.spec.whatwg.org/#concept-shadow-tree"}, +"2161cf2b": {"dfnID":"2161cf2b","dfnText":"pseudo-elements","external":true,"refSections":[{"refs":[{"id":"ref-for-x22"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-x22\u2460"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-x22\u2461"}],"title":"4.8. \nPer-Fragment Value Processing"},{"refs":[{"id":"ref-for-x22\u2462"}],"title":"7.2. \nInheritance"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-orphans\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, "29a9020b": {"dfnID":"29a9020b","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-values-3/#typedef-length-percentage"}, "29ebeb98": {"dfnID":"29ebeb98","dfnText":"media query","external":true,"refSections":[{"refs":[{"id":"ref-for-media-query"}],"title":"2.1. \nConditional @import Rules"}],"url":"https://drafts.csswg.org/mediaqueries-4/#media-query"}, "2bd7646e": {"dfnID":"2bd7646e","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"}],"title":"3.2. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-values-3/#comb-one"}, "2c82d279": {"dfnID":"2c82d279","dfnText":"audio","external":true,"refSections":[{"refs":[{"id":"ref-for-audio"}],"title":"6.4. \nCascade Layers"}],"url":"https://html.spec.whatwg.org/multipage/media.html#audio"}, -"306f9323": {"dfnID":"306f9323","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-scroll-default"}],"title":"6.4.1.1. \nNested Layers"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "31cfe32c": {"dfnID":"31cfe32c","dfnText":"tree-abiding","external":true,"refSections":[{"refs":[{"id":"ref-for-tree-abiding"}],"title":"4.8. \nPer-Fragment Value Processing"}],"url":"https://drafts.csswg.org/css-pseudo-4/#tree-abiding"}, "3268a8eb": {"dfnID":"3268a8eb","dfnText":"url","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response-url"}],"title":"2.3. \nContent-Type of CSS Style Sheets"}],"url":"https://fetch.spec.whatwg.org/#concept-response-url"}, "36630685": {"dfnID":"36630685","dfnText":"property declarations","external":true,"refSections":[{"refs":[{"id":"ref-for-css-property-declarations"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-property-declarations"}, @@ -3390,33 +3401,34 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5869f885": {"dfnID":"5869f885","dfnText":"::before","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-before"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-selectordef-before\u2460"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"}],"title":"3.2. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5d973ccb": {"dfnID":"5d973ccb","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"4.3. \nSpecified Values"}],"url":"https://drafts.csswg.org/css-values-3/#css-wide-keywords"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"}],"title":"2.1. \nConditional @import Rules"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "66c521a7": {"dfnID":"66c521a7","dfnText":"flex item","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-item"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6a56abc9": {"dfnID":"6a56abc9","dfnText":"url()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-url"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-3/#funcdef-url"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4.6. \nActual Values"},{"refs":[{"id":"ref-for-propdef-page-break-after\u2460"}],"title":"4.7. \nExamples"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6e51b40a": {"dfnID":"6e51b40a","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-align-self-auto"}],"title":"4.4. \nComputed Values"},{"refs":[{"id":"ref-for-valdef-align-self-auto\u2460"},{"id":"ref-for-valdef-align-self-auto\u2461"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-align-self-auto"}, "6f7798a0": {"dfnID":"6f7798a0","dfnText":"root inline box","external":true,"refSections":[{"refs":[{"id":"ref-for-root-inline-box"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-inline-3/#root-inline-box"}, "732c4198": {"dfnID":"732c4198","dfnText":"flattened element tree","external":true,"refSections":[{"refs":[{"id":"ref-for-flat-tree"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-flat-tree\u2460"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/css-scoping-1/#flat-tree"}, "73759fff": {"dfnID":"73759fff","dfnText":"border-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-color"}],"title":"4.8. \nPer-Fragment Value Processing"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, "7393da89": {"dfnID":"7393da89","dfnText":"same origin","external":true,"refSections":[{"refs":[{"id":"ref-for-same-origin"}],"title":"2.3. \nContent-Type of CSS Style Sheets"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#same-origin"}, +"7397920e": {"dfnID":"7397920e","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-cursor-default"}],"title":"6.4.1.1. \nNested Layers"}],"url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "73a16e8f": {"dfnID":"73a16e8f","dfnText":"flex","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex"}, "73ea1d43": {"dfnID":"73ea1d43","dfnText":"color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-color"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, "75bfa627": {"dfnID":"75bfa627","dfnText":"::first-line","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-first-line"},{"id":"ref-for-selectordef-first-line\u2460"},{"id":"ref-for-selectordef-first-line\u2461"}],"title":"4.8. \nPer-Fragment Value Processing"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-first-line"}, "7d46bee6": {"dfnID":"7d46bee6","dfnText":"<ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-ident"}],"title":"6.4.1. \nDeclaring Cascade Layers: the @layer rule"}],"url":"https://drafts.csswg.org/css-values-3/#typedef-ident"}, "7e4aa58b": {"dfnID":"7e4aa58b","dfnText":"environment encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-environment-encoding"}],"title":"2.2. \nProcessing Stylesheet Imports"}],"url":"https://drafts.csswg.org/css-syntax-3/#environment-encoding"}, +"7ef4dcc3": {"dfnID":"7ef4dcc3","dfnText":"<stylesheet>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-stylesheet"}],"title":"6.4.1. \nDeclaring Cascade Layers: the @layer rule"}],"url":"https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet"}, "8000726e": {"dfnID":"8000726e","dfnText":"border-left-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width"}, "82ed5c4b": {"dfnID":"82ed5c4b","dfnText":"red","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-red"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-valdef-color-red\u2460"}],"title":"4.4. \nComputed Values"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, "881c2f72": {"dfnID":"881c2f72","dfnText":"box","external":true,"refSections":[{"refs":[{"id":"ref-for-box"}],"title":"4.8. \nPer-Fragment Value Processing"}],"url":"https://drafts.csswg.org/css-display-4/#box"}, "8831f13c": {"dfnID":"8831f13c","dfnText":"text-indent","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-indent"}],"title":"6.3. \nImportant Declarations: the !important annotation"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"},{"id":"ref-for-propdef-width\u2462"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8c1eb8d0": {"dfnID":"8c1eb8d0","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-mult-opt\u2462"}],"title":"6.4.1. \nDeclaring Cascade Layers: the @layer rule"}],"url":"https://drafts.csswg.org/css-values-3/#mult-opt"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.1. \nAliasing"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "9638f92b": {"dfnID":"9638f92b","dfnText":"connected","external":true,"refSections":[{"refs":[{"id":"ref-for-connected"}],"title":"4. \nValue Processing"}],"url":"https://dom.spec.whatwg.org/#connected"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"},{"id":"ref-for-string-value\u2461"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "982e17a3": {"dfnID":"982e17a3","dfnText":"unicode-bidi","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-unicode-bidi"},{"id":"ref-for-propdef-unicode-bidi\u2460"}],"title":"3.2. \nResetting All Properties: the all property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi"}, "989f9ee6": {"dfnID":"989f9ee6","dfnText":"border-right-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width"}, -"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"},{"id":"ref-for-pseudo-element\u2460"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-pseudo-element\u2461"},{"id":"ref-for-pseudo-element\u2462"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-pseudo-element\u2463"}],"title":"4.8. \nPer-Fragment Value Processing"},{"refs":[{"id":"ref-for-pseudo-element\u2464"},{"id":"ref-for-pseudo-element\u2465"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, +"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"4.5. \nUsed Values"},{"refs":[{"id":"ref-for-pseudo-element\u2460"}],"title":"4.5.1. \nApplicable Properties"},{"refs":[{"id":"ref-for-pseudo-element\u2461"}],"title":"7.2. \nInheritance"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "a15951ea": {"dfnID":"a15951ea","dfnText":"supports()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-supports"}],"title":"8.2. \nAdditions Since Level 3"}],"url":"https://drafts.csswg.org/css-conditional-5/#funcdef-supports"}, "a2a30ba8": {"dfnID":"a2a30ba8","dfnText":"cors protocol","external":true,"refSections":[{"refs":[{"id":"ref-for-cors-protocol"}],"title":"\nPrivacy and Security Considerations"}],"url":"https://fetch.spec.whatwg.org/#cors-protocol"}, "a4cd8a8d": {"dfnID":"a4cd8a8d","dfnText":"border-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image"}],"title":"3. \nShorthand Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image"}, @@ -3434,6 +3446,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b80d76a2": {"dfnID":"b80d76a2","dfnText":"p","external":true,"refSections":[{"refs":[{"id":"ref-for-the-p-element"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://html.spec.whatwg.org/multipage/grouping-content.html#the-p-element"}, "b928dec0": {"dfnID":"b928dec0","dfnText":"em","external":true,"refSections":[{"refs":[{"id":"ref-for-em"}],"title":"4.4. \nComputed Values"},{"refs":[{"id":"ref-for-em\u2460"}],"title":"4.8. \nPer-Fragment Value Processing"}],"url":"https://drafts.csswg.org/css-values-3/#em"}, "b9b4e99a": {"dfnID":"b9b4e99a","dfnText":"ch","external":true,"refSections":[{"refs":[{"id":"ref-for-ch"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-values-3/#ch"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"},{"id":"ref-for-propdef-page-break-before\u2460"}],"title":"3.1. \nAliasing"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"},{"id":"ref-for-at-ruledef-namespace\u2460"}],"title":"2. \nImporting Style Sheets: the @import rule"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "bf3ca8a7": {"dfnID":"bf3ca8a7","dfnText":"conditional group rule","external":true,"refSections":[{"refs":[{"id":"ref-for-conditional-group-rule"}],"title":"6.4.1. \nDeclaring Cascade Layers: the @layer rule"}],"url":"https://drafts.csswg.org/css-conditional-3/#conditional-group-rule"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"},{"id":"ref-for-propdef-break-before\u2460"},{"id":"ref-for-propdef-break-before\u2461"},{"id":"ref-for-propdef-break-before\u2462"}],"title":"3.1. \nAliasing"},{"refs":[{"id":"ref-for-propdef-break-before\u2463"},{"id":"ref-for-propdef-break-before\u2464"}],"title":"4.5. \nUsed Values"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"},{"id":"ref-for-at-ruledef-supports\u2460"}],"title":"2.1. \nConditional @import Rules"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, @@ -3456,7 +3470,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "css-property": {"dfnID":"css-property","dfnText":"properties","external":false,"refSections":[],"url":"#css-property"}, "dd0f8cfb": {"dfnID":"dd0f8cfb","dfnText":"border-bottom-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-width"}],"title":"4.7. \nExamples"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width"}, "declared-value": {"dfnID":"declared-value","dfnText":"declared value","external":false,"refSections":[{"refs":[{"id":"ref-for-declared-value"},{"id":"ref-for-declared-value\u2460"},{"id":"ref-for-declared-value\u2461"}],"title":"4. \nValue Processing"},{"refs":[{"id":"ref-for-declared-value\u2462"}],"title":"4.2. \nCascaded Values"},{"refs":[{"id":"ref-for-declared-value\u2463"},{"id":"ref-for-declared-value\u2464"}],"title":"5. \nFiltering"},{"refs":[{"id":"ref-for-declared-value\u2465"}],"title":"6. \nCascading"},{"refs":[{"id":"ref-for-declared-value\u2466"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-declared-value\u2467"}],"title":"7.3.3. \nErasing All Declarations: the unset keyword"}],"url":"#declared-value"}, -"e55dda10": {"dfnID":"e55dda10","dfnText":"<stylesheet>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-stylesheet"}],"title":"6.4.1. \nDeclaring Cascade Layers: the @layer rule"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"2. \nImporting Style Sheets: the @import rule"},{"refs":[{"id":"ref-for-propdef-display\u2460"}],"title":"3.2. \nResetting All Properties: the all property"},{"refs":[{"id":"ref-for-propdef-display\u2461"}],"title":"4.5.1. \nApplicable Properties"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "ee7bba09": {"dfnID":"ee7bba09","dfnText":"response","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response"}],"title":"2.3. \nContent-Type of CSS Style Sheets"}],"url":"https://fetch.spec.whatwg.org/#concept-response"}, "encapsulation-contexts": {"dfnID":"encapsulation-contexts","dfnText":"encapsulation contexts","external":false,"refSections":[{"refs":[{"id":"ref-for-encapsulation-contexts"},{"id":"ref-for-encapsulation-contexts\u2460"},{"id":"ref-for-encapsulation-contexts\u2461"},{"id":"ref-for-encapsulation-contexts\u2462"}],"title":"6.1. \nCascade Sorting Order"},{"refs":[{"id":"ref-for-encapsulation-contexts\u2463"}],"title":"6.4.1. \nDeclaring Cascade Layers: the @layer rule"},{"refs":[{"id":"ref-for-encapsulation-contexts\u2464"}],"title":"8.2. \nAdditions Since Level 3"}],"url":"#encapsulation-contexts"}, @@ -3882,7 +3895,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | ch | cm | em | ex | in | mm | pc | pt | px | q | rem | vh | vmax | vmin | vw", }; @@ -4004,7 +4017,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://dom.spec.whatwg.org/#concept-shadow-tree": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"shadow tree","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-shadow-tree"}, "https://dom.spec.whatwg.org/#connected": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"connected","type":"dfn","url":"https://dom.spec.whatwg.org/#connected"}, "https://drafts.csswg.org/css-align-3/#valdef-align-self-auto": {"export":true,"for_":["align-self"],"level":"3","normative":true,"shortname":"css-align","spec":"css-align-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-align-3/#valdef-align-self-auto"}, -"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default": {"export":true,"for_":["anchor-scroll"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-color","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-image","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, @@ -4023,7 +4035,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-break-4/#valdef-break-before-page": {"export":true,"for_":["break-before","break-after"],"level":"4","normative":true,"shortname":"css-break","spec":"css-break-4","status":"current","text":"page","type":"value","url":"https://drafts.csswg.org/css-break-4/#valdef-break-before-page"}, "https://drafts.csswg.org/css-color-4/#propdef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"color","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, "https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"currentcolor","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-red": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"red","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-red": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"red","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-media": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@media","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@supports","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, @@ -4040,6 +4052,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-fonts","spec":"css-fonts-5","status":"current","text":"font-size-adjust","type":"property","url":"https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust"}, "https://drafts.csswg.org/css-inline-3/#root-inline-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"root inline box","type":"dfn","url":"https://drafts.csswg.org/css-inline-3/#root-inline-box"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-position","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-position"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-after": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::after","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-after"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-before": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::before","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-first-line": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::first-line","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-first-line"}, @@ -4051,10 +4064,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"@charset","type":"at-rule","url":"https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset"}, "https://drafts.csswg.org/css-syntax-3/#css-property-declarations": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"property declarations","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-property-declarations"}, "https://drafts.csswg.org/css-syntax-3/#environment-encoding": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"environment encoding","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#environment-encoding"}, -"https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<stylesheet>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet"}, "https://drafts.csswg.org/css-text-3/#propdef-text-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"text-align","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "https://drafts.csswg.org/css-text-4/#propdef-text-indent": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-indent","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, "https://drafts.csswg.org/css-text-4/#propdef-text-transform": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-transform","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, +"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default": {"export":true,"for_":["cursor"],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "https://drafts.csswg.org/css-values-3/#ch": {"export":true,"for_":["<length>"],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"ch","type":"value","url":"https://drafts.csswg.org/css-values-3/#ch"}, "https://drafts.csswg.org/css-values-3/#comb-one": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-3/#comb-one"}, "https://drafts.csswg.org/css-values-3/#css-wide-keywords": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"css-wide keywords","type":"dfn","url":"https://drafts.csswg.org/css-values-3/#css-wide-keywords"}, @@ -4076,8 +4089,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"text-orientation","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing-mode","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle": {"export":true,"for_":["Window"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"getComputedStyle(elt)","type":"method","url":"https://drafts.csswg.org/cssom-1/#dom-window-getcomputedstyle"}, "https://drafts.csswg.org/mediaqueries-4/#media-query": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"media query","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-4/#media-query"}, "https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"<media-query-list>","type":"type","url":"https://drafts.csswg.org/mediaqueries-4/#typedef-media-query-list"}, @@ -4093,6 +4104,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"s","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-span-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"span","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-span-element"}, "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#content-type": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"content-type metadata","type":"dfn","url":"https://html.spec.whatwg.org/multipage/urls-and-fetching.html#content-type"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/selector.html#x22": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-elements","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, +"https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"snapshot","text":"<stylesheet>","type":"type","url":"https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-color-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-color-4/Overview.console.txt index 18b03f2459..9c5b507190 100644 --- a/tests/github/w3c/csswg-drafts/css-color-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-color-4/Overview.console.txt @@ -20,24 +20,34 @@ LINE 3381: Couldn't find WPT test 'css/css-color/color-function-parsing.html' - LINE 3622: Couldn't find WPT test 'css/css-color/predefined-013.html' - did you misspell something? LINE 4741: Couldn't find WPT test 'css/css-color/t422-rgba-onscreen-b.xht' - did you misspell something? LINE 4741: Couldn't find WPT test 'css/css-color/t422-rgba-onscreen-multiple-boxes-c.xht' - did you misspell something? +LINE 4741: Couldn't find WPT test 'css/css-color/t424-hsl-clip-outside-gamut-b.xht' - did you misspell something? +LINE 4741: Couldn't find WPT test 'css/css-color/t425-hsla-clip-outside-device-gamut-b.xht' - did you misspell something? LINE 4741: Couldn't find WPT test 'css/css-color/t425-hsla-onscreen-b.xht' - did you misspell something? LINE 4741: Couldn't find WPT test 'css/css-color/t425-hsla-onscreen-multiple-boxes-c.xht' - did you misspell something? LINE 4741: Couldn't find WPT test 'css/css-color/color-mix-basic-001.tentative.html' - did you misspell something? LINE 4741: Couldn't find WPT test 'css/css-color/color-resolving-hwb.html' - did you misspell something? -WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +WARNING: There are 163 WPT tests underneath your path prefix 'css/css-color/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) css/css-color/animation/opacity-animation-ending-correctly-001.html css/css-color/animation/opacity-animation-ending-correctly-002.html css/css-color/at-color-profile-001.html css/css-color/body-opacity-0-to-1-stacking-context.html + css/css-color/border-color-currentcolor.html css/css-color/canvas-change-opacity.html - css/css-color/color-contrast-001.html + css/css-color/clip-opacity-out-of-flow.html + css/css-color/color-layers-no-blend-mode.html css/css-color/color-mix-basic-001.html css/css-color/color-mix-currentcolor-001.html css/css-color/color-mix-currentcolor-002.html + css/css-color/color-mix-currentcolor-003.html + css/css-color/color-mix-currentcolor-nested-for-color-property.html + css/css-color/color-mix-currentcolor-visited-getcomputedstyle.html + css/css-color/color-mix-currentcolor-visited.html css/css-color/color-mix-non-srgb-001.html css/css-color/color-mix-percents-01.html css/css-color/color-mix-percents-02.html css/css-color/currentcolor-003.html + css/css-color/currentcolor-004.html + css/css-color/currentcolor-visited-fallback.html css/css-color/deprecated-sameas-001.html css/css-color/deprecated-sameas-002.html css/css-color/deprecated-sameas-003.html @@ -68,9 +78,19 @@ WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' th css/css-color/display-p3-005.html css/css-color/display-p3-006.html css/css-color/filters-under-will-change-opacity.html + css/css-color/hsl-clamp-negative-saturation.html + css/css-color/hsla-clamp-negative-saturation.html css/css-color/inline-opacity-float-child.html + css/css-color/lab-l-over-100-1.html + css/css-color/lab-l-over-100-2.html css/css-color/lch-009.html css/css-color/lch-010.html + css/css-color/lch-l-over-100-1.html + css/css-color/lch-l-over-100-2.html + css/css-color/light-dark-basic.html + css/css-color/light-dark-currentcolor-in-color.html + css/css-color/light-dark-currentcolor.html + css/css-color/light-dark-inheritance.html css/css-color/nested-color-mix-with-currentcolor.html css/css-color/oklab-001.html css/css-color/oklab-002.html @@ -80,6 +100,11 @@ WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' th css/css-color/oklab-006.html css/css-color/oklab-007.html css/css-color/oklab-008.html + css/css-color/oklab-009.html + css/css-color/oklab-l-almost-0.html + css/css-color/oklab-l-almost-1.html + css/css-color/oklab-l-over-1-1.html + css/css-color/oklab-l-over-1-2.html css/css-color/oklch-001.html css/css-color/oklch-002.html css/css-color/oklch-003.html @@ -90,7 +115,12 @@ WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' th css/css-color/oklch-008.html css/css-color/oklch-009.html css/css-color/oklch-010.html - css/css-color/parsing/color-computed-color-contrast-function.html + css/css-color/oklch-011.html + css/css-color/oklch-l-almost-0.html + css/css-color/oklch-l-almost-1.html + css/css-color/oklch-l-over-1-1.html + css/css-color/oklch-l-over-1-2.html + css/css-color/out-of-gamut-legacy-rgb.html css/css-color/parsing/color-computed-color-function.html css/css-color/parsing/color-computed-color-mix-function.html css/css-color/parsing/color-computed-hex-color.html @@ -100,8 +130,8 @@ WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' th css/css-color/parsing/color-computed-named-color.html css/css-color/parsing/color-computed-relative-color.html css/css-color/parsing/color-computed-rgb.html - css/css-color/parsing/color-invalid-color-contrast-function.html css/css-color/parsing/color-invalid-color-function.html + css/css-color/parsing/color-invalid-color-layers-function.html css/css-color/parsing/color-invalid-color-mix-function.html css/css-color/parsing/color-invalid-hex-color.html css/css-color/parsing/color-invalid-hsl.html @@ -110,8 +140,9 @@ WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' th css/css-color/parsing/color-invalid-named-color.html css/css-color/parsing/color-invalid-relative-color.html css/css-color/parsing/color-invalid-rgb.html - css/css-color/parsing/color-valid-color-contrast-function.html + css/css-color/parsing/color-mix-out-of-gamut.html css/css-color/parsing/color-valid-color-function.html + css/css-color/parsing/color-valid-color-layers-function.html css/css-color/parsing/color-valid-color-mix-function.html css/css-color/parsing/color-valid-hsl.html css/css-color/parsing/color-valid-hwb.html @@ -119,11 +150,31 @@ WARNING: There are 114 WPT tests underneath your path prefix 'css/css-color/' th css/css-color/parsing/color-valid-relative-color.html css/css-color/parsing/color-valid-rgb.html css/css-color/parsing/color-valid-system-color.html + css/css-color/parsing/relative-color-out-of-gamut.html + css/css-color/relative-currentcolor-a98rgb-01.html + css/css-color/relative-currentcolor-displayp3-01.html + css/css-color/relative-currentcolor-hsl-01.html + css/css-color/relative-currentcolor-hsl-02.html + css/css-color/relative-currentcolor-hwb-01.html + css/css-color/relative-currentcolor-lab-01.html + css/css-color/relative-currentcolor-lch-01.html + css/css-color/relative-currentcolor-oklab-01.html + css/css-color/relative-currentcolor-oklch-01.html + css/css-color/relative-currentcolor-prophoto-01.html + css/css-color/relative-currentcolor-rec2020-01.html + css/css-color/relative-currentcolor-rec2020-02.html + css/css-color/relative-currentcolor-rgb-01.html + css/css-color/relative-currentcolor-rgb-02.html + css/css-color/relative-currentcolor-xyzd50-01.html + css/css-color/relative-currentcolor-xyzd65-01.html css/css-color/srgb-linear-001.html css/css-color/srgb-linear-002.html css/css-color/srgb-linear-003.html css/css-color/srgb-linear-004.html css/css-color/system-color-consistency.html + css/css-color/system-color-hightlights-vs-getSelection-001.html + css/css-color/system-color-hightlights-vs-getSelection-002.html + css/css-color/system-color-support.html css/css-color/tagged-images-001.html css/css-color/tagged-images-002.html css/css-color/tagged-images-003.html diff --git a/tests/github/w3c/csswg-drafts/css-color-4/Overview.html b/tests/github/w3c/csswg-drafts/css-color-4/Overview.html index aa29afc4e7..66e4e6dc2b 100644 --- a/tests/github/w3c/csswg-drafts/css-color-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-color-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Color Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-color-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1106,7 +1105,7 @@ <h1 class="p-name no-ref" id="title">CSS Color Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1128,7 +1127,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-color] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-color%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1397,7 +1396,7 @@ <h2 class="heading settled" data-level="2" id="terminology"><span class="secno"> of a <a data-link-type="dfn" href="#color-space" id="ref-for-color-space②">color space</a> or a color-producing device are known, it is said to be <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="characterized">characterized</dfn>. This characterization information is stored in a <em>profile</em>. - The most common type of color profile is defined by the International Color Consortium (ICC) <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2010 (Profile version 4.3.0.0)">[ICC]</a>.</p> + The most common type of color profile is defined by the International Color Consortium (ICC) <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2022 (Profile version 4.4.0.0)">[ICC]</a>.</p> <p>If in addition adjustments have been made so that a device meets calibration targets such as white point, neutrality of greys, predictability and consistency of tone response, then it is said to be <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="calibrated">calibrated</dfn>.</p> @@ -1569,8 +1568,8 @@ <h3 class="heading settled" data-level="4.4" id="tagged-images"><span class="sec that is explicitly assigned a color profile, as defined by the image format. This is usually done by including an - International Color Consortium (ICC) profile <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2010 (Profile version 4.3.0.0)">[ICC]</a>.</p> - <p>For example JPEG <a data-link-type="biblio" href="#biblio-jpeg" title="JPEG File Interchange Format">[JPEG]</a>, PNG <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a> and TIFF <a data-link-type="biblio" href="#biblio-tiff" title="TIFF Revision 6.0">[TIFF]</a> all specify a means to embed an ICC profile.</p> + International Color Consortium (ICC) profile <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2022 (Profile version 4.4.0.0)">[ICC]</a>.</p> + <p>For example JPEG <a data-link-type="biblio" href="#biblio-jpeg" title="JPEG File Interchange Format">[JPEG]</a>, PNG <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a> and TIFF <a data-link-type="biblio" href="#biblio-tiff" title="TIFF Revision 6.0">[TIFF]</a> all specify a means to embed an ICC profile.</p> <p>Image formats may also use other, equivalent methods, often for brevity.</p> <p>For example, PNG specifies a means (the <a href="https://www.w3.org/TR/PNG/#11sRGB">sRGB chunk</a>) to explicitly tag an image as being in the sRGB color space, @@ -5626,7 +5625,7 @@ <h3 class="heading settled" data-level="10.2" id="predefined"><span class="secno with each having a valid range of [0, 1]. The whitepoint is D65 (a daylight white, with a correlated color temperature of 6504°K). - <p><a data-link-type="biblio" href="#biblio-srgb" title="Multimedia systems and equipment - Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB">[SRGB]</a> specifies two viewing conditions, <em>encoding</em> and <em>typical</em>. The <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2010 (Profile version 4.3.0.0)">[ICC]</a> recommends using the <em>encoding</em> conditions for color conversion and for optimal viewing, which are + <p><a data-link-type="biblio" href="#biblio-srgb" title="Multimedia systems and equipment - Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB">[SRGB]</a> specifies two viewing conditions, <em>encoding</em> and <em>typical</em>. The <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2022 (Profile version 4.4.0.0)">[ICC]</a> recommends using the <em>encoding</em> conditions for color conversion and for optimal viewing, which are the values in the table below.</p> <p>sRGB is the default color space for CSS, used for all the legacy color functions.</p> @@ -6135,7 +6134,7 @@ <h3 class="heading settled" data-level="10.3" id="at-profile"><span class="secno Often a profile will contain only a single intent, but when there are multiple, the <a class="property css" data-link-type="property">rendering-intent</a> descriptor chooses one of them to use.</p> - <p>The four possible rendering intents are <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2010 (Profile version 4.3.0.0)">[ICC]</a>:</p> + <p>The four possible rendering intents are <a data-link-type="biblio" href="#biblio-icc" title="ICC.1:2022 (Profile version 4.4.0.0)">[ICC]</a>:</p> <dl> <dt><dfn class="dfn-paneled css" data-dfn-for="@color-profile/rendering-intent" data-dfn-type="value" data-export id="valdef-color-profile-rendering-intent-relative-colorimetric">relative-colorimetric</dfn> <dd> @@ -6580,10 +6579,10 @@ <h2 class="heading settled" data-level="12" id="transparency"><span class="secno which includes opacity, rather than setting the <a class="property css" data-link-type="property" href="#propdef-opacity" id="ref-for-propdef-opacity④">opacity</a> property.</p> <p>If a box has <a class="property css" data-link-type="property" href="#propdef-opacity" id="ref-for-propdef-opacity⑤">opacity</a> less than 1, - it forms a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a> for its children. + it forms a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a> for its children. (This prevents its contents from interleaving in the z-axis with content outside it.)</p> - <p>Furthermore, if the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property applies to the box, + <p>Furthermore, if the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property applies to the box, the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> value is treated as <span class="css">0</span> for the element; it is otherwise painted on the same layer within its parent stacking context as positioned elements with stack level 0 @@ -7454,11 +7453,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="b0d8ebd9">{a}</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d332e4ec">auto</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSSOM-1]</a> defines the following terms: @@ -7475,11 +7479,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="1fb62f09">media feature</span> </ul> - <li> - <a data-link-type="biblio">[SVG2]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> - </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> @@ -7489,7 +7488,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-cielab">[CIELAB] <dd><a href="http://cie.co.at/publications/colorimetry-part-4-cie-1976-lab-colour-space-1"><cite>ISO/CIE 11664-4:2019(E): Colorimetry — Part 4: CIE 1976 L*a*b* colour space</cite></a>. 2019. Published. URL: <a href="http://cie.co.at/publications/colorimetry-part-4-cie-1976-lab-colour-space-1">http://cie.co.at/publications/colorimetry-part-4-cie-1976-lab-colour-space-1</a> <dt id="biblio-compositing">[Compositing] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-adjust-1">[CSS-COLOR-ADJUST-1] @@ -7513,7 +7512,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-icc">[ICC] - <dd><a href="http://www.color.org/specification/ICC1v43_2010-12.pdf"><cite>ICC.1:2010 (Profile version 4.3.0.0)</cite></a>. December 2010. URL: <a href="http://www.color.org/specification/ICC1v43_2010-12.pdf">http://www.color.org/specification/ICC1v43_2010-12.pdf</a> + <dd><a href="http://www.color.org/specification/ICC.1-2022-05.pdf"><cite>ICC.1:2022 (Profile version 4.4.0.0)</cite></a>. May 2022. URL: <a href="http://www.color.org/specification/ICC.1-2022-05.pdf">http://www.color.org/specification/ICC.1-2022-05.pdf</a> <dt id="biblio-itu-r-bt601">[ITU-R-BT.601] <dd><a href="https://www.itu.int/rec/R-REC-BT.601/"><cite>Recommendation ITU-R BT.601-7 (03/2011), Studio encoding parameters of digital television for standard 4:3 and wide screen 16:9 aspect ratios</cite></a>. 8 March 2011. Recommendation. URL: <a href="https://www.itu.int/rec/R-REC-BT.601/">https://www.itu.int/rec/R-REC-BT.601/</a> <dt id="biblio-itu-r-bt709">[ITU-R-BT.709] @@ -7530,8 +7529,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd><a href="https://webstore.iec.ch/publication/6169"><cite>Multimedia systems and equipment - Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB</cite></a>. URL: <a href="https://webstore.iec.ch/publication/6169">https://webstore.iec.ch/publication/6169</a> <dt id="biblio-svg11">[SVG11] <dd>Erik Dahlström; et al. <a href="https://www.w3.org/TR/SVG11/"><cite>Scalable Vector Graphics (SVG) 1.1 (Second Edition)</cite></a>. 16 August 2011. REC. URL: <a href="https://www.w3.org/TR/SVG11/">https://www.w3.org/TR/SVG11/</a> - <dt id="biblio-svg2">[SVG2] - <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> @@ -7540,13 +7537,13 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-jpeg">[JPEG] <dd>Eric Hamilton. <a href="https://www.w3.org/Graphics/JPEG/jfif3.pdf"><cite>JPEG File Interchange Format</cite></a>. September 1992. URL: <a href="https://www.w3.org/Graphics/JPEG/jfif3.pdf">https://www.w3.org/Graphics/JPEG/jfif3.pdf</a> <dt id="biblio-png">[PNG] - <dd>Tom Lane. <a href="https://w3c.github.io/PNG-spec/"><cite>Portable Network Graphics (PNG) Specification (Second Edition)</cite></a>. URL: <a href="https://w3c.github.io/PNG-spec/">https://w3c.github.io/PNG-spec/</a> + <dd>Chris Lilley; et al. <a href="https://w3c.github.io/png/"><cite>Portable Network Graphics (PNG) Specification (Third Edition)</cite></a>. URL: <a href="https://w3c.github.io/png/">https://w3c.github.io/png/</a> <dt id="biblio-sharma">[Sharma] <dd>G; et al. <a href="http://www2.ece.rochester.edu/~gsharma/ciede2000/"><cite>The CIEDE2000 Color-Difference Formula: Implementation Notes, Supplementary Test Data, and Mathematical Observations</cite></a>. February 2005. URL: <a href="http://www2.ece.rochester.edu/~gsharma/ciede2000/">http://www2.ece.rochester.edu/~gsharma/ciede2000/</a> <dt id="biblio-tiff">[TIFF] <dd><a href="https://www.loc.gov/preservation/digital/formats/fdd/fdd000022.shtml"><cite>TIFF Revision 6.0</cite></a>. 3 June 1992. URL: <a href="https://www.loc.gov/preservation/digital/formats/fdd/fdd000022.shtml">https://www.loc.gov/preservation/digital/formats/fdd/fdd000022.shtml</a> <dt id="biblio-wcag21">[WCAG21] - <dd>Andrew Kirkpatrick; et al. <a href="https://w3c.github.io/wcag/21/guidelines/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/21/guidelines/">https://w3c.github.io/wcag/21/guidelines/</a> + <dd>Michael Cooper; et al. <a href="https://w3c.github.io/wcag/guidelines/22/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/guidelines/22/">https://w3c.github.io/wcag/guidelines/22/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -7661,14 +7658,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="color-function"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color" title="The color() functional notation allows a color to be specified in a particular, specified colorspace rather than the implicit sRGB colorspace that most of the other color functions operate in.">color_value/color</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -7711,7 +7708,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="rgb-functions"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsla" title="The hsla() functional notation expresses a given color according to its hue, saturation, and lightness components. An optional alpha component represents the color&apos;s transparency.">color_value/hsla</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsla" title="The hsl() functional notation expresses an sRGB color according to its hue, saturation, and lightness components. An optional alpha component represents the color&apos;s transparency.">color_value/hsla</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -7737,7 +7734,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgba" title="The rgba() functional notation expresses a color according to its red, green, and blue components. An optional alpha component represents the color&apos;s transparency.">color_value/rgba</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgba" title="The rgb() functional notation expresses a color according to its red, green, and blue components. An optional alpha component represents the color&apos;s transparency.">color_value/rgba</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -7767,14 +7764,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="lab-colors"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lab" title="The lab() functional notation expresses a given color in the CIE L*a*b* color space. Lab represents the entire range of color that humans can see.">color_value/lab</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -7783,11 +7780,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lch" title="The lch() functional notation expresses a given color in the LCH color space. It has the same L axis as lab(), but uses polar coordinates C (Chroma) and H (Hue).">color_value/lch</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -7814,7 +7811,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="hex-notation"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color" title="The <hex-color> CSS data type is a notation for describing the hexadecimal color syntax of an sRGB color using its primary color components (red, green, blue) written as hexadecimal numbers, as well as its transparency. It can be used everywhere a <color> type is allowed.">hex-color</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color" title="The <hex-color> CSS data type is a notation for describing the hexadecimal color syntax of an sRGB color using its primary color components (red, green, blue) written as hexadecimal numbers, as well as its transparency.">hex-color</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -7846,7 +7843,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="transparent-color"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#transparent" title="The <color> CSS data type represents a color. A <color> may also include an alpha-channel transparency value, indicating how the color should composite with its background.">color_value#transparent</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/named-color#transparent" title="The <named-color> CSS data type is the name of a color, such as red, blue, black, or lightseagreen. Syntactically, a <named-color> is an <ident>.">named-color#transparent</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -8082,9 +8079,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1fb62f09": {"dfnID":"1fb62f09","dfnText":"media feature","external":true,"refSections":[{"refs":[{"id":"ref-for-media-feature"}],"title":"6.2. \nSystem Colors"}],"url":"https://drafts.csswg.org/mediaqueries-5/#media-feature"}, "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"}],"title":"4.2. The <hue> syntax"},{"refs":[{"id":"ref-for-angle-value\u2460"}],"title":"\nChanges from Colors 3"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"12. \nTransparency: the opacity property"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "4fe61159": {"dfnID":"4fe61159","dfnText":"resolved value","external":true,"refSections":[{"refs":[{"id":"ref-for-resolved-value"}],"title":"4.6. \nResolving <color> Values"}],"url":"https://drafts.csswg.org/cssom-1/#resolved-value"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"}],"title":"5.1. \nThe RGB functions: rgb() and rgba()"},{"refs":[{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"}],"title":"7. \nHSL Colors: hsl() and hsla() functions"},{"refs":[{"id":"ref-for-mult-opt\u2465"}],"title":"8. \nHWB Colors: hwb() function"},{"refs":[{"id":"ref-for-mult-opt\u2466"},{"id":"ref-for-mult-opt\u2467"}],"title":"9.1. \nSpecifying Lab and LCH: the lab() and lch() functional notations"},{"refs":[{"id":"ref-for-mult-opt\u2468"}],"title":"10.1. Specifying profiled colors: the color() function"},{"refs":[{"id":"ref-for-mult-opt\u2460\u24ea"},{"id":"ref-for-mult-opt\u2460\u2460"}],"title":"11. \nDevice-dependent CMYK Colors: the device-cmyk() function"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"12. \nTransparency: the opacity property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "5d83727e": {"dfnID":"5d83727e","dfnText":"actual value","external":true,"refSections":[{"refs":[{"id":"ref-for-actual-value"}],"title":"4.6.4. Resolving device-cmyk values"}],"url":"https://drafts.csswg.org/css-cascade-5/#actual-value"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"},{"id":"ref-for-mult-comma\u2460"}],"title":"5.1. \nThe RGB functions: rgb() and rgba()"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"}],"title":"4.1. The <color> syntax"},{"refs":[{"id":"ref-for-comb-one\u2460\u2462"}],"title":"4.2. The <hue> syntax"},{"refs":[{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"}],"title":"5.1. \nThe RGB functions: rgb() and rgba()"},{"refs":[{"id":"ref-for-comb-one\u2460\u2466"}],"title":"10.1. Specifying profiled colors: the color() function"},{"refs":[{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"}],"title":"10.3. \nSpecifying a color profile: the @color-profile at-rule"},{"refs":[{"id":"ref-for-comb-one\u2461\u2461"}],"title":"11. \nDevice-dependent CMYK Colors: the device-cmyk() function"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -8097,6 +8094,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"4.6. \nResolving <color> Values"},{"refs":[{"id":"ref-for-computed-value\u2460"}],"title":"4.7.2. Serializing sRGB values"},{"refs":[{"id":"ref-for-computed-value\u2461"}],"title":"4.7.3. Serializing Lab and LCH values"},{"refs":[{"id":"ref-for-computed-value\u2462"}],"title":"4.7.4. Serializing values of the color() function"},{"refs":[{"id":"ref-for-computed-value\u2463"}],"title":"4.7.5. Serializing device-cmyk values"},{"refs":[{"id":"ref-for-computed-value\u2464"}],"title":"4.7.6. Serializing other colors"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9f9120ff": {"dfnID":"9f9120ff","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"},{"id":"ref-for-comb-comma\u2460"}],"title":"5.1. \nThe RGB functions: rgb() and rgba()"},{"refs":[{"id":"ref-for-comb-comma\u2461"},{"id":"ref-for-comb-comma\u2462"},{"id":"ref-for-comb-comma\u2463"}],"title":"7. \nHSL Colors: hsl() and hsla() functions"},{"refs":[{"id":"ref-for-comb-comma\u2464"}],"title":"11. \nDevice-dependent CMYK Colors: the device-cmyk() function"}],"url":"https://drafts.csswg.org/css-values-4/#comb-comma"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"4.6. \nResolving <color> Values"},{"refs":[{"id":"ref-for-used-value\u2461"}],"title":"6.4. \nThe currentcolor keyword"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"12. \nTransparency: the opacity property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "abb10c72": {"dfnID":"abb10c72","dfnText":"forced colors mode","external":true,"refSections":[{"refs":[{"id":"ref-for-forced-colors-mode"}],"title":"6.2. \nSystem Colors"}],"url":"https://drafts.csswg.org/css-color-adjust-1/#forced-colors-mode"}, "activeborder": {"dfnID":"activeborder","dfnText":"ActiveBorder","external":false,"refSections":[],"url":"#activeborder"}, "activecaption": {"dfnID":"activecaption","dfnText":"ActiveCaption","external":false,"refSections":[],"url":"#activecaption"}, @@ -8109,7 +8107,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "bedd9d42": {"dfnID":"bedd9d42","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-one-plus"}],"title":"10.1. Specifying profiled colors: the color() function"}],"url":"https://drafts.csswg.org/css-values-4/#mult-one-plus"}, "buttonhighlight": {"dfnID":"buttonhighlight","dfnText":"ButtonHighlight","external":false,"refSections":[],"url":"#buttonhighlight"}, "buttonshadow": {"dfnID":"buttonshadow","dfnText":"ButtonShadow","external":false,"refSections":[],"url":"#buttonshadow"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"12. \nTransparency: the opacity property"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "c8dc22e7": {"dfnID":"c8dc22e7","dfnText":"keyword","external":true,"refSections":[{"refs":[{"id":"ref-for-css-keyword"}],"title":"6.2. \nSystem Colors"}],"url":"https://drafts.csswg.org/css-values-4/#css-keyword"}, "calibrated": {"dfnID":"calibrated","dfnText":"calibrated","external":false,"refSections":[{"refs":[{"id":"ref-for-calibrated"}],"title":"2. Color terminology"}],"url":"#calibrated"}, "can-be-displayed": {"dfnID":"can-be-displayed","dfnText":"can be displayed","external":false,"refSections":[],"url":"#can-be-displayed"}, @@ -8926,12 +8923,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#typedef-dashed-ident": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<dashed-ident>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-dashed-ident"}, "https://drafts.csswg.org/css-values-4/#typedef-ident": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<ident>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-ident"}, "https://drafts.csswg.org/css-values-4/#url-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<url>","type":"type","url":"https://drafts.csswg.org/css-values-4/#url-value"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-z-index-auto": {"export":true,"for_":["z-index"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-z-index-auto"}, "https://drafts.csswg.org/cssom-1/#resolved-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"resolved value","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#resolved-value"}, "https://drafts.csswg.org/mediaqueries-5/#media-feature": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"media feature","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#media-feature"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-mark-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"mark","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-mark-element"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-color-5/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-color-5/Overview.console.txt index 9df02790d9..e48d98c706 100644 --- a/tests/github/w3c/csswg-drafts/css-color-5/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-color-5/Overview.console.txt @@ -33,4 +33,10 @@ LINE ~660: No 'dfn' refs found for 'color-adjuster'. [=color-adjuster=] LINE ~670: No 'dfn' refs found for 'hue-adjuster'. [=hue-adjuster=] +LINE 716: Multiple possible 'color()' maybe refs. +Arbitrarily chose https://drafts.csswg.org/css-color-5/#funcdef-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-color-5; type:function; text:color() +spec:css-color-hdr; type:function; text:color() +''color()'' LINE 976: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-color-5/Overview.html b/tests/github/w3c/csswg-drafts/css-color-5/Overview.html index eb1c33d23f..b6be7736cc 100644 --- a/tests/github/w3c/csswg-drafts/css-color-5/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-color-5/Overview.html @@ -5,7 +5,6 @@ <title>CSS Color Module Level 5</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-color-5/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1078,7 +1077,7 @@ <h1 class="p-name no-ref" id="title">CSS Color Module Level 5</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1100,7 +1099,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-color] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-color%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1583,9 +1582,9 @@ <h3 class="heading settled" data-level="5.2" id="relative-colors"><span class="s </div> <h4 class="heading settled" data-level="5.2.1" id="relative-RGB"><span class="secno">5.2.1. </span><span class="content">Relative RGB colors</span><a class="self-link" href="#relative-RGB"></a></h4> <p>The grammar of the <a class="css" data-link-type="maybe" href="#funcdef-rgb" id="ref-for-funcdef-rgb">rgb()</a> function is extended as follows:</p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-rgb">rgb()</dfn> = rgb( <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value②">&lt;percentage></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-num" id="ref-for-mult-num">{3}</a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑥">?</a> ) <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②⑨">|</a> - rgb( <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value①">&lt;number></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-num" id="ref-for-mult-num①">{3}</a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value①">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑦">?</a> ) <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③⓪">|</a> - rgb( [ from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑥">&lt;color></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑧">?</a> [ <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value②">&lt;number></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③①">|</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value③">&lt;percentage></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-num" id="ref-for-mult-num②">{3}</a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value②">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑨">?</a> ) +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-rgb">rgb()</dfn> = rgb( <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value②">&lt;percentage></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-num" id="ref-for-mult-num">{3}</a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑥">?</a> ) <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②⑨">|</a> + rgb( <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value①">&lt;number></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-num" id="ref-for-mult-num①">{3}</a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value①">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑦">?</a> ) <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③⓪">|</a> + rgb( [ from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑥">&lt;color></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑧">?</a> [ <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value②">&lt;number></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③①">|</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value③">&lt;percentage></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-num" id="ref-for-mult-num②">{3}</a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value②">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt⑨">?</a> ) </pre> <p>Within a <a data-link-type="dfn" href="#relative-color" id="ref-for-relative-color③">relative color</a> syntax <a class="css" data-link-type="maybe" href="#funcdef-rgb" id="ref-for-funcdef-rgb①">rgb()</a> function, the allowed <a data-link-type="dfn" href="#channel-keyword" id="ref-for-channel-keyword②">channel keywords</a> are:</p> @@ -1605,7 +1604,7 @@ <h4 class="heading settled" data-level="5.2.1" id="relative-RGB"><span class="se </div> <h4 class="heading settled" data-level="5.2.2" id="relative-HSL"><span class="secno">5.2.2. </span><span class="content">Relative HSL colors</span><a class="self-link" href="#relative-HSL"></a></h4> <p>The grammar of the <a class="css" data-link-type="maybe" href="#funcdef-hsl" id="ref-for-funcdef-hsl">hsl()</a> function is extended as follows:</p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-hsl">hsl()</dfn> = hsl([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑦">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⓪">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-hue" id="ref-for-typedef-hue">&lt;hue></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value⑥">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value⑦">&lt;percentage></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value③">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①①">?</a> ) +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-hsl">hsl()</dfn> = hsl([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑦">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⓪">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-hue" id="ref-for-typedef-hue">&lt;hue></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value⑥">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value⑦">&lt;percentage></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value③">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①①">?</a> ) </pre> <p>Within a <a data-link-type="dfn" href="#relative-color" id="ref-for-relative-color④">relative color</a> syntax <a class="css" data-link-type="maybe" href="#funcdef-hsl" id="ref-for-funcdef-hsl①">hsl()</a> function, the allowed <a data-link-type="dfn" href="#channel-keyword" id="ref-for-channel-keyword③">channel keywords</a> are:</p> @@ -1629,7 +1628,7 @@ <h4 class="heading settled" data-level="5.2.2" id="relative-HSL"><span class="se </div> <h4 class="heading settled" data-level="5.2.3" id="relative-HWB"><span class="secno">5.2.3. </span><span class="content">Relative HWB colors</span><a class="self-link" href="#relative-HWB"></a></h4> <p>The grammar of the <a class="css" data-link-type="maybe" href="#funcdef-hwb" id="ref-for-funcdef-hwb">hwb()</a> function is extended as follows:</p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-hwb">hwb()</dfn> = hwb([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑧">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①②">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-hue" id="ref-for-typedef-hue①">&lt;hue></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①⓪">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①①">&lt;percentage></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value④">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①③">?</a> ) +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-hwb">hwb()</dfn> = hwb([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑧">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①②">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-hue" id="ref-for-typedef-hue①">&lt;hue></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①⓪">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①①">&lt;percentage></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value④">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①③">?</a> ) </pre> <p>Within a <a data-link-type="dfn" href="#relative-color" id="ref-for-relative-color⑤">relative color</a> syntax <a class="css" data-link-type="maybe" href="#funcdef-hwb" id="ref-for-funcdef-hwb①">hwb()</a> function, the allowed <a data-link-type="dfn" href="#channel-keyword" id="ref-for-channel-keyword④">channel keywords</a> are:</p> @@ -1646,7 +1645,7 @@ <h4 class="heading settled" data-level="5.2.3" id="relative-HWB"><span class="se </ul> <h4 class="heading settled" data-level="5.2.4" id="relative-Lab"><span class="secno">5.2.4. </span><span class="content">Relative Lab colors</span><a class="self-link" href="#relative-Lab"></a></h4> <p>The grammar of the <a class="css" data-link-type="maybe" href="#funcdef-lab" id="ref-for-funcdef-lab">lab()</a> function is extended as follows:</p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-lab">lab()</dfn> = lab([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑨">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①④">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①④">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value③">&lt;number></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value④">&lt;number></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value⑤">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⑤">?</a> ) +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-lab">lab()</dfn> = lab([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color⑨">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①④">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①④">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value③">&lt;number></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value④">&lt;number></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value⑤">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⑤">?</a> ) </pre> <p>Within a <a data-link-type="dfn" href="#relative-color" id="ref-for-relative-color⑥">relative color</a> syntax <a class="css" data-link-type="maybe" href="#funcdef-lab" id="ref-for-funcdef-lab①">lab()</a> function, the allowed <a data-link-type="dfn" href="#channel-keyword" id="ref-for-channel-keyword⑤">channel keywords</a> are:</p> @@ -1682,7 +1681,7 @@ <h4 class="heading settled" data-level="5.2.4" id="relative-Lab"><span class="se </div> <h4 class="heading settled" data-level="5.2.5" id="relative-LCH"><span class="secno">5.2.5. </span><span class="content">Relative LCH colors</span><a class="self-link" href="#relative-LCH"></a></h4> <p>The grammar of the <a class="css" data-link-type="maybe" href="#funcdef-lch" id="ref-for-funcdef-lch④">lch()</a> function is extended as follows:</p> -<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-lch">lch()</dfn> = lch([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color①⓪">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⑥">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①⑦">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value⑥">&lt;number></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-hue" id="ref-for-typedef-hue②">&lt;hue></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value⑥">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⑦">?</a> ) +<pre class="prod"><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-lch">lch()</dfn> = lch([from <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color①⓪">&lt;color></a>]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⑥">?</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①⑦">&lt;percentage></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value⑥">&lt;number></a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-hue" id="ref-for-typedef-hue②">&lt;hue></a> [ / <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value⑥">&lt;alpha-value></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt①⑦">?</a> ) </pre> <p>Within a <a data-link-type="dfn" href="#relative-color" id="ref-for-relative-color⑦">relative color</a> syntax <a class="css" data-link-type="maybe" href="#funcdef-lch" id="ref-for-funcdef-lch⑤">lch()</a> function, the allowed <a data-link-type="dfn" href="#channel-keyword" id="ref-for-channel-keyword⑥">channel keywords</a> are:</p> @@ -1905,6 +1904,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="79663d83">&lt;alpha-value></span> <li><span class="dfn-paneled" id="e10c8e34">&lt;hue></span> <li><span class="dfn-paneled" id="f17eedd8">blue</span> <li><span class="dfn-paneled" id="c9ce3bd4">color space</span> @@ -1916,7 +1916,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="4f9cf36a">&lt;alpha-value></span> <li><span class="dfn-paneled" id="1548047a">&lt;color></span> <li><span class="dfn-paneled" id="03eee7b4">color()</span> </ul> @@ -1939,7 +1938,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -1947,7 +1946,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-wcag21">[WCAG21] - <dd>Andrew Kirkpatrick; et al. <a href="https://w3c.github.io/wcag/21/guidelines/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/21/guidelines/">https://w3c.github.io/wcag/21/guidelines/</a> + <dd>Michael Cooper; et al. <a href="https://w3c.github.io/wcag/guidelines/22/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/guidelines/22/">https://w3c.github.io/wcag/guidelines/22/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> @@ -1958,13 +1957,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> A future version of this specification may define a relative syntax for <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-5/#funcdef-color">color()</a> as well. <a class="issue-return" href="#issue-5cce798c" title="Jump to section">↵</a></div> </div> <details class="mdn-anno unpositioned" data-anno-for="color-mix"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix" title="The color-mix() functional notation takes two color values and returns the result of mixing them in a given colorspace by a given amount.">color_value/color-mix</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix" title="The color-mix() functional notation takes two <color> values and returns the result of mixing them in a given colorspace by a given amount.">color_value/color-mix</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 88+</span></span><span class="safari yes"><span>Safari</span><span title="Requires setting a user preference or runtime flag.">🔰 15+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.2+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2178,11 +2178,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "16310992": {"dfnID":"16310992","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"}],"title":"4. Selecting the most contrasting color: the color-contrast() function"},{"refs":[{"id":"ref-for-number-value\u2460"},{"id":"ref-for-number-value\u2461"}],"title":"5.2.1. Relative RGB colors"},{"refs":[{"id":"ref-for-number-value\u2462"},{"id":"ref-for-number-value\u2463"},{"id":"ref-for-number-value\u2464"}],"title":"5.2.4. Relative Lab colors"},{"refs":[{"id":"ref-for-number-value\u2465"},{"id":"ref-for-number-value\u2466"}],"title":"5.2.5. Relative LCH colors"}],"url":"https://drafts.csswg.org/css-values-4/#number-value"}, "2a26d53d": {"dfnID":"2a26d53d","dfnText":"math function","external":true,"refSections":[{"refs":[{"id":"ref-for-math-function"},{"id":"ref-for-math-function\u2460"},{"id":"ref-for-math-function\u2461"}],"title":"5.2. Relative color syntax"}],"url":"https://drafts.csswg.org/css-values-4/#math-function"}, "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"}],"title":"5.2.2. Relative HSL colors"},{"refs":[{"id":"ref-for-angle-value\u2460"}],"title":"5.2.3. Relative HWB colors"},{"refs":[{"id":"ref-for-angle-value\u2461"}],"title":"5.2.5. Relative LCH colors"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, -"4f9cf36a": {"dfnID":"4f9cf36a","dfnText":"<alpha-value>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-alpha-value"},{"id":"ref-for-typedef-alpha-value\u2460"},{"id":"ref-for-typedef-alpha-value\u2461"}],"title":"5.2.1. Relative RGB colors"},{"refs":[{"id":"ref-for-typedef-alpha-value\u2462"}],"title":"5.2.2. Relative HSL colors"},{"refs":[{"id":"ref-for-typedef-alpha-value\u2463"}],"title":"5.2.3. Relative HWB colors"},{"refs":[{"id":"ref-for-typedef-alpha-value\u2464"}],"title":"5.2.4. Relative Lab colors"},{"refs":[{"id":"ref-for-typedef-alpha-value\u2465"}],"title":"5.2.5. Relative LCH colors"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-alpha-value"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"3. Mixing colors: the color-mix() function"},{"refs":[{"id":"ref-for-mult-opt\u2460"}],"title":"4. Selecting the most contrasting color: the color-contrast() function"},{"refs":[{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"}],"title":"5.1. Adjusting colors: the color-adjust function"},{"refs":[{"id":"ref-for-mult-opt\u2465"},{"id":"ref-for-mult-opt\u2466"},{"id":"ref-for-mult-opt\u2467"},{"id":"ref-for-mult-opt\u2468"}],"title":"5.2.1. Relative RGB colors"},{"refs":[{"id":"ref-for-mult-opt\u2460\u24ea"},{"id":"ref-for-mult-opt\u2460\u2460"}],"title":"5.2.2. Relative HSL colors"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2461"},{"id":"ref-for-mult-opt\u2460\u2462"}],"title":"5.2.3. Relative HWB colors"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2463"},{"id":"ref-for-mult-opt\u2460\u2464"}],"title":"5.2.4. Relative Lab colors"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2465"},{"id":"ref-for-mult-opt\u2460\u2466"}],"title":"5.2.5. Relative LCH colors"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "6416d648": {"dfnID":"6416d648","dfnText":"darkolivegreen","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-darkolivegreen"}],"title":"5.2. Relative color syntax"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-darkolivegreen"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"3. Mixing colors: the color-mix() function"},{"refs":[{"id":"ref-for-mult-comma\u2460"}],"title":"4. Selecting the most contrasting color: the color-contrast() function"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"}],"title":"2. color spaces {#color spaces-section}"},{"refs":[{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"}],"title":"4. Selecting the most contrasting color: the color-contrast() function"},{"refs":[{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"},{"id":"ref-for-comb-one\u2461\u2465"},{"id":"ref-for-comb-one\u2461\u2466"},{"id":"ref-for-comb-one\u2461\u2467"}],"title":"5.1. Adjusting colors: the color-adjust function"},{"refs":[{"id":"ref-for-comb-one\u2461\u2468"},{"id":"ref-for-comb-one\u2462\u24ea"},{"id":"ref-for-comb-one\u2462\u2460"}],"title":"5.2.1. Relative RGB colors"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, +"79663d83": {"dfnID":"79663d83","dfnText":"<alpha-value>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color-alpha-value"},{"id":"ref-for-typedef-color-alpha-value\u2460"},{"id":"ref-for-typedef-color-alpha-value\u2461"}],"title":"5.2.1. Relative RGB colors"},{"refs":[{"id":"ref-for-typedef-color-alpha-value\u2462"}],"title":"5.2.2. Relative HSL colors"},{"refs":[{"id":"ref-for-typedef-color-alpha-value\u2463"}],"title":"5.2.3. Relative HWB colors"},{"refs":[{"id":"ref-for-typedef-color-alpha-value\u2464"}],"title":"5.2.4. Relative Lab colors"},{"refs":[{"id":"ref-for-typedef-color-alpha-value\u2465"}],"title":"5.2.5. Relative LCH colors"}],"url":"https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value"}, "82ed5c4b": {"dfnID":"82ed5c4b","dfnText":"red","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-red"}],"title":"5.2. Relative color syntax"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, "9f9120ff": {"dfnID":"9f9120ff","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"}],"title":"3. Mixing colors: the color-mix() function"}],"url":"https://drafts.csswg.org/css-values-4/#comb-comma"}, "b06bf874": {"dfnID":"b06bf874","dfnText":"green","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-green"}],"title":"5.2. Relative color syntax"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-green"}, @@ -2714,14 +2714,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#typedef-srgb-adjuster": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"local","text":"<srgb-adjuster>","type":"type","url":"#typedef-srgb-adjuster"}, "#typedef-xyz-adjuster": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"local","text":"<xyz-adjuster>","type":"type","url":"#typedef-xyz-adjuster"}, "https://drafts.csswg.org/css-color-4/#color-space": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"color space","type":"dfn","url":"https://drafts.csswg.org/css-color-4/#color-space"}, +"https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"<alpha-value>","type":"type","url":"https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value"}, "https://drafts.csswg.org/css-color-4/#typedef-hue": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"<hue>","type":"type","url":"https://drafts.csswg.org/css-color-4/#typedef-hue"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-blue": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"blue","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-blue"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-darkolivegreen": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"darkolivegreen","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-darkolivegreen"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-green": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"green","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-green"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-red": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"red","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-blue": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"blue","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-blue"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-darkolivegreen": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"darkolivegreen","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-darkolivegreen"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-green": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"green","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-green"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-red": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"red","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-red"}, "https://drafts.csswg.org/css-color-4/#valdef-lch-lch": {"export":true,"for_":["lch()"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"lch","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-lch-lch"}, "https://drafts.csswg.org/css-color-5/#funcdef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"color()","type":"function","url":"https://drafts.csswg.org/css-color-5/#funcdef-color"}, -"https://drafts.csswg.org/css-color-5/#typedef-alpha-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<alpha-value>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-alpha-value"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-values-4/#angle-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<angle>","type":"type","url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "https://drafts.csswg.org/css-values-4/#comb-all": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"&&","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-all"}, diff --git a/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.console.txt index e9e7abb8c1..b0d15d65e4 100644 --- a/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.console.txt @@ -12,16 +12,31 @@ LINE ~189: No 'property' refs found for 'prefers-color-scheme'. 'prefers-color-scheme' LINE ~211: No 'property' refs found for 'prefers-color-scheme'. 'prefers-color-scheme' -LINE ~265: No 'dfn' refs found for 'canvas' with spec 'css2'. -[=canvas=] -LINE ~271: No 'dfn' refs found for 'canvas' with spec 'css2'. -[=canvas=] +LINE ~368: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' LINE ~376: No 'dfn' refs found for 'system color' that are marked for export. [=system color=] +LINE 380: Multiple possible 'color()' maybe refs. +Arbitrarily chose https://drafts.csswg.org/css-color-5/#funcdef-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-color-5; type:function; text:color() +spec:css-color-hdr; type:function; text:color() +''color()'' LINE ~379: No 'dfn' refs found for 'system color' that are marked for export. [=system color=] LINE ~383: No 'dfn' refs found for 'system color' that are marked for export. [=system color=] LINE ~391: No 'dfn' refs found for 'system color' that are marked for export. [=system color=] +LINE ~399: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE 528: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: No 'propdef-print-color-adjust' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.html b/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.html index 7976ddae9f..1e15abce44 100644 --- a/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-color-adjust-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Color Adjustment Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-color-adjust-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1075,7 +1074,7 @@ <h1 class="p-name no-ref" id="title">CSS Color Adjustment Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1097,7 +1096,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-color-adjust] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-color-adjust%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1361,15 +1360,15 @@ <h3 class="heading settled" data-level="2.2" id="color-scheme-effect"><span clas </ul> <p>On the root element, the <a data-link-type="dfn" href="#used-color-scheme" id="ref-for-used-color-scheme⑤">used color scheme</a> additionally must affect - the surface color of the <a data-link-type="dfn">canvas</a>, + the surface color of the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/intro.html#canvas" id="ref-for-canvas">canvas</a>, the initial value of the <a class="property" data-link-type="propdesc" href="https://drafts.csswg.org/css-color-4/#propdef-color" id="ref-for-propdef-color">color</a> property, and the viewport’s scrollbars.</p> <p>In order to preserve expected color contrasts, - in the case of embedded documents typically rendered over a transparent <a data-link-type="dfn">canvas</a> (such as provided via an HTML <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element" id="ref-for-the-iframe-element">iframe</a></code> element), + in the case of embedded documents typically rendered over a transparent <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/intro.html#canvas" id="ref-for-canvas①">canvas</a> (such as provided via an HTML <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element" id="ref-for-the-iframe-element">iframe</a></code> element), if the <a data-link-type="dfn" href="#used-color-scheme" id="ref-for-used-color-scheme⑥">used color scheme</a> of the element and the <span id="ref-for-used-color-scheme⑦">used color scheme</span> of the embedded document’s root element do not match, - then the UA must use an opaque <span>canvas</span> of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas" id="ref-for-valdef-system-color-canvas">Canvas</a> color + then the UA must use an opaque <span id="ref-for-canvas②">canvas</span> of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-color-canvas" id="ref-for-valdef-color-canvas">Canvas</a> color appropriate to the embedded document’s <span id="ref-for-used-color-scheme⑧">used color scheme</span> instead of a transparent canvas. This rule does not apply to documents embedded via elements intended for graphics @@ -1407,7 +1406,7 @@ <h2 class="heading settled" data-level="3" id="forced"><span class="secno">3. </ (see <a data-link-type="biblio" href="#biblio-css-color-4" title="CSS Color Module Level 4">[CSS-COLOR-4]</a>). Additionally, if the UA determines, based on Lab lightness, - that the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas" id="ref-for-valdef-system-color-canvas①">Canvas</a> color + that the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-color-canvas" id="ref-for-valdef-color-canvas①">Canvas</a> color is clearly either dark (L &lt; 33%) or light (L > 67%), then it must match the appropriate value of the <a class="property" data-link-type="propdesc" href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-color-scheme" id="ref-for-descdef-media-prefers-color-scheme②">prefers-color-scheme</a> media query @@ -1449,7 +1448,7 @@ <h3 class="heading settled" data-level="3.1" id="forced-colors-properties"><span it is forced to the color opposite the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-color" id="ref-for-propdef-color②">color</a> property’s <a data-link-type="dfn">system color</a> value in the <a data-link-type="dfn" href="https://drafts.csswg.org/css-color-4/#system-color-pairings" id="ref-for-system-color-pairings">system color pairings</a>, -using <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-system-color-canvastext" id="ref-for-valdef-system-color-canvastext">CanvasText</a> as the opposite of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas" id="ref-for-valdef-system-color-canvas②">Canvas</a>. +using <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-color-canvastext" id="ref-for-valdef-color-canvastext">CanvasText</a> as the opposite of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-color-canvas" id="ref-for-valdef-color-canvas②">Canvas</a>. However, its alpha channel is taken from the original <span class="property" id="ref-for-propdef-background-color②">background-color</span> value so that transparent backgrounds remain transparent.</p> @@ -1633,7 +1632,7 @@ <h2 class="heading settled" data-level="7" id="changes"><span class="secno">7. < <p>Changes since the <a href="https://www.w3.org/TR/2019/WD-css-color-adjust-1-20190523/">23 May 2019 Working Draft</a>:</p> <ul> <li>Forced background colors don’t revert, they force all color channels other than alpha (to preserve author’s transparency). <a href="https://github.com/w3c/csswg-drafts/issues/4175">Issue 4175</a>. - <li>Other properties revert by rewriting author-level rules to specify <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-4/#valdef-all-revert" id="ref-for-valdef-all-revert">revert</a>, + <li>Other properties revert by rewriting author-level rules to specify <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-revert" id="ref-for-valdef-all-revert">revert</a>, not by injecting <span class="css">revert !important</span> rules into the cascade. <a href="https://github.com/w3c/csswg-drafts/issues/4020">Issue 4020</a>. <li>Force opaque background if color-adjust mismatches between <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element" id="ref-for-the-iframe-element②">iframe</a></code> and embedded document. <a href="https://github.com/w3c/csswg-drafts/issues/4472">Issue 4472</a>. <li>Don’t force colors on SVG text. @@ -1656,7 +1655,7 @@ <h2 class="heading settled" data-level="7" id="changes"><span class="secno">7. < <p>Changes since the <a href="https://www.w3.org/TR/2019/WD-css-color-adjust-1-20190523/">23 May 2019 Working Draft</a>:</p> <ul> <li>Forced background colors don’t revert, they force all color channels other than alpha (to preserve author’s transparency). <a href="https://github.com/w3c/csswg-drafts/issues/4175">Issue 4175</a>. - <li>Other properties revert by rewriting author-level rules to specify <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-4/#valdef-all-revert" id="ref-for-valdef-all-revert①">revert</a>, + <li>Other properties revert by rewriting author-level rules to specify <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-revert" id="ref-for-valdef-all-revert①">revert</a>, not by injecting <span class="css">revert !important</span> rules into the cascade. <a href="https://github.com/w3c/csswg-drafts/issues/4020">Issue 4020</a>. <li>Force opaque background if color-adjust mismatches between <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element" id="ref-for-the-iframe-element③">iframe</a></code> and embedded document. <a href="https://github.com/w3c/csswg-drafts/issues/4472">Issue 4472</a>. <li>Don’t force colors on SVG text. @@ -1798,24 +1797,20 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="7b70d28c">none <small>(for background-image)</small></span> <li><span class="dfn-paneled" id="c15300b0">none <small>(for box-shadow)</small></span> </ul> - <li> - <a data-link-type="biblio">[CSS-CASCADE-4]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="a8ac6f1b">revert</span> - </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="029830f0">author style sheet</span> <li><span class="dfn-paneled" id="9cd25054">computed value</span> + <li><span class="dfn-paneled" id="bef88b2d">revert</span> <li><span class="dfn-paneled" id="a4eb3c57">used value</span> </ul> <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="02c921d1">&lt;system-color></span> - <li><span class="dfn-paneled" id="adf0c1da">canvas</span> - <li><span class="dfn-paneled" id="7589f2be">canvastext</span> + <li><span class="dfn-paneled" id="7b5f3ed1">canvas</span> + <li><span class="dfn-paneled" id="f5bd1fd7">canvastext</span> <li><span class="dfn-paneled" id="73ea1d43">color</span> <li><span class="dfn-paneled" id="ee7998a4">system color pairings</span> </ul> @@ -1865,6 +1860,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5a2f7ea1">url()</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="2a2f1579">canvas</span> + </ul> <li> <a data-link-type="biblio">[FILL-STROKE-3]</a> defines the following terms: <ul> @@ -1890,13 +1890,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> - <dt id="biblio-css-cascade-4">[CSS-CASCADE-4] - <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-4/"><cite>CSS Cascading and Inheritance Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-4/">https://drafts.csswg.org/css-cascade-4/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] @@ -1926,10 +1924,12 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> + <dt id="biblio-css-cascade-4">[CSS-CASCADE-4] + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-4/"><cite>CSS Cascading and Inheritance Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-4/">https://drafts.csswg.org/css-cascade-4/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-wcag21">[WCAG21] - <dd>Andrew Kirkpatrick; et al. <a href="https://w3c.github.io/wcag/21/guidelines/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/21/guidelines/">https://w3c.github.io/wcag/21/guidelines/</a> + <dd>Michael Cooper; et al. <a href="https://w3c.github.io/wcag/guidelines/22/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/guidelines/22/">https://w3c.github.io/wcag/guidelines/22/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -2000,18 +2000,17 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="forced-color-adjust-prop"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/forced-color-adjust" title="The forced-color-adjust CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.">forced-color-adjust</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2222,6 +2221,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "044536a2": {"dfnID":"044536a2","dfnText":"text-decoration-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration-color"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-color"}, "11fb4d5b": {"dfnID":"11fb4d5b","dfnText":"background-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-color"},{"id":"ref-for-propdef-background-color\u2460"},{"id":"ref-for-propdef-background-color\u2461"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color"}, "1ee7f091": {"dfnID":"1ee7f091","dfnText":"outline-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-color"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-color"}, +"2a2f1579": {"dfnID":"2a2f1579","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-canvas"},{"id":"ref-for-canvas\u2460"},{"id":"ref-for-canvas\u2461"}],"title":"2.2. Effects of the Used Color Scheme"}],"url":"https://www.w3.org/TR/CSS21/intro.html#canvas"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. Value Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "44edcab1": {"dfnID":"44edcab1","dfnText":"column-rule-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-column-rule-color"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-multicol-1/#propdef-column-rule-color"}, "488ae577": {"dfnID":"488ae577","dfnText":"prefers-color-scheme","external":true,"refSections":[{"refs":[{"id":"ref-for-descdef-media-prefers-color-scheme"},{"id":"ref-for-descdef-media-prefers-color-scheme\u2460"}],"title":"2. Preferred Color Schemes"},{"refs":[{"id":"ref-for-descdef-media-prefers-color-scheme\u2461"}],"title":"3. Forced Color Schemes"}],"url":"https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-color-scheme"}, @@ -2233,7 +2233,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"}],"title":"2.1. Opting Into a Preferred Color Scheme: the color-scheme property"},{"refs":[{"id":"ref-for-comb-one\u2462"}],"title":"3.2. Opting Out of a Forced Color Scheme: the forced-color-adjust property"},{"refs":[{"id":"ref-for-comb-one\u2463"}],"title":"4. Performance-based Color Adjustments: the color-adjust property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "73759fff": {"dfnID":"73759fff","dfnText":"border-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-color"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, "73ea1d43": {"dfnID":"73ea1d43","dfnText":"color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-color"}],"title":"2.2. Effects of the Used Color Scheme"},{"refs":[{"id":"ref-for-propdef-color\u2460"},{"id":"ref-for-propdef-color\u2461"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, -"7589f2be": {"dfnID":"7589f2be","dfnText":"canvastext","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-system-color-canvastext"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-system-color-canvastext"}, +"7b5f3ed1": {"dfnID":"7b5f3ed1","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-canvas"}],"title":"2.2. Effects of the Used Color Scheme"},{"refs":[{"id":"ref-for-valdef-color-canvas\u2460"}],"title":"3. Forced Color Schemes"},{"refs":[{"id":"ref-for-valdef-color-canvas\u2461"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-canvas"}, "7b70d28c": {"dfnID":"7b70d28c","dfnText":"none (for background-image)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-background-image-none"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-background-image-none"}, "8025f703": {"dfnID":"8025f703","dfnText":"text-emphasis-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-emphasis-color"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-color"}, "87fcd40c": {"dfnID":"87fcd40c","dfnText":"iframe","external":true,"refSections":[{"refs":[{"id":"ref-for-the-iframe-element"}],"title":"2.2. Effects of the Used Color Scheme"},{"refs":[{"id":"ref-for-the-iframe-element\u2460"}],"title":"5. Privacy and Security Considerations"},{"refs":[{"id":"ref-for-the-iframe-element\u2461"},{"id":"ref-for-the-iframe-element\u2462"}],"title":"7. Changes"}],"url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element"}, @@ -2241,10 +2241,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8bcc6e67": {"dfnID":"8bcc6e67","dfnText":"::selection","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-selection"}],"title":"3. Forced Color Schemes"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-selection"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"3.1. Properties Affected by Forced Colors Mode"},{"refs":[{"id":"ref-for-computed-value\u2460"}],"title":"7. Changes"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"7. Changes"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, -"a8ac6f1b": {"dfnID":"a8ac6f1b","dfnText":"revert","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-revert"},{"id":"ref-for-valdef-all-revert\u2460"}],"title":"7. Changes"}],"url":"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert"}, -"adf0c1da": {"dfnID":"adf0c1da","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-system-color-canvas"}],"title":"2.2. Effects of the Used Color Scheme"},{"refs":[{"id":"ref-for-valdef-system-color-canvas\u2460"}],"title":"3. Forced Color Schemes"},{"refs":[{"id":"ref-for-valdef-system-color-canvas\u2461"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas"}, "bd3d9ccd": {"dfnID":"bd3d9ccd","dfnText":"media query","external":true,"refSections":[{"refs":[{"id":"ref-for-media-query"}],"title":"1. Introduction"}],"url":"https://drafts.csswg.org/mediaqueries-5/#media-query"}, "bedd9d42": {"dfnID":"bedd9d42","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-one-plus"}],"title":"2.1. Opting Into a Preferred Color Scheme: the color-scheme property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-one-plus"}, +"bef88b2d": {"dfnID":"bef88b2d","dfnText":"revert","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-revert"},{"id":"ref-for-valdef-all-revert\u2460"}],"title":"7. Changes"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert"}, "c15300b0": {"dfnID":"c15300b0","dfnText":"none (for box-shadow)","external":true,"refSections":[{"refs":[{"id":"ref-for-box-shadow-none"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#box-shadow-none"}, "color-scheme": {"dfnID":"color-scheme","dfnText":"color scheme","external":false,"refSections":[{"refs":[{"id":"ref-for-color-scheme"},{"id":"ref-for-color-scheme\u2460"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-color-scheme\u2461"},{"id":"ref-for-color-scheme\u2462"},{"id":"ref-for-color-scheme\u2463"},{"id":"ref-for-color-scheme\u2464"},{"id":"ref-for-color-scheme\u2465"}],"title":"2. Preferred Color Schemes"},{"refs":[{"id":"ref-for-color-scheme\u2466"},{"id":"ref-for-color-scheme\u2467"},{"id":"ref-for-color-scheme\u2468"},{"id":"ref-for-color-scheme\u2460\u24ea"},{"id":"ref-for-color-scheme\u2460\u2460"},{"id":"ref-for-color-scheme\u2460\u2461"},{"id":"ref-for-color-scheme\u2460\u2462"},{"id":"ref-for-color-scheme\u2460\u2463"},{"id":"ref-for-color-scheme\u2460\u2464"}],"title":"2.1. Opting Into a Preferred Color Scheme: the color-scheme property"},{"refs":[{"id":"ref-for-color-scheme\u2460\u2465"}],"title":"2.2. Effects of the Used Color Scheme"},{"refs":[{"id":"ref-for-color-scheme\u2460\u2466"}],"title":"5. Privacy and Security Considerations"}],"url":"#color-scheme"}, "dark-color-scheme": {"dfnID":"dark-color-scheme","dfnText":"dark color scheme","external":false,"refSections":[{"refs":[{"id":"ref-for-dark-color-scheme"}],"title":"2. Preferred Color Schemes"},{"refs":[{"id":"ref-for-dark-color-scheme\u2460"},{"id":"ref-for-dark-color-scheme\u2461"}],"title":"2.1. Opting Into a Preferred Color Scheme: the color-scheme property"}],"url":"#dark-color-scheme"}, @@ -2253,6 +2252,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "ee7998a4": {"dfnID":"ee7998a4","dfnText":"system color pairings","external":true,"refSections":[{"refs":[{"id":"ref-for-system-color-pairings"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-color-4/#system-color-pairings"}, "f0811ff8": {"dfnID":"f0811ff8","dfnText":"img","external":true,"refSections":[{"refs":[{"id":"ref-for-the-img-element"}],"title":"2.2. Effects of the Used Color Scheme"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "f338a9f0": {"dfnID":"f338a9f0","dfnText":"text-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-shadow"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow"}, +"f5bd1fd7": {"dfnID":"f5bd1fd7","dfnText":"canvastext","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-canvastext"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-color-4/#valdef-color-canvastext"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"}],"title":"3.1. Properties Affected by Forced Colors Mode"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, "forced-colors-mode": {"dfnID":"forced-colors-mode","dfnText":"Forced colors mode","external":false,"refSections":[{"refs":[{"id":"ref-for-forced-colors-mode"},{"id":"ref-for-forced-colors-mode\u2460"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-forced-colors-mode\u2461"},{"id":"ref-for-forced-colors-mode\u2462"}],"title":"3. Forced Color Schemes"},{"refs":[{"id":"ref-for-forced-colors-mode\u2463"},{"id":"ref-for-forced-colors-mode\u2464"}],"title":"3.1. Properties Affected by Forced Colors Mode"},{"refs":[{"id":"ref-for-forced-colors-mode\u2465"},{"id":"ref-for-forced-colors-mode\u2466"},{"id":"ref-for-forced-colors-mode\u2467"}],"title":"3.2. Opting Out of a Forced Color Scheme: the forced-color-adjust property"},{"refs":[{"id":"ref-for-forced-colors-mode\u2468"}],"title":"5. Privacy and Security Considerations"},{"refs":[{"id":"ref-for-forced-colors-mode\u2460\u24ea"}],"title":"7. Changes"}],"url":"#forced-colors-mode"}, "light-color-scheme": {"dfnID":"light-color-scheme","dfnText":"light color scheme","external":false,"refSections":[{"refs":[{"id":"ref-for-light-color-scheme"}],"title":"2. Preferred Color Schemes"},{"refs":[{"id":"ref-for-light-color-scheme\u2460"},{"id":"ref-for-light-color-scheme\u2461"},{"id":"ref-for-light-color-scheme\u2462"}],"title":"2.1. Opting Into a Preferred Color Scheme: the color-scheme property"}],"url":"#light-color-scheme"}, @@ -2751,15 +2751,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-color","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"box-shadow","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-image-none": {"export":true,"for_":["background-image"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"none","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-background-image-none"}, -"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert": {"export":true,"for_":["all"],"level":"4","normative":true,"shortname":"css-cascade","spec":"css-cascade-4","status":"current","text":"revert","type":"value","url":"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert"}, "https://drafts.csswg.org/css-cascade-5/#cascade-origin-author": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"author style sheet","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#cascade-origin-author"}, "https://drafts.csswg.org/css-cascade-5/#computed-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"computed value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "https://drafts.csswg.org/css-cascade-5/#used-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"used value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"revert","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert"}, "https://drafts.csswg.org/css-color-4/#propdef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"color","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, "https://drafts.csswg.org/css-color-4/#system-color-pairings": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"system color pairings","type":"dfn","url":"https://drafts.csswg.org/css-color-4/#system-color-pairings"}, "https://drafts.csswg.org/css-color-4/#typedef-system-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"<system-color>","type":"type","url":"https://drafts.csswg.org/css-color-4/#typedef-system-color"}, -"https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas": {"export":true,"for_":["<system-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"canvas","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas"}, -"https://drafts.csswg.org/css-color-4/#valdef-system-color-canvastext": {"export":true,"for_":["<system-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"canvastext","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-system-color-canvastext"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-canvas": {"export":true,"for_":["<color>","<system-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"canvas","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-canvas"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-canvastext": {"export":true,"for_":["<color>","<system-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"canvastext","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-canvastext"}, "https://drafts.csswg.org/css-color-5/#funcdef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"color()","type":"function","url":"https://drafts.csswg.org/css-color-5/#funcdef-color"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-media": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@media","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "https://drafts.csswg.org/css-multicol-1/#propdef-column-rule-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-multicol","spec":"css-multicol-1","status":"current","text":"column-rule-color","type":"property","url":"https://drafts.csswg.org/css-multicol-1/#propdef-column-rule-color"}, @@ -2782,6 +2782,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"img","type":"element","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"iframe","type":"element","url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element"}, "https://html.spec.whatwg.org/multipage/semantics.html#meta": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"meta","type":"element","url":"https://html.spec.whatwg.org/multipage/semantics.html#meta"}, +"https://www.w3.org/TR/CSS21/intro.html#canvas": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"canvas","type":"dfn","url":"https://www.w3.org/TR/CSS21/intro.html#canvas"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-color-hdr/Overview.html b/tests/github/w3c/csswg-drafts/css-color-hdr/Overview.html index 61dabf873e..d57b6ba7ce 100644 --- a/tests/github/w3c/csswg-drafts/css-color-hdr/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-color-hdr/Overview.html @@ -5,7 +5,6 @@ <title>CSS Color HDR Module Level 1</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-color-hdr/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -709,7 +708,7 @@ <h1 class="p-name no-ref" id="title">CSS Color HDR Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -731,12 +730,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-color-hdr] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-color-hdr%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1294,7 +1293,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-3/">https://drafts.csswg.org/css-values-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] diff --git a/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.console.txt index 0df0110d68..937d137e3f 100644 --- a/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.console.txt @@ -42,12 +42,48 @@ LINE ~656: The var 'value' (in algorithm 'supports(property, value)') is only us If this is not a typo, please add an ignore='' attribute to the <var>. LINE 689: The var 'document.querySelector("a|b")' (in global scope) is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. -LINE ~182: Multiple possible 'invalid' dfn refs. -Arbitrarily chose https://drafts.csswg.org/css-syntax-3/#css-invalid +LINE 276: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-syntax-3; type:dfn; text:invalid -spec:rdf12-semantics; type:dfn; text:invalid -[=invalid=] +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> LINE 278: No 'type' refs found for '<declaration>'. <<declaration>> +LINE 282: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> +LINE 286: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> +LINE 318: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> +LINE 322: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> +LINE ~358: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE 612: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> LINE 692: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.html b/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.html index 4cc1532f3b..220a52a568 100644 --- a/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-conditional-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Conditional Rules Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-conditional-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1127,7 +1126,7 @@ <h1 class="p-name no-ref" id="title">CSS Conditional Rules Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1154,7 +1153,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-conditional] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-conditional%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1304,12 +1303,12 @@ <h2 class="heading settled" data-level="2" id="processing"><span class="secno">2 computed values that persist past the lifetime of that value (such as for some properties in <a data-link-type="biblio" href="#biblio-css3-transitions" title="CSS Transitions">[CSS3-TRANSITIONS]</a> and <a data-link-type="biblio" href="#biblio-css3-animations" title="CSS Animations Level 1">[CSS3-ANIMATIONS]</a>).</p> <h2 class="heading settled" data-level="3" id="contents-of"><span class="secno">3. </span><span class="content"> Contents of conditional group rules</span><a class="self-link" href="#contents-of"></a></h2> - <p>All <a data-link-type="dfn" href="#conditional-group-rule" id="ref-for-conditional-group-rule">conditional group rules</a> are defined to take a <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet">&lt;stylesheet></a> in their block, + <p>All <a data-link-type="dfn" href="#conditional-group-rule" id="ref-for-conditional-group-rule">conditional group rules</a> are defined to take a <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet">&lt;stylesheet></a> in their block, which means they can accept any rule that is normally allowed at the top-level of a stylesheet, and not otherwise restricted. (For example, an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import" id="ref-for-at-ruledef-import①">@import</a> rule must appear at the actual beginning of a stylesheet, and so is not valid inside of another rule.)</p> - <p>Invalid or unknown rules inside the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet①">&lt;stylesheet></a> must be considered invalid and ignored, + <p>Invalid or unknown rules inside the <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet①">&lt;stylesheet></a> must be considered invalid and ignored, but do not invalidate the <a data-link-type="dfn" href="#conditional-group-rule" id="ref-for-conditional-group-rule①">conditional group rule</a>.</p> <p>Any namespace prefixes used in a <a data-link-type="dfn" href="#conditional-group-rule" id="ref-for-conditional-group-rule②">conditional group rule</a> must have been declared, otherwise they are invalid.</p> @@ -1337,7 +1336,7 @@ <h2 class="heading settled" data-level="4" id="use"><span class="secno">4. </spa CSS processors <strong>must</strong> process such rules as <a href="#processing">described above</a>.</p> <p>Any <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#at-rule" id="ref-for-at-rule①">at-rules</a> that are not allowed after a style rule -(e.g., <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset" id="ref-for-at-ruledef-charset">@charset</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import" id="ref-for-at-ruledef-import②">@import</a>, or <span class="css">@namespace</span> rules) +(e.g., <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset" id="ref-for-at-ruledef-charset">@charset</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import" id="ref-for-at-ruledef-import②">@import</a>, or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rules) are also not allowed after a conditional group rule, and are therefore <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#css-invalid" id="ref-for-css-invalid">invalid</a> when so placed.</p> <h2 class="heading settled" data-level="5" id="at-media"><span class="secno">5. </span><span class="content"> Media-specific style sheets: the <a class="css" data-link-type="maybe" href="#at-ruledef-media" id="ref-for-at-ruledef-media⑤">@media</a> rule</span><a class="self-link" href="#at-media"></a></h2> @@ -1345,7 +1344,7 @@ <h2 class="heading settled" data-level="5" id="at-media"><span class="secno">5. is a conditional group rule whose condition is a media query. Its syntax is:</p> <pre class="def prod">@media <a class="production" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list" id="ref-for-typedef-media-query-list">&lt;media-query-list></a> { - <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet②">&lt;stylesheet></a> + <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet②">&lt;stylesheet></a> } </pre> <p>It consists of the at-keyword <a class="css" data-link-type="maybe" href="#at-ruledef-media" id="ref-for-at-ruledef-media⑥">@media</a> followed by a (possibly empty) media query list @@ -1405,19 +1404,19 @@ <h2 class="heading settled" data-level="6" id="at-supports"><span class="secno"> disjunctions (or), and negations (not) of them.</p> <p>The syntax of the <a class="css" data-link-type="maybe" href="#at-ruledef-supports" id="ref-for-at-ruledef-supports⑥">@supports</a> rule is:</p> <pre class="def prod">@supports <a class="production" data-link-type="type" href="#typedef-supports-condition" id="ref-for-typedef-supports-condition">&lt;supports-condition></a> { - <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet③">&lt;stylesheet></a> + <a class="production" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet" id="ref-for-typedef-stylesheet③">&lt;stylesheet></a> } </pre> <p>with <a class="production css" data-link-type="type" href="#typedef-supports-condition" id="ref-for-typedef-supports-condition①">&lt;supports-condition></a> defined as:</p> <pre class="def prod"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-supports-condition">&lt;supports-condition></dfn> = not <a class="production" data-link-type="type" href="#typedef-supports-in-parens" id="ref-for-typedef-supports-in-parens">&lt;supports-in-parens></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one">|</a> <a class="production" data-link-type="type" href="#typedef-supports-in-parens" id="ref-for-typedef-supports-in-parens①">&lt;supports-in-parens></a> [ and <a class="production" data-link-type="type" href="#typedef-supports-in-parens" id="ref-for-typedef-supports-in-parens②">&lt;supports-in-parens></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-zero-plus" id="ref-for-mult-zero-plus">*</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①">|</a> <a class="production" data-link-type="type" href="#typedef-supports-in-parens" id="ref-for-typedef-supports-in-parens③">&lt;supports-in-parens></a> [ or <a class="production" data-link-type="type" href="#typedef-supports-in-parens" id="ref-for-typedef-supports-in-parens④">&lt;supports-in-parens></a> ]<a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-zero-plus" id="ref-for-mult-zero-plus①">*</a> -<dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-supports-in-parens">&lt;supports-in-parens></dfn> = ( <a class="production" data-link-type="type" href="#typedef-supports-condition" id="ref-for-typedef-supports-condition②">&lt;supports-condition></a> ) <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②">|</a> <a class="production" data-link-type="type" href="#typedef-supports-feature" id="ref-for-typedef-supports-feature">&lt;supports-feature></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③">|</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed">&lt;general-enclosed></a> +<dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-supports-in-parens">&lt;supports-in-parens></dfn> = ( <a class="production" data-link-type="type" href="#typedef-supports-condition" id="ref-for-typedef-supports-condition②">&lt;supports-condition></a> ) <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②">|</a> <a class="production" data-link-type="type" href="#typedef-supports-feature" id="ref-for-typedef-supports-feature">&lt;supports-feature></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③">|</a> <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed">&lt;general-enclosed></a> <dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-supports-feature">&lt;supports-feature></dfn> = <a class="production" data-link-type="type" href="#typedef-supports-decl" id="ref-for-typedef-supports-decl">&lt;supports-decl></a> <dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-supports-decl">&lt;supports-decl></dfn> = ( <a class="production" data-link-type="type">&lt;declaration></a> ) </pre> <p>The above grammar is purposely very loose for forwards-compatibility reasons, -since the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed①">&lt;general-enclosed></a> production +since the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed①">&lt;general-enclosed></a> production allows for substantial future extensibility. Any <a class="css" data-link-type="maybe" href="#at-ruledef-supports" id="ref-for-at-ruledef-supports⑦">@supports</a> rule that does not parse according to the grammar above (that is, a rule that does not match this loose grammar @@ -1449,10 +1448,10 @@ <h2 class="heading settled" data-level="6" id="at-supports"><span class="secno"> <dt data-md><a class="production css" data-link-type="type" href="#typedef-supports-decl" id="ref-for-typedef-supports-decl①">&lt;supports-decl></a> <dd data-md> <p>The result is true if the UA <a data-link-type="dfn" href="#dfn-support" id="ref-for-dfn-support">supports</a> the declaration within the parentheses.</p> - <dt data-md><a class="production css" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed③">&lt;general-enclosed></a> + <dt data-md><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed③">&lt;general-enclosed></a> <dd data-md> <p>The result is unknown.</p> - <p>Authors must not use <a class="production css" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed④">&lt;general-enclosed></a> in their stylesheets. <span class="note">It exists only for future-compatibility, + <p>Authors must not use <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed④">&lt;general-enclosed></a> in their stylesheets. <span class="note">It exists only for future-compatibility, so that new syntax additions do not invalidate too much of a <a class="production css" data-link-type="type" href="#typedef-supports-condition" id="ref-for-typedef-supports-condition④">&lt;supports-condition></a> in older user agents.</span></p> </dl> <p>The condition of the <a class="css" data-link-type="maybe" href="#at-ruledef-supports" id="ref-for-at-ruledef-supports⑧">@supports</a> rule @@ -1673,7 +1672,7 @@ <h3 class="heading settled" data-level="7.4" id="the-csssupportsrule-interface"> as the specified condition in any conformant implementation of this specification (including implementations that implement future extensions - allowed by the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed⑤">&lt;general-enclosed></a> extensibility mechanism in this specification). + allowed by the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed⑤">&lt;general-enclosed></a> extensibility mechanism in this specification). In other words, token stream simplifications are allowed (such as reducing whitespace to a single space @@ -1939,6 +1938,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-NAMESPACES-3]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> <li><span class="dfn-paneled" id="ee301461">css qualified name</span> <li><span class="dfn-paneled" id="5ec1baf3">namespace prefix</span> </ul> @@ -1950,7 +1950,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e55dda10">&lt;stylesheet></span> + <li><span class="dfn-paneled" id="7ef4dcc3">&lt;stylesheet></span> <li><span class="dfn-paneled" id="c533ddd8">@charset</span> <li><span class="dfn-paneled" id="762610c7">at-rule</span> <li><span class="dfn-paneled" id="3bb3a53a">invalid</span> @@ -1966,6 +1966,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-VALUES-4]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="68150e76">*</span> + <li><span class="dfn-paneled" id="d32570a7">&lt;general-enclosed></span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> <li> @@ -1991,7 +1992,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[MEDIAQUERIES-5]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="c4f8137c">&lt;general-enclosed></span> <li><span class="dfn-paneled" id="e5eef049">&lt;media-condition></span> <li><span class="dfn-paneled" id="c5d206d8">&lt;media-query-list></span> <li><span class="dfn-paneled" id="6d1e4759">not</span> @@ -2012,17 +2012,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-conditional-5">[CSS-CONDITIONAL-5] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-5/"><cite>CSS Conditional Rules Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-5/">https://drafts.csswg.org/css-conditional-5/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-5/"><cite>CSS Conditional Rules Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-5/">https://drafts.csswg.org/css-conditional-5/</a> + <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css21">[CSS21] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-html">[HTML] @@ -2041,13 +2043,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> - <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] - <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css1">[CSS1] @@ -2083,7 +2083,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-css-supports"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/supports" title="The CSS.supports() method returns a boolean value indicating if the browser supports a given CSS feature, or not.">CSS/supports</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/supports_static" title="The CSS.supports() static method returns a boolean value indicating if the browser supports a given CSS feature, or not.">CSS/supports_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>55+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -2425,6 +2425,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "73ea1d43": {"dfnID":"73ea1d43","dfnText":"color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-color"},{"id":"ref-for-propdef-color\u2460"}],"title":"6.1. Definition of support"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, "762610c7": {"dfnID":"762610c7","dfnText":"at-rule","external":true,"refSections":[{"refs":[{"id":"ref-for-at-rule"}],"title":"2. Processing of conditional group rules"},{"refs":[{"id":"ref-for-at-rule\u2460"}],"title":"4. \nPlacement of conditional group rules"}],"url":"https://drafts.csswg.org/css-syntax-3/#at-rule"}, "76c4403d": {"dfnID":"76c4403d","dfnText":"parse","external":true,"refSections":[{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar"}],"title":"7.2. \nThe CSSConditionRule interface"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2460"},{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2461"},{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2462"}],"title":"7.5. \nThe CSS namespace, and the supports() function"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2463"}],"title":"8. \nChanges"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, +"7ef4dcc3": {"dfnID":"7ef4dcc3","dfnText":"<stylesheet>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-stylesheet"},{"id":"ref-for-typedef-stylesheet\u2460"}],"title":"3. \nContents of conditional group rules"},{"refs":[{"id":"ref-for-typedef-stylesheet\u2461"}],"title":"5. \nMedia-specific style sheets: the @media rule"},{"refs":[{"id":"ref-for-typedef-stylesheet\u2462"}],"title":"6. Feature queries: the @supports rule"}],"url":"https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet"}, "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"}],"title":"7.5. \nThe CSS namespace, and the supports() function"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"6. Feature queries: the @supports rule"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"7.2. \nThe CSSConditionRule interface"},{"refs":[{"id":"ref-for-Exposed\u2460"}],"title":"7.3. \nThe CSSMediaRule interface"},{"refs":[{"id":"ref-for-Exposed\u2461"}],"title":"7.4. \nThe CSSSupportsRule interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, @@ -2435,14 +2436,15 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "a9734ee4": {"dfnID":"a9734ee4","dfnText":"border","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border"}],"title":"6. Feature queries: the @supports rule"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border"}, "at-ruledef-media": {"dfnID":"at-ruledef-media","dfnText":"@media","external":false,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media\u2460"},{"id":"ref-for-at-ruledef-media\u2461"},{"id":"ref-for-at-ruledef-media\u2462"}],"title":"1.1. Background"},{"refs":[{"id":"ref-for-at-ruledef-media\u2463"}],"title":"1.2. Module Interactions"},{"refs":[{"id":"ref-for-at-ruledef-media\u2464"},{"id":"ref-for-at-ruledef-media\u2465"},{"id":"ref-for-at-ruledef-media\u2466"}],"title":"5. \nMedia-specific style sheets: the @media rule"},{"refs":[{"id":"ref-for-at-ruledef-media\u2467"},{"id":"ref-for-at-ruledef-media\u2468"}],"title":"7.3. \nThe CSSMediaRule interface"},{"refs":[{"id":"ref-for-at-ruledef-media\u2460\u24ea"}],"title":"Privacy and Security Considerations"}],"url":"#at-ruledef-media"}, "at-ruledef-supports": {"dfnID":"at-ruledef-supports","dfnText":"@supports","external":false,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports\u2460"},{"id":"ref-for-at-ruledef-supports\u2461"}],"title":"1.1. Background"},{"refs":[{"id":"ref-for-at-ruledef-supports\u2462"},{"id":"ref-for-at-ruledef-supports\u2463"},{"id":"ref-for-at-ruledef-supports\u2464"},{"id":"ref-for-at-ruledef-supports\u2465"},{"id":"ref-for-at-ruledef-supports\u2466"},{"id":"ref-for-at-ruledef-supports\u2467"},{"id":"ref-for-at-ruledef-supports\u2468"},{"id":"ref-for-at-ruledef-supports\u2460\u24ea"}],"title":"6. Feature queries: the @supports rule"},{"refs":[{"id":"ref-for-at-ruledef-supports\u2460\u2460"},{"id":"ref-for-at-ruledef-supports\u2460\u2461"}],"title":"6.1. Definition of support"},{"refs":[{"id":"ref-for-at-ruledef-supports\u2460\u2462"}],"title":"7.2. \nThe CSSConditionRule interface"},{"refs":[{"id":"ref-for-at-ruledef-supports\u2460\u2463"}],"title":"7.4. \nThe CSSSupportsRule interface"},{"refs":[{"id":"ref-for-at-ruledef-supports\u2460\u2464"},{"id":"ref-for-at-ruledef-supports\u2460\u2465"}],"title":"Privacy and Security Considerations"},{"refs":[{"id":"ref-for-at-ruledef-supports\u2460\u2466"}],"title":"8. \nChanges"}],"url":"#at-ruledef-supports"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"}],"title":"4. \nPlacement of conditional group rules"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "c2fd42a0": {"dfnID":"c2fd42a0","dfnText":"mediaText","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-medialist-mediatext"}],"title":"7.3. \nThe CSSMediaRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#dom-medialist-mediatext"}, -"c4f8137c": {"dfnID":"c4f8137c","dfnText":"<general-enclosed>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-general-enclosed"},{"id":"ref-for-typedef-general-enclosed\u2460"},{"id":"ref-for-typedef-general-enclosed\u2461"},{"id":"ref-for-typedef-general-enclosed\u2462"},{"id":"ref-for-typedef-general-enclosed\u2463"}],"title":"6. Feature queries: the @supports rule"},{"refs":[{"id":"ref-for-typedef-general-enclosed\u2464"}],"title":"7.4. \nThe CSSSupportsRule interface"}],"url":"https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed"}, "c533ddd8": {"dfnID":"c533ddd8","dfnText":"@charset","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-charset"}],"title":"4. \nPlacement of conditional group rules"}],"url":"https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset"}, "c5d206d8": {"dfnID":"c5d206d8","dfnText":"<media-query-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-media-query-list"}],"title":"5. \nMedia-specific style sheets: the @media rule"}],"url":"https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list"}, "conditional-group-rule": {"dfnID":"conditional-group-rule","dfnText":"conditional group rules","external":false,"refSections":[{"refs":[{"id":"ref-for-conditional-group-rule"},{"id":"ref-for-conditional-group-rule\u2460"},{"id":"ref-for-conditional-group-rule\u2461"}],"title":"3. \nContents of conditional group rules"}],"url":"#conditional-group-rule"}, "cssconditionrule": {"dfnID":"cssconditionrule","dfnText":"CSSConditionRule","external":false,"refSections":[{"refs":[{"id":"ref-for-cssconditionrule"}],"title":"7.2. \nThe CSSConditionRule interface"},{"refs":[{"id":"ref-for-cssconditionrule\u2460"}],"title":"7.3. \nThe CSSMediaRule interface"},{"refs":[{"id":"ref-for-cssconditionrule\u2461"}],"title":"7.4. \nThe CSSSupportsRule interface"}],"url":"#cssconditionrule"}, "cssmediarule": {"dfnID":"cssmediarule","dfnText":"CSSMediaRule","external":false,"refSections":[{"refs":[{"id":"ref-for-cssmediarule"}],"title":"7.3. \nThe CSSMediaRule interface"}],"url":"#cssmediarule"}, "csssupportsrule": {"dfnID":"csssupportsrule","dfnText":"CSSSupportsRule","external":false,"refSections":[{"refs":[{"id":"ref-for-csssupportsrule"}],"title":"7.4. \nThe CSSSupportsRule interface"}],"url":"#csssupportsrule"}, +"d32570a7": {"dfnID":"d32570a7","dfnText":"<general-enclosed>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-general-enclosed"},{"id":"ref-for-typedef-general-enclosed\u2460"},{"id":"ref-for-typedef-general-enclosed\u2461"},{"id":"ref-for-typedef-general-enclosed\u2462"},{"id":"ref-for-typedef-general-enclosed\u2463"}],"title":"6. Feature queries: the @supports rule"},{"refs":[{"id":"ref-for-typedef-general-enclosed\u2464"}],"title":"7.4. \nThe CSSSupportsRule interface"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-general-enclosed"}, "dbb1b5fa": {"dfnID":"dbb1b5fa","dfnText":"MediaList","external":true,"refSections":[{"refs":[{"id":"ref-for-medialist"},{"id":"ref-for-medialist\u2460"},{"id":"ref-for-medialist\u2461"}],"title":"7.3. \nThe CSSMediaRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#medialist"}, "dfn-support": {"dfnID":"dfn-support","dfnText":"support","external":false,"refSections":[{"refs":[{"id":"ref-for-dfn-support"}],"title":"6. Feature queries: the @supports rule"}],"url":"#dfn-support"}, "dom-css-supports": {"dfnID":"dom-css-supports","dfnText":"supports","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-css-supports"}],"title":"7.5. \nThe CSS namespace, and the supports() function"}],"url":"#dom-css-supports"}, @@ -2453,7 +2455,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "dom-cssconditionrule-conditiontext": {"dfnID":"dom-cssconditionrule-conditiontext","dfnText":"conditionText","external":false,"refSections":[],"url":"#dom-cssconditionrule-conditiontext"}, "dom-cssmediarule-media": {"dfnID":"dom-cssmediarule-media","dfnText":"media","external":false,"refSections":[],"url":"#dom-cssmediarule-media"}, "dom-cssrule-supports_rule": {"dfnID":"dom-cssrule-supports_rule","dfnText":"SUPPORTS_RULE","external":false,"refSections":[],"url":"#dom-cssrule-supports_rule"}, -"e55dda10": {"dfnID":"e55dda10","dfnText":"<stylesheet>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-stylesheet"},{"id":"ref-for-typedef-stylesheet\u2460"}],"title":"3. \nContents of conditional group rules"},{"refs":[{"id":"ref-for-typedef-stylesheet\u2461"}],"title":"5. \nMedia-specific style sheets: the @media rule"},{"refs":[{"id":"ref-for-typedef-stylesheet\u2462"}],"title":"6. Feature queries: the @supports rule"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet"}, "e5eef049": {"dfnID":"e5eef049","dfnText":"<media-condition>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-media-condition"}],"title":"6. Feature queries: the @supports rule"}],"url":"https://drafts.csswg.org/mediaqueries-5/#typedef-media-condition"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"6. Feature queries: the @supports rule"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "ebaeb088": {"dfnID":"ebaeb088","dfnText":"CSSRule","external":true,"refSections":[{"refs":[{"id":"ref-for-cssrule"}],"title":"7.1. \nExtensions to the CSSRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssrule"}, @@ -2927,6 +2928,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-color-4/#propdef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"color","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, "https://drafts.csswg.org/css-conditional-5/#funcdef-supports": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-conditional","spec":"css-conditional-5","status":"current","text":"supports()","type":"function","url":"https://drafts.csswg.org/css-conditional-5/#funcdef-supports"}, "https://drafts.csswg.org/css-display-4/#propdef-display": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"display","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-namespaces-3/#css-qualified-name": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"css qualified name","type":"dfn","url":"https://drafts.csswg.org/css-namespaces-3/#css-qualified-name"}, "https://drafts.csswg.org/css-namespaces-3/#namespace-prefix": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"namespace prefix","type":"dfn","url":"https://drafts.csswg.org/css-namespaces-3/#namespace-prefix"}, "https://drafts.csswg.org/css-sizing-3/#propdef-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"width","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, @@ -2935,16 +2937,15 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-syntax-3/#css-invalid": {"export":true,"for_":["css"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"invalid","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-invalid"}, "https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, "https://drafts.csswg.org/css-syntax-3/#style-rule": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"style rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#style-rule"}, -"https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<stylesheet>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "https://drafts.csswg.org/css-values-4/#mult-zero-plus": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"*","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-zero-plus"}, +"https://drafts.csswg.org/css-values-4/#typedef-general-enclosed": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<general-enclosed>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-general-enclosed"}, "https://drafts.csswg.org/cssom-1/#cssgroupingrule": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSSGroupingRule","type":"interface","url":"https://drafts.csswg.org/cssom-1/#cssgroupingrule"}, "https://drafts.csswg.org/cssom-1/#cssomstring": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSSOMString","type":"interface","url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, "https://drafts.csswg.org/cssom-1/#cssrule": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSSRule","type":"interface","url":"https://drafts.csswg.org/cssom-1/#cssrule"}, "https://drafts.csswg.org/cssom-1/#dom-medialist-mediatext": {"export":true,"for_":["MediaList"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"mediaText","type":"attribute","url":"https://drafts.csswg.org/cssom-1/#dom-medialist-mediatext"}, "https://drafts.csswg.org/cssom-1/#medialist": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"MediaList","type":"interface","url":"https://drafts.csswg.org/cssom-1/#medialist"}, "https://drafts.csswg.org/cssom-1/#namespacedef-css": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSS","type":"namespace","url":"https://drafts.csswg.org/cssom-1/#namespacedef-css"}, -"https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"<general-enclosed>","type":"type","url":"https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed"}, "https://drafts.csswg.org/mediaqueries-5/#typedef-media-condition": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"<media-condition>","type":"type","url":"https://drafts.csswg.org/mediaqueries-5/#typedef-media-condition"}, "https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"<media-query-list>","type":"type","url":"https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list"}, "https://drafts.csswg.org/mediaqueries-5/#valdef-media-not": {"export":true,"for_":["@media"],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"not","type":"value","url":"https://drafts.csswg.org/mediaqueries-5/#valdef-media-not"}, @@ -2955,6 +2956,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#SameObject": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SameObject","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#SameObject"}, "https://webidl.spec.whatwg.org/#idl-boolean": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"boolean","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-boolean"}, "https://webidl.spec.whatwg.org/#idl-unsigned-short": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned short","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, +"https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"snapshot","text":"<stylesheet>","type":"type","url":"https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-conditional-4/Overview.html b/tests/github/w3c/csswg-drafts/css-conditional-4/Overview.html index 44514d0f72..dada316da4 100644 --- a/tests/github/w3c/csswg-drafts/css-conditional-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-conditional-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Conditional Rules Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-conditional-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1076,7 +1075,7 @@ <h1 class="p-name no-ref" id="title">CSS Conditional Rules Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1103,7 +1102,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-conditional] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-conditional%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1291,7 +1290,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css21">[CSS21] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-selectors-4">[SELECTORS-4] diff --git a/tests/github/w3c/csswg-drafts/css-conditional-values-1/Overview.html b/tests/github/w3c/csswg-drafts/css-conditional-values-1/Overview.html index 1291a53ad0..13f5238f88 100644 --- a/tests/github/w3c/csswg-drafts/css-conditional-values-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-conditional-values-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Conditional Values Module Level 1</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-color-5/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -714,7 +713,7 @@ <h1 class="p-name no-ref" id="title">CSS Conditional Values Module Level 1</h1> please contact the CSSWG at www-style@w3.org. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -736,12 +735,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-conditional-values] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-conditional-values%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1098,7 +1097,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] @@ -1109,7 +1108,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-conditional-4">[CSS-CONDITIONAL-4] <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-4/"><cite>CSS Conditional Rules Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-4/">https://drafts.csswg.org/css-conditional-4/</a> <dt id="biblio-mediaqueries-4">[MEDIAQUERIES-4] diff --git a/tests/github/w3c/csswg-drafts/css-contain-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-contain-1/Overview.console.txt index b8752ec3ba..999c710f99 100644 --- a/tests/github/w3c/csswg-drafts/css-contain-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-contain-1/Overview.console.txt @@ -1,5 +1,7 @@ +LINE 259: Couldn't find WPT test 'css/css-contain/contain-layout-button-001.html' - did you misspell something? +LINE 918: Couldn't find WPT test 'css/css-contain/contain-layout-button-001.html' - did you misspell something? LINE 1275: Couldn't find WPT test 'css/css-contain/content-visibility/content-visibility-059.html' - did you misspell something? -WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +WARNING: There are 295 WPT tests underneath your path prefix 'css/css-contain/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) css/css-contain/contain-body-bg-001.html css/css-contain/contain-body-bg-002.html css/css-contain/contain-body-bg-003.html @@ -45,6 +47,8 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-inline-size-fieldset.html css/css-contain/contain-inline-size-flex.html css/css-contain/contain-inline-size-flexitem.html + css/css-contain/contain-inline-size-grid-indefinite-height-min-height-flex-row.html + css/css-contain/contain-inline-size-grid-stretches-auto-rows.html css/css-contain/contain-inline-size-grid.html css/css-contain/contain-inline-size-intrinsic.html css/css-contain/contain-inline-size-legend.html @@ -59,6 +63,9 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-layout-021.html css/css-contain/contain-layout-containing-block-absolute-001.html css/css-contain/contain-layout-containing-block-fixed-001.html + css/css-contain/contain-layout-dynamic-001.html + css/css-contain/contain-layout-dynamic-004.html + css/css-contain/contain-layout-dynamic-005.html css/css-contain/contain-layout-formatting-context-float-001.html css/css-contain/contain-layout-formatting-context-margin-001.html css/css-contain/contain-layout-ignored-cases-ib-split-001.html @@ -82,6 +89,11 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-paint-clip-006.html css/css-contain/contain-paint-containing-block-absolute-001.html css/css-contain/contain-paint-containing-block-fixed-001.html + css/css-contain/contain-paint-dynamic-001.html + css/css-contain/contain-paint-dynamic-002.html + css/css-contain/contain-paint-dynamic-003.html + css/css-contain/contain-paint-dynamic-004.html + css/css-contain/contain-paint-dynamic-005.html css/css-contain/contain-paint-formatting-context-float-001.html css/css-contain/contain-paint-formatting-context-margin-001.html css/css-contain/contain-paint-ignored-cases-ib-split-001.html @@ -97,11 +109,14 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-size-block-003.html css/css-contain/contain-size-block-004.html css/css-contain/contain-size-button-002.html + css/css-contain/contain-size-dynamic-001.html css/css-contain/contain-size-fieldset-003.html css/css-contain/contain-size-fieldset-004.html css/css-contain/contain-size-flex-001.html css/css-contain/contain-size-grid-005.html css/css-contain/contain-size-grid-006.html + css/css-contain/contain-size-grid-indefinite-height-min-height-flex-row.html + css/css-contain/contain-size-grid-stretches-auto-rows.html css/css-contain/contain-size-inline-block-001.html css/css-contain/contain-size-inline-block-002.html css/css-contain/contain-size-inline-block-003.html @@ -118,6 +133,7 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-size-select-elem-005.html css/css-contain/contain-size-table-caption-001.html css/css-contain/contain-style-counters-005.html + css/css-contain/contain-style-dynamic-001.html css/css-contain/contain-style-ol-ordinal-li-container.html css/css-contain/contain-style-ol-ordinal-pseudo-reversed.html css/css-contain/contain-style-ol-ordinal-pseudo.html @@ -125,193 +141,56 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-style-ol-ordinal-start-reversed.html css/css-contain/contain-style-ol-ordinal-start.html css/css-contain/contain-style-ol-ordinal.html - css/css-contain/container-queries/animation-container-size.html - css/css-contain/container-queries/animation-container-type-dynamic.html - css/css-contain/container-queries/animation-nested-animation.html - css/css-contain/container-queries/animation-nested-transition.html - css/css-contain/container-queries/aspect-ratio-feature-evaluation.html - css/css-contain/container-queries/at-container-parsing.html - css/css-contain/container-queries/at-container-serialization.html - css/css-contain/container-queries/at-container-style-parsing.html - css/css-contain/container-queries/at-container-style-serialization.html - css/css-contain/container-queries/auto-scrollbars.html - css/css-contain/container-queries/backdrop-invalidation.html - css/css-contain/container-queries/calc-evaluation.html - css/css-contain/container-queries/canvas-as-container-001.html - css/css-contain/container-queries/canvas-as-container-002.html - css/css-contain/container-queries/canvas-as-container-003.html - css/css-contain/container-queries/canvas-as-container-004.html - css/css-contain/container-queries/canvas-as-container-005.html - css/css-contain/container-queries/canvas-as-container-006.html - css/css-contain/container-queries/change-display-in-container.html - css/css-contain/container-queries/chrome-legacy-skip-recalc.html - css/css-contain/container-queries/column-spanner-in-container.html - css/css-contain/container-queries/conditional-container-status.html - css/css-contain/container-queries/container-computed.html - css/css-contain/container-queries/container-for-cue.html - css/css-contain/container-queries/container-for-shadow-dom.html - css/css-contain/container-queries/container-inheritance.html - css/css-contain/container-queries/container-inner-at-rules.html - css/css-contain/container-queries/container-inside-multicol-with-table.html - css/css-contain/container-queries/container-longhand-animation-type.html - css/css-contain/container-queries/container-name-computed.html - css/css-contain/container-queries/container-name-invalidation.html - css/css-contain/container-queries/container-name-parsing.html - css/css-contain/container-queries/container-name-tree-scoped.html - css/css-contain/container-queries/container-nested.html - css/css-contain/container-queries/container-parsing.html - css/css-contain/container-queries/container-selection.html - css/css-contain/container-queries/container-size-invalidation-after-load.html - css/css-contain/container-queries/container-size-invalidation.html - css/css-contain/container-queries/container-size-nested-invalidation.html - css/css-contain/container-queries/container-size-shadow-invalidation.html - css/css-contain/container-queries/container-type-computed.html - css/css-contain/container-queries/container-type-containment.html - css/css-contain/container-queries/container-type-invalidation.html - css/css-contain/container-queries/container-type-layout-invalidation.html - css/css-contain/container-queries/container-type-parsing.html - css/css-contain/container-queries/container-units-animation.html - css/css-contain/container-queries/container-units-basic.html - css/css-contain/container-queries/container-units-computational-independence.html - css/css-contain/container-queries/container-units-gradient-invalidation.html - css/css-contain/container-queries/container-units-gradient.html - css/css-contain/container-queries/container-units-in-at-container-dynamic.html - css/css-contain/container-queries/container-units-in-at-container-fallback.html - css/css-contain/container-queries/container-units-in-at-container.html - css/css-contain/container-queries/container-units-ineligible-container.html - css/css-contain/container-queries/container-units-invalidation.html - css/css-contain/container-queries/container-units-media-queries.html - css/css-contain/container-queries/container-units-selection.html - css/css-contain/container-queries/container-units-shadow.html - css/css-contain/container-queries/container-units-small-viewport-fallback.html - css/css-contain/container-queries/container-units-svglength.html - css/css-contain/container-queries/container-units-typed-om.html - css/css-contain/container-queries/counters-flex-circular.html - css/css-contain/container-queries/counters-in-container-dynamic.html - css/css-contain/container-queries/counters-in-container.html - css/css-contain/container-queries/crashtests/br-crash.html - css/css-contain/container-queries/crashtests/canvas-as-container-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1289718-000-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1289718-001-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1346969-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1362391-crash.html - css/css-contain/container-queries/crashtests/chrome-layout-root-crash.html - css/css-contain/container-queries/crashtests/chrome-quotes-crash.html - css/css-contain/container-queries/crashtests/chrome-remove-insert-evaluator-crash.html - css/css-contain/container-queries/crashtests/columns-in-table-001-crash.html - css/css-contain/container-queries/crashtests/columns-in-table-002-crash.html - css/css-contain/container-queries/crashtests/container-in-canvas-crash.html - css/css-contain/container-queries/crashtests/container-type-change-chrome-legacy-crash.html - css/css-contain/container-queries/crashtests/dialog-backdrop-crash.html - css/css-contain/container-queries/crashtests/dirty-rowgroup-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-000-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-001-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-002-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-003-crash.html - css/css-contain/container-queries/crashtests/focus-inside-content-visibility-crash.html - css/css-contain/container-queries/crashtests/force-sibling-style-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-000-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-001-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-002-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-003-crash.html - css/css-contain/container-queries/crashtests/iframe-init-crash.html - css/css-contain/container-queries/crashtests/inline-multicol-inside-container-crash.html - css/css-contain/container-queries/crashtests/inline-with-columns-000-crash.html - css/css-contain/container-queries/crashtests/inline-with-columns-001-crash.html - css/css-contain/container-queries/crashtests/input-column-group-container-crash.html - css/css-contain/container-queries/crashtests/input-placeholder-inline-size-crash.html - css/css-contain/container-queries/crashtests/marker-gcs-after-disconnect-crash.html - css/css-contain/container-queries/crashtests/math-block-container-child-crash.html - css/css-contain/container-queries/crashtests/orthogonal-replaced-crash.html - css/css-contain/container-queries/crashtests/pseudo-container-crash.html - css/css-contain/container-queries/crashtests/reversed-ol-crash.html - css/css-contain/container-queries/crashtests/svg-layout-root-crash.html - css/css-contain/container-queries/crashtests/svg-text-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-000-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-001-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-002-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-003-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-004-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-005-crash.html - css/css-contain/container-queries/custom-layout-container-001.https.html - css/css-contain/container-queries/custom-property-style-queries.html - css/css-contain/container-queries/custom-property-style-query-change.html - css/css-contain/container-queries/deep-nested-inline-size-containers.html - css/css-contain/container-queries/dialog-backdrop-create.html - css/css-contain/container-queries/dialog-backdrop-remove.html - css/css-contain/container-queries/display-contents.html - css/css-contain/container-queries/display-in-container.html - css/css-contain/container-queries/display-none.html - css/css-contain/container-queries/fieldset-legend-change.html - css/css-contain/container-queries/font-relative-calc-dynamic.html - css/css-contain/container-queries/font-relative-units-dynamic.html - css/css-contain/container-queries/font-relative-units.html - css/css-contain/container-queries/fragmented-container-001.html - css/css-contain/container-queries/get-animations.html - css/css-contain/container-queries/grid-container.html - css/css-contain/container-queries/grid-item-container.html - css/css-contain/container-queries/idlharness.html - css/css-contain/container-queries/iframe-in-container-invalidation.html - css/css-contain/container-queries/iframe-invalidation.html - css/css-contain/container-queries/ineligible-containment.html - css/css-contain/container-queries/inline-size-and-min-width.html - css/css-contain/container-queries/inline-size-bfc-floats.html - css/css-contain/container-queries/inline-size-containment-vertical-rl.html - css/css-contain/container-queries/inline-size-containment.html - css/css-contain/container-queries/inner-first-line-non-matching.html - css/css-contain/container-queries/layout-dependent-focus.html - css/css-contain/container-queries/multicol-container-001.html - css/css-contain/container-queries/multicol-inside-container.html - css/css-contain/container-queries/nested-query-containers.html - css/css-contain/container-queries/never-match-container.html - css/css-contain/container-queries/orthogonal-wm-container-query.html - css/css-contain/container-queries/percentage-padding-orthogonal.html - css/css-contain/container-queries/pseudo-elements-001.html - css/css-contain/container-queries/pseudo-elements-002.html - css/css-contain/container-queries/pseudo-elements-003.html - css/css-contain/container-queries/pseudo-elements-004.html - css/css-contain/container-queries/pseudo-elements-005.html - css/css-contain/container-queries/pseudo-elements-006.html - css/css-contain/container-queries/pseudo-elements-007.html - css/css-contain/container-queries/pseudo-elements-008.html - css/css-contain/container-queries/query-content-box.html - css/css-contain/container-queries/query-evaluation.html - css/css-contain/container-queries/reattach-container-with-dirty-child.html - css/css-contain/container-queries/resize-while-content-visibility-hidden.html - css/css-contain/container-queries/sibling-layout-dependency.html - css/css-contain/container-queries/size-container-no-principal-box.html - css/css-contain/container-queries/size-feature-evaluation.html - css/css-contain/container-queries/style-change-in-container.html - css/css-contain/container-queries/style-not-sharing-float.html - css/css-contain/container-queries/svg-foreignobject-child-container.html - css/css-contain/container-queries/svg-foreignobject-no-size-container.html - css/css-contain/container-queries/svg-g-no-size-container.html - css/css-contain/container-queries/svg-root-size-container.html - css/css-contain/container-queries/table-inside-container-changing-display.html - css/css-contain/container-queries/top-layer-dialog-backdrop.html - css/css-contain/container-queries/top-layer-dialog-container.html - css/css-contain/container-queries/top-layer-dialog.html - css/css-contain/container-queries/top-layer-nested-dialog.html - css/css-contain/container-queries/transition-scrollbars.html - css/css-contain/container-queries/transition-style-change-event-002.html - css/css-contain/container-queries/transition-style-change-event.html - css/css-contain/container-queries/unsupported-axis.html - css/css-contain/container-queries/viewport-units-dynamic.html - css/css-contain/container-queries/viewport-units.html - css/css-contain/container-queries/whitespace-update-after-removal.html + css/css-contain/contain-style-remove-element-crash.html + css/css-contain/container-type-important.html css/css-contain/content-visibility/animation-display-lock.html css/css-contain/content-visibility/content-visibility-080.html css/css-contain/content-visibility/content-visibility-081.html css/css-contain/content-visibility/content-visibility-082.html css/css-contain/content-visibility/content-visibility-083.html css/css-contain/content-visibility/content-visibility-084.html + css/css-contain/content-visibility/content-visibility-085.html + css/css-contain/content-visibility/content-visibility-086.html + css/css-contain/content-visibility/content-visibility-087.html + css/css-contain/content-visibility/content-visibility-088.html + css/css-contain/content-visibility/content-visibility-089.html + css/css-contain/content-visibility/content-visibility-090.html + css/css-contain/content-visibility/content-visibility-091.html + css/css-contain/content-visibility/content-visibility-092.html + css/css-contain/content-visibility/content-visibility-093.html + css/css-contain/content-visibility/content-visibility-094.html + css/css-contain/content-visibility/content-visibility-095.html + css/css-contain/content-visibility/content-visibility-096.html + css/css-contain/content-visibility/content-visibility-097.html + css/css-contain/content-visibility/content-visibility-098.html + css/css-contain/content-visibility/content-visibility-099.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-001.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-002.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-003.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-004.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-005.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-006.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-007.html + css/css-contain/content-visibility/content-visibility-animation-and-scroll.html + css/css-contain/content-visibility/content-visibility-animation-becomes-visible.html + css/css-contain/content-visibility/content-visibility-animation-in-auto-subtree.html + css/css-contain/content-visibility/content-visibility-animation-with-scroll-timeline-in-auto-subtree.html + css/css-contain/content-visibility/content-visibility-animation-with-scroll-timeline-in-hidden-subtree.html + css/css-contain/content-visibility/content-visibility-auto-applied-to-th-crash.html + css/css-contain/content-visibility/content-visibility-auto-first-observation-immediate.html css/css-contain/content-visibility/content-visibility-auto-in-iframe.html css/css-contain/content-visibility/content-visibility-auto-intrinsic-width.html + css/css-contain/content-visibility/content-visibility-auto-nested-scroll.html css/css-contain/content-visibility/content-visibility-auto-nested.html + css/css-contain/content-visibility/content-visibility-auto-print.html + css/css-contain/content-visibility/content-visibility-auto-relevancy-updates.html css/css-contain/content-visibility/content-visibility-auto-selection-crash.html css/css-contain/content-visibility/content-visibility-auto-state-changed-first-observation.html css/css-contain/content-visibility/content-visibility-auto-state-changed-removed.html css/css-contain/content-visibility/content-visibility-auto-state-changed.html + css/css-contain/content-visibility/content-visibility-auto-svg-image.html + css/css-contain/content-visibility/content-visibility-auto-text-fragment.html + css/css-contain/content-visibility/content-visibility-background-clip-crash.html css/css-contain/content-visibility/content-visibility-canvas.html css/css-contain/content-visibility/content-visibility-continuations-crash.html css/css-contain/content-visibility/content-visibility-fieldset-size.html @@ -320,10 +199,39 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/content-visibility/content-visibility-img.html css/css-contain/content-visibility/content-visibility-in-svg-000-crash.html css/css-contain/content-visibility/content-visibility-input-image.html + css/css-contain/content-visibility/content-visibility-interpolation.html + css/css-contain/content-visibility/content-visibility-intrinsic-size-001.html + css/css-contain/content-visibility/content-visibility-layout-containment-001.html + css/css-contain/content-visibility/content-visibility-layout-paint-containment-001.html + css/css-contain/content-visibility/content-visibility-on-g.html + css/css-contain/content-visibility/content-visibility-on-root-svg.html css/css-contain/content-visibility/content-visibility-output-crash.html + css/css-contain/content-visibility/content-visibility-paint-containment-001.html + css/css-contain/content-visibility/content-visibility-paint-containment-002.html + css/css-contain/content-visibility/content-visibility-paint-containment-003.html css/css-contain/content-visibility/content-visibility-resize-observer-no-error.html + css/css-contain/content-visibility/content-visibility-selection-crash.html + css/css-contain/content-visibility/content-visibility-size-containment-001.html + css/css-contain/content-visibility/content-visibility-style-containment-001.html + css/css-contain/content-visibility/content-visibility-svg-path.html + css/css-contain/content-visibility/content-visibility-svg-rect.html + css/css-contain/content-visibility/content-visibility-svg-text.html css/css-contain/content-visibility/content-visibility-svg.html css/css-contain/content-visibility/content-visibility-video.html + css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-001.html + css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-002.html + css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-003.html + css/css-contain/content-visibility/content-visibility-web-animation-in-auto-subtree.html + css/css-contain/content-visibility/content-visibility-with-float-crash.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-000.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-001.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-002.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-003.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-004.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-005.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-006.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-and-auto-descendant.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-hide-after-addition.html css/css-contain/content-visibility/content-visibility-with-top-layer-000.html css/css-contain/content-visibility/content-visibility-with-top-layer-001.html css/css-contain/content-visibility/content-visibility-with-top-layer-002.html @@ -331,16 +239,25 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/content-visibility/content-visibility-with-top-layer-004.html css/css-contain/content-visibility/content-visibility-with-top-layer-005.html css/css-contain/content-visibility/content-visibility-with-top-layer-006.html + css/css-contain/content-visibility/content-visibility-with-top-layer-007.html + css/css-contain/content-visibility/content-visibility-with-top-layer-008.html + css/css-contain/content-visibility/content-visibility-with-top-layer-and-auto-descendant.html css/css-contain/content-visibility/content-visibility-with-top-layer-hide-after-addition.html + css/css-contain/content-visibility/content-visibility-with-top-layer-in-auto-subtree-removal.html css/css-contain/content-visibility/contentvisibility-nestedslot-crash.html + css/css-contain/content-visibility/crashtests/content-visibility-transition-finished-001.html + css/css-contain/content-visibility/crashtests/fieldset.html css/css-contain/content-visibility/crashtests/first-line-and-inline-block.html + css/css-contain/content-visibility/crashtests/grid-dynamic.html css/css-contain/content-visibility/detach-locked-slot-children-crash.html + css/css-contain/content-visibility/display-ruby-text-crash.html css/css-contain/content-visibility/document-element-computed-style.html css/css-contain/content-visibility/dynamic-change-paint-fully-obscuring-child-001.html css/css-contain/content-visibility/element-reassigned-to-skipped-slot.html css/css-contain/content-visibility/element-reassigned-to-slot-in-skipped-subtree.html css/css-contain/content-visibility/hidden-execcommand-crash.html css/css-contain/content-visibility/hidden-pseudo-element-removed-crash.html + css/css-contain/content-visibility/locked-frame-crash.html css/css-contain/content-visibility/meter-selection-crash.html css/css-contain/content-visibility/scrollIntoView-target-with-contents-hidden.html css/css-contain/content-visibility/scrollIntoView-with-focus-target-with-contents-hidden.html @@ -366,13 +283,18 @@ WARNING: There are 371 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/content-visibility/slot-content-visibility-7-crash.html css/css-contain/content-visibility/slot-content-visibility-8-crash.html css/css-contain/content-visibility/slot-content-visibility-9-crash.html + css/css-contain/content-visibility/touch-action-beside-display-locked-fixedpos-iframe-crash.html + css/css-contain/counter-scoping-004.html css/css-contain/crashtests/contain-nested-crash-001.html css/css-contain/crashtests/contain-nested-crash-002.html css/css-contain/crashtests/contain-nested-crash-003.html + css/css-contain/crashtests/contain-nested-crash-004.html + css/css-contain/crashtests/contain-nested-relayout-boundary.html css/css-contain/parsing/contain-computed-children.html css/css-contain/quote-scoping-empty-style-boundaries.html -LINE 893: No 'dfn' refs found for 'stacking context' with spec 'css2'. -<a bs-line-number="893" data-link-type="dfn" data-lt="stacking context">stacking context</a> -LINE 1025: No 'dfn' refs found for 'stacking context' with spec 'css2'. -<a bs-line-number="1025" data-link-type="dfn" data-lt="stacking context">stacking context</a> + css/css-contain/quote-scoping-invalidation-001.html + css/css-contain/quote-scoping-invalidation-002.html + css/css-contain/quote-scoping-invalidation-003.html + css/css-contain/quote-scoping-invalidation-004.html + css/css-contain/quote-scoping-shadow-dom-crash.html LINE 1065: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-contain-1/Overview.html b/tests/github/w3c/csswg-drafts/css-contain-1/Overview.html index ad4303373e..edbc837d36 100644 --- a/tests/github/w3c/csswg-drafts/css-contain-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-contain-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Containment Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-contain-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -860,7 +859,7 @@ <h1 class="p-name no-ref" id="title">CSS Containment Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -882,7 +881,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-contain] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-contain%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <div class="correction"><a href="https://www.w3.org/Consortium/Process/#candidate-correction">Candidate corrections</a> are marked in the document.</div> </div> @@ -1185,7 +1184,6 @@ <h2 class="heading settled" data-level="2" id="contain-property"><span class="se <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-baseline-005.html" title="css/css-contain/contain-layout-baseline-005.html">contain-layout-baseline-005.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-baseline-005.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-baseline-005.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-breaks-001.html" title="css/css-contain/contain-layout-breaks-001.html">contain-layout-breaks-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-breaks-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-breaks-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-breaks-002.html" title="css/css-contain/contain-layout-breaks-002.html">contain-layout-breaks-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-breaks-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-breaks-002.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-button-001.html" title="css/css-contain/contain-layout-button-001.html">contain-layout-button-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-button-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-button-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-cell-001.html" title="css/css-contain/contain-layout-cell-001.html">contain-layout-cell-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-cell-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-cell-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-cell-002.html" title="css/css-contain/contain-layout-cell-002.html">contain-layout-cell-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-cell-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-cell-002.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-flexbox-001.html" title="css/css-contain/contain-layout-flexbox-001.html">contain-layout-flexbox-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-flexbox-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-flexbox-001.html"><small>(source)</small></a> @@ -1710,7 +1708,7 @@ <h3 class="heading settled" data-level="3.2" id="containment-layout"><span class This is not the case of <a data-link-type="biblio" href="#biblio-css-page-3" title="CSS Paged Media Module Level 3">[CSS-PAGE-3]</a> nor of <a data-link-type="biblio" href="#biblio-css-multicol-1" title="CSS Multi-column Layout Module Level 1">[CSS-MULTICOL-1]</a>. This requirement is nonetheless included because several mechanisms that would make this a possibility have been considered -(e.g.: <a data-link-type="biblio" href="#biblio-css-regions-1" title="CSS Regions Module Level 1">[CSS-REGIONS-1]</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment" id="ref-for-selectordef-nth-fragment">::nth-fragment()</a>, a hypothetical selector for individual columns of a multicol…), +(e.g.: <a data-link-type="biblio" href="#biblio-css-regions-1" title="CSS Regions Module Level 1">[CSS-REGIONS-1]</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment" id="ref-for-selectordef-nth-fragment">::nth-fragment()</a>, a hypothetical selector for individual columns of a multicol…), and the guarantees that layout containment is intended to offer would not be realized if such mechanisms did not abide by this rule. <span title="CSS Regions Module Level 1">[CSS-REGIONS-1]</span> has details over how <a data-link-type="dfn" href="#layout-containment" id="ref-for-layout-containment⑦">layout containment</a> affects regions.</p> @@ -1767,7 +1765,7 @@ <h3 class="heading settled" data-level="3.2" id="containment-layout"><span class </ul> </details> <li data-md> - <p>The <a data-link-type="dfn" href="#layout-containment-box" id="ref-for-layout-containment-box⑥">layout containment box</a> creates a <a data-link-type="dfn">stacking context</a>.</p> + <p>The <a data-link-type="dfn" href="#layout-containment-box" id="ref-for-layout-containment-box⑥">layout containment box</a> creates a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a>.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> <ul class="wpt-tests-list"> @@ -1796,7 +1794,6 @@ <h3 class="heading settled" data-level="3.2" id="containment-layout"><span class <summary>Tests</summary> <ul class="wpt-tests-list"> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-baseline-001.html" title="css/css-contain/contain-layout-baseline-001.html">contain-layout-baseline-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-baseline-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-baseline-001.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-button-001.html" title="css/css-contain/contain-layout-button-001.html">contain-layout-button-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-button-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-button-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-flexbox-001.html" title="css/css-contain/contain-layout-flexbox-001.html">contain-layout-flexbox-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-flexbox-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-flexbox-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-grid-001.html" title="css/css-contain/contain-layout-grid-001.html">contain-layout-grid-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-grid-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-grid-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-baseline-002.html" title="css/css-contain/contain-layout-baseline-002.html">contain-layout-baseline-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-baseline-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-baseline-002.html"><small>(source)</small></a> @@ -1897,7 +1894,7 @@ <h3 class="heading settled" data-level="3.3" id="containment-paint"><span class= </ul> </details> <li data-md> - <p>The <a data-link-type="dfn" href="#paint-containment-box" id="ref-for-paint-containment-box③">paint containment box</a> creates a <a data-link-type="dfn">stacking context</a>.</p> + <p>The <a data-link-type="dfn" href="#paint-containment-box" id="ref-for-paint-containment-box③">paint containment box</a> creates a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43①">stacking context</a>.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> <ul class="wpt-tests-list"> @@ -2372,10 +2369,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-OVERFLOW-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="95378c29">::nth-fragment()</span> <li><span class="dfn-paneled" id="01b92003">overflow clip edge</span> <li><span class="dfn-paneled" id="7d2d5e05">overflow-clip-margin</span> </ul> + <li> + <a data-link-type="biblio">[CSS-OVERFLOW-5]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="6755e578">::nth-fragment()</span> + </ul> <li> <a data-link-type="biblio">[CSS-POSITION-3]</a> defines the following terms: <ul> @@ -2427,6 +2428,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS2]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="8e0289d3">padding edge</span> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> <li><span class="dfn-paneled" id="5a3d5e86">vertical-align</span> </ul> <li> @@ -2439,7 +2441,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] @@ -2447,9 +2449,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -2480,9 +2482,11 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dt id="biblio-css-overflow-5">[CSS-OVERFLOW-5] + <dd><a href="https://drafts.csswg.org/css-overflow-5/"><cite>CSS Overflow Module Level 5</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-overflow-5/">https://drafts.csswg.org/css-overflow-5/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-regions-1">[CSS-REGIONS-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] @@ -2740,6 +2744,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "5a3d5e86": {"dfnID":"5a3d5e86","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"3.2. \nLayout Containment"}],"url":"https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align"}, "5e3e8101": {"dfnID":"5e3e8101","dfnText":"inner display type","external":true,"refSections":[{"refs":[{"id":"ref-for-inner-display-type"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-display-4/#inner-display-type"}, "640a9472": {"dfnID":"640a9472","dfnText":"atomic inline","external":true,"refSections":[{"refs":[{"id":"ref-for-atomic-inline"}],"title":"3.1. \nSize Containment"},{"refs":[{"id":"ref-for-atomic-inline\u2460"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-atomic-inline\u2461"}],"title":"3.3. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-3/#atomic-inline"}, +"6755e578": {"dfnID":"6755e578","dfnText":"::nth-fragment()","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-nth-fragment"}],"title":"3.2. \nLayout Containment"}],"url":"https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"}],"title":"2. \nStrong Containment: the contain property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "75563977": {"dfnID":"75563977","dfnText":"natural height","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-height"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-images-3/#natural-height"}, @@ -2751,12 +2756,12 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"}],"title":"2. \nStrong Containment: the contain property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "8e0289d3": {"dfnID":"8e0289d3","dfnText":"padding edge","external":true,"refSections":[{"refs":[{"id":"ref-for-padding-edge"},{"id":"ref-for-padding-edge\u2460"}],"title":"3.3. \nPaint Containment"}],"url":"https://www.w3.org/TR/CSS2/box.html#padding-edge"}, -"95378c29": {"dfnID":"95378c29","dfnText":"::nth-fragment()","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-nth-fragment"}],"title":"3.2. \nLayout Containment"}],"url":"https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment"}, "9958418a": {"dfnID":"9958418a","dfnText":"overflow-y","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow-y"},{"id":"ref-for-propdef-overflow-y\u2460"},{"id":"ref-for-propdef-overflow-y\u2461"}],"title":"3.3. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow-y"}, "9b54ada7": {"dfnID":"9b54ada7","dfnText":"style containment","external":true,"refSections":[{"refs":[{"id":"ref-for-style-containment"}],"title":"Changes from the\nCandidate Recommendation of 08 November 2018"}],"url":"https://drafts.csswg.org/css-contain-2/#style-containment"}, "9ee4a8b2": {"dfnID":"9ee4a8b2","dfnText":"contents","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-contents"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-valdef-display-contents\u2460"}],"title":"3.3. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-contents"}, "a0e35b6d": {"dfnID":"a0e35b6d","dfnText":"sizing property","external":true,"refSections":[{"refs":[{"id":"ref-for-sizing-property"},{"id":"ref-for-sizing-property\u2460"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-sizing-3/#sizing-property"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-x43\u2460"}],"title":"3.3. \nPaint Containment"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "a758a91a": {"dfnID":"a758a91a","dfnText":"establishes an independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-independent-formatting-context"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-establish-an-independent-formatting-context\u2460"}],"title":"3.3. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "a96baa0d": {"dfnID":"a96baa0d","dfnText":"internal ruby box","external":true,"refSections":[{"refs":[{"id":"ref-for-internal-ruby-box"}],"title":"3.1. \nSize Containment"},{"refs":[{"id":"ref-for-internal-ruby-box\u2460"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-internal-ruby-box\u2461"}],"title":"3.3. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-3/#internal-ruby-box"}, @@ -3232,7 +3237,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible": {"export":true,"for_":["overflow","overflow-x","overflow-y"],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"visible","type":"value","url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible"}, "https://drafts.csswg.org/css-overflow-4/#overflow-clip-edge": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-overflow","spec":"css-overflow-4","status":"current","text":"overflow clip edge","type":"dfn","url":"https://drafts.csswg.org/css-overflow-4/#overflow-clip-edge"}, "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-overflow","spec":"css-overflow-4","status":"current","text":"overflow-clip-margin","type":"property","url":"https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin"}, -"https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-overflow","spec":"css-overflow-4","status":"current","text":"::nth-fragment()","type":"selector","url":"https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment"}, +"https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-overflow","spec":"css-overflow-5","status":"current","text":"::nth-fragment()","type":"selector","url":"https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment"}, "https://drafts.csswg.org/css-position-3/#absolute-positioning-containing-block": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"absolute positioning containing block","type":"dfn","url":"https://drafts.csswg.org/css-position-3/#absolute-positioning-containing-block"}, "https://drafts.csswg.org/css-position-3/#fixed-positioning-containing-block": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"fixed positioning containing block","type":"dfn","url":"https://drafts.csswg.org/css-position-3/#fixed-positioning-containing-block"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-after": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::after","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-after"}, @@ -3255,6 +3260,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://svgwg.org/svg2-draft/struct.html#elementdef-svg": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"svg","type":"element","url":"https://svgwg.org/svg2-draft/struct.html#elementdef-svg"}, "https://www.w3.org/TR/CSS2/box.html#padding-edge": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"padding edge","type":"dfn","url":"https://www.w3.org/TR/CSS2/box.html#padding-edge"}, "https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"vertical-align","type":"property","url":"https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-contain-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-contain-2/Overview.console.txt index 1bda84f69a..98fd7c5ea1 100644 --- a/tests/github/w3c/csswg-drafts/css-contain-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-contain-2/Overview.console.txt @@ -2,8 +2,10 @@ LINT: Your document appears to use tabs to indent, but line 1459 starts with spa LINT: Your document appears to use tabs to indent, but line 1460 starts with spaces. LINT: Your document appears to use tabs to indent, but line 1496 starts with spaces. LINT: Your document appears to use tabs to indent, but line 1497 starts with spaces. +LINE 258: Couldn't find WPT test 'css/css-contain/contain-layout-button-001.html' - did you misspell something? +LINE 810: Couldn't find WPT test 'css/css-contain/contain-layout-button-001.html' - did you misspell something? LINE 1070: Couldn't find WPT test 'css/css-contain/content-visibility/content-visibility-059.html' - did you misspell something? -WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +WARNING: There are 293 WPT tests underneath your path prefix 'css/css-contain/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) css/css-contain/contain-body-bg-001.html css/css-contain/contain-body-bg-002.html css/css-contain/contain-body-bg-003.html @@ -49,6 +51,8 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-inline-size-fieldset.html css/css-contain/contain-inline-size-flex.html css/css-contain/contain-inline-size-flexitem.html + css/css-contain/contain-inline-size-grid-indefinite-height-min-height-flex-row.html + css/css-contain/contain-inline-size-grid-stretches-auto-rows.html css/css-contain/contain-inline-size-grid.html css/css-contain/contain-inline-size-intrinsic.html css/css-contain/contain-inline-size-legend.html @@ -63,6 +67,9 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-layout-021.html css/css-contain/contain-layout-containing-block-absolute-001.html css/css-contain/contain-layout-containing-block-fixed-001.html + css/css-contain/contain-layout-dynamic-001.html + css/css-contain/contain-layout-dynamic-004.html + css/css-contain/contain-layout-dynamic-005.html css/css-contain/contain-layout-formatting-context-float-001.html css/css-contain/contain-layout-formatting-context-margin-001.html css/css-contain/contain-layout-ignored-cases-ib-split-001.html @@ -86,6 +93,11 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-paint-clip-006.html css/css-contain/contain-paint-containing-block-absolute-001.html css/css-contain/contain-paint-containing-block-fixed-001.html + css/css-contain/contain-paint-dynamic-001.html + css/css-contain/contain-paint-dynamic-002.html + css/css-contain/contain-paint-dynamic-003.html + css/css-contain/contain-paint-dynamic-004.html + css/css-contain/contain-paint-dynamic-005.html css/css-contain/contain-paint-formatting-context-float-001.html css/css-contain/contain-paint-formatting-context-margin-001.html css/css-contain/contain-paint-ignored-cases-ib-split-001.html @@ -101,11 +113,14 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-size-block-003.html css/css-contain/contain-size-block-004.html css/css-contain/contain-size-button-002.html + css/css-contain/contain-size-dynamic-001.html css/css-contain/contain-size-fieldset-003.html css/css-contain/contain-size-fieldset-004.html css/css-contain/contain-size-flex-001.html css/css-contain/contain-size-grid-005.html css/css-contain/contain-size-grid-006.html + css/css-contain/contain-size-grid-indefinite-height-min-height-flex-row.html + css/css-contain/contain-size-grid-stretches-auto-rows.html css/css-contain/contain-size-inline-block-001.html css/css-contain/contain-size-inline-block-002.html css/css-contain/contain-size-inline-block-003.html @@ -122,6 +137,7 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-size-select-elem-005.html css/css-contain/contain-size-table-caption-001.html css/css-contain/contain-style-counters-005.html + css/css-contain/contain-style-dynamic-001.html css/css-contain/contain-style-ol-ordinal-li-container.html css/css-contain/contain-style-ol-ordinal-pseudo-reversed.html css/css-contain/contain-style-ol-ordinal-pseudo.html @@ -129,191 +145,54 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/contain-style-ol-ordinal-start-reversed.html css/css-contain/contain-style-ol-ordinal-start.html css/css-contain/contain-style-ol-ordinal.html - css/css-contain/container-queries/animation-container-size.html - css/css-contain/container-queries/animation-container-type-dynamic.html - css/css-contain/container-queries/animation-nested-animation.html - css/css-contain/container-queries/animation-nested-transition.html - css/css-contain/container-queries/aspect-ratio-feature-evaluation.html - css/css-contain/container-queries/at-container-parsing.html - css/css-contain/container-queries/at-container-serialization.html - css/css-contain/container-queries/at-container-style-parsing.html - css/css-contain/container-queries/at-container-style-serialization.html - css/css-contain/container-queries/auto-scrollbars.html - css/css-contain/container-queries/backdrop-invalidation.html - css/css-contain/container-queries/calc-evaluation.html - css/css-contain/container-queries/canvas-as-container-001.html - css/css-contain/container-queries/canvas-as-container-002.html - css/css-contain/container-queries/canvas-as-container-003.html - css/css-contain/container-queries/canvas-as-container-004.html - css/css-contain/container-queries/canvas-as-container-005.html - css/css-contain/container-queries/canvas-as-container-006.html - css/css-contain/container-queries/change-display-in-container.html - css/css-contain/container-queries/chrome-legacy-skip-recalc.html - css/css-contain/container-queries/column-spanner-in-container.html - css/css-contain/container-queries/conditional-container-status.html - css/css-contain/container-queries/container-computed.html - css/css-contain/container-queries/container-for-cue.html - css/css-contain/container-queries/container-for-shadow-dom.html - css/css-contain/container-queries/container-inheritance.html - css/css-contain/container-queries/container-inner-at-rules.html - css/css-contain/container-queries/container-inside-multicol-with-table.html - css/css-contain/container-queries/container-longhand-animation-type.html - css/css-contain/container-queries/container-name-computed.html - css/css-contain/container-queries/container-name-invalidation.html - css/css-contain/container-queries/container-name-parsing.html - css/css-contain/container-queries/container-name-tree-scoped.html - css/css-contain/container-queries/container-nested.html - css/css-contain/container-queries/container-parsing.html - css/css-contain/container-queries/container-selection.html - css/css-contain/container-queries/container-size-invalidation-after-load.html - css/css-contain/container-queries/container-size-invalidation.html - css/css-contain/container-queries/container-size-nested-invalidation.html - css/css-contain/container-queries/container-size-shadow-invalidation.html - css/css-contain/container-queries/container-type-computed.html - css/css-contain/container-queries/container-type-containment.html - css/css-contain/container-queries/container-type-invalidation.html - css/css-contain/container-queries/container-type-layout-invalidation.html - css/css-contain/container-queries/container-type-parsing.html - css/css-contain/container-queries/container-units-animation.html - css/css-contain/container-queries/container-units-basic.html - css/css-contain/container-queries/container-units-computational-independence.html - css/css-contain/container-queries/container-units-gradient-invalidation.html - css/css-contain/container-queries/container-units-gradient.html - css/css-contain/container-queries/container-units-in-at-container-dynamic.html - css/css-contain/container-queries/container-units-in-at-container-fallback.html - css/css-contain/container-queries/container-units-in-at-container.html - css/css-contain/container-queries/container-units-ineligible-container.html - css/css-contain/container-queries/container-units-invalidation.html - css/css-contain/container-queries/container-units-media-queries.html - css/css-contain/container-queries/container-units-selection.html - css/css-contain/container-queries/container-units-shadow.html - css/css-contain/container-queries/container-units-small-viewport-fallback.html - css/css-contain/container-queries/container-units-svglength.html - css/css-contain/container-queries/container-units-typed-om.html - css/css-contain/container-queries/counters-flex-circular.html - css/css-contain/container-queries/counters-in-container-dynamic.html - css/css-contain/container-queries/counters-in-container.html - css/css-contain/container-queries/crashtests/br-crash.html - css/css-contain/container-queries/crashtests/canvas-as-container-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1289718-000-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1289718-001-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1346969-crash.html - css/css-contain/container-queries/crashtests/chrome-bug-1362391-crash.html - css/css-contain/container-queries/crashtests/chrome-layout-root-crash.html - css/css-contain/container-queries/crashtests/chrome-quotes-crash.html - css/css-contain/container-queries/crashtests/chrome-remove-insert-evaluator-crash.html - css/css-contain/container-queries/crashtests/columns-in-table-001-crash.html - css/css-contain/container-queries/crashtests/columns-in-table-002-crash.html - css/css-contain/container-queries/crashtests/container-in-canvas-crash.html - css/css-contain/container-queries/crashtests/container-type-change-chrome-legacy-crash.html - css/css-contain/container-queries/crashtests/dialog-backdrop-crash.html - css/css-contain/container-queries/crashtests/dirty-rowgroup-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-000-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-001-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-002-crash.html - css/css-contain/container-queries/crashtests/flex-in-columns-003-crash.html - css/css-contain/container-queries/crashtests/focus-inside-content-visibility-crash.html - css/css-contain/container-queries/crashtests/force-sibling-style-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-000-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-001-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-002-crash.html - css/css-contain/container-queries/crashtests/grid-in-columns-003-crash.html - css/css-contain/container-queries/crashtests/iframe-init-crash.html - css/css-contain/container-queries/crashtests/inline-multicol-inside-container-crash.html - css/css-contain/container-queries/crashtests/inline-with-columns-000-crash.html - css/css-contain/container-queries/crashtests/inline-with-columns-001-crash.html - css/css-contain/container-queries/crashtests/input-column-group-container-crash.html - css/css-contain/container-queries/crashtests/input-placeholder-inline-size-crash.html - css/css-contain/container-queries/crashtests/marker-gcs-after-disconnect-crash.html - css/css-contain/container-queries/crashtests/math-block-container-child-crash.html - css/css-contain/container-queries/crashtests/orthogonal-replaced-crash.html - css/css-contain/container-queries/crashtests/pseudo-container-crash.html - css/css-contain/container-queries/crashtests/reversed-ol-crash.html - css/css-contain/container-queries/crashtests/svg-layout-root-crash.html - css/css-contain/container-queries/crashtests/svg-text-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-000-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-001-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-002-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-003-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-004-crash.html - css/css-contain/container-queries/crashtests/table-in-columns-005-crash.html - css/css-contain/container-queries/custom-layout-container-001.https.html - css/css-contain/container-queries/custom-property-style-queries.html - css/css-contain/container-queries/custom-property-style-query-change.html - css/css-contain/container-queries/deep-nested-inline-size-containers.html - css/css-contain/container-queries/dialog-backdrop-create.html - css/css-contain/container-queries/dialog-backdrop-remove.html - css/css-contain/container-queries/display-contents.html - css/css-contain/container-queries/display-in-container.html - css/css-contain/container-queries/display-none.html - css/css-contain/container-queries/fieldset-legend-change.html - css/css-contain/container-queries/font-relative-calc-dynamic.html - css/css-contain/container-queries/font-relative-units-dynamic.html - css/css-contain/container-queries/font-relative-units.html - css/css-contain/container-queries/fragmented-container-001.html - css/css-contain/container-queries/get-animations.html - css/css-contain/container-queries/grid-container.html - css/css-contain/container-queries/grid-item-container.html - css/css-contain/container-queries/idlharness.html - css/css-contain/container-queries/iframe-in-container-invalidation.html - css/css-contain/container-queries/iframe-invalidation.html - css/css-contain/container-queries/ineligible-containment.html - css/css-contain/container-queries/inline-size-and-min-width.html - css/css-contain/container-queries/inline-size-bfc-floats.html - css/css-contain/container-queries/inline-size-containment-vertical-rl.html - css/css-contain/container-queries/inline-size-containment.html - css/css-contain/container-queries/inner-first-line-non-matching.html - css/css-contain/container-queries/layout-dependent-focus.html - css/css-contain/container-queries/multicol-container-001.html - css/css-contain/container-queries/multicol-inside-container.html - css/css-contain/container-queries/nested-query-containers.html - css/css-contain/container-queries/never-match-container.html - css/css-contain/container-queries/orthogonal-wm-container-query.html - css/css-contain/container-queries/percentage-padding-orthogonal.html - css/css-contain/container-queries/pseudo-elements-001.html - css/css-contain/container-queries/pseudo-elements-002.html - css/css-contain/container-queries/pseudo-elements-003.html - css/css-contain/container-queries/pseudo-elements-004.html - css/css-contain/container-queries/pseudo-elements-005.html - css/css-contain/container-queries/pseudo-elements-006.html - css/css-contain/container-queries/pseudo-elements-007.html - css/css-contain/container-queries/pseudo-elements-008.html - css/css-contain/container-queries/query-content-box.html - css/css-contain/container-queries/query-evaluation.html - css/css-contain/container-queries/reattach-container-with-dirty-child.html - css/css-contain/container-queries/resize-while-content-visibility-hidden.html - css/css-contain/container-queries/sibling-layout-dependency.html - css/css-contain/container-queries/size-container-no-principal-box.html - css/css-contain/container-queries/size-feature-evaluation.html - css/css-contain/container-queries/style-change-in-container.html - css/css-contain/container-queries/style-not-sharing-float.html - css/css-contain/container-queries/svg-foreignobject-child-container.html - css/css-contain/container-queries/svg-foreignobject-no-size-container.html - css/css-contain/container-queries/svg-g-no-size-container.html - css/css-contain/container-queries/svg-root-size-container.html - css/css-contain/container-queries/table-inside-container-changing-display.html - css/css-contain/container-queries/top-layer-dialog-backdrop.html - css/css-contain/container-queries/top-layer-dialog-container.html - css/css-contain/container-queries/top-layer-dialog.html - css/css-contain/container-queries/top-layer-nested-dialog.html - css/css-contain/container-queries/transition-scrollbars.html - css/css-contain/container-queries/transition-style-change-event-002.html - css/css-contain/container-queries/transition-style-change-event.html - css/css-contain/container-queries/unsupported-axis.html - css/css-contain/container-queries/viewport-units-dynamic.html - css/css-contain/container-queries/viewport-units.html - css/css-contain/container-queries/whitespace-update-after-removal.html + css/css-contain/contain-style-remove-element-crash.html + css/css-contain/container-type-important.html css/css-contain/content-visibility/animation-display-lock.html css/css-contain/content-visibility/content-visibility-082.html css/css-contain/content-visibility/content-visibility-083.html css/css-contain/content-visibility/content-visibility-084.html + css/css-contain/content-visibility/content-visibility-085.html + css/css-contain/content-visibility/content-visibility-086.html + css/css-contain/content-visibility/content-visibility-087.html + css/css-contain/content-visibility/content-visibility-088.html + css/css-contain/content-visibility/content-visibility-089.html + css/css-contain/content-visibility/content-visibility-090.html + css/css-contain/content-visibility/content-visibility-091.html + css/css-contain/content-visibility/content-visibility-092.html + css/css-contain/content-visibility/content-visibility-093.html + css/css-contain/content-visibility/content-visibility-094.html + css/css-contain/content-visibility/content-visibility-095.html + css/css-contain/content-visibility/content-visibility-096.html + css/css-contain/content-visibility/content-visibility-097.html + css/css-contain/content-visibility/content-visibility-098.html + css/css-contain/content-visibility/content-visibility-099.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-001.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-002.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-003.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-004.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-005.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-006.html + css/css-contain/content-visibility/content-visibility-anchor-positioning-007.html + css/css-contain/content-visibility/content-visibility-animation-and-scroll.html + css/css-contain/content-visibility/content-visibility-animation-becomes-visible.html + css/css-contain/content-visibility/content-visibility-animation-in-auto-subtree.html + css/css-contain/content-visibility/content-visibility-animation-with-scroll-timeline-in-auto-subtree.html + css/css-contain/content-visibility/content-visibility-animation-with-scroll-timeline-in-hidden-subtree.html + css/css-contain/content-visibility/content-visibility-auto-applied-to-th-crash.html + css/css-contain/content-visibility/content-visibility-auto-first-observation-immediate.html css/css-contain/content-visibility/content-visibility-auto-in-iframe.html css/css-contain/content-visibility/content-visibility-auto-intrinsic-width.html + css/css-contain/content-visibility/content-visibility-auto-nested-scroll.html css/css-contain/content-visibility/content-visibility-auto-nested.html + css/css-contain/content-visibility/content-visibility-auto-print.html + css/css-contain/content-visibility/content-visibility-auto-relevancy-updates.html css/css-contain/content-visibility/content-visibility-auto-selection-crash.html css/css-contain/content-visibility/content-visibility-auto-state-changed-first-observation.html css/css-contain/content-visibility/content-visibility-auto-state-changed-removed.html css/css-contain/content-visibility/content-visibility-auto-state-changed.html + css/css-contain/content-visibility/content-visibility-auto-svg-image.html + css/css-contain/content-visibility/content-visibility-auto-text-fragment.html + css/css-contain/content-visibility/content-visibility-background-clip-crash.html css/css-contain/content-visibility/content-visibility-canvas.html css/css-contain/content-visibility/content-visibility-continuations-crash.html css/css-contain/content-visibility/content-visibility-fieldset-size.html @@ -322,10 +201,39 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/content-visibility/content-visibility-img.html css/css-contain/content-visibility/content-visibility-in-svg-000-crash.html css/css-contain/content-visibility/content-visibility-input-image.html + css/css-contain/content-visibility/content-visibility-interpolation.html + css/css-contain/content-visibility/content-visibility-intrinsic-size-001.html + css/css-contain/content-visibility/content-visibility-layout-containment-001.html + css/css-contain/content-visibility/content-visibility-layout-paint-containment-001.html + css/css-contain/content-visibility/content-visibility-on-g.html + css/css-contain/content-visibility/content-visibility-on-root-svg.html css/css-contain/content-visibility/content-visibility-output-crash.html + css/css-contain/content-visibility/content-visibility-paint-containment-001.html + css/css-contain/content-visibility/content-visibility-paint-containment-002.html + css/css-contain/content-visibility/content-visibility-paint-containment-003.html css/css-contain/content-visibility/content-visibility-resize-observer-no-error.html + css/css-contain/content-visibility/content-visibility-selection-crash.html + css/css-contain/content-visibility/content-visibility-size-containment-001.html + css/css-contain/content-visibility/content-visibility-style-containment-001.html + css/css-contain/content-visibility/content-visibility-svg-path.html + css/css-contain/content-visibility/content-visibility-svg-rect.html + css/css-contain/content-visibility/content-visibility-svg-text.html css/css-contain/content-visibility/content-visibility-svg.html css/css-contain/content-visibility/content-visibility-video.html + css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-001.html + css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-002.html + css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-003.html + css/css-contain/content-visibility/content-visibility-web-animation-in-auto-subtree.html + css/css-contain/content-visibility/content-visibility-with-float-crash.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-000.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-001.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-002.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-003.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-004.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-005.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-006.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-and-auto-descendant.html + css/css-contain/content-visibility/content-visibility-with-popover-top-layer-hide-after-addition.html css/css-contain/content-visibility/content-visibility-with-top-layer-000.html css/css-contain/content-visibility/content-visibility-with-top-layer-001.html css/css-contain/content-visibility/content-visibility-with-top-layer-002.html @@ -333,16 +241,25 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/content-visibility/content-visibility-with-top-layer-004.html css/css-contain/content-visibility/content-visibility-with-top-layer-005.html css/css-contain/content-visibility/content-visibility-with-top-layer-006.html + css/css-contain/content-visibility/content-visibility-with-top-layer-007.html + css/css-contain/content-visibility/content-visibility-with-top-layer-008.html + css/css-contain/content-visibility/content-visibility-with-top-layer-and-auto-descendant.html css/css-contain/content-visibility/content-visibility-with-top-layer-hide-after-addition.html + css/css-contain/content-visibility/content-visibility-with-top-layer-in-auto-subtree-removal.html css/css-contain/content-visibility/contentvisibility-nestedslot-crash.html + css/css-contain/content-visibility/crashtests/content-visibility-transition-finished-001.html + css/css-contain/content-visibility/crashtests/fieldset.html css/css-contain/content-visibility/crashtests/first-line-and-inline-block.html + css/css-contain/content-visibility/crashtests/grid-dynamic.html css/css-contain/content-visibility/detach-locked-slot-children-crash.html + css/css-contain/content-visibility/display-ruby-text-crash.html css/css-contain/content-visibility/document-element-computed-style.html css/css-contain/content-visibility/dynamic-change-paint-fully-obscuring-child-001.html css/css-contain/content-visibility/element-reassigned-to-skipped-slot.html css/css-contain/content-visibility/element-reassigned-to-slot-in-skipped-subtree.html css/css-contain/content-visibility/hidden-execcommand-crash.html css/css-contain/content-visibility/hidden-pseudo-element-removed-crash.html + css/css-contain/content-visibility/locked-frame-crash.html css/css-contain/content-visibility/meter-selection-crash.html css/css-contain/content-visibility/scrollIntoView-target-with-contents-hidden.html css/css-contain/content-visibility/scrollIntoView-with-focus-target-with-contents-hidden.html @@ -368,17 +285,21 @@ WARNING: There are 369 WPT tests underneath your path prefix 'css/css-contain/' css/css-contain/content-visibility/slot-content-visibility-7-crash.html css/css-contain/content-visibility/slot-content-visibility-8-crash.html css/css-contain/content-visibility/slot-content-visibility-9-crash.html + css/css-contain/content-visibility/touch-action-beside-display-locked-fixedpos-iframe-crash.html + css/css-contain/counter-scoping-004.html css/css-contain/crashtests/contain-nested-crash-001.html css/css-contain/crashtests/contain-nested-crash-002.html css/css-contain/crashtests/contain-nested-crash-003.html + css/css-contain/crashtests/contain-nested-crash-004.html + css/css-contain/crashtests/contain-nested-relayout-boundary.html css/css-contain/parsing/contain-computed-children.html css/css-contain/quote-scoping-empty-style-boundaries.html -LINE 785: No 'dfn' refs found for 'stacking context' with spec 'css2'. -<a bs-line-number="785" data-link-type="dfn" data-lt="stacking context">stacking context</a> -LINE ~846: No 'property' refs found for 'counter-increment' with spec 'css2'. -'counter-increment' -LINE ~908: No 'property' refs found for 'counter-increment' with spec 'css2'. -'counter-increment' -LINE 1016: No 'dfn' refs found for 'stacking context' with spec 'css2'. -<a bs-line-number="1016" data-link-type="dfn" data-lt="stacking context">stacking context</a> + css/css-contain/quote-scoping-invalidation-001.html + css/css-contain/quote-scoping-invalidation-002.html + css/css-contain/quote-scoping-invalidation-003.html + css/css-contain/quote-scoping-invalidation-004.html + css/css-contain/quote-scoping-shadow-dom-crash.html LINE 1743: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'dom-contentvisibilityautostatechangeevent-contentvisibilityautostatechangeevent' ID found, skipping MDN features that would target it. +WARNING: No 'dom-contentvisibilityautostatechangeevent-skipped' ID found, skipping MDN features that would target it. +WARNING: No 'content-visibility-auto-state-change' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-contain-2/Overview.html b/tests/github/w3c/csswg-drafts/css-contain-2/Overview.html index 7011dbe398..5f26ebca9c 100644 --- a/tests/github/w3c/csswg-drafts/css-contain-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-contain-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Containment Module Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-contain-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1080,7 +1079,7 @@ <h1 class="p-name no-ref" id="title">CSS Containment Module Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1102,7 +1101,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-contain] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-contain%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1400,7 +1399,6 @@ <h2 class="heading settled" data-level="2" id="contain-property"><span class="se <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-baseline-005.html" title="css/css-contain/contain-layout-baseline-005.html">contain-layout-baseline-005.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-baseline-005.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-baseline-005.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-breaks-001.html" title="css/css-contain/contain-layout-breaks-001.html">contain-layout-breaks-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-breaks-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-breaks-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-breaks-002.html" title="css/css-contain/contain-layout-breaks-002.html">contain-layout-breaks-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-breaks-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-breaks-002.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-button-001.html" title="css/css-contain/contain-layout-button-001.html">contain-layout-button-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-button-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-button-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-cell-001.html" title="css/css-contain/contain-layout-cell-001.html">contain-layout-cell-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-cell-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-cell-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-cell-002.html" title="css/css-contain/contain-layout-cell-002.html">contain-layout-cell-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-cell-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-cell-002.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-flexbox-001.html" title="css/css-contain/contain-layout-flexbox-001.html">contain-layout-flexbox-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-flexbox-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-flexbox-001.html"><small>(source)</small></a> @@ -1822,7 +1820,7 @@ <h3 class="heading settled" data-level="3.2" id="containment-layout"><span class This is not the case of <a data-link-type="biblio" href="#biblio-css-page-3" title="CSS Paged Media Module Level 3">[CSS-PAGE-3]</a> nor of <a data-link-type="biblio" href="#biblio-css-multicol-1" title="CSS Multi-column Layout Module Level 1">[CSS-MULTICOL-1]</a>. This requirement is nonetheless included because several mechanisms that would make this a possibility have been considered -(e.g.: <a data-link-type="biblio" href="#biblio-css-regions-1" title="CSS Regions Module Level 1">[CSS-REGIONS-1]</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment" id="ref-for-selectordef-nth-fragment">::nth-fragment()</a>, a hypothetical selector for individual columns of a multicol…), +(e.g.: <a data-link-type="biblio" href="#biblio-css-regions-1" title="CSS Regions Module Level 1">[CSS-REGIONS-1]</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment" id="ref-for-selectordef-nth-fragment">::nth-fragment()</a>, a hypothetical selector for individual columns of a multicol…), and the guarantees that layout containment is intended to offer would not be realized if such mechanisms did not abide by this rule. <span title="CSS Regions Module Level 1">[CSS-REGIONS-1]</span> has details over how <a data-link-type="dfn" href="#layout-containment" id="ref-for-layout-containment⑥">layout containment</a> affects regions.</p> @@ -1879,7 +1877,7 @@ <h3 class="heading settled" data-level="3.2" id="containment-layout"><span class </ul> </details> <li data-md> - <p>The <a data-link-type="dfn" href="#layout-containment-box" id="ref-for-layout-containment-box⑥">layout containment box</a> creates a <a data-link-type="dfn">stacking context</a>.</p> + <p>The <a data-link-type="dfn" href="#layout-containment-box" id="ref-for-layout-containment-box⑥">layout containment box</a> creates a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a>.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> <ul class="wpt-tests-list"> @@ -1908,7 +1906,6 @@ <h3 class="heading settled" data-level="3.2" id="containment-layout"><span class <summary>Tests</summary> <ul class="wpt-tests-list"> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-baseline-001.html" title="css/css-contain/contain-layout-baseline-001.html">contain-layout-baseline-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-baseline-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-baseline-001.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-button-001.html" title="css/css-contain/contain-layout-button-001.html">contain-layout-button-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-button-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-button-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-flexbox-001.html" title="css/css-contain/contain-layout-flexbox-001.html">contain-layout-flexbox-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-flexbox-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-flexbox-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-grid-001.html" title="css/css-contain/contain-layout-grid-001.html">contain-layout-grid-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-grid-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-grid-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-contain/contain-layout-baseline-002.html" title="css/css-contain/contain-layout-baseline-002.html">contain-layout-baseline-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-contain/contain-layout-baseline-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-contain/contain-layout-baseline-002.html"><small>(source)</small></a> @@ -1938,7 +1935,7 @@ <h3 class="heading settled" data-level="3.3" id="containment-style"><span class= <p>Giving an element <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="style-containment">style containment</dfn> and has the following effects:</p> <ol> <li data-md> - <p>The <a class="property css" data-link-type="property">counter-increment</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-lists-3/#propdef-counter-set" id="ref-for-propdef-counter-set">counter-set</a> properties + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" id="ref-for-propdef-counter-increment">counter-increment</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-lists-3/#propdef-counter-set" id="ref-for-propdef-counter-set">counter-set</a> properties must be <a data-link-type="dfn" href="#property-scoped-to-a-sub-tree" id="ref-for-property-scoped-to-a-sub-tree">scoped to the element’s sub-tree</a> and create a new counter.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> @@ -2004,7 +2001,7 @@ <h3 class="heading settled" data-level="3.3" id="containment-style"><span class= </details> </ul> <div class="example" id="example-6932a400"> - <a class="self-link" href="#example-6932a400"></a> As <a class="property css" data-link-type="property">counter-increment</a> is scoped to an element’s subtree, + <a class="self-link" href="#example-6932a400"></a> As <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" id="ref-for-propdef-counter-increment①">counter-increment</a> is scoped to an element’s subtree, the first use of it within the subtree acts as if the named counter were set to 0 at the scoping element, regardless of whether the counter had been used outside the scoping element. Any increments made within the subtree have no effect on counters of the same name outside the scoping element. @@ -2105,7 +2102,7 @@ <h3 class="heading settled" data-level="3.4" id="containment-paint"><span class= </ul> </details> <li data-md> - <p>The <a data-link-type="dfn" href="#paint-containment-box" id="ref-for-paint-containment-box③">paint containment box</a> creates a <a data-link-type="dfn">stacking context</a>.</p> + <p>The <a data-link-type="dfn" href="#paint-containment-box" id="ref-for-paint-containment-box③">paint containment box</a> creates a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43①">stacking context</a>.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> <ul class="wpt-tests-list"> @@ -3056,10 +3053,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-OVERFLOW-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="95378c29">::nth-fragment()</span> <li><span class="dfn-paneled" id="01b92003">overflow clip edge</span> <li><span class="dfn-paneled" id="7d2d5e05">overflow-clip-margin</span> </ul> + <li> + <a data-link-type="biblio">[CSS-OVERFLOW-5]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="6755e578">::nth-fragment()</span> + </ul> <li> <a data-link-type="biblio">[CSS-POSITION-3]</a> defines the following terms: <ul> @@ -3126,9 +3127,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="bcd1c8b8">close-quote</span> <li><span class="dfn-paneled" id="6b32df53">content</span> + <li><span class="dfn-paneled" id="a121cf09">counter-increment</span> <li><span class="dfn-paneled" id="68f547b5">no-close-quote</span> <li><span class="dfn-paneled" id="c3a14ee6">no-open-quote</span> <li><span class="dfn-paneled" id="870d175e">open-quote</span> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> <li><span class="dfn-paneled" id="5a3d5e86">vertical-align</span> </ul> <li> @@ -3166,9 +3169,9 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] @@ -3176,9 +3179,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-contain-1">[CSS-CONTAIN-1] <dd>Tab Atkins Jr.; Florian Rivoal. <a href="https://drafts.csswg.org/css-contain-1/"><cite>CSS Containment Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-1/">https://drafts.csswg.org/css-contain-1/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] @@ -3186,7 +3189,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] @@ -3210,7 +3213,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-intersection-observer">[INTERSECTION-OBSERVER] - <dd>Stefan Zager; Emilio Cobos Álvarez. <a href="https://w3c.github.io/IntersectionObserver/"><cite>Intersection Observer</cite></a>. URL: <a href="https://w3c.github.io/IntersectionObserver/">https://w3c.github.io/IntersectionObserver/</a> + <dd>Stefan Zager; Emilio Cobos Álvarez; Traian Captan. <a href="https://w3c.github.io/IntersectionObserver/"><cite>Intersection Observer</cite></a>. URL: <a href="https://w3c.github.io/IntersectionObserver/">https://w3c.github.io/IntersectionObserver/</a> <dt id="biblio-resize-observer-1">[RESIZE-OBSERVER-1] <dd>Aleks Totic; Greg Whitworth. <a href="https://drafts.csswg.org/resize-observer/"><cite>Resize Observer</cite></a>. URL: <a href="https://drafts.csswg.org/resize-observer/">https://drafts.csswg.org/resize-observer/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -3224,8 +3227,10 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> + <dt id="biblio-css-overflow-5">[CSS-OVERFLOW-5] + <dd><a href="https://drafts.csswg.org/css-overflow-5/"><cite>CSS Overflow Module Level 5</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-overflow-5/">https://drafts.csswg.org/css-overflow-5/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-regions-1">[CSS-REGIONS-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] @@ -3273,7 +3278,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <details class="mdn-anno unpositioned" data-anno-for="valdef-contain-style"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain#style" title="The contain CSS property allows an author to indicate that an element and its contents are, as much as possible, independent of the rest of the document tree. Containment allows the browser to calculate layout, style, paint, size, or any combination of them for a specific area of the DOM. Changes within an element with containment applied are not propagated outside of the contained element to the rest of the page, leading to performance benefits through fewer DOM re-renders.">contain#style</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain#style" title="The contain CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.">contain#style</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> @@ -3289,7 +3294,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <details class="mdn-anno unpositioned" data-anno-for="contain-property"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain" title="The contain CSS property allows an author to indicate that an element and its contents are, as much as possible, independent of the rest of the document tree. Containment allows the browser to calculate layout, style, paint, size, or any combination of them for a specific area of the DOM. Changes within an element with containment applied are not propagated outside of the contained element to the rest of the page, leading to performance benefits through fewer DOM re-renders.">contain</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain" title="The contain CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.">contain</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>69+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> @@ -3303,12 +3308,11 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </div> </details> <details class="mdn-anno unpositioned" data-anno-for="content-visibility"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/content-visibility" title="The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element&apos;s rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.">content-visibility</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/content-visibility" title="The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. It enables the user agent to skip an element&apos;s rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.">content-visibility</a></p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> <hr> @@ -3542,6 +3546,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "5a3d5e86": {"dfnID":"5a3d5e86","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"3.2. \nLayout Containment"}],"url":"https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align"}, "5e3e8101": {"dfnID":"5e3e8101","dfnText":"inner display type","external":true,"refSections":[{"refs":[{"id":"ref-for-inner-display-type"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-display-4/#inner-display-type"}, "640a9472": {"dfnID":"640a9472","dfnText":"atomic inline","external":true,"refSections":[{"refs":[{"id":"ref-for-atomic-inline"}],"title":"3.1. \nSize Containment"},{"refs":[{"id":"ref-for-atomic-inline\u2460"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-atomic-inline\u2461"}],"title":"3.4. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-3/#atomic-inline"}, +"6755e578": {"dfnID":"6755e578","dfnText":"::nth-fragment()","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-nth-fragment"}],"title":"3.2. \nLayout Containment"}],"url":"https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "68f547b5": {"dfnID":"68f547b5","dfnText":"no-close-quote","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-no-close-quote"}],"title":"3.3. \nStyle Containment"}],"url":"https://www.w3.org/TR/CSS2/generate.html#value-def-no-close-quote"}, "6b32df53": {"dfnID":"6b32df53","dfnText":"content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-content"},{"id":"ref-for-propdef-content\u2460"}],"title":"3.3. \nStyle Containment"}],"url":"https://www.w3.org/TR/CSS2/generate.html#propdef-content"}, @@ -3560,14 +3565,15 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"},{"id":"ref-for-comb-any\u2461"}],"title":"2. \nStrong Containment: the contain property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "94b809f0": {"dfnID":"94b809f0","dfnText":"animationiteration","external":true,"refSections":[{"refs":[{"id":"ref-for-eventdef-globaleventhandlers-animationiteration"}],"title":"4.3. Restrictions and Clarifications"}],"url":"https://drafts.csswg.org/css-animations-1/#eventdef-globaleventhandlers-animationiteration"}, -"95378c29": {"dfnID":"95378c29","dfnText":"::nth-fragment()","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-nth-fragment"}],"title":"3.2. \nLayout Containment"}],"url":"https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment"}, "9620c79b": {"dfnID":"9620c79b","dfnText":"contain-intrinsic-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-contain-intrinsic-size"},{"id":"ref-for-propdef-contain-intrinsic-size\u2460"},{"id":"ref-for-propdef-contain-intrinsic-size\u2461"}],"title":"4.2. \nUsing content-visibility: auto"}],"url":"https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-size"}, "9958418a": {"dfnID":"9958418a","dfnText":"overflow-y","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow-y"},{"id":"ref-for-propdef-overflow-y\u2460"},{"id":"ref-for-propdef-overflow-y\u2461"}],"title":"3.4. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow-y"}, "9be179f5": {"dfnID":"9be179f5","dfnText":"IntersectionObserver","external":true,"refSections":[{"refs":[{"id":"ref-for-intersectionobserver"}],"title":"4.3. Restrictions and Clarifications"}],"url":"https://w3c.github.io/IntersectionObserver/#intersectionobserver"}, "9ee4a8b2": {"dfnID":"9ee4a8b2","dfnText":"contents","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-contents"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-valdef-display-contents\u2460"}],"title":"3.4. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-contents"}, "a0e35b6d": {"dfnID":"a0e35b6d","dfnText":"sizing property","external":true,"refSections":[{"refs":[{"id":"ref-for-sizing-property"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-sizing-3/#sizing-property"}, +"a121cf09": {"dfnID":"a121cf09","dfnText":"counter-increment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-counter-increment"},{"id":"ref-for-propdef-counter-increment\u2460"}],"title":"3.3. \nStyle Containment"}],"url":"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment"}, "a264b960": {"dfnID":"a264b960","dfnText":"innerText","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-innertext"}],"title":"4.3. Restrictions and Clarifications"}],"url":"https://html.spec.whatwg.org/multipage/dom.html#dom-innertext"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"3.1. \nSize Containment"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-x43\u2460"}],"title":"3.4. \nPaint Containment"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "a758a91a": {"dfnID":"a758a91a","dfnText":"establishes an independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-independent-formatting-context"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-establish-an-independent-formatting-context\u2460"}],"title":"3.4. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"3.1. \nSize Containment"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"4. Suppressing An Element\u2019s Contents Entirely: the content-visibility property"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "a96baa0d": {"dfnID":"a96baa0d","dfnText":"internal ruby box","external":true,"refSections":[{"refs":[{"id":"ref-for-internal-ruby-box"}],"title":"3.1. \nSize Containment"},{"refs":[{"id":"ref-for-internal-ruby-box\u2460"}],"title":"3.2. \nLayout Containment"},{"refs":[{"id":"ref-for-internal-ruby-box\u2461"}],"title":"3.4. \nPaint Containment"}],"url":"https://drafts.csswg.org/css-display-3/#internal-ruby-box"}, @@ -4128,7 +4134,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible": {"export":true,"for_":["overflow","overflow-x","overflow-y"],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"visible","type":"value","url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible"}, "https://drafts.csswg.org/css-overflow-4/#overflow-clip-edge": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-overflow","spec":"css-overflow-4","status":"current","text":"overflow clip edge","type":"dfn","url":"https://drafts.csswg.org/css-overflow-4/#overflow-clip-edge"}, "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-overflow","spec":"css-overflow-4","status":"current","text":"overflow-clip-margin","type":"property","url":"https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin"}, -"https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-overflow","spec":"css-overflow-4","status":"current","text":"::nth-fragment()","type":"selector","url":"https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment"}, +"https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-overflow","spec":"css-overflow-5","status":"current","text":"::nth-fragment()","type":"selector","url":"https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment"}, "https://drafts.csswg.org/css-position-3/#absolute-positioning-containing-block": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"absolute positioning containing block","type":"dfn","url":"https://drafts.csswg.org/css-position-3/#absolute-positioning-containing-block"}, "https://drafts.csswg.org/css-position-3/#fixed-positioning-containing-block": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"fixed positioning containing block","type":"dfn","url":"https://drafts.csswg.org/css-position-3/#fixed-positioning-containing-block"}, "https://drafts.csswg.org/css-position-3/#propdef-left": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"left","type":"property","url":"https://drafts.csswg.org/css-position-3/#propdef-left"}, @@ -4170,6 +4176,8 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://www.w3.org/TR/CSS2/generate.html#value-def-no-open-quote": {"export":true,"for_":["content"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"no-open-quote","type":"value","url":"https://www.w3.org/TR/CSS2/generate.html#value-def-no-open-quote"}, "https://www.w3.org/TR/CSS2/generate.html#value-def-open-quote": {"export":true,"for_":["content"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"open-quote","type":"value","url":"https://www.w3.org/TR/CSS2/generate.html#value-def-open-quote"}, "https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"vertical-align","type":"property","url":"https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align"}, +"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"counter-increment","type":"property","url":"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-contain-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-contain-3/Overview.console.txt index d5f8502f6e..9f649b8e2b 100644 --- a/tests/github/w3c/csswg-drafts/css-contain-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-contain-3/Overview.console.txt @@ -1,4 +1,12 @@ LINE ~103: Couldn't find section '#priv-sec' in spec 'css-contain-2': [[css-contain-2#priv-sec]] LINE 100: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'dom-csscontainerrule-containername' ID found, skipping MDN features that would target it. +WARNING: No 'dom-csscontainerrule-containerquery' ID found, skipping MDN features that would target it. +WARNING: No 'the-csscontainerrule-interface' ID found, skipping MDN features that would target it. +WARNING: No 'style-container' ID found, skipping MDN features that would target it. +WARNING: No 'container-rule' ID found, skipping MDN features that would target it. WARNING: No 'valdef-contain-inline-size' ID found, skipping MDN features that would target it. +WARNING: No 'container-name' ID found, skipping MDN features that would target it. +WARNING: No 'container-type' ID found, skipping MDN features that would target it. +WARNING: No 'container-shorthand' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-contain-3/Overview.html b/tests/github/w3c/csswg-drafts/css-contain-3/Overview.html index db8474d8c1..8b5bb18190 100644 --- a/tests/github/w3c/csswg-drafts/css-contain-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-contain-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Containment Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-contain-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -735,7 +734,7 @@ <h1 class="p-name no-ref" id="title">CSS Containment Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -757,7 +756,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-contain] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-contain%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -839,7 +838,7 @@ <h2 class="no-num non-normative heading settled" id="changes"><span class="conte <p>This appendix is <em>informative</em>.</p> <h3 class="heading settled" id="l3-changes"><span class="content"> Changes from <a href="https://www.w3.org/TR/css-contain-2/">CSS Containment Level 2</a> </span><a class="self-link" href="#l3-changes"></a></h3> <p>None yet.</p> - <p class="issue" id="issue-d41d8cd9④"><a class="self-link" href="#issue-d41d8cd9④"></a> <a href="https://drafts.csswg.org/css-contain-2/#changes"><cite>CSS Containment 2</cite> §  Appendix A. Changes</a></p> + <p class="issue" id="issue-d41d8cd9④"><a class="self-link" href="#issue-d41d8cd9④"></a> <a href="https://drafts.csswg.org/css-contain-2/#changes"><cite>CSS Containment 2</cite> § A Changes</a></p> </main> <h2 class="no-ref no-num heading settled" id="w3c-conformance"><span class="content"> Conformance</span><a class="self-link" href="#w3c-conformance"></a></h2> <h3 class="no-ref heading settled" id="w3c-conventions"><span class="content"> Document conventions</span><a class="self-link" href="#w3c-conventions"></a></h3> @@ -974,7 +973,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> <a href="https://drafts.csswg.org/css-contain-2/#containment-types"><cite>CSS Containment 2</cite> § 3 Types of Containment</a> <a class="issue-return" href="#issue-d41d8cd9①" title="Jump to section">↵</a></div> <div class="issue"> <a href="https://drafts.csswg.org/css-contain-2/#content-visibility"><cite>CSS Containment 2</cite> § 4 Suppressing An Element’s Contents Entirely: the content-visibility property</a> <a class="issue-return" href="#issue-d41d8cd9②" title="Jump to section">↵</a></div> <div class="issue"> <span spec-section="#priv-sec"></span> <a class="issue-return" href="#issue-d41d8cd9③" title="Jump to section">↵</a></div> - <div class="issue"> <a href="https://drafts.csswg.org/css-contain-2/#changes"><cite>CSS Containment 2</cite> §  Appendix A. Changes</a> <a class="issue-return" href="#issue-d41d8cd9④" title="Jump to section">↵</a></div> + <div class="issue"> <a href="https://drafts.csswg.org/css-contain-2/#changes"><cite>CSS Containment 2</cite> § A Changes</a> <a class="issue-return" href="#issue-d41d8cd9④" title="Jump to section">↵</a></div> </div> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/csswg-drafts/css-content-3/Overview.html b/tests/github/w3c/csswg-drafts/css-content-3/Overview.html index 0e1bc5235e..9f7476ba2f 100644 --- a/tests/github/w3c/csswg-drafts/css-content-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-content-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Generated Content Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-content-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1076,7 +1075,7 @@ <h1 class="p-name no-ref" id="title">CSS Generated Content Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1098,7 +1097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-content] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-content%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This is a very rough draft, and is not ready for implementation.</p> </div> @@ -1344,7 +1343,7 @@ <h2 class="heading settled" data-level="1" id="content-property"><span class="se <h3 class="heading settled" data-level="1.1" id="accessibility"><span class="secno">1.1. </span><span class="content"> Accessibility of Generated Content</span><a class="self-link" href="#accessibility"></a></h3> <p>Generated content should be searchable, selectable, and available to assistive technologies. The <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content③">content</a> property applies to speech - and generated content must be rendered for speech output. <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module">[CSS3-SPEECH]</a></p> + and generated content must be rendered for speech output. <a data-link-type="biblio" href="#biblio-css3-speech" title="CSS Speech Module Level 1">[CSS3-SPEECH]</a></p> <p class="issue" id="issue-9c60e2c1"><a class="self-link" href="#issue-9c60e2c1"></a> Start work on an AAM for CSS.</p> <h3 class="heading settled" data-level="1.2" id="alt"><span class="secno">1.2. </span><span class="content"> Alternative Text for Accessibility</span><a class="self-link" href="#alt"></a></h3> <p>Content intended for visual media sometimes needs alternative text for speech output or other non-visual mediums. @@ -2477,11 +2476,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -2493,7 +2492,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-speech">[CSS3-SPEECH] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css3list">[CSS3LIST] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -2504,7 +2503,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-cldr">[CLDR] - <dd><a href="http://cldr.unicode.org/"><cite>Unicode Common Locale Data Repository</cite></a>. URL: <a href="http://cldr.unicode.org/">http://cldr.unicode.org/</a> + <dd><a href="https://cldr.unicode.org/"><cite>Unicode Common Locale Data Repository</cite></a>. URL: <a href="https://cldr.unicode.org/">https://cldr.unicode.org/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-dom">[DOM] diff --git a/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.console.txt index faca10cd51..25af9232e1 100644 --- a/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.console.txt @@ -61,6 +61,12 @@ LINE ~132: No 'property' refs found for 'system'. 'system' LINE ~132: No 'property' refs found for 'pad'. 'pad' +LINE 169: Multiple possible 'inside' maybe refs. +Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-anchor-position-1; type:value; text:inside +spec:css-lists-3; type:value; text:inside +''inside'' LINE ~221: No 'property' refs found for 'system'. 'system' LINE ~231: No 'property' refs found for 'system'. diff --git a/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.html b/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.html index 05de3d20a5..07e89abffa 100644 --- a/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-counter-styles-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Counter Styles Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-counter-styles-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1085,7 +1084,7 @@ <h1 class="p-name no-ref" id="title">CSS Counter Styles Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1107,7 +1106,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-counter-styles] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-counter-styles%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1291,7 +1290,7 @@ <h2 class="heading settled" data-level="3" id="the-counter-style-rule"><span cla <p>Additionally, in the context of the prelude of an <a class="css" data-link-type="maybe" href="#at-ruledef-counter-style" id="ref-for-at-ruledef-counter-style⑥">@counter-style</a> rule, an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive①">ASCII case-insensitive</a> match for "decimal" or "disc" is also an invalid <a class="production css" data-link-type="type" href="#typedef-counter-style-name" id="ref-for-typedef-counter-style-name①">&lt;counter-style-name></a> and makes the <span class="css" id="ref-for-at-ruledef-counter-style⑦">@counter-style</span> rule invalid.</p> <p class="note" role="note"><span class="marker">Note:</span> Note that <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#identifier-value" id="ref-for-identifier-value①">&lt;custom-ident></a> also automatically excludes the <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-wide-keywords" id="ref-for-css-wide-keywords">CSS-wide keywords</a>. - In addition, some names, like <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-lists-3/#valdef-list-style-position-inside" id="ref-for-valdef-list-style-position-inside">inside</a>, + In addition, some names, like <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside" id="ref-for-valdef-anchor-inside">inside</a>, are valid as counter style names, but conflict with the existing values of properties like <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-lists-3/#propdef-list-style" id="ref-for-propdef-list-style">list-style</a>, and so won’t be usable there.</p> @@ -3402,6 +3401,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="fa19f3c6">inside</span> + </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> @@ -3423,7 +3427,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="4728e44c">counter()</span> <li><span class="dfn-paneled" id="042709b2">counters()</span> - <li><span class="dfn-paneled" id="5e8bfe59">inside</span> <li><span class="dfn-paneled" id="3b47d5a5">list-style</span> <li><span class="dfn-paneled" id="de56fbfe">list-style-type</span> </ul> @@ -3540,6 +3543,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> + <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] + <dd>Tab Atkins Jr.; Elika Etemad; Ian Kilpatrick. <a href="https://drafts.csswg.org/css-anchor-position-1/"><cite>CSS Anchor Positioning</cite></a>. URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] @@ -3622,11 +3627,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </pre> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-additivesymbols"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/additiveSymbols" title="The additiveSymbols property of the CSSCounterStyleRule interface gets and sets the value of the additive-symbols descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/additiveSymbols</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3637,11 +3643,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-fallback"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/fallback" title="The fallback property of the CSSCounterStyleRule interface gets and sets the value of the fallback descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/fallback</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3652,11 +3659,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-name"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/name" title="The name property of the CSSCounterStyleRule interface gets and sets the <custom-ident> defined as the name for the associated rule.">CSSCounterStyleRule/name</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3667,11 +3675,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-negative"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/negative" title="The negative property of the CSSCounterStyleRule interface gets and sets the value of the negative descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/negative</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3682,11 +3691,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-pad"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/pad" title="The pad property of the CSSCounterStyleRule interface gets and sets the value of the pad descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/pad</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3697,11 +3707,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-prefix"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/prefix" title="The prefix property of the CSSCounterStyleRule interface gets and sets the value of the prefix descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/prefix</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3712,11 +3723,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-range"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/range" title="The range property of the CSSCounterStyleRule interface gets and sets the value of the range descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/range</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3727,11 +3739,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-speakas"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/speakAs" title="The speakAs property of the CSSCounterStyleRule interface gets and sets the value of the speak-as descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/speakAs</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3742,11 +3755,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-suffix"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/suffix" title="The suffix property of the CSSCounterStyleRule interface gets and sets the value of the suffix descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/suffix</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3757,11 +3771,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-symbols"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/symbols" title="The symbols property of the CSSCounterStyleRule interface gets and sets the value of the symbols descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/symbols</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3772,11 +3787,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-csscounterstylerule-system"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule/system" title="The system property of the CSSCounterStyleRule interface gets and sets the value of the system descriptor. If the descriptor does not have a value set, this attribute returns an empty string.">CSSCounterStyleRule/system</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3787,11 +3803,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-csscounterstylerule-interface"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSCounterStyleRule" title="The CSSCounterStyleRule interface represents an @counter-style at-rule.">CSSCounterStyleRule</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3805,8 +3822,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/additive-symbols" title="The additive-symbols descriptor lets you specify symbols when the value of a counter system descriptor is additive. The additive-symbols descriptor defines additive tuples, each of which is a pair containing a symbol and a non-negative integer weight. The additive system is used to construct sign-value numbering systems such as Roman numerals.">@counter-style/additive-symbols</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3817,9 +3835,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/symbols" title="The symbols CSS descriptor is used to specify the symbols that the specified counter system will use to construct counter representations.">@counter-style/symbols</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -3830,11 +3848,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="counter-style-fallback"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/fallback" title="The fallback descriptor can be used to specify a counter style to fall back to if the current counter style cannot create a marker representation for a particular counter value.">@counter-style/fallback</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3845,11 +3864,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="counter-style-system"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/negative" title="When defining custom counter styles, the negative descriptor lets you alter the representations of negative counter values, by providing a way to specify symbols to be appended or prepended to the counter representation when the value is negative.">@counter-style/negative</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3860,8 +3880,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/system" title="The system descriptor specifies the algorithm to be used for converting the integer value of a counter to a string representation. It is used in a @counter-style to define the behavior of the defined style.">@counter-style/system</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3872,11 +3893,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="counter-style-pad"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/pad" title="The pad descriptor can be used with custom counter style definitions when you need the marker representations to have a minimum length.">@counter-style/pad</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3887,11 +3909,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="counter-style-prefix"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/prefix" title="The prefix descriptor of the @counter-style rule specifies content that will be prepended to the marker representation. If not specified, the default value will be &quot;&quot; (an empty string).">@counter-style/prefix</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3902,11 +3925,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="counter-style-range"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/range" title="When defining custom counter styles, the range descriptor lets the author specify a range of counter values over which the style is applied. If a counter value is outside the specified range, then the fallback style will be used to construct the representation of that marker.">@counter-style/range</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3948,11 +3972,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-counter-style-rule"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style" title="The @counter-style CSS at-rule lets you define counter styles that are not part of the predefined set of styles. A @counter-style rule defines how to convert a counter value into a string representation.">@counter-style</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> + <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> @@ -3979,11 +4004,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/symbols()" title="The symbols() CSS function lets you define counter styles inline, directly as the value of a property such as list-style. Unlike @counter-style, symbols() is anonymous (i.e., it can only be used once). Although less powerful, it is shorter and easier to write than @counter-style.">symbols()</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>35+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>35+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>91+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>91+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -4220,7 +4244,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "569faf4d": {"dfnID":"569faf4d","dfnText":"parse a list of component values","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-list-of-component-values"}],"title":"9.2. \nThe CSSCounterStyleRule interface"}],"url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values"}, "5875aeb9": {"dfnID":"5875aeb9","dfnText":"::marker","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-marker"}],"title":"2. \nCounter Styles"},{"refs":[{"id":"ref-for-selectordef-marker\u2460"}],"title":"3.3. \nSymbols before the marker: the prefix descriptor"},{"refs":[{"id":"ref-for-selectordef-marker\u2461"}],"title":"3.4. \nSymbols after the marker: the suffix descriptor"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-marker"}, "5879b11d": {"dfnID":"5879b11d","dfnText":"content language","external":true,"refSections":[{"refs":[{"id":"ref-for-content-language"},{"id":"ref-for-content-language\u2460"},{"id":"ref-for-content-language\u2461"}],"title":"3.9. \nSpeech Synthesis: the speak-as descriptor"},{"refs":[{"id":"ref-for-content-language\u2462"}],"title":"\nChanges since the Jun 2015 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-text-4/#content-language"}, -"5e8bfe59": {"dfnID":"5e8bfe59","dfnText":"inside","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-list-style-position-inside"}],"title":"3. \nDefining Custom Counter Styles: the @counter-style rule"}],"url":"https://drafts.csswg.org/css-lists-3/#valdef-list-style-position-inside"}, "5fced98b": {"dfnID":"5fced98b","dfnText":"CSSOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-cssomstring"},{"id":"ref-for-cssomstring\u2460"},{"id":"ref-for-cssomstring\u2461"},{"id":"ref-for-cssomstring\u2462"},{"id":"ref-for-cssomstring\u2463"},{"id":"ref-for-cssomstring\u2464"},{"id":"ref-for-cssomstring\u2465"},{"id":"ref-for-cssomstring\u2466"},{"id":"ref-for-cssomstring\u2467"},{"id":"ref-for-cssomstring\u2468"},{"id":"ref-for-cssomstring\u2460\u24ea"},{"id":"ref-for-cssomstring\u2460\u2460"},{"id":"ref-for-cssomstring\u2460\u2461"},{"id":"ref-for-cssomstring\u2460\u2462"},{"id":"ref-for-cssomstring\u2460\u2463"},{"id":"ref-for-cssomstring\u2460\u2464"},{"id":"ref-for-cssomstring\u2460\u2465"},{"id":"ref-for-cssomstring\u2460\u2466"},{"id":"ref-for-cssomstring\u2460\u2467"},{"id":"ref-for-cssomstring\u2460\u2468"},{"id":"ref-for-cssomstring\u2461\u24ea"},{"id":"ref-for-cssomstring\u2461\u2460"}],"title":"9.2. \nThe CSSCounterStyleRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"3.5. \nLimiting the counter scope: the range descriptor"},{"refs":[{"id":"ref-for-mult-comma\u2460"}],"title":"3.8. \nMarker characters: the symbols and additive-symbols descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6eb02dd5": {"dfnID":"6eb02dd5","dfnText":"grapheme cluster","external":true,"refSections":[{"refs":[{"id":"ref-for-grapheme-cluster"},{"id":"ref-for-grapheme-cluster\u2460"},{"id":"ref-for-grapheme-cluster\u2461"},{"id":"ref-for-grapheme-cluster\u2462"},{"id":"ref-for-grapheme-cluster\u2463"}],"title":"3.6. \nZero-Padding and Constant-Width Representations: the pad descriptor"}],"url":"https://drafts.csswg.org/css-text-3/#grapheme-cluster"}, @@ -4282,6 +4305,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"},{"id":"ref-for-identifier-value\u2460"}],"title":"3. \nDefining Custom Counter Styles: the @counter-style rule"},{"refs":[{"id":"ref-for-identifier-value\u2461"}],"title":"3.8. \nMarker characters: the symbols and additive-symbols descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, "ebaeb088": {"dfnID":"ebaeb088","dfnText":"CSSRule","external":true,"refSections":[{"refs":[{"id":"ref-for-cssrule"}],"title":"9.1. \nExtensions to the CSSRule interface"},{"refs":[{"id":"ref-for-cssrule\u2460"}],"title":"9.2. \nThe CSSCounterStyleRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssrule"}, "f0809abc": {"dfnID":"f0809abc","dfnText":"&&","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-all"}],"title":"3.6. \nZero-Padding and Constant-Width Representations: the pad descriptor"},{"refs":[{"id":"ref-for-comb-all\u2460"}],"title":"3.8. \nMarker characters: the symbols and additive-symbols descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#comb-all"}, +"fa19f3c6": {"dfnID":"fa19f3c6","dfnText":"inside","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-inside"}],"title":"3. \nDefining Custom Counter Styles: the @counter-style rule"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside"}, "first-symbol-value": {"dfnID":"first-symbol-value","dfnText":"first symbol value","external":false,"refSections":[{"refs":[{"id":"ref-for-first-symbol-value"},{"id":"ref-for-first-symbol-value\u2460"},{"id":"ref-for-first-symbol-value\u2461"}],"title":"3.1.2. \nExhaustible Symbols: the fixed system"},{"refs":[{"id":"ref-for-first-symbol-value\u2462"}],"title":"4. \nDefining Anonymous Counter Styles: the symbols() function"},{"refs":[{"id":"ref-for-first-symbol-value\u2463"}],"title":"9.2. \nThe CSSCounterStyleRule interface"}],"url":"#first-symbol-value"}, "footnote": {"dfnID":"footnote","dfnText":"footnote","external":false,"refSections":[],"url":"#footnote"}, "funcdef-symbols": {"dfnID":"funcdef-symbols","dfnText":"symbols()","external":false,"refSections":[{"refs":[{"id":"ref-for-funcdef-symbols"},{"id":"ref-for-funcdef-symbols\u2460"},{"id":"ref-for-funcdef-symbols\u2461"},{"id":"ref-for-funcdef-symbols\u2462"},{"id":"ref-for-funcdef-symbols\u2463"}],"title":"4. \nDefining Anonymous Counter Styles: the symbols() function"},{"refs":[{"id":"ref-for-funcdef-symbols\u2464"}],"title":"5. \nExtending list-style-type, counter(), and counters()"}],"url":"#funcdef-symbols"}, @@ -4922,6 +4946,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#valdef-counter-style-system-fixed": {"export":true,"for_":["@counter-style/system","system"],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"local","text":"fixed","type":"value","url":"#valdef-counter-style-system-fixed"}, "#valdef-counter-style-system-numeric": {"export":true,"for_":["@counter-style/system","system"],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"local","text":"numeric","type":"value","url":"#valdef-counter-style-system-numeric"}, "#valdef-system-symbolic": {"export":true,"for_":["system"],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"local","text":"symbolic","type":"value","url":"#valdef-system-symbolic"}, +"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside": {"export":true,"for_":["anchor()"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"inside","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside"}, "https://drafts.csswg.org/css-cascade-5/#computed-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"computed value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "https://drafts.csswg.org/css-content-3/#propdef-content": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-content","spec":"css-content-3","status":"current","text":"content","type":"property","url":"https://drafts.csswg.org/css-content-3/#propdef-content"}, "https://drafts.csswg.org/css-images-3/#default-object-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"default object size","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#default-object-size"}, @@ -4930,7 +4955,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-lists-3/#funcdef-counters": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"counters()","type":"function","url":"https://drafts.csswg.org/css-lists-3/#funcdef-counters"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style-type": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-type","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, -"https://drafts.csswg.org/css-lists-3/#valdef-list-style-position-inside": {"export":true,"for_":["list-style-position"],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"inside","type":"value","url":"https://drafts.csswg.org/css-lists-3/#valdef-list-style-position-inside"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-marker": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::marker","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-marker"}, "https://drafts.csswg.org/css-syntax-3/#at-rule": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"at-rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#at-rule"}, "https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, diff --git a/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.console.txt index 8ceaaf1197..b33a48a94b 100644 --- a/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.console.txt @@ -12,24 +12,12 @@ LINT: Your document appears to use spaces to indent, but line 1530 starts with t LINT: Your document appears to use spaces to indent, but line 1531 starts with tabs. LINE 271: No 'dfn' refs found for 'nested_statement'. <a bs-line-number="271" data-link-spec="css-conditional" data-link-type="dfn" data-lt="nested_statement">nested_statement</a> -LINE ~422: No 'property' refs found for 'zoom'. -'zoom' -LINE ~443: No 'property' refs found for 'zoom'. -'zoom' LINE ~465: No 'property' refs found for 'min-zoom'. 'min-zoom' -LINE ~477: No 'property' refs found for 'zoom'. -'zoom' -LINE ~488: No 'property' refs found for 'zoom'. -'zoom' LINE ~506: No 'property' refs found for 'max-zoom'. 'max-zoom' -LINE ~518: No 'property' refs found for 'zoom'. -'zoom' LINE ~518: No 'property' refs found for 'user-zoom'. 'user-zoom' -LINE ~531: No 'property' refs found for 'zoom'. -'zoom' LINE ~549: No 'property' refs found for 'user-zoom'. 'user-zoom' LINE ~592: No 'property' refs found for 'orientation'. @@ -40,20 +28,13 @@ LINE ~1131: No 'property' refs found for 'min-zoom'. 'min-zoom' LINE ~1131: No 'property' refs found for 'max-zoom'. 'max-zoom' -LINE ~1290: No 'property' refs found for 'zoom'. -'zoom' LINE ~1373: No 'property' refs found for 'max-zoom'. 'max-zoom' LINE ~1373: No 'property' refs found for 'min-zoom'. 'min-zoom' LINE ~1382: No 'property' refs found for 'user-zoom'. 'user-zoom' -LINE ~1420: No 'property' refs found for 'zoom'. -'zoom' -LINE ~1425: No 'property' refs found for 'zoom'. -'zoom' -LINE ~1435: No 'property' refs found for 'zoom'. -'zoom' +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 153: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="153" data-dfn-type="dfn" id="initial-viewport" data-lt="initial viewport" data-noexport="by-default" class="dfn-paneled">initial viewport</dfn> LINE 159: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.html b/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.html index 5bff50368c..65118ac024 100644 --- a/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-device-adapt-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Device Adaptation Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/css-device-adapt-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -513,230 +512,6 @@ margin-bottom: 0; } </style> -<style>/* Boilerplate: style-mdn-anno */ -:root { - --mdn-bg: #EEE; - --mdn-shadow: #999; - --mdn-nosupport-text: #ccc; - --mdn-pass: green; - --mdn-fail: red; -} -@media (prefers-color-scheme: dark) { - :root { - --mdn-bg: #222; - --mdn-shadow: #444; - --mdn-nosupport-text: #666; - --mdn-pass: #690; - --mdn-fail: #d22; - } -} -.mdn-anno { - background: var(--mdn-bg, #EEE); - border-radius: .25em; - box-shadow: 0 0 3px var(--mdn-shadow, #999); - color: var(--text, black); - font: 1em sans-serif; - hyphens: none; - max-width: min-content; - overflow: hidden; - padding: 0.2em; - position: absolute; - right: 0.3em; - top: auto; - white-space: nowrap; - word-wrap: normal; - z-index: 8; -} -.mdn-anno.unpositioned { - display: none; -} -.mdn-anno.overlapping-main { - opacity: .2; - transition: opacity .1s; -} -.mdn-anno[open] { - opacity: 1; - z-index: 9; - min-width: 9em; -} -.mdn-anno:hover { - opacity: 1; - outline: var(--text, black) 1px solid; -} -.mdn-anno > summary { - font-weight: normal; - text-align: right; - cursor: pointer; - display: block; -} -.mdn-anno > summary > .less-than-two-engines-flag { - color: var(--mdn-fail); - padding-right: 2px; -} -.mdn-anno > summary > .all-engines-flag { - color: var(--mdn-pass); - padding-right: 2px; -} -.mdn-anno > summary > span { - color: #fff; - background-color: #000; - font-weight: normal; - font-family: zillaslab, Palatino, "Palatino Linotype", serif; - padding: 2px 3px 0px 3px; - line-height: 1.3em; - vertical-align: top; -} -.mdn-anno > .feature { - margin-top: 20px; -} -.mdn-anno > .feature:not(:first-of-type) { - border-top: 1px solid #999; - margin-top: 6px; - padding-top: 2px; -} -.mdn-anno > .feature > .less-than-two-engines-text { - color: var(--mdn-fail); -} -.mdn-anno > .feature > .all-engines-text { - color: var(--mdn-pass); -} -.mdn-anno > .feature > p { - font-size: .75em; - margin-top: 6px; - margin-bottom: 0; -} -.mdn-anno > .feature > p + p { - margin-top: 3px; -} -.mdn-anno > .feature > .support { - display: block; - font-size: 0.6em; - margin: 0; - padding: 0; - margin-top: 2px; -} -.mdn-anno > .feature > .support + div { - padding-top: 0.5em; -} -.mdn-anno > .feature > .support > hr { - display: block; - border: none; - border-top: 1px dotted #999; - padding: 3px 0px 0px 0px; - margin: 2px 3px 0px 3px; -} -.mdn-anno > .feature > .support > hr::before { - content: ""; -} -.mdn-anno > .feature > .support > span { - padding: 0.2em 0; - display: block; - display: table; -} -.mdn-anno > .feature > .support > span.no { - color: var(--mdn-nosupport-text); - filter: grayscale(100%); -} -.mdn-anno > .feature > .support > span.no::before { - opacity: 0.5; -} -.mdn-anno > .feature > .support > span:first-of-type { - padding-top: 0.5em; -} -.mdn-anno > .feature > .support > span > span { - padding: 0 0.5em; - display: table-cell; -} -.mdn-anno > .feature > .support > span > span:first-child { - width: 100%; -} -.mdn-anno > .feature > .support > span > span:last-child { - width: 100%; - white-space: pre; - padding: 0; -} -.mdn-anno > .feature > .support > span::before { - content: ' '; - display: table-cell; - min-width: 1.5em; - height: 1.5em; - background: no-repeat center center; - background-size: contain; - text-align: right; - font-size: 0.75em; - font-weight: bold; -} -.mdn-anno > .feature > .support > .chrome_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); -} -.mdn-anno > .feature > .support > .firefox_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); -} -.mdn-anno > .feature > .support > .chrome::before { - background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); -} -.mdn-anno > .feature > .support > .edge_blink::before { - background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); -} -.mdn-anno > .feature > .support > .edge::before { - background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); -} -.mdn-anno > .feature > .support > .firefox::before { - background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); -} -.mdn-anno > .feature > .support > .ie::before { - background-image: url(https://resources.whatwg.org/browser-logos/ie.png); -} -.mdn-anno > .feature > .support > .safari_ios::before { - background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); -} -.mdn-anno > .feature > .support > .nodejs::before { - background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); -} -.mdn-anno > .feature > .support > .opera_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); -} -.mdn-anno > .feature > .support > .opera::before { - background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); -} -.mdn-anno > .feature > .support > .safari::before { - background-image: url(https://resources.whatwg.org/browser-logos/safari.png); -} -.mdn-anno > .feature > .support > .samsunginternet_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); -} -.mdn-anno > .feature > .support > .webview_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); -} -.name-slug-mismatch { - color: red; -} -.caniuse-status:hover { - z-index: 9; -} -/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; -.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { - right: -6.7em; -} -.h-entry p + .mdn-anno { - margin-top: 0; -} - h2 + .mdn-anno.after { - margin: -48px 0 0 0; -} - h3 + .mdn-anno.after { - margin: -46px 0 0 0; -} - h4 + .mdn-anno.after { - margin: -42px 0 0 0; -} - h5 + .mdn-anno.after { - margin: -40px 0 0 0; -} - h6 + .mdn-anno.after { - margin: -40px 0 0 0; -} -</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -1118,7 +893,7 @@ <h1 class="p-name no-ref" id="title">CSS Device Adaptation Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1140,7 +915,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-device-adapt] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-device-adapt%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1415,7 +1190,7 @@ <h2 class="heading settled" data-level="6" id="viewport-desc"><span class="secno <p>This section presents the descriptors that are allowed inside an <a class="css" data-link-type="maybe" href="#at-ruledef-viewport" id="ref-for-at-ruledef-viewport①①">@viewport</a> rule. Other descriptors than those listed here will be dropped.</p> <p>Relative length values are resolved against initial values. For -instance 'em’s are resolved against the initial value of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-fonts-4/#propdef-font-size" id="ref-for-propdef-font-size">font-size</a> property. Viewport lengths (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vw" id="ref-for-valdef-length-vw">vw</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vh" id="ref-for-valdef-length-vh">vh</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vmin" id="ref-for-valdef-length-vmin">vmin</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vmax" id="ref-for-valdef-length-vmax">vmax</a>) are relative to the initial viewport.</p> +instance 'em’s are resolved against the initial value of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-fonts-4/#propdef-font-size" id="ref-for-propdef-font-size">font-size</a> property. Viewport lengths (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vw" id="ref-for-vw">vw</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vh" id="ref-for-vh">vh</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vmin" id="ref-for-vmin">vmin</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vmax" id="ref-for-vmax">vmax</a>) are relative to the initial viewport.</p> <h3 class="heading settled" data-level="6.1" id="min-max-width-desc"><span class="secno">6.1. </span><span class="content"> The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-min-width" id="ref-for-propdef-min-width">min-width</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-max-width" id="ref-for-propdef-max-width">max-width</a> descriptors</span><a class="self-link" href="#min-max-width-desc"></a></h3> <p class="issue" id="issue-081c4ec9"><a class="self-link" href="#issue-081c4ec9"></a>min- and max- functionality can be achieved with media queries, should these be removed?</p> <table class="def descdef"> @@ -1577,7 +1352,7 @@ <h3 class="heading settled" data-level="6.4" id="height-desc"><span class="secno One <a class="production css" data-link-type="type" href="#typedef-viewport-length" id="ref-for-typedef-viewport-length⑧">&lt;viewport-length></a> value will set both min-height and max-height to that value. Two <span class="production" id="ref-for-typedef-viewport-length⑨">&lt;viewport-length></span> values will set min-height to the first and max-height to the second.</p> - <h3 class="heading settled" data-level="6.5" id="zoom-desc"><span class="secno">6.5. </span><span class="content"> The <a class="property css" data-link-type="property">zoom</a> descriptor</span><a class="self-link" href="#zoom-desc"></a></h3> + <h3 class="heading settled" data-level="6.5" id="zoom-desc"><span class="secno">6.5. </span><span class="content"> The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom">zoom</a> descriptor</span><a class="self-link" href="#zoom-desc"></a></h3> <table class="def descdef"> <tbody> <tr> @@ -1609,7 +1384,7 @@ <h3 class="heading settled" data-level="6.5" id="zoom-desc"><span class="secno"> <dd> The zoom factor is UA-dependent. The UA may use the size of the area of the canvas on which the document is rendered to find that initial zoom factor. See <a href="#handling-auto-zoom">this section</a> for a - proposed way of handling <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto">auto</a> values for <a class="property css" data-link-type="property">zoom</a>. + proposed way of handling <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto">auto</a> values for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom①">zoom</a>. <dt><var><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value①">&lt;number></a></var> <dd> A non-negative number used as a zoom factor. A factor of 1.0 means that no zooming is done. Values larger than 1.0 gives a zoomed-in @@ -1642,15 +1417,15 @@ <h3 class="heading settled" data-level="6.6" id="min-zoom-desc"><span class="sec <td>auto, or a non-negative number or percentage as specified </table> <p>Specifies the smallest allowed zoom factor. It is used as input to the <a href="#constraining-procedure">constraining procedure</a> to constrain -non-<a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①">auto</a> <a class="property css" data-link-type="property">zoom</a> values, but also to limit the allowed zoom factor +non-<a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①">auto</a> <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom②">zoom</a> values, but also to limit the allowed zoom factor that can be set through user interaction. The UA should also use this value as a constraint when choosing an actual zoom factor when the -used value of <span class="property">zoom</span> is <span class="css" id="ref-for-valdef-zoom-auto②">auto</span>.</p> +used value of <span class="property" id="ref-for-propdef-zoom③">zoom</span> is <span class="css" id="ref-for-valdef-zoom-auto②">auto</span>.</p> <p>Values have the following meanings:</p> <dl> <dt>auto <dd> The lower limit on zoom factor is UA dependent. There will be no minimum - value constraint on the <a class="property css" data-link-type="property">zoom</a> descriptor used in + value constraint on the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom④">zoom</a> descriptor used in the <a href="#constraining-procedure">constraining procedure</a> <dt><var><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value③">&lt;number></a></var> @@ -1681,17 +1456,17 @@ <h3 class="heading settled" data-level="6.7" id="max-zoom-desc"><span class="sec <td>auto, or a non-negative number or percentage as specified </table> <p>Specifies the largest allowed zoom factor. It is used as input to the <a href="#constraining-procedure">constraining procedure</a> to constrain -non-<a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto③">auto</a> <a class="property css" data-link-type="property">zoom</a> values, but also to limit the allowed zoom factor +non-<a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto③">auto</a> <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom⑤">zoom</a> values, but also to limit the allowed zoom factor that can be set through user interaction. The UA may choose to ignore this limit for accessibility/usability reasons – see the relevant note in -the <span class="property">user-zoom</span> section. The UA should also use this +the <a class="property css" data-link-type="property">user-zoom</a> section. The UA should also use this value as a constraint when choosing an actual zoom factor when the -used value of <span class="property">zoom</span> is <span class="css" id="ref-for-valdef-zoom-auto④">auto</span>.</p> +used value of <span class="property" id="ref-for-propdef-zoom⑥">zoom</span> is <span class="css" id="ref-for-valdef-zoom-auto④">auto</span>.</p> <p>Values have the following meanings:</p> <dl> <dt>auto <dd> The upper limit on zoom factor is UA dependent. There will be - no maximum value constraint on the <a class="property css" data-link-type="property">zoom</a> descriptor used in + no maximum value constraint on the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom⑦">zoom</a> descriptor used in the <a href="#constraining-procedure">constraining procedure</a> <dt><var><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value⑤">&lt;number></a></var> @@ -2149,7 +1924,7 @@ <h4 class="no-num no-toc heading settled" id="width-and-height-properties"><span </pre> </div> <p>For a viewport <code class="html">&lt;META></code> element that -translates into an <a class="css" data-link-type="maybe" href="#at-ruledef-viewport" id="ref-for-at-ruledef-viewport③⑨">@viewport</a> rule with a non-<a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①④">auto</a> <a class="property css" data-link-type="property">zoom</a> declaration and no <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width②">width</a> declaration:</p> +translates into an <a class="css" data-link-type="maybe" href="#at-ruledef-viewport" id="ref-for-at-ruledef-viewport③⑨">@viewport</a> rule with a non-<a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①④">auto</a> <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom⑧">zoom</a> declaration and no <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width②">width</a> declaration:</p> <ul> <li> If it adds a '<code class="descriptor">height</code>' @@ -2226,13 +2001,13 @@ <h4 class="no-num no-toc heading settled" id="user-scalable"><span class="conten } </pre> </div> - <h2 class="heading settled" data-level="11" id="handling-auto-zoom"><span class="secno">11. </span><span class="content"> Handling <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①⑤">auto</a> for <a class="property css" data-link-type="property">zoom</a></span><a class="self-link" href="#handling-auto-zoom"></a></h2> + <h2 class="heading settled" data-level="11" id="handling-auto-zoom"><span class="secno">11. </span><span class="content"> Handling <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①⑤">auto</a> for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom⑨">zoom</a></span><a class="self-link" href="#handling-auto-zoom"></a></h2> <p><em>This section is not normative.</em></p> - <p>This section presents one way of picking an actual value for the <a class="property css" data-link-type="property">zoom</a> descriptor when the used value is <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①⑥">auto</a>.</p> + <p>This section presents one way of picking an actual value for the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom①⓪">zoom</a> descriptor when the used value is <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①⑥">auto</a>.</p> <p>Given an <span class="css">initial viewport</span> with size <code>(initial-width, initial-height)</code>, and a finite region within the <a href="https://www.w3.org/TR/CSS21/intro.html#canvas">canvas</a> where the formatting structure is rendered <code>(rendered-width, rendered-height)</code>. That region is at least as large as the <span class="css">actual viewport</span>.</p> - <p>Then, if the used value of <a class="property css" data-link-type="property">zoom</a> is <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①⑦">auto</a>, let the actual zoom factor be:</p> + <p>Then, if the used value of <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-viewport/#propdef-zoom" id="ref-for-propdef-zoom①①">zoom</a> is <a class="css" data-link-type="maybe" href="#valdef-zoom-auto" id="ref-for-valdef-zoom-auto①⑦">auto</a>, let the actual zoom factor be:</p> <pre>zoom = MAX(initial-width / rendered-width, initial-height / rendered-height) </pre> <p>The actual zoom factor should also be further limited by the @@ -2472,13 +2247,18 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="fb030e6c">&lt;length></span> <li><span class="dfn-paneled" id="16310992">&lt;number></span> <li><span class="dfn-paneled" id="15f5b381">&lt;percentage></span> - <li><span class="dfn-paneled" id="6cf6b879">vh</span> - <li><span class="dfn-paneled" id="5fa4f559">vmax</span> - <li><span class="dfn-paneled" id="75cfb42f">vmin</span> - <li><span class="dfn-paneled" id="00d635ac">vw</span> + <li><span class="dfn-paneled" id="09444896">vh</span> + <li><span class="dfn-paneled" id="896055b5">vmax</span> + <li><span class="dfn-paneled" id="74344a32">vmin</span> + <li><span class="dfn-paneled" id="c117ac59">vw</span> <li><span class="dfn-paneled" id="938ba280">{a,b}</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS-VIEWPORT-1]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="f733c1ef">zoom</span> + </ul> <li> <a data-link-type="biblio">[CSS-WRITING-MODES-3]</a> defines the following terms: <ul> @@ -2516,19 +2296,21 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> + <dt id="biblio-css-viewport-1">[CSS-VIEWPORT-1] + <dd>Florian Rivoal; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/css-viewport/"><cite>CSS Viewport Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-viewport/">https://drafts.csswg.org/css-viewport/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css21">[CSS21] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css3syn">[CSS3SYN] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css3val">[CSS3VAL] @@ -2659,22 +2441,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue">min- and max- functionality can be achieved with media queries, should these be removed? <a class="issue-return" href="#issue-081c4ec9" title="Jump to section">↵</a></div> <div class="issue">The user-agent stylesheets recommended in the informative section don’t adequately represent current implementation behaviors. Should there be a more explicit mechanism for switching between UA default behavior and requesting the CSS pixel? <a class="issue-return" href="#issue-7fbbd2b2" title="Jump to section">↵</a></div> </div> - <details class="mdn-anno unpositioned" data-anno-for="viewport-meta"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name" title="The <meta> element can be used to provide document metadata in terms of name-value pairs, with the name attribute giving the metadata name, and the content attribute giving the value.">Element/meta/name</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> - <hr> - <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> - </div> - </div> - </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -2875,7 +2641,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let dfnPanelData = { -"00d635ac": {"dfnID":"00d635ac","dfnText":"vw","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-length-vw"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#valdef-length-vw"}, +"09444896": {"dfnID":"09444896","dfnText":"vh","external":true,"refSections":[{"refs":[{"id":"ref-for-vh"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#vh"}, "15f5b381": {"dfnID":"15f5b381","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"}],"title":"6.1. \nThe min-width and max-width descriptors"},{"refs":[{"id":"ref-for-percentage-value\u2460"},{"id":"ref-for-percentage-value\u2461"}],"title":"6.5. \nThe zoom descriptor"},{"refs":[{"id":"ref-for-percentage-value\u2462"},{"id":"ref-for-percentage-value\u2463"}],"title":"6.6. \nThe min-zoom descriptor"},{"refs":[{"id":"ref-for-percentage-value\u2464"},{"id":"ref-for-percentage-value\u2465"}],"title":"6.7. \nThe max-zoom descriptor"}],"url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, "16310992": {"dfnID":"16310992","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"},{"id":"ref-for-number-value\u2460"}],"title":"6.5. \nThe zoom descriptor"},{"refs":[{"id":"ref-for-number-value\u2461"},{"id":"ref-for-number-value\u2462"}],"title":"6.6. \nThe min-zoom descriptor"},{"refs":[{"id":"ref-for-number-value\u2463"},{"id":"ref-for-number-value\u2464"}],"title":"6.7. \nThe max-zoom descriptor"}],"url":"https://drafts.csswg.org/css-values-4/#number-value"}, "450958f7": {"dfnID":"450958f7","dfnText":"unsigned short","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-unsigned-short"}],"title":"9.1. \nInterface CSSRule"}],"url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, @@ -2883,15 +2649,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"}],"title":"4. \nThe viewport"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5ee7eb9e": {"dfnID":"5ee7eb9e","dfnText":"@page","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-page"},{"id":"ref-for-at-ruledef-page\u2460"}],"title":"4. \nThe viewport"},{"refs":[{"id":"ref-for-at-ruledef-page\u2461"}],"title":"5. \nThe @viewport rule"}],"url":"https://drafts.csswg.org/css-page-3/#at-ruledef-page"}, "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"}],"title":"5.1. \nSyntax"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, -"5fa4f559": {"dfnID":"5fa4f559","dfnText":"vmax","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-length-vmax"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#valdef-length-vmax"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"6.4. \nThe height shorthand descriptor"},{"refs":[{"id":"ref-for-propdef-height\u2460"}],"title":"\nThe width\nand height\nproperties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, -"6cf6b879": {"dfnID":"6cf6b879","dfnText":"vh","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-length-vh"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#valdef-length-vh"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"}],"title":"6.1. \nThe min-width and max-width descriptors"},{"refs":[{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"}],"title":"6.5. \nThe zoom descriptor"},{"refs":[{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"6.6. \nThe min-zoom descriptor"},{"refs":[{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"}],"title":"6.7. \nThe max-zoom descriptor"},{"refs":[{"id":"ref-for-comb-one\u2467"}],"title":"6.8. \nThe user-zoom descriptor"},{"refs":[{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"}],"title":"6.9. \nThe orientation descriptor"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, +"74344a32": {"dfnID":"74344a32","dfnText":"vmin","external":true,"refSections":[{"refs":[{"id":"ref-for-vmin"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#vmin"}, "758665a5": {"dfnID":"758665a5","dfnText":"paged media","external":true,"refSections":[{"refs":[{"id":"ref-for-paged-media"},{"id":"ref-for-paged-media\u2460"}],"title":"4. \nThe viewport"}],"url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, -"75cfb42f": {"dfnID":"75cfb42f","dfnText":"vmin","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-length-vmin"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#valdef-length-vmin"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"6.2. \nThe width shorthand descriptor"},{"refs":[{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"}],"title":"\nThe width\nand height\nproperties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"9.2. \nInterface CSSViewportRule"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "88def535": {"dfnID":"88def535","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"},{"id":"ref-for-propdef-min-width\u2460"}],"title":"6.1. \nThe min-width and max-width descriptors"},{"refs":[{"id":"ref-for-propdef-min-width\u2461"},{"id":"ref-for-propdef-min-width\u2462"},{"id":"ref-for-propdef-min-width\u2463"}],"title":"6.2. \nThe width shorthand descriptor"},{"refs":[{"id":"ref-for-propdef-min-width\u2464"}],"title":"\nResolve non-auto lengths to pixel lengths"},{"refs":[{"id":"ref-for-propdef-min-width\u2465"}],"title":"\nThe width\nand height\nproperties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-min-width"}, +"896055b5": {"dfnID":"896055b5","dfnText":"vmax","external":true,"refSections":[{"refs":[{"id":"ref-for-vmax"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#vmax"}, "938ba280": {"dfnID":"938ba280","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"}],"title":"6.2. \nThe width shorthand descriptor"},{"refs":[{"id":"ref-for-mult-num-range\u2460"}],"title":"6.4. \nThe height shorthand descriptor"}],"url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, "9e39189b": {"dfnID":"9e39189b","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"6.3. \nThe min-height and max-height descriptors"},{"refs":[{"id":"ref-for-propdef-max-height\u2460"}],"title":"\nResolve non-auto lengths to pixel lengths"},{"refs":[{"id":"ref-for-propdef-max-height\u2461"}],"title":"\nThe width\nand height\nproperties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-max-height"}, "a82a20ef": {"dfnID":"a82a20ef","dfnText":"CSSStyleDeclaration","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstyledeclaration"},{"id":"ref-for-cssstyledeclaration\u2460"}],"title":"9.2. \nInterface CSSViewportRule"}],"url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration"}, @@ -2899,6 +2664,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "actual-viewport": {"dfnID":"actual-viewport","dfnText":"actual viewport","external":false,"refSections":[],"url":"#actual-viewport"}, "at-ruledef-viewport": {"dfnID":"at-ruledef-viewport","dfnText":"@viewport","external":false,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-viewport"},{"id":"ref-for-at-ruledef-viewport\u2460"}],"title":"4. \nThe viewport"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2461"},{"id":"ref-for-at-ruledef-viewport\u2462"},{"id":"ref-for-at-ruledef-viewport\u2463"},{"id":"ref-for-at-ruledef-viewport\u2464"},{"id":"ref-for-at-ruledef-viewport\u2465"},{"id":"ref-for-at-ruledef-viewport\u2466"},{"id":"ref-for-at-ruledef-viewport\u2467"}],"title":"5. \nThe @viewport rule"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2468"},{"id":"ref-for-at-ruledef-viewport\u2460\u24ea"}],"title":"5.1. \nSyntax"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2460"}],"title":"6. \nViewport descriptors"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2461"},{"id":"ref-for-at-ruledef-viewport\u2460\u2462"}],"title":"6.1. \nThe min-width and max-width descriptors"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2463"}],"title":"6.2. \nThe width shorthand descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2464"},{"id":"ref-for-at-ruledef-viewport\u2460\u2465"}],"title":"6.3. \nThe min-height and max-height descriptors"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2466"}],"title":"6.4. \nThe height shorthand descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2467"}],"title":"6.5. \nThe zoom descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2460\u2468"}],"title":"6.6. \nThe min-zoom descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2461\u24ea"}],"title":"6.7. \nThe max-zoom descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2461\u2460"}],"title":"6.8. \nThe user-zoom descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2461\u2461"}],"title":"6.9. \nThe orientation descriptor"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2461\u2462"},{"id":"ref-for-at-ruledef-viewport\u2461\u2463"},{"id":"ref-for-at-ruledef-viewport\u2461\u2464"},{"id":"ref-for-at-ruledef-viewport\u2461\u2465"},{"id":"ref-for-at-ruledef-viewport\u2461\u2466"},{"id":"ref-for-at-ruledef-viewport\u2461\u2467"},{"id":"ref-for-at-ruledef-viewport\u2461\u2468"},{"id":"ref-for-at-ruledef-viewport\u2462\u24ea"},{"id":"ref-for-at-ruledef-viewport\u2462\u2460"},{"id":"ref-for-at-ruledef-viewport\u2462\u2461"}],"title":"8. \nMedia Queries"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2462\u2462"}],"title":"9. \nCSSOM"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2462\u2463"},{"id":"ref-for-at-ruledef-viewport\u2462\u2464"}],"title":"9.2. \nInterface CSSViewportRule"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2462\u2465"}],"title":"10. \nViewport <META> element"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2462\u2466"},{"id":"ref-for-at-ruledef-viewport\u2462\u2467"}],"title":"10.4. \nTranslation into @viewport descriptors"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2462\u2468"},{"id":"ref-for-at-ruledef-viewport\u2463\u24ea"}],"title":"\nThe width\nand height\nproperties"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2463\u2460"}],"title":"\nThe initial-scale, minimum-scale, and maximum-scale properties"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2463\u2461"}],"title":"\nThe user-scalable property"},{"refs":[{"id":"ref-for-at-ruledef-viewport\u2463\u2462"}],"title":"12. \nUA stylesheets"}],"url":"#at-ruledef-viewport"}, "bf3ca8a7": {"dfnID":"bf3ca8a7","dfnText":"conditional group rule","external":true,"refSections":[{"refs":[{"id":"ref-for-conditional-group-rule"}],"title":"5.1. \nSyntax"}],"url":"https://drafts.csswg.org/css-conditional-3/#conditional-group-rule"}, +"c117ac59": {"dfnID":"c117ac59","dfnText":"vw","external":true,"refSections":[{"refs":[{"id":"ref-for-vw"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#vw"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"}],"title":"5.1. \nSyntax"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, "c388d253": {"dfnID":"c388d253","dfnText":"inherit","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-inherit"}],"title":"5. \nThe @viewport rule"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "cssviewportrule": {"dfnID":"cssviewportrule","dfnText":"CSSViewportRule","external":false,"refSections":[{"refs":[{"id":"ref-for-cssviewportrule"}],"title":"9.2. \nInterface CSSViewportRule"}],"url":"#cssviewportrule"}, @@ -2917,6 +2683,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dom-cssviewportrule-style": {"dfnID":"dom-cssviewportrule-style","dfnText":"style","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-cssviewportrule-style"}],"title":"9.2. \nInterface CSSViewportRule"}],"url":"#dom-cssviewportrule-style"}, "ebaeb088": {"dfnID":"ebaeb088","dfnText":"CSSRule","external":true,"refSections":[{"refs":[{"id":"ref-for-cssrule"}],"title":"9.1. \nInterface CSSRule"},{"refs":[{"id":"ref-for-cssrule\u2460"}],"title":"9.2. \nInterface CSSViewportRule"}],"url":"https://drafts.csswg.org/cssom-1/#cssrule"}, "f08b32ef": {"dfnID":"f08b32ef","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"},{"id":"ref-for-propdef-max-width\u2460"}],"title":"6.1. \nThe min-width and max-width descriptors"},{"refs":[{"id":"ref-for-propdef-max-width\u2461"},{"id":"ref-for-propdef-max-width\u2462"},{"id":"ref-for-propdef-max-width\u2463"}],"title":"6.2. \nThe width shorthand descriptor"},{"refs":[{"id":"ref-for-propdef-max-width\u2464"}],"title":"\nResolve non-auto lengths to pixel lengths"},{"refs":[{"id":"ref-for-propdef-max-width\u2465"}],"title":"\nThe width\nand height\nproperties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-max-width"}, +"f733c1ef": {"dfnID":"f733c1ef","dfnText":"zoom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-zoom"},{"id":"ref-for-propdef-zoom\u2460"}],"title":"6.5. \nThe zoom descriptor"},{"refs":[{"id":"ref-for-propdef-zoom\u2461"},{"id":"ref-for-propdef-zoom\u2462"},{"id":"ref-for-propdef-zoom\u2463"}],"title":"6.6. \nThe min-zoom descriptor"},{"refs":[{"id":"ref-for-propdef-zoom\u2464"},{"id":"ref-for-propdef-zoom\u2465"},{"id":"ref-for-propdef-zoom\u2466"}],"title":"6.7. \nThe max-zoom descriptor"},{"refs":[{"id":"ref-for-propdef-zoom\u2467"}],"title":"\nThe width\nand height\nproperties"},{"refs":[{"id":"ref-for-propdef-zoom\u2468"},{"id":"ref-for-propdef-zoom\u2460\u24ea"},{"id":"ref-for-propdef-zoom\u2460\u2460"}],"title":"11. \nHandling auto for zoom"}],"url":"https://drafts.csswg.org/css-viewport/#propdef-zoom"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"}],"title":"6.1. \nThe min-width and max-width descriptors"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "fdf6efd5": {"dfnID":"fdf6efd5","dfnText":"font-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size"}],"title":"6. \nViewport descriptors"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, "height": {"dfnID":"height","dfnText":"height","external":false,"refSections":[],"url":"#height"}, @@ -3337,63 +3104,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content document.addEventListener("DOMContentLoaded", setTypeTitles); } </script> -<script>/* Boilerplate: script-position-annos */ -"use strict"; -{ -function repositionAnnoPanels(){ - const panels = [...document.querySelectorAll("[data-anno-for]")]; - hydratePanels(panels); - let vSoFar = 0; - for(const panel of panels.sort(cmpTops)) { - if(panel.top < vSoFar) { - panel.top = vSoFar; - panel.style.top = vSoFar + "px"; - } - vSoFar = panel.top + panel.height + 15; - } -} -function hydratePanels(panels) { - const main = document.querySelector("main"); - let mainRect; - if(main) mainRect = main.getBoundingClientRect(); - // First display them all, if they're not already visible. - for(const panel of panels) { - panel.classList.remove("unpositioned"); - } - // Measure them all - for(const panel of panels) { - const dfn = document.getElementById(panel.getAttribute("data-anno-for")); - if(!dfn) { - console.log("Can't find the annotation panel target:", panel); - continue; - } - panel.dfn = dfn; - panel.top = window.scrollY + dfn.getBoundingClientRect().top; - let panelRect = panel.getBoundingClientRect(); - panel.height = panelRect.height; - if(main) { - panel.overlappingMain = panelRect.left < mainRect.right; - } else { - panel.overlappingMain = false; - } - } - // And finally position them - for(const panel of panels) { - const dfn = panel.dfn; - if(!dfn) continue; - panel.style.top = panel.top + "px"; - panel.classList.toggle("overlapping-main", panel.overlappingMain); - } -} - -function cmpTops(a,b) { - return a.top - b.top; -} - -window.addEventListener("load", repositionAnnoPanels); -window.addEventListener("resize", repositionAnnoPanels); -} -</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -3434,10 +3144,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#mult-num-range": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"{a,b}","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, "https://drafts.csswg.org/css-values-4/#number-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<number>","type":"type","url":"https://drafts.csswg.org/css-values-4/#number-value"}, "https://drafts.csswg.org/css-values-4/#percentage-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<percentage>","type":"type","url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, -"https://drafts.csswg.org/css-values-4/#valdef-length-vh": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vh","type":"value","url":"https://drafts.csswg.org/css-values-4/#valdef-length-vh"}, -"https://drafts.csswg.org/css-values-4/#valdef-length-vmax": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vmax","type":"value","url":"https://drafts.csswg.org/css-values-4/#valdef-length-vmax"}, -"https://drafts.csswg.org/css-values-4/#valdef-length-vmin": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vmin","type":"value","url":"https://drafts.csswg.org/css-values-4/#valdef-length-vmin"}, -"https://drafts.csswg.org/css-values-4/#valdef-length-vw": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vw","type":"value","url":"https://drafts.csswg.org/css-values-4/#valdef-length-vw"}, +"https://drafts.csswg.org/css-values-4/#vh": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vh","type":"value","url":"https://drafts.csswg.org/css-values-4/#vh"}, +"https://drafts.csswg.org/css-values-4/#vmax": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vmax","type":"value","url":"https://drafts.csswg.org/css-values-4/#vmax"}, +"https://drafts.csswg.org/css-values-4/#vmin": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vmin","type":"value","url":"https://drafts.csswg.org/css-values-4/#vmin"}, +"https://drafts.csswg.org/css-values-4/#vw": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vw","type":"value","url":"https://drafts.csswg.org/css-values-4/#vw"}, +"https://drafts.csswg.org/css-viewport/#propdef-zoom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-viewport","spec":"css-viewport-1","status":"current","text":"zoom","type":"property","url":"https://drafts.csswg.org/css-viewport/#propdef-zoom"}, "https://drafts.csswg.org/css-writing-modes-3/#propdef-direction": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-3","status":"current","text":"direction","type":"property","url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "https://drafts.csswg.org/cssom-1/#cssrule": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSSRule","type":"interface","url":"https://drafts.csswg.org/cssom-1/#cssrule"}, "https://drafts.csswg.org/cssom-1/#cssstyledeclaration": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSSStyleDeclaration","type":"interface","url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration"}, diff --git a/tests/github/w3c/csswg-drafts/css-display-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-display-3/Overview.console.txt index 8791d91f99..225742fede 100644 --- a/tests/github/w3c/csswg-drafts/css-display-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-display-3/Overview.console.txt @@ -5,21 +5,14 @@ LINT: Your document appears to use tabs to indent, but line 46 starts with space LINT: Your document appears to use tabs to indent, but line 47 starts with spaces. LINT: Your document appears to use tabs to indent, but line 48 starts with spaces. LINT: Your document appears to use tabs to indent, but line 49 starts with spaces. -LINE ~429: No 'property' refs found for 'overflow' with spec 'css2'. -'overflow' -LINE 484: No 'property' refs found for 'list-style' with spec 'css2'. -'list-style' -LINE ~988: No 'property' refs found for 'overflow' with spec 'css2'. -'overflow' LINK ERROR: Multiple possible 'text' element refs. Arbitrarily chose https://svgwg.org/svg2-draft/text.html#elementdef-text To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:svg2; type:element; text:text spec:epub-33; type:element; text:text <{text}> -LINE 1581: No 'property' refs found for 'overflow' with spec 'css2'. -''overflow: hidden'' LINE 1585: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: No 'order-property' ID found, skipping MDN features that would target it. +WARNING: No 'visibility' ID found, skipping MDN features that would target it. LINE 172: Couldn't find target anchor status: <a bs-line-number="172" href="#status">report errors</a> diff --git a/tests/github/w3c/csswg-drafts/css-display-3/Overview.html b/tests/github/w3c/csswg-drafts/css-display-3/Overview.html index c2813ebed2..ddd5b184f2 100644 --- a/tests/github/w3c/csswg-drafts/css-display-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-display-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Display Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-display-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1088,7 +1087,7 @@ <h1 class="p-name no-ref" id="title">CSS Display Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1110,7 +1109,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-display] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-display%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>A <a href="http://test.csswg.org/harness/results/css-display-3_dev/grouped/">preliminary implementation report</a> is available. Further tests will be added during the CR period.</p> </div> @@ -1281,7 +1280,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s so they can be corrected.</p> <p class="note" role="note"><span class="marker">Note:</span> Further information on the “aural” box tree and its interaction with the <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display⑧">display</a> property - can be found in the <a href="https://www.w3.org/TR/css3-speech/#aural-model">CSS Speech Module</a>. <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module">[CSS-SPEECH-1]</a></p> + can be found in the <a href="https://www.w3.org/TR/css3-speech/#aural-model">CSS Speech Module</a>. <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module Level 1">[CSS-SPEECH-1]</a></p> <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno">1.1. </span><span class="content"> Module interactions</span><a class="self-link" href="#placement"></a></h3> <p>This module replaces and extends the definition of the <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display⑨">display</a> property defined in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> section 9.2.4.</p> <p>None of the properties in this module apply to the <code>::first-line</code> or <code>::first-letter</code> pseudo-elements.</p> @@ -1344,7 +1343,7 @@ <h2 class="heading settled" data-level="2" id="the-display-properties"><span cla <div class="advisement"> The <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display①③">display</a> property has no effect on an element’s semantics: these are defined by the <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#document-language" id="ref-for-document-language">document language</a> and <em>are not affected by CSS</em>. Aside from the <a class="css" data-link-type="maybe" href="#valdef-display-none" id="ref-for-valdef-display-none②">none</a> value, - which also affects the aural/speech output <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module">[CSS-SPEECH-1]</a> and interactivity of an element and its descendants, + which also affects the aural/speech output <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module Level 1">[CSS-SPEECH-1]</a> and interactivity of an element and its descendants, the <span class="property" id="ref-for-propdef-display①④">display</span> property only affects visual layout: its purpose is to allow designers freedom to change the layout behavior of an element <em>without</em> affecting the underlying document semantics. </div> @@ -1475,7 +1474,7 @@ <h3 class="heading settled" data-level="2.2" id="inner-model"><span class="secno and it is participating in a <a data-link-type="dfn" href="#block-formatting-context" id="ref-for-block-formatting-context①">block</a> or <a data-link-type="dfn" href="#inline-formatting-context" id="ref-for-inline-formatting-context">inline</a> formatting context, then it generates an <a data-link-type="dfn" href="#inline-box" id="ref-for-inline-box④">inline box</a>.</p> <p>Otherwise it generates a <a data-link-type="dfn" href="#block-container" id="ref-for-block-container③">block container</a> box.</p> - <p>Depending on the value of other properties (such as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-float" id="ref-for-propdef-float">float</a>, or <a class="property css" data-link-type="property">overflow</a>) + <p>Depending on the value of other properties (such as <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-float" id="ref-for-propdef-float">float</a>, or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow" id="ref-for-propdef-overflow">overflow</a>) and whether it is itself participating in a block or inline <a data-link-type="dfn" href="#formatting-context" id="ref-for-formatting-context①">formatting context</a>, it either establishes a new <a data-link-type="dfn" href="#block-formatting-context" id="ref-for-block-formatting-context②">block formatting context</a> for its contents or integrates its contents into its parent <span id="ref-for-formatting-context②">formatting context</span>. @@ -1507,7 +1506,7 @@ <h3 class="heading settled" data-level="2.2" id="inner-model"><span class="secno the element’s <a data-link-type="dfn" href="#outer-display-type" id="ref-for-outer-display-type③">outer display type</a> defaults to <a class="css" data-link-type="maybe" href="#valdef-display-block" id="ref-for-valdef-display-block②">block</a>—​except for <a class="css" data-link-type="maybe" href="#valdef-display-ruby" id="ref-for-valdef-display-ruby②">ruby</a>, which defaults to <a class="css" data-link-type="maybe" href="#valdef-display-inline" id="ref-for-valdef-display-inline③">inline</a>.</p> <h3 class="heading settled" data-level="2.3" id="list-items"><span class="secno">2.3. </span><span class="content"> Generating Marker Boxes: the <a class="css" data-link-type="maybe" href="#valdef-display-list-item" id="ref-for-valdef-display-list-item②">list-item</a> keyword</span><a class="self-link" href="#list-items"></a></h3> <p>The <dfn class="dfn-paneled css" data-dfn-for="display, <display-list-item>" data-dfn-type="value" data-export id="valdef-display-list-item">list-item</dfn> keyword - causes the element to generate a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-marker" id="ref-for-selectordef-marker①">::marker</a> pseudo-element <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> with the content specified by its <a class="property css" data-link-type="property">list-style</a> properties + causes the element to generate a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-marker" id="ref-for-selectordef-marker①">::marker</a> pseudo-element <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[CSS-PSEUDO-4]</a> with the content specified by its <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-list-style" id="ref-for-propdef-list-style">list-style</a> properties (<a href="https://www.w3.org/TR/CSS2/generate.html#lists">CSS 2.1§12.5 Lists</a>) <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> together with a principal box of the specified type for its own contents.</p> <p>If no <a data-link-type="dfn" href="#inner-display-type" id="ref-for-inner-display-type③">inner display type</a> value is specified, the principal box’s <span id="ref-for-inner-display-type④">inner display type</span> defaults to <a class="css" data-link-type="maybe" href="#valdef-display-flow" id="ref-for-valdef-display-flow②">flow</a>. @@ -1817,7 +1816,7 @@ <h2 class="no-num heading settled" id="glossary"><span class="content"> Appendix it either establishes a new <span id="ref-for-block-formatting-context①①">block formatting context</span> for its contents or continues the one in which it participates, as determined by the constraints of other properties - (such as <a class="property css" data-link-type="property">overflow</a> or <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-align-content" id="ref-for-propdef-align-content">align-content</a>).</p> + (such as <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow" id="ref-for-propdef-overflow①">overflow</a> or <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-align-content" id="ref-for-propdef-align-content">align-content</a>).</p> <p class="note" role="note"><span class="marker">Note:</span> A block container box can both establish a block formatting context <em>and</em> an inline formatting context simultaneously.</p> <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="block-box">block box</dfn> <dd> @@ -1983,7 +1982,7 @@ <h2 class="no-num heading settled" id="glossary"><span class="content"> Appendix (which can be different from the order in which it appears for rendering). For the purpose of determining the relative order of pseudo-elements, the box-tree order is used, - see <a href="https://drafts.csswg.org/css-pseudo-4/#treelike"><cite>CSS Pseudo-Elements 4</cite> § 4 Tree-Abiding Pseudo-elements</a>. + see <a href="https://drafts.csswg.org/css-pseudo-4/#treelike"><cite>CSS Pseudo-Elements 4</cite> § 4 Tree-Abiding and Part-Like Pseudo-elements</a>. </dl> <p>See <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <a href="https://www.w3.org/TR/CSS2/visuren.html">Chapter 9</a> for a fuller definition of these terms.</p> <h2 class="no-num non-normative heading settled" id="unbox"><span class="content"> Appendix B: Effects of <a class="css" data-link-type="propdesc" href="#propdef-display" id="ref-for-propdef-display③④">display: contents</a> on Unusual Elements</span><a class="self-link" href="#unbox"></a></h2> @@ -2262,7 +2261,7 @@ <h3 class="heading settled" id="changes-wd"><span class="content"> Changes Prior if they become unnecessary or unwanted.) <li>Created the <a class="css" data-link-type="maybe" href="#valdef-display-flow" id="ref-for-valdef-display-flow⑨">flow</a> and <a class="css" data-link-type="maybe" href="#valdef-display-flow-root" id="ref-for-valdef-display-flow-root①⓪">flow-root</a> <a data-link-type="dfn" href="#inner-display-type" id="ref-for-inner-display-type①⑧">inner display types</a> to better express flow layout <a data-link-type="dfn" href="#display-type" id="ref-for-display-type③">display types</a> and to create an explicit switch for making an element a <a data-link-type="dfn" href="#bfc" id="ref-for-bfc①">BFC</a> root. (This should eliminate the need for hacks - like <span class="css">::after { clear: both; }</span> and <a class="css" data-link-type="propdesc">overflow: hidden</a> that are intended to accomplish this purpose.) + like <span class="css">::after { clear: both; }</span> and <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow" id="ref-for-propdef-overflow②">overflow: hidden</a> that are intended to accomplish this purpose.) </ul> <h2 class="no-num heading settled" id="priv-sec"><span class="content"> Privacy and Security Considerations</span><a class="self-link" href="#priv-sec"></a></h2> <p>This specification introduces no new privacy or security considerations.</p> @@ -2572,6 +2571,12 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="48ccfe05">list-style</span> + <li><span class="dfn-paneled" id="244c26d9">overflow</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -2665,7 +2670,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] @@ -2681,7 +2686,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -2689,7 +2694,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css-tables-3">[CSS-TABLES-3] <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -2711,7 +2716,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-flexbox">[CSS3-FLEXBOX] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css3ruby">[CSS3RUBY] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-ruby-1/"><cite>CSS Ruby Annotation Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-ruby-1/">https://drafts.csswg.org/css-ruby-1/</a> <dt id="biblio-cssom">[CSSOM] @@ -2794,7 +2799,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <details class="mdn-anno unpositioned" data-anno-for="the-display-properties"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/display" title="The display CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.">display</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/display" title="The display CSS property sets whether an element is treated as a block or inline box and the layout used for its children, such as flow layout, grid or flex.">display</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -3018,6 +3023,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "20fff200": {"dfnID":"20fff200","dfnText":"inheritance","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"}],"title":"2.5. \nBox Generation: the none and contents keywords"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, "214c6f37": {"dfnID":"214c6f37","dfnText":"first formatted line","external":true,"refSections":[{"refs":[{"id":"ref-for-first-formatted-line"},{"id":"ref-for-first-formatted-line\u2460"}],"title":"3. \nRun-In Layout"}],"url":"https://drafts.csswg.org/css-pseudo-4/#first-formatted-line"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"},{"id":"ref-for-flex-container\u2460"}],"title":"2. \nBox Layout Modes: the display property"},{"refs":[{"id":"ref-for-flex-container\u2461"}],"title":"2.2. \nInner Display Layout Models: the flow, flow-root, table, flex, grid, and ruby keywords"},{"refs":[{"id":"ref-for-flex-container\u2462"}],"title":"\nAppendix A: Glossary"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, +"244c26d9": {"dfnID":"244c26d9","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"2.2. \nInner Display Layout Models: the flow, flow-root, table, flex, grid, and ruby keywords"},{"refs":[{"id":"ref-for-propdef-overflow\u2460"}],"title":"\nAppendix A: Glossary"},{"refs":[{"id":"ref-for-propdef-overflow\u2461"}],"title":"\nChanges Prior to Candidate Recommendation Status"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow"}, "2496f7a0": {"dfnID":"2496f7a0","dfnText":"inherited property","external":true,"refSections":[{"refs":[{"id":"ref-for-inherited-property"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-cascade-5/#inherited-property"}, "2c82d279": {"dfnID":"2c82d279","dfnText":"audio","external":true,"refSections":[{"refs":[{"id":"ref-for-audio"}],"title":"HTML Elements"}],"url":"https://html.spec.whatwg.org/multipage/media.html#audio"}, "2f0492ac": {"dfnID":"2f0492ac","dfnText":"body","external":true,"refSections":[{"refs":[{"id":"ref-for-the-body-element"}],"title":"\nChanges"}],"url":"https://html.spec.whatwg.org/multipage/sections.html#the-body-element"}, @@ -3025,6 +3031,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "409e2104": {"dfnID":"409e2104","dfnText":"presentation attributes","external":true,"refSections":[{"refs":[{"id":"ref-for-TermPresentationAttribute"}],"title":"SVG Elements"}],"url":"https://svgwg.org/svg2-draft/styling.html#TermPresentationAttribute"}, "4299a926": {"dfnID":"4299a926","dfnText":"svg","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-svg"},{"id":"ref-for-elementdef-svg\u2460"},{"id":"ref-for-elementdef-svg\u2461"}],"title":"SVG Elements"}],"url":"https://svgwg.org/svg2-draft/struct.html#elementdef-svg"}, "4766f517": {"dfnID":"4766f517","dfnText":"rendered element","external":true,"refSections":[{"refs":[{"id":"ref-for-TermRenderedElement"}],"title":"SVG Elements"}],"url":"https://svgwg.org/svg2-draft/render.html#TermRenderedElement"}, +"48ccfe05": {"dfnID":"48ccfe05","dfnText":"list-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style"}],"title":"2.3. \nGenerating Marker Boxes: the list-item keyword"}],"url":"https://www.w3.org/TR/CSS21/generate.html#propdef-list-style"}, "49a6cb20": {"dfnID":"49a6cb20","dfnText":"embed","external":true,"refSections":[{"refs":[{"id":"ref-for-the-embed-element"}],"title":"HTML Elements"}],"url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-embed-element"}, "51330c07": {"dfnID":"51330c07","dfnText":"absolute position","external":true,"refSections":[{"refs":[{"id":"ref-for-absolute-position"},{"id":"ref-for-absolute-position\u2460"}],"title":"\nAppendix A: Glossary"},{"refs":[{"id":"ref-for-absolute-position\u2461"},{"id":"ref-for-absolute-position\u2462"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-position-3/#absolute-position"}, "51fe9b84": {"dfnID":"51fe9b84","dfnText":"absolutely position","external":true,"refSections":[{"refs":[{"id":"ref-for-absolute-position"},{"id":"ref-for-absolute-position\u2460"}],"title":"\nAppendix A: Glossary"},{"refs":[{"id":"ref-for-absolute-position\u2461"},{"id":"ref-for-absolute-position\u2462"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-position-3/#absolute-position"}, @@ -3794,6 +3801,8 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://svgwg.org/svg2-draft/text.html#elementdef-text": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"text","type":"element","url":"https://svgwg.org/svg2-draft/text.html#elementdef-text"}, "https://svgwg.org/svg2-draft/text.html#elementdef-textPath": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"textpath","type":"element","url":"https://svgwg.org/svg2-draft/text.html#elementdef-textPath"}, "https://svgwg.org/svg2-draft/text.html#elementdef-tspan": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"tspan","type":"element","url":"https://svgwg.org/svg2-draft/text.html#elementdef-tspan"}, +"https://www.w3.org/TR/CSS21/generate.html#propdef-list-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"list-style","type":"property","url":"https://www.w3.org/TR/CSS21/generate.html#propdef-list-style"}, +"https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"overflow","type":"property","url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-overflow"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-easing-1/Overview.html b/tests/github/w3c/csswg-drafts/css-easing-1/Overview.html index cec3c597f1..ac48528ee7 100644 --- a/tests/github/w3c/csswg-drafts/css-easing-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-easing-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Easing Functions Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-easing-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1083,7 +1082,7 @@ <h1 class="p-name no-ref" id="title">CSS Easing Functions Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1109,7 +1108,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-easing] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-easing%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/csswg-drafts/css-egg-1/Overview.html b/tests/github/w3c/csswg-drafts/css-egg-1/Overview.html index fa6723b9cb..7ae7239af7 100644 --- a/tests/github/w3c/csswg-drafts/css-egg-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-egg-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Expressive Generalizations and Gadgetry Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-egg/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -962,7 +961,7 @@ <h1 class="p-name no-ref" id="title">CSS Expressive Generalizations and Gadgetry </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -984,7 +983,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-egg] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-egg%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1069,8 +1068,8 @@ <h3 class="heading settled" data-level="1.1" id="interact"><span class="secno">1 <p>This module extends:</p> <ul> <li>the data type definitions in <a data-link-type="biblio" href="#biblio-css3-values" title="CSS Values and Units Module Level 3">[CSS3-VALUES]</a> - <li>the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-4/#typedef-gradient" id="ref-for-typedef-gradient">&lt;gradient></a> definition in <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Image Values and Replaced Content Module Level 4">[CSS4-IMAGES]</a> - <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-speech-1/#propdef-voice-rate" id="ref-for-propdef-voice-rate">voice-rate</a> property in <a data-link-type="biblio" href="#biblio-css3speech" title="CSS Speech Module">[CSS3SPEECH]</a> + <li>the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-4/#typedef-gradient" id="ref-for-typedef-gradient">&lt;gradient></a> definition in <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Images Module Level 4">[CSS4-IMAGES]</a> + <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-speech-1/#propdef-voice-rate" id="ref-for-propdef-voice-rate">voice-rate</a> property in <a data-link-type="biblio" href="#biblio-css3speech" title="CSS Speech Module Level 1">[CSS3SPEECH]</a> <li>the '@media' rule in <a data-link-type="biblio" href="#biblio-mediaqueries-5" title="Media Queries Level 5">[MEDIAQUERIES-5]</a> </ul> <h3 class="heading settled" data-level="1.2" id="values"><span class="secno">1.2. </span><span class="content"> Value Definitions</span><a class="self-link" href="#values"></a></h3> @@ -1092,7 +1091,7 @@ <h3 class="heading settled" data-level="2.1" id="astro-units"><span class="secno which should be appreciated by authors in fields such as astronomy and fundamental physics. The new units are <span class="css">ls</span>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#pc" id="ref-for-pc">pc</a> and their sub multiples <span class="css">pls</span> and <span class="css">apc</span>. -They are defined as <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-3/#physical-units" id="ref-for-physical-units">physical units</a>. +They are defined as <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-3/#physical-unit" id="ref-for-physical-unit">physical units</a>. <table class="data"> <thead> <tr> @@ -1309,19 +1308,19 @@ <h2 class="heading settled" data-level="3" id="rainbow"><span class="secno">3. < <p><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-4/#typedef-gradient" id="ref-for-typedef-gradient①">&lt;gradient></a> allows sophisticated visual effects, but they are tedious to write, review and maintain as non trivial gradients cannot easily be visualized by merely reading the source. -This specification introduces a new syntax to describe a particular kind of <a class="production css" data-link-type="function" href="https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient">&lt;radial-gradient()></a>: double rainbows. +This specification introduces a new syntax to describe a particular kind of <a class="production css" data-link-type="function" href="https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient">&lt;radial-gradient()></a>: double rainbows. This spectacular visual effect which would improve most web pages is currently underused due to the difficulty of specifying it correctly.</p> - <p>The <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-4/#typedef-gradient" id="ref-for-typedef-gradient②">&lt;gradient></a> syntax is extended to accept <a class="production css" data-link-type="function" href="#funcdef-double-rainbow" id="ref-for-funcdef-double-rainbow">&lt;double-rainbow()></a> in addition to the other values defined in <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Image Values and Replaced Content Module Level 4">[CSS4-IMAGES]</a></p> + <p>The <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-4/#typedef-gradient" id="ref-for-typedef-gradient②">&lt;gradient></a> syntax is extended to accept <a class="production css" data-link-type="function" href="#funcdef-double-rainbow" id="ref-for-funcdef-double-rainbow">&lt;double-rainbow()></a> in addition to the other values defined in <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Images Module Level 4">[CSS4-IMAGES]</a></p> <pre><dfn class="dfn-paneled" data-dfn-type="function" data-export id="funcdef-double-rainbow">double-rainbow()</dfn> = double-rainbow( <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-position" id="ref-for-typedef-position">&lt;position></a> [, [ <a class="production" data-link-type="type" href="#typedef-extent" id="ref-for-typedef-extent">&lt;extent></a> | <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#length-value" id="ref-for-length-value">&lt;length></a> | <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value">&lt;percentage></a>]]? ) -<dfn class="dfn-paneled" data-dfn-type="type" data-noexport id="typedef-extent"><a class="production" data-link-type="type" href="#typedef-extent" id="ref-for-typedef-extent①">&lt;extent></a></dfn> = <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner" id="ref-for-valdef-rg-extent-keyword-closest-corner">closest-corner</a> | <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side" id="ref-for-valdef-rg-extent-keyword-closest-side">closest-side</a> | <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner" id="ref-for-valdef-rg-extent-keyword-farthest-corner">farthest-corner</a> | <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side" id="ref-for-valdef-rg-extent-keyword-farthest-side">farthest-side</a> +<dfn class="dfn-paneled" data-dfn-type="type" data-noexport id="typedef-extent"><a class="production" data-link-type="type" href="#typedef-extent" id="ref-for-typedef-extent①">&lt;extent></a></dfn> = <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner" id="ref-for-valdef-radial-extent-closest-corner">closest-corner</a> | <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side" id="ref-for-valdef-radial-extent-closest-side">closest-side</a> | <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner" id="ref-for-valdef-radial-extent-farthest-corner">farthest-corner</a> | <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side" id="ref-for-valdef-radial-extent-farthest-side">farthest-side</a> </pre> <p><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#length-value" id="ref-for-length-value①">&lt;length></a> or <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①">&lt;percentage></a> gives the radius of the outermost circle of the double rainbow explicitly. Percentages values are relative to the corresponding dimension of the gradient box. Negative values are invalid.</p> - <p>If the second argument is omitted, the default value is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side" id="ref-for-valdef-rg-extent-keyword-farthest-side①">farthest-side</a>.</p> + <p>If the second argument is omitted, the default value is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side" id="ref-for-valdef-radial-extent-farthest-side①">farthest-side</a>.</p> <div class="example" id="rainbow-unicorn"> <a class="self-link" href="#rainbow-unicorn"></a> This feature was initially introduced by Opera Software. The following page, when viewed in Opera (between version 11.60 and 12.16), @@ -1468,10 +1467,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-IMAGES-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="212a0485">closest-corner</span> - <li><span class="dfn-paneled" id="861edd21">closest-side</span> - <li><span class="dfn-paneled" id="becd1725">farthest-corner</span> - <li><span class="dfn-paneled" id="9c732060">farthest-side</span> + <li><span class="dfn-paneled" id="2861f550">closest-corner</span> + <li><span class="dfn-paneled" id="76550423">closest-side</span> + <li><span class="dfn-paneled" id="957a5ef9">farthest-corner</span> + <li><span class="dfn-paneled" id="1806cbc8">farthest-side</span> + <li><span class="dfn-paneled" id="f8ad7945">radial-gradient()</span> </ul> <li> <a data-link-type="biblio">[CSS-VALUES-4]</a> defines the following terms: @@ -1494,7 +1494,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="621c7c7e">&lt;time></span> <li><span class="dfn-paneled" id="08b774e1">absolute length</span> - <li><span class="dfn-paneled" id="1b7acc0a">physical units</span> + <li><span class="dfn-paneled" id="f67f5fb6">physical unit</span> </ul> <li> <a data-link-type="biblio">[CSS3SPEECH]</a> defines the following terms: @@ -1505,7 +1505,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS4-IMAGES]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="f1095b0d">&lt;gradient></span> - <li><span class="dfn-paneled" id="28a738db">radial-gradient()</span> </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> @@ -1514,7 +1513,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -1524,9 +1523,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-values">[CSS3-VALUES] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-3/">https://drafts.csswg.org/css-values-3/</a> <dt id="biblio-css3speech">[CSS3SPEECH] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css4-images">[CSS4-IMAGES] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/mediaqueries-5/"><cite>Media Queries Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/mediaqueries-5/">https://drafts.csswg.org/mediaqueries-5/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -1775,23 +1774,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let dfnPanelData = { "08b774e1": {"dfnID":"08b774e1","dfnText":"absolute length","external":true,"refSections":[{"refs":[{"id":"ref-for-absolute-length"}],"title":"2. \nExtended Units"},{"refs":[{"id":"ref-for-absolute-length\u2460"}],"title":"2.1. \nAstronomical units"}],"url":"https://drafts.csswg.org/css-values-3/#absolute-length"}, "15f5b381": {"dfnID":"15f5b381","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"},{"id":"ref-for-percentage-value\u2460"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, -"1b7acc0a": {"dfnID":"1b7acc0a","dfnText":"physical units","external":true,"refSections":[{"refs":[{"id":"ref-for-physical-units"}],"title":"2.1. \nAstronomical units"}],"url":"https://drafts.csswg.org/css-values-3/#physical-units"}, -"212a0485": {"dfnID":"212a0485","dfnText":"closest-corner","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-extent-keyword-closest-corner"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner"}, -"28a738db": {"dfnID":"28a738db","dfnText":"radial-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-radial-gradient"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient"}, +"1806cbc8": {"dfnID":"1806cbc8","dfnText":"farthest-side","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-extent-farthest-side"},{"id":"ref-for-valdef-radial-extent-farthest-side\u2460"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side"}, +"2861f550": {"dfnID":"2861f550","dfnText":"closest-corner","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-extent-closest-corner"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner"}, "2cd27cd8": {"dfnID":"2cd27cd8","dfnText":"<position>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-position"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-position"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"},{"id":"ref-for-at-ruledef-media\u2460"}],"title":"2.4.1. \nExtension to the @media rule: The performance feature"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "621c7c7e": {"dfnID":"621c7c7e","dfnText":"<time>","external":true,"refSections":[{"refs":[{"id":"ref-for-time-value"}],"title":"2. \nExtended Units"},{"refs":[{"id":"ref-for-time-value\u2460"}],"title":"2.2. \nTraditional time units\n"}],"url":"https://drafts.csswg.org/css-values-3/#time-value"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"2.3.1. \nExtension to the voice-rate property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, -"861edd21": {"dfnID":"861edd21","dfnText":"closest-side","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-extent-keyword-closest-side"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side"}, +"76550423": {"dfnID":"76550423","dfnText":"closest-side","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-extent-closest-side"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"2.3.1. \nExtension to the voice-rate property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "914c0d31": {"dfnID":"914c0d31","dfnText":"s","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-hsl-s"}],"title":"2. \nExtended Units"},{"refs":[{"id":"ref-for-valdef-hsl-s\u2460"},{"id":"ref-for-valdef-hsl-s\u2461"}],"title":"2.2. \nTraditional time units\n"}],"url":"https://drafts.csswg.org/css-color-5/#valdef-hsl-s"}, -"9c732060": {"dfnID":"9c732060","dfnText":"farthest-side","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-extent-keyword-farthest-side"},{"id":"ref-for-valdef-rg-extent-keyword-farthest-side\u2460"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side"}, +"957a5ef9": {"dfnID":"957a5ef9","dfnText":"farthest-corner","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-extent-farthest-corner"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner"}, "9ddea951": {"dfnID":"9ddea951","dfnText":"px","external":true,"refSections":[{"refs":[{"id":"ref-for-px"}],"title":"2.1. \nAstronomical units"}],"url":"https://drafts.csswg.org/css-values-4/#px"}, "9e1a434a": {"dfnID":"9e1a434a","dfnText":"in","external":true,"refSections":[{"refs":[{"id":"ref-for-in"}],"title":"2. \nExtended Units"}],"url":"https://drafts.csswg.org/css-values-4/#in"}, "adafish": {"dfnID":"adafish","dfnText":"adafish","external":false,"refSections":[],"url":"#adafish"}, "apc": {"dfnID":"apc","dfnText":"apc","external":false,"refSections":[],"url":"#apc"}, -"becd1725": {"dfnID":"becd1725","dfnText":"farthest-corner","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-extent-keyword-farthest-corner"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner"}, "cbae5084": {"dfnID":"cbae5084","dfnText":"cm","external":true,"refSections":[{"refs":[{"id":"ref-for-cm"}],"title":"2. \nExtended Units"},{"refs":[{"id":"ref-for-cm\u2460"}],"title":"2.1. \nAstronomical units"}],"url":"https://drafts.csswg.org/css-values-4/#cm"}, "d3d94ece": {"dfnID":"d3d94ece","dfnText":"voice-rate","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-voice-rate"}],"title":"1.1. \nModule Interactions"},{"refs":[{"id":"ref-for-propdef-voice-rate\u2460"},{"id":"ref-for-propdef-voice-rate\u2461"},{"id":"ref-for-propdef-voice-rate\u2462"}],"title":"2.3.1. \nExtension to the voice-rate property"}],"url":"https://drafts.csswg.org/css-speech-1/#propdef-voice-rate"}, "descdef-media-performance": {"dfnID":"descdef-media-performance","dfnText":"performance","external":false,"refSections":[],"url":"#descdef-media-performance"}, @@ -1799,6 +1796,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e510368f": {"dfnID":"e510368f","dfnText":"dimension","external":true,"refSections":[{"refs":[{"id":"ref-for-dimension"}],"title":"2.3. \nSpeech rate"},{"refs":[{"id":"ref-for-dimension\u2460"}],"title":"2.4. \nDevice performance"}],"url":"https://drafts.csswg.org/css-values-4/#dimension"}, "f1095b0d": {"dfnID":"f1095b0d","dfnText":"<gradient>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-gradient"}],"title":"1.1. \nModule Interactions"},{"refs":[{"id":"ref-for-typedef-gradient\u2460"},{"id":"ref-for-typedef-gradient\u2461"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-4/#typedef-gradient"}, "f52f83f2": {"dfnID":"f52f83f2","dfnText":"pc","external":true,"refSections":[{"refs":[{"id":"ref-for-pc"},{"id":"ref-for-pc\u2460"}],"title":"2.1. \nAstronomical units"}],"url":"https://drafts.csswg.org/css-values-4/#pc"}, +"f67f5fb6": {"dfnID":"f67f5fb6","dfnText":"physical unit","external":true,"refSections":[{"refs":[{"id":"ref-for-physical-unit"}],"title":"2.1. \nAstronomical units"}],"url":"https://drafts.csswg.org/css-values-3/#physical-unit"}, +"f8ad7945": {"dfnID":"f8ad7945","dfnText":"radial-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-radial-gradient"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient"}, "f91292d8": {"dfnID":"f91292d8","dfnText":"ms","external":true,"refSections":[{"refs":[{"id":"ref-for-ms"}],"title":"2. \nExtended Units"},{"refs":[{"id":"ref-for-ms\u2460"}],"title":"2.2. \nTraditional time units\n"}],"url":"https://drafts.csswg.org/css-values-4/#ms"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"},{"id":"ref-for-length-value\u2460"}],"title":"3. \nDouble Rainbow"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "ftn": {"dfnID":"ftn","dfnText":"ftn","external":false,"refSections":[],"url":"#ftn"}, @@ -2224,15 +2223,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#typedef-extent": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-egg","spec":"css-egg-1","status":"local","text":"<extent>","type":"type","url":"#typedef-extent"}, "https://drafts.csswg.org/css-color-5/#valdef-hsl-s": {"export":true,"for_":["hsl()"],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"s","type":"value","url":"https://drafts.csswg.org/css-color-5/#valdef-hsl-s"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-media": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@media","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner": {"export":true,"for_":["<rg-extent-keyword>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"closest-corner","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side": {"export":true,"for_":["<rg-extent-keyword>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"closest-side","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner": {"export":true,"for_":["<rg-extent-keyword>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"farthest-corner","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side": {"export":true,"for_":["<rg-extent-keyword>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"farthest-side","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side"}, -"https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"radial-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient"}, +"https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"radial-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner": {"export":true,"for_":["<radial-extent>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"closest-corner","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side": {"export":true,"for_":["<radial-extent>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"closest-side","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner": {"export":true,"for_":["<radial-extent>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"farthest-corner","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side": {"export":true,"for_":["<radial-extent>","radial-gradient()","repeating-radial-gradient()"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"farthest-side","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side"}, "https://drafts.csswg.org/css-images-4/#typedef-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"<gradient>","type":"type","url":"https://drafts.csswg.org/css-images-4/#typedef-gradient"}, "https://drafts.csswg.org/css-speech-1/#propdef-voice-rate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-speech","spec":"css-speech-1","status":"current","text":"voice-rate","type":"property","url":"https://drafts.csswg.org/css-speech-1/#propdef-voice-rate"}, "https://drafts.csswg.org/css-values-3/#absolute-length": {"export":false,"for_":[],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"absolute length","type":"dfn","url":"https://drafts.csswg.org/css-values-3/#absolute-length"}, -"https://drafts.csswg.org/css-values-3/#physical-units": {"export":false,"for_":[],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"physical units","type":"dfn","url":"https://drafts.csswg.org/css-values-3/#physical-units"}, +"https://drafts.csswg.org/css-values-3/#physical-unit": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"physical unit","type":"dfn","url":"https://drafts.csswg.org/css-values-3/#physical-unit"}, "https://drafts.csswg.org/css-values-3/#time-value": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"current","text":"<time>","type":"type","url":"https://drafts.csswg.org/css-values-3/#time-value"}, "https://drafts.csswg.org/css-values-4/#cm": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"cm","type":"value","url":"https://drafts.csswg.org/css-values-4/#cm"}, "https://drafts.csswg.org/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"||","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-any"}, diff --git a/tests/github/w3c/csswg-drafts/css-env-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-env-1/Overview.console.txt index e69de29bb2..8d40d41fcb 100644 --- a/tests/github/w3c/csswg-drafts/css-env-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-env-1/Overview.console.txt @@ -0,0 +1 @@ +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-env-1/Overview.html b/tests/github/w3c/csswg-drafts/css-env-1/Overview.html index a864bc87fe..9ed9b84ff1 100644 --- a/tests/github/w3c/csswg-drafts/css-env-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-env-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Environment Variables Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-env-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -948,7 +947,7 @@ <h1 class="p-name no-ref" id="title">CSS Environment Variables Module Level 1</h </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -970,7 +969,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-env] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-env%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1162,7 +1161,7 @@ <h3 class="heading settled" data-level="3.1" id="env-in-shorthands"><span class= <p>The <a class="css" data-link-type="maybe" href="#funcdef-env" id="ref-for-funcdef-env②①">env()</a> function causes the same difficulties with <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#shorthand-property" id="ref-for-shorthand-property">shorthand properties</a> as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-variables-2/#funcdef-var" id="ref-for-funcdef-var⑧">var()</a> function does. When an <span class="css" id="ref-for-funcdef-env②②">env()</span> is used in a <span id="ref-for-shorthand-property①">shorthand property</span>, then, -it has the same effects as defined in <a href="https://drafts.csswg.org/css-variables-1/#variables-in-shorthands"><cite>CSS Variables 1</cite> § 3.2 Variables in Shorthand Properties</a>.</p> +it has the same effects as defined in <a href="https://www.w3.org/TR/css-variables-1/#variables-in-shorthands"><cite>CSS Variables 1</cite> § 3.2 Variables in Shorthand Properties</a>.</p> </main> <h2 class="no-ref no-num heading settled" id="w3c-conformance"><span class="content"> Conformance</span><a class="self-link" href="#w3c-conformance"></a></h2> <h3 class="no-ref heading settled" id="w3c-conventions"><span class="content"> Document conventions</span><a class="self-link" href="#w3c-conventions"></a></h3> @@ -1317,7 +1316,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -1325,7 +1324,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-variables-1">[CSS-VARIABLES-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-variables/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-variables/">https://drafts.csswg.org/css-variables/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -1369,7 +1368,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="safe-area-insets"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> @@ -1382,7 +1381,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> @@ -1395,7 +1394,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> @@ -1408,7 +1407,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> @@ -1424,7 +1423,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="env-function"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than user-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/env()" title="The env() CSS function can be used to insert the value of a user-agent defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference is that, as well as being user-agent defined rather than author-defined, environment variables are globally scoped to a document, whereas custom properties are scoped to the element(s) on which they are declared.">env()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> diff --git a/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.console.txt index 5ff4702b10..0d22cb05a7 100644 --- a/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.console.txt @@ -39,4 +39,10 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-page-floats-3; type:value; text:none spec:css22; type:value; text:none ''float/none'' +LINE 345: Multiple possible 'outside' maybe refs. +Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-anchor-position-1; type:value; text:outside +spec:css-lists-3; type:value; text:outside +''outside'' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.html b/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.html index ba272cd18d..36792a23ed 100644 --- a/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-exclusions-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Exclusions Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css3-exclusions/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -749,7 +748,7 @@ <h1 class="p-name no-ref" id="title">CSS Exclusions Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -771,7 +770,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-exclusions] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-exclusions%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -923,7 +922,7 @@ <h2 class="heading settled" data-level="3" id="exclusions"><span class="secno">3 around the <span>exclusion areas</span> in their associated <span>wrapping context</span>. If the element is itself an exclusion, it does not wrap around its own exclusion area and the impact of other exclusions on other exclusions - is controlled by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property as explained in the + is controlled by the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property as explained in the 'exclusions order' section.</p> <h3 class="heading settled" data-level="3.1" id="declaring-exclusions"><span class="secno">3.1. </span><span class="content"> Declaring exclusions</span><a class="self-link" href="#declaring-exclusions"></a></h3> <p>An element becomes an exclusion when its <a class="property css" data-link-type="property" href="#propdef-wrap-flow" id="ref-for-propdef-wrap-flow①">wrap-flow</a> property has a computed @@ -1093,7 +1092,7 @@ <h3 class="heading settled" data-level="3.3" id="propagation-of-exclusions"><spa words it is subject to the exclusions defined <a data-link-type="dfn" href="#outside" id="ref-for-outside①">outside</a> the element.</p> <p>Setting the <a class="property css" data-link-type="property" href="#propdef-wrap-through" id="ref-for-propdef-wrap-through②">wrap-through</a> property to <a class="css" data-link-type="maybe" href="#valdef-wrap-through-none" id="ref-for-valdef-wrap-through-none">none</a> prevents an element from inheriting its parent <a data-link-type="dfn" href="#wrapping-context" id="ref-for-wrapping-context③">wrapping context</a>. In other words, - exclusions defined <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-lists-3/#list-style-position-outside" id="ref-for-list-style-position-outside">outside</a> the element, have not effect on the element’s + exclusions defined <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside" id="ref-for-valdef-anchor-outside">outside</a> the element, have not effect on the element’s children layout.</p> <p class="note" role="note"> Exclusions defined by an element’s descendants still contribute to their containing block’s <a data-link-type="dfn" href="#wrapping-context" id="ref-for-wrapping-context④">wrapping context</a>. If that containing block is a @@ -1194,7 +1193,7 @@ <h3 class="heading settled" data-level="3.4" id="exclusions-order"><span class=" applied in reverse to the document order in which they are defined. The last exclusion appears on top of all other exclusion, thus it affects the inline flow content of all other preceding exclusions or elements descendant of the same containing block. - The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> property can be used to change the ordering of <a href="https://www.w3.org/TR/CSS2/visuren.html#choose-position">positioned</a> exclusion + The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> property can be used to change the ordering of <a href="https://www.w3.org/TR/CSS2/visuren.html#choose-position">positioned</a> exclusion boxes (see <span title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</span>). Statically positioned exclusions are not affected by the <span class="property" id="ref-for-propdef-z-index②">z-index</span> property and thus follow the painting order.</p> <div class="example" id="example-d42a15a1"> <a class="self-link" href="#example-d42a15a1"></a> @@ -1636,14 +1635,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> <li> - <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: + <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="f598742d">border box</span> + <li><span class="dfn-paneled" id="8ff3565c">outside</span> </ul> <li> - <a data-link-type="biblio">[CSS-LISTS-3]</a> defines the following terms: + <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="7f177e9a">outside</span> + <li><span class="dfn-paneled" id="f598742d">border box</span> </ul> <li> <a data-link-type="biblio">[CSS-PAGE-FLOATS-3]</a> defines the following terms: @@ -1662,20 +1661,24 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="358fd6ff">css-wide keywords</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="0570259e">float</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] + <dd>Tab Atkins Jr.; Elika Etemad; Ian Kilpatrick. <a href="https://drafts.csswg.org/css-anchor-position-1/"><cite>CSS Anchor Positioning</cite></a>. URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> - <dt id="biblio-css-lists-3">[CSS-LISTS-3] - <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-page-floats-3">[CSS-PAGE-FLOATS-3] <dd>Johannes Wilm. <a href="https://drafts.csswg.org/css-page-floats/"><cite>CSS Page Floats</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-floats/">https://drafts.csswg.org/css-page-floats/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -1961,12 +1964,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let dfnPanelData = { "0570259e": {"dfnID":"0570259e","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"3.1.1. \nThe wrap-flow property"},{"refs":[{"id":"ref-for-propdef-float\u2460"}],"title":"3.6.2. \nDifferences"}],"url":"https://drafts.csswg.org/css2/#propdef-float"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"3. \nExclusions"},{"refs":[{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"}],"title":"3.4. \nExclusions order"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"3.1.1. \nThe wrap-flow property"},{"refs":[{"id":"ref-for-comb-one\u2465"}],"title":"3.3.1. \nThe wrap-through Property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "7b16d6ab": {"dfnID":"7b16d6ab","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-float-none"}],"title":"2. \nTerminology"},{"refs":[{"id":"ref-for-valdef-float-none\u2460"}],"title":"3.1.1. \nThe wrap-flow property"}],"url":"https://drafts.csswg.org/css-page-floats-3/#valdef-float-none"}, -"7f177e9a": {"dfnID":"7f177e9a","dfnText":"outside","external":true,"refSections":[{"refs":[{"id":"ref-for-list-style-position-outside"}],"title":"3.3. \nPropagation of Exclusions"}],"url":"https://drafts.csswg.org/css-lists-3/#list-style-position-outside"}, +"8ff3565c": {"dfnID":"8ff3565c","dfnText":"outside","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-outside"}],"title":"3.3. \nPropagation of Exclusions"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside"}, "b7221005": {"dfnID":"b7221005","dfnText":"fixed","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-position-fixed"}],"title":"3.2. \nScope and effect of exclusions"},{"refs":[{"id":"ref-for-valdef-position-fixed\u2460"}],"title":"3.5.4. \nStep 2-A: resolve the position and size of exclusion boxes"}],"url":"https://drafts.csswg.org/css-position-3/#valdef-position-fixed"}, "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"}],"title":"3.2. \nScope and effect of exclusions"},{"refs":[{"id":"ref-for-propdef-position\u2460"}],"title":"3.5.4. \nStep 2-A: resolve the position and size of exclusion boxes"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"3. \nExclusions"},{"refs":[{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"}],"title":"3.4. \nExclusions order"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "content-area": {"dfnID":"content-area","dfnText":"Content area","external":false,"refSections":[{"refs":[{"id":"ref-for-content-area"}],"title":"2. \nTerminology"}],"url":"#content-area"}, "exclusion-area": {"dfnID":"exclusion-area","dfnText":"Exclusion area","external":false,"refSections":[{"refs":[{"id":"ref-for-exclusion-area"},{"id":"ref-for-exclusion-area\u2460"}],"title":"3.1.1. \nThe wrap-flow property"},{"refs":[{"id":"ref-for-exclusion-area\u2461"}],"title":"3.5.1. \nDescription"},{"refs":[{"id":"ref-for-exclusion-area\u2462"}],"title":"3.5.2. \nStep 1: resolve exclusion boxes belonging to each wrapping context"},{"refs":[{"id":"ref-for-exclusion-area\u2463"},{"id":"ref-for-exclusion-area\u2464"}],"title":"3.5.4. \nStep 2-A: resolve the position and size of exclusion boxes"},{"refs":[{"id":"ref-for-exclusion-area\u2465"}],"title":"3.5.5. \nStep 2-B: lay out containing block applying wrapping"},{"refs":[{"id":"ref-for-exclusion-area\u2466"}],"title":"3.6.3.2. \nEffect of exclusions on floats"}],"url":"#exclusion-area"}, "exclusion-box": {"dfnID":"exclusion-box","dfnText":"Exclusion box","external":false,"refSections":[{"refs":[{"id":"ref-for-exclusion-box"},{"id":"ref-for-exclusion-box\u2460"},{"id":"ref-for-exclusion-box\u2461"},{"id":"ref-for-exclusion-box\u2462"},{"id":"ref-for-exclusion-box\u2463"}],"title":"3.5.4. \nStep 2-A: resolve the position and size of exclusion boxes"},{"refs":[{"id":"ref-for-exclusion-box\u2464"}],"title":"3.5.5. \nStep 2-B: lay out containing block applying wrapping"}],"url":"#exclusion-box"}, @@ -2392,15 +2395,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#valdef-wrap-flow-start": {"export":true,"for_":["wrap-flow"],"level":"1","normative":true,"shortname":"css-exclusions","spec":"css-exclusions-1","status":"local","text":"start","type":"value","url":"#valdef-wrap-flow-start"}, "#valdef-wrap-through-none": {"export":true,"for_":["wrap-through"],"level":"1","normative":true,"shortname":"css-exclusions","spec":"css-exclusions-1","status":"local","text":"none","type":"value","url":"#valdef-wrap-through-none"}, "#wrapping-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-exclusions","spec":"css-exclusions-1","status":"local","text":"wrapping context","type":"dfn","url":"#wrapping-context"}, +"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside": {"export":true,"for_":["anchor()"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"outside","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside"}, "https://drafts.csswg.org/css-box-4/#border-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"border box","type":"dfn","url":"https://drafts.csswg.org/css-box-4/#border-box"}, -"https://drafts.csswg.org/css-lists-3/#list-style-position-outside": {"export":true,"for_":["list-style-position"],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"outside","type":"value","url":"https://drafts.csswg.org/css-lists-3/#list-style-position-outside"}, "https://drafts.csswg.org/css-page-floats-3/#valdef-float-none": {"export":true,"for_":["float"],"level":"3","normative":true,"shortname":"css-page-floats","spec":"css-page-floats-3","status":"current","text":"none","type":"value","url":"https://drafts.csswg.org/css-page-floats-3/#valdef-float-none"}, "https://drafts.csswg.org/css-position-3/#propdef-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"position","type":"property","url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "https://drafts.csswg.org/css-position-3/#valdef-position-fixed": {"export":true,"for_":["position"],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"fixed","type":"value","url":"https://drafts.csswg.org/css-position-3/#valdef-position-fixed"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "https://drafts.csswg.org/css-values-4/#css-wide-keywords": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"css-wide keywords","type":"dfn","url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.console.txt index da432fe9f8..a8632e40ed 100644 --- a/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.console.txt @@ -23,5 +23,6 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-color-5; type:value; for:lab(); text:a spec:css-color-5; type:value; for:oklab(); text:a ''A'' +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 49: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="49" data-dfn-type="dfn" id="declarative-custom-selector" data-lt="declarative custom selector" data-noexport="by-default" class="dfn-paneled">declarative custom selector</dfn> diff --git a/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.html b/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.html index 5cb178ff0a..94d1ca271a 100644 --- a/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-extensions-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Extensions</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-extensions" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -723,7 +722,7 @@ <h1 class="p-name no-ref" id="title">CSS Extensions</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -745,7 +744,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-extensions] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-extensions%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1172,7 +1171,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-selectors-4">[SELECTORS-4] @@ -1971,7 +1970,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; diff --git a/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.console.txt index 4106e7320b..33412c84e0 100644 --- a/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.console.txt @@ -29,7 +29,7 @@ LINE 1250: Couldn't find WPT test 'css/css-flexbox/css-flexbox-column-wrap-rever LINE 1250: Couldn't find WPT test 'css/css-flexbox/css-flexbox-column-wrap.html' - did you misspell something? LINE 1250: Couldn't find WPT test 'css/css-flexbox/css-flexbox-column.html' - did you misspell something? LINE 1337: Couldn't find WPT test 'css/css-flexbox/Flexible-order.html' - did you misspell something? -WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +WARNING: There are 1234 WPT tests underneath your path prefix 'css/css-flexbox/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) css/css-flexbox/abspos/abspos-autopos-htb-ltr.html css/css-flexbox/abspos/abspos-autopos-htb-rtl.html css/css-flexbox/abspos/abspos-autopos-vlr-ltr.html @@ -37,6 +37,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/abspos/abspos-autopos-vrl-ltr.html css/css-flexbox/abspos/abspos-autopos-vrl-rtl.html css/css-flexbox/abspos/abspos-descendent-001.html + css/css-flexbox/abspos/dynamic-align-self-001.html css/css-flexbox/abspos/flex-abspos-staticpos-align-content-001.html css/css-flexbox/abspos/flex-abspos-staticpos-align-self-001.html css/css-flexbox/abspos/flex-abspos-staticpos-align-self-002.html @@ -117,10 +118,26 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/align-items-008.html css/css-flexbox/align-items-009.html css/css-flexbox/align-items-baseline-column-horz.html + css/css-flexbox/align-items-baseline-column-vert-lr-flexbox-item.html + css/css-flexbox/align-items-baseline-column-vert-lr-grid-item.html + css/css-flexbox/align-items-baseline-column-vert-lr-items.html + css/css-flexbox/align-items-baseline-column-vert-lr-table-item.html + css/css-flexbox/align-items-baseline-column-vert-rl-flexbox-item.html + css/css-flexbox/align-items-baseline-column-vert-rl-grid-item.html + css/css-flexbox/align-items-baseline-column-vert-rl-items.html + css/css-flexbox/align-items-baseline-column-vert-rl-table-item.html css/css-flexbox/align-items-baseline-column-vert.html css/css-flexbox/align-items-baseline-overflow-non-visible.html css/css-flexbox/align-items-baseline-row-horz.html css/css-flexbox/align-items-baseline-row-vert.html + css/css-flexbox/align-items-baseline-vert-lr-column-horz-flexbox-item.html + css/css-flexbox/align-items-baseline-vert-lr-column-horz-grid-item.html + css/css-flexbox/align-items-baseline-vert-lr-column-horz-items.html + css/css-flexbox/align-items-baseline-vert-lr-column-horz-table-item.html + css/css-flexbox/align-items-baseline-vert-rl-column-horz-flexbox-item.html + css/css-flexbox/align-items-baseline-vert-rl-column-horz-grid-item.html + css/css-flexbox/align-items-baseline-vert-rl-column-horz-items.html + css/css-flexbox/align-items-baseline-vert-rl-column-horz-table-item.html css/css-flexbox/align-self-006.html css/css-flexbox/align-self-010.html css/css-flexbox/align-self-014.html @@ -151,7 +168,9 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/alignment/flex-align-baseline-table-001.html css/css-flexbox/alignment/flex-align-baseline-table-002.html css/css-flexbox/alignment/flex-align-baseline-table-003.html + css/css-flexbox/animation/discrete-no-interpolation.html css/css-flexbox/animation/flex-basis-composition.html + css/css-flexbox/animation/flex-basis-content-crash.html css/css-flexbox/animation/flex-basis-interpolation.html css/css-flexbox/animation/flex-grow-interpolation.html css/css-flexbox/animation/flex-shrink-interpolation.html @@ -172,13 +191,16 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/baseline-synthesis-002.html css/css-flexbox/baseline-synthesis-003.html css/css-flexbox/baseline-synthesis-004.html + css/css-flexbox/baseline-synthesis-vert-lr-line-under.html css/css-flexbox/box-sizing-001.html css/css-flexbox/box-sizing-min-max-sizes-001.html css/css-flexbox/break-nested-float-in-flex-item-001-print.html css/css-flexbox/break-nested-float-in-flex-item-002-print.html + css/css-flexbox/button-column-wrap-crash.html css/css-flexbox/canvas-contain-size.html css/css-flexbox/canvas-dynamic-change-001.html css/css-flexbox/change-column-flex-width.html + css/css-flexbox/column-flex-child-with-max-width.html css/css-flexbox/column-flex-child-with-overflow-scroll.html css/css-flexbox/column-intrinsic-size-aspect-ratio-crash.html css/css-flexbox/column-reverse-gap.html @@ -196,6 +218,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/dynamic-isize-change-002.html css/css-flexbox/dynamic-isize-change-003.html css/css-flexbox/dynamic-isize-change-004.html + css/css-flexbox/dynamic-orthogonal-flex-item.html css/css-flexbox/dynamic-stretch-change.html css/css-flexbox/fieldset-as-item-dynamic.html css/css-flexbox/fieldset-as-item-overflow.html @@ -245,6 +268,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/flex-aspect-ratio-img-row-014.html css/css-flexbox/flex-aspect-ratio-img-row-015.html css/css-flexbox/flex-aspect-ratio-img-row-016.html + css/css-flexbox/flex-aspect-ratio-img-row-017.html css/css-flexbox/flex-basis-001.html css/css-flexbox/flex-basis-002.html css/css-flexbox/flex-basis-003.html @@ -309,10 +333,15 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/flex-item-compressible-002.html css/css-flexbox/flex-item-contains-size-layout-001.html css/css-flexbox/flex-item-contains-strict.html + css/css-flexbox/flex-item-max-height-min-content.html + css/css-flexbox/flex-item-max-width-min-content.html + css/css-flexbox/flex-item-min-height-min-content.html + css/css-flexbox/flex-item-min-width-min-content.html css/css-flexbox/flex-item-transferred-sizes-padding-border-sizing.html css/css-flexbox/flex-item-transferred-sizes-padding-content-sizing.html css/css-flexbox/flex-item-vertical-align.html css/css-flexbox/flex-item-z-ordering-001.html + css/css-flexbox/flex-item-z-ordering-002.html css/css-flexbox/flex-lines/multi-line-wrap-reverse-column-reverse.html css/css-flexbox/flex-lines/multi-line-wrap-reverse-row-reverse.html css/css-flexbox/flex-lines/multi-line-wrap-with-column-reverse.html @@ -569,6 +598,11 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/flexbox-root-node-001a.html css/css-flexbox/flexbox-root-node-001b.html css/css-flexbox/flexbox-safe-overflow-position-001.html + css/css-flexbox/flexbox-safe-overflow-position-002.html + css/css-flexbox/flexbox-safe-overflow-position-003.html + css/css-flexbox/flexbox-safe-overflow-position-004.html + css/css-flexbox/flexbox-safe-overflow-position-005.html + css/css-flexbox/flexbox-safe-overflow-position-006.html css/css-flexbox/flexbox-single-line-clamp-1.html css/css-flexbox/flexbox-single-line-clamp-2.html css/css-flexbox/flexbox-single-line-clamp-3.html @@ -600,6 +634,12 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/flexbox-writing-mode-014.html css/css-flexbox/flexbox-writing-mode-015.html css/css-flexbox/flexbox-writing-mode-016.html + css/css-flexbox/flexbox-writing-mode-slr-row-mix.html + css/css-flexbox/flexbox-writing-mode-slr-rtl.html + css/css-flexbox/flexbox-writing-mode-slr.html + css/css-flexbox/flexbox-writing-mode-srl-row-mix.html + css/css-flexbox/flexbox-writing-mode-srl-rtl.html + css/css-flexbox/flexbox-writing-mode-srl.html css/css-flexbox/flexbox_align-content-center.html css/css-flexbox/flexbox_align-content-flexend.html css/css-flexbox/flexbox_align-content-flexstart.html @@ -858,6 +898,9 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/gap-016.html css/css-flexbox/gap-017.html css/css-flexbox/gap-018.html + css/css-flexbox/gap-019.html + css/css-flexbox/gap-020.html + css/css-flexbox/gap-021.html css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-content-center.html css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-content-flex-end.html css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-content-flex-start.html @@ -933,12 +976,14 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/getcomputedstyle/flexbox_computedstyle_order-invalid.html css/css-flexbox/getcomputedstyle/flexbox_computedstyle_order-negative.html css/css-flexbox/getcomputedstyle/flexbox_computedstyle_order.html + css/css-flexbox/grandchild-span-height.html css/css-flexbox/grid-flex-item-001.html css/css-flexbox/grid-flex-item-002.html css/css-flexbox/grid-flex-item-003.html css/css-flexbox/grid-flex-item-004.html css/css-flexbox/grid-flex-item-005.html css/css-flexbox/grid-flex-item-006.html + css/css-flexbox/grid-flex-item-007.html css/css-flexbox/height-percentage-with-dynamic-container-size.html css/css-flexbox/hittest-anonymous-box.html css/css-flexbox/hittest-before-pseudo.html @@ -967,6 +1012,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/inline-flex-frameset-main-axis-crash.html css/css-flexbox/inline-flex-min-content-height.html css/css-flexbox/inline-flex.html + css/css-flexbox/inline-flexbox-absurd-block-size-crash.html css/css-flexbox/inline-flexbox-vertical-rl-image-flexitem-crash-print.html css/css-flexbox/inline-flexbox-wrap-vertically-width-calculation.html css/css-flexbox/interactive/flexbox_interactive_break-after-column-item.html @@ -989,6 +1035,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/interactive/flexbox_interactive_flex-transitions.html css/css-flexbox/interactive/flexbox_interactive_order-transitions-2.html css/css-flexbox/interactive/flexbox_interactive_order-transitions.html + css/css-flexbox/intrinsic-size/auto-min-size-001.html css/css-flexbox/intrinsic-size/col-wrap-001.html css/css-flexbox/intrinsic-size/col-wrap-002.html css/css-flexbox/intrinsic-size/col-wrap-003.html @@ -1008,6 +1055,8 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/intrinsic-size/col-wrap-017.html css/css-flexbox/intrinsic-size/col-wrap-018.html css/css-flexbox/intrinsic-size/col-wrap-019.html + css/css-flexbox/intrinsic-size/col-wrap-020.html + css/css-flexbox/intrinsic-size/col-wrap-crash.html css/css-flexbox/intrinsic-size/row-001.html css/css-flexbox/intrinsic-size/row-002.html css/css-flexbox/intrinsic-size/row-003.html @@ -1016,6 +1065,8 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/intrinsic-size/row-006.html css/css-flexbox/intrinsic-size/row-007.html css/css-flexbox/intrinsic-size/row-008.html + css/css-flexbox/intrinsic-size/row-compat-001.html + css/css-flexbox/intrinsic-size/row-use-cases-001.html css/css-flexbox/intrinsic-size/row-wrap-001.html css/css-flexbox/intrinsic-width-orthogonal-writing-mode.html css/css-flexbox/item-with-max-height-and-scrollbar.html @@ -1026,6 +1077,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/justify-content-004.htm css/css-flexbox/justify-content-005.htm css/css-flexbox/justify-content-006.html + css/css-flexbox/justify-content-007.html css/css-flexbox/justify-content_center.html css/css-flexbox/justify-content_flex-end.html css/css-flexbox/justify-content_flex-start.html @@ -1036,6 +1088,8 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/layout-algorithm_algo-cross-line-002.html css/css-flexbox/layout-with-inline-svg-001.html css/css-flexbox/max-width-violation.html + css/css-flexbox/min-height-min-content-crash.html + css/css-flexbox/min-size-auto-overflow-clip.html css/css-flexbox/multiline-column-max-height.html css/css-flexbox/multiline-min-max.html css/css-flexbox/multiline-min-preferred-width.html @@ -1049,9 +1103,11 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/negative-margins-001.html css/css-flexbox/negative-overflow-002.html css/css-flexbox/negative-overflow.html + css/css-flexbox/nested-flex-image-loading-invalidates-intrinsic-sizes.html css/css-flexbox/nested-orthogonal-flexbox-relayout.html css/css-flexbox/order-001.htm css/css-flexbox/order-painting.html + css/css-flexbox/order/order-abs-children-painting-order-different-container.html css/css-flexbox/order/order-abs-children-painting-order.html css/css-flexbox/order/order-with-column-reverse.html css/css-flexbox/order/order-with-row-reverse.html @@ -1071,7 +1127,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/overflow-auto-007.html css/css-flexbox/overflow-auto-008.html css/css-flexbox/overflow-top-left.html - css/css-flexbox/padding-overflow-crash.html + css/css-flexbox/padding-overflow.html css/css-flexbox/parsing/flex-basis-computed.html css/css-flexbox/parsing/flex-basis-invalid.html css/css-flexbox/parsing/flex-basis-valid.html @@ -1127,6 +1183,8 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/percentage-max-width-cross-axis.html css/css-flexbox/percentage-padding-001.html css/css-flexbox/percentage-padding-002.html + css/css-flexbox/percentage-padding-003.html + css/css-flexbox/percentage-padding-004.html css/css-flexbox/percentage-size-quirks-002.html css/css-flexbox/percentage-size-quirks.html css/css-flexbox/percentage-size-subitems-001.html @@ -1144,6 +1202,8 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/relayout-image-load.html css/css-flexbox/relayout-input.html css/css-flexbox/remove-out-of-flow-child-crash.html + css/css-flexbox/remove-wrapped-001.html + css/css-flexbox/remove-wrapped-002.html css/css-flexbox/scrollbars-auto-min-content-sizing.html css/css-flexbox/scrollbars-auto.html css/css-flexbox/scrollbars-no-margin.html @@ -1168,6 +1228,7 @@ WARNING: There are 1173 WPT tests underneath your path prefix 'css/css-flexbox/' css/css-flexbox/svg-root-as-flex-item-005.html css/css-flexbox/svg-root-as-flex-item-006.html css/css-flexbox/synthesize-vrl-baseline.html + css/css-flexbox/table-as-flex-item-max-content.html css/css-flexbox/table-as-item-auto-min-width.html css/css-flexbox/table-as-item-change-cell.html css/css-flexbox/table-as-item-cross-size.html @@ -1211,66 +1272,10 @@ LINE 1359: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1557: Image doesn't exist, so I couldn't determine its width and height: 'images/multiline-no-flex.svg' LINE 1596: Image doesn't exist, so I couldn't determine its width and height: 'images/multiline-flex.svg' LINE ~3776: The biblio refs [[css-sizing-3]] and [[CSS-SIZING-3]] are both aliases of the same base reference [[CSS-SIZING-3]]. Please choose one name and use it consistently. -LINE ~470: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~470: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~470: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~470: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~500: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~500: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~500: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~500: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~957: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~957: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE 1032: No 'property' refs found for 'min-width' with spec 'css2'. -''min-width: 12em'' -LINE ~1838: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1838: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~1939: No 'property' refs found for 'margin' with spec 'css2'. -'margin' -LINE ~2264: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~2264: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~2264: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~2264: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~3838: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~3838: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~3845: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~3845: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~4373: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~4373: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~4380: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~4380: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~4792: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~4792: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~4950: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~4950: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' +LINE 607: No 'dfn' refs found for 'text runs'. +<a bs-line-number="607" data-link-type="dfn" data-lt="text runs">text runs</a> +LINE 609: No 'dfn' refs found for 'text runs'. +<a bs-line-number="609" data-link-type="dfn" data-lt="text runs">text runs</a> LINE 5362: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 3245: Couldn't find target anchor status: <a bs-line-number="3245" href="#status">provide feedback to the CSS Working Group</a> diff --git a/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.html b/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.html index f0901eab67..986d8b1180 100644 --- a/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-flexbox-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Flexible Box Layout Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-flexbox-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1286,7 +1285,7 @@ <h1 class="p-name no-ref" id="title">CSS Flexible Box Layout Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1308,7 +1307,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-flexbox] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-flexbox%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1657,7 +1656,7 @@ <h2 class="heading settled" data-level="2" id="box-model"><span class="secno">2. Its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="main-size-property">main size property</dfn> is thus either its <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a> or <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a> property, whichever is in the <span id="ref-for-main-dimension①">main dimension</span>. - Similarly, its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="min main size property" id="min-main-size-property">min</dfn> and <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="max main size property" id="max-main-size-property">max main size properties</dfn> are its <a class="property css" data-link-type="property">min-width</a>/<span class="property">max-width</span> or <span class="property">min-height</span>/<span class="property">max-height</span> properties, + Similarly, its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="min main size property" id="min-main-size-property">min</dfn> and <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="max main size property" id="max-main-size-property">max main size properties</dfn> are its <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a> properties, whichever is in the <span id="ref-for-main-dimension②">main dimension</span>, and determine its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="min main size" id="min-main-size">min</dfn>/<dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="max-main-size">max main size</dfn>. </dl> @@ -1679,7 +1678,7 @@ <h2 class="heading settled" data-level="2" id="box-model"><span class="secno">2. Its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="cross-size-property">cross size property</dfn> is thus either its <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width①">width</a> or <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①">height</a> property, whichever is in the <span id="ref-for-cross-dimension①">cross dimension</span>. - Similarly, its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="min cross size property" id="min-cross-size-property">min</dfn> and <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="max cross size property" id="max-cross-size-property">max cross size properties</dfn> are its <a class="property css" data-link-type="property">min-width</a>/<span class="property">max-width</span> or <span class="property">min-height</span>/<span class="property">max-height</span> properties, + Similarly, its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="min cross size property" id="min-cross-size-property">min</dfn> and <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="max cross size property" id="max-cross-size-property">max cross size properties</dfn> are its <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width①">max-width</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a> properties, whichever is in the <span id="ref-for-cross-dimension②">cross dimension</span>, and determine its <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="min cross size" id="min-cross-size">min</dfn>/<dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="max-cross-size">max cross size</dfn>. </dl> @@ -1741,8 +1740,8 @@ <h2 class="heading settled" data-level="3" id="flex-containers"><span class="sec <h2 class="heading settled" data-level="4" id="flex-items"><span class="secno">4. </span><span class="content"> Flex Items</span><a class="self-link" href="#flex-items"></a></h2> <p>Loosely speaking, the <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item⑤">flex items</a> of a <a data-link-type="dfn" href="#flex-container" id="ref-for-flex-container⑨">flex container</a> are boxes representing its in-flow contents.</p> <p>Each in-flow child of a <a data-link-type="dfn" href="#flex-container" id="ref-for-flex-container①⓪">flex container</a> becomes a <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item⑥">flex item</a>, - and each contiguous sequence of child <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text runs</a> is wrapped in an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> <span id="ref-for-flex-item⑦">flex item</span>. - However, if the entire sequence of child <span id="ref-for-text-run①">text runs</span> contains only <a href="https://www.w3.org/TR/CSS2/text.html#white-space-prop">white space</a> (i.e. characters that can be affected by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> property) + and each contiguous sequence of child <a data-link-type="dfn">text runs</a> is wrapped in an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> <span id="ref-for-flex-item⑦">flex item</span>. + However, if the entire sequence of child <span>text runs</span> contains only <a href="https://www.w3.org/TR/CSS2/text.html#white-space-prop">white space</a> (i.e. characters that can be affected by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> property) it is instead not rendered (just as if its <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-nodes" id="ref-for-text-nodes">text nodes</a> were <span class="css">display:none</span>).</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> @@ -1862,7 +1861,7 @@ <h3 class="heading settled" data-level="4.2" id="item-margins"><span class="secn <h3 class="heading settled" data-level="4.3" id="painting"><span class="secno">4.3. </span><span class="content"> Flex Item Z-Ordering</span><a class="self-link" href="#painting"></a></h3> <p><a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item①⑧">Flex items</a> paint exactly the same as inline blocks <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, except that <a class="property css" data-link-type="property" href="#propdef-order" id="ref-for-propdef-order②">order</a>-modified document order is used in place of raw document order, - and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> values other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context + and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> values other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a> (behaving exactly as if <span class="property" id="ref-for-propdef-position①">position</span> were <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-relative" id="ref-for-valdef-position-relative">relative</a>).</p> <p class="note" role="note"><span class="marker">Note:</span> Descendants that are positioned outside a flex item still participate in any stacking context established by the flex item.</p> @@ -1980,7 +1979,7 @@ <h3 class="heading settled" data-level="4.4" id="visibility-collapse"><span clas <h3 class="heading settled" data-level="4.5" id="min-size-auto"><span class="secno">4.5. </span><span class="content"> Automatic Minimum Size of Flex Items</span><a class="self-link" href="#min-size-auto"></a></h3> <p class="note" role="note"><span class="marker">Note:</span> The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> keyword, representing an <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#automatic-minimum-size" id="ref-for-automatic-minimum-size">automatic minimum size</a>, - is the new initial value of the <a class="property css" data-link-type="property">min-width</a> and <span class="property">min-height</span> properties. + is the new initial value of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height②">min-height</a> properties. The keyword was previously defined in this specification, but is now defined in the <a data-link-type="biblio" href="#biblio-css-sizing-3" title="CSS Box Sizing Module Level 3">CSS Sizing</a> module.</p> <p>To provide a more reasonable default <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width">minimum size</a> for <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item①⑨">flex items</a>, @@ -2026,7 +2025,7 @@ <h3 class="heading settled" data-level="4.5" id="min-size-auto"><span class="sec and helps prevent content from overlapping or spilling outside its container, in some cases it is not: <p>In particular, if flex sizing is being used for a major content area of a document, - it is better to set an explicit font-relative minimum width such as <a class="css" data-link-type="propdesc">min-width: 12em</a>. + it is better to set an explicit font-relative minimum width such as <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width③">min-width: 12em</a>. A content-based minimum width could result in a large table or large image stretching the size of the entire content area into an overflow zone, and thereby making lines of text gratuitously long and hard to read.</p> @@ -2729,7 +2728,7 @@ <h4 class="heading settled" data-level="7.1.1" id="flex-common"><span class="sec </dl> <p>By default, flex items won’t shrink below their minimum content size (the length of the longest word or fixed-size element). - To change this, set the <a class="property css" data-link-type="property">min-width</a> or <span class="property">min-height</span> property. + To change this, set the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width④">min-width</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height③">min-height</a> property. (See <a href="#min-size-auto">§ 4.5 Automatic Minimum Size of Flex Items</a>.)</p> <h3 class="heading settled" data-level="7.2" id="flex-components"><span class="secno">7.2. </span><span class="content"> Components of Flexibility</span><a class="self-link" href="#flex-components"></a></h3> <p>Individual components of flexibility can be controlled by independent longhand properties.</p> @@ -2862,7 +2861,7 @@ <h2 class="heading settled" data-level="8" id="alignment"><span class="secno">8. <p>After a flex container’s contents have finished their flexing and the dimensions of all flex items are finalized, they can then be aligned within the flex container.</p> - <p>The <a class="property css" data-link-type="property">margin</a> properties can be used to align items in a manner similar to, but more powerful than, what margins can do in block layout. <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item④⑦">Flex items</a> also respect the alignment properties from <a href="https://www.w3.org/TR/css3-align/">CSS Box Alignment</a>, + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin">margin</a> properties can be used to align items in a manner similar to, but more powerful than, what margins can do in block layout. <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item④⑦">Flex items</a> also respect the alignment properties from <a href="https://www.w3.org/TR/css3-align/">CSS Box Alignment</a>, which allow easy keyword-based alignment of items in both the <a data-link-type="dfn" href="#main-axis" id="ref-for-main-axis①⓪">main axis</a> and <a data-link-type="dfn" href="#cross-axis" id="ref-for-cross-axis⑥">cross axis</a>. These properties make many common types of alignment trivial, including some things that were very difficult in CSS 2.1, @@ -3191,7 +3190,7 @@ <h3 class="heading settled" data-level="8.3" id="align-items-property"><span cla and neither of the <a data-link-type="dfn" href="#cross-axis" id="ref-for-cross-axis①⓪">cross-axis</a> margins are <span class="css">auto</span>, the <span id="ref-for-flex-item⑧④">flex item</span> is <dfn class="dfn-paneled" data-dfn-for data-dfn-type="dfn" data-noexport id="stretched">stretched</dfn>. Its used value is the length necessary to make the <a data-link-type="dfn" href="#cross-size" id="ref-for-cross-size⑨">cross size</a> of the item’s margin box as close to the same size as the line as possible, - while still respecting the constraints imposed by <a class="property css" data-link-type="property">min-height</a>/<span class="property">min-width</span>/<span class="property">max-height</span>/<span class="property">max-width</span>. + while still respecting the constraints imposed by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height④">min-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑤">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height②">max-height</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width</a>. <p class="note" role="note"><span class="marker">Note:</span> If the flex container’s height is constrained this value may cause the contents of the <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item⑧⑤">flex item</a> to overflow the item.</p> <p>The <a data-link-type="dfn" href="#cross-start" id="ref-for-cross-start⑦">cross-start</a> margin edge of the <a data-link-type="dfn" href="#flex-item" id="ref-for-flex-item⑧⑥">flex item</a> is placed flush with the <span id="ref-for-cross-start⑧">cross-start</span> edge of the line.</p> @@ -4303,10 +4302,10 @@ <h3 class="heading settled" id="changes-20171016"><span class="content"> Changes see <a href="#algo-main-item">details</a> in <a href="#layout-algorithm">§ 9 Flex Layout Algorithm</a>.)</ins> </p> </blockquote> - <li id="change-2017-min-size-auto"><a class="self-link" href="#change-2017-min-size-auto"></a> Moved the definition of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①①">auto</a> keyword for <a class="property css" data-link-type="property">min-width</a> and <span class="property">min-height</span> to <a data-link-type="biblio" href="#biblio-css-sizing-3" title="CSS Box Sizing Module Level 3">[CSS-SIZING-3]</a>. + <li id="change-2017-min-size-auto"><a class="self-link" href="#change-2017-min-size-auto"></a> Moved the definition of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①①">auto</a> keyword for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑥">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height⑤">min-height</a> to <a data-link-type="biblio" href="#biblio-css-sizing-3" title="CSS Box Sizing Module Level 3">[CSS-SIZING-3]</a>. The definition of what an <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#automatic-minimum-size" id="ref-for-automatic-minimum-size③">automatic minimum size</a> for flex items is remains here. (<a href="https://github.com/w3c/csswg-drafts/issues/1920">Issue 1920</a>, <a href="https://github.com/w3c/csswg-drafts/issues/2103">Issue 2103</a>) - <li id="change-2017-min-size-auto-computation"><a class="self-link" href="#change-2017-min-size-auto-computation"></a> Altered the computation of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①②">auto</a> in <a class="property css" data-link-type="property">min-width</a> and <span class="property">min-height</span> such that it always computes to itself—​although its <a data-link-type="dfn" href="https://drafts.csswg.org/cssom-1/#resolved-value" id="ref-for-resolved-value">resolved value</a> remains zero on CSS2 display types. + <li id="change-2017-min-size-auto-computation"><a class="self-link" href="#change-2017-min-size-auto-computation"></a> Altered the computation of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①②">auto</a> in <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑦">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height⑥">min-height</a> such that it always computes to itself—​although its <a data-link-type="dfn" href="https://drafts.csswg.org/cssom-1/#resolved-value" id="ref-for-resolved-value">resolved value</a> remains zero on CSS2 display types. (<a href="https://github.com/w3c/csswg-drafts/issues/2230">Issue 2230</a>, <a href="https://github.com/w3c/csswg-drafts/issues/2248">Issue 2248</a>) <li id="change-2017-used-min-sizes"><a class="self-link" href="#change-2017-used-min-sizes"></a> Clarified that min/max clamping is according to the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value③">used value</a> of the min/max size properties—​which in the case of tables with <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-table-layout-auto" id="ref-for-valdef-table-layout-auto">auto</a> layout, is floored by the table’s <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-content" id="ref-for-min-content⑦">min-content size</a>. @@ -4812,13 +4811,13 @@ <h4 class="heading settled" id="change-201505-substantive"><span class="content" <blockquote> <p> <del>In order to prevent cycling sizing, - the <a class="css" data-link-type="maybe" href="#valdef-align-items-auto" id="ref-for-valdef-align-items-auto⑥">auto</a> value of <a class="property css" data-link-type="property">min-height</a> and <span class="property">max-height</span> does not factor into the percentage size resolution of the box’s contents. + the <a class="css" data-link-type="maybe" href="#valdef-align-items-auto" id="ref-for-valdef-align-items-auto⑥">auto</a> value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height⑦">min-height</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height③">max-height</a> does not factor into the percentage size resolution of the box’s contents. For example, a percentage-height block whose flex item parent has <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①⑧">height: 120em; min-height: auto</a> will size itself against <span class="css" id="ref-for-propdef-height①⑨">height: 120em</span> regardless of the impact - that <span class="property">min-height</span> might have on the used size of the flex item.</del> + that <span class="property" id="ref-for-propdef-min-height⑧">min-height</span> might have on the used size of the flex item.</del> </p> <p> <ins>Although this may require an additional layout pass to re-resolve percentages in some cases, - the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①⑦">auto</a> value of <a class="property css" data-link-type="property">min-width</a> and <span class="property">min-height</span> (like the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content" id="ref-for-valdef-width-min-content②">min-content</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content" id="ref-for-valdef-width-max-content③">max-content</a>, and <span class="css">fit-content</span> values defined in <a data-link-type="biblio" href="#biblio-css-sizing-3" title="CSS Box Sizing Module Level 3">[CSS-SIZING-3]</a>) + the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①⑦">auto</a> value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑧">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height⑨">min-height</a> (like the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content" id="ref-for-valdef-width-min-content②">min-content</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content" id="ref-for-valdef-width-max-content③">max-content</a>, and <span class="css">fit-content</span> values defined in <a data-link-type="biblio" href="#biblio-css-sizing-3" title="CSS Box Sizing Module Level 3">[CSS-SIZING-3]</a>) does not prevent the resolution of percentage sizes within the item.</ins> </p> </blockquote> @@ -5060,7 +5059,7 @@ <h4 class="heading settled" id="change-201409-substantive"><span class="content" <ins>, see <a href="#pagination">§ 10 Fragmenting Flex Layout</a>)</ins> . [...] - <del>A break is forced wherever the CSS2.1 <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> or the CSS3 <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before⑥">break-before</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-break-after" id="ref-for-propdef-break-after⑤">break-after</a> <a data-link-type="biblio" href="#biblio-css3-break" title="CSS Fragmentation Module Level 3">[CSS3-BREAK]</a> properties specify a fragmentation break.</del> + <del>A break is forced wherever the CSS2.1 <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> or the CSS3 <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before⑥">break-before</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-break-after" id="ref-for-propdef-break-after⑤">break-after</a> <a data-link-type="biblio" href="#biblio-css3-break" title="CSS Fragmentation Module Level 3">[CSS3-BREAK]</a> properties specify a fragmentation break.</del> </p> </blockquote> <li id="change-201409-inner-base-size"> @@ -5197,9 +5196,9 @@ <h4 class="heading settled" id="change-201403-substantive"><span class="content" This change was later reverted with an <a href="#change-2015-min-auto-intrinsic-percentages">opposite definition</a>. <blockquote> <p>In order to prevent cycling sizing, - the <a class="css" data-link-type="maybe" href="#valdef-align-items-auto" id="ref-for-valdef-align-items-auto①①">auto</a> value of <a class="property css" data-link-type="property">min-height</a> and <span class="property">max-height</span> does not factor into the percentage size resolution of the box’s contents. + the <a class="css" data-link-type="maybe" href="#valdef-align-items-auto" id="ref-for-valdef-align-items-auto①①">auto</a> value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①⓪">min-height</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height④">max-height</a> does not factor into the percentage size resolution of the box’s contents. For example, a percentage-height block whose flex item parent has <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height②①">height: 120em; min-height: auto</a> will size itself against <span class="css" id="ref-for-propdef-height②②">height: 120em</span> regardless of the impact - that <span class="property">min-height</span> might have on the used size of the flex item. </p> + that <span class="property" id="ref-for-propdef-min-height①①">min-height</span> might have on the used size of the flex item. </p> </blockquote> <li id="change-201403-flex-basis-auto"><a class="self-link" href="#change-201403-flex-basis-auto"></a> Introduced extra <span class="css">main-size</span> keyword to <a class="property css" data-link-type="property" href="#propdef-flex-basis" id="ref-for-propdef-flex-basis②⑥">flex-basis</a> so that “lookup from main-size property” and “automatic sizing” behaviors could each be explicitly specified. @@ -5331,7 +5330,7 @@ <h4 class="heading settled" id="changes-2014-substantive"><span class="content"> <p>The following significant changes were made since the <a href="https://www.w3.org/TR/2012/CR-css3-flexbox-20120918/">18 September 2012 Candidate Recommendation</a>:</p> <ul> <li id="change-2012-min-width"> - <a class="self-link" href="#change-2012-min-width"></a> Changed the behavior of the new <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto②⓪">auto</a> initial value of <a class="property css" data-link-type="property">min-width</a>/<span class="property">min-height</span> to + <a class="self-link" href="#change-2012-min-width"></a> Changed the behavior of the new <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto②⓪">auto</a> initial value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑨">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①②">min-height</a> to <ul> <li>Take into account whether <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow⑤">overflow</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible" id="ref-for-valdef-overflow-visible③">visible</a>, since when <span class="property" id="ref-for-propdef-overflow⑥">overflow</span> is explicitly handled, it is confusing (and unnecessary) @@ -6027,7 +6026,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d7fa3e1c">inline-level</span> <li><span class="dfn-paneled" id="a8485ff4">replaced element</span> <li><span class="dfn-paneled" id="b30820a7">text node</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> <li><span class="dfn-paneled" id="12f8fb07">visibility</span> </ul> <li> @@ -6144,6 +6142,18 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5515c98f">margin</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -6151,9 +6161,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d332e4ec">auto <small>(for z-index)</small></span> <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS3-BREAK]</a> defines the following terms: @@ -6185,13 +6192,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -6465,7 +6472,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <details class="mdn-anno unpositioned" data-anno-for="flex-grow-property"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow" title="The flex-grow CSS property sets the flex grow factor of a flex item&apos;s main size.">flex-grow</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow" title="The flex-grow CSS property sets the flex grow factor, which specifies how much of the flex container&apos;s remaining space should be assigned to the flex item&apos;s main size.">flex-grow</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="chrome yes"><span>Chrome</span><span>29+</span></span> @@ -6761,7 +6768,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"}],"title":"7.2.3. \nThe flex-basis property"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "18d57a4b": {"dfnID":"18d57a4b","dfnText":"max-content (for width)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-width-max-content"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-valdef-width-max-content\u2460"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-valdef-width-max-content\u2461"},{"id":"ref-for-valdef-width-max-content\u2462"}],"title":"\nSubstantive Changes and Bugfixes"},{"refs":[{"id":"ref-for-valdef-width-max-content\u2463"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, "1a548a6a": {"dfnID":"1a548a6a","dfnText":"blockify","external":true,"refSections":[{"refs":[{"id":"ref-for-blockify"}],"title":"4. \nFlex Items"}],"url":"https://drafts.csswg.org/css-display-4/#blockify"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"},{"id":"ref-for-text-run\u2460"}],"title":"4. \nFlex Items"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "20747766": {"dfnID":"20747766","dfnText":"synthesized baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-synthesize-baseline"}],"title":"8.3. \nCross-axis Alignment: the align-items and align-self properties"},{"refs":[{"id":"ref-for-synthesize-baseline\u2460"},{"id":"ref-for-synthesize-baseline\u2461"},{"id":"ref-for-synthesize-baseline\u2462"},{"id":"ref-for-synthesize-baseline\u2463"}],"title":"8.5. \nFlex Container Baselines"}],"url":"https://drafts.csswg.org/css-align-3/#synthesize-baseline"}, "214c6f37": {"dfnID":"214c6f37","dfnText":"first formatted line","external":true,"refSections":[{"refs":[{"id":"ref-for-first-formatted-line"}],"title":"3. \nFlex Containers: the flex and inline-flex display values"}],"url":"https://drafts.csswg.org/css-pseudo-4/#first-formatted-line"}, "26a40c98": {"dfnID":"26a40c98","dfnText":"max-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-max-content"}],"title":"7.1. \nThe flex Shorthand"},{"refs":[{"id":"ref-for-max-content\u2460"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-max-content\u2461"}],"title":"9.9. \nIntrinsic Sizes"},{"refs":[{"id":"ref-for-max-content\u2462"},{"id":"ref-for-max-content\u2463"},{"id":"ref-for-max-content\u2464"}],"title":"9.9.1. \nFlex Container Intrinsic Main Sizes"},{"refs":[{"id":"ref-for-max-content\u2465"},{"id":"ref-for-max-content\u2466"}],"title":"9.9.2. \nFlex Container Intrinsic Cross Sizes"},{"refs":[{"id":"ref-for-max-content\u2467"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-max-content\u2468"},{"id":"ref-for-max-content\u2460\u24ea"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-max-content\u2460\u2460"},{"id":"ref-for-max-content\u2460\u2461"},{"id":"ref-for-max-content\u2460\u2462"},{"id":"ref-for-max-content\u2460\u2463"},{"id":"ref-for-max-content\u2460\u2464"},{"id":"ref-for-max-content\u2460\u2465"},{"id":"ref-for-max-content\u2460\u2466"},{"id":"ref-for-max-content\u2460\u2467"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#max-content"}, @@ -6776,6 +6782,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "37c3d179": {"dfnID":"37c3d179","dfnText":"block-end","external":true,"refSections":[{"refs":[{"id":"ref-for-block-end"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-end"}, "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"}],"title":"4.2. \nFlex Item Margins and Paddings"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"},{"id":"ref-for-propdef-min-height\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-min-height\u2461"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-propdef-min-height\u2462"}],"title":"7.1.1. \nBasic Values of flex"},{"refs":[{"id":"ref-for-propdef-min-height\u2463"}],"title":"8.3. \nCross-axis Alignment: the align-items and align-self properties"},{"refs":[{"id":"ref-for-propdef-min-height\u2464"},{"id":"ref-for-propdef-min-height\u2465"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-propdef-min-height\u2466"},{"id":"ref-for-propdef-min-height\u2467"},{"id":"ref-for-propdef-min-height\u2468"},{"id":"ref-for-propdef-min-height\u2460\u24ea"},{"id":"ref-for-propdef-min-height\u2460\u2460"},{"id":"ref-for-propdef-min-height\u2460\u2461"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3da47525": {"dfnID":"3da47525","dfnText":"auto (for table-layout)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-table-layout-auto"}],"title":"\nChanges since the 16 October 2017 CR"}],"url":"https://drafts.csswg.org/css2/#valdef-table-layout-auto"}, "3f0db204": {"dfnID":"3f0db204","dfnText":"min-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"},{"id":"ref-for-min-content\u2460"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-min-content\u2461"}],"title":"9.9.1. \nFlex Container Intrinsic Main Sizes"},{"refs":[{"id":"ref-for-min-content\u2462"},{"id":"ref-for-min-content\u2463"}],"title":"9.9.2. \nFlex Container Intrinsic Cross Sizes"},{"refs":[{"id":"ref-for-min-content\u2464"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-min-content\u2465"},{"id":"ref-for-min-content\u2466"},{"id":"ref-for-min-content\u2467"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-min-content\u2468"},{"id":"ref-for-min-content\u2460\u24ea"},{"id":"ref-for-min-content\u2460\u2460"},{"id":"ref-for-min-content\u2460\u2461"},{"id":"ref-for-min-content\u2460\u2462"},{"id":"ref-for-min-content\u2460\u2463"},{"id":"ref-for-min-content\u2460\u2464"},{"id":"ref-for-min-content\u2460\u2465"},{"id":"ref-for-min-content\u2460\u2466"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "40060954": {"dfnID":"40060954","dfnText":"fragmentation container","external":true,"refSections":[{"refs":[{"id":"ref-for-fragmentation-container"},{"id":"ref-for-fragmentation-container\u2460"}],"title":"10. \nFragmenting Flex Layout"}],"url":"https://drafts.csswg.org/css-break-4/#fragmentation-container"}, @@ -6787,14 +6794,16 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "4fe61159": {"dfnID":"4fe61159","dfnText":"resolved value","external":true,"refSections":[{"refs":[{"id":"ref-for-resolved-value"}],"title":"\nChanges since the 16 October 2017 CR"}],"url":"https://drafts.csswg.org/cssom-1/#resolved-value"}, "513590d3": {"dfnID":"513590d3","dfnText":"min-content (for width)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-width-min-content"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-valdef-width-min-content\u2460"},{"id":"ref-for-valdef-width-min-content\u2461"},{"id":"ref-for-valdef-width-min-content\u2462"},{"id":"ref-for-valdef-width-min-content\u2463"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"7.1. \nThe flex Shorthand"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"4.3. \nFlex Item Z-Ordering"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"5515c98f": {"dfnID":"5515c98f","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"8. \nAlignment"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, "571aeab5": {"dfnID":"571aeab5","dfnText":"static position","external":true,"refSections":[{"refs":[{"id":"ref-for-static-position"},{"id":"ref-for-static-position\u2460"},{"id":"ref-for-static-position\u2461"},{"id":"ref-for-static-position\u2462"},{"id":"ref-for-static-position\u2463"},{"id":"ref-for-static-position\u2464"},{"id":"ref-for-static-position\u2465"},{"id":"ref-for-static-position\u2466"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-position-3/#static-position"}, "5bc3d0ec": {"dfnID":"5bc3d0ec","dfnText":"text-decoration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration"}],"title":"10. \nFragmenting Flex Layout"},{"refs":[{"id":"ref-for-propdef-text-decoration\u2460"}],"title":"\nChanges since the 16 October 2017 CR"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "6501e5b3": {"dfnID":"6501e5b3","dfnText":"white-space","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-white-space"}],"title":"4. \nFlex Items"},{"refs":[{"id":"ref-for-propdef-white-space\u2460"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-white-space"}, "65a738ee": {"dfnID":"65a738ee","dfnText":"definite","external":true,"refSections":[{"refs":[{"id":"ref-for-definite\u2460\u2462"}],"title":"9.8. \nDefinite and Indefinite Sizes"}],"url":"https://drafts.csswg.org/css-sizing-3/#definite"}, "668e27c9": {"dfnID":"668e27c9","dfnText":"preferred size","external":true,"refSections":[{"refs":[{"id":"ref-for-preferred-size"},{"id":"ref-for-preferred-size\u2460"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-preferred-size\u2461"}],"title":"9.8. \nDefinite and Indefinite Sizes"},{"refs":[{"id":"ref-for-preferred-size\u2462"},{"id":"ref-for-preferred-size\u2463"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-preferred-size\u2464"},{"id":"ref-for-preferred-size\u2465"}],"title":"\nChanges since the 16 October 2017 CR"}],"url":"https://drafts.csswg.org/css-sizing-3/#preferred-size"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-height\u2461"}],"title":"4. \nFlex Items"},{"refs":[{"id":"ref-for-propdef-height\u2462"},{"id":"ref-for-propdef-height\u2463"},{"id":"ref-for-propdef-height\u2464"}],"title":"7.1. \nThe flex Shorthand"},{"refs":[{"id":"ref-for-propdef-height\u2465"},{"id":"ref-for-propdef-height\u2466"},{"id":"ref-for-propdef-height\u2467"}],"title":"7.1.1. \nBasic Values of flex"},{"refs":[{"id":"ref-for-propdef-height\u2468"}],"title":"7.2.3. \nThe flex-basis property"},{"refs":[{"id":"ref-for-propdef-height\u2460\u24ea"}],"title":"9.9.1. \nFlex Container Intrinsic Main Sizes"},{"refs":[{"id":"ref-for-propdef-height\u2460\u2460"},{"id":"ref-for-propdef-height\u2460\u2461"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-propdef-height\u2460\u2462"},{"id":"ref-for-propdef-height\u2460\u2463"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-propdef-height\u2460\u2464"},{"id":"ref-for-propdef-height\u2460\u2465"},{"id":"ref-for-propdef-height\u2460\u2466"},{"id":"ref-for-propdef-height\u2460\u2467"},{"id":"ref-for-propdef-height\u2460\u2468"},{"id":"ref-for-propdef-height\u2461\u24ea"},{"id":"ref-for-propdef-height\u2461\u2460"},{"id":"ref-for-propdef-height\u2461\u2461"},{"id":"ref-for-propdef-height\u2461\u2462"},{"id":"ref-for-propdef-height\u2461\u2463"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6dc3914f": {"dfnID":"6dc3914f","dfnText":"min-content constraint","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content-constraint"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-min-content-constraint\u2460"}],"title":"9.9.2. \nFlex Container Intrinsic Cross Sizes"},{"refs":[{"id":"ref-for-min-content-constraint\u2461"},{"id":"ref-for-min-content-constraint\u2462"},{"id":"ref-for-min-content-constraint\u2463"},{"id":"ref-for-min-content-constraint\u2464"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content-constraint"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"3. \nFlex Containers: the flex and inline-flex display values"},{"refs":[{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"},{"refs":[{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"5.2. \nFlex Line Wrapping: the flex-wrap property"},{"refs":[{"id":"ref-for-comb-one\u2465"}],"title":"7.1. \nThe flex Shorthand"},{"refs":[{"id":"ref-for-comb-one\u2466"}],"title":"7.2.3. \nThe flex-basis property"},{"refs":[{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"}],"title":"8.2. \nAxis Alignment: the justify-content property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"}],"title":"8.3. \nCross-axis Alignment: the align-items and align-self properties"},{"refs":[{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"}],"title":"8.4. \nPacking Flex Lines: the align-content property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "70c9f859": {"dfnID":"70c9f859","dfnText":"<integer>","external":true,"refSections":[{"refs":[{"id":"ref-for-integer-value"},{"id":"ref-for-integer-value\u2460"}],"title":"5.4. \nDisplay Order: the order property"}],"url":"https://drafts.csswg.org/css-values-4/#integer-value"}, @@ -6810,7 +6819,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-width\u2461"}],"title":"4. \nFlex Items"},{"refs":[{"id":"ref-for-propdef-width\u2462"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-propdef-width\u2463"},{"id":"ref-for-propdef-width\u2464"},{"id":"ref-for-propdef-width\u2465"},{"id":"ref-for-propdef-width\u2466"}],"title":"7.1. \nThe flex Shorthand"},{"refs":[{"id":"ref-for-propdef-width\u2467"},{"id":"ref-for-propdef-width\u2468"},{"id":"ref-for-propdef-width\u2460\u24ea"}],"title":"7.1.1. \nBasic Values of flex"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2460"},{"id":"ref-for-propdef-width\u2460\u2461"},{"id":"ref-for-propdef-width\u2460\u2462"},{"id":"ref-for-propdef-width\u2460\u2463"}],"title":"7.2.3. \nThe flex-basis property"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2464"}],"title":"9.9.1. \nFlex Container Intrinsic Main Sizes"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2465"},{"id":"ref-for-propdef-width\u2460\u2466"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2467"},{"id":"ref-for-propdef-width\u2460\u2468"},{"id":"ref-for-propdef-width\u2461\u24ea"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-propdef-width\u2461\u2460"},{"id":"ref-for-propdef-width\u2461\u2461"},{"id":"ref-for-propdef-width\u2461\u2462"},{"id":"ref-for-propdef-width\u2461\u2465"},{"id":"ref-for-propdef-width\u2461\u2466"},{"id":"ref-for-propdef-width\u2461\u2467"},{"id":"ref-for-propdef-width\u2461\u2468"}],"title":"\nSubstantive Changes and Bugfixes"},{"refs":[{"id":"ref-for-propdef-width\u2461\u2463"},{"id":"ref-for-propdef-width\u2461\u2464"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"5.3. \nFlex Direction and Wrap: the flex-flow shorthand"},{"refs":[{"id":"ref-for-comb-any\u2460"}],"title":"7.1. \nThe flex Shorthand"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "8e39589a": {"dfnID":"8e39589a","dfnText":"block box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-box"}],"title":"4.2. \nFlex Item Margins and Paddings"}],"url":"https://drafts.csswg.org/css-display-4/#block-box"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "9436e460": {"dfnID":"9436e460","dfnText":"clear","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clear"}],"title":"3. \nFlex Containers: the flex and inline-flex display values"},{"refs":[{"id":"ref-for-propdef-clear\u2460"}],"title":"5. \nOrdering and Orientation"},{"refs":[{"id":"ref-for-propdef-clear\u2461"},{"id":"ref-for-propdef-clear\u2462"}],"title":"\nSubstantive Changes and Bugfixes"},{"refs":[{"id":"ref-for-propdef-clear\u2463"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css2/#propdef-clear"}, "9522389e": {"dfnID":"9522389e","dfnText":"break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-inside"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-inside"}, "97cc51ce": {"dfnID":"97cc51ce","dfnText":"intrinsic size contribution","external":true,"refSections":[{"refs":[{"id":"ref-for-intrinsic-size-contribution"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-intrinsic-size-contribution\u2460"}],"title":"\nChanges since the 19 November 2018 CR"}],"url":"https://drafts.csswg.org/css-sizing-3/#intrinsic-size-contribution"}, @@ -6825,6 +6833,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-used-value\u2461"}],"title":"9.7. \nResolving Flexible Lengths"},{"refs":[{"id":"ref-for-used-value\u2462"}],"title":"\nChanges since the 16 October 2017 CR"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"},{"id":"ref-for-propdef-bottom\u2460"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-writing-mode\u2460"}],"title":"4.2. \nFlex Item Margins and Paddings"},{"refs":[{"id":"ref-for-writing-mode\u2461"},{"id":"ref-for-writing-mode\u2462"},{"id":"ref-for-writing-mode\u2463"},{"id":"ref-for-writing-mode\u2464"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"},{"refs":[{"id":"ref-for-writing-mode\u2465"}],"title":"5.2. \nFlex Line Wrapping: the flex-wrap property"},{"refs":[{"id":"ref-for-writing-mode\u2466"}],"title":"5.3. \nFlex Direction and Wrap: the flex-flow shorthand"},{"refs":[{"id":"ref-for-writing-mode\u2467"},{"id":"ref-for-writing-mode\u2468"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-writing-mode\u2460\u24ea"},{"id":"ref-for-writing-mode\u2460\u2460"},{"id":"ref-for-writing-mode\u2460\u2461"}],"title":"\nAppendix A: Axis Mappings"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"},{"id":"ref-for-propdef-max-width\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-max-width\u2461"}],"title":"8.3. \nCross-axis Alignment: the align-items and align-self properties"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a758a91a": {"dfnID":"a758a91a","dfnText":"establishes an independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-independent-formatting-context"}],"title":"4. \nFlex Items"}],"url":"https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"4. \nFlex Items"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-replaced-element\u2461"}],"title":"\nChanges since the 19 November 2018 CR"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "ac9b4191": {"dfnID":"ac9b4191","dfnText":"baseline set","external":true,"refSections":[{"refs":[{"id":"ref-for-baseline-set"},{"id":"ref-for-baseline-set\u2460"}],"title":"8.5. \nFlex Container Baselines"},{"refs":[{"id":"ref-for-baseline-set\u2461"},{"id":"ref-for-baseline-set\u2462"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-align-3/#baseline-set"}, @@ -6838,8 +6847,8 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"},{"id":"ref-for-propdef-position\u2460"}],"title":"4.3. \nFlex Item Z-Ordering"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "b9f6db61": {"dfnID":"b9f6db61","dfnText":"last-baseline alignment","external":true,"refSections":[{"refs":[{"id":"ref-for-last-baseline-alignment"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-align-3/#last-baseline-alignment"}, "baseline-participation": {"dfnID":"baseline-participation","dfnText":"participates in baseline alignment","external":false,"refSections":[{"refs":[{"id":"ref-for-baseline-participation"},{"id":"ref-for-baseline-participation"}],"title":"8.5. \nFlex Container Baselines"},{"refs":[{"id":"ref-for-baseline-participation"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"#baseline-participation"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"},{"id":"ref-for-propdef-break-before\u2460"},{"id":"ref-for-propdef-break-before\u2461"},{"id":"ref-for-propdef-break-before\u2462"}],"title":"10. \nFragmenting Flex Layout"},{"refs":[{"id":"ref-for-propdef-break-before\u2463"},{"id":"ref-for-propdef-break-before\u2464"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-propdef-break-before\u2465"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"4.3. \nFlex Item Z-Ordering"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "cde9ab5b": {"dfnID":"cde9ab5b","dfnText":"automatic minimum size","external":true,"refSections":[{"refs":[{"id":"ref-for-automatic-minimum-size"},{"id":"ref-for-automatic-minimum-size\u2460"},{"id":"ref-for-automatic-minimum-size\u2461"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-automatic-minimum-size\u2462"},{"id":"ref-for-automatic-minimum-size\u2463"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-automatic-minimum-size\u2464"},{"id":"ref-for-automatic-minimum-size\u2465"}],"title":"\nSubstantive Changes and Bugfixes"},{"refs":[{"id":"ref-for-automatic-minimum-size\u2466"},{"id":"ref-for-automatic-minimum-size\u2467"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-sizing-3/#automatic-minimum-size"}, "collapsed-flex-item": {"dfnID":"collapsed-flex-item","dfnText":"collapsed flex item","external":false,"refSections":[{"refs":[{"id":"ref-for-collapsed-flex-item"},{"id":"ref-for-collapsed-flex-item\u2460"},{"id":"ref-for-collapsed-flex-item\u2461"}],"title":"4.4. \nCollapsed Items"}],"url":"#collapsed-flex-item"}, "content-based-minimum-size": {"dfnID":"content-based-minimum-size","dfnText":"content-based minimum size","external":false,"refSections":[{"refs":[{"id":"ref-for-content-based-minimum-size"},{"id":"ref-for-content-based-minimum-size\u2460"},{"id":"ref-for-content-based-minimum-size\u2461"},{"id":"ref-for-content-based-minimum-size\u2462"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-content-based-minimum-size\u2463"},{"id":"ref-for-content-based-minimum-size\u2464"}],"title":"\nChanges since the 19 November 2018 CR"},{"refs":[{"id":"ref-for-content-based-minimum-size\u2465"}],"title":"\nChanges since the 16 October 2017 CR"}],"url":"#content-based-minimum-size"}, @@ -6861,6 +6870,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "e0b6ed58": {"dfnID":"e0b6ed58","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"3. \nFlex Containers: the flex and inline-flex display values"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, "e1483d91": {"dfnID":"e1483d91","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"},{"id":"ref-for-propdef-top\u2460"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-top"}, "e1ab41b7": {"dfnID":"e1ab41b7","dfnText":"block axis","external":true,"refSections":[{"refs":[{"id":"ref-for-block-axis"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-axis"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"},{"id":"ref-for-propdef-min-width\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-min-width\u2461"},{"id":"ref-for-propdef-min-width\u2462"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-propdef-min-width\u2463"}],"title":"7.1.1. \nBasic Values of flex"},{"refs":[{"id":"ref-for-propdef-min-width\u2464"}],"title":"8.3. \nCross-axis Alignment: the align-items and align-self properties"},{"refs":[{"id":"ref-for-propdef-min-width\u2465"},{"id":"ref-for-propdef-min-width\u2466"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-propdef-min-width\u2467"},{"id":"ref-for-propdef-min-width\u2468"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e66d392c": {"dfnID":"e66d392c","dfnText":"min-content","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"},{"id":"ref-for-min-content\u2460"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-min-content\u2461"}],"title":"9.9.1. \nFlex Container Intrinsic Main Sizes"},{"refs":[{"id":"ref-for-min-content\u2462"},{"id":"ref-for-min-content\u2463"}],"title":"9.9.2. \nFlex Container Intrinsic Cross Sizes"},{"refs":[{"id":"ref-for-min-content\u2464"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-min-content\u2465"},{"id":"ref-for-min-content\u2466"},{"id":"ref-for-min-content\u2467"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-min-content\u2468"},{"id":"ref-for-min-content\u2460\u24ea"},{"id":"ref-for-min-content\u2460\u2460"},{"id":"ref-for-min-content\u2460\u2461"},{"id":"ref-for-min-content\u2460\u2462"},{"id":"ref-for-min-content\u2460\u2463"},{"id":"ref-for-min-content\u2460\u2464"},{"id":"ref-for-min-content\u2460\u2465"},{"id":"ref-for-min-content\u2460\u2466"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "e7a4e2e2": {"dfnID":"e7a4e2e2","dfnText":"alignment container","external":true,"refSections":[{"refs":[{"id":"ref-for-alignment-container"}],"title":"4.1. \nAbsolutely-Positioned Flex Children"}],"url":"https://drafts.csswg.org/css-align-3/#alignment-container"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"1.2. \nModule interactions"},{"refs":[{"id":"ref-for-propdef-display\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-display\u2461"},{"id":"ref-for-propdef-display\u2462"},{"id":"ref-for-propdef-display\u2463"},{"id":"ref-for-propdef-display\u2464"}],"title":"3. \nFlex Containers: the flex and inline-flex display values"},{"refs":[{"id":"ref-for-propdef-display\u2465"},{"id":"ref-for-propdef-display\u2466"},{"id":"ref-for-propdef-display\u2467"},{"id":"ref-for-propdef-display\u2468"},{"id":"ref-for-propdef-display\u2460\u24ea"},{"id":"ref-for-propdef-display\u2460\u2460"},{"id":"ref-for-propdef-display\u2460\u2461"},{"id":"ref-for-propdef-display\u2460\u2462"}],"title":"4. \nFlex Items"},{"refs":[{"id":"ref-for-propdef-display\u2460\u2463"}],"title":"4.4. \nCollapsed Items"},{"refs":[{"id":"ref-for-propdef-display\u2460\u2464"},{"id":"ref-for-propdef-display\u2460\u2465"},{"id":"ref-for-propdef-display\u2460\u2466"},{"id":"ref-for-propdef-display\u2460\u2467"},{"id":"ref-for-propdef-display\u2460\u2468"},{"id":"ref-for-propdef-display\u2461\u24ea"},{"id":"ref-for-propdef-display\u2461\u2460"},{"id":"ref-for-propdef-display\u2461\u2461"},{"id":"ref-for-propdef-display\u2461\u2462"}],"title":"\nSubstantive Changes and Bugfixes"},{"refs":[{"id":"ref-for-propdef-display\u2461\u2463"},{"id":"ref-for-propdef-display\u2461\u2464"},{"id":"ref-for-propdef-display\u2461\u2465"},{"id":"ref-for-propdef-display\u2461\u2466"},{"id":"ref-for-propdef-display\u2461\u2467"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, @@ -6868,6 +6878,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "ee0a8be8": {"dfnID":"ee0a8be8","dfnText":"generate baselines","external":true,"refSections":[{"refs":[{"id":"ref-for-generate-baselines"},{"id":"ref-for-generate-baselines\u2460"},{"id":"ref-for-generate-baselines\u2461"}],"title":"8.5. \nFlex Container Baselines"},{"refs":[{"id":"ref-for-generate-baselines\u2462"},{"id":"ref-for-generate-baselines\u2463"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://drafts.csswg.org/css-align-3/#generate-baselines"}, "f271d0a1": {"dfnID":"f271d0a1","dfnText":"flow layout","external":true,"refSections":[{"refs":[{"id":"ref-for-flow-layout"},{"id":"ref-for-flow-layout\u2460"}],"title":"3. \nFlex Containers: the flex and inline-flex display values"}],"url":"https://drafts.csswg.org/css-display-4/#flow-layout"}, "f4a5f1c1": {"dfnID":"f4a5f1c1","dfnText":"inline-end","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-end"}],"title":"5.1. \nFlex Flow Direction: the flex-direction property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-end"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"},{"id":"ref-for-propdef-max-height\u2460"}],"title":"2. \nFlex Layout Box Model and Terminology"},{"refs":[{"id":"ref-for-propdef-max-height\u2461"}],"title":"8.3. \nCross-axis Alignment: the align-items and align-self properties"},{"refs":[{"id":"ref-for-propdef-max-height\u2462"},{"id":"ref-for-propdef-max-height\u2463"}],"title":"\nSubstantive Changes and Bugfixes"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "f9be6a15": {"dfnID":"f9be6a15","dfnText":"preferred aspect ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-preferred-aspect-ratio"},{"id":"ref-for-preferred-aspect-ratio\u2460"}],"title":"4.5. \nAutomatic Minimum Size of Flex Items"},{"refs":[{"id":"ref-for-preferred-aspect-ratio\u2461"}],"title":"7.1. \nThe flex Shorthand"},{"refs":[{"id":"ref-for-preferred-aspect-ratio\u2462"},{"id":"ref-for-preferred-aspect-ratio\u2463"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-preferred-aspect-ratio\u2464"}],"title":"9.4. \nCross Size Determination"},{"refs":[{"id":"ref-for-preferred-aspect-ratio\u2465"}],"title":"\nChanges since the 19 November 2018 CR"}],"url":"https://drafts.csswg.org/css-sizing-4/#preferred-aspect-ratio"}, "fd9aa8f7": {"dfnID":"fd9aa8f7","dfnText":"block-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-level-box"}],"title":"9.4. \nCross Size Determination"},{"refs":[{"id":"ref-for-block-level-box\u2460"}],"title":"\nChanges since the 19 November 2018 CR"}],"url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, "flex-base-size": {"dfnID":"flex-base-size","dfnText":"flex base size","external":false,"refSections":[{"refs":[{"id":"ref-for-flex-base-size"}],"title":"7.1. \nThe flex Shorthand"},{"refs":[{"id":"ref-for-flex-base-size\u2460"},{"id":"ref-for-flex-base-size\u2461"},{"id":"ref-for-flex-base-size\u2462"},{"id":"ref-for-flex-base-size\u2463"},{"id":"ref-for-flex-base-size\u2464"},{"id":"ref-for-flex-base-size\u2465"},{"id":"ref-for-flex-base-size\u2466"},{"id":"ref-for-flex-base-size\u2467"},{"id":"ref-for-flex-base-size\u2468"}],"title":"9.2. \nLine Length Determination"},{"refs":[{"id":"ref-for-flex-base-size\u2460\u24ea"},{"id":"ref-for-flex-base-size\u2460\u2460"},{"id":"ref-for-flex-base-size\u2460\u2461"},{"id":"ref-for-flex-base-size\u2460\u2462"},{"id":"ref-for-flex-base-size\u2460\u2463"},{"id":"ref-for-flex-base-size\u2460\u2464"}],"title":"9.7. \nResolving Flexible Lengths"},{"refs":[{"id":"ref-for-flex-base-size\u2460\u2465"},{"id":"ref-for-flex-base-size\u2460\u2466"},{"id":"ref-for-flex-base-size\u2460\u2467"},{"id":"ref-for-flex-base-size\u2460\u2468"}],"title":"9.9.1. \nFlex Container Intrinsic Main Sizes"},{"refs":[{"id":"ref-for-flex-base-size\u2461\u24ea"},{"id":"ref-for-flex-base-size\u2461\u2460"}],"title":"9.9.3. \nFlex Item Intrinsic Size Contributions"},{"refs":[{"id":"ref-for-flex-base-size\u2461\u2461"}],"title":"\nChanges since the 19 November 2018 CR"},{"refs":[{"id":"ref-for-flex-base-size\u2461\u2462"},{"id":"ref-for-flex-base-size\u2461\u2463"}],"title":"\nChanges since the 16 October 2017 CR"},{"refs":[{"id":"ref-for-flex-base-size\u2461\u2464"},{"id":"ref-for-flex-base-size\u2461\u2465"},{"id":"ref-for-flex-base-size\u2461\u2466"},{"id":"ref-for-flex-base-size\u2461\u2467"},{"id":"ref-for-flex-base-size\u2461\u2468"},{"id":"ref-for-flex-base-size\u2462\u24ea"},{"id":"ref-for-flex-base-size\u2462\u2460"},{"id":"ref-for-flex-base-size\u2462\u2461"},{"id":"ref-for-flex-base-size\u2462\u2462"},{"id":"ref-for-flex-base-size\u2462\u2463"},{"id":"ref-for-flex-base-size\u2462\u2464"},{"id":"ref-for-flex-base-size\u2462\u2468"},{"id":"ref-for-flex-base-size\u2463\u24ea"}],"title":"\nSubstantive Changes and Bugfixes"},{"refs":[{"id":"ref-for-flex-base-size\u2462\u2465"},{"id":"ref-for-flex-base-size\u2462\u2466"},{"id":"ref-for-flex-base-size\u2462\u2467"}],"title":"\nClarifications"}],"url":"#flex-base-size"}, @@ -7515,7 +7526,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-display-4/#propdef-visibility": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"visibility","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-visibility"}, "https://drafts.csswg.org/css-display-4/#replaced-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"replaced element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "https://drafts.csswg.org/css-display-4/#text-nodes": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text node","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-nodes"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-images-3/#specified-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"specified size","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#specified-size"}, "https://drafts.csswg.org/css-inline-3/#propdef-vertical-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"vertical-align","type":"property","url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, "https://drafts.csswg.org/css-overflow-3/#propdef-overflow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"overflow","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, @@ -7589,12 +7599,17 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-table-layout-auto": {"export":true,"for_":["table-layout"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-table-layout-auto"}, "https://drafts.csswg.org/css2/#valdef-z-index-auto": {"export":true,"for_":["z-index"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-z-index-auto"}, "https://drafts.csswg.org/cssom-1/#resolved-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"resolved value","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#resolved-value"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"margin","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.console.txt index bbf3647ba8..926fc7e67b 100644 --- a/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.console.txt @@ -1,3 +1,11 @@ LINE ~744: No 'property' refs found for 'unicode-range'. 'unicode-range' +LINK ERROR: No 'idl' refs found for 'font' with for='['FontFaceSet/load()']'. +{{FontFaceSet/load()/font}} +LINK ERROR: No 'idl' refs found for 'text' with for='['FontFaceSet/load()']'. +{{FontFaceSet/load()/text}} +LINK ERROR: No 'idl' refs found for 'font' with for='['FontFaceSet/check()']'. +{{FontFaceSet/check()/font}} +LINK ERROR: No 'idl' refs found for 'text' with for='['FontFaceSet/check()']'. +{{FontFaceSet/check()/text}} LINE 1175: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.html b/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.html index 32ecb4a31a..f673966265 100644 --- a/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-font-loading-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Font Loading Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-font-loading/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1079,7 +1078,7 @@ <h1 class="p-name no-ref" id="title">CSS Font Loading Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1101,7 +1100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-font-loading] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-font-loading%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1772,7 +1771,7 @@ <h3 class="heading settled" data-level="3.2" id="font-face-set-load"><span class Let <var>promise</var> be a newly-created promise object. <li> Return <var>promise</var>. Complete the rest of these steps asynchronously. - <li> <a data-link-type="dfn" href="#find-the-matching-font-faces" id="ref-for-find-the-matching-font-faces">Find the matching font faces</a> from <var>font face set</var> using the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-font" id="ref-for-dom-fontfacesetload-font">font</a></code> and <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-text" id="ref-for-dom-fontfacesetload-text">text</a></code> arguments passed to the function, + <li> <a data-link-type="dfn" href="#find-the-matching-font-faces" id="ref-for-find-the-matching-font-faces">Find the matching font faces</a> from <var>font face set</var> using the <code class="idl"><a data-link-type="idl">font</a></code> and <code class="idl"><a data-link-type="idl">text</a></code> arguments passed to the function, and let <var>font face list</var> be the return value (ignoring the <var>found faces</var> flag). If a syntax error was returned, @@ -1815,7 +1814,7 @@ <h3 class="heading settled" data-level="3.3" id="font-face-set-check"><span clas execute these steps:</p> <ol> <li> Let <var>font face set</var> be the <code class="idl"><a data-link-type="idl" href="#fontfaceset" id="ref-for-fontfaceset④⑥">FontFaceSet</a></code> object this method was called on. - <li> <a data-link-type="dfn" href="#find-the-matching-font-faces" id="ref-for-find-the-matching-font-faces①">Find the matching font faces</a> from <var>font face set</var> using the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-font" id="ref-for-dom-fontfacesetcheck-font">font</a></code> and <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-text" id="ref-for-dom-fontfacesetcheck-text">text</a></code> arguments passed to the function, + <li> <a data-link-type="dfn" href="#find-the-matching-font-faces" id="ref-for-find-the-matching-font-faces①">Find the matching font faces</a> from <var>font face set</var> using the <code class="idl"><a data-link-type="idl">font</a></code> and <code class="idl"><a data-link-type="idl">text</a></code> arguments passed to the function, and including system fonts, and let <var>font face list</var> be the returned list of font faces, and <var>found faces</var> be the returned <var>found faces</var> flag. @@ -2279,14 +2278,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> - <li> - <a data-link-type="biblio">[CSS-FONT-LOADING-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="1efc67e7">font <small>(for FontFaceSet/check())</small></span> - <li><span class="dfn-paneled" id="3d1ecaad">font <small>(for FontFaceSet/load())</small></span> - <li><span class="dfn-paneled" id="0d86ede8">text <small>(for FontFaceSet/check())</small></span> - <li><span class="dfn-paneled" id="86eccf79">text <small>(for FontFaceSet/load())</small></span> - </ul> <li> <a data-link-type="biblio">[CSS-FONTS-4]</a> defines the following terms: <ul> @@ -2351,14 +2342,12 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> - <dt id="biblio-css-font-loading-3">[CSS-FONT-LOADING-3] - <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-font-loading/"><cite>CSS Font Loading Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-font-loading/">https://drafts.csswg.org/css-font-loading/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -2487,7 +2476,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> When a FontFace is transferred between documents, it’s no longer CSS-connected. <a class="issue-return" href="#issue-41199acf" title="Jump to section">↵</a></div> </div> <details class="mdn-anno unpositioned" data-anno-for="FontFaceSet-interface"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/fonts" title="The fonts property of the Document interface returns the FontFaceSet interface of the document.">Document/fonts</a></p> <p class="all-engines-text">In all current engines.</p> @@ -2514,18 +2503,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/fonts" title="The fonts property of the WorkerGlobalScope interface returns the FontFaceSet interface of the worker.">WorkerGlobalScope/fonts</a></p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>105+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> </details> <details class="mdn-anno unpositioned" data-anno-for="font-face-constructor"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2579,7 +2556,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FontFace/display" title="The display property of the FontFace interface determines how a font face is displayed based on whether and when it is downloaded and ready to use. This property is equivalent to the CSS font-display descriptor.">FontFace/display</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>58+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> + <span class="firefox yes"><span>Firefox</span><span>58+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2719,7 +2696,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-fontface-unicoderange"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FontFace/unicodeRange" title="The unicodeRange property of the FontFace interface retrieves or sets the range of unicode codepoints encompassing the font.">FontFace/unicodeRange</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FontFace/unicodeRange" title="The unicodeRange property of the FontFace interface retrieves or sets the range of unicode code points encompassing the font.">FontFace/unicodeRange</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>35+</span></span> @@ -2748,13 +2725,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-fontfacedescriptors-variationsettings"> - <summary><span>MDN</span></summary> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FontFace/variationSettings" title="The variationSettings property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.">FontFace/variationSettings</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>62+</span></span> + <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2811,14 +2789,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-fontfaceset-check"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FontFaceSet/check" title="The check() method of the FontFaceSet returns whether all fonts in the given font list have been loaded and are available.">FontFaceSet/check</a></p> - <p class="all-engines-text">In all current engines.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FontFaceSet/check" title="The check() method of the FontFaceSet returns true if you can render some text using the given font specification without attempting to use any fonts in this FontFaceSet that are not yet fully loaded. This means you can use the font specification without causing a font swap.">FontFaceSet/check</a></p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>35+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2999,6 +2976,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-fontfacesource-fonts"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/fonts" title="The fonts property of the WorkerGlobalScope interface returns the FontFaceSet interface of the worker.">WorkerGlobalScope/fonts</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>105+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -3200,16 +3193,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let dfnPanelData = { "0497de86": {"dfnID":"0497de86","dfnText":"@font-face","external":true,"refSections":[{"refs":[{"id":"ref-for-at-font-face-rule"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-at-font-face-rule\u2460"},{"id":"ref-for-at-font-face-rule\u2461"},{"id":"ref-for-at-font-face-rule\u2462"},{"id":"ref-for-at-font-face-rule\u2463"},{"id":"ref-for-at-font-face-rule\u2464"},{"id":"ref-for-at-font-face-rule\u2465"}],"title":"2. \nThe FontFace Interface"},{"refs":[{"id":"ref-for-at-font-face-rule\u2466"},{"id":"ref-for-at-font-face-rule\u2467"}],"title":"2.1. \nThe Constructor"},{"refs":[{"id":"ref-for-at-font-face-rule\u2468"}],"title":"2.2. \nThe load() method"},{"refs":[{"id":"ref-for-at-font-face-rule\u2460\u24ea"},{"id":"ref-for-at-font-face-rule\u2460\u2460"},{"id":"ref-for-at-font-face-rule\u2460\u2461"},{"id":"ref-for-at-font-face-rule\u2460\u2462"},{"id":"ref-for-at-font-face-rule\u2460\u2463"},{"id":"ref-for-at-font-face-rule\u2460\u2464"},{"id":"ref-for-at-font-face-rule\u2460\u2465"},{"id":"ref-for-at-font-face-rule\u2460\u2466"},{"id":"ref-for-at-font-face-rule\u2460\u2467"},{"id":"ref-for-at-font-face-rule\u2460\u2468"},{"id":"ref-for-at-font-face-rule\u2461\u24ea"}],"title":"2.3. \nInteraction with CSS\u2019s @font-face Rule"},{"refs":[{"id":"ref-for-at-font-face-rule\u2461\u2460"}],"title":"3. \nThe FontFaceSet Interface"},{"refs":[{"id":"ref-for-at-font-face-rule\u2461\u2461"},{"id":"ref-for-at-font-face-rule\u2461\u2462"},{"id":"ref-for-at-font-face-rule\u2461\u2463"}],"title":"3.5. \nInteraction with CSS Font Loading and Matching"},{"refs":[{"id":"ref-for-at-font-face-rule\u2461\u2464"},{"id":"ref-for-at-font-face-rule\u2461\u2465"},{"id":"ref-for-at-font-face-rule\u2461\u2466"},{"id":"ref-for-at-font-face-rule\u2461\u2467"}],"title":"4.2. \nInteraction with CSS\u2019s @font-face Rule"},{"refs":[{"id":"ref-for-at-font-face-rule\u2461\u2468"}],"title":"Changes"},{"refs":[{"id":"ref-for-at-font-face-rule\u2462\u24ea"}],"title":"\nPrivacy & Security Considerations"}],"url":"https://drafts.csswg.org/css-fonts-5/#at-font-face-rule"}, -"0d86ede8": {"dfnID":"0d86ede8","dfnText":"text (for FontFaceSet/check())","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-fontfacesetcheck-text"}],"title":"3.3. \nThe check() method"}],"url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-text"}, "129bdae8": {"dfnID":"129bdae8","dfnText":"Event","external":true,"refSections":[{"refs":[{"id":"ref-for-event"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://dom.spec.whatwg.org/#event"}, -"1efc67e7": {"dfnID":"1efc67e7","dfnText":"font (for FontFaceSet/check())","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-fontfacesetcheck-font"}],"title":"3.3. \nThe check() method"}],"url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-font"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2c57f900": {"dfnID":"2c57f900","dfnText":"font","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font"}],"title":"3.1. \nEvents"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font"}, "2ede577f": {"dfnID":"2ede577f","dfnText":"normal","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-font-weight-normal"}],"title":"3.1. \nEvents"}],"url":"https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-normal"}, "2f8afbfe": {"dfnID":"2f8afbfe","dfnText":"ArrayBuffer","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-ArrayBuffer"}],"title":"2. \nThe FontFace Interface"},{"refs":[{"id":"ref-for-idl-ArrayBuffer\u2460"}],"title":"2.1. \nThe Constructor"}],"url":"https://webidl.spec.whatwg.org/#idl-ArrayBuffer"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"3.1. \nEvents"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "3c91be7d": {"dfnID":"3c91be7d","dfnText":"bolder","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-font-weight-bolder"}],"title":"3.1. \nEvents"}],"url":"https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-bolder"}, -"3d1ecaad": {"dfnID":"3d1ecaad","dfnText":"font (for FontFaceSet/load())","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-fontfacesetload-font"}],"title":"3.2. \nThe load() method"}],"url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-font"}, "44a7708c": {"dfnID":"44a7708c","dfnText":"EventInit","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-eventinit"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, "4cd9ca96": {"dfnID":"4cd9ca96","dfnText":"document or shadow root css style sheets","external":true,"refSections":[{"refs":[{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets"}],"title":"4.2. \nInteraction with CSS\u2019s @font-face Rule"}],"url":"https://drafts.csswg.org/cssom-1/#documentorshadowroot-document-or-shadow-root-css-style-sheets"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"},{"id":"ref-for-idl-boolean\u2460"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, @@ -3221,7 +3211,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "804aab85": {"dfnID":"804aab85","dfnText":"OffscreenCanvas","external":true,"refSections":[{"refs":[{"id":"ref-for-offscreencanvas"}],"title":"4.1. \nWorker FontFaceSources"}],"url":"https://html.spec.whatwg.org/multipage/canvas.html#offscreencanvas"}, "83c59a3a": {"dfnID":"83c59a3a","dfnText":"WorkerGlobalScope","external":true,"refSections":[{"refs":[{"id":"ref-for-workerglobalscope"}],"title":"4. \nThe FontFaceSource Mixin"}],"url":"https://html.spec.whatwg.org/multipage/workers.html#workerglobalscope"}, "85394472": {"dfnID":"85394472","dfnText":"Document","external":true,"refSections":[{"refs":[{"id":"ref-for-document"}],"title":"3.5. \nInteraction with CSS Font Loading and Matching"},{"refs":[{"id":"ref-for-document\u2460"}],"title":"4. \nThe FontFaceSource Mixin"}],"url":"https://dom.spec.whatwg.org/#document"}, -"86eccf79": {"dfnID":"86eccf79","dfnText":"text (for FontFaceSet/load())","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-fontfacesetload-text"}],"title":"3.2. \nThe load() method"}],"url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-text"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"2. \nThe FontFace Interface"},{"refs":[{"id":"ref-for-Exposed\u2460"},{"id":"ref-for-Exposed\u2461"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "9cce47fd": {"dfnID":"9cce47fd","dfnText":"sequence","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-sequence"},{"id":"ref-for-idl-sequence\u2460"},{"id":"ref-for-idl-sequence\u2461"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://webidl.spec.whatwg.org/#idl-sequence"}, "a5c91173": {"dfnID":"a5c91173","dfnText":"SameObject","external":true,"refSections":[{"refs":[{"id":"ref-for-SameObject"}],"title":"3. \nThe FontFaceSet Interface"}],"url":"https://webidl.spec.whatwg.org/#SameObject"}, @@ -3860,10 +3849,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-undefined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"undefined","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "https://webidl.spec.whatwg.org/#invalidmodificationerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"InvalidModificationError","type":"exception","url":"https://webidl.spec.whatwg.org/#invalidmodificationerror"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, -"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-font": {"export":true,"for_":["FontFaceSet/check()"],"level":"3","normative":true,"shortname":"css-font-loading","spec":"css-font-loading-3","status":"snapshot","text":"font","type":"argument","url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-font"}, -"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-text": {"export":true,"for_":["FontFaceSet/check()"],"level":"3","normative":true,"shortname":"css-font-loading","spec":"css-font-loading-3","status":"snapshot","text":"text","type":"argument","url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetcheck-text"}, -"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-font": {"export":true,"for_":["FontFaceSet/load()"],"level":"3","normative":true,"shortname":"css-font-loading","spec":"css-font-loading-3","status":"snapshot","text":"font","type":"argument","url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-font"}, -"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-text": {"export":true,"for_":["FontFaceSet/load()"],"level":"3","normative":true,"shortname":"css-font-loading","spec":"css-font-loading-3","status":"snapshot","text":"text","type":"argument","url":"https://www.w3.org/TR/css-font-loading-3/#dom-fontfacesetload-text"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.console.txt b/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.console.txt index 4e6aeef893..08a553e56b 100644 --- a/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.console.txt +++ b/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.console.txt @@ -91,12 +91,6 @@ LINE 3281: Image doesn't exist, so I couldn't determine its width and height: 't LINE 3288: Image doesn't exist, so I couldn't determine its width and height: 'pwid.png' LINE 3300: Image doesn't exist, so I couldn't determine its width and height: 'rubyshinkansen.png' LINK ERROR: Obsolete biblio ref: [DOM-Level-2-Style] is replaced by [DOM]. Either update the reference, or use [DOM-Level-2-Style obsolete] if this is an intentionally-obsolete reference. -LINE 371: Multiple possible 'default' maybe refs. -Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-anchor-position-1; type:value; text:default -spec:css-ui-4; type:value; text:default -''default'' LINE 711: No 'value' refs found for 'xx-small' with for='['<absolute-size>']'. <a bs-line-number="711" data-link-type="value" data-lt="xx-small" data-link-for="&lt;absolute-size&gt;">xx-small</a> LINE 711: No 'value' refs found for 'x-small' with for='['<absolute-size>']'. @@ -147,9 +141,10 @@ Randomly chose one of them; other instances might get a different random choice. LINE ~2079: No 'property' refs found for 'unicode-range'. 'unicode-range' LINE 2129: Multiple possible 'ex' maybe refs. -Arbitrarily chose https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex +Arbitrarily chose https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-inline-3; type:value; text:ex +spec:css-inline-3; type:value; for:line-fit-edge; text:ex +spec:css-inline-3; type:value; for:<<text-edge>>; text:ex spec:css-values-4; type:value; text:ex ''ex'' LINE 2645: Multiple possible 'maybe' local refs for 'small-caps'. @@ -164,20 +159,6 @@ Randomly chose one of them; other instances might get a different random choice. LINE 2669: Multiple possible 'maybe' local refs for 'small-caps'. Randomly chose one of them; other instances might get a different random choice. ''small-caps'' -LINE 2959: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2959" data-link-type="dfn" data-lt="S">S</a> -LINE 2960: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2960" data-link-type="dfn" data-lt="S">S</a> -LINE 2964: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2964" data-link-type="dfn" data-lt="S">S</a> -LINE 2968: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2968" data-link-type="dfn" data-lt="S">S</a> -LINE 2972: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2972" data-link-type="dfn" data-lt="S">S</a> -LINE 2973: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2973" data-link-type="dfn" data-lt="S">S</a> -LINE 2981: No 'dfn' refs found for 's' that are marked for export. -<a bs-line-number="2981" data-link-type="dfn" data-lt="S">S</a> LINE ~3622: No 'property' refs found for 'src'. 'src' LINK ERROR: No 'idl-name' refs found for 'void'. @@ -186,14 +167,27 @@ LINK ERROR: Multiple possible 'get()' idl refs. Arbitrarily chose https://drafts.csswg.org/css-regions-1/#dom-namedflowmap-get To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-regions-1; type:method; text:get() -spec:encrypted-media; type:method; text:get() +spec:encrypted-media-2; type:method; text:get() spec:credential-management-1; type:method; text:get() spec:cookie-store; type:method; text:get() +spec:sanitizer-api; type:method; text:get() {{get()}} +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. +WARNING: No 'dom-cssfontpalettevaluesrule-basepalette' ID found, skipping MDN features that would target it. +WARNING: No 'dom-cssfontpalettevaluesrule-fontfamily' ID found, skipping MDN features that would target it. +WARNING: No 'dom-cssfontpalettevaluesrule-name' ID found, skipping MDN features that would target it. +WARNING: No 'dom-cssfontpalettevaluesrule-overridecolors' ID found, skipping MDN features that would target it. +WARNING: No 'om-fontpalettevalues' ID found, skipping MDN features that would target it. WARNING: No 'font-metrics-override-desc' ID found, skipping MDN features that would target it. WARNING: No 'font-display-desc' ID found, skipping MDN features that would target it. +WARNING: No 'at-ruledef-font-palette-values' ID found, skipping MDN features that would target it. WARNING: No 'font-optical-sizing-def' ID found, skipping MDN features that would target it. +WARNING: No 'font-palette-prop' ID found, skipping MDN features that would target it. +WARNING: No 'font-synthesis-small-caps' ID found, skipping MDN features that would target it. +WARNING: No 'font-synthesis-style' ID found, skipping MDN features that would target it. +WARNING: No 'font-synthesis-weight' ID found, skipping MDN features that would target it. WARNING: No 'font-synthesis' ID found, skipping MDN features that would target it. +WARNING: No 'font-variant-emoji-prop' ID found, skipping MDN features that would target it. WARNING: No 'font-variation-settings-def' ID found, skipping MDN features that would target it. LINE 214: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="214" data-dfn-type="dfn" id="weight" data-lt="weight" data-noexport="by-default" class="dfn-paneled">weight</dfn> diff --git a/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.html b/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.html index 31d18421c4..1d8e652340 100644 --- a/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.html +++ b/tests/github/w3c/csswg-drafts/css-fonts-3/Overview-wip.html @@ -5,7 +5,6 @@ <title>CSS Fonts Module</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-fonts-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1168,7 +1167,7 @@ <h1 class="p-name no-ref" id="title">CSS Fonts Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1190,7 +1189,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-fonts] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-fonts%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1552,7 +1551,7 @@ <h3 class="heading settled" data-level="3.1" id="font-family-prop"><span class=" </pre> <p>Font family <em>names</em> that happen to be the same as a keyword value (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit" id="ref-for-valdef-all-inherit">inherit</a>, <a class="css" data-link-type="maybe" href="#valdef-generic-family-serif" id="ref-for-valdef-generic-family-serif①">serif</a>, <a class="css" data-link-type="maybe" href="#valdef-generic-family-sans-serif" id="ref-for-valdef-generic-family-sans-serif①">sans-serif</a>, <a class="css" data-link-type="maybe" href="#valdef-generic-family-monospace" id="ref-for-valdef-generic-family-monospace①">monospace</a>, <a class="css" data-link-type="maybe" href="#valdef-generic-family-fantasy" id="ref-for-valdef-generic-family-fantasy①">fantasy</a>, and <a class="css" data-link-type="maybe" href="#valdef-generic-family-cursive" id="ref-for-valdef-generic-family-cursive①">cursive</a>) must be quoted to prevent confusion with the keywords with -the same names. The keywords <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-initial" id="ref-for-valdef-all-initial">initial</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default" id="ref-for-valdef-anchor-scroll-default">default</a> are reserved for +the same names. The keywords <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-initial" id="ref-for-valdef-all-initial">initial</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-default" id="ref-for-valdef-cursor-default">default</a> are reserved for future use and must also be quoted when used as font names. UAs must not consider these keywords as matching the <var>&lt;family-name></var> type.</p> <p>The precise way a set of fonts are grouped into font families @@ -3203,7 +3202,7 @@ <h3 class="heading settled" data-level="5.2" id="font-style-matching"><span clas Matching occurs in a well-defined order to ensure that the results are as consistent as possible across user agents, given an identical set of available fonts and rendering technology.</p> - <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="first-available-font">first available font</dfn>, used in the definition of <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#font-relative-length" id="ref-for-font-relative-length">font-relative lengths</a> such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex" id="ref-for-valdef-text-edge-ex">ex</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#ch" id="ref-for-ch">ch</a>, is defined to be the first available font that + <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="first-available-font">first available font</dfn>, used in the definition of <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#font-relative-length" id="ref-for-font-relative-length">font-relative lengths</a> such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex" id="ref-for-valdef-line-fit-edge-ex">ex</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#ch" id="ref-for-ch">ch</a>, is defined to be the first available font that would match any character given font families in the <a class="property css" data-link-type="property" href="#propdef-font-family" id="ref-for-propdef-font-family①⓪">font-family</a> list (or a user agent’s default font if none are available).</p> <h3 class="heading settled" data-level="5.3" id="cluster-matching"><span class="secno">5.3. </span><span class="content">Cluster matching</span><a class="self-link" href="#cluster-matching"></a></h3> <p>When text contains characters such as combining marks, ideally @@ -3983,21 +3982,21 @@ <h4 class="heading settled" data-level="6.9.1" id="basic-syntax"><span class="se where ⟨values⟩ are the numeric indices used for specific features defined for a given font.</p> <p>In terms of the grammar, this specification defines the following productions:</p> -<pre><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="font_feature_values_rule">font_feature_values_rule</dfn> : <a data-link-type="dfn" href="#font_feature_values_sym" id="ref-for-font_feature_values_sym">FONT_FEATURE_VALUES_SYM</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a data-link-type="dfn" href="#font_family_name_list" id="ref-for-font_family_name_list">font_family_name_list</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* - '{' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a data-link-type="dfn" href="#feature_value_block" id="ref-for-feature_value_block①">feature_value_block</a>? [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a data-link-type="dfn" href="#feature_value_block" id="ref-for-feature_value_block②">feature_value_block</a>? ]* '}' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* +<pre><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="font_feature_values_rule">font_feature_values_rule</dfn> : <a data-link-type="dfn" href="#font_feature_values_sym" id="ref-for-font_feature_values_sym">FONT_FEATURE_VALUES_SYM</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18">S</a>* <a data-link-type="dfn" href="#font_family_name_list" id="ref-for-font_family_name_list">font_family_name_list</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①">S</a>* + '{' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18②">S</a>* <a data-link-type="dfn" href="#feature_value_block" id="ref-for-feature_value_block①">feature_value_block</a>? [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18③">S</a>* <a data-link-type="dfn" href="#feature_value_block" id="ref-for-feature_value_block②">feature_value_block</a>? ]* '}' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18④">S</a>* ; <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="font_family_name_list">font_family_name_list</dfn> - : <a data-link-type="dfn" href="#font_family_name" id="ref-for-font_family_name">font_family_name</a> [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* ',' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a data-link-type="dfn" href="#font_family_name" id="ref-for-font_family_name①">font_family_name</a> ]* + : <a data-link-type="dfn" href="#font_family_name" id="ref-for-font_family_name">font_family_name</a> [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18⑤">S</a>* ',' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18⑥">S</a>* <a data-link-type="dfn" href="#font_family_name" id="ref-for-font_family_name①">font_family_name</a> ]* ; <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="font_family_name">font_family_name</dfn> - : <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string">STRING</a> | [ <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-css-identifier" id="ref-for-css-css-identifier">IDENT</a> [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-css-identifier" id="ref-for-css-css-identifier①">IDENT</a> ]* ] + : <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string">STRING</a> | [ <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-css-identifier" id="ref-for-css-css-identifier">IDENT</a> [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18⑦">S</a>* <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-css-identifier" id="ref-for-css-css-identifier①">IDENT</a> ]* ] ; <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="feature_value_block">feature_value_block</dfn> - : <a data-link-type="dfn" href="#feature_type" id="ref-for-feature_type">feature_type</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* - '{' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a data-link-type="dfn" href="#feature_value_definition" id="ref-for-feature_value_definition">feature_value_definition</a>? [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* ';' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a data-link-type="dfn" href="#feature_value_definition" id="ref-for-feature_value_definition①">feature_value_definition</a>? ]* '}' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* + : <a data-link-type="dfn" href="#feature_type" id="ref-for-feature_type">feature_type</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18⑧">S</a>* + '{' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18⑨">S</a>* <a data-link-type="dfn" href="#feature_value_definition" id="ref-for-feature_value_definition">feature_value_definition</a>? [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①⓪">S</a>* ';' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①①">S</a>* <a data-link-type="dfn" href="#feature_value_definition" id="ref-for-feature_value_definition①">feature_value_definition</a>? ]* '}' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①②">S</a>* ; <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="feature_type">feature_type</dfn>: @@ -4005,7 +4004,7 @@ <h4 class="heading settled" data-level="6.9.1" id="basic-syntax"><span class="se ; <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="feature_value_definition">feature_value_definition</dfn> - : <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-css-identifier" id="ref-for-css-css-identifier②">IDENT</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* ':' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#number" id="ref-for-number">NUMBER</a> [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn">S</a>* <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#number" id="ref-for-number①">NUMBER</a> ]* + : <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-css-identifier" id="ref-for-css-css-identifier②">IDENT</a> <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①③">S</a>* ':' <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①④">S</a>* <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#number" id="ref-for-number">NUMBER</a> [ <a href="https://www.w3.org/TR/CSS21/grammar.html#scanner"></a><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x18" id="ref-for-x18①⑤">S</a>* <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"></a><a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#number" id="ref-for-number①">NUMBER</a> ]* ; </pre> <p>The following new token is introduced:</p> @@ -4674,8 +4673,8 @@ <h3 class="heading settled" data-level="8.2" id="om-fontfeaturevalues"><span cla <p>Each value map attribute of <code class="idl"><a data-link-type="idl" href="#cssfontfeaturevaluesrule" id="ref-for-cssfontfeaturevaluesrule②">CSSFontFeatureValuesRule</a></code> reflects the values defined via a corresponding <a data-link-type="dfn" href="#feature_value_block" id="ref-for-feature_value_block⑥">feature value block</a>. Thus, the <code class="idl"><a data-link-type="idl" href="#dom-cssfontfeaturevaluesrule-annotation" id="ref-for-dom-cssfontfeaturevaluesrule-annotation①">annotation</a></code> attribute -contains the values contained within a <span class="css">@annotation</span> <span id="ref-for-feature_value_block⑦">feature value block</span>, the <code class="idl"><a data-link-type="idl" href="#dom-cssfontfeaturevaluesrule-ornaments" id="ref-for-dom-cssfontfeaturevaluesrule-ornaments①">ornaments</a></code> attribute contains the -values contained with a <span class="css">@ornaments</span> <span id="ref-for-feature_value_block⑧">feature value block</span> and so forth.</p> +contains the values contained within a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-annotation" id="ref-for-at-ruledef-font-feature-values-annotation">@annotation</a> <span id="ref-for-feature_value_block⑦">feature value block</span>, the <code class="idl"><a data-link-type="idl" href="#dom-cssfontfeaturevaluesrule-ornaments" id="ref-for-dom-cssfontfeaturevaluesrule-ornaments①">ornaments</a></code> attribute contains the +values contained with a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-ornaments" id="ref-for-at-ruledef-font-feature-values-ornaments">@ornaments</a> <span id="ref-for-feature_value_block⑧">feature value block</span> and so forth.</p> <p>The <code class="idl"><a data-link-type="idl" href="#cssfontfeaturevaluesmap" id="ref-for-cssfontfeaturevaluesmap①②">CSSFontFeatureValuesMap</a></code> interface uses the <a href="http://dev.w3.org/2006/webapi/WebIDL/#es-map-members">default map class methods</a> but the <code class="idl"><a data-link-type="idl" href="#dom-cssfontfeaturevaluesmap-set" id="ref-for-dom-cssfontfeaturevaluesmap-set">set()</a></code> method has different behavior. It takes a sequence of unsigned integers and associates it with a given <code class="idl"><a data-link-type="idl" href="#dom-cssfontfeaturevaluesmap-set-featurevaluename-values-featurevaluename" id="ref-for-dom-cssfontfeaturevaluesmap-set-featurevaluename-values-featurevaluename">featureValueName</a></code>. The method behaves the same as the default map class method @@ -5136,11 +5135,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> - <li> - <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="306f9323">default</span> - </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> @@ -5151,11 +5145,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-FONTS-4]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="ba80b0b1">&lt;family-name></span> + <li><span class="dfn-paneled" id="336aae10">@annotation</span> + <li><span class="dfn-paneled" id="0417e349">@ornaments</span> </ul> <li> <a data-link-type="biblio">[CSS-INLINE-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="69ae73da">ex</span> + <li><span class="dfn-paneled" id="8fec44ff">ex</span> </ul> <li> <a data-link-type="biblio">[CSS-REGIONS-1]</a> defines the following terms: @@ -5168,6 +5164,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="cacc0af2">letter-spacing</span> <li><span class="dfn-paneled" id="cbc54f93">text-transform</span> </ul> + <li> + <a data-link-type="biblio">[CSS-UI-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="7397920e">default</span> + </ul> <li> <a data-link-type="biblio">[CSS-VALUES-4]</a> defines the following terms: <ul> @@ -5186,6 +5187,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="4fc0a950"></span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -5225,20 +5231,22 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> - <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-regions-1">[CSS-REGIONS-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> + <dt id="biblio-css-ui-4">[CSS-UI-4] + <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-cssom-1">[CSSOM-1] @@ -5267,7 +5275,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-charmod-norm">[CHARMOD-NORM] <dd>Addison Phillips; et al. <a href="https://w3c.github.io/charmod-norm/"><cite>Character Model for the World Wide Web: String Matching</cite></a>. URL: <a href="https://w3c.github.io/charmod-norm/">https://w3c.github.io/charmod-norm/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css3text">[CSS3TEXT] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-dom-level-2-style">[DOM-LEVEL-2-STYLE] @@ -5624,10 +5632,42 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssfontfeaturevaluesrule-fontfamily"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFeatureValuesRule/fontFamily" title="The fontFamily property of the CSSConditionRule interface represents the name of the font family it applies to.">CSSFontFeatureValuesRule/fontFamily</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>16.2+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssfontfeaturevaluesrule"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFeatureValuesRule" title="The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.">CSSFontFeatureValuesRule</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>16.2+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="font-family-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-family" title="The font-family CSS descriptor sets the font family for a font specified in an @font-face rule.">@font-face/font-family</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-family" title="The font-family CSS descriptor sets the font family for a font specified in an @font-face at-rule.">@font-face/font-family</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -5640,10 +5680,39 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="font-rend-desc"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-feature-settings" title="The font-feature-settings CSS descriptor allows you to define the initial settings to use for the font defined by the @font-face at-rule. You can further use this descriptor to control typographic font features such as ligatures, small caps, and swashes, for the font defined by @font-face. The values for this descriptor are the same as the font-feature-settings property, except for the global keyword values.">@font-face/font-feature-settings</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings" title="The font-variation-settings CSS descriptor allows authors to specify low-level OpenType or TrueType font variations in the @font-face at-rule. The values for this descriptor are the same as the font-variation-settings property, except for the global keyword values.">@font-face/font-variation-settings</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="font-prop-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch" title="The font-stretch CSS descriptor allows authors to specify a normal, condensed, or expanded face for the fonts specified in the @font-face rule.">@font-face/font-stretch</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch" title="The font-stretch CSS descriptor allows authors to specify a normal, condensed, or expanded face for the fonts specified in the @font-face at-rule.">@font-face/font-stretch</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>62+</span></span> @@ -5656,7 +5725,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style" title="The font-style CSS descriptor allows authors to specify font styles for the fonts specified in the @font-face rule.">@font-face/font-style</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style" title="The font-style CSS descriptor allows authors to specify font styles for the fonts specified in the @font-face at-rule.">@font-face/font-style</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -5669,7 +5738,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight" title="The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.">@font-face/font-weight</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight" title="The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face at-rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.">@font-face/font-weight</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -5724,26 +5793,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="font-rend-desc"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings" title="The font-variation-settings CSS descriptor allows authors to specify low-level OpenType or TrueType font variations in the @font-face rule.">@font-face/font-variation-settings</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="src-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src" title="The src CSS descriptor of the @font-face rule specifies the resource containing font data. It is required for the @font-face rule to be valid.">@font-face/src</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src" title="The src CSS descriptor for the @font-face at-rule specifies the resource containing font data. It is required for the @font-face rule to be valid.">@font-face/src</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -5759,7 +5812,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="unicode-range-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range" title="The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined by @font-face and made available for use on the current page. If the page doesn&apos;t use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.">@font-face/unicode-range</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range" title="The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined using the @font-face at-rule and made available for use on the current page. If the page doesn&apos;t use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.">@font-face/unicode-range</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -5997,13 +6050,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="font-variant-alternates-prop"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-alternates" title="The font-variant-alternates CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in @font-feature-values.">font-variant-alternates</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -6139,9 +6193,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-size-adjust" title="The font-size-adjust attribute allows authors to specify an aspect value for an element that will preserve the x-height of the first choice font in a substitute font.">Attribute/font-size-adjust</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> + <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>?</span></span> <hr> @@ -6351,22 +6405,25 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "use strict"; { let dfnPanelData = { +"0417e349": {"dfnID":"0417e349","dfnText":"@ornaments","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-font-feature-values-ornaments"}],"title":"8.2. The CSSFontFeatureValuesRule interface"}],"url":"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-ornaments"}, "0698d556": {"dfnID":"0698d556","dfnText":"string","external":true,"refSections":[{"refs":[{"id":"ref-for-string"}],"title":"6.9.1. Basic syntax"}],"url":"https://infra.spec.whatwg.org/#string"}, "16310992": {"dfnID":"16310992","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"},{"id":"ref-for-number-value\u2460"}],"title":"3.6. Relative sizing: the font-size-adjust property"}],"url":"https://drafts.csswg.org/css-values-4/#number-value"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"}],"title":"3.5. Font size: the font-size property"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, -"306f9323": {"dfnID":"306f9323","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-scroll-default"}],"title":"3.1. Font family: the font-family property"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, +"336aae10": {"dfnID":"336aae10","dfnText":"@annotation","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-font-feature-values-annotation"}],"title":"8.2. The CSSFontFeatureValuesRule interface"}],"url":"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-annotation"}, "35d9f24e": {"dfnID":"35d9f24e","dfnText":"font-relative lengths","external":true,"refSections":[{"refs":[{"id":"ref-for-font-relative-length"}],"title":"5.2. Matching font styles"}],"url":"https://drafts.csswg.org/css-values-4/#font-relative-length"}, "37afd48d": {"dfnID":"37afd48d","dfnText":"InvalidAccessError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidaccesserror"}],"title":"8.2. The CSSFontFeatureValuesRule interface"}],"url":"https://webidl.spec.whatwg.org/#invalidaccesserror"}, "450958f7": {"dfnID":"450958f7","dfnText":"unsigned short","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-unsigned-short"}],"title":"8.2. The CSSFontFeatureValuesRule interface"}],"url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, "4d7d3dcd": {"dfnID":"4d7d3dcd","dfnText":"initial","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-initial"}],"title":"3.1. Font family: the font-family property"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, +"4fc0a950": {"dfnID":"4fc0a950","dfnText":"","external":true,"refSections":[{"refs":[{"id":"ref-for-x18"},{"id":"ref-for-x18\u2460"},{"id":"ref-for-x18\u2461"},{"id":"ref-for-x18\u2462"},{"id":"ref-for-x18\u2463"},{"id":"ref-for-x18\u2464"},{"id":"ref-for-x18\u2465"},{"id":"ref-for-x18\u2466"},{"id":"ref-for-x18\u2467"},{"id":"ref-for-x18\u2468"},{"id":"ref-for-x18\u2460\u24ea"},{"id":"ref-for-x18\u2460\u2460"},{"id":"ref-for-x18\u2460\u2461"},{"id":"ref-for-x18\u2460\u2462"},{"id":"ref-for-x18\u2460\u2463"},{"id":"ref-for-x18\u2460\u2464"}],"title":"6.9.1. Basic syntax"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x18"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"3.7. Shorthand font property: the font property"},{"refs":[{"id":"ref-for-mult-opt\u2461"}],"title":"4.3. Font reference: the src descriptor"},{"refs":[{"id":"ref-for-mult-opt\u2462"}],"title":"6.12. Low-level font feature settings control: the font-feature-settings property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "5fced98b": {"dfnID":"5fced98b","dfnText":"CSSOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-cssomstring"},{"id":"ref-for-cssomstring\u2460"},{"id":"ref-for-cssomstring\u2461"},{"id":"ref-for-cssomstring\u2462"},{"id":"ref-for-cssomstring\u2463"},{"id":"ref-for-cssomstring\u2464"},{"id":"ref-for-cssomstring\u2465"},{"id":"ref-for-cssomstring\u2466"}],"title":"8.1. The CSSFontFaceRule interface"},{"refs":[{"id":"ref-for-cssomstring\u2467"},{"id":"ref-for-cssomstring\u2468"},{"id":"ref-for-cssomstring\u2460\u24ea"},{"id":"ref-for-cssomstring\u2460\u2460"}],"title":"8.2. The CSSFontFeatureValuesRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, "620ca81c": {"dfnID":"620ca81c","dfnText":"ch","external":true,"refSections":[{"refs":[{"id":"ref-for-ch"}],"title":"5.2. Matching font styles"}],"url":"https://drafts.csswg.org/css-values-4/#ch"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"3.1. Font family: the font-family property"},{"refs":[{"id":"ref-for-mult-comma\u2460"},{"id":"ref-for-mult-comma\u2461"}],"title":"4.3. Font reference: the src descriptor"},{"refs":[{"id":"ref-for-mult-comma\u2462"}],"title":"4.5. Character range: the unicode-range descriptor"},{"refs":[{"id":"ref-for-mult-comma\u2463"},{"id":"ref-for-mult-comma\u2464"},{"id":"ref-for-mult-comma\u2465"}],"title":"4.7. Font features: the font-variant and font-feature-settings descriptors"},{"refs":[{"id":"ref-for-mult-comma\u2466"},{"id":"ref-for-mult-comma\u2467"}],"title":"6.8. Alternates and swashes: the font-variant-alternates property"},{"refs":[{"id":"ref-for-mult-comma\u2468"},{"id":"ref-for-mult-comma\u2460\u24ea"}],"title":"6.11. Overall shorthand for font rendering: the font-variant property"},{"refs":[{"id":"ref-for-mult-comma\u2460\u2460"}],"title":"6.12. Low-level font feature settings control: the font-feature-settings property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, -"69ae73da": {"dfnID":"69ae73da","dfnText":"ex","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-edge-ex"}],"title":"5.2. Matching font styles"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"3.1. Font family: the font-family property"},{"refs":[{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"}],"title":"3.1.1. Generic font families"},{"refs":[{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"}],"title":"3.2. Font weight: the font-weight property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"}],"title":"3.3. Font width: the font-stretch property"},{"refs":[{"id":"ref-for-comb-one\u2461\u2464"},{"id":"ref-for-comb-one\u2461\u2465"}],"title":"3.4. Font style: the font-style property"},{"refs":[{"id":"ref-for-comb-one\u2461\u2466"},{"id":"ref-for-comb-one\u2461\u2467"},{"id":"ref-for-comb-one\u2461\u2468"},{"id":"ref-for-comb-one\u2462\u24ea"},{"id":"ref-for-comb-one\u2462\u2460"},{"id":"ref-for-comb-one\u2462\u2461"},{"id":"ref-for-comb-one\u2462\u2462"},{"id":"ref-for-comb-one\u2462\u2463"},{"id":"ref-for-comb-one\u2462\u2464"}],"title":"3.5. Font size: the font-size property"},{"refs":[{"id":"ref-for-comb-one\u2462\u2465"}],"title":"3.6. Relative sizing: the font-size-adjust property"},{"refs":[{"id":"ref-for-comb-one\u2462\u2466"},{"id":"ref-for-comb-one\u2462\u2467"},{"id":"ref-for-comb-one\u2462\u2468"},{"id":"ref-for-comb-one\u2463\u24ea"},{"id":"ref-for-comb-one\u2463\u2460"},{"id":"ref-for-comb-one\u2463\u2461"},{"id":"ref-for-comb-one\u2463\u2462"}],"title":"3.7. Shorthand font property: the font property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2463"}],"title":"3.8. Controlling synthetic faces: the font-synthesis property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2464"}],"title":"4.3. Font reference: the src descriptor"},{"refs":[{"id":"ref-for-comb-one\u2463\u2465"},{"id":"ref-for-comb-one\u2463\u2466"},{"id":"ref-for-comb-one\u2463\u2467"},{"id":"ref-for-comb-one\u2463\u2468"},{"id":"ref-for-comb-one\u2464\u24ea"},{"id":"ref-for-comb-one\u2464\u2460"},{"id":"ref-for-comb-one\u2464\u2461"},{"id":"ref-for-comb-one\u2464\u2462"},{"id":"ref-for-comb-one\u2464\u2463"},{"id":"ref-for-comb-one\u2464\u2464"},{"id":"ref-for-comb-one\u2464\u2465"},{"id":"ref-for-comb-one\u2464\u2466"},{"id":"ref-for-comb-one\u2464\u2467"},{"id":"ref-for-comb-one\u2464\u2468"},{"id":"ref-for-comb-one\u2465\u24ea"},{"id":"ref-for-comb-one\u2465\u2460"},{"id":"ref-for-comb-one\u2465\u2461"},{"id":"ref-for-comb-one\u2465\u2462"},{"id":"ref-for-comb-one\u2465\u2463"},{"id":"ref-for-comb-one\u2465\u2464"}],"title":"4.4. \nFont property descriptors: the font-style, font-weight, font-stretch descriptors"},{"refs":[{"id":"ref-for-comb-one\u2465\u2465"},{"id":"ref-for-comb-one\u2465\u2466"},{"id":"ref-for-comb-one\u2465\u2467"},{"id":"ref-for-comb-one\u2465\u2468"},{"id":"ref-for-comb-one\u2466\u24ea"},{"id":"ref-for-comb-one\u2466\u2460"},{"id":"ref-for-comb-one\u2466\u2461"},{"id":"ref-for-comb-one\u2466\u2462"}],"title":"4.7. Font features: the font-variant and font-feature-settings descriptors"},{"refs":[{"id":"ref-for-comb-one\u2466\u2463"},{"id":"ref-for-comb-one\u2466\u2464"}],"title":"6.3. Kerning: the font-kerning property"},{"refs":[{"id":"ref-for-comb-one\u2466\u2465"},{"id":"ref-for-comb-one\u2466\u2466"},{"id":"ref-for-comb-one\u2466\u2467"},{"id":"ref-for-comb-one\u2466\u2468"},{"id":"ref-for-comb-one\u2467\u24ea"},{"id":"ref-for-comb-one\u2467\u2460"},{"id":"ref-for-comb-one\u2467\u2461"},{"id":"ref-for-comb-one\u2467\u2462"},{"id":"ref-for-comb-one\u2467\u2463"}],"title":"6.4. Ligatures: the font-variant-ligatures property"},{"refs":[{"id":"ref-for-comb-one\u2467\u2464"},{"id":"ref-for-comb-one\u2467\u2465"}],"title":"6.5. Subscript and superscript forms: the font-variant-position property"},{"refs":[{"id":"ref-for-comb-one\u2467\u2466"},{"id":"ref-for-comb-one\u2467\u2467"},{"id":"ref-for-comb-one\u2467\u2468"},{"id":"ref-for-comb-one\u2468\u24ea"},{"id":"ref-for-comb-one\u2468\u2460"},{"id":"ref-for-comb-one\u2468\u2461"}],"title":"6.6. Capitalization: the font-variant-caps property"},{"refs":[{"id":"ref-for-comb-one\u2468\u2462"},{"id":"ref-for-comb-one\u2468\u2463"},{"id":"ref-for-comb-one\u2468\u2464"},{"id":"ref-for-comb-one\u2468\u2465"}],"title":"6.7. Numerical formatting: the font-variant-numeric property"},{"refs":[{"id":"ref-for-comb-one\u2468\u2466"}],"title":"6.8. Alternates and swashes: the font-variant-alternates property"},{"refs":[{"id":"ref-for-comb-one\u2468\u2467"},{"id":"ref-for-comb-one\u2468\u2468"},{"id":"ref-for-comb-one\u2460\u24ea\u24ea"},{"id":"ref-for-comb-one\u2460\u24ea\u2460"},{"id":"ref-for-comb-one\u2460\u24ea\u2461"},{"id":"ref-for-comb-one\u2460\u24ea\u2462"},{"id":"ref-for-comb-one\u2460\u24ea\u2463"}],"title":"6.10. East Asian text rendering: the font-variant-east-asian property"},{"refs":[{"id":"ref-for-comb-one\u2460\u24ea\u2464"},{"id":"ref-for-comb-one\u2460\u24ea\u2465"},{"id":"ref-for-comb-one\u2460\u24ea\u2466"},{"id":"ref-for-comb-one\u2460\u24ea\u2467"},{"id":"ref-for-comb-one\u2460\u24ea\u2468"},{"id":"ref-for-comb-one\u2460\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460\u2460"}],"title":"6.11. Overall shorthand for font rendering: the font-variant property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2460\u2463"}],"title":"6.12. Low-level font feature settings control: the font-feature-settings property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2460\u2464"}],"title":"6.13. Font language override: the font-language-override property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "70c9f859": {"dfnID":"70c9f859","dfnText":"<integer>","external":true,"refSections":[{"refs":[{"id":"ref-for-integer-value"},{"id":"ref-for-integer-value\u2460"}],"title":"6.12. Low-level font feature settings control: the font-feature-settings property"}],"url":"https://drafts.csswg.org/css-values-4/#integer-value"}, +"7397920e": {"dfnID":"7397920e","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-cursor-default"}],"title":"3.1. Font family: the font-family property"}],"url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"},{"id":"ref-for-comb-any\u2461"}],"title":"3.7. Shorthand font property: the font property"},{"refs":[{"id":"ref-for-comb-any\u2462"}],"title":"3.8. Controlling synthetic faces: the font-synthesis property"},{"refs":[{"id":"ref-for-comb-any\u2463"},{"id":"ref-for-comb-any\u2464"},{"id":"ref-for-comb-any\u2465"},{"id":"ref-for-comb-any\u2466"},{"id":"ref-for-comb-any\u2467"},{"id":"ref-for-comb-any\u2468"},{"id":"ref-for-comb-any\u2460\u24ea"},{"id":"ref-for-comb-any\u2460\u2460"},{"id":"ref-for-comb-any\u2460\u2461"},{"id":"ref-for-comb-any\u2460\u2462"},{"id":"ref-for-comb-any\u2460\u2463"},{"id":"ref-for-comb-any\u2460\u2464"},{"id":"ref-for-comb-any\u2460\u2465"},{"id":"ref-for-comb-any\u2460\u2466"},{"id":"ref-for-comb-any\u2460\u2467"},{"id":"ref-for-comb-any\u2460\u2468"},{"id":"ref-for-comb-any\u2461\u24ea"},{"id":"ref-for-comb-any\u2461\u2460"},{"id":"ref-for-comb-any\u2461\u2461"}],"title":"4.7. Font features: the font-variant and font-feature-settings descriptors"},{"refs":[{"id":"ref-for-comb-any\u2461\u2462"},{"id":"ref-for-comb-any\u2461\u2463"},{"id":"ref-for-comb-any\u2461\u2464"},{"id":"ref-for-comb-any\u2461\u2465"}],"title":"6.7. Numerical formatting: the font-variant-numeric property"},{"refs":[{"id":"ref-for-comb-any\u2461\u2466"},{"id":"ref-for-comb-any\u2461\u2467"},{"id":"ref-for-comb-any\u2461\u2468"},{"id":"ref-for-comb-any\u2462\u24ea"},{"id":"ref-for-comb-any\u2462\u2460"},{"id":"ref-for-comb-any\u2462\u2461"}],"title":"6.8. Alternates and swashes: the font-variant-alternates property"},{"refs":[{"id":"ref-for-comb-any\u2462\u2462"},{"id":"ref-for-comb-any\u2462\u2463"}],"title":"6.10. East Asian text rendering: the font-variant-east-asian property"},{"refs":[{"id":"ref-for-comb-any\u2462\u2464"},{"id":"ref-for-comb-any\u2462\u2465"},{"id":"ref-for-comb-any\u2462\u2466"},{"id":"ref-for-comb-any\u2462\u2467"},{"id":"ref-for-comb-any\u2462\u2468"},{"id":"ref-for-comb-any\u2463\u24ea"},{"id":"ref-for-comb-any\u2463\u2460"},{"id":"ref-for-comb-any\u2463\u2461"},{"id":"ref-for-comb-any\u2463\u2462"},{"id":"ref-for-comb-any\u2463\u2463"},{"id":"ref-for-comb-any\u2463\u2464"},{"id":"ref-for-comb-any\u2463\u2465"},{"id":"ref-for-comb-any\u2463\u2466"},{"id":"ref-for-comb-any\u2463\u2467"},{"id":"ref-for-comb-any\u2463\u2468"},{"id":"ref-for-comb-any\u2464\u24ea"},{"id":"ref-for-comb-any\u2464\u2460"},{"id":"ref-for-comb-any\u2464\u2461"},{"id":"ref-for-comb-any\u2464\u2462"}],"title":"6.11. Overall shorthand for font rendering: the font-variant property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, +"8fec44ff": {"dfnID":"8fec44ff","dfnText":"ex","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-line-fit-edge-ex"}],"title":"5.2. Matching font styles"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex"}, "95644a1a": {"dfnID":"95644a1a","dfnText":"sub","external":true,"refSections":[{"refs":[{"id":"ref-for-the-sub-element"}],"title":"6.5. Subscript and superscript forms: the font-variant-position property"}],"url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-sub-element"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"}],"title":"4.3. Font reference: the src descriptor"},{"refs":[{"id":"ref-for-string-value\u2460"},{"id":"ref-for-string-value\u2461"}],"title":"6.12. Low-level font feature settings control: the font-feature-settings property"},{"refs":[{"id":"ref-for-string-value\u2462"},{"id":"ref-for-string-value\u2463"}],"title":"6.13. Font language override: the font-language-override property"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "9cce47fd": {"dfnID":"9cce47fd","dfnText":"sequence","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-sequence"},{"id":"ref-for-idl-sequence\u2460"}],"title":"8.2. The CSSFontFeatureValuesRule interface"}],"url":"https://webidl.spec.whatwg.org/#idl-sequence"}, @@ -7164,14 +7221,16 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#valdef-generic-family-sans-serif": {"export":true,"for_":["<generic-family>"],"level":"3","normative":true,"shortname":"css-fonts","spec":"css-fonts-3","status":"local","text":"sans-serif","type":"value","url":"#valdef-generic-family-sans-serif"}, "#valdef-generic-family-serif": {"export":true,"for_":["<generic-family>"],"level":"3","normative":true,"shortname":"css-fonts","spec":"css-fonts-3","status":"local","text":"serif","type":"value","url":"#valdef-generic-family-serif"}, "#valdef-relative-size-font-size-larger": {"export":true,"for_":["<relative-size> font-size"],"level":"3","normative":true,"shortname":"css-fonts","spec":"css-fonts-3","status":"local","text":"larger","type":"value","url":"#valdef-relative-size-font-size-larger"}, -"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default": {"export":true,"for_":["anchor-scroll"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"inherit","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-initial": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"initial","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, +"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-annotation": {"export":true,"for_":["@font-feature-values"],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"@annotation","type":"at-rule","url":"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-annotation"}, +"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-ornaments": {"export":true,"for_":["@font-feature-values"],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"@ornaments","type":"at-rule","url":"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-ornaments"}, "https://drafts.csswg.org/css-fonts-4/#family-name-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"<family-name>","type":"type","url":"https://drafts.csswg.org/css-fonts-4/#family-name-value"}, -"https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex": {"export":true,"for_":["text-edge"],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"ex","type":"value","url":"https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex"}, +"https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex": {"export":true,"for_":["line-fit-edge","<<text-edge>>"],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"ex","type":"value","url":"https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex"}, "https://drafts.csswg.org/css-regions-1/#dom-namedflowmap-get": {"export":true,"for_":["NamedFlowMap"],"level":"1","normative":true,"shortname":"css-regions","spec":"css-regions-1","status":"current","text":"get()","type":"method","url":"https://drafts.csswg.org/css-regions-1/#dom-namedflowmap-get"}, "https://drafts.csswg.org/css-text-4/#propdef-letter-spacing": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"letter-spacing","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, "https://drafts.csswg.org/css-text-4/#propdef-text-transform": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-transform","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, +"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default": {"export":true,"for_":["cursor"],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "https://drafts.csswg.org/css-values-4/#ch": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"ch","type":"value","url":"https://drafts.csswg.org/css-values-4/#ch"}, "https://drafts.csswg.org/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"||","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -7197,6 +7256,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#idl-unsigned-long": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned long","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-long"}, "https://webidl.spec.whatwg.org/#idl-unsigned-short": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned short","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, "https://webidl.spec.whatwg.org/#invalidaccesserror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"InvalidAccessError","type":"exception","url":"https://webidl.spec.whatwg.org/#invalidaccesserror"}, +"https://www.w3.org/TR/CSS21/selector.html#x18": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x18"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.console.txt index 1f2c4cdb21..e3cceebcf9 100644 --- a/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.console.txt @@ -1331,26 +1331,8 @@ Randomly chose one of them; other instances might get a different random choice. LINE 410: Multiple possible 'maybe' local refs for 'emoji'. Randomly chose one of them; other instances might get a different random choice. ''emoji'' -LINE 531: Multiple possible 'invalid' dfn refs. -Arbitrarily chose https://drafts.csswg.org/css-syntax-3/#css-invalid -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-syntax-3; type:dfn; text:invalid -spec:rdf12-semantics; type:dfn; text:invalid -<a bs-line-number="531" data-link-type="dfn" data-lt="invalid">invalid</a> -LINE 690: Multiple possible 'invalid' dfn refs. -Arbitrarily chose https://drafts.csswg.org/css-syntax-3/#css-invalid -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-syntax-3; type:dfn; text:invalid -spec:rdf12-semantics; type:dfn; text:invalid -<a bs-line-number="690" data-link-type="dfn" data-lt="invalid">invalid</a> LINE ~720: No 'property' refs found for 'normal'. 'normal' -LINE 769: Multiple possible 'invalid' dfn refs. -Arbitrarily chose https://drafts.csswg.org/css-syntax-3/#css-invalid -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-syntax-3; type:dfn; text:invalid -spec:rdf12-semantics; type:dfn; text:invalid -<a bs-line-number="769" data-link-type="dfn" data-lt="invalid">invalid</a> LINE 885: Multiple possible 'medium' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#valdef-line-width-medium To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -1445,7 +1427,7 @@ LINE 3472: No 'dfn' refs found for 'system font fallback'. <a bs-line-number="3472" data-link-type="dfn" data-lt="system font fallback">system font fallback</a> LINE 3571: No 'dfn' refs found for 'system font fallback'. <a bs-line-number="3571" data-link-type="dfn" data-lt="system font fallback">system font fallback</a> -LINE ~3718: No 'dfn' refs found for 'writing system'. +LINE ~3718: No 'dfn' refs found for 'writing system' that are marked for export. [=writing system=] LINE ~3787: No 'property' refs found for 'auto'. 'auto' @@ -1611,6 +1593,9 @@ LINE ~6715: No 'property' refs found for 'normal'. 'normal' LINE ~6743: No 'property' refs found for 'ch'. 'ch' +LINE 6435: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'dom-cssfontpalettevaluesrule-name' ID found, skipping MDN features that would target it. +WARNING: No 'dom-cssfontpalettevaluesrule-overridecolors' ID found, skipping MDN features that would target it. LINE 2422: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="2422" data-dfn-type="dfn" id="effective-character-map" data-lt="effective character map" data-noexport="by-default" class="dfn-paneled">effective character map</dfn> LINE 3124: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.html b/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.html index b3a6678c44..c5facdb935 100644 --- a/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-fonts-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Fonts Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-fonts-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1079,7 +1078,7 @@ <h1 class="p-name no-ref" id="title">CSS Fonts Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1101,7 +1100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-fonts] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-fonts%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -3514,18 +3513,18 @@ <h3 class="heading settled" data-level="4.5" id="unicode-range-desc"><span class <td><a class="css" data-link-type="at-rule" href="#at-font-face-rule" id="ref-for-at-font-face-rule③⓪">@font-face</a> <tr> <th>Value: - <td class="prod"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-urange" id="ref-for-typedef-urange">&lt;urange></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-comma" id="ref-for-mult-comma①">#</a> + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-urange" id="ref-for-typedef-urange">&lt;urange></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-comma" id="ref-for-mult-comma①">#</a> <tr> <th>Initial: <td>U+0-10FFFF </table> <p>This descriptor defines the set of Unicode codepoints that may be supported by the font face for which it is declared. The descriptor -value is a comma-delimited list of Unicode range (<a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-urange" id="ref-for-typedef-urange①">&lt;urange></a>) +value is a comma-delimited list of Unicode range (<a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-urange" id="ref-for-typedef-urange①">&lt;urange></a>) values. The union of these ranges defines the set of codepoints that serves as a hint for user agents when deciding whether or not to download a font resource for a given text run.</p> - <p>Each <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-urange" id="ref-for-typedef-urange②">&lt;urange></a> value is a <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"><code title="UNICODE-RANGE token">UNICODE-RANGE</code></a> token made up of a "U+" or "u+" prefix + <p>Each <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-syntax-3/#typedef-urange" id="ref-for-typedef-urange②">&lt;urange></a> value is a <a href="https://www.w3.org/TR/CSS21/syndata.html#tokenization"><code title="UNICODE-RANGE token">UNICODE-RANGE</code></a> token made up of a "U+" or "u+" prefix followed by a codepoint range in one of the three forms listed below. Ranges that do not fit one of the these forms are invalid and cause the declaration to be ignored.</p> @@ -4631,7 +4630,7 @@ <h3 class="heading settled" data-level="6.1" id="glyph-selection-positioning"><s The point at which font selection and positioning happens in the overall order of text processing operations (such as text transformation, text orientation and text alignment) - is described in <a href="https://drafts.csswg.org/css-text-3/#order"><cite>CSS Text 3</cite> §  Appendix A: Text Processing Order of Operations</a>.</p> + is described in <a href="https://drafts.csswg.org/css-text-3/#order"><cite>CSS Text 3</cite> § A Text Processing Order of Operations</a>.</p> <p>For a good visual overview of these features, see the <a data-link-type="biblio" href="#biblio-opentype-font-guide" title="OpenType User Guide">[OPENTYPE-FONT-GUIDE]</a>. For a detailed description of glyph processing @@ -5519,7 +5518,7 @@ <h4 class="heading settled" data-level="6.9.1" id="font-feature-values-syntax">< <p>The <a class="production css" data-link-type="type">&lt;feature-value-block></a>s accepts any declaration name; these names must be identifiers, per standard CSS syntax rules, -and are <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive">case-sensitive</a> (so <span class="css">foo: 1;</span> and <span class="css">FOO: 2</span> define two different features). +and are <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive">case-sensitive</a> (so <span class="css">foo: 1;</span> and <span class="css">FOO: 2</span> define two different features). Each declaration’s value must match the grammar <span class="css">&lt;integer [0,∞]>+</span>, or else the declaration is invalid and must be ignored.</p> <p class="note" role="note"><span class="marker">Note:</span> Each feature name is unique only within a single <a class="production css" data-link-type="type">&lt;feature-value-block></a>. @@ -7782,7 +7781,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="84252421">&lt;declaration-list></span> <li><span class="dfn-paneled" id="65c9f2cf">&lt;rule-list></span> - <li><span class="dfn-paneled" id="607a5f7c">&lt;urange></span> + <li><span class="dfn-paneled" id="6524d004">&lt;urange></span> <li><span class="dfn-paneled" id="762610c7">at-rule</span> <li><span class="dfn-paneled" id="3bb3a53a">invalid</span> <li><span class="dfn-paneled" id="76c4403d">parse</span> @@ -7863,7 +7862,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e5906a26">case-sensitive</span> + <li><span class="dfn-paneled" id="86c3e5ca">case-sensitive</span> </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: @@ -7888,19 +7887,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-aat-features">[AAT-FEATURES] <dd><a href="https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html"><cite>Apple Advanced Typography Font Feature Registry</cite></a>. URL: <a href="https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html">https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] - <dd>CSS Shapes Module Level 2 URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -7938,7 +7937,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-unicode">[UNICODE] <dd><a href="https://www.unicode.org/versions/latest/"><cite>The Unicode Standard</cite></a>. URL: <a href="https://www.unicode.org/versions/latest/">https://www.unicode.org/versions/latest/</a> <dt id="biblio-uts51">[UTS51] - <dd>Mark Davis; Ned Holbrook. <a href="https://www.unicode.org/reports/tr51/tr51-23.html"><cite>Unicode Emoji</cite></a>. 31 August 2022. Unicode Technical Standard #51. URL: <a href="https://www.unicode.org/reports/tr51/tr51-23.html">https://www.unicode.org/reports/tr51/tr51-23.html</a> + <dd>Mark Davis; Ned Holbrook. <a href="https://www.unicode.org/reports/tr51/tr51-25.html"><cite>Unicode Emoji</cite></a>. 5 September 2023. Unicode Technical Standard #51. URL: <a href="https://www.unicode.org/reports/tr51/tr51-25.html">https://www.unicode.org/reports/tr51/tr51-25.html</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -7947,7 +7946,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-charmod-norm">[CHARMOD-NORM] <dd>Addison Phillips; et al. <a href="https://w3c.github.io/charmod-norm/"><cite>Character Model for the World Wide Web: String Matching</cite></a>. URL: <a href="https://w3c.github.io/charmod-norm/">https://w3c.github.io/charmod-norm/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-font-loading-3">[CSS-FONT-LOADING-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-font-loading/"><cite>CSS Font Loading Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-font-loading/">https://drafts.csswg.org/css-font-loading/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -7955,7 +7954,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-open-font-format">[OPEN-FONT-FORMAT] <dd><a href="http://standards.iso.org/ittf/PubliclyAvailableStandards/c052136_ISO_IEC_14496-22_2009%28E%29.zip"><cite>Information technology — Coding of audio-visual objects — Part 22: Open Font Format</cite></a>. URL: <a href="http://standards.iso.org/ittf/PubliclyAvailableStandards/c052136_ISO_IEC_14496-22_2009%28E%29.zip">http://standards.iso.org/ittf/PubliclyAvailableStandards/c052136_ISO_IEC_14496-22_2009%28E%29.zip</a> <dt id="biblio-opentype-font-guide">[OPENTYPE-FONT-GUIDE] @@ -7963,7 +7962,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-truetype">[TRUETYPE] <dd><a href="https://developer.apple.com/fonts/TrueType-Reference-Manual/"><cite>TrueType™ Reference Manual</cite></a>. URL: <a href="https://developer.apple.com/fonts/TrueType-Reference-Manual/">https://developer.apple.com/fonts/TrueType-Reference-Manual/</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> <dt id="biblio-windows-glyph-proc">[WINDOWS-GLYPH-PROC] <dd>John Hudson. <a href="http://www.microsoft.com/typography/developers/opentype/default.htm"><cite>Windows Glyph Processing</cite></a>. URL: <a href="http://www.microsoft.com/typography/developers/opentype/default.htm">http://www.microsoft.com/typography/developers/opentype/default.htm</a> </dl> @@ -8461,10 +8460,90 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssfontfeaturevaluesrule-fontfamily"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFeatureValuesRule/fontFamily" title="The fontFamily property of the CSSConditionRule interface represents the name of the font family it applies to.">CSSFontFeatureValuesRule/fontFamily</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>16.2+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="cssfontfeaturevaluesrule"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFeatureValuesRule" title="The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.">CSSFontFeatureValuesRule</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>16.2+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssfontpalettevaluesrule-basepalette"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule/basePalette" title="The read-only basePalette property of the CSSFontPaletteValuesRule interface indicates the base palette associated with the rule.">CSSFontPaletteValuesRule/basePalette</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>101+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>101+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-cssfontpalettevaluesrule-fontfamily"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule/fontFamily" title="The read-only fontFamily property of the CSSFontPaletteValuesRule interface lists the font families the rule can be applied to. The font families must be named families; generic families like courier are not valid.">CSSFontPaletteValuesRule/fontFamily</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>101+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>101+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="om-fontpalettevalues"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSFontPaletteValuesRule" title="The CSSFontPaletteValuesRule interface represents an @font-palette-values at-rule.">CSSFontPaletteValuesRule</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>101+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>101+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="font-metrics-override-desc"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/ascent-override" title="The ascent-override CSS descriptor defines the ascent metric for the font. The ascent metric is the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.">@font-face/ascent-override</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/ascent-override" title="The ascent-override CSS descriptor for the @font-face at-rule defines the ascent metric for the font. The ascent metric is the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.">@font-face/ascent-override</a></p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> <hr> @@ -8476,7 +8555,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/descent-override" title="The descent-override CSS descriptor defines the descent metric for the font. The descent metric is the height below the baseline that CSS uses to lay out line boxes in an inline formatting context.">@font-face/descent-override</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/descent-override" title="The descent-override CSS descriptor for the @font-face at-rule defines the descent metric for the font. The descent metric is the height below the baseline that CSS uses to lay out line boxes in an inline formatting context.">@font-face/descent-override</a></p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> <hr> @@ -8488,7 +8567,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/line-gap-override" title="The line-gap-override CSS descriptor defines the line-gap metric for the font. The line-gap metric is the font recommended line-gap or external leading.">@font-face/line-gap-override</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/line-gap-override" title="The line-gap-override CSS descriptor for the @font-face at-rule defines the line-gap metric for the font. The line-gap metric is the font recommended line-gap or external leading.">@font-face/line-gap-override</a></p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> <hr> @@ -8503,7 +8582,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="font-display-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display" title="The font-display descriptor determines how a font face is displayed based on whether and when it is downloaded and ready to use.">@font-face/font-display</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display" title="The font-display descriptor for the @font-face at-rule determines how a font face is displayed based on whether and when it is downloaded and ready to use.">@font-face/font-display</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>58+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> @@ -8519,7 +8598,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="font-family-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-family" title="The font-family CSS descriptor sets the font family for a font specified in an @font-face rule.">@font-face/font-family</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-family" title="The font-family CSS descriptor sets the font family for a font specified in an @font-face at-rule.">@font-face/font-family</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -8532,10 +8611,39 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="font-rend-desc"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-feature-settings" title="The font-feature-settings CSS descriptor allows you to define the initial settings to use for the font defined by the @font-face at-rule. You can further use this descriptor to control typographic font features such as ligatures, small caps, and swashes, for the font defined by @font-face. The values for this descriptor are the same as the font-feature-settings property, except for the global keyword values.">@font-face/font-feature-settings</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings" title="The font-variation-settings CSS descriptor allows authors to specify low-level OpenType or TrueType font variations in the @font-face at-rule. The values for this descriptor are the same as the font-variation-settings property, except for the global keyword values.">@font-face/font-variation-settings</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="font-prop-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch" title="The font-stretch CSS descriptor allows authors to specify a normal, condensed, or expanded face for the fonts specified in the @font-face rule.">@font-face/font-stretch</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch" title="The font-stretch CSS descriptor allows authors to specify a normal, condensed, or expanded face for the fonts specified in the @font-face at-rule.">@font-face/font-stretch</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>62+</span></span> @@ -8548,7 +8656,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style" title="The font-style CSS descriptor allows authors to specify font styles for the fonts specified in the @font-face rule.">@font-face/font-style</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style" title="The font-style CSS descriptor allows authors to specify font styles for the fonts specified in the @font-face at-rule.">@font-face/font-style</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -8561,7 +8669,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight" title="The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.">@font-face/font-weight</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight" title="The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face at-rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.">@font-face/font-weight</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -8616,26 +8724,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="font-rend-desc"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings" title="The font-variation-settings CSS descriptor allows authors to specify low-level OpenType or TrueType font variations in the @font-face rule.">@font-face/font-variation-settings</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="src-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src" title="The src CSS descriptor of the @font-face rule specifies the resource containing font data. It is required for the @font-face rule to be valid.">@font-face/src</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src" title="The src CSS descriptor for the @font-face at-rule specifies the resource containing font data. It is required for the @font-face rule to be valid.">@font-face/src</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span> @@ -8651,7 +8743,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="unicode-range-desc"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range" title="The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined by @font-face and made available for use on the current page. If the page doesn&apos;t use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.">@font-face/unicode-range</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range" title="The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined using the @font-face at-rule and made available for use on the current page. If the page doesn&apos;t use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.">@font-face/unicode-range</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -8695,6 +8787,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="at-ruledef-font-palette-values"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-palette-values" title="The @font-palette-values CSS at-rule allows you to customize the default values of font-palette created by the font-maker.">@font-palette-values</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>101+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>101+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="generic-font-families"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> @@ -8813,7 +8921,23 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="font-palette-prop"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-palette" title="The font-palette CSS property allows specifying one of the many palettes contained in a font that a user agent should use for the font. Users can also override the values in a palette or create a new palette by using the @font-palette-values at-rule.">font-palette</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>101+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>101+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -8904,10 +9028,58 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="font-synthesis-small-caps"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis-small-caps" title="The font-synthesis-small-caps CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters.">font-synthesis-small-caps</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>111+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>97+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>97+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="font-synthesis-style"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis-style" title="The font-synthesis-style CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.">font-synthesis-style</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>111+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>97+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>97+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="font-synthesis-weight"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis-weight" title="The font-synthesis-weight CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.">font-synthesis-weight</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>111+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>97+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>97+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="font-synthesis"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis" title="The font-synthesis CSS property controls which missing typefaces, bold, italic, or small-caps, may be synthesized by the browser.">font-synthesis</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis" title="The font-synthesis shorthand CSS property lets you specify whether or not the browser may synthesize the bold, italic, and/or small-caps typefaces when they are missing in the specified font-family.">font-synthesis</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="chrome yes"><span>Chrome</span><span>97+</span></span> @@ -8916,18 +9088,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="font-variant-alternates-prop"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-alternates" title="The font-variant-alternates CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in @font-feature-values.">font-variant-alternates</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>34+</span></span><span class="safari yes"><span>Safari</span><span>9.1+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -8967,6 +9140,35 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="font-variant-emoji-prop"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-emoji" title="The font-variant-emoji CSS property specifies the default presentation style for displaying emojis.">font-variant-emoji</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 108+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-emoji" title="The font-variant-emoji CSS property specifies the default presentation style for displaying emojis.">font-variant-emoji</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="font-variant-ligatures-prop"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -9017,7 +9219,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="font-variation-settings-def"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variation-settings" title="The font-variation-settings CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.">font-variation-settings</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variation-settings" title="The font-variation-settings CSS property provides low-level control over variable font characteristics by letting you specify the four letter axis names of the characteristics you want to vary along with their values.">font-variation-settings</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>62+</span></span> @@ -9079,9 +9281,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-size-adjust" title="The font-size-adjust attribute allows authors to specify an aspect value for an element that will preserve the x-height of the first choice font in a substitute font.">Attribute/font-size-adjust</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> + <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>?</span></span> <hr> @@ -9312,7 +9514,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5879b11d": {"dfnID":"5879b11d","dfnText":"content language","external":true,"refSections":[{"refs":[{"id":"ref-for-content-language"}],"title":"2.1.3. \nGeneric font families"},{"refs":[{"id":"ref-for-content-language\u2460"},{"id":"ref-for-content-language\u2461"}],"title":"6.2. \nLanguage-specific display"}],"url":"https://drafts.csswg.org/css-text-4/#content-language"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"}],"title":"11.2. \nThe CSSFontFeatureValuesRule interface"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "5fced98b": {"dfnID":"5fced98b","dfnText":"CSSOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-cssomstring"},{"id":"ref-for-cssomstring\u2460"},{"id":"ref-for-cssomstring\u2461"}],"title":"11.2. \nThe CSSFontFeatureValuesRule interface"},{"refs":[{"id":"ref-for-cssomstring\u2462"},{"id":"ref-for-cssomstring\u2463"},{"id":"ref-for-cssomstring\u2464"}],"title":"11.3. \nThe CSSFontPaletteValuesRule interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, -"607a5f7c": {"dfnID":"607a5f7c","dfnText":"<urange>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-urange"},{"id":"ref-for-typedef-urange\u2460"},{"id":"ref-for-typedef-urange\u2461"}],"title":"4.5. \nCharacter range: the unicode-range descriptor"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-urange"}, +"6524d004": {"dfnID":"6524d004","dfnText":"<urange>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-urange"},{"id":"ref-for-typedef-urange\u2460"},{"id":"ref-for-typedef-urange\u2461"}],"title":"4.5. \nCharacter range: the unicode-range descriptor"}],"url":"https://www.w3.org/TR/css-syntax-3/#typedef-urange"}, "65c9f2cf": {"dfnID":"65c9f2cf","dfnText":"<rule-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-rule-list"}],"title":"6.9.1. Basic syntax"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-rule-list"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"2.1. \nFont family: the font-family property"},{"refs":[{"id":"ref-for-mult-comma\u2460"}],"title":"4.5. \nCharacter range: the unicode-range descriptor"},{"refs":[{"id":"ref-for-mult-comma\u2461"},{"id":"ref-for-mult-comma\u2462"}],"title":"4.6. \nFont features and variations: the font-feature-settings and font-variation-settings descriptors"},{"refs":[{"id":"ref-for-mult-comma\u2463"},{"id":"ref-for-mult-comma\u2464"}],"title":"6.8. \nAlternates and swashes: the font-variant-alternates property"},{"refs":[{"id":"ref-for-mult-comma\u2465"}],"title":"6.9.1. Basic syntax"},{"refs":[{"id":"ref-for-mult-comma\u2466"},{"id":"ref-for-mult-comma\u2467"}],"title":"6.11. \nOverall shorthand for font rendering: the font-variant property"},{"refs":[{"id":"ref-for-mult-comma\u2468"}],"title":"6.12. \nLow-level font feature settings control: the font-feature-settings property"},{"refs":[{"id":"ref-for-mult-comma\u2460\u24ea"}],"title":"8.2. \nLow-level font variation settings control: the font-variation-settings property"},{"refs":[{"id":"ref-for-mult-comma\u2460\u2460"}],"title":"9.2.3. \nOverriding a color from a palette: The override-color descriptor"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6cb740a0": {"dfnID":"6cb740a0","dfnText":"oblique","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-font-style-oblique"}],"title":"2.4. \nFont style: the font-style property"},{"refs":[{"id":"ref-for-valdef-font-style-oblique\u2460"},{"id":"ref-for-valdef-font-style-oblique\u2461"},{"id":"ref-for-valdef-font-style-oblique\u2462"},{"id":"ref-for-valdef-font-style-oblique\u2463"},{"id":"ref-for-valdef-font-style-oblique\u2464"},{"id":"ref-for-valdef-font-style-oblique\u2465"}],"title":"5.2. Matching font styles"}],"url":"https://drafts.csswg.org/css2/#valdef-font-style-oblique"}, @@ -9322,6 +9524,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "762610c7": {"dfnID":"762610c7","dfnText":"at-rule","external":true,"refSections":[{"refs":[{"id":"ref-for-at-rule"}],"title":"6.9.1. Basic syntax"}],"url":"https://drafts.csswg.org/css-syntax-3/#at-rule"}, "76c4403d": {"dfnID":"76c4403d","dfnText":"parse","external":true,"refSections":[{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar"}],"title":"11.3. \nThe CSSFontPaletteValuesRule interface"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, "84252421": {"dfnID":"84252421","dfnText":"<declaration-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-declaration-list"}],"title":"4.1. \nThe @font-face rule"},{"refs":[{"id":"ref-for-typedef-declaration-list\u2460"}],"title":"6.9.1. Basic syntax"},{"refs":[{"id":"ref-for-typedef-declaration-list\u2461"}],"title":"9.2. \nUser-defined font color palettes: The @font-palette-values rule"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-declaration-list"}, +"86c3e5ca": {"dfnID":"86c3e5ca","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-case-sensitive"}],"title":"6.9.1. Basic syntax"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"11.1. \nThe CSSFontFaceRule interface"},{"refs":[{"id":"ref-for-Exposed\u2460"},{"id":"ref-for-Exposed\u2461"}],"title":"11.2. \nThe CSSFontFeatureValuesRule interface"},{"refs":[{"id":"ref-for-Exposed\u2462"}],"title":"11.3. \nThe CSSFontPaletteValuesRule interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"},{"id":"ref-for-comb-any\u2461"}],"title":"2.7. \nShorthand font property: the font property"},{"refs":[{"id":"ref-for-comb-any\u2462"},{"id":"ref-for-comb-any\u2463"}],"title":"2.8.4. \nControlling synthetic faces: the font-synthesis shorthand"},{"refs":[{"id":"ref-for-comb-any\u2464"},{"id":"ref-for-comb-any\u2465"},{"id":"ref-for-comb-any\u2466"}],"title":"6.4. \nLigatures: the font-variant-ligatures property"},{"refs":[{"id":"ref-for-comb-any\u2467"},{"id":"ref-for-comb-any\u2468"},{"id":"ref-for-comb-any\u2460\u24ea"},{"id":"ref-for-comb-any\u2460\u2460"}],"title":"6.7. \nNumerical formatting: the font-variant-numeric property"},{"refs":[{"id":"ref-for-comb-any\u2460\u2461"},{"id":"ref-for-comb-any\u2460\u2462"},{"id":"ref-for-comb-any\u2460\u2463"},{"id":"ref-for-comb-any\u2460\u2464"},{"id":"ref-for-comb-any\u2460\u2465"},{"id":"ref-for-comb-any\u2460\u2466"}],"title":"6.8. \nAlternates and swashes: the font-variant-alternates property"},{"refs":[{"id":"ref-for-comb-any\u2460\u2467"},{"id":"ref-for-comb-any\u2460\u2468"}],"title":"6.10. \nEast Asian text rendering: the font-variant-east-asian property"},{"refs":[{"id":"ref-for-comb-any\u2461\u24ea"},{"id":"ref-for-comb-any\u2461\u2460"},{"id":"ref-for-comb-any\u2461\u2461"},{"id":"ref-for-comb-any\u2461\u2462"},{"id":"ref-for-comb-any\u2461\u2463"},{"id":"ref-for-comb-any\u2461\u2464"},{"id":"ref-for-comb-any\u2461\u2465"},{"id":"ref-for-comb-any\u2461\u2466"},{"id":"ref-for-comb-any\u2461\u2467"},{"id":"ref-for-comb-any\u2461\u2468"},{"id":"ref-for-comb-any\u2462\u24ea"},{"id":"ref-for-comb-any\u2462\u2460"},{"id":"ref-for-comb-any\u2462\u2461"},{"id":"ref-for-comb-any\u2462\u2462"},{"id":"ref-for-comb-any\u2462\u2463"},{"id":"ref-for-comb-any\u2462\u2464"},{"id":"ref-for-comb-any\u2462\u2465"},{"id":"ref-for-comb-any\u2462\u2466"},{"id":"ref-for-comb-any\u2462\u2467"},{"id":"ref-for-comb-any\u2462\u2468"}],"title":"6.11. \nOverall shorthand for font rendering: the font-variant property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "8f393f47": {"dfnID":"8f393f47","dfnText":"ascent metric","external":true,"refSections":[{"refs":[{"id":"ref-for-ascent-metric"},{"id":"ref-for-ascent-metric\u2460"}],"title":"4.11. \nDefault font metrics overriding:\nthe ascent-override, descent-override and line-gap-override descriptors"}],"url":"https://drafts.csswg.org/css-inline-3/#ascent-metric"}, @@ -9403,7 +9606,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"}],"title":"2.1.1. \nSyntax of <family-name>\n"},{"refs":[{"id":"ref-for-identifier-value\u2460"}],"title":"9.2. \nUser-defined font color palettes: The @font-palette-values rule"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, "e2e08d07": {"dfnID":"e2e08d07","dfnText":"transform","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transform"}],"title":"8.1. \nOptical sizing control: the font-optical-sizing property"}],"url":"https://drafts.csswg.org/css-transforms-1/#propdef-transform"}, "e4ffca7f": {"dfnID":"e4ffca7f","dfnText":"declarations","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstyledeclaration-declarations"}],"title":"6.9.1. Basic syntax"}],"url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations"}, -"e5906a26": {"dfnID":"e5906a26","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-def_case_sensitive"}],"title":"6.9.1. Basic syntax"}],"url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, "e8bcf956": {"dfnID":"e8bcf956","dfnText":"rem","external":true,"refSections":[{"refs":[{"id":"ref-for-rem"}],"title":"2.5. \nFont size: the font-size property"}],"url":"https://drafts.csswg.org/css-values-4/#rem"}, "e8ff0bb4": {"dfnID":"e8ff0bb4","dfnText":"em","external":true,"refSections":[{"refs":[{"id":"ref-for-em"}],"title":"2.5. \nFont size: the font-size property"},{"refs":[{"id":"ref-for-em\u2460"}],"title":"5.2. Matching font styles"}],"url":"https://drafts.csswg.org/css-values-4/#em"}, "e97a9688": {"dfnID":"e97a9688","dfnText":"unsigned long","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-unsigned-long"},{"id":"ref-for-idl-unsigned-long\u2460"},{"id":"ref-for-idl-unsigned-long\u2461"}],"title":"11.2. \nThe CSSFontFeatureValuesRule interface"},{"refs":[{"id":"ref-for-idl-unsigned-long\u2462"}],"title":"11.3. \nThe CSSFontPaletteValuesRule interface"}],"url":"https://webidl.spec.whatwg.org/#idl-unsigned-long"}, @@ -9969,7 +10171,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let linkTitleData = { "#generic-family-value": "Expands to: cursive | emoji | fangsong | fantasy | math | monospace | sans-serif | serif | system-ui | ui-monospace | ui-rounded | ui-sans-serif | ui-serif", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#url-value": "Expands to: local url flag", }; @@ -10169,7 +10371,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, "https://drafts.csswg.org/css-syntax-3/#typedef-declaration-list": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<declaration-list>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-declaration-list"}, "https://drafts.csswg.org/css-syntax-3/#typedef-rule-list": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<rule-list>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-rule-list"}, -"https://drafts.csswg.org/css-syntax-3/#typedef-urange": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<urange>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-urange"}, "https://drafts.csswg.org/css-text-4/#content-language": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"content language","type":"dfn","url":"https://drafts.csswg.org/css-text-4/#content-language"}, "https://drafts.csswg.org/css-text-4/#propdef-letter-spacing": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"letter-spacing","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, "https://drafts.csswg.org/css-text-4/#propdef-text-transform": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-transform","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, @@ -10212,7 +10413,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://fetch.spec.whatwg.org/#concept-request": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"request","type":"dfn","url":"https://fetch.spec.whatwg.org/#concept-request"}, "https://html.spec.whatwg.org/multipage/obsolete.html#font": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"font","type":"element","url":"https://html.spec.whatwg.org/multipage/obsolete.html#font"}, "https://infra.spec.whatwg.org/#tuple": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"tuple","type":"dfn","url":"https://infra.spec.whatwg.org/#tuple"}, -"https://w3c.github.io/i18n-glossary/#def_case_sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, +"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#dfn-throw": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"throw","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-throw"}, "https://webidl.spec.whatwg.org/#idl-sequence": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"sequence","type":"dfn","url":"https://webidl.spec.whatwg.org/#idl-sequence"}, @@ -10220,6 +10421,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-unsigned-long": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned long","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-long"}, "https://webidl.spec.whatwg.org/#idl-unsigned-short": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"unsigned short","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"https://www.w3.org/TR/css-syntax-3/#typedef-urange": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"snapshot","text":"<urange>","type":"type","url":"https://www.w3.org/TR/css-syntax-3/#typedef-urange"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.console.txt index ee894aa443..f733b0afcd 100644 --- a/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.console.txt @@ -58,3 +58,4 @@ LINE ~319: No 'property' refs found for 'superscript-size-override'. 'superscript-size-override' LINE ~319: No 'property' refs found for 'subscript-size-override'. 'subscript-size-override' +LINE 374: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.html b/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.html index fa1377bcc2..8b82fe82a9 100644 --- a/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-fonts-5/Overview.html @@ -5,7 +5,6 @@ <title>CSS Fonts Module Level 5</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-fonts-5/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1081,7 +1080,7 @@ <h1 class="p-name no-ref" id="title">CSS Fonts Module Level 5</h1> please contact the CSSWG at www-style@w3.org. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1103,7 +1102,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-fonts] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-fonts%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1206,7 +1205,7 @@ <h2 class="heading settled" data-level="2" id="basic-font-props"><span class="se <p class="issue" id="issue-d41d8cd9"><a class="self-link" href="#issue-d41d8cd9"></a> <a href="https://github.com/w3c/csswg-drafts/issues/126">[Issue #126]</a></p> <h3 class="heading settled" data-level="2.1" id="font-family-prop"><span class="secno">2.1. </span><span class="content"> Font family: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-fonts-4/#propdef-font-family" id="ref-for-propdef-font-family">font-family</a> property</span><a class="self-link" href="#font-family-prop"></a></h3> <h4 class="heading settled" data-level="2.1.1" id="generic-font-families"><span class="secno">2.1.1. </span><span class="content"> Generic font families</span><a class="self-link" href="#generic-font-families"></a></h4> - <p>In addition to the <a href="https://drafts.csswg.org/css-fonts-4/#generic-font-families"><cite>CSS Fonts 4</cite> § 2.1.3 Generic font families</a> in CSS Fonts Level 4, the following new generic font families are also defined.</p> + <p>In addition to the <a href="https://drafts.csswg.org/css-fonts-4/#generic-font-families"><cite>CSS Fonts 4</cite> § 2.1.5 Generic font families</a> in CSS Fonts Level 4, the following new generic font families are also defined.</p> <p class="issue" id="issue-d41d8cd9①"><a class="self-link" href="#issue-d41d8cd9①"></a> <a href="https://github.com/w3c/csswg-drafts/issues/4910">[Issue #4910]</a></p> <p class="issue" id="issue-d41d8cd9②"><a class="self-link" href="#issue-d41d8cd9②"></a> <a href="https://github.com/w3c/csswg-drafts/issues/5054">[Issue #5054]</a></p> <dl> @@ -1673,11 +1672,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-4/"><cite>CSS Text Decoration Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-4/">https://drafts.csswg.org/css-text-decor-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -1692,7 +1691,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> </dl> @@ -1763,7 +1762,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="size-adjust-desc"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/size-adjust" title="The size-adjust CSS descriptor defines a multiplier for glyph outlines and metrics associated with this font. This makes it easier to harmonize the designs of various fonts when rendered at the same font size.">@font-face/size-adjust</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/size-adjust" title="The size-adjust CSS descriptor for the @font-face at-rule defines a multiplier for glyph outlines and metrics associated with this font. This makes it easier to harmonize the designs of various fonts when rendered at the same font size.">@font-face/size-adjust</a></p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>92+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>92+</span></span> <hr> @@ -1776,12 +1775,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="font-size-adjust-prop"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size-adjust" title="The font-size-adjust CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).">font-size-adjust</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>92+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>92+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -1792,9 +1790,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size-adjust" title="The font-size-adjust CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).">font-size-adjust</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> diff --git a/tests/github/w3c/csswg-drafts/css-forms-1/Overview.html b/tests/github/w3c/csswg-drafts/css-forms-1/Overview.html index 6f5953c039..1160f34487 100644 --- a/tests/github/w3c/csswg-drafts/css-forms-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-forms-1/Overview.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2188,8 +2189,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. +the editors have made this specification available under the <a href="https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, +which is available at https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> <hr title="Separator for header"> </div> @@ -2563,9 +2564,9 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-rfc2119">[RFC2119] diff --git a/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.console.txt index df97eadef2..1ec3769aa8 100644 --- a/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.console.txt @@ -79,8 +79,6 @@ LINE 57: The propdef for '<dfn bs-line-number=1 id="string-set">string-set</dfn> LINE 341: The propdef for '<dfn bs-line-number=1 id="running-property">running</dfn>' is missing a 'Animation type' line. LINE 460: The propdef for '<dfn bs-line-number=1 id="propdef-footnote-display">footnote-display</dfn>' is missing a 'Animation type' line. LINE 586: The propdef for '<dfn bs-line-number=1 id="footnote-policy">footnote-policy</dfn>' is missing a 'Animation type' line. -LINE ~511: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 48: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="48" data-lt="named string" data-dfn-type="dfn" id="named-string" data-noexport="by-default" class="dfn-paneled">Named strings</dfn> diff --git a/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.html b/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.html index 55f9b8681b..94dac5439c 100644 --- a/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-gcpm-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Generated Content for Paged Media Module</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-gcpm-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -731,7 +730,7 @@ <h1 class="p-name no-ref" id="title">CSS Generated Content for Paged Media Modul </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -753,7 +752,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-gcpm] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-gcpm%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1230,7 +1229,7 @@ <h4 class="heading settled" data-level="2.4.1" id="footnote-area-position"><span <p class="issue" id="issue-069a39a3"><a class="self-link" href="#issue-069a39a3"></a>How do footnotes work in multi-column text? Prince uses <code>float: prince-column-footnote</code> to create a footnote at the bottom of a column rather than the bottom of a page.</p> <p class="issue" id="issue-34f910d8"><a class="self-link" href="#issue-34f910d8"></a>Implementations that support footnotes generally support page floats like <code>float: bottom</code>. Page floats should end up above the footnote area. How might this be specified?</p> <h4 class="heading settled" data-level="2.4.2" id="footnote-area-size"><span class="secno">2.4.2. </span><span class="content">Size of the footnote area</span><a class="self-link" href="#footnote-area-size"></a></h4> - <p>The <a class="property css" data-link-type="property">max-height</a> property on the footnote area limits the size of this area, unless the page contains only footnotes (as may happen on the last page of a document).</p> + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a> property on the footnote area limits the size of this area, unless the page contains only footnotes (as may happen on the last page of a document).</p> <p>Since it is undesirable for a page to consist only of footnotes, user agents <em class="RFC2119">may</em> set a default max-height value on the footnote area.</p> <h3 class="heading settled" data-level="2.5" id="footnote-counters"><span class="secno">2.5. </span><span class="content">The Footnote Counter</span><a class="self-link" href="#footnote-counters"></a></h3> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="footnote-counter">footnote counter</dfn> is a predefined <a href="https://drafts.csswg.org/css-lists/#counter">counter</a> associated with the footnote element. Its value is the number or symbol used to identify the footnote. This value is used in both the footnote call and the footnote marker. It should be incremented for each footnote.</p> @@ -1665,6 +1664,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="358fd6ff">css-wide keywords</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -1700,7 +1704,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-content">[CSS3-CONTENT] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> </dl> @@ -2050,6 +2054,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"}],"title":"1.1.1. \n\tThe string-set property\n"},{"refs":[{"id":"ref-for-identifier-value\u2460"}],"title":"1.1.2. \n\tThe string() function\n"},{"refs":[{"id":"ref-for-identifier-value\u2461"},{"id":"ref-for-identifier-value\u2462"}],"title":"1.2.1. \nThe running() value\n"},{"refs":[{"id":"ref-for-identifier-value\u2463"}],"title":"1.2.2. \nThe element() value\n"},{"refs":[{"id":"ref-for-identifier-value\u2464"}],"title":"3.1. \nPage Selectors\n"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, "entry-value": {"dfnID":"entry-value","dfnText":"entry value","external":false,"refSections":[],"url":"#entry-value"}, "exit-value": {"dfnID":"exit-value","dfnText":"exit value","external":false,"refSections":[],"url":"#exit-value"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"2.4.2. Size of the footnote area"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "footnote-counter": {"dfnID":"footnote-counter","dfnText":"footnote counter","external":false,"refSections":[],"url":"#footnote-counter"}, "footnote-display-block": {"dfnID":"footnote-display-block","dfnText":"block","external":false,"refSections":[],"url":"#footnote-display-block"}, "footnote-display-compact": {"dfnID":"footnote-display-compact","dfnText":"compact","external":false,"refSections":[],"url":"#footnote-display-compact"}, @@ -2459,7 +2464,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-content-3/#typedef-content-content-list": "Expands to: close-quote | contents | leader() | no-close-quote | no-open-quote | open-quote", +"https://drafts.csswg.org/css-content-3/#typedef-content-content-list": "Expands to: attr() | close-quote | contents | leader() | no-close-quote | no-open-quote | open-quote", }; function setTypeTitles() { @@ -2500,6 +2505,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#mult-one-plus": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"+","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-one-plus"}, "https://drafts.csswg.org/css-values-4/#mult-opt": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"?","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-gcpm-4/Overview.html b/tests/github/w3c/csswg-drafts/css-gcpm-4/Overview.html index 5116e66daf..24e2895665 100644 --- a/tests/github/w3c/csswg-drafts/css-gcpm-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-gcpm-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Generated Content for Paged Media Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-gcpm-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -732,7 +731,7 @@ <h1 class="p-name no-ref" id="title">CSS Generated Content for Paged Media Modul please contact the CSSWG at www-style@w3.org. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -754,7 +753,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-gcpm-4] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-gcpm-4%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1200,9 +1199,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css3-page-template">[CSS3-PAGE-TEMPLATE] <dd>Alan Stearns. <a href="https://drafts.csswg.org/css-page-template-1/"><cite>CSS Pagination Templates Module Level 3</cite></a>. Proposal for a CSS module. URL: <a href="https://drafts.csswg.org/css-page-template-1/">https://drafts.csswg.org/css-page-template-1/</a> <dt id="biblio-css3gcpm">[CSS3GCPM] - <dd>Dave Cramer. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> + <dd>Rachel Andrew; Mike Bremford. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-dpub-latinreq">[DPUB-LATINREQ] <dd>Dave Cramer. <a href="https://w3c.github.io/dpub-pagination/"><cite>Requirements for Latin Text Layout and Pagination</cite></a>. URL: <a href="https://w3c.github.io/dpub-pagination/">https://w3c.github.io/dpub-pagination/</a> </dl> diff --git a/tests/github/w3c/csswg-drafts/css-grid-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-grid-1/Overview.console.txt index 24c334c24e..ba8e08b7b4 100644 --- a/tests/github/w3c/csswg-drafts/css-grid-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-grid-1/Overview.console.txt @@ -8,7 +8,7 @@ LINE 1250:4: Spurious / in <img>. LINE 1688:4: Spurious / in <img>. LINE 2488:5: Spurious / in <img>. LINT: Your document appears to use tabs to indent, but line 3681 starts with spaces. -WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +WARNING: There are 1212 WPT tests underneath your path prefix 'css/css-grid/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) css/css-grid/abspos/absolute-positioning-changing-containing-block-001.html css/css-grid/abspos/absolute-positioning-definite-sizes-001.html css/css-grid/abspos/absolute-positioning-grid-container-containing-block-001.html @@ -343,6 +343,7 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/alignment/grid-content-distribution-026.html css/css-grid/alignment/grid-content-distribution-027.html css/css-grid/alignment/grid-content-distribution-028.html + css/css-grid/alignment/grid-content-distribution-029.html css/css-grid/alignment/grid-content-distribution-with-collapsed-tracks-001.html css/css-grid/alignment/grid-content-distribution-with-collapsed-tracks-002.html css/css-grid/alignment/grid-content-distribution-with-collapsed-tracks-003.html @@ -397,6 +398,8 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/alignment/grid-item-alignment-with-orthogonal-flows-vertical-lr.html css/css-grid/alignment/grid-item-alignment-with-orthogonal-flows-vertical-rl.html css/css-grid/alignment/grid-item-alignment-with-orthogonal-flows.html + css/css-grid/alignment/grid-item-aspect-ratio-justify-self-001.html + css/css-grid/alignment/grid-item-aspect-ratio-justify-self-002.html css/css-grid/alignment/grid-item-aspect-ratio-stretch-1.html css/css-grid/alignment/grid-item-aspect-ratio-stretch-2.html css/css-grid/alignment/grid-item-aspect-ratio-stretch-3.html @@ -586,6 +589,7 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-005.html css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-006.html css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-007.html + css/css-grid/animation/grid-no-interpolation.html css/css-grid/animation/grid-template-columns-001.html css/css-grid/animation/grid-template-columns-composition.html css/css-grid/animation/grid-template-columns-interpolation.html @@ -608,7 +612,13 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/dynamic-grid-with-auto-fill.html css/css-grid/dynamic-grid-within-flexbox.html css/css-grid/empty-grid-within-flexbox.html + css/css-grid/fieldset-first-line-crash.html + css/css-grid/firefox-bug-1881495.html css/css-grid/grid-child-percent-basis-resize-1.html + css/css-grid/grid-container-baseline-synthesized-001.html + css/css-grid/grid-container-baseline-synthesized-002.html + css/css-grid/grid-container-baseline-synthesized-003.html + css/css-grid/grid-container-baseline-synthesized-004.html css/css-grid/grid-definition/explicit-grid-size-001.html css/css-grid/grid-definition/flex-content-distribution-001.html css/css-grid/grid-definition/flex-content-resolution-columns-001.html @@ -628,7 +638,6 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/grid-definition/grid-auto-repeat-dynamic-002.html css/css-grid/grid-definition/grid-auto-repeat-dynamic-003.html css/css-grid/grid-definition/grid-auto-repeat-intrinsic-001.html - css/css-grid/grid-definition/grid-auto-repeat-max-size-001.html css/css-grid/grid-definition/grid-auto-repeat-max-size-002.html css/css-grid/grid-definition/grid-auto-repeat-min-max-size-001.html css/css-grid/grid-definition/grid-auto-repeat-min-size-001.html @@ -669,6 +678,8 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/grid-definition/grid-support-repeat-002.html css/css-grid/grid-definition/grid-template-columns-rows-changes-001.html css/css-grid/grid-definition/grid-template-columns-rows-resolved-values-001.html + css/css-grid/grid-important.html + css/css-grid/grid-in-table-cell-with-img.html css/css-grid/grid-item-non-auto-height-stretch-001.html css/css-grid/grid-item-non-auto-height-stretch-002.html css/css-grid/grid-item-non-auto-height-stretch-003.html @@ -912,7 +923,11 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/grid-model/grid-size-shrink-to-fit-001.html css/css-grid/grid-model/grid-support-display-001.html css/css-grid/grid-model/grid-vertical-align-001.html + css/css-grid/grid-relayout-with-nested-grid.html + css/css-grid/grid-table-cell-001-crash.html + css/css-grid/grid-tracks-fractional-fr.html css/css-grid/grid-tracks-stretched-with-different-flex-factors-sum.html + css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html css/css-grid/grid-with-content-dynamic-display-001.html css/css-grid/grid-with-content-dynamic-display-002.html css/css-grid/grid-with-dynamic-img.html @@ -966,14 +981,14 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html css/css-grid/layout-algorithm/grid-stretch-respects-min-size-001.html css/css-grid/layout-algorithm/grid-template-flexible-rerun-track-sizing.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-001.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-002.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-003.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-004.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-001.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-multi-001.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-stretch-001.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-stretch-002.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-001.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-002.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-003.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-004.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-001.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-002.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-003.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-004.html css/css-grid/masonry/tentative/baseline/masonry-grid-item-content-baseline-001.html css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-001.html css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002a.html @@ -981,18 +996,23 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-001.html css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-002.html css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-003.html - css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-004.html - css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-005.html - css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-006.html css/css-grid/masonry/tentative/gap/masonry-gap-001.html + css/css-grid/masonry/tentative/gap/masonry-gap-002.html css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-001.html css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-002.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-001.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-002.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-003.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-004.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-005.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-006.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-001.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-002.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-003.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-004.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-005.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-006.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-007.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-001.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-002.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-003.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-004.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-005.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-006.html css/css-grid/masonry/tentative/item-placement/masonry-columns-item-placement-auto-flow-next-001.html css/css-grid/masonry/tentative/item-placement/masonry-item-placement-001.html css/css-grid/masonry/tentative/item-placement/masonry-item-placement-002.html @@ -1003,22 +1023,21 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/masonry/tentative/item-placement/masonry-item-placement-007.html css/css-grid/masonry/tentative/item-placement/masonry-item-placement-008.html css/css-grid/masonry/tentative/item-placement/masonry-rows-item-placement-auto-flow-next-001.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-001.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-002.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-003.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-004.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-001.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-multi-001.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-stretch-001.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-stretch-002.html + css/css-grid/masonry/tentative/item-placement/masonry-rows-with-grid-width-changed.html + css/css-grid/masonry/tentative/masonry-columns-item-containing-block-is-grid-content-width.html css/css-grid/masonry/tentative/masonry-grid-template-columns-computed-withcontent.html + css/css-grid/masonry/tentative/masonry-not-inhibited-001.html css/css-grid/masonry/tentative/order/masonry-order-001.html css/css-grid/masonry/tentative/order/masonry-order-002.html css/css-grid/masonry/tentative/parsing/masonry-parsing.html css/css-grid/masonry/tentative/subgrid/masonry-subgrid-001.html css/css-grid/masonry/tentative/subgrid/masonry-subgrid-002.html + css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize.html + css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-explicit-block.html css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-left-side.html css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-right-side.html + css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-span-row.html + css/css-grid/min-size-auto-overflow-clip.html css/css-grid/nested-grid-item-block-size-001.html css/css-grid/parsing/grid-area-computed.html css/css-grid/parsing/grid-area-shorthand.html @@ -1032,8 +1051,14 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/parsing/grid-auto-rows-computed.html css/css-grid/parsing/grid-auto-rows-invalid.html css/css-grid/parsing/grid-auto-rows-valid.html + css/css-grid/parsing/grid-column-invalid.html + css/css-grid/parsing/grid-column-shortest-serialization.html + css/css-grid/parsing/grid-column-shorthand.html css/css-grid/parsing/grid-columns-rows-get-set-multiple.html css/css-grid/parsing/grid-content-sized-columns-resolution.html + css/css-grid/parsing/grid-row-invalid.html + css/css-grid/parsing/grid-row-shortest-serialization.html + css/css-grid/parsing/grid-row-shorthand.html css/css-grid/parsing/grid-shorthand-invalid.html css/css-grid/parsing/grid-shorthand-serialization.html css/css-grid/parsing/grid-shorthand-valid.html @@ -1042,7 +1067,10 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/parsing/grid-template-areas-valid.html css/css-grid/parsing/grid-template-columns-computed-implicit-track.html css/css-grid/parsing/grid-template-columns-computed-nogrid.html + css/css-grid/parsing/grid-template-columns-crash.html css/css-grid/parsing/grid-template-columns-valid.html + css/css-grid/parsing/grid-template-important.html + css/css-grid/parsing/grid-template-node-not-connected.html css/css-grid/parsing/grid-template-repeat-auto-computed-withcontent-001.html css/css-grid/parsing/grid-template-repeat-auto-computed-withcontent-002.html css/css-grid/parsing/grid-template-rows-computed-implicit-track.html @@ -1075,15 +1103,31 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/placement/grid-placement-using-named-grid-lines-009.html css/css-grid/placement/grid-template-areas-must-keep-named-columns-order-001.html css/css-grid/relative-grandchild.html + css/css-grid/stretch-grid-item-button-overflow.html css/css-grid/stretch-grid-item-checkbox-input.html css/css-grid/stretch-grid-item-radio-input.html + css/css-grid/stretch-grid-item-text-input-overflow.html css/css-grid/subgrid/abs-pos-001.html css/css-grid/subgrid/abs-pos-002.html + css/css-grid/subgrid/align-self-baseline-with-subgrid-mbp.html + css/css-grid/subgrid/alignment-in-subgridded-axes-001.html + css/css-grid/subgrid/alignment-in-subgridded-axes-002.html css/css-grid/subgrid/auto-track-sizing-001.html css/css-grid/subgrid/auto-track-sizing-002.html + css/css-grid/subgrid/auto-track-sizing-003.html + css/css-grid/subgrid/auto-track-sizing-004.html css/css-grid/subgrid/baseline-001.html - css/css-grid/subgrid/contain-strict-nested-subgrid-crash.html - css/css-grid/subgrid/contain-strict-subgrid-crash.html + css/css-grid/subgrid/contribution-size-flex-tracks-001.html + css/css-grid/subgrid/crashtests/contain-strict-nested-subgrid.html + css/css-grid/subgrid/crashtests/contain-strict-subgrid.html + css/css-grid/subgrid/crashtests/subgrid-reflow-root.html + css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-001.html + css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html + css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-003.html + css/css-grid/subgrid/dynamic-min-content-001.html + css/css-grid/subgrid/dynamic-min-content-002.html + css/css-grid/subgrid/dynamic-min-content-003.html + css/css-grid/subgrid/dynamic-subgridded-item-height.html css/css-grid/subgrid/grid-gap-001.html css/css-grid/subgrid/grid-gap-002.html css/css-grid/subgrid/grid-gap-003.html @@ -1095,17 +1139,16 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/subgrid/grid-gap-009.html css/css-grid/subgrid/grid-gap-010.html css/css-grid/subgrid/grid-gap-011.html + css/css-grid/subgrid/grid-gap-012.html css/css-grid/subgrid/grid-gap-larger-001.html css/css-grid/subgrid/grid-gap-larger-002.html css/css-grid/subgrid/grid-gap-normal-001.html css/css-grid/subgrid/grid-gap-smaller-001.html - css/css-grid/subgrid/grid-subgridded-axis-auto-repeater-crash-001.html - css/css-grid/subgrid/grid-subgridded-axis-auto-repeater-crash-002.html - css/css-grid/subgrid/grid-subgridded-axis-auto-repeater-crash-003.html css/css-grid/subgrid/grid-template-computed-nogrid.html css/css-grid/subgrid/grid-template-invalid.html css/css-grid/subgrid/grid-template-valid.html css/css-grid/subgrid/independent-formatting-context.html + css/css-grid/subgrid/independent-tracks-from-parent-grid.html css/css-grid/subgrid/item-percentage-height-001.html css/css-grid/subgrid/line-names-001.html css/css-grid/subgrid/line-names-002.html @@ -1118,12 +1161,20 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/subgrid/line-names-009.html css/css-grid/subgrid/line-names-010.html css/css-grid/subgrid/line-names-011.html + css/css-grid/subgrid/line-names-012.html + css/css-grid/subgrid/line-names-013.html css/css-grid/subgrid/orthogonal-writing-mode-001.html css/css-grid/subgrid/orthogonal-writing-mode-002.html css/css-grid/subgrid/orthogonal-writing-mode-003.html css/css-grid/subgrid/orthogonal-writing-mode-004.html + css/css-grid/subgrid/orthogonal-writing-mode-005.html + css/css-grid/subgrid/orthogonal-writing-mode-006.html + css/css-grid/subgrid/overflow-hidden-does-not-prohibit-subgrid.html css/css-grid/subgrid/parent-repeat-auto-fit-001.html css/css-grid/subgrid/parent-repeat-auto-fit-002.html + css/css-grid/subgrid/percentage-track-sizing.html + css/css-grid/subgrid/placement-implicit-001.html + css/css-grid/subgrid/placement-invalidation-001.html css/css-grid/subgrid/repeat-auto-fill-001.html css/css-grid/subgrid/repeat-auto-fill-002.html css/css-grid/subgrid/repeat-auto-fill-003.html @@ -1132,13 +1183,38 @@ WARNING: There are 1136 WPT tests underneath your path prefix 'css/css-grid/' th css/css-grid/subgrid/repeat-auto-fill-006.html css/css-grid/subgrid/repeat-auto-fill-007.html css/css-grid/subgrid/repeat-auto-fill-008.html + css/css-grid/subgrid/repeat-auto-fill-009.html + css/css-grid/subgrid/scrollbar-gutter-001.html + css/css-grid/subgrid/scrollbar-gutter-002.html + css/css-grid/subgrid/standalone-axis-size-001.html + css/css-grid/subgrid/standalone-axis-size-002.html + css/css-grid/subgrid/standalone-axis-size-003.html + css/css-grid/subgrid/standalone-axis-size-004.html + css/css-grid/subgrid/standalone-axis-size-005.html + css/css-grid/subgrid/standalone-axis-size-006.html + css/css-grid/subgrid/standalone-axis-size-007.html + css/css-grid/subgrid/standalone-axis-size-008.html + css/css-grid/subgrid/standalone-axis-size-009.html css/css-grid/subgrid/subgrid-baseline-001.html css/css-grid/subgrid/subgrid-baseline-002.html css/css-grid/subgrid/subgrid-baseline-003.html css/css-grid/subgrid/subgrid-baseline-004.html + css/css-grid/subgrid/subgrid-baseline-005.html + css/css-grid/subgrid/subgrid-baseline-006.html + css/css-grid/subgrid/subgrid-baseline-007.html + css/css-grid/subgrid/subgrid-baseline-008.html + css/css-grid/subgrid/subgrid-baseline-009.html + css/css-grid/subgrid/subgrid-baseline-010.html + css/css-grid/subgrid/subgrid-baseline-011.html + css/css-grid/subgrid/subgrid-baseline-012.html + css/css-grid/subgrid/subgrid-button.html css/css-grid/subgrid/subgrid-item-block-size-001.html - css/css-grid/subgrid/subgrid-reflow-root-crash.html + css/css-grid/subgrid/subgrid-no-items-on-edges-001.html + css/css-grid/subgrid/subgrid-no-items-on-edges-002.html css/css-grid/subgrid/subgrid-stretch.html + css/css-grid/subgrid/writing-directions-001.html + css/css-grid/subgrid/writing-directions-002.html + css/css-grid/subgrid/writing-directions-003.html css/css-grid/table-grid-item-005.html css/css-grid/table-grid-item-dynamic-001.html css/css-grid/table-grid-item-dynamic-002.html @@ -1157,53 +1233,11 @@ WARNING: Image doesn't exist, so I couldn't determine its width and height: 'ima WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/grid-named-lines.png' LINE 2407: Image doesn't exist, so I couldn't determine its width and height: 'images/auto-flow.svg' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/auto-placed-form.png' -LINE ~1170: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1170: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE 1388: No 'property' refs found for 'min-width' with spec 'css2'. -''min-width: 12em'' -LINE ~1566: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1566: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' +LINE 1022: No 'dfn' refs found for 'text runs'. +<a bs-line-number="1022" data-link-type="dfn" data-lt="text runs">text runs</a> +LINE 1024: No 'dfn' refs found for 'text runs'. +<a bs-line-number="1024" data-link-type="dfn" data-lt="text runs">text runs</a> LINE 2098: No 'dfn' refs found for 'name code points'. <a bs-line-number="2098" data-link-type="dfn" data-lt="name code points">name code points</a> -LINE ~3177: No 'property' refs found for 'margin' with spec 'css2'. -'margin' -LINE ~3484: No 'property' refs found for 'margin' with spec 'css2'. -'margin' -LINE 4411: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="4411" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 4415: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="4415" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 4459: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="4459" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE 4460: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="4460" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 4465: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="4465" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE 4466: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="4466" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 4518: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="4518" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE ~5249: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~5249: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE 5464: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="5464" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE ~5523: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~5523: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~5693: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~5693: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~1124: Couldn't find section '#q10.0' in spec 'css2': -[[CSS2#q10.0]] -LINE ~1133: Couldn't find section '/visudet#blockwidth' in spec 'css2': -[[CSS2/visudet#blockwidth]] LINE 5746: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: No 'subgrids' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-grid-1/Overview.html b/tests/github/w3c/csswg-drafts/css-grid-1/Overview.html index d450f6be68..86aab55cc8 100644 --- a/tests/github/w3c/csswg-drafts/css-grid-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-grid-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Grid Layout Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-grid-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1137,7 +1136,7 @@ <h1 class="p-name no-ref" id="title">CSS Grid Layout Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1159,7 +1158,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-grid] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-grid%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -2016,8 +2015,8 @@ <h3 class="heading settled" data-level="5.4" id="overlarge-grids"><span class="s <h2 class="heading settled" data-level="6" id="grid-items"><span class="secno">6. </span><span class="content"> Grid Items</span><a class="self-link" href="#grid-items"></a></h2> <p>Loosely speaking, the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="grid item" id="grid-item">grid items</dfn> of a <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container②⑦">grid container</a> are boxes representing its in-flow contents.</p> <p>Each in-flow child of a <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container②⑧">grid container</a> becomes a <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item②②">grid item</a>, - and each contiguous sequence of child <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text runs</a> is wrapped in an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> <span id="ref-for-grid-item②③">grid item</span>. - However, if the entire sequence of child <span id="ref-for-text-run①">text runs</span> contains only <a href="https://www.w3.org/TR/CSS2/text.html#white-space-prop">white space</a> (i.e. characters that can be affected by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> property) + and each contiguous sequence of child <a data-link-type="dfn">text runs</a> is wrapped in an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> <span id="ref-for-grid-item②③">grid item</span>. + However, if the entire sequence of child <span>text runs</span> contains only <a href="https://www.w3.org/TR/CSS2/text.html#white-space-prop">white space</a> (i.e. characters that can be affected by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> property) it is instead not rendered (just as if its <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-nodes" id="ref-for-text-nodes">text nodes</a> were <span class="css">display:none</span>).</p> <div class="example" id="example-4842bdfd"> <a class="self-link" href="#example-4842bdfd"></a> @@ -2085,11 +2084,11 @@ <h3 class="heading settled" data-level="6.2" id="grid-item-sizing"><span class=" the grid item is sized consistent with the size calculation rules for block-level elements for the corresponding axis. -(See <span spec-section="#q10.0"></span>.)</p> +(See <a href="https://www.w3.org/TR/CSS21/visudet.html#q10.0"><cite>CSS 2.1</cite> §  10 Visual formatting model details</a>.)</p> <dt data-md><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-align-3/#valdef-align-self-stretch" id="ref-for-valdef-align-self-stretch①">stretch</a> <dd data-md> <p>Use the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#inline-size" id="ref-for-inline-size①">inline size</a> calculation rules for non-replaced boxes -(defined in <span spec-section="/visudet#blockwidth"></span>), +(defined in <a href="https://www.w3.org/TR/CSS21/visudet.html#blockwidth"><cite>CSS 2.1</cite> § 10.3.3 Block-level, non-replaced elements in normal flow</a>), i.e. the <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#stretch-fit-size" id="ref-for-stretch-fit-size">stretch-fit size</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> This can distort the aspect ratio of an item with a <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-4/#preferred-aspect-ratio" id="ref-for-preferred-aspect-ratio①">preferred aspect ratio</a>, @@ -2122,7 +2121,7 @@ <h3 class="heading settled" data-level="6.2" id="grid-item-sizing"><span class=" <td>Use <a data-link-type="dfn" href="https://drafts.csswg.org/css-images-3/#natural-size" id="ref-for-natural-size②">natural size</a> </table> </div> - <p class="note" role="note"><span class="marker">Note:</span> The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> value of <a class="property css" data-link-type="property">min-width</a> and <span class="property">min-height</span> affects track sizing in the relevant axis + <p class="note" role="note"><span class="marker">Note:</span> The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a> affects track sizing in the relevant axis similar to how it affects the main size of a <a data-link-type="dfn" href="https://drafts.csswg.org/css-flexbox-1/#flex-item" id="ref-for-flex-item①">flex item</a>. See <a href="#min-size-auto">§ 6.6 Automatic Minimum Size of Grid Items</a>.</p> <h3 class="heading settled" data-level="6.3" id="order-property"><span class="secno">6.3. </span><span class="content"> Reordered Grid Items: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-4/#propdef-order" id="ref-for-propdef-order③">order</a> property</span><a class="self-link" href="#order-property"></a></h3> @@ -2145,18 +2144,18 @@ <h3 class="heading settled" data-level="6.4" id="item-margins"><span class="secn <p>Auto margins expand to absorb extra space in the corresponding dimension, and can therefore be used for alignment. See <a href="#auto-margins">§ 10.2 Aligning with auto margins</a></p> - <h3 class="heading settled" data-level="6.5" id="z-order"><span class="secno">6.5. </span><span class="content"> Z-axis Ordering: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property</span><a class="self-link" href="#z-order"></a></h3> + <h3 class="heading settled" data-level="6.5" id="z-order"><span class="secno">6.5. </span><span class="content"> Z-axis Ordering: the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property</span><a class="self-link" href="#z-order"></a></h3> <p><a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item③③">Grid items</a> can overlap when they are positioned into intersecting <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area①④">grid areas</a>, or even when positioned in non-intersecting areas because of negative margins or positioning. The painting order of <span id="ref-for-grid-item③④">grid items</span> is exactly the same as inline blocks <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, except that <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#order-modified-document-order" id="ref-for-order-modified-document-order">order-modified document order</a> is used in place of raw document order, - and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> values other than <a class="css" data-link-type="value" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a> (behaving exactly as if <span class="property" id="ref-for-propdef-position①">position</span> were <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-relative" id="ref-for-valdef-position-relative">relative</a>). + and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> values other than <a class="css" data-link-type="value" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a> (behaving exactly as if <span class="property" id="ref-for-propdef-position①">position</span> were <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-relative" id="ref-for-valdef-position-relative">relative</a>). Thus the <span class="property" id="ref-for-propdef-z-index②">z-index</span> property can easily be used to control the z-axis order of grid items.</p> <p class="note" role="note"> Note: Descendants that are positioned outside a grid item still participate in any stacking context established by the grid item. </p> <div class="example" id="example-ae2f6ea5"> <a class="self-link" href="#example-ae2f6ea5"></a> The following diagram shows several overlapping grid items, with a combination of implicit source order - and explicit <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index③">z-index</a> used to control their stacking order. + and explicit <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index③">z-index</a> used to control their stacking order. <figure> <img src="images/drawing-order.png"> <figcaption>Drawing order controlled by z-index and source order.</figcaption> @@ -2256,7 +2255,7 @@ <h3 class="heading settled" data-level="6.6" id="min-size-auto"><span class="sec and helps prevent content from overlapping or spilling outside its container, in some cases it is not: <p>In particular, if grid layout is being used for a major content area of a document, - it is better to set an explicit font-relative minimum width such as <a class="css" data-link-type="propdesc">min-width: 12em</a>. + it is better to set an explicit font-relative minimum width such as <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width: 12em</a>. A content-based minimum width could result in a large table or large image stretching the size of the entire content area, potentially into an overflow zone, and thereby making lines of text needlessly long and hard to read.</p> @@ -2394,7 +2393,7 @@ <h4 class="heading settled" data-level="7.2.1" id="track-sizes"><span class="sec however, unlike <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-max-content" id="ref-for-valdef-grid-template-columns-max-content①">max-content</a>, allows expansion of the track by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-align-content" id="ref-for-propdef-align-content①">align-content</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-justify-content" id="ref-for-propdef-justify-content①">justify-content</a> properties. - <p>As a <em>minimum</em>: represents the largest <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width③">minimum size</a> (specified by <a class="property css" data-link-type="property">min-width</a>/<span class="property">min-height</span>) + <p>As a <em>minimum</em>: represents the largest <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width③">minimum size</a> (specified by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a>) of the <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item④⓪">grid items</a> occupying the <a data-link-type="dfn" href="#grid-track" id="ref-for-grid-track①③">grid track</a>. (This initially is often, but not always, equal to a <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-min-content" id="ref-for-valdef-grid-template-columns-min-content①">min-content</a> minimum—​see <a href="#min-size-auto">§ 6.6 Automatic Minimum Size of Grid Items</a>.)</p> @@ -3673,7 +3672,7 @@ <h3 class="heading settled" data-level="8.4" id="placement-shorthands"><span cla Otherwise, it is set to <a class="css" data-link-type="value" href="#grid-placement-auto" id="ref-for-grid-placement-auto⑧">auto</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> The resolution order for this shorthand is row-start/column-start/row-end/column-end, which goes <abbr title="counterclockwise">CCW</abbr> for <abbr title="left-to-right">LTR</abbr> pages, - the opposite direction of the related 4-edge properties using physical directions, like <a class="property css" data-link-type="property">margin</a>.</p> + the opposite direction of the related 4-edge properties using physical directions, like <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin">margin</a>.</p> <h3 class="heading settled" data-level="8.5" id="auto-placement-algo"><span class="secno">8.5. </span><span class="content"> Grid Item Placement Algorithm</span><a class="self-link" href="#auto-placement-algo"></a></h3> <p>The following <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-local-lt="auto-placement algorithm" id="grid-item-placement-algorithm">grid item placement algorithm</dfn> resolves <a data-link-type="dfn" href="#automatic-grid-position" id="ref-for-automatic-grid-position">automatic positions</a> of <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item⑦②">grid items</a> into <a data-link-type="dfn" href="#definite-grid-position" id="ref-for-definite-grid-position">definite positions</a>, ensuring that every <span id="ref-for-grid-item⑦③">grid item</span> has a well-defined <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area②②">grid area</a> to lay out into. @@ -3908,7 +3907,7 @@ <h3 class="heading settled" data-level="9.2" id="static-position"><span class="s <h2 class="heading settled" data-level="10" id="alignment"><span class="secno">10. </span><span class="content"> Alignment and Spacing</span><a class="self-link" href="#alignment"></a></h2> <p>After a <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container⑦⑦">grid container</a>’s <a data-link-type="dfn" href="#grid-track" id="ref-for-grid-track②④">grid tracks</a> have been sized, and the dimensions of all <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item⑧⑦">grid items</a> are finalized, <span id="ref-for-grid-item⑧⑧">grid items</span> can be aligned within their <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area③①">grid areas</a>.</p> - <p>The <a class="property css" data-link-type="property">margin</a> properties can be used to align items in a manner similar to + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin①">margin</a> properties can be used to align items in a manner similar to what margins can do in block layout. <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item⑧⑨">Grid items</a> also respect the <a data-link-type="dfn" href="https://drafts.csswg.org/css-align-3/#box-alignment-properties" id="ref-for-box-alignment-properties①">box alignment properties</a> from the <a href="http://www.w3.org/TR/css-align/">CSS Box Alignment Module</a> <a data-link-type="biblio" href="#biblio-css-align-3" title="CSS Box Alignment Module Level 3">[CSS-ALIGN-3]</a>, which allow easy keyword-based alignment of items in both the rows and columns.</p> <p>By default, <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item⑨⓪">grid items</a> stretch to fill their <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area③②">grid area</a>. @@ -4494,10 +4493,10 @@ <h3 class="heading settled" data-level="11.6" id="algo-grow-tracks"><span class= if sizing under a <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-content-constraint" id="ref-for-min-content-constraint④">min-content constraint</a>, the <span id="ref-for-free-space⑤">free space</span> is zero.</p> <p>If this would cause the grid to be larger than - the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①⓪③">grid container’s</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size②">inner size</a> as limited by its <a class="css" data-link-type="property">max-width/height</a>, + the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①⓪③">grid container’s</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size②">inner size</a> as limited by its <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width/height</a>, then redo this step, treating the <a data-link-type="dfn" href="#available-grid-space" id="ref-for-available-grid-space⑤">available grid space</a> as equal to - the <span id="ref-for-grid-container①⓪④">grid container’s</span> <span id="ref-for-inner-size③">inner size</span> when it’s sized to its <span>max-width/height</span>.</p> + the <span id="ref-for-grid-container①⓪④">grid container’s</span> <span id="ref-for-inner-size③">inner size</span> when it’s sized to its <span id="ref-for-propdef-max-width①">max-width/height</span>.</p> <h3 class="heading settled" data-level="11.7" id="algo-flex-tracks"><span class="secno">11.7. </span><span class="content"> Expand Flexible Tracks</span><a class="self-link" href="#algo-flex-tracks"></a></h3> <p>This step sizes <a data-link-type="dfn" href="#flexible-tracks" id="ref-for-flexible-tracks⑤">flexible tracks</a> using the largest value it can assign to an <a class="css" data-link-type="maybe" href="#valdef-flex-fr" id="ref-for-valdef-flex-fr⑥">fr</a> without exceeding the <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#available" id="ref-for-available⑥">available space</a>.</p> <p>First, find the grid’s used <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction">flex fraction</a>:</p> @@ -4520,11 +4519,11 @@ <h3 class="heading settled" data-level="11.7" id="algo-flex-tracks"><span class= the result of <a href="#algo-find-fr-size">finding the size of an fr</a> using all the grid tracks that the item crosses and a <a data-link-type="dfn" href="#space-to-fill" id="ref-for-space-to-fill①">space to fill</a> of the item’s <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#max-content-contribution" id="ref-for-max-content-contribution①⓪">max-content contribution</a>. </ul> - <p>If using this <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction④">flex fraction</a> would cause the <a data-link-type="dfn" href="#grid" id="ref-for-grid②④">grid</a> to be smaller than the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①⓪⑥">grid container’s</a> <a class="css" data-link-type="property">min-width/height</a> (or larger than the <span id="ref-for-grid-container①⓪⑦">grid container’s</span> <span>max-width/height</span>), + <p>If using this <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction④">flex fraction</a> would cause the <a data-link-type="dfn" href="#grid" id="ref-for-grid②④">grid</a> to be smaller than the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①⓪⑥">grid container’s</a> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width③">min-width/height</a> (or larger than the <span id="ref-for-grid-container①⓪⑦">grid container’s</span> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width/height</a>), then redo this step, treating the <a data-link-type="dfn" href="#free-space" id="ref-for-free-space⑨">free space</a> as definite and the <a data-link-type="dfn" href="#available-grid-space" id="ref-for-available-grid-space⑦">available grid space</a> as equal to - the <span id="ref-for-grid-container①⓪⑧">grid container’s</span> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size④">inner size</a> when it’s sized to its <span>min-width/height</span> (<span>max-width/height</span>).</p> + the <span id="ref-for-grid-container①⓪⑧">grid container’s</span> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size④">inner size</a> when it’s sized to its <span id="ref-for-propdef-min-width④">min-width/height</span> (<span id="ref-for-propdef-max-width③">max-width/height</span>).</p> </dl> <p>For each <a data-link-type="dfn" href="#flexible-tracks" id="ref-for-flexible-tracks⑥">flexible track</a>, if the product of the used <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction⑤">flex fraction</a> and the track’s <a data-link-type="dfn" href="#grid-template-columns-flex-factor" id="ref-for-grid-template-columns-flex-factor⑨">flex factor</a> is greater than the track’s <a data-link-type="dfn" href="#base-size" id="ref-for-base-size②⑧">base size</a>, @@ -4549,7 +4548,7 @@ <h3 class="heading settled" data-level="11.8" id="algo-stretch"><span class="sec <p>This step expands tracks that have an <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-auto" id="ref-for-valdef-grid-template-columns-auto⑥">auto</a> <a data-link-type="dfn" href="#max-track-sizing-function" id="ref-for-max-track-sizing-function②①">max track sizing function</a> by dividing any remaining positive, <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#definite" id="ref-for-definite①⑧">definite</a> <a data-link-type="dfn" href="#free-space" id="ref-for-free-space①⓪">free space</a> equally amongst them. If the <span id="ref-for-free-space①①">free space</span> is <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#indefinite" id="ref-for-indefinite⑧">indefinite</a>, - but the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①⓪⑨">grid container</a> has a <span id="ref-for-definite①⑨">definite</span> <a class="css" data-link-type="property">min-width/height</a>, + but the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①⓪⑨">grid container</a> has a <span id="ref-for-definite①⑨">definite</span> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑤">min-width/height</a>, use that size to calculate the <span id="ref-for-free-space①②">free space</span> for this step instead.</p> <h2 class="heading settled" data-level="12" id="pagination"><span class="secno">12. </span><span class="content"> Fragmenting Grid Layout</span><a class="self-link" href="#pagination"></a></h2> <p> <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①①⓪">Grid containers</a> can break across pages @@ -5239,7 +5238,7 @@ <h4 class="heading settled" id="clarify-2017"><span class="content"> Clarificati is the smallest outer size it can have. Specifically, it is the outer size that would result from assuming - the item’s used <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width⑥">minimum size</a> (<a class="property css" data-link-type="property">min-width</a> or <span class="property">min-height</span>, whichever matches the relevant axis) + the item’s used <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width⑥">minimum size</a> (<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑥">min-width</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height②">min-height</a>, whichever matches the relevant axis) as its <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#preferred-size" id="ref-for-preferred-size④">preferred size</a> (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width①">width</a> or <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, whichever matches the relevant axis) if its computed <span id="ref-for-preferred-size⑤">preferred size</span> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#behave-as-auto" id="ref-for-behave-as-auto②">behaves as auto</a> <ins>or depends on the size of the container in the relevant axis</ins> @@ -5425,7 +5424,7 @@ <h4 class="heading settled" id="fixes-2016"><span class="content"> Significant A <p>This step sizes expands tracks that have an <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-auto" id="ref-for-valdef-grid-template-columns-auto①⑤">auto</a> <a data-link-type="dfn" href="#max-track-sizing-function" id="ref-for-max-track-sizing-function③④">max track sizing function</a> by dividing any remaining positive, <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#definite" id="ref-for-definite②②">definite</a> <a data-link-type="dfn" href="#free-space" id="ref-for-free-space①④">free space</a> equally amongst them. If the <span id="ref-for-free-space①⑤">free space</span> is <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#indefinite" id="ref-for-indefinite⑨">indefinite</a>, - but the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①③②">grid container</a> has a <span id="ref-for-definite②③">definite</span> <a class="css" data-link-type="property">min-width/height</a>, + but the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①③②">grid container</a> has a <span id="ref-for-definite②③">definite</span> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑦">min-width/height</a>, use that size to calculate the <span id="ref-for-free-space①⑥">free space</span> for this step instead. </p> </ins> </blockquote> @@ -5473,7 +5472,7 @@ <h4 class="heading settled" id="fixes-2016"><span class="content"> Significant A so that this implied minimum does not end up forcing overflow: <blockquote> <p> - … the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto⑤">auto</a> value of <a class="property css" data-link-type="property">min-width</a>/<span class="property">min-height</span> also applies an <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#automatic-minimum-size" id="ref-for-automatic-minimum-size⑥">automatic minimum size</a> in the specified axis + … the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto⑤">auto</a> value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑧">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height③">min-height</a> also applies an <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#automatic-minimum-size" id="ref-for-automatic-minimum-size⑥">automatic minimum size</a> in the specified axis to <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item①③④">grid items</a> whose <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow②">overflow</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible" id="ref-for-valdef-overflow-visible">visible</a> <ins>and which span at least one <a data-link-type="dfn" href="#grid-track" id="ref-for-grid-track③⑥">track</a> whose <a data-link-type="dfn" href="#min-track-sizing-function" id="ref-for-min-track-sizing-function②①">min track sizing function</a> is <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-auto" id="ref-for-valdef-grid-template-columns-auto①⑦">auto</a></ins> . @@ -5657,7 +5656,7 @@ <h4 class="heading settled" id="clarify-2016"><span class="content"> Clarificati <del>value specified by its respective</del> <ins>outer size that would result from assuming the item’s</ins> - <a class="property css" data-link-type="property">min-width</a> or <span class="property">min-height</span> value + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑨">min-width</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height④">min-height</a> value (whichever matches the relevant axis) <ins>as its specified size</ins> if its specified size @@ -6079,7 +6078,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="ba9b3d06">order-modified document order</span> <li><span class="dfn-paneled" id="a8485ff4">replaced element</span> <li><span class="dfn-paneled" id="b30820a7">text node</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> </ul> <li> <a data-link-type="biblio">[CSS-FLEXBOX-1]</a> defines the following terms: @@ -6224,13 +6222,21 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5515c98f">margin</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d332e4ec">auto</span> <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS3-BREAK]</a> defines the following terms: @@ -6279,9 +6285,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] @@ -6289,7 +6295,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -6713,7 +6719,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row" title="The grid-row CSS shorthand property specifies a grid item&apos;s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.">grid-row</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row" title="The grid-row CSS shorthand property specifies a grid item&apos;s size and location within a grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.">grid-row</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>52+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> @@ -7100,7 +7106,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "190183bb": {"dfnID":"190183bb","dfnText":"block size","external":true,"refSections":[{"refs":[{"id":"ref-for-block-size"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-block-size\u2460"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-block-size\u2461"},{"id":"ref-for-block-size\u2462"}],"title":"11.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-size"}, "1a548a6a": {"dfnID":"1a548a6a","dfnText":"blockify","external":true,"refSections":[{"refs":[{"id":"ref-for-blockify"}],"title":"6.1. \n\tGrid Item Display"},{"refs":[{"id":"ref-for-blockify\u2460"},{"id":"ref-for-blockify\u2461"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-display-4/#blockify"}, "1cf918c1": {"dfnID":"1cf918c1","dfnText":"specified value","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-value"}],"title":"7.3.1. \nSerialization Of Template Strings"},{"refs":[{"id":"ref-for-specified-value\u2460"},{"id":"ref-for-specified-value\u2461"}],"title":"\nMajor Changes"}],"url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"},{"id":"ref-for-text-run\u2460"}],"title":"6. \nGrid Items"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "23177077": {"dfnID":"23177077","dfnText":"scrollable overflow rectangle","external":true,"refSections":[{"refs":[{"id":"ref-for-scrollable-overflow-rectangle"}],"title":"5.3. \nScrollable Grid Overflow"}],"url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-rectangle"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"}],"title":"2. \nOverview"},{"refs":[{"id":"ref-for-flex-container\u2460"}],"title":"7.2.4. \nFlexible Lengths: the fr unit"},{"refs":[{"id":"ref-for-flex-container\u2461"}],"title":"11.1. \nGrid Sizing Algorithm"},{"refs":[{"id":"ref-for-flex-container\u2462"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, "26a40c98": {"dfnID":"26a40c98","dfnText":"max-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-max-content"}],"title":"5.2. \nSizing Grid Containers"}],"url":"https://drafts.csswg.org/css-sizing-3/#max-content"}, @@ -7116,6 +7121,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-inline-size\u2460"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-inline-size\u2461"}],"title":"6.4. \nGrid Item Margins and Paddings"},{"refs":[{"id":"ref-for-inline-size\u2462"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-inline-size\u2463"},{"id":"ref-for-inline-size\u2464"},{"id":"ref-for-inline-size\u2465"}],"title":"11.1. \nGrid Sizing Algorithm"},{"refs":[{"id":"ref-for-inline-size\u2466"}],"title":"\nSignificant Adjustments and Fixes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"9.1. \nWith a Grid Container as Containing Block"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"11.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3a74ed0c": {"dfnID":"3a74ed0c","dfnText":"flex-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-flow"}],"title":"11.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-propdef-min-height\u2460"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-propdef-min-height\u2461"},{"id":"ref-for-propdef-min-height\u2463"}],"title":"\nClarifications"},{"refs":[{"id":"ref-for-propdef-min-height\u2462"}],"title":"\nSignificant Adjustments and Fixes"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3dd2faef": {"dfnID":"3dd2faef","dfnText":"space-evenly","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-align-content-space-evenly"}],"title":"10.5. \nAligning the Grid: the justify-content and align-content properties"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly"}, "3f0db204": {"dfnID":"3f0db204","dfnText":"min-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-min-content\u2460"},{"id":"ref-for-min-content\u2461"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "3f92298d": {"dfnID":"3f92298d","dfnText":"stretch-fit size","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit-size"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-stretch-fit-size\u2460"}],"title":"\nSignificant Adjustments and Fixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-size"}, @@ -7127,6 +7133,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4bc11993": {"dfnID":"4bc11993","dfnText":"center","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-self-position-center"}],"title":"6.2. \n\tGrid Item Sizing"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-self-position-center"}, "521eb6d4": {"dfnID":"521eb6d4","dfnText":"multi-column container","external":true,"refSections":[{"refs":[{"id":"ref-for-multi-column-container"}],"title":"11.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-multicol-1/#multi-column-container"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"},{"id":"ref-for-mult-opt\u2465"},{"id":"ref-for-mult-opt\u2466"}],"title":"7.2. \nExplicit Track Sizing: the grid-template-rows and grid-template-columns properties"},{"refs":[{"id":"ref-for-mult-opt\u2467"},{"id":"ref-for-mult-opt\u2468"},{"id":"ref-for-mult-opt\u2460\u24ea"},{"id":"ref-for-mult-opt\u2460\u2460"},{"id":"ref-for-mult-opt\u2460\u2461"},{"id":"ref-for-mult-opt\u2460\u2462"}],"title":"7.2.3.1. \nSyntax of repeat()"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2463"},{"id":"ref-for-mult-opt\u2460\u2464"},{"id":"ref-for-mult-opt\u2460\u2465"},{"id":"ref-for-mult-opt\u2460\u2466"}],"title":"7.4. \nExplicit Grid Shorthand: the grid-template property"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2467"},{"id":"ref-for-mult-opt\u2460\u2468"},{"id":"ref-for-mult-opt\u2461\u24ea"},{"id":"ref-for-mult-opt\u2461\u2460"}],"title":"7.8. \nGrid Definition Shorthand: the grid property"},{"refs":[{"id":"ref-for-mult-opt\u2461\u2461"}],"title":"8.3. \nLine-based Placement: the grid-row-start, grid-column-start, grid-row-end, and grid-column-end properties"},{"refs":[{"id":"ref-for-mult-opt\u2461\u2462"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"},{"id":"ref-for-propdef-z-index\u2462"}],"title":"6.5. \nZ-axis Ordering: the z-index property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"5515c98f": {"dfnID":"5515c98f","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"},{"refs":[{"id":"ref-for-propdef-margin\u2460"}],"title":"10. \nAlignment and Spacing"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, "56177fad": {"dfnID":"56177fad","dfnText":"shorthand","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"}],"title":"7.1. \nThe Explicit Grid"},{"refs":[{"id":"ref-for-shorthand-property\u2460"}],"title":"7.4. \nExplicit Grid Shorthand: the grid-template property"},{"refs":[{"id":"ref-for-shorthand-property\u2461"}],"title":"7.5. \nThe Implicit Grid"},{"refs":[{"id":"ref-for-shorthand-property\u2462"},{"id":"ref-for-shorthand-property\u2463"}],"title":"7.8. \nGrid Definition Shorthand: the grid property"},{"refs":[{"id":"ref-for-shorthand-property\u2464"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, "5738a20e": {"dfnID":"5738a20e","dfnText":"orthogonal flow","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-orthogonal-flow"}],"title":"11.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#establish-an-orthogonal-flow"}, "584e9c31": {"dfnID":"584e9c31","dfnText":"calc()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-calc"}],"title":"7.2.4. \nFlexible Lengths: the fr unit"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-calc"}, @@ -7185,6 +7193,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"7.2.6. \nResolved Value of a Track Listing"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"},{"id":"ref-for-propdef-bottom\u2460"}],"title":"9.1. \nWith a Grid Container as Containing Block"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"}],"title":"6.4. \nGrid Item Margins and Paddings"},{"refs":[{"id":"ref-for-writing-mode\u2460"}],"title":"8.1.2. \nNumeric Indexes and Spans"},{"refs":[{"id":"ref-for-writing-mode\u2461"}],"title":"10.6. \nGrid Container Baselines"},{"refs":[{"id":"ref-for-writing-mode\u2462"},{"id":"ref-for-writing-mode\u2463"}],"title":"\nMinor Changes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"},{"id":"ref-for-propdef-max-width\u2460"}],"title":"11.6. \nMaximize Tracks"},{"refs":[{"id":"ref-for-propdef-max-width\u2461"},{"id":"ref-for-propdef-max-width\u2462"}],"title":"11.7. \nExpand Flexible Tracks"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a758a91a": {"dfnID":"a758a91a","dfnText":"establishes an independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-independent-formatting-context"}],"title":"6.1. \n\tGrid Item Display"}],"url":"https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"6.1. \n\tGrid Item Display"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-replaced-element\u2461"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"},{"refs":[{"id":"ref-for-replaced-element\u2462"}],"title":"\nChanges since the 18 December 2020 CR"},{"refs":[{"id":"ref-for-replaced-element\u2463"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "ac9b4191": {"dfnID":"ac9b4191","dfnText":"baseline set","external":true,"refSections":[{"refs":[{"id":"ref-for-baseline-set"},{"id":"ref-for-baseline-set\u2460"}],"title":"10.6. \nGrid Container Baselines"},{"refs":[{"id":"ref-for-baseline-set\u2461"},{"id":"ref-for-baseline-set\u2462"},{"id":"ref-for-baseline-set\u2463"},{"id":"ref-for-baseline-set\u2464"}],"title":"\nMinor Changes"}],"url":"https://drafts.csswg.org/css-align-3/#baseline-set"}, @@ -7211,7 +7220,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "bf7aa8ab": {"dfnID":"bf7aa8ab","dfnText":"whitespace","external":true,"refSections":[{"refs":[{"id":"ref-for-whitespace"}],"title":"7.3. \nNamed Areas: the grid-template-areas property"},{"refs":[{"id":"ref-for-whitespace\u2460"},{"id":"ref-for-whitespace\u2461"}],"title":"\nMajor Changes"}],"url":"https://drafts.csswg.org/css-syntax-3/#whitespace"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"},{"id":"ref-for-propdef-break-before\u2460"},{"id":"ref-for-propdef-break-before\u2461"}],"title":"12. \nFragmenting Grid Layout"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, "c21450f8": {"dfnID":"c21450f8","dfnText":"sub-property","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"}],"title":"7.8. \nGrid Definition Shorthand: the grid property"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"},{"id":"ref-for-propdef-z-index\u2462"}],"title":"6.5. \nZ-axis Ordering: the z-index property"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "ca4fcf76": {"dfnID":"ca4fcf76","dfnText":"distributed alignment","external":true,"refSections":[{"refs":[{"id":"ref-for-distributed-alignment"}],"title":"7.2.3.2. \nRepeat-to-fill: auto-fill and auto-fit repetitions"},{"refs":[{"id":"ref-for-distributed-alignment\u2460"},{"id":"ref-for-distributed-alignment\u2461"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-align-3/#distributed-alignment"}, "ca960d4f": {"dfnID":"ca960d4f","dfnText":"block formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-block-formatting-context"}],"title":"5.1. \nEstablishing Grid Containers: the grid and inline-grid display values"},{"refs":[{"id":"ref-for-block-formatting-context\u2460"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-block-formatting-context\u2461"}],"title":"\nSignificant Adjustments and Fixes"}],"url":"https://drafts.csswg.org/css-display-4/#block-formatting-context"}, "caea2fff": {"dfnID":"caea2fff","dfnText":"scrollable overflow region","external":true,"refSections":[{"refs":[{"id":"ref-for-scrollable-overflow-region"}],"title":"5.3. \nScrollable Grid Overflow"}],"url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region"}, @@ -7242,6 +7250,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"}],"title":"7.2. \nExplicit Track Sizing: the grid-template-rows and grid-template-columns properties"},{"refs":[{"id":"ref-for-identifier-value\u2460"},{"id":"ref-for-identifier-value\u2461"}],"title":"7.2.2. \nNaming Grid Lines: the [<custom-ident>*] syntax"},{"refs":[{"id":"ref-for-identifier-value\u2462"},{"id":"ref-for-identifier-value\u2463"},{"id":"ref-for-identifier-value\u2464"},{"id":"ref-for-identifier-value\u2465"},{"id":"ref-for-identifier-value\u2466"},{"id":"ref-for-identifier-value\u2467"},{"id":"ref-for-identifier-value\u2468"},{"id":"ref-for-identifier-value\u2460\u24ea"},{"id":"ref-for-identifier-value\u2460\u2460"},{"id":"ref-for-identifier-value\u2460\u2461"},{"id":"ref-for-identifier-value\u2460\u2462"},{"id":"ref-for-identifier-value\u2460\u2463"}],"title":"8.3. \nLine-based Placement: the grid-row-start, grid-column-start, grid-row-end, and grid-column-end properties"},{"refs":[{"id":"ref-for-identifier-value\u2460\u2464"},{"id":"ref-for-identifier-value\u2460\u2465"},{"id":"ref-for-identifier-value\u2460\u2466"},{"id":"ref-for-identifier-value\u2460\u2467"},{"id":"ref-for-identifier-value\u2460\u2468"},{"id":"ref-for-identifier-value\u2461\u24ea"},{"id":"ref-for-identifier-value\u2461\u2460"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"},{"refs":[{"id":"ref-for-identifier-value\u2461\u2461"}],"title":"\nMajor Changes"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, "e3bdfa96": {"dfnID":"e3bdfa96","dfnText":"stretch fit","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"},{"refs":[{"id":"ref-for-stretch-fit\u2460"}],"title":"11.1. \nGrid Sizing Algorithm"},{"refs":[{"id":"ref-for-stretch-fit\u2461"},{"id":"ref-for-stretch-fit\u2462"}],"title":"\nSignificant Adjustments and Fixes"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit"}, "e3ec4d32": {"dfnID":"e3ec4d32","dfnText":"discrete","external":true,"refSections":[{"refs":[{"id":"ref-for-discrete"}],"title":"7.2.3.3. \nInterpolation/Combination of repeat()"}],"url":"https://drafts.csswg.org/web-animations-1/#discrete"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-propdef-min-width\u2460"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"},{"refs":[{"id":"ref-for-propdef-min-width\u2461"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-propdef-min-width\u2462"},{"id":"ref-for-propdef-min-width\u2463"}],"title":"11.7. \nExpand Flexible Tracks"},{"refs":[{"id":"ref-for-propdef-min-width\u2464"}],"title":"11.8. \nStretch auto Tracks"},{"refs":[{"id":"ref-for-propdef-min-width\u2465"},{"id":"ref-for-propdef-min-width\u2468"}],"title":"\nClarifications"},{"refs":[{"id":"ref-for-propdef-min-width\u2466"},{"id":"ref-for-propdef-min-width\u2467"}],"title":"\nSignificant Adjustments and Fixes"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"},{"id":"ref-for-propdef-display\u2461"},{"id":"ref-for-propdef-display\u2462"},{"id":"ref-for-propdef-display\u2463"}],"title":"5.1. \nEstablishing Grid Containers: the grid and inline-grid display values"},{"refs":[{"id":"ref-for-propdef-display\u2464"},{"id":"ref-for-propdef-display\u2465"},{"id":"ref-for-propdef-display\u2466"},{"id":"ref-for-propdef-display\u2467"},{"id":"ref-for-propdef-display\u2468"},{"id":"ref-for-propdef-display\u2460\u24ea"},{"id":"ref-for-propdef-display\u2460\u2460"}],"title":"6.1. \n\tGrid Item Display"},{"refs":[{"id":"ref-for-propdef-display\u2460\u2461"}],"title":"7.2.6. \nResolved Value of a Track Listing"},{"refs":[{"id":"ref-for-propdef-display\u2460\u2462"},{"id":"ref-for-propdef-display\u2460\u2463"},{"id":"ref-for-propdef-display\u2460\u2464"},{"id":"ref-for-propdef-display\u2460\u2465"},{"id":"ref-for-propdef-display\u2460\u2466"},{"id":"ref-for-propdef-display\u2460\u2467"}],"title":"\nClarifications"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"},{"id":"ref-for-containing-block\u2460"}],"title":"6.4. \nGrid Item Margins and Paddings"},{"refs":[{"id":"ref-for-containing-block\u2461"}],"title":"8. \nPlacing Grid Items"},{"refs":[{"id":"ref-for-containing-block\u2462"},{"id":"ref-for-containing-block\u2463"},{"id":"ref-for-containing-block\u2464"},{"id":"ref-for-containing-block\u2465"},{"id":"ref-for-containing-block\u2466"}],"title":"9.1. \nWith a Grid Container as Containing Block"},{"refs":[{"id":"ref-for-containing-block\u2467"}],"title":"9.2. \nWith a Grid Container as Parent"},{"refs":[{"id":"ref-for-containing-block\u2468"}],"title":"11.5. \nResolve Intrinsic Track Sizes"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "ed3eb665": {"dfnID":"ed3eb665","dfnText":"natural size","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-size"},{"id":"ref-for-natural-size\u2460"},{"id":"ref-for-natural-size\u2461"}],"title":"6.2. \n\tGrid Item Sizing"}],"url":"https://drafts.csswg.org/css-images-3/#natural-size"}, @@ -8018,7 +8027,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-4/#propdef-order": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"order","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-order"}, "https://drafts.csswg.org/css-display-4/#replaced-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"replaced element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "https://drafts.csswg.org/css-display-4/#text-nodes": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text node","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-nodes"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-flexbox-1/#flex-container": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex container","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, "https://drafts.csswg.org/css-flexbox-1/#flex-item": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex item","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex-flow","type":"property","url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow"}, @@ -8106,7 +8114,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-z-index-auto": {"export":true,"for_":["z-index"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-z-index-auto"}, "https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"resolved value special case property","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property"}, "https://drafts.csswg.org/mediaqueries-5/#media-query": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"media query","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#media-query"}, @@ -8114,6 +8121,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/web-animations-1/#discrete": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"web-animations","spec":"web-animations-1","status":"current","text":"discrete","type":"dfn","url":"https://drafts.csswg.org/web-animations-1/#discrete"}, "https://infra.spec.whatwg.org/#list": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"list","type":"dfn","url":"https://infra.spec.whatwg.org/#list"}, "https://infra.spec.whatwg.org/#ordered-set": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"set","type":"dfn","url":"https://infra.spec.whatwg.org/#ordered-set"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"margin","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "https://www.w3.org/TR/css-grid-2/#collapsed-track": {"export":false,"for_":[],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"snapshot","text":"collapsed track","type":"dfn","url":"https://www.w3.org/TR/css-grid-2/#collapsed-track"}, }; diff --git a/tests/github/w3c/csswg-drafts/css-grid-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-grid-2/Overview.console.txt index 44941e4c27..8ed13a6243 100644 --- a/tests/github/w3c/csswg-drafts/css-grid-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-grid-2/Overview.console.txt @@ -24,40 +24,12 @@ LINE 3750: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 3773: Image doesn't exist, so I couldn't determine its width and height: 'images/subgrid-gap-0px.png' LINE 3796: Image doesn't exist, so I couldn't determine its width and height: 'images/subgrid-gap-25px.png' LINE 3819: Image doesn't exist, so I couldn't determine its width and height: 'images/subgrid-gap-75px.png' -LINE ~1216: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1216: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE 1434: No 'property' refs found for 'min-width' with spec 'css2'. -''min-width: 12em'' -LINE ~1644: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1644: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' +LINE 1068: No 'dfn' refs found for 'text runs'. +<a bs-line-number="1068" data-link-type="dfn" data-lt="text runs">text runs</a> +LINE 1070: No 'dfn' refs found for 'text runs'. +<a bs-line-number="1070" data-link-type="dfn" data-lt="text runs">text runs</a> LINE 2244: No 'dfn' refs found for 'name code points'. <a bs-line-number="2244" data-link-type="dfn" data-lt="name code points">name code points</a> -LINE ~3329: No 'property' refs found for 'margin' with spec 'css2'. -'margin' -LINE ~4022: No 'property' refs found for 'margin' with spec 'css2'. -'margin' -LINE 5082: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="5082" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 5086: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="5086" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 5130: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="5130" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE 5131: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="5131" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 5136: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="5136" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE 5137: No 'property' refs found for 'max-width' with spec 'css2'. -<a bs-line-number="5137" data-lt="max-width" data-link-type="property">max-width/height</a> -LINE 5189: No 'property' refs found for 'min-width' with spec 'css2'. -<a bs-line-number="5189" data-lt="min-width" data-link-type="property">min-width/height</a> -LINE ~1171: Couldn't find section '#q10.0' in spec 'css2': -[[CSS2#q10.0]] -LINE ~1179: Couldn't find section '/visudet#blockwidth' in spec 'css2': -[[CSS2/visudet#blockwidth]] LINE 5308: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 734: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="734" data-dfn-type="dfn" id="standalone-grid" data-lt="standalone grid" data-noexport="by-default" class="dfn-paneled">standalone grid</dfn> diff --git a/tests/github/w3c/csswg-drafts/css-grid-2/Overview.html b/tests/github/w3c/csswg-drafts/css-grid-2/Overview.html index 2db087bf04..ef170bc438 100644 --- a/tests/github/w3c/csswg-drafts/css-grid-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-grid-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Grid Layout Module Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-grid-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1119,7 +1118,7 @@ <h1 class="p-name no-ref" id="title">CSS Grid Layout Module Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1141,7 +1140,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-grid] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-grid%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p><strong>The CSSWG has <a href="https://lists.w3.org/Archives/Public/www-style/2019Nov/0007.html">resolved</a> to move CSS Grid Level 2 to Candidate Recommendation. This transition is merely pending editorial work to merge the <a href="https://www.w3.org/TR/css-grid-1/">CSS Grid Level 1</a> prose into this document.</strong></p> <strong> </strong> @@ -2036,8 +2035,8 @@ <h3 class="heading settled" data-level="5.4" id="overlarge-grids"><span class="s <h2 class="heading settled" data-level="6" id="grid-items"><span class="secno">6. </span><span class="content"> Grid Items</span><a class="self-link" href="#grid-items"></a></h2> <p>Loosely speaking, the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="grid item" id="grid-item">grid items</dfn> of a <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container②⑨">grid container</a> are boxes representing its in-flow contents.</p> <p>Each in-flow child of a <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container③⓪">grid container</a> becomes a <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item②⑤">grid item</a>, - and each contiguous sequence of child <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text runs</a> is wrapped in an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> <span id="ref-for-grid-item②⑥">grid item</span>. - However, if the entire sequence of child <span id="ref-for-text-run①">text runs</span> contains only <a href="https://www.w3.org/TR/CSS2/text.html#white-space-prop">white space</a> (i.e. characters that can be affected by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> property) + and each contiguous sequence of child <a data-link-type="dfn">text runs</a> is wrapped in an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> <span id="ref-for-grid-item②⑥">grid item</span>. + However, if the entire sequence of child <span>text runs</span> contains only <a href="https://www.w3.org/TR/CSS2/text.html#white-space-prop">white space</a> (i.e. characters that can be affected by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> property) it is instead not rendered (just as if its <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-nodes" id="ref-for-text-nodes">text nodes</a> were <span class="css">display:none</span>).</p> <div class="example" id="example-4842bdfd"> <a class="self-link" href="#example-4842bdfd"></a> @@ -2106,11 +2105,11 @@ <h3 class="heading settled" data-level="6.2" id="grid-item-sizing"><span class=" the grid item is sized consistent with the size calculation rules for block-level elements for the corresponding axis. -(See <span spec-section="#q10.0"></span>.)</p> +(See <a href="https://www.w3.org/TR/CSS21/visudet.html#q10.0"><cite>CSS 2.1</cite> §  10 Visual formatting model details</a>.)</p> <dt data-md><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-align-3/#valdef-align-self-stretch" id="ref-for-valdef-align-self-stretch①">stretch</a> <dd data-md> <p>Use the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#inline-size" id="ref-for-inline-size①">inline size</a> calculation rules for non-replaced boxes -(defined in <span spec-section="/visudet#blockwidth"></span>), +(defined in <a href="https://www.w3.org/TR/CSS21/visudet.html#blockwidth"><cite>CSS 2.1</cite> § 10.3.3 Block-level, non-replaced elements in normal flow</a>), i.e. the <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#stretch-fit-size" id="ref-for-stretch-fit-size">stretch-fit size</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> This can distort the aspect ratio of an item with a <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-4/#preferred-aspect-ratio" id="ref-for-preferred-aspect-ratio①">preferred aspect ratio</a>, @@ -2143,7 +2142,7 @@ <h3 class="heading settled" data-level="6.2" id="grid-item-sizing"><span class=" <td>Use <a data-link-type="dfn" href="https://drafts.csswg.org/css-images-3/#natural-size" id="ref-for-natural-size②">natural size</a> </table> </div> - <p class="note" role="note"><span class="marker">Note:</span> The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> value of <a class="property css" data-link-type="property">min-width</a> and <span class="property">min-height</span> affects track sizing in the relevant axis + <p class="note" role="note"><span class="marker">Note:</span> The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a> affects track sizing in the relevant axis similar to how it affects the main size of a <a data-link-type="dfn" href="https://drafts.csswg.org/css-flexbox-1/#flex-item" id="ref-for-flex-item①">flex item</a>. See <a href="#min-size-auto">§ 6.6 Automatic Minimum Size of Grid Items</a>.</p> <h3 class="heading settled" data-level="6.3" id="order-property"><span class="secno">6.3. </span><span class="content"> Reordered Grid Items: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-4/#propdef-order" id="ref-for-propdef-order③">order</a> property</span><a class="self-link" href="#order-property"></a></h3> @@ -2166,18 +2165,18 @@ <h3 class="heading settled" data-level="6.4" id="item-margins"><span class="secn <p>Auto margins expand to absorb extra space in the corresponding dimension, and can therefore be used for alignment. See <a href="#auto-margins">§ 11.2 Aligning with auto margins</a></p> - <h3 class="heading settled" data-level="6.5" id="z-order"><span class="secno">6.5. </span><span class="content"> Z-axis Ordering: the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property</span><a class="self-link" href="#z-order"></a></h3> + <h3 class="heading settled" data-level="6.5" id="z-order"><span class="secno">6.5. </span><span class="content"> Z-axis Ordering: the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property</span><a class="self-link" href="#z-order"></a></h3> <p><a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item③⑥">Grid items</a> can overlap when they are positioned into intersecting <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area①④">grid areas</a>, or even when positioned in non-intersecting areas because of negative margins or positioning. The painting order of <span id="ref-for-grid-item③⑦">grid items</span> is exactly the same as inline blocks <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, except that <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#order-modified-document-order" id="ref-for-order-modified-document-order">order-modified document order</a> is used in place of raw document order, - and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> values other than <a class="css" data-link-type="value" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a> (behaving exactly as if <span class="property" id="ref-for-propdef-position①">position</span> were <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-relative" id="ref-for-valdef-position-relative">relative</a>). + and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> values other than <a class="css" data-link-type="value" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> create a stacking context even if <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-static" id="ref-for-valdef-position-static">static</a> (behaving exactly as if <span class="property" id="ref-for-propdef-position①">position</span> were <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-position-3/#valdef-position-relative" id="ref-for-valdef-position-relative">relative</a>). Thus the <span class="property" id="ref-for-propdef-z-index②">z-index</span> property can easily be used to control the z-axis order of grid items.</p> <p class="note" role="note"> Note: Descendants that are positioned outside a grid item still participate in any stacking context established by the grid item. </p> <div class="example" id="example-ae2f6ea5"> <a class="self-link" href="#example-ae2f6ea5"></a> The following diagram shows several overlapping grid items, with a combination of implicit source order - and explicit <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index③">z-index</a> used to control their stacking order. + and explicit <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index③">z-index</a> used to control their stacking order. <figure> <img src="images/drawing-order.png"> <figcaption>Drawing order controlled by z-index and source order.</figcaption> @@ -2277,7 +2276,7 @@ <h3 class="heading settled" data-level="6.6" id="min-size-auto"><span class="sec and helps prevent content from overlapping or spilling outside its container, in some cases it is not: <p>In particular, if grid layout is being used for a major content area of a document, - it is better to set an explicit font-relative minimum width such as <a class="css" data-link-type="propdesc">min-width: 12em</a>. + it is better to set an explicit font-relative minimum width such as <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width: 12em</a>. A content-based minimum width could result in a large table or large image stretching the size of the entire content area, potentially into an overflow zone, and thereby making lines of text needlessly long and hard to read.</p> @@ -2442,7 +2441,7 @@ <h4 class="heading settled" data-level="7.2.1" id="track-sizes"><span class="sec however, unlike <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-max-content" id="ref-for-valdef-grid-template-columns-max-content①">max-content</a>, allows expansion of the track by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-align-content" id="ref-for-propdef-align-content①">align-content</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-align-3/#propdef-justify-content" id="ref-for-propdef-justify-content①">justify-content</a> properties. - <p>As a <em>minimum</em>: represents the largest <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width③">minimum size</a> (specified by <a class="property css" data-link-type="property">min-width</a>/<span class="property">min-height</span>) + <p>As a <em>minimum</em>: represents the largest <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-width" id="ref-for-min-width③">minimum size</a> (specified by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a>) of the <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item④③">grid items</a> occupying the <a data-link-type="dfn" href="#grid-track" id="ref-for-grid-track①③">grid track</a>. (This initially is often, but not always, equal to a <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-min-content" id="ref-for-valdef-grid-template-columns-min-content①">min-content</a> minimum—​see <a href="#min-size-auto">§ 6.6 Automatic Minimum Size of Grid Items</a>.)</p> @@ -3768,7 +3767,7 @@ <h3 class="heading settled" data-level="8.4" id="placement-shorthands"><span cla Otherwise, it is set to <a class="css" data-link-type="value" href="#grid-placement-auto" id="ref-for-grid-placement-auto⑧">auto</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> The resolution order for this shorthand is row-start/column-start/row-end/column-end, which goes <abbr title="counterclockwise">CCW</abbr> for <abbr title="left-to-right">LTR</abbr> pages, - the opposite direction of the related 4-edge properties using physical directions, like <a class="property css" data-link-type="property">margin</a>.</p> + the opposite direction of the related 4-edge properties using physical directions, like <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin">margin</a>.</p> <h3 class="heading settled" data-level="8.5" id="auto-placement-algo"><span class="secno">8.5. </span><span class="content"> Grid Item Placement Algorithm</span><a class="self-link" href="#auto-placement-algo"></a></h3> <p>The following <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-local-lt="auto-placement algorithm" id="grid-item-placement-algorithm">grid item placement algorithm</dfn> resolves <a data-link-type="dfn" href="#automatic-grid-position" id="ref-for-automatic-grid-position">automatic positions</a> of <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item⑦⑥">grid items</a> into <a data-link-type="dfn" href="#definite-grid-position" id="ref-for-definite-grid-position">definite positions</a>, ensuring that every <span id="ref-for-grid-item⑦⑦">grid item</span> has a well-defined <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area②②">grid area</a> to lay out into. @@ -4291,7 +4290,7 @@ <h3 class="heading settled" data-level="10.2" id="static-position"><span class=" <h2 class="heading settled" data-level="11" id="alignment"><span class="secno">11. </span><span class="content"> Alignment and Spacing</span><a class="self-link" href="#alignment"></a></h2> <p>After a <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container⑧②">grid container</a>’s <a data-link-type="dfn" href="#grid-track" id="ref-for-grid-track②⑤">grid tracks</a> have been sized, and the dimensions of all <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item⑨⑧">grid items</a> are finalized, <span id="ref-for-grid-item⑨⑨">grid items</span> can be aligned within their <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area③②">grid areas</a>.</p> - <p>The <a class="property css" data-link-type="property">margin</a> properties can be used to align items in a manner similar to + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin①">margin</a> properties can be used to align items in a manner similar to what margins can do in block layout. <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item①⓪⓪">Grid items</a> also respect the <a data-link-type="dfn" href="https://drafts.csswg.org/css-align-3/#box-alignment-properties" id="ref-for-box-alignment-properties①">box alignment properties</a> from the <a href="http://www.w3.org/TR/css-align/">CSS Box Alignment Module</a> <a data-link-type="biblio" href="#biblio-css-align-3" title="CSS Box Alignment Module Level 3">[CSS-ALIGN-3]</a>, which allow easy keyword-based alignment of items in both the rows and columns.</p> <p>By default, <a data-link-type="dfn" href="#grid-item" id="ref-for-grid-item①⓪①">grid items</a> stretch to fill their <a data-link-type="dfn" href="#grid-area" id="ref-for-grid-area③③">grid area</a>. @@ -4987,10 +4986,10 @@ <h3 class="heading settled" data-level="12.6" id="algo-grow-tracks"><span class= if sizing under a <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#min-content-constraint" id="ref-for-min-content-constraint④">min-content constraint</a>, the <span id="ref-for-free-space⑤">free space</span> is zero.</p> <p>If this would cause the grid to be larger than - the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①①④">grid container’s</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size②">inner size</a> as limited by its <a class="css" data-link-type="property">max-width/height</a>, + the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①①④">grid container’s</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size②">inner size</a> as limited by its <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width/height</a>, then redo this step, treating the <a data-link-type="dfn" href="#available-grid-space" id="ref-for-available-grid-space⑤">available grid space</a> as equal to - the <span id="ref-for-grid-container①①⑤">grid container’s</span> <span id="ref-for-inner-size③">inner size</span> when it’s sized to its <span>max-width/height</span>.</p> + the <span id="ref-for-grid-container①①⑤">grid container’s</span> <span id="ref-for-inner-size③">inner size</span> when it’s sized to its <span id="ref-for-propdef-max-width①">max-width/height</span>.</p> <h3 class="heading settled" data-level="12.7" id="algo-flex-tracks"><span class="secno">12.7. </span><span class="content"> Expand Flexible Tracks</span><a class="self-link" href="#algo-flex-tracks"></a></h3> <p>This step sizes <a data-link-type="dfn" href="#flexible-tracks" id="ref-for-flexible-tracks⑤">flexible tracks</a> using the largest value it can assign to an <a class="css" data-link-type="maybe" href="#valdef-flex-fr" id="ref-for-valdef-flex-fr⑥">fr</a> without exceeding the <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#available" id="ref-for-available⑤">available space</a>.</p> <p>First, find the grid’s used <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction">flex fraction</a>:</p> @@ -5013,11 +5012,11 @@ <h3 class="heading settled" data-level="12.7" id="algo-flex-tracks"><span class= the result of <a href="#algo-find-fr-size">finding the size of an fr</a> using all the grid tracks that the item crosses and a <a data-link-type="dfn" href="#space-to-fill" id="ref-for-space-to-fill①">space to fill</a> of the item’s <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#max-content-contribution" id="ref-for-max-content-contribution①⓪">max-content contribution</a>. </ul> - <p>If using this <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction④">flex fraction</a> would cause the <a data-link-type="dfn" href="#grid" id="ref-for-grid②⑨">grid</a> to be smaller than the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①①⑦">grid container’s</a> <a class="css" data-link-type="property">min-width/height</a> (or larger than the <span id="ref-for-grid-container①①⑧">grid container’s</span> <span>max-width/height</span>), + <p>If using this <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction④">flex fraction</a> would cause the <a data-link-type="dfn" href="#grid" id="ref-for-grid②⑨">grid</a> to be smaller than the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①①⑦">grid container’s</a> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width③">min-width/height</a> (or larger than the <span id="ref-for-grid-container①①⑧">grid container’s</span> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width/height</a>), then redo this step, treating the <a data-link-type="dfn" href="#free-space" id="ref-for-free-space⑨">free space</a> as definite and the <a data-link-type="dfn" href="#available-grid-space" id="ref-for-available-grid-space⑦">available grid space</a> as equal to - the <span id="ref-for-grid-container①①⑨">grid container’s</span> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size④">inner size</a> when it’s sized to its <span>min-width/height</span> (<span>max-width/height</span>).</p> + the <span id="ref-for-grid-container①①⑨">grid container’s</span> <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#inner-size" id="ref-for-inner-size④">inner size</a> when it’s sized to its <span id="ref-for-propdef-min-width④">min-width/height</span> (<span id="ref-for-propdef-max-width③">max-width/height</span>).</p> </dl> <p>For each <a data-link-type="dfn" href="#flexible-tracks" id="ref-for-flexible-tracks⑥">flexible track</a>, if the product of the used <a data-link-type="dfn" href="#flex-fraction" id="ref-for-flex-fraction⑤">flex fraction</a> and the track’s <a data-link-type="dfn" href="#grid-template-columns-flex-factor" id="ref-for-grid-template-columns-flex-factor⑨">flex factor</a> is greater than the track’s <a data-link-type="dfn" href="#base-size" id="ref-for-base-size②⑧">base size</a>, @@ -5042,7 +5041,7 @@ <h3 class="heading settled" data-level="12.8" id="algo-stretch"><span class="sec <p>This step expands tracks that have an <a class="css" data-link-type="maybe" href="#valdef-grid-template-columns-auto" id="ref-for-valdef-grid-template-columns-auto⑥">auto</a> <a data-link-type="dfn" href="#max-track-sizing-function" id="ref-for-max-track-sizing-function②①">max track sizing function</a> by dividing any remaining positive, <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#definite" id="ref-for-definite①⑦">definite</a> <a data-link-type="dfn" href="#free-space" id="ref-for-free-space①⓪">free space</a> equally amongst them. If the <span id="ref-for-free-space①①">free space</span> is <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#indefinite" id="ref-for-indefinite⑧">indefinite</a>, - but the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①②⓪">grid container</a> has a <span id="ref-for-definite①⑧">definite</span> <a class="css" data-link-type="property">min-width/height</a>, + but the <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①②⓪">grid container</a> has a <span id="ref-for-definite①⑧">definite</span> <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑤">min-width/height</a>, use that size to calculate the <span id="ref-for-free-space①②">free space</span> for this step instead.</p> <h2 class="heading settled" data-level="13" id="pagination"><span class="secno">13. </span><span class="content"> Fragmenting Grid Layout</span><a class="self-link" href="#pagination"></a></h2> <p> <a data-link-type="dfn" href="#grid-container" id="ref-for-grid-container①②①">Grid containers</a> can break across pages @@ -5535,7 +5534,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="ba9b3d06">order-modified document order</span> <li><span class="dfn-paneled" id="a8485ff4">replaced element</span> <li><span class="dfn-paneled" id="b30820a7">text node</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> </ul> <li> <a data-link-type="biblio">[CSS-FLEXBOX-1]</a> defines the following terms: @@ -5670,13 +5668,21 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5515c98f">margin</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d332e4ec">auto</span> <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS3-BREAK]</a> defines the following terms: @@ -5726,9 +5732,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-grid-1">[CSS-GRID-1] @@ -5736,7 +5742,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -6133,7 +6139,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row" title="The grid-row CSS shorthand property specifies a grid item&apos;s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.">grid-row</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row" title="The grid-row CSS shorthand property specifies a grid item&apos;s size and location within a grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.">grid-row</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>52+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> @@ -6221,13 +6227,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="subgrids"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Subgrid" title="Level 2 of the CSS Grid Layout specification includes a subgrid value for grid-template-columns and grid-template-rows. This guide details what subgrid does, and gives some use cases and design patterns that are solved by the feature.">CSS_Grid_Layout/Subgrid</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>71+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>71+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span title="Requires setting a user preference or runtime flag.">🔰 114+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 114+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -6249,10 +6256,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Subgrid" title="Level 2 of the CSS Grid Layout specification includes a subgrid value for grid-template-columns and grid-template-rows. This guide details what subgrid does, and gives some use cases and design patterns that are solved by the feature.">CSS_Grid_Layout/Subgrid</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>71+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>71+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span title="Requires setting a user preference or runtime flag.">🔰 114+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 114+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -6571,7 +6579,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "190183bb": {"dfnID":"190183bb","dfnText":"block size","external":true,"refSections":[{"refs":[{"id":"ref-for-block-size"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-block-size\u2460"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-block-size\u2461"},{"id":"ref-for-block-size\u2462"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-size"}, "1a548a6a": {"dfnID":"1a548a6a","dfnText":"blockify","external":true,"refSections":[{"refs":[{"id":"ref-for-blockify"}],"title":"6.1. \n\tGrid Item Display"}],"url":"https://drafts.csswg.org/css-display-4/#blockify"}, "1cf918c1": {"dfnID":"1cf918c1","dfnText":"specified value","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-value"}],"title":"7.2.6.2. \nResolved Value of a Subgridded Track Listing"},{"refs":[{"id":"ref-for-specified-value\u2460"}],"title":"7.3.1. \nSerialization Of Template Strings"}],"url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"},{"id":"ref-for-text-run\u2460"}],"title":"6. \nGrid Items"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "23177077": {"dfnID":"23177077","dfnText":"scrollable overflow rectangle","external":true,"refSections":[{"refs":[{"id":"ref-for-scrollable-overflow-rectangle"}],"title":"5.3. \nScrollable Grid Overflow"}],"url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-rectangle"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"}],"title":"2. \nOverview"},{"refs":[{"id":"ref-for-flex-container\u2460"}],"title":"7.2.4. \nFlexible Lengths: the fr unit"},{"refs":[{"id":"ref-for-flex-container\u2461"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, "26a40c98": {"dfnID":"26a40c98","dfnText":"max-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-max-content"}],"title":"5.2. \nSizing Grid Containers"}],"url":"https://drafts.csswg.org/css-sizing-3/#max-content"}, @@ -6586,6 +6593,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-inline-size\u2460"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-inline-size\u2461"}],"title":"6.4. \nGrid Item Margins and Paddings"},{"refs":[{"id":"ref-for-inline-size\u2462"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-inline-size\u2463"},{"id":"ref-for-inline-size\u2464"},{"id":"ref-for-inline-size\u2465"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"10.1. \nWith a Grid Container as Containing Block"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3a74ed0c": {"dfnID":"3a74ed0c","dfnText":"flex-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-flow"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-propdef-min-height\u2460"}],"title":"7.2.1. \nTrack Sizes"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3dd2faef": {"dfnID":"3dd2faef","dfnText":"space-evenly","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-align-content-space-evenly"}],"title":"11.5. \nAligning the Grid: the justify-content and align-content properties"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly"}, "3f0db204": {"dfnID":"3f0db204","dfnText":"min-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"}],"title":"5.2. \nSizing Grid Containers"},{"refs":[{"id":"ref-for-min-content\u2460"},{"id":"ref-for-min-content\u2461"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "3f92298d": {"dfnID":"3f92298d","dfnText":"stretch-fit size","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit-size"}],"title":"6.2. \n\tGrid Item Sizing"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-size"}, @@ -6598,6 +6606,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4fe61159": {"dfnID":"4fe61159","dfnText":"resolved value","external":true,"refSections":[{"refs":[{"id":"ref-for-resolved-value"},{"id":"ref-for-resolved-value\u2460"}],"title":"7.2.6.2. \nResolved Value of a Subgridded Track Listing"}],"url":"https://drafts.csswg.org/cssom-1/#resolved-value"}, "521eb6d4": {"dfnID":"521eb6d4","dfnText":"multi-column container","external":true,"refSections":[{"refs":[{"id":"ref-for-multi-column-container"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-multicol-1/#multi-column-container"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"},{"id":"ref-for-mult-opt\u2465"},{"id":"ref-for-mult-opt\u2466"},{"id":"ref-for-mult-opt\u2467"}],"title":"7.2. \nExplicit Track Sizing: the grid-template-rows and grid-template-columns properties"},{"refs":[{"id":"ref-for-mult-opt\u2468"},{"id":"ref-for-mult-opt\u2460\u24ea"},{"id":"ref-for-mult-opt\u2460\u2460"},{"id":"ref-for-mult-opt\u2460\u2461"},{"id":"ref-for-mult-opt\u2460\u2462"},{"id":"ref-for-mult-opt\u2460\u2463"}],"title":"7.2.3.1. \nSyntax of repeat()"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2464"},{"id":"ref-for-mult-opt\u2460\u2465"},{"id":"ref-for-mult-opt\u2460\u2466"},{"id":"ref-for-mult-opt\u2460\u2467"}],"title":"7.4. \nExplicit Grid Shorthand: the grid-template property"},{"refs":[{"id":"ref-for-mult-opt\u2460\u2468"},{"id":"ref-for-mult-opt\u2461\u24ea"},{"id":"ref-for-mult-opt\u2461\u2460"},{"id":"ref-for-mult-opt\u2461\u2461"}],"title":"7.8. \nGrid Definition Shorthand: the grid property"},{"refs":[{"id":"ref-for-mult-opt\u2461\u2462"}],"title":"8.3. \nLine-based Placement: the grid-row-start, grid-column-start, grid-row-end, and grid-column-end properties"},{"refs":[{"id":"ref-for-mult-opt\u2461\u2463"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"},{"id":"ref-for-propdef-z-index\u2462"}],"title":"6.5. \nZ-axis Ordering: the z-index property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"5515c98f": {"dfnID":"5515c98f","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"},{"refs":[{"id":"ref-for-propdef-margin\u2460"}],"title":"11. \nAlignment and Spacing"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, "56177fad": {"dfnID":"56177fad","dfnText":"shorthand","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"}],"title":"7.1. \nThe Explicit Grid"},{"refs":[{"id":"ref-for-shorthand-property\u2460"}],"title":"7.4. \nExplicit Grid Shorthand: the grid-template property"},{"refs":[{"id":"ref-for-shorthand-property\u2461"}],"title":"7.5. \nThe Implicit Grid"},{"refs":[{"id":"ref-for-shorthand-property\u2462"},{"id":"ref-for-shorthand-property\u2463"}],"title":"7.8. \nGrid Definition Shorthand: the grid property"},{"refs":[{"id":"ref-for-shorthand-property\u2464"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, "5738a20e": {"dfnID":"5738a20e","dfnText":"orthogonal flow","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-orthogonal-flow"},{"id":"ref-for-establish-an-orthogonal-flow\u2460"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#establish-an-orthogonal-flow"}, "584e9c31": {"dfnID":"584e9c31","dfnText":"calc()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-calc"}],"title":"7.2.4. \nFlexible Lengths: the fr unit"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-calc"}, @@ -6651,6 +6661,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"7.2.6.1. \nResolved Value of a Standalone Track Listing"},{"refs":[{"id":"ref-for-used-value\u2460"}],"title":"7.2.6.2. \nResolved Value of a Subgridded Track Listing"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"},{"id":"ref-for-propdef-bottom\u2460"}],"title":"10.1. \nWith a Grid Container as Containing Block"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"}],"title":"6.4. \nGrid Item Margins and Paddings"},{"refs":[{"id":"ref-for-writing-mode\u2460"}],"title":"8.1.2. \nNumeric Indexes and Spans"},{"refs":[{"id":"ref-for-writing-mode\u2461"}],"title":"9. \nSubgrids"},{"refs":[{"id":"ref-for-writing-mode\u2462"}],"title":"11.6. \nGrid Container Baselines"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"},{"id":"ref-for-propdef-max-width\u2460"}],"title":"12.6. \nMaximize Tracks"},{"refs":[{"id":"ref-for-propdef-max-width\u2461"},{"id":"ref-for-propdef-max-width\u2462"}],"title":"12.7. \nExpand Flexible Tracks"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a758a91a": {"dfnID":"a758a91a","dfnText":"establishes an independent formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-establish-an-independent-formatting-context"}],"title":"6.1. \n\tGrid Item Display"}],"url":"https://drafts.csswg.org/css-display-4/#establish-an-independent-formatting-context"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"6.1. \n\tGrid Item Display"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-replaced-element\u2461"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"},{"refs":[{"id":"ref-for-replaced-element\u2462"}],"title":"15.1. \nChanges since the 18 December 2020 CR"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "ac9b4191": {"dfnID":"ac9b4191","dfnText":"baseline set","external":true,"refSections":[{"refs":[{"id":"ref-for-baseline-set"},{"id":"ref-for-baseline-set\u2460"}],"title":"11.6. \nGrid Container Baselines"}],"url":"https://drafts.csswg.org/css-align-3/#baseline-set"}, @@ -6677,7 +6688,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "bf7aa8ab": {"dfnID":"bf7aa8ab","dfnText":"whitespace","external":true,"refSections":[{"refs":[{"id":"ref-for-whitespace"}],"title":"7.3. \nNamed Areas: the grid-template-areas property"}],"url":"https://drafts.csswg.org/css-syntax-3/#whitespace"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"},{"id":"ref-for-propdef-break-before\u2460"},{"id":"ref-for-propdef-break-before\u2461"}],"title":"13. \nFragmenting Grid Layout"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, "c21450f8": {"dfnID":"c21450f8","dfnText":"sub-property","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"}],"title":"7.8. \nGrid Definition Shorthand: the grid property"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"},{"id":"ref-for-propdef-z-index\u2462"}],"title":"6.5. \nZ-axis Ordering: the z-index property"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "ca4fcf76": {"dfnID":"ca4fcf76","dfnText":"distributed alignment","external":true,"refSections":[{"refs":[{"id":"ref-for-distributed-alignment"}],"title":"7.2.3.2. \nRepeat-to-fill: auto-fill and auto-fit repetitions"}],"url":"https://drafts.csswg.org/css-align-3/#distributed-alignment"}, "ca960d4f": {"dfnID":"ca960d4f","dfnText":"block formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-block-formatting-context"}],"title":"5.1. \nEstablishing Grid Containers: the grid and inline-grid display values"},{"refs":[{"id":"ref-for-block-formatting-context\u2460"}],"title":"5.2. \nSizing Grid Containers"}],"url":"https://drafts.csswg.org/css-display-4/#block-formatting-context"}, "caea2fff": {"dfnID":"caea2fff","dfnText":"scrollable overflow region","external":true,"refSections":[{"refs":[{"id":"ref-for-scrollable-overflow-region"}],"title":"5.3. \nScrollable Grid Overflow"}],"url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region"}, @@ -6706,6 +6716,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"}],"title":"7.2. \nExplicit Track Sizing: the grid-template-rows and grid-template-columns properties"},{"refs":[{"id":"ref-for-identifier-value\u2460"},{"id":"ref-for-identifier-value\u2461"}],"title":"7.2.2. \nNaming Grid Lines: the [<custom-ident>*] syntax"},{"refs":[{"id":"ref-for-identifier-value\u2462"},{"id":"ref-for-identifier-value\u2463"},{"id":"ref-for-identifier-value\u2464"},{"id":"ref-for-identifier-value\u2465"},{"id":"ref-for-identifier-value\u2466"},{"id":"ref-for-identifier-value\u2467"},{"id":"ref-for-identifier-value\u2468"},{"id":"ref-for-identifier-value\u2460\u24ea"},{"id":"ref-for-identifier-value\u2460\u2460"},{"id":"ref-for-identifier-value\u2460\u2461"},{"id":"ref-for-identifier-value\u2460\u2462"},{"id":"ref-for-identifier-value\u2460\u2463"}],"title":"8.3. \nLine-based Placement: the grid-row-start, grid-column-start, grid-row-end, and grid-column-end properties"},{"refs":[{"id":"ref-for-identifier-value\u2460\u2464"},{"id":"ref-for-identifier-value\u2460\u2465"},{"id":"ref-for-identifier-value\u2460\u2466"},{"id":"ref-for-identifier-value\u2460\u2467"},{"id":"ref-for-identifier-value\u2460\u2468"},{"id":"ref-for-identifier-value\u2461\u24ea"},{"id":"ref-for-identifier-value\u2461\u2460"}],"title":"8.4. \nPlacement Shorthands: the grid-column, grid-row, and grid-area properties"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, "e3bdfa96": {"dfnID":"e3bdfa96","dfnText":"stretch fit","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"},{"refs":[{"id":"ref-for-stretch-fit\u2460"}],"title":"12.1. \nGrid Sizing Algorithm"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit"}, "e3ec4d32": {"dfnID":"e3ec4d32","dfnText":"discrete","external":true,"refSections":[{"refs":[{"id":"ref-for-discrete"}],"title":"7.2.3.3. \nInterpolation/Combination of repeat()"}],"url":"https://drafts.csswg.org/web-animations-1/#discrete"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"6.2. \n\tGrid Item Sizing"},{"refs":[{"id":"ref-for-propdef-min-width\u2460"}],"title":"6.6. \nAutomatic Minimum Size of Grid Items"},{"refs":[{"id":"ref-for-propdef-min-width\u2461"}],"title":"7.2.1. \nTrack Sizes"},{"refs":[{"id":"ref-for-propdef-min-width\u2462"},{"id":"ref-for-propdef-min-width\u2463"}],"title":"12.7. \nExpand Flexible Tracks"},{"refs":[{"id":"ref-for-propdef-min-width\u2464"}],"title":"12.8. \nStretch auto Tracks"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"3.4. \nNested vs. Subgridded Items"},{"refs":[{"id":"ref-for-propdef-display\u2460"},{"id":"ref-for-propdef-display\u2461"},{"id":"ref-for-propdef-display\u2462"},{"id":"ref-for-propdef-display\u2463"},{"id":"ref-for-propdef-display\u2464"}],"title":"5.1. \nEstablishing Grid Containers: the grid and inline-grid display values"},{"refs":[{"id":"ref-for-propdef-display\u2465"},{"id":"ref-for-propdef-display\u2466"},{"id":"ref-for-propdef-display\u2467"},{"id":"ref-for-propdef-display\u2468"},{"id":"ref-for-propdef-display\u2460\u24ea"},{"id":"ref-for-propdef-display\u2460\u2460"},{"id":"ref-for-propdef-display\u2460\u2461"}],"title":"6.1. \n\tGrid Item Display"},{"refs":[{"id":"ref-for-propdef-display\u2460\u2462"}],"title":"7.2.6.1. \nResolved Value of a Standalone Track Listing"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"},{"id":"ref-for-containing-block\u2460"}],"title":"6.4. \nGrid Item Margins and Paddings"},{"refs":[{"id":"ref-for-containing-block\u2461"}],"title":"8. \nPlacing Grid Items"},{"refs":[{"id":"ref-for-containing-block\u2462"},{"id":"ref-for-containing-block\u2463"},{"id":"ref-for-containing-block\u2464"},{"id":"ref-for-containing-block\u2465"},{"id":"ref-for-containing-block\u2466"}],"title":"10.1. \nWith a Grid Container as Containing Block"},{"refs":[{"id":"ref-for-containing-block\u2467"}],"title":"10.2. \nWith a Grid Container as Parent"},{"refs":[{"id":"ref-for-containing-block\u2468"}],"title":"12.5. \nResolve Intrinsic Track Sizes"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "ed3eb665": {"dfnID":"ed3eb665","dfnText":"natural size","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-size"},{"id":"ref-for-natural-size\u2460"},{"id":"ref-for-natural-size\u2461"}],"title":"6.2. \n\tGrid Item Sizing"}],"url":"https://drafts.csswg.org/css-images-3/#natural-size"}, @@ -7498,7 +7509,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-4/#propdef-order": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"order","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-order"}, "https://drafts.csswg.org/css-display-4/#replaced-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"replaced element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "https://drafts.csswg.org/css-display-4/#text-nodes": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text node","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-nodes"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-flexbox-1/#flex-container": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex container","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, "https://drafts.csswg.org/css-flexbox-1/#flex-item": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex item","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex-flow","type":"property","url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow"}, @@ -7580,7 +7590,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-z-index-auto": {"export":true,"for_":["z-index"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-z-index-auto"}, "https://drafts.csswg.org/cssom-1/#resolved-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"resolved value","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#resolved-value"}, "https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"resolved value special case property","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property"}, @@ -7589,6 +7598,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/web-animations-1/#discrete": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"web-animations","spec":"web-animations-1","status":"current","text":"discrete","type":"dfn","url":"https://drafts.csswg.org/web-animations-1/#discrete"}, "https://infra.spec.whatwg.org/#list": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"list","type":"dfn","url":"https://infra.spec.whatwg.org/#list"}, "https://infra.spec.whatwg.org/#ordered-set": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"set","type":"dfn","url":"https://infra.spec.whatwg.org/#ordered-set"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"margin","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-grid-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-grid-3/Overview.console.txt index 92b2ffb80c..e964ad5f06 100644 --- a/tests/github/w3c/csswg-drafts/css-grid-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-grid-3/Overview.console.txt @@ -74,15 +74,15 @@ LINT: Your document appears to use tabs to indent, but line 554 starts with spac LINT: Your document appears to use tabs to indent, but line 555 starts with spaces. LINT: Your document appears to use tabs to indent, but line 593 starts with spaces. LINT: Your document appears to use tabs to indent, but line 594 starts with spaces. -WARNING: There are 53 WPT tests underneath your path prefix 'css/css-grid/masonry/tentative/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) - css/css-grid/masonry/tentative/align-content/masonry-align-content-001.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-002.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-003.html - css/css-grid/masonry/tentative/align-content/masonry-align-content-004.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-001.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-multi-001.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-stretch-001.html - css/css-grid/masonry/tentative/align-tracks/masonry-align-tracks-stretch-002.html +WARNING: There are 56 WPT tests underneath your path prefix 'css/css-grid/masonry/tentative/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) + css/css-grid/masonry/tentative/alignment/masonry-align-content-001.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-002.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-003.html + css/css-grid/masonry/tentative/alignment/masonry-align-content-004.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-001.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-002.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-003.html + css/css-grid/masonry/tentative/alignment/masonry-justify-content-004.html css/css-grid/masonry/tentative/baseline/masonry-grid-item-content-baseline-001.html css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-001.html css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002a.html @@ -90,18 +90,23 @@ WARNING: There are 53 WPT tests underneath your path prefix 'css/css-grid/masonr css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-001.html css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-002.html css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-003.html - css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-004.html - css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-005.html - css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-006.html css/css-grid/masonry/tentative/gap/masonry-gap-001.html + css/css-grid/masonry/tentative/gap/masonry-gap-002.html css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-001.html css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-002.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-001.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-002.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-003.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-004.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-005.html - css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-006.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-001.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-002.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-003.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-004.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-005.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-006.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-007.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-001.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-002.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-003.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-004.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-005.html + css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-006.html css/css-grid/masonry/tentative/item-placement/masonry-columns-item-placement-auto-flow-next-001.html css/css-grid/masonry/tentative/item-placement/masonry-item-placement-001.html css/css-grid/masonry/tentative/item-placement/masonry-item-placement-002.html @@ -112,22 +117,20 @@ WARNING: There are 53 WPT tests underneath your path prefix 'css/css-grid/masonr css/css-grid/masonry/tentative/item-placement/masonry-item-placement-007.html css/css-grid/masonry/tentative/item-placement/masonry-item-placement-008.html css/css-grid/masonry/tentative/item-placement/masonry-rows-item-placement-auto-flow-next-001.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-001.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-002.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-003.html - css/css-grid/masonry/tentative/justify-content/masonry-justify-content-004.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-001.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-multi-001.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-stretch-001.html - css/css-grid/masonry/tentative/justify-tracks/masonry-justify-tracks-stretch-002.html + css/css-grid/masonry/tentative/item-placement/masonry-rows-with-grid-width-changed.html + css/css-grid/masonry/tentative/masonry-columns-item-containing-block-is-grid-content-width.html css/css-grid/masonry/tentative/masonry-grid-template-columns-computed-withcontent.html + css/css-grid/masonry/tentative/masonry-not-inhibited-001.html css/css-grid/masonry/tentative/order/masonry-order-001.html css/css-grid/masonry/tentative/order/masonry-order-002.html css/css-grid/masonry/tentative/parsing/masonry-parsing.html css/css-grid/masonry/tentative/subgrid/masonry-subgrid-001.html css/css-grid/masonry/tentative/subgrid/masonry-subgrid-002.html + css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize.html + css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-explicit-block.html css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-left-side.html css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-right-side.html + css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-span-row.html LINE 27: Image doesn't exist, so I couldn't determine its width and height: 'images/grid-layout.png' LINE 47: Image doesn't exist, so I couldn't determine its width and height: 'images/pinterest.png' LINE 97: Image doesn't exist, so I couldn't determine its width and height: 'images/example-pinterest-with-span.png' @@ -171,10 +174,12 @@ spec:css-align-3; type:value; for:justify-self; text:normal spec:css-align-3; type:value; for:row-gap; text:normal spec:css-align-3; type:value; for:column-gap; text:normal spec:css-align-3; type:value; for:gap; text:normal +spec:css-anchor-position-1; type:value; text:normal spec:css-animations-1; type:value; text:normal spec:css-color-adjust-1; type:value; text:normal -spec:css-contain-3; type:value; text:normal +spec:css-conditional-5; type:value; text:normal spec:css-content-3; type:value; text:normal +spec:css-display-4; type:value; text:normal spec:css-fonts-5; type:value; for:ascent-override!!descriptor; text:normal spec:css-fonts-5; type:value; for:descent-override!!descriptor; text:normal spec:css-fonts-5; type:value; for:line-gap-override!!descriptor; text:normal @@ -184,8 +189,8 @@ spec:css-fonts-5; type:value; for:superscript-size-override!!descriptor; text:no spec:css-fonts-5; type:value; for:subscript-size-override!!descriptor; text:normal spec:css-inline-3; type:value; for:initial-letter; text:normal spec:css-inline-3; type:value; for:inline-sizing; text:normal -spec:css-inline-3; type:value; for:leading-trim; text:normal spec:css-inline-3; type:value; for:line-height; text:normal +spec:css-inline-3; type:value; for:text-box; text:normal spec:css-nav-1; type:value; text:normal spec:css-scroll-snap-1; type:value; text:normal spec:css-speech-1; type:value; for:speak-as; text:normal @@ -195,15 +200,16 @@ spec:css-text-4; type:value; for:letter-spacing; text:normal spec:css-text-4; type:value; for:line-break; text:normal spec:css-text-4; type:value; for:overflow-wrap; text:normal spec:css-text-4; type:value; for:text-autospace; text:normal -spec:css-text-4; type:value; for:text-spacing; text:normal +spec:css-text-4; type:value; for:text-spacing-trim; text:normal spec:css-text-4; type:value; for:white-space; text:normal -spec:css-text-4; type:value; for:word-boundary-detection; text:normal spec:css-text-4; type:value; for:word-break; text:normal spec:css-text-4; type:value; for:word-spacing; text:normal +spec:css-view-transitions-2; type:value; text:normal spec:css-writing-modes-4; type:value; text:normal spec:scroll-animations-1; type:value; for:animation-range-end; text:normal spec:scroll-animations-1; type:value; for:animation-range-start; text:normal spec:compositing-2; type:value; text:normal +spec:motion-1; type:value; text:normal ''normal'' LINE 401: Multiple possible 'stretch' maybe refs for '['align-self']'. Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-stretch diff --git a/tests/github/w3c/csswg-drafts/css-grid-3/Overview.html b/tests/github/w3c/csswg-drafts/css-grid-3/Overview.html index 07a30c6062..3fd877995d 100644 --- a/tests/github/w3c/csswg-drafts/css-grid-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-grid-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Grid Layout Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-grid-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1071,7 +1070,7 @@ <h1 class="p-name no-ref" id="title">CSS Grid Layout Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1093,7 +1092,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-grid] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-grid%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1857,7 +1856,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -1965,7 +1964,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="masonry-layout"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns" title="The grid-template-columns CSS property defines the line names and track sizing functions of the grid columns.">grid-template-columns</a></p> <p class="all-engines-text">In all current engines.</p> @@ -1980,10 +1979,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout" title="Level 3 of the CSS Grid Layout specification includes a masonry value for grid-template-columns and grid-template-rows. This guide details what masonry layout is, and how to use it.">CSS_Grid_Layout/Masonry_Layout</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout" title="Level 3 of the CSS grid layout specification includes a masonry value for grid-template-columns and grid-template-rows. This guide details what masonry layout is and how to use it.">CSS_Grid_Layout/Masonry_Layout</a></p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 77+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 77+</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -2010,9 +2008,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/masonry-auto-flow" title="The masonry-auto-flow CSS property modifies how items are placed when using masonry in CSS Grid Layout.">masonry-auto-flow</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> diff --git a/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.console.txt index de4504aaa9..11b3835468 100644 --- a/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.console.txt @@ -2,30 +2,6 @@ LINE ~221: The var 'keyArg' (in algorithm 'to register a custom highlight') is o If this is not a typo, please add an ignore='' attribute to the <var>. LINE ~221: The var 'valueArg' (in algorithm 'to register a custom highlight') is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. -LINE ~81: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~142: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~151: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=Ranges=] -LINE ~159: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] LINE ~221: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] LINE ~232: Multiple possible 'identifier' dfn refs. @@ -38,52 +14,12 @@ LINE ~262: No 'property' refs found for 'foo'. 'foo' LINE ~262: No 'property' refs found for 'bar'. 'bar' -LINE ~276: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~314: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~317: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~438: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] -LINE ~482: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] -LINE ~488: Multiple possible 'range' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=range=] LINE ~488: No 'dfn' refs found for 'highlight regsitry'. [=highlight regsitry=] -LINE ~497: Multiple possible 'ranges' dfn refs. -Arbitrarily chose https://dom.spec.whatwg.org/#concept-range -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:dom; type:dfn; text:range -spec:i18n-glossary; type:dfn; text:range -[=ranges=] LINE ~183: Couldn't find section '#es-add-delete' in spec 'webidl': [[webidl#es-add-delete|the steps for a built-in setlike add function]] +LINE ~221: Couldn't find section '#es-map-set' in spec 'webidl': +[[webidl#es-map-set|the steps for a built-in maplike set function]] LINE 533: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE ~236: Couldn't find target document section styling-problems-with-multiple-names-per-highlight: [[#styling-problems-with-multiple-names-per-highlight|example]] diff --git a/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.html b/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.html index 7994208e2b..63c359e628 100644 --- a/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-highlight-api-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Custom Highlight API Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-highlight-api-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -486,6 +485,230 @@ margin-bottom: 0; } </style> +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; +} +</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -907,7 +1130,7 @@ <h1 class="p-name no-ref" id="title">CSS Custom Highlight API Module Level 1</h1 </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -930,7 +1153,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-highlight-api] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-highlight-api%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1043,7 +1266,7 @@ <h2 class="heading settled" data-level="2" id="interaction"><span class="secno"> <p>It assumes general familiarity with CSS and with the DOM Standard <a data-link-type="biblio" href="#biblio-dom" title="DOM Standard">[DOM]</a>, and specifically extends the mechanisms defined in CSS Pseudo-Elements Module Level 4 <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[css-pseudo-4]</a> to handle <a data-link-type="dfn" href="https://drafts.csswg.org/css-pseudo-4/#highlight-pseudo-element" id="ref-for-highlight-pseudo-element①">highlight pseudo-elements</a>. - The Selectors Level 4 <a data-link-type="biblio" href="#biblio-selectors-4" title="Selectors Level 4">[selectors-4]</a> specification defines how <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element">pseudo-elements</a> work in general.</p> + The Selectors Level 4 <a data-link-type="biblio" href="#biblio-selectors-4" title="Selectors Level 4">[selectors-4]</a> specification defines how <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22">pseudo-elements</a> work in general.</p> <p>See <a href="#references">References</a> for a full list of dependencies.</p> <p class="note" role="note"><span class="marker">Note:</span> This draft is an early version. As it matures, the CSS-WG could decide to keep it as an independent module, @@ -1079,7 +1302,7 @@ <h3 class="heading settled" data-level="3.1" id="creation"><span class="secno">3 <li> Let <var>highlight</var> be the new <code class="idl"><a data-link-type="idl" href="#highlight" id="ref-for-highlight③">Highlight</a></code> object. <li> Set <var>highlight</var>’s <code class="idl"><a data-link-type="idl" href="#dom-highlight-priority" id="ref-for-dom-highlight-priority①">priority</a></code> to <code>0</code>. <li> For each <var>range</var> of <code class="idl"><a data-link-type="idl" href="#dom-highlight-highlight-initialranges-initialranges" id="ref-for-dom-highlight-highlight-initialranges-initialranges">initialRanges</a></code>, - let <var>rangeArg</var> be the result of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value" id="ref-for-dfn-convert-idl-to-ecmascript-value">converting</a> <var>range</var> to an ECMAScript value, + let <var>rangeArg</var> be the result of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value" id="ref-for-dfn-convert-idl-to-javascript-value">converting</a> <var>range</var> to an ECMAScript value, then run <span spec-section="#es-add-delete">the steps for a built-in setlike add function</span>, with <var>highlight</var> as the <code>this</code> value, and <var>rangeArg</var> as the argument. @@ -1105,7 +1328,7 @@ <h3 class="heading settled" data-level="3.2" id="registration"><span class="secn </pre> <div class="algorithm" data-algorithm="to register a custom highlight"> To <a data-link-type="dfn" href="#registered" id="ref-for-registered③">register</a> a <a data-link-type="dfn" href="#custom-highlight" id="ref-for-custom-highlight⑥">custom highlight</a>, - invoke the <code>set</code> method of the <a data-link-type="dfn" href="#highlight-registry" id="ref-for-highlight-registry②">highlight registry</a> which will run <a href="https://webidl.spec.whatwg.org/#es-map-set">the steps for a built-in maplike set function</a>, + invoke the <code>set</code> method of the <a data-link-type="dfn" href="#highlight-registry" id="ref-for-highlight-registry②">highlight registry</a> which will run <span spec-section="#es-map-set">the steps for a built-in maplike set function</span>, with the <a data-link-type="dfn">context object</a> as the <code>this</code> value, the passed-in <a data-link-type="dfn" href="#custom-highlight-name" id="ref-for-custom-highlight-name">custom highlight name</a> as <var>keyArg</var>, and the passed-in highlight as <var>valueArg</var>. @@ -1491,6 +1714,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="9dc6ce48">identifier</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="2161cf2b">pseudo-elements</span> + </ul> <li> <a data-link-type="biblio">[CSSOM-1]</a> defines the following terms: <ul> @@ -1525,7 +1753,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[SELECTORS-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="9bfc28f6">pseudo-element</span> <li><span class="dfn-paneled" id="bb2056aa">specificity</span> </ul> <li> @@ -1533,7 +1760,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="8855a9aa">DOMString</span> <li><span class="dfn-paneled" id="889e932f">Exposed</span> - <li><span class="dfn-paneled" id="f76fae78">converted to an ecmascript value</span> + <li><span class="dfn-paneled" id="ae4bc361">converted to an ecmascript value</span> <li><span class="dfn-paneled" id="f8de33a3">long</span> <li><span class="dfn-paneled" id="a1ecf8d3">map entries</span> <li><span class="dfn-paneled" id="77996ab1">maplike</span> @@ -1554,6 +1781,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-dom">[DOM] @@ -1623,6 +1852,38 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content or should that be added to pseudo-elements in general? <a class="issue-return" href="#issue-230bd93b" title="Jump to section">↵</a></div> <div class="issue"> Acknowledge people (other than editors) who deserve credit for this. <a class="issue-return" href="#issue-f0ab6bff" title="Jump to section">↵</a></div> </div> + <details class="mdn-anno unpositioned" data-anno-for="dom-css-highlights"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/highlights_static" title="The static, read-only highlights property of the CSS interface provides access to the HighlightRegistry used to style arbitrary text ranges using the CSS Custom Highlight API.">CSS/highlights_static</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>105+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>105+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="custom-highlight-pseudo"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::highlight" title="The ::highlight() CSS pseudo-element applies styles to a custom highlight.">::highlight</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>105+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>105+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -1827,6 +2088,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "11e23a43": {"dfnID":"11e23a43","dfnText":"live ranges","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-live-range"},{"id":"ref-for-concept-live-range\u2460"}],"title":"5.2. \nRange Updating and Invalidation"}],"url":"https://dom.spec.whatwg.org/#concept-live-range"}, "203b148b": {"dfnID":"203b148b","dfnText":"end offset","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-range-end-offset"}],"title":"5.2. \nRange Updating and Invalidation"}],"url":"https://dom.spec.whatwg.org/#concept-range-end-offset"}, "20fff200": {"dfnID":"20fff200","dfnText":"inheritance","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"}],"title":"4.2.2. \nCascading and Inheritance"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, +"2161cf2b": {"dfnID":"2161cf2b","dfnText":"pseudo-elements","external":true,"refSections":[{"refs":[{"id":"ref-for-x22"}],"title":"2. \nModule Interactions"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, "2ebbc6e1": {"dfnID":"2ebbc6e1","dfnText":"AbstractRange","external":true,"refSections":[{"refs":[{"id":"ref-for-abstractrange"},{"id":"ref-for-abstractrange\u2460"},{"id":"ref-for-abstractrange\u2461"},{"id":"ref-for-abstractrange\u2462"}],"title":"3.1. \nCreating Custom Highlights"}],"url":"https://dom.spec.whatwg.org/#abstractrange"}, "3349d69f": {"dfnID":"3349d69f","dfnText":"associated document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-window"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window"}, "3edd98b4": {"dfnID":"3edd98b4","dfnText":"end node","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-range-end-node"}],"title":"5.2. \nRange Updating and Invalidation"}],"url":"https://dom.spec.whatwg.org/#concept-range-end-node"}, @@ -1848,11 +2110,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8e6c8fec": {"dfnID":"8e6c8fec","dfnText":"partially contained","external":true,"refSections":[{"refs":[{"id":"ref-for-partially-contained"}],"title":"4.1. \nThe Custom Highlight Pseudo-element: ::highlight()"}],"url":"https://dom.spec.whatwg.org/#partially-contained"}, "96c16e60": {"dfnID":"96c16e60","dfnText":"Node","external":true,"refSections":[{"refs":[{"id":"ref-for-node"}],"title":"5.2. \nRange Updating and Invalidation"}],"url":"https://dom.spec.whatwg.org/#node"}, "9b54ada7": {"dfnID":"9b54ada7","dfnText":"style containment","external":true,"refSections":[{"refs":[{"id":"ref-for-style-containment"}],"title":"5.2. \nRange Updating and Invalidation"}],"url":"https://drafts.csswg.org/css-contain-2/#style-containment"}, -"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"2. \nModule Interactions"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "9dc6ce48": {"dfnID":"9dc6ce48","dfnText":"identifier","external":true,"refSections":[{"refs":[{"id":"ref-for-css-css-identifier"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"https://drafts.csswg.org/css-values-4/#css-css-identifier"}, "a1ecf8d3": {"dfnID":"a1ecf8d3","dfnText":"map entries","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-map-entries"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"https://webidl.spec.whatwg.org/#dfn-map-entries"}, "a43c62be": {"dfnID":"a43c62be","dfnText":"CSS","external":true,"refSections":[{"refs":[{"id":"ref-for-namespacedef-css"},{"id":"ref-for-namespacedef-css\u2460"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"https://drafts.csswg.org/cssom-1/#namespacedef-css"}, "a50a11ab": {"dfnID":"a50a11ab","dfnText":"in a document tree","external":true,"refSections":[{"refs":[{"id":"ref-for-in-a-document-tree"}],"title":"5.2. \nRange Updating and Invalidation"}],"url":"https://dom.spec.whatwg.org/#in-a-document-tree"}, +"ae4bc361": {"dfnID":"ae4bc361","dfnText":"converted to an ecmascript value","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-convert-idl-to-javascript-value"}],"title":"3.1. \nCreating Custom Highlights"}],"url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value"}, "bb2056aa": {"dfnID":"bb2056aa","dfnText":"specificity","external":true,"refSections":[{"refs":[{"id":"ref-for-specificity"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"https://drafts.csswg.org/selectors-4/#specificity"}, "cc212fd8": {"dfnID":"cc212fd8","dfnText":"setlike","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-setlike"},{"id":"ref-for-dfn-setlike\u2460"}],"title":"3.1. \nCreating Custom Highlights"}],"url":"https://webidl.spec.whatwg.org/#dfn-setlike"}, "ce3d2bbb": {"dfnID":"ce3d2bbb","dfnText":"current global object","external":true,"refSections":[{"refs":[{"id":"ref-for-current-global-object"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#current-global-object"}, @@ -1867,7 +2129,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dom-highlight-priority": {"dfnID":"dom-highlight-priority","dfnText":"priority","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-highlight-priority"},{"id":"ref-for-dom-highlight-priority\u2460"}],"title":"3.1. \nCreating Custom Highlights"},{"refs":[{"id":"ref-for-dom-highlight-priority\u2461"},{"id":"ref-for-dom-highlight-priority\u2462"}],"title":"4.2.4. \nPriority of Overlapping Highlights"},{"refs":[{"id":"ref-for-dom-highlight-priority\u2463"}],"title":"5.1. \nRepaints"}],"url":"#dom-highlight-priority"}, "e5c4081a": {"dfnID":"e5c4081a","dfnText":"::spelling-error","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-spelling-error"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-spelling-error"}, "f1195e5b": {"dfnID":"f1195e5b","dfnText":"set entries","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-set-entries"},{"id":"ref-for-dfn-set-entries\u2460"}],"title":"3.1. \nCreating Custom Highlights"}],"url":"https://webidl.spec.whatwg.org/#dfn-set-entries"}, -"f76fae78": {"dfnID":"f76fae78","dfnText":"converted to an ecmascript value","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-convert-idl-to-ecmascript-value"}],"title":"3.1. \nCreating Custom Highlights"}],"url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value"}, "f8de33a3": {"dfnID":"f8de33a3","dfnText":"long","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-long"}],"title":"3.1. \nCreating Custom Highlights"}],"url":"https://webidl.spec.whatwg.org/#idl-long"}, "highlight": {"dfnID":"highlight","dfnText":"Highlight","external":false,"refSections":[{"refs":[{"id":"ref-for-highlight"},{"id":"ref-for-highlight\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-highlight\u2461"},{"id":"ref-for-highlight\u2462"}],"title":"3.1. \nCreating Custom Highlights"},{"refs":[{"id":"ref-for-highlight\u2463"}],"title":"3.2. \nRegistering Custom Highlights"}],"url":"#highlight"}, "highlight-registry": {"dfnID":"highlight-registry","dfnText":"highlight registry","external":false,"refSections":[{"refs":[{"id":"ref-for-highlight-registry"},{"id":"ref-for-highlight-registry\u2460"},{"id":"ref-for-highlight-registry\u2461"}],"title":"3.2. \nRegistering Custom Highlights"},{"refs":[{"id":"ref-for-highlight-registry\u2462"}],"title":"4.2.4. \nPriority of Overlapping Highlights"},{"refs":[{"id":"ref-for-highlight-registry\u2463"}],"title":"5.1. \nRepaints"}],"url":"#highlight-registry"}, @@ -2260,6 +2521,63 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -2305,18 +2623,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-syntax-3/#typedef-ident-token": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<ident-token>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-ident-token"}, "https://drafts.csswg.org/css-values-4/#css-css-identifier": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"identifier","type":"dfn","url":"https://drafts.csswg.org/css-values-4/#css-css-identifier"}, "https://drafts.csswg.org/cssom-1/#namespacedef-css": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"CSS","type":"namespace","url":"https://drafts.csswg.org/cssom-1/#namespacedef-css"}, -"https://drafts.csswg.org/selectors-4/#pseudo-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"pseudo-element","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "https://drafts.csswg.org/selectors-4/#specificity": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"specificity","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#specificity"}, "https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"associated document","type":"dfn","url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window"}, "https://html.spec.whatwg.org/multipage/webappapis.html#current-global-object": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"current global object","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#current-global-object"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, -"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"converted to an ecmascript value","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-ecmascript-value"}, +"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"converted to an ecmascript value","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-convert-idl-to-javascript-value"}, "https://webidl.spec.whatwg.org/#dfn-map-entries": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"map entries","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-map-entries"}, "https://webidl.spec.whatwg.org/#dfn-maplike": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"maplike","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-maplike"}, "https://webidl.spec.whatwg.org/#dfn-set-entries": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"set entries","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-set-entries"}, "https://webidl.spec.whatwg.org/#dfn-setlike": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"setlike","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-setlike"}, "https://webidl.spec.whatwg.org/#idl-DOMString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "https://webidl.spec.whatwg.org/#idl-long": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"long","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-long"}, +"https://www.w3.org/TR/CSS21/selector.html#x22": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-elements","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-images-3/Overview.html b/tests/github/w3c/csswg-drafts/css-images-3/Overview.html index 17bf1cba78..bc3251fa07 100644 --- a/tests/github/w3c/csswg-drafts/css-images-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-images-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Images Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-images-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1306,7 +1305,7 @@ <h1 class="p-name no-ref" id="title">CSS Images Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1333,7 +1332,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-images] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-images%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -3177,7 +3176,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-content-3">[CSS-CONTENT-3] @@ -3201,7 +3200,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -3210,11 +3209,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-selectors-4">[SELECTORS-4] @@ -3297,7 +3296,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3407,22 +3406,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="linear-gradients"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient" title="The linear-gradient() CSS function creates an image consisting of a progressive transition between two or more colors along a straight line. Its result is an object of the <gradient> data type, which is a special kind of <image>.">gradient/linear-gradient</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>16+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>26+</span></span> - <hr> - <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="radial-gradients"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3470,18 +3453,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="funcdef-repeating-linear-gradient" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>26+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>16+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>6.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>7.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-repeating-gradients">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>26+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>16+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>6.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>7.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-repeating-gradients">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="the-image-orientation" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>81+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>81+</span></span><span class="firefox yes"><span>Firefox</span><span>26+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>68+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>14.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>13.0+</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-image-orientation">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>81+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>81+</span></span><span class="firefox yes"><span>Firefox</span><span>26+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>68+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>14.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>13.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-image-orientation">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-image-rendering-crisp-edges" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>10.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-crisp-edges">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>10.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-crisp-edges">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -4186,7 +4169,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let linkTitleData = { "#typedef-size": "Expands to: <length-percentage>{2} | <length> | closest-corner | closest-side | farthest-corner | farthest-side | sides", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#resolution-value": "Expands to: dpcm | dpi | dppx | x", diff --git a/tests/github/w3c/csswg-drafts/css-images-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-images-4/Overview.console.txt index 34f3fce920..2fd0759ca3 100644 --- a/tests/github/w3c/csswg-drafts/css-images-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-images-4/Overview.console.txt @@ -12,6 +12,4 @@ LINE 1418: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1431: Image doesn't exist, so I couldn't determine its width and height: 'images/repeating-conic2.png' LINE 1442: Image doesn't exist, so I couldn't determine its width and height: 'images/repeating-conic3.png' LINE 1869: Image doesn't exist, so I couldn't determine its width and height: 'images/img_scale.png' -LINE 769: No 'dfn' refs found for 'stacking context' with spec 'css2'. -<a bs-line-number="769" data-link-spec="css2" data-link-type="dfn" data-lt="stacking context">stacking context</a> LINE 2213: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-images-4/Overview.html b/tests/github/w3c/csswg-drafts/css-images-4/Overview.html index 6c4808b258..ee73aff0e3 100644 --- a/tests/github/w3c/csswg-drafts/css-images-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-images-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Images Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css4-images/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1348,7 +1347,7 @@ <h1 class="p-name no-ref" id="title">CSS Images Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1372,7 +1371,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-images] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-images%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1540,7 +1539,7 @@ <h3 class="heading settled" data-level="2.1" id="image-file-formats"><span class when referenced from an <a class="production css" data-link-type="type" href="#typedef-image" id="ref-for-typedef-image⑥">&lt;image></a> value, for all the properties in which using <span class="production" id="ref-for-typedef-image⑦">&lt;image></span> is valid:</p> <ul> - <li>PNG, as specified in <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a> + <li>PNG, as specified in <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a> <li>SVG, as specified in <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, using the <a href="https://www.w3.org/TR/svg-integration/#secure-static-mode">secure static mode</a> (See <a data-link-type="biblio" href="#biblio-svg-integration" title="SVG Integration">[SVG-INTEGRATION]</a>) <li>If the UA supports animated <a class="production css" data-link-type="type" href="#typedef-image" id="ref-for-typedef-image⑧">&lt;image></a>s, @@ -1586,7 +1585,7 @@ <h3 class="heading settled" data-level="2.3" id="image-set-notation"><span class <p>An image reference (required). This can be a URL, or a CSS generated image, -such as a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient">linear-gradient()</a>.</p> +such as a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient">linear-gradient()</a>.</p> <li data-md> <p>A <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#resolution-value" id="ref-for-resolution-value①">&lt;resolution></a> (optional). This is used to help the UA decide which <a class="production css" data-link-type="type" href="#typedef-image-set-option" id="ref-for-typedef-image-set-option②">&lt;image-set-option></a> to choose. @@ -1671,7 +1670,7 @@ <h3 class="heading settled" data-level="2.3" id="image-set-notation"><span class or even CSS generated images. <p>For example, in this code snippet a high-resolution image with subtle details is used on screens that can do it justice, - while an ordinary CSS <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient①">linear-gradient()</a> is used instead for low-resolution situations:</p> + while an ordinary CSS <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient①">linear-gradient()</a> is used instead for low-resolution situations:</p> <pre class="highlight"><c- k>background-image</c-><c- p>:</c-> <c- nf>image-set</c-><c- p>(</c-> <c- nf>linear-gradient</c-><c- p>(</c->cornflowerblue<c- p>,</c-> white<c- p>)</c-> <c- m>1</c-><c- k>x</c-><c- p>,</c-> <c- nf>url</c-><c- p>(</c-><c- s>"detailed-gradient.png"</c-><c- p>)</c-> <c- m>3</c-><c- k>x</c-> <c- p>);</c-> </pre> @@ -2010,7 +2009,7 @@ <h3 class="heading settled caniuse-paneled" data-level="2.6" id="element-notatio <dl> <dt> an <a data-link-type="dfn" href="#element-not-rendered" id="ref-for-element-not-rendered">element that is rendered</a>, is not a descendant of a replaced element, - and generates a <a data-link-type="dfn">stacking context</a> + and generates a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a> <dd> The function represents an image with its <a data-link-type="dfn" href="https://drafts.csswg.org/css-images-3/#natural-size" id="ref-for-natural-size">natural size</a> equal to the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="decorated-bounding-box">decorated bounding box</dfn> of the referenced element: <ul> @@ -2266,8 +2265,8 @@ <h2 class="heading settled" data-level="3" id="gradients"><span class="secno">3. so that the UA can generate the image automatically when rendering the page. The syntax of a <a class="production css" data-link-type="type" href="#typedef-gradient" id="ref-for-typedef-gradient①">&lt;gradient></a> is:</p> <pre class="prod highlight"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-gradient">&lt;gradient></dfn> = <c- p>[</c-> - <a class="production" data-link-type="function" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient②">&lt;<c- nf>linear-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑨">|</a> <a class="production" data-link-type="function" href="#funcdef-repeating-linear-gradient" id="ref-for-funcdef-repeating-linear-gradient">&lt;<c- nf>repeating-linear-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①⓪">|</a> - <a class="production" data-link-type="function" href="https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient">&lt;<c- nf>radial-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①①">|</a> <a class="production" data-link-type="function" href="#funcdef-repeating-radial-gradient" id="ref-for-funcdef-repeating-radial-gradient">&lt;<c- nf>repeating-radial-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①②">|</a> + <a class="production" data-link-type="function" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient②">&lt;<c- nf>linear-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑨">|</a> <a class="production" data-link-type="function" href="#funcdef-repeating-linear-gradient" id="ref-for-funcdef-repeating-linear-gradient">&lt;<c- nf>repeating-linear-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①⓪">|</a> + <a class="production" data-link-type="function" href="https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient">&lt;<c- nf>radial-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①①">|</a> <a class="production" data-link-type="function" href="#funcdef-repeating-radial-gradient" id="ref-for-funcdef-repeating-radial-gradient">&lt;<c- nf>repeating-radial-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①②">|</a> <a class="production" data-link-type="function" href="#funcdef-conic-gradient" id="ref-for-funcdef-conic-gradient">&lt;<c- nf>conic-gradient</c-><c- p>()</c->></a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①③">|</a> <a class="production" data-link-type="function" href="#funcdef-repeating-conic-gradient" id="ref-for-funcdef-repeating-conic-gradient">&lt;<c- nf>repeating-conic-gradient</c-><c- p>()</c->></a> <c- p>]</c-> </pre> <div class="example" id="example-3bdc7fad"> @@ -2295,9 +2294,9 @@ <h2 class="heading settled" data-level="3" id="gradients"><span class="secno">3. and then specifying colors at points along this line. The colors are smoothly blended to fill in the rest of the line, and then each type of gradient defines how to use the color of the <a data-link-type="dfn" href="#gradient-line" id="ref-for-gradient-line">gradient line</a> to produce the actual gradient.</p> - <h3 class="heading settled" data-level="3.1" id="linear-gradients"><span class="secno">3.1. </span><span class="content">Linear Gradients: the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient③">linear-gradient()</a> notation</span><a class="self-link" href="#linear-gradients"></a></h3> + <h3 class="heading settled" data-level="3.1" id="linear-gradients"><span class="secno">3.1. </span><span class="content">Linear Gradients: the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient③">linear-gradient()</a> notation</span><a class="self-link" href="#linear-gradients"></a></h3> <p class="note" role="note"><span class="marker">Note:</span> No change from <a data-link-type="biblio" href="#biblio-css3-images" title="CSS Images Module Level 3">[css3-images]</a>.</p> - <h3 class="heading settled" data-level="3.2" id="radial-gradients"><span class="secno">3.2. </span><span class="content">Radial Gradients: the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient①">radial-gradient()</a> notation</span><a class="self-link" href="#radial-gradients"></a></h3> + <h3 class="heading settled" data-level="3.2" id="radial-gradients"><span class="secno">3.2. </span><span class="content">Radial Gradients: the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient①">radial-gradient()</a> notation</span><a class="self-link" href="#radial-gradients"></a></h3> <p class="note" role="note"><span class="marker">Note:</span> No change from <a data-link-type="biblio" href="#biblio-css3-images" title="CSS Images Module Level 3">[css3-images]</a>.</p> <h3 class="heading settled" data-level="3.3" id="conic-gradients"><span class="secno">3.3. </span><span class="content"> Conic Gradients: the <a class="css" data-link-type="maybe" href="#funcdef-conic-gradient" id="ref-for-funcdef-conic-gradient①">conic-gradient()</a> notation</span><a class="self-link" href="#conic-gradients"></a></h3> <p>A conic gradient starts by specifying the center of a circle, @@ -2423,7 +2422,7 @@ <h4 class="no-toc heading settled" data-level="3.3.3" id="conic-gradient-example <p><img alt src="images/conic6.png"></p> </div> <h3 class="heading settled" data-level="3.4" id="repeating-gradients"><span class="secno">3.4. </span><span class="content"> Repeating Gradients: the <a class="css" data-link-type="maybe" href="#funcdef-repeating-linear-gradient" id="ref-for-funcdef-repeating-linear-gradient①">repeating-linear-gradient()</a>, <a class="css" data-link-type="maybe" href="#funcdef-repeating-radial-gradient" id="ref-for-funcdef-repeating-radial-gradient①">repeating-radial-gradient()</a>, and <a class="css" data-link-type="maybe" href="#funcdef-repeating-conic-gradient" id="ref-for-funcdef-repeating-conic-gradient①">repeating-conic-gradient()</a> notations</span><a class="self-link" href="#repeating-gradients"></a></h3> - <p>In addition to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient④">linear-gradient()</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient②">radial-gradient()</a>, and <a class="css" data-link-type="maybe" href="#funcdef-conic-gradient" id="ref-for-funcdef-conic-gradient④">conic-gradient()</a>, + <p>In addition to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient④">linear-gradient()</a>, <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient②">radial-gradient()</a>, and <a class="css" data-link-type="maybe" href="#funcdef-conic-gradient" id="ref-for-funcdef-conic-gradient④">conic-gradient()</a>, this specification defines <dfn class="dfn-paneled css" data-dfn-type="function" data-export id="funcdef-repeating-linear-gradient">repeating-linear-gradient()</dfn>, <dfn class="dfn-paneled css" data-dfn-type="function" data-export id="funcdef-repeating-radial-gradient">repeating-radial-gradient()</dfn>, and <dfn class="dfn-paneled css" data-dfn-type="function" data-export id="funcdef-repeating-conic-gradient">repeating-conic-gradient()</dfn> values. These notations take the same values @@ -3006,8 +3005,8 @@ <h3 class="heading settled" data-level="7.3" id="interpolating-gradients"><span <ol> <li data-md> <p>Both the starting and ending gradient must be expressed with the same function. -(For example, you can transition from a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient⑤">linear-gradient()</a> to a <span class="css" id="ref-for-funcdef-linear-gradient⑥">linear-gradient()</span>, -but not from a <span class="css" id="ref-for-funcdef-linear-gradient⑦">linear-gradient()</span> to a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient③">radial-gradient()</a> or a <a class="css" data-link-type="maybe" href="#funcdef-repeating-linear-gradient" id="ref-for-funcdef-repeating-linear-gradient②">repeating-linear-gradient()</a>.)</p> +(For example, you can transition from a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient⑤">linear-gradient()</a> to a <span class="css" id="ref-for-funcdef-linear-gradient⑥">linear-gradient()</span>, +but not from a <span class="css" id="ref-for-funcdef-linear-gradient⑦">linear-gradient()</span> to a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient" id="ref-for-funcdef-radial-gradient③">radial-gradient()</a> or a <a class="css" data-link-type="maybe" href="#funcdef-repeating-linear-gradient" id="ref-for-funcdef-repeating-linear-gradient②">repeating-linear-gradient()</a>.)</p> <li data-md> <p>Both the starting and ending gradient must have the same number of <a class="production css" data-link-type="type" href="#typedef-color-stop" id="ref-for-typedef-color-stop">&lt;color-stop></a>s. For this purpose, all repeating gradients are considered to have infinite color stops, @@ -3055,8 +3054,8 @@ <h3 class="heading settled" data-level="7.3" id="interpolating-gradients"><span <li data-md> <p>Otherwise, the size must be changed to a pair of <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#length-value" id="ref-for-length-value⑤">&lt;length></a>s that would produce an equivalent ending-shape. -If the <a class="production css" data-link-type="type">&lt;ending-shape></a> was specified as <a class="css" data-link-type="value" href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle" id="ref-for-valdef-rg-ending-shape-circle">circle</a>, -change it to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse" id="ref-for-valdef-rg-ending-shape-ellipse">ellipse</a>.</p> +If the <a class="production css" data-link-type="type">&lt;ending-shape></a> was specified as <a class="css" data-link-type="value" href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle" id="ref-for-valdef-radial-shape-circle">circle</a>, +change it to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse" id="ref-for-valdef-radial-shape-ellipse">ellipse</a>.</p> </ul> </dl> <li data-md> @@ -3308,8 +3307,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-IMAGES-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="a7d749a4">linear-gradient()</span> - <li><span class="dfn-paneled" id="28a738db">radial-gradient()</span> <li><span class="dfn-paneled" id="e21ae7ff">stripes()</span> </ul> <li> @@ -3349,16 +3346,22 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[CSS3-IMAGES]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="dccd8a9d">circle</span> + <li><span class="dfn-paneled" id="4e74fff7">circle</span> <li><span class="dfn-paneled" id="1f6aa483">concrete object size</span> <li><span class="dfn-paneled" id="ee2d777b">contain constraint</span> <li><span class="dfn-paneled" id="02efbaaa">cover constraint</span> <li><span class="dfn-paneled" id="2bceefb2">default object size</span> <li><span class="dfn-paneled" id="581e7e57">default sizing algorithm</span> - <li><span class="dfn-paneled" id="01d2ad7d">ellipse</span> + <li><span class="dfn-paneled" id="44be0cef">ellipse</span> + <li><span class="dfn-paneled" id="d3f930a7">linear-gradient()</span> <li><span class="dfn-paneled" id="23012643">natural aspect ratio</span> <li><span class="dfn-paneled" id="d3936525">natural dimension</span> <li><span class="dfn-paneled" id="75563977">natural height</span> @@ -3366,6 +3369,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="917fcd3c">natural width</span> <li><span class="dfn-paneled" id="ae390677">object size negotiation</span> <li><span class="dfn-paneled" id="157236b0">object-position</span> + <li><span class="dfn-paneled" id="f8ad7945">radial-gradient()</span> </ul> <li> <a data-link-type="biblio">[CSSOM]</a> defines the following terms: @@ -3409,15 +3413,15 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-ui-4">[CSS-UI-4] @@ -3443,7 +3447,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-mimesniff">[MIMESNIFF] <dd>Gordon P. Hemsley. <a href="https://mimesniff.spec.whatwg.org/"><cite>MIME Sniffing Standard</cite></a>. Living Standard. URL: <a href="https://mimesniff.spec.whatwg.org/">https://mimesniff.spec.whatwg.org/</a> <dt id="biblio-png">[PNG] - <dd>Tom Lane. <a href="https://w3c.github.io/PNG-spec/"><cite>Portable Network Graphics (PNG) Specification (Second Edition)</cite></a>. URL: <a href="https://w3c.github.io/PNG-spec/">https://w3c.github.io/PNG-spec/</a> + <dd>Chris Lilley; et al. <a href="https://w3c.github.io/png/"><cite>Portable Network Graphics (PNG) Specification (Third Edition)</cite></a>. URL: <a href="https://w3c.github.io/png/">https://w3c.github.io/png/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-select">[SELECT] @@ -3594,7 +3598,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="gradients"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient" title="The <gradient> CSS data type is a special type of <image> that consists of a progressive transition between two or more colors.">gradient</a></p> <p class="all-engines-text">In all current engines.</p> @@ -3608,6 +3612,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient" title="The <gradient> CSS data type is a special type of <image> that consists of a progressive transition between two or more colors.">gradient</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>26+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient" title="The <gradient> CSS data type is a special type of <image> that consists of a progressive transition between two or more colors.">gradient</a></p> <p class="all-engines-text">In all current engines.</p> @@ -3626,11 +3643,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/image-set()" title="The image-set() CSS functional notation is a method of letting the browser pick the most appropriate CSS image from a given set, primarily for high pixel density screens.">image-set()</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>14+</span></span><span class="chrome yes"><span>Chrome</span><span>113+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>113+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3641,9 +3658,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/image/image-set" title="The image-set() CSS functional notation is a method of letting the browser pick the most appropriate CSS image from a given set, primarily for high pixel density screens.">image/image-set</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>113+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>113+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/image/image-set" title="The image-set() CSS functional notation is a method of letting the browser pick the most appropriate CSS image from a given set, primarily for high pixel density screens.">image/image-set</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>14+</span></span><span class="chrome yes"><span>Chrome</span><span>113+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>113+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3683,6 +3713,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="linear-gradients"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient" title="The linear-gradient() CSS function creates an image consisting of a progressive transition between two or more colors along a straight line. Its result is an object of the <gradient> data type, which is a special kind of <image>.">gradient/linear-gradient</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>16+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>26+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="repeating-gradients"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3717,18 +3763,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="funcdef-image-set" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android no"><span>Android Browser</span><span>None</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome partial"><span><span>Chrome (limited)</span></span><span>110+</span></span><span class="and_chr no"><span>Chrome for Android</span><span>None</span></span><span class="edge no"><span>Edge</span><span>None</span></span><span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera no"><span>Opera</span><span>None</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob no"><span>Opera Mobile</span><span>None</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari partial"><span><span>Safari (limited)</span></span><span>10+</span></span><span class="ios_saf partial"><span><span>Safari on iOS (limited)</span></span><span>10.0+</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-image-set">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>113+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>113+</span></span><span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>99+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>17.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>17.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>23+</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-image-set">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="funcdef-cross-fade" data-deco> <summary>CanIUse</summary> <p class="support"><b>Support:</b><span class="android no"><span>Android Browser</span><span>None</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span><span class="and_chr no"><span>Chrome for Android</span><span>None</span></span><span class="edge no"><span>Edge</span><span>None</span></span><span class="firefox no"><span>Firefox</span><span>None</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera no"><span>Opera</span><span>None</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob no"><span>Opera Mobile</span><span>None</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>10.0+</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-cross-fade">caniuse.com</a> as of 2023-01-27</p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-cross-fade">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="element-notation" data-deco> <summary>CanIUse</summary> <p class="support"><b>Support:</b><span class="android no"><span>Android Browser</span><span>None</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span><span class="and_chr no"><span>Chrome for Android</span><span>None</span></span><span class="edge no"><span>Edge</span><span>None</span></span><span class="firefox no"><span>Firefox</span><span>None</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera no"><span>Opera</span><span>None</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob no"><span>Opera Mobile</span><span>None</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-element-function">caniuse.com</a> as of 2023-01-27</p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-element-function">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -3931,7 +3977,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let dfnPanelData = { "--natural-resolution": {"dfnID":"--natural-resolution","dfnText":"natural resolution","external":false,"refSections":[{"refs":[{"id":"ref-for---natural-resolution"},{"id":"ref-for---natural-resolution\u2460"},{"id":"ref-for---natural-resolution\u2461"},{"id":"ref-for---natural-resolution\u2462"}],"title":"2.3. Resolution/Type Negotiation: the image-set() notation"},{"refs":[{"id":"ref-for---natural-resolution\u2463"},{"id":"ref-for---natural-resolution\u2464"},{"id":"ref-for---natural-resolution\u2465"}],"title":"6.1. Overriding Image Resolutions: the image-resolution property"}],"url":"#--natural-resolution"}, -"01d2ad7d": {"dfnID":"01d2ad7d","dfnText":"ellipse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-ending-shape-ellipse"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse"}, "02efbaaa": {"dfnID":"02efbaaa","dfnText":"cover constraint","external":true,"refSections":[{"refs":[{"id":"ref-for-cover-constraint"}],"title":"5.1. Sizing Objects: the object-fit property"}],"url":"https://drafts.csswg.org/css-images-3/#cover-constraint"}, "08eba280": {"dfnID":"08eba280","dfnText":"!","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-req"}],"title":"2.4. Image Fallbacks and Annotations: the image() notation"}],"url":"https://drafts.csswg.org/css-values-4/#mult-req"}, "0e8de730": {"dfnID":"0e8de730","dfnText":"tuple","external":true,"refSections":[{"refs":[{"id":"ref-for-tuple"}],"title":"2.5.1. cross-fade() Sizing"},{"refs":[{"id":"ref-for-tuple\u2460"},{"id":"ref-for-tuple\u2461"},{"id":"ref-for-tuple\u2462"}],"title":"2.5.2. cross-fade() Painting"}],"url":"https://infra.spec.whatwg.org/#tuple"}, @@ -3947,7 +3992,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1dc65563": {"dfnID":"1dc65563","dfnText":"<resolution>","external":true,"refSections":[{"refs":[{"id":"ref-for-resolution-value"},{"id":"ref-for-resolution-value\u2460"},{"id":"ref-for-resolution-value\u2461"}],"title":"2.3. Resolution/Type Negotiation: the image-set() notation"},{"refs":[{"id":"ref-for-resolution-value\u2462"},{"id":"ref-for-resolution-value\u2463"},{"id":"ref-for-resolution-value\u2464"},{"id":"ref-for-resolution-value\u2465"}],"title":"6.1. Overriding Image Resolutions: the image-resolution property"}],"url":"https://drafts.csswg.org/css-values-4/#resolution-value"}, "1f6aa483": {"dfnID":"1f6aa483","dfnText":"concrete object size","external":true,"refSections":[{"refs":[{"id":"ref-for-concrete-object-size"}],"title":"2.5.1. cross-fade() Sizing"},{"refs":[{"id":"ref-for-concrete-object-size\u2460"}],"title":"2.5.2. cross-fade() Painting"},{"refs":[{"id":"ref-for-concrete-object-size\u2461"},{"id":"ref-for-concrete-object-size\u2462"},{"id":"ref-for-concrete-object-size\u2463"},{"id":"ref-for-concrete-object-size\u2464"},{"id":"ref-for-concrete-object-size\u2465"},{"id":"ref-for-concrete-object-size\u2466"}],"title":"2.6.1. \nPaint Sources"},{"refs":[{"id":"ref-for-concrete-object-size\u2467"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-concrete-object-size\u2468"},{"id":"ref-for-concrete-object-size\u2460\u24ea"},{"id":"ref-for-concrete-object-size\u2460\u2460"},{"id":"ref-for-concrete-object-size\u2460\u2461"},{"id":"ref-for-concrete-object-size\u2460\u2462"},{"id":"ref-for-concrete-object-size\u2460\u2463"},{"id":"ref-for-concrete-object-size\u2460\u2464"}],"title":"5.1. Sizing Objects: the object-fit property"}],"url":"https://drafts.csswg.org/css-images-3/#concrete-object-size"}, "23012643": {"dfnID":"23012643","dfnText":"natural aspect ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-aspect-ratio"},{"id":"ref-for-natural-aspect-ratio\u2460"}],"title":"5.1. Sizing Objects: the object-fit property"}],"url":"https://drafts.csswg.org/css-images-3/#natural-aspect-ratio"}, -"28a738db": {"dfnID":"28a738db","dfnText":"radial-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-radial-gradient"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-funcdef-radial-gradient\u2460"}],"title":"3.2. Radial Gradients: the radial-gradient() notation"},{"refs":[{"id":"ref-for-funcdef-radial-gradient\u2461"}],"title":"3.4. \nRepeating Gradients: the repeating-linear-gradient(), repeating-radial-gradient(), and repeating-conic-gradient() notations"},{"refs":[{"id":"ref-for-funcdef-radial-gradient\u2462"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient"}, "29399d44": {"dfnID":"29399d44","dfnText":"picture","external":true,"refSections":[{"refs":[{"id":"ref-for-the-picture-element"}],"title":"2.3. Resolution/Type Negotiation: the image-set() notation"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element"}, "2bceefb2": {"dfnID":"2bceefb2","dfnText":"default object size","external":true,"refSections":[{"refs":[{"id":"ref-for-default-object-size"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-default-object-size\u2460"}],"title":"5.1. Sizing Objects: the object-fit property"}],"url":"https://drafts.csswg.org/css-images-3/#default-object-size"}, "2cd27cd8": {"dfnID":"2cd27cd8","dfnText":"<position>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-position"},{"id":"ref-for-typedef-position\u2460"},{"id":"ref-for-typedef-position\u2461"}],"title":"3.3.1. \nconic-gradient() Syntax"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-position"}, @@ -3956,6 +4000,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"}],"title":"3.3. \nConic Gradients: the conic-gradient() notation"},{"refs":[{"id":"ref-for-angle-value\u2460"},{"id":"ref-for-angle-value\u2461"},{"id":"ref-for-angle-value\u2462"}],"title":"3.3.1. \nconic-gradient() Syntax"},{"refs":[{"id":"ref-for-angle-value\u2463"}],"title":"3.5.1. \nColor Stop Lists"},{"refs":[{"id":"ref-for-angle-value\u2464"},{"id":"ref-for-angle-value\u2465"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. Value Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "4202ca10": {"dfnID":"4202ca10","dfnText":"<angle-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-angle-percentage"},{"id":"ref-for-typedef-angle-percentage\u2460"}],"title":"3.5.1. \nColor Stop Lists"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-angle-percentage"}, +"44be0cef": {"dfnID":"44be0cef","dfnText":"ellipse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-shape-ellipse"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse"}, +"4e74fff7": {"dfnID":"4e74fff7","dfnText":"circle","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-shape-circle"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"}],"title":"2.4. Image Fallbacks and Annotations: the image() notation"},{"refs":[{"id":"ref-for-mult-opt\u2462"}],"title":"2.5. Combining images: the cross-fade() notation"},{"refs":[{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"}],"title":"3.3.1. \nconic-gradient() Syntax"},{"refs":[{"id":"ref-for-mult-opt\u2465"},{"id":"ref-for-mult-opt\u2466"},{"id":"ref-for-mult-opt\u2467"},{"id":"ref-for-mult-opt\u2468"}],"title":"3.5.1. \nColor Stop Lists"},{"refs":[{"id":"ref-for-mult-opt\u2460\u24ea"}],"title":"6.1. Overriding Image Resolutions: the image-resolution property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "581e7e57": {"dfnID":"581e7e57","dfnText":"default sizing algorithm","external":true,"refSections":[{"refs":[{"id":"ref-for-default-sizing-algorithm"}],"title":"5.1. Sizing Objects: the object-fit property"}],"url":"https://drafts.csswg.org/css-images-3/#default-sizing-algorithm"}, "5a2f7ea1": {"dfnID":"5a2f7ea1","dfnText":"url()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-url"}],"title":"2.2. Image References: the url() notation"},{"refs":[{"id":"ref-for-funcdef-url\u2460"}],"title":"2.4.2. Image Fragments"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-url"}, @@ -3977,8 +4023,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9f9120ff": {"dfnID":"9f9120ff","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"}],"title":"2.4. Image Fallbacks and Annotations: the image() notation"},{"refs":[{"id":"ref-for-comb-comma\u2460"}],"title":"3.3.1. \nconic-gradient() Syntax"},{"refs":[{"id":"ref-for-comb-comma\u2461"},{"id":"ref-for-comb-comma\u2462"},{"id":"ref-for-comb-comma\u2463"},{"id":"ref-for-comb-comma\u2464"}],"title":"3.5.1. \nColor Stop Lists"}],"url":"https://drafts.csswg.org/css-values-4/#comb-comma"}, "a43c62be": {"dfnID":"a43c62be","dfnText":"CSS","external":true,"refSections":[{"refs":[{"id":"ref-for-namespacedef-css"}],"title":"2.6.2. \nUsing Out-Of-Document Sources: the ElementSources interface"}],"url":"https://drafts.csswg.org/cssom-1/#namespacedef-css"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"3.5.3. \nColor Stop \u201cFixup\u201d"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"2.6. Using Elements as Images: the element() notation"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "a5c91173": {"dfnID":"a5c91173","dfnText":"SameObject","external":true,"refSections":[{"refs":[{"id":"ref-for-SameObject"}],"title":"2.6.2. \nUsing Out-Of-Document Sources: the ElementSources interface"}],"url":"https://webidl.spec.whatwg.org/#SameObject"}, -"a7d749a4": {"dfnID":"a7d749a4","dfnText":"linear-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-linear-gradient"},{"id":"ref-for-funcdef-linear-gradient\u2460"}],"title":"2.3. Resolution/Type Negotiation: the image-set() notation"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2461"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2462"}],"title":"3.1. Linear Gradients: the linear-gradient() notation"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2463"}],"title":"3.4. \nRepeating Gradients: the repeating-linear-gradient(), repeating-radial-gradient(), and repeating-conic-gradient() notations"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2464"},{"id":"ref-for-funcdef-linear-gradient\u2465"},{"id":"ref-for-funcdef-linear-gradient\u2466"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient"}, "aa7bbf63": {"dfnID":"aa7bbf63","dfnText":"video","external":true,"refSections":[{"refs":[{"id":"ref-for-video"}],"title":"2.6. Using Elements as Images: the element() notation"},{"refs":[{"id":"ref-for-video\u2460"}],"title":"2.6.1. \nPaint Sources"}],"url":"https://html.spec.whatwg.org/multipage/media.html#video"}, "ae390677": {"dfnID":"ae390677","dfnText":"object size negotiation","external":true,"refSections":[{"refs":[{"id":"ref-for-object-size-negotiation"}],"title":"2.5.1. cross-fade() Sizing"},{"refs":[{"id":"ref-for-object-size-negotiation\u2460"}],"title":"5.1. Sizing Objects: the object-fit property"}],"url":"https://drafts.csswg.org/css-images-3/#object-size-negotiation"}, "appearance-of-a-cross-fade": {"dfnID":"appearance-of-a-cross-fade","dfnText":"appearance of a cross-fade()","external":false,"refSections":[],"url":"#appearance-of-a-cross-fade"}, @@ -3990,7 +4036,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "conic-gradient-gradient-center": {"dfnID":"conic-gradient-gradient-center","dfnText":"gradient center","external":false,"refSections":[{"refs":[{"id":"ref-for-conic-gradient-gradient-center"}],"title":"3.3.2. \nPlacing Color Stops"}],"url":"#conic-gradient-gradient-center"}, "d27a809f": {"dfnID":"d27a809f","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position"}],"title":"3.3.1. \nconic-gradient() Syntax"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position"}, "d3936525": {"dfnID":"d3936525","dfnText":"natural dimension","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-dimensions"},{"id":"ref-for-natural-dimensions\u2460"},{"id":"ref-for-natural-dimensions\u2461"}],"title":"2. 2D Image Values: the <image> type"},{"refs":[{"id":"ref-for-natural-dimensions\u2462"}],"title":"2.4.3. Solid-color Images"},{"refs":[{"id":"ref-for-natural-dimensions\u2463"},{"id":"ref-for-natural-dimensions\u2464"}],"title":"2.5.1. cross-fade() Sizing"},{"refs":[{"id":"ref-for-natural-dimensions\u2465"}],"title":"2.6. Using Elements as Images: the element() notation"},{"refs":[{"id":"ref-for-natural-dimensions\u2466"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-natural-dimensions\u2467"}],"title":"6.1. Overriding Image Resolutions: the image-resolution property"}],"url":"https://drafts.csswg.org/css-images-3/#natural-dimensions"}, -"dccd8a9d": {"dfnID":"dccd8a9d","dfnText":"circle","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-ending-shape-circle"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle"}, +"d3f930a7": {"dfnID":"d3f930a7","dfnText":"linear-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-linear-gradient"},{"id":"ref-for-funcdef-linear-gradient\u2460"}],"title":"2.3. Resolution/Type Negotiation: the image-set() notation"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2461"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2462"}],"title":"3.1. Linear Gradients: the linear-gradient() notation"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2463"}],"title":"3.4. \nRepeating Gradients: the repeating-linear-gradient(), repeating-radial-gradient(), and repeating-conic-gradient() notations"},{"refs":[{"id":"ref-for-funcdef-linear-gradient\u2464"},{"id":"ref-for-funcdef-linear-gradient\u2465"},{"id":"ref-for-funcdef-linear-gradient\u2466"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient"}, "de56fbfe": {"dfnID":"de56fbfe","dfnText":"list-style-type","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-type"}],"title":"2. 2D Image Values: the <image> type"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, "decorated-bounding-box": {"dfnID":"decorated-bounding-box","dfnText":"decorated bounding box","external":false,"refSections":[{"refs":[{"id":"ref-for-decorated-bounding-box"},{"id":"ref-for-decorated-bounding-box\u2460"},{"id":"ref-for-decorated-bounding-box\u2461"},{"id":"ref-for-decorated-bounding-box\u2462"}],"title":"2.6. Using Elements as Images: the element() notation"}],"url":"#decorated-bounding-box"}, "dom-css-elementsources": {"dfnID":"dom-css-elementsources","dfnText":"elementSources","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-css-elementsources"}],"title":"2.6. Using Elements as Images: the element() notation"},{"refs":[{"id":"ref-for-dom-css-elementsources\u2460"},{"id":"ref-for-dom-css-elementsources\u2461"},{"id":"ref-for-dom-css-elementsources\u2462"},{"id":"ref-for-dom-css-elementsources\u2463"},{"id":"ref-for-dom-css-elementsources\u2464"}],"title":"2.6.2. \nUsing Out-Of-Document Sources: the ElementSources interface"}],"url":"#dom-css-elementsources"}, @@ -4004,6 +4050,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "f0809abc": {"dfnID":"f0809abc","dfnText":"&&","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-all"}],"title":"2.5. Combining images: the cross-fade() notation"},{"refs":[{"id":"ref-for-comb-all\u2460"},{"id":"ref-for-comb-all\u2461"}],"title":"3.5.1. \nColor Stop Lists"},{"refs":[{"id":"ref-for-comb-all\u2462"}],"title":"6.1. Overriding Image Resolutions: the image-resolution property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "f0811ff8": {"dfnID":"f0811ff8","dfnText":"img","external":true,"refSections":[{"refs":[{"id":"ref-for-the-img-element"}],"title":"2.6. Using Elements as Images: the element() notation"},{"refs":[{"id":"ref-for-the-img-element\u2460"}],"title":"2.6.1. \nPaint Sources"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"}],"title":"2. 2D Image Values: the <image> type"},{"refs":[{"id":"ref-for-propdef-background-image\u2460"}],"title":"3.5.3. \nColor Stop \u201cFixup\u201d"},{"refs":[{"id":"ref-for-propdef-background-image\u2461"}],"title":"6.1. Overriding Image Resolutions: the image-resolution property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, +"f8ad7945": {"dfnID":"f8ad7945","dfnText":"radial-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-radial-gradient"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-funcdef-radial-gradient\u2460"}],"title":"3.2. Radial Gradients: the radial-gradient() notation"},{"refs":[{"id":"ref-for-funcdef-radial-gradient\u2461"}],"title":"3.4. \nRepeating Gradients: the repeating-linear-gradient(), repeating-radial-gradient(), and repeating-conic-gradient() notations"},{"refs":[{"id":"ref-for-funcdef-radial-gradient\u2462"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient"}, "fa293cdd": {"dfnID":"fa293cdd","dfnText":"<url>","external":true,"refSections":[{"refs":[{"id":"ref-for-url-value"},{"id":"ref-for-url-value\u2460"},{"id":"ref-for-url-value\u2461"},{"id":"ref-for-url-value\u2462"}],"title":"2. 2D Image Values: the <image> type"},{"refs":[{"id":"ref-for-url-value\u2463"}],"title":"2.3. Resolution/Type Negotiation: the image-set() notation"},{"refs":[{"id":"ref-for-url-value\u2464"},{"id":"ref-for-url-value\u2465"}],"title":"2.4. Image Fallbacks and Annotations: the image() notation"}],"url":"https://drafts.csswg.org/css-values-4/#url-value"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"}],"title":"2. 2D Image Values: the <image> type"},{"refs":[{"id":"ref-for-length-value\u2460"}],"title":"3.3. \nConic Gradients: the conic-gradient() notation"},{"refs":[{"id":"ref-for-length-value\u2461"}],"title":"3.5.1. \nColor Stop Lists"},{"refs":[{"id":"ref-for-length-value\u2462"},{"id":"ref-for-length-value\u2463"},{"id":"ref-for-length-value\u2464"}],"title":"7.3. Interpolating <gradient>"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "funcdef-conic-gradient": {"dfnID":"funcdef-conic-gradient","dfnText":"conic-gradient()","external":false,"refSections":[{"refs":[{"id":"ref-for-funcdef-conic-gradient"}],"title":"3. \nGradients"},{"refs":[{"id":"ref-for-funcdef-conic-gradient\u2460"}],"title":"3.3. \nConic Gradients: the conic-gradient() notation"},{"refs":[{"id":"ref-for-funcdef-conic-gradient\u2461"}],"title":"3.3.1. \nconic-gradient() Syntax"},{"refs":[{"id":"ref-for-funcdef-conic-gradient\u2462"}],"title":"3.3.3. \nConic Gradient Examples"},{"refs":[{"id":"ref-for-funcdef-conic-gradient\u2463"}],"title":"3.4. \nRepeating Gradients: the repeating-linear-gradient(), repeating-radial-gradient(), and repeating-conic-gradient() notations"}],"url":"#funcdef-conic-gradient"}, @@ -4440,7 +4487,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#resolution-value": "Expands to: dpcm | dpi | dppx | x", @@ -4583,6 +4630,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-images-3/#cover-constraint": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"cover constraint","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#cover-constraint"}, "https://drafts.csswg.org/css-images-3/#default-object-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"default object size","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#default-object-size"}, "https://drafts.csswg.org/css-images-3/#default-sizing-algorithm": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"default sizing algorithm","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#default-sizing-algorithm"}, +"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"linear-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient"}, +"https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"radial-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-3/#funcdef-radial-gradient"}, "https://drafts.csswg.org/css-images-3/#natural-aspect-ratio": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"natural aspect ratio","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#natural-aspect-ratio"}, "https://drafts.csswg.org/css-images-3/#natural-dimensions": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"natural dimension","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#natural-dimensions"}, "https://drafts.csswg.org/css-images-3/#natural-height": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"natural height","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#natural-height"}, @@ -4590,10 +4639,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-images-3/#natural-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"natural width","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#natural-width"}, "https://drafts.csswg.org/css-images-3/#object-size-negotiation": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"object size negotiation","type":"dfn","url":"https://drafts.csswg.org/css-images-3/#object-size-negotiation"}, "https://drafts.csswg.org/css-images-3/#propdef-object-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"object-position","type":"property","url":"https://drafts.csswg.org/css-images-3/#propdef-object-position"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle": {"export":true,"for_":["<rg-ending-shape>"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"circle","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse": {"export":true,"for_":["<rg-ending-shape>"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"ellipse","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse"}, -"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"linear-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient"}, -"https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"radial-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle": {"export":true,"for_":["<radial-shape>"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"circle","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse": {"export":true,"for_":["<radial-shape>"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"ellipse","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse"}, "https://drafts.csswg.org/css-images-4/#funcdef-stripes": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"stripes()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-stripes"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style-image": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-image","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-image"}, "https://drafts.csswg.org/css-lists-3/#propdef-list-style-type": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-type","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, @@ -4633,6 +4680,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://mimesniff.spec.whatwg.org/#valid-mime-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"mimesniff","spec":"mimesniff","status":"current","text":"valid mime type string","type":"dfn","url":"https://mimesniff.spec.whatwg.org/#valid-mime-type"}, "https://webidl.spec.whatwg.org/#SameObject": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SameObject","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#SameObject"}, "https://webidl.spec.whatwg.org/#idl-any": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"any","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-any"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-inline-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-inline-3/Overview.console.txt index 32cf6e7779..dd1956c95a 100644 --- a/tests/github/w3c/csswg-drafts/css-inline-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-inline-3/Overview.console.txt @@ -16,6 +16,20 @@ LINE 1260: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1278: Image doesn't exist, so I couldn't determine its width and height: 'images/leading-trim-centering-variants.gif' LINE 1774: Image doesn't exist, so I couldn't determine its width and height: 'images/firstmost-inline.png' LINE 2072: Image doesn't exist, so I couldn't determine its width and height: 'images/arabic-drop-cap.png' +LINE ~92: No 'dfn' refs found for 'text runs'. +[=text runs=] +LINE 1786: Multiple possible 'ruby' dfn refs. +Arbitrarily chose https://drafts.csswg.org/css-ruby-1/#ruby +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-ruby-1; type:dfn; text:ruby +spec:i18n-glossary; type:dfn; text:ruby +<a bs-line-number="1786" data-link-type="dfn" data-lt="ruby">ruby</a> +LINE 1787: Multiple possible 'ruby' dfn refs. +Arbitrarily chose https://drafts.csswg.org/css-ruby-1/#ruby +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-ruby-1; type:dfn; text:ruby +spec:i18n-glossary; type:dfn; text:ruby +<a bs-line-number="1787" data-link-type="dfn" data-lt="ruby">ruby</a> LINE 1790: Multiple possible 'none' maybe refs for '['float']'. Arbitrarily chose https://drafts.csswg.org/css-page-floats-3/#valdef-float-none To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -28,10 +42,6 @@ LINE 1884: No 'dfn' refs found for 'unicode scripts'. <a bs-line-number="1884" data-link-type="dfn" data-lt="Unicode scripts">Unicode scripts</a> LINE ~2478: No 'dfn' refs found for 'collapsible'. [=collapsible=] -LINE ~159: Couldn't find section '/visuren#inline-formatting' in spec 'css2': -[[CSS2/visuren#inline-formatting]] -LINE ~159: Couldn't find section '/visuren#floats' in spec 'css2': -[[CSS2/visuren#floats]] WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 843: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="843" data-local-lt="baseline-relative values" data-dfn-type="dfn" id="baseline-relative-shift-values" data-lt="baseline-relative shift values" data-noexport="by-default" class="dfn-paneled">baseline-relative shift values</dfn> diff --git a/tests/github/w3c/csswg-drafts/css-inline-3/Overview.html b/tests/github/w3c/csswg-drafts/css-inline-3/Overview.html index 62ee01df55..3d04a058c7 100644 --- a/tests/github/w3c/csswg-drafts/css-inline-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-inline-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Inline Layout Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-inline-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1082,7 +1081,7 @@ <h1 class="p-name no-ref" id="title">CSS Inline Layout Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1104,7 +1103,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-inline] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-inline%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1294,7 +1293,7 @@ <h2 class="heading settled" data-level="2" id="model"><span class="secno">2. </s <p>In <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="inline-layout">inline layout</dfn>, a mixed, recursive stream of text and <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level-box" id="ref-for-inline-level-box">inline-level boxes</a> forming an <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="inline-formatting-context">inline formatting context</dfn> within a <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container">block container</a> are laid out by <a data-link-type="dfn" href="https://drafts.csswg.org/css-break-3/#fragment" id="ref-for-fragment">fragmenting</a> them into a stack of <a data-link-type="dfn" href="#line-box" id="ref-for-line-box">line boxes</a>, and aligning the text and boxes to each other within each <span id="ref-for-line-box①">line box</span>.</p> - <p>Any <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container①">block container</a> that directly contains <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level" id="ref-for-inline-level②">inline-level</a> content—​such as <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-box" id="ref-for-inline-box">inline boxes</a>, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#atomic-inline" id="ref-for-atomic-inline">atomic inlines</a>, and <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text runs</a>—​establishes an <a data-link-type="dfn" href="#inline-formatting-context" id="ref-for-inline-formatting-context">inline formatting context</a> to lay out its contents. + <p>Any <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container①">block container</a> that directly contains <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level" id="ref-for-inline-level②">inline-level</a> content—​such as <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-box" id="ref-for-inline-box">inline boxes</a>, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#atomic-inline" id="ref-for-atomic-inline">atomic inlines</a>, and <a data-link-type="dfn">text runs</a>—​establishes an <a data-link-type="dfn" href="#inline-formatting-context" id="ref-for-inline-formatting-context">inline formatting context</a> to lay out its contents. The <span id="ref-for-block-container②">block container</span>’s <a data-link-type="dfn" href="https://drafts.csswg.org/css-box-4/#content-edge" id="ref-for-content-edge">content edges</a> form the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#containing-block" id="ref-for-containing-block">containing block</a> for each of the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level-box" id="ref-for-inline-level-box①">inline-level boxes</a> participating in its <span id="ref-for-inline-formatting-context①">inline formatting context</span>.</p> <p>The <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container③">block container</a> also generates a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="root-inline-box">root inline box</dfn>, @@ -1342,7 +1341,7 @@ <h3 class="heading settled" data-level="2.1" id="line-boxes"><span class="secno" However, floating boxes or <a data-link-type="dfn" href="#initial-letter" id="ref-for-initial-letter">initial letter boxes</a> can come between the <span id="ref-for-containing-block④">containing block</span> edge and the <span id="ref-for-line-box①①">line box</span> edge, reducing the space available to, and thus the <span id="ref-for-logical-width③">logical width</span> of, any such impacted <span id="ref-for-line-box①②">line boxes</span>. - (See <span spec-section="/visuren#inline-formatting"></span>/<span spec-section="/visuren#floats"></span> and <a href="#initial-letter-styling">§ 7 Initial Letters</a>.)</p> + (See <a href="https://www.w3.org/TR/CSS21/visuren.html#inline-formatting"><cite>CSS 2.1</cite> § 9.4.2 Inline formatting contexts</a>/<a href="https://www.w3.org/TR/CSS21/visuren.html#floats"><cite>CSS 2.1</cite> § 9.5 Floats</a> and <a href="#initial-letter-styling">§ 7 Initial Letters</a>.)</p> <p>Within the <a data-link-type="dfn" href="#line-box" id="ref-for-line-box①③">line box</a>, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level-box" id="ref-for-inline-level-box④">inline-level boxes</a> can be aligned along the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#block-axis" id="ref-for-block-axis①">block axis</a> in different ways: their <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-over" id="ref-for-line-over">over</a> or <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-under" id="ref-for-line-under">under</a> edges can be aligned, @@ -1401,7 +1400,7 @@ <h3 class="heading settled" data-level="2.2" id="line-layout"><span class="secno and thus influence these calculations just like boxes with content.</p> <h3 class="heading settled" data-level="2.3" id="paint-order"><span class="secno">2.3. </span><span class="content"> Painting Order</span><a class="self-link" href="#paint-order"></a></h3> <p>Except as specified for <a data-link-type="dfn" href="https://drafts.csswg.org/css-position-3/#positioned-box" id="ref-for-positioned-box">positioned boxes</a> (see <a data-link-type="biblio" href="#biblio-css-position-3" title="CSS Positioned Layout Module Level 3">[CSS-POSITION-3]</a>) <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level-box" id="ref-for-inline-level-box⑨">inline-level boxes</a> are painted in <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#document-order" id="ref-for-document-order">document order</a>; - the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property does not generally apply.</p> + the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property does not generally apply.</p> <h2 class="heading settled" data-level="3" id="css-metrics"><span class="secno">3. </span><span class="content"> Baselines and Alignment Metrics</span><a class="self-link" href="#css-metrics"></a></h2> <h3 class="heading settled" data-level="3.1" id="baseline-intro"><span class="secno">3.1. </span><span class="content"> Introduction to Baselines</span><a class="self-link" href="#baseline-intro"></a></h3> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="baseline">baseline</dfn> is a line along the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#inline-axis" id="ref-for-inline-axis②">inline axis</a> of a line box @@ -3902,7 +3901,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="54d48ea2">inline-level box</span> <li><span class="dfn-paneled" id="e77a37fc">inline-level content</span> <li><span class="dfn-paneled" id="a8485ff4">replaced element</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> </ul> <li> <a data-link-type="biblio">[CSS-FONTS-4]</a> defines the following terms: @@ -4045,12 +4043,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d24165c7">vertical-lr</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[SVG2]</a> defines the following terms: @@ -4075,9 +4077,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] @@ -4118,7 +4120,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-line-grid-1">[CSS-LINE-GRID-1] <dd>Elika Etemad; Koji Ishii; Alan Stearns. <a href="https://drafts.csswg.org/css-line-grid/"><cite>CSS Line Grid Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-line-grid/">https://drafts.csswg.org/css-line-grid/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] @@ -4366,11 +4368,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/initial-letter" title="The initial-letter CSS property sets styling for dropped, raised, and sunken initial letters.">initial-letter</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>110+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>110+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -4662,7 +4664,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "18499cc8": {"dfnID":"18499cc8","dfnText":"multi-column layout","external":true,"refSections":[{"refs":[{"id":"ref-for-multi-column-layout"}],"title":"2.1. \nLayout of Line Boxes"}],"url":"https://drafts.csswg.org/css-multicol-1/#multi-column-layout"}, "190183bb": {"dfnID":"190183bb","dfnText":"block size","external":true,"refSections":[{"refs":[{"id":"ref-for-block-size"},{"id":"ref-for-block-size\u2460"}],"title":"7.5.5. \nSizing the Initial Letter Box"},{"refs":[{"id":"ref-for-block-size\u2461"}],"title":"7.5.6. \nAlignment Within an Initial Letter Box"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-size"}, "1cf918c1": {"dfnID":"1cf918c1","dfnText":"specified value","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-value"}],"title":"5.1. \nLine Spacing: the line-height property"}],"url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"}],"title":"2. \nInline Layout Model"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "214c6f37": {"dfnID":"214c6f37","dfnText":"first formatted line","external":true,"refSections":[{"refs":[{"id":"ref-for-first-formatted-line"}],"title":"5.4. \nHalf-Leading Control: the leading-trim property"}],"url":"https://drafts.csswg.org/css-pseudo-4/#first-formatted-line"}, "237b3136": {"dfnID":"237b3136","dfnText":"typographic character unit","external":true,"refSections":[{"refs":[{"id":"ref-for-typographic-character-unit"}],"title":"7.7. \nInitial Letter Wrapping: the initial-letter-wrap property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460"}],"title":"7.8.1. \nInline Flow Layout: Alignment, Justification, and White Space"}],"url":"https://drafts.csswg.org/css-text-4/#typographic-character-unit"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"7.9.4. \nInteraction with Fragmentation (Pagination)"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, @@ -4694,6 +4695,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4dd1920b": {"dfnID":"4dd1920b","dfnText":"line-over","external":true,"refSections":[{"refs":[{"id":"ref-for-line-over"}],"title":"2.1. \nLayout of Line Boxes"},{"refs":[{"id":"ref-for-line-over\u2460"},{"id":"ref-for-line-over\u2461"},{"id":"ref-for-line-over\u2462"}],"title":"3.2. \nBaselines and Metrics"},{"refs":[{"id":"ref-for-line-over\u2463"},{"id":"ref-for-line-over\u2464"},{"id":"ref-for-line-over\u2465"}],"title":"4.2.3. \nPost-Alignment Shift: the baseline-shift longhand"},{"refs":[{"id":"ref-for-line-over\u2466"}],"title":"7.4. \nAlignment of Initial Letters: the initial-letter-align property"},{"refs":[{"id":"ref-for-line-over\u2467"},{"id":"ref-for-line-over\u2468"}],"title":"\nA.3: Synthesizing Baselines for Atomic Inlines"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#line-over"}, "52e0a60b": {"dfnID":"52e0a60b","dfnText":"box edge","external":true,"refSections":[{"refs":[{"id":"ref-for-box-box-edge"}],"title":"6.1. \nInline Box Heights: the inline-sizing property"}],"url":"https://drafts.csswg.org/css-box-4/#box-box-edge"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"5.2. \nInline Box Edge Metrics: the text-edge property"},{"refs":[{"id":"ref-for-mult-opt\u2460"}],"title":"7.3. \nCreating Initial Letters: the initial-letter property"},{"refs":[{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"}],"title":"7.4. \nAlignment of Initial Letters: the initial-letter-align property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"2.3. \nPainting Order"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "54d48ea2": {"dfnID":"54d48ea2","dfnText":"inline-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-level-box"},{"id":"ref-for-inline-level-box\u2460"},{"id":"ref-for-inline-level-box\u2461"},{"id":"ref-for-inline-level-box\u2462"}],"title":"2. \nInline Layout Model"},{"refs":[{"id":"ref-for-inline-level-box\u2463"}],"title":"2.1. \nLayout of Line Boxes"},{"refs":[{"id":"ref-for-inline-level-box\u2464"},{"id":"ref-for-inline-level-box\u2465"},{"id":"ref-for-inline-level-box\u2466"},{"id":"ref-for-inline-level-box\u2467"}],"title":"2.2. \nLayout Within Line Boxes"},{"refs":[{"id":"ref-for-inline-level-box\u2468"}],"title":"2.3. \nPainting Order"},{"refs":[{"id":"ref-for-inline-level-box\u2460\u24ea"}],"title":"3.3. \nBaselines of Glyphs and Boxes"},{"refs":[{"id":"ref-for-inline-level-box\u2460\u2460"}],"title":"4. \nBaseline Alignment"},{"refs":[{"id":"ref-for-inline-level-box\u2460\u2461"}],"title":"7.3. \nCreating Initial Letters: the initial-letter property"},{"refs":[{"id":"ref-for-inline-level-box\u2460\u2462"},{"id":"ref-for-inline-level-box\u2460\u2463"},{"id":"ref-for-inline-level-box\u2460\u2464"}],"title":"7.3.1. \nApplicability"}],"url":"https://drafts.csswg.org/css-display-4/#inline-level-box"}, "56177fad": {"dfnID":"56177fad","dfnText":"shorthand","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"}],"title":"4.2. \nTransverse Box Alignment: the vertical-align property"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, "5875aeb9": {"dfnID":"5875aeb9","dfnText":"::marker","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-marker"},{"id":"ref-for-selectordef-marker\u2460"}],"title":"7.3.1. \nApplicability"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-marker"}, @@ -4773,7 +4775,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c21450f8": {"dfnID":"c21450f8","dfnText":"sub-property","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"}],"title":"5.2. \nInline Box Edge Metrics: the text-edge property"},{"refs":[{"id":"ref-for-longhand\u2460"},{"id":"ref-for-longhand\u2461"}],"title":"7.5.1. \nProperties Applying to Initial Letters"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "c337c02f": {"dfnID":"c337c02f","dfnText":"justification opportunity","external":true,"refSections":[{"refs":[{"id":"ref-for-justification-opportunity"},{"id":"ref-for-justification-opportunity\u2460"}],"title":"7.8.1. \nInline Flow Layout: Alignment, Justification, and White Space"}],"url":"https://drafts.csswg.org/css-text-4/#justification-opportunity"}, "c3bd6e1d": {"dfnID":"c3bd6e1d","dfnText":"box fragment","external":true,"refSections":[{"refs":[{"id":"ref-for-box-fragment"}],"title":"2.2. \nLayout Within Line Boxes"},{"refs":[{"id":"ref-for-box-fragment\u2460"},{"id":"ref-for-box-fragment\u2461"}],"title":"4.2.2. \nAlignment Baseline Type: the alignment-baseline longhand"},{"refs":[{"id":"ref-for-box-fragment\u2462"}],"title":"5.3. \nLogical Height Contributions of Inline Boxes"}],"url":"https://drafts.csswg.org/css-break-4/#box-fragment"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"2.3. \nPainting Order"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "c8322a15": {"dfnID":"c8322a15","dfnText":"last baseline set","external":true,"refSections":[{"refs":[{"id":"ref-for-last-baseline-set"}],"title":"4.2.1. \nAlignment Baseline Source: the baseline-source longhand"}],"url":"https://drafts.csswg.org/css-align-3/#last-baseline-set"}, "ca6bf85d": {"dfnID":"ca6bf85d","dfnText":"ruby annotation","external":true,"refSections":[{"refs":[{"id":"ref-for-ruby-annotation-box"}],"title":"2.1. \nLayout of Line Boxes"}],"url":"https://drafts.csswg.org/css-ruby-1/#ruby-annotation-box"}, "ca960d4f": {"dfnID":"ca960d4f","dfnText":"block formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-block-formatting-context"}],"title":"7.8. \nLine Layout"},{"refs":[{"id":"ref-for-block-formatting-context\u2460"}],"title":"7.9.3. \nInteraction with floats"}],"url":"https://drafts.csswg.org/css-display-4/#block-formatting-context"}, @@ -5524,7 +5525,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-4/#inline-level-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline-level box","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#inline-level-box"}, "https://drafts.csswg.org/css-display-4/#propdef-display": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"display","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "https://drafts.csswg.org/css-display-4/#replaced-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"replaced element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-display-4/#valdef-display-block": {"export":true,"for_":["display","<display-outside>"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"block","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-display-block"}, "https://drafts.csswg.org/css-display-4/#valdef-display-inline-block": {"export":true,"for_":["display","<display-legacy>"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline-block","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline-block"}, "https://drafts.csswg.org/css-fonts-4/#first-available-font": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"first available font","type":"dfn","url":"https://drafts.csswg.org/css-fonts-4/#first-available-font"}, @@ -5615,9 +5615,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode"}, "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://svgwg.org/svg2-draft/text.html#TermCurrentTextPosition": {"export":false,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"current text position","type":"dfn","url":"https://svgwg.org/svg2-draft/text.html#TermCurrentTextPosition"}, "https://svgwg.org/svg2-draft/text.html#TermTextContentElement": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"text content element","type":"dfn","url":"https://svgwg.org/svg2-draft/text.html#TermTextContentElement"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-line-grid-1/Overview.html b/tests/github/w3c/csswg-drafts/css-line-grid-1/Overview.html index 4bd69c0dcd..d20e66e393 100644 --- a/tests/github/w3c/csswg-drafts/css-line-grid-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-line-grid-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Line Grid Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-line-grid-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -750,7 +749,7 @@ <h1 class="p-name no-ref" id="title">CSS Line Grid Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -772,7 +771,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-line-grid] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-line-grid%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1600,7 +1599,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-rhythm-1">[CSS-RHYTHM-1] <dd>Koji Ishii; Elika Etemad. <a href="https://drafts.csswg.org/css-rhythm/"><cite>CSS Rhythmic Sizing</cite></a>. URL: <a href="https://drafts.csswg.org/css-rhythm/">https://drafts.csswg.org/css-rhythm/</a> <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] @@ -1621,7 +1620,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css3line">[CSS3LINE] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-jlreq">[JLREQ] <dd>Hiroyuki Chiba; et al. <a href="https://w3c.github.io/jlreq/"><cite>Requirements for Japanese Text Layout 日本語組版処理の要件(日本語版)</cite></a>. URL: <a href="https://w3c.github.io/jlreq/">https://w3c.github.io/jlreq/</a> </dl> @@ -2340,7 +2339,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let linkTitleData = { "https://drafts.csswg.org/css-align-3/#typedef-content-position": "Expands to: center | end | flex-end | flex-start | start", -"https://drafts.csswg.org/css-shapes-1/#typedef-shape-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", +"https://drafts.csswg.org/css-shapes-1/#typedef-shape-box": "Expands to: border-box | content-box | margin-box | padding-box", }; function setTypeTitles() { diff --git a/tests/github/w3c/csswg-drafts/css-lists-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-lists-3/Overview.console.txt index ba8f95d8df..f14136d1d2 100644 --- a/tests/github/w3c/csswg-drafts/css-lists-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-lists-3/Overview.console.txt @@ -1,6 +1,36 @@ -LINE ~752: Multiple possible 'invalid' dfn refs. -Arbitrarily chose https://drafts.csswg.org/css-syntax-3/#css-invalid +LINE 260: No 'propdesc' refs found for 'text-space-collapse'. +''text-space-collapse: preserve-spaces'' +LINE 260: No 'propdesc' refs found for 'text-space-trim'. +''text-space-trim: discard-after'' +LINE ~265: Multiple possible 'selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#selector To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-syntax-3; type:dfn; text:invalid -spec:rdf12-semantics; type:dfn; text:invalid -[=invalid=] +spec:selectors-4; type:dfn; text:selector +spec:css2; type:dfn; text:selector +[=selector=] +LINE 293: No 'dfn' refs found for 'text run'. +<a bs-line-number="293" data-link-type="dfn" data-lt="text run">text run</a> +LINE ~296: No 'dfn' refs found for 'text run'. +[=text run=] +LINE ~987: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-lists-3; type:dfn; for:CSS counter; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +[=name=] +LINE ~1028: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-lists-3; type:dfn; for:CSS counter; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +[=name=] +LINE ~1035: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-lists-3; type:dfn; for:CSS counter; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +[=name=] +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-lists-3/Overview.html b/tests/github/w3c/csswg-drafts/css-lists-3/Overview.html index c3da8c7336..1c1ae3b1de 100644 --- a/tests/github/w3c/csswg-drafts/css-lists-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-lists-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Lists and Counters Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-lists-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1138,7 +1137,7 @@ <h1 class="p-name no-ref" id="title">CSS Lists and Counters Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1160,7 +1159,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-lists] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-lists%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1400,7 +1399,7 @@ <h4 class="heading settled" data-level="3.1.1" id="marker-properties"><span clas text-transform: none; } </pre> - <p class="issue" id="issue-04da870c"><a class="self-link" href="#issue-04da870c"></a> <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space: pre</a> doesn’t have quite the right behavior; <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse" id="ref-for-propdef-text-space-collapse">text-space-collapse: preserve-spaces</a> + <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-text-space-trim" id="ref-for-propdef-text-space-trim">text-space-trim: discard-after</a> might be closer to what’s needed here. + <p class="issue" id="issue-04da870c"><a class="self-link" href="#issue-04da870c"></a> <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space: pre</a> doesn’t have quite the right behavior; <a class="css" data-link-type="propdesc">text-space-collapse: preserve-spaces</a> + <span class="css">text-space-trim: discard-after</span> might be closer to what’s needed here. See discussion in <a href="https://github.com/w3c/csswg-drafts/issues/4448">Issue 4448</a> and <a href="https://github.com/w3c/csswg-drafts/issues/4891">Issue 4891</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> Although the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-marker" id="ref-for-selectordef-marker①①">::marker</a> pseudo-element can represent the <a data-link-type="dfn" href="#marker" id="ref-for-marker⑦">marker box</a> of a <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-before" id="ref-for-selectordef-before①">::before</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-after" id="ref-for-selectordef-after">::after</a> pseudo-element, @@ -1417,10 +1416,10 @@ <h3 class="heading settled" data-level="3.2" id="content-property"><span class=" <dt><a class="property css" data-link-type="property" href="#propdef-list-style-image" id="ref-for-propdef-list-style-image①">list-style-image</a> on the <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element②">originating element</a> defines a <a data-link-type="dfn" href="#marker-image" id="ref-for-marker-image">marker image</a> <dd> The <a data-link-type="dfn" href="#marker" id="ref-for-marker①⓪">marker box</a> contains an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#anonymous" id="ref-for-anonymous">anonymous</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline" id="ref-for-inline">inline</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#replaced-element" id="ref-for-replaced-element">replaced element</a> representing the specified <a data-link-type="dfn" href="#marker-image" id="ref-for-marker-image①">marker image</a>, - followed by a <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text run</a> consisting of a single space (U+0020 SPACE). + followed by a <a data-link-type="dfn">text run</a> consisting of a single space (U+0020 SPACE). <dt><a class="property css" data-link-type="property" href="#propdef-list-style-type" id="ref-for-propdef-list-style-type①">list-style-type</a> on the <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element③">originating element</a> defines a <a data-link-type="dfn" href="#marker-string" id="ref-for-marker-string">marker string</a> <dd> The <a data-link-type="dfn" href="#marker" id="ref-for-marker①①">marker box</a> contains - a <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run①">text run</a> consisting of the specified <a data-link-type="dfn" href="#marker-string" id="ref-for-marker-string①">marker string</a>. + a <a data-link-type="dfn">text run</a> consisting of the specified <a data-link-type="dfn" href="#marker-string" id="ref-for-marker-string①">marker string</a>. <dt>otherwise <dd> The <a data-link-type="dfn" href="#marker" id="ref-for-marker①②">marker box</a> has no contents and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-marker" id="ref-for-selectordef-marker①④">::marker</a> does not generate a box. @@ -2082,7 +2081,7 @@ <h3 class="heading settled" data-level="4.4" id="creating-counters"><span class= or through instantiation on the element directly. These counters are represented as a <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="css-counters-set">CSS counters set</dfn>, which is a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set">set</a> whose values are each a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#tuple" id="ref-for-tuple">tuple</a> of: - a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string">string</a> (representing a counter’s <a data-link-type="dfn" href="#css-counter-name" id="ref-for-css-counter-name">name</a>), + a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string">string</a> (representing a counter’s <a data-link-type="dfn">name</a>), an element (representing the counter’s <a data-link-type="dfn" href="#css-counter-creator" id="ref-for-css-counter-creator">creator</a>), and an integer (representing the counter’s <a data-link-type="dfn" href="#css-counter-value" id="ref-for-css-counter-value">value</a>). The latest <span id="ref-for-counter⑨">counter</span> of a given name in that set @@ -2110,12 +2109,12 @@ <h4 class="heading settled" data-level="4.4.1" id="inheriting-counters"><span cl <p>Let <var>sibling counters</var> be the <a data-link-type="dfn" href="#css-counters-set" id="ref-for-css-counters-set③">CSS counters set</a> of <var>element</var>’s preceding sibling (if it has one), or an empty <span id="ref-for-css-counters-set④">CSS counters set</span> otherwise.</p> <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#map-iterate" id="ref-for-map-iterate">For each</a> <var>counter</var> of <var>sibling counters</var>, -if <var>element counters</var> does not already contain a counter with the same <a data-link-type="dfn" href="#css-counter-name" id="ref-for-css-counter-name①">name</a>, +if <var>element counters</var> does not already contain a counter with the same <a data-link-type="dfn">name</a>, append a copy of <var>counter</var> to <var>element counters</var>.</p> <li data-md> <p>Let <var>value source</var> be the <a data-link-type="dfn" href="#css-counters-set" id="ref-for-css-counters-set⑤">CSS counters set</a> of the element immediately preceding <var>element</var> in <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-tree-order" id="ref-for-concept-tree-order①">tree order</a>.</p> <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#map-iterate" id="ref-for-map-iterate①">For each</a> <var>source counter</var> of <var>value source</var>, -if <var>element counters</var> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain">contains</a> a <a data-link-type="dfn" href="#counter" id="ref-for-counter①⓪">counter</a> with the same <a data-link-type="dfn" href="#css-counter-name" id="ref-for-css-counter-name②">name</a> and <a data-link-type="dfn" href="#css-counter-creator" id="ref-for-css-counter-creator①">creator</a>, +if <var>element counters</var> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain">contains</a> a <a data-link-type="dfn" href="#counter" id="ref-for-counter①⓪">counter</a> with the same <a data-link-type="dfn">name</a> and <a data-link-type="dfn" href="#css-counter-creator" id="ref-for-css-counter-creator①">creator</a>, then set the <a data-link-type="dfn" href="#css-counter-value" id="ref-for-css-counter-value①">value</a> of that counter to <var>source counter</var>’s <span id="ref-for-css-counter-value②">value</span>.</p> </ol> @@ -2752,7 +2751,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8285a4c4">outer display type</span> <li><span class="dfn-paneled" id="80eb9508">principal box</span> <li><span class="dfn-paneled" id="a8485ff4">replaced element</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> <li><span class="dfn-paneled" id="12f8fb07">visibility</span> </ul> <li> @@ -2801,8 +2799,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="d02b1d43">forced line break</span> <li><span class="dfn-paneled" id="cacc0af2">letter-spacing</span> - <li><span class="dfn-paneled" id="ccef7ca5">text-space-collapse</span> - <li><span class="dfn-paneled" id="4825540d">text-space-trim</span> <li><span class="dfn-paneled" id="cbc54f93">text-transform</span> <li><span class="dfn-paneled" id="6501e5b3">white-space</span> <li><span class="dfn-paneled" id="b2356074">word-spacing</span> @@ -2890,11 +2886,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -2910,7 +2906,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] @@ -2933,15 +2929,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-cascade-4">[CSS-CASCADE-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-4/"><cite>CSS Cascading and Inheritance Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-4/">https://drafts.csswg.org/css-cascade-4/</a> <dt id="biblio-css-color-3">[CSS-COLOR-3] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] @@ -3050,7 +3046,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </div> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> - <div class="issue"> <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-white-space">white-space: pre</a> doesn’t have quite the right behavior; <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse">text-space-collapse: preserve-spaces</a> + <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-text-space-trim">text-space-trim: discard-after</a> might be closer to what’s needed here. + <div class="issue"> <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-text-4/#propdef-white-space">white-space: pre</a> doesn’t have quite the right behavior; <a class="css" data-link-type="propdesc">text-space-collapse: preserve-spaces</a> + <span class="css">text-space-trim: discard-after</span> might be closer to what’s needed here. See discussion in <a href="https://github.com/w3c/csswg-drafts/issues/4448">Issue 4448</a> and <a href="https://github.com/w3c/csswg-drafts/issues/4891">Issue 4891</a>. <a class="issue-return" href="#issue-04da870c" title="Jump to section">↵</a></div> <div class="issue"> This is handwavey nonsense from CSS2, and needs a real definition. <a class="issue-return" href="#issue-ffa70ac6" title="Jump to section">↵</a></div> <div class="issue"> Alternatively, <a class="css" data-link-type="maybe" href="#list-style-position-outside">outside</a> could lay out the marker as a previous sibling of the principal inline box. <a class="issue-return" href="#issue-bf311ada" title="Jump to section">↵</a></div> @@ -3429,7 +3425,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "15e48c39": {"dfnID":"15e48c39","dfnText":"set","external":true,"refSections":[{"refs":[{"id":"ref-for-ordered-set"}],"title":"4.4. \nCreating and Inheriting Counters"}],"url":"https://infra.spec.whatwg.org/#ordered-set"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"}],"title":"4.7. \nOutputting Counters: the counter() and counters() functions"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, "1cf918c1": {"dfnID":"1cf918c1","dfnText":"specified value","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-value"}],"title":"4.6. \nThe Implicit list-item Counter"}],"url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"},{"id":"ref-for-text-run\u2460"}],"title":"3.2. \nGenerating Marker Contents"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "20fff200": {"dfnID":"20fff200","dfnText":"inheritance","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"}],"title":"4.4.1. \nInheriting Counters"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, "24408a11": {"dfnID":"24408a11","dfnText":"compound selector","external":true,"refSections":[{"refs":[{"id":"ref-for-compound"}],"title":"3.1.1. \nProperties Applying to ::marker"}],"url":"https://drafts.csswg.org/selectors-4/#compound"}, "2467179e": {"dfnID":"2467179e","dfnText":"content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-content"}],"title":"3.1. \nThe ::marker Pseudo-Element"},{"refs":[{"id":"ref-for-propdef-content\u2460"}],"title":"3.1.1. \nProperties Applying to ::marker"},{"refs":[{"id":"ref-for-propdef-content\u2461"},{"id":"ref-for-propdef-content\u2462"}],"title":"3.2. \nGenerating Marker Contents"},{"refs":[{"id":"ref-for-propdef-content\u2463"}],"title":"3.3. \nImage Markers: the list-style-image property"},{"refs":[{"id":"ref-for-propdef-content\u2464"}],"title":"3.4. \nText-based Markers: the list-style-type property"},{"refs":[{"id":"ref-for-propdef-content\u2465"}],"title":"4.5. \nCounters in elements that do not generate boxes"},{"refs":[{"id":"ref-for-propdef-content\u2466"}],"title":"4.6. \nThe Implicit list-item Counter"}],"url":"https://drafts.csswg.org/css-content-3/#propdef-content"}, @@ -3446,7 +3441,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "45209803": {"dfnID":"45209803","dfnText":"for each","external":true,"refSections":[{"refs":[{"id":"ref-for-map-iterate"},{"id":"ref-for-map-iterate\u2460"}],"title":"4.4.1. \nInheriting Counters"}],"url":"https://infra.spec.whatwg.org/#map-iterate"}, "46374969": {"dfnID":"46374969","dfnText":"prefix","external":true,"refSections":[{"refs":[{"id":"ref-for-descdef-counter-style-prefix"}],"title":"3.4. \nText-based Markers: the list-style-type property"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-prefix"}, "466b2ed9": {"dfnID":"466b2ed9","dfnText":"inline-start","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-start"}],"title":"3.5. \nPositioning Markers: The list-style-position property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-start"}, -"4825540d": {"dfnID":"4825540d","dfnText":"text-space-trim","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-space-trim"}],"title":"3.1.1. \nProperties Applying to ::marker"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-space-trim"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"4.1. \nCreating Counters: the counter-reset property"},{"refs":[{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"}],"title":"4.2. \nManipulating Counter Values: the counter-increment and counter-set properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "55e8f5de": {"dfnID":"55e8f5de","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-none"}],"title":"4.5. \nCounters in elements that do not generate boxes"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-none"}, "581e7e57": {"dfnID":"581e7e57","dfnText":"default sizing algorithm","external":true,"refSections":[{"refs":[{"id":"ref-for-default-sizing-algorithm"}],"title":"3.3. \nImage Markers: the list-style-image property"}],"url":"https://drafts.csswg.org/css-images-3/#default-sizing-algorithm"}, @@ -3496,12 +3490,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "bedd9d42": {"dfnID":"bedd9d42","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-one-plus"}],"title":"4.1. \nCreating Counters: the counter-reset property"},{"refs":[{"id":"ref-for-mult-one-plus\u2460"},{"id":"ref-for-mult-one-plus\u2461"}],"title":"4.2. \nManipulating Counter Values: the counter-increment and counter-set properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-one-plus"}, "cacc0af2": {"dfnID":"cacc0af2","dfnText":"letter-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-letter-spacing"}],"title":"3.1.1. \nProperties Applying to ::marker"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, "cbc54f93": {"dfnID":"cbc54f93","dfnText":"text-transform","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-transform"}],"title":"3.1.1. \nProperties Applying to ::marker"},{"refs":[{"id":"ref-for-propdef-text-transform\u2460"}],"title":"Changes since the 9 July 2020 WD"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, -"ccef7ca5": {"dfnID":"ccef7ca5","dfnText":"text-space-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-space-collapse"}],"title":"3.1.1. \nProperties Applying to ::marker"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse"}, "counter": {"dfnID":"counter","dfnText":"counter","external":false,"refSections":[{"refs":[{"id":"ref-for-counter"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-counter\u2460"}],"title":"2. \nDeclaring a List Item"},{"refs":[{"id":"ref-for-counter\u2461"},{"id":"ref-for-counter\u2462"}],"title":"4. \nAutomatic Numbering With Counters"},{"refs":[{"id":"ref-for-counter\u2463"}],"title":"4.1. \nCreating Counters: the counter-reset property"},{"refs":[{"id":"ref-for-counter\u2464"}],"title":"4.2. \nManipulating Counter Values: the counter-increment and counter-set properties"},{"refs":[{"id":"ref-for-counter\u2465"},{"id":"ref-for-counter\u2466"}],"title":"4.3. \nNested Counters and Scope"},{"refs":[{"id":"ref-for-counter\u2467"},{"id":"ref-for-counter\u2468"}],"title":"4.4. \nCreating and Inheriting Counters"},{"refs":[{"id":"ref-for-counter\u2460\u24ea"}],"title":"4.4.1. \nInheriting Counters"},{"refs":[{"id":"ref-for-counter\u2460\u2460"},{"id":"ref-for-counter\u2460\u2461"},{"id":"ref-for-counter\u2460\u2462"},{"id":"ref-for-counter\u2460\u2463"},{"id":"ref-for-counter\u2460\u2464"},{"id":"ref-for-counter\u2460\u2465"}],"title":"4.4.2. \nInstantiating Counters"},{"refs":[{"id":"ref-for-counter\u2460\u2466"},{"id":"ref-for-counter\u2460\u2467"},{"id":"ref-for-counter\u2460\u2468"},{"id":"ref-for-counter\u2461\u24ea"},{"id":"ref-for-counter\u2461\u2460"},{"id":"ref-for-counter\u2461\u2461"}],"title":"4.6. \nThe Implicit list-item Counter"},{"refs":[{"id":"ref-for-counter\u2461\u2462"},{"id":"ref-for-counter\u2461\u2463"},{"id":"ref-for-counter\u2461\u2464"},{"id":"ref-for-counter\u2461\u2465"}],"title":"4.7. \nOutputting Counters: the counter() and counters() functions"}],"url":"#counter"}, "counter-properties": {"dfnID":"counter-properties","dfnText":"counter properties","external":false,"refSections":[],"url":"#counter-properties"}, "counter-scope": {"dfnID":"counter-scope","dfnText":"scope","external":false,"refSections":[{"refs":[{"id":"ref-for-counter-scope"}],"title":"4.4. \nCreating and Inheriting Counters"}],"url":"#counter-scope"}, "css-counter-creator": {"dfnID":"css-counter-creator","dfnText":"creator","external":false,"refSections":[{"refs":[{"id":"ref-for-css-counter-creator"}],"title":"4.4. \nCreating and Inheriting Counters"},{"refs":[{"id":"ref-for-css-counter-creator\u2460"}],"title":"4.4.1. \nInheriting Counters"}],"url":"#css-counter-creator"}, -"css-counter-name": {"dfnID":"css-counter-name","dfnText":"name","external":false,"refSections":[{"refs":[{"id":"ref-for-css-counter-name"}],"title":"4.4. \nCreating and Inheriting Counters"},{"refs":[{"id":"ref-for-css-counter-name\u2460"},{"id":"ref-for-css-counter-name\u2461"}],"title":"4.4.1. \nInheriting Counters"}],"url":"#css-counter-name"}, +"css-counter-name": {"dfnID":"css-counter-name","dfnText":"name","external":false,"refSections":[],"url":"#css-counter-name"}, "css-counter-value": {"dfnID":"css-counter-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-css-counter-value"}],"title":"4.4. \nCreating and Inheriting Counters"},{"refs":[{"id":"ref-for-css-counter-value\u2460"},{"id":"ref-for-css-counter-value\u2461"}],"title":"4.4.1. \nInheriting Counters"}],"url":"#css-counter-value"}, "css-counters-set": {"dfnID":"css-counters-set","dfnText":"CSS counters set","external":false,"refSections":[{"refs":[{"id":"ref-for-css-counters-set"},{"id":"ref-for-css-counters-set\u2460"},{"id":"ref-for-css-counters-set\u2461"},{"id":"ref-for-css-counters-set\u2462"},{"id":"ref-for-css-counters-set\u2463"},{"id":"ref-for-css-counters-set\u2464"}],"title":"4.4.1. \nInheriting Counters"},{"refs":[{"id":"ref-for-css-counters-set\u2465"}],"title":"4.4.2. \nInstantiating Counters"},{"refs":[{"id":"ref-for-css-counters-set\u2466"},{"id":"ref-for-css-counters-set\u2467"}],"title":"4.7. \nOutputting Counters: the counter() and counters() functions"}],"url":"#css-counters-set"}, "d02b1d43": {"dfnID":"d02b1d43","dfnText":"forced line break","external":true,"refSections":[{"refs":[{"id":"ref-for-forced-line-break"}],"title":"3.2. \nGenerating Marker Contents"}],"url":"https://drafts.csswg.org/css-text-4/#forced-line-break"}, @@ -4015,7 +4008,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#counter": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"counter","type":"dfn","url":"#counter"}, "#counter-scope": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"scope","type":"dfn","url":"#counter-scope"}, "#css-counter-creator": {"export":true,"for_":["CSS counter"],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"creator","type":"dfn","url":"#css-counter-creator"}, -"#css-counter-name": {"export":true,"for_":["CSS counter"],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"name","type":"dfn","url":"#css-counter-name"}, "#css-counter-value": {"export":true,"for_":["CSS counter"],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"value","type":"dfn","url":"#css-counter-value"}, "#css-counters-set": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"css counters set","type":"dfn","url":"#css-counters-set"}, "#funcdef-counter": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"local","text":"counter()","type":"function","url":"#funcdef-counter"}, @@ -4076,7 +4068,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-4/#propdef-order": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"order","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-order"}, "https://drafts.csswg.org/css-display-4/#propdef-visibility": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"visibility","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-visibility"}, "https://drafts.csswg.org/css-display-4/#replaced-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"replaced element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-display-4/#valdef-display-list-item": {"export":true,"for_":["display","<display-list-item>"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"list-item","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-display-list-item"}, "https://drafts.csswg.org/css-display-4/#valdef-display-none": {"export":true,"for_":["display","<display-box>"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"none","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-display-none"}, "https://drafts.csswg.org/css-display-4/#valdef-visibility-hidden": {"export":true,"for_":["visibility"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"hidden","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-visibility-hidden"}, @@ -4095,8 +4086,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-syntax-3/#css-invalid": {"export":true,"for_":["css"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"invalid","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-invalid"}, "https://drafts.csswg.org/css-text-4/#forced-line-break": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"forced line break","type":"dfn","url":"https://drafts.csswg.org/css-text-4/#forced-line-break"}, "https://drafts.csswg.org/css-text-4/#propdef-letter-spacing": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"letter-spacing","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, -"https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-space-collapse","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse"}, -"https://drafts.csswg.org/css-text-4/#propdef-text-space-trim": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-space-trim","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-space-trim"}, "https://drafts.csswg.org/css-text-4/#propdef-text-transform": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-transform","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, "https://drafts.csswg.org/css-text-4/#propdef-white-space": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"white-space","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-white-space"}, "https://drafts.csswg.org/css-text-4/#propdef-word-spacing": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"word-spacing","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-word-spacing"}, diff --git a/tests/github/w3c/csswg-drafts/css-logical-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-logical-1/Overview.console.txt index 04c2361a3d..3b89887352 100644 --- a/tests/github/w3c/csswg-drafts/css-logical-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-logical-1/Overview.console.txt @@ -5,42 +5,184 @@ LINE 722: The var 'inline' (in global scope) is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. LINE 113: Image doesn't exist, so I couldn't determine its width and height: 'diagrams/sizing-ltr-tb.svg' LINE 119: Image doesn't exist, so I couldn't determine its width and height: 'diagrams/sizing-ttb-rl.svg' -LINE ~202: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' -LINK ERROR: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -<a data-link-type="property" data-lt="caption-side" data-link-for-hint="caption-side">caption-side</a> -LINE ~211: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' -LINE 1: No 'property' refs found for 'min-width' with spec 'css2'. -<<'min-width'>> -LINE ~429: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~429: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~440: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~440: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE 1: No 'property' refs found for 'max-width' with spec 'css2'. -<<'max-width'>> -LINE ~444: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~444: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~455: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~455: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' +LINE 1: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +<<'border-top-width'>> +LINE ~578: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~589: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~589: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~589: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' +LINE ~589: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE 1: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +<<'border-top-style'>> +LINE ~612: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE ~623: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE ~623: Multiple possible 'border-bottom-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-style +spec:css-borders-4; type:property; text:border-bottom-style +'border-bottom-style' +LINE ~623: Multiple possible 'border-left-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-style +spec:css-borders-4; type:property; text:border-left-style +'border-left-style' +LINE ~623: Multiple possible 'border-right-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-style +spec:css-borders-4; type:property; text:border-right-style +'border-right-style' +LINE 1: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +<<'border-top-color'>> +LINE ~645: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE ~656: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE ~656: Multiple possible 'border-bottom-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-color +spec:css-borders-4; type:property; text:border-bottom-color +'border-bottom-color' +LINE ~656: Multiple possible 'border-left-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-color +spec:css-borders-4; type:property; text:border-left-color +'border-left-color' +LINE ~656: Multiple possible 'border-right-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-color +spec:css-borders-4; type:property; text:border-right-color +'border-right-color' +LINE ~683: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +'border-top' +LINE ~683: Multiple possible 'border-bottom' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom +spec:css-borders-4; type:property; text:border-bottom +'border-bottom' +LINE ~683: Multiple possible 'border-left' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left +spec:css-borders-4; type:property; text:border-left +'border-left' +LINE ~683: Multiple possible 'border-right' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right +spec:css-borders-4; type:property; text:border-right +'border-right' +LINE 1: Multiple possible 'border-top-left-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-left-radius +spec:css-borders-4; type:property; text:border-top-left-radius +<<'border-top-left-radius'>> +LINE ~706: Multiple possible 'border-top-left-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-left-radius +spec:css-borders-4; type:property; text:border-top-left-radius +'border-top-left-radius' +LINE ~717: Multiple possible 'border-top-left-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-left-radius +spec:css-borders-4; type:property; text:border-top-left-radius +'border-top-left-radius' +LINE ~717: Multiple possible 'border-bottom-left-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-left-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-left-radius +spec:css-borders-4; type:property; text:border-bottom-left-radius +'border-bottom-left-radius' +LINE ~717: Multiple possible 'border-top-right-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-right-radius +spec:css-borders-4; type:property; text:border-top-right-radius +'border-top-right-radius' +LINE ~717: Multiple possible 'border-bottom-right-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-right-radius +spec:css-borders-4; type:property; text:border-bottom-right-radius +'border-bottom-right-radius' +LINE ~724: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' +LINE ~750: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-logical-1/Overview.html b/tests/github/w3c/csswg-drafts/css-logical-1/Overview.html index f2f4b5f871..03b99dc590 100644 --- a/tests/github/w3c/csswg-drafts/css-logical-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-logical-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Logical Properties and Values Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-logical-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1084,7 +1083,7 @@ <h1 class="p-name no-ref" id="title">CSS Logical Properties and Values Level 1</ </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1106,7 +1105,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-logical] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-logical%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1304,12 +1303,12 @@ <h2 class="heading settled" data-level="2" id="directional-keywords"><span class and that of the box itself when affecting its contents. Regardless, which <span id="ref-for-writing-mode②">writing modes</span> is used for the mapping needs to be explicitly defined.</p> - <h3 class="heading settled" data-level="2.1" id="caption-side"><span class="secno">2.1. </span><span class="content"> Logical Values for the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a> Property</span><a class="self-link" href="#caption-side"></a></h3> + <h3 class="heading settled" data-level="2.1" id="caption-side"><span class="secno">2.1. </span><span class="content"> Logical Values for the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a> Property</span><a class="self-link" href="#caption-side"></a></h3> <table class="def propdef partial" data-link-for-hint="caption-side"> <tbody> <tr> <th>Name: - <td><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side①">caption-side</a> + <td><a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side①">caption-side</a> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">New values:</a> <td class="prod">inline-start <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one">|</a> inline-end @@ -1317,7 +1316,7 @@ <h3 class="heading settled" data-level="2.1" id="caption-side"><span class="secn <th><a href="https://www.w3.org/TR/css-cascade/#computed">Computed value:</a> <td>specified keyword </table> - <p>These two values are added only for implementations that support <span class="css">left</span> and <span class="css">right</span> values for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side②">caption-side</a>. + <p>These two values are added only for implementations that support <span class="css">left</span> and <span class="css">right</span> values for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side②">caption-side</a>. The <span class="css">left</span> and <span class="css">right</span> values themselves are defined to be <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#line-relative" id="ref-for-line-relative①">line-relative</a>.</p> <p>The existing <span class="css">top</span> and <span class="css">bottom</span> values are idiosyncratically redefined @@ -1361,7 +1360,7 @@ <h2 class="heading settled" data-level="3" id="page"><span class="secno">3. </sp that is on the earlier or later side of a spread, rather than to the left or right side of a spread, this module introduces the following additional keywords - for the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a> properties <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>:</p> + for the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a> properties <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>:</p> <dl> <dt><dfn class="dfn-paneled css" data-dfn-for="logical-page" data-dfn-type="value" data-export id="valdef-logical-page-recto">recto</dfn> <dd> Equivalent to <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-right" id="ref-for-propdef-right">right</a> in left-to-right page progressions @@ -1510,7 +1509,7 @@ <h3 class="heading settled" data-level="4.1" id="dimension-properties"><span cla <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-min-block-size">min-block-size</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-min-inline-size">min-inline-size</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="property">&lt;'min-width'></a> + <td class="prod"><a class="production css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">&lt;'min-width'></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>0 @@ -1525,7 +1524,7 @@ <h3 class="heading settled" data-level="4.1" id="dimension-properties"><span cla <td>As for the corresponding physical property <tr> <th><a href="https://www.w3.org/TR/css-cascade/#computed">Computed value:</a> - <td>Same as <a class="property css" data-link-type="property">min-height</a>, <span class="property">min-width</span> + <td>Same as <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width</a> <tr> <th><a href="https://www.w3.org/TR/cssom/#serializing-css-values">Canonical order:</a> <td>per grammar @@ -1533,7 +1532,7 @@ <h3 class="heading settled" data-level="4.1" id="dimension-properties"><span cla <th><a href="https://www.w3.org/TR/web-animations/#animation-type">Animation type:</a> <td>by computed value type </table> - <p>These properties correspond to the <a class="property css" data-link-type="property">min-height</a> and <span class="property">min-width</span> properties. + <p>These properties correspond to the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a> properties. The mapping depends on the element’s <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode" id="ref-for-propdef-writing-mode⑥">writing-mode</a>.</p> <table class="def propdef" data-link-for-hint="max-block-size"> <tbody> @@ -1542,7 +1541,7 @@ <h3 class="heading settled" data-level="4.1" id="dimension-properties"><span cla <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-max-block-size">max-block-size</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-max-inline-size">max-inline-size</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="property">&lt;'max-width'></a> + <td class="prod"><a class="production css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">&lt;'max-width'></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>none @@ -1557,7 +1556,7 @@ <h3 class="heading settled" data-level="4.1" id="dimension-properties"><span cla <td>As for the corresponding physical property <tr> <th><a href="https://www.w3.org/TR/css-cascade/#computed">Computed value:</a> - <td>Same as <a class="property css" data-link-type="property">max-height</a>, <span class="property">max-width</span> + <td>Same as <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width①">max-width</a> <tr> <th><a href="https://www.w3.org/TR/cssom/#serializing-css-values">Canonical order:</a> <td>per grammar @@ -1565,7 +1564,7 @@ <h3 class="heading settled" data-level="4.1" id="dimension-properties"><span cla <th><a href="https://www.w3.org/TR/web-animations/#animation-type">Animation type:</a> <td>by computed value type </table> - <p>These properties correspond to the <a class="property css" data-link-type="property">max-height</a> and <span class="property">max-width</span> properties. + <p>These properties correspond to the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width</a> properties. The mapping depends on the element’s <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode" id="ref-for-propdef-writing-mode⑦">writing-mode</a>.</p> <h3 class="heading settled" data-level="4.2" id="margin-properties"><span class="secno">4.2. </span><span class="content"> Flow-relative Margins: the <a class="property css" data-link-type="property" href="#propdef-margin-block-start" id="ref-for-propdef-margin-block-start">margin-block-start</a>, <a class="property css" data-link-type="property" href="#propdef-margin-block-end" id="ref-for-propdef-margin-block-end">margin-block-end</a>, <a class="property css" data-link-type="property" href="#propdef-margin-inline-start" id="ref-for-propdef-margin-inline-start④">margin-inline-start</a>, <a class="property css" data-link-type="property" href="#propdef-margin-inline-end" id="ref-for-propdef-margin-inline-end②">margin-inline-end</a> properties and <a class="property css" data-link-type="property" href="#propdef-margin-block" id="ref-for-propdef-margin-block">margin-block</a> and <a class="property css" data-link-type="property" href="#propdef-margin-inline" id="ref-for-propdef-margin-inline">margin-inline</a> shorthands</span><a class="self-link" href="#margin-properties"></a></h3> @@ -2447,7 +2446,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="07083329">caption-side</span> <li><span class="dfn-paneled" id="994d0e36">table wrapper box</span> </ul> <li> @@ -2487,20 +2485,29 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="9983181a">caption-side</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] @@ -2514,7 +2521,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-scroll-snap-1">[CSS-SCROLL-SNAP-1] @@ -3122,11 +3129,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content of whatever syntactic switch is ultimately chosen. <a class="issue-return" href="#issue-cfb9f389" title="Jump to section">↵</a></div> </div> <details class="mdn-anno unpositioned" data-anno-for="page"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@page" title="The @page at-rule is a CSS at-rule used to modify different aspects of a printed page property. It targets and modifies the page&apos;s dimensions, page orientation, and margins. The @page at-rule can be used to target all pages in a print-out, or even specific ones using its various pseudo-classes.">@page</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>6+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3503,7 +3511,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -3516,7 +3524,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -3529,7 +3537,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -3542,7 +3550,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3764,9 +3772,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-block-end" title="The margin-block-end CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element&apos;s writing mode, directionality, and text orientation.">margin-block-end</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3777,9 +3785,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-block-start" title="The margin-block-start CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element&apos;s writing mode, directionality, and text orientation.">margin-block-start</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3790,9 +3798,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-end" title="The margin-inline-end CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element&apos;s writing mode, directionality, and text orientation. In other words, it corresponds to the margin-top, margin-right, margin-bottom or margin-left property depending on the values defined for writing-mode, direction, and text-orientation.">margin-inline-end</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3803,9 +3811,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-start" title="The margin-inline-start CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element&apos;s writing mode, directionality, and text orientation. It corresponds to the margin-top, margin-right, margin-bottom, or margin-left property depending on the values defined for writing-mode, direction, and text-orientation.">margin-inline-start</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3915,9 +3923,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding-block-end" title="The padding-block-end CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element&apos;s writing mode, directionality, and text orientation.">padding-block-end</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3928,9 +3936,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding-block-start" title="The padding-block-start CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element&apos;s writing mode, directionality, and text orientation.">padding-block-start</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3941,9 +3949,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-end" title="The padding-inline-end CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element&apos;s writing mode, directionality, and text orientation.">padding-inline-end</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -3954,9 +3962,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-start" title="The padding-inline-start CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element&apos;s writing mode, directionality, and text orientation.">padding-inline-start</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>87+</span></span> + <span class="firefox yes"><span>Firefox</span><span>41+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>87+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -4215,7 +4223,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "00140718": {"dfnID":"00140718","dfnText":"margin-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-top"},{"id":"ref-for-propdef-margin-top\u2460"},{"id":"ref-for-propdef-margin-top\u2461"},{"id":"ref-for-propdef-margin-top\u2462"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-top"}, "0570259e": {"dfnID":"0570259e","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"},{"id":"ref-for-propdef-float\u2460"}],"title":"2.2. \nFlow-Relative Values for the float and clear Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-float"}, "06bc643d": {"dfnID":"06bc643d","dfnText":"rtl","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-direction-rtl"},{"id":"ref-for-valdef-direction-rtl\u2460"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-rtl"}, -"07083329": {"dfnID":"07083329","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"},{"id":"ref-for-propdef-caption-side\u2460"},{"id":"ref-for-propdef-caption-side\u2461"}],"title":"2.1. \nLogical Values for the caption-side Property"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, "08011fc6": {"dfnID":"08011fc6","dfnText":"scroll-margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-margin"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin"}, "1370dad0": {"dfnID":"1370dad0","dfnText":"block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-block-start"}],"title":"2.1. \nLogical Values for the caption-side Property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-start"}, "1548047a": {"dfnID":"1548047a","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, @@ -4230,6 +4237,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "37c6bd4e": {"dfnID":"37c6bd4e","dfnText":"padding-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-right"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-right"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"},{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2461"},{"id":"ref-for-propdef-writing-mode\u2462"},{"id":"ref-for-propdef-writing-mode\u2463"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2464"},{"id":"ref-for-propdef-writing-mode\u2465"},{"id":"ref-for-propdef-writing-mode\u2466"}],"title":"4.1. \nLogical Height and Logical Width:\nthe block-size/inline-size,\nmin-block-size/min-inline-size,\nand max-block-size/max-inline-size properties"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2467"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2468"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460\u24ea"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460\u2460"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460\u2461"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460\u2462"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460\u2463"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460\u2464"}],"title":"4.6. \nFlow-relative Corner Rounding:\nthe border-start-start-radius, border-start-end-radius, border-end-start-radius, border-end-end-radius properties"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3bd4bbe9": {"dfnID":"3bd4bbe9","dfnText":"text-orientation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-orientation"},{"id":"ref-for-propdef-text-orientation\u2460"},{"id":"ref-for-propdef-text-orientation\u2461"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2462"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2463"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2464"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2465"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2466"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2467"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2468"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2460\u24ea"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"},{"refs":[{"id":"ref-for-propdef-text-orientation\u2460\u2460"}],"title":"4.6. \nFlow-relative Corner Rounding:\nthe border-start-start-radius, border-start-end-radius, border-end-start-radius, border-end-end-radius properties"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"},{"id":"ref-for-propdef-min-height\u2460"}],"title":"4.1. \nLogical Height and Logical Width:\nthe block-size/inline-size,\nmin-block-size/min-inline-size,\nand max-block-size/max-inline-size properties"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "411343bc": {"dfnID":"411343bc","dfnText":"border-top-left-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-left-radius"},{"id":"ref-for-propdef-border-top-left-radius\u2460"},{"id":"ref-for-propdef-border-top-left-radius\u2461"},{"id":"ref-for-propdef-border-top-left-radius\u2462"},{"id":"ref-for-propdef-border-top-left-radius\u2463"}],"title":"4.6. \nFlow-relative Corner Rounding:\nthe border-start-start-radius, border-start-end-radius, border-end-start-radius, border-end-end-radius properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius"}, "42871fa3": {"dfnID":"42871fa3","dfnText":"border-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-style"},{"id":"ref-for-propdef-border-style\u2460"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"},{"id":"ref-for-propdef-text-align\u2460"}],"title":"2.3. \nFlow-Relative Values for the text-align Property"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, @@ -4242,10 +4250,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "56177fad": {"dfnID":"56177fad","dfnText":"shorthand","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"},{"id":"ref-for-shorthand-property\u2460"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-shorthand-property\u2461"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2462"},{"id":"ref-for-shorthand-property\u2463"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2464"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2465"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2466"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2467"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2468"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"},{"id":"ref-for-propdef-direction\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-propdef-direction\u2461"},{"id":"ref-for-propdef-direction\u2462"},{"id":"ref-for-propdef-direction\u2463"},{"id":"ref-for-propdef-direction\u2464"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-propdef-direction\u2465"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2466"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2467"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2468"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u24ea"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u2460"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u2461"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"},{"refs":[{"id":"ref-for-propdef-direction\u2460\u2462"}],"title":"4.6. \nFlow-relative Corner Rounding:\nthe border-start-start-radius, border-start-end-radius, border-end-start-radius, border-end-end-radius properties"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5c4b7db5": {"dfnID":"5c4b7db5","dfnText":"border-bottom-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-color"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"3. \nFlow-Relative Page Classifications"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "5eff29c1": {"dfnID":"5eff29c1","dfnText":"flow-relative","external":true,"refSections":[{"refs":[{"id":"ref-for-flow-relative"},{"id":"ref-for-flow-relative\u2460"},{"id":"ref-for-flow-relative\u2461"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-flow-relative\u2462"},{"id":"ref-for-flow-relative\u2463"},{"id":"ref-for-flow-relative\u2464"}],"title":"2. \nFlow-Relative Values: block-start, block-end, inline-start, inline-end"},{"refs":[{"id":"ref-for-flow-relative\u2465"}],"title":"2.2. \nFlow-Relative Values for the float and clear Properties"},{"refs":[{"id":"ref-for-flow-relative\u2466"},{"id":"ref-for-flow-relative\u2467"},{"id":"ref-for-flow-relative\u2468"},{"id":"ref-for-flow-relative\u2460\u24ea"},{"id":"ref-for-flow-relative\u2460\u2460"},{"id":"ref-for-flow-relative\u2460\u2461"},{"id":"ref-for-flow-relative\u2460\u2462"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#flow-relative"}, "653787eb": {"dfnID":"653787eb","dfnText":"line-relative","external":true,"refSections":[{"refs":[{"id":"ref-for-line-relative"}],"title":"2. \nFlow-Relative Values: block-start, block-end, inline-start, inline-end"},{"refs":[{"id":"ref-for-line-relative\u2460"}],"title":"2.1. \nLogical Values for the caption-side Property"},{"refs":[{"id":"ref-for-line-relative\u2461"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#line-relative"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"},{"id":"ref-for-propdef-height\u2461"},{"id":"ref-for-propdef-height\u2462"},{"id":"ref-for-propdef-height\u2463"}],"title":"4.1. \nLogical Height and Logical Width:\nthe block-size/inline-size,\nmin-block-size/min-inline-size,\nand max-block-size/max-inline-size properties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"3. \nFlow-Relative Page Classifications"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"2.1. \nLogical Values for the caption-side Property"},{"refs":[{"id":"ref-for-comb-one\u2460"}],"title":"2.2. \nFlow-Relative Values for the float and clear Properties"},{"refs":[{"id":"ref-for-comb-one\u2461"}],"title":"2.3. \nFlow-Relative Values for the text-align Property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "73759fff": {"dfnID":"73759fff","dfnText":"border-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-color"},{"id":"ref-for-propdef-border-color\u2460"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, "76207212": {"dfnID":"76207212","dfnText":"padding-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-left"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-left"}, @@ -4255,13 +4263,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "8b78f470": {"dfnID":"8b78f470","dfnText":"border-right-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-style"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style"}, "8ca0c013": {"dfnID":"8ca0c013","dfnText":"shorthand property","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"},{"id":"ref-for-shorthand-property\u2460"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-shorthand-property\u2461"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2462"},{"id":"ref-for-shorthand-property\u2463"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2464"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2465"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2466"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2467"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"},{"refs":[{"id":"ref-for-shorthand-property\u2468"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"3. \nFlow-Relative Page Classifications"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "9112c920": {"dfnID":"9112c920","dfnText":"border-left-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-color"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color"}, "938ba280": {"dfnID":"938ba280","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"},{"refs":[{"id":"ref-for-mult-num-range\u2460"},{"id":"ref-for-mult-num-range\u2461"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-mult-num-range\u2462"}],"title":"4.4. \nFlow-relative Padding:\nthe padding-block-start, padding-block-end, padding-inline-start, padding-inline-end properties and padding-block and padding-inline shorthands"},{"refs":[{"id":"ref-for-mult-num-range\u2463"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"},{"refs":[{"id":"ref-for-mult-num-range\u2464"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-mult-num-range\u2465"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"},{"refs":[{"id":"ref-for-mult-num-range\u2466"},{"id":"ref-for-mult-num-range\u2467"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, "9436e460": {"dfnID":"9436e460","dfnText":"clear","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clear"},{"id":"ref-for-propdef-clear\u2460"}],"title":"2.2. \nFlow-Relative Values for the float and clear Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-clear"}, "989f9ee6": {"dfnID":"989f9ee6","dfnText":"border-right-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-width"}],"title":"4.5.1. \nFlow-relative Border Widths:\nthe border-block-start-width, border-block-end-width, border-inline-start-width, border-inline-end-width properties and border-block-width and border-inline-width shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width"}, "994d0e36": {"dfnID":"994d0e36","dfnText":"table wrapper box","external":true,"refSections":[{"refs":[{"id":"ref-for-table-wrapper-box"}],"title":"2.1. \nLogical Values for the caption-side Property"}],"url":"https://drafts.csswg.org/css-tables-3/#table-wrapper-box"}, "99775498": {"dfnID":"99775498","dfnText":"border-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom"}, +"9983181a": {"dfnID":"9983181a","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"},{"id":"ref-for-propdef-caption-side\u2460"},{"id":"ref-for-propdef-caption-side\u2461"}],"title":"2.1. \nLogical Values for the caption-side Property"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-computed-value\u2460"},{"id":"ref-for-computed-value\u2461"},{"id":"ref-for-computed-value\u2462"},{"id":"ref-for-computed-value\u2463"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9d7987cb": {"dfnID":"9d7987cb","dfnText":"border-right-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-color"}],"title":"4.5.3. \nFlow-relative Border Colors:\nthe border-block-start-color, border-block-end-color, border-inline-start-color, border-inline-end-color properties and border-block-color and border-inline-color shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color"}, "9e066e76": {"dfnID":"9e066e76","dfnText":"longhand","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-longhand\u2460"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-longhand\u2461"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, @@ -4269,6 +4277,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a4f9641f": {"dfnID":"a4f9641f","dfnText":"border-left-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-style"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style"}, "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"},{"id":"ref-for-propdef-bottom\u2460"},{"id":"ref-for-propdef-bottom\u2461"},{"id":"ref-for-propdef-bottom\u2462"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-writing-mode\u2460"},{"id":"ref-for-writing-mode\u2461"}],"title":"2. \nFlow-Relative Values: block-start, block-end, inline-start, inline-end"},{"refs":[{"id":"ref-for-writing-mode\u2462"}],"title":"2.1. \nLogical Values for the caption-side Property"},{"refs":[{"id":"ref-for-writing-mode\u2463"}],"title":"2.2. \nFlow-Relative Values for the float and clear Properties"},{"refs":[{"id":"ref-for-writing-mode\u2464"},{"id":"ref-for-writing-mode\u2465"},{"id":"ref-for-writing-mode\u2466"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-writing-mode\u2467"}],"title":"6. \nChanges"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"},{"id":"ref-for-propdef-max-width\u2460"},{"id":"ref-for-propdef-max-width\u2461"}],"title":"4.1. \nLogical Height and Logical Width:\nthe block-size/inline-size,\nmin-block-size/min-inline-size,\nand max-block-size/max-inline-size properties"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "aa9d496e": {"dfnID":"aa9d496e","dfnText":"scroll-padding","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-scroll-padding"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding"}, "aaf6abed": {"dfnID":"aaf6abed","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"},{"id":"ref-for-propdef-margin-left\u2460"},{"id":"ref-for-propdef-margin-left\u2461"},{"id":"ref-for-propdef-margin-left\u2462"},{"id":"ref-for-propdef-margin-left\u2463"},{"id":"ref-for-propdef-margin-left\u2464"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-propdef-margin-left\u2465"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "ad065a5c": {"dfnID":"ad065a5c","dfnText":"margin-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-right"}],"title":"4.2. \nFlow-relative Margins:\nthe margin-block-start, margin-block-end, margin-inline-start, margin-inline-end properties and margin-block and margin-inline shorthands"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-right"}, @@ -4277,6 +4286,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b4da59cc": {"dfnID":"b4da59cc","dfnText":"horizontal-tb","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-writing-mode-horizontal-tb"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-horizontal-tb"}, "b5418f3e": {"dfnID":"b5418f3e","dfnText":"padding","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding"},{"id":"ref-for-propdef-padding\u2460"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding"}, "bc81c39d": {"dfnID":"bc81c39d","dfnText":"border-bottom-left-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-left-radius"}],"title":"4.6. \nFlow-relative Corner Rounding:\nthe border-start-start-radius, border-start-end-radius, border-end-start-radius, border-end-end-radius properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-left-radius"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"3. \nFlow-Relative Page Classifications"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, "c21450f8": {"dfnID":"c21450f8","dfnText":"sub-property","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"}],"title":"4. \nFlow-Relative Box Model Properties"},{"refs":[{"id":"ref-for-longhand\u2460"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"},{"refs":[{"id":"ref-for-longhand\u2461"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "c388d253": {"dfnID":"c388d253","dfnText":"inherit","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-inherit"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "c9ecad15": {"dfnID":"c9ecad15","dfnText":"border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-width"},{"id":"ref-for-propdef-border-width\u2460"}],"title":"4.7. \nFour-Directional Shorthand Properties: the margin, padding, border-width, border-style, and border-color shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, @@ -4292,8 +4302,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "directional-keyword": {"dfnID":"directional-keyword","dfnText":"directional keyword","external":false,"refSections":[{"refs":[{"id":"ref-for-directional-keyword"}],"title":"2. \nFlow-Relative Values: block-start, block-end, inline-start, inline-end"}],"url":"#directional-keyword"}, "e1483d91": {"dfnID":"e1483d91","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"},{"id":"ref-for-propdef-top\u2460"},{"id":"ref-for-propdef-top\u2461"},{"id":"ref-for-propdef-top\u2462"},{"id":"ref-for-propdef-top\u2463"},{"id":"ref-for-propdef-top\u2464"},{"id":"ref-for-propdef-top\u2465"}],"title":"4.3. \nFlow-relative Offsets:\nthe inset-block-start, inset-block-end, inset-inline-start, inset-inline-end properties and inset-block, inset-inline, and inset shorthands"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-top"}, "e4039478": {"dfnID":"e4039478","dfnText":"border-top-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-style"},{"id":"ref-for-propdef-border-top-style\u2460"},{"id":"ref-for-propdef-border-top-style\u2461"},{"id":"ref-for-propdef-border-top-style\u2462"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"},{"refs":[{"id":"ref-for-propdef-border-top-style\u2463"}],"title":"4.5.4. \nFlow-relative Border Shorthands:\nthe border-block-start, border-block-end, border-inline-start, border-inline-end properties and border-block and border-inline shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"},{"id":"ref-for-propdef-min-width\u2460"},{"id":"ref-for-propdef-min-width\u2461"}],"title":"4.1. \nLogical Height and Logical Width:\nthe block-size/inline-size,\nmin-block-size/min-inline-size,\nand max-block-size/max-inline-size properties"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"}],"title":"2. \nFlow-Relative Values: block-start, block-end, inline-start, inline-end"},{"refs":[{"id":"ref-for-containing-block\u2460"}],"title":"2.1. \nLogical Values for the caption-side Property"},{"refs":[{"id":"ref-for-containing-block\u2461"}],"title":"2.2. \nFlow-Relative Values for the float and clear Properties"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "ebfaf864": {"dfnID":"ebfaf864","dfnText":"border-bottom-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-style"}],"title":"4.5.2. \nFlow-relative Border Styles:\nthe border-block-start-style, border-block-end-style, border-inline-start-style, border-inline-end-style properties and border-block-style and border-inline-style shorthands"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"},{"id":"ref-for-propdef-max-height\u2460"}],"title":"4.1. \nLogical Height and Logical Width:\nthe block-size/inline-size,\nmin-block-size/min-inline-size,\nand max-block-size/max-inline-size properties"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "inset-properties": {"dfnID":"inset-properties","dfnText":"inset properties","external":false,"refSections":[],"url":"#inset-properties"}, "logical-property-group": {"dfnID":"logical-property-group","dfnText":"logical property group","external":false,"refSections":[{"refs":[{"id":"ref-for-logical-property-group"},{"id":"ref-for-logical-property-group\u2460"},{"id":"ref-for-logical-property-group\u2461"},{"id":"ref-for-logical-property-group\u2462"},{"id":"ref-for-logical-property-group\u2463"},{"id":"ref-for-logical-property-group\u2464"}],"title":"4. \nFlow-Relative Box Model Properties"}],"url":"#logical-property-group"}, "mapping-logic": {"dfnID":"mapping-logic","dfnText":"mapping logic","external":false,"refSections":[],"url":"#mapping-logic"}, @@ -4743,7 +4755,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", }; function setTypeTitles() { @@ -4925,7 +4937,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-scroll-snap","spec":"css-scroll-snap-1","status":"current","text":"scroll-padding","type":"property","url":"https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding"}, "https://drafts.csswg.org/css-sizing-3/#propdef-height": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"height","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "https://drafts.csswg.org/css-sizing-3/#propdef-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"width","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, -"https://drafts.csswg.org/css-tables-3/#propdef-caption-side": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"caption-side","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, "https://drafts.csswg.org/css-tables-3/#table-wrapper-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"table wrapper box","type":"dfn","url":"https://drafts.csswg.org/css-tables-3/#table-wrapper-box"}, "https://drafts.csswg.org/css-text-3/#propdef-text-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"text-align","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "https://drafts.csswg.org/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"||","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-any"}, @@ -4950,8 +4961,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"caption-side","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-mobile/Overview.html b/tests/github/w3c/csswg-drafts/css-mobile/Overview.html index 4f899cd6d6..6ab63e95d9 100644 --- a/tests/github/w3c/csswg-drafts/css-mobile/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-mobile/Overview.html @@ -5,7 +5,6 @@ <title>CSS Mobile Profile 2.0</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-mobile/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -592,7 +591,7 @@ <h1 class="p-name no-ref" id="title">CSS Mobile Profile 2.0</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -636,7 +635,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-mobile] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-mobile%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p><em>At this time, the CSS Working Group does not envisage further work on this specification and does not plan to propose it as a W3C diff --git a/tests/github/w3c/csswg-drafts/css-module-bikeshed/Overview.html b/tests/github/w3c/csswg-drafts/css-module-bikeshed/Overview.html index 07abd74301..f5f0fdcddf 100644 --- a/tests/github/w3c/csswg-drafts/css-module-bikeshed/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-module-bikeshed/Overview.html @@ -5,7 +5,6 @@ <title>CSS Foo Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-foo/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -852,7 +851,7 @@ <h1 class="p-name no-ref" id="title">CSS Foo Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -874,7 +873,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-foo] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-foo%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.console.txt index 2a6cbde93e..805a1cf163 100644 --- a/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.console.txt @@ -36,5 +36,4 @@ LINE 1493: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1510: Image doesn't exist, so I couldn't determine its width and height: 'images/height-constraint-column-break-overflow-inline.svg' LINE 1522: Image doesn't exist, so I couldn't determine its width and height: 'images/pagination-column-break-overflow-page1.svg' LINE 1529: Image doesn't exist, so I couldn't determine its width and height: 'images/pagination-column-break-overflow-page2.svg' -LINE ~1420: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' +LINE 1614: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.html b/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.html index 02bd12ccd3..61b8679f9a 100644 --- a/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-multicol-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Multi-column Layout Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-multicol-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1098,7 +1097,7 @@ <h1 class="p-name no-ref" id="title">CSS Multi-column Layout Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1120,7 +1119,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-multicol] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-multicol%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2500,7 +2499,7 @@ <h3 class="heading settled" data-level="8.2" id="pagination-and-overflow-outside <p>A multicol container can have more columns than it has room for due to:</p> <ul> <li> a declaration that constrains the column height - (e.g., using <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a> or <a class="property css" data-link-type="property">max-height</a>). + (e.g., using <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>). In this case, additional column boxes are created in the inline direction <li> the size of the page. In this case, additional column boxes are moved to the next page(s). @@ -2698,10 +2697,12 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/change-abspos-width-in-second-column-crash.html" title="css/css-multicol/change-abspos-width-in-second-column-crash.html">change-abspos-width-in-second-column-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/change-abspos-width-in-second-column-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/change-abspos-width-in-second-column-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash.html" title="css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash.html">change-out-of-flow-type-and-remove-inner-multicol-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/column-balancing-with-overflow-auto-crash.html" title="css/css-multicol/column-balancing-with-overflow-auto-crash.html">column-balancing-with-overflow-auto-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/column-balancing-with-overflow-auto-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/column-balancing-with-overflow-auto-crash.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/add-list-item-marker.html" title="css/css-multicol/crashtests/add-list-item-marker.html">add-list-item-marker.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/add-list-item-marker.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/add-list-item-marker.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/as-baseline-aligned-grid-item.html" title="css/css-multicol/crashtests/as-baseline-aligned-grid-item.html">as-baseline-aligned-grid-item.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/as-baseline-aligned-grid-item.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/as-baseline-aligned-grid-item.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/balance-with-forced-break.html" title="css/css-multicol/crashtests/balance-with-forced-break.html">balance-with-forced-break.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/balance-with-forced-break.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/balance-with-forced-break.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/balancing-flex-item-trailing-margin-freeze.html" title="css/css-multicol/crashtests/balancing-flex-item-trailing-margin-freeze.html">balancing-flex-item-trailing-margin-freeze.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/balancing-flex-item-trailing-margin-freeze.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/balancing-flex-item-trailing-margin-freeze.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/balancing-tall-borders-freeze.html" title="css/css-multicol/crashtests/balancing-tall-borders-freeze.html">balancing-tall-borders-freeze.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/balancing-tall-borders-freeze.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/balancing-tall-borders-freeze.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/block-in-inline-become-float.html" title="css/css-multicol/crashtests/block-in-inline-become-float.html">block-in-inline-become-float.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/block-in-inline-become-float.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/block-in-inline-become-float.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/body-becomes-spanner-html-becomes-vertical-rl.html" title="css/css-multicol/crashtests/body-becomes-spanner-html-becomes-vertical-rl.html">body-becomes-spanner-html-becomes-vertical-rl.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/body-becomes-spanner-html-becomes-vertical-rl.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/body-becomes-spanner-html-becomes-vertical-rl.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/break-before-multicol-caption.html" title="css/css-multicol/crashtests/break-before-multicol-caption.html">break-before-multicol-caption.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/break-before-multicol-caption.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/break-before-multicol-caption.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/chrome-bug-1293905.html" title="css/css-multicol/crashtests/chrome-bug-1293905.html">chrome-bug-1293905.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/chrome-bug-1293905.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/chrome-bug-1293905.html"><small>(source)</small></a> @@ -2713,9 +2714,14 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/fit-content-with-spanner-and-auto-scrollbar-sibling.html" title="css/css-multicol/crashtests/fit-content-with-spanner-and-auto-scrollbar-sibling.html">fit-content-with-spanner-and-auto-scrollbar-sibling.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/fit-content-with-spanner-and-auto-scrollbar-sibling.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/fit-content-with-spanner-and-auto-scrollbar-sibling.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/float-becomes-non-float-spanner-surprises-inside.html" title="css/css-multicol/crashtests/float-becomes-non-float-spanner-surprises-inside.html">float-becomes-non-float-spanner-surprises-inside.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/float-becomes-non-float-spanner-surprises-inside.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/float-becomes-non-float-spanner-surprises-inside.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/float-becomes-spanner.html" title="css/css-multicol/crashtests/float-becomes-spanner.html">float-becomes-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/float-becomes-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/float-becomes-spanner.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/float-multicol-crash.html" title="css/css-multicol/crashtests/float-multicol-crash.html">float-multicol-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/float-multicol-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/float-multicol-crash.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/floated-input-in-inline-next-column.html" title="css/css-multicol/crashtests/floated-input-in-inline-next-column.html">floated-input-in-inline-next-column.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/floated-input-in-inline-next-column.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/floated-input-in-inline-next-column.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing-nested.html" title="css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing-nested.html">forced-break-in-oof-in-column-balancing-nested.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing-nested.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing-nested.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing.html" title="css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing.html">forced-break-in-oof-in-column-balancing.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/forced-break-in-oof-in-column-balancing.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/inline-become-oof-container-make-oof-inflow.html" title="css/css-multicol/crashtests/inline-become-oof-container-make-oof-inflow.html">inline-become-oof-container-make-oof-inflow.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/inline-become-oof-container-make-oof-inflow.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/inline-become-oof-container-make-oof-inflow.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/inline-float-parallel-flow.html" title="css/css-multicol/crashtests/inline-float-parallel-flow.html">inline-float-parallel-flow.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/inline-float-parallel-flow.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/inline-float-parallel-flow.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/inline-with-spanner-in-overflowed-container-before-multicol-float.html" title="css/css-multicol/crashtests/inline-with-spanner-in-overflowed-container-before-multicol-float.html">inline-with-spanner-in-overflowed-container-before-multicol-float.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/inline-with-spanner-in-overflowed-container-before-multicol-float.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/inline-with-spanner-in-overflowed-container-before-multicol-float.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/interleaved-bfc-crash.html" title="css/css-multicol/crashtests/interleaved-bfc-crash.html">interleaved-bfc-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/interleaved-bfc-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/interleaved-bfc-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/margin-and-break-before-child-spanner.html" title="css/css-multicol/crashtests/margin-and-break-before-child-spanner.html">margin-and-break-before-child-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/margin-and-break-before-child-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/margin-and-break-before-child-spanner.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/monolithic-oof-in-clipped-container.html" title="css/css-multicol/crashtests/monolithic-oof-in-clipped-container.html">monolithic-oof-in-clipped-container.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/monolithic-oof-in-clipped-container.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/monolithic-oof-in-clipped-container.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/move-linebreak-to-different-column.html" title="css/css-multicol/crashtests/move-linebreak-to-different-column.html">move-linebreak-to-different-column.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/move-linebreak-to-different-column.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/move-linebreak-to-different-column.html"><small>(source)</small></a> @@ -2728,7 +2734,10 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-dynamic-transform-crash.html" title="css/css-multicol/crashtests/multicol-dynamic-transform-crash.html">multicol-dynamic-transform-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-dynamic-transform-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-dynamic-transform-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-floats-after-column-span-crash.html" title="css/css-multicol/crashtests/multicol-floats-after-column-span-crash.html">multicol-floats-after-column-span-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-floats-after-column-span-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-floats-after-column-span-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-floats-in-ifc.html" title="css/css-multicol/crashtests/multicol-floats-in-ifc.html">multicol-floats-in-ifc.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-floats-in-ifc.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-floats-in-ifc.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-parallel-flow-after-spanner-in-inline.html" title="css/css-multicol/crashtests/multicol-parallel-flow-after-spanner-in-inline.html">multicol-parallel-flow-after-spanner-in-inline.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-parallel-flow-after-spanner-in-inline.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-parallel-flow-after-spanner-in-inline.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-table-caption-parallel-flow-after-spanner-in-inline.html" title="css/css-multicol/crashtests/multicol-table-caption-parallel-flow-after-spanner-in-inline.html">multicol-table-caption-parallel-flow-after-spanner-in-inline.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-table-caption-parallel-flow-after-spanner-in-inline.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-table-caption-parallel-flow-after-spanner-in-inline.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-with-monolithic-oof-with-multicol-with-oof.html" title="css/css-multicol/crashtests/multicol-with-monolithic-oof-with-multicol-with-oof.html">multicol-with-monolithic-oof-with-multicol-with-oof.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-with-monolithic-oof-with-multicol-with-oof.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-with-monolithic-oof-with-multicol-with-oof.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/multicol-with-oof-in-multicol-with-oof-in-multicol.html" title="css/css-multicol/crashtests/multicol-with-oof-in-multicol-with-oof-in-multicol.html">multicol-with-oof-in-multicol-with-oof-in-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/multicol-with-oof-in-multicol-with-oof-in-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/multicol-with-oof-in-multicol-with-oof-in-multicol.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/negative-margin-on-column-spanner.html" title="css/css-multicol/crashtests/negative-margin-on-column-spanner.html">negative-margin-on-column-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/negative-margin-on-column-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/negative-margin-on-column-spanner.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/nested-as-balanced-legend.html" title="css/css-multicol/crashtests/nested-as-balanced-legend.html">nested-as-balanced-legend.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/nested-as-balanced-legend.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/nested-as-balanced-legend.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/nested-as-nested-balanced-legend.html" title="css/css-multicol/crashtests/nested-as-nested-balanced-legend.html">nested-as-nested-balanced-legend.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/nested-as-nested-balanced-legend.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/nested-as-nested-balanced-legend.html"><small>(source)</small></a> @@ -2754,9 +2763,21 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/nested-with-tall-padding.html" title="css/css-multicol/crashtests/nested-with-tall-padding.html">nested-with-tall-padding.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/nested-with-tall-padding.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/nested-with-tall-padding.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-becomes-spanner.html" title="css/css-multicol/crashtests/oof-becomes-spanner.html">oof-becomes-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-becomes-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-becomes-spanner.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html" title="css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html">oof-in-additional-column-before-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-area-001.html" title="css/css-multicol/crashtests/oof-in-area-001.html">oof-in-area-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-area-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-area-001.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-area-002.html" title="css/css-multicol/crashtests/oof-in-area-002.html">oof-in-area-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-area-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-area-002.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-area-003.html" title="css/css-multicol/crashtests/oof-in-area-003.html">oof-in-area-003.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-area-003.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-area-003.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-nested-line-float.html" title="css/css-multicol/crashtests/oof-in-nested-line-float.html">oof-in-nested-line-float.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-nested-line-float.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-nested-line-float.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-oof-multicol-in-multicol-spanner-in-multicol.html" title="css/css-multicol/crashtests/oof-in-oof-multicol-in-multicol-spanner-in-multicol.html">oof-in-oof-multicol-in-multicol-spanner-in-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-oof-multicol-in-multicol-spanner-in-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-oof-multicol-in-multicol-spanner-in-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html" title="css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html">oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html" title="css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html">oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html" title="css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html">oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html" title="css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html">oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-nested-multicol.html" title="css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-nested-multicol.html">oof-in-oof-multicol-in-spanner-in-nested-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-nested-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-oof-multicol-in-spanner-in-nested-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html" title="css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html">oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html" title="css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html">oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/oof-nested-multicol-inside-oof.html" title="css/css-multicol/crashtests/oof-nested-multicol-inside-oof.html">oof-nested-multicol-inside-oof.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/oof-nested-multicol-inside-oof.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/oof-nested-multicol-inside-oof.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/outline-move-oof-with-inline.html" title="css/css-multicol/crashtests/outline-move-oof-with-inline.html">outline-move-oof-with-inline.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/outline-move-oof-with-inline.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/outline-move-oof-with-inline.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html" title="css/css-multicol/crashtests/relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html">relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/relayout-nested-with-oof.html" title="css/css-multicol/crashtests/relayout-nested-with-oof.html">relayout-nested-with-oof.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/relayout-nested-with-oof.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/relayout-nested-with-oof.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html" title="css/css-multicol/crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html">relpos-inline-with-abspos-multicol-gets-block-child.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/relpos-spanner-with-spanner-child-becomes-regular.html" title="css/css-multicol/crashtests/relpos-spanner-with-spanner-child-becomes-regular.html">relpos-spanner-with-spanner-child-becomes-regular.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/relpos-spanner-with-spanner-child-becomes-regular.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/relpos-spanner-with-spanner-child-becomes-regular.html"><small>(source)</small></a> @@ -2777,12 +2798,15 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/specified-height-with-just-spanner-and-oof.html" title="css/css-multicol/crashtests/specified-height-with-just-spanner-and-oof.html">specified-height-with-just-spanner-and-oof.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/specified-height-with-just-spanner-and-oof.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/specified-height-with-just-spanner-and-oof.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/sticky-in-abs-in-sticky.html" title="css/css-multicol/crashtests/sticky-in-abs-in-sticky.html">sticky-in-abs-in-sticky.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/sticky-in-abs-in-sticky.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/sticky-in-abs-in-sticky.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/table-caption-change-descendant-display-type.html" title="css/css-multicol/crashtests/table-caption-change-descendant-display-type.html">table-caption-change-descendant-display-type.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/table-caption-change-descendant-display-type.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/table-caption-change-descendant-display-type.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/table-caption-in-clipped-overflow.html" title="css/css-multicol/crashtests/table-caption-in-clipped-overflow.html">table-caption-in-clipped-overflow.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/table-caption-in-clipped-overflow.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/table-caption-in-clipped-overflow.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/table-caption-inline-block-remove-child.html" title="css/css-multicol/crashtests/table-caption-inline-block-remove-child.html">table-caption-inline-block-remove-child.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/table-caption-inline-block-remove-child.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/table-caption-inline-block-remove-child.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/table-cell-writing-mode-root.html" title="css/css-multicol/crashtests/table-cell-writing-mode-root.html">table-cell-writing-mode-root.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/table-cell-writing-mode-root.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/table-cell-writing-mode-root.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/text-in-inline-interrupted-by-float.html" title="css/css-multicol/crashtests/text-in-inline-interrupted-by-float.html">text-in-inline-interrupted-by-float.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/text-in-inline-interrupted-by-float.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/text-in-inline-interrupted-by-float.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/trailing-parent-padding-between-spanners.html" title="css/css-multicol/crashtests/trailing-parent-padding-between-spanners.html">trailing-parent-padding-between-spanners.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/trailing-parent-padding-between-spanners.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/trailing-parent-padding-between-spanners.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/crashtests/vertical-rl-column-rules-wide-columns.html" title="css/css-multicol/crashtests/vertical-rl-column-rules-wide-columns.html">vertical-rl-column-rules-wide-columns.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/crashtests/vertical-rl-column-rules-wide-columns.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/crashtests/vertical-rl-column-rules-wide-columns.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/dynamic-become-multicol-add-oof-inside-inline-crash.html" title="css/css-multicol/dynamic-become-multicol-add-oof-inside-inline-crash.html">dynamic-become-multicol-add-oof-inside-inline-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/dynamic-become-multicol-add-oof-inside-inline-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/dynamic-become-multicol-add-oof-inside-inline-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/extremely-tall-multicol-with-extremely-tall-child-crash.html" title="css/css-multicol/extremely-tall-multicol-with-extremely-tall-child-crash.html">extremely-tall-multicol-with-extremely-tall-child-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/extremely-tall-multicol-with-extremely-tall-child-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/extremely-tall-multicol-with-extremely-tall-child-crash.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/file-control-crash.html" title="css/css-multicol/file-control-crash.html">file-control-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/file-control-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/file-control-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/img-alt-as-multicol-crash.html" title="css/css-multicol/img-alt-as-multicol-crash.html">img-alt-as-multicol-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/img-alt-as-multicol-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/img-alt-as-multicol-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/nested-balanced-monolithic-multicol-crash.html" title="css/css-multicol/nested-balanced-monolithic-multicol-crash.html">nested-balanced-monolithic-multicol-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/nested-balanced-monolithic-multicol-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/nested-balanced-monolithic-multicol-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/nested-balanced-very-tall-content-crash.html" title="css/css-multicol/nested-balanced-very-tall-content-crash.html">nested-balanced-very-tall-content-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/nested-balanced-very-tall-content-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/nested-balanced-very-tall-content-crash.html"><small>(source)</small></a> @@ -2797,6 +2821,7 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/spanning-legend-001-crash.html" title="css/css-multicol/spanning-legend-001-crash.html">spanning-legend-001-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/spanning-legend-001-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/spanning-legend-001-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/subpixel-scroll-crash.html" title="css/css-multicol/subpixel-scroll-crash.html">subpixel-scroll-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/subpixel-scroll-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/subpixel-scroll-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/table/balance-breakafter-before-table-section-crash.html" title="css/css-multicol/table/balance-breakafter-before-table-section-crash.html">balance-breakafter-before-table-section-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/table/balance-breakafter-before-table-section-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/table/balance-breakafter-before-table-section-crash.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/text-child-crash.html" title="css/css-multicol/text-child-crash.html">text-child-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/text-child-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/text-child-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/toggle-spanner-float-crash.html" title="css/css-multicol/toggle-spanner-float-crash.html">toggle-spanner-float-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/toggle-spanner-float-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/toggle-spanner-float-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/triply-nested-with-fixedpos-in-abspos-crash.html" title="css/css-multicol/triply-nested-with-fixedpos-in-abspos-crash.html">triply-nested-with-fixedpos-in-abspos-crash.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/triply-nested-with-fixedpos-in-abspos-crash.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/triply-nested-with-fixedpos-in-abspos-crash.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/with-custom-layout-on-same-element-crash.https.html" title="css/css-multicol/with-custom-layout-on-same-element-crash.https.html">with-custom-layout-on-same-element-crash.https.html</a> <a class="wpt-live" href="https://wpt.live/css/css-multicol/with-custom-layout-on-same-element-crash.https.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/with-custom-layout-on-same-element-crash.https.html"><small>(source)</small></a> @@ -2862,6 +2887,7 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/intrinsic-size-005.html" title="css/css-multicol/intrinsic-size-005.html">intrinsic-size-005.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/intrinsic-size-005.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/intrinsic-size-005.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/intrinsic-width-change-column-count.html" title="css/css-multicol/intrinsic-width-change-column-count.html">intrinsic-width-change-column-count.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/intrinsic-width-change-column-count.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/intrinsic-width-change-column-count.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/large-actual-column-count.html" title="css/css-multicol/large-actual-column-count.html">large-actual-column-count.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/large-actual-column-count.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/large-actual-column-count.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/move-with-text-after-paint.html" title="css/css-multicol/move-with-text-after-paint.html">move-with-text-after-paint.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/move-with-text-after-paint.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/move-with-text-after-paint.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-basic-004.html" title="css/css-multicol/multicol-basic-004.html">multicol-basic-004.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-basic-004.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-basic-004.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-block-no-clip-002.xht" title="css/css-multicol/multicol-block-no-clip-002.xht">multicol-block-no-clip-002.xht</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-block-no-clip-002.xht"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-block-no-clip-002.xht"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-br-inside-avoidcolumn-001.xht" title="css/css-multicol/multicol-br-inside-avoidcolumn-001.xht">multicol-br-inside-avoidcolumn-001.xht</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-br-inside-avoidcolumn-001.xht"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-br-inside-avoidcolumn-001.xht"><small>(source)</small></a> @@ -2897,6 +2923,7 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-018.html" title="css/css-multicol/multicol-fill-balance-018.html">multicol-fill-balance-018.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-018.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-018.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-024.html" title="css/css-multicol/multicol-fill-balance-024.html">multicol-fill-balance-024.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-024.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-024.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-026.html" title="css/css-multicol/multicol-fill-balance-026.html">multicol-fill-balance-026.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-026.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-026.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-029.html" title="css/css-multicol/multicol-fill-balance-029.html">multicol-fill-balance-029.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-029.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-029.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-nested-000.html" title="css/css-multicol/multicol-fill-balance-nested-000.html">multicol-fill-balance-nested-000.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-nested-000.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-nested-000.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-height-block-child-001.xht" title="css/css-multicol/multicol-height-block-child-001.xht">multicol-height-block-child-001.xht</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-height-block-child-001.xht"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-height-block-child-001.xht"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-list-item-002.html" title="css/css-multicol/multicol-list-item-002.html">multicol-list-item-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-list-item-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-list-item-002.html"><small>(source)</small></a> @@ -2929,6 +2956,8 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-027.html" title="css/css-multicol/multicol-nested-027.html">multicol-nested-027.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-027.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-027.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-028.html" title="css/css-multicol/multicol-nested-028.html">multicol-nested-028.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-028.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-028.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-029.html" title="css/css-multicol/multicol-nested-029.html">multicol-nested-029.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-029.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-029.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-030.html" title="css/css-multicol/multicol-nested-030.html">multicol-nested-030.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-030.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-030.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-031.html" title="css/css-multicol/multicol-nested-031.html">multicol-nested-031.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-031.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-031.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-column-rule-002.html" title="css/css-multicol/multicol-nested-column-rule-002.html">multicol-nested-column-rule-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-column-rule-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-column-rule-002.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-column-rule-003.html" title="css/css-multicol/multicol-nested-column-rule-003.html">multicol-nested-column-rule-003.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-column-rule-003.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-column-rule-003.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-oof-inline-cb-001.html" title="css/css-multicol/multicol-oof-inline-cb-001.html">multicol-oof-inline-cb-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-oof-inline-cb-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-oof-inline-cb-001.html"><small>(source)</small></a> @@ -2986,6 +3015,8 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/overflow-unsplittable-002.html" title="css/css-multicol/overflow-unsplittable-002.html">overflow-unsplittable-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/overflow-unsplittable-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/overflow-unsplittable-002.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/overflow-unsplittable-003.html" title="css/css-multicol/overflow-unsplittable-003.html">overflow-unsplittable-003.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/overflow-unsplittable-003.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/overflow-unsplittable-003.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/page-property-ignored.html" title="css/css-multicol/page-property-ignored.html">page-property-ignored.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/page-property-ignored.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/page-property-ignored.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/parallel-flow-after-spanner-001.html" title="css/css-multicol/parallel-flow-after-spanner-001.html">parallel-flow-after-spanner-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/parallel-flow-after-spanner-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/parallel-flow-after-spanner-001.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/parallel-flow-after-spanner-002.html" title="css/css-multicol/parallel-flow-after-spanner-002.html">parallel-flow-after-spanner-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/parallel-flow-after-spanner-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/parallel-flow-after-spanner-002.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/relative-child-overflowing-column-gap.html" title="css/css-multicol/relative-child-overflowing-column-gap.html">relative-child-overflowing-column-gap.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/relative-child-overflowing-column-gap.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/relative-child-overflowing-column-gap.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/relative-child-overflowing-container.html" title="css/css-multicol/relative-child-overflowing-container.html">relative-child-overflowing-container.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/relative-child-overflowing-container.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/relative-child-overflowing-container.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/remove-child-in-strict-containment-also-spanner.html" title="css/css-multicol/remove-child-in-strict-containment-also-spanner.html">remove-child-in-strict-containment-also-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/remove-child-in-strict-containment-also-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/remove-child-in-strict-containment-also-spanner.html"><small>(source)</small></a> @@ -2993,6 +3024,7 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/replaced-content-spanner-auto-width.html" title="css/css-multicol/replaced-content-spanner-auto-width.html">replaced-content-spanner-auto-width.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/replaced-content-spanner-auto-width.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/replaced-content-spanner-auto-width.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/resize-in-strict-containment-nested.html" title="css/css-multicol/resize-in-strict-containment-nested.html">resize-in-strict-containment-nested.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/resize-in-strict-containment-nested.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/resize-in-strict-containment-nested.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/resize-multicol-with-fixed-size-children.html" title="css/css-multicol/resize-multicol-with-fixed-size-children.html">resize-multicol-with-fixed-size-children.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/resize-multicol-with-fixed-size-children.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/resize-multicol-with-fixed-size-children.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/resize-with-text-after-paint.html" title="css/css-multicol/resize-with-text-after-paint.html">resize-with-text-after-paint.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/resize-with-text-after-paint.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/resize-with-text-after-paint.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/spanner-fragmentation-000.html" title="css/css-multicol/spanner-fragmentation-000.html">spanner-fragmentation-000.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/spanner-fragmentation-000.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/spanner-fragmentation-000.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/spanner-fragmentation-001.html" title="css/css-multicol/spanner-fragmentation-001.html">spanner-fragmentation-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/spanner-fragmentation-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/spanner-fragmentation-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/spanner-fragmentation-002.html" title="css/css-multicol/spanner-fragmentation-002.html">spanner-fragmentation-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/spanner-fragmentation-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/spanner-fragmentation-002.html"><small>(source)</small></a> @@ -3028,11 +3060,14 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/animation/column-rule-color-interpolation.html" title="css/css-multicol/animation/column-rule-color-interpolation.html">column-rule-color-interpolation.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/animation/column-rule-color-interpolation.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/animation/column-rule-color-interpolation.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/animation/column-rule-width-interpolation.html" title="css/css-multicol/animation/column-rule-width-interpolation.html">column-rule-width-interpolation.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/animation/column-rule-width-interpolation.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/animation/column-rule-width-interpolation.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/animation/column-width-interpolation.html" title="css/css-multicol/animation/column-width-interpolation.html">column-width-interpolation.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/animation/column-width-interpolation.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/animation/column-width-interpolation.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/animation/discrete-no-interpolation.html" title="css/css-multicol/animation/discrete-no-interpolation.html">discrete-no-interpolation.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/animation/discrete-no-interpolation.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/animation/discrete-no-interpolation.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/balance-grid-001.html" title="css/css-multicol/balance-grid-001.html">balance-grid-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/balance-grid-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/balance-grid-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/filter-with-abspos.html" title="css/css-multicol/filter-with-abspos.html">filter-with-abspos.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/filter-with-abspos.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/filter-with-abspos.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/getclientrects-000.html" title="css/css-multicol/getclientrects-000.html">getclientrects-000.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/getclientrects-000.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/getclientrects-000.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/getclientrects-001.html" title="css/css-multicol/getclientrects-001.html">getclientrects-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/getclientrects-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/getclientrects-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/going-out-of-flow-after-spanner.html" title="css/css-multicol/going-out-of-flow-after-spanner.html">going-out-of-flow-after-spanner.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/going-out-of-flow-after-spanner.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/going-out-of-flow-after-spanner.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/hit-test-child-under-perspective.html" title="css/css-multicol/hit-test-child-under-perspective.html">hit-test-child-under-perspective.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/hit-test-child-under-perspective.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/hit-test-child-under-perspective.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/hit-test-in-vertical-rl.html" title="css/css-multicol/hit-test-in-vertical-rl.html">hit-test-in-vertical-rl.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/hit-test-in-vertical-rl.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/hit-test-in-vertical-rl.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/hit-test-transformed-child.html" title="css/css-multicol/hit-test-transformed-child.html">hit-test-transformed-child.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/hit-test-transformed-child.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/hit-test-transformed-child.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/inheritance.html" title="css/css-multicol/inheritance.html">inheritance.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/inheritance.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/inheritance.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-007.html" title="css/css-multicol/multicol-fill-balance-007.html">multicol-fill-balance-007.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-007.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-007.html"><small>(source)</small></a> @@ -3051,6 +3086,8 @@ <h2 class="no-num heading settled" id="acknowledgments"><span class="content"> A <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-022.html" title="css/css-multicol/multicol-fill-balance-022.html">multicol-fill-balance-022.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-022.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-022.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-023.html" title="css/css-multicol/multicol-fill-balance-023.html">multicol-fill-balance-023.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-023.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-023.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-025.html" title="css/css-multicol/multicol-fill-balance-025.html">multicol-fill-balance-025.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-025.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-025.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-027.html" title="css/css-multicol/multicol-fill-balance-027.html">multicol-fill-balance-027.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-027.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-027.html"><small>(source)</small></a> + <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-fill-balance-028.html" title="css/css-multicol/multicol-fill-balance-028.html">multicol-fill-balance-028.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-fill-balance-028.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-fill-balance-028.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-006.html" title="css/css-multicol/multicol-nested-006.html">multicol-nested-006.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-006.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-006.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-nested-012.html" title="css/css-multicol/multicol-nested-012.html">multicol-nested-012.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-nested-012.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-nested-012.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-multicol/multicol-overflow-positioned-transform-001.html" title="css/css-multicol/multicol-overflow-positioned-transform-001.html">multicol-overflow-positioned-transform-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-multicol/multicol-overflow-positioned-transform-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-multicol/multicol-overflow-positioned-transform-001.html"><small>(source)</small></a> @@ -3287,6 +3324,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e1ab41b7">block axis</span> <li><span class="dfn-paneled" id="887c0c5c">inline base direction</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + </ul> <li> <a data-link-type="biblio">[CSS3-ALIGN]</a> defines the following terms: <ul> @@ -3317,15 +3359,15 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -3941,6 +3983,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"},{"id":"ref-for-containing-block\u2460"}],"title":"2. \nThe Multi-Column Model"},{"refs":[{"id":"ref-for-containing-block\u2461"},{"id":"ref-for-containing-block\u2462"}],"title":"6.1. Spanning An Element Across Columns: the column-span property"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "f005b2f6": {"dfnID":"f005b2f6","dfnText":"grid container","external":true,"refSections":[{"refs":[{"id":"ref-for-grid-container"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/css-grid-2/#grid-container"}, "f0f00e3a": {"dfnID":"f0f00e3a","dfnText":"normal","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-row-gap-normal"}],"title":"4.1. Gutters Between Columns: the column-gap property"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-row-gap-normal"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"8.2. \nPagination and Overflow Outside Multicol Containers"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"},{"id":"ref-for-length-value\u2460"}],"title":"3.1. The Inline Size of Columns: the column-width property"},{"refs":[{"id":"ref-for-length-value\u2461"}],"title":"Changes from the\nCandidate Recommendation (CR) of 12 April 2011."}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "fd9aa8f7": {"dfnID":"fd9aa8f7","dfnText":"block-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-level-box"},{"id":"ref-for-block-level-box\u2460"}],"title":"2. \nThe Multi-Column Model"}],"url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, "multi-column-container": {"dfnID":"multi-column-container","dfnText":"multi-column container","external":false,"refSections":[{"refs":[{"id":"ref-for-multi-column-container"},{"id":"ref-for-multi-column-container\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-multi-column-container\u2461"},{"id":"ref-for-multi-column-container\u2462"},{"id":"ref-for-multi-column-container\u2463"},{"id":"ref-for-multi-column-container\u2464"},{"id":"ref-for-multi-column-container\u2465"},{"id":"ref-for-multi-column-container\u2466"}],"title":"2. \nThe Multi-Column Model"},{"refs":[{"id":"ref-for-multi-column-container\u2467"}],"title":"3.2. The Number of Columns: the column-count property"},{"refs":[{"id":"ref-for-multi-column-container\u2468"},{"id":"ref-for-multi-column-container\u2460\u24ea"},{"id":"ref-for-multi-column-container\u2460\u2460"},{"id":"ref-for-multi-column-container\u2460\u2461"},{"id":"ref-for-multi-column-container\u2460\u2462"},{"id":"ref-for-multi-column-container\u2460\u2463"}],"title":"4. Column Gaps and Rules"},{"refs":[{"id":"ref-for-multi-column-container\u2460\u2464"},{"id":"ref-for-multi-column-container\u2460\u2465"},{"id":"ref-for-multi-column-container\u2460\u2466"},{"id":"ref-for-multi-column-container\u2460\u2467"}],"title":"6.1. Spanning An Element Across Columns: the column-span property"}],"url":"#multi-column-container"}, @@ -4359,7 +4402,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte let linkTitleData = { "https://drafts.csswg.org/css-backgrounds-3/#typedef-line-style": "Expands to: dashed | dotted | double | groove | hidden | inset | none | outset | ridge | solid", "https://drafts.csswg.org/css-backgrounds-3/#typedef-line-width": "Expands to: medium | thick | thin", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; @@ -4500,6 +4543,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-writing-modes-4/#block-axis": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"block axis","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#block-axis"}, "https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"inline base direction","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.console.txt index e69de29bb2..173ac188fa 100644 --- a/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.console.txt @@ -0,0 +1 @@ +LINE 232: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.html b/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.html index 7ebb61c7d4..dd28022bf7 100644 --- a/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-multicol-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Multi-column Layout Module Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-multicol-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -959,7 +958,7 @@ <h1 class="p-name no-ref" id="title">CSS Multi-column Layout Module Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -986,7 +985,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-multicol] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-multicol%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/csswg-drafts/css-namespaces-3/Overview.html b/tests/github/w3c/csswg-drafts/css-namespaces-3/Overview.html index 29ece2325d..f88d26dd25 100644 --- a/tests/github/w3c/csswg-drafts/css-namespaces-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-namespaces-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Namespaces Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css3-namespace/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -823,12 +822,12 @@ <h1 class="p-name no-ref" id="title">CSS Namespaces Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> - <p>This CSS Namespaces module defines the syntax for using namespaces in CSS. It defines the <span class="css">@namespace</span> rule for declaring the default namespace and binding namespaces to namespace prefixes, and it also defines a syntax that other specifications can adopt for using those prefixes in namespace-qualified names.</p> + <p>This CSS Namespaces module defines the syntax for using namespaces in CSS. It defines the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule for declaring the default namespace and binding namespaces to namespace prefixes, and it also defines a syntax that other specifications can adopt for using those prefixes in namespace-qualified names.</p> <a href="https://www.w3.org/TR/CSS/">CSS</a> is a language for describing the rendering of structured documents (such as HTML and XML) on screen, on paper, etc. @@ -845,7 +844,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-namespaces] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-namespaces%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -885,7 +884,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </span><span class="content"> Introduction</span><a class="self-link" href="#intro"></a></h2> <p><em>This section is non-normative.</em></p> <p>This CSS Namespaces module defines syntax for using namespaces in CSS. - It defines the <span class="css">@namespace</span> rule for declaring a default namespace + It defines the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①">@namespace</a> rule for declaring a default namespace and for binding namespaces to namespace prefixes. It also defines a syntax for using those prefixes to represent namespace-qualified names. It does not define where such names are valid or what they mean: @@ -894,7 +893,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s that references the syntax defined in the CSS Namespaces module.</p> <p>Note that a CSS client that does not support this module will (if it properly conforms to <a href="https://www.w3.org/TR/CSS21/syndata.html#parsing-errors">CSS’s forward-compatible parsing rules</a>) - ignore all <span class="css">@namespace</span> rules, + ignore all <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace②">@namespace</a> rules, as well as all style rules that make use of namespace qualified names. The syntax of delimiting namespace prefixes in CSS was deliberately chosen so that these CSS clients would ignore the style rules @@ -914,8 +913,8 @@ <h3 class="heading settled" data-level="1.1" id="terminology"><span class="secno <p>The <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#type-selector" id="ref-for-type-selector">type selectors</a> <code>elem</code>, <code>|elem</code>, and <code>empty|elem</code> are equivalent.</p> </div> - <h2 class="heading settled" data-level="2" id="declaration"><span class="secno">2. </span><span class="content">Declaring namespaces: the <span class="css">@namespace</span> rule</span><a class="self-link" href="#declaration"></a></h2> - <p>The <span class="css">@namespace</span> <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#at-rule" id="ref-for-at-rule">at-rule</a> declares a namespace prefix + <h2 class="heading settled" data-level="2" id="declaration"><span class="secno">2. </span><span class="content">Declaring namespaces: the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace③">@namespace</a> rule</span><a class="self-link" href="#declaration"></a></h2> + <p>The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace④">@namespace</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#at-rule" id="ref-for-at-rule">at-rule</a> declares a namespace prefix and associates it with a given namespace name (a string). This namespace prefix can then be used in namespace-qualified names such as the <a data-link-type="dfn" href="#css-qualified-name" id="ref-for-css-qualified-name">CSS qualified names</a> defined below.</p> @@ -939,7 +938,7 @@ <h2 class="heading settled" data-level="2" id="declaration"><span class="secno"> <a class="self-link" href="#example-53c91314"></a> For example, given the following XML document: <pre>&lt;qml:elem xmlns:qml="http://example.com/q-markup">&lt;/qml:elem> </pre> - <p>and the following <span class="css">@namespace</span> declarations at the + <p>and the following <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace⑤">@namespace</a> declarations at the beginning of a CSS file:</p> <pre>@namespace Q "http://example.com/q-markup"; @namespace lq "http://example.com/q-markup"; @@ -951,25 +950,25 @@ <h2 class="heading settled" data-level="2" id="declaration"><span class="secno"> not those declared by the document language.)</p> </div> <h3 class="heading settled" data-level="2.1" id="syntax"><span class="secno">2.1. </span><span class="content"> Syntax</span><a class="self-link" href="#syntax"></a></h3> - <p>The syntax for the <span class="css">@namespace</span> rule is:</p> + <p>The syntax for the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace⑥">@namespace</a> rule is:</p> <pre>@namespace <a class="production" data-link-type="type" href="#typedef-namespace-prefix" id="ref-for-typedef-namespace-prefix">&lt;namespace-prefix></a>? [ <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#string-value" id="ref-for-string-value">&lt;string></a> | <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#url-value" id="ref-for-url-value">&lt;url></a> ] ; <dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-namespace-prefix">&lt;namespace-prefix></dfn> = <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-ident" id="ref-for-typedef-ident">&lt;ident></a> </pre> - <p>Any <span class="css">@namespace</span> rules must follow all @charset and @import rules + <p>Any <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace⑦">@namespace</a> rules must follow all @charset and @import rules and precede all other non-ignored at-rules and style rules in a style sheet. For CSS syntax this adds <code>[ namespace [S<var>CDO</var>CDC]* ]*</code> immediately after <code>[ import [S<var>CDO</var>CDC]* ]*</code> in the <code>stylesheet</code> grammar.</p> - <p>A syntactically invalid <span class="css">@namespace</span> rule + <p>A syntactically invalid <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace⑧">@namespace</a> rule (whether malformed or misplaced) must be <a href="https://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>. - A CSS <a href="https://www.w3.org/TR/CSS21/conform.html#style-sheet">style sheet</a> containing an invalid <span class="css">@namespace</span> rule + A CSS <a href="https://www.w3.org/TR/CSS21/conform.html#style-sheet">style sheet</a> containing an invalid <span class="css" id="ref-for-at-ruledef-namespace⑨">@namespace</span> rule is not a <a href="https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet">valid style sheet</a>.</p> <p>A URI string parsed from the <code>URI</code> syntax must be treated as a literal string: as with the <code>STRING</code> syntax, no URI-specific normalization is applied.</p> - <p>All strings—​including the empty string and strings representing invalid URIs—​are valid namespace names in <span class="css">@namespace</span> declarations.</p> + <p>All strings—​including the empty string and strings representing invalid URIs—​are valid namespace names in <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①⓪">@namespace</a> declarations.</p> <h3 class="heading settled" data-level="2.2" id="scope"><span class="secno">2.2. </span><span class="content"> Scope</span><a class="self-link" href="#scope"></a></h3> - <p>The namespace prefix is declared only within the style sheet in which its <span class="css">@namespace</span> rule appears. It is not declared in any style sheets + <p>The namespace prefix is declared only within the style sheet in which its <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①①">@namespace</a> rule appears. It is not declared in any style sheets importing or imported by that style sheet, nor in any other style sheets applying to the document.</p> <h3 class="heading settled" data-level="2.3" id="prefixes"><span class="secno">2.3. </span><span class="content"> Declaring Prefixes</span><a class="self-link" href="#prefixes"></a></h3> @@ -1089,6 +1088,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[CSS-NAMESPACES-3]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> + </ul> <li> <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: <ul> @@ -1110,6 +1114,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -1359,6 +1365,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "762610c7": {"dfnID":"762610c7","dfnText":"at-rule","external":true,"refSections":[{"refs":[{"id":"ref-for-at-rule"}],"title":"2. Declaring namespaces: the @namespace rule"}],"url":"https://drafts.csswg.org/css-syntax-3/#at-rule"}, "9213678e": {"dfnID":"9213678e","dfnText":"<ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-ident"}],"title":"2.1. \nSyntax"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-ident"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"}],"title":"2.1. \nSyntax"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-at-ruledef-namespace\u2460"},{"id":"ref-for-at-ruledef-namespace\u2461"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-at-ruledef-namespace\u2462"},{"id":"ref-for-at-ruledef-namespace\u2463"},{"id":"ref-for-at-ruledef-namespace\u2464"}],"title":"2. Declaring namespaces: the @namespace rule"},{"refs":[{"id":"ref-for-at-ruledef-namespace\u2465"},{"id":"ref-for-at-ruledef-namespace\u2466"},{"id":"ref-for-at-ruledef-namespace\u2467"},{"id":"ref-for-at-ruledef-namespace\u2468"},{"id":"ref-for-at-ruledef-namespace\u2460\u24ea"}],"title":"2.1. \nSyntax"},{"refs":[{"id":"ref-for-at-ruledef-namespace\u2460\u2460"}],"title":"2.2. \nScope"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "css-qualified-name": {"dfnID":"css-qualified-name","dfnText":"CSS qualified name","external":false,"refSections":[{"refs":[{"id":"ref-for-css-qualified-name"}],"title":"2. Declaring namespaces: the @namespace rule"}],"url":"#css-qualified-name"}, "default-namespace": {"dfnID":"default-namespace","dfnText":"default namespace","external":false,"refSections":[],"url":"#default-namespace"}, "expanded-name": {"dfnID":"expanded-name","dfnText":"expanded name","external":false,"refSections":[],"url":"#expanded-name"}, @@ -1830,6 +1837,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" let refsData = { "#css-qualified-name": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"local","text":"css qualified name","type":"dfn","url":"#css-qualified-name"}, "#typedef-namespace-prefix": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"local","text":"<namespace-prefix>","type":"type","url":"#typedef-namespace-prefix"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-syntax-3/#at-rule": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"at-rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#at-rule"}, "https://drafts.csswg.org/css-values-4/#string-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<string>","type":"type","url":"https://drafts.csswg.org/css-values-4/#string-value"}, "https://drafts.csswg.org/css-values-4/#typedef-ident": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<ident>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-ident"}, diff --git a/tests/github/w3c/csswg-drafts/css-nav-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-nav-1/Overview.console.txt index b106648ff7..0eb13db6e2 100644 --- a/tests/github/w3c/csswg-drafts/css-nav-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-nav-1/Overview.console.txt @@ -66,7 +66,7 @@ spec:html; type:dfn; for:/; text:origin https://html.spec.whatwg.org/multipage/media.html#media-resource-origin https://html.spec.whatwg.org/multipage/semantics.html#link-options-origin <a bs-line-number="658" data-link-spec="html" data-link-for="/" data-link-type="dfn" data-lt="origin">origin</a> -LINE ~660: No 'dfn' refs found for 'event order' that are marked for export. +LINE ~660: No 'dfn' refs found for 'event order'. [=event order=] LINE 776: Multiple possible 'origin' dfn refs for '['/']'. Arbitrarily chose https://html.spec.whatwg.org/multipage/browsers.html#concept-origin @@ -79,7 +79,7 @@ spec:html; type:dfn; for:/; text:origin https://html.spec.whatwg.org/multipage/media.html#media-resource-origin https://html.spec.whatwg.org/multipage/semantics.html#link-options-origin <a bs-line-number="776" data-link-spec="html" data-link-for="/" data-link-type="dfn" data-lt="origin">origin</a> -LINE ~778: No 'dfn' refs found for 'event order' that are marked for export. +LINE ~778: No 'dfn' refs found for 'event order'. [=event order=] LINE 1092: No 'dfn' refs found for 'nested browsing context'. <a bs-line-number="1092" data-link-type="dfn" data-lt="nested browsing context">nested browsing context</a> diff --git a/tests/github/w3c/csswg-drafts/css-nav-1/Overview.html b/tests/github/w3c/csswg-drafts/css-nav-1/Overview.html index 58542469ce..f52db83b2e 100644 --- a/tests/github/w3c/csswg-drafts/css-nav-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-nav-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Spatial Navigation Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-nav-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -942,7 +941,7 @@ <h1 class="p-name no-ref" id="title">CSS Spatial Navigation Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -965,7 +964,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-nav] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-nav%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1931,7 +1930,7 @@ <h3 class="heading settled" data-level="8.4" id="heuristics"><span class="secno" In particular, divergences in how user agents <a data-link-type="dfn" href="#find-focusable-areas" id="ref-for-find-focusable-areas④">find focusable areas</a> may cause some elements to be focusable in some user agents but not in others, which would be bad for users.</p> <p>All geometrical operations in this section are defined to work on the result of CSS layout, -including all graphical transformations, such as <a data-link-type="dfn" href="https://drafts.csswg.org/css-position-3/#relative-position" id="ref-for-relative-position">relative positioning</a> or <a data-link-type="biblio" href="#biblio-css-transforms-1" title="CSS Transforms Module Level 1">[CSS-TRANSFORMS-1]</a>.</p> +including all graphical transformations, such as <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x34" id="ref-for-x34">relative positioning</a> or <a data-link-type="biblio" href="#biblio-css-transforms-1" title="CSS Transforms Module Level 1">[CSS-TRANSFORMS-1]</a>.</p> <div class="algorithm" data-algorithm="to set the search origin"> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="set the search origin | setting the search origin" data-noexport id="set-the-search-origin">set the <a data-link-type="dfn" href="#search-origin" id="ref-for-search-origin">search origin</a></dfn>, run the following steps:</p> @@ -2842,11 +2841,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="86923d07">scroll container</span> <li><span class="dfn-paneled" id="60bbf126">scrollport</span> </ul> - <li> - <a data-link-type="biblio">[CSS-POSITION-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="cbae713e">relative position</span> - </ul> <li> <a data-link-type="biblio">[CSS-SCROLL-SNAP-1]</a> defines the following terms: <ul> @@ -2865,6 +2859,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="79e75ff8">border box</span> <li><span class="dfn-paneled" id="ffc19957">painting order</span> + <li><span class="dfn-paneled" id="b56d2f8c">relative positioning</span> </ul> <li> <a data-link-type="biblio">[CSSOM-VIEW-1]</a> defines the following terms: @@ -2955,11 +2950,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> - <dt id="biblio-css-position-3">[CSS-POSITION-3] - <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-scroll-snap-1">[CSS-SCROLL-SNAP-1] <dd>Matt Rakow; et al. <a href="https://drafts.csswg.org/css-scroll-snap-1/"><cite>CSS Scroll Snap Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-scroll-snap-1/">https://drafts.csswg.org/css-scroll-snap-1/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -3338,12 +3331,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a973e0fe": {"dfnID":"a973e0fe","dfnText":"document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document"}],"title":"5.2. \nLow level APIs"},{"refs":[{"id":"ref-for-concept-document\u2460"}],"title":"8.1. \nGlossary"},{"refs":[{"id":"ref-for-concept-document\u2461"},{"id":"ref-for-concept-document\u2462"}],"title":"8.3. \nNavigation"}],"url":"https://dom.spec.whatwg.org/#concept-document"}, "ae2a6342": {"dfnID":"ae2a6342","dfnText":"top-level browsing context","external":true,"refSections":[{"refs":[{"id":"ref-for-top-level-browsing-context"}],"title":"6.2.1. \nnavbeforefocus"},{"refs":[{"id":"ref-for-top-level-browsing-context\u2460"}],"title":"6.2.2. \nnavnotarget"},{"refs":[{"id":"ref-for-top-level-browsing-context\u2461"}],"title":"8.2. \nGroupings of elements"},{"refs":[{"id":"ref-for-top-level-browsing-context\u2462"}],"title":"8.3. \nNavigation"},{"refs":[{"id":"ref-for-top-level-browsing-context\u2463"}],"title":"9.1. \nCreating additional spatial navigation containers: the spatial-navigation-contain property"}],"url":"https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context"}, "at-risk": {"dfnID":"at-risk","dfnText":"at-risk","external":false,"refSections":[{"refs":[{"id":"ref-for-at-risk"}],"title":"5.2. \nLow level APIs"},{"refs":[{"id":"ref-for-at-risk\u2460"}],"title":"9.1. \nCreating additional spatial navigation containers: the spatial-navigation-contain property"},{"refs":[{"id":"ref-for-at-risk\u2461"}],"title":"9.2. \nControlling the interaction with scrolling: the spatial-navigation-action property"}],"url":"#at-risk"}, +"b56d2f8c": {"dfnID":"b56d2f8c","dfnText":"relative positioning","external":true,"refSections":[{"refs":[{"id":"ref-for-x34"}],"title":"8.4. \nFocus Navigation Heuristics"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x34"}, "bedd9d42": {"dfnID":"bedd9d42","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-one-plus"}],"title":"8.4. \nFocus Navigation Heuristics"}],"url":"https://drafts.csswg.org/css-values-4/#mult-one-plus"}, "boundary-box": {"dfnID":"boundary-box","dfnText":"boundary box","external":false,"refSections":[{"refs":[{"id":"ref-for-boundary-box"}],"title":"8.1. \nGlossary"},{"refs":[{"id":"ref-for-boundary-box\u2460"},{"id":"ref-for-boundary-box\u2461"},{"id":"ref-for-boundary-box\u2462"},{"id":"ref-for-boundary-box\u2463"},{"id":"ref-for-boundary-box\u2464"},{"id":"ref-for-boundary-box\u2465"},{"id":"ref-for-boundary-box\u2466"},{"id":"ref-for-boundary-box\u2467"},{"id":"ref-for-boundary-box\u2468"},{"id":"ref-for-boundary-box\u2460\u24ea"},{"id":"ref-for-boundary-box\u2460\u2460"},{"id":"ref-for-boundary-box\u2460\u2461"},{"id":"ref-for-boundary-box\u2460\u2462"},{"id":"ref-for-boundary-box\u2460\u2463"},{"id":"ref-for-boundary-box\u2460\u2464"},{"id":"ref-for-boundary-box\u2460\u2465"},{"id":"ref-for-boundary-box\u2460\u2466"}],"title":"8.4. \nFocus Navigation Heuristics"}],"url":"#boundary-box"}, "c3bd6e1d": {"dfnID":"c3bd6e1d","dfnText":"box fragment","external":true,"refSections":[{"refs":[{"id":"ref-for-box-fragment"},{"id":"ref-for-box-fragment\u2460"}],"title":"8.1. \nGlossary"},{"refs":[{"id":"ref-for-box-fragment\u2461"},{"id":"ref-for-box-fragment\u2462"}],"title":"8.4. \nFocus Navigation Heuristics"}],"url":"https://drafts.csswg.org/css-break-4/#box-fragment"}, "c51ad875": {"dfnID":"c51ad875","dfnText":"the body element","external":true,"refSections":[{"refs":[{"id":"ref-for-the-body-element-2"}],"title":"6.2.1. \nnavbeforefocus"},{"refs":[{"id":"ref-for-the-body-element-2\u2460"}],"title":"6.2.2. \nnavnotarget"},{"refs":[{"id":"ref-for-the-body-element-2\u2461"}],"title":"8.3. \nNavigation"}],"url":"https://html.spec.whatwg.org/multipage/dom.html#the-body-element-2"}, "can-be-manually-scrolled": {"dfnID":"can-be-manually-scrolled","dfnText":"can be manually scrolled","external":false,"refSections":[{"refs":[{"id":"ref-for-can-be-manually-scrolled"},{"id":"ref-for-can-be-manually-scrolled\u2460"},{"id":"ref-for-can-be-manually-scrolled\u2461"}],"title":"8.3. \nNavigation"}],"url":"#can-be-manually-scrolled"}, -"cbae713e": {"dfnID":"cbae713e","dfnText":"relative position","external":true,"refSections":[{"refs":[{"id":"ref-for-relative-position"}],"title":"8.4. \nFocus Navigation Heuristics"}],"url":"https://drafts.csswg.org/css-position-3/#relative-position"}, "d345f720": {"dfnID":"d345f720","dfnText":"focus(options)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-focus"}],"title":"3. \nOverview"},{"refs":[{"id":"ref-for-dom-focus\u2460"}],"title":"6.2.2. \nnavnotarget"},{"refs":[{"id":"ref-for-dom-focus\u2461"}],"title":"9.2. \nControlling the interaction with scrolling: the spatial-navigation-action property"}],"url":"https://html.spec.whatwg.org/multipage/interaction.html#dom-focus"}, "d462b34f": {"dfnID":"d462b34f","dfnText":"node","external":true,"refSections":[{"refs":[{"id":"ref-for-boundary-point-node"},{"id":"ref-for-boundary-point-node\u2460"}],"title":"8.3. \nNavigation"}],"url":"https://dom.spec.whatwg.org/#boundary-point-node"}, "d95397a7": {"dfnID":"d95397a7","dfnText":"all","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-all"}],"title":"5.2. \nLow level APIs"}],"url":"https://drafts.csswg.org/css-cascade-5/#propdef-all"}, @@ -3869,7 +3862,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-overflow-3/#scrollport": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scrollport","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scrollport"}, "https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden": {"export":true,"for_":["overflow","overflow-x","overflow-y"],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"hidden","type":"value","url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden"}, "https://drafts.csswg.org/css-overscroll-behavior-1/#scroll-boundary": {"export":true,"for_":[],"level":"","normative":true,"shortname":"overscroll-behavior","spec":"overscroll-behavior","status":"anchor-block","text":"scroll boundary","type":"dfn","url":"https://drafts.csswg.org/css-overscroll-behavior-1/#scroll-boundary"}, -"https://drafts.csswg.org/css-position-3/#relative-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"relative position","type":"dfn","url":"https://drafts.csswg.org/css-position-3/#relative-position"}, "https://drafts.csswg.org/css-scroll-snap-1/#optimal-viewing-region": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-scroll-snap","spec":"css-scroll-snap-1","status":"current","text":"optimal viewing region","type":"dfn","url":"https://drafts.csswg.org/css-scroll-snap-1/#optimal-viewing-region"}, "https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-mandatory": {"export":true,"for_":["scroll-snap-type"],"level":"1","normative":true,"shortname":"css-scroll-snap","spec":"css-scroll-snap-1","status":"current","text":"mandatory","type":"value","url":"https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-mandatory"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -3912,6 +3904,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-DOMString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMString","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "https://webidl.spec.whatwg.org/#idl-sequence": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"sequence","type":"dfn","url":"https://webidl.spec.whatwg.org/#idl-sequence"}, "https://webidl.spec.whatwg.org/#idl-undefined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"undefined","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-undefined"}, +"https://www.w3.org/TR/CSS21/visuren.html#x34": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"relative positioning","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x34"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.console.txt index a9f3b1d697..adaa37db53 100644 --- a/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.console.txt @@ -1,3 +1,15 @@ +LINE 154: Multiple possible 'type selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#type-selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:type selector +spec:css2; type:dfn; text:type selector +<a bs-line-number="154" data-link-type="dfn" data-lt="type selector">type selector</a> +LINE 196: Multiple possible 'simple selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#simple +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:simple selector +spec:css2; type:dfn; text:simple selector +<a bs-line-number="196" data-link-type="dfn" data-lt="simple selector">simple selector</a> LINE 369: No 'type' refs found for '<selector>'. <<selector>> LINE 444: No 'dfn' refs found for 'conditional rules'. @@ -6,3 +18,6 @@ LINE 597: No 'dfn' refs found for 'nested conditional rules'. <a bs-line-number="597" data-link-type="dfn" data-lt="nested conditional rules">nested conditional rules</a> LINE 736: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="736" data-link-type="dfn" data-lt="context object">context object</a> +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. +FATAL ERROR: Couldn't load MDN Spec Links data for this spec. +Expecting value: line 1 column 1 (char 0) diff --git a/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.html b/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.html index d0dcd14e7a..cac6ab4aff 100644 --- a/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-nesting-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Nesting Module</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-nesting/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -850,7 +849,7 @@ <h1 class="p-name no-ref" id="title">CSS Nesting Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -872,7 +871,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-nesting] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-nesting%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1754,7 +1753,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-6">[CSS-CASCADE-6] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-6/"><cite>CSS Cascading and Inheritance Level 6</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-6/">https://drafts.csswg.org/css-cascade-6/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css21">[CSS21] diff --git a/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.console.txt index 17722e225b..7a40be49e8 100644 --- a/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.console.txt @@ -32,6 +32,12 @@ LINE 1314: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1317: Image doesn't exist, so I couldn't determine its width and height: 'images/continue-auto-visible.png' LINE 1324: Image doesn't exist, so I couldn't determine its width and height: 'images/continue-discard-hidden.png' LINE 1327: Image doesn't exist, so I couldn't determine its width and height: 'images/continue-auto-hidden.png' +LINE ~176: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE 428: Multiple possible 'print' maybe refs. Arbitrarily chose https://drafts.csswg.org/css2/#valdef-media-print To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -44,8 +50,12 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:css-backgrounds-3; type:value; for:background-clip; text:padding-box spec:css-backgrounds-3; type:value; for:background-origin; text:padding-box spec:css-box-4; type:value; for:<box>; text:padding-box +spec:css-box-4; type:value; for:<visual-box>; text:padding-box +spec:css-box-4; type:value; for:<layout-box>; text:padding-box spec:css-box-4; type:value; for:<shape-box>; text:padding-box spec:css-box-4; type:value; for:<geometry-box>; text:padding-box +spec:css-box-4; type:value; for:<paint-box>; text:padding-box +spec:css-box-4; type:value; for:<coord-box>; text:padding-box spec:css-shapes-1; type:value; for:<shape-box>; text:padding-box spec:css-shapes-1; type:value; for:shape-outside; text:padding-box spec:css-masking-1; type:value; for:mask-clip; text:padding-box @@ -53,14 +63,19 @@ spec:css-masking-1; type:value; for:mask-origin; text:padding-box spec:fill-stroke-3; type:value; for:fill-origin; text:padding-box spec:fill-stroke-3; type:value; for:stroke-origin; text:padding-box ''padding-box'' +LINE ~542: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE 559: Multiple possible 'maybe' local refs for 'none'. Randomly chose one of them; other instances might get a different random choice. ''none'' LINE 565: Multiple possible 'maybe' local refs for 'none'. Randomly chose one of them; other instances might get a different random choice. ''none'' -LINE ~935: Couldn't find section '/visudet#leading' in spec 'css2': -[[CSS2/visudet#leading]] LINE 1336: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'overflow-control' ID found, skipping MDN features that would target it. WARNING: No 'smooth-scrolling' ID found, skipping MDN features that would target it. WARNING: No 'scrollbar-gutter-property' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.html b/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.html index 6fe7ee7e41..c056b6c1cc 100644 --- a/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-overflow-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Overflow Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-overflow-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1271,7 +1270,7 @@ <h1 class="p-name no-ref" id="title">CSS Overflow Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1297,7 +1296,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-overflow] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-overflow%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>The description of <a class="property css" data-link-type="property" href="#propdef-overflow" id="ref-for-propdef-overflow②">overflow</a> and its longhands is considered significantly more complete and correct than previous working drafts @@ -2132,7 +2131,7 @@ <h3 class="heading settled" data-level="4.2" id="block-ellipsis"><span class="se that would still allow the entire <span id="ref-for-block-overflow-ellipsis③">block overflow ellipsis</span> to fit on the line. For this purpose, <span id="ref-for-soft-wrap-opportunity①">soft wrap opportunities</span> added by <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-overflow-wrap" id="ref-for-propdef-overflow-wrap">overflow-wrap</a> are ignored. If this results in the entire contents of the line box being displaced, - the line box is considered to contain a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS22/visudet.html#strut-element" id="ref-for-strut-element">strut</a>, as defined in <span spec-section="/visudet#leading"></span>. + the line box is considered to contain a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS22/visudet.html#strut-element" id="ref-for-strut-element">strut</a>, as defined in <a href="https://www.w3.org/TR/CSS21/visudet.html#leading"><cite>CSS 2.1</cite> § 10.8.1 Leading and half-leading</a>. Text <a href="https://www.w3.org/TR/css-text-3/#justification">alignment and justification</a> occurs after placement, and measures the inserted <span id="ref-for-block-overflow-ellipsis④">block overflow ellipsis</span> together with the rest of the line’s content.</p> <p class="note" role="note"><span class="marker">Note:</span> Setting the <a data-link-type="dfn" href="#block-overflow-ellipsis" id="ref-for-block-overflow-ellipsis⑤">block overflow ellipsis</a>'s <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-line-height" id="ref-for-propdef-line-height①">line-height</a> to <span class="css">0</span> makes sure that inserting it cannot cause the line’s height to grow, @@ -2367,7 +2366,7 @@ <h3 class="heading settled" data-level="5.2" id="max-lines"><span class="secno"> they can be “page breaks” (breaks across pages <a data-link-type="biblio" href="#biblio-css-page-3" title="CSS Paged Media Module Level 3">[css-page-3]</a>), “column breaks” (breaks across multi-column layout columns <a data-link-type="biblio" href="#biblio-css-multicol-1" title="CSS Multi-column Layout Module Level 1">[css-multicol-1]</a>), or “region breaks” (breaks across any other kind of CSS-induced <a data-link-type="dfn" href="https://drafts.csswg.org/css-break-4/#fragmentation-container" id="ref-for-fragmentation-container④">fragmentation containers</a>). - <p>If an implementation supports neither <a data-link-type="biblio" href="#biblio-css-regions-1" title="CSS Regions Module Level 1">[CSS-REGIONS-1]</a> nor <a href="https://drafts.csswg.org/css-overflow-4/#fragmentation"><cite>CSS Overflow 4</cite> §  Appendix A: Redirection of Overflow</a>, + <p>If an implementation supports neither <a data-link-type="biblio" href="#biblio-css-regions-1" title="CSS Regions Module Level 1">[CSS-REGIONS-1]</a> nor <a href="https://www.w3.org/TR/css-overflow-4/#fragmentation"><cite>CSS Overflow 4</cite> § A Redirection of Overflow</a>, then it will have had no occasion yet to run into that kind of breaks, and this will be an addition. However the addition does not involve bringing over any of the <span title="CSS Regions Module Level 1">[CSS-REGIONS-1]</span> functionality. @@ -2918,7 +2917,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] @@ -2930,13 +2929,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] @@ -2976,22 +2975,22 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-transforms">[CSS3-TRANSFORMS] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-epub-33">[EPUB-33] - <dd>Matt Garrish; Ivan Herman; Dave Cramer. <a href="https://w3c.github.io/epub-specs/epub33/core/"><cite>EPUB 3.3</cite></a>. URL: <a href="https://w3c.github.io/epub-specs/epub33/core/">https://w3c.github.io/epub-specs/epub33/core/</a> + <dd>Ivan Herman; Matt Garrish; Dave Cramer. <a href="https://w3c.github.io/epub-specs/epub33/core/"><cite>EPUB 3.3</cite></a>. URL: <a href="https://w3c.github.io/epub-specs/epub33/core/">https://w3c.github.io/epub-specs/epub33/core/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-contain-1">[CSS-CONTAIN-1] <dd>Tab Atkins Jr.; Florian Rivoal. <a href="https://drafts.csswg.org/css-contain-1/"><cite>CSS Containment Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-1/">https://drafts.csswg.org/css-contain-1/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-regions-1">[CSS-REGIONS-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-regions/"><cite>CSS Regions Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-regions/">https://drafts.csswg.org/css-regions/</a> <dt id="biblio-css-ui-3">[CSS-UI-3] @@ -3183,55 +3182,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content Discussions in the <a href="https://lists.w3.org/Archives/Public/www-style/2018Jul/0030.html">Sydney F2F meeting</a> seemed to generally converge on this, but other possibilities were raised. <a href="https://github.com/w3c/csswg-drafts/issues/2971">[Issue #2971]</a> <a class="issue-return" href="#issue-02656350" title="Jump to section">↵</a></div> </div> - <details class="mdn-anno unpositioned" data-anno-for="webkit-line-clamp"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp" title="The -webkit-line-clamp CSS property allows limiting of the contents of a block container to the specified number of lines.">-webkit-line-clamp</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>5+</span></span><span class="chrome yes"><span>Chrome</span><span>6+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> - <details class="mdn-anno unpositioned" data-anno-for="logical"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-block" title="The overflow-block CSS property sets what shows when content overflows the block start and block end edges of a box. This may be nothing, a scroll bar, or the overflow content.">overflow-block</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>69+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-inline" title="The overflow-inline CSS property sets what shows when content overflows the inline start and end edges of a box. This may be nothing, a scroll bar, or the overflow content.">overflow-inline</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>69+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="overflow-clip-margin"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-margin" title="The overflow-clip-margin CSS property determines how far outside its bounds an element with overflow: clip may be painted before being clipped.">overflow-clip-margin</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-margin" title="The overflow-clip-margin CSS property determines how far outside its bounds an element with overflow: clip may be painted before being clipped. The bound defined by this property is called the overflow clip edge of the box.">overflow-clip-margin</a></p> <p class="less-than-two-engines-text">In no current engines.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> @@ -3247,7 +3201,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="overflow-properties"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x" title="The overflow-x CSS property sets what shows when content overflows a block-level element&apos;s left and right edges. This may be nothing, a scroll bar, or the overflow content.">overflow-x</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x" title="The overflow-x CSS property sets what shows when content overflows a block-level element&apos;s left and right edges. This may be nothing, a scroll bar, or the overflow content. This property may also be set by using the overflow shorthand property.">overflow-x</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -3260,7 +3214,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y" title="The overflow-y CSS property sets what shows when content overflows a block-level element&apos;s top and bottom edges. This may be nothing, a scroll bar, or the overflow content.">overflow-y</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y" title="The overflow-y CSS property sets what shows when content overflows a block-level element&apos;s top and bottom edges. This may be nothing, a scroll bar, or the overflow content. This property may also be set by using the overflow shorthand property.">overflow-y</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -3276,7 +3230,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="propdef-overflow"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow" title="The overflow CSS shorthand property sets the desired behavior for an element&apos;s overflow — i.e. when an element&apos;s content is too big to fit in its block formatting context — in both directions.">overflow</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow" title="The overflow CSS shorthand property sets the desired behavior when content does not fit in the parent element box (overflows) in the horizontal and/or vertical direction.">overflow</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -3288,6 +3242,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android yes"><span>Firefox for Android</span><span>4+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow_value" title="The <overflow> enumerated value type represents the keyword values for the overflow-block, overflow-inline, overflow-x, and overflow-y longhand properties and the overflow shorthand property. These properties apply to block containers, flex containers, and grid containers.">overflow_value</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>7+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>4+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="text-overflow"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -3307,8 +3274,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="text-overflow" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=text-overflow">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=text-overflow">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -4027,6 +3994,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { +"https://drafts.csswg.org/css-box-4/#typedef-visual-box": "Expands to: border-box | content-box | padding-box", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; diff --git a/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.console.txt index fbcd04cd2d..6fae5faa48 100644 --- a/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.console.txt @@ -97,8 +97,4 @@ LINT: Your document appears to use tabs to indent, but line 1451 starts with spa LINT: Your document appears to use tabs to indent, but line 1452 starts with spaces. LINT: Your document appears to use tabs to indent, but line 1455 starts with spaces. LINE 1463: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. -WARNING: No 'webkit-line-clamp' ID found, skipping MDN features that would target it. -WARNING: No 'logical' ID found, skipping MDN features that would target it. -WARNING: No 'overflow-clip-margin' ID found, skipping MDN features that would target it. -WARNING: No 'propdef-overflow' ID found, skipping MDN features that would target it. -WARNING: No 'smooth-scrolling' ID found, skipping MDN features that would target it. +WARNING: No 'propdef--webkit-line-clamp' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.html b/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.html index e6e950c0fa..8d62eec061 100644 --- a/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-overflow-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Overflow Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-overflow-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -763,230 +762,6 @@ margin-bottom: 0; } </style> -<style>/* Boilerplate: style-mdn-anno */ -:root { - --mdn-bg: #EEE; - --mdn-shadow: #999; - --mdn-nosupport-text: #ccc; - --mdn-pass: green; - --mdn-fail: red; -} -@media (prefers-color-scheme: dark) { - :root { - --mdn-bg: #222; - --mdn-shadow: #444; - --mdn-nosupport-text: #666; - --mdn-pass: #690; - --mdn-fail: #d22; - } -} -.mdn-anno { - background: var(--mdn-bg, #EEE); - border-radius: .25em; - box-shadow: 0 0 3px var(--mdn-shadow, #999); - color: var(--text, black); - font: 1em sans-serif; - hyphens: none; - max-width: min-content; - overflow: hidden; - padding: 0.2em; - position: absolute; - right: 0.3em; - top: auto; - white-space: nowrap; - word-wrap: normal; - z-index: 8; -} -.mdn-anno.unpositioned { - display: none; -} -.mdn-anno.overlapping-main { - opacity: .2; - transition: opacity .1s; -} -.mdn-anno[open] { - opacity: 1; - z-index: 9; - min-width: 9em; -} -.mdn-anno:hover { - opacity: 1; - outline: var(--text, black) 1px solid; -} -.mdn-anno > summary { - font-weight: normal; - text-align: right; - cursor: pointer; - display: block; -} -.mdn-anno > summary > .less-than-two-engines-flag { - color: var(--mdn-fail); - padding-right: 2px; -} -.mdn-anno > summary > .all-engines-flag { - color: var(--mdn-pass); - padding-right: 2px; -} -.mdn-anno > summary > span { - color: #fff; - background-color: #000; - font-weight: normal; - font-family: zillaslab, Palatino, "Palatino Linotype", serif; - padding: 2px 3px 0px 3px; - line-height: 1.3em; - vertical-align: top; -} -.mdn-anno > .feature { - margin-top: 20px; -} -.mdn-anno > .feature:not(:first-of-type) { - border-top: 1px solid #999; - margin-top: 6px; - padding-top: 2px; -} -.mdn-anno > .feature > .less-than-two-engines-text { - color: var(--mdn-fail); -} -.mdn-anno > .feature > .all-engines-text { - color: var(--mdn-pass); -} -.mdn-anno > .feature > p { - font-size: .75em; - margin-top: 6px; - margin-bottom: 0; -} -.mdn-anno > .feature > p + p { - margin-top: 3px; -} -.mdn-anno > .feature > .support { - display: block; - font-size: 0.6em; - margin: 0; - padding: 0; - margin-top: 2px; -} -.mdn-anno > .feature > .support + div { - padding-top: 0.5em; -} -.mdn-anno > .feature > .support > hr { - display: block; - border: none; - border-top: 1px dotted #999; - padding: 3px 0px 0px 0px; - margin: 2px 3px 0px 3px; -} -.mdn-anno > .feature > .support > hr::before { - content: ""; -} -.mdn-anno > .feature > .support > span { - padding: 0.2em 0; - display: block; - display: table; -} -.mdn-anno > .feature > .support > span.no { - color: var(--mdn-nosupport-text); - filter: grayscale(100%); -} -.mdn-anno > .feature > .support > span.no::before { - opacity: 0.5; -} -.mdn-anno > .feature > .support > span:first-of-type { - padding-top: 0.5em; -} -.mdn-anno > .feature > .support > span > span { - padding: 0 0.5em; - display: table-cell; -} -.mdn-anno > .feature > .support > span > span:first-child { - width: 100%; -} -.mdn-anno > .feature > .support > span > span:last-child { - width: 100%; - white-space: pre; - padding: 0; -} -.mdn-anno > .feature > .support > span::before { - content: ' '; - display: table-cell; - min-width: 1.5em; - height: 1.5em; - background: no-repeat center center; - background-size: contain; - text-align: right; - font-size: 0.75em; - font-weight: bold; -} -.mdn-anno > .feature > .support > .chrome_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); -} -.mdn-anno > .feature > .support > .firefox_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); -} -.mdn-anno > .feature > .support > .chrome::before { - background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); -} -.mdn-anno > .feature > .support > .edge_blink::before { - background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); -} -.mdn-anno > .feature > .support > .edge::before { - background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); -} -.mdn-anno > .feature > .support > .firefox::before { - background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); -} -.mdn-anno > .feature > .support > .ie::before { - background-image: url(https://resources.whatwg.org/browser-logos/ie.png); -} -.mdn-anno > .feature > .support > .safari_ios::before { - background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); -} -.mdn-anno > .feature > .support > .nodejs::before { - background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); -} -.mdn-anno > .feature > .support > .opera_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); -} -.mdn-anno > .feature > .support > .opera::before { - background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); -} -.mdn-anno > .feature > .support > .safari::before { - background-image: url(https://resources.whatwg.org/browser-logos/safari.png); -} -.mdn-anno > .feature > .support > .samsunginternet_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); -} -.mdn-anno > .feature > .support > .webview_android::before { - background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); -} -.name-slug-mismatch { - color: red; -} -.caniuse-status:hover { - z-index: 9; -} -/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; -.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { - right: -6.7em; -} -.h-entry p + .mdn-anno { - margin-top: 0; -} - h2 + .mdn-anno.after { - margin: -48px 0 0 0; -} - h3 + .mdn-anno.after { - margin: -46px 0 0 0; -} - h4 + .mdn-anno.after { - margin: -42px 0 0 0; -} - h5 + .mdn-anno.after { - margin: -40px 0 0 0; -} - h6 + .mdn-anno.after { - margin: -40px 0 0 0; -} -</style> <style>/* Boilerplate: style-ref-hints */ :root { --ref-hint-bg: #ddd; @@ -1363,7 +1138,7 @@ <h1 class="p-name no-ref" id="title">CSS Overflow Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1385,7 +1160,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-overflow] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-overflow%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2878,7 +2653,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -2914,7 +2689,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-select">[SELECT] <dd>Tantek Çelik; et al. <a href="https://drafts.csswg.org/selectors-3/"><cite>Selectors Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/selectors-3/">https://drafts.csswg.org/selectors-3/</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> @@ -2927,7 +2702,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css3-marquee">[CSS3-MARQUEE] <dd>Bert Bos. <a href="https://www.w3.org/TR/css3-marquee/"><cite>CSS Marquee Module Level 3</cite></a>. 14 October 2014. NOTE. URL: <a href="https://www.w3.org/TR/css3-marquee/">https://www.w3.org/TR/css3-marquee/</a> <dt id="biblio-css3gcpm">[CSS3GCPM] - <dd>Dave Cramer. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> + <dd>Rachel Andrew; Mike Bremford. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -3129,70 +2904,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content it should probably cause <a class="property css" data-link-type="property" href="#propdef-continue">continue</a> to compute to <a class="css" data-link-type="maybe" href="#valdef-continue-discard">discard</a> so that you only need to reach for one property rather than 2 to get that effect. <a class="issue-return" href="#issue-9eb7883d" title="Jump to section">↵</a></div> </div> - <details class="mdn-anno unpositioned" data-anno-for="overflow-properties"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x" title="The overflow-x CSS property sets what shows when content overflows a block-level element&apos;s left and right edges. This may be nothing, a scroll bar, or the overflow content.">overflow-x</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> - <hr> - <span class="opera yes"><span>Opera</span><span>9.5+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>5+</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y" title="The overflow-y CSS property sets what shows when content overflows a block-level element&apos;s top and bottom edges. This may be nothing, a scroll bar, or the overflow content.">overflow-y</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> - <hr> - <span class="opera yes"><span>Opera</span><span>9.5+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>5+</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> - <details class="mdn-anno unpositioned" data-anno-for="scrollbar-gutter-property"> - <summary><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter" title="The scrollbar-gutter CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn&apos;t needed.">scrollbar-gutter</a></p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>97+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>94+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>94+</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> - <details class="mdn-anno unpositioned" data-anno-for="text-overflow"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow" title="The text-overflow CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis (&apos;…&apos;), or display a custom string.">text-overflow</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="safari yes"><span>Safari</span><span>1.3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> - <hr> - <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>11+</span></span> - </div> - </div> - </details> <details class="caniuse-status unpositioned" data-anno-for="text-overflow" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=text-overflow">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=text-overflow">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.console.txt index e69de29bb2..13b5e57a49 100644 --- a/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.console.txt @@ -0,0 +1 @@ +LINE 269: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.html b/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.html index d1073998d3..c8944dd2b2 100644 --- a/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-overscroll-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Overscroll Behavior Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-overscroll-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1071,7 +1070,7 @@ <h1 class="p-name no-ref" id="title">CSS Overscroll Behavior Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1096,7 +1095,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-overscroll] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-overscroll%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1621,7 +1620,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -1634,7 +1633,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1670,7 +1669,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <details class="mdn-anno unpositioned" data-anno-for="overscroll-behavior-properties"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior" title="The overscroll-behavior CSS property sets what a browser does when reaching the boundary of a scrolling area. It&apos;s a shorthand for overscroll-behavior-x and overscroll-behavior-y.">overscroll-behavior</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior" title="The overscroll-behavior CSS property sets what a browser does when reaching the boundary of a scrolling area.">overscroll-behavior</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>59+</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>63+</span></span> diff --git a/tests/github/w3c/csswg-drafts/css-page-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-page-3/Overview.console.txt index 8bc46958b7..63bc6104a7 100644 --- a/tests/github/w3c/csswg-drafts/css-page-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-page-3/Overview.console.txt @@ -2,48 +2,32 @@ LINT: Your document appears to use tabs to indent, but line 692 starts with spac LINT: Your document appears to use tabs to indent, but line 693 starts with spaces. LINE ~261: No 'property' refs found for 'size'. 'size' -LINE ~387: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE 1006: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' -LINE ~1008: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE ~1030: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~1030: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~1030: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1030: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~1176: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1176: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~1178: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1178: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~1186: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1186: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~1191: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~1197: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' +LINE ~1245: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~1245: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~1248: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~1248: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' LINE ~1386: No 'property' refs found for 'size'. 'size' -LINE ~1483: No 'property' refs found for 'counter-increment' with spec 'css2'. -'counter-increment' -LINE ~1502: No 'property' refs found for 'counter-increment' with spec 'css2'. -'counter-increment' -LINE ~1502: No 'property' refs found for 'counter-reset' with spec 'css2'. -'counter-reset' -LINE ~1537: No 'property' refs found for 'counter-reset' with spec 'css2'. -'counter-reset' -LINE ~1537: No 'property' refs found for 'counter-increment' with spec 'css2'. -'counter-increment' LINE ~1650: No 'property' refs found for 'size'. 'size' LINE ~1656: No 'property' refs found for 'size'. @@ -54,8 +38,6 @@ LINE ~1683: No 'property' refs found for 'size'. 'size' LINE ~1756: No 'property' refs found for 'size'. 'size' -LINE ~1812: No 'property' refs found for 'margin' with spec 'css2'. -'margin' LINE ~1867: No 'property' refs found for 'page-orientation'. 'page-orientation' LINE ~1947: No 'property' refs found for 'marks'. diff --git a/tests/github/w3c/csswg-drafts/css-page-3/Overview.html b/tests/github/w3c/csswg-drafts/css-page-3/Overview.html index 75cc75f8d9..5e5ddedd83 100644 --- a/tests/github/w3c/csswg-drafts/css-page-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-page-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Paged Media Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-page-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -992,7 +991,7 @@ <h1 class="p-name no-ref" id="title">CSS Paged Media Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1014,7 +1013,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-page] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-page%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1300,14 +1299,14 @@ <h3 class="heading settled" data-level="3.1" id="painting"><span class="secno">3 or page area as usual.</p> <p>With respect to the page-margin boxes, the document canvas, page borders, and all of the document contents - are treated as a single element with a <code>z-index</code> value of <span class="css">0</span> that establishes a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>: + are treated as a single element with a <code>z-index</code> value of <span class="css">0</span> that establishes a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>: the page-margin boxes never interleave with parts of the document content or between the content and the canvas. They may only paint in front of the document content or behind the document canvas. The page background is always painted underneath everything else.</p> - <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property applies to page-margin boxes. - Since the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> property does not apply to page-margin boxes, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> always affects page-margin boxes as if they were positioned elements + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> property applies to page-margin boxes. + Since the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> property does not apply to page-margin boxes, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index①">z-index</a> always affects page-margin boxes as if they were positioned elements regardless of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position①">position</a> property’s value. Each page-margin boxes always establishes a stacking context.</p> <p>The default painting order, @@ -1332,7 +1331,7 @@ <h3 class="heading settled" data-level="3.1" id="painting"><span class="secno">3 <li><a class="css" data-link-type="maybe" href="#at-ruledef-left-top" id="ref-for-at-ruledef-left-top">@left-top</a> </ol> <p class="note" role="note"> Start with <a class="css" data-link-type="maybe" href="#at-ruledef-top-left-corner" id="ref-for-at-ruledef-top-left-corner①">@top-left-corner</a>, then go clockwise. - This order is arbitrary but can be overridden with <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index②">z-index</a>. + This order is arbitrary but can be overridden with <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index②">z-index</a>. It only has a visible effect when page-margin boxes overlap, which should not happen in most cases. </p> <h3 class="heading settled" data-level="3.2" id="content-outside-box"><span class="secno">3.2. </span><span class="content">Content outside the page box</span><a class="self-link" href="#content-outside-box"></a></h3> @@ -1361,12 +1360,12 @@ <h3 class="heading settled" data-level="3.2" id="content-outside-box"><span clas background and/or borders and/or page-margin box content <em>is</em> a content-empty page. <p class="note" role="note">Note, however, that generating a small number of empty page - boxes is sometimes necessary to honor the forced-break values for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before">break-before</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-4/#propdef-break-after" id="ref-for-propdef-break-after">break-after</a>. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <a data-link-type="biblio" href="#biblio-css-break-3" title="CSS Fragmentation Module Level 3">[CSS-BREAK-3]</a> </p> + boxes is sometimes necessary to honor the forced-break values for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-3/#propdef-break-before" id="ref-for-propdef-break-before">break-before</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-break-4/#propdef-break-after" id="ref-for-propdef-break-after">break-after</a>. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <a data-link-type="biblio" href="#biblio-css-break-3" title="CSS Fragmentation Module Level 3">[CSS-BREAK-3]</a> </p> <li> Authors <em class="RFC2119">SHOULD NOT</em> position elements in inconvenient locations just to avoid rendering them. Instead: <ul> - <li>To suppress box generation entirely, set the <a class="property css" data-link-type="property">display</a> property to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-none" id="ref-for-valdef-display-none">none</a>. + <li>To suppress box generation entirely, set the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display</a> property to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-none" id="ref-for-valdef-display-none">none</a>. <li>To make a box invisible, set the <span class="property"><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-4/#propdef-visibility" id="ref-for-propdef-visibility">visibility</a></span> property. </ul> <li>This specification does not define how boxes positioned outside the page @@ -1823,8 +1822,8 @@ <h3 class="heading settled" data-level="5.2" id="populating-margin-boxes"><span <p>As with the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#selectordef-before" id="ref-for-selectordef-before">:before</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#selectordef-after" id="ref-for-selectordef-after">:after</a> pseudo-elements, a specified <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-content-3/#propdef-content" id="ref-for-propdef-content">content: normal</a> on a page-margin box computes to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-content-3/#valdef-content-none" id="ref-for-valdef-content-none">none</a>. A page-margin box is <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="generated">generated</dfn> if and only if the computed value of its <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-content-3/#propdef-content" id="ref-for-propdef-content①">content</a> property is not <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-content-3/#valdef-content-none" id="ref-for-valdef-content-none①">none</a>. -Otherwise, no box is generated, as for elements with <a class="css" data-link-type="propdesc">display: none</a>.</p> - <p class="note" role="note"> The <a class="property css" data-link-type="property">display</a> property does not apply to page-margin boxes. </p> +Otherwise, no box is generated, as for elements with <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display①">display: none</a>.</p> + <p class="note" role="note"> The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display②">display</a> property does not apply to page-margin boxes. </p> <div class="example" id="example-ab340c9c"> <a class="self-link" href="#example-ab340c9c"></a> The following style sheet creates a green box in each corner of the page except the bottom-left corner. @@ -1840,11 +1839,11 @@ <h3 class="heading settled" data-level="5.3" id="margin-dimension"><span class=" <p>The width and height of each page-margin box is determined by the rules below. These rules define the equivalent of CSS2.1 Sections 10.3 and 10.6 for page-margin boxes.</p> - <p>The rules for applying <a class="property css" data-link-type="property">min-height</a>, <a class="property css" data-link-type="property">max-height</a>, <a class="property css" data-link-type="property">min-width</a>, and <a class="property css" data-link-type="property">max-width</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> do apply to page-margin boxes and may imply + <p>The rules for applying <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> do apply to page-margin boxes and may imply a recalculation of the width, height, and/or margins if the dimensions resulting from the specified <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a> or <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a> violate their constraints. -If the UA does not support the <a class="property css" data-link-type="property">min-height</a> or <a class="property css" data-link-type="property">min-width</a> properties -then it must behave as if <a class="property css" data-link-type="property">min-height</a> and <a class="property css" data-link-type="property">min-width</a> were always zero.</p> +If the UA does not support the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width</a> properties +then it must behave as if <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height②">min-height</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a> were always zero.</p> <h4 class="heading settled" data-level="5.3.1" id="margin-box-terms"><span class="secno">5.3.1. </span><span class="content"> Page-Margin Box Layout Terminology</span><span id="max-margin-dimension"></span><a class="self-link" href="#margin-box-terms"></a></h4> <p>In addition to the box model definitions in CSS2.1 <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, and the sizing terms in CSS Sizing <a data-link-type="biblio" href="#biblio-css-sizing-3" title="CSS Box Sizing Module Level 3">[CSS-SIZING-3]</a>, @@ -1939,20 +1938,20 @@ <h5 class="heading settled" data-level="5.3.2.2" id="variable-auto-sizing"><span <li> Then, resolve any <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto⑤">auto</a> widths of the side boxes (A and C) by setting that box’s outer width to <code>(<a data-link-type="dfn" href="#available-width" id="ref-for-available-width⑤">available width</a> − used <a data-link-type="dfn" href="#outer-width" id="ref-for-outer-width④">outer width</a>s of B) ÷ 2</code> </ol> - <h5 class="heading settled" data-level="5.3.2.3" id="variable-minmax"><span class="secno">5.3.2.3. </span><span class="content">Handling <a class="property css" data-link-type="property">min-width</a> and <a class="property css" data-link-type="property">max-width</a></span><a class="self-link" href="#variable-minmax"></a></h5> - <p>The <a class="property css" data-link-type="property">min-width</a> and <a class="property css" data-link-type="property">max-width</a> properties <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> apply to page-margin + <h5 class="heading settled" data-level="5.3.2.3" id="variable-minmax"><span class="secno">5.3.2.3. </span><span class="content">Handling <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width③">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width①">max-width</a></span><a class="self-link" href="#variable-minmax"></a></h5> + <p>The <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width④">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width</a> properties <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> apply to page-margin boxes in the variable dimension like on normal elements, except that the three boxes on the same side are considered together.</p> <p>More precisely:</p> <ol> <li> The tentative used widths are calculated - (without <a class="property css" data-link-type="property">min-width</a> and <a class="property css" data-link-type="property">max-width</a>) following the rules under <a href="#variable-auto-sizing">§ 5.3.2.2 Resolving auto widths</a>. + (without <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑤">min-width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width③">max-width</a>) following the rules under <a href="#variable-auto-sizing">§ 5.3.2.2 Resolving auto widths</a>. <li> If the tentative used width of any of the three boxes - is greater than <a class="property css" data-link-type="property">max-width</a>, the rules above are applied again, - but this time using the computed value of <a class="property css" data-link-type="property">max-width</a> as the computed value for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width④">width</a>. + is greater than <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width④">max-width</a>, the rules above are applied again, + but this time using the computed value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width⑤">max-width</a> as the computed value for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width④">width</a>. <li> If the resulting width of any of the three boxes - is smaller than <a class="property css" data-link-type="property">min-width</a>, the rules above are applied again, - but this time using the value of <a class="property css" data-link-type="property">min-width</a> as the computed value for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width⑤">width</a>. + is smaller than <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑥">min-width</a>, the rules above are applied again, + but this time using the value of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width⑦">min-width</a> as the computed value for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width⑤">width</a>. </ol> <h5 class="heading settled" data-level="5.3.2.4" id="variable-position"><span class="secno">5.3.2.4. </span><span class="content">Positioning</span><a class="self-link" href="#variable-position"></a></h5> <p>Once the dimensions of the boxes are determined, @@ -2133,7 +2132,7 @@ <h2 class="heading settled" data-level="6" id="page-properties"><span class="sec <h3 class="heading settled" data-level="6.1" id="page-based-counters"><span class="secno">6.1. </span><span class="content"> Page-based counters</span><a class="self-link" href="#page-based-counters"></a></h3> <p>Counters can be defined and controlled within an <a class="css" data-link-type="maybe" href="#at-ruledef-page" id="ref-for-at-ruledef-page①⓪">@page</a> rule, and used as content in page-margin boxes. This is useful for maintaining a page count.</p> - <p>A <a class="property css" data-link-type="property">counter-increment</a> within either a page or margin context causes the counter + <p>A <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" id="ref-for-propdef-counter-increment">counter-increment</a> within either a page or margin context causes the counter to increment with the generation of each page box.</p> <p>If a counter is reset or incremented within the page context, it is in scope for all page-margin boxes and obscures all counters of the same name within the @@ -2150,9 +2149,9 @@ <h3 class="heading settled" data-level="6.1" id="page-based-counters"><span clas the calculation of the counter’s value.</p> <p>A counter named <span class="css">page</span> is automatically created and incremented by 1 on every page of the document, - unless the <a class="property css" data-link-type="property">counter-increment</a> property in the <a data-link-type="dfn" href="#page-context" id="ref-for-page-context③">page context</a> explicitly specifies a different increment for the <span class="css">page</span> counter. + unless the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" id="ref-for-propdef-counter-increment①">counter-increment</a> property in the <a data-link-type="dfn" href="#page-context" id="ref-for-page-context③">page context</a> explicitly specifies a different increment for the <span class="css">page</span> counter. The implied <span class="css">page</span> counter is a real counter, - and can be directly affected using the <a class="property css" data-link-type="property">counter-increment</a> and <a class="property css" data-link-type="property">counter-reset</a> properties + and can be directly affected using the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" id="ref-for-propdef-counter-increment②">counter-increment</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset" id="ref-for-propdef-counter-reset">counter-reset</a> properties when named explicitly in those properties. It can also be used in the 'counter()' and 'counters()' function forms.</p> <div class="example" id="example-13051aa4"> @@ -2177,7 +2176,7 @@ <h3 class="heading settled" data-level="6.1" id="page-based-counters"><span clas </div> <p>Additionally, a counter named <span class="css">pages</span> is automatically created by the UA. Its value is always the total number of pages in the document. (In continuous - media this is always 1.) The value of <span class="css">pages</span> cannot be manipulated: while <a class="property css" data-link-type="property">counter-reset</a> and <a class="property css" data-link-type="property">counter-increment</a> statements that set it are valid, they + media this is always 1.) The value of <span class="css">pages</span> cannot be manipulated: while <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset" id="ref-for-propdef-counter-reset①">counter-reset</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" id="ref-for-propdef-counter-increment③">counter-increment</a> statements that set it are valid, they have no effect.</p> <p>In all other respects, page-associated counters behave as described in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, <a href="https://www.w3.org/TR/CSS2/generate.html#scope">Nested Counters and Scope</a> and <a href="https://www.w3.org/TR/CSS2/syndata.html#counter">Counters</a>.</p> <h3 class="heading settled" data-level="6.2" id="margin-text-alignment"><span class="secno">6.2. </span><span class="content"> Page-margin boxes and default values</span><a class="self-link" href="#margin-text-alignment"></a></h3> @@ -2314,7 +2313,7 @@ <h3 class="heading settled" data-level="7.1" id="page-size-prop"><span class="se <div class="issue" id="issue-59a903e8"> <a class="self-link" href="#issue-59a903e8"></a> It would be useful if media queries could respond at least to sizes specified on an unqualified @page. - <p>Another option could be to do like <span class="css">@viewport</span> rules <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Device Adaptation Module Level 1">[CSS-DEVICE-ADAPT]</a>: + <p>Another option could be to do like <span class="css">@viewport</span> rules <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Viewport Module Level 1">[CSS-DEVICE-ADAPT]</a>: First apply <a class="css" data-link-type="maybe" href="#at-ruledef-page" id="ref-for-at-ruledef-page①③">@page</a> rules (matching which selectors?), using the UA’s default page size for Media Queries and <a href="https://www.w3.org/TR/css3-values/#viewport-relative-lengths">viewport-percentage lengths</a> <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. The resulting page size is the "base page size". @@ -2397,7 +2396,7 @@ <h3 class="heading settled" data-level="7.1" id="page-size-prop"><span class="se </div> <div class="example" id="example-e0739c4c"> <a class="self-link" href="#example-e0739c4c"></a> In the following example, the outer edges of the page box will align with the - page. The percentage value on the <span class="property"><a class="property css" data-link-type="property">margin</a></span> property is relative to the page size so if the page sheet dimensions are 210mm + page. The percentage value on the <span class="property"><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin">margin</a></span> property is relative to the page size so if the page sheet dimensions are 210mm x 297mm (i.e., A4), the margins are 21mm and 29.7mm. Assuming there are no page borders or padding set in the UA default style sheet, the resulting page area is 189mm by 367.3mm (210mm-21mm by 297mm-29.7mm). @@ -3494,14 +3493,27 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d97c40f4">principal writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a121cf09">counter-increment</span> + <li><span class="dfn-paneled" id="402583a7">counter-reset</span> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="5515c98f">margin</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="689ef56c">:after</span> <li><span class="dfn-paneled" id="74a27486">:before</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS4BACKGROUND]</a> defines the following terms: @@ -3519,19 +3531,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="32b9b591">&lt;compound-selector></span> </ul> - <li> - <a data-link-type="biblio">[SVG2]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> - </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Ian Kilpatrick. <a href="https://drafts.csswg.org/css-anchor-position-1/"><cite>CSS Anchor Positioning</cite></a>. URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-3">[CSS-BOX-3] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-3/"><cite>CSS Box Model Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-3/">https://drafts.csswg.org/css-box-3/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] @@ -3545,11 +3552,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -3586,17 +3593,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Tantek Çelik; et al. <a href="https://drafts.csswg.org/selectors-3/"><cite>Selectors Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/selectors-3/">https://drafts.csswg.org/selectors-3/</a> <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> - <dt id="biblio-svg2">[SVG2] - <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-device-adapt">[CSS-DEVICE-ADAPT] - <dd>Rune Lillesveen; Florian Rivoal; Matt Rakow. <a href="https://drafts.csswg.org/css-device-adapt/"><cite>CSS Device Adaptation Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-device-adapt/">https://drafts.csswg.org/css-device-adapt/</a> + <dd>Florian Rivoal; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/css-viewport/"><cite>CSS Viewport Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-viewport/">https://drafts.csswg.org/css-viewport/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css3gcpm">[CSS3GCPM] - <dd>Dave Cramer. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> + <dd>Rachel Andrew; Mike Bremford. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> <dt id="biblio-jlreq">[JLREQ] <dd>Hiroyuki Chiba; et al. <a href="https://w3c.github.io/jlreq/"><cite>Requirements for Japanese Text Layout 日本語組版処理の要件(日本語版)</cite></a>. URL: <a href="https://w3c.github.io/jlreq/">https://w3c.github.io/jlreq/</a> </dl> @@ -3669,7 +3674,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> It would be useful if media queries could respond at least to sizes specified on an unqualified @page. - <p>Another option could be to do like <span class="css">@viewport</span> rules <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Device Adaptation Module Level 1">[CSS-DEVICE-ADAPT]</a>: + <p>Another option could be to do like <span class="css">@viewport</span> rules <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Viewport Module Level 1">[CSS-DEVICE-ADAPT]</a>: First apply <a class="css" data-link-type="maybe" href="#at-ruledef-page">@page</a> rules (matching which selectors?), using the UA’s default page size for Media Queries and <a href="https://www.w3.org/TR/css3-values/#viewport-relative-lengths">viewport-percentage lengths</a> <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. The resulting page size is the "base page size". @@ -3679,6 +3684,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <a class="issue-return" href="#issue-59a903e8" title="Jump to section">↵</a> </div> </div> + <details class="mdn-anno unpositioned" data-anno-for="page-orientation-prop"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@page/page-orientation" title="The page-orientation CSS descriptor for the @page at-rule controls the rotation of a printed page. It handles the flow of content across pages when the orientation of a page is changed. This behavior differs from the size descriptor in that a user can define the direction in which to rotate the page.">@page/page-orientation</a></p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="page-size-prop"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> @@ -3709,9 +3729,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@page/size" title="The size CSS at-rule descriptor, used with the @page at-rule, defines the size and orientation of the box which is used to represent a page. Most of the time, this size corresponds to the target size of the printed page if applicable.">@page/size</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3722,11 +3741,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="at-page-rule"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@page" title="The @page at-rule is a CSS at-rule used to modify different aspects of a printed page property. It targets and modifies the page&apos;s dimensions, page orientation, and margins. The @page at-rule can be used to target all pages in a print-out, or even specific ones using its various pseudo-classes.">@page</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>6+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3784,6 +3804,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="using-named-pages"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/page" title="The page CSS property is used to specify the named page, a specific type of page defined by the @page at-rule.">page</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>110+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>85+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>85+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="left-right-first"> <summary><span>MDN</span></summary> <div class="feature"> @@ -4039,21 +4075,24 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"3.3. Page Progression"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"7.1.2. \nRotating The Printed Page: the page-orientation property"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2461"}],"title":"7.5. \nPositioning the page box on the sheet"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3b1682d5": {"dfnID":"3b1682d5","dfnText":"background-origin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-origin"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-origin"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"},{"id":"ref-for-propdef-min-height\u2460"},{"id":"ref-for-propdef-min-height\u2461"}],"title":"5.3. Computing Page-margin Box Dimensions"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"402583a7": {"dfnID":"402583a7","dfnText":"counter-reset","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-counter-reset"},{"id":"ref-for-propdef-counter-reset\u2460"}],"title":"6.1. \nPage-based counters"}],"url":"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset"}, "41edb3c8": {"dfnID":"41edb3c8","dfnText":"recto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-break-before-recto"}],"title":"4.2.3. \nBlank-page pseudo-class: :blank"}],"url":"https://drafts.csswg.org/css-break-4/#valdef-break-before-recto"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"6.2. \nPage-margin boxes and default values"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "49a5f65f": {"dfnID":"49a5f65f","dfnText":"padding-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-top"},{"id":"ref-for-propdef-padding-top\u2460"}],"title":"5.3.3. Page-Margin Box Fixed Dimension Computation Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-top"}, "4a16f115": {"dfnID":"4a16f115","dfnText":"border-top-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-width"},{"id":"ref-for-propdef-border-top-width\u2460"}],"title":"5.3.3. Page-Margin Box Fixed Dimension Computation Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"4.3. @page rule grammar"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"5515c98f": {"dfnID":"5515c98f","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"7.1. \nPage size: the size property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, "55e8f5de": {"dfnID":"55e8f5de","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-none"}],"title":"3.2. Content outside the page box"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-none"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"}],"title":"3.3. Page Progression"},{"refs":[{"id":"ref-for-propdef-direction\u2460"}],"title":"7.5. \nPositioning the page box on the sheet"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5c8c0582": {"dfnID":"5c8c0582","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-break-before-left"}],"title":"4.2.3. \nBlank-page pseudo-class: :blank"}],"url":"https://drafts.csswg.org/css-break-4/#valdef-break-before-left"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"3.2. Content outside the page box"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "6501e5b3": {"dfnID":"6501e5b3","dfnText":"white-space","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-white-space"}],"title":"3.2. Content outside the page box"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-white-space"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"5.3. Computing Page-margin Box Dimensions"},{"refs":[{"id":"ref-for-propdef-height\u2460"},{"id":"ref-for-propdef-height\u2461"},{"id":"ref-for-propdef-height\u2462"},{"id":"ref-for-propdef-height\u2463"},{"id":"ref-for-propdef-height\u2464"},{"id":"ref-for-propdef-height\u2465"}],"title":"5.3.3. Page-Margin Box Fixed Dimension Computation Rules"},{"refs":[{"id":"ref-for-propdef-height\u2466"}],"title":"6. \nPage Properties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "68150e76": {"dfnID":"68150e76","dfnText":"*","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-zero-plus"},{"id":"ref-for-mult-zero-plus\u2460"},{"id":"ref-for-mult-zero-plus\u2461"}],"title":"4.3. @page rule grammar"}],"url":"https://drafts.csswg.org/css-values-4/#mult-zero-plus"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"4.3. @page rule grammar"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "689ef56c": {"dfnID":"689ef56c","dfnText":":after","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-after"}],"title":"5.2. Populating page-margin boxes"}],"url":"https://drafts.csswg.org/css2/#selectordef-after"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"3.2. Content outside the page box"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "6e0640e3": {"dfnID":"6e0640e3","dfnText":"verso","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-break-before-verso"}],"title":"4.2.3. \nBlank-page pseudo-class: :blank"}],"url":"https://drafts.csswg.org/css-break-4/#valdef-break-before-verso"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"}],"title":"4.3. @page rule grammar"},{"refs":[{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"7.1. \nPage size: the size property"},{"refs":[{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"}],"title":"7.1.2. \nRotating The Printed Page: the page-orientation property"},{"refs":[{"id":"ref-for-comb-one\u2467"}],"title":"7.2. \nCrop and Registration Marks: the marks property"},{"refs":[{"id":"ref-for-comb-one\u2468"}],"title":"7.3. \nBleed Area: the bleed property"},{"refs":[{"id":"ref-for-comb-one\u2460\u24ea"}],"title":"8.1. \nUsing named pages: page"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "74a27486": {"dfnID":"74a27486","dfnText":":before","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-before"}],"title":"5.2. Populating page-margin boxes"}],"url":"https://drafts.csswg.org/css2/#selectordef-before"}, @@ -4065,13 +4104,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "887c0c5c": {"dfnID":"887c0c5c","dfnText":"inline base direction","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-base-direction"}],"title":"3.3. Page Progression"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction"}, "88dd7551": {"dfnID":"88dd7551","dfnText":"block flow direction","external":true,"refSections":[{"refs":[{"id":"ref-for-block-flow-direction"}],"title":"3.3. Page Progression"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-flow-direction"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"7.1. \nPage size: the size property"},{"refs":[{"id":"ref-for-comb-any\u2460"}],"title":"7.2. \nCrop and Registration Marks: the marks property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"3.2. Content outside the page box"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "938ba280": {"dfnID":"938ba280","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"}],"title":"7.1. \nPage size: the size property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, "991145b0": {"dfnID":"991145b0","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-content-none"},{"id":"ref-for-valdef-content-none\u2460"}],"title":"5.2. Populating page-margin boxes"},{"refs":[{"id":"ref-for-valdef-content-none\u2461"}],"title":"6. \nPage Properties"}],"url":"https://drafts.csswg.org/css-content-3/#valdef-content-none"}, "9b0fa0e9": {"dfnID":"9b0fa0e9","dfnText":"background-clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-clip"},{"id":"ref-for-propdef-background-clip\u2460"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip"}, "9e143e11": {"dfnID":"9e143e11","dfnText":"break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-after"}],"title":"3.2. Content outside the page box"},{"refs":[{"id":"ref-for-propdef-break-after\u2460"}],"title":"4.2.3. \nBlank-page pseudo-class: :blank"}],"url":"https://drafts.csswg.org/css-break-4/#propdef-break-after"}, "9f49bc74": {"dfnID":"9f49bc74","dfnText":"min-content block size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content-block-size"}],"title":"5.3.1. \nPage-Margin Box Layout Terminology"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content-block-size"}, +"a121cf09": {"dfnID":"a121cf09","dfnText":"counter-increment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-counter-increment"},{"id":"ref-for-propdef-counter-increment\u2460"},{"id":"ref-for-propdef-counter-increment\u2461"},{"id":"ref-for-propdef-counter-increment\u2462"}],"title":"6.1. \nPage-based counters"}],"url":"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment"}, "a5010638": {"dfnID":"a5010638","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-size-width"}],"title":"7.1. \nPage size: the size property"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-width"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"5.3. Computing Page-margin Box Dimensions"},{"refs":[{"id":"ref-for-propdef-max-width\u2460"},{"id":"ref-for-propdef-max-width\u2461"},{"id":"ref-for-propdef-max-width\u2462"},{"id":"ref-for-propdef-max-width\u2463"},{"id":"ref-for-propdef-max-width\u2464"}],"title":"5.3.2.3. Handling min-width and max-width"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a93f3bc2": {"dfnID":"a93f3bc2","dfnText":"hidden","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-visibility-hidden"}],"title":"3.2. Content outside the page box"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-visibility-hidden"}, "aaf6abed": {"dfnID":"aaf6abed","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"}],"title":"5.3.2.1. Margins"},{"refs":[{"id":"ref-for-propdef-margin-left\u2460"}],"title":"5.3.3. Page-Margin Box Fixed Dimension Computation Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "aba1ccaf": {"dfnID":"aba1ccaf","dfnText":"continuous media","external":true,"refSections":[{"refs":[{"id":"ref-for-continuous-media"}],"title":"1. \nIntroduction"}],"url":"https://drafts.csswg.org/mediaqueries-5/#continuous-media"}, @@ -4098,12 +4139,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"},{"id":"ref-for-propdef-position\u2460"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "b8c7a216": {"dfnID":"b8c7a216","dfnText":"forced break","external":true,"refSections":[{"refs":[{"id":"ref-for-forced-break"}],"title":"8.1. \nUsing named pages: page"}],"url":"https://drafts.csswg.org/css-break-4/#forced-break"}, "ba1eea86": {"dfnID":"ba1eea86","dfnText":"outer edge","external":true,"refSections":[{"refs":[{"id":"ref-for-outer-edge"}],"title":"5.3.1. \nPage-Margin Box Layout Terminology"}],"url":"https://drafts.csswg.org/css-box-4/#outer-edge"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"3.2. Content outside the page box"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, "binding-edge": {"dfnID":"binding-edge","dfnText":"Binding Edge","external":false,"refSections":[{"refs":[{"id":"ref-for-binding-edge"}],"title":"5. Page-Margin Boxes"}],"url":"#binding-edge"}, "bleed-area": {"dfnID":"bleed-area","dfnText":"bleed area","external":false,"refSections":[{"refs":[{"id":"ref-for-bleed-area"}],"title":"3.1. \nPage Backgrounds and Painting Order"},{"refs":[{"id":"ref-for-bleed-area\u2460"}],"title":"7.2. \nCrop and Registration Marks: the marks property"},{"refs":[{"id":"ref-for-bleed-area\u2461"}],"title":"7.3. \nBleed Area: the bleed property"}],"url":"#bleed-area"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"}],"title":"3.2. Content outside the page box"},{"refs":[{"id":"ref-for-propdef-break-before\u2460"}],"title":"3.3. Page Progression"},{"refs":[{"id":"ref-for-propdef-break-before\u2461"}],"title":"4.2.3. \nBlank-page pseudo-class: :blank"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, "c17ce735": {"dfnID":"c17ce735","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-size-height"}],"title":"7.1. \nPage size: the size property"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-height"}, "c388d253": {"dfnID":"c388d253","dfnText":"inherit","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-inherit"}],"title":"6. \nPage Properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"},{"id":"ref-for-propdef-z-index\u2461"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "c901e957": {"dfnID":"c901e957","dfnText":"pre","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-white-space-pre"}],"title":"3.2. Content outside the page box"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-pre"}, "ca62982f": {"dfnID":"ca62982f","dfnText":"padding-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-bottom"},{"id":"ref-for-propdef-padding-bottom\u2460"}],"title":"5.3.3. Page-Margin Box Fixed Dimension Computation Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-bottom"}, "cbfeec00": {"dfnID":"cbfeec00","dfnText":"margin-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-bottom"},{"id":"ref-for-propdef-margin-bottom\u2460"},{"id":"ref-for-propdef-margin-bottom\u2461"},{"id":"ref-for-propdef-margin-bottom\u2462"},{"id":"ref-for-propdef-margin-bottom\u2463"},{"id":"ref-for-propdef-margin-bottom\u2464"},{"id":"ref-for-propdef-margin-bottom\u2465"}],"title":"5.3.3. Page-Margin Box Fixed Dimension Computation Rules"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-bottom"}, @@ -4121,8 +4162,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e0b6ed58": {"dfnID":"e0b6ed58","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"6. \nPage Properties"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2460"}],"title":"6.2. \nPage-margin boxes and default values"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, "e0ee1990": {"dfnID":"e0ee1990","dfnText":"ex","external":true,"refSections":[{"refs":[{"id":"ref-for-ex"},{"id":"ref-for-ex\u2460"}],"title":"6. \nPage Properties"},{"refs":[{"id":"ref-for-ex\u2461"}],"title":"7.1. \nPage size: the size property"}],"url":"https://drafts.csswg.org/css-values-4/#ex"}, "e274345c": {"dfnID":"e274345c","dfnText":"<custom-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-identifier-value"}],"title":"8.1. \nUsing named pages: page"}],"url":"https://drafts.csswg.org/css-values-4/#identifier-value"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"},{"id":"ref-for-propdef-min-width\u2460"},{"id":"ref-for-propdef-min-width\u2461"}],"title":"5.3. Computing Page-margin Box Dimensions"},{"refs":[{"id":"ref-for-propdef-min-width\u2462"},{"id":"ref-for-propdef-min-width\u2463"},{"id":"ref-for-propdef-min-width\u2464"},{"id":"ref-for-propdef-min-width\u2465"},{"id":"ref-for-propdef-min-width\u2466"}],"title":"5.3.2.3. Handling min-width and max-width"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e8ff0bb4": {"dfnID":"e8ff0bb4","dfnText":"em","external":true,"refSections":[{"refs":[{"id":"ref-for-em"},{"id":"ref-for-em\u2460"}],"title":"6. \nPage Properties"},{"refs":[{"id":"ref-for-em\u2461"}],"title":"7.1. \nPage size: the size property"}],"url":"https://drafts.csswg.org/css-values-4/#em"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"3.2. Content outside the page box"},{"refs":[{"id":"ref-for-propdef-display\u2460"},{"id":"ref-for-propdef-display\u2461"}],"title":"5.2. Populating page-margin boxes"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "end-page-value": {"dfnID":"end-page-value","dfnText":"end page value","external":false,"refSections":[{"refs":[{"id":"ref-for-end-page-value"},{"id":"ref-for-end-page-value\u2460"}],"title":"8.1. \nUsing named pages: page"}],"url":"#end-page-value"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"5.3. Computing Page-margin Box Dimensions"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "f95a7c3b": {"dfnID":"f95a7c3b","dfnText":"background-attachment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-attachment"}],"title":"3.1. \nPage Backgrounds and Painting Order"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment"}, "facing-pages": {"dfnID":"facing-pages","dfnText":"Facing Pages","external":false,"refSections":[],"url":"#facing-pages"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"},{"id":"ref-for-length-value\u2460"},{"id":"ref-for-length-value\u2461"}],"title":"7.1. \nPage size: the size property"},{"refs":[{"id":"ref-for-length-value\u2462"},{"id":"ref-for-length-value\u2463"}],"title":"7.3. \nBleed Area: the bleed property"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, @@ -4787,15 +4831,23 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"inline base direction","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#inline-base-direction"}, "https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"principal writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#principal-writing-mode"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing-mode","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#selectordef-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":":after","type":"selector","url":"https://drafts.csswg.org/css2/#selectordef-after"}, "https://drafts.csswg.org/css2/#selectordef-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":":before","type":"selector","url":"https://drafts.csswg.org/css2/#selectordef-before"}, "https://drafts.csswg.org/mediaqueries-5/#continuous-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"continuous media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#continuous-media"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://drafts.csswg.org/selectors-4/#typedef-compound-selector": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"<compound-selector>","type":"type","url":"https://drafts.csswg.org/selectors-4/#typedef-compound-selector"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"margin","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, +"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"counter-increment","type":"property","url":"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment"}, +"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"counter-reset","type":"property","url":"https://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-page-floats-3/Overview.html b/tests/github/w3c/csswg-drafts/css-page-floats-3/Overview.html index 8f68f82370..4d4085ca44 100644 --- a/tests/github/w3c/csswg-drafts/css-page-floats-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-page-floats-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Page Floats</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-page-floats-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -731,7 +730,7 @@ <h1 class="p-name no-ref" id="title">CSS Page Floats</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -758,7 +757,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-page-floats] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-page-floats%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>Some of the features in this draft were previously published in <cite>CSS Generated Content for Paged Media Module</cite> <a data-link-type="biblio" href="#biblio-css3gcpm" title="CSS Generated Content for Paged Media Module">[CSS3GCPM]</a>.</p> </div> @@ -1986,7 +1985,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css3gcpm">[CSS3GCPM] - <dd>Dave Cramer. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> + <dd>Rachel Andrew; Mike Bremford. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> diff --git a/tests/github/w3c/csswg-drafts/css-position-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-position-3/Overview.console.txt index be97f88d89..af4992c452 100644 --- a/tests/github/w3c/csswg-drafts/css-position-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-position-3/Overview.console.txt @@ -36,6 +36,30 @@ LINE ~888: No 'dfn' refs found for 'ratio-dependent'. [=ratio-dependent=] LINE ~888: No 'dfn' refs found for 'ratio-determining'. [=ratio-determining=] +LINE ~932: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' +LINE ~932: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~1205: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~1206: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' LINE ~351: Couldn't find section '#the-background-attachment' in spec 'css-backgrounds-3': [[css-backgrounds-3#the-background-attachment|fixed background images]] LINE 1654: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-position-3/Overview.html b/tests/github/w3c/csswg-drafts/css-position-3/Overview.html index d13b3cd01e..5e2dcbdd54 100644 --- a/tests/github/w3c/csswg-drafts/css-position-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-position-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Positioned Layout Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-position-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1158,7 +1157,7 @@ <h1 class="p-name no-ref" id="title">CSS Positioned Layout Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1180,7 +1179,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-position] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-position%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1876,7 +1875,7 @@ <h4 class="heading settled" data-level="3.5.1" id="staticpos-rect"><span class=" the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#containing-block" id="ref-for-containing-block①⑨">containing block</a> of <a data-link-type="dfn" href="#fixed-position" id="ref-for-fixed-position⑥">fixed positioned</a> elements is the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#initial-containing-block" id="ref-for-initial-containing-block②">initial containing block</a> instead of the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS2/visuren.html#x1" id="ref-for-x1⑤">viewport</a>, and all <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scroll-container" id="ref-for-scroll-container①">scroll containers</a> should be assumed - to be scrolled to their <a data-link-type="dfn" href="https://www.w3.org/TR/css-overflow-3/#initial-scroll-position" id="ref-for-initial-scroll-position">initial scroll position</a>. + to be scrolled to their <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#initial-scroll-position" id="ref-for-initial-scroll-position">initial scroll position</a>. Additionally, all <span class="css">auto</span> margins on the box itself are treated as zero.</p> <h4 class="heading settled" data-level="3.5.2" id="abspos-breaking"><span class="secno">3.5.2. </span><span class="content"> Fragmenting Absolutely-positioned Elements</span><span id="breaking"></span><a class="self-link" href="#abspos-breaking"></a></h4> @@ -2782,7 +2781,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-OVERFLOW-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="a3972067">initial scroll position</span> + <li><span class="dfn-paneled" id="1880be96">initial scroll position</span> <li><span class="dfn-paneled" id="6e0ac9b0">nearest scrollport</span> <li><span class="dfn-paneled" id="86923d07">scroll container</span> <li><span class="dfn-paneled" id="99a64665">scrollable overflow area</span> @@ -2891,7 +2890,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] @@ -2899,7 +2898,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-grid-1">[CSS-GRID-1] @@ -2907,13 +2906,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-page-floats-3">[CSS-PAGE-FLOATS-3] <dd>Johannes Wilm. <a href="https://drafts.csswg.org/css-page-floats/"><cite>CSS Page Floats</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-floats/">https://drafts.csswg.org/css-page-floats/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -2946,7 +2945,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> </dl> @@ -3391,6 +3390,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1370dad0": {"dfnID":"1370dad0","dfnText":"block-start","external":true,"refSections":[{"refs":[{"id":"ref-for-block-start"}],"title":"2.1. \nContaining Blocks of Positioned Boxes"},{"refs":[{"id":"ref-for-block-start\u2460"}],"title":"3.5.1. \nResolving Automatic Insets"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-start"}, "154375a0": {"dfnID":"154375a0","dfnText":"margin box","external":true,"refSections":[{"refs":[{"id":"ref-for-margin-box"},{"id":"ref-for-margin-box\u2460"}],"title":"3.4. \nSticky positioning"},{"refs":[{"id":"ref-for-margin-box\u2461"}],"title":"3.5. \nAbsolute (and Fixed) Positioning"},{"refs":[{"id":"ref-for-margin-box\u2462"}],"title":"4. \nAbsolute Positioning Layout Model"}],"url":"https://drafts.csswg.org/css-box-4/#margin-box"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"}],"title":"3.1. \nBox Insets: the top, right, bottom, left, inset-block-start, inset-inline-start, inset-block-end, and inset-inline-end properties "}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, +"1880be96": {"dfnID":"1880be96","dfnText":"initial scroll position","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-scroll-position"}],"title":"3.5.1. \nResolving Automatic Insets"}],"url":"https://drafts.csswg.org/css-overflow-3/#initial-scroll-position"}, "1a548a6a": {"dfnID":"1a548a6a","dfnText":"blockify","external":true,"refSections":[{"refs":[{"id":"ref-for-blockify"}],"title":"2. \nChoosing A Positioning Scheme: position property"}],"url":"https://drafts.csswg.org/css-display-4/#blockify"}, "215d97a0": {"dfnID":"215d97a0","dfnText":"table-header-group","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-table-header-group"}],"title":"3.3. \nRelative Positioning"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-table-header-group"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"},{"id":"ref-for-flex-container\u2460"}],"title":"3.5.1. \nResolving Automatic Insets"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, @@ -3455,7 +3455,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9e066e76": {"dfnID":"9e066e76","dfnText":"longhand","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"},{"id":"ref-for-longhand\u2460"}],"title":"3.2. \nBox Insets Shorthands: the inset-block, inset-inline, and inset properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "9ea6bed2": {"dfnID":"9ea6bed2","dfnText":"initial value","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-value"}],"title":"3.3. \nRelative Positioning"}],"url":"https://drafts.csswg.org/css-cascade-5/#initial-value"}, "9f890aae": {"dfnID":"9f890aae","dfnText":"normal","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-align-self-normal"}],"title":"3.5. \nAbsolute (and Fixed) Positioning"},{"refs":[{"id":"ref-for-valdef-align-self-normal\u2460"},{"id":"ref-for-valdef-align-self-normal\u2461"}],"title":"4.1. \nAutomatic Sizes of Absolutely-Positioned Boxes"},{"refs":[{"id":"ref-for-valdef-align-self-normal\u2462"}],"title":"5. \nOld Absolute Positioning Layout Model"}],"url":"https://drafts.csswg.org/css-align-3/#valdef-align-self-normal"}, -"a3972067": {"dfnID":"a3972067","dfnText":"initial scroll position","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-scroll-position"}],"title":"3.5.1. \nResolving Automatic Insets"}],"url":"https://www.w3.org/TR/css-overflow-3/#initial-scroll-position"}, "a46ac4e1": {"dfnID":"a46ac4e1","dfnText":"out of flow","external":true,"refSections":[{"refs":[{"id":"ref-for-out-of-flow"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-out-of-flow\u2460"}],"title":"2. \nChoosing A Positioning Scheme: position property"},{"refs":[{"id":"ref-for-out-of-flow\u2461"}],"title":"4. \nAbsolute Positioning Layout Model"}],"url":"https://drafts.csswg.org/css-display-4/#out-of-flow"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"},{"id":"ref-for-used-value\u2461"},{"id":"ref-for-used-value\u2462"}],"title":"3.3. \nRelative Positioning"},{"refs":[{"id":"ref-for-used-value\u2463"}],"title":"3.5. \nAbsolute (and Fixed) Positioning"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"}],"title":"3.1. \nBox Insets: the top, right, bottom, left, inset-block-start, inset-inline-start, inset-block-end, and inset-inline-end properties "},{"refs":[{"id":"ref-for-writing-mode\u2460"}],"title":"4.2. \nAuto Margins of Absolutely-Positioned Boxes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, @@ -4072,6 +4071,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-grid-2/#grid-container": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"grid container","type":"dfn","url":"https://drafts.csswg.org/css-grid-2/#grid-container"}, "https://drafts.csswg.org/css-grid-2/#grid-placement-property": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"grid-placement property","type":"dfn","url":"https://drafts.csswg.org/css-grid-2/#grid-placement-property"}, "https://drafts.csswg.org/css-inline-3/#line-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"line box","type":"dfn","url":"https://drafts.csswg.org/css-inline-3/#line-box"}, +"https://drafts.csswg.org/css-overflow-3/#initial-scroll-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"initial scroll position","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#initial-scroll-position"}, "https://drafts.csswg.org/css-overflow-3/#nearest-scrollport": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"nearest scrollport","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#nearest-scrollport"}, "https://drafts.csswg.org/css-overflow-3/#scroll-container": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scroll container","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scroll-container"}, "https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scrollable overflow area","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region"}, @@ -4123,7 +4123,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://www.w3.org/TR/CSS2/visudet.html#static-position": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"static position","type":"dfn","url":"https://www.w3.org/TR/CSS2/visudet.html#static-position"}, "https://www.w3.org/TR/CSS2/visuren.html#normal-flow": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"normal flow","type":"dfn","url":"https://www.w3.org/TR/CSS2/visuren.html#normal-flow"}, "https://www.w3.org/TR/CSS2/visuren.html#x1": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"viewport","type":"dfn","url":"https://www.w3.org/TR/CSS2/visuren.html#x1"}, -"https://www.w3.org/TR/css-overflow-3/#initial-scroll-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"snapshot","text":"initial scroll position","type":"dfn","url":"https://www.w3.org/TR/css-overflow-3/#initial-scroll-position"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-print/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-print/Overview.console.txt index fb94783868..0eb5a6cb76 100644 --- a/tests/github/w3c/csswg-drafts/css-print/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-print/Overview.console.txt @@ -1,29 +1,107 @@ LINE ~385: No 'property' refs found for 'size'. 'size' -LINE ~444: Multiple possible 'border-collapse' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-collapse -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-collapse -spec:css22; type:property; text:border-collapse -'border-collapse' -LINE ~456: Multiple possible 'border-spacing' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-spacing -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-spacing -spec:css22; type:property; text:border-spacing -'border-spacing' -LINE ~508: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' +LINE ~450: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' +LINE ~468: Multiple possible 'border-top' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top +spec:css-borders-4; type:property; text:border-top +'border-top' +LINE ~468: Multiple possible 'border-right' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right +spec:css-borders-4; type:property; text:border-right +'border-right' +LINE ~468: Multiple possible 'border-bottom' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom +spec:css-borders-4; type:property; text:border-bottom +'border-bottom' +LINE ~468: Multiple possible 'border-left' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left +spec:css-borders-4; type:property; text:border-left +'border-left' +LINE ~475: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE ~475: Multiple possible 'border-right-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-color +spec:css-borders-4; type:property; text:border-right-color +'border-right-color' +LINE ~475: Multiple possible 'border-bottom-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-color +spec:css-borders-4; type:property; text:border-bottom-color +'border-bottom-color' +LINE ~475: Multiple possible 'border-left-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-color +spec:css-borders-4; type:property; text:border-left-color +'border-left-color' +LINE ~482: Multiple possible 'border-top-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-style +spec:css-borders-4; type:property; text:border-top-style +'border-top-style' +LINE ~482: Multiple possible 'border-right-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-style +spec:css-borders-4; type:property; text:border-right-style +'border-right-style' +LINE ~482: Multiple possible 'border-bottom-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-style +spec:css-borders-4; type:property; text:border-bottom-style +'border-bottom-style' +LINE ~482: Multiple possible 'border-left-style' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-style +spec:css-borders-4; type:property; text:border-left-style +'border-left-style' +LINE ~489: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~489: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~489: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~489: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE ~758: No 'property' refs found for 'size'. 'size' -LINE ~767: Multiple possible 'table-layout' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-table-layout -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:table-layout -spec:css22; type:property; text:table-layout -'table-layout' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-print/Overview.html b/tests/github/w3c/csswg-drafts/css-print/Overview.html index bcaf9b3f20..26a188b62f 100644 --- a/tests/github/w3c/csswg-drafts/css-print/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-print/Overview.html @@ -5,7 +5,6 @@ <title>CSS Print Profile</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/css-print/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -749,7 +748,7 @@ <h1 class="p-name no-ref" id="title">CSS Print Profile</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -782,7 +781,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-print] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-print%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>Relative to the <a href="https://www.w3.org/TR/2004/CR-css-print-20040225/">previous Candidate Recommendation</a>, this version adds two new features @@ -1145,7 +1144,7 @@ <h2 class="heading settled" data-level="4" id="section-properties"><span class=" transparent] ] | inherit <td>see individual properties <tr class="enh"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse</a> <td><em class="RFC2119" title="MAY In The RFC 2119 Context">MAY</em> <td><em class="RFC2119" title="MUST In The RFC 2119 Context">MUST</em> <td>collapse | separate | inherit @@ -1157,7 +1156,7 @@ <h2 class="heading settled" data-level="4" id="section-properties"><span class=" <td>[&lt;color> | transparent]{1,4} | inherit <td>see individual properties <tr class="enh"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> <td><em class="RFC2119" title="MAY In The RFC 2119 Context">MAY</em> <td><em class="RFC2119" title="MUST In The RFC 2119 Context">MUST</em> <td>&lt;length> &lt;length>? | inherit @@ -1206,7 +1205,7 @@ <h2 class="heading settled" data-level="4" id="section-properties"><span class=" <td>&lt;length> | &lt;percentage> | auto | inherit <td>auto <tr class="enh"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a> <td><em class="RFC2119" title="MAY In The RFC 2119 Context">MAY</em> <td><em class="RFC2119" title="MUST In The RFC 2119 Context">MUST</em> <td>top | bottom | left | right | inherit @@ -1420,19 +1419,19 @@ <h2 class="heading settled" data-level="4" id="section-properties"><span class=" <td>&lt;identifier> | auto <td>auto <tr class="yes"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" id="ref-for-propdef-page-break-after">page-break-after</a> <td> auto | always | inherit <td>auto | always | inherit <td>auto | always | avoid | left | right | inherit <td>auto <tr class="yes"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" id="ref-for-propdef-page-break-before">page-break-before</a> <td> auto | always | inherit <td>auto | always | inherit <td>auto | always | avoid | left | right | inherit <td>auto <tr class="yes"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" id="ref-for-propdef-page-break-inside">page-break-inside</a> <td><em class="RFC2119" title="MUST In The RFC 2119 Context">MUST</em> <td><em class="RFC2119" title="MUST In The RFC 2119 Context">MUST</em> <td>avoid | auto | inherit @@ -1458,7 +1457,7 @@ <h2 class="heading settled" data-level="4" id="section-properties"><span class=" A3 | B4 | B5 ] | auto | portrait | landscape | inherit <td>auto <tr class="enh"> - <td><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-table-layout" id="ref-for-propdef-table-layout">table-layout</a> + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout" id="ref-for-propdef-table-layout">table-layout</a> <td><em class="RFC2119" title="MAY In The RFC 2119 Context">MAY</em> <td><em class="RFC2119" title="MUST In The RFC 2119 Context">MUST</em> <td>auto | fixed | inherit @@ -2137,14 +2136,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="68019d7a">height</span> <li><span class="dfn-paneled" id="88643fe0">width</span> </ul> - <li> - <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="911f092b">border-collapse</span> - <li><span class="dfn-paneled" id="6882117f">border-spacing</span> - <li><span class="dfn-paneled" id="07083329">caption-side</span> - <li><span class="dfn-paneled" id="e1ea7acd">table-layout</span> - </ul> <li> <a data-link-type="biblio">[CSS-TEXT-3]</a> defines the following terms: <ul> @@ -2166,8 +2157,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS21]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="29ca9f85">border-collapse</span> + <li><span class="dfn-paneled" id="fe0abd77">border-spacing</span> + <li><span class="dfn-paneled" id="9983181a">caption-side</span> <li><span class="dfn-paneled" id="d7751a40">color</span> <li><span class="dfn-paneled" id="73ff3e7a">display</span> + <li><span class="dfn-paneled" id="6d1040c8">page-break-after</span> + <li><span class="dfn-paneled" id="beca1e45">page-break-before</span> + <li><span class="dfn-paneled" id="7ee8e6fb">page-break-inside</span> + <li><span class="dfn-paneled" id="c25d58bf">table-layout</span> <li><span class="dfn-paneled" id="5b2f5ec2">vertical-align</span> </ul> <li> @@ -2176,9 +2174,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9436e460">clear</span> <li><span class="dfn-paneled" id="0570259e">float</span> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> - <li><span class="dfn-paneled" id="5ddc23c6">page-break-after</span> - <li><span class="dfn-paneled" id="8f568cb6">page-break-before</span> - <li><span class="dfn-paneled" id="f6cbcbce">page-break-inside</span> </ul> <li> <a data-link-type="biblio">[CSS3-IMAGES]</a> defines the following terms: @@ -2197,7 +2192,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] @@ -2207,11 +2202,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] @@ -2222,8 +2217,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> - <dt id="biblio-css-tables-3">[CSS-TABLES-3] - <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -2237,7 +2230,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-images">[CSS3-IMAGES] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-html401">[HTML401] <dd>Dave Raggett; Arnaud Le Hors; Ian Jacobs. <a href="https://www.w3.org/TR/html401/"><cite>HTML 4.01 Specification</cite></a>. 27 March 2018. REC. URL: <a href="https://www.w3.org/TR/html401/">https://www.w3.org/TR/html401/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -2454,7 +2447,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" let dfnPanelData = { "00140718": {"dfnID":"00140718","dfnText":"margin-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-top"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-top"}, "0570259e": {"dfnID":"0570259e","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-float"}, -"07083329": {"dfnID":"07083329","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, "11fb4d5b": {"dfnID":"11fb4d5b","dfnText":"background-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-color"},{"id":"ref-for-propdef-background-color\u2460"},{"id":"ref-for-propdef-background-color\u2461"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color"}, "12f8fb07": {"dfnID":"12f8fb07","dfnText":"visibility","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-visibility"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-visibility"}, "157236b0": {"dfnID":"157236b0","dfnText":"object-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-object-position"},{"id":"ref-for-propdef-object-position\u2460"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-propdef-object-position\u2461"},{"id":"ref-for-propdef-object-position\u2462"}],"title":"4. 4. Properties"},{"refs":[{"id":"ref-for-propdef-object-position\u2463"},{"id":"ref-for-propdef-object-position\u2464"},{"id":"ref-for-propdef-object-position\u2465"},{"id":"ref-for-propdef-object-position\u2466"}],"title":"4.1. Image Rendering Properties"}],"url":"https://drafts.csswg.org/css-images-3/#propdef-object-position"}, @@ -2465,6 +2457,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "2467179e": {"dfnID":"2467179e","dfnText":"content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-content"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-content-3/#propdef-content"}, "24c4db74": {"dfnID":"24c4db74","dfnText":"border-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, +"29ca9f85": {"dfnID":"29ca9f85","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, "2c57f900": {"dfnID":"2c57f900","dfnText":"font","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font"}, "37c6bd4e": {"dfnID":"37c6bd4e","dfnText":"padding-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-right"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-right"}, "3b47d5a5": {"dfnID":"3b47d5a5","dfnText":"list-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style"}, @@ -2478,26 +2471,25 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "5bc3d0ec": {"dfnID":"5bc3d0ec","dfnText":"text-decoration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration"}, "5c4b7db5": {"dfnID":"5c4b7db5","dfnText":"border-bottom-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-color"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color"}, "5d5540ea": {"dfnID":"5d5540ea","dfnText":"image-orientation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-image-orientation"},{"id":"ref-for-propdef-image-orientation\u2460"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-images-3/#propdef-image-orientation"}, -"5ddc23c6": {"dfnID":"5ddc23c6","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, "6501e5b3": {"dfnID":"6501e5b3","dfnText":"white-space","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-white-space"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-white-space"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, -"6882117f": {"dfnID":"6882117f","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, "6b14b18a": {"dfnID":"6b14b18a","dfnText":"clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clip"}],"title":"4. 4. Properties"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-clip"}, +"6d1040c8": {"dfnID":"6d1040c8","dfnText":"page-break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-after"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, "73759fff": {"dfnID":"73759fff","dfnText":"border-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-color"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, "73ff3e7a": {"dfnID":"73ff3e7a","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-display"}, "76207212": {"dfnID":"76207212","dfnText":"padding-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-left"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-left"}, +"7ee8e6fb": {"dfnID":"7ee8e6fb","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, "8000726e": {"dfnID":"8000726e","dfnText":"border-left-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-width"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width"}, "86928bde": {"dfnID":"86928bde","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "8831f13c": {"dfnID":"8831f13c","dfnText":"text-indent","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-indent"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8b78f470": {"dfnID":"8b78f470","dfnText":"border-right-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-style"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style"}, -"8f568cb6": {"dfnID":"8f568cb6","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, "9112c920": {"dfnID":"9112c920","dfnText":"border-left-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-color"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color"}, -"911f092b": {"dfnID":"911f092b","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse"}, "9436e460": {"dfnID":"9436e460","dfnText":"clear","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clear"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-clear"}, "96d5b742": {"dfnID":"96d5b742","dfnText":"fill","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-object-fit-fill"}],"title":"4.1. Image Rendering Properties"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-object-fit-fill"}, "989f9ee6": {"dfnID":"989f9ee6","dfnText":"border-right-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-width"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width"}, "99775498": {"dfnID":"99775498","dfnText":"border-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom"}, +"9983181a": {"dfnID":"9983181a","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, "9d7987cb": {"dfnID":"9d7987cb","dfnText":"border-right-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-color"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color"}, "a4f9641f": {"dfnID":"a4f9641f","dfnText":"border-left-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-style"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style"}, "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, @@ -2512,6 +2504,8 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "b6730ce5": {"dfnID":"b6730ce5","dfnText":"widows","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-widows"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-break-4/#propdef-widows"}, "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "b8d7db46": {"dfnID":"b8d7db46","dfnText":"counter-increment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-counter-increment"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-counter-increment"}, +"beca1e45": {"dfnID":"beca1e45","dfnText":"page-break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-before"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"c25d58bf": {"dfnID":"c25d58bf","dfnText":"table-layout","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-table-layout"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout"}, "c9ecad15": {"dfnID":"c9ecad15","dfnText":"border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-width"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, "ca62982f": {"dfnID":"ca62982f","dfnText":"padding-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-bottom"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-bottom"}, "cacc0af2": {"dfnID":"cacc0af2","dfnText":"letter-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-letter-spacing"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, @@ -2527,16 +2521,15 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "de56fbfe": {"dfnID":"de56fbfe","dfnText":"list-style-type","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-type"},{"id":"ref-for-propdef-list-style-type\u2460"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, "decf3b99": {"dfnID":"decf3b99","dfnText":"page","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-page-3/#propdef-page"}, "e1483d91": {"dfnID":"e1483d91","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-top"}, -"e1ea7acd": {"dfnID":"e1ea7acd","dfnText":"table-layout","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-table-layout"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-table-layout"}, "e4039478": {"dfnID":"e4039478","dfnText":"border-top-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-style"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style"}, "e450523b": {"dfnID":"e450523b","dfnText":"list-style-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-image"},{"id":"ref-for-propdef-list-style-image\u2460"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-image"}, "ebfaf864": {"dfnID":"ebfaf864","dfnText":"border-bottom-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-style"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style"}, "f5eca8c9": {"dfnID":"f5eca8c9","dfnText":"background","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background"}, -"f6cbcbce": {"dfnID":"f6cbcbce","dfnText":"page-break-inside","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-page-break-inside"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"},{"id":"ref-for-propdef-background-image\u2460"},{"id":"ref-for-propdef-background-image\u2461"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, "f95a7c3b": {"dfnID":"f95a7c3b","dfnText":"background-attachment","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-attachment"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment"}, "fb7153bd": {"dfnID":"fb7153bd","dfnText":"font-variant","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variant"},{"id":"ref-for-propdef-font-variant\u2460"},{"id":"ref-for-propdef-font-variant\u2461"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-variant"}, "fdf6efd5": {"dfnID":"fdf6efd5","dfnText":"font-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size"},{"id":"ref-for-propdef-font-size\u2460"},{"id":"ref-for-propdef-font-size\u2461"},{"id":"ref-for-propdef-font-size\u2462"}],"title":"4. 4. Properties"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, +"fe0abd77": {"dfnID":"fe0abd77","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"4. 4. Properties"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, }; document.addEventListener("DOMContentLoaded", ()=>{ @@ -2990,10 +2983,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-position-3/#propdef-top": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"top","type":"property","url":"https://drafts.csswg.org/css-position-3/#propdef-top"}, "https://drafts.csswg.org/css-sizing-3/#propdef-height": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"height","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "https://drafts.csswg.org/css-sizing-3/#propdef-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"width","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-collapse","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-collapse"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-spacing","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, -"https://drafts.csswg.org/css-tables-3/#propdef-caption-side": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"caption-side","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, -"https://drafts.csswg.org/css-tables-3/#propdef-table-layout": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"table-layout","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-table-layout"}, "https://drafts.csswg.org/css-text-3/#propdef-text-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"text-align","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "https://drafts.csswg.org/css-text-4/#propdef-letter-spacing": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"letter-spacing","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, "https://drafts.csswg.org/css-text-4/#propdef-text-indent": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-indent","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, @@ -3003,13 +2992,17 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css2/#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"clear","type":"property","url":"https://drafts.csswg.org/css2/#propdef-clear"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-after","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-after"}, -"https://drafts.csswg.org/css2/#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-before","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-before"}, -"https://drafts.csswg.org/css2/#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"page-break-inside","type":"property","url":"https://drafts.csswg.org/css2/#propdef-page-break-inside"}, "https://drafts.fxtf.org/css-masking-1/#propdef-clip": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"clip","type":"property","url":"https://drafts.fxtf.org/css-masking-1/#propdef-clip"}, "https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-color": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css21","spec":"css21","status":"anchor-block","text":"color","type":"property","url":"https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-color"}, "https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-display": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css21","spec":"css21","status":"anchor-block","text":"display","type":"property","url":"https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-display"}, "https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-vertical-align": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css21","spec":"css21","status":"anchor-block","text":"vertical-align","type":"property","url":"https://www.w3.org/TR/2011/REC-CSS2-20110607/colors.html#propdef-vertical-align"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-after","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-before","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"}, +"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"page-break-inside","type":"property","url":"https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-collapse","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-spacing","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"caption-side","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"table-layout","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.console.txt index 64f0d1b629..96eb4b87ff 100644 --- a/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.console.txt @@ -1,10 +1,25 @@ +LINE 676: Couldn't find WPT test 'css/css-pseudo/cascade-highlight-004.html' - did you misspell something? +LINE 700: Couldn't find WPT test 'css/css-pseudo/cascade-highlight-001.html' - did you misspell something? +LINE 734: Couldn't find WPT test 'css/css-pseudo/cascade-highlight-002.html' - did you misspell something? LINE 317: Image doesn't exist, so I couldn't determine its width and height: 'images/first-letter2.gif' LINE ~181: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' LINE 309: No 'dfn' refs found for 'unicode general category'. <a bs-line-number="309" data-link-type="dfn" data-lt="Unicode general category">Unicode general category</a> +LINE ~398: Multiple possible 'marker' dfn refs. +Arbitrarily chose https://aomediacodec.github.io/av1-isobmff/#marker +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:av1-isobmff; type:dfn; text:marker +spec:css-lists-3; type:dfn; text:marker +[=marker=] LINE ~423: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' +LINE ~429: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE ~544: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' LINE ~578: No 'property' refs found for 'color' with spec 'css-color-3'. diff --git a/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.html b/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.html index 1abeeb8a88..b6a437a0d4 100644 --- a/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-pseudo-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Pseudo-Elements Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-pseudo-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1129,7 +1128,7 @@ <h1 class="p-name no-ref" id="title">CSS Pseudo-Elements Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1151,7 +1150,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-pseudo] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-pseudo%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1244,7 +1243,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <main> <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </span><span class="content">Introduction</span><a class="self-link" href="#intro"></a></h2> <p><em>This section is informative.</em></p> - <p><a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element">Pseudo-elements</a> represent abstract elements of the document + <p><a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22">Pseudo-elements</a> represent abstract elements of the document beyond those elements explicitly created by the document language. Since they are not restricted to fitting into the document tree, they can be used to select and style portions of the document @@ -1261,7 +1260,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s see <a data-link-type="biblio" href="#biblio-selectors-4" title="Selectors Level 4">[SELECTORS-4]</a>.</p> <h2 class="heading settled" data-level="2" id="typographic-pseudos"><span class="secno">2. </span><span class="content"> Typographic Pseudo-elements</span><a class="self-link" href="#typographic-pseudos"></a></h2> <h3 class="heading settled" data-level="2.1" id="first-line-pseudo"><span class="secno">2.1. </span><span class="content"> The ::first-line pseudo-element</span><a class="self-link" href="#first-line-pseudo"></a></h3> - <p>The <dfn class="dfn-paneled css" data-dfn-type="selector" data-export id="selectordef-first-line">::first-line</dfn> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element①">pseudo-element</a> represents + <p>The <dfn class="dfn-paneled css" data-dfn-type="selector" data-export id="selectordef-first-line">::first-line</dfn> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element">pseudo-element</a> represents the contents of the <a data-link-type="dfn" href="#first-formatted-line" id="ref-for-first-formatted-line">first formatted line</a> of its <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element①">originating element</a>.</p> <div class="example" id="example-fb83f35a"> <a class="self-link" href="#example-fb83f35a"></a> The rule below means @@ -1502,7 +1501,7 @@ <h4 class="heading settled" data-level="2.2.2" id="first-letter-tree"><span clas or simply not create a pseudo-element. Additionally, if the <span id="ref-for-first-letter-text①⓪">first-letter text</span> is not at the start of the line (for example due to bidirectional reordering, - or due to a <a data-link-type="dfn" href="https://drafts.csswg.org/css-lists-3/#list-item" id="ref-for-list-item">list item</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-lists-3/#marker" id="ref-for-marker①">marker</a> with <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-lists-3/#propdef-list-style-position" id="ref-for-propdef-list-style-position">list-style-position: inside</a>), + or due to a <a data-link-type="dfn" href="https://drafts.csswg.org/css-lists-3/#list-item" id="ref-for-list-item">list item</a> <a data-link-type="dfn" href="https://aomediacodec.github.io/av1-isobmff/#marker" id="ref-for-marker①">marker</a> with <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-lists-3/#propdef-list-style-position" id="ref-for-propdef-list-style-position">list-style-position: inside</a>), then the user agent is not required to create the pseudo-element(s).</p> <p>A <a class="css" data-link-type="maybe" href="#selectordef-first-letter" id="ref-for-selectordef-first-letter①③">::first-letter</a> pseudo-element is contained within any <a class="css" data-link-type="maybe" href="#selectordef-first-line" id="ref-for-selectordef-first-line①③">::first-line</a> pseudo-elements, @@ -1742,7 +1741,6 @@ <h3 class="heading settled" data-level="3.5" id="highlight-cascade"><span class= <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-pseudo/active-selection-052.html" title="css/css-pseudo/active-selection-052.html">active-selection-052.html</a> <a class="wpt-live" href="http://wpt.live/css/css-pseudo/active-selection-052.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-pseudo/active-selection-052.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-pseudo/active-selection-053.html" title="css/css-pseudo/active-selection-053.html">active-selection-053.html</a> <a class="wpt-live" href="http://wpt.live/css/css-pseudo/active-selection-053.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-pseudo/active-selection-053.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-pseudo/active-selection-054.html" title="css/css-pseudo/active-selection-054.html">active-selection-054.html</a> <a class="wpt-live" href="http://wpt.live/css/css-pseudo/active-selection-054.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-pseudo/active-selection-054.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-pseudo/cascade-highlight-004.html" title="css/css-pseudo/cascade-highlight-004.html">cascade-highlight-004.html</a> <a class="wpt-live" href="http://wpt.live/css/css-pseudo/cascade-highlight-004.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-pseudo/cascade-highlight-004.html"><small>(source)</small></a> </ul> </details> <div class="example" id="example-c35bf49a"> @@ -1760,9 +1758,7 @@ <h3 class="heading settled" data-level="3.5" id="highlight-cascade"><span class= </div> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-pseudo/cascade-highlight-001.html" title="css/css-pseudo/cascade-highlight-001.html">cascade-highlight-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-pseudo/cascade-highlight-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-pseudo/cascade-highlight-001.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="advisement"> Authors wanting multiple selections styles should use <strong><span class="css">:root::selection</span></strong> for their document-wide selection style, since this will allow clean overriding in descendants. <a class="css" data-link-type="maybe" href="#selectordef-selection" id="ref-for-selectordef-selection②">::selection</a> alone applies to every element in the tree, @@ -1786,9 +1782,7 @@ <h3 class="heading settled" data-level="3.5" id="highlight-cascade"><span class= </div> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-pseudo/cascade-highlight-002.html" title="css/css-pseudo/cascade-highlight-002.html">cascade-highlight-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-pseudo/cascade-highlight-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-pseudo/cascade-highlight-002.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>The UA must use its own highlight colors for <a class="css" data-link-type="maybe" href="#selectordef-selection" id="ref-for-selectordef-selection④">::selection</a> only when neither <a class="property css" data-link-type="property">color</a> nor <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color" id="ref-for-propdef-background-color②">background-color</a> has been specified by the author.</p> @@ -1848,7 +1842,7 @@ <h4 class="heading settled" data-level="3.6.3" id="highlight-text"><span class=" the <span class="property">color</span> of the next <span id="ref-for-highlight-pseudo-element①①">highlight pseudo-element</span> layer below, falling back finally to the colors that would otherwise have been used (those applied by the <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element⑨">originating element</a> or - an intervening <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element②">pseudo-element</a> such as <a class="css" data-link-type="maybe" href="#selectordef-first-line" id="ref-for-selectordef-first-line①⑤">::first-line</a> or <a class="css" data-link-type="maybe" href="#selectordef-first-letter" id="ref-for-selectordef-first-letter①⑨">::first-letter</a>).</p> + an intervening <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element①">pseudo-element</a> such as <a class="css" data-link-type="maybe" href="#selectordef-first-line" id="ref-for-selectordef-first-line①⑤">::first-line</a> or <a class="css" data-link-type="maybe" href="#selectordef-first-letter" id="ref-for-selectordef-first-letter①⑨">::first-letter</a>).</p> <p>Any text decorations introduced by each <a data-link-type="dfn" href="#highlight-pseudo-element" id="ref-for-highlight-pseudo-element①②">highlight pseudo-element</a> are stacked in the same order as their backgrounds over the text’s original decorations and are all drawn, each decoration in its own color.</p> @@ -2050,7 +2044,7 @@ <h3 class="heading settled" data-level="6.2" id="window-interface"><span class=" that would match the selector <var>type</var> with <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this">this</a> as its <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element①⑥">originating element</a>.</p> </ol> </div> - <p>Return values that represent the same <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element③">pseudo-element</a> on the same <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element①⑦">originating element</a> must be, insofar as observable, + <p>Return values that represent the same <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element②">pseudo-element</a> on the same <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#originating-element" id="ref-for-originating-element①⑦">originating element</a> must be, insofar as observable, always the same <code class="idl"><a data-link-type="idl" href="#csspseudoelement" id="ref-for-csspseudoelement⑤">CSSPseudoElement</a></code> object. (The UA may drop or regenerate the object for convenience or performance if this is not observable.)</p> @@ -2241,6 +2235,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[AV1-ISOBMFF]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="1da081a0">marker</span> + </ul> <li> <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> @@ -2299,7 +2298,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="ac8c80fa">list item</span> <li><span class="dfn-paneled" id="16d57f47">list-style-position</span> - <li><span class="dfn-paneled" id="4102a2ec">marker</span> <li><span class="dfn-paneled" id="61656631">marker box</span> </ul> <li> @@ -2366,6 +2364,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="2161cf2b">pseudo-elements</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -2420,20 +2423,22 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-av1-isobmff">[AV1-ISOBMFF] + <dd><a href="https://aomediacodec.github.io/av1-isobmff/"><cite>AV1 Codec ISO Media File Format Binding</cite></a>. Draft Deliverable. URL: <a href="https://aomediacodec.github.io/av1-isobmff/">https://aomediacodec.github.io/av1-isobmff/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-multicol-1">[CSS-MULTICOL-1] @@ -2455,11 +2460,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-variables-1">[CSS-VARIABLES-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-variables/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-variables/">https://drafts.csswg.org/css-variables/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> + <dt id="biblio-css2">[CSS2] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-cssom-1">[CSSOM-1] @@ -2473,7 +2480,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> <dt id="biblio-uax44">[UAX44] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr44/tr44-30.html"><cite>Unicode Character Database</cite></a>. 2 September 2022. Unicode Standard Annex #44. URL: <a href="https://www.unicode.org/reports/tr44/tr44-30.html">https://www.unicode.org/reports/tr44/tr44-30.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr44/tr44-32.html"><cite>Unicode Character Database</cite></a>. 6 September 2023. Unicode Standard Annex #44. URL: <a href="https://www.unicode.org/reports/tr44/tr44-32.html">https://www.unicode.org/reports/tr44/tr44-32.html</a> <dt id="biblio-url">[URL] <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/"><cite>URL Standard</cite></a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a> <dt id="biblio-webidl">[WEBIDL] @@ -2486,19 +2493,17 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-color-3">[CSS-COLOR-3] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-text-decor-3">[CSS-TEXT-DECOR-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-3/">https://drafts.csswg.org/css-text-decor-3/</a> - <dt id="biblio-css2">[CSS2] - <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-html5">[HTML5] <dd>Ian Hickson; et al. <a href="https://www.w3.org/html/wg/drafts/html/master/"><cite>HTML5</cite></a>. URL: <a href="https://www.w3.org/html/wg/drafts/html/master/">https://www.w3.org/html/wg/drafts/html/master/</a> <dt id="biblio-selectors-3">[SELECTORS-3] <dd>Tantek Çelik; et al. <a href="https://drafts.csswg.org/selectors-3/"><cite>Selectors Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/selectors-3/">https://drafts.csswg.org/selectors-3/</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> <dt id="biblio-web-animations-1">[WEB-ANIMATIONS-1] <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/web-animations-1/"><cite>Web Animations</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-1/">https://drafts.csswg.org/web-animations-1/</a> </dl> @@ -2669,18 +2674,17 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="marker-pseudo"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::marker" title="The ::marker CSS pseudo-element selects the marker box of a list item, which typically contains a bullet or number. It works on any element or pseudo-element set to display: list-item, such as the <li> and <summary> elements.">::marker</a></p> - <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome yes"><span>Chrome</span><span>86+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>86+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>86+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2735,7 +2739,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="selectordef-target-text"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::target-text" title="The ::target-text CSS pseudo-element represents the text that has been scrolled to if the browser supports scroll-to-text fragments. It allows authors to choose how to highlight that section of text.">::target-text</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::target-text" title="The ::target-text CSS pseudo-element represents the text that has been scrolled to if the browser supports text fragments. It allows authors to choose how to highlight that section of text.">::target-text</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> @@ -2955,7 +2959,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "16d57f47": {"dfnID":"16d57f47","dfnText":"list-style-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-position"}],"title":"2.2.2. \nInheritance and Box Tree Structure of the ::first-letter Pseudo-element"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-position"}, "19119b4f": {"dfnID":"19119b4f","dfnText":"text-emphasis-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-emphasis-position"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-position"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"}],"title":"2.1.3. \nInheritance and the ::first-line Pseudo-element"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, +"1da081a0": {"dfnID":"1da081a0","dfnText":"marker","external":true,"refSections":[{"refs":[{"id":"ref-for-marker\u2460"}],"title":"2.2.2. \nInheritance and Box Tree Structure of the ::first-letter Pseudo-element"}],"url":"https://aomediacodec.github.io/av1-isobmff/#marker"}, "20fff200": {"dfnID":"20fff200","dfnText":"inheritance","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"},{"id":"ref-for-css-inheritance\u2460"}],"title":"2.1.3. \nInheritance and the ::first-line Pseudo-element"},{"refs":[{"id":"ref-for-css-inheritance\u2461"}],"title":"2.2.2. \nInheritance and Box Tree Structure of the ::first-letter Pseudo-element"},{"refs":[{"id":"ref-for-css-inheritance\u2462"}],"title":"4. \nTree-Abiding Pseudo-elements"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, +"2161cf2b": {"dfnID":"2161cf2b","dfnText":"pseudo-elements","external":true,"refSections":[{"refs":[{"id":"ref-for-x22"}],"title":"1. Introduction"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, "2467179e": {"dfnID":"2467179e","dfnText":"content","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-content"},{"id":"ref-for-propdef-content\u2460"}],"title":"4.1. \nGenerated Content Pseudo-elements: ::before and ::after"},{"refs":[{"id":"ref-for-propdef-content\u2461"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-content-3/#propdef-content"}, "2496f7a0": {"dfnID":"2496f7a0","dfnText":"inherited property","external":true,"refSections":[{"refs":[{"id":"ref-for-inherited-property"}],"title":"2.1.3. \nInheritance and the ::first-line Pseudo-element"},{"refs":[{"id":"ref-for-inherited-property\u2460"}],"title":"3.5. \nCascading and Per-Element Highlight Styles"}],"url":"https://drafts.csswg.org/css-cascade-5/#inherited-property"}, "296f3551": {"dfnID":"296f3551","dfnText":"Element","external":true,"refSections":[{"refs":[{"id":"ref-for-element"}],"title":"6.1. \nCSSPseudoElement Interface"},{"refs":[{"id":"ref-for-element\u2460"},{"id":"ref-for-element\u2461"},{"id":"ref-for-element\u2462"}],"title":"6.2. \npseudo() method of the Element interface"}],"url":"https://dom.spec.whatwg.org/#element"}, @@ -2966,7 +2972,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"2.1.2. \nStyling the First Line Pseudo-element"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3bd4bbe9": {"dfnID":"3bd4bbe9","dfnText":"text-orientation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-orientation"}],"title":"2.1.2. \nStyling the First Line Pseudo-element"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, "4013a022": {"dfnID":"4013a022","dfnText":"this","external":true,"refSections":[{"refs":[{"id":"ref-for-this"}],"title":"6.2. \npseudo() method of the Element interface"}],"url":"https://webidl.spec.whatwg.org/#this"}, -"4102a2ec": {"dfnID":"4102a2ec","dfnText":"marker","external":true,"refSections":[{"refs":[{"id":"ref-for-marker"}],"title":"2.2.1. \nFinding the First Letter Text"},{"refs":[{"id":"ref-for-marker\u2460"}],"title":"2.2.2. \nInheritance and Box Tree Structure of the ::first-letter Pseudo-element"},{"refs":[{"id":"ref-for-marker\u2461"},{"id":"ref-for-marker\u2462"}],"title":"4.2. \nList Markers: the ::marker pseudo-element"}],"url":"https://drafts.csswg.org/css-lists-3/#marker"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"4.3. \nPlaceholder Input: the ::placeholder pseudo-element"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "4462edae": {"dfnID":"4462edae","dfnText":"spelling-error","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-decoration-line-spelling-error"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-spelling-error"}, "521eb6d4": {"dfnID":"521eb6d4","dfnText":"multi-column container","external":true,"refSections":[{"refs":[{"id":"ref-for-multi-column-container"}],"title":"2.1.1. \nFinding the First Formatted Line"}],"url":"https://drafts.csswg.org/css-multicol-1/#multi-column-container"}, @@ -2976,7 +2981,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5bc3d0ec": {"dfnID":"5bc3d0ec","dfnText":"text-decoration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration"}],"title":"3.2. \nStyling Highlights"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration"}, "5bc8bd12": {"dfnID":"5bc8bd12","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"}],"title":"2.1.2. \nStyling the First Line Pseudo-element"},{"refs":[{"id":"ref-for-propdef-direction\u2460"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-direction"}, "5fced98b": {"dfnID":"5fced98b","dfnText":"CSSOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-cssomstring"}],"title":"6.1. \nCSSPseudoElement Interface"},{"refs":[{"id":"ref-for-cssomstring\u2460"}],"title":"6.2. \npseudo() method of the Element interface"}],"url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, -"61656631": {"dfnID":"61656631","dfnText":"marker box","external":true,"refSections":[{"refs":[{"id":"ref-for-marker"}],"title":"2.2.1. \nFinding the First Letter Text"},{"refs":[{"id":"ref-for-marker\u2460"}],"title":"2.2.2. \nInheritance and Box Tree Structure of the ::first-letter Pseudo-element"},{"refs":[{"id":"ref-for-marker\u2461"},{"id":"ref-for-marker\u2462"}],"title":"4.2. \nList Markers: the ::marker pseudo-element"}],"url":"https://drafts.csswg.org/css-lists-3/#marker"}, +"61656631": {"dfnID":"61656631","dfnText":"marker box","external":true,"refSections":[{"refs":[{"id":"ref-for-marker"}],"title":"2.2.1. \nFinding the First Letter Text"},{"refs":[{"id":"ref-for-marker\u2461"},{"id":"ref-for-marker\u2462"}],"title":"4.2. \nList Markers: the ::marker pseudo-element"}],"url":"https://drafts.csswg.org/css-lists-3/#marker"}, "63544174": {"dfnID":"63544174","dfnText":"stroke-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke-width"}],"title":"3.2. \nStyling Highlights"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-width"}, "64747b41": {"dfnID":"64747b41","dfnText":"ua style sheet","external":true,"refSections":[{"refs":[{"id":"ref-for-cascade-origin-ua"}],"title":"3.5. \nCascading and Per-Element Highlight Styles"}],"url":"https://drafts.csswg.org/css-cascade-5/#cascade-origin-ua"}, "689ef56c": {"dfnID":"689ef56c","dfnText":":after","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-after\u2462"}],"title":"4.1. \nGenerated Content Pseudo-elements: ::before and ::after"}],"url":"https://drafts.csswg.org/css2/#selectordef-after"}, @@ -2991,7 +2996,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "991145b0": {"dfnID":"991145b0","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-content-none"}],"title":"4.1. \nGenerated Content Pseudo-elements: ::before and ::after"}],"url":"https://drafts.csswg.org/css-content-3/#valdef-content-none"}, "994d0e36": {"dfnID":"994d0e36","dfnText":"table wrapper box","external":true,"refSections":[{"refs":[{"id":"ref-for-table-wrapper-box"}],"title":"2.1.1. \nFinding the First Formatted Line"}],"url":"https://drafts.csswg.org/css-tables-3/#table-wrapper-box"}, "99cabd32": {"dfnID":"99cabd32","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"}],"title":"2.1.1. \nFinding the First Formatted Line"}],"url":"https://drafts.csswg.org/css-display-4/#in-flow"}, -"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-pseudo-element\u2460"}],"title":"2.1. \nThe ::first-line pseudo-element"},{"refs":[{"id":"ref-for-pseudo-element\u2461"}],"title":"3.6.3. \nText and Text Decorations"},{"refs":[{"id":"ref-for-pseudo-element\u2462"}],"title":"6.2. \npseudo() method of the Element interface"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, +"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"2.1. \nThe ::first-line pseudo-element"},{"refs":[{"id":"ref-for-pseudo-element\u2460"}],"title":"3.6.3. \nText and Text Decorations"},{"refs":[{"id":"ref-for-pseudo-element\u2461"}],"title":"6.2. \npseudo() method of the Element interface"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "9ea6bed2": {"dfnID":"9ea6bed2","dfnText":"initial value","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-value"}],"title":"4. \nTree-Abiding Pseudo-elements"}],"url":"https://drafts.csswg.org/css-cascade-5/#initial-value"}, "9f3d4f17": {"dfnID":"9f3d4f17","dfnText":"block container","external":true,"refSections":[{"refs":[{"id":"ref-for-block-container"},{"id":"ref-for-block-container\u2460"},{"id":"ref-for-block-container\u2461"},{"id":"ref-for-block-container\u2462"}],"title":"2.1.1. \nFinding the First Formatted Line"},{"refs":[{"id":"ref-for-block-container\u2463"},{"id":"ref-for-block-container\u2464"}],"title":"2.2.1. \nFinding the First Letter Text"}],"url":"https://drafts.csswg.org/css-display-4/#block-container"}, "a20bf8d2": {"dfnID":"a20bf8d2","dfnText":":placeholder-shown","external":true,"refSections":[{"refs":[{"id":"ref-for-placeholder-shown-pseudo"}],"title":"4.3. \nPlaceholder Input: the ::placeholder pseudo-element"}],"url":"https://drafts.csswg.org/selectors-4/#placeholder-shown-pseudo"}, @@ -3503,6 +3508,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#selectordef-selection": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"local","text":"::selection","type":"selector","url":"#selectordef-selection"}, "#selectordef-spelling-error": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"local","text":"::spelling-error","type":"selector","url":"#selectordef-spelling-error"}, "#selectordef-target-text": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"local","text":"::target-text","type":"selector","url":"#selectordef-target-text"}, +"https://aomediacodec.github.io/av1-isobmff/#marker": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"av1-isobmff","spec":"av1-isobmff","status":"current","text":"marker","type":"dfn","url":"https://aomediacodec.github.io/av1-isobmff/#marker"}, "https://dom.spec.whatwg.org/#element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Element","type":"interface","url":"https://dom.spec.whatwg.org/#element"}, "https://dom.spec.whatwg.org/#eventtarget": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventTarget","type":"interface","url":"https://dom.spec.whatwg.org/#eventtarget"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-color","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color"}, @@ -3568,6 +3574,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://url.spec.whatwg.org/#concept-url-fragment": {"export":true,"for_":["url"],"level":"1","normative":true,"shortname":"url","spec":"url","status":"current","text":"fragment","type":"dfn","url":"https://url.spec.whatwg.org/#concept-url-fragment"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#this": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"this","type":"dfn","url":"https://webidl.spec.whatwg.org/#this"}, +"https://www.w3.org/TR/CSS21/selector.html#x22": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-elements","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-regions-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-regions-1/Overview.console.txt index 328f32a167..8b1f0d014a 100644 --- a/tests/github/w3c/csswg-drafts/css-regions-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-regions-1/Overview.console.txt @@ -21,12 +21,6 @@ LINE ~627: The biblio refs [[CSS21]] and [[CSS2]] are both aliases of the same b LINE ~1631: The biblio refs [[CSS21]] and [[CSS2]] are both aliases of the same base reference [[CSS21]]. Please choose one name and use it consistently. LINE 1145: Multiple elements have the same ID 'dom-namedflow-getregionsbycontent'. Deduping, but this ID may not be stable across revisions. -LINE ~1700: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~1930: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~1961: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' WARNING: Multiple elements have the same ID 'biblio-css2'. Deduping, but this ID may not be stable across revisions. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-regions-1/Overview.html b/tests/github/w3c/csswg-drafts/css-regions-1/Overview.html index 2fb55c8fcf..2f78991886 100644 --- a/tests/github/w3c/csswg-drafts/css-regions-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-regions-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Regions Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-regions-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1083,7 +1082,7 @@ <h1 class="p-name no-ref" id="title">CSS Regions Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1105,7 +1104,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-regions] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-regions%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2422,7 +2421,7 @@ <h5 class="heading settled" data-level="7.3.1.2" id="rfcb-flow-fragment-height-r using the remainder of the flow and accounting for <a href="https://www.w3.org/TR/css3-break/">fragmentation rules</a>. This process accounts for constraints - such as the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height②">height</a> or <a class="property css" data-link-type="property">max-height</a> values, + such as the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height②">height</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a> values, as described in the CSS 2.1 section on <a href="https://www.w3.org/TR/CSS2/visudet.html#Computing_heights_and_margins">calculating heights and margins</a> (see the <a href="https://www.w3.org/TR/CSS2/visudet.html#normal-block">Block-level non-replaced elements in normal flow...</a> section and the <a href="https://www.w3.org/TR/CSS2/visudet.html#block-root-margin">complicated cases</a> section). During this phase, @@ -2590,7 +2589,7 @@ <h4 class="heading settled" data-level="7.5.2" id="step1-phase2-example"><span c is resolved by laying out this first paragraph in the used <span class="property" id="ref-for-propdef-width①①">width</span>.</p> <p>At this point, the user agent lays out as much of the remaining flow as possible in RFCB-B. - Because rB’s <a class="property css" data-link-type="property">max-height</a> computed value is "150px", + Because rB’s <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a> computed value is "150px", the user agent only lays out the "article" named flow using RFCB-B’s used <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width①②">width</a> until the point where laying out additional content would cause RFCB-B to overflow rB’s box. @@ -2610,7 +2609,7 @@ <h4 class="heading settled" data-level="7.5.3" id="step2-example"><span class="s <p>Resolving the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height⑨">height</a> of rA <a href="https://www.w3.org/TR/CSS2/visudet.html#normal-block">requires a content measure</a> which is FH-A (the flow fragment height for RFCB-A).</p> <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①⓪">height</a> of rB results from first computing its <a href="https://www.w3.org/TR/CSS2/visudet.html#block-root-margin">content measure</a> and then applying the <a href="https://www.w3.org/TR/CSS2/visudet.html#min-max-heights">rules for max-height</a>. Here, the vertical content measure evaluates to FH-B. - After applying the rules for <a class="property css" data-link-type="property">max-height</a> and accounting for margins, padding and borders, + After applying the rules for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height②">max-height</a> and accounting for margins, padding and borders, the used <span class="property" id="ref-for-propdef-height①①">height</span> of rB is resolved to LH-B (<code>150px</code>).</p> <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①②">height</a> of rC’s box results from <a href="https://www.w3.org/TR/CSS2/visudet.html#block-root-margin">calculating its content measure</a>: @@ -2993,6 +2992,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="358fd6ff">css-wide keywords</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + </ul> <li> <a data-link-type="biblio">[CSS3-BREAK]</a> defines the following terms: <ul> @@ -3037,7 +3041,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Ian Kilpatrick. <a href="https://drafts.csswg.org/css-anchor-position-1/"><cite>CSS Anchor Positioning</cite></a>. URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] @@ -3049,9 +3053,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-content-3">[CSS-CONTENT-3] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -3096,7 +3100,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css3-page-template">[CSS3-PAGE-TEMPLATE] <dd>Alan Stearns. <a href="https://drafts.csswg.org/css-page-template-1/"><cite>CSS Pagination Templates Module Level 3</cite></a>. Proposal for a CSS module. URL: <a href="https://drafts.csswg.org/css-page-template-1/">https://drafts.csswg.org/css-page-template-1/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-cssom-view">[CSSOM-VIEW] <dd>Simon Pieters. <a href="https://drafts.csswg.org/cssom-view/"><cite>CSSOM View Module</cite></a>. URL: <a href="https://drafts.csswg.org/cssom-view/">https://drafts.csswg.org/cssom-view/</a> <dt id="biblio-html">[HTML] @@ -3481,6 +3485,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dom-region-regionoverset": {"dfnID":"dom-region-regionoverset","dfnText":"regionOverset","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-region-regionoverset"},{"id":"ref-for-dom-region-regionoverset\u2460"}],"title":"4.2. \nThe Region mixin"}],"url":"#dom-region-regionoverset"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"3.2. \nThe flow-from property"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "element": {"dfnID":"element","dfnText":"element","external":false,"refSections":[],"url":"#element"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"7.3.1.2. \nRFCB flow fragment height resolution, Phase 2"},{"refs":[{"id":"ref-for-propdef-max-height\u2460"}],"title":"7.5.2. \nStep 1 - Phase 2: Layout flow to compute the RFCBs' flow fragments heights"},{"refs":[{"id":"ref-for-propdef-max-height\u2461"}],"title":"7.5.3. \nStep 2: Layout document and regions without named flows"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "flow-fragment-height": {"dfnID":"flow-fragment-height","dfnText":"flow fragment height","external":false,"refSections":[],"url":"#flow-fragment-height"}, "last-usable-region": {"dfnID":"last-usable-region","dfnText":"last usable region","external":false,"refSections":[{"refs":[{"id":"ref-for-last-usable-region"}],"title":"2.5. \nRegions flow breaking rules"},{"refs":[{"id":"ref-for-last-usable-region\u2460"},{"id":"ref-for-last-usable-region\u2461"},{"id":"ref-for-last-usable-region\u2462"}],"title":"3.4. \nThe region-fragment property"},{"refs":[{"id":"ref-for-last-usable-region\u2463"}],"title":"4.1. \nThe NamedFlow interface"},{"refs":[{"id":"ref-for-last-usable-region\u2464"},{"id":"ref-for-last-usable-region\u2465"},{"id":"ref-for-last-usable-region\u2466"},{"id":"ref-for-last-usable-region\u2467"},{"id":"ref-for-last-usable-region\u2468"}],"title":"4.2. \nThe Region mixin"},{"refs":[{"id":"ref-for-last-usable-region\u2460\u24ea"}],"title":"5. \nMulti-column regions"}],"url":"#last-usable-region"}, "named-flow": {"dfnID":"named-flow","dfnText":"named flow","external":false,"refSections":[{"refs":[{"id":"ref-for-named-flow"},{"id":"ref-for-named-flow\u2460"},{"id":"ref-for-named-flow\u2461"},{"id":"ref-for-named-flow\u2462"},{"id":"ref-for-named-flow\u2463"},{"id":"ref-for-named-flow\u2464"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-named-flow\u2465"}],"title":"2.1. \nRegions"},{"refs":[{"id":"ref-for-named-flow\u2466"},{"id":"ref-for-named-flow\u2467"}],"title":"2.2. \nRegion chain"},{"refs":[{"id":"ref-for-named-flow\u2468"},{"id":"ref-for-named-flow\u2460\u24ea"},{"id":"ref-for-named-flow\u2460\u2460"},{"id":"ref-for-named-flow\u2460\u2461"},{"id":"ref-for-named-flow\u2460\u2462"},{"id":"ref-for-named-flow\u2460\u2463"}],"title":"2.4. \nNamed flows"},{"refs":[{"id":"ref-for-named-flow\u2460\u2464"},{"id":"ref-for-named-flow\u2460\u2465"},{"id":"ref-for-named-flow\u2460\u2466"},{"id":"ref-for-named-flow\u2460\u2467"}],"title":"2.5. \nRegions flow breaking rules"},{"refs":[{"id":"ref-for-named-flow\u2460\u2468"},{"id":"ref-for-named-flow\u2461\u24ea"},{"id":"ref-for-named-flow\u2461\u2460"},{"id":"ref-for-named-flow\u2461\u2461"},{"id":"ref-for-named-flow\u2461\u2462"},{"id":"ref-for-named-flow\u2461\u2463"},{"id":"ref-for-named-flow\u2461\u2464"},{"id":"ref-for-named-flow\u2461\u2465"},{"id":"ref-for-named-flow\u2461\u2466"},{"id":"ref-for-named-flow\u2461\u2467"},{"id":"ref-for-named-flow\u2461\u2468"},{"id":"ref-for-named-flow\u2462\u24ea"},{"id":"ref-for-named-flow\u2462\u2460"},{"id":"ref-for-named-flow\u2462\u2461"},{"id":"ref-for-named-flow\u2462\u2462"},{"id":"ref-for-named-flow\u2462\u2463"}],"title":"3.1. \nThe flow-into property"},{"refs":[{"id":"ref-for-named-flow\u2462\u2464"},{"id":"ref-for-named-flow\u2462\u2465"},{"id":"ref-for-named-flow\u2462\u2466"}],"title":"3.2. \nThe flow-from property"},{"refs":[{"id":"ref-for-named-flow\u2462\u2467"},{"id":"ref-for-named-flow\u2462\u2468"},{"id":"ref-for-named-flow\u2463\u24ea"},{"id":"ref-for-named-flow\u2463\u2460"},{"id":"ref-for-named-flow\u2463\u2461"},{"id":"ref-for-named-flow\u2463\u2462"},{"id":"ref-for-named-flow\u2463\u2463"},{"id":"ref-for-named-flow\u2463\u2464"},{"id":"ref-for-named-flow\u2463\u2465"},{"id":"ref-for-named-flow\u2463\u2466"}],"title":"3.2.1. \nCycle Detection"},{"refs":[{"id":"ref-for-named-flow\u2463\u2467"}],"title":"3.2.2. \nNested fragmentation contexts"},{"refs":[{"id":"ref-for-named-flow\u2463\u2468"}],"title":"3.4. \nThe region-fragment property"},{"refs":[{"id":"ref-for-named-flow\u2464\u24ea"},{"id":"ref-for-named-flow\u2464\u2460"},{"id":"ref-for-named-flow\u2464\u2461"},{"id":"ref-for-named-flow\u2464\u2462"},{"id":"ref-for-named-flow\u2464\u2463"},{"id":"ref-for-named-flow\u2464\u2464"},{"id":"ref-for-named-flow\u2464\u2465"},{"id":"ref-for-named-flow\u2464\u2466"},{"id":"ref-for-named-flow\u2464\u2467"},{"id":"ref-for-named-flow\u2464\u2468"},{"id":"ref-for-named-flow\u2465\u24ea"},{"id":"ref-for-named-flow\u2465\u2460"},{"id":"ref-for-named-flow\u2465\u2461"},{"id":"ref-for-named-flow\u2465\u2462"},{"id":"ref-for-named-flow\u2465\u2463"},{"id":"ref-for-named-flow\u2465\u2464"},{"id":"ref-for-named-flow\u2465\u2465"},{"id":"ref-for-named-flow\u2465\u2466"},{"id":"ref-for-named-flow\u2465\u2467"},{"id":"ref-for-named-flow\u2465\u2468"}],"title":"4.1. \nThe NamedFlow interface"},{"refs":[{"id":"ref-for-named-flow\u2466\u24ea"},{"id":"ref-for-named-flow\u2466\u2460"},{"id":"ref-for-named-flow\u2466\u2461"},{"id":"ref-for-named-flow\u2466\u2462"},{"id":"ref-for-named-flow\u2466\u2463"},{"id":"ref-for-named-flow\u2466\u2464"},{"id":"ref-for-named-flow\u2466\u2465"},{"id":"ref-for-named-flow\u2466\u2466"}],"title":"4.2. \nThe Region mixin"},{"refs":[{"id":"ref-for-named-flow\u2466\u2467"},{"id":"ref-for-named-flow\u2466\u2468"}],"title":"4.4.2. \noffsetTop, offsetLeft,\noffsetWidth, offsetHeight and offsetParent"},{"refs":[{"id":"ref-for-named-flow\u2467\u24ea"},{"id":"ref-for-named-flow\u2467\u2460"}],"title":"5. \nMulti-column regions"},{"refs":[{"id":"ref-for-named-flow\u2467\u2461"},{"id":"ref-for-named-flow\u2467\u2462"}],"title":"7. \nRegions visual formatting details"},{"refs":[{"id":"ref-for-named-flow\u2467\u2463"}],"title":"7.2. \nThe Region Flow Content Box (RFCB)"},{"refs":[{"id":"ref-for-named-flow\u2467\u2464"},{"id":"ref-for-named-flow\u2467\u2465"}],"title":"7.2.1. \nRFCB width resolution"},{"refs":[{"id":"ref-for-named-flow\u2467\u2466"},{"id":"ref-for-named-flow\u2467\u2467"},{"id":"ref-for-named-flow\u2467\u2468"},{"id":"ref-for-named-flow\u2468\u24ea"}],"title":"7.3. \nRegions visual formatting steps"},{"refs":[{"id":"ref-for-named-flow\u2468\u2460"}],"title":"7.3.1.1. \nRFCB flow fragment height resolution, Phase 1"},{"refs":[{"id":"ref-for-named-flow\u2468\u2461"},{"id":"ref-for-named-flow\u2468\u2462"},{"id":"ref-for-named-flow\u2468\u2463"}],"title":"7.3.1.2. \nRFCB flow fragment height resolution, Phase 2"},{"refs":[{"id":"ref-for-named-flow\u2468\u2464"}],"title":"7.3.2. \nStep 2: region boxes layout"},{"refs":[{"id":"ref-for-named-flow\u2468\u2465"},{"id":"ref-for-named-flow\u2468\u2466"},{"id":"ref-for-named-flow\u2468\u2467"},{"id":"ref-for-named-flow\u2468\u2468"}],"title":"7.3.3. \nStep 3: named flows layout"},{"refs":[{"id":"ref-for-named-flow\u2460\u24ea\u24ea"}],"title":"7.4. \nRegions visual formatting: implementation note"},{"refs":[{"id":"ref-for-named-flow\u2460\u24ea\u2460"}],"title":"7.5.3. \nStep 2: Layout document and regions without named flows"},{"refs":[{"id":"ref-for-named-flow\u2460\u24ea\u2461"},{"id":"ref-for-named-flow\u2460\u24ea\u2462"}],"title":"7.5.4. \nStep 3: named flows layout"},{"refs":[{"id":"ref-for-named-flow\u2460\u24ea\u2463"}],"title":"8. \nRelation to document events"}],"url":"#named-flow"}, @@ -3999,6 +4004,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#idl-boolean": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"boolean","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-boolean"}, "https://webidl.spec.whatwg.org/#idl-sequence": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"sequence","type":"dfn","url":"https://webidl.spec.whatwg.org/#idl-sequence"}, "https://webidl.spec.whatwg.org/#idl-short": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"short","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-short"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.console.txt index d981ac5bbb..3a88cc64c1 100644 --- a/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.console.txt @@ -5,3 +5,4 @@ LINE 55: Image doesn't exist, so I couldn't determine its width and height: 'ima LINE 400: Image doesn't exist, so I couldn't determine its width and height: 'images/adjust-line-height.svg' WARNING: Multiple elements have the same ID 'biblio-css21'. Deduping, but this ID may not be stable across revisions. +LINE 496: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.html b/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.html index c30556a989..c2cfe60dac 100644 --- a/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-rhythm-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Rhythmic Sizing</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-rhythm-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1078,7 +1077,7 @@ <h1 class="p-name no-ref" id="title">CSS Rhythmic Sizing</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1101,7 +1100,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-rhythm] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-rhythm%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1820,9 +1819,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-line-grid-1">[CSS-LINE-GRID-1] <dd>Elika Etemad; Koji Ishii; Alan Stearns. <a href="https://drafts.csswg.org/css-line-grid/"><cite>CSS Line Grid Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-line-grid/">https://drafts.csswg.org/css-line-grid/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -1841,11 +1840,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-page">[CSS3-PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> diff --git a/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.console.txt index 6c99a044ad..d9997dac3e 100644 --- a/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.console.txt @@ -83,19 +83,6 @@ LINE 383: Image doesn't exist, so I couldn't determine its width and height: 'im LINE 398: Image doesn't exist, so I couldn't determine its width and height: 'images/shape_inside_a.png' LINE 455: Image doesn't exist, so I couldn't determine its width and height: 'images/border_boundary_a.png' LINE 459: Image doesn't exist, so I couldn't determine its width and height: 'images/border_boundary_b.png' -FATAL ERROR: A biblio link references CSS-SHAPES-2, but only css-shapes-1 exists in SpecRef. -LINE ~88: Couldn't find 'CSS-SHAPES-2' in bibliography data. Did you mean: - css-images-3 - css-images-4 - css-page-3 - css-shapes - css-shapes-1 -LINE ~336: Couldn't find 'CSS-SHAPES-2' in bibliography data. Did you mean: - css-images-3 - css-images-4 - css-page-3 - css-shapes - css-shapes-1 LINE ~57: No 'property' refs found for 'shape'. 'shape' LINE ~97: No 'property' refs found for 'shape'. @@ -132,8 +119,6 @@ LINE ~309: No 'property' refs found for 'viewport-fit'. 'viewport-fit' LINE 1: No 'type' refs found for '<basic-shape>' with spec 'css-shapes-2'. <<basic-shape>> -LINE 1: No 'type' refs found for '<uri>' with spec 'css2'. -<<uri>> LINE 393: No 'type' refs found for '<basic-shape>' with spec 'css-shapes-2'. <<basic-shape>> LINE ~486: No 'property' refs found for 'shape'. diff --git a/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.html b/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.html index 97dc1272d5..b5ddec7df5 100644 --- a/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-round-display-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Round Display Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-round-display-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -867,7 +866,7 @@ <h1 class="p-name no-ref" id="title">CSS Round Display Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -889,7 +888,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-round-display] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-round-display%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -995,7 +994,7 @@ <h3 class="heading settled" data-level="1.1" id="values"><span class="secno">1.1 also accept the <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-wide-keywords" id="ref-for-css-wide-keywords">CSS-wide keywords</a> as their property value. For readability they have not been repeated explicitly.</p> <h2 class="heading settled" data-level="2" id="terminology"><span class="secno">2. </span><span class="content">Terminology</span><a class="self-link" href="#terminology"></a></h2> - <p>This specification follows the CSS property definition conventions from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. <br> The detailed description of Media Queries is defined in <a data-link-type="biblio" href="#biblio-mediaqueries-4" title="Media Queries Level 4">[MEDIAQUERIES-4]</a><br> The detailed description of CSS Shapes is defined in <span>[CSS-SHAPES-2]</span><br> The detailed description of Backgrounds and Borders is defined in <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a><br> The detailed description of Positioned Layout is defined in <a data-link-type="biblio" href="#biblio-css3-positioning" title="CSS Positioned Layout Module Level 3">[CSS3-POSITIONING]</a><br></p> + <p>This specification follows the CSS property definition conventions from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. <br> The detailed description of Media Queries is defined in <a data-link-type="biblio" href="#biblio-mediaqueries-4" title="Media Queries Level 4">[MEDIAQUERIES-4]</a><br> The detailed description of CSS Shapes is defined in <a data-link-type="biblio" href="#biblio-css-shapes-2" title="CSS Shapes Module Level 2">[CSS-SHAPES-2]</a><br> The detailed description of Backgrounds and Borders is defined in <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a><br> The detailed description of Positioned Layout is defined in <a data-link-type="biblio" href="#biblio-css3-positioning" title="CSS Positioned Layout Module Level 3">[CSS3-POSITIONING]</a><br></p> <h2 class="heading settled" data-level="3" id="extending-media-queries"><span class="secno">3. </span><span class="content">Detecting the shape of the display</span><a class="self-link" href="#extending-media-queries"></a></h2> <p>Media Queries <a data-link-type="biblio" href="#biblio-mediaqueries-4" title="Media Queries Level 4">[MEDIAQUERIES-4]</a> define mechanisms to support media-dependent style sheets, tailored for different environments. We propose to extend Media Queries @@ -1186,7 +1185,7 @@ <h3 class="heading settled" data-level="4.1" id="viewport-fit-descriptor"><span </div> <h2 class="heading settled" data-level="5" id="aligning-content"><span class="secno">5. </span><span class="content">Aligning content along the display border</span><a class="self-link" href="#aligning-content"></a></h2> <h3 class="heading settled" data-level="5.1" id="shape-inside-property"><span class="secno">5.1. </span><span class="content">The <a class="property css" data-link-type="property" href="#propdef-shape-inside" id="ref-for-propdef-shape-inside①">shape-inside</a> property</span><a class="self-link" href="#shape-inside-property"></a></h3> - <p>CSS Shapes <span>[CSS-SHAPES-2]</span> define the <a class="property css" data-link-type="property" href="#propdef-shape-inside" id="ref-for-propdef-shape-inside②">shape-inside</a> property that aligns contents along the edge of a possibly non-rectangular wrapping area. Web authors may use this feature to fit contents inside a round display. However, it can be challenging to specify the wrapping area to be identical to the shape of a display. To address such cases, <span class="property" id="ref-for-propdef-shape-inside③">shape-inside</span> is extended with a new value named '<code>display</code>', such an element having this value will have its content (or contained elements) aligned along the display border automatically.</p> + <p>CSS Shapes <a data-link-type="biblio" href="#biblio-css-shapes-2" title="CSS Shapes Module Level 2">[CSS-SHAPES-2]</a> define the <a class="property css" data-link-type="property" href="#propdef-shape-inside" id="ref-for-propdef-shape-inside②">shape-inside</a> property that aligns contents along the edge of a possibly non-rectangular wrapping area. Web authors may use this feature to fit contents inside a round display. However, it can be challenging to specify the wrapping area to be identical to the shape of a display. To address such cases, <span class="property" id="ref-for-propdef-shape-inside③">shape-inside</span> is extended with a new value named '<code>display</code>', such an element having this value will have its content (or contained elements) aligned along the display border automatically.</p> <table class="def propdef" data-link-for-hint="shape-inside"> <tbody> <tr> @@ -1209,7 +1208,7 @@ <h3 class="heading settled" data-level="5.1" id="shape-inside-property"><span cl <td>n/a <tr> <th><a href="https://www.w3.org/TR/css-cascade/#computed">Computed value:</a> - <td>computed lengths for <a class="production css" data-link-type="type">&lt;basic-shape></a>, the absolute URI for <span class="production">&lt;uri></span>, otherwise as specified + <td>computed lengths for <a class="production css" data-link-type="type">&lt;basic-shape></a>, the absolute URI for <a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/syndata.html#value-def-uri" id="ref-for-value-def-uri">&lt;uri></a>, otherwise as specified <tr> <th><a href="https://www.w3.org/TR/cssom/#serializing-css-values">Canonical order:</a> <td>per grammar @@ -1476,6 +1475,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="8e76f952">&lt;uri></span> + </ul> <li> <a data-link-type="biblio">[MEDIAQUERIES-5]</a> defines the following terms: <ul> @@ -1494,7 +1498,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -1512,10 +1516,12 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> + <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> <dt id="biblio-css3-positioning">[CSS3-POSITIONING] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-mediaqueries-4">[MEDIAQUERIES-4] <dd>Florian Rivoal; Tab Atkins Jr.. <a href="https://drafts.csswg.org/mediaqueries-4/"><cite>Media Queries Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/mediaqueries-4/">https://drafts.csswg.org/mediaqueries-4/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] @@ -1808,6 +1814,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "6c1be06e": {"dfnID":"6c1be06e","dfnText":"offset-distance","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-offset-distance"}],"title":"8.1. \nChanges from March 1th 2016 version"}],"url":"https://drafts.fxtf.org/motion-1/#propdef-offset-distance"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"3.1. The shape media feature"},{"refs":[{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"}],"title":"4.1. The viewport-fit descriptor"},{"refs":[{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"}],"title":"5.1. The shape-inside property"},{"refs":[{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"}],"title":"6.1. The border-boundary property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"5.1. The shape-inside property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, +"8e76f952": {"dfnID":"8e76f952","dfnText":"<uri>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-uri"}],"title":"5.1. The shape-inside property"}],"url":"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri"}, "998b9e6e": {"dfnID":"998b9e6e","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"}],"title":"5.1. The shape-inside property"}],"url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, "c4484b93": {"dfnID":"c4484b93","dfnText":"true","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-custom-media-true"},{"id":"ref-for-valdef-custom-media-true\u2460"},{"id":"ref-for-valdef-custom-media-true\u2461"},{"id":"ref-for-valdef-custom-media-true\u2462"},{"id":"ref-for-valdef-custom-media-true\u2463"}],"title":"3.1. The shape media feature"}],"url":"https://drafts.csswg.org/mediaqueries-5/#valdef-custom-media-true"}, "descdef-media-shape": {"dfnID":"descdef-media-shape","dfnText":"shape","external":false,"refSections":[{"refs":[{"id":"ref-for-descdef-media-shape"},{"id":"ref-for-descdef-media-shape\u2460"},{"id":"ref-for-descdef-media-shape\u2461"}],"title":"3.1. The shape media feature"}],"url":"#descdef-media-shape"}, @@ -2224,6 +2231,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.fxtf.org/motion-1/#propdef-offset-distance": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"motion","spec":"motion-1","status":"current","text":"offset-distance","type":"property","url":"https://drafts.fxtf.org/motion-1/#propdef-offset-distance"}, "https://drafts.fxtf.org/motion-1/#propdef-offset-path": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"motion","spec":"motion-1","status":"current","text":"offset-path","type":"property","url":"https://drafts.fxtf.org/motion-1/#propdef-offset-path"}, "https://drafts.fxtf.org/motion-1/#propdef-offset-position": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"motion","spec":"motion-1","status":"current","text":"offset-position","type":"property","url":"https://drafts.fxtf.org/motion-1/#propdef-offset-position"}, +"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"<uri>","type":"type","url":"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-ruby-1/Overview.html b/tests/github/w3c/csswg-drafts/css-ruby-1/Overview.html index 92a940797e..0f0da92fa9 100644 --- a/tests/github/w3c/csswg-drafts/css-ruby-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-ruby-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Ruby Annotation Layout Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-ruby-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1090,7 +1089,7 @@ <h1 class="p-name no-ref" id="title">CSS Ruby Annotation Layout Module Level 1</ </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1114,7 +1113,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-ruby] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-ruby%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -3123,13 +3122,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -3164,7 +3163,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-clreq">[CLREQ] - <dd>Bobby Tung; et al. <a href="https://w3c.github.io/clreq/"><cite>Requirements for Chinese Text Layout - 中文排版需求</cite></a>. URL: <a href="https://w3c.github.io/clreq/">https://w3c.github.io/clreq/</a> + <dd>Fuqiao Xue; Richard Ishida. <a href="https://www.w3.org/International/clreq/"><cite>Requirements for Chinese Text Layout - 中文排版需求</cite></a>. URL: <a href="https://www.w3.org/International/clreq/">https://www.w3.org/International/clreq/</a> <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] diff --git a/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.console.txt index 5e7d25887b..3164b06b1f 100644 --- a/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.console.txt @@ -1,8 +1,57 @@ LINE 611:34: Garbage in an end tag. +LINE 65: Multiple possible 'type selectors' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#type-selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:type selector +spec:css2; type:dfn; text:type selector +<a bs-line-number="65" data-link-type="dfn" data-lt="type selectors">type selectors</a> LINE 72: No 'dfn' refs found for 'user agent origin'. <a bs-line-number="72" data-link-type="dfn" data-lt="user agent origin">user agent origin</a> LINE 83: No 'dfn' refs found for 'user agent origin'. <a bs-line-number="83" data-link-type="dfn" data-lt="user agent origin">user agent origin</a> +LINE 90: Multiple possible 'type selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#type-selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:type selector +spec:css2; type:dfn; text:type selector +<a bs-line-number="90" data-link-type="dfn" data-lt="type selector">type selector</a> +LINE 138: Multiple possible 'descendants' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="138" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 178: Multiple possible 'descendants' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="178" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 179: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="179" data-link-type="dfn" data-lt="children">children</a> +LINE 403: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="403" data-link-type="dfn" data-lt="children">children</a> +LINE 454: Multiple possible 'child' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:child +spec:wai-aria-1.2; type:dfn; text:child +spec:css2; type:dfn; text:child +<a bs-line-number="454" data-link-type="dfn" data-lt="child">child</a> +LINE 486: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +<a bs-line-number="486" data-link-type="dfn" data-lt="children">children</a> LINE ~557: Multiple possible 'font-family' descriptor refs. Arbitrarily chose https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-family To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -16,6 +65,7 @@ spec:dom; type:dfn; for:Attr; text:element spec:dom; type:dfn; for:/; text:element spec:dom; type:dfn; for:NamedNodeMap; text:element spec:csp3; type:dfn; text:element +spec:css2; type:dfn; text:element [=element=] LINE ~565: Multiple possible 'element' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-attribute-element @@ -24,6 +74,14 @@ spec:dom; type:dfn; for:Attr; text:element spec:dom; type:dfn; for:/; text:element spec:dom; type:dfn; for:NamedNodeMap; text:element spec:csp3; type:dfn; text:element +spec:css2; type:dfn; text:element [=element=] +LINE 591: Multiple possible 'color()' maybe refs. +Arbitrarily chose https://drafts.csswg.org/css-color-5/#funcdef-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-color-5; type:function; text:color() +spec:css-color-hdr; type:function; text:color() +''color()'' LINE ~599: No 'dfn' refs found for 'serialized'. [=serialized=] +LINE 696: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.html b/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.html index 545322118a..9474247cb3 100644 --- a/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-scoping-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Scoping Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-scoping-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1115,7 +1114,7 @@ <h1 class="p-name no-ref" id="title">CSS Scoping Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1137,7 +1136,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-scoping] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-scoping%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1220,7 +1219,7 @@ <h2 class="heading settled" data-level="2" id="default-element-styles"><span cla in all <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-shadow-tree" id="ref-for-concept-shadow-tree①">shadow trees</a>, and the rules in it apply at the <a data-link-type="dfn">user agent origin</a>, so author-level rules automatically win.</p> - <p><code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window">Window</a></code>s gain a private slot <dfn class="dfn-paneled idl-code" data-dfn-for="Window" data-dfn-type="attribute" data-export id="dom-window-defaultelementstylesmap-slot"><code>[[defaultElementStylesMap]]</code></dfn> which is a map of <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-element-local-name" id="ref-for-concept-element-local-name">local names</a> to <a data-link-type="dfn">stylesheets</a>.</p> + <p><code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#window" id="ref-for-window">Window</a></code>s gain a private slot <dfn class="dfn-paneled idl-code" data-dfn-for="Window" data-dfn-type="attribute" data-export id="dom-window-defaultelementstylesmap-slot"><code>[[defaultElementStylesMap]]</code></dfn> which is a map of <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-element-local-name" id="ref-for-concept-element-local-name">local names</a> to <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#css-stylesheet" id="ref-for-css-stylesheet">stylesheets</a>.</p> <p>These stylesheets must apply to every document in the window. They must be interpreted as user agent stylesheets.</p> <p class="note" role="note"><span class="marker">Note:</span> This implies, in particular, @@ -1846,6 +1845,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="762610c7">at-rule</span> + <li><span class="dfn-paneled" id="11e722f0">stylesheet</span> </ul> <li> <a data-link-type="biblio">[CSS-TYPED-OM-1]</a> defines the following terms: @@ -1907,7 +1907,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-cascade-4">[CSS-CASCADE-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-4/"><cite>CSS Cascading and Inheritance Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-4/">https://drafts.csswg.org/css-cascade-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] @@ -1919,11 +1919,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] @@ -1942,7 +1942,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-selectors-3">[SELECTORS-3] <dd>Tantek Çelik; et al. <a href="https://drafts.csswg.org/selectors-3/"><cite>Selectors Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/selectors-3/">https://drafts.csswg.org/selectors-3/</a> </dl> @@ -2236,6 +2236,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "03eee7b4": {"dfnID":"03eee7b4","dfnText":"color()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-color"}],"title":"3.5. \nName-Defining Constructs and Inheritance"}],"url":"https://drafts.csswg.org/css-color-5/#funcdef-color"}, "0497de86": {"dfnID":"0497de86","dfnText":"@font-face","external":true,"refSections":[{"refs":[{"id":"ref-for-at-font-face-rule"}],"title":"2. \nDefault Styles for Custom Elements"},{"refs":[{"id":"ref-for-at-font-face-rule\u2460"},{"id":"ref-for-at-font-face-rule\u2461"}],"title":"3.5. \nName-Defining Constructs and Inheritance"},{"refs":[{"id":"ref-for-at-font-face-rule\u2462"},{"id":"ref-for-at-font-face-rule\u2463"}],"title":"3.5.1. \nSerialized Tree-Scoped References"}],"url":"https://drafts.csswg.org/css-fonts-5/#at-font-face-rule"}, "0a78ad53": {"dfnID":"0a78ad53","dfnText":"@font-palette-values","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-font-palette-values"}],"title":"3.5. \nName-Defining Constructs and Inheritance"}],"url":"https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-palette-values"}, +"11e722f0": {"dfnID":"11e722f0","dfnText":"stylesheet","external":true,"refSections":[{"refs":[{"id":"ref-for-css-stylesheet"}],"title":"2. \nDefault Styles for Custom Elements"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-stylesheet"}, "1324ff49": {"dfnID":"1324ff49","dfnText":":not()","external":true,"refSections":[{"refs":[{"id":"ref-for-negation-pseudo"}],"title":"3.2.3. \nSelecting Into the Light: the :host, :host(), and :host-context() pseudo-classes"}],"url":"https://drafts.csswg.org/selectors-4/#negation-pseudo"}, "19f9e9df": {"dfnID":"19f9e9df","dfnText":"shadow tree","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-shadow-tree"},{"id":"ref-for-concept-shadow-tree\u2460"},{"id":"ref-for-concept-shadow-tree\u2461"}],"title":"2. \nDefault Styles for Custom Elements"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2462"},{"id":"ref-for-concept-shadow-tree\u2463"},{"id":"ref-for-concept-shadow-tree\u2464"},{"id":"ref-for-concept-shadow-tree\u2465"},{"id":"ref-for-concept-shadow-tree\u2466"},{"id":"ref-for-concept-shadow-tree\u2467"},{"id":"ref-for-concept-shadow-tree\u2468"},{"id":"ref-for-concept-shadow-tree\u2460\u24ea"}],"title":"3.1. \nInformative Explanation of Shadow DOM"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2460\u2460"},{"id":"ref-for-concept-shadow-tree\u2460\u2461"},{"id":"ref-for-concept-shadow-tree\u2460\u2462"},{"id":"ref-for-concept-shadow-tree\u2460\u2463"}],"title":"3.2.1. \nMatching Selectors Against Shadow Trees"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2460\u2464"},{"id":"ref-for-concept-shadow-tree\u2460\u2465"},{"id":"ref-for-concept-shadow-tree\u2460\u2466"},{"id":"ref-for-concept-shadow-tree\u2460\u2467"},{"id":"ref-for-concept-shadow-tree\u2460\u2468"},{"id":"ref-for-concept-shadow-tree\u2461\u24ea"},{"id":"ref-for-concept-shadow-tree\u2461\u2460"},{"id":"ref-for-concept-shadow-tree\u2461\u2461"}],"title":"3.2.2. \nSelecting Shadow Hosts from within a Shadow Tree"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2461\u2462"},{"id":"ref-for-concept-shadow-tree\u2461\u2463"},{"id":"ref-for-concept-shadow-tree\u2461\u2464"},{"id":"ref-for-concept-shadow-tree\u2461\u2465"},{"id":"ref-for-concept-shadow-tree\u2461\u2466"},{"id":"ref-for-concept-shadow-tree\u2461\u2467"},{"id":"ref-for-concept-shadow-tree\u2461\u2468"}],"title":"3.2.3. \nSelecting Into the Light: the :host, :host(), and :host-context() pseudo-classes"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2462\u24ea"}],"title":"3.2.4. \nSelecting Slot-Assigned Content: the ::slotted() pseudo-element"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2462\u2460"},{"id":"ref-for-concept-shadow-tree\u2462\u2461"},{"id":"ref-for-concept-shadow-tree\u2462\u2462"},{"id":"ref-for-concept-shadow-tree\u2462\u2463"}],"title":"3.4. \nFlattening the DOM into an Element Tree"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2462\u2464"},{"id":"ref-for-concept-shadow-tree\u2462\u2465"},{"id":"ref-for-concept-shadow-tree\u2462\u2466"}],"title":"3.5. \nName-Defining Constructs and Inheritance"},{"refs":[{"id":"ref-for-concept-shadow-tree\u2462\u2467"},{"id":"ref-for-concept-shadow-tree\u2462\u2468"}],"title":"3.5.1. \nSerialized Tree-Scoped References"}],"url":"https://dom.spec.whatwg.org/#concept-shadow-tree"}, "24408a11": {"dfnID":"24408a11","dfnText":"compound selector","external":true,"refSections":[{"refs":[{"id":"ref-for-compound"}],"title":"2. \nDefault Styles for Custom Elements"}],"url":"https://drafts.csswg.org/selectors-4/#compound"}, @@ -2785,6 +2786,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-lists-3/#propdef-list-style-type": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-lists","spec":"css-lists-3","status":"current","text":"list-style-type","type":"property","url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, "https://drafts.csswg.org/css-pseudo-4/#tree-abiding": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"tree-abiding pseudo-element","type":"dfn","url":"https://drafts.csswg.org/css-pseudo-4/#tree-abiding"}, "https://drafts.csswg.org/css-syntax-3/#at-rule": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"at-rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#at-rule"}, +"https://drafts.csswg.org/css-syntax-3/#css-stylesheet": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"stylesheet","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-stylesheet"}, "https://drafts.csswg.org/selectors-3/#x": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"selectors","spec":"selectors-3","status":"current","text":"*","type":"selector","url":"https://drafts.csswg.org/selectors-3/#x"}, "https://drafts.csswg.org/selectors-4/#complex": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"complex selector","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#complex"}, "https://drafts.csswg.org/selectors-4/#compound": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"compound selector","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#compound"}, diff --git a/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.console.txt index 55952a7ed6..d8deee09e0 100644 --- a/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.console.txt @@ -20,4 +20,10 @@ LINT: Your document appears to use tabs to indent, but line 126 starts with spac LINT: Your document appears to use tabs to indent, but line 127 starts with spaces. LINT: Your document appears to use tabs to indent, but line 128 starts with spaces. LINT: Your document appears to use tabs to indent, but line 129 starts with spaces. +LINE 110: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="110" data-link-type="dfn" data-lt="descendant">descendant</a> LINE 331: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.html b/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.html index be742dc266..d2db905cf6 100644 --- a/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-scroll-anchoring-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Scroll Anchoring Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-scroll-anchoring-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -995,7 +994,7 @@ <h1 class="p-name no-ref" id="title">CSS Scroll Anchoring Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1021,7 +1020,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-scroll-anchoring] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-scroll-anchoring%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1558,7 +1557,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -1624,7 +1623,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> diff --git a/tests/github/w3c/csswg-drafts/css-scroll-snap-1/Overview.html b/tests/github/w3c/csswg-drafts/css-scroll-snap-1/Overview.html index 7554870d2d..ab1fee261a 100644 --- a/tests/github/w3c/csswg-drafts/css-scroll-snap-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-scroll-snap-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Scroll Snap Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-scroll-snap-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1087,7 +1086,7 @@ <h1 class="p-name no-ref" id="title">CSS Scroll Snap Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1109,7 +1108,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-scroll-snap] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-scroll-snap%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>A test suite and an implementation report will be produced during the CR period.</p> @@ -1461,7 +1460,7 @@ <h4 class="heading settled dfn-paneled" data-dfn-type="dfn" data-export data-lev <p>If the content or layout of the document changes (e.g. content is added, moved, deleted, resized) such that the content of a <a data-link-type="dfn" href="#scroll-snapport" id="ref-for-scroll-snapport①">snapport</a> changes, - the UA must re-evaluate the resulting <a data-link-type="dfn">scroll position</a>, + the UA must re-evaluate the resulting <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scroll-position" id="ref-for-scroll-position">scroll position</a>, and re-snap if required. If the <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scroll-container" id="ref-for-scroll-container②⑦">scroll container</a> was <a data-link-type="dfn" href="#scroll-snap" id="ref-for-scroll-snap①③">snapped</a> before the content change and that same <a data-link-type="dfn" href="#scroll-snap-position" id="ref-for-scroll-snap-position①⑧">snap position</a> still exists @@ -1882,7 +1881,7 @@ <h3 class="heading settled" data-level="5.3" id="scroll-snap-stop"><span class=" if the scrolling operation used the same direction but a lesser distance) before reaching the natural endpoint of the scroll operation - and selecting its final <a data-link-type="dfn">scroll position</a>. + and selecting its final <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scroll-position" id="ref-for-scroll-position①">scroll position</a>. The <a class="property css" data-link-type="property" href="#propdef-scroll-snap-stop" id="ref-for-propdef-scroll-snap-stop②">scroll-snap-stop</a> property allows such a possible <span id="ref-for-scroll-snap-position④⓪">snap position</span> to “trap” the scrolling operation, forcing the <span id="ref-for-scroll-container③⑨">scroll container</span> to stop before the scrolling operation would naturally end.</p> @@ -2685,6 +2684,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="86928bde">overflow</span> <li><span class="dfn-paneled" id="86923d07">scroll container</span> + <li><span class="dfn-paneled" id="f2eb15d9">scroll position</span> <li><span class="dfn-paneled" id="1b08e188">scroll-behavior</span> <li><span class="dfn-paneled" id="99a64665">scrollable overflow area</span> <li><span class="dfn-paneled" id="60bbf126">scrollport</span> @@ -2749,7 +2749,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -3048,7 +3048,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-block-end" title="The scroll-margin-block-end property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container&apos;s coordinate space), then adding the specified outsets.">scroll-margin-block-end</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3061,7 +3061,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-block-start" title="The scroll-margin-block-start property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container&apos;s coordinate space), then adding the specified outsets.">scroll-margin-block-start</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3074,7 +3074,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-inline-end" title="The scroll-margin-inline-end property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container&apos;s coordinate space), then adding the specified outsets.">scroll-margin-inline-end</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3087,7 +3087,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-inline-start" title="The scroll-margin-inline-start property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container&apos;s coordinate space), then adding the specified outsets.">scroll-margin-inline-start</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3103,7 +3103,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-block" title="The scroll-margin-block shorthand property sets the scroll margins of an element in the block dimension.">scroll-margin-block</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3174,7 +3174,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin-inline" title="The scroll-margin-inline shorthand property sets the scroll margins of an element in the inline dimension.">scroll-margin-inline</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3396,7 +3396,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-type" title="The scroll-snap-type CSS property sets how strictly snap points are enforced on the scroll container in case there is one.">scroll-snap-type</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>68+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> + <span class="firefox yes"><span>Firefox</span><span>99+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>69+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3641,6 +3641,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "e1ab41b7": {"dfnID":"e1ab41b7","dfnText":"block axis","external":true,"refSections":[{"refs":[{"id":"ref-for-block-axis"}],"title":"4.1. Scroll Snapping Rules: the scroll-snap-type property"},{"refs":[{"id":"ref-for-block-axis\u2460"}],"title":"5.2. Scroll Snapping Alignment: the scroll-snap-align property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-axis"}, "e7a4e2e2": {"dfnID":"e7a4e2e2","dfnText":"alignment container","external":true,"refSections":[{"refs":[{"id":"ref-for-alignment-container"}],"title":"3. Scroll Snap Model"},{"refs":[{"id":"ref-for-alignment-container\u2460"}],"title":"4.2. Scroll Snapport: the scroll-padding property"},{"refs":[{"id":"ref-for-alignment-container\u2461"}],"title":"5.2. Scroll Snapping Alignment: the scroll-snap-align property"}],"url":"https://drafts.csswg.org/css-align-3/#alignment-container"}, "efe16f32": {"dfnID":"efe16f32","dfnText":":target","external":true,"refSections":[{"refs":[{"id":"ref-for-target-pseudo"}],"title":"5.1. Scroll Snapping Area: the scroll-margin property"},{"refs":[{"id":"ref-for-target-pseudo\u2460"}],"title":"6.2. Choosing Snap Positions"},{"refs":[{"id":"ref-for-target-pseudo\u2461"}],"title":"9.2. Changes Since 31 January 2019 CR"},{"refs":[{"id":"ref-for-target-pseudo\u2462"},{"id":"ref-for-target-pseudo\u2463"},{"id":"ref-for-target-pseudo\u2464"},{"id":"ref-for-target-pseudo\u2465"}],"title":"9.5. Changes Since 24 August 2017 CR"}],"url":"https://drafts.csswg.org/selectors-4/#target-pseudo"}, +"f2eb15d9": {"dfnID":"f2eb15d9","dfnText":"scroll position","external":true,"refSections":[{"refs":[{"id":"ref-for-scroll-position"}],"title":"4.1.3. \nRe-snapping After Layout Changes"},{"refs":[{"id":"ref-for-scroll-position\u2460"}],"title":"5.3. Scroll Snap Limits: the scroll-snap-stop property"}],"url":"https://drafts.csswg.org/css-overflow-3/#scroll-position"}, "f616a86d": {"dfnID":"f616a86d","dfnText":"inset properties","external":true,"refSections":[{"refs":[{"id":"ref-for-inset-properties"}],"title":"4.2. Scroll Snapport: the scroll-padding property"},{"refs":[{"id":"ref-for-inset-properties\u2460"}],"title":"9.1. Changes Since 19 March 2019 CR"}],"url":"https://drafts.csswg.org/css-logical-1/#inset-properties"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"}],"title":"5.1. Scroll Snapping Area: the scroll-margin property"},{"refs":[{"id":"ref-for-length-value\u2460"}],"title":"Physical Longhands for scroll-margin"},{"refs":[{"id":"ref-for-length-value\u2461"},{"id":"ref-for-length-value\u2462"}],"title":"Flow-relative Longhands for scroll-margin"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "fd0c9e35": {"dfnID":"fd0c9e35","dfnText":"::after","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-after"}],"title":"4.1.3. \nRe-snapping After Layout Changes"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-after"}, @@ -4218,6 +4219,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-overflow-3/#propdef-overflow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"overflow","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "https://drafts.csswg.org/css-overflow-3/#propdef-scroll-behavior": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scroll-behavior","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-scroll-behavior"}, "https://drafts.csswg.org/css-overflow-3/#scroll-container": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scroll container","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scroll-container"}, +"https://drafts.csswg.org/css-overflow-3/#scroll-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scroll position","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scroll-position"}, "https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scrollable overflow area","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region"}, "https://drafts.csswg.org/css-overflow-3/#scrollport": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"scrollport","type":"dfn","url":"https://drafts.csswg.org/css-overflow-3/#scrollport"}, "https://drafts.csswg.org/css-position-3/#fixed-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-position","spec":"css-position-3","status":"current","text":"fixed-positioned box","type":"dfn","url":"https://drafts.csswg.org/css-position-3/#fixed-position"}, diff --git a/tests/github/w3c/csswg-drafts/css-scrollbars-1/Overview.html b/tests/github/w3c/csswg-drafts/css-scrollbars-1/Overview.html index 476fa56e8b..6a29efad47 100644 --- a/tests/github/w3c/csswg-drafts/css-scrollbars-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-scrollbars-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Scrollbars Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-scrollbars/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -948,7 +947,7 @@ <h1 class="p-name no-ref" id="title">CSS Scrollbars Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -973,7 +972,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-scrollbars] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-scrollbars%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1425,7 +1424,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-wcag21">[WCAG21] - <dd>Andrew Kirkpatrick; et al. <a href="https://w3c.github.io/wcag/21/guidelines/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/21/guidelines/">https://w3c.github.io/wcag/21/guidelines/</a> + <dd>Michael Cooper; et al. <a href="https://w3c.github.io/wcag/guidelines/22/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/guidelines/22/">https://w3c.github.io/wcag/guidelines/22/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -1476,19 +1475,18 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>64+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="scrollbar-width"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width" title="The scrollbar-width property allows the author to set the maximum thickness of an element&apos;s scrollbars when they are shown.">scrollbar-width</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span title="Requires setting a user preference or runtime flag.">🔰 preview+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 preview+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2098,7 +2096,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", }; function setTypeTitles() { diff --git a/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.console.txt index b230d7f1a1..aad7e5a827 100644 --- a/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.console.txt @@ -25,6 +25,12 @@ LINE 69: No 'dfn' refs found for 'live profile'. <a bs-line-number="69" data-link-type="dfn" data-lt="live profile">live profile</a> LINE ~121: No 'dfn' refs found for 'pairs'. [=pairs=] +LINE ~142: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +[=descendant=] LINE ~328: No 'dfn' refs found for 'pair' that are marked for export. [=pair=] LINE ~344: No 'dfn' refs found for 'pair' that are marked for export. @@ -33,3 +39,4 @@ LINE ~353: No 'dfn' refs found for 'pair' that are marked for export. [=pair=] LINE ~369: No 'dfn' refs found for 'pairs'. [=pairs=] +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.html b/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.html index 939b8ebe11..bfae985a7c 100644 --- a/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-shadow-parts-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Shadow Parts</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-shadow-parts-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1119,7 +1118,7 @@ <h1 class="p-name no-ref" id="title">CSS Shadow Parts</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1141,7 +1140,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-shadow-parts] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-shadow-parts%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1655,7 +1654,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-infra">[INFRA] @@ -1712,7 +1711,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="element-attrdef-html-global-exportparts"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts" title="The exportparts global attribute allows to select and style elements existing in nested shadow trees, by exporting their part names.">Global_attributes/exportparts</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts" title="The exportparts global attribute allows you to select and style elements existing in nested shadow trees, by exporting their part names.">Global_attributes/exportparts</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>73+</span></span> @@ -1737,7 +1736,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> diff --git a/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.console.txt index d7910651d3..7977a83b64 100644 --- a/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.console.txt @@ -21,11 +21,33 @@ WARNING: Image doesn't exist, so I couldn't determine its width and height: 'ima WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/margin-box-wrap.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/nepal-flag-shape.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/shape-outside-image-with-margin.png' -LINE ~347: No 'property' refs found for 'margin' with spec 'css2'. -'margin' +LINE 342: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +<<'border-radius'>> +LINE 362: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +<<'border-radius'>> +LINE ~361: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE 530: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +<<'border-radius'>> LINE 1200: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'funcdef-basic-shape-path' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-circle' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-ellipse' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-inset' ID found, skipping MDN features that would target it. -WARNING: No 'funcdef-basic-shape-path' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-polygon' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.html b/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.html index aa726f5417..9a11e07c39 100644 --- a/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-shapes-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Shapes Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-shapes/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -960,7 +959,7 @@ <h1 class="p-name no-ref" id="title">CSS Shapes Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -982,7 +981,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-shapes] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-shapes%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1295,7 +1294,7 @@ <h3 class="heading settled" data-level="3.1" id="supported-basic-shapes"><span c of the edges of the inset rectangle. These arguments follow the syntax - of the <a class="property css" data-link-type="property">margin</a> shorthand, + of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin" id="ref-for-propdef-margin">margin</a> shorthand, that let you set all four insets with one, two or four values. <li> The optional <a class="production css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius" id="ref-for-propdef-border-radius①">&lt;'border-radius'></a> argument(s) @@ -1564,10 +1563,10 @@ <h2 class="heading settled" data-level="5" id="shapes-from-box-values"><span cla <p>Shapes can be defined by reference to edges in the <a href="https://www.w3.org/TR/css-box-3/#the-css-box-model">CSS Box Model</a>. These edges include <a href="https://www.w3.org/TR/css3-background/#corner-shaping">border-radius curvature</a> <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a> from the used border-radius values. - The <a class="production css" data-link-type="type" href="#typedef-shape-box" id="ref-for-typedef-shape-box">&lt;shape-box></a> value extends the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-backgrounds-3/#typedef-box" id="ref-for-typedef-box">&lt;box></a> value + The <a class="production css" data-link-type="type" href="#typedef-shape-box" id="ref-for-typedef-shape-box">&lt;shape-box></a> value extends the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-box-4/#typedef-box" id="ref-for-typedef-box">&lt;box></a> value to include <a class="css" data-link-type="maybe" href="#valdef-shape-box-margin-box" id="ref-for-valdef-shape-box-margin-box①">margin-box</a>. Its syntax is:</p> -<pre><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-shape-box"><a class="production" data-link-type="type" href="#typedef-shape-box" id="ref-for-typedef-shape-box①">&lt;shape-box></a></dfn> = <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-backgrounds-3/#typedef-box" id="ref-for-typedef-box①">&lt;box></a> | <a class="css" data-link-type="maybe" href="#valdef-shape-box-margin-box" id="ref-for-valdef-shape-box-margin-box②">margin-box</a> +<pre><dfn class="dfn-paneled" data-dfn-type="type" data-export id="typedef-shape-box"><a class="production" data-link-type="type" href="#typedef-shape-box" id="ref-for-typedef-shape-box①">&lt;shape-box></a></dfn> = <a class="production" data-link-type="type" href="https://drafts.csswg.org/css-box-4/#typedef-box" id="ref-for-typedef-box①">&lt;box></a> | <a class="css" data-link-type="maybe" href="#valdef-shape-box-margin-box" id="ref-for-valdef-shape-box-margin-box②">margin-box</a> </pre> <p>The definitions of the values are:</p> <p>The <dfn class="dfn-paneled css" data-dfn-for="<shape-box>, shape-outside" data-dfn-type="value" data-export id="valdef-shape-box-margin-box">margin-box</dfn> value defines the shape @@ -1733,7 +1732,7 @@ <h3 class="heading settled" data-level="6.2" id="shape-image-threshold-property" <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-shape-image-threshold">shape-image-threshold</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value" id="ref-for-typedef-alpha-value">&lt;alpha-value></a> + <td class="prod"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value" id="ref-for-typedef-color-alpha-value">&lt;alpha-value></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>0 @@ -2105,12 +2104,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="e7382b89">&lt;box></span> <li><span class="dfn-paneled" id="154375a0">margin box</span> </ul> <li> - <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: + <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="4f9cf36a">&lt;alpha-value></span> + <li><span class="dfn-paneled" id="79663d83">&lt;alpha-value></span> </ul> <li> <a data-link-type="biblio">[CSS-IMAGES-3]</a> defines the following terms: @@ -2140,10 +2140,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="37f0daea">inline size</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="5515c98f">margin</span> + </ul> <li> <a data-link-type="biblio">[CSS3BG]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="342bb58f">&lt;box></span> <li><span class="dfn-paneled" id="9b0fa0e9">background-clip</span> <li><span class="dfn-paneled" id="5f1a81e7">border-radius</span> </ul> @@ -2158,8 +2162,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dl> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> - <dt id="biblio-css-color-5">[CSS-COLOR-5] - <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> + <dt id="biblio-css-color-4">[CSS-COLOR-4] + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-masking">[CSS-MASKING] @@ -2173,7 +2177,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3box">[CSS3BOX] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-3/"><cite>CSS Box Model Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-3/">https://drafts.csswg.org/css-box-3/</a> <dt id="biblio-html5">[HTML5] @@ -2523,19 +2527,20 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"},{"id":"ref-for-typedef-length-percentage\u2461"},{"id":"ref-for-typedef-length-percentage\u2462"}],"title":"3.1. \nSupported Shapes"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2463"},{"id":"ref-for-typedef-length-percentage\u2464"}],"title":"3.2. \nComputed Values of Basic Shapes"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2465"},{"id":"ref-for-typedef-length-percentage\u2466"},{"id":"ref-for-typedef-length-percentage\u2467"}],"title":"6.3. \nExpanding a Shape: the shape-margin property"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "2cd27cd8": {"dfnID":"2cd27cd8","dfnText":"<position>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-position"},{"id":"ref-for-typedef-position\u2460"}],"title":"3.1. \nSupported Shapes"},{"refs":[{"id":"ref-for-typedef-position\u2461"}],"title":"3.2. \nComputed Values of Basic Shapes"},{"refs":[{"id":"ref-for-typedef-position\u2462"},{"id":"ref-for-typedef-position\u2463"},{"id":"ref-for-typedef-position\u2464"},{"id":"ref-for-typedef-position\u2465"},{"id":"ref-for-typedef-position\u2466"}],"title":"3.3. \nSerialization of Basic Shapes"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-position"}, "30e2c09c": {"dfnID":"30e2c09c","dfnText":"fill-rule","external":true,"refSections":[{"refs":[{"id":"ref-for-FillRuleProperty"},{"id":"ref-for-FillRuleProperty\u2460"},{"id":"ref-for-FillRuleProperty\u2461"},{"id":"ref-for-FillRuleProperty\u2462"}],"title":"3.1. \nSupported Shapes"},{"refs":[{"id":"ref-for-FillRuleProperty\u2463"}],"title":"3.4. \nInterpolation of Basic Shapes"}],"url":"https://svgwg.org/svg2-draft/painting.html#FillRuleProperty"}, -"342bb58f": {"dfnID":"342bb58f","dfnText":"<box>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-box"},{"id":"ref-for-typedef-box\u2460"}],"title":"5. \nShapes from Box Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-box"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. Values"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"}],"title":"6.3. \nExpanding a Shape: the shape-margin property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, -"4f9cf36a": {"dfnID":"4f9cf36a","dfnText":"<alpha-value>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-alpha-value"}],"title":"6.2. \nChoosing Image Pixels: the shape-image-threshold property"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-alpha-value"}, +"5515c98f": {"dfnID":"5515c98f","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"3.1. \nSupported Shapes"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"},{"id":"ref-for-propdef-border-radius\u2460"},{"id":"ref-for-propdef-border-radius\u2461"}],"title":"3.1. \nSupported Shapes"},{"refs":[{"id":"ref-for-propdef-border-radius\u2462"}],"title":"3.2. \nComputed Values of Basic Shapes"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"}],"title":"6.1. \nFloat Area Shape: the shape-outside property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "77f17203": {"dfnID":"77f17203","dfnText":"clip-path","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clip-path"}],"title":"3.1. \nSupported Shapes"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-clip-path"}, +"79663d83": {"dfnID":"79663d83","dfnText":"<alpha-value>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color-alpha-value"}],"title":"6.2. \nChoosing Image Pixels: the shape-image-threshold property"}],"url":"https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"6.1. \nFloat Area Shape: the shape-outside property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"}],"title":"3.1. \nSupported Shapes"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "998b9e6e": {"dfnID":"998b9e6e","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"}],"title":"4. \nShapes from Image"},{"refs":[{"id":"ref-for-typedef-image\u2460"},{"id":"ref-for-typedef-image\u2461"},{"id":"ref-for-typedef-image\u2462"},{"id":"ref-for-typedef-image\u2463"}],"title":"6.1. \nFloat Area Shape: the shape-outside property"},{"refs":[{"id":"ref-for-typedef-image\u2464"}],"title":"7. Privacy and Security Considerations"}],"url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, "9b0fa0e9": {"dfnID":"9b0fa0e9","dfnText":"background-clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-clip"}],"title":"6.1. \nFloat Area Shape: the shape-outside property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip"}, "closest-side": {"dfnID":"closest-side","dfnText":"closest-side","external":false,"refSections":[{"refs":[{"id":"ref-for-closest-side"}],"title":"3.4. \nInterpolation of Basic Shapes"}],"url":"#closest-side"}, "d71e5ef9": {"dfnID":"d71e5ef9","dfnText":"evenodd","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-clip-rule-evenodd"},{"id":"ref-for-valdef-clip-rule-evenodd\u2460"}],"title":"3.1. \nSupported Shapes"}],"url":"https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-evenodd"}, +"e7382b89": {"dfnID":"e7382b89","dfnText":"<box>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-box"},{"id":"ref-for-typedef-box\u2460"}],"title":"5. \nShapes from Box Values"}],"url":"https://drafts.csswg.org/css-box-4/#typedef-box"}, "farthest-side": {"dfnID":"farthest-side","dfnText":"farthest-side","external":false,"refSections":[{"refs":[{"id":"ref-for-farthest-side"}],"title":"3.4. \nInterpolation of Basic Shapes"}],"url":"#farthest-side"}, "float-area": {"dfnID":"float-area","dfnText":"Float area","external":false,"refSections":[{"refs":[{"id":"ref-for-float-area"},{"id":"ref-for-float-area\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-float-area\u2461"},{"id":"ref-for-float-area\u2462"},{"id":"ref-for-float-area\u2463"},{"id":"ref-for-float-area\u2464"},{"id":"ref-for-float-area\u2465"},{"id":"ref-for-float-area\u2466"}],"title":"1.4. \nTerminology"},{"refs":[{"id":"ref-for-float-area\u2467"},{"id":"ref-for-float-area\u2468"},{"id":"ref-for-float-area\u2460\u24ea"},{"id":"ref-for-float-area\u2460\u2460"},{"id":"ref-for-float-area\u2460\u2461"},{"id":"ref-for-float-area\u2460\u2462"},{"id":"ref-for-float-area\u2460\u2463"},{"id":"ref-for-float-area\u2460\u2464"},{"id":"ref-for-float-area\u2460\u2465"},{"id":"ref-for-float-area\u2460\u2466"}],"title":"2. \nRelation to the box model and float behavior"},{"refs":[{"id":"ref-for-float-area\u2460\u2467"},{"id":"ref-for-float-area\u2460\u2468"}],"title":"4. \nShapes from Image"},{"refs":[{"id":"ref-for-float-area\u2461\u24ea"}],"title":"6. \nDeclaring Shapes"},{"refs":[{"id":"ref-for-float-area\u2461\u2460"}],"title":"6.1. \nFloat Area Shape: the shape-outside property"}],"url":"#float-area"}, "funcdef-circle": {"dfnID":"funcdef-circle","dfnText":"circle()","external":false,"refSections":[{"refs":[{"id":"ref-for-funcdef-circle"}],"title":"3.2. \nComputed Values of Basic Shapes"},{"refs":[{"id":"ref-for-funcdef-circle\u2460"}],"title":"3.4. \nInterpolation of Basic Shapes"},{"refs":[{"id":"ref-for-funcdef-circle\u2461"}],"title":"6.1. \nFloat Area Shape: the shape-outside property"}],"url":"#funcdef-circle"}, @@ -2949,8 +2954,9 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "use strict"; { let linkTitleData = { -"#typedef-shape-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", -"https://drafts.csswg.org/css-backgrounds-3/#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", +"#typedef-basic-shape": "Expands to: equivalent path", +"#typedef-shape-box": "Expands to: border-box | content-box | margin-box | padding-box", +"https://drafts.csswg.org/css-box-4/#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | view-box", }; function setTypeTitles() { @@ -3045,9 +3051,9 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "#wrap": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-shapes","spec":"css-shapes-1","status":"local","text":"wrap","type":"dfn","url":"#wrap"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-clip","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-radius","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, -"https://drafts.csswg.org/css-backgrounds-3/#typedef-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"<box>","type":"type","url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-box"}, "https://drafts.csswg.org/css-box-4/#margin-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin box","type":"dfn","url":"https://drafts.csswg.org/css-box-4/#margin-box"}, -"https://drafts.csswg.org/css-color-5/#typedef-alpha-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<alpha-value>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-alpha-value"}, +"https://drafts.csswg.org/css-box-4/#typedef-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"<box>","type":"type","url":"https://drafts.csswg.org/css-box-4/#typedef-box"}, +"https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"<alpha-value>","type":"type","url":"https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value"}, "https://drafts.csswg.org/css-images-3/#typedef-image": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"<image>","type":"type","url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, "https://drafts.csswg.org/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"||","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -3061,6 +3067,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-evenodd": {"export":true,"for_":["clip-rule"],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"evenodd","type":"value","url":"https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-evenodd"}, "https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-nonzero": {"export":true,"for_":["clip-rule"],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"nonzero","type":"value","url":"https://drafts.fxtf.org/css-masking-1/#valdef-clip-rule-nonzero"}, "https://svgwg.org/svg2-draft/painting.html#FillRuleProperty": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"fill-rule","type":"property","url":"https://svgwg.org/svg2-draft/painting.html#FillRuleProperty"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"margin","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.console.txt index 1ef16664df..d6633cceb7 100644 --- a/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.console.txt @@ -15,8 +15,8 @@ LINE 143: No 'type' refs found for '<fill-rule>'. LINE 146: No 'type' refs found for '<fill-rule>'. <<fill-rule>> WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. +WARNING: No 'funcdef-basic-shape-path' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-circle' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-ellipse' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-inset' ID found, skipping MDN features that would target it. -WARNING: No 'funcdef-basic-shape-path' ID found, skipping MDN features that would target it. WARNING: No 'funcdef-basic-shape-polygon' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.html b/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.html index c73146fd80..37afa3a88e 100644 --- a/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-shapes-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Shapes Module Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-shapes-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1086,7 +1085,7 @@ <h1 class="p-name no-ref" id="title">CSS Shapes Module Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1108,7 +1107,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-shapes] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-shapes%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1872,9 +1871,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-shapes">[CSS-SHAPES] @@ -1886,7 +1885,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-exclusions">[CSS3-EXCLUSIONS] @@ -2685,6 +2684,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let linkTitleData = { "#typedef-shape-by-to": "Expands to: by | to", +"https://drafts.csswg.org/css-shapes-1/#typedef-basic-shape": "Expands to: equivalent path", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#url-value": "Expands to: local url flag", diff --git a/tests/github/w3c/csswg-drafts/css-size-adjust-1/Overview.html b/tests/github/w3c/csswg-drafts/css-size-adjust-1/Overview.html index 0ec84d801d..c8be77ab63 100644 --- a/tests/github/w3c/csswg-drafts/css-size-adjust-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-size-adjust-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Mobile Text Size Adjustment Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-size-adjust/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -950,7 +949,7 @@ <h1 class="p-name no-ref" id="title">CSS Mobile Text Size Adjustment Module Leve </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -972,7 +971,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-size-adjust] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-size-adjust%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>The following features are at risk:</p> <ul> @@ -1096,7 +1095,7 @@ <h3 class="heading settled" data-level="2.2" id="default-adjustment-conditions"> <li>when the objects to be adjusted are inside a block-level or <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-display-4/#propdef-display" id="ref-for-propdef-display">display: inline-block</a> element with a <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a> other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a> (see <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>), <li>when the objects to be adjusted are inside a <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-display-4/#propdef-display" id="ref-for-propdef-display①">display: inline-block</a> element with a <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a> other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①">auto</a> (see <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>), - <li>when the objects to be adjusted have <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-white-space-pre" id="ref-for-valdef-white-space-pre">pre</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-white-space-nowrap" id="ref-for-valdef-white-space-nowrap">nowrap</a> (see <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>) or a <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap" id="ref-for-propdef-text-wrap①">text-wrap</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-nowrap" id="ref-for-valdef-text-wrap-nowrap">nowrap</a> (see <a data-link-type="biblio" href="#biblio-css-text-4" title="CSS Text Module Level 4">[CSS-TEXT-4]</a>). + <li>when the objects to be adjusted have <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-white-space" id="ref-for-propdef-white-space">white-space</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-white-space-pre" id="ref-for-valdef-white-space-pre">pre</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-nowrap" id="ref-for-valdef-white-space-nowrap">nowrap</a> (see <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>) or a <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap" id="ref-for-propdef-text-wrap①">text-wrap</a> of <span class="css">nowrap</span> (see <a data-link-type="biblio" href="#biblio-css-text-4" title="CSS Text Module Level 4">[CSS-TEXT-4]</a>). </ul> <h3 class="heading settled" data-level="2.3" id="default-adjustment-calculation"><span class="secno">2.3. </span><span class="content">Calculation of default adjustment</span><a class="self-link" href="#default-adjustment-calculation"></a></h3> <p>The adjustment performed should be based on preferences (of the @@ -1280,11 +1279,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="68019d7a">height</span> <li><span class="dfn-paneled" id="88643fe0">width</span> </ul> + <li> + <a data-link-type="biblio">[CSS-TEXT-3]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a3bf3e0b">nowrap</span> + </ul> <li> <a data-link-type="biblio">[CSS-TEXT-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="2cca76d6">nowrap <small>(for text-wrap)</small></span> - <li><span class="dfn-paneled" id="49a1d707">nowrap <small>(for white-space)</small></span> <li><span class="dfn-paneled" id="c901e957">pre</span> <li><span class="dfn-paneled" id="72a081a0">text-wrap</span> <li><span class="dfn-paneled" id="6501e5b3">white-space</span> @@ -1301,11 +1303,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> + <dt id="biblio-css-text-3">[CSS-TEXT-3] + <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -1576,14 +1580,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let dfnPanelData = { "0e5cedd7": {"dfnID":"0e5cedd7","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-width-auto"},{"id":"ref-for-valdef-width-auto\u2460"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, "15f5b381": {"dfnID":"15f5b381","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"}],"title":"3. Size adjustment control: the text-size-adjust property"}],"url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, -"2cca76d6": {"dfnID":"2cca76d6","dfnText":"nowrap (for text-wrap)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-wrap-nowrap"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-nowrap"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. Value Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, -"49a1d707": {"dfnID":"49a1d707","dfnText":"nowrap (for white-space)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-white-space-nowrap"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-nowrap"}, "6501e5b3": {"dfnID":"6501e5b3","dfnText":"white-space","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-white-space"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-white-space"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"}],"title":"3. Size adjustment control: the text-size-adjust property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "72a081a0": {"dfnID":"72a081a0","dfnText":"text-wrap","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-wrap"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-propdef-text-wrap\u2460"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-wrap"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, +"a3bf3e0b": {"dfnID":"a3bf3e0b","dfnText":"nowrap","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-white-space-nowrap"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-text-3/#valdef-white-space-nowrap"}, "c901e957": {"dfnID":"c901e957","dfnText":"pre","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-white-space-pre"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-pre"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"2.2. Conditions that suppress adjustment"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "fdf6efd5": {"dfnID":"fdf6efd5","dfnText":"font-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size"}],"title":"2.3. Calculation of default adjustment"},{"refs":[{"id":"ref-for-propdef-font-size\u2460"}],"title":"3. Size adjustment control: the text-size-adjust property"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, @@ -2044,10 +2047,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-sizing-3/#propdef-height": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"height","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "https://drafts.csswg.org/css-sizing-3/#propdef-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"width","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto": {"export":true,"for_":["width","height","min-width","min-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, +"https://drafts.csswg.org/css-text-3/#valdef-white-space-nowrap": {"export":true,"for_":["white-space"],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"nowrap","type":"value","url":"https://drafts.csswg.org/css-text-3/#valdef-white-space-nowrap"}, "https://drafts.csswg.org/css-text-4/#propdef-text-wrap": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"text-wrap","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-text-wrap"}, "https://drafts.csswg.org/css-text-4/#propdef-white-space": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"white-space","type":"property","url":"https://drafts.csswg.org/css-text-4/#propdef-white-space"}, -"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-nowrap": {"export":true,"for_":["text-wrap"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"nowrap","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-nowrap"}, -"https://drafts.csswg.org/css-text-4/#valdef-white-space-nowrap": {"export":true,"for_":["white-space"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"nowrap","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-nowrap"}, "https://drafts.csswg.org/css-text-4/#valdef-white-space-pre": {"export":true,"for_":["white-space"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"pre","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-pre"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "https://drafts.csswg.org/css-values-4/#css-wide-keywords": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"css-wide keywords","type":"dfn","url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, diff --git a/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.console.txt index 7ccc028e40..f7f3046360 100644 --- a/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.console.txt @@ -7,4 +7,6 @@ LINE 120: Image doesn't exist, so I couldn't determine its width and height: 'im LINE 129: Image doesn't exist, so I couldn't determine its width and height: 'images/outer-size.svg' LINE ~356: No 'property' refs found for 'size'. 'size' +LINE 999: No 'dfn' refs found for 'text runs'. +<a bs-line-number="999" data-link-type="dfn" data-lt="text runs">text runs</a> LINE 1432: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.html b/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.html index 6b1d712c6e..da3127d59f 100644 --- a/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-sizing-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Box Sizing Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-sizing-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1268,7 +1267,7 @@ <h1 class="p-name no-ref" id="title">CSS Box Sizing Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1290,7 +1289,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-sizing] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-sizing%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -2087,7 +2086,7 @@ <h3 class="heading settled" data-level="5.1" id="intrinsic-sizes"><span class="s (the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-elements.html#concept-textarea-raw-value" id="ref-for-concept-textarea-raw-value">raw value</a> in the case of <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/form-elements.html#the-textarea-element" id="ref-for-the-textarea-element">textarea</a></code>, or the <a href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-fe-value">value</a> in the case of <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/input.html#the-input-element" id="ref-for-the-input-element">input</a></code>), possibly transformed to a more human-readable and/or localized display format, - which is then treated as child <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text runs</a> of the input control, + which is then treated as child <a data-link-type="dfn">text runs</a> of the input control, allowing <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#soft-wrap-opportunity" id="ref-for-soft-wrap-opportunity">soft wrap opportunities</a> only where the input control would actually allow wrapping (whether keyed off of CSS properties or other, UA-internal constraints). If the input control has designated placeholder text @@ -2668,7 +2667,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="f952f01b">non-replaced</span> <li><span class="dfn-paneled" id="94f59a47">replaced</span> <li><span class="dfn-paneled" id="a8485ff4">replaced element</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> </ul> <li> <a data-link-type="biblio">[CSS-FLEXBOX-1]</a> defines the following terms: @@ -2766,9 +2764,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] @@ -2776,7 +2774,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] <dd>Tab Atkins Jr.; Elika Etemad; Jen Simmons. <a href="https://drafts.csswg.org/css-sizing-4/"><cite>CSS Box Sizing Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-4/">https://drafts.csswg.org/css-sizing-4/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -2805,7 +2803,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-dom">[DOM] @@ -3004,8 +3002,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="box-sizing" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>10+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>29+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>8+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>9.5+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>10+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>5.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>5.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-boxsizing">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>10+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>29+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>8+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>9.5+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>10+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>5.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>5.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-boxsizing">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -3218,7 +3216,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"},{"id":"ref-for-typedef-length-percentage\u2461"}],"title":"3.1.1. \nPreferred Size Properties: the width and height properties"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2462"},{"id":"ref-for-typedef-length-percentage\u2463"},{"id":"ref-for-typedef-length-percentage\u2464"}],"title":"3.1.2. \nMinimum Size Properties: the min-width and min-height properties"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2465"},{"id":"ref-for-typedef-length-percentage\u2466"},{"id":"ref-for-typedef-length-percentage\u2467"}],"title":"3.1.3. \nMaximum Size Properties: the max-width and max-height properties"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2468"},{"id":"ref-for-typedef-length-percentage\u2460\u24ea"},{"id":"ref-for-typedef-length-percentage\u2460\u2460"},{"id":"ref-for-typedef-length-percentage\u2460\u2461"},{"id":"ref-for-typedef-length-percentage\u2460\u2462"},{"id":"ref-for-typedef-length-percentage\u2460\u2463"},{"id":"ref-for-typedef-length-percentage\u2460\u2464"}],"title":"3.2. \nSizing Values: the <length-percentage>, auto | none, min-content, max-content, and fit-content() values"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2460\u2465"},{"id":"ref-for-typedef-length-percentage\u2460\u2466"},{"id":"ref-for-typedef-length-percentage\u2460\u2467"},{"id":"ref-for-typedef-length-percentage\u2460\u2468"}],"title":"3.3. \nBox Edges for Sizing: the box-sizing property"},{"refs":[{"id":"ref-for-typedef-length-percentage\u2461\u24ea"},{"id":"ref-for-typedef-length-percentage\u2461\u2460"},{"id":"ref-for-typedef-length-percentage\u2461\u2461"},{"id":"ref-for-typedef-length-percentage\u2461\u2462"}],"title":"3.4. \nNew Column Sizing Values: the min-content, max-content, and fit-content() values"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "190183bb": {"dfnID":"190183bb","dfnText":"block size","external":true,"refSections":[{"refs":[{"id":"ref-for-block-size"},{"id":"ref-for-block-size\u2460"}],"title":"2. \nTerminology"},{"refs":[{"id":"ref-for-block-size\u2461"}],"title":"2.1. \nAuto Box Sizes"},{"refs":[{"id":"ref-for-block-size\u2462"},{"id":"ref-for-block-size\u2463"},{"id":"ref-for-block-size\u2464"}],"title":"3.2. \nSizing Values: the <length-percentage>, auto | none, min-content, max-content, and fit-content() values"},{"refs":[{"id":"ref-for-block-size\u2465"}],"title":"5.2.1. \nIntrinsic Contributions of Percentage-Sized Boxes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-size"}, "1ea6c25d": {"dfnID":"1ea6c25d","dfnText":"margin properties","external":true,"refSections":[{"refs":[{"id":"ref-for-margin-properties"}],"title":"5.2.1. \nIntrinsic Contributions of Percentage-Sized Boxes"}],"url":"https://drafts.csswg.org/css-box-4/#margin-properties"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"}],"title":"5.1. \nIntrinsic Sizes"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "23012643": {"dfnID":"23012643","dfnText":"natural aspect ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-aspect-ratio"}],"title":"2.3. \nIntrinsic Size Constraints"}],"url":"https://drafts.csswg.org/css-images-3/#natural-aspect-ratio"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"},{"id":"ref-for-inline-size\u2460"}],"title":"2. \nTerminology"},{"refs":[{"id":"ref-for-inline-size\u2461"},{"id":"ref-for-inline-size\u2462"},{"id":"ref-for-inline-size\u2463"},{"id":"ref-for-inline-size\u2464"}],"title":"2.1. \nAuto Box Sizes"},{"refs":[{"id":"ref-for-inline-size\u2465"}],"title":"3.2. \nSizing Values: the <length-percentage>, auto | none, min-content, max-content, and fit-content() values"},{"refs":[{"id":"ref-for-inline-size\u2466"}],"title":"5.1. \nIntrinsic Sizes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, @@ -3871,7 +3868,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-4/#inline-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline box","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#inline-box"}, "https://drafts.csswg.org/css-display-4/#non-replaced": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"non-replaced","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#non-replaced"}, "https://drafts.csswg.org/css-display-4/#replaced-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"replaced element","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-flexbox-1/#flex-item": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex item","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex-basis","type":"property","url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis"}, "https://drafts.csswg.org/css-grid-2/#grid-item": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"grid item","type":"dfn","url":"https://drafts.csswg.org/css-grid-2/#grid-item"}, diff --git a/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.console.txt index 3bc9cb3cf9..69a6bb7146 100644 --- a/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.console.txt @@ -1,39 +1 @@ -LINE ~49: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~49: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~49: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~49: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINK ERROR: No 'property' refs found for 'min-width' with spec 'css2'. -<a data-link-type="property" data-lt="min-width" data-link-for-hint="width">min-width</a> -LINK ERROR: No 'property' refs found for 'min-height' with spec 'css2'. -<a data-link-type="property" data-lt="min-height" data-link-for-hint="width">min-height</a> -LINK ERROR: No 'property' refs found for 'max-width' with spec 'css2'. -<a data-link-type="property" data-lt="max-width" data-link-for-hint="width">max-width</a> -LINK ERROR: No 'property' refs found for 'max-height' with spec 'css2'. -<a data-link-type="property" data-lt="max-height" data-link-for-hint="width">max-height</a> -LINE ~377: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~410: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE 416: No 'property' refs found for 'min-width' with spec 'css2'. -''min-width: 0'' -LINE ~908: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~908: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~908: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~908: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~319: Couldn't find section '/box#collapsing-margins' in spec 'css2': -[[css2/box#collapsing-margins]] -LINE ~472: Couldn't find section '/visudet#the-height-property' in spec 'css2': -[[CSS2/visudet#the-height-property]] -LINE ~843: Couldn't find section '/box#collapsing-margins' in spec 'css2': -[[CSS2/box#collapsing-margins]] -LINE ~1010: Couldn't find section '/box#collapsing-margins' in spec 'css2': -[[css2/box#collapsing-margins]] LINE 1031: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.html b/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.html index df606eeef2..1849a81d26 100644 --- a/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-sizing-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Box Sizing Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-sizing-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1075,7 +1074,7 @@ <h1 class="p-name no-ref" id="title">CSS Box Sizing Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1097,7 +1096,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-sizing] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-sizing%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1192,7 +1191,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s if you are implementing anything, please use Level 3 as a reference. We will merge the Level 3 text into this draft once it reaches CR.</p> <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno">1.1. </span><span class="content"> Module interactions</span><a class="self-link" href="#placement"></a></h3> - <p>This module extends the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, <a class="property css" data-link-type="property">min-width</a>, <span class="property">min-height</span>, <span class="property">max-width</span>, <span class="property">max-height</span>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-multicol-1/#propdef-column-width" id="ref-for-propdef-column-width">column-width</a> features defined in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> chapter 10 and in <a data-link-type="biblio" href="#biblio-css3col" title="CSS Multi-column Layout Module Level 1">[CSS3COL]</a> </p> + <p>This module extends the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-multicol-1/#propdef-column-width" id="ref-for-propdef-column-width">column-width</a> features defined in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> chapter 10 and in <a data-link-type="biblio" href="#biblio-css3col" title="CSS Multi-column Layout Module Level 1">[CSS3COL]</a> </p> <h3 class="heading settled" data-level="1.2" id="values"><span class="secno">1.2. </span><span class="content"> Value Definitions</span><a class="self-link" href="#values"></a></h3> <p>This specification follows the <a href="https://www.w3.org/TR/CSS2/about.html#property-defs">CSS property definition conventions</a> from <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> using the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. Value types not defined in this specification are defined in CSS Values &amp; Units <span title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</span>. @@ -1212,7 +1211,7 @@ <h3 class="heading settled" data-level="3.2" id="sizing-values"><span class="sec <tbody> <tr> <th>Name: - <td><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width①">width</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①">height</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-inline-size" id="ref-for-propdef-inline-size">inline-size</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-block-size" id="ref-for-propdef-block-size">block-size</a>, <a class="css" data-link-type="property">min-width</a>, <span>min-height</span>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-min-inline-size" id="ref-for-propdef-min-inline-size">min-inline-size</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-min-block-size" id="ref-for-propdef-min-block-size">min-block-size</a>, <span>max-width</span>, <span>max-height</span>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-max-inline-size" id="ref-for-propdef-max-inline-size">max-inline-size</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-max-block-size" id="ref-for-propdef-max-block-size">max-block-size</a> + <td><a class="css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width①">width</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①">height</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-inline-size" id="ref-for-propdef-inline-size">inline-size</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-block-size" id="ref-for-propdef-block-size">block-size</a>, <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width</a>, <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-min-inline-size" id="ref-for-propdef-min-inline-size">min-inline-size</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-min-block-size" id="ref-for-propdef-min-block-size">min-block-size</a>, <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width①">max-width</a>, <a class="css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-max-inline-size" id="ref-for-propdef-max-inline-size">max-inline-size</a>, <a class="css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-max-block-size" id="ref-for-propdef-max-block-size">max-block-size</a> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">New values:</a> <td class="prod">stretch <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one">|</a> fit-content <span id="ref-for-comb-one①">|</span> contain @@ -1382,7 +1381,7 @@ <h3 class="heading settled" data-level="4.2" id="aspect-ratio-automatic"><span c Min/max constraints get transferred afterwards, and then applied to each axis independently without regards to aspect-ratio.</p> <h4 class="heading settled" data-level="4.2.1" id="aspect-ratio-margin-collapse"><span class="secno">4.2.1. </span><span class="content"> Margin-collapsing</span><a class="self-link" href="#aspect-ratio-margin-collapse"></a></h4> - <p>For the purpose of margin collapsing (<span spec-section="/box#collapsing-margins"></span>), + <p>For the purpose of margin collapsing (<a href="https://www.w3.org/TR/CSS21/box.html#collapsing-margins"><cite>CSS 2.1</cite> § 8.3.1 Collapsing margins</a>), if the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#block-axis" id="ref-for-block-axis">block axis</a> is the <a data-link-type="dfn" href="#ratio-dependent-axis" id="ref-for-ratio-dependent-axis①">ratio-dependent axis</a>, it is not considered to have a <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value">computed</a> <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-block-size" id="ref-for-propdef-block-size①">block-size</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①">auto</a>.</p> <h3 class="heading settled" data-level="4.3" id="aspect-ratio-minimum"><span class="secno">4.3. </span><span class="content"> Automatic Content-based Minimum Sizes</span><a class="self-link" href="#aspect-ratio-minimum"></a></h3> @@ -1422,7 +1421,7 @@ <h3 class="heading settled" data-level="4.3" id="aspect-ratio-minimum"><span cla | | | ~~~ | | ~~~~~~~~v| +----------+ +----------+ +----------+ </pre> - <p>Overriding the <a class="property css" data-link-type="property">min-height</a> property also maintains the 1:1 aspect ratio, + <p>Overriding the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height②">min-height</a> property also maintains the 1:1 aspect ratio, but will result in content overflowing the box if it is not otherwise handled.</p> <pre class="highlight">div <c- p>{</c-> @@ -1449,10 +1448,10 @@ <h3 class="heading settled" data-level="4.3" id="aspect-ratio-minimum"><span cla </pre> <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width③">width</a> of the container, being <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto②">auto</a>, resolves through the aspect ratio to 100px. - However, its <a class="property css" data-link-type="property">min-width</a>, being <span class="css" id="ref-for-valdef-width-auto③">auto</span>, + However, its <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a>, being <span class="css" id="ref-for-valdef-width-auto③">auto</span>, resolves to 150px. The resulting width of the container is thus 150px. - To ignore the contents when sizing the container, <span class="css">min-width: 0</span> can be specified.</p> + To ignore the contents when sizing the container, <span class="css" id="ref-for-propdef-min-width③">min-width: 0</span> can be specified.</p> </div> <h3 class="heading settled" data-level="4.4" id="aspect-ratio-size-transfers"><span class="secno">4.4. </span><span class="content"> Min/Max Size Transfers</span><a class="self-link" href="#aspect-ratio-size-transfers"></a></h3> <p>Sizing constraints in either axis @@ -1496,7 +1495,7 @@ <h3 class="heading settled" data-level="4.4" id="aspect-ratio-size-transfers"><s <c- p>&lt;/</c-><c- f>div</c-><c- p>></c-> </pre> <p>In this next example, - the percentage height of the item cannot be resolved and <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#behave-as-auto" id="ref-for-behave-as-auto">behaves as auto</a> (see <span spec-section="/visudet#the-height-property"></span>). + the percentage height of the item cannot be resolved and <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#behave-as-auto" id="ref-for-behave-as-auto">behaves as auto</a> (see <a href="https://www.w3.org/TR/CSS21/visudet.html#the-height-property"><cite>CSS 2.1</cite> § 10.5 Content height: the 'height' property</a>). Since both axes now have an <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#automatic-size" id="ref-for-automatic-size③">automatic size</a>, the height becomes the <a data-link-type="dfn" href="#ratio-dependent-axis" id="ref-for-ratio-dependent-axis③">ratio-dependent axis</a>. Calculating the <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#intrinsic-size-contribution" id="ref-for-intrinsic-size-contribution">intrinsic size contributions</a> of the box @@ -1647,7 +1646,7 @@ <h4 class="heading settled dfn-paneled" data-dfn-type="dfn" data-export data-lev <p>An element might not have a <a data-link-type="dfn" href="#last-remembered" id="ref-for-last-remembered④">last remembered size</a>, if it has never been rendered without <a data-link-type="dfn" href="https://drafts.csswg.org/css-contain-2/#size-containment" id="ref-for-size-containment⑨">size containment</a>. (In this case, it will instead use the fallback value - provided along with <span class="css">auto</span>.)</p> + provided along with <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto" id="ref-for-valdef-contain-intrinsic-width-auto">auto</a>.)</p> </div> <h4 class="heading settled" data-level="5.2.2" id="cis-scrollbars"><span class="secno">5.2.2. </span><span class="content"> Interaction With <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow①">overflow: auto</a></span><a class="self-link" href="#cis-scrollbars"></a></h4> <p>The <a class="property css" data-link-type="property" href="#propdef-contain-intrinsic-size" id="ref-for-propdef-contain-intrinsic-size③">contain-intrinsic-size</a> property provides an estimate @@ -1815,7 +1814,7 @@ <h3 class="heading settled" data-level="6.1" id="stretch-fit-sizing"><span class but the bottom margins do not collapse (because the bottom margin of a box is not adjoining to the bottom margin of a parent with a non-<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto④">auto</a> height, - see <span spec-section="/box#collapsing-margins"></span>), + see <a href="https://www.w3.org/TR/CSS21/box.html#collapsing-margins"><cite>CSS 2.1</cite> § 8.3.1 Collapsing margins</a>), and therefore the inner box’s bottom margin will be truncated.</p> <pre>.outer { height: 200px; margin: 0; } .inner { height: stretch; margin: 10px; } @@ -1855,13 +1854,13 @@ <h3 class="heading settled dfn-paneled" data-dfn-type="dfn" data-export data-lev If both dimensions are indefinite, the initial target rectangle is set to match the outer edges of the box were it <a data-link-type="dfn" href="https://drafts.csswg.org/css-sizing-3/#stretch-fit-size" id="ref-for-stretch-fit-size③">stretch-fit sized</a>. - <li> Next, if the box has a non-<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-max-width-none" id="ref-for-valdef-max-width-none">none</a> <a class="property css" data-link-type="property">max-width</a> or <span class="property">max-height</span>, + <li> Next, if the box has a non-<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-max-width-none" id="ref-for-valdef-max-width-none">none</a> <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width</a> or <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height②">max-height</a>, the target rectangle is clamped in the affected dimension to less than or equal to the “maximum size” of the box’s margin box, i.e. the size its margin box would be if the box was sized at its max-width/height. (Note that, consistent with normal <a href="http://www.w3.org/TR/CSS2/visuren.html">box-sizing rules</a>, - this “maximum size” is floored by the effects of the box’s <span class="property">min-width</span>/<span class="property">min-height</span>.) + this “maximum size” is floored by the effects of the box’s <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width④">min-width</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height③">min-height</a>.) <li> Last, the target rectangle is reduced in one dimension by the minimum necessary for it to match the box’s <a data-link-type="dfn" href="#preferred-aspect-ratio" id="ref-for-preferred-aspect-ratio①⑦">preferred aspect ratio</a>. </ol> @@ -1886,7 +1885,7 @@ <h3 class="no-num heading settled" id="changes-2020-05"><span class="content"> R <p>Added longhands to <a class="property css" data-link-type="property" href="#propdef-contain-intrinsic-size" id="ref-for-propdef-contain-intrinsic-size①⓪">contain-intrinsic-size</a> for controlling each axis independently. (<a href="https://github.com/w3c/csswg-drafts/issues/5432">Issue 5432</a>)</p> <li data-md> - <p>Drafted <span class="css">auto</span> value to <a class="property css" data-link-type="property" href="#propdef-contain-intrinsic-size" id="ref-for-propdef-contain-intrinsic-size①①">contain-intrinsic-size</a> to allow “remembering” the previously-calculated size. + <p>Drafted <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto" id="ref-for-valdef-contain-intrinsic-width-auto①">auto</a> value to <a class="property css" data-link-type="property" href="#propdef-contain-intrinsic-size" id="ref-for-propdef-contain-intrinsic-size①①">contain-intrinsic-size</a> to allow “remembering” the previously-calculated size. (<a href="https://github.com/w3c/csswg-drafts/issues/5668">Issue 5668</a>, <a href="https://github.com/w3c/csswg-drafts/issues/5815">Issue 5815</a>)</p> <li data-md> <p>Defined handling of degenerate ratios in <a class="property css" data-link-type="property" href="#propdef-aspect-ratio" id="ref-for-propdef-aspect-ratio③">aspect-ratio</a>. @@ -1944,7 +1943,7 @@ <h3 class="no-num heading settled" id="changes-2020-05"><span class="content"> R <p>Define that <a class="property css" data-link-type="property" href="#propdef-aspect-ratio" id="ref-for-propdef-aspect-ratio⑥">aspect-ratio</a> inhibits margin self-collapsing (<a href="https://github.com/w3c/csswg-drafts/issues/5328">Issue 5328</a>)</p> <blockquote> - <p>For the purpose of margin collapsing (<span spec-section="/box#collapsing-margins"></span>), + <p>For the purpose of margin collapsing (<a href="https://www.w3.org/TR/CSS21/box.html#collapsing-margins"><cite>CSS 2.1</cite> § 8.3.1 Collapsing margins</a>), if the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#block-axis" id="ref-for-block-axis①">block axis</a> is the <a data-link-type="dfn" href="#ratio-dependent-axis" id="ref-for-ratio-dependent-axis④">ratio-dependent axis</a>, it is not considered to have a <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value①">computed</a> <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-block-size" id="ref-for-propdef-block-size②">block-size</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto⑤">auto</a>. </p> </blockquote> @@ -2197,6 +2196,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3f92298d">stretch-fit size</span> <li><span class="dfn-paneled" id="88643fe0">width</span> </ul> + <li> + <a data-link-type="biblio">[CSS-SIZING-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="9acf31c7">auto</span> + </ul> <li> <a data-link-type="biblio">[CSS-VALUES-4]</a> defines the following terms: <ul> @@ -2214,6 +2218,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="e1ab41b7">block axis</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + </ul> <li> <a data-link-type="biblio">[CSS3COL]</a> defines the following terms: <ul> @@ -2231,7 +2243,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] @@ -2241,17 +2253,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> + <dt id="biblio-css-sizing-4">[CSS-SIZING-4] + <dd>Tab Atkins Jr.; Elika Etemad; Jen Simmons. <a href="https://drafts.csswg.org/css-sizing-4/"><cite>CSS Box Sizing Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-4/">https://drafts.csswg.org/css-sizing-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-3/">https://drafts.csswg.org/css-values-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -2401,7 +2415,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="aspect-ratio"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio" title="The aspect-ratio CSS property sets a preferred aspect ratio for the box, which will be used in the calculation of auto sizes and some other layout functions.">aspect-ratio</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio" title="The aspect-ratio CSS property allows you to define the desired width-to-height ratio of an element&apos;s box. This means that even if the parent container or viewport size changes, the browser will adjust the element&apos;s dimensions to maintain the specified width-to-height ratio. The specified aspect ratio is used in the calculation of auto sizes and some other layout functions.">aspect-ratio</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>89+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> @@ -2415,13 +2429,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="propdef-contain-intrinsic-height"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain-intrinsic-height" title="The contain-intrinsic-length CSS property sets the height of an element that a browser can use for layout when the element is subject to size containment.">contain-intrinsic-height</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 104+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>83+</span></span> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>95+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>83+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>95+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2430,11 +2445,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="propdef-contain-intrinsic-size"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain-intrinsic-size" title="The contain-intrinsic-size CSS shorthand property sets the size of an element that a browser will use for layout when the element is subject to size containment.">contain-intrinsic-size</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 104+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>83+</span></span> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>83+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>83+</span></span> <hr> @@ -2445,13 +2461,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="propdef-contain-intrinsic-width"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/contain-intrinsic-width" title="The contain-intrinsic-width CSS property sets the width of an element that a browser will use for layout when the element is subject to size containment.">contain-intrinsic-width</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 104+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>83+</span></span> + <span class="firefox yes"><span>Firefox</span><span>107+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>95+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>83+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>95+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2465,7 +2482,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/fit-content" title="The fit-content behaves as fit-content(stretch). In practice this means that the box will use the available space, but never more than max-content.">fit-content</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>52+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> + <span class="firefox yes"><span>Firefox</span><span>94+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2478,7 +2495,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/fit-content" title="The fit-content behaves as fit-content(stretch). In practice this means that the box will use the available space, but never more than max-content.">fit-content</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>52+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> + <span class="firefox yes"><span>Firefox</span><span>94+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2746,6 +2763,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "26bd7702": {"dfnID":"26bd7702","dfnText":"minimum size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-width"},{"id":"ref-for-min-width\u2460"},{"id":"ref-for-min-width\u2461"}],"title":"4.4. \nMin/Max Size Transfers"},{"refs":[{"id":"ref-for-min-width\u2462"},{"id":"ref-for-min-width\u2463"}],"title":"\nRecent Changes"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-width"}, "2de81520": {"dfnID":"2de81520","dfnText":"<ratio>","external":true,"refSections":[{"refs":[{"id":"ref-for-ratio-value"},{"id":"ref-for-ratio-value\u2460"},{"id":"ref-for-ratio-value\u2461"},{"id":"ref-for-ratio-value\u2462"},{"id":"ref-for-ratio-value\u2463"},{"id":"ref-for-ratio-value\u2464"}],"title":"4.1. \nPreferred Aspect Ratios: the aspect-ratio property"}],"url":"https://drafts.csswg.org/css-values-4/#ratio-value"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"1.1. \nModule interactions"},{"refs":[{"id":"ref-for-propdef-min-height\u2460"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-propdef-min-height\u2461"}],"title":"4.3. \nAutomatic Content-based Minimum Sizes"},{"refs":[{"id":"ref-for-propdef-min-height\u2462"}],"title":"6.2. \nContain-fit Sizing: stretching while maintaining an aspect ratio"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3d5243d5": {"dfnID":"3d5243d5","dfnText":"object-fit","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-object-fit"}],"title":"6.2. \nContain-fit Sizing: stretching while maintaining an aspect ratio"}],"url":"https://drafts.csswg.org/css-images-4/#propdef-object-fit"}, "3f0db204": {"dfnID":"3f0db204","dfnText":"min-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"}],"title":"4.3. \nAutomatic Content-based Minimum Sizes"},{"refs":[{"id":"ref-for-min-content\u2460"}],"title":"5.4. \nZeroing Min-Content Size Contributions: the min-intrinsic-sizing property"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "3f92298d": {"dfnID":"3f92298d","dfnText":"stretch-fit size","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit-size"},{"id":"ref-for-stretch-fit-size\u2460"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-stretch-fit-size\u2461"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"},{"refs":[{"id":"ref-for-stretch-fit-size\u2462"}],"title":"6.2. \nContain-fit Sizing: stretching while maintaining an aspect ratio"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-size"}, @@ -2772,10 +2790,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "917fcd3c": {"dfnID":"917fcd3c","dfnText":"natural width","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-width"}],"title":"4.1. \nPreferred Aspect Ratios: the aspect-ratio property"}],"url":"https://drafts.csswg.org/css-images-3/#natural-width"}, "938ba280": {"dfnID":"938ba280","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"}],"title":"5.2. \nOverriding Contained Intrinsic Sizes: the contain-intrinsic-* properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, "97cc51ce": {"dfnID":"97cc51ce","dfnText":"intrinsic size contribution","external":true,"refSections":[{"refs":[{"id":"ref-for-intrinsic-size-contribution"}],"title":"4.4. \nMin/Max Size Transfers"}],"url":"https://drafts.csswg.org/css-sizing-3/#intrinsic-size-contribution"}, +"9acf31c7": {"dfnID":"9acf31c7","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-contain-intrinsic-width-auto"}],"title":"5.2.1. \nLast Remembered Size"},{"refs":[{"id":"ref-for-valdef-contain-intrinsic-width-auto\u2460"}],"title":"\nRecent Changes"}],"url":"https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"4.2.1. \nMargin-collapsing"},{"refs":[{"id":"ref-for-computed-value\u2460"}],"title":"\nRecent Changes"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9ea6bed2": {"dfnID":"9ea6bed2","dfnText":"initial value","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-value"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-cascade-5/#initial-value"}, "9f13b712": {"dfnID":"9f13b712","dfnText":"behave as auto","external":true,"refSections":[{"refs":[{"id":"ref-for-behave-as-auto"}],"title":"4.4. \nMin/Max Size Transfers"},{"refs":[{"id":"ref-for-behave-as-auto\u2460"},{"id":"ref-for-behave-as-auto\u2461"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-sizing-3/#behave-as-auto"}, "a0e35b6d": {"dfnID":"a0e35b6d","dfnText":"sizing property","external":true,"refSections":[{"refs":[{"id":"ref-for-sizing-property"}],"title":"5.4. \nZeroing Min-Content Size Contributions: the min-intrinsic-sizing property"},{"refs":[{"id":"ref-for-sizing-property\u2460"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-sizing-3/#sizing-property"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"1.1. \nModule interactions"},{"refs":[{"id":"ref-for-propdef-max-width\u2460"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-propdef-max-width\u2461"}],"title":"6.2. \nContain-fit Sizing: stretching while maintaining an aspect ratio"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a8352f57": {"dfnID":"a8352f57","dfnText":"min-inline-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-inline-size"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-min-inline-size"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"4. \nAspect Ratios"},{"refs":[{"id":"ref-for-replaced-element\u2460"},{"id":"ref-for-replaced-element\u2461"},{"id":"ref-for-replaced-element\u2462"},{"id":"ref-for-replaced-element\u2463"}],"title":"4.1. \nPreferred Aspect Ratios: the aspect-ratio property"},{"refs":[{"id":"ref-for-replaced-element\u2464"}],"title":"4.2. \nEffects of Preferred Aspect Ratio on Automatic Sizes"},{"refs":[{"id":"ref-for-replaced-element\u2465"}],"title":"4.3. \nAutomatic Content-based Minimum Sizes"},{"refs":[{"id":"ref-for-replaced-element\u2466"}],"title":"5.4. \nZeroing Min-Content Size Contributions: the min-intrinsic-sizing property"},{"refs":[{"id":"ref-for-replaced-element\u2467"}],"title":"\nRecent Changes"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "b0b312d1": {"dfnID":"b0b312d1","dfnText":"column-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-column-width"}],"title":"1.1. \nModule interactions"}],"url":"https://drafts.csswg.org/css-multicol-1/#propdef-column-width"}, @@ -2793,6 +2813,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e1ab41b7": {"dfnID":"e1ab41b7","dfnText":"block axis","external":true,"refSections":[{"refs":[{"id":"ref-for-block-axis"}],"title":"4.2.1. \nMargin-collapsing"},{"refs":[{"id":"ref-for-block-axis\u2460"}],"title":"\nRecent Changes"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-axis"}, "e43f2460": {"dfnID":"e43f2460","dfnText":"outer height","external":true,"refSections":[{"refs":[{"id":"ref-for-outer-size"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-sizing-3/#outer-size"}, "e4cd19ff": {"dfnID":"e4cd19ff","dfnText":"degenerate ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-degenerate-ratio"},{"id":"ref-for-degenerate-ratio\u2460"}],"title":"4.1. \nPreferred Aspect Ratios: the aspect-ratio property"}],"url":"https://drafts.csswg.org/css-values-4/#degenerate-ratio"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"1.1. \nModule interactions"},{"refs":[{"id":"ref-for-propdef-min-width\u2460"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-propdef-min-width\u2461"},{"id":"ref-for-propdef-min-width\u2462"}],"title":"4.3. \nAutomatic Content-based Minimum Sizes"},{"refs":[{"id":"ref-for-propdef-min-width\u2463"}],"title":"6.2. \nContain-fit Sizing: stretching while maintaining an aspect ratio"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e7a4e2e2": {"dfnID":"e7a4e2e2","dfnText":"alignment container","external":true,"refSections":[{"refs":[{"id":"ref-for-alignment-container"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-align-3/#alignment-container"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-containing-block\u2460"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "eb3aa672": {"dfnID":"eb3aa672","dfnText":"logical property group","external":true,"refSections":[{"refs":[{"id":"ref-for-logical-property-group"}],"title":"5.2. \nOverriding Contained Intrinsic Sizes: the contain-intrinsic-* properties"}],"url":"https://drafts.csswg.org/css-logical-1/#logical-property-group"}, @@ -2802,6 +2823,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "f005b2f6": {"dfnID":"f005b2f6","dfnText":"grid container","external":true,"refSections":[{"refs":[{"id":"ref-for-grid-container"}],"title":"5.2. \nOverriding Contained Intrinsic Sizes: the contain-intrinsic-* properties"}],"url":"https://drafts.csswg.org/css-grid-2/#grid-container"}, "f0809abc": {"dfnID":"f0809abc","dfnText":"&&","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-all"},{"id":"ref-for-comb-all\u2460"}],"title":"5.2. \nOverriding Contained Intrinsic Sizes: the contain-intrinsic-* properties"}],"url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "f0c46389": {"dfnID":"f0c46389","dfnText":"block-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-block-size"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-propdef-block-size\u2460"}],"title":"4.2.1. \nMargin-collapsing"},{"refs":[{"id":"ref-for-propdef-block-size\u2461"}],"title":"\nRecent Changes"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-block-size"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"1.1. \nModule interactions"},{"refs":[{"id":"ref-for-propdef-max-height\u2460"}],"title":"3.2. \nNew Sizing Values: the stretch, fit-content, and contain keywords"},{"refs":[{"id":"ref-for-propdef-max-height\u2461"}],"title":"6.2. \nContain-fit Sizing: stretching while maintaining an aspect ratio"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "f952f01b": {"dfnID":"f952f01b","dfnText":"non-replaced","external":true,"refSections":[{"refs":[{"id":"ref-for-non-replaced"},{"id":"ref-for-non-replaced\u2460"}],"title":"4.1. \nPreferred Aspect Ratios: the aspect-ratio property"},{"refs":[{"id":"ref-for-non-replaced\u2461"}],"title":"5.4. \nZeroing Min-Content Size Contributions: the min-intrinsic-sizing property"}],"url":"https://drafts.csswg.org/css-display-4/#non-replaced"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"},{"id":"ref-for-length-value\u2460"},{"id":"ref-for-length-value\u2461"},{"id":"ref-for-length-value\u2462"},{"id":"ref-for-length-value\u2463"},{"id":"ref-for-length-value\u2464"},{"id":"ref-for-length-value\u2465"},{"id":"ref-for-length-value\u2466"},{"id":"ref-for-length-value\u2467"}],"title":"5.2. \nOverriding Contained Intrinsic Sizes: the contain-intrinsic-* properties"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "fd9aa8f7": {"dfnID":"fd9aa8f7","dfnText":"block-level box","external":true,"refSections":[{"refs":[{"id":"ref-for-block-level-box"}],"title":"6.1. \nStretch-fit Sizing: filling the containing block"}],"url":"https://drafts.csswg.org/css-display-4/#block-level-box"}, @@ -3371,6 +3393,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto": {"export":true,"for_":["width","height","min-width","min-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"max-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"min-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content"}, +"https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto": {"export":true,"for_":["contain-intrinsic-width","contain-intrinsic-height","contain-intrinsic-block-size","contain-intrinsic-inline-size","contain-intrinsic-size"],"level":"4","normative":true,"shortname":"css-sizing","spec":"css-sizing-4","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto"}, "https://drafts.csswg.org/css-values-4/#comb-all": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"&&","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "https://drafts.csswg.org/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"||","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-any"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -3381,6 +3404,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#ratio-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<ratio>","type":"type","url":"https://drafts.csswg.org/css-values-4/#ratio-value"}, "https://drafts.csswg.org/css-writing-modes-4/#block-axis": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"block axis","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#block-axis"}, "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"iframe","type":"element","url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-speech-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-speech-1/Overview.console.txt index 1f1bd5c0e7..adb75eefdb 100644 --- a/tests/github/w3c/csswg-drafts/css-speech-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-speech-1/Overview.console.txt @@ -29,8 +29,10 @@ spec:css22; type:value; text:speech spec:mediaqueries-5; type:value; text:speech ''speech'' LINE 75: Multiple possible 'all' maybe refs. -Arbitrarily chose https://drafts.csswg.org/css-break-4/#valdef-break-before-all +Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-anchor-position-1; type:value; text:all +spec:css-borders-4; type:value; text:all spec:css-break-4; type:value; for:break-before; text:all spec:css-break-4; type:value; for:break-after; text:all spec:css-inline-3; type:value; text:all @@ -43,6 +45,7 @@ spec:css-transitions-1; type:value; text:all spec:css-ui-4; type:value; text:all spec:css-writing-modes-4; type:value; text:all spec:mediaqueries-5; type:value; text:all +spec:scroll-animations-1; type:value; text:all ''all'' LINE 75: Multiple possible 'screen' maybe refs. Arbitrarily chose https://drafts.csswg.org/css2/#valdef-media-screen diff --git a/tests/github/w3c/csswg-drafts/css-speech-1/Overview.html b/tests/github/w3c/csswg-drafts/css-speech-1/Overview.html index ceea960062..ddffcf4258 100644 --- a/tests/github/w3c/csswg-drafts/css-speech-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-speech-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Speech Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-speech-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -732,7 +731,7 @@ <h1 class="p-name no-ref" id="title">CSS Speech Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -754,7 +753,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-speech] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-speech%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -899,7 +898,7 @@ <h2 class="heading settled" data-level="2" id="background"><span class="secno">2 and defines a new “box” model specifically for the aural dimension.</p> <p>Content creators can include CSS properties for user agents with text to speech synthesis capabilities for any media type - though - generally, they will only make sense for <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-break-4/#valdef-break-before-all" id="ref-for-valdef-break-before-all">all</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-media-screen" id="ref-for-valdef-media-screen">screen</a>. + generally, they will only make sense for <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all" id="ref-for-valdef-anchor-scope-all">all</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-media-screen" id="ref-for-valdef-media-screen">screen</a>. These styles are simply ignored by user agents that do not support the Speech module.</p> <h2 class="heading settled" data-level="3" id="ssml-rel"><span class="secno">3. </span><span class="content"> Relationship with SSML</span><a class="self-link" href="#ssml-rel"></a></h2> @@ -1552,7 +1551,7 @@ <h3 class="heading settled" data-level="10.1" id="cue-props-cue-before-after"><s <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-cue-before">cue-before</dfn>, <dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-cue-after">cue-after</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-uri" id="ref-for-value-def-uri">&lt;uri></a> <a class="production css" data-link-type="type" href="#typedef-voice-volume-decibel" id="ref-for-typedef-voice-volume-decibel④">&lt;decibel></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt②">?</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②⑥">|</a> none + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/syndata.html#value-def-uri" id="ref-for-value-def-uri">&lt;uri></a> <a class="production css" data-link-type="type" href="#typedef-voice-volume-decibel" id="ref-for-typedef-voice-volume-decibel④">&lt;decibel></a><a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#mult-opt" id="ref-for-mult-opt②">?</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②⑥">|</a> none <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>none @@ -1583,7 +1582,7 @@ <h3 class="heading settled" data-level="10.1" id="cue-props-cue-before-after"><s and CSS Speech’s auditory icons provide limited functionality compared to SSML’s <code>audio</code> element.</p> <dl> - <dt><dfn class="dfn-paneled css" data-dfn-for="cue-before,cue-after" data-dfn-type="value" data-export id="valdef-cue-before-uri"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-uri" id="ref-for-value-def-uri①">&lt;uri></a></dfn> + <dt><dfn class="dfn-paneled css" data-dfn-for="cue-before,cue-after" data-dfn-type="value" data-export id="valdef-cue-before-uri"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/syndata.html#value-def-uri" id="ref-for-value-def-uri①">&lt;uri></a></dfn> <dd> The URI designates an auditory icon resource. When a user agent is not able to render the specified auditory icon (e.g. missing file resource, or unsupported audio codec), @@ -2785,6 +2784,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> + <li> + <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="6fe3a93b">all</span> + </ul> <li> <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> @@ -2796,11 +2800,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="cecbe9cd">margin</span> <li><span class="dfn-paneled" id="b5418f3e">padding</span> </ul> - <li> - <a data-link-type="biblio">[CSS-BREAK-4]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="37eda612">all</span> - </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> @@ -2867,10 +2866,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="8e76f952">&lt;uri></span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="d6a1ad1b">&lt;uri></span> <li><span class="dfn-paneled" id="fa9dd02c">screen</span> <li><span class="dfn-paneled" id="6019a537">speech</span> </ul> @@ -2904,20 +2907,20 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> + <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] + <dd>Tab Atkins Jr.; Elika Etemad; Ian Kilpatrick. <a href="https://drafts.csswg.org/css-anchor-position-1/"><cite>CSS Anchor Positioning</cite></a>. URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> - <dt id="biblio-css-break-4">[CSS-BREAK-4] - <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] @@ -3358,7 +3361,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "29a4aea4": {"dfnID":"29a4aea4","dfnText":"<frequency>","external":true,"refSections":[{"refs":[{"id":"ref-for-frequency-value"},{"id":"ref-for-frequency-value\u2460"},{"id":"ref-for-frequency-value\u2461"}],"title":"11.3. \nThe voice-pitch property"},{"refs":[{"id":"ref-for-frequency-value\u2462"},{"id":"ref-for-frequency-value\u2463"},{"id":"ref-for-frequency-value\u2464"}],"title":"11.4. \nThe voice-range property"}],"url":"https://drafts.csswg.org/css-values-4/#frequency-value"}, "2e466b95": {"dfnID":"2e466b95","dfnText":"lower-alpha","external":true,"refSections":[{"refs":[{"id":"ref-for-lower-alpha"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#lower-alpha"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"3.1. \nValue Definitions"},{"refs":[{"id":"ref-for-css-wide-keywords\u2460"}],"title":"11.1. \nThe voice-family property"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, -"37eda612": {"dfnID":"37eda612","dfnText":"all","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-break-before-all"}],"title":"2. \nBackground information, CSS 2.1"}],"url":"https://drafts.csswg.org/css-break-4/#valdef-break-before-all"}, "48ba888a": {"dfnID":"48ba888a","dfnText":"upper-latin","external":true,"refSections":[{"refs":[{"id":"ref-for-upper-latin"},{"id":"ref-for-upper-latin\u2460"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#upper-latin"}, "494d86c0": {"dfnID":"494d86c0","dfnText":"upper-alpha","external":true,"refSections":[{"refs":[{"id":"ref-for-upper-alpha"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#upper-alpha"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"8.2. \nThe pause shorthand property"},{"refs":[{"id":"ref-for-mult-opt\u2460"}],"title":"9.2. \nThe rest shorthand property"},{"refs":[{"id":"ref-for-mult-opt\u2461"}],"title":"10.1. \nThe cue-before and cue-after properties"},{"refs":[{"id":"ref-for-mult-opt\u2462"}],"title":"10.3. \nThe cue shorthand property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, @@ -3368,9 +3370,11 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "6420cb11": {"dfnID":"6420cb11","dfnText":"visible","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-visibility-visible"}],"title":"7.1. \nThe speak property"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-visibility-visible"}, "68150e76": {"dfnID":"68150e76","dfnText":"*","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-zero-plus"}],"title":"11.1. \nThe voice-family property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-zero-plus"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"}],"title":"6.1. \nThe voice-volume property"},{"refs":[{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"}],"title":"6.2. \nThe voice-balance property"},{"refs":[{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"}],"title":"7.1. \nThe speak property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"}],"title":"7.2. \nThe speak-as property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"}],"title":"8.1. \nThe pause-before and pause-after properties"},{"refs":[{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"}],"title":"9.1. \nThe rest-before and rest-after properties"},{"refs":[{"id":"ref-for-comb-one\u2461\u2465"}],"title":"10.1. \nThe cue-before and cue-after properties"},{"refs":[{"id":"ref-for-comb-one\u2461\u2466"},{"id":"ref-for-comb-one\u2461\u2467"},{"id":"ref-for-comb-one\u2461\u2468"}],"title":"11.1. \nThe voice-family property"},{"refs":[{"id":"ref-for-comb-one\u2462\u24ea"},{"id":"ref-for-comb-one\u2462\u2460"},{"id":"ref-for-comb-one\u2462\u2461"},{"id":"ref-for-comb-one\u2462\u2462"},{"id":"ref-for-comb-one\u2462\u2463"}],"title":"11.2. \nThe voice-rate property"},{"refs":[{"id":"ref-for-comb-one\u2462\u2464"},{"id":"ref-for-comb-one\u2462\u2465"},{"id":"ref-for-comb-one\u2462\u2466"},{"id":"ref-for-comb-one\u2462\u2467"},{"id":"ref-for-comb-one\u2462\u2468"},{"id":"ref-for-comb-one\u2463\u24ea"},{"id":"ref-for-comb-one\u2463\u2460"}],"title":"11.3. \nThe voice-pitch property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2461"},{"id":"ref-for-comb-one\u2463\u2462"},{"id":"ref-for-comb-one\u2463\u2463"},{"id":"ref-for-comb-one\u2463\u2464"},{"id":"ref-for-comb-one\u2463\u2465"},{"id":"ref-for-comb-one\u2463\u2466"},{"id":"ref-for-comb-one\u2463\u2467"}],"title":"11.4. \nThe voice-range property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2468"},{"id":"ref-for-comb-one\u2464\u24ea"},{"id":"ref-for-comb-one\u2464\u2460"},{"id":"ref-for-comb-one\u2464\u2461"}],"title":"11.5. \nThe voice-stress property"},{"refs":[{"id":"ref-for-comb-one\u2464\u2462"}],"title":"12.1. \nThe voice-duration property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, +"6fe3a93b": {"dfnID":"6fe3a93b","dfnText":"all","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-scope-all"}],"title":"2. \nBackground information, CSS 2.1"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all"}, "70c9f859": {"dfnID":"70c9f859","dfnText":"<integer>","external":true,"refSections":[{"refs":[{"id":"ref-for-integer-value"},{"id":"ref-for-integer-value\u2460"}],"title":"11.1. \nThe voice-family property"}],"url":"https://drafts.csswg.org/css-values-4/#integer-value"}, "8343cc0f": {"dfnID":"8343cc0f","dfnText":"aural","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-media-aural"}],"title":"2. \nBackground information, CSS 2.1"}],"url":"https://drafts.csswg.org/mediaqueries-5/#valdef-media-aural"}, "8a82fda1": {"dfnID":"8a82fda1","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"}],"title":"6.1. \nThe voice-volume property"},{"refs":[{"id":"ref-for-comb-any\u2460"},{"id":"ref-for-comb-any\u2461"}],"title":"7.2. \nThe speak-as property"},{"refs":[{"id":"ref-for-comb-any\u2462"}],"title":"11.2. \nThe voice-rate property"},{"refs":[{"id":"ref-for-comb-any\u2463"}],"title":"11.3. \nThe voice-pitch property"},{"refs":[{"id":"ref-for-comb-any\u2464"}],"title":"11.4. \nThe voice-range property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-any"}, +"8e76f952": {"dfnID":"8e76f952","dfnText":"<uri>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-uri"},{"id":"ref-for-value-def-uri\u2460"}],"title":"10.1. \nThe cue-before and cue-after properties"}],"url":"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri"}, "9dc6ce48": {"dfnID":"9dc6ce48","dfnText":"identifier","external":true,"refSections":[{"refs":[{"id":"ref-for-css-css-identifier"}],"title":"11.1. \nThe voice-family property"}],"url":"https://drafts.csswg.org/css-values-4/#css-css-identifier"}, "9f9120ff": {"dfnID":"9f9120ff","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"}],"title":"11.1. \nThe voice-family property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-comma"}, "a1900547": {"dfnID":"a1900547","dfnText":"upper-roman","external":true,"refSections":[{"refs":[{"id":"ref-for-upper-roman"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#upper-roman"}, @@ -3387,7 +3391,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "cecbe9cd": {"dfnID":"cecbe9cd","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"5. \nThe aural formatting model"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin"}, "d4922c84": {"dfnID":"d4922c84","dfnText":"lower-latin","external":true,"refSections":[{"refs":[{"id":"ref-for-lower-latin"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#lower-latin"}, "d65d17df": {"dfnID":"d65d17df","dfnText":"font-family","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-family"},{"id":"ref-for-propdef-font-family\u2460"}],"title":"11.1. \nThe voice-family property"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-family"}, -"d6a1ad1b": {"dfnID":"d6a1ad1b","dfnText":"<uri>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-uri"},{"id":"ref-for-value-def-uri\u2460"}],"title":"10.1. \nThe cue-before and cue-after properties"}],"url":"https://drafts.csswg.org/css2/#value-def-uri"}, "da00cf5b": {"dfnID":"da00cf5b","dfnText":"armenian","external":true,"refSections":[{"refs":[{"id":"ref-for-armenian"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#armenian"}, "dde41168": {"dfnID":"dde41168","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"}],"title":"6.2. \nThe voice-balance property"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-left"}, "de56fbfe": {"dfnID":"de56fbfe","dfnText":"list-style-type","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-list-style-type"},{"id":"ref-for-propdef-list-style-type\u2460"}],"title":"13. \nList items and counters styles"}],"url":"https://drafts.csswg.org/css-lists-3/#propdef-list-style-type"}, @@ -3958,10 +3961,10 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "#valdef-voice-volume-x-loud": {"export":true,"for_":["voice-volume"],"level":"1","normative":true,"shortname":"css-speech","spec":"css-speech-1","status":"local","text":"x-loud","type":"value","url":"#valdef-voice-volume-x-loud"}, "#valdef-voice-volume-x-soft": {"export":true,"for_":["voice-volume"],"level":"1","normative":true,"shortname":"css-speech","spec":"css-speech-1","status":"local","text":"x-soft","type":"value","url":"#valdef-voice-volume-x-soft"}, "#voice-pitch-semitone": {"export":true,"for_":["voice-pitch"],"level":"1","normative":true,"shortname":"css-speech","spec":"css-speech-1","status":"local","text":"semitone","type":"dfn","url":"#voice-pitch-semitone"}, +"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all": {"export":true,"for_":["anchor-scope"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"all","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border"}, "https://drafts.csswg.org/css-box-4/#propdef-margin": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin"}, "https://drafts.csswg.org/css-box-4/#propdef-padding": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"padding","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-padding"}, -"https://drafts.csswg.org/css-break-4/#valdef-break-before-all": {"export":true,"for_":["break-before","break-after"],"level":"4","normative":true,"shortname":"css-break","spec":"css-break-4","status":"current","text":"all","type":"value","url":"https://drafts.csswg.org/css-break-4/#valdef-break-before-all"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"inherit","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "https://drafts.csswg.org/css-content-3/#propdef-content": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-content","spec":"css-content-3","status":"current","text":"content","type":"property","url":"https://drafts.csswg.org/css-content-3/#propdef-content"}, "https://drafts.csswg.org/css-counter-styles-3/#armenian": {"export":true,"for_":["<counter-style-name>"],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"armenian","type":"value","url":"https://drafts.csswg.org/css-counter-styles-3/#armenian"}, @@ -4005,10 +4008,10 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-values-4/#time-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<time>","type":"type","url":"https://drafts.csswg.org/css-values-4/#time-value"}, "https://drafts.csswg.org/css2/#valdef-media-screen": {"export":true,"for_":["@media"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"screen","type":"value","url":"https://drafts.csswg.org/css2/#valdef-media-screen"}, "https://drafts.csswg.org/css2/#valdef-media-speech": {"export":true,"for_":["@media"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"speech","type":"value","url":"https://drafts.csswg.org/css2/#valdef-media-speech"}, -"https://drafts.csswg.org/css2/#value-def-uri": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<uri>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-uri"}, "https://drafts.csswg.org/mediaqueries-5/#valdef-media-aural": {"export":true,"for_":["@media"],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"aural","type":"value","url":"https://drafts.csswg.org/mediaqueries-5/#valdef-media-aural"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-span-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"span","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-span-element"}, "https://infra.spec.whatwg.org/#string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"string","type":"dfn","url":"https://infra.spec.whatwg.org/#string"}, +"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"<uri>","type":"type","url":"https://www.w3.org/TR/CSS21/syndata.html#value-def-uri"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.console.txt index 0759ee96c4..2458d56ddb 100644 --- a/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.console.txt @@ -54,30 +54,12 @@ Randomly chose one of them; other instances might get a different random choice. <a bs-line-number="1686" data-link-type="dfn" data-lt="at-rules">at-rules</a> LINE ~2935: No 'property' refs found for 'unicode-range'. 'unicode-range' -LINE 3324: Ambiguous for-less link for 'invalid', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:css-syntax-3; type:dfn; for:css; text:invalid -for-less references: -spec:rdf12-semantics; type:dfn; for:/; text:invalid -<a bs-line-number="3324" data-link-type="dfn" data-lt="invalid">invalid</a> -LINE 3342: Ambiguous for-less link for 'invalid', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:css-syntax-3; type:dfn; for:css; text:invalid -for-less references: -spec:rdf12-semantics; type:dfn; for:/; text:invalid -<a bs-line-number="3342" data-link-type="dfn" data-lt="invalid">invalid</a> -LINE 3347: Ambiguous for-less link for 'invalid', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:css-syntax-3; type:dfn; for:css; text:invalid -for-less references: -spec:rdf12-semantics; type:dfn; for:/; text:invalid -<a bs-line-number="3347" data-link-type="dfn" data-lt="invalid">invalid</a> -LINE 3350: Ambiguous for-less link for 'invalid', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: -Local references: -spec:css-syntax-3; type:dfn; for:css; text:invalid -for-less references: -spec:rdf12-semantics; type:dfn; for:/; text:invalid -<a bs-line-number="3350" data-link-type="dfn" data-lt="invalid">invalid</a> +LINE 3288: Multiple possible '<general-enclosed>' type refs. +Arbitrarily chose https://drafts.csswg.org/css-values-4/#typedef-general-enclosed +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-values-4; type:type; text:<general-enclosed> +spec:mediaqueries-5; type:type; text:<general-enclosed> +<<general-enclosed>> LINE ~3371: Multiple possible 'dfn' local refs for 'at-rules'. Randomly chose one of them; other instances might get a different random choice. [=At-rules=] @@ -92,8 +74,6 @@ spec:dom; type:dfn; for:Attr; text:namespace spec:dom; type:dfn; for:Element; text:namespace spec:webidl; type:dfn; text:namespace [=namespace=] -LINE ~3381: No 'dfn' refs found for 'rules'. -[=rules=] LINE ~3389: Multiple possible 'dfn' local refs for 'at-rule'. Randomly chose one of them; other instances might get a different random choice. [=at-rule=] diff --git a/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.html b/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.html index ce918e9560..1c0bb8dd30 100644 --- a/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-syntax-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Syntax Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-syntax-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -821,7 +820,7 @@ <h1 class="p-name no-ref" id="title">CSS Syntax Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -843,7 +842,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-syntax] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-syntax%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -4666,7 +4665,7 @@ <h3 class="heading settled" data-level="8.2" id="any-value"><span class="secno"> <p><span class="informative">For example, <a data-link-type="dfn" href="https://drafts.csswg.org/css-variables-2/#custom-property" id="ref-for-custom-property">custom properties</a> allow any reasonable value, as they can contain arbitrary pieces of other CSS properties, or be used for things that aren’t part of existing CSS at all. - For another example, the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed">&lt;general-enclosed></a> production in Media Queries + For another example, the <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed" id="ref-for-typedef-general-enclosed">&lt;general-enclosed></a> production in Media Queries defines the bounds of what future syntax MQs will allow, and uses special logic to deal with "unknown" values.</span></p> <p>To aid in this, two additional productions are defined:</p> @@ -4683,7 +4682,7 @@ <h2 class="heading settled" data-level="9" id="css-stylesheets"><span class="sec <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="parse-a-css-stylesheet">parse a CSS stylesheet</dfn>, first <a data-link-type="dfn" href="#parse-a-stylesheet" id="ref-for-parse-a-stylesheet②">parse a stylesheet</a>. Interpret all of the resulting top-level <a data-link-type="dfn" href="#qualified-rule" id="ref-for-qualified-rule⑤">qualified rules</a> as <a data-link-type="dfn" href="#style-rule" id="ref-for-style-rule②">style rules</a>, defined below.</p> - <p>If any style rule is <a data-link-type="dfn">invalid</a>, + <p>If any style rule is <a data-link-type="dfn" href="#css-invalid" id="ref-for-css-invalid">invalid</a>, or any at-rule is not recognized or is invalid according to its grammar or context, it’s a <a data-link-type="dfn" href="#parse-error" id="ref-for-parse-error①⑤">parse error</a>. Discard that rule.</p> @@ -4693,12 +4692,12 @@ <h3 class="heading settled" data-level="9.1" id="style-rules"><span class="secno CSS Cascading and Inheritance <a data-link-type="biblio" href="#biblio-css-cascade-3" title="CSS Cascading and Inheritance Level 3">[CSS-CASCADE-3]</a> defines how the declarations inside of style rules participate in the cascade.</p> <p>The prelude of the qualified rule is <a data-link-type="dfn" href="#css-parse-something-according-to-a-css-grammar" id="ref-for-css-parse-something-according-to-a-css-grammar④">parsed</a> as a <a class="production css" data-link-type="type" href="https://drafts.csswg.org/selectors-4/#typedef-selector-list" id="ref-for-typedef-selector-list">&lt;selector-list></a>. If this returns failure, - the entire style rule is <a data-link-type="dfn">invalid</a>.</p> + the entire style rule is <a data-link-type="dfn" href="#css-invalid" id="ref-for-css-invalid①">invalid</a>.</p> <p>The content of the qualified rule’s block is parsed as a <a data-link-type="dfn" href="#parse-a-list-of-declarations" id="ref-for-parse-a-list-of-declarations③">list of declarations</a>. Unless defined otherwise by another specification or a future level of this specification, - at-rules in that list are <a data-link-type="dfn">invalid</a> and must be ignored. + at-rules in that list are <a data-link-type="dfn" href="#css-invalid" id="ref-for-css-invalid②">invalid</a> and must be ignored. Declaration for an unknown CSS property - or whose value does not match the syntax defined by the property are <span>invalid</span> and must be ignored. + or whose value does not match the syntax defined by the property are <span id="ref-for-css-invalid③">invalid</span> and must be ignored. The validity of the style rule’s contents have no effect on the validity of the style rule itself. Unless otherwise specified, property names are <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive⑧">ASCII case-insensitive</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> The names of Custom Properties <a data-link-type="biblio" href="#biblio-css-variables" title="CSS Custom Properties for Cascading Variables Module Level 1">[CSS-VARIABLES]</a> are case-sensitive.</p> @@ -4726,7 +4725,7 @@ <h3 class="heading settled" data-level="9.2" id="at-rules"><span class="secno">9 </ul> <p>At-rules take many forms, depending on the specific rule and its purpose, but broadly speaking there are two kinds: <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="statement at-rule" id="statement-at-rule">statement at-rules</dfn> which are simpler constructs that end in a semicolon, - and <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="block at-rule" id="block-at-rule">block at-rules</dfn> which end in a <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#curly-block" id="ref-for-curly-block">{}-block</a> that can contain nested <a data-link-type="dfn">rules</a> or <a data-link-type="dfn" href="#declaration" id="ref-for-declaration">declarations</a>.</p> + and <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="block at-rule" id="block-at-rule">block at-rules</dfn> which end in a <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#curly-block" id="ref-for-curly-block">{}-block</a> that can contain nested <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#css-rule" id="ref-for-css-rule">rules</a> or <a data-link-type="dfn" href="#declaration" id="ref-for-declaration">declarations</a>.</p> <p><a data-link-type="dfn" href="#block-at-rule" id="ref-for-block-at-rule">Block at-rules</a> will typically contain a collection of (generic or <a data-link-type="dfn" href="#at-rule" id="ref-for-at-rule①③">at-rule</a>–specific) <span id="ref-for-at-rule①④">at-rules</span>, <a data-link-type="dfn" href="#qualified-rule" id="ref-for-qualified-rule⑧">qualified rules</a>, and/or <a data-link-type="dfn" href="#css-descriptor-declarations" id="ref-for-css-descriptor-declarations">descriptor declarations</a> subject to limitations defined by the <span id="ref-for-at-rule①⑤">at-rule</span>. <dfn class="dfn-paneled" data-dfn-for="CSS" data-dfn-type="dfn" data-export data-lt="descriptor" id="css-descriptor">Descriptors</dfn> are similar to <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#css-property" id="ref-for-css-property①">properties</a> (and are declared with the same syntax) but are associated with a particular type of <span id="ref-for-at-rule①⑥">at-rule</span> rather than with elements and boxes in the tree.</p> @@ -5021,7 +5020,7 @@ <h3 class="heading settled" data-level="12.2" id="changes-CR-20140220"><span cla <p>The following substantive changes were made:</p> <ul> <li data-md> - <p>Removed <a class="production css" data-link-type="type">&lt;unicode-range-token></a>, in favor of creating a <a class="production css" data-link-type="type" href="#typedef-urange" id="ref-for-typedef-urange②③">&lt;urange></a> production.</p> + <p>Removed <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token" id="ref-for-typedef-unicode-range-token">&lt;unicode-range-token></a>, in favor of creating a <a class="production css" data-link-type="type" href="#typedef-urange" id="ref-for-typedef-urange②③">&lt;urange></a> production.</p> <li data-md> <p>url() functions that contain a string are now parsed as normal <a class="production css" data-link-type="type" href="#typedef-function-token" id="ref-for-typedef-function-token①②">&lt;function-token></a>s. url() functions that contain "raw" URLs are still specially parsed as <a class="production css" data-link-type="type" href="#typedef-url-token" id="ref-for-typedef-url-token①①">&lt;url-token></a>s.</p> @@ -5050,7 +5049,7 @@ <h3 class="heading settled" data-level="12.2" id="changes-CR-20140220"><span cla <li data-md> <p>Removed the Selectors-specific tokens, per WG resolution.</p> <li data-md> - <p>Filtered <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-surrogate" id="ref-for-dfn-surrogate">surrogates</a> from the input stream, per WG resolution. + <p>Filtered <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate②">surrogates</a> from the input stream, per WG resolution. Now the entire specification operates only on <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#scalar-value" id="ref-for-scalar-value">scalar values</a>.</p> </ul> <p>The following editorial changes were made:</p> @@ -5125,7 +5124,7 @@ <h3 class="heading settled" data-level="12.5" id="changes-css21"><span class="se for inserting comments as necessary between tokens that need to be separated, e.g. two consecutive <a class="production css" data-link-type="type" href="#typedef-ident-token" id="ref-for-typedef-ident-token①⑦">&lt;ident-token></a>s. <li> - The <a class="production css" data-link-type="type">&lt;unicode-range-token></a> was removed, + The <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token" id="ref-for-typedef-unicode-range-token①">&lt;unicode-range-token></a> was removed, as it was low value and occasionally actively harmful. (<span class="css">u+a { font-weight: bold; }</span> was an invalid selector, for example...) <p>Instead, a <a class="production css" data-link-type="type" href="#typedef-urange" id="ref-for-typedef-urange②④">&lt;urange></a> production was added, @@ -5150,7 +5149,7 @@ <h3 class="heading settled" data-level="12.5" id="changes-css21"><span class="se The only consequence of this is that comments can no longer be inserted between the sign and the number. <li> Scientific notation is supported for numbers/percentages/dimensions to match SVG, per WG resolution. - <li> Hexadecimal escape for <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate②">surrogate</a> now emit a replacement character rather than the surrogate. + <li> Hexadecimal escape for <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate③">surrogate</a> now emit a replacement character rather than the surrogate. This allows implementations to safely use UTF-16 internally. </ul> <p>Parsing changes:</p> @@ -5483,6 +5482,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="ef9a1f56">&lt;unicode-range-token></span> + <li><span class="dfn-paneled" id="4fcdc12a">rule</span> <li><span class="dfn-paneled" id="514a11a8">{}-block</span> </ul> <li> @@ -5506,6 +5507,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="68150e76">*</span> <li><span class="dfn-paneled" id="bedd9d42">+</span> <li><span class="dfn-paneled" id="5751a02c">&lt;dimension></span> + <li><span class="dfn-paneled" id="d32570a7">&lt;general-enclosed></span> <li><span class="dfn-paneled" id="16310992">&lt;number></span> <li><span class="dfn-paneled" id="977d3003">&lt;string></span> <li><span class="dfn-paneled" id="537cf076">?</span> @@ -5553,11 +5555,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="b80d76a2">p</span> <li><span class="dfn-paneled" id="1d1029cb">sizes</span> </ul> - <li> - <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="6b7796d8">surrogates</span> - </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: <ul> @@ -5573,7 +5570,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[MEDIAQUERIES-5]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="c4f8137c">&lt;general-enclosed></span> <li><span class="dfn-paneled" id="c5d206d8">&lt;media-query-list></span> </ul> <li> @@ -5597,7 +5593,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -5608,8 +5604,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Anne van Kesteren. <a href="https://encoding.spec.whatwg.org/"><cite>Encoding Standard</cite></a>. Living Standard. URL: <a href="https://encoding.spec.whatwg.org/">https://encoding.spec.whatwg.org/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> - <dt id="biblio-i18n-glossary">[I18N-GLOSSARY] - <dd>Richard Ishida; Addison Phillips. <a href="https://w3c.github.io/i18n-glossary/"><cite>Internationalization Glossary</cite></a>. URL: <a href="https://w3c.github.io/i18n-glossary/">https://w3c.github.io/i18n-glossary/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -5620,11 +5614,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-text-decor-3">[CSS-TEXT-DECOR-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-3/">https://drafts.csswg.org/css-text-decor-3/</a> <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] @@ -5632,17 +5626,17 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css-values-5">[CSS-VALUES-5] - <dd>CSS Values and Units Module Level 5 URL: <a href="https://drafts.csswg.org/css-values-5/">https://drafts.csswg.org/css-values-5/</a> + <dd><a href="https://drafts.csswg.org/css-values-5/"><cite>CSS Values and Units Module Level 5</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-values-5/">https://drafts.csswg.org/css-values-5/</a> <dt id="biblio-css-variables">[CSS-VARIABLES] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-variables/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-variables/">https://drafts.csswg.org/css-variables/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-mediaq">[MEDIAQ] @@ -5864,6 +5858,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "1d1029cb": {"dfnID":"1d1029cb","dfnText":"sizes","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-img-sizes"}],"title":"5.3.2. \nParse A Comma-Separated List According To A CSS Grammar"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-sizes"}, "2edd539e": {"dfnID":"2edd539e","dfnText":"property","external":true,"refSections":[{"refs":[{"id":"ref-for-css-property"}],"title":"5. \nParsing"},{"refs":[{"id":"ref-for-css-property\u2460"}],"title":"9.2. \nAt-rules"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-property"}, "4e55d7fb": {"dfnID":"4e55d7fb","dfnText":"@import","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-import"}],"title":"2. \nDescription of CSS\u2019s Syntax"},{"refs":[{"id":"ref-for-at-ruledef-import\u2460"}],"title":"3.2. \nThe input byte stream"}],"url":"https://drafts.csswg.org/css-cascade-5/#at-ruledef-import"}, +"4fcdc12a": {"dfnID":"4fcdc12a","dfnText":"rule","external":true,"refSections":[{"refs":[{"id":"ref-for-css-rule"}],"title":"9.2. \nAt-rules"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-rule"}, "514a11a8": {"dfnID":"514a11a8","dfnText":"{}-block","external":true,"refSections":[{"refs":[{"id":"ref-for-curly-block"}],"title":"9.2. \nAt-rules"}],"url":"https://drafts.csswg.org/css-syntax-3/#curly-block"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"}],"title":"6.2. \nThe <an+b> type"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "5751a02c": {"dfnID":"5751a02c","dfnText":"<dimension>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dimension"},{"id":"ref-for-typedef-dimension\u2460"}],"title":"7.1. \nThe <urange> type"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-dimension"}, @@ -5875,7 +5870,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "649608b9": {"dfnID":"649608b9","dfnText":"list","external":true,"refSections":[{"refs":[{"id":"ref-for-list"}],"title":"5.3.2. \nParse A Comma-Separated List According To A CSS Grammar"},{"refs":[{"id":"ref-for-list\u2460"}],"title":"5.4.2. \nConsume an at-rule"},{"refs":[{"id":"ref-for-list\u2461"}],"title":"5.4.3. \nConsume a qualified rule"},{"refs":[{"id":"ref-for-list\u2462"}],"title":"5.4.5. \nConsume a declaration"},{"refs":[{"id":"ref-for-list\u2463"}],"title":"5.4.7. \nConsume a simple block"},{"refs":[{"id":"ref-for-list\u2464"}],"title":"5.4.8. \nConsume a function"}],"url":"https://infra.spec.whatwg.org/#list"}, "68150e76": {"dfnID":"68150e76","dfnText":"*","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-zero-plus"},{"id":"ref-for-mult-zero-plus\u2460"},{"id":"ref-for-mult-zero-plus\u2461"}],"title":"7.1. \nThe <urange> type"}],"url":"https://drafts.csswg.org/css-values-4/#mult-zero-plus"}, "68bf3d31": {"dfnID":"68bf3d31","dfnText":"a","external":true,"refSections":[{"refs":[{"id":"ref-for-the-a-element"}],"title":"2. \nDescription of CSS\u2019s Syntax"}],"url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-a-element"}, -"6b7796d8": {"dfnID":"6b7796d8","dfnText":"surrogates","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-surrogate"}],"title":"12.2. \nChanges from the 20 February 2014 Candidate Recommendation"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"}],"title":"6.2. \nThe <an+b> type"},{"refs":[{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"}],"title":"7.1. \nThe <urange> type"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "71aed09f": {"dfnID":"71aed09f","dfnText":"<selector-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-selector-list"}],"title":"9.1. \nStyle rules"}],"url":"https://drafts.csswg.org/selectors-4/#typedef-selector-list"}, "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"}],"title":"4.3.4. \nConsume an ident-like token"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2460"}],"title":"5.4.5. \nConsume a declaration"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2461"},{"id":"ref-for-ascii-case-insensitive\u2462"},{"id":"ref-for-ascii-case-insensitive\u2463"},{"id":"ref-for-ascii-case-insensitive\u2464"},{"id":"ref-for-ascii-case-insensitive\u2465"}],"title":"6.2. \nThe <an+b> type"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2466"}],"title":"8. \nDefining Grammars for Rules and Other Values"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2467"}],"title":"9.1. \nStyle rules"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, @@ -5883,7 +5877,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"}],"title":"5.3.1. \nParse something according to a CSS grammar"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "99c988d6": {"dfnID":"99c988d6","dfnText":"remove","external":true,"refSections":[{"refs":[{"id":"ref-for-list-remove"}],"title":"5.4.5. \nConsume a declaration"}],"url":"https://infra.spec.whatwg.org/#list-remove"}, "9d795fd1": {"dfnID":"9d795fd1","dfnText":":nth-child()","external":true,"refSections":[{"refs":[{"id":"ref-for-nth-child-pseudo"}],"title":"6. \nThe An+B microsyntax"}],"url":"https://drafts.csswg.org/selectors-4/#nth-child-pseudo"}, -"a3fb968a": {"dfnID":"a3fb968a","dfnText":"surrogate","external":true,"refSections":[{"refs":[{"id":"ref-for-surrogate"}],"title":"3.3. \nPreprocessing the input stream"},{"refs":[{"id":"ref-for-surrogate\u2460"}],"title":"4.3.7. \nConsume an escaped code point"},{"refs":[{"id":"ref-for-surrogate\u2461"}],"title":"12.5. \nChanges from CSS 2.1 and Selectors Level 3"}],"url":"https://infra.spec.whatwg.org/#surrogate"}, +"a3fb968a": {"dfnID":"a3fb968a","dfnText":"surrogate","external":true,"refSections":[{"refs":[{"id":"ref-for-surrogate"}],"title":"3.3. \nPreprocessing the input stream"},{"refs":[{"id":"ref-for-surrogate\u2460"}],"title":"4.3.7. \nConsume an escaped code point"},{"refs":[{"id":"ref-for-surrogate\u2461"}],"title":"12.2. \nChanges from the 20 February 2014 Candidate Recommendation"},{"refs":[{"id":"ref-for-surrogate\u2462"}],"title":"12.5. \nChanges from CSS 2.1 and Selectors Level 3"}],"url":"https://infra.spec.whatwg.org/#surrogate"}, "a83be41c": {"dfnID":"a83be41c","dfnText":"underline","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-decoration-line-underline"}],"title":"2. \nDescription of CSS\u2019s Syntax"}],"url":"https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-underline"}, "anb": {"dfnID":"anb","dfnText":"An+B","external":false,"refSections":[],"url":"#anb"}, "anb-production": {"dfnID":"anb-production","dfnText":"<an+b>","external":false,"refSections":[{"refs":[{"id":"ref-for-anb-production"}],"title":"10.1. \nSerializing <an+b>"},{"refs":[{"id":"ref-for-anb-production\u2460"}],"title":"12.2. \nChanges from the 20 February 2014 Candidate Recommendation"}],"url":"#anb-production"}, @@ -5898,7 +5892,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "block-at-rule": {"dfnID":"block-at-rule","dfnText":"block at-rules","external":false,"refSections":[{"refs":[{"id":"ref-for-block-at-rule"}],"title":"9.2. \nAt-rules"}],"url":"#block-at-rule"}, "c16b1855": {"dfnID":"c16b1855","dfnText":"animation-timing-function","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-timing-function"}],"title":"8.1. \nDefining Block Contents: the <declaration-list>, <rule-list>, and <stylesheet> productions"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function"}, "c1ebc639": {"dfnID":"c1ebc639","dfnText":"@supports","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-supports"}],"title":"5.3. \nParser Entry Points"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, -"c4f8137c": {"dfnID":"c4f8137c","dfnText":"<general-enclosed>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-general-enclosed"}],"title":"8.2. \nDefining Arbitrary Contents: the <declaration-value> and <any-value> productions"}],"url":"https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed"}, "c5c89fde": {"dfnID":"c5c89fde","dfnText":"<keyframe-selector>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-keyframe-selector"}],"title":"8.1. \nDefining Block Contents: the <declaration-list>, <rule-list>, and <stylesheet> productions"}],"url":"https://drafts.csswg.org/css-animations-1/#typedef-keyframe-selector"}, "c5d206d8": {"dfnID":"c5d206d8","dfnText":"<media-query-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-media-query-list"}],"title":"8.1. \nDefining Block Contents: the <declaration-list>, <rule-list>, and <stylesheet> productions"}],"url":"https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list"}, "check-if-three-code-points-would-start-a-number": {"dfnID":"check-if-three-code-points-would-start-a-number","dfnText":"check if three code points would start a number","external":false,"refSections":[{"refs":[{"id":"ref-for-check-if-three-code-points-would-start-a-number"},{"id":"ref-for-check-if-three-code-points-would-start-a-number\u2460"},{"id":"ref-for-check-if-three-code-points-would-start-a-number\u2461"}],"title":"4.3.1. \nConsume a token"},{"refs":[{"id":"ref-for-check-if-three-code-points-would-start-a-number\u2462"}],"title":"4.3.12. \nConsume a number"}],"url":"#check-if-three-code-points-would-start-a-number"}, @@ -5930,13 +5923,14 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "css-descriptor-declarations": {"dfnID":"css-descriptor-declarations","dfnText":"descriptor declarations","external":false,"refSections":[{"refs":[{"id":"ref-for-css-descriptor-declarations"}],"title":"9.2. \nAt-rules"}],"url":"#css-descriptor-declarations"}, "css-filter-code-points": {"dfnID":"css-filter-code-points","dfnText":"filter code points","external":false,"refSections":[{"refs":[{"id":"ref-for-css-filter-code-points"}],"title":"3.3. \nPreprocessing the input stream"},{"refs":[{"id":"ref-for-css-filter-code-points\u2460"}],"title":"5.3. \nParser Entry Points"}],"url":"#css-filter-code-points"}, "css-ignored": {"dfnID":"css-ignored","dfnText":"ignored","external":false,"refSections":[],"url":"#css-ignored"}, -"css-invalid": {"dfnID":"css-invalid","dfnText":"invalid","external":false,"refSections":[],"url":"#css-invalid"}, +"css-invalid": {"dfnID":"css-invalid","dfnText":"invalid","external":false,"refSections":[{"refs":[{"id":"ref-for-css-invalid"}],"title":"9. \nCSS stylesheets"},{"refs":[{"id":"ref-for-css-invalid\u2460"},{"id":"ref-for-css-invalid\u2461"},{"id":"ref-for-css-invalid\u2462"}],"title":"9.1. \nStyle rules"}],"url":"#css-invalid"}, "css-parse-a-comma-separated-list-according-to-a-css-grammar": {"dfnID":"css-parse-a-comma-separated-list-according-to-a-css-grammar","dfnText":"parse a comma-separated list according to a CSS grammar","external":false,"refSections":[{"refs":[{"id":"ref-for-css-parse-a-comma-separated-list-according-to-a-css-grammar"}],"title":"5.3.1. \nParse something according to a CSS grammar"},{"refs":[{"id":"ref-for-css-parse-a-comma-separated-list-according-to-a-css-grammar\u2460"}],"title":"5.3.2. \nParse A Comma-Separated List According To A CSS Grammar"}],"url":"#css-parse-a-comma-separated-list-according-to-a-css-grammar"}, "css-parse-something-according-to-a-css-grammar": {"dfnID":"css-parse-something-according-to-a-css-grammar","dfnText":"parse something according to a CSS grammar","external":false,"refSections":[{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar"}],"title":"5.3.1. \nParse something according to a CSS grammar"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2460"},{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2461"},{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2462"}],"title":"5.3.2. \nParse A Comma-Separated List According To A CSS Grammar"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2463"}],"title":"9.1. \nStyle rules"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2464"}],"title":"12.2. \nChanges from the 20 February 2014 Candidate Recommendation"}],"url":"#css-parse-something-according-to-a-css-grammar"}, "css-property-declarations": {"dfnID":"css-property-declarations","dfnText":"property declarations","external":false,"refSections":[],"url":"#css-property-declarations"}, "css-tokenize": {"dfnID":"css-tokenize","dfnText":"tokenize","external":false,"refSections":[{"refs":[{"id":"ref-for-css-tokenize"}],"title":"5.3. \nParser Entry Points"}],"url":"#css-tokenize"}, "current-input-code-point": {"dfnID":"current-input-code-point","dfnText":"current input code point","external":false,"refSections":[{"refs":[{"id":"ref-for-current-input-code-point"},{"id":"ref-for-current-input-code-point\u2460"}],"title":"4.2. \nDefinitions"},{"refs":[{"id":"ref-for-current-input-code-point\u2461"},{"id":"ref-for-current-input-code-point\u2462"},{"id":"ref-for-current-input-code-point\u2463"},{"id":"ref-for-current-input-code-point\u2464"},{"id":"ref-for-current-input-code-point\u2465"},{"id":"ref-for-current-input-code-point\u2466"},{"id":"ref-for-current-input-code-point\u2467"},{"id":"ref-for-current-input-code-point\u2468"}],"title":"4.3.1. \nConsume a token"},{"refs":[{"id":"ref-for-current-input-code-point\u2460\u24ea"},{"id":"ref-for-current-input-code-point\u2460\u2460"}],"title":"4.3.5. \nConsume a string token"},{"refs":[{"id":"ref-for-current-input-code-point\u2460\u2461"}],"title":"4.3.6. \nConsume a url token"},{"refs":[{"id":"ref-for-current-input-code-point\u2460\u2462"}],"title":"4.3.7. \nConsume an escaped code point"},{"refs":[{"id":"ref-for-current-input-code-point\u2460\u2463"}],"title":"4.3.8. \nCheck if two code points are a valid escape"},{"refs":[{"id":"ref-for-current-input-code-point\u2460\u2464"}],"title":"4.3.9. \nCheck if three code points would start an identifier"},{"refs":[{"id":"ref-for-current-input-code-point\u2460\u2465"}],"title":"4.3.10. \nCheck if three code points would start a number"}],"url":"#current-input-code-point"}, "current-input-token": {"dfnID":"current-input-token","dfnText":"current input token","external":false,"refSections":[{"refs":[{"id":"ref-for-current-input-token"},{"id":"ref-for-current-input-token\u2460"},{"id":"ref-for-current-input-token\u2461"},{"id":"ref-for-current-input-token\u2462"}],"title":"5.2. \nDefinitions"},{"refs":[{"id":"ref-for-current-input-token\u2463"}],"title":"5.4.2. \nConsume an at-rule"},{"refs":[{"id":"ref-for-current-input-token\u2464"}],"title":"5.4.4. \nConsume a list of declarations"},{"refs":[{"id":"ref-for-current-input-token\u2465"}],"title":"5.4.5. \nConsume a declaration"},{"refs":[{"id":"ref-for-current-input-token\u2466"},{"id":"ref-for-current-input-token\u2467"},{"id":"ref-for-current-input-token\u2468"}],"title":"5.4.6. \nConsume a component value"},{"refs":[{"id":"ref-for-current-input-token\u2460\u24ea"},{"id":"ref-for-current-input-token\u2460\u2460"},{"id":"ref-for-current-input-token\u2460\u2461"}],"title":"5.4.7. \nConsume a simple block"},{"refs":[{"id":"ref-for-current-input-token\u2460\u2462"},{"id":"ref-for-current-input-token\u2460\u2463"}],"title":"5.4.8. \nConsume a function"}],"url":"#current-input-token"}, +"d32570a7": {"dfnID":"d32570a7","dfnText":"<general-enclosed>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-general-enclosed"}],"title":"8.2. \nDefining Arbitrary Contents: the <declaration-value> and <any-value> productions"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-general-enclosed"}, "d6fa39b8": {"dfnID":"d6fa39b8","dfnText":"important","external":true,"refSections":[{"refs":[{"id":"ref-for-important"}],"title":"8.1. \nDefining Block Contents: the <declaration-list>, <rule-list>, and <stylesheet> productions"}],"url":"https://drafts.csswg.org/css-cascade-6/#important"}, "de6d76c2": {"dfnID":"de6d76c2","dfnText":"cascade","external":true,"refSections":[{"refs":[{"id":"ref-for-cascade"}],"title":"8.1. \nDefining Block Contents: the <declaration-list>, <rule-list>, and <stylesheet> productions"}],"url":"https://drafts.csswg.org/css-cascade-6/#cascade"}, "declaration": {"dfnID":"declaration","dfnText":"declaration","external":false,"refSections":[{"refs":[{"id":"ref-for-declaration"}],"title":"9.2. \nAt-rules"}],"url":"#declaration"}, @@ -5944,6 +5938,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "digit": {"dfnID":"digit","dfnText":"digit","external":false,"refSections":[{"refs":[{"id":"ref-for-digit"},{"id":"ref-for-digit\u2460"}],"title":"4.2. \nDefinitions"},{"refs":[{"id":"ref-for-digit\u2461"}],"title":"4.3.1. \nConsume a token"},{"refs":[{"id":"ref-for-digit\u2462"},{"id":"ref-for-digit\u2463"},{"id":"ref-for-digit\u2464"},{"id":"ref-for-digit\u2465"}],"title":"4.3.10. \nCheck if three code points would start a number"},{"refs":[{"id":"ref-for-digit\u2466"},{"id":"ref-for-digit\u2467"},{"id":"ref-for-digit\u2468"},{"id":"ref-for-digit\u2460\u24ea"},{"id":"ref-for-digit\u2460\u2460"}],"title":"4.3.12. \nConsume a number"},{"refs":[{"id":"ref-for-digit\u2460\u2461"},{"id":"ref-for-digit\u2460\u2462"},{"id":"ref-for-digit\u2460\u2463"}],"title":"4.3.13. \nConvert a string to a number"},{"refs":[{"id":"ref-for-digit\u2460\u2464"},{"id":"ref-for-digit\u2460\u2465"},{"id":"ref-for-digit\u2460\u2466"},{"id":"ref-for-digit\u2460\u2467"}],"title":"6.2. \nThe <an+b> type"}],"url":"#digit"}, "eb0095fe": {"dfnID":"eb0095fe","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-adjacent"},{"id":"ref-for-selectordef-adjacent\u2460"},{"id":"ref-for-selectordef-adjacent\u2461"}],"title":"6.1. \nInformal Syntax Description"}],"url":"https://drafts.csswg.org/selectors-4/#selectordef-adjacent"}, "ecf251b4": {"dfnID":"ecf251b4","dfnText":"scalar value","external":true,"refSections":[{"refs":[{"id":"ref-for-scalar-value"}],"title":"12.2. \nChanges from the 20 February 2014 Candidate Recommendation"}],"url":"https://infra.spec.whatwg.org/#scalar-value"}, +"ef9a1f56": {"dfnID":"ef9a1f56","dfnText":"<unicode-range-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-unicode-range-token"}],"title":"12.2. \nChanges from the 20 February 2014 Candidate Recommendation"},{"refs":[{"id":"ref-for-typedef-unicode-range-token\u2460"}],"title":"12.5. \nChanges from CSS 2.1 and Selectors Level 3"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token"}, "ending-token": {"dfnID":"ending-token","dfnText":"ending token","external":false,"refSections":[{"refs":[{"id":"ref-for-ending-token"},{"id":"ref-for-ending-token\u2460"}],"title":"5.4.7. \nConsume a simple block"}],"url":"#ending-token"}, "environment-encoding": {"dfnID":"environment-encoding","dfnText":"environment encoding","external":false,"refSections":[{"refs":[{"id":"ref-for-environment-encoding"},{"id":"ref-for-environment-encoding\u2460"},{"id":"ref-for-environment-encoding\u2461"}],"title":"3.2. \nThe input byte stream"},{"refs":[{"id":"ref-for-environment-encoding\u2462"}],"title":"12.4. \nChanges from the 19 September 2013 Working Draft"}],"url":"#environment-encoding"}, "eof-code-point": {"dfnID":"eof-code-point","dfnText":"EOF code point","external":false,"refSections":[],"url":"#eof-code-point"}, @@ -6414,7 +6409,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", }; function setTypeTitles() { @@ -6464,6 +6459,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "#css-descriptor": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"descriptor","type":"dfn","url":"#css-descriptor"}, "#css-descriptor-declarations": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"descriptor declarations","type":"dfn","url":"#css-descriptor-declarations"}, "#css-filter-code-points": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"filtered code points","type":"dfn","url":"#css-filter-code-points"}, +"#css-invalid": {"export":true,"for_":["css"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"invalid","type":"dfn","url":"#css-invalid"}, "#css-parse-a-comma-separated-list-according-to-a-css-grammar": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"parse a comma-separated list according to a css grammar","type":"dfn","url":"#css-parse-a-comma-separated-list-according-to-a-css-grammar"}, "#css-parse-something-according-to-a-css-grammar": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"parse","type":"dfn","url":"#css-parse-something-according-to-a-css-grammar"}, "#css-tokenize": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"local","text":"tokenize","type":"dfn","url":"#css-tokenize"}, @@ -6545,7 +6541,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-cascade-5/#css-property": {"export":true,"for_":["CSS"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"property","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#css-property"}, "https://drafts.csswg.org/css-cascade-6/#cascade": {"export":true,"for_":[],"level":"6","normative":true,"shortname":"css-cascade","spec":"css-cascade-6","status":"current","text":"cascade","type":"dfn","url":"https://drafts.csswg.org/css-cascade-6/#cascade"}, "https://drafts.csswg.org/css-cascade-6/#important": {"export":true,"for_":[],"level":"6","normative":true,"shortname":"css-cascade","spec":"css-cascade-6","status":"current","text":"important","type":"dfn","url":"https://drafts.csswg.org/css-cascade-6/#important"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-blue": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"blue","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-blue"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-blue": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"blue","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-blue"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-media": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@media","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@supports","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports"}, @@ -6553,7 +6549,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-fonts-5/#at-font-face-rule": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-fonts","spec":"css-fonts-5","status":"current","text":"@font-face","type":"at-rule","url":"https://drafts.csswg.org/css-fonts-5/#at-font-face-rule"}, "https://drafts.csswg.org/css-page-3/#at-ruledef-page": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-page","spec":"css-page-3","status":"current","text":"@page","type":"at-rule","url":"https://drafts.csswg.org/css-page-3/#at-ruledef-page"}, "https://drafts.csswg.org/css-page-3/#valdef-page-left": {"export":true,"for_":["@page"],"level":"3","normative":true,"shortname":"css-page","spec":"css-page-3","status":"current","text":":left","type":"value","url":"https://drafts.csswg.org/css-page-3/#valdef-page-left"}, +"https://drafts.csswg.org/css-syntax-3/#css-rule": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-rule"}, "https://drafts.csswg.org/css-syntax-3/#curly-block": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"{}-block","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#curly-block"}, +"https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<unicode-range-token>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token"}, "https://drafts.csswg.org/css-text-decor-3/#propdef-text-decoration": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-3","status":"current","text":"text-decoration","type":"property","url":"https://drafts.csswg.org/css-text-decor-3/#propdef-text-decoration"}, "https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-underline": {"export":true,"for_":["text-decoration-line"],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"current","text":"underline","type":"value","url":"https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-underline"}, "https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translatex": {"export":true,"for_":["transform"],"level":"1","normative":true,"shortname":"css-transforms","spec":"css-transforms-1","status":"current","text":"translatex()","type":"function","url":"https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translatex"}, @@ -6565,9 +6563,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-values-4/#number-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<number>","type":"type","url":"https://drafts.csswg.org/css-values-4/#number-value"}, "https://drafts.csswg.org/css-values-4/#string-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<string>","type":"type","url":"https://drafts.csswg.org/css-values-4/#string-value"}, "https://drafts.csswg.org/css-values-4/#typedef-dimension": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<dimension>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-dimension"}, +"https://drafts.csswg.org/css-values-4/#typedef-general-enclosed": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<general-enclosed>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-general-enclosed"}, "https://drafts.csswg.org/css-values-5/#funcdef-attr": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"attr()","type":"function","url":"https://drafts.csswg.org/css-values-5/#funcdef-attr"}, "https://drafts.csswg.org/css-variables-2/#custom-property": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-variables","spec":"css-variables-2","status":"current","text":"custom property","type":"dfn","url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, -"https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"<general-enclosed>","type":"type","url":"https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed"}, "https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"<media-query-list>","type":"type","url":"https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list"}, "https://drafts.csswg.org/selectors-4/#nth-child-pseudo": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":":nth-child()","type":"selector","url":"https://drafts.csswg.org/selectors-4/#nth-child-pseudo"}, "https://drafts.csswg.org/selectors-4/#selector-list": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"selector list","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#selector-list"}, @@ -6585,7 +6583,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://infra.spec.whatwg.org/#scalar-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"scalar value","type":"dfn","url":"https://infra.spec.whatwg.org/#scalar-value"}, "https://infra.spec.whatwg.org/#string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"string","type":"dfn","url":"https://infra.spec.whatwg.org/#string"}, "https://infra.spec.whatwg.org/#surrogate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"surrogate","type":"dfn","url":"https://infra.spec.whatwg.org/#surrogate"}, -"https://w3c.github.io/i18n-glossary/#dfn-surrogate": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"surrogates","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-tables-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-tables-3/Overview.console.txt index a2c9cd2a59..b7af24de96 100644 --- a/tests/github/w3c/csswg-drafts/css-tables-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-tables-3/Overview.console.txt @@ -16,24 +16,12 @@ Consider setting 'width' and 'height' manually or opting out of autodetection by WARNING: Image doesn't exist, so I couldn't determine its width and height: './images/CSS-Tables-Fragmentation-1.svg' WARNING: Image doesn't exist, so I couldn't determine its width and height: './images/CSS-Tables-Fragmentation-2.svg' WARNING: Image doesn't exist, so I couldn't determine its width and height: './images/CSS-Tables-Repeating-Headers.svg' -LINE ~919: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~919: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~919: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' -LINE ~2516: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~2516: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~2516: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' -LINE ~2559: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~2559: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~2559: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' +LINE ~953: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' LINE 562: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="562" id="max-content-width-of-a-table" data-dfn-type="dfn" data-lt="max-content width of a table" data-noexport="by-default" class="dfn-paneled">max-content width of a table</dfn> LINE 864: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/css-tables-3/Overview.html b/tests/github/w3c/csswg-drafts/css-tables-3/Overview.html index 928b4b728e..da1c8d969e 100644 --- a/tests/github/w3c/csswg-drafts/css-tables-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-tables-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Table Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-tables-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -942,7 +941,7 @@ <h1 class="p-name no-ref" id="title">CSS Table Module Level 3</h1> please contact the CSSWG at www-style@w3.org. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -964,7 +963,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-tables] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-tables%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1806,7 +1805,7 @@ <h3 class="heading settled" data-level="3.6" id="style-overrides"><span class="s <h4 class="heading settled" data-level="3.6.1" id="global-style-overrides"><span class="secno">3.6.1. </span><span class="content">Overrides applying in all modes</span><a class="self-link" href="#global-style-overrides"></a></h4> <p>The following rules apply to all tables, irrespective of the layout mode in use.</p> <ul> - <li>The computed values of properties <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position①">position</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-float" id="ref-for-propdef-float①">float</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin">margin</a>-*, <a class="property css" data-link-type="property">top</a>, <span class="property">right</span>, <span class="property">bottom</span>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left">left</a> on the table + <li>The computed values of properties <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position①">position</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-float" id="ref-for-propdef-float①">float</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin">margin</a>-*, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top">top</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right">right</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom">bottom</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left">left</a> on the table are used on the table-wrapper box and not the table grid box; the same holds true for the properties whose use could force the used value of <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-2/#propdef-transform-style" id="ref-for-propdef-transform-style">transform-style</a> to <code>flat</code> (see <a href="https://drafts.csswg.org/css-transforms/#grouping-property-values">list</a>) and their shorthands/longhands relatives: this list currently includes <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow">overflow</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity">opacity</a>, <a class="property css" data-link-type="property" href="https://drafts.fxtf.org/filter-effects-1/#propdef-filter" id="ref-for-propdef-filter">filter</a>, <a class="property css" data-link-type="property" href="https://drafts.fxtf.org/css-masking-1/#propdef-clip" id="ref-for-propdef-clip">clip</a>, <a class="property css" data-link-type="property" href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-path" id="ref-for-propdef-clip-path">clip-path</a>, <a class="property css" data-link-type="property" href="https://drafts.fxtf.org/compositing-2/#propdef-isolation" id="ref-for-propdef-isolation">isolation</a>, <a class="property css" data-link-type="property" href="https://drafts.fxtf.org/css-masking-1/#propdef-mask" id="ref-for-propdef-mask">mask</a>-*, <a class="property css" data-link-type="property" href="https://drafts.fxtf.org/compositing-2/#propdef-mix-blend-mode" id="ref-for-propdef-mix-blend-mode">mix-blend-mode</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="ref-for-propdef-transform">transform</a>-* and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-2/#propdef-perspective" id="ref-for-propdef-perspective">perspective</a>. <br> Where the specified values are not applied on the table grid and/or wrapper boxes, @@ -1815,7 +1814,7 @@ <h4 class="heading settled" data-level="3.6.1" id="global-style-overrides"><span is ignored and treated as if its value was <code>visible</code>. <li>All css properties of <a data-link-type="dfn" href="#table-column" id="ref-for-table-column⑤">table-column</a> and <a data-link-type="dfn" href="#table-column-group" id="ref-for-table-column-group④">table-column-group</a> boxes are ignored, except when explicitly specified by this specification. - <li>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin①">margin</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-padding" id="ref-for-propdef-padding">padding</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow②">overflow</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> of <a data-link-type="dfn" href="#table-track" id="ref-for-table-track②">table-track</a> and <a data-link-type="dfn" href="#table-track-group-element" id="ref-for-table-track-group-element②">table-track-group</a> are ignored. + <li>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin①">margin</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-padding" id="ref-for-propdef-padding">padding</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow②">overflow</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> of <a data-link-type="dfn" href="#table-track" id="ref-for-table-track②">table-track</a> and <a data-link-type="dfn" href="#table-track-group-element" id="ref-for-table-track-group-element②">table-track-group</a> are ignored. <li>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin②">margin</a> of <a data-link-type="dfn" href="#table-cell" id="ref-for-table-cell①⓪">table-cell</a> boxes is ignored (as if it was set to 0px). <li>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background" id="ref-for-propdef-background">background</a> of <a data-link-type="dfn" href="#table-cell" id="ref-for-table-cell①①">table-cell</a> boxes are painted using a special background painting algorithm described in <a href="#drawing-cell-backgrounds">§ 5.3.2 Drawing cell backgrounds</a>. @@ -2912,7 +2911,7 @@ <h3 class="heading settled" data-level="4.1" id="abspos-boxes-in-table-root"><sp <p>If an absolutely positioned element’s <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#containing-block" id="ref-for-containing-block">containing block</a> is generated by a <a data-link-type="dfn" href="#table-wrapper-box" id="ref-for-table-wrapper-box③">table-wrapper</a> box, the containing block corresponds to the area around which the table margins are applied, including the area where the table border is drawn and the margin area of any table-caption. - The offset properties (<a class="property css" data-link-type="property">top</a>/<span class="property">right</span>/<span class="property">bottom</span>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left①">left</a>) + The offset properties (<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top①">top</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right①">right</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom①">bottom</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left①">left</a>) then indicate offsets inwards from the corresponding edges of this <span id="ref-for-containing-block①">containing block</span>, as normal.</p> <p>Absolute positioning occurs after layout of the <a data-link-type="dfn" href="#table" id="ref-for-table⑤">table</a> and its in-flow contents, @@ -2930,7 +2929,7 @@ <h3 class="heading settled" data-level="4.2" id="abspos-boxes-in-table-internal" the containing block corresponds to the area starting at the top left corner of the <a href="#bounding-box-assignment">the area that would be assigned to the box during layout</a> but whose size is computed to be the one of <a href="#bounding-box-assignment">the area that would be assigned to the box during layout</a> if all tracks were considered visible (irrespective of <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-4/#propdef-visibility" id="ref-for-propdef-visibility①">visibility</a> being set co collapse on some boxes), not including borders and paddings as appropriate.</p> <div class="note" role="note"> This is done so that hiding column does not trigger a layout in the absolutely-positioned boxes, and the content being clipped doesn’t seem to be moving. <a class="hint" href="https://wptest.center/#/uxin57">!!Testcase</a> <a class="hint" href="https://wptest.center/#/vcmy48">!!Testcase</a> </div> - <p>The offset properties (<a class="property css" data-link-type="property">top</a>/<span class="property">right</span>/<span class="property">bottom</span>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left②">left</a>) + <p>The offset properties (<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top②">top</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right②">right</a>/<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom②">bottom</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left②">left</a>) then indicate offsets inwards from the corresponding edges of this <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#containing-block" id="ref-for-containing-block③">containing block</a>, as normal.</p> <p class="issue" id="issue-b01ba738"><a class="self-link" href="#issue-b01ba738"></a> This only works in Firefox. It would make it easier to implement position:sticky in the future, though. <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=417223">[Chrome bug]</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1289682">[Interop risk: Firefox bug]</a> <a href="https://github.com/w3c/csswg-drafts/issues/858">[Issue #858]</a></p> @@ -3765,12 +3764,19 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="938ba280">{a,b}</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="1ebe67be">bottom</span> + <li><span class="dfn-paneled" id="0475c554">right</span> + <li><span class="dfn-paneled" id="4726eb39">top</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="0570259e">float</span> <li><span class="dfn-paneled" id="6ee514e7">separate</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[FILTER-EFFECTS-1]</a> defines the following terms: @@ -3787,21 +3793,21 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing-2">[COMPOSITING-2] - <dd>Compositing and Blending Level 2 URL: <a href="https://drafts.fxtf.org/compositing-2/">https://drafts.fxtf.org/compositing-2/</a> + <dd><a href="https://drafts.fxtf.org/compositing-2/"><cite>Compositing and Blending Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.fxtf.org/compositing-2/">https://drafts.fxtf.org/compositing-2/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -4122,18 +4128,22 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let dfnPanelData = { +"0475c554": {"dfnID":"0475c554","dfnText":"right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-right"}],"title":"3.6.1. Overrides applying in all modes"},{"refs":[{"id":"ref-for-propdef-right\u2460"}],"title":"4.1. \nWith a table-root as containing block"},{"refs":[{"id":"ref-for-propdef-right\u2461"}],"title":"4.2. \nWith a table-internal as containing block"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, "0570259e": {"dfnID":"0570259e","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"2.2.1. Fixup Algorithm"},{"refs":[{"id":"ref-for-propdef-float\u2460"}],"title":"3.6.1. Overrides applying in all modes"}],"url":"https://drafts.csswg.org/css2/#propdef-float"}, "07cbb8ff": {"dfnID":"07cbb8ff","dfnText":"grid","external":true,"refSections":[{"refs":[{"id":"ref-for-grid"}],"title":"3.3. Dimensioning the row/column grid"}],"url":"https://drafts.csswg.org/css-grid-2/#grid"}, "0a52b385": {"dfnID":"0a52b385","dfnText":"break-after","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-after"}],"title":"6.1. Breaking across fragmentainers"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-after"}, "0b918417": {"dfnID":"0b918417","dfnText":"min-content contribution","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content-contribution"}],"title":"3.9.1. Computing the table width"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content-contribution"}, "12f8fb07": {"dfnID":"12f8fb07","dfnText":"visibility","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-visibility"}],"title":"3.11. Positioning of cells, captions and other internal table boxes"},{"refs":[{"id":"ref-for-propdef-visibility\u2460"}],"title":"4.2. \nWith a table-internal as containing block"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-visibility"}, +"1ebe67be": {"dfnID":"1ebe67be","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"3.6.1. Overrides applying in all modes"},{"refs":[{"id":"ref-for-propdef-bottom\u2460"}],"title":"4.1. \nWith a table-root as containing block"},{"refs":[{"id":"ref-for-propdef-bottom\u2461"}],"title":"4.2. \nWith a table-internal as containing block"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. Value Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "3680847b": {"dfnID":"3680847b","dfnText":"border-image-source","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image-source"}],"title":"3.7.1.1. Conflict Resolution Algorithm for Collapsed Borders"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-source"}, "3b1682d5": {"dfnID":"3b1682d5","dfnText":"background-origin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-origin"}],"title":"5.3.2. Drawing cell backgrounds"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-origin"}, "42871fa3": {"dfnID":"42871fa3","dfnText":"border-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-style"},{"id":"ref-for-propdef-border-style\u2460"}],"title":"3.7.1.3. Specificity of a border style"},{"refs":[{"id":"ref-for-propdef-border-style\u2461"},{"id":"ref-for-propdef-border-style\u2462"}],"title":"5.3.4. Border styles (collapsed-borders mode)"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"3.5.3. The Caption-Side property"},{"refs":[{"id":"ref-for-propdef-text-align\u2460"}],"title":"3.8.3. Computing Column Measures"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "43b15e47": {"dfnID":"43b15e47","dfnText":"anonymous box","external":true,"refSections":[{"refs":[{"id":"ref-for-anonymous"}],"title":"2.2.2. Characteristics of fixup boxes"}],"url":"https://drafts.csswg.org/css-display-4/#anonymous"}, +"4726eb39": {"dfnID":"4726eb39","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"3.6.1. Overrides applying in all modes"},{"refs":[{"id":"ref-for-propdef-top\u2460"}],"title":"4.1. \nWith a table-root as containing block"},{"refs":[{"id":"ref-for-propdef-top\u2461"}],"title":"4.2. \nWith a table-internal as containing block"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, "4c9599fa": {"dfnID":"4c9599fa","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"3.10.6. Table-cell content layout (second pass)"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-min-height"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"3.6.1. Overrides applying in all modes"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "559a1521": {"dfnID":"559a1521","dfnText":"isolation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-isolation"}],"title":"3.6.1. Overrides applying in all modes"}],"url":"https://drafts.fxtf.org/compositing-2/#propdef-isolation"}, "5e3e8101": {"dfnID":"5e3e8101","dfnText":"inner display type","external":true,"refSections":[{"refs":[{"id":"ref-for-inner-display-type"}],"title":"2.1.1. Terminology"}],"url":"https://drafts.csswg.org/css-display-4/#inner-display-type"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"}],"title":"3.6.2. Overrides applying in collapsed-borders mode"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, @@ -4167,7 +4177,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"}],"title":"2.2.1. Fixup Algorithm"},{"refs":[{"id":"ref-for-propdef-position\u2460"}],"title":"3.6.1. Overrides applying in all modes"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "bd765d87": {"dfnID":"bd765d87","dfnText":"mask","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask"}],"title":"3.6.1. Overrides applying in all modes"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask"}, "c1654d36": {"dfnID":"c1654d36","dfnText":"break-before","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-break-before"}],"title":"6.1. Breaking across fragmentainers"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-break-before"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"3.6.1. Overrides applying in all modes"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "c9ecad15": {"dfnID":"c9ecad15","dfnText":"border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-width"}],"title":"3.7.1.3. Specificity of a border style"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, "capmin": {"dfnID":"capmin","dfnText":"caption width minimum (CAPMIN)","external":false,"refSections":[{"refs":[{"id":"ref-for-capmin"}],"title":"3.2. Table layout algorithm"},{"refs":[{"id":"ref-for-capmin"}],"title":"3.9.1. Computing the table width"}],"url":"#capmin"}, "caption-side-bottom": {"dfnID":"caption-side-bottom","dfnText":"bottom","external":false,"refSections":[],"url":"#caption-side-bottom"}, @@ -4764,7 +4773,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-values-4/#mult-num-range": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"{a,b}","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-num-range"}, "https://drafts.csswg.org/css-values-4/#string-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<string>","type":"type","url":"https://drafts.csswg.org/css-values-4/#string-value"}, "https://drafts.csswg.org/css2/#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"float","type":"property","url":"https://drafts.csswg.org/css2/#propdef-float"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-border-collapse-separate": {"export":true,"for_":["border-collapse"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"separate","type":"value","url":"https://drafts.csswg.org/css2/#valdef-border-collapse-separate"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://drafts.fxtf.org/compositing-2/#propdef-isolation": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"compositing","spec":"compositing-2","status":"current","text":"isolation","type":"property","url":"https://drafts.fxtf.org/compositing-2/#propdef-isolation"}, @@ -4773,6 +4781,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.fxtf.org/css-masking-1/#propdef-clip-path": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"clip-path","type":"property","url":"https://drafts.fxtf.org/css-masking-1/#propdef-clip-path"}, "https://drafts.fxtf.org/css-masking-1/#propdef-mask": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"mask","type":"property","url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask"}, "https://drafts.fxtf.org/filter-effects-1/#propdef-filter": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"filter-effects","spec":"filter-effects-1","status":"current","text":"filter","type":"property","url":"https://drafts.fxtf.org/filter-effects-1/#propdef-filter"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"bottom","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-right": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"right","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"top","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-text-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-text-3/Overview.console.txt index be1233e635..2ba8860473 100644 --- a/tests/github/w3c/csswg-drafts/css-text-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-text-3/Overview.console.txt @@ -26,20 +26,82 @@ LINE 4689: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-re LINE 4689: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-align-match-parent-04.html' - did you misspell something? LINE 4689: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-align-match-parent-root-ltr.html' - did you misspell something? LINE 4689: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-align-match-parent-root-rtl.html' - did you misspell something? +LINE 4721: Couldn't find WPT test 'css/CSS2/text/text-align-white-space-003.xht' - did you misspell something? LINE 4721: Couldn't find WPT test 'css/CSS2/text/text-align-white-space-007.xht' - did you misspell something? LINE 4938: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-justify-none-001.html' - did you misspell something? LINE 4961: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-justify-inter-word-001.html' - did you misspell something? LINE 4985: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-justify-inter-character-001.html' - did you misspell something? LINE 5007: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/text3/text-justify-distribute-001.html' - did you misspell something? -WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) +LINE 7543: Couldn't find WPT test 'css/css-text/white-space/text-space-collapse-discard-001.xht' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/white-space/text-space-collapse-preserve-breaks-001.xht' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/white-space/text-space-trim-trim-inner-001.xht' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-001.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-002.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-003.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-004.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-005.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-006.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-007.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-008.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-009.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-010.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-011.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-012.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-013.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-014.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-015-manual.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-101.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-102.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-103.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-104.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-105.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-106.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-107.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-108.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-109.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-110.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-111.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-112.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-113.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-114.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-115.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-116.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-117.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-118.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-119.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-120.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-121.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-122.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-123.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-124.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-125.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-126.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-127.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-128.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-129.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/parsing/word-boundary-detection-computed.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/parsing/word-boundary-detection-invalid.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/parsing/word-boundary-detection-valid.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/parsing/word-boundary-expansion-computed.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/parsing/word-boundary-expansion-invalid.html' - did you misspell something? +LINE 7543: Couldn't find WPT test 'css/css-text/parsing/word-boundary-expansion-valid.html' - did you misspell something? +WARNING: There are 427 WPT tests underneath your path prefix '/css/css-text/' that aren't in your document and must be added. (Use a <wpt hidden> if you don't actually want them in your document.) + css/css-text/animations/hyphen-no-interpolation.html + css/css-text/animations/line-break-no-interpolation.html css/css-text/bidi/bidi-lines-001.html css/css-text/bidi/bidi-lines-002.html css/css-text/bidi/bidi-tab-001.html + css/css-text/crashtests/eol-spaces-bidi-min-content-crash.html + css/css-text/crashtests/overflow-wrap-anywhere-crash.html css/css-text/crashtests/rendering-table-caption-with-list-item-and-svg-crash.html css/css-text/crashtests/rendering-table-caption-with-negative-margins-crash.html + css/css-text/crashtests/text-indent-each-line-crash.html + css/css-text/crashtests/text-wrap-balance-float-crash.html + css/css-text/crashtests/text-wrap-balance-nested-blocks-crash.html css/css-text/crashtests/white-space-pre-wrap-chash.html css/css-text/crashtests/word-spacing-large-value.html css/css-text/hanging-punctuation/hanging-punctuation-block-bound-001.html + css/css-text/hanging-punctuation/hanging-punctuation-first-002.html css/css-text/hanging-punctuation/hanging-punctuation-inline-bound-001.html css/css-text/hyphens/hyphenate-character-001.html css/css-text/hyphens/hyphenate-character-002.html @@ -50,31 +112,62 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/hyphens/hyphens-auto-control.html css/css-text/hyphens/hyphens-auto-min-content.html css/css-text/hyphens/hyphens-character.html + css/css-text/hyphens/hyphens-none-shy-on-2nd-line-001.html css/css-text/hyphens/hyphens-vertical-001.html css/css-text/hyphens/hyphens-vertical-002.html css/css-text/hyphens/hyphens-vertical-003.html css/css-text/hyphens/hyphens-vertical-004.html + css/css-text/hyphens/hyphens-vs-float-clearance-001.html + css/css-text/hyphens/hyphens-vs-float-clearance-002.html css/css-text/hyphens/i18n/hyphens-i18n-auto-001.html css/css-text/hyphens/i18n/hyphens-i18n-auto-002.html css/css-text/hyphens/i18n/hyphens-i18n-auto-003.html css/css-text/hyphens/i18n/hyphens-i18n-auto-004.html css/css-text/hyphens/i18n/hyphens-i18n-auto-005.html + css/css-text/hyphens/i18n/hyphens-i18n-auto-006.html css/css-text/hyphens/i18n/hyphens-i18n-manual-001.html css/css-text/hyphens/i18n/hyphens-i18n-manual-002.html css/css-text/hyphens/i18n/hyphens-i18n-manual-003.html css/css-text/hyphens/i18n/hyphens-i18n-manual-004.html css/css-text/hyphens/i18n/hyphens-i18n-manual-005.html css/css-text/letter-spacing/letter-spacing-bengali-yaphala-001.html + css/css-text/letter-spacing/letter-spacing-end-of-line-002.html css/css-text/letter-spacing/letter-spacing-ligatures-001.html css/css-text/letter-spacing/letter-spacing-ligatures-002.html css/css-text/letter-spacing/letter-spacing-ligatures-003.html css/css-text/letter-spacing/letter-spacing-ligatures-004.html + css/css-text/letter-spacing/letter-spacing-percent-001.html + css/css-text/letter-spacing/letter-spacing-trim-start-001.html + css/css-text/letter-spacing/letter-spacing-trim-start-002.html css/css-text/line-breaking/line-breaking-022.html css/css-text/line-breaking/line-breaking-023.html css/css-text/line-breaking/line-breaking-024.html css/css-text/line-breaking/line-breaking-025.html css/css-text/line-breaking/line-breaking-026.html css/css-text/line-breaking/line-breaking-027.html + css/css-text/line-breaking/line-breaking-028.html + css/css-text/line-breaking/line-breaking-029.html + css/css-text/line-breaking/line-breaking-030.html + css/css-text/line-breaking/line-breaking-031.html + css/css-text/line-breaking/line-breaking-032.html + css/css-text/line-breaking/line-breaking-atomic-010.html + css/css-text/line-breaking/line-breaking-atomic-011.html + css/css-text/line-breaking/line-breaking-atomic-012.html + css/css-text/line-breaking/line-breaking-atomic-013.html + css/css-text/line-breaking/line-breaking-atomic-014.html + css/css-text/line-breaking/line-breaking-atomic-015.html + css/css-text/line-breaking/line-breaking-atomic-016.html + css/css-text/line-breaking/line-breaking-atomic-017.html + css/css-text/line-breaking/line-breaking-atomic-018.html + css/css-text/line-breaking/line-breaking-atomic-019.html + css/css-text/line-breaking/line-breaking-atomic-020.html + css/css-text/line-breaking/line-breaking-atomic-021.html + css/css-text/line-breaking/line-breaking-atomic-022.html + css/css-text/line-breaking/line-breaking-atomic-023.html + css/css-text/line-breaking/line-breaking-atomic-024.html + css/css-text/line-breaking/line-breaking-atomic-025.html + css/css-text/line-breaking/line-breaking-atomic-026.html + css/css-text/line-breaking/line-breaking-atomic-027.html css/css-text/line-breaking/segment-break-transformation-removable-1.html css/css-text/line-breaking/segment-break-transformation-removable-2.html css/css-text/line-breaking/segment-break-transformation-removable-3.html @@ -132,6 +225,7 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/line-breaking/segment-break-transformation-unremovable-2.html css/css-text/line-breaking/segment-break-transformation-unremovable-3.html css/css-text/line-breaking/segment-break-transformation-unremovable-4.html + css/css-text/overflow-wrap/crashtests/overflow-wrap-leading-floats-crash.html css/css-text/overflow-wrap/overflow-wrap-anywhere-011.html css/css-text/overflow-wrap/overflow-wrap-min-content-size-009.html css/css-text/parsing/hyphenate-character-computed.html @@ -140,13 +234,39 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/parsing/hyphenate-limit-chars-computed.html css/css-text/parsing/hyphenate-limit-chars-invalid.html css/css-text/parsing/hyphenate-limit-chars-valid.html + css/css-text/parsing/text-autospace-computed.html + css/css-text/parsing/text-autospace-invalid.html + css/css-text/parsing/text-autospace-valid.html css/css-text/parsing/text-group-align-invalid.html css/css-text/parsing/text-group-align-valid.html css/css-text/parsing/text-justify-computed-legacy.html + css/css-text/parsing/text-spacing-computed.html + css/css-text/parsing/text-spacing-invalid.html + css/css-text/parsing/text-spacing-trim-computed.html + css/css-text/parsing/text-spacing-trim-invalid.html + css/css-text/parsing/text-spacing-trim-valid.html + css/css-text/parsing/text-spacing-valid.html + css/css-text/parsing/text-wrap-computed.html css/css-text/parsing/text-wrap-invalid.html + css/css-text/parsing/text-wrap-mode-computed.html + css/css-text/parsing/text-wrap-mode-invalid.html + css/css-text/parsing/text-wrap-mode-valid.html + css/css-text/parsing/text-wrap-pretty.html + css/css-text/parsing/text-wrap-style-computed.html + css/css-text/parsing/text-wrap-style-invalid.html + css/css-text/parsing/text-wrap-style-valid.html css/css-text/parsing/text-wrap-valid.html + css/css-text/parsing/white-space-collapse-computed.html + css/css-text/parsing/white-space-collapse-invalid.html + css/css-text/parsing/white-space-collapse-valid.html + css/css-text/parsing/white-space-shorthand-text-wrap.html + css/css-text/parsing/white-space-shorthand.html + css/css-text/parsing/word-space-transform-computed.html + css/css-text/parsing/word-space-transform-invalid.html + css/css-text/parsing/word-space-transform-valid.html css/css-text/shaping/shaping_lig-001.html css/css-text/tab-size/tab-size-block-ancestor.html + css/css-text/tab-size/tab-size-integer-005.html css/css-text/tab-size/tab-size-spacing-002.html css/css-text/tab-size/tab-size-spacing-003.html css/css-text/text-align/text-align-center-last-center.html @@ -161,14 +281,21 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/text-align/text-align-end-last-justify.html css/css-text/text-align/text-align-end-last-start.html css/css-text/text-align/text-align-inline-end-crash.html + css/css-text/text-align/text-align-justify-bidi-control.html css/css-text/text-align/text-align-justify-last-center.html css/css-text/text-align/text-align-justify-last-default.html css/css-text/text-align/text-align-justify-last-end.html css/css-text/text-align/text-align-justify-last-justify.html css/css-text/text-align/text-align-justify-last-start.html + css/css-text/text-align/text-align-justify-tabs-001.html + css/css-text/text-align/text-align-justify-tabs-002.html + css/css-text/text-align/text-align-justify-tabs-003.html + css/css-text/text-align/text-align-justify-tabs-004.html + css/css-text/text-align/text-align-last-015.html css/css-text/text-align/text-align-last-center.html css/css-text/text-align/text-align-last-end.html css/css-text/text-align/text-align-last-interpolation.html + css/css-text/text-align/text-align-last-justify-br.html css/css-text/text-align/text-align-last-justify-rtl.html css/css-text/text-align/text-align-last-justify.html css/css-text/text-align/text-align-last-simple.html @@ -189,6 +316,20 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/text-align/text-align-start-last-justify.html css/css-text/text-align/text-align-start-last-start.html css/css-text/text-align/text-align-webkit-match-parent.html + css/css-text/text-autospace/crashtests/text-autospace-shape-cache-crash.html + css/css-text/text-autospace/text-autospace-001.html + css/css-text/text-autospace/text-autospace-break-001.html + css/css-text/text-autospace/text-autospace-dynamic-001.html + css/css-text/text-autospace/text-autospace-dynamic-text-001.html + css/css-text/text-autospace/text-autospace-dynamic-text-002.html + css/css-text/text-autospace/text-autospace-dynamic-text-003.html + css/css-text/text-autospace/text-autospace-dynamic-text-004.html + css/css-text/text-autospace/text-autospace-first-line-001.html + css/css-text/text-autospace/text-autospace-ligature-001.html + css/css-text/text-autospace/text-autospace-mixed-001.html + css/css-text/text-autospace/text-autospace-no-001.html + css/css-text/text-autospace/text-autospace-vertical-combine-001.html + css/css-text/text-autospace/text-autospace-vertical-upright-001.html css/css-text/text-group-align/text-group-align-center-vlr.html css/css-text/text-group-align/text-group-align-center.html css/css-text/text-group-align/text-group-align-end-vlr.html @@ -202,6 +343,12 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/text-indent/anonymous-flex-item-001.html css/css-text/text-indent/anonymous-grid-item-001.html css/css-text/text-indent/text-indent-each-line-hanging.html + css/css-text/text-indent/text-indent-length-001.html + css/css-text/text-indent/text-indent-length-002.html + css/css-text/text-indent/text-indent-min-max-content-001.html + css/css-text/text-indent/text-indent-overflow.html + css/css-text/text-indent/text-indent-ruby-crash.html + css/css-text/text-indent/text-indent-text-align-end.html css/css-text/text-indent/text-indent-with-absolute-pos-child.html css/css-text/text-justify/text-justify-and-trailing-spaces-001.html css/css-text/text-justify/text-justify-and-trailing-spaces-002.html @@ -214,10 +361,75 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/text-justify/text-justify-inter-word-001.html css/css-text/text-justify/text-justify-interpolation.html css/css-text/text-justify/text-justify-none-001.html + css/css-text/text-justify/text-justify-word-separators.html + css/css-text/text-spacing-trim/text-spacing-trim-001.html + css/css-text/text-spacing-trim/text-spacing-trim-colon-001.html + css/css-text/text-spacing-trim/text-spacing-trim-combinations-001.html + css/css-text/text-spacing-trim/text-spacing-trim-dot-001.html + css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html + css/css-text/text-spacing-trim/text-spacing-trim-end-001.html + css/css-text/text-spacing-trim/text-spacing-trim-feature-001.html + css/css-text/text-spacing-trim/text-spacing-trim-narrow-001.html + css/css-text/text-spacing-trim/text-spacing-trim-quote-001.html + css/css-text/text-spacing-trim/text-spacing-trim-space-all-001.html + css/css-text/text-spacing-trim/text-spacing-trim-span-001.html + css/css-text/text-spacing-trim/text-spacing-trim-start-001.html + css/css-text/text-spacing-trim/text-spacing-trim-start-002.html + css/css-text/text-spacing-trim/text-spacing-trim-subset-001.html + css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html + css/css-text/text-stroke-width-subpixel.html + css/css-text/text-transform/math/text-transform-math-auto-001.html + css/css-text/text-transform/math/text-transform-math-auto-002.html + css/css-text/text-transform/math/text-transform-math-auto-003.html + css/css-text/text-transform/text-transform-capitalize-034.html + css/css-text/text-transform/text-transform-capitalize-035.html + css/css-text/text-transform/text-transform-full-size-kana-008.html + css/css-text/text-transform/text-transform-uppercase-dynamic.html css/css-text/text-transform/text-transform-upperlower-105.html + css/css-text/text-transform/text-transform-upperlower-106.html + css/css-text/text-transform/text-transform-upperlower-107.html css/css-text/white-space/break-spaces-011.html css/css-text/white-space/display-contents-remove-whitespace-change.html + css/css-text/white-space/eol-spaces-bidi-004.html + css/css-text/white-space/object-replacement-1.html + css/css-text/white-space/object-replacement-2.html + css/css-text/white-space/pre-wrap-align-center-001.html + css/css-text/white-space/pre-wrap-align-center-002.html + css/css-text/white-space/pre-wrap-align-center-003.html + css/css-text/white-space/pre-wrap-align-end-001.html + css/css-text/white-space/pre-wrap-align-end-002.html + css/css-text/white-space/pre-wrap-align-end-003.html + css/css-text/white-space/pre-wrap-align-left-001.html + css/css-text/white-space/pre-wrap-align-left-002.html + css/css-text/white-space/pre-wrap-align-left-003.html + css/css-text/white-space/pre-wrap-align-right-001.html + css/css-text/white-space/pre-wrap-align-right-002.html + css/css-text/white-space/pre-wrap-align-right-003.html + css/css-text/white-space/pre-wrap-align-start-001.html + css/css-text/white-space/pre-wrap-align-start-002.html + css/css-text/white-space/pre-wrap-align-start-003.html css/css-text/white-space/remove-slotted-with-whitespace-sibling.html + css/css-text/white-space/text-wrap-balance-001.html + css/css-text/white-space/text-wrap-balance-002.html + css/css-text/white-space/text-wrap-balance-003.html + css/css-text/white-space/text-wrap-balance-004.html + css/css-text/white-space/text-wrap-balance-005.html + css/css-text/white-space/text-wrap-balance-align-001.html + css/css-text/white-space/text-wrap-balance-dynamic-001.html + css/css-text/white-space/text-wrap-balance-float-001.html + css/css-text/white-space/text-wrap-balance-float-002.html + css/css-text/white-space/text-wrap-balance-float-003.html + css/css-text/white-space/text-wrap-balance-float-004.html + css/css-text/white-space/text-wrap-balance-float-005.html + css/css-text/white-space/text-wrap-balance-float-006.html + css/css-text/white-space/text-wrap-balance-line-clamp-001.html + css/css-text/white-space/text-wrap-balance-narrow-crash.html + css/css-text/white-space/text-wrap-balance-overflow-001.html + css/css-text/white-space/text-wrap-balance-overflow-002.html + css/css-text/white-space/text-wrap-balance-right-to-left.html + css/css-text/white-space/text-wrap-balance-text-indent-001.html + css/css-text/white-space/text-wrap-balance-top-to-bottom.html + css/css-text/white-space/text-wrap-nowrap-001.html css/css-text/white-space/trailing-space-and-text-alignment-001.html css/css-text/white-space/trailing-space-and-text-alignment-002.html css/css-text/white-space/trailing-space-and-text-alignment-003.html @@ -229,17 +441,78 @@ WARNING: There are 208 WPT tests underneath your path prefix '/css/css-text/' th css/css-text/white-space/trailing-space-and-text-alignment-rtl-004.html css/css-text/white-space/trailing-space-and-text-alignment-rtl-005.html css/css-text/white-space/white-space-applies-to-text-001.html + css/css-text/white-space/white-space-collapse-discard-001.xht + css/css-text/white-space/white-space-collapse-preserve-breaks-001.xht css/css-text/white-space/white-space-intrinsic-size-005.html css/css-text/white-space/white-space-intrinsic-size-006.html + css/css-text/white-space/white-space-pre-wrap-justify-001.html + css/css-text/white-space/white-space-pre-wrap-justify-002.html + css/css-text/white-space/white-space-pre-wrap-justify-003.html + css/css-text/white-space/white-space-pre-wrap-justify-004.html css/css-text/white-space/white-space-pre-wrap-trailing-spaces-021.html css/css-text/white-space/white-space-pre-wrap-trailing-spaces-022.html css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html + css/css-text/white-space/white-space-trim-discard-inner-001.xht + css/css-text/white-space/white-space-vs-joiners-001.html + css/css-text/white-space/white-space-vs-joiners-002.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-001.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-002.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-003.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-004.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-005.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-006.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-007.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-008.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-009.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-001.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-002.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-003.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-intrinsic-001.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-overflow-001.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-wbr-nobr-001.html + css/css-text/word-break/auto-phrase/word-break-auto-phrase-wbr-nobr-002.html css/css-text/word-break/word-break-break-all-ethiopic.html + css/css-text/word-break/word-break-manual-001.html css/css-text/word-break/word-break-min-content-007.html + css/css-text/word-break/word-break-normal-002.html + css/css-text/word-break/word-break-normal-003.html css/css-text/word-break/word-break-normal-ethiopic.html + css/css-text/word-break/word-break-normal-th-001.html + css/css-text/word-space-transform/word-space-transform-001.html + css/css-text/word-space-transform/word-space-transform-002.html + css/css-text/word-space-transform/word-space-transform-003.html + css/css-text/word-space-transform/word-space-transform-004.html + css/css-text/word-space-transform/word-space-transform-005.html + css/css-text/word-space-transform/word-space-transform-006.html + css/css-text/word-space-transform/word-space-transform-007.html + css/css-text/word-space-transform/word-space-transform-008.html + css/css-text/word-space-transform/word-space-transform-009.html + css/css-text/word-space-transform/word-space-transform-010.html + css/css-text/word-space-transform/word-space-transform-011.html + css/css-text/word-space-transform/word-space-transform-012.html + css/css-text/word-space-transform/word-space-transform-013.html + css/css-text/word-space-transform/word-space-transform-014.html + css/css-text/word-space-transform/word-space-transform-015-manual.html + css/css-text/word-space-transform/word-space-transform-016.html + css/css-text/word-space-transform/word-space-transform-017.html + css/css-text/word-space-transform/word-space-transform-018.html + css/css-text/word-space-transform/word-space-transform-019.html + css/css-text/word-space-transform/word-space-transform-020.html + css/css-text/word-space-transform/word-space-transform-021.html + css/css-text/word-space-transform/word-space-transform-022.html + css/css-text/word-space-transform/word-space-transform-023.html + css/css-text/word-space-transform/word-space-transform-024.html + css/css-text/word-space-transform/word-space-transform-025.html + css/css-text/word-space-transform/word-space-transform-026.html + css/css-text/word-space-transform/word-space-transform-027.html + css/css-text/word-space-transform/word-space-transform-028.html + css/css-text/word-space-transform/word-space-transform-029.html + css/css-text/word-space-transform/word-space-transform-030.html css/css-text/word-spacing/word-spacing-001.html + css/css-text/word-spacing/word-spacing-002.html css/css-text/word-spacing/word-spacing-computed-001.html css/css-text/word-spacing/word-spacing-negative-value-001.html + css/css-text/word-spacing/word-spacing-percent-001.html LINE 3270: Image doesn't exist, so I couldn't determine its width and height: 'images/break-all.png' LINE 4261: Image doesn't exist, so I couldn't determine its width and height: 'images/uyghur-hyphenate-joined.png' LINE 4266: Image doesn't exist, so I couldn't determine its width and height: 'images/uyghur-hyphenate-unjoined.png' @@ -255,14 +528,36 @@ LINE 5781: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 5787: Image doesn't exist, so I couldn't determine its width and height: 'images/arabic-stretch-kashida.png' LINE 5795: Image doesn't exist, so I couldn't determine its width and height: 'images/arabic-stretch-suppressed.png' LINE 5803: Image doesn't exist, so I couldn't determine its width and height: 'images/arabic-stretch-unjoined.png' -LINE ~198: Couldn't find section '/about#property-defs' in spec 'css2': -[[CSS2/about#property-defs|CSS property definition conventions]] -LINE ~1498: Couldn't find section '/visuren#anonymous' in spec 'css2': -[[CSS2/visuren#anonymous]] -LINE ~1689: Couldn't find section '/visuren#anonymous' in spec 'css2': -[[CSS2/visuren#anonymous]] -LINE ~4699: Couldn't find section '/visuren#viewport' in spec 'css2': -[[CSS2/visuren#viewport|viewport]] +LINE ~225: Multiple possible 'document language' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#document-language +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:document language +spec:css2; type:dfn; text:document language +[=document language=] +LINE ~243: Multiple possible 'document language' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#document-language +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:document language +spec:css2; type:dfn; text:document language +[=document language=] +LINE ~737: Multiple possible 'ruby' dfn refs. +Arbitrarily chose https://drafts.csswg.org/css-ruby-1/#ruby +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-ruby-1; type:dfn; text:ruby +spec:i18n-glossary; type:dfn; text:ruby +[=ruby=] +LINE ~783: Multiple possible 'document language' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#document-language +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:document language +spec:css2; type:dfn; text:document language +[=document language=] +LINE ~6960: Multiple possible 'document language' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#document-language +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:document language +spec:css2; type:dfn; text:document language +[=document language=] LINE ~6346: Couldn't find section '/selector#first-line-pseudo' in spec 'css2': [[CSS2/selector#first-line-pseudo|first formatted line]] LINE 7472: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-text-3/Overview.html b/tests/github/w3c/csswg-drafts/css-text-3/Overview.html index 03eb54af9c..e1669507c3 100644 --- a/tests/github/w3c/csswg-drafts/css-text-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-text-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Text Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-text-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1359,7 +1358,7 @@ <h1 class="p-name no-ref" id="title">CSS Text Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1381,7 +1380,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-text] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-text%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This publication fully addresses the issues raised since the <a href="https://www.w3.org/TR/2013/WD-css-text-3-20131010/">October 2013 Last Call Working Draft</a>, which are documented in the <a href="https://drafts.csswg.org/css-text-3/issues-lc-2013">disposition of comments</a>.</p> </div> @@ -1571,7 +1570,7 @@ <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno"> other terminology and concepts used in this specification are defined in <a href="https://www.w3.org/TR/CSS2/"><cite>Cascading Style Sheets Level 2</cite></a> and the <a href="https://www.w3.org/TR/css-writing-modes-4/"><cite>CSS Writing Modes Module</cite></a>. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> and <a data-link-type="biblio" href="#biblio-css-writing-modes-4" title="CSS Writing Modes Level 4">[CSS-WRITING-MODES-4]</a>.</p> <h3 class="heading settled" data-level="1.2" id="values"><span class="secno">1.2. </span><span class="content"> Value Definitions</span><a class="self-link" href="#values"></a></h3> - <p>This specification follows the <span spec-section="/about#property-defs">CSS property definition conventions</span> from <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> using the <a href="https://drafts.csswg.org/css-values-3/#value-defs">value definition syntax</a> from <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. + <p>This specification follows the <a href="https://www.w3.org/TR/CSS21/about.html#property-defs">CSS property definition conventions</a> from <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> using the <a href="https://drafts.csswg.org/css-values-3/#value-defs">value definition syntax</a> from <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. Value types not defined in this specification are defined in CSS Values &amp; Units <span title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</span>. Combination with other CSS modules may expand the definitions of these value types.</p> <p>In addition to the property-specific values listed in their definitions, @@ -2749,7 +2748,7 @@ <h2 class="heading settled" data-level="4" id="white-space-processing"><span cla may be user agent dependent.</p> <p class="note" role="note"><span class="marker">Note:</span> Anonymous blocks consisting entirely of <a data-link-type="dfn" href="#collapsible-white-space" id="ref-for-collapsible-white-space">collapsible</a> <a data-link-type="dfn" href="#white-space" id="ref-for-white-space①③">white space</a> are removed from the rendering tree. Thus any such <span id="ref-for-white-space①④">white space</span> surrounding a block-level element is collapsed away. - See <span spec-section="/visuren#anonymous"></span>. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a></p> + See <a href="https://www.w3.org/TR/CSS21/visuren.html#anonymous"><cite>CSS 2.1</cite> § 9.2.2.1 Anonymous inline boxes</a>. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a></p> <p>Control characters (<a data-link-type="dfn" href="#unicode-general-category" id="ref-for-unicode-general-category①">Unicode category</a> <code>Cc</code>)—​other than tabs (U+0009), line feeds (U+000A), carriage returns (U+000D) @@ -2918,7 +2917,7 @@ <h3 class="heading settled" data-level="4.1" id="white-space-rules"><span class= <h4 class="heading settled" data-level="4.1.1" id="white-space-phase-1"><span class="secno">4.1.1. </span><span class="content"> Phase I: Collapsing and Transformation</span><a class="self-link" href="#white-space-phase-1"></a></h4> <p>For each inline (including anonymous inlines; - see <span spec-section="/visuren#anonymous"></span> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>) + see <a href="https://www.w3.org/TR/CSS21/visuren.html#anonymous"><cite>CSS 2.1</cite> § 9.2.2.1 Anonymous inline boxes</a> <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>) within an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-formatting-context" id="ref-for-inline-formatting-context">inline formatting context</a>, <a data-link-type="dfn" href="#white-space" id="ref-for-white-space①⑥">white space characters</a> are processed as follows prior to <a data-link-type="dfn" href="#line-breaking-process" id="ref-for-line-breaking-process">line breaking</a> and <a href="https://drafts.csswg.org/css-writing-modes-4/#text-direction">bidi reordering</a>, ignoring <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="bidi-formatting-characters">bidi formatting characters</dfn> (characters with the <code>Bidi_Control</code> property <a data-link-type="biblio" href="#biblio-uax9" title="Unicode Bidirectional Algorithm">[UAX9]</a>) @@ -5524,7 +5523,7 @@ <h3 class="heading settled" data-level="6.1" id="text-align-property"><span clas is a stack of <a data-link-type="dfn" href="https://drafts.csswg.org/css-inline-3/#line-box" id="ref-for-line-box">line boxes</a>. This property specifies how the inline-level boxes within each line box align with respect to the start and end sides of the line box. - Alignment is not with respect to the <span spec-section="/visuren#viewport">viewport</span> or containing block.</p> + Alignment is not with respect to the <a href="https://www.w3.org/TR/CSS21/visuren.html#viewport">viewport</a> or containing block.</p> <p>In the case of <a class="css" data-link-type="maybe" href="#valdef-text-align-justify" id="ref-for-valdef-text-align-justify①">justify</a>, the UA may stretch or shrink any inline boxes by <a href="#text-justify-property">adjusting</a> their text. @@ -5541,7 +5540,6 @@ <h3 class="heading settled" data-level="6.1" id="text-align-property"><span clas <summary>Tests</summary> <ul class="wpt-tests-list"> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/CSS2/text/text-align-white-space-001.xht" title="css/CSS2/text/text-align-white-space-001.xht">text-align-white-space-001.xht</a> <a class="wpt-live" href="http://wpt.live/css/CSS2/text/text-align-white-space-001.xht"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/CSS2/text/text-align-white-space-001.xht"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/CSS2/text/text-align-white-space-003.xht" title="css/CSS2/text/text-align-white-space-003.xht">text-align-white-space-003.xht</a> <a class="wpt-live" href="http://wpt.live/css/CSS2/text/text-align-white-space-003.xht"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/CSS2/text/text-align-white-space-003.xht"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/CSS2/text/text-align-white-space-005.xht" title="css/CSS2/text/text-align-white-space-005.xht">text-align-white-space-005.xht</a> <a class="wpt-live" href="http://wpt.live/css/CSS2/text/text-align-white-space-005.xht"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/CSS2/text/text-align-white-space-005.xht"><small>(source)</small></a> </ul> </details> @@ -8144,19 +8142,19 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -8186,19 +8184,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> <dt id="biblio-uax11">[UAX11] - <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-40.html"><cite>East Asian Width</cite></a>. 16 August 2022. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-40.html">https://www.unicode.org/reports/tr11/tr11-40.html</a> + <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-41.html"><cite>East Asian Width</cite></a>. 17 July 2023. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-41.html">https://www.unicode.org/reports/tr11/tr11-41.html</a> <dt id="biblio-uax14">[UAX14] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr14/tr14-49.html"><cite>Unicode Line Breaking Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #14. URL: <a href="https://www.unicode.org/reports/tr14/tr14-49.html">https://www.unicode.org/reports/tr14/tr14-49.html</a> + <dd>Robin Leroy. <a href="https://www.unicode.org/reports/tr14/tr14-51.html"><cite>Unicode Line Breaking Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #14. URL: <a href="https://www.unicode.org/reports/tr14/tr14-51.html">https://www.unicode.org/reports/tr14/tr14-51.html</a> <dt id="biblio-uax24">[UAX24] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-34.html"><cite>Unicode Script Property</cite></a>. 25 August 2022. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-34.html">https://www.unicode.org/reports/tr24/tr24-34.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-36.html"><cite>Unicode Script Property</cite></a>. 14 August 2023. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-36.html">https://www.unicode.org/reports/tr24/tr24-36.html</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> <dt id="biblio-uax44">[UAX44] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr44/tr44-30.html"><cite>Unicode Character Database</cite></a>. 2 September 2022. Unicode Standard Annex #44. URL: <a href="https://www.unicode.org/reports/tr44/tr44-30.html">https://www.unicode.org/reports/tr44/tr44-30.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr44/tr44-32.html"><cite>Unicode Character Database</cite></a>. 6 September 2023. Unicode Standard Annex #44. URL: <a href="https://www.unicode.org/reports/tr44/tr44-32.html">https://www.unicode.org/reports/tr44/tr44-32.html</a> <dt id="biblio-uax50">[UAX50] - <dd>Ken Lunde 小林劍󠄁; Koji Ishii 石井宏治. <a href="https://www.unicode.org/reports/tr50/tr50-28.html"><cite>Unicode Vertical Text Layout</cite></a>. 16 August 2022. Unicode Standard Annex #50. URL: <a href="https://www.unicode.org/reports/tr50/tr50-28.html">https://www.unicode.org/reports/tr50/tr50-28.html</a> + <dd>Ken Lunde 小林劍󠄁; Koji Ishii 石井宏治. <a href="https://www.unicode.org/reports/tr50/tr50-29.html"><cite>Unicode Vertical Text Layout</cite></a>. 17 July 2023. Unicode Standard Annex #50. URL: <a href="https://www.unicode.org/reports/tr50/tr50-29.html">https://www.unicode.org/reports/tr50/tr50-29.html</a> <dt id="biblio-uax9">[UAX9] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-unicode">[UNICODE] <dd><a href="https://www.unicode.org/versions/latest/"><cite>The Unicode Standard</cite></a>. URL: <a href="https://www.unicode.org/versions/latest/">https://www.unicode.org/versions/latest/</a> </dl> @@ -8207,9 +8205,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-bcp47">[BCP47] <dd>A. Phillips, Ed.; M. Davis, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc5646"><cite>Tags for Identifying Languages</cite></a>. September 2009. Best Current Practice. URL: <a href="https://www.rfc-editor.org/rfc/rfc5646">https://www.rfc-editor.org/rfc/rfc5646</a> <dt id="biblio-clreq">[CLREQ] - <dd>Bobby Tung; et al. <a href="https://w3c.github.io/clreq/"><cite>Requirements for Chinese Text Layout - 中文排版需求</cite></a>. URL: <a href="https://w3c.github.io/clreq/">https://w3c.github.io/clreq/</a> + <dd>Fuqiao Xue; Richard Ishida. <a href="https://www.w3.org/International/clreq/"><cite>Requirements for Chinese Text Layout - 中文排版需求</cite></a>. URL: <a href="https://www.w3.org/International/clreq/">https://www.w3.org/International/clreq/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-text-decor-3">[CSS-TEXT-DECOR-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-3/">https://drafts.csswg.org/css-text-decor-3/</a> <dt id="biblio-dom">[DOM] @@ -8433,13 +8431,13 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/hyphens" title="The hyphens CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.">hyphens</a></p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>43+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> + <span class="firefox yes"><span>Firefox</span><span>43+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>55+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink no"><span>Edge</span><span>?</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>55+</span></span><span class="webview_android yes"><span>Android WebView</span><span>55+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>43+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -8577,7 +8575,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 79+</span></span> <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie yes"><span>IE</span><span>11</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -8662,48 +8660,48 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </details> <details class="caniuse-status unpositioned" data-anno-for="tab-size-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>91+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>29+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>13.4+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-tabsize">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>91+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>29+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>13.4+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-tabsize">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="word-break-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>44+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>15+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>5.5+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>31+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=word-break">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>44+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>15+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>5.5+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>31+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=word-break">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="hyphenation" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>105+</span></span><span class="firefox yes"><span>Firefox</span><span>43+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>91+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung yes"><span>Samsung Internet</span><span>6.2+</span></span><span class="and_uc partial"><span><span>UC Browser for Android (limited)</span></span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-hyphens">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>105+</span></span><span class="firefox yes"><span>Firefox</span><span>43+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>91+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>17.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>17.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>6.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-hyphens">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="overflow-wrap-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>18+</span></span><span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>5.5+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios partial"><span><span>KaiOS Browser (limited)</span></span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>6.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>7.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=wordwrap">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>23+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>18+</span></span><span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>5.5+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>6.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>7.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=wordwrap">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="text-align-last-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>47+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>5.5+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>34+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-text-align-last">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>47+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>5.5+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>34+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-text-align-last">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="text-justify-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android no"><span>Android Browser</span><span>None</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span><span class="and_chr no"><span>Chrome for Android</span><span>None</span></span><span class="edge no"><span>Edge</span><span>None</span></span><span class="firefox yes"><span>Firefox</span><span>55+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>8+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera no"><span>Opera</span><span>None</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob no"><span>Opera Mobile</span><span>None</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-text-justify">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android no"><span>Android Browser</span><span>None</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span><span class="and_chr no"><span>Chrome for Android</span><span>None</span></span><span class="edge no"><span>Edge</span><span>None</span></span><span class="firefox yes"><span>Firefox</span><span>55+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>8+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera no"><span>Opera</span><span>None</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob no"><span>Opera Mobile</span><span>None</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-text-justify">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="letter-spacing-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>30+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>2+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>17+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>6.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-letter-spacing">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>4.4+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>30+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>2+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>17+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>6.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-letter-spacing">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="text-indent-property" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android partial"><span><span>Android Browser (limited)</span></span><span>2.1+</span></span><span class="baidu partial"><span><span>Baidu Browser (limited)</span></span><span>13.18+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome partial"><span><span>Chrome (limited)</span></span><span>4+</span></span><span class="and_chr partial"><span><span>Chrome for Android (limited)</span></span><span>109+</span></span><span class="edge partial"><span><span>Edge (limited)</span></span><span>12+</span></span><span class="firefox partial"><span><span>Firefox (limited)</span></span><span>2+</span></span><span class="and_ff partial"><span><span>Firefox for Android (limited)</span></span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>5.5+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios partial"><span><span>KaiOS Browser (limited)</span></span><span>2.5+</span></span><span class="opera partial"><span><span>Opera (limited)</span></span><span>9+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob partial"><span><span>Opera Mobile (limited)</span></span><span>10+</span></span><span class="and_qq partial"><span><span>QQ Browser (limited)</span></span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung partial"><span><span>Samsung Internet (limited)</span></span><span>4+</span></span><span class="and_uc partial"><span><span>UC Browser for Android (limited)</span></span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-text-indent">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android partial"><span><span>Android Browser (limited)</span></span><span>2.1+</span></span><span class="baidu partial"><span><span>Baidu Browser (limited)</span></span><span>13.52+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome partial"><span><span>Chrome (limited)</span></span><span>4+</span></span><span class="and_chr partial"><span><span>Chrome for Android (limited)</span></span><span>127+</span></span><span class="edge partial"><span><span>Edge (limited)</span></span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>121+</span></span><span class="and_ff partial"><span><span>Firefox for Android (limited)</span></span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>5.5+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios partial"><span><span>KaiOS Browser (limited)</span></span><span>2.5+</span></span><span class="opera partial"><span><span>Opera (limited)</span></span><span>9+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob partial"><span><span>Opera Mobile (limited)</span></span><span>10+</span></span><span class="and_qq partial"><span><span>QQ Browser (limited)</span></span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung partial"><span><span>Samsung Internet (limited)</span></span><span>4+</span></span><span class="and_uc partial"><span><span>UC Browser for Android (limited)</span></span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-text-indent">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="hanging-punctuation-property" data-deco> <summary>CanIUse</summary> <p class="support"><b>Support:</b><span class="android no"><span>Android Browser</span><span>None</span></span><span class="baidu no"><span>Baidu Browser</span><span>None</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span><span class="and_chr no"><span>Chrome for Android</span><span>None</span></span><span class="edge no"><span>Edge</span><span>None</span></span><span class="firefox no"><span>Firefox</span><span>None</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera no"><span>Opera</span><span>None</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob no"><span>Opera Mobile</span><span>None</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>10.0+</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-hanging-punctuation">caniuse.com</a> as of 2023-01-27</p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-hanging-punctuation">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/csswg-drafts/css-text-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-text-4/Overview.console.txt index 6bef8ef0a1..ffaa98b22a 100644 --- a/tests/github/w3c/csswg-drafts/css-text-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-text-4/Overview.console.txt @@ -1,12 +1,153 @@ LINT: Your document appears to use tabs to indent, but line 1909 starts with spaces. LINT: Your document appears to use tabs to indent, but line 1911 starts with spaces. LINT: Your document appears to use tabs to indent, but line 1913 starts with spaces. +LINE 87: Couldn't find WPT test 'css/css-text/parsing/word-boundary-detection-computed.html' - did you misspell something? +LINE 87: Couldn't find WPT test 'css/css-text/parsing/word-boundary-detection-invalid.html' - did you misspell something? +LINE 87: Couldn't find WPT test 'css/css-text/parsing/word-boundary-detection-valid.html' - did you misspell something? +LINE 108: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-109.html' - did you misspell something? +LINE 108: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-110.html' - did you misspell something? +LINE 108: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-111.html' - did you misspell something? +LINE 108: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-112.html' - did you misspell something? +LINE 132: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-101.html' - did you misspell something? +LINE 132: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-105.html' - did you misspell something? +LINE 132: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-106.html' - did you misspell something? +LINE 132: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-115.html' - did you misspell something? +LINE 163: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-102.html' - did you misspell something? +LINE 163: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-103.html' - did you misspell something? +LINE 163: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-104.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-105.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-106.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-107.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-108.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-109.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-110.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-111.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-112.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-113.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-114.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-115.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-116.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-117.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-118.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-119.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-120.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-121.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-122.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-123.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-124.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-125.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-126.html' - did you misspell something? +LINE 207: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-127.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-105.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-106.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-107.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-108.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-109.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-110.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-111.html' - did you misspell something? +LINE 265: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-112.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-109.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-110.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-111.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-112.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-113.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-114.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-115.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-116.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-117.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-118.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-119.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-120.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-121.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-122.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-123.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-124.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-125.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-126.html' - did you misspell something? +LINE 345: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-127.html' - did you misspell something? +LINE 371: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-113.html' - did you misspell something? +LINE 371: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-114.html' - did you misspell something? +LINE 381: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-113.html' - did you misspell something? +LINE 381: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-114.html' - did you misspell something? +LINE 412: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-115.html' - did you misspell something? +LINE 421: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-116.html' - did you misspell something? +LINE 421: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-117.html' - did you misspell something? +LINE 421: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-118.html' - did you misspell something? +LINE 438: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-122.html' - did you misspell something? +LINE 438: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-123.html' - did you misspell something? +LINE 438: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-124.html' - did you misspell something? +LINE 438: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-125.html' - did you misspell something? +LINE 449: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-126.html' - did you misspell something? +LINE 457: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-119.html' - did you misspell something? +LINE 457: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-120.html' - did you misspell something? +LINE 457: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-121.html' - did you misspell something? +LINE 470: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-127.html' - did you misspell something? +LINE 470: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-128.html' - did you misspell something? +LINE 479: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-129.html' - did you misspell something? +LINE 498: Couldn't find WPT test 'css/css-text/parsing/word-boundary-expansion-computed.html' - did you misspell something? +LINE 498: Couldn't find WPT test 'css/css-text/parsing/word-boundary-expansion-invalid.html' - did you misspell something? +LINE 498: Couldn't find WPT test 'css/css-text/parsing/word-boundary-expansion-valid.html' - did you misspell something? +LINE 498: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-003.html' - did you misspell something? +LINE 498: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-005.html' - did you misspell something? +LINE 498: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-006.html' - did you misspell something? +LINE 523: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-004.html' - did you misspell something? +LINE 523: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-005.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-002.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-004.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-005.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-006.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-007.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-008.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-009.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-014.html' - did you misspell something? +LINE 534: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-015-manual.html' - did you misspell something? +LINE 552: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-001.html' - did you misspell something? +LINE 552: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-003.html' - did you misspell something? +LINE 552: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-010.html' - did you misspell something? +LINE 552: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-011.html' - did you misspell something? +LINE 552: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-012.html' - did you misspell something? +LINE 552: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-013.html' - did you misspell something? +LINE 568: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-010.html' - did you misspell something? +LINE 568: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-011.html' - did you misspell something? +LINE 568: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-012.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-001.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-002.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-003.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-004.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-006.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-007.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-008.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-009.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-010.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-011.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-012.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-013.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-014.html' - did you misspell something? +LINE 578: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-015-manual.html' - did you misspell something? +LINE 601: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-007.html' - did you misspell something? +LINE 601: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-008.html' - did you misspell something? +LINE 601: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-009.html' - did you misspell something? +LINE 611: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-015-manual.html' - did you misspell something? +LINE 691: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-013.html' - did you misspell something? +LINE 691: Couldn't find WPT test 'css/css-text/word-boundary/word-boundary-014.html' - did you misspell something? +LINE ~250: No 'dfn' refs found for 'text run'. +[=text run=] LINE 276: Multiple possible ':lang()' maybe refs. Arbitrarily chose https://drafts.csswg.org/css2/#selectordef-lang To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css22; type:selector; text::lang() spec:selectors-4; type:selector; text::lang() '':lang()'' +LINE ~338: Multiple possible 'selectors' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:selector +spec:css2; type:dfn; text:selector +[=Selectors=] +LINE ~529: No 'dfn' refs found for 'text run'. +[=text run=] +LINE ~547: No 'dfn' refs found for 'text run'. +[=text run=] LINE 1913: Multiple possible 'maybe' local refs for 'auto'. Randomly chose one of them; other instances might get a different random choice. ''auto'' diff --git a/tests/github/w3c/csswg-drafts/css-text-4/Overview.html b/tests/github/w3c/csswg-drafts/css-text-4/Overview.html index ebdbf13c79..0438d423ad 100644 --- a/tests/github/w3c/csswg-drafts/css-text-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-text-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Text Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-text-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1107,13 +1106,11 @@ <h1 class="p-name no-ref" id="title">CSS Text Module Level 4</h1> <dd class="editor p-author h-card vcard" data-editor-id="43241"><a class="p-name fn u-url url" href="https://florian.rivoal.net">Florian Rivoal</a> (<span class="p-org org">Invited Expert</span>) <dt>Suggest an Edit for this Spec: <dd><a href="https://github.com/w3c/csswg-drafts/blob/main/css-text-4/Overview.bs">GitHub Editor</a> - <dt>Test Suite: - <dd class="wpt-overview"><a href="https://wpt.fyi/results/css/css-text/">https://wpt.fyi/results/css/css-text/</a> </dl> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1135,7 +1132,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-text] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-text%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1292,11 +1289,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa </table> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/parsing/word-boundary-detection-computed.html" title="css/css-text/parsing/word-boundary-detection-computed.html">word-boundary-detection-computed.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/parsing/word-boundary-detection-computed.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/parsing/word-boundary-detection-computed.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/parsing/word-boundary-detection-invalid.html" title="css/css-text/parsing/word-boundary-detection-invalid.html">word-boundary-detection-invalid.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/parsing/word-boundary-detection-invalid.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/parsing/word-boundary-detection-invalid.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/parsing/word-boundary-detection-valid.html" title="css/css-text/parsing/word-boundary-detection-valid.html">word-boundary-detection-valid.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/parsing/word-boundary-detection-valid.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/parsing/word-boundary-detection-valid.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>This property allows the author to decide whether and how @@ -1312,12 +1305,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa and must not affect the content of a plain text copy &amp; paste operation.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-109.html" title="css/css-text/word-boundary/word-boundary-109.html">word-boundary-109.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-109.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-109.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-110.html" title="css/css-text/word-boundary/word-boundary-110.html">word-boundary-110.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-110.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-110.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-111.html" title="css/css-text/word-boundary/word-boundary-111.html">word-boundary-111.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-111.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-111.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-112.html" title="css/css-text/word-boundary/word-boundary-112.html">word-boundary-112.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-112.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-112.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <dl> <dt><dfn class="dfn-paneled css" data-dfn-for="word-boundary-detection" data-dfn-type="value" data-export id="valdef-word-boundary-detection-manual">manual</dfn> @@ -1331,12 +1319,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa there is no <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#soft-wrap-opportunity" id="ref-for-soft-wrap-opportunity①">soft wrap opportunity</a> between pairs of such characters).</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-101.html" title="css/css-text/word-boundary/word-boundary-101.html">word-boundary-101.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-101.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-101.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-105.html" title="css/css-text/word-boundary/word-boundary-105.html">word-boundary-105.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-105.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-105.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-106.html" title="css/css-text/word-boundary/word-boundary-106.html">word-boundary-106.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-106.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-106.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-115.html" title="css/css-text/word-boundary/word-boundary-115.html">word-boundary-115.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-115.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-115.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <div class="advisement"> Authors using this value for Southeast Asian languages are expected to manually indicate word boundaries, @@ -1356,11 +1339,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa the specific algorithm used is UA-dependent.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-102.html" title="css/css-text/word-boundary/word-boundary-102.html">word-boundary-102.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-102.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-102.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-103.html" title="css/css-text/word-boundary/word-boundary-103.html">word-boundary-103.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-103.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-103.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-104.html" title="css/css-text/word-boundary/word-boundary-104.html">word-boundary-104.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-104.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-104.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>As various languages can be written in scripts which use the characters with class SA, @@ -1393,31 +1372,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa (and will cause the declaration to be ignored).</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-105.html" title="css/css-text/word-boundary/word-boundary-105.html">word-boundary-105.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-105.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-105.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-106.html" title="css/css-text/word-boundary/word-boundary-106.html">word-boundary-106.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-106.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-106.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-107.html" title="css/css-text/word-boundary/word-boundary-107.html">word-boundary-107.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-107.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-107.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-108.html" title="css/css-text/word-boundary/word-boundary-108.html">word-boundary-108.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-108.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-108.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-109.html" title="css/css-text/word-boundary/word-boundary-109.html">word-boundary-109.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-109.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-109.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-110.html" title="css/css-text/word-boundary/word-boundary-110.html">word-boundary-110.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-110.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-110.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-111.html" title="css/css-text/word-boundary/word-boundary-111.html">word-boundary-111.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-111.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-111.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-112.html" title="css/css-text/word-boundary/word-boundary-112.html">word-boundary-112.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-112.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-112.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-113.html" title="css/css-text/word-boundary/word-boundary-113.html">word-boundary-113.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-113.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-113.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-114.html" title="css/css-text/word-boundary/word-boundary-114.html">word-boundary-114.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-114.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-114.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-115.html" title="css/css-text/word-boundary/word-boundary-115.html">word-boundary-115.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-115.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-115.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-116.html" title="css/css-text/word-boundary/word-boundary-116.html">word-boundary-116.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-116.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-116.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-117.html" title="css/css-text/word-boundary/word-boundary-117.html">word-boundary-117.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-117.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-117.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-118.html" title="css/css-text/word-boundary/word-boundary-118.html">word-boundary-118.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-118.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-118.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-119.html" title="css/css-text/word-boundary/word-boundary-119.html">word-boundary-119.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-119.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-119.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-120.html" title="css/css-text/word-boundary/word-boundary-120.html">word-boundary-120.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-120.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-120.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-121.html" title="css/css-text/word-boundary/word-boundary-121.html">word-boundary-121.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-121.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-121.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-122.html" title="css/css-text/word-boundary/word-boundary-122.html">word-boundary-122.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-122.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-122.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-123.html" title="css/css-text/word-boundary/word-boundary-123.html">word-boundary-123.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-123.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-123.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-124.html" title="css/css-text/word-boundary/word-boundary-124.html">word-boundary-124.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-124.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-124.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-125.html" title="css/css-text/word-boundary/word-boundary-125.html">word-boundary-125.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-125.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-125.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-126.html" title="css/css-text/word-boundary/word-boundary-126.html">word-boundary-126.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-126.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-126.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-127.html" title="css/css-text/word-boundary/word-boundary-127.html">word-boundary-127.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-127.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-127.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="note" role="note"><span class="marker">Note:</span> Wildcards <em>in the language subtag</em> would imply support for detecting word boundaries in an undefined and effectively unlimited set of languages. @@ -1442,21 +1397,12 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa and this property has no effect on this element. Otherwise, the user agent must insert a <a data-link-type="dfn" href="#virtual-word-boundary" id="ref-for-virtual-word-boundary⑧">virtual word boundary</a> at each detected word boundary - within the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run">text run</a> children of this element. + within the <a data-link-type="dfn">text run</a> children of this element. Within the constraints set by this specification, the specific algorithm used is UA-dependent.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-105.html" title="css/css-text/word-boundary/word-boundary-105.html">word-boundary-105.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-105.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-105.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-106.html" title="css/css-text/word-boundary/word-boundary-106.html">word-boundary-106.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-106.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-106.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-107.html" title="css/css-text/word-boundary/word-boundary-107.html">word-boundary-107.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-107.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-107.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-108.html" title="css/css-text/word-boundary/word-boundary-108.html">word-boundary-108.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-108.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-108.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-109.html" title="css/css-text/word-boundary/word-boundary-109.html">word-boundary-109.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-109.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-109.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-110.html" title="css/css-text/word-boundary/word-boundary-110.html">word-boundary-110.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-110.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-110.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-111.html" title="css/css-text/word-boundary/word-boundary-111.html">word-boundary-111.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-111.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-111.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-112.html" title="css/css-text/word-boundary/word-boundary-112.html">word-boundary-112.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-112.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-112.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="note" role="note"><span class="marker">Note:</span> This is the same matching logic as the one used for the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#selectordef-lang" id="ref-for-selectordef-lang">:lang()</a> selector.</p> </dl> @@ -1514,37 +1460,14 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa must take the presence of the <span id="ref-for-virtual-word-boundary①⓪">virtual word boundary</span> into account. <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#selector" id="ref-for-selector">Selectors</a> are not affected.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-109.html" title="css/css-text/word-boundary/word-boundary-109.html">word-boundary-109.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-109.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-109.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-110.html" title="css/css-text/word-boundary/word-boundary-110.html">word-boundary-110.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-110.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-110.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-111.html" title="css/css-text/word-boundary/word-boundary-111.html">word-boundary-111.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-111.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-111.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-112.html" title="css/css-text/word-boundary/word-boundary-112.html">word-boundary-112.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-112.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-112.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-113.html" title="css/css-text/word-boundary/word-boundary-113.html">word-boundary-113.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-113.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-113.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-114.html" title="css/css-text/word-boundary/word-boundary-114.html">word-boundary-114.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-114.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-114.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-115.html" title="css/css-text/word-boundary/word-boundary-115.html">word-boundary-115.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-115.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-115.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-116.html" title="css/css-text/word-boundary/word-boundary-116.html">word-boundary-116.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-116.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-116.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-117.html" title="css/css-text/word-boundary/word-boundary-117.html">word-boundary-117.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-117.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-117.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-118.html" title="css/css-text/word-boundary/word-boundary-118.html">word-boundary-118.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-118.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-118.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-119.html" title="css/css-text/word-boundary/word-boundary-119.html">word-boundary-119.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-119.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-119.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-120.html" title="css/css-text/word-boundary/word-boundary-120.html">word-boundary-120.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-120.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-120.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-121.html" title="css/css-text/word-boundary/word-boundary-121.html">word-boundary-121.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-121.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-121.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-122.html" title="css/css-text/word-boundary/word-boundary-122.html">word-boundary-122.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-122.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-122.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-123.html" title="css/css-text/word-boundary/word-boundary-123.html">word-boundary-123.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-123.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-123.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-124.html" title="css/css-text/word-boundary/word-boundary-124.html">word-boundary-124.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-124.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-124.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-125.html" title="css/css-text/word-boundary/word-boundary-125.html">word-boundary-125.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-125.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-125.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-126.html" title="css/css-text/word-boundary/word-boundary-126.html">word-boundary-126.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-126.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-126.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-127.html" title="css/css-text/word-boundary/word-boundary-127.html">word-boundary-127.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-127.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-127.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>Inline box boundaries and out-of-flow elements must be ignored when determining word boundaries.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-113.html" title="css/css-text/word-boundary/word-boundary-113.html">word-boundary-113.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-113.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-113.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-114.html" title="css/css-text/word-boundary/word-boundary-114.html">word-boundary-114.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-114.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-114.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>If a word boundary is found at the same position as one or more inline box boundaries, @@ -1552,10 +1475,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa in the outermost element that participates in this inline box boundary.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-113.html" title="css/css-text/word-boundary/word-boundary-113.html">word-boundary-113.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-113.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-113.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-114.html" title="css/css-text/word-boundary/word-boundary-114.html">word-boundary-114.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-114.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-114.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <div class="example" id="example-07f2636a"> <a class="self-link" href="#example-07f2636a"></a> In the following example, @@ -1580,9 +1500,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa whose parent box has a <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value①">used value</a> of <a class="css" data-link-type="maybe" href="#valdef-word-boundary-detection-manual" id="ref-for-valdef-word-boundary-detection-manual①">manual</a>. <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-115.html" title="css/css-text/word-boundary/word-boundary-115.html">word-boundary-115.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-115.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-115.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <li> immediately adjacent to a <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-3/#word-separator" id="ref-for-word-separator">word-separator character</a>, @@ -1590,11 +1508,7 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa or a ZERO WIDTH SPACE (U+200B) character. <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-116.html" title="css/css-text/word-boundary/word-boundary-116.html">word-boundary-116.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-116.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-116.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-117.html" title="css/css-text/word-boundary/word-boundary-117.html">word-boundary-117.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-117.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-117.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-118.html" title="css/css-text/word-boundary/word-boundary-118.html">word-boundary-118.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-118.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-118.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="note" role="note"><span class="marker">Note:</span> This implies that for languages such as English where words are separated by spaces or other separating characters, <a class="css" data-link-type="maybe" href="#valdef-word-boundary-detection-auto-lang" id="ref-for-valdef-word-boundary-detection-auto-lang">auto(&lt;lang>)</a> has no effect.</p> @@ -1603,30 +1517,19 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa between a <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-letter-unit" id="ref-for-typographic-letter-unit①">typographic letter unit</a> and a subsequent <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-character-unit" id="ref-for-typographic-character-unit③">typographic character unit</a> from the <a data-link-type="biblio" href="#biblio-uax14" title="Unicode Line Breaking Algorithm">[UAX14]</a> CL, CP, IS, or EX line break classes, <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-122.html" title="css/css-text/word-boundary/word-boundary-122.html">word-boundary-122.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-122.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-122.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-123.html" title="css/css-text/word-boundary/word-boundary-123.html">word-boundary-123.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-123.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-123.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-124.html" title="css/css-text/word-boundary/word-boundary-124.html">word-boundary-124.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-124.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-124.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-125.html" title="css/css-text/word-boundary/word-boundary-125.html">word-boundary-125.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-125.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-125.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <li> between a <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-letter-unit" id="ref-for-typographic-letter-unit②">typographic letter unit</a> and a preceding <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-character-unit" id="ref-for-typographic-character-unit④">typographic character unit</a> from the <a data-link-type="biblio" href="#biblio-uax14" title="Unicode Line Breaking Algorithm">[UAX14]</a> OP line break class, <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-126.html" title="css/css-text/word-boundary/word-boundary-126.html">word-boundary-126.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-126.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-126.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <li> between a <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-letter-unit" id="ref-for-typographic-letter-unit③">typographic letter unit</a> and an adjacent <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-character-unit" id="ref-for-typographic-character-unit⑤">typographic character unit</a> from the <a data-link-type="biblio" href="#biblio-uax14" title="Unicode Line Breaking Algorithm">[UAX14]</a> GL, WJ, or ZWJ line break classes. <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-119.html" title="css/css-text/word-boundary/word-boundary-119.html">word-boundary-119.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-119.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-119.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-120.html" title="css/css-text/word-boundary/word-boundary-120.html">word-boundary-120.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-120.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-120.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-121.html" title="css/css-text/word-boundary/word-boundary-121.html">word-boundary-121.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-121.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-121.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </ul> <p>The user agent should not insert a <a data-link-type="dfn" href="#virtual-word-boundary" id="ref-for-virtual-word-boundary①③">virtual word boundary</a>:</p> @@ -1635,18 +1538,13 @@ <h4 class="heading settled" data-level="2.2.1" id="word-boundary-detection"><spa between a <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-letter-unit" id="ref-for-typographic-letter-unit④">typographic letter unit</a> and a subsequent <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-character-unit" id="ref-for-typographic-character-unit⑥">typographic character unit</a> from the <a data-link-type="biblio" href="#biblio-uax14" title="Unicode Line Breaking Algorithm">[UAX14]</a> PO, NS line break classes, <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-127.html" title="css/css-text/word-boundary/word-boundary-127.html">word-boundary-127.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-127.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-127.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-128.html" title="css/css-text/word-boundary/word-boundary-128.html">word-boundary-128.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-128.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-128.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <li> between a <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-letter-unit" id="ref-for-typographic-letter-unit⑤">typographic letter unit</a> and a preceding <a data-link-type="dfn" href="https://drafts.csswg.org/css-text-4/#typographic-character-unit" id="ref-for-typographic-character-unit⑦">typographic character unit</a> from the <a data-link-type="biblio" href="#biblio-uax14" title="Unicode Line Breaking Algorithm">[UAX14]</a> PR line break class, <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-129.html" title="css/css-text/word-boundary/word-boundary-129.html">word-boundary-129.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-129.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-129.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </ul> <h4 class="heading settled" data-level="2.2.2" id="word-boundary-expansion"><span class="secno">2.2.2. </span><span class="content"> Makig Word Boundaries Visible: the <a class="property css" data-link-type="property" href="#propdef-word-boundary-expansion" id="ref-for-propdef-word-boundary-expansion②">word-boundary-expansion</a> property</span><a class="self-link" href="#word-boundary-expansion"></a></h4> @@ -1682,14 +1580,7 @@ <h4 class="heading settled" data-level="2.2.2" id="word-boundary-expansion"><spa </table> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/parsing/word-boundary-expansion-computed.html" title="css/css-text/parsing/word-boundary-expansion-computed.html">word-boundary-expansion-computed.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/parsing/word-boundary-expansion-computed.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/parsing/word-boundary-expansion-computed.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/parsing/word-boundary-expansion-invalid.html" title="css/css-text/parsing/word-boundary-expansion-invalid.html">word-boundary-expansion-invalid.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/parsing/word-boundary-expansion-invalid.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/parsing/word-boundary-expansion-invalid.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/parsing/word-boundary-expansion-valid.html" title="css/css-text/parsing/word-boundary-expansion-valid.html">word-boundary-expansion-valid.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/parsing/word-boundary-expansion-valid.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/parsing/word-boundary-expansion-valid.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-003.html" title="css/css-text/word-boundary/word-boundary-003.html">word-boundary-003.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-003.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-003.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-005.html" title="css/css-text/word-boundary/word-boundary-005.html">word-boundary-005.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-005.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-005.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-006.html" title="css/css-text/word-boundary/word-boundary-006.html">word-boundary-006.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-006.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-006.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p class="issue" id="issue-217111e5"><a class="self-link" href="#issue-217111e5"></a> This name is quite long, we may want to find a better one. We should also consider how we may want to add values to this property, @@ -1707,45 +1598,25 @@ <h4 class="heading settled" data-level="2.2.2" id="word-boundary-expansion"><spa This property has no effect. <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-004.html" title="css/css-text/word-boundary/word-boundary-004.html">word-boundary-004.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-004.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-004.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-005.html" title="css/css-text/word-boundary/word-boundary-005.html">word-boundary-005.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-005.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-005.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <dt><dfn class="dfn-paneled css" data-dfn-for="word-boundary-expansion" data-dfn-type="value" data-export id="valdef-word-boundary-expansion-space">space</dfn> <dd> Instances of U+200B ZERO WIDTH SPACE - within the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run①">text run</a> children of this element + within the <a data-link-type="dfn">text run</a> children of this element are replaced by U+0020 SPACE. <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-002.html" title="css/css-text/word-boundary/word-boundary-002.html">word-boundary-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-002.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-004.html" title="css/css-text/word-boundary/word-boundary-004.html">word-boundary-004.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-004.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-004.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-005.html" title="css/css-text/word-boundary/word-boundary-005.html">word-boundary-005.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-005.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-005.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-006.html" title="css/css-text/word-boundary/word-boundary-006.html">word-boundary-006.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-006.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-006.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-007.html" title="css/css-text/word-boundary/word-boundary-007.html">word-boundary-007.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-007.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-007.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-008.html" title="css/css-text/word-boundary/word-boundary-008.html">word-boundary-008.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-008.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-008.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-009.html" title="css/css-text/word-boundary/word-boundary-009.html">word-boundary-009.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-009.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-009.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-014.html" title="css/css-text/word-boundary/word-boundary-014.html">word-boundary-014.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-014.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-014.html"><small>(source)</small></a> - <li class="wpt-test"><span class="wpt-name">word-boundary-015-manual.html (manual test) </span><a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-015-manual.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <dt><dfn class="dfn-paneled css" data-dfn-for="word-boundary-expansion" data-dfn-type="value" data-export id="valdef-word-boundary-expansion-ideographic-space">ideographic-space</dfn> <dd> Instances of U+200B ZERO WIDTH SPACE - within the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#text-run" id="ref-for-text-run②">text run</a> children of this element + within the <a data-link-type="dfn">text run</a> children of this element are replaced by U+3000 IDEOGRAPHIC SPACE. <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-001.html" title="css/css-text/word-boundary/word-boundary-001.html">word-boundary-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-001.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-003.html" title="css/css-text/word-boundary/word-boundary-003.html">word-boundary-003.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-003.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-003.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-010.html" title="css/css-text/word-boundary/word-boundary-010.html">word-boundary-010.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-010.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-010.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-011.html" title="css/css-text/word-boundary/word-boundary-011.html">word-boundary-011.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-011.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-011.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-012.html" title="css/css-text/word-boundary/word-boundary-012.html">word-boundary-012.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-012.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-012.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-013.html" title="css/css-text/word-boundary/word-boundary-013.html">word-boundary-013.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-013.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-013.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> </dl> <p>The user agent must not replace @@ -1754,33 +1625,14 @@ <h4 class="heading settled" data-level="2.2.2" id="word-boundary-expansion"><spa and associated <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin">margin</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border" id="ref-for-propdef-border">border</a>/<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-padding" id="ref-for-propdef-padding">padding</a>).</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-010.html" title="css/css-text/word-boundary/word-boundary-010.html">word-boundary-010.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-010.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-010.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-011.html" title="css/css-text/word-boundary/word-boundary-011.html">word-boundary-011.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-011.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-011.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-012.html" title="css/css-text/word-boundary/word-boundary-012.html">word-boundary-012.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-012.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-012.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>Instances of <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-wbr-element" id="ref-for-the-wbr-element③">wbr</a></code> are considered equivalent to U+200B, and are also replaced, as are <a data-link-type="dfn" href="#virtual-word-boundary" id="ref-for-virtual-word-boundary①④">virtual word boundaries</a> inserted by <a class="property css" data-link-type="property" href="#propdef-word-boundary-detection" id="ref-for-propdef-word-boundary-detection④">word-boundary-detection</a>.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-001.html" title="css/css-text/word-boundary/word-boundary-001.html">word-boundary-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-001.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-002.html" title="css/css-text/word-boundary/word-boundary-002.html">word-boundary-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-002.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-003.html" title="css/css-text/word-boundary/word-boundary-003.html">word-boundary-003.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-003.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-003.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-004.html" title="css/css-text/word-boundary/word-boundary-004.html">word-boundary-004.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-004.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-004.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-006.html" title="css/css-text/word-boundary/word-boundary-006.html">word-boundary-006.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-006.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-006.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-007.html" title="css/css-text/word-boundary/word-boundary-007.html">word-boundary-007.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-007.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-007.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-008.html" title="css/css-text/word-boundary/word-boundary-008.html">word-boundary-008.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-008.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-008.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-009.html" title="css/css-text/word-boundary/word-boundary-009.html">word-boundary-009.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-009.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-009.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-010.html" title="css/css-text/word-boundary/word-boundary-010.html">word-boundary-010.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-010.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-010.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-011.html" title="css/css-text/word-boundary/word-boundary-011.html">word-boundary-011.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-011.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-011.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-012.html" title="css/css-text/word-boundary/word-boundary-012.html">word-boundary-012.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-012.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-012.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-013.html" title="css/css-text/word-boundary/word-boundary-013.html">word-boundary-013.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-013.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-013.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-014.html" title="css/css-text/word-boundary/word-boundary-014.html">word-boundary-014.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-014.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-014.html"><small>(source)</small></a> - <li class="wpt-test"><span class="wpt-name">word-boundary-015-manual.html (manual test) </span><a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-015-manual.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>Unlike <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-transform" id="ref-for-propdef-text-transform①">text-transform</a>, this substitution happens before <a href="https://drafts.csswg.org/css-text-3/#white-space-phase-1"><cite>CSS Text 3</cite> § 4.1.1 Phase I: Collapsing and Transformation</a> so that later operations that depend on the characters in the content @@ -1788,20 +1640,14 @@ <h4 class="heading settled" data-level="2.2.2" id="word-boundary-expansion"><spa use that character instead of the original U+200B.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-007.html" title="css/css-text/word-boundary/word-boundary-007.html">word-boundary-007.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-007.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-007.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-008.html" title="css/css-text/word-boundary/word-boundary-008.html">word-boundary-008.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-008.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-008.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-009.html" title="css/css-text/word-boundary/word-boundary-009.html">word-boundary-009.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-009.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-009.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <p>Like <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-transform" id="ref-for-propdef-text-transform②">text-transform</a>, this property transforms text for styling purposes. It has no effect on the underlying content, and must not affect the content of a plain text copy &amp; paste operation.</p> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><span class="wpt-name">word-boundary-015-manual.html (manual test) </span><a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-015-manual.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <div class="note" role="note"> Note: The effects of this property are similar @@ -1850,10 +1696,7 @@ <h4 class="heading settled" data-level="2.2.2" id="word-boundary-expansion"><spa </div> <details class="wpt-tests-block" dir="ltr" lang="en"> <summary>Tests</summary> - <ul class="wpt-tests-list"> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-013.html" title="css/css-text/word-boundary/word-boundary-013.html">word-boundary-013.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-013.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-013.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-text/word-boundary/word-boundary-014.html" title="css/css-text/word-boundary/word-boundary-014.html">word-boundary-014.html</a> <a class="wpt-live" href="http://wpt.live/css/css-text/word-boundary/word-boundary-014.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-text/word-boundary/word-boundary-014.html"><small>(source)</small></a> - </ul> + <ul class="wpt-tests-list"></ul> </details> <div class="example" id="classes"> <a class="self-link" href="#classes"></a> @@ -3651,7 +3494,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="083ffe5f">inline box</span> <li><span class="dfn-paneled" id="b8f126f1">inline formatting context</span> <li><span class="dfn-paneled" id="d7fa3e1c">inline-level</span> - <li><span class="dfn-paneled" id="1fe2f7e1">text run</span> </ul> <li> <a data-link-type="biblio">[CSS-FONTS-4]</a> defines the following terms: @@ -3754,7 +3596,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] @@ -3762,9 +3604,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -3786,18 +3628,18 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> <dt id="biblio-uax11">[UAX11] - <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-40.html"><cite>East Asian Width</cite></a>. 16 August 2022. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-40.html">https://www.unicode.org/reports/tr11/tr11-40.html</a> + <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-41.html"><cite>East Asian Width</cite></a>. 17 July 2023. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-41.html">https://www.unicode.org/reports/tr11/tr11-41.html</a> <dt id="biblio-uax14">[UAX14] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr14/tr14-49.html"><cite>Unicode Line Breaking Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #14. URL: <a href="https://www.unicode.org/reports/tr14/tr14-49.html">https://www.unicode.org/reports/tr14/tr14-49.html</a> + <dd>Robin Leroy. <a href="https://www.unicode.org/reports/tr14/tr14-51.html"><cite>Unicode Line Breaking Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #14. URL: <a href="https://www.unicode.org/reports/tr14/tr14-51.html">https://www.unicode.org/reports/tr14/tr14-51.html</a> <dt id="biblio-uax24">[UAX24] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-34.html"><cite>Unicode Script Property</cite></a>. 25 August 2022. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-34.html">https://www.unicode.org/reports/tr24/tr24-34.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-36.html"><cite>Unicode Script Property</cite></a>. 14 August 2023. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-36.html">https://www.unicode.org/reports/tr24/tr24-36.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-bcp47">[BCP47] <dd>A. Phillips, Ed.; M. Davis, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc5646"><cite>Tags for Identifying Languages</cite></a>. September 2009. Best Current Practice. URL: <a href="https://www.rfc-editor.org/rfc/rfc5646">https://www.rfc-editor.org/rfc/rfc5646</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-jlreq">[JLREQ] @@ -4146,6 +3988,38 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="text-wrap"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-wrap" title="The text-wrap CSS property controls how text inside an element is wrapped. The different values provide:">text-wrap</a></p> + <p class="less-than-two-engines-text">In no current engines.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="white-space-collapsing"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/white-space-collapse" title="The white-space-collapse CSS property controls how white space inside an element is collapsed.">white-space-collapse</a></p> + <p class="less-than-two-engines-text">In no current engines.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -4355,7 +4229,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "16d32090": {"dfnID":"16d32090","dfnText":"line-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-break"},{"id":"ref-for-propdef-line-break\u2460"}],"title":"2.2.1. \nDetecting Word Boundaries: the word-boundary-detection property"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-line-break"}, "18222566": {"dfnID":"18222566","dfnText":"<length-percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-length-percentage"},{"id":"ref-for-typedef-length-percentage\u2460"}],"title":"8.2. \nHyphenation Size Limit: the hyphenate-limit-zone property"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "191ef9a1": {"dfnID":"191ef9a1","dfnText":"pre-wrap","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-white-space-pre-wrap"}],"title":"7. \nShorthand for White Space and Wrapping: the white-space property"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-pre-wrap"}, -"1fe2f7e1": {"dfnID":"1fe2f7e1","dfnText":"text run","external":true,"refSections":[{"refs":[{"id":"ref-for-text-run"}],"title":"2.2.1. \nDetecting Word Boundaries: the word-boundary-detection property"},{"refs":[{"id":"ref-for-text-run\u2460"},{"id":"ref-for-text-run\u2461"}],"title":"2.2.2. \nMakig Word Boundaries Visible: the word-boundary-expansion property"}],"url":"https://drafts.csswg.org/css-display-4/#text-run"}, "222f0f3c": {"dfnID":"222f0f3c","dfnText":":lang()","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-lang"}],"title":"2.2.1. \nDetecting Word Boundaries: the word-boundary-detection property"}],"url":"https://drafts.csswg.org/css2/#selectordef-lang"}, "22bdf867": {"dfnID":"22bdf867","dfnText":"word-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-word-break"},{"id":"ref-for-propdef-word-break\u2460"},{"id":"ref-for-propdef-word-break\u2461"}],"title":"2.2.1. \nDetecting Word Boundaries: the word-boundary-detection property"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-word-break"}, "237b3136": {"dfnID":"237b3136","dfnText":"typographic character unit","external":true,"refSections":[{"refs":[{"id":"ref-for-typographic-character-unit"},{"id":"ref-for-typographic-character-unit\u2460"},{"id":"ref-for-typographic-character-unit\u2461"},{"id":"ref-for-typographic-character-unit\u2462"},{"id":"ref-for-typographic-character-unit\u2463"},{"id":"ref-for-typographic-character-unit\u2464"},{"id":"ref-for-typographic-character-unit\u2465"},{"id":"ref-for-typographic-character-unit\u2466"}],"title":"2.2.1. \nDetecting Word Boundaries: the word-boundary-detection property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2467"},{"id":"ref-for-typographic-character-unit\u2468"}],"title":"8.1. \nHyphens: the hyphenate-character property"}],"url":"https://drafts.csswg.org/css-text-4/#typographic-character-unit"}, @@ -5043,7 +4916,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-4/#inline-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline box","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#inline-box"}, "https://drafts.csswg.org/css-display-4/#inline-formatting-context": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline formatting context","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#inline-formatting-context"}, "https://drafts.csswg.org/css-display-4/#inline-level": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline-level","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#inline-level"}, -"https://drafts.csswg.org/css-display-4/#text-run": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"text run","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#text-run"}, "https://drafts.csswg.org/css-flexbox-1/#flex-item": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex item","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "https://drafts.csswg.org/css-flexbox-1/#flex-line": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"flex line","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#flex-line"}, "https://drafts.csswg.org/css-flexbox-1/#multi-line-flex-container": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-flexbox","spec":"css-flexbox-1","status":"current","text":"multi-line flex container","type":"dfn","url":"https://drafts.csswg.org/css-flexbox-1/#multi-line-flex-container"}, @@ -5295,118 +5167,4 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content hideAllRefHints(); }); } -</script> -<script>/* Boilerplate: script-wpt */ -"use strict"; -{ -let wptData = { -"paths": ["/css/css-text/"], -}; - -document.addEventListener("DOMContentLoaded", async ()=>{ - if(wptData.paths.length == 0) return; - - const runsUrl = "https://wpt.fyi/api/runs?label=master&label=stable&max-count=1&product=chrome&product=firefox&product=safari&product=edge"; - const runs = await (await fetch(runsUrl)).json(); - - let testResults = []; - for(const pathPrefix of wptData.paths) { - const pathResults = await (await fetch("https://wpt.fyi/api/search", { - method:"POST", - headers:{ - "Content-Type":"application/json", - }, - body: JSON.stringify({ - "run_ids": runs.map(x=>x.id), - "query": {"path": pathPrefix}, - }) - })).json(); - testResults = testResults.concat(pathResults.results); - } - - const browsers = runs.map(x=>({name:x.browser_name, version:x.browser_version, passes:0, total: 0})); - const resultsFromPath = new Map(testResults.map(result=>{ - const testPath = result.test; - const passes = result.legacy_status.map(x=>[x.passes, x.total]); - return [testPath, passes]; - })); - const seenTests = new Set(); - document.querySelectorAll(".wpt-name").forEach(nameEl=>{ - const passData = resultsFromPath.get("/" + nameEl.getAttribute("title")); - if(!passData) { - console.log("Couldn't find test in results:", nameEl); - return - } - const numTests = passData[0][1]; - if(numTests > 1) { - nameEl.insertAdjacentElement("beforeend", - mk.small({}, ` (${numTests} tests)`)); - } - if(passData == undefined) return; - const resultsEl = mk.span({"class":"wpt-results"}, - ...passData.map((p,i) => mk.span( - { - "title": `${browsers[i].name} ${p[0]}/${p[1]}`, - "class": "wpt-result", - "style": `background: conic-gradient(forestgreen ${p[0]/p[1]*360}deg, darkred 0deg);`, - })), - ); - nameEl.insertAdjacentElement("afterend", resultsEl); - - // Only update the summary pass/total count if we haven't seen this - // test before, to support authors listing the same test multiple times - // in a spec. - if (!seenTests.has(nameEl.getAttribute("title"))) { - seenTests.add(nameEl.getAttribute("title")); - passData.forEach((p,i) => { - browsers[i].passes += p[0]; - browsers[i].total += p[1]; - }); - } - }); - const overview = document.querySelector(".wpt-overview"); - if(overview) { - overview.appendChild(mk.ul({}, ...browsers.map(formatWptResult))); - document.head.appendChild(mk.style({}, - `.wpt-overview ul { display: flex; flex-flow: row wrap; gap: .2em; justify-content: start; list-style: none; padding: 0; margin: 0;} - .wpt-overview li { padding: .25em 1em; color: black; text-align: center; } - .wpt-overview img { height: 1.5em; height: max(1.5em, 32px); background: transparent; } - .wpt-overview .browser { font-weight: bold; } - .wpt-overview .passes-none { background: #e57373; } - .wpt-overview .passes-hardly { background: #ffb74d; } - .wpt-overview .passes-a-few { background: #ffd54f; } - .wpt-overview .passes-half { background: #fff176; } - .wpt-overview .passes-lots { background: #dce775; } - .wpt-overview .passes-most { background: #aed581; } - .wpt-overview .passes-all { background: #81c784; }`)); - } -}); - -function formatWptResult({name, version, passes, total}) { - const passRate = passes/total; - let passClass = ""; - if(passRate == 0) passClass = "passes-none"; - else if(passRate < .2) passClass = "passes-hardly"; - else if(passRate < .4) passClass = "passes-a-few"; - else if(passRate < .6) passClass = "passes-half"; - else if(passRate < .8) passClass = "passes-lots"; - else if(passRate < 1) passClass = "passes-most"; - else passClass = "passes-all"; - - name = name[0].toUpperCase() + name.slice(1); - const shortVersion = /^\d+/.exec(version); - const icon = [] - - if(name == "Chrome") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/chrome_64x64.png"})); - if(name == "Edge") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/edge_64x64.png"})); - if(name == "Safari") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/safari_64x64.png"})); - if(name == "Firefox") icon.push(mk.img({alt:"", src:"https://wpt.fyi/static/firefox_64x64.png"})); - - return mk.li({"class":passClass}, - mk.nobr({'class':'browser'}, ...icon, ` ${name} ${shortVersion}`), - mk.br(), - mk.nobr({'class':'pass-rate'}, `${passes}/${total}`) - ); -} -} </script> \ No newline at end of file diff --git a/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.console.txt index f8494754d2..50c1da0448 100644 --- a/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.console.txt @@ -1,5 +1,5 @@ FATAL ERROR: Not all required metadata was provided: - Missing a 'Implementation Report' entry. + Missing 'Implementation Report' LINE 124: Image doesn't exist, so I couldn't determine its width and height: 'images/decoration-skip-ink.png' LINE 154: Image doesn't exist, so I couldn't determine its width and height: 'images/skip-ink-wisp.png' LINE 214: Image doesn't exist, so I couldn't determine its width and height: 'images/underline-example.png' @@ -15,12 +15,24 @@ LINE 521: Image doesn't exist, so I couldn't determine its width and height: 'im WARNING: Use <i> Autolinks is deprecated and will be removed. Please switch to using <a> elements. LINE 97: No 'dfn' refs found for '…summary of comment…'. <i bs-line-number="97" data-link-type="dfn" data-lt="…summary of comment…">…summary of comment…</i> -LINE 654: No 'dfn' refs found for 'general category'. +LINE 654: No 'dfn' refs found for 'general category' that are marked for export. <a bs-line-number="654" data-link-type="dfn" data-lt="general category">general category</a> LINE ~699: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' +LINE ~857: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:box-shadow +spec:css-backgrounds-3; type:property; text:box-shadow +'box-shadow' LINE ~857: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' +LINE ~883: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:box-shadow +spec:css-backgrounds-3; type:property; text:box-shadow +'box-shadow' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 72: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="72" data-dfn-type="dfn" id="letter" data-lt="letter" data-noexport="by-default" class="dfn-paneled"><a bs-line-number="72" href="https://www.w3.org/TR/css-text-3/#letter">letter</a></dfn> diff --git a/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.html b/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.html index 84199afc25..6ac9e7d9e1 100644 --- a/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-text-decor-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Text Decoration Module Level 3</title> <meta content="CR" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-CR" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-text-decor-3/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -598,7 +597,7 @@ <h1 class="p-name no-ref" id="title">CSS Text Decoration Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -615,12 +614,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> <p> This document was published - by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Candidate Recommendation Snapshot</strong> using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. Publication as a Candidate Recommendation does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. - A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/2021/Process-20211102/#dfn-wide-review">wide review</a>, - is intended to gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. + A Candidate Recommendation Snapshot has received <a href="https://www.w3.org/policies/process/20231103/#dfn-wide-review">wide review</a>, + is intended to gather implementation experience, and has commitments from Working Group members to <a href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. This document is intended to become a W3C Recommendation; it will remain a Candidate Recommendation at least until <time class="status-deadline" datetime="2019-08-31">31 August 2019</time> to gather additional feedback. </p> <p>Please send feedback @@ -629,12 +628,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-text-decor] <i data-lt="…summary of comment…">…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-text-decor%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -960,7 +959,7 @@ <h3 class="heading settled" data-level="2.3" id="text-decoration-color-property" <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-text-decoration-color">text-decoration-color</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color">&lt;color></a> + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color">&lt;color></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>currentcolor @@ -1381,7 +1380,7 @@ <h3 class="heading settled" data-level="3.2" id="text-emphasis-color-property">< <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-text-emphasis-color">text-emphasis-color</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>currentcolor @@ -1558,7 +1557,7 @@ <h2 class="heading settled" data-level="4" id="text-shadow-property"><span class <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-text-shadow">text-shadow</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod">none <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one①⑥">|</a> [ <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color②">&lt;color></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt①">?</a> <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-all" id="ref-for-comb-all①">&amp;&amp;</a> <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value">&lt;length></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-num-range" id="ref-for-mult-num-range">{2,3}</a> ]<a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-comma" id="ref-for-mult-comma">#</a> + <td class="prod">none <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one①⑥">|</a> [ <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color②">&lt;color></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-opt" id="ref-for-mult-opt①">?</a> <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-all" id="ref-for-comb-all①">&amp;&amp;</a> <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#length-value" id="ref-for-length-value">&lt;length></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-num-range" id="ref-for-mult-num-range">{2,3}</a> ]<a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-comma" id="ref-for-mult-comma">#</a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>none @@ -1589,8 +1588,8 @@ <h2 class="heading settled" data-level="4" id="text-shadow-property"><span class </table> <p>This property accepts a comma-separated list of shadow effects to be applied to the text of the element. - Values are interpreted as for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow">box-shadow</a> <a data-link-type="biblio" href="#biblio-css-backgrounds-3" title="CSS Backgrounds and Borders Module Level 3">[CSS-BACKGROUNDS-3]</a>. - (But note that spread values and the <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-backgrounds-3/#shadow-inset" id="ref-for-shadow-inset">inset</a> keyword are not allowed.) + Values are interpreted as for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow" id="ref-for-propdef-box-shadow">box-shadow</a> <a data-link-type="biblio" href="#biblio-css-backgrounds-3" title="CSS Backgrounds and Borders Module Level 3">[CSS-BACKGROUNDS-3]</a>. + (But note that spread values and the <span class="css">inset</span> keyword are not allowed.) Each layer shadows the element’s text and all its text decorations (composited together). If the color of the shadow is not specified, @@ -1611,7 +1610,7 @@ <h2 class="heading settled" data-level="4" id="text-shadow-property"><span class It is undefined whether a given shadow layer shadows each glyph or decoration independently or if the text and/or decorations are flattened and then shadowed.</p> - <p>Unlike <a class="property css" data-link-type="property" href="https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow①">box-shadow</a>, text shadows are not clipped to the shadowed shape + <p>Unlike <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow" id="ref-for-propdef-box-shadow①">box-shadow</a>, text shadows are not clipped to the shadowed shape and may show through if the text is partially-transparent. Like <span class="property" id="ref-for-propdef-box-shadow②">box-shadow</span>, text shadows do not influence layout, and do not trigger scrolling @@ -1951,10 +1950,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="c48eaa20">box-shadow</span> - <li><span class="dfn-paneled" id="dd273458">inset</span> <li><span class="dfn-paneled" id="429d8615">none</span> </ul> + <li> + <a data-link-type="biblio">[CSS-BORDERS-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="b3527d2b">box-shadow</span> + </ul> <li> <a data-link-type="biblio">[CSS-BREAK-3]</a> defines the following terms: <ul> @@ -1963,9 +1965,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="329ecc08">&lt;color></span> <li><span class="dfn-paneled" id="a42c65ac">currentcolor</span> </ul> + <li> + <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="d04b6986">&lt;color></span> + </ul> <li> <a data-link-type="biblio">[CSS-DISPLAY-3]</a> defines the following terms: <ul> @@ -2052,33 +2058,37 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 26 July 2021. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 11 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> + <dt id="biblio-css-borders-4">[CSS-BORDERS-4] + <dd><a href="https://drafts.csswg.org/css-borders-4/"><cite>CSS Borders and Box Decorations Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-borders-4/">https://drafts.csswg.org/css-borders-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://www.w3.org/TR/css-break-3/"><cite>CSS Fragmentation Module Level 3</cite></a>. 4 December 2018. CR. URL: <a href="https://www.w3.org/TR/css-break-3/">https://www.w3.org/TR/css-break-3/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 1 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 13 February 2024. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dt id="biblio-css-color-5">[CSS-COLOR-5] + <dd>Chris Lilley; et al. <a href="https://www.w3.org/TR/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. 29 February 2024. WD. URL: <a href="https://www.w3.org/TR/css-color-5/">https://www.w3.org/TR/css-color-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 18 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 30 March 2023. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://www.w3.org/TR/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. 20 September 2018. REC. URL: <a href="https://www.w3.org/TR/css-fonts-3/">https://www.w3.org/TR/css-fonts-3/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://www.w3.org/TR/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. 21 December 2021. WD. URL: <a href="https://www.w3.org/TR/css-fonts-4/">https://www.w3.org/TR/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://www.w3.org/TR/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. 1 February 2024. WD. URL: <a href="https://www.w3.org/TR/css-fonts-4/">https://www.w3.org/TR/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://www.w3.org/TR/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. 14 November 2022. WD. URL: <a href="https://www.w3.org/TR/css-inline-3/">https://www.w3.org/TR/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. 12 August 2024. WD. URL: <a href="https://www.w3.org/TR/css-inline-3/">https://www.w3.org/TR/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] - <dd>Elika Etemad; Florian Rivoal. <a href="https://www.w3.org/TR/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. 31 December 2022. WD. URL: <a href="https://www.w3.org/TR/css-overflow-3/">https://www.w3.org/TR/css-overflow-3/</a> + <dd>Elika Etemad; Florian Rivoal. <a href="https://www.w3.org/TR/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. 29 March 2023. WD. URL: <a href="https://www.w3.org/TR/css-overflow-3/">https://www.w3.org/TR/css-overflow-3/</a> <dt id="biblio-css-ruby-1">[CSS-RUBY-1] <dd>Elika Etemad; et al. <a href="https://www.w3.org/TR/css-ruby-1/"><cite>CSS Ruby Annotation Layout Module Level 1</cite></a>. 31 December 2022. WD. URL: <a href="https://www.w3.org/TR/css-ruby-1/">https://www.w3.org/TR/css-ruby-1/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] - <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://www.w3.org/TR/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. 27 January 2023. CR. URL: <a href="https://www.w3.org/TR/css-text-3/">https://www.w3.org/TR/css-text-3/</a> + <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://www.w3.org/TR/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. 3 September 2023. CR. URL: <a href="https://www.w3.org/TR/css-text-3/">https://www.w3.org/TR/css-text-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] - <dd>Elika Etemad; et al. <a href="https://www.w3.org/TR/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. 31 December 2022. WD. URL: <a href="https://www.w3.org/TR/css-text-4/">https://www.w3.org/TR/css-text-4/</a> + <dd>Elika Etemad; et al. <a href="https://www.w3.org/TR/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. 29 May 2024. WD. URL: <a href="https://www.w3.org/TR/css-text-4/">https://www.w3.org/TR/css-text-4/</a> <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-text-decor-4/"><cite>CSS Text Decoration Module Level 4</cite></a>. 4 May 2022. WD. URL: <a href="https://www.w3.org/TR/css-text-decor-4/">https://www.w3.org/TR/css-text-decor-4/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 1 December 2022. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 22 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 19 October 2022. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 12 March 2024. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. 30 July 2019. CR. URL: <a href="https://www.w3.org/TR/css-writing-modes-4/">https://www.w3.org/TR/css-writing-modes-4/</a> <dt id="biblio-css2">[CSS2] @@ -2086,12 +2096,12 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-uax15">[UAX15] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr15/tr15-53.html"><cite>Unicode Normalization Forms</cite></a>. 17 August 2022. Unicode Standard Annex #15. URL: <a href="https://www.unicode.org/reports/tr15/tr15-53.html">https://www.unicode.org/reports/tr15/tr15-53.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr15/tr15-54.html"><cite>Unicode Normalization Forms</cite></a>. 12 August 2023. Unicode Standard Annex #15. URL: <a href="https://www.unicode.org/reports/tr15/tr15-54.html">https://www.unicode.org/reports/tr15/tr15-54.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://www.w3.org/TR/css-animations-1/"><cite>CSS Animations Level 1</cite></a>. 11 October 2018. WD. URL: <a href="https://www.w3.org/TR/css-animations-1/">https://www.w3.org/TR/css-animations-1/</a> + <dd>David Baron; et al. <a href="https://www.w3.org/TR/css-animations-1/"><cite>CSS Animations Level 1</cite></a>. 2 March 2023. WD. URL: <a href="https://www.w3.org/TR/css-animations-1/">https://www.w3.org/TR/css-animations-1/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> </dl> @@ -2432,7 +2442,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "2c391340": {"dfnID":"2c391340","dfnText":"wavy","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-decoration-style-wavy"}],"title":"2.2. \nText Decoration Style: the text-decoration-style property"}],"url":"https://www.w3.org/TR/css-text-decor-4/#valdef-text-decoration-style-wavy"}, "2ccfe434": {"dfnID":"2ccfe434","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://www.w3.org/TR/css-display-3/#propdef-display"}, "2d8be2d9": {"dfnID":"2d8be2d9","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"2.5. \nText Underline Position: the text-underline-position property"}],"url":"https://www.w3.org/TR/css-inline-3/#propdef-vertical-align"}, -"329ecc08": {"dfnID":"329ecc08","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2.3. \nText Decoration Color: the text-decoration-color property"},{"refs":[{"id":"ref-for-typedef-color\u2460"}],"title":"3.2. \nEmphasis Mark Color: the text-emphasis-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "354876d6": {"dfnID":"354876d6","dfnText":"font-variant-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variant-position"}],"title":"2.5. \nText Underline Position: the text-underline-position property"}],"url":"https://www.w3.org/TR/css-fonts-4/#propdef-font-variant-position"}, "37bb38a0": {"dfnID":"37bb38a0","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"\nChanges since the August 2013 Candidate Recommendation"}],"url":"https://www.w3.org/TR/css-writing-modes-4/#propdef-writing-mode"}, "3bafef5e": {"dfnID":"3bafef5e","dfnText":"{a,b}","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-num-range"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-num-range"}, @@ -2452,18 +2461,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "99d814d1": {"dfnID":"99d814d1","dfnText":"under","external":true,"refSections":[{"refs":[{"id":"ref-for-under"}],"title":"2.5. \nText Underline Position: the text-underline-position property"}],"url":"https://www.w3.org/TR/css-writing-modes-4/#under"}, "a0336d84": {"dfnID":"a0336d84","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"},{"id":"ref-for-comb-any\u2461"}],"title":"2.1. \nText Decoration Lines: the text-decoration-line property"},{"refs":[{"id":"ref-for-comb-any\u2462"},{"id":"ref-for-comb-any\u2463"}],"title":"2.4. \nText Decoration Shorthand: the text-decoration property"},{"refs":[{"id":"ref-for-comb-any\u2464"}],"title":"2.5. \nText Underline Position: the text-underline-position property"},{"refs":[{"id":"ref-for-comb-any\u2465"}],"title":"3.1. \nEmphasis Mark Style: the text-emphasis-style property"},{"refs":[{"id":"ref-for-comb-any\u2466"}],"title":"3.3. \nEmphasis Mark Shorthand: the text-emphasis property"}],"url":"https://www.w3.org/TR/css-values-4/#comb-any"}, "a42c65ac": {"dfnID":"a42c65ac","dfnText":"currentcolor","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-currentcolor"}],"title":"3.2. \nEmphasis Mark Color: the text-emphasis-color property"},{"refs":[{"id":"ref-for-valdef-color-currentcolor\u2460"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor"}, +"b3527d2b": {"dfnID":"b3527d2b","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"},{"id":"ref-for-propdef-box-shadow\u2460"},{"id":"ref-for-propdef-box-shadow\u2461"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-box-shadow"}, "b8cd3abf": {"dfnID":"b8cd3abf","dfnText":"del","external":true,"refSections":[{"refs":[{"id":"ref-for-the-del-element"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://html.spec.whatwg.org/multipage/edits.html#the-del-element"}, "bdb4e757": {"dfnID":"bdb4e757","dfnText":"&&","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-all"}],"title":"3.4. \nEmphasis Mark Position: the text-emphasis-position property"},{"refs":[{"id":"ref-for-comb-all\u2460"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-values-4/#comb-all"}, "be5da72e": {"dfnID":"be5da72e","dfnText":"ruby container","external":true,"refSections":[{"refs":[{"id":"ref-for-ruby-container"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://www.w3.org/TR/css-ruby-1/#ruby-container"}, "c297b070": {"dfnID":"c297b070","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-comma"}, -"c48eaa20": {"dfnID":"c48eaa20","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"},{"id":"ref-for-propdef-box-shadow\u2460"},{"id":"ref-for-propdef-box-shadow\u2461"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow"}, "c7eac2b9": {"dfnID":"c7eac2b9","dfnText":"inline formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-formatting-context"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://www.w3.org/TR/css-display-3/#inline-formatting-context"}, "character": {"dfnID":"character","dfnText":"character","external":false,"refSections":[{"refs":[{"id":"ref-for-character"},{"id":"ref-for-character\u2460"},{"id":"ref-for-character\u2461"}],"title":"3.1. \nEmphasis Mark Style: the text-emphasis-style property"}],"url":"#character"}, "content-language": {"dfnID":"content-language","dfnText":"content language","external":false,"refSections":[],"url":"#content-language"}, +"d04b6986": {"dfnID":"d04b6986","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2.3. \nText Decoration Color: the text-decoration-color property"},{"refs":[{"id":"ref-for-typedef-color\u2460"}],"title":"3.2. \nEmphasis Mark Color: the text-emphasis-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "d3ff9a69": {"dfnID":"d3ff9a69","dfnText":"visibility","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-visibility"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://www.w3.org/TR/css-display-3/#propdef-visibility"}, "d41bfa8c": {"dfnID":"d41bfa8c","dfnText":"inline box","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-box"},{"id":"ref-for-inline-box\u2460"},{"id":"ref-for-inline-box\u2461"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://www.w3.org/TR/css-display-3/#inline-box"}, "d4441b24": {"dfnID":"d4441b24","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"3.4. \nEmphasis Mark Position: the text-emphasis-position property"},{"refs":[{"id":"ref-for-mult-opt\u2460"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-opt"}, -"dd273458": {"dfnID":"dd273458","dfnText":"inset","external":true,"refSections":[{"refs":[{"id":"ref-for-shadow-inset"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#shadow-inset"}, "decorating-box": {"dfnID":"decorating-box","dfnText":"decorating box","external":false,"refSections":[{"refs":[{"id":"ref-for-decorating-box"},{"id":"ref-for-decorating-box\u2460"},{"id":"ref-for-decorating-box\u2461"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"},{"refs":[{"id":"ref-for-decorating-box\u2462"},{"id":"ref-for-decorating-box\u2463"},{"id":"ref-for-decorating-box\u2464"},{"id":"ref-for-decorating-box\u2465"}],"title":"2.5. \nText Underline Position: the text-underline-position property"}],"url":"#decorating-box"}, "e51c8aeb": {"dfnID":"e51c8aeb","dfnText":"vertical writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-vertical-writing-mode"}],"title":"2.1. \nText Decoration Lines: the text-decoration-line property"}],"url":"https://www.w3.org/TR/css-writing-modes-4/#vertical-writing-mode"}, "e8976716": {"dfnID":"e8976716","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"},{"id":"ref-for-in-flow\u2460"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://www.w3.org/TR/css-display-3/#in-flow"}, @@ -2894,7 +2903,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://www.w3.org/TR/css-color-4/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://www.w3.org/TR/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://www.w3.org/TR/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; @@ -2935,14 +2944,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#valdef-text-emphasis-style-none": {"export":true,"for_":["text-emphasis-style"],"level":"3","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-3","status":"local","text":"none","type":"value","url":"#valdef-text-emphasis-style-none"}, "#valdef-text-emphasis-style-sesame": {"export":true,"for_":["text-emphasis-style"],"level":"3","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-3","status":"local","text":"sesame","type":"value","url":"#valdef-text-emphasis-style-sesame"}, "#valdef-text-text-emphasis-open": {"export":true,"for_":["text-text-emphasis"],"level":"3","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-3","status":"local","text":"open","type":"value","url":"#valdef-text-text-emphasis-open"}, +"https://drafts.csswg.org/css-borders-4/#propdef-box-shadow": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"box-shadow","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-box-shadow"}, "https://html.spec.whatwg.org/multipage/edits.html#the-del-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"del","type":"element","url":"https://html.spec.whatwg.org/multipage/edits.html#the-del-element"}, "https://html.spec.whatwg.org/multipage/edits.html#the-ins-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"ins","type":"element","url":"https://html.spec.whatwg.org/multipage/edits.html#the-ins-element"}, "https://www.w3.org/TR/css-backgrounds-3/#box-shadow-none": {"export":true,"for_":["box-shadow"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"snapshot","text":"none","type":"value","url":"https://www.w3.org/TR/css-backgrounds-3/#box-shadow-none"}, -"https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"snapshot","text":"box-shadow","type":"property","url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow"}, -"https://www.w3.org/TR/css-backgrounds-3/#shadow-inset": {"export":true,"for_":["box-shadow"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"snapshot","text":"inset","type":"value","url":"https://www.w3.org/TR/css-backgrounds-3/#shadow-inset"}, "https://www.w3.org/TR/css-break-3/#fragment": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-break","spec":"css-break-3","status":"snapshot","text":"fragment","type":"dfn","url":"https://www.w3.org/TR/css-break-3/#fragment"}, -"https://www.w3.org/TR/css-color-4/#typedef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"currentcolor","type":"value","url":"https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor"}, +"https://www.w3.org/TR/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "https://www.w3.org/TR/css-display-3/#anonymous": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"snapshot","text":"anonymous","type":"dfn","url":"https://www.w3.org/TR/css-display-3/#anonymous"}, "https://www.w3.org/TR/css-display-3/#atomic-inline": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"snapshot","text":"atomic inline","type":"dfn","url":"https://www.w3.org/TR/css-display-3/#atomic-inline"}, "https://www.w3.org/TR/css-display-3/#block-container": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"snapshot","text":"block container","type":"dfn","url":"https://www.w3.org/TR/css-display-3/#block-container"}, diff --git a/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.console.txt index 050b128b97..b7e52c259f 100644 --- a/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.console.txt @@ -60,16 +60,36 @@ LINE ~247: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' LINE 396: No 'dfn' refs found for 'alphabetic'. <a bs-line-number="396" data-link-type="dfn" data-lt="alphabetic">alphabetic</a> -LINE 1328: No 'dfn' refs found for 'general category'. +LINE 1328: No 'dfn' refs found for 'general category' that are marked for export. <a bs-line-number="1328" data-link-type="dfn" data-lt="general category">general category</a> LINE ~1373: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE 1551: No 'dfn' refs found for 'general category'. +LINE 1551: No 'dfn' refs found for 'general category' that are marked for export. <a bs-line-number="1551" data-link-type="dfn" data-lt="general category">general category</a> +LINE ~1934: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE ~1934: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE ~1966: No 'dfn' refs found for 'spread distance' that are marked for export. -[=spread distance=] -LINE ~2134: No 'dfn' refs found for 'spread distance' that are marked for export. -[=spread distance=] +LINE ~1960: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE ~1966: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE ~1980: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE 2138: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.html b/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.html index d60d525e7c..8ba0ff2def 100644 --- a/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-text-decor-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Text Decoration Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-text-decor-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1074,7 +1073,7 @@ <h1 class="p-name no-ref" id="title">CSS Text Decoration Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1096,7 +1095,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-text-decor] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-text-decor%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1216,7 +1215,7 @@ <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno"> <p>This module replaces and extends the text-decorating features defined in <a data-link-type="biblio" href="#biblio-css-text-decor-3" title="CSS Text Decoration Module Level 3">[CSS-TEXT-DECOR-3]</a>.</p> <p>All of the properties in this module - can be applied to the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-line" id="ref-for-selectordef-first-line">::first-line</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-letter" id="ref-for-selectordef-first-letter">::first-letter</a> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element">pseudo-elements</a>.</p> + can be applied to the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-line" id="ref-for-selectordef-first-line">::first-line</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-letter" id="ref-for-selectordef-first-letter">::first-letter</a> <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x22" id="ref-for-x22">pseudo-elements</a>.</p> <h3 class="heading settled" data-level="1.2" id="values"><span class="secno">1.2. </span><span class="content"> Value Definitions</span><a class="self-link" href="#values"></a></h3> <p>This specification follows the <a href="https://www.w3.org/TR/CSS2/about.html#property-defs">CSS property definition conventions</a> from <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> using the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. Value types not defined in this specification are defined in CSS Values &amp; Units <span title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</span>. @@ -2843,7 +2842,7 @@ <h2 class="heading settled" data-level="4" id="text-shadow-property"><span class <p>This property accepts a comma-separated list of shadow effects to be applied to the text of the element. Values are interpreted as for <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow">box-shadow</a> <a data-link-type="biblio" href="#biblio-css-backgrounds-3" title="CSS Backgrounds and Borders Module Level 3">[CSS-BACKGROUNDS-3]</a>. - (But note that the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-backgrounds-3/#shadow-inset" id="ref-for-shadow-inset">inset</a> keyword are not allowed.) + (But note that the <span class="css">inset</span> keyword are not allowed.) Each layer shadows the element’s text and all its text decorations (composited together). If the color of the shadow is not specified, @@ -2870,7 +2869,7 @@ <h2 class="heading settled" data-level="4" id="text-shadow-property"><span class and do not trigger scrolling or increase the size of the <a data-link-type="dfn" href="https://drafts.csswg.org/css-overflow-3/#scrollable-overflow-region" id="ref-for-scrollable-overflow-region">scrollable overflow region</a>.</p> <p>Also unlike <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow③">box-shadow</a>, - the <a data-link-type="dfn">spread distance</a> is strictly interpreted as outset distance + the <a data-link-type="dfn" href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance" id="ref-for-box-shadow-spread-distance">spread distance</a> is strictly interpreted as outset distance from any point of the glyph outline, and therefore, similar to the blur radius, creates rounded, rather than sharp, corners.</p> @@ -2995,7 +2994,7 @@ <h3 class="no-num heading settled" id="additions-l3"><span class="content"> Addi <li>Added <a class="css" data-link-type="maybe" href="#valdef-text-underline-position-from-font" id="ref-for-valdef-text-underline-position-from-font④">from-font</a> value to <a class="property css" data-link-type="property" href="#propdef-text-underline-position" id="ref-for-propdef-text-underline-position①⑤">text-underline-position</a>. <li>Drafted <a class="property css" data-link-type="property" href="#propdef-text-decoration-skip" id="ref-for-propdef-text-decoration-skip⑨">text-decoration-skip</a> property and its longhands. <li>Drafted <a class="property css" data-link-type="property" href="#propdef-text-emphasis-skip" id="ref-for-propdef-text-emphasis-skip②">text-emphasis-skip</a> property. - <li>Added <a data-link-type="dfn">spread distance</a> value to <a class="property css" data-link-type="property" href="#propdef-text-shadow" id="ref-for-propdef-text-shadow④">text-shadow</a>. + <li>Added <a data-link-type="dfn" href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance" id="ref-for-box-shadow-spread-distance①">spread distance</a> value to <a class="property css" data-link-type="property" href="#propdef-text-shadow" id="ref-for-propdef-text-shadow④">text-shadow</a>. </ul> <h2 class="heading settled" data-level="6" id="priv-sec"><span class="secno">6. </span><span class="content">Privacy and Security Considerations</span><a class="self-link" href="#priv-sec"></a></h2> <p>This specification introduces no new privacy or security considerations.</p> @@ -3214,8 +3213,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="6916104d">box-shadow</span> - <li><span class="dfn-paneled" id="e1dab292">inset</span> <li><span class="dfn-paneled" id="c15300b0">none</span> + <li><span class="dfn-paneled" id="99d126af">spread distance</span> </ul> <li> <a data-link-type="biblio">[CSS-BREAK-3]</a> defines the following terms: @@ -3336,38 +3335,38 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a73617e0">writing mode</span> </ul> <li> - <a data-link-type="biblio">[FILL-STROKE-3]</a> defines the following terms: + <a data-link-type="biblio">[CSS2]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="890a8358">fill</span> - <li><span class="dfn-paneled" id="de9e224f">stroke</span> + <li><span class="dfn-paneled" id="2161cf2b">pseudo-elements</span> </ul> <li> - <a data-link-type="biblio">[SELECTORS-4]</a> defines the following terms: + <a data-link-type="biblio">[FILL-STROKE-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="9bfc28f6">pseudo-element</span> + <li><span class="dfn-paneled" id="890a8358">fill</span> + <li><span class="dfn-paneled" id="de9e224f">stroke</span> </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-3">[CSS-FONTS-3] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -3394,16 +3393,14 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/fill-stroke/"><cite>CSS Fill and Stroke Module Level 3</cite></a>. URL: <a href="https://drafts.fxtf.org/fill-stroke/">https://drafts.fxtf.org/fill-stroke/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> - <dt id="biblio-selectors-4">[SELECTORS-4] - <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> <dt id="biblio-uax11">[UAX11] - <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-40.html"><cite>East Asian Width</cite></a>. 16 August 2022. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-40.html">https://www.unicode.org/reports/tr11/tr11-40.html</a> + <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-41.html"><cite>East Asian Width</cite></a>. 17 July 2023. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-41.html">https://www.unicode.org/reports/tr11/tr11-41.html</a> <dt id="biblio-uax15">[UAX15] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr15/tr15-53.html"><cite>Unicode Normalization Forms</cite></a>. 17 August 2022. Unicode Standard Annex #15. URL: <a href="https://www.unicode.org/reports/tr15/tr15-53.html">https://www.unicode.org/reports/tr15/tr15-53.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr15/tr15-54.html"><cite>Unicode Normalization Forms</cite></a>. 12 August 2023. Unicode Standard Annex #15. URL: <a href="https://www.unicode.org/reports/tr15/tr15-54.html">https://www.unicode.org/reports/tr15/tr15-54.html</a> <dt id="biblio-uax24">[UAX24] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-34.html"><cite>Unicode Script Property</cite></a>. 25 August 2022. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-34.html">https://www.unicode.org/reports/tr24/tr24-34.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-36.html"><cite>Unicode Script Property</cite></a>. 14 August 2023. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-36.html">https://www.unicode.org/reports/tr24/tr24-36.html</a> <dt id="biblio-uax44">[UAX44] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr44/tr44-30.html"><cite>Unicode Character Database</cite></a>. 2 September 2022. Unicode Standard Annex #44. URL: <a href="https://www.unicode.org/reports/tr44/tr44-30.html">https://www.unicode.org/reports/tr44/tr44-30.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr44/tr44-32.html"><cite>Unicode Character Database</cite></a>. 6 September 2023. Unicode Standard Annex #44. URL: <a href="https://www.unicode.org/reports/tr44/tr44-32.html">https://www.unicode.org/reports/tr44/tr44-32.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> @@ -3412,7 +3409,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-text-decor-3">[CSS-TEXT-DECOR-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-3/">https://drafts.csswg.org/css-text-decor-3/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -3688,7 +3685,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>46+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>46+</span></span> </div> </div> </details> @@ -3720,7 +3717,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>15.0+</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>63+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3736,7 +3733,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3947,6 +3944,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1548047a": {"dfnID":"1548047a","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2.3. \nText Decoration Color: the text-decoration-color property"},{"refs":[{"id":"ref-for-typedef-color\u2460"}],"title":"3.2. \nEmphasis Mark Color: the text-emphasis-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "15f5b381": {"dfnID":"15f5b381","dfnText":"<percentage>","external":true,"refSections":[{"refs":[{"id":"ref-for-percentage-value"},{"id":"ref-for-percentage-value\u2460"}],"title":"2.4. \nText Decoration Line Thickness: the text-decoration-thickness property"},{"refs":[{"id":"ref-for-percentage-value\u2461"},{"id":"ref-for-percentage-value\u2462"}],"title":"2.8. \nText Underline Offset: the text-underline-offset property"},{"refs":[{"id":"ref-for-percentage-value\u2463"}],"title":"\nChanges since the 13 March 2018 Working Draft"}],"url":"https://drafts.csswg.org/css-values-4/#percentage-value"}, "16b27b2a": {"dfnID":"16b27b2a","dfnText":"typographic letter unit","external":true,"refSections":[{"refs":[{"id":"ref-for-typographic-letter-unit"}],"title":"1.3. Terminology"}],"url":"https://drafts.csswg.org/css-text-4/#typographic-letter-unit"}, +"2161cf2b": {"dfnID":"2161cf2b","dfnText":"pseudo-elements","external":true,"refSections":[{"refs":[{"id":"ref-for-x22"}],"title":"1.1. \nModule Interactions"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, "237b3136": {"dfnID":"237b3136","dfnText":"typographic character unit","external":true,"refSections":[{"refs":[{"id":"ref-for-typographic-character-unit"}],"title":"1.3. Terminology"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460"}],"title":"2.10.4. \nSkipping Spaces: the text-decoration-skip-spaces property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2461"}],"title":"3.1. \nEmphasis Mark Style: the text-emphasis-style property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2462"}],"title":"3.5. \nEmphasis Mark Skip: the text-emphasis-skip property"}],"url":"https://drafts.csswg.org/css-text-4/#typographic-character-unit"}, "33a598a0": {"dfnID":"33a598a0","dfnText":"letter","external":true,"refSections":[{"refs":[{"id":"ref-for-letter"}],"title":"1.3. Terminology"}],"url":"https://drafts.csswg.org/css-syntax-3/#letter"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, @@ -3968,9 +3966,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9729fd44": {"dfnID":"9729fd44","dfnText":"fragment","external":true,"refSections":[{"refs":[{"id":"ref-for-fragment"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://drafts.csswg.org/css-break-3/#fragment"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"},{"id":"ref-for-string-value\u2460"}],"title":"3.1. \nEmphasis Mark Style: the text-emphasis-style property"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "99cabd32": {"dfnID":"99cabd32","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"},{"id":"ref-for-in-flow\u2460"},{"id":"ref-for-in-flow\u2461"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://drafts.csswg.org/css-display-4/#in-flow"}, +"99d126af": {"dfnID":"99d126af","dfnText":"spread distance","external":true,"refSections":[{"refs":[{"id":"ref-for-box-shadow-spread-distance"}],"title":"4. \nText Shadows: the text-shadow property"},{"refs":[{"id":"ref-for-box-shadow-spread-distance\u2460"}],"title":"\nAdditions Since Level 3"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance"}, "9a7f6195": {"dfnID":"9a7f6195","dfnText":"ruby base","external":true,"refSections":[{"refs":[{"id":"ref-for-ruby-base-box"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://drafts.csswg.org/css-ruby-1/#ruby-base-box"}, "9aae076b": {"dfnID":"9aae076b","dfnText":"baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-alignment-baseline-baseline"}],"title":"2.5. \nDetermining the Position and Thickness of Line Decorations"},{"refs":[{"id":"ref-for-valdef-alignment-baseline-baseline\u2460"}],"title":"2.9. \nText Decoration Line Uniformity"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-alignment-baseline-baseline"}, -"9bfc28f6": {"dfnID":"9bfc28f6","dfnText":"pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-element"}],"title":"1.1. \nModule Interactions"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "9e066e76": {"dfnID":"9e066e76","dfnText":"longhand","external":true,"refSections":[{"refs":[{"id":"ref-for-longhand"},{"id":"ref-for-longhand\u2460"},{"id":"ref-for-longhand\u2461"}],"title":"2.1. \nText Decoration Lines: the text-decoration-line property"},{"refs":[{"id":"ref-for-longhand\u2462"}],"title":"2.2. \nText Decoration Style: the text-decoration-style property"},{"refs":[{"id":"ref-for-longhand\u2463"}],"title":"2.3. \nText Decoration Color: the text-decoration-color property"},{"refs":[{"id":"ref-for-longhand\u2464"}],"title":"2.4. \nText Decoration Line Thickness: the text-decoration-thickness property"},{"refs":[{"id":"ref-for-longhand\u2465"}],"title":"2.7. \nText Underline Position: the text-underline-position property"},{"refs":[{"id":"ref-for-longhand\u2466"}],"title":"2.8. \nText Underline Offset: the text-underline-offset property"}],"url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "9f3d4f17": {"dfnID":"9f3d4f17","dfnText":"block container","external":true,"refSections":[{"refs":[{"id":"ref-for-block-container"},{"id":"ref-for-block-container\u2460"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://drafts.csswg.org/css-display-4/#block-container"}, "a00822b3": {"dfnID":"a00822b3","dfnText":"anonymous","external":true,"refSections":[{"refs":[{"id":"ref-for-anonymous"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://drafts.csswg.org/css-display-4/#anonymous"}, @@ -3995,7 +3993,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "de9e224f": {"dfnID":"de9e224f","dfnText":"stroke","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-stroke"}],"title":"2.1. \nText Decoration Lines: the text-decoration-line property"}],"url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke"}, "decorating-box": {"dfnID":"decorating-box","dfnText":"decorating box","external":false,"refSections":[{"refs":[{"id":"ref-for-decorating-box"},{"id":"ref-for-decorating-box\u2460"},{"id":"ref-for-decorating-box\u2461"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"},{"refs":[{"id":"ref-for-decorating-box\u2462"},{"id":"ref-for-decorating-box\u2463"},{"id":"ref-for-decorating-box\u2464"},{"id":"ref-for-decorating-box\u2465"}],"title":"2.5. \nDetermining the Position and Thickness of Line Decorations"},{"refs":[{"id":"ref-for-decorating-box\u2466"}],"title":"2.10. \nText Decoration Line Continuity: the text-decoration-skip shorthand and its sub-properties"},{"refs":[{"id":"ref-for-decorating-box\u2467"}],"title":"2.10.1. \nSkipping Spaces: the text-decoration-skip-self property"},{"refs":[{"id":"ref-for-decorating-box\u2468"},{"id":"ref-for-decorating-box\u2460\u24ea"},{"id":"ref-for-decorating-box\u2460\u2460"}],"title":"2.10.2. \nSkipping Spaces: the text-decoration-skip-box property"},{"refs":[{"id":"ref-for-decorating-box\u2460\u2461"}],"title":"2.10.3. \nInset Edges: the text-decoration-skip-inset property"}],"url":"#decorating-box"}, "e0b6ed58": {"dfnID":"e0b6ed58","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"},{"id":"ref-for-propdef-vertical-align\u2460"}],"title":"2.5. \nDetermining the Position and Thickness of Line Decorations"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2461"}],"title":"2.9. \nText Decoration Line Uniformity"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, -"e1dab292": {"dfnID":"e1dab292","dfnText":"inset","external":true,"refSections":[{"refs":[{"id":"ref-for-shadow-inset"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#shadow-inset"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"2. \nLine Decoration: Underline, Overline, and Strike-Through"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "f0809abc": {"dfnID":"f0809abc","dfnText":"&&","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-all"}],"title":"3.4. \nEmphasis Mark Position: the text-emphasis-position property"},{"refs":[{"id":"ref-for-comb-all\u2460"}],"title":"4. \nText Shadows: the text-shadow property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-all"}, "f3d0feab": {"dfnID":"f3d0feab","dfnText":"over","external":true,"refSections":[{"refs":[{"id":"ref-for-over"},{"id":"ref-for-over\u2460"},{"id":"ref-for-over\u2461"},{"id":"ref-for-over\u2462"}],"title":"2.5. \nDetermining the Position and Thickness of Line Decorations"},{"refs":[{"id":"ref-for-over\u2463"}],"title":"2.8.1. \nUnderline Offset Origin (Zero Position)"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#over"}, @@ -4464,7 +4461,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; @@ -4585,8 +4582,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#valdef-text-underline-offset-auto": {"export":true,"for_":["text-underline-offset"],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"local","text":"auto","type":"value","url":"#valdef-text-underline-offset-auto"}, "#valdef-text-underline-position-from-font": {"export":true,"for_":["text-underline-position"],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"local","text":"from-font","type":"value","url":"#valdef-text-underline-position-from-font"}, "https://drafts.csswg.org/css-backgrounds-3/#box-shadow-none": {"export":true,"for_":["box-shadow"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"none","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#box-shadow-none"}, +"https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance": {"export":true,"for_":["box-shadow"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"spread distance","type":"dfn","url":"https://drafts.csswg.org/css-backgrounds-3/#box-shadow-spread-distance"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"box-shadow","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, -"https://drafts.csswg.org/css-backgrounds-3/#shadow-inset": {"export":true,"for_":["box-shadow"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"inset","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#shadow-inset"}, "https://drafts.csswg.org/css-break-3/#fragment": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-break","spec":"css-break-3","status":"current","text":"fragment","type":"dfn","url":"https://drafts.csswg.org/css-break-3/#fragment"}, "https://drafts.csswg.org/css-cascade-5/#longhand": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"sub-property","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#longhand"}, "https://drafts.csswg.org/css-cascade-5/#shorthand-property": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"shorthand","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, @@ -4640,9 +4637,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#under": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"under","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#under"}, "https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#vertical-writing-mode"}, "https://drafts.csswg.org/css-writing-modes-4/#writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing mode","type":"dfn","url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, -"https://drafts.csswg.org/selectors-4/#pseudo-element": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"pseudo-element","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#pseudo-element"}, "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"fill-stroke","spec":"fill-stroke-3","status":"current","text":"fill","type":"property","url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-fill"}, "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"fill-stroke","spec":"fill-stroke-3","status":"current","text":"stroke","type":"property","url":"https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke"}, +"https://www.w3.org/TR/CSS21/selector.html#x22": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-elements","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x22"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-transforms-1/Overview.html b/tests/github/w3c/csswg-drafts/css-transforms-1/Overview.html index 15985de6fe..e53c518a38 100644 --- a/tests/github/w3c/csswg-drafts/css-transforms-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-transforms-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Transforms Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-transforms-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1152,7 +1151,7 @@ <h1 class="p-name no-ref" id="title">CSS Transforms Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1174,7 +1173,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-transforms] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-transforms%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1269,7 +1268,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <p>The CSS <a href="https://www.w3.org/TR/CSS2/visuren.html">visual formatting model</a> describes a coordinate system within each element is positioned. Positions and sizes in this coordinate space can be thought of as being expressed in pixels, starting in the origin of point with positive values proceeding to the right and down.</p> <p>This coordinate space can be modified with the <a class="property css" data-link-type="property" href="#propdef-transform" id="ref-for-propdef-transform">transform</a> property. Using transform, elements can be translated, rotated and scaled.</p> <h3 class="heading settled" data-level="1.1" id="module-interactions"><span class="secno">1.1. </span><span class="content">Module Interactions</span><a class="self-link" href="#module-interactions"></a></h3> - <p>This module defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied; these effects are applied after elements have been sized and positioned according to the <a href="https://www.w3.org/TR/CSS2/visuren.html">visual formatting model</a> from <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>. Some values of these properties result in the creation of a <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>, and/or the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a>.</p> + <p>This module defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied; these effects are applied after elements have been sized and positioned according to the <a href="https://www.w3.org/TR/CSS2/visuren.html">visual formatting model</a> from <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>. Some values of these properties result in the creation of a <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>, and/or the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a>.</p> <p>Transforms affect the rendering of backgrounds on elements with a value of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-fixed" id="ref-for-valdef-background-attachment-fixed">fixed</a> for the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-attachment" id="ref-for-propdef-background-attachment">background-attachment</a> property, which is specified in <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a>.</p> <p>Transforms affect the client rectangles returned by the Element Interface Extensions <a href="https://www.w3.org/TR/cssom-view/#dom-element-getclientrects">getClientRects()</a> and <a href="https://www.w3.org/TR/cssom-view/#dom-element-getboundingclientrect">getBoundingClientRect()</a>, which are specified in <a data-link-type="biblio" href="#biblio-cssom-view" title="CSSOM View Module">[CSSOM-VIEW]</a>.</p> <p>Transforms affect the computation of the <a href="https://www.w3.org/TR/css-overflow-3/#scrollable-overflow-region">scrollable overflow region</a> as described by <a data-link-type="biblio" href="#biblio-css-overflow-3" title="CSS Overflow Module Level 3">[CSS-OVERFLOW-3]</a>.</p> @@ -1432,7 +1431,7 @@ <h2 class="heading settled" data-level="2" id="transform-rendering"><span class= </code></pre> </div> <p>For elements whose layout is governed by the CSS box model, the transform property does not affect the flow of the content surrounding the transformed element. However, the extent of the overflow area takes into account transformed elements. This behavior is similar to what happens when elements are offset via relative positioning. Therefore, if the value of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow" id="ref-for-propdef-overflow">overflow</a> property is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-scroll" id="ref-for-valdef-overflow-scroll">scroll</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto" id="ref-for-valdef-overflow-auto">auto</a>, scrollbars will appear as needed to see content that is transformed outside the visible area. Specifically, transforms can extend (but do not shrink) the size of the overflow area, which is computed as the union of the bounds of the elements before and after the application of transforms.</p> - <p>For elements whose layout is governed by the CSS box model, any value other than <span class="css">none</span> for the <a class="property css" data-link-type="property" href="#propdef-transform" id="ref-for-propdef-transform⑧">transform</a> property results in the creation of a stacking context. Implementations must paint the layer it creates, within its parent stacking context, at the same stacking order that would be used if it were a positioned element with <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css2/#propdef-z-index" id="ref-for-propdef-z-index">z-index: 0</a>. If an element with a transform is positioned, the <span class="property" id="ref-for-propdef-z-index①">z-index</span> property applies as described in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, except that <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> is treated as <span class="css">0</span> since a new stacking context is always created.</p> + <p>For elements whose layout is governed by the CSS box model, any value other than <span class="css">none</span> for the <a class="property css" data-link-type="property" href="#propdef-transform" id="ref-for-propdef-transform⑧">transform</a> property results in the creation of a stacking context. Implementations must paint the layer it creates, within its parent stacking context, at the same stacking order that would be used if it were a positioned element with <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index: 0</a>. If an element with a transform is positioned, the <span class="property" id="ref-for-propdef-z-index①">z-index</span> property applies as described in <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, except that <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css2/#valdef-z-index-auto" id="ref-for-valdef-z-index-auto">auto</a> is treated as <span class="css">0</span> since a new stacking context is always created.</p> <p>For elements whose layout is governed by the CSS box model, any value other than <span class="css">none</span> for the <a class="property css" data-link-type="property" href="#propdef-transform" id="ref-for-propdef-transform⑨">transform</a> property also causes the element to establish a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="containing-block-for-all-descendants">containing block for all descendants</dfn>. Its padding box will be used to layout for all of its absolute-position descendants, fixed-position descendants, and descendant fixed background attachments.</p> <div class="example" id="example-544151e4"> <a class="self-link" href="#example-544151e4"></a> To demonstrate the effect of <a data-link-type="dfn" href="#containing-block-for-all-descendants" id="ref-for-containing-block-for-all-descendants">containing block for all descendants</a> on fixed-position descendants, the following code snippets should behave identically: @@ -3918,11 +3917,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9ddea951">px</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d332e4ec">auto</span> - <li><span class="dfn-paneled" id="c82d6e13">z-index</span> </ul> <li> <a data-link-type="biblio">[CSS3BG]</a> defines the following terms: @@ -3970,7 +3974,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="ee061115">radialgradient</span> <li><span class="dfn-paneled" id="abbd4058">rect</span> <li><span class="dfn-paneled" id="c0807e02">renderable element</span> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> <li><span class="dfn-paneled" id="19d42a6f">stroke bounding box</span> <li><span class="dfn-paneled" id="7d539771">text content element</span> <li><span class="dfn-paneled" id="5fdd136e">viewBox</span> @@ -3999,13 +4002,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-svg-animations">[SVG-ANIMATIONS] - <dd>SVG Animations URL: <a href="https://svgwg.org/specs/animations/">https://svgwg.org/specs/animations/</a> + <dd><a href="https://svgwg.org/specs/animations/"><cite>SVG Animations Level 2</cite></a>. Editor's Draft. URL: <a href="https://svgwg.org/specs/animations/">https://svgwg.org/specs/animations/</a> <dt id="biblio-svg2">[SVG2] <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> </dl> @@ -4334,14 +4337,14 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </div> </details> <details class="mdn-anno unpositioned" data-anno-for="typedef-transform-list"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/gradientTransform" title="The gradientTransform attribute contains the definition of an optional additional transformation from the gradient coordinate system onto the target coordinate system (i.e., userSpaceOnUse or objectBoundingBox). This allows for things such as skewing the gradient. This additional transformation matrix is post-multiplied to (i.e., inserted to the right of) any previously defined transformations, including the implicit transformation necessary to convert from object bounding box units to user space.">Attribute/gradientTransform</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> + <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>?</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>?</span></span> <hr> @@ -4565,10 +4568,10 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"},{"id":"ref-for-angle-value\u2460"},{"id":"ref-for-angle-value\u2461"},{"id":"ref-for-angle-value\u2462"}],"title":"6.3. SVG transform functions"},{"refs":[{"id":"ref-for-angle-value\u2463"},{"id":"ref-for-angle-value\u2464"},{"id":"ref-for-angle-value\u2465"},{"id":"ref-for-angle-value\u2466"},{"id":"ref-for-angle-value\u2467"}],"title":"7.1. 2D Transform Functions"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. CSS Values"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "389552e4": {"dfnID":"389552e4","dfnText":"deg","external":true,"refSections":[{"refs":[{"id":"ref-for-deg"},{"id":"ref-for-deg\u2460"},{"id":"ref-for-deg\u2461"},{"id":"ref-for-deg\u2462"}],"title":"6.3. SVG transform functions"}],"url":"https://drafts.csswg.org/css-values-4/#deg"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"1.1. Module Interactions"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "409e2104": {"dfnID":"409e2104","dfnText":"presentation attributes","external":true,"refSections":[{"refs":[{"id":"ref-for-TermPresentationAttribute"},{"id":"ref-for-TermPresentationAttribute\u2460"},{"id":"ref-for-TermPresentationAttribute\u2461"},{"id":"ref-for-TermPresentationAttribute\u2462"}],"title":"6.1. SVG presentation attributes"}],"url":"https://svgwg.org/svg2-draft/styling.html#TermPresentationAttribute"}, "46df29a9": {"dfnID":"46df29a9","dfnText":"animVal","external":true,"refSections":[{"refs":[{"id":"ref-for-__svg__SVGAnimatedPreserveAspectRatio__animVal"},{"id":"ref-for-__svg__SVGAnimatedPreserveAspectRatio__animVal\u2460"}],"title":"6.5. SVG DOM interface for the transform attribute"}],"url":"https://svgwg.org/svg2-draft/coords.html#__svg__SVGAnimatedPreserveAspectRatio__animVal"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"4. The transform-origin Property"},{"refs":[{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"}],"title":"7.1. 2D Transform Functions"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"}],"title":"2. The Transform Rendering Model"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "584e9c31": {"dfnID":"584e9c31","dfnText":"calc()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-calc"},{"id":"ref-for-funcdef-calc\u2460"}],"title":"3.1. Serialization of <transform-function>s"}],"url":"https://drafts.csswg.org/css-values-4/#funcdef-calc"}, "5a2dc475": {"dfnID":"5a2dc475","dfnText":"patterntransform","external":true,"refSections":[{"refs":[{"id":"ref-for-PatternElementPatternTransformAttribute"}],"title":"6.1. SVG presentation attributes"},{"refs":[{"id":"ref-for-PatternElementPatternTransformAttribute\u2460"},{"id":"ref-for-PatternElementPatternTransformAttribute\u2461"},{"id":"ref-for-PatternElementPatternTransformAttribute\u2462"}],"title":"6.2. Syntax of the SVG transform attribute"},{"refs":[{"id":"ref-for-PatternElementPatternTransformAttribute\u2463"}],"title":"6.3. SVG transform functions"},{"refs":[{"id":"ref-for-PatternElementPatternTransformAttribute\u2464"}],"title":"6.4. User coordinate space"},{"refs":[{"id":"ref-for-PatternElementPatternTransformAttribute\u2465"},{"id":"ref-for-PatternElementPatternTransformAttribute\u2466"}],"title":"6.5. SVG DOM interface for the transform attribute"},{"refs":[{"id":"ref-for-PatternElementPatternTransformAttribute\u2467"},{"id":"ref-for-PatternElementPatternTransformAttribute\u2468"}],"title":"Since the 30 November 2017 Working Draft\n"}],"url":"https://www.w3.org/TR/SVG11/pservers.html#PatternElementPatternTransformAttribute"}, "5dd50c99": {"dfnID":"5dd50c99","dfnText":"resolved value special case property","external":true,"refSections":[{"refs":[{"id":"ref-for-resolved-value-special-case-property"}],"title":"4. The transform-origin Property"}],"url":"https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property"}, @@ -4584,6 +4587,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "9ddea951": {"dfnID":"9ddea951","dfnText":"px","external":true,"refSections":[{"refs":[{"id":"ref-for-px"},{"id":"ref-for-px\u2460"}],"title":"6.3. SVG transform functions"}],"url":"https://drafts.csswg.org/css-values-4/#px"}, "9f9120ff": {"dfnID":"9f9120ff","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"},{"id":"ref-for-comb-comma\u2460"},{"id":"ref-for-comb-comma\u2461"}],"title":"7.1. 2D Transform Functions"}],"url":"https://drafts.csswg.org/css-values-4/#comb-comma"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"}],"title":"4. The transform-origin Property"},{"refs":[{"id":"ref-for-used-value\u2460"},{"id":"ref-for-used-value\u2461"}],"title":"5. Transform reference box: the transform-box property"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"1.1. Module Interactions"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "a7bbaf9f": {"dfnID":"a7bbaf9f","dfnText":"div","external":true,"refSections":[{"refs":[{"id":"ref-for-the-div-element"},{"id":"ref-for-the-div-element\u2460"}],"title":"2. The Transform Rendering Model"}],"url":"https://html.spec.whatwg.org/multipage/grouping-content.html#the-div-element"}, "abbd4058": {"dfnID":"abbd4058","dfnText":"rect","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-rect"},{"id":"ref-for-elementdef-rect\u2460"}],"title":"2. The Transform Rendering Model"},{"refs":[{"id":"ref-for-elementdef-rect\u2461"}],"title":"6.4. User coordinate space"}],"url":"https://svgwg.org/svg2-draft/shapes.html#elementdef-rect"}, "abdfd54a": {"dfnID":"abdfd54a","dfnText":"pattern","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-pattern"}],"title":"5. Transform reference box: the transform-box property"},{"refs":[{"id":"ref-for-elementdef-pattern\u2460"},{"id":"ref-for-elementdef-pattern\u2461"},{"id":"ref-for-elementdef-pattern\u2462"}],"title":"6.4. User coordinate space"},{"refs":[{"id":"ref-for-elementdef-pattern\u2463"}],"title":"Since the 30 November 2017 Working Draft\n"}],"url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern"}, @@ -4592,7 +4596,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "bedd9d42": {"dfnID":"bedd9d42","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-one-plus"}],"title":"3. The transform Property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-one-plus"}, "c0807e02": {"dfnID":"c0807e02","dfnText":"renderable element","external":true,"refSections":[{"refs":[{"id":"ref-for-TermRenderableElement"}],"title":"1.2. CSS Values"}],"url":"https://svgwg.org/svg2-draft/render.html#TermRenderableElement"}, "c349138e": {"dfnID":"c349138e","dfnText":"baseVal","external":true,"refSections":[{"refs":[{"id":"ref-for-__svg__SVGAnimatedPreserveAspectRatio__baseVal"},{"id":"ref-for-__svg__SVGAnimatedPreserveAspectRatio__baseVal\u2460"},{"id":"ref-for-__svg__SVGAnimatedPreserveAspectRatio__baseVal\u2461"}],"title":"6.5. SVG DOM interface for the transform attribute"}],"url":"https://svgwg.org/svg2-draft/coords.html#__svg__SVGAnimatedPreserveAspectRatio__baseVal"}, -"c82d6e13": {"dfnID":"c82d6e13","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"},{"id":"ref-for-propdef-z-index\u2460"}],"title":"2. The Transform Rendering Model"}],"url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "c974a599": {"dfnID":"c974a599","dfnText":"interpolation","external":true,"refSections":[{"refs":[{"id":"ref-for-interpolation"},{"id":"ref-for-interpolation\u2460"}],"title":"9. Interpolation of Transforms"}],"url":"https://drafts.csswg.org/css-values-4/#interpolation"}, "containing-block-for-all-descendants": {"dfnID":"containing-block-for-all-descendants","dfnText":"containing block for all descendants","external":false,"refSections":[{"refs":[{"id":"ref-for-containing-block-for-all-descendants"}],"title":"2. The Transform Rendering Model"}],"url":"#containing-block-for-all-descendants"}, "current-transformation-matrix": {"dfnID":"current-transformation-matrix","dfnText":"current transformation matrix","external":false,"refSections":[{"refs":[{"id":"ref-for-current-transformation-matrix"},{"id":"ref-for-current-transformation-matrix\u2460"},{"id":"ref-for-current-transformation-matrix\u2461"}],"title":"2. The Transform Rendering Model"},{"refs":[{"id":"ref-for-current-transformation-matrix\u2462"}],"title":"8. The Transform Function Lists"},{"refs":[{"id":"ref-for-current-transformation-matrix\u2463"}],"title":"Since the 30 November 2017 Working Draft\n"}],"url":"#current-transformation-matrix"}, @@ -5173,7 +5176,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-values-4/#px": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"px","type":"value","url":"https://drafts.csswg.org/css-values-4/#px"}, "https://drafts.csswg.org/css-values-4/#typedef-length-percentage": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<length-percentage>","type":"type","url":"https://drafts.csswg.org/css-values-4/#typedef-length-percentage"}, "https://drafts.csswg.org/css-values-4/#zero-value": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"<zero>","type":"type","url":"https://drafts.csswg.org/css-values-4/#zero-value"}, -"https://drafts.csswg.org/css2/#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"z-index","type":"property","url":"https://drafts.csswg.org/css2/#propdef-z-index"}, "https://drafts.csswg.org/css2/#valdef-z-index-auto": {"export":true,"for_":["z-index"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css2/#valdef-z-index-auto"}, "https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"resolved value special case property","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#resolved-value-special-case-property"}, "https://drafts.fxtf.org/css-masking-1/#element-attrdef-clippath-clippathunits": {"export":true,"for_":["clipPath"],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"clippathunits","type":"element-attr","url":"https://drafts.fxtf.org/css-masking-1/#element-attrdef-clippath-clippathunits"}, @@ -5191,11 +5193,12 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"pattern","type":"element","url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern"}, "https://svgwg.org/svg2-draft/pservers.html#elementdef-radialGradient": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"radialgradient","type":"element","url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-radialGradient"}, "https://svgwg.org/svg2-draft/render.html#TermRenderableElement": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"renderable element","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermRenderableElement"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "https://svgwg.org/svg2-draft/shapes.html#elementdef-rect": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"rect","type":"element","url":"https://svgwg.org/svg2-draft/shapes.html#elementdef-rect"}, "https://svgwg.org/svg2-draft/styling.html#TermPresentationAttribute": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"presentation attributes","type":"dfn","url":"https://svgwg.org/svg2-draft/styling.html#TermPresentationAttribute"}, "https://svgwg.org/svg2-draft/text.html#TermTextContentElement": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"text content element","type":"dfn","url":"https://svgwg.org/svg2-draft/text.html#TermTextContentElement"}, "https://svgwg.org/svg2-draft/types.html#__svg__SVGFitToViewBox__viewBox": {"export":true,"for_":["SVGFitToViewBox"],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"viewBox","type":"attribute","url":"https://svgwg.org/svg2-draft/types.html#__svg__SVGFitToViewBox__viewBox"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "https://www.w3.org/TR/SVG/pservers.html#LinearGradientElementGradientUnitsAttribute": {"export":true,"for_":["linearGradient"],"level":"","normative":true,"shortname":"svg1.1","spec":"svg1.1","status":"anchor-block","text":"gradientunits","type":"element-attr","url":"https://www.w3.org/TR/SVG/pservers.html#LinearGradientElementGradientUnitsAttribute"}, "https://www.w3.org/TR/SVG/pservers.html#PatternElementPatternUnitsAttribute": {"export":true,"for_":["pattern"],"level":"","normative":true,"shortname":"svg1.1","spec":"svg1.1","status":"anchor-block","text":"patternunits","type":"element-attr","url":"https://www.w3.org/TR/SVG/pservers.html#PatternElementPatternUnitsAttribute"}, "https://www.w3.org/TR/SVG11/coords.html#TransformAttribute": {"export":true,"for_":[""],"level":"","normative":true,"shortname":"svg1.1","spec":"svg1.1","status":"anchor-block","text":"transform","type":"element-attr","url":"https://www.w3.org/TR/SVG11/coords.html#TransformAttribute"}, diff --git a/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.console.txt index d164eb7510..d767825ca6 100644 --- a/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.console.txt @@ -74,8 +74,6 @@ LINT: Your document appears to use tabs to indent, but line 1353 starts with spa LINT: Your document appears to use tabs to indent, but line 1354 starts with spaces. LINE 254: Image doesn't exist, so I couldn't determine its width and height: 'images/perspective_distance.png' LINE 263: Image doesn't exist, so I couldn't determine its width and height: 'images/perspective_origin.png' -LINE 87: No 'dfn' refs found for 'stacking context' with spec 'css2'. -<a bs-line-number="87" data-link-type="dfn" data-lt="stacking context">stacking context</a> LINE ~417: No 'dfn' refs found for 'flattening element'. [=flattening element|flattening=] LINE 1389: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.html b/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.html index 12599f184b..861da4843d 100644 --- a/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-transforms-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Transforms Module Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-transforms-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1121,7 +1120,7 @@ <h1 class="p-name no-ref" id="title">CSS Transforms Module Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1144,7 +1143,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-transforms] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-transforms%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1282,7 +1281,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <p>This specification also adds three convenience properties, <a class="property css" data-link-type="property" href="#propdef-scale" id="ref-for-propdef-scale">scale</a>, <a class="property css" data-link-type="property" href="#propdef-translate" id="ref-for-propdef-translate">translate</a> and <a class="property css" data-link-type="property" href="#propdef-rotate" id="ref-for-propdef-rotate">rotate</a>, that make it easier to describe and animate simple transforms.</p> <h3 class="heading settled" data-level="1.1" id="module-interactions"><span class="secno">1.1. </span><span class="content">Module Interactions</span><a class="self-link" href="#module-interactions"></a></h3> <p>The <a data-link-type="dfn" href="#3d-transform-functions" id="ref-for-3d-transform-functions">3D transform functions</a> here extend the set of functions for the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="ref-for-propdef-transform②">transform</a> property.</p> - <p>Some values of <a class="property css" data-link-type="property" href="#propdef-perspective" id="ref-for-propdef-perspective①">perspective</a>, <a class="property css" data-link-type="property" href="#propdef-transform-style" id="ref-for-propdef-transform-style①">transform-style</a> and <a class="property css" data-link-type="property" href="#propdef-backface-visibility" id="ref-for-propdef-backface-visibility①">backface-visibility</a> result in the creation of a <a data-link-type="dfn" href="https://drafts.csswg.org/css-transforms-1/#containing-block-for-all-descendants" id="ref-for-containing-block-for-all-descendants">containing block for all descendants</a>, and/or the creation of a <a data-link-type="dfn">stacking context</a>.</p> + <p>Some values of <a class="property css" data-link-type="property" href="#propdef-perspective" id="ref-for-propdef-perspective①">perspective</a>, <a class="property css" data-link-type="property" href="#propdef-transform-style" id="ref-for-propdef-transform-style①">transform-style</a> and <a class="property css" data-link-type="property" href="#propdef-backface-visibility" id="ref-for-propdef-backface-visibility①">backface-visibility</a> result in the creation of a <a data-link-type="dfn" href="https://drafts.csswg.org/css-transforms-1/#containing-block-for-all-descendants" id="ref-for-containing-block-for-all-descendants">containing block for all descendants</a>, and/or the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a>.</p> <p>Three-dimensional transforms affect the visual layering of elements, and thus override the back-to-front painting order described in <a href="https://www.w3.org/TR/CSS2/zindex.html">Appendix E</a> of <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>.</p> <h3 class="heading settled" data-level="1.2" id="values"><span class="secno">1.2. </span><span class="content">Value Definitions</span><a class="self-link" href="#values"></a></h3> <p>This specification follows the <a href="https://www.w3.org/TR/CSS2/about.html#property-defs">CSS property definition conventions</a> from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> using the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[CSS-VALUES-3]</a>. @@ -2676,6 +2675,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="b0d8ebd9">{a}</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -2734,13 +2738,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing-2">[COMPOSITING-2] - <dd>Compositing and Blending Level 2 URL: <a href="https://drafts.fxtf.org/compositing-2/">https://drafts.fxtf.org/compositing-2/</a> + <dd><a href="https://drafts.fxtf.org/compositing-2/"><cite>Compositing and Blending Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.fxtf.org/compositing-2/">https://drafts.fxtf.org/compositing-2/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] @@ -2768,7 +2772,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-svg-animations">[SVG-ANIMATIONS] - <dd>SVG Animations URL: <a href="https://svgwg.org/specs/animations/">https://svgwg.org/specs/animations/</a> + <dd><a href="https://svgwg.org/specs/animations/"><cite>SVG Animations Level 2</cite></a>. Editor's Draft. URL: <a href="https://svgwg.org/specs/animations/">https://svgwg.org/specs/animations/</a> <dt id="biblio-svg11">[SVG11] <dd>Erik Dahlström; et al. <a href="https://www.w3.org/TR/SVG11/"><cite>Scalable Vector Graphics (SVG) 1.1 (Second Edition)</cite></a>. 16 August 2011. REC. URL: <a href="https://www.w3.org/TR/SVG11/">https://www.w3.org/TR/SVG11/</a> <dt id="biblio-svg2">[SVG2] @@ -3438,6 +3442,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9f9120ff": {"dfnID":"9f9120ff","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"},{"id":"ref-for-comb-comma\u2460"},{"id":"ref-for-comb-comma\u2461"},{"id":"ref-for-comb-comma\u2462"},{"id":"ref-for-comb-comma\u2463"}],"title":"12.2. 3D Transform Functions"}],"url":"https://drafts.csswg.org/css-values-4/#comb-comma"}, "9fec1bdc": {"dfnID":"9fec1bdc","dfnText":"mask-border-source","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-border-source"}],"title":"7.1. Grouping property values"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-source"}, "a13ebf85": {"dfnID":"a13ebf85","dfnText":"<transform-list>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-transform-list"},{"id":"ref-for-typedef-transform-list\u2460"},{"id":"ref-for-typedef-transform-list\u2461"}],"title":"2.1. Serialization of the computed value of <transform-list>"}],"url":"https://drafts.csswg.org/css-transforms-1/#typedef-transform-list"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"1.1. Module Interactions"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "abdfd54a": {"dfnID":"abdfd54a","dfnText":"pattern","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-pattern"},{"id":"ref-for-elementdef-pattern\u2460"}],"title":"11. SVG and 3D transform functions"}],"url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern"}, "accumulated-3d-transformation-matrix": {"dfnID":"accumulated-3d-transformation-matrix","dfnText":"accumulated 3D transformation matrix","external":false,"refSections":[{"refs":[{"id":"ref-for-accumulated-3d-transformation-matrix"},{"id":"ref-for-accumulated-3d-transformation-matrix\u2460"}],"title":"4.1.4. Accumulated 3D Transformation Matrix Computation"},{"refs":[{"id":"ref-for-accumulated-3d-transformation-matrix\u2461"}],"title":"4.1.5. Backface Visibility"},{"refs":[{"id":"ref-for-accumulated-3d-transformation-matrix\u2462"},{"id":"ref-for-accumulated-3d-transformation-matrix\u2463"}],"title":"4.2. Processing of Perspective-Transformed Boxes"},{"refs":[{"id":"ref-for-accumulated-3d-transformation-matrix\u2464"}],"title":"10. The backface-visibility Property"}],"url":"#accumulated-3d-transformation-matrix"}, "accumulation-for-one-based-values": {"dfnID":"accumulation-for-one-based-values","dfnText":"accumulation for one-based values","external":false,"refSections":[],"url":"#accumulation-for-one-based-values"}, @@ -4054,6 +4059,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://svgwg.org/svg2-draft/struct.html#elementdef-svg": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"svg","type":"element","url":"https://svgwg.org/svg2-draft/struct.html#elementdef-svg"}, "https://svgwg.org/svg2-draft/struct.html#graphics-element": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"graphics element","type":"dfn","url":"https://svgwg.org/svg2-draft/struct.html#graphics-element"}, "https://svgwg.org/svg2-draft/struct.html#graphics-referencing-element": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"graphics referencing element","type":"dfn","url":"https://svgwg.org/svg2-draft/struct.html#graphics-referencing-element"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.console.txt index 7e3c22fbd5..688d4d4951 100644 --- a/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.console.txt @@ -1,23 +1,9 @@ -LINE ~146: No 'property' refs found for 'left' with spec 'css2'. -'left' -LINE ~146: No 'property' refs found for 'background-color' with spec 'css2'. -'background-color' -LINE ~153: No 'property' refs found for 'left' with spec 'css2'. -'left' -LINE ~153: No 'property' refs found for 'background-color' with spec 'css2'. -'background-color' LINE ~163: No 'property' refs found for 'opacity' with spec 'css-color-3'. 'opacity' LINE ~177: No 'property' refs found for 'opacity' with spec 'css-color-3'. 'opacity' LINE ~208: No 'property' refs found for 'opacity' with spec 'css-color-3'. 'opacity' -LINE ~208: No 'property' refs found for 'left' with spec 'css2'. -'left' -LINE ~208: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~208: No 'property' refs found for 'width' with spec 'css2'. -'width' LINE 427: Ambiguous for-less link for 'complete', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-transitions-1; type:dfn; for:transition; text:complete @@ -30,6 +16,19 @@ spec:css-transitions-1; type:dfn; for:transition; text:cancel for-less references: spec:webdriver-bidi; type:dfn; for:/; text:canceled <a bs-line-number="450" data-link-type="dfn" data-lt="cancel">cancel</a> +LINE ~624: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE 679: Ambiguous for-less link for 'end time', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-transitions-1; type:dfn; for:transition; text:end time +for-less references: +spec:performance-timeline; type:dfn; for:/; text:end time +spec:performance-timeline; type:dfn; for:/; text:end time +<a bs-line-number="679" data-link-type="dfn" data-lt="end time">end time</a> LINE 716: Ambiguous for-less link for 'cancel', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-transitions-1; type:dfn; for:transition; text:cancel @@ -54,14 +53,40 @@ spec:css-transitions-1; type:dfn; for:transition; text:cancel for-less references: spec:webdriver-bidi; type:dfn; for:/; text:canceled <a bs-line-number="754" data-link-type="dfn" data-lt="cancel">cancel</a> +LINE 801: Ambiguous for-less link for 'end time', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-transitions-1; type:dfn; for:transition; text:end time +for-less references: +spec:performance-timeline; type:dfn; for:/; text:end time +spec:performance-timeline; type:dfn; for:/; text:end time +<a bs-line-number="801" data-link-type="dfn" data-lt="end time">end time</a> LINE 820: Ambiguous for-less link for 'cancel', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-transitions-1; type:dfn; for:transition; text:cancel for-less references: spec:webdriver-bidi; type:dfn; for:/; text:canceled <a bs-line-number="820" data-link-type="dfn" data-lt="cancel">cancel</a> -LINE ~900: No 'property' refs found for 'background-color' with spec 'css2'. -'background-color' +LINE 829: Ambiguous for-less link for 'end time', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-transitions-1; type:dfn; for:transition; text:end time +for-less references: +spec:performance-timeline; type:dfn; for:/; text:end time +spec:performance-timeline; type:dfn; for:/; text:end time +<a bs-line-number="829" data-link-type="dfn" data-lt="end time">end time</a> +LINE 991: Ambiguous for-less link for 'end time', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-transitions-1; type:dfn; for:transition; text:end time +for-less references: +spec:performance-timeline; type:dfn; for:/; text:end time +spec:performance-timeline; type:dfn; for:/; text:end time +<a bs-line-number="991" data-link-type="dfn" data-lt="end time">end time</a> +LINE 1061: Ambiguous for-less link for 'end time', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css-transitions-1; type:dfn; for:transition; text:end time +for-less references: +spec:performance-timeline; type:dfn; for:/; text:end time +spec:performance-timeline; type:dfn; for:/; text:end time +<a bs-line-number="1061" data-link-type="dfn" data-lt="end time">end time</a> LINE 1192: Ambiguous for-less link for 'cancel', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:css-transitions-1; type:dfn; for:transition; text:cancel diff --git a/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.html b/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.html index 5917e89b24..ff8e5611ed 100644 --- a/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-transitions-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Transitions</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-transitions-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1100,7 +1099,7 @@ <h1 class="p-name no-ref" id="title">CSS Transitions</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1122,7 +1121,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-transitions] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-transitions%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p><strong>This document</strong> is expected to be relatively close to last call. While some issues raised have yet to be addressed, new features are extremely unlikely to be considered for this level.</p> </div> @@ -1220,10 +1219,10 @@ <h3 class="heading settled" data-level="1.1" id="values"><span class="secno">1.1 For readability they have not been repeated explicitly.</p> <h2 class="heading settled" data-level="2" id="transitions"><span class="secno">2. </span><span class="content"><span id="transitions-">Transitions</span></span><a class="self-link" href="#transitions"></a></h2> <p> Normally when the value of a CSS property changes, the rendered result is instantly updated, with the affected elements immediately changing from the old property value to the new property value. This section describes a way to specify transitions using new CSS properties. These properties are used to animate smoothly from the old state to the new state over time. </p> - <p> For example, suppose that transitions of one second have been defined on the <a class="property css" data-link-type="property">left</a> and <span class="property">background-color</span> properties. The following diagram illustrates the effect of updating those properties on an element, in this case moving it to the right and changing the background from red to blue. This assumes other transition parameters still have their default values. </p> + <p> For example, suppose that transitions of one second have been defined on the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left" id="ref-for-propdef-left">left</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/colors.html#propdef-background-color" id="ref-for-propdef-background-color">background-color</a> properties. The following diagram illustrates the effect of updating those properties on an element, in this case moving it to the right and changing the background from red to blue. This assumes other transition parameters still have their default values. </p> <figure> <img alt="Example showing the initial, intermediate, and final states of a box whose color and position is interpolated" src="transition-example.svg" width="518"> - <figcaption> Transitions of <a class="property css" data-link-type="property">left</a> and <span class="property">background-color</span>. </figcaption> + <figcaption> Transitions of <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left" id="ref-for-propdef-left①">left</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/colors.html#propdef-background-color" id="ref-for-propdef-background-color①">background-color</a>. </figcaption> </figure> <p> Transitions are a presentational effect. The <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value">computed value</a> of a property transitions over time from the old value to the new value. Therefore if a script queries the <span id="ref-for-computed-value①">computed value</span> of a property (or other data depending on it) as it is transitioning, it will see an intermediate value that represents the current animated value of the property. </p> <p> The transition for a property is defined using a number of new properties. For example: </p> @@ -1265,9 +1264,9 @@ <h2 class="heading settled" data-level="2" id="transitions"><span class="secno"> transition-duration: 2s, 1s; } </pre> - The above example defines a transition on the <a class="property css" data-link-type="property">opacity</a> property of 2 seconds duration, a transition on the <span class="property">left</span> property of 1 - second duration, a transition on the <span class="property">top</span> property of 2 seconds duration and a - transition on the <span class="property">width</span> property of 1 + The above example defines a transition on the <a class="property css" data-link-type="property">opacity</a> property of 2 seconds duration, a transition on the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left" id="ref-for-propdef-left②">left</a> property of 1 + second duration, a transition on the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top">top</a> property of 2 seconds duration and a + transition on the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width">width</a> property of 1 second duration. </div> <p> While authors can use transitions to create dynamically changing content, @@ -1655,7 +1654,7 @@ <h2 class="heading settled" data-level="3" id="starting"><span class="secno">3. <li> <a data-link-type="dfn" href="#transition-start-time" id="ref-for-transition-start-time">start time</a> is the time of the <a data-link-type="dfn" href="#style-change-event" id="ref-for-style-change-event⑤">style change event</a> plus the <a data-link-type="dfn" href="#matching-transition-delay" id="ref-for-matching-transition-delay①">matching transition delay</a>, - <li> <a data-link-type="dfn" href="#transition-end-time" id="ref-for-transition-end-time">end time</a> is + <li> <a data-link-type="dfn">end time</a> is the <a data-link-type="dfn" href="#transition-start-time" id="ref-for-transition-start-time①">start time</a> plus the <a data-link-type="dfn" href="#matching-transition-duration" id="ref-for-matching-transition-duration①">matching transition duration</a>, <li> <a data-link-type="dfn" href="#transition-start-value" id="ref-for-transition-start-value">start value</a> is @@ -1731,7 +1730,7 @@ <h2 class="heading settled" data-level="3" id="starting"><span class="secno">3. the new transition’s <a data-link-type="dfn" href="#transition-reversing-shortening-factor" id="ref-for-transition-reversing-shortening-factor⑤">reversing shortening factor</a> and the <span id="ref-for-matching-transition-delay⑤">matching transition delay</span>, </ol> - <li> <a data-link-type="dfn" href="#transition-end-time" id="ref-for-transition-end-time①">end time</a> is + <li> <a data-link-type="dfn">end time</a> is the <a data-link-type="dfn" href="#transition-start-time" id="ref-for-transition-start-time③">start time</a> plus the product of the <a data-link-type="dfn" href="#matching-transition-duration" id="ref-for-matching-transition-duration②">matching transition duration</a> and the new transition’s <a data-link-type="dfn" href="#transition-reversing-shortening-factor" id="ref-for-transition-reversing-shortening-factor⑥">reversing shortening factor</a>, @@ -1748,7 +1747,7 @@ <h2 class="heading settled" data-level="3" id="starting"><span class="secno">3. <li> <a data-link-type="dfn" href="#transition-start-time" id="ref-for-transition-start-time④">start time</a> is the time of the <a data-link-type="dfn" href="#style-change-event" id="ref-for-style-change-event⑧">style change event</a> plus the <a data-link-type="dfn" href="#matching-transition-delay" id="ref-for-matching-transition-delay⑥">matching transition delay</a>, - <li> <a data-link-type="dfn" href="#transition-end-time" id="ref-for-transition-end-time②">end time</a> is + <li> <a data-link-type="dfn">end time</a> is the <a data-link-type="dfn" href="#transition-start-time" id="ref-for-transition-start-time⑤">start time</a> plus the <a data-link-type="dfn" href="#matching-transition-duration" id="ref-for-matching-transition-duration③">matching transition duration</a>, <li> <a data-link-type="dfn" href="#transition-start-value" id="ref-for-transition-start-value③">start value</a> is @@ -1799,7 +1798,7 @@ <h2 class="heading settled" data-level="3" id="starting"><span class="secno">3. transition-duration: 2s; /* applies to the transition *to* the :hover state */ }</pre> <p> When a list item with these style rules enters the :hover - state, the computed <a class="property css" data-link-type="property" href="#propdef-transition-duration" id="ref-for-propdef-transition-duration⑦">transition-duration</a> at the time that <a class="property css" data-link-type="property">background-color</a> would have its new value (<span class="css">green</span>) is <span class="css">2s</span>, + state, the computed <a class="property css" data-link-type="property" href="#propdef-transition-duration" id="ref-for-propdef-transition-duration⑦">transition-duration</a> at the time that <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/colors.html#propdef-background-color" id="ref-for-propdef-background-color②">background-color</a> would have its new value (<span class="css">green</span>) is <span class="css">2s</span>, so the transition from <span class="css">blue</span> to <span class="css">green</span> takes 2 seconds. However, when the list item leaves the :hover state, the transition from <span class="css">green</span> to <span class="css">blue</span> takes 1 second. </p> @@ -1850,7 +1849,7 @@ <h3 class="heading settled" data-level="3.1" id="reversing"><span class="secno"> </div> <h2 class="heading settled" data-level="4" id="application"><span class="secno">4. </span><span class="content">Application of transitions</span><a class="self-link" href="#application"></a></h2> <p> When a property on an element is undergoing a transition - (that is, when or after the transition has started and before the <a data-link-type="dfn" href="#transition-end-time" id="ref-for-transition-end-time③">end time</a> of the transition) + (that is, when or after the transition has started and before the <a data-link-type="dfn">end time</a> of the transition) the transition adds a style called the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="current-value">current value</dfn> to the CSS cascade at the level defined for CSS Transitions in <a data-link-type="biblio" href="#biblio-css3cascade" title="CSS Cascading and Inheritance Level 3">[CSS3CASCADE]</a>. </p> <p class="note" role="note"> Note that this means that computed values @@ -1893,7 +1892,7 @@ <h2 class="heading settled" data-level="4" id="application"><span class="secno"> is defined by the property’s <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#animation-type" id="ref-for-animation-type④">animation type</a>.</p> <h2 class="heading settled" data-level="5" id="complete"><span class="secno">5. </span><span class="content">Completion of transitions</span><a class="self-link" href="#complete"></a></h2> <p> <a data-link-type="dfn" href="#running-transition" id="ref-for-running-transition①⑧">Running transitions</a> <dfn class="dfn-paneled" data-dfn-for="transition" data-dfn-type="dfn" data-export id="dfn-complete">complete</dfn> at a time that is equal to or after their end time, - but prior to the first <a data-link-type="dfn" href="#style-change-event" id="ref-for-style-change-event⑨">style change event</a> whose time is equal to or after their <a data-link-type="dfn" href="#transition-end-time" id="ref-for-transition-end-time④">end time</a>. + but prior to the first <a data-link-type="dfn" href="#style-change-event" id="ref-for-style-change-event⑨">style change event</a> whose time is equal to or after their <a data-link-type="dfn">end time</a>. When a transition completes, implementations must move all transitions that complete at that time @@ -2368,6 +2367,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="67fd880f">background-color</span> + <li><span class="dfn-paneled" id="49a17925">left</span> + <li><span class="dfn-paneled" id="4726eb39">top</span> + <li><span class="dfn-paneled" id="1b010cf3">width</span> + </ul> <li> <a data-link-type="biblio">[CSS3-ANIMATIONS]</a> defines the following terms: <ul> @@ -2421,9 +2428,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-6">[CSS-CASCADE-6] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-6/"><cite>CSS Cascading and Inheritance Level 6</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-6/">https://drafts.csswg.org/css-cascade-6/</a> <dt id="biblio-css-easing-1">[CSS-EASING-1] - <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> + <dd>Brian Birtles; Dean Jackson; Matt Rakow. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -2433,7 +2440,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css3cascade">[CSS3CASCADE] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-3/">https://drafts.csswg.org/css-cascade-3/</a> <dt id="biblio-cssom-1">[CSSOM-1] @@ -2452,7 +2459,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-smil-animation">[SMIL-ANIMATION] <dd>Patrick Schmitz; Aaron Cohen. <a href="https://www.w3.org/TR/smil-animation/"><cite>SMIL Animation</cite></a>. 4 September 2001. REC. URL: <a href="https://www.w3.org/TR/smil-animation/">https://www.w3.org/TR/smil-animation/</a> <dt id="biblio-svg11">[SVG11] @@ -2637,15 +2644,16 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-transitionevent-transitionevent"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TransitionEvent/TransitionEvent" title="The TransitionEvent() constructor returns a new TransitionEvent object, representing an event in relation with a transition.">TransitionEvent/TransitionEvent</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>23+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> + <span class="firefox yes"><span>Firefox</span><span>23+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>2.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -2999,14 +3007,18 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "07dcc868": {"dfnID":"07dcc868","dfnText":"input progress value","external":true,"refSections":[{"refs":[{"id":"ref-for-input-progress-value"}],"title":"2.3. The transition-timing-function Property"}],"url":"https://drafts.csswg.org/css-easing-2/#input-progress-value"}, "129bdae8": {"dfnID":"129bdae8","dfnText":"Event","external":true,"refSections":[{"refs":[{"id":"ref-for-event"}],"title":"6.1.1. IDL Definition"}],"url":"https://dom.spec.whatwg.org/#event"}, "12ac1140": {"dfnID":"12ac1140","dfnText":"animation type","external":true,"refSections":[{"refs":[{"id":"ref-for-animation-type"},{"id":"ref-for-animation-type\u2460"},{"id":"ref-for-animation-type\u2461"},{"id":"ref-for-animation-type\u2462"}],"title":"3. Starting of transitions"},{"refs":[{"id":"ref-for-animation-type\u2463"}],"title":"4. Application of transitions"}],"url":"https://drafts.csswg.org/web-animations-1/#animation-type"}, +"1b010cf3": {"dfnID":"1b010cf3","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"2. Transitions"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-width"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.1. Value Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "44a7708c": {"dfnID":"44a7708c","dfnText":"EventInit","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-eventinit"}],"title":"6.1.1. IDL Definition"}],"url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, +"4726eb39": {"dfnID":"4726eb39","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"2. Transitions"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, +"49a17925": {"dfnID":"49a17925","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"},{"id":"ref-for-propdef-left\u2460"},{"id":"ref-for-propdef-left\u2461"}],"title":"2. Transitions"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-left"}, "49a64d88": {"dfnID":"49a64d88","dfnText":"html elements","external":true,"refSections":[{"refs":[{"id":"ref-for-html-elements"}],"title":"6.3. Event handlers on elements, Document objects, and Window objects"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#html-elements"}, "4d7d3dcd": {"dfnID":"4d7d3dcd","dfnText":"initial","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-initial"}],"title":"2.1. The transition-property Property"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, "5074dc0c": {"dfnID":"5074dc0c","dfnText":"inset","external":true,"refSections":[{"refs":[{"id":"ref-for-shadow-inset"}],"title":"3. Starting of transitions"}],"url":"https://www.w3.org/TR/css3-background/#shadow-inset"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"}],"title":"6.3. Event handlers on elements, Document objects, and Window objects"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "5fced98b": {"dfnID":"5fced98b","dfnText":"CSSOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-cssomstring"},{"id":"ref-for-cssomstring\u2460"},{"id":"ref-for-cssomstring\u2461"},{"id":"ref-for-cssomstring\u2462"},{"id":"ref-for-cssomstring\u2463"}],"title":"6.1.1. IDL Definition"},{"refs":[{"id":"ref-for-cssomstring\u2464"},{"id":"ref-for-cssomstring\u2465"}],"title":"6.1.2. Attributes"}],"url":"https://drafts.csswg.org/cssom-1/#cssomstring"}, "621c7c7e": {"dfnID":"621c7c7e","dfnText":"<time>","external":true,"refSections":[{"refs":[{"id":"ref-for-time-value"}],"title":"2.2. The transition-duration Property"},{"refs":[{"id":"ref-for-time-value\u2460"}],"title":"2.4. The transition-delay Property"},{"refs":[{"id":"ref-for-time-value\u2461"},{"id":"ref-for-time-value\u2462"}],"title":"2.5. The transition Shorthand Property"}],"url":"https://drafts.csswg.org/css-values-3/#time-value"}, +"67fd880f": {"dfnID":"67fd880f","dfnText":"background-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-color"},{"id":"ref-for-propdef-background-color\u2460"}],"title":"2. Transitions"},{"refs":[{"id":"ref-for-propdef-background-color\u2461"}],"title":"3. Starting of transitions"}],"url":"https://www.w3.org/TR/CSS21/colors.html#propdef-background-color"}, "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"2.1. The transition-property Property"},{"refs":[{"id":"ref-for-mult-comma\u2460"}],"title":"2.2. The transition-duration Property"},{"refs":[{"id":"ref-for-mult-comma\u2461"}],"title":"2.3. The transition-timing-function Property"},{"refs":[{"id":"ref-for-mult-comma\u2462"}],"title":"2.4. The transition-delay Property"},{"refs":[{"id":"ref-for-mult-comma\u2463"}],"title":"2.5. The transition Shorthand Property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"3. Starting of transitions"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"}],"title":"2.1. The transition-property Property"},{"refs":[{"id":"ref-for-comb-one\u2461"}],"title":"2.5. The transition Shorthand Property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, @@ -3070,7 +3082,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "style-change-event": {"dfnID":"style-change-event","dfnText":"style change event","external":false,"refSections":[{"refs":[{"id":"ref-for-style-change-event"},{"id":"ref-for-style-change-event\u2460"},{"id":"ref-for-style-change-event\u2461"},{"id":"ref-for-style-change-event\u2462"},{"id":"ref-for-style-change-event\u2463"},{"id":"ref-for-style-change-event\u2464"},{"id":"ref-for-style-change-event\u2465"},{"id":"ref-for-style-change-event\u2466"},{"id":"ref-for-style-change-event\u2467"}],"title":"3. Starting of transitions"},{"refs":[{"id":"ref-for-style-change-event\u2468"}],"title":"5. Completion of transitions"}],"url":"#style-change-event"}, "transition-cancel": {"dfnID":"transition-cancel","dfnText":"cancel","external":false,"refSections":[],"url":"#transition-cancel"}, "transition-combined-duration": {"dfnID":"transition-combined-duration","dfnText":"combined duration","external":false,"refSections":[{"refs":[{"id":"ref-for-transition-combined-duration"},{"id":"ref-for-transition-combined-duration\u2460"}],"title":"3. Starting of transitions"}],"url":"#transition-combined-duration"}, -"transition-end-time": {"dfnID":"transition-end-time","dfnText":"end time","external":false,"refSections":[{"refs":[{"id":"ref-for-transition-end-time"},{"id":"ref-for-transition-end-time\u2460"},{"id":"ref-for-transition-end-time\u2461"}],"title":"3. Starting of transitions"},{"refs":[{"id":"ref-for-transition-end-time\u2462"}],"title":"4. Application of transitions"},{"refs":[{"id":"ref-for-transition-end-time\u2463"}],"title":"5. Completion of transitions"}],"url":"#transition-end-time"}, +"transition-end-time": {"dfnID":"transition-end-time","dfnText":"end time","external":false,"refSections":[],"url":"#transition-end-time"}, "transition-end-value": {"dfnID":"transition-end-value","dfnText":"end value","external":false,"refSections":[{"refs":[{"id":"ref-for-transition-end-value"},{"id":"ref-for-transition-end-value\u2460"},{"id":"ref-for-transition-end-value\u2461"},{"id":"ref-for-transition-end-value\u2462"},{"id":"ref-for-transition-end-value\u2463"},{"id":"ref-for-transition-end-value\u2464"},{"id":"ref-for-transition-end-value\u2465"},{"id":"ref-for-transition-end-value\u2466"}],"title":"3. Starting of transitions"},{"refs":[{"id":"ref-for-transition-end-value\u2467"}],"title":"4. Application of transitions"}],"url":"#transition-end-value"}, "transition-reversing-adjusted-start-value": {"dfnID":"transition-reversing-adjusted-start-value","dfnText":"reversing-adjusted start value","external":false,"refSections":[{"refs":[{"id":"ref-for-transition-reversing-adjusted-start-value"},{"id":"ref-for-transition-reversing-adjusted-start-value\u2460"},{"id":"ref-for-transition-reversing-adjusted-start-value\u2461"},{"id":"ref-for-transition-reversing-adjusted-start-value\u2462"},{"id":"ref-for-transition-reversing-adjusted-start-value\u2463"},{"id":"ref-for-transition-reversing-adjusted-start-value\u2464"}],"title":"3. Starting of transitions"},{"refs":[{"id":"ref-for-transition-reversing-adjusted-start-value\u2465"}],"title":"3.1. Faster reversing of interrupted transitions"}],"url":"#transition-reversing-adjusted-start-value"}, "transition-reversing-shortening-factor": {"dfnID":"transition-reversing-shortening-factor","dfnText":"reversing shortening factor","external":false,"refSections":[{"refs":[{"id":"ref-for-transition-reversing-shortening-factor"},{"id":"ref-for-transition-reversing-shortening-factor\u2460"},{"id":"ref-for-transition-reversing-shortening-factor\u2461"},{"id":"ref-for-transition-reversing-shortening-factor\u2462"},{"id":"ref-for-transition-reversing-shortening-factor\u2463"},{"id":"ref-for-transition-reversing-shortening-factor\u2464"},{"id":"ref-for-transition-reversing-shortening-factor\u2465"},{"id":"ref-for-transition-reversing-shortening-factor\u2466"}],"title":"3. Starting of transitions"},{"refs":[{"id":"ref-for-transition-reversing-shortening-factor\u2467"},{"id":"ref-for-transition-reversing-shortening-factor\u2468"}],"title":"3.1. Faster reversing of interrupted transitions"}],"url":"#transition-reversing-shortening-factor"}, @@ -3574,7 +3586,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#single-transition-property": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"<single-transition-property>","type":"type","url":"#single-transition-property"}, "#style-change-event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"style change event","type":"dfn","url":"#style-change-event"}, "#transition-combined-duration": {"export":true,"for_":["transition"],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"combined duration","type":"dfn","url":"#transition-combined-duration"}, -"#transition-end-time": {"export":true,"for_":["transition"],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"end time","type":"dfn","url":"#transition-end-time"}, "#transition-end-value": {"export":true,"for_":["transition"],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"end value","type":"dfn","url":"#transition-end-value"}, "#transition-reversing-adjusted-start-value": {"export":true,"for_":["transition"],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"reversing-adjusted start value","type":"dfn","url":"#transition-reversing-adjusted-start-value"}, "#transition-reversing-shortening-factor": {"export":true,"for_":["transition"],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"local","text":"reversing shortening factor","type":"dfn","url":"#transition-reversing-shortening-factor"}, @@ -3627,6 +3638,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"GlobalEventHandlers","type":"interface","url":"https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#idl-double": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"double","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-double"}, +"https://www.w3.org/TR/CSS21/colors.html#propdef-background-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"background-color","type":"property","url":"https://www.w3.org/TR/CSS21/colors.html#propdef-background-color"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-width"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-left": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"left","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-left"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"top","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, "https://www.w3.org/TR/css3-background/#shadow-inset": {"export":true,"for_":["shadow"],"level":"1","normative":true,"shortname":"css-transitions","spec":"","status":"anchor-block","text":"inset","type":"value","url":"https://www.w3.org/TR/css3-background/#shadow-inset"}, }; diff --git a/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.console.txt index d58d6af26a..81c5116e16 100644 --- a/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.console.txt @@ -43,5 +43,11 @@ LINT: Your document appears to use spaces to indent, but line 496 starts with ta LINT: Your document appears to use spaces to indent, but line 497 starts with tabs. LINT: Your document appears to use spaces to indent, but line 498 starts with tabs. LINT: Your document appears to use spaces to indent, but line 499 starts with tabs. +LINE ~77: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE ~257: Section autolink [[web-animations#animation-effect-phases-and-states|phase]] attempts to link to unversioned spec name 'web-animations', but that spec is versioned as 'web-animations-1' or 'web-animations-2'. Please choose a versioned spec name. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.html b/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.html index 653576ebc1..2587b943fc 100644 --- a/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-transitions-2/Overview.html @@ -5,7 +5,6 @@ <title>CSS Transitions Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/css-transitions-2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1092,7 +1091,7 @@ <h1 class="p-name no-ref" id="title">CSS Transitions Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1114,7 +1113,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-transitions-2] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-transitions-2%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1198,7 +1197,7 @@ <h3 class="heading settled" data-level="2.1" id="transition-name-property"><span <h3 class="heading settled" data-level="2.2" id="transition-duration-property"><span class="secno">2.2. </span><span class="content">The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration" id="ref-for-propdef-transition-duration">transition-duration</a> Property</span><a class="self-link" href="#transition-duration-property"></a></h3> <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration" id="ref-for-propdef-transition-duration①">transition-duration</a> property specifies the <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations/#iteration-duration" id="ref-for-iteration-duration">iteration duration</a> of the transition’s associated <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations/#animation-effect" id="ref-for-animation-effect">animation effect</a>.</p> <h3 class="heading settled" data-level="2.3" id="transition-timing-function-property"><span class="secno">2.3. </span><span class="content">The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function" id="ref-for-propdef-transition-timing-function">transition-timing-function</a> Property</span><a class="self-link" href="#transition-timing-function-property"></a></h3> - <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function" id="ref-for-propdef-transition-timing-function①">transition-timing-function</a> property specifies the <a data-link-type="dfn" href="https://drafts.csswg.org/css-easing-2/#easing-function" id="ref-for-easing-function">timing function</a> of the transition’s associated <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations/#animation-effect" id="ref-for-animation-effect①">animation effect</a> (see <a href="https://drafts.csswg.org/web-animations-1/#time-transformations"><cite>Web Animations</cite> § 4.10 Time transformations</a>).</p> + <p>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function" id="ref-for-propdef-transition-timing-function①">transition-timing-function</a> property specifies the <a data-link-type="dfn" href="https://drafts.csswg.org/css-easing-2/#easing-function" id="ref-for-easing-function">timing function</a> of the transition’s associated <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations/#animation-effect" id="ref-for-animation-effect①">animation effect</a> (see <a href="https://drafts.csswg.org/web-animations-1/#time-transformations"><cite>Web Animations</cite> § 4.6.11 Easing (effect timing transformations)</a>).</p> <p class="note" role="note"><span class="marker">Note:</span> Unlike CSS animations, the timing function for CSS transitions applies to the animation effect as opposed to the individual keyframes since this allows it to be reflected in the <a data-link-type="dfn" href="https://drafts.csswg.org/web-animations-1/#transformed-progress" id="ref-for-transformed-progress">transformed progress</a> as used when calculating @@ -1713,11 +1712,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css3-transitions">[CSS3-TRANSITIONS] <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-transitions/"><cite>CSS Transitions</cite></a>. URL: <a href="https://drafts.csswg.org/css-transitions/">https://drafts.csswg.org/css-transitions/</a> <dt id="biblio-cssom-1">[CSSOM-1] @@ -1736,9 +1735,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-web-animations-2">[WEB-ANIMATIONS-2] - <dd>Web Animations Level 2 URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> + <dd>Brian Birtles; Robert Flack. <a href="https://drafts.csswg.org/web-animations-2/"><cite>Web Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed"><c- g>Exposed</c-></a>=<c- n>Window</c->] @@ -1797,11 +1796,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSTransition" title="The CSSTransition interface of the Web Animations API represents an Animation object used for a CSS Transition.">CSSTransition</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>75+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>75+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>84+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> diff --git a/tests/github/w3c/csswg-drafts/css-ui-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-ui-3/Overview.console.txt index d8af91e2cd..24996415fc 100644 --- a/tests/github/w3c/csswg-drafts/css-ui-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-ui-3/Overview.console.txt @@ -1,5 +1,5 @@ FATAL ERROR: Not all required metadata was provided: - Missing a 'Implementation Report' entry. + Missing 'Implementation Report' LINT: Your document appears to use spaces to indent, but line 251 starts with tabs. LINT: Your document appears to use spaces to indent, but line 252 starts with tabs. LINT: Your document appears to use spaces to indent, but line 256 starts with tabs. @@ -36,146 +36,36 @@ LINT: Your document appears to use spaces to indent, but line 1421 starts with t LINT: Your document appears to use spaces to indent, but line 1422 starts with tabs. LINT: Your document appears to use spaces to indent, but line 1423 starts with tabs. LINE ~143: The biblio refs [[CSS-VALUES-3]] and [[css-values-3]] are both aliases of the same base reference [[css-values-3]]. Please choose one name and use it consistently. -LINE ~176: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~176: No 'property' refs found for 'height' with spec 'css2'. -'height' -LINE ~194: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~194: No 'property' refs found for 'height' with spec 'css2'. -'height' -LINE ~207: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~207: No 'property' refs found for 'padding-left' with spec 'css2'. -'padding-left' -LINE ~207: No 'property' refs found for 'padding-right' with spec 'css2'. -'padding-right' -LINE ~207: No 'property' refs found for 'border-left-width' with spec 'css2'. -'border-left-width' -LINE ~207: No 'property' refs found for 'border-right-width' with spec 'css2'. -'border-right-width' -LINE ~208: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~208: No 'property' refs found for 'padding-left' with spec 'css2'. -'padding-left' -LINE ~208: No 'property' refs found for 'padding-right' with spec 'css2'. -'padding-right' -LINE ~208: No 'property' refs found for 'border-left-width' with spec 'css2'. -'border-left-width' -LINE ~208: No 'property' refs found for 'border-right-width' with spec 'css2'. -'border-right-width' -LINE ~209: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~209: No 'property' refs found for 'padding-top' with spec 'css2'. -'padding-top' -LINE ~209: No 'property' refs found for 'padding-bottom' with spec 'css2'. -'padding-bottom' -LINE ~209: No 'property' refs found for 'border-top-width' with spec 'css2'. -'border-top-width' -LINE ~209: No 'property' refs found for 'border-bottom-width' with spec 'css2'. -'border-bottom-width' -LINE ~210: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~210: No 'property' refs found for 'padding-top' with spec 'css2'. -'padding-top' -LINE ~210: No 'property' refs found for 'padding-bottom' with spec 'css2'. -'padding-bottom' -LINE ~210: No 'property' refs found for 'border-top-width' with spec 'css2'. -'border-top-width' -LINE ~210: No 'property' refs found for 'border-bottom-width' with spec 'css2'. -'border-bottom-width' LINE 216: No 'dfn' refs found for 'content width' with spec 'css2'. <a bs-line-number="216" data-link-spec="css2" data-link-type="dfn" data-lt="content width">content width</a> -LINE ~216: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~216: No 'property' refs found for 'border-left-width' with spec 'css2'. -'border-left-width' -LINE ~216: No 'property' refs found for 'padding-left' with spec 'css2'. -'padding-left' LINE 218: No 'dfn' refs found for 'content width' with spec 'css2'. <a bs-line-number="218" data-link-spec="css2" data-link-type="dfn" data-lt="content width">content width</a> -LINE ~218: No 'property' refs found for 'margin-left' with spec 'css2'. -'margin-left' -LINE ~218: No 'property' refs found for 'border-left-width' with spec 'css2'. -'border-left-width' -LINE ~218: No 'property' refs found for 'padding-left' with spec 'css2'. -'padding-left' -LINE ~218: No 'property' refs found for 'width' with spec 'css2'. -'width' LINE 220: No 'dfn' refs found for 'content width' with spec 'css2'. <a bs-line-number="220" data-link-spec="css2" data-link-type="dfn" data-lt="content width">content width</a> LINE 220: No 'dfn' refs found for 'content height' with spec 'css2'. <a bs-line-number="220" data-link-spec="css2" data-link-type="dfn" data-lt="content height">content height</a> -LINE ~223: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~223: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~224: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~224: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~227: No 'property' refs found for 'width' with spec 'css2'. -'width' LINE 230: No 'dfn' refs found for 'content height' with spec 'css2'. <a bs-line-number="230" data-link-spec="css2" data-link-type="dfn" data-lt="content height">content height</a> -LINE ~230: No 'property' refs found for 'margin-top' with spec 'css2'. -'margin-top' -LINE ~230: No 'property' refs found for 'border-top-width' with spec 'css2'. -'border-top-width' -LINE ~230: No 'property' refs found for 'padding-top' with spec 'css2'. -'padding-top' -LINE ~230: No 'property' refs found for 'height' with spec 'css2'. -'height' LINE 232: No 'dfn' refs found for 'content width' with spec 'css2'. <a bs-line-number="232" data-link-spec="css2" data-link-type="dfn" data-lt="content width">content width</a> LINE 232: No 'dfn' refs found for 'content height' with spec 'css2'. <a bs-line-number="232" data-link-spec="css2" data-link-type="dfn" data-lt="content height">content height</a> -LINE ~235: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~235: No 'property' refs found for 'height' with spec 'css2'. -'height' -LINE ~236: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~236: No 'property' refs found for 'height' with spec 'css2'. -'height' -LINE ~331: No 'property' refs found for 'border-style' with spec 'css2'. -'border-style' LINE ~344: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE ~385: No 'property' refs found for 'border-width' with spec 'css2'. -'border-width' -LINE ~390: No 'property' refs found for 'border-style' with spec 'css2'. -'border-style' -LINE ~584: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~584: No 'property' refs found for 'height' with spec 'css2'. -'height' -LINE ~607: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~607: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~607: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~607: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~611: No 'property' refs found for 'width' with spec 'css2'. -'width' -LINE ~611: No 'property' refs found for 'height' with spec 'css2'. -'height' -LINE ~1003: No 'property' refs found for 'background-image' with spec 'css2'. -'background-image' -LINE ~1011: No 'property' refs found for 'background-image' with spec 'css2'. -'background-image' -LINE 1246: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' -LINE 1251: No 'property' refs found for 'visibility' with spec 'css2'. -''visibility: hidden'' -LINE 1251: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' +LINE ~372: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-radius +spec:css-backgrounds-3; type:property; text:border-radius +'border-radius' +LINE ~958: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-radius +spec:css-backgrounds-3; type:property; text:border-radius +'border-radius' LINE ~1258: No 'property' refs found for 'color' with spec 'css-color-3'. 'color' -LINE ~133: Couldn't find section '#property-defs' in spec 'css2': -[[CSS2#property-defs]] LINE ~385: Couldn't find section '#the-border-width' in spec 'css-backgrounds-3': [[css-backgrounds-3#the-border-width]] LINE ~390: Couldn't find section '#the-border-style' in spec 'css-backgrounds-3': diff --git a/tests/github/w3c/csswg-drafts/css-ui-3/Overview.html b/tests/github/w3c/csswg-drafts/css-ui-3/Overview.html index 4059bf6342..caf5ccfcb6 100644 --- a/tests/github/w3c/csswg-drafts/css-ui-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-ui-3/Overview.html @@ -724,7 +724,7 @@ <h1 class="p-name no-ref" id="title">CSS Basic User Interface Module Level 3 (CS </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -747,22 +747,22 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> <p> This document was published - by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a W3C Recommendation using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a W3C Recommendation using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. A W3C Recommendation is a specification that, after extensive consensus-building, is endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members, - and has commitments from Working Group members to <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> + and has commitments from Working Group members to <a href="https://www.w3.org/policies/patent-policy/#sec-Requirements">royalty-free licensing</a> for implementations. </p> <p>Please send feedback by <a href="https://github.com/w3c/csswg-drafts/issues">filing issues in GitHub</a> (preferred), including the spec code “css-ui” in the title, like this: “[css-ui] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-ui%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -871,7 +871,7 @@ <h2 class="heading settled" data-level="2" id="interaction"><span class="secno"> and Information on the stacking of outlines defined in <a href="https://www.w3.org/TR/CSS2/zindex.html">Appendix E</a> of Cascading Style Sheets, level 2, revision 1 <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <li><a href="https://www.w3.org/TR/2000/WD-css3-userint-20000216">User Interface for CSS3 (16 February 2000)</a> </ul> - <p class="note" role="note"><span class="marker">Note:</span> The semantics of property definition tables were first introduced in <span spec-section="#property-defs"></span>. + <p class="note" role="note"><span class="marker">Note:</span> The semantics of property definition tables were first introduced in <a href="https://www.w3.org/TR/CSS21/about.html#property-defs"><cite>CSS 2.1</cite> § 1.4.2 CSS property definitions</a>. More up-to-date definitions can be found in <a data-link-type="biblio" href="#biblio-css-transitions-1" title="CSS Transitions">[css-transitions-1]</a>, <a data-link-type="biblio" href="#biblio-css-values-3" title="CSS Values and Units Module Level 3">[css-values-3]</a>, and <a data-link-type="biblio" href="#biblio-css-cascade-4" title="CSS Cascading and Inheritance Level 4">[css-cascade-4]</a>. For the reader’s convenience, @@ -931,7 +931,7 @@ <h3 class="heading settled" data-level="4.1" id="box-sizing"><span class="secno" is laid out and drawn inside this specified width and height. The content width and height are calculated by subtracting the border and padding widths of the respective sides -from the specified <a class="property css" data-link-type="property">width</a> and <span class="property">height</span> properties. +from the specified <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width">width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height">height</a> properties. As the content width and height <a href="https://www.w3.org/TR/CSS2/visudet.html#the-width-property" id="4dfcfd3c0">cannot be negative</a> (<a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a>, section 10.2), this computation is floored at 0. Used values, as exposed for instance through getComputedStyle(), also refer to the border box. @@ -939,7 +939,7 @@ <h3 class="heading settled" data-level="4.1" id="box-sizing"><span class="secno" by legacy HTML user agents for replaced elements and input elements.</p> </dl> <p class="note" role="note"><span class="marker">Note:</span> In contrast to the length and percentage values, -the <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/CSS2/visudet.html#the-width-property" id="ref-for-the-width-property">auto</a> value of the <a class="property css" data-link-type="property">width</a> and <span class="property">height</span> properties +the <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/CSS2/visudet.html#the-width-property" id="ref-for-the-width-property">auto</a> value of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width①">width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height①">height</a> properties (as well as other keyword values introduced by later specifications, unless otherwise specified) is not influenced by the <a class="property css" data-link-type="property" href="#propdef-box-sizing" id="ref-for-propdef-box-sizing①">box-sizing</a> property, @@ -954,42 +954,42 @@ <h3 class="heading settled" data-level="4.1" id="box-sizing"><span class="secno" <tbody> <tr> <th><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="min-inner-width">min inner width</dfn> - <td><a class="property css" data-link-type="property">min-width</a> - <td>max(0, <a class="property css" data-link-type="property">min-width</a> − <span class="property">padding-left</span> − <span class="property">padding-right</span> − <span class="property">border-left-width</span> − <span class="property">border-right-width</span>) + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a> + <td>max(0, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width①">min-width</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left" id="ref-for-propdef-padding-left">padding-left</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-right" id="ref-for-propdef-padding-right">padding-right</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width" id="ref-for-propdef-border-left-width">border-left-width</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width" id="ref-for-propdef-border-right-width">border-right-width</a>) <tr> <th><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="max-inner-width">max inner width</dfn> - <td><a class="property css" data-link-type="property">max-width</a> - <td>max(0, <a class="property css" data-link-type="property">max-width</a> − <span class="property">padding-left</span> − <span class="property">padding-right</span> − <span class="property">border-left-width</span> − <span class="property">border-right-width</span>) + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a> + <td>max(0, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width①">max-width</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left" id="ref-for-propdef-padding-left①">padding-left</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-right" id="ref-for-propdef-padding-right①">padding-right</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width" id="ref-for-propdef-border-left-width①">border-left-width</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width" id="ref-for-propdef-border-right-width①">border-right-width</a>) <tr> <th><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="min-inner-height">min inner height</dfn> - <td><a class="property css" data-link-type="property">min-height</a> - <td>max(0, <a class="property css" data-link-type="property">min-height</a> − <span class="property">padding-top</span> − <span class="property">padding-bottom</span> − <span class="property">border-top-width</span> − <span class="property">border-bottom-width</span>) + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a> + <td>max(0, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-top" id="ref-for-propdef-padding-top">padding-top</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom" id="ref-for-propdef-padding-bottom">padding-bottom</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width" id="ref-for-propdef-border-top-width">border-top-width</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width" id="ref-for-propdef-border-bottom-width">border-bottom-width</a>) <tr> <th><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="max-inner-height">max inner height</dfn> - <td><a class="property css" data-link-type="property">max-height</a> - <td>max(0, <a class="property css" data-link-type="property">max-height</a> − <span class="property">padding-top</span> − <span class="property">padding-bottom</span> − <span class="property">border-top-width</span> − <span class="property">border-bottom-width</span>) + <td><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a> + <td>max(0, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-top" id="ref-for-propdef-padding-top①">padding-top</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom" id="ref-for-propdef-padding-bottom①">padding-bottom</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width" id="ref-for-propdef-border-top-width①">border-top-width</a> − <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width" id="ref-for-propdef-border-bottom-width①">border-bottom-width</a>) </table> <p>The <a href="https://www.w3.org/TR/CSS2/visudet.html">Visual formatting model details</a> of <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> are written assuming <a class="css" data-link-type="propdesc" href="#propdef-box-sizing" id="ref-for-propdef-box-sizing⑤">box-sizing: content-box</a>. The following disambiguations are made to clarify the behavior for all values of <span class="property" id="ref-for-propdef-box-sizing⑥">box-sizing</span>:</p> <ol> - <li>In <a href="https://www.w3.org/TR/CSS2/visudet.html#blockwidth">10.3.3</a>, the second <q>width</q> in the following phrase is to be interpreted as <a data-link-type="dfn">content width</a>: <q>If <a class="property css" data-link-type="property">width</a> is not <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/CSS2/visudet.html#the-width-property" id="ref-for-the-width-property①">auto</a> and <span class="property">border-left-width</span> + <span class="property">padding-left</span> + <span class="property">width</span> + [...]</q> - <li>In <a href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-width">10.3.7</a>, <q>width</q> is to be interpreted as <a data-link-type="dfn">content width</a> in the following equation: <q><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS2/visuren.html#position-props" id="ref-for-position-props">left</a> + <a class="property css" data-link-type="property">margin-left</a> + <span class="property">border-left-width</span> + <span class="property">padding-left</span> + <span class="property">width</span> + [...]</q> + <li>In <a href="https://www.w3.org/TR/CSS2/visudet.html#blockwidth">10.3.3</a>, the second <q>width</q> in the following phrase is to be interpreted as <a data-link-type="dfn">content width</a>: <q>If <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width②">width</a> is not <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/CSS2/visudet.html#the-width-property" id="ref-for-the-width-property①">auto</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width" id="ref-for-propdef-border-left-width②">border-left-width</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left" id="ref-for-propdef-padding-left②">padding-left</a> + <span class="property" id="ref-for-propdef-width③">width</span> + [...]</q> + <li>In <a href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-width">10.3.7</a>, <q>width</q> is to be interpreted as <a data-link-type="dfn">content width</a> in the following equation: <q><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS2/visuren.html#position-props" id="ref-for-position-props">left</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-left" id="ref-for-propdef-margin-left">margin-left</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width" id="ref-for-propdef-border-left-width③">border-left-width</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-left" id="ref-for-propdef-padding-left③">padding-left</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width④">width</a> + [...]</q> <li> In <a href="https://www.w3.org/TR/CSS2/visudet.html#min-max-widths">10.4</a>, <q>width</q>, <q>height</q>, <q>min-width</q>, <q>max-width</q>, <q>min-height</q> and <q>max-height</q> are respectively to be interpreted as <a data-link-type="dfn">content width</a>, <span>content height</span>, <a data-link-type="dfn" href="#min-inner-width" id="ref-for-min-inner-width">min inner width</a>, <a data-link-type="dfn" href="#max-inner-width" id="ref-for-max-inner-width">max inner width</a>, <a data-link-type="dfn" href="#min-inner-height" id="ref-for-min-inner-height">min inner height</a> and <a data-link-type="dfn" href="#max-inner-height" id="ref-for-max-inner-height">max inner height</a> in the following phrases: <ol> <li><q>The tentative used width is calculated [...]</q> - <li><q>If the tentative used width is greater than <a class="property css" data-link-type="property">max-width</a>, the rules above are applied again, but this time using the computed value of <span class="property">max-width</span> as the computed value for <span class="property">width</span>.</q> - <li><q>If the resulting width is smaller than <a class="property css" data-link-type="property">min-width</a>, the rules above are applied again, but this time using the value of <span class="property">min-width</span> as the computed value for <span class="property">width</span>.</q> + <li><q>If the tentative used width is greater than <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width②">max-width</a>, the rules above are applied again, but this time using the computed value of <span class="property" id="ref-for-propdef-max-width③">max-width</span> as the computed value for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width⑤">width</a>.</q> + <li><q>If the resulting width is smaller than <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width②">min-width</a>, the rules above are applied again, but this time using the value of <span class="property" id="ref-for-propdef-min-width③">min-width</span> as the computed value for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width⑥">width</a>.</q> <li><q>Select from the table the resolved height and width values for the appropriate constraint violation. Take the max-width and max-height as max(min, max) so that min ≤ max holds true. In this table w and h stand for the results of the width and height computations [...]</q> <li>All instances of these words in the table - <li><q>Then apply the rules under "Calculating widths and margins" above, as if <a class="property css" data-link-type="property">width</a> were computed as this value.</q> + <li><q>Then apply the rules under "Calculating widths and margins" above, as if <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width⑦">width</a> were computed as this value.</q> </ol> - <li>In <a href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-height">10.6.4</a>, <q>height</q> is to be interpreted as <a data-link-type="dfn">content height</a> in the following equation: <q><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS2/visuren.html#position-props" id="ref-for-position-props①">top</a> + <a class="property css" data-link-type="property">margin-top</a> + <span class="property">border-top-width</span> + <span class="property">padding-top</span> + <span class="property">height</span> + [...]</q> + <li>In <a href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-height">10.6.4</a>, <q>height</q> is to be interpreted as <a data-link-type="dfn">content height</a> in the following equation: <q><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS2/visuren.html#position-props" id="ref-for-position-props①">top</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-margin-top" id="ref-for-propdef-margin-top">margin-top</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width" id="ref-for-propdef-border-top-width②">border-top-width</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-padding-top" id="ref-for-propdef-padding-top②">padding-top</a> + <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height②">height</a> + [...]</q> <li> In <a href="https://www.w3.org/TR/CSS2/visudet.html#min-max-heights">10.7</a>, <q>width</q>, <q>height</q>, <q>min-height</q> and <q>max-height</q> are respectively to be interpreted as <a data-link-type="dfn">content width</a>, <span>content height</span>, <a data-link-type="dfn" href="#min-inner-height" id="ref-for-min-inner-height①">min inner height</a> and <a data-link-type="dfn" href="#max-inner-height" id="ref-for-max-inner-height①">max inner height</a> in the following phrases: <ol> <li><q>The tentative used height is calculated [...]</q> - <li><q>If this tentative height is greater than <a class="property css" data-link-type="property">max-height</a>, the rules above are applied again, but this time using the value of <span class="property">max-height</span> as the computed value for <span class="property">height</span>.</q> - <li><q>If the resulting height is smaller than <a class="property css" data-link-type="property">min-height</a>, the rules above are applied again, but this time using the value of <span class="property">min-height</span> as the computed value for <span class="property">height</span>.</q> + <li><q>If this tentative height is greater than <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height②">max-height</a>, the rules above are applied again, but this time using the value of <span class="property" id="ref-for-propdef-max-height③">max-height</span> as the computed value for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height③">height</a>.</q> + <li><q>If the resulting height is smaller than <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height②">min-height</a>, the rules above are applied again, but this time using the value of <span class="property" id="ref-for-propdef-min-height③">min-height</span> as the computed value for <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height④">height</a>.</q> <li><q>[...] use the algorithm under Minimum and maximum widths above to find the used width and height. Then apply the rules under "Computing heights and margins" above, using the resulting width and height as if they were the computed values.</q> </ol> </ol> @@ -1116,7 +1116,7 @@ <h3 class="heading settled" data-level="5.3" id="outline-style"><span class="sec <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-outline-style">outline-style</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod">auto <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one①">|</a> &lt;<a class="property css" data-link-type="property">border-style</a>> + <td class="prod">auto <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one①">|</a> &lt;<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-style" id="ref-for-propdef-border-style">border-style</a>> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>none @@ -1147,7 +1147,7 @@ <h3 class="heading settled" data-level="5.4" id="outline-color"><span class="sec <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-outline-color">outline-color</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color">&lt;color></a> <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one②">|</a> invert + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color">&lt;color></a> <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one②">|</a> invert <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>invert @@ -1164,7 +1164,7 @@ <h3 class="heading settled" data-level="5.4" id="outline-color"><span class="sec <th><a href="https://www.w3.org/TR/css-cascade/#computed">Computed value:</a> <td>The computed value for <a class="css" data-link-type="maybe" href="#valdef-outline-color-invert" id="ref-for-valdef-outline-color-invert">invert</a> is <span class="css" id="ref-for-valdef-outline-color-invert①">invert</span>; the computed value of <span class="css">currentColor</span> is <span class="css">currentColor</span> (See <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor" id="ref-for-valdef-color-currentcolor">currentcolor</a>); -see the <a class="property css" data-link-type="property">color</a> property for other <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> values. +see the <a class="property css" data-link-type="property">color</a> property for other <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> values. <tr> <th><a href="https://www.w3.org/TR/cssom/#serializing-css-values">Canonical order:</a> <td>per grammar @@ -1186,16 +1186,16 @@ <h3 class="heading settled" data-level="5.4" id="outline-color"><span class="sec (as borders on inline elements are when lines are broken).</p> <p>The parts of the outline are not required to be rectangular. To the extent that the outline follows the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS2/box.html#border-edge" id="ref-for-border-edge">border edge</a>, -it should follow the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius" id="ref-for-propdef-border-radius">border-radius</a> curve.</p> +it should follow the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-radius" id="ref-for-propdef-border-radius">border-radius</a> curve.</p> <p>The position of the outline may be affected by descendant boxes.</p> <p>User agents should use an algorithm for determining the outline that encloses a region appropriate for conveying the concept of focus to the user.</p> <p class="note" role="note"><span class="marker">Note:</span> This specification does not define the exact position or shape of the outline, but it is typically drawn immediately outside the border box.</p> <p>The <a class="property css" data-link-type="property" href="#propdef-outline-width" id="ref-for-propdef-outline-width②">outline-width</a> property accepts -the same values as <a class="property css" data-link-type="property">border-width</a> (<span spec-section="#the-border-width"></span>).</p> +the same values as <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-width" id="ref-for-propdef-border-width">border-width</a> (<span spec-section="#the-border-width"></span>).</p> <p>The <a class="property css" data-link-type="property" href="#propdef-outline-style" id="ref-for-propdef-outline-style②">outline-style</a> property accepts -the same values as <a class="property css" data-link-type="property">border-style</a> (<span spec-section="#the-border-style"></span>), +the same values as <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/box.html#propdef-border-style" id="ref-for-propdef-border-style①">border-style</a> (<span spec-section="#the-border-style"></span>), except that <span class="css">hidden</span> is not a legal outline style. In addition, in CSS3, <span class="property" id="ref-for-propdef-outline-style③">outline-style</span> accepts the value <span class="css">auto</span>. The <span class="css">auto</span> value permits the user agent @@ -1388,7 +1388,7 @@ <h3 class="heading settled" data-level="6.1" id="resize"><span class="secno">6.1 <p class="note" role="note"><span class="marker">Note:</span> the <a class="property css" data-link-type="property" href="#propdef-resize" id="ref-for-propdef-resize⑥">resize</a> property may apply to generated content in the future if there is implementation of the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/css-pseudo-4/#csspseudoelement" id="ref-for-csspseudoelement">CSSPseudoElement</a></code> interface (See <a data-link-type="biblio" href="#biblio-css-pseudo-4" title="CSS Pseudo-Elements Module Level 4">[css-pseudo-4]</a>).</p> <p>When an element is resized by the user, the user agent sets -the <a class="property css" data-link-type="property">width</a> and <span class="property">height</span> properties +the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width⑧">width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height⑤">height</a> properties to px unit length values of the size indicated by the user, in the element’s <a href="https://www.w3.org/TR/css-style-attr/#style-attribute">style attribute</a> DOM, replacing existing property declaration(s), if any, @@ -1406,10 +1406,10 @@ <h3 class="heading settled" data-level="6.1" id="resize"><span class="secno">6.1 as well as platform conventions and constraints when deciding how to convey the resizing mechanism to the user.</p> <p>The user agent must allow the user to resize the element -with no other constraints than what is imposed by <a class="property css" data-link-type="property">min-width</a>, <span class="property">max-width</span>, <span class="property">min-height</span>, and <span class="property">max-height</span>.</p> +with no other constraints than what is imposed by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width④">min-width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width④">max-width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height④">min-height</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height④">max-height</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> There may be situations where user attempts to resize an element appear to be overridden or ignored, e.g. because of <span class="css">!important</span> cascading declarations that supersede -that element’s <a href="https://www.w3.org/TR/css-style-attr/#style-attribute">style attribute</a> <a class="property css" data-link-type="property">width</a> and <span class="property">height</span> properties in the DOM.</p> +that element’s <a href="https://www.w3.org/TR/css-style-attr/#style-attribute">style attribute</a> <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-width" id="ref-for-propdef-width⑨">width</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-height" id="ref-for-propdef-height⑥">height</a> properties in the DOM.</p> <p>Changes to the computed value of an element’s <a class="property css" data-link-type="property" href="#propdef-resize" id="ref-for-propdef-resize⑦">resize</a> property do not reset changes to the <a href="https://www.w3.org/TR/css-style-attr/#style-attribute">style attribute</a> made due to user resizing of that element.</p> @@ -1699,7 +1699,7 @@ <h4 class="heading settled" data-level="7.1.1" id="cursor"><span class="secno">7 </table> <p>This property specifies the type of cursor to be displayed for the pointing device when the cursor’s hotspot is within the element’s <a data-link-type="dfn" href="https://www.w3.org/TR/CSS2/box.html#border-edge" id="ref-for-border-edge④">border edge</a>.</p> - <p class="note" role="note"><span class="marker">Note:</span> As per <span spec-section="#the-border-radius"></span>, the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS2/box.html#border-edge" id="ref-for-border-edge⑤">border edge</a> is affected by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius" id="ref-for-propdef-border-radius①">border-radius</a>.</p> + <p class="note" role="note"><span class="marker">Note:</span> As per <span spec-section="#the-border-radius"></span>, the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS2/box.html#border-edge" id="ref-for-border-edge⑤">border edge</a> is affected by <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-radius" id="ref-for-propdef-border-radius①">border-radius</a>.</p> <p>In the case of overlapping elements, which element determines the type of cursor is based on hit testing: @@ -1732,18 +1732,18 @@ <h4 class="heading settled" data-level="7.1.1" id="cursor"><span class="secno">7 Conforming user agents may, instead of <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-values-4/#url-value" id="ref-for-url-value②">&lt;url></a>, support <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-image" id="ref-for-typedef-image">&lt;image></a> which is a superset. <p>The UA must support the following image file formats:</p> <ul> - <li>PNG, as defined in <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a> + <li>PNG, as defined in <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a> <li>SVG, as defined in <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, in <a href="https://www.w3.org/TR/SVG2/conform.html#secure-static-mode">secure static mode</a> <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>, if it has a <a data-link-type="dfn" href="https://www.w3.org/TR/css-images-3/#natural-size" id="ref-for-natural-size">natural size</a>. <li>any other non-animated image file format that they support for <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-image" id="ref-for-typedef-image①">&lt;image></a> in other properties, - such as the <a class="property css" data-link-type="property">background-image</a> property + such as the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/colors.html#propdef-background-image" id="ref-for-propdef-background-image">background-image</a> property </ul> <p>In addition, the UA should support the following image file formats:</p> <ul> <li>SVG, as defined in <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, in <a href="https://www.w3.org/TR/SVG2/conform.html#secure-animated-mode">secure animated mode</a> <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>, if it has a <a data-link-type="dfn" href="https://www.w3.org/TR/css-images-3/#natural-size" id="ref-for-natural-size①">natural size</a>. <li>any other animated image file format that they support for <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-image" id="ref-for-typedef-image②">&lt;image></a> in other properties, - such as the <a class="property css" data-link-type="property">background-image</a> property + such as the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/colors.html#propdef-background-image" id="ref-for-propdef-background-image①">background-image</a> property </ul> <p>The UA may also support additional file formats, including SVG, as defined in <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, in secure static mode or secure animated mode <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>, even if it does not have a <a data-link-type="dfn" href="https://www.w3.org/TR/css-images-3/#natural-size" id="ref-for-natural-size②">natural size</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> The CSS Working group initially intended support for all SVG, @@ -1779,7 +1779,7 @@ <h4 class="heading settled" data-level="7.1.1" id="cursor"><span class="secno">7 which represents the precise position that is being pointed to. <p class="note" role="note"><span class="marker">Note:</span> This specification does not define how the coordinate systems of the various types of <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-image" id="ref-for-typedef-image③">&lt;image></a> are established, -and defers these definitions to <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Image Values and Replaced Content Module Level 4">[CSS4-IMAGES]</a>.</p> +and defers these definitions to <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Images Module Level 4">[CSS4-IMAGES]</a>.</p> <p>If the values are unspecified, then the natural hotspot defined inside the image resource itself is used. If both the values are unspecific and the referenced cursor has no defined hotspot, @@ -1912,11 +1912,11 @@ <h5 class="heading settled" data-level="7.1.1.1" id="canvas_cursor"><span class= in order to allow styling of the cursor when not over any element, the canvas cursor re-uses the root element’s cursor. However, if no boxes are generated for the root element -(for example, if the root element has <a class="css" data-link-type="propdesc">display: none</a>), +(for example, if the root element has <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display: none</a>), then the canvas cursor is the platform-dependent default cursor.</p> <p class="note" role="note"><span class="marker">Note:</span> An element might be invisible, but still generate boxes. For example, -if the element has <a class="css" data-link-type="propdesc">visibility: hidden</a> but not <span class="css">display: none</span>, +if the element has <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility" id="ref-for-propdef-visibility">visibility: hidden</a> but not <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display①">display: none</a>, boxes are generated for it and its cursor is used for the canvas.</p> <h3 class="heading settled" data-level="7.2" id="insertion-caret"><span class="secno">7.2. </span><span class="content">Insertion caret</span><a class="self-link" href="#insertion-caret"></a></h3> <h4 class="heading settled" data-level="7.2.1" id="caret-color"><span class="secno">7.2.1. </span><span class="content">Coloring the Insertion Caret: the <a class="property css" data-link-type="property" href="#propdef-caret-color" id="ref-for-propdef-caret-color">caret-color</a> property</span><a class="self-link" href="#caret-color"></a></h4> @@ -1927,7 +1927,7 @@ <h4 class="heading settled" data-level="7.2.1" id="caret-color"><span class="sec <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-caret-color">caret-color</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod">auto <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one④②">|</a> <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color②">&lt;color></a> + <td class="prod">auto <a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#comb-one" id="ref-for-comb-one④②">|</a> <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color②">&lt;color></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>auto @@ -1944,7 +1944,7 @@ <h4 class="heading settled" data-level="7.2.1" id="caret-color"><span class="sec <th><a href="https://www.w3.org/TR/css-cascade/#computed">Computed value:</a> <td>The computed value for <a class="css" data-link-type="maybe" href="#valdef-caret-color-auto" id="ref-for-valdef-caret-color-auto">auto</a> is <span class="css" id="ref-for-valdef-caret-color-auto①">auto</span>; the computed value of <span class="css">currentColor</span> is <span class="css">currentColor</span> (See <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor" id="ref-for-valdef-color-currentcolor①">currentcolor</a>); -see the <a class="property css" data-link-type="property">color</a> property for other <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color③">&lt;color></a> values. +see the <a class="property css" data-link-type="property">color</a> property for other <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color③">&lt;color></a> values. <tr> <th><a href="https://www.w3.org/TR/cssom/#serializing-css-values">Canonical order:</a> <td>per grammar @@ -1958,7 +1958,7 @@ <h4 class="heading settled" data-level="7.2.1" id="caret-color"><span class="sec User agents may automatically adjust the color of caret to ensure good visibility and contrast with the surrounding content, possibly based on the currentColor, background, shadows, etc. - <dt><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color④">&lt;color></a> + <dt><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color④">&lt;color></a> <dd>The insertion caret is colored with the specified color. </dl> <p>The caret is a visible indicator of the insertion point in an element where text (and potentially other content) is inserted by the user. This property controls the color of that visible indicator.</p> @@ -2370,15 +2370,23 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="5747d295">&lt;line-width></span> - <li><span class="dfn-paneled" id="3a4a9318">border-radius</span> <li><span class="dfn-paneled" id="1c96a88c">none</span> </ul> + <li> + <a data-link-type="biblio">[CSS-BORDERS-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="f24b672a">border-radius</span> + </ul> <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="329ecc08">&lt;color></span> <li><span class="dfn-paneled" id="a42c65ac">currentcolor</span> </ul> + <li> + <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="d04b6986">&lt;color></span> + </ul> <li> <a data-link-type="biblio">[CSS-IMAGES-3]</a> defines the following terms: <ul> @@ -2422,13 +2430,34 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS2]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="2e21b9cc">auto</span> + <li><span class="dfn-paneled" id="5c96d703">background-image</span> <li><span class="dfn-paneled" id="c6866721">border edge</span> + <li><span class="dfn-paneled" id="f49fa90c">border-bottom-width</span> + <li><span class="dfn-paneled" id="aab9872f">border-left-width</span> + <li><span class="dfn-paneled" id="4a26d2b2">border-right-width</span> + <li><span class="dfn-paneled" id="5f182644">border-style</span> + <li><span class="dfn-paneled" id="b13558b5">border-top-width</span> + <li><span class="dfn-paneled" id="dd2673ce">border-width</span> <li><span class="dfn-paneled" id="f42088a1">bottom</span> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="21543747">height</span> <li><span class="dfn-paneled" id="faacc054">left</span> + <li><span class="dfn-paneled" id="2a556d5f">margin-left</span> + <li><span class="dfn-paneled" id="176cfa24">margin-top</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> <li><span class="dfn-paneled" id="11b5911d">overflow</span> + <li><span class="dfn-paneled" id="a7f12bc0">padding-bottom</span> + <li><span class="dfn-paneled" id="056211a6">padding-left</span> + <li><span class="dfn-paneled" id="b3668a44">padding-right</span> + <li><span class="dfn-paneled" id="7a7972c2">padding-top</span> <li><span class="dfn-paneled" id="7818f443">right</span> <li><span class="dfn-paneled" id="e4729cc6">top</span> + <li><span class="dfn-paneled" id="96bdf966">visibility</span> <li><span class="dfn-paneled" id="0cc70dad">visible</span> + <li><span class="dfn-paneled" id="1b010cf3">width</span> </ul> <li> <a data-link-type="biblio">[HTML]</a> defines the following terms: @@ -2450,15 +2479,19 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 26 July 2021. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 11 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> + <dt id="biblio-css-borders-4">[CSS-BORDERS-4] + <dd><a href="https://drafts.csswg.org/css-borders-4/"><cite>CSS Borders and Box Decorations Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-borders-4/">https://drafts.csswg.org/css-borders-4/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 1 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 13 February 2024. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dt id="biblio-css-color-5">[CSS-COLOR-5] + <dd>Chris Lilley; et al. <a href="https://www.w3.org/TR/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. 29 February 2024. WD. URL: <a href="https://www.w3.org/TR/css-color-5/">https://www.w3.org/TR/css-color-5/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 17 December 2020. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 18 December 2023. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 1 December 2022. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. 22 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-values-3/">https://www.w3.org/TR/css-values-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 19 October 2022. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 12 March 2024. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. 30 July 2019. CR. URL: <a href="https://www.w3.org/TR/css-writing-modes-4/">https://www.w3.org/TR/css-writing-modes-4/</a> <dt id="biblio-css2">[CSS2] @@ -2466,7 +2499,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-png">[PNG] - <dd>Tom Lane. <a href="https://www.w3.org/TR/PNG/"><cite>Portable Network Graphics (PNG) Specification (Second Edition)</cite></a>. 10 November 2003. REC. URL: <a href="https://www.w3.org/TR/PNG/">https://www.w3.org/TR/PNG/</a> + <dd>Chris Lilley; et al. <a href="https://www.w3.org/TR/png-3/"><cite>Portable Network Graphics (PNG) Specification (Third Edition)</cite></a>. 18 July 2024. CR. URL: <a href="https://www.w3.org/TR/png-3/">https://www.w3.org/TR/png-3/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-svg11">[SVG11] @@ -2474,7 +2507,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-svg2">[SVG2] <dd>Amelia Bellamy-Royds; et al. <a href="https://www.w3.org/TR/SVG2/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. 4 October 2018. CR. URL: <a href="https://www.w3.org/TR/SVG2/">https://www.w3.org/TR/SVG2/</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> @@ -2489,7 +2522,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css1">[CSS1] <dd>Håkon Wium Lie; Bert Bos. <a href="https://www.w3.org/TR/CSS1/"><cite>Cascading Style Sheets, level 1</cite></a>. 13 September 2018. REC. URL: <a href="https://www.w3.org/TR/CSS1/">https://www.w3.org/TR/CSS1/</a> <dt id="biblio-css4-images">[CSS4-IMAGES] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. 13 April 2017. WD. URL: <a href="https://www.w3.org/TR/css-images-4/">https://www.w3.org/TR/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. 17 February 2023. WD. URL: <a href="https://www.w3.org/TR/css-images-4/">https://www.w3.org/TR/css-images-4/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -2823,42 +2856,63 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "use strict"; { let dfnPanelData = { +"056211a6": {"dfnID":"056211a6","dfnText":"padding-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-left"},{"id":"ref-for-propdef-padding-left\u2460"},{"id":"ref-for-propdef-padding-left\u2461"},{"id":"ref-for-propdef-padding-left\u2462"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-left"}, "0cc70dad": {"dfnID":"0cc70dad","dfnText":"visible","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"},{"id":"ref-for-propdef-overflow\u2460"},{"id":"ref-for-propdef-overflow\u2461"},{"id":"ref-for-propdef-overflow\u2462"},{"id":"ref-for-propdef-overflow\u2463"}],"title":"6.1. Resizing Boxes: the resize property"},{"refs":[{"id":"ref-for-propdef-overflow\u2464"},{"id":"ref-for-propdef-overflow\u2465"}],"title":"6.2. \n Overflow Ellipsis: the text-overflow property"}],"url":"https://www.w3.org/TR/CSS2/visufx.html#propdef-overflow"}, "0fc40460": {"dfnID":"0fc40460","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-canvas"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/canvas.html#canvas"}, "11b5911d": {"dfnID":"11b5911d","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"},{"id":"ref-for-propdef-overflow\u2460"},{"id":"ref-for-propdef-overflow\u2461"},{"id":"ref-for-propdef-overflow\u2462"},{"id":"ref-for-propdef-overflow\u2463"}],"title":"6.1. Resizing Boxes: the resize property"},{"refs":[{"id":"ref-for-propdef-overflow\u2464"},{"id":"ref-for-propdef-overflow\u2465"}],"title":"6.2. \n Overflow Ellipsis: the text-overflow property"}],"url":"https://www.w3.org/TR/CSS2/visufx.html#propdef-overflow"}, +"176cfa24": {"dfnID":"176cfa24","dfnText":"margin-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-top"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin-top"}, +"1b010cf3": {"dfnID":"1b010cf3","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"},{"id":"ref-for-propdef-width\u2462"},{"id":"ref-for-propdef-width\u2463"},{"id":"ref-for-propdef-width\u2464"},{"id":"ref-for-propdef-width\u2465"},{"id":"ref-for-propdef-width\u2466"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-propdef-width\u2467"},{"id":"ref-for-propdef-width\u2468"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-width"}, "1c96a88c": {"dfnID":"1c96a88c","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-line-style-none"}],"title":"5.2. Outline Thickness: the outline-width property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#valdef-line-style-none"}, +"21543747": {"dfnID":"21543747","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"},{"id":"ref-for-propdef-height\u2461"},{"id":"ref-for-propdef-height\u2462"},{"id":"ref-for-propdef-height\u2463"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-propdef-height\u2464"},{"id":"ref-for-propdef-height\u2465"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-height"}, "29399d44": {"dfnID":"29399d44","dfnText":"picture","external":true,"refSections":[{"refs":[{"id":"ref-for-the-picture-element"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element"}, +"2a556d5f": {"dfnID":"2a556d5f","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin-left"}, "2e21b9cc": {"dfnID":"2e21b9cc","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"4dfcfd3c0"},{"id":"ref-for-the-width-property"},{"id":"ref-for-the-width-property\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS2/visudet.html#the-width-property"}, -"329ecc08": {"dfnID":"329ecc08","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"},{"id":"ref-for-typedef-color\u2460"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"},{"id":"ref-for-typedef-color\u2462"},{"id":"ref-for-typedef-color\u2463"}],"title":"7.2.1. Coloring the Insertion Caret: the caret-color property"}],"url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "35bf32f2": {"dfnID":"35bf32f2","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"},{"id":"ref-for-typedef-image\u2460"},{"id":"ref-for-typedef-image\u2461"},{"id":"ref-for-typedef-image\u2462"}],"title":"7.1.1. Styling the Cursor: the cursor property"},{"refs":[{"id":"ref-for-typedef-image\u2463"}],"title":"Appendix C. Considerations for Security and Privacy"}],"url":"https://www.w3.org/TR/css-images-3/#typedef-image"}, -"3a4a9318": {"dfnID":"3a4a9318","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-propdef-border-radius\u2460"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"},{"id":"ref-for-propdef-min-height\u2460"},{"id":"ref-for-propdef-min-height\u2461"},{"id":"ref-for-propdef-min-height\u2462"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-propdef-min-height\u2463"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "45c278c3": {"dfnID":"45c278c3","dfnText":"svg","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-svg"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/SVG2/struct.html#elementdef-svg"}, +"4a26d2b2": {"dfnID":"4a26d2b2","dfnText":"border-right-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-right-width"},{"id":"ref-for-propdef-border-right-width\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width"}, "4eb9d37e": {"dfnID":"4eb9d37e","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-comb-one\u2460"}],"title":"5.3. Outline Patterns: the outline-style property"},{"refs":[{"id":"ref-for-comb-one\u2461"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"6.1. Resizing Boxes: the resize property"},{"refs":[{"id":"ref-for-comb-one\u2465"}],"title":"6.2. \n Overflow Ellipsis: the text-overflow property"},{"refs":[{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"},{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"},{"id":"ref-for-comb-one\u2461\u2465"},{"id":"ref-for-comb-one\u2461\u2466"},{"id":"ref-for-comb-one\u2461\u2467"},{"id":"ref-for-comb-one\u2461\u2468"},{"id":"ref-for-comb-one\u2462\u24ea"},{"id":"ref-for-comb-one\u2462\u2460"},{"id":"ref-for-comb-one\u2462\u2461"},{"id":"ref-for-comb-one\u2462\u2462"},{"id":"ref-for-comb-one\u2462\u2463"},{"id":"ref-for-comb-one\u2462\u2464"},{"id":"ref-for-comb-one\u2462\u2465"},{"id":"ref-for-comb-one\u2462\u2466"},{"id":"ref-for-comb-one\u2462\u2467"},{"id":"ref-for-comb-one\u2462\u2468"},{"id":"ref-for-comb-one\u2463\u24ea"},{"id":"ref-for-comb-one\u2463\u2460"}],"title":"7.1.1. Styling the Cursor: the cursor property"},{"refs":[{"id":"ref-for-comb-one\u2463\u2461"}],"title":"7.2.1. Coloring the Insertion Caret: the caret-color property"}],"url":"https://www.w3.org/TR/css-values-4/#comb-one"}, "5747d295": {"dfnID":"5747d295","dfnText":"<line-width>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-line-width"}],"title":"5.2. Outline Thickness: the outline-width property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#typedef-line-width"}, +"5c96d703": {"dfnID":"5c96d703","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"},{"id":"ref-for-propdef-background-image\u2460"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/CSS21/colors.html#propdef-background-image"}, +"5f182644": {"dfnID":"5f182644","dfnText":"border-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-style"}],"title":"5.3. Outline Patterns: the outline-style property"},{"refs":[{"id":"ref-for-propdef-border-style\u2460"}],"title":"5.4. Outline Colors: the outline-color property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-style"}, "61bb5e44": {"dfnID":"61bb5e44","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-values-4/#number-value"}, "699488a8": {"dfnID":"699488a8","dfnText":"<url>","external":true,"refSections":[{"refs":[{"id":"ref-for-url-value"},{"id":"ref-for-url-value\u2460"},{"id":"ref-for-url-value\u2461"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-values-4/#url-value"}, "7818f443": {"dfnID":"7818f443","dfnText":"right","external":true,"refSections":[{"refs":[{"id":"ref-for-position-props"},{"id":"ref-for-position-props\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-position-props\u2461"},{"id":"ref-for-position-props\u2462"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS2/visuren.html#position-props"}, +"7a7972c2": {"dfnID":"7a7972c2","dfnText":"padding-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-top"},{"id":"ref-for-propdef-padding-top\u2460"},{"id":"ref-for-propdef-padding-top\u2461"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-top"}, "87fcd40c": {"dfnID":"87fcd40c","dfnText":"iframe","external":true,"refSections":[{"refs":[{"id":"ref-for-the-iframe-element"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element"}, "8a110a7b": {"dfnID":"8a110a7b","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"3. Value Definitions"}],"url":"https://www.w3.org/TR/css-values-4/#css-wide-keywords"}, "8a5584f2": {"dfnID":"8a5584f2","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-physical-left"},{"id":"ref-for-physical-left\u2460"}],"title":"user interaction with ellipsis"}],"url":"https://www.w3.org/TR/css-writing-modes-3/#physical-left"}, "8cd4f032": {"dfnID":"8cd4f032","dfnText":",","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-comma"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-values-4/#comb-comma"}, +"96bdf966": {"dfnID":"96bdf966","dfnText":"visibility","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-visibility"}],"title":"7.1.1.1. Cursor of the canvas"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility"}, "98ddb9b0": {"dfnID":"98ddb9b0","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"}],"title":"5.5. Offsetting the Outline: the outline-offset property"}],"url":"https://www.w3.org/TR/css-values-4/#length-value"}, "99b5cef6": {"dfnID":"99b5cef6","dfnText":"object","external":true,"refSections":[{"refs":[{"id":"ref-for-the-object-element"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-object-element"}, "a0336d84": {"dfnID":"a0336d84","dfnText":"||","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-any"},{"id":"ref-for-comb-any\u2460"}],"title":"5.1. Outlines Shorthand: the outline property"}],"url":"https://www.w3.org/TR/css-values-4/#comb-any"}, "a42c65ac": {"dfnID":"a42c65ac","dfnText":"currentcolor","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-color-currentcolor"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-valdef-color-currentcolor\u2460"}],"title":"7.2.1. Coloring the Insertion Caret: the caret-color property"}],"url":"https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"},{"id":"ref-for-propdef-max-width\u2460"},{"id":"ref-for-propdef-max-width\u2461"},{"id":"ref-for-propdef-max-width\u2462"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-propdef-max-width\u2463"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"a7f12bc0": {"dfnID":"a7f12bc0","dfnText":"padding-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-bottom"},{"id":"ref-for-propdef-padding-bottom\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom"}, "aa7bbf63": {"dfnID":"aa7bbf63","dfnText":"video","external":true,"refSections":[{"refs":[{"id":"ref-for-video"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/media.html#video"}, +"aab9872f": {"dfnID":"aab9872f","dfnText":"border-left-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-left-width"},{"id":"ref-for-propdef-border-left-width\u2460"},{"id":"ref-for-propdef-border-left-width\u2461"},{"id":"ref-for-propdef-border-left-width\u2462"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width"}, "af7c36a6": {"dfnID":"af7c36a6","dfnText":"default sizing algorithm","external":true,"refSections":[{"refs":[{"id":"ref-for-default-sizing-algorithm"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-images-3/#default-sizing-algorithm"}, +"b13558b5": {"dfnID":"b13558b5","dfnText":"border-top-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-top-width"},{"id":"ref-for-propdef-border-top-width\u2460"},{"id":"ref-for-propdef-border-top-width\u2461"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width"}, +"b3668a44": {"dfnID":"b3668a44","dfnText":"padding-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-right"},{"id":"ref-for-propdef-padding-right\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-right"}, "b81d0a11": {"dfnID":"b81d0a11","dfnText":"CSSPseudoElement","external":true,"refSections":[{"refs":[{"id":"ref-for-csspseudoelement"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/css-pseudo-4/#csspseudoelement"}, "c0cc78c8": {"dfnID":"c0cc78c8","dfnText":"natural size","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-size"},{"id":"ref-for-natural-size\u2460"},{"id":"ref-for-natural-size\u2461"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-images-3/#natural-size"}, "c6866721": {"dfnID":"c6866721","dfnText":"border edge","external":true,"refSections":[{"refs":[{"id":"ref-for-border-edge"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-border-edge\u2460"},{"id":"ref-for-border-edge\u2461"},{"id":"ref-for-border-edge\u2462"}],"title":"5.5. Offsetting the Outline: the outline-offset property"},{"refs":[{"id":"ref-for-border-edge\u2463"},{"id":"ref-for-border-edge\u2464"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/CSS2/box.html#border-edge"}, "c82a1380": {"dfnID":"c82a1380","dfnText":"default object size","external":true,"refSections":[{"refs":[{"id":"ref-for-default-object-size"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-images-3/#default-object-size"}, +"d04b6986": {"dfnID":"d04b6986","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"},{"id":"ref-for-typedef-color\u2460"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"},{"id":"ref-for-typedef-color\u2462"},{"id":"ref-for-typedef-color\u2463"}],"title":"7.2.1. Coloring the Insertion Caret: the caret-color property"}],"url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "d4441b24": {"dfnID":"d4441b24","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-opt"}, +"dd2673ce": {"dfnID":"dd2673ce","dfnText":"border-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-width"}],"title":"5.4. Outline Colors: the outline-color property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-width"}, "e112902f": {"dfnID":"e112902f","dfnText":"end","external":true,"refSections":[{"refs":[{"id":"ref-for-end"},{"id":"ref-for-end\u2460"},{"id":"ref-for-end\u2461"}],"title":"6.2. \n Overflow Ellipsis: the text-overflow property"}],"url":"https://www.w3.org/TR/css-writing-modes-4/#end"}, "e4729cc6": {"dfnID":"e4729cc6","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-position-props"},{"id":"ref-for-position-props\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-position-props\u2461"},{"id":"ref-for-position-props\u2462"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS2/visuren.html#position-props"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"},{"id":"ref-for-propdef-min-width\u2460"},{"id":"ref-for-propdef-min-width\u2461"},{"id":"ref-for-propdef-min-width\u2462"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-propdef-min-width\u2463"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e9e2f325": {"dfnID":"e9e2f325","dfnText":"concrete object size","external":true,"refSections":[{"refs":[{"id":"ref-for-concrete-object-size"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-images-3/#concrete-object-size"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"7.1.1.1. Cursor of the canvas"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "ef9f8297": {"dfnID":"ef9f8297","dfnText":"*","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-zero-plus"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-zero-plus"}, "f0811ff8": {"dfnID":"f0811ff8","dfnText":"img","external":true,"refSections":[{"refs":[{"id":"ref-for-the-img-element"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, +"f24b672a": {"dfnID":"f24b672a","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"}],"title":"5.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-propdef-border-radius\u2460"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-radius"}, "f42088a1": {"dfnID":"f42088a1","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-position-props"},{"id":"ref-for-position-props\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-position-props\u2461"},{"id":"ref-for-position-props\u2462"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS2/visuren.html#position-props"}, +"f49fa90c": {"dfnID":"f49fa90c","dfnText":"border-bottom-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-width"},{"id":"ref-for-propdef-border-bottom-width\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"}],"url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"},{"id":"ref-for-propdef-max-height\u2460"},{"id":"ref-for-propdef-max-height\u2461"},{"id":"ref-for-propdef-max-height\u2462"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-propdef-max-height\u2463"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "faacc054": {"dfnID":"faacc054","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-position-props"},{"id":"ref-for-position-props\u2460"}],"title":"4.1. Changing the Box Model: the box-sizing property"},{"refs":[{"id":"ref-for-position-props\u2461"},{"id":"ref-for-position-props\u2462"}],"title":"6.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS2/visuren.html#position-props"}, "fb688f4f": {"dfnID":"fb688f4f","dfnText":"direction","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-direction"}],"title":"user interaction with ellipsis"}],"url":"https://www.w3.org/TR/css-writing-modes-3/#propdef-direction"}, "ffedca23": {"dfnID":"ffedca23","dfnText":"natural aspect ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-aspect-ratio"}],"title":"7.1.1. Styling the Cursor: the cursor property"}],"url":"https://www.w3.org/TR/css-images-3/#natural-aspect-ratio"}, @@ -3307,7 +3361,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte { let linkTitleData = { "https://www.w3.org/TR/css-backgrounds-3/#typedef-line-width": "Expands to: medium | thick | thin", -"https://www.w3.org/TR/css-color-4/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://www.w3.org/TR/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://www.w3.org/TR/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://www.w3.org/TR/css-values-4/#url-value": "Expands to: local url flag", }; @@ -3352,6 +3406,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "#valdef-cursor-zoom-in": {"export":true,"for_":["cursor"],"level":"3","normative":true,"shortname":"css-ui","spec":"css-ui-3","status":"local","text":"zoom-in","type":"value","url":"#valdef-cursor-zoom-in"}, "#valdef-cursor-zoom-out": {"export":true,"for_":["cursor"],"level":"3","normative":true,"shortname":"css-ui","spec":"css-ui-3","status":"local","text":"zoom-out","type":"value","url":"#valdef-cursor-zoom-out"}, "#valdef-outline-color-invert": {"export":true,"for_":["outline-color"],"level":"3","normative":true,"shortname":"css-ui","spec":"css-ui-3","status":"local","text":"invert","type":"value","url":"#valdef-outline-color-invert"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-radius": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-radius","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-radius"}, "https://html.spec.whatwg.org/multipage/canvas.html#canvas": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"canvas","type":"element","url":"https://html.spec.whatwg.org/multipage/canvas.html#canvas"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"img","type":"element","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"picture","type":"element","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element"}, @@ -3362,12 +3417,32 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://www.w3.org/TR/CSS2/visudet.html#the-width-property": {"export":true,"for_":["width"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"auto","type":"value","url":"https://www.w3.org/TR/CSS2/visudet.html#the-width-property"}, "https://www.w3.org/TR/CSS2/visufx.html#propdef-overflow": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"overflow","type":"property","url":"https://www.w3.org/TR/CSS2/visufx.html#propdef-overflow"}, "https://www.w3.org/TR/CSS2/visuren.html#position-props": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"anchor-block","text":"left","type":"property","url":"https://www.w3.org/TR/CSS2/visuren.html#position-props"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-bottom-width","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-left-width","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-left-width"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-right-width","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-right-width"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-border-style": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-style","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-style"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-top-width","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-top-width"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-border-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"border-width","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-border-width"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin-left": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"margin-left","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin-left"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-margin-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"margin-top","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-margin-top"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"padding-bottom","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-padding-left": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"padding-left","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-left"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-padding-right": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"padding-right","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-right"}, +"https://www.w3.org/TR/CSS21/box.html#propdef-padding-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"padding-top","type":"property","url":"https://www.w3.org/TR/CSS21/box.html#propdef-padding-top"}, +"https://www.w3.org/TR/CSS21/colors.html#propdef-background-image": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"background-image","type":"property","url":"https://www.w3.org/TR/CSS21/colors.html#propdef-background-image"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-width"}, +"https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"visibility","type":"property","url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"snapshot","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "https://www.w3.org/TR/SVG2/struct.html#elementdef-svg": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"svg","type":"element","url":"https://www.w3.org/TR/SVG2/struct.html#elementdef-svg"}, -"https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"snapshot","text":"border-radius","type":"property","url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius"}, "https://www.w3.org/TR/css-backgrounds-3/#typedef-line-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"snapshot","text":"<line-width>","type":"type","url":"https://www.w3.org/TR/css-backgrounds-3/#typedef-line-width"}, "https://www.w3.org/TR/css-backgrounds-3/#valdef-line-style-none": {"export":true,"for_":["<line-style>","border-style","border-top-style","border-left-style","border-bottom-style","border-right-style","border"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"snapshot","text":"none","type":"value","url":"https://www.w3.org/TR/css-backgrounds-3/#valdef-line-style-none"}, -"https://www.w3.org/TR/css-color-4/#typedef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"currentcolor","type":"value","url":"https://www.w3.org/TR/css-color-4/#valdef-color-currentcolor"}, +"https://www.w3.org/TR/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "https://www.w3.org/TR/css-images-3/#concrete-object-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"concrete object size","type":"dfn","url":"https://www.w3.org/TR/css-images-3/#concrete-object-size"}, "https://www.w3.org/TR/css-images-3/#default-object-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"default object size","type":"dfn","url":"https://www.w3.org/TR/css-images-3/#default-object-size"}, "https://www.w3.org/TR/css-images-3/#default-sizing-algorithm": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"default sizing algorithm","type":"dfn","url":"https://www.w3.org/TR/css-images-3/#default-sizing-algorithm"}, diff --git a/tests/github/w3c/csswg-drafts/css-ui-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-ui-4/Overview.console.txt index 3392fd2f3a..44bd2d691b 100644 --- a/tests/github/w3c/csswg-drafts/css-ui-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-ui-4/Overview.console.txt @@ -27,30 +27,19 @@ LINE 1896: Image doesn't exist, so I couldn't determine its width and height: 'i LINE 1898: Image doesn't exist, so I couldn't determine its width and height: 'images/radio-c83-check.png' LINE 1903: Image doesn't exist, so I couldn't determine its width and height: 'images/radio-c86-empty.png' LINE 1905: Image doesn't exist, so I couldn't determine its width and height: 'images/radio-c86-check.png' -LINE ~543: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~543: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' -LINE ~555: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~555: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~555: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~555: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' +LINE ~302: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE ~613: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' LINK ERROR: No 'element' refs found for 'cursor'. <{cursor}> -LINE 948: No 'property' refs found for 'visibility' with spec 'css2'. -''visibility: hidden'' -LINE ~2085: No 'property' refs found for 'visibility' with spec 'css2'. -'visibility' -LINE ~2087: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~2088: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~2089: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' -LINE ~2097: No 'property' refs found for 'z-index' with spec 'css2'. -'z-index' LINE 2390: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'pointer-events-control' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-ui-4/Overview.html b/tests/github/w3c/csswg-drafts/css-ui-4/Overview.html index b2b82d402e..6f4f41f582 100644 --- a/tests/github/w3c/csswg-drafts/css-ui-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-ui-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Basic User Interface Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-ui-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1291,7 +1290,7 @@ <h1 class="p-name no-ref" id="title">CSS Basic User Interface Module Level 4</h1 </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1318,7 +1317,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-ui] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-ui%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>This specification will include and extend <cite>CSS Basic User Interface Module Level 3.</cite> <a data-link-type="biblio" href="#biblio-css-ui-3" title="CSS Basic User Interface Module Level 3 (CSS3 UI)">[CSS-UI-3]</a></p> </div> @@ -1864,14 +1863,14 @@ <h3 class="heading settled caniuse-paneled" data-level="4.1" id="resize"><span c (i.e. altering the top-left of the element or altering the bottom-right) may depend on a number of CSS layout factors including whether the element is absolutely positioned, -whether it is positioned using the <a class="property css" data-link-type="property">right</a> and <span class="property">bottom</span> properties, +whether it is positioned using the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right">right</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom">bottom</a> properties, whether the language of the element is right-to-left etc. The UA should consider the direction of resizing (as determined by CSS layout), as well as platform conventions and constraints when deciding how to convey the resizing mechanism to the user.</p> <p>The user agent must allow the user to resize the element -with no other constraints than what is imposed by <a class="property css" data-link-type="property">min-width</a>, <span class="property">max-width</span>, <span class="property">min-height</span>, and <span class="property">max-height</span>.</p> +with no other constraints than what is imposed by <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> There may be situations in which user attempts to resize an element appear to be overridden or ignored, e.g. because of <span class="css">!important</span> cascading declarations that supersede that element’s <a href="https://www.w3.org/TR/css-style-attr/#style-attribute">style attribute</a> <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width①">width</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height①">height</a> properties in the DOM.</p> @@ -1958,7 +1957,7 @@ <h4 class="heading settled caniuse-paneled" data-level="5.1.1" id="cursor"><span Conforming user agents may, instead of <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#url-value" id="ref-for-url-value②">&lt;url></a>, support <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-3/#typedef-image" id="ref-for-typedef-image">&lt;image></a> which is a superset. <p>The UA must support the following image file formats:</p> <ul> - <li> PNG, as defined in <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a> + <li> PNG, as defined in <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a> <li> SVG, as defined in <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, in <a href="https://www.w3.org/TR/SVG2/conform.html#secure-static-mode">secure static mode</a> <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>, if it has a <a data-link-type="dfn" href="https://drafts.csswg.org/css-images-3/#natural-size" id="ref-for-natural-size">natural size</a>. @@ -2012,7 +2011,7 @@ <h4 class="heading settled caniuse-paneled" data-level="5.1.1" id="cursor"><span which represents the precise position that is being pointed to. <p class="note" role="note"><span class="marker">Note:</span> This specification does not define how the coordinate systems of the various types of <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-images-3/#typedef-image" id="ref-for-typedef-image③">&lt;image></a> are established, - and defers these definitions to <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Image Values and Replaced Content Module Level 4">[CSS4-IMAGES]</a>.</p> + and defers these definitions to <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Images Module Level 4">[CSS4-IMAGES]</a>.</p> <p>If the values are unspecified, then the natural hotspot defined inside the image resource itself is used. If both the values are unspecific and the referenced cursor has no defined hotspot, @@ -2174,7 +2173,7 @@ <h5 class="heading settled" data-level="5.1.1.1" id="canvas_cursor"><span class= then the canvas cursor is the platform-dependent default cursor.</p> <p class="note" role="note"><span class="marker">Note:</span> An element might be invisible but still generate boxes. For example, -if the element has <a class="css" data-link-type="propdesc">visibility: hidden</a> but not <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-display-3/#propdef-display" id="ref-for-propdef-display①">display: none</a>, +if the element has <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility" id="ref-for-propdef-visibility">visibility: hidden</a> but not <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-display-3/#propdef-display" id="ref-for-propdef-display①">display: none</a>, boxes are generated for it and its cursor is used for the canvas.</p> <h3 class="heading settled" data-level="5.2" id="insertion-caret"><span class="secno">5.2. </span><span class="content">Insertion caret</span><a class="self-link" href="#insertion-caret"></a></h3> <h4 class="heading settled caniuse-paneled" data-level="5.2.1" id="caret-color"><span class="secno">5.2.1. </span><span class="content">Coloring the Insertion Caret: the <a class="property css" data-link-type="property" href="#propdef-caret-color" id="ref-for-propdef-caret-color">caret-color</a> property</span><a class="self-link" href="#caret-color"></a></h4> @@ -3020,11 +3019,11 @@ <h3 class="heading settled caniuse-paneled" data-level="7.2" id="appearance-swit <ul> <li><a class="property css" data-link-type="property" href="#propdef-appearance" id="ref-for-propdef-appearance③">appearance</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-3/#propdef-display" id="ref-for-propdef-display②">display</a> (the <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inner-display-type" id="ref-for-inner-display-type">inner display type</a> may be ignored) - <li><a class="property css" data-link-type="property">visibility</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility" id="ref-for-propdef-visibility①">visibility</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-position" id="ref-for-propdef-position">position</a> - <li><a class="property css" data-link-type="property">top</a> - <li><a class="property css" data-link-type="property">right</a> - <li><a class="property css" data-link-type="property">bottom</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top">top</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right①">right</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom①">bottom</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-position-3/#propdef-left" id="ref-for-propdef-left">left</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-float" id="ref-for-propdef-float">float</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-clear" id="ref-for-propdef-clear">clear</a> @@ -3032,7 +3031,7 @@ <h3 class="heading settled caniuse-paneled" data-level="7.2" id="appearance-swit <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi">unicode-bidi</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-writing-modes-3/#propdef-direction" id="ref-for-propdef-direction">direction</a> <li><a class="property css" data-link-type="property" href="#propdef-cursor" id="ref-for-propdef-cursor⑥">cursor</a> - <li><a class="property css" data-link-type="property">z-index</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index" id="ref-for-propdef-z-index">z-index</a> </ul> <p class="issue" id="issue-a8bdbcb3"><a class="self-link" href="#issue-a8bdbcb3"></a> Are there more properties that should be included in this list? Should we remove some? @@ -3697,6 +3696,19 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a24756d2">under</span> <li><span class="dfn-paneled" id="a73617e0">writing mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="1ebe67be">bottom</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="0475c554">right</span> + <li><span class="dfn-paneled" id="4726eb39">top</span> + <li><span class="dfn-paneled" id="96bdf966">visibility</span> + <li><span class="dfn-paneled" id="5455396f">z-index</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -3746,27 +3758,27 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-page-3">[CSS-PAGE-3] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-position-3/"><cite>CSS Positioned Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-position-3/">https://drafts.csswg.org/css-position-3/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] @@ -3792,11 +3804,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-png">[PNG] - <dd>Tom Lane. <a href="https://w3c.github.io/PNG-spec/"><cite>Portable Network Graphics (PNG) Specification (Second Edition)</cite></a>. URL: <a href="https://w3c.github.io/PNG-spec/">https://w3c.github.io/PNG-spec/</a> + <dd>Chris Lilley; et al. <a href="https://w3c.github.io/png/"><cite>Portable Network Graphics (PNG) Specification (Third Edition)</cite></a>. URL: <a href="https://w3c.github.io/png/">https://w3c.github.io/png/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-scroll-animations-1">[SCROLL-ANIMATIONS-1] - <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/scroll-animations-1/"><cite>Scroll-linked Animations</cite></a>. URL: <a href="https://drafts.csswg.org/scroll-animations-1/">https://drafts.csswg.org/scroll-animations-1/</a> + <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/scroll-animations-1/"><cite>Scroll-driven Animations</cite></a>. URL: <a href="https://drafts.csswg.org/scroll-animations-1/">https://drafts.csswg.org/scroll-animations-1/</a> <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> <dt id="biblio-svg11">[SVG11] @@ -3804,14 +3816,14 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-svg2">[SVG2] <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> <dt id="biblio-uax29">[UAX29] - <dd>Christopher Chapman. <a href="https://www.unicode.org/reports/tr29/tr29-41.html"><cite>Unicode Text Segmentation</cite></a>. 26 August 2022. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-41.html">https://www.unicode.org/reports/tr29/tr29-41.html</a> + <dd>Josh Hadley. <a href="https://www.unicode.org/reports/tr29/tr29-43.html"><cite>Unicode Text Segmentation</cite></a>. 16 August 2023. Unicode Standard Annex #29. URL: <a href="https://www.unicode.org/reports/tr29/tr29-43.html">https://www.unicode.org/reports/tr29/tr29-43.html</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css1">[CSS1] <dd>Håkon Wium Lie; Bert Bos. <a href="https://www.w3.org/TR/CSS1/"><cite>Cascading Style Sheets, level 1</cite></a>. 13 September 2018. REC. URL: <a href="https://www.w3.org/TR/CSS1/">https://www.w3.org/TR/CSS1/</a> <dt id="biblio-css4-images">[CSS4-IMAGES] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-html5">[HTML5] <dd>Ian Hickson; et al. <a href="https://www.w3.org/html/wg/drafts/html/master/"><cite>HTML5</cite></a>. URL: <a href="https://www.w3.org/html/wg/drafts/html/master/">https://www.w3.org/html/wg/drafts/html/master/</a> <dt id="biblio-select">[SELECT] @@ -4127,7 +4139,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>4+</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>95+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android yes"><span>Firefox for Android</span><span>95+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> <div class="feature"> @@ -4214,13 +4226,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/outline" title="The outline CSS shorthand property sets most of the outline properties in a single declaration.">outline</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>1.2+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>94+</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>7+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>80+</span></span><span class="edge_blink yes"><span>Edge</span><span>94+</span></span> <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>8+</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie yes"><span>IE</span><span>8+</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>1+</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>1.0+</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>94+</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>1.0+</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> </div> </div> </details> @@ -4257,48 +4269,48 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="text-overflow" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=text-overflow">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>7+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=text-overflow">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="outline-props" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>15+</span></span><span class="firefox yes"><span>Firefox</span><span>2+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>8+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11.6+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=outline">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>15+</span></span><span class="firefox yes"><span>Firefox</span><span>2+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>8+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11.6+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=outline">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="resize" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>5+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-resize">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>5+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-resize">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="cursor" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>5+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>14+</span></span><span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie yes"><span>IE</span><span>9+</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>5+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-cursors">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>5+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>14+</span></span><span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie yes"><span>IE</span><span>9+</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>5+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-cursors">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="cursor-grab" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>68+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>15+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>55+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-cursors-grab">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>68+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>15+</span></span><span class="firefox yes"><span>Firefox</span><span>27+</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>55+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-cursors-grab">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="zooming-cursors" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>24+</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-cursors-newer">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>24+</span></span><span class="and_ff no"><span>Firefox for Android</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>24+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css3-cursors-newer">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="caret-color" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>44+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>11.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>7.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-caret-color">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>57+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>44+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>11.3+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>7.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-caret-color">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="valdef-user-select-none" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>54+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>69+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>41+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>TP+</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung yes"><span>Samsung Internet</span><span>6.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=user-select-none">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>54+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>69+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>41+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="ios_saf no"><span>Safari on iOS</span><span>None</span></span><span class="samsung yes"><span>Samsung Internet</span><span>6.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=user-select-none">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="appearance-switching" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>84+</span></span><span class="firefox yes"><span>Firefox</span><span>80+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>11+</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>73+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>15.4+</span></span><span class="samsung no"><span>Samsung Internet</span><span>None</span></span><span class="and_uc no"><span>UC Browser for Android</span><span>None</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-appearance">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>84+</span></span><span class="firefox yes"><span>Firefox</span><span>80+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>11+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>73+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq no"><span>QQ Browser</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>15.4+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>14.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-appearance">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -4500,6 +4512,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let dfnPanelData = { +"0475c554": {"dfnID":"0475c554","dfnText":"right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-right"}],"title":"4.1. Resizing Boxes: the resize property"},{"refs":[{"id":"ref-for-propdef-right\u2460"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, "0570259e": {"dfnID":"0570259e","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://drafts.csswg.org/css2/#propdef-float"}, "0e9419b9": {"dfnID":"0e9419b9","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"5.1.1.1. Cursor of the canvas"},{"refs":[{"id":"ref-for-propdef-display\u2461"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://drafts.csswg.org/css-display-3/#propdef-display"}, "0fc40460": {"dfnID":"0fc40460","dfnText":"canvas","external":true,"refSections":[{"refs":[{"id":"ref-for-canvas"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/canvas.html#canvas"}, @@ -4507,6 +4520,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1548047a": {"dfnID":"1548047a","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"},{"id":"ref-for-typedef-color\u2460"}],"title":"3.4. Outline Colors: the outline-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"},{"id":"ref-for-typedef-color\u2462"},{"id":"ref-for-typedef-color\u2463"}],"title":"5.2.1. Coloring the Insertion Caret: the caret-color property"},{"refs":[{"id":"ref-for-typedef-color\u2464"},{"id":"ref-for-typedef-color\u2465"}],"title":"7.1. Widget Accent Colors: the accent-color property"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "16310992": {"dfnID":"16310992","dfnText":"<number>","external":true,"refSections":[{"refs":[{"id":"ref-for-number-value"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-values-4/#number-value"}, "190183bb": {"dfnID":"190183bb","dfnText":"block size","external":true,"refSections":[{"refs":[{"id":"ref-for-block-size"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#block-size"}, +"1ebe67be": {"dfnID":"1ebe67be","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"4.1. Resizing Boxes: the resize property"},{"refs":[{"id":"ref-for-propdef-bottom\u2460"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, "1ecb0e29": {"dfnID":"1ecb0e29","dfnText":"root","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-scroll-root"},{"id":"ref-for-valdef-scroll-root\u2460"}],"title":"5.3.1. Directional Focus Navigation: the nav-up, nav-right, nav-down, nav-left properties"}],"url":"https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-root"}, "1f6aa483": {"dfnID":"1f6aa483","dfnText":"concrete object size","external":true,"refSections":[{"refs":[{"id":"ref-for-concrete-object-size"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-images-3/#concrete-object-size"}, "23012643": {"dfnID":"23012643","dfnText":"natural aspect ratio","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-aspect-ratio"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-images-3/#natural-aspect-ratio"}, @@ -4519,8 +4533,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"2.1. Value Definitions"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "37f0daea": {"dfnID":"37f0daea","dfnText":"inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-size"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#inline-size"}, "38eda004": {"dfnID":"38eda004","dfnText":":enabled","external":true,"refSections":[{"refs":[{"id":"ref-for-enabled-pseudo"}],"title":"7.2.2. \nEffects of appearance on Semantic Aspects of Elements"}],"url":"https://drafts.csswg.org/selectors-4/#enabled-pseudo"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "4299a926": {"dfnID":"4299a926","dfnText":"svg","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-svg"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://svgwg.org/svg2-draft/struct.html#elementdef-svg"}, +"4726eb39": {"dfnID":"4726eb39","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"5.1.1. Styling the Cursor: the cursor property"},{"refs":[{"id":"ref-for-mult-opt\u2460"}],"title":"5.3.1. Directional Focus Navigation: the nav-up, nav-right, nav-down, nav-left properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, +"5455396f": {"dfnID":"5455396f","dfnText":"z-index","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-z-index"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, "55617484": {"dfnID":"55617484","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-line-style-none"}],"title":"3.2. Outline Thickness: the outline-width property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-none"}, "581e7e57": {"dfnID":"581e7e57","dfnText":"default sizing algorithm","external":true,"refSections":[{"refs":[{"id":"ref-for-default-sizing-algorithm"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-images-3/#default-sizing-algorithm"}, "5869f885": {"dfnID":"5869f885","dfnText":"::before","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-before"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-selectordef-before\u2460"},{"id":"ref-for-selectordef-before\u2461"},{"id":"ref-for-selectordef-before\u2462"}],"title":"6.1. Controlling content selection"}],"url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-before"}, @@ -4548,6 +4565,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "90d73ada": {"dfnID":"90d73ada","dfnText":":checked","external":true,"refSections":[{"refs":[{"id":"ref-for-checked-pseudo"}],"title":"7.2.2. \nEffects of appearance on Semantic Aspects of Elements"}],"url":"https://drafts.csswg.org/selectors-4/#checked-pseudo"}, "9436e460": {"dfnID":"9436e460","dfnText":"clear","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clear"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://drafts.csswg.org/css2/#propdef-clear"}, "957ec3c1": {"dfnID":"957ec3c1","dfnText":"<line-style>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-line-style"}],"title":"3.4. Outline Colors: the outline-color property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-line-style"}, +"96bdf966": {"dfnID":"96bdf966","dfnText":"visibility","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-visibility"}],"title":"5.1.1.1. Cursor of the canvas"},{"refs":[{"id":"ref-for-propdef-visibility\u2460"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility"}, "977d3003": {"dfnID":"977d3003","dfnText":"<string>","external":true,"refSections":[{"refs":[{"id":"ref-for-string-value"}],"title":"5.3.1. Directional Focus Navigation: the nav-up, nav-right, nav-down, nav-left properties"}],"url":"https://drafts.csswg.org/css-values-4/#string-value"}, "982e17a3": {"dfnID":"982e17a3","dfnText":"unicode-bidi","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-unicode-bidi"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi"}, "998b9e6e": {"dfnID":"998b9e6e","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"},{"id":"ref-for-typedef-image\u2460"},{"id":"ref-for-typedef-image\u2461"},{"id":"ref-for-typedef-image\u2462"}],"title":"5.1.1. Styling the Cursor: the cursor property"},{"refs":[{"id":"ref-for-typedef-image\u2463"}],"title":"Appendix C. Considerations for Security and Privacy"}],"url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, @@ -4559,6 +4577,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a45c0fe3": {"dfnID":"a45c0fe3","dfnText":":disabled","external":true,"refSections":[{"refs":[{"id":"ref-for-disabled-pseudo"}],"title":"7.2.2. \nEffects of appearance on Semantic Aspects of Elements"}],"url":"https://drafts.csswg.org/selectors-4/#disabled-pseudo"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"},{"id":"ref-for-used-value\u2461"},{"id":"ref-for-used-value\u2462"},{"id":"ref-for-used-value\u2463"},{"id":"ref-for-used-value\u2464"},{"id":"ref-for-used-value\u2465"},{"id":"ref-for-used-value\u2466"},{"id":"ref-for-used-value\u2467"},{"id":"ref-for-used-value\u2468"},{"id":"ref-for-used-value\u2460\u24ea"},{"id":"ref-for-used-value\u2460\u2460"},{"id":"ref-for-used-value\u2460\u2461"},{"id":"ref-for-used-value\u2460\u2462"},{"id":"ref-for-used-value\u2460\u2463"},{"id":"ref-for-used-value\u2460\u2464"}],"title":"6.1. Controlling content selection"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a73617e0": {"dfnID":"a73617e0","dfnText":"writing mode","external":true,"refSections":[{"refs":[{"id":"ref-for-writing-mode"},{"id":"ref-for-writing-mode\u2460"},{"id":"ref-for-writing-mode\u2461"}],"title":"5.1.1. Styling the Cursor: the cursor property"},{"refs":[{"id":"ref-for-writing-mode\u2462"}],"title":"5.2.2. Shape of the insertion caret: caret-shape"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#writing-mode"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a7bbaf9f": {"dfnID":"a7bbaf9f","dfnText":"div","external":true,"refSections":[{"refs":[{"id":"ref-for-the-div-element"}],"title":"7.2.2. \nEffects of appearance on Semantic Aspects of Elements"}],"url":"https://html.spec.whatwg.org/multipage/grouping-content.html#the-div-element"}, "a91f632a": {"dfnID":"a91f632a","dfnText":"legacy name alias","external":true,"refSections":[{"refs":[{"id":"ref-for-legacy-name-alias"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://drafts.csswg.org/css-cascade-5/#legacy-name-alias"}, "a9734ee4": {"dfnID":"a9734ee4","dfnText":"border","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border"}],"title":"7.2. Switching appearance: the appearance property"},{"refs":[{"id":"ref-for-propdef-border\u2460"}],"title":"7.3. \nControl Specific Rules"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border"}, @@ -4578,10 +4597,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "d7d642a2": {"dfnID":"d7d642a2","dfnText":"input","external":true,"refSections":[{"refs":[{"id":"ref-for-the-input-element"}],"title":"6.1. Controlling content selection"},{"refs":[{"id":"ref-for-the-input-element\u2460"},{"id":"ref-for-the-input-element\u2461"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://html.spec.whatwg.org/multipage/input.html#the-input-element"}, "d95397a7": {"dfnID":"d95397a7","dfnText":"all","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-all"}],"title":"7.2.1. \nEffects of appearance on Decorative Aspects of Elements"}],"url":"https://drafts.csswg.org/css-cascade-5/#propdef-all"}, "dde41168": {"dfnID":"dde41168","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"}],"title":"7.2. Switching appearance: the appearance property"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-left"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e926b664": {"dfnID":"e926b664","dfnText":"mutable","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-fe-mutable"}],"title":"6.1. Controlling content selection"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-fe-mutable"}, "ed3eb665": {"dfnID":"ed3eb665","dfnText":"natural size","external":true,"refSections":[{"refs":[{"id":"ref-for-natural-size"},{"id":"ref-for-natural-size\u2460"},{"id":"ref-for-natural-size\u2461"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-images-3/#natural-size"}, "editable-element": {"dfnID":"editable-element","dfnText":"editable element","external":false,"refSections":[{"refs":[{"id":"ref-for-editable-element"},{"id":"ref-for-editable-element\u2460"}],"title":"6.1. Controlling content selection"}],"url":"#editable-element"}, "f0811ff8": {"dfnID":"f0811ff8","dfnText":"img","external":true,"refSections":[{"refs":[{"id":"ref-for-the-img-element"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"4.1. Resizing Boxes: the resize property"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"},{"id":"ref-for-propdef-background-image\u2460"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, "f9a50f04": {"dfnID":"f9a50f04","dfnText":"padding edge","external":true,"refSections":[{"refs":[{"id":"ref-for-padding-edge"}],"title":"7.3.1. \nSingle-Line Text Input Controls"}],"url":"https://drafts.csswg.org/css-box-4/#padding-edge"}, "fa293cdd": {"dfnID":"fa293cdd","dfnText":"<url>","external":true,"refSections":[{"refs":[{"id":"ref-for-url-value"},{"id":"ref-for-url-value\u2460"},{"id":"ref-for-url-value\u2461"}],"title":"5.1.1. Styling the Cursor: the cursor property"}],"url":"https://drafts.csswg.org/css-values-4/#url-value"}, @@ -5069,7 +5090,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let linkTitleData = { "https://drafts.csswg.org/css-backgrounds-3/#typedef-line-style": "Expands to: dashed | dotted | double | groove | hidden | inset | none | outset | ridge | solid", "https://drafts.csswg.org/css-backgrounds-3/#typedef-line-width": "Expands to: medium | thick | thin", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#url-value": "Expands to: local url flag", }; @@ -5283,6 +5304,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/rendering.html#drop-down-box": {"export":true,"for_":["select"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"drop-down box","type":"dfn","url":"https://html.spec.whatwg.org/multipage/rendering.html#drop-down-box"}, "https://svgwg.org/svg2-draft/struct.html#elementdef-svg": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"svg","type":"element","url":"https://svgwg.org/svg2-draft/struct.html#elementdef-svg"}, "https://svgwg.org/svg2-draft/text.html#elementdef-textPath": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"textpath","type":"element","url":"https://svgwg.org/svg2-draft/text.html#elementdef-textPath"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"visibility","type":"property","url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"bottom","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-right": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"right","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"top","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"z-index","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-values-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-values-3/Overview.console.txt index 12c74ca82d..5f8bde9df7 100644 --- a/tests/github/w3c/csswg-drafts/css-values-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-values-3/Overview.console.txt @@ -31,26 +31,47 @@ LINE 1808: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-re LINE 1808: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/values3/calc-width-block-intrinsic-1.html' - did you misspell something? LINE 1808: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/values3/calc-width-table-auto-1.html' - did you misspell something? LINE 1808: Couldn't find WPT test 'css/vendor-imports/mozilla/mozilla-central-reftests/values3/calc-width-table-fixed-1.html' - did you misspell something? +LINE 2322: Couldn't find WPT test 'css/css-values/attr-invalid-type-008.html' - did you misspell something? LINE 950: The var 'type' (in global scope) is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. LINE 1364: Image doesn't exist, so I couldn't determine its width and height: 'images/pixel1.png' LINE 1385: Image doesn't exist, so I couldn't determine its width and height: 'images/pixel2.png' -LINE ~399: No 'property' refs found for 'border-collapse' with spec 'css2'. -'border-collapse' -LINE 448: Multiple possible 'default' maybe refs. -Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default +LINE ~171: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-anchor-position-1; type:value; text:default -spec:css-ui-4; type:value; text:default -''default'' +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' +LINE ~353: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE 2164: Multiple possible 'box-shadow' propdesc refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +''box-shadow: attr(size px, inset) 5px 10px blue;'' LINE 2190: Multiple possible 'color' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-values-5/#valdef-attr-color To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-values-5; type:value; text:color spec:compositing-2; type:value; text:color ''color'' +LINE 2227: Multiple possible 'angle' maybe refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:value; text:angle +spec:css-values-5; type:value; text:angle +''angle'' +LINE 2600: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: No 'sign-funcs' ID found, skipping MDN features that would target it. WARNING: No 'trig-funcs' ID found, skipping MDN features that would target it. WARNING: No 'calc-constants' ID found, skipping MDN features that would target it. WARNING: No 'calc-func' ID found, skipping MDN features that would target it. WARNING: No 'exponent-funcs' ID found, skipping MDN features that would target it. +WARNING: No 'funcdef-mod' ID found, skipping MDN features that would target it. +WARNING: No 'funcdef-rem' ID found, skipping MDN features that would target it. +WARNING: No 'funcdef-round' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/css-values-3/Overview.html b/tests/github/w3c/csswg-drafts/css-values-3/Overview.html index 004c3cd8f1..ff5cab0de5 100644 --- a/tests/github/w3c/csswg-drafts/css-values-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-values-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Values and Units Module Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-values-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1095,7 +1094,7 @@ <h1 class="p-name no-ref" id="title">CSS Values and Units Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1117,7 +1116,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-values] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-values%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1291,7 +1290,7 @@ <h3 class="heading settled" data-level="2.1" id="component-types"><span class="s <li> non-terminals that do not share the same name as a property. In this case, the non-terminal name appears between <span class="css">&lt;</span> and <span class="css">></span>, as in <a class="production css" data-link-type="type">&lt;spacing-limit></a>. - Notice the distinction between <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-border-width" id="ref-for-value-def-border-width">&lt;border-width></a> and <a class="production css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width" id="ref-for-propdef-border-width①">&lt;'border-width'></a>: + Notice the distinction between <a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/box.html#value-def-border-width" id="ref-for-value-def-border-width">&lt;border-width></a> and <a class="production css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width" id="ref-for-propdef-border-width①">&lt;'border-width'></a>: the latter is defined as the value of the <span class="property" id="ref-for-propdef-border-width②">border-width</span> property, the former requires an explicit expansion elsewhere. The definition of a non-terminal is typically located near its first appearance in the specification. @@ -1494,7 +1493,7 @@ <h3 class="heading settled" data-level="3.1" id="keywords"><span class="secno">3 <p>In the value definition fields, <dfn class="dfn-paneled" data-dfn-for="CSS" data-dfn-type="dfn" data-export data-lt="keyword" id="css-keyword">keywords</dfn> with a pre-defined meaning appear literally. Keywords are <a data-link-type="dfn" href="#css-identifier" id="ref-for-css-identifier①">CSS identifiers</a> and are interpreted <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive">ASCII case-insensitively</a> (i.e., [a-z] and [A-Z] are equivalent).</p> <div class="example" id="example-9d0ae504"> - <a class="self-link" href="#example-9d0ae504"></a> For example, here is the value definition for the <a class="property css" data-link-type="property">border-collapse</a> property: + <a class="self-link" href="#example-9d0ae504"></a> For example, here is the value definition for the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse</a> property: <pre class="highlight"><c- k>Value</c-><c- p>:</c-> collapse | separate</pre> <p>And here is an example of its use:</p> <pre class="highlight">table <c- p>{</c-> <c- k>border-collapse</c-><c- p>:</c-> separate <c- p>}</c-></pre> @@ -1526,7 +1525,7 @@ <h3 class="heading settled" data-level="3.2" id="custom-idents"><span class="sec even in the ASCII range (e.g. <span class="css">example</span> and <span class="css">EXAMPLE</span> are two different, unrelated user-defined identifiers).</p> <p>The <a data-link-type="dfn" href="#css-wide-keywords" id="ref-for-css-wide-keywords">CSS-wide keywords</a> are not valid <a class="production css" data-link-type="type" href="#identifier-value" id="ref-for-identifier-value⑤">&lt;custom-ident></a>s. - The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default" id="ref-for-valdef-anchor-scroll-default">default</a> keyword is reserved + The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-default" id="ref-for-valdef-cursor-default">default</a> keyword is reserved and is also not a valid <span class="production" id="ref-for-identifier-value⑥">&lt;custom-ident></span>. Specifications using <span class="production" id="ref-for-identifier-value⑦">&lt;custom-ident></span> must specify clearly what other keywords are excluded from <span class="production" id="ref-for-identifier-value⑧">&lt;custom-ident></span>, if any—​for example by saying that any pre-defined keywords in that property’s value definition are excluded. @@ -1851,7 +1850,7 @@ <h3 class="heading settled" data-level="4.6" id="mixed-percentages"><span class= If the containing block is <span class="css">1000px</span> wide, then <span class="css" id="ref-for-propdef-width②">width: 50%;</span> is equivalent to <span class="css" id="ref-for-propdef-width③">width: 500px</span>, and <span class="css" id="ref-for-propdef-width④">width: calc(50% + 500px)</span> thus ends up equivalent to <span class="css" id="ref-for-propdef-width⑤">width: calc(500px + 500px)</span> or <span class="css" id="ref-for-propdef-width⑥">width: 1000px</span>. - <p>On the other hand, the second and third arguments of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-5/#funcdef-hsl" id="ref-for-funcdef-hsl">hsl()</a> function + <p>On the other hand, the second and third arguments of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#funcdef-hsl" id="ref-for-funcdef-hsl">hsl()</a> function can only be expressed as <a class="production css" data-link-type="type" href="#percentage-value" id="ref-for-percentage-value①③">&lt;percentage></a>s. Although <a class="css" data-link-type="maybe" href="#funcdef-calc" id="ref-for-funcdef-calc①">calc()</a> productions are allowed in their place, they can only combine percentages with themselves, @@ -2256,7 +2255,7 @@ <h3 class="heading settled" data-level="6.1" id="angles"><span class="secno">6.1 where 0deg is "up" or "north" on the screen, and larger angles are more clockwise (so 90deg is "right" or "east"). - <p>For example, in the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient">linear-gradient()</a> function, + <p>For example, in the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient">linear-gradient()</a> function, the <a class="production css" data-link-type="type" href="#angle-value" id="ref-for-angle-value⑤">&lt;angle></a> that determines the direction of the gradient is interpreted as a bearing angle.</p> </div> @@ -2385,7 +2384,7 @@ <h2 class="heading settled" data-level="8" id="functional-notations"><span class immediately inside the parentheses. Functions can take multiple arguments, which are formatted similarly to a CSS property value.</p> - <p>Some legacy <a data-link-type="dfn" href="#functional-notation" id="ref-for-functional-notation②">functional notations</a>, such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-5/#funcdef-rgba" id="ref-for-funcdef-rgba">rgba()</a>, use commas unnecessarily, + <p>Some legacy <a data-link-type="dfn" href="#functional-notation" id="ref-for-functional-notation②">functional notations</a>, such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#funcdef-rgba" id="ref-for-funcdef-rgba">rgba()</a>, use commas unnecessarily, but generally commas are only used to separate items in a list, or pieces of a grammar that would be ambiguous otherwise. If a comma is used to separate arguments, <a href="https://www.w3.org/TR/css-syntax/#whitespace">white space</a> is optional before and after the comma.</p> @@ -2687,7 +2686,7 @@ <h3 class="heading settled" data-level="8.2" id="attr-notation"><span class="sec however, then the default value must match the attr()'s type. For example, <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow①">box-shadow: attr(size px, inset) 5px 10px blue;</a> is invalid, even though it would create a valid declaration if you substituted the attr() expression - with either a <a class="css" data-link-type="maybe" href="#px" id="ref-for-px①⓪">px</a> length <em>or</em> the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-backgrounds-3/#shadow-inset" id="ref-for-shadow-inset">inset</a> keyword.</p> + with either a <a class="css" data-link-type="maybe" href="#px" id="ref-for-px①⓪">px</a> length <em>or</em> the <span class="css">inset</span> keyword.</p> </div> <p>If the specified attribute exists on the element, the value of the attribute must be parsed as required by the <a class="production css" data-link-type="type" href="#typedef-type-or-unit" id="ref-for-typedef-type-or-unit③">&lt;type-or-unit></a> argument @@ -2709,7 +2708,7 @@ <h3 class="heading settled" data-level="8.2" id="attr-notation"><span class="sec <dd> The attribute value must parse as a <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-hash-token" id="ref-for-typedef-hash-token">&lt;hash-token></a> or <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-ident-token" id="ref-for-typedef-ident-token①">&lt;ident-token></a>, and be successfully interpreted as a <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-color-5/#typedef-color" id="ref-for-typedef-color③">&lt;color></a>. The default is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor" id="ref-for-valdef-color-currentcolor">currentcolor</a>. - <dt><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-url" id="ref-for-valdef-attr-url">url</a> + <dt><span class="css">url</span> <dd> The attribute value is taken as the contents of a CSS <a class="production css" data-link-type="type" href="#string-value" id="ref-for-string-value⑥">&lt;string></a>. It is interpreted as a quoted string within the <a class="css" data-link-type="maybe" href="#funcdef-url" id="ref-for-funcdef-url①③">url()</a> notation. The default is <span class="css">about:invalid</span>, which is a URL defined (<a href="#about-invalid">in Appendix A</a>) to point @@ -2734,7 +2733,7 @@ <h3 class="heading settled" data-level="8.2" id="attr-notation"><span class="sec if the property in question only accepts integers within a certain range and the attribute is out of range. <dt><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-length" id="ref-for-valdef-attr-length">length</a> - <dt><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-angle" id="ref-for-valdef-attr-angle">angle</a> + <dt><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle" id="ref-for-valdef-corner-shape-angle">angle</a> <dt><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-time" id="ref-for-valdef-attr-time">time</a> <dt><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-frequency" id="ref-for-valdef-attr-frequency">frequency</a> <dd> The attribute value must parse as a <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-syntax-3/#typedef-dimension-token" id="ref-for-typedef-dimension-token③">&lt;dimension-token></a>, @@ -2814,7 +2813,6 @@ <h3 class="heading settled" data-level="8.2" id="attr-notation"><span class="sec <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-color-valid.html" title="css/css-values/attr-color-valid.html">attr-color-valid.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-color-valid.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-color-valid.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-invalid-type-001.html" title="css/css-values/attr-invalid-type-001.html">attr-invalid-type-001.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-invalid-type-001.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-invalid-type-001.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-invalid-type-002.html" title="css/css-values/attr-invalid-type-002.html">attr-invalid-type-002.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-invalid-type-002.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-invalid-type-002.html"><small>(source)</small></a> - <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-invalid-type-008.html" title="css/css-values/attr-invalid-type-008.html">attr-invalid-type-008.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-invalid-type-008.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-invalid-type-008.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-length-invalid-cast.html" title="css/css-values/attr-length-invalid-cast.html">attr-length-invalid-cast.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-length-invalid-cast.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-length-invalid-cast.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-length-invalid-fallback.html" title="css/css-values/attr-length-invalid-fallback.html">attr-length-invalid-fallback.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-length-invalid-fallback.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-length-invalid-fallback.html"><small>(source)</small></a> <li class="wpt-test"><a class="wpt-name" href="https://wpt.fyi/results/css/css-values/attr-length-valid-zero-nofallback.html" title="css/css-values/attr-length-valid-zero-nofallback.html">attr-length-valid-zero-nofallback.html</a> <a class="wpt-live" href="http://wpt.live/css/css-values/attr-length-valid-zero-nofallback.html"><small>(live test)</small></a> <a class="wpt-source" href="https://github.com/web-platform-tests/wpt/blob/master/css/css-values/attr-length-valid-zero-nofallback.html"><small>(source)</small></a> @@ -2968,7 +2966,7 @@ <h2 class="no-num heading settled" id="changes"><span class="content"> Changes</ <ul> <li>Noted that the list of <a data-link-type="dfn" href="#css-wide-keywords" id="ref-for-css-wide-keywords①">CSS-wide keywords</a> may be expanded by other specs. <li>Clarified definition of <a class="css" data-link-type="maybe" href="#ex" id="ref-for-ex③">ex</a> to refer to the “first available font”. - <li>Specified that <a class="css" data-link-type="maybe" href="#funcdef-attr" id="ref-for-funcdef-attr①④">attr()</a> with <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-string" id="ref-for-valdef-attr-string③">string</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-url" id="ref-for-valdef-attr-url①">url</a> types doesn’t reparse the attribute contents, just takes the value literally as the value of a <a class="production css" data-link-type="type" href="#string-value" id="ref-for-string-value⑦">&lt;string></a>. + <li>Specified that <a class="css" data-link-type="maybe" href="#funcdef-attr" id="ref-for-funcdef-attr①④">attr()</a> with <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-5/#valdef-attr-string" id="ref-for-valdef-attr-string③">string</a> or <span class="css">url</span> types doesn’t reparse the attribute contents, just takes the value literally as the value of a <a class="production css" data-link-type="type" href="#string-value" id="ref-for-string-value⑦">&lt;string></a>. </ul> <h2 class="no-num heading settled" id="sec-pri"><span class="content"> Security and Privacy Considerations</span><a class="self-link" href="#sec-pri"></a></h2> <p>This specification mostly just defines units that are common to CSS specifications, @@ -3179,11 +3177,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> - <li> - <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="306f9323">default</span> - </ul> <li> <a data-link-type="biblio">[CSS-ANIMATIONS-1]</a> defines the following terms: <ul> @@ -3191,6 +3184,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="d984b6fe">animation-name</span> <li><span class="dfn-paneled" id="c16b1855">animation-timing-function</span> </ul> + <li> + <a data-link-type="biblio">[CSS-BORDERS-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="497ac49f">angle</span> + </ul> <li> <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: <ul> @@ -3217,14 +3215,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="cad72d2f">currentcolor</span> + <li><span class="dfn-paneled" id="218f0f24">hsl()</span> <li><span class="dfn-paneled" id="91bfbe18">opacity</span> + <li><span class="dfn-paneled" id="dd998a01">rgba()</span> </ul> <li> <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="1548047a">&lt;color></span> - <li><span class="dfn-paneled" id="ac080bec">hsl()</span> - <li><span class="dfn-paneled" id="84497bcf">rgba()</span> </ul> <li> <a data-link-type="biblio">[CSS-COUNTER-STYLES-3]</a> defines the following terms: @@ -3259,7 +3257,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-IMAGES-4]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="539e4c80">image-resolution</span> - <li><span class="dfn-paneled" id="a7d749a4">linear-gradient()</span> </ul> <li> <a data-link-type="biblio">[CSS-OVERFLOW-3]</a> defines the following terms: @@ -3311,12 +3308,12 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-UI-4]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="7397920e">default</span> <li><span class="dfn-paneled" id="1ee7f091">outline-color</span> </ul> <li> <a data-link-type="biblio">[CSS-VALUES-5]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="52985f94">angle</span> <li><span class="dfn-paneled" id="9f6a123e">color</span> <li><span class="dfn-paneled" id="7fcce731">frequency</span> <li><span class="dfn-paneled" id="2cdff29e">length</span> @@ -3324,7 +3321,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8ac10bc6">string</span> <li><span class="dfn-paneled" id="178c65fd">time</span> <li><span class="dfn-paneled" id="2ef1aa7d">toggle()</span> - <li><span class="dfn-paneled" id="d10808c7">url</span> </ul> <li> <a data-link-type="biblio">[CSS-WRITING-MODES-4]</a> defines the following terms: @@ -3335,10 +3331,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="16b64b43">vertical-rl</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="17f0c439">&lt;border-width></span> + <li><span class="dfn-paneled" id="29ca9f85">border-collapse</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="8956a48a">&lt;border-width></span> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> </ul> <li> @@ -3350,12 +3351,12 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="73759fff">border-color</span> <li><span class="dfn-paneled" id="c9ecad15">border-width</span> <li><span class="dfn-paneled" id="6916104d">box-shadow</span> - <li><span class="dfn-paneled" id="e1dab292">inset</span> </ul> <li> <a data-link-type="biblio">[CSS3-IMAGES]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="998b9e6e">&lt;image></span> + <li><span class="dfn-paneled" id="d3f930a7">linear-gradient()</span> <li><span class="dfn-paneled" id="157236b0">object-position</span> </ul> <li> @@ -3390,30 +3391,32 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> - <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> + <dt id="biblio-css-borders-4">[CSS-BORDERS-4] + <dd><a href="https://drafts.csswg.org/css-borders-4/"><cite>CSS Borders and Box Decorations Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-borders-4/">https://drafts.csswg.org/css-borders-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> + <dt id="biblio-css-ui-4">[CSS-UI-4] + <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-css-values-5">[CSS-VALUES-5] - <dd>CSS Values and Units Module Level 5 URL: <a href="https://drafts.csswg.org/css-values-5/">https://drafts.csswg.org/css-values-5/</a> + <dd><a href="https://drafts.csswg.org/css-values-5/"><cite>CSS Values and Units Module Level 5</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-values-5/">https://drafts.csswg.org/css-values-5/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-css21">[CSS21] @@ -3421,7 +3424,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-background">[CSS3-BACKGROUND] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3-fonts">[CSS3-FONTS] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css3-images">[CSS3-IMAGES] @@ -3433,7 +3436,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3namespace">[CSS3NAMESPACE] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-namespaces/"><cite>CSS Namespaces Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-namespaces/">https://drafts.csswg.org/css-namespaces/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-infra">[INFRA] @@ -3452,13 +3455,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-grid-1">[CSS-GRID-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-grid/"><cite>CSS Grid Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid/">https://drafts.csswg.org/css-grid/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] @@ -3471,8 +3474,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-4/"><cite>CSS Text Decoration Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-4/">https://drafts.csswg.org/css-text-decor-4/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> - <dt id="biblio-css-ui-4">[CSS-UI-4] - <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-mediaq">[MEDIAQ] @@ -3483,7 +3484,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <details class="mdn-anno unpositioned" data-anno-for="calc-notation"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc()" title="The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used anywhere a <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> is allowed.">calc()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc()" title="The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used with <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> values.">calc()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>59+</span></span><span class="safari yes"><span>Safari</span><span>12+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> @@ -3565,11 +3566,12 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" </div> </details> <details class="mdn-anno unpositioned" data-anno-for="lengths"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/length" title="The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-shadow.">length</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> + <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4017,22 +4019,24 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "157236b0": {"dfnID":"157236b0","dfnText":"object-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-object-position"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-images-3/#propdef-object-position"}, "16b64b43": {"dfnID":"16b64b43","dfnText":"vertical-rl","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-writing-mode-vertical-rl"}],"title":"5.1.1. \nFont-relative Lengths: the em, ex, ch, rem units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl"}, "178c65fd": {"dfnID":"178c65fd","dfnText":"time","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-attr-time"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-values-5/#valdef-attr-time"}, +"17f0c439": {"dfnID":"17f0c439","dfnText":"<border-width>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-border-width"}],"title":"2.1. \nComponent Value Types"}],"url":"https://www.w3.org/TR/CSS21/box.html#value-def-border-width"}, "1cf918c1": {"dfnID":"1cf918c1","dfnText":"specified value","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-value"}],"title":"4. \nNumeric Data Types"},{"refs":[{"id":"ref-for-specified-value\u2460"}],"title":"8.1.4. \nRange Checking"}],"url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, "1ee7f091": {"dfnID":"1ee7f091","dfnText":"outline-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-color"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-color"}, +"218f0f24": {"dfnID":"218f0f24","dfnText":"hsl()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-hsl"}],"title":"4.6. \nMixing Percentages and Dimensions"}],"url":"https://drafts.csswg.org/css-color-4/#funcdef-hsl"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, +"29ca9f85": {"dfnID":"29ca9f85","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"3.1. \nPre-defined Keywords"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, "2c57f900": {"dfnID":"2c57f900","dfnText":"font","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font"},{"id":"ref-for-propdef-font\u2460"}],"title":"5.1.1. \nFont-relative Lengths: the em, ex, ch, rem units"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font"}, "2cdff29e": {"dfnID":"2cdff29e","dfnText":"length","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-attr-length"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-values-5/#valdef-attr-length"}, "2ef1aa7d": {"dfnID":"2ef1aa7d","dfnText":"toggle()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-toggle"},{"id":"ref-for-funcdef-toggle\u2460"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-values-5/#funcdef-toggle"}, -"306f9323": {"dfnID":"306f9323","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-scroll-default"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"5.1.1. \nFont-relative Lengths: the em, ex, ch, rem units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3bd4bbe9": {"dfnID":"3bd4bbe9","dfnText":"text-orientation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-orientation"}],"title":"5.1.1. \nFont-relative Lengths: the em, ex, ch, rem units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, "41edad32": {"dfnID":"41edad32","dfnText":"consume a url token","external":true,"refSections":[{"refs":[{"id":"ref-for-consume-a-url-token"}],"title":"3.4. \nResource Locators: the <url> type"}],"url":"https://drafts.csswg.org/css-syntax-3/#consume-a-url-token"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, +"497ac49f": {"dfnID":"497ac49f","dfnText":"angle","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-corner-shape-angle"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle"}, "49a5f65f": {"dfnID":"49a5f65f","dfnText":"padding-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-top"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-top"}, "4d7d3dcd": {"dfnID":"4d7d3dcd","dfnText":"initial","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-initial"},{"id":"ref-for-valdef-all-initial\u2460"},{"id":"ref-for-valdef-all-initial\u2461"}],"title":"3.1.1. \nCSS-wide keywords: initial, inherit and unset"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, "4e55d7fb": {"dfnID":"4e55d7fb","dfnText":"@import","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-import"}],"title":"3.4. \nResource Locators: the <url> type"}],"url":"https://drafts.csswg.org/css-cascade-5/#at-ruledef-import"}, "4ffe613d": {"dfnID":"4ffe613d","dfnText":"<percentage-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-percentage-token"}],"title":"4.5. \nPercentages: the <percentage> type"},{"refs":[{"id":"ref-for-typedef-percentage-token\u2460"}],"title":"8.1.2. \nType Checking"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-percentage-token"}, -"52985f94": {"dfnID":"52985f94","dfnText":"angle","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-attr-angle"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-values-5/#valdef-attr-angle"}, "539e4c80": {"dfnID":"539e4c80","dfnText":"image-resolution","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-image-resolution"},{"id":"ref-for-propdef-image-resolution\u2460"}],"title":"6.4. \nResolution Units: the <resolution> type and dpi, dpcm, dppx units"}],"url":"https://drafts.csswg.org/css-images-4/#propdef-image-resolution"}, "53a193f1": {"dfnID":"53a193f1","dfnText":"*","external":true,"refSections":[{"refs":[{"id":"ref-for-x"}],"title":"8.1. \nMathematical Expressions: calc()"},{"refs":[{"id":"ref-for-x\u2460"}],"title":"8.1.1. \nSyntax"},{"refs":[{"id":"ref-for-x\u2461"}],"title":"8.1.2. \nType Checking"}],"url":"https://drafts.csswg.org/selectors-3/#x"}, "5bc3d0ec": {"dfnID":"5bc3d0ec","dfnText":"text-decoration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration"}, @@ -4042,15 +4046,14 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"2.6. \nProperty Value Examples"},{"refs":[{"id":"ref-for-propdef-box-shadow\u2460"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, "6e9f0abf": {"dfnID":"6e9f0abf","dfnText":"disc","external":true,"refSections":[{"refs":[{"id":"ref-for-disc"}],"title":"2.1. \nComponent Value Types"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#disc"}, "73759fff": {"dfnID":"73759fff","dfnText":"border-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-color"}],"title":"2.1. \nComponent Value Types"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, +"7397920e": {"dfnID":"7397920e","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-cursor-default"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "758665a5": {"dfnID":"758665a5","dfnText":"paged media","external":true,"refSections":[{"refs":[{"id":"ref-for-paged-media"}],"title":"5.1.2. \nViewport-percentage Lengths: the vw, vh, vmin, vmax units"},{"refs":[{"id":"ref-for-paged-media\u2460"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"}],"title":"3.1. \nPre-defined Keywords"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2460"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2461"}],"title":"4.4. \nNumbers with Units: dimension values"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2462"}],"title":"5.2. \nAbsolute Lengths: the cm, mm, Q, in, pt, pc, px units"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2463"}],"title":"6.3. \nFrequency Units: the <frequency> type and Hz, kHz units"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "7fcce731": {"dfnID":"7fcce731","dfnText":"frequency","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-attr-frequency"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-values-5/#valdef-attr-frequency"}, "8095a819": {"dfnID":"8095a819","dfnText":"<easing-function>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-easing-function"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-easing-2/#typedef-easing-function"}, -"84497bcf": {"dfnID":"84497bcf","dfnText":"rgba()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rgba"}],"title":"8. \nFunctional Notations"}],"url":"https://drafts.csswg.org/css-color-5/#funcdef-rgba"}, "86928bde": {"dfnID":"86928bde","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "87806adf": {"dfnID":"87806adf","dfnText":"pushState(data, unused, url)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-history-pushstate"}],"title":"3.4.1.1. \nFragment URLs"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-pushstate"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"},{"id":"ref-for-propdef-width\u2462"},{"id":"ref-for-propdef-width\u2463"},{"id":"ref-for-propdef-width\u2464"},{"id":"ref-for-propdef-width\u2465"}],"title":"4.6. \nMixing Percentages and Dimensions"},{"refs":[{"id":"ref-for-propdef-width\u2466"},{"id":"ref-for-propdef-width\u2467"},{"id":"ref-for-propdef-width\u2468"},{"id":"ref-for-propdef-width\u2460\u24ea"}],"title":"8.1.2. \nType Checking"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2460"},{"id":"ref-for-propdef-width\u2460\u2461"}],"title":"8.1.4. \nRange Checking"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2462"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, -"8956a48a": {"dfnID":"8956a48a","dfnText":"<border-width>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-border-width"}],"title":"2.1. \nComponent Value Types"}],"url":"https://drafts.csswg.org/css2/#value-def-border-width"}, "8ac10bc6": {"dfnID":"8ac10bc6","dfnText":"string","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-attr-string"},{"id":"ref-for-valdef-attr-string\u2460"},{"id":"ref-for-valdef-attr-string\u2461"}],"title":"8.2. \nAttribute References: attr()"},{"refs":[{"id":"ref-for-valdef-attr-string\u2462"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-values-5/#valdef-attr-string"}, "8b3ca704": {"dfnID":"8b3ca704","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-auto"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto"}, "8f605f43": {"dfnID":"8f605f43","dfnText":"tab-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-tab-size"}],"title":"8.1.2. \nType Checking"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-tab-size"}, @@ -4064,9 +4067,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "Q": {"dfnID":"Q","dfnText":"Q","external":false,"refSections":[{"refs":[{"id":"ref-for-Q"},{"id":"ref-for-Q\u2460"}],"title":"5.2. \nAbsolute Lengths: the cm, mm, Q, in, pt, pc, px units"},{"refs":[{"id":"ref-for-Q\u2461"}],"title":"\nChanges"}],"url":"#Q"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"4.4.1. \nCompatible Units"},{"refs":[{"id":"ref-for-used-value\u2461"}],"title":"5. \nDistance Units: the <length> type"},{"refs":[{"id":"ref-for-used-value\u2462"}],"title":"8.1.4. \nRange Checking"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a63375cb": {"dfnID":"a63375cb","dfnText":"<dimension-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dimension-token"}],"title":"2.5. \nComponent Values and White Space"},{"refs":[{"id":"ref-for-typedef-dimension-token\u2460"}],"title":"4.4. \nNumbers with Units: dimension values"},{"refs":[{"id":"ref-for-typedef-dimension-token\u2461"}],"title":"8.1.2. \nType Checking"},{"refs":[{"id":"ref-for-typedef-dimension-token\u2462"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-dimension-token"}, -"a7d749a4": {"dfnID":"a7d749a4","dfnText":"linear-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-linear-gradient"}],"title":"6.1. \nAngle Units: the <angle> type and deg, grad, rad, turn units"}],"url":"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient"}, "absolute-length": {"dfnID":"absolute-length","dfnText":"absolute length units","external":false,"refSections":[{"refs":[{"id":"ref-for-absolute-length"}],"title":"5. \nDistance Units: the <length> type"}],"url":"#absolute-length"}, -"ac080bec": {"dfnID":"ac080bec","dfnText":"hsl()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-hsl"}],"title":"4.6. \nMixing Percentages and Dimensions"}],"url":"https://drafts.csswg.org/css-color-5/#funcdef-hsl"}, "ac54fbff": {"dfnID":"ac54fbff","dfnText":"line-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-height"}],"title":"5. \nDistance Units: the <length> type"},{"refs":[{"id":"ref-for-propdef-line-height\u2460"}],"title":"8.1.2. \nType Checking"}],"url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "af50aa62": {"dfnID":"af50aa62","dfnText":"<function-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-function-token"}],"title":"8. \nFunctional Notations"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-function-token"}, "anchor-unit": {"dfnID":"anchor-unit","dfnText":"anchored","external":false,"refSections":[{"refs":[{"id":"ref-for-anchor-unit"},{"id":"ref-for-anchor-unit\u2460"},{"id":"ref-for-anchor-unit\u2461"}],"title":"5.2. \nAbsolute Lengths: the cm, mm, Q, in, pt, pc, px units"}],"url":"#anchor-unit"}, @@ -4095,17 +4096,17 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "css-textual-data-types": {"dfnID":"css-textual-data-types","dfnText":"textual data types","external":false,"refSections":[],"url":"#css-textual-data-types"}, "css-value-definition-syntax": {"dfnID":"css-value-definition-syntax","dfnText":"value definition syntax","external":false,"refSections":[{"refs":[{"id":"ref-for-css-value-definition-syntax"}],"title":"\nChanges"}],"url":"#css-value-definition-syntax"}, "css-wide-keywords": {"dfnID":"css-wide-keywords","dfnText":"CSS-wide keywords","external":false,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"},{"refs":[{"id":"ref-for-css-wide-keywords\u2460"}],"title":"\nChanges"}],"url":"#css-wide-keywords"}, -"d10808c7": {"dfnID":"d10808c7","dfnText":"url","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-attr-url"}],"title":"8.2. \nAttribute References: attr()"},{"refs":[{"id":"ref-for-valdef-attr-url\u2460"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-values-5/#valdef-attr-url"}, "d24165c7": {"dfnID":"d24165c7","dfnText":"vertical-lr","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-writing-mode-vertical-lr"}],"title":"5.1.1. \nFont-relative Lengths: the em, ex, ch, rem units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr"}, "d27a809f": {"dfnID":"d27a809f","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position"},{"id":"ref-for-propdef-background-position\u2460"}],"title":"7.3. \n2D Positioning: the <position> type"},{"refs":[{"id":"ref-for-propdef-background-position\u2461"},{"id":"ref-for-propdef-background-position\u2462"}],"title":"8.1.3. \nComputed Value"},{"refs":[{"id":"ref-for-propdef-background-position\u2463"}],"title":"\nChanges"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position"}, +"d3f930a7": {"dfnID":"d3f930a7","dfnText":"linear-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-linear-gradient"}],"title":"6.1. \nAngle Units: the <angle> type and deg, grad, rad, turn units"}],"url":"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient"}, "d65d17df": {"dfnID":"d65d17df","dfnText":"font-family","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-family"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-family"}, "d984b6fe": {"dfnID":"d984b6fe","dfnText":"animation-name","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-name"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-name"}, +"dd998a01": {"dfnID":"dd998a01","dfnText":"rgba()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rgba"}],"title":"8. \nFunctional Notations"}],"url":"https://drafts.csswg.org/css-color-4/#funcdef-rgba"}, "deg": {"dfnID":"deg","dfnText":"deg","external":false,"refSections":[{"refs":[{"id":"ref-for-deg"},{"id":"ref-for-deg\u2460"}],"title":"6.1. \nAngle Units: the <angle> type and deg, grad, rad, turn units"},{"refs":[{"id":"ref-for-deg\u2461"}],"title":"8.1.2. \nType Checking"}],"url":"#deg"}, "dimension": {"dfnID":"dimension","dfnText":"dimension","external":false,"refSections":[{"refs":[{"id":"ref-for-dimension"},{"id":"ref-for-dimension\u2460"}],"title":"4. \nNumeric Data Types"},{"refs":[{"id":"ref-for-dimension\u2461"},{"id":"ref-for-dimension\u2462"}],"title":"4.4. \nNumbers with Units: dimension values"},{"refs":[{"id":"ref-for-dimension\u2463"}],"title":"4.4.1. \nCompatible Units"},{"refs":[{"id":"ref-for-dimension\u2464"}],"title":"4.6. \nMixing Percentages and Dimensions"},{"refs":[{"id":"ref-for-dimension\u2465"}],"title":"5. \nDistance Units: the <length> type"},{"refs":[{"id":"ref-for-dimension\u2466"}],"title":"6.2. \nDuration Units: the <time> type and s, ms units"},{"refs":[{"id":"ref-for-dimension\u2467"}],"title":"6.3. \nFrequency Units: the <frequency> type and Hz, kHz units"},{"refs":[{"id":"ref-for-dimension\u2468"}],"title":"6.4. \nResolution Units: the <resolution> type and dpi, dpcm, dppx units"},{"refs":[{"id":"ref-for-dimension\u2460\u24ea"}],"title":"8.2. \nAttribute References: attr()"}],"url":"#dimension"}, "dpcm": {"dfnID":"dpcm","dfnText":"dpcm","external":false,"refSections":[],"url":"#dpcm"}, "dpi": {"dfnID":"dpi","dfnText":"dpi","external":false,"refSections":[],"url":"#dpi"}, "dppx": {"dfnID":"dppx","dfnText":"dppx","external":false,"refSections":[],"url":"#dppx"}, -"e1dab292": {"dfnID":"e1dab292","dfnText":"inset","external":true,"refSections":[{"refs":[{"id":"ref-for-shadow-inset"}],"title":"8.2. \nAttribute References: attr()"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#shadow-inset"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"}],"title":"4.5. \nPercentages: the <percentage> type"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "eb0095fe": {"dfnID":"eb0095fe","dfnText":"+","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-adjacent"}],"title":"8.1. \nMathematical Expressions: calc()"},{"refs":[{"id":"ref-for-selectordef-adjacent\u2460"}],"title":"8.1.1. \nSyntax"},{"refs":[{"id":"ref-for-selectordef-adjacent\u2461"}],"title":"8.1.2. \nType Checking"}],"url":"https://drafts.csswg.org/selectors-4/#selectordef-adjacent"}, "eda608e1": {"dfnID":"eda608e1","dfnText":"animation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation"}],"title":"3.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, @@ -4577,7 +4578,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "#length-value": "Expands to: advance measure | ch | cm | em | ex | in | mm | pc | pt | px | q | rem | vh | vmax | vmin | vw", "#resolution-value": "Expands to: dpcm | dpi | dppx", "#time-value": "Expands to: ms | s", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-easing-2/#typedef-easing-function": "Expands to: linear", }; @@ -4731,7 +4732,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "#vmax": {"export":true,"for_":["<length>"],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"local","text":"vmax","type":"value","url":"#vmax"}, "#vmin": {"export":true,"for_":["<length>"],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"local","text":"vmin","type":"value","url":"#vmin"}, "#vw": {"export":true,"for_":["<length>"],"level":"3","normative":true,"shortname":"css-values","spec":"css-values-3","status":"local","text":"vw","type":"value","url":"#vw"}, -"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default": {"export":true,"for_":["anchor-scroll"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-name": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-name","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-name"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-timing-function","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function"}, @@ -4741,7 +4741,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-color","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-width","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"box-shadow","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, -"https://drafts.csswg.org/css-backgrounds-3/#shadow-inset": {"export":true,"for_":["box-shadow"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"inset","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#shadow-inset"}, +"https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle": {"export":true,"for_":["corner-shape"],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"angle","type":"value","url":"https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle"}, "https://drafts.csswg.org/css-box-4/#propdef-padding-top": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"padding-top","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-padding-top"}, "https://drafts.csswg.org/css-break-3/#propdef-orphans": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-break","spec":"css-break-3","status":"current","text":"orphans","type":"property","url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, "https://drafts.csswg.org/css-cascade-5/#actual-value": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"actual value","type":"dfn","url":"https://drafts.csswg.org/css-cascade-5/#actual-value"}, @@ -4752,10 +4752,10 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"inherit","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-initial": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"initial","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-unset": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"unset","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-unset"}, +"https://drafts.csswg.org/css-color-4/#funcdef-hsl": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"hsl()","type":"function","url":"https://drafts.csswg.org/css-color-4/#funcdef-hsl"}, +"https://drafts.csswg.org/css-color-4/#funcdef-rgba": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"rgba()","type":"function","url":"https://drafts.csswg.org/css-color-4/#funcdef-rgba"}, "https://drafts.csswg.org/css-color-4/#propdef-opacity": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"opacity","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, "https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"currentcolor","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor"}, -"https://drafts.csswg.org/css-color-5/#funcdef-hsl": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"hsl()","type":"function","url":"https://drafts.csswg.org/css-color-5/#funcdef-hsl"}, -"https://drafts.csswg.org/css-color-5/#funcdef-rgba": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"rgba()","type":"function","url":"https://drafts.csswg.org/css-color-5/#funcdef-rgba"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-counter-styles-3/#disc": {"export":true,"for_":["<counter-style-name>"],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"disc","type":"value","url":"https://drafts.csswg.org/css-counter-styles-3/#disc"}, "https://drafts.csswg.org/css-display-4/#containing-block": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"containing block","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#containing-block"}, @@ -4766,9 +4766,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-fonts-4/#propdef-font-family": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"font-family","type":"property","url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-family"}, "https://drafts.csswg.org/css-fonts-4/#propdef-font-size": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-fonts","spec":"css-fonts-4","status":"current","text":"font-size","type":"property","url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, "https://drafts.csswg.org/css-grid-2/#valdef-flex-fr": {"export":true,"for_":["<flex>"],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"fr","type":"value","url":"https://drafts.csswg.org/css-grid-2/#valdef-flex-fr"}, +"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"linear-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient"}, "https://drafts.csswg.org/css-images-3/#propdef-object-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"object-position","type":"property","url":"https://drafts.csswg.org/css-images-3/#propdef-object-position"}, "https://drafts.csswg.org/css-images-3/#typedef-image": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"<image>","type":"type","url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, -"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"linear-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient"}, "https://drafts.csswg.org/css-images-4/#propdef-image-resolution": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"image-resolution","type":"property","url":"https://drafts.csswg.org/css-images-4/#propdef-image-resolution"}, "https://drafts.csswg.org/css-overflow-3/#propdef-overflow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"overflow","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto": {"export":true,"for_":["overflow","overflow-x","overflow-y"],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto"}, @@ -4790,22 +4790,20 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"current","text":"text-decoration","type":"property","url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration"}, "https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-transforms","spec":"css-transforms-1","status":"current","text":"transform-origin","type":"property","url":"https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin"}, "https://drafts.csswg.org/css-ui-4/#propdef-outline-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"outline-color","type":"property","url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-color"}, +"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default": {"export":true,"for_":["cursor"],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "https://drafts.csswg.org/css-values-5/#funcdef-toggle": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"toggle()","type":"function","url":"https://drafts.csswg.org/css-values-5/#funcdef-toggle"}, -"https://drafts.csswg.org/css-values-5/#valdef-attr-angle": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"angle","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-angle"}, "https://drafts.csswg.org/css-values-5/#valdef-attr-color": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"color","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-color"}, "https://drafts.csswg.org/css-values-5/#valdef-attr-frequency": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"frequency","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-frequency"}, "https://drafts.csswg.org/css-values-5/#valdef-attr-length": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"length","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-length"}, "https://drafts.csswg.org/css-values-5/#valdef-attr-number": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"number","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-number"}, "https://drafts.csswg.org/css-values-5/#valdef-attr-string": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"string","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-string"}, "https://drafts.csswg.org/css-values-5/#valdef-attr-time": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"time","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-time"}, -"https://drafts.csswg.org/css-values-5/#valdef-attr-url": {"export":true,"for_":["attr()"],"level":"5","normative":true,"shortname":"css-values","spec":"css-values-5","status":"current","text":"url","type":"value","url":"https://drafts.csswg.org/css-values-5/#valdef-attr-url"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"text-orientation","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing-mode","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-text-orientation-upright": {"export":true,"for_":["text-orientation"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"upright","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-text-orientation-upright"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical-lr","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical-rl","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#value-def-border-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<border-width>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-border-width"}, "https://drafts.csswg.org/mediaqueries-5/#media-query": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"media query","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#media-query"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://drafts.csswg.org/selectors-3/#x": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"selectors","spec":"selectors-3","status":"current","text":"*","type":"selector","url":"https://drafts.csswg.org/selectors-3/#x"}, @@ -4814,6 +4812,8 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://html.spec.whatwg.org/multipage/semantics.html#the-base-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"base","type":"element","url":"https://html.spec.whatwg.org/multipage/semantics.html#the-base-element"}, "https://infra.spec.whatwg.org/#ascii-case-insensitive": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ascii case-insensitive","type":"dfn","url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "https://infra.spec.whatwg.org/#string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"string","type":"dfn","url":"https://infra.spec.whatwg.org/#string"}, +"https://www.w3.org/TR/CSS21/box.html#value-def-border-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"<border-width>","type":"type","url":"https://www.w3.org/TR/CSS21/box.html#value-def-border-width"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-collapse","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-values-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-values-4/Overview.console.txt index 5613c36ada..4cb80bc514 100644 --- a/tests/github/w3c/csswg-drafts/css-values-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-values-4/Overview.console.txt @@ -3,15 +3,18 @@ LINE 545: Couldn't find WPT test 'css/css-values/unset-value-storage.html' - did LINE 1509: Image doesn't exist, so I couldn't determine its width and height: 'images/Typography_Line_Terms.svg' LINE 1934: Image doesn't exist, so I couldn't determine its width and height: 'images/pixel1.png' LINE 1955: Image doesn't exist, so I couldn't determine its width and height: 'images/pixel2.png' -LINE ~521: No 'property' refs found for 'border-collapse' with spec 'css2'. -'border-collapse' -LINE 571: Multiple possible 'default' maybe refs. -Arbitrarily chose https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default +LINE ~167: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-anchor-position-1; type:value; text:default -spec:css-ui-4; type:value; text:default -''default'' -LINE 2430: No 'property' refs found for 'background-position' with spec 'css2'. -'background-position' +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' +LINE ~349: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE 4784: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 2435: Couldn't find target anchor status: <a bs-line-number="2435" href="#status">provide feedback</a> diff --git a/tests/github/w3c/csswg-drafts/css-values-4/Overview.html b/tests/github/w3c/csswg-drafts/css-values-4/Overview.html index 196e401f8f..b6a920c4b8 100644 --- a/tests/github/w3c/csswg-drafts/css-values-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-values-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Values and Units Module Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-values-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1129,7 +1128,7 @@ <h1 class="p-name no-ref" id="title">CSS Values and Units Module Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1151,7 +1150,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-values] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-values%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1406,7 +1405,7 @@ <h3 class="heading settled" data-level="2.1" id="component-types"><span class="s <li> non-terminals that do not share the same name as a property. In this case, the non-terminal name appears between <span class="css">&lt;</span> and <span class="css">></span>, as in <a class="production css" data-link-type="type">&lt;spacing-limit></a>. - Notice the distinction between <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-border-width" id="ref-for-value-def-border-width">&lt;border-width></a> and <a class="production css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width" id="ref-for-propdef-border-width①">&lt;'border-width'></a>: + Notice the distinction between <a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/box.html#value-def-border-width" id="ref-for-value-def-border-width">&lt;border-width></a> and <a class="production css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width" id="ref-for-propdef-border-width①">&lt;'border-width'></a>: the latter is defined as the value of the <span class="property" id="ref-for-propdef-border-width②">border-width</span> property, the former requires an explicit expansion elsewhere. The definition of a non-terminal is typically located near its first appearance in the specification. @@ -1686,7 +1685,7 @@ <h3 class="heading settled" data-level="4.1" id="keywords"><span class="secno">4 <p>In the value definition fields, <dfn class="dfn-paneled" data-dfn-for="CSS" data-dfn-type="dfn" data-export data-lt="keyword" id="css-keyword">keywords</dfn> with a pre-defined meaning appear literally. Keywords are <a data-link-type="dfn" href="#css-identifier" id="ref-for-css-identifier①">CSS identifiers</a> and are interpreted <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive">ASCII case-insensitively</a> (i.e., [a-z] and [A-Z] are equivalent).</p> <div class="example" id="example-9d0ae504"> - <a class="self-link" href="#example-9d0ae504"></a> For example, here is the value definition for the <a class="property css" data-link-type="property">border-collapse</a> property: + <a class="self-link" href="#example-9d0ae504"></a> For example, here is the value definition for the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" id="ref-for-propdef-border-collapse">border-collapse</a> property: <pre class="highlight"><c- k>Value</c-><c- p>:</c-> collapse | separate</pre> <p>And here is an example of its use:</p> <pre class="highlight">table <c- p>{</c-> <c- k>border-collapse</c-><c- p>:</c-> separate <c- p>}</c-></pre> @@ -1719,7 +1718,7 @@ <h3 class="heading settled" data-level="4.2" id="custom-idents"><span class="sec even in the ASCII range (e.g. <span class="css">example</span> and <span class="css">EXAMPLE</span> are two different, unrelated user-defined identifiers).</p> <p>The <a data-link-type="dfn" href="#css-wide-keywords" id="ref-for-css-wide-keywords">CSS-wide keywords</a> are not valid <a class="production css" data-link-type="type" href="#identifier-value" id="ref-for-identifier-value⑤">&lt;custom-ident></a>s. - The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default" id="ref-for-valdef-anchor-scroll-default">default</a> keyword is reserved + The <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-default" id="ref-for-valdef-cursor-default">default</a> keyword is reserved and is also not a valid <span class="production" id="ref-for-identifier-value⑥">&lt;custom-ident></span>. Specifications using <span class="production" id="ref-for-identifier-value⑦">&lt;custom-ident></span> must specify clearly what other keywords are excluded from <span class="production" id="ref-for-identifier-value⑧">&lt;custom-ident></span>, if any—​for example by saying that any pre-defined keywords in that property’s value definition are excluded. @@ -2171,7 +2170,7 @@ <h3 class="heading settled" data-level="5.6" id="mixed-percentages"><span class= If the containing block is <span class="css">1000px</span> wide, then <span class="css" id="ref-for-propdef-width②">width: 50%;</span> is equivalent to <span class="css" id="ref-for-propdef-width③">width: 500px</span>, and <span class="css" id="ref-for-propdef-width④">width: calc(50% + 500px)</span> thus ends up equivalent to <span class="css" id="ref-for-propdef-width⑤">width: calc(500px + 500px)</span> or <span class="css" id="ref-for-propdef-width⑥">width: 1000px</span>. - <p>On the other hand, the second and third arguments of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-5/#funcdef-hsl" id="ref-for-funcdef-hsl">hsl()</a> function + <p>On the other hand, the second and third arguments of the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#funcdef-hsl" id="ref-for-funcdef-hsl">hsl()</a> function can only be expressed as <a class="production css" data-link-type="type" href="#percentage-value" id="ref-for-percentage-value①⑥">&lt;percentage></a>s. Although <a class="css" data-link-type="maybe" href="#funcdef-calc" id="ref-for-funcdef-calc①">calc()</a> productions are allowed in their place, they can only combine percentages with themselves, @@ -2780,7 +2779,7 @@ <h3 class="heading settled" data-level="7.1" id="angles"><span class="secno">7.1 where 0deg is "up" or "north" on the screen, and larger angles are more clockwise (so 90deg is "right" or "east"). - <p>For example, in the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient">linear-gradient()</a> function, + <p>For example, in the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient" id="ref-for-funcdef-linear-gradient">linear-gradient()</a> function, the <a class="production css" data-link-type="type" href="#angle-value" id="ref-for-angle-value⑦">&lt;angle></a> that determines the direction of the gradient is interpreted as a bearing angle.</p> </div> @@ -2936,7 +2935,7 @@ <h2 class="heading settled" data-level="9" id="functional-notations"><span class immediately inside the parentheses. Functions can take multiple arguments, which are formatted similarly to a CSS property value.</p> - <p>Some legacy <a data-link-type="dfn" href="#functional-notation" id="ref-for-functional-notation②">functional notations</a>, such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-5/#funcdef-rgba" id="ref-for-funcdef-rgba">rgba()</a>, use commas unnecessarily, + <p>Some legacy <a data-link-type="dfn" href="#functional-notation" id="ref-for-functional-notation②">functional notations</a>, such as <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-color-4/#funcdef-rgba" id="ref-for-funcdef-rgba">rgba()</a>, use commas unnecessarily, but generally commas are only used to separate items in a list, or pieces of a grammar that would be ambiguous otherwise. If a comma is used to separate arguments, <a href="https://www.w3.org/TR/css-syntax/#whitespace">white space</a> is optional before and after the comma.</p> @@ -3006,9 +3005,9 @@ <h3 class="heading settled" data-level="9.1" id="toggle-notation"><span class="s not a particular serialization <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>, so comparison between computed values should always be unambiguous and have the expected result. For example, - a Level 2 <a class="property css" data-link-type="property">background-position</a> computed value + a Level 2 <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/colors.html#propdef-background-position" id="ref-for-propdef-background-position②">background-position</a> computed value is just two offsets, each represented as an absolute length or a percentage, - so the declarations <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position②">background-position: top center</a> and <span class="css" id="ref-for-propdef-background-position③">background-position: 50% 0%</span> produce identical computed values. + so the declarations <a class="css" data-link-type="propdesc" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position③">background-position: top center</a> and <span class="css" id="ref-for-propdef-background-position④">background-position: 50% 0%</span> produce identical computed values. If the "Computed Value" line of a property definition seems to define something ambiguous or overly strict, please <a href="#status">provide feedback</a> so we can fix it.</p> <p>If <a class="css" data-link-type="maybe" href="#funcdef-toggle" id="ref-for-funcdef-toggle①④">toggle()</a> is used on a <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#shorthand-property" id="ref-for-shorthand-property">shorthand property</a>, @@ -3986,7 +3985,7 @@ <h3 class="heading settled" data-level="11.6" id="sign-funcs"><span class="secno In particular, an expression like <span class="css">10%</span> might be positive <em>or</em> negative once it’s resolved, depending on what value it’s resolved against. - For example, in <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position④">background-position</a> positive percentages + For example, in <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position⑤">background-position</a> positive percentages resolve to a negative length, and vice versa, if the background image is larger than the background area. @@ -4540,9 +4539,9 @@ <h3 class="heading settled" data-level="11.11" id="calc-computed-value"><span cl <div class="example" id="example-023dad93"> <a class="self-link" href="#example-023dad93"></a> For example, whereas <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-fonts-4/#propdef-font-size" id="ref-for-propdef-font-size⑧">font-size</a> computes percentage values at <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value⑨">computed value</a> time - so that <a data-link-type="dfn" href="#font-relative-length" id="ref-for-font-relative-length">font-relative length</a> units can be computed, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position⑤">background-position</a> has layout-dependent behavior for percentage values, + so that <a data-link-type="dfn" href="#font-relative-length" id="ref-for-font-relative-length">font-relative length</a> units can be computed, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position⑥">background-position</a> has layout-dependent behavior for percentage values, and thus does not resolve percentages until used-value time. - <p>Due to this, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position⑥">background-position</a> computation preserves the percentage in a <a class="css" data-link-type="maybe" href="#funcdef-calc" id="ref-for-funcdef-calc①⑦">calc()</a> whereas <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-fonts-4/#propdef-font-size" id="ref-for-propdef-font-size⑨">font-size</a> will compute such expressions directly into a length.</p> + <p>Due to this, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position" id="ref-for-propdef-background-position⑦">background-position</a> computation preserves the percentage in a <a class="css" data-link-type="maybe" href="#funcdef-calc" id="ref-for-funcdef-calc①⑦">calc()</a> whereas <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-fonts-4/#propdef-font-size" id="ref-for-propdef-font-size⑨">font-size</a> will compute such expressions directly into a length.</p> </div> <p>Given the complexities of width and height calculations on table cells and table elements, math expressions mixing both percentages and lengths for widths and heights on @@ -5171,11 +5170,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-here"><span class="c </ul> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> - <li> - <a data-link-type="biblio">[CSS-ANCHOR-POSITION-1]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="306f9323">default</span> - </ul> <li> <a data-link-type="biblio">[CSS-ANIMATIONS-1]</a> defines the following terms: <ul> @@ -5214,16 +5208,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="7a29153c">&lt;hex-color></span> <li><span class="dfn-paneled" id="cad72d2f">currentcolor</span> + <li><span class="dfn-paneled" id="218f0f24">hsl()</span> <li><span class="dfn-paneled" id="987beb2a">named color</span> <li><span class="dfn-paneled" id="91bfbe18">opacity</span> + <li><span class="dfn-paneled" id="dd998a01">rgba()</span> </ul> <li> <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="1548047a">&lt;color></span> <li><span class="dfn-paneled" id="94d3d62c">@color-profile</span> - <li><span class="dfn-paneled" id="ac080bec">hsl()</span> - <li><span class="dfn-paneled" id="84497bcf">rgba()</span> </ul> <li> <a data-link-type="biblio">[CSS-COUNTER-STYLES-3]</a> defines the following terms: @@ -5266,7 +5260,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-IMAGES-4]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="539e4c80">image-resolution</span> - <li><span class="dfn-paneled" id="a7d749a4">linear-gradient()</span> </ul> <li> <a data-link-type="biblio">[CSS-INLINE-3]</a> defines the following terms: @@ -5353,6 +5346,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-UI-4]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="7397920e">default</span> <li><span class="dfn-paneled" id="1ee7f091">outline-color</span> </ul> <li> @@ -5375,10 +5369,16 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="16b64b43">vertical-rl</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="17f0c439">&lt;border-width></span> + <li><span class="dfn-paneled" id="9d78b4c6">background-position</span> + <li><span class="dfn-paneled" id="29ca9f85">border-collapse</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="8956a48a">&lt;border-width></span> <li><span class="dfn-paneled" id="992a4717">circle</span> <li><span class="dfn-paneled" id="3ca24cd8">disc</span> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> @@ -5398,6 +5398,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS3-IMAGES]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="998b9e6e">&lt;image></span> + <li><span class="dfn-paneled" id="d3f930a7">linear-gradient()</span> </ul> <li> <a data-link-type="biblio">[DOM]</a> defines the following terms: @@ -5448,28 +5449,26 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> - <dt id="biblio-css-anchor-position-1">[CSS-ANCHOR-POSITION-1] - <dd>CSS Anchor Positioning URL: <a href="https://drafts.csswg.org/css-anchor-position-1/">https://drafts.csswg.org/css-anchor-position-1/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-grid-2">[CSS-GRID-2] <dd>Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. <a href="https://drafts.csswg.org/css-grid-2/"><cite>CSS Grid Layout Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid-2/">https://drafts.csswg.org/css-grid-2/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] @@ -5479,9 +5478,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-4/"><cite>CSS Text Decoration Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-4/">https://drafts.csswg.org/css-text-decor-4/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dt id="biblio-css-ui-4">[CSS-UI-4] + <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> <dt id="biblio-css21">[CSS21] @@ -5489,7 +5490,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-background">[CSS3-BACKGROUND] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3-fonts">[CSS3-FONTS] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css3-images">[CSS3-IMAGES] @@ -5499,7 +5500,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3color">[CSS3COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-dom">[DOM] @@ -5522,17 +5523,17 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-break-3">[CSS-BREAK-3] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break/"><cite>CSS Fragmentation Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-break/">https://drafts.csswg.org/css-break/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-grid-1">[CSS-GRID-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-grid/"><cite>CSS Grid Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-grid/">https://drafts.csswg.org/css-grid/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-rhythm-1">[CSS-RHYTHM-1] <dd>Koji Ishii; Elika Etemad. <a href="https://drafts.csswg.org/css-rhythm/"><cite>CSS Rhythmic Sizing</cite></a>. URL: <a href="https://drafts.csswg.org/css-rhythm/">https://drafts.csswg.org/css-rhythm/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] @@ -5541,8 +5542,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> - <dt id="biblio-css-ui-4">[CSS-UI-4] - <dd>Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-4/"><cite>CSS Basic User Interface Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-4/">https://drafts.csswg.org/css-ui-4/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-mediaq">[MEDIAQ] @@ -5582,7 +5581,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="calc-notation"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc()" title="The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used anywhere a <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> is allowed.">calc()</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc()" title="The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used with <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> values.">calc()</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>59+</span></span><span class="safari yes"><span>Safari</span><span>12+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> @@ -5664,11 +5663,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="lengths"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/length" title="The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-shadow.">length</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> + <span class="firefox yes"><span>Firefox</span><span>53+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -5721,13 +5721,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="trig-funcs"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/acos" title="The acos() CSS function is a trigonometric function that returns the inverse cosine of a number between -1 and 1. The function contains a single calculation that returns the number of radians representing an <angle> between 0deg and 180deg.">acos</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5736,10 +5737,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/asin" title="The asin() CSS function is a trigonometric function that returns the inverse sine of a number between -1 and 1. The function contains a single calculation that returns the number of radians representing an <angle> between -90deg and 90deg.">asin</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5748,10 +5750,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/atan" title="The atan() CSS function is a trigonometric function that returns the inverse tangent of a number between -∞ and +∞. The function contains a single calculation that returns the number of radians representing an <angle> between -90deg and 90deg.">atan</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5760,10 +5763,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/atan2" title="The atan2() CSS function is a trigonometric function that returns the inverse tangent of two values between -infinity and infinity. The function accepts two arguments and returns the number of radians representing an <angle> between -180deg and 180deg.">atan2</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5772,10 +5776,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/cos" title="The cos() CSS function is a trigonometric function that returns the cosine of a number, which is a value between -1 and 1. The function contains a single calculation that must resolve to either a <number> or an <angle> by interpreting the result of the argument as radians. That is, cos(45deg), cos(0.125turn), and cos(3.14159 / 4) all represent the same value, approximately 0.707.">cos</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5784,10 +5789,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/sin" title="The sin() CSS function is a trigonometric function that returns the sine of a number, which is a value between -1 and 1. The function contains a single calculation that must resolve to either a <number> or an <angle> by interpreting the result of the argument as radians. That is, sin(45deg), sin(0.125turn), and sin(3.14159 / 4) all represent the same value, approximately 0.707.">sin</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5796,10 +5802,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/tan" title="The tan() CSS function is a trigonometric function that returns the tangent of a number, which is a value between −infinity and infinity. The function contains a single calculation that must resolve to either a <number> or an <angle> by interpreting the result of the argument as radians.">tan</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>111+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>111+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5879,13 +5886,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="calc-constants"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc-constant" title="The <calc-constant> CSS data type represents well-defined constants such as e and π. Rather than require authors to manually type out several digits of these mathematical constants or calculate them, a few of them are provided directly by CSS for convenience.">calc-constant</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc-constant" title="The <calc-constant> CSS data type represents well-defined constants such as e and pi. Rather than require authors to manually type out several digits of these mathematical constants or calculate them, a few of them are provided directly by CSS for convenience.">calc-constant</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>108+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>99+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>99+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -5896,7 +5904,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="calc-func"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc" title="The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used anywhere a <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> is allowed.">calc</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/calc" title="The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used with <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> values.">calc</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>16+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>26+</span></span> @@ -5926,12 +5934,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="exponent-funcs"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/exp" title="The exp() CSS function is an exponential function that takes an number as an argument and returns the mathematical constant e raised to the power of the given number.">exp</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>112+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5942,9 +5949,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/hypot" title="The hypot() CSS function is an exponential function that returns the square root of the sum of squares of its parameters.">hypot</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>112+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5955,9 +5961,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/log" title="The log() CSS function is an exponential function that returns the logarithm of a number.">log</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>112+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5968,9 +5973,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/pow" title="The pow() CSS function is an exponential function that returns the value of a base raised to the power of a number.">pow</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>112+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5981,9 +5985,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/sqrt" title="The sqrt() CSS function is an exponential function that returns the square root of a number.">sqrt</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>112+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -6025,6 +6028,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="funcdef-mod"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/mod" title="The mod() CSS function returns a modulus left over when the first parameter is divided by the second parameter, similar to the JavaScript remainder operator (%). The modulus is the value left over when one operand, the dividend, is divided by a second operand, the divisor. It always takes the sign of the divisor.">mod</a></p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 109+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="numbers"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -6073,6 +6091,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="funcdef-rem"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/rem" title="The rem() CSS function returns a remainder left over when the first parameter is divided by the second parameter, similar to the JavaScript remainder operator (%). The remainder is the value left over when one operand, the dividend, is divided by a second operand, the divisor. It always takes the sign of the dividend.">rem</a></p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 109+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="resolution"> <summary><span>MDN</span></summary> <div class="feature"> @@ -6088,6 +6121,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="funcdef-round"> + <summary><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/round" title="The round() CSS function returns a rounded number based on a selected rounding strategy.">round</a></p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>preview+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="strings"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -6330,15 +6378,17 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1548047a": {"dfnID":"1548047a","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"},{"id":"ref-for-typedef-color\u2460"},{"id":"ref-for-typedef-color\u2461"}],"title":"8.1. \nColors: the <color> type"},{"refs":[{"id":"ref-for-typedef-color\u2462"},{"id":"ref-for-typedef-color\u2463"},{"id":"ref-for-typedef-color\u2464"}],"title":"8.1.1. \nCombination of <color>"},{"refs":[{"id":"ref-for-typedef-color\u2465"}],"title":"10.1. \nattr() Types"}],"url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "16b64b43": {"dfnID":"16b64b43","dfnText":"vertical-rl","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-writing-mode-vertical-rl"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl"}, "16d07e10": {"dfnID":"16d07e10","dfnText":"for each","external":true,"refSections":[{"refs":[{"id":"ref-for-list-iterate"}],"title":"11.10.1. \nSimplification"},{"refs":[{"id":"ref-for-list-iterate\u2460"},{"id":"ref-for-list-iterate\u2461"}],"title":"11.13. \nSerialization"}],"url":"https://infra.spec.whatwg.org/#list-iterate"}, +"17f0c439": {"dfnID":"17f0c439","dfnText":"<border-width>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-border-width"}],"title":"2.1. \nComponent Value Types"}],"url":"https://www.w3.org/TR/CSS21/box.html#value-def-border-width"}, "198f1537": {"dfnID":"198f1537","dfnText":"custom property","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-property"},{"id":"ref-for-custom-property\u2460"}],"title":"4.3. \nExplicitly Author-defined Identifiers: the <dashed-ident> type"},{"refs":[{"id":"ref-for-custom-property\u2461"}],"title":"10. \nAttribute References: the attr() function"}],"url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, "1b0a0464": {"dfnID":"1b0a0464","dfnText":"parse a component value","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-component-value"},{"id":"ref-for-parse-a-component-value\u2460"},{"id":"ref-for-parse-a-component-value\u2461"},{"id":"ref-for-parse-a-component-value\u2462"},{"id":"ref-for-parse-a-component-value\u2463"}],"title":"10.1. \nattr() Types"}],"url":"https://drafts.csswg.org/css-syntax-3/#parse-a-component-value"}, "1cf918c1": {"dfnID":"1cf918c1","dfnText":"specified value","external":true,"refSections":[{"refs":[{"id":"ref-for-specified-value"}],"title":"4. \nTextual Data Types"},{"refs":[{"id":"ref-for-specified-value\u2460"}],"title":"5. \nNumeric Data Types"},{"refs":[{"id":"ref-for-specified-value\u2461"}],"title":"11.12. \nRange Checking"}],"url":"https://drafts.csswg.org/css-cascade-5/#specified-value"}, "1ee7f091": {"dfnID":"1ee7f091","dfnText":"outline-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-outline-color"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-color"}, +"218f0f24": {"dfnID":"218f0f24","dfnText":"hsl()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-hsl"}],"title":"5.6. \nMixing Percentages and Dimensions"}],"url":"https://drafts.csswg.org/css-color-4/#funcdef-hsl"}, "2589df91": {"dfnID":"2589df91","dfnText":"orphans","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-orphans"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-break-3/#propdef-orphans"}, "27d9b7ea": {"dfnID":"27d9b7ea","dfnText":"element","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-element"}],"title":"10. \nAttribute References: the attr() function"}],"url":"https://dom.spec.whatwg.org/#concept-element"}, +"29ca9f85": {"dfnID":"29ca9f85","dfnText":"border-collapse","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-collapse"}],"title":"4.1. \nPre-defined Keywords"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, "2c57f900": {"dfnID":"2c57f900","dfnText":"font","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font"},{"id":"ref-for-propdef-font\u2460"},{"id":"ref-for-propdef-font\u2461"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font"}, "2fafca4a": {"dfnID":"2fafca4a","dfnText":"match","external":true,"refSections":[{"refs":[{"id":"ref-for-cssnumericvalue-match"},{"id":"ref-for-cssnumericvalue-match\u2460"}],"title":"11.5. \nExponential Functions: pow(), sqrt(), hypot(), log(), exp()"},{"refs":[{"id":"ref-for-cssnumericvalue-match\u2461"},{"id":"ref-for-cssnumericvalue-match\u2462"}],"title":"11.9. \nType Checking"},{"refs":[{"id":"ref-for-cssnumericvalue-match\u2463"}],"title":"11.10.1. \nSimplification"}],"url":"https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-match"}, -"306f9323": {"dfnID":"306f9323","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-anchor-scroll-default"}],"title":"4.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "30ce8c2a": {"dfnID":"30ce8c2a","dfnText":"block-step-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-block-step-size"},{"id":"ref-for-propdef-block-step-size\u2460"}],"title":"11.3. \nStepped Value Functions: round(), mod(), and rem()"}],"url":"https://drafts.csswg.org/css-rhythm-1/#propdef-block-step-size"}, "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"6.1.2. \nViewport-percentage Lengths: the vw, vh, vi, vb, vmin, vmax units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3bd4bbe9": {"dfnID":"3bd4bbe9","dfnText":"text-orientation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-orientation"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation"}, @@ -6365,6 +6415,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "6c3d0564": {"dfnID":"6c3d0564","dfnText":"add two types","external":true,"refSections":[{"refs":[{"id":"ref-for-cssnumericvalue-add-two-types"},{"id":"ref-for-cssnumericvalue-add-two-types\u2460"},{"id":"ref-for-cssnumericvalue-add-two-types\u2461"}],"title":"11.9. \nType Checking"}],"url":"https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-add-two-types"}, "6e9f0abf": {"dfnID":"6e9f0abf","dfnText":"disc","external":true,"refSections":[{"refs":[{"id":"ref-for-disc"}],"title":"2.1. \nComponent Value Types"}],"url":"https://drafts.csswg.org/css-counter-styles-3/#disc"}, "73759fff": {"dfnID":"73759fff","dfnText":"border-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-color"}],"title":"2.1. \nComponent Value Types"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color"}, +"7397920e": {"dfnID":"7397920e","dfnText":"default","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-cursor-default"}],"title":"4.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "7522beee": {"dfnID":"7522beee","dfnText":"normal","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-line-height-normal"},{"id":"ref-for-valdef-line-height-normal\u2460"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal"}, "758665a5": {"dfnID":"758665a5","dfnText":"paged media","external":true,"refSections":[{"refs":[{"id":"ref-for-paged-media"}],"title":"6.1.2. \nViewport-percentage Lengths: the vw, vh, vi, vb, vmin, vmax units"}],"url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "75e46141": {"dfnID":"75e46141","dfnText":"box-sizing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-sizing"}],"title":"11.1. \nBasic Arithmetic: calc()"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing"}, @@ -6377,13 +6428,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8095a819": {"dfnID":"8095a819","dfnText":"<easing-function>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-easing-function"}],"title":"4.2. \nAuthor-defined Identifiers: the <custom-ident> type"}],"url":"https://drafts.csswg.org/css-easing-2/#typedef-easing-function"}, "8144e597": {"dfnID":"8144e597","dfnText":"<declaration-value>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-declaration-value"},{"id":"ref-for-typedef-declaration-value\u2460"}],"title":"10. \nAttribute References: the attr() function"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-declaration-value"}, "82805a4e": {"dfnID":"82805a4e","dfnText":"originating element","external":true,"refSections":[{"refs":[{"id":"ref-for-originating-element"}],"title":"10. \nAttribute References: the attr() function"}],"url":"https://drafts.csswg.org/selectors-4/#originating-element"}, -"84497bcf": {"dfnID":"84497bcf","dfnText":"rgba()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rgba"}],"title":"9. \nFunctional Notations"}],"url":"https://drafts.csswg.org/css-color-5/#funcdef-rgba"}, "860c17f8": {"dfnID":"860c17f8","dfnText":"<delim-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-delim-token"}],"title":"10. \nAttribute References: the attr() function"},{"refs":[{"id":"ref-for-typedef-delim-token\u2460"}],"title":"11.10. \nInternal Representation"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-delim-token"}, "86928bde": {"dfnID":"86928bde","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"6.1.2. \nViewport-percentage Lengths: the vw, vh, vi, vb, vmin, vmax units"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "87806adf": {"dfnID":"87806adf","dfnText":"pushState(data, unused, url)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-history-pushstate"}],"title":"4.5.1.1. \nFragment URLs"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-pushstate"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"},{"id":"ref-for-propdef-width\u2462"},{"id":"ref-for-propdef-width\u2463"},{"id":"ref-for-propdef-width\u2464"},{"id":"ref-for-propdef-width\u2465"}],"title":"5.6. \nMixing Percentages and Dimensions"},{"refs":[{"id":"ref-for-propdef-width\u2466"}],"title":"10. \nAttribute References: the attr() function"},{"refs":[{"id":"ref-for-propdef-width\u2467"}],"title":"11.1. \nBasic Arithmetic: calc()"},{"refs":[{"id":"ref-for-propdef-width\u2468"},{"id":"ref-for-propdef-width\u2460\u24ea"},{"id":"ref-for-propdef-width\u2460\u2460"},{"id":"ref-for-propdef-width\u2460\u2461"},{"id":"ref-for-propdef-width\u2460\u2462"},{"id":"ref-for-propdef-width\u2460\u2463"}],"title":"11.9. \nType Checking"},{"refs":[{"id":"ref-for-propdef-width\u2460\u2464"},{"id":"ref-for-propdef-width\u2460\u2465"}],"title":"11.12. \nRange Checking"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "88def535": {"dfnID":"88def535","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"11.2. \nComparison Functions: min(), max(), and clamp()"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-min-width"}, -"8956a48a": {"dfnID":"8956a48a","dfnText":"<border-width>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-border-width"}],"title":"2.1. \nComponent Value Types"}],"url":"https://drafts.csswg.org/css2/#value-def-border-width"}, "8b3ca704": {"dfnID":"8b3ca704","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-auto"}],"title":"6.1.2. \nViewport-percentage Lengths: the vw, vh, vi, vb, vmin, vmax units"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-auto"}, "8ca0c013": {"dfnID":"8ca0c013","dfnText":"shorthand property","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"},{"id":"ref-for-shorthand-property\u2460"}],"title":"9.1. \nToggling Between Values: toggle()"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, "8f605f43": {"dfnID":"8f605f43","dfnText":"tab-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-tab-size"}],"title":"11.9. \nType Checking"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-tab-size"}, @@ -6397,16 +6446,15 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "998b9e6e": {"dfnID":"998b9e6e","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"},{"id":"ref-for-typedef-image\u2460"},{"id":"ref-for-typedef-image\u2461"},{"id":"ref-for-typedef-image\u2462"}],"title":"8.2. \nImages: the <image> type"},{"refs":[{"id":"ref-for-typedef-image\u2463"},{"id":"ref-for-typedef-image\u2464"}],"title":"8.2.1. \nCombination of <image>"}],"url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, "9a34f8c4": {"dfnID":"9a34f8c4","dfnText":"internal representation","external":true,"refSections":[{"refs":[{"id":"ref-for-css-internal-representation"},{"id":"ref-for-css-internal-representation\u2460"},{"id":"ref-for-css-internal-representation\u2461"},{"id":"ref-for-css-internal-representation\u2462"}],"title":"11.10. \nInternal Representation"},{"refs":[{"id":"ref-for-css-internal-representation\u2463"}],"title":"11.10.1. \nSimplification"}],"url":"https://drafts.css-houdini.org/css-typed-om-1/#css-internal-representation"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"},{"id":"ref-for-computed-value\u2460"},{"id":"ref-for-computed-value\u2461"}],"title":"3. \nCombining Values: Interpolation, Addition, and Accumulation"},{"refs":[{"id":"ref-for-computed-value\u2462"}],"title":"4. \nTextual Data Types"},{"refs":[{"id":"ref-for-computed-value\u2463"}],"title":"5. \nNumeric Data Types"},{"refs":[{"id":"ref-for-computed-value\u2464"}],"title":"5.4.1. \nCompatible Units"},{"refs":[{"id":"ref-for-computed-value\u2465"}],"title":"6.1. \nRelative Lengths"},{"refs":[{"id":"ref-for-computed-value\u2466"},{"id":"ref-for-computed-value\u2467"},{"id":"ref-for-computed-value\u2468"}],"title":"11.11. \nComputed Value"},{"refs":[{"id":"ref-for-computed-value\u2460\u24ea"},{"id":"ref-for-computed-value\u2460\u2460"}],"title":"11.12. \nRange Checking"},{"refs":[{"id":"ref-for-computed-value\u2460\u2461"}],"title":"11.13. \nSerialization"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, +"9d78b4c6": {"dfnID":"9d78b4c6","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position\u2461"}],"title":"9.1. \nToggling Between Values: toggle()"}],"url":"https://www.w3.org/TR/CSS21/colors.html#propdef-background-position"}, "9e004c39": {"dfnID":"9e004c39","dfnText":"unset","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-unset"},{"id":"ref-for-valdef-all-unset\u2460"}],"title":"4.1.1. \nCSS-wide keywords: initial, inherit and unset"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-unset"}, "Hz": {"dfnID":"Hz","dfnText":"Hz","external":false,"refSections":[{"refs":[{"id":"ref-for-Hz"},{"id":"ref-for-Hz\u2460"}],"title":"7.3. \nFrequency Units: the <frequency> type and Hz, kHz units"}],"url":"#Hz"}, "Q": {"dfnID":"Q","dfnText":"Q","external":false,"refSections":[{"refs":[{"id":"ref-for-Q"},{"id":"ref-for-Q\u2460"}],"title":"6.2. \nAbsolute Lengths: the cm, mm, Q, in, pt, pc, px units"}],"url":"#Q"}, "a37f05fd": {"dfnID":"a37f05fd","dfnText":"strip leading and trailing ascii whitespace","external":true,"refSections":[{"refs":[{"id":"ref-for-strip-leading-and-trailing-ascii-whitespace"}],"title":"10.1. \nattr() Types"}],"url":"https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"5.4.1. \nCompatible Units"},{"refs":[{"id":"ref-for-used-value\u2461"}],"title":"6. \nDistance Units: the <length> type"},{"refs":[{"id":"ref-for-used-value\u2462"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"},{"refs":[{"id":"ref-for-used-value\u2463"},{"id":"ref-for-used-value\u2464"}],"title":"11.11. \nComputed Value"},{"refs":[{"id":"ref-for-used-value\u2465"},{"id":"ref-for-used-value\u2466"}],"title":"11.12. \nRange Checking"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a63375cb": {"dfnID":"a63375cb","dfnText":"<dimension-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dimension-token"}],"title":"2.5. \nComponent Values and White Space"},{"refs":[{"id":"ref-for-typedef-dimension-token\u2460"}],"title":"5.4. \nNumbers with Units: dimension values"},{"refs":[{"id":"ref-for-typedef-dimension-token\u2461"}],"title":"10.1. \nattr() Types"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-dimension-token"}, -"a7d749a4": {"dfnID":"a7d749a4","dfnText":"linear-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-linear-gradient"}],"title":"7.1. \nAngle Units: the <angle> type and deg, grad, rad, turn units"}],"url":"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient"}, "a942934d": {"dfnID":"a942934d","dfnText":"<whitespace-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-whitespace-token"}],"title":"11.10. \nInternal Representation"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-whitespace-token"}, "absolute-length": {"dfnID":"absolute-length","dfnText":"absolute length units","external":false,"refSections":[{"refs":[{"id":"ref-for-absolute-length"}],"title":"6. \nDistance Units: the <length> type"}],"url":"#absolute-length"}, -"ac080bec": {"dfnID":"ac080bec","dfnText":"hsl()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-hsl"}],"title":"5.6. \nMixing Percentages and Dimensions"}],"url":"https://drafts.csswg.org/css-color-5/#funcdef-hsl"}, "ac54fbff": {"dfnID":"ac54fbff","dfnText":"line-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-height"}],"title":"6. \nDistance Units: the <length> type"},{"refs":[{"id":"ref-for-propdef-line-height\u2460"},{"id":"ref-for-propdef-line-height\u2461"},{"id":"ref-for-propdef-line-height\u2462"},{"id":"ref-for-propdef-line-height\u2463"},{"id":"ref-for-propdef-line-height\u2464"},{"id":"ref-for-propdef-line-height\u2465"},{"id":"ref-for-propdef-line-height\u2466"},{"id":"ref-for-propdef-line-height\u2467"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"},{"refs":[{"id":"ref-for-propdef-line-height\u2468"},{"id":"ref-for-propdef-line-height\u2460\u24ea"},{"id":"ref-for-propdef-line-height\u2460\u2460"}],"title":"11.7. \nNumeric Constants: e, pi"},{"refs":[{"id":"ref-for-propdef-line-height\u2460\u2461"}],"title":"11.9. \nType Checking"}],"url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "accumulation": {"dfnID":"accumulation","dfnText":"accumulation","external":false,"refSections":[{"refs":[{"id":"ref-for-accumulation"},{"id":"ref-for-accumulation\u2460"},{"id":"ref-for-accumulation\u2461"},{"id":"ref-for-accumulation\u2462"},{"id":"ref-for-accumulation\u2463"}],"title":"3. \nCombining Values: Interpolation, Addition, and Accumulation"}],"url":"#accumulation"}, "addition": {"dfnID":"addition","dfnText":"addition","external":false,"refSections":[{"refs":[{"id":"ref-for-addition"},{"id":"ref-for-addition\u2460"},{"id":"ref-for-addition\u2461"},{"id":"ref-for-addition\u2462"},{"id":"ref-for-addition\u2463"},{"id":"ref-for-addition\u2464"},{"id":"ref-for-addition\u2465"}],"title":"3. \nCombining Values: Interpolation, Addition, and Accumulation"},{"refs":[{"id":"ref-for-addition\u2466"}],"title":"5.2.1. \nCombination of <integer>"},{"refs":[{"id":"ref-for-addition\u2467"}],"title":"5.3.1. \nCombination of <number>"},{"refs":[{"id":"ref-for-addition\u2468"}],"title":"5.4.2. \nCombination of Dimensions"},{"refs":[{"id":"ref-for-addition\u2460\u24ea"}],"title":"5.5.1. \nCombination of <percentage>"},{"refs":[{"id":"ref-for-addition\u2460\u2460"},{"id":"ref-for-addition\u2460\u2461"}],"title":"5.6.1. \nCombination of Percentage and Dimension Mixes"},{"refs":[{"id":"ref-for-addition\u2460\u2462"},{"id":"ref-for-addition\u2460\u2463"}],"title":"8.1.1. \nCombination of <color>"},{"refs":[{"id":"ref-for-addition\u2460\u2464"},{"id":"ref-for-addition\u2460\u2465"}],"title":"8.3.1. \nCombination of <position>"},{"refs":[{"id":"ref-for-addition\u2460\u2466"}],"title":"11.14. \nCombination of Math Functions"}],"url":"#addition"}, @@ -6449,14 +6497,16 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "css-value-definition-syntax": {"dfnID":"css-value-definition-syntax","dfnText":"value definition syntax","external":false,"refSections":[],"url":"#css-value-definition-syntax"}, "css-wide-keywords": {"dfnID":"css-wide-keywords","dfnText":"CSS-wide keywords","external":false,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"4.2. \nAuthor-defined Identifiers: the <custom-ident> type"},{"refs":[{"id":"ref-for-css-wide-keywords\u2460"}],"title":"10.1. \nattr() Types"}],"url":"#css-wide-keywords"}, "d24165c7": {"dfnID":"d24165c7","dfnText":"vertical-lr","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-writing-mode-vertical-lr"}],"title":"6.1.1. \nFont-relative Lengths: the em, ex, cap, ch, ic, rem, lh, rlh units"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr"}, -"d27a809f": {"dfnID":"d27a809f","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position"},{"id":"ref-for-propdef-background-position\u2460"}],"title":"8.3. \n2D Positioning: the <position> type"},{"refs":[{"id":"ref-for-propdef-background-position\u2461"},{"id":"ref-for-propdef-background-position\u2462"}],"title":"9.1. \nToggling Between Values: toggle()"},{"refs":[{"id":"ref-for-propdef-background-position\u2463"}],"title":"11.6. \nSign-Related Functions: abs(), sign()"},{"refs":[{"id":"ref-for-propdef-background-position\u2464"},{"id":"ref-for-propdef-background-position\u2465"}],"title":"11.11. \nComputed Value"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position"}, +"d27a809f": {"dfnID":"d27a809f","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position"},{"id":"ref-for-propdef-background-position\u2460"}],"title":"8.3. \n2D Positioning: the <position> type"},{"refs":[{"id":"ref-for-propdef-background-position\u2462"},{"id":"ref-for-propdef-background-position\u2463"}],"title":"9.1. \nToggling Between Values: toggle()"},{"refs":[{"id":"ref-for-propdef-background-position\u2464"}],"title":"11.6. \nSign-Related Functions: abs(), sign()"},{"refs":[{"id":"ref-for-propdef-background-position\u2465"},{"id":"ref-for-propdef-background-position\u2466"}],"title":"11.11. \nComputed Value"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position"}, "d309d3f4": {"dfnID":"d309d3f4","dfnText":"inherited value","external":true,"refSections":[{"refs":[{"id":"ref-for-inherited-value"},{"id":"ref-for-inherited-value\u2460"}],"title":"9.1. \nToggling Between Values: toggle()"}],"url":"https://drafts.csswg.org/css-cascade-5/#inherited-value"}, +"d3f930a7": {"dfnID":"d3f930a7","dfnText":"linear-gradient()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-linear-gradient"}],"title":"7.1. \nAngle Units: the <angle> type and deg, grad, rad, turn units"}],"url":"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient"}, "d65d17df": {"dfnID":"d65d17df","dfnText":"font-family","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-family"}],"title":"2.6. \nProperty Value Examples"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-family"}, "d7d4206f": {"dfnID":"d7d4206f","dfnText":"type","external":true,"refSections":[{"refs":[{"id":"ref-for-cssnumericvalue-type"},{"id":"ref-for-cssnumericvalue-type\u2460"}],"title":"11.3. \nStepped Value Functions: round(), mod(), and rem()"},{"refs":[{"id":"ref-for-cssnumericvalue-type\u2461"},{"id":"ref-for-cssnumericvalue-type\u2462"},{"id":"ref-for-cssnumericvalue-type\u2463"}],"title":"11.5. \nExponential Functions: pow(), sqrt(), hypot(), log(), exp()"},{"refs":[{"id":"ref-for-cssnumericvalue-type\u2464"}],"title":"11.6. \nSign-Related Functions: abs(), sign()"},{"refs":[{"id":"ref-for-cssnumericvalue-type\u2465"},{"id":"ref-for-cssnumericvalue-type\u2466"},{"id":"ref-for-cssnumericvalue-type\u2467"},{"id":"ref-for-cssnumericvalue-type\u2468"},{"id":"ref-for-cssnumericvalue-type\u2460\u24ea"},{"id":"ref-for-cssnumericvalue-type\u2460\u2460"},{"id":"ref-for-cssnumericvalue-type\u2460\u2461"},{"id":"ref-for-cssnumericvalue-type\u2460\u2462"},{"id":"ref-for-cssnumericvalue-type\u2460\u2463"},{"id":"ref-for-cssnumericvalue-type\u2460\u2464"},{"id":"ref-for-cssnumericvalue-type\u2460\u2465"},{"id":"ref-for-cssnumericvalue-type\u2460\u2466"},{"id":"ref-for-cssnumericvalue-type\u2460\u2467"},{"id":"ref-for-cssnumericvalue-type\u2460\u2468"},{"id":"ref-for-cssnumericvalue-type\u2461\u24ea"},{"id":"ref-for-cssnumericvalue-type\u2461\u2460"},{"id":"ref-for-cssnumericvalue-type\u2461\u2461"},{"id":"ref-for-cssnumericvalue-type\u2461\u2462"},{"id":"ref-for-cssnumericvalue-type\u2461\u2463"},{"id":"ref-for-cssnumericvalue-type\u2461\u2464"},{"id":"ref-for-cssnumericvalue-type\u2461\u2465"},{"id":"ref-for-cssnumericvalue-type\u2461\u2466"},{"id":"ref-for-cssnumericvalue-type\u2461\u2467"},{"id":"ref-for-cssnumericvalue-type\u2461\u2468"},{"id":"ref-for-cssnumericvalue-type\u2462\u24ea"},{"id":"ref-for-cssnumericvalue-type\u2462\u2460"},{"id":"ref-for-cssnumericvalue-type\u2462\u2461"}],"title":"11.9. \nType Checking"},{"refs":[{"id":"ref-for-cssnumericvalue-type\u2462\u2462"},{"id":"ref-for-cssnumericvalue-type\u2462\u2463"}],"title":"11.13. \nSerialization"}],"url":"https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-type"}, "d984b6fe": {"dfnID":"d984b6fe","dfnText":"animation-name","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-name"}],"title":"4.2. \nAuthor-defined Identifiers: the <custom-ident> type"},{"refs":[{"id":"ref-for-propdef-animation-name\u2460"}],"title":"11.7. \nNumeric Constants: e, pi"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-name"}, "db0a062f": {"dfnID":"db0a062f","dfnText":"attribute","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-attribute"}],"title":"10. \nAttribute References: the attr() function"}],"url":"https://dom.spec.whatwg.org/#concept-attribute"}, "dbba942a": {"dfnID":"dbba942a","dfnText":"var()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-var"}],"title":"4.5. \nResource Locators: the <url> type"},{"refs":[{"id":"ref-for-funcdef-var\u2460"}],"title":"10. \nAttribute References: the attr() function"},{"refs":[{"id":"ref-for-funcdef-var\u2461"}],"title":"10.2. \nattr() Substitution"},{"refs":[{"id":"ref-for-funcdef-var\u2462"}],"title":"11.1. \nBasic Arithmetic: calc()"}],"url":"https://drafts.csswg.org/css-variables-2/#funcdef-var"}, "dcffbccd": {"dfnID":"dcffbccd","dfnText":"url","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url"}],"title":"4.5. \nResource Locators: the <url> type"}],"url":"https://url.spec.whatwg.org/#concept-url"}, +"dd998a01": {"dfnID":"dd998a01","dfnText":"rgba()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-rgba"}],"title":"9. \nFunctional Notations"}],"url":"https://drafts.csswg.org/css-color-4/#funcdef-rgba"}, "deg": {"dfnID":"deg","dfnText":"deg","external":false,"refSections":[{"refs":[{"id":"ref-for-deg"},{"id":"ref-for-deg\u2460"}],"title":"7.1. \nAngle Units: the <angle> type and deg, grad, rad, turn units"},{"refs":[{"id":"ref-for-deg\u2461"}],"title":"11.4.1. \nArgument Ranges"}],"url":"#deg"}, "degenerate-ratio": {"dfnID":"degenerate-ratio","dfnText":"degenerate ratio","external":false,"refSections":[{"refs":[{"id":"ref-for-degenerate-ratio"}],"title":"5.7.1. \nCombination of <ratio>"}],"url":"#degenerate-ratio"}, "determine-the-type-of-a-calculation": {"dfnID":"determine-the-type-of-a-calculation","dfnText":"determine the type of a calculation","external":false,"refSections":[{"refs":[{"id":"ref-for-determine-the-type-of-a-calculation"},{"id":"ref-for-determine-the-type-of-a-calculation\u2460"}],"title":"11.3. \nStepped Value Functions: round(), mod(), and rem()"},{"refs":[{"id":"ref-for-determine-the-type-of-a-calculation\u2461"}],"title":"11.4. \nTrigonometric Functions: sin(), cos(), tan(), asin(), acos(), atan(), and atan2()"},{"refs":[{"id":"ref-for-determine-the-type-of-a-calculation\u2462"}],"title":"11.5. \nExponential Functions: pow(), sqrt(), hypot(), log(), exp()"}],"url":"#determine-the-type-of-a-calculation"}, @@ -7002,10 +7052,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#resolution-value": "Expands to: dpcm | dpi | dppx | x", "#time-value": "Expands to: ms | s", "#typedef-rounding-strategy": "Expands to: down | nearest | to-zero | up", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-easing-2/#typedef-easing-function": "Expands to: linear", "https://drafts.csswg.org/css-grid-2/#typedef-flex": "Expands to: fr", -"https://drafts.csswg.org/css2/#value-def-border-width": "Expands to: <length> | medium | thick | thin", +"https://www.w3.org/TR/CSS21/box.html#value-def-border-width": "Expands to: <length> | medium | thick | thin", }; function setTypeTitles() { @@ -7231,7 +7281,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-multiply-two-types": {"export":true,"for_":["CSSNumericValue"],"level":"1","normative":true,"shortname":"css-typed-om","spec":"css-typed-om-1","status":"current","text":"multiply two types","type":"dfn","url":"https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-multiply-two-types"}, "https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-percent-hint": {"export":true,"for_":["CSSNumericValue"],"level":"1","normative":true,"shortname":"css-typed-om","spec":"css-typed-om-1","status":"current","text":"percent hint","type":"dfn","url":"https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-percent-hint"}, "https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-type": {"export":true,"for_":["CSSNumericValue"],"level":"1","normative":true,"shortname":"css-typed-om","spec":"css-typed-om-1","status":"current","text":"type","type":"dfn","url":"https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-type"}, -"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default": {"export":true,"for_":["anchor-scroll"],"level":"1","normative":true,"shortname":"css-anchor-position","spec":"css-anchor-position-1","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-iteration-count","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-name": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-name","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-name"}, @@ -7254,13 +7303,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"inherit","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-initial": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"initial","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-unset": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"unset","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-unset"}, +"https://drafts.csswg.org/css-color-4/#funcdef-hsl": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"hsl()","type":"function","url":"https://drafts.csswg.org/css-color-4/#funcdef-hsl"}, +"https://drafts.csswg.org/css-color-4/#funcdef-rgba": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"rgba()","type":"function","url":"https://drafts.csswg.org/css-color-4/#funcdef-rgba"}, "https://drafts.csswg.org/css-color-4/#named-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"named color","type":"dfn","url":"https://drafts.csswg.org/css-color-4/#named-color"}, "https://drafts.csswg.org/css-color-4/#propdef-opacity": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"opacity","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, "https://drafts.csswg.org/css-color-4/#typedef-hex-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"<hex-color>","type":"type","url":"https://drafts.csswg.org/css-color-4/#typedef-hex-color"}, "https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"currentcolor","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor"}, "https://drafts.csswg.org/css-color-5/#at-ruledef-profile": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"@color-profile","type":"at-rule","url":"https://drafts.csswg.org/css-color-5/#at-ruledef-profile"}, -"https://drafts.csswg.org/css-color-5/#funcdef-hsl": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"hsl()","type":"function","url":"https://drafts.csswg.org/css-color-5/#funcdef-hsl"}, -"https://drafts.csswg.org/css-color-5/#funcdef-rgba": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"rgba()","type":"function","url":"https://drafts.csswg.org/css-color-5/#funcdef-rgba"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-counter-styles-3/#disc": {"export":true,"for_":["<counter-style-name>"],"level":"3","normative":true,"shortname":"css-counter-styles","spec":"css-counter-styles-3","status":"current","text":"disc","type":"value","url":"https://drafts.csswg.org/css-counter-styles-3/#disc"}, "https://drafts.csswg.org/css-display-4/#containing-block": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"containing block","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#containing-block"}, @@ -7274,8 +7323,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-fonts-5/#descdef-font-face-font-size": {"export":true,"for_":["@font-face"],"level":"5","normative":true,"shortname":"css-fonts","spec":"css-fonts-5","status":"current","text":"font-size","type":"descriptor","url":"https://drafts.csswg.org/css-fonts-5/#descdef-font-face-font-size"}, "https://drafts.csswg.org/css-grid-2/#typedef-flex": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"<flex>","type":"type","url":"https://drafts.csswg.org/css-grid-2/#typedef-flex"}, "https://drafts.csswg.org/css-grid-2/#valdef-flex-fr": {"export":true,"for_":["<flex>"],"level":"2","normative":true,"shortname":"css-grid","spec":"css-grid-2","status":"current","text":"fr","type":"value","url":"https://drafts.csswg.org/css-grid-2/#valdef-flex-fr"}, +"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"linear-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-3/#funcdef-linear-gradient"}, "https://drafts.csswg.org/css-images-3/#typedef-image": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"<image>","type":"type","url":"https://drafts.csswg.org/css-images-3/#typedef-image"}, -"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"linear-gradient()","type":"function","url":"https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient"}, "https://drafts.csswg.org/css-images-4/#propdef-image-resolution": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"current","text":"image-resolution","type":"property","url":"https://drafts.csswg.org/css-images-4/#propdef-image-resolution"}, "https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal": {"export":true,"for_":["line-height"],"level":"3","normative":true,"shortname":"css-inline","spec":"css-inline-3","status":"current","text":"normal","type":"value","url":"https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal"}, "https://drafts.csswg.org/css-overflow-3/#propdef-overflow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"overflow","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, @@ -7309,6 +7358,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"current","text":"text-emphasis-color","type":"property","url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-color"}, "https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-transforms","spec":"css-transforms-1","status":"current","text":"transform-origin","type":"property","url":"https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin"}, "https://drafts.csswg.org/css-ui-4/#propdef-outline-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"outline-color","type":"property","url":"https://drafts.csswg.org/css-ui-4/#propdef-outline-color"}, +"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default": {"export":true,"for_":["cursor"],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"default","type":"value","url":"https://drafts.csswg.org/css-ui-4/#valdef-cursor-default"}, "https://drafts.csswg.org/css-variables-2/#custom-property": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-variables","spec":"css-variables-2","status":"current","text":"custom property","type":"dfn","url":"https://drafts.csswg.org/css-variables-2/#custom-property"}, "https://drafts.csswg.org/css-variables-2/#funcdef-var": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-variables","spec":"css-variables-2","status":"current","text":"var()","type":"function","url":"https://drafts.csswg.org/css-variables-2/#funcdef-var"}, "https://drafts.csswg.org/css-variables-2/#guaranteed-invalid-value": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-variables","spec":"css-variables-2","status":"current","text":"guaranteed-invalid value","type":"dfn","url":"https://drafts.csswg.org/css-variables-2/#guaranteed-invalid-value"}, @@ -7322,7 +7372,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical-lr","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr"}, "https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl": {"export":true,"for_":["writing-mode"],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"vertical-rl","type":"value","url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, -"https://drafts.csswg.org/css2/#value-def-border-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<border-width>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-border-width"}, "https://drafts.csswg.org/css2/#value-def-circle": {"export":true,"for_":["list-style-type"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"circle","type":"value","url":"https://drafts.csswg.org/css2/#value-def-circle"}, "https://drafts.csswg.org/css2/#value-def-disc": {"export":true,"for_":["list-style-type"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"disc","type":"value","url":"https://drafts.csswg.org/css2/#value-def-disc"}, "https://drafts.csswg.org/css2/#value-def-square": {"export":true,"for_":["list-style-type"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"square","type":"value","url":"https://drafts.csswg.org/css2/#value-def-square"}, @@ -7341,6 +7390,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://infra.spec.whatwg.org/#string-is": {"export":true,"for_":["string"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"identical to","type":"dfn","url":"https://infra.spec.whatwg.org/#string-is"}, "https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"strip leading and trailing ascii whitespace","type":"dfn","url":"https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace"}, "https://url.spec.whatwg.org/#concept-url": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"url","spec":"url","status":"current","text":"url","type":"dfn","url":"https://url.spec.whatwg.org/#concept-url"}, +"https://www.w3.org/TR/CSS21/box.html#value-def-border-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"<border-width>","type":"type","url":"https://www.w3.org/TR/CSS21/box.html#value-def-border-width"}, +"https://www.w3.org/TR/CSS21/colors.html#propdef-background-position": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"background-position","type":"property","url":"https://www.w3.org/TR/CSS21/colors.html#propdef-background-position"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-collapse","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-variables-1/Overview.html b/tests/github/w3c/csswg-drafts/css-variables-1/Overview.html index 45b50ae616..9285f79a3f 100644 --- a/tests/github/w3c/csswg-drafts/css-variables-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-variables-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Custom Properties for Cascading Variables Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-variables-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1076,7 +1075,7 @@ <h1 class="p-name no-ref" id="title">CSS Custom Properties for Cascading Variabl </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1098,7 +1097,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-variables] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-variables%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1262,7 +1261,7 @@ <h2 class="heading settled" data-level="2" id="defining-variables"><span class=" rather than requiring many edits across all stylesheets in the webpage.</p> </div> <p>Unlike other CSS properties, - custom property names are <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive">case-sensitive</a>.</p> + custom property names are <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive">case-sensitive</a>.</p> <div class="example" id="example-ddbbde9e"><a class="self-link" href="#example-ddbbde9e"></a> While both <a class="property css" data-link-type="property">--foo</a> and --FOO are valid, they are distinct properties - using <span class="css">var(--foo)</span> will refer to the first one, @@ -1945,7 +1944,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e5906a26">case-sensitive</span> + <li><span class="dfn-paneled" id="86c3e5ca">case-sensitive</span> </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: @@ -1957,17 +1956,17 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-cascade-6">[CSS-CASCADE-6] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-6/"><cite>CSS Cascading and Inheritance Level 6</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-6/">https://drafts.csswg.org/css-cascade-6/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-properties-values-api-1">[CSS-PROPERTIES-VALUES-API-1] - <dd>Tab Atkins Jr.; et al. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> + <dd>Tab Atkins Jr.; Alan Stearns; Greg Whitworth. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] @@ -1990,15 +1989,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-extensions">[CSS-EXTENSIONS] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-extensions/"><cite>CSS Extensions</cite></a>. ED. URL: <a href="https://drafts.csswg.org/css-extensions/">https://drafts.csswg.org/css-extensions/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -2276,6 +2275,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"}],"title":"2.1. \nCustom Property Value Syntax"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2460"}],"title":"4.1. \nSerializing Custom Properties"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "8144e597": {"dfnID":"8144e597","dfnText":"<declaration-value>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-declaration-value"}],"title":"2. \nDefining Custom Properties: the --* family of properties"},{"refs":[{"id":"ref-for-typedef-declaration-value\u2460"}],"title":"2.1. \nCustom Property Value Syntax"},{"refs":[{"id":"ref-for-typedef-declaration-value\u2461"}],"title":"3. \nUsing Cascading Variables: the var() notation"},{"refs":[{"id":"ref-for-typedef-declaration-value\u2462"}],"title":"5.1. \nChanges Since the 03 December 2015 CR"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-declaration-value"}, "860c17f8": {"dfnID":"860c17f8","dfnText":"<delim-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-delim-token"}],"title":"2.1. \nCustom Property Value Syntax"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-delim-token"}, +"86c3e5ca": {"dfnID":"86c3e5ca","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-case-sensitive"}],"title":"2. \nDefining Custom Properties: the --* family of properties"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "8a427103": {"dfnID":"8a427103","dfnText":"<dashed-ident>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dashed-ident"}],"title":"2. \nDefining Custom Properties: the --* family of properties"}],"url":"https://drafts.csswg.org/css-values-4/#typedef-dashed-ident"}, "8ca0c013": {"dfnID":"8ca0c013","dfnText":"shorthand property","external":true,"refSections":[{"refs":[{"id":"ref-for-shorthand-property"}],"title":"3.2. \nVariables in Shorthand Properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#shorthand-property"}, "9e004c39": {"dfnID":"9e004c39","dfnText":"unset","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-unset"}],"title":"3.1. \nInvalid Variables"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-unset"}, @@ -2289,7 +2289,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "d95397a7": {"dfnID":"d95397a7","dfnText":"all","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-all"}],"title":"2. \nDefining Custom Properties: the --* family of properties"}],"url":"https://drafts.csswg.org/css-cascade-5/#propdef-all"}, "de6d76c2": {"dfnID":"de6d76c2","dfnText":"cascade","external":true,"refSections":[{"refs":[{"id":"ref-for-cascade"}],"title":"3.2. \nVariables in Shorthand Properties"}],"url":"https://drafts.csswg.org/css-cascade-6/#cascade"}, "e4ffca7f": {"dfnID":"e4ffca7f","dfnText":"declarations","external":true,"refSections":[{"refs":[{"id":"ref-for-cssstyledeclaration-declarations"}],"title":"4. \nAPIs"}],"url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations"}, -"e5906a26": {"dfnID":"e5906a26","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-def_case_sensitive"}],"title":"2. \nDefining Custom Properties: the --* family of properties"}],"url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"}],"title":"3. \nUsing Cascading Variables: the var() notation"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "e8ff0bb4": {"dfnID":"e8ff0bb4","dfnText":"em","external":true,"refSections":[{"refs":[{"id":"ref-for-em"}],"title":"2.3. \nResolving Dependency Cycles"}],"url":"https://drafts.csswg.org/css-values-4/#em"}, "eda608e1": {"dfnID":"eda608e1","dfnText":"animation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation"}],"title":"3. \nUsing Cascading Variables: the var() notation"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, @@ -2796,7 +2795,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"declarations","type":"dfn","url":"https://drafts.csswg.org/cssom-1/#cssstyledeclaration-declarations"}, "https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-getpropertyvalue": {"export":true,"for_":["CSSStyleDeclaration"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"current","text":"getPropertyValue(property)","type":"method","url":"https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-getpropertyvalue"}, "https://infra.spec.whatwg.org/#ascii-case-insensitive": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ascii case-insensitive","type":"dfn","url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, -"https://w3c.github.io/i18n-glossary/#def_case_sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, +"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.console.txt index e69de29bb2..8d40d41fcb 100644 --- a/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.console.txt @@ -0,0 +1 @@ +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.html b/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.html index 842fd71abb..5d53f8a268 100644 --- a/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-will-change-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Will Change Module Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-will-change/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -952,7 +951,7 @@ <h1 class="p-name no-ref" id="title">CSS Will Change Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -974,7 +973,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-will-change] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-will-change%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1418,9 +1417,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> </dl> diff --git a/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.console.txt index df82444368..6da975be5e 100644 --- a/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.console.txt @@ -26,74 +26,18 @@ LINE 1652: Image doesn't exist, so I couldn't determine its width and height: 'd LINE 1659: Image doesn't exist, so I couldn't determine its width and height: 'diagrams/line-orient-right.png' LINE 1832: Image doesn't exist, so I couldn't determine its width and height: 'diagrams/vertical-table.png' LINE 2373: Image doesn't exist, so I couldn't determine its width and height: 'images/tate-chu-yoko.png' -LINE 398: No 'property' refs found for 'display' with spec 'css2'. -''display: inline'' -LINE ~469: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE 629: No 'property' refs found for 'display' with spec 'css2'. -''display: inline'' -LINE 883: No 'property' refs found for 'display' with spec 'css2'. -''display: contents'' -LINE ~885: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE ~1880: Multiple possible 'border-spacing' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-spacing -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-spacing -spec:css22; type:property; text:border-spacing -'border-spacing' -LINE ~1888: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~1888: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~1888: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1888: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~2086: No 'property' refs found for 'float' with spec 'css2'. -'float' -LINE ~2086: No 'property' refs found for 'clear' with spec 'css2'. -'clear' -LINE ~2086: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~2086: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' -LINE ~2086: No 'property' refs found for 'left' with spec 'css2'. -'left' -LINE ~2086: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~2086: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' -LINE ~2153: No 'property' refs found for 'float' with spec 'css2'. -'float' -LINE ~2154: No 'property' refs found for 'clear' with spec 'css2'. -'clear' -LINE ~2155: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' LINE 2185: Multiple possible 'rect()' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-shapes-1; type:function; text:rect() spec:css-masking-1; type:function; text:rect() ''rect()'' -LINE ~2185: No 'property' refs found for 'clip' with spec 'css2'. -'clip' -LINE ~2265: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE 2277: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' +LINE ~2188: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE ~2337: No 'dfn' refs found for 'inline elements' that are marked for export. [=inline elements=] -LINE 2522: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' -LINE 2525: No 'property' refs found for 'display' with spec 'css2'. -''display: contents'' LINE 2507: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.html b/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.html index 85e4f228fa..12467273f7 100644 --- a/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-writing-modes-3/Overview.html @@ -5,7 +5,6 @@ <title>CSS Writing Modes Level 3</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-writing-modes-3/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1101,7 +1100,7 @@ <h1 class="p-name no-ref" id="title">CSS Writing Modes Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1123,7 +1122,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-writing-modes] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-writing-modes%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <div class="correction"><a href="https://www.w3.org/Consortium/Process/#candidate-correction">Candidate corrections</a> are marked in the document.</div> </div> @@ -1331,7 +1330,7 @@ <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno"> The interaction of its features with other text operations in setting lines of text - is described in <a href="https://drafts.csswg.org/css-text-3/#order"><cite>CSS Text 3</cite> §  Appendix A: Text Processing Order of Operations</a>. </p> + is described in <a href="https://drafts.csswg.org/css-text-3/#order"><cite>CSS Text 3</cite> § A Text Processing Order of Operations</a>. </p> <p>The <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value">computed values</a> of the <a class="property css" data-link-type="property" href="#propdef-writing-mode" id="ref-for-propdef-writing-mode②">writing-mode</a>, <a class="property css" data-link-type="property" href="#propdef-direction" id="ref-for-propdef-direction③">direction</a>, and <a class="property css" data-link-type="property" href="#propdef-text-orientation" id="ref-for-propdef-text-orientation②">text-orientation</a> properties (even on elements to which these properties themselves don’t apply <a data-link-type="biblio" href="#biblio-css-cascade-4" title="CSS Cascading and Inheritance Level 4">[CSS-CASCADE-4]</a>) are broadly able to influence the computed values of other, unrelated properties @@ -1558,7 +1557,7 @@ <h3 class="heading settled" data-level="2.2" id="unicode-bidi"><span class="secn before passing the paragraph to the Unicode bidirectional algorithm for reordering. (See <a href="#bidi-control-codes">§ 2.4.2 CSS–Unicode Bidi Control Translation, Text Reordering</a>.) </p> <table class="data" id="bidi-control-codes-injection-table"> - <caption>Bidi control codes injected by <a class="property css" data-link-type="property" href="#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi①②">unicode-bidi</a> at the start/end of <a class="css" data-link-type="propdesc">display: inline</a> boxes</caption> + <caption>Bidi control codes injected by <a class="property css" data-link-type="property" href="#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi①②">unicode-bidi</a> at the start/end of <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display: inline</a> boxes</caption> <colgroup span="1"> <colgroup span="2"> <colgroup span="2"> @@ -1627,7 +1626,7 @@ <h3 class="heading settled" data-level="2.2" id="unicode-bidi"><span class="secn In particular, a value of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit" id="ref-for-valdef-all-inherit">inherit</a> should be used with extreme caution in deeply nested inline markup. However, for elements that are, in general, intended to be displayed as blocks, a setting of <span class="css" id="ref-for-propdef-unicode-bidi①⑧">unicode-bidi: isolate</span> is preferred to keep the element together - in case the <a class="property css" data-link-type="property">display</a> is changed to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline">inline</a> (see example below). </p> + in case the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display①">display</a> is changed to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline">inline</a> (see example below). </p> <h3 class="heading settled" data-level="2.3" id="bidi-example"><span class="secno">2.3. </span><span class="content"> Example of Bidirectional Text</span><a class="self-link" href="#bidi-example"></a></h3> <p>The following example shows an XML document with bidirectional text. It illustrates an important design principle: document language @@ -1739,7 +1738,7 @@ <h4 class="heading settled" data-level="2.4.2" id="bidi-control-codes"><span cla This can split inlines or interfere with bidi start/end control pairing in interesting ways. </p> <h4 class="heading settled" data-level="2.4.3" id="bidi-atomic-inlines"><span class="secno">2.4.3. </span><span class="content"> Bidi Treatment of Atomic Inlines</span><a class="self-link" href="#bidi-atomic-inlines"></a></h4> - <p>In this process, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#replaced-element" id="ref-for-replaced-element">replaced elements</a> with <a class="css" data-link-type="propdesc">display: inline</a> are treated as neutral characters, + <p>In this process, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#replaced-element" id="ref-for-replaced-element">replaced elements</a> with <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display②">display: inline</a> are treated as neutral characters, unless their <a class="property css" data-link-type="property" href="#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi②②">unicode-bidi</a> property is either <a class="css" data-link-type="maybe" href="#valdef-unicode-bidi-embed" id="ref-for-valdef-unicode-bidi-embed②">embed</a> or <a class="css" data-link-type="maybe" href="#valdef-unicode-bidi-bidi-override" id="ref-for-valdef-unicode-bidi-bidi-override⑤">bidi-override</a>, in which case they are treated as strong characters in the <a class="property css" data-link-type="property" href="#propdef-direction" id="ref-for-propdef-direction①⑧">direction</a> specified for the element. @@ -1956,11 +1955,11 @@ <h3 class="heading settled" data-level="3.2" id="block-flow"><span class="secno" in horizontal writing modes." src="images/vertical-form.png"></p> </div> <p>If a box has a different <a class="property css" data-link-type="property" href="#propdef-writing-mode" id="ref-for-propdef-writing-mode⑥">writing-mode</a> value than its parent box - (i.e. nearest ancestor without <a class="css" data-link-type="propdesc">display: contents</a>): </p> + (i.e. nearest ancestor without <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display③">display: contents</a>): </p> <ul> <li>If the box would otherwise become an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#in-flow" id="ref-for-in-flow">in-flow</a> box - with a computed <a class="property css" data-link-type="property">display</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline①">inline</a>, - its <span class="property">display</span> computes instead to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-block" id="ref-for-valdef-display-inline-block">inline-block</a>. + with a computed <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display④">display</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline①">inline</a>, + its <span class="property" id="ref-for-propdef-display⑤">display</span> computes instead to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-block" id="ref-for-valdef-display-inline-block">inline-block</a>. <li>If the box is a <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container②">block container</a>, then it establishes an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#independent-formatting-context" id="ref-for-independent-formatting-context">independent</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-formatting-context" id="ref-for-block-formatting-context">block formatting context</a>. <li>More generally, if its specified <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inner-display-type" id="ref-for-inner-display-type">inner display type</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-flow" id="ref-for-valdef-display-flow">flow</a>, @@ -2728,14 +2727,14 @@ <h3 class="heading settled" data-level="7.1" id="vertical-layout"><span class="s <h3 class="heading settled" data-level="7.2" id="dimension-mapping"><span class="secno">7.2. </span><span class="content"> Dimensional Mapping</span><a class="self-link" href="#dimension-mapping"></a></h3> <p>Certain properties behave logically as follows: </p> <ul> - <li>The first and second values of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> property + <li>The first and second values of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> property represent spacing between columns and rows respectively, not necessarily the horizontal and vertical spacing respectively. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <li>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-line-height" id="ref-for-propdef-line-height">line-height</a> property always refers to the logical height. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> </ul> - <p>The height properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, <a class="property css" data-link-type="property">min-height</a>, and <span class="property">max-height</span>) - refer to the physical height, and the width properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a>, <span class="property">min-width</span>, and <span class="property">max-width</span>) refer to the physical width. However, + <p>The height properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>) + refer to the physical height, and the width properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a>) refer to the physical width. However, the rules used to calculate box dimensions and positions are logical. </p> <p>For example, the calculation rules in <a href="https://www.w3.org/TR/CSS2/visudet.html#Computing_widths_and_margins">CSS2.1 Section 10.3</a> are used for the inline dimension measurements: they apply to the <a data-link-type="dfn" href="#inline-size" id="ref-for-inline-size">inline size</a> (which could be either the physical width or physical height) @@ -2875,7 +2874,7 @@ <h3 class="heading settled" data-level="7.4" id="logical-direction-layout"><span box and used to abstract layout rules related to the box properties (margins, borders, padding) and any properties related to positioning the box within its containing block - (<a class="property css" data-link-type="property">float</a>, <span class="property">clear</span>, <span class="property">top</span>, <span class="property">bottom</span>, <span class="property">left</span>, <span class="property">right</span>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a>). + (<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float" id="ref-for-propdef-float">float</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear" id="ref-for-propdef-clear">clear</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top">top</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom">bottom</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left" id="ref-for-propdef-left">left</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right">right</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a>). For inline-level boxes, the writing mode of the <em>parent box</em> is used instead. (The left/right/top/bottom-named properties and values themselves are still mapped physically; @@ -2916,9 +2915,9 @@ <h3 class="heading settled" data-level="7.5" id="line-mappings"><span class="sec with respect to the writing mode of the <em>containing block</em> of the box and used to interpret the <span class="css">left</span> and <span class="css">right</span> values of the following properties: </p> <ul> - <li>the <a class="property css" data-link-type="property">float</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> - <li>the <a class="property css" data-link-type="property">clear</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> - <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side②">caption-side</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float" id="ref-for-propdef-float①">float</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear" id="ref-for-propdef-clear①">clear</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side②">caption-side</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> </ul> <p>The <a data-link-type="dfn" href="#over" id="ref-for-over④">over</a> and <a data-link-type="dfn" href="#under" id="ref-for-under④">under</a> directions are calculated with respect to the writing mode of the box and used to define the @@ -2940,7 +2939,7 @@ <h3 class="heading settled" data-level="7.6" id="physical-only"><span class="sec <p>The following values are purely physical in their definitions and do not respond to changes in writing mode: </p> <ul> - <li>the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect" id="ref-for-funcdef-basic-shape-rect">rect()</a> notation of the <a class="property css" data-link-type="property">clip</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect" id="ref-for-funcdef-basic-shape-rect">rect()</a> notation of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-clip" id="ref-for-propdef-clip">clip</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <li>the background properties <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a> <li>the border-image properties <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a> <li>the offsets of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow">box-shadow</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow" id="ref-for-propdef-text-shadow">text-shadow</a> properties @@ -2955,7 +2954,7 @@ <h2 class="heading settled" data-level="8" id="principal-flow"><span class="secn <p> As a special case for handling HTML documents, if the root element has a <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element">body</a></code> child element <a data-link-type="biblio" href="#biblio-html" title="HTML Standard">[HTML]</a> - <ins cite="#correction-display-none-propagation">whose <a class="property css" data-link-type="property">display</a> value is not <a class="css" data-link-type="maybe" href="#valdef-text-combine-upright-none" id="ref-for-valdef-text-combine-upright-none">none</a></ins> + <ins cite="#correction-display-none-propagation">whose <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑥">display</a> value is not <a class="css" data-link-type="maybe" href="#valdef-text-combine-upright-none" id="ref-for-valdef-text-combine-upright-none">none</a></ins> , the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value④">used value</a> of the of <a class="property css" data-link-type="property" href="#propdef-writing-mode" id="ref-for-propdef-writing-mode②④">writing-mode</a> and <a class="property css" data-link-type="property" href="#propdef-direction" id="ref-for-propdef-direction③④">direction</a> properties on root element are taken @@ -2963,7 +2962,7 @@ <h2 class="heading settled" data-level="8" id="principal-flow"><span class="secn The UA <em>may</em> also propagate the value of <a class="property css" data-link-type="property" href="#propdef-text-orientation" id="ref-for-propdef-text-orientation①⑤">text-orientation</a> in this manner. Note that this does not affect the computed values of <span class="property" id="ref-for-propdef-writing-mode②⑥">writing-mode</span>, <span class="property" id="ref-for-propdef-direction③⑥">direction</span>, or <span class="property" id="ref-for-propdef-text-orientation①⑥">text-orientation</span> of the root element itself. </p> - <div class="correction" id="correction-display-none-propagation"> <span class="marker">Candidate Correction 1:</span> Specify that the <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element①">body</a></code> element is ignored for determining the <a data-link-type="dfn" href="#principal-writing-mode" id="ref-for-principal-writing-mode">principal writing mode</a> if it has <a class="css" data-link-type="propdesc">display: none</a>. <a href="https://github.com/w3c/csswg-drafts/issues/3779">Issue 3779</a> </div> + <div class="correction" id="correction-display-none-propagation"> <span class="marker">Candidate Correction 1:</span> Specify that the <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element①">body</a></code> element is ignored for determining the <a data-link-type="dfn" href="#principal-writing-mode" id="ref-for-principal-writing-mode">principal writing mode</a> if it has <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑦">display: none</a>. <a href="https://github.com/w3c/csswg-drafts/issues/3779">Issue 3779</a> </div> <p class="note" role="note"><span class="marker">Note:</span> Propagation is done on used values rather than computed values to avoid disrupting other aspects of style computation, such as <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#css-inheritance" id="ref-for-css-inheritance">inheritance</a>, <a href="https://drafts.csswg.org/css-logical-1/#box">logical property mapping logic</a>, @@ -3159,10 +3158,10 @@ <h2 class="no-num heading settled" id="changes"><span class="content">Changes</s <h3 class="no-num heading settled" id="changes-2019"><span class="content"> Changes since the <a href="https://www.w3.org/TR/2019/REC-css-writing-modes-3-20191210/">December 2019 CSS Writing Modes Module Level 4 Recommendation</a></span><a class="self-link" href="#changes-2019"></a></h3> <ul class="informative"> - <li>Specified that a <a class="css" data-link-type="propdesc">display: none</a> <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element②">body</a></code> element does not influence the <a data-link-type="dfn" href="#principal-writing-mode" id="ref-for-principal-writing-mode④">principal writing mode</a>. + <li>Specified that a <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑧">display: none</a> <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element②">body</a></code> element does not influence the <a data-link-type="dfn" href="#principal-writing-mode" id="ref-for-principal-writing-mode④">principal writing mode</a>. (<a href="https://github.com/w3c/csswg-drafts/issues/3779">Issue 3779</a>) <li>Updated “Applies to” line for <a class="property css" data-link-type="property" href="#propdef-text-combine-upright" id="ref-for-propdef-text-combine-upright⑤">text-combine-upright</a> to mention text - (since certain effects like <a class="css" data-link-type="propdesc">display: contents</a> can strip the box itself). + (since certain effects like <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑨">display: contents</a> can strip the box itself). </ul> <h2 class="no-num heading settled" id="acknowledgements"><span class="content"> Acknowledgements</span><a class="self-link" href="#acknowledgements"></a></h2> <p> L. David Baron, @@ -3595,12 +3594,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="126bc6b7">stretch-fit inline size</span> <li><span class="dfn-paneled" id="88643fe0">width</span> </ul> - <li> - <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="6882117f">border-spacing</span> - <li><span class="dfn-paneled" id="07083329">caption-side</span> - </ul> <li> <a data-link-type="biblio">[CSS-TEXT-3]</a> defines the following terms: <ul> @@ -3635,6 +3628,24 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="f140920e">sideways-lr</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="fe0abd77">border-spacing</span> + <li><span class="dfn-paneled" id="1ebe67be">bottom</span> + <li><span class="dfn-paneled" id="9983181a">caption-side</span> + <li><span class="dfn-paneled" id="ac2ecdf7">clear</span> + <li><span class="dfn-paneled" id="03234c68">clip</span> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="cdd73959">float</span> + <li><span class="dfn-paneled" id="49a17925">left</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="0475c554">right</span> + <li><span class="dfn-paneled" id="4726eb39">top</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -3681,21 +3692,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-shapes/"><cite>CSS Shapes Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-shapes/">https://drafts.csswg.org/css-shapes/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> - <dt id="biblio-css-tables-3">[CSS-TABLES-3] - <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -3715,11 +3724,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-text-decor">[CSS3-TEXT-DECOR] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-3/">https://drafts.csswg.org/css-text-decor-3/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3col">[CSS3COL] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] @@ -3731,13 +3740,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-svg11">[SVG11] <dd>Erik Dahlström; et al. <a href="https://www.w3.org/TR/SVG11/"><cite>Scalable Vector Graphics (SVG) 1.1 (Second Edition)</cite></a>. 16 August 2011. REC. URL: <a href="https://www.w3.org/TR/SVG11/">https://www.w3.org/TR/SVG11/</a> <dt id="biblio-uax11">[UAX11] - <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-40.html"><cite>East Asian Width</cite></a>. 16 August 2022. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-40.html">https://www.unicode.org/reports/tr11/tr11-40.html</a> + <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-41.html"><cite>East Asian Width</cite></a>. 17 July 2023. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-41.html">https://www.unicode.org/reports/tr11/tr11-41.html</a> <dt id="biblio-uax24">[UAX24] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-34.html"><cite>Unicode Script Property</cite></a>. 25 August 2022. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-34.html">https://www.unicode.org/reports/tr24/tr24-34.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-36.html"><cite>Unicode Script Property</cite></a>. 14 August 2023. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-36.html">https://www.unicode.org/reports/tr24/tr24-36.html</a> <dt id="biblio-uax50">[UAX50] - <dd>Ken Lunde 小林劍󠄁; Koji Ishii 石井宏治. <a href="https://www.unicode.org/reports/tr50/tr50-28.html"><cite>Unicode Vertical Text Layout</cite></a>. 16 August 2022. Unicode Standard Annex #50. URL: <a href="https://www.unicode.org/reports/tr50/tr50-28.html">https://www.unicode.org/reports/tr50/tr50-28.html</a> + <dd>Ken Lunde 小林劍󠄁; Koji Ishii 石井宏治. <a href="https://www.unicode.org/reports/tr50/tr50-29.html"><cite>Unicode Vertical Text Layout</cite></a>. 17 July 2023. Unicode Standard Annex #50. URL: <a href="https://www.unicode.org/reports/tr50/tr50-29.html">https://www.unicode.org/reports/tr50/tr50-29.html</a> <dt id="biblio-uax9">[UAX9] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-unicode">[UNICODE] <dd><a href="https://www.unicode.org/versions/latest/"><cite>The Unicode Standard</cite></a>. URL: <a href="https://www.unicode.org/versions/latest/">https://www.unicode.org/versions/latest/</a> </dl> @@ -3750,7 +3759,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] @@ -3881,13 +3890,13 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-combine-upright" title="The text-combine-upright CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.">text-combine-upright</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>48+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> + <span class="firefox yes"><span>Firefox</span><span>48+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>15.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>48+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>48+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -3952,7 +3961,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/writing-mode" title="The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, <altGlyph> and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)">Attribute/writing-mode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/writing-mode" title="The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)">Attribute/writing-mode</a></p> <p class="less-than-two-engines-text">In no current engines.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> @@ -4167,8 +4176,9 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte let dfnPanelData = { "00140718": {"dfnID":"00140718","dfnText":"margin-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-top"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-top"}, "00d808eb": {"dfnID":"00d808eb","dfnText":"font-feature-settings","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-feature-settings"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-feature-settings"}, +"03234c68": {"dfnID":"03234c68","dfnText":"clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clip"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-clip"}, "04413fda": {"dfnID":"04413fda","dfnText":"preferred size property","external":true,"refSections":[{"refs":[{"id":"ref-for-preferred-size-properties"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#preferred-size-properties"}, -"07083329": {"dfnID":"07083329","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"},{"id":"ref-for-propdef-caption-side\u2460"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-caption-side\u2461"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, +"0475c554": {"dfnID":"0475c554","dfnText":"right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-right"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, "083ffe5f": {"dfnID":"083ffe5f","dfnText":"inline box","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-box"}],"title":"2.4.5. \nReordering-induced Box Fragmentation"}],"url":"https://drafts.csswg.org/css-display-4/#inline-box"}, "09cd65e4": {"dfnID":"09cd65e4","dfnText":"display type","external":true,"refSections":[{"refs":[{"id":"ref-for-display-type"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-display-4/#display-type"}, "0cab481d": {"dfnID":"0cab481d","dfnText":"box-decoration-break","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-decoration-break"}],"title":"2.4.5. \nReordering-induced Box Fragmentation"}],"url":"https://drafts.csswg.org/css-break-4/#propdef-box-decoration-break"}, @@ -4177,6 +4187,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "106b3021": {"dfnID":"106b3021","dfnText":"rect()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-basic-shape-rect"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect"}, "11ee6625": {"dfnID":"11ee6625","dfnText":"available space","external":true,"refSections":[{"refs":[{"id":"ref-for-available"},{"id":"ref-for-available\u2460"},{"id":"ref-for-available\u2461"},{"id":"ref-for-available\u2462"},{"id":"ref-for-available\u2463"},{"id":"ref-for-available\u2464"}],"title":"7.3.1. \nAvailable Space of Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2465"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#available"}, "126bc6b7": {"dfnID":"126bc6b7","dfnText":"stretch-fit inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit-inline-size"},{"id":"ref-for-stretch-fit-inline-size\u2460"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-inline-size"}, +"1ebe67be": {"dfnID":"1ebe67be","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, "20fff200": {"dfnID":"20fff200","dfnText":"inheritance","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"}],"title":"8. \nThe Principal Writing Mode"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, "237b3136": {"dfnID":"237b3136","dfnText":"typographic character unit","external":true,"refSections":[{"refs":[{"id":"ref-for-typographic-character-unit"},{"id":"ref-for-typographic-character-unit\u2460"},{"id":"ref-for-typographic-character-unit\u2461"},{"id":"ref-for-typographic-character-unit\u2462"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2463"},{"id":"ref-for-typographic-character-unit\u2464"},{"id":"ref-for-typographic-character-unit\u2465"}],"title":"5.1.1. \nVertical Typesetting and Font Features"},{"refs":[{"id":"ref-for-typographic-character-unit\u2466"}],"title":"5.1.2. \nMixed Vertical Orientations"},{"refs":[{"id":"ref-for-typographic-character-unit\u2467"},{"id":"ref-for-typographic-character-unit\u2468"},{"id":"ref-for-typographic-character-unit\u2460\u24ea"},{"id":"ref-for-typographic-character-unit\u2460\u2460"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460\u2461"}],"title":"9.1.1. \nText Run Rules"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460\u2462"}],"title":"9.1.2. \nLayout Rules"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460\u2463"},{"id":"ref-for-typographic-character-unit\u2460\u2464"},{"id":"ref-for-typographic-character-unit\u2460\u2465"},{"id":"ref-for-typographic-character-unit\u2460\u2466"},{"id":"ref-for-typographic-character-unit\u2460\u2467"},{"id":"ref-for-typographic-character-unit\u2460\u2468"}],"title":"9.1.3. \nCompression Rules"},{"refs":[{"id":"ref-for-typographic-character-unit\u2461\u24ea"},{"id":"ref-for-typographic-character-unit\u2461\u2460"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-text-4/#typographic-character-unit"}, "25ccffa4": {"dfnID":"25ccffa4","dfnText":"min-content inline size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content-inline-size"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content-inline-size"}, @@ -4187,18 +4198,20 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"}],"title":"5.1.3. \nObsolete: the SVG1.1 glyph-orientation-vertical property"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions and Terminology"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "35d9f24e": {"dfnID":"35d9f24e","dfnText":"font-relative lengths","external":true,"refSections":[{"refs":[{"id":"ref-for-font-relative-length"}],"title":"1.1. \nModule Interactions"}],"url":"https://drafts.csswg.org/css-values-4/#font-relative-length"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3e6545d2": {"dfnID":"3e6545d2","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-caption-side-bottom"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://drafts.csswg.org/css2/#valdef-caption-side-bottom"}, "3f0db204": {"dfnID":"3f0db204","dfnText":"min-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"}],"title":"7.3. \nOrthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"6.3. \nLine-relative Directions"},{"refs":[{"id":"ref-for-propdef-text-align\u2460"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"},{"refs":[{"id":"ref-for-propdef-text-align\u2461"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-text-align\u2462"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "4380f2e5": {"dfnID":"4380f2e5","dfnText":"sub","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-baseline-shift-sub"}],"title":"4.4. \nBaseline Alignment"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-sub"}, "46080d3b": {"dfnID":"46080d3b","dfnText":"page progression","external":true,"refSections":[{"refs":[{"id":"ref-for-page-progression"}],"title":"8. \nThe Principal Writing Mode"},{"refs":[{"id":"ref-for-page-progression\u2460"},{"id":"ref-for-page-progression\u2461"}],"title":"8.2. \nPage Flow: the page progression direction"}],"url":"https://drafts.csswg.org/css-page-3/#page-progression"}, +"4726eb39": {"dfnID":"4726eb39","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, +"49a17925": {"dfnID":"49a17925","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-left"}, "521eb6d4": {"dfnID":"521eb6d4","dfnText":"multi-column container","external":true,"refSections":[{"refs":[{"id":"ref-for-multi-column-container"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-multicol-1/#multi-column-container"}, "5e3e8101": {"dfnID":"5e3e8101","dfnText":"inner display type","external":true,"refSections":[{"refs":[{"id":"ref-for-inner-display-type"},{"id":"ref-for-inner-display-type\u2460"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#inner-display-type"}, "607244fc": {"dfnID":"607244fc","dfnText":"flow-root","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-flow-root"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-flow-root"}, "60bbf126": {"dfnID":"60bbf126","dfnText":"scrollport","external":true,"refSections":[{"refs":[{"id":"ref-for-scrollport"}],"title":"7.3.1. \nAvailable Space of Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-overflow-3/#scrollport"}, "65a738ee": {"dfnID":"65a738ee","dfnText":"definite","external":true,"refSections":[{"refs":[{"id":"ref-for-definite"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#definite"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, -"6882117f": {"dfnID":"6882117f","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"2.1. \nSpecifying Directionality: the direction property"},{"refs":[{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"2.2. \nEmbeddings and Overrides: the unicode-bidi property"},{"refs":[{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"}],"title":"5.1.3. \nObsolete: the SVG1.1 glyph-orientation-vertical property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2463"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "6f7440a6": {"dfnID":"6f7440a6","dfnText":"available inline space","external":true,"refSections":[{"refs":[{"id":"ref-for-available"},{"id":"ref-for-available\u2460"},{"id":"ref-for-available\u2461"},{"id":"ref-for-available\u2462"},{"id":"ref-for-available\u2463"},{"id":"ref-for-available\u2464"}],"title":"7.3.1. \nAvailable Space of Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2465"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#available"}, @@ -4212,15 +4225,18 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "8831f13c": {"dfnID":"8831f13c","dfnText":"text-indent","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-indent"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-indent"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "8d0ede2c": {"dfnID":"8d0ede2c","dfnText":"initial containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-containing-block"}],"title":"8.1. \nPropagation to the Initial Containing Block"}],"url":"https://drafts.csswg.org/css-display-4/#initial-containing-block"}, +"9983181a": {"dfnID":"9983181a","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"},{"id":"ref-for-propdef-caption-side\u2460"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-caption-side\u2461"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, "99cabd32": {"dfnID":"99cabd32","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#in-flow"}, "9aae076b": {"dfnID":"9aae076b","dfnText":"baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-alignment-baseline-baseline"},{"id":"ref-for-valdef-alignment-baseline-baseline\u2460"}],"title":"4.4. \nBaseline Alignment"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-alignment-baseline-baseline"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"1.1. \nModule Interactions"},{"refs":[{"id":"ref-for-computed-value\u2460"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-computed-value\u2461"}],"title":"8. \nThe Principal Writing Mode"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9f3d4f17": {"dfnID":"9f3d4f17","dfnText":"block container","external":true,"refSections":[{"refs":[{"id":"ref-for-block-container"},{"id":"ref-for-block-container\u2460"}],"title":"2.2. \nEmbeddings and Overrides: the unicode-bidi property"},{"refs":[{"id":"ref-for-block-container\u2461"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-block-container\u2462"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-display-4/#block-container"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-used-value\u2461"}],"title":"6.4. \nAbstract-to-Physical Mappings"},{"refs":[{"id":"ref-for-used-value\u2462"},{"id":"ref-for-used-value\u2463"}],"title":"8. \nThe Principal Writing Mode"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a533883f": {"dfnID":"a533883f","dfnText":"available block space","external":true,"refSections":[{"refs":[{"id":"ref-for-available"},{"id":"ref-for-available\u2460"},{"id":"ref-for-available\u2461"},{"id":"ref-for-available\u2462"},{"id":"ref-for-available\u2463"},{"id":"ref-for-available\u2464"}],"title":"7.3.1. \nAvailable Space of Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2465"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#available"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"2.4.3. \nBidi Treatment of Atomic Inlines"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "aaf6abed": {"dfnID":"aaf6abed","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"},{"id":"ref-for-propdef-margin-left\u2460"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "abstract-dimensions": {"dfnID":"abstract-dimensions","dfnText":"abstract dimensions","external":false,"refSections":[],"url":"#abstract-dimensions"}, +"ac2ecdf7": {"dfnID":"ac2ecdf7","dfnText":"clear","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clear"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-clear\u2460"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-clear"}, "ac54fbff": {"dfnID":"ac54fbff","dfnText":"line-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-height"}],"title":"7.2. \nDimensional Mapping"},{"refs":[{"id":"ref-for-propdef-line-height\u2460"}],"title":"9.1.2. \nLayout Rules"}],"url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "ad065a5c": {"dfnID":"ad065a5c","dfnText":"margin-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-right"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-right"}, "alphabetic-baseline": {"dfnID":"alphabetic-baseline","dfnText":"alphabetic baseline","external":false,"refSections":[{"refs":[{"id":"ref-for-alphabetic-baseline"}],"title":"4.2. \nText Baselines"}],"url":"#alphabetic-baseline"}, @@ -4245,6 +4261,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "ca960d4f": {"dfnID":"ca960d4f","dfnText":"block formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-block-formatting-context"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#block-formatting-context"}, "cbc54f93": {"dfnID":"cbc54f93","dfnText":"text-transform","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-transform"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, "cbfeec00": {"dfnID":"cbfeec00","dfnText":"margin-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-bottom"},{"id":"ref-for-propdef-margin-bottom\u2460"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-bottom"}, +"cdd73959": {"dfnID":"cdd73959","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-float\u2460"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-float"}, "central-baseline": {"dfnID":"central-baseline","dfnText":"central baseline","external":false,"refSections":[{"refs":[{"id":"ref-for-central-baseline"}],"title":"4.2. \nText Baselines"}],"url":"#central-baseline"}, "css-end": {"dfnID":"css-end","dfnText":"end","external":false,"refSections":[{"refs":[{"id":"ref-for-css-end"}],"title":"2.4.5. \nReordering-induced Box Fragmentation"},{"refs":[{"id":"ref-for-css-end\u2460"}],"title":"6. \nAbstract Box Terminology"},{"refs":[{"id":"ref-for-css-end\u2461"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"#css-end"}, "css-start": {"dfnID":"css-start","dfnText":"start","external":false,"refSections":[{"refs":[{"id":"ref-for-css-start"},{"id":"ref-for-css-start\u2460"}],"title":"2.4.5. \nReordering-induced Box Fragmentation"},{"refs":[{"id":"ref-for-css-start\u2461"}],"title":"6. \nAbstract Box Terminology"},{"refs":[{"id":"ref-for-css-start\u2462"}],"title":"6.2. \nFlow-relative Directions"},{"refs":[{"id":"ref-for-css-start\u2463"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"},{"refs":[{"id":"ref-for-css-start\u2464"},{"id":"ref-for-css-start\u2465"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"#css-start"}, @@ -4256,13 +4273,17 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "dominant-baseline": {"dfnID":"dominant-baseline","dfnText":"dominant baseline","external":false,"refSections":[],"url":"#dominant-baseline"}, "e0b6ed58": {"dfnID":"e0b6ed58","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"},{"id":"ref-for-propdef-vertical-align\u2460"}],"title":"4. \nInline-level Alignment"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2461"}],"title":"4.3. \nAtomic Inline Baselines"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2462"},{"id":"ref-for-propdef-vertical-align\u2463"},{"id":"ref-for-propdef-vertical-align\u2464"}],"title":"4.4. \nBaseline Alignment"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2465"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2466"}],"title":"7.5. \nLine-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2467"}],"title":"9.1.2. \nLayout Rules"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, "e33664cd": {"dfnID":"e33664cd","dfnText":"inline-block","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline-block"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-valdef-display-inline-block\u2460"}],"title":"9.1.2. \nLayout Rules"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline-block"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, "ea8fc05c": {"dfnID":"ea8fc05c","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-caption-side-top"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://drafts.csswg.org/css2/#valdef-caption-side-top"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"2.2. \nEmbeddings and Overrides: the unicode-bidi property"},{"refs":[{"id":"ref-for-propdef-display\u2461"}],"title":"2.4.3. \nBidi Treatment of Atomic Inlines"},{"refs":[{"id":"ref-for-propdef-display\u2462"},{"id":"ref-for-propdef-display\u2463"},{"id":"ref-for-propdef-display\u2464"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-propdef-display\u2465"},{"id":"ref-for-propdef-display\u2466"}],"title":"8. \nThe Principal Writing Mode"},{"refs":[{"id":"ref-for-propdef-display\u2467"},{"id":"ref-for-propdef-display\u2468"}],"title":"\n Changes since the December\n 2019 CSS Writing Modes Module Level 4 Recommendation"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "establish-an-orthogonal-flow": {"dfnID":"establish-an-orthogonal-flow","dfnText":"orthogonal flow","external":false,"refSections":[{"refs":[{"id":"ref-for-establish-an-orthogonal-flow"},{"id":"ref-for-establish-an-orthogonal-flow\u2460"},{"id":"ref-for-establish-an-orthogonal-flow\u2461"}],"title":"7.3. \nOrthogonal Flows"},{"refs":[{"id":"ref-for-establish-an-orthogonal-flow\u2462"}],"title":"7.3.1. \nAvailable Space of Orthogonal Flows"},{"refs":[{"id":"ref-for-establish-an-orthogonal-flow\u2463"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"#establish-an-orthogonal-flow"}, "f140920e": {"dfnID":"f140920e","dfnText":"sideways-lr","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-writing-mode-sideways-lr"}],"title":"5.1.2. \nMixed Vertical Orientations"},{"refs":[{"id":"ref-for-valdef-writing-mode-sideways-lr\u2460"}],"title":"Appendix A:\nVertical Scripts in Unicode"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-sideways-lr"}, "f338a9f0": {"dfnID":"f338a9f0","dfnText":"text-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-shadow"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow"}, "f74bc8d3": {"dfnID":"f74bc8d3","dfnText":"fallback size","external":true,"refSections":[{"refs":[{"id":"ref-for-fallback"}],"title":"7.3.1. \nAvailable Space of Orthogonal Flows"},{"refs":[{"id":"ref-for-fallback\u2460"}],"title":"7.3.2. \nAuto-sizing Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#fallback"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "fb7153bd": {"dfnID":"fb7153bd","dfnText":"font-variant","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variant"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-variant"}, +"fe0abd77": {"dfnID":"fe0abd77","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, "ffc192db": {"dfnID":"ffc192db","dfnText":"text-decoration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://drafts.csswg.org/css-text-decor-3/#propdef-text-decoration"}, "flow-relative": {"dfnID":"flow-relative","dfnText":"flow-relative","external":false,"refSections":[],"url":"#flow-relative"}, "flow-relative-direction": {"dfnID":"flow-relative-direction","dfnText":"flow-relative directions","external":false,"refSections":[{"refs":[{"id":"ref-for-flow-relative-direction"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"#flow-relative-direction"}, @@ -4916,8 +4937,6 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css-sizing-3/#propdef-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"width","type":"property","url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "https://drafts.csswg.org/css-sizing-3/#stretch-fit-inline-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"stretch-fit inline size","type":"dfn","url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-inline-size"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto": {"export":true,"for_":["width","height","min-width","min-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-spacing","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, -"https://drafts.csswg.org/css-tables-3/#propdef-caption-side": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"caption-side","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, "https://drafts.csswg.org/css-text-3/#character": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"character","type":"dfn","url":"https://drafts.csswg.org/css-text-3/#character"}, "https://drafts.csswg.org/css-text-3/#propdef-letter-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"letter-spacing","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-letter-spacing"}, "https://drafts.csswg.org/css-text-3/#propdef-text-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"text-align","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, @@ -4938,6 +4957,20 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://drafts.csswg.org/css2/#valdef-caption-side-top": {"export":true,"for_":["caption-side"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"top","type":"value","url":"https://drafts.csswg.org/css2/#valdef-caption-side-top"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://html.spec.whatwg.org/multipage/sections.html#the-body-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"body","type":"element","url":"https://html.spec.whatwg.org/multipage/sections.html#the-body-element"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-spacing","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"caption-side","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visufx.html#propdef-clip": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"clip","type":"property","url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-clip"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"bottom","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"clear","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-clear"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"float","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-float"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-left": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"left","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-left"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-right": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"right","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"top","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.console.txt index 5910beecbf..af7dbdb7fb 100644 --- a/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.console.txt @@ -38,72 +38,18 @@ LINE 1743: Image doesn't exist, so I couldn't determine its width and height: 'd LINE 1928: Image doesn't exist, so I couldn't determine its width and height: 'diagrams/vertical-table.png' LINE 2583: Image doesn't exist, so I couldn't determine its width and height: 'images/tate-chu-yoko.png' LINE 2607: Image doesn't exist, so I couldn't determine its width and height: 'images/bad-tate-chu-yoko.png' -LINE 401: No 'property' refs found for 'display' with spec 'css2'. -''display: inline'' -LINE ~472: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE 632: No 'property' refs found for 'display' with spec 'css2'. -''display: inline'' -LINE 961: No 'property' refs found for 'display' with spec 'css2'. -''display: contents'' -LINE ~963: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE ~1976: Multiple possible 'border-spacing' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-border-spacing -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:border-spacing -spec:css22; type:property; text:border-spacing -'border-spacing' -LINE ~1984: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~1984: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~1984: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' -LINE ~1984: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~2294: No 'property' refs found for 'float' with spec 'css2'. -'float' -LINE ~2294: No 'property' refs found for 'clear' with spec 'css2'. -'clear' -LINE ~2294: No 'property' refs found for 'top' with spec 'css2'. -'top' -LINE ~2294: No 'property' refs found for 'bottom' with spec 'css2'. -'bottom' -LINE ~2294: No 'property' refs found for 'left' with spec 'css2'. -'left' -LINE ~2294: No 'property' refs found for 'right' with spec 'css2'. -'right' -LINE ~2294: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' -LINE ~2361: No 'property' refs found for 'float' with spec 'css2'. -'float' -LINE ~2362: No 'property' refs found for 'clear' with spec 'css2'. -'clear' -LINE ~2363: Multiple possible 'caption-side' property refs. -Arbitrarily chose https://drafts.csswg.org/css-tables-3/#propdef-caption-side -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:css-tables-3; type:property; text:caption-side -spec:css22; type:property; text:caption-side -'caption-side' LINE 2393: Multiple possible 'rect()' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-shapes-1; type:function; text:rect() spec:css-masking-1; type:function; text:rect() ''rect()'' -LINE ~2393: No 'property' refs found for 'clip' with spec 'css2'. -'clip' -LINE ~2471: No 'property' refs found for 'display' with spec 'css2'. -'display' -LINE 2798: No 'property' refs found for 'display' with spec 'css2'. -''display: none'' -LINE 2801: No 'property' refs found for 'display' with spec 'css2'. -''display: contents'' +LINE ~2396: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE ~2802: No 'dfn' refs found for 'ideographic central baseline'. [=ideographic central baseline=] LINE 2785: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.html b/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.html index 8b2145d948..cbed6dae1b 100644 --- a/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/css-writing-modes-4/Overview.html @@ -5,7 +5,6 @@ <title>CSS Writing Modes Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/css-writing-modes-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1102,7 +1101,7 @@ <h1 class="p-name no-ref" id="title">CSS Writing Modes Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1124,7 +1123,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[css-writing-modes] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcss-writing-modes%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1348,7 +1347,7 @@ <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno"> The interaction of its features with other text operations in setting lines of text - is described in <a href="https://drafts.csswg.org/css-text-3/#order"><cite>CSS Text 3</cite> §  Appendix A: Text Processing Order of Operations</a>. </p> + is described in <a href="https://drafts.csswg.org/css-text-3/#order"><cite>CSS Text 3</cite> § A Text Processing Order of Operations</a>. </p> <p>The <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value">computed values</a> of the <a class="property css" data-link-type="property" href="#propdef-writing-mode" id="ref-for-propdef-writing-mode②">writing-mode</a>, <a class="property css" data-link-type="property" href="#propdef-direction" id="ref-for-propdef-direction③">direction</a>, and <a class="property css" data-link-type="property" href="#propdef-text-orientation" id="ref-for-propdef-text-orientation②">text-orientation</a> properties (even on elements to which these properties themselves don’t apply <a data-link-type="biblio" href="#biblio-css-cascade-4" title="CSS Cascading and Inheritance Level 4">[CSS-CASCADE-4]</a>) are broadly able to influence the computed values of other, unrelated properties @@ -1575,7 +1574,7 @@ <h3 class="heading settled" data-level="2.2" id="unicode-bidi"><span class="secn before passing the paragraph to the Unicode bidirectional algorithm for reordering. (See <a href="#bidi-control-codes">§ 2.4.2 CSS–Unicode Bidi Control Translation, Text Reordering</a>.) </p> <table class="data" id="bidi-control-codes-injection-table"> - <caption>Bidi control codes injected by <a class="property css" data-link-type="property" href="#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi①②">unicode-bidi</a> at the start/end of <a class="css" data-link-type="propdesc">display: inline</a> boxes</caption> + <caption>Bidi control codes injected by <a class="property css" data-link-type="property" href="#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi①②">unicode-bidi</a> at the start/end of <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display">display: inline</a> boxes</caption> <colgroup span="1"> <colgroup span="2"> <colgroup span="2"> @@ -1644,7 +1643,7 @@ <h3 class="heading settled" data-level="2.2" id="unicode-bidi"><span class="secn In particular, a value of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit" id="ref-for-valdef-all-inherit">inherit</a> should be used with extreme caution in deeply nested inline markup. However, for elements that are, in general, intended to be displayed as blocks, a setting of <span class="css" id="ref-for-propdef-unicode-bidi①⑧">unicode-bidi: isolate</span> is preferred to keep the element together - in case the <a class="property css" data-link-type="property">display</a> is changed to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline">inline</a> (see example below). </p> + in case the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display①">display</a> is changed to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline">inline</a> (see example below). </p> <h3 class="heading settled" data-level="2.3" id="bidi-example"><span class="secno">2.3. </span><span class="content"> Example of Bidirectional Text</span><a class="self-link" href="#bidi-example"></a></h3> <p>The following example shows an XML document with bidirectional text. It illustrates an important design principle: document language @@ -1756,7 +1755,7 @@ <h4 class="heading settled" data-level="2.4.2" id="bidi-control-codes"><span cla This can split inlines or interfere with bidi start/end control pairing in interesting ways. </p> <h4 class="heading settled" data-level="2.4.3" id="bidi-atomic-inlines"><span class="secno">2.4.3. </span><span class="content"> Bidi Treatment of Atomic Inlines</span><a class="self-link" href="#bidi-atomic-inlines"></a></h4> - <p>In this process, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#replaced-element" id="ref-for-replaced-element">replaced elements</a> with <a class="css" data-link-type="propdesc">display: inline</a> are treated as neutral characters, + <p>In this process, <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#replaced-element" id="ref-for-replaced-element">replaced elements</a> with <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display②">display: inline</a> are treated as neutral characters, unless their <a class="property css" data-link-type="property" href="#propdef-unicode-bidi" id="ref-for-propdef-unicode-bidi②②">unicode-bidi</a> property is either <a class="css" data-link-type="maybe" href="#valdef-unicode-bidi-embed" id="ref-for-valdef-unicode-bidi-embed②">embed</a> or <a class="css" data-link-type="maybe" href="#valdef-unicode-bidi-bidi-override" id="ref-for-valdef-unicode-bidi-bidi-override⑤">bidi-override</a>, in which case they are treated as strong characters in the <a class="property css" data-link-type="property" href="#propdef-direction" id="ref-for-propdef-direction①⑧">direction</a> specified for the element. @@ -2021,11 +2020,11 @@ <h3 class="heading settled" data-level="3.2" id="block-flow"><span class="secno" in horizontal writing modes." src="images/vertical-form.png"></p> </div> <p>If a box has a different <a class="property css" data-link-type="property" href="#propdef-writing-mode" id="ref-for-propdef-writing-mode⑥">writing-mode</a> value than its parent box - (i.e. nearest ancestor without <a class="css" data-link-type="propdesc">display: contents</a>): </p> + (i.e. nearest ancestor without <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display③">display: contents</a>): </p> <ul> <li>If the box would otherwise become an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#in-flow" id="ref-for-in-flow">in-flow</a> box - with a computed <a class="property css" data-link-type="property">display</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline①">inline</a>, - its <span class="property">display</span> computes instead to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-block" id="ref-for-valdef-display-inline-block">inline-block</a>. + with a computed <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display④">display</a> of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline" id="ref-for-valdef-display-inline①">inline</a>, + its <span class="property" id="ref-for-propdef-display⑤">display</span> computes instead to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-block" id="ref-for-valdef-display-inline-block">inline-block</a>. <li>If the box is a <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-container" id="ref-for-block-container②">block container</a>, then it establishes an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#independent-formatting-context" id="ref-for-independent-formatting-context">independent</a> <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#block-formatting-context" id="ref-for-block-formatting-context">block formatting context</a>. <li>More generally, if its specified <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inner-display-type" id="ref-for-inner-display-type">inner display type</a> is <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-flow" id="ref-for-valdef-display-flow">flow</a>, @@ -2809,14 +2808,14 @@ <h3 class="heading settled" data-level="7.1" id="vertical-layout"><span class="s <h3 class="heading settled" data-level="7.2" id="dimension-mapping"><span class="secno">7.2. </span><span class="content"> Dimensional Mapping</span><a class="self-link" href="#dimension-mapping"></a></h3> <p>Certain properties behave logically as follows: </p> <ul> - <li>The first and second values of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> property + <li>The first and second values of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing" id="ref-for-propdef-border-spacing">border-spacing</a> property represent spacing between columns and rows respectively, not necessarily the horizontal and vertical spacing respectively. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <li>The <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css2/#propdef-line-height" id="ref-for-propdef-line-height">line-height</a> property always refers to the logical height. <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> </ul> - <p>The height properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, <a class="property css" data-link-type="property">min-height</a>, and <span class="property">max-height</span>) - refer to the physical height, and the width properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a>, <span class="property">min-width</span>, and <span class="property">max-width</span>) refer to the physical width. However, + <p>The height properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a>) + refer to the physical height, and the width properties (<a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a>, and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a>) refer to the physical width. However, the rules used to calculate box dimensions and positions are logical. </p> <p>For example, the calculation rules in <a href="https://www.w3.org/TR/CSS2/visudet.html#Computing_widths_and_margins">CSS2.1 Section 10.3</a> are used for the inline dimension measurements: they apply to the <a data-link-type="dfn" href="#inline-size" id="ref-for-inline-size">inline size</a> (which could be either the physical width or physical height) @@ -3042,7 +3041,7 @@ <h3 class="heading settled" data-level="7.4" id="logical-direction-layout"><span box and used to abstract layout rules related to the box properties (margins, borders, padding) and any properties related to positioning the box within its containing block - (<a class="property css" data-link-type="property">float</a>, <span class="property">clear</span>, <span class="property">top</span>, <span class="property">bottom</span>, <span class="property">left</span>, <span class="property">right</span>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a>). + (<a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float" id="ref-for-propdef-float">float</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear" id="ref-for-propdef-clear">clear</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-top" id="ref-for-propdef-top">top</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom" id="ref-for-propdef-bottom">bottom</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-left" id="ref-for-propdef-left">left</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-right" id="ref-for-propdef-right">right</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side">caption-side</a>). For inline-level boxes, the writing mode of the <em>parent box</em> is used instead. (The left/right/top/bottom-named properties and values themselves are still mapped physically; @@ -3083,9 +3082,9 @@ <h3 class="heading settled" data-level="7.5" id="line-mappings"><span class="sec with respect to the writing mode of the <em>containing block</em> of the box and used to interpret the <span class="css">left</span> and <span class="css">right</span> values of the following properties: </p> <ul> - <li>the <a class="property css" data-link-type="property">float</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> - <li>the <a class="property css" data-link-type="property">clear</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> - <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side" id="ref-for-propdef-caption-side②">caption-side</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float" id="ref-for-propdef-float①">float</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear" id="ref-for-propdef-clear①">clear</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side" id="ref-for-propdef-caption-side②">caption-side</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> </ul> <p>The <a data-link-type="dfn" href="#over" id="ref-for-over④">over</a> and <a data-link-type="dfn" href="#under" id="ref-for-under④">under</a> directions are calculated with respect to the writing mode of the box and used to define the @@ -3107,7 +3106,7 @@ <h3 class="heading settled" data-level="7.6" id="physical-only"><span class="sec <p>The following values are purely physical in their definitions and do not respond to changes in writing mode: </p> <ul> - <li>the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect" id="ref-for-funcdef-basic-shape-rect">rect()</a> notation of the <a class="property css" data-link-type="property">clip</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> + <li>the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect" id="ref-for-funcdef-basic-shape-rect">rect()</a> notation of the <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visufx.html#propdef-clip" id="ref-for-propdef-clip">clip</a> property <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <li>the background properties <a data-link-type="biblio" href="#biblio-css2" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS2]</a> <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a> <li>the border-image properties <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a> <li>the offsets of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow" id="ref-for-propdef-box-shadow">box-shadow</a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow" id="ref-for-propdef-text-shadow">text-shadow</a> properties @@ -3120,7 +3119,7 @@ <h2 class="heading settled" data-level="8" id="principal-flow"><span class="secn to determine the direction of scrolling and the default <a data-link-type="dfn" href="https://drafts.csswg.org/css-page-3/#page-progression" id="ref-for-page-progression">page progression</a> direction. </p> <p>As a special case for handling HTML documents, - if the root element has a <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element">body</a></code> child element <a data-link-type="biblio" href="#biblio-html" title="HTML Standard">[HTML]</a> whose <a class="property css" data-link-type="property">display</a> value is not <a class="css" data-link-type="maybe" href="#valdef-text-combine-upright-none" id="ref-for-valdef-text-combine-upright-none">none</a>, + if the root element has a <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element">body</a></code> child element <a data-link-type="biblio" href="#biblio-html" title="HTML Standard">[HTML]</a> whose <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑥">display</a> value is not <a class="css" data-link-type="maybe" href="#valdef-text-combine-upright-none" id="ref-for-valdef-text-combine-upright-none">none</a>, the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value④">used value</a> of the of <a class="property css" data-link-type="property" href="#propdef-writing-mode" id="ref-for-propdef-writing-mode②④">writing-mode</a> and <a class="property css" data-link-type="property" href="#propdef-direction" id="ref-for-propdef-direction③④">direction</a> properties on root element are taken from the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value②">computed</a> <span class="property" id="ref-for-propdef-writing-mode②⑤">writing-mode</span> and <span class="property" id="ref-for-propdef-direction③⑤">direction</span> of the first such child element instead of from the root element’s own values. @@ -3383,10 +3382,10 @@ <h2 class="no-num heading settled" id="changes"><span class="content">Changes</s <h3 class="no-num heading settled" id="changes-2019"><span class="content"> Changes since the <a href="https://www.w3.org/TR/2019/CR-css-writing-modes-4-20190730/">July 2019 CSS Writing Modes Module Level 4 Candidate Recommendation</a></span><a class="self-link" href="#changes-2019"></a></h3> <ul> - <li>Specified that a <a class="css" data-link-type="propdesc">display: none</a> <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element①">body</a></code> element does not influence the <a data-link-type="dfn" href="#principal-writing-mode" id="ref-for-principal-writing-mode③">principal writing mode</a>. + <li>Specified that a <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑦">display: none</a> <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element" id="ref-for-the-body-element①">body</a></code> element does not influence the <a data-link-type="dfn" href="#principal-writing-mode" id="ref-for-principal-writing-mode③">principal writing mode</a>. (<a href="https://github.com/w3c/csswg-drafts/issues/3779">Issue 3779</a>) <li>Updated “Applies to” line for <a class="property css" data-link-type="property" href="#propdef-text-combine-upright" id="ref-for-propdef-text-combine-upright①①">text-combine-upright</a> to mention text - (since certain effects like <a class="css" data-link-type="propdesc">display: contents</a> can strip the box itself). + (since certain effects like <a class="css" data-link-type="propdesc" href="https://www.w3.org/TR/CSS21/visuren.html#propdef-display" id="ref-for-propdef-display⑧">display: contents</a> can strip the box itself). <li> Clarified that the <a data-link-type="dfn" href="#central-baseline" id="ref-for-central-baseline①">central baseline</a> is the <a data-link-type="dfn">ideographic central baseline</a>. (<a href="https://github.com/w3c/csswg-drafts/issues/5177">Issue 5177</a>) </ul> @@ -3858,12 +3857,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="ce9e274e">digits</span> </ul> - <li> - <a data-link-type="biblio">[CSS-TABLES-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="6882117f">border-spacing</span> - <li><span class="dfn-paneled" id="07083329">caption-side</span> - </ul> <li> <a data-link-type="biblio">[CSS-TEXT-3]</a> defines the following terms: <ul> @@ -3895,6 +3888,24 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="35d9f24e">font-relative lengths</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="fe0abd77">border-spacing</span> + <li><span class="dfn-paneled" id="1ebe67be">bottom</span> + <li><span class="dfn-paneled" id="9983181a">caption-side</span> + <li><span class="dfn-paneled" id="ac2ecdf7">clear</span> + <li><span class="dfn-paneled" id="03234c68">clip</span> + <li><span class="dfn-paneled" id="ef9e6926">display</span> + <li><span class="dfn-paneled" id="cdd73959">float</span> + <li><span class="dfn-paneled" id="49a17925">left</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="0475c554">right</span> + <li><span class="dfn-paneled" id="4726eb39">top</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -3973,21 +3984,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-shapes/"><cite>CSS Shapes Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-shapes/">https://drafts.csswg.org/css-shapes/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> - <dt id="biblio-css-tables-3">[CSS-TABLES-3] - <dd>François Remy; Greg Whitworth; David Baron. <a href="https://drafts.csswg.org/css-tables-3/"><cite>CSS Table Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] @@ -4007,11 +4016,11 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-text-decor">[CSS3-TEXT-DECOR] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-decor-3/">https://drafts.csswg.org/css-text-decor-3/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3col">[CSS3COL] <dd>Florian Rivoal; Rachel Andrew. <a href="https://drafts.csswg.org/css-multicol/"><cite>CSS Multi-column Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-multicol/">https://drafts.csswg.org/css-multicol/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] @@ -4023,13 +4032,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-svg11">[SVG11] <dd>Erik Dahlström; et al. <a href="https://www.w3.org/TR/SVG11/"><cite>Scalable Vector Graphics (SVG) 1.1 (Second Edition)</cite></a>. 16 August 2011. REC. URL: <a href="https://www.w3.org/TR/SVG11/">https://www.w3.org/TR/SVG11/</a> <dt id="biblio-uax11">[UAX11] - <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-40.html"><cite>East Asian Width</cite></a>. 16 August 2022. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-40.html">https://www.unicode.org/reports/tr11/tr11-40.html</a> + <dd>Ken Lunde 小林劍󠄁. <a href="https://www.unicode.org/reports/tr11/tr11-41.html"><cite>East Asian Width</cite></a>. 17 July 2023. Unicode Standard Annex #11. URL: <a href="https://www.unicode.org/reports/tr11/tr11-41.html">https://www.unicode.org/reports/tr11/tr11-41.html</a> <dt id="biblio-uax24">[UAX24] - <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-34.html"><cite>Unicode Script Property</cite></a>. 25 August 2022. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-34.html">https://www.unicode.org/reports/tr24/tr24-34.html</a> + <dd>Ken Whistler. <a href="https://www.unicode.org/reports/tr24/tr24-36.html"><cite>Unicode Script Property</cite></a>. 14 August 2023. Unicode Standard Annex #24. URL: <a href="https://www.unicode.org/reports/tr24/tr24-36.html">https://www.unicode.org/reports/tr24/tr24-36.html</a> <dt id="biblio-uax50">[UAX50] - <dd>Ken Lunde 小林劍󠄁; Koji Ishii 石井宏治. <a href="https://www.unicode.org/reports/tr50/tr50-28.html"><cite>Unicode Vertical Text Layout</cite></a>. 16 August 2022. Unicode Standard Annex #50. URL: <a href="https://www.unicode.org/reports/tr50/tr50-28.html">https://www.unicode.org/reports/tr50/tr50-28.html</a> + <dd>Ken Lunde 小林劍󠄁; Koji Ishii 石井宏治. <a href="https://www.unicode.org/reports/tr50/tr50-29.html"><cite>Unicode Vertical Text Layout</cite></a>. 17 July 2023. Unicode Standard Annex #50. URL: <a href="https://www.unicode.org/reports/tr50/tr50-29.html">https://www.unicode.org/reports/tr50/tr50-29.html</a> <dt id="biblio-uax9">[UAX9] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-unicode">[UNICODE] <dd><a href="https://www.unicode.org/versions/latest/"><cite>The Unicode Standard</cite></a>. URL: <a href="https://www.unicode.org/versions/latest/">https://www.unicode.org/versions/latest/</a> </dl> @@ -4040,7 +4049,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css3-fonts">[CSS3-FONTS] @@ -4176,13 +4185,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-combine-upright" title="The text-combine-upright CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.">text-combine-upright</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>48+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> + <span class="firefox yes"><span>Firefox</span><span>48+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>15.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>48+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>48+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -4247,7 +4256,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/writing-mode" title="The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, <altGlyph> and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)">Attribute/writing-mode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/writing-mode" title="The writing-mode attribute specifies whether the initial inline-progression-direction for a <text> element shall be left-to-right, right-to-left, or top-to-bottom. The writing-mode attribute applies only to <text> elements; the attribute is ignored for <tspan>, <tref>, and <textPath> sub-elements. (Note that the inline-progression-direction can change within a <text> element due to the Unicode bidirectional algorithm and properties direction and unicode-bidi.)">Attribute/writing-mode</a></p> <p class="less-than-two-engines-text">In no current engines.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> @@ -4462,7 +4471,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let dfnPanelData = { "00140718": {"dfnID":"00140718","dfnText":"margin-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-top"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-top"}, "00d808eb": {"dfnID":"00d808eb","dfnText":"font-feature-settings","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-feature-settings"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-feature-settings"}, -"07083329": {"dfnID":"07083329","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"},{"id":"ref-for-propdef-caption-side\u2460"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-caption-side\u2461"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, +"03234c68": {"dfnID":"03234c68","dfnText":"clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clip"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-clip"}, +"0475c554": {"dfnID":"0475c554","dfnText":"right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-right"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, "07cc8d20": {"dfnID":"07cc8d20","dfnText":"column-gap","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-column-gap"},{"id":"ref-for-propdef-column-gap\u2460"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-align-3/#propdef-column-gap"}, "081f0d7c": {"dfnID":"081f0d7c","dfnText":"auto (for column-width)","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-column-width-auto"},{"id":"ref-for-valdef-column-width-auto\u2460"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-multicol-1/#valdef-column-width-auto"}, "083ffe5f": {"dfnID":"083ffe5f","dfnText":"inline box","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-box"}],"title":"2.4.5. \nReordering-induced Box Fragmentation"},{"refs":[{"id":"ref-for-inline-box\u2460"},{"id":"ref-for-inline-box\u2461"},{"id":"ref-for-inline-box\u2462"},{"id":"ref-for-inline-box\u2463"},{"id":"ref-for-inline-box\u2464"}],"title":"2.4.5.1. \nConditions of Reordering-induced Box Fragmentation"},{"refs":[{"id":"ref-for-inline-box\u2465"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"}],"url":"https://drafts.csswg.org/css-display-4/#inline-box"}, @@ -4474,6 +4484,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "18d57a4b": {"dfnID":"18d57a4b","dfnText":"max-content","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-width-max-content"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, "19b4459e": {"dfnID":"19b4459e","dfnText":"column-count","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-column-count"},{"id":"ref-for-propdef-column-count\u2460"},{"id":"ref-for-propdef-column-count\u2461"},{"id":"ref-for-propdef-column-count\u2462"},{"id":"ref-for-propdef-column-count\u2463"},{"id":"ref-for-propdef-column-count\u2464"},{"id":"ref-for-propdef-column-count\u2465"},{"id":"ref-for-propdef-column-count\u2466"},{"id":"ref-for-propdef-column-count\u2467"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-multicol-1/#propdef-column-count"}, "1d60d958": {"dfnID":"1d60d958","dfnText":"max-content block size","external":true,"refSections":[{"refs":[{"id":"ref-for-max-content-block-size"},{"id":"ref-for-max-content-block-size\u2460"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#max-content-block-size"}, +"1ebe67be": {"dfnID":"1ebe67be","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, "20fff200": {"dfnID":"20fff200","dfnText":"inheritance","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"}],"title":"8. \nThe Principal Writing Mode"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, "237b3136": {"dfnID":"237b3136","dfnText":"typographic character unit","external":true,"refSections":[{"refs":[{"id":"ref-for-typographic-character-unit"},{"id":"ref-for-typographic-character-unit\u2460"},{"id":"ref-for-typographic-character-unit\u2461"},{"id":"ref-for-typographic-character-unit\u2462"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2463"},{"id":"ref-for-typographic-character-unit\u2464"},{"id":"ref-for-typographic-character-unit\u2465"}],"title":"5.1.1. \nVertical Typesetting and Font Features"},{"refs":[{"id":"ref-for-typographic-character-unit\u2466"}],"title":"5.1.2. \nMixed Vertical Orientations"},{"refs":[{"id":"ref-for-typographic-character-unit\u2467"},{"id":"ref-for-typographic-character-unit\u2468"},{"id":"ref-for-typographic-character-unit\u2460\u24ea"},{"id":"ref-for-typographic-character-unit\u2460\u2460"},{"id":"ref-for-typographic-character-unit\u2460\u2461"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460\u2462"},{"id":"ref-for-typographic-character-unit\u2460\u2463"}],"title":"9.1.1. \nText Run Rules"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460\u2464"}],"title":"9.1.2. \nLayout Rules"},{"refs":[{"id":"ref-for-typographic-character-unit\u2460\u2465"},{"id":"ref-for-typographic-character-unit\u2460\u2466"},{"id":"ref-for-typographic-character-unit\u2460\u2467"},{"id":"ref-for-typographic-character-unit\u2460\u2468"},{"id":"ref-for-typographic-character-unit\u2461\u24ea"},{"id":"ref-for-typographic-character-unit\u2461\u2460"}],"title":"9.1.3. \nCompression Rules"},{"refs":[{"id":"ref-for-typographic-character-unit\u2461\u2461"},{"id":"ref-for-typographic-character-unit\u2461\u2462"},{"id":"ref-for-typographic-character-unit\u2461\u2463"},{"id":"ref-for-typographic-character-unit\u2461\u2464"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-text-4/#typographic-character-unit"}, "24285d87": {"dfnID":"24285d87","dfnText":"flex container","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-container"}],"title":"7.3.3. \nAuto-sizing Other Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-container"}, @@ -4485,11 +4496,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"}],"title":"5.1.3. \nObsolete: the SVG1.1 glyph-orientation-vertical property"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "358fd6ff": {"dfnID":"358fd6ff","dfnText":"css-wide keywords","external":true,"refSections":[{"refs":[{"id":"ref-for-css-wide-keywords"}],"title":"1.2. \nValue Definitions and Terminology"}],"url":"https://drafts.csswg.org/css-values-4/#css-wide-keywords"}, "35d9f24e": {"dfnID":"35d9f24e","dfnText":"font-relative lengths","external":true,"refSections":[{"refs":[{"id":"ref-for-font-relative-length"}],"title":"1.1. \nModule Interactions"}],"url":"https://drafts.csswg.org/css-values-4/#font-relative-length"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3e6545d2": {"dfnID":"3e6545d2","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-caption-side-bottom"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://drafts.csswg.org/css2/#valdef-caption-side-bottom"}, "3f0db204": {"dfnID":"3f0db204","dfnText":"min-content size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content"}],"title":"7.3. \nOrthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content"}, "4356bfe3": {"dfnID":"4356bfe3","dfnText":"text-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-align"}],"title":"6.3. \nLine-relative Directions"},{"refs":[{"id":"ref-for-propdef-text-align\u2460"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"},{"refs":[{"id":"ref-for-propdef-text-align\u2461"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-text-align\u2462"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, "4380f2e5": {"dfnID":"4380f2e5","dfnText":"sub","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-baseline-shift-sub"}],"title":"4.4. \nBaseline Alignment"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-sub"}, "46080d3b": {"dfnID":"46080d3b","dfnText":"page progression","external":true,"refSections":[{"refs":[{"id":"ref-for-page-progression"}],"title":"8. \nThe Principal Writing Mode"},{"refs":[{"id":"ref-for-page-progression\u2460"},{"id":"ref-for-page-progression\u2461"}],"title":"8.2. \nPage Flow: the page progression direction"}],"url":"https://drafts.csswg.org/css-page-3/#page-progression"}, +"4726eb39": {"dfnID":"4726eb39","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, +"49a17925": {"dfnID":"49a17925","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-left"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "5e3e8101": {"dfnID":"5e3e8101","dfnText":"inner display type","external":true,"refSections":[{"refs":[{"id":"ref-for-inner-display-type"},{"id":"ref-for-inner-display-type\u2460"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#inner-display-type"}, "607244fc": {"dfnID":"607244fc","dfnText":"flow-root","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-flow-root"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-flow-root"}, @@ -4497,7 +4511,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "65a738ee": {"dfnID":"65a738ee","dfnText":"definite","external":true,"refSections":[{"refs":[{"id":"ref-for-definite"},{"id":"ref-for-definite\u2460"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#definite"}, "66c521a7": {"dfnID":"66c521a7","dfnText":"flex item","external":true,"refSections":[{"refs":[{"id":"ref-for-flex-item"}],"title":"7.3.3. \nAuto-sizing Other Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-flexbox-1/#flex-item"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, -"6882117f": {"dfnID":"6882117f","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"}],"title":"2.1. \nSpecifying Directionality: the direction property"},{"refs":[{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"}],"title":"2.2. \nEmbeddings and Overrides: the unicode-bidi property"},{"refs":[{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"},{"id":"ref-for-comb-one\u2460\u2464"}],"title":"5.1.3. \nObsolete: the SVG1.1 glyph-orientation-vertical property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "6f7440a6": {"dfnID":"6f7440a6","dfnText":"available inline space","external":true,"refSections":[{"refs":[{"id":"ref-for-available"},{"id":"ref-for-available\u2460"},{"id":"ref-for-available\u2461"},{"id":"ref-for-available\u2462"},{"id":"ref-for-available\u2463"},{"id":"ref-for-available\u2464"}],"title":"7.3.1. \nAvailable Space in Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2465"},{"id":"ref-for-available\u2466"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2467"},{"id":"ref-for-available\u2468"},{"id":"ref-for-available\u2460\u24ea"},{"id":"ref-for-available\u2460\u2460"},{"id":"ref-for-available\u2460\u2461"},{"id":"ref-for-available\u2460\u2462"}],"title":"7.3.3. \nAuto-sizing Other Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#available"}, @@ -4513,6 +4526,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "8ce2e266": {"dfnID":"8ce2e266","dfnText":"stretch-fit block size","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit-block-size"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit-block-size"}, "8d0ede2c": {"dfnID":"8d0ede2c","dfnText":"initial containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-containing-block"}],"title":"8.1. \nPropagation to the Initial Containing Block"}],"url":"https://drafts.csswg.org/css-display-4/#initial-containing-block"}, "9729fd44": {"dfnID":"9729fd44","dfnText":"fragment","external":true,"refSections":[{"refs":[{"id":"ref-for-fragment"}],"title":"2.4.5.1. \nConditions of Reordering-induced Box Fragmentation"}],"url":"https://drafts.csswg.org/css-break-3/#fragment"}, +"9983181a": {"dfnID":"9983181a","dfnText":"caption-side","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-caption-side"},{"id":"ref-for-propdef-caption-side\u2460"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-caption-side\u2461"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, "99cabd32": {"dfnID":"99cabd32","dfnText":"in-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-in-flow"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#in-flow"}, "9aae076b": {"dfnID":"9aae076b","dfnText":"baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-alignment-baseline-baseline"},{"id":"ref-for-valdef-alignment-baseline-baseline\u2460"}],"title":"4.4. \nBaseline Alignment"}],"url":"https://drafts.csswg.org/css-inline-3/#valdef-alignment-baseline-baseline"}, "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"}],"title":"1.1. \nModule Interactions"},{"refs":[{"id":"ref-for-computed-value\u2460"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-computed-value\u2461"}],"title":"8. \nThe Principal Writing Mode"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, @@ -4520,9 +4534,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9f49bc74": {"dfnID":"9f49bc74","dfnText":"min-content block size","external":true,"refSections":[{"refs":[{"id":"ref-for-min-content-block-size"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#min-content-block-size"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"5.1. \nOrienting Text: the text-orientation property"},{"refs":[{"id":"ref-for-used-value\u2461"}],"title":"6.4. \nAbstract-to-Physical Mappings"},{"refs":[{"id":"ref-for-used-value\u2462"},{"id":"ref-for-used-value\u2463"}],"title":"8. \nThe Principal Writing Mode"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "a533883f": {"dfnID":"a533883f","dfnText":"available block space","external":true,"refSections":[{"refs":[{"id":"ref-for-available"},{"id":"ref-for-available\u2460"},{"id":"ref-for-available\u2461"},{"id":"ref-for-available\u2462"},{"id":"ref-for-available\u2463"},{"id":"ref-for-available\u2464"}],"title":"7.3.1. \nAvailable Space in Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2465"},{"id":"ref-for-available\u2466"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"},{"refs":[{"id":"ref-for-available\u2467"},{"id":"ref-for-available\u2468"},{"id":"ref-for-available\u2460\u24ea"},{"id":"ref-for-available\u2460\u2460"},{"id":"ref-for-available\u2460\u2461"},{"id":"ref-for-available\u2460\u2462"}],"title":"7.3.3. \nAuto-sizing Other Orthogonal Flow Roots"}],"url":"https://drafts.csswg.org/css-sizing-3/#available"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a8485ff4": {"dfnID":"a8485ff4","dfnText":"replaced element","external":true,"refSections":[{"refs":[{"id":"ref-for-replaced-element"}],"title":"2.4.3. \nBidi Treatment of Atomic Inlines"},{"refs":[{"id":"ref-for-replaced-element\u2460"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#replaced-element"}, "aaf6abed": {"dfnID":"aaf6abed","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"},{"id":"ref-for-propdef-margin-left\u2460"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "abstract-dimensions": {"dfnID":"abstract-dimensions","dfnText":"abstract dimensions","external":false,"refSections":[],"url":"#abstract-dimensions"}, +"ac2ecdf7": {"dfnID":"ac2ecdf7","dfnText":"clear","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-clear"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-clear\u2460"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-clear"}, "ac54fbff": {"dfnID":"ac54fbff","dfnText":"line-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-line-height"}],"title":"7.2. \nDimensional Mapping"},{"refs":[{"id":"ref-for-propdef-line-height\u2460"}],"title":"9.1.2. \nLayout Rules"},{"refs":[{"id":"ref-for-propdef-line-height\u2461"}],"title":"\nChanges since the May\n2018 CSS Writing Modes Module Level 4 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "ad065a5c": {"dfnID":"ad065a5c","dfnText":"margin-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-right"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-right"}, "alphabetic-baseline": {"dfnID":"alphabetic-baseline","dfnText":"alphabetic baseline","external":false,"refSections":[{"refs":[{"id":"ref-for-alphabetic-baseline"}],"title":"4.2. \nText Baselines"}],"url":"#alphabetic-baseline"}, @@ -4549,6 +4565,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "ca960d4f": {"dfnID":"ca960d4f","dfnText":"block formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-block-formatting-context"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"}],"url":"https://drafts.csswg.org/css-display-4/#block-formatting-context"}, "cbc54f93": {"dfnID":"cbc54f93","dfnText":"text-transform","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-transform"},{"id":"ref-for-propdef-text-transform\u2460"},{"id":"ref-for-propdef-text-transform\u2461"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-transform"}, "cbfeec00": {"dfnID":"cbfeec00","dfnText":"margin-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-bottom"},{"id":"ref-for-propdef-margin-bottom\u2460"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-bottom"}, +"cdd73959": {"dfnID":"cdd73959","dfnText":"float","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-float"}],"title":"7.4. \nFlow-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-float\u2460"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-float"}, "ce9e274e": {"dfnID":"ce9e274e","dfnText":"digits","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-speak-as-digits"}],"title":"9.1. \nHorizontal-in-Vertical Composition: the text-combine-upright property"},{"refs":[{"id":"ref-for-valdef-speak-as-digits\u2460"}],"title":"9.1.1. \nText Run Rules"},{"refs":[{"id":"ref-for-valdef-speak-as-digits\u2461"}],"title":"\nNew in Level 4"}],"url":"https://drafts.csswg.org/css-speech-1/#valdef-speak-as-digits"}, "central-baseline": {"dfnID":"central-baseline","dfnText":"central baseline","external":false,"refSections":[{"refs":[{"id":"ref-for-central-baseline"}],"title":"4.2. \nText Baselines"},{"refs":[{"id":"ref-for-central-baseline\u2460"}],"title":"\nChanges since the July\n2019 CSS Writing Modes Module Level 4 Candidate Recommendation"}],"url":"#central-baseline"}, "css-end": {"dfnID":"css-end","dfnText":"end","external":false,"refSections":[{"refs":[{"id":"ref-for-css-end"}],"title":"2.4.5.2. \nBox Model of Reordering-induced Box Fragments"},{"refs":[{"id":"ref-for-css-end\u2460"}],"title":"6. \nAbstract Box Terminology"},{"refs":[{"id":"ref-for-css-end\u2461"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"#css-end"}, @@ -4562,10 +4579,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e0b6ed58": {"dfnID":"e0b6ed58","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"},{"id":"ref-for-propdef-vertical-align\u2460"}],"title":"4. \nInline-level Alignment"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2461"}],"title":"4.3. \nAtomic Inline Baselines"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2462"},{"id":"ref-for-propdef-vertical-align\u2463"},{"id":"ref-for-propdef-vertical-align\u2464"}],"title":"4.4. \nBaseline Alignment"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2465"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2466"}],"title":"7.5. \nLine-Relative Mappings"},{"refs":[{"id":"ref-for-propdef-vertical-align\u2467"}],"title":"9.1.2. \nLayout Rules"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, "e33664cd": {"dfnID":"e33664cd","dfnText":"inline-block","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline-block"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-valdef-display-inline-block\u2460"}],"title":"9.1.2. \nLayout Rules"},{"refs":[{"id":"ref-for-valdef-display-inline-block\u2461"}],"title":"\nChanges since the May\n2018 CSS Writing Modes Module Level 4 Candidate Recommendation"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline-block"}, "e3bdfa96": {"dfnID":"e3bdfa96","dfnText":"stretch fit","external":true,"refSections":[{"refs":[{"id":"ref-for-stretch-fit"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"}],"url":"https://drafts.csswg.org/css-sizing-3/#stretch-fit"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "ea8fc05c": {"dfnID":"ea8fc05c","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-caption-side-top"}],"title":"7.4. \nFlow-Relative Mappings"}],"url":"https://drafts.csswg.org/css2/#valdef-caption-side-top"}, +"ef9e6926": {"dfnID":"ef9e6926","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"2.2. \nEmbeddings and Overrides: the unicode-bidi property"},{"refs":[{"id":"ref-for-propdef-display\u2461"}],"title":"2.4.3. \nBidi Treatment of Atomic Inlines"},{"refs":[{"id":"ref-for-propdef-display\u2462"},{"id":"ref-for-propdef-display\u2463"},{"id":"ref-for-propdef-display\u2464"}],"title":"3.2. \nBlock Flow Direction: the writing-mode property"},{"refs":[{"id":"ref-for-propdef-display\u2465"}],"title":"8. \nThe Principal Writing Mode"},{"refs":[{"id":"ref-for-propdef-display\u2466"},{"id":"ref-for-propdef-display\u2467"}],"title":"\nChanges since the July\n2019 CSS Writing Modes Module Level 4 Candidate Recommendation"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, "establish-an-orthogonal-flow": {"dfnID":"establish-an-orthogonal-flow","dfnText":"orthogonal flow","external":false,"refSections":[{"refs":[{"id":"ref-for-establish-an-orthogonal-flow"},{"id":"ref-for-establish-an-orthogonal-flow\u2460"},{"id":"ref-for-establish-an-orthogonal-flow\u2461"}],"title":"7.3. \nOrthogonal Flows"},{"refs":[{"id":"ref-for-establish-an-orthogonal-flow\u2462"}],"title":"7.3.1. \nAvailable Space in Orthogonal Flows"},{"refs":[{"id":"ref-for-establish-an-orthogonal-flow\u2463"}],"title":"7.3.2. \nAuto-sizing Block Containers in Orthogonal Flows"},{"refs":[{"id":"ref-for-establish-an-orthogonal-flow\u2464"},{"id":"ref-for-establish-an-orthogonal-flow\u2465"},{"id":"ref-for-establish-an-orthogonal-flow\u2466"}],"title":"7.3.3. \nAuto-sizing Other Orthogonal Flow Roots"}],"url":"#establish-an-orthogonal-flow"}, "f338a9f0": {"dfnID":"f338a9f0","dfnText":"text-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-shadow"}],"title":"7.6. \nPurely Physical Mappings"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "fb7153bd": {"dfnID":"fb7153bd","dfnText":"font-variant","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-variant"}],"title":"9.1.3.1. \nFull-width Characters"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-variant"}, +"fe0abd77": {"dfnID":"fe0abd77","dfnText":"border-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-spacing"}],"title":"7.2. \nDimensional Mapping"}],"url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, "ffc192db": {"dfnID":"ffc192db","dfnText":"text-decoration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration"}],"title":"7.5. \nLine-Relative Mappings"}],"url":"https://drafts.csswg.org/css-text-decor-3/#propdef-text-decoration"}, "flow-relative": {"dfnID":"flow-relative","dfnText":"flow-relative","external":false,"refSections":[],"url":"#flow-relative"}, "flow-relative-direction": {"dfnID":"flow-relative-direction","dfnText":"flow-relative directions","external":false,"refSections":[{"refs":[{"id":"ref-for-flow-relative-direction"}],"title":"7.1. \nPrinciples of Layout in Vertical Writing Modes"}],"url":"#flow-relative-direction"}, @@ -5232,8 +5253,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto": {"export":true,"for_":["width","height","min-width","min-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content": {"export":true,"for_":["width","min-width","max-width","height","min-height","max-height"],"level":"3","normative":true,"shortname":"css-sizing","spec":"css-sizing-3","status":"current","text":"max-content","type":"value","url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content"}, "https://drafts.csswg.org/css-speech-1/#valdef-speak-as-digits": {"export":true,"for_":["speak-as"],"level":"1","normative":true,"shortname":"css-speech","spec":"css-speech-1","status":"current","text":"digits","type":"value","url":"https://drafts.csswg.org/css-speech-1/#valdef-speak-as-digits"}, -"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"border-spacing","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-border-spacing"}, -"https://drafts.csswg.org/css-tables-3/#propdef-caption-side": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-tables","spec":"css-tables-3","status":"current","text":"caption-side","type":"property","url":"https://drafts.csswg.org/css-tables-3/#propdef-caption-side"}, "https://drafts.csswg.org/css-text-3/#character": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"character","type":"dfn","url":"https://drafts.csswg.org/css-text-3/#character"}, "https://drafts.csswg.org/css-text-3/#propdef-letter-spacing": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"letter-spacing","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-letter-spacing"}, "https://drafts.csswg.org/css-text-3/#propdef-text-align": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-text","spec":"css-text-3","status":"current","text":"text-align","type":"property","url":"https://drafts.csswg.org/css-text-3/#propdef-text-align"}, @@ -5255,6 +5274,20 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css2/#valdef-caption-side-top": {"export":true,"for_":["caption-side"],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"top","type":"value","url":"https://drafts.csswg.org/css2/#valdef-caption-side-top"}, "https://drafts.csswg.org/mediaqueries-5/#paged-media": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"paged media","type":"dfn","url":"https://drafts.csswg.org/mediaqueries-5/#paged-media"}, "https://html.spec.whatwg.org/multipage/sections.html#the-body-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"body","type":"element","url":"https://html.spec.whatwg.org/multipage/sections.html#the-body-element"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"border-spacing","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"}, +"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"caption-side","type":"property","url":"https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, +"https://www.w3.org/TR/CSS21/visufx.html#propdef-clip": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"clip","type":"property","url":"https://www.w3.org/TR/CSS21/visufx.html#propdef-clip"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"bottom","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-clear": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"clear","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-clear"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-display": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"display","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-display"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-float": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"float","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-float"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-left": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"left","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-left"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-right": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"right","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-right"}, +"https://www.w3.org/TR/CSS21/visuren.html#propdef-top": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"top","type":"property","url":"https://www.w3.org/TR/CSS21/visuren.html#propdef-top"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/css2/Overview.console.txt b/tests/github/w3c/csswg-drafts/css2/Overview.console.txt index 1bc7b5f0ef..857f78e1e8 100644 --- a/tests/github/w3c/csswg-drafts/css2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/css2/Overview.console.txt @@ -587,6 +587,23 @@ LINE 11354: Multiple elements have the same ID 'page-box'. Deduping, but this ID may not be stable across revisions. LINE 15403: Multiple elements have the same ID 'system-fonts'. Deduping, but this ID may not be stable across revisions. +LINE 1426: Ambiguous for-less link for 'dotted', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:dotted +spec:css2; type:value; for:border-bottom-style; text:dotted +spec:css2; type:value; for:border-left-style; text:dotted +spec:css2; type:value; for:border-right-style; text:dotted +spec:css2; type:value; for:border-style; text:dotted +spec:css2; type:value; for:border-top-style; text:dotted +for-less references: +spec:css2; type:value; for:/; text:dotted +''dotted'' +LINE 2653: Ambiguous for-less link for 'decimal', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:list-style-type; text:decimal +for-less references: +spec:css2; type:value; for:/; text:decimal +''decimal'' LINE 4859: Multiple possible 'b' maybe refs. Arbitrarily chose https://drafts.csswg.org/css-color-5/#valdef-color-b To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -596,6 +613,781 @@ spec:css-color-5; type:value; for:lab(); text:b spec:css-color-5; type:value; for:oklab(); text:b spec:css-color-5; type:value; for:rgb(); text:b ''b'' +LINE 5842: Ambiguous for-less link for 'groove', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:groove +spec:css2; type:value; for:border-bottom-style; text:groove +spec:css2; type:value; for:border-left-style; text:groove +spec:css2; type:value; for:border-right-style; text:groove +spec:css2; type:value; for:border-style; text:groove +spec:css2; type:value; for:border-top-style; text:groove +for-less references: +spec:css2; type:value; for:/; text:groove +''groove'' +LINE 5848: Ambiguous for-less link for 'inset', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:inset +spec:css2; type:value; for:border-bottom-style; text:inset +spec:css2; type:value; for:border-left-style; text:inset +spec:css2; type:value; for:border-right-style; text:inset +spec:css2; type:value; for:border-style; text:inset +spec:css2; type:value; for:border-top-style; text:inset +for-less references: +spec:css2; type:value; for:/; text:inset +''inset'' +LINE 5854: Ambiguous for-less link for 'groove', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:groove +spec:css2; type:value; for:border-bottom-style; text:groove +spec:css2; type:value; for:border-left-style; text:groove +spec:css2; type:value; for:border-right-style; text:groove +spec:css2; type:value; for:border-style; text:groove +spec:css2; type:value; for:border-top-style; text:groove +for-less references: +spec:css2; type:value; for:/; text:groove +''groove'' +LINE 5854: Ambiguous for-less link for 'ridge', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:ridge +spec:css2; type:value; for:border-bottom-style; text:ridge +spec:css2; type:value; for:border-left-style; text:ridge +spec:css2; type:value; for:border-right-style; text:ridge +spec:css2; type:value; for:border-style; text:ridge +spec:css2; type:value; for:border-top-style; text:ridge +for-less references: +spec:css2; type:value; for:/; text:ridge +''ridge'' +LINE 5854: Ambiguous for-less link for 'inset', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:inset +spec:css2; type:value; for:border-bottom-style; text:inset +spec:css2; type:value; for:border-left-style; text:inset +spec:css2; type:value; for:border-right-style; text:inset +spec:css2; type:value; for:border-style; text:inset +spec:css2; type:value; for:border-top-style; text:inset +for-less references: +spec:css2; type:value; for:/; text:inset +''inset'' +LINE 5854: Ambiguous for-less link for 'outset', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:outset +spec:css2; type:value; for:border-bottom-style; text:outset +spec:css2; type:value; for:border-left-style; text:outset +spec:css2; type:value; for:border-right-style; text:outset +spec:css2; type:value; for:border-style; text:outset +spec:css2; type:value; for:border-top-style; text:outset +for-less references: +spec:css2; type:value; for:/; text:outset +''outset'' +LINE 5903: Ambiguous for-less link for 'solid', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:solid +spec:css2; type:value; for:border-bottom-style; text:solid +spec:css2; type:value; for:border-left-style; text:solid +spec:css2; type:value; for:border-right-style; text:solid +spec:css2; type:value; for:border-style; text:solid +spec:css2; type:value; for:border-top-style; text:solid +for-less references: +spec:css2; type:value; for:/; text:solid +''solid'' +LINE 5904: Ambiguous for-less link for 'dotted', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:dotted +spec:css2; type:value; for:border-bottom-style; text:dotted +spec:css2; type:value; for:border-left-style; text:dotted +spec:css2; type:value; for:border-right-style; text:dotted +spec:css2; type:value; for:border-style; text:dotted +spec:css2; type:value; for:border-top-style; text:dotted +for-less references: +spec:css2; type:value; for:/; text:dotted +''dotted'' +LINE 6119: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 6259: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 1: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 9778: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 10392: Ambiguous for-less link for 'decimal', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:list-style-type; text:decimal +for-less references: +spec:css2; type:value; for:/; text:decimal +''decimal'' +LINE 10398: Ambiguous for-less link for 'decimal', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:list-style-type; text:decimal +for-less references: +spec:css2; type:value; for:/; text:decimal +''decimal'' +LINE 10495: Ambiguous for-less link for 'open-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:open-quote +for-less references: +spec:css2; type:value; for:/; text:open-quote +''open-quote'' +LINE 10495: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10502: Ambiguous for-less link for 'open-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:open-quote +for-less references: +spec:css2; type:value; for:/; text:open-quote +''open-quote'' +LINE 10502: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10592: Ambiguous for-less link for 'open-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:open-quote +for-less references: +spec:css2; type:value; for:/; text:open-quote +''open-quote'' +LINE 10593: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10595: Ambiguous for-less link for 'open-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:open-quote +for-less references: +spec:css2; type:value; for:/; text:open-quote +''open-quote'' +LINE 10595: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10599: Ambiguous for-less link for 'open-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:open-quote +for-less references: +spec:css2; type:value; for:/; text:open-quote +''open-quote'' +LINE 10599: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10601: Ambiguous for-less link for 'open-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:open-quote +for-less references: +spec:css2; type:value; for:/; text:open-quote +''open-quote'' +LINE 10603: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10605: Ambiguous for-less link for 'close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:close-quote +for-less references: +spec:css2; type:value; for:/; text:close-quote +''close-quote'' +LINE 10606: Ambiguous for-less link for 'no-close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:no-close-quote +for-less references: +spec:css2; type:value; for:/; text:no-close-quote +''no-close-quote'' +LINE 10621: Ambiguous for-less link for 'no-close-quote', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:content; text:no-close-quote +for-less references: +spec:css2; type:value; for:/; text:no-close-quote +''no-close-quote'' +LINE 11024: Ambiguous for-less link for 'lower-latin', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:list-style-type; text:lower-latin +for-less references: +spec:css2; type:value; for:/; text:lower-latin +''lower-latin'' +LINE 11265: Ambiguous for-less link for 'disc', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:list-style-type; text:disc +for-less references: +spec:css2; type:value; for:/; text:disc +''disc'' +LINE 11295: Ambiguous for-less link for 'disc', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:list-style-type; text:disc +for-less references: +spec:css2; type:value; for:/; text:disc +''disc'' +LINE 11630: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 13875: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 13879: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 13884: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 13887: Ambiguous for-less link for 'table-row-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row-group +for-less references: +spec:css2; type:value; for:/; text:table-row-group +''table-row-group'' +LINE 13891: Ambiguous for-less link for 'table-header-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-header-group +for-less references: +spec:css2; type:value; for:/; text:table-header-group +''table-header-group'' +LINE 13892: Ambiguous for-less link for 'table-row-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row-group +for-less references: +spec:css2; type:value; for:/; text:table-row-group +''table-row-group'' +LINE 13900: Ambiguous for-less link for 'table-footer-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-footer-group +for-less references: +spec:css2; type:value; for:/; text:table-footer-group +''table-footer-group'' +LINE 13901: Ambiguous for-less link for 'table-row-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row-group +for-less references: +spec:css2; type:value; for:/; text:table-row-group +''table-row-group'' +LINE 13909: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 13913: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 13917: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 13920: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 13933: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 13933: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 13967: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 13967: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 13967: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 13968: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 13974: Ambiguous for-less link for 'table-row-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row-group +for-less references: +spec:css2; type:value; for:/; text:table-row-group +''table-row-group'' +LINE 13974: Ambiguous for-less link for 'table-header-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-header-group +for-less references: +spec:css2; type:value; for:/; text:table-header-group +''table-header-group'' +LINE 13975: Ambiguous for-less link for 'table-footer-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-footer-group +for-less references: +spec:css2; type:value; for:/; text:table-footer-group +''table-footer-group'' +LINE 13978: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 13978: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 13979: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 13979: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 13982: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 13982: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 13985: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 13985: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 13986: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 13986: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 13989: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14006: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 14009: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 14010: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 14017: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 14021: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14021: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14026: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 14033: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14033: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14035: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14039: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14041: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14043: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14044: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 14046: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 14051: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 14052: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 14053: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14054: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14055: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 14060: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14061: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14064: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14065: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14067: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14068: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14068: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14069: Ambiguous for-less link for 'table-column', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column +for-less references: +spec:css2; type:value; for:/; text:table-column +''table-column'' +LINE 14070: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 14070: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14071: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14072: Ambiguous for-less link for 'table-column-group', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-column-group +for-less references: +spec:css2; type:value; for:/; text:table-column-group +''table-column-group'' +LINE 14073: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 14074: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14074: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14080: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14100: Ambiguous for-less link for 'table-cell', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-cell +for-less references: +spec:css2; type:value; for:/; text:table-cell +''table-cell'' +LINE 14199: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 1: Ambiguous for-less link for 'table-caption', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-caption +for-less references: +spec:css2; type:value; for:/; text:table-caption +''table-caption'' +LINE 1: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 1: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14645: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14645: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14652: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14652: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14676: Ambiguous for-less link for 'table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table +for-less references: +spec:css2; type:value; for:/; text:table +''table'' +LINE 14677: Ambiguous for-less link for 'inline-table', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:inline-table +for-less references: +spec:css2; type:value; for:/; text:inline-table +''inline-table'' +LINE 14686: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 14692: Ambiguous for-less link for 'table-row', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:display; text:table-row +for-less references: +spec:css2; type:value; for:/; text:table-row +''table-row'' +LINE 15199: Ambiguous for-less link for 'groove', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:groove +spec:css2; type:value; for:border-bottom-style; text:groove +spec:css2; type:value; for:border-left-style; text:groove +spec:css2; type:value; for:border-right-style; text:groove +spec:css2; type:value; for:border-style; text:groove +spec:css2; type:value; for:border-top-style; text:groove +for-less references: +spec:css2; type:value; for:/; text:groove +''groove'' +LINE 15207: Ambiguous for-less link for 'ridge', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:ridge +spec:css2; type:value; for:border-bottom-style; text:ridge +spec:css2; type:value; for:border-left-style; text:ridge +spec:css2; type:value; for:border-right-style; text:ridge +spec:css2; type:value; for:border-style; text:ridge +spec:css2; type:value; for:border-top-style; text:ridge +for-less references: +spec:css2; type:value; for:/; text:ridge +''ridge'' +LINE 15214: Ambiguous for-less link for 'groove', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:<border-style>; text:groove +spec:css2; type:value; for:border-bottom-style; text:groove +spec:css2; type:value; for:border-left-style; text:groove +spec:css2; type:value; for:border-right-style; text:groove +spec:css2; type:value; for:border-style; text:groove +spec:css2; type:value; for:border-top-style; text:groove +for-less references: +spec:css2; type:value; for:/; text:groove +''groove'' +LINE 15491: Ambiguous for-less link for 'invert', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:outline-color; text:invert +for-less references: +spec:css2; type:value; for:/; text:invert +''invert'' +LINE 15497: Ambiguous for-less link for 'invert', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:outline-color; text:invert +for-less references: +spec:css2; type:value; for:/; text:invert +''invert'' +LINE 15499: Ambiguous for-less link for 'invert', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:css2; type:value; for:outline-color; text:invert +for-less references: +spec:css2; type:value; for:/; text:invert +''invert'' WARNING: Multiple elements have the same ID 'references'. Deduping, but this ID may not be stable across revisions. WARNING: Multiple elements have the same ID 'property-index'. diff --git a/tests/github/w3c/csswg-drafts/css2/Overview.html b/tests/github/w3c/csswg-drafts/css2/Overview.html index 6e71d5851a..f58c754b88 100644 --- a/tests/github/w3c/csswg-drafts/css2/Overview.html +++ b/tests/github/w3c/csswg-drafts/css2/Overview.html @@ -5,7 +5,6 @@ <title>CSS 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/CSS2/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1097,7 +1096,7 @@ <h1 class="p-name no-ref allcaps" id="title">CSS 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1140,7 +1139,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[CSS2] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5BCSS2%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2526,7 +2525,7 @@ <h3 class="heading settled" data-level="3.1" id="defs"><span class="secno">3.1. specification. <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="property">Property</dfn> <dd>CSS defines a finite set of parameters, called properties, that -direct the rendering of a document. Each property has a name (e.g., <a class="property css" data-link-type="property" href="#propdef-color" id="ref-for-propdef-color③">color</a>, <a class="property css" data-link-type="property" href="#propdef-font" id="ref-for-propdef-font①">font</a>, or border') and a value (e.g., <a class="css" data-link-type="maybe" href="#valdef-color-red" id="ref-for-valdef-color-red①">red</a>, '12pt Times', or <a class="css" data-link-type="maybe" href="#value-def-dotted" id="ref-for-value-def-dotted">dotted</a>). Properties are attached to various parts of the document +direct the rendering of a document. Each property has a name (e.g., <a class="property css" data-link-type="property" href="#propdef-color" id="ref-for-propdef-color③">color</a>, <a class="property css" data-link-type="property" href="#propdef-font" id="ref-for-propdef-font①">font</a>, or border') and a value (e.g., <a class="css" data-link-type="maybe" href="#valdef-color-red" id="ref-for-valdef-color-red①">red</a>, '12pt Times', or <span class="css">dotted</span>). Properties are attached to various parts of the document and to the page on which the document is to be displayed by the mechanisms of specificity, cascading, and inheritance (see the chapter on <a href="#assigning">Assigning property values, Cascading, and @@ -3570,7 +3569,7 @@ <h4 class="heading settled" data-level="4.3.5" id="counter"><span class="secno"> <p><dfn class="dfn-paneled css" data-dfn-type="type" data-export data-lt="<counter>" id="value-def-counter">Counters</dfn> are denoted by case-sensitive identifiers (see the <a class="property css" data-link-type="property" href="#propdef-counter-increment" id="ref-for-propdef-counter-increment">counter-increment</a> and <a class="property css" data-link-type="property" href="#propdef-counter-reset" id="ref-for-propdef-counter-reset">counter-reset</a> properties). To refer to the value of a counter, the notation <dfn class="dfn-paneled css" data-dfn-type="function" data-export data-lt="counter()" id="funcdef-counter"> counter(&lt;identifier>)</dfn> or 'counter(&lt;identifier>, &lt;'list-style-type<span class="css">>)</span>, with optional white space separating the tokens, -is used. The default style is <a class="css" data-link-type="maybe" href="#value-def-decimal" id="ref-for-value-def-decimal">decimal</a>. </p> +is used. The default style is <span class="css">decimal</span>. </p> <p>To refer to a sequence of nested counters of the same name, the notation is <dfn class="dfn-paneled css" data-dfn-type="function" data-export data-lt="counters()" id="funcdef-counters">counters(&lt;identifier>, &lt;string>)</dfn> or 'counters(&lt;identifier>, &lt;string>, &lt;'list-style-type<span class="css">>)</span> with optional white space separating the tokens. </p> @@ -6202,18 +6201,18 @@ <h4 class="heading settled" data-level="8.5.3" id="border-style-properties"><spa <dd>The border looks as though it were carved into the canvas. <dt><dfn class="dfn-paneled css" data-dfn-for="<border-style>,border-top-style,border-right-style,border-bottom-style,border-left-style,border-style" data-dfn-type="value" data-export id="value-def-ridge">ridge</dfn> - <dd>The opposite of <a class="css" data-link-type="maybe" href="#value-def-groove" id="ref-for-value-def-groove">groove</a>: the border + <dd>The opposite of <span class="css">groove</span>: the border looks as though it were coming out of the canvas. <dt><dfn class="dfn-paneled css" data-dfn-for="<border-style>,border-top-style,border-right-style,border-bottom-style,border-left-style,border-style" data-dfn-type="value" data-export id="value-def-inset">inset</dfn> <dd>The border makes the box look as though it were embedded in the canvas. <dt><dfn class="dfn-paneled css" data-dfn-for="<border-style>,border-top-style,border-right-style,border-bottom-style,border-left-style,border-style" data-dfn-type="value" data-export id="value-def-outset">outset</dfn> - <dd>The opposite of <a class="css" data-link-type="maybe" href="#value-def-inset" id="ref-for-value-def-inset">inset</a>: the + <dd>The opposite of <span class="css">inset</span>: the border makes the box look as though it were coming out of the canvas. </dl> <p>All borders are drawn on top of the box’s background. The color of -borders drawn for values of <a class="css" data-link-type="maybe" href="#value-def-groove" id="ref-for-value-def-groove①">groove</a>, <a class="css" data-link-type="maybe" href="#value-def-ridge" id="ref-for-value-def-ridge">ridge</a>, <a class="css" data-link-type="maybe" href="#value-def-inset" id="ref-for-value-def-inset①">inset</a>, and <a class="css" data-link-type="maybe" href="#value-def-outset" id="ref-for-value-def-outset">outset</a> depends on the element’s <a href="#border-color-properties">border +borders drawn for values of <span class="css">groove</span>, <span class="css">ridge</span>, <span class="css">inset</span>, and <span class="css">outset</span> depends on the element’s <a href="#border-color-properties">border color properties</a>, but UAs may choose their own algorithm to calculate the actual colors used. For instance, if the <a class="property css" data-link-type="property" href="#propdef-border-color" id="ref-for-propdef-border-color③">border-color</a> has the value <a class="css" data-link-type="maybe" href="#valdef-color-silver" id="ref-for-valdef-color-silver">silver</a>, then a UA could use a gradient of colors from white to dark gray to indicate a sloping border. </p> @@ -6284,8 +6283,8 @@ <h4 class="heading settled" data-level="8.5.3" id="border-style-properties"><spa <p></p> <pre class="lang-css highlight">#xy34 <c- p>{</c-> <c- k>border-style</c-><c- p>:</c-> solid dotted <c- p>}</c-> </pre> - <p> In the above example, the horizontal borders will be <a class="css" data-link-type="maybe" href="#value-def-solid" id="ref-for-value-def-solid">solid</a> and -the vertical borders will be <a class="css" data-link-type="maybe" href="#value-def-dotted" id="ref-for-value-def-dotted①">dotted</a>. </p> + <p> In the above example, the horizontal borders will be <span class="css">solid</span> and +the vertical borders will be <span class="css">dotted</span>. </p> </div> <p> Since the initial value of the border styles is <a class="css" data-link-type="maybe" href="#value-def-bo-none" id="ref-for-value-def-bo-none②">none</a>, no borders will be visible unless the border style is set. </p> @@ -6469,7 +6468,7 @@ <h3 class="heading settled" data-level="9.2" id="box-gen"><span class="secno">9. <h4 class="heading settled" data-level="9.2.1" id="block-boxes"><span class="secno">9.2.1. </span><span class="content">Block-level elements and block boxes</span><a class="self-link" href="#block-boxes"></a></h4> <p><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="block-level">Block-level elements</dfn> are those elements of the source document that are formatted visually as blocks (e.g., paragraphs). The following values of the <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display③">display</a> property make an element -block-level: <a class="css" data-link-type="maybe" href="#value-def-block" id="ref-for-value-def-block">block</a>, <a class="css" data-link-type="maybe" href="#value-def-list-item" id="ref-for-value-def-list-item">list-item</a>, and <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table">table</a>. </p> +block-level: <a class="css" data-link-type="maybe" href="#value-def-block" id="ref-for-value-def-block">block</a>, <a class="css" data-link-type="maybe" href="#value-def-list-item" id="ref-for-value-def-list-item">list-item</a>, and <span class="css">table</span>. </p> <p><dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="Block-level boxes" data-noexport id="block-level-boxes">Block-level boxes</dfn> are boxes that participate in a <a href="#block-formatting">block formatting context.</a> Each @@ -6579,7 +6578,7 @@ <h4 class="heading settled" data-level="9.2.2" id="inline-boxes"><span class="se (e.g., emphasized pieces of text within a paragraph, inline images, etc.). The following values of the <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display④">display</a> property make an element -inline-level: <a class="css" data-link-type="maybe" href="#value-def-inline" id="ref-for-value-def-inline">inline</a>, <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table">inline-table</a>, and <a class="css" data-link-type="maybe" href="#value-def-inline-block" id="ref-for-value-def-inline-block">inline-block</a>. </p> +inline-level: <a class="css" data-link-type="maybe" href="#value-def-inline" id="ref-for-value-def-inline">inline</a>, <span class="css">inline-table</span>, and <a class="css" data-link-type="maybe" href="#value-def-inline-block" id="ref-for-value-def-inline-block">inline-block</a>. </p> <p>Inline-level elements generate <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="inline-level boxes" data-noexport id="inline-level-boxes">inline-level boxes</dfn>, which are boxes that participate in an inline formatting context.</p> @@ -9402,7 +9401,7 @@ <h4 class="heading settled" data-level="10.8.1" id="leading"><span class="secno" <td>baseline <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td>inline-level and <a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell">table-cell</a> elements + <td>inline-level and <span class="css">table-cell</span> elements <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>no @@ -9478,7 +9477,7 @@ <h4 class="heading settled" data-level="10.8.1" id="leading"><span class="secno" <dd>Align the bottom of the aligned subtree with the bottom of the line box. </dl> - <p>The baseline of an <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①">inline-table</a> is the baseline of the first row + <p>The baseline of an <span class="css">inline-table</span> is the baseline of the first row of the table. </p> <p>The baseline of an <a class="css" data-link-type="maybe" href="#value-def-inline-block" id="ref-for-value-def-inline-block①⓪">inline-block</a> is the baseline of its last line box in the normal flow, unless it has either no in-flow line boxes or @@ -10002,11 +10001,11 @@ <h3 class="heading settled" data-level="12.2" id="content①"><span class="secno The former has two forms: 'counter(<var>name</var>)' or 'counter(<var>name</var>, <var>style</var>)'. <p>The generated text is the value of the innermost counter of the given -name in scope at this pseudo-element; it is formatted in the indicated <a href="#counter-styles">style</a> (<a class="css" data-link-type="maybe" href="#value-def-decimal" id="ref-for-value-def-decimal①">decimal</a> by default). The latter +name in scope at this pseudo-element; it is formatted in the indicated <a href="#counter-styles">style</a> (<span class="css">decimal</span> by default). The latter function also has two forms: 'counters(<var>name</var>, <var>string</var>)' or 'counters(<var>name</var>, <var>string</var>, <var>style</var>)'. The generated text is the value of all counters with the given name in scope at this pseudo-element, from outermost to innermost separated by the specified string. The counters are rendered -in the indicated <a href="#counter-styles">style</a> (<span class="css" id="ref-for-value-def-decimal②">decimal</span> by +in the indicated <a href="#counter-styles">style</a> (<span class="css">decimal</span> by default). See the section on <a href="#counters">automatic counters and numbering</a> for more information.</p> <p>The name must not be <span class="css">none</span>, <span class="css">inherit</span> or <span class="css">initial</span>. Such a name @@ -10096,10 +10095,10 @@ <h4 class="heading settled" data-level="12.3.1" id="quotes-specify"><span class= quotations. Values have the following meanings:</p> <dl> <dt><dfn class="dfn-paneled css" data-dfn-for="quotes" data-dfn-type="value" data-export id="valdef-quotes-none">none</dfn> - <dd>The <a class="css" data-link-type="maybe" href="#value-def-open-quote" id="ref-for-value-def-open-quote">open-quote</a> and <a class="css" data-link-type="maybe" href="#value-def-close-quote" id="ref-for-value-def-close-quote">close-quote</a> values of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content⑧">content</a> property + <dd>The <span class="css">open-quote</span> and <span class="css">close-quote</span> values of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content⑧">content</a> property produce no quotation marks. <dt><dfn class="dfn-paneled css" data-dfn-for="quotes" data-dfn-type="value" data-export data-lt="[<string> <string>]+" id="valdef-quotes-strings">[<a class="production css" data-link-type="type" href="#value-def-string" id="ref-for-value-def-string④">&lt;string></a>  <span class="production" id="ref-for-value-def-string⑤">&lt;string></span>]+</dfn> - <dd>Values for the <a class="css" data-link-type="maybe" href="#value-def-open-quote" id="ref-for-value-def-open-quote①">open-quote</a> and <a class="css" data-link-type="maybe" href="#value-def-close-quote" id="ref-for-value-def-close-quote①">close-quote</a> values of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content⑨">content</a> property are taken + <dd>Values for the <span class="css">open-quote</span> and <span class="css">close-quote</span> values of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content⑨">content</a> property are taken from this list of pairs of quotation marks (opening and closing). The first (leftmost) pair represents the outermost level of quotation, the second pair the first level of embedding, etc. The user @@ -10216,17 +10215,17 @@ <h4 class="heading settled" data-level="12.3.1" id="quotes-specify"><span class= </div> <h4 class="heading settled" data-level="12.3.2" id="quotes-insert"><span class="secno">12.3.2. </span><span class="content">Inserting quotes with the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content①⓪">content</a> property</span><a class="self-link" href="#quotes-insert"></a></h4> <p>Quotation marks are inserted in appropriate places in a document -with the <a class="css" data-link-type="maybe" href="#value-def-open-quote" id="ref-for-value-def-open-quote②">open-quote</a>' -and <a class="css" data-link-type="maybe" href="#value-def-close-quote" id="ref-for-value-def-close-quote②">close-quote</a> values of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content①①">content</a> property. Each -occurrence of <span class="css" id="ref-for-value-def-open-quote③">open-quote</span> or <span class="css" id="ref-for-value-def-close-quote③">close-quote</span> is replaced by one of the +with the <span class="css">open-quote</span>' +and <span class="css">close-quote</span> values of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content①①">content</a> property. Each +occurrence of <span class="css">open-quote</span> or <span class="css">close-quote</span> is replaced by one of the strings from the value of <a class="property css" data-link-type="property" href="#propdef-quotes" id="ref-for-propdef-quotes⑤">quotes</a>, based on the depth of nesting. </p> - <p><a class="css" data-link-type="maybe" href="#value-def-open-quote" id="ref-for-value-def-open-quote④">open-quote</a> refers to the first of a pair of quotes, <a class="css" data-link-type="maybe" href="#value-def-close-quote" id="ref-for-value-def-close-quote④">close-quote</a> refers to the second. Which pair of quotes is used depends on the -nesting level of quotes: the number of occurrences of <span class="css" id="ref-for-value-def-open-quote⑤">open-quote</span> in + <p><span class="css">open-quote</span> refers to the first of a pair of quotes, <span class="css">close-quote</span> refers to the second. Which pair of quotes is used depends on the +nesting level of quotes: the number of occurrences of <span class="css">open-quote</span> in all generated text before the current occurrence, minus the number of -occurrences of <span class="css" id="ref-for-value-def-close-quote⑤">close-quote</span>. If the depth is 0, the first pair is +occurrences of <span class="css">close-quote</span>. If the depth is 0, the first pair is used, if the depth is 1, the second pair is used, etc. If the depth is -greater than the number of pairs, the last pair is repeated. A <span class="css" id="ref-for-value-def-close-quote⑥">close-quote</span> or <a class="css" data-link-type="maybe" href="#value-def-no-close-quote" id="ref-for-value-def-no-close-quote">no-close-quote</a> that would make the depth negative is in error and is +greater than the number of pairs, the last pair is repeated. A <span class="css">close-quote</span> or <span class="css">no-close-quote</span> that would make the depth negative is in error and is ignored (at rendering time): the depth stays at 0 and no quote mark is rendered (although the rest of the <a class="property css" data-link-type="property" href="#propdef-content" id="ref-for-propdef-content①②">content</a> property’s value is still inserted). </p> @@ -10238,7 +10237,7 @@ <h4 class="heading settled" data-level="12.3.2" id="quotes-insert"><span class=" before every paragraph of a quote spanning several paragraphs, but only the last paragraph ends with a closing quotation mark. In CSS, this can be achieved by inserting "phantom" closing quotes. The -keyword <a class="css" data-link-type="maybe" href="#value-def-no-close-quote" id="ref-for-value-def-no-close-quote①">no-close-quote</a> decrements +keyword <span class="css">no-close-quote</span> decrements the quoting level, but does not insert a quotation mark. </p> <div class="example" id="example-fcdd83bb"> <a class="self-link" href="#example-fcdd83bb"></a> @@ -10590,7 +10589,7 @@ <h4 class="heading settled" data-level="12.5.1" id="list-style"><span class="sec alpha, beta, gamma, ... (α, β, γ, ...) </dl> <p>This specification does not define how alphabetic systems wrap at -the end of the alphabet. For instance, after 26 list items, <a class="css" data-link-type="maybe" href="#value-def-lower-latin" id="ref-for-value-def-lower-latin">lower-latin</a> rendering is undefined. Therefore, for long lists, we +the end of the alphabet. For instance, after 26 list items, <span class="css">lower-latin</span> rendering is undefined. Therefore, for long lists, we recommend that authors specify true numbers. </p> <p>CSS 2 does not define how the list numbering is reset and incremented. This is expected to be defined in the CSS List Module <a data-link-type="biblio" href="#biblio-css3list" title="CSS Lists and Counters Module Level 3">[CSS3LIST]</a>. </p> @@ -10838,7 +10837,7 @@ <h4 class="heading settled" data-level="12.5.1" id="list-style"><span class="sec <c- p>&lt;/</c-><c- f>BODY</c-><c- p>></c-> <c- p>&lt;/</c-><c- f>HTML</c-><c- p>></c-> </pre> - <p>The desired rendering would have level 1 list items with <a class="css" data-link-type="maybe" href="#velue-def-lower-alpha" id="ref-for-velue-def-lower-alpha">lower-alpha</a> labels and level 2 items with <a class="css" data-link-type="maybe" href="#value-def-disc" id="ref-for-value-def-disc①">disc</a> labels. However, + <p>The desired rendering would have level 1 list items with <a class="css" data-link-type="maybe" href="#velue-def-lower-alpha" id="ref-for-velue-def-lower-alpha">lower-alpha</a> labels and level 2 items with <span class="css">disc</span> labels. However, the <a href="#cascading-order">cascading order</a> will cause the first style rule (which includes specific class information) to mask the second. The following rules solve the problem by employing @@ -10860,7 +10859,7 @@ <h4 class="heading settled" data-level="12.5.1" id="list-style"><span class="sec <p>A URI value may be combined with any other value, as in: </p> <pre class="lang-css highlight">ul <c- p>{</c-> <c- k>list-style</c-><c- p>:</c-> <c- nf>url</c-><c- p>(</c-><c- s>"http://png.com/ellipse.png"</c-><c- p>)</c-> disc <c- p>}</c-> </pre> - <p> In the example above, the <a class="css" data-link-type="maybe" href="#value-def-disc" id="ref-for-value-def-disc②">disc</a> will be used when the image is + <p> In the example above, the <span class="css">disc</span> will be used when the image is unavailable. </p> </div> <p>A value of <span class="css">none</span> within the <a class="property css" data-link-type="property" href="#propdef-list-style" id="ref-for-propdef-list-style⑤">list-style</a> property sets @@ -11165,7 +11164,7 @@ <h4 class="heading settled" data-level="13.3.1" id="page-break-props"><span clas over <a class="css" data-link-type="maybe" href="#valdef-page-break-avoid" id="ref-for-valdef-page-break-avoid">avoid</a>. </p> <p>User agents must apply these properties to block-level elements in the normal flow of the root element. User agents may also apply -these properties to other elements, e.g., <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row">table-row</a> elements. </p> +these properties to other elements, e.g., <span class="css">table-row</span> elements. </p> <p>When a page break splits a box, the box’s margins, borders, and padding have no visual effect where the split occurs. </p> <h4 class="heading settled" data-level="13.3.2" id="break-inside"><span class="secno">13.3.2. </span><span class="content">Breaks inside elements: <a class="property css" data-link-type="property" href="#propdef-orphans" id="ref-for-propdef-orphans">orphans</a>, <a class="property css" data-link-type="property" href="#propdef-widows" id="ref-for-propdef-widows">widows</a></span><a class="self-link" href="#break-inside"></a></h4> @@ -13323,47 +13322,47 @@ <h3 class="heading settled" data-level="17.2" id="table-display"><span class="se elements</dfn>; this is done with the <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display②⑤">display</a> property. The following <span class="property" id="ref-for-propdef-display②⑥">display</span> values assign table formatting rules to an arbitrary element: </p> <dl> - <dt><a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①">table</a> (In HTML: TABLE) + <dt><span class="css">table</span> (In HTML: TABLE) <dd>Specifies that an element defines a <a href="#block-level" id="ref-for-block-level①">block-level</a> table: it is a rectangular block that participates in a <a href="#block-formatting">block formatting context</a>. - <dt><a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table②">inline-table</a> (In + <dt><span class="css">inline-table</span> (In HTML: TABLE) <dd>Specifies that an element defines an <a href="#inline-level" id="ref-for-inline-level②">inline-level</a> table: it is a rectangular block that participates in an <a href="#inline-formatting">inline formatting context</a>). - <dt><a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row①">table-row</a> (In HTML: + <dt><span class="css">table-row</span> (In HTML: TR) <dd>Specifies that an element is a row of cells. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-row-group" id="ref-for-value-def-table-row-group">table-row-group</a> (In HTML: TBODY) + <dt><span class="css">table-row-group</span> (In HTML: TBODY) <dd>Specifies that an element groups one or more rows. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-header-group" id="ref-for-value-def-table-header-group">table-header-group</a> (In HTML: THEAD) - <dd>Like <a class="css" data-link-type="maybe" href="#value-def-table-row-group" id="ref-for-value-def-table-row-group①">table-row-group</a>, but for visual + <dt><span class="css">table-header-group</span> (In HTML: THEAD) + <dd>Like <span class="css">table-row-group</span>, but for visual formatting, the row group is always displayed before all other rows and row groups and after any top captions. Print user agents may repeat header rows on each page spanned by a table. If a table contains multiple elements with 'display: table-header-group', only the first is rendered as a header; the others are treated as if they had 'display: table-row-group'. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-footer-group" id="ref-for-value-def-table-footer-group">table-footer-group</a> (In HTML: TFOOT) - <dd>Like <a class="css" data-link-type="maybe" href="#value-def-table-row-group" id="ref-for-value-def-table-row-group②">table-row-group</a>, but for visual + <dt><span class="css">table-footer-group</span> (In HTML: TFOOT) + <dd>Like <span class="css">table-row-group</span>, but for visual formatting, the row group is always displayed after all other rows and row groups and before any bottom captions. Print user agents may repeat footer rows on each page spanned by a table. If a table contains multiple elements with 'display: table-footer-group', only the first is rendered as a footer; the others are treated as if they had 'display: table-row-group'. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column">table-column</a> (In + <dt><span class="css">table-column</span> (In HTML: COL) <dd>Specifies that an element describes a column of cells. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group">table-column-group</a> (In HTML: COLGROUP) + <dt><span class="css">table-column-group</span> (In HTML: COLGROUP) <dd>Specifies that an element groups one or more columns. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell①">table-cell</a> (In HTML: + <dt><span class="css">table-cell</span> (In HTML: TD, TH) <dd>Specifies that an element represents a table cell. - <dt><a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption">table-caption</a> (In + <dt><span class="css">table-caption</span> (In HTML: CAPTION) <dd>Specifies a caption for the table. All elements with 'display: table-caption' must be rendered, as described in <a href="#model">section 17.4.</a> @@ -13374,7 +13373,7 @@ <h3 class="heading settled" data-level="17.2" id="table-display"><span class="se dimensions might contribute towards the table sizing algorithms, as with an ordinary cell. </p> <p>Elements with <a class="property css" data-link-type="property" href="#propdef-display" id="ref-for-propdef-display②⑧">display</a> set -to <a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column①">table-column</a> or <a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group①">table-column-group</a> are not rendered (exactly as +to <span class="css">table-column</span> or <span class="css">table-column-group</span> are not rendered (exactly as if they had 'display: none'), but they are useful, because they may have attributes which induce a certain style for the columns they represent. </p> @@ -13400,20 +13399,20 @@ <h4 class="heading settled" data-level="17.2.1" id="anonymous-boxes"><span class elements must be assumed in order for the table model to work. Any table element will automatically generate necessary anonymous table objects around itself, consisting of at least three nested objects -corresponding to a <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table②">table</a>/<a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table③">inline-table</a> element, a <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row②">table-row</a> element, and a <a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell②">table-cell</a> element. Missing elements generate <a href="#anonymous" id="ref-for-anonymous②">anonymous</a> objects (e.g., anonymous +corresponding to a <span class="css">table</span>/<span class="css">inline-table</span> element, a <span class="css">table-row</span> element, and a <span class="css">table-cell</span> element. Missing elements generate <a href="#anonymous" id="ref-for-anonymous②">anonymous</a> objects (e.g., anonymous boxes in visual table layout) according to the following <dfn class="dfn-paneled" data-dfn-type="dfn" data-lt="rules on anonymous table objects" data-noexport id="rules-on-anonymous-table-objects">rules</dfn>: </p> <p>For the purposes of these rules, the following terms are defined: </p> <dl> <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="row-group-box">row group box</dfn> - <dd>A <a class="css" data-link-type="maybe" href="#value-def-table-row-group" id="ref-for-value-def-table-row-group③">table-row-group</a>, <a class="css" data-link-type="maybe" href="#value-def-table-header-group" id="ref-for-value-def-table-header-group①">table-header-group</a>, or <a class="css" data-link-type="maybe" href="#value-def-table-footer-group" id="ref-for-value-def-table-footer-group①">table-footer-group</a> + <dd>A <span class="css">table-row-group</span>, <span class="css">table-header-group</span>, or <span class="css">table-footer-group</span> <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="proper-table-child">proper table child</dfn> - <dd>A <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row③">table-row</a> box, row group box, <a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column②">table-column</a> box, <a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group②">table-column-group</a> box, or <a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption①">table-caption</a> box. + <dd>A <span class="css">table-row</span> box, row group box, <span class="css">table-column</span> box, <span class="css">table-column-group</span> box, or <span class="css">table-caption</span> box. <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="proper-table-row-parent">proper table row parent</dfn> - <dd>A <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table③">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table④">inline-table</a> box or row group box + <dd>A <span class="css">table</span> or <span class="css">inline-table</span> box or row group box <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="internal-table-box">internal table box</dfn> - <dd>A <a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell③">table-cell</a> box, <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row④">table-row</a> box, row group box, <a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column③">table-column</a> box, or <a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group③">table-column-group</a> box. + <dd>A <span class="css">table-cell</span> box, <span class="css">table-row</span> box, row group box, <span class="css">table-column</span> box, or <span class="css">table-column-group</span> box. <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="tabular-container">tabular container</dfn> - <dd>A <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row⑤">table-row</a> box or proper table row parent + <dd>A <span class="css">table-row</span> box or proper table row parent <dt><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="consecutive">consecutive</dfn> <dd>Two sibling boxes are consecutive if they have no intervening siblings other than, optionally, an anonymous inline containing @@ -13429,65 +13428,65 @@ <h4 class="heading settled" data-level="17.2.1" id="anonymous-boxes"><span class <li> Remove irrelevant boxes: <ol> - <li>All child boxes of a <a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column④">table-column</a> parent are treated as if + <li>All child boxes of a <span class="css">table-column</span> parent are treated as if they had 'display: none'. - <li>If a child <var>C</var> of a <a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group④">table-column-group</a> parent is - not a <a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column⑤">table-column</a> box, then it is treated as if it had + <li>If a child <var>C</var> of a <span class="css">table-column-group</span> parent is + not a <span class="css">table-column</span> box, then it is treated as if it had 'display: none'. <li>If a child <var>C</var> of a tabular container <var>P</var> is an anonymous inline box that contains only white space, and its immediately preceding and following siblings, if any, are proper table descendants of <var>P</var> and are - either <a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption②">table-caption</a> or internal table boxes, then it is + either <span class="css">table-caption</span> or internal table boxes, then it is treated as if it had 'display: none'. A box <var>D</var> is a proper table descendant of <var>A</var> if <var>D</var> can be a descendant of <var>A</var> without causing the - generation of any intervening <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table④">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table⑤">inline-table</a> boxes. + generation of any intervening <span class="css">table</span> or <span class="css">inline-table</span> boxes. <li>If a box <var>B</var> is an anonymous inline containing only white space, and is between two immediate siblings each of - which is either an internal table box or a <a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption③">table-caption</a> box then <var>B</var> is treated as if it had 'display: + which is either an internal table box or a <span class="css">table-caption</span> box then <var>B</var> is treated as if it had 'display: none'. </ol> <li> Generate missing child wrappers: <ol> - <li>If a child <var>C</var> of a <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table⑤">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table⑥">inline-table</a> box - is not a proper table child, then generate an anonymous <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row⑥">table-row</a> box around <var>C</var> and all consecutive + <li>If a child <var>C</var> of a <span class="css">table</span> or <span class="css">inline-table</span> box + is not a proper table child, then generate an anonymous <span class="css">table-row</span> box around <var>C</var> and all consecutive siblings of <var>C</var> that are not proper table children. - <li>If a child <var>C</var> of a row group box is not a <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row⑦">table-row</a> box, then generate an anonymous <span class="css" id="ref-for-value-def-table-row⑧">table-row</span> box + <li>If a child <var>C</var> of a row group box is not a <span class="css">table-row</span> box, then generate an anonymous <span class="css">table-row</span> box around <var>C</var> and all consecutive siblings - of <var>C</var> that are not <span class="css" id="ref-for-value-def-table-row⑨">table-row</span> boxes. - <li>If a child <var>C</var> of a <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row①⓪">table-row</a> box is not a <a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell④">table-cell</a>, then generate an anonymous <span class="css" id="ref-for-value-def-table-cell⑤">table-cell</span> box + of <var>C</var> that are not <span class="css">table-row</span> boxes. + <li>If a child <var>C</var> of a <span class="css">table-row</span> box is not a <span class="css">table-cell</span>, then generate an anonymous <span class="css">table-cell</span> box around <var>C</var> and all consecutive siblings - of <var>C</var> that are not <span class="css" id="ref-for-value-def-table-cell⑥">table-cell</span> boxes. + of <var>C</var> that are not <span class="css">table-cell</span> boxes. </ol> <li> Generate missing parents: <ol> - <li>For each <a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell⑦">table-cell</a> box <var>C</var> in a sequence of - consecutive internal table and <a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption④">table-caption</a> siblings, - if <var>C</var>’s parent is not a <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row①①">table-row</a> then generate - an anonymous <span class="css" id="ref-for-value-def-table-row①②">table-row</span> box around <var>C</var> and all - consecutive siblings of <var>C</var> that are <span class="css" id="ref-for-value-def-table-cell⑧">table-cell</span> boxes. + <li>For each <span class="css">table-cell</span> box <var>C</var> in a sequence of + consecutive internal table and <span class="css">table-caption</span> siblings, + if <var>C</var>’s parent is not a <span class="css">table-row</span> then generate + an anonymous <span class="css">table-row</span> box around <var>C</var> and all + consecutive siblings of <var>C</var> that are <span class="css">table-cell</span> boxes. <li> For each proper table child <var>C</var> in a sequence of consecutive proper table children, if <var>C</var> is - misparented then generate an anonymous <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table⑥">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table⑦">inline-table</a> box <var>T</var> around <var>C</var> and all + misparented then generate an anonymous <span class="css">table</span> or <span class="css">inline-table</span> box <var>T</var> around <var>C</var> and all consecutive siblings of <var>C</var> that are proper table children. (If C’s parent is an <a class="css" data-link-type="maybe" href="#value-def-inline" id="ref-for-value-def-inline④">inline</a> box, - then <var>T</var> must be an <span class="css" id="ref-for-value-def-inline-table⑧">inline-table</span> box; otherwise - it must be a <span class="css" id="ref-for-value-def-table⑦">table</span> box.) + then <var>T</var> must be an <span class="css">inline-table</span> box; otherwise + it must be a <span class="css">table</span> box.) <ul> - <li>A <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row①③">table-row</a> is misparented if its parent is neither - a row group box nor a <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table⑧">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table⑨">inline-table</a> box. - <li>A <a class="css" data-link-type="maybe" href="#value-def-table-column" id="ref-for-value-def-table-column⑥">table-column</a> box is misparented if its parent is - neither a <a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group⑤">table-column-group</a> box nor a <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table⑨">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①⓪">inline-table</a> box. - <li>A row group box, <a class="css" data-link-type="maybe" href="#value-def-table-column-group" id="ref-for-value-def-table-column-group⑥">table-column-group</a> box, or <a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption⑤">table-caption</a> box is misparented if its parent is - neither a <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①⓪">table</a> box nor an <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①①">inline-table</a> box. + <li>A <span class="css">table-row</span> is misparented if its parent is neither + a row group box nor a <span class="css">table</span> or <span class="css">inline-table</span> box. + <li>A <span class="css">table-column</span> box is misparented if its parent is + neither a <span class="css">table-column-group</span> box nor a <span class="css">table</span> or <span class="css">inline-table</span> box. + <li>A row group box, <span class="css">table-column-group</span> box, or <span class="css">table-caption</span> box is misparented if its parent is + neither a <span class="css">table</span> box nor an <span class="css">inline-table</span> box. </ul> </ol> </ol> <div class="example" id="example-85a18d46"> <a class="self-link" href="#example-85a18d46"></a> - <p>In this XML example, a <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①①">table</a> element is assumed to contain the + <p>In this XML example, a <span class="css">table</span> element is assumed to contain the HBOX element: </p> <pre class="example lang-xml highlight" id="example-0f825913"><a class="self-link" href="#example-0f825913"></a><c- f>&lt;HBOX></c-> <c- f>&lt;VBOX></c->George<c- f>&lt;/VBOX></c-> @@ -13502,7 +13501,7 @@ <h4 class="heading settled" data-level="17.2.1" id="anonymous-boxes"><span class </div> <div class="example" id="example-0d46467c"> <a class="self-link" href="#example-0d46467c"></a> - <p>In this example, three <a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell⑨">table-cell</a> elements are assumed to contain + <p>In this example, three <span class="css">table-cell</span> elements are assumed to contain the text in the ROWs. Note that the text is further encapsulated in anonymous inline boxes, as explained in <a href="#anonymous" id="ref-for-anonymous③">visual formatting model</a>: </p> <pre class="example lang-xml highlight" id="example-1d49c07c"><a class="self-link" href="#example-1d49c07c"></a><c- f>&lt;STACK></c-> @@ -13576,7 +13575,7 @@ <h3 class="heading settled" data-level="17.4" id="model"><span class="secno">17. an <a class="css" data-link-type="maybe" href="#value-def-inline-block" id="ref-for-value-def-inline-block①①">inline-block</a> box if the table is inline-level. The table wrapper box establishes a block formatting context. The table grid box (not the table wrapper box) is used when doing baseline -vertical alignment for an <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①②">inline-table</a>. The width of the table wrapper +vertical alignment for an <span class="css">inline-table</span>. The width of the table wrapper box is the border-edge width of the table grid box inside it, as described by section 17.5.2. Percentages on <a class="property css" data-link-type="property" href="#propdef-width" id="ref-for-propdef-width④⑨">width</a> and <a class="property css" data-link-type="property" href="#propdef-height" id="ref-for-propdef-height④⓪">height</a> on the table are relative to the table wrapper box’s containing block, not the table wrapper box @@ -13604,7 +13603,7 @@ <h4 class="heading settled" data-level="17.4.1" id="caption-position"><span clas <td>top <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td><a class="css" data-link-type="maybe" href="#value-def-table-caption" id="ref-for-value-def-table-caption⑥">table-caption</a> elements + <td><span class="css">table-caption</span> elements <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>yes @@ -13839,7 +13838,7 @@ <h4 class="heading settled" data-level="17.5.2" id="width-layout"><span class="s <td>auto <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td><a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①②">table</a> and <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①③">inline-table</a> elements + <td><span class="css">table</span> and <span class="css">inline-table</span> elements <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>no @@ -13969,13 +13968,13 @@ <h5 class="heading settled" data-level="17.5.2.2" id="auto-table-layout"><span c <p>Column and caption widths influence the final table width as follows: </p> <ol> - <li>If the <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①③">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①④">inline-table</a> element’s <a class="property css" data-link-type="property" href="#propdef-width" id="ref-for-propdef-width⑥①">width</a> property has a computed value + <li>If the <span class="css">table</span> or <span class="css">inline-table</span> element’s <a class="property css" data-link-type="property" href="#propdef-width" id="ref-for-propdef-width⑥①">width</a> property has a computed value (W) other than <a class="css" data-link-type="maybe" href="#valdef-width-auto" id="ref-for-valdef-width-auto①⑤">auto</a>, the used width is the greater of W, CAPMIN, and the minimum width required by all the columns plus cell spacing or borders (MIN). If the used width is greater than MIN, the extra width should be distributed over the columns. - <li>If the <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①④">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①⑤">inline-table</a> element has 'width: auto', + <li>If the <span class="css">table</span> or <span class="css">inline-table</span> element has 'width: auto', the used width is the greater of the table’s containing block width, CAPMIN, and MIN. However, if either CAPMIN or the maximum width required by the columns plus cell spacing or borders (MAX) is less @@ -13994,19 +13993,19 @@ <h5 class="heading settled" data-level="17.5.2.2" id="auto-table-layout"><span c </div> </div> <h4 class="heading settled" data-level="17.5.3" id="height-layout"><span class="secno">17.5.3. </span><span class="content">Table height algorithms</span><a class="self-link" href="#height-layout"></a></h4> - <p>The height of a table is given by the <a class="property css" data-link-type="property" href="#propdef-height" id="ref-for-propdef-height④①">height</a> property for the <a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①⑤">table</a> or <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①⑥">inline-table</a> element. A value of <a class="css" data-link-type="maybe" href="#valdef-height-auto" id="ref-for-valdef-height-auto①⓪">auto</a> means that the height is the + <p>The height of a table is given by the <a class="property css" data-link-type="property" href="#propdef-height" id="ref-for-propdef-height④①">height</a> property for the <span class="css">table</span> or <span class="css">inline-table</span> element. A value of <a class="css" data-link-type="maybe" href="#valdef-height-auto" id="ref-for-valdef-height-auto①⓪">auto</a> means that the height is the sum of the row heights plus any cell spacing or borders. Any other value is treated as a minimum height. CSS 2 does not define how extra space is distributed when the <span class="property" id="ref-for-propdef-height④②">height</span> property causes the table to be taller than it otherwise would be. </p> <p class="note" role="note"><em><strong>Note.</strong> Future updates of CSS may specify this further.</em> </p> - <p>The height of a <a class="css" data-link-type="maybe" href="#value-def-table-row" id="ref-for-value-def-table-row①④">table-row</a> element’s box is calculated once the + <p>The height of a <span class="css">table-row</span> element’s box is calculated once the user agent has all the cells in the row available: it is the maximum of the row’s computed <a class="property css" data-link-type="property" href="#propdef-height" id="ref-for-propdef-height④③">height</a>, the computed <span class="property" id="ref-for-propdef-height④④">height</span> of each cell in the row, -and the minimum height (MIN) required by the cells. A <span class="property" id="ref-for-propdef-height④⑤">height</span> value of <a class="css" data-link-type="maybe" href="#valdef-height-auto" id="ref-for-valdef-height-auto①①">auto</a> for a <span class="css" id="ref-for-value-def-table-row①⑤">table-row</span> means the row height used for layout is MIN. MIN depends +and the minimum height (MIN) required by the cells. A <span class="property" id="ref-for-propdef-height④⑤">height</span> value of <a class="css" data-link-type="maybe" href="#valdef-height-auto" id="ref-for-valdef-height-auto①①">auto</a> for a <span class="css">table-row</span> means the row height used for layout is MIN. MIN depends on cell box heights and cell box alignment (much like the calculation of a <a href="#line-height">line box</a> height). CSS 2 does not define how the height of table cells and table @@ -14129,7 +14128,7 @@ <h3 class="heading settled" data-level="17.6" id="borders"><span class="secno">1 <td>separate <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td><a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①⑥">table</a> and <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①⑦">inline-table</a> elements + <td><span class="css">table</span> and <span class="css">inline-table</span> elements <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>yes @@ -14161,7 +14160,7 @@ <h4 class="heading settled" data-level="17.6.1" id="separated-borders"><span cla <td>0 <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td><a class="css" data-link-type="maybe" href="#value-def-table" id="ref-for-value-def-table①⑦">table</a> and <a class="css" data-link-type="maybe" href="#value-def-inline-table" id="ref-for-value-def-inline-table①⑧">inline-table</a> elements* + <td><span class="css">table</span> and <span class="css">inline-table</span> elements* <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>yes @@ -14238,7 +14237,7 @@ <h5 class="heading settled" data-level="17.6.1.1" id="empty-cells"><span class=" <td>show <tr> <th><a href="https://www.w3.org/TR/css-cascade/#applies-to">Applies to:</a> - <td><a class="css" data-link-type="maybe" href="#value-def-table-cell" id="ref-for-value-def-table-cell①⓪">table-cell</a> elements + <td><span class="css">table-cell</span> elements <tr> <th><a href="https://www.w3.org/TR/css-cascade/#inherited-property">Inherited:</a> <td>yes @@ -14342,7 +14341,7 @@ <h5 class="heading settled" data-level="17.6.2.1" id="border-conflict-resolution <li>If none of the styles are <a class="css" data-link-type="maybe" href="#value-def-hidden" id="ref-for-value-def-hidden③">hidden</a> and at least one of them is not <a class="css" data-link-type="maybe" href="#value-def-bo-none" id="ref-for-value-def-bo-none⑥">none</a>, then narrow borders are discarded in favor of wider ones. If several have the same <a class="property css" data-link-type="property" href="#propdef-border-width" id="ref-for-propdef-border-width⑦">border-width</a> then styles are - preferred in this order: <a class="css" data-link-type="maybe" href="#value-def-double" id="ref-for-value-def-double">double</a>, <a class="css" data-link-type="maybe" href="#value-def-solid" id="ref-for-value-def-solid①">solid</a>, <a class="css" data-link-type="maybe" href="#value-def-dashed" id="ref-for-value-def-dashed">dashed</a>, <a class="css" data-link-type="maybe" href="#value-def-dotted" id="ref-for-value-def-dotted②">dotted</a>, <a class="css" data-link-type="maybe" href="#value-def-ridge" id="ref-for-value-def-ridge①">ridge</a>, <a class="css" data-link-type="maybe" href="#value-def-outset" id="ref-for-value-def-outset①">outset</a>, <a class="css" data-link-type="maybe" href="#value-def-groove" id="ref-for-value-def-groove②">groove</a>, and the lowest: <a class="css" data-link-type="maybe" href="#value-def-inset" id="ref-for-value-def-inset②">inset</a>. + preferred in this order: <a class="css" data-link-type="maybe" href="#value-def-double" id="ref-for-value-def-double">double</a>, <a class="css" data-link-type="maybe" href="#value-def-solid" id="ref-for-value-def-solid">solid</a>, <a class="css" data-link-type="maybe" href="#value-def-dashed" id="ref-for-value-def-dashed">dashed</a>, <a class="css" data-link-type="maybe" href="#value-def-dotted" id="ref-for-value-def-dotted">dotted</a>, <a class="css" data-link-type="maybe" href="#value-def-ridge" id="ref-for-value-def-ridge">ridge</a>, <a class="css" data-link-type="maybe" href="#value-def-outset" id="ref-for-value-def-outset">outset</a>, <a class="css" data-link-type="maybe" href="#value-def-groove" id="ref-for-value-def-groove">groove</a>, and the lowest: <a class="css" data-link-type="maybe" href="#value-def-inset" id="ref-for-value-def-inset">inset</a>. <li>If border styles differ only in color, then a style set on a cell wins over one on a row, which wins over a row group, column, column group and, lastly, table. When two elements of the same type @@ -14423,28 +14422,28 @@ <h4 class="heading settled" data-level="17.6.3" id="table-border-styles"><span c <dt><strong>*<a class="value-inst-hidden css" data-link-type="value" href="#value-def-hidden" id="ref-for-value-def-hidden④">hidden</a></strong> <dd>Same as <span class="css">none</span>, but in the <a href="#collapsing-borders">collapsing border model</a>, also inhibits any other border (see the section on <a href="#border-conflict-resolution">border conflicts</a>). - <dt><strong><a class="value-inst-dotted css" data-link-type="value" href="#value-def-dotted" id="ref-for-value-def-dotted③">dotted</a></strong> + <dt><strong><a class="value-inst-dotted css" data-link-type="value" href="#value-def-dotted" id="ref-for-value-def-dotted①">dotted</a></strong> <dd>The border is a series of dots. <dt><strong><a class="value-inst-dashed css" data-link-type="value" href="#value-def-dashed" id="ref-for-value-def-dashed①">dashed</a></strong> <dd>The border is a series of short line segments. - <dt><strong><a class="value-inst-solid css" data-link-type="value" href="#value-def-solid" id="ref-for-value-def-solid②">solid</a></strong> + <dt><strong><a class="value-inst-solid css" data-link-type="value" href="#value-def-solid" id="ref-for-value-def-solid①">solid</a></strong> <dd>The border is a single line segment. <dt><strong><a class="value-inst-double css" data-link-type="value" href="#value-def-double" id="ref-for-value-def-double①">double</a></strong> <dd>The border is two solid lines. The sum of the two lines and the space between them equals the value of <a class="property css" data-link-type="property" href="#propdef-border-width" id="ref-for-propdef-border-width⑧">border-width</a>. - <dt><strong><a class="value-inst-groove css" data-link-type="value" href="#value-def-groove" id="ref-for-value-def-groove③">groove</a></strong> + <dt><strong><a class="value-inst-groove css" data-link-type="value" href="#value-def-groove" id="ref-for-value-def-groove①">groove</a></strong> <dd>The border looks as though it were carved into the canvas. - <dt><strong><a class="value-inst-ridge css" data-link-type="value" href="#value-def-ridge" id="ref-for-value-def-ridge②">ridge</a></strong> - <dd>The opposite of <a class="css" data-link-type="maybe" href="#value-def-groove" id="ref-for-value-def-groove④">groove</a>: the border looks as though it were + <dt><strong><a class="value-inst-ridge css" data-link-type="value" href="#value-def-ridge" id="ref-for-value-def-ridge①">ridge</a></strong> + <dd>The opposite of <span class="css">groove</span>: the border looks as though it were coming out of the canvas. - <dt><strong>*<a class="value-inst-inset css" data-link-type="value" href="#value-def-inset" id="ref-for-value-def-inset③">inset</a></strong> + <dt><strong>*<a class="value-inst-inset css" data-link-type="value" href="#value-def-inset" id="ref-for-value-def-inset①">inset</a></strong> <dd>In the <a data-link-type="dfn" href="#separated-borders-model" id="ref-for-separated-borders-model④">separated borders model</a>, the border makes the entire box look as though it were - embedded in the canvas. In the <a href="#collapsing-borders">collapsing border model</a>, drawn the same as <a class="css" data-link-type="maybe" href="#value-def-ridge" id="ref-for-value-def-ridge③">ridge</a>. - <dt><strong>*<a class="value-inst-outset css" data-link-type="value" href="#value-def-outset" id="ref-for-value-def-outset②">outset</a></strong> + embedded in the canvas. In the <a href="#collapsing-borders">collapsing border model</a>, drawn the same as <span class="css">ridge</span>. + <dt><strong>*<a class="value-inst-outset css" data-link-type="value" href="#value-def-outset" id="ref-for-value-def-outset①">outset</a></strong> <dd>In the <a data-link-type="dfn" href="#separated-borders-model" id="ref-for-separated-borders-model⑤">separated borders model</a>, the border makes the entire box look as though it were - coming out of the canvas. In the <a href="#collapsing-borders">collapsing border model</a>, drawn the same as <a class="css" data-link-type="maybe" href="#value-def-groove" id="ref-for-value-def-groove⑤">groove</a>. + coming out of the canvas. In the <a href="#collapsing-borders">collapsing border model</a>, drawn the same as <span class="css">groove</span>. </dl> <h2 class="heading settled" data-level="18" id="ui"><span class="secno">18. </span><span class="content"><span id="q18.0">User interface</span></span><a class="self-link" href="#ui"></a></h2> <h3 class="heading settled" data-level="18.1" id="cursor-props"><span class="secno">18.1. </span><span class="content">Cursors: the <a class="property css" data-link-type="property" href="#propdef-cursor" id="ref-for-propdef-cursor">cursor</a> property</span><a class="self-link" href="#cursor-props"></a></h3> @@ -14758,13 +14757,13 @@ <h3 class="heading settled" data-level="18.4" id="dynamic-outlines"><span class= <p>The <a class="property css" data-link-type="property" href="#propdef-outline-width" id="ref-for-propdef-outline-width①">outline-width</a> property accepts the same values as <a class="property css" data-link-type="property" href="#propdef-border-width" id="ref-for-propdef-border-width⑨">border-width</a>. </p> <p>The <a class="property css" data-link-type="property" href="#propdef-outline-style" id="ref-for-propdef-outline-style①">outline-style</a> property accepts the same values as <a class="property css" data-link-type="property" href="#propdef-border-style" id="ref-for-propdef-border-style④">border-style</a>, except that <a class="css" data-link-type="maybe" href="#value-def-hidden" id="ref-for-value-def-hidden⑤">hidden</a> is not a legal outline style. </p> - <p>The <a class="property css" data-link-type="property" href="#propdef-outline-color" id="ref-for-propdef-outline-color①">outline-color</a> accepts all colors, as well as the keyword <dfn class="dfn-paneled css" data-dfn-for="outline-color" data-dfn-type="value" data-export id="value-def-invert">invert</dfn>. <a class="css" data-link-type="maybe" href="#value-def-invert" id="ref-for-value-def-invert">invert</a> is expected to + <p>The <a class="property css" data-link-type="property" href="#propdef-outline-color" id="ref-for-propdef-outline-color①">outline-color</a> accepts all colors, as well as the keyword <dfn class="dfn-paneled css" data-dfn-for="outline-color" data-dfn-type="value" data-export id="value-def-invert">invert</dfn>. <span class="css">invert</span> is expected to perform a color inversion on the pixels on the screen. This is a common trick to ensure the focus border is visible, regardless of color background. </p> - <p> Conformant UAs may ignore the <a class="css" data-link-type="maybe" href="#value-def-invert" id="ref-for-value-def-invert①">invert</a> value on platforms that do not + <p> Conformant UAs may ignore the <span class="css">invert</span> value on platforms that do not support color inversion of the pixels on the screen. If the UA does not -support the <span class="css" id="ref-for-value-def-invert②">invert</span> value then the initial value of the <a class="property css" data-link-type="property" href="#propdef-outline-color" id="ref-for-propdef-outline-color②">outline-color</a> property is the value of the <a class="property css" data-link-type="property" href="#propdef-color" id="ref-for-propdef-color①⑧">color</a> property, similar to the initial value +support the <span class="css">invert</span> value then the initial value of the <a class="property css" data-link-type="property" href="#propdef-outline-color" id="ref-for-propdef-outline-color②">outline-color</a> property is the value of the <a class="property css" data-link-type="property" href="#propdef-color" id="ref-for-propdef-color①⑧">color</a> property, similar to the initial value of the <a class="property css" data-link-type="property" href="#propdef-border-top-color" id="ref-for-propdef-border-top-color③">border-top-color</a> property. </p> <p>The <a class="property css" data-link-type="property" href="#propdef-outline" id="ref-for-propdef-outline①">outline</a> property is a shorthand property, and sets all three of <a class="property css" data-link-type="property" href="#propdef-outline-style" id="ref-for-propdef-outline-style②">outline-style</a>, <a class="property css" data-link-type="property" href="#propdef-outline-width" id="ref-for-propdef-outline-width②">outline-width</a>, and <a class="property css" data-link-type="property" href="#propdef-outline-color" id="ref-for-propdef-outline-color③">outline-color</a>. </p> @@ -14818,7 +14817,7 @@ <h3 class="heading settled" data-level="18.5" id="magnification"><span class="se page, a user agent should keep the text within the comic strip balloon. </p> <section class="non-normative"> <h2 class="no-toc heading settled" id="aural"><span class="content"><span id="q19.0">Appendix A: Aural style sheets</span></span><a class="self-link" href="#aural"></a></h2> - <p> <span id="angles"></span> <span id="aural-intro"></span> <span id="aural-media-group"></span> <span id="aural-tables"></span> <span id="cue-props"></span> <span id="Emacspeak"></span> <span id="frequencies"></span> <span id="img-table1"></span> <span id="mixing-props"></span> <span id="pause-props"></span> <span id="propdef-azimuth"></span> <span id="propdef-cue"></span> <span id="propdef-cue-after"></span> <span id="propdef-cue-before"></span> <span id="propdef-elevation"></span> <span id="propdef-pause"></span> <span id="propdef-pause-after"></span> <span id="propdef-pause-before"></span> <span id="propdef-pitch"></span> <span id="propdef-pitch-range"></span> <span id="propdef-play-during"></span> <span id="propdef-richness"></span> <span id="propdef-speak"></span> <span id="propdef-speak-header"></span> <span id="propdef-speak-numeral"></span> <span id="propdef-speak-punctuation"></span> <span id="propdef-speech-rate"></span> <span id="propdef-stress"></span> <span id="propdef-voice-family"></span> <span id="propdef-volume"></span> <span id="sample"></span> <span id="spatial-props"></span> <span id="speak-headers"></span> <span id="speaking-props"></span> <span id="speech-props"></span> <span id="times"></span> <span id="value-def-angle"></span> <span id="value-def-frequency"></span> <span id="value-def-generic-voice"></span> <span id="value-def-specific-voice"></span> <span id="value-def-time"></span> <span id="voice-char-props"></span> <span id="volume-props"></span> Earlier revisions of CSS2 defined an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-aural" id="ref-for-valdef-media-aural①">aural</a> media type and various properties that applied to it. <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module">[CSS-SPEECH-1]</a> represents more recent work for the same use-cases. </p> + <p> <span id="angles"></span> <span id="aural-intro"></span> <span id="aural-media-group"></span> <span id="aural-tables"></span> <span id="cue-props"></span> <span id="Emacspeak"></span> <span id="frequencies"></span> <span id="img-table1"></span> <span id="mixing-props"></span> <span id="pause-props"></span> <span id="propdef-azimuth"></span> <span id="propdef-cue"></span> <span id="propdef-cue-after"></span> <span id="propdef-cue-before"></span> <span id="propdef-elevation"></span> <span id="propdef-pause"></span> <span id="propdef-pause-after"></span> <span id="propdef-pause-before"></span> <span id="propdef-pitch"></span> <span id="propdef-pitch-range"></span> <span id="propdef-play-during"></span> <span id="propdef-richness"></span> <span id="propdef-speak"></span> <span id="propdef-speak-header"></span> <span id="propdef-speak-numeral"></span> <span id="propdef-speak-punctuation"></span> <span id="propdef-speech-rate"></span> <span id="propdef-stress"></span> <span id="propdef-voice-family"></span> <span id="propdef-volume"></span> <span id="sample"></span> <span id="spatial-props"></span> <span id="speak-headers"></span> <span id="speaking-props"></span> <span id="speech-props"></span> <span id="times"></span> <span id="value-def-angle"></span> <span id="value-def-frequency"></span> <span id="value-def-generic-voice"></span> <span id="value-def-specific-voice"></span> <span id="value-def-time"></span> <span id="voice-char-props"></span> <span id="volume-props"></span> Earlier revisions of CSS2 defined an <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-aural" id="ref-for-valdef-media-aural①">aural</a> media type and various properties that applied to it. <a data-link-type="biblio" href="#biblio-css-speech-1" title="CSS Speech Module Level 1">[CSS-SPEECH-1]</a> represents more recent work for the same use-cases. </p> </section> <h2 class="heading settled" id="references"><span class="content"><span id="q20.0">Appendix B: Bibliography</span></span><a class="self-link" href="#references"></a></h2> <div data-fill-with="references"> @@ -14828,7 +14827,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-colorimetry">[COLORIMETRY] <dd><a href="http://www.cie.co.at/publications/colorimetry-4th-edition"><cite>Colorimetry, Fourth Edition. CIE 015:2018</cite></a>. 2018. URL: <a href="http://www.cie.co.at/publications/colorimetry-4th-edition">http://www.cie.co.at/publications/colorimetry-4th-edition</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-style-attr">[CSS-STYLE-ATTR] <dd>Tantek Çelik; Elika Etemad. <a href="https://drafts.csswg.org/css-style-attr/"><cite>CSS Style Attributes</cite></a>. URL: <a href="https://drafts.csswg.org/css-style-attr/">https://drafts.csswg.org/css-style-attr/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] @@ -14838,7 +14837,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3list">[CSS3LIST] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-flex">[FLEX] - <dd><cite>Flex: The Lexical Scanner Generator.</cite> Version 2.3.7, ISBN 1882114213 + <dd><cite>Flex: The Lexical Scanner Generator (Version 2.3.7)</cite>. <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-html401">[HTML401] @@ -14862,7 +14861,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-uaag10">[UAAG10] <dd>Ian Jacobs; Jon Gunderson; Eric Hansen. <a href="https://www.w3.org/TR/UAAG10/"><cite>User Agent Accessibility Guidelines 1.0</cite></a>. 17 December 2002. REC. URL: <a href="https://www.w3.org/TR/UAAG10/">https://www.w3.org/TR/UAAG10/</a> <dt id="biblio-uax9">[UAX9] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-unicode">[UNICODE] <dd><a href="https://www.unicode.org/versions/latest/"><cite>The Unicode Standard</cite></a>. URL: <a href="https://www.unicode.org/versions/latest/">https://www.unicode.org/versions/latest/</a> <dt id="biblio-xml10">[XML10] @@ -14879,7 +14878,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css1">[CSS1] <dd>Håkon Wium Lie; Bert Bos. <a href="https://www.w3.org/TR/CSS1/"><cite>Cascading Style Sheets, level 1</cite></a>. 13 September 2018. REC. URL: <a href="https://www.w3.org/TR/CSS1/">https://www.w3.org/TR/CSS1/</a> <dt id="biblio-css20">[CSS20] @@ -16367,7 +16366,7 @@ <h3 class="heading settled" id="grammar"><span class="content">Grammar</span><a ; </pre> <h3 class="heading settled" id="scanner"><span class="content">Lexical scanner</span><a class="self-link" href="#scanner"></a></h3> - <p> The following is the <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="tokenizer">tokenizer</dfn>, written in Flex (see <a data-link-type="biblio" href="#biblio-flex" title="Flex: The Lexical Scanner Generator.">[FLEX]</a>) + <p> The following is the <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="tokenizer">tokenizer</dfn>, written in Flex (see <a data-link-type="biblio" href="#biblio-flex" title="Flex: The Lexical Scanner Generator (Version 2.3.7)">[FLEX]</a>) notation. The tokenizer is case-insensitive. </p> <p>The "\377" represents the highest character number that current versions of Flex can deal with (decimal 255). It @@ -17412,6 +17411,22 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="propdef-caption-side"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/caption-side" title="The caption-side CSS property puts the content of a table&apos;s <caption> on the specified side. The values are relative to the writing-mode of the table.">caption-side</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>4+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>8+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="propdef-clear"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -17492,22 +17507,6 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="visibility"> - <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/visibility" title="The visibility CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a <table>.">visibility</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> - <hr> - <span class="opera yes"><span>Opera</span><span>4+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>4+</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> - </div> - </div> - </details> <details class="mdn-anno unpositioned" data-anno-for="z-index"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -18227,57 +18226,57 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e "value-def-border-width": {"dfnID":"value-def-border-width","dfnText":"<border-width>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-border-width"},{"id":"ref-for-value-def-border-width\u2460"}],"title":"8.5.1. Border width: border-top-width, border-right-width, border-bottom-width,\nborder-left-width, and\nborder-width"},{"refs":[{"id":"ref-for-value-def-border-width\u2461"},{"id":"ref-for-value-def-border-width\u2462"}],"title":"8.5.4. Border shorthand properties:\nborder-top,\nborder-right,\nborder-bottom,\nborder-left, and\nborder"},{"refs":[{"id":"ref-for-value-def-border-width\u2463"}],"title":"18.4. Dynamic outlines: the outline property"}],"url":"#value-def-border-width"}, "value-def-bottom": {"dfnID":"value-def-bottom","dfnText":"<bottom>","external":false,"refSections":[],"url":"#value-def-bottom"}, "value-def-circle": {"dfnID":"value-def-circle","dfnText":"circle","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-circle"}],"title":"12.4.2. Counter styles"}],"url":"#value-def-circle"}, -"value-def-close-quote": {"dfnID":"value-def-close-quote","dfnText":"close-quote","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-close-quote"},{"id":"ref-for-value-def-close-quote\u2460"}],"title":"12.3.1. Specifying quotes with the quotes property"},{"refs":[{"id":"ref-for-value-def-close-quote\u2461"},{"id":"ref-for-value-def-close-quote\u2462"},{"id":"ref-for-value-def-close-quote\u2463"},{"id":"ref-for-value-def-close-quote\u2464"},{"id":"ref-for-value-def-close-quote\u2465"}],"title":"12.3.2. Inserting quotes with the content property"}],"url":"#value-def-close-quote"}, +"value-def-close-quote": {"dfnID":"value-def-close-quote","dfnText":"close-quote","external":false,"refSections":[],"url":"#value-def-close-quote"}, "value-def-color": {"dfnID":"value-def-color","dfnText":"<color>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-color"},{"id":"ref-for-value-def-color\u2460"},{"id":"ref-for-value-def-color\u2461"}],"title":"8.5.2. Border color:\nborder-top-color,\nborder-right-color,\nborder-bottom-color,\nborder-left-color, and\nborder-color\n"},{"refs":[{"id":"ref-for-value-def-color\u2462"}],"title":"14.1. Foreground color: the color property"},{"refs":[{"id":"ref-for-value-def-color\u2463"},{"id":"ref-for-value-def-color\u2464"}],"title":"14.2.1. Background properties: background-color, background-image, background-repeat, background-attachment,\nbackground-position, and\nbackground\n"},{"refs":[{"id":"ref-for-value-def-color\u2465"}],"title":"18.4. Dynamic outlines: the outline property"}],"url":"#value-def-color"}, "value-def-counter": {"dfnID":"value-def-counter","dfnText":"Counters","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-counter"},{"id":"ref-for-value-def-counter\u2460"}],"title":"12.2. The content property"}],"url":"#value-def-counter"}, "value-def-dashed": {"dfnID":"value-def-dashed","dfnText":"dashed","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-dashed"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-dashed\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-dashed"}, -"value-def-decimal": {"dfnID":"value-def-decimal","dfnText":"decimal","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-decimal"}],"title":"4.3.5. Counters"},{"refs":[{"id":"ref-for-value-def-decimal\u2460"},{"id":"ref-for-value-def-decimal\u2461"}],"title":"12.2. The content property"}],"url":"#value-def-decimal"}, +"value-def-decimal": {"dfnID":"value-def-decimal","dfnText":"decimal","external":false,"refSections":[],"url":"#value-def-decimal"}, "value-def-decimal-leading-zero": {"dfnID":"value-def-decimal-leading-zero","dfnText":"decimal-leading-zero","external":false,"refSections":[],"url":"#value-def-decimal-leading-zero"}, -"value-def-disc": {"dfnID":"value-def-disc","dfnText":"disc","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-disc"}],"title":"12.4.2. Counter styles"},{"refs":[{"id":"ref-for-value-def-disc\u2460"},{"id":"ref-for-value-def-disc\u2461"}],"title":"12.5.1. Lists: the list-style-type, list-style-image, list-style-position, and\nlist-style properties"}],"url":"#value-def-disc"}, -"value-def-dotted": {"dfnID":"value-def-dotted","dfnText":"dotted","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-dotted"}],"title":"3.1. Definitions"},{"refs":[{"id":"ref-for-value-def-dotted\u2460"}],"title":"8.5.3. Border style:\nborder-top-style,\nborder-right-style,\nborder-bottom-style,\nborder-left-style, and\nborder-style"},{"refs":[{"id":"ref-for-value-def-dotted\u2461"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-dotted\u2462"}],"title":"17.6.3. Border styles"}],"url":"#value-def-dotted"}, +"value-def-disc": {"dfnID":"value-def-disc","dfnText":"disc","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-disc"}],"title":"12.4.2. Counter styles"}],"url":"#value-def-disc"}, +"value-def-dotted": {"dfnID":"value-def-dotted","dfnText":"dotted","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-dotted"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-dotted\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-dotted"}, "value-def-double": {"dfnID":"value-def-double","dfnText":"double","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-double"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-double\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-double"}, "value-def-family-name": {"dfnID":"value-def-family-name","dfnText":"<family-name>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-family-name"},{"id":"ref-for-value-def-family-name\u2460"},{"id":"ref-for-value-def-family-name\u2461"}],"title":"15.3. Font family: the font-family property"}],"url":"#value-def-family-name"}, "value-def-generic-family": {"dfnID":"value-def-generic-family","dfnText":"<generic-family>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-generic-family"},{"id":"ref-for-value-def-generic-family\u2460"}],"title":"15.3. Font family: the font-family property"}],"url":"#value-def-generic-family"}, "value-def-georgian": {"dfnID":"value-def-georgian","dfnText":"georgian","external":false,"refSections":[],"url":"#value-def-georgian"}, -"value-def-groove": {"dfnID":"value-def-groove","dfnText":"groove","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-groove"},{"id":"ref-for-value-def-groove\u2460"}],"title":"8.5.3. Border style:\nborder-top-style,\nborder-right-style,\nborder-bottom-style,\nborder-left-style, and\nborder-style"},{"refs":[{"id":"ref-for-value-def-groove\u2461"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-groove\u2462"},{"id":"ref-for-value-def-groove\u2463"},{"id":"ref-for-value-def-groove\u2464"}],"title":"17.6.3. Border styles"}],"url":"#value-def-groove"}, +"value-def-groove": {"dfnID":"value-def-groove","dfnText":"groove","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-groove"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-groove\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-groove"}, "value-def-hidden": {"dfnID":"value-def-hidden","dfnText":"hidden","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-hidden"}],"title":"8.5.1. Border width: border-top-width, border-right-width, border-bottom-width,\nborder-left-width, and\nborder-width"},{"refs":[{"id":"ref-for-value-def-hidden\u2460"},{"id":"ref-for-value-def-hidden\u2461"},{"id":"ref-for-value-def-hidden\u2462"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-hidden\u2463"}],"title":"17.6.3. Border styles"},{"refs":[{"id":"ref-for-value-def-hidden\u2464"}],"title":"18.4. Dynamic outlines: the outline property"}],"url":"#value-def-hidden"}, "value-def-identifier": {"dfnID":"value-def-identifier","dfnText":"identifiers","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"4.1.2. Keywords"},{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"4.1.3. Characters and case"},{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"4.1.5. \nAt-rules"},{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"4.1.8. Declarations and properties"},{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"12.2. The content property"},{"refs":[{"id":"ref-for-value-def-identifier\u2460"},{"id":"ref-for-value-def-identifier\u2461"}],"title":"12.4. Automatic counters and numbering"},{"refs":[{"id":"ref-for-value-def-identifier"}],"title":"15.3. Font family: the font-family property"}],"url":"#value-def-identifier"}, "value-def-inline": {"dfnID":"value-def-inline","dfnText":"inline","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-inline"},{"id":"ref-for-value-def-inline\u2460"}],"title":"9.2.2. Inline-level elements and inline boxes"},{"refs":[{"id":"ref-for-value-def-inline\u2461"}],"title":"9.2.4. The display property"},{"refs":[{"id":"ref-for-value-def-inline\u2462"}],"title":"12.1. The :before and :after\npseudo-elements"},{"refs":[{"id":"ref-for-value-def-inline\u2463"}],"title":"17.2.1. Anonymous table objects"}],"url":"#value-def-inline"}, "value-def-inline-block": {"dfnID":"value-def-inline-block","dfnText":"inline-block","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-inline-block"}],"title":"9.2.2. Inline-level elements and inline boxes"},{"refs":[{"id":"ref-for-value-def-inline-block\u2460"},{"id":"ref-for-value-def-inline-block\u2461"}],"title":"10.3. Calculating widths and\nmargins"},{"refs":[{"id":"ref-for-value-def-inline-block\u2462"}],"title":"10.3.9. inline-block, non-replaced elements in normal flow"},{"refs":[{"id":"ref-for-value-def-inline-block\u2463"}],"title":"10.3.10. inline-block, replaced elements in normal flow"},{"refs":[{"id":"ref-for-value-def-inline-block\u2464"},{"id":"ref-for-value-def-inline-block\u2465"}],"title":"10.6. Calculating heights and\nmargins"},{"refs":[{"id":"ref-for-value-def-inline-block\u2466"}],"title":"10.6.2. Inline replaced elements,\nblock-level replaced elements in normal flow, inline-block replaced\nelements in normal flow and floating replaced elements"},{"refs":[{"id":"ref-for-value-def-inline-block\u2467"},{"id":"ref-for-value-def-inline-block\u2468"}],"title":"10.6.6. Complicated cases"},{"refs":[{"id":"ref-for-value-def-inline-block\u2460\u24ea"}],"title":"10.8.1. Leading and half-leading"},{"refs":[{"id":"ref-for-value-def-inline-block\u2460\u2460"}],"title":"17.4. Tables in the visual formatting model"}],"url":"#value-def-inline-block"}, -"value-def-inline-table": {"dfnID":"value-def-inline-table","dfnText":"inline-table","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-inline-table"}],"title":"9.2.2. Inline-level elements and inline boxes"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460"}],"title":"10.8.1. Leading and half-leading"},{"refs":[{"id":"ref-for-value-def-inline-table\u2461"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-inline-table\u2462"},{"id":"ref-for-value-def-inline-table\u2463"},{"id":"ref-for-value-def-inline-table\u2464"},{"id":"ref-for-value-def-inline-table\u2465"},{"id":"ref-for-value-def-inline-table\u2466"},{"id":"ref-for-value-def-inline-table\u2467"},{"id":"ref-for-value-def-inline-table\u2468"},{"id":"ref-for-value-def-inline-table\u2460\u24ea"},{"id":"ref-for-value-def-inline-table\u2460\u2460"}],"title":"17.2.1. Anonymous table objects"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460\u2461"}],"title":"17.4. Tables in the visual formatting model"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460\u2462"}],"title":"17.5.2. Table width algorithms:\nthe table-layout\nproperty"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460\u2463"},{"id":"ref-for-value-def-inline-table\u2460\u2464"}],"title":"17.5.2.2. Automatic table layout"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460\u2465"}],"title":"17.5.3. Table height algorithms"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460\u2466"}],"title":"17.6. Borders"},{"refs":[{"id":"ref-for-value-def-inline-table\u2460\u2467"}],"title":"17.6.1. The separated borders model"}],"url":"#value-def-inline-table"}, -"value-def-inset": {"dfnID":"value-def-inset","dfnText":"inset","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-inset"},{"id":"ref-for-value-def-inset\u2460"}],"title":"8.5.3. Border style:\nborder-top-style,\nborder-right-style,\nborder-bottom-style,\nborder-left-style, and\nborder-style"},{"refs":[{"id":"ref-for-value-def-inset\u2461"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-inset\u2462"}],"title":"17.6.3. Border styles"}],"url":"#value-def-inset"}, +"value-def-inline-table": {"dfnID":"value-def-inline-table","dfnText":"inline-table","external":false,"refSections":[],"url":"#value-def-inline-table"}, +"value-def-inset": {"dfnID":"value-def-inset","dfnText":"inset","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-inset"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-inset\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-inset"}, "value-def-integer": {"dfnID":"value-def-integer","dfnText":"<integer>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-integer"},{"id":"ref-for-value-def-integer\u2460"}],"title":"9.9.1. Specifying the stack level: the z-index property"},{"refs":[{"id":"ref-for-value-def-integer\u2461"},{"id":"ref-for-value-def-integer\u2462"}],"title":"12.4. Automatic counters and numbering"},{"refs":[{"id":"ref-for-value-def-integer\u2463"},{"id":"ref-for-value-def-integer\u2464"}],"title":"13.3.2. Breaks inside elements: orphans, widows"}],"url":"#value-def-integer"}, -"value-def-invert": {"dfnID":"value-def-invert","dfnText":"invert","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-invert"},{"id":"ref-for-value-def-invert\u2460"},{"id":"ref-for-value-def-invert\u2461"}],"title":"18.4. Dynamic outlines: the outline property"}],"url":"#value-def-invert"}, +"value-def-invert": {"dfnID":"value-def-invert","dfnText":"invert","external":false,"refSections":[],"url":"#value-def-invert"}, "value-def-left": {"dfnID":"value-def-left","dfnText":"<left>","external":false,"refSections":[],"url":"#value-def-left"}, "value-def-length": {"dfnID":"value-def-length","dfnText":"<length>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-length"},{"id":"ref-for-value-def-length\u2460"},{"id":"ref-for-value-def-length\u2461"}],"title":"1.4.2.1. Value"},{"refs":[{"id":"ref-for-value-def-length\u2462"}],"title":"8.3. Margin properties:\nmargin-top,\nmargin-right,\nmargin-bottom,\nmargin-left, and\nmargin"},{"refs":[{"id":"ref-for-value-def-length\u2463"}],"title":"8.4. Padding properties:\npadding-top,\npadding-right,\npadding-bottom,\npadding-left, and\npadding\n"},{"refs":[{"id":"ref-for-value-def-length\u2464"}],"title":"8.5.1. Border width: border-top-width, border-right-width, border-bottom-width,\nborder-left-width, and\nborder-width"},{"refs":[{"id":"ref-for-value-def-length\u2465"},{"id":"ref-for-value-def-length\u2466"},{"id":"ref-for-value-def-length\u2467"},{"id":"ref-for-value-def-length\u2468"},{"id":"ref-for-value-def-length\u2460\u24ea"}],"title":"9.3.2. Box offsets: top, right, bottom, left"},{"refs":[{"id":"ref-for-value-def-length\u2460\u2460"},{"id":"ref-for-value-def-length\u2460\u2461"}],"title":"10.2. Content width: the width property"},{"refs":[{"id":"ref-for-value-def-length\u2460\u2462"},{"id":"ref-for-value-def-length\u2460\u2463"},{"id":"ref-for-value-def-length\u2460\u2464"}],"title":"10.4. Minimum and maximum widths: min-width and max-width"},{"refs":[{"id":"ref-for-value-def-length\u2460\u2465"},{"id":"ref-for-value-def-length\u2460\u2466"}],"title":"10.5. Content height: the height property"},{"refs":[{"id":"ref-for-value-def-length\u2460\u2467"},{"id":"ref-for-value-def-length\u2460\u2468"},{"id":"ref-for-value-def-length\u2461\u24ea"}],"title":"10.7. Minimum and maximum heights: min-height and max-height"},{"refs":[{"id":"ref-for-value-def-length\u2461\u2460"},{"id":"ref-for-value-def-length\u2461\u2461"},{"id":"ref-for-value-def-length\u2461\u2462"},{"id":"ref-for-value-def-length\u2461\u2463"},{"id":"ref-for-value-def-length\u2461\u2464"},{"id":"ref-for-value-def-length\u2461\u2465"}],"title":"10.8.1. Leading and half-leading"},{"refs":[{"id":"ref-for-value-def-length\u2461\u2466"}],"title":"11.1.2. Clipping: the clip property"},{"refs":[{"id":"ref-for-value-def-length\u2461\u2467"},{"id":"ref-for-value-def-length\u2461\u2468"},{"id":"ref-for-value-def-length\u2462\u24ea"},{"id":"ref-for-value-def-length\u2462\u2460"},{"id":"ref-for-value-def-length\u2462\u2461"}],"title":"14.2.1. Background properties: background-color, background-image, background-repeat, background-attachment,\nbackground-position, and\nbackground\n"},{"refs":[{"id":"ref-for-value-def-length\u2462\u2462"}],"title":"15.7. Font size: the font-size\nproperty"},{"refs":[{"id":"ref-for-value-def-length\u2462\u2463"},{"id":"ref-for-value-def-length\u2462\u2464"}],"title":"16.1. Indentation: the text-indent property"},{"refs":[{"id":"ref-for-value-def-length\u2462\u2465"},{"id":"ref-for-value-def-length\u2462\u2466"},{"id":"ref-for-value-def-length\u2462\u2467"},{"id":"ref-for-value-def-length\u2462\u2468"}],"title":"16.4. Letter and word spacing: the letter-spacing and word-spacing properties"},{"refs":[{"id":"ref-for-value-def-length\u2463\u24ea"}],"title":"17.5.3. Table height algorithms"},{"refs":[{"id":"ref-for-value-def-length\u2463\u2460"},{"id":"ref-for-value-def-length\u2463\u2461"}],"title":"17.6.1. The separated borders model"}],"url":"#value-def-length"}, "value-def-list-item": {"dfnID":"value-def-list-item","dfnText":"list-item","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-list-item"},{"id":"ref-for-value-def-list-item\u2460"}],"title":"9.2.1. Block-level elements and block boxes"},{"refs":[{"id":"ref-for-value-def-list-item\u2461"},{"id":"ref-for-value-def-list-item\u2462"}],"title":"9.7. Relationships between display, position,\nand float"},{"refs":[{"id":"ref-for-value-def-list-item\u2463"}],"title":"12. \nGenerated content, automatic numbering,\nand lists"}],"url":"#value-def-list-item"}, "value-def-lower-greek": {"dfnID":"value-def-lower-greek","dfnText":"lower-greek","external":false,"refSections":[],"url":"#value-def-lower-greek"}, -"value-def-lower-latin": {"dfnID":"value-def-lower-latin","dfnText":"lower-latin","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-lower-latin"}],"title":"12.5.1. Lists: the list-style-type, list-style-image, list-style-position, and\nlist-style properties"}],"url":"#value-def-lower-latin"}, +"value-def-lower-latin": {"dfnID":"value-def-lower-latin","dfnText":"lower-latin","external":false,"refSections":[],"url":"#value-def-lower-latin"}, "value-def-lower-roman": {"dfnID":"value-def-lower-roman","dfnText":"lower-roman","external":false,"refSections":[],"url":"#value-def-lower-roman"}, "value-def-margin-width": {"dfnID":"value-def-margin-width","dfnText":"<margin-width>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-margin-width"},{"id":"ref-for-value-def-margin-width\u2460"},{"id":"ref-for-value-def-margin-width\u2461"}],"title":"8.3. Margin properties:\nmargin-top,\nmargin-right,\nmargin-bottom,\nmargin-left, and\nmargin"}],"url":"#value-def-margin-width"}, -"value-def-no-close-quote": {"dfnID":"value-def-no-close-quote","dfnText":"no-close-quote","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-no-close-quote"},{"id":"ref-for-value-def-no-close-quote\u2460"}],"title":"12.3.2. Inserting quotes with the content property"}],"url":"#value-def-no-close-quote"}, +"value-def-no-close-quote": {"dfnID":"value-def-no-close-quote","dfnText":"no-close-quote","external":false,"refSections":[],"url":"#value-def-no-close-quote"}, "value-def-no-open-quote": {"dfnID":"value-def-no-open-quote","dfnText":"no-open-quote","external":false,"refSections":[],"url":"#value-def-no-open-quote"}, "value-def-number": {"dfnID":"value-def-number","dfnText":"<number>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-number"}],"title":"4.3.3. Percentages"},{"refs":[{"id":"ref-for-value-def-number\u2460"},{"id":"ref-for-value-def-number\u2461"},{"id":"ref-for-value-def-number\u2462"}],"title":"10.8.1. Leading and half-leading"}],"url":"#value-def-number"}, -"value-def-open-quote": {"dfnID":"value-def-open-quote","dfnText":"open-quote","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-open-quote"},{"id":"ref-for-value-def-open-quote\u2460"}],"title":"12.3.1. Specifying quotes with the quotes property"},{"refs":[{"id":"ref-for-value-def-open-quote\u2461"},{"id":"ref-for-value-def-open-quote\u2462"},{"id":"ref-for-value-def-open-quote\u2463"},{"id":"ref-for-value-def-open-quote\u2464"}],"title":"12.3.2. Inserting quotes with the content property"}],"url":"#value-def-open-quote"}, -"value-def-outset": {"dfnID":"value-def-outset","dfnText":"outset","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-outset"}],"title":"8.5.3. Border style:\nborder-top-style,\nborder-right-style,\nborder-bottom-style,\nborder-left-style, and\nborder-style"},{"refs":[{"id":"ref-for-value-def-outset\u2460"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-outset\u2461"}],"title":"17.6.3. Border styles"}],"url":"#value-def-outset"}, +"value-def-open-quote": {"dfnID":"value-def-open-quote","dfnText":"open-quote","external":false,"refSections":[],"url":"#value-def-open-quote"}, +"value-def-outset": {"dfnID":"value-def-outset","dfnText":"outset","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-outset"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-outset\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-outset"}, "value-def-padding-width": {"dfnID":"value-def-padding-width","dfnText":"<padding-width>\n","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-padding-width"},{"id":"ref-for-value-def-padding-width\u2460"}],"title":"8.4. Padding properties:\npadding-top,\npadding-right,\npadding-bottom,\npadding-left, and\npadding\n"}],"url":"#value-def-padding-width"}, "value-def-percentage": {"dfnID":"value-def-percentage","dfnText":"<percentage>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-percentage"}],"title":"1.4.2.1. Value"},{"refs":[{"id":"ref-for-value-def-percentage\u2460"}],"title":"8.3. Margin properties:\nmargin-top,\nmargin-right,\nmargin-bottom,\nmargin-left, and\nmargin"},{"refs":[{"id":"ref-for-value-def-percentage\u2461"}],"title":"8.4. Padding properties:\npadding-top,\npadding-right,\npadding-bottom,\npadding-left, and\npadding\n"},{"refs":[{"id":"ref-for-value-def-percentage\u2462"},{"id":"ref-for-value-def-percentage\u2463"},{"id":"ref-for-value-def-percentage\u2464"},{"id":"ref-for-value-def-percentage\u2465"},{"id":"ref-for-value-def-percentage\u2466"}],"title":"9.3.2. Box offsets: top, right, bottom, left"},{"refs":[{"id":"ref-for-value-def-percentage\u2467"},{"id":"ref-for-value-def-percentage\u2468"}],"title":"10.2. Content width: the width property"},{"refs":[{"id":"ref-for-value-def-percentage\u2460\u24ea"},{"id":"ref-for-value-def-percentage\u2460\u2460"},{"id":"ref-for-value-def-percentage\u2460\u2461"}],"title":"10.4. Minimum and maximum widths: min-width and max-width"},{"refs":[{"id":"ref-for-value-def-percentage\u2460\u2462"},{"id":"ref-for-value-def-percentage\u2460\u2463"},{"id":"ref-for-value-def-percentage\u2460\u2464"}],"title":"10.5. Content height: the height property"},{"refs":[{"id":"ref-for-value-def-percentage\u2460\u2465"},{"id":"ref-for-value-def-percentage\u2460\u2466"},{"id":"ref-for-value-def-percentage\u2460\u2467"}],"title":"10.7. Minimum and maximum heights: min-height and max-height"},{"refs":[{"id":"ref-for-value-def-percentage\u2460\u2468"},{"id":"ref-for-value-def-percentage\u2461\u24ea"},{"id":"ref-for-value-def-percentage\u2461\u2460"},{"id":"ref-for-value-def-percentage\u2461\u2461"},{"id":"ref-for-value-def-percentage\u2461\u2462"},{"id":"ref-for-value-def-percentage\u2461\u2463"}],"title":"10.8.1. Leading and half-leading"},{"refs":[{"id":"ref-for-value-def-percentage\u2461\u2464"},{"id":"ref-for-value-def-percentage\u2461\u2465"},{"id":"ref-for-value-def-percentage\u2461\u2466"},{"id":"ref-for-value-def-percentage\u2461\u2467"}],"title":"14.2.1. Background properties: background-color, background-image, background-repeat, background-attachment,\nbackground-position, and\nbackground\n"},{"refs":[{"id":"ref-for-value-def-percentage\u2461\u2468"}],"title":"15.7. Font size: the font-size\nproperty"},{"refs":[{"id":"ref-for-value-def-percentage\u2462\u24ea"},{"id":"ref-for-value-def-percentage\u2462\u2460"}],"title":"16.1. Indentation: the text-indent property"},{"refs":[{"id":"ref-for-value-def-percentage\u2462\u2461"}],"title":"17.5.3. Table height algorithms"}],"url":"#value-def-percentage"}, "value-def-relative-size": {"dfnID":"value-def-relative-size","dfnText":"<relative-size>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-relative-size"}],"title":"15.7. Font size: the font-size\nproperty"}],"url":"#value-def-relative-size"}, -"value-def-ridge": {"dfnID":"value-def-ridge","dfnText":"ridge","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-ridge"}],"title":"8.5.3. Border style:\nborder-top-style,\nborder-right-style,\nborder-bottom-style,\nborder-left-style, and\nborder-style"},{"refs":[{"id":"ref-for-value-def-ridge\u2460"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-ridge\u2461"},{"id":"ref-for-value-def-ridge\u2462"}],"title":"17.6.3. Border styles"}],"url":"#value-def-ridge"}, +"value-def-ridge": {"dfnID":"value-def-ridge","dfnText":"ridge","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-ridge"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-ridge\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-ridge"}, "value-def-right": {"dfnID":"value-def-right","dfnText":"<right>","external":false,"refSections":[],"url":"#value-def-right"}, "value-def-shape": {"dfnID":"value-def-shape","dfnText":"<shape>","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-shape"}],"title":"11.1.2. Clipping: the clip property"}],"url":"#value-def-shape"}, -"value-def-solid": {"dfnID":"value-def-solid","dfnText":"solid","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-solid"}],"title":"8.5.3. Border style:\nborder-top-style,\nborder-right-style,\nborder-bottom-style,\nborder-left-style, and\nborder-style"},{"refs":[{"id":"ref-for-value-def-solid\u2460"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-solid\u2461"}],"title":"17.6.3. Border styles"}],"url":"#value-def-solid"}, +"value-def-solid": {"dfnID":"value-def-solid","dfnText":"solid","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-solid"}],"title":"17.6.2.1. Border conflict resolution"},{"refs":[{"id":"ref-for-value-def-solid\u2460"}],"title":"17.6.3. Border styles"}],"url":"#value-def-solid"}, "value-def-square": {"dfnID":"value-def-square","dfnText":"square","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-square"}],"title":"12.4.2. Counter styles"}],"url":"#value-def-square"}, "value-def-string": {"dfnID":"value-def-string","dfnText":"Strings","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-string"},{"id":"ref-for-value-def-string\u2460"}],"title":"12.2. The content property"},{"refs":[{"id":"ref-for-value-def-string\u2461"},{"id":"ref-for-value-def-string\u2462"},{"id":"ref-for-value-def-string\u2463"},{"id":"ref-for-value-def-string\u2464"}],"title":"12.3.1. Specifying quotes with the quotes property"}],"url":"#value-def-string"}, -"value-def-table": {"dfnID":"value-def-table","dfnText":"table","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table"}],"title":"9.2.1. Block-level elements and block boxes"},{"refs":[{"id":"ref-for-value-def-table\u2460"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table\u2461"},{"id":"ref-for-value-def-table\u2462"},{"id":"ref-for-value-def-table\u2463"},{"id":"ref-for-value-def-table\u2464"},{"id":"ref-for-value-def-table\u2465"},{"id":"ref-for-value-def-table\u2466"},{"id":"ref-for-value-def-table\u2467"},{"id":"ref-for-value-def-table\u2468"},{"id":"ref-for-value-def-table\u2460\u24ea"},{"id":"ref-for-value-def-table\u2460\u2460"}],"title":"17.2.1. Anonymous table objects"},{"refs":[{"id":"ref-for-value-def-table\u2460\u2461"}],"title":"17.5.2. Table width algorithms:\nthe table-layout\nproperty"},{"refs":[{"id":"ref-for-value-def-table\u2460\u2462"},{"id":"ref-for-value-def-table\u2460\u2463"}],"title":"17.5.2.2. Automatic table layout"},{"refs":[{"id":"ref-for-value-def-table\u2460\u2464"}],"title":"17.5.3. Table height algorithms"},{"refs":[{"id":"ref-for-value-def-table\u2460\u2465"}],"title":"17.6. Borders"},{"refs":[{"id":"ref-for-value-def-table\u2460\u2466"}],"title":"17.6.1. The separated borders model"}],"url":"#value-def-table"}, -"value-def-table-caption": {"dfnID":"value-def-table-caption","dfnText":"table-caption","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-caption"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-caption\u2460"},{"id":"ref-for-value-def-table-caption\u2461"},{"id":"ref-for-value-def-table-caption\u2462"},{"id":"ref-for-value-def-table-caption\u2463"},{"id":"ref-for-value-def-table-caption\u2464"}],"title":"17.2.1. Anonymous table objects"},{"refs":[{"id":"ref-for-value-def-table-caption\u2465"}],"title":"17.4.1. Caption position and alignment"}],"url":"#value-def-table-caption"}, -"value-def-table-cell": {"dfnID":"value-def-table-cell","dfnText":"table-cell","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-cell"}],"title":"10.8.1. Leading and half-leading"},{"refs":[{"id":"ref-for-value-def-table-cell\u2460"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-cell\u2461"},{"id":"ref-for-value-def-table-cell\u2462"},{"id":"ref-for-value-def-table-cell\u2463"},{"id":"ref-for-value-def-table-cell\u2464"},{"id":"ref-for-value-def-table-cell\u2465"},{"id":"ref-for-value-def-table-cell\u2466"},{"id":"ref-for-value-def-table-cell\u2467"},{"id":"ref-for-value-def-table-cell\u2468"}],"title":"17.2.1. Anonymous table objects"},{"refs":[{"id":"ref-for-value-def-table-cell\u2460\u24ea"}],"title":"17.6.1.1. Borders and Backgrounds around empty cells: the empty-cells property"}],"url":"#value-def-table-cell"}, -"value-def-table-column": {"dfnID":"value-def-table-column","dfnText":"table-column","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-column"},{"id":"ref-for-value-def-table-column\u2460"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-column\u2461"},{"id":"ref-for-value-def-table-column\u2462"},{"id":"ref-for-value-def-table-column\u2463"},{"id":"ref-for-value-def-table-column\u2464"},{"id":"ref-for-value-def-table-column\u2465"}],"title":"17.2.1. Anonymous table objects"}],"url":"#value-def-table-column"}, -"value-def-table-column-group": {"dfnID":"value-def-table-column-group","dfnText":"table-column-group","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-column-group"},{"id":"ref-for-value-def-table-column-group\u2460"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-column-group\u2461"},{"id":"ref-for-value-def-table-column-group\u2462"},{"id":"ref-for-value-def-table-column-group\u2463"},{"id":"ref-for-value-def-table-column-group\u2464"},{"id":"ref-for-value-def-table-column-group\u2465"}],"title":"17.2.1. Anonymous table objects"}],"url":"#value-def-table-column-group"}, -"value-def-table-footer-group": {"dfnID":"value-def-table-footer-group","dfnText":"table-footer-group","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-footer-group"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-footer-group\u2460"}],"title":"17.2.1. Anonymous table objects"}],"url":"#value-def-table-footer-group"}, -"value-def-table-header-group": {"dfnID":"value-def-table-header-group","dfnText":"table-header-group","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-header-group"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-header-group\u2460"}],"title":"17.2.1. Anonymous table objects"}],"url":"#value-def-table-header-group"}, -"value-def-table-row": {"dfnID":"value-def-table-row","dfnText":"table-row","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-row"}],"title":"13.3.1. Page break properties: page-break-before,\npage-break-after,\npage-break-inside\n"},{"refs":[{"id":"ref-for-value-def-table-row\u2460"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-row\u2461"},{"id":"ref-for-value-def-table-row\u2462"},{"id":"ref-for-value-def-table-row\u2463"},{"id":"ref-for-value-def-table-row\u2464"},{"id":"ref-for-value-def-table-row\u2465"},{"id":"ref-for-value-def-table-row\u2466"},{"id":"ref-for-value-def-table-row\u2467"},{"id":"ref-for-value-def-table-row\u2468"},{"id":"ref-for-value-def-table-row\u2460\u24ea"},{"id":"ref-for-value-def-table-row\u2460\u2460"},{"id":"ref-for-value-def-table-row\u2460\u2461"},{"id":"ref-for-value-def-table-row\u2460\u2462"}],"title":"17.2.1. Anonymous table objects"},{"refs":[{"id":"ref-for-value-def-table-row\u2460\u2463"},{"id":"ref-for-value-def-table-row\u2460\u2464"}],"title":"17.5.3. Table height algorithms"}],"url":"#value-def-table-row"}, -"value-def-table-row-group": {"dfnID":"value-def-table-row-group","dfnText":"table-row-group","external":false,"refSections":[{"refs":[{"id":"ref-for-value-def-table-row-group"},{"id":"ref-for-value-def-table-row-group\u2460"},{"id":"ref-for-value-def-table-row-group\u2461"}],"title":"17.2. The CSS table model"},{"refs":[{"id":"ref-for-value-def-table-row-group\u2462"}],"title":"17.2.1. Anonymous table objects"}],"url":"#value-def-table-row-group"}, +"value-def-table": {"dfnID":"value-def-table","dfnText":"table","external":false,"refSections":[],"url":"#value-def-table"}, +"value-def-table-caption": {"dfnID":"value-def-table-caption","dfnText":"table-caption","external":false,"refSections":[],"url":"#value-def-table-caption"}, +"value-def-table-cell": {"dfnID":"value-def-table-cell","dfnText":"table-cell","external":false,"refSections":[],"url":"#value-def-table-cell"}, +"value-def-table-column": {"dfnID":"value-def-table-column","dfnText":"table-column","external":false,"refSections":[],"url":"#value-def-table-column"}, +"value-def-table-column-group": {"dfnID":"value-def-table-column-group","dfnText":"table-column-group","external":false,"refSections":[],"url":"#value-def-table-column-group"}, +"value-def-table-footer-group": {"dfnID":"value-def-table-footer-group","dfnText":"table-footer-group","external":false,"refSections":[],"url":"#value-def-table-footer-group"}, +"value-def-table-header-group": {"dfnID":"value-def-table-header-group","dfnText":"table-header-group","external":false,"refSections":[],"url":"#value-def-table-header-group"}, +"value-def-table-row": {"dfnID":"value-def-table-row","dfnText":"table-row","external":false,"refSections":[],"url":"#value-def-table-row"}, +"value-def-table-row-group": {"dfnID":"value-def-table-row-group","dfnText":"table-row-group","external":false,"refSections":[],"url":"#value-def-table-row-group"}, "value-def-top": {"dfnID":"value-def-top","dfnText":"<top>","external":false,"refSections":[],"url":"#value-def-top"}, "value-def-upper-alpha": {"dfnID":"value-def-upper-alpha","dfnText":"upper-alpha","external":false,"refSections":[],"url":"#value-def-upper-alpha"}, "value-def-upper-latin": {"dfnID":"value-def-upper-latin","dfnText":"upper-latin","external":false,"refSections":[],"url":"#value-def-upper-latin"}, @@ -18678,7 +18677,7 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e let linkTitleData = { "#value-def-border-style": "Expands to: dashed | dotted | double | groove | hidden | inset | none | outset | ridge | solid", "#value-def-border-width": "Expands to: <length> | medium | thick | thin", -"#value-def-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"#value-def-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "#value-def-generic-family": "Expands to: cursive | fantasy | monospace | sans-serif | serif | xxx", "#value-def-length": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "#value-def-padding-width": "Expands to: <length> | <percentage>", @@ -18984,11 +18983,9 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e "#value-def-border-style": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<border-style>","type":"type","url":"#value-def-border-style"}, "#value-def-border-width": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<border-width>","type":"type","url":"#value-def-border-width"}, "#value-def-circle": {"export":true,"for_":["list-style-type"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"circle","type":"value","url":"#value-def-circle"}, -"#value-def-close-quote": {"export":true,"for_":["content"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"close-quote","type":"value","url":"#value-def-close-quote"}, "#value-def-color": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<color>","type":"type","url":"#value-def-color"}, "#value-def-counter": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<counter>","type":"type","url":"#value-def-counter"}, "#value-def-dashed": {"export":true,"for_":["<border-style>","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"dashed","type":"value","url":"#value-def-dashed"}, -"#value-def-decimal": {"export":true,"for_":["list-style-type"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"decimal","type":"value","url":"#value-def-decimal"}, "#value-def-disc": {"export":true,"for_":["list-style-type"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"disc","type":"value","url":"#value-def-disc"}, "#value-def-dotted": {"export":true,"for_":["<border-style>","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"dotted","type":"value","url":"#value-def-dotted"}, "#value-def-double": {"export":true,"for_":["<border-style>","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"double","type":"value","url":"#value-def-double"}, @@ -18999,17 +18996,12 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e "#value-def-identifier": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<identifier>","type":"type","url":"#value-def-identifier"}, "#value-def-inline": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"inline","type":"value","url":"#value-def-inline"}, "#value-def-inline-block": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"inline-block","type":"value","url":"#value-def-inline-block"}, -"#value-def-inline-table": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"inline-table","type":"value","url":"#value-def-inline-table"}, "#value-def-inset": {"export":true,"for_":["<border-style>","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"inset","type":"value","url":"#value-def-inset"}, "#value-def-integer": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<integer>","type":"type","url":"#value-def-integer"}, -"#value-def-invert": {"export":true,"for_":["outline-color"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"invert","type":"value","url":"#value-def-invert"}, "#value-def-length": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<length>","type":"type","url":"#value-def-length"}, "#value-def-list-item": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"list-item","type":"value","url":"#value-def-list-item"}, -"#value-def-lower-latin": {"export":true,"for_":["list-style-type"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"lower-latin","type":"value","url":"#value-def-lower-latin"}, "#value-def-margin-width": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<margin-width>","type":"type","url":"#value-def-margin-width"}, -"#value-def-no-close-quote": {"export":true,"for_":["content"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"no-close-quote","type":"value","url":"#value-def-no-close-quote"}, "#value-def-number": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<number>","type":"type","url":"#value-def-number"}, -"#value-def-open-quote": {"export":true,"for_":["content"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"open-quote","type":"value","url":"#value-def-open-quote"}, "#value-def-outset": {"export":true,"for_":["<border-style>","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"outset","type":"value","url":"#value-def-outset"}, "#value-def-padding-width": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<padding-width>","type":"type","url":"#value-def-padding-width"}, "#value-def-percentage": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<percentage>","type":"type","url":"#value-def-percentage"}, @@ -19019,15 +19011,6 @@ <h3 class="no-ref heading settled" id="w3c-testing"><span class="content"> Non-e "#value-def-solid": {"export":true,"for_":["<border-style>","border-bottom-style","border-left-style","border-right-style","border-style","border-top-style"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"solid","type":"value","url":"#value-def-solid"}, "#value-def-square": {"export":true,"for_":["list-style-type"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"square","type":"value","url":"#value-def-square"}, "#value-def-string": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<string>","type":"type","url":"#value-def-string"}, -"#value-def-table": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table","type":"value","url":"#value-def-table"}, -"#value-def-table-caption": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-caption","type":"value","url":"#value-def-table-caption"}, -"#value-def-table-cell": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-cell","type":"value","url":"#value-def-table-cell"}, -"#value-def-table-column": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-column","type":"value","url":"#value-def-table-column"}, -"#value-def-table-column-group": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-column-group","type":"value","url":"#value-def-table-column-group"}, -"#value-def-table-footer-group": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-footer-group","type":"value","url":"#value-def-table-footer-group"}, -"#value-def-table-header-group": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-header-group","type":"value","url":"#value-def-table-header-group"}, -"#value-def-table-row": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-row","type":"value","url":"#value-def-table-row"}, -"#value-def-table-row-group": {"export":true,"for_":["display"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"table-row-group","type":"value","url":"#value-def-table-row-group"}, "#value-def-uri": {"export":true,"for_":[],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"<uri>","type":"type","url":"#value-def-uri"}, "#velue-def-lower-alpha": {"export":true,"for_":["list-style-type"],"level":"","normative":true,"shortname":"css2","spec":"css2","status":"local","text":"lower-alpha","type":"value","url":"#velue-def-lower-alpha"}, "https://drafts.csswg.org/css-color-5/#valdef-color-b": {"export":true,"for_":["color()"],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"b","type":"value","url":"https://drafts.csswg.org/css-color-5/#valdef-color-b"}, diff --git a/tests/github/w3c/csswg-drafts/cssom-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/cssom-1/Overview.console.txt index 7b92bc341e..7f05f75166 100644 --- a/tests/github/w3c/csswg-drafts/cssom-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/cssom-1/Overview.console.txt @@ -41,6 +41,66 @@ LINE ~478: No 'property' refs found for 'grid' with spec 'mediaqueries-4'. 'grid' LINE 494: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="494" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> +LINE 599: Multiple possible 'simple selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#simple +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:simple selector +spec:css2; type:dfn; text:simple selector +<a bs-line-number="599" data-link-type="dfn" data-lt="simple selector">simple selector</a> +LINE 601: Multiple possible 'universal selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#universal-selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:universal selector +spec:css2; type:dfn; text:universal selector +<a bs-line-number="601" data-link-type="dfn" data-lt="universal selector">universal selector</a> +LINE 603: Multiple possible 'universal selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#universal-selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:universal selector +spec:css2; type:dfn; text:universal selector +<a bs-line-number="603" data-link-type="dfn" data-lt="universal selector">universal selector</a> +LINE 605: Multiple possible 'simple selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#simple +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:simple selector +spec:css2; type:dfn; text:simple selector +<a bs-line-number="605" data-link-type="dfn" data-lt="simple selector">simple selector</a> +LINE 611: Multiple possible 'simple selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#simple +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:simple selector +spec:css2; type:dfn; text:simple selector +<a bs-line-number="611" data-link-type="dfn" data-lt="simple selector">simple selector</a> +LINE 777: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="777" data-link-type="dfn" data-lt="media">media</a> +LINE 781: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="781" data-link-type="dfn" data-lt="media">media</a> +LINE 782: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="782" data-link-type="dfn" data-lt="media">media</a> +LINE 785: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="785" data-link-type="dfn" data-lt="media">media</a> +LINE 890: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="890" data-link-type="dfn" data-lt="media">media</a> LINE 1039: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="1039" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> LINE 1042: No 'dfn' refs found for 'case-sensitive' with spec 'html'. @@ -51,14 +111,34 @@ LINE 1132: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="1132" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> LINE 1201: No 'dfn' refs found for 'ascii case-insensitive' with spec 'html'. <a bs-line-number="1201" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> +LINE 1294: Multiple possible 'data' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-cd-data +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:data +spec:trusted-types; type:dfn; for:TrustedHTML; text:data +spec:trusted-types; type:dfn; for:TrustedScript; text:data +spec:trusted-types; type:dfn; for:TrustedScriptURL; text:data +<a bs-line-number="1294" data-link-type="dfn" data-lt="data">data</a> LINE 1312: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="1312" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> +LINE 1355: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="1355" data-link-type="dfn" data-lt="media">media</a> LINE 1364: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="1364" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> LINE 1401: No 'dfn' refs found for 'ascii case-insensitive' with spec 'html'. <a bs-line-number="1401" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> LINE 1411: No 'dfn' refs found for 'ascii case-insensitive' with spec 'html'. <a bs-line-number="1411" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> +LINE 1453: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-1; type:dfn; for:CSSStyleSheet; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="1453" data-link-type="dfn" data-lt="media">media</a> LINE 1463: No 'dfn' refs found for 'ascii case-insensitive' with spec 'html'. <a bs-line-number="1463" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> LINE ~1585: No 'property' refs found for 'unicode-range'. @@ -99,6 +179,60 @@ LINE 2847: No 'dfn' refs found for 'browsing context container' that are marked <a bs-line-number="2847" data-link-type="dfn" data-lt="browsing context container">browsing context container</a> LINE 2848: No 'dfn' refs found for 'browsing context container' that are marked for export. <a bs-line-number="2848" data-link-type="dfn" data-lt="browsing context container">browsing context container</a> +LINE ~2943: Multiple possible 'border-block-end-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-end-color +spec:css-logical-1; type:property; text:border-block-end-color +'border-block-end-color' +LINE ~2944: Multiple possible 'border-block-start-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-block-start-color +spec:css-logical-1; type:property; text:border-block-start-color +'border-block-start-color' +LINE ~2945: Multiple possible 'border-bottom-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-color +spec:css-borders-4; type:property; text:border-bottom-color +'border-bottom-color' +LINE ~2946: Multiple possible 'border-inline-end-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-end-color +spec:css-logical-1; type:property; text:border-inline-end-color +'border-inline-end-color' +LINE ~2947: Multiple possible 'border-inline-start-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-borders-4; type:property; text:border-inline-start-color +spec:css-logical-1; type:property; text:border-inline-start-color +'border-inline-start-color' +LINE ~2948: Multiple possible 'border-left-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-color +spec:css-borders-4; type:property; text:border-left-color +'border-left-color' +LINE ~2949: Multiple possible 'border-right-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-color +spec:css-borders-4; type:property; text:border-right-color +'border-right-color' +LINE ~2950: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE ~2951: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE ~2959: No 'property' refs found for 'normal'. 'normal' WARNING: Multiple elements have the same ID '85394472'. @@ -111,10 +245,15 @@ WARNING: Multiple elements have the same ID 'a973e0fe'. Deduping, but this ID may not be stable across revisions. WARNING: Multiple elements have the same ID 'biblio-dom'. Deduping, but this ID may not be stable across revisions. +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. +WARNING: No 'dom-cssimportrule-layername' ID found, skipping MDN features that would target it. +WARNING: No 'dom-cssimportrule-supportstext' ID found, skipping MDN features that would target it. WARNING: No 'dom-cssstylesheet-cssstylesheet' ID found, skipping MDN features that would target it. WARNING: No 'dom-cssstylesheet-replace' ID found, skipping MDN features that would target it. WARNING: No 'dom-cssstylesheet-replacesync' ID found, skipping MDN features that would target it. WARNING: No 'dom-documentorshadowroot-adoptedstylesheets' ID found, skipping MDN features that would target it. +LINE 772: Unexported dfn that's not referenced locally - did you mean to export it? +<dfn bs-line-number="772" id="concept-css-style-sheet-media" data-dfn-type="dfn" data-dfn-for="CSSStyleSheet" data-lt="media" data-noexport="by-default" class="dfn-paneled">media</dfn> LINE 1490: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="1490" id="concept-css-rule-text" data-dfn-type="dfn" data-dfn-for="CSSRule" data-lt="text" data-noexport="by-default" class="dfn-paneled">text</dfn> LINE 2004: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/cssom-1/Overview.html b/tests/github/w3c/csswg-drafts/cssom-1/Overview.html index 7231a87d1e..d202d99686 100644 --- a/tests/github/w3c/csswg-drafts/cssom-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/cssom-1/Overview.html @@ -5,7 +5,6 @@ <title>CSS Object Model (CSSOM)</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/cssom-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1087,7 +1086,7 @@ <h1 class="p-name no-ref" id="title">CSS Object Model (CSSOM)</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1109,7 +1108,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[cssom] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcssom%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1355,7 +1354,7 @@ <h2 class="heading settled" data-level="3" id="cssomstring-type"><span class="se Since well-formed UTF-8 specifically disallows <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate①">surrogate</a> code points, it effectively requires this replacement.</p> <p>On the other hand, - implementations that internally represent strings as 16-bit <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit">code units</a> might prefer to avoid the cost of doing this replacement.</p> + implementations that internally represent strings as 16-bit <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit">code units</a> might prefer to avoid the cost of doing this replacement.</p> </div> <h2 class="heading settled" data-level="4" id="media-queries"><span class="secno">4. </span><span class="content">Media Queries</span><a class="self-link" href="#media-queries"></a></h2> <p><a data-link-type="dfn" href="https://drafts.csswg.org/mediaqueries-5/#media-query" id="ref-for-media-query">Media queries</a> are defined by <a data-link-type="biblio" href="#biblio-mediaqueries" title="Media Queries Level 4">[MEDIAQUERIES]</a>. This @@ -1652,10 +1651,10 @@ <h3 class="heading settled" data-level="6.1" id="css-style-sheets"><span class=" <dt><dfn class="dfn-paneled" data-dfn-for="CSSStyleSheet" data-dfn-type="dfn" data-noexport id="concept-css-style-sheet-media">media</dfn> <dd> Specified when created. The <code class="idl"><a data-link-type="idl" href="#medialist" id="ref-for-medialist①">MediaList</a></code> object associated with the <a data-link-type="dfn" href="#css-style-sheet" id="ref-for-css-style-sheet⑨">CSS style sheet</a>. - <p>If this property is specified to a string, the <a data-link-type="dfn" href="#concept-css-style-sheet-media" id="ref-for-concept-css-style-sheet-media">media</a> must be set to the return value of invoking <a data-link-type="dfn" href="#create-a-medialist-object" id="ref-for-create-a-medialist-object">create a <code>MediaList</code> object</a> steps for that string.</p> - <p>If this property is specified to an attribute of the <a data-link-type="dfn" href="#concept-css-style-sheet-owner-node" id="ref-for-concept-css-style-sheet-owner-node">owner node</a>, the <a data-link-type="dfn" href="#concept-css-style-sheet-media" id="ref-for-concept-css-style-sheet-media①">media</a> must be set to the return value of invoking <a data-link-type="dfn" href="#create-a-medialist-object" id="ref-for-create-a-medialist-object①">create a <code>MediaList</code> object</a> steps - for the value of that attribute. Whenever the attribute is set, changed or removed, the <span id="ref-for-concept-css-style-sheet-media②">media</span>’s <code class="idl"><a data-link-type="idl" href="#dom-medialist-mediatext" id="ref-for-dom-medialist-mediatext③">mediaText</a></code> attribute must be set to the new value of the attribute, or to null if the attribute is absent.</p> - <p class="note" role="note"><span class="marker">Note:</span> Changing the <a data-link-type="dfn" href="#concept-css-style-sheet-media" id="ref-for-concept-css-style-sheet-media③">media</a>’s <code class="idl"><a data-link-type="idl" href="#dom-medialist-mediatext" id="ref-for-dom-medialist-mediatext④">mediaText</a></code> attribute does not + <p>If this property is specified to a string, the <a data-link-type="dfn">media</a> must be set to the return value of invoking <a data-link-type="dfn" href="#create-a-medialist-object" id="ref-for-create-a-medialist-object">create a <code>MediaList</code> object</a> steps for that string.</p> + <p>If this property is specified to an attribute of the <a data-link-type="dfn" href="#concept-css-style-sheet-owner-node" id="ref-for-concept-css-style-sheet-owner-node">owner node</a>, the <a data-link-type="dfn">media</a> must be set to the return value of invoking <a data-link-type="dfn" href="#create-a-medialist-object" id="ref-for-create-a-medialist-object①">create a <code>MediaList</code> object</a> steps + for the value of that attribute. Whenever the attribute is set, changed or removed, the <span>media</span>’s <code class="idl"><a data-link-type="idl" href="#dom-medialist-mediatext" id="ref-for-dom-medialist-mediatext③">mediaText</a></code> attribute must be set to the new value of the attribute, or to null if the attribute is absent.</p> + <p class="note" role="note"><span class="marker">Note:</span> Changing the <a data-link-type="dfn">media</a>’s <code class="idl"><a data-link-type="idl" href="#dom-medialist-mediatext" id="ref-for-dom-medialist-mediatext④">mediaText</a></code> attribute does not change the corresponding attribute on the <a data-link-type="dfn" href="#concept-css-style-sheet-owner-node" id="ref-for-concept-css-style-sheet-owner-node①">owner node</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> The <a data-link-type="dfn" href="#concept-css-style-sheet-owner-node" id="ref-for-concept-css-style-sheet-owner-node②">owner node</a> of a <a data-link-type="dfn" href="#css-style-sheet" id="ref-for-css-style-sheet①⓪">CSS style sheet</a>, if non-null, is the node whose <a data-link-type="dfn" href="#associated-css-style-sheet" id="ref-for-associated-css-style-sheet">associated CSS style sheet</a> is the <span id="ref-for-css-style-sheet①①">CSS style sheet</span> in question, when the <span id="ref-for-css-style-sheet①②">CSS style sheet</span> is <a data-link-type="dfn" href="#add-a-css-style-sheet" id="ref-for-add-a-css-style-sheet">added</a>.</p> @@ -1716,7 +1715,7 @@ <h4 class="heading settled" data-level="6.1.1" id="the-stylesheet-interface"><sp <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="StyleSheet" data-dfn-type="attribute" data-export id="dom-stylesheet-ownernode"><code>ownerNode</code></dfn> attribute must return the <a data-link-type="dfn" href="#concept-css-style-sheet-owner-node" id="ref-for-concept-css-style-sheet-owner-node⑤">owner node</a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="StyleSheet" data-dfn-type="attribute" data-export id="dom-stylesheet-parentstylesheet"><code>parentStyleSheet</code></dfn> attribute must return the <a data-link-type="dfn" href="#concept-css-style-sheet-parent-css-style-sheet" id="ref-for-concept-css-style-sheet-parent-css-style-sheet①">parent CSS style sheet</a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="StyleSheet" data-dfn-type="attribute" data-export id="dom-stylesheet-title"><code>title</code></dfn> attribute must return the <a data-link-type="dfn" href="#concept-css-style-sheet-title" id="ref-for-concept-css-style-sheet-title④">title</a> or null if <span id="ref-for-concept-css-style-sheet-title⑤">title</span> is the empty string.</p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="StyleSheet" data-dfn-type="attribute" data-export id="dom-stylesheet-media"><code>media</code></dfn> attribute must return the <a data-link-type="dfn" href="#concept-css-style-sheet-media" id="ref-for-concept-css-style-sheet-media④">media</a>.</p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="StyleSheet" data-dfn-type="attribute" data-export id="dom-stylesheet-media"><code>media</code></dfn> attribute must return the <a data-link-type="dfn">media</a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="StyleSheet" data-dfn-type="attribute" data-export id="dom-stylesheet-disabled"><code>disabled</code></dfn> attribute, on getting, must return true if the <a data-link-type="dfn" href="#concept-css-style-sheet-disabled-flag" id="ref-for-concept-css-style-sheet-disabled-flag">disabled flag</a> is set, or false otherwise. On setting, the <code class="idl"><a data-link-type="idl" href="#dom-stylesheet-disabled" id="ref-for-dom-stylesheet-disabled①">disabled</a></code> attribute must set the <span id="ref-for-concept-css-style-sheet-disabled-flag①">disabled flag</span> if the new value is true, or unset the <span id="ref-for-concept-css-style-sheet-disabled-flag②">disabled flag</span> otherwise.</p> <h4 class="heading settled" data-level="6.1.2" id="the-cssstylesheet-interface"><span class="secno">6.1.2. </span><span class="content">The <code class="idl"><a data-link-type="idl" href="#cssstylesheet" id="ref-for-cssstylesheet②">CSSStyleSheet</a></code> Interface</span><a class="self-link" href="#the-cssstylesheet-interface"></a></h4> <p>The <code class="idl"><a data-link-type="idl" href="#cssstylesheet" id="ref-for-cssstylesheet③">CSSStyleSheet</a></code> interface represents a <a data-link-type="dfn" href="#css-style-sheet" id="ref-for-css-style-sheet①⑦">CSS style sheet</a>.</p> @@ -1948,7 +1947,7 @@ <h4 class="heading settled" data-level="6.3.4" id="requirements-on-user-agents-i <dd><var>node</var>. <dt><a data-link-type="dfn" href="#concept-css-style-sheet-owner-css-rule" id="ref-for-concept-css-style-sheet-owner-css-rule②">owner CSS rule</a> <dd>null. - <dt><a data-link-type="dfn" href="#concept-css-style-sheet-media" id="ref-for-concept-css-style-sheet-media⑤">media</a> + <dt><a data-link-type="dfn">media</a> <dd>The value of the <code>media</code> <a data-link-type="dfn" href="https://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute" id="ref-for-dt-pseudo-attribute⑥">pseudo-attribute</a> if any, or the empty string otherwise. <dt><a data-link-type="dfn" href="#concept-css-style-sheet-title" id="ref-for-concept-css-style-sheet-title①④">title</a> <dd><var>title</var>. @@ -2006,7 +2005,7 @@ <h4 class="heading settled" data-level="6.3.5" id="requirements-on-user-agents-i <dd>null. <dt><a data-link-type="dfn" href="#concept-css-style-sheet-owner-css-rule" id="ref-for-concept-css-style-sheet-owner-css-rule③">owner CSS rule</a> <dd>null. - <dt><a data-link-type="dfn" href="#concept-css-style-sheet-media" id="ref-for-concept-css-style-sheet-media⑥">media</a> + <dt><a data-link-type="dfn">media</a> <dd>The value of the first <code>media</code> parameter. <dt><a data-link-type="dfn" href="#concept-css-style-sheet-title" id="ref-for-concept-css-style-sheet-title①⑤">title</a> <dd><var>title</var>. @@ -2422,7 +2421,7 @@ <h3 class="heading settled" data-level="6.6" id="css-declaration-blocks"><span c </dl> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="parse-a-css-declaration-block">parse a CSS declaration block</dfn> from a string <var>string</var>, follow these steps:</p> <ol> - <li>Let <var>declarations</var> be the return value of invoking <a data-link-type="dfn" href="https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations" id="ref-for-parse-a-list-of-declarations">parse a list of declarations</a> with <var>string</var>. + <li>Let <var>declarations</var> be the return value of invoking <a data-link-type="dfn" href="https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations" id="ref-for-parse-a-list-of-declarations">parse a list of declarations</a> with <var>string</var>. <li>Let <var>parsed declarations</var> be a new empty list. <li> For each item <var>declaration</var> in <var>declarations</var>, follow these substeps: @@ -2916,7 +2915,7 @@ <h4 class="heading settled" data-level="6.7.2" id="serializing-css-values"><span <dd>The numerator serialized as per &lt;number> followed by the literal string "<code> / </code>", followed by the denominator serialized as per &lt;number>. - <dt><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css2/#value-def-shape" id="ref-for-value-def-shape">&lt;shape></a> + <dt><a class="production css" data-link-type="type" href="https://www.w3.org/TR/CSS21/visufx.html#value-def-shape" id="ref-for-value-def-shape">&lt;shape></a> <dd> The return value of the following algorithm: <ol> @@ -3107,11 +3106,11 @@ <h2 class="heading settled" data-level="9" id="resolved-values"><span class="sec as follows:</p> <dl class="switch"> <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-color" id="ref-for-propdef-background-color">background-color</a> - <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color" id="ref-for-propdef-border-block-end-color">border-block-end-color</a> - <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color" id="ref-for-propdef-border-block-start-color">border-block-start-color</a> + <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color" id="ref-for-propdef-border-block-end-color">border-block-end-color</a> + <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color" id="ref-for-propdef-border-block-start-color">border-block-start-color</a> <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color" id="ref-for-propdef-border-bottom-color">border-bottom-color</a> - <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color" id="ref-for-propdef-border-inline-end-color">border-inline-end-color</a> - <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color" id="ref-for-propdef-border-inline-start-color">border-inline-start-color</a> + <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color" id="ref-for-propdef-border-inline-end-color">border-inline-end-color</a> + <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color" id="ref-for-propdef-border-inline-start-color">border-inline-start-color</a> <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color" id="ref-for-propdef-border-left-color">border-left-color</a> <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color" id="ref-for-propdef-border-right-color">border-right-color</a> <dt><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color" id="ref-for-propdef-border-top-color">border-top-color</a> @@ -3688,6 +3687,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="500f2c1d">border-top-color</span> <li><span class="dfn-paneled" id="6916104d">box-shadow</span> </ul> + <li> + <a data-link-type="biblio">[CSS-BORDERS-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="26b72b18">border-block-end-color</span> + <li><span class="dfn-paneled" id="7b5a0ddb">border-block-start-color</span> + <li><span class="dfn-paneled" id="60e9c55d">border-inline-end-color</span> + <li><span class="dfn-paneled" id="635a5b71">border-inline-start-color</span> + </ul> <li> <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: <ul> @@ -3750,10 +3757,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[CSS-LOGICAL-1]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="f0c46389">block-size</span> - <li><span class="dfn-paneled" id="46f3dfbb">border-block-end-color</span> - <li><span class="dfn-paneled" id="f52484cc">border-block-start-color</span> - <li><span class="dfn-paneled" id="eb956f90">border-inline-end-color</span> - <li><span class="dfn-paneled" id="dfc674d2">border-inline-start-color</span> <li><span class="dfn-paneled" id="0fffddd1">inline-size</span> <li><span class="dfn-paneled" id="eb3aa672">logical property group</span> <li><span class="dfn-paneled" id="8ca0e73e">mapping logic</span> @@ -3839,11 +3842,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="eb7e3851">guaranteed-invalid value</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="c39f3645">&lt;shape></span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="fe1e6dc9">&lt;identifier></span> - <li><span class="dfn-paneled" id="3f47ca4a">&lt;shape></span> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> </ul> <li> @@ -3859,7 +3866,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="7e4aa58b">environment encoding</span> <li><span class="dfn-paneled" id="76c4403d">parse</span> <li><span class="dfn-paneled" id="569faf4d">parse a list of component values</span> - <li><span class="dfn-paneled" id="2ba7c7b7">parse a list of declarations</span> + <li><span class="dfn-paneled" id="69aefbfb">parse a list of declarations</span> <li><span class="dfn-paneled" id="9bf5ff7b">parse a rule</span> <li><span class="dfn-paneled" id="0f23e505">serialize an &lt;an+b> value</span> </ul> @@ -3908,17 +3915,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="086e3aff">origin</span> <li><span class="dfn-paneled" id="ba920583">style</span> </ul> - <li> - <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="7cf8cfc4">code units</span> - </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="6f2dfa22">ascii lowercase</span> <li><span class="dfn-paneled" id="a527e9ca">ascii uppercase</span> <li><span class="dfn-paneled" id="7b0d918d">break</span> + <li><span class="dfn-paneled" id="59912c93">code unit</span> <li><span class="dfn-paneled" id="f937b7b6">continue</span> <li><span class="dfn-paneled" id="16d07e10">for each</span> <li><span class="dfn-paneled" id="649608b9">list</span> @@ -3998,23 +4001,25 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dt id="biblio-css-borders-4">[CSS-BORDERS-4] + <dd><a href="https://drafts.csswg.org/css-borders-4/"><cite>CSS Borders and Box Decorations Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-borders-4/">https://drafts.csswg.org/css-borders-4/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-counter-styles-3">[CSS-COUNTER-STYLES-3] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-counter-styles/"><cite>CSS Counter Styles Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-counter-styles/">https://drafts.csswg.org/css-counter-styles/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-lists-3">[CSS-LISTS-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-lists-3/"><cite>CSS Lists and Counters Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-lists-3/">https://drafts.csswg.org/css-lists-3/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] @@ -4038,17 +4043,17 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-variables-1">[CSS-VARIABLES-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-variables/"><cite>CSS Custom Properties for Cascading Variables Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-variables/">https://drafts.csswg.org/css-variables/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css21">[CSS21] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-conditional">[CSS3-CONDITIONAL] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css3cascade">[CSS3CASCADE] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-3/">https://drafts.csswg.org/css-cascade-3/</a> <dt id="biblio-css3page">[CSS3PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css3syn">[CSS3SYN] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-dom">[DOM] @@ -4090,8 +4095,6 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dl> <dt id="biblio-compat">[COMPAT] <dd>Mike Taylor. <a href="https://compat.spec.whatwg.org/"><cite>Compatibility Standard</cite></a>. Living Standard. URL: <a href="https://compat.spec.whatwg.org/">https://compat.spec.whatwg.org/</a> - <dt id="biblio-i18n-glossary">[I18N-GLOSSARY] - <dd>Richard Ishida; Addison Phillips. <a href="https://w3c.github.io/i18n-glossary/"><cite>Internationalization Glossary</cite></a>. URL: <a href="https://w3c.github.io/i18n-glossary/">https://w3c.github.io/i18n-glossary/</a> <dt id="biblio-svg11">[SVG11] <dd>Erik Dahlström; et al. <a href="https://www.w3.org/TR/SVG11/"><cite>Scalable Vector Graphics (SVG) 1.1 (Second Edition)</cite></a>. 16 August 2011. REC. URL: <a href="https://www.w3.org/TR/SVG11/">https://www.w3.org/TR/SVG11/</a> </dl> @@ -4277,7 +4280,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="the-css.escape()-method"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape" title="The CSS.escape() static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.">CSS/escape</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape_static" title="The CSS.escape() static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.">CSS/escape_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>31+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>46+</span></span> @@ -4312,7 +4315,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSGroupingRule/cssRules" title="The cssRules property of the CSSGroupingRule interface returns a CSSRuleList containing a collection of CSSRule objects.">CSSGroupingRule/cssRules</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>45+</span></span> + <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>45+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4328,7 +4331,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSGroupingRule/deleteRule" title="The deleteRule() method of the CSSGroupingRule interface removes a CSS rule from a list of child CSS rules.">CSSGroupingRule/deleteRule</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>45+</span></span> + <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>45+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4344,7 +4347,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSGroupingRule/insertRule" title="The insertRule() method of the CSSGroupingRule interface adds a new CSS rule to a list of CSS rules.">CSSGroupingRule/insertRule</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>45+</span></span> + <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>45+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4483,11 +4486,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-cssgroupingrule-selectortext"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPageRule/selectorText" title="The selectorText property of the CSSPageRule interface gets and sets the selectors associated with the CSSPageRule.">CSSPageRule/selectorText</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>110+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4503,7 +4507,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPageRule/style" title="The style read-only property of the CSSPageRule interface returns a CSSStyleDeclaration object. This represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.">CSSPageRule/style</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>12+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4519,7 +4523,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CSSPageRule" title="CSSPageRule represents a single CSS @page rule.">CSSPageRule</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>19+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4960,7 +4964,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-elementcssinlinestyle-style"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style" title="The style read-only property returns the inline style of an element in the form of a CSSStyleDeclaration object that contains a list of all styles properties for that element with values assigned for the attributes that are defined in the element&apos;s inline style attribute.">HTMLElement/style</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style" title="The read-only style property of the HTMLElement returns the inline style of an element in the form of a live CSSStyleDeclaration object that contains a list of all styles properties for that element with values assigned only for the attributes that are defined in the element&apos;s inline style attribute.">HTMLElement/style</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -4972,11 +4976,37 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGElement/style" title="The read-only style property of the SVGElement returns the inline style of an element in the form of a live CSSStyleDeclaration object that contains a list of all styles properties for that element with values assigned only for the attributes that are defined in the element&apos;s inline style attribute.">SVGElement/style</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-medialist-mediatext"> + <details class="mdn-anno unpositioned" data-anno-for="dom-linkstyle-sheet"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList/mediaText" title="The mediaText property of the MediaList interface is a stringifier that returns a string representing the MediaList as text, and also allows you to set a new MediaList.">MediaList/mediaText</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement/sheet" title="The read-only sheet property of the HTMLLinkElement interface contains the stylesheet associated with that element.">HTMLLinkElement/sheet</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement/sheet" title="The read-only sheet property of the HTMLStyleElement interface contains the stylesheet associated with that element.">HTMLStyleElement/sheet</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -4988,11 +5018,37 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction/sheet" title="The read-only sheet property of the ProcessingInstruction interface contains the stylesheet associated to the ProcessingInstruction.">ProcessingInstruction/sheet</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGStyleElement/sheet" title="The SVGStyleElement.sheet read-only property returns the CSSStyleSheet corresponding to the given SVG style element, or null if there is none.">SVGStyleElement/sheet</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>38+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>25+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>25+</span></span> + </div> + </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="the-medialist-interface"> + <details class="mdn-anno unpositioned" data-anno-for="dom-medialist-appendmedium"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList" title="The MediaList interface represents the media queries of a stylesheet, e.g. those set using a <link> element&apos;s media attribute.">MediaList</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList/appendMedium" title="The appendMedium() method of the MediaList interface adds a media query to the list. If the media query is already in the collection, this method does nothing.">MediaList/appendMedium</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -5005,32 +5061,83 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="dom-linkstyle-sheet"> + <details class="mdn-anno unpositioned" data-anno-for="dom-medialist-deletemedium"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction/sheet" title="The read-only sheet property of the ProcessingInstruction interface represent the name of the stylesheet associated to the ProcessingInstruction.">ProcessingInstruction/sheet</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList/deleteMedium" title="The deleteMedium() method of the MediaList interface removes from this MediaList the given media query.">MediaList/deleteMedium</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-medialist-item"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGStyleElement/sheet" title="The SVGStyleElement.sheet read-only property returns the CSSStyleSheet corresponding to the given SVG style element, or null if there is none.">SVGStyleElement/sheet</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList/item" title="The item() method of the MediaList interface returns the media query at the specified index, or null if the specified index doesn&apos;t exist.">MediaList/item</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>38+</span></span> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>25+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>25+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-medialist-length"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList/length" title="The read-only length property of the MediaList interface returns the number of media queries in the list.">MediaList/length</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-medialist-mediatext"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList/mediaText" title="The mediaText property of the MediaList interface is a stringifier that returns a string representing the MediaList as text, and also allows you to set a new MediaList.">MediaList/mediaText</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="the-medialist-interface"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaList" title="The MediaList interface represents the media queries of a stylesheet, e.g. those set using a <link> element&apos;s media attribute.">MediaList</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> </details> @@ -5472,10 +5579,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "22ece843": {"dfnID":"22ece843","dfnText":"absolute-url string","external":true,"refSections":[{"refs":[{"id":"ref-for-absolute-url-string"}],"title":"6.1. CSS Style Sheets"},{"refs":[{"id":"ref-for-absolute-url-string\u2460"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://url.spec.whatwg.org/#absolute-url-string"}, "2309227f": {"dfnID":"2309227f","dfnText":"portrait","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-media-orientation-portrait"}],"title":"4.2.1. Serializing Media Feature Values"}],"url":"https://drafts.csswg.org/mediaqueries-4/#valdef-media-orientation-portrait"}, "24408a11": {"dfnID":"24408a11","dfnText":"compound selector","external":true,"refSections":[{"refs":[{"id":"ref-for-compound"},{"id":"ref-for-compound\u2460"}],"title":"5.2. Serializing Selectors"}],"url":"https://drafts.csswg.org/selectors-4/#compound"}, +"26b72b18": {"dfnID":"26b72b18","dfnText":"border-block-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color"}, "296f3551": {"dfnID":"296f3551","dfnText":"Element","external":true,"refSections":[{"refs":[{"id":"ref-for-element"}],"title":"6.1.1. The StyleSheet Interface"},{"refs":[{"id":"ref-for-element\u2460"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-element\u2461"}],"title":"6.6. CSS Declaration Blocks"},{"refs":[{"id":"ref-for-element\u2462"}],"title":"7.2. Extensions to the Window Interface"},{"refs":[{"id":"ref-for-element\u2463"},{"id":"ref-for-element\u2464"}],"title":"11.1. Changes From 5 December 2013"}],"url":"https://dom.spec.whatwg.org/#element"}, "2988c385": {"dfnID":"2988c385","dfnText":"::part()","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-part"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://drafts.csswg.org/css-shadow-parts-1/#selectordef-part"}, "29a4aea4": {"dfnID":"29a4aea4","dfnText":"<frequency>","external":true,"refSections":[{"refs":[{"id":"ref-for-frequency-value"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://drafts.csswg.org/css-values-4/#frequency-value"}, -"2ba7c7b7": {"dfnID":"2ba7c7b7","dfnText":"parse a list of declarations","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-list-of-declarations"}],"title":"6.6. CSS Declaration Blocks"}],"url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations"}, "2c4af168": {"dfnID":"2c4af168","dfnText":"LegacyNullToEmptyString","external":true,"refSections":[{"refs":[{"id":"ref-for-LegacyNullToEmptyString"}],"title":"4.4. The MediaList Interface"},{"refs":[{"id":"ref-for-LegacyNullToEmptyString\u2460"},{"id":"ref-for-LegacyNullToEmptyString\u2461"},{"id":"ref-for-LegacyNullToEmptyString\u2462"},{"id":"ref-for-LegacyNullToEmptyString\u2463"},{"id":"ref-for-LegacyNullToEmptyString\u2464"},{"id":"ref-for-LegacyNullToEmptyString\u2465"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://webidl.spec.whatwg.org/#LegacyNullToEmptyString"}, "2de81520": {"dfnID":"2de81520","dfnText":"<ratio>","external":true,"refSections":[{"refs":[{"id":"ref-for-ratio-value"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://drafts.csswg.org/css-values-4/#ratio-value"}, "2e9d7788": {"dfnID":"2e9d7788","dfnText":"CSSSupportsRule","external":true,"refSections":[{"refs":[{"id":"ref-for-csssupportsrule"}],"title":"6.4.2. The CSSRule Interface"}],"url":"https://drafts.csswg.org/css-conditional-3/#csssupportsrule"}, @@ -5488,12 +5595,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "358f1dbd": {"dfnID":"358f1dbd","dfnText":"referrer","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-referrer"}],"title":"6.3.1. Fetching CSS style sheets"}],"url":"https://fetch.spec.whatwg.org/#concept-request-referrer"}, "37c6bd4e": {"dfnID":"37c6bd4e","dfnText":"padding-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-right"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-right"}, "3bdfd276": {"dfnID":"3bdfd276","dfnText":"padding-block-end","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-block-end"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-padding-block-end"}, -"3f47ca4a": {"dfnID":"3f47ca4a","dfnText":"<shape>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-shape"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://drafts.csswg.org/css2/#value-def-shape"}, "402ed79d": {"dfnID":"402ed79d","dfnText":"CEReactions","external":true,"refSections":[{"refs":[{"id":"ref-for-cereactions"},{"id":"ref-for-cereactions\u2460"},{"id":"ref-for-cereactions\u2461"},{"id":"ref-for-cereactions\u2462"},{"id":"ref-for-cereactions\u2463"},{"id":"ref-for-cereactions\u2464"},{"id":"ref-for-cereactions\u2465"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions"}, "450958f7": {"dfnID":"450958f7","dfnText":"unsigned short","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-unsigned-short"},{"id":"ref-for-idl-unsigned-short\u2460"},{"id":"ref-for-idl-unsigned-short\u2461"},{"id":"ref-for-idl-unsigned-short\u2462"},{"id":"ref-for-idl-unsigned-short\u2463"},{"id":"ref-for-idl-unsigned-short\u2464"},{"id":"ref-for-idl-unsigned-short\u2465"},{"id":"ref-for-idl-unsigned-short\u2466"},{"id":"ref-for-idl-unsigned-short\u2467"}],"title":"6.4.2. The CSSRule Interface"}],"url":"https://webidl.spec.whatwg.org/#idl-unsigned-short"}, "45999d1c": {"dfnID":"45999d1c","dfnText":"NoModificationAllowedError","external":true,"refSections":[{"refs":[{"id":"ref-for-nomodificationallowederror"},{"id":"ref-for-nomodificationallowederror\u2460"},{"id":"ref-for-nomodificationallowederror\u2461"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://webidl.spec.whatwg.org/#nomodificationallowederror"}, "45e31baf": {"dfnID":"45e31baf","dfnText":"landscape","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-media-orientation-landscape"}],"title":"4.2.1. Serializing Media Feature Values"}],"url":"https://drafts.csswg.org/mediaqueries-4/#valdef-media-orientation-landscape"}, -"46f3dfbb": {"dfnID":"46f3dfbb","dfnText":"border-block-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-end-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color"}, "4733bae2": {"dfnID":"4733bae2","dfnText":"HierarchyRequestError","external":true,"refSections":[{"refs":[{"id":"ref-for-hierarchyrequesterror"}],"title":"6.4. CSS Rules"}],"url":"https://webidl.spec.whatwg.org/#hierarchyrequesterror"}, "49a5f65f": {"dfnID":"49a5f65f","dfnText":"padding-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-top"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-top"}, "49a64d88": {"dfnID":"49a64d88","dfnText":"html elements","external":true,"refSections":[{"refs":[{"id":"ref-for-html-elements"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#html-elements"}, @@ -5507,17 +5612,21 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "55e8f5de": {"dfnID":"55e8f5de","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-none"},{"id":"ref-for-valdef-display-none\u2460"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-none"}, "569faf4d": {"dfnID":"569faf4d","dfnText":"parse a list of component values","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-list-of-component-values"}],"title":"6.7.1. Parsing CSS Values"}],"url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values"}, "57376736": {"dfnID":"57376736","dfnText":"MathMLElement","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mathmlelement"}],"title":"7.1. \nThe ElementCSSInlineStyle Mixin"}],"url":"https://w3c.github.io/mathml-core/#dom-mathmlelement"}, +"59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"}],"title":"3. CSSOMString"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, "5c4b7db5": {"dfnID":"5c4b7db5","dfnText":"border-bottom-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color"}, "5c59509c": {"dfnID":"5c59509c","dfnText":"name","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-csskeyframesrule-name"}],"title":"6.4. CSS Rules"}],"url":"https://drafts.csswg.org/css-animations-1/#dom-csskeyframesrule-name"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"},{"id":"ref-for-window\u2460"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "5ec1baf3": {"dfnID":"5ec1baf3","dfnText":"namespace prefix","external":true,"refSections":[{"refs":[{"id":"ref-for-namespace-prefix"},{"id":"ref-for-namespace-prefix\u2460"},{"id":"ref-for-namespace-prefix\u2461"},{"id":"ref-for-namespace-prefix\u2462"},{"id":"ref-for-namespace-prefix\u2463"},{"id":"ref-for-namespace-prefix\u2464"}],"title":"5.2. Serializing Selectors"}],"url":"https://drafts.csswg.org/css-namespaces-3/#namespace-prefix"}, "5f7259bd": {"dfnID":"5f7259bd","dfnText":"pseudo-attribute","external":true,"refSections":[{"refs":[{"id":"ref-for-dt-pseudo-attribute"},{"id":"ref-for-dt-pseudo-attribute\u2460"},{"id":"ref-for-dt-pseudo-attribute\u2461"},{"id":"ref-for-dt-pseudo-attribute\u2462"},{"id":"ref-for-dt-pseudo-attribute\u2463"},{"id":"ref-for-dt-pseudo-attribute\u2464"},{"id":"ref-for-dt-pseudo-attribute\u2465"},{"id":"ref-for-dt-pseudo-attribute\u2466"},{"id":"ref-for-dt-pseudo-attribute\u2467"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"}],"url":"https://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"},{"id":"ref-for-idl-undefined\u2460"}],"title":"4.4. The MediaList Interface"},{"refs":[{"id":"ref-for-idl-undefined\u2461"}],"title":"6.1.2. The CSSStyleSheet Interface"},{"refs":[{"id":"ref-for-idl-undefined\u2462"}],"title":"6.1.2.1. Deprecated CSSStyleSheet members"},{"refs":[{"id":"ref-for-idl-undefined\u2463"}],"title":"6.4.5. The CSSGroupingRule Interface"},{"refs":[{"id":"ref-for-idl-undefined\u2464"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, +"60e9c55d": {"dfnID":"60e9c55d","dfnText":"border-inline-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color"}, +"635a5b71": {"dfnID":"635a5b71","dfnText":"border-inline-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color"}, "649608b9": {"dfnID":"649608b9","dfnText":"list","external":true,"refSections":[{"refs":[{"id":"ref-for-list"},{"id":"ref-for-list\u2460"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://infra.spec.whatwg.org/#list"}, "64fba2c3": {"dfnID":"64fba2c3","dfnText":"<counter>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-counter"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://drafts.csswg.org/css-lists-3/#typedef-counter"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "68164446": {"dfnID":"68164446","dfnText":"CSSKeyframeRule","external":true,"refSections":[{"refs":[{"id":"ref-for-csskeyframerule"}],"title":"6.4. CSS Rules"},{"refs":[{"id":"ref-for-csskeyframerule\u2460"}],"title":"6.4.2. The CSSRule Interface"}],"url":"https://drafts.csswg.org/css-animations-1/#csskeyframerule"}, "6916104d": {"dfnID":"6916104d","dfnText":"box-shadow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-box-shadow"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, +"69aefbfb": {"dfnID":"69aefbfb","dfnText":"parse a list of declarations","external":true,"refSections":[{"refs":[{"id":"ref-for-parse-a-list-of-declarations"}],"title":"6.6. CSS Declaration Blocks"}],"url":"https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations"}, "6a73137f": {"dfnID":"6a73137f","dfnText":"cors-same-origin","external":true,"refSections":[{"refs":[{"id":"ref-for-cors-same-origin"}],"title":"6.3.1. Fetching CSS style sheets"},{"refs":[{"id":"ref-for-cors-same-origin\u2460"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-cors-same-origin\u2461"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"}],"url":"https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-same-origin"}, "6f2dfa22": {"dfnID":"6f2dfa22","dfnText":"ascii lowercase","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-lowercase"},{"id":"ref-for-ascii-lowercase\u2460"}],"title":"4.2. Serializing Media Queries"},{"refs":[{"id":"ref-for-ascii-lowercase\u2461"},{"id":"ref-for-ascii-lowercase\u2462"},{"id":"ref-for-ascii-lowercase\u2463"},{"id":"ref-for-ascii-lowercase\u2464"},{"id":"ref-for-ascii-lowercase\u2465"}],"title":"6.6.1. The CSSStyleDeclaration Interface"},{"refs":[{"id":"ref-for-ascii-lowercase\u2466"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://infra.spec.whatwg.org/#ascii-lowercase"}, "6fba6744": {"dfnID":"6fba6744","dfnText":"following","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-tree-following"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"}],"url":"https://dom.spec.whatwg.org/#concept-tree-following"}, @@ -5528,7 +5637,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "76c4403d": {"dfnID":"76c4403d","dfnText":"parse","external":true,"refSections":[{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar"}],"title":"6.7.2. Serializing CSS Values"},{"refs":[{"id":"ref-for-css-parse-something-according-to-a-css-grammar\u2460"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, "797018a7": {"dfnID":"797018a7","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"},{"id":"ref-for-invalidstateerror\u2460"}],"title":"6.4. CSS Rules"}],"url":"https://webidl.spec.whatwg.org/#invalidstateerror"}, "7b0d918d": {"dfnID":"7b0d918d","dfnText":"break","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-break"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://infra.spec.whatwg.org/#iteration-break"}, -"7cf8cfc4": {"dfnID":"7cf8cfc4","dfnText":"code units","external":true,"refSections":[{"refs":[{"id":"ref-for-def_code_unit"}],"title":"3. CSSOMString"}],"url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, +"7b5a0ddb": {"dfnID":"7b5a0ddb","dfnText":"border-block-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color"}, "7e4aa58b": {"dfnID":"7e4aa58b","dfnText":"environment encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-environment-encoding"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"}],"url":"https://drafts.csswg.org/css-syntax-3/#environment-encoding"}, "82ca3efc": {"dfnID":"82ca3efc","dfnText":"TypeError","external":true,"refSections":[{"refs":[{"id":"ref-for-exceptiondef-typeerror"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://webidl.spec.whatwg.org/#exceptiondef-typeerror"}, "83120856": {"dfnID":"83120856","dfnText":"CSSKeyframesRule","external":true,"refSections":[{"refs":[{"id":"ref-for-csskeyframesrule"}],"title":"6.4. CSS Rules"},{"refs":[{"id":"ref-for-csskeyframesrule\u2460"}],"title":"6.4.2. The CSSRule Interface"}],"url":"https://drafts.csswg.org/css-animations-1/#csskeyframesrule"}, @@ -5593,6 +5702,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "be2d2b4c": {"dfnID":"be2d2b4c","dfnText":"SyntaxError","external":true,"refSections":[{"refs":[{"id":"ref-for-syntaxerror"}],"title":"6.4. CSS Rules"}],"url":"https://webidl.spec.whatwg.org/#syntaxerror"}, "c006b7f3": {"dfnID":"c006b7f3","dfnText":"document base url","external":true,"refSections":[{"refs":[{"id":"ref-for-document-base-url"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-document-base-url\u2460"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#document-base-url"}, "c095490e": {"dfnID":"c095490e","dfnText":"ProcessingInstruction","external":true,"refSections":[{"refs":[{"id":"ref-for-processinginstruction"}],"title":"6.1.1. The StyleSheet Interface"},{"refs":[{"id":"ref-for-processinginstruction\u2460"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"}],"url":"https://dom.spec.whatwg.org/#processinginstruction"}, +"c39f3645": {"dfnID":"c39f3645","dfnText":"<shape>","external":true,"refSections":[{"refs":[{"id":"ref-for-value-def-shape"}],"title":"6.7.2. Serializing CSS Values"}],"url":"https://www.w3.org/TR/CSS21/visufx.html#value-def-shape"}, "c3e881ef": {"dfnID":"c3e881ef","dfnText":"SecurityError","external":true,"refSections":[{"refs":[{"id":"ref-for-securityerror"},{"id":"ref-for-securityerror\u2460"},{"id":"ref-for-securityerror\u2461"}],"title":"6.1.2. The CSSStyleSheet Interface"}],"url":"https://webidl.spec.whatwg.org/#securityerror"}, "c6d19e56": {"dfnID":"c6d19e56","dfnText":"event loop","external":true,"refSections":[{"refs":[{"id":"ref-for-event-loop"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-loop"}, "c807e273": {"dfnID":"c807e273","dfnText":"NewObject","external":true,"refSections":[{"refs":[{"id":"ref-for-NewObject"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://webidl.spec.whatwg.org/#NewObject"}, @@ -5617,7 +5727,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "concept-css-style-sheet-css-rules": {"dfnID":"concept-css-style-sheet-css-rules","dfnText":"CSS rules","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-css-rules"}],"title":"6.1. CSS Style Sheets"},{"refs":[{"id":"ref-for-concept-css-style-sheet-css-rules\u2460"},{"id":"ref-for-concept-css-style-sheet-css-rules\u2461"},{"id":"ref-for-concept-css-style-sheet-css-rules\u2462"}],"title":"6.1.2. The CSSStyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-css-rules\u2463"}],"title":"6.1.2.1. Deprecated CSSStyleSheet members"}],"url":"#concept-css-style-sheet-css-rules"}, "concept-css-style-sheet-disabled-flag": {"dfnID":"concept-css-style-sheet-disabled-flag","dfnText":"disabled flag","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-disabled-flag"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2460"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2461"}],"title":"6.1.1. The StyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2462"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2463"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2464"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2465"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2466"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2467"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2468"},{"id":"ref-for-concept-css-style-sheet-disabled-flag\u2460\u24ea"}],"title":"6.2. CSS Style Sheet Collections"}],"url":"#concept-css-style-sheet-disabled-flag"}, "concept-css-style-sheet-location": {"dfnID":"concept-css-style-sheet-location","dfnText":"location","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-location"}],"title":"6.1.1. The StyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-location\u2460"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-concept-css-style-sheet-location\u2461"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"}],"url":"#concept-css-style-sheet-location"}, -"concept-css-style-sheet-media": {"dfnID":"concept-css-style-sheet-media","dfnText":"media","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-media"},{"id":"ref-for-concept-css-style-sheet-media\u2460"},{"id":"ref-for-concept-css-style-sheet-media\u2461"},{"id":"ref-for-concept-css-style-sheet-media\u2462"}],"title":"6.1. CSS Style Sheets"},{"refs":[{"id":"ref-for-concept-css-style-sheet-media\u2463"}],"title":"6.1.1. The StyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-media\u2464"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-concept-css-style-sheet-media\u2465"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"}],"url":"#concept-css-style-sheet-media"}, +"concept-css-style-sheet-media": {"dfnID":"concept-css-style-sheet-media","dfnText":"media","external":false,"refSections":[],"url":"#concept-css-style-sheet-media"}, "concept-css-style-sheet-origin-clean-flag": {"dfnID":"concept-css-style-sheet-origin-clean-flag","dfnText":"origin-clean flag","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag"},{"id":"ref-for-concept-css-style-sheet-origin-clean-flag\u2460"},{"id":"ref-for-concept-css-style-sheet-origin-clean-flag\u2461"}],"title":"6.1.2. The CSSStyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag\u2462"}],"title":"6.2. CSS Style Sheet Collections"},{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag\u2463"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag\u2464"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"},{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag\u2465"}],"title":"7.2. Extensions to the Window Interface"}],"url":"#concept-css-style-sheet-origin-clean-flag"}, "concept-css-style-sheet-owner-css-rule": {"dfnID":"concept-css-style-sheet-owner-css-rule","dfnText":"owner CSS rule","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-css-rule"}],"title":"6.1.2. The CSSStyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-css-rule\u2460"}],"title":"6.2. CSS Style Sheet Collections"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-css-rule\u2461"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-css-rule\u2462"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"}],"url":"#concept-css-style-sheet-owner-css-rule"}, "concept-css-style-sheet-owner-node": {"dfnID":"concept-css-style-sheet-owner-node","dfnText":"owner node","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node"},{"id":"ref-for-concept-css-style-sheet-owner-node\u2460"},{"id":"ref-for-concept-css-style-sheet-owner-node\u2461"},{"id":"ref-for-concept-css-style-sheet-owner-node\u2462"},{"id":"ref-for-concept-css-style-sheet-owner-node\u2463"}],"title":"6.1. CSS Style Sheets"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node\u2464"}],"title":"6.1.1. The StyleSheet Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node\u2465"}],"title":"6.2. CSS Style Sheet Collections"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node\u2466"}],"title":"6.3. Style Sheet Association"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node\u2467"}],"title":"6.3.2. The LinkStyle Interface"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node\u2468"}],"title":"6.3.4. Requirements on user agents Implementing the xml-stylesheet processing instruction"},{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node\u2460\u24ea"}],"title":"6.3.5. Requirements on user agents Implementing the HTTP Link Header"}],"url":"#concept-css-style-sheet-owner-node"}, @@ -5664,7 +5774,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "dcffbccd": {"dfnID":"dcffbccd","dfnText":"url","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url"},{"id":"ref-for-concept-url\u2460"}],"title":"6.4.4. The CSSImportRule Interface"}],"url":"https://url.spec.whatwg.org/#concept-url"}, "dde41168": {"dfnID":"dde41168","dfnText":"left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-left"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-left"}, "de39d615": {"dfnID":"de39d615","dfnText":"default namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-default-namespace"},{"id":"ref-for-default-namespace\u2460"}],"title":"5.2. Serializing Selectors"}],"url":"https://drafts.csswg.org/css-namespaces-3/#default-namespace"}, -"dfc674d2": {"dfnID":"dfc674d2","dfnText":"border-inline-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-start-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color"}, "documentorshadowroot-document-or-shadow-root-css-style-sheets": {"dfnID":"documentorshadowroot-document-or-shadow-root-css-style-sheets","dfnText":"document or shadow root CSS style sheets","external":false,"refSections":[{"refs":[{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets"},{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets\u2460"},{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets\u2461"},{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets\u2462"}],"title":"6.2. CSS Style Sheet Collections"},{"refs":[{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets\u2463"}],"title":"6.2.3. Extensions to the DocumentOrShadowRoot Interface Mixin"},{"refs":[{"id":"ref-for-documentorshadowroot-document-or-shadow-root-css-style-sheets\u2464"}],"title":"6.3.2. The LinkStyle Interface"}],"url":"#documentorshadowroot-document-or-shadow-root-css-style-sheets"}, "dom-css-escape": {"dfnID":"dom-css-escape","dfnText":"escape(ident)","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-css-escape"},{"id":"ref-for-dom-css-escape\u2460"},{"id":"ref-for-dom-css-escape\u2461"}],"title":"8.1. The CSS.escape() Method"},{"refs":[{"id":"ref-for-dom-css-escape\u2462"}],"title":"11.2. Changes From 12 July 2011 To 5 December 2013"}],"url":"#dom-css-escape"}, "dom-css-escape-ident-ident": {"dfnID":"dom-css-escape-ident-ident","dfnText":"ident","external":false,"refSections":[],"url":"#dom-css-escape-ident-ident"}, @@ -5773,14 +5882,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "eb1b1af3": {"dfnID":"eb1b1af3","dfnText":"network error","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-network-error"}],"title":"6.3.1. Fetching CSS style sheets"}],"url":"https://fetch.spec.whatwg.org/#concept-network-error"}, "eb3aa672": {"dfnID":"eb3aa672","dfnText":"logical property group","external":true,"refSections":[{"refs":[{"id":"ref-for-logical-property-group"}],"title":"6.6. CSS Declaration Blocks"},{"refs":[{"id":"ref-for-logical-property-group\u2460"},{"id":"ref-for-logical-property-group\u2461"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://drafts.csswg.org/css-logical-1/#logical-property-group"}, "eb7e3851": {"dfnID":"eb7e3851","dfnText":"guaranteed-invalid value","external":true,"refSections":[{"refs":[{"id":"ref-for-guaranteed-invalid-value"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://drafts.csswg.org/css-variables-2/#guaranteed-invalid-value"}, -"eb956f90": {"dfnID":"eb956f90","dfnText":"border-inline-end-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-inline-end-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color"}, "elementcssinlinestyle": {"dfnID":"elementcssinlinestyle","dfnText":"ElementCSSInlineStyle","external":false,"refSections":[{"refs":[{"id":"ref-for-elementcssinlinestyle"},{"id":"ref-for-elementcssinlinestyle\u2460"},{"id":"ref-for-elementcssinlinestyle\u2461"},{"id":"ref-for-elementcssinlinestyle\u2462"}],"title":"7.1. \nThe ElementCSSInlineStyle Mixin"}],"url":"#elementcssinlinestyle"}, "enable-a-css-style-sheet-set": {"dfnID":"enable-a-css-style-sheet-set","dfnText":"enable a CSS style sheet set","external":false,"refSections":[{"refs":[{"id":"ref-for-enable-a-css-style-sheet-set"},{"id":"ref-for-enable-a-css-style-sheet-set\u2460"}],"title":"6.2. CSS Style Sheet Collections"}],"url":"#enable-a-css-style-sheet-set"}, "enabled-css-style-sheet-set": {"dfnID":"enabled-css-style-sheet-set","dfnText":"enabled CSS style sheet set","external":false,"refSections":[{"refs":[{"id":"ref-for-enabled-css-style-sheet-set"}],"title":"6.2.1. The HTTP Default-Style Header"}],"url":"#enabled-css-style-sheet-set"}, "escape-a-character": {"dfnID":"escape-a-character","dfnText":"escape a character","external":false,"refSections":[{"refs":[{"id":"ref-for-escape-a-character"},{"id":"ref-for-escape-a-character\u2460"},{"id":"ref-for-escape-a-character\u2461"}],"title":"2.1. Common Serializing Idioms"}],"url":"#escape-a-character"}, "escape-a-character-as-code-point": {"dfnID":"escape-a-character-as-code-point","dfnText":"escape a character as code point","external":false,"refSections":[{"refs":[{"id":"ref-for-escape-a-character-as-code-point"},{"id":"ref-for-escape-a-character-as-code-point\u2460"},{"id":"ref-for-escape-a-character-as-code-point\u2461"},{"id":"ref-for-escape-a-character-as-code-point\u2462"}],"title":"2.1. Common Serializing Idioms"}],"url":"#escape-a-character-as-code-point"}, "f0c46389": {"dfnID":"f0c46389","dfnText":"block-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-block-size"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-block-size"}, -"f52484cc": {"dfnID":"f52484cc","dfnText":"border-block-start-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-block-start-color"}],"title":"9. Resolved Values"}],"url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color"}, "f78d5b5c": {"dfnID":"f78d5b5c","dfnText":"origin","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-origin"}],"title":"6.3.1. Fetching CSS style sheets"}],"url":"https://fetch.spec.whatwg.org/#concept-request-origin"}, "f8434dee": {"dfnID":"f8434dee","dfnText":"being rendered","external":true,"refSections":[{"refs":[{"id":"ref-for-being-rendered"}],"title":"7.2. Extensions to the Window Interface"}],"url":"https://html.spec.whatwg.org/multipage/rendering.html#being-rendered"}, "f937b7b6": {"dfnID":"f937b7b6","dfnText":"continue","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-continue"},{"id":"ref-for-iteration-continue\u2460"},{"id":"ref-for-iteration-continue\u2461"}],"title":"6.6.1. The CSSStyleDeclaration Interface"}],"url":"https://infra.spec.whatwg.org/#iteration-continue"}, @@ -6233,7 +6340,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#frequency-value": "Expands to: hz | khz", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", @@ -6326,7 +6433,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#concept-css-style-sheet-css-rules": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"css rules","type":"dfn","url":"#concept-css-style-sheet-css-rules"}, "#concept-css-style-sheet-disabled-flag": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"disabled flag","type":"dfn","url":"#concept-css-style-sheet-disabled-flag"}, "#concept-css-style-sheet-location": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"location","type":"dfn","url":"#concept-css-style-sheet-location"}, -"#concept-css-style-sheet-media": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"media","type":"dfn","url":"#concept-css-style-sheet-media"}, "#concept-css-style-sheet-origin-clean-flag": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"origin-clean flag","type":"dfn","url":"#concept-css-style-sheet-origin-clean-flag"}, "#concept-css-style-sheet-owner-css-rule": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"owner css rule","type":"dfn","url":"#concept-css-style-sheet-owner-css-rule"}, "#concept-css-style-sheet-owner-node": {"export":true,"for_":["CSSStyleSheet"],"level":"1","normative":true,"shortname":"cssom","spec":"cssom-1","status":"local","text":"owner node","type":"dfn","url":"#concept-css-style-sheet-owner-node"}, @@ -6507,6 +6613,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-right-color","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-top-color","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"box-shadow","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-end-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-block-start-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-end-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color"}, +"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-borders","spec":"css-borders-4","status":"current","text":"border-inline-start-color","type":"property","url":"https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color"}, "https://drafts.csswg.org/css-box-4/#propdef-margin-bottom": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin-bottom","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin-bottom"}, "https://drafts.csswg.org/css-box-4/#propdef-margin-left": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin-left","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "https://drafts.csswg.org/css-box-4/#propdef-margin-right": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"margin-right","type":"property","url":"https://drafts.csswg.org/css-box-4/#propdef-margin-right"}, @@ -6538,10 +6648,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-logical-1/#logical-property-group": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"logical property group","type":"dfn","url":"https://drafts.csswg.org/css-logical-1/#logical-property-group"}, "https://drafts.csswg.org/css-logical-1/#mapping-logic": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"mapping logic","type":"dfn","url":"https://drafts.csswg.org/css-logical-1/#mapping-logic"}, "https://drafts.csswg.org/css-logical-1/#propdef-block-size": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"block-size","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-block-size"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-end-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-block-start-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-end-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color"}, -"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"border-inline-start-color","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color"}, "https://drafts.csswg.org/css-logical-1/#propdef-inline-size": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"inline-size","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-inline-size"}, "https://drafts.csswg.org/css-logical-1/#propdef-margin-block-end": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"margin-block-end","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block-end"}, "https://drafts.csswg.org/css-logical-1/#propdef-margin-block-start": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-logical","spec":"css-logical-1","status":"current","text":"margin-block-start","type":"property","url":"https://drafts.csswg.org/css-logical-1/#propdef-margin-block-start"}, @@ -6570,7 +6676,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#css-parse-something-according-to-a-css-grammar"}, "https://drafts.csswg.org/css-syntax-3/#environment-encoding": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"environment encoding","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#environment-encoding"}, "https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse a list of component values","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-component-values"}, -"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse a list of declarations","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#parse-a-list-of-declarations"}, "https://drafts.csswg.org/css-syntax-3/#parse-a-rule": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"parse a rule","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#parse-a-rule"}, "https://drafts.csswg.org/css-syntax-3/#serialize-an-anb-value": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"serialize an <an+b> value","type":"dfn","url":"https://drafts.csswg.org/css-syntax-3/#serialize-an-anb-value"}, "https://drafts.csswg.org/css-syntax-3/#typedef-whitespace-token": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"current","text":"<whitespace-token>","type":"type","url":"https://drafts.csswg.org/css-syntax-3/#typedef-whitespace-token"}, @@ -6593,7 +6698,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-variables-2/#guaranteed-invalid-value": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-variables","spec":"css-variables-2","status":"current","text":"guaranteed-invalid value","type":"dfn","url":"https://drafts.csswg.org/css-variables-2/#guaranteed-invalid-value"}, "https://drafts.csswg.org/css2/#propdef-line-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"line-height","type":"property","url":"https://drafts.csswg.org/css2/#propdef-line-height"}, "https://drafts.csswg.org/css2/#value-def-identifier": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<identifier>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-identifier"}, -"https://drafts.csswg.org/css2/#value-def-shape": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css22","status":"current","text":"<shape>","type":"type","url":"https://drafts.csswg.org/css2/#value-def-shape"}, "https://drafts.csswg.org/mediaqueries-4/#descdef-media-color": {"export":true,"for_":["@media"],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"color","type":"descriptor","url":"https://drafts.csswg.org/mediaqueries-4/#descdef-media-color"}, "https://drafts.csswg.org/mediaqueries-4/#valdef-media-orientation-landscape": {"export":true,"for_":["@media/orientation"],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"landscape","type":"value","url":"https://drafts.csswg.org/mediaqueries-4/#valdef-media-orientation-landscape"}, "https://drafts.csswg.org/mediaqueries-4/#valdef-media-orientation-portrait": {"export":true,"for_":["@media/orientation"],"level":"4","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-4","status":"current","text":"portrait","type":"value","url":"https://drafts.csswg.org/mediaqueries-4/#valdef-media-orientation-portrait"}, @@ -6636,6 +6740,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/xhtml.html#xml-parser": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"","status":"anchor-block","text":"xml parser","type":"dfn","url":"https://html.spec.whatwg.org/multipage/xhtml.html#xml-parser"}, "https://infra.spec.whatwg.org/#ascii-lowercase": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ascii lowercase","type":"dfn","url":"https://infra.spec.whatwg.org/#ascii-lowercase"}, "https://infra.spec.whatwg.org/#ascii-uppercase": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ascii uppercase","type":"dfn","url":"https://infra.spec.whatwg.org/#ascii-uppercase"}, +"https://infra.spec.whatwg.org/#code-unit": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"code unit","type":"dfn","url":"https://infra.spec.whatwg.org/#code-unit"}, "https://infra.spec.whatwg.org/#iteration-break": {"export":true,"for_":["iteration"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"break","type":"dfn","url":"https://infra.spec.whatwg.org/#iteration-break"}, "https://infra.spec.whatwg.org/#iteration-continue": {"export":true,"for_":["iteration"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"continue","type":"dfn","url":"https://infra.spec.whatwg.org/#iteration-continue"}, "https://infra.spec.whatwg.org/#list": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"list","type":"dfn","url":"https://infra.spec.whatwg.org/#list"}, @@ -6646,7 +6751,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://url.spec.whatwg.org/#concept-url": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"","status":"anchor-block","text":"url","type":"dfn","url":"https://url.spec.whatwg.org/#concept-url"}, "https://url.spec.whatwg.org/#concept-url-parser": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"","status":"anchor-block","text":"url parser","type":"dfn","url":"https://url.spec.whatwg.org/#concept-url-parser"}, "https://url.spec.whatwg.org/#concept-url-serializer": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"","status":"anchor-block","text":"url serializer","type":"dfn","url":"https://url.spec.whatwg.org/#concept-url-serializer"}, -"https://w3c.github.io/i18n-glossary/#def_code_unit": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"code units","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, "https://w3c.github.io/mathml-core/#dom-mathmlelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"mathml-core","spec":"mathml-core","status":"current","text":"MathMLElement","type":"interface","url":"https://w3c.github.io/mathml-core/#dom-mathmlelement"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#LegacyNullToEmptyString": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"LegacyNullToEmptyString","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#LegacyNullToEmptyString"}, @@ -6667,6 +6771,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#notfounderror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"NotFoundError","type":"exception","url":"https://webidl.spec.whatwg.org/#notfounderror"}, "https://webidl.spec.whatwg.org/#securityerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SecurityError","type":"exception","url":"https://webidl.spec.whatwg.org/#securityerror"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"https://www.w3.org/TR/CSS21/visufx.html#value-def-shape": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"<shape>","type":"type","url":"https://www.w3.org/TR/CSS21/visufx.html#value-def-shape"}, +"https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"snapshot","text":"parse a list of declarations","type":"dfn","url":"https://www.w3.org/TR/css-syntax-3/#parse-a-list-of-declarations"}, "https://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"","status":"anchor-block","text":"pseudo-attribute","type":"dfn","url":"https://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute"}, "https://www.w3.org/TR/xml-stylesheet/#dt-xml-stylesheet-processing-instruction": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom","spec":"","status":"anchor-block","text":"xml-stylesheet processing instruction","type":"dfn","url":"https://www.w3.org/TR/xml-stylesheet/#dt-xml-stylesheet-processing-instruction"}, }; diff --git a/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.console.txt index 3815ea30cf..098d7b78b0 100644 --- a/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.console.txt @@ -1,3 +1,9 @@ +LINE 135: Multiple possible 'parent element' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#parent-element +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:parent element +spec:wai-aria-1.2; type:dfn; text:parent element +<a bs-line-number="135" data-link-type="dfn" data-lt="parent element">parent element</a> LINE 322: No 'dfn' refs found for 'case-sensitive' with spec 'html'. <a bs-line-number="322" data-link-type="dfn" data-lt="case-sensitive">case-sensitive</a> LINE 717: Multiple possible 'event loop' dfn refs. @@ -6,12 +12,36 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:html; type:dfn; for:agent; text:event loop spec:html; type:dfn; for:/; text:event loop <a bs-line-number="717" data-link-spec="html" data-link-type="dfn" data-lt="event loop">event loop</a> +LINE 746: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-view-1; type:dfn; for:MediaQueryList; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="746" data-link-type="dfn" data-lt="media">media</a> +LINE 780: Ambiguous for-less link for 'media', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:cssom-view-1; type:dfn; for:MediaQueryList; text:media +for-less references: +spec:css2; type:dfn; for:/; text:media +<a bs-line-number="780" data-link-type="dfn" data-lt="media">media</a> LINE 788: No 'dfn' refs found for 'context object' with spec 'dom'. <a bs-line-number="788" data-link-spec="dom" data-link-type="dfn" data-lt="context object">context object</a> LINE 796: No 'dfn' refs found for 'context object' with spec 'dom'. <a bs-line-number="796" data-link-spec="dom" data-link-type="dfn" data-lt="context object">context object</a> LINE 802: No 'dfn' refs found for 'context object' with spec 'dom'. <a bs-line-number="802" data-link-spec="dom" data-link-type="dfn" data-lt="context object">context object</a> +LINE ~1261: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~1266: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE 1636: Multiple possible 'event loop' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/webappapis.html#concept-agent-event-loop To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -32,6 +62,8 @@ spec:html; type:dfn; for:/; text:event loop <a bs-line-number="1776" data-link-spec="html" data-link-type="dfn" data-lt="event loop">event loop</a> WARNING: Multiple elements have the same ID '06950d36'. Deduping, but this ID may not be stable across revisions. +LINE 1738: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'eventdef-document-scrollend' ID found, skipping MDN features that would target it. WARNING: No 'dom-visualviewport-height' ID found, skipping MDN features that would target it. WARNING: No 'dom-visualviewport-offsetleft' ID found, skipping MDN features that would target it. WARNING: No 'dom-visualviewport-offsettop' ID found, skipping MDN features that would target it. @@ -52,6 +84,8 @@ LINE 385: Unexported dfn that's not referenced locally - did you mean to export <dfn bs-line-number="385" data-lt="smooth scroll completed" data-dfn-type="dfn" id="smooth-scroll-completed" data-noexport="by-default" class="dfn-paneled">completed</dfn> LINE 391: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="391" data-dfn-type="dfn" id="scroll-to-the-beginning-of-the-document" data-lt="scroll to the beginning of the document" data-noexport="by-default" class="dfn-paneled">scroll to the beginning of the document</dfn> +LINE 722: Unexported dfn that's not referenced locally - did you mean to export it? +<dfn bs-line-number="722" data-dfn-for="MediaQueryList" data-dfn-type="dfn" id="mediaquerylist-media" data-lt="media" data-noexport="by-default" class="dfn-paneled">media</dfn> LINE 730: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="730" data-dfn-type="dfn" id="evaluate-media-queries-and-report-changes" data-lt="evaluate media queries and report changes" data-noexport="by-default" class="dfn-paneled">evaluate media queries and report changes</dfn> LINE 1638: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.html b/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.html index 1fb10d9cf9..b031b531c8 100644 --- a/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/cssom-view-1/Overview.html @@ -5,7 +5,6 @@ <title>CSSOM View Module</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/cssom-view-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1275,7 +1274,7 @@ <h1 class="p-name no-ref" id="title">CSSOM View Module</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1297,7 +1296,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[cssom-view] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bcssom-view%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1590,7 +1589,7 @@ <h3 class="heading settled" data-level="2.1" id="css-pixels"><span class="secno" <p class="note" role="note"><span class="marker">Note:</span> This does not apply to e.g. <code class="idl"><a data-link-type="idl" href="#dom-window-matchmedia" id="ref-for-dom-window-matchmedia">matchMedia()</a></code> as the units are explicitly given there.</p> <h3 class="heading settled" data-level="2.2" id="zooming"><span class="secno">2.2. </span><span class="content">Zooming</span><a class="self-link" href="#zooming"></a></h3> <p>There are two kinds of zoom, <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="page-zoom">page zoom</dfn> which affects the size of the initial viewport, and <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="pinch-zoom">pinch zoom</dfn> which acts like -a magnifying glass and does not affect the initial viewport or actual viewport. <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Device Adaptation Module Level 1">[CSS-DEVICE-ADAPT]</a></p> +a magnifying glass and does not affect the initial viewport or actual viewport. <a data-link-type="biblio" href="#biblio-css-device-adapt" title="CSS Viewport Module Level 1">[CSS-DEVICE-ADAPT]</a></p> <h3 class="heading settled" data-level="2.3" id="web-exposed-screen-information"><span class="secno">2.3. </span><span class="content">Web-exposed screen information</span><a class="self-link" href="#web-exposed-screen-information"></a></h3> <p>User agents may choose to hide information about the screen of the output device, in order to protect the user’s privacy. In order to do so in a consistent manner across APIs, this specification @@ -2015,7 +2014,7 @@ <h3 class="heading settled" data-level="4.2" id="the-mediaquerylist-interface">< <li>If <var>target</var>’s <a data-link-type="dfn" href="#mediaquerylist-matches-state" id="ref-for-mediaquerylist-matches-state">matches state</a> has changed since the last time these steps were run, <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire">fire an event</a> at <var>target</var> using the <code class="idl"><a data-link-type="idl" href="#mediaquerylistevent" id="ref-for-mediaquerylistevent">MediaQueryListEvent</a></code> constructor, with its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-type" id="ref-for-dom-event-type">type</a></code> attribute initialized to <a class="idl-code" data-link-type="event" href="#eventdef-mediaquerylist-change" id="ref-for-eventdef-mediaquerylist-change">change</a>, its <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-event-istrusted" id="ref-for-dom-event-istrusted">isTrusted</a></code> attribute initialized to true, - its <code class="idl"><a data-link-type="idl" href="#dom-mediaquerylist-media" id="ref-for-dom-mediaquerylist-media">media</a></code> attribute initialized to <var>target</var>’s <a data-link-type="dfn" href="#mediaquerylist-media" id="ref-for-mediaquerylist-media">media</a>, + its <code class="idl"><a data-link-type="idl" href="#dom-mediaquerylist-media" id="ref-for-dom-mediaquerylist-media">media</a></code> attribute initialized to <var>target</var>’s <a data-link-type="dfn">media</a>, and its <code class="idl"><a data-link-type="idl" href="#dom-mediaquerylistevent-matches" id="ref-for-dom-mediaquerylistevent-matches">matches</a></code> attribute initialized to <var>target</var>’s <span id="ref-for-mediaquerylist-matches-state①">matches state</span>. </ol> </ol> @@ -2041,7 +2040,7 @@ <h3 class="heading settled" data-level="4.2" id="the-mediaquerylist-interface">< }; </pre> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="MediaQueryList" data-dfn-type="attribute" data-export id="dom-mediaquerylist-media"><code>media</code></dfn> attribute must return -the associated <a data-link-type="dfn" href="#mediaquerylist-media" id="ref-for-mediaquerylist-media①">media</a>.</p> +the associated <a data-link-type="dfn">media</a>.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="MediaQueryList" data-dfn-type="attribute" data-export id="dom-mediaquerylist-matches"><code>matches</code></dfn> attribute must return the associated <a data-link-type="dfn" href="#mediaquerylist-matches-state" id="ref-for-mediaquerylist-matches-state②">matches state</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="MediaQueryList" data-dfn-type="method" data-export id="dom-mediaquerylist-addlistener"><code>addListener(<var>callback</var>)</code></dfn> method, @@ -3789,15 +3788,15 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-device-adapt">[CSS-DEVICE-ADAPT] - <dd>Rune Lillesveen; Florian Rivoal; Matt Rakow. <a href="https://drafts.csswg.org/css-device-adapt/"><cite>CSS Device Adaptation Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-device-adapt/">https://drafts.csswg.org/css-device-adapt/</a> + <dd>Florian Rivoal; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/css-viewport/"><cite>CSS Viewport Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-viewport/">https://drafts.csswg.org/css-viewport/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -4094,7 +4093,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-document-caretpositionfrompoint"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/caretPositionFromPoint" title="The caretPositionFromPoint() property of the Document interface returns a CaretPosition object, containing the DOM node, along with the caret and caret&apos;s character offset within that node.">Document/caretPositionFromPoint</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/caretPositionFromPoint" title="The caretPositionFromPoint() method of the Document interface returns a CaretPosition object, containing the DOM node, along with the caret and caret&apos;s character offset within that node.">Document/caretPositionFromPoint</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>20+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> @@ -4142,7 +4141,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="eventdef-document-scroll"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/scroll_event" title="The scroll event fires when the document view has been scrolled. For element scrolling, see Element: scroll event.">Document/scroll_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/scroll_event" title="The scroll event fires when the document view has been scrolled. To detect when scrolling has completed, see the Document: scrollend event. For element scrolling, see Element: scroll event.">Document/scroll_event</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>6+</span></span><span class="safari yes"><span>Safari</span><span>2+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -4155,7 +4154,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/scroll_event" title="The scroll event fires when an element has been scrolled.">Element/scroll_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/scroll_event" title="The scroll event fires when an element has been scrolled. To detect when scrolling has completed, see the Element: scrollend event.">Element/scroll_event</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>6+</span></span><span class="safari yes"><span>Safari</span><span>1.3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -4379,11 +4378,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollLeft" title="The Element.scrollLeft property gets or sets the number of pixels that an element&apos;s content is scrolled from its left edge.">Element/scrollLeft</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>86+</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>8+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>8+</span></span><span class="edge_blink yes"><span>Edge</span><span>86+</span></span> <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>5+</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie yes"><span>IE</span><span>5+</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> </div> @@ -5364,33 +5363,33 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </details> <details class="caniuse-status unpositioned" data-anno-for="dom-window-matchmedia" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>9+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>6+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>5.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>5.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=matchmedia">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>9+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>6+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>5.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>5.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=matchmedia">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="dom-window-devicepixelratio" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>18+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>11+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>11+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11.6+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=devicepixelratio">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.1+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>18+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>11+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>11+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11.6+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>3.2+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=devicepixelratio">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="dom-document-elementfrompoint" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>5+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=element-from-point">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>15+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>6+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>11+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>5+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=element-from-point">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="dom-element-getboundingclientrect" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>12+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>10.6+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>11+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=getboundingclientrect">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>2.3+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb yes"><span>Blackberry Browser</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>4+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>12+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span><span class="ie_mob yes"><span>IE Mobile</span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>10.6+</span></span><span class="op_mini yes"><span>Opera Mini</span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>11+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>4.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=getboundingclientrect">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="dom-element-scrollintoview" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>8+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>48+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung partial"><span><span>Samsung Internet (limited)</span></span><span>4+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=scrollintoview">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>8+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>48+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>8.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=scrollintoview">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="smooth-scrolling" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>48+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>15.4+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>8.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-scroll-behavior">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>48+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>15.4+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>8.2+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-scroll-behavior">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -5893,7 +5892,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "mediaquerylist": {"dfnID":"mediaquerylist","dfnText":"MediaQueryList","external":false,"refSections":[{"refs":[{"id":"ref-for-mediaquerylist"},{"id":"ref-for-mediaquerylist\u2460"}],"title":"4. Extensions to the Window Interface"},{"refs":[{"id":"ref-for-mediaquerylist\u2461"},{"id":"ref-for-mediaquerylist\u2462"},{"id":"ref-for-mediaquerylist\u2463"},{"id":"ref-for-mediaquerylist\u2464"},{"id":"ref-for-mediaquerylist\u2465"},{"id":"ref-for-mediaquerylist\u2466"},{"id":"ref-for-mediaquerylist\u2467"}],"title":"4.2. The MediaQueryList Interface"},{"refs":[{"id":"ref-for-mediaquerylist\u2468"},{"id":"ref-for-mediaquerylist\u2460\u24ea"}],"title":"4.2.1. Event summary"},{"refs":[{"id":"ref-for-mediaquerylist\u2460\u2460"},{"id":"ref-for-mediaquerylist\u2460\u2461"}],"title":"Changes From 17 December 2013 To 31 January 2020"}],"url":"#mediaquerylist"}, "mediaquerylist-document": {"dfnID":"mediaquerylist-document","dfnText":"document","external":false,"refSections":[{"refs":[{"id":"ref-for-mediaquerylist-document"}],"title":"4. Extensions to the Window Interface"},{"refs":[{"id":"ref-for-mediaquerylist-document\u2460"},{"id":"ref-for-mediaquerylist-document\u2461"}],"title":"4.2. The MediaQueryList Interface"}],"url":"#mediaquerylist-document"}, "mediaquerylist-matches-state": {"dfnID":"mediaquerylist-matches-state","dfnText":"matches state","external":false,"refSections":[{"refs":[{"id":"ref-for-mediaquerylist-matches-state"},{"id":"ref-for-mediaquerylist-matches-state\u2460"},{"id":"ref-for-mediaquerylist-matches-state\u2461"}],"title":"4.2. The MediaQueryList Interface"},{"refs":[{"id":"ref-for-mediaquerylist-matches-state\u2462"}],"title":"4.2.1. Event summary"}],"url":"#mediaquerylist-matches-state"}, -"mediaquerylist-media": {"dfnID":"mediaquerylist-media","dfnText":"media","external":false,"refSections":[{"refs":[{"id":"ref-for-mediaquerylist-media"},{"id":"ref-for-mediaquerylist-media\u2460"}],"title":"4.2. The MediaQueryList Interface"}],"url":"#mediaquerylist-media"}, +"mediaquerylist-media": {"dfnID":"mediaquerylist-media","dfnText":"media","external":false,"refSections":[],"url":"#mediaquerylist-media"}, "mediaquerylistevent": {"dfnID":"mediaquerylistevent","dfnText":"MediaQueryListEvent","external":false,"refSections":[{"refs":[{"id":"ref-for-mediaquerylistevent"}],"title":"4.2. The MediaQueryList Interface"}],"url":"#mediaquerylistevent"}, "normalize-non-finite-values": {"dfnID":"normalize-non-finite-values","dfnText":"normalize non-finite values","external":false,"refSections":[{"refs":[{"id":"ref-for-normalize-non-finite-values"},{"id":"ref-for-normalize-non-finite-values\u2460"}],"title":"4. Extensions to the Window Interface"},{"refs":[{"id":"ref-for-normalize-non-finite-values\u2461"},{"id":"ref-for-normalize-non-finite-values\u2462"},{"id":"ref-for-normalize-non-finite-values\u2463"},{"id":"ref-for-normalize-non-finite-values\u2464"},{"id":"ref-for-normalize-non-finite-values\u2465"},{"id":"ref-for-normalize-non-finite-values\u2466"}],"title":"6. Extensions to the Element Interface"}],"url":"#normalize-non-finite-values"}, "overflow-directions": {"dfnID":"overflow-directions","dfnText":"overflow directions","external":false,"refSections":[{"refs":[{"id":"ref-for-overflow-directions"},{"id":"ref-for-overflow-directions\u2460"},{"id":"ref-for-overflow-directions\u2461"},{"id":"ref-for-overflow-directions\u2462"},{"id":"ref-for-overflow-directions\u2463"},{"id":"ref-for-overflow-directions\u2464"},{"id":"ref-for-overflow-directions\u2465"},{"id":"ref-for-overflow-directions\u2466"},{"id":"ref-for-overflow-directions\u2467"},{"id":"ref-for-overflow-directions\u2468"}],"title":"2. Terminology"},{"refs":[{"id":"ref-for-overflow-directions\u2460\u24ea"},{"id":"ref-for-overflow-directions\u2460\u2460"},{"id":"ref-for-overflow-directions\u2460\u2461"},{"id":"ref-for-overflow-directions\u2460\u2462"}],"title":"4. Extensions to the Window Interface"},{"refs":[{"id":"ref-for-overflow-directions\u2460\u2463"},{"id":"ref-for-overflow-directions\u2460\u2464"},{"id":"ref-for-overflow-directions\u2460\u2465"},{"id":"ref-for-overflow-directions\u2460\u2466"}],"title":"6.1. Element Scrolling Members"}],"url":"#overflow-directions"}, @@ -6490,7 +6489,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#mediaquerylist": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"MediaQueryList","type":"interface","url":"#mediaquerylist"}, "#mediaquerylist-document": {"export":true,"for_":["MediaQueryList"],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"document","type":"dfn","url":"#mediaquerylist-document"}, "#mediaquerylist-matches-state": {"export":true,"for_":["MediaQueryList"],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"matches state","type":"dfn","url":"#mediaquerylist-matches-state"}, -"#mediaquerylist-media": {"export":true,"for_":["MediaQueryList"],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"media","type":"dfn","url":"#mediaquerylist-media"}, "#mediaquerylistevent": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"MediaQueryListEvent","type":"interface","url":"#mediaquerylistevent"}, "#normalize-non-finite-values": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"normalize non-finite values","type":"dfn","url":"#normalize-non-finite-values"}, "#overflow-directions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"cssom-view","spec":"cssom-view-1","status":"local","text":"overflow directions","type":"dfn","url":"#overflow-directions"}, @@ -6542,7 +6540,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://dom.spec.whatwg.org/#dom-range-startoffset": {"export":true,"for_":["Range"],"level":"1","normative":true,"shortname":"cssom-view","spec":"","status":"anchor-block","text":"startOffset","type":"attribute","url":"https://dom.spec.whatwg.org/#dom-range-startoffset"}, "https://dom.spec.whatwg.org/#element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Element","type":"interface","url":"https://dom.spec.whatwg.org/#element"}, "https://dom.spec.whatwg.org/#event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Event","type":"interface","url":"https://dom.spec.whatwg.org/#event"}, -"https://dom.spec.whatwg.org/#event-listener-callback": {"export":false,"for_":["event listener"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"callback","type":"dfn","url":"https://dom.spec.whatwg.org/#event-listener-callback"}, +"https://dom.spec.whatwg.org/#event-listener-callback": {"export":true,"for_":["event listener"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"callback","type":"dfn","url":"https://dom.spec.whatwg.org/#event-listener-callback"}, "https://dom.spec.whatwg.org/#event-listener-capture": {"export":false,"for_":["event listener"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"capture","type":"dfn","url":"https://dom.spec.whatwg.org/#event-listener-capture"}, "https://dom.spec.whatwg.org/#event-listener-type": {"export":false,"for_":["event listener"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"type","type":"dfn","url":"https://dom.spec.whatwg.org/#event-listener-type"}, "https://dom.spec.whatwg.org/#eventtarget": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventTarget","type":"interface","url":"https://dom.spec.whatwg.org/#eventtarget"}, diff --git a/tests/github/w3c/csswg-drafts/indexes/Overview.console.txt b/tests/github/w3c/csswg-drafts/indexes/Overview.console.txt index 53bf07f276..77d5c22e5b 100644 --- a/tests/github/w3c/csswg-drafts/indexes/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/indexes/Overview.console.txt @@ -1 +1,2 @@ WARNING: `Complain About: mixed-indents yes` is active, but I couldn't infer the document's indentation. Be more consistent, or turn this lint off. +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/indexes/Overview.html b/tests/github/w3c/csswg-drafts/indexes/Overview.html index 8d9c9f9c22..83061a1660 100644 --- a/tests/github/w3c/csswg-drafts/indexes/Overview.html +++ b/tests/github/w3c/csswg-drafts/indexes/Overview.html @@ -5,7 +5,6 @@ <title>CSS Indexes</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="---" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -434,7 +433,7 @@ <h1 class="p-name no-ref" id="title">CSS Indexes</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -452,7 +451,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> <p data-deliverer="32061"> This document was published by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a Group Note - using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Note track</a>. + using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. Group Notes are not endorsed by W3C nor its Members. </p> <p>Please send feedback by <a href="https://github.com/w3c/csswg-drafts/issues">filing issues in GitHub</a> (preferred), @@ -460,8 +459,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[indexes] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bindexes%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>The <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">15 September 2020 W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>The <a href="https://www.w3.org/policies/patent-policy/20200915/">15 September 2020 W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -539,23 +538,14 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-align-3/#propdef-align-self">property, in css-align-3</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-align-self">property, in css-flexbox-1</a> </ul> - <li><a href="https://drafts.csswg.org/css-grid-3/#propdef-align-tracks">align-tracks</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#propdef-all">all</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-default">anchor-default</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-name">anchor-name</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-scroll">anchor-scroll</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-scope">anchor-scope</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation">animation</a> <li><a href="https://drafts.csswg.org/css-animations-2/#propdef-animation-composition">animation-composition</a> - <li> - animation-delay - <ul> - <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-delay">property, in css-animations-1</a> - <li><a href="https://www.w3.org/TR/scroll-animations-1/#propdef-animation-delay">property, in scroll-animations-1</a> - </ul> - <li><a href="https://www.w3.org/TR/scroll-animations-1/#propdef-animation-delay-end">animation-delay-end</a> - <li><a href="https://www.w3.org/TR/scroll-animations-1/#propdef-animation-delay-start">animation-delay-start</a> + <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-delay">animation-delay</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-direction">animation-direction</a> - <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-duration">animation-duration</a> + <li><a href="https://drafts.csswg.org/css-animations-2/#propdef-animation-duration">animation-duration</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-fill-mode">animation-fill-mode</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count">animation-iteration-count</a> <li><a href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name">animation-name</a> @@ -572,10 +562,12 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li> aspect-ratio <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#descdef-container-aspect-ratio">descriptor, in css-contain-3, for @container</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#descdef-container-aspect-ratio">descriptor, in css-conditional-5, for @container</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#descdef-container-aspect-ratio">descriptor, in css-contain-3, for @container</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-aspect-ratio">descriptor, in mediaqueries-5, for @media</a> <li><a href="https://drafts.csswg.org/css-sizing-4/#propdef-aspect-ratio">property, in css-sizing-4</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-azimuth">azimuth</a> <li><a href="https://drafts.fxtf.org/filter-effects-2/#propdef-backdrop-filter">backdrop-filter</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#propdef-backface-visibility">backface-visibility</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background">background</a> @@ -596,7 +588,8 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li> block-size <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#descdef-container-block-size">descriptor, in css-contain-3, for @container</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#descdef-container-block-size">descriptor, in css-conditional-5, for @container</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#descdef-container-block-size">descriptor, in css-contain-3, for @container</a> <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-block-size">property, in css-logical-1</a> </ul> <li><a href="https://drafts.csswg.org/css-rhythm-1/#propdef-block-step">block-step</a> @@ -608,80 +601,344 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-content-3/#propdef-bookmark-level">bookmark-level</a> <li><a href="https://drafts.csswg.org/css-content-3/#propdef-bookmark-state">bookmark-state</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border">border</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block">border-block</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-color">border-block-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end">border-block-end</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color">border-block-end-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-style">border-block-end-style</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-width">border-block-end-width</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start">border-block-start</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color">border-block-start-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-style">border-block-start-style</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-width">border-block-start-width</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-style">border-block-style</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-width">border-block-width</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom">border-bottom</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color">border-bottom-color</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-left-radius">border-bottom-left-radius</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius">border-bottom-right-radius</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style">border-bottom-style</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width">border-bottom-width</a> + <li> + border-block + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block">property, in css-logical-1</a> + </ul> + <li> + border-block-color + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-color">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-color">property, in css-logical-1</a> + </ul> + <li> + border-block-end + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end">property, in css-logical-1</a> + </ul> + <li> + border-block-end-color + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-color">property, in css-logical-1</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-radius">border-block-end-radius</a> + <li> + border-block-end-style + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-style">property, in css-logical-1</a> + </ul> + <li> + border-block-end-width + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-end-width">property, in css-logical-1</a> + </ul> + <li> + border-block-start + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start">property, in css-logical-1</a> + </ul> + <li> + border-block-start-color + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-color">property, in css-logical-1</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-radius">border-block-start-radius</a> + <li> + border-block-start-style + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-style">property, in css-logical-1</a> + </ul> + <li> + border-block-start-width + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-start-width">property, in css-logical-1</a> + </ul> + <li> + border-block-style + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-style">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-style">property, in css-logical-1</a> + </ul> + <li> + border-block-width + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-block-width">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-block-width">property, in css-logical-1</a> + </ul> + <li> + border-bottom + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom">property, in css-borders-4</a> + </ul> + <li> + border-bottom-color + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-color">property, in css-borders-4</a> + </ul> + <li> + border-bottom-left-radius + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-left-radius">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-left-radius">property, in css-borders-4</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-radius">border-bottom-radius</a> + <li> + border-bottom-right-radius + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-right-radius">property, in css-borders-4</a> + </ul> + <li> + border-bottom-style + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-style">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-style">property, in css-borders-4</a> + </ul> + <li> + border-bottom-width + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-width">property, in css-borders-4</a> + </ul> <li><a href="https://drafts.csswg.org/css-round-display-1/#propdef-border-boundary">border-boundary</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-clip">border-clip</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-clip-bottom">border-clip-bottom</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-clip-left">border-clip-left</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-clip-right">border-clip-right</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-clip-top">border-clip-top</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse">border-collapse</a> + <li> + border-color + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-color">property, in css-borders-4</a> + </ul> + <li> + border-end-end-radius + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-end-end-radius">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-end-end-radius">property, in css-logical-1</a> + </ul> <li> - border-collapse + border-end-start-radius <ul> - <li><a href="https://drafts.csswg.org/css-tables-3/#propdef-border-collapse">property, in css-tables-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-border-collapse">property, in css22</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-end-start-radius">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-end-start-radius">property, in css-logical-1</a> </ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color">border-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-end-end-radius">border-end-end-radius</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-end-start-radius">border-end-start-radius</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image">border-image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-outset">border-image-outset</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-repeat">border-image-repeat</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-slice">border-image-slice</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-source">border-image-source</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-width">border-image-width</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline">border-inline</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-color">border-inline-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end">border-inline-end</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color">border-inline-end-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-style">border-inline-end-style</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-width">border-inline-end-width</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start">border-inline-start</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color">border-inline-start-color</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-style">border-inline-start-style</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-width">border-inline-start-width</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-style">border-inline-style</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-width">border-inline-width</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left">border-left</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color">border-left-color</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style">border-left-style</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width">border-left-width</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius">border-radius</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right">border-right</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color">border-right-color</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style">border-right-style</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width">border-right-width</a> - <li> - border-spacing - <ul> - <li><a href="https://drafts.csswg.org/css-tables-3/#propdef-border-spacing">property, in css-tables-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-border-spacing">property, in css22</a> - </ul> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-start-end-radius">border-start-end-radius</a> - <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-start-start-radius">border-start-start-radius</a> + <li> + border-inline + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline">property, in css-logical-1</a> + </ul> + <li> + border-inline-color + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-color">property, in css-logical-1</a> + </ul> + <li> + border-inline-end + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end">property, in css-logical-1</a> + </ul> + <li> + border-inline-end-color + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-color">property, in css-logical-1</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-radius">border-inline-end-radius</a> + <li> + border-inline-end-style + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-style">property, in css-logical-1</a> + </ul> + <li> + border-inline-end-width + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-end-width">property, in css-logical-1</a> + </ul> + <li> + border-inline-start + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start">property, in css-logical-1</a> + </ul> + <li> + border-inline-start-color + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-color">property, in css-logical-1</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-radius">border-inline-start-radius</a> + <li> + border-inline-start-style + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-style">property, in css-logical-1</a> + </ul> + <li> + border-inline-start-width + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-start-width">property, in css-logical-1</a> + </ul> + <li> + border-inline-style + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-style">property, in css-logical-1</a> + </ul> + <li> + border-inline-width + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-inline-width">property, in css-logical-1</a> + </ul> + <li> + border-left + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-left">property, in css-borders-4</a> + </ul> + <li> + border-left-color + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-left-color">property, in css-borders-4</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-left-radius">border-left-radius</a> + <li> + border-left-style + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-style">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-left-style">property, in css-borders-4</a> + </ul> + <li> + border-left-width + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-left-width">property, in css-borders-4</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-limit">border-limit</a> + <li> + border-radius + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-radius">property, in css-borders-4</a> + </ul> + <li> + border-right + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-right">property, in css-borders-4</a> + </ul> + <li> + border-right-color + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-right-color">property, in css-borders-4</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-right-radius">border-right-radius</a> + <li> + border-right-style + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-style">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-right-style">property, in css-borders-4</a> + </ul> + <li> + border-right-width + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-right-width">property, in css-borders-4</a> + </ul> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing">border-spacing</a> + <li> + border-start-end-radius + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-start-end-radius">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-start-end-radius">property, in css-logical-1</a> + </ul> + <li> + border-start-start-radius + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-start-start-radius">property, in css-borders-4</a> + <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-border-start-start-radius">property, in css-logical-1</a> + </ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style">border-style</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top">border-top</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color">border-top-color</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius">border-top-left-radius</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius">border-top-right-radius</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style">border-top-style</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width">border-top-width</a> + <li> + border-top + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top">property, in css-borders-4</a> + </ul> + <li> + border-top-color + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top-color">property, in css-borders-4</a> + </ul> + <li> + border-top-left-radius + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top-left-radius">property, in css-borders-4</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top-radius">border-top-radius</a> + <li> + border-top-right-radius + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top-right-radius">property, in css-borders-4</a> + </ul> + <li> + border-top-style + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-style">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top-style">property, in css-borders-4</a> + </ul> + <li> + border-top-width + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-border-top-width">property, in css-borders-4</a> + </ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-border-width">border-width</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-bottom">bottom</a> <li><a href="https://drafts.csswg.org/css-break-4/#propdef-box-decoration-break">box-decoration-break</a> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow">box-shadow</a> + <li> + box-shadow + <ul> + <li><a href="https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow">property, in css-backgrounds-3</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow">property, in css-borders-4</a> + </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-blur">box-shadow-blur</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-color">box-shadow-color</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-offset">box-shadow-offset</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-position">box-shadow-position</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-spread">box-shadow-spread</a> <li> box-sizing <ul> @@ -707,21 +964,12 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-break-4/#propdef-break-inside">property, in css-break-4</a> <li><a href="https://www.w3.org/TR/css-regions-1/#propdef-break-inside">property, in css-regions-1</a> </ul> - <li> - caption-side - <ul> - <li><a href="https://drafts.csswg.org/css-tables-3/#propdef-caption-side">property, in css-tables-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-caption-side">property, in css22</a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side">caption-side</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-caret">caret</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-caret-animation">caret-animation</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-caret-color">caret-color</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-caret-shape">caret-shape</a> - <li> - clear - <ul> - <li><a href="https://drafts.csswg.org/css-page-floats-3/#propdef-clear">property, in css-page-floats-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-clear">property, in css22</a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-clear">clear</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip">clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-path">clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-clip-rule">clip-rule</a> @@ -750,9 +998,24 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-multicol-1/#propdef-column-width">column-width</a> <li><a href="https://drafts.csswg.org/css-color-5/#descdef-color-profile-components">components</a> <li><a href="https://drafts.csswg.org/css-contain-2/#propdef-contain">contain</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#propdef-container">container</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#propdef-container-name">container-name</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#propdef-container-type">container-type</a> + <li> + container + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#propdef-container">property, in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#propdef-container">property, in css-contain-3</a> + </ul> + <li> + container-name + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#propdef-container-name">property, in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#propdef-container-name">property, in css-contain-3</a> + </ul> + <li> + container-type + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#propdef-container-type">property, in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#propdef-container-type">property, in css-contain-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-block-size">contain-intrinsic-block-size</a> <li><a href="https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-height">contain-intrinsic-height</a> <li><a href="https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-inline-size">contain-intrinsic-inline-size</a> @@ -762,12 +1025,29 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-contain-2/#propdef-content-visibility">content-visibility</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#propdef-continue">continue</a> <li><a href="https://drafts.csswg.org/css-gcpm-4/#propdef-copy-into">copy-into</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-corners">corners</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#propdef-corner-shape">corner-shape</a> <li><a href="https://drafts.csswg.org/css-lists-3/#propdef-counter-increment">counter-increment</a> <li><a href="https://drafts.csswg.org/css-lists-3/#propdef-counter-reset">counter-reset</a> <li><a href="https://drafts.csswg.org/css-lists-3/#propdef-counter-set">counter-set</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">cue</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">cue-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">cue-before</a> + <li> + cue + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue">property, in css2</a> + </ul> + <li> + cue-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-after">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-after">property, in css2</a> + </ul> + <li> + cue-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-cue-before">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-cue-before">property, in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-cursor">cursor</a> <li><a href="https://svgwg.org/svg2-draft/geometry.html#CxProperty">cx</a> <li><a href="https://svgwg.org/svg2-draft/geometry.html#CyProperty">cy</a> @@ -781,14 +1061,12 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-display-mode">display-mode</a> <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-dominant-baseline">dominant-baseline</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-dynamic-range">dynamic-range</a> - <li> - empty-cells - <ul> - <li><a href="https://drafts.csswg.org/css-tables-3/#propdef-empty-cells">property, in css-tables-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-empty-cells">property, in css22</a> - </ul> + <li><a href="https://drafts.csswg.org/css-color-hdr/#propdef-dynamic-range-limit">dynamic-range-limit</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-elevation">elevation</a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells">empty-cells</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-environment-blending">environment-blending</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-fallback">fallback</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-field-sizing">field-sizing</a> <li> fill <ul> @@ -822,12 +1100,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow">flex-grow</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-shrink">flex-shrink</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#propdef-flex-wrap">flex-wrap</a> - <li> - float - <ul> - <li><a href="https://drafts.csswg.org/css-page-floats-3/#propdef-float">property, in css-page-floats-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-float">property, in css22</a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-float">float</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#propdef-float-defer">float-defer</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#propdef-float-offset">float-offset</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#propdef-float-reference">float-reference</a> @@ -872,12 +1145,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-size">property, in css-fonts-4</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust">font-size-adjust</a> - <li> - font-stretch - <ul> - <li><a href="https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-stretch">descriptor, in css-fonts-4, for @font-face</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-stretch">property, in css-fonts-4</a> - </ul> + <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-stretch">font-stretch</a> <li> font-style <ul> @@ -885,6 +1153,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-style">property, in css-fonts-4</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis">font-synthesis</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-position">font-synthesis-position</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-small-caps">font-synthesis-small-caps</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-style">font-synthesis-style</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-weight">font-synthesis-weight</a> @@ -908,6 +1177,12 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-weight">descriptor, in css-fonts-4, for @font-face</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-weight">property, in css-fonts-4</a> </ul> + <li> + font-width + <ul> + <li><a href="https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-width">descriptor, in css-fonts-4, for @font-face</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#propdef-font-width">property, in css-fonts-4</a> + </ul> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#propdef-forced-color-adjust">forced-color-adjust</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-forced-colors">forced-colors</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-gap">gap</a> @@ -939,7 +1214,8 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li> height <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#descdef-container-height">descriptor, in css-contain-3, for @container</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#descdef-container-height">descriptor, in css-conditional-5, for @container</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#descdef-container-height">descriptor, in css-contain-3, for @container</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-height">descriptor, in mediaqueries-5, for @media</a> <li><a href="https://drafts.csswg.org/css-sizing-3/#propdef-height">property, in css-sizing-3</a> </ul> @@ -962,18 +1238,21 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li> inline-size <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#descdef-container-inline-size">descriptor, in css-contain-3, for @container</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#descdef-container-inline-size">descriptor, in css-conditional-5, for @container</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#descdef-container-inline-size">descriptor, in css-contain-3, for @container</a> <li><a href="https://drafts.csswg.org/css-logical-1/#propdef-inline-size">property, in css-logical-1</a> </ul> <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-inline-sizing">inline-sizing</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-input-security">input-security</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset">inset</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#propdef-inset-area">inset-area</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset-block">inset-block</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset-block-end">inset-block-end</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset-block-start">inset-block-start</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset-inline">inset-inline</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset-inline-end">inset-inline-end</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-inset-inline-start">inset-inline-start</a> + <li><a href="https://drafts.csswg.org/css-values-5/#propdef-interpolate-size">interpolate-size</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-inverted-colors">inverted-colors</a> <li><a href="https://drafts.fxtf.org/compositing-2/#propdef-isolation">isolation</a> <li> @@ -984,14 +1263,12 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 </ul> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-items">justify-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-justify-self">justify-self</a> - <li><a href="https://drafts.csswg.org/css-grid-3/#propdef-justify-tracks">justify-tracks</a> - <li><a href="https://drafts.csswg.org/css-display-4/#propdef-layout-order">layout-order</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-leading-trim">leading-trim</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-left">left</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-letter-spacing">letter-spacing</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#propdef-lighting-color">lighting-color</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-line-break">line-break</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#propdef-line-clamp">line-clamp</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-line-fit-edge">line-fit-edge</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#descdef-font-face-line-gap-override">line-gap-override</a> <li><a href="https://drafts.csswg.org/css-line-grid-1/#propdef-line-grid">line-grid</a> <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-line-height">line-height</a> @@ -1039,7 +1316,6 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat">mask-repeat</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-size">mask-size</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#propdef-mask-type">mask-type</a> - <li><a href="https://drafts.csswg.org/css-grid-3/#propdef-masonry-auto-flow">masonry-auto-flow</a> <li><a href="https://w3c.github.io/mathml-core/#propdef-math-depth">math-depth</a> <li><a href="https://w3c.github.io/mathml-core/#propdef-math-shift">math-shift</a> <li><a href="https://w3c.github.io/mathml-core/#propdef-math-style">math-style</a> @@ -1057,6 +1333,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-monochrome">monochrome</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-nav-controls">nav-controls</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-nav-down">nav-down</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#descdef-view-transition-navigation">navigation</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-nav-left">nav-left</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-nav-right">nav-right</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-nav-up">nav-up</a> @@ -1080,7 +1357,8 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li> orientation <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#descdef-container-orientation">descriptor, in css-contain-3, for @container</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#descdef-container-orientation">descriptor, in css-conditional-5, for @container</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#descdef-container-orientation">descriptor, in css-contain-3, for @container</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-orientation">descriptor, in mediaqueries-5, for @media</a> </ul> <li><a href="https://drafts.csswg.org/css-break-4/#propdef-orphans">orphans</a> @@ -1117,6 +1395,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-text-4/#propdef-overflow-wrap">overflow-wrap</a> <li><a href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow-x">overflow-x</a> <li><a href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow-y">overflow-y</a> + <li><a href="https://drafts.csswg.org/css-position-4/#propdef-overlay">overlay</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#descdef-font-palette-values-override-colors">override-colors</a> <li><a href="https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior">overscroll-behavior</a> <li><a href="https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior-block">overscroll-behavior-block</a> @@ -1136,23 +1415,47 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-box-4/#propdef-padding-right">padding-right</a> <li><a href="https://drafts.csswg.org/css-box-4/#propdef-padding-top">padding-top</a> <li><a href="https://drafts.csswg.org/css-page-3/#propdef-page">page</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-page-break-after">page-break-after</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-page-break-before">page-break-before</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-page-break-inside">page-break-inside</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-after">page-break-after</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-before">page-break-before</a> + <li><a href="https://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside">page-break-inside</a> <li><a href="https://drafts.csswg.org/css-page-3/#descdef-page-page-orientation">page-orientation</a> <li><a href="https://svgwg.org/svg2-draft/painting.html#PaintOrderProperty">paint-order</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">pause</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">pause-after</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">pause-before</a> + <li> + pause + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause">property, in css2</a> + </ul> + <li> + pause-after + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-after">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-after">property, in css2</a> + </ul> + <li> + pause-before + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-pause-before">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pause-before">property, in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-transforms-2/#propdef-perspective">perspective</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#propdef-perspective-origin">perspective-origin</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch">pitch</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-pitch-range">pitch-range</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-content">place-content</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-items">place-items</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-place-self">place-self</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-play-during">play-during</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-pointer">pointer</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-pointer-events">pointer-events</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-position">position</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-fallback">position-fallback</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-anchor">position-anchor</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-area">position-area</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try">position-try</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try-fallbacks">position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#propdef-position-try-options">position-try-options</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try-order">position-try-order</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#propdef-position-visibility">position-visibility</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-color-scheme">prefers-color-scheme</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-contrast">prefers-contrast</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-reduced-data">prefers-reduced-data</a> @@ -1160,11 +1463,11 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-reduced-transparency">prefers-reduced-transparency</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-prefix">prefix</a> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#propdef-print-color-adjust">print-color-adjust</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-property-name">property-name</a> + <li><a href="https://www.w3.org/TR/CSS21/about.html#propdef-property-name">property-name</a> <li><a href="https://drafts.csswg.org/css-content-3/#propdef-quotes">quotes</a> <li><a href="https://svgwg.org/svg2-draft/geometry.html#RProperty">r</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-range">range</a> - <li><a href="https://drafts.csswg.org/css-display-4/#propdef-reading-order">reading-order</a> + <li><a href="https://drafts.csswg.org/css-display-4/#propdef-reading-flow">reading-flow</a> <li><a href="https://drafts.csswg.org/css-regions-1/#propdef-region-fragment">region-fragment</a> <li><a href="https://drafts.csswg.org/css-color-5/#descdef-color-profile-rendering-intent">rendering-intent</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef-resize">resize</a> @@ -1172,6 +1475,8 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest">rest</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-after">rest-after</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-rest-before">rest-before</a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#descdef-function-result">result</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-richness">richness</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-right">right</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#propdef-rotate">rotate</a> <li><a href="https://drafts.csswg.org/css-align-3/#propdef-row-gap">row-gap</a> @@ -1204,6 +1509,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-left">scroll-margin-left</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-right">scroll-margin-right</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-top">scroll-margin-top</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#propdef-scroll-marker-group">scroll-marker-group</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding">scroll-padding</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block">scroll-padding-block</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block-end">scroll-padding-block-end</a> @@ -1218,12 +1524,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-align">scroll-snap-align</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-stop">scroll-snap-stop</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-type">scroll-snap-type</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start">scroll-start</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-block">scroll-start-block</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-inline">scroll-start-inline</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-target">scroll-start-target</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-x">scroll-start-x</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-y">scroll-start-y</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-scroll-timeline">scroll-timeline</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-scroll-timeline-axis">scroll-timeline-axis</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-scroll-timeline-name">scroll-timeline-name</a> @@ -1251,13 +1552,22 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-nav-1/#propdef-spatial-navigation-action">spatial-navigation-action</a> <li><a href="https://drafts.csswg.org/css-nav-1/#propdef-spatial-navigation-contain">spatial-navigation-contain</a> <li><a href="https://drafts.csswg.org/css-nav-1/#propdef-spatial-navigation-function">spatial-navigation-function</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">speak</a> + <li> + speak + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak">property, in css2</a> + </ul> <li> speak-as <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-speak-as">descriptor, in css-counter-styles-3, for @counter-style</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-speak-as">property, in css-speech-1</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-header">speak-header</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-numeral">speak-numeral</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speak-punctuation">speak-punctuation</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-speech-rate">speech-rate</a> <li> src <ul> @@ -1266,6 +1576,7 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 </ul> <li><a href="https://svgwg.org/svg2-draft/pservers.html#StopColorProperty">stop-color</a> <li><a href="https://svgwg.org/svg2-draft/pservers.html#StopOpacityProperty">stop-opacity</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-stress">stress</a> <li><a href="https://drafts.csswg.org/css-content-3/#propdef-string-set">string-set</a> <li> stroke @@ -1333,18 +1644,16 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-symbols">symbols</a> <li><a href="https://drafts.css-houdini.org/css-properties-values-api-1/#descdef-property-syntax">syntax</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-system">system</a> - <li> - table-layout - <ul> - <li><a href="https://drafts.csswg.org/css-tables-3/#propdef-table-layout">property, in css-tables-3</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-table-layout">property, in css22</a> - </ul> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#propdef-table-layout">table-layout</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-tab-size">tab-size</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-align">text-align</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-align-all">text-align-all</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-align-last">text-align-last</a> <li><a href="https://svgwg.org/svg2-draft/text.html#TextAnchorProperty">text-anchor</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-autospace">text-autospace</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-text-box">text-box</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-text-box-edge">text-box-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-text-box-trim">text-box-trim</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-text-combine-upright">text-combine-upright</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration">text-decoration</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-color">text-decoration-color</a> @@ -1360,7 +1669,6 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-style">text-decoration-style</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-thickness">text-decoration-thickness</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-trim">text-decoration-trim</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#propdef-text-edge">text-edge</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis">text-emphasis</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-color">text-emphasis-color</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-position">text-emphasis-position</a> @@ -1379,14 +1687,15 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://svgwg.org/svg2-draft/painting.html#TextRenderingProperty">text-rendering</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow">text-shadow</a> <li><a href="https://drafts.csswg.org/css-size-adjust-1/#propdef-text-size-adjust">text-size-adjust</a> - <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-space-collapse">text-space-collapse</a> - <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-space-trim">text-space-trim</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-spacing">text-spacing</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-spacing-trim">text-spacing-trim</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-transform">text-transform</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-underline-offset">text-underline-offset</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#propdef-text-underline-position">text-underline-position</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap">text-wrap</a> + <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap-mode">text-wrap-mode</a> + <li><a href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap-style">text-wrap-style</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-timeline-scope">timeline-scope</a> <li><a href="https://drafts.csswg.org/css-position-3/#propdef-top">top</a> <li><a href="https://compat.spec.whatwg.org/#propdef-touch-action">touch-action</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform">transform</a> @@ -1394,11 +1703,13 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin">transform-origin</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#propdef-transform-style">transform-style</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition">transition</a> + <li><a href="https://drafts.csswg.org/css-transitions-2/#propdef-transition-behavior">transition-behavior</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-delay">transition-delay</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration">transition-duration</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-property">transition-property</a> <li><a href="https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function">transition-timing-function</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#propdef-translate">translate</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#descdef-view-transition-types">types</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-unicode-bidi">unicode-bidi</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#descdef-font-face-unicode-range">unicode-range</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-update">update</a> @@ -1413,16 +1724,24 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-axis">view-timeline-axis</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-inset">view-timeline-inset</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-name">view-timeline-name</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-class">view-transition-class</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-group">view-transition-group</a> <li><a href="https://drafts.csswg.org/css-view-transitions-1/#propdef-view-transition-name">view-transition-name</a> <li><a href="https://drafts.csswg.org/css-display-4/#propdef-visibility">visibility</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-balance">voice-balance</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-duration">voice-duration</a> - <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">voice-family</a> + <li> + voice-family + <ul> + <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-family">property, in css-speech-1</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-voice-family">property, in css2</a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-pitch">voice-pitch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-range">voice-range</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-rate">voice-rate</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-stress">voice-stress</a> <li><a href="https://drafts.csswg.org/css-speech-1/#propdef-voice-volume">voice-volume</a> + <li><a href="https://www.w3.org/TR/CSS21/aural.html#propdef-volume">volume</a> <li><a href="https://compat.spec.whatwg.org/#propdef--webkit-align-content">-webkit-align-content</a> <li><a href="https://compat.spec.whatwg.org/#propdef--webkit-align-items">-webkit-align-items</a> <li><a href="https://compat.spec.whatwg.org/#propdef--webkit-align-self">-webkit-align-self</a> @@ -1498,18 +1817,20 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://compat.spec.whatwg.org/#propdef--webkit-transition-timing-function">-webkit-transition-timing-function</a> <li><a href="https://drafts.csswg.org/css-ui-4/#propdef--webkit-user-select">-webkit-user-select</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-white-space">white-space</a> + <li><a href="https://drafts.csswg.org/css-text-4/#propdef-white-space-collapse">white-space-collapse</a> + <li><a href="https://drafts.csswg.org/css-text-4/#propdef-white-space-trim">white-space-trim</a> <li><a href="https://drafts.csswg.org/css-break-4/#propdef-widows">widows</a> <li> width <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#descdef-container-width">descriptor, in css-contain-3, for @container</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#descdef-container-width">descriptor, in css-conditional-5, for @container</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#descdef-container-width">descriptor, in css-contain-3, for @container</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#descdef-media-width">descriptor, in mediaqueries-5, for @media</a> <li><a href="https://drafts.csswg.org/css-sizing-3/#propdef-width">property, in css-sizing-3</a> </ul> <li><a href="https://drafts.csswg.org/css-will-change-1/#propdef-will-change">will-change</a> - <li><a href="https://drafts.csswg.org/css-text-4/#propdef-word-boundary-detection">word-boundary-detection</a> - <li><a href="https://drafts.csswg.org/css-text-4/#propdef-word-boundary-expansion">word-boundary-expansion</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-word-break">word-break</a> + <li><a href="https://drafts.csswg.org/css-text-4/#propdef-word-space-transform">word-space-transform</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-word-spacing">word-spacing</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-word-wrap">word-wrap</a> <li><a href="https://drafts.csswg.org/css-text-4/#propdef-wrap-after">wrap-after</a> @@ -1520,19 +1841,22 @@ <h2 class="heading settled" data-level="2" id="properties"><span class="secno">2 <li><a href="https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode">writing-mode</a> <li><a href="https://svgwg.org/svg2-draft/geometry.html#XProperty">x</a> <li><a href="https://svgwg.org/svg2-draft/geometry.html#YProperty">y</a> - <li><a href="https://drafts.csswg.org/css2/#propdef-z-index">z-index</a> + <li><a href="https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index">z-index</a> + <li><a href="https://drafts.csswg.org/css-viewport/#propdef-zoom">zoom</a> </ul> </div> <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </span><span class="content">Property/Descriptor Values</span><a class="self-link" href="#values"></a></h2> <div> <ul class="index"> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-image-orientation-angle"></a> + <li><a href="https://drafts.csswg.org/css-borders-4/#shadow-offset-x">1st &lt;length></a> + <li><a href="https://drafts.csswg.org/css-borders-4/#shadow-offset-y">2nd &lt;length></a> <li> a <ul> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-lab-a">in css-color-5, for lab()</a> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-oklab-a">in css-color-5, for oklab()</a> </ul> + <li><a href="https://aomediacodec.github.io/av1-avif/#valdef-av1layeredimageindexingproperty-a1lx">a1lx</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-a3">a3</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-a4">a4</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-a5">a5</a> @@ -1545,10 +1869,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-range-absolute">in css-speech-1, for voice-range</a> </ul> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-color-profile-rendering-intent-absolute-colorimetric">absolute-colorimetric</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-accentcolor">accentcolor</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-accentcolortext">accentcolortext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-accentcolor">accentcolor</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-accentcolortext">accentcolortext</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-forced-colors-active">active</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-activetext">activetext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-activeborder">activeborder</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-activecaption">activecaption</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-activetext">activetext</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-add">add</a> <li> additive @@ -1556,13 +1882,20 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-additive">in css-counter-styles-3, for @counter-style/system</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-environment-blending-additive">in mediaqueries-5, for @media/environment-blending</a> </ul> - <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-after">after</a> + <li> + after + <ul> + <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-after">in css-content-3, for content()</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#valdef-scroll-marker-group-after">in css-overflow-5, for scroll-marker-group</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-alias">alias</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-aliceblue">aliceblue</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-align-alignment-character">alignment character</a> <li> all <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-all">in css-anchor-position-1, for anchor-scope</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-all">in css-borders-4, for border-limit</a> <li><a href="https://drafts.csswg.org/css-break-4/#valdef-break-before-all">in css-break-4, for break-before, break-after</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-wrap-all">in css-inline-3, for initial-letter-wrap</a> <li><a href="https://drafts.csswg.org/css-multicol-2/#valdef-column-span-all">in css-multicol-2, for column-span</a> @@ -1575,20 +1908,17 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-text-combine-upright-all">in css-writing-modes-4, for text-combine-upright</a> <li><a href="https://drafts.csswg.org/css2/#valdef-media-all">in css22, for @media</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-all">in mediaqueries-5, for @media</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-timeline-scope-all">in scroll-animations-1, for timeline-scope</a> </ul> - <li> - allow-end - <ul> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hanging-punctuation-allow-end">in css-text-4, for hanging-punctuation</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-allow-end">in css-text-4, for text-spacing</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-allow-end">in css-text-4, for text-spacing-trim</a> - </ul> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hanging-punctuation-allow-end">allow-end</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-interpolate-size-allow-keywords">allow-keywords</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-caps-all-petite-caps">all-petite-caps</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-all-scroll">all-scroll</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-caps-all-small-caps">all-small-caps</a> <li> alpha <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#valdef-color-alpha">in css-color-5, for color()</a> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-hsl-alpha">in css-color-5, for hsl()</a> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-hwb-alpha">in css-color-5, for hwb()</a> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-lab-alpha">in css-color-5, for lab()</a> @@ -1607,7 +1937,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-alignment-baseline-alphabetic">in css-inline-3, for alignment-baseline, vertical-align</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-dominant-baseline-alphabetic">in css-inline-3, for dominant-baseline</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-align-alphabetic">in css-inline-3, for initial-letter-align</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-alphabetic">in css-inline-3, for text-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-alphabetic">in css-inline-3, for line-fit-edge, &lt;&lt;text-edge>></a> </ul> <li> alternate @@ -1619,6 +1949,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> always <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-always">in css-anchor-position-1, for position-visibility</a> <li><a href="https://drafts.csswg.org/css-break-4/#valdef-break-before-always">in css-break-4, for break-before, break-after</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-scrollbar-gutter-always">in css-overflow-4, for scrollbar-gutter</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-stop-always">in css-scroll-snap-1, for scroll-snap-stop</a> @@ -1626,18 +1957,33 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hyphenate-limit-lines-always">in css-text-4, for hyphenate-limit-lines</a> <li><a href="https://drafts.csswg.org/css2/#valdef-page-break-always">in css22, for page-break-before, page-break-after, page-break-inside</a> </ul> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-anchor-element">&lt;anchor-element></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-justify-self-anchor-center">anchor-center</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-anchors-valid">anchors-valid</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-anchors-visible">anchors-visible</a> <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-orientation-angle">&lt;angle></a> - <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-angle">angle</a> + <li> + angle + <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-angle">in css-borders-4, for corner-shape</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-angle">in css-values-5, for attr()</a> + </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#annotation">annotation(&lt;feature-value-name>)</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-anonymous">anonymous</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-antiquewhite">antiquewhite</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-calc-size-any">any</a> <li> anywhere <ul> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-line-break-anywhere">in css-text-4, for line-break</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-overflow-wrap-anywhere">in css-text-4, for overflow-wrap</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-aqua">aqua</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-appworkspace">appworkspace</a> + <li> + aqua + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-aqua">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-aqua">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-aquamarine">aquamarine</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-arabic-indic">arabic-indic</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-arc">arc</a> @@ -1646,8 +1992,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ armenian <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#armenian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-armenian">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-armenian">in css22, for list-style-type</a> </ul> + <li><a href="https://drafts.fxtf.org/motion-1/#valdef-ray-at-position">at &lt;position></a> + <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-attr">attr()</a> <li><a href="https://drafts.csswg.org/css2/#valdef-content-attr-x">attr(x)</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-aural">aural</a> <li> @@ -1655,7 +2004,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-align-self-auto">in css-align-3, for align-self</a> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-self-auto">in css-align-3, for justify-self</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-auto">in css-anchor-position-1, for anchor()</a> + <li><a href="https://drafts.csswg.org/css-animations-2/#valdef-animation-duration-auto">in css-animations-2, for animation-duration</a> <li><a href="https://drafts.csswg.org/css-animations-2/#valdef-animation-timeline-auto">in css-animations-2, for animation-timeline, &lt;single-animation-timeline></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-size-auto">in css-backgrounds-3, for background-size</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-width-auto">in css-backgrounds-3, for border-image-width</a> @@ -1672,16 +2021,17 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-face-font-display-auto">in css-fonts-4, for @font-face/font-display</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-kerning-auto-value">in css-fonts-4, for font-kerning</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-optical-sizing-auto-value">in css-fonts-4, for font-optical-sizing</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-position-auto">in css-fonts-4, for font-synthesis-position</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-small-caps-auto">in css-fonts-4, for font-synthesis-small-caps</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-style-auto">in css-fonts-4, for font-synthesis-style</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-weight-auto">in css-fonts-4, for font-synthesis-weight</a> - <li><a href="https://www.w3.org/TR/css-fonts-4/#valdef-font-variant-emoji-auto">in css-fonts-4, for font-variant-emoji</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-face-font-size-auto">in css-fonts-5, for @font-face/font-size</a> <li><a href="https://drafts.csswg.org/css-grid-2/#grid-placement-auto">in css-grid-2, for &lt;grid-line></a> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-auto">in css-grid-2, for grid-template-columns, grid-template-rows</a> <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-rendering-auto">in css-images-3, for image-rendering</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-source-auto">in css-inline-3, for baseline-source, vertical-align</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-dominant-baseline-auto">in css-inline-3, for dominant-baseline</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-box-edge-auto">in css-inline-3, for text-box-edge</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#valdef-column-count-auto">in css-multicol-1, for column-count</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#valdef-column-fill-auto">in css-multicol-1, for column-fill</a> <li><a href="https://drafts.csswg.org/css-multicol-1/#valdef-column-width-auto">in css-multicol-1, for column-width</a> @@ -1697,20 +2047,22 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-bleed-auto">in css-page-3, for @page/bleed</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-auto">in css-page-3, for @page/size</a> <li><a href="https://drafts.csswg.org/css-position-3/#valdef-top-auto">in css-position-3, for top, right, bottom, left, inset-block-start, inset-inline-start, inset-block-end, inset-inline-end, inset-block, inset-inline, inset</a> + <li><a href="https://drafts.csswg.org/css-position-4/#valdef-overlay-auto">in css-position-4, for overlay</a> <li><a href="https://drafts.csswg.org/css-rhythm-1/#valdef-block-step-align-auto">in css-rhythm-1, for block-step-align</a> <li><a href="https://drafts.csswg.org/css-round-display-1/#valdef-viewport-fit-auto">in css-round-display-1, for viewport-fit</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-merge-auto">in css-ruby-1, for ruby-merge</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-overhang-auto">in css-ruby-1, for ruby-overhang</a> <li><a href="https://drafts.csswg.org/css-scroll-anchoring-1/#valdef-overflow-anchor-auto">in css-scroll-anchoring-1, for overflow-anchor</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-padding-auto">in css-scroll-snap-1, for scroll-padding, scroll-padding-inline, scroll-padding-inline-start, scroll-padding-inline-end, scroll-padding-block, scroll-padding-block-start, scroll-padding-block-end</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-auto">in css-scroll-snap-2, for scroll-start, scroll-start-x, scroll-start-y, scroll-start-block, scroll-start-inline</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-target-auto">in css-scroll-snap-2, for scroll-start-target, scroll-start-target-x, scroll-start-target-y, scroll-start-target-block, scroll-start-target-inline</a> + <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-target-auto">in css-scroll-snap-2, for scroll-start-target</a> + <li><a href="https://www.w3.org/TR/css-scroll-snap-2/#valdef-scroll-start-target-auto">in css-scroll-snap-2, for scroll-start-target, scroll-start-target-block, scroll-start-target-inline, scroll-start-target-x, scroll-start-target-y</a> <li><a href="https://drafts.csswg.org/css-scrollbars-1/#valdef-scrollbar-color-auto">in css-scrollbars-1, for scrollbar-color</a> <li><a href="https://drafts.csswg.org/css-scrollbars-1/#valdef-scrollbar-width-auto">in css-scrollbars-1, for scrollbar-width</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-inside-auto">in css-shapes-2, for shape-inside</a> <li><a href="https://drafts.csswg.org/css-size-adjust-1/#valdef-text-size-adjust-auto">in css-size-adjust-1, for text-size-adjust</a> <li><a href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto">in css-sizing-3, for width, height, min-width, min-height</a> <li><a href="https://drafts.csswg.org/css-sizing-4/#valdef-aspect-ratio-auto">in css-sizing-4, for aspect-ratio</a> + <li><a href="https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto">in css-sizing-4, for contain-intrinsic-width, contain-intrinsic-height, contain-intrinsic-block-size, contain-intrinsic-inline-size, contain-intrinsic-size</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-auto">in css-speech-1, for speak</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-duration-auto">in css-speech-1, for voice-duration</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hyphenate-character-auto">in css-text-4, for hyphenate-character</a> @@ -1718,9 +2070,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hyphens-auto">in css-text-4, for hyphens</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-line-break-auto">in css-text-4, for line-break</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-align-last-auto">in css-text-4, for text-align-last</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-auto">in css-text-4, for text-autospace</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-justify-auto">in css-text-4, for text-justify</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-auto">in css-text-4, for text-spacing</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-auto">in css-text-4, for text-spacing-trim</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-auto">in css-text-4, for text-wrap-style</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-wrap-before-auto">in css-text-4, for wrap-before, wrap-after</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-wrap-inside-auto">in css-text-4, for wrap-inside</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-auto">in css-text-decor-4, for text-decoration-skip</a> @@ -1733,11 +2087,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-ui-3/#valdef-caret-color-auto">in css-ui-3, for caret-color</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-accent-color-auto">in css-ui-4, for accent-color</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-auto">in css-ui-4, for appearance</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-caret-animation-auto">in css-ui-4, for caret-animation</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-caret-shape-auto">in css-ui-4, for caret-shape</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-auto">in css-ui-4, for cursor</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-input-security-auto">in css-ui-4, for input-security</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-outline-color-auto">in css-ui-4, for outline-color</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-pointer-events-auto">in css-ui-4, for pointer-events</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-user-select-auto">in css-ui-4, for user-select</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-navigation-auto">in css-view-transitions-2, for @view-transition/navigation</a> <li><a href="https://drafts.csswg.org/css-will-change-1/#valdef-will-change-auto">in css-will-change-1, for will-change</a> <li><a href="https://drafts.csswg.org/css2/#valdef-top-auto%E2%91%A0">in css22, for &lt;top>, &lt;right>, &lt;bottom>, &lt;left></a> <li><a href="https://drafts.csswg.org/css2/#valdef-clip-auto">in css22, for clip</a> @@ -1751,6 +2108,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-exclusions-1/#valdef-wrap-flow-auto">in css3-exclusions, for wrap-flow</a> <li><a href="https://www.w3.org/TR/cssom-view-1/#valdef-scroll-behavior-auto">in cssom-view-1, for scroll-behavior</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#valdef-color-interpolation-filters-auto">in filter-effects-1, for color-interpolation-filters</a> + <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-anchor-auto">in motion-1, for offset-anchor</a> <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-position-auto">in motion-1, for offset-position</a> <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-rotate-auto">in motion-1, for offset-rotate</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-view-timeline-inset-auto">in scroll-animations-1, for view-timeline-inset</a> @@ -1758,12 +2116,29 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-repeat-auto-fill">auto-fill</a> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-repeat-auto-fit">auto-fit</a> <li><a href="https://drafts.csswg.org/css-grid-2/#grid-s-auto-column">[ auto-flow &amp;&amp; dense? ] &lt;'grid-auto-rows'>? / &lt;'grid-template-columns'></a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-boundary-detection-auto-lang">auto(&lt;lang>)</a> <li><a href="https://www.w3.org/TR/css-sizing-4/#valdef-contain-intrinsic-width-auto--length">auto &amp;&amp; &lt;length></a> - <li><a href="https://drafts.csswg.org/css-sizing-4/#valdef-contain-intrinsic-width-auto-length">auto &lt;length></a> + <li> + auto-phrase + <ul> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-break-auto-phrase">in css-text-4, for word-break</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-auto-phrase">in css-text-4, for word-space-transform</a> + </ul> <li><a href="https://drafts.csswg.org/css-sizing-4/#valdef-aspect-ratio-auto--ratio">auto &amp;&amp; &lt;ratio></a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-auto-same">auto-same</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-autospace">&lt;autospace></a> + <li> + av01 + <ul> + <li><a href="https://aomediacodec.github.io/av1-avif/#valdef-av1-image-item-type-av01">in av1-avif, for AV1 Image Item Type</a> + <li><a href="https://aomediacodec.github.io/av1-isobmff/#valdef-av1sampleentry-av01">in av1-isobmff, for AV1SampleEntry</a> + <li><a href="https://aomediacodec.github.io/av1-isobmff/#valdef-isobmff-brand-av01">in av1-isobmff, for ISOBMFF Brand</a> + </ul> + <li><a href="https://aomediacodec.github.io/av1-avif/#valdef-av1-item-configuration-property-av1c">av1c</a> + <li> + av1m + <ul> + <li><a href="https://aomediacodec.github.io/av1-isobmff/#valdef-av1metadatasamplegroupentry-av1m">in av1-isobmff, for AV1MetadataSampleGroupEntry</a> + <li><a href="https://aomediacodec.github.io/av1-isobmff/#valdef-av1multiframesamplegroupentry-av1m">in av1-isobmff, for AV1MultiFrameSampleGroupEntry</a> + </ul> <li> avoid <ul> @@ -1806,12 +2181,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-b4">b4</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-b5">b5</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-nav-controls-back">back</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-background">background</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-fill-mode-backwards">backwards</a> <li> balance <ul> <li><a href="https://drafts.csswg.org/css-multicol-1/#valdef-column-fill-balance">in css-multicol-1, for column-fill</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance">in css-text-4, for text-wrap</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-balance">in css-text-4, for text-wrap-style</a> </ul> <li><a href="https://drafts.csswg.org/css-multicol-1/#valdef-column-fill-balance-all">balance-all</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-caret-shape-bar">bar</a> @@ -1827,13 +2203,23 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-vertical-align-baseline">in css22, for vertical-align</a> </ul> <li><a href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-outside-basic-shape">&lt;basic-shape></a> - <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-before">before</a> + <li> + before + <ul> + <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-before">in css-content-3, for content()</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#valdef-scroll-marker-group-before">in css-overflow-5, for scroll-marker-group</a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-beige">beige</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-bengali">bengali</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linejoin-bevel">bevel</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-bidi-override">bidi-override</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-bisque">bisque</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-black">black</a> + <li> + black + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-black">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-black">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-blanchedalmond">blanchedalmond</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-blank">:blank</a> <li> @@ -1854,23 +2240,45 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#value-def-block">in css22, for display</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-block">in scroll-animations-1, for scroll(), scroll-timeline-axis, view-timeline-axis</a> </ul> + <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-line-clamp-block-ellipsis">&lt;block-ellipsis></a> <li> block-end <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-end">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-box-4/#valdef-margin-trim-block-end">in css-box-4, for margin-trim</a> <li><a href="https://drafts.csswg.org/css-line-grid-1/#valdef-box-snap-block-end">in css-line-grid-1, for box-snap</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-block-end">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-block-end">in css-page-floats-3, for float</a> </ul> + <li> + block-self-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-self-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-self-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + block-self-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-self-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-self-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li> block-start <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-block-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-block-start">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-box-4/#valdef-margin-trim-block-start">in css-box-4, for margin-trim</a> <li><a href="https://drafts.csswg.org/css-line-grid-1/#valdef-box-snap-block-start">in css-line-grid-1, for box-snap</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-block-start">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-block-start">in css-page-floats-3, for float</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-blue">blue</a> + <li> + blue + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-blue">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-blue">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-blueviolet">blueviolet</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-bold">bold</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-bolder">bolder</a> @@ -1879,7 +2287,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-border-box">in css-backgrounds-3, for background-clip</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-origin-border-box">in css-backgrounds-3, for background-origin</a> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-border-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-border-box">in css-box-4, for &lt;box>, &lt;visual-box>, &lt;layout-box>, &lt;shape-box>, &lt;geometry-box>, &lt;paint-box>, &lt;coord-box></a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-align-border-box">in css-inline-3, for initial-letter-align</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-border-box">in css-masking-1, for mask-clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-origin-border-box">in css-masking-1, for mask-origin</a> @@ -1894,7 +2302,6 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ both <ul> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-fill-mode-both">in css-animations-1, for animation-fill-mode</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-both">in css-inline-3, for leading-trim</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-both">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-both">in css-scroll-snap-1, for scroll-snap-type</a> <li><a href="https://drafts.csswg.org/css2/#valdef-clear-both">in css22, for clear</a> @@ -1907,7 +2314,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ bottom <ul> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-bottom">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-bottom">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-bottom">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-bottom">in css-backgrounds-3, for background-position</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-bottom">in css-borders-4, for border-limit</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-bottom">in css-inline-3, for baseline-shift, vertical-align</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-bottom">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-bottom">in css-page-floats-3, for float</a> @@ -1923,7 +2333,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-braille">in mediaqueries-5, for @media</a> </ul> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-break-break-all">break-all</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-break-spaces">break-spaces</a> + <li> + break-spaces + <ul> + <li><a href="https://drafts.csswg.org/css-text-3/#valdef-white-space-break-spaces">in css-text-3, for white-space</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-break-spaces">in css-text-4, for white-space-collapse</a> + </ul> <li> break-word <ul> @@ -1931,13 +2346,16 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-break-break-word">in css-text-4, for word-break</a> </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-brown">brown</a> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-browser">browser</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-speak-as-bullets">bullets</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-burlywood">burlywood</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linecap-butt">butt</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-button">button</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-buttonborder">buttonborder</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-buttonface">buttonface</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-buttontext">buttontext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-buttonborder">buttonborder</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-buttonface">buttonface</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-buttonhighlight">buttonhighlight</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-buttonshadow">buttonshadow</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-buttontext">buttontext</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-by">by</a> <li> c @@ -1947,17 +2365,19 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-cadetblue">cadetblue</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-cambodian">cambodian</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-canvas">canvas</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-canvastext">canvastext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-canvas">canvas</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-canvastext">canvastext</a> <li> cap <ul> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-cap">in css-inline-3, for text-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-cap">in css-inline-3, for line-fit-edge, &lt;&lt;text-edge>></a> <li><a href="https://drafts.csswg.org/css-values-4/#cap">in css-values-4, for &lt;length></a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-size-adjust-cap-height">cap-height</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-transform-capitalize">capitalize</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-caption">caption</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-captiontext">captiontext</a> + <li><a href="https://drafts.csswg.org/css-values-4/#cap">cap unit</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-ccw">ccw</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-cell">cell</a> <li> @@ -1965,6 +2385,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-self-position-center">in css-align-3, for &lt;self-position>, &lt;content-position>, justify-self, align-self, justify-content, align-content</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-center">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-center">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-center">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-center">in css-backgrounds-3, for background-position</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-align-content-center">in css-flexbox-1, for align-content</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-align-items-center">in css-flexbox-1, for align-items, align-self</a> @@ -1974,7 +2396,6 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-rhythm-1/#valdef-block-step-align-center">in css-rhythm-1, for block-step-align</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-align-center">in css-ruby-1, for ruby-align</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-align-center">in css-scroll-snap-1, for scroll-snap-align</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-center">in css-scroll-snap-2, for scroll-start, scroll-start-x, scroll-start-y, scroll-start-block, scroll-start-inline</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-balance-center">in css-speech-1, for voice-balance</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-align-center">in css-text-4, for text-align</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-group-align-center">in css-text-4, for text-group-align</a> @@ -2000,14 +2421,15 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-svg-paint-child-integer">child(&lt;integer>)</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-chocolate">chocolate</a> + <li><a href="https://drafts.csswg.org/css-values-4/#ch">ch unit</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-size-adjust-ch-width">ch-width</a> <li> circle <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#circle">in css-counter-styles-3, for &lt;counter-style-name></a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-circle">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-circle">in css-images-3, for &lt;rg-ending-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-circle">in css-images-3, for &lt;radial-shape></a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-style-circle">in css-text-decor-4, for text-emphasis-style</a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-circle">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-circle">in css22, for list-style-type</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#cjk-decimal">cjk-decimal</a> @@ -2029,21 +2451,20 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ close-quote <ul> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-close-quote">in css-content-3, for content, &lt;content-list>, &lt;quote></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-close-quote">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-close-quote">in css22, for content</a> </ul> <li> closest-corner <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-corner">in css-images-3, for &lt;size></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-corner">in css-images-3, for &lt;radial-extent>, radial-gradient(), repeating-radial-gradient()</a> <li><a href="https://drafts.fxtf.org/motion-1/#size-closest-corner">in motion-1, for &lt;ray-size></a> <li><a href="https://www.w3.org/TR/motion-1/#size-closest-corner">in motion-1, for &lt;size></a> </ul> <li> closest-side <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-closest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-closest-side">in css-images-3, for &lt;size></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-closest-side">in css-images-3, for &lt;radial-extent>, radial-gradient(), repeating-radial-gradient()</a> <li><a href="https://drafts.fxtf.org/motion-1/#size-closest-side">in motion-1, for &lt;ray-size></a> <li><a href="https://www.w3.org/TR/motion-1/#size-closest-side">in motion-1, for &lt;size></a> </ul> @@ -2053,7 +2474,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ collapse <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-visibility-collapse">in css-display-4, for visibility</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-collapse">in css-text-4, for text-space-collapse</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-collapse">in css-text-4, for white-space-collapse</a> <li><a href="https://drafts.csswg.org/css2/#valdef-border-collapse-collapse">in css22, for border-collapse</a> </ul> <li><a href="https://drafts.csswg.org/css2/#valdef-border-color-color">&lt;color></a> @@ -2078,7 +2499,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-direction-column-reverse">column-reverse</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-common-ligatures">common-ligatures</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-dash-justify-compress">compress</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-condensed">condensed</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-condensed">condensed</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#valdef-dynamic-range-limit-constrained-high">constrained-high</a> <li> contain <ul> @@ -2090,6 +2512,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-round-display-1/#valdef-viewport-fit-contain">in css-round-display-1, for viewport-fit</a> <li><a href="https://drafts.csswg.org/css-sizing-4/#valdef-width-contain">in css-sizing-4, for width, height, inline-size, block-size, min-width, min-height, min-inline-size, min-block-size, max-width, max-height, max-inline-size, max-block-size</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-user-select-contain">in css-ui-4, for user-select</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-group-contain">in css-view-transitions-2, for view-transition-group</a> <li><a href="https://www.w3.org/TR/motion-1/#valdef-offsetpath-contain">in motion-1, for offsetpath</a> <li><a href="https://drafts.fxtf.org/motion-1/#valdef-ray-contain">in motion-1, for ray()</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-contain">in scroll-animations-1, for animation-timeline-range</a> @@ -2099,13 +2522,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-content">in css-contain-2, for contain</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-content">in css-flexbox-1, for flex-basis</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-field-sizing-content">in css-ui-4, for field-sizing</a> </ul> <li> content-box <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-content-box">in css-backgrounds-3, for background-clip</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-origin-content-box">in css-backgrounds-3, for background-origin</a> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-content-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-content-box">in css-box-4, for &lt;box>, &lt;visual-box>, &lt;layout-box>, &lt;shape-box>, &lt;geometry-box>, &lt;paint-box>, &lt;coord-box></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-content-box">in css-masking-1, for mask-clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-origin-content-box">in css-masking-1, for mask-origin</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-box-content-box">in css-shapes-1, for &lt;shape-box>, shape-outside</a> @@ -2127,6 +2551,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-contextual">contextual</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-copy">copy</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-coral">coral</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-corners">corners</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-cornflowerblue">cornflowerblue</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-cornsilk">cornsilk</a> <li><a href="https://drafts.csswg.org/css2/#valdef-content-counter">&lt;counter></a> @@ -2166,6 +2591,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-curve">curve</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-prefers-contrast-custom">custom</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-class-custom-ident">&lt;custom-ident>+</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-cw">cw</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-cyan">cyan</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-cyclic">cyclic</a> @@ -2201,30 +2627,35 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ dashed <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dashed">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dashed">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-dashed">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> </ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-name-dashed-ident">&lt;dashed-ident>#</a> + <li> + &lt;dashed-ident> || &lt;try-tactic> + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-dashed-ident--try-tactic">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-dashed-ident--try-tactic">in css-anchor-position-1, for position-try-options</a> + </ul> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-dash-justify-dashes">dashes</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-decibel">&lt;decibel></a> <li> decimal <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-decimal">in css22, for list-style-type</a> </ul> <li> decimal-leading-zero <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#decimal-leading-zero">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-decimal-leading-zero">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-decimal-leading-zero">in css22, for list-style-type</a> </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-deeppink">deeppink</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-deepskyblue">deepskyblue</a> - <li> - default - <ul> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-default">in css-anchor-position-1, for anchor-scroll</a> - <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-default">in css-ui-4, for cursor</a> - </ul> + <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-default">default</a> <li><a href="https://drafts.csswg.org/css-values-4/#deg">deg</a> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-auto-flow-dense">dense</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-devanagari">devanagari</a> @@ -2240,6 +2671,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ disc <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disc">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-disc">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-disc">in css22, for list-style-type</a> </ul> <li> @@ -2247,11 +2679,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-break-4/#valdef-margin-break-discard">in css-break-4, for margin-break</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-continue-discard">in css-overflow-4, for continue</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-discard">in css-text-4, for text-space-collapse</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-discard">in css-text-4, for white-space-collapse</a> </ul> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-trim-discard-after">discard-after</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-trim-discard-before">discard-before</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-trim-discard-inner">discard-inner</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-trim-discard-after">discard-after</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-trim-discard-before">discard-before</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-trim-discard-inner">discard-inner</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-closed">disclosure-closed</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#disclosure-open">disclosure-open</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-discretionary-ligatures">discretionary-ligatures</a> @@ -2266,12 +2698,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-dotted">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-leader-dotted">in css-content-3, for leader()</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-dotted">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-dotted">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> </ul> <li> double <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-double">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-double">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-double">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> </ul> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-style-double-circle">double-circle</a> @@ -2285,12 +2719,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-values-4/#dpi">dpi</a> <li><a href="https://drafts.csswg.org/css-values-4/#dppx">dppx</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-drop">drop</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-dvb">dvb</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-dvh">dvh</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-dvi">dvi</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-dvmax">dvmax</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-dvmin">dvmin</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-dvw">dvw</a> + <li><a href="https://drafts.csswg.org/css-values-4/#dvb">dvb</a> + <li><a href="https://drafts.csswg.org/css-values-4/#dvh">dvh</a> + <li><a href="https://drafts.csswg.org/css-values-4/#dvi">dvi</a> + <li><a href="https://drafts.csswg.org/css-values-4/#dvmax">dvmax</a> + <li><a href="https://drafts.csswg.org/css-values-4/#dvmin">dvmin</a> + <li><a href="https://drafts.csswg.org/css-values-4/#dvw">dvw</a> <li><a href="https://drafts.csswg.org/css-values-4/#valdef-calc-e">e</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-indent-each-line">each-line</a> <li><a href="https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease">ease</a> @@ -2298,12 +2732,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease-in-out">ease-in-out</a> <li><a href="https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease-out">ease-out</a> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#valdef-print-color-adjust-economy">economy</a> - <li> - ellipse - <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-ending-shape-ellipse">in css-images-3, for &lt;ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse">in css-images-3, for &lt;rg-ending-shape></a> - </ul> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse">ellipse</a> <li> ellipsis <ul> @@ -2318,30 +2747,26 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-media-embossed">in css22, for @media</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-embossed">in mediaqueries-5, for @media</a> </ul> - <li> - emoji - <ul> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-emoji">in css-fonts-4, for font-family, &lt;generic-family></a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-emoji-emoji">in css-fonts-4, for font-variant-emoji</a> - </ul> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-emoji-emoji">emoji</a> + <li><a href="https://drafts.csswg.org/css-values-4/#em">em unit</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-scripting-enabled">enabled</a> <li> end <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-self-position-end">in css-align-3, for &lt;self-position>, &lt;content-position>, justify-self, align-self, justify-content, align-content</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-end">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-end">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-easing-2/#valdef-steps-end">in css-easing-2, for steps()</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-end">in css-inline-3, for leading-trim</a> <li><a href="https://drafts.csswg.org/css-rhythm-1/#valdef-block-step-align-end">in css-rhythm-1, for block-step-align</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-align-end">in css-scroll-snap-1, for scroll-snap-align</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-end">in css-scroll-snap-2, for scroll-start, scroll-start-x, scroll-start-y, scroll-start-block, scroll-start-inline</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-align-end">in css-text-4, for text-align</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-group-align-end">in css-text-4, for text-group-align</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-spaces-end">in css-text-decor-4, for text-decoration-skip-spaces</a> <li><a href="https://drafts.csswg.org/css-exclusions-1/#valdef-wrap-flow-end">in css3-exclusions, for wrap-flow</a> </ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-ending-shape">&lt;ending-shape></a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-entry">entry</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-entry-crossing">entry-crossing</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-e-resize">e-resize</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-ethiopic-numeric">ethiopic-numeric</a> <li> @@ -2354,7 +2779,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> ex <ul> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ex">in css-inline-3, for text-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ex">in css-inline-3, for line-fit-edge, &lt;&lt;text-edge>></a> <li><a href="https://drafts.csswg.org/css-values-4/#ex">in css-values-4, for &lt;length></a> </ul> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#valdef-print-color-adjust-exact">exact</a> @@ -2363,10 +2788,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-size-adjust-ex-height">ex-height</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-size-adjust-ex-height--cap-height--ch-width--ic-width--ic-height">ex-height | cap-height | ch-width | ic-width | ic-height</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-exit">exit</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-expanded">expanded</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-timeline-range-exit-crossing">exit-crossing</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-expanded">expanded</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-extends">extends</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-extra-condensed">extra-condensed</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-extra-expanded">extra-expanded</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-extra-condensed">extra-condensed</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-extra-expanded">extra-expanded</a> + <li><a href="https://drafts.csswg.org/css-values-4/#ex">ex unit</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-text-overflow-fade">fade</a> <li> fallback @@ -2375,7 +2802,6 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linejoin-fallback">in fill-stroke-3, for stroke-linejoin</a> </ul> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-custom-media-false">false</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-fangsong">fangsong</a> <li> fantasy <ul> @@ -2385,16 +2811,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> farthest-corner <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-corner">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-corner">in css-images-3, for &lt;size></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner">in css-images-3, for &lt;radial-extent>, radial-gradient(), repeating-radial-gradient()</a> <li><a href="https://drafts.fxtf.org/motion-1/#size-farthest-corner">in motion-1, for &lt;ray-size></a> <li><a href="https://www.w3.org/TR/motion-1/#size-farthest-corner">in motion-1, for &lt;size></a> </ul> <li> farthest-side <ul> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-extent-keyword-farthest-side">in css-images-3, for &lt;rg-extent-keyword>, radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-farthest-side">in css-images-3, for &lt;size></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side">in css-images-3, for &lt;radial-extent>, radial-gradient(), repeating-radial-gradient()</a> <li><a href="https://drafts.fxtf.org/motion-1/#size-farthest-side">in motion-1, for &lt;ray-size></a> <li><a href="https://www.w3.org/TR/motion-1/#size-farthest-side">in motion-1, for &lt;size></a> </ul> @@ -2406,8 +2830,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#feature-tag-value">&lt;feature-tag-value></a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-female">female</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-field">field</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-fieldtext">fieldtext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-field">field</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-fieldtext">fieldtext</a> <li> fill <ul> @@ -2418,7 +2842,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> fill-box <ul> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-fill-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-fill-box">in css-box-4, for &lt;box>, &lt;geometry-box>, &lt;paint-box>, &lt;coord-box></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-path-fill-box">in css-masking-1, for clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-fill-box">in css-masking-1, for mask-clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-origin-fill-box">in css-masking-1, for mask-origin</a> @@ -2444,23 +2868,23 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-content-3/#valdef-string-first-except">first-except</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-first-letter">first-letter</a> <li><a href="https://drafts.csswg.org/css-sizing-4/#valdef-width-fit-content">fit-content</a> - <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-fit-content">fit-content()</a> + <li><a href="https://www.w3.org/TR/css-grid-2/#valdef-grid-template-columns-fit-content">fit-content()</a> <li> fit-content(&lt;length-percentage>) <ul> <li><a href="https://drafts.csswg.org/css-sizing-3/#valdef-column-width-fit-content-length-percentage">in css-sizing-3, for column-width</a> <li><a href="https://www.w3.org/TR/css-sizing-3/#valdef-width-fit-content-length-percentage">in css-sizing-3, for width, min-width, max-width, height, min-height, max-height</a> </ul> - <li><a href="https://drafts.csswg.org/css-sizing-3/#valdef-width-fit-content-length-percentage-0">fit-content(&lt;length-percentage [0,∞]>)</a> <li> fixed <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-fixed">in css-backgrounds-3, for background-attachment</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-fixed">in css-counter-styles-3, for @counter-style/system</a> <li><a href="https://drafts.csswg.org/css-position-3/#valdef-position-fixed">in css-position-3, for position</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-field-sizing-fixed">in css-ui-4, for field-sizing</a> <li><a href="https://drafts.csswg.org/css2/#valdef-table-layout-fixed">in css22, for table-layout</a> </ul> - <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-flex">&lt;flex></a> + <li><a href="https://www.w3.org/TR/css-grid-2/#valdef-grid-template-columns-flex">&lt;flex></a> <li> flex <ul> @@ -2469,6 +2893,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-wrap-before-flex">in css-text-4, for wrap-before, wrap-after</a> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-flex">in css-values-5, for attr()</a> </ul> + <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-flex-0">&lt;flex [0,∞]></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-basis">&lt;'flex-basis'></a> <li> flex-end @@ -2478,6 +2903,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-align-items-flex-end">in css-flexbox-1, for align-items, align-self</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-justify-content-flex-end">in css-flexbox-1, for justify-content</a> </ul> + <li><a href="https://drafts.csswg.org/css-display-4/#valdef-reading-flow-flex-flow">flex-flow</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-grow">&lt;'flex-grow'></a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-shrink">&lt;'flex-shrink'></a> <li> @@ -2488,17 +2914,36 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-align-items-flex-start">in css-flexbox-1, for align-items, align-self</a> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-justify-content-flex-start">in css-flexbox-1, for justify-content</a> </ul> + <li><a href="https://drafts.csswg.org/css-display-4/#valdef-reading-flow-flex-visual">flex-visual</a> <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-orientation-angle">flip</a> + <li> + flip-block + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-flip-block">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-flip-block">in css-anchor-position-1, for position-try-options</a> + </ul> + <li> + flip-inline + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-flip-inline">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-flip-inline">in css-anchor-position-1, for position-try-options</a> + </ul> + <li> + flip-start + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-flip-start">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-flip-start">in css-anchor-position-1, for position-try-options</a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-floralwhite">floralwhite</a> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-flow">flow</a> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-flow-root">flow-root</a> <li><a href="https://drafts.csswg.org/css-nav-1/#valdef-spatial-navigation-action-focus">focus</a> - <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-scrollbar-gutter-force">force</a> + <li><a href="https://www.w3.org/TR/css-overflow-4/#valdef-scrollbar-gutter-force">force</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hanging-punctuation-force-end">force-end</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-forestgreen">forestgreen</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-fill-mode-forwards">forwards</a> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-flex-fr">fr</a> - <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-continue-fragments">fragments</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#valdef-continue-fragments">fragments</a> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-frequency">frequency</a> <li> from-font @@ -2515,7 +2960,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-images-4/#valdef-image-resolution-from-image">in css-images-4, for image-resolution</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-flex-fr">fr unit</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-fuchsia">fuchsia</a> + <li> + fuchsia + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-fuchsia">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-fuchsia">in css22, for &lt;color></a> + </ul> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-fullscreen">fullscreen</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-transform-full-size-kana">full-size-kana</a> <li> full-width @@ -2531,10 +2982,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-gainsboro">gainsboro</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-dash-justify-gaps">gaps</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-fangsong">generic(fangsong)</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-kai">generic(kai)</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-nastaliq">generic(nastaliq)</a> <li> georgian <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#georgian">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-georgian">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-georgian">in css22, for list-style-type</a> </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-ghostwhite">ghostwhite</a> @@ -2544,9 +2999,19 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-grabbing">grabbing</a> <li><a href="https://drafts.csswg.org/css-values-4/#grad">grad</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-grammar-error">grammar-error</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-gray">gray</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-graytext">graytext</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-green">green</a> + <li> + gray + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-gray">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-gray">in css22, for &lt;color></a> + </ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-graytext">graytext</a> + <li> + green + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-green">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-green">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-greenyellow">greenyellow</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-grey">grey</a> <li> @@ -2557,12 +3022,16 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-wrap-grid">in css-inline-3, for initial-letter-wrap</a> <li><a href="https://drafts.csswg.org/css-nav-1/#valdef-spatial-navigation-function-grid">in css-nav-1, for spatial-navigation-function</a> </ul> + <li><a href="https://drafts.csswg.org/css-display-4/#valdef-reading-flow-grid-columns">grid-columns</a> + <li><a href="https://drafts.csswg.org/css-display-4/#valdef-reading-flow-grid-order">grid-order</a> + <li><a href="https://drafts.csswg.org/css-display-4/#valdef-reading-flow-grid-rows">grid-rows</a> <li><a href="https://drafts.csswg.org/css-grid-2/#grid-s-auto-row">&lt;'grid-template-rows'> / [ auto-flow &amp;&amp; dense? ] &lt;'grid-auto-columns'>?</a> <li><a href="https://drafts.csswg.org/css-grid-2/#grid-template-rowcol">&lt;'grid-template-rows'> / &lt;'grid-template-columns'></a> <li> groove <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-groove">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-groove">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-groove">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-gujarati">gujarati</a> @@ -2599,6 +3068,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-content-visibility-hidden">in css-contain-2, for content-visibility</a> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-visibility-hidden">in css-display-4, for visibility</a> <li><a href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden">in css-overflow-3, for overflow, overflow-x, overflow-y</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-hidden">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-hidden">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> <li><a href="https://drafts.csswg.org/css2/#valdef-overflow-hidden">in css22, for overflow</a> </ul> @@ -2606,12 +3076,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> high <ul> + <li><a href="https://drafts.csswg.org/css-color-hdr/#valdef-dynamic-range-limit-high">in css-color-hdr, for dynamic-range-limit</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-pitch-high">in css-speech-1, for voice-pitch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-range-high">in css-speech-1, for voice-range</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-dynamic-range-high">in mediaqueries-5, for @media/dynamic-range</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-highlight">highlight</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-highlighttext">highlighttext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-highlight">highlight</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-highlighttext">highlighttext</a> <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-rendering-high-quality">high-quality</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#hiragana">hiragana</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#hiragana-iroha">hiragana-iroha</a> @@ -2619,7 +3090,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-historical-ligatures">historical-ligatures</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-hline">hline</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-honeydew">honeydew</a> - <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-horizontal">horizontal</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-offset-horizontal-offset">horizontal offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-horizontal-tb">horizontal-tb</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-hotpink">hotpink</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-hover-hover">hover</a> @@ -2630,32 +3101,26 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-values-4/#ic">ic</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-size-adjust-ic-height">ic-height</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-icon">icon</a> + <li><a href="https://drafts.csswg.org/css-values-4/#ic">ic unit</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-font-size-adjust-ic-width">ic-width</a> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-ident">ident</a> - <li> - ideograph-alpha - <ul> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-ideograph-alpha">in css-text-4, for text-autospace</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-ideograph-alpha">in css-text-4, for text-spacing</a> - </ul> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-ideograph-alpha">ideograph-alpha</a> <li> ideographic <ul> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-alignment-baseline-ideographic">in css-inline-3, for alignment-baseline, vertical-align</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-dominant-baseline-ideographic">in css-inline-3, for dominant-baseline</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-align-ideographic">in css-inline-3, for initial-letter-align</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ideographic">in css-inline-3, for text-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ideographic">in css-inline-3, for line-fit-edge, &lt;&lt;text-edge>></a> </ul> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-ideographic-ink">ideographic-ink</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-boundary-expansion-ideographic-space">ideographic-space</a> - <li> - ideograph-numeric - <ul> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-ideograph-numeric">in css-text-4, for text-autospace</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-ideograph-numeric">in css-text-4, for text-spacing</a> - </ul> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-implicit">implicit</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-ideographic-ink">ideographic-ink</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-ideographic-space">ideographic-space</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-ideograph-numeric">ideograph-numeric</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-anchor-implicit">implicit</a> <li><a href="https://drafts.csswg.org/css-values-4/#in">in</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-inactiveborder">inactiveborder</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-inactivecaption">inactivecaption</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-inactivecaptiontext">inactivecaptiontext</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-indianred">indianred</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-indigo">indigo</a> <li> @@ -2666,6 +3131,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-values-4/#valdef-calc--infinity">-infinity</a> <li><a href="https://drafts.csswg.org/css-values-4/#valdef-calc-infinity">infinity</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-infobackground">infobackground</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-infotext">infotext</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit">inherit</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#valdef-all-initial">initial</a> <li><a href="https://www.w3.org/TR/motion-1/#valdef-offsetpath-initial-direction">initial direction</a> @@ -2691,6 +3158,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> inline-end <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-end">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-box-4/#valdef-margin-trim-inline-end">in css-box-4, for margin-trim</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-inline-end">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-inline-end">in css-page-floats-3, for float</a> @@ -2707,15 +3176,30 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-grid">in css-display-4, for display, &lt;display-legacy></a> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-display-inline-grid">in css-grid-2, for display</a> </ul> + <li> + inline-self-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-self-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-self-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + inline-self-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-self-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-self-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li> inline-size <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-contain-inline-size">in css-contain-3, for contain</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-container-type-inline-size">in css-contain-3, for container-type</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#valdef-container-type-inline-size">in css-conditional-5, for container-type</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-contain-inline-size">in css-contain-3, for contain</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-container-type-inline-size">in css-contain-3, for container-type</a> </ul> <li> inline-start <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inline-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-inline-start">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-box-4/#valdef-margin-trim-inline-start">in css-box-4, for margin-trim</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-inline-start">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-inline-start">in css-page-floats-3, for float</a> @@ -2724,18 +3208,30 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ inline-table <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-inline-table">in css-display-4, for display, &lt;display-legacy></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-inline-table">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-inline-table">in css22, for display</a> </ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-inner-box-shadow">inner box-shadow</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-insert">insert</a> <li> inset <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-inset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#shadow-inset">in css-backgrounds-3, for box-shadow</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-inset">in css-borders-4, for box-shadow-position</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-inset">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-inset">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-align-inset">in fill-stroke-3, for stroke-align</a> </ul> - <li><a href="https://drafts.csswg.org/css-lists-3/#valdef-list-style-position-inside">inside</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-inset-area">&lt;inset-area></a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-inset-area-inset-area">inset-area( &lt;'inset-area'> )</a> + <li> + inside + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-inside">in css-anchor-position-1, for anchor()</a> + <li><a href="https://drafts.csswg.org/css-lists-3/#valdef-list-style-position-inside">in css-lists-3, for list-style-position</a> + </ul> + <li><a href="https://www.w3.org/TR/css-overflow-4/#valdef-line-clamp-integer-1--block-ellipsis">&lt;integer [1,∞]> &lt;block-ellipsis>?</a> <li><a href="https://drafts.csswg.org/css-grid-2/#grid-placement-int">[ &lt;integer [-∞,-1]> | &lt;integer [1,∞]> ] &amp;&amp; &lt;custom-ident>?</a> <li><a href="https://www.w3.org/TR/css-grid-2/#grid-placement-int">&lt;integer> &amp;&amp; &lt;custom-ident>?</a> <li> @@ -2747,7 +3243,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-scan-interlace">interlace</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-composite-intersect">intersect</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-justify-inter-word">inter-word</a> - <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-outline-color-invert">invert</a> + <li> + invert + <ul> + <li><a href="https://www.w3.org/TR/css-ui-4/#valdef-outline-color-invert">in css-ui-4, for outline-color</a> + <li><a href="https://www.w3.org/TR/CSS21/ui.html#value-def-invert">in css2</a> + </ul> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-inverted-colors-inverted">inverted</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-isolate">isolate</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-isolate-override">isolate-override</a> @@ -2792,7 +3293,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> landscape <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-container-orientation-landscape">in css-contain-3, for @container/orientation</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#valdef-container-orientation-landscape">in css-conditional-5, for @container/orientation</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-container-orientation-landscape">in css-contain-3, for @container/orientation</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-landscape">in css-page-3, for @page/size</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-orientation-landscape">in mediaqueries-5, for @media/orientation</a> </ul> @@ -2816,19 +3318,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lavender">lavender</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lavenderblush">lavenderblush</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lawngreen">lawngreen</a> - <li> - layout - <ul> - <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-layout">in css-contain-2, for contain</a> - <li><a href="https://drafts.csswg.org/css-display-4/#valdef-order-layout">in css-display-4, for order</a> - </ul> + <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-layout">layout</a> <li><a href="https://drafts.css-houdini.org/css-layout-api-1/#valdef-display-layout">layout()</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-lch-lch">lch</a> <li> leading <ul> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-align-leading">in css-inline-3, for initial-letter-align</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-leading">in css-inline-3, for text-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-leading">in css-inline-3, for line-fit-edge, &lt;&lt;text-edge>></a> </ul> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-ledger">ledger</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-left">:left</a> @@ -2837,7 +3334,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-content-left">in css-align-3, for justify-content, justify-self, justify-items</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-left">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-left">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-left">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-left">in css-backgrounds-3, for background-position</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-left">in css-borders-4, for border-limit</a> <li><a href="https://drafts.csswg.org/css-break-4/#valdef-break-before-left">in css-break-4, for break-before, break-after</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-left">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-left">in css-page-floats-3, for float</a> @@ -2865,10 +3365,9 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> &lt;length> <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length">in css-images-3, for &lt;size></a> <li><a href="https://drafts.csswg.org/css-position-3/#valdef-top-length">in css-position-3, for top, right, bottom, left, inset-block-start, inset-inline-start, inset-block-end, inset-inline-end, inset-block, inset-inline, inset</a> + <li><a href="https://drafts.csswg.org/css-text-3/#valdef-letter-spacing-length">in css-text-3, for letter-spacing</a> <li><a href="https://drafts.csswg.org/css-text-3/#valdef-word-spacing-length">in css-text-3, for word-spacing</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-letter-spacing-length">in css-text-4, for letter-spacing</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-indent-length">in css-text-4, for text-indent</a> <li><a href="https://drafts.csswg.org/css2/#valdef-border-width-length">in css22, for &lt;border-width>, border-top-width, border-right-width, border-bottom-width, border-left-width, border-width</a> <li><a href="https://drafts.csswg.org/css2/#valdef-padding-width-length">in css22, for &lt;padding-width></a> @@ -2876,14 +3375,19 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-vertical-align-length">in css22, for vertical-align</a> </ul> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-length">length</a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-0">&lt;length [0,∞]></a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-spacing-length-percentage">&lt;length-percentage></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-0">&lt;length [0,∞]></a> + <li> + &lt;length-percentage> + <ul> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-letter-spacing-length-percentage">in css-text-4, for letter-spacing</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-spacing-length-percentage">in css-text-4, for word-spacing</a> + </ul> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-dasharray-length-percentage">&lt;length-percentage>+#</a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-rg-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-size-length-percentage2">&lt;length-percentage>{2}</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-size-length-percentage-0-2">&lt;length-percentage [0,∞]>{2}</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-prefers-contrast-less">less</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-letter">letter</a> <li><a href="https://drafts.csswg.org/css-values-4/#lh">lh</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lh">lh unit</a> <li> light <ul> @@ -2909,7 +3413,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lightslategrey">lightslategrey</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lightsteelblue">lightsteelblue</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lightyellow">lightyellow</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lime">lime</a> + <li> + lime + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-lime">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-lime">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-limegreen">limegreen</a> <li> line @@ -2934,11 +3443,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-numeric-lining-nums">lining-nums</a> <li><a href="https://drafts.csswg.org/css-link-params-1/#valdef-none-link-param">&lt;link-param>+</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-linktext">linktext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-linktext">linktext</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-listbox">listbox</a> <li> list-item <ul> + <li><a href="https://drafts.csswg.org/css-display-3/#valdef-display-list-item">in css-display-3, for display, &lt;display-listitem></a> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-list-item">in css-display-4, for display, &lt;display-list-item></a> <li><a href="https://drafts.csswg.org/css-lists-3/#valdef-counter-increment-list-item">in css-lists-3, for counter-increment, counter-set, counter-reset, counter(), counters()</a> <li><a href="https://drafts.csswg.org/css2/#value-def-list-item">in css22, for display</a> @@ -2966,18 +3476,21 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ lower-greek <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-greek">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-greek">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-lower-greek">in css22, for list-style-type</a> </ul> <li> lower-latin <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-latin">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-lower-latin">in css22, for list-style-type</a> </ul> <li> lower-roman <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#lower-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-lower-roman">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-lower-roman">in css22, for list-style-type</a> </ul> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-direction-ltr">ltr</a> @@ -2989,12 +3502,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-type-luminance">in css-masking-1, for mask-type</a> </ul> <li><a href="https://drafts.fxtf.org/compositing-2/#valdef-blend-mode-luminosity">luminosity</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-lvb">lvb</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-lvh">lvh</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-lvi">lvi</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-lvmax">lvmax</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-lvmin">lvmin</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-lvw">lvw</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lvb">lvb</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lvh">lvh</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lvi">lvi</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lvmax">lvmax</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lvmin">lvmin</a> + <li><a href="https://drafts.csswg.org/css-values-4/#lvw">lvw</a> + <li><a href="https://aomediacodec.github.io/av1-avif/#valdef-av1-image-item-type-ma1a">ma1a</a> + <li><a href="https://aomediacodec.github.io/av1-avif/#valdef-av1-image-item-type-ma1b">ma1b</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-magenta">magenta</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-malayalam">malayalam</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-male">male</a> @@ -3003,22 +3518,29 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ manual <ul> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hyphens-manual">in css-text-4, for hyphens</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-boundary-detection-manual">in css-text-4, for word-boundary-detection</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-break-manual">in css-text-4, for word-break</a> + <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-caret-animation-manual">in css-ui-4, for caret-animation</a> </ul> <li><a href="https://drafts.csswg.org/css-rhythm-1/#valdef-block-step-insert-margin">margin</a> <li> margin-box <ul> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-margin-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-margin-box">in css-box-4, for &lt;box>, &lt;layout-box>, &lt;shape-box>, &lt;geometry-box></a> <li><a href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-box-margin-box">in css-shapes-1, for &lt;shape-box>, shape-outside</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-mark">mark</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-mark">mark</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-marker">marker</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-marktext">marktext</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-maroon">maroon</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-marktext">marktext</a> + <li> + maroon + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-maroon">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-maroon">in css22, for &lt;color></a> + </ul> <li> match-parent <ul> + <li><a href="https://drafts.csswg.org/css-content-3/#valdef-quotes-match-parent">in css-content-3, for quotes</a> <li><a href="https://drafts.csswg.org/css-line-grid-1/#valdef-line-grid-match-parent">in css-line-grid-1, for line-grid</a> <li><a href="https://drafts.csswg.org/css-lists-3/#valdef-marker-side-match-parent">in css-lists-3, for marker-side</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-scrollbar-gutter-match-parent">in css-overflow-4, for scrollbar-gutter</a> @@ -3034,6 +3556,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-math">in css-fonts-4, for font-family, &lt;generic-family></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-size-math">in css-fonts-4, for font-size</a> </ul> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-transform-math-auto">math-auto</a> <li> mathematical <ul> @@ -3070,9 +3593,15 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-mediumspringgreen">mediumspringgreen</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-mediumturquoise">mediumturquoise</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-mediumvioletred">mediumvioletred</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-menu">menu</a> + <li> + menu + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-menu">in css-color-4, for &lt;color>, &lt;deprecated-color></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-menu">in css-fonts-4, for font</a> + </ul> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-menulist">menulist</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-menulist-button">menulist-button</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-menutext">menutext</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-merge-merge">merge</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-message-box">message-box</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-meter">meter</a> @@ -3091,8 +3620,9 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-sizing-3/#valdef-column-width-min-content">in css-sizing-3, for column-width</a> <li><a href="https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content">in css-sizing-3, for width, min-width, max-width, height, min-height, max-height</a> </ul> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-minimal-ui">minimal-ui</a> <li><a href="https://drafts.csswg.org/css-exclusions-1/#valdef-wrap-flow-minimum">minimum</a> - <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-columns-minmax">minmax()</a> + <li><a href="https://www.w3.org/TR/css-grid-2/#valdef-grid-template-columns-minmax">minmax()</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-mintcream">mintcream</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-mistyrose">mistyrose</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linejoin-miter">miter</a> @@ -3108,6 +3638,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-generic-family-monospace">in css22, for &lt;generic-family></a> </ul> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-prefers-contrast-more">more</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-block-size">most-block-size</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-height">most-height</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-inline-size">most-inline-size</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-most-width">most-width</a> <li> move <ul> @@ -3120,12 +3654,18 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-values-4/#valdef-calc-nan">nan</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-skip-narrow">narrow</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-navajowhite">navajowhite</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-navy">navy</a> + <li> + navy + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-navy">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-navy">in css22, for &lt;color></a> + </ul> <li> nearest <ul> <li><a href="https://drafts.csswg.org/css-rhythm-1/#valdef-block-step-align-nearest">in css-rhythm-1, for block-step-align</a> <li><a href="https://drafts.csswg.org/css-values-4/#valdef-rounding-strategy-nearest">in css-values-4, for &lt;rounding-strategy></a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-group-nearest">in css-view-transitions-2, for view-transition-group</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-nearest">in scroll-animations-1, for scroll(), scroll-timeline-axis, view-timeline-axis</a> </ul> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-ne-resize">ne-resize</a> @@ -3138,15 +3678,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ no-close-quote <ul> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-no-close-quote">in css-content-3, for content, &lt;content-list>, &lt;quote></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-close-quote">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-no-close-quote">in css22, for content</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-no-common-ligatures">no-common-ligatures</a> - <li> - no-compress - <ul> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-justify-no-compress">in css-text-4, for text-justify</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-no-compress">in css-text-4, for text-spacing</a> - </ul> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-justify-no-compress">no-compress</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-no-contextual">no-contextual</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-no-discretionary-ligatures">no-discretionary-ligatures</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-no-drop">no-drop</a> @@ -3155,19 +3691,24 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ none <ul> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-name-none">in css-anchor-position-1, for anchor-name</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scroll-none">in css-anchor-position-1, for anchor-scroll</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-fallback-none">in css-anchor-position-1, for position-fallback</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-scope-none">in css-anchor-position-1, for anchor-scope</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-none">in css-anchor-position-1, for inset-area</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-none">in css-anchor-position-1, for position-area</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-none">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-none">in css-anchor-position-1, for position-try-options</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-fill-mode-none">in css-animations-1, for animation-fill-mode</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-name-none">in css-animations-1, for animation-name</a> <li><a href="https://drafts.csswg.org/css-animations-2/#valdef-animation-timeline-none">in css-animations-2, for animation-timeline, &lt;single-animation-timeline></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-none">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-image-none">in css-backgrounds-3, for background-image</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#box-shadow-none">in css-backgrounds-3, for box-shadow</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#shadow-offset-none">in css-borders-4, for box-shadow-offset</a> <li><a href="https://drafts.csswg.org/css-box-4/#valdef-margin-trim-none">in css-box-4, for margin-trim</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-none">in css-color-4, for &lt;color></a> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#valdef-forced-color-adjust-none">in css-color-adjust-1, for forced-color-adjust</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#valdef-container-name-none">in css-conditional-5, for container-name</a> <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-none">in css-contain-2, for contain</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-container-name-none">in css-contain-3, for container-name</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-container-name-none">in css-contain-3, for container-name</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-bookmark-level-none">in css-content-3, for bookmark-level</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-none">in css-content-3, for content</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-quotes-none">in css-content-3, for quotes</a> @@ -3176,6 +3717,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-none">in css-flexbox-1, for flex</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-kerning-none-value">in css-fonts-4, for font-kerning</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-optical-sizing-none-value">in css-fonts-4, for font-optical-sizing</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-position-none">in css-fonts-4, for font-synthesis-position</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-small-caps-none">in css-fonts-4, for font-synthesis-small-caps</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-style-none">in css-fonts-4, for font-synthesis-style</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-synthesis-weight-none">in css-fonts-4, for font-synthesis-weight</a> @@ -3189,6 +3731,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-images-4/#valdef-object-fit-none">in css-images-4, for object-fit</a> <li><a href="https://drafts.csswg.org/css-images-5/#valdef-object-view-box-none">in css-images-5, for object-view-box</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-wrap-none">in css-inline-3, for initial-letter-wrap</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-none">in css-inline-3, for text-box-trim</a> <li><a href="https://drafts.csswg.org/css-line-grid-1/#valdef-box-snap-none">in css-line-grid-1, for box-snap</a> <li><a href="https://drafts.csswg.org/css-line-grid-1/#valdef-line-snap-none">in css-line-grid-1, for line-snap</a> <li><a href="https://drafts.csswg.org/css-link-params-1/#valdef-none-none">in css-link-params-1, for none</a> @@ -3201,14 +3744,17 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-block-ellipsis-none">in css-overflow-4, for block-ellipsis</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-line-clamp-none">in css-overflow-4, for line-clamp</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-max-lines-none">in css-overflow-4, for max-lines</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#valdef-scroll-marker-group-none">in css-overflow-5, for scroll-marker-group</a> <li><a href="https://drafts.csswg.org/css-overscroll-1/#valdef-overscroll-behavior-none">in css-overscroll-1, for overscroll-behavior, overscroll-behavior-x, overscroll-behavior-y, overscroll-behavior-inline, overscroll-behavior-block</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-marks-none">in css-page-3, for @page/marks</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-none">in css-page-floats-3, for float</a> + <li><a href="https://drafts.csswg.org/css-position-4/#valdef-overlay-none">in css-position-4, for overlay</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-overhang-none">in css-ruby-1, for ruby-overhang</a> <li><a href="https://drafts.csswg.org/css-scroll-anchoring-1/#valdef-overflow-anchor-none">in css-scroll-anchoring-1, for overflow-anchor</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-align-none">in css-scroll-snap-1, for scroll-snap-align</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-none">in css-scroll-snap-1, for scroll-snap-type</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-target-none">in css-scroll-snap-2, for scroll-start-target, scroll-start-target-x, scroll-start-target-y, scroll-start-target-block, scroll-start-target-inline</a> + <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-target-none">in css-scroll-snap-2, for scroll-start-target</a> + <li><a href="https://www.w3.org/TR/css-scroll-snap-2/#valdef-scroll-start-target-none">in css-scroll-snap-2, for scroll-start-target, scroll-start-target-block, scroll-start-target-inline, scroll-start-target-x, scroll-start-target-y</a> <li><a href="https://drafts.csswg.org/css-scrollbars-1/#valdef-scrollbar-width-none">in css-scrollbars-1, for scrollbar-width</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-outside-none">in css-shapes-1, for shape-outside</a> <li><a href="https://drafts.csswg.org/css-size-adjust-1/#valdef-text-size-adjust-none">in css-size-adjust-1, for text-size-adjust</a> @@ -3224,7 +3770,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-justify-none">in css-text-4, for text-justify</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-none">in css-text-4, for text-spacing</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-transform-none">in css-text-4, for text-transform</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-boundary-expansion-none">in css-text-4, for word-boundary-expansion</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-none">in css-text-4, for word-space-transform</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-none">in css-text-decor-4, for text-decoration-line</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-none">in css-text-decor-4, for text-decoration-skip</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-box-none">in css-text-decor-4, for text-decoration-skip-box</a> @@ -3242,7 +3788,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-input-security-none">in css-ui-4, for input-security</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-pointer-events-none">in css-ui-4, for pointer-events</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-user-select-none">in css-ui-4, for user-select</a> + <li><a href="https://drafts.csswg.org/css-values-4/#valdef-clamp-none">in css-values-4, for clamp()</a> <li><a href="https://drafts.csswg.org/css-view-transitions-1/#valdef-view-transition-name-none">in css-view-transitions-1, for view-transition-name</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-navigation-none">in css-view-transitions-2, for @view-transition/navigation</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-class-none">in css-view-transitions-2, for view-transition-class</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-text-combine-upright-none">in css-writing-modes-4, for text-combine-upright</a> <li><a href="https://drafts.csswg.org/css2/#value-def-bo-none">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> <li><a href="https://drafts.csswg.org/css2/#valdef-clear-none">in css22, for clear</a> @@ -3266,9 +3815,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-pointer-none">in mediaqueries-5, for @media/pointer</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-scripting-none">in mediaqueries-5, for @media/scripting</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-update-none">in mediaqueries-5, for @media/update</a> - <li><a href="https://drafts.fxtf.org/motion-1/#offsetpath-none">in motion-1, for offset-path</a> + <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-path-none">in motion-1, for offset-path</a> <li><a href="https://www.w3.org/TR/motion-1/#offsetpath-none">in motion-1, for offsetpath</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-timeline-scope-none">in scroll-animations-1, for timeline-scope</a> </ul> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-bo-none">'none'::as border style</a> <li> nonzero <ul> @@ -3279,8 +3830,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ no-open-quote <ul> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-no-open-quote">in css-content-3, for content, &lt;content-list>, &lt;quote></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-no-open-quote">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-no-open-quote">in css22, for content</a> </ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-visibility-no-overflow">no-overflow</a> <li> no-preference <ul> @@ -3290,6 +3843,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-prefers-reduced-transparency-no-preference">in mediaqueries-5, for @media/prefers-reduced-transparency</a> </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-no-punctuation">no-punctuation</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-no-referrer">no-referrer</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-no-referrer-when-downgrade">no-referrer-when-downgrade</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-no-repeat">no-repeat</a> <li> normal @@ -3299,15 +3854,17 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-content-normal">in css-align-3, for justify-content, align-content</a> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-self-normal">in css-align-3, for justify-self</a> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-row-gap-normal">in css-align-3, for row-gap, column-gap, gap</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-order-normal">in css-anchor-position-1, for position-try-order</a> <li><a href="https://drafts.csswg.org/css-animations-1/#valdef-animation-direction-normal">in css-animations-1, for animation-direction</a> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#valdef-color-scheme-normal">in css-color-adjust-1, for color-scheme</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-container-type-normal">in css-contain-3, for container-type</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#valdef-container-type-normal">in css-conditional-5, for container-type</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-container-type-normal">in css-contain-3, for container-type</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-normal">in css-content-3, for content</a> + <li><a href="https://drafts.csswg.org/css-display-4/#valdef-reading-flow-normal">in css-display-4, for reading-flow</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-feature-settings-normal-value">in css-fonts-4, for font-feature-settings</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-kerning-normal-value">in css-fonts-4, for font-kerning</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-language-override-normal-value">in css-fonts-4, for font-language override</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-palette-normal">in css-fonts-4, for font-palette</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-normal">in css-fonts-4, for font-stretch</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-style-normal">in css-fonts-4, for font-style</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-variant-normal-value">in css-fonts-4, for font-variant</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-variant-alternates-normal-value">in css-fonts-4, for font-variant-alternates</a> @@ -3318,12 +3875,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#font-variant-numeric-normal-value">in css-fonts-4, for font-variant-numeric</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-variant-position-normal-value">in css-fonts-4, for font-variant-position</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-normal">in css-fonts-4, for font-weight</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-normal">in css-fonts-4, for font-width</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-ascent-overridedescriptor-normal">in css-fonts-5, for ascent-override!!descriptor, descent-override!!descriptor, line-gap-override!!descriptor</a> <li><a href="https://drafts.csswg.org/css-fonts-5/#valdef-superscript-position-overridedescriptor-normal">in css-fonts-5, for superscript-position-override!!descriptor, subscript-position-override!!descriptor, superscript-size-override!!descriptor, subscript-size-override!!descriptor</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-normal">in css-inline-3, for initial-letter</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-inline-sizing-normal">in css-inline-3, for inline-sizing</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-normal">in css-inline-3, for leading-trim</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal">in css-inline-3, for line-height</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-box-normal">in css-inline-3, for text-box</a> <li><a href="https://drafts.csswg.org/css-nav-1/#valdef-spatial-navigation-function-normal">in css-nav-1, for spatial-navigation-function</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-stop-normal">in css-scroll-snap-1, for scroll-snap-stop</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-speak-as-normal">in css-speech-1, for speak-as</a> @@ -3333,12 +3891,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-line-break-normal">in css-text-4, for line-break</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-overflow-wrap-normal">in css-text-4, for overflow-wrap</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-normal">in css-text-4, for text-autospace</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-normal">in css-text-4, for text-spacing</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-normal">in css-text-4, for text-spacing-trim</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-normal">in css-text-4, for white-space</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-boundary-detection-normal">in css-text-4, for word-boundary-detection</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-break-normal">in css-text-4, for word-break</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-spacing-normal">in css-text-4, for word-spacing</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#valdef-view-transition-group-normal">in css-view-transitions-2, for view-transition-group</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-normal">in css-writing-modes-4, for unicode-bidi</a> + <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-position-normal">in motion-1, for offset-position</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-end-normal">in scroll-animations-1, for animation-range-end</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-start-normal">in scroll-animations-1, for animation-range-start</a> </ul> @@ -3349,14 +3908,15 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ nowrap <ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-wrap-nowrap">in css-flexbox-1, for flex-wrap</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-nowrap">in css-text-4, for text-wrap</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-nowrap">in css-text-4, for white-space</a> + <li><a href="https://drafts.csswg.org/css-text-3/#valdef-white-space-nowrap">in css-text-3, for white-space</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-mode-nowrap">in css-text-4, for text-wrap-mode</a> </ul> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-n-resize">n-resize</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-ns-resize">ns-resize</a> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-number">number</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-speak-as-numbers">numbers</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-system-numeric">numeric</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-interpolate-size-numeric-only">numeric-only</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-nw-resize">nw-resize</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-nwse-resize">nwse-resize</a> <li> @@ -3368,14 +3928,19 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://www.w3.org/TR/css-text-decor-4/#valdef-text-decoration-skip-self-objects">objects</a> <li><a href="https://drafts.csswg.org/css2/#valdef-font-style-oblique">oblique</a> - <li><a href="https://www.w3.org/TR/css-fonts-4/#valdef-font-style-oblique-angle">oblique &lt;angle>?</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-style-oblique-angle--90deg-90deg">oblique &lt;angle [-90deg,90deg]>?</a> + <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-path-offset-path--coord-box">&lt;offset-path> || &lt;coord-box></a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-oklab-oklab">oklab</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-oklch-oklch">oklch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-old">old</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-oldlace">oldlace</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-numeric-oldstyle-nums">oldstyle-nums</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-olive">olive</a> + <li> + olive + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-olive">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-olive">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-olivedrab">olivedrab</a> <li> only @@ -3394,23 +3959,39 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ open-quote <ul> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-open-quote">in css-content-3, for content, &lt;content-list>, &lt;quote></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-open-quote">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-open-quote">in css22, for content</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-face-font-display-optional">optional</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-orange">orange</a> + <li> + orange + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-orange">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-orange">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-orangered">orangered</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-orchid">orchid</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-numeric-ordinal">ordinal</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-origin">origin</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-origin-when-cross-origin">origin-when-cross-origin</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-oriya">oriya</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#ornaments">ornaments(&lt;feature-value-name>)</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-outer-box-shadow">outer box-shadow</a> <li> outset <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-outset">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-position-outset">in css-borders-4, for box-shadow-position</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-outset">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-outset">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-align-outset">in fill-stroke-3, for stroke-align</a> </ul> - <li><a href="https://drafts.csswg.org/css-lists-3/#list-style-position-outside">outside</a> + <li> + outside + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-outside">in css-anchor-position-1, for anchor()</a> + <li><a href="https://drafts.csswg.org/css-lists-3/#list-style-position-outside">in css-lists-3, for list-style-position</a> + </ul> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-inside-outside-shape">outside-shape</a> <li> over @@ -3418,8 +3999,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-position-over">in css-ruby-1, for ruby-position</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-position-over">in css-text-decor-4, for text-emphasis-position</a> </ul> - <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-continue-overflow">overflow</a> - <li><a href="https://drafts.fxtf.org/compositing-2/#valdef-blend-mode-overlay">overlay</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#valdef-continue-overflow">overflow</a> + <li> + overlay + <ul> + <li><a href="https://drafts.fxtf.org/compositing-2/#valdef-blend-mode-overlay">in compositing-2, for &lt;blend-mode></a> + <li><a href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-overlay">in css-overflow-3, for overflow, overflow-x, overflow-y, overflow-block, overflow-inline</a> + </ul> <li> overline <ul> @@ -3433,7 +4019,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-padding-box">in css-backgrounds-3, for background-clip</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-origin-padding-box">in css-backgrounds-3, for background-origin</a> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-padding-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-padding-box">in css-box-4, for &lt;box>, &lt;visual-box>, &lt;layout-box>, &lt;shape-box>, &lt;geometry-box>, &lt;paint-box>, &lt;coord-box></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-padding-box">in css-masking-1, for mask-clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-origin-padding-box">in css-masking-1, for mask-origin</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-box-padding-box">in css-shapes-1, for &lt;shape-box>, shape-outside</a> @@ -3448,7 +4034,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-text-4/#valdef-hyphenate-limit-lines-page">in css-text-4, for hyphenate-limit-lines</a> </ul> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-overflow-block-paged">paged</a> - <li><a href="https://drafts.csswg.org/css-overflow-4/#valdef-continue-paginate">paginate</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#valdef-continue-paginate">paginate</a> <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-paint">paint</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-palegoldenrod">palegoldenrod</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-palegreen">palegreen</a> @@ -3464,7 +4050,6 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-position-3/#valdef-top-percentage">in css-position-3, for top, right, bottom, left, inset-block-start, inset-inline-start, inset-block-end, inset-inline-end, inset-block, inset-inline, inset</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-indent-percentage">in css-text-4, for text-indent</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-mix-percentage">in css-values-4, for mix()</a> <li><a href="https://drafts.csswg.org/css2/#valdef-padding-width-percentage">in css22, for &lt;padding-width></a> <li><a href="https://drafts.csswg.org/css2/#valdef-top-percentage">in css22, for top, right, bottom, left</a> <li><a href="https://drafts.csswg.org/css2/#valdef-vertical-align-percentage">in css22, for vertical-align</a> @@ -3476,6 +4061,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-peru">peru</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-caps-petite-caps">petite-caps</a> <li><a href="https://drafts.csswg.org/css-values-4/#valdef-calc-pi">pi</a> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-picture-in-picture">picture-in-picture</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-pink">pink</a> <li><a href="https://drafts.csswg.org/css-images-3/#valdef-image-rendering-pixelated">pixelated</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-unicode-bidi-plaintext">plaintext</a> @@ -3484,10 +4070,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> portrait <ul> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-container-orientation-portrait">in css-contain-3, for @container/orientation</a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#valdef-container-orientation-portrait">in css-conditional-5, for @container/orientation</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-container-orientation-portrait">in css-contain-3, for @container/orientation</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-size-portrait">in css-page-3, for @page/size</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-orientation-portrait">in mediaqueries-5, for @media/orientation</a> </ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-position-area">&lt;'position-area'></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-position-area">&lt;position-area></a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-powderblue">powderblue</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-pre">pre</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-pre-line">pre-line</a> @@ -3495,12 +4084,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ preserve <ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-preserve">in css-speech-1, for voice-family</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-preserve">in css-text-4, for text-space-collapse</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-preserve">in css-text-4, for white-space-collapse</a> </ul> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-preserve-breaks">preserve-breaks</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-preserve-breaks">preserve-breaks</a> <li><a href="https://drafts.csswg.org/css-color-adjust-1/#valdef-forced-color-adjust-preserve-parent-color">preserve-parent-color</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-space-collapse-preserve-spaces">preserve-spaces</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-pretty">pretty</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-collapse-preserve-spaces">preserve-spaces</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-pretty">pretty</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-white-space-pre-wrap">pre-wrap</a> <li> print @@ -3526,11 +4115,15 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ punctuation <ul> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-autospace-punctuation">in css-text-4, for text-autospace</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-punctuation">in css-text-4, for text-spacing</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-skip-punctuation">in css-text-decor-4, for text-emphasis-skip</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-purple">purple</a> - <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-push-button">push-button</a> + <li> + purple + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-purple">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-purple">in css22, for &lt;color></a> + </ul> + <li><a href="https://www.w3.org/TR/css-ui-4/#valdef-appearance-push-button">push-button</a> <li><a href="https://drafts.csswg.org/css-values-4/#px">px</a> <li><a href="https://drafts.csswg.org/css-values-4/#Q">q</a> <li> @@ -3540,13 +4133,17 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-5/#valdef-rgb-r">in css-color-5, for rgb()</a> </ul> <li><a href="https://drafts.csswg.org/css-values-4/#rad">rad</a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-shape">&lt;radial-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-radial-size">&lt;radial-size></a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-radio">radio</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-initial-letter-raise">raise</a> + <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-path-ray">&lt;ray()></a> <li><a href="https://www.w3.org/TR/motion-1/#valdef-offsetpath-ray">ray()</a> <li><a href="https://drafts.fxtf.org/motion-1/#valdef-ray-ray-size">&lt;ray-size></a> <li><a href="https://drafts.csswg.org/css-values-4/#rcap">rcap</a> + <li><a href="https://drafts.csswg.org/css-values-4/#rcap">rcap unit</a> <li><a href="https://drafts.csswg.org/css-values-4/#rch">rch</a> - <li><a href="https://drafts.csswg.org/css-display-4/#valdef-order-reading">reading</a> + <li><a href="https://drafts.csswg.org/css-values-4/#rch">rch unit</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-rebeccapurple">rebeccapurple</a> <li> rec2020 @@ -3562,7 +4159,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-break-4/#valdef-break-before-recto">in css-break-4, for break-before, break-after</a> <li><a href="https://drafts.csswg.org/css-logical-1/#valdef-logical-page-recto">in css-logical-1, for logical-page</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-red">red</a> + <li> + red + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-red">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-red">in css22, for &lt;color></a> + </ul> <li> reduce <ul> @@ -3580,6 +4182,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-position-3/#valdef-position-relative">relative</a> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-color-profile-rendering-intent-relative-colorimetric">relative-colorimetric</a> <li><a href="https://drafts.csswg.org/css-values-4/#rem">rem</a> + <li><a href="https://drafts.csswg.org/css-values-4/#rem">rem unit</a> <li> repeat <ul> @@ -3596,16 +4199,17 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.fxtf.org/motion-1/#valdef-offset-rotate-reverse">in motion-1, for offset-rotate</a> </ul> <li><a href="https://drafts.csswg.org/css-lists-3/#valdef-counter-reset-reversed-counter-name-integer">&lt;reversed-counter-name> &lt;integer>?</a> - <li><a href="https://www.w3.org/TR/css-cascade-5/#valdef-all-revert">revert</a> + <li><a href="https://drafts.csswg.org/css-cascade-5/#valdef-all-revert">revert</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#valdef-all-revert-layer">revert-layer</a> <li><a href="https://drafts.csswg.org/css-values-4/#rex">rex</a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-ending-shape">&lt;rg-ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#valdef-radial-gradient-rg-size">&lt;rg-size></a> + <li><a href="https://drafts.csswg.org/css-values-4/#rex">rex unit</a> <li><a href="https://drafts.csswg.org/css-values-4/#ric">ric</a> + <li><a href="https://drafts.csswg.org/css-values-4/#ric">ric unit</a> <li> ridge <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-ridge">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-ridge">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-ridge">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> </ul> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-right">:right</a> @@ -3614,7 +4218,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-justify-content-right">in css-align-3, for justify-content, justify-self, justify-items</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-right">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-right">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-right">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-right">in css-backgrounds-3, for background-position</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-right">in css-borders-4, for border-limit</a> <li><a href="https://drafts.csswg.org/css-break-4/#valdef-break-before-right">in css-break-4, for break-before, break-after</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-right">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-right">in css-page-floats-3, for float</a> @@ -3631,6 +4238,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-balance-rightwards">rightwards</a> <li><a href="https://drafts.csswg.org/css-values-4/#rlh">rlh</a> + <li><a href="https://drafts.csswg.org/css-values-4/#rlh">rlh unit</a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-root">root</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-rosybrown">rosybrown</a> <li><a href="https://drafts.csswg.org/css-page-3/#valdef-page-orientation-rotate-left">rotate-left</a> @@ -3640,6 +4248,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-round">in css-backgrounds-3, for background-repeat</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-repeat-round">in css-backgrounds-3, for border-image-repeat</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-corner-shape-round">in css-borders-4, for corner-shape</a> <li><a href="https://drafts.csswg.org/css-round-display-1/#valdef-media-shape-round">in css-round-display-1, for @media/shape</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linecap-round">in fill-stroke-3, for stroke-linecap</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linejoin-round">in fill-stroke-3, for stroke-linejoin</a> @@ -3701,6 +4310,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-env-1/#valdef-env-safe-area-inset-right">safe-area-inset-right</a> <li><a href="https://drafts.csswg.org/css-env-1/#valdef-env-safe-area-inset-top">safe-area-inset-top</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-salmon">salmon</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-same-origin">same-origin</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-sandybrown">sandybrown</a> <li> sans-serif @@ -3732,18 +4342,22 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-overflow-block-scroll">in mediaqueries-5, for @media/overflow-block</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-overflow-inline-scroll">in mediaqueries-5, for @media/overflow-inline</a> </ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-scrollbar">scrollbar</a> <li><a href="https://drafts.csswg.org/css-will-change-1/#valdef-will-change-scroll-position">scroll-position</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-seagreen">seagreen</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-searchfield">searchfield</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-seashell">seashell</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-selecteditem">selecteditem</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-selecteditemtext">selecteditemtext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-selecteditem">selecteditem</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-selecteditemtext">selecteditemtext</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-self">self</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-self-block">self-block</a> <li> self-end <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-self-position-self-end">in css-align-3, for &lt;self-position>, justify-self, align-self</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-self-end">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-self-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-self-end">in css-anchor-position-1, for position-area, &lt;position-area></a> </ul> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-self-inline">self-inline</a> <li> @@ -3751,9 +4365,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-self-position-self-start">in css-align-3, for &lt;self-position>, justify-self, align-self</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-self-start">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-self-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-self-start">in css-anchor-position-1, for position-area, &lt;position-area></a> </ul> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-semi-condensed">semi-condensed</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-semi-expanded">semi-expanded</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-semi-condensed">semi-condensed</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-semi-expanded">semi-expanded</a> <li> &lt;semitones> <ul> @@ -3778,6 +4394,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li> sides <ul> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-sides">in css-borders-4, for border-limit</a> <li><a href="https://drafts.fxtf.org/motion-1/#size-sides">in motion-1, for &lt;ray-size></a> <li><a href="https://www.w3.org/TR/motion-1/#size-sides">in motion-1, for &lt;size></a> </ul> @@ -3787,21 +4404,23 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-sideways-rl">sideways-rl</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-sienna">sienna</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-silent">silent</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-silver">silver</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-formal">simp-chinese-formal</a> - <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-informal">simp-chinese-informal</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-east-asian-simplified">simplified</a> <li> - &lt;size> + silver <ul> - <li><a href="https://www.w3.org/TR/css-images-3/#valdef-radial-gradient-size">in css-images-3, for radial-gradient(), repeating-radial-gradient()</a> - <li><a href="https://www.w3.org/TR/motion-1/#valdef-offsetpath-size">in motion-1, for offsetpath</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-silver">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-silver">in css22, for &lt;color></a> </ul> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-formal">simp-chinese-formal</a> + <li><a href="https://drafts.csswg.org/css-counter-styles-3/#simp-chinese-informal">simp-chinese-informal</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-east-asian-simplified">simplified</a> + <li><a href="https://www.w3.org/TR/motion-1/#valdef-offsetpath-size">&lt;size></a> <li> size <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#valdef-container-type-size">in css-conditional-5, for container-type</a> <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-size">in css-contain-2, for contain</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#valdef-container-type-size">in css-contain-3, for container-type</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#valdef-container-type-size">in css-contain-3, for container-type</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-calc-size-size">in css-values-5, for calc-size()</a> </ul> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-self-skip-all">skip-all</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-self-skip-line-through">skip-line-through</a> @@ -3813,7 +4432,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-slategray">slategray</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-slategrey">slategrey</a> <li><a href="https://drafts.csswg.org/css-break-4/#valdef-box-decoration-break-slice">slice</a> - <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-slider-horizontal">slider-horizontal</a> + <li><a href="https://www.w3.org/TR/css-ui-4/#valdef-appearance-slider-horizontal">slider-horizontal</a> <li> slow <ul> @@ -3854,6 +4473,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <ul> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-line-style-solid">in css-backgrounds-3, for &lt;line-style>, border-style, border-top-style, border-left-style, border-bottom-style, border-right-style, border</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-leader-solid">in css-content-3, for leader()</a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-solid">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-solid">in css22, for &lt;border-style>, border-top-style, border-right-style, border-bottom-style, border-left-style, border-style</a> </ul> <li> @@ -3862,9 +4482,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-space">in css-backgrounds-3, for background-repeat</a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-border-image-repeat-space">in css-backgrounds-3, for border-image-repeat</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-leader-space">in css-content-3, for leader()</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-boundary-expansion-space">in css-text-4, for word-boundary-expansion</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-word-space-transform-space">in css-text-4, for word-space-transform</a> </ul> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-adjacent">space-adjacent</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-space-all">space-all</a> <li> space-around @@ -3882,19 +4501,90 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-justify-content-space-between">in css-flexbox-1, for justify-content</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-align-space-between">in css-ruby-1, for ruby-align</a> </ul> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-end">space-end</a> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly">space-evenly</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-space-first">space-first</a> + <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-skip-spaces">spaces</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-spacing-trim">&lt;spacing-trim></a> <li> - space-first + span-all <ul> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-first">in css-text-4, for text-spacing</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-space-first">in css-text-4, for text-spacing-trim</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-all">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-all">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-block-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-block-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-block-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-block-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-block-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-block-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-bottom + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-bottom">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-bottom">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-inline-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-inline-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-inline-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-inline-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-inline-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-inline-start">in css-anchor-position-1, for position-area, &lt;position-area></a> </ul> - <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-skip-spaces">spaces</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-space-start">space-start</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-spacing-trim">&lt;spacing-trim></a> <li><a href="https://drafts.csswg.org/css-grid-2/#grid-placement-span-int">span &amp;&amp; [ &lt;integer [1,∞]> || &lt;custom-ident> ]</a> <li><a href="https://www.w3.org/TR/css-grid-2/#grid-placement-span-int">span &amp;&amp; [ &lt;integer> || &lt;custom-ident> ]</a> + <li> + span-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-top + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-top">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-top">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-x-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-x-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-x-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-x-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-x-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-x-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-y-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-y-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-y-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + span-y-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-span-y-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-span-y-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li> speech <ul> @@ -3914,10 +4604,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ square <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#square">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-square">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-square">in css22, for list-style-type</a> <li><a href="https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linecap-square">in fill-stroke-3, for stroke-linecap</a> </ul> - <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-appearance-square-button">square-button</a> + <li><a href="https://www.w3.org/TR/css-ui-4/#valdef-appearance-square-button">square-button</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-s-resize">s-resize</a> <li> srgb @@ -3931,22 +4622,28 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ stable <ul> <li><a href="https://drafts.csswg.org/css-overflow-3/#valdef-scrollbar-gutter-stable">in css-overflow-3, for scrollbar-gutter</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-stable">in css-text-4, for text-wrap</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-stable">in css-text-4, for text-wrap-style</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-numeric-stacked-fractions">stacked-fractions</a> - <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-dynamic-range-standard">standard</a> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-display-mode-standalone">standalone</a> + <li> + standard + <ul> + <li><a href="https://drafts.csswg.org/css-color-hdr/#valdef-dynamic-range-limit-standard">in css-color-hdr, for dynamic-range-limit</a> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-media-dynamic-range-standard">in mediaqueries-5, for @media/dynamic-range</a> + </ul> <li> start <ul> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-self-position-start">in css-align-3, for &lt;self-position>, &lt;content-position>, justify-self, align-self, justify-content, align-content</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-start">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-start">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-string-start">in css-content-3, for string()</a> <li><a href="https://drafts.csswg.org/css-easing-2/#valdef-steps-start">in css-easing-2, for steps()</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-leading-trim-start">in css-inline-3, for leading-trim</a> <li><a href="https://drafts.csswg.org/css-rhythm-1/#valdef-block-step-align-start">in css-rhythm-1, for block-step-align</a> <li><a href="https://drafts.csswg.org/css-ruby-1/#valdef-ruby-align-start">in css-ruby-1, for ruby-align</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-align-start">in css-scroll-snap-1, for scroll-snap-align</a> - <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#valdef-scroll-start-start">in css-scroll-snap-2, for scroll-start, scroll-start-x, scroll-start-y, scroll-start-block, scroll-start-inline</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-align-start">in css-text-4, for text-align</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-group-align-start">in css-text-4, for text-group-align</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-skip-spaces-start">in css-text-decor-4, for text-decoration-skip-spaces</a> @@ -3977,15 +4674,18 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-contain-2/#valdef-contain-strict">in css-contain-2, for contain</a> <li><a href="https://drafts.csswg.org/css-text-4/#valdef-line-break-strict">in css-text-4, for line-break</a> </ul> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-strict-origin">strict-origin</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-strict-origin-when-cross-origin">strict-origin-when-cross-origin</a> <li><a href="https://drafts.csswg.org/css2/#valdef-content-string">&lt;string></a> <li><a href="https://drafts.csswg.org/css-grid-2/#valdef-grid-template-areas-string">&lt;string>+</a> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-string">string</a> - <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content---string--counter">/ [ &lt;string> | &lt;counter> ]+</a> + <li><a href="https://www.w3.org/TR/css-content-3/#valdef-content---string--counter">/ [ &lt;string> | &lt;counter> ]+</a> + <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content---string--counter--attr">/ [ &lt;string> | &lt;counter> | &lt;attr()> ]+</a> <li><a href="https://drafts.csswg.org/css2/#valdef-quotes-strings">[&lt;string> &lt;string>]+</a> <li> stroke-box <ul> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-stroke-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-stroke-box">in css-box-4, for &lt;box>, &lt;geometry-box>, &lt;paint-box>, &lt;coord-box></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-path-stroke-box">in css-masking-1, for clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-stroke-box">in css-masking-1, for mask-clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-origin-stroke-box">in css-masking-1, for mask-origin</a> @@ -4021,12 +4721,12 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-super">in css-inline-3, for baseline-shift, vertical-align</a> <li><a href="https://drafts.csswg.org/css2/#valdef-vertical-align-super">in css22, for vertical-align</a> </ul> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-svb">svb</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-svh">svh</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-svi">svi</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-svmax">svmax</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-svmin">svmin</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-svw">svw</a> + <li><a href="https://drafts.csswg.org/css-values-4/#svb">svb</a> + <li><a href="https://drafts.csswg.org/css-values-4/#svh">svh</a> + <li><a href="https://drafts.csswg.org/css-values-4/#svi">svi</a> + <li><a href="https://drafts.csswg.org/css-values-4/#svmax">svmax</a> + <li><a href="https://drafts.csswg.org/css-values-4/#svmin">svmin</a> + <li><a href="https://drafts.csswg.org/css-values-4/#svw">svw</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-face-font-display-swap">swap</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#swash">swash(&lt;feature-value-name>)</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-sw-resize">sw-resize</a> @@ -4037,60 +4737,74 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ table <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table">in css-display-4, for display, &lt;display-inside></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table">in css22, for display</a> </ul> <li> table-caption <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-caption">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-caption">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-caption">in css22, for display</a> </ul> <li> table-cell <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-cell">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-cell">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-cell">in css22, for display</a> </ul> <li> table-column <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-column">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-column">in css22, for display</a> </ul> <li> table-column-group <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-column-group">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-column-group">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-column-group">in css22, for display</a> </ul> <li> table-footer-group <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-footer-group">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-footer-group">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-footer-group">in css22, for display</a> </ul> <li> table-header-group <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-header-group">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-header-group">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-header-group">in css22, for display</a> </ul> <li> table-row <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-row">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-row">in css22, for display</a> </ul> <li> table-row-group <ul> <li><a href="https://drafts.csswg.org/css-display-4/#valdef-display-table-row-group">in css-display-4, for display, &lt;display-internal></a> + <li><a href="https://www.w3.org/TR/CSS21/tables.html#value-def-table-row-group">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-table-row-group">in css22, for display</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-numeric-tabular-nums">tabular-nums</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-tamil">tamil</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-tan">tan</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-teal">teal</a> + <li> + teal + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-teal">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-teal">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-telugu">telugu</a> <li> text @@ -4098,7 +4812,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-6/#valdef-contrast-color-text">in css-color-6, for contrast-color()</a> <li><a href="https://drafts.csswg.org/css-content-3/#valdef-content-text">in css-content-3, for content()</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-emoji-text">in css-fonts-4, for font-variant-emoji</a> - <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-edge-text">in css-inline-3, for text-edge</a> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-line-fit-edge-text">in css-inline-3, for line-fit-edge, &lt;&lt;text-edge>></a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-text">in css-ui-4, for cursor</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-user-select-text">in css-ui-4, for user-select</a> </ul> @@ -4135,14 +4849,18 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-border-width-thin">in css22, for &lt;border-width>, border-top-width, border-right-width, border-bottom-width, border-left-width, border-width</a> </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-thistle">thistle</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-threeddarkshadow">threeddarkshadow</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-threedface">threedface</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-threedhighlight">threedhighlight</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-threedlightshadow">threedlightshadow</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-threedshadow">threedshadow</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-tibetan">tibetan</a> <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-time">time</a> <li> - &lt;timeline-range-name> &lt;percentage> + &lt;timeline-range-name> &lt;length-percentage>? <ul> - <li><a href="https://www.w3.org/TR/scroll-animations-1/#valdef-animation-delay-start-timeline-range-name-percentage">in scroll-animations-1, for animation-delay-start, animation-delay-end</a> - <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-end-timeline-range-name-percentage">in scroll-animations-1, for animation-range-end</a> - <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-start-timeline-range-name-percentage">in scroll-animations-1, for animation-range-start</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-end-timeline-range-name-length-percentage">in scroll-animations-1, for animation-range-end</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-animation-range-start-timeline-range-name-length-percentage">in scroll-animations-1, for animation-range-start</a> </ul> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-caps-titling-caps">titling-caps</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-to">to</a> @@ -4151,7 +4869,10 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ top <ul> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-top">in css-anchor-position-1, for anchor()</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-top">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-top">in css-anchor-position-1, for position-area, &lt;position-area></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-top">in css-backgrounds-3, for background-position</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-border-limit-top">in css-borders-4, for border-limit</a> <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-baseline-shift-top">in css-inline-3, for baseline-shift, vertical-align</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-clear-top">in css-page-floats-3, for clear</a> <li><a href="https://drafts.csswg.org/css-page-floats-3/#valdef-float-top">in css-page-floats-3, for float</a> @@ -4172,11 +4893,27 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-border-color-transparent">in css22, for border-color, border-top-color, border-right-color, border-bottom-color, border-left-color</a> </ul> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-emphasis-style-triangle">triangle</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-adjacent">trim-adjacent</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-auto">trim-auto</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-end">trim-end</a> - <li><a href="https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-start">trim-start</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-all">trim-all</a> + <li> + trim-both + <ul> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-trim-both">in css-inline-3, for text-box-trim</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-both">in css-text-4, for text-spacing-trim</a> + </ul> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-trim-end">trim-end</a> + <li> + trim-start + <ul> + <li><a href="https://drafts.csswg.org/css-inline-3/#valdef-text-box-trim-trim-start">in css-inline-3, for text-box-trim</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-spacing-trim-trim-start">in css-text-4, for text-spacing-trim</a> + </ul> <li><a href="https://drafts.csswg.org/mediaqueries-5/#valdef-custom-media-true">true</a> + <li> + &lt;try-tactic> + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-try-fallbacks-try-tactic">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-position-try-options-try-tactic">in css-anchor-position-1, for position-try-options</a> + </ul> <li> tty <ul> @@ -4195,8 +4932,8 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-ui-rounded">ui-rounded</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-ui-sans-serif">ui-sans-serif</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-family-ui-serif">ui-serif</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-ultra-condensed">ultra-condensed</a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-stretch-ultra-expanded">ultra-expanded</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-ultra-condensed">ultra-condensed</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-width-ultra-expanded">ultra-expanded</a> <li> under <ul> @@ -4214,6 +4951,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-caps-unicase">unicase</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-emoji-unicode">unicode</a> <li><a href="https://drafts.csswg.org/css-align-3/#valdef-overflow-position-unsafe">unsafe</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-unsafe-url">unsafe-url</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#valdef-all-unset">unset</a> <li> up @@ -4234,12 +4972,14 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ upper-latin <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-latin">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-latin">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-upper-latin">in css22, for list-style-type</a> </ul> <li> upper-roman <ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#upper-roman">in css-counter-styles-3, for &lt;counter-style-name></a> + <li><a href="https://www.w3.org/TR/CSS21/generate.html#value-def-upper-roman">in css2</a> <li><a href="https://drafts.csswg.org/css2/#value-def-upper-roman">in css22, for list-style-type</a> </ul> <li> @@ -4255,7 +4995,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css2/#valdef-content-uri">in css22, for content</a> </ul> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-image-url">&lt;url></a> - <li><a href="https://drafts.csswg.org/css-values-5/#valdef-attr-url">url</a> + <li><a href="https://drafts.csswg.org/css-values-5/#valdef-request-url-modifier-use-credentials">use-credentials</a> <li> userspaceonuse <ul> @@ -4263,7 +5003,7 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-maskcontentunits-userspaceonuse">in css-masking-1, for maskContentUnits</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-maskunits-userspaceonuse">in css-masking-1, for maskUnits</a> </ul> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-vb">vb</a> + <li><a href="https://drafts.csswg.org/css-values-4/#vb">vb</a> <li><a href="https://drafts.csswg.org/css-logical-1/#valdef-logical-page-selector-verso">:verso</a> <li> verso @@ -4271,16 +5011,16 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-break-4/#valdef-break-before-verso">in css-break-4, for break-before, break-after</a> <li><a href="https://drafts.csswg.org/css-logical-1/#valdef-logical-page-verso">in css-logical-1, for logical-page</a> </ul> - <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-vertical">vertical</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-lr">vertical-lr</a> + <li><a href="https://drafts.csswg.org/css-borders-4/#valdef-box-shadow-offset-vertical-offset">vertical offset</a> <li><a href="https://drafts.csswg.org/css-writing-modes-4/#valdef-writing-mode-vertical-rl">vertical-rl</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-vertical-text">vertical-text</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-vh">vh</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-vi">vi</a> + <li><a href="https://drafts.csswg.org/css-values-4/#vh">vh</a> + <li><a href="https://drafts.csswg.org/css-values-4/#vi">vi</a> <li> view-box <ul> - <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-view-box">in css-box-4, for &lt;box>, &lt;shape-box>, &lt;geometry-box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#valdef-box-view-box">in css-box-4, for &lt;box>, &lt;geometry-box>, &lt;coord-box></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-clip-path-view-box">in css-masking-1, for clip-path</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-view-box">in css-masking-1, for mask-clip</a> <li><a href="https://drafts.fxtf.org/css-masking-1/#valdef-mask-origin-view-box">in css-masking-1, for mask-origin</a> @@ -4301,11 +5041,11 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-overflow-3/#valdef-overflow-visible">in css-overflow-3, for overflow, overflow-x, overflow-y</a> <li><a href="https://drafts.csswg.org/css2/#valdef-overflow-visible">in css22, for overflow</a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-system-color-visitedtext">visitedtext</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-visitedtext">visitedtext</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#valdef-shape-vline">vline</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-vmax">vmax</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-vmin">vmin</a> - <li><a href="https://drafts.csswg.org/css-values-4/#valdef-length-vw">vw</a> + <li><a href="https://drafts.csswg.org/css-values-4/#vmax">vmax</a> + <li><a href="https://drafts.csswg.org/css-values-4/#vmin">vmin</a> + <li><a href="https://drafts.csswg.org/css-values-4/#vw">vw</a> <li><a href="https://drafts.csswg.org/css-color-5/#valdef-hwb-w">w</a> <li><a href="https://drafts.csswg.org/css-ui-4/#valdef-cursor-wait">wait</a> <li><a href="https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-style-wavy">wavy</a> @@ -4322,15 +5062,23 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://compat.spec.whatwg.org/#valdef-flex--webkit-inline-box">-webkit-inline-box</a> <li><a href="https://compat.spec.whatwg.org/#valdef-flex--webkit-inline-flex">-webkit-inline-flex</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-wheat">wheat</a> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-white">white</a> + <li> + white + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-white">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-white">in css22, for &lt;color></a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-whitesmoke">whitesmoke</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-anchor-size-width">width</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-window">window</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-windowframe">windowframe</a> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-windowtext">windowtext</a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-speak-as-words">words</a> <li> wrap <ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-wrap-wrap">in css-flexbox-1, for flex-wrap</a> - <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-wrap">in css-text-4, for text-wrap</a> + <li><a href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-mode-wrap">in css-text-4, for text-wrap-mode</a> <li><a href="https://drafts.csswg.org/css-exclusions-1/#valdef-wrap-through-wrap">in css3-exclusions, for wrap-through</a> </ul> <li><a href="https://drafts.csswg.org/css-flexbox-1/#valdef-flex-wrap-wrap-reverse">wrap-reverse</a> @@ -4342,6 +5090,13 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-x">in css-scroll-snap-1, for scroll-snap-type</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#valdef-rotate-x">in css-transforms-2, for rotate</a> <li><a href="https://drafts.csswg.org/css-values-4/#x">in css-values-4, for &lt;resolution></a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-x">in scroll-animations-1, for scroll(), scroll-timeline-axis, view-timeline-axis</a> + </ul> + <li> + x-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-end">in css-anchor-position-1, for position-area, &lt;position-area></a> </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-rate-x-fast">x-fast</a> <li> @@ -4358,9 +5113,27 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-pitch-x-low">in css-speech-1, for voice-pitch</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-range-x-low">in css-speech-1, for voice-range</a> </ul> + <li> + x-self-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-self-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-self-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + x-self-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-self-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-self-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-rate-x-slow">x-slow</a> <li><a href="https://drafts.csswg.org/css2/#valdef-font-size-x-small">x-small</a> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-volume-x-soft">x-soft</a> + <li> + x-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-x-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-x-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li> x-strong <ul> @@ -4385,10 +5158,40 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <li><a href="https://drafts.csswg.org/css-color-5/#valdef-color-y">in css-color-5, for color()</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-1/#valdef-scroll-snap-type-y">in css-scroll-snap-1, for scroll-snap-type</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#valdef-rotate-y">in css-transforms-2, for rotate</a> + <li><a href="https://drafts.csswg.org/scroll-animations-1/#valdef-scroll-y">in scroll-animations-1, for scroll(), scroll-timeline-axis, view-timeline-axis</a> + </ul> + <li> + yellow + <ul> + <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-yellow">in css-color-4, for &lt;color>, &lt;named-color></a> + <li><a href="https://drafts.csswg.org/css2/#valdef-color-yellow">in css22, for &lt;color></a> </ul> - <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-yellow">yellow</a> <li><a href="https://drafts.csswg.org/css-color-4/#valdef-color-yellowgreen">yellowgreen</a> + <li> + y-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li><a href="https://drafts.csswg.org/css-speech-1/#valdef-voice-family-young">young</a> + <li> + y-self-end + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-self-end">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-self-end">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + y-self-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-self-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-self-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> + <li> + y-start + <ul> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#valdef-inset-area-y-start">in css-anchor-position-1, for inset-area, &lt;inset-area></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#valdef-position-area-y-start">in css-anchor-position-1, for position-area, &lt;position-area></a> + </ul> <li> z <ul> @@ -4414,11 +5217,9 @@ <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </span><span class="content">Grammar Productions / Types</span><a class="self-link" href="#types"></a></h2> <div> <ul class="index"> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-absolute-color-base">&lt;absolute-color-base></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-absolute-color-function">&lt;absolute-color-function></a> <li><a href="https://drafts.csswg.org/css2/#value-def-absolute-size">&lt;absolute-size></a> <li><a href="https://drafts.csswg.org/css-speech-1/#typedef-voice-family-age">&lt;age></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-alpha-value">&lt;alpha-value></a> + <li><a href="https://drafts.csswg.org/css-color-4/#typedef-color-alpha-value">&lt;alpha-value></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#anb-production">&lt;an+b></a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#typedef-anchor-element">&lt;anchor-element></a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#typedef-anchor-side">&lt;anchor-side></a> @@ -4436,10 +5237,12 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-shapes-2/#typedef-shape-arc-sweep">&lt;arc-sweep></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-at-keyword-token">&lt;at-keyword-token></a> <li><a href="https://drafts.csswg.org/css-conditional-values-1/#typedef-atomic-condition">&lt;atomic-condition></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-at-rule-list">&lt;at-rule-list></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-attachment">&lt;attachment></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-attribute-selector">&lt;attribute-selector></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-attr-matcher">&lt;attr-matcher></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-attr-modifier">&lt;attr-modifier></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-attr-name">&lt;attr-name></a> <li><a href="https://drafts.csswg.org/css-values-5/#typedef-attr-type">&lt;attr-type></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-auto-repeat">&lt;auto-repeat></a> <li><a href="https://drafts.csswg.org/css-text-4/#typedef-autospace">&lt;autospace></a> @@ -4455,22 +5258,32 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-bg-position">&lt;bg-position></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-bg-size">&lt;bg-size></a> <li><a href="https://drafts.fxtf.org/compositing-2/#ltblendmodegt">&lt;blend-mode></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-block-contents">&lt;block-contents></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-bool-and">&lt;bool-and></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-boolean">&lt;boolean></a> <li><a href="https://drafts.csswg.org/css-conditional-values-1/#typedef-boolean-constant">&lt;boolean-constant></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-boolean-without-or">&lt;boolean-without-or></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-bool-in-parens">&lt;bool-in-parens></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-bool-not">&lt;bool-not></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-bool-or">&lt;bool-or></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-bool-test">&lt;bool-test></a> <li><a href="https://drafts.csswg.org/css2/#value-def-border-style">&lt;border-style></a> - <li><a href="https://drafts.csswg.org/css2/#value-def-border-width">&lt;border-width></a> + <li><a href="https://www.w3.org/TR/CSS21/box.html#value-def-border-width">&lt;border-width></a> <li> &lt;bottom> <ul> <li><a href="https://drafts.fxtf.org/css-masking-1/#typedef-clip-bottom">in css-masking-1, for clip</a> - <li><a href="https://drafts.csswg.org/css2/#value-def-bottom">in css22</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#value-def-bottom">in css2</a> </ul> - <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-box">&lt;box></a> + <li><a href="https://drafts.csswg.org/css-box-4/#typedef-box">&lt;box></a> <li><a href="https://drafts.csswg.org/css-shapes-2/#typedef-shape-by-to">&lt;by-to></a> - <li><a href="https://drafts.csswg.org/css-values-4/#typedef-calc-constant">&lt;calc-constant></a> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-calc-keyword">&lt;calc-keyword></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-calc-mix">&lt;calc-mix()></a> <li><a href="https://drafts.csswg.org/css-values-3/#typedef-calc-number-product">&lt;calc-number-product></a> <li><a href="https://drafts.csswg.org/css-values-3/#typedef-calc-number-sum">&lt;calc-number-sum></a> <li><a href="https://drafts.csswg.org/css-values-3/#typedef-calc-number-value">&lt;calc-number-value></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-calc-product">&lt;calc-product></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-calc-size-basis">&lt;calc-size-basis></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-calc-sum">&lt;calc-sum></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-calc-value">&lt;calc-value></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-cdc-token">&lt;cdc-token></a> @@ -4481,10 +5294,17 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-color-5/#typedef-cmyk-component">&lt;cmyk-component></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-colon-token">&lt;colon-token></a> <li><a href="https://drafts.csswg.org/css-color-5/#typedef-color">&lt;color></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-color-base">&lt;color-base></a> <li><a href="https://drafts.csswg.org/css-fonts-5/#color-font-tech-values">&lt;color-font-tech></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-color-function">&lt;color-function></a> <li><a href="https://drafts.csswg.org/css-color-5/#color-interpolation-method">&lt;color-interpolation-method></a> <li><a href="https://drafts.csswg.org/css-color-5/#typedef-color-space">&lt;color-space></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-colorspace-params">&lt;colorspace-params></a> + <li> + &lt;colorspace-params> + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-colorspace-params">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-colorspace-params">in css-color-hdr</a> + </ul> <li><a href="https://drafts.csswg.org/css-images-4/#typedef-color-stop">&lt;color-stop></a> <li><a href="https://drafts.csswg.org/css-images-4/#typedef-color-stop-angle">&lt;color-stop-angle></a> <li><a href="https://drafts.csswg.org/css-images-4/#typedef-color-stop-length">&lt;color-stop-length></a> @@ -4508,11 +5328,24 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/selectors-4/#typedef-compound-selector-list">&lt;compound-selector-list></a> <li><a href="https://drafts.csswg.org/css-conditional-values-1/#typedef-condition">&lt;condition></a> <li><a href="https://drafts.csswg.org/css-conditional-values-1/#typedef-condition-in-parens">&lt;condition-in-parens></a> + <li><a href="https://drafts.csswg.org/css-images-4/#typedef-conic-gradient-syntax">&lt;conic-gradient-syntax></a> <li><a href="https://drafts.csswg.org/css-conditional-values-1/#typedef-consequent">&lt;consequent></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-container-condition">&lt;container-condition></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-container-name">&lt;container-name></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-container-query">&lt;container-query></a> + <li> + &lt;container-condition> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-container-condition">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-container-condition">in css-contain-3</a> + </ul> + <li> + &lt;container-name> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-container-name">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-container-name">in css-contain-3</a> + </ul> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-container-progress">&lt;container-progress()></a> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-container-query">&lt;container-query></a> <li><a href="https://drafts.csswg.org/css-align-3/#typedef-content-distribution">&lt;content-distribution></a> + <li><a href="https://drafts.csswg.org/css-gcpm-4/#typedef-content-level">&lt;content-level></a> <li><a href="https://drafts.csswg.org/css-content-3/#typedef-content-content-list">&lt;content-list></a> <li><a href="https://drafts.csswg.org/css-align-3/#typedef-content-position">&lt;content-position></a> <li><a href="https://drafts.csswg.org/css-content-3/#typedef-content-content-replacement">&lt;content-replacement></a> @@ -4523,20 +5356,29 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-lists-3/#typedef-counter-name">&lt;counter-name></a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style">&lt;counter-style></a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style-name">&lt;counter-style-name></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier-crossorigin-modifier">&lt;crossorigin-modifier></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-css-type">&lt;css-type></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-cubic-bezier-easing-function">&lt;cubic-bezier-easing-function></a> <li><a href="https://drafts.csswg.org/css-shapes-2/#typedef-shape-curve-command">&lt;curve-command></a> <li><a href="https://drafts.csswg.org/css-extensions-1/#typedef-custom-arg">&lt;custom-arg></a> <li><a href="https://drafts.csswg.org/css-color-5/#typedef-custom-color-space">&lt;custom-color-space></a> <li><a href="https://drafts.csswg.org/css-highlight-api-1/#typedef-custom-highlight-name">&lt;custom-highlight-name></a> <li><a href="https://drafts.csswg.org/css-values-4/#identifier-value">&lt;custom-ident></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-custom-params">&lt;custom-params></a> + <li> + &lt;custom-params> + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-custom-params">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-custom-params">in css-color-hdr</a> + </ul> <li><a href="https://drafts.csswg.org/css-variables-2/#typedef-custom-property-name">&lt;custom-property-name></a> <li><a href="https://drafts.csswg.org/css-extensions-1/#typedef-custom-selector">&lt;custom-selector></a> <li><a href="https://svgwg.org/svg2-draft/painting.html#DataTypeDasharray">&lt;dasharray></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-dashed-function">&lt;dashed-function></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-dashed-ident">&lt;dashed-ident></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-dashndashdigit-ident">&lt;dashndashdigit-ident></a> <li><a href="https://drafts.csswg.org/css-speech-1/#typedef-voice-volume-decibel">&lt;decibel></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-declaration-list">&lt;declaration-list></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-declaration-rule-list">&lt;declaration-rule-list></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-declaration-value">&lt;declaration-value></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-delim-token">&lt;delim-token></a> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-deprecated-color">&lt;deprecated-color></a> @@ -4553,41 +5395,48 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-easing-function">&lt;easing-function></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#east-asian-variant-values">&lt;east-asian-variant-values></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#east-asian-width-values">&lt;east-asian-width-values></a> - <li><a href="https://www.w3.org/TR/css-values-4/#typedef-mix-end-value">&lt;end-value></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-eof-token">&lt;eof-token></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-explicit-track-list">&lt;explicit-track-list></a> <li><a href="https://drafts.csswg.org/css-extensions-1/#typedef-extension-name">&lt;extension-name></a> - <li><a href="https://www.w3.org/TR/css-images-3/#typedef-extent-keyword">&lt;extent-keyword></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#family-name-value">&lt;family-name></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#feature-value-name-value">&lt;feature-value-name></a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#typedef-filter-function">&lt;filter-function></a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#typedef-result-filter-primitive-reference">&lt;filter-primitive-reference></a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#typedef-filter-value-list">&lt;filter-value-list></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-final-bg-layer">&lt;final-bg-layer></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-first-valid">&lt;first-valid()></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-fixed-breadth">&lt;fixed-breadth></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-fixed-repeat">&lt;fixed-repeat></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-fixed-size">&lt;fixed-size></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-flex">&lt;flex></a> <li><a href="https://drafts.csswg.org/css-fonts-5/#font-features-tech-values">&lt;font-features-tech></a> - <li><a href="https://www.w3.org/TR/css-fonts-5/#font-feature-tech-values">&lt;font-feature-tech></a> <li><a href="https://drafts.csswg.org/css-fonts-5/#font-format-values">&lt;font-format></a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#font-stretch-css3-values">&lt;font-stretch-css3></a> - <li> - &lt;font-tech> - <ul> - <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-font-tech">in css-conditional-5</a> - <li><a href="https://drafts.csswg.org/css-fonts-5/#font-tech-values">in css-fonts-5</a> - </ul> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-font-src">&lt;font-src></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-font-src-list">&lt;font-src-list></a> + <li><a href="https://drafts.csswg.org/css-fonts-5/#font-tech-values">&lt;font-tech></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-variant-css21-values">&lt;font-variant-css2></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#font-weight-absolute-values">&lt;font-weight-absolute></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#font-width-css3-values">&lt;font-width-css3></a> <li><a href="https://www.w3.org/TR/selectors-4/#typedef-forgiving-relative-selector-list">&lt;forgiving-relative-selector-list></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-forgiving-selector-list">&lt;forgiving-selector-list></a> <li><a href="https://drafts.csswg.org/css-values-4/#frequency-value">&lt;frequency></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-frequency-percentage">&lt;frequency-percentage></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-function-dependency-list">&lt;function-dependency-list></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-function-name">&lt;function-name></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-function-parameter">&lt;function-parameter></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-function-parameter-list">&lt;function-parameter-list></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-function-token">&lt;function-token></a> <li><a href="https://drafts.csswg.org/css-speech-1/#typedef-voice-family-gender">&lt;gender></a> - <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed">&lt;general-enclosed></a> - <li><a href="https://drafts.csswg.org/css-fonts-4/#generic-family-value">&lt;generic-family></a> + <li> + &lt;general-enclosed> + <ul> + <li><a href="https://drafts.csswg.org/css-values-4/#typedef-general-enclosed">in css-values-4</a> + <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed">in mediaqueries-5</a> + </ul> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-generic-complete">&lt;generic-complete></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-generic-family">&lt;generic-family></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-generic-incomplete">&lt;generic-incomplete></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-generic-script-specific">&lt;generic-script-specific></a> <li><a href="https://drafts.csswg.org/css-speech-1/#typedef-generic-voice">&lt;generic-voice></a> <li><a href="https://drafts.fxtf.org/css-masking-1/#typedef-geometry-box">&lt;geometry-box></a> <li><a href="https://drafts.csswg.org/css-images-4/#typedef-gradient">&lt;gradient></a> @@ -4611,6 +5460,7 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-images-4/#typedef-image-tags">&lt;image-tags></a> <li><a href="https://drafts.csswg.org/css-cascade-5/#typedef-import-conditions">&lt;import-conditions></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-inflexible-breadth">&lt;inflexible-breadth></a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#typedef-inset-area">&lt;inset-area></a> <li> &lt;integer> <ul> @@ -4618,11 +5468,12 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-integer">in css-syntax-3</a> <li><a href="https://drafts.csswg.org/css-values-4/#integer-value">in css-values-4</a> </ul> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier-integrity-modifier">&lt;integrity-modifier></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-intrinsic-size-keyword">&lt;intrinsic-size-keyword></a> <li><a href="https://drafts.fxtf.org/compositing-2/#isolated-propid">&lt;isolation-mode></a> <li><a href="https://drafts.csswg.org/css-animations-1/#typedef-keyframe-block">&lt;keyframe-block></a> <li><a href="https://drafts.csswg.org/css-animations-1/#typedef-keyframe-selector">&lt;keyframe-selector></a> <li><a href="https://drafts.csswg.org/css-animations-1/#typedef-keyframes-name">&lt;keyframes-name></a> - <li><a href="https://drafts.csswg.org/css-text-4/#typedef-word-boundary-detection-lang">&lt;lang></a> <li><a href="https://drafts.csswg.org/css-cascade-5/#typedef-layer-name">&lt;layer-name></a> <li><a href="https://drafts.csswg.org/css-box-4/#typedef-layout-box">&lt;layout-box></a> <li><a href="https://drafts.csswg.org/css-content-3/#typedef-leader-type">&lt;leader-type></a> @@ -4630,8 +5481,9 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s &lt;left> <ul> <li><a href="https://drafts.fxtf.org/css-masking-1/#typedef-clip-left">in css-masking-1, for clip</a> - <li><a href="https://drafts.csswg.org/css2/#value-def-left">in css22</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#value-def-left">in css2</a> </ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-legacy-device-cmyk-syntax">&lt;legacy-device-cmyk-syntax></a> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-legacy-hsla-syntax">&lt;legacy-hsla-syntax></a> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-legacy-hsl-syntax">&lt;legacy-hsl-syntax></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-legacy-pseudo-element-selector">&lt;legacy-pseudo-element-selector></a> @@ -4642,6 +5494,7 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-images-4/#typedef-linear-color-hint">&lt;linear-color-hint></a> <li><a href="https://drafts.csswg.org/css-images-4/#typedef-linear-color-stop">&lt;linear-color-stop></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-linear-easing-function">&lt;linear-easing-function></a> + <li><a href="https://drafts.csswg.org/css-images-4/#typedef-linear-gradient-syntax">&lt;linear-gradient-syntax></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-linear-stop">&lt;linear-stop></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-linear-stop-length">&lt;linear-stop-length></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-linear-stop-list">&lt;linear-stop-list></a> @@ -4664,6 +5517,7 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-in-parens">&lt;media-in-parens></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-not">&lt;media-not></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-or">&lt;media-or></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-media-progress">&lt;media-progress()></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-query">&lt;media-query></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-query-list">&lt;media-query-list></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-media-type">&lt;media-type></a> @@ -4676,10 +5530,12 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-mf-plain">&lt;mf-plain></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-mf-range">&lt;mf-range></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-mf-value">&lt;mf-value></a> - <li><a href="https://drafts.csswg.org/css-color-4/#typedef-modern-hsla-syntax">&lt;modern-hsla-syntax></a> - <li><a href="https://drafts.csswg.org/css-color-4/#typedef-modern-hsl-syntax">&lt;modern-hsl-syntax></a> - <li><a href="https://drafts.csswg.org/css-color-4/#typedef-modern-rgba-syntax">&lt;modern-rgba-syntax></a> - <li><a href="https://drafts.csswg.org/css-color-4/#typedef-modern-rgb-syntax">&lt;modern-rgb-syntax></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-mix">&lt;mix()></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-modern-device-cmyk-syntax">&lt;modern-device-cmyk-syntax></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-modern-hsla-syntax">&lt;modern-hsla-syntax></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-modern-hsl-syntax">&lt;modern-hsl-syntax></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-modern-rgba-syntax">&lt;modern-rgba-syntax></a> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-modern-rgb-syntax">&lt;modern-rgb-syntax></a> <li><a href="https://drafts.csswg.org/css-shapes-2/#typedef-shape-move-command">&lt;move-command></a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#typedef-mq-boolean">&lt;mq-boolean></a> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-named-color">&lt;named-color></a> @@ -4699,6 +5555,9 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-fonts-4/#numeric-figure-values">&lt;numeric-figure-values></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#numeric-fraction-values">&lt;numeric-fraction-values></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#numeric-spacing-values">&lt;numeric-spacing-values></a> + <li><a href="https://drafts.fxtf.org/motion-1/#typedef-offset-path">&lt;offset-path></a> + <li><a href="https://drafts.csswg.org/css-color-4/#typedef-opacity-opacity-value">&lt;opacity-value></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-opentype-tag">&lt;opentype-tag></a> <li><a href="https://drafts.csswg.org/css-ui-4/#typedef-outline-line-style">&lt;outline-line-style></a> <li><a href="https://drafts.csswg.org/css-align-3/#typedef-overflow-position">&lt;overflow-position></a> <li><a href="https://drafts.csswg.org/css2/#value-def-padding-width">&lt;padding-width></a> @@ -4713,42 +5572,70 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s </ul> <li><a href="https://drafts.csswg.org/css-box-4/#typedef-paint-box">&lt;paint-box></a> <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-font-palette-palette-identifier">&lt;palette-identifier></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#typedef-font-palette-palette-mix">&lt;palette-mix()></a> <li><a href="https://drafts.csswg.org/css-values-4/#percentage-value">&lt;percentage></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-percentage-token">&lt;percentage-token></a> <li><a href="https://svgwg.org/svg2-draft/shapes.html#DataTypePoints">&lt;points></a> <li><a href="https://drafts.csswg.org/css-color-5/#typedef-polar-color-space">&lt;polar-color-space></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-position">&lt;position></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-predefined-rgb">&lt;predefined-rgb></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-predefined-rgb-params">&lt;predefined-rgb-params></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#typedef-position-area">&lt;position-area></a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-predefined-polar-params">&lt;predefined-polar-params></a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rectangular">&lt;predefined-rectangular></a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rectangular-params">&lt;predefined-rectangular-params></a> + <li> + &lt;predefined-rgb> + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-predefined-rgb">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rgb">in css-color-hdr</a> + </ul> + <li> + &lt;predefined-rgb-params> + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-predefined-rgb-params">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-predefined-rgb-params">in css-color-hdr</a> + </ul> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-progress-fn">&lt;progress()></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-progress">&lt;progress></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-pseudo-class-selector">&lt;pseudo-class-selector></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-pseudo-compound-selector">&lt;pseudo-compound-selector></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-pseudo-element-selector">&lt;pseudo-element-selector></a> <li><a href="https://drafts.csswg.org/css-page-3/#typedef-pseudo-page">&lt;pseudo-page></a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#typedef-pt-class-selector">&lt;pt-class-selector></a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#typedef-pt-name-and-class-selector">&lt;pt-name-and-class-selector></a> <li><a href="https://drafts.csswg.org/css-view-transitions-1/#typedef-pt-name-selector">&lt;pt-name-selector></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-query-in-parens">&lt;query-in-parens></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-qualified-rule-list">&lt;qualified-rule-list></a> + <li> + &lt;query-in-parens> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-query-in-parens">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-query-in-parens">in css-contain-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-quirky-color">&lt;quirky-color></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-quirky-length">&lt;quirky-length></a> <li><a href="https://drafts.csswg.org/css-content-3/#typedef-quote">&lt;quote></a> + <li><a href="https://drafts.csswg.org/css-images-3/#typedef-radial-extent">&lt;radial-extent></a> + <li><a href="https://drafts.csswg.org/css-images-4/#typedef-radial-gradient-syntax">&lt;radial-gradient-syntax></a> + <li><a href="https://drafts.csswg.org/css-images-3/#typedef-radial-shape">&lt;radial-shape></a> + <li><a href="https://drafts.csswg.org/css-images-3/#typedef-radial-size">&lt;radial-size></a> <li><a href="https://drafts.csswg.org/css-values-5/#typedef-random-caching-options">&lt;random-caching-options></a> <li><a href="https://drafts.csswg.org/css-values-4/#ratio-value">&lt;ratio></a> <li><a href="https://drafts.fxtf.org/motion-1/#typedef-ray-size">&lt;ray-size></a> <li><a href="https://drafts.csswg.org/css-color-5/#typedef-rectangular-color-space">&lt;rectangular-color-space></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier-referrerpolicy-modifier">&lt;referrerpolicy-modifier></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-relative-real-selector">&lt;relative-real-selector></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-relative-real-selector-list">&lt;relative-real-selector-list></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-relative-selector">&lt;relative-selector></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-relative-selector-list">&lt;relative-selector-list></a> <li><a href="https://drafts.csswg.org/css2/#value-def-relative-size">&lt;relative-size></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-repeat-style">&lt;repeat-style></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-request-url-modifier">&lt;request-url-modifier></a> <li><a href="https://drafts.csswg.org/css-values-4/#resolution-value">&lt;resolution></a> <li><a href="https://drafts.csswg.org/css-lists-3/#typedef-reversed-counter-name">&lt;reversed-counter-name></a> - <li><a href="https://drafts.csswg.org/css-images-3/#typedef-rg-ending-shape">&lt;rg-ending-shape></a> - <li><a href="https://drafts.csswg.org/css-images-3/#typedef-rg-extent-keyword">&lt;rg-extent-keyword></a> - <li><a href="https://drafts.csswg.org/css-images-3/#typedef-rg-size">&lt;rg-size></a> <li> &lt;right> <ul> <li><a href="https://drafts.fxtf.org/css-masking-1/#typedef-clip-right">in css-masking-1, for clip</a> - <li><a href="https://drafts.csswg.org/css2/#value-def-right">in css22</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#value-def-right">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-rounding-strategy">&lt;rounding-strategy></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-rule-list">&lt;rule-list></a> @@ -4756,15 +5643,14 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-cascade-6/#typedef-scope-start">&lt;scope-start></a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#typedef-scroller">&lt;scroller></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-selector-list">&lt;selector-list></a> - <li><a href="https://www.w3.org/TR/css-cascade-6/#typedef-selector-scope">&lt;selector-scope></a> <li><a href="https://drafts.csswg.org/css-align-3/#typedef-self-position">&lt;self-position></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-semicolon-token">&lt;semicolon-token></a> <li><a href="https://drafts.csswg.org/css-speech-1/#typedef-voice-pitch-semitones">&lt;semitones></a> <li><a href="https://drafts.csswg.org/css-backgrounds-3/#typedef-shadow">&lt;shadow></a> - <li><a href="https://drafts.csswg.org/css2/#value-def-shape">&lt;shape></a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#value-def-shape">&lt;shape></a> <li><a href="https://drafts.csswg.org/css-shapes-1/#typedef-shape-box">&lt;shape-box></a> <li><a href="https://drafts.csswg.org/css-shapes-2/#typedef-shape-command">&lt;shape-command></a> - <li><a href="https://drafts.csswg.org/css-shapes-1/#typedef-shape-radius">&lt;shape-radius></a> + <li><a href="https://www.w3.org/TR/css-shapes-1/#typedef-shape-radius">&lt;shape-radius></a> <li><a href="https://drafts.csswg.org/css-images-4/#typedef-side-or-corner">&lt;side-or-corner></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-signed-integer">&lt;signed-integer></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-signless-integer">&lt;signless-integer></a> @@ -4777,26 +5663,45 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-animations-1/#typedef-single-animation-iteration-count">&lt;single-animation-iteration-count></a> <li><a href="https://drafts.csswg.org/css-animations-1/#typedef-single-animation-play-state">&lt;single-animation-play-state></a> <li><a href="https://drafts.csswg.org/css-animations-2/#typedef-single-animation-timeline">&lt;single-animation-timeline></a> - <li><a href="https://drafts.csswg.org/css-transitions-1/#single-transition">&lt;single-transition></a> + <li><a href="https://drafts.csswg.org/css-transitions-2/#single-transition">&lt;single-transition></a> <li><a href="https://drafts.csswg.org/css-transitions-1/#single-transition-property">&lt;single-transition-property></a> - <li><a href="https://www.w3.org/TR/css-images-3/#typedef-size">&lt;size></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-size-feature">&lt;size-feature></a> + <li> + &lt;size-feature> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-size-feature">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-size-feature">in css-contain-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-shapes-2/#typedef-shape-smooth-command">&lt;smooth-command></a> <li><a href="https://html.spec.whatwg.org/multipage/images.html#source-size">&lt;source-size></a> <li><a href="https://html.spec.whatwg.org/multipage/images.html#source-size-list">&lt;source-size-list></a> <li><a href="https://html.spec.whatwg.org/multipage/images.html#source-size-value">&lt;source-size-value></a> <li><a href="https://drafts.csswg.org/css-text-4/#typedef-spacing-trim">&lt;spacing-trim></a> - <li><a href="https://www.w3.org/TR/css-values-4/#typedef-mix-start-value">&lt;start-value></a> + <li><a href="https://drafts.csswg.org/css-borders-4/#typedef-spread-shadow">&lt;spread-shadow></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-step-easing-function">&lt;step-easing-function></a> <li><a href="https://drafts.csswg.org/css-easing-2/#typedef-step-position">&lt;step-position></a> <li><a href="https://drafts.csswg.org/css-values-4/#string-value">&lt;string></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-string-token">&lt;string-token></a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-style-block">&lt;style-block></a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#typedef-style-block">&lt;style-block></a> <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-style-condition">&lt;style-condition></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-style-feature">&lt;style-feature></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-style-in-parens">&lt;style-in-parens></a> - <li><a href="https://drafts.csswg.org/css-contain-3/#typedef-style-query">&lt;style-query></a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-stylesheet">&lt;stylesheet></a> + <li> + &lt;style-feature> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-style-feature">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-style-feature">in css-contain-3</a> + </ul> + <li> + &lt;style-in-parens> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-style-in-parens">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-style-in-parens">in css-contain-3</a> + </ul> + <li> + &lt;style-query> + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#typedef-style-query">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#typedef-style-query">in css-contain-3</a> + </ul> + <li><a href="https://www.w3.org/TR/css-syntax-3/#typedef-stylesheet">&lt;stylesheet></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-subclass-selector">&lt;subclass-selector></a> <li><a href="https://drafts.csswg.org/css-conditional-3/#typedef-supports-condition">&lt;supports-condition></a> <li><a href="https://drafts.csswg.org/css-conditional-3/#typedef-supports-decl">&lt;supports-decl></a> @@ -4808,14 +5713,22 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.fxtf.org/fill-stroke-3/#typedef-svg-paint">&lt;svg-paint></a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#typedef-symbol">&lt;symbol></a> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#typedef-symbols-type">&lt;symbols-type></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-syntax">&lt;syntax></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-syntax-combinator">&lt;syntax-combinator></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-syntax-component">&lt;syntax-component></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-syntax-component-name">&lt;syntax-component-name></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-syntax-multiplier">&lt;syntax-multiplier></a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-syntax-type">&lt;syntax-type></a> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-system-color">&lt;system-color></a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#system-family-name-value">&lt;system-family-name></a> <li><a href="https://drafts.csswg.org/css-content-3/#typedef-target">&lt;target></a> <li><a href="https://drafts.csswg.org/css-color-6/#typedef-target-contrast">&lt;target-contrast></a> <li><a href="https://drafts.csswg.org/css-ui-4/#typedef-target-name">&lt;target-name></a> + <li><a href="https://drafts.csswg.org/css-inline-3/#typedef-text-edge">&lt;text-edge></a> <li><a href="https://drafts.csswg.org/css-values-4/#time-value">&lt;time></a> <li><a href="https://drafts.csswg.org/scroll-animations-1/#typedef-timeline-range-name">&lt;timeline-range-name></a> <li><a href="https://drafts.csswg.org/css-values-4/#typedef-time-percentage">&lt;time-percentage></a> - <li><a href="https://drafts.csswg.org/css-values-5/#typedef-toggle-value">&lt;toggle-value></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-toggle">&lt;toggle()></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#tokendef-open-paren">&lt;(-token></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#tokendef-close-paren">&lt;)-token></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#tokendef-open-square">&lt;[-token></a> @@ -4826,7 +5739,7 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s &lt;top> <ul> <li><a href="https://drafts.fxtf.org/css-masking-1/#typedef-clip-top">in css-masking-1, for clip</a> - <li><a href="https://drafts.csswg.org/css2/#value-def-top">in css22</a> + <li><a href="https://www.w3.org/TR/CSS21/visufx.html#value-def-top">in css2</a> </ul> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-track-breadth">&lt;track-breadth></a> <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-track-list">&lt;track-list></a> @@ -4834,9 +5747,20 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-grid-2/#typedef-track-size">&lt;track-size></a> <li><a href="https://drafts.csswg.org/css-transforms-2/#typedef-transform-function">&lt;transform-function></a> <li><a href="https://drafts.csswg.org/css-transforms-1/#typedef-transform-list">&lt;transform-list></a> + <li><a href="https://drafts.csswg.org/css-values-5/#typedef-transform-mix">&lt;transform-mix()></a> + <li><a href="https://drafts.csswg.org/css-transitions-2/#typedef-transition-behavior-value">&lt;transition-behavior-value></a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#typedef-try-size">&lt;try-size></a> + <li> + &lt;try-tactic> + <ul> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#typedef-position-try-fallbacks-try-tactic">in css-anchor-position-1, for position-try-fallbacks</a> + <li><a href="https://www.w3.org/TR/css-anchor-position-1/#typedef-position-try-options-try-tactic">in css-anchor-position-1, for position-try-options</a> + </ul> + <li><a href="https://drafts.csswg.org/css-mixins-1/#typedef-type">&lt;type()></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-type-selector">&lt;type-selector></a> - <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-urange">&lt;urange></a> - <li><a href="https://drafts.csswg.org/css2/#value-def-uri">&lt;uri></a> + <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-unicode-range-token">&lt;unicode-range-token></a> + <li><a href="https://www.w3.org/TR/css-syntax-3/#typedef-urange">&lt;urange></a> + <li><a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-uri">&lt;uri></a> <li> &lt;url> <ul> @@ -4849,9 +5773,20 @@ <h2 class="heading settled" data-level="4" id="types"><span class="secno">4. </s <li><a href="https://drafts.csswg.org/css-box-4/#typedef-visual-box">&lt;visual-box></a> <li><a href="https://drafts.csswg.org/css-color-6/#typedef-wcag2">&lt;wcag2></a> <li><a href="https://drafts.csswg.org/css-syntax-3/#typedef-whitespace-token">&lt;whitespace-token></a> + <li><a href="https://drafts.csswg.org/css-values-5/#whole-value">&lt;whole-value></a> <li><a href="https://drafts.csswg.org/selectors-4/#typedef-wq-name">&lt;wq-name></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-xyz">&lt;xyz></a> - <li><a href="https://drafts.csswg.org/css-color-5/#typedef-xyz-params">&lt;xyz-params></a> + <li> + &lt;xyz> + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-xyz">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-xyz">in css-color-hdr</a> + </ul> + <li> + &lt;xyz-params> + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#typedef-xyz-params">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#typedef-xyz-params">in css-color-hdr</a> + </ul> <li><a href="https://drafts.csswg.org/css-color-4/#typedef-xyz-space">&lt;xyz-space></a> <li><a href="https://drafts.csswg.org/css-values-4/#zero-value">&lt;zero></a> </ul> @@ -4863,7 +5798,6 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-acos">acos()</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#funcdef-anchor">anchor()</a> <li><a href="https://drafts.csswg.org/css-anchor-position-1/#funcdef-anchor-size">anchor-size()</a> - <li><a href="https://www.w3.org/TR/css-animations-1/#funcdef-animationevent">animationevent()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-asin">asin()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-atan">atan()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-atan2">atan2()</a> @@ -4871,11 +5805,25 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-blur">blur()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-brightness">brightness()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-calc">calc()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-calc-mix">calc-mix()</a> + <li> + calc-size() + <ul> + <li><a href="https://drafts.csswg.org/css-sizing-3/#funcdef-width-calc-size">in css-sizing-3, for width, min-width, max-width, height, min-height, max-height</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-calc-size">in css-values-5</a> + </ul> <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-circle">circle()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-clamp">clamp()</a> - <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-color">color()</a> + <li> + color() + <ul> + <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-color">in css-color-5</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#funcdef-color">in css-color-hdr</a> + </ul> + <li><a href="https://drafts.csswg.org/css-color-6/#funcdef-color-layers">color-layers()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-color-mix">color-mix()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-conic-gradient">conic-gradient()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-container-progress">container-progress()</a> <li><a href="https://drafts.csswg.org/css-content-3/#funcdef-content">content()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-contrast">contrast()</a> <li><a href="https://drafts.csswg.org/css-color-6/#funcdef-contrast-color">contrast-color()</a> @@ -4883,18 +5831,27 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.csswg.org/css-lists-3/#funcdef-counter">counter()</a> <li><a href="https://drafts.csswg.org/css-lists-3/#funcdef-counters">counters()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-cross-fade">cross-fade()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-request-url-modifier-crossorigin">crossorigin()</a> <li><a href="https://drafts.csswg.org/css-easing-2/#funcdef-cubic-bezier-easing-function-cubic-bezier">cubic-bezier()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-device-cmyk">device-cmyk()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-drop-shadow">drop-shadow()</a> + <li><a href="https://drafts.csswg.org/css-color-hdr/#funcdef-dynamic-range-limit-mix">dynamic-range-limit-mix()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-element">element()</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-ellipse">ellipse()</a> <li><a href="https://drafts.csswg.org/css-env-1/#funcdef-env">env()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-exp">exp()</a> <li><a href="https://drafts.csswg.org/css-overflow-4/#funcdef-text-overflow-fade">fade()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter">filter()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-first-valid">first-valid()</a> + <li> + fit-content() + <ul> + <li><a href="https://drafts.csswg.org/css-grid-2/#funcdef-grid-template-columns-fit-content">in css-grid-2, for grid-template-columns, grid-template-rows</a> + <li><a href="https://drafts.csswg.org/css-sizing-3/#funcdef-width-fit-content">in css-sizing-3, for width, min-width, max-width, height, min-height, max-height</a> + </ul> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-grayscale">grayscale()</a> - <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-hsl">hsl()</a> - <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-hsla">hsla()</a> + <li><a href="https://drafts.csswg.org/css-color-4/#funcdef-hsl">hsl()</a> + <li><a href="https://drafts.csswg.org/css-color-4/#funcdef-hsla">hsla()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-hue-rotate">hue-rotate()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-hwb">hwb()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-hypot">hypot()</a> @@ -4902,6 +5859,7 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-image">image()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-image-set">image-set()</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-inset">inset()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-request-url-modifier-integrity">integrity()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-invert">invert()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-lab">lab()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-lch">lch()</a> @@ -4911,30 +5869,30 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.csswg.org/css-content-3/#funcdef-leader">in css-content-3</a> <li><a href="https://drafts.csswg.org/css-content-3/#funcdef-content-leader">in css-content-3, for content, &lt;content-list></a> </ul> + <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-light-dark">light-dark()</a> <li><a href="https://drafts.csswg.org/css-easing-2/#funcdef-linear">linear()</a> - <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-linear-gradient">linear-gradient()</a> + <li><a href="https://www.w3.org/TR/css-images-4/#funcdef-linear-gradient">linear-gradient()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-log">log()</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#funcdef-transform-matrix">matrix()</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#funcdef-matrix3d">matrix3d()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-max">max()</a> <li><a href="https://drafts.csswg.org/css-conditional-5/#funcdef-media">media()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-media-progress">media-progress()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-min">min()</a> - <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-mix">mix()</a> + <li><a href="https://drafts.csswg.org/css-grid-2/#funcdef-grid-template-columns-minmax">minmax()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-mix">mix()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-mod">mod()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-oklab">oklab()</a> <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-oklch">oklch()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-opacity">opacity()</a> <li><a href="https://drafts.css-houdini.org/css-paint-api-1/#funcdef-paint">paint()</a> - <li> - path() - <ul> - <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-path">in css-shapes-1, for &lt;basic-shape></a> - <li><a href="https://drafts.fxtf.org/motion-1/#funcdef-offsetpath-pathfunc-path">in motion-1, for offsetpath-pathfunc</a> - </ul> + <li><a href="https://drafts.csswg.org/css-fonts-4/#funcdef-palette-mix">palette-mix()</a> + <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-path">path()</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#funcdef-perspective">perspective()</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-polygon">polygon()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-pow">pow()</a> - <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-radial-gradient">radial-gradient()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-progress">progress()</a> + <li><a href="https://www.w3.org/TR/css-images-4/#funcdef-radial-gradient">radial-gradient()</a> <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-random">random()</a> <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-random-item">random-item()</a> <li><a href="https://drafts.fxtf.org/motion-1/#funcdef-ray">ray()</a> @@ -4944,13 +5902,14 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect">in css-masking-1, for clip</a> <li><a href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect">in css-shapes-1, for &lt;basic-shape></a> </ul> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-request-url-modifier-referrerpolicy">referrerpolicy()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-rem">rem()</a> <li><a href="https://drafts.csswg.org/css-grid-2/#funcdef-repeat">repeat()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-repeating-conic-gradient">repeating-conic-gradient()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-repeating-linear-gradient">repeating-linear-gradient()</a> <li><a href="https://drafts.csswg.org/css-images-4/#funcdef-repeating-radial-gradient">repeating-radial-gradient()</a> - <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-rgb">rgb()</a> - <li><a href="https://drafts.csswg.org/css-color-5/#funcdef-rgba">rgba()</a> + <li><a href="https://drafts.csswg.org/css-color-4/#funcdef-rgb">rgb()</a> + <li><a href="https://drafts.csswg.org/css-color-4/#funcdef-rgba">rgba()</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#funcdef-transform-rotate">rotate()</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#funcdef-rotate3d">rotate3d()</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#funcdef-rotatex">rotatex()</a> @@ -4981,6 +5940,8 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.csswg.org/scroll-animations-1/#funcdef-scroll">scroll()</a> <li><a href="https://drafts.fxtf.org/filter-effects-1/#funcdef-filter-sepia">sepia()</a> <li><a href="https://drafts.csswg.org/css-shapes-2/#funcdef-shape">shape()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-sibling-count">sibling-count()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-sibling-index">sibling-index()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-sign">sign()</a> <li><a href="https://drafts.csswg.org/css-values-4/#funcdef-sin">sin()</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#funcdef-transform-skew">skew()</a> @@ -5000,6 +5961,7 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <li><a href="https://drafts.csswg.org/css-content-3/#funcdef-target-counters">target-counters()</a> <li><a href="https://drafts.csswg.org/css-content-3/#target-text-function">target-text()</a> <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-toggle">toggle()</a> + <li><a href="https://drafts.csswg.org/css-values-5/#funcdef-transform-mix">transform-mix()</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translate">translate()</a> <li><a href="https://drafts.csswg.org/css-transforms-2/#funcdef-translate3d">translate3d()</a> <li><a href="https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translatex">translatex()</a> @@ -5017,14 +5979,21 @@ <h2 class="heading settled" data-level="5" id="functions"><span class="secno">5. <h2 class="heading settled" data-level="6" id="at-rules"><span class="secno">6. </span><span class="content">At-Rules</span><a class="self-link" href="#at-rules"></a></h2> <div> <ul class="index"> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-annotation">@annotation</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-bottom-center">@bottom-center</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-bottom-left">@bottom-left</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-bottom-left-corner">@bottom-left-corner</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-bottom-right">@bottom-right</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-bottom-right-corner">@bottom-right-corner</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-character-variant">@character-variant</a> <li><a href="https://drafts.csswg.org/css-syntax-3/#at-ruledef-charset">@charset</a> <li><a href="https://drafts.csswg.org/css-color-5/#at-ruledef-profile">@color-profile</a> - <li><a href="https://drafts.csswg.org/css-contain-3/#at-ruledef-container">@container</a> + <li> + @container + <ul> + <li><a href="https://drafts.csswg.org/css-conditional-5/#at-ruledef-container">in css-conditional-5</a> + <li><a href="https://www.w3.org/TR/css-contain-3/#at-ruledef-container">in css-contain-3</a> + </ul> <li><a href="https://drafts.csswg.org/css-counter-styles-3/#at-ruledef-counter-style">@counter-style</a> <li><a href="https://drafts.csswg.org/mediaqueries-5/#at-ruledef-custom-media">@custom-media</a> <li><a href="https://drafts.csswg.org/css-extensions-1/#at-ruledef-custom-selector">@custom-selector</a> @@ -5032,6 +6001,8 @@ <h2 class="heading settled" data-level="6" id="at-rules"><span class="secno">6. <li><a href="https://drafts.csswg.org/css-fonts-5/#at-font-face-rule">@font-face</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values">@font-feature-values</a> <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-palette-values">@font-palette-values</a> + <li><a href="https://drafts.csswg.org/css-mixins-1/#at-ruledef-function">@function</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-historical-forms">@historical-forms</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-import">@import</a> <li><a href="https://drafts.csswg.org/css-animations-1/#at-ruledef-keyframes">@keyframes</a> <li><a href="https://drafts.csswg.org/css-cascade-5/#at-ruledef-layer">@layer</a> @@ -5039,9 +6010,10 @@ <h2 class="heading settled" data-level="6" id="at-rules"><span class="secno">6. <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-left-middle">@left-middle</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-left-top">@left-top</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-media">@media</a> - <li><a href="https://drafts.csswg.org/css2/#at-ruledef-media%E2%91%A0">media</a> + <li><a href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace">@namespace</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-ornaments">@ornaments</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-page">@page</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#at-ruledef-position-fallback">@position-fallback</a> + <li><a href="https://drafts.csswg.org/css-anchor-position-1/#at-ruledef-position-try">@position-try</a> <li><a href="https://drafts.css-houdini.org/css-properties-values-api-1/#at-ruledef-property">@property</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-right-bottom">@right-bottom</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-right-middle">@right-middle</a> @@ -5052,13 +6024,17 @@ <h2 class="heading settled" data-level="6" id="at-rules"><span class="secno">6. <li><a href="https://drafts.csswg.org/css-cascade-6/#at-ruledef-scope">in css-cascade-6</a> <li><a href="https://www.w3.org/TR/css-scoping-1/#at-ruledef-scope">in css-scoping-1</a> </ul> + <li><a href="https://drafts.csswg.org/css-transitions-2/#at-ruledef-starting-style">@starting-style</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-styleset">@styleset</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-stylistic">@stylistic</a> <li><a href="https://drafts.csswg.org/css-conditional-3/#at-ruledef-supports">@supports</a> + <li><a href="https://drafts.csswg.org/css-fonts-4/#at-ruledef-font-feature-values-swash">@swash</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-top-center">@top-center</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-top-left">@top-left</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-top-left-corner">@top-left-corner</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-top-right">@top-right</a> <li><a href="https://drafts.csswg.org/css-page-3/#at-ruledef-top-right-corner">@top-right-corner</a> - <li><a href="https://drafts.csswg.org/css-anchor-position-1/#at-ruledef-try">@try</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#at-view-transition-rule">@view-transition</a> <li><a href="https://compat.spec.whatwg.org/#at-ruledef--webkit-keyframes">@-webkit-keyframes</a> <li><a href="https://drafts.csswg.org/css-conditional-5/#at-ruledef-when">@when</a> </ul> @@ -5079,6 +6055,8 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-active">in html</a> <li><a href="https://drafts.csswg.org/selectors-4/#active-pseudo">in selectors-4</a> </ul> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#active-view-transition-pseudo">:active-view-transition</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-2/#active-view-transition-type-pseudo">:active-view-transition-type()</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-after">::after</a> <li><a href="https://drafts.csswg.org/css2/#selectordef-after">:after</a> <li><a href="https://drafts.csswg.org/selectors-4/#any-link-pseudo">:any-link</a> @@ -5089,23 +6067,23 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-autofill">in html</a> <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-autofill">in selectors-4</a> </ul> - <li><a href="https://fullscreen.spec.whatwg.org/#css-pe-backdrop">::backdrop</a> + <li><a href="https://drafts.csswg.org/css-position-4/#selectordef-backdrop">::backdrop</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-before">::before</a> <li><a href="https://drafts.csswg.org/css2/#selectordef-before">:before</a> <li><a href="https://drafts.csswg.org/selectors-4/#blank-pseudo">:blank</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-buffering">:buffering</a> <li> - :checked + :buffering <ul> - <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-checked">in html</a> - <li><a href="https://drafts.csswg.org/selectors-4/#checked-pseudo">in selectors-4</a> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-buffering">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-buffering">in selectors-4</a> </ul> <li> - :closed + :checked <ul> - <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-closed">in html</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-closed">in selectors-4</a> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-checked">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#checked-pseudo">in selectors-4</a> </ul> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-closed">:closed</a> <li><a href="https://www.w3.org/TR/css-scoping-1/#selectordef-content">::content</a> <li><a href="https://w3c.github.io/webvtt/#selectordef-cue">::cue</a> <li><a href="https://w3c.github.io/webvtt/#selectordef-cue-region">::cue-region</a> @@ -5113,6 +6091,7 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://w3c.github.io/webvtt/#selectordef-cue-selector">::cue(selector)</a> <li><a href="https://drafts.csswg.org/selectors-4/#current-pseudo">:current</a> <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-current">:current()</a> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-custom">custom state pseudo-class</a> <li><a href="https://www.w3.org/TR/css-scoping-1/#selectordef-deep">/deep/</a> <li> :default @@ -5126,6 +6105,7 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-defined">in html</a> <li><a href="https://drafts.csswg.org/selectors-4/#defined-pseudo">in selectors-4</a> </ul> + <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-details-content">::details-content</a> <li><a href="https://drafts.csswg.org/selectors-4/#dir-pseudo">:dir()</a> <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-ltr">:dir(ltr)</a> <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-rtl">:dir(rtl)</a> @@ -5233,15 +6213,25 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-link">in html</a> <li><a href="https://drafts.csswg.org/selectors-4/#link-pseudo">in selectors-4</a> </ul> - <li><a href="https://drafts.csswg.org/selectors-4/#local-link-pseudo">:local-link</a> + <li><a href="https://drafts.csswg.org/selectors-5/#local-link-pseudo">:local-link</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-marker">::marker</a> <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-matches">:matches()</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-modal">:modal</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-muted">:muted</a> + <li> + :modal + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-modal">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-modal">in selectors-4</a> + </ul> + <li> + :muted + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-muted">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-muted">in selectors-4</a> + </ul> <li><a href="https://drafts.csswg.org/selectors-4/#negation-pseudo">:not()</a> <li><a href="https://drafts.csswg.org/selectors-4/#nth-child-pseudo">:nth-child()</a> <li><a href="https://drafts.csswg.org/selectors-4/#nth-col-pseudo">:nth-col()</a> - <li><a href="https://drafts.csswg.org/css-overflow-4/#selectordef-nth-fragment">::nth-fragment()</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#selectordef-nth-fragment">::nth-fragment()</a> <li><a href="https://drafts.csswg.org/selectors-4/#nth-last-child-pseudo">:nth-last-child()</a> <li><a href="https://drafts.csswg.org/selectors-4/#nth-last-col-pseudo">:nth-last-col()</a> <li><a href="https://drafts.csswg.org/selectors-4/#nth-last-of-type-pseudo">:nth-last-of-type()</a> @@ -5249,12 +6239,7 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://drafts.csswg.org/selectors-4/#nth-of-type-pseudo">:nth-of-type()</a> <li><a href="https://drafts.csswg.org/selectors-4/#only-child-pseudo">:only-child</a> <li><a href="https://drafts.csswg.org/selectors-4/#only-of-type-pseudo">:only-of-type</a> - <li> - :open - <ul> - <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-open">in html</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-open">in selectors-4</a> - </ul> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-open">:open</a> <li> :optional <ul> @@ -5274,7 +6259,12 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://drafts.csswg.org/selectors-4/#past-pseudo">in selectors-4</a> <li><a href="https://w3c.github.io/webvtt/#selectordef-past">in webvtt1</a> </ul> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-paused">:paused</a> + <li> + :paused + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-paused">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-paused">in selectors-4</a> + </ul> <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-picture-in-picture">:picture-in-picture</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-placeholder">::placeholder</a> <li> @@ -5283,7 +6273,13 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-placeholder-shown">in html</a> <li><a href="https://drafts.csswg.org/selectors-4/#placeholder-shown-pseudo">in selectors-4</a> </ul> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-playing">:playing</a> + <li> + :playing + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-playing">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-playing">in selectors-4</a> + </ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-popover-open">:popover-open</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-letter-postfix">::postfix</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-first-letter-prefix">::prefix</a> <li> @@ -5307,7 +6303,14 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://drafts.csswg.org/css2/#selectordef-right">:right</a> <li><a href="https://drafts.csswg.org/selectors-4/#root-pseudo">:root</a> <li><a href="https://drafts.csswg.org/selectors-4/#scope-pseudo">:scope</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-seeking">:seeking</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#selectordef-scroll-marker">::scroll-marker</a> + <li><a href="https://drafts.csswg.org/css-overflow-5/#selectordef-scroll-marker-group">::scroll-marker-group</a> + <li> + :seeking + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-seeking">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-seeking">in selectors-4</a> + </ul> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-selection">::selection</a> <li><a href="https://www.w3.org/TR/css-scoping-1/#selectordef-shadow">::shadow</a> <li><a href="https://drafts.csswg.org/css-scoping-1/#selectordef-slotted">::slotted()</a> @@ -5317,8 +6320,14 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped-x">:snapped-x</a> <li><a href="https://drafts.csswg.org/css-scroll-snap-2/#selectordef-snapped-y">:snapped-y</a> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-spelling-error">::spelling-error</a> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-stalled">:stalled</a> + <li> + :stalled + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-stalled">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-stalled">in selectors-4</a> + </ul> <li><a href="https://drafts.csswg.org/css-gcpm-4/#selectordef-start-of-page">:start-of-page</a> + <li><a href="https://drafts.csswg.org/selectors-5/#selectordef-state">:state()</a> <li> :target <ul> @@ -5327,8 +6336,18 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. </ul> <li><a href="https://drafts.csswg.org/css-pseudo-4/#selectordef-target-text">::target-text</a> <li><a href="https://drafts.csswg.org/selectors-4/#target-within-pseudo">:target-within</a> - <li><a href="https://drafts.csswg.org/selectors-4/#user-invalid-pseudo">:user-invalid</a> - <li><a href="https://drafts.csswg.org/selectors-4/#user-valid-pseudo">:user-valid</a> + <li> + :user-invalid + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-user-invalid">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#user-invalid-pseudo">in selectors-4</a> + </ul> + <li> + :user-valid + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-user-valid">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#user-valid-pseudo">in selectors-4</a> + </ul> <li> :valid <ul> @@ -5336,10 +6355,10 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://drafts.csswg.org/selectors-4/#valid-pseudo">in selectors-4</a> </ul> <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition">::view-transition</a> - <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-group-pt-name-selector">::view-transition-group( &lt;pt-name-selector> )</a> - <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-image-pair-pt-name-selector">::view-transition-image-pair( &lt;pt-name-selector> )</a> - <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-new-pt-name-selector">::view-transition-new( &lt;pt-name-selector> )</a> - <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-old-pt-name-selector">::view-transition-old( &lt;pt-name-selector> )</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-group">::view-transition-group()</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-image-pair">::view-transition-image-pair()</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-new">::view-transition-new()</a> + <li><a href="https://drafts.csswg.org/css-view-transitions-1/#selectordef-view-transition-old">::view-transition-old()</a> <li> :visited <ul> @@ -5347,7 +6366,12 @@ <h2 class="heading settled" data-level="7" id="selectors"><span class="secno">7. <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-visited">in html</a> <li><a href="https://drafts.csswg.org/selectors-4/#visited-pseudo">in selectors-4</a> </ul> - <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-volume-locked">:volume-locked</a> + <li> + :volume-locked + <ul> + <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-volume-locked">in html</a> + <li><a href="https://drafts.csswg.org/selectors-4/#selectordef-volume-locked">in selectors-4</a> + </ul> <li><a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-webkit-autofill">:-webkit-autofill</a> <li><a href="https://drafts.csswg.org/selectors-4/#where-pseudo">:where()</a> </ul> diff --git a/tests/github/w3c/csswg-drafts/mediaqueries-4/Overview.html b/tests/github/w3c/csswg-drafts/mediaqueries-4/Overview.html index c909ef81fc..636c3b07f4 100644 --- a/tests/github/w3c/csswg-drafts/mediaqueries-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/mediaqueries-4/Overview.html @@ -5,7 +5,6 @@ <title>Media Queries Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/mediaqueries-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1085,7 +1084,7 @@ <h1 class="p-name no-ref" id="title">Media Queries Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1108,7 +1107,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[mediaqueries] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bmediaqueries%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>There is currently no preliminary interoperability or implementation report.</p> </div> @@ -3631,7 +3630,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] <dd>Tab Atkins Jr.; Elika Etemad; Jen Simmons. <a href="https://drafts.csswg.org/css-sizing-4/"><cite>CSS Box Sizing Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-4/">https://drafts.csswg.org/css-sizing-4/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] @@ -3654,7 +3653,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-html401">[HTML401] <dd>Dave Raggett; Arnaud Le Hors; Ian Jacobs. <a href="https://www.w3.org/TR/html401/"><cite>HTML 4.01 Specification</cite></a>. 27 March 2018. REC. URL: <a href="https://www.w3.org/TR/html401/">https://www.w3.org/TR/html401/</a> <dt id="biblio-infra">[INFRA] @@ -3793,13 +3792,13 @@ <h3 class="no-num no-ref heading settled" id="media-descriptor-table"><span clas </div> <details class="caniuse-status unpositioned" data-anno-for="resolution" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>68+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>9+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>55+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>10.1+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-resolution">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>68+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>9+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>55+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>10.1+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-resolution">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="mf-interaction" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-interaction">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-interaction">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.console.txt b/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.console.txt index 83c4c9caa6..29747dc8af 100644 --- a/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.console.txt @@ -295,6 +295,4 @@ LINE ~3203: No 'property' refs found for 'prefers-color-scheme'. 'prefers-color-scheme' LINE ~3203: No 'property' refs found for 'forced-colors'. 'forced-colors' -LINE ~125: Couldn't find section '/media#q7.0' in spec 'css2': -[[CSS2/media#q7.0]] WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.html b/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.html index e0d0b871e0..91261415fb 100644 --- a/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.html +++ b/tests/github/w3c/csswg-drafts/mediaqueries-5/Overview.html @@ -5,7 +5,6 @@ <title>Media Queries Level 5</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/mediaqueries-5/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1091,7 +1090,7 @@ <h1 class="p-name no-ref" id="title">Media Queries Level 5</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1114,7 +1113,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[mediaqueries] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bmediaqueries%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1320,7 +1319,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s </div> <h3 class="heading settled" data-level="1.1" id="placement"><span class="secno">1.1. </span><span class="content"> Module interactions</span><a class="self-link" href="#placement"></a></h3> <p>This module extends and supersedes <a data-link-type="biblio" href="#biblio-mediaqueries-4" title="Media Queries Level 4">[MEDIAQUERIES-4]</a> and its predecessor <a data-link-type="biblio" href="#biblio-mediaqueries-3" title="Media Queries Level 3">[MEDIAQUERIES-3]</a>, - which themselves built upon and replaced <span spec-section="/media#q7.0"></span>.</p> + which themselves built upon and replaced <a href="https://www.w3.org/TR/CSS21/media.html#q7.0"><cite>CSS 2.1</cite> § 7 Media types</a>.</p> <h3 class="heading settled" data-level="1.2" id="values"><span class="secno">1.2. </span><span class="content"> Values</span><a class="self-link" href="#values"></a></h3> <p>Value types not defined in this specification, such as <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#integer-value" id="ref-for-integer-value">&lt;integer></a>, <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value">&lt;number></a> or <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#resolution-value" id="ref-for-resolution-value">&lt;resolution></a>, are defined in <a data-link-type="biblio" href="#biblio-css-values-4" title="CSS Values and Units Module Level 4">[CSS-VALUES-4]</a>. Other CSS modules may expand the definitions of these value types.</p> @@ -4400,7 +4399,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5f1b7f60">@media</span> </ul> <li> - <a data-link-type="biblio">[CSS-EXTENSIONS]</a> defines the following terms: + <a data-link-type="biblio">[CSS-EXTENSIONS-1]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="e9f46f56">&lt;extension-name></span> </ul> @@ -4468,9 +4467,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-color-adjust-1">[CSS-COLOR-ADJUST-1] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-color-adjust-1/"><cite>CSS Color Adjustment Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-adjust-1/">https://drafts.csswg.org/css-color-adjust-1/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> - <dt id="biblio-css-extensions">[CSS-EXTENSIONS] - <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-extensions/"><cite>CSS Extensions</cite></a>. ED. URL: <a href="https://drafts.csswg.org/css-extensions/">https://drafts.csswg.org/css-extensions/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dt id="biblio-css-extensions-1">[CSS-EXTENSIONS-1] + <dd><a href="https://drafts.csswg.org/css-extensions-1/"><cite>CSS Extensions</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-extensions-1/">https://drafts.csswg.org/css-extensions-1/</a> <dt id="biblio-css-sizing-4">[CSS-SIZING-4] <dd>Tab Atkins Jr.; Elika Etemad; Jen Simmons. <a href="https://drafts.csswg.org/css-sizing-4/"><cite>CSS Box Sizing Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-4/">https://drafts.csswg.org/css-sizing-4/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] @@ -4493,7 +4492,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-html401">[HTML401] <dd>Dave Raggett; Arnaud Le Hors; Ian Jacobs. <a href="https://www.w3.org/TR/html401/"><cite>HTML 4.01 Specification</cite></a>. 27 March 2018. REC. URL: <a href="https://www.w3.org/TR/html401/">https://www.w3.org/TR/html401/</a> <dt id="biblio-infra">[INFRA] @@ -4803,13 +4802,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> <details class="caniuse-status unpositioned" data-anno-for="resolution" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>68+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>9+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>55+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>10.1+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-resolution">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>68+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>79+</span></span><span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>9+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>2.5+</span></span><span class="opera yes"><span>Opera</span><span>55+</span></span><span class="op_mini partial"><span><span>Opera Mini (limited)</span></span><span>All</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>12.1+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>16.0+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>16.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>10.1+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-resolution">caniuse.com</a> as of 2024-08-25</p> </details> <details class="caniuse-status unpositioned" data-anno-for="mf-interaction" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>109+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.18+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>109+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>107+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios no"><span>KaiOS Browser</span><span>None</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>72+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>13.1+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-interaction">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android yes"><span>Android Browser</span><span>127+</span></span><span class="baidu yes"><span>Baidu Browser</span><span>13.52+</span></span><span class="bb no"><span>Blackberry Browser</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>41+</span></span><span class="and_chr yes"><span>Chrome for Android</span><span>127+</span></span><span class="edge yes"><span>Edge</span><span>12+</span></span><span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="and_ff yes"><span>Firefox for Android</span><span>127+</span></span><span class="ie no"><span>IE</span><span>None</span></span><span class="ie_mob no"><span>IE Mobile</span><span>None</span></span><span class="kaios yes"><span>KaiOS Browser</span><span>3.0+</span></span><span class="opera yes"><span>Opera</span><span>28+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob yes"><span>Opera Mobile</span><span>80+</span></span><span class="and_qq yes"><span>QQ Browser</span><span>14.9+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="ios_saf yes"><span>Safari on iOS</span><span>9.0+</span></span><span class="samsung yes"><span>Samsung Internet</span><span>5.0+</span></span><span class="and_uc yes"><span>UC Browser for Android</span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=css-media-interaction">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.console.txt index 560f23daf1..bbf7f9699e 100644 --- a/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.console.txt @@ -6,3 +6,4 @@ spec:cssom-view-1; type:event; for:VisualViewport; text:resize spec:html; type:event; text:resize spec:picture-in-picture; type:event; text:resize {{resize}} +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.html b/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.html index 7dfc26d33f..5137aee335 100644 --- a/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/resize-observer-1/Overview.html @@ -5,7 +5,6 @@ <title>Resize Observer</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/resize-observer/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1078,7 +1077,7 @@ <h1 class="p-name no-ref" id="title">Resize Observer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1100,7 +1099,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[resize-observer] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bresize-observer%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.console.txt index 83a326068c..052ebdabd4 100644 --- a/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.console.txt @@ -61,6 +61,7 @@ LINE ~1135: No 'property' refs found for 'time-range'. 'time-range' LINE ~1139: No 'property' refs found for 'time-range'. 'time-range' +LINE 1305: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 427: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="427" data-dfn-type="dfn" id="set-the-offset-value" data-lt="set the offset value" data-noexport="by-default" class="dfn-paneled">set the offset value</dfn> LINE 811: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.html b/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.html index a34cf8367f..4d76bb898f 100644 --- a/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/scroll-animations-1/Overview.html @@ -5,7 +5,6 @@ <title>Scroll-linked Animations</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/scroll-animations-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -857,7 +856,7 @@ <h1 class="p-name no-ref" id="title">Scroll-linked Animations</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -880,7 +879,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[scroll-animations-1] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bscroll-animations-1%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2417,13 +2416,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-2">[CSS-ANIMATIONS-2] - <dd>CSS Animations Level 2 URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> + <dd>David Baron; Brian Birtles. <a href="https://drafts.csswg.org/css-animations-2/"><cite>CSS Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://drafts.csswg.org/css-syntax/"><cite>CSS Syntax Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-syntax/">https://drafts.csswg.org/css-syntax/</a> <dt id="biblio-css-typed-om-1">[CSS-TYPED-OM-1] - <dd>Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> + <dd>Tab Atkins Jr.; François Remy. <a href="https://drafts.css-houdini.org/css-typed-om-1/"><cite>CSS Typed OM Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-typed-om-1/">https://drafts.css-houdini.org/css-typed-om-1/</a> <dt id="biblio-css-values-3">[CSS-VALUES-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-3/">https://drafts.csswg.org/css-values-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] @@ -2433,7 +2432,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css2">[CSS2] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3-animations">[CSS3-ANIMATIONS] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-cssom-1">[CSSOM-1] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-cssom-view-1">[CSSOM-VIEW-1] diff --git a/tests/github/w3c/csswg-drafts/selectors-4/Overview.console.txt b/tests/github/w3c/csswg-drafts/selectors-4/Overview.console.txt index fc5a5ee464..9fa2f7c17a 100644 --- a/tests/github/w3c/csswg-drafts/selectors-4/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/selectors-4/Overview.console.txt @@ -2,13 +2,101 @@ LINT: Your document appears to use tabs to indent, but line 3306 starts with spa LINT: Line 3306's indent contains tabs after spaces. WARNING: The var 'argument' (in global scope) is only used once. If this is not a typo, please add an ignore='' attribute to the <var>. +LINE 524: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="524" data-link-type="dfn" data-lt="combinator">combinator</a> +LINE 546: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="546" data-link-type="dfn" data-lt="combinator">combinator</a> +LINE 551: Ambiguous for-less link for 'combinators', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="551" data-link-type="dfn" data-lt="combinators">combinators</a> +LINE 554: Ambiguous for-less link for 'combinators', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="554" data-link-type="dfn" data-lt="combinators">combinators</a> +LINE 561: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="561" data-link-type="dfn" data-lt="combinator">combinator</a> +LINE 567: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="567" data-link-type="dfn" data-lt="combinator">combinator</a> +LINE 569: Ambiguous for-less link for 'subjects', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:subject +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:subjects +spec:vc-data-model-2.0; type:dfn; for:/; text:subjects +<a bs-line-number="569" data-link-type="dfn" data-lt="subjects">subjects</a> +LINE 670: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="670" data-link-type="dfn" data-lt="combinator">combinator</a> +LINE 711: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="711" data-link-type="dfn" data-lt="combinator">combinator</a> LINE 743: No 'dfn' refs found for 'identifier' with spec 'css-syntax-3'. <a bs-line-number="743" data-link-type="dfn" data-lt="identifier">identifier</a> LINE 814: No 'dfn' refs found for 'identifier' with spec 'css-syntax-3'. <a bs-line-number="814" data-link-type="dfn" data-lt="identifier">identifier</a> +LINE 896: Ambiguous for-less link for 'combinators', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="896" data-link-type="dfn" data-lt="combinators">combinators</a> +LINE 1088: Ambiguous for-less link for 'subject', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:subject +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:subject +spec:vc-data-model-2.0; type:dfn; for:/; text:subject +<a bs-line-number="1088" data-link-type="dfn" data-lt="subject">subject</a> +LINE 1150: Ambiguous for-less link for 'subject', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:subject +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:subject +spec:vc-data-model-2.0; type:dfn; for:/; text:subject +<a bs-line-number="1150" data-link-type="dfn" data-lt="subject">subject</a> LINE 1259: No 'dfn' refs found for 'identifier' with spec 'css-syntax-3'. <a bs-line-number="1259" data-link-type="dfn" data-lt="identifier">identifier</a> LINE 3443: No 'dfn' refs found for 'identifier' with spec 'css-syntax-3'. <a bs-line-number="3443" data-link-type="dfn" data-lt="identifier">identifier</a> +LINE 3623: Ambiguous for-less link for 'combinator', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:selectors-4; type:dfn; for:selector; text:combinator +for-less references: +spec:css2; type:dfn; for:/; text:combinator +<a bs-line-number="3623" data-link-type="dfn" data-lt="combinator">combinator</a> +LINE 3720: Multiple possible 'descendants' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="3720" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 4088: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: No 'modal-state' ID found, skipping MDN features that would target it. WARNING: No 'pip-state' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/csswg-drafts/selectors-4/Overview.html b/tests/github/w3c/csswg-drafts/selectors-4/Overview.html index 5261d002db..d68cfb0c20 100644 --- a/tests/github/w3c/csswg-drafts/selectors-4/Overview.html +++ b/tests/github/w3c/csswg-drafts/selectors-4/Overview.html @@ -5,7 +5,6 @@ <title>Selectors Level 4</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/selectors-4/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -1131,7 +1130,7 @@ <h1 class="p-name no-ref" id="title">Selectors Level 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1154,7 +1153,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[selectors] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bselectors%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1814,7 +1813,7 @@ <h3 class="heading settled" data-level="3.1" id="structure"><span class="secno"> A given element is said to <a data-link-type="dfn" href="#match" id="ref-for-match">match</a> a <span id="ref-for-simple②">simple selector</span> when that <span id="ref-for-simple③">simple selector</span>, as defined in this specification and in accordance with the <a data-link-type="dfn" href="#document-language" id="ref-for-document-language">document language</a>, accurately describes the element.</p> - <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="compound">compound selector</dfn> is a sequence of <a data-link-type="dfn" href="#simple" id="ref-for-simple④">simple selectors</a> that are not separated by a <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator">combinator</a>, + <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="compound">compound selector</dfn> is a sequence of <a data-link-type="dfn" href="#simple" id="ref-for-simple④">simple selectors</a> that are not separated by a <a data-link-type="dfn">combinator</a>, and represents a set of simultaneous conditions on a single element. If it contains a <a data-link-type="dfn" href="#type-selector" id="ref-for-type-selector①">type selector</a> or <a data-link-type="dfn" href="#universal-selector" id="ref-for-universal-selector①">universal selector</a>, that selector must come first in the sequence. @@ -1830,22 +1829,22 @@ <h3 class="heading settled" data-level="3.1" id="structure"><span class="secno"> the <a data-link-type="dfn" href="#child-combinator" id="ref-for-child-combinator">child combinator</a> (U+003E, <code>></code>), the <a data-link-type="dfn" href="#next-sibling-combinator" id="ref-for-next-sibling-combinator">next-sibling combinator</a> (U+002B, <code>+</code>), and the <a data-link-type="dfn" href="#subsequent-sibling-combinator" id="ref-for-subsequent-sibling-combinator">subsequent-sibling combinator</a> (U+007E, <code>~</code>). - Two given elements are said to <a data-link-type="dfn" href="#match" id="ref-for-match②">match</a> a <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator①">combinator</a> when the condition of relationship between these elements is true.</p> + Two given elements are said to <a data-link-type="dfn" href="#match" id="ref-for-match②">match</a> a <a data-link-type="dfn">combinator</a> when the condition of relationship between these elements is true.</p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="complex">complex selector</dfn> is - a sequence of one or more <a data-link-type="dfn" href="#compound" id="ref-for-compound①②">compound selectors</a> separated by <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator②">combinators</a>. + a sequence of one or more <a data-link-type="dfn" href="#compound" id="ref-for-compound①②">compound selectors</a> separated by <a data-link-type="dfn">combinators</a>. It represents a set of simultaneous conditions on a set of elements in the particular relationships - described by its <span id="ref-for-selector-combinator③">combinators</span>. + described by its <span>combinators</span>. (Complex selectors are represented by <a class="production css" data-link-type="type" href="#typedef-complex-selector" id="ref-for-typedef-complex-selector">&lt;complex-selector></a> in the selectors <a href="#grammar">grammar</a>.) A given element is said to <a data-link-type="dfn" href="#match" id="ref-for-match③">match</a> a <a data-link-type="dfn" href="#complex" id="ref-for-complex①">complex selector</a> when there exists a list of elements, each matching a corresponding <span id="ref-for-compound①③">compound selector</span> in the <span id="ref-for-complex②">complex selector</span>, with each pair of elements consecutive in the list matching - the <span id="ref-for-selector-combinator④">combinator</span> between their corresponding <span id="ref-for-compound①④">compound selectors</span>, + the <span>combinator</span> between their corresponding <span id="ref-for-compound①④">compound selectors</span>, and with the last element being the given element.</p> <p class="note" role="note"><span class="marker">Note:</span> Thus, a selector consisting of a single <a data-link-type="dfn" href="#compound" id="ref-for-compound①⑤">compound selector</a> matches any element satisfying the requirements of its constituent <a data-link-type="dfn" href="#simple" id="ref-for-simple⑦">simple selectors</a>. - Prepending another <span id="ref-for-compound①⑥">compound selector</span> and a <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator⑤">combinator</a> to a sequence imposes additional matching constraints, - such that the <a data-link-type="dfn" href="#selector-subject" id="ref-for-selector-subject">subjects</a> of a <a data-link-type="dfn" href="#complex" id="ref-for-complex③">complex selector</a> are always + Prepending another <span id="ref-for-compound①⑥">compound selector</span> and a <a data-link-type="dfn">combinator</a> to a sequence imposes additional matching constraints, + such that the <span>subjects</span> of a <a data-link-type="dfn" href="#complex" id="ref-for-complex③">complex selector</a> are always a subset of the elements represented by its last <span id="ref-for-compound①⑦">compound selector</span>.</p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="list of simple selectors|list of compound selectors|list of complex selectors" id="list-of-simple-selectors">list of simple/compound/complex selectors</dfn> is a comma-separated list of <a data-link-type="dfn" href="#simple" id="ref-for-simple⑧">simple</a>, <a data-link-type="dfn" href="#compound" id="ref-for-compound①⑧">compound</a>, or <a data-link-type="dfn" href="#complex" id="ref-for-complex④">complex selectors</a>. @@ -1909,7 +1908,7 @@ <h3 class="heading settled" data-level="3.4" id="relative"><span class="secno">3 In a <a data-link-type="dfn" href="#relative-selector" id="ref-for-relative-selector①">relative selector</a>, “:scope ” (the <span class="css" id="ref-for-scope-pseudo①">:scope</span> pseudo-class followed by a space) is implied at the beginning of each <a data-link-type="dfn" href="#complex" id="ref-for-complex⑤">complex selector</a> that does not already contain the <span class="css" id="ref-for-scope-pseudo②">:scope</span> pseudo-class. - This allows the selector to begin syntactically with a <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator⑥">combinator</a>. + This allows the selector to begin syntactically with a <a data-link-type="dfn">combinator</a>. However, it must be <a href="#absolutize" id="ref-for-absolutize">absolutized</a> before matching.</p> <p>Relative selectors, once absolutized, can additionally be <a data-link-type="dfn" href="#scoped-selector" id="ref-for-scoped-selector②">scoped</a>.</p> @@ -1920,7 +1919,7 @@ <h4 class="heading settled" data-level="3.4.1" id="absolutizing"><span class="se <p class="issue" id="issue-28dbdaca"><a class="self-link" href="#issue-28dbdaca"></a> <a href="https://github.com/w3c/csswg-drafts/issues/2199">This needs a sane definition.</a></p> <p>Otherwise:</p> <ol> - <li> If the selector starts with a <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator⑦">combinator</a> other than the white space form of the <a data-link-type="dfn" href="#descendant-combinator" id="ref-for-descendant-combinator②">descendant combinator</a>, + <li> If the selector starts with a <a data-link-type="dfn">combinator</a> other than the white space form of the <a data-link-type="dfn" href="#descendant-combinator" id="ref-for-descendant-combinator②">descendant combinator</a>, prepend <a class="css" data-link-type="maybe" href="#scope-pseudo" id="ref-for-scope-pseudo③">:scope</a> as the initial <a data-link-type="dfn" href="#compound" id="ref-for-compound①⑨">compound selector</a>. <li> Otherwise, if the selector does not contain any instance of the <a class="css" data-link-type="maybe" href="#scope-pseudo" id="ref-for-scope-pseudo④">:scope</a> pseudo-class (either at the top-level or as an argument to a functional pseudo-class), @@ -2043,7 +2042,7 @@ <h4 class="heading settled" data-level="3.6.4" id="pseudo-element-structure"><sp <p>Some <a data-link-type="dfn" href="#pseudo-element" id="ref-for-pseudo-element②⓪">pseudo-elements</a> are defined to have internal structure. These <span id="ref-for-pseudo-element②①">pseudo-elements</span> may be followed by child/descendant combinators to express those relationships. - Selectors containing <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator⑧">combinators</a> after the pseudo-element + Selectors containing <a data-link-type="dfn">combinators</a> after the pseudo-element are otherwise invalid.</p> <div class="example" id="example-ed91d05b"><a class="self-link" href="#example-ed91d05b"></a> For example, <span class="css">::first-letter + span</span> and <span class="css">::first-letter em</span> are invalid selectors. However, since <a class="css" data-link-type="maybe" href="https://www.w3.org/TR/css-scoping-1/#selectordef-shadow" id="ref-for-selectordef-shadow">::shadow</a> is defined to have internal structure, <span class="css">::shadow > p</span> is a valid selector. </div> @@ -2098,7 +2097,7 @@ <h3 class="heading settled" data-level="3.8" id="namespaces"><span class="secno" The mechanism by which namespace prefixes are <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="nsdecl">declared</dfn> should be specified by the language that uses Selectors. If the language does not specify a namespace prefix declaration mechanism, then no prefixes are declared. - In CSS, namespace prefixes are declared with the <span class="css">@namespace</span> rule. <a data-link-type="biblio" href="#biblio-css3namespace" title="CSS Namespaces Module Level 3">[CSS3NAMESPACE]</a></p> + In CSS, namespace prefixes are declared with the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace">@namespace</a> rule. <a data-link-type="biblio" href="#biblio-css3namespace" title="CSS Namespaces Module Level 3">[CSS3NAMESPACE]</a></p> <h3 class="heading settled" data-level="3.9" id="invalid"><span class="secno">3.9. </span><span class="content"> Invalid Selectors and Error Handling</span><a class="self-link" href="#invalid"></a></h3> <p>User agents must observe the rules for handling <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-local-lt="invalid" data-lt="invalid selector" id="invalid-selector">invalid selectors</dfn>:</p> <ul> @@ -2171,7 +2170,7 @@ <h3 class="heading settled" data-level="4.2" id="matches"><span class="secno">4. See <a href="#specificity-rules">§ 16 Calculating a selector’s specificity</a>.</p> <p>Pseudo-elements cannot be represented by the matches-any pseudo-class; they are not valid within <a class="css" data-link-type="maybe" href="#matches-pseudo" id="ref-for-matches-pseudo⑤">:is()</a>.</p> - <p>Default namespace declarations do not affect the <a data-link-type="dfn" href="#compound" id="ref-for-compound②⑤">compound selector</a> representing the <a data-link-type="dfn" href="#selector-subject" id="ref-for-selector-subject①">subject</a> of any selector + <p>Default namespace declarations do not affect the <a data-link-type="dfn" href="#compound" id="ref-for-compound②⑤">compound selector</a> representing the <a data-link-type="dfn">subject</a> of any selector within a <a class="css" data-link-type="maybe" href="#matches-pseudo" id="ref-for-matches-pseudo⑥">:is()</a> pseudo-class, unless that compound selector contains an explicit <a data-link-type="dfn" href="#universal-selector" id="ref-for-universal-selector④">universal selector</a> or <a data-link-type="dfn" href="#type-selector" id="ref-for-type-selector③">type selector</a>.</p> @@ -2213,7 +2212,7 @@ <h3 class="heading settled" data-level="4.3" id="negation"><span class="secno">4 <pre>html|*:not(:link):not(:visited)</pre> </div> <p>As with <a class="css" data-link-type="maybe" href="#matches-pseudo" id="ref-for-matches-pseudo⑨">:is()</a>, - default namespace declarations do not affect the <a data-link-type="dfn" href="#compound" id="ref-for-compound②⑥">compound selector</a> representing the <a data-link-type="dfn" href="#selector-subject" id="ref-for-selector-subject②">subject</a> of any selector + default namespace declarations do not affect the <a data-link-type="dfn" href="#compound" id="ref-for-compound②⑥">compound selector</a> representing the <a data-link-type="dfn">subject</a> of any selector within a <a class="css" data-link-type="maybe" href="#negation-pseudo" id="ref-for-negation-pseudo⑤">:not()</a> pseudo-class, unless that compound selector contains an explicit <a data-link-type="dfn" href="#universal-selector" id="ref-for-universal-selector⑤">universal selector</a> or <a data-link-type="dfn" href="#type-selector" id="ref-for-type-selector④">type selector</a>. @@ -2338,7 +2337,7 @@ <h3 class="heading settled" data-level="5.3" id="type-nmsp"><span class="secno"> *|h1 { color: green } h1 { color: green } </pre> - <p>The first rule (not counting the <span class="css">@namespace</span> at-rule) + <p>The first rule (not counting the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace" id="ref-for-at-ruledef-namespace①">@namespace</a> at-rule) will match only <a data-link-type="element" href="https://html.spec.whatwg.org/multipage/sections.html#the-h1-element" id="ref-for-the-h1-element①">h1</a> elements in the "http://www.example.com" namespace.</p> <p>The second rule will match all elements in the @@ -2596,7 +2595,7 @@ <h3 class="heading settled" data-level="6.6" id="class-html"><span class="secno" <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="class-selector">class selector</dfn> is given as a full stop (. U+002E) immediately followed by an identifier. It represents an element belonging to the class identified by the identifier, as defined by the document language. - For example, in <a data-link-type="biblio" href="#biblio-html5" title="HTML5">[HTML5]</a>, <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, and <a data-link-type="biblio" href="#biblio-mathml" title="Mathematical Markup Language (MathML) 1.01 Specification">[MATHML]</a> membership in a + For example, in <a data-link-type="biblio" href="#biblio-html5" title="HTML5">[HTML5]</a>, <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>, and <a data-link-type="biblio" href="#biblio-mathml" title="Mathematical Markup Language (MathML™) 1.01 Specification">[MATHML]</a> membership in a class is given by the <code>class</code> attribute: in these languages it is equivalent to the <code>~=</code> notation applied to the local <code>class</code> attribute @@ -3779,7 +3778,7 @@ <h2 class="heading settled" data-level="17" id="grammar"><span class="secno">17. <p class="note" role="note"><span class="marker">Note:</span> The grammar above states that a combinator is optional between two <a class="production css" data-link-type="type" href="#typedef-compound-selector" id="ref-for-typedef-compound-selector⑤">&lt;compound-selector></a>s in a <a class="production css" data-link-type="type" href="#typedef-complex-selector" id="ref-for-typedef-complex-selector③">&lt;complex-selector></a>. This is only for grammatical purposes, - as the <a data-link-type="dfn">CSS Value Definition Syntax</a>’s lax treatment of whitespace + as the <a data-link-type="dfn" href="https://drafts.csswg.org/css-values-4/#css-value-definition-syntax" id="ref-for-css-value-definition-syntax">CSS Value Definition Syntax</a>’s lax treatment of whitespace makes it difficult to indicate that a grammar term can <em>be</em> whitespace. "Omitting" a combinator is actually just specifying the <a data-link-type="dfn" href="#descendant-combinator" id="ref-for-descendant-combinator④">descendant combinator</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> In general, @@ -3893,7 +3892,7 @@ <h3 class="heading settled algorithm" data-algorithm="Match a Selector Against a <li>Otherwise, if there is only one compound selector in the complex selector, return success. <li>Otherwise, consider all possible elements - that could be related to this element by the rightmost <a data-link-type="dfn" href="#selector-combinator" id="ref-for-selector-combinator⑨">combinator</a>. + that could be related to this element by the rightmost <a data-link-type="dfn">combinator</a>. If the operation of matching the selector consisting of this selector with the rightmost compound selector and rightmost combinator removed against any one of these elements returns success, then return success. @@ -4528,6 +4527,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9213678e">&lt;ident></span> <li><span class="dfn-paneled" id="977d3003">&lt;string></span> <li><span class="dfn-paneled" id="537cf076">?</span> + <li><span class="dfn-paneled" id="b0eb2f50">css value definition syntax</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> <li> @@ -4538,6 +4538,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS3NAMESPACE]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="bf0e8186">@namespace</span> <li><span class="dfn-paneled" id="ee301461">css qualified name</span> <li><span class="dfn-paneled" id="de39d615">default namespace</span> </ul> @@ -4622,7 +4623,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-scoping-1">[CSS-SCOPING-1] @@ -4659,7 +4660,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css3ui">[CSS3UI] <dd>Tantek Çelik; Florian Rivoal. <a href="https://drafts.csswg.org/css-ui-3/"><cite>CSS Basic User Interface Module Level 3 (CSS3 UI)</cite></a>. URL: <a href="https://drafts.csswg.org/css-ui-3/">https://drafts.csswg.org/css-ui-3/</a> <dt id="biblio-cssstyleattr">[CSSSTYLEATTR] @@ -4669,7 +4670,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-its20">[ITS20] <dd>David Filip; et al. <a href="https://www.w3.org/TR/its20/"><cite>Internationalization Tag Set (ITS) Version 2.0</cite></a>. 29 October 2013. REC. URL: <a href="https://www.w3.org/TR/its20/">https://www.w3.org/TR/its20/</a> <dt id="biblio-mathml">[MATHML] - <dd>Patrick D F Ion; Robert R Miner. <a href="https://www.w3.org/TR/REC-MathML/"><cite>Mathematical Markup Language (MathML) 1.01 Specification</cite></a>. 7 July 1999. REC. URL: <a href="https://www.w3.org/TR/REC-MathML/">https://www.w3.org/TR/REC-MathML/</a> + <dd>Patrick D F Ion; Robert R Miner. <a href="https://www.w3.org/TR/REC-MathML/"><cite>Mathematical Markup Language (MathML™) 1.01 Specification</cite></a>. 7 March 2023. REC. URL: <a href="https://www.w3.org/TR/REC-MathML/">https://www.w3.org/TR/REC-MathML/</a> <dt id="biblio-mathml-core">[MATHML-CORE] <dd>David Carlisle; Frédéric Wang. <a href="https://w3c.github.io/mathml-core/"><cite>MathML Core</cite></a>. URL: <a href="https://w3c.github.io/mathml-core/">https://w3c.github.io/mathml-core/</a> <dt id="biblio-quirks">[QUIRKS] @@ -4772,7 +4773,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="attribute-selectors"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors" title="The CSS attribute selector matches elements based on the presence or value of a given attribute.">Attribute_selectors</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors" title="The CSS attribute selector matches elements based on the element having a given attribute explicitly set, with options for defining an attribute value or substring value match.">Attribute_selectors</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -4898,12 +4899,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-dir-pseudo"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:dir" title="The :dir() CSS pseudo-class matches elements based on the directionality of the text contained in them.">:dir</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5073,7 +5073,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="relational"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:has" title="The functional :has() CSS pseudo-class represents an element if any of the relative selectors that are passed as an argument match at least one element when anchored against this element. This pseudo-class presents a way of selecting a parent element or a previous sibling element with respect to a reference element by taking a forgiving relative selector list as an argument.">:has</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:has" title="The functional :has() CSS pseudo-class represents an element if any of the relative selectors that are passed as an argument match at least one element when anchored against this element. This pseudo-class presents a way of selecting a parent element or a previous sibling element with respect to a reference element by taking a relative selector list as an argument.">:has</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 103+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>105+</span></span> @@ -5259,7 +5259,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:visited" title="The :visited CSS pseudo-class represents links that the user has already visited. For privacy reasons, the styles that can be modified using this selector are very limited.">:visited</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:visited" title="The :visited CSS pseudo-class applies once the link has been visited by the user. For privacy reasons, the styles that can be modified using this selector are very limited. The :visited pseudo-class applies only <a> and <area> elements that have an href attribute.">:visited</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -5464,7 +5464,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="selectordef-paused"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:paused" title="The :paused CSS pseudo-class selector is a resource state pseudo-class that will match an audio, video, or similar resource that is capable of being &quot;played&quot; or &quot;paused&quot;, when that element is &quot;paused&quot;.">:paused</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:paused" title="The :paused CSS pseudo-class selector represents an element that is playable, such as <audio> or <video>, when that element is &quot;paused&quot; (i.e. not &quot;playing&quot;).">:paused</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> @@ -5496,7 +5496,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="selectordef-playing"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:playing" title="The :playing CSS pseudo-class selector is a resource state pseudo-class that will match an audio, video, or similar resource that is capable of being &quot;played&quot; or &quot;paused&quot;, when that element is &quot;playing&quot;.">:playing</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:playing" title="The :playing CSS pseudo-class selector represents the playback state of an element that is playable, such as <audio> or <video>, when that element is &quot;playing&quot;. An element is considered to be playing if it is currently playing the media resource, or if it has temporarily stopped for reasons other than user intent (such as :buffering or :stalled).">:playing</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> @@ -5557,7 +5557,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="the-scope-pseudo"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:scope" title="The :scope CSS pseudo-class represents elements that are a reference point for selectors to match against.">:scope</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:scope" title="The :scope CSS pseudo-class represents elements that are a reference point, or scope, for selectors to match against.">:scope</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>32+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>27+</span></span> @@ -5635,12 +5635,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="user-invalid-pseudo"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:user-invalid" title="The :user-invalid CSS pseudo-class represents any validated form element whose value isn&apos;t valid based on their validation constraints, after the user has interacted with it.">:user-invalid</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>16.5+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5651,12 +5650,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="user-valid-pseudo"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:user-valid" title="The :user-valid CSS pseudo-class represents any validated form element whose value validates correctly based on its validation constraints. However, unlike :valid it only matches once the user has interacted with it.">:user-valid</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>16.5+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -5936,11 +5934,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "af50aa62": {"dfnID":"af50aa62","dfnText":"<function-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-function-token"},{"id":"ref-for-typedef-function-token\u2460"}],"title":"17. \nGrammar"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-function-token"}, "any-link-pseudo": {"dfnID":"any-link-pseudo","dfnText":":any-link","external":false,"refSections":[{"refs":[{"id":"ref-for-any-link-pseudo"}],"title":"8.1. \nThe Hyperlink Pseudo-class: :any-link"},{"refs":[{"id":"ref-for-any-link-pseudo\u2460"}],"title":"19.6. \nChanges Since Level 3"}],"url":"#any-link-pseudo"}, "attribute-selector": {"dfnID":"attribute-selector","dfnText":"attribute selector","external":false,"refSections":[{"refs":[{"id":"ref-for-attribute-selector"}],"title":"3.1. \nStructure and Terminology"}],"url":"#attribute-selector"}, +"b0eb2f50": {"dfnID":"b0eb2f50","dfnText":"css value definition syntax","external":true,"refSections":[{"refs":[{"id":"ref-for-css-value-definition-syntax"}],"title":"17. \nGrammar"}],"url":"https://drafts.csswg.org/css-values-4/#css-value-definition-syntax"}, "b32b852a": {"dfnID":"b32b852a","dfnText":"span","external":true,"refSections":[{"refs":[{"id":"ref-for-the-span-element"},{"id":"ref-for-the-span-element\u2460"}],"title":"6.1. \nAttribute presence and value selectors"},{"refs":[{"id":"ref-for-the-span-element\u2461"}],"title":"6.6. \nClass selectors"}],"url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-span-element"}, "b6fb7a51": {"dfnID":"b6fb7a51","dfnText":"custom element","external":true,"refSections":[{"refs":[{"id":"ref-for-custom-element"}],"title":"5.4. \nThe Defined Pseudo-class: :defined"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element"}, "b80d76a2": {"dfnID":"b80d76a2","dfnText":"p","external":true,"refSections":[{"refs":[{"id":"ref-for-the-p-element"}],"title":"6.6. \nClass selectors"},{"refs":[{"id":"ref-for-the-p-element\u2460"}],"title":"8.4. \nThe Target Pseudo-class: :target"},{"refs":[{"id":"ref-for-the-p-element\u2461"}],"title":"12.3.2. \nThe Validity Pseudo-classes: :valid and :invalid"},{"refs":[{"id":"ref-for-the-p-element\u2462"}],"title":"13.2. \n:empty pseudo-class"},{"refs":[{"id":"ref-for-the-p-element\u2463"}],"title":"13.3.3. \n:first-child pseudo-class"},{"refs":[{"id":"ref-for-the-p-element\u2464"}],"title":"14.1. \nDescendant combinator ( )"},{"refs":[{"id":"ref-for-the-p-element\u2465"},{"id":"ref-for-the-p-element\u2466"}],"title":"14.2. \nChild combinator (>)"},{"refs":[{"id":"ref-for-the-p-element\u2467"}],"title":"14.3. \nNext-sibling combinator (+)"}],"url":"https://html.spec.whatwg.org/multipage/grouping-content.html#the-p-element"}, "b8e482b4": {"dfnID":"b8e482b4","dfnText":":host","external":true,"refSections":[{"refs":[{"id":"ref-for-selectordef-host"}],"title":"3.2. \nData Model"}],"url":"https://drafts.csswg.org/css-scoping-1/#selectordef-host"}, "b9a05383": {"dfnID":"b9a05383","dfnText":"placeholder","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-input-placeholder"}],"title":"12.1.3. \nThe Placeholder-shown Pseudo-class: :placeholder-shown"}],"url":"https://html.spec.whatwg.org/multipage/input.html#attr-input-placeholder"}, +"bf0e8186": {"dfnID":"bf0e8186","dfnText":"@namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-namespace"}],"title":"3.8. \nDeclaring Namespace Prefixes"},{"refs":[{"id":"ref-for-at-ruledef-namespace\u2460"}],"title":"5.3. \nNamespaces in Elemental Selectors"}],"url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "bf38e0ae": {"dfnID":"bf38e0ae","dfnText":"tree-abiding pseudo-element","external":true,"refSections":[{"refs":[{"id":"ref-for-tree-abiding"}],"title":"17. \nGrammar"}],"url":"https://drafts.csswg.org/css-pseudo-4/#tree-abiding"}, "bfff6250": {"dfnID":"bfff6250","dfnText":"button","external":true,"refSections":[{"refs":[{"id":"ref-for-the-button-element"}],"title":"4.3. \nThe Negation (Matches-None) Pseudo-class: :not()"}],"url":"https://html.spec.whatwg.org/multipage/form-elements.html#the-button-element"}, "blank-pseudo": {"dfnID":"blank-pseudo","dfnText":":blank","external":false,"refSections":[{"refs":[{"id":"ref-for-blank-pseudo"},{"id":"ref-for-blank-pseudo\u2460"}],"title":"12.3.1. \nThe Empty-Value Pseudo-class: :blank"},{"refs":[{"id":"ref-for-blank-pseudo\u2461"}],"title":"19.2. \nChanges since the 2 February 2018 Working Draft"},{"refs":[{"id":"ref-for-blank-pseudo\u2462"}],"title":"19.6. \nChanges Since Level 3"}],"url":"#blank-pseudo"}, @@ -6041,9 +6041,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "scoping-element": {"dfnID":"scoping-element","dfnText":"scoping element","external":false,"refSections":[],"url":"#scoping-element"}, "scoping-root": {"dfnID":"scoping-root","dfnText":"scoping root","external":false,"refSections":[{"refs":[{"id":"ref-for-scoping-root"},{"id":"ref-for-scoping-root\u2460"}],"title":"3.3. \nScoped Selectors"},{"refs":[{"id":"ref-for-scoping-root\u2461"},{"id":"ref-for-scoping-root\u2462"},{"id":"ref-for-scoping-root\u2463"}],"title":"8.6. \nThe Reference Element Pseudo-class: :scope"},{"refs":[{"id":"ref-for-scoping-root\u2464"},{"id":"ref-for-scoping-root\u2465"},{"id":"ref-for-scoping-root\u2466"}],"title":"18.5. \nMatch a Selector Against a Tree"}],"url":"#scoping-root"}, "selector": {"dfnID":"selector","dfnText":"selector","external":false,"refSections":[{"refs":[{"id":"ref-for-selector\u2460"}],"title":"1. \nIntroduction"},{"refs":[{"id":"ref-for-selector\u2461"},{"id":"ref-for-selector\u2462"},{"id":"ref-for-selector\u2463"}],"title":"3.1. \nStructure and Terminology"}],"url":"#selector"}, -"selector-combinator": {"dfnID":"selector-combinator","dfnText":"combinator","external":false,"refSections":[{"refs":[{"id":"ref-for-selector-combinator"},{"id":"ref-for-selector-combinator\u2460"},{"id":"ref-for-selector-combinator\u2461"},{"id":"ref-for-selector-combinator\u2462"},{"id":"ref-for-selector-combinator\u2463"},{"id":"ref-for-selector-combinator\u2464"}],"title":"3.1. \nStructure and Terminology"},{"refs":[{"id":"ref-for-selector-combinator\u2465"}],"title":"3.4. \nRelative Selectors"},{"refs":[{"id":"ref-for-selector-combinator\u2466"}],"title":"3.4.1. \nAbsolutizing a Relative Selector"},{"refs":[{"id":"ref-for-selector-combinator\u2467"}],"title":"3.6.4. \nInternal Structure"},{"refs":[{"id":"ref-for-selector-combinator\u2468"}],"title":"18.3. \nMatch a Selector Against an Element"}],"url":"#selector-combinator"}, +"selector-combinator": {"dfnID":"selector-combinator","dfnText":"combinator","external":false,"refSections":[],"url":"#selector-combinator"}, "selector-list": {"dfnID":"selector-list","dfnText":"selector list","external":false,"refSections":[{"refs":[{"id":"ref-for-selector-list"},{"id":"ref-for-selector-list\u2460"},{"id":"ref-for-selector-list\u2461"},{"id":"ref-for-selector-list\u2462"}],"title":"3.1. \nStructure and Terminology"},{"refs":[{"id":"ref-for-selector-list\u2463"},{"id":"ref-for-selector-list\u2464"}],"title":"4.1. \nSelector Lists"},{"refs":[{"id":"ref-for-selector-list\u2465"}],"title":"4.3. \nThe Negation (Matches-None) Pseudo-class: :not()"},{"refs":[{"id":"ref-for-selector-list\u2466"}],"title":"13.3.1. \n:nth-child() pseudo-class"},{"refs":[{"id":"ref-for-selector-list\u2467"}],"title":"13.3.2. \n:nth-last-child() pseudo-class"},{"refs":[{"id":"ref-for-selector-list\u2468"},{"id":"ref-for-selector-list\u2460\u24ea"},{"id":"ref-for-selector-list\u2460\u2460"}],"title":"16. \nCalculating a selector\u2019s specificity"},{"refs":[{"id":"ref-for-selector-list\u2460\u2461"}],"title":"19.3. \nChanges since the 2 May 2013 Working Draft"}],"url":"#selector-list"}, -"selector-subject": {"dfnID":"selector-subject","dfnText":"subject of a selector","external":false,"refSections":[{"refs":[{"id":"ref-for-selector-subject"}],"title":"3.1. \nStructure and Terminology"},{"refs":[{"id":"ref-for-selector-subject\u2460"}],"title":"4.2. \nThe Matches-Any Pseudo-class: :is()"},{"refs":[{"id":"ref-for-selector-subject\u2461"}],"title":"4.3. \nThe Negation (Matches-None) Pseudo-class: :not()"}],"url":"#selector-subject"}, +"selector-subject": {"dfnID":"selector-subject","dfnText":"subject of a selector","external":false,"refSections":[],"url":"#selector-subject"}, "selectordef-adjacent": {"dfnID":"selectordef-adjacent","dfnText":"+","external":false,"refSections":[],"url":"#selectordef-adjacent"}, "selectordef-child": {"dfnID":"selectordef-child","dfnText":">","external":false,"refSections":[],"url":"#selectordef-child"}, "selectordef-column": {"dfnID":"selectordef-column","dfnText":"||","external":false,"refSections":[],"url":"#selectordef-column"}, @@ -6616,9 +6616,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#scoped-selector": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":"scope","type":"dfn","url":"#scoped-selector"}, "#scoping-root": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":"scoping root","type":"dfn","url":"#scoping-root"}, "#selector": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":"selector","type":"dfn","url":"#selector"}, -"#selector-combinator": {"export":true,"for_":["selector"],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":"combinator","type":"dfn","url":"#selector-combinator"}, "#selector-list": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":"selector list","type":"dfn","url":"#selector-list"}, -"#selector-subject": {"export":true,"for_":["selector"],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":"subject","type":"dfn","url":"#selector-subject"}, "#selectordef-matches": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":":matches()","type":"selector","url":"#selectordef-matches"}, "#selectordef-paused": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":":paused","type":"selector","url":"#selectordef-paused"}, "#selectordef-playing": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"local","text":":playing","type":"selector","url":"#selectordef-playing"}, @@ -6674,6 +6672,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-display-3/#propdef-display": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"current","text":"display","type":"property","url":"https://drafts.csswg.org/css-display-3/#propdef-display"}, "https://drafts.csswg.org/css-display-4/#box-tree": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"box tree","type":"dfn","url":"https://drafts.csswg.org/css-display-4/#box-tree"}, "https://drafts.csswg.org/css-display-4/#propdef-visibility": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"visibility","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-visibility"}, +"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"@namespace","type":"at-rule","url":"https://drafts.csswg.org/css-namespaces-3/#at-ruledef-namespace"}, "https://drafts.csswg.org/css-namespaces-3/#css-qualified-name": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"css qualified name","type":"dfn","url":"https://drafts.csswg.org/css-namespaces-3/#css-qualified-name"}, "https://drafts.csswg.org/css-namespaces-3/#default-namespace": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-namespaces","spec":"css-namespaces-3","status":"current","text":"default namespace","type":"dfn","url":"https://drafts.csswg.org/css-namespaces-3/#default-namespace"}, "https://drafts.csswg.org/css-pseudo-4/#selectordef-after": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-pseudo","spec":"css-pseudo-4","status":"current","text":"::after","type":"selector","url":"https://drafts.csswg.org/css-pseudo-4/#selectordef-after"}, @@ -6696,6 +6695,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-text-4/#content-language": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"content language","type":"dfn","url":"https://drafts.csswg.org/css-text-4/#content-language"}, "https://drafts.csswg.org/css-text-4/#white-space": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"document white space characters","type":"dfn","url":"https://drafts.csswg.org/css-text-4/#white-space"}, "https://drafts.csswg.org/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"|","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#comb-one"}, +"https://drafts.csswg.org/css-values-4/#css-value-definition-syntax": {"export":true,"for_":["CSS"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"css value definition syntax","type":"dfn","url":"https://drafts.csswg.org/css-values-4/#css-value-definition-syntax"}, "https://drafts.csswg.org/css-values-4/#mult-comma": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"#","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "https://drafts.csswg.org/css-values-4/#mult-opt": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"?","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "https://drafts.csswg.org/css-values-4/#mult-req": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"!","type":"grammar","url":"https://drafts.csswg.org/css-values-4/#mult-req"}, diff --git a/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.console.txt index 95944a3473..2550fd2be9 100644 --- a/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.console.txt @@ -1,3 +1,3 @@ -FATAL ERROR: Under Process2021, w3c/WG-NOTE is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead. +FATAL ERROR: Under Process2021, WG-NOTE is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead. LINK ERROR: Obsolete biblio ref: [selectors-api] is replaced by [DOM]. Either update the reference, or use [selectors-api obsolete] if this is an intentionally-obsolete reference. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.html b/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.html index 5e706dd2b1..f2b04d7f7c 100644 --- a/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/selectors-nonelement-1/Overview.html @@ -3,9 +3,8 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Non-element Selectors Module Level 1</title> - <meta content="NOTE" name="w3c-status"> + <meta content="WG-NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WG-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/selectors-nonelement-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -574,7 +573,7 @@ <h1 class="p-name no-ref" id="title">Non-element Selectors Module Level 1</h1> <div data-fill-with="spec-metadata"> <dl> <dt>This version: - <dd><a class="u-url" href="https://www.w3.org/TR/1970/NOTE-selectors-nonelement-1-19700101/">https://www.w3.org/TR/1970/NOTE-selectors-nonelement-1-19700101/</a> + <dd><a class="u-url" href="https://www.w3.org/TR/1970/WG-NOTE-selectors-nonelement-1-19700101/">https://www.w3.org/TR/1970/WG-NOTE-selectors-nonelement-1-19700101/</a> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/selectors-nonelement-1/">https://www.w3.org/TR/selectors-nonelement-1/</a> <dt>Editor's Draft: @@ -594,7 +593,7 @@ <h1 class="p-name no-ref" id="title">Non-element Selectors Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -617,12 +616,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[selectors-nonelement] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bselectors-nonelement%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -834,7 +833,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-namespaces-3">[CSS-NAMESPACES-3] <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-namespaces-3/"><cite>CSS Namespaces Module Level 3</cite></a>. 20 March 2014. REC. URL: <a href="https://www.w3.org/TR/css-namespaces-3/">https://www.w3.org/TR/css-namespaces-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 19 October 2022. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 12 March 2024. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-selectors4">[SELECTORS4] diff --git a/tests/github/w3c/csswg-drafts/web-animations-1/Overview.console.txt b/tests/github/w3c/csswg-drafts/web-animations-1/Overview.console.txt index dc4ab99b33..105d296cd9 100644 --- a/tests/github/w3c/csswg-drafts/web-animations-1/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/web-animations-1/Overview.console.txt @@ -1,3 +1,40 @@ +LINE ~3935: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +[=descendant=] +LINE ~5959: Multiple possible 'child' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:child +spec:wai-aria-1.2; type:dfn; text:child +spec:css2; type:dfn; text:child +[=child=] +LINE ~5994: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +[=descendant=] +LINE 6039: Multiple possible 'descendant' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-descendant +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:descendant +spec:css2; type:dfn; text:descendant +<a bs-line-number="6039" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE ~6436: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' +LINE ~6439: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE ~455: Couldn't find target document section conventions: [[#conventions]] diff --git a/tests/github/w3c/csswg-drafts/web-animations-1/Overview.html b/tests/github/w3c/csswg-drafts/web-animations-1/Overview.html index 5fa397a74b..0047c28278 100644 --- a/tests/github/w3c/csswg-drafts/web-animations-1/Overview.html +++ b/tests/github/w3c/csswg-drafts/web-animations-1/Overview.html @@ -5,7 +5,6 @@ <title>Web Animations</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/web-animations-1/" rel="canonical"> <link href="https://drafts.csswg.org/csslogo.ico" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -992,7 +991,7 @@ <h1 class="p-name no-ref" id="title">Web Animations</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1019,7 +1018,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[web-animations-1] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bweb-animations-1%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -4286,7 +4285,7 @@ <h3 class="heading settled" data-level="5.6" id="side-effects-section"><span cla <div class="informative-bg"> <em>This section is non-normative</em> <p>As a result of the above requirement, if an animation targets, for example, -the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="ref-for-propdef-transform">transform</a> property of an element, a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a> will be +the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="ref-for-propdef-transform">transform</a> property of an element, a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a> will be created for the <a data-link-type="dfn" href="#effect-target" id="ref-for-effect-target①①">effect target</a> so long as the <a data-link-type="dfn" href="#concept-animation" id="ref-for-concept-animation⑥①">animation</a> is in the <a data-link-type="dfn" href="#before-phase" id="ref-for-before-phase⑧">before phase</a>, the <a data-link-type="dfn" href="#active-phase" id="ref-for-active-phase⑦">active phase</a> or, if it has a <a data-link-type="dfn" href="#fill-mode" id="ref-for-fill-mode⑨">fill mode</a> of ‘forwards’ or ‘both’, the <a data-link-type="dfn" href="#after-phase" id="ref-for-after-phase⑨">after @@ -6939,6 +6938,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6295808f">equivalent physical property</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -7047,7 +7051,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[SVG2]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> <li><span class="dfn-paneled" id="487da3cf">svg mime type</span> </ul> <li> @@ -7090,29 +7093,29 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> <dt id="biblio-css-animations-2">[CSS-ANIMATIONS-2] - <dd>CSS Animations Level 2 URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> + <dd>David Baron; Brian Birtles. <a href="https://drafts.csswg.org/css-animations-2/"><cite>CSS Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-3">[CSS-CASCADE-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-3/"><cite>CSS Cascading and Inheritance Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-3/">https://drafts.csswg.org/css-cascade-3/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-easing-1">[CSS-EASING-1] - <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> + <dd>Brian Birtles; Dean Jackson; Matt Rakow. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-properties-values-api-1">[CSS-PROPERTIES-VALUES-API-1] - <dd>Tab Atkins Jr.; et al. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> + <dd>Tab Atkins Jr.; Alan Stearns; Greg Whitworth. <a href="https://drafts.css-houdini.org/css-properties-values-api-1/"><cite>CSS Properties and Values API Level 1</cite></a>. URL: <a href="https://drafts.css-houdini.org/css-properties-values-api-1/">https://drafts.css-houdini.org/css-properties-values-api-1/</a> <dt id="biblio-css-shadow-parts-1">[CSS-SHADOW-PARTS-1] <dd>Tab Atkins Jr.; Fergal Daly. <a href="https://drafts.csswg.org/css-shadow-parts/"><cite>CSS Shadow Parts</cite></a>. URL: <a href="https://drafts.csswg.org/css-shadow-parts/">https://drafts.csswg.org/css-shadow-parts/</a> <dt id="biblio-css-style-attr">[CSS-STYLE-ATTR] @@ -7122,17 +7125,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-transitions-1">[CSS-TRANSITIONS-1] <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-transitions/"><cite>CSS Transitions</cite></a>. URL: <a href="https://drafts.csswg.org/css-transitions/">https://drafts.csswg.org/css-transitions/</a> <dt id="biblio-css-transitions-2">[CSS-TRANSITIONS-2] - <dd>CSS Transitions Level 2 URL: <a href="https://drafts.csswg.org/css-transitions-2/">https://drafts.csswg.org/css-transitions-2/</a> + <dd>David Baron; Brian Birtles. <a href="https://drafts.csswg.org/css-transitions-2/"><cite>CSS Transitions Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-transitions-2/">https://drafts.csswg.org/css-transitions-2/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-3/"><cite>CSS Writing Modes Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-3/">https://drafts.csswg.org/css-writing-modes-3/</a> <dt id="biblio-css-writing-modes-4">[CSS-WRITING-MODES-4] <dd>Elika Etemad; Koji Ishii. <a href="https://drafts.csswg.org/css-writing-modes-4/"><cite>CSS Writing Modes Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-writing-modes-4/">https://drafts.csswg.org/css-writing-modes-4/</a> + <dt id="biblio-css21">[CSS21] + <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css22">[CSS22] <dd>Bert Bos. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-cssom">[CSSOM] @@ -7162,7 +7167,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-svg2">[SVG2] <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> <dt id="biblio-web-animations-2">[WEB-ANIMATIONS-2] - <dd>Web Animations Level 2 URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> + <dd>Brian Birtles; Robert Flack. <a href="https://drafts.csswg.org/web-animations-2/"><cite>Web Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -7617,7 +7622,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "38e5beff": {"dfnID":"38e5beff","dfnText":"events from css animations","external":true,"refSections":[{"refs":[{"id":"ref-for-events"}],"title":"4.4.18. Animation events"}],"url":"https://drafts.csswg.org/css-animations/#events"}, "39002d6e": {"dfnID":"39002d6e","dfnText":"media element","external":true,"refSections":[{"refs":[{"id":"ref-for-media-element"}],"title":"4.4.10. Reaching the end"},{"refs":[{"id":"ref-for-media-element\u2460"}],"title":"8. Interaction with page display"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#media-element"}, "3b1682d5": {"dfnID":"3b1682d5","dfnText":"background-origin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-origin"}],"title":"5.2. Animating properties"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-origin"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"5.6. Side effects of animation"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "3c5ba7f1": {"dfnID":"3c5ba7f1","dfnText":"resolve a promise","external":true,"refSections":[{"refs":[{"id":"ref-for-resolve"}],"title":"4.4.4. Setting the current time of an animation"},{"refs":[{"id":"ref-for-resolve\u2460"}],"title":"4.4.5. Setting the start time of an animation"},{"refs":[{"id":"ref-for-resolve\u2461"}],"title":"4.4.8. Playing an animation"},{"refs":[{"id":"ref-for-resolve\u2462"}],"title":"4.4.9. Pausing an animation"},{"refs":[{"id":"ref-for-resolve\u2463"}],"title":"4.4.12. Updating the finished state"},{"refs":[{"id":"ref-for-resolve\u2464"},{"id":"ref-for-resolve\u2465"}],"title":"4.4.13. Finishing an animation"}],"url":"https://heycam.github.io/webidl/#resolve"}, "3f0b4366": {"dfnID":"3f0b4366","dfnText":"offset","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-offset"},{"id":"ref-for-propdef-offset\u2460"}],"title":"6.6.2. Property names and IDL names"}],"url":"https://drafts.fxtf.org/motion-1/#propdef-offset"}, "3fcc582f": {"dfnID":"3fcc582f","dfnText":"shadow root","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-shadow-root"}],"title":"6.10. Extensions to the DocumentOrShadowRoot interface mixin"}],"url":"https://dom.spec.whatwg.org/#concept-shadow-root"}, @@ -7686,6 +7690,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a06e5a78": {"dfnID":"a06e5a78","dfnText":"css declaration block","external":true,"refSections":[{"refs":[{"id":"ref-for-css-declaration-block"},{"id":"ref-for-css-declaration-block\u2460"}],"title":"6.4. The Animation interface"}],"url":"https://drafts.csswg.org/cssom-1/#css-declaration-block"}, "a1ac87bf": {"dfnID":"a1ac87bf","dfnText":"constructing events","external":true,"refSections":[{"refs":[{"id":"ref-for-constructing-events"}],"title":"6.12. The AnimationPlaybackEvent interface"}],"url":"https://dom.spec.whatwg.org/#constructing-events"}, "a2768cf5": {"dfnID":"a2768cf5","dfnText":"active document","external":true,"refSections":[{"refs":[{"id":"ref-for-active-document"}],"title":"4.3.2. Document timelines"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#active-document"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"5.6. Side effects of animation"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "a7fe0181": {"dfnID":"a7fe0181","dfnText":"style attribute","external":true,"refSections":[{"refs":[{"id":"ref-for-style-attribute"},{"id":"ref-for-style-attribute\u2460"},{"id":"ref-for-style-attribute\u2461"}],"title":"6.4. The Animation interface"}],"url":"https://drafts.csswg.org/css-style-attr/#style-attribute"}, "a8fe91d7": {"dfnID":"a8fe91d7","dfnText":"font-weight","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-weight"},{"id":"ref-for-propdef-font-weight\u2460"},{"id":"ref-for-propdef-font-weight\u2461"},{"id":"ref-for-propdef-font-weight\u2462"},{"id":"ref-for-propdef-font-weight\u2463"}],"title":"Animation of font-weight"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-weight"}, "a973e0fe": {"dfnID":"a973e0fe","dfnText":"document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document"}],"title":"6.10. Extensions to the DocumentOrShadowRoot interface mixin"}],"url":"https://dom.spec.whatwg.org/#concept-document"}, @@ -8825,7 +8830,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://infra.spec.whatwg.org/#list-iterate": {"export":true,"for_":["list","set"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"iterate","type":"dfn","url":"https://infra.spec.whatwg.org/#list-iterate"}, "https://infra.spec.whatwg.org/#ordered-set": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ordered set","type":"dfn","url":"https://infra.spec.whatwg.org/#ordered-set"}, "https://svgwg.org/svg2-draft/mimereg.html#mime-registration": {"export":true,"for_":[],"level":"","normative":true,"shortname":"svg2","spec":"svg2","status":"anchor-block","text":"svg mime type","type":"dfn","url":"https://svgwg.org/svg2-draft/mimereg.html#mime-registration"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "https://w3c.github.io/hr-time/#domhighrestimestamp": {"export":true,"for_":[],"level":"","normative":true,"shortname":"highres-time","spec":"highres-time","status":"anchor-block","text":"DOMHighResTimeStamp","type":"interface","url":"https://w3c.github.io/hr-time/#domhighrestimestamp"}, "https://w3c.github.io/hr-time/#time-origin": {"export":true,"for_":[],"level":"","normative":true,"shortname":"highres-time","spec":"highres-time","status":"anchor-block","text":"time origin","type":"dfn","url":"https://w3c.github.io/hr-time/#time-origin"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, @@ -8841,6 +8845,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://webidl.spec.whatwg.org/#invalidstateerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"InvalidStateError","type":"exception","url":"https://webidl.spec.whatwg.org/#invalidstateerror"}, "https://webidl.spec.whatwg.org/#nomodificationallowederror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"NoModificationAllowedError","type":"exception","url":"https://webidl.spec.whatwg.org/#nomodificationallowederror"}, "https://webidl.spec.whatwg.org/#syntaxerror": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SyntaxError","type":"exception","url":"https://webidl.spec.whatwg.org/#syntaxerror"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/csswg-drafts/web-animations-2/Overview.console.txt b/tests/github/w3c/csswg-drafts/web-animations-2/Overview.console.txt index af244fd259..c83b1b55f1 100644 --- a/tests/github/w3c/csswg-drafts/web-animations-2/Overview.console.txt +++ b/tests/github/w3c/csswg-drafts/web-animations-2/Overview.console.txt @@ -22,6 +22,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~189: No 'property' refs found for 'paused'. 'paused' @@ -32,6 +34,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~197: Multiple possible 'start time' dfn refs. Arbitrarily chose https://drafts.csswg.org/css-transitions-1/#transition-start-time @@ -40,6 +44,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~204: Multiple possible 'start time' dfn refs. Arbitrarily chose https://drafts.csswg.org/css-transitions-1/#transition-start-time @@ -48,6 +54,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~215: Multiple possible 'start time' dfn refs. Arbitrarily chose https://drafts.csswg.org/css-transitions-1/#transition-start-time @@ -56,6 +64,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE 225: No 'dfn' refs found for 'update an animation's finished state' that are marked for export. <a bs-line-number="225" data-link-type="dfn" data-lt="update an animation’s finished state">update an animation’s finished state</a> @@ -66,6 +76,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~301: Multiple possible 'start time' dfn refs. Arbitrarily chose https://drafts.csswg.org/css-transitions-1/#transition-start-time @@ -74,6 +86,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~306: No 'dfn' refs found for 'playback rate' that are marked for export. [=playback rate=] @@ -84,6 +98,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~312: No 'dfn' refs found for 'playback rate' that are marked for export. [=playback rate=] @@ -94,6 +110,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~322: Multiple possible 'start time' dfn refs. Arbitrarily chose https://drafts.csswg.org/css-transitions-1/#transition-start-time @@ -102,6 +120,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE 328: No 'dfn' refs found for 'previous current time' that are marked for export. <a bs-line-number="328" data-link-type="dfn" data-lt="previous current time">previous current time</a> @@ -116,6 +136,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE 343: No 'dfn' refs found for 'pending pause task' that are marked for export. <a bs-line-number="343" data-link-type="dfn" data-lt="pending pause task">pending pause task</a> @@ -132,6 +154,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~381: No 'dfn' refs found for 'apply any pending playback rate' that are marked for export. [=Apply any pending playback rate=] @@ -142,6 +166,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~393: No 'dfn' refs found for 'playback rate' that are marked for export. [=playback rate=] @@ -178,6 +204,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time <a bs-line-number="479" data-link-type="dfn" data-lt="start time">start time</a> LINE ~481: No 'dfn' refs found for 'apply any pending playback rate' that are marked for export. [=Apply any pending playback rate=] @@ -188,6 +216,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE 491: No 'dfn' refs found for 'pending pause task' that are marked for export. <a bs-line-number="491" data-link-type="dfn" data-lt="pending pause task">pending pause task</a> @@ -202,6 +232,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~526: No 'dfn' refs found for 'apply any pending playback rate' that are marked for export. [=Apply any pending playback rate=] @@ -216,6 +248,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~536: No 'dfn' refs found for 'playback rate' that are marked for export. [=playback rate=] @@ -226,6 +260,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~539: No 'dfn' refs found for 'pending playback rate' that are marked for export. [=pending playback rate=] @@ -236,6 +272,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE ~543: No 'dfn' refs found for 'playback rate' that are marked for export. [=playback rate=] @@ -254,6 +292,8 @@ spec:css-transitions-1; type:dfn; text:start time spec:web-animations-1; type:dfn; text:start time spec:fetch; type:dfn; text:start time spec:service-workers; type:dfn; text:start time +spec:prefetch; type:dfn; text:start time +spec:prerendering-revamped; type:dfn; text:start time [=start time=] LINE 561: No 'dfn' refs found for 'resolve a promise'. <a bs-line-number="561" data-lt="resolve a promise" data-link-type="dfn">Resolve</a> diff --git a/tests/github/w3c/csswg-drafts/web-animations-2/Overview.html b/tests/github/w3c/csswg-drafts/web-animations-2/Overview.html index 654d227143..e49c633f55 100644 --- a/tests/github/w3c/csswg-drafts/web-animations-2/Overview.html +++ b/tests/github/w3c/csswg-drafts/web-animations-2/Overview.html @@ -5,7 +5,6 @@ <title>Web Animations Level 2</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://drafts.csswg.org/web-animations-2/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -738,7 +737,7 @@ <h1 class="p-name no-ref" id="title">Web Animations Level 2</h1> please contact the CSSWG at www-style@w3.org. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -765,12 +764,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[web-animations] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bweb-animations%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -3328,11 +3327,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-easing-1">[CSS-EASING-1] - <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> + <dd>Brian Birtles; Dean Jackson; Matt Rakow. <a href="https://drafts.csswg.org/css-easing/"><cite>CSS Easing Functions Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-easing/">https://drafts.csswg.org/css-easing/</a> <dt id="biblio-css-easing-2">[CSS-EASING-2] - <dd>CSS Easing Functions Level 2 URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> + <dd><a href="https://drafts.csswg.org/css-easing-2/"><cite>CSS Easing Functions Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-easing-2/">https://drafts.csswg.org/css-easing-2/</a> <dt id="biblio-css-pseudo-4">[CSS-PSEUDO-4] <dd>Daniel Glazman; Elika Etemad; Alan Stearns. <a href="https://drafts.csswg.org/css-pseudo-4/"><cite>CSS Pseudo-Elements Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-pseudo-4/">https://drafts.csswg.org/css-pseudo-4/</a> <dt id="biblio-css-transitions-1">[CSS-TRANSITIONS-1] @@ -3348,14 +3347,14 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-web-animations-1">[WEB-ANIMATIONS-1] <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/web-animations-1/"><cite>Web Animations</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-1/">https://drafts.csswg.org/web-animations-1/</a> <dt id="biblio-web-animations-2">[WEB-ANIMATIONS-2] - <dd>Web Animations Level 2 URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> + <dd>Brian Birtles; Robert Flack. <a href="https://drafts.csswg.org/web-animations-2/"><cite>Web Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-2/">https://drafts.csswg.org/web-animations-2/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed"><c- g>Exposed</c-></a>=<c- n>Window</c->] diff --git a/tests/github/w3c/device-memory/index.html b/tests/github/w3c/device-memory/index.html index d76456abda..3cbdcac1af 100644 --- a/tests/github/w3c/device-memory/index.html +++ b/tests/github/w3c/device-memory/index.html @@ -5,7 +5,6 @@ <title>Device Memory</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/device-memory/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -709,7 +708,7 @@ <h1 class="p-name no-ref" id="title">Device Memory</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -723,7 +722,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" Its publication here does not imply endorsement of its contents by W3C. Don’t cite this document other than as work in progress. </p> <p><a href="https://github.com/w3c/device-memory/issues">GitHub Issues</a> are preferred for discussion of this specification. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -856,20 +855,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/w3c/deviceorientation/index.console.txt b/tests/github/w3c/deviceorientation/index.console.txt index d5ceacf02b..e49f74a87c 100644 --- a/tests/github/w3c/deviceorientation/index.console.txt +++ b/tests/github/w3c/deviceorientation/index.console.txt @@ -16,6 +16,14 @@ LINE 617: Image doesn't exist, so I couldn't determine its width and height: 'eq LINE 633: Image doesn't exist, so I couldn't determine its width and height: 'equation13a.png' LINE 685: Image doesn't exist, so I couldn't determine its width and height: 'equation14.png' LINE 724: Image doesn't exist, so I couldn't determine its width and height: 'equation18.png' +LINK ERROR: Multiple possible 'window' attribute refs. +Arbitrarily chose https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-window +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:html; type:attribute; text:window +spec:long-animation-frames; type:attribute; text:window +spec:document-picture-in-picture; type:attribute; for:DocumentPictureInPicture; text:window +spec:document-picture-in-picture; type:attribute; for:DocumentPictureInPictureEvent; text:window +{{window!!attribute}} LINE ~472: No 'dfn' refs found for 'nested browsing contexts'. [=nested browsing contexts=] LINE 460: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/deviceorientation/index.html b/tests/github/w3c/deviceorientation/index.html index 3476ba266b..a8ca74c803 100644 --- a/tests/github/w3c/deviceorientation/index.html +++ b/tests/github/w3c/deviceorientation/index.html @@ -5,7 +5,6 @@ <title>DeviceOrientation Event Specification</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/orientation-event/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -719,7 +718,7 @@ <h1 class="p-name no-ref" id="title">DeviceOrientation Event Specification</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -738,13 +737,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[orientation-event] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/dpub-pagination/Overview.console.txt b/tests/github/w3c/dpub-pagination/Overview.console.txt index f44113ca3b..2da165bcfc 100644 --- a/tests/github/w3c/dpub-pagination/Overview.console.txt +++ b/tests/github/w3c/dpub-pagination/Overview.console.txt @@ -1,8 +1,5 @@ -FATAL ERROR: You used Status: ED, but that's limited to the 'w3c', 'fido', or 'khronos' orgs, and your group 'dpub' isn't recognized as being in any of those orgs. If this is wrong, please file a Bikeshed issue to categorize your group properly, and/or try: -Status: w3c/ED -Status: fido/ED -Status: khronos/ED -FATAL ERROR: Unknown Status 'ED' used. +FATAL ERROR: Unknown Group 'DPUB'. See docs for recognized Group values. +FATAL ERROR: Your Status 'ED' only exists in the Orgs W3C, FIDO, and KHRONOS. Declare one of those Orgs in your Org metadata. LINE 96:27: Spurious / in <img>. LINE 120:27: Spurious / in <img>. LINE 147:27: Spurious / in <img>. diff --git a/tests/github/w3c/dpub-pagination/Overview.html b/tests/github/w3c/dpub-pagination/Overview.html index 94cc852444..824cc2d12c 100644 --- a/tests/github/w3c/dpub-pagination/Overview.html +++ b/tests/github/w3c/dpub-pagination/Overview.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -2037,8 +2038,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. +the editors have made this specification available under the <a href="https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, +which is available at https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> <hr title="Separator for header"> </div> @@ -3147,9 +3148,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-css3-content">[CSS3-CONTENT] <dd>Elika Etemad; Dave Cramer. <a href="https://drafts.csswg.org/css-content-3/"><cite>CSS Generated Content Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-content-3/">https://drafts.csswg.org/css-content-3/</a> <dt id="biblio-css3-gcpm">[CSS3-GCPM] - <dd>Dave Cramer. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> + <dd>Rachel Andrew; Mike Bremford. <a href="https://drafts.csswg.org/css-gcpm/"><cite>CSS Generated Content for Paged Media Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-gcpm/">https://drafts.csswg.org/css-gcpm/</a> <dt id="biblio-css3-page">[CSS3-PAGE] - <dd>Elika Etemad; Simon Sapin. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-page-3/"><cite>CSS Paged Media Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-page-3/">https://drafts.csswg.org/css-page-3/</a> <dt id="biblio-css3text">[CSS3TEXT] <dd>Elika Etemad; Koji Ishii; Florian Rivoal. <a href="https://drafts.csswg.org/css-text-3/"><cite>CSS Text Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-3/">https://drafts.csswg.org/css-text-3/</a> <dt id="biblio-jlreq">[JLREQ] diff --git a/tests/github/w3c/fxtf-drafts/compositing-1/Overview.console.txt b/tests/github/w3c/fxtf-drafts/compositing-1/Overview.console.txt index e4322019e3..3fbe921973 100644 --- a/tests/github/w3c/fxtf-drafts/compositing-1/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/compositing-1/Overview.console.txt @@ -49,7 +49,6 @@ LINT: Your document appears to use spaces to indent, but line 1340 starts with t LINT: Your document appears to use spaces to indent, but line 1352 starts with tabs. LINT: Your document appears to use spaces to indent, but line 1364 starts with tabs. LINT: Your document appears to use spaces to indent, but line 1375 starts with tabs. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/ducky_normal.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/ducky_multiply.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/screen_example.svg' diff --git a/tests/github/w3c/fxtf-drafts/compositing-1/Overview.html b/tests/github/w3c/fxtf-drafts/compositing-1/Overview.html index 828b0b5b7e..7408a8df9b 100644 --- a/tests/github/w3c/fxtf-drafts/compositing-1/Overview.html +++ b/tests/github/w3c/fxtf-drafts/compositing-1/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Compositing and Blending Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="refining" name="csswg-work-status"> + <title>Compositing and Blending Level 1</title> <meta content="ED" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/compositing-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -827,7 +823,7 @@ <h1>Compositing and Blending Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -840,7 +836,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont </ul> In addition, this specification will define CSS properties for blending and group isolation and the properties of the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-globalcompositeoperation" id="ref-for-dom-context-2d-globalcompositeoperation">globalCompositeOperation</a></code> attribute. </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> This is a public copy of the editors’ draft. It is provided for discussion only and may change at any moment. @@ -854,11 +850,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> (part of the <a href="https://www.w3.org/Style/">Style Activity</a>). </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2194,7 +2190,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css21">[CSS21] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3color">[CSS3COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-html">[HTML] @@ -2207,7 +2203,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-porterduff">[PORTERDUFF] <dd>Thomas Porter; Tom Duff. <cite>Compositing digital images</cite>. July 1984. </dl> diff --git a/tests/github/w3c/fxtf-drafts/compositing-2/Overview.console.txt b/tests/github/w3c/fxtf-drafts/compositing-2/Overview.console.txt index e2d32560da..35a96999de 100644 --- a/tests/github/w3c/fxtf-drafts/compositing-2/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/compositing-2/Overview.console.txt @@ -49,7 +49,6 @@ LINT: Your document appears to use spaces to indent, but line 1363 starts with t LINT: Your document appears to use spaces to indent, but line 1375 starts with tabs. LINT: Your document appears to use spaces to indent, but line 1387 starts with tabs. LINT: Your document appears to use spaces to indent, but line 1398 starts with tabs. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/ducky_normal.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/ducky_multiply.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/screen_example.svg' @@ -95,21 +94,6 @@ WARNING: Image doesn't exist, so I couldn't determine its width and height: 'exa WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/isolate_blend_example.png' LINE ~51: No 'dfn' refs found for 'containing block' with spec 'css-position-3'. [=containing block=] -LINE ~51: No 'dfn' refs found for 'stacking context' with spec 'css2'. -[=stacking context=] -LINE ~88: No 'dfn' refs found for 'stacking context' with spec 'css2'. -[=stacking context=] -LINE ~90: No 'dfn' refs found for 'stacking context' with spec 'css2'. -[=stacking context=] -LINE ~137: No 'dfn' refs found for 'stacking context' with spec 'css2'. -[=stacking context=] -LINE ~260: No 'dfn' refs found for 'stacking context' with spec 'css2'. -[=stacking context=] LINE ~281: No 'property' refs found for 'mask' with spec 'svg'. 'mask' -LINE ~51: Couldn't find section '#visual-model-intro' in spec 'css2': -[[css2#visual-model-intro|Visual formatting model]] -LINE ~66: Couldn't find section '#property-defs' in spec 'css2': -[[css2#property-defs|CSS property -definition conventions]] WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/fxtf-drafts/compositing-2/Overview.html b/tests/github/w3c/fxtf-drafts/compositing-2/Overview.html index 0bc613813e..8b393d1d1c 100644 --- a/tests/github/w3c/fxtf-drafts/compositing-2/Overview.html +++ b/tests/github/w3c/fxtf-drafts/compositing-2/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Compositing and Blending Level 2</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="exploring" name="csswg-work-status"> + <title>Compositing and Blending Level 2</title> <meta content="ED" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/compositing-2/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -827,7 +823,7 @@ <h1 class="p-name no-ref" id="title">Compositing and Blending Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -840,7 +836,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont </ul> In addition, this specification will define CSS properties for blending and group isolation and the properties of the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-globalcompositeoperation" id="ref-for-dom-context-2d-globalcompositeoperation">globalCompositeOperation</a></code> attribute. </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> This is a public copy of the editors’ draft. It is provided for discussion only and may change at any moment. @@ -854,11 +850,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> (part of the <a href="https://www.w3.org/Style/">Style Activity</a>). </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1001,14 +997,14 @@ <h2 class="heading settled" data-level="2" id="reading-this-document"><span clas <h3 class="heading settled" data-level="2.1" id="module-interactions"><span class="secno">2.1. </span><span class="content">Module interactions</span><a class="self-link" href="#module-interactions"></a></h3> <p>This specification defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied; these effects are applied after elements have been sized and positioned according -to the <span spec-section="#visual-model-intro">Visual formatting model</span>. Some values of these properties result in the creation of a <a data-link-type="dfn">containing block</a>, -and/or the creation of a <span>stacking context</span>.</p> +to the <a href="https://www.w3.org/TR/CSS21/visuren.html#visual-model-intro">Visual formatting model</a>. Some values of these properties result in the creation of a <a data-link-type="dfn">containing block</a>, +and/or the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a>.</p> <p>The <a class="property css" data-link-type="property" href="#propdef-background-blend-mode" id="ref-for-propdef-background-blend-mode">background-blend-mode</a> property also builds upon the properties defined in the <a href="https://www.w3.org/TR/css3-background/#placement" title="Backgrounds and Borders">CSS Backgrounds and Borders</a> module <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a>.</p> <p>This specification also enhances the rules as specified in <a href="https://www.w3.org/TR/2003/REC-SVG11-20030114/masking.html#SimpleAlphaBlending" title="simple alpha blending">Section 14.2 Simple alpha compositing</a> of <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a> and <a href="https://www.w3.org/TR/css3-color/#alpha" title="simple alpha compositing">simple alpha compositing</a> of <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a>.</p> <p>This module also extends the <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-globalcompositeoperation" id="ref-for-dom-context-2d-globalcompositeoperation①">globalCompositeOperation</a></code>.</p> <h3 class="heading settled" data-level="2.2" id="values"><span class="secno">2.2. </span><span class="content">Values</span><a class="self-link" href="#values"></a></h3> - <p>This specification follows the <span spec-section="#property-defs">CSS property -definition conventions</span>. Value types not defined in + <p>This specification follows the <a href="https://www.w3.org/TR/CSS21/about.html#property-defs">CSS property +definition conventions</a>. Value types not defined in this specification are defined in CSS Level 2 Revision 1 <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. Other CSS modules may expand the definitions of these value types: for example <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a>, when combined with this module, expands the definition of the &lt;color> @@ -1020,8 +1016,8 @@ <h2 class="heading settled" data-level="3" id="csscompositingandblending"><span <h3 class="heading settled" data-level="3.1" id="compositingandblendingorder"><span class="secno">3.1. </span><span class="content">Order of graphical operations</span><a class="self-link" href="#compositingandblendingorder"></a></h3> <p>The compositing model must follow the <a href="https://www.w3.org/TR/SVG11/render.html#Introduction">SVG compositing</a> model <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>: first any filter effect is applied, then any clipping, masking, blending and compositing.</p> <h3 class="heading settled" data-level="3.2" id="csscompositingrules_CSS"><span class="secno">3.2. </span><span class="content">Behavior specific to HTML</span><a class="self-link" href="#csscompositingrules_CSS"></a></h3> - <p>Everything in CSS that creates a <a data-link-type="dfn">stacking context</a> must be considered an <a href="#isolatedgroups">‘isolated’ group</a>. HTML elements themselves should not create groups.</p> - <p>An element that has blending applied, must blend with all the underlying content of the <a data-link-type="dfn">stacking context</a> that that element belongs to.</p> + <p>Everything in CSS that creates a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43①">stacking context</a> must be considered an <a href="#isolatedgroups">‘isolated’ group</a>. HTML elements themselves should not create groups.</p> + <p>An element that has blending applied, must blend with all the underlying content of the <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43②">stacking context</a> that that element belongs to.</p> <p>The root element for an HTML document is the <a href="https://dom.spec.whatwg.org/#document-element">document element</a>.</p> <h3 class="heading settled" data-level="3.3" id="csscompositingrules_SVG"><span class="secno">3.3. </span><span class="content">Behavior specific to SVG</span><a class="self-link" href="#csscompositingrules_SVG"></a></h3> <p>By default, every element must create a <a href="#isolatedgroups">non-isolated group</a>.</p> @@ -1074,7 +1070,7 @@ <h4 class="heading settled" data-level="3.4.1" id="mix-blend-mode"><span class=" <p>The syntax of the property of <a class="production css" data-link-type="type" href="#ltblendmodegt" id="ref-for-ltblendmodegt①">&lt;blend-mode></a> is given with:</p> <pre class="blendmode prod"><dfn class="dfn-paneled" data-dfn-type="type" data-export id="ltblendmodegt">&lt;blend-mode></dfn> = <a data-link-type="value" href="#valdef-blend-mode-normal" id="ref-for-valdef-blend-mode-normal">normal</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one">|</a> <a data-link-type="value" href="#valdef-blend-mode-multiply" id="ref-for-valdef-blend-mode-multiply">multiply</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①">|</a> <a data-link-type="value" href="#valdef-blend-mode-screen" id="ref-for-valdef-blend-mode-screen">screen</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one②">|</a> <a data-link-type="value" href="#valdef-blend-mode-overlay" id="ref-for-valdef-blend-mode-overlay">overlay</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one③">|</a> <a data-link-type="value" href="#valdef-blend-mode-darken" id="ref-for-valdef-blend-mode-darken">darken</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one④">|</a> <a data-link-type="value" href="#valdef-blend-mode-lighten" id="ref-for-valdef-blend-mode-lighten">lighten</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑤">|</a> <a data-link-type="value" href="#valdef-blend-mode-color-dodge" id="ref-for-valdef-blend-mode-color-dodge">color-dodge</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑥">|</a><a data-link-type="value" href="#valdef-blend-mode-color-burn" id="ref-for-valdef-blend-mode-color-burn">color-burn</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑦">|</a> <a data-link-type="value" href="#valdef-blend-mode-hard-light" id="ref-for-valdef-blend-mode-hard-light">hard-light</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑧">|</a> <a data-link-type="value" href="#valdef-blend-mode-soft-light" id="ref-for-valdef-blend-mode-soft-light">soft-light</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one⑨">|</a> <a data-link-type="value" href="#valdef-blend-mode-difference" id="ref-for-valdef-blend-mode-difference">difference</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①⓪">|</a> <a data-link-type="value" href="#valdef-blend-mode-exclusion" id="ref-for-valdef-blend-mode-exclusion">exclusion</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①①">|</a> <a data-link-type="value" href="#valdef-blend-mode-hue" id="ref-for-valdef-blend-mode-hue">hue</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①②">|</a> <a data-link-type="value" href="#valdef-blend-mode-saturation" id="ref-for-valdef-blend-mode-saturation">saturation</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①③">|</a> <a data-link-type="value" href="#valdef-blend-mode-color" id="ref-for-valdef-blend-mode-color">color</a> <a data-link-type="grammar" href="https://drafts.csswg.org/css-values-4/#comb-one" id="ref-for-comb-one①④">|</a> <a data-link-type="value" href="#valdef-blend-mode-luminosity" id="ref-for-valdef-blend-mode-luminosity">luminosity</a></pre> - <p class="note" role="note"><span class="marker">Note:</span> Applying a blendmode other than <a class="css" data-link-type="value" href="#valdef-blend-mode-normal" id="ref-for-valdef-blend-mode-normal①">normal</a> to the element must establish a new <a data-link-type="dfn">stacking context</a>. This group must then be blended and composited with the <span>stacking context</span> that contains the element.</p> + <p class="note" role="note"><span class="marker">Note:</span> Applying a blendmode other than <a class="css" data-link-type="value" href="#valdef-blend-mode-normal" id="ref-for-valdef-blend-mode-normal①">normal</a> to the element must establish a new <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43③">stacking context</a>. This group must then be blended and composited with the <span id="ref-for-x43④">stacking context</span> that contains the element.</p> <div class="example" id="example-7e584e42"> <a class="self-link" href="#example-7e584e42"></a> <p>Given the following sample markup:</p> @@ -1165,7 +1161,7 @@ <h4 class="heading settled" data-level="3.4.1" id="mix-blend-mode"><span class=" </div> <h4 class="heading settled" data-level="3.4.2" id="isolation"><span class="secno">3.4.2. </span><span class="content">The <a class="property css" data-link-type="property" href="#propdef-isolation" id="ref-for-propdef-isolation">isolation</a> property</span><a class="self-link" href="#isolation"></a></h4> <p>In SVG, this defines whether an element is isolated or not.<br> For CSS, setting <a class="property css" data-link-type="property" href="#propdef-isolation" id="ref-for-propdef-isolation①">isolation</a> to <span class="css">isolate</span> will turn the element into a stacking context.</p> - <p>By default, elements use the <span class="css">auto</span> keyword which implies that they are not isolated. However operations that cause the creation of <a data-link-type="dfn">stacking context</a> must cause a group to be isolated. These operations are described in <a href="#csscompositingrules_CSS">'behavior specific to HTML'</a> and <a href="#csscompositingrules_SVG">'behavior specific to SVG'</a>.</p> + <p>By default, elements use the <span class="css">auto</span> keyword which implies that they are not isolated. However operations that cause the creation of <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43⑤">stacking context</a> must cause a group to be isolated. These operations are described in <a href="#csscompositingrules_CSS">'behavior specific to HTML'</a> and <a href="#csscompositingrules_SVG">'behavior specific to SVG'</a>.</p> <table class="def propdef" data-link-for-hint="isolation"> <tbody> <tr> @@ -2204,6 +2200,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="68487d22">#</span> <li><span class="dfn-paneled" id="6ec67710">|</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[CSS3BG]</a> defines the following terms: <ul> @@ -2228,7 +2229,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css21">[CSS21] <dd>Bert Bos; et al. <a href="https://drafts.csswg.org/css2/"><cite>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</cite></a>. URL: <a href="https://drafts.csswg.org/css2/">https://drafts.csswg.org/css2/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3color">[CSS3COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-html">[HTML] @@ -2241,7 +2242,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-porterduff">[PORTERDUFF] <dd>Thomas Porter; Tom Duff. <cite>Compositing digital images</cite>. July 1984. </dl> @@ -2565,6 +2566,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "68487d22": {"dfnID":"68487d22","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"3.4.3. The background-blend-mode property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-comma"}, "6ec67710": {"dfnID":"6ec67710","dfnText":"|","external":true,"refSections":[{"refs":[{"id":"ref-for-comb-one"},{"id":"ref-for-comb-one\u2460"},{"id":"ref-for-comb-one\u2461"},{"id":"ref-for-comb-one\u2462"},{"id":"ref-for-comb-one\u2463"},{"id":"ref-for-comb-one\u2464"},{"id":"ref-for-comb-one\u2465"},{"id":"ref-for-comb-one\u2466"},{"id":"ref-for-comb-one\u2467"},{"id":"ref-for-comb-one\u2468"},{"id":"ref-for-comb-one\u2460\u24ea"},{"id":"ref-for-comb-one\u2460\u2460"},{"id":"ref-for-comb-one\u2460\u2461"},{"id":"ref-for-comb-one\u2460\u2462"},{"id":"ref-for-comb-one\u2460\u2463"}],"title":"3.4.1. The mix-blend-mode property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2464"}],"title":"3.4.2. The isolation property"},{"refs":[{"id":"ref-for-comb-one\u2460\u2465"},{"id":"ref-for-comb-one\u2460\u2466"},{"id":"ref-for-comb-one\u2460\u2467"},{"id":"ref-for-comb-one\u2460\u2468"},{"id":"ref-for-comb-one\u2461\u24ea"},{"id":"ref-for-comb-one\u2461\u2460"},{"id":"ref-for-comb-one\u2461\u2461"},{"id":"ref-for-comb-one\u2461\u2462"},{"id":"ref-for-comb-one\u2461\u2463"},{"id":"ref-for-comb-one\u2461\u2464"},{"id":"ref-for-comb-one\u2461\u2465"},{"id":"ref-for-comb-one\u2461\u2466"},{"id":"ref-for-comb-one\u2461\u2467"}],"title":"4. Specifying Compositing and Blending in Canvas 2D"}],"url":"https://drafts.csswg.org/css-values-4/#comb-one"}, "91bfbe18": {"dfnID":"91bfbe18","dfnText":"opacity","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-opacity"}],"title":"3.4.1. The mix-blend-mode property"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"2.1. Module interactions"},{"refs":[{"id":"ref-for-x43\u2460"},{"id":"ref-for-x43\u2461"}],"title":"3.2. Behavior specific to HTML"},{"refs":[{"id":"ref-for-x43\u2462"},{"id":"ref-for-x43\u2463"}],"title":"3.4.1. The mix-blend-mode property"},{"refs":[{"id":"ref-for-x43\u2464"}],"title":"3.4.2. The isolation property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "backdrop": {"dfnID":"backdrop","dfnText":"backdrop","external":false,"refSections":[{"refs":[{"id":"ref-for-backdrop\u2460"},{"id":"ref-for-backdrop\u2461"}],"title":"5. Introduction to compositing"},{"refs":[{"id":"ref-for-backdrop\u2462"},{"id":"ref-for-backdrop\u2463"},{"id":"ref-for-backdrop\u2464"}],"title":"5.1. Simple alpha compositing"},{"refs":[{"id":"ref-for-backdrop\u2465"},{"id":"ref-for-backdrop\u2466"}],"title":"5.1.1. Examples of simple alpha compositing"},{"refs":[{"id":"ref-for-backdrop\u2467"},{"id":"ref-for-backdrop\u2468"},{"id":"ref-for-backdrop\u2460\u24ea"},{"id":"ref-for-backdrop\u2460\u2460"},{"id":"ref-for-backdrop\u2460\u2461"}],"title":"10. Blending"},{"refs":[{"id":"ref-for-backdrop\u2460\u2462"}],"title":"10.1. Separable blend modes"},{"refs":[{"id":"ref-for-backdrop\u2460\u2463"}],"title":"10.1.3. screen blend mode"},{"refs":[{"id":"ref-for-backdrop\u2460\u2464"},{"id":"ref-for-backdrop\u2460\u2465"},{"id":"ref-for-backdrop\u2460\u2466"},{"id":"ref-for-backdrop\u2460\u2467"}],"title":"10.1.4. overlay blend mode"},{"refs":[{"id":"ref-for-backdrop\u2460\u2468"},{"id":"ref-for-backdrop\u2461\u24ea"}],"title":"10.1.5. darken blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2460"},{"id":"ref-for-backdrop\u2461\u2461"}],"title":"10.1.6. lighten blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2462"}],"title":"10.1.7. color-dodge blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2463"}],"title":"10.1.8. color-burn blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2464"}],"title":"10.1.9. hard-light blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2465"}],"title":"10.1.10. soft-light blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2466"}],"title":"10.1.11. difference blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2467"}],"title":"10.1.12. exclusion blend mode"},{"refs":[{"id":"ref-for-backdrop\u2461\u2468"},{"id":"ref-for-backdrop\u2462\u24ea"}],"title":"10.2. Non-separable blend modes"},{"refs":[{"id":"ref-for-backdrop\u2462\u2460"}],"title":"10.2.1. hue blend mode"},{"refs":[{"id":"ref-for-backdrop\u2462\u2461"},{"id":"ref-for-backdrop\u2462\u2462"}],"title":"10.2.2. saturation blend mode"},{"refs":[{"id":"ref-for-backdrop\u2462\u2463"},{"id":"ref-for-backdrop\u2462\u2464"}],"title":"10.2.3. color blend mode"},{"refs":[{"id":"ref-for-backdrop\u2462\u2465"}],"title":"10.2.4. luminosity blend mode"}],"url":"#backdrop"}, "clear": {"dfnID":"clear","dfnText":"clear","external":false,"refSections":[{"refs":[{"id":"ref-for-clear"}],"title":"4. Specifying Compositing and Blending in Canvas 2D"}],"url":"#clear"}, "compositemode": {"dfnID":"compositemode","dfnText":"<composite-mode>","external":false,"refSections":[{"refs":[{"id":"ref-for-compositemode"},{"id":"ref-for-compositemode\u2460"}],"title":"4. Specifying Compositing and Blending in Canvas 2D"},{"refs":[{"id":"ref-for-compositemode\u2461"}],"title":"12. Changes"}],"url":"#compositemode"}, @@ -3117,6 +3119,7 @@ <h2 class="no-num no-ref heading settled" id="property-index"><span class="conte "https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-globalcompositeoperation": {"export":true,"for_":["CanvasCompositing"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"globalCompositeOperation","type":"attribute","url":"https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-globalcompositeoperation"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"img","type":"element","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "https://html.spec.whatwg.org/multipage/sections.html#the-body-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"body","type":"element","url":"https://html.spec.whatwg.org/multipage/sections.html#the-body-element"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.console.txt b/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.console.txt index 32e2026ec3..383cfaf07a 100644 --- a/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.console.txt @@ -1,5 +1,4 @@ LINE 977: The propdef for 'mask-border-mode' is missing a 'Animation type' line. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 377: Image doesn't exist, so I couldn't determine its width and height: 'images/cliprule-nonzero.svg' LINE 383: Image doesn't exist, so I couldn't determine its width and height: 'images/cliprule-evenodd.svg' LINE 180: Multiple possible 'visible' maybe refs. @@ -11,6 +10,12 @@ spec:css-overflow-3; type:value; for:overflow; text:visible spec:css-overflow-3; type:value; for:overflow-x; text:visible spec:css-overflow-3; type:value; for:overflow-y; text:visible ''visible'' +LINE ~232: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' LINE 299: Multiple possible 'metadata' element refs. Arbitrarily chose https://svgwg.org/svg2-draft/struct.html#elementdef-metadata To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: diff --git a/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.html b/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.html index 04d3072567..4a9fcdec5a 100644 --- a/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.html +++ b/tests/github/w3c/fxtf-drafts/css-masking-1/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>CSS Masking Module Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="refining" name="csswg-work-status"> + <title>CSS Masking Module Level 1</title> <meta content="ED" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/css-masking-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -954,7 +950,7 @@ <h1 class="p-name no-ref" id="title">CSS Masking Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -963,7 +959,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont <p>Masking describes how to use another graphical element or image as a luminance or alpha mask. Typically, rendering an element via CSS or SVG can conceptually be described as if the element, including its children, are drawn into a buffer and then that buffer is composited into the element’s parent. Luminance and alpha masks influence the transparency of this buffer before the compositing stage.</p> <p>Clipping describes the visible region of visual elements. The region can be described by using certain SVG graphics elements or basic shapes. Anything outside of this region is not rendered.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> This is a public copy of the editors’ draft. It is provided for discussion only and may change at any moment. @@ -977,11 +973,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> (part of the <a href="https://www.w3.org/Style/">Style Activity</a>). </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1115,7 +1111,7 @@ <h3 class="heading settled" data-level="1.2" id="masking"><span class="secno">1. <p>The <a class="property css" data-link-type="property" href="#propdef-mask" id="ref-for-propdef-mask">mask</a> property serves as a shorthand property for all <a class="property css" data-link-type="property" href="#propdef-mask-border" id="ref-for-propdef-mask-border①">mask-border</a> and <a class="property css" data-link-type="property" href="#propdef-mask-image" id="ref-for-propdef-mask-image③">mask-image</a> affiliated properties.</p> <p class="note" role="note"><span class="marker">Note:</span> While masking gives many possibilities for enhanced graphical effects and in general provides more control over the “visible portions” of the content, clipping paths can perform better and basic shapes are easier to interpolate.</p> <h2 class="heading settled" data-level="2" id="placement"><span class="secno">2. </span><span class="content">Module interactions</span><a class="self-link" href="#placement"></a></h2> - <p>This specification defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied. These effects are applied after elements have been sized and positioned according to the <a href="https://www.w3.org/TR/CSS2/visuren.html" title="Visual formatting model">Visual formatting model</a> from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. Some values of these properties result in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a>. Furthermore, this specification replaces the section <a href="https://www.w3.org/TR/CSS2/visufx.html#clipping">Clipping: the clip property</a> from <span title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</span>.</p> + <p>This specification defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied. These effects are applied after elements have been sized and positioned according to the <a href="https://www.w3.org/TR/CSS2/visuren.html" title="Visual formatting model">Visual formatting model</a> from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. Some values of these properties result in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a>. Furthermore, this specification replaces the section <a href="https://www.w3.org/TR/CSS2/visufx.html#clipping">Clipping: the clip property</a> from <span title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</span>.</p> <p>The compositing model follows the SVG compositing model <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>: First the element is styled under absence of filter effects, masking, clipping and opacity. Then the element and its descendants are drawn on a temporary canvas. In a last step the following effects are applied to the element in order: filter effects <a data-link-type="biblio" href="#biblio-filter-effects" title="Filter Effects Module Level 1">[FILTER-EFFECTS]</a>, clipping, masking and opacity.</p> <p>This specification allows compositing multiple mask layers with the Porter Duff compositing operators defined in CSS Compositing and Blending <a data-link-type="biblio" href="#biblio-compositing-1" title="Compositing and Blending Level 1">[COMPOSITING-1]</a>.</p> <p>The term <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/coords.html#TermObjectBoundingBox" id="ref-for-TermObjectBoundingBox">object bounding box</a> follows the definition in SVG 1.1 <a data-link-type="biblio" href="#biblio-svg11" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG11]</a>.</p> @@ -1239,7 +1235,7 @@ <h3 class="heading settled" data-level="5.1" id="the-clip-path"><span class="sec </div> <p>For SVG elements without associated CSS layout box, the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value">used value</a> for <a class="css" data-link-type="maybe" href="#valdef-mask-clip-content-box" id="ref-for-valdef-mask-clip-content-box">content-box</a> and <a class="css" data-link-type="maybe" href="#valdef-mask-clip-padding-box" id="ref-for-valdef-mask-clip-padding-box">padding-box</a> is <a class="css" data-link-type="maybe" href="#valdef-clip-path-fill-box" id="ref-for-valdef-clip-path-fill-box">fill-box</a> and for <a class="css" data-link-type="maybe" href="#valdef-mask-clip-border-box" id="ref-for-valdef-mask-clip-border-box①">border-box</a> and <span class="css">margin-box</span> is <a class="css" data-link-type="maybe" href="#valdef-clip-path-stroke-box" id="ref-for-valdef-clip-path-stroke-box">stroke-box</a>.</p> <p>For elements with associated CSS layout box, the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value①">used value</a> for <a class="css" data-link-type="maybe" href="#valdef-clip-path-fill-box" id="ref-for-valdef-clip-path-fill-box①">fill-box</a> is <a class="css" data-link-type="maybe" href="#valdef-mask-clip-content-box" id="ref-for-valdef-mask-clip-content-box①">content-box</a> and for <a class="css" data-link-type="maybe" href="#valdef-clip-path-stroke-box" id="ref-for-valdef-clip-path-stroke-box①">stroke-box</a> and <a class="css" data-link-type="maybe" href="#valdef-clip-path-view-box" id="ref-for-valdef-clip-path-view-box">view-box</a> is <a class="css" data-link-type="maybe" href="#valdef-mask-clip-border-box" id="ref-for-valdef-mask-clip-border-box②">border-box</a>.</p> - <p>A computed value of other than <span class="css">none</span> results in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext①">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does for values other than <span class="css">1</span>.</p> + <p>A computed value of other than <span class="css">none</span> results in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43①">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does for values other than <span class="css">1</span>.</p> <p>If the URI reference is not valid (e.g it points to an object that doesn’t exist or the object is not a <a data-link-type="element" href="#elementdef-clippath" id="ref-for-elementdef-clippath③">clipPath</a> element), no clipping is applied.</p> <div class="example" id="example-b11e2c6d"> <a class="self-link" href="#example-b11e2c6d"></a> This example demonstrates the use of the basic shape <a class="production css" data-link-type="function" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-polygon" id="ref-for-funcdef-basic-shape-polygon">&lt;polygon()></a> as clipping path. Each space separated length pair represents one point of the polygon. The visualized clipping path can be seen in the <a href="#clipping">introduction</a>. @@ -1464,7 +1460,7 @@ <h3 class="heading settled" data-level="7.1" id="the-mask-image"><span class="se <dd data-md> <p>A value of <span class="css">none</span> counts as a transparent black image layer.</p> </dl> - <p>A computed value of other than <span class="css">none</span> results in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext②">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity②">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does for values other than <span class="css">1</span>.</p> + <p>A computed value of other than <span class="css">none</span> results in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43②">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity②">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does for values other than <span class="css">1</span>.</p> <p>A mask reference that is an empty image (zero width or zero height), that fails to download, is not a reference to an <a data-link-type="element" href="#elementdef-mask" id="ref-for-elementdef-mask④">mask</a> element, is non-existent, or that cannot be displayed (e.g. because it is not in a supported image format) still counts as an image layer of transparent black.</p> <p>See the section <a href="#MaskValues">“Mask processing”</a> for how to process a <a data-link-type="dfn" href="#mask-layer-image" id="ref-for-mask-layer-image①">mask layer image</a>.</p> <p class="note" role="note"><span class="marker">Note:</span> A value of <span class="css">none</span> in a list of <a class="production css" data-link-type="type" href="#typedef-mask-reference" id="ref-for-typedef-mask-reference①">&lt;mask-reference></a>s may influence the masking operation depending on the used compositing operator specified by <a class="property css" data-link-type="property" href="#propdef-mask-composite" id="ref-for-propdef-mask-composite">mask-composite</a>.</p> @@ -1973,7 +1969,7 @@ <h3 class="heading settled" data-level="7.9" id="the-mask"><span class="secno">7 <p>The <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value④">used value</a> of the properties <a class="property css" data-link-type="property" href="#propdef-mask-repeat" id="ref-for-propdef-mask-repeat②">mask-repeat</a>, <a class="property css" data-link-type="property" href="#propdef-mask-position" id="ref-for-propdef-mask-position④">mask-position</a>, <a class="property css" data-link-type="property" href="#propdef-mask-clip" id="ref-for-propdef-mask-clip⑧">mask-clip</a>, <a class="property css" data-link-type="property" href="#propdef-mask-origin" id="ref-for-propdef-mask-origin⑧">mask-origin</a> and <a class="property css" data-link-type="property" href="#propdef-mask-size" id="ref-for-propdef-mask-size③">mask-size</a> must have no effect if <a class="production css" data-link-type="type" href="#typedef-mask-reference" id="ref-for-typedef-mask-reference⑦">&lt;mask-reference></a> references a <a data-link-type="element" href="#elementdef-mask" id="ref-for-elementdef-mask①①">mask</a> element. In this case the element defines position, sizing and clipping of the <a data-link-type="dfn" href="#mask-layer-image" id="ref-for-mask-layer-image①⑤">mask layer image</a>.</p> <p>The <a class="property css" data-link-type="property" href="#propdef-mask" id="ref-for-propdef-mask③">mask</a> shorthand also resets <a class="property css" data-link-type="property" href="#propdef-mask-border" id="ref-for-propdef-mask-border②">mask-border</a> to its initial value. It is therefore recommended that authors use the <span class="property" id="ref-for-propdef-mask④">mask</span> shorthand, rather than other shorthands or the individual properties, to override any mask settings earlier in the cascade. This will ensure that <span class="property" id="ref-for-propdef-mask-border③">mask-border</span> has also been reset to allow the new styles to take effect.</p> <h3 class="heading settled" data-level="7.10" id="the-mask-image-rendering-model"><span class="secno">7.10. </span><span class="content">The Mask Image Rendering Model</span><a class="self-link" href="#the-mask-image-rendering-model"></a></h3> - <p>The application of the <a class="property css" data-link-type="property" href="#propdef-mask-image" id="ref-for-propdef-mask-image①①">mask-image</a> property with a value other than <span class="css">none</span> to an element formatted with the CSS box model establishes a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext③">stacking context</a> in the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity③">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does, and all the element’s descendants are rendered together as a group with the masking applied to the group as a whole.</p> + <p>The application of the <a class="property css" data-link-type="property" href="#propdef-mask-image" id="ref-for-propdef-mask-image①①">mask-image</a> property with a value other than <span class="css">none</span> to an element formatted with the CSS box model establishes a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43③">stacking context</a> in the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity③">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does, and all the element’s descendants are rendered together as a group with the masking applied to the group as a whole.</p> <p>The <a class="property css" data-link-type="property" href="#propdef-mask-image" id="ref-for-propdef-mask-image①②">mask-image</a> property has no effect on the geometry or hit-testing of any element’s CSS boxes.</p> <p>The <a class="property css" data-link-type="property" href="#propdef-mask" id="ref-for-propdef-mask⑤">mask</a> property is a <a href="https://www.w3.org/TR/2011/REC-SVG11-20110816/intro.html#TermPresentationAttribute">presentation attribute</a> for SVG elements.</p> <h4 class="heading settled" data-level="7.10.1" id="MaskValues"><span class="secno">7.10.1. </span><span class="content">Mask processing</span><a class="self-link" href="#MaskValues"></a></h4> @@ -2064,7 +2060,7 @@ <h3 class="heading settled" data-level="8.1" id="the-mask-border-source"><span c <p>Specifies an image to be used as <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="mask-border-image">mask border image</dfn>.</p> <p>An image that is an empty image (zero width or zero height), that fails to download, is non-existent, or that cannot be displayed (e.g. because it is not in a supported image format) is ignored. It still counts as an <a data-link-type="dfn" href="#mask-border-image" id="ref-for-mask-border-image④">mask border image</a> but does not mask the element.</p> <p>See “<a href="#MaskValues">Mask processing</a>” on how to process the <a data-link-type="dfn" href="#mask-border-image" id="ref-for-mask-border-image⑤">mask border image</a>.</p> - <p>A computed value of other than <span class="css">none</span> results in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext④">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity④">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does for values other than <span class="css">1</span>.</p> + <p>A computed value of other than <span class="css">none</span> results in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43④">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity④">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does for values other than <span class="css">1</span>.</p> <p><a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source⑦">mask-border-source</a> and <a class="property css" data-link-type="property" href="#propdef-mask-image" id="ref-for-propdef-mask-image①④">mask-image</a> can be specified independent of each other. If both properties have a value other than <span class="css">none</span>, the element is masked by both masking operations one after the other.</p> <p class="note" role="note"><span class="marker">Note:</span> It does not matter if <a class="property css" data-link-type="property" href="#propdef-mask-image" id="ref-for-propdef-mask-image①⑤">mask-image</a> is applied to the element before or after <a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source⑧">mask-border-source</a>. Both operation orders result in the same rendering.</p> <h3 class="heading settled" data-level="8.2" id="the-mask-border-mode"><span class="secno">8.2. </span><span class="content">Mask Border Image Interpretation: the <a class="property css" data-link-type="property" href="#propdef-mask-border-mode" id="ref-for-propdef-mask-border-mode">mask-border-mode</a> property</span><a class="self-link" href="#the-mask-border-mode"></a></h3> @@ -2299,7 +2295,7 @@ <h3 class="heading settled" data-level="8.7" id="the-mask-border"><span class="s <p class="note" role="note"><span class="marker">Note:</span> The <a class="property css" data-link-type="property" href="#propdef-mask" id="ref-for-propdef-mask⑥">mask</a> shorthand resets the properties <a class="property css" data-link-type="property" href="#propdef-mask-border" id="ref-for-propdef-mask-border⑧">mask-border</a>, <a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source①②">mask-border-source</a>, <a class="property css" data-link-type="property" href="#propdef-mask-border-slice" id="ref-for-propdef-mask-border-slice③">mask-border-slice</a>, <a class="property css" data-link-type="property" href="#propdef-mask-border-width" id="ref-for-propdef-mask-border-width④">mask-border-width</a>, <a class="property css" data-link-type="property" href="#propdef-mask-border-outset" id="ref-for-propdef-mask-border-outset⑤">mask-border-outset</a>, <a class="property css" data-link-type="property" href="#propdef-mask-border-repeat" id="ref-for-propdef-mask-border-repeat③">mask-border-repeat</a> and <a class="property css" data-link-type="property" href="#propdef-mask-border-mode" id="ref-for-propdef-mask-border-mode④">mask-border-mode</a>.</p> <h3 class="heading settled" data-level="8.8" id="masking-with-the-mask-border-image"><span class="secno">8.8. </span><span class="content">Masking with the mask border image</span><a class="self-link" href="#masking-with-the-mask-border-image"></a></h3> <p>After the <a data-link-type="dfn" href="#mask-border-image" id="ref-for-mask-border-image①④">mask border image</a> given by <a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source①③">mask-border-source</a> is sliced by the <a class="property css" data-link-type="property" href="#propdef-mask-border-slice" id="ref-for-propdef-mask-border-slice④">mask-border-slice</a> values, the resulting nine images are scaled, positioned, and tiled into their corresponding <span id="ref-for-mask-border-image①⑤">mask border image</span> regions in four steps as described in the section <a href="https://www.w3.org/TR/css3-background/#border-image-process">Drawing the Border Image</a> <a data-link-type="biblio" href="#biblio-css3bg" title="CSS Backgrounds and Borders Module Level 3">[CSS3BG]</a>.</p> - <p>The application of the <a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source①④">mask-border-source</a> property to an element formatted with the CSS box model establishes a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext⑤">stacking context</a> in the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity⑤">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does, and all the element’s descendants are rendered together as a group with the masking applied to the group as a whole.</p> + <p>The application of the <a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source①④">mask-border-source</a> property to an element formatted with the CSS box model establishes a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43⑤">stacking context</a> in the same way that CSS <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-opacity" id="ref-for-propdef-opacity⑤">opacity</a> <a data-link-type="biblio" href="#biblio-css3color" title="CSS Color Module Level 3">[CSS3COLOR]</a> does, and all the element’s descendants are rendered together as a group with the masking applied to the group as a whole.</p> <p>The <a class="property css" data-link-type="property" href="#propdef-mask-border-source" id="ref-for-propdef-mask-border-source①⑤">mask-border-source</a> property has no effect on the geometry or hit-testing of any element’s CSS boxes.</p> <h2 class="heading settled" data-level="9" id="svg-masks"><span class="secno">9. </span><span class="content">SVG Mask Sources</span><a class="self-link" href="#svg-masks"></a></h2> <h3 class="heading settled" data-level="9.1" id="MaskElement"><span class="secno">9.1. </span><span class="content">The <a data-link-type="element" href="#elementdef-mask" id="ref-for-elementdef-mask①③">mask</a> element</span><a class="self-link" href="#MaskElement"></a></h3> @@ -3159,6 +3155,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="fcbf3baa">glyph-orientation-vertical</span> <li><span class="dfn-paneled" id="385326d7">writing-mode</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[CSS22]</a> defines the following terms: <ul> @@ -3262,7 +3263,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="abbd4058">rect</span> <li><span class="dfn-paneled" id="21000c7a">script</span> <li><span class="dfn-paneled" id="350c7ab8">shape-rendering</span> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> <li><span class="dfn-paneled" id="37328630">stop-color</span> <li><span class="dfn-paneled" id="88bdddf4">stop-opacity</span> <li><span class="dfn-paneled" id="66a959ce">stroke</span> @@ -3296,31 +3296,31 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compositing-1">[COMPOSITING-1] - <dd>Rik Cabanier; Nikos Andronikos. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> + <dd>Chris Harrelson. <a href="https://drafts.fxtf.org/compositing-1/"><cite>Compositing and Blending Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/compositing-1/">https://drafts.fxtf.org/compositing-1/</a> <dt id="biblio-css-break-4">[CSS-BREAK-4] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-break-4/"><cite>CSS Fragmentation Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-break-4/">https://drafts.csswg.org/css-break-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-shapes">[CSS-SHAPES] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-shapes/"><cite>CSS Shapes Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-shapes/">https://drafts.csswg.org/css-shapes/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] @@ -3340,7 +3340,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-transforms">[CSS3-TRANSFORMS] <dd>Simon Fraser; et al. <a href="https://drafts.csswg.org/css-transforms/"><cite>CSS Transforms Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-transforms/">https://drafts.csswg.org/css-transforms/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css3val">[CSS3VAL] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-3/"><cite>CSS Values and Units Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-3/">https://drafts.csswg.org/css-values-3/</a> <dt id="biblio-fetch">[FETCH] @@ -3354,7 +3354,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-svg-animations">[SVG-ANIMATIONS] - <dd>SVG Animations URL: <a href="https://svgwg.org/specs/animations/">https://svgwg.org/specs/animations/</a> + <dd><a href="https://svgwg.org/specs/animations/"><cite>SVG Animations Level 2</cite></a>. Editor's Draft. URL: <a href="https://svgwg.org/specs/animations/">https://svgwg.org/specs/animations/</a> <dt id="biblio-svg11">[SVG11] <dd>Erik Dahlström; et al. <a href="https://www.w3.org/TR/SVG11/"><cite>Scalable Vector Graphics (SVG) 1.1 (Second Edition)</cite></a>. 16 August 2011. REC. URL: <a href="https://www.w3.org/TR/SVG11/">https://www.w3.org/TR/SVG11/</a> <dt id="biblio-svg2">[SVG2] @@ -3649,6 +3649,38 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> Firefox disables rendering of elements referencing clipPaths with violated content model. No browser ignores clipPath on use with indirect reference. <a href="https://github.com/w3c/fxtf-drafts/issues/17">[Issue #17]</a> <a class="issue-return" href="#issue-d0c561ed" title="Jump to section">↵</a></div> <div class="issue"> Define raw geometry with regards to CSS properties that affect it. Especially on text. <a href="https://github.com/w3c/fxtf-drafts/issues/170">[Issue #170]</a> <a class="issue-return" href="#issue-1eaffdcc" title="Jump to section">↵</a></div> </div> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgclippathelement-clippathunits"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement/clipPathUnits" title="The read-only clipPathUnits property of the SVGClipPathElement interface reflects the clipPathUnits attribute of a <clipPath> element which defines the coordinate system to use for the content of the element.">SVGClipPathElement/clipPathUnits</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgclippathelement-transform"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement/transform" title="The read-only transform property of the SVGClipPathElement interface reflects the transform attribute of a <clipPath> element, that is a list of transformations applied to the element.">SVGClipPathElement/transform</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="InterfaceSVGClipPathElement"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3665,6 +3697,102 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgmaskelement-height"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/height" title="The read-only height property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the height attribute of the <marker>.">SVGMaskElement/height</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgmaskelement-maskcontentunits"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/maskContentUnits" title="The read-only maskContentUnits property of the SVGMaskElement interface reflects the maskContentUnits attribute. It indicates which coordinate system to use for the contents of the <mask> element.">SVGMaskElement/maskContentUnits</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgmaskelement-maskunits"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/maskUnits" title="The read-only maskUnits property of the SVGMaskElement interface reflects the maskUnits attribute of a <mask> element which defines the coordinate system to use for the mask of the element.">SVGMaskElement/maskUnits</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgmaskelement-width"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/width" title="The read-only width property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the width attribute of the <marker>.">SVGMaskElement/width</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgmaskelement-x"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/x" title="The read-only x property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the x attribute of the <mask>. It represents the x-axis coordinate of the top-left corner of the masking area.">SVGMaskElement/x</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-svgmaskelement-y"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement/y" title="The read-only y property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the y attribute of the <marker>. It represents the y-axis coordinate of the top-left corner of the masking area.">SVGMaskElement/y</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="InterfaceSVGMaskElement"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -3999,19 +4127,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>Yes</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>3+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="element-attrdef-mask-maskcontentunits"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/maskContentUnits" title="The maskContentUnits attribute indicates which coordinate system to use for the contents of the <mask> element.">Attribute/maskContentUnits</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>?</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>?</span></span> <hr> @@ -4020,14 +4148,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="element-attrdef-mask-maskunits"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/maskUnits" title="The maskUnits attribute indicates which coordinate system to use for the geometry properties of the <mask> element.">Attribute/maskUnits</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>?</span></span><span class="safari no"><span>Safari</span><span>?</span></span><span class="chrome no"><span>Chrome</span><span>?</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>?</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>?</span></span> <hr> @@ -4041,9 +4169,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <p><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask" title="The <mask> element defines an alpha mask for compositing the current object into the background. A mask is used/referenced using the mask property.">Element/mask</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>Yes</span></span><span class="safari yes"><span>Safari</span><span>Yes</span></span><span class="chrome yes"><span>Chrome</span><span>Yes</span></span> + <span class="firefox yes"><span>Firefox</span><span>3+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>Yes</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>Yes</span></span> <hr> @@ -4281,7 +4409,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "385326d7": {"dfnID":"385326d7","dfnText":"writing-mode","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-writing-mode"}],"title":"6.1. The clipPath element"},{"refs":[{"id":"ref-for-propdef-writing-mode\u2460"}],"title":"9.1. The mask element"}],"url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, "3a3bdad5": {"dfnID":"3a3bdad5","dfnText":"border-image-repeat","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image-repeat"}],"title":"8.6. Mask Border Image Tiling: the mask-border-repeat property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image-repeat"}, "3b1682d5": {"dfnID":"3b1682d5","dfnText":"background-origin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-origin"}],"title":"7.6. Positioning Area: the mask-origin property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-origin"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"2. Module interactions"},{"refs":[{"id":"ref-for-TermStackingContext\u2460"}],"title":"5.1. Clipping Shape: the clip-path property"},{"refs":[{"id":"ref-for-TermStackingContext\u2461"}],"title":"7.1. Mask Image Source: the mask-image property"},{"refs":[{"id":"ref-for-TermStackingContext\u2462"}],"title":"7.10. The Mask Image Rendering Model"},{"refs":[{"id":"ref-for-TermStackingContext\u2463"}],"title":"8.1. Mask Border Image Source: the mask-border-source property"},{"refs":[{"id":"ref-for-TermStackingContext\u2464"}],"title":"8.8. Masking with the mask border image"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "4299a926": {"dfnID":"4299a926","dfnText":"svg","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-svg"}],"title":"9.1. The mask element"}],"url":"https://svgwg.org/svg2-draft/struct.html#elementdef-svg"}, "44c5f27a": {"dfnID":"44c5f27a","dfnText":"metadata","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-metadata"}],"title":"6.1. The clipPath element"},{"refs":[{"id":"ref-for-elementdef-metadata\u2460"}],"title":"9.1. The mask element"}],"url":"https://svgwg.org/svg2-draft/struct.html#elementdef-metadata"}, "4aadd289": {"dfnID":"4aadd289","dfnText":"flood-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flood-color"}],"title":"6.1. The clipPath element"},{"refs":[{"id":"ref-for-propdef-flood-color\u2460"}],"title":"9.1. The mask element"}],"url":"https://drafts.fxtf.org/filter-effects-1/#propdef-flood-color"}, @@ -4345,6 +4472,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "a29689eb": {"dfnID":"a29689eb","dfnText":"image-rendering","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-image-rendering"}],"title":"6.1. The clipPath element"},{"refs":[{"id":"ref-for-propdef-image-rendering\u2460"}],"title":"9.1. The mask element"}],"url":"https://drafts.csswg.org/css-images-3/#propdef-image-rendering"}, "a4cd8a8d": {"dfnID":"a4cd8a8d","dfnText":"border-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-image"}],"title":"8. Border-Box Mask"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-image"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"5.1. Clipping Shape: the clip-path property"},{"refs":[{"id":"ref-for-used-value\u2461"},{"id":"ref-for-used-value\u2462"}],"title":"7.5. Masking Area: the mask-clip property"},{"refs":[{"id":"ref-for-used-value\u2463"}],"title":"7.9. Mask Shorthand: the mask property"},{"refs":[{"id":"ref-for-used-value\u2464"}],"title":"Appendix A: The deprecated clip property"},{"refs":[{"id":"ref-for-used-value\u2465"}],"title":"Appendix B: Compute stroke bounding box"},{"refs":[{"id":"ref-for-used-value\u2466"}],"title":"Changes since last publication"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"2. Module interactions"},{"refs":[{"id":"ref-for-x43\u2460"}],"title":"5.1. Clipping Shape: the clip-path property"},{"refs":[{"id":"ref-for-x43\u2461"}],"title":"7.1. Mask Image Source: the mask-image property"},{"refs":[{"id":"ref-for-x43\u2462"}],"title":"7.10. The Mask Image Rendering Model"},{"refs":[{"id":"ref-for-x43\u2463"}],"title":"8.1. Mask Border Image Source: the mask-border-source property"},{"refs":[{"id":"ref-for-x43\u2464"}],"title":"8.8. Masking with the mask border image"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "a679b087": {"dfnID":"a679b087","dfnText":"<repeat-style>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-repeat-style"}],"title":"7.3. Tiling Mask Images: the mask-repeat property"},{"refs":[{"id":"ref-for-typedef-repeat-style\u2460"}],"title":"7.9. Mask Shorthand: the mask property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-repeat-style"}, "a82a381d": {"dfnID":"a82a381d","dfnText":"view","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-view"}],"title":"9.1. The mask element"}],"url":"https://svgwg.org/svg2-draft/linking.html#elementdef-view"}, "a8f4fbe7": {"dfnID":"a8f4fbe7","dfnText":"SVGAnimatedTransformList","external":true,"refSections":[{"refs":[{"id":"ref-for-InterfaceSVGAnimatedTransformList"},{"id":"ref-for-InterfaceSVGAnimatedTransformList\u2460"}],"title":"Interface SVGClipPathElement"}],"url":"https://svgwg.org/svg2-draft/coords.html#InterfaceSVGAnimatedTransformList"}, @@ -4882,9 +5010,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { -"#typedef-geometry-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", -"https://drafts.csswg.org/css-shapes-1/#typedef-basic-shape": "Expands to: circle() | ellipse() | inset() | path() | polygon() | rect() | reference box | xywh()", -"https://drafts.csswg.org/css-shapes-1/#typedef-shape-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", +"#typedef-geometry-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | view-box", +"https://drafts.csswg.org/css-shapes-1/#typedef-basic-shape": "Expands to: circle() | ellipse() | equivalent path | inset() | path() | polygon() | rect() | reference box | xywh()", +"https://drafts.csswg.org/css-shapes-1/#typedef-shape-box": "Expands to: border-box | content-box | margin-box | padding-box", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#url-value": "Expands to: local url flag", }; @@ -5174,7 +5302,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"pattern","type":"element","url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern"}, "https://svgwg.org/svg2-draft/pservers.html#elementdef-radialGradient": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"radialgradient","type":"element","url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-radialGradient"}, "https://svgwg.org/svg2-draft/render.html#TermNeverRenderedElement": {"export":true,"for_":[],"level":"","normative":true,"shortname":"svg2","spec":"svg2","status":"anchor-block","text":"never-rendered element","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermNeverRenderedElement"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "https://svgwg.org/svg2-draft/shapes.html#basic-shape": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"basic shape","type":"dfn","url":"https://svgwg.org/svg2-draft/shapes.html#basic-shape"}, "https://svgwg.org/svg2-draft/shapes.html#elementdef-circle": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"circle","type":"element","url":"https://svgwg.org/svg2-draft/shapes.html#elementdef-circle"}, "https://svgwg.org/svg2-draft/shapes.html#elementdef-ellipse": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"ellipse","type":"element","url":"https://svgwg.org/svg2-draft/shapes.html#elementdef-ellipse"}, @@ -5202,6 +5329,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"SVGElement","type":"interface","url":"https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement"}, "https://svgwg.org/svg2-draft/types.html#InterfaceSVGUnitTypes": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"SVGUnitTypes","type":"interface","url":"https://svgwg.org/svg2-draft/types.html#InterfaceSVGUnitTypes"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "https://www.w3.org/TR/SVG2/painting.html#ColorRenderingProperty": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"color-rendering","type":"property","url":"https://www.w3.org/TR/SVG2/painting.html#ColorRenderingProperty"}, }; diff --git a/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.console.txt b/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.console.txt index 3bbdf07ae0..74cafa94bc 100644 --- a/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.console.txt @@ -1,9 +1,6 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINT: Line 1707's indent contains tabs after spaces. LINT: Line 1811's indent contains tabs after spaces. LINT: Line 2018's indent contains tabs after spaces. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 202: Image doesn't exist, so I couldn't determine its width and height: 'images/fillrule-nonzero.svg' LINE 219: Image doesn't exist, so I couldn't determine its width and height: 'images/fillrule-evenodd.svg' LINE 643: Image doesn't exist, so I couldn't determine its width and height: 'images/stroke-align-open-path.svg' diff --git a/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.html b/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.html index 760d135c16..0559d9e939 100644 --- a/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.html +++ b/tests/github/w3c/fxtf-drafts/fill-stroke/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>CSS Fill and Stroke Module Level 3</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="exploring" name="csswg-work-status"> - <meta content="WD" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> + <title>CSS Fill and Stroke Module Level 3</title> + <meta content="FPWD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> <link href="https://www.w3.org/TR/fill-stroke-3/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -866,7 +862,7 @@ <h1 class="p-name no-ref" id="title">CSS Fill and Stroke Module Level 3</h1> <div data-fill-with="spec-metadata"> <dl> <dt>This version: - <dd><a class="u-url" href="https://www.w3.org/TR/1970/WD-fill-stroke-3-19700101/">https://www.w3.org/TR/1970/WD-fill-stroke-3-19700101/</a> + <dd><a class="u-url" href="https://www.w3.org/TR/1970/FPWD-fill-stroke-3-19700101/">https://www.w3.org/TR/1970/FPWD-fill-stroke-3-19700101/</a> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/fill-stroke-3/">https://www.w3.org/TR/fill-stroke-3/</a> <dt>Editor's Draft: @@ -886,14 +882,14 @@ <h1 class="p-name no-ref" id="title">CSS Fill and Stroke Module Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This module contains the features of CSS relating to filling and stroking text and SVG shapes.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p><em>This section describes the status of this document at the time of its publication. A list of @@ -911,13 +907,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-fxtf-archive/">archived</a>, and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p>This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"> W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/"> W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual - knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section + knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>.</p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>.</p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1049,7 +1045,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s <h2 class="heading settled" data-level="2" id="paint"><span class="secno">2. </span><span class="content">Paint</span><a class="self-link" href="#paint"></a></h2> <p>Paint is what makes abstract geometries visible. It consists of colors, patterns, images, gradients, and other 2D graphics. - The <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color">&lt;color></a> type represents 0-dimensional paint; + The <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color">&lt;color></a> type represents 0-dimensional paint; it is defined in <a data-link-type="biblio" href="#biblio-css3-color" title="CSS Color Module Level 3">[CSS3-COLOR]</a>. The <a class="production css" data-link-type="type" href="#typedef-paint" id="ref-for-typedef-paint">&lt;paint></a> type represents 2-dimensional paint, and its syntax is:</p> @@ -1236,7 +1232,7 @@ <h4 class="heading settled" data-level="3.3.1" id="fill-color"><span class="secn <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-fill-color">fill-color</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color①">&lt;color></a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>currentcolor @@ -2009,7 +2005,7 @@ <h4 class="heading settled" data-level="4.2.5" id="stroke-miterlimit"><span clas <dd> Specifies the limit on the join’s size as a ratio of its <dfn class="dfn-paneled" data-dfn-for="/" data-dfn-type="dfn" data-lt="corner diagonal" data-noexport id="--corner-diagonal">diagonal</dfn> to the <a class="property css" data-link-type="property" href="#propdef-stroke-width" id="ref-for-propdef-stroke-width③">stroke-width</a>. - Values less than 1 are invalid (and make the declaration <a data-link-type="dfn" href="https://w3c.github.io/rdf-semantics/spec/#dfn-invalid" id="ref-for-dfn-invalid">invalid</a>). + Values less than 1 are invalid (and make the declaration <a data-link-type="dfn" href="https://www.w3.org/TR/css-syntax-3/#css-invalid" id="ref-for-css-invalid">invalid</a>). <p>For a <a class="css" data-link-type="maybe" href="#valdef-stroke-linejoin-miter" id="ref-for-valdef-stroke-linejoin-miter②">miter</a> linejoin, the length of the <a data-link-type="dfn" href="#--corner-diagonal" id="ref-for---corner-diagonal①">diagonal</a> is calculated from the angle between the two segments @@ -2361,7 +2357,7 @@ <h4 class="heading settled" data-level="4.4.1" id="stroke-color"><span class="se <td><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef-stroke-color">stroke-color</dfn> <tr class="value"> <th><a href="https://www.w3.org/TR/css-values/#value-defs">Value:</a> - <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-4/#typedef-color" id="ref-for-typedef-color②">&lt;color></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-comma" id="ref-for-mult-comma⑥">#</a> + <td class="prod"><a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-color-5/#typedef-color" id="ref-for-typedef-color②">&lt;color></a><a data-link-type="grammar" href="https://www.w3.org/TR/css-values-4/#mult-comma" id="ref-for-mult-comma⑥">#</a> <tr> <th><a href="https://www.w3.org/TR/css-cascade/#initial-values">Initial:</a> <td>transparent @@ -3725,11 +3721,15 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="329ecc08">&lt;color></span> <li><span class="dfn-paneled" id="bcdf9b19">color</span> <li><span class="dfn-paneled" id="3b7558dc">opacity</span> <li><span class="dfn-paneled" id="96e27c16">transparent</span> </ul> + <li> + <a data-link-type="biblio">[CSS-COLOR-5]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="d04b6986">&lt;color></span> + </ul> <li> <a data-link-type="biblio">[CSS-DISPLAY-3]</a> defines the following terms: <ul> @@ -3742,6 +3742,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3146b6ae">invalid image</span> <li><span class="dfn-paneled" id="fc030bc1">valid image</span> </ul> + <li> + <a data-link-type="biblio">[CSS-SYNTAX-3]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="e7c3b4f7">invalid</span> + </ul> <li> <a data-link-type="biblio">[CSS-TEXT-DECOR-4]</a> defines the following terms: <ul> @@ -3781,11 +3786,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e316431d">background-repeat</span> <li><span class="dfn-paneled" id="dbdacf0d">background-size</span> </ul> - <li> - <a data-link-type="biblio">[RDF12-SEMANTICS]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="f61b0d8e">invalid</span> - </ul> <li> <a data-link-type="biblio">[SVG2]</a> defines the following terms: <ul> @@ -3814,31 +3814,33 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. 13 January 2022. CR. URL: <a href="https://www.w3.org/TR/css-cascade-5/">https://www.w3.org/TR/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 1 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://www.w3.org/TR/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. 13 February 2024. CR. URL: <a href="https://www.w3.org/TR/css-color-4/">https://www.w3.org/TR/css-color-4/</a> + <dt id="biblio-css-color-5">[CSS-COLOR-5] + <dd>Chris Lilley; et al. <a href="https://www.w3.org/TR/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. 29 February 2024. WD. URL: <a href="https://www.w3.org/TR/css-color-5/">https://www.w3.org/TR/css-color-5/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 18 November 2022. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://www.w3.org/TR/css-display-3/"><cite>CSS Display Module Level 3</cite></a>. 30 March 2023. CR. URL: <a href="https://www.w3.org/TR/css-display-3/">https://www.w3.org/TR/css-display-3/</a> <dt id="biblio-css-images-4">[CSS-IMAGES-4] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. 13 April 2017. WD. URL: <a href="https://www.w3.org/TR/css-images-4/">https://www.w3.org/TR/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. 17 February 2023. WD. URL: <a href="https://www.w3.org/TR/css-images-4/">https://www.w3.org/TR/css-images-4/</a> + <dt id="biblio-css-syntax-3">[CSS-SYNTAX-3] + <dd>Tab Atkins Jr.; Simon Sapin. <a href="https://www.w3.org/TR/css-syntax-3/"><cite>CSS Syntax Module Level 3</cite></a>. 24 December 2021. CR. URL: <a href="https://www.w3.org/TR/css-syntax-3/">https://www.w3.org/TR/css-syntax-3/</a> <dt id="biblio-css-text-decor-3">[CSS-TEXT-DECOR-3] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-text-decor-3/"><cite>CSS Text Decoration Module Level 3</cite></a>. 5 May 2022. CR. URL: <a href="https://www.w3.org/TR/css-text-decor-3/">https://www.w3.org/TR/css-text-decor-3/</a> <dt id="biblio-css-text-decor-4">[CSS-TEXT-DECOR-4] <dd>Elika Etemad; Koji Ishii. <a href="https://www.w3.org/TR/css-text-decor-4/"><cite>CSS Text Decoration Module Level 4</cite></a>. 4 May 2022. WD. URL: <a href="https://www.w3.org/TR/css-text-decor-4/">https://www.w3.org/TR/css-text-decor-4/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 19 October 2022. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://www.w3.org/TR/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. 12 March 2024. WD. URL: <a href="https://www.w3.org/TR/css-values-4/">https://www.w3.org/TR/css-values-4/</a> <dt id="biblio-css3-color">[CSS3-COLOR] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://www.w3.org/TR/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. 18 January 2022. REC. URL: <a href="https://www.w3.org/TR/css-color-3/">https://www.w3.org/TR/css-color-3/</a> <dt id="biblio-css3-images">[CSS3-IMAGES] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 17 December 2020. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://www.w3.org/TR/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. 18 December 2023. CR. URL: <a href="https://www.w3.org/TR/css-images-3/">https://www.w3.org/TR/css-images-3/</a> <dt id="biblio-css3bg">[CSS3BG] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 26 July 2021. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> - <dt id="biblio-rdf12-semantics">[RDF12-SEMANTICS] - <dd>RDF 1.2 Semantics URL: <a href="https://w3c.github.io/rdf-semantics/spec/">https://w3c.github.io/rdf-semantics/spec/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://www.w3.org/TR/css-backgrounds-3/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. 11 March 2024. CR. URL: <a href="https://www.w3.org/TR/css-backgrounds-3/">https://www.w3.org/TR/css-backgrounds-3/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-svg2">[SVG2] <dd>Amelia Bellamy-Royds; et al. <a href="https://www.w3.org/TR/SVG2/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. 4 October 2018. CR. URL: <a href="https://www.w3.org/TR/SVG2/">https://www.w3.org/TR/SVG2/</a> <dt id="biblio-web-animations-1">[WEB-ANIMATIONS-1] - <dd>Brian Birtles; et al. <a href="https://www.w3.org/TR/web-animations-1/"><cite>Web Animations</cite></a>. 8 September 2022. WD. URL: <a href="https://www.w3.org/TR/web-animations-1/">https://www.w3.org/TR/web-animations-1/</a> + <dd>Brian Birtles; et al. <a href="https://www.w3.org/TR/web-animations-1/"><cite>Web Animations</cite></a>. 5 June 2023. WD. URL: <a href="https://www.w3.org/TR/web-animations-1/">https://www.w3.org/TR/web-animations-1/</a> </dl> <h2 class="no-num no-ref heading settled" id="property-index"><span class="content">Property Index</span><a class="self-link" href="#property-index"></a></h2> <div class="big-element-wrapper"> @@ -4535,7 +4537,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "--corner-diagonal": {"dfnID":"--corner-diagonal","dfnText":"diagonal","external":false,"refSections":[{"refs":[{"id":"ref-for---corner-diagonal"}],"title":"4.2.4. Stroke Corner Shapes: the stroke-linejoin property"},{"refs":[{"id":"ref-for---corner-diagonal\u2460"},{"id":"ref-for---corner-diagonal\u2461"}],"title":"4.2.5. Stroke Corner Limits: the stroke-miterlimit property"}],"url":"#--corner-diagonal"}, "2754893b": {"dfnID":"2754893b","dfnText":"background-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-color"}],"title":"3.3.1. Fill Color: the fill-color property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-background-color"}, "3146b6ae": {"dfnID":"3146b6ae","dfnText":"invalid image","external":true,"refSections":[{"refs":[{"id":"ref-for-invalid-image"},{"id":"ref-for-invalid-image\u2460"}],"title":"3.3.1. Fill Color: the fill-color property"},{"refs":[{"id":"ref-for-invalid-image\u2461"}],"title":"3.3.7. Fill Shorthand: the fill property"},{"refs":[{"id":"ref-for-invalid-image\u2462"}],"title":"4.4.1. Stroke Color: the stroke-color property"}],"url":"https://www.w3.org/TR/css-images-4/#invalid-image"}, -"329ecc08": {"dfnID":"329ecc08","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2. Paint"},{"refs":[{"id":"ref-for-typedef-color\u2460"}],"title":"3.3.1. Fill Color: the fill-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"}],"title":"4.4.1. Stroke Color: the stroke-color property"}],"url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "35bf32f2": {"dfnID":"35bf32f2","dfnText":"<image>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-image"},{"id":"ref-for-typedef-image\u2460"}],"title":"2. Paint"},{"refs":[{"id":"ref-for-typedef-image\u2461"}],"title":"3.3.2. Fill Image Sources: the fill-image property"},{"refs":[{"id":"ref-for-typedef-image\u2462"}],"title":"4.4.2. Stroke Image Sources: the stroke-image property"}],"url":"https://www.w3.org/TR/css-images-3/#typedef-image"}, "362f2602": {"dfnID":"362f2602","dfnText":"<repeat-style>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-repeat-style"}],"title":"3.3.6. Tiling Fill Images: the fill-repeat property"},{"refs":[{"id":"ref-for-typedef-repeat-style\u2460"}],"title":"4.4.6. Tiling Stroke Images: the stroke-repeat property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#typedef-repeat-style"}, "3b7558dc": {"dfnID":"3b7558dc","dfnText":"opacity","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-opacity"},{"id":"ref-for-propdef-opacity\u2460"}],"title":"3.4.1. Fill Opacity: the fill-opacity property"},{"refs":[{"id":"ref-for-propdef-opacity\u2461"},{"id":"ref-for-propdef-opacity\u2462"}],"title":"4.5.1. Stroke Opacity: the stroke-opacity property"}],"url":"https://www.w3.org/TR/css-color-4/#propdef-opacity"}, @@ -4566,6 +4567,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "c297b070": {"dfnID":"c297b070","dfnText":"#","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-comma"}],"title":"3.3.2. Fill Image Sources: the fill-image property"},{"refs":[{"id":"ref-for-mult-comma\u2460"}],"title":"3.3.4. Positioning Fill Images: the fill-position property"},{"refs":[{"id":"ref-for-mult-comma\u2461"}],"title":"3.3.5. Sizing Fill Images: the fill-size property"},{"refs":[{"id":"ref-for-mult-comma\u2462"}],"title":"3.3.6. Tiling Fill Images: the fill-repeat property"},{"refs":[{"id":"ref-for-mult-comma\u2463"}],"title":"4.2.1. Stroke Thickness: the stroke-width property"},{"refs":[{"id":"ref-for-mult-comma\u2464"}],"title":"4.3.1. Stroke Dash Patterns: the stroke-dasharray property"},{"refs":[{"id":"ref-for-mult-comma\u2465"}],"title":"4.4.1. Stroke Color: the stroke-color property"},{"refs":[{"id":"ref-for-mult-comma\u2466"}],"title":"4.4.2. Stroke Image Sources: the stroke-image property"},{"refs":[{"id":"ref-for-mult-comma\u2467"}],"title":"4.4.4. Positioning Stroke Images: the stroke-position property"},{"refs":[{"id":"ref-for-mult-comma\u2468"}],"title":"4.4.5. Sizing Stroke Images: the stroke-size property"},{"refs":[{"id":"ref-for-mult-comma\u2460\u24ea"}],"title":"4.4.6. Tiling Stroke Images: the stroke-repeat property"}],"url":"https://www.w3.org/TR/css-values-4/#mult-comma"}, "ca66eb75": {"dfnID":"ca66eb75","dfnText":"repeatable list","external":true,"refSections":[{"refs":[{"id":"ref-for-repeatable-list"}],"title":"3.3.4. Positioning Fill Images: the fill-position property"},{"refs":[{"id":"ref-for-repeatable-list\u2460"}],"title":"3.3.5. Sizing Fill Images: the fill-size property"},{"refs":[{"id":"ref-for-repeatable-list\u2461"}],"title":"4.4.4. Positioning Stroke Images: the stroke-position property"},{"refs":[{"id":"ref-for-repeatable-list\u2462"}],"title":"4.4.5. Sizing Stroke Images: the stroke-size property"}],"url":"https://www.w3.org/TR/web-animations-1/#repeatable-list"}, "cap-shapes": {"dfnID":"cap-shapes","dfnText":"cap shapes","external":false,"refSections":[{"refs":[{"id":"ref-for-cap-shapes"}],"title":"4.2.3. Stroke End Shapes: the stroke-linecap property"},{"refs":[{"id":"ref-for-cap-shapes\u2460"},{"id":"ref-for-cap-shapes\u2461"}],"title":"4.6.2. Stroke Shape"}],"url":"#cap-shapes"}, +"d04b6986": {"dfnID":"d04b6986","dfnText":"<color>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-color"}],"title":"2. Paint"},{"refs":[{"id":"ref-for-typedef-color\u2460"}],"title":"3.3.1. Fill Color: the fill-color property"},{"refs":[{"id":"ref-for-typedef-color\u2461"}],"title":"4.4.1. Stroke Color: the stroke-color property"}],"url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "d73c993d": {"dfnID":"d73c993d","dfnText":"<integer>","external":true,"refSections":[{"refs":[{"id":"ref-for-integer-value"},{"id":"ref-for-integer-value\u2460"}],"title":"2.1. SVG-Specific Paints"}],"url":"https://www.w3.org/TR/css-values-4/#integer-value"}, "d7b0e86f": {"dfnID":"d7b0e86f","dfnText":"image()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-image"}],"title":"3.3.1. Fill Color: the fill-color property"},{"refs":[{"id":"ref-for-funcdef-image\u2460"}],"title":"4.4.1. Stroke Color: the stroke-color property"}],"url":"https://www.w3.org/TR/css-images-4/#funcdef-image"}, "dash-positions": {"dfnID":"dash-positions","dfnText":"dash positions","external":false,"refSections":[{"refs":[{"id":"ref-for-dash-positions"}],"title":"4.6.2. Stroke Shape"}],"url":"#dash-positions"}, @@ -4576,9 +4578,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "e26aa9bf": {"dfnID":"e26aa9bf","dfnText":"initial containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-initial-containing-block"}],"title":"3.3.3. Fill Positioning Area: the fill-origin property"},{"refs":[{"id":"ref-for-initial-containing-block\u2460"}],"title":"4.4.3. Stroke Positioning Area: the stroke-origin property"}],"url":"https://www.w3.org/TR/css-display-3/#initial-containing-block"}, "e316431d": {"dfnID":"e316431d","dfnText":"background-repeat","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-repeat"}],"title":"3.3.6. Tiling Fill Images: the fill-repeat property"},{"refs":[{"id":"ref-for-propdef-background-repeat\u2460"}],"title":"4.4.6. Tiling Stroke Images: the stroke-repeat property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-background-repeat"}, "e583e570": {"dfnID":"e583e570","dfnText":"<bg-size>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-bg-size"}],"title":"3.3.5. Sizing Fill Images: the fill-size property"},{"refs":[{"id":"ref-for-typedef-bg-size\u2460"}],"title":"4.4.5. Sizing Stroke Images: the stroke-size property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#typedef-bg-size"}, +"e7c3b4f7": {"dfnID":"e7c3b4f7","dfnText":"invalid","external":true,"refSections":[{"refs":[{"id":"ref-for-css-invalid"}],"title":"4.2.5. Stroke Corner Limits: the stroke-miterlimit property"}],"url":"https://www.w3.org/TR/css-syntax-3/#css-invalid"}, "ef95ffba": {"dfnID":"ef95ffba","dfnText":"paint-order","external":true,"refSections":[{"refs":[{"id":"ref-for-PaintOrderProperty"}],"title":"4. Strokes (Outlines)"}],"url":"https://www.w3.org/TR/SVG2/painting.html#PaintOrderProperty"}, "f2249e38": {"dfnID":"f2249e38","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position"}],"title":"3.3.4. Positioning Fill Images: the fill-position property"},{"refs":[{"id":"ref-for-propdef-background-position\u2460"}],"title":"4.4.4. Positioning Stroke Images: the stroke-position property"}],"url":"https://www.w3.org/TR/css-backgrounds-3/#propdef-background-position"}, -"f61b0d8e": {"dfnID":"f61b0d8e","dfnText":"invalid","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-invalid"}],"title":"4.2.5. Stroke Corner Limits: the stroke-miterlimit property"}],"url":"https://w3c.github.io/rdf-semantics/spec/#dfn-invalid"}, "fc030bc1": {"dfnID":"fc030bc1","dfnText":"valid image","external":true,"refSections":[{"refs":[{"id":"ref-for-invalid-image"},{"id":"ref-for-invalid-image\u2460"}],"title":"3.3.1. Fill Color: the fill-color property"},{"refs":[{"id":"ref-for-invalid-image\u2461"}],"title":"3.3.7. Fill Shorthand: the fill property"},{"refs":[{"id":"ref-for-invalid-image\u2462"}],"title":"4.4.1. Stroke Color: the stroke-color property"}],"url":"https://www.w3.org/TR/css-images-4/#invalid-image"}, "fill": {"dfnID":"fill","dfnText":"fill","external":false,"refSections":[{"refs":[{"id":"ref-for-fill"},{"id":"ref-for-fill\u2460"}],"title":"3. Fills"},{"refs":[{"id":"ref-for-fill\u2461"}],"title":"3.2.2. Fragmented Fills: the fill-break property"},{"refs":[{"id":"ref-for-fill\u2462"}],"title":"3.3.3. Fill Positioning Area: the fill-origin property"},{"refs":[{"id":"ref-for-fill\u2463"},{"id":"ref-for-fill\u2464"}],"title":"4. Strokes (Outlines)"}],"url":"#fill"}, "fill-painting-area": {"dfnID":"fill-painting-area","dfnText":"fill painting area","external":false,"refSections":[],"url":"#fill-painting-area"}, @@ -5049,7 +5051,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let linkTitleData = { "#typedef-paint": "Expands to: none", "#typedef-svg-paint": "Expands to: child | child(<integer>)", -"https://www.w3.org/TR/css-color-4/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://www.w3.org/TR/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://www.w3.org/TR/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://www.w3.org/TR/css-values-4/#url-value": "Expands to: local url flag", }; @@ -5140,7 +5142,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "#valdef-stroke-origin-match-parent": {"export":true,"for_":["stroke-origin"],"level":"3","normative":true,"shortname":"fill-stroke","spec":"fill-stroke-3","status":"local","text":"match-parent","type":"value","url":"#valdef-stroke-origin-match-parent"}, "#valdef-stroke-origin-padding-box": {"export":true,"for_":["stroke-origin"],"level":"3","normative":true,"shortname":"fill-stroke","spec":"fill-stroke-3","status":"local","text":"padding-box","type":"value","url":"#valdef-stroke-origin-padding-box"}, "#valdef-stroke-origin-stroke-box": {"export":true,"for_":["stroke-origin"],"level":"3","normative":true,"shortname":"fill-stroke","spec":"fill-stroke-3","status":"local","text":"stroke-box","type":"value","url":"#valdef-stroke-origin-stroke-box"}, -"https://w3c.github.io/rdf-semantics/spec/#dfn-invalid": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"rdf-semantics","spec":"rdf12-semantics","status":"current","text":"invalid","type":"dfn","url":"https://w3c.github.io/rdf-semantics/spec/#dfn-invalid"}, "https://www.w3.org/TR/SVG2/coords.html#TermObjectBoundingBox": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"object bounding box","type":"dfn","url":"https://www.w3.org/TR/SVG2/coords.html#TermObjectBoundingBox"}, "https://www.w3.org/TR/SVG2/coords.html#TermStrokeBoundingBox": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"stroke bounding box","type":"dfn","url":"https://www.w3.org/TR/SVG2/coords.html#TermStrokeBoundingBox"}, "https://www.w3.org/TR/SVG2/painting.html#PaintOrderProperty": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"snapshot","text":"paint-order","type":"property","url":"https://www.w3.org/TR/SVG2/painting.html#PaintOrderProperty"}, @@ -5163,13 +5164,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://www.w3.org/TR/css-cascade-5/#shorthand-property": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"snapshot","text":"shorthand","type":"dfn","url":"https://www.w3.org/TR/css-cascade-5/#shorthand-property"}, "https://www.w3.org/TR/css-color-4/#propdef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"color","type":"property","url":"https://www.w3.org/TR/css-color-4/#propdef-color"}, "https://www.w3.org/TR/css-color-4/#propdef-opacity": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"opacity","type":"property","url":"https://www.w3.org/TR/css-color-4/#propdef-opacity"}, -"https://www.w3.org/TR/css-color-4/#typedef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-4/#typedef-color"}, "https://www.w3.org/TR/css-color-4/#valdef-color-transparent": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"snapshot","text":"transparent","type":"value","url":"https://www.w3.org/TR/css-color-4/#valdef-color-transparent"}, +"https://www.w3.org/TR/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"snapshot","text":"<color>","type":"type","url":"https://www.w3.org/TR/css-color-5/#typedef-color"}, "https://www.w3.org/TR/css-display-3/#initial-containing-block": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"snapshot","text":"initial containing block","type":"dfn","url":"https://www.w3.org/TR/css-display-3/#initial-containing-block"}, "https://www.w3.org/TR/css-images-3/#css-ambiguous-image-url": {"export":true,"for_":["CSS"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"ambiguous image url","type":"dfn","url":"https://www.w3.org/TR/css-images-3/#css-ambiguous-image-url"}, "https://www.w3.org/TR/css-images-3/#typedef-image": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"<image>","type":"type","url":"https://www.w3.org/TR/css-images-3/#typedef-image"}, "https://www.w3.org/TR/css-images-4/#funcdef-image": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"snapshot","text":"image()","type":"function","url":"https://www.w3.org/TR/css-images-4/#funcdef-image"}, "https://www.w3.org/TR/css-images-4/#invalid-image": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-images","spec":"css-images-4","status":"snapshot","text":"invalid image","type":"dfn","url":"https://www.w3.org/TR/css-images-4/#invalid-image"}, +"https://www.w3.org/TR/css-syntax-3/#css-invalid": {"export":true,"for_":["css"],"level":"3","normative":true,"shortname":"css-syntax","spec":"css-syntax-3","status":"snapshot","text":"invalid","type":"dfn","url":"https://www.w3.org/TR/css-syntax-3/#css-invalid"}, "https://www.w3.org/TR/css-text-decor-4/#propdef-text-decoration": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"snapshot","text":"text-decoration","type":"property","url":"https://www.w3.org/TR/css-text-decor-4/#propdef-text-decoration"}, "https://www.w3.org/TR/css-values-4/#comb-any": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"snapshot","text":"||","type":"grammar","url":"https://www.w3.org/TR/css-values-4/#comb-any"}, "https://www.w3.org/TR/css-values-4/#comb-one": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"snapshot","text":"|","type":"grammar","url":"https://www.w3.org/TR/css-values-4/#comb-one"}, diff --git a/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.console.txt b/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.console.txt index 44784369b4..650c921cd9 100644 --- a/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.console.txt @@ -8,7 +8,6 @@ LINE 275:3: Spurious / in <img>. LINE 277:3: Spurious / in <img>. LINE 300:3: Spurious / in <img>. LINE 302:3: Spurious / in <img>. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/step1.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/step2.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'examples/step3.png' diff --git a/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.html b/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.html index ab3f349186..cf500dfa86 100644 --- a/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.html +++ b/tests/github/w3c/fxtf-drafts/filter-effects-2/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Filter Effects Module Level 2</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="exploring" name="csswg-work-status"> + <title>Filter Effects Module Level 2</title> <meta content="ED" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/filter-effects-2/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -940,7 +936,7 @@ <h1>Filter Effects Module Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -948,7 +944,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont <p>Filter effects are a way of processing an element’s rendering before it is displayed in the document. Typically, rendering an element via CSS or SVG can conceptually described as if the element, including its children, are drawn into a buffer (such as a raster image) and then that buffer is composited into the elements parent. Filters apply an effect before the compositing stage. Examples of such effects are blurring, changing color intensity and warping the image. This is Level 2 of the Filter Effects Module.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> This is a public copy of the editors’ draft. It is provided for discussion only and may change at any moment. @@ -962,11 +958,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> (part of the <a href="https://www.w3.org/Style/">Style Activity</a>). </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/fxtf-drafts/geometry/Overview.console.txt b/tests/github/w3c/fxtf-drafts/geometry/Overview.console.txt index 306fc73090..e9f9852e4f 100644 --- a/tests/github/w3c/fxtf-drafts/geometry/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/geometry/Overview.console.txt @@ -1,2 +1 @@ -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 1733: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/fxtf-drafts/geometry/Overview.html b/tests/github/w3c/fxtf-drafts/geometry/Overview.html index cc6224bd02..a43f2a99bf 100644 --- a/tests/github/w3c/fxtf-drafts/geometry/Overview.html +++ b/tests/github/w3c/fxtf-drafts/geometry/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Geometry Interfaces Module Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="refining" name="csswg-work-status"> + <title>Geometry Interfaces Module Level 1</title> <meta content="ED" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/geometry-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -1192,14 +1188,14 @@ <h1 class="p-name no-ref" id="title">Geometry Interfaces Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This specification provides basic geometric interfaces to represent points, rectangles, quadrilaterals and transformation matrices that can be used by other modules or specifications.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> This is a public copy of the editors’ draft. It is provided for discussion only and may change at any moment. @@ -1213,11 +1209,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> (part of the <a href="https://www.w3.org/Style/">Style Activity</a>). </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -4221,11 +4217,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <div class="support"> <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>48+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>?</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>11+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>48+</span></span> </div> </div> </details> @@ -4237,11 +4233,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <div class="support"> <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>48+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>?</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>11+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>48+</span></span> </div> </div> <div class="feature"> @@ -4257,19 +4253,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix" title="The DOMMatrix interface represents 4×4 matrices, suitable for 2D and 3D operations including rotation and translation. It is a mutable version of the DOMMatrixReadOnly interface.">DOMMatrix</a></p> - <p class="all-engines-text">In all current engines.</p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>2+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-dommatrixreadonly-dommatrixreadonly"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -4290,7 +4273,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-dommatrixreadonly-flipx"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrixReadOnly/flipX" title="Returns a DOMMatrix containing a new matrix being the result of the original matrix flipped about the x-axis, which is equivalent to multiplying the matrix by DOMMatrix(-1, 0, 0, 1, 0, 0). The original matrix is not modified.">DOMMatrixReadOnly/flipX</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrixReadOnly/flipX" title="The flipX() method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix flipped about the x-axis.">DOMMatrixReadOnly/flipX</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>33+</span></span><span class="safari yes"><span>Safari</span><span>11+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -4354,10 +4337,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-dompoint-frompoint"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMPoint/fromPoint" title="The static DOMPoint method fromPoint() creates and returns a new mutable DOMPoint object given a source point.">DOMPoint/fromPoint</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMPoint/fromPoint_static" title="The DOMPoint static method fromPoint() creates and returns a new mutable DOMPoint object given a source point.">DOMPoint/fromPoint_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>31+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> + <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -4531,7 +4514,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-dompointreadonly-frompoint"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMPointReadOnly/fromPoint" title="The static DOMPointReadOnly method fromPoint() creates and returns a new DOMPointReadOnly object given a source point.">DOMPointReadOnly/fromPoint</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMPointReadOnly/fromPoint_static" title="The static DOMPointReadOnly method fromPoint() creates and returns a new DOMPointReadOnly object given a source point.">DOMPointReadOnly/fromPoint_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -4669,7 +4652,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-domrectreadonly-fromrect"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly/fromRect" title="The fromRect() static method of the DOMRectReadOnly object creates a new DOMRectReadOnly object with a given location and dimensions.">DOMRectReadOnly/fromRect</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly/fromRect_static" title="The fromRect() static method of the DOMRectReadOnly object creates a new DOMRectReadOnly object with a given location and dimensions.">DOMRectReadOnly/fromRect_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>69+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> @@ -4796,8 +4779,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </details> <details class="caniuse-status unpositioned" data-anno-for="matrix" data-deco> <summary>CanIUse</summary> - <p class="support"><b>Support:</b><span class="android partial"><span><span>Android Browser (limited)</span></span><span>4+</span></span><span class="baidu partial"><span><span>Baidu Browser (limited)</span></span><span>13.18+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>10+</span></span><span class="chrome partial"><span><span>Chrome (limited)</span></span><span>8+</span></span><span class="and_chr partial"><span><span>Chrome for Android (limited)</span></span><span>109+</span></span><span class="edge partial"><span><span>Edge (limited)</span></span><span>12+</span></span><span class="firefox partial"><span><span>Firefox (limited)</span></span><span>33+</span></span><span class="and_ff partial"><span><span>Firefox for Android (limited)</span></span><span>107+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>10+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios partial"><span><span>KaiOS Browser (limited)</span></span><span>2.5+</span></span><span class="opera partial"><span><span>Opera (limited)</span></span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob partial"><span><span>Opera Mobile (limited)</span></span><span>72+</span></span><span class="and_qq partial"><span><span>QQ Browser (limited)</span></span><span>13.1+</span></span><span class="safari partial"><span><span>Safari (limited)</span></span><span>5+</span></span><span class="ios_saf partial"><span><span>Safari on iOS (limited)</span></span><span>5.0+</span></span><span class="samsung partial"><span><span>Samsung Internet (limited)</span></span><span>4+</span></span><span class="and_uc partial"><span><span>UC Browser for Android (limited)</span></span><span>13.4+</span></span></p> - <p class="caniuse">Source: <a href="https://caniuse.com/#feat=dommatrix">caniuse.com</a> as of 2023-01-27</p> + <p class="support"><b>Support:</b><span class="android partial"><span><span>Android Browser (limited)</span></span><span>4+</span></span><span class="baidu partial"><span><span>Baidu Browser (limited)</span></span><span>13.52+</span></span><span class="bb partial"><span><span>Blackberry Browser (limited)</span></span><span>10+</span></span><span class="chrome partial"><span><span>Chrome (limited)</span></span><span>8+</span></span><span class="and_chr partial"><span><span>Chrome for Android (limited)</span></span><span>127+</span></span><span class="edge partial"><span><span>Edge (limited)</span></span><span>12+</span></span><span class="firefox partial"><span><span>Firefox (limited)</span></span><span>33+</span></span><span class="and_ff partial"><span><span>Firefox for Android (limited)</span></span><span>127+</span></span><span class="ie partial"><span><span>IE (limited)</span></span><span>10+</span></span><span class="ie_mob partial"><span><span>IE Mobile (limited)</span></span><span>10+</span></span><span class="kaios partial"><span><span>KaiOS Browser (limited)</span></span><span>2.5+</span></span><span class="opera partial"><span><span>Opera (limited)</span></span><span>15+</span></span><span class="op_mini no"><span>Opera Mini</span><span>None</span></span><span class="op_mob partial"><span><span>Opera Mobile (limited)</span></span><span>80+</span></span><span class="and_qq partial"><span><span>QQ Browser (limited)</span></span><span>14.9+</span></span><span class="safari partial"><span><span>Safari (limited)</span></span><span>5+</span></span><span class="ios_saf partial"><span><span>Safari on iOS (limited)</span></span><span>5.0+</span></span><span class="samsung partial"><span><span>Samsung Internet (limited)</span></span><span>4+</span></span><span class="and_uc partial"><span><span>UC Browser for Android (limited)</span></span><span>15.5+</span></span></p> + <p class="caniuse">Source: <a href="https://caniuse.com/#feat=dommatrix">caniuse.com</a> as of 2024-08-25</p> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/fxtf-drafts/matrix/Overview.console.txt b/tests/github/w3c/fxtf-drafts/matrix/Overview.console.txt index 4bd8e59590..0e5b060813 100644 --- a/tests/github/w3c/fxtf-drafts/matrix/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/matrix/Overview.console.txt @@ -1,5 +1,2 @@ -FATAL ERROR: Under Process2021, w3c/WG-NOTE is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead. -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +FATAL ERROR: Under Process2021, WG-NOTE is no longer a valid status. Use NOTE (or one of its variants NOTE-ED, NOTE-FPWD, NOTE-WD) instead. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/fxtf-drafts/matrix/Overview.html b/tests/github/w3c/fxtf-drafts/matrix/Overview.html index a2ecc3ee82..672c88baaa 100644 --- a/tests/github/w3c/fxtf-drafts/matrix/Overview.html +++ b/tests/github/w3c/fxtf-drafts/matrix/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>DOMMatrix interface</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="abandoned" name="csswg-work-status"> - <meta content="NOTE" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> + <title>DOMMatrix interface</title> + <meta content="WG-NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WG-NOTE" rel="stylesheet"> <link href="http://www.w3.org/TR/matrix/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -420,7 +416,7 @@ <h1 class="p-name no-ref" id="title">DOMMatrix interface</h1> <div data-fill-with="spec-metadata"> <dl> <dt>This version: - <dd><a class="u-url" href="https://www.w3.org/TR/1970/NOTE-matrix-1-19700101/">https://www.w3.org/TR/1970/NOTE-matrix-1-19700101/</a> + <dd><a class="u-url" href="https://www.w3.org/TR/1970/WG-NOTE-matrix-1-19700101/">https://www.w3.org/TR/1970/WG-NOTE-matrix-1-19700101/</a> <dt>Latest published version: <dd><a href="http://www.w3.org/TR/matrix/">http://www.w3.org/TR/matrix/</a> <dt>Editor's Draft: @@ -442,14 +438,14 @@ <h1 class="p-name no-ref" id="title">DOMMatrix interface</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This Note replaces a draft specification for a programmatic interface (API) to certain types of transformation matrices. See <cite>Geometry Interfaces Module Level 1</cite> <a data-link-type="biblio" href="#biblio-geometry-1" title="Geometry Interfaces Module Level 1">[GEOMETRY-1]</a> for newer versions of that API.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p></p> </div> diff --git a/tests/github/w3c/fxtf-drafts/motion-1/Overview.console.txt b/tests/github/w3c/fxtf-drafts/motion-1/Overview.console.txt index 99b2dc4ee5..6ed003e8e7 100644 --- a/tests/github/w3c/fxtf-drafts/motion-1/Overview.console.txt +++ b/tests/github/w3c/fxtf-drafts/motion-1/Overview.console.txt @@ -11,7 +11,6 @@ LINE 719:5: Spurious / in <img>. LINE 770:5: Spurious / in <img>. LINE 831:5: Spurious / in <img>. LINE 1175:5: Spurious / in <img>. -LINE 9:49 of header.include: Found unmatched text macro [ABSTRACTATTR] in content='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/offset_distance_without_contain.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/offset_distance_with_contain.png' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/initial-outside.svg' @@ -23,6 +22,31 @@ LINE 929: Image doesn't exist, so I couldn't determine its width and height: 'im LINE 977: Image doesn't exist, so I couldn't determine its width and height: 'images/offset_anchor_center.svg' LINE 1025: Image doesn't exist, so I couldn't determine its width and height: 'images/offset_anchor_auto.svg' WARNING: Image doesn't exist, so I couldn't determine its width and height: 'images/rotate_by_angle_with_auto.png' +LINE 126: No 'type' refs found for '<size>'. +<<size>> +LINE 134: No 'type' refs found for '<size>'. +<<size>> +LINE ~179: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE ~196: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' LINE 222: No 'value' refs found for 'margin-box' with for='['mask-clip']'. <a bs-line-number="222" data-link-type="value" data-link-for="mask-clip" data-lt="margin-box">margin-box</a> +LINE ~403: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE 1223: No 'type' refs found for '<size>'. +<<size>> LINE 1210: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. +WARNING: No 'ray-function' ID found, skipping MDN features that would target it. diff --git a/tests/github/w3c/fxtf-drafts/motion-1/Overview.html b/tests/github/w3c/fxtf-drafts/motion-1/Overview.html index 003b790cc5..c671dc1af7 100644 --- a/tests/github/w3c/fxtf-drafts/motion-1/Overview.html +++ b/tests/github/w3c/fxtf-drafts/motion-1/Overview.html @@ -1,13 +1,9 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Motion Path Module Level 1</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> - <meta content="refining" name="csswg-work-status"> + <title>Motion Path Module Level 1</title> <meta content="ED" name="w3c-status"> - <meta content="[ABSTRACTATTR]" name="abstract"> - <link href="../default.css" rel="stylesheet"> - <link href="../csslogo.ico" rel="shortcut icon" type="image/x-icon"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="https://www.w3.org/TR/motion-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -979,14 +975,14 @@ <h1 class="p-name no-ref" id="title">Motion Path Module Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>Motion path allows authors to position any graphical object and animate it along an author specified path.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> This is a public copy of the editors’ draft. It is provided for discussion only and may change at any moment. @@ -1000,11 +996,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="conten and there is also a <a href="http://lists.w3.org/Archives/Public/public-fx/">historical archive</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> (part of the <a href="https://www.w3.org/Style/">Style Activity</a>). </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1082,7 +1078,7 @@ <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </s </figure> </div> <h2 class="heading settled" data-level="2" id="placement"><span class="secno">2. </span><span class="content">Module interactions</span><a class="self-link" href="#placement"></a></h2> - <p>This specification defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied. These effects are applied after <a href="https://www.w3.org/TR/css-display-3/#box">box</a>es have been sized and positioned according to the <a href="https://www.w3.org/TR/CSS2/visuren.html">Visual formatting model</a> from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. Some values of <a class="property css" data-link-type="property" href="#propdef-offset-path" id="ref-for-propdef-offset-path">offset-path</a> and <a class="property css" data-link-type="property" href="#propdef-offset-position" id="ref-for-propdef-offset-position">offset-position</a> result in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext">stacking context</a> and <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>.</p> + <p>This specification defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied. These effects are applied after <a href="https://www.w3.org/TR/css-display-3/#box">box</a>es have been sized and positioned according to the <a href="https://www.w3.org/TR/CSS2/visuren.html">Visual formatting model</a> from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. Some values of <a class="property css" data-link-type="property" href="#propdef-offset-path" id="ref-for-propdef-offset-path">offset-path</a> and <a class="property css" data-link-type="property" href="#propdef-offset-position" id="ref-for-propdef-offset-position">offset-position</a> result in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43">stacking context</a> and <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>.</p> <p>Some CSS properties in this specification manipulate the user coordinate system of the element by transformations. These transformations are pre-multiplied to transformations specified by the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="ref-for-propdef-transform">transform</a> property or deriving properties defined in CSS Transform Module Level 1 <a data-link-type="biblio" href="#biblio-css-transforms-1" title="CSS Transforms Module Level 1">[CSS-TRANSFORMS-1]</a>, and post-multiplied to transformations specified by the individual transform properties <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-2/#propdef-translate" id="ref-for-propdef-translate">translate</a>, <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-2/#propdef-scale" id="ref-for-propdef-scale">scale</a>, and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-transforms-2/#propdef-rotate" id="ref-for-propdef-rotate">rotate</a>, as <a href="https://drafts.csswg.org/css-transforms-2/#ctm">explained</a> in <a href="https://drafts.csswg.org/css-transforms-2/">CSS Transform Module Level 2</a>.</p> <h2 class="heading settled" data-level="3" id="values"><span class="secno">3. </span><span class="content">Values</span><a class="self-link" href="#values"></a></h2> <p>This specification follows the <a href="https://www.w3.org/TR/CSS21/about.html#property-defs">CSS property definition conventions</a> from <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a>. Basic shapes are defined in CSS Shapes Module Level 1 <a data-link-type="biblio" href="#biblio-css-shapes" title="CSS Shapes Module Level 1">[CSS-SHAPES]</a>. Value types not defined in these specifications are defined in CSS Values and Units Module Level 3 <a data-link-type="biblio" href="#biblio-css3val" title="CSS Values and Units Module Level 3">[CSS3VAL]</a>.</p> @@ -1129,7 +1125,7 @@ <h3 class="heading settled" data-level="4.1" id="offset-path-property"><span cla and the <dfn class="dfn-paneled" data-dfn-for="offset path" data-dfn-type="dfn" data-export id="offset-path-initial-direction">initial direction</dfn> (the initial orientation of the box (per <a class="property css" data-link-type="property" href="#propdef-offset-rotate" id="ref-for-propdef-offset-rotate①">offset-rotate</a>) at the <a data-link-type="dfn" href="#offset-path-initial-position" id="ref-for-offset-path-initial-position">initial position</a>).</p> <p>Values have the following meanings:</p> <dl> - <dt data-md><dfn class="dfn-paneled css" data-dfn-for="offset-path" data-dfn-type="function" data-export id="funcdef-offset-path-ray">ray()</dfn> = ray( [ <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value">&lt;angle></a> &amp;&amp; <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-size" id="ref-for-typedef-size">&lt;size></a> &amp;&amp; contain? ] ) + <dt data-md><dfn class="dfn-paneled css" data-dfn-for="offset-path" data-dfn-type="function" data-export id="funcdef-offset-path-ray">ray()</dfn> = ray( [ <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value">&lt;angle></a> &amp;&amp; <a class="production css" data-link-type="type">&lt;size></a> &amp;&amp; contain? ] ) <dd data-md> <dl> <dt data-md><dfn class="dfn-paneled css" data-dfn-for="ray()" data-dfn-type="value" data-export id="valdef-ray-angle"><a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value①">&lt;angle></a></dfn> @@ -1137,7 +1133,7 @@ <h3 class="heading settled" data-level="4.1" id="offset-path-property"><span cla <p>The <a data-link-type="dfn" href="#offset-path" id="ref-for-offset-path①">offset path</a> is a line segment that starts from the position of the box and proceeds in the direction defined by the specified <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value②">&lt;angle></a>. As with <a href="https://www.w3.org/TR/css3-images/#gradients">CSS gradients</a>, <span class="production" id="ref-for-angle-value③">&lt;angle></span> values are interpreted as bearing angles, with <span class="css">0deg</span> pointing up and positive angles representing clockwise rotation.</p> <dt data-md><dfn class="dfn-paneled css" data-dfn-for="ray()" data-dfn-type="value" data-export id="valdef-ray-size">&lt;size></dfn> <dd data-md> - <p>Decides the path length used when <a class="property css" data-link-type="property" href="#propdef-offset-distance" id="ref-for-propdef-offset-distance②">offset-distance</a> is expressed as a percentage, using the distance to the containing box. For <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-size" id="ref-for-typedef-size①">&lt;size></a> values other than <a href="#size-sides" id="ref-for-size-sides">sides</a>, the path length is independent of <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value④">&lt;angle></a>.</p> + <p>Decides the path length used when <a class="property css" data-link-type="property" href="#propdef-offset-distance" id="ref-for-propdef-offset-distance②">offset-distance</a> is expressed as a percentage, using the distance to the containing box. For <a class="production css" data-link-type="type">&lt;size></a> values other than <a href="#size-sides" id="ref-for-size-sides">sides</a>, the path length is independent of <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value④">&lt;angle></a>.</p> <p>It is defined as:</p> <p> <b>&lt;size></b> = [ closest-side | closest-corner | farthest-side | farthest-corner | sides ]</p> <dl> @@ -1202,7 +1198,7 @@ <h3 class="heading settled" data-level="4.1" id="offset-path-property"><span cla <dd data-md> <p>No <a data-link-type="dfn" href="#offset-path" id="ref-for-offset-path④">offset path</a> gets created. When <a class="property css" data-link-type="property" href="#propdef-offset-path" id="ref-for-propdef-offset-path③">offset-path</a> is <a href="#offsetpath-none" id="ref-for-offsetpath-none">none</a>, <a class="property css" data-link-type="property" href="#propdef-offset-distance" id="ref-for-propdef-offset-distance⑦">offset-distance</a> and <a class="property css" data-link-type="property" href="#propdef-offset-rotate" id="ref-for-propdef-offset-rotate③">offset-rotate</a> have no effect.</p> </dl> - <p>A computed value of other than <a href="#offsetpath-none" id="ref-for-offsetpath-none①">none</a> results in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext①">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> and <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>, per usual for <a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="67291a070">transforms</a>.</p> + <p>A computed value of other than <a href="#offsetpath-none" id="ref-for-offsetpath-none①">none</a> results in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43①">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> and <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>, per usual for <a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="67291a070">transforms</a>.</p> <p>A reference that fails to download, is not a reference to an SVG <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/shapes.html#TermShapeElement" id="ref-for-TermShapeElement①">shape element</a>, or is non-existent, is treated as equivalent to <code>path("m 0 0")</code>.</p> <p class="note" role="note"><span class="marker">Note:</span> This is a zero length path with <a href="https://www.w3.org/TR/SVG11/implnote.html#PathElementImplementationNotes">directionality</a> aligned with the positive x-axis.</p> <p></p> @@ -1625,7 +1621,7 @@ <h3 class="heading settled" data-level="4.3" id="offset-position-property"><span <p>Specifies the <var>initial position</var>, with the the containing block as the positioning area and a dimensionless point (zero-sized box) as the object area.</p> <p class="note" role="note"><span class="marker">Note:</span> This is similar to absolute positioning, except that <a class="property css" data-link-type="property" href="#propdef-offset-position" id="ref-for-propdef-offset-position⑦">offset-position</a> does not prevent boxes from impacting the layout of later siblings.</p> </dl> - <p>A computed value of other than <a class="css" data-link-type="maybe" href="#valdef-offset-rotate-auto" id="ref-for-valdef-offset-rotate-auto②">auto</a> results in the creation of a <a data-link-type="dfn" href="https://svgwg.org/svg2-draft/render.html#TermStackingContext" id="ref-for-TermStackingContext②">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> and <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>, per usual for <a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="67291a071">transforms</a>.</p> + <p>A computed value of other than <a class="css" data-link-type="maybe" href="#valdef-offset-rotate-auto" id="ref-for-valdef-offset-rotate-auto②">auto</a> results in the creation of a <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/visuren.html#x43" id="ref-for-x43②">stacking context</a> <a data-link-type="biblio" href="#biblio-css21" title="Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification">[CSS21]</a> and <a href="https://www.w3.org/TR/CSS2/visuren.html#containing-block">containing block</a>, per usual for <a href="https://drafts.csswg.org/css-transforms-1/#propdef-transform" id="67291a071">transforms</a>.</p> <p><a class="property css" data-link-type="property" href="#propdef-offset-position" id="ref-for-propdef-offset-position⑧">offset-position</a> is ignored if <a class="property css" data-link-type="property" href="#propdef-offset-path" id="ref-for-propdef-offset-path①⓪">offset-path</a> is a geometry-box, or a basic shape (other than a circle or ellipse with implicit center). In these cases, the geometry-box or basic shape specifies the <var>initial position</var>.</p> <div class="example" id="example-d288583a"> <a class="self-link" href="#example-d288583a"></a> This example shows positioning a box with <a class="property css" data-link-type="property" href="#propdef-offset-position" id="ref-for-propdef-offset-position⑨">offset-position</a>. @@ -2226,7 +2222,7 @@ <h2 class="no-num heading settled" id="changes"><span class="content">Changes</s <li data-md> <p>Added the <a class="css" data-link-type="maybe" href="#funcdef-offset-path-ray" id="ref-for-funcdef-offset-path-ray②">ray()</a> to define an <a data-link-type="dfn" href="#offset-path" id="ref-for-offset-path③③">offset path</a> as a line segment which direction is specified by <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#angle-value" id="ref-for-angle-value①⑧">&lt;angle></a>.</p> <li data-md> - <p>Added <a class="production css" data-link-type="type" href="https://www.w3.org/TR/css-images-3/#typedef-size" id="ref-for-typedef-size②">&lt;size></a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-contain-2/#propdef-contain" id="ref-for-propdef-contain③">contain</a> value for the <a class="css" data-link-type="maybe" href="#funcdef-offset-path-ray" id="ref-for-funcdef-offset-path-ray③">ray()</a>.</p> + <p>Added <a class="production css" data-link-type="type">&lt;size></a> and <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-contain-2/#propdef-contain" id="ref-for-propdef-contain③">contain</a> value for the <a class="css" data-link-type="maybe" href="#funcdef-offset-path-ray" id="ref-for-funcdef-offset-path-ray③">ray()</a>.</p> </ul> <li data-md> <p>Renamed <a href="https://www.w3.org/TR/2015/WD-motion-1-20150409/#propdef-motion-offset">motion-offset</a> to <a class="property css" data-link-type="property" href="#propdef-offset-distance" id="ref-for-propdef-offset-distance①④">offset-distance</a> for integrating with <a href="https://www.w3.org/TR/2016/WD-css-round-display-1-20160301/#polar-distance-property">polar-distance</a>.</p> @@ -2388,11 +2384,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="754e7a89">contain</span> </ul> - <li> - <a data-link-type="biblio">[CSS-IMAGES-3]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="bd95103a">&lt;size></span> - </ul> <li> <a data-link-type="biblio">[CSS-MASKING-1]</a> defines the following terms: <ul> @@ -2452,27 +2443,29 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ec67710">|</span> <li><span class="dfn-paneled" id="8a82fda1">||</span> </ul> + <li> + <a data-link-type="biblio">[CSS21]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="a50c2771">stacking context</span> + </ul> <li> <a data-link-type="biblio">[SVG2]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d8bec048">direction of a path</span> <li><span class="dfn-paneled" id="3a660536">shape elements</span> - <li><span class="dfn-paneled" id="3c067729">stacking contexts</span> </ul> </ul> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-contain-2">[CSS-CONTAIN-2] <dd>Tab Atkins Jr.; Florian Rivoal; Vladimir Levin. <a href="https://drafts.csswg.org/css-contain-2/"><cite>CSS Containment Module Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-contain-2/">https://drafts.csswg.org/css-contain-2/</a> - <dt id="biblio-css-images-3">[CSS-IMAGES-3] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -2591,12 +2584,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> There needs to be a process for converting <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-transforms-1/#funcdef-transform-rotate">rotate()</a> to an angle. <a class="issue-return" href="#issue-af0945aa" title="Jump to section">↵</a></div> </div> <details class="mdn-anno unpositioned" data-anno-for="offset-anchor-property"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/offset-anchor" title="The offset-anchor CSS property specifies the point inside the box of an element traveling along an offset-path that is actually moving along the path.">offset-anchor</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> <hr> @@ -2607,17 +2599,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="offset-distance-property"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/offset-distance" title="The offset-distance CSS property specifies a position along an offset-path for an element to be placed.">offset-distance</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>55+</span></span> + <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome yes"><span>Chrome</span><span>55+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2638,14 +2631,14 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="offset-position-property"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/offset-position" title="The offset-position CSS property defines the initial position of the offset-path.">offset-position</a></p> - <p class="less-than-two-engines-text">In no current engines.</p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/offset-position" title="The offset-position CSS property defines the initial position of an element along a path. This property is typically used in combination with the offset-path property to create a motion effect. The value of offset-position determines where the element gets placed initially for moving along an offset-path if the offset-path function does not specify its own starting position.">offset-position</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <span class="firefox yes"><span>Firefox</span><span title="Requires setting a user preference or runtime flag.">🔰 116+</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome yes"><span>Chrome</span><span title="Requires setting a user preference or runtime flag.">🔰 115+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span title="Requires setting a user preference or runtime flag.">🔰 115+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -2654,17 +2647,18 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="offset-rotate-property"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/offset-rotate" title="The offset-rotate CSS property defines the orientation/direction of the element as it is positioned along the offset-path.">offset-rotate</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> + <span class="firefox yes"><span>Firefox</span><span>72+</span></span><span class="safari yes"><span>Safari</span><span>preview+</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2680,7 +2674,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>None</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2896,7 +2890,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "3559c926": {"dfnID":"3559c926","dfnText":"<angle>","external":true,"refSections":[{"refs":[{"id":"ref-for-angle-value"},{"id":"ref-for-angle-value\u2460"},{"id":"ref-for-angle-value\u2461"},{"id":"ref-for-angle-value\u2462"},{"id":"ref-for-angle-value\u2463"}],"title":"4.1. Define a path: The offset-path property"},{"refs":[{"id":"ref-for-angle-value\u2464"},{"id":"ref-for-angle-value\u2465"},{"id":"ref-for-angle-value\u2466"}],"title":"4.2.1. Calculating the computed distance along a path"},{"refs":[{"id":"ref-for-angle-value\u2467"},{"id":"ref-for-angle-value\u2468"},{"id":"ref-for-angle-value\u2460\u24ea"},{"id":"ref-for-angle-value\u2460\u2460"},{"id":"ref-for-angle-value\u2460\u2461"},{"id":"ref-for-angle-value\u2460\u2462"},{"id":"ref-for-angle-value\u2460\u2463"},{"id":"ref-for-angle-value\u2460\u2464"},{"id":"ref-for-angle-value\u2460\u2465"},{"id":"ref-for-angle-value\u2460\u2466"}],"title":"4.5. Rotation at point: The offset-rotate property"},{"refs":[{"id":"ref-for-angle-value\u2460\u2467"},{"id":"ref-for-angle-value\u2460\u2468"}],"title":"Changes"}],"url":"https://drafts.csswg.org/css-values-4/#angle-value"}, "37df27a7": {"dfnID":"37df27a7","dfnText":"circle()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-basic-shape-circle"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-circle"}, "3a660536": {"dfnID":"3a660536","dfnText":"shape elements","external":true,"refSections":[{"refs":[{"id":"ref-for-TermShapeElement"},{"id":"ref-for-TermShapeElement\u2460"},{"id":"ref-for-TermShapeElement\u2461"},{"id":"ref-for-TermShapeElement\u2462"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://svgwg.org/svg2-draft/shapes.html#TermShapeElement"}, -"3c067729": {"dfnID":"3c067729","dfnText":"stacking contexts","external":true,"refSections":[{"refs":[{"id":"ref-for-TermStackingContext"}],"title":"2. Module interactions"},{"refs":[{"id":"ref-for-TermStackingContext\u2460"}],"title":"4.1. Define a path: The offset-path property"},{"refs":[{"id":"ref-for-TermStackingContext\u2461"}],"title":"4.3. Define the starting point of the path: The offset-position property"}],"url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "4bdbccda": {"dfnID":"4bdbccda","dfnText":"border-box","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-mask-clip-border-box"},{"id":"ref-for-valdef-mask-clip-border-box\u2460"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-border-box"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"}],"title":"4.1. Define a path: The offset-path property"},{"refs":[{"id":"ref-for-mult-opt\u2460"},{"id":"ref-for-mult-opt\u2461"},{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"}],"title":"4.6. Offset shorthand: The offset property"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "581e67aa": {"dfnID":"581e67aa","dfnText":"content-box","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-mask-clip-content-box"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-content-box"}, @@ -2911,11 +2904,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9bae10e5": {"dfnID":"9bae10e5","dfnText":"polygon()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-basic-shape-polygon"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-polygon"}, "a48ce1c0": {"dfnID":"a48ce1c0","dfnText":"translate","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-translate"}],"title":"2. Module interactions"}],"url":"https://drafts.csswg.org/css-transforms-2/#propdef-translate"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, +"a50c2771": {"dfnID":"a50c2771","dfnText":"stacking context","external":true,"refSections":[{"refs":[{"id":"ref-for-x43"}],"title":"2. Module interactions"},{"refs":[{"id":"ref-for-x43\u2460"}],"title":"4.1. Define a path: The offset-path property"},{"refs":[{"id":"ref-for-x43\u2461"}],"title":"4.3. Define the starting point of the path: The offset-position property"}],"url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, "ae53b4d9": {"dfnID":"ae53b4d9","dfnText":"padding-box","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-mask-clip-padding-box"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-padding-box"}, "anchor-point": {"dfnID":"anchor-point","dfnText":"anchor point","external":false,"refSections":[{"refs":[{"id":"ref-for-anchor-point"}],"title":"4. Motion Paths"},{"refs":[{"id":"ref-for-anchor-point\u2460"}],"title":"4.2. Position on the path: The offset-distance property"},{"refs":[{"id":"ref-for-anchor-point\u2461"},{"id":"ref-for-anchor-point\u2462"},{"id":"ref-for-anchor-point\u2463"},{"id":"ref-for-anchor-point\u2464"},{"id":"ref-for-anchor-point\u2465"},{"id":"ref-for-anchor-point\u2466"}],"title":"4.4. Define an anchor point: The offset-anchor property"},{"refs":[{"id":"ref-for-anchor-point\u2467"},{"id":"ref-for-anchor-point\u2468"},{"id":"ref-for-anchor-point\u2460\u24ea"}],"title":"4.5. Rotation at point: The offset-rotate property"},{"refs":[{"id":"ref-for-anchor-point\u2460\u2460"}],"title":"4.5.1. Calculating the path transform"}],"url":"#anchor-point"}, "b8a0ba74": {"dfnID":"b8a0ba74","dfnText":"position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-position"},{"id":"ref-for-propdef-position\u2460"},{"id":"ref-for-propdef-position\u2461"},{"id":"ref-for-propdef-position\u2462"}],"title":"4.3. Define the starting point of the path: The offset-position property"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-position"}, "bce13de7": {"dfnID":"bce13de7","dfnText":"<basic-shape>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-basic-shape"},{"id":"ref-for-typedef-basic-shape\u2460"},{"id":"ref-for-typedef-basic-shape\u2461"},{"id":"ref-for-typedef-basic-shape\u2462"}],"title":"4.1. Define a path: The offset-path property"},{"refs":[{"id":"ref-for-typedef-basic-shape\u2463"}],"title":"4.1.2. Examples Of <basic-shape> Positioning"}],"url":"https://drafts.csswg.org/css-shapes-1/#typedef-basic-shape"}, -"bd95103a": {"dfnID":"bd95103a","dfnText":"<size>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-size"},{"id":"ref-for-typedef-size\u2460"}],"title":"4.1. Define a path: The offset-path property"},{"refs":[{"id":"ref-for-typedef-size\u2461"}],"title":"Changes"}],"url":"https://www.w3.org/TR/css-images-3/#typedef-size"}, "c1b815c4": {"dfnID":"c1b815c4","dfnText":"ellipse()","external":true,"refSections":[{"refs":[{"id":"ref-for-funcdef-basic-shape-ellipse"}],"title":"4.1. Define a path: The offset-path property"}],"url":"https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-ellipse"}, "c62d98eb": {"dfnID":"c62d98eb","dfnText":"local coordinate system","external":true,"refSections":[{"refs":[{"id":"ref-for-local-coordinate-system"}],"title":"1. Introduction"}],"url":"https://drafts.csswg.org/css-transforms-1/#local-coordinate-system"}, "d27a809f": {"dfnID":"d27a809f","dfnText":"background-position","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-position"}],"title":"4.4. Define an anchor point: The offset-anchor property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position"}, @@ -3345,12 +3338,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let linkTitleData = { +"https://drafts.csswg.org/css-box-4/#typedef-coord-box": "Expands to: border-box | content-box | fill-box | padding-box | stroke-box | view-box", "https://drafts.csswg.org/css-shapes-1/#typedef-basic-shape": "Expands to: circle() | ellipse() | inset() | path() | polygon() | rect() | reference box | xywh()", "https://drafts.csswg.org/css-values-4/#angle-value": "Expands to: deg | grad | rad | turn", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", "https://drafts.csswg.org/css-values-4/#url-value": "Expands to: local url flag", -"https://drafts.fxtf.org/css-masking-1/#typedef-geometry-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", -"https://www.w3.org/TR/css-images-3/#typedef-size": "Expands to: <length-percentage>{2} | <length> | closest-corner | closest-side | farthest-corner | farthest-side | sides", +"https://drafts.fxtf.org/css-masking-1/#typedef-geometry-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | view-box", }; function setTypeTitles() { @@ -3485,9 +3478,8 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-content-box": {"export":true,"for_":["mask-clip"],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"content-box","type":"value","url":"https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-content-box"}, "https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-padding-box": {"export":true,"for_":["mask-clip"],"level":"1","normative":true,"shortname":"css-masking","spec":"css-masking-1","status":"current","text":"padding-box","type":"value","url":"https://drafts.fxtf.org/css-masking-1/#valdef-mask-clip-padding-box"}, "https://svgwg.org/svg2-draft/paths.html#TermPathDirection": {"export":false,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"direction of a path","type":"dfn","url":"https://svgwg.org/svg2-draft/paths.html#TermPathDirection"}, -"https://svgwg.org/svg2-draft/render.html#TermStackingContext": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"stacking contexts","type":"dfn","url":"https://svgwg.org/svg2-draft/render.html#TermStackingContext"}, "https://svgwg.org/svg2-draft/shapes.html#TermShapeElement": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"svg","spec":"svg2","status":"current","text":"shape elements","type":"dfn","url":"https://svgwg.org/svg2-draft/shapes.html#TermShapeElement"}, -"https://www.w3.org/TR/css-images-3/#typedef-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"snapshot","text":"<size>","type":"type","url":"https://www.w3.org/TR/css-images-3/#typedef-size"}, +"https://www.w3.org/TR/CSS21/visuren.html#x43": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"stacking context","type":"dfn","url":"https://www.w3.org/TR/CSS21/visuren.html#x43"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/w3c/geolocation-sensor/index.console.txt b/tests/github/w3c/geolocation-sensor/index.console.txt index 3f7ba0b3f0..30eecba73a 100644 --- a/tests/github/w3c/geolocation-sensor/index.console.txt +++ b/tests/github/w3c/geolocation-sensor/index.console.txt @@ -1,5 +1,9 @@ +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [GEOLOCATION-API]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINK ERROR: No 'idl' refs found for 'PermissionName'. {{PermissionName}} -LINE 130: No 'enum-value' refs found for '"geolocation"' with for='['PermissionName']'. +LINE 130: No 'enum-value' refs found for '"geolocation"'. <a bs-line-number="130" data-link-type="enum-value" data-link-for="PermissionName" data-lt='"geolocation"'>"geolocation"</a> +LINE 320: No 'enum-value' refs found for '"geolocation"'. +<a bs-line-number="320" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"geolocation"'>"geolocation"</a> LINE 109: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/geolocation-sensor/index.html b/tests/github/w3c/geolocation-sensor/index.html index 4819d2113e..77be3df8e1 100644 --- a/tests/github/w3c/geolocation-sensor/index.html +++ b/tests/github/w3c/geolocation-sensor/index.html @@ -5,7 +5,6 @@ <title>Geolocation Sensor</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/geolocation-sensor/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -764,7 +763,7 @@ <h1 class="p-name no-ref" id="title">Geolocation Sensor</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -784,15 +783,15 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[geolocation-sensor] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> - <p class="note" role="note"><span>Note:</span> The work on the Geolocation API <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a> has been concluded, and as such, any new feature development is happening in this Geolocation Sensor specification. The two specifications are expected to coexist.</p> + <p class="note" role="note"><span>Note:</span> The work on the Geolocation API <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a> has been concluded, and as such, any new feature development is happening in this Geolocation Sensor specification. The two specifications are expected to coexist.</p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -884,7 +883,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </span><span class="content">Introduction</span><a class="self-link" href="#intro"></a></h2> <p>The <code class="idl"><a data-link-type="idl" href="#geolocationsensor" id="ref-for-geolocationsensor①">GeolocationSensor</a></code> API extends the <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/sensors/#sensor" id="ref-for-sensor">Sensor</a></code> interface <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide information about the <a data-link-type="dfn" href="#geolocation" id="ref-for-geolocation①">geolocation</a> of the hosting device.</p> - <p>The feature set of the <code class="idl"><a data-link-type="idl" href="#geolocationsensor" id="ref-for-geolocationsensor②">GeolocationSensor</a></code> is similar to that of the Geolocation API <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a>, but it is surfaced through a modern API that is consistent across <a href="https://www.w3.org/das/roadmap">contemporary sensor APIs</a>, improves <a data-link-type="dfn" href="https://w3c.github.io/sensors#security-and-privacy" id="ref-for-security-and-privacy">security and privacy</a>, and is <a data-link-type="dfn" href="https://w3c.github.io/sensors#extensibility" id="ref-for-extensibility">extensible</a>. The API aims to be <a href="https://github.com/kenchris/sensor-polyfills/blob/master/src/geolocation-sensor.js">polyfillable</a> (<a href="https://kenchris.github.io/sensor-polyfills/run-geolocation.html">example</a>) + <p>The feature set of the <code class="idl"><a data-link-type="idl" href="#geolocationsensor" id="ref-for-geolocationsensor②">GeolocationSensor</a></code> is similar to that of the Geolocation API <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a>, but it is surfaced through a modern API that is consistent across <a href="https://www.w3.org/das/roadmap">contemporary sensor APIs</a>, improves <a data-link-type="dfn" href="https://w3c.github.io/sensors#security-and-privacy" id="ref-for-security-and-privacy">security and privacy</a>, and is <a data-link-type="dfn" href="https://w3c.github.io/sensors#extensibility" id="ref-for-extensibility">extensible</a>. The API aims to be <a href="https://github.com/kenchris/sensor-polyfills/blob/master/src/geolocation-sensor.js">polyfillable</a> (<a href="https://kenchris.github.io/sensor-polyfills/run-geolocation.html">example</a>) on top of the existing Geolocation API.</p> <h2 class="heading settled" data-level="2" id="examples"><span class="secno">2. </span><span class="content">Examples</span><a class="self-link" href="#examples"></a></h2> <p> Get a new geolocation reading every second: </p> @@ -1091,7 +1090,7 @@ <h2 class="heading settled" data-level="7" id="automation"><span class="secno">7 This section extends the <a data-link-type="dfn" href="https://w3c.github.io/sensors#automation" id="ref-for-automation">automation</a> section defined in the Generic Sensor API <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide mocking information about the <a data-link-type="dfn" href="#geolocation" id="ref-for-geolocation⑦">geolocation</a> of the hosting device for the purposes of testing a user agent’s implementation of <code class="idl"><a data-link-type="idl" href="#geolocationsensor" id="ref-for-geolocationsensor①⑤">GeolocationSensor</a></code> API. <h3 class="heading settled" data-level="7.1" id="mock-geolocation-sensor-type"><span class="secno">7.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-geolocation-sensor-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#geolocationsensor" id="ref-for-geolocationsensor①⑥">GeolocationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-geolocation" id="ref-for-dom-mocksensortype-geolocation">"geolocation"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#geolocationsensor" id="ref-for-geolocationsensor①⑥">GeolocationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"geolocation"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-geolocationreadingvalues"><code><c- g>GeolocationReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double⑦"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="GeolocationReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-geolocationreadingvalues-latitude"><code><c- g>latitude</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double⑧"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="GeolocationReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-geolocationreadingvalues-longitude"><code><c- g>longitude</c-></code></dfn>; @@ -1123,7 +1122,7 @@ <h3 class="heading settled" data-level="8.1" id="use-cases-categorization"><span <p>Getting a <strong>one-off geolocation fence alert</strong> (<em>aka.</em> background geofencing).</p> </ul> </ul> - <p class="note" role="note"><span class="marker">Note:</span> Only the <strong>foreground operations</strong> were possible with <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a>, + <p class="note" role="note"><span class="marker">Note:</span> Only the <strong>foreground operations</strong> were possible with <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a>, the <strong>background operations</strong> are completely novel.</p> <p>Core constraints when obtaining the gelocation are <strong>accuracy</strong> (<em>how close to the actual position of the user is the determined position</em>) and <strong>latency</strong> (<em>how long does the user want to wait for a result</em>). Both are tradeoffs: @@ -1300,7 +1299,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="3bc73758">"geolocation"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="66cd9d36">automation</span> @@ -1372,7 +1370,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-geolocation-api">[GEOLOCATION-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#SecureContext"><c- g>SecureContext</c-></a>, @@ -1628,7 +1626,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "1b956603": {"dfnID":"1b956603","dfnText":"Sensor","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-sensor\u2460"},{"id":"ref-for-sensor\u2461"}],"title":"4. Model"},{"refs":[{"id":"ref-for-sensor\u2462"}],"title":"5.1. The GeolocationSensor Interface"}],"url":"https://w3c.github.io/sensors/#sensor"}, "207de9db": {"dfnID":"207de9db","dfnText":"SensorOptions","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-sensoroptions"}],"title":"5.1. The GeolocationSensor Interface"}],"url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, "31db57e6": {"dfnID":"31db57e6","dfnText":"keys","external":true,"refSections":[{"refs":[{"id":"ref-for-map-getting-the-keys"}],"title":"4. Model"}],"url":"https://infra.spec.whatwg.org/#map-getting-the-keys"}, -"3bc73758": {"dfnID":"3bc73758","dfnText":"\"geolocation\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-geolocation"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-geolocation"}, "3d623128": {"dfnID":"3d623128","dfnText":"add the following abort steps","external":true,"refSections":[{"refs":[{"id":"ref-for-abortsignal-add"}],"title":"5.1.1. GeolocationSensor.read()"}],"url":"https://dom.spec.whatwg.org#abortsignal-add"}, "3e7f3108": {"dfnID":"3e7f3108","dfnText":"latest reading","external":true,"refSections":[{"refs":[{"id":"ref-for-latest-reading"}],"title":"4. Model"},{"refs":[{"id":"ref-for-latest-reading\u2460"},{"id":"ref-for-latest-reading\u2461"},{"id":"ref-for-latest-reading\u2462"},{"id":"ref-for-latest-reading\u2463"}],"title":"5.1.5. GeolocationSensor.accuracy"},{"refs":[{"id":"ref-for-latest-reading\u2464"},{"id":"ref-for-latest-reading\u2465"}],"title":"5.1.6. GeolocationSensor.altitudeAccuracy"}],"url":"https://w3c.github.io/sensors#latest-reading"}, "44637b0a": {"dfnID":"44637b0a","dfnText":"sensor type","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor-type"},{"id":"ref-for-sensor-type\u2460"}],"title":"4. Model"}],"url":"https://w3c.github.io/sensors#sensor-type"}, @@ -2117,7 +2114,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors#security-and-privacy": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"security and privacy","type":"dfn","url":"https://w3c.github.io/sensors#security-and-privacy"}, "https://w3c.github.io/sensors#sensor-type": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"sensor type","type":"dfn","url":"https://w3c.github.io/sensors#sensor-type"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-geolocation": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"geolocation\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-geolocation"}, "https://w3c.github.io/sensors/#dom-sensor-start": {"export":true,"for_":["Sensor"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"start()","type":"method","url":"https://w3c.github.io/sensors/#dom-sensor-start"}, "https://w3c.github.io/sensors/#dom-sensor-stop": {"export":true,"for_":["Sensor"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"stop()","type":"method","url":"https://w3c.github.io/sensors/#dom-sensor-stop"}, "https://w3c.github.io/sensors/#get-value-from-latest-reading": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"get value from latest reading","type":"dfn","url":"https://w3c.github.io/sensors/#get-value-from-latest-reading"}, diff --git a/tests/github/w3c/gyroscope/index.console.txt b/tests/github/w3c/gyroscope/index.console.txt index 46a509a809..1ce8e81e2e 100644 --- a/tests/github/w3c/gyroscope/index.console.txt +++ b/tests/github/w3c/gyroscope/index.console.txt @@ -1,5 +1,7 @@ -LINE 132: No 'enum-value' refs found for '"gyroscope"' with for='['PermissionName']'. +LINE 132: No 'enum-value' refs found for '"gyroscope"'. <a bs-line-number="132" data-link-type="enum-value" data-link-for="PermissionName" data-lt='"gyroscope"'>"gyroscope"</a> +LINE 244: No 'enum-value' refs found for '"gyroscope"'. +<a bs-line-number="244" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"gyroscope"'>"gyroscope"</a> LINE 109: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 274: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="274" data-dfn-type="dfn" id="conformant-user-agent" data-lt="conformant user agent" data-noexport="by-default" class="dfn-paneled">conformant user agent</dfn> diff --git a/tests/github/w3c/gyroscope/index.html b/tests/github/w3c/gyroscope/index.html index 084bb94676..0d73678cc2 100644 --- a/tests/github/w3c/gyroscope/index.html +++ b/tests/github/w3c/gyroscope/index.html @@ -5,7 +5,6 @@ <title>Gyroscope</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/gyroscope/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -764,7 +763,7 @@ <h1 class="p-name no-ref" id="title">Gyroscope</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -784,13 +783,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[gyroscope] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -960,7 +959,7 @@ <h2 class="heading settled" data-level="8" id="automation"><span class="secno">8 This section extends the <a data-link-type="dfn" href="https://w3c.github.io/sensors/#automation" id="ref-for-automation">automation</a> section defined in the Generic Sensor API <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide mocking information about the rate of rotation around the device’s local three primary axes for the purposes of testing a user agent’s implementation of <code class="idl"><a data-link-type="idl" href="#gyroscope" id="ref-for-gyroscope⑨">Gyroscope</a></code> API. <h3 class="heading settled" data-level="8.1" id="mock-gyroscope-type"><span class="secno">8.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-gyroscope-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#gyroscope" id="ref-for-gyroscope①⓪">Gyroscope</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-gyroscope" id="ref-for-dom-mocksensortype-gyroscope">"gyroscope"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#gyroscope" id="ref-for-gyroscope①⓪">Gyroscope</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"gyroscope"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-gyroscopereadingvalues"><code><c- g>GyroscopeReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double③"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="GyroscopeReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-gyroscopereadingvalues-x"><code><c- g>x</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double④"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="GyroscopeReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-gyroscopereadingvalues-y"><code><c- g>y</c-></code></dfn>; @@ -1037,7 +1036,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e4fa572d">"gyroscope"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="8b05f5b6">automation</span> @@ -1368,7 +1366,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "dom-gyroscopereadingvalues-y": {"dfnID":"dom-gyroscopereadingvalues-y","dfnText":"y","external":false,"refSections":[],"url":"#dom-gyroscopereadingvalues-y"}, "dom-gyroscopereadingvalues-z": {"dfnID":"dom-gyroscopereadingvalues-z","dfnText":"z","external":false,"refSections":[],"url":"#dom-gyroscopereadingvalues-z"}, "dom-gyroscopesensoroptions-referenceframe": {"dfnID":"dom-gyroscopesensoroptions-referenceframe","dfnText":"referenceFrame","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-gyroscopesensoroptions-referenceframe"}],"title":"7.1. Construct a Gyroscope object"}],"url":"#dom-gyroscopesensoroptions-referenceframe"}, -"e4fa572d": {"dfnID":"e4fa572d","dfnText":"\"gyroscope\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-gyroscope"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-gyroscope"}, "eed9938b": {"dfnID":"eed9938b","dfnText":"user identifying","external":true,"refSections":[{"refs":[{"id":"ref-for-user-identifying"}],"title":"4. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#user-identifying"}, "enumdef-gyroscopelocalcoordinatesystem": {"dfnID":"enumdef-gyroscopelocalcoordinatesystem","dfnText":"GyroscopeLocalCoordinateSystem","external":false,"refSections":[{"refs":[{"id":"ref-for-enumdef-gyroscopelocalcoordinatesystem"}],"title":"6.1. The Gyroscope Interface"}],"url":"#enumdef-gyroscopelocalcoordinatesystem"}, "f96b75e9": {"dfnID":"f96b75e9","dfnText":"sensor type","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor-type"},{"id":"ref-for-sensor-type\u2460"}],"title":"5. Model"}],"url":"https://w3c.github.io/sensors/#sensor-type"}, @@ -1783,7 +1780,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors/#default-sensor": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"default sensor","type":"dfn","url":"https://w3c.github.io/sensors/#default-sensor"}, "https://w3c.github.io/sensors/#device-fingerprinting": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"fingerprinting","type":"dfn","url":"https://w3c.github.io/sensors/#device-fingerprinting"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-gyroscope": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"gyroscope\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-gyroscope"}, "https://w3c.github.io/sensors/#eavesdropping": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"eavesdropping","type":"dfn","url":"https://w3c.github.io/sensors/#eavesdropping"}, "https://w3c.github.io/sensors/#get-value-from-latest-reading": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"get value from latest reading","type":"dfn","url":"https://w3c.github.io/sensors/#get-value-from-latest-reading"}, "https://w3c.github.io/sensors/#initialize-a-sensor-object": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"initialize a sensor object","type":"dfn","url":"https://w3c.github.io/sensors/#initialize-a-sensor-object"}, diff --git a/tests/github/w3c/longtasks/index.html b/tests/github/w3c/longtasks/index.html index 59c791a9f6..a87da81f0c 100644 --- a/tests/github/w3c/longtasks/index.html +++ b/tests/github/w3c/longtasks/index.html @@ -5,7 +5,6 @@ <title>Long Tasks API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/longtasks/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -983,7 +982,7 @@ <h1 class="p-name no-ref" id="title">Long Tasks API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -997,7 +996,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" Its publication here does not imply endorsement of its contents by W3C. Don’t cite this document other than as work in progress. </p> <p><a href="https://github.com/w3c/longtasks/issues">GitHub Issues</a> are preferred for discussion of this specification. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>If you wish to make comments regarding this document, please send them to <a href="mailto:public-web-perf@w3.org?subject=%5BLongTasks%5D">public-web-perf@w3.org</a> (<a href="mailto:public-web-perf-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-web-perf/">archives</a>) with <code>[LongTasks]</code> at the start of your email’s subject.</p> </div> @@ -1472,20 +1471,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1630,7 +1631,23 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-performancelongtasktiming-attribution"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming/attribution" title="The attribution readonly property of the PerformanceLongTaskTiming interface returns a sequence of TaskAttributionTiming instances.">PerformanceLongTaskTiming/attribution</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming/attribution" title="The attribution readonly property of the PerformanceLongTaskTiming interface returns an array of TaskAttributionTiming objects.">PerformanceLongTaskTiming/attribution</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>58+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-performancelongtasktiming-tojson"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming/toJSON" title="The toJSON() method of the PerformanceLongTaskTiming interface is a serializer; it returns a JSON representation of the PerformanceLongTaskTiming object.">PerformanceLongTaskTiming/toJSON</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>58+</span></span> @@ -1646,7 +1663,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="sec-PerformanceLongTaskTiming"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming" title="The PerformanceLongTaskTiming interface of the Long Tasks API reports instances of long tasks.">PerformanceLongTaskTiming</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformanceLongTaskTiming" title="The PerformanceLongTaskTiming interface provides information about tasks that occupy the UI thread for 50 milliseconds or more.">PerformanceLongTaskTiming</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>58+</span></span> @@ -1710,7 +1727,23 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-taskattributiontiming-containertype"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming/containerType" title="The containerType readonly property of the TaskAttributionTiming interface returns the type of frame container, one of iframe, embed, or object.">TaskAttributionTiming/containerType</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming/containerType" title="The containerType readonly property of the TaskAttributionTiming interface returns the type of the container, one of iframe, embed, or object.">TaskAttributionTiming/containerType</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>58+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-taskattributiontiming-tojson"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming/toJSON" title="The toJSON() method of the TaskAttributionTiming interface is a serializer; it returns a JSON representation of the TaskAttributionTiming object.">TaskAttributionTiming/toJSON</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>58+</span></span> @@ -1726,7 +1759,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="sec-TaskAttributionTiming"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming" title="The TaskAttributionTiming interface of the Long Tasks API returns information about the work involved in a long task and its associate frame context. The frame context, also called the container, is the iframe, embed or object that is being implicated, on the whole, for a long task.">TaskAttributionTiming</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TaskAttributionTiming" title="The TaskAttributionTiming interface returns information about the work involved in a long task and its associate frame context. The frame context, also called the container, is the iframe, embed or object that is being implicated, on the whole, for a long task.">TaskAttributionTiming</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>58+</span></span> diff --git a/tests/github/w3c/magnetometer/index.console.txt b/tests/github/w3c/magnetometer/index.console.txt index a471820027..b05cb41518 100644 --- a/tests/github/w3c/magnetometer/index.console.txt +++ b/tests/github/w3c/magnetometer/index.console.txt @@ -5,8 +5,12 @@ LINE 180: No 'dfn' refs found for 'limit maximum sampling frequency' that are ma <a bs-line-number="180" data-link-type="dfn" data-lt="limit maximum sampling frequency">limit maximum sampling frequency</a> LINE 181: No 'dfn' refs found for 'reduce accuracy' that are marked for export. <a bs-line-number="181" data-link-type="dfn" data-lt="reduce accuracy">reduce accuracy</a> -LINE 191: No 'enum-value' refs found for '"magnetometer"' with for='['PermissionName']'. +LINE 191: No 'enum-value' refs found for '"magnetometer"'. <a bs-line-number="191" data-link-type="enum-value" data-link-for="PermissionName" data-lt='"magnetometer"'>"magnetometer"</a> +LINE 383: No 'enum-value' refs found for '"magnetometer"'. +<a bs-line-number="383" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"magnetometer"'>"magnetometer"</a> +LINE 395: No 'enum-value' refs found for '"uncalibrated-magnetometer"'. +<a bs-line-number="395" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"uncalibrated-magnetometer"'>"uncalibrated-magnetometer"</a> LINE 162: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 520: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="520" data-dfn-type="dfn" id="conformant-user-agent" data-lt="conformant user agent" data-noexport="by-default" class="dfn-paneled">conformant user agent</dfn> diff --git a/tests/github/w3c/magnetometer/index.html b/tests/github/w3c/magnetometer/index.html index 30c17907b0..7bc5f8fadf 100644 --- a/tests/github/w3c/magnetometer/index.html +++ b/tests/github/w3c/magnetometer/index.html @@ -5,7 +5,6 @@ <title>Magnetometer</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/magnetometer/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -763,7 +762,7 @@ <h1 class="p-name no-ref" id="title">Magnetometer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -783,13 +782,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[magnetometer] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1031,14 +1030,14 @@ <h2 class="heading settled" data-level="7" id="automation"><span class="secno">7 This section extends the <a data-link-type="dfn" href="https://w3c.github.io/sensors/#automation" id="ref-for-automation">automation</a> section defined in the Generic Sensor API <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide mocking information about the <a data-link-type="dfn" href="#magnetic-field" id="ref-for-magnetic-field①②">magnetic field</a> in the X, Y and Z axis for the purposes of testing a user agent’s implementation of <code class="idl"><a data-link-type="idl" href="#magnetometer" id="ref-for-magnetometer①③">Magnetometer</a></code> and <code class="idl"><a data-link-type="idl" href="#uncalibratedmagnetometer" id="ref-for-uncalibratedmagnetometer①⑤">UncalibratedMagnetometer</a></code> APIs. <h3 class="heading settled" data-level="7.1" id="mock-magnetometer-type"><span class="secno">7.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-magnetometer-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#magnetometer" id="ref-for-magnetometer①④">Magnetometer</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-magnetometer" id="ref-for-dom-mocksensortype-magnetometer">"magnetometer"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#magnetometer" id="ref-for-magnetometer①④">Magnetometer</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"magnetometer"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-magnetometerreadingvalues"><code><c- g>MagnetometerReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double⑨"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="MagnetometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-magnetometerreadingvalues-x"><code><c- g>x</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double①⓪"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="MagnetometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-magnetometerreadingvalues-y"><code><c- g>y</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double①①"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="MagnetometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-magnetometerreadingvalues-z"><code><c- g>z</c-></code></dfn>; }; </pre> - <p>The <code class="idl"><a data-link-type="idl" href="#uncalibratedmagnetometer" id="ref-for-uncalibratedmagnetometer①⑥">UncalibratedMagnetometer</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type①">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-uncalibrated-magnetometer" id="ref-for-dom-mocksensortype-uncalibrated-magnetometer">"uncalibrated-magnetometer"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values①">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#uncalibratedmagnetometer" id="ref-for-uncalibratedmagnetometer①⑥">UncalibratedMagnetometer</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type①">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"uncalibrated-magnetometer"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values①">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-uncalibratedmagnetometerreadingvalues"><code><c- g>UncalibratedMagnetometerReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double①②"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="UncalibratedMagnetometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-uncalibratedmagnetometerreadingvalues-x"><code><c- g>x</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double①③"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="UncalibratedMagnetometerReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-uncalibratedmagnetometerreadingvalues-y"><code><c- g>y</c-></code></dfn>; @@ -1233,8 +1232,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="4879c0be">"magnetometer"</span> - <li><span class="dfn-paneled" id="ad795728">"uncalibrated-magnetometer"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="8b05f5b6">automation</span> @@ -1558,7 +1555,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "31f6aa50": {"dfnID":"31f6aa50","dfnText":"keystroke monitoring","external":true,"refSections":[{"refs":[{"id":"ref-for-keystroke-monitoring"}],"title":"3. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#keystroke-monitoring"}, "378064f9": {"dfnID":"378064f9","dfnText":"latest reading","external":true,"refSections":[{"refs":[{"id":"ref-for-latest-reading"},{"id":"ref-for-latest-reading\u2460"}],"title":"4. Model"}],"url":"https://w3c.github.io/sensors/#latest-reading"}, "40b81364": {"dfnID":"40b81364","dfnText":"sensor permission name","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor-permission-names"}],"title":"4. Model"}],"url":"https://w3c.github.io/sensors/#sensor-permission-names"}, -"4879c0be": {"dfnID":"4879c0be","dfnText":"\"magnetometer\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-magnetometer"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-magnetometer"}, "4acdbf1c": {"dfnID":"4acdbf1c","dfnText":"mock sensor reading values","external":true,"refSections":[{"refs":[{"id":"ref-for-mock-sensor-reading-values"},{"id":"ref-for-mock-sensor-reading-values\u2460"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#mock-sensor-reading-values"}, "5822d2f3": {"dfnID":"5822d2f3","dfnText":"check sensor policy-controlled features","external":true,"refSections":[{"refs":[{"id":"ref-for-check-sensor-policy-controlled-features"}],"title":"6.1. Construct a magnetometer object"}],"url":"https://w3c.github.io/sensors/#check-sensor-policy-controlled-features"}, "636bcfaf": {"dfnID":"636bcfaf","dfnText":"sensor readings","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor-reading"}],"title":"4.1. Reference Frame"}],"url":"https://w3c.github.io/sensors/#sensor-reading"}, @@ -1572,7 +1568,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "980252f2": {"dfnID":"980252f2","dfnText":"identifier","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-identifier"},{"id":"ref-for-dfn-identifier\u2460"}],"title":"6.1. Construct a magnetometer object"}],"url":"https://webidl.spec.whatwg.org/#dfn-identifier"}, "9d689cca": {"dfnID":"9d689cca","dfnText":"screen coordinate system","external":true,"refSections":[{"refs":[{"id":"ref-for-screen-coordinate-system"}],"title":"4.1. Reference Frame"},{"refs":[{"id":"ref-for-screen-coordinate-system\u2460"}],"title":"6.1. Construct a magnetometer object"}],"url":"https://w3c.github.io/accelerometer/#screen-coordinate-system"}, "a296510f": {"dfnID":"a296510f","dfnText":"mitigation strategies","external":true,"refSections":[{"refs":[{"id":"ref-for-mitigation-strategies"}],"title":"3. Security and Privacy Considerations"}],"url":"https://w3c.github.io/sensors/#mitigation-strategies"}, -"ad795728": {"dfnID":"ad795728","dfnText":"\"uncalibrated-magnetometer\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-uncalibrated-magnetometer"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-uncalibrated-magnetometer"}, "b4cfa5ce": {"dfnID":"b4cfa5ce","dfnText":"throw","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-throw"}],"title":"6.1. Construct a magnetometer object"}],"url":"https://webidl.spec.whatwg.org/#dfn-throw"}, "b75bb3bd": {"dfnID":"b75bb3bd","dfnText":"SecureContext","external":true,"refSections":[{"refs":[{"id":"ref-for-SecureContext"}],"title":"5.1. The Magnetometer Interface"},{"refs":[{"id":"ref-for-SecureContext\u2460"}],"title":"5.2. The UncalibratedMagnetometer Interface"}],"url":"https://webidl.spec.whatwg.org/#SecureContext"}, "c3b7f760": {"dfnID":"c3b7f760","dfnText":"mock sensor type","external":true,"refSections":[{"refs":[{"id":"ref-for-mock-sensor-type"},{"id":"ref-for-mock-sensor-type\u2460"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#mock-sensor-type"}, @@ -2041,8 +2036,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors/#automation": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"automation","type":"dfn","url":"https://w3c.github.io/sensors/#automation"}, "https://w3c.github.io/sensors/#check-sensor-policy-controlled-features": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"check sensor policy-controlled features","type":"dfn","url":"https://w3c.github.io/sensors/#check-sensor-policy-controlled-features"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-magnetometer": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"magnetometer\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-magnetometer"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-uncalibrated-magnetometer": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"uncalibrated-magnetometer\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-uncalibrated-magnetometer"}, "https://w3c.github.io/sensors/#get-value-from-latest-reading": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"get value from latest reading","type":"dfn","url":"https://w3c.github.io/sensors/#get-value-from-latest-reading"}, "https://w3c.github.io/sensors/#initialize-a-sensor-object": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"initialize a sensor object","type":"dfn","url":"https://w3c.github.io/sensors/#initialize-a-sensor-object"}, "https://w3c.github.io/sensors/#keystroke-monitoring": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"keystroke monitoring","type":"dfn","url":"https://w3c.github.io/sensors/#keystroke-monitoring"}, diff --git a/tests/github/w3c/media-capabilities/index.console.txt b/tests/github/w3c/media-capabilities/index.console.txt index d41256fe71..3d97461526 100644 --- a/tests/github/w3c/media-capabilities/index.console.txt +++ b/tests/github/w3c/media-capabilities/index.console.txt @@ -4,12 +4,14 @@ LINK ERROR: Ambiguous for-less link for 'MediaKeysRequirement', please see <http Local references: spec:encrypted-media; type:interface; for:EME; text:MediaKeysRequirement for-less references: -spec:encrypted-media; type:enum; for:/; text:MediaKeysRequirement +spec:encrypted-media-2; type:enum; for:/; text:MediaKeysRequirement +spec:encrypted-media-2; type:enum; for:/; text:MediaKeysRequirement <a data-link-type="idl-name" data-lt="MediaKeysRequirement">MediaKeysRequirement</a> LINK ERROR: Ambiguous for-less link for 'MediaKeySystemAccess', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:encrypted-media; type:interface; for:EME; text:MediaKeySystemAccess for-less references: -spec:encrypted-media; type:interface; for:/; text:MediaKeySystemAccess +spec:encrypted-media-2; type:interface; for:/; text:MediaKeySystemAccess +spec:encrypted-media-2; type:interface; for:/; text:MediaKeySystemAccess <a data-link-type="idl-name" data-lt="MediaKeySystemAccess">MediaKeySystemAccess</a> LINE 1183: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/media-capabilities/index.html b/tests/github/w3c/media-capabilities/index.html index e81fbd3ee0..e05067bb7a 100644 --- a/tests/github/w3c/media-capabilities/index.html +++ b/tests/github/w3c/media-capabilities/index.html @@ -5,7 +5,6 @@ <title>Media Capabilities</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/media-capabilities/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -704,7 +703,7 @@ <h1 class="p-name no-ref" id="title">Media Capabilities</h1> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/media-capabilities/">https://www.w3.org/TR/media-capabilities/</a> <dt>Previous Versions: - <dd><a href="https://www.w3.org/TR/2022/WD-media-capabilities-20221117/" rel="prev">https://www.w3.org/TR/2022/WD-media-capabilities-20221117/</a> + <dd><a href="https://www.w3.org/TR/2024/WD-media-capabilities-20240808/" rel="prev">https://www.w3.org/TR/2024/WD-media-capabilities-20240808/</a> <dt class="editor">Editors: <dd class="editor p-author h-card vcard" data-editor-id="45389"><span class="p-name fn">Mounir Lamouri</span> (<a class="p-org org" href="https://www.google.com/">Google Inc.</a>) <dd class="editor p-author h-card vcard" data-editor-id="114832"><span class="p-name fn">Chris Cunningham</span> (<a class="p-org org" href="https://www.google.com/">Google Inc.</a>) @@ -718,7 +717,7 @@ <h1 class="p-name no-ref" id="title">Media Capabilities</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -738,8 +737,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as an Editor’s Draft. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p> Publication as an Editor’s Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. </p> - <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/policies/patent-policy/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -908,7 +907,7 @@ <h4 class="heading settled" data-level="2.1.2" id="mediadecodingtype"><span clas to represent a configuration that is meant to be used for playback of a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/media-source/#mediasource" id="ref-for-mediasource">MediaSource</a></code> as defined in the <a data-link-type="biblio" href="#biblio-media-source" title="Media Source Extensions™">[media-source]</a> specification. <li><dfn class="dfn-paneled idl-code" data-dfn-for="MediaDecodingType" data-dfn-type="enum-value" data-export data-lt="&quot;webrtc&quot;|webrtc" id="dom-mediadecodingtype-webrtc"><code>webrtc</code></dfn> is used to - represent a configuration that is meant to be received using <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/webrtc/#interface-definition" id="ref-for-interface-definition">RTCPeerConnection</a></code> as defined in <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[webrtc]</a>). + represent a configuration that is meant to be received using <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/webrtc/#interface-definition" id="ref-for-interface-definition">RTCPeerConnection</a></code> as defined in <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[webrtc]</a>). </ul> <p></p> </section> @@ -924,7 +923,7 @@ <h4 class="heading settled" data-level="2.1.3" id="mediaencodingtype"><span clas <li><dfn class="dfn-paneled idl-code" data-dfn-for="MediaEncodingType" data-dfn-type="enum-value" data-export data-lt="&quot;record&quot;|record" id="dom-mediaencodingtype-record"><code>record</code></dfn> is used to represent a configuration for recording of media, <span class="informative">e.g. using <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediastream-recording/#mediarecorder" id="ref-for-mediarecorder">MediaRecorder</a></code> as defined in <a data-link-type="biblio" href="#biblio-mediastream-recording" title="MediaStream Recording">[mediastream-recording]</a></span>. <li><dfn class="dfn-paneled idl-code" data-dfn-for="MediaEncodingType" data-dfn-type="enum-value" data-export data-lt="&quot;webrtc&quot;|webrtc" id="dom-mediaencodingtype-webrtc"><code>webrtc</code></dfn> is used to - represent a configuration that is meant to be transmitted using <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/webrtc/#interface-definition" id="ref-for-interface-definition①">RTCPeerConnection</a></code> as defined in <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[webrtc]</a>). + represent a configuration that is meant to be transmitted using <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/webrtc/#interface-definition" id="ref-for-interface-definition①">RTCPeerConnection</a></code> as defined in <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[webrtc]</a>). </ul> <p></p> </section> @@ -1515,20 +1514,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1777,7 +1778,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-ecmascript">[ECMASCRIPT] <dd><a href="https://tc39.es/ecma262/multipage/"><cite>ECMAScript Language Specification</cite></a>. URL: <a href="https://tc39.es/ecma262/multipage/">https://tc39.es/ecma262/multipage/</a> <dt id="biblio-encrypted-media">[ENCRYPTED-MEDIA] - <dd>David Dorwin; et al. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> + <dd>Joey Parrish; Greg Freedman. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> <dt id="biblio-encrypted-media-draft">[ENCRYPTED-MEDIA-DRAFT] <dd><a href="https://w3c.github.io/encrypted-media"><cite>Encrypted Media Extensions</cite></a>. 13 December 2019. URL: <a href="https://w3c.github.io/encrypted-media">https://w3c.github.io/encrypted-media</a> <dt id="biblio-html">[HTML] @@ -1785,7 +1786,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-media-source">[MEDIA-SOURCE] - <dd>Matthew Wolenetz; et al. <a href="https://w3c.github.io/media-source/"><cite>Media Source Extensions™</cite></a>. URL: <a href="https://w3c.github.io/media-source/">https://w3c.github.io/media-source/</a> + <dd>Jean-Yves Avenard; Mark Watson. <a href="https://w3c.github.io/media-source/"><cite>Media Source Extensions™</cite></a>. URL: <a href="https://w3c.github.io/media-source/">https://w3c.github.io/media-source/</a> <dt id="biblio-mimesniff">[MIMESNIFF] <dd>Gordon P. Hemsley. <a href="https://mimesniff.spec.whatwg.org/"><cite>MIME Sniffing Standard</cite></a>. Living Standard. URL: <a href="https://mimesniff.spec.whatwg.org/">https://mimesniff.spec.whatwg.org/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -1803,18 +1804,18 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-battery-status">[BATTERY-STATUS] - <dd>Anssi Kostiainen; Mounir Lamouri; Raphael Kubo da Costa. <a href="https://w3c.github.io/battery/"><cite>Battery Status API</cite></a>. URL: <a href="https://w3c.github.io/battery/">https://w3c.github.io/battery/</a> + <dd>Anssi Kostiainen; Raphael Kubo da Costa. <a href="https://w3c.github.io/battery/"><cite>Battery Status API</cite></a>. URL: <a href="https://w3c.github.io/battery/">https://w3c.github.io/battery/</a> <dt id="biblio-media-playback-quality">[MEDIA-PLAYBACK-QUALITY] <dd>Mounir Lamouri. <a href="https://w3c.github.io/media-playback-quality/"><cite>Media Playback Quality</cite></a>. ED. URL: <a href="https://w3c.github.io/media-playback-quality/">https://w3c.github.io/media-playback-quality/</a> <dt id="biblio-mediastream-recording">[MEDIASTREAM-RECORDING] <dd>Miguel Casas-sanchez. <a href="https://w3c.github.io/mediacapture-record/"><cite>MediaStream Recording</cite></a>. URL: <a href="https://w3c.github.io/mediacapture-record/">https://w3c.github.io/mediacapture-record/</a> <dt id="biblio-rfc7231">[RFC7231] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-webrtc-svc">[WEBRTC-SVC] <dd>Bernard Aboba. <a href="https://w3c.github.io/webrtc-svc/"><cite>Scalable Video Coding (SVC) Extension for WebRTC</cite></a>. URL: <a href="https://w3c.github.io/webrtc-svc/">https://w3c.github.io/webrtc-svc/</a> </dl> diff --git a/tests/github/w3c/mediacapture-image/index.console.txt b/tests/github/w3c/mediacapture-image/index.console.txt index f80deaf5ab..6dc2d259bc 100644 --- a/tests/github/w3c/mediacapture-image/index.console.txt +++ b/tests/github/w3c/mediacapture-image/index.console.txt @@ -1,2 +1,4 @@ LINK ERROR: No 'idl' refs found for 'camera' with for='['PermissionName']'. {{PermissionName/camera}} +LINK ERROR: No 'idl' refs found for 'deviceId' with for='['DevicePermissionDescriptor']'. +{{DevicePermissionDescriptor/deviceId}} diff --git a/tests/github/w3c/mediacapture-image/index.html b/tests/github/w3c/mediacapture-image/index.html index 7177625ddc..ca1db8e959 100644 --- a/tests/github/w3c/mediacapture-image/index.html +++ b/tests/github/w3c/mediacapture-image/index.html @@ -5,7 +5,6 @@ <title>MediaStream Image Capture</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/image-capture/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -737,7 +736,7 @@ <h1 class="p-name no-ref" id="title">MediaStream Image Capture</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -758,11 +757,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1430,19 +1429,19 @@ <h2 class="heading settled" data-level="10" id="constrainable-properties"><span <li> <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="pan">Pan</dfn> is a numeric camera setting that controls the pan of the camera. The setting represents pan in arc seconds, which are 1/3600th of a degree. Values are in the range from -180*3600 arc seconds to +180*3600 arc seconds. Positive values pan the camera clockwise as viewed from above, and negative values pan the camera counter clockwise as viewed from above. <p>Constraints on pan influence camera selection through <a data-link-type="dfn" href="https://www.w3.org/TR/mediacapture-streams/#dfn-fitness-distance" id="ref-for-dfn-fitness-distance">fitness distance</a> toward cameras with the ability to pan. To exert this influence without overwriting the current pan setting, pan may be constrained to true. Conversely, constraining it to false disfavors cameras with the ability to pan.</p> - <p>Any algorithm which uses a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#idl-def-MediaTrackConstraintSet" id="ref-for-idl-def-MediaTrackConstraintSet③">MediaTrackConstraintSet</a></code> object whose <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-pan" id="ref-for-dom-mediatrackconstraintset-pan①">pan</a></code> dictionary member exists with a value other than false MUST either <a data-link-type="dfn" href="https://w3c.github.io/permissions/#dfn-request-permission-to-use" id="ref-for-dfn-request-permission-to-use⑥">request permission to use</a> (as defined in <a data-link-type="biblio" href="#biblio-permissions" title="Permissions">[permissions]</a>) a PermissionDescriptor with its name member set to <code class="idl"><a data-link-type="idl">camera</a></code> and its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom" id="ref-for-dom-cameradevicepermissiondescriptor-pantiltzoom⑥">panTiltZoom</a></code> member set to true, and, optionally, consider its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid" id="ref-for-dom-devicepermissiondescriptor-deviceid">deviceId</a></code> member set to any appropriate device’s deviceId, or decide not to expose the pan setting.</p> + <p>Any algorithm which uses a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#idl-def-MediaTrackConstraintSet" id="ref-for-idl-def-MediaTrackConstraintSet③">MediaTrackConstraintSet</a></code> object whose <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-pan" id="ref-for-dom-mediatrackconstraintset-pan①">pan</a></code> dictionary member exists with a value other than false MUST either <a data-link-type="dfn" href="https://w3c.github.io/permissions/#dfn-request-permission-to-use" id="ref-for-dfn-request-permission-to-use⑥">request permission to use</a> (as defined in <a data-link-type="biblio" href="#biblio-permissions" title="Permissions">[permissions]</a>) a PermissionDescriptor with its name member set to <code class="idl"><a data-link-type="idl">camera</a></code> and its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom" id="ref-for-dom-cameradevicepermissiondescriptor-pantiltzoom⑥">panTiltZoom</a></code> member set to true, and, optionally, consider its <code class="idl"><a data-link-type="idl">deviceId</a></code> member set to any appropriate device’s deviceId, or decide not to expose the pan setting.</p> <p>If the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/page-visibility/#dom-visibilitystate" id="ref-for-dom-visibilitystate">visibilityState</a></code> of the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context" id="ref-for-top-level-browsing-context">top-level browsing context</a> value is "hidden", the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#dom-mediastreamtrack-applyconstraints" id="ref-for-dom-mediastreamtrack-applyconstraints②">applyConstraints()</a></code> algorithm MUST throw a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#securityerror" id="ref-for-securityerror">SecurityError</a></code> if <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-pan" id="ref-for-dom-mediatrackconstraintset-pan②">pan</a></code> dictionary member exists with a value other than false.</p> <p></p> <li> <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="tilt">Tilt</dfn> is a numeric camera setting that controls the tilt of the camera. The setting represents tilt in arc seconds, which are 1/3600th of a degree. Values are in the range from -180*3600 arc seconds to +180*3600 arc seconds. Positive values tilt the camera upward when viewed from the front, and negative values tilt the camera downward as viewed from the front. <p>Constraints on tilt influence camera selection through <a data-link-type="dfn" href="https://www.w3.org/TR/mediacapture-streams/#dfn-fitness-distance" id="ref-for-dfn-fitness-distance①">fitness distance</a> toward cameras with the ability to tilt. To exert this influence without overwriting the current tilt setting, tilt may be constrained to true. Conversely, constraining it to false disfavors cameras with the ability to tilt.</p> - <p>Any algorithm which uses a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#idl-def-MediaTrackConstraintSet" id="ref-for-idl-def-MediaTrackConstraintSet④">MediaTrackConstraintSet</a></code> object whose <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-tilt" id="ref-for-dom-mediatrackconstraintset-tilt①">tilt</a></code> dictionary member exists with a value other than false MUST either <a data-link-type="dfn" href="https://w3c.github.io/permissions/#dfn-request-permission-to-use" id="ref-for-dfn-request-permission-to-use⑦">request permission to use</a> (as defined in <a data-link-type="biblio" href="#biblio-permissions" title="Permissions">[permissions]</a>) a PermissionDescriptor with its name member set to <code class="idl"><a data-link-type="idl">camera</a></code> and its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom" id="ref-for-dom-cameradevicepermissiondescriptor-pantiltzoom⑦">panTiltZoom</a></code> member set to true, and, optionally, consider its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid" id="ref-for-dom-devicepermissiondescriptor-deviceid①">deviceId</a></code> member set to any appropriate device’s deviceId, or decide not to expose the tilt setting.</p> + <p>Any algorithm which uses a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#idl-def-MediaTrackConstraintSet" id="ref-for-idl-def-MediaTrackConstraintSet④">MediaTrackConstraintSet</a></code> object whose <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-tilt" id="ref-for-dom-mediatrackconstraintset-tilt①">tilt</a></code> dictionary member exists with a value other than false MUST either <a data-link-type="dfn" href="https://w3c.github.io/permissions/#dfn-request-permission-to-use" id="ref-for-dfn-request-permission-to-use⑦">request permission to use</a> (as defined in <a data-link-type="biblio" href="#biblio-permissions" title="Permissions">[permissions]</a>) a PermissionDescriptor with its name member set to <code class="idl"><a data-link-type="idl">camera</a></code> and its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom" id="ref-for-dom-cameradevicepermissiondescriptor-pantiltzoom⑦">panTiltZoom</a></code> member set to true, and, optionally, consider its <code class="idl"><a data-link-type="idl">deviceId</a></code> member set to any appropriate device’s deviceId, or decide not to expose the tilt setting.</p> <p>If the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/page-visibility/#dom-visibilitystate" id="ref-for-dom-visibilitystate①">visibilityState</a></code> of the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context" id="ref-for-top-level-browsing-context①">top-level browsing context</a> value is "hidden", the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#dom-mediastreamtrack-applyconstraints" id="ref-for-dom-mediastreamtrack-applyconstraints③">applyConstraints()</a></code> algorithm MUST throw a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#securityerror" id="ref-for-securityerror①">SecurityError</a></code> if <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-tilt" id="ref-for-dom-mediatrackconstraintset-tilt②">tilt</a></code> dictionary member exists with a value other than false.</p> <div class="note" role="note"> There is no defined order when applying <a data-link-type="dfn" href="#pan" id="ref-for-pan①①">pan</a> and <a data-link-type="dfn" href="#tilt" id="ref-for-tilt①①">tilt</a>, the UA is allowed to apply them in any order. In practice this should not matter since these values are absolute, so order will not affect the final position. However, if applying pan and tilt is slow enough, the order in which they are applied may be visually noticeable. </div> <li> <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="zoom">Zoom</dfn> is a numeric camera setting that controls the focal length of the lens. The setting usually represents a ratio, e.g. 4 is a zoom ratio of 4:1. The minimum value is usually 1, to represent a 1:1 ratio (i.e. no zoom). <p>Constraints on zoom influence camera selection through <a data-link-type="dfn" href="https://www.w3.org/TR/mediacapture-streams/#dfn-fitness-distance" id="ref-for-dfn-fitness-distance②">fitness distance</a> toward cameras with the ability to zoom. To exert this influence without overwriting the current zoom setting, zoom may be constrained to true. Conversely, constraining it to false disfavors cameras with the ability to zoom.</p> - <p>Any algorithm which uses a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#idl-def-MediaTrackConstraintSet" id="ref-for-idl-def-MediaTrackConstraintSet⑤">MediaTrackConstraintSet</a></code> object whose <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-zoom" id="ref-for-dom-mediatrackconstraintset-zoom①">zoom</a></code> dictionary member exists with a value other than false MUST either <a data-link-type="dfn" href="https://w3c.github.io/permissions/#dfn-request-permission-to-use" id="ref-for-dfn-request-permission-to-use⑧">request permission to use</a> (as defined in <a data-link-type="biblio" href="#biblio-permissions" title="Permissions">[permissions]</a>) a PermissionDescriptor with its name member set to <code class="idl"><a data-link-type="idl">camera</a></code> and its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom" id="ref-for-dom-cameradevicepermissiondescriptor-pantiltzoom⑧">panTiltZoom</a></code> member set to true, and, optionally, consider its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid" id="ref-for-dom-devicepermissiondescriptor-deviceid②">deviceId</a></code> member set to any appropriate device’s deviceId, or decide not to expose the zoom setting.</p> + <p>Any algorithm which uses a <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#idl-def-MediaTrackConstraintSet" id="ref-for-idl-def-MediaTrackConstraintSet⑤">MediaTrackConstraintSet</a></code> object whose <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-zoom" id="ref-for-dom-mediatrackconstraintset-zoom①">zoom</a></code> dictionary member exists with a value other than false MUST either <a data-link-type="dfn" href="https://w3c.github.io/permissions/#dfn-request-permission-to-use" id="ref-for-dfn-request-permission-to-use⑧">request permission to use</a> (as defined in <a data-link-type="biblio" href="#biblio-permissions" title="Permissions">[permissions]</a>) a PermissionDescriptor with its name member set to <code class="idl"><a data-link-type="idl">camera</a></code> and its <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom" id="ref-for-dom-cameradevicepermissiondescriptor-pantiltzoom⑧">panTiltZoom</a></code> member set to true, and, optionally, consider its <code class="idl"><a data-link-type="idl">deviceId</a></code> member set to any appropriate device’s deviceId, or decide not to expose the zoom setting.</p> <p>If the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/page-visibility/#dom-visibilitystate" id="ref-for-dom-visibilitystate②">visibilityState</a></code> of the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context" id="ref-for-top-level-browsing-context②">top-level browsing context</a> value is "hidden", the <code class="idl"><a data-link-type="idl" href="https://www.w3.org/TR/mediacapture-streams/#dom-mediastreamtrack-applyconstraints" id="ref-for-dom-mediastreamtrack-applyconstraints④">applyConstraints()</a></code> algorithm MUST throw a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#securityerror" id="ref-for-securityerror②">SecurityError</a></code> if <code class="idl"><a data-link-type="idl" href="#dom-mediatrackconstraintset-zoom" id="ref-for-dom-mediatrackconstraintset-zoom②">zoom</a></code> dictionary member exists with a value other than false.</p> <p></p> <li><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="fill-light-mode">Fill light mode</dfn> describes the flash setting of the capture device (e.g. <code>auto</code>, <code>off</code>, <code>on</code>). <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="torch">Torch</dfn> describes the setting of the source’s fill light as continuously connected, staying on as long as <code class="idl"><a data-link-type="idl" href="#dom-imagecapture-track" id="ref-for-dom-imagecapture-track①⑤">track</a></code> is active. @@ -1744,20 +1743,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2032,7 +2033,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[GETUSERMEDIA]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d9520ae8">MediaStream</span> - <li><span class="dfn-paneled" id="1e050024">deviceId</span> <li><span class="dfn-paneled" id="e565999c">panTiltZoom</span> </ul> <li> @@ -2450,7 +2450,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "use strict"; { let dfnPanelData = { -"1e050024": {"dfnID":"1e050024","dfnText":"deviceId","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-devicepermissiondescriptor-deviceid"},{"id":"ref-for-dom-devicepermissiondescriptor-deviceid\u2460"},{"id":"ref-for-dom-devicepermissiondescriptor-deviceid\u2461"}],"title":"10. Photo Capabilities and Constrainable Properties"}],"url":"https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid"}, "20852484": {"dfnID":"20852484","dfnText":"required constraints","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-required-constraints"}],"title":"10. Photo Capabilities and Constrainable Properties"}],"url":"https://www.w3.org/TR/mediacapture-streams/#dfn-required-constraints"}, "2219cf9a": {"dfnID":"2219cf9a","dfnText":"kind","external":true,"refSections":[{"refs":[{"id":"ref-for-widl-MediaStreamTrack-kind"}],"title":"3.2. Methods"}],"url":"https://www.w3.org/TR/mediacapture-streams/#widl-MediaStreamTrack-kind"}, "2adbe8fd": {"dfnID":"2adbe8fd","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-imagebitmap-height"}],"title":"3.2. Methods"}],"url":"https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#dom-imagebitmap-height"}, @@ -3156,7 +3155,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#imagebitmap": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"ImageBitmap","type":"interface","url":"https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#imagebitmap"}, "https://w3c.github.io/FileAPI/#dfn-Blob": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"Blob","type":"interface","url":"https://w3c.github.io/FileAPI/#dfn-Blob"}, "https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom": {"export":true,"for_":["CameraDevicePermissionDescriptor"],"level":"1","normative":true,"shortname":"mediacapture-streams","spec":"mediacapture-streams","status":"current","text":"panTiltZoom","type":"dict-member","url":"https://w3c.github.io/mediacapture-main/#dom-cameradevicepermissiondescriptor-pantiltzoom"}, -"https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid": {"export":true,"for_":["DevicePermissionDescriptor"],"level":"1","normative":true,"shortname":"mediacapture-streams","spec":"mediacapture-streams","status":"current","text":"deviceId","type":"dict-member","url":"https://w3c.github.io/mediacapture-main/#dom-devicepermissiondescriptor-deviceid"}, "https://w3c.github.io/mediacapture-main/#dom-mediastream": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"mediacapture-streams","spec":"mediacapture-streams","status":"current","text":"MediaStream","type":"interface","url":"https://w3c.github.io/mediacapture-main/#dom-mediastream"}, "https://w3c.github.io/permissions/#dfn-request-permission-to-use": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"permissions","spec":"permissions","status":"current","text":"requesting permission to use","type":"dfn","url":"https://w3c.github.io/permissions/#dfn-request-permission-to-use"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, diff --git a/tests/github/w3c/mediacapture-record/MediaRecorder.html b/tests/github/w3c/mediacapture-record/MediaRecorder.html index 2db77ac60c..0584f7098e 100644 --- a/tests/github/w3c/mediacapture-record/MediaRecorder.html +++ b/tests/github/w3c/mediacapture-record/MediaRecorder.html @@ -5,7 +5,6 @@ <title>MediaStream Recording</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/mediastream-recording/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -780,7 +779,7 @@ <h1 class="p-name no-ref" id="title">MediaStream Recording</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -801,11 +800,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1180,7 +1179,7 @@ <h3 class="heading settled" data-level="2.3" id="mediarecorder-methods"><span cl <ol> <li>Resume (or continue) gathering data into the current <var>blob</var>. <li>Let <var>target</var> be the MediaRecorder context object. <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-fire" id="ref-for-concept-event-fire⑦">Fire - an event</a> named <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-fetch-resume" id="ref-for-concept-fetch-resume">resume</a> at <var>target</var>. + an event</a> named <a data-link-type="dfn" href="https://w3c.github.io/webdriver-bidi/#resume" id="ref-for-resume">resume</a> at <var>target</var>. </ol> <li>return <code>undefined</code>. </ol> @@ -1694,11 +1693,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="2bc0cdf4">EventTarget</span> <li><span class="dfn-paneled" id="5fd23811">fire an event</span> </ul> - <li> - <a data-link-type="biblio">[FETCH]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="851a073b">resumed</span> - </ul> <li> <a data-link-type="biblio">[FileAPI]</a> defines the following terms: <ul> @@ -1712,6 +1706,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="a72449dd">in parallel</span> <li><span class="dfn-paneled" id="65181da8">secure context</span> </ul> + <li> + <a data-link-type="biblio">[WEBDRIVER-BIDI]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="696104f4">resume</span> + </ul> <li> <a data-link-type="biblio">[WEBIDL]</a> defines the following terms: <ul> @@ -1734,8 +1733,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dl> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> - <dt id="biblio-fetch">[FETCH] - <dd>Anne van Kesteren. <a href="https://fetch.spec.whatwg.org/"><cite>Fetch Standard</cite></a>. Living Standard. URL: <a href="https://fetch.spec.whatwg.org/">https://fetch.spec.whatwg.org/</a> <dt id="biblio-fileapi">[FileAPI] <dd>Marijn Kruisselbrink. <a href="https://w3c.github.io/FileAPI/"><cite>File API</cite></a>. URL: <a href="https://w3c.github.io/FileAPI/">https://w3c.github.io/FileAPI/</a> <dt id="biblio-getusermedia">[GETUSERMEDIA] @@ -1746,6 +1743,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-rfc2046">[RFC2046] <dd>N. Freed; N. Borenstein. <a href="https://www.rfc-editor.org/rfc/rfc2046"><cite>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</cite></a>. November 1996. Draft Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc2046">https://www.rfc-editor.org/rfc/rfc2046</a> + <dt id="biblio-webdriver-bidi">[WEBDRIVER-BIDI] + <dd><a href="https://w3c.github.io/webdriver-bidi/"><cite>WebDriver BiDi</cite></a>. Editor's Draft. URL: <a href="https://w3c.github.io/webdriver-bidi/">https://w3c.github.io/webdriver-bidi/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -2036,9 +2035,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "610b91f5": {"dfnID":"610b91f5","dfnText":"MediaStreamTrack","external":true,"refSections":[{"refs":[{"id":"ref-for-mediastreamtrack"}],"title":"1. Overview"},{"refs":[{"id":"ref-for-mediastreamtrack\u2460"}],"title":"4.1. General principles"},{"refs":[{"id":"ref-for-mediastreamtrack\u2461"}],"title":"4.3. Exception Summary"},{"refs":[{"id":"ref-for-mediastreamtrack\u2462"}],"title":"7.2. Recording webcam video and audio"}],"url":"https://www.w3.org/TR/mediacapture-streams/#mediastreamtrack"}, "65181da8": {"dfnID":"65181da8","dfnText":"secure context","external":true,"refSections":[{"refs":[{"id":"ref-for-secure-context"}],"title":"6. Privacy and Security Considerations"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#secure-context"}, "6777aaf6": {"dfnID":"6777aaf6","dfnText":"active fingerprinting","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-active-fingerprinting"}],"title":"6.2. Fingerprinting"}],"url":"https://www.w3.org/TR/fingerprinting-guidance/#dfn-active-fingerprinting"}, +"696104f4": {"dfnID":"696104f4","dfnText":"resume","external":true,"refSections":[{"refs":[{"id":"ref-for-resume"}],"title":"2.3. Methods"}],"url":"https://w3c.github.io/webdriver-bidi/#resume"}, "797018a7": {"dfnID":"797018a7","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"},{"id":"ref-for-invalidstateerror\u2460"},{"id":"ref-for-invalidstateerror\u2461"},{"id":"ref-for-invalidstateerror\u2462"}],"title":"2.3. Methods"},{"refs":[{"id":"ref-for-invalidstateerror\u2463"}],"title":"4.3. Exception Summary"}],"url":"https://webidl.spec.whatwg.org/#invalidstateerror"}, "81dd847b": {"dfnID":"81dd847b","dfnText":"UnknownError","external":true,"refSections":[{"refs":[{"id":"ref-for-unknownerror"}],"title":"2.3. Methods"}],"url":"https://webidl.spec.whatwg.org/#unknownerror"}, -"851a073b": {"dfnID":"851a073b","dfnText":"resumed","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-fetch-resume"}],"title":"2.3. Methods"}],"url":"https://fetch.spec.whatwg.org/#concept-fetch-resume"}, "85f64689": {"dfnID":"85f64689","dfnText":"muted","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mediastreamtrack-muted"}],"title":"2.3. Methods"}],"url":"https://www.w3.org/TR/mediacapture-streams/#dom-mediastreamtrack-muted"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"2. Media Recorder API"},{"refs":[{"id":"ref-for-Exposed\u2460"}],"title":"3. Blob Event"},{"refs":[{"id":"ref-for-Exposed\u2461"}],"title":"4.2. MediaRecorderErrorEvent"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "95042a38": {"dfnID":"95042a38","dfnText":"inactive","external":true,"refSections":[{"refs":[{"id":"ref-for-stream-inactive"}],"title":"2.3. Methods"}],"url":"https://www.w3.org/TR/mediacapture-streams/#stream-inactive"}, @@ -2571,13 +2570,13 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://dom.spec.whatwg.org/#dictdef-eventinit": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventInit","type":"dictionary","url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, "https://dom.spec.whatwg.org/#event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Event","type":"interface","url":"https://dom.spec.whatwg.org/#event"}, "https://dom.spec.whatwg.org/#eventtarget": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventTarget","type":"interface","url":"https://dom.spec.whatwg.org/#eventtarget"}, -"https://fetch.spec.whatwg.org/#concept-fetch-resume": {"export":true,"for_":["fetch"],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"resumed","type":"dfn","url":"https://fetch.spec.whatwg.org/#concept-fetch-resume"}, "https://heycam.github.io/webidl/#idl-DOMString": {"export":true,"for_":[],"level":"","normative":true,"shortname":"webidl","spec":"webidl","status":"anchor-block","text":"DOMString","type":"interface","url":"https://heycam.github.io/webidl/#idl-DOMString"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "https://html.spec.whatwg.org/multipage/webappapis.html#eventhandler": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"EventHandler","type":"typedef","url":"https://html.spec.whatwg.org/multipage/webappapis.html#eventhandler"}, "https://html.spec.whatwg.org/multipage/webappapis.html#secure-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"secure context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#secure-context"}, "https://w3c.github.io/FileAPI/#dfn-Blob": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"Blob","type":"interface","url":"https://w3c.github.io/FileAPI/#dfn-Blob"}, "https://w3c.github.io/FileAPI/#dfn-type": {"export":true,"for_":["Blob"],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"type","type":"attribute","url":"https://w3c.github.io/FileAPI/#dfn-type"}, +"https://w3c.github.io/webdriver-bidi/#resume": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webdriver-bidi","spec":"webdriver-bidi","status":"current","text":"resume","type":"dfn","url":"https://w3c.github.io/webdriver-bidi/#resume"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#SameObject": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SameObject","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#SameObject"}, "https://webidl.spec.whatwg.org/#idl-DOMException": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"DOMException","type":"interface","url":"https://webidl.spec.whatwg.org/#idl-DOMException"}, diff --git a/tests/github/w3c/mediacapture-transform/index.html b/tests/github/w3c/mediacapture-transform/index.html index 6febfa7558..634f889477 100644 --- a/tests/github/w3c/mediacapture-transform/index.html +++ b/tests/github/w3c/mediacapture-transform/index.html @@ -5,7 +5,6 @@ <title>MediaStreamTrack Insertable Media Processing using Streams</title> <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/mediacapture-insertable-streams/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -710,7 +709,7 @@ <h1 class="p-name no-ref" id="title">MediaStreamTrack Insertable Media Processin </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -757,7 +756,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -776,7 +774,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> </nav> <main> <h2 class="heading settled" data-level="1" id="introduction"><span class="secno">1. </span><span class="content">Introduction</span><a class="self-link" href="#introduction"></a></h2> - <p>The <a data-link-type="biblio" href="#biblio-webrtc-nv-use-cases" title="WebRTC Next Version Use Cases">[WEBRTC-NV-USE-CASES]</a> document describes several functions that + <p>The <a data-link-type="biblio" href="#biblio-webrtc-nv-use-cases" title="WebRTC Extended Use Cases">[WEBRTC-NV-USE-CASES]</a> document describes several functions that can only be achieved by access to media (requirements N20-N22), including, but not limited to:</p> <ul> @@ -1026,20 +1024,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1131,7 +1115,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-mediacapture-screen-share">[MEDIACAPTURE-SCREEN-SHARE] <dd><a href="https://w3c.github.io/mediacapture-screen-share/"><cite>Screen Capture</cite></a>. URL: <a href="https://w3c.github.io/mediacapture-screen-share/">https://w3c.github.io/mediacapture-screen-share/</a> <dt id="biblio-webrtc-nv-use-cases">[WEBRTC-NV-USE-CASES] - <dd>Bernard Aboba. <a href="https://w3c.github.io/webrtc-nv-use-cases/"><cite>WebRTC Next Version Use Cases</cite></a>. URL: <a href="https://w3c.github.io/webrtc-nv-use-cases/">https://w3c.github.io/webrtc-nv-use-cases/</a> + <dd>Bernard Aboba. <a href="https://w3c.github.io/webrtc-nv-use-cases/"><cite>WebRTC Extended Use Cases</cite></a>. URL: <a href="https://w3c.github.io/webrtc-nv-use-cases/">https://w3c.github.io/webrtc-nv-use-cases/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def"><c- b>interface</c-> <a href="#mediastreamtrackprocessor"><code><c- g>MediaStreamTrackProcessor</c-></code></a> { diff --git a/tests/github/w3c/mediasession/index.html b/tests/github/w3c/mediasession/index.html index 54078898d0..f4f1f28676 100644 --- a/tests/github/w3c/mediasession/index.html +++ b/tests/github/w3c/mediasession/index.html @@ -5,7 +5,6 @@ <title>Media Session Standard</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/mediasession/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -740,7 +739,7 @@ <h1 class="p-name no-ref" id="title">Media Session Standard</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -760,8 +759,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as an Editor’s Draft. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p> Publication as an Editor’s Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. </p> - <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/policies/patent-policy/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -843,7 +842,7 @@ <h2 class="heading settled" data-level="2" id="conformance"><span class="secno"> user agent must invoke its internal API for that attribute or method so that e.g. the author can’t change the behavior by overriding attributes or methods with custom properties or functions in JavaScript.</p> - <p>Unless otherwise stated, string comparisons are done in a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive">case-sensitive</a> manner.</p> + <p>Unless otherwise stated, string comparisons are done in a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive">case-sensitive</a> manner.</p> <h2 class="heading settled" data-level="3" id="dependencies"><span class="secno">3. </span><span class="content">Dependencies</span><a class="self-link" href="#dependencies"></a></h2> <p>The IDL fragments in this specification must be interpreted as required for conforming IDL fragments, as described in the Web IDL specification. <a data-link-type="biblio" href="#biblio-webidl" title="Web IDL Standard">[WEBIDL]</a></p> @@ -1754,7 +1753,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e5906a26">case-sensitive</span> + <li><span class="dfn-paneled" id="86c3e5ca">case-sensitive</span> </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: @@ -2102,6 +2101,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "6d8611a2": {"dfnID":"6d8611a2","dfnText":"dictionary members","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-dictionary-member"},{"id":"ref-for-dfn-dictionary-member\u2460"},{"id":"ref-for-dfn-dictionary-member\u2461"}],"title":"8. The MediaImage dictionary"},{"refs":[{"id":"ref-for-dfn-dictionary-member\u2462"},{"id":"ref-for-dfn-dictionary-member\u2463"},{"id":"ref-for-dfn-dictionary-member\u2464"}],"title":"9. The MediaPositionState\ndictionary"},{"refs":[{"id":"ref-for-dfn-dictionary-member\u2465"},{"id":"ref-for-dfn-dictionary-member\u2466"},{"id":"ref-for-dfn-dictionary-member\u2467"},{"id":"ref-for-dfn-dictionary-member\u2468"}],"title":"10. The\nMediaSessionActionDetails dictionary"}],"url":"https://webidl.spec.whatwg.org/#dfn-dictionary-member"}, "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"},{"id":"ref-for-ascii-case-insensitive\u2460"}],"title":"8. The MediaImage dictionary"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "82ca3efc": {"dfnID":"82ca3efc","dfnText":"TypeError","external":true,"refSections":[{"refs":[{"id":"ref-for-exceptiondef-typeerror"},{"id":"ref-for-exceptiondef-typeerror\u2460"},{"id":"ref-for-exceptiondef-typeerror\u2461"},{"id":"ref-for-exceptiondef-typeerror\u2462"}],"title":"6. The MediaSession interface"},{"refs":[{"id":"ref-for-exceptiondef-typeerror\u2463"}],"title":"7. The MediaMetadata interface"}],"url":"https://webidl.spec.whatwg.org/#exceptiondef-typeerror"}, +"86c3e5ca": {"dfnID":"86c3e5ca","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-case-sensitive"}],"title":"2. Conformance"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"},{"id":"ref-for-idl-DOMString\u2460"},{"id":"ref-for-idl-DOMString\u2461"},{"id":"ref-for-idl-DOMString\u2462"},{"id":"ref-for-idl-DOMString\u2463"},{"id":"ref-for-idl-DOMString\u2464"}],"title":"7. The MediaMetadata interface"},{"refs":[{"id":"ref-for-idl-DOMString\u2465"},{"id":"ref-for-idl-DOMString\u2466"}],"title":"8. The MediaImage dictionary"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"},{"id":"ref-for-Exposed\u2460"}],"title":"6. The MediaSession interface"},{"refs":[{"id":"ref-for-Exposed\u2461"}],"title":"7. The MediaMetadata interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "8c800cdf": {"dfnID":"8c800cdf","dfnText":"double","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-double"},{"id":"ref-for-idl-double\u2460"},{"id":"ref-for-idl-double\u2461"}],"title":"9. The MediaPositionState\ndictionary"},{"refs":[{"id":"ref-for-idl-double\u2462"},{"id":"ref-for-idl-double\u2463"}],"title":"10. The\nMediaSessionActionDetails dictionary"}],"url":"https://webidl.spec.whatwg.org/#idl-double"}, @@ -2173,7 +2173,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "dom-mediasessionplaybackstate-playing": {"dfnID":"dom-mediasessionplaybackstate-playing","dfnText":"playing","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-mediasessionplaybackstate-playing"},{"id":"ref-for-dom-mediasessionplaybackstate-playing\u2460"},{"id":"ref-for-dom-mediasessionplaybackstate-playing\u2461"}],"title":"5.1. Playback State"},{"refs":[{"id":"ref-for-dom-mediasessionplaybackstate-playing\u2462"},{"id":"ref-for-dom-mediasessionplaybackstate-playing\u2463"}],"title":"5.4. Actions"},{"refs":[{"id":"ref-for-dom-mediasessionplaybackstate-playing\u2464"}],"title":"6. The MediaSession interface"}],"url":"#dom-mediasessionplaybackstate-playing"}, "dom-navigator-mediasession": {"dfnID":"dom-navigator-mediasession","dfnText":"mediaSession","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-navigator-mediasession"}],"title":"6. The MediaSession interface"}],"url":"#dom-navigator-mediasession"}, "duration": {"dfnID":"duration","dfnText":"duration","external":false,"refSections":[{"refs":[{"id":"ref-for-duration"},{"id":"ref-for-duration\u2460"},{"id":"ref-for-duration\u2461"}],"title":"5.5. Position State"},{"refs":[{"id":"ref-for-duration\u2462"}],"title":"9. The MediaPositionState\ndictionary"}],"url":"#duration"}, -"e5906a26": {"dfnID":"e5906a26","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-def_case_sensitive"}],"title":"2. Conformance"}],"url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, "ee7bba09": {"dfnID":"ee7bba09","dfnText":"response","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response"},{"id":"ref-for-concept-response\u2460"}],"title":"5.3. Metadata"}],"url":"https://fetch.spec.whatwg.org/#concept-response"}, "empty-metadata": {"dfnID":"empty-metadata","dfnText":"empty metadata","external":false,"refSections":[{"refs":[{"id":"ref-for-empty-metadata"}],"title":"5.3. Metadata"}],"url":"#empty-metadata"}, "enumdef-mediasessionaction": {"dfnID":"enumdef-mediasessionaction","dfnText":"MediaSessionAction","external":false,"refSections":[{"refs":[{"id":"ref-for-enumdef-mediasessionaction"}],"title":"5.4. Actions"},{"refs":[{"id":"ref-for-enumdef-mediasessionaction\u2460"}],"title":"6. The MediaSession interface"},{"refs":[{"id":"ref-for-enumdef-mediasessionaction\u2461"}],"title":"10. The\nMediaSessionActionDetails dictionary"}],"url":"#enumdef-mediasessionaction"}, @@ -2685,7 +2684,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://mimesniff.spec.whatwg.org/#mime-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"mimesniff","spec":"mimesniff","status":"current","text":"mime type","type":"dfn","url":"https://mimesniff.spec.whatwg.org/#mime-type"}, "https://tc39.es/ecma262/#sec-object.freeze": {"export":true,"for_":[],"level":"","normative":true,"shortname":"webidl","spec":"webidl","status":"anchor-block","text":"freeze","type":"dfn","url":"https://tc39.es/ecma262/#sec-object.freeze"}, "https://url.spec.whatwg.org/#concept-url-parser": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"url","spec":"url","status":"current","text":"url parser","type":"dfn","url":"https://url.spec.whatwg.org/#concept-url-parser"}, -"https://w3c.github.io/i18n-glossary/#def_case_sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, +"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#SameObject": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SameObject","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#SameObject"}, "https://webidl.spec.whatwg.org/#dfn-create-frozen-array": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"create a frozen array","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-frozen-array"}, diff --git a/tests/github/w3c/motion-sensors/index.html b/tests/github/w3c/motion-sensors/index.html index 31c366f94b..e3e2cba058 100644 --- a/tests/github/w3c/motion-sensors/index.html +++ b/tests/github/w3c/motion-sensors/index.html @@ -5,7 +5,6 @@ <title>Motion Sensors Explainer</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/motion-sensors/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -723,7 +722,7 @@ <h1 class="p-name no-ref" id="title">Motion Sensors Explainer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -745,13 +744,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[motion-sensors] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.console.txt b/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.console.txt index 0dd721c58f..5f07bafb3e 100644 --- a/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.console.txt +++ b/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.console.txt @@ -1,7 +1,4 @@ LINE 5: Unknown metadata key "#Level". Prefix custom keys with "!". -FATAL ERROR: Not all required metadata was provided: - Missing a 'Level' entry. - Must provide at least one 'Issue Tracking' entry. LINE 201: Multiple elements have the same ID 'w3c_process_revision'. Deduping, but this ID may not be stable across revisions. LINE 225: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.html b/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.html index 707b45ed45..9985225c13 100644 --- a/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.html +++ b/tests/github/w3c/motion-sensors/releases/NOTE/NOTE.html @@ -5,7 +5,6 @@ <title>Motion Sensors Explainer</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/motion-sensors/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -723,7 +722,7 @@ <h1 class="p-name no-ref" id="title">Motion Sensors Explainer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -736,7 +735,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p><em>This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index</a> at https://www.w3.org/TR/.</em></p> - <p data-deliverer="43696"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Note + <p data-deliverer="43696"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. </p> <p> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5Bmotion-sensors%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>). When sending e-mail, @@ -746,8 +745,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> Group Notes are not endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> nor its Members. </p> - <p> The <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> The <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1234,13 +1233,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-accelerometer">[ACCELEROMETER] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 18 October 2022. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 7 June 2024. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> <dt id="biblio-generic-sensor">[GENERIC-SENSOR] - <dd>Rick Waldron. <a href="https://www.w3.org/TR/generic-sensor/"><cite>Generic Sensor API</cite></a>. 27 January 2023. CR. URL: <a href="https://www.w3.org/TR/generic-sensor/">https://www.w3.org/TR/generic-sensor/</a> + <dd>Rick Waldron. <a href="https://www.w3.org/TR/generic-sensor/"><cite>Generic Sensor API</cite></a>. 22 February 2024. CR. URL: <a href="https://www.w3.org/TR/generic-sensor/">https://www.w3.org/TR/generic-sensor/</a> <dt id="biblio-gyroscope">[GYROSCOPE] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 7 December 2021. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 8 January 2024. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> <dt id="biblio-magnetometer">[MAGNETOMETER] - <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 7 December 2021. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> + <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 15 May 2024. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> <dt id="biblio-orientation-sensor">[ORIENTATION-SENSOR] <dd>Mikhail Pozdnyakov; Alexander Shalamov; Kenneth Rohde Christiansen; Anssi Kostiainen. <a href="https://www.w3.org/TR/orientation-sensor/"><cite>Orientation Sensor</cite></a>. URL: <a href="https://www.w3.org/TR/orientation-sensor/">https://www.w3.org/TR/orientation-sensor/</a> </dl> diff --git a/tests/github/w3c/motion-sensors/releases/NOTE2/index.console.txt b/tests/github/w3c/motion-sensors/releases/NOTE2/index.console.txt index 46456c85dc..87bb876559 100644 --- a/tests/github/w3c/motion-sensors/releases/NOTE2/index.console.txt +++ b/tests/github/w3c/motion-sensors/releases/NOTE2/index.console.txt @@ -1,5 +1,3 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINE 200: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. WARNING: The following locally-defined biblio entries are unused and can be removed: * QUATERNIONS diff --git a/tests/github/w3c/motion-sensors/releases/NOTE2/index.html b/tests/github/w3c/motion-sensors/releases/NOTE2/index.html index d401dae0bd..24a87699d2 100644 --- a/tests/github/w3c/motion-sensors/releases/NOTE2/index.html +++ b/tests/github/w3c/motion-sensors/releases/NOTE2/index.html @@ -5,7 +5,6 @@ <title>Motion Sensors Explainer</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/motion-sensors/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -725,7 +724,7 @@ <h1 class="p-name no-ref" id="title">Motion Sensors Explainer</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -738,7 +737,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p><em>This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index</a> at https://www.w3.org/TR/.</em></p> - <p data-deliverer="43696"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Note + <p data-deliverer="43696"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. </p> <p> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5Bmotion-sensors%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>). When sending e-mail, @@ -748,8 +747,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> Group Notes are not endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> nor its Members. </p> - <p> The <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> The <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1214,13 +1213,13 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-accelerometer">[ACCELEROMETER] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 18 October 2022. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 7 June 2024. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> <dt id="biblio-generic-sensor">[GENERIC-SENSOR] - <dd>Rick Waldron. <a href="https://www.w3.org/TR/generic-sensor/"><cite>Generic Sensor API</cite></a>. 27 January 2023. CR. URL: <a href="https://www.w3.org/TR/generic-sensor/">https://www.w3.org/TR/generic-sensor/</a> + <dd>Rick Waldron. <a href="https://www.w3.org/TR/generic-sensor/"><cite>Generic Sensor API</cite></a>. 22 February 2024. CR. URL: <a href="https://www.w3.org/TR/generic-sensor/">https://www.w3.org/TR/generic-sensor/</a> <dt id="biblio-gyroscope">[GYROSCOPE] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 7 December 2021. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 8 January 2024. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> <dt id="biblio-magnetometer">[MAGNETOMETER] - <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 7 December 2021. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> + <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 15 May 2024. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> <dt id="biblio-orientation-sensor">[ORIENTATION-SENSOR] <dd>Mikhail Pozdnyakov; Alexander Shalamov; Kenneth Rohde Christiansen; Anssi Kostiainen. <a href="https://www.w3.org/TR/orientation-sensor/"><cite>Orientation Sensor</cite></a>. URL: <a href="https://www.w3.org/TR/orientation-sensor/">https://www.w3.org/TR/orientation-sensor/</a> </dl> diff --git a/tests/github/w3c/openscreenprotocol/index.console.txt b/tests/github/w3c/openscreenprotocol/index.console.txt index 084f494c82..dc7f491f9f 100644 --- a/tests/github/w3c/openscreenprotocol/index.console.txt +++ b/tests/github/w3c/openscreenprotocol/index.console.txt @@ -49,7 +49,7 @@ LINE ~625: No 'dfn' refs found for 'auth-initiation-token' that are marked for e [=auth-initiation-token=] LINE ~633: No 'dfn' refs found for 'auth-capabilities' that are marked for export. [=auth-capabilities=] -LINE ~681: No 'dfn' refs found for 'auth-spake2-need-psk' that are marked for export. +LINE ~681: No 'dfn' refs found for 'auth-spake2-need-psk'. [=auth-spake2-need-psk=] LINE ~681: No 'dfn' refs found for 'auth-spake2-handshake' that are marked for export. [=auth-spake2-handshake=] @@ -63,7 +63,7 @@ LINE ~686: No 'dfn' refs found for 'auth-spake2-confirmation' that are marked fo [=auth-spake2-confirmation=] LINE ~692: No 'dfn' refs found for 'auth-spake2-handshake' that are marked for export. [=auth-spake2-handshake=] -LINE ~698: No 'dfn' refs found for 'auth-spake2-need-psk' that are marked for export. +LINE ~698: No 'dfn' refs found for 'auth-spake2-need-psk'. [=auth-spake2-need-psk=] LINE ~704: No 'dfn' refs found for 'auth-spake2-handshake' that are marked for export. [=auth-spake2-handshake=] @@ -255,7 +255,7 @@ LINE ~1501: No 'dfn' refs found for 'remote-playback-start-response' that are ma [=remote-playback-start-response=] LINE ~1507: No 'dfn' refs found for 'remote-playback-start-response' that are marked for export. [=remote-playback-start-response=] -LINE ~1513: No 'dfn' refs found for 'media-time' that are marked for export. +LINE ~1513: No 'dfn' refs found for 'media-time'. [=media-time=] LINE ~1523: No 'dfn' refs found for 'remote-playback-start-response' that are marked for export. [=remote-playback-start-response=] @@ -273,9 +273,9 @@ LINE ~1593: No 'dfn' refs found for 'remote-playback-state-event' that are marke [=remote-playback-state-event=] LINE ~1606: No 'dfn' refs found for 'remote-playback-termination-request' that are marked for export. [=remote-playback-termination-request=] -LINE ~33: No 'dfn' refs found for 'streaming-capabilities-request' that are marked for export. +LINE ~32: No 'dfn' refs found for 'streaming-capabilities-request' that are marked for export. [=streaming-capabilities-request=] -LINE ~33: No 'dfn' refs found for 'streaming-capabilities-response' that are marked for export. +LINE ~32: No 'dfn' refs found for 'streaming-capabilities-response' that are marked for export. [=streaming-capabilities-response=] LINE ~1719: No 'dfn' refs found for 'streaming-session-start-request' that are marked for export. [=streaming-session-start-request=] diff --git a/tests/github/w3c/openscreenprotocol/index.html b/tests/github/w3c/openscreenprotocol/index.html index cb193cfae0..601e3045c2 100644 --- a/tests/github/w3c/openscreenprotocol/index.html +++ b/tests/github/w3c/openscreenprotocol/index.html @@ -3,9 +3,8 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Open Screen Protocol</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/openscreenprotocol/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -583,7 +582,7 @@ <h1 class="p-name no-ref" id="title">Open Screen Protocol</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -599,9 +598,9 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> This document was published by the <a href="https://www.w3.org/groups/wg/secondscreen">Second Screen Working Group</a> as an Editor’s Draft. This document is intended to become a W3C Recommendation. </p> <p> Feedback and comments on this specification are welcome. Please use <a href="https://github.com/w3c/openscreenprotocol/issues">Github issues</a>. </p> <p> Publication as an Editor’s Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> - <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy-20200915/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential - Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/policies/patent-policy/20200915/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/74168/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential + Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -3096,20 +3095,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3148,7 +3149,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="732fbcbd">fastSeek(time)</span> <li><span class="dfn-paneled" id="eacd6596">getStartDate()</span> <li><span class="dfn-paneled" id="1c76c896">loop</span> - <li><span class="dfn-paneled" id="c0e5df6d">media elements</span> + <li><span class="dfn-paneled" id="03499e48">media element</span> <li><span class="dfn-paneled" id="9e0b0141">media error code</span> <li><span class="dfn-paneled" id="8d87f944">muted</span> <li><span class="dfn-paneled" id="552e1f12">networkState</span> @@ -3251,7 +3252,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-presentation-api">[PRESENTATION-API] - <dd>Mark Foltz; Dominik Röttsches. <a href="https://w3c.github.io/presentation-api/"><cite>Presentation API</cite></a>. URL: <a href="https://w3c.github.io/presentation-api/">https://w3c.github.io/presentation-api/</a> + <dd>Mark Foltz. <a href="https://w3c.github.io/presentation-api/"><cite>Presentation API</cite></a>. URL: <a href="https://w3c.github.io/presentation-api/">https://w3c.github.io/presentation-api/</a> <dt id="biblio-remote-playback">[REMOTE-PLAYBACK] <dd>Mark Foltz. <a href="https://w3c.github.io/remote-playback/"><cite>Remote Playback API</cite></a>. URL: <a href="https://w3c.github.io/remote-playback/">https://w3c.github.io/remote-playback/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -3514,6 +3515,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let dfnPanelData = { "01ac4615": {"dfnID":"01ac4615","dfnText":"controlling user agent","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-controlling-user-agent"}],"title":"1.1. Terminology"},{"refs":[{"id":"ref-for-dfn-controlling-user-agent\u2460"},{"id":"ref-for-dfn-controlling-user-agent\u2461"}],"title":"7.1. Presentation API"}],"url":"https://w3c.github.io/presentation-api/#dfn-controlling-user-agent"}, +"03499e48": {"dfnID":"03499e48","dfnText":"media element","external":true,"refSections":[{"refs":[{"id":"ref-for-media-element"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-media-element\u2460"}],"title":"1.1. Terminology"}],"url":"https://html.spec.whatwg.org/multipage/media.html#media-element"}, "03cd5764": {"dfnID":"03cd5764","dfnText":"audioTracks","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-media-audiotracks"}],"title":"8. Remote Playback Protocol"},{"refs":[{"id":"ref-for-dom-media-audiotracks\u2460"},{"id":"ref-for-dom-media-audiotracks\u2461"}],"title":"8.1. Remote Playback State and Controls"}],"url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-audiotracks"}, "06b254b0": {"dfnID":"06b254b0","dfnText":"remote playback devices","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-remote-playback-devices"}],"title":"1.1. Terminology"},{"refs":[{"id":"ref-for-dfn-remote-playback-devices\u2460"},{"id":"ref-for-dfn-remote-playback-devices\u2461"},{"id":"ref-for-dfn-remote-playback-devices\u2462"}],"title":"8.2. Remote Playback API"}],"url":"https://w3c.github.io/remote-playback/#dfn-remote-playback-devices"}, "09153fed": {"dfnID":"09153fed","dfnText":"codecs parameter","external":true,"refSections":[{"refs":[{"id":"ref-for-section-3"}],"title":"9.1. Streaming Protocol Capabilities"},{"refs":[{"id":"ref-for-section-3\u2460"}],"title":"9.2. Sessions"}],"url":"https://tools.ietf.org/html/rfc6381#section-3"}, @@ -3567,7 +3569,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b33ccea5": {"dfnID":"b33ccea5","dfnText":"variable-length integer encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-section-16"}],"title":"3. Discovery with mDNS"},{"refs":[{"id":"ref-for-section-16\u2460"},{"id":"ref-for-section-16\u2461"}],"title":"5. Messages delivery using CBOR and QUIC streams"},{"refs":[{"id":"ref-for-section-16\u2462"}],"title":"Appendix B: Message Type Key Ranges"}],"url":"https://tools.ietf.org/html/draft-ietf-quic-transport-34#section-16"}, "ba8a9b31": {"dfnID":"ba8a9b31","dfnText":"error","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-media-error"}],"title":"8. Remote Playback Protocol"},{"refs":[{"id":"ref-for-dom-media-error\u2460"}],"title":"8.1. Remote Playback State and Controls"}],"url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-error"}, "be4088c1": {"dfnID":"be4088c1","dfnText":"compatible remote playback device","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-compatible-remote-playback-device"}],"title":"8. Remote Playback Protocol"}],"url":"https://w3c.github.io/remote-playback/#dfn-compatible-remote-playback-device"}, -"c0e5df6d": {"dfnID":"c0e5df6d","dfnText":"media elements","external":true,"refSections":[{"refs":[{"id":"ref-for-media-element"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-media-element\u2460"}],"title":"1.1. Terminology"}],"url":"https://html.spec.whatwg.org/multipage/media.html#media-element"}, "c1d9078d": {"dfnID":"c1d9078d","dfnText":"transport parameter encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-section-18"}],"title":"4.3. Metadata Discovery"}],"url":"https://tools.ietf.org/html/draft-ietf-quic-transport-34#section-18"}, "c5013a3b": {"dfnID":"c5013a3b","dfnText":"media element state","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-media-element-state"}],"title":"2.3. Remote Playback API Requirements"}],"url":"https://w3c.github.io/remote-playback/#dfn-media-element-state"}, "cb19d8be": {"dfnID":"cb19d8be","dfnText":"postMessage(message, targetOrigin, transfer)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-window-postmessage"}],"title":"12.1.4. Same-Origin Policy Violations"}],"url":"https://html.spec.whatwg.org/multipage/web-messaging.html#dom-window-postmessage"}, @@ -4029,7 +4030,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/media.html#dom-video-videowidth": {"export":true,"for_":["HTMLVideoElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"videoWidth","type":"attribute","url":"https://html.spec.whatwg.org/multipage/media.html#dom-video-videowidth"}, "https://html.spec.whatwg.org/multipage/media.html#event-media-stalled": {"export":true,"for_":["HTMLMediaElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"stalled","type":"event","url":"https://html.spec.whatwg.org/multipage/media.html#event-media-stalled"}, "https://html.spec.whatwg.org/multipage/media.html#htmlmediaelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLMediaElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/media.html#htmlmediaelement"}, -"https://html.spec.whatwg.org/multipage/media.html#media-element": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"media elements","type":"dfn","url":"https://html.spec.whatwg.org/multipage/media.html#media-element"}, +"https://html.spec.whatwg.org/multipage/media.html#media-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"media element","type":"dfn","url":"https://html.spec.whatwg.org/multipage/media.html#media-element"}, "https://html.spec.whatwg.org/multipage/media.html#official-playback-position": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"official playback position","type":"dfn","url":"https://html.spec.whatwg.org/multipage/media.html#official-playback-position"}, "https://html.spec.whatwg.org/multipage/media.html#poster-frame": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"poster frame","type":"dfn","url":"https://html.spec.whatwg.org/multipage/media.html#poster-frame"}, "https://html.spec.whatwg.org/multipage/media.html#timeline-offset": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"timeline offset","type":"dfn","url":"https://html.spec.whatwg.org/multipage/media.html#timeline-offset"}, diff --git a/tests/github/w3c/orientation-sensor/index.console.txt b/tests/github/w3c/orientation-sensor/index.console.txt index 42cd024a71..be02b9cc6b 100644 --- a/tests/github/w3c/orientation-sensor/index.console.txt +++ b/tests/github/w3c/orientation-sensor/index.console.txt @@ -1,4 +1,8 @@ LINE 373: Image doesn't exist, so I couldn't determine its width and height: 'images/quaternion_to_rotation_matrix.png' +LINE 507: No 'enum-value' refs found for '"absolute-orientation"'. +<a bs-line-number="507" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"absolute-orientation"'>"absolute-orientation"</a> +LINE 517: No 'enum-value' refs found for '"relative-orientation"'. +<a bs-line-number="517" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"relative-orientation"'>"relative-orientation"</a> LINE 189: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 544: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="544" data-dfn-type="dfn" id="conformant-user-agent" data-lt="conformant user agent" data-noexport="by-default" class="dfn-paneled">conformant user agent</dfn> diff --git a/tests/github/w3c/orientation-sensor/index.html b/tests/github/w3c/orientation-sensor/index.html index 0b92900e8e..5fb21f116a 100644 --- a/tests/github/w3c/orientation-sensor/index.html +++ b/tests/github/w3c/orientation-sensor/index.html @@ -5,7 +5,6 @@ <title>Orientation Sensor</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/orientation-sensor/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -766,7 +765,7 @@ <h1 class="p-name no-ref" id="title">Orientation Sensor</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -786,13 +785,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[orientation-sensor] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1198,12 +1197,12 @@ <h2 class="heading settled" data-level="8" id="automation"><span class="secno">8 dimensional Cartesian coordinate system for the purposes of testing a user agent’s implementation of <code class="idl"><a data-link-type="idl" href="#absoluteorientationsensor" id="ref-for-absoluteorientationsensor⑧">AbsoluteOrientationSensor</a></code> and <code class="idl"><a data-link-type="idl" href="#relativeorientationsensor" id="ref-for-relativeorientationsensor⑥">RelativeOrientationSensor</a></code> APIs. <h3 class="heading settled" data-level="8.1" id="mock-orientation-sensor-type"><span class="secno">8.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-orientation-sensor-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#absoluteorientationsensor" id="ref-for-absoluteorientationsensor⑨">AbsoluteOrientationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-absolute-orientation" id="ref-for-dom-mocksensortype-absolute-orientation">"absolute-orientation"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#absoluteorientationsensor" id="ref-for-absoluteorientationsensor⑨">AbsoluteOrientationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"absolute-orientation"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-absoluteorientationreadingvalues"><code><c- g>AbsoluteOrientationReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-frozen-array" id="ref-for-idl-frozen-array②"><c- b>FrozenArray</c-></a>&lt;<a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double①"><c- b>double</c-></a>>? <dfn class="dfn-paneled idl-code" data-dfn-for="AbsoluteOrientationReadingValues" data-dfn-type="dict-member" data-export data-type="FrozenArray<double>?" id="dom-absoluteorientationreadingvalues-quaternion"><code><c- g>quaternion</c-></code></dfn>; }; </pre> - <p>The <code class="idl"><a data-link-type="idl" href="#relativeorientationsensor" id="ref-for-relativeorientationsensor⑦">RelativeOrientationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type①">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-relative-orientation" id="ref-for-dom-mocksensortype-relative-orientation">"relative-orientation"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values①">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#relativeorientationsensor" id="ref-for-relativeorientationsensor⑦">RelativeOrientationSensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-type" id="ref-for-mock-sensor-type①">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"relative-orientation"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors/#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values①">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-relativeorientationreadingvalues"><code><c- g>RelativeOrientationReadingValues</c-></code></dfn> : <a data-link-type="idl-name" href="#dictdef-absoluteorientationreadingvalues" id="ref-for-dictdef-absoluteorientationreadingvalues"><c- n>AbsoluteOrientationReadingValues</c-></a> { }; </pre> @@ -1286,8 +1285,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="1405315e">"absolute-orientation"</span> - <li><span class="dfn-paneled" id="0fe98df2">"relative-orientation"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="8b05f5b6">automation</span> @@ -1628,10 +1625,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "0026f53f": {"dfnID":"0026f53f","dfnText":"initialize a sensor object","external":true,"refSections":[{"refs":[{"id":"ref-for-initialize-a-sensor-object"}],"title":"7.1. Construct an Orientation Sensor object"}],"url":"https://w3c.github.io/sensors/#initialize-a-sensor-object"}, "0a296dfe": {"dfnID":"0a296dfe","dfnText":"Float32Array","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-Float32Array"}],"title":"6.1. The OrientationSensor Interface"},{"refs":[{"id":"ref-for-idl-Float32Array\u2460"},{"id":"ref-for-idl-Float32Array\u2461"}],"title":"6.1.2. OrientationSensor.populateMatrix()"}],"url":"https://webidl.spec.whatwg.org/#idl-Float32Array"}, "0be3911e": {"dfnID":"0be3911e","dfnText":"NotReadableError","external":true,"refSections":[{"refs":[{"id":"ref-for-notreadableerror"}],"title":"6.1.2. OrientationSensor.populateMatrix()"}],"url":"https://webidl.spec.whatwg.org/#notreadableerror"}, -"0fe98df2": {"dfnID":"0fe98df2","dfnText":"\"relative-orientation\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-relative-orientation"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-relative-orientation"}, "10634796": {"dfnID":"10634796","dfnText":"relative orientation sensor","external":true,"refSections":[{"refs":[{"id":"ref-for-relative-orientation"}],"title":"5.2. The RelativeOrientationSensor Model"}],"url":"https://w3c.github.io/motion-sensors/#relative-orientation"}, "13f5be19": {"dfnID":"13f5be19","dfnText":"supported sensor options","external":true,"refSections":[{"refs":[{"id":"ref-for-supported-sensor-options"}],"title":"6.2. The AbsoluteOrientationSensor Interface"},{"refs":[{"id":"ref-for-supported-sensor-options\u2460"}],"title":"6.3. The RelativeOrientationSensor Interface"}],"url":"https://w3c.github.io/sensors/#supported-sensor-options"}, -"1405315e": {"dfnID":"1405315e","dfnText":"\"absolute-orientation\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-absolute-orientation"}],"title":"8.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-absolute-orientation"}, "1422ec4e": {"dfnID":"1422ec4e","dfnText":"interface","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-interface"},{"id":"ref-for-dfn-interface\u2460"},{"id":"ref-for-dfn-interface\u2461"}],"title":"7.1. Construct an Orientation Sensor object"}],"url":"https://webidl.spec.whatwg.org/#dfn-interface"}, "1b956603": {"dfnID":"1b956603","dfnText":"Sensor","external":true,"refSections":[{"refs":[{"id":"ref-for-sensor"},{"id":"ref-for-sensor\u2460"}],"title":"5. Model"},{"refs":[{"id":"ref-for-sensor\u2461"}],"title":"6.1. The OrientationSensor Interface"}],"url":"https://w3c.github.io/sensors/#sensor"}, "207de9db": {"dfnID":"207de9db","dfnText":"SensorOptions","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-sensoroptions"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-dictdef-sensoroptions\u2460"}],"title":"6.1. The OrientationSensor Interface"}],"url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, @@ -2117,8 +2112,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors/#automation": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"automation","type":"dfn","url":"https://w3c.github.io/sensors/#automation"}, "https://w3c.github.io/sensors/#check-sensor-policy-controlled-features": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"check sensor policy-controlled features","type":"dfn","url":"https://w3c.github.io/sensors/#check-sensor-policy-controlled-features"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-absolute-orientation": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"absolute-orientation\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-absolute-orientation"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-relative-orientation": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"relative-orientation\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-relative-orientation"}, "https://w3c.github.io/sensors/#dom-sensor-onerror": {"export":true,"for_":["Sensor"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"onerror","type":"attribute","url":"https://w3c.github.io/sensors/#dom-sensor-onerror"}, "https://w3c.github.io/sensors/#dom-sensor-start": {"export":true,"for_":["Sensor"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"start()","type":"method","url":"https://w3c.github.io/sensors/#dom-sensor-start"}, "https://w3c.github.io/sensors/#equivalent": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"equivalent","type":"dfn","url":"https://w3c.github.io/sensors/#equivalent"}, diff --git a/tests/github/w3c/orientation-sensor/releases/FPWD.console.txt b/tests/github/w3c/orientation-sensor/releases/FPWD.console.txt index 84cf81af22..71fcf36b32 100644 --- a/tests/github/w3c/orientation-sensor/releases/FPWD.console.txt +++ b/tests/github/w3c/orientation-sensor/releases/FPWD.console.txt @@ -1,29 +1,10 @@ LINE 5: Unknown metadata key "#Level". Prefix custom keys with "!". FATAL ERROR: Not all required metadata was provided: - Missing a 'Level' entry. - Must provide at least one 'Issue Tracking' entry. + Missing 'Level' FATAL ERROR: The [Constructor] extended attribute (on AbsoluteOrientationSensor) is deprecated, please switch to a constructor() method. LINE 270: Image doesn't exist, so I couldn't determine its width and height: 'images/quaternion_to_rotation_matrix.png' LINK ERROR: No 'idl-name' refs found for 'void'. <a data-link-type="idl-name" data-lt="void">void</a> -LINE ~285: Multiple possible 'throw' dfn refs. -Arbitrarily chose https://webidl.spec.whatwg.org/#dfn-throw -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:webidl; type:dfn; text:throw -spec:webcryptoapi; type:dfn; text:throw -[=throw=] -LINE ~287: Multiple possible 'throw' dfn refs. -Arbitrarily chose https://webidl.spec.whatwg.org/#dfn-throw -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:webidl; type:dfn; text:throw -spec:webcryptoapi; type:dfn; text:throw -[=throw=] -LINE ~290: Multiple possible 'throw' dfn refs. -Arbitrarily chose https://webidl.spec.whatwg.org/#dfn-throw -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:webidl; type:dfn; text:throw -spec:webcryptoapi; type:dfn; text:throw -[=throw=] LINE 177: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 341: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="341" data-dfn-type="dfn" id="construct-an-absoluteorientationsensor-object" data-lt="Construct an AbsoluteOrientationSensor Object" data-noexport="by-default" class="dfn-paneled">Construct an AbsoluteOrientationSensor Object</dfn> diff --git a/tests/github/w3c/orientation-sensor/releases/FPWD.html b/tests/github/w3c/orientation-sensor/releases/FPWD.html index acb8d86056..75b6b163c1 100644 --- a/tests/github/w3c/orientation-sensor/releases/FPWD.html +++ b/tests/github/w3c/orientation-sensor/releases/FPWD.html @@ -3,9 +3,8 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Orientation Sensor</title> - <meta content="WD" name="w3c-status"> + <meta content="FPWD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/orientation-sensor/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -743,7 +742,7 @@ <h1 class="p-name no-ref" id="title">Orientation Sensor</h1> <div data-fill-with="spec-metadata"> <dl> <dt>This version: - <dd><a class="u-url" href="https://www.w3.org/TR/1970/WD-orientation-sensor-19700101/">https://www.w3.org/TR/1970/WD-orientation-sensor-19700101/</a> + <dd><a class="u-url" href="https://www.w3.org/TR/1970/FPWD-orientation-sensor-19700101/">https://www.w3.org/TR/1970/FPWD-orientation-sensor-19700101/</a> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/orientation-sensor/">https://www.w3.org/TR/orientation-sensor/</a> <dt>Editor's Draft: @@ -765,7 +764,7 @@ <h1 class="p-name no-ref" id="title">Orientation Sensor</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -780,7 +779,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> - <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a First Public Working Draft using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a First Public Working Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5Borientation-sensor%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>). When sending e-mail, @@ -793,11 +792,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1178,17 +1177,17 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-accelerometer">[ACCELEROMETER] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 18 October 2022. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 7 June 2024. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> <dt id="biblio-generic-sensor">[GENERIC-SENSOR] - <dd>Rick Waldron. <a href="https://www.w3.org/TR/generic-sensor/"><cite>Generic Sensor API</cite></a>. 27 January 2023. CR. URL: <a href="https://www.w3.org/TR/generic-sensor/">https://www.w3.org/TR/generic-sensor/</a> + <dd>Rick Waldron. <a href="https://www.w3.org/TR/generic-sensor/"><cite>Generic Sensor API</cite></a>. 22 February 2024. CR. URL: <a href="https://www.w3.org/TR/generic-sensor/">https://www.w3.org/TR/generic-sensor/</a> <dt id="biblio-geometry-1">[GEOMETRY-1] <dd>Simon Pieters; Chris Harrelson. <a href="https://www.w3.org/TR/geometry-1/"><cite>Geometry Interfaces Module Level 1</cite></a>. 4 December 2018. CR. URL: <a href="https://www.w3.org/TR/geometry-1/">https://www.w3.org/TR/geometry-1/</a> <dt id="biblio-gyroscope">[GYROSCOPE] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 7 December 2021. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 8 January 2024. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-magnetometer">[MAGNETOMETER] - <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 7 December 2021. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> + <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 15 May 2024. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-webidl">[WEBIDL] diff --git a/tests/github/w3c/paint-timing/painttiming.html b/tests/github/w3c/paint-timing/painttiming.html index ed9b84157e..4576391a11 100644 --- a/tests/github/w3c/paint-timing/painttiming.html +++ b/tests/github/w3c/paint-timing/painttiming.html @@ -5,7 +5,6 @@ <title>Paint Timing</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/paint-timing/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -979,7 +978,7 @@ <h1 class="p-name no-ref" id="title">Paint Timing</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -993,7 +992,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" Its publication here does not imply endorsement of its contents by W3C. Don’t cite this document other than as work in progress. </p> <p><a href="https://github.com/w3c/paint-timing/issues">GitHub Issues</a> are preferred for discussion of this specification. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1252,20 +1251,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code class="highlight"><c- a>class</c-><c- o>=</c-><c- u>"note"</c-></code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1400,11 +1401,11 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-color-3">[CSS-COLOR-3] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-text-4">[CSS-TEXT-4] <dd>Elika Etemad; et al. <a href="https://drafts.csswg.org/css-text-4/"><cite>CSS Text Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-text-4/">https://drafts.csswg.org/css-text-4/</a> <dt id="biblio-dom">[DOM] @@ -1436,7 +1437,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="sec-PerformancePaintTiming"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformancePaintTiming" title="The PerformancePaintTiming interface of the Paint Timing API provides timing information about &quot;paint&quot; (also called &quot;render&quot;) operations during web page construction. &quot;Paint&quot; refers to conversion of the render tree to on-screen pixels.">PerformancePaintTiming</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PerformancePaintTiming" title="The PerformancePaintTiming interface provides timing information about &quot;paint&quot; (also called &quot;render&quot;) operations during web page construction. &quot;Paint&quot; refers to conversion of the render tree to on-screen pixels.">PerformancePaintTiming</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>84+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> diff --git a/tests/github/w3c/payment-method-manifest/index.html b/tests/github/w3c/payment-method-manifest/index.html index 82c0dcfc97..9f199d3e39 100644 --- a/tests/github/w3c/payment-method-manifest/index.html +++ b/tests/github/w3c/payment-method-manifest/index.html @@ -705,7 +705,7 @@ <h1 class="p-name no-ref" id="title">Payment Method Manifest</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1211,20 +1211,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/w3c/permissions/index.console.txt b/tests/github/w3c/permissions/index.console.txt index ec1cd5a48c..70f9cf5568 100644 --- a/tests/github/w3c/permissions/index.console.txt +++ b/tests/github/w3c/permissions/index.console.txt @@ -1,8 +1,11 @@ +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation-API]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINK ERROR: Ambiguous for-less link for '"midi"', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:permissions; type:enum-value; for:PermissionName; text:"midi" for-less references: spec:webmidi; type:permission; for:/; text:"midi" +spec:webmidi; type:permission; for:/; text:"midi" {{"midi"}} LINK ERROR: Ambiguous for-less link for '"bluetooth"', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: diff --git a/tests/github/w3c/permissions/index.html b/tests/github/w3c/permissions/index.html index 1c28e23338..8c2fe109f5 100644 --- a/tests/github/w3c/permissions/index.html +++ b/tests/github/w3c/permissions/index.html @@ -5,7 +5,6 @@ <title>Permissions</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/permissions/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -990,7 +989,7 @@ <h1 class="p-name no-ref" id="title">Permissions</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1012,11 +1011,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[permissions] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1098,7 +1097,7 @@ <h2 class="heading settled" data-level="1" id="scope-of-this-document"><span cla <p> Current Web APIs have different ways to deal with permissions. For example, the <a data-link-type="biblio" href="#biblio-notifications" title="Notifications API Standard">[notifications]</a> API allows developers to request a permission and check the permission status explicitly. Others expose the status to web - pages when they try to use the API, like the <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[geolocation-API]</a> which fails + pages when they try to use the API, like the <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[geolocation-API]</a> which fails if the permission was not granted without allowing the developer to check beforehand. </p> <p> The <code class="idl"><a data-link-type="idl" href="#dom-permissions-query" id="ref-for-dom-permissions-query">query()</a></code> function provides a tool for developers to @@ -1453,7 +1452,7 @@ <h2 class="heading settled" data-level="10" id="permission-registry"><span class of the above types and algorithms defaulted. </p> <section> <h3 class="heading settled" data-level="10.1" id="geolocation"><span class="secno">10.1. </span><span class="content"> Geolocation </span><a class="self-link" href="#geolocation"></a></h3> - <p> The <dfn class="dfn-paneled idl-code" data-dfn-for="PermissionName" data-dfn-type="enum-value" data-export id="dom-permissionname-geolocation"><code>"geolocation"</code></dfn> permission is the permission associated with the usage of the <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[geolocation-API]</a>. It is a <a data-link-type="dfn" href="#boolean-feature" id="ref-for-boolean-feature">boolean feature</a> and is <a data-link-type="dfn" href="#allowed-in-non-secure-contexts" id="ref-for-allowed-in-non-secure-contexts①">allowed in + <p> The <dfn class="dfn-paneled idl-code" data-dfn-for="PermissionName" data-dfn-type="enum-value" data-export id="dom-permissionname-geolocation"><code>"geolocation"</code></dfn> permission is the permission associated with the usage of the <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[geolocation-API]</a>. It is a <a data-link-type="dfn" href="#boolean-feature" id="ref-for-boolean-feature">boolean feature</a> and is <a data-link-type="dfn" href="#allowed-in-non-secure-contexts" id="ref-for-allowed-in-non-secure-contexts①">allowed in non-secure contexts</a>. </p> </section> <section> @@ -1806,20 +1805,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2055,9 +2056,9 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-background-fetch">[BACKGROUND-FETCH] <dd><a href="https://wicg.github.io/background-fetch/"><cite>Background Fetch</cite></a>. cg-draft. URL: <a href="https://wicg.github.io/background-fetch/">https://wicg.github.io/background-fetch/</a> <dt id="biblio-clipboard-apis">[CLIPBOARD-APIS] - <dd>Gary Kacmarcik; Grisha Lyukshin. <a href="https://w3c.github.io/clipboard-apis/"><cite>Clipboard API and events</cite></a>. URL: <a href="https://w3c.github.io/clipboard-apis/">https://w3c.github.io/clipboard-apis/</a> + <dd>Gary Kacmarcik; Anupam Snigdha. <a href="https://w3c.github.io/clipboard-apis/"><cite>Clipboard API and events</cite></a>. URL: <a href="https://w3c.github.io/clipboard-apis/">https://w3c.github.io/clipboard-apis/</a> <dt id="biblio-geolocation-api">[geolocation-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> <dt id="biblio-getusermedia">[GETUSERMEDIA] <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/mediacapture-main/"><cite>Media Capture and Streams</cite></a>. URL: <a href="https://w3c.github.io/mediacapture-main/">https://w3c.github.io/mediacapture-main/</a> <dt id="biblio-gyroscope">[GYROSCOPE] @@ -2075,7 +2076,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-web-nfc">[WEB-NFC] <dd><a href="https://w3c.github.io/web-nfc/"><cite>Web NFC API</cite></a>. ED. URL: <a href="https://w3c.github.io/web-nfc/">https://w3c.github.io/web-nfc/</a> <dt id="biblio-webmidi">[WEBMIDI] - <dd>Chris Wilson; Jussi Kalliokoski. <a href="https://webaudio.github.io/web-midi-api/"><cite>Web MIDI API</cite></a>. URL: <a href="https://webaudio.github.io/web-midi-api/">https://webaudio.github.io/web-midi-api/</a> + <dd>Chris Wilson; Michael Wilson. <a href="https://webaudio.github.io/web-midi-api/"><cite>Web MIDI API</cite></a>. URL: <a href="https://webaudio.github.io/web-midi-api/">https://webaudio.github.io/web-midi-api/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def"><c- b>dictionary</c-> <a href="#dictdef-permissiondescriptor"><code><c- g>PermissionDescriptor</c-></code></a> { @@ -2179,11 +2180,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-permissionstatus-onchange"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PermissionStatus/change_event" title="The change event of the PermissionStatus interface fires whenever the PermissionStatus.state property changes.">PermissionStatus/change_event</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>46+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> + <span class="firefox yes"><span>Firefox</span><span>46+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2242,12 +2244,11 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-workernavigator-permissions"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/permissions" title="The WorkerNavigator.permissions read-only property returns a Permissions object that can be used to query and update permission status of APIs covered by the Permissions API.">WorkerNavigator/permissions</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> diff --git a/tests/github/w3c/picture-in-picture/index.console.txt b/tests/github/w3c/picture-in-picture/index.console.txt index 3a6154d9f4..a89008510b 100644 --- a/tests/github/w3c/picture-in-picture/index.console.txt +++ b/tests/github/w3c/picture-in-picture/index.console.txt @@ -1,15 +1,12 @@ LINK ERROR: Multiple possible 'paused' idl refs. -Arbitrarily chose https://html.spec.whatwg.org/multipage/media.html#dom-media-paused +Arbitrarily chose https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-paused To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:web-animations-1; type:enum-value; text:paused spec:html; type:attribute; text:paused spec:mediastream-recording; type:enum-value; text:paused spec:mediasession; type:enum-value; text:paused spec:speech-api; type:attribute; text:paused {{paused}} -LINE 259: No 'dfn' refs found for 'reflect' that are marked for export. -<a bs-line-number="259" data-link-type="dfn" data-lt="reflect">reflect</a> -LINE 283: No 'dfn' refs found for 'reflect' that are marked for export. -<a bs-line-number="283" data-link-type="dfn" data-lt="reflect">reflect</a> LINE 398: No 'dfn' refs found for 'context object' that are marked for export. <a bs-line-number="398" data-link-type="dfn" data-lt="context object">context object</a> LINE 424: No 'dfn' refs found for 'context object' that are marked for export. diff --git a/tests/github/w3c/picture-in-picture/index.html b/tests/github/w3c/picture-in-picture/index.html index aa586f3de0..879d5dd5a9 100644 --- a/tests/github/w3c/picture-in-picture/index.html +++ b/tests/github/w3c/picture-in-picture/index.html @@ -5,7 +5,6 @@ <title>Picture-in-Picture</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/picture-in-picture/" rel="canonical"> <link href="https://raw.githubusercontent.com/google/material-design-icons/master/action/2x_web/ic_picture_in_picture_alt_black_48dp.png" rel="icon"> <meta content="dark light" name="color-scheme"> @@ -705,7 +704,7 @@ <h1 class="p-name no-ref" id="title">Picture-in-Picture</h1> <dt>Latest published version: <dd><a href="https://www.w3.org/TR/picture-in-picture/">https://www.w3.org/TR/picture-in-picture/</a> <dt>Previous Versions: - <dd><a href="https://www.w3.org/TR/2022/WD-picture-in-picture-20221219/" rel="prev">https://www.w3.org/TR/2022/WD-picture-in-picture-20221219/</a> + <dd><a href="https://www.w3.org/TR/2024/WD-picture-in-picture-20240704/" rel="prev">https://www.w3.org/TR/2024/WD-picture-in-picture-20240704/</a> <dt class="editor">Editors: <dd class="editor p-author h-card vcard" data-editor-id="81174"><a class="p-name fn u-email email" href="mailto:fbeaufort@google.com">François Beaufort</a> (<a class="p-org org" href="https://www.google.com">Google LLC</a>) <dd class="editor p-author h-card vcard" data-editor-id="45389"><a class="p-name fn u-email email" href="mailto:mlamouri@google.com">Mounir Lamouri</a> (<a class="p-org org" href="https://www.google.com">Google LLC</a>) @@ -715,7 +714,7 @@ <h1 class="p-name no-ref" id="title">Picture-in-Picture</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -734,8 +733,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> This document was published by the <a href="https://www.w3.org/groups/wg/media">Media Working Group</a> as an Editor’s Draft. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation. </p> <p> Publication as an Editor’s Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. </p> - <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/policies/patent-policy/" id="sotd_patent">W3C Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/groups/wg/media/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -942,7 +941,7 @@ <h3 class="heading settled" data-level="3.1" id="request-pip"><span class="secno <li data-md> <p>If <var>video</var> is <code class="idl"><a data-link-type="idl" href="#dom-documentorshadowroot-pictureinpictureelement" id="ref-for-dom-documentorshadowroot-pictureinpictureelement">pictureInPictureElement</a></code>, abort these steps.</p> <li data-md> - <p>If <var>playingRequired</var> is <code>true</code> and <var>video</var> is <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/media.html#dom-media-paused" id="ref-for-dom-media-paused">paused</a></code>, abort these steps.</p> + <p>If <var>playingRequired</var> is <code>true</code> and <var>video</var> is <code class="idl"><a data-link-type="idl" href="https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-paused" id="ref-for-dom-animationplaystate-paused">paused</a></code>, abort these steps.</p> <li data-md> <p>Set <code class="idl"><a data-link-type="idl" href="#dom-documentorshadowroot-pictureinpictureelement" id="ref-for-dom-documentorshadowroot-pictureinpictureelement①">pictureInPictureElement</a></code> to <var>video</var>.</p> <li data-md> @@ -994,7 +993,7 @@ <h3 class="heading settled" data-level="3.3" id="disable-pip"><span class="secno example, they may want to prevent the user agent from suggesting a Picture-in-Picture context menu or to request Picture-in-Picture automatically in some cases. To support these use cases, a new <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-disablepictureinpicture" id="ref-for-dom-htmlvideoelement-disablepictureinpicture①">disablePictureInPicture</a></code> attribute is added to the list of content attributes for video elements.</p> - <p>The <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-disablepictureinpicture" id="ref-for-dom-htmlvideoelement-disablepictureinpicture②">disablePictureInPicture</a></code> IDL attribute MUST <a data-link-type="dfn">reflect</a> the content + <p>The <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-disablepictureinpicture" id="ref-for-dom-htmlvideoelement-disablepictureinpicture②">disablePictureInPicture</a></code> IDL attribute MUST <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflect</a> the content attribute of the same name.</p> <p>If the <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-disablepictureinpicture" id="ref-for-dom-htmlvideoelement-disablepictureinpicture③">disablePictureInPicture</a></code> attribute is present on the video element, the user agent SHOULD NOT play the video element in Picture-in-Picture or @@ -1015,7 +1014,7 @@ <h3 class="heading settled" data-level="3.4" id="auto-pip"><span class="secno">3 between the web app and other applications/tabs. To support these use cases, a new <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-autopictureinpicture" id="ref-for-dom-htmlvideoelement-autopictureinpicture">autoPictureInPicture</a></code> attribute is added to the list of content attributes for video elements.</p> - <p>The <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-autopictureinpicture" id="ref-for-dom-htmlvideoelement-autopictureinpicture①">autoPictureInPicture</a></code> IDL attribute MUST <a data-link-type="dfn">reflect</a> the content + <p>The <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-autopictureinpicture" id="ref-for-dom-htmlvideoelement-autopictureinpicture①">autoPictureInPicture</a></code> IDL attribute MUST <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect①">reflect</a> the content attribute of the same name.</p> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="autopictureinpictureelement">autoPictureInPictureElement</dfn> is the video element, among all video elements with the <code class="idl"><a data-link-type="idl" href="#dom-htmlvideoelement-autopictureinpicture" id="ref-for-dom-htmlvideoelement-autopictureinpicture②">autoPictureInPicture</a></code> attribute currently set, @@ -1053,7 +1052,7 @@ <h3 class="heading settled" data-level="3.6" id="remote-playback"><span class="s playback is local and regardless of whether it is played in page or in Picture-in-Picture.</p> <h3 class="heading settled" data-level="3.7" id="media-session"><span class="secno">3.7. </span><span class="content">Interaction with Media Session</span><a class="self-link" href="#media-session"></a></h3> - <p>The API will have to be used with the <a data-link-type="biblio" href="#biblio-mediasession" title="Media Session Standard">[MediaSession]</a> API for customizing the + <p>The API will have to be used with the <a data-link-type="biblio" href="#biblio-mediasession" title="Media Session">[MediaSession]</a> API for customizing the available controls on the Picture-in-Picture window.</p> <h3 class="heading settled" data-level="3.8" id="page-visibility"><span class="secno">3.8. </span><span class="content">Interaction with Page Visibility</span><a class="self-link" href="#page-visibility"></a></h3> <p>When <code class="idl"><a data-link-type="idl" href="#dom-documentorshadowroot-pictureinpictureelement" id="ref-for-dom-documentorshadowroot-pictureinpictureelement①②">pictureInPictureElement</a></code> is set, the Picture-in-Picture window MUST @@ -1237,20 +1236,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1329,9 +1330,9 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="0d0390b4">browsing context</span> <li><span class="dfn-paneled" id="a72449dd">in parallel</span> <li><span class="dfn-paneled" id="10c9e8bf">media element event task source</span> - <li><span class="dfn-paneled" id="eb577fbe">paused</span> <li><span class="dfn-paneled" id="9a517a7d">queue a task</span> <li><span class="dfn-paneled" id="621f3aeb">readyState</span> + <li><span class="dfn-paneled" id="5ab7b520">reflect</span> <li><span class="dfn-paneled" id="e99bd18e">relevant global object</span> <li><span class="dfn-paneled" id="c3b2d08c">task source</span> <li><span class="dfn-paneled" id="ae2a6342">top-level browsing context</span> @@ -1360,6 +1361,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="628c6566">pseudo-class</span> </ul> + <li> + <a data-link-type="biblio">[WEB-ANIMATIONS-1]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="ae5ca4be">paused</span> + </ul> <li> <a data-link-type="biblio">[WEBIDL]</a> defines the following terms: <ul> @@ -1400,13 +1406,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-selectors-4">[SELECTORS-4] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/selectors/"><cite>Selectors Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/selectors/">https://drafts.csswg.org/selectors/</a> + <dt id="biblio-web-animations-1">[WEB-ANIMATIONS-1] + <dd>Brian Birtles; et al. <a href="https://drafts.csswg.org/web-animations-1/"><cite>Web Animations</cite></a>. URL: <a href="https://drafts.csswg.org/web-animations-1/">https://drafts.csswg.org/web-animations-1/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-mediasession">[MediaSession] - <dd>Thomas Steimel; youenn fablet. <a href="https://w3c.github.io/mediasession/"><cite>Media Session Standard</cite></a>. URL: <a href="https://w3c.github.io/mediasession/">https://w3c.github.io/mediasession/</a> + <dd>Thomas Steimel; youenn fablet. <a href="https://w3c.github.io/mediasession/"><cite>Media Session</cite></a>. URL: <a href="https://w3c.github.io/mediasession/">https://w3c.github.io/mediasession/</a> <dt id="biblio-secure-contexts">[SECURE-CONTEXTS] <dd>Mike West. <a href="https://w3c.github.io/webappsec-secure-contexts/"><cite>Secure Contexts</cite></a>. URL: <a href="https://w3c.github.io/webappsec-secure-contexts/">https://w3c.github.io/webappsec-secure-contexts/</a> </dl> @@ -1667,6 +1675,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "44a7708c": {"dfnID":"44a7708c","dfnText":"EventInit","external":true,"refSections":[{"refs":[{"id":"ref-for-dictdef-eventinit"}],"title":"4.5. Event types"}],"url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, "47fe679e": {"dfnID":"47fe679e","dfnText":"transient activation","external":true,"refSections":[{"refs":[{"id":"ref-for-transient-activation"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://html.spec.whatwg.org/multipage/interaction.html#transient-activation"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"},{"id":"ref-for-idl-boolean\u2460"}],"title":"4.1. Extensions to HTMLVideoElement"},{"refs":[{"id":"ref-for-idl-boolean\u2461"}],"title":"4.2. Extensions to Document"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, +"5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"}],"title":"3.3. Disable Picture-in-Picture"},{"refs":[{"id":"ref-for-reflect\u2460"}],"title":"3.4. Auto Picture-in-Picture"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "5f90bbfb": {"dfnID":"5f90bbfb","dfnText":"undefined","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-undefined"}],"title":"4.2. Extensions to Document"}],"url":"https://webidl.spec.whatwg.org/#idl-undefined"}, "5fd23811": {"dfnID":"5fd23811","dfnText":"fire an event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event-fire"}],"title":"3.1. Request Picture-in-Picture"},{"refs":[{"id":"ref-for-concept-event-fire\u2460"}],"title":"3.2. Exit Picture-in-Picture"},{"refs":[{"id":"ref-for-concept-event-fire\u2461"}],"title":"4.4. Interface PictureInPictureWindow"}],"url":"https://dom.spec.whatwg.org/#concept-event-fire"}, "621f3aeb": {"dfnID":"621f3aeb","dfnText":"readyState","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-media-readystate"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-readystate"}, @@ -1685,6 +1694,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "a72449dd": {"dfnID":"a72449dd","dfnText":"in parallel","external":true,"refSections":[{"refs":[{"id":"ref-for-in-parallel"}],"title":"4.1. Extensions to HTMLVideoElement"},{"refs":[{"id":"ref-for-in-parallel\u2460"}],"title":"4.2. Extensions to Document"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "a973e0fe": {"dfnID":"a973e0fe","dfnText":"document","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document"}],"title":"3.8. Interaction with Page Visibility"}],"url":"https://dom.spec.whatwg.org/#concept-document"}, "ae2a6342": {"dfnID":"ae2a6342","dfnText":"top-level browsing context","external":true,"refSections":[{"refs":[{"id":"ref-for-top-level-browsing-context"},{"id":"ref-for-top-level-browsing-context\u2460"}],"title":"3.4. Auto Picture-in-Picture"},{"refs":[{"id":"ref-for-top-level-browsing-context\u2461"}],"title":"3.8. Interaction with Page Visibility"}],"url":"https://html.spec.whatwg.org/multipage/document-sequences.html#top-level-browsing-context"}, +"ae5ca4be": {"dfnID":"ae5ca4be","dfnText":"paused","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-animationplaystate-paused"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-paused"}, "autopictureinpictureelement": {"dfnID":"autopictureinpictureelement","dfnText":"autoPictureInPictureElement","external":false,"refSections":[{"refs":[{"id":"ref-for-autopictureinpictureelement"},{"id":"ref-for-autopictureinpictureelement\u2460"},{"id":"ref-for-autopictureinpictureelement\u2461"},{"id":"ref-for-autopictureinpictureelement\u2462"},{"id":"ref-for-autopictureinpictureelement\u2463"}],"title":"3.4. Auto Picture-in-Picture"}],"url":"#autopictureinpictureelement"}, "b4dee070": {"dfnID":"b4dee070","dfnText":"fullscreenelement","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-document-fullscreenelement"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://fullscreen.spec.whatwg.org#dom-document-fullscreenelement"}, "ba556545": {"dfnID":"ba556545","dfnText":"NotAllowedError","external":true,"refSections":[{"refs":[{"id":"ref-for-notallowederror"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://webidl.spec.whatwg.org/#notallowederror"}, @@ -1717,7 +1727,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "dom-pictureinpicturewindow-width": {"dfnID":"dom-pictureinpicturewindow-width","dfnText":"width","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-pictureinpicturewindow-width"}],"title":"4.4. Interface PictureInPictureWindow"}],"url":"#dom-pictureinpicturewindow-width"}, "e6cc3311": {"dfnID":"e6cc3311","dfnText":"tree","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-tree"}],"title":"4.3. Extension to DocumentOrShadowRoot"}],"url":"https://dom.spec.whatwg.org/#concept-tree"}, "e99bd18e": {"dfnID":"e99bd18e","dfnText":"relevant global object","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-relevant-global"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global"}, -"eb577fbe": {"dfnID":"eb577fbe","dfnText":"paused","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-media-paused"}],"title":"3.1. Request Picture-in-Picture"}],"url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-paused"}, "eventdef-htmlvideoelement-enterpictureinpicture": {"dfnID":"eventdef-htmlvideoelement-enterpictureinpicture","dfnText":"enterpictureinpicture","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-htmlvideoelement-enterpictureinpicture"}],"title":"3.1. Request Picture-in-Picture"}],"url":"#eventdef-htmlvideoelement-enterpictureinpicture"}, "eventdef-htmlvideoelement-leavepictureinpicture": {"dfnID":"eventdef-htmlvideoelement-leavepictureinpicture","dfnText":"leavepictureinpicture","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-htmlvideoelement-leavepictureinpicture"}],"title":"3.2. Exit Picture-in-Picture"}],"url":"#eventdef-htmlvideoelement-leavepictureinpicture"}, "eventdef-pictureinpicturewindow-resize": {"dfnID":"eventdef-pictureinpicturewindow-resize","dfnText":"resize","external":false,"refSections":[{"refs":[{"id":"ref-for-eventdef-pictureinpicturewindow-resize"}],"title":"4.4. Interface PictureInPictureWindow"}],"url":"#eventdef-pictureinpicturewindow-resize"}, @@ -2153,9 +2162,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://dom.spec.whatwg.org/#retarget": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"retargeting","type":"dfn","url":"https://dom.spec.whatwg.org/#retarget"}, "https://drafts.csswg.org/css-values-4/#px": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"px","type":"value","url":"https://drafts.csswg.org/css-values-4/#px"}, "https://drafts.csswg.org/selectors-4/#pseudo-class": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"selectors","spec":"selectors-4","status":"current","text":"pseudo-class","type":"dfn","url":"https://drafts.csswg.org/selectors-4/#pseudo-class"}, +"https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-paused": {"export":true,"for_":["AnimationPlayState"],"level":"1","normative":true,"shortname":"web-animations","spec":"web-animations-1","status":"current","text":"paused","type":"enum-value","url":"https://drafts.csswg.org/web-animations-1/#dom-animationplaystate-paused"}, "https://fullscreen.spec.whatwg.org#dom-document-fullscreenelement": {"export":true,"for_":[],"level":"","normative":true,"shortname":"fullscreen","spec":"fullscreen","status":"anchor-block","text":"fullscreenelement","type":"dfn","url":"https://fullscreen.spec.whatwg.org#dom-document-fullscreenelement"}, "https://fullscreen.spec.whatwg.org#fullscreen-flag": {"export":true,"for_":[],"level":"","normative":true,"shortname":"fullscreen","spec":"fullscreen","status":"anchor-block","text":"fullscreen flag","type":"dfn","url":"https://fullscreen.spec.whatwg.org#fullscreen-flag"}, "https://fullscreen.spec.whatwg.org#fully-exit-fullscreen": {"export":true,"for_":[],"level":"","normative":true,"shortname":"fullscreen","spec":"fullscreen","status":"anchor-block","text":"exit fullscreen","type":"dfn","url":"https://fullscreen.spec.whatwg.org#fully-exit-fullscreen"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"CEReactions","type":"extended-attribute","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#cereactions"}, "https://html.spec.whatwg.org/multipage/document-lifecycle.html#unloading-document-cleanup-steps": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"unloading document cleanup steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-lifecycle.html#unloading-document-cleanup-steps"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context"}, @@ -2164,7 +2175,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "https://html.spec.whatwg.org/multipage/interaction.html#transient-activation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"transient activation","type":"dfn","url":"https://html.spec.whatwg.org/multipage/interaction.html#transient-activation"}, "https://html.spec.whatwg.org/multipage/media.html#dom-media-have_nothing": {"export":true,"for_":["HTMLMediaElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HAVE_NOTHING","type":"const","url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-have_nothing"}, -"https://html.spec.whatwg.org/multipage/media.html#dom-media-paused": {"export":true,"for_":["HTMLMediaElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"paused","type":"attribute","url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-paused"}, "https://html.spec.whatwg.org/multipage/media.html#dom-media-readystate": {"export":true,"for_":["HTMLMediaElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"readyState","type":"attribute","url":"https://html.spec.whatwg.org/multipage/media.html#dom-media-readystate"}, "https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"HTMLVideoElement","type":"interface","url":"https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement"}, "https://html.spec.whatwg.org/multipage/media.html#media-element-event-task-source": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"media element event task source","type":"dfn","url":"https://html.spec.whatwg.org/multipage/media.html#media-element-event-task-source"}, diff --git a/tests/github/w3c/proximity/index.console.txt b/tests/github/w3c/proximity/index.console.txt index 246e078622..45abb5a687 100644 --- a/tests/github/w3c/proximity/index.console.txt +++ b/tests/github/w3c/proximity/index.console.txt @@ -2,6 +2,8 @@ LINE ~95: No 'dfn' refs found for 'reduce accuracy' that are marked for export. [=reduce accuracy=] LINE ~96: No 'dfn' refs found for 'limit maximum sampling frequency' that are marked for export. [=limit maximum sampling frequency=] +LINE 201: No 'enum-value' refs found for '"proximity"'. +<a bs-line-number="201" data-link-type="enum-value" data-link-for="MockSensorType" data-lt='"proximity"'>"proximity"</a> LINE 87: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. LINE 248: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="248" data-dfn-type="dfn" id="conformant-user-agent" data-lt="conformant user agent" data-noexport="by-default" class="dfn-paneled">conformant user agent</dfn> diff --git a/tests/github/w3c/proximity/index.html b/tests/github/w3c/proximity/index.html index c358c93cc2..605a03ec33 100644 --- a/tests/github/w3c/proximity/index.html +++ b/tests/github/w3c/proximity/index.html @@ -5,7 +5,6 @@ <title>Proximity Sensor</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/proximity/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -767,7 +766,7 @@ <h1 class="p-name no-ref" id="title">Proximity Sensor</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -787,13 +786,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[proximity] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -939,7 +938,7 @@ <h2 class="heading settled" data-level="7" id="automation"><span class="secno">7 This section extends the <a data-link-type="dfn" href="https://w3c.github.io/sensors#automation" id="ref-for-automation">automation</a> section defined in the Generic Sensor API <a data-link-type="biblio" href="#biblio-generic-sensor" title="Generic Sensor API">[GENERIC-SENSOR]</a> to provide mocking information about the proximity level for the purposes of testing a user agent’s implementation of <code class="idl"><a data-link-type="idl" href="#proximitysensor" id="ref-for-proximitysensor⑧">ProximitySensor</a></code> API. <h3 class="heading settled" data-level="7.1" id="mock-proximity-sensor-type"><span class="secno">7.1. </span><span class="content">Mock Sensor Type</span><a class="self-link" href="#mock-proximity-sensor-type"></a></h3> - <p>The <code class="idl"><a data-link-type="idl" href="#proximitysensor" id="ref-for-proximitysensor⑨">ProximitySensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value" href="https://w3c.github.io/sensors/#dom-mocksensortype-proximity" id="ref-for-dom-mocksensortype-proximity">"proximity"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> + <p>The <code class="idl"><a data-link-type="idl" href="#proximitysensor" id="ref-for-proximitysensor⑨">ProximitySensor</a></code> class has an associated <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-type" id="ref-for-mock-sensor-type">mock sensor type</a> which is <a class="idl-code" data-link-type="enum-value">"proximity"</a>, its <a data-link-type="dfn" href="https://w3c.github.io/sensors#mock-sensor-reading-values" id="ref-for-mock-sensor-reading-values">mock sensor reading values</a> dictionary is defined as follows:</p> <pre class="idl highlight def"><c- b>dictionary</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="dictionary" data-export id="dictdef-proximityreadingvalues"><code><c- g>ProximityReadingValues</c-></code></dfn> { <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double②"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="ProximityReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-proximityreadingvalues-distance"><code><c- g>distance</c-></code></dfn>; <c- b>required</c-> <a class="idl-code" data-link-type="interface" href="https://webidl.spec.whatwg.org/#idl-double" id="ref-for-idl-double③"><c- b>double</c-></a>? <dfn class="dfn-paneled idl-code" data-dfn-for="ProximityReadingValues" data-dfn-type="dict-member" data-export data-type="double?" id="dom-proximityreadingvalues-max"><code><c- g>max</c-></code></dfn>; @@ -1017,7 +1016,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[GENERIC-SENSOR]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="94a24ba5">"proximity"</span> <li><span class="dfn-paneled" id="1b956603">Sensor</span> <li><span class="dfn-paneled" id="207de9db">SensorOptions</span> <li><span class="dfn-paneled" id="66cd9d36">automation</span> @@ -1297,7 +1295,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"5.1. The ProximitySensor Interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, "8958b003": {"dfnID":"8958b003","dfnText":"entry","external":true,"refSections":[{"refs":[{"id":"ref-for-map-entry"}],"title":"4. Model"}],"url":"https://infra.spec.whatwg.org/#map-entry"}, "8c800cdf": {"dfnID":"8c800cdf","dfnText":"double","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-double"},{"id":"ref-for-idl-double\u2460"}],"title":"5.1. The ProximitySensor Interface"},{"refs":[{"id":"ref-for-idl-double\u2461"},{"id":"ref-for-idl-double\u2462"}],"title":"7.1. Mock Sensor Type"}],"url":"https://webidl.spec.whatwg.org/#idl-double"}, -"94a24ba5": {"dfnID":"94a24ba5","dfnText":"\"proximity\"","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-mocksensortype-proximity"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors/#dom-mocksensortype-proximity"}, "99a62942": {"dfnID":"99a62942","dfnText":"mock sensor type","external":true,"refSections":[{"refs":[{"id":"ref-for-mock-sensor-type"}],"title":"7.1. Mock Sensor Type"}],"url":"https://w3c.github.io/sensors#mock-sensor-type"}, "b152f730": {"dfnID":"b152f730","dfnText":"initialize a sensor object","external":true,"refSections":[{"refs":[{"id":"ref-for-initialize-a-sensor-object"}],"title":"6.1. Construct a proximity sensor object"}],"url":"https://w3c.github.io/sensors#initialize-a-sensor-object"}, "b4cfa5ce": {"dfnID":"b4cfa5ce","dfnText":"throw","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-throw"}],"title":"6.1. Construct a proximity sensor object"}],"url":"https://webidl.spec.whatwg.org/#dfn-throw"}, @@ -1738,7 +1735,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/sensors#sensor-type": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"sensor type","type":"dfn","url":"https://w3c.github.io/sensors#sensor-type"}, "https://w3c.github.io/sensors#user-identifying": {"export":true,"for_":[],"level":"","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"anchor-block","text":"user identifying","type":"dfn","url":"https://w3c.github.io/sensors#user-identifying"}, "https://w3c.github.io/sensors/#dictdef-sensoroptions": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"SensorOptions","type":"dictionary","url":"https://w3c.github.io/sensors/#dictdef-sensoroptions"}, -"https://w3c.github.io/sensors/#dom-mocksensortype-proximity": {"export":true,"for_":["MockSensorType"],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"\"proximity\"","type":"enum-value","url":"https://w3c.github.io/sensors/#dom-mocksensortype-proximity"}, "https://w3c.github.io/sensors/#get-value-from-latest-reading": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"get value from latest reading","type":"dfn","url":"https://w3c.github.io/sensors/#get-value-from-latest-reading"}, "https://w3c.github.io/sensors/#sensor": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"generic-sensor","spec":"generic-sensor","status":"current","text":"Sensor","type":"interface","url":"https://w3c.github.io/sensors/#sensor"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, diff --git a/tests/github/w3c/reporting/network-reporting.html b/tests/github/w3c/reporting/network-reporting.html index b567cd1226..7f2cf66222 100644 --- a/tests/github/w3c/reporting/network-reporting.html +++ b/tests/github/w3c/reporting/network-reporting.html @@ -5,7 +5,6 @@ <title>Network Reporting API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/reporting/network-reporting" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -633,7 +632,7 @@ <h1>Network Reporting API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -652,7 +651,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" Its publication here does not imply endorsement of its contents by W3C. Don’t cite this document other than as work in progress. </p> <p><a href="https://github.com/test/test/issues">GitHub Issues</a> are preferred for discussion of this specification. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1531,7 +1530,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-html-design-principles">[HTML-DESIGN-PRINCIPLES] <dd>Anne van Kesteren; Maciej Stachowiak. <a href="https://www.w3.org/TR/html-design-principles/"><cite>HTML Design Principles</cite></a>. 26 November 2007. WD. URL: <a href="https://www.w3.org/TR/html-design-principles/">https://www.w3.org/TR/html-design-principles/</a> <dt id="biblio-network-error-logging">[NETWORK-ERROR-LOGGING] - <dd>Douglas Creager; et al. <a href="https://w3c.github.io/network-error-logging/"><cite>Network Error Logging</cite></a>. URL: <a href="https://w3c.github.io/network-error-logging/">https://w3c.github.io/network-error-logging/</a> + <dd>Douglas Creager; Ian Clelland. <a href="https://w3c.github.io/network-error-logging/"><cite>Network Error Logging</cite></a>. URL: <a href="https://w3c.github.io/network-error-logging/">https://w3c.github.io/network-error-logging/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> diff --git a/tests/github/w3c/sensors/index.console.txt b/tests/github/w3c/sensors/index.console.txt index 5dbfdd8942..e5ebcb6ecb 100644 --- a/tests/github/w3c/sensors/index.console.txt +++ b/tests/github/w3c/sensors/index.console.txt @@ -1,11 +1,60 @@ +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINE ~792: No 'dfn' refs found for 'responsible document'. [=responsible document=] LINK ERROR: No 'idl' refs found for 'PermissionName'. {{PermissionName}} +LINE ~1165: Multiple possible 'created' dfn refs. +Arbitrarily chose https://fetch.spec.whatwg.org/#request-create +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:fetch; type:dfn; for:Request; text:create +spec:fetch; type:dfn; for:Response; text:create +spec:urlpattern; type:dfn; text:create +spec:webtransport; type:dfn; for:WebTransportDatagramDuplexStream; text:create +spec:webtransport; type:dfn; for:WebTransportReceiveStream; text:create +spec:webtransport; type:dfn; for:WebTransportSendGroup; text:create +spec:webtransport; type:dfn; for:WebTransportSendStream; text:create +spec:webtransport; type:dfn; for:WebTransportWriter; text:create +spec:webidl; type:dfn; for:ArrayBuffer; text:create +spec:webidl; type:dfn; for:ArrayBufferView; text:create +spec:webidl; type:dfn; for:exception; text:create +spec:webidl; type:dfn; for:SharedArrayBuffer; text:create +[=created|creating=] +LINE ~1184: Multiple possible 'created' dfn refs. +Arbitrarily chose https://fetch.spec.whatwg.org/#request-create +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:fetch; type:dfn; for:Request; text:create +spec:fetch; type:dfn; for:Response; text:create +spec:urlpattern; type:dfn; text:create +spec:webtransport; type:dfn; for:WebTransportDatagramDuplexStream; text:create +spec:webtransport; type:dfn; for:WebTransportReceiveStream; text:create +spec:webtransport; type:dfn; for:WebTransportSendGroup; text:create +spec:webtransport; type:dfn; for:WebTransportSendStream; text:create +spec:webtransport; type:dfn; for:WebTransportWriter; text:create +spec:webidl; type:dfn; for:ArrayBuffer; text:create +spec:webidl; type:dfn; for:ArrayBufferView; text:create +spec:webidl; type:dfn; for:exception; text:create +spec:webidl; type:dfn; for:SharedArrayBuffer; text:create +[=created|creating=] LINE ~1217: No 'dfn' refs found for 'exception type'. [=exception type|exception=] LINE ~1283: No 'dfn' refs found for 'present'. [=present=] +LINE ~1383: Multiple possible 'created' dfn refs. +Arbitrarily chose https://fetch.spec.whatwg.org/#request-create +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:fetch; type:dfn; for:Request; text:create +spec:fetch; type:dfn; for:Response; text:create +spec:urlpattern; type:dfn; text:create +spec:webtransport; type:dfn; for:WebTransportDatagramDuplexStream; text:create +spec:webtransport; type:dfn; for:WebTransportReceiveStream; text:create +spec:webtransport; type:dfn; for:WebTransportSendGroup; text:create +spec:webtransport; type:dfn; for:WebTransportSendStream; text:create +spec:webtransport; type:dfn; for:WebTransportWriter; text:create +spec:webidl; type:dfn; for:ArrayBuffer; text:create +spec:webidl; type:dfn; for:ArrayBufferView; text:create +spec:webidl; type:dfn; for:exception; text:create +spec:webidl; type:dfn; for:SharedArrayBuffer; text:create +[=created|creating=] LINE ~1767: No 'dfn' refs found for 'present'. [=present=] LINE ~1769: No 'dfn' refs found for 'present'. diff --git a/tests/github/w3c/sensors/index.html b/tests/github/w3c/sensors/index.html index 072093ed09..01aeeb324d 100644 --- a/tests/github/w3c/sensors/index.html +++ b/tests/github/w3c/sensors/index.html @@ -5,7 +5,6 @@ <title>Generic Sensor API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/generic-sensor/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -787,7 +786,7 @@ <h1 class="p-name no-ref" id="title">Generic Sensor API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -810,13 +809,13 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" preferably like this: “[generic-sensor] <em>…summary of comment…</em>”. All comments are welcome. </p> - <p> This document was produced by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> + <p> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/das/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> <p>Further implementation experience is being gathered for the <a data-link-type="dfn" href="https://wicg.github.io/permissions-request/#permission-request-algorithm" id="ref-for-permission-request-algorithm">permission request algorithm</a> and specification clarifications informed by this experience are being discussed in <a href="https://github.com/w3c/sensors/issues/397">GitHub issue #397</a>. @@ -1675,7 +1674,7 @@ <h4 class="heading settled" data-level="7.1.7" id="sensor-start"><span class="se <p>If <var>connected</var> is false, then</p> <ol> <li data-md> - <p>Let <var>e</var> be the result of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception">creating</a> a + <p>Let <var>e</var> be the result of <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#request-create" id="ref-for-request-create">creating</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notreadableerror" id="ref-for-notreadableerror">NotReadableError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException">DOMException</a></code>.</p> <li data-md> <p>Queue a task to run <a data-link-type="dfn" href="#notify-error" id="ref-for-notify-error">notify error</a> with <var>e</var> and <var>sensor_instance</var> as arguments.</p> @@ -1694,7 +1693,7 @@ <h4 class="heading settled" data-level="7.1.7" id="sensor-start"><span class="se <p>Otherwise, if <var>permission_state</var> is "denied",</p> <ol> <li data-md> - <p>let <var>e</var> be the result of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception①">creating</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror">NotAllowedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException①">DOMException</a></code>.</p> + <p>let <var>e</var> be the result of <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#request-create" id="ref-for-request-create①">creating</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror">NotAllowedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException①">DOMException</a></code>.</p> <li data-md> <p>Queue a task to run <a data-link-type="dfn" href="#notify-error" id="ref-for-notify-error①">notify error</a> with <var>e</var> and <var>sensor_instance</var> as arguments.</p> </ol> @@ -1928,7 +1927,7 @@ <h3 class="heading settled dfn-paneled" data-dfn-type="dfn" data-level="8.6" dat <li data-md> <p>Invoke <a data-link-type="dfn" href="#deactivate-a-sensor-object" id="ref-for-deactivate-a-sensor-object②">deactivate a sensor object</a> with <var>s</var> as argument.</p> <li data-md> - <p>Let <var>e</var> be the result of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-create-exception" id="ref-for-dfn-create-exception②">creating</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror①">NotAllowedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑥">DOMException</a></code>.</p> + <p>Let <var>e</var> be the result of <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#request-create" id="ref-for-request-create②">creating</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notallowederror" id="ref-for-notallowederror①">NotAllowedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑥">DOMException</a></code>.</p> <li data-md> <p>Queue a task to run <a data-link-type="dfn" href="#notify-error" id="ref-for-notify-error②">notify error</a> with <var>e</var> and <var>s</var> as arguments.</p> </ol> @@ -2593,7 +2592,7 @@ <h3 class="heading settled" data-level="10.3" id="unit"><span class="secno">10.3 as described in the SI Brochure <a data-link-type="biblio" href="#biblio-si" title="SI Brochure: The International System of Units (SI), 8th edition">[SI]</a>.</p> <h3 class="heading settled" data-level="10.4" id="high-vs-low-level"><span class="secno">10.4. </span><span class="content">Exposing High-Level vs. Low-Level Sensors</span><a class="self-link" href="#high-vs-low-level"></a></h3> <p>So far, specifications exposing sensors to the Web platform -have focused on <a data-link-type="dfn" href="#high-level" id="ref-for-high-level⑨">high-level</a> sensors APIs. <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a> <a data-link-type="biblio" href="#biblio-orientation-event" title="DeviceOrientation Event Specification">[ORIENTATION-EVENT]</a></p> +have focused on <a data-link-type="dfn" href="#high-level" id="ref-for-high-level⑨">high-level</a> sensors APIs. <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a> <a data-link-type="biblio" href="#biblio-orientation-event" title="Device Orientation and Motion">[ORIENTATION-EVENT]</a></p> <p>This was a reasonable approach for a number of reasons. Indeed, <a data-link-type="dfn" href="#high-level" id="ref-for-high-level①⓪">high-level</a> sensors:</p> <ul> @@ -3137,6 +3136,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="47cc5c96">event listener</span> <li><span class="dfn-paneled" id="5fd23811">fire an event</span> </ul> + <li> + <a data-link-type="biblio">[FETCH]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="9bea0221">create</span> + </ul> <li> <a data-link-type="biblio">[GEOLOCATION-SENSOR]</a> defines the following terms: <ul> @@ -3273,7 +3277,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5bf9ea61">attribute</span> <li><span class="dfn-paneled" id="5372cca8">boolean</span> <li><span class="dfn-paneled" id="cadf5fe9">converted to an idl value</span> - <li><span class="dfn-paneled" id="c164edfe">created</span> <li><span class="dfn-paneled" id="bec98d30">dictionary</span> <li><span class="dfn-paneled" id="6d8611a2">dictionary members</span> <li><span class="dfn-paneled" id="8c800cdf">double</span> @@ -3295,6 +3298,8 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://w3c.github.io/ambient-light/"><cite>Ambient Light Sensor</cite></a>. URL: <a href="https://w3c.github.io/ambient-light/">https://w3c.github.io/ambient-light/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> + <dt id="biblio-fetch">[FETCH] + <dd>Anne van Kesteren. <a href="https://fetch.spec.whatwg.org/"><cite>Fetch Standard</cite></a>. Living Standard. URL: <a href="https://fetch.spec.whatwg.org/">https://fetch.spec.whatwg.org/</a> <dt id="biblio-geolocation-sensor">[GEOLOCATION-SENSOR] <dd>Anssi Kostiainen; Thomas Steiner; Marijn Kruisselbrink. <a href="https://w3c.github.io/geolocation-sensor/"><cite>Geolocation Sensor</cite></a>. URL: <a href="https://w3c.github.io/geolocation-sensor/">https://w3c.github.io/geolocation-sensor/</a> <dt id="biblio-gyroscope">[GYROSCOPE] @@ -3308,7 +3313,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-magnetometer">[MAGNETOMETER] <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://w3c.github.io/magnetometer/"><cite>Magnetometer</cite></a>. URL: <a href="https://w3c.github.io/magnetometer/">https://w3c.github.io/magnetometer/</a> <dt id="biblio-orientation-sensor">[ORIENTATION-SENSOR] - <dd>Kenneth Christiansen; et al. <a href="https://w3c.github.io/orientation-sensor/"><cite>Orientation Sensor</cite></a>. URL: <a href="https://w3c.github.io/orientation-sensor/">https://w3c.github.io/orientation-sensor/</a> + <dd>Kenneth Christiansen; Anssi Kostiainen. <a href="https://w3c.github.io/orientation-sensor/"><cite>Orientation Sensor</cite></a>. URL: <a href="https://w3c.github.io/orientation-sensor/">https://w3c.github.io/orientation-sensor/</a> <dt id="biblio-page-visibility">[PAGE-VISIBILITY] <dd>Jatinder Mann; Arvind Jain. <a href="https://www.w3.org/TR/page-visibility/"><cite>Page Visibility (Second Edition)</cite></a>. 29 October 2013. REC. URL: <a href="https://www.w3.org/TR/page-visibility/">https://www.w3.org/TR/page-visibility/</a> <dt id="biblio-permissions">[PERMISSIONS] @@ -3331,7 +3336,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-accelprint">[ACCELPRINT] <dd>Dey, Sanorita, et al.. <a href="http://synrg.csl.illinois.edu/papers/AccelPrint_NDSS14.pdf"><cite>AccelPrint: Imperfections of Accelerometers Make Smartphones Trackable</cite></a>. 2014. Informational. URL: <a href="http://synrg.csl.illinois.edu/papers/AccelPrint_NDSS14.pdf">http://synrg.csl.illinois.edu/papers/AccelPrint_NDSS14.pdf</a> <dt id="biblio-api-design-principles">[API-DESIGN-PRINCIPLES] - <dd>Sangwhan Moon. <a href="https://w3ctag.github.io/design-principles/"><cite>Web Platform Design Principles</cite></a>. URL: <a href="https://w3ctag.github.io/design-principles/">https://w3ctag.github.io/design-principles/</a> + <dd>Lea Verou. <a href="https://w3ctag.github.io/design-principles/"><cite>Web Platform Design Principles</cite></a>. URL: <a href="https://w3ctag.github.io/design-principles/">https://w3ctag.github.io/design-principles/</a> <dt id="biblio-coordinates-transformation">[COORDINATES-TRANSFORMATION] <dd>George W. Collins, II. <a href="http://ads.harvard.edu/books/1989fcm..book/Chapter2.pdf"><cite>The Foundations of Celestial Mechanics</cite></a>. 2004. Informational. URL: <a href="http://ads.harvard.edu/books/1989fcm..book/Chapter2.pdf">http://ads.harvard.edu/books/1989fcm..book/Chapter2.pdf</a> <dt id="biblio-extennnnsible">[EXTENNNNSIBLE] @@ -3339,7 +3344,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-generic-sensor-usecases">[GENERIC-SENSOR-USECASES] <dd>Rick Waldron, Mikhail Pozdnyakov, Alexander Shalamov. <a href="https://w3c.github.io/sensors/usecases"><cite>Sensor Use Cases</cite></a>. 2017. Note. URL: <a href="https://w3c.github.io/sensors/usecases">https://w3c.github.io/sensors/usecases</a> <dt id="biblio-geolocation-api">[GEOLOCATION-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> <dt id="biblio-gyrospeechrecognition">[GYROSPEECHRECOGNITION] <dd>Michalevsky, Y., Boneh, D. and Nakibly, G.. <a href="https://www.usenix.org/system/files/conference/usenixsecurity14/sec14-paper-michalevsky.pdf"><cite>Gyrophone: Recognizing Speech from Gyroscope Signals</cite></a>. 2014. Informational. URL: <a href="https://www.usenix.org/system/files/conference/usenixsecurity14/sec14-paper-michalevsky.pdf">https://www.usenix.org/system/files/conference/usenixsecurity14/sec14-paper-michalevsky.pdf</a> <dt id="biblio-mobilesensors">[MOBILESENSORS] @@ -3347,7 +3352,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-motion-sensors">[MOTION-SENSORS] <dd>Kenneth Christiansen; Alexander Shalamov. <a href="https://w3c.github.io/motion-sensors/"><cite>Motion Sensors Explainer</cite></a>. URL: <a href="https://w3c.github.io/motion-sensors/">https://w3c.github.io/motion-sensors/</a> <dt id="biblio-orientation-event">[ORIENTATION-EVENT] - <dd>Rich Tibbett; et al. <a href="https://w3c.github.io/deviceorientation/"><cite>DeviceOrientation Event Specification</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> + <dd>Reilly Grant; Raphael Kubo da Costa; Marcos Caceres. <a href="https://w3c.github.io/deviceorientation/"><cite>Device Orientation and Motion</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> <dt id="biblio-powerful-features">[POWERFUL-FEATURES] <dd>Mike West. <a href="https://w3c.github.io/webappsec-secure-contexts/"><cite>Secure Contexts</cite></a>. URL: <a href="https://w3c.github.io/webappsec-secure-contexts/">https://w3c.github.io/webappsec-secure-contexts/</a> <dt id="biblio-qudt">[QUDT] @@ -3685,6 +3690,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "96061c00": {"dfnID":"96061c00","dfnText":"uncalibratedmagnetometer","external":true,"refSections":[{"refs":[{"id":"ref-for-uncalibrated-magnetometer-interface"}],"title":"9.1.3. Mock sensor type"}],"url":"https://w3c.github.io/magnetometer#uncalibrated-magnetometer-interface"}, "980252f2": {"dfnID":"980252f2","dfnText":"identifier","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-identifier"},{"id":"ref-for-dfn-identifier\u2460"}],"title":"6.2. Sensor"},{"refs":[{"id":"ref-for-dfn-identifier\u2461"}],"title":"9.1. Mock Sensors"},{"refs":[{"id":"ref-for-dfn-identifier\u2462"}],"title":"9.1.3. Mock sensor type"},{"refs":[{"id":"ref-for-dfn-identifier\u2463"}],"title":"10.6. Definition Requirements"}],"url":"https://webidl.spec.whatwg.org/#dfn-identifier"}, "99c988d6": {"dfnID":"99c988d6","dfnText":"remove","external":true,"refSections":[{"refs":[{"id":"ref-for-list-remove"}],"title":"8.5. Deactivate a sensor object"}],"url":"https://infra.spec.whatwg.org/#list-remove"}, +"9bea0221": {"dfnID":"9bea0221","dfnText":"create","external":true,"refSections":[{"refs":[{"id":"ref-for-request-create"},{"id":"ref-for-request-create\u2460"}],"title":"7.1.7. Sensor.start()"},{"refs":[{"id":"ref-for-request-create\u2461"}],"title":"8.6. Revoke sensor permission"}],"url":"https://fetch.spec.whatwg.org/#request-create"}, "9d386f55": {"dfnID":"9d386f55","dfnText":"event handler event type","external":true,"refSections":[{"refs":[{"id":"ref-for-event-handler-event-type"}],"title":"7.1. The Sensor Interface"},{"refs":[{"id":"ref-for-event-handler-event-type\u2460"}],"title":"7.1.12. Event handlers"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type"}, "a1894061": {"dfnID":"a1894061","dfnText":"no such window","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-no-such-window"}],"title":"9.2.1. Create mock sensor"},{"refs":[{"id":"ref-for-dfn-no-such-window\u2460"}],"title":"9.2.2. Get mock sensor"},{"refs":[{"id":"ref-for-dfn-no-such-window\u2461"}],"title":"9.2.3. Update mock sensor reading"},{"refs":[{"id":"ref-for-dfn-no-such-window\u2462"}],"title":"9.2.4. Delete mock sensor"}],"url":"https://w3c.github.io/webdriver/#dfn-no-such-window"}, "a3b18719": {"dfnID":"a3b18719","dfnText":"append","external":true,"refSections":[{"refs":[{"id":"ref-for-set-append"}],"title":"8.4. Activate a sensor object"}],"url":"https://infra.spec.whatwg.org/#set-append"}, @@ -3704,7 +3710,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "bec98d30": {"dfnID":"bec98d30","dfnText":"dictionary","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-dictionary"}],"title":"8.1. Initialize a sensor object"},{"refs":[{"id":"ref-for-dfn-dictionary\u2460"},{"id":"ref-for-dfn-dictionary\u2461"}],"title":"10.6. Definition Requirements"}],"url":"https://webidl.spec.whatwg.org/#dfn-dictionary"}, "bfc48225": {"dfnID":"bfc48225","dfnText":"read only","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-read-only"}],"title":"10.6. Definition Requirements"}],"url":"https://webidl.spec.whatwg.org/#dfn-read-only"}, "biaxial": {"dfnID":"biaxial","dfnText":"biaxial","external":false,"refSections":[],"url":"#biaxial"}, -"c164edfe": {"dfnID":"c164edfe","dfnText":"created","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-create-exception"},{"id":"ref-for-dfn-create-exception\u2460"}],"title":"7.1.7. Sensor.start()"},{"refs":[{"id":"ref-for-dfn-create-exception\u2461"}],"title":"8.6. Revoke sensor permission"}],"url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "c3b2d08c": {"dfnID":"c3b2d08c","dfnText":"task source","external":true,"refSections":[{"refs":[{"id":"ref-for-task-source"}],"title":"7.1. The Sensor Interface"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-source"}, "cadf5fe9": {"dfnID":"cadf5fe9","dfnText":"converted to an idl value","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-convert-ecmascript-to-idl-value"}],"title":"9.2.1. Create mock sensor"},{"refs":[{"id":"ref-for-dfn-convert-ecmascript-to-idl-value\u2460"}],"title":"9.2.2. Get mock sensor"},{"refs":[{"id":"ref-for-dfn-convert-ecmascript-to-idl-value\u2461"},{"id":"ref-for-dfn-convert-ecmascript-to-idl-value\u2462"}],"title":"9.2.3. Update mock sensor reading"}],"url":"https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value"}, "calibration": {"dfnID":"calibration","dfnText":"calibration","external":false,"refSections":[{"refs":[{"id":"ref-for-calibration"}],"title":"5.2. Sensor Types"},{"refs":[{"id":"ref-for-calibration\u2460"}],"title":"10. Extensibility"}],"url":"#calibration"}, @@ -4317,6 +4322,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://dom.spec.whatwg.org/#dictdef-eventinit": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventInit","type":"dictionary","url":"https://dom.spec.whatwg.org/#dictdef-eventinit"}, "https://dom.spec.whatwg.org/#event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Event","type":"interface","url":"https://dom.spec.whatwg.org/#event"}, "https://dom.spec.whatwg.org/#eventtarget": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"EventTarget","type":"interface","url":"https://dom.spec.whatwg.org/#eventtarget"}, +"https://fetch.spec.whatwg.org/#request-create": {"export":true,"for_":["Request"],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"create","type":"dfn","url":"https://fetch.spec.whatwg.org/#request-create"}, "https://html.spec.whatwg.org/multipage/browsers.html#browsing-context": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"browsing context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#browsing-context"}, "https://html.spec.whatwg.org/multipage/browsers.html#same-origin-domain": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"same origin-domain","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#same-origin-domain"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#nav-document": {"export":true,"for_":["navigable"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"active document","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#nav-document"}, @@ -4385,7 +4391,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://webidl.spec.whatwg.org/#SecureContext": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SecureContext","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#SecureContext"}, "https://webidl.spec.whatwg.org/#dfn-attribute": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"attribute","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-attribute"}, "https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"converted to an idl value","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value"}, -"https://webidl.spec.whatwg.org/#dfn-create-exception": {"export":true,"for_":["exception"],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"created","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-create-exception"}, "https://webidl.spec.whatwg.org/#dfn-dictionary": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"dictionary","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-dictionary"}, "https://webidl.spec.whatwg.org/#dfn-dictionary-member": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"dictionary members","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-dictionary-member"}, "https://webidl.spec.whatwg.org/#dfn-identifier": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"identifier","type":"dfn","url":"https://webidl.spec.whatwg.org/#dfn-identifier"}, diff --git a/tests/github/w3c/sensors/usecases.console.txt b/tests/github/w3c/sensors/usecases.console.txt index ad89219dda..8d40d41fcb 100644 --- a/tests/github/w3c/sensors/usecases.console.txt +++ b/tests/github/w3c/sensors/usecases.console.txt @@ -1,3 +1 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/sensors/usecases.html b/tests/github/w3c/sensors/usecases.html index cfa3aca400..dd9da11850 100644 --- a/tests/github/w3c/sensors/usecases.html +++ b/tests/github/w3c/sensors/usecases.html @@ -5,7 +5,6 @@ <title>Sensor Use Cases</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/generic-sensor-usecases/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -718,7 +717,7 @@ <h1 class="p-name no-ref" id="title">Sensor Use Cases</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -728,7 +727,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p><em>This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index</a> at https://www.w3.org/TR/.</em></p> - <p data-deliverer="43696"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Note + <p data-deliverer="43696"> This document was published by the <a href="https://www.w3.org/groups/wg/das">Devices and Sensors Working Group</a> as a Group Note using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Note track</a>. </p> <p> If you wish to make comments regarding this document, please send them to <a href="mailto:public-device-apis@w3.org?Subject=%5Bgeneric-sensor-usecases%5D%20PUT%20SUBJECT%20HERE">public-device-apis@w3.org</a> (<a href="mailto:public-device-apis-request@w3.org?subject=subscribe">subscribe</a>, <a href="https://lists.w3.org/Archives/Public/public-device-apis/">archives</a>). When sending e-mail, @@ -738,8 +737,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> Group Notes are not endorsed by <abbr title="World Wide Web Consortium">W3C</abbr> nor its Members. </p> - <p> The <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> The <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a> does not carry any licensing requirements or commitments on this document. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -964,19 +963,19 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-accelerometer">[ACCELEROMETER] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 18 October 2022. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/accelerometer/"><cite>Accelerometer</cite></a>. 7 June 2024. CR. URL: <a href="https://www.w3.org/TR/accelerometer/">https://www.w3.org/TR/accelerometer/</a> <dt id="biblio-ambient-light">[AMBIENT-LIGHT] - <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/ambient-light/"><cite>Ambient Light Sensor</cite></a>. 18 October 2022. WD. URL: <a href="https://www.w3.org/TR/ambient-light/">https://www.w3.org/TR/ambient-light/</a> + <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/ambient-light/"><cite>Ambient Light Sensor</cite></a>. 24 January 2024. WD. URL: <a href="https://www.w3.org/TR/ambient-light/">https://www.w3.org/TR/ambient-light/</a> <dt id="biblio-gyroscope">[GYROSCOPE] - <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 7 December 2021. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> + <dd>Anssi Kostiainen. <a href="https://www.w3.org/TR/gyroscope/"><cite>Gyroscope</cite></a>. 8 January 2024. CR. URL: <a href="https://www.w3.org/TR/gyroscope/">https://www.w3.org/TR/gyroscope/</a> <dt id="biblio-magnetometer">[MAGNETOMETER] - <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 7 December 2021. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> + <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/magnetometer/"><cite>Magnetometer</cite></a>. 15 May 2024. WD. URL: <a href="https://www.w3.org/TR/magnetometer/">https://www.w3.org/TR/magnetometer/</a> <dt id="biblio-motion-sensors">[MOTION-SENSORS] <dd>Kenneth Christiansen; Alexander Shalamov. <a href="https://www.w3.org/TR/motion-sensors/"><cite>Motion Sensors Explainer</cite></a>. 30 August 2017. NOTE. URL: <a href="https://www.w3.org/TR/motion-sensors/">https://www.w3.org/TR/motion-sensors/</a> <dt id="biblio-orientation-sensor">[ORIENTATION-SENSOR] - <dd>Kenneth Christiansen; et al. <a href="https://www.w3.org/TR/orientation-sensor/"><cite>Orientation Sensor</cite></a>. 2 September 2021. WD. URL: <a href="https://www.w3.org/TR/orientation-sensor/">https://www.w3.org/TR/orientation-sensor/</a> + <dd>Kenneth Christiansen; Anssi Kostiainen. <a href="https://www.w3.org/TR/orientation-sensor/"><cite>Orientation Sensor</cite></a>. 10 January 2024. WD. URL: <a href="https://www.w3.org/TR/orientation-sensor/">https://www.w3.org/TR/orientation-sensor/</a> <dt id="biblio-proximity">[PROXIMITY] - <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/proximity/"><cite>Proximity Sensor</cite></a>. 3 September 2021. WD. URL: <a href="https://www.w3.org/TR/proximity/">https://www.w3.org/TR/proximity/</a> + <dd>Anssi Kostiainen; Rijubrata Bhaumik. <a href="https://www.w3.org/TR/proximity/"><cite>Proximity Sensor</cite></a>. 27 November 2023. WD. URL: <a href="https://www.w3.org/TR/proximity/">https://www.w3.org/TR/proximity/</a> </dl> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/svgwg/specs/color/Overview.html b/tests/github/w3c/svgwg/specs/color/Overview.html index f4a195271e..928f96894c 100644 --- a/tests/github/w3c/svgwg/specs/color/Overview.html +++ b/tests/github/w3c/svgwg/specs/color/Overview.html @@ -3,7 +3,7 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Additions to CSS Color 4</title> - <link href="../default.css" rel="stylesheet"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="none" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -582,14 +582,14 @@ <h1>Additions to CSS Color 4</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This is a temporary place for additions to CSS Colors 4 and moved from SVG2.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> <em>This section describes the status of this document at the time of its publication. A list of @@ -1309,20 +1309,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1368,7 +1370,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css22">[CSS22] diff --git a/tests/github/w3c/svgwg/specs/marker/Overview.html b/tests/github/w3c/svgwg/specs/marker/Overview.html index 494262a8f8..fafafb96f0 100644 --- a/tests/github/w3c/svgwg/specs/marker/Overview.html +++ b/tests/github/w3c/svgwg/specs/marker/Overview.html @@ -3,7 +3,7 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>SVG Marker Level 1</title> - <link href="../default.css" rel="stylesheet"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="http://dev.w3.org/fxtf/motion-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -602,14 +602,14 @@ <h1>SVG Marker Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>Markers are graphical objects that are painted at particular positions along a <a data-link-type="element" href="https://svgwg.org/svg2-draft/paths.html#elementdef-path" id="ref-for-elementdef-path">path</a>, <a data-link-type="element" href="https://svgwg.org/svg2-draft/shapes.html#elementdef-line" id="ref-for-elementdef-line">line</a>, <a data-link-type="element" href="https://svgwg.org/svg2-draft/shapes.html#elementdef-polyline" id="ref-for-elementdef-polyline">polyline</a> or <a data-link-type="element" href="https://svgwg.org/svg2-draft/shapes.html#elementdef-polygon" id="ref-for-elementdef-polygon">polygon</a> element.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> <em>This section describes the status of this document at the time of its publication. A list of @@ -1503,7 +1503,7 @@ <h2 class="heading settled" data-level="8" id="MarkerKnockout"><span class="secn <dt>[ <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#length-value" id="ref-for-length-value①③">&lt;length></a> | <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①③">&lt;percentage></a> | <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value①⑥">&lt;number></a> ] inverted? circle <dd> <p>The knockout shape side is an arc. The shape is computed in the same - way as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse" id="ref-for-valdef-rg-ending-shape-ellipse">ellipse</a> shape, but with + way as the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse" id="ref-for-valdef-radial-shape-ellipse">ellipse</a> shape, but with both radii of the ellipse being the specified length or percentage, and with a percentage referring to the size of the marker contents viewport.</p> <dt>[ <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#length-value" id="ref-for-length-value①④">&lt;length></a> | <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#percentage-value" id="ref-for-percentage-value①④">&lt;percentage></a> | <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-values-4/#number-value" id="ref-for-number-value①⑦">&lt;number></a> ]{1,2} inverted? rectangle @@ -1785,20 +1785,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1871,7 +1873,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-IMAGES-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="01d2ad7d">ellipse</span> + <li><span class="dfn-paneled" id="44be0cef">ellipse</span> </ul> <li> <a data-link-type="biblio">[CSS-MASKING-1]</a> defines the following terms: @@ -1952,9 +1954,9 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-images-3">[CSS-IMAGES-3] <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-3/"><cite>CSS Images Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-3/">https://drafts.csswg.org/css-images-3/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] @@ -1962,7 +1964,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-speech-1">[CSS-SPEECH-1] - <dd>Daniel Weck. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> + <dd>Léonie Watson; Elika Etemad. <a href="https://drafts.csswg.org/css-speech-1/"><cite>CSS Speech Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-speech-1/">https://drafts.csswg.org/css-speech-1/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-fill-stroke-3">[FILL-STROKE-3] @@ -2346,7 +2348,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "use strict"; { let dfnPanelData = { -"01d2ad7d": {"dfnID":"01d2ad7d","dfnText":"ellipse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-rg-ending-shape-ellipse"}],"title":"8. Knocking out the stroke: the marker-knockout-left and marker-knockout-right properties"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse"}, "09b0661c": {"dfnID":"09b0661c","dfnText":"text","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-text"}],"title":"2. The marker element"}],"url":"https://svgwg.org/svg2-draft/text.html#elementdef-text"}, "0c48b9b1": {"dfnID":"0c48b9b1","dfnText":"path","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-path"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-elementdef-path\u2460"}],"title":"1. Introduction"},{"refs":[{"id":"ref-for-elementdef-path\u2461"},{"id":"ref-for-elementdef-path\u2462"}],"title":"4. Vertex markers: the marker-start,\nmarker-mid and marker-end properties"}],"url":"https://svgwg.org/svg2-draft/paths.html#elementdef-path"}, "1179e969": {"dfnID":"1179e969","dfnText":"a","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-a"}],"title":"2. The marker element"}],"url":"https://svgwg.org/svg2-draft/linking.html#elementdef-a"}, @@ -2361,6 +2362,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "3a660536": {"dfnID":"3a660536","dfnText":"shape elements","external":true,"refSections":[{"refs":[{"id":"ref-for-TermShapeElement"}],"title":"2. The marker element"}],"url":"https://svgwg.org/svg2-draft/shapes.html#TermShapeElement"}, "3b3e8d30": {"dfnID":"3b3e8d30","dfnText":"inverted","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-media-inverted-colors-inverted"},{"id":"ref-for-valdef-media-inverted-colors-inverted\u2460"},{"id":"ref-for-valdef-media-inverted-colors-inverted\u2461"},{"id":"ref-for-valdef-media-inverted-colors-inverted\u2462"},{"id":"ref-for-valdef-media-inverted-colors-inverted\u2463"},{"id":"ref-for-valdef-media-inverted-colors-inverted\u2464"}],"title":"8. Knocking out the stroke: the marker-knockout-left and marker-knockout-right properties"}],"url":"https://drafts.csswg.org/mediaqueries-5/#valdef-media-inverted-colors-inverted"}, "409e2104": {"dfnID":"409e2104","dfnText":"presentation attributes","external":true,"refSections":[{"refs":[{"id":"ref-for-TermPresentationAttribute"}],"title":"2. The marker element"}],"url":"https://svgwg.org/svg2-draft/styling.html#TermPresentationAttribute"}, +"44be0cef": {"dfnID":"44be0cef","dfnText":"ellipse","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-radial-shape-ellipse"}],"title":"8. Knocking out the stroke: the marker-knockout-left and marker-knockout-right properties"}],"url":"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse"}, "511b3636": {"dfnID":"511b3636","dfnText":"foreignobject","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-foreignObject"}],"title":"2. The marker element"}],"url":"https://svgwg.org/svg2-draft/embedded.html#elementdef-foreignObject"}, "537cf076": {"dfnID":"537cf076","dfnText":"?","external":true,"refSections":[{"refs":[{"id":"ref-for-mult-opt"},{"id":"ref-for-mult-opt\u2460"}],"title":"6. Repeating markers: the marker-pattern property"},{"refs":[{"id":"ref-for-mult-opt\u2461"}],"title":"7. Marker shorthand: the marker property"},{"refs":[{"id":"ref-for-mult-opt\u2462"},{"id":"ref-for-mult-opt\u2463"},{"id":"ref-for-mult-opt\u2464"},{"id":"ref-for-mult-opt\u2465"}],"title":"8. Knocking out the stroke: the marker-knockout-left and marker-knockout-right properties"}],"url":"https://drafts.csswg.org/css-values-4/#mult-opt"}, "55e8f5de": {"dfnID":"55e8f5de","dfnText":"none","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-none"},{"id":"ref-for-valdef-display-none\u2460"}],"title":"2. The marker element"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-none"}, @@ -2876,7 +2878,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-position","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position"}, "https://drafts.csswg.org/css-display-4/#propdef-display": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"display","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "https://drafts.csswg.org/css-display-4/#valdef-display-none": {"export":true,"for_":["display","<display-box>"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"none","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-display-none"}, -"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse": {"export":true,"for_":["<rg-ending-shape>"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"ellipse","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-rg-ending-shape-ellipse"}, +"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse": {"export":true,"for_":["<radial-shape>"],"level":"3","normative":true,"shortname":"css-images","spec":"css-images-3","status":"current","text":"ellipse","type":"value","url":"https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse"}, "https://drafts.csswg.org/css-overflow-3/#propdef-overflow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"overflow","type":"property","url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, "https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden": {"export":true,"for_":["overflow","overflow-x","overflow-y"],"level":"3","normative":true,"shortname":"css-overflow","spec":"css-overflow-3","status":"current","text":"hidden","type":"value","url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden"}, "https://drafts.csswg.org/css-speech-1/#valdef-voice-family-child": {"export":true,"for_":["voice-family"],"level":"1","normative":true,"shortname":"css-speech","spec":"css-speech-1","status":"current","text":"child","type":"value","url":"https://drafts.csswg.org/css-speech-1/#valdef-voice-family-child"}, diff --git a/tests/github/w3c/svgwg/specs/svg-native/index.console.txt b/tests/github/w3c/svgwg/specs/svg-native/index.console.txt index 2bf353fa37..1a94bb52db 100644 --- a/tests/github/w3c/svgwg/specs/svg-native/index.console.txt +++ b/tests/github/w3c/svgwg/specs/svg-native/index.console.txt @@ -42,7 +42,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -69,6 +69,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -81,37 +82,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -119,9 +106,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -134,14 +123,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -166,7 +159,7 @@ Arbitrarily chose https://drafts.csswg.org/css-align-3/#valdef-align-self-auto To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-align-3; type:value; for:align-self; text:auto spec:css-align-3; type:value; for:justify-self; text:auto -spec:css-anchor-position-1; type:value; text:auto +spec:css-animations-2; type:value; for:animation-duration; text:auto spec:css-animations-2; type:value; for:animation-timeline; text:auto spec:css-animations-2; type:value; for:<single-animation-timeline>; text:auto spec:css-backgrounds-3; type:value; for:background-size; text:auto @@ -193,6 +186,7 @@ spec:css-images-3; type:value; text:auto spec:css-inline-3; type:value; for:baseline-source; text:auto spec:css-inline-3; type:value; for:vertical-align; text:auto spec:css-inline-3; type:value; for:dominant-baseline; text:auto +spec:css-inline-3; type:value; for:text-box-edge; text:auto spec:css-multicol-2; type:value; text:auto spec:css-nav-1; type:value; for:spatial-navigation-action; text:auto spec:css-nav-1; type:value; for:spatial-navigation-contain; text:auto @@ -205,37 +199,23 @@ spec:css-overscroll-1; type:value; for:overscroll-behavior-inline; text:auto spec:css-overscroll-1; type:value; for:overscroll-behavior-block; text:auto spec:css-page-3; type:value; for:@page/bleed; text:auto spec:css-page-3; type:value; for:@page/size; text:auto -spec:css-position-3; type:value; for:top; text:auto -spec:css-position-3; type:value; for:right; text:auto -spec:css-position-3; type:value; for:bottom; text:auto -spec:css-position-3; type:value; for:left; text:auto -spec:css-position-3; type:value; for:inset-block-start; text:auto -spec:css-position-3; type:value; for:inset-inline-start; text:auto -spec:css-position-3; type:value; for:inset-block-end; text:auto -spec:css-position-3; type:value; for:inset-inline-end; text:auto -spec:css-position-3; type:value; for:inset-block; text:auto -spec:css-position-3; type:value; for:inset-inline; text:auto -spec:css-position-3; type:value; for:inset; text:auto +spec:css-position-4; type:value; text:auto spec:css-rhythm-1; type:value; text:auto spec:css-round-display-1; type:value; text:auto spec:css-ruby-1; type:value; for:ruby-merge; text:auto spec:css-ruby-1; type:value; for:ruby-overhang; text:auto spec:css-scroll-anchoring-1; type:value; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-inline; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-x; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-y; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-block; text:auto -spec:css-scroll-snap-2; type:value; for:scroll-start-target-inline; text:auto +spec:css-scroll-snap-2; type:value; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-color; text:auto spec:css-scrollbars-1; type:value; for:scrollbar-width; text:auto spec:css-shapes-2; type:value; text:auto spec:css-size-adjust-1; type:value; text:auto -spec:css-sizing-4; type:value; text:auto +spec:css-sizing-4; type:value; for:aspect-ratio; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-width; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-height; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-block-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-inline-size; text:auto +spec:css-sizing-4; type:value; for:contain-intrinsic-size; text:auto spec:css-speech-1; type:value; for:speak; text:auto spec:css-speech-1; type:value; for:voice-duration; text:auto spec:css-text-4; type:value; for:hyphenate-character; text:auto @@ -243,9 +223,11 @@ spec:css-text-4; type:value; for:hyphenate-limit-chars; text:auto spec:css-text-4; type:value; for:hyphens; text:auto spec:css-text-4; type:value; for:line-break; text:auto spec:css-text-4; type:value; for:text-align-last; text:auto +spec:css-text-4; type:value; for:text-autospace; text:auto spec:css-text-4; type:value; for:text-justify; text:auto spec:css-text-4; type:value; for:text-spacing; text:auto spec:css-text-4; type:value; for:text-spacing-trim; text:auto +spec:css-text-4; type:value; for:text-wrap-style; text:auto spec:css-text-4; type:value; for:wrap-before; text:auto spec:css-text-4; type:value; for:wrap-after; text:auto spec:css-text-4; type:value; for:wrap-inside; text:auto @@ -258,14 +240,18 @@ spec:css-text-decor-4; type:value; for:text-decoration-thickness; text:auto spec:css-text-decor-4; type:value; for:text-underline-offset; text:auto spec:css-ui-4; type:value; for:accent-color; text:auto spec:css-ui-4; type:value; for:appearance; text:auto +spec:css-ui-4; type:value; for:caret-animation; text:auto spec:css-ui-4; type:value; for:caret-shape; text:auto spec:css-ui-4; type:value; for:cursor; text:auto spec:css-ui-4; type:value; for:input-security; text:auto +spec:css-ui-4; type:value; for:outline-color; text:auto spec:css-ui-4; type:value; for:pointer-events; text:auto spec:css-ui-4; type:value; for:user-select; text:auto +spec:css-view-transitions-2; type:value; text:auto spec:css-will-change-1; type:value; text:auto spec:scroll-animations-1; type:value; text:auto spec:filter-effects-1; type:value; text:auto +spec:motion-1; type:value; for:offset-anchor; text:auto spec:motion-1; type:value; for:offset-position; text:auto spec:motion-1; type:value; for:offset-rotate; text:auto ''auto'' @@ -356,3 +342,4 @@ To auto-select one of the following refs, insert one of these lines into a <pre spec:html; type:element; text:a spec:svg2; type:element; text:a <{a}> +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/svgwg/specs/svg-native/index.html b/tests/github/w3c/svgwg/specs/svg-native/index.html index cb4a2e2727..2e49023a27 100644 --- a/tests/github/w3c/svgwg/specs/svg-native/index.html +++ b/tests/github/w3c/svgwg/specs/svg-native/index.html @@ -3,7 +3,7 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>SVG Native</title> - <link href="../default.css" rel="stylesheet"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="http://www.w3.org/TR/svg-native" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -590,7 +590,7 @@ <h1 class="p-name no-ref" id="title">SVG Native</h1> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>SVG Native is a profile of SVG 1.1 designed for interoperability with native apps and system libraries that execute outside the Web environment, and thus cannot rely on features such as linking, interactivity, animation, or the Web security model.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> <em>This section describes the status of this document at the time of its publication. A list of @@ -685,7 +685,7 @@ <h3 class="heading settled" data-level="1.1" id="usecases"><span class="secno">1 <li data-md> <p><b>Color Fonts</b>: Each glyph in a font is represented as a series of vector contours. Color fonts allow the glyphs to include color, in addition to their contours.</p> <li data-md> - <p><b>Drawings and sketches</b>: Drawings and sketches may be created with vector artwork tools. Depending on the complexity of the artwork, representing it using a series of vector drawing elements may result in a smaller file size than a raster format such as <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a>. Drawings and sketches often need to be viewed outside of the Web platform.</p> + <p><b>Drawings and sketches</b>: Drawings and sketches may be created with vector artwork tools. Depending on the complexity of the artwork, representing it using a series of vector drawing elements may result in a smaller file size than a raster format such as <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a>. Drawings and sketches often need to be viewed outside of the Web platform.</p> </ol> <h3 class="heading settled" data-level="1.2" id="basics"><span class="secno">1.2. </span><span class="content">Basics</span><a class="self-link" href="#basics"></a></h3> <p>SVG Native is presented as a series of modifications of the <a href="https://svgwg.org/svg2-draft/conform.html#secure-static-mode">Secure Static Mode</a> of <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>. These modifications are applied as differences from that specification. Rather than being a strict line-by-line diff, this specification describes the differences directly.</p> @@ -694,7 +694,7 @@ <h3 class="heading settled" data-level="1.2" id="basics"><span class="secno">1.2 <p class="note" role="note"><span class="marker">Note:</span> If a document uses parts of SVG that aren’t part of SVG Native, then it isn’t a conformant SVG Native document. When an SVG Native renderer opens such a file, it should ignore all of those parts. Therefore, all SVG Native renderers should produce the same rendering for the same document. However, there may be renderers which intentionally decide to honor parts of SVG that aren’t part of SVG Native. In order to make it more likely that a given document’s rendering is predictable, even in these renderers, SVG Native authoring tools are recommended to always emit documents that conform to this specification. The SVG Working Group is considering producing a validator to determine whether a given document is conformant to the SVG Native format.</p> <p class="issue" id="issue-7110f720"><a class="self-link" href="#issue-7110f720"></a> The file type and mime type is being discussed in <a href="https://github.com/w3c/svgwg/issues/664">this GitHub issue</a>.</p> <p>SVG Native is a standalone file type, expected to be rendered with a dedicated-purpose renderer. Therefore, SVG Native content must not be present as part of a larger XML (or HTML) document. If it is present as part of a larger XML (or HTML) document, the content should be interpreted as SVG proper.</p> - <p class="note" role="note"><span class="marker">Note:</span> This means that browsers encounting a SVG Native root element within the DOM must not interpret it as SVG Native, even if it has the <a class="property css" data-link-type="property">baseAttribute</a> attribute set to <code>native</code>. If a Web author desires to use SVG Native on the Web, the <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element" id="ref-for-the-img-element">img</a></code> element may be used instead. This matches other native image formats such as <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a>. A Web browser should implement SVG Native by linking with the system’s SVG Native facilities. This matches the implementation of other native image formats.</p> + <p class="note" role="note"><span class="marker">Note:</span> This means that browsers encounting a SVG Native root element within the DOM must not interpret it as SVG Native, even if it has the <a class="property css" data-link-type="property">baseAttribute</a> attribute set to <code>native</code>. If a Web author desires to use SVG Native on the Web, the <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element" id="ref-for-the-img-element">img</a></code> element may be used instead. This matches other native image formats such as <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a>. A Web browser should implement SVG Native by linking with the system’s SVG Native facilities. This matches the implementation of other native image formats.</p> <p>The root element of an SVG Native document must have the <a class="property css" data-link-type="property">baseAttribute</a> attribute set to <code>native</code> and the <a class="property css" data-link-type="property">version</a> attribute set to <code>1.1</code>.</p> <p>The file extension for SVG Native is <code>.svn</code>. The UTI for SVG Native is <code>public.svg.native</code>. The MIME type for SVG Native is <code>image/svgnative+xml</code>.</p> <p>User agents may limit the reference depth of references to implementation-dependent maximas. However, this limit must be greater than or equal to 1 reference.</p> @@ -756,7 +756,7 @@ <h2 class="heading settled" data-level="3" id="struct"><span class="secno">3. </ <p>Conditional processesing attributes and elements are not supported in SVG Native. These include the <code><a data-link-type="element" href="https://svgwg.org/svg2-draft/struct.html#elementdef-switch" id="ref-for-elementdef-switch">switch</a></code> element.</p> <p>The <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/semantics.html#meta" id="ref-for-meta">meta</a></code> and <code><a data-link-type="element" href="https://svgwg.org/svg2-draft/struct.html#elementdef-metadata" id="ref-for-elementdef-metadata">metadata</a></code> elements are not supported in SVG Native.</p> <p>Elements in foreign namespaces are not supported in SVG Native. Attributes in foreign namespaces, except the xlink (<code>http://www.w3.org/1999/xlink</code>) namespace, are not supported in SVG Native.</p> - <p>Because SVG Native is a subset of <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>'s Secure Static mode, only <code><a data-link-type="element" href="https://svgwg.org/svg2-draft/embedded.html#elementdef-image" id="ref-for-elementdef-image">image</a></code> elements which contain base64-encoded <code>data:</code> URLs of <a data-link-type="biblio" href="#biblio-jpeg" title="JPEG File Interchange Format">[JPEG]</a> or <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a> images are supported. <a data-link-type="biblio" href="#biblio-apng" title="APNG Specification">[APNG]</a> images are be rendered without animation, using standard backward-compatibility with static <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Second Edition)">[PNG]</a> images. No other image format is supported by SVG Native.</p> + <p>Because SVG Native is a subset of <a data-link-type="biblio" href="#biblio-svg2" title="Scalable Vector Graphics (SVG) 2">[SVG2]</a>'s Secure Static mode, only <code><a data-link-type="element" href="https://svgwg.org/svg2-draft/embedded.html#elementdef-image" id="ref-for-elementdef-image">image</a></code> elements which contain base64-encoded <code>data:</code> URLs of <a data-link-type="biblio" href="#biblio-jpeg" title="JPEG File Interchange Format">[JPEG]</a> or <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a> images are supported. <a data-link-type="biblio" href="#biblio-apng" title="APNG Specification">[APNG]</a> images are be rendered without animation, using standard backward-compatibility with static <a data-link-type="biblio" href="#biblio-png" title="Portable Network Graphics (PNG) Specification (Third Edition)">[PNG]</a> images. No other image format is supported by SVG Native.</p> <p>All external resource loading is forbidden.</p> <p>The <code><a data-link-type="element" href="https://svgwg.org/svg2-draft/struct.html#elementdef-symbol" id="ref-for-elementdef-symbol">symbol</a></code> element is not supported by SVG Native.</p> <h2 class="heading settled" data-level="4" id="styling"><span class="secno">4. </span><span class="content">Styling</span><a class="self-link" href="#styling"></a></h2> @@ -775,7 +775,7 @@ <h2 class="heading settled" data-level="4" id="styling"><span class="secno">4. < <li data-md> <p><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-unset" id="ref-for-valdef-all-unset">unset</a></p> <li data-md> - <p><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-4/#valdef-all-revert" id="ref-for-valdef-all-revert">revert</a></p> + <p><a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-cascade-5/#valdef-all-revert" id="ref-for-valdef-all-revert">revert</a></p> </ol> <p>Percentage length values are not supported by SVG Native.</p> <p><a data-link-type="dfn">Relative units</a> are not supported by SVG Native.</p> @@ -891,20 +891,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -920,17 +922,13 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="f47d48ea">scroll</span> </ul> - <li> - <a data-link-type="biblio">[CSS-CASCADE-4]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="a8ac6f1b">revert</span> - </ul> <li> <a data-link-type="biblio">[CSS-CASCADE-5]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="d95397a7">all</span> <li><span class="dfn-paneled" id="c388d253">inherit</span> <li><span class="dfn-paneled" id="4d7d3dcd">initial</span> + <li><span class="dfn-paneled" id="bef88b2d">revert</span> <li><span class="dfn-paneled" id="9e004c39">unset</span> </ul> <li> @@ -1149,21 +1147,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> - <dt id="biblio-css-cascade-4">[CSS-CASCADE-4] - <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-4/"><cite>CSS Cascading and Inheritance Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-4/">https://drafts.csswg.org/css-cascade-4/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-env-1">[CSS-ENV-1] - <dd>CSS Environment Variables Module Level 1 URL: <a href="https://drafts.csswg.org/css-env-1/">https://drafts.csswg.org/css-env-1/</a> + <dd><a href="https://drafts.csswg.org/css-env-1/"><cite>CSS Environment Variables Module Level 1</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-env-1/">https://drafts.csswg.org/css-env-1/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-fonts-5">[CSS-FONTS-5] - <dd>Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-5/"><cite>CSS Fonts Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-5/">https://drafts.csswg.org/css-fonts-5/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-logical-1">[CSS-LOGICAL-1] <dd>Rossen Atanassov; Elika Etemad. <a href="https://drafts.csswg.org/css-logical-1/"><cite>CSS Logical Properties and Values Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-logical-1/">https://drafts.csswg.org/css-logical-1/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] @@ -1171,13 +1167,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-overflow-4">[CSS-OVERFLOW-4] - <dd>David Baron; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> + <dd>David Baron; Florian Rivoal; Elika Etemad. <a href="https://drafts.csswg.org/css-overflow-4/"><cite>CSS Overflow Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-4/">https://drafts.csswg.org/css-overflow-4/</a> <dt id="biblio-css-round-display-1">[CSS-ROUND-DISPLAY-1] <dd>Jihye Hong. <a href="https://drafts.csswg.org/css-round-display/"><cite>CSS Round Display Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-round-display/">https://drafts.csswg.org/css-round-display/</a> <dt id="biblio-css-shapes-1">[CSS-SHAPES-1] <dd>Rossen Atanassov; Alan Stearns. <a href="https://drafts.csswg.org/css-shapes/"><cite>CSS Shapes Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-shapes/">https://drafts.csswg.org/css-shapes/</a> <dt id="biblio-css-shapes-2">[CSS-SHAPES-2] - <dd>CSS Shapes Module Level 2 URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> + <dd><a href="https://drafts.csswg.org/css-shapes-2/"><cite>CSS Shapes Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-shapes-2/">https://drafts.csswg.org/css-shapes-2/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-text-3">[CSS-TEXT-3] @@ -1193,7 +1189,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css-variables-2">[CSS-VARIABLES-2] - <dd>CSS Custom Properties for Cascading Variables Module Level 2 URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> + <dd><a href="https://drafts.csswg.org/css-variables-2/"><cite>CSS Custom Properties for Cascading Variables Module Level 2</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-variables-2/">https://drafts.csswg.org/css-variables-2/</a> <dt id="biblio-css-will-change-1">[CSS-WILL-CHANGE-1] <dd>Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-will-change/"><cite>CSS Will Change Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-will-change/">https://drafts.csswg.org/css-will-change/</a> <dt id="biblio-css-writing-modes-3">[CSS-WRITING-MODES-3] @@ -1205,7 +1201,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-jpeg">[JPEG] <dd>Eric Hamilton. <a href="https://www.w3.org/Graphics/JPEG/jfif3.pdf"><cite>JPEG File Interchange Format</cite></a>. September 1992. URL: <a href="https://www.w3.org/Graphics/JPEG/jfif3.pdf">https://www.w3.org/Graphics/JPEG/jfif3.pdf</a> <dt id="biblio-png">[PNG] - <dd>Tom Lane. <a href="https://w3c.github.io/PNG-spec/"><cite>Portable Network Graphics (PNG) Specification (Second Edition)</cite></a>. URL: <a href="https://w3c.github.io/PNG-spec/">https://w3c.github.io/PNG-spec/</a> + <dd>Chris Lilley; et al. <a href="https://w3c.github.io/png/"><cite>Portable Network Graphics (PNG) Specification (Third Edition)</cite></a>. URL: <a href="https://w3c.github.io/png/">https://w3c.github.io/png/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-svg2">[SVG2] @@ -1214,7 +1210,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> @@ -1484,7 +1480,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9e1a434a": {"dfnID":"9e1a434a","dfnText":"in","external":true,"refSections":[{"refs":[{"id":"ref-for-in"}],"title":"6. Coordinate Systems, Transformations, and Units"}],"url":"https://drafts.csswg.org/css-values-4/#in"}, "9e84e011": {"dfnID":"9e84e011","dfnText":"text-decoration-line","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-decoration-line"}],"title":"8. Text"}],"url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-line"}, "a82a381d": {"dfnID":"a82a381d","dfnText":"view","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-view"}],"title":"13. Linking"}],"url":"https://svgwg.org/svg2-draft/linking.html#elementdef-view"}, -"a8ac6f1b": {"dfnID":"a8ac6f1b","dfnText":"revert","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-revert"}],"title":"4. Styling"}],"url":"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert"}, "a8fe91d7": {"dfnID":"a8fe91d7","dfnText":"font-weight","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-weight"}],"title":"8. Text"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-weight"}, "abbd4058": {"dfnID":"abbd4058","dfnText":"rect","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-rect"}],"title":"6. Coordinate Systems, Transformations, and Units"}],"url":"https://svgwg.org/svg2-draft/shapes.html#elementdef-rect"}, "abdfd54a": {"dfnID":"abdfd54a","dfnText":"pattern","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-pattern"}],"title":"6. Coordinate Systems, Transformations, and Units"},{"refs":[{"id":"ref-for-elementdef-pattern\u2460"}],"title":"11. Gradients and Patterns"}],"url":"https://svgwg.org/svg2-draft/pservers.html#elementdef-pattern"}, @@ -1496,6 +1491,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "b9aaa547": {"dfnID":"b9aaa547","dfnText":"dominant-baseline","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-dominant-baseline"}],"title":"8. Text"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-dominant-baseline"}, "ba920583": {"dfnID":"ba920583","dfnText":"style","external":true,"refSections":[{"refs":[{"id":"ref-for-the-style-element"}],"title":"4. Styling"}],"url":"https://html.spec.whatwg.org/multipage/semantics.html#the-style-element"}, "bb72d539": {"dfnID":"bb72d539","dfnText":"text-rendering","external":true,"refSections":[{"refs":[{"id":"ref-for-TextRenderingProperty"}],"title":"8. Text"}],"url":"https://svgwg.org/svg2-draft/painting.html#TextRenderingProperty"}, +"bef88b2d": {"dfnID":"bef88b2d","dfnText":"revert","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-revert"}],"title":"4. Styling"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert"}, "bf29f5ff": {"dfnID":"bf29f5ff","dfnText":"text-anchor","external":true,"refSections":[{"refs":[{"id":"ref-for-TextAnchorProperty"}],"title":"8. Text"}],"url":"https://svgwg.org/svg2-draft/text.html#TextAnchorProperty"}, "c388d253": {"dfnID":"c388d253","dfnText":"inherit","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-all-inherit"}],"title":"4. Styling"}],"url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "c400bde8": {"dfnID":"c400bde8","dfnText":"switch","external":true,"refSections":[{"refs":[{"id":"ref-for-elementdef-switch"}],"title":"3. Document Structure"}],"url":"https://svgwg.org/svg2-draft/struct.html#elementdef-switch"}, @@ -1920,10 +1916,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content let refsData = { "https://drafts.csswg.org/css-align-3/#valdef-align-self-auto": {"export":true,"for_":["align-self"],"level":"3","normative":true,"shortname":"css-align","spec":"css-align-3","status":"current","text":"auto","type":"value","url":"https://drafts.csswg.org/css-align-3/#valdef-align-self-auto"}, "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-scroll": {"export":true,"for_":["background-attachment"],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"scroll","type":"value","url":"https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-scroll"}, -"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert": {"export":true,"for_":["all"],"level":"4","normative":true,"shortname":"css-cascade","spec":"css-cascade-4","status":"current","text":"revert","type":"value","url":"https://drafts.csswg.org/css-cascade-4/#valdef-all-revert"}, "https://drafts.csswg.org/css-cascade-5/#propdef-all": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"all","type":"property","url":"https://drafts.csswg.org/css-cascade-5/#propdef-all"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"inherit","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-inherit"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-initial": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"initial","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-initial"}, +"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"revert","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-revert"}, "https://drafts.csswg.org/css-cascade-5/#valdef-all-unset": {"export":true,"for_":["all"],"level":"5","normative":true,"shortname":"css-cascade","spec":"css-cascade-5","status":"current","text":"unset","type":"value","url":"https://drafts.csswg.org/css-cascade-5/#valdef-all-unset"}, "https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"currentcolor","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor"}, "https://drafts.csswg.org/css-display-4/#propdef-display": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"display","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, diff --git a/tests/github/w3c/svgwg/specs/transform/Overview.html b/tests/github/w3c/svgwg/specs/transform/Overview.html index 4a2dbd998a..97ac1b95e8 100644 --- a/tests/github/w3c/svgwg/specs/transform/Overview.html +++ b/tests/github/w3c/svgwg/specs/transform/Overview.html @@ -3,7 +3,7 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>svg:transform for mapping</title> - <link href="../default.css" rel="stylesheet"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> <link href="http://dev.w3.org/fxtf/motion-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> @@ -582,14 +582,14 @@ <h1>svg:transform for mapping</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This specification gives guidance how the SVG transform attribute in the SVG namespace can be used in other context than SVG.</p> </div> - <h2 class="no-num no-toc no-ref heading settled" id="status"><span class="content">Status of this document</span></h2> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> <div data-fill-with="status"> <p> <em>This section describes the status of this document at the time of its publication. A list of @@ -942,20 +942,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -993,7 +995,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-gml">[GML] <dd><a href="http://www.opengeospatial.org/standards/gml"><cite>Geography Markup Language (GML) Encoding Standard</cite></a>. URL: <a href="http://www.opengeospatial.org/standards/gml">http://www.opengeospatial.org/standards/gml</a> <dt id="biblio-rdf-primer">[RDF-PRIMER] - <dd>Frank Manola; Eric Miller. <a href="https://www.w3.org/TR/rdf-primer/"><cite>RDF Primer</cite></a>. 10 February 2004. REC. URL: <a href="https://www.w3.org/TR/rdf-primer/">https://www.w3.org/TR/rdf-primer/</a> + <dd>Frank Manola; Eric Miller. <a href="https://w3c.github.io/rdf-primer/spec/"><cite>RDF Primer</cite></a>. URL: <a href="https://w3c.github.io/rdf-primer/spec/">https://w3c.github.io/rdf-primer/spec/</a> </dl> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/w3process/index.html b/tests/github/w3c/w3process/index.html index 8445004815..03f9da9e64 100644 --- a/tests/github/w3c/w3process/index.html +++ b/tests/github/w3c/w3process/index.html @@ -5,8 +5,8 @@ <title>W3C Process Document</title> <meta content="CG-DRAFT" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/Consortium/Process/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -634,7 +634,7 @@ <h1 class="p-name no-ref" id="title">W3C Process Document</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -884,7 +884,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#index"><span class="secno"></span> <span class="content">Index</span></a> @@ -4300,20 +4299,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> </main> diff --git a/tests/github/w3c/wcag-act/NOTE-act-rules-common-aspects.html b/tests/github/w3c/wcag-act/NOTE-act-rules-common-aspects.html index 2fbb107083..87b5bd8f32 100644 --- a/tests/github/w3c/wcag-act/NOTE-act-rules-common-aspects.html +++ b/tests/github/w3c/wcag-act/NOTE-act-rules-common-aspects.html @@ -5,8 +5,8 @@ <title>Accessibility Conformance Testing Rules: Common Input Aspects</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -431,7 +431,7 @@ <h1 class="p-name no-ref" id="title">Accessibility Conformance Testing Rules: Co </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -518,20 +518,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> @@ -553,7 +555,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-http11">[HTTP11] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9112"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9112">https://www.rfc-editor.org/rfc/rfc9112</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9112.html"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9112.html">https://httpwg.org/specs/rfc9112.html</a> <dt id="biblio-wcag">[WCAG] <dd>Wendy Chisholm; Gregg Vanderheiden; Ian Jacobs. <a href="https://www.w3.org/TR/WAI-WEBCONTENT/"><cite>Web Content Accessibility Guidelines 1.0</cite></a>. 5 May 1999. REC. URL: <a href="https://www.w3.org/TR/WAI-WEBCONTENT/">https://www.w3.org/TR/WAI-WEBCONTENT/</a> </dl> \ No newline at end of file diff --git a/tests/github/w3c/wcag-act/act-fr-reqs.console.txt b/tests/github/w3c/wcag-act/act-fr-reqs.console.txt index e86460447d..2421bfb79e 100644 --- a/tests/github/w3c/wcag-act/act-fr-reqs.console.txt +++ b/tests/github/w3c/wcag-act/act-fr-reqs.console.txt @@ -1,3 +1,4 @@ +FATAL ERROR: Unknown Group 'ACCESSIBILITY CONFORMANCE TESTING TASK FORCE'. See docs for recognized Group values. WARNING: `Complain About: mixed-indents yes` is active, but I couldn't infer the document's indentation. Be more consistent, or turn this lint off. WARNING: You should manually provide IDs for your headings: Rule diff --git a/tests/github/w3c/wcag-act/act-fr-reqs.html b/tests/github/w3c/wcag-act/act-fr-reqs.html index cbf1431e61..c6c46a5957 100644 --- a/tests/github/w3c/wcag-act/act-fr-reqs.html +++ b/tests/github/w3c/wcag-act/act-fr-reqs.html @@ -1238,14 +1238,15 @@ grid-column: 2; width: auto; margin-right: 1rem; + border-bottom: 3px solid transparent; + margin-bottom: -3px; } #toc .content:hover, #toc .content:focus { background: rgba(75%, 75%, 75%, .25); background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; + border-bottom-color: #054572; + border-bottom-color: var(--toclink-underline); } #toc li li li .content { margin-left: 1rem; @@ -1906,8 +1907,8 @@ <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span cla <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. +the editors have made this specification available under the <a href="https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, +which is available at https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> <hr title="Separator for header"> </div> diff --git a/tests/github/w3c/wcag-act/act-rules-format.console.txt b/tests/github/w3c/wcag-act/act-rules-format.console.txt index 1fe564f267..dc95226ba2 100644 --- a/tests/github/w3c/wcag-act/act-rules-format.console.txt +++ b/tests/github/w3c/wcag-act/act-rules-format.console.txt @@ -1,4 +1,5 @@ LINE 856:221: Character reference '&doc2' didn't end in ;. +LINE 14:551 of status: Found unmatched text macro [DEADLINE]. Correct the macro, or escape it by replacing the opening [ with &#91; LINE ~626: No 'property' refs found for 'assertion'. 'Assertion' LINE ~627: No 'property' refs found for 'assertion'. diff --git a/tests/github/w3c/wcag-act/act-rules-format.html b/tests/github/w3c/wcag-act/act-rules-format.html index ea9b72af22..0c95a16128 100644 --- a/tests/github/w3c/wcag-act/act-rules-format.html +++ b/tests/github/w3c/wcag-act/act-rules-format.html @@ -3,10 +3,10 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Accessibility Conformance Testing (ACT) Rules Format</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/wcag-act/act-rules-format.html" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -727,7 +727,7 @@ <h1 class="p-name no-ref" id="title">Accessibility Conformance Testing (ACT) Rul </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 2024 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/document-license/">document use</a> rules apply.</p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -738,11 +738,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <div data-fill-with="status"> <p><em>This section describes the status of this document at the time of its publication. A list of current <abbr title="World Wide Web Consortium">W3C</abbr> publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/"><abbr title="World Wide Web Consortium">W3C</abbr> technical reports index</a> at https://www.w3.org/TR/.</em></p> <p>This is an Editor Draft of Accessibility Conformance Testing (ACT) Rules Format 1.0, prepared by the <a href="http://www.w3.org/wai/gl/task-forces/conformance-testing/">Accessibility Conformance Testing (ACT) Task Force</a> of the <a href="https://www.w3.org/WAI/GL/">Accessibility Guidelines Working Group (AGWG)</a>. This document is an Editor Draft and does not represent consensus of the <a href="https://www.w3.org/WAI/GL/">Accessibility Guidelines Working Group</a>. This document is intended to become a <abbr title="World Wide Web Consortium">W3C</abbr> Recommendation after further review and refinement.</p> - <p>This is an Editor Draft for review and refinement within ACT TF and AGWG. It is not ready for public comments. Before commenting, please first review the <a href="https://github.com/w3c/wcag-act/"><abbr title="World Wide Web Consortium">W3C</abbr> ACT TF GitHub repository</a> for related comments. New comments can be submitted as <a href="https://github.com/w3c/wcag-act/issues/new">new GitHub issues</a> or by email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Framework%201.0%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">pulic list archive</a>).</p> + <p>This is an Editor Draft for review and refinement within ACT TF and AGWG. It is not ready for public comments. Before commenting, please first review the <a href="https://github.com/w3c/wcag-act/"><abbr title="World Wide Web Consortium">W3C</abbr> ACT TF GitHub repository</a> for related comments. New comments can be submitted as <a href="https://github.com/w3c/wcag-act/issues/new">new GitHub issues</a> or by email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Fomrmat%201.1%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">pullic list archive</a>).</p> <p>Publication as an Editor Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p> - <p>This document was produced by a group operating under the <a class="css" data-link-type="property" href="https://www.w3.org/Consortium/Patent-Policy-20170801/" id="sotd_patent"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/35422/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>.</p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> <p></p> + <p>To comment, <a href="https://github.com/w3c/wcag-act/issues/new">file an issue in the <abbr title="World Wide Web Consortium">W3C</abbr> ACT GitHub repository</a>. It is free to create a GitHub account to file issues. If filing issues in GitHub is not feasible, send email to <a href="mailto:public-wcag-act-comments@w3.org?subject=ACT%20Format%201.1%20public%20comment">public-wcag-act-comments@w3.org</a> (<a href="https://lists.w3.org/Archives/Public/public-wcag-act-comments/">comment archive</a>). Comments are requested by <strong>[DEADLINE]</strong>. In-progress updates to the document may be viewed in the <a href="https://w3c.github.io/wcag-act/act-rules-format.html">publicly visible editors' draft</a>.</p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/ag/ipr/" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p> + <p>This document is governed by the <a href="https://www.w3.org/2023/Process-20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> @@ -1556,20 +1557,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1607,7 +1610,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-http11">[HTTP11] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9112"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9112">https://www.rfc-editor.org/rfc/rfc9112</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9112.html"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9112.html">https://httpwg.org/specs/rfc9112.html</a> <dt id="biblio-svg2">[SVG2] <dd>Amelia Bellamy-Royds; et al. <a href="https://svgwg.org/svg2-draft/"><cite>Scalable Vector Graphics (SVG) 2</cite></a>. URL: <a href="https://svgwg.org/svg2-draft/">https://svgwg.org/svg2-draft/</a> <dt id="biblio-uaag20">[UAAG20] diff --git a/tests/github/w3c/webappsec-change-password-url/change-password-url.console.txt b/tests/github/w3c/webappsec-change-password-url/change-password-url.console.txt index e69de29bb2..8d40d41fcb 100644 --- a/tests/github/w3c/webappsec-change-password-url/change-password-url.console.txt +++ b/tests/github/w3c/webappsec-change-password-url/change-password-url.console.txt @@ -0,0 +1 @@ +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/webappsec-change-password-url/change-password-url.html b/tests/github/w3c/webappsec-change-password-url/change-password-url.html index 17a9ba2f1d..7429455403 100644 --- a/tests/github/w3c/webappsec-change-password-url/change-password-url.html +++ b/tests/github/w3c/webappsec-change-password-url/change-password-url.html @@ -5,7 +5,6 @@ <title>A Well-Known URL for Changing Passwords</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-change-password-url/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -584,7 +583,7 @@ <h1 class="p-name no-ref" id="title">A Well-Known URL for Changing Passwords</h1 </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -609,11 +608,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[change-password-url] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -758,20 +757,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -839,7 +840,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-http-semantics">[HTTP-SEMANTICS] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-response-code-reliability">[RESPONSE-CODE-RELIABILITY] @@ -858,7 +859,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-idna">[IDNA] - <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr46/tr46-29.html"><cite>Unicode IDNA Compatibility Processing</cite></a>. 26 August 2022. Unicode Technical Standard #46. URL: <a href="https://www.unicode.org/reports/tr46/tr46-29.html">https://www.unicode.org/reports/tr46/tr46-29.html</a> + <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr46/tr46-31.html"><cite>Unicode IDNA Compatibility Processing</cite></a>. 5 September 2023. Unicode Technical Standard #46. URL: <a href="https://www.unicode.org/reports/tr46/tr46-31.html">https://www.unicode.org/reports/tr46/tr46-31.html</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> diff --git a/tests/github/w3c/webappsec-change-password-url/response-code-reliability.console.txt b/tests/github/w3c/webappsec-change-password-url/response-code-reliability.console.txt index 6c5310e7ba..295108933b 100644 --- a/tests/github/w3c/webappsec-change-password-url/response-code-reliability.console.txt +++ b/tests/github/w3c/webappsec-change-password-url/response-code-reliability.console.txt @@ -1,2 +1,3 @@ LINE ~59: No 'dfn' refs found for 'synchronous flag' that are marked for export. [=request/synchronous flag=] +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/webappsec-change-password-url/response-code-reliability.html b/tests/github/w3c/webappsec-change-password-url/response-code-reliability.html index 2ef3f14cd4..2b31d7611e 100644 --- a/tests/github/w3c/webappsec-change-password-url/response-code-reliability.html +++ b/tests/github/w3c/webappsec-change-password-url/response-code-reliability.html @@ -5,7 +5,6 @@ <title>Detecting the reliability of HTTP status codes</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-change-password-url/response-code-reliability.html" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -585,7 +584,7 @@ <h1 class="p-name no-ref" id="title">Detecting the reliability of HTTP status co </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -607,11 +606,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[response-code-reliability] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -727,20 +726,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/w3c/webappsec-credential-management/index.html b/tests/github/w3c/webappsec-credential-management/index.html index d6d6b9dcf9..46ed40961e 100644 --- a/tests/github/w3c/webappsec-credential-management/index.html +++ b/tests/github/w3c/webappsec-credential-management/index.html @@ -5,7 +5,6 @@ <title>Credential Management Level 1</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/credential-management-1/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -986,7 +985,7 @@ <h1>Credential Management Level 1</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1010,11 +1009,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[credential-management] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -3206,7 +3205,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-webauthn">[WEBAUTHN] <dd>Dirk Balfanz; et al. <a href="https://w3c.github.io/webauthn/"><cite>Web Authentication:An API for accessing Public Key Credentials Level 1</cite></a>. URL: <a href="https://w3c.github.io/webauthn/">https://w3c.github.io/webauthn/</a> <dt id="biblio-webauthn-3">[WEBAUTHN-3] - <dd>Jeff Hodges; et al. <a href="https://w3c.github.io/webauthn/"><cite>Web Authentication: An API for accessing Public Key Credentials - Level 3</cite></a>. URL: <a href="https://w3c.github.io/webauthn/">https://w3c.github.io/webauthn/</a> + <dd>Michael Jones; Akshay Kumar; Emil Lundberg. <a href="https://w3c.github.io/webauthn/"><cite>Web Authentication: An API for accessing Public Key Credentials - Level 3</cite></a>. URL: <a href="https://w3c.github.io/webauthn/">https://w3c.github.io/webauthn/</a> <dt id="biblio-xmlhttprequest">[XMLHTTPREQUEST] <dd>Anne van Kesteren; et al. <a href="https://xhr.spec.whatwg.org/"><cite>XMLHttpRequest Level 1</cite></a>. URL: <a href="https://xhr.spec.whatwg.org/">https://xhr.spec.whatwg.org/</a> </dl> @@ -3361,7 +3360,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="the-credential-interface"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Credential" title="The Credential interface of the Credential Management API provides information about an entity (usually a user) as a prerequisite to a trust decision.">Credential</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Credential" title="The Credential interface of the Credential Management API provides information about an entity (usually a user) normally as a prerequisite to a trust decision.">Credential</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> @@ -3377,7 +3376,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-credentialscontainer-create"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/create" title="The create() method of the CredentialsContainer interface returns a Promise that resolves with a new Credential instance based on the provided options, or null if no Credential object can be created.">CredentialsContainer/create</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/create" title="The create() method of the CredentialsContainer interface returns a Promise that resolves with a new credential instance based on the provided options, the information from which can then be stored and later used to authenticate users via navigator.credentials.get().">CredentialsContainer/create</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> @@ -3393,7 +3392,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-credentialscontainer-get"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/get" title="The get() method of the CredentialsContainer interface returns a Promise to a single Credential instance that matches the provided parameters. If no match is found the Promise will resolve to null.">CredentialsContainer/get</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/get" title="The get() method of the CredentialsContainer interface returns a Promise that fulfills with a single credential instance that matches the provided parameters, which the browser can then use to authenticate with a relying party. This is used by several different credential-related APIs with significantly different purposes:">CredentialsContainer/get</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> diff --git a/tests/github/w3c/webappsec-csp/2/index.html b/tests/github/w3c/webappsec-csp/2/index.html index 0151f23b3c..dc2eab2f72 100644 --- a/tests/github/w3c/webappsec-csp/2/index.html +++ b/tests/github/w3c/webappsec-csp/2/index.html @@ -5,7 +5,6 @@ <title>Content Security Policy Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/CSP2/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -756,7 +755,7 @@ <h1>Content Security Policy Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -778,11 +777,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[CSP2] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2280,7 +2279,7 @@ <h3 class="heading settled" data-level="7.9" id="directive-img-src"><span class= <ul> <li>Requesting data for an image, such as when processing the <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/embedded-content-0.html#attr-img-src" id="ref-for-attr-img-src">src</a></code> or <code>srcset</code> attributes of an <code><a data-link-type="element" href="http://www.w3.org/TR/html5/embedded-content-0.html#the-img-element" id="ref-for-the-img-element③">img</a></code> element, the <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/forms.html#attr-input-src" id="ref-for-attr-input-src">src</a></code> attribute of an <code><a data-link-type="element" href="http://www.w3.org/TR/html5/forms.html#the-input-element" id="ref-for-the-input-element">input</a></code> element with a type of <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/forms.html#attr-input-type-image-keyword" id="ref-for-attr-input-type-image-keyword">image</a></code>, the <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/embedded-content-0.html#attr-video-poster" id="ref-for-attr-video-poster">poster</a></code> attribute of a <code><a data-link-type="element" href="http://www.w3.org/TR/html5/embedded-content-0.html#the-video-element" id="ref-for-the-video-element①">video</a></code> element, the <a data-link-type="functionish" href="http://www.w3.org/TR/CSS21/syndata.html#uri" id="ref-for-uri">url()</a>, <a data-link-type="functionish" href="https://drafts.csswg.org/css-images-4/#funcdef-image" id="ref-for-funcdef-image">image()</a> or <a data-link-type="functionish" href="https://drafts.csswg.org/css-images-4/#funcdef-image-set" id="ref-for-funcdef-image-set">image-set()</a> values on any - Cascading Style Sheets (CSS) property that is capable of loading an image <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Image Values and Replaced Content Module Level 4">[CSS4-IMAGES]</a>, or the <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/document-metadata.html#attr-link-href" id="ref-for-attr-link-href">href</a></code> attribute of a <code><a data-link-type="element" href="http://www.w3.org/TR/html5/document-metadata.html#the-link-element" id="ref-for-the-link-element②">link</a></code> element + Cascading Style Sheets (CSS) property that is capable of loading an image <a data-link-type="biblio" href="#biblio-css4-images" title="CSS Images Module Level 4">[CSS4-IMAGES]</a>, or the <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/document-metadata.html#attr-link-href" id="ref-for-attr-link-href">href</a></code> attribute of a <code><a data-link-type="element" href="http://www.w3.org/TR/html5/document-metadata.html#the-link-element" id="ref-for-the-link-element②">link</a></code> element with an image-related <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/document-metadata.html#attr-link-rel" id="ref-for-attr-link-rel">rel</a></code> attribute, such as <code><a data-link-type="element-sub" href="http://www.w3.org/TR/html5/links.html#rel-icon" id="ref-for-rel-icon">icon</a></code>. </ul> </section> @@ -2958,20 +2957,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3265,7 +3266,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css3-fonts">[CSS3-FONTS] <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-3/"><cite>CSS Fonts Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-3/">https://drafts.csswg.org/css-fonts-3/</a> <dt id="biblio-css4-images">[CSS4-IMAGES] - <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Image Values and Replaced Content Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> + <dd>Tab Atkins Jr.; Elika Etemad; Lea Verou. <a href="https://drafts.csswg.org/css-images-4/"><cite>CSS Images Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-images-4/">https://drafts.csswg.org/css-images-4/</a> <dt id="biblio-cssom">[CSSOM] <dd>Daniel Glazman; Emilio Cobos Álvarez. <a href="https://drafts.csswg.org/cssom/"><cite>CSS Object Model (CSSOM)</cite></a>. URL: <a href="https://drafts.csswg.org/cssom/">https://drafts.csswg.org/cssom/</a> <dt id="biblio-ecma-262">[ECMA-262] @@ -3275,7 +3276,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-fips180">[FIPS180] <dd><a href="http://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf"><cite>FIPS-180-4</cite></a>. URL: <a href="http://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf">http://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf</a> <dt id="biblio-html-imports">[HTML-IMPORTS] - <dd>Dimitri Glazkov; Hajime Morita. <a href="https://w3c.github.io/webcomponents/spec/imports/"><cite>HTML Imports</cite></a>. URL: <a href="https://w3c.github.io/webcomponents/spec/imports/">https://w3c.github.io/webcomponents/spec/imports/</a> + <dd>Dimitri Glazkov; Hajime Morita. <a href="https://wicg.github.io/webcomponents/spec/imports/"><cite>HTML Imports</cite></a>. URL: <a href="https://wicg.github.io/webcomponents/spec/imports/">https://wicg.github.io/webcomponents/spec/imports/</a> <dt id="biblio-html5">[HTML5] <dd>Ian Hickson; et al. <a href="http://www.w3.org/TR/html5/"><cite>HTML5</cite></a>. REC. URL: <a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a> <dt id="biblio-rfc2119">[RFC2119] @@ -3295,9 +3296,9 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc7034">[RFC7034] <dd>D. Ross; T. Gondrom. <a href="https://www.rfc-editor.org/rfc/rfc7034"><cite>HTTP Header Field X-Frame-Options</cite></a>. October 2013. Informational. URL: <a href="https://www.rfc-editor.org/rfc/rfc7034">https://www.rfc-editor.org/rfc/rfc7034</a> <dt id="biblio-rfc7230">[RFC7230] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9112"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9112">https://www.rfc-editor.org/rfc/rfc9112</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9112.html"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9112.html">https://httpwg.org/specs/rfc9112.html</a> <dt id="biblio-rfc7231">[RFC7231] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-url">[URL] <dd>Anne van Kesteren; Sam Ruby. <a href="http://www.w3.org/TR/url/"><cite>URL</cite></a>. WD. URL: <a href="http://www.w3.org/TR/url/">http://www.w3.org/TR/url/</a> <dt id="biblio-webidl">[WEBIDL] @@ -3311,7 +3312,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-xmlhttprequest">[XMLHTTPREQUEST] <dd>Anne van Kesteren; et al. <a href="https://xhr.spec.whatwg.org/"><cite>XMLHttpRequest Level 1</cite></a>. URL: <a href="https://xhr.spec.whatwg.org/">https://xhr.spec.whatwg.org/</a> <dt id="biblio-xslt">[XSLT] - <dd>James Clark. <a href="https://www.w3.org/TR/xslt/"><cite>XSL Transformations (XSLT) Version 1.0</cite></a>. 16 November 1999. REC. URL: <a href="https://www.w3.org/TR/xslt/">https://www.w3.org/TR/xslt/</a> + <dd>James Clark. <a href="https://www.w3.org/TR/xslt-10/"><cite>XSL Transformations (XSLT) Version 1.0</cite></a>. 16 November 1999. REC. URL: <a href="https://www.w3.org/TR/xslt-10/">https://www.w3.org/TR/xslt-10/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> diff --git a/tests/github/w3c/webappsec-csp/api/index.html b/tests/github/w3c/webappsec-csp/api/index.html index 9d233ff07f..c0e99bdd94 100644 --- a/tests/github/w3c/webappsec-csp/api/index.html +++ b/tests/github/w3c/webappsec-csp/api/index.html @@ -5,7 +5,6 @@ <title>Content Security Policy: API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-csp/api/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -713,7 +712,7 @@ <h1>Content Security Policy: API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -737,11 +736,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[CSP-API] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/webappsec-csp/cookies/index.console.txt b/tests/github/w3c/webappsec-csp/cookies/index.console.txt index e35bb23beb..344a1b2b26 100644 --- a/tests/github/w3c/webappsec-csp/cookies/index.console.txt +++ b/tests/github/w3c/webappsec-csp/cookies/index.console.txt @@ -1,5 +1,3 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINT: Your document appears to use spaces to indent, but line 88 starts with tabs. LINT: Your document appears to use spaces to indent, but line 89 starts with tabs. LINT: Your document appears to use spaces to indent, but line 90 starts with tabs. diff --git a/tests/github/w3c/webappsec-csp/cookies/index.html b/tests/github/w3c/webappsec-csp/cookies/index.html index 938483bd98..88d5877a89 100644 --- a/tests/github/w3c/webappsec-csp/cookies/index.html +++ b/tests/github/w3c/webappsec-csp/cookies/index.html @@ -5,7 +5,6 @@ <title>Content Security Policy: Cookie Controls</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/csp-cookies/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -893,7 +892,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-csp">[CSP] - <dd>Mike West; Antonio Sartori. <a href="https://www.w3.org/TR/CSP3/"><cite>Content Security Policy Level 3</cite></a>. 13 January 2023. WD. URL: <a href="https://www.w3.org/TR/CSP3/">https://www.w3.org/TR/CSP3/</a> + <dd>Mike West; Antonio Sartori. <a href="https://www.w3.org/TR/CSP3/"><cite>Content Security Policy Level 3</cite></a>. 18 June 2024. WD. URL: <a href="https://www.w3.org/TR/CSP3/">https://www.w3.org/TR/CSP3/</a> <dt id="biblio-html5">[HTML5] <dd>Ian Hickson; et al. <a href="https://www.w3.org/TR/html5/"><cite>HTML5</cite></a>. 27 March 2018. REC. URL: <a href="https://www.w3.org/TR/html5/">https://www.w3.org/TR/html5/</a> <dt id="biblio-rfc5234">[RFC5234] diff --git a/tests/github/w3c/webappsec-csp/document/index.console.txt b/tests/github/w3c/webappsec-csp/document/index.console.txt index f7df8a14e2..cc94b9eb22 100644 --- a/tests/github/w3c/webappsec-csp/document/index.console.txt +++ b/tests/github/w3c/webappsec-csp/document/index.console.txt @@ -1,3 +1,4 @@ +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. LINK ERROR: No 'interface' refs found for 'Document' with spec 'dom-ls'. {{Document}} LINE 204: No 'dfn' refs found for 'plugin-types'. diff --git a/tests/github/w3c/webappsec-csp/document/index.html b/tests/github/w3c/webappsec-csp/document/index.html index 9fc7666ae2..437a75ffd2 100644 --- a/tests/github/w3c/webappsec-csp/document/index.html +++ b/tests/github/w3c/webappsec-csp/document/index.html @@ -5,7 +5,6 @@ <title>Content Security Policy: Document Features</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-csp/document/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -595,7 +594,7 @@ <h1>Content Security Policy: Document Features</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -619,11 +618,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[csp-document] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -693,7 +692,7 @@ <h4 class="heading settled" data-level="2.1.1" id="directive-disable"><span clas <li data-md> <p><code>domain</code> disables <code>document.domain</code></p> <li data-md> - <p><code>geolocation</code> disables <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a></p> + <p><code>geolocation</code> disables <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a></p> <li data-md> <p><code>midi</code> disables <a data-link-type="biblio" href="#biblio-webmidi" title="Web MIDI API">[WEBMIDI]</a></p> <li data-md> @@ -701,7 +700,7 @@ <h4 class="heading settled" data-level="2.1.1" id="directive-disable"><span clas <li data-md> <p><code>push</code> disables <a data-link-type="biblio" href="#biblio-push-api" title="Push API">[PUSH-API]</a></p> <li data-md> - <p><code>webrtc</code> disables <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[WEBRTC]</a></p> + <p><code>webrtc</code> disables <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[WEBRTC]</a></p> </ul> <p class="issue" id="issue-962ee11f"><a class="self-link" href="#issue-962ee11f"></a> Moar. Also, do we need an <code>enable</code> counterpart to whitelist rather than blacklist?</p> @@ -798,15 +797,15 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-geolocation-api">[GEOLOCATION-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> <dt id="biblio-notifications">[NOTIFICATIONS] <dd>Anne van Kesteren. <a href="https://notifications.spec.whatwg.org/"><cite>Notifications API Standard</cite></a>. Living Standard. URL: <a href="https://notifications.spec.whatwg.org/">https://notifications.spec.whatwg.org/</a> <dt id="biblio-push-api">[PUSH-API] <dd>Peter Beverloo; Martin Thomson; Marcos Caceres. <a href="https://w3c.github.io/push-api/"><cite>Push API</cite></a>. URL: <a href="https://w3c.github.io/push-api/">https://w3c.github.io/push-api/</a> <dt id="biblio-webmidi">[WEBMIDI] - <dd>Chris Wilson; Jussi Kalliokoski. <a href="https://webaudio.github.io/web-midi-api/"><cite>Web MIDI API</cite></a>. URL: <a href="https://webaudio.github.io/web-midi-api/">https://webaudio.github.io/web-midi-api/</a> + <dd>Chris Wilson; Michael Wilson. <a href="https://webaudio.github.io/web-midi-api/"><cite>Web MIDI API</cite></a>. URL: <a href="https://webaudio.github.io/web-midi-api/">https://webaudio.github.io/web-midi-api/</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> diff --git a/tests/github/w3c/webappsec-csp/index.console.txt b/tests/github/w3c/webappsec-csp/index.console.txt index b316aae7b3..9c9d991784 100644 --- a/tests/github/w3c/webappsec-csp/index.console.txt +++ b/tests/github/w3c/webappsec-csp/index.console.txt @@ -4,12 +4,24 @@ LINT: Your document appears to use spaces to indent, but line 3553 starts with t LINT: Your document appears to use spaces to indent, but line 3555 starts with tabs. LINT: Your document appears to use spaces to indent, but line 3562 starts with tabs. LINK ERROR: Obsolete biblio ref: [rfc7230] is replaced by [rfc9112]. Either update the reference, or use [rfc7230 obsolete] if this is an intentionally-obsolete reference. -LINE 903: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="903" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> +LINE 532: Ambiguous for-less link for 'value', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:csp3; type:dfn; for:directive; text:value +for-less references: +spec:css2; type:dfn; for:/; text:value +<a bs-line-number="532" data-link-type="dfn" data-lt="value">value</a> +LINE 533: Ambiguous for-less link for 'value', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:csp3; type:dfn; for:directive; text:value +for-less references: +spec:css2; type:dfn; for:/; text:value +<a bs-line-number="533" data-link-type="dfn" data-lt="value">value</a> +LINE 592: Ambiguous for-less link for 'values', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:csp3; type:dfn; for:directive; text:value +for-less references: +spec:css2; type:dfn; for:/; text:value +<a bs-line-number="592" data-link-type="dfn" data-lt="values">values</a> LINE 974: No 'dfn' refs found for 'csp list' with for='['response']'. <a bs-line-number="974" data-link-for="response" data-link-type="dfn" data-lt="CSP list">CSP list</a> LINE 982: No 'dfn' refs found for 'csp list' with for='['response']'. @@ -63,18 +75,18 @@ LINE 1423: No 'dfn' refs found for 'csp list' with for='['response']'. <a bs-line-number="1423" data-link-for="response" data-link-type="dfn" data-lt="CSP list">CSP list</a> LINE ~1495: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] -LINE ~1512: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -[=ASCII case-insensitive=] LINE 1953: No 'dfn' refs found for 'nested browsing contexts'. <a bs-line-number="1953" data-link-type="dfn" data-lt="nested browsing contexts">nested browsing contexts</a> LINE 1968: No 'dfn' refs found for 'nested browsing context'. <a bs-line-number="1968" data-link-type="dfn" data-lt="nested browsing context">nested browsing context</a> +LINK ERROR: Multiple possible 'SharedWorker' idl refs. +Arbitrarily chose https://html.spec.whatwg.org/multipage/workers.html#sharedworker +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:html; type:interface; text:SharedWorker +spec:saa-non-cookie-storage; type:dict-member; text:SharedWorker +{{SharedWorker}} LINE 2348: No 'dfn' refs found for 'nested browsing contexts'. <a bs-line-number="2348" data-link-type="dfn" data-lt="nested browsing contexts">nested browsing contexts</a> LINE 2655: No 'dfn' refs found for 'nested browsing context'. @@ -98,141 +110,8 @@ LINE ~3536: No 'dfn' refs found for 'container document' with for='['browsing co [=browsing context/container document=] LINE 3568: No 'dfn' refs found for 'process a navigate response'. <a bs-line-number="3568" data-link-type="dfn" data-lt="process a navigate response">process a navigate response</a> -LINE 3619: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="3619" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 3658: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="3658" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 3781: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="3781" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 3797: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="3797" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 3922: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="3922" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII - case-insensitive</a> -LINE 4004: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4004" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4048: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4048" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4050: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4050" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4051: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4051" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4053: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4053" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4054: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4054" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4057: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4057" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4058: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4058" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4085: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4085" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4089: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4089" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4201: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4201" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4205: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4205" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> LINE ~4209: No 'dfn' refs found for 'parse error' that are marked for export. [=parse error=] -LINE 4254: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4254" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4322: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4322" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4341: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4341" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4345: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4345" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> -LINE 4349: Multiple possible 'ascii case-insensitive' dfn refs. -Arbitrarily chose https://infra.spec.whatwg.org/#ascii-case-insensitive -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:infra; type:dfn; text:ascii case-insensitive -spec:webcryptoapi; type:dfn; text:ascii case-insensitive -<a bs-line-number="4349" data-link-type="dfn" data-lt="ASCII case-insensitive">ASCII case-insensitive</a> LINE 4404: No 'dfn' refs found for 'nested browsing context'. <a bs-line-number="4404" data-link-type="dfn" data-lt="nested browsing context">nested browsing context</a> LINE 4756: No 'dfn' refs found for 'source browsing context'. diff --git a/tests/github/w3c/webappsec-csp/index.html b/tests/github/w3c/webappsec-csp/index.html index 536f61b76e..b740837256 100644 --- a/tests/github/w3c/webappsec-csp/index.html +++ b/tests/github/w3c/webappsec-csp/index.html @@ -5,7 +5,6 @@ <title>Content Security Policy Level 3</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/CSP3/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -796,7 +795,7 @@ <h1>Content Security Policy Level 3</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -812,7 +811,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> - <p> This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + <p> This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p> The (<a href="https://lists.w3.org/Archives/Public/public-webappsec/">archived</a>) public mailing list <a href="mailto:public-webappsec@w3.org?Subject=%5BCSP3%5D%20PUT%20SUBJECT%20HERE">public-webappsec@w3.org</a> (see <a href="https://www.w3.org/Mail/Request">instructions</a>) is preferred for discussion of this specification. @@ -825,11 +824,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" document as other than work in progress. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"> @@ -1399,7 +1398,7 @@ <h3 class="heading settled" data-level="2.3" id="framework-directives"><span cla <p>Each <a data-link-type="dfn" href="#content-security-policy-object" id="ref-for-content-security-policy-object⑥">policy</a> contains an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set①">ordered set</a> of <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="directives">directives</dfn> (its <a data-link-type="dfn" href="#policy-directive-set" id="ref-for-policy-directive-set⑤">directive set</a>), each of which controls a specific behavior. The directives defined in this document are described in detail in <a href="#csp-directives">§ 6 Content Security Policy Directives</a>.</p> <p>Each <a data-link-type="dfn" href="#directives" id="ref-for-directives③">directive</a> is a <dfn class="dfn-paneled" data-dfn-for="directive" data-dfn-type="dfn" data-export id="directive-name">name</dfn> / <dfn class="dfn-paneled" data-dfn-for="directive" data-dfn-type="dfn" data-export id="directive-value">value</dfn> pair. The <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name②">name</a> is a - non-empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string②">string</a>, and the <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①">value</a> is a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set②">set</a> of non-empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string③">strings</a>. The <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②">value</a> MAY be <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-is-empty" id="ref-for-list-is-empty">empty</a>.</p> + non-empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string②">string</a>, and the <a data-link-type="dfn">value</a> is a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set②">set</a> of non-empty <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string③">strings</a>. The <a data-link-type="dfn">value</a> MAY be <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-is-empty" id="ref-for-list-is-empty">empty</a>.</p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="serialized-directive">serialized directive</dfn> is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-string" id="ref-for-ascii-string③">ASCII string</a>, consisting of one or more whitespace-delimited tokens, and adhering to the following ABNF <a data-link-type="biblio" href="#biblio-rfc5234" title="Augmented BNF for Syntax Specifications: ABNF">[RFC5234]</a>:</p> <pre><dfn class="dfn-paneled" data-dfn-type="grammar" data-export id="grammardef-serialized-directive">serialized-directive</dfn> = <a data-link-type="grammar" href="#grammardef-directive-name" id="ref-for-grammardef-directive-name">directive-name</a> [ <a data-link-type="grammar" href="#grammardef-required-ascii-whitespace" id="ref-for-grammardef-required-ascii-whitespace">required-ascii-whitespace</a> <a data-link-type="grammar" href="#grammardef-directive-value" id="ref-for-grammardef-directive-value">directive-value</a> ] @@ -1448,7 +1447,7 @@ <h3 class="heading settled" data-level="2.3" id="framework-directives"><span cla in target be blocked by Content Security Policy?</a>. It returns "<code>Allowed</code>" unless otherwise specified.</p> </ol> <h4 class="heading settled" data-level="2.3.1" id="framework-directive-source-list"><span class="secno">2.3.1. </span><span class="content">Source Lists</span><a class="self-link" href="#framework-directive-source-list"></a></h4> - <p>Many <a data-link-type="dfn" href="#directives" id="ref-for-directives⑤">directives</a>' <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③">values</a> consist of <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="source-lists">source lists</dfn>: <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set③">sets</a> of <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string④">strings</a> which identify content that can be fetched and potentially embedded or + <p>Many <a data-link-type="dfn" href="#directives" id="ref-for-directives⑤">directives</a>' <a data-link-type="dfn">values</a> consist of <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="source-lists">source lists</dfn>: <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set③">sets</a> of <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string④">strings</a> which identify content that can be fetched and potentially embedded or executed. Each <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string⑤">string</a> represents one of the following types of <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="source expression" id="source-expression">source expression</dfn>:</p> <ol> @@ -1993,7 +1992,7 @@ <h4 class="heading settled dfn-paneled algorithm" data-algorithm="Should element <li data-md> <p>Set <var>violation</var>’s <a data-link-type="dfn" href="#violation-element" id="ref-for-violation-element">element</a> to <var>element</var>.</p> <li data-md> - <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④">value</a> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain①">contains</a> the + <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①">value</a> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain①">contains</a> the expression "<a data-link-type="grammar" href="#grammardef-report-sample" id="ref-for-grammardef-report-sample①"><code>'report-sample'</code></a>", then set <var>violation</var>’s <a data-link-type="dfn" href="#violation-sample" id="ref-for-violation-sample②">sample</a> to the substring of <var>source</var> containing its first 40 characters.</p> <li data-md> @@ -2147,9 +2146,9 @@ <h4 class="heading settled dfn-paneled algorithm" data-algorithm="EnsureCSPDoesN <p>Let <var>source-list</var> be <code>null</code>.</p> <li data-md> <p>If <var>policy</var> contains a <a data-link-type="dfn" href="#directives" id="ref-for-directives⑧">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name⑥">name</a> is "<code>script-src</code>", then - set <var>source-list</var> to that <a data-link-type="dfn" href="#directives" id="ref-for-directives⑨">directive</a>'s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤">value</a>.</p> + set <var>source-list</var> to that <a data-link-type="dfn" href="#directives" id="ref-for-directives⑨">directive</a>'s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②">value</a>.</p> <p>Otherwise if <var>policy</var> contains a <a data-link-type="dfn" href="#directives" id="ref-for-directives①⓪">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name⑦">name</a> is - "<code>default-src</code>", then set <var>source-list</var> to that directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥">value</a>.</p> + "<code>default-src</code>", then set <var>source-list</var> to that directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③">value</a>.</p> <li data-md> <p>If <var>source-list</var> is not <code>null</code>, and does not contain a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression②">source expression</a> which is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive①">ASCII case-insensitive</a> match for the string "<a data-link-type="grammar" href="#grammardef-unsafe-eval" id="ref-for-grammardef-unsafe-eval"><code>'unsafe-eval'</code></a>", @@ -2409,7 +2408,7 @@ <h3 class="heading settled algorithm" data-algorithm="Report a violation" data-l <p>If <var>violation</var>’s <a data-link-type="dfn" href="#violation-policy" id="ref-for-violation-policy⑦">policy</a>’s <a data-link-type="dfn" href="#policy-directive-set" id="ref-for-policy-directive-set⑧">directive set</a> contains a <a data-link-type="dfn" href="#directives" id="ref-for-directives①②">directive</a> named "<a data-link-type="dfn" href="#report-to" id="ref-for-report-to①"><code>report-to</code></a>", skip the remaining substeps.</p> <li data-md> - <p>For each <var>token</var> returned by <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#split-on-ascii-whitespace" id="ref-for-split-on-ascii-whitespace①"> splitting a string on ASCII whitespace</a> with <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑦">value</a> as the <code>input</code>.</p> + <p>For each <var>token</var> returned by <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#split-on-ascii-whitespace" id="ref-for-split-on-ascii-whitespace①"> splitting a string on ASCII whitespace</a> with <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④">value</a> as the <code>input</code>.</p> <ol> <li data-md> <p>Let <var>endpoint</var> be the result of executing the <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser">URL parser</a> with <var>token</var> as the input, and <var>violation</var>’s <a data-link-type="dfn" href="#violation-url" id="ref-for-violation-url②">url</a> as the <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-base-url" id="ref-for-concept-base-url">base URL</a>.</p> @@ -2530,7 +2529,7 @@ <h3 class="heading settled algorithm" data-algorithm="Report a violation" data-l <p>"csp-violation"</p> <dt data-md><var>endpoint group</var> <dd data-md> - <p><var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑧">value</a>.</p> + <p><var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤">value</a>.</p> <dt data-md><var>settings</var> <dd data-md> <p><var>settings object</var></p> @@ -2609,7 +2608,7 @@ <h5 class="heading settled algorithm" data-algorithm="child-src Pre-request chec <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>child-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>Return the result of executing the <a data-link-type="dfn" href="#directive-pre-request-check" id="ref-for-directive-pre-request-check②">pre-request - check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑤">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name⑧">name</a> is <var>name</var> on <var>request</var> and <var>policy</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑨">value</a> for the comparison.</p> + check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑤">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name⑧">name</a> is <var>name</var> on <var>request</var> and <var>policy</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥">value</a> for the comparison.</p> </ol> <h5 class="heading settled algorithm" data-algorithm="child-src Post-request check" data-level="6.1.1.2" id="child-src-post-request"><span class="secno">6.1.1.2. </span><span class="content"> <code>child-src</code> Post-request check </span><a class="self-link" href="#child-src-post-request"></a></h5> <p>This directive’s <a data-link-type="dfn" href="#directive-post-request-check" id="ref-for-directive-post-request-check②">post-request check</a> is as follows:</p> @@ -2621,7 +2620,7 @@ <h5 class="heading settled algorithm" data-algorithm="child-src Post-request che <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>child-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>Return the result of executing the <a data-link-type="dfn" href="#directive-post-request-check" id="ref-for-directive-post-request-check③">post-request - check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑥">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name⑨">name</a> is <var>name</var> on <var>request</var>, <var>response</var>, and <var>policy</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⓪">value</a> for the comparison.</p> + check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑥">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name⑨">name</a> is <var>name</var> on <var>request</var>, <var>response</var>, and <var>policy</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑦">value</a> for the comparison.</p> </ol> <h4 class="heading settled" data-level="6.1.2" id="directive-connect-src"><span class="secno">6.1.2. </span><span class="content"><code>connect-src</code></span><a class="self-link" href="#directive-connect-src"></a></h4> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="connect-src">connect-src</dfn> directive restricts the URLs which can be loaded @@ -2672,7 +2671,7 @@ <h5 class="heading settled algorithm" data-algorithm="connect-src Pre-request ch <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>connect-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①①">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑧">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> </ol> @@ -2685,7 +2684,7 @@ <h5 class="heading settled algorithm" data-algorithm="connect-src Post-request c <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>connect-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①②">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑨">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2758,7 +2757,7 @@ <h5 class="heading settled algorithm" data-algorithm="default-src Pre-request ch <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>default-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>Return the result of executing the <a data-link-type="dfn" href="#directive-pre-request-check" id="ref-for-directive-pre-request-check⑤">pre-request check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑦">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name①⓪">name</a> is <var>name</var> on <var>request</var> and <var>policy</var>, using - this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①③">value</a> for the comparison.</p> + this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⓪">value</a> for the comparison.</p> </ol> <h5 class="heading settled algorithm" data-algorithm="default-src Post-request check" data-level="6.1.3.2" id="default-src-post-request"><span class="secno">6.1.3.2. </span><span class="content"> <code>default-src</code> Post-request check </span><a class="self-link" href="#default-src-post-request"></a></h5> <p>This directive’s <a data-link-type="dfn" href="#directive-post-request-check" id="ref-for-directive-post-request-check⑤">post-request check</a> is as follows:</p> @@ -2769,7 +2768,7 @@ <h5 class="heading settled algorithm" data-algorithm="default-src Post-request c <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>default-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>Return the result of executing the <a data-link-type="dfn" href="#directive-post-request-check" id="ref-for-directive-post-request-check⑥">post-request check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑧">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name①①">name</a> is <var>name</var> on <var>request</var>, <var>response</var>, and <var>policy</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①④">value</a> for the + <p>Return the result of executing the <a data-link-type="dfn" href="#directive-post-request-check" id="ref-for-directive-post-request-check⑥">post-request check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑧">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name①①">name</a> is <var>name</var> on <var>request</var>, <var>response</var>, and <var>policy</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①①">value</a> for the comparison.</p> </ol> <h5 class="heading settled algorithm" data-algorithm="default-src Inline Check" data-level="6.1.3.3" id="default-src-inline"><span class="secno">6.1.3.3. </span><span class="content"> <code>default-src</code> Inline Check </span><a class="self-link" href="#default-src-inline"></a></h5> @@ -2781,7 +2780,7 @@ <h5 class="heading settled algorithm" data-algorithm="default-src Inline Check" <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>default-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>Otherwise, return the result of executing the <a data-link-type="dfn" href="#directive-inline-check" id="ref-for-directive-inline-check③">inline check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑨">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name①②">name</a> is <var>name</var> on <var>element</var>, <var>type</var>, <var>policy</var> and <var>source</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑤">value</a> for the + <p>Otherwise, return the result of executing the <a data-link-type="dfn" href="#directive-inline-check" id="ref-for-directive-inline-check③">inline check</a> for the <a data-link-type="dfn" href="#directives" id="ref-for-directives①⑨">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name①②">name</a> is <var>name</var> on <var>element</var>, <var>type</var>, <var>policy</var> and <var>source</var>, using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①②">value</a> for the comparison.</p> </ol> <h4 class="heading settled" data-level="6.1.4" id="directive-font-src"><span class="secno">6.1.4. </span><span class="content"><code>font-src</code></span><a class="self-link" href="#directive-font-src"></a></h4> @@ -2817,7 +2816,7 @@ <h5 class="heading settled algorithm" data-algorithm="font-src Pre-request check <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>font-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑥">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①③">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> </ol> @@ -2830,7 +2829,7 @@ <h5 class="heading settled algorithm" data-algorithm="font-src Post-request chec <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>font-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑦">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①④">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2860,7 +2859,7 @@ <h5 class="heading settled algorithm" data-algorithm="frame-src Pre-request chec <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>frame-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑧">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑤">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> </ol> @@ -2873,7 +2872,7 @@ <h5 class="heading settled algorithm" data-algorithm="frame-src Post-request che <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>frame-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑨">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑥">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2905,7 +2904,7 @@ <h5 class="heading settled algorithm" data-algorithm="img-src Pre-request check" <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>img-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⓪">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑦">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2919,7 +2918,7 @@ <h5 class="heading settled algorithm" data-algorithm="img-src Post-request check <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>img-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②①">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑧">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2949,7 +2948,7 @@ <h5 class="heading settled algorithm" data-algorithm="manifest-src Pre-request c <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>manifest-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②②">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value①⑨">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2963,7 +2962,7 @@ <h5 class="heading settled algorithm" data-algorithm="manifest-src Post-request <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>manifest-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②③">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⓪">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -2996,7 +2995,7 @@ <h5 class="heading settled algorithm" data-algorithm="media-src Pre-request chec <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>media-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②④">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②①">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3010,7 +3009,7 @@ <h5 class="heading settled algorithm" data-algorithm="media-src Post-request che <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>media-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑤">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②②">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3057,7 +3056,7 @@ <h5 class="heading settled algorithm" data-algorithm="object-src Pre-request che <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>object-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑥">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②③">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3071,7 +3070,7 @@ <h5 class="heading settled algorithm" data-algorithm="object-src Post-request ch <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>object-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑦">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②④">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3102,7 +3101,7 @@ <h5 class="heading settled algorithm" data-algorithm="prefetch-src Pre-request c <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>prefetch-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, - this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑧">value</a>, and <var>policy</var>, + this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑤">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3116,7 +3115,7 @@ <h5 class="heading settled algorithm" data-algorithm="prefetch-src Post-request <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>prefetch-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑨">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑥">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3195,7 +3194,7 @@ <h5 class="heading settled algorithm" data-algorithm="script-src Inline Check" d <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>script-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⓪">value</a>, <var>type</var>, + <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑦">value</a>, <var>type</var>, and <var>source</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3214,7 +3213,7 @@ <h4 class="heading settled" data-level="6.1.12" id="directive-script-src-elem">< <p><code>script-src-elem</code> applies to inline checks whose <code>|type|</code> is "<code>script</code>" and "<code>navigation</code>" (and is ignored for inline checks whose <code>|type|</code> is "<code>script attribute</code>").</p> <li data-md> - <p><code>script-src-elem</code>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③①">value</a> is not used for JavaScript + <p><code>script-src-elem</code>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑧">value</a> is not used for JavaScript execution sink checks that are gated on the "<code>unsafe-eval</code>" check.</p> <li data-md> <p><code>script-src-elem</code> is not used as a fallback for the <code>worker-src</code> directive. @@ -3254,7 +3253,7 @@ <h5 class="heading settled algorithm" data-algorithm="script-src-elem Inline Che <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>script-src-elem</code>, and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③②">value</a>, <var>type</var>, + <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value②⑨">value</a>, <var>type</var>, and <var>source</var> is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3277,7 +3276,7 @@ <h5 class="heading settled algorithm" data-algorithm="script-src-attr Inline Che <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>script-src-attr</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③③">value</a>, <var>type</var>, + <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⓪">value</a>, <var>type</var>, and <var>source</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3337,10 +3336,10 @@ <h5 class="heading settled algorithm" data-algorithm="style-src Pre-request Chec <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>If the result of executing <a href="#match-nonce-to-source-list">§ 6.6.2.2 Does nonce match source list?</a> on <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-nonce-metadata" id="ref-for-concept-request-nonce-metadata①">cryptographic nonce metadata</a> and this - directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③④">value</a> is "<code>Matches</code>", return + directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③①">value</a> is "<code>Matches</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑤">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③②">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3355,10 +3354,10 @@ <h5 class="heading settled algorithm" data-algorithm="style-src Post-request Che <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>If the result of executing <a href="#match-nonce-to-source-list">§ 6.6.2.2 Does nonce match source list?</a> on <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-nonce-metadata" id="ref-for-concept-request-nonce-metadata②">cryptographic nonce metadata</a> and this - directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑥">value</a> is "<code>Matches</code>", return + directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③③">value</a> is "<code>Matches</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑦">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③④">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3372,7 +3371,7 @@ <h5 class="heading settled algorithm" data-algorithm="style-src Inline Check" da <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑧">value</a>, <var>type</var>, + <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑤">value</a>, <var>type</var>, and <var>source</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3398,10 +3397,10 @@ <h5 class="heading settled algorithm" data-algorithm="style-src-elem Pre-request <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src-elem</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>If the result of executing <a href="#match-nonce-to-source-list">§ 6.6.2.2 Does nonce match source list?</a> on <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-nonce-metadata" id="ref-for-concept-request-nonce-metadata③">cryptographic nonce metadata</a> and this - directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑨">value</a> is "<code>Matches</code>", return + directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑥">value</a> is "<code>Matches</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⓪">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑦">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3416,10 +3415,10 @@ <h5 class="heading settled algorithm" data-algorithm="style-src-elem Post-reques <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src-elem</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> <p>If the result of executing <a href="#match-nonce-to-source-list">§ 6.6.2.2 Does nonce match source list?</a> on <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-nonce-metadata" id="ref-for-concept-request-nonce-metadata④">cryptographic nonce metadata</a> and this - directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④①">value</a> is "<code>Matches</code>", return + directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑧">value</a> is "<code>Matches</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④②">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value③⑨">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3433,7 +3432,7 @@ <h5 class="heading settled algorithm" data-algorithm="style-src-elem Inline Chec <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src-elem</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④③">value</a>, <var>type</var>, + <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⓪">value</a>, <var>type</var>, and <var>source</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3453,7 +3452,7 @@ <h5 class="heading settled algorithm" data-algorithm="style-src-attr Inline Chec <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>style-src-attr</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④④">value</a>, <var>type</var>, + <p>If the result of executing <a href="#match-element-to-source-list">§ 6.6.3.3 Does element match source list for type and source?</a> on <var>element</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④①">value</a>, <var>type</var>, and <var>source</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3487,7 +3486,7 @@ <h5 class="heading settled algorithm" data-algorithm="worker-src Pre-request Che <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>worker-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑤">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④②">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3501,7 +3500,7 @@ <h5 class="heading settled algorithm" data-algorithm="worker-src Post-request Ch <li data-md> <p>If the result of executing <a href="#should-directive-execute">§ 6.7.4 Should fetch directive execute</a> on <var>name</var>, <code>worker-src</code> and <var>policy</var> is "<code>No</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑥">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④③">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3529,7 +3528,7 @@ <h5 class="heading settled dfn-paneled algorithm" data-algorithm="Is base allowe <li data-md> <p>If a <a data-link-type="dfn" href="#directives" id="ref-for-directives②⓪">directive</a> whose <a data-link-type="dfn" href="#directive-name" id="ref-for-directive-name①③">name</a> is "<code>base-uri</code>" is present in <var>policy</var>’s <a data-link-type="dfn" href="#policy-directive-set" id="ref-for-policy-directive-set①⓪">directive - set</a>, set <var>source list</var> to that <a data-link-type="dfn" href="#directives" id="ref-for-directives②①">directive</a>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑦">value</a>.</p> + set</a>, set <var>source list</var> to that <a data-link-type="dfn" href="#directives" id="ref-for-directives②①">directive</a>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④④">value</a>.</p> <li data-md> <p>If <var>source list</var> is <code>null</code>, skip to the next <var>policy</var>.</p> <li data-md> @@ -3580,7 +3579,7 @@ <h5 class="heading settled algorithm" data-algorithm="sandbox Response Check" da <ol> <li data-md> <p>If the result of the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsers.html#parse-a-sandboxing-directive" id="ref-for-parse-a-sandboxing-directive">Parse a sandboxing directive</a> algorithm - using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑧">value</a> as the input + using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑤">value</a> as the input contains either the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsers.html#sandboxed-scripts-browsing-context-flag" id="ref-for-sandboxed-scripts-browsing-context-flag">sandboxed scripts browsing context flag</a> or the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsers.html#sandboxed-origin-browsing-context-flag" id="ref-for-sandboxed-origin-browsing-context-flag">sandboxed origin browsing context flag</a> flags, return "<code>Blocked</code>".</p> @@ -3603,7 +3602,7 @@ <h5 class="heading settled algorithm" data-algorithm="sandbox Initialization" da <p class="note" role="note"><span class="marker">Note:</span> This will need to change if we allow Workers to be sandboxed, which seems like a pretty reasonable thing to do.</p> <li data-md> - <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsers.html#parse-a-sandboxing-directive" id="ref-for-parse-a-sandboxing-directive①">Parse a sandboxing directive</a> using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑨">value</a> as the input, and <var>context</var>’s <a data-link-type="dfn">forced + <p><a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsers.html#parse-a-sandboxing-directive" id="ref-for-parse-a-sandboxing-directive①">Parse a sandboxing directive</a> using this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑥">value</a> as the input, and <var>context</var>’s <a data-link-type="dfn">forced sandboxing flag set</a> as the output.</p> </ol> <h3 class="heading settled" data-level="6.3" id="directives-navigation"><span class="secno">6.3. </span><span class="content"> Navigation Directives </span><a class="self-link" href="#directives-navigation"></a></h3> @@ -3626,7 +3625,7 @@ <h5 class="heading settled algorithm" data-algorithm="form-action Pre-Navigation <p>If <var>navigation type</var> is "<code>form-submission</code>":</p> <ol> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⓪">value</a>, and a <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑦">value</a>, and a <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> </ol> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3674,7 +3673,7 @@ <h5 class="heading settled algorithm" data-algorithm="frame-ancestors Navigation <p>Let <var>origin</var> be the result of executing the <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser①">URL parser</a> on the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/browsers.html#ascii-serialisation-of-an-origin" id="ref-for-ascii-serialisation-of-an-origin">ASCII serialization</a> of <var>document</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-origin" id="ref-for-concept-document-origin">origin</a>.</p> <li data-md> <p>If <a href="#match-url-to-source-list">§ 6.6.2.5 Does url match source list in origin with redirect count?</a> returns <code>Does Not Match</code> when - executed upon <var>origin</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤①">value</a>, <var>policy</var>’s <a data-link-type="dfn" href="#policy-self-origin" id="ref-for-policy-self-origin③">self-origin</a>, and <code>0</code>, return "<code>Blocked</code>".</p> + executed upon <var>origin</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑧">value</a>, <var>policy</var>’s <a data-link-type="dfn" href="#policy-self-origin" id="ref-for-policy-self-origin③">self-origin</a>, and <code>0</code>, return "<code>Blocked</code>".</p> <li data-md> <p>Set <var>current</var> to <var>document</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/#browsing-context" id="ref-for-browsing-context⑤">browsing context</a>.</p> </ol> @@ -3719,13 +3718,13 @@ <h5 class="heading settled algorithm" data-algorithm="navigate-to Pre-Navigation <li data-md> <p>If <var>navigation type</var> is "<code>form-submission</code>" and <var>policy</var> contains a <a data-link-type="dfn" href="#directives" id="ref-for-directives②⑤">directive</a> named "<code>form-action</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤②">value</a> contains a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression③">source + <p>If this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value④⑨">value</a> contains a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression③">source expression</a> that is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive②">ASCII case-insensitive</a> match for the "<a data-link-type="grammar" href="#grammardef-unsafe-allow-redirects" id="ref-for-grammardef-unsafe-allow-redirects"><code>'unsafe-allow-redirects'</code></a>" <a data-link-type="grammar" href="#grammardef-keyword-source" id="ref-for-grammardef-keyword-source①">keyword-source</a>, return "<code>Allowed</code>".</p> <p class="note" role="note"><span class="marker">Note:</span> If the 'unsafe-allow-redirects' flag is present we have to wait for the <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response" id="ref-for-concept-response③⑧">response</a> and take into account the <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response" id="ref-for-concept-response③⑨">response</a>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-status" id="ref-for-concept-response-status">status</a> in <a href="#navigate-to-navigation-response">§ 6.3.3.2 navigate-to Navigation Response Check</a>.</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤③">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⓪">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3743,7 +3742,7 @@ <h5 class="heading settled algorithm" data-algorithm="navigate-to Navigation Res <li data-md> <p>If <var>navigation type</var> is "<code>form-submission</code>" and <var>policy</var> contains a <a data-link-type="dfn" href="#directives" id="ref-for-directives②⑦">directive</a> named "<code>form-action</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤④">value</a> does not contain a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression④">source + <p>If this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤①">value</a> does not contain a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression④">source expression</a> that is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive③">ASCII case-insensitive</a> match for the "<a data-link-type="grammar" href="#grammardef-unsafe-allow-redirects" id="ref-for-grammardef-unsafe-allow-redirects①"><code>'unsafe-allow-redirects'</code></a>" <a data-link-type="grammar" href="#grammardef-keyword-source" id="ref-for-grammardef-keyword-source②">keyword-source</a>, return "<code>Allowed</code>".</p> <p class="note" role="note"><span class="marker">Note:</span> If the 'unsafe-allow-redirects' flag is not present we have @@ -3751,7 +3750,7 @@ <h5 class="heading settled algorithm" data-algorithm="navigate-to Navigation Res <li data-md> <p>If <var>navigation response</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-status" id="ref-for-concept-response-status①">status</a> is a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#redirect-status" id="ref-for-redirect-status">redirect status</a>, return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑤">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, this directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤②">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> <li data-md> <p>Return "<code>Allowed</code>".</p> @@ -3812,10 +3811,10 @@ <h5 class="heading settled algorithm" data-algorithm="Script directives pre-requ <ol> <li data-md> <p>If the result of executing <a href="#match-nonce-to-source-list">§ 6.6.2.2 Does nonce match source list?</a> on <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-nonce-metadata" id="ref-for-concept-request-nonce-metadata⑤">cryptographic nonce metadata</a> and this - directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑥">value</a> is "<code>Matches</code>", return + directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤③">value</a> is "<code>Matches</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>Let <var>integrity expressions</var> be the set of <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression⑤">source expressions</a> in <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑦">value</a> that match the <a data-link-type="grammar" href="#grammardef-hash-source" id="ref-for-grammardef-hash-source④">hash-source</a> grammar.</p> + <p>Let <var>integrity expressions</var> be the set of <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression⑤">source expressions</a> in <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤④">value</a> that match the <a data-link-type="grammar" href="#grammardef-hash-source" id="ref-for-grammardef-hash-source④">hash-source</a> grammar.</p> <li data-md> <p>If <var>integrity expressions</var> is not empty:</p> <ol> @@ -3831,7 +3830,7 @@ <h5 class="heading settled algorithm" data-algorithm="Script directives pre-requ <p>For each <var>source</var> in <var>integrity sources</var>:</p> <ol> <li data-md> - <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑧">value</a> does not + <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑤">value</a> does not contain a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression⑥">source expression</a> whose <a data-link-type="grammar" href="#grammardef-hash-algorithm" id="ref-for-grammardef-hash-algorithm①">hash-algorithm</a> is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive④">ASCII case-insensitive</a> match for <var>source</var>’s <a data-link-type="grammar" href="#grammardef-hash-algorithm" id="ref-for-grammardef-hash-algorithm②">hash-algorithm</a>, and whose <a data-link-type="grammar" href="#grammardef-base64-value" id="ref-for-grammardef-base64-value④">base64-value</a> is <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-is" id="ref-for-string-is">identical to</a> <var>source</var>’s <code>base64-value</code>, then set <var>bypass due to integrity match</var> to <code>false</code>.</p> @@ -3843,7 +3842,7 @@ <h5 class="heading settled algorithm" data-algorithm="Script directives pre-requ <p class="note" role="note"><span class="marker">Note:</span> Here, we verify only that the <var>request</var> contains a set of <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-integrity-metadata" id="ref-for-concept-request-integrity-metadata①">integrity metadata</a> which is a subset of the <a data-link-type="grammar" href="#grammardef-hash-source" id="ref-for-grammardef-hash-source⑤">hash-source</a> <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression⑦">source expressions</a> specified by <var>directive</var>. We rely on the browser’s enforcement of Subresource Integrity <a data-link-type="biblio" href="#biblio-sri" title="Subresource Integrity">[SRI]</a> to block non-matching resources upon response.</p> <li data-md> - <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑨">value</a> contains a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression⑧">source + <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑥">value</a> contains a <a data-link-type="dfn" href="#source-expression" id="ref-for-source-expression⑧">source expression</a> that is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive⑤">ASCII case-insensitive</a> match for the "<a data-link-type="grammar" href="#grammardef-strict-dynamic" id="ref-for-grammardef-strict-dynamic"><code>'strict-dynamic'</code></a>" <a data-link-type="grammar" href="#grammardef-keyword-source" id="ref-for-grammardef-keyword-source③">keyword-source</a>:</p> <ol> @@ -3854,7 +3853,7 @@ <h5 class="heading settled algorithm" data-algorithm="Script directives pre-requ in <a href="#strict-dynamic-usage">§ 8.2 Usage of "'strict-dynamic'"</a>.</p> </ol> <li data-md> - <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥⓪">value</a>, and <var>policy</var>, + <p>If the result of executing <a href="#match-request-to-source-list">§ 6.6.2.3 Does request match source list?</a> on <var>request</var>, <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑦">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> </ol> <li data-md> @@ -3870,14 +3869,14 @@ <h5 class="heading settled algorithm" data-algorithm="Script directives post-req <ol> <li data-md> <p>If the result of executing <a href="#match-nonce-to-source-list">§ 6.6.2.2 Does nonce match source list?</a> on <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-nonce-metadata" id="ref-for-concept-request-nonce-metadata⑥">cryptographic nonce metadata</a> and this - directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥①">value</a> is "<code>Matches</code>", return + directive’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑧">value</a> is "<code>Matches</code>", return "<code>Allowed</code>".</p> <li data-md> - <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥②">value</a> contains + <p>If <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑤⑨">value</a> contains "<a data-link-type="grammar" href="#grammardef-strict-dynamic" id="ref-for-grammardef-strict-dynamic②"><code>'strict-dynamic'</code></a>", and <var>request</var>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-request-parser-metadata" id="ref-for-concept-request-parser-metadata②">parser metadata</a> is not <a data-link-type="dfn" href="https://html.spec.whatwg.org/#parser-inserted" id="ref-for-parser-inserted②">"parser-inserted"</a>, return "<code>Allowed</code>".</p> <li data-md> - <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥③">value</a>, + <p>If the result of executing <a href="#match-response-to-source-list">§ 6.6.2.4 Does response to request match source list?</a> on <var>response</var>, <var>request</var>, <var>directive</var>’s <a data-link-type="dfn" href="#directive-value" id="ref-for-directive-value⑥⓪">value</a>, and <var>policy</var>, is "<code>Does Not Match</code>", return "<code>Blocked</code>".</p> </ol> <li data-md> @@ -5015,20 +5014,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -5550,7 +5551,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-reporting">[REPORTING] <dd>Ilya Gregorik; Mike West. <a href="https://wicg.github.io/reporting/"><cite>Reporting API</cite></a>. URL: <a href="https://wicg.github.io/reporting/">https://wicg.github.io/reporting/</a> <dt id="biblio-reporting-1">[REPORTING-1] - <dd>Douglas Creager; Ian Clelland; Mike West. <a href="https://www.w3.org/TR/reporting-1/"><cite>Reporting API</cite></a>. 17 September 2022. WD. URL: <a href="https://www.w3.org/TR/reporting-1/">https://www.w3.org/TR/reporting-1/</a> + <dd>Douglas Creager; Ian Clelland; Mike West. <a href="https://www.w3.org/TR/reporting-1/"><cite>Reporting API</cite></a>. 13 August 2024. WD. URL: <a href="https://www.w3.org/TR/reporting-1/">https://www.w3.org/TR/reporting-1/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-rfc3492">[RFC3492] @@ -5585,7 +5586,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-appmanifest">[APPMANIFEST] - <dd>Marcos Caceres; et al. <a href="https://www.w3.org/TR/appmanifest/"><cite>Web Application Manifest</cite></a>. 25 January 2023. WD. URL: <a href="https://www.w3.org/TR/appmanifest/">https://www.w3.org/TR/appmanifest/</a> + <dd>Marcos Caceres; et al. <a href="https://www.w3.org/TR/appmanifest/"><cite>Web Application Manifest</cite></a>. 2 July 2024. WD. URL: <a href="https://www.w3.org/TR/appmanifest/">https://www.w3.org/TR/appmanifest/</a> <dt id="biblio-beacon">[BEACON] <dd>Ilya Grigorik; Alois Reitbauer. <a href="https://www.w3.org/TR/beacon/"><cite>Beacon</cite></a>. 3 August 2022. CR. URL: <a href="https://www.w3.org/TR/beacon/">https://www.w3.org/TR/beacon/</a> <dt id="biblio-csp2">[CSP2] @@ -5601,7 +5602,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-html-design">[HTML-DESIGN] <dd>Anne Van Kesteren; Maciej Stachowiak. <a href="https://www.w3.org/TR/html-design-principles/"><cite>HTML Design Principles</cite></a>. URL: <a href="https://www.w3.org/TR/html-design-principles/">https://www.w3.org/TR/html-design-principles/</a> <dt id="biblio-mix">[MIX] - <dd>Emily Stark; Mike West; Carlos IbarraLopez. <a href="https://www.w3.org/TR/mixed-content/"><cite>Mixed Content</cite></a>. 4 October 2021. CR. URL: <a href="https://www.w3.org/TR/mixed-content/">https://www.w3.org/TR/mixed-content/</a> + <dd>Emily Stark; Mike West; Carlos IbarraLopez. <a href="https://www.w3.org/TR/mixed-content/"><cite>Mixed Content</cite></a>. 23 February 2023. CR. URL: <a href="https://www.w3.org/TR/mixed-content/">https://www.w3.org/TR/mixed-content/</a> <dt id="biblio-timing">[TIMING] <dd>Paul Stone. <a href="https://www.contextis.com/media/downloads/Pixel_Perfect_Timing_Attacks_with_HTML5_Whitepaper.pdf"><cite>Pixel Perfect Timing Attacks with HTML5</cite></a>. URL: <a href="https://www.contextis.com/media/downloads/Pixel_Perfect_Timing_Attacks_with_HTML5_Whitepaper.pdf">https://www.contextis.com/media/downloads/Pixel_Perfect_Timing_Attacks_with_HTML5_Whitepaper.pdf</a> <dt id="biblio-uisecurity">[UISECURITY] @@ -5613,7 +5614,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-xhr">[XHR] <dd>Anne van Kesteren. <a href="https://xhr.spec.whatwg.org/"><cite>XMLHttpRequest Standard</cite></a>. Living Standard. URL: <a href="https://xhr.spec.whatwg.org/">https://xhr.spec.whatwg.org/</a> <dt id="biblio-xslt">[XSLT] - <dd>James Clark. <a href="https://www.w3.org/TR/xslt/"><cite>XSL Transformations (XSLT) Version 1.0</cite></a>. 16 November 1999. REC. URL: <a href="https://www.w3.org/TR/xslt/">https://www.w3.org/TR/xslt/</a> + <dd>James Clark. <a href="https://www.w3.org/TR/xslt-10/"><cite>XSL Transformations (XSLT) Version 1.0</cite></a>. 16 November 1999. REC. URL: <a href="https://www.w3.org/TR/xslt-10/">https://www.w3.org/TR/xslt-10/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed"><c- g>Exposed</c-></a>=<c- n>Window</c->] @@ -6084,7 +6085,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "directive-pre-navigation-check": {"dfnID":"directive-pre-navigation-check","dfnText":"pre-navigation check","external":false,"refSections":[{"refs":[{"id":"ref-for-directive-pre-navigation-check"}],"title":"4.2.5. \n Should navigation request of type be blocked\n by Content Security Policy?\n "},{"refs":[{"id":"ref-for-directive-pre-navigation-check\u2460"}],"title":"6.3.1.1. \n form-action Pre-Navigation Check\n "},{"refs":[{"id":"ref-for-directive-pre-navigation-check\u2461"}],"title":"6.3.3.1. \n navigate-to Pre-Navigation Check\n "}],"url":"#directive-pre-navigation-check"}, "directive-pre-request-check": {"dfnID":"directive-pre-request-check","dfnText":"pre-request check","external":false,"refSections":[{"refs":[{"id":"ref-for-directive-pre-request-check"}],"title":"4.1. \n Integration with Fetch\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460"},{"id":"ref-for-directive-pre-request-check\u2461"}],"title":"6.1.1.1. \n child-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2462"}],"title":"6.1.2.1. \n connect-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2463"},{"id":"ref-for-directive-pre-request-check\u2464"}],"title":"6.1.3.1. \n default-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2465"}],"title":"6.1.4.1. \n font-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2466"}],"title":"6.1.5.1. \n frame-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2467"}],"title":"6.1.6.1. \n img-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2468"}],"title":"6.1.7.1. \n manifest-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u24ea"}],"title":"6.1.8.1. \n media-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2460"}],"title":"6.1.9.1. \n object-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2461"}],"title":"6.1.10.1. \n prefetch-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2462"}],"title":"6.1.11.1. \n script-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2463"}],"title":"6.1.12.1. \n script-src-elem Pre-request check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2464"}],"title":"6.1.14.1. \n style-src Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2465"}],"title":"6.1.15.1. \n style-src-elem Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2466"}],"title":"6.1.17.1. \n worker-src Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2467"}],"title":"6.5. \n Directives Defined in Other Documents\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2460\u2468"}],"title":"6.6.2.1. \n Does request violate policy?\n "},{"refs":[{"id":"ref-for-directive-pre-request-check\u2461\u24ea"}],"title":"6.6.2.3. \n Does request match source list?\n "}],"url":"#directive-pre-request-check"}, "directive-response-check": {"dfnID":"directive-response-check","dfnText":"response check","external":false,"refSections":[{"refs":[{"id":"ref-for-directive-response-check"}],"title":"4.1. \n Integration with Fetch\n "},{"refs":[{"id":"ref-for-directive-response-check\u2460"}],"title":"4.1.4. \n Should response to request be blocked by Content Security Policy?\n "},{"refs":[{"id":"ref-for-directive-response-check\u2461"}],"title":"6.2.2.1. \n sandbox Response Check\n "},{"refs":[{"id":"ref-for-directive-response-check\u2462"}],"title":"6.5. \n Directives Defined in Other Documents\n "}],"url":"#directive-response-check"}, -"directive-value": {"dfnID":"directive-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-directive-value"}],"title":"2.2.1. \n Parse a serialized CSP\n "},{"refs":[{"id":"ref-for-directive-value\u2460"},{"id":"ref-for-directive-value\u2461"}],"title":"2.3. Directives"},{"refs":[{"id":"ref-for-directive-value\u2462"}],"title":"2.3.1. Source Lists"},{"refs":[{"id":"ref-for-directive-value\u2463"}],"title":"4.2.4. \n Should element\u2019s inline type behavior be blocked by Content Security Policy?\n "},{"refs":[{"id":"ref-for-directive-value\u2464"},{"id":"ref-for-directive-value\u2465"}],"title":"4.3.1. \n EnsureCSPDoesNotBlockStringCompilation(callerRealm, calleeRealm, source)\n "},{"refs":[{"id":"ref-for-directive-value\u2466"},{"id":"ref-for-directive-value\u2467"}],"title":"5.3. \n Report a violation\n "},{"refs":[{"id":"ref-for-directive-value\u2468"}],"title":"6.1.1.1. \n child-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u24ea"}],"title":"6.1.1.2. \n child-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2460"}],"title":"6.1.2.1. \n connect-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2461"}],"title":"6.1.2.2. \n connect-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2462"}],"title":"6.1.3.1. \n default-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2463"}],"title":"6.1.3.2. \n default-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2464"}],"title":"6.1.3.3. \n default-src Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2465"}],"title":"6.1.4.1. \n font-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2466"}],"title":"6.1.4.2. \n font-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2467"}],"title":"6.1.5.1. \n frame-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2468"}],"title":"6.1.5.2. \n frame-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u24ea"}],"title":"6.1.6.1. \n img-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2460"}],"title":"6.1.6.2. \n img-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2461"}],"title":"6.1.7.1. \n manifest-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2462"}],"title":"6.1.7.2. \n manifest-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2463"}],"title":"6.1.8.1. \n media-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2464"}],"title":"6.1.8.2. \n media-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2465"}],"title":"6.1.9.1. \n object-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2466"}],"title":"6.1.9.2. \n object-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2467"}],"title":"6.1.10.1. \n prefetch-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2468"}],"title":"6.1.10.2. \n prefetch-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u24ea"}],"title":"6.1.11.3. \n script-src Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2460"}],"title":"6.1.12. script-src-elem"},{"refs":[{"id":"ref-for-directive-value\u2462\u2461"}],"title":"6.1.12.3. \n script-src-elem Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2462"}],"title":"6.1.13.1. \n script-src-attr Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2463"},{"id":"ref-for-directive-value\u2462\u2464"}],"title":"6.1.14.1. \n style-src Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2465"},{"id":"ref-for-directive-value\u2462\u2466"}],"title":"6.1.14.2. \n style-src Post-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2467"}],"title":"6.1.14.3. \n style-src Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2468"},{"id":"ref-for-directive-value\u2463\u24ea"}],"title":"6.1.15.1. \n style-src-elem Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2460"},{"id":"ref-for-directive-value\u2463\u2461"}],"title":"6.1.15.2. \n style-src-elem Post-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2462"}],"title":"6.1.15.3. \n style-src-elem Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2463"}],"title":"6.1.16.1. \n style-src-attr Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2464"}],"title":"6.1.17.1. \n worker-src Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2465"}],"title":"6.1.17.2. \n worker-src Post-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2466"}],"title":"6.2.1.1. \n Is base allowed for document?\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2467"}],"title":"6.2.2.1. \n sandbox Response Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2468"}],"title":"6.2.2.2. \n sandbox Initialization\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u24ea"}],"title":"6.3.1.1. \n form-action Pre-Navigation Check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2460"}],"title":"6.3.2.1. \n frame-ancestors Navigation Response Check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2461"},{"id":"ref-for-directive-value\u2464\u2462"}],"title":"6.3.3.1. \n navigate-to Pre-Navigation Check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2463"},{"id":"ref-for-directive-value\u2464\u2464"}],"title":"6.3.3.2. \n navigate-to Navigation Response Check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2465"},{"id":"ref-for-directive-value\u2464\u2466"},{"id":"ref-for-directive-value\u2464\u2467"},{"id":"ref-for-directive-value\u2464\u2468"},{"id":"ref-for-directive-value\u2465\u24ea"}],"title":"6.6.1.1. \n Script directives pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2465\u2460"},{"id":"ref-for-directive-value\u2465\u2461"},{"id":"ref-for-directive-value\u2465\u2462"}],"title":"6.6.1.2. \n Script directives post-request check\n "}],"url":"#directive-value"}, +"directive-value": {"dfnID":"directive-value","dfnText":"value","external":false,"refSections":[{"refs":[{"id":"ref-for-directive-value"}],"title":"2.2.1. \n Parse a serialized CSP\n "},{"refs":[{"id":"ref-for-directive-value\u2460"}],"title":"4.2.4. \n Should element\u2019s inline type behavior be blocked by Content Security Policy?\n "},{"refs":[{"id":"ref-for-directive-value\u2461"},{"id":"ref-for-directive-value\u2462"}],"title":"4.3.1. \n EnsureCSPDoesNotBlockStringCompilation(callerRealm, calleeRealm, source)\n "},{"refs":[{"id":"ref-for-directive-value\u2463"},{"id":"ref-for-directive-value\u2464"}],"title":"5.3. \n Report a violation\n "},{"refs":[{"id":"ref-for-directive-value\u2465"}],"title":"6.1.1.1. \n child-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2466"}],"title":"6.1.1.2. \n child-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2467"}],"title":"6.1.2.1. \n connect-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2468"}],"title":"6.1.2.2. \n connect-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u24ea"}],"title":"6.1.3.1. \n default-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2460"}],"title":"6.1.3.2. \n default-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2461"}],"title":"6.1.3.3. \n default-src Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2462"}],"title":"6.1.4.1. \n font-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2463"}],"title":"6.1.4.2. \n font-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2464"}],"title":"6.1.5.1. \n frame-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2465"}],"title":"6.1.5.2. \n frame-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2466"}],"title":"6.1.6.1. \n img-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2467"}],"title":"6.1.6.2. \n img-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2460\u2468"}],"title":"6.1.7.1. \n manifest-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u24ea"}],"title":"6.1.7.2. \n manifest-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2460"}],"title":"6.1.8.1. \n media-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2461"}],"title":"6.1.8.2. \n media-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2462"}],"title":"6.1.9.1. \n object-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2463"}],"title":"6.1.9.2. \n object-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2464"}],"title":"6.1.10.1. \n prefetch-src Pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2465"}],"title":"6.1.10.2. \n prefetch-src Post-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2466"}],"title":"6.1.11.3. \n script-src Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2461\u2467"}],"title":"6.1.12. script-src-elem"},{"refs":[{"id":"ref-for-directive-value\u2461\u2468"}],"title":"6.1.12.3. \n script-src-elem Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u24ea"}],"title":"6.1.13.1. \n script-src-attr Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2460"},{"id":"ref-for-directive-value\u2462\u2461"}],"title":"6.1.14.1. \n style-src Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2462"},{"id":"ref-for-directive-value\u2462\u2463"}],"title":"6.1.14.2. \n style-src Post-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2464"}],"title":"6.1.14.3. \n style-src Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2465"},{"id":"ref-for-directive-value\u2462\u2466"}],"title":"6.1.15.1. \n style-src-elem Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2462\u2467"},{"id":"ref-for-directive-value\u2462\u2468"}],"title":"6.1.15.2. \n style-src-elem Post-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u24ea"}],"title":"6.1.15.3. \n style-src-elem Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2460"}],"title":"6.1.16.1. \n style-src-attr Inline Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2461"}],"title":"6.1.17.1. \n worker-src Pre-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2462"}],"title":"6.1.17.2. \n worker-src Post-request Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2463"}],"title":"6.2.1.1. \n Is base allowed for document?\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2464"}],"title":"6.2.2.1. \n sandbox Response Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2465"}],"title":"6.2.2.2. \n sandbox Initialization\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2466"}],"title":"6.3.1.1. \n form-action Pre-Navigation Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2467"}],"title":"6.3.2.1. \n frame-ancestors Navigation Response Check\n "},{"refs":[{"id":"ref-for-directive-value\u2463\u2468"},{"id":"ref-for-directive-value\u2464\u24ea"}],"title":"6.3.3.1. \n navigate-to Pre-Navigation Check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2460"},{"id":"ref-for-directive-value\u2464\u2461"}],"title":"6.3.3.2. \n navigate-to Navigation Response Check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2462"},{"id":"ref-for-directive-value\u2464\u2463"},{"id":"ref-for-directive-value\u2464\u2464"},{"id":"ref-for-directive-value\u2464\u2465"},{"id":"ref-for-directive-value\u2464\u2466"}],"title":"6.6.1.1. \n Script directives pre-request check\n "},{"refs":[{"id":"ref-for-directive-value\u2464\u2467"},{"id":"ref-for-directive-value\u2464\u2468"},{"id":"ref-for-directive-value\u2465\u24ea"}],"title":"6.6.1.2. \n Script directives post-request check\n "}],"url":"#directive-value"}, "directives": {"dfnID":"directives","dfnText":"directives","external":false,"refSections":[{"refs":[{"id":"ref-for-directives"}],"title":"2.2. Policies"},{"refs":[{"id":"ref-for-directives\u2460"},{"id":"ref-for-directives\u2461"}],"title":"2.2.1. \n Parse a serialized CSP\n "},{"refs":[{"id":"ref-for-directives\u2462"},{"id":"ref-for-directives\u2463"}],"title":"2.3. Directives"},{"refs":[{"id":"ref-for-directives\u2464"}],"title":"2.3.1. Source Lists"},{"refs":[{"id":"ref-for-directives\u2465"}],"title":"2.4. Violations"},{"refs":[{"id":"ref-for-directives\u2466"}],"title":"4.1. \n Integration with Fetch\n "},{"refs":[{"id":"ref-for-directives\u2467"},{"id":"ref-for-directives\u2468"},{"id":"ref-for-directives\u2460\u24ea"}],"title":"4.3.1. \n EnsureCSPDoesNotBlockStringCompilation(callerRealm, calleeRealm, source)\n "},{"refs":[{"id":"ref-for-directives\u2460\u2460"},{"id":"ref-for-directives\u2460\u2461"},{"id":"ref-for-directives\u2460\u2462"}],"title":"5.3. \n Report a violation\n "},{"refs":[{"id":"ref-for-directives\u2460\u2463"}],"title":"6. \n Content Security Policy Directives\n "},{"refs":[{"id":"ref-for-directives\u2460\u2464"}],"title":"6.1.1.1. \n child-src Pre-request check\n "},{"refs":[{"id":"ref-for-directives\u2460\u2465"}],"title":"6.1.1.2. \n child-src Post-request check\n "},{"refs":[{"id":"ref-for-directives\u2460\u2466"}],"title":"6.1.3.1. \n default-src Pre-request check\n "},{"refs":[{"id":"ref-for-directives\u2460\u2467"}],"title":"6.1.3.2. \n default-src Post-request check\n "},{"refs":[{"id":"ref-for-directives\u2460\u2468"}],"title":"6.1.3.3. \n default-src Inline Check\n "},{"refs":[{"id":"ref-for-directives\u2461\u24ea"},{"id":"ref-for-directives\u2461\u2460"}],"title":"6.2.1.1. \n Is base allowed for document?\n "},{"refs":[{"id":"ref-for-directives\u2461\u2461"},{"id":"ref-for-directives\u2461\u2462"}],"title":"6.3.2.1. \n frame-ancestors Navigation Response Check\n "},{"refs":[{"id":"ref-for-directives\u2461\u2463"}],"title":"6.3.2.2. \n\t\tRelation to X-Frame-Options\n\t"},{"refs":[{"id":"ref-for-directives\u2461\u2464"}],"title":"6.3.3.1. \n navigate-to Pre-Navigation Check\n "},{"refs":[{"id":"ref-for-directives\u2461\u2465"},{"id":"ref-for-directives\u2461\u2466"}],"title":"6.3.3.2. \n navigate-to Navigation Response Check\n "},{"refs":[{"id":"ref-for-directives\u2461\u2467"}],"title":"6.6.1.1. \n Script directives pre-request check\n "},{"refs":[{"id":"ref-for-directives\u2461\u2468"}],"title":"6.6.1.2. \n Script directives post-request check\n "},{"refs":[{"id":"ref-for-directives\u2462\u24ea"}],"title":"6.6.2.1. \n Does request violate policy?\n "},{"refs":[{"id":"ref-for-directives\u2462\u2460"}],"title":"6.6.2.3. \n Does request match source list?\n "},{"refs":[{"id":"ref-for-directives\u2462\u2461"}],"title":"6.6.2.4. \n Does response to request match source list?\n "},{"refs":[{"id":"ref-for-directives\u2462\u2462"},{"id":"ref-for-directives\u2462\u2463"}],"title":"6.7.3. \n Get fetch directive fallback list\n "}],"url":"#directives"}, "dom-cspviolationreportbody-blockedurl": {"dfnID":"dom-cspviolationreportbody-blockedurl","dfnText":"blockedURL","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-cspviolationreportbody-blockedurl"}],"title":"5.3. \n Report a violation\n "}],"url":"#dom-cspviolationreportbody-blockedurl"}, "dom-cspviolationreportbody-columnnumber": {"dfnID":"dom-cspviolationreportbody-columnnumber","dfnText":"columnNumber","external":false,"refSections":[{"refs":[{"id":"ref-for-dom-cspviolationreportbody-columnnumber"}],"title":"5.3. \n Report a violation\n "}],"url":"#dom-cspviolationreportbody-columnnumber"}, diff --git a/tests/github/w3c/webappsec-csp/pinning/index.console.txt b/tests/github/w3c/webappsec-csp/pinning/index.console.txt index 69fa1b27e8..93705f879b 100644 --- a/tests/github/w3c/webappsec-csp/pinning/index.console.txt +++ b/tests/github/w3c/webappsec-csp/pinning/index.console.txt @@ -1,5 +1,3 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINT: Your document appears to use spaces to indent, but line 105 starts with tabs. LINT: Your document appears to use spaces to indent, but line 106 starts with tabs. LINT: Your document appears to use spaces to indent, but line 107 starts with tabs. diff --git a/tests/github/w3c/webappsec-csp/pinning/index.html b/tests/github/w3c/webappsec-csp/pinning/index.html index 1d6eba10ac..5b8538d058 100644 --- a/tests/github/w3c/webappsec-csp/pinning/index.html +++ b/tests/github/w3c/webappsec-csp/pinning/index.html @@ -5,7 +5,6 @@ <title>Content Security Policy Pinning</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/csp-pinning/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -601,7 +600,7 @@ <h1>Content Security Policy Pinning</h1> please send an email to the editors. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1222,7 +1221,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html5">[HTML5] <dd>Ian Hickson; et al. <a href="https://www.w3.org/TR/html5/"><cite>HTML5</cite></a>. 27 March 2018. REC. URL: <a href="https://www.w3.org/TR/html5/">https://www.w3.org/TR/html5/</a> <dt id="biblio-mixed-content">[MIXED-CONTENT] - <dd>Emily Stark; Mike West; Carlos IbarraLopez. <a href="https://www.w3.org/TR/mixed-content/"><cite>Mixed Content</cite></a>. 4 October 2021. CR. URL: <a href="https://www.w3.org/TR/mixed-content/">https://www.w3.org/TR/mixed-content/</a> + <dd>Emily Stark; Mike West; Carlos IbarraLopez. <a href="https://www.w3.org/TR/mixed-content/"><cite>Mixed Content</cite></a>. 23 February 2023. CR. URL: <a href="https://www.w3.org/TR/mixed-content/">https://www.w3.org/TR/mixed-content/</a> <dt id="biblio-rfc3864">[RFC3864] <dd>G. Klyne; M. Nottingham; J. Mogul. <a href="https://www.rfc-editor.org/rfc/rfc3864"><cite>Registration Procedures for Message Header Fields</cite></a>. September 2004. Best Current Practice. URL: <a href="https://www.rfc-editor.org/rfc/rfc3864">https://www.rfc-editor.org/rfc/rfc3864</a> <dt id="biblio-rfc6454">[RFC6454] diff --git a/tests/github/w3c/webappsec-fetch-metadata/index.console.txt b/tests/github/w3c/webappsec-fetch-metadata/index.console.txt index c85f73d7bf..c2010676df 100644 --- a/tests/github/w3c/webappsec-fetch-metadata/index.console.txt +++ b/tests/github/w3c/webappsec-fetch-metadata/index.console.txt @@ -1,5 +1,3 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. LINK ERROR: Obsolete biblio ref: [rfc7231] is replaced by [rfc9110]. Either update the reference, or use [rfc7231 obsolete] if this is an intentionally-obsolete reference. LINE ~237: Multiple possible 'same site' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/browsers.html#concept-site-same-site diff --git a/tests/github/w3c/webappsec-fetch-metadata/index.html b/tests/github/w3c/webappsec-fetch-metadata/index.html index a6275875db..347010ee6e 100644 --- a/tests/github/w3c/webappsec-fetch-metadata/index.html +++ b/tests/github/w3c/webappsec-fetch-metadata/index.html @@ -5,7 +5,6 @@ <title>Fetch Metadata Request Headers</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/fetch-metadata/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -847,7 +846,7 @@ <h1 class="p-name no-ref" id="title">Fetch Metadata Request Headers</h1> <dt>Editor's Draft: <dd><a href="https://w3c.github.io/webappsec-fetch-metadata/">https://w3c.github.io/webappsec-fetch-metadata/</a> <dt>Previous Versions: - <dd><a href="https://www.w3.org/TR/2021/WD-fetch-metadata-20210720/" rel="prev">https://www.w3.org/TR/2021/WD-fetch-metadata-20210720/</a> + <dd><a href="https://www.w3.org/TR/2023/WD-fetch-metadata-20231031/" rel="prev">https://www.w3.org/TR/2023/WD-fetch-metadata-20231031/</a> <dt>History: <dd><a class="u-url" href="https://www.w3.org/standards/history/fetch-metadata/">https://www.w3.org/standards/history/fetch-metadata/</a> <dt>Feedback: @@ -862,7 +861,7 @@ <h1 class="p-name no-ref" id="title">Fetch Metadata Request Headers</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -878,7 +877,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> - <p> This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + <p> This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p> The (<a href="https://lists.w3.org/Archives/Public/public-webappsec/">archived</a>) public mailing list <a href="mailto:public-webappsec@w3.org?Subject=%5Bfetch-metadata%5D%20PUT%20SUBJECT%20HERE">public-webappsec@w3.org</a> (see <a href="https://www.w3.org/Mail/Request">instructions</a>) is preferred for discussion of this specification. @@ -891,11 +890,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" document as other than work in progress. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1335,20 +1334,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1432,7 +1433,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc3864">[RFC3864] <dd>G. Klyne; M. Nottingham; J. Mogul. <a href="https://www.rfc-editor.org/rfc/rfc3864"><cite>Registration Procedures for Message Header Fields</cite></a>. September 2004. Best Current Practice. URL: <a href="https://www.rfc-editor.org/rfc/rfc3864">https://www.rfc-editor.org/rfc/rfc3864</a> <dt id="biblio-secure-contexts">[SECURE-CONTEXTS] - <dd>Mike West. <a href="https://www.w3.org/TR/secure-contexts/"><cite>Secure Contexts</cite></a>. 18 September 2021. CR. URL: <a href="https://www.w3.org/TR/secure-contexts/">https://www.w3.org/TR/secure-contexts/</a> + <dd>Mike West. <a href="https://www.w3.org/TR/secure-contexts/"><cite>Secure Contexts</cite></a>. 10 November 2023. CR. URL: <a href="https://www.w3.org/TR/secure-contexts/">https://www.w3.org/TR/secure-contexts/</a> <dt id="biblio-url">[URL] <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/"><cite>URL Standard</cite></a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a> </dl> @@ -1441,7 +1442,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-mnot-designing-headers">[MNOT-DESIGNING-HEADERS] <dd>Mark Nottingham. <a href="https://www.mnot.net/blog/2018/11/27/header_compression"><cite>Designing Headers for HTTP Compression</cite></a>. URL: <a href="https://www.mnot.net/blog/2018/11/27/header_compression">https://www.mnot.net/blog/2018/11/27/header_compression</a> <dt id="biblio-rfc7231">[RFC7231] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> @@ -1451,11 +1452,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <div class="issue"> This should be called from in Fetch. <a href="https://github.com/whatwg/fetch/issues/993">[Issue #whatwg/fetch#993]</a> <a class="issue-return" href="#issue-03cc838f" title="Jump to section">↵</a></div> </div> <details class="mdn-anno unpositioned" data-anno-for="sec-fetch-dest-header"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Dest" title="The Sec-Fetch-Dest fetch metadata request header indicates the request&apos;s destination. That is the initiator of the original fetch request, which is where (and how) the fetched data will be used.">Headers/Sec-Fetch-Dest</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -1466,11 +1468,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="sec-fetch-mode-header"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Mode" title="The Sec-Fetch-Mode fetch metadata request header indicates the mode of the request.">Headers/Sec-Fetch-Mode</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> + <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1481,11 +1484,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="sec-fetch-site-header"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Site" title="The Sec-Fetch-Site fetch metadata request header indicates the relationship between a request initiator&apos;s origin and the origin of the requested resource.">Headers/Sec-Fetch-Site</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> + <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1496,11 +1500,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content </div> </details> <details class="mdn-anno unpositioned" data-anno-for="sec-fetch-user-header"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-User" title="The Sec-Fetch-User fetch metadata request header is only sent for requests initiated by user activation, and its value will always be ?1.">Headers/Sec-Fetch-User</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> + <span class="firefox yes"><span>Firefox</span><span>90+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>76+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> diff --git a/tests/github/w3c/webappsec-mixed-content/index.console.txt b/tests/github/w3c/webappsec-mixed-content/index.console.txt index 0afa1487cc..48de428880 100644 --- a/tests/github/w3c/webappsec-mixed-content/index.console.txt +++ b/tests/github/w3c/webappsec-mixed-content/index.console.txt @@ -1,10 +1,3 @@ -LINE 232: Multiple possible 'plugin' dfn refs for '/'. -Arbitrarily chose https://html.spec.whatwg.org/multipage/infrastructure.html#plugin -The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). -spec:html; type:dfn; for:/; text:plugin - https://html.spec.whatwg.org/multipage/infrastructure.html#plugin - https://html.spec.whatwg.org/multipage/system-state.html#dom-plugin -<a bs-line-number="232" data-link-type="dfn" data-lt="plugin">plugin</a> LINE 326: No 'dfn' refs found for 'responsible document'. <a bs-line-number="326" data-link-type="dfn" data-lt="responsible document">responsible document</a> LINE 412: No 'dfn' refs found for 'parent browsing context'. diff --git a/tests/github/w3c/webappsec-mixed-content/index.html b/tests/github/w3c/webappsec-mixed-content/index.html index cbef98ce6c..e7a394a95f 100644 --- a/tests/github/w3c/webappsec-mixed-content/index.html +++ b/tests/github/w3c/webappsec-mixed-content/index.html @@ -5,7 +5,6 @@ <title>Mixed Content Level 2</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-mixed-content/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -592,7 +591,7 @@ <h1>Mixed Content Level 2</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -616,11 +615,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[mixed-content-2] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1157,7 +1156,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-rfc6919">[RFC6919] <dd>R. Barnes; S. Kent; E. Rescorla. <a href="https://www.rfc-editor.org/rfc/rfc6919"><cite>Further Key Words for Use in RFCs to Indicate Requirement Levels</cite></a>. 1 April 2013. Experimental. URL: <a href="https://www.rfc-editor.org/rfc/rfc6919">https://www.rfc-editor.org/rfc/rfc6919</a> <dt id="biblio-upgrade-insecure-requests">[UPGRADE-INSECURE-REQUESTS] diff --git a/tests/github/w3c/webappsec-permissions-policy/index.console.txt b/tests/github/w3c/webappsec-permissions-policy/index.console.txt index 9552d6a015..3a2b5e9745 100644 --- a/tests/github/w3c/webappsec-permissions-policy/index.console.txt +++ b/tests/github/w3c/webappsec-permissions-policy/index.console.txt @@ -36,6 +36,12 @@ spec:html; type:dfn; for:/; text:origin https://html.spec.whatwg.org/multipage/media.html#media-resource-origin https://html.spec.whatwg.org/multipage/semantics.html#link-options-origin [=origins=] +LINE 362: Multiple possible 'feature' dfn refs. +Arbitrarily chose https://w3c.github.io/permissions/#dfn-powerful-feature +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:permissions; type:dfn; text:feature +spec:user-timing; type:dfn; text:feature +<a bs-line-number="362" data-link-type="dfn" data-lt="feature">feature</a> LINE 388: No 'dfn' refs found for 'permissions-policy'. <a bs-line-number="388" data-link-type="dfn" data-lt="Permissions-Policy">Permissions-Policy</a> LINE ~408: No 'dfn' refs found for 'nested browsing context'. @@ -163,5 +169,6 @@ spec:html; type:dfn; for:/; text:origin [=origin=] LINE 999: No 'dfn' refs found for 'queue' with for='['reporting']'. <a bs-line-number="999" data-lt="queue" data-link-for="reporting" data-link-type="dfn">queue a report</a> +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. LINE 337: Unexported dfn that's not referenced locally - did you mean to export it? <dfn bs-line-number="337" data-dfn-type="dfn" id="serialized-permissions-policy" data-lt="serialized-permissions-policy" data-noexport="by-default" class="dfn-paneled">serialized-permissions-policy</dfn> diff --git a/tests/github/w3c/webappsec-permissions-policy/index.html b/tests/github/w3c/webappsec-permissions-policy/index.html index d0cbb1721d..6e866626b5 100644 --- a/tests/github/w3c/webappsec-permissions-policy/index.html +++ b/tests/github/w3c/webappsec-permissions-policy/index.html @@ -5,7 +5,6 @@ <title>Permissions Policy</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-permissions-policy/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -992,7 +991,7 @@ <h1 class="p-name no-ref" id="title">Permissions Policy</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1014,11 +1013,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[permissions-policy] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -2308,20 +2307,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -2595,7 +2596,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="permissions-policy-http-header-field"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy" title="The HTTP Feature-Policy header provides a mechanism to allow and deny the use of browser features in its own frame, and in content within any <iframe> elements in the document.">Headers/Feature-Policy</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy" title="The HTTP Permissions-Policy header provides a mechanism to allow and deny the use of browser features in a document or within any <iframe> elements in the document.">Headers/Feature-Policy</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>60+</span></span> @@ -2607,6 +2608,19 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy" title="The HTTP Permissions-Policy header provides a mechanism to allow and deny the use of browser features in a document or within any <iframe> elements in the document.">Headers/Permissions-Policy</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>88+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/webappsec-post-spectre-webdev/index.console.txt b/tests/github/w3c/webappsec-post-spectre-webdev/index.console.txt index 2ae742fe02..fff44c8257 100644 --- a/tests/github/w3c/webappsec-post-spectre-webdev/index.console.txt +++ b/tests/github/w3c/webappsec-post-spectre-webdev/index.console.txt @@ -1 +1,2 @@ LINT: Your document appears to use spaces to indent, but line 361 starts with tabs. +WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/webappsec-post-spectre-webdev/index.html b/tests/github/w3c/webappsec-post-spectre-webdev/index.html index bdbc072c3d..81f162859c 100644 --- a/tests/github/w3c/webappsec-post-spectre-webdev/index.html +++ b/tests/github/w3c/webappsec-post-spectre-webdev/index.html @@ -5,7 +5,6 @@ <title>Post-Spectre Web Development</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/post-spectre-webdev/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -708,7 +707,7 @@ <h1 class="p-name no-ref" id="title">Post-Spectre Web Development</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -732,11 +731,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[post-spectre-webdev] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/github/w3c/webappsec-suborigins/index.console.txt b/tests/github/w3c/webappsec-suborigins/index.console.txt index cbd55a6547..307eab26d5 100644 --- a/tests/github/w3c/webappsec-suborigins/index.console.txt +++ b/tests/github/w3c/webappsec-suborigins/index.console.txt @@ -2,10 +2,22 @@ LINE 143: No 'dfn' refs found for 'localstorage'. <a bs-line-number="143" data-link-type="dfn" data-lt="localStorage">localStorage</a> LINE 143: No 'dfn' refs found for 'sessionstorage'. <a bs-line-number="143" data-link-type="dfn" data-lt="sessionStorage">sessionStorage</a> -LINE 488: No 'dfn' refs found for 'reflects' that are marked for export. -<a bs-line-number="488" data-link-type="dfn" data-lt="reflects">reflects</a> LINK ERROR: No 'idl-name' refs found for 'void'. <a data-link-type="idl-name" data-lt="void">void</a> +LINK ERROR: Multiple possible 'localStorage' idl refs. +Arbitrarily chose https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:html; type:attribute; text:localStorage +spec:saa-non-cookie-storage; type:attribute; text:localStorage +spec:saa-non-cookie-storage; type:dict-member; text:localStorage +{{localStorage}} +LINK ERROR: Multiple possible 'sessionStorage' idl refs. +Arbitrarily chose https://html.spec.whatwg.org/multipage/webstorage.html#dom-sessionstorage +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:html; type:attribute; text:sessionStorage +spec:saa-non-cookie-storage; type:attribute; text:sessionStorage +spec:saa-non-cookie-storage; type:dict-member; text:sessionStorage +{{sessionStorage}} LINK ERROR: No 'idl' refs found for 'document.domain'. {{document.domain}} LINE 265: Unexported dfn that's not referenced locally - did you mean to export it? diff --git a/tests/github/w3c/webappsec-suborigins/index.html b/tests/github/w3c/webappsec-suborigins/index.html index 59384c227b..f041d8cce7 100644 --- a/tests/github/w3c/webappsec-suborigins/index.html +++ b/tests/github/w3c/webappsec-suborigins/index.html @@ -5,7 +5,6 @@ <title>Suborigins</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-suborigins/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -711,7 +710,7 @@ <h1 class="p-name no-ref" id="title">Suborigins</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -738,11 +737,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[suborigins] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1142,7 +1141,7 @@ <h3 class="heading settled" data-level="3.6" id="representation"><span class="se <p class="issue" id="issue-f67832ce"><a class="self-link" href="#issue-f67832ce"></a> TODO: Determine how the serialization should relate to the URL spec: https://url.spec.whatwg.org/#host-parsing</p> <h3 class="heading settled" data-level="3.7" id="suborigin-in-js"><span class="secno">3.7. </span><span class="content">Accessing the Suborigin in JavaScript</span><a class="self-link" href="#suborigin-in-js"></a></h3> - <p>A <code>suborigin</code> property is added to the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document" id="ref-for-concept-document">document</a> object which <a data-link-type="dfn">reflects</a> the value of the suborigin namespace for the current execution + <p>A <code>suborigin</code> property is added to the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document" id="ref-for-concept-document">document</a> object which <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">reflects</a> the value of the suborigin namespace for the current execution context. If there is no suborigin namespace, the value should be undefined.</p> <p>Additionally, the <code>origin</code> property of the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document" id="ref-for-concept-document①">document</a> object should reflect the serialized value of the origin as returned by <a href="#serializing">§ 6.1.6 Serializing Suborigins</a>.</p> @@ -1549,20 +1548,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1655,6 +1656,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="21d76096">origin</span> <li><span class="dfn-paneled" id="8039907b">origin tuple</span> <li><span class="dfn-paneled" id="7da16632">postmessage</span> + <li><span class="dfn-paneled" id="5ab7b520">reflect</span> <li><span class="dfn-paneled" id="7393da89">same origin</span> <li><span class="dfn-paneled" id="e7815a65">same-origin</span> <li><span class="dfn-paneled" id="7a899a17">sessionStorage</span> @@ -2037,6 +2039,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "4616c738": {"dfnID":"4616c738","dfnText":"credentials mode","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-request-credentials-mode"}],"title":"6.3.4. 'unsafe-credentials'"}],"url":"https://fetch.spec.whatwg.org#concept-request-credentials-mode"}, "47c17863": {"dfnID":"47c17863","dfnText":"origin header","external":true,"refSections":[{"refs":[{"id":"ref-for-origin-header"}],"title":"4.1. CORS"}],"url":"https://fetch.spec.whatwg.org#origin-header"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"},{"id":"ref-for-idl-boolean\u2460"}],"title":"4.2. postMessage"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, +"5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"}],"title":"3.7. Accessing the Suborigin in JavaScript"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "5b7e0424": {"dfnID":"5b7e0424","dfnText":"resource metadata management","external":true,"refSections":[{"refs":[{"id":"ref-for-resource-metadata-management"}],"title":"6.2.1. Cookies"}],"url":"http://www.w3.org/TR/html51/dom.html#resource-metadata-management"}, "5d346c26": {"dfnID":"5d346c26","dfnText":"ows","external":true,"refSections":[{"refs":[{"id":"ref-for-section-3.2.3"},{"id":"ref-for-section-3.2.3\u2460"}],"title":"3.5. The suborigin header"}],"url":"https://tools.ietf.org/html/rfc7230#section-3.2.3"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"}],"title":"4.2. postMessage"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, @@ -2523,6 +2526,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/#same-origin": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"same-origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/#same-origin"}, "https://html.spec.whatwg.org/multipage/#unicode-serialisation-of-an-origin": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"unicode serialization of an origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/#unicode-serialisation-of-an-origin"}, "https://html.spec.whatwg.org/multipage/browsers.html#same-origin": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"same origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#same-origin"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/comms.html#dom-messageport-postmessage": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"postmessage","type":"dfn","url":"https://html.spec.whatwg.org/multipage/comms.html#dom-messageport-postmessage"}, "https://html.spec.whatwg.org/multipage/comms.html#environment-settings-object": {"export":true,"for_":[],"level":"","normative":true,"shortname":"html","spec":"html","status":"anchor-block","text":"environment settings object","type":"dfn","url":"https://html.spec.whatwg.org/multipage/comms.html#environment-settings-object"}, "https://html.spec.whatwg.org/multipage/comms.html#messageeventsource": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"MessageEventSource","type":"typedef","url":"https://html.spec.whatwg.org/multipage/comms.html#messageeventsource"}, diff --git a/tests/github/w3c/webappsec-subresource-integrity/index.html b/tests/github/w3c/webappsec-subresource-integrity/index.html index 5ef6532d0c..3cb518fe70 100644 --- a/tests/github/w3c/webappsec-subresource-integrity/index.html +++ b/tests/github/w3c/webappsec-subresource-integrity/index.html @@ -5,7 +5,6 @@ <title>Subresource Integrity</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/SRI/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -596,7 +595,7 @@ <h1 class="p-name no-ref" id="title">Subresource Integrity</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -619,11 +618,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[SRI] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1102,20 +1101,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/w3c/webappsec-trusted-types/spec/index.console.txt b/tests/github/w3c/webappsec-trusted-types/spec/index.console.txt index 6681e2a0cb..17e9f6ba6f 100644 --- a/tests/github/w3c/webappsec-trusted-types/spec/index.console.txt +++ b/tests/github/w3c/webappsec-trusted-types/spec/index.console.txt @@ -19,6 +19,18 @@ LINE ~1160: No 'dfn' refs found for 'prepare a script'. [=prepare a script=] LINE ~1492: No 'dfn' refs found for 'context object' that are marked for export. [=context object=] +LINE 1635: Multiple possible 'elements' dfn refs for '['/']'. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-element +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:element +spec:css2; type:dfn; text:element +<a bs-line-number="1635" data-link-for="/" data-link-type="dfn" data-lt="elements">elements</a> +LINE 1649: Multiple possible 'element' dfn refs for '['/']'. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-element +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:element +spec:css2; type:dfn; text:element +<a bs-line-number="1649" data-link-for="/" data-link-type="dfn" data-lt="element">element</a> LINE ~1808: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] LINE ~1833: No 'dfn' refs found for 'global object' with for='['Realm']'. @@ -29,6 +41,14 @@ LINE ~220: Couldn't find section '#widl-Element-innerHTML' in spec 'dom-parsing' [[DOM-Parsing#widl-Element-innerHTML|Element.innerHTML]] LINE ~220: Couldn't find section '#widl-Element-outerHTML' in spec 'dom-parsing': [[DOM-Parsing#widl-Element-outerHTML|Element.outerHTML]] +LINE ~1023: Couldn't find section '#es-DOMString' in spec 'webidl': +[[webidl#es-DOMString]] +LINE ~1051: Couldn't find section '#es-DOMString' in spec 'webidl': +[[webidl#es-DOMString]] +LINE ~1071: Couldn't find section '#es-security' in spec 'webidl': +[[webidl#es-security]] +LINE ~1073: Couldn't find section '#es-type-mapping' in spec 'webidl': +[[webidl#es-type-mapping]] LINE ~1901: Couldn't find section '#realm' in spec 'ecmascript': [[ECMASCRIPT#realm|realms]] LINE ~1984: Couldn't find section '#initialize-document-csp' in spec 'csp3': diff --git a/tests/github/w3c/webappsec-trusted-types/spec/index.html b/tests/github/w3c/webappsec-trusted-types/spec/index.html index dabf522260..56f623576f 100644 --- a/tests/github/w3c/webappsec-trusted-types/spec/index.html +++ b/tests/github/w3c/webappsec-trusted-types/spec/index.html @@ -5,7 +5,6 @@ <title>Trusted Types</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-trusted-types/dist/spec/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -934,7 +933,7 @@ <h1 class="p-name no-ref" id="title">Trusted Types</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -956,11 +955,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[trusted-types] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1962,7 +1961,7 @@ <h3 class="heading settled dfn-paneled idl-code" data-dfn-type="extended-attribu a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-regular-operation" id="ref-for-dfn-regular-operation①">regular operation</a> argument that the type annotated with the [<code class="idl"><a data-link-type="idl" href="#StringContext" id="ref-for-StringContext①②">StringContext</a></code>] extended attribute appears in is its <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="related-construct">related construct</dfn>.</p> <p>A type that is not <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString②④">DOMString</a></code> or <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-USVString" id="ref-for-idl-USVString④">USVString</a></code> must not be associated with the [<code class="idl"><a data-link-type="idl" href="#StringContext" id="ref-for-StringContext①③">StringContext</a></code>] extended attribute.</p> - <p>See the rules for converting ECMAScript values to the IDL types in <a href="https://webidl.spec.whatwg.org/#es-DOMString"><cite>Web IDL</cite> § 3.2.10 DOMString</a> for the specific requirements that the use of [<code class="idl"><a data-link-type="idl" href="#StringContext" id="ref-for-StringContext①④">StringContext</a></code>] entails.</p> + <p>See the rules for converting ECMAScript values to the IDL types in <span spec-section="#es-DOMString"></span> for the specific requirements that the use of [<code class="idl"><a data-link-type="idl" href="#StringContext" id="ref-for-StringContext①④">StringContext</a></code>] entails.</p> <div class="example" id="webidl-stringcontext-example"> <a class="self-link" href="#webidl-stringcontext-example"></a> <p>In the following <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-idl-fragment" id="ref-for-dfn-idl-fragment">IDL fragment</a>, @@ -1985,7 +1984,7 @@ <h4 class="heading settled" data-level="4.2.1" id="webidl-applicable-to-types">< [<code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#LegacyNullToEmptyString" id="ref-for-LegacyNullToEmptyString">LegacyNullToEmptyString</a></code>]. </p> <h4 class="heading settled" data-level="4.2.2" id="webidl-type-conversion"><span class="secno">4.2.2. </span><span class="content">Type conversion</span><a class="self-link" href="#webidl-type-conversion"></a></h4> - <p>This specification modifies the algorithm implementing the conversion to DOMString in <a href="https://webidl.spec.whatwg.org/#es-DOMString"><cite>Web IDL</cite> § 3.2.10 DOMString</a>:</p> + <p>This specification modifies the algorithm implementing the conversion to DOMString in <span spec-section="#es-DOMString"></span>:</p> <p>An ECMAScript value <var>V</var> is <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value" id="ref-for-dfn-convert-ecmascript-to-idl-value">converted</a> to an IDL <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString②⑤">DOMString</a></code> value by running the following algorithm:</p> <ol> <li data-md> @@ -2004,8 +2003,8 @@ <h4 class="heading settled" data-level="4.2.2" id="webidl-type-conversion"><span <p>Return the IDL <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString②⑦">DOMString</a></code> value that represents the same sequence of code units as the one the ECMAScript String value <var>x</var> represents.</p> </ol> <h4 class="heading settled" data-level="4.2.3" id="webidl-validate-the-string-in-context"><span class="secno">4.2.3. </span><span class="content">Validate the string in context</span><a class="self-link" href="#webidl-validate-the-string-in-context"></a></h4> - <p>This specification adds a following section to <a href="https://webidl.spec.whatwg.org/#es-security"><cite>Web IDL</cite> § 3.5 Security</a>.</p> - <p>Certain algorithms in <a href="https://webidl.spec.whatwg.org/#es-type-mapping"><cite>Web IDL</cite> § 3.2 ECMAScript type mapping</a> are defined to <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="dfn-validate-the-string-in-context">validate the string in context</dfn> on a given + <p>This specification adds a following section to <span spec-section="#es-security"></span>.</p> + <p>Certain algorithms in <span spec-section="#es-type-mapping"></span> are defined to <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="dfn-validate-the-string-in-context">validate the string in context</dfn> on a given value. This check is used to determine whether a given value is appropriate for its <code class="idl"><a data-link-type="idl" href="#StringContext" id="ref-for-StringContext②⓪">StringContext</a></code>. This validation takes the following four inputs:</p> <ol> @@ -2980,20 +2979,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> diff --git a/tests/github/w3c/webappsec-uisecurity/index.console.txt b/tests/github/w3c/webappsec-uisecurity/index.console.txt index b74adf5a2b..e636152beb 100644 --- a/tests/github/w3c/webappsec-uisecurity/index.console.txt +++ b/tests/github/w3c/webappsec-uisecurity/index.console.txt @@ -1,6 +1,5 @@ FATAL ERROR: Not all required metadata was provided: - Missing a 'TR' entry. - Must provide at least one 'Issue Tracking' entry. + Missing 'TR' LINT: Your document appears to use tabs to indent, but line 57 starts with spaces. LINT: Your document appears to use tabs to indent, but line 59 starts with spaces. LINT: Your document appears to use tabs to indent, but line 82 starts with spaces. diff --git a/tests/github/w3c/webappsec-uisecurity/index.html b/tests/github/w3c/webappsec-uisecurity/index.html index 3d7fda911a..8bb60c3c26 100644 --- a/tests/github/w3c/webappsec-uisecurity/index.html +++ b/tests/github/w3c/webappsec-uisecurity/index.html @@ -5,7 +5,6 @@ <title>User Interface Security and the Visibility API</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webappsec-uisecurity/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -717,7 +716,7 @@ <h1 class="p-name no-ref" id="title">User Interface Security and the Visibility </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -736,7 +735,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" current W3C publications and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> - <p> This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + <p> This document was published by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a> as a Working Draft using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. This document is intended to become a W3C Recommendation. </p> <p> The (<a href="https://lists.w3.org/Archives/Public/public-webappsec/">archived</a>) public mailing list <a href="mailto:public-webappsec@w3.org?Subject=%5BUI Security%5D%20PUT%20SUBJECT%20HERE">public-webappsec@w3.org</a> (see <a href="https://www.w3.org/Mail/Request">instructions</a>) is preferred for discussion of this specification. @@ -749,11 +748,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" document as other than work in progress. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1391,20 +1390,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1525,7 +1526,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-csp2">[CSP2] <dd>Mike West; Adam Barth; Daniel Veditz. <a href="https://www.w3.org/TR/CSP2/"><cite>Content Security Policy Level 2</cite></a>. 15 December 2016. REC. URL: <a href="https://www.w3.org/TR/CSP2/">https://www.w3.org/TR/CSP2/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] - <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. 3 November 2022. WD. URL: <a href="https://www.w3.org/TR/css-box-4/">https://www.w3.org/TR/css-box-4/</a> + <dd>Elika Etemad. <a href="https://www.w3.org/TR/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. 4 August 2024. WD. URL: <a href="https://www.w3.org/TR/css-box-4/">https://www.w3.org/TR/css-box-4/</a> <dt id="biblio-cssom-view-1">[CSSOM-VIEW-1] <dd>Simon Pieters. <a href="https://www.w3.org/TR/cssom-view-1/"><cite>CSSOM View Module</cite></a>. 17 March 2016. WD. URL: <a href="https://www.w3.org/TR/cssom-view-1/">https://www.w3.org/TR/cssom-view-1/</a> <dt id="biblio-dom">[DOM] diff --git a/tests/github/w3c/webappsec-upgrade-insecure-requests/index.console.txt b/tests/github/w3c/webappsec-upgrade-insecure-requests/index.console.txt index e69de29bb2..3b4b98b1c1 100644 --- a/tests/github/w3c/webappsec-upgrade-insecure-requests/index.console.txt +++ b/tests/github/w3c/webappsec-upgrade-insecure-requests/index.console.txt @@ -0,0 +1 @@ +WARNING: This specification does not have a 'Privacy Considerations' section. Please consider adding one, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3c/webappsec-upgrade-insecure-requests/index.html b/tests/github/w3c/webappsec-upgrade-insecure-requests/index.html index 47058aaabd..5665af0a6e 100644 --- a/tests/github/w3c/webappsec-upgrade-insecure-requests/index.html +++ b/tests/github/w3c/webappsec-upgrade-insecure-requests/index.html @@ -5,7 +5,6 @@ <title>Upgrade Insecure Requests</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://www.w3.org/TR/upgrade-insecure-requests/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -815,7 +814,7 @@ <h1>Upgrade Insecure Requests</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -839,11 +838,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[upgrade-insecure-requests] <em>…summary of comment…</em>” </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webappsec">Web Application Security Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/webappsec/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1688,7 +1687,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <details class="mdn-anno unpositioned" data-anno-for="delivery"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/upgrade-insecure-requests" title="The HTTP Content-Security-Policy (CSP) upgrade-insecure-requests directive instructs user agents to treat all of a site&apos;s insecure URLs (those served over HTTP) as though they have been replaced with secure URLs (those served over HTTPS). This directive is intended for web sites with large numbers of insecure legacy URLs that need to be rewritten.">Headers/Content-Security-Policy/upgrade-insecure-requests</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/upgrade-insecure-requests" title="The HTTP Content-Security-Policy (CSP) upgrade-insecure-requests directive instructs user agents to treat all of a site&apos;s insecure URLs (those served over HTTP) as though they have been replaced with secure URLs (those served over HTTPS). This directive is intended for websites with large numbers of insecure legacy URLs that need to be rewritten.">Headers/Content-Security-Policy/upgrade-insecure-requests</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>42+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> diff --git a/tests/github/w3c/webauthn/index.console.txt b/tests/github/w3c/webauthn/index.console.txt index 65615bab75..5981cd63b8 100644 --- a/tests/github/w3c/webauthn/index.console.txt +++ b/tests/github/w3c/webauthn/index.console.txt @@ -43,7 +43,8 @@ LINE ~3791: Ambiguous for-less link for 'type', please see <https://speced.githu Local references: spec:webauthn-2; type:dfn; for:public key credential source; text:type for-less references: -spec:webcryptoapi; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type +spec:vc-data-model-2.0; type:dfn; for:/; text:type [=type=] LINE ~4015: Ambiguous for-less link for 'grapheme cluster', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: diff --git a/tests/github/w3c/webauthn/index.html b/tests/github/w3c/webauthn/index.html index c294c481ba..3a604f16d4 100644 --- a/tests/github/w3c/webauthn/index.html +++ b/tests/github/w3c/webauthn/index.html @@ -1015,7 +1015,7 @@ <h1>Web Authentication:<br>An API for accessing Public Key Credentials<br>Level </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1045,7 +1045,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -8108,7 +8108,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-credential-management-1">[CREDENTIAL-MANAGEMENT-1] - <dd>Mike West. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> + <dd>Nina Satragno; Marcos Caceres. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> <dt id="biblio-css-color-3">[CSS-COLOR-3] <dd>Tantek Çelik; Chris Lilley; David Baron. <a href="https://drafts.csswg.org/css-color-3/"><cite>CSS Color Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-3/">https://drafts.csswg.org/css-color-3/</a> <dt id="biblio-dom4">[DOM4] @@ -8196,7 +8196,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-url">[URL] <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/"><cite>URL Standard</cite></a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a> <dt id="biblio-wcag21">[WCAG21] - <dd>Andrew Kirkpatrick; et al. <a href="https://w3c.github.io/wcag/21/guidelines/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/21/guidelines/">https://w3c.github.io/wcag/21/guidelines/</a> + <dd>Michael Cooper; et al. <a href="https://w3c.github.io/wcag/guidelines/22/"><cite>Web Content Accessibility Guidelines (WCAG) 2.1</cite></a>. URL: <a href="https://w3c.github.io/wcag/guidelines/22/">https://w3c.github.io/wcag/guidelines/22/</a> <dt id="biblio-webdriver">[WebDriver] <dd>Simon Stewart; David Burns. <a href="https://w3c.github.io/webdriver/"><cite>WebDriver</cite></a>. URL: <a href="https://w3c.github.io/webdriver/">https://w3c.github.io/webdriver/</a> <dt id="biblio-webidl">[WebIDL] @@ -8500,7 +8500,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-authenticatorassertionresponse-userhandle"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAssertionResponse/userHandle" title="The userHandle read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object which is an opaque identifier for the given user. Such an identifier can be used by the relying party&apos;s server to link the user account with its corresponding credentials and other data.">AuthenticatorAssertionResponse/userHandle</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAssertionResponse/userHandle" title="The userHandle read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object providing an opaque identifier for the given user. Such an identifier can be used by the relying party&apos;s server to link the user account with its corresponding credentials and other data.">AuthenticatorAssertionResponse/userHandle</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8516,7 +8516,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="iface-authenticatorassertionresponse"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAssertionResponse" title="The AuthenticatorAssertionResponse interface of the Web Authentication API is returned by CredentialsContainer.get() when a PublicKeyCredential is passed, and provides proof to a service that it has a key pair and that the authentication request is valid and approved.">AuthenticatorAssertionResponse</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAssertionResponse" title="The AuthenticatorAssertionResponse interface of the Web Authentication API contains a digital signature from the private key of a particular WebAuthn credential. The relying party&apos;s server can verify this signature to authenticate a user, for example when they sign in.">AuthenticatorAssertionResponse</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8548,7 +8548,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-authenticatorattestationresponse-gettransports"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse/getTransports" title="getTransports() is a method of the AuthenticatorAttestationResponse interface that returns an Array containing strings describing the different transports which may be used by the authenticator.">AuthenticatorAttestationResponse/getTransports</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse/getTransports" title="The getTransports() method of the AuthenticatorAttestationResponse interface returns an array of strings describing the different transports which may be used by the authenticator.">AuthenticatorAttestationResponse/getTransports</a></p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>16+</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> <hr> @@ -8563,7 +8563,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="authenticatorattestationresponse"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse" title="The AuthenticatorAttestationResponse interface of the Web Authentication API is returned by CredentialsContainer.create() when a PublicKeyCredential is passed, and provides a cryptographic root of trust for the new key pair that has been generated. This response should be sent to the relying party&apos;s server to complete the creation of the credential.">AuthenticatorAttestationResponse</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse" title="The AuthenticatorAttestationResponse interface of the Web Authentication API is the result of a WebAuthn credential registration. It contains information about the credential that the server needs to perform WebAuthn assertions, such as its credential ID and public key.">AuthenticatorAttestationResponse</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8579,7 +8579,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-authenticatorresponse-clientdatajson"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorResponse/clientDataJSON" title="The clientDataJSON property of the AuthenticatorResponse interface stores a JSON string in an ArrayBuffer, representing the client data that was passed to CredentialsContainer.create() or CredentialsContainer.get(). This property is only accessed on one of the child objects of AuthenticatorResponse, specifically AuthenticatorAttestationResponse or AuthenticatorAssertionResponse.">AuthenticatorResponse/clientDataJSON</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorResponse/clientDataJSON" title="The clientDataJSON property of the AuthenticatorResponse interface stores a JSON string in an ArrayBuffer, representing the client data that was passed to navigator.credentials.create() or navigator.credentials.get(). This property is only accessed on one of the child objects of AuthenticatorResponse, specifically AuthenticatorAttestationResponse or AuthenticatorAssertionResponse.">AuthenticatorResponse/clientDataJSON</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8611,7 +8611,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-publickeycredential-getclientextensionresults"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/getClientExtensionResults" title="getClientExtensionResults() is a method of the PublicKeyCredential interface that returns an ArrayBuffer which contains a map between the extensions identifiers and their results after having being processed by the client.">PublicKeyCredential/getClientExtensionResults</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/getClientExtensionResults" title="The getClientExtensionResults() method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.">PublicKeyCredential/getClientExtensionResults</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8627,7 +8627,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="dom-publickeycredential-isuserverifyingplatformauthenticatoravailable"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable" title="isUserVerifyingPlatformAuthenticatorAvailable() is a static method of the PublicKeyCredential interface that returns a Promise which resolves to true if a user-verifying platform authenticator is available.">PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static" title="The isUserVerifyingPlatformAuthenticatorAvailable() static method of the PublicKeyCredential interface returns a Promise which resolves to true if a user-verifying platform authenticator is present.">PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8675,7 +8675,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="iface-pkcredential"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential" title="The PublicKeyCredential interface provides information about a public key / private key pair, which is a credential for logging in to a service using an un-phishable and data-breach resistant asymmetric key pair instead of a password. It inherits from Credential, and was created by the Web Authentication API extension to the Credential Management API. Other interfaces that inherit from Credential are PasswordCredential and FederatedCredential.">PublicKeyCredential</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/PublicKeyCredential" title="The PublicKeyCredential interface provides information about a public key / private key pair, which is a credential for logging in to a service using an un-phishable and data-breach resistant asymmetric key pair instead of a password. It inherits from Credential, and is part of the Web Authentication API extension to the Credential Management API.">PublicKeyCredential</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>60+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>67+</span></span> @@ -8691,7 +8691,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <details class="mdn-anno unpositioned" data-anno-for="sctn-permissions-policy"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/publickey-credentials-get" title="The HTTP Feature-Policy header publickey-credentials-get directive controls whether the current document is allowed to access the Web Authentication API to retrieve public-key credentials; i.e., via navigator.credentials.get({publicKey: ..., ...}).">Headers/Feature-Policy/publickey-credentials-get</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/publickey-credentials-get" title="The HTTP Permissions-Policy header publickey-credentials-get directive controls whether the current document is allowed to access the Web Authentication API to retrieve public-key credentials, i.e., via navigator.credentials.get({publicKey}).">Headers/Feature-Policy/publickey-credentials-get</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>84+</span></span> @@ -8703,6 +8703,32 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/publickey-credentials-create" title="The HTTP Permissions-Policy header publickey-credentials-create directive controls whether the current document is allowed to use the Web Authentication API to create new WebAuthn credentials, i.e., via navigator.credentials.create({publicKey}).">Headers/Permissions-Policy/publickey-credentials-create</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink yes"><span>Edge</span><span>88+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/publickey-credentials-get" title="The HTTP Permissions-Policy header publickey-credentials-get directive controls whether the current document is allowed to access the Web Authentication API to retrieve public-key credentials, i.e., via navigator.credentials.get({publicKey}).">Headers/Permissions-Policy/publickey-credentials-get</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>None</span></span><span class="edge_blink yes"><span>Edge</span><span>88+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + </div> + </div> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; diff --git a/tests/github/w3c/webdriver-bidi/index.console.txt b/tests/github/w3c/webdriver-bidi/index.console.txt index 0094eeaed7..6111b6c655 100644 --- a/tests/github/w3c/webdriver-bidi/index.console.txt +++ b/tests/github/w3c/webdriver-bidi/index.console.txt @@ -1,9 +1,40 @@ +LINK ERROR: Obsolete biblio ref: [rfc4122] is replaced by [rfc9562]. Either update the reference, or use [rfc4122 obsolete] if this is an intentionally-obsolete reference. LINE ~338: No 'dfn' refs found for 'shared worker' that are marked for export. [=shared worker=] LINE ~632: No 'dfn' refs found for 'responsible document'. [=responsible document=] LINE ~636: No 'dfn' refs found for 'global object' with for='['Realm']'. [=Realm/global object=] +LINE ~800: Multiple possible 'element' dfn refs for '['/']'. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-element +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:element +spec:css2; type:dfn; text:element +[=/element=] +LINE ~1173: Multiple possible 'element' dfn refs for '['/']'. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-element +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:element +spec:css2; type:dfn; text:element +[=/Element=] +LINE ~1181: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +[=children=] +LINE ~1185: Multiple possible 'children' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-tree-child +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:children +spec:wai-aria-1.2; type:dfn; text:children +[=children=] +LINE ~1199: Multiple possible 'element' dfn refs for '['/']'. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-element +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:element +spec:css2; type:dfn; text:element +[=/Element=] LINE ~1711: No 'dfn' refs found for 'parent browsing context'. [=parent browsing context=] LINE ~1744: No 'dfn' refs found for 'child browsing contexts'. diff --git a/tests/github/w3c/webdriver-bidi/index.html b/tests/github/w3c/webdriver-bidi/index.html index a10fa7dc15..23fadeb606 100644 --- a/tests/github/w3c/webdriver-bidi/index.html +++ b/tests/github/w3c/webdriver-bidi/index.html @@ -5,8 +5,8 @@ <title>WebDriver BiDi</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webdriver-bidi/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -622,7 +622,7 @@ <h1 class="p-name no-ref" id="title">WebDriver BiDi</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -642,7 +642,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/32061/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20170801/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1092,7 +1092,7 @@ <h2 class="heading settled" data-level="4" id="transport"><span class="secno">4. <p>Let <var>session id</var> be the bytes in <var>resource name</var> following the "<code>/session/</code>" prefix.</p> <li data-md> - <p>If <var>session id</var> is not the string representation of a <a data-link-type="biblio" href="#biblio-rfc4122" title="A Universally Unique IDentifier (UUID) URN Namespace">UUID</a>, return null.</p> + <p>If <var>session id</var> is not the string representation of a <a data-link-type="biblio" href="#biblio-rfc4122" title="Universally Unique IDentifiers (UUIDs)">UUID</a>, return null.</p> <li data-md> <p>Return <var>session id</var>.</p> </ol> @@ -3237,7 +3237,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-rfc4122">[RFC4122] - <dd>P. Leach; M. Mealling; R. Salz. <a href="https://www.rfc-editor.org/rfc/rfc4122"><cite>A Universally Unique IDentifier (UUID) URN Namespace</cite></a>. July 2005. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc4122">https://www.rfc-editor.org/rfc/rfc4122</a> + <dd>K. Davis; B. Peabody; P. Leach. <a href="https://www.rfc-editor.org/rfc/rfc9562"><cite>Universally Unique IDentifiers (UUIDs)</cite></a>. May 2024. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9562">https://www.rfc-editor.org/rfc/rfc9562</a> <dt id="biblio-rfc6455">[RFC6455] <dd>I. Fette; A. Melnikov. <a href="https://www.rfc-editor.org/rfc/rfc6455"><cite>The WebSocket Protocol</cite></a>. December 2011. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc6455">https://www.rfc-editor.org/rfc/rfc6455</a> <dt id="biblio-rfc8610">[RFC8610] diff --git a/tests/github/w3c/webrtc-encoded-transform/index.console.txt b/tests/github/w3c/webrtc-encoded-transform/index.console.txt index 42f55e34ed..9cb4dfcc33 100644 --- a/tests/github/w3c/webrtc-encoded-transform/index.console.txt +++ b/tests/github/w3c/webrtc-encoded-transform/index.console.txt @@ -1,2 +1,4 @@ +LINE ~164: No 'dfn' refs found for 'signal abort' with for='['AbortSignal']'. +[=AbortSignal/signal abort=] LINE ~170: No 'dfn' refs found for 'aborted flag' with for='['AbortSignal']'. [=AbortSignal/aborted flag=] diff --git a/tests/github/w3c/webrtc-encoded-transform/index.html b/tests/github/w3c/webrtc-encoded-transform/index.html index 474feb1c80..fa8b229958 100644 --- a/tests/github/w3c/webrtc-encoded-transform/index.html +++ b/tests/github/w3c/webrtc-encoded-transform/index.html @@ -5,7 +5,6 @@ <title>WebRTC Encoded Transform</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3c.github.io/webrtc-encoded-transform/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -711,7 +710,7 @@ <h1 class="p-name no-ref" id="title">WebRTC Encoded Transform</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -732,11 +731,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -793,7 +792,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> </nav> <main> <h2 class="heading settled" data-level="1" id="introduction"><span class="secno">1. </span><span class="content">Introduction</span><a class="self-link" href="#introduction"></a></h2> - <p>The <a data-link-type="biblio" href="#biblio-webrtc-nv-use-cases" title="WebRTC Next Version Use Cases">[WEBRTC-NV-USE-CASES]</a> document describes several functions that + <p>The <a data-link-type="biblio" href="#biblio-webrtc-nv-use-cases" title="WebRTC Extended Use Cases">[WEBRTC-NV-USE-CASES]</a> document describes several functions that can only be achieved by access to media (requirements N20-N22), including, but not limited to:</p> <ul> @@ -960,7 +959,7 @@ <h3 class="heading settled" data-level="3.2" id="attribute"><span class="secno"> <li data-md> <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-add" id="ref-for-abortsignal-add">Add</a> the <a data-link-type="dfn" href="#chain-transform-algorithm" id="ref-for-chain-transform-algorithm">chain transform algorithm</a> to <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑥">this</a>.<code>[[pipeToController]]</code>.signal.</p> <li data-md> - <p><a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort">signal abort</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑦">this</a>.<code>[[pipeToController]]</code>.signal.</p> + <p><a data-link-type="dfn">signal abort</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑦">this</a>.<code>[[pipeToController]]</code>.signal.</p> </ol> <li data-md> <p>Else, run the <a data-link-type="dfn" href="#chain-transform-algorithm" id="ref-for-chain-transform-algorithm①">chain transform algorithm</a> steps.</p> @@ -1239,20 +1238,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1364,7 +1365,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="129bdae8">Event</span> <li><span class="dfn-paneled" id="87bc23a5">add</span> <li><span class="dfn-paneled" id="8abfc3b6">creating an event</span> - <li><span class="dfn-paneled" id="790f0b49">signal abort</span> </ul> <li> <a data-link-type="biblio">[HTML]</a> defines the following terms: @@ -1461,7 +1461,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> @@ -1470,7 +1470,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-webrtc-identity">[WEBRTC-IDENTITY] <dd>Cullen Jennings; Martin Thomson. <a href="https://w3c.github.io/webrtc-identity/"><cite>Identity for WebRTC 1.0</cite></a>. URL: <a href="https://w3c.github.io/webrtc-identity/">https://w3c.github.io/webrtc-identity/</a> <dt id="biblio-webrtc-nv-use-cases">[WEBRTC-NV-USE-CASES] - <dd>Bernard Aboba. <a href="https://w3c.github.io/webrtc-nv-use-cases/"><cite>WebRTC Next Version Use Cases</cite></a>. URL: <a href="https://w3c.github.io/webrtc-nv-use-cases/">https://w3c.github.io/webrtc-nv-use-cases/</a> + <dd>Bernard Aboba. <a href="https://w3c.github.io/webrtc-nv-use-cases/"><cite>WebRTC Extended Use Cases</cite></a>. URL: <a href="https://w3c.github.io/webrtc-nv-use-cases/">https://w3c.github.io/webrtc-nv-use-cases/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">// New dictionary @@ -1801,7 +1801,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "5fc623fc": {"dfnID":"5fc623fc","dfnText":"CryptoKey","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-CryptoKey"}],"title":"4. SFrameTransform"}],"url":"https://w3c.github.io/webcrypto/#dfn-CryptoKey"}, "6b6bb798": {"dfnID":"6b6bb798","dfnText":"enqueue","external":true,"refSections":[{"refs":[{"id":"ref-for-readablestream-enqueue"}],"title":"3.1.2. Stream processing"},{"refs":[{"id":"ref-for-readablestream-enqueue\u2460"}],"title":"4.1. Algorithm"}],"url":"https://streams.spec.whatwg.org/#readablestream-enqueue"}, "6c6b1005": {"dfnID":"6c6b1005","dfnText":"any","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-any"},{"id":"ref-for-idl-any\u2460"}],"title":"5. RTCRtpScriptTransform"}],"url":"https://webidl.spec.whatwg.org/#idl-any"}, -"790f0b49": {"dfnID":"790f0b49","dfnText":"signal abort","external":true,"refSections":[{"refs":[{"id":"ref-for-abortsignal-signal-abort"}],"title":"3.2. Extension attribute"}],"url":"https://dom.spec.whatwg.org/#abortsignal-signal-abort"}, "7c983b6d": {"dfnID":"7c983b6d","dfnText":"RTCPeerConnection","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-rtcpeerconnection"}],"title":"Unnumbered Section"},{"refs":[{"id":"ref-for-dom-rtcpeerconnection\u2460"}],"title":"3. Specification"},{"refs":[{"id":"ref-for-dom-rtcpeerconnection\u2461"}],"title":"3.1. Extension operation"},{"refs":[{"id":"ref-for-dom-rtcpeerconnection\u2462"},{"id":"ref-for-dom-rtcpeerconnection\u2463"}],"title":"3.1.1. Stream creation"}],"url":"https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection"}, "87bc23a5": {"dfnID":"87bc23a5","dfnText":"add","external":true,"refSections":[{"refs":[{"id":"ref-for-abortsignal-add"}],"title":"3.2. Extension attribute"}],"url":"https://dom.spec.whatwg.org/#abortsignal-add"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"4. SFrameTransform"},{"refs":[{"id":"ref-for-Exposed\u2460"},{"id":"ref-for-Exposed\u2461"},{"id":"ref-for-Exposed\u2462"},{"id":"ref-for-Exposed\u2463"},{"id":"ref-for-Exposed\u2464"}],"title":"5. RTCRtpScriptTransform"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, @@ -2323,7 +2322,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#writeencodeddata": {"export":true,"for_":[],"level":"","normative":true,"shortname":"webrtc-encoded-transform","spec":"webrtc-encoded-transform","status":"local","text":"writeencodeddata","type":"dfn","url":"#writeencodeddata"}, "https://dom.spec.whatwg.org/#abortcontroller": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"AbortController","type":"interface","url":"https://dom.spec.whatwg.org/#abortcontroller"}, "https://dom.spec.whatwg.org/#abortsignal-add": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"add","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-add"}, -"https://dom.spec.whatwg.org/#abortsignal-signal-abort": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"signal abort","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-signal-abort"}, "https://dom.spec.whatwg.org/#concept-event-create": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"creating an event","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-event-create"}, "https://dom.spec.whatwg.org/#event": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"Event","type":"interface","url":"https://dom.spec.whatwg.org/#event"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, diff --git a/tests/github/w3c/webrtc-priority/index.html b/tests/github/w3c/webrtc-priority/index.html index e406c6f304..a746a86f52 100644 --- a/tests/github/w3c/webrtc-priority/index.html +++ b/tests/github/w3c/webrtc-priority/index.html @@ -5,7 +5,6 @@ <title>WebRTC Priority Control API</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/webrtc-priority/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -711,7 +710,7 @@ <h1 class="p-name no-ref" id="title">WebRTC Priority Control API</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -734,11 +733,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" All comments are welcome. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webrtc">Web Real-Time Communications Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/47318/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -785,7 +784,7 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <h2 class="heading settled" data-level="1" id="intro"><span class="secno">1. </span><span class="content">Introduction</span><a class="self-link" href="#intro"></a></h2> <p>This document defines a "priority" field as part of the WEBRTC <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters" id="ref-for-dom-rtcrtpencodingparameters">RTCRtpEncodingParameters</a></code> structure, with the possible values "very-low", "low", "medium" and "high".</p> - <p>This feature was originally part of the <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC 1.0: Real-Time Communication Between Browsers">[WEBRTC]</a> specification, but was + <p>This feature was originally part of the <a data-link-type="biblio" href="#biblio-webrtc" title="WebRTC: Real-Time Communication in Browsers">[WEBRTC]</a> specification, but was removed in November 2019 due to lack of implementation experience. It is now part of this document.</p> <p>In addition, this specification adds fields to <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters" id="ref-for-dom-rtcrtpencodingparameters①">RTCRtpEncodingParameters</a></code> that allow control over the DSCP markings without affecting local @@ -951,20 +950,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1012,7 +1013,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc8837">[RFC8837] <dd>P. Jones; et al. <a href="https://www.rfc-editor.org/rfc/rfc8837"><cite>Differentiated Services Code Point (DSCP) Packet Markings for WebRTC QoS</cite></a>. January 2021. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc8837">https://www.rfc-editor.org/rfc/rfc8837</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def"><c- b>enum</c-> <a href="#enumdef-rtcprioritytype"><code><c- g>RTCPriorityType</c-></code></a> { diff --git a/tests/github/w3c/webtransport/index.console.txt b/tests/github/w3c/webtransport/index.console.txt index 3c402f843a..358caf593b 100644 --- a/tests/github/w3c/webtransport/index.console.txt +++ b/tests/github/w3c/webtransport/index.console.txt @@ -3,6 +3,7 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event [=event=] LINE ~133: Multiple possible 'dfn' local refs for 'create'. Randomly chose one of them; other instances might get a different random choice. @@ -13,6 +14,8 @@ LINE ~560: No 'dfn' refs found for 'writealgorithm' with for='['WritableStream/c [=WritableStream/create/writeAlgorithm=] LINE 563: No 'dfn' refs found for 'creating' with for='['ReadableStream']'. <a bs-line-number="563" data-link-type="dfn" data-link-for="ReadableStream" data-lt="creating">creating</a> +LINE ~589: No 'dfn' refs found for 'http3only'. +[=obtain a connection/http3Only=] LINE ~589: No 'dfn' refs found for 'dedicated'. [=obtain a connection/dedicated=] WARNING: The following locally-defined biblio entries are unused and can be removed: diff --git a/tests/github/w3c/webtransport/index.html b/tests/github/w3c/webtransport/index.html index 8f2d1cce26..96911aed4f 100644 --- a/tests/github/w3c/webtransport/index.html +++ b/tests/github/w3c/webtransport/index.html @@ -3,9 +3,8 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>WebTransport</title> - <meta content="w3c/ED" name="w3c-status"> + <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://github.com/w3c/webtransport" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -757,7 +756,7 @@ <h1 class="p-name no-ref" id="title">WebTransport</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -776,11 +775,11 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" <p> Feedback and comments on this document are welcome. Please <a href="https://github.com/w3c/webtransport/issues">file an issue</a> in this document’s <a href="https://github.com/w3c/webtransport/">GitHub repository</a>. </p> <p> This document was produced by the <a href="https://www.w3.org/groups/wg/webtransport">WebTransport Working Group</a>. </p> <p> This document was produced by a group operating under - the <a href="https://www.w3.org/Consortium/Patent-Policy/">W3C Patent Policy</a>. + the <a href="https://www.w3.org/policies/patent-policy/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/2004/01/pp-impl/125908/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. - An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> - <p> This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> + An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/policies/patent-policy/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> @@ -1425,7 +1424,7 @@ <h3 class="heading settled" data-level="8.2" id="webtransport-constructor"><span <li data-md> <p>Return <var>promise</var> and run the following steps <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel" id="ref-for-in-parallel②">in parallel</a>.</p> <li data-md> - <p>Let <var>connection</var> be the result of <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-connection-obtain" id="ref-for-concept-connection-obtain">obtaining a connection</a> with <var>networkPartitionKey</var>, <var>url</var>’s <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-origin" id="ref-for-concept-url-origin">origin</a>, false, <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#obtain-a-connection-http3only" id="ref-for-obtain-a-connection-http3only">http3Only</a> set to + <p>Let <var>connection</var> be the result of <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-connection-obtain" id="ref-for-concept-connection-obtain">obtaining a connection</a> with <var>networkPartitionKey</var>, <var>url</var>’s <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-origin" id="ref-for-concept-url-origin">origin</a>, false, <a data-link-type="dfn">http3Only</a> set to true, and <a data-link-type="dfn">dedicated</a> set to <var>dedicated</var>.</p> <li data-md> <p>If <var>connection</var> is failure, then reject <var>promise</var> with a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#exceptiondef-typeerror" id="ref-for-exceptiondef-typeerror②">TypeError</a></code> and abort these steps.</p> @@ -2303,7 +2302,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="697965b2">connection</span> <li><span class="dfn-paneled" id="86ba8c0f">determine the network partition key</span> <li><span class="dfn-paneled" id="a33db89a">fetch</span> - <li><span class="dfn-paneled" id="d09d0dcd">http3only</span> <li><span class="dfn-paneled" id="8e1fb11c">obtain a connection</span> </ul> <li> @@ -2420,7 +2418,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> <dt id="biblio-whatwg-streams">[WHATWG-STREAMS] <dd>Adam Rice; et al. <a href="https://streams.spec.whatwg.org/"><cite>Streams Standard</cite></a>. Living Standard. URL: <a href="https://streams.spec.whatwg.org/">https://streams.spec.whatwg.org/</a> </dl> @@ -2792,7 +2790,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "ccfe986b": {"dfnID":"ccfe986b","dfnText":"ErrorEvent","external":true,"refSections":[{"refs":[{"id":"ref-for-errorevent"}],"title":"3. Terminology"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#errorevent"}, "compute-a-certificate-fingerprint": {"dfnID":"compute-a-certificate-fingerprint","dfnText":"compute a certificate fingerprint","external":false,"refSections":[{"refs":[{"id":"ref-for-compute-a-certificate-fingerprint"}],"title":"8.5. Configuration"}],"url":"#compute-a-certificate-fingerprint"}, "custom-certificate-requirements": {"dfnID":"custom-certificate-requirements","dfnText":"custom certificate requirements","external":false,"refSections":[{"refs":[{"id":"ref-for-custom-certificate-requirements"}],"title":"8.5. Configuration"}],"url":"#custom-certificate-requirements"}, -"d09d0dcd": {"dfnID":"d09d0dcd","dfnText":"http3only","external":true,"refSections":[{"refs":[{"id":"ref-for-obtain-a-connection-http3only"}],"title":"8.2. Constructor"}],"url":"https://fetch.spec.whatwg.org/#obtain-a-connection-http3only"}, "d0b4a948": {"dfnID":"d0b4a948","dfnText":"a promise rejected with","external":true,"refSections":[{"refs":[{"id":"ref-for-a-promise-rejected-with"}],"title":"6.2. Procedures"}],"url":"https://webidl.spec.whatwg.org/#a-promise-rejected-with"}, "datagramduplexstream": {"dfnID":"datagramduplexstream","dfnText":"DatagramDuplexStream","external":false,"refSections":[{"refs":[{"id":"ref-for-datagramduplexstream"}],"title":"6. DatagramTransport Mixin"},{"refs":[{"id":"ref-for-datagramduplexstream\u2460"}],"title":"6.1. Attributes"},{"refs":[{"id":"ref-for-datagramduplexstream\u2461"},{"id":"ref-for-datagramduplexstream\u2462"},{"id":"ref-for-datagramduplexstream\u2463"}],"title":"7. DatagramDuplexStream Interface"},{"refs":[{"id":"ref-for-datagramduplexstream\u2464"}],"title":"8.1. Internal slots"},{"refs":[{"id":"ref-for-datagramduplexstream\u2465"}],"title":"8.2. Constructor"}],"url":"#datagramduplexstream"}, "datagramduplexstream-create": {"dfnID":"datagramduplexstream-create","dfnText":"create","external":false,"refSections":[{"refs":[{"id":"ref-for-datagramduplexstream-create"}],"title":"8.2. Constructor"}],"url":"#datagramduplexstream-create"}, @@ -3357,7 +3354,6 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://fetch.spec.whatwg.org/#concept-connection-obtain": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"obtain a connection","type":"dfn","url":"https://fetch.spec.whatwg.org/#concept-connection-obtain"}, "https://fetch.spec.whatwg.org/#concept-fetch": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"fetch","type":"dfn","url":"https://fetch.spec.whatwg.org/#concept-fetch"}, "https://fetch.spec.whatwg.org/#determine-the-network-partition-key": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"determine the network partition key","type":"dfn","url":"https://fetch.spec.whatwg.org/#determine-the-network-partition-key"}, -"https://fetch.spec.whatwg.org/#obtain-a-connection-http3only": {"export":true,"for_":["obtain a connection"],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"http3only","type":"dfn","url":"https://fetch.spec.whatwg.org/#obtain-a-connection-http3only"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "https://html.spec.whatwg.org/multipage/webappapis.html#errorevent": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"ErrorEvent","type":"interface","url":"https://html.spec.whatwg.org/multipage/webappapis.html#errorevent"}, "https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"event handler event type","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-event-type"}, diff --git a/tests/github/w3c/webvtt/index.console.txt b/tests/github/w3c/webvtt/index.console.txt index 5e4f8a76c4..9845acd7cf 100644 --- a/tests/github/w3c/webvtt/index.console.txt +++ b/tests/github/w3c/webvtt/index.console.txt @@ -63,90 +63,24 @@ spec:css-align-3; type:value; for:justify-content; text:flex-end spec:css-align-3; type:value; for:align-content; text:flex-end spec:css-flexbox-1; type:value; text:flex-end ''justify-content/flex-end'' -LINE 4961: Multiple possible ':past' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#past-pseudo +LINE 5023: Multiple possible 'type selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#type-selector To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::past -spec:webvtt1; type:selector; text::past -'':past'' -LINE 4961: Multiple possible ':future' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#future-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::future -spec:webvtt1; type:selector; text::future -'':future'' +spec:selectors-4; type:dfn; text:type selector +spec:css2; type:dfn; text:type selector +<a bs-line-number="5023" data-link-type="dfn" data-lt="Type selector">Type selector</a> LINE 5132: Multiple possible ':lang()' maybe refs. Arbitrarily chose https://drafts.csswg.org/css2/#selectordef-lang To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css22; type:selector; text::lang() spec:selectors-4; type:selector; text::lang() '':lang()'' -LINE 5162: Multiple possible ':past' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#past-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::past -spec:webvtt1; type:selector; text::past -'':past'' -LINE 5162: Multiple possible ':future' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#future-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::future -spec:webvtt1; type:selector; text::future -'':future'' -LINE 5293: Multiple possible ':past' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#past-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::past -spec:webvtt1; type:selector; text::past -'':past'' -LINE 5293: Multiple possible ':future' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#future-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::future -spec:webvtt1; type:selector; text::future -'':future'' LINE 5418: Multiple possible ':lang()' maybe refs. Arbitrarily chose https://drafts.csswg.org/css2/#selectordef-lang To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css22; type:selector; text::lang() spec:selectors-4; type:selector; text::lang() '':lang()'' -LINE 5450: Multiple possible ':past' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#past-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::past -spec:webvtt1; type:selector; text::past -'':past'' -LINE 5450: Multiple possible ':future' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#future-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::future -spec:webvtt1; type:selector; text::future -'':future'' -LINE 5471: Multiple possible ':past' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#past-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::past -spec:webvtt1; type:selector; text::past -'':past'' -LINE 5471: Multiple possible ':future' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#future-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::future -spec:webvtt1; type:selector; text::future -'':future'' -LINE 5473: Multiple possible ':past' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#past-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::past -spec:webvtt1; type:selector; text::past -'':past'' -LINE 5473: Multiple possible ':future' maybe refs. -Arbitrarily chose https://drafts.csswg.org/selectors-4/#future-pseudo -To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: -spec:selectors-4; type:selector; text::future -spec:webvtt1; type:selector; text::future -'':future'' LINE 5910: No 'dfn' refs found for 'responsible document'. <a bs-line-number="5910" data-link-type="dfn" data-lt="responsible document">responsible document</a> LINE 6181: W3C policy requires Privacy Considerations and Security Considerations to be separate sections, but you appear to have them combined into one. diff --git a/tests/github/w3c/webvtt/index.html b/tests/github/w3c/webvtt/index.html index 29fea4555a..6ace9a121c 100644 --- a/tests/github/w3c/webvtt/index.html +++ b/tests/github/w3c/webvtt/index.html @@ -773,7 +773,7 @@ <h1 class="p-name no-ref" id="title">WebVTT: The Web Video Text Tracks Format</h </dl> </div> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 2011-1970 the Contributors to the WebVTT: The Web Video Text Tracks Format Specification, published by the <a href="http://www.w3.org/community/texttracks/">Web Media Text Tracks Community Group</a> under the <a href="https://www.w3.org/community/about/agreements/cla/">W3C Community Contributor License Agreement (CLA)</a>. A human-readable <a href="http://www.w3.org/community/about/agreements/cla-deed/">summary</a> is available. </p> @@ -2891,14 +2891,14 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT region settings par <p>Run the appropriate substeps that apply for the value of <var>name</var>, as follows:</p> <dl> <dt> - <p>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive">case-sensitive</a> match for "<code>id</code>"</p> + <p>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive">case-sensitive</a> match for "<code>id</code>"</p> <dd> <p>Let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-identifier" id="ref-for-webvtt-region-identifier②">identifier</a> be <var>value</var>.</p> <dt> - <p>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①">case-sensitive</a> match for "<code>width</code>"</p> + <p>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①">case-sensitive</a> match for "<code>width</code>"</p> <dd> <p>If <a data-link-type="dfn" href="#parse-a-percentage-string" id="ref-for-parse-a-percentage-string">parse a percentage string</a> from <var>value</var> returns a <var>percentage</var>, let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-width" id="ref-for-webvtt-region-width①">WebVTT region width</a> be <var>percentage</var>.</p> - <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②">case-sensitive</a> match for "<code>lines</code>" + <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②">case-sensitive</a> match for "<code>lines</code>" <dd> <ol> <li> @@ -2909,7 +2909,7 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT region settings par <li> <p>Let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-lines" id="ref-for-webvtt-region-lines①">WebVTT region lines</a> be <var>number</var>.</p> </ol> - <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive③">case-sensitive</a> match for "<code>regionanchor</code>" + <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive③">case-sensitive</a> match for "<code>regionanchor</code>" <dd> <ol> <li> @@ -2928,7 +2928,7 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT region settings par <p>Let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-anchor" id="ref-for-webvtt-region-anchor①">WebVTT region anchor point</a> be the tuple of the <var>percentage</var> values calculated from <var>anchorX</var> and <var>anchorY</var>.</p> </ol> - <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive④">case-sensitive</a> match for "<code>viewportanchor</code>" + <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive④">case-sensitive</a> match for "<code>viewportanchor</code>" <dd> <ol> <li> @@ -2947,11 +2947,11 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT region settings par <p>Let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-viewport-anchor" id="ref-for-webvtt-region-viewport-anchor①">WebVTT region viewport anchor point</a> be the tuple of the <var>percentage</var> values calculated from <var>viewportanchorX</var> and <var>viewportanchorY</var>.</p> </ol> - <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive⑤">case-sensitive</a> match for "<code>scroll</code>" + <dt>Otherwise if <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive⑤">case-sensitive</a> match for "<code>scroll</code>" <dd> <ol> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive⑥">case-sensitive</a> match for the string "<code>up</code>", then let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-scroll" id="ref-for-webvtt-region-scroll①">scroll value</a> be <a data-link-type="dfn" href="#webvtt-region-scroll-up" id="ref-for-webvtt-region-scroll-up">up</a>.</p> + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive⑥">case-sensitive</a> match for the string "<code>up</code>", then let <var>region</var>’s <a data-link-type="dfn" href="#webvtt-region-scroll" id="ref-for-webvtt-region-scroll①">scroll value</a> be <a data-link-type="dfn" href="#webvtt-region-scroll-up" id="ref-for-webvtt-region-scroll-up">up</a>.</p> </ol> </dl> <li><i>Next setting</i>: Continue to the next setting, if any. @@ -3034,25 +3034,25 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT cue timings and set <li> <p>Run the appropriate substeps that apply for the value of <var>name</var>, as follows:</p> <dl> - <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive⑦">case-sensitive</a> match for "<code>region</code>" + <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive⑦">case-sensitive</a> match for "<code>region</code>" <dd> <ol> <li> <p>Let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-region" id="ref-for-webvtt-cue-region②">WebVTT cue region</a> be the last <a data-link-type="dfn" href="#webvtt-region" id="ref-for-webvtt-region①⓪">WebVTT region</a> in <var>regions</var> whose <a data-link-type="dfn" href="#webvtt-region-identifier" id="ref-for-webvtt-region-identifier③">WebVTT region identifier</a> is <var>value</var>, if any, or null otherwise.</p> </ol> - <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive⑧">case-sensitive</a> match for "<code>vertical</code>" + <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive⑧">case-sensitive</a> match for "<code>vertical</code>" <dd> <ol> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive⑨">case-sensitive</a> match for the string "<code>rl</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-writing-direction" id="ref-for-webvtt-cue-writing-direction①③">WebVTT cue writing direction</a> be <a data-link-type="dfn" href="#webvtt-cue-vertical-growing-left-writing-direction" id="ref-for-webvtt-cue-vertical-growing-left-writing-direction③">vertical growing left</a>.</p> + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive⑨">case-sensitive</a> match for the string "<code>rl</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-writing-direction" id="ref-for-webvtt-cue-writing-direction①③">WebVTT cue writing direction</a> be <a data-link-type="dfn" href="#webvtt-cue-vertical-growing-left-writing-direction" id="ref-for-webvtt-cue-vertical-growing-left-writing-direction③">vertical growing left</a>.</p> <li> - <p>Otherwise, if <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①⓪">case-sensitive</a> match for the string + <p>Otherwise, if <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①⓪">case-sensitive</a> match for the string "<code>lr</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-writing-direction" id="ref-for-webvtt-cue-writing-direction①④">WebVTT cue writing direction</a> be <a data-link-type="dfn" href="#webvtt-cue-vertical-growing-right-writing-direction" id="ref-for-webvtt-cue-vertical-growing-right-writing-direction③">vertical growing right</a>.</p> <li> <p>If <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-writing-direction" id="ref-for-webvtt-cue-writing-direction①⑤">WebVTT cue writing direction</a> is not <a data-link-type="dfn" href="#webvtt-cue-horizontal-writing-direction" id="ref-for-webvtt-cue-horizontal-writing-direction①③">horizontal</a>, let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-region" id="ref-for-webvtt-cue-region③">WebVTT cue region</a> be null (there are no vertical regions).</p> </ol> - <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①①">case-sensitive</a> match for "<code>line</code>" + <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①①">case-sensitive</a> match for "<code>line</code>" <dd> <ol> <li> @@ -3098,13 +3098,13 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT cue timings and set </ol> </dl> <li> - <p>If <var>linealign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①②">case-sensitive</a> match for the string "<code>start</code>", + <p>If <var>linealign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①②">case-sensitive</a> match for the string "<code>start</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-line-alignment" id="ref-for-webvtt-cue-line-alignment⑥">WebVTT cue line alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-line-start-alignment" id="ref-for-webvtt-cue-line-start-alignment④">start alignment</a>.</p> <li> - <p>Otherwise, if <var>linealign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①③">case-sensitive</a> match for the string + <p>Otherwise, if <var>linealign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①③">case-sensitive</a> match for the string "<code>center</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-line-alignment" id="ref-for-webvtt-cue-line-alignment⑦">WebVTT cue line alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-line-center-alignment" id="ref-for-webvtt-cue-line-center-alignment①">center alignment</a>.</p> <li> - <p>Otherwise, if <var>linealign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①④">case-sensitive</a> match for the string + <p>Otherwise, if <var>linealign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①④">case-sensitive</a> match for the string "<code>end</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-line-alignment" id="ref-for-webvtt-cue-line-alignment⑧">WebVTT cue line alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-line-end-alignment" id="ref-for-webvtt-cue-line-end-alignment①">end alignment</a>.</p> <li> <p>Otherwise, if <var>linealign</var> is not null, then jump to the step labeled <i>next @@ -3118,7 +3118,7 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT cue timings and set let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-region" id="ref-for-webvtt-cue-region④">WebVTT cue region</a> be null (the cue has been explicitly positioned with a line offset and thus drops out of the region).</p> </ol> - <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①⑤">case-sensitive</a> match for "<code>position</code>" + <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①⑤">case-sensitive</a> match for "<code>position</code>" <dd> <ol> <li> @@ -3132,13 +3132,13 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT cue timings and set <p>If <a data-link-type="dfn" href="#parse-a-percentage-string" id="ref-for-parse-a-percentage-string⑥">parse a percentage string</a> from <var>colpos</var> doesn’t fail, let <var>number</var> be the returned <var>percentage</var>, otherwise jump to the step labeled <i>next setting</i> (<a data-link-type="dfn" href="#webvtt-cue-position" id="ref-for-webvtt-cue-position②⓪">position</a>’s value remains the special value <a data-link-type="dfn" href="#webvtt-cue-automatic-position" id="ref-for-webvtt-cue-automatic-position⑥">auto</a>).</p> <li> - <p>If <var>colalign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①⑥">case-sensitive</a> match for the string + <p>If <var>colalign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①⑥">case-sensitive</a> match for the string "<code>line-left</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-position-alignment" id="ref-for-webvtt-cue-position-alignment⑦">WebVTT cue position alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-position-line-left-alignment" id="ref-for-webvtt-cue-position-line-left-alignment⑤">line-left alignment</a>.</p> <li> - <p>Otherwise, if <var>colalign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①⑦">case-sensitive</a> match for the string + <p>Otherwise, if <var>colalign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①⑦">case-sensitive</a> match for the string "<code>center</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-position-alignment" id="ref-for-webvtt-cue-position-alignment⑧">WebVTT cue position alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-position-center-alignment" id="ref-for-webvtt-cue-position-center-alignment①">center alignment</a>.</p> <li> - <p>Otherwise, if <var>colalign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①⑧">case-sensitive</a> match for the string + <p>Otherwise, if <var>colalign</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①⑧">case-sensitive</a> match for the string "<code>line-right</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-position-alignment" id="ref-for-webvtt-cue-position-alignment⑨">WebVTT cue position alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-position-line-right-alignment" id="ref-for-webvtt-cue-position-line-right-alignment④">line-right alignment</a>.</p> <li> <p>Otherwise, if <var>colalign</var> is not null, then jump to the step labeled <i>next @@ -3146,7 +3146,7 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT cue timings and set <li> <p>Let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-position" id="ref-for-webvtt-cue-position②①">position</a> be <var>number</var>.</p> </ol> - <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive①⑨">case-sensitive</a> match for "<code>size</code>" + <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive①⑨">case-sensitive</a> match for "<code>size</code>" <dd> <ol> <li> @@ -3158,27 +3158,27 @@ <h3 class="heading settled algorithm" data-algorithm="WebVTT cue timings and set <p>If <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-size" id="ref-for-webvtt-cue-size⑧">WebVTT cue size</a> is not 100, let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-region" id="ref-for-webvtt-cue-region⑤">WebVTT cue region</a> be null (the cue has been explicitly sized and thus drops out of the region).</p> </ol> - <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②⓪">case-sensitive</a> match for "<code>align</code>" + <dt>If <var>name</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②⓪">case-sensitive</a> match for "<code>align</code>" <dd> <ol> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②①">case-sensitive</a> match for the string "<code>start</code>", then + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②①">case-sensitive</a> match for the string "<code>start</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-text-alignment" id="ref-for-webvtt-cue-text-alignment①⑤">WebVTT cue text alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-start-alignment" id="ref-for-webvtt-cue-start-alignment⑥">start alignment</a>.</p> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②②">case-sensitive</a> match for the string "<code>center</code>", then + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②②">case-sensitive</a> match for the string "<code>center</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-text-alignment" id="ref-for-webvtt-cue-text-alignment①⑥">WebVTT cue text alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-center-alignment" id="ref-for-webvtt-cue-center-alignment⑤">center alignment</a>.</p> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②③">case-sensitive</a> match for the string "<code>end</code>", then + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②③">case-sensitive</a> match for the string "<code>end</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-text-alignment" id="ref-for-webvtt-cue-text-alignment①⑦">WebVTT cue text alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-end-alignment" id="ref-for-webvtt-cue-end-alignment⑤">end alignment</a>.</p> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②④">case-sensitive</a> match for the string "<code>left</code>", then + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②④">case-sensitive</a> match for the string "<code>left</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-text-alignment" id="ref-for-webvtt-cue-text-alignment①⑧">WebVTT cue text alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-left-alignment" id="ref-for-webvtt-cue-left-alignment④">left alignment</a>.</p> <li> - <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②⑤">case-sensitive</a> match for the string "<code>right</code>", then + <p>If <var>value</var> is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②⑤">case-sensitive</a> match for the string "<code>right</code>", then let <var>cue</var>’s <a data-link-type="dfn" href="#webvtt-cue-text-alignment" id="ref-for-webvtt-cue-text-alignment①⑨">WebVTT cue text alignment</a> be <a data-link-type="dfn" href="#webvtt-cue-right-alignment" id="ref-for-webvtt-cue-right-alignment④">right alignment</a>.</p> </ol> @@ -3807,9 +3807,9 @@ <h3 class="heading settled algorithm" data-algorithm="Processing model" data-lev <p>Prepare some variables for the application of CSS properties to <var>regionNode</var> as follows:</p> <ul> <li> - <p>Let <var>regionWidth</var> be the <a data-link-type="dfn" href="#webvtt-region-width" id="ref-for-webvtt-region-width②">WebVTT region width</a>. Let <var>width</var> be <span class="css"><var>regionWidth</var> vw</span> (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vw" id="ref-for-valdef-length-vw">vw</a> is a CSS unit). <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a></p> + <p>Let <var>regionWidth</var> be the <a data-link-type="dfn" href="#webvtt-region-width" id="ref-for-webvtt-region-width②">WebVTT region width</a>. Let <var>width</var> be <span class="css"><var>regionWidth</var> vw</span> (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vw" id="ref-for-vw">vw</a> is a CSS unit). <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a></p> <li> - <p>Let <var>lineHeight</var> be <span class="css">6vh</span> (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vh" id="ref-for-valdef-length-vh">vh</a> is a CSS unit) <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a> and <var>regionHeight</var> be + <p>Let <var>lineHeight</var> be <span class="css">6vh</span> (<a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vh" id="ref-for-vh">vh</a> is a CSS unit) <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a> and <var>regionHeight</var> be the <a data-link-type="dfn" href="#webvtt-region-lines" id="ref-for-webvtt-region-lines②">WebVTT region lines</a>. Let <var>lines</var> be <var>lineHeight</var> multiplied by <var>regionHeight</var>.</p> <li> <p>Let <var>viewportAnchorX</var> be the x dimension of the <a data-link-type="dfn" href="#webvtt-region-anchor" id="ref-for-webvtt-region-anchor②">WebVTT region anchor</a> and <var>regionAnchorX</var> be the x dimension of the <a data-link-type="dfn" href="#webvtt-region-anchor" id="ref-for-webvtt-region-anchor③">WebVTT region anchor</a>. Let <var>leftOffset</var> be <var>regionAnchorX</var> multiplied by <var>width</var> divided by 100.0. Let <var>left</var> be <var>leftOffset</var> subtracted @@ -3939,7 +3939,7 @@ <h3 class="heading settled algorithm" data-algorithm="Processing cue settings" d size</a>. Otherwise, let <var>size</var> be <var>maximum size</var>.</p> <li> <p>If the <a data-link-type="dfn" href="#webvtt-cue-writing-direction" id="ref-for-webvtt-cue-writing-direction①⑨">WebVTT cue writing direction</a> is <a data-link-type="dfn" href="#webvtt-cue-horizontal-writing-direction" id="ref-for-webvtt-cue-horizontal-writing-direction①⑤">horizontal</a>, then let <var>width</var> be <span class="css"><var>size</var> vw</span> and <var>height</var> be <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto">auto</a>. Otherwise, let <var>width</var> be <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-width-auto" id="ref-for-valdef-width-auto①">auto</a> and <var>height</var> be <span class="css"><var>size</var> vh</span>. - (These are CSS values used by the next section to set CSS properties for the rendering; <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vw" id="ref-for-valdef-length-vw①">vw</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vh" id="ref-for-valdef-length-vh①">vh</a> are CSS units.) <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a></p> + (These are CSS values used by the next section to set CSS properties for the rendering; <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vw" id="ref-for-vw①">vw</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vh" id="ref-for-vh①">vh</a> are CSS units.) <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a></p> <li> <p>Determine the value of <var>x-position</var> or <var>y-position</var> for <var>cue</var> as per the appropriate rules from the following list:</p> @@ -4001,7 +4001,7 @@ <h3 class="heading settled algorithm" data-algorithm="Processing cue settings" d calculate box dimensions below.</p> <li> <p>Let <var>left</var> be <span class="css"><var>x-position</var> vw</span> and <var>top</var> be <span class="css"><var>y-position</var> vh</span>. (These are - CSS values used by the next section to set CSS properties for the rendering; <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vw" id="ref-for-valdef-length-vw②">vw</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#valdef-length-vh" id="ref-for-valdef-length-vh②">vh</a> are + CSS values used by the next section to set CSS properties for the rendering; <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vw" id="ref-for-vw②">vw</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-values-4/#vh" id="ref-for-vh②">vh</a> are CSS units.) <a data-link-type="biblio" href="#biblio-css-values" title="CSS Values and Units Module Level 3">[CSS-VALUES]</a></p> <li> <p><a data-link-type="dfn" href="#obtain-a-set-of-css-boxes" id="ref-for-obtain-a-set-of-css-boxes①">Obtain a set of CSS boxes</a> <var>boxes</var> positioned relative to an initial containing @@ -4210,7 +4210,7 @@ <h3 class="heading settled algorithm" data-algorithm="Applying CSS properties to <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-width" id="ref-for-propdef-width">width</a> property must be set to <var>width</var> <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height">height</a> property must be set to <var>height</var> <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-overflow-wrap" id="ref-for-propdef-overflow-wrap">overflow-wrap</a> property must be set to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-overflow-wrap-break-word" id="ref-for-valdef-overflow-wrap-break-word">break-word</a> - <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap" id="ref-for-propdef-text-wrap">text-wrap</a> property must be set to <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance" id="ref-for-valdef-text-wrap-balance">balance</a> <a data-link-type="biblio" href="#biblio-css-text-4" title="CSS Text Module Level 4">[CSS-TEXT-4]</a> + <li>the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-text-4/#propdef-text-wrap" id="ref-for-propdef-text-wrap">text-wrap</a> property must be set to <span class="css">balance</span> <a data-link-type="biblio" href="#biblio-css-text-4" title="CSS Text Module Level 4">[CSS-TEXT-4]</a> </ul> <p>The variables <var>writing-mode</var>, <var>top</var>, <var>left</var>, <var>width</var>, and <var>height</var> are the values with those names determined by the <a data-link-type="dfn" href="#rules-for-updating-the-display-of-webvtt-text-tracks" id="ref-for-rules-for-updating-the-display-of-webvtt-text-tracks④">rules for updating the display of WebVTT text tracks</a> for the <a data-link-type="dfn" href="#webvtt-cue" id="ref-for-webvtt-cue②⑦">WebVTT cue</a> from whose <a data-link-type="dfn" href="#cue-text" id="ref-for-cue-text①②">text</a> the <a data-link-type="dfn" href="#list-of-webvtt-node-objects" id="ref-for-list-of-webvtt-node-objects⑨">list of WebVTT Node Objects</a> was @@ -4895,7 +4895,7 @@ <h3 class="heading settled algorithm" data-algorithm="The VTTCue interface" data <td>"<code>lr</code>" </table> <p>On setting, the <a data-link-type="dfn" href="#webvtt-cue-writing-direction" id="ref-for-webvtt-cue-writing-direction③⑦">WebVTT cue writing direction</a> must be set to the value given in the first -cell of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②⑥">case-sensitive</a> match for the new +cell of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②⑥">case-sensitive</a> match for the new value.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="VTTCue" data-dfn-type="attribute" data-export id="dom-vttcue-snaptolines"><code>snapToLines</code></dfn> attribute, on getting, must return true if the <a data-link-type="dfn" href="#webvtt-cue-snap-to-lines-flag" id="ref-for-webvtt-cue-snap-to-lines-flag①⑤">WebVTT cue snap-to-lines flag</a> of the <a data-link-type="dfn" href="#webvtt-cue" id="ref-for-webvtt-cue③⑨">WebVTT cue</a> that the <code class="idl"><a data-link-type="idl" href="#vttcue" id="ref-for-vttcue⑥">VTTCue</a></code> object represents is true; or false otherwise. On setting, the <a data-link-type="dfn" href="#webvtt-cue-snap-to-lines-flag" id="ref-for-webvtt-cue-snap-to-lines-flag①⑥">WebVTT cue snap-to-lines flag</a> must be set to the @@ -4926,7 +4926,7 @@ <h3 class="heading settled algorithm" data-algorithm="The VTTCue interface" data <td>"<code>end</code>" </table> <p>On setting, the <a data-link-type="dfn" href="#webvtt-cue-line-alignment" id="ref-for-webvtt-cue-line-alignment①⑦">WebVTT cue line alignment</a> must be set to the value given in the first cell -of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②⑦">case-sensitive</a> match for the new +of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②⑦">case-sensitive</a> match for the new value.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="VTTCue" data-dfn-type="attribute" data-export id="dom-vttcue-position"><code>position</code></dfn> attribute, on getting, must return the <a data-link-type="dfn" href="#webvtt-cue-position" id="ref-for-webvtt-cue-position②④">WebVTT cue position</a> of the <a data-link-type="dfn" href="#webvtt-cue" id="ref-for-webvtt-cue④②">WebVTT cue</a> that the <code class="idl"><a data-link-type="idl" href="#vttcue" id="ref-for-vttcue⑨">VTTCue</a></code> object represents. The special value <a data-link-type="dfn" href="#webvtt-cue-automatic-position" id="ref-for-webvtt-cue-automatic-position⑨">auto</a> must be represented as the string "<code>auto</code>". @@ -4956,7 +4956,7 @@ <h3 class="heading settled algorithm" data-algorithm="The VTTCue interface" data <td>"<code>auto</code>" </table> <p>On setting, the <a data-link-type="dfn" href="#webvtt-cue-position-alignment" id="ref-for-webvtt-cue-position-alignment①④">WebVTT cue position alignment</a> must be set to the value given in the first -cell of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②⑧">case-sensitive</a> match for the new +cell of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②⑧">case-sensitive</a> match for the new value.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="VTTCue" data-dfn-type="attribute" data-export id="dom-vttcue-size"><code>size</code></dfn> attribute, on getting, must return the <a data-link-type="dfn" href="#webvtt-cue-size" id="ref-for-webvtt-cue-size①③">WebVTT cue size</a> of the <a data-link-type="dfn" href="#webvtt-cue" id="ref-for-webvtt-cue④④">WebVTT cue</a> that the <code class="idl"><a data-link-type="idl" href="#vttcue" id="ref-for-vttcue①①">VTTCue</a></code> object represents. On setting, if the new @@ -4987,7 +4987,7 @@ <h3 class="heading settled algorithm" data-algorithm="The VTTCue interface" data <td>"<code>right</code>" </table> <p>On setting, the <a data-link-type="dfn" href="#webvtt-cue-text-alignment" id="ref-for-webvtt-cue-text-alignment②⑥">WebVTT cue text alignment</a> must be set to the value given in the first cell -of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive②⑨">case-sensitive</a> match for the new +of the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive②⑨">case-sensitive</a> match for the new value.</p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="VTTCue" data-dfn-type="attribute" data-export id="dom-vttcue-text"><code>text</code></dfn> attribute, on getting, must return the raw <a data-link-type="dfn" href="#cue-text" id="ref-for-cue-text①⑦">cue text</a> of the <a data-link-type="dfn" href="#webvtt-cue" id="ref-for-webvtt-cue④⑥">WebVTT cue</a> that the <code class="idl"><a data-link-type="idl" href="#vttcue" id="ref-for-vttcue①③">VTTCue</a></code> object represents. On setting, the <a data-link-type="dfn" href="#cue-text" id="ref-for-cue-text①⑧">cue @@ -5115,7 +5115,7 @@ <h3 class="heading settled algorithm" data-algorithm="The VTTRegion interface" d <td>"<code>up</code>" </table> <p>On setting, the <a data-link-type="dfn" href="#webvtt-region-scroll" id="ref-for-webvtt-region-scroll⑦">WebVTT region scroll</a> must be set to the value given on the first cell of -the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_case_sensitive" id="ref-for-def_case_sensitive③⓪">case-sensitive</a> match for the new value.</p> +the row in the table above whose second cell is a <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-case-sensitive" id="ref-for-dfn-case-sensitive③⓪">case-sensitive</a> match for the new value.</p> <h2 class="heading settled" data-level="10" id="iana"><span class="secno">10. </span><span class="content">IANA considerations</span><a class="self-link" href="#iana"></a></h2> <h3 class="heading settled" data-level="10.1" id="iana-text-vtt"><span class="secno">10.1. </span><span class="content"><dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="text-vtt"><code>text/vtt</code></dfn></span><a class="self-link" href="#iana-text-vtt"></a></h3> <p>This registration is for community review and will be submitted to the IESG for review, approval, @@ -5611,7 +5611,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-TEXT-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="eb350f76">balance</span> <li><span class="dfn-paneled" id="1d9d9f63">break-word</span> <li><span class="dfn-paneled" id="0e0ffe72">center</span> <li><span class="dfn-paneled" id="ed0402cf">end</span> @@ -5643,8 +5642,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[CSS-VALUES-4]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="6cf6b879">vh</span> - <li><span class="dfn-paneled" id="00d635ac">vw</span> + <li><span class="dfn-paneled" id="09444896">vh</span> + <li><span class="dfn-paneled" id="c117ac59">vw</span> </ul> <li> <a data-link-type="biblio">[CSS-WRITING-MODES-3]</a> defines the following terms: @@ -5713,7 +5712,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="e356ee85">class</span> <li><span class="dfn-paneled" id="49a64d88">html elements</span> <li><span class="dfn-paneled" id="de4e0705">i</span> - <li><span class="dfn-paneled" id="fefe9144">presentational hints</span> + <li><span class="dfn-paneled" id="8098256a">presentational hint</span> <li><span class="dfn-paneled" id="aa579b31">rt</span> <li><span class="dfn-paneled" id="bda23a47">ruby</span> <li><span class="dfn-paneled" id="f5468b1c">rules for parsing floating-point number values</span> @@ -5727,7 +5726,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="e5906a26">case-sensitive</span> + <li><span class="dfn-paneled" id="86c3e5ca">case-sensitive</span> </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: @@ -5781,25 +5780,25 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-bcp47">[BCP47] <dd>A. Phillips, Ed.; M. Davis, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc5646"><cite>Tags for Identifying Languages</cite></a>. September 2009. Best Current Practice. URL: <a href="https://www.rfc-editor.org/rfc/rfc5646">https://www.rfc-editor.org/rfc/rfc5646</a> <dt id="biblio-bidi">[BIDI] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-cascade-6">[CSS-CASCADE-6] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-6/"><cite>CSS Cascading and Inheritance Level 6</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-6/">https://drafts.csswg.org/css-cascade-6/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-overflow-3">[CSS-OVERFLOW-3] <dd>Elika Etemad; Florian Rivoal. <a href="https://drafts.csswg.org/css-overflow-3/"><cite>CSS Overflow Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-overflow-3/">https://drafts.csswg.org/css-overflow-3/</a> <dt id="biblio-css-position-3">[CSS-POSITION-3] @@ -6102,11 +6101,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "use strict"; { let dfnPanelData = { -"00d635ac": {"dfnID":"00d635ac","dfnText":"vw","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-length-vw"}],"title":"7.1. Processing model"},{"refs":[{"id":"ref-for-valdef-length-vw\u2460"},{"id":"ref-for-valdef-length-vw\u2461"}],"title":"7.2. Processing cue settings"}],"url":"https://drafts.csswg.org/css-values-4/#valdef-length-vw"}, "026d7801": {"dfnID":"026d7801","dfnText":"relative","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-position-relative"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-position-3/#valdef-position-relative"}, "039cdbe6": {"dfnID":"039cdbe6","dfnText":"split a string on spaces","external":true,"refSections":[{"refs":[{"id":"ref-for-split-a-string-on-spaces"}],"title":"6.2. WebVTT region settings parsing"},{"refs":[{"id":"ref-for-split-a-string-on-spaces\u2460"}],"title":"6.3. WebVTT cue timings and settings parsing"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#split-a-string-on-spaces"}, "05353767": {"dfnID":"05353767","dfnText":"italic","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-font-style-italic"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-fonts-4/#valdef-font-style-italic"}, "06f8d393": {"dfnID":"06f8d393","dfnText":"owner node","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-owner-node"}],"title":"6.1. WebVTT file parsing"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-owner-node"}, +"09444896": {"dfnID":"09444896","dfnText":"vh","external":true,"refSections":[{"refs":[{"id":"ref-for-vh"}],"title":"7.1. Processing model"},{"refs":[{"id":"ref-for-vh\u2460"},{"id":"ref-for-vh\u2461"}],"title":"7.2. Processing cue settings"}],"url":"https://drafts.csswg.org/css-values-4/#vh"}, "0e0ffe72": {"dfnID":"0e0ffe72","dfnText":"center","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-align-center"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-text-align-center"}, "0e5cedd7": {"dfnID":"0e5cedd7","dfnText":"auto","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-width-auto"},{"id":"ref-for-valdef-width-auto\u2460"}],"title":"7.2. Processing cue settings"},{"refs":[{"id":"ref-for-valdef-width-auto\u2461"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-sizing-3/#valdef-width-auto"}, "0e9419b9": {"dfnID":"0e9419b9","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"7.3. Obtaining CSS boxes"},{"refs":[{"id":"ref-for-propdef-display\u2461"},{"id":"ref-for-propdef-display\u2462"},{"id":"ref-for-propdef-display\u2463"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-display-3/#propdef-display"}, @@ -6164,7 +6163,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"},{"id":"ref-for-propdef-height\u2460"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, "6a952218": {"dfnID":"6a952218","dfnText":"text track cue identifier","external":true,"refSections":[{"refs":[{"id":"ref-for-text-track-cue-identifier"}],"title":"6.1. WebVTT file parsing"},{"refs":[{"id":"ref-for-text-track-cue-identifier\u2460"}],"title":"8.1. Introduction"},{"refs":[{"id":"ref-for-text-track-cue-identifier\u2461"}],"title":"8.2.1. The ::cue pseudo-element"},{"refs":[{"id":"ref-for-text-track-cue-identifier\u2462"}],"title":"9.1. The VTTCue interface"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#text-track-cue-identifier"}, "6b116b45": {"dfnID":"6b116b45","dfnText":"origin-clean flag","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-origin-clean-flag"}],"title":"6.1. WebVTT file parsing"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-origin-clean-flag"}, -"6cf6b879": {"dfnID":"6cf6b879","dfnText":"vh","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-length-vh"}],"title":"7.1. Processing model"},{"refs":[{"id":"ref-for-valdef-length-vh\u2460"},{"id":"ref-for-valdef-length-vh\u2461"}],"title":"7.2. Processing cue settings"}],"url":"https://drafts.csswg.org/css-values-4/#valdef-length-vh"}, "71b8488d": {"dfnID":"71b8488d","dfnText":"ruby-text","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-ruby-text"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-ruby-1/#valdef-display-ruby-text"}, "72a081a0": {"dfnID":"72a081a0","dfnText":"text-wrap","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-text-wrap"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-text-wrap"}, "73ea1d43": {"dfnID":"73ea1d43","dfnText":"color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-color"},{"id":"ref-for-propdef-color\u2460"}],"title":"5.1. Default text colors"},{"refs":[{"id":"ref-for-propdef-color\u2461"},{"id":"ref-for-propdef-color\u2462"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"},{"refs":[{"id":"ref-for-propdef-color\u2463"},{"id":"ref-for-propdef-color\u2464"}],"title":"8.2.1. The ::cue pseudo-element"}],"url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, @@ -6173,11 +6171,13 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "7d2a5d75": {"dfnID":"7d2a5d75","dfnText":"parent css style sheet","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-parent-css-style-sheet"}],"title":"6.1. WebVTT file parsing"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-parent-css-style-sheet"}, "7e107ca0": {"dfnID":"7e107ca0","dfnText":"alternate flag","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-css-style-sheet-alternate-flag"}],"title":"6.1. WebVTT file parsing"}],"url":"https://drafts.csswg.org/cssom-1/#concept-css-style-sheet-alternate-flag"}, "8064c0b8": {"dfnID":"8064c0b8","dfnText":"text track showing","external":true,"refSections":[{"refs":[{"id":"ref-for-text-track-showing"},{"id":"ref-for-text-track-showing\u2460"}],"title":"3.3. WebVTT caption or subtitle cues"},{"refs":[{"id":"ref-for-text-track-showing\u2461"}],"title":"7.1. Processing model"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#text-track-showing"}, +"8098256a": {"dfnID":"8098256a","dfnText":"presentational hint","external":true,"refSections":[{"refs":[{"id":"ref-for-presentational-hints"}],"title":"5.1. Default text colors"},{"refs":[{"id":"ref-for-presentational-hints\u2460"}],"title":"5.2. Default text background colors"}],"url":"https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints"}, "82066a7f": {"dfnID":"82066a7f","dfnText":"inline-flex","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline-flex"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-flexbox-1/#valdef-display-inline-flex"}, "82805a4e": {"dfnID":"82805a4e","dfnText":"originating element","external":true,"refSections":[{"refs":[{"id":"ref-for-originating-element"}],"title":"7.3. Obtaining CSS boxes"}],"url":"https://drafts.csswg.org/selectors-4/#originating-element"}, "847d4593": {"dfnID":"847d4593","dfnText":"transition-property","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transition-property"}],"title":"7.1. Processing model"}],"url":"https://drafts.csswg.org/css-transitions-1/#propdef-transition-property"}, "85394472": {"dfnID":"85394472","dfnText":"Document","external":true,"refSections":[{"refs":[{"id":"ref-for-document"}],"title":"6.5. WebVTT cue text DOM construction rules"}],"url":"https://dom.spec.whatwg.org/#document"}, "86928bde": {"dfnID":"86928bde","dfnText":"overflow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-overflow"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow"}, +"86c3e5ca": {"dfnID":"86c3e5ca","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-case-sensitive"},{"id":"ref-for-dfn-case-sensitive\u2460"},{"id":"ref-for-dfn-case-sensitive\u2461"},{"id":"ref-for-dfn-case-sensitive\u2462"},{"id":"ref-for-dfn-case-sensitive\u2463"},{"id":"ref-for-dfn-case-sensitive\u2464"},{"id":"ref-for-dfn-case-sensitive\u2465"}],"title":"6.2. WebVTT region settings parsing"},{"refs":[{"id":"ref-for-dfn-case-sensitive\u2466"},{"id":"ref-for-dfn-case-sensitive\u2467"},{"id":"ref-for-dfn-case-sensitive\u2468"},{"id":"ref-for-dfn-case-sensitive\u2460\u24ea"},{"id":"ref-for-dfn-case-sensitive\u2460\u2460"},{"id":"ref-for-dfn-case-sensitive\u2460\u2461"},{"id":"ref-for-dfn-case-sensitive\u2460\u2462"},{"id":"ref-for-dfn-case-sensitive\u2460\u2463"},{"id":"ref-for-dfn-case-sensitive\u2460\u2464"},{"id":"ref-for-dfn-case-sensitive\u2460\u2465"},{"id":"ref-for-dfn-case-sensitive\u2460\u2466"},{"id":"ref-for-dfn-case-sensitive\u2460\u2467"},{"id":"ref-for-dfn-case-sensitive\u2460\u2468"},{"id":"ref-for-dfn-case-sensitive\u2461\u24ea"},{"id":"ref-for-dfn-case-sensitive\u2461\u2460"},{"id":"ref-for-dfn-case-sensitive\u2461\u2461"},{"id":"ref-for-dfn-case-sensitive\u2461\u2462"},{"id":"ref-for-dfn-case-sensitive\u2461\u2463"},{"id":"ref-for-dfn-case-sensitive\u2461\u2464"}],"title":"6.3. WebVTT cue timings and settings parsing"},{"refs":[{"id":"ref-for-dfn-case-sensitive\u2461\u2465"},{"id":"ref-for-dfn-case-sensitive\u2461\u2466"},{"id":"ref-for-dfn-case-sensitive\u2461\u2467"},{"id":"ref-for-dfn-case-sensitive\u2461\u2468"}],"title":"9.1. The VTTCue interface"},{"refs":[{"id":"ref-for-dfn-case-sensitive\u2462\u24ea"}],"title":"9.2. The VTTRegion interface"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"},{"id":"ref-for-idl-DOMString\u2460"}],"title":"9.1. The VTTCue interface"},{"refs":[{"id":"ref-for-idl-DOMString\u2461"}],"title":"9.2. The VTTRegion interface"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, "88643fe0": {"dfnID":"88643fe0","dfnText":"width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-width"},{"id":"ref-for-propdef-width\u2460"},{"id":"ref-for-propdef-width\u2461"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-width"}, "889e932f": {"dfnID":"889e932f","dfnText":"Exposed","external":true,"refSections":[{"refs":[{"id":"ref-for-Exposed"}],"title":"9.1. The VTTCue interface"},{"refs":[{"id":"ref-for-Exposed\u2460"}],"title":"9.2. The VTTRegion interface"}],"url":"https://webidl.spec.whatwg.org/#Exposed"}, @@ -6215,6 +6215,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "c02f5d57": {"dfnID":"c02f5d57","dfnText":"inline","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-inline"}],"title":"7.3. Obtaining CSS boxes"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline"}, "c095490e": {"dfnID":"c095490e","dfnText":"ProcessingInstruction","external":true,"refSections":[{"refs":[{"id":"ref-for-processinginstruction"}],"title":"6.5. WebVTT cue text DOM construction rules"}],"url":"https://dom.spec.whatwg.org/#processinginstruction"}, "c09f1e39": {"dfnID":"c09f1e39","dfnText":"rules for updating the text track rendering","external":true,"refSections":[{"refs":[{"id":"ref-for-rules-for-updating-the-text-track-rendering"}],"title":"3.3. WebVTT caption or subtitle cues"},{"refs":[{"id":"ref-for-rules-for-updating-the-text-track-rendering\u2460"}],"title":"7.1. Processing model"},{"refs":[{"id":"ref-for-rules-for-updating-the-text-track-rendering\u2461"}],"title":"8.2. Processing model"},{"refs":[{"id":"ref-for-rules-for-updating-the-text-track-rendering\u2462"}],"title":"8.2.3. The ::cue-region pseudo-element"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#rules-for-updating-the-text-track-rendering"}, +"c117ac59": {"dfnID":"c117ac59","dfnText":"vw","external":true,"refSections":[{"refs":[{"id":"ref-for-vw"}],"title":"7.1. Processing model"},{"refs":[{"id":"ref-for-vw\u2460"},{"id":"ref-for-vw\u2461"}],"title":"7.2. Processing cue settings"}],"url":"https://drafts.csswg.org/css-values-4/#vw"}, "c54f41d9": {"dfnID":"c54f41d9","dfnText":"expose a user interface to the user","external":true,"refSections":[{"refs":[{"id":"ref-for-expose-a-user-interface-to-the-user"},{"id":"ref-for-expose-a-user-interface-to-the-user\u2460"}],"title":"7.1. Processing model"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#expose-a-user-interface-to-the-user"}, "c9dac9f9": {"dfnID":"c9dac9f9","dfnText":"IndexSizeError","external":true,"refSections":[{"refs":[{"id":"ref-for-indexsizeerror"},{"id":"ref-for-indexsizeerror\u2460"}],"title":"9.1. The VTTCue interface"},{"refs":[{"id":"ref-for-indexsizeerror\u2461"},{"id":"ref-for-indexsizeerror\u2462"},{"id":"ref-for-indexsizeerror\u2463"},{"id":"ref-for-indexsizeerror\u2464"},{"id":"ref-for-indexsizeerror\u2465"},{"id":"ref-for-indexsizeerror\u2466"},{"id":"ref-for-indexsizeerror\u2467"},{"id":"ref-for-indexsizeerror\u2468"},{"id":"ref-for-indexsizeerror\u2460\u24ea"},{"id":"ref-for-indexsizeerror\u2460\u2460"},{"id":"ref-for-indexsizeerror\u2460\u2461"}],"title":"9.2. The VTTRegion interface"}],"url":"https://webidl.spec.whatwg.org/#indexsizeerror"}, "cab1e695": {"dfnID":"cab1e695","dfnText":"srclang","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-track-srclang"},{"id":"ref-for-attr-track-srclang\u2460"}],"title":"8.1. Introduction"}],"url":"https://html.spec.whatwg.org/multipage/media.html#attr-track-srclang"}, @@ -6292,11 +6293,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "e1fd3c3d": {"dfnID":"e1fd3c3d","dfnText":"ascii digits","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-digits"},{"id":"ref-for-ascii-digits\u2460"},{"id":"ref-for-ascii-digits\u2461"},{"id":"ref-for-ascii-digits\u2462"},{"id":"ref-for-ascii-digits\u2463"},{"id":"ref-for-ascii-digits\u2464"}],"title":"4.1. WebVTT file structure"},{"refs":[{"id":"ref-for-ascii-digits\u2465"}],"title":"4.3. WebVTT region settings"},{"refs":[{"id":"ref-for-ascii-digits\u2466"}],"title":"4.4. WebVTT cue settings"},{"refs":[{"id":"ref-for-ascii-digits\u2467"}],"title":"6.2. WebVTT region settings parsing"},{"refs":[{"id":"ref-for-ascii-digits\u2468"},{"id":"ref-for-ascii-digits\u2460\u24ea"},{"id":"ref-for-ascii-digits\u2460\u2460"},{"id":"ref-for-ascii-digits\u2460\u2461"},{"id":"ref-for-ascii-digits\u2460\u2462"},{"id":"ref-for-ascii-digits\u2460\u2463"},{"id":"ref-for-ascii-digits\u2460\u2464"},{"id":"ref-for-ascii-digits\u2460\u2465"}],"title":"6.3. WebVTT cue timings and settings parsing"},{"refs":[{"id":"ref-for-ascii-digits\u2460\u2466"}],"title":"6.4. WebVTT cue text parsing rules"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#ascii-digits"}, "e30e7b38": {"dfnID":"e30e7b38","dfnText":"lang","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-lang"}],"title":"6.5. WebVTT cue text DOM construction rules"}],"url":"https://html.spec.whatwg.org/multipage/dom.html#attr-lang"}, "e356ee85": {"dfnID":"e356ee85","dfnText":"class","external":true,"refSections":[{"refs":[{"id":"ref-for-classes"}],"title":"6.5. WebVTT cue text DOM construction rules"}],"url":"https://html.spec.whatwg.org/multipage/dom.html#classes"}, -"e5906a26": {"dfnID":"e5906a26","dfnText":"case-sensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-def_case_sensitive"},{"id":"ref-for-def_case_sensitive\u2460"},{"id":"ref-for-def_case_sensitive\u2461"},{"id":"ref-for-def_case_sensitive\u2462"},{"id":"ref-for-def_case_sensitive\u2463"},{"id":"ref-for-def_case_sensitive\u2464"},{"id":"ref-for-def_case_sensitive\u2465"}],"title":"6.2. WebVTT region settings parsing"},{"refs":[{"id":"ref-for-def_case_sensitive\u2466"},{"id":"ref-for-def_case_sensitive\u2467"},{"id":"ref-for-def_case_sensitive\u2468"},{"id":"ref-for-def_case_sensitive\u2460\u24ea"},{"id":"ref-for-def_case_sensitive\u2460\u2460"},{"id":"ref-for-def_case_sensitive\u2460\u2461"},{"id":"ref-for-def_case_sensitive\u2460\u2462"},{"id":"ref-for-def_case_sensitive\u2460\u2463"},{"id":"ref-for-def_case_sensitive\u2460\u2464"},{"id":"ref-for-def_case_sensitive\u2460\u2465"},{"id":"ref-for-def_case_sensitive\u2460\u2466"},{"id":"ref-for-def_case_sensitive\u2460\u2467"},{"id":"ref-for-def_case_sensitive\u2460\u2468"},{"id":"ref-for-def_case_sensitive\u2461\u24ea"},{"id":"ref-for-def_case_sensitive\u2461\u2460"},{"id":"ref-for-def_case_sensitive\u2461\u2461"},{"id":"ref-for-def_case_sensitive\u2461\u2462"},{"id":"ref-for-def_case_sensitive\u2461\u2463"},{"id":"ref-for-def_case_sensitive\u2461\u2464"}],"title":"6.3. WebVTT cue timings and settings parsing"},{"refs":[{"id":"ref-for-def_case_sensitive\u2461\u2465"},{"id":"ref-for-def_case_sensitive\u2461\u2466"},{"id":"ref-for-def_case_sensitive\u2461\u2467"},{"id":"ref-for-def_case_sensitive\u2461\u2468"}],"title":"9.1. The VTTCue interface"},{"refs":[{"id":"ref-for-def_case_sensitive\u2462\u24ea"}],"title":"9.2. The VTTRegion interface"}],"url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, "e8907287": {"dfnID":"e8907287","dfnText":"hidden","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-overflow-hidden"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden"}, "e97a9688": {"dfnID":"e97a9688","dfnText":"unsigned long","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-unsigned-long"}],"title":"9.2. The VTTRegion interface"}],"url":"https://webidl.spec.whatwg.org/#idl-unsigned-long"}, "eae1ada3": {"dfnID":"eae1ada3","dfnText":"text track cue","external":true,"refSections":[{"refs":[{"id":"ref-for-text-track-cue"}],"title":"3.2. WebVTT cues"},{"refs":[{"id":"ref-for-text-track-cue\u2460"}],"title":"6.3. WebVTT cue timings and settings parsing"},{"refs":[{"id":"ref-for-text-track-cue\u2461"},{"id":"ref-for-text-track-cue\u2462"}],"title":"7.1. Processing model"},{"refs":[{"id":"ref-for-text-track-cue\u2463"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"},{"refs":[{"id":"ref-for-text-track-cue\u2464"}],"title":"8.2. Processing model"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#text-track-cue"}, -"eb350f76": {"dfnID":"eb350f76","dfnText":"balance","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-wrap-balance"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance"}, "ed0402cf": {"dfnID":"ed0402cf","dfnText":"end","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-text-align-end"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"}],"url":"https://drafts.csswg.org/css-text-4/#valdef-text-align-end"}, "ed5894fe": {"dfnID":"ed5894fe","dfnText":"title","external":true,"refSections":[{"refs":[{"id":"ref-for-attr-title"}],"title":"6.5. WebVTT cue text DOM construction rules"}],"url":"https://html.spec.whatwg.org/multipage/dom.html#attr-title"}, "enumdef-alignsetting": {"dfnID":"enumdef-alignsetting","dfnText":"AlignSetting","external":false,"refSections":[{"refs":[{"id":"ref-for-enumdef-alignsetting"}],"title":"9.1. The VTTCue interface"}],"url":"#enumdef-alignsetting"}, @@ -6314,7 +6313,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "f5468b1c": {"dfnID":"f5468b1c","dfnText":"rules for parsing floating-point number values","external":true,"refSections":[{"refs":[{"id":"ref-for-rules-for-parsing-floating-point-number-values"}],"title":"6.2. WebVTT region settings parsing"},{"refs":[{"id":"ref-for-rules-for-parsing-floating-point-number-values\u2460"}],"title":"6.3. WebVTT cue timings and settings parsing"}],"url":"https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#rules-for-parsing-floating-point-number-values"}, "f5eca8c9": {"dfnID":"f5eca8c9","dfnText":"background","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background"}],"title":"5.2. Default text background colors"},{"refs":[{"id":"ref-for-propdef-background\u2460"},{"id":"ref-for-propdef-background\u2461"}],"title":"7.4. Applying CSS properties to WebVTT Node Objects"},{"refs":[{"id":"ref-for-propdef-background\u2462"},{"id":"ref-for-propdef-background\u2463"},{"id":"ref-for-propdef-background\u2464"},{"id":"ref-for-propdef-background\u2465"}],"title":"8.2.1. The ::cue pseudo-element"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background"}, "f831c141": {"dfnID":"f831c141","dfnText":"background-image","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-background-image"}],"title":"7.3. Obtaining CSS boxes"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-image"}, -"fefe9144": {"dfnID":"fefe9144","dfnText":"presentational hints","external":true,"refSections":[{"refs":[{"id":"ref-for-presentational-hints"}],"title":"5.1. Default text colors"},{"refs":[{"id":"ref-for-presentational-hints\u2460"}],"title":"5.2. Default text background colors"}],"url":"https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints"}, "future": {"dfnID":"future","dfnText":":future","external":false,"refSections":[],"url":"#future"}, "html-character-reference-in-annotation-state": {"dfnID":"html-character-reference-in-annotation-state","dfnText":"HTML character reference in annotation state","external":false,"refSections":[{"refs":[{"id":"ref-for-html-character-reference-in-annotation-state"}],"title":"6.4. WebVTT cue text parsing rules"}],"url":"#html-character-reference-in-annotation-state"}, "html-character-reference-in-data-state": {"dfnID":"html-character-reference-in-data-state","dfnText":"HTML character reference in data state","external":false,"refSections":[{"refs":[{"id":"ref-for-html-character-reference-in-data-state"}],"title":"6.4. WebVTT cue text parsing rules"}],"url":"#html-character-reference-in-data-state"}, @@ -7031,7 +7029,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-cascade-6/#cascade": {"export":true,"for_":[],"level":"6","normative":true,"shortname":"css-cascade","spec":"css-cascade-6","status":"current","text":"cascade","type":"dfn","url":"https://drafts.csswg.org/css-cascade-6/#cascade"}, "https://drafts.csswg.org/css-color-4/#propdef-color": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"color","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-color"}, "https://drafts.csswg.org/css-color-4/#propdef-opacity": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"opacity","type":"property","url":"https://drafts.csswg.org/css-color-4/#propdef-opacity"}, -"https://drafts.csswg.org/css-color-4/#valdef-color-green": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"green","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-green"}, +"https://drafts.csswg.org/css-color-4/#valdef-color-green": {"export":true,"for_":["<color>","<named-color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"green","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-green"}, "https://drafts.csswg.org/css-display-3/#propdef-display": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-display","spec":"css-display-3","status":"current","text":"display","type":"property","url":"https://drafts.csswg.org/css-display-3/#propdef-display"}, "https://drafts.csswg.org/css-display-4/#propdef-visibility": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"visibility","type":"property","url":"https://drafts.csswg.org/css-display-4/#propdef-visibility"}, "https://drafts.csswg.org/css-display-4/#valdef-display-inline": {"export":true,"for_":["display","<display-outside>"],"level":"4","normative":true,"shortname":"css-display","spec":"css-display-4","status":"current","text":"inline","type":"value","url":"https://drafts.csswg.org/css-display-4/#valdef-display-inline"}, @@ -7065,15 +7063,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-text-4/#valdef-text-align-left": {"export":true,"for_":["text-align"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"left","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-text-align-left"}, "https://drafts.csswg.org/css-text-4/#valdef-text-align-right": {"export":true,"for_":["text-align"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"right","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-text-align-right"}, "https://drafts.csswg.org/css-text-4/#valdef-text-align-start": {"export":true,"for_":["text-align"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"start","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-text-align-start"}, -"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance": {"export":true,"for_":["text-wrap"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"balance","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance"}, "https://drafts.csswg.org/css-text-4/#valdef-white-space-pre-line": {"export":true,"for_":["white-space"],"level":"4","normative":true,"shortname":"css-text","spec":"css-text-4","status":"current","text":"pre-line","type":"value","url":"https://drafts.csswg.org/css-text-4/#valdef-white-space-pre-line"}, "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"current","text":"text-decoration","type":"property","url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration"}, "https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-text-decor","spec":"css-text-decor-4","status":"current","text":"text-shadow","type":"property","url":"https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow"}, "https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"current","text":"transition-duration","type":"property","url":"https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration"}, "https://drafts.csswg.org/css-transitions-1/#propdef-transition-property": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-transitions","spec":"css-transitions-1","status":"current","text":"transition-property","type":"property","url":"https://drafts.csswg.org/css-transitions-1/#propdef-transition-property"}, "https://drafts.csswg.org/css-ui-4/#propdef-outline": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-ui","spec":"css-ui-4","status":"current","text":"outline","type":"property","url":"https://drafts.csswg.org/css-ui-4/#propdef-outline"}, -"https://drafts.csswg.org/css-values-4/#valdef-length-vh": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vh","type":"value","url":"https://drafts.csswg.org/css-values-4/#valdef-length-vh"}, -"https://drafts.csswg.org/css-values-4/#valdef-length-vw": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vw","type":"value","url":"https://drafts.csswg.org/css-values-4/#valdef-length-vw"}, +"https://drafts.csswg.org/css-values-4/#vh": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vh","type":"value","url":"https://drafts.csswg.org/css-values-4/#vh"}, +"https://drafts.csswg.org/css-values-4/#vw": {"export":true,"for_":["<length>"],"level":"4","normative":true,"shortname":"css-values","spec":"css-values-4","status":"current","text":"vw","type":"value","url":"https://drafts.csswg.org/css-values-4/#vw"}, "https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-3","status":"current","text":"unicode-bidi","type":"property","url":"https://drafts.csswg.org/css-writing-modes-3/#propdef-unicode-bidi"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-combine-upright": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"text-combine-upright","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-text-combine-upright"}, "https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-writing-modes","spec":"css-writing-modes-4","status":"current","text":"writing-mode","type":"property","url":"https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode"}, @@ -7140,7 +7137,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/media.html#texttrackcue": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"TextTrackCue","type":"interface","url":"https://html.spec.whatwg.org/multipage/media.html#texttrackcue"}, "https://html.spec.whatwg.org/multipage/media.html#the-track-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"track","type":"element","url":"https://html.spec.whatwg.org/multipage/media.html#the-track-element"}, "https://html.spec.whatwg.org/multipage/media.html#video": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"video","type":"element","url":"https://html.spec.whatwg.org/multipage/media.html#video"}, -"https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"presentational hints","type":"dfn","url":"https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints"}, +"https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"presentational hint","type":"dfn","url":"https://html.spec.whatwg.org/multipage/rendering.html#presentational-hints"}, "https://html.spec.whatwg.org/multipage/semantics.html#the-style-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"style","type":"element","url":"https://html.spec.whatwg.org/multipage/semantics.html#the-style-element"}, "https://html.spec.whatwg.org/multipage/syntax.html#syntax-charref": {"export":true,"for_":[],"level":"","normative":true,"shortname":"webvtt1","spec":"","status":"anchor-block","text":"character references","type":"dfn","url":"https://html.spec.whatwg.org/multipage/syntax.html#syntax-charref"}, "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-b-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"b","type":"element","url":"https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-b-element"}, @@ -7154,7 +7151,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"collect a sequence of code points","type":"dfn","url":"https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points"}, "https://infra.spec.whatwg.org/#html-namespace": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"html namespace","type":"dfn","url":"https://infra.spec.whatwg.org/#html-namespace"}, "https://mimesniff.spec.whatwg.org/#mime-type": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"mimesniff","spec":"mimesniff","status":"current","text":"mime type","type":"dfn","url":"https://mimesniff.spec.whatwg.org/#mime-type"}, -"https://w3c.github.io/i18n-glossary/#def_case_sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_case_sensitive"}, +"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"case-sensitive","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-case-sensitive"}, "https://w3c.github.io/webvtt/#selectordef-cue": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webvtt","spec":"webvtt1","status":"current","text":"::cue","type":"selector","url":"https://w3c.github.io/webvtt/#selectordef-cue"}, "https://w3c.github.io/webvtt/#selectordef-cue-region": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webvtt","spec":"webvtt1","status":"current","text":"::cue-region","type":"selector","url":"https://w3c.github.io/webvtt/#selectordef-cue-region"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, diff --git a/tests/github/w3ctag/client-certificates/index.console.txt b/tests/github/w3ctag/client-certificates/index.console.txt index 393427a6a9..b1484ddc7a 100644 --- a/tests/github/w3ctag/client-certificates/index.console.txt +++ b/tests/github/w3ctag/client-certificates/index.console.txt @@ -1,7 +1,6 @@ -WARNING: You used Status: WD, but the TAG is are limited to these statuses: DRAFT-FINDING, ED, FINDING, NOTE, NOTE-ED, NOTE-FPWD, NOTE-WD, UD, WG-NOTE +WARNING: You used Status WD, but your Group (TAG) is limited to the statuses DRAFT-FINDING, ED, FINDING, NOTE, NOTE-ED, NOTE-FPWD, NOTE-WD, UD, or WG-NOTE. FATAL ERROR: Not all required metadata was provided: - Missing a 'TR' entry. - Must provide at least one 'Issue Tracking' entry. + Missing 'TR' LINE 24:1: Spurious / in <img>. WARNING: `Complain About: mixed-indents yes` is active, but I couldn't infer the document's indentation. Be more consistent, or turn this lint off. WARNING: You should manually provide IDs for your headings: diff --git a/tests/github/w3ctag/client-certificates/index.html b/tests/github/w3ctag/client-certificates/index.html index 44c3ffe5cf..4fb04fc977 100644 --- a/tests/github/w3ctag/client-certificates/index.html +++ b/tests/github/w3ctag/client-certificates/index.html @@ -5,8 +5,8 @@ <title>Keygen and Client Certificates</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3ctag.github.io/client-certificates" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -430,7 +430,7 @@ <h1 class="p-name no-ref" id="title">Keygen and Client Certificates</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -625,20 +625,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/github/w3ctag/design-principles/index.html b/tests/github/w3ctag/design-principles/index.html index 4902de4677..c87b1f22fd 100644 --- a/tests/github/w3ctag/design-principles/index.html +++ b/tests/github/w3ctag/design-principles/index.html @@ -5,8 +5,8 @@ <title>Web Platform Design Principles</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://w3ctag.github.io/design-principles/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style> @@ -715,7 +715,7 @@ <h1 class="p-name no-ref" id="title">Web Platform Design Principles</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -1822,25 +1822,25 @@ <h3 class="heading settled" data-level="6.6" id="guard-against-recursion"><span <p>To prevent this, make sure that any "recursive" call into the API method simply returns immediately. This technique is "guarding" the algorithm.</p> <div class="example" id="example-32d23c03"> - <a class="self-link" href="#example-32d23c03"></a> <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#abortsignal" id="ref-for-abortsignal①">AbortSignal</a></code>'s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-add" id="ref-for-abortsignal-add">add</a>, <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-remove" id="ref-for-abortsignal-remove">remove</a> and <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort">signal abort</a> each begin with a check + <a class="self-link" href="#example-32d23c03"></a> <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#abortsignal" id="ref-for-abortsignal①">AbortSignal</a></code>'s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-add" id="ref-for-abortsignal-add">add</a>, <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-remove" id="ref-for-abortsignal-remove">remove</a> and <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort">signal abort</a> each begin with a check of the signal’s <a data-link-type="dfn">aborted flag</a>. If the flag is set, the rest of the algorithm doesn’t run. <p>In this case, a lot of the important complexity is -in the algorithms run during the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort①">signal abort</a> steps. +in the algorithms run during the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort①">signal abort</a> steps. These steps iterate through a collection of algorithms which are managed by the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-add" id="ref-for-abortsignal-add①">add</a> and <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-remove" id="ref-for-abortsignal-remove①">remove</a> methods.</p> <p>For example, the <a href="https://streams.spec.whatwg.org/#readable-stream-pipe-to">ReadableStreamPipeTo</a> definition <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-add" id="ref-for-abortsignal-add②">add</a>s an algorithm into the <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#abortsignal" id="ref-for-abortsignal②">AbortSignal</a></code>'s set of algorithms to be run -when the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort②">signal abort</a> steps are triggered, +when the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort②">signal abort</a> steps are triggered, by calling <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#dom-abortcontroller-abort" id="ref-for-dom-abortcontroller-abort①">abort()</a></code> on the <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#abortcontroller" id="ref-for-abortcontroller①">AbortController</a></code> associated with the signal.</p> <p>This algorithm is likely to resolve promises causing code to run, which may include attempting to call any of the methods on <code class="idl"><a data-link-type="idl" href="https://dom.spec.whatwg.org/#abortsignal" id="ref-for-abortsignal③">AbortSignal</a></code>. -Since <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort③">signal abort</a> involves iterating through the collection of algorithms, +Since <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort③">signal abort</a> involves iterating through the collection of algorithms, it should not be possible to modify that collection while it’s running.</p> - <p>And since <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort④">signal abort</a> would have triggered the code which caused -the recursive call back in to <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort⑤">signal abort</a>, + <p>And since <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort④">signal abort</a> would have triggered the code which caused +the recursive call back in to <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort⑤">signal abort</a>, it’s important to avoid running these steps again -if the signal is already in the process of the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-signal-abort" id="ref-for-abortsignal-signal-abort⑥">signal abort</a> steps, +if the signal is already in the process of the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortcontroller-signal-abort" id="ref-for-abortcontroller-signal-abort⑥">signal abort</a> steps, to avoid recursion.</p> </div> <p class="note" role="note"><span class="marker">Note:</span> A caution about early termination: @@ -2184,12 +2184,12 @@ <h3 class="heading settled" data-level="7.2" id="idl-string-types"><span class=" <p>When designing a web platform feature which operates on <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string" id="ref-for-string">strings</a>, use <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString">DOMString</a></code> unless you have a specific reason not to.</p> <p>Most string operations don’t need -to interpret the <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit">code units</a> inside of the string, +to interpret the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit">code units</a> inside of the string, so <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString①">DOMString</a></code> is the best choice. In the specific cases explained below, it might be appropriate to use either <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-USVString" id="ref-for-idl-USVString">USVString</a></code> or <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-ByteString" id="ref-for-idl-ByteString">ByteString</a></code> instead. <a data-link-type="biblio" href="#biblio-infra" title="Infra Standard">[INFRA]</a> <a data-link-type="biblio" href="#biblio-webidl" title="Web IDL Standard">[WEBIDL]</a></p> <p><code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-USVString" id="ref-for-idl-USVString①">USVString</a></code> is the Web IDL type that represents <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#scalar-value-string" id="ref-for-scalar-value-string">scalar value strings</a>. For strings whose most common algorithms operate on <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#scalar-value" id="ref-for-scalar-value">scalar values</a> (such as <a data-link-type="abstract-op" href="https://url.spec.whatwg.org/#percent-encode" id="ref-for-percent-encode">percent-encoding</a>), -or for operations which can’t handle <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-surrogate" id="ref-for-dfn-surrogate">surrogates</a> in input +or for operations which can’t handle <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate">surrogates</a> in input (such as APIs that pass strings through to native platform APIs), <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-USVString" id="ref-for-idl-USVString②">USVString</a></code> should be used.</p> <p class="example" id="example-fe96b598"><a class="self-link" href="#example-fe96b598"></a> <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect" id="ref-for-reflect">Reflecting IDL attributes</a> whose content attribute is defined to contain a <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url" id="ref-for-concept-url">URL</a> (such as <code><a data-link-type="element-sub" href="https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-href" id="ref-for-attr-hyperlink-href">href</a></code>) should use <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-USVString" id="ref-for-idl-USVString③">USVString</a></code>. <a data-link-type="biblio" href="#biblio-html" title="HTML Standard">[HTML]</a> </p> @@ -2947,20 +2947,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -3057,7 +3059,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="50e555d8">once</span> <li><span class="dfn-paneled" id="5def70a6">querySelectorAll(selectors)</span> <li><span class="dfn-paneled" id="ff87eaf9">remove</span> - <li><span class="dfn-paneled" id="790f0b49">signal abort</span> + <li><span class="dfn-paneled" id="2296404c">signal abort</span> <li><span class="dfn-paneled" id="e8478f36">target</span> </ul> <li> @@ -3118,12 +3120,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="9d861566">showModal()</span> <li><span class="dfn-paneled" id="80726755">task queues</span> </ul> - <li> - <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="7cf8cfc4">code units</span> - <li><span class="dfn-paneled" id="6b7796d8">surrogates</span> - </ul> <li> <a data-link-type="biblio">[IndexedDB-3]</a> defines the following terms: <ul> @@ -3133,10 +3129,12 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <a data-link-type="biblio">[INFRA]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="ddc587b1">ascii code point</span> + <li><span class="dfn-paneled" id="59912c93">code unit</span> <li><span class="dfn-paneled" id="860300d4">implementation-defined</span> <li><span class="dfn-paneled" id="ecf251b4">scalar value</span> <li><span class="dfn-paneled" id="762869d3">scalar value string</span> <li><span class="dfn-paneled" id="0698d556">string</span> + <li><span class="dfn-paneled" id="a3fb968a">surrogate</span> </ul> <li> <a data-link-type="biblio">[INTERSECTION-OBSERVER]</a> defines the following terms: @@ -3151,13 +3149,9 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla </ul> <li> <a data-link-type="biblio">[PAYMENT-REQUEST]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="838fac42">[[state]]</span> - </ul> - <li> - <a data-link-type="biblio">[PAYMENT-REQUEST-1.1]</a> defines the following terms: <ul> <li><span class="dfn-paneled" id="f679a0bc">PaymentRequest</span> + <li><span class="dfn-paneled" id="838fac42">[[state]]</span> <li><span class="dfn-paneled" id="ab86e0f1">show()</span> </ul> <li> @@ -3242,7 +3236,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-ecmascript">[ECMASCRIPT] @@ -3251,18 +3245,14 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Yoav Weiss. <a href="https://w3c.github.io/hr-time/"><cite>High Resolution Time</cite></a>. URL: <a href="https://w3c.github.io/hr-time/">https://w3c.github.io/hr-time/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> - <dt id="biblio-i18n-glossary">[I18N-GLOSSARY] - <dd>Richard Ishida; Addison Phillips. <a href="https://w3c.github.io/i18n-glossary/"><cite>Internationalization Glossary</cite></a>. URL: <a href="https://w3c.github.io/i18n-glossary/">https://w3c.github.io/i18n-glossary/</a> <dt id="biblio-indexeddb-3">[IndexedDB-3] - <dd>Ali Alabbas; Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> + <dd>Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-mediaqueries-5">[MEDIAQUERIES-5] <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/mediaqueries-5/"><cite>Media Queries Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/mediaqueries-5/">https://drafts.csswg.org/mediaqueries-5/</a> <dt id="biblio-payment-request">[PAYMENT-REQUEST] <dd>Marcos Caceres; Rouslan Solomakhin; Ian Jacobs. <a href="https://w3c.github.io/payment-request/"><cite>Payment Request API</cite></a>. URL: <a href="https://w3c.github.io/payment-request/">https://w3c.github.io/payment-request/</a> - <dt id="biblio-payment-request-11">[PAYMENT-REQUEST-1.1] - <dd>Marcos Caceres; Rouslan Solomakhin; Ian Jacobs. <a href="https://w3c.github.io/payment-request/"><cite>Payment Request API 1.1</cite></a>. URL: <a href="https://w3c.github.io/payment-request/">https://w3c.github.io/payment-request/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-url">[URL] @@ -3277,13 +3267,13 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-appmanifest">[APPMANIFEST] <dd>Marcos Caceres; et al. <a href="https://w3c.github.io/manifest/"><cite>Web Application Manifest</cite></a>. URL: <a href="https://w3c.github.io/manifest/">https://w3c.github.io/manifest/</a> <dt id="biblio-credential-management-1">[CREDENTIAL-MANAGEMENT-1] - <dd>Mike West. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> + <dd>Nina Satragno; Marcos Caceres. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-values-4">[CSS-VALUES-4] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-values-4/"><cite>CSS Values and Units Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-values-4/">https://drafts.csswg.org/css-values-4/</a> <dt id="biblio-css22">[CSS22] @@ -3301,11 +3291,11 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-fingerprinting-guidance">[FINGERPRINTING-GUIDANCE] <dd>Nick Doty. <a href="https://w3c.github.io/fingerprinting-guidance/"><cite>Mitigating Browser Fingerprinting in Web Specifications</cite></a>. URL: <a href="https://w3c.github.io/fingerprinting-guidance/">https://w3c.github.io/fingerprinting-guidance/</a> <dt id="biblio-intersection-observer">[INTERSECTION-OBSERVER] - <dd>Stefan Zager; Emilio Cobos Álvarez. <a href="https://w3c.github.io/IntersectionObserver/"><cite>Intersection Observer</cite></a>. URL: <a href="https://w3c.github.io/IntersectionObserver/">https://w3c.github.io/IntersectionObserver/</a> + <dd>Stefan Zager; Emilio Cobos Álvarez; Traian Captan. <a href="https://w3c.github.io/IntersectionObserver/"><cite>Intersection Observer</cite></a>. URL: <a href="https://w3c.github.io/IntersectionObserver/">https://w3c.github.io/IntersectionObserver/</a> <dt id="biblio-least-power">[LEAST-POWER] <dd>Tim Berners-Lee; Noah Mendelsohn. <a href="https://www.w3.org/2001/tag/doc/leastPower"><cite>The Rule of Least Power</cite></a>. 23 February 2006. TAG Finding. URL: <a href="https://www.w3.org/2001/tag/doc/leastPower">https://www.w3.org/2001/tag/doc/leastPower</a> <dt id="biblio-pointerevents3">[POINTEREVENTS3] - <dd>Patrick Lauke; Navid Zolghadr. <a href="https://w3c.github.io/pointerevents/"><cite>Pointer Events</cite></a>. URL: <a href="https://w3c.github.io/pointerevents/">https://w3c.github.io/pointerevents/</a> + <dd>Patrick Lauke; Robert Flack. <a href="https://w3c.github.io/pointerevents/"><cite>Pointer Events</cite></a>. URL: <a href="https://w3c.github.io/pointerevents/">https://w3c.github.io/pointerevents/</a> <dt id="biblio-referrer-policy">[REFERRER-POLICY] <dd>Jochen Eisinger; Emily Stark. <a href="https://w3c.github.io/webappsec-referrer-policy/"><cite>Referrer Policy</cite></a>. URL: <a href="https://w3c.github.io/webappsec-referrer-policy/">https://w3c.github.io/webappsec-referrer-policy/</a> <dt id="biblio-remote-playback">[REMOTE-PLAYBACK] @@ -3319,7 +3309,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-webcryptoapi">[WebCryptoAPI] <dd>Mark Watson. <a href="https://w3c.github.io/webcrypto/"><cite>Web Cryptography API</cite></a>. URL: <a href="https://w3c.github.io/webcrypto/">https://w3c.github.io/webcrypto/</a> <dt id="biblio-webrtc">[WEBRTC] - <dd>Cullen Jennings; Henrik Boström; Jan-Ivar Bruaroey. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC 1.0: Real-Time Communication Between Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> + <dd>Cullen Jennings; et al. <a href="https://w3c.github.io/webrtc-pc/"><cite>WebRTC: Real-Time Communication in Browsers</cite></a>. URL: <a href="https://w3c.github.io/webrtc-pc/">https://w3c.github.io/webrtc-pc/</a> </dl> <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2> <div style="counter-reset:issue"> @@ -3542,6 +3532,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "1fc098b2": {"dfnID":"1fc098b2","dfnText":"KeyboardEvent","external":true,"refSections":[{"refs":[{"id":"ref-for-keyboardevent"}],"title":"11.4. Future-proofing"}],"url":"https://w3c.github.io/uievents/#keyboardevent"}, "2039631f": {"dfnID":"2039631f","dfnText":"namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-namespace"},{"id":"ref-for-dfn-namespace\u2460"}],"title":"5.6. Classes should have constructors when possible"}],"url":"https://webidl.spec.whatwg.org/#dfn-namespace"}, "21ec9802": {"dfnID":"21ec9802","dfnText":"inherit","external":true,"refSections":[{"refs":[{"id":"ref-for-css-inheritance"}],"title":"3.3. Choose the computed value type based on how the property should inherit"}],"url":"https://drafts.csswg.org/css-cascade-5/#css-inheritance"}, +"2296404c": {"dfnID":"2296404c","dfnText":"signal abort","external":true,"refSections":[{"refs":[{"id":"ref-for-abortcontroller-signal-abort"},{"id":"ref-for-abortcontroller-signal-abort\u2460"},{"id":"ref-for-abortcontroller-signal-abort\u2461"},{"id":"ref-for-abortcontroller-signal-abort\u2462"},{"id":"ref-for-abortcontroller-signal-abort\u2463"},{"id":"ref-for-abortcontroller-signal-abort\u2464"},{"id":"ref-for-abortcontroller-signal-abort\u2465"}],"title":"6.6. Guard against potential recursion"}],"url":"https://dom.spec.whatwg.org/#abortcontroller-signal-abort"}, "22cb9a16": {"dfnID":"22cb9a16","dfnText":"ByteString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-ByteString"},{"id":"ref-for-idl-ByteString\u2460"}],"title":"7.2. Represent strings appropriately"}],"url":"https://webidl.spec.whatwg.org/#idl-ByteString"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"},{"id":"ref-for-eventtarget\u2460"},{"id":"ref-for-eventtarget\u2461"},{"id":"ref-for-eventtarget\u2462"},{"id":"ref-for-eventtarget\u2463"},{"id":"ref-for-eventtarget\u2464"},{"id":"ref-for-eventtarget\u2465"},{"id":"ref-for-eventtarget\u2466"}],"title":"6.8. How to decide between Events and Observers"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2e66eaf1": {"dfnID":"2e66eaf1","dfnText":"AbortController","external":true,"refSections":[{"refs":[{"id":"ref-for-abortcontroller"}],"title":"5.9. Cancel asynchronous APIs/operations using AbortSignal"},{"refs":[{"id":"ref-for-abortcontroller\u2460"}],"title":"6.6. Guard against potential recursion"}],"url":"https://dom.spec.whatwg.org/#abortcontroller"}, @@ -3556,6 +3547,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "50e555d8": {"dfnID":"50e555d8","dfnText":"once","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-addeventlisteneroptions-once"}],"title":"6.8. How to decide between Events and Observers"}],"url":"https://dom.spec.whatwg.org/#dom-addeventlisteneroptions-once"}, "529179ea": {"dfnID":"529179ea","dfnText":"Crypto","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-Crypto"}],"title":"5.6. Classes should have constructors when possible"}],"url":"https://w3c.github.io/webcrypto/#dfn-Crypto"}, "5528aefc": {"dfnID":"5528aefc","dfnText":"loaded","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-progressevent-loaded"}],"title":"6.6. Guard against potential recursion"}],"url":"https://xhr.spec.whatwg.org/#dom-progressevent-loaded"}, +"59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"}],"title":"7.2. Represent strings appropriately"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, "59f1958b": {"dfnID":"59f1958b","dfnText":"XMLHttpRequestEventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-xmlhttprequesteventtarget"}],"title":"6.8. How to decide between Events and Observers"}],"url":"https://xhr.spec.whatwg.org/#xmlhttprequesteventtarget"}, "5ab7b520": {"dfnID":"5ab7b520","dfnText":"reflect","external":true,"refSections":[{"refs":[{"id":"ref-for-reflect"}],"title":"7.2. Represent strings appropriately"},{"refs":[{"id":"ref-for-reflect\u2460"},{"id":"ref-for-reflect\u2461"}],"title":"Use casing rules consistent with existing APIs"}],"url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"}],"title":"5.6. Classes should have constructors when possible"},{"refs":[{"id":"ref-for-window\u2460"}],"title":"6.4. Always add event handler attributes"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, @@ -3567,16 +3559,13 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "5fd23811": {"dfnID":"5fd23811","dfnText":"fire an event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event-fire"}],"title":"6.6. Guard against potential recursion"}],"url":"https://dom.spec.whatwg.org/#concept-event-fire"}, "67fa4a40": {"dfnID":"67fa4a40","dfnText":"total","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-progressevent-total"}],"title":"6.6. Guard against potential recursion"}],"url":"https://xhr.spec.whatwg.org/#dom-progressevent-total"}, "680651c3": {"dfnID":"680651c3","dfnText":"NonElementParentNode","external":true,"refSections":[{"refs":[{"id":"ref-for-nonelementparentnode"}],"title":"Use casing rules consistent with existing APIs"}],"url":"https://dom.spec.whatwg.org/#nonelementparentnode"}, -"6b7796d8": {"dfnID":"6b7796d8","dfnText":"surrogates","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-surrogate"}],"title":"7.2. Represent strings appropriately"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "6cf6f82f": {"dfnID":"6cf6f82f","dfnText":"addEventListener(type, callback)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-eventtarget-addeventlistener"}],"title":"5.4. Make function parameters optional if possible"},{"refs":[{"id":"ref-for-dom-eventtarget-addeventlistener\u2460"}],"title":"5.5. Naming optional parameters"},{"refs":[{"id":"ref-for-dom-eventtarget-addeventlistener\u2461"}],"title":"6.8. How to decide between Events and Observers"}],"url":"https://dom.spec.whatwg.org/#dom-eventtarget-addeventlistener"}, "6e8782de": {"dfnID":"6e8782de","dfnText":"getElementsByTagName","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-document-getelementsbytagname"},{"id":"ref-for-dom-document-getelementsbytagname\u2460"},{"id":"ref-for-dom-document-getelementsbytagname\u2461"}],"title":"4.3. Don\u2019t expose garbage collection"},{"refs":[{"id":"ref-for-dom-document-getelementsbytagname\u2462"},{"id":"ref-for-dom-document-getelementsbytagname\u2463"}],"title":"Static objects"}],"url":"https://dom.spec.whatwg.org/#dom-document-getelementsbytagname"}, "762869d3": {"dfnID":"762869d3","dfnText":"scalar value string","external":true,"refSections":[{"refs":[{"id":"ref-for-scalar-value-string"}],"title":"7.2. Represent strings appropriately"}],"url":"https://infra.spec.whatwg.org/#scalar-value-string"}, "762ce945": {"dfnID":"762ce945","dfnText":"GlobalEventHandlers","external":true,"refSections":[{"refs":[{"id":"ref-for-globaleventhandlers"}],"title":"6.4. Always add event handler attributes"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers"}, "77996ab1": {"dfnID":"77996ab1","dfnText":"maplike","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-maplike"}],"title":"Static objects"}],"url":"https://webidl.spec.whatwg.org/#dfn-maplike"}, -"790f0b49": {"dfnID":"790f0b49","dfnText":"signal abort","external":true,"refSections":[{"refs":[{"id":"ref-for-abortsignal-signal-abort"},{"id":"ref-for-abortsignal-signal-abort\u2460"},{"id":"ref-for-abortsignal-signal-abort\u2461"},{"id":"ref-for-abortsignal-signal-abort\u2462"},{"id":"ref-for-abortsignal-signal-abort\u2463"},{"id":"ref-for-abortsignal-signal-abort\u2464"},{"id":"ref-for-abortsignal-signal-abort\u2465"}],"title":"6.6. Guard against potential recursion"}],"url":"https://dom.spec.whatwg.org/#abortsignal-signal-abort"}, "7b0dc914": {"dfnID":"7b0dc914","dfnText":"ProgressEvent","external":true,"refSections":[{"refs":[{"id":"ref-for-progressevent"}],"title":"6.6. Guard against potential recursion"}],"url":"https://xhr.spec.whatwg.org/#progressevent"}, "7c397e50": {"dfnID":"7c397e50","dfnText":"Body","external":true,"refSections":[{"refs":[{"id":"ref-for-body"}],"title":"11.1. Use common words"}],"url":"https://fetch.spec.whatwg.org/#body"}, -"7cf8cfc4": {"dfnID":"7cf8cfc4","dfnText":"code units","external":true,"refSections":[{"refs":[{"id":"ref-for-def_code_unit"}],"title":"7.2. Represent strings appropriately"}],"url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, "7f21931f": {"dfnID":"7f21931f","dfnText":"NamedNodeMap","external":true,"refSections":[{"refs":[{"id":"ref-for-namednodemap"}],"title":"Use casing rules consistent with existing APIs"}],"url":"https://dom.spec.whatwg.org/#namednodemap"}, "7f769aa9": {"dfnID":"7f769aa9","dfnText":"remote playback device","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-remote-playback-devices"},{"id":"ref-for-dfn-remote-playback-devices\u2460"}],"title":"8.2. Use care when exposing APIs for selecting or enumerating devices"}],"url":"https://w3c.github.io/remote-playback/#dfn-remote-playback-devices"}, "80726755": {"dfnID":"80726755","dfnText":"task queues","external":true,"refSections":[{"refs":[{"id":"ref-for-task-queue"},{"id":"ref-for-task-queue\u2460"}],"title":"6.6. Guard against potential recursion"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-queue"}, @@ -3600,6 +3589,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "9cd25054": {"dfnID":"9cd25054","dfnText":"computed value","external":true,"refSections":[{"refs":[{"id":"ref-for-computed-value"},{"id":"ref-for-computed-value\u2460"},{"id":"ref-for-computed-value\u2461"}],"title":"3.3. Choose the computed value type based on how the property should inherit"}],"url":"https://drafts.csswg.org/css-cascade-5/#computed-value"}, "9d861566": {"dfnID":"9d861566","dfnText":"showModal()","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-dialog-showmodal"}],"title":"10.2.1. Defining algorithms in specifications"}],"url":"https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-dialog-showmodal"}, "a2411b6a": {"dfnID":"a2411b6a","dfnText":"History","external":true,"refSections":[{"refs":[{"id":"ref-for-history-3"}],"title":"5.6. Classes should have constructors when possible"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#history-3"}, +"a3fb968a": {"dfnID":"a3fb968a","dfnText":"surrogate","external":true,"refSections":[{"refs":[{"id":"ref-for-surrogate"}],"title":"7.2. Represent strings appropriately"}],"url":"https://infra.spec.whatwg.org/#surrogate"}, "a46ec9f9": {"dfnID":"a46ec9f9","dfnText":"IDBDatabase","external":true,"refSections":[{"refs":[{"id":"ref-for-idbdatabase"}],"title":"6.8. How to decide between Events and Observers"}],"url":"https://w3c.github.io/IndexedDB/#idbdatabase"}, "a4eb3c57": {"dfnID":"a4eb3c57","dfnText":"used value","external":true,"refSections":[{"refs":[{"id":"ref-for-used-value"},{"id":"ref-for-used-value\u2460"}],"title":"3.3. Choose the computed value type based on how the property should inherit"}],"url":"https://drafts.csswg.org/css-cascade-5/#used-value"}, "aaa103c9": {"dfnID":"aaa103c9","dfnText":"compatMode","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-document-compatmode"}],"title":"Use casing rules consistent with existing APIs"}],"url":"https://dom.spec.whatwg.org/#dom-document-compatmode"}, @@ -4068,10 +4058,10 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content { let refsData = { "https://dom.spec.whatwg.org/#abortcontroller": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"AbortController","type":"interface","url":"https://dom.spec.whatwg.org/#abortcontroller"}, +"https://dom.spec.whatwg.org/#abortcontroller-signal-abort": {"export":true,"for_":["AbortController"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"signal abort","type":"dfn","url":"https://dom.spec.whatwg.org/#abortcontroller-signal-abort"}, "https://dom.spec.whatwg.org/#abortsignal": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"AbortSignal","type":"interface","url":"https://dom.spec.whatwg.org/#abortsignal"}, "https://dom.spec.whatwg.org/#abortsignal-add": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"add","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-add"}, "https://dom.spec.whatwg.org/#abortsignal-remove": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"remove","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-remove"}, -"https://dom.spec.whatwg.org/#abortsignal-signal-abort": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"signal abort","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-signal-abort"}, "https://dom.spec.whatwg.org/#concept-event-fire": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"fire an event","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-event-fire"}, "https://dom.spec.whatwg.org/#dom-abortcontroller-abort": {"export":true,"for_":["AbortController"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"abort()","type":"method","url":"https://dom.spec.whatwg.org/#dom-abortcontroller-abort"}, "https://dom.spec.whatwg.org/#dom-addeventlisteneroptions-once": {"export":true,"for_":["AddEventListenerOptions"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"once","type":"dict-member","url":"https://dom.spec.whatwg.org/#dom-addeventlisteneroptions-once"}, @@ -4110,7 +4100,7 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://drafts.csswg.org/mediaqueries-5/#valdef-custom-media-true": {"export":true,"for_":["@custom-media"],"level":"5","normative":true,"shortname":"mediaqueries","spec":"mediaqueries-5","status":"current","text":"true","type":"value","url":"https://drafts.csswg.org/mediaqueries-5/#valdef-custom-media-true"}, "https://fetch.spec.whatwg.org/#body": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"Body","type":"interface","url":"https://fetch.spec.whatwg.org/#body"}, "https://fetch.spec.whatwg.org/#dom-body-json": {"export":true,"for_":["Body"],"level":"1","normative":true,"shortname":"fetch","spec":"fetch","status":"current","text":"json()","type":"method","url":"https://fetch.spec.whatwg.org/#dom-body-json"}, -"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, +"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"reflect","type":"dfn","url":"https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflect"}, "https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"custom element","type":"dfn","url":"https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-ismap": {"export":true,"for_":["img"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"ismap","type":"element-attr","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-ismap"}, "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-ismap": {"export":true,"for_":["HTMLImageElement"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"isMap","type":"attribute","url":"https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-ismap"}, @@ -4139,10 +4129,12 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://html.spec.whatwg.org/multipage/webappapis.html#task-queue": {"export":false,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"task queues","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#task-queue"}, "https://html.spec.whatwg.org/multipage/webappapis.html#windoweventhandlers": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"WindowEventHandlers","type":"interface","url":"https://html.spec.whatwg.org/multipage/webappapis.html#windoweventhandlers"}, "https://infra.spec.whatwg.org/#ascii-code-point": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"ascii code point","type":"dfn","url":"https://infra.spec.whatwg.org/#ascii-code-point"}, +"https://infra.spec.whatwg.org/#code-unit": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"code unit","type":"dfn","url":"https://infra.spec.whatwg.org/#code-unit"}, "https://infra.spec.whatwg.org/#implementation-defined": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"implementation-defined","type":"dfn","url":"https://infra.spec.whatwg.org/#implementation-defined"}, "https://infra.spec.whatwg.org/#scalar-value": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"scalar value","type":"dfn","url":"https://infra.spec.whatwg.org/#scalar-value"}, "https://infra.spec.whatwg.org/#scalar-value-string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"scalar value string","type":"dfn","url":"https://infra.spec.whatwg.org/#scalar-value-string"}, "https://infra.spec.whatwg.org/#string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"string","type":"dfn","url":"https://infra.spec.whatwg.org/#string"}, +"https://infra.spec.whatwg.org/#surrogate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"surrogate","type":"dfn","url":"https://infra.spec.whatwg.org/#surrogate"}, "https://tc39.github.io/ecma262/#sec-bigint-objects": {"export":true,"for_":[],"level":"","normative":true,"shortname":"ecma262","spec":"ecma262","status":"anchor-block","text":"BigInt","type":"interface","url":"https://tc39.github.io/ecma262/#sec-bigint-objects"}, "https://tc39.github.io/ecma262/#sec-date-objects": {"export":true,"for_":[],"level":"","normative":true,"shortname":"ecma262","spec":"ecma262","status":"anchor-block","text":"Date","type":"interface","url":"https://tc39.github.io/ecma262/#sec-date-objects"}, "https://tc39.github.io/ecma262/#sec-error-objects": {"export":true,"for_":[],"level":"","normative":true,"shortname":"ecma262","spec":"ecma262","status":"anchor-block","text":"Error","type":"interface","url":"https://tc39.github.io/ecma262/#sec-error-objects"}, @@ -4156,11 +4148,9 @@ <h2 class="no-num no-ref heading settled" id="issues-index"><span class="content "https://w3c.github.io/IndexedDB/#idbdatabase": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"current","text":"IDBDatabase","type":"interface","url":"https://w3c.github.io/IndexedDB/#idbdatabase"}, "https://w3c.github.io/IntersectionObserver/#intersectionobserver": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"intersection-observer","spec":"intersection-observer","status":"current","text":"IntersectionObserver","type":"interface","url":"https://w3c.github.io/IntersectionObserver/#intersectionobserver"}, "https://w3c.github.io/hr-time/#dom-domhighrestimestamp": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"hr-time","spec":"hr-time-3","status":"current","text":"DOMHighResTimeStamp","type":"typedef","url":"https://w3c.github.io/hr-time/#dom-domhighrestimestamp"}, -"https://w3c.github.io/i18n-glossary/#def_code_unit": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"code units","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, -"https://w3c.github.io/i18n-glossary/#dfn-surrogate": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"surrogates","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "https://w3c.github.io/manifest/#dfn-short_name": {"export":true,"for_":["manifest"],"level":"1","normative":true,"shortname":"appmanifest","spec":"appmanifest","status":"current","text":"short_name","type":"dfn","url":"https://w3c.github.io/manifest/#dfn-short_name"}, -"https://w3c.github.io/payment-request/#dom-paymentrequest": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"payment-request","spec":"payment-request-1.1","status":"current","text":"PaymentRequest","type":"interface","url":"https://w3c.github.io/payment-request/#dom-paymentrequest"}, -"https://w3c.github.io/payment-request/#dom-paymentrequest-show": {"export":true,"for_":["PaymentRequest"],"level":"1","normative":true,"shortname":"payment-request","spec":"payment-request-1.1","status":"current","text":"show()","type":"method","url":"https://w3c.github.io/payment-request/#dom-paymentrequest-show"}, +"https://w3c.github.io/payment-request/#dom-paymentrequest": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"payment-request","spec":"payment-request","status":"current","text":"PaymentRequest","type":"interface","url":"https://w3c.github.io/payment-request/#dom-paymentrequest"}, +"https://w3c.github.io/payment-request/#dom-paymentrequest-show": {"export":true,"for_":["PaymentRequest"],"level":"1","normative":true,"shortname":"payment-request","spec":"payment-request","status":"current","text":"show()","type":"method","url":"https://w3c.github.io/payment-request/#dom-paymentrequest-show"}, "https://w3c.github.io/pointerevents/#dom-pointerevent-pointerid": {"export":true,"for_":["PointerEvent"],"level":"3","normative":true,"shortname":"pointerevents","spec":"pointerevents3","status":"current","text":"pointerId","type":"attribute","url":"https://w3c.github.io/pointerevents/#dom-pointerevent-pointerid"}, "https://w3c.github.io/remote-playback/#dfn-remote-playback-devices": {"export":true,"for_":[],"level":"","normative":true,"shortname":"remote-playback","spec":"remote-playback","status":"anchor-block","text":"remote playback device","type":"dfn","url":"https://w3c.github.io/remote-playback/#dfn-remote-playback-devices"}, "https://w3c.github.io/remote-playback/#remoteplayback-interface": {"export":true,"for_":[],"level":"","normative":true,"shortname":"remote-playback","spec":"remote-playback","status":"anchor-block","text":"RemotePlayback","type":"interface","url":"https://w3c.github.io/remote-playback/#remoteplayback-interface"}, diff --git a/tests/github/w3ctag/evergreen-web/index.console.txt b/tests/github/w3ctag/evergreen-web/index.console.txt index aa7693d72f..fa036dc3a7 100644 --- a/tests/github/w3ctag/evergreen-web/index.console.txt +++ b/tests/github/w3ctag/evergreen-web/index.console.txt @@ -1,3 +1,5 @@ LINE 9: Incorrectly formatted metadata line: <!-- Group doesn't currently generate correct license info, so use copyright no, temporarily --> +FATAL ERROR: Not all required metadata was provided: + Missing 'TR' diff --git a/tests/github/w3ctag/evergreen-web/index.html b/tests/github/w3ctag/evergreen-web/index.html index 96cc5077d3..9807d34e45 100644 --- a/tests/github/w3ctag/evergreen-web/index.html +++ b/tests/github/w3ctag/evergreen-web/index.html @@ -1,1494 +1,14 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>The evergreen web</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> -<style data-fill-with="stylesheet">/****************************************************************************** - * Style sheet for the W3C specifications * - * - * Special classes handled by this style sheet include: - * - * Indices - * - .toc for the Table of Contents (<ol class="toc">) - * + <span class="secno"> for the section numbers - * - #toc for the Table of Contents (<nav id="toc">) - * - ul.index for Indices (<a href="#ref">term</a><span>, in § N.M</span>) - * - table.index for Index Tables (e.g. for properties or elements) - * - * Structural Markup - * - table.data for general data tables - * -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results ! - * -> use <table class='complex data'> for extra-complex tables - * -> use <td class='long'> for paragraph-length cell content - * -> use <td class='pre'> when manual line breaks/indentation would help readability - * - dl.switch for switch statements - * - ol.algorithm for algorithms (helps to visualize nesting) - * - .figure and .caption (HTML4) and figure and figcaption (HTML5) - * -> .sidefigure for right-floated figures - * - ins/del - * -> ins/del.c### for candidate and proposed changes (amendments) - * - * Code - * - pre and code - * - * Special Sections - * - .note for informative notes (div, p, span, aside, details) - * - .example for informative examples (div, p, pre, span) - * - .issue for issues (div, p, span) - * - .advisement for loud normative statements (div, p, strong) - * - .annoying-warning for spec obsoletion notices (div, aside, details) - * - .correction for "candidate corrections" (div, aside, details, section) - * - .addition for "candidate additions" (div, aside, details, section) - * - .correction.proposed for "proposed corrections" (div, aside, details, section) - * - .addition.proposed for "proposed additions" (div, aside, details, section) - * - * Definition Boxes - * - pre.def for WebIDL definitions - * - table.def for tables that define other entities (e.g. CSS properties) - * - dl.def for definition lists that define other entitles (e.g. HTML elements) - * - * Numbering - * - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>) - * - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>) - * - ::before styled for CSS-generated issue/example/figure numbers: - * -> Documents wishing to use this only need to add - * figcaption::before, - * .caption::before { content: "Figure " counter(figure) " "; } - * .example::before { content: "Example " counter(example) " "; } - * .issue::before { content: "Issue " counter(issue) " "; } - * - * Header Stuff (ignore, just don't conflict with these classes) - * - .head for the header - * - .copyright for the copyright - * - * Outdated warning for old specs - * - * Miscellaneous - * - .overlarge for things that should be as wide as possible, even if - * that overflows the body text area. This can be used on an item or - * on its container, depending on the effect desired. - * Note that this styling basically doesn't help at all when printing, - * since A4 paper isn't much wider than the max-width here. - * It's better to design things to fit into a narrower measure if possible. - * - * - js-added ToC jump links (see fixup.js) - * - ******************************************************************************/ - -/* color variables included separately for reliability */ - -/******************************************************************************/ -/* Body */ -/******************************************************************************/ - - html { - } - - body { - counter-reset: example figure issue; - - /* Layout */ - max-width: 50em; /* limit line length to 50em for readability */ - margin: 0 auto; /* center text within page */ - padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */ - padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */ - - /* Typography */ - line-height: 1.5; - font-family: sans-serif; - widows: 2; - orphans: 2; - word-wrap: break-word; - overflow-wrap: break-word; - hyphens: auto; - - color: black; - color: var(--text); - background: white top left fixed no-repeat; - background: var(--bg) top left fixed no-repeat; - background-size: 25px auto; - } - - -/******************************************************************************/ -/* Front Matter & Navigation */ -/******************************************************************************/ - -/** Header ********************************************************************/ - - div.head { margin-bottom: 1em; } - div.head hr { border-style: solid; } - - div.head h1 { - font-weight: bold; - margin: 0 0 .1em; - font-size: 220%; - } - - div.head h2 { margin-bottom: 1.5em;} - -/** W3C Logo ******************************************************************/ - - .head .logo { - float: right; - margin: 0.4rem 0 0.2rem .4rem; - } - - .head img[src*="logos/W3C"] { - display: block; - border: solid #1a5e9a; - border: solid var(--logo-bg); - border-width: .65rem .7rem .6rem; - border-radius: .4rem; - background: #1a5e9a; - background: var(--logo-bg); - color: white; - color: var(--logo-text); - font-weight: bold; - } - - .head a:hover > img[src*="logos/W3C"], - .head a:focus > img[src*="logos/W3C"] { - opacity: .8; - } - - .head a:active > img[src*="logos/W3C"] { - background: #c00; - background: var(--logo-active-bg); - border-color: #c00; - border-color: var(--logo-active-bg); - } - - /* see also additional rules in Link Styling section */ - -/** Copyright *****************************************************************/ - - p.copyright, - p.copyright small { font-size: small; } - -/** Back to Top / ToC Toggle **************************************************/ - - @media print { - #toc-nav { - display: none; - } - } - @media not print { - #toc-nav { - position: fixed; - z-index: 3; - bottom: 0; left: 0; - margin: 0; - min-width: 1.33em; - border-top-right-radius: 2rem; - box-shadow: 0 0 2px; - font-size: 1.5em; - } - #toc-nav > a { - display: block; - white-space: nowrap; - - height: 1.33em; - padding: .1em 0.3em; - margin: 0; - - box-shadow: 0 0 2px; - border: none; - border-top-right-radius: 1.33em; - - color: #707070; - color: var(--tocnav-normal-text); - background: white; - background: var(--tocnav-normal-bg); - } - #toc-nav > a:hover, - #toc-nav > a:focus { - color: black; - color: var(--tocnav-hover-text); - background: #f8f8f8; - background: var(--tocnav-hover-bg); - } - #toc-nav > a:active { - color: #c00; - color: var(--tocnav-active-text); - background: white; - background: var(--tocnav-active-bg); - } - - #toc-nav > #toc-jump { - padding-bottom: 2em; - margin-bottom: -1.9em; - } - - /* statusbar gets in the way on keyboard focus; remove once browsers fix */ - #toc-nav > a[href="#toc"]:not(:hover):focus:last-child { - padding-bottom: 1.5rem; - } - - #toc-nav:not(:hover) > a:not(:focus) > span + span { - /* Ideally this uses :focus-within on #toc-nav */ - display: none; - } - #toc-nav > a > span + span { - padding-right: 0.2em; - } - } - -/** ToC Sidebar ***************************************************************/ - - /* Floating sidebar */ - @media screen { - body.toc-sidebar #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - max-width: 80%; - max-width: calc(100% - 2em - 26px); - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body.toc-sidebar #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - body.toc-sidebar #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - /* Hide main scroller when only the ToC is visible anyway */ - @media screen and (max-width: 28em) { - body.toc-sidebar { - overflow: hidden; - } - } - - /* Sidebar with its own space */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body:not(.toc-inline) #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - - body:not(.toc-inline) { - padding-left: 29em; - } - /* See also Overflow section at the bottom */ - - body:not(.toc-inline) #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) { - margin: 0 4em; - } - } - -/******************************************************************************/ -/* Sectioning */ -/******************************************************************************/ - -/** Headings ******************************************************************/ - - h1, h2, h3, h4, h5, h6, dt { - page-break-after: avoid; - page-break-inside: avoid; - font: 100% sans-serif; /* Reset all font styling to clear out UA styles */ - font-family: inherit; /* Inherit the font family. */ - line-height: 1.2; /* Keep wrapped headings compact */ - hyphens: manual; /* Hyphenated headings look weird */ - } - - h2, h3, h4, h5, h6 { - margin-top: 3rem; - } - - h1, h2, h3 { - color: #005A9C; - color: var(--heading-text); - } - - h1 { font-size: 170%; } - h2 { font-size: 140%; } - h3 { font-size: 120%; } - h4 { font-weight: bold; } - h5 { font-style: italic; } - h6 { font-variant: small-caps; } - dt { font-weight: bold; } - -/** Subheadings ***************************************************************/ - - h1 + h2, - #profile-and-date { - /* #profile-and-date is a subtitle in an H2 under the H1 */ - margin-top: 0; - } - h2 + h3, - h3 + h4, - h4 + h5, - h5 + h6 { - margin-top: 1.2em; /* = 1 x line-height */ - } - -/** Section divider ***********************************************************/ - - :not(.head) > :not(.head) + hr { - font-size: 1.5em; - text-align: center; - margin: 1em auto; - height: auto; - color: black; - color: var(--hr-text); - border: transparent solid 0; - background: transparent; - } - :not(.head) > hr::before { - content: "\2727\2003\2003\2727\2003\2003\2727"; - } - -/******************************************************************************/ -/* Paragraphs and Lists */ -/******************************************************************************/ - - p { - margin: 1em 0; - } - - dd > p:first-child, - li > p:first-child { - margin-top: 0; - } - - ul, ol { - margin-left: 0; - padding-left: 2em; - } - - li { - margin: 0.25em 0 0.5em; - padding: 0; - } - - dl dd { - margin: 0 0 .5em 2em; - } - - .head dd + dd { /* compact for header */ - margin-top: -.5em; - } - - /* Style for algorithms */ - ol.algorithm ol:not(.algorithm), - .algorithm > ol ol:not(.algorithm) { - border-left: 0.5em solid #DEF; - border-left: 0.5em solid var(--algo-border); - } - - /* Put nice boxes around each algorithm. */ - [data-algorithm]:not(.heading) { - padding: .5em; - border: thin solid #ddd; - border: thin solid var(--algo-border); - border-radius: .5em; - margin: .5em calc(-0.5em - 1px); - } - [data-algorithm]:not(.heading) > :first-child { - margin-top: 0; - } - [data-algorithm]:not(.heading) > :last-child { - margin-bottom: 0; - } - - /* Style for switch/case <dl>s */ - dl.switch > dd > ol.only, - dl.switch > dd > .only > ol { - margin-left: 0; - } - dl.switch > dd > ol.algorithm, - dl.switch > dd > .algorithm > ol { - margin-left: -2em; - } - dl.switch { - padding-left: 2em; - } - dl.switch > dt { - text-indent: -1.5em; - margin-top: 1em; - } - dl.switch > dt + dt { - margin-top: 0; - } - dl.switch > dt::before { - content: '\21AA'; - padding: 0 0.5em 0 0; - display: inline-block; - width: 1em; - text-align: right; - line-height: 0.5em; - } - -/** Terminology Markup ********************************************************/ - - -/******************************************************************************/ -/* Inline Markup */ -/******************************************************************************/ - -/** Terminology Markup ********************************************************/ - dfn { /* Defining instance */ - font-weight: bolder; - } - a > i { /* Instance of term */ - font-style: normal; - } - dt dfn code, code.idl { - font-size: inherit; - } - dfn var { - font-style: normal; - } - -/** Change Marking ************************************************************/ - - del { - color: #aa0000; - color: var(--del-text); - background: transparent; - background: var(--del-bg); - text-decoration: line-through; - } - ins { - color: #006100; - color: var(--ins-text); - background: transparent; - background: var(--ins-bg); - text-decoration: underline; - } - - /* for amendments (candidate/proposed changes) */ - - .amendment ins, .correction ins, .addition ins, - ins[class^=c] { - text-decoration-style: dotted; - } - .amendment del, .correction del, .addition del, - del[class^=c] { - text-decoration-style: dotted; - } - .amendment.proposed ins, .correction.proposed ins, .addition.proposed ins, - ins[class^=c].proposed { - text-decoration-style: double; - } - .amendment.proposed del, .correction.proposed del, .addition.proposed del, - del[class^=c].proposed { - text-decoration-style: double; - } - -/** Miscellaneous improvements to inline formatting ***************************/ - - sup { - vertical-align: super; - font-size: 80% - } - -/******************************************************************************/ -/* Code */ -/******************************************************************************/ - -/** General monospace/pre rules ***********************************************/ - - pre, code, samp { - font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace; - font-size: .9em; - hyphens: none; - text-transform: none; - text-align: left; - text-align: start; - font-variant: normal; - orphans: 3; - widows: 3; - page-break-before: avoid; - } - pre code, - code code { - font-size: 100%; - } - - pre { - margin-top: 1em; - margin-bottom: 1em; - overflow: auto; - } - -/** Inline Code fragments *****************************************************/ - - /* Do something nice. */ - -/******************************************************************************/ -/* Links */ -/******************************************************************************/ - -/** General Hyperlinks ********************************************************/ - - /* We hyperlink a lot, so make it less intrusive */ - a[href] { - color: #034575; - color: var(--a-normal-text); - text-decoration: underline #707070; - text-decoration: underline var(--a-normal-underline); - text-decoration-skip-ink: none; - } - a:visited { - color: #034575; - color: var(--a-visited-text); - text-decoration-color: #bbb; - text-decoration-color: var(--a-visited-underline); - } - - /* Indicate interaction with the link */ - a[href]:focus, - a[href]:hover { - text-decoration-thickness: 2px; - } - a[href]:active { - color: #c00; - color: var(--a-active-text); - text-decoration-color: #c00; - text-decoration-color: var(--a-active-underline); - } - - /* Backout above styling for W3C logo */ - .head .logo, - .head .logo a { - border: none; - text-decoration: none; - background: transparent; - } - -/******************************************************************************/ -/* Images */ -/******************************************************************************/ - - img { - border-style: none; - } - - img, svg { - /* Intentionally not color-scheme aware. */ - background: white; - } - - /* For autogen numbers, add - .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; } - */ - - figure, .figure, .sidefigure { - page-break-inside: avoid; - text-align: center; - margin: 2.5em 0; - } - .figure img, .sidefigure img, figure img, - .figure object, .sidefigure object, figure object { - max-width: 100%; - margin: auto; - height: auto; - } - .figure pre, .sidefigure pre, figure pre { - text-align: left; - display: table; - margin: 1em auto; - } - .figure table, figure table { - margin: auto; - } - @media screen and (min-width: 20em) { - .sidefigure { - float: right; - width: 50%; - margin: 0 0 0.5em 0.5em; - } - } - .caption, figcaption, caption { - font-style: italic; - font-size: 90%; - } - .caption::before, figcaption::before, figcaption > .marker { - font-weight: bold; - } - .caption, figcaption { - counter-increment: figure; - } - - /* DL list is indented 2em, but figure inside it is not */ - dd > .figure, dd > figure { margin-left: -2em; } - -/******************************************************************************/ -/* Colored Boxes */ -/******************************************************************************/ - - .issue, .note, .example, .assertion, .advisement, blockquote, - .amendment, .correction, .addition { - margin: 1em auto; - padding: .5em; - border: .5em; - border-left-style: solid; - page-break-inside: avoid; - } - span.issue, span.note { - padding: .1em .5em .15em; - border-right-style: solid; - } - - blockquote > :first-child, - .note > p:first-child, - .issue > p:first-child, - .amendment > p:first-child, - .correction > p:first-child, - .addition > p:first-child { - margin-top: 0; - } - blockquote > :last-child, - .note > p:last-child, - .issue > p:last-child, - .amendment > p:last-child, - .correction > p:last-child, - .addition > p:last-child { - margin-bottom: 0; - } - - - .issue::before, .issue > .marker, - .example::before, .example > .marker, - .note::before, .note > .marker, - details.note > summary > .marker, - .amendment::before, .amendment > .marker, - details.amendment > summary > .marker, - .addition::before, .addition > .marker, - addition.amendment > summary > .marker, - .correction::before, .correction > .marker, - correction.amendment > summary > .marker - { - text-transform: uppercase; - padding-right: 1em; - } - - .example::before, .example > .marker { - display: block; - padding-right: 0em; - } - -/** Blockquotes ***************************************************************/ - - blockquote { - border-color: silver; - border-color: var(--blockquote-border); - background: transparent; - background: var(--blockquote-bg); - color: currentcolor; - color: var(--blockquote-text); - } - -/** Open issue ****************************************************************/ - - .issue { - border-color: #e05252; - border-color: var(--issue-border); - background: #fbe9e9; - background: var(--issue-bg); - color: black; - color: var(--issue-text); - counter-increment: issue; - overflow: auto; - } - .issue::before, .issue > .marker { - color: #831616; - color: var(--issueheading-text); - } - /* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers, - or use class="marker" to mark up the issue number in source. */ - -/** Example *******************************************************************/ - - .example { - border-color: #e0cb52; - border-color: var(--example-border); - background: #fcfaee; - background: var(--example-bg); - color: black; - color: var(--example-text); - counter-increment: example; - overflow: auto; - clear: both; - } - .example::before, .example > .marker { - color: #574b0f; - color: var(--exampleheading-text); - } - /* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers, - or use class="marker" to mark up the example number in source. */ - -/** Non-normative Note ********************************************************/ - - .note { - border-color: #52e052; - border-color: var(--note-border); - background: #e9fbe9; - background: var(--note-bg); - color: black; - color: var(--note-text); - overflow: auto; - } - - .note::before, .note > .marker, - details.note > summary { - color: hsl(120, 70%, 30%); - color: var(--noteheading-text); - } - /* Add .note::before { content: "Note "; } for autogen label, - or use class="marker" to mark up the label in source. */ - - details.note[open] > summary { - border-bottom: 1px silver solid; - border-bottom: 1px var(--notesummary-underline) solid; - } - -/** Assertion Box *************************************************************/ - /* for assertions in algorithms */ - - .assertion { - border-color: #AAA; - border-color: var(--assertion-border); - background: #EEE; - background: var(--assertion-bg); - color: black; - color: var(--assertion-text); - } - -/** Advisement Box ************************************************************/ - /* for attention-grabbing normative statements */ - - .advisement { - border-color: orange; - border-color: var(--advisement-border); - border-style: none solid; - background: #fec; - background: var(--advisement-bg); - color: black; - color: var(--advisement-text); - } - strong.advisement { - display: block; - text-align: center; - } - .advisement::before, .advisement > .marker { - color: #b35f00; - color: var(--advisementheading-text); - } - -/** Amendment Box *************************************************************/ - - .amendment, .correction, .addition { - border-color: #330099; - border-color: var(--amendment-border); - background: #F5F0FF; - background: var(--amendment-bg); - color: black; - color: var(--amendment-text); - } - .amendment.proposed, .correction.proposed, .addition.proposed { - border-style: solid; - border-block-width: 0.25em; - } - .amendment::before, .amendment > .marker, - details.amendment > summary::before, details.amendment > summary > .marker, - .correction::before, .correction > .marker, - details.correction > summary::before, details.correction > summary > .marker, - .addition::before, .addition > .marker, - details.addition > summary::before, details.addition > summary > .marker { - color: #220066; - color: var(--amendmentheading-text); - } - .amendment.proposed::before, .amendment.proposed > .marker, - details.amendment.proposed > summary::before, details.amendment.proposed > summary > .marker, - .correction.proposed::before, .correction.proposed > .marker, - details.correction.proposed > summary::before, details.correction.proposed > summary > .marker, - .addition.proposed::before, .addition.proposed > .marker, - details.addition.proposed > summary::before, details.addition.proposed > summary > .marker { - font-weight: bold; - } - -/** Spec Obsoletion Notice ****************************************************/ - /* obnoxious obsoletion notice for older/abandoned specs. */ - - details { - display: block; - } - summary { - font-weight: bolder; - } - - .annoying-warning:not(details), - details.annoying-warning:not([open]) > summary, - details.annoying-warning[open] { - background: hsla(40,100%,50%,0.95); - background: var(--warning-bg); - color: black; - color: var(--warning-text); - padding: .75em 1em; - border: red; - border: var(--warning-border); - border-style: solid none; - box-shadow: 0 2px 8px black; - text-align: center; - } - .annoying-warning :last-child { - margin-bottom: 0; - } - -@media not print { - details.annoying-warning[open] { - position: fixed; - left: 0; - right: 0; - bottom: 2em; - z-index: 1000; - } -} - - details.annoying-warning:not([open]) > summary { - text-align: center; - } - -/** Entity Definition Boxes ***************************************************/ - - .def { - padding: .5em 1em; - background: #def; - background: var(--def-bg); - margin: 1.2em 0; - border-left: 0.5em solid #8ccbf2; - border-left: 0.5em solid var(--def-border); - color: black; - color: var(--def-text); - } - -/******************************************************************************/ -/* Tables */ -/******************************************************************************/ - - th, td { - text-align: left; - text-align: start; - } - -/** Property/Descriptor Definition Tables *************************************/ - - table.def { - /* inherits .def box styling, see above */ - width: 100%; - border-spacing: 0; - } - - table.def td, - table.def th { - padding: 0.5em; - vertical-align: baseline; - border-bottom: 1px solid #bbd7e9; - border-bottom: 1px solid var(--defrow-border); - } - - table.def > tbody > tr:last-child th, - table.def > tbody > tr:last-child td { - border-bottom: 0; - } - - table.def th { - font-style: italic; - font-weight: normal; - padding-left: 1em; - width: 3em; - } - - /* For when values are extra-complex and need formatting for readability */ - table td.pre { - white-space: pre-wrap; - } - - /* A footnote at the bottom of a def table */ - table.def td.footnote { - padding-top: 0.6em; - } - table.def td.footnote::before { - content: " "; - display: block; - height: 0.6em; - width: 4em; - border-top: thin solid; - } - -/** Data tables (and properly marked-up index tables) *************************/ - /* - <table class="data"> highlights structural relationships in a table - when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute) - - Use class="complex data" for particularly complicated tables -- - (This will draw more lines: busier, but clearer.) - - Use class="long" on table cells with paragraph-like contents - (This will adjust text alignment accordingly.) - Alternately use class="longlastcol" on tables, to have the last column assume "long". - */ - - table { - word-wrap: normal; - overflow-wrap: normal; - hyphens: manual; - } - - table.data, - table.index { - margin: 1em auto; - border-collapse: collapse; - border: hidden; - width: 100%; - } - table.data caption, - table.index caption { - max-width: 50em; - margin: 0 auto 1em; - } - - table.data td, table.data th, - table.index td, table.index th { - padding: 0.5em 1em; - border-width: 1px; - border-color: silver; - border-color: var(--datacell-border); - border-top-style: solid; - } - - table.data thead td:empty { - padding: 0; - border: 0; - } - - table.data thead, - table.index thead, - table.data tbody, - table.index tbody { - border-bottom: 2px solid; - } - - table.data colgroup, - table.index colgroup { - border-left: 2px solid; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - border-right: 2px solid; - border-top: 1px solid silver; - border-top: 1px solid var(--datacell-border); - padding-right: 1em; - } - - table.data th[colspan], - table.data td[colspan] { - text-align: center; - } - - table.complex.data th, - table.complex.data td { - border: 1px solid silver; - border: 1px solid var(--datacell-border); - text-align: center; - } - - table.data.longlastcol td:last-child, - table.data td.long { - vertical-align: baseline; - text-align: left; - } - - table.data img { - vertical-align: middle; - } - - -/* -Alternate table alignment rules - - table.data, - table.index { - text-align: center; - } - - table.data thead th[scope="row"], - table.index thead th[scope="row"] { - text-align: right; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - text-align: right; - } - -Possible extra rowspan handling - - table.data tbody th[rowspan]:not([rowspan='1']), - table.index tbody th[rowspan]:not([rowspan='1']), - table.data tbody td[rowspan]:not([rowspan='1']), - table.index tbody td[rowspan]:not([rowspan='1']) { - border-left: 1px solid silver; - } - - table.data tbody th[rowspan]:first-child, - table.index tbody th[rowspan]:first-child, - table.data tbody td[rowspan]:first-child, - table.index tbody td[rowspan]:first-child{ - border-left: 0; - border-right: 1px solid silver; - } -*/ - -/******************************************************************************/ -/* Indices */ -/******************************************************************************/ - - -/** Table of Contents *********************************************************/ - - .toc a { - /* More spacing; use padding to make it part of the click target. */ - padding: 0.1rem 1px 0; - /* Larger, more consistently-sized click target */ - display: block; - /* Switch to using border-bottom for underlines */ - text-decoration: none; - border-bottom: 1px solid; - /* Reverse color scheme */ - color: black; - color: var(--toclink-text); - border-color: #3980b5; - border-color: var(--toclink-underline); - } - .toc a:visited { - color: black; - color: var(--toclink-visited-text); - border-color: #054572; - border-color: var(--toclink-visited-underline); - } - .toc a:focus, - .toc a:hover { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom-width: 3px; - margin-bottom: -2px; - } - .toc a:not(:focus):not(:hover) { - /* Allow colors to cascade through from link styling */ - border-bottom-color: transparent; - } - - .toc, .toc ol, .toc ul, .toc li { - list-style: none; /* Numbers must be inlined into source */ - /* because generated content isn't search/selectable and markers can't do multilevel yet */ - margin: 0; - padding: 0; - } - .toc { - line-height: 1.1em; - } - - /* ToC not indented until third level, but font style & margins show hierarchy */ - .toc > li { font-weight: bold; } - .toc > li li { font-weight: normal; } - .toc > li li li { font-size: 95%; } - .toc > li li li li { font-size: 90%; } - .toc > li li li li li { font-size: 85%; } - - /* @supports not (display:grid) { */ - .toc > li { margin: 1.5rem 0; } - .toc > li li { margin: 0.3rem 0; } - .toc > li li li { margin-left: 2rem; } - - /* Section numbers in a column of their own */ - .toc .secno { - float: left; - width: 4rem; - white-space: nowrap; - } - .toc > li li li li .secno { font-size: 85%; } - .toc > li li li li li .secno { font-size: 100%; } - - .toc li { - clear: both; - } - - :not(li) > .toc { margin-left: 5rem; } - .toc .secno { margin-left: -5rem; } - .toc > li li li .secno { margin-left: -7rem; } - .toc > li li li li .secno { margin-left: -9rem; } - .toc > li li li li li .secno { margin-left: -11rem; } - - /* Tighten up indentation in narrow ToCs */ - @media (max-width: 30em) { - :not(li) > .toc { margin-left: 4rem; } - .toc .secno { margin-left: -4rem; } - .toc > li li li { margin-left: 1rem; } - .toc > li li li .secno { margin-left: -5rem; } - .toc > li li li li .secno { margin-left: -6rem; } - .toc > li li li li li .secno { margin-left: -7rem; } - } - /* Loosen it on wide screens */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) :not(li) > .toc { margin-left: 4rem; } - body:not(.toc-inline) .toc .secno { margin-left: -4rem; } - body:not(.toc-inline) .toc > li li li { margin-left: 1rem; } - body:not(.toc-inline) .toc > li li li .secno { margin-left: -5rem; } - body:not(.toc-inline) .toc > li li li li .secno { margin-left: -6rem; } - body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; } - } - /* } */ - - @supports (display:grid) and (display:contents) { - /* Use #toc over .toc to override non-@supports rules. */ - #toc { - display: grid; - align-content: start; - grid-template-columns: auto 1fr; - grid-column-gap: 1rem; - column-gap: 1rem; - grid-row-gap: .6rem; - row-gap: .6rem; - } - #toc h2 { - grid-column: 1 / -1; - margin-bottom: 0; - } - #toc ol, - #toc li, - #toc a { - display: contents; - /* Switch <a> to subgrid when supported */ - } - #toc span { - margin: 0; - } - #toc > .toc > li > a > span { - /* The spans of the top-level list, - comprising the first items of each top-level section. */ - margin-top: 1.1rem; - } - #toc#toc .secno { /* Ugh, need more specificity to override base.css */ - grid-column: 1; - width: auto; - margin-left: 0; - } - #toc .content { - grid-column: 2; - width: auto; - margin-right: 1rem; - } - #toc .content:hover, - #toc .content:focus { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; - } - #toc li li li .content { - margin-left: 1rem; - } - #toc li li li li .content { - margin-left: 2rem; - } - } - - -/** Index *********************************************************************/ - - /* Index Lists: Layout */ - ul.index { margin-left: 0; columns: 15em; text-indent: 1em hanging; } - ul.index li { margin-left: 0; list-style: none; break-inside: avoid; } - ul.index li li { margin-left: 1em; } - ul.index dl { margin-top: 0; } - ul.index dt { margin: .2em 0 .2em 20px;} - ul.index dd { margin: .2em 0 .2em 40px;} - /* Index Lists: Typography */ - ul.index ul, - ul.index dl { font-size: smaller; } - @media not print { - ul.index li a + span { - white-space: nowrap; - color: transparent; } - ul.index li a:hover + span, - ul.index li a:focus + span { - color: #707070; - color: var(--indexinfo-text); - } - } - -/** Index Tables *****************************************************/ - /* See also the data table styling section, which this effectively subclasses */ - - table.index { - font-size: small; - border-collapse: collapse; - border-spacing: 0; - text-align: left; - margin: 1em 0; - } - - table.index td, - table.index th { - padding: 0.4em; - } - - table.index tr:hover td:not([rowspan]), - table.index tr:hover th:not([rowspan]) { - color: black; - color: var(--indextable-hover-text); - background: #f7f8f9; - background: var(--indextable-hover-bg); - } - - /* The link in the first column in the property table (formerly a TD) */ - table.index th:first-child a { - font-weight: bold; - } - -/** Outdated warning **********************************************************/ - -.outdated-spec { - color: black; - color: var(--outdatedspec-text); - background-color: rgba(0,0,0,0.5); - background-color: var(--outdatedspec-bg); -} - -.outdated-warning { - position: fixed; - bottom: 50%; - left: 0; - right: 0; - margin: 0 auto; - width: 50%; - background: maroon; - background: var(--outdated-bg); - color: white; - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - position: absolute; - top: 0; - right:0; - margin: 0; - border: 0; - padding: 0.25em 0.5em; - background: transparent; - color: white; - color: var(--outdated-text); - font:1em sans-serif; - text-align:center; -} - -.outdated-warning span { - display: block; -} - -.outdated-collapsed { - bottom: 0; - border-radius: 0; - width: 100%; - padding: 0; -} - -/******************************************************************************/ -/* Print */ -/******************************************************************************/ - - @media print { - /* Pages have their own margins. */ - html { - margin: 0; - } - /* Serif for print. */ - body { - font-family: serif; - } - - .outdated-warning { - position: absolute; - border-style: solid; - border-color: red; - } - - .outdated-warning input { - display: none; - } - } - @page { - margin: 1.5cm 1.1cm; - } - - - -/******************************************************************************/ -/* Overflow Control */ -/******************************************************************************/ - - .figure .caption, .sidefigure .caption, figcaption { - /* in case figure is overlarge, limit caption to 50em */ - max-width: 50rem; - margin-left: auto; - margin-right: auto; - } - .overlarge { - /* Magic to create good item positioning: - "content column" is 50ems wide at max; less on smaller screens. - Extra space (after ToC + content) is empty on the right. - - 1. When item < content column, centers item in column. - 2. When content < item < available, left-aligns. - 3. When item > available, fills available + scroll bar. - */ - display: grid; - grid-template-columns: minmax(0, 50em); - } - .overlarge > table { - /* limit preferred width of table */ - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - @media (min-width: 55em) { - .overlarge { - margin-right: calc(13px + 26.5rem - 50vw); - max-width: none; - } - } - @media screen and (min-width: 78em) { - body:not(.toc-inline) .overlarge { - /* 30.5em body padding 50em content area */ - margin-right: calc(40em - 50vw) !important; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) .overlarge { - /* 4em html margin 30.5em body padding 50em content area */ - margin-right: calc(84.5em - 100vw) !important; - } - } - - @media not print { - .overlarge { - overflow-x: auto; - /* See Lea Verou's explanation background-attachment: - * http://lea.verou.me/2012/04/background-attachment-local/ - * - background: top left / 4em 100% linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) local, - top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local, - top left / 1em 100% linear-gradient(to right, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - white; - background-repeat: no-repeat; - */ - } - } -</style> + <title>The evergreen web</title> + <meta content="FINDING" name="w3c-status"> + <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> <link href="https://w3ctag.github.io/evergreen-web/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> + <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ .css.css, .property.property, .descriptor.descriptor { color: var(--a-normal-text); @@ -1889,17 +409,22 @@ </style> <body class="h-entry"> <div class="head"> - <p data-fill-with="logo"></p> + <p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p> <h1>The evergreen web</h1> - <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span class="content">Finding of the tag, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></span></h2> - <div data-fill-with="spec-metadata"> - <dl> - <dt>This version: - <dd><a class="u-url" href="https://w3ctag.github.io/evergreen-web/">https://w3ctag.github.io/evergreen-web/</a> - <dt class="editor">Editor: - <dd class="editor p-author h-card vcard"><a class="p-name fn u-url url" href="https://hadleybeeman.com/">Hadley Beeman</a> - </dl> - </div> + <p id="w3c-state"><a href="https://www.w3.org/standards/types#FINDING">Finding of the TAG</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <details open> + <summary>More details about this document</summary> + <div data-fill-with="spec-metadata"> + <dl> + <dt>This version: + <dd><a class="u-url" href="https://w3ctag.github.io/evergreen-web/">https://w3ctag.github.io/evergreen-web/</a> + <dt>Editor's Draft: + <dd><a href="https://w3ctag.github.io/evergreen-web/">https://w3ctag.github.io/evergreen-web/</a> + <dt class="editor">Editor: + <dd class="editor p-author h-card vcard"><a class="p-name fn u-url url" href="https://hadleybeeman.com/">Hadley Beeman</a> + </dl> + </div> + </details> <div data-fill-with="warning"></div> <hr title="Separator for header"> </div> @@ -1908,6 +433,20 @@ <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="cont <p>Constant evolution is fundamental to the Web’s usefulness. Browsers that do not stay up-to-date place stress on the ecosystem. These products potentially fork the web, isolating their users and developers from the rest of the world.</p> <p>Browsers are a part of the web and therefore they must be continually updated. Vendors that ship browsers hold the power to keep the web moving forwards as a platform, or to hold it back.</p> </div> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> + <div data-fill-with="status"> + <p> <em>This section describes the status of this document at the time of its + publication. A list of current <abbr title="World Wide Web Consortium">W3C</abbr> publications and the + latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/"><abbr title="World Wide Web + Consortium">W3C</abbr> technical reports index</a>.</em> </p> + <p> This document was published by the <a href="https://www.w3.org/2001/tag/">W3C Technical Architecture Group + (TAG)</a> as a Finding of the TAG. + Publication as a Finding of the TAG does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. </p> + <p></p> + <p> Feedback and comments on this document are welcome. Please <a href="https://github.com/w3ctag/evergreen-web/issues">file an issue</a> in this document’s <a href="https://github.com/w3ctag/evergreen-web/">GitHub repository</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/2019/Process-20190301/" id="w3c_process_revision">1 March 2019 W3C Process + Document</a>. </p> + </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> @@ -1946,132 +485,4 @@ <h2 class="heading settled" data-level="3" id="updates"><span class="secno">3. < <p>Vendors must decide whether their products can browse the public web. Products that can load arbitrary content are “browsers”. Browsers must be regularly updated, especially to fix security and interoperability bugs — ideally with an automatic, secure update mechanism.</p> <p>This responsibility does not limit vendors' freedom to use elements of web technologies or browser-derived runtimes to create closed systems (e.g. digital signage platforms or intranet-specific environments) that do not access the public web.</p> </main> -<script> -(function() { - "use strict"; - var collapseSidebarText = '<span aria-hidden="true">←</span> ' - + '<span>Collapse Sidebar</span>'; - var expandSidebarText = '<span aria-hidden="true">→</span> ' - + '<span>Pop Out Sidebar</span>'; - var tocJumpText = '<span aria-hidden="true">↑</span> ' - + '<span>Jump to Table of Contents</span>'; - - var sidebarMedia = window.matchMedia('screen and (min-width: 78em)'); - var autoToggle = function(e){ toggleSidebar(e.matches) }; - if(sidebarMedia.addListener) { - sidebarMedia.addListener(autoToggle); - } - - function toggleSidebar(on) { - if (on == undefined) { - on = !document.body.classList.contains('toc-sidebar'); - } - - /* Don't scroll to compensate for the ToC if we're above it already. */ - var headY = 0; - var head = document.querySelector('.head'); - if (head) { - // terrible approx of "top of ToC" - headY += head.offsetTop + head.offsetHeight; - } - var skipScroll = window.scrollY < headY; - - var toggle = document.getElementById('toc-toggle'); - var tocNav = document.getElementById('toc'); - if (on) { - var tocHeight = tocNav.offsetHeight; - document.body.classList.add('toc-sidebar'); - document.body.classList.remove('toc-inline'); - toggle.innerHTML = collapseSidebarText; - if (!skipScroll) { - window.scrollBy(0, 0 - tocHeight); - } - tocNav.focus(); - sidebarMedia.addListener(autoToggle); // auto-collapse when out of room - } - else { - document.body.classList.add('toc-inline'); - document.body.classList.remove('toc-sidebar'); - toggle.innerHTML = expandSidebarText; - if (!skipScroll) { - window.scrollBy(0, tocNav.offsetHeight); - } - if (toggle.matches(':hover')) { - /* Unfocus button when not using keyboard navigation, - because I don't know where else to send the focus. */ - toggle.blur(); - } - } - } - - function createSidebarToggle() { - /* Create the sidebar toggle in JS; it shouldn't exist when JS is off. */ - var toggle = document.createElement('a'); - /* This should probably be a button, but appearance isn't standards-track.*/ - toggle.id = 'toc-toggle'; - toggle.class = 'toc-toggle'; - toggle.href = '#toc'; - toggle.innerHTML = collapseSidebarText; - - sidebarMedia.addListener(autoToggle); - var toggler = function(e) { - e.preventDefault(); - sidebarMedia.removeListener(autoToggle); // persist explicit off states - toggleSidebar(); - return false; - } - toggle.addEventListener('click', toggler, false); - - - /* Get <nav id=toc-nav>, or make it if we don't have one. */ - var tocNav = document.getElementById('toc-nav'); - if (!tocNav) { - tocNav = document.createElement('p'); - tocNav.id = 'toc-nav'; - /* Prepend for better keyboard navigation */ - document.body.insertBefore(tocNav, document.body.firstChild); - } - /* While we're at it, make sure we have a Jump to Toc link. */ - var tocJump = document.getElementById('toc-jump'); - if (!tocJump) { - tocJump = document.createElement('a'); - tocJump.id = 'toc-jump'; - tocJump.href = '#toc'; - tocJump.innerHTML = tocJumpText; - tocNav.appendChild(tocJump); - } - - tocNav.appendChild(toggle); - } - - var toc = document.getElementById('toc'); - if (toc) { - createSidebarToggle(); - toggleSidebar(sidebarMedia.matches); - - /* If the sidebar has been manually opened and is currently overlaying the text - (window too small for the MQ to add the margin to body), - then auto-close the sidebar once you click on something in there. */ - toc.addEventListener('click', function(e) { - if(e.target.tagName.toLowerCase() == "a" && document.body.classList.contains('toc-sidebar') && !sidebarMedia.matches) { - toggleSidebar(false); - } - }, false); - } - else { - console.warn("Can't find Table of Contents. Please use <nav id='toc'> around the ToC."); - } - - /* Wrap tables in case they overflow */ - var tables = document.querySelectorAll(':not(.overlarge) > table.data, :not(.overlarge) > table.index'); - var numTables = tables.length; - for (var i = 0; i < numTables; i++) { - var table = tables[i]; - var wrapper = document.createElement('div'); - wrapper.className = 'overlarge'; - table.parentNode.insertBefore(wrapper, table); - wrapper.appendChild(table); - } - -})(); -</script> \ No newline at end of file + <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> \ No newline at end of file diff --git a/tests/github/w3ctag/promises-guide/index.html b/tests/github/w3ctag/promises-guide/index.html index 7576164a83..0d1e3ed0e7 100644 --- a/tests/github/w3ctag/promises-guide/index.html +++ b/tests/github/w3ctag/promises-guide/index.html @@ -1,1494 +1,14 @@ <!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title>Writing Promise-Using Specifications</title> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> -<style data-fill-with="stylesheet">/****************************************************************************** - * Style sheet for the W3C specifications * - * - * Special classes handled by this style sheet include: - * - * Indices - * - .toc for the Table of Contents (<ol class="toc">) - * + <span class="secno"> for the section numbers - * - #toc for the Table of Contents (<nav id="toc">) - * - ul.index for Indices (<a href="#ref">term</a><span>, in § N.M</span>) - * - table.index for Index Tables (e.g. for properties or elements) - * - * Structural Markup - * - table.data for general data tables - * -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results ! - * -> use <table class='complex data'> for extra-complex tables - * -> use <td class='long'> for paragraph-length cell content - * -> use <td class='pre'> when manual line breaks/indentation would help readability - * - dl.switch for switch statements - * - ol.algorithm for algorithms (helps to visualize nesting) - * - .figure and .caption (HTML4) and figure and figcaption (HTML5) - * -> .sidefigure for right-floated figures - * - ins/del - * -> ins/del.c### for candidate and proposed changes (amendments) - * - * Code - * - pre and code - * - * Special Sections - * - .note for informative notes (div, p, span, aside, details) - * - .example for informative examples (div, p, pre, span) - * - .issue for issues (div, p, span) - * - .advisement for loud normative statements (div, p, strong) - * - .annoying-warning for spec obsoletion notices (div, aside, details) - * - .correction for "candidate corrections" (div, aside, details, section) - * - .addition for "candidate additions" (div, aside, details, section) - * - .correction.proposed for "proposed corrections" (div, aside, details, section) - * - .addition.proposed for "proposed additions" (div, aside, details, section) - * - * Definition Boxes - * - pre.def for WebIDL definitions - * - table.def for tables that define other entities (e.g. CSS properties) - * - dl.def for definition lists that define other entitles (e.g. HTML elements) - * - * Numbering - * - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>) - * - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>) - * - ::before styled for CSS-generated issue/example/figure numbers: - * -> Documents wishing to use this only need to add - * figcaption::before, - * .caption::before { content: "Figure " counter(figure) " "; } - * .example::before { content: "Example " counter(example) " "; } - * .issue::before { content: "Issue " counter(issue) " "; } - * - * Header Stuff (ignore, just don't conflict with these classes) - * - .head for the header - * - .copyright for the copyright - * - * Outdated warning for old specs - * - * Miscellaneous - * - .overlarge for things that should be as wide as possible, even if - * that overflows the body text area. This can be used on an item or - * on its container, depending on the effect desired. - * Note that this styling basically doesn't help at all when printing, - * since A4 paper isn't much wider than the max-width here. - * It's better to design things to fit into a narrower measure if possible. - * - * - js-added ToC jump links (see fixup.js) - * - ******************************************************************************/ - -/* color variables included separately for reliability */ - -/******************************************************************************/ -/* Body */ -/******************************************************************************/ - - html { - } - - body { - counter-reset: example figure issue; - - /* Layout */ - max-width: 50em; /* limit line length to 50em for readability */ - margin: 0 auto; /* center text within page */ - padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */ - padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */ - - /* Typography */ - line-height: 1.5; - font-family: sans-serif; - widows: 2; - orphans: 2; - word-wrap: break-word; - overflow-wrap: break-word; - hyphens: auto; - - color: black; - color: var(--text); - background: white top left fixed no-repeat; - background: var(--bg) top left fixed no-repeat; - background-size: 25px auto; - } - - -/******************************************************************************/ -/* Front Matter & Navigation */ -/******************************************************************************/ - -/** Header ********************************************************************/ - - div.head { margin-bottom: 1em; } - div.head hr { border-style: solid; } - - div.head h1 { - font-weight: bold; - margin: 0 0 .1em; - font-size: 220%; - } - - div.head h2 { margin-bottom: 1.5em;} - -/** W3C Logo ******************************************************************/ - - .head .logo { - float: right; - margin: 0.4rem 0 0.2rem .4rem; - } - - .head img[src*="logos/W3C"] { - display: block; - border: solid #1a5e9a; - border: solid var(--logo-bg); - border-width: .65rem .7rem .6rem; - border-radius: .4rem; - background: #1a5e9a; - background: var(--logo-bg); - color: white; - color: var(--logo-text); - font-weight: bold; - } - - .head a:hover > img[src*="logos/W3C"], - .head a:focus > img[src*="logos/W3C"] { - opacity: .8; - } - - .head a:active > img[src*="logos/W3C"] { - background: #c00; - background: var(--logo-active-bg); - border-color: #c00; - border-color: var(--logo-active-bg); - } - - /* see also additional rules in Link Styling section */ - -/** Copyright *****************************************************************/ - - p.copyright, - p.copyright small { font-size: small; } - -/** Back to Top / ToC Toggle **************************************************/ - - @media print { - #toc-nav { - display: none; - } - } - @media not print { - #toc-nav { - position: fixed; - z-index: 3; - bottom: 0; left: 0; - margin: 0; - min-width: 1.33em; - border-top-right-radius: 2rem; - box-shadow: 0 0 2px; - font-size: 1.5em; - } - #toc-nav > a { - display: block; - white-space: nowrap; - - height: 1.33em; - padding: .1em 0.3em; - margin: 0; - - box-shadow: 0 0 2px; - border: none; - border-top-right-radius: 1.33em; - - color: #707070; - color: var(--tocnav-normal-text); - background: white; - background: var(--tocnav-normal-bg); - } - #toc-nav > a:hover, - #toc-nav > a:focus { - color: black; - color: var(--tocnav-hover-text); - background: #f8f8f8; - background: var(--tocnav-hover-bg); - } - #toc-nav > a:active { - color: #c00; - color: var(--tocnav-active-text); - background: white; - background: var(--tocnav-active-bg); - } - - #toc-nav > #toc-jump { - padding-bottom: 2em; - margin-bottom: -1.9em; - } - - /* statusbar gets in the way on keyboard focus; remove once browsers fix */ - #toc-nav > a[href="#toc"]:not(:hover):focus:last-child { - padding-bottom: 1.5rem; - } - - #toc-nav:not(:hover) > a:not(:focus) > span + span { - /* Ideally this uses :focus-within on #toc-nav */ - display: none; - } - #toc-nav > a > span + span { - padding-right: 0.2em; - } - } - -/** ToC Sidebar ***************************************************************/ - - /* Floating sidebar */ - @media screen { - body.toc-sidebar #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - max-width: 80%; - max-width: calc(100% - 2em - 26px); - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body.toc-sidebar #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - body.toc-sidebar #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - /* Hide main scroller when only the ToC is visible anyway */ - @media screen and (max-width: 28em) { - body.toc-sidebar { - overflow: hidden; - } - } - - /* Sidebar with its own space */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) #toc { - position: fixed; - top: 0; bottom: 0; - left: 0; - width: 23.5em; - overflow: auto; - padding: 0 1em; - padding-left: 42px; - padding-left: calc(1em + 26px); - color: black; - color: var(--tocsidebar-text); - background: inherit; - background-color: #f7f8f9; - background-color: var(--tocsidebar-bg); - z-index: 1; - box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset; - box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset; - } - body:not(.toc-inline) #toc h2 { - margin-top: .8rem; - font-variant: small-caps; - font-variant: all-small-caps; - text-transform: lowercase; - font-weight: bold; - color: gray; - color: hsla(203,20%,40%,.7); - color: var(--tocsidebar-heading-text); - } - - body:not(.toc-inline) { - padding-left: 29em; - } - /* See also Overflow section at the bottom */ - - body:not(.toc-inline) #toc-jump:not(:focus) { - width: 0; - height: 0; - padding: 0; - position: absolute; - overflow: hidden; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) { - margin: 0 4em; - } - } - -/******************************************************************************/ -/* Sectioning */ -/******************************************************************************/ - -/** Headings ******************************************************************/ - - h1, h2, h3, h4, h5, h6, dt { - page-break-after: avoid; - page-break-inside: avoid; - font: 100% sans-serif; /* Reset all font styling to clear out UA styles */ - font-family: inherit; /* Inherit the font family. */ - line-height: 1.2; /* Keep wrapped headings compact */ - hyphens: manual; /* Hyphenated headings look weird */ - } - - h2, h3, h4, h5, h6 { - margin-top: 3rem; - } - - h1, h2, h3 { - color: #005A9C; - color: var(--heading-text); - } - - h1 { font-size: 170%; } - h2 { font-size: 140%; } - h3 { font-size: 120%; } - h4 { font-weight: bold; } - h5 { font-style: italic; } - h6 { font-variant: small-caps; } - dt { font-weight: bold; } - -/** Subheadings ***************************************************************/ - - h1 + h2, - #profile-and-date { - /* #profile-and-date is a subtitle in an H2 under the H1 */ - margin-top: 0; - } - h2 + h3, - h3 + h4, - h4 + h5, - h5 + h6 { - margin-top: 1.2em; /* = 1 x line-height */ - } - -/** Section divider ***********************************************************/ - - :not(.head) > :not(.head) + hr { - font-size: 1.5em; - text-align: center; - margin: 1em auto; - height: auto; - color: black; - color: var(--hr-text); - border: transparent solid 0; - background: transparent; - } - :not(.head) > hr::before { - content: "\2727\2003\2003\2727\2003\2003\2727"; - } - -/******************************************************************************/ -/* Paragraphs and Lists */ -/******************************************************************************/ - - p { - margin: 1em 0; - } - - dd > p:first-child, - li > p:first-child { - margin-top: 0; - } - - ul, ol { - margin-left: 0; - padding-left: 2em; - } - - li { - margin: 0.25em 0 0.5em; - padding: 0; - } - - dl dd { - margin: 0 0 .5em 2em; - } - - .head dd + dd { /* compact for header */ - margin-top: -.5em; - } - - /* Style for algorithms */ - ol.algorithm ol:not(.algorithm), - .algorithm > ol ol:not(.algorithm) { - border-left: 0.5em solid #DEF; - border-left: 0.5em solid var(--algo-border); - } - - /* Put nice boxes around each algorithm. */ - [data-algorithm]:not(.heading) { - padding: .5em; - border: thin solid #ddd; - border: thin solid var(--algo-border); - border-radius: .5em; - margin: .5em calc(-0.5em - 1px); - } - [data-algorithm]:not(.heading) > :first-child { - margin-top: 0; - } - [data-algorithm]:not(.heading) > :last-child { - margin-bottom: 0; - } - - /* Style for switch/case <dl>s */ - dl.switch > dd > ol.only, - dl.switch > dd > .only > ol { - margin-left: 0; - } - dl.switch > dd > ol.algorithm, - dl.switch > dd > .algorithm > ol { - margin-left: -2em; - } - dl.switch { - padding-left: 2em; - } - dl.switch > dt { - text-indent: -1.5em; - margin-top: 1em; - } - dl.switch > dt + dt { - margin-top: 0; - } - dl.switch > dt::before { - content: '\21AA'; - padding: 0 0.5em 0 0; - display: inline-block; - width: 1em; - text-align: right; - line-height: 0.5em; - } - -/** Terminology Markup ********************************************************/ - - -/******************************************************************************/ -/* Inline Markup */ -/******************************************************************************/ - -/** Terminology Markup ********************************************************/ - dfn { /* Defining instance */ - font-weight: bolder; - } - a > i { /* Instance of term */ - font-style: normal; - } - dt dfn code, code.idl { - font-size: inherit; - } - dfn var { - font-style: normal; - } - -/** Change Marking ************************************************************/ - - del { - color: #aa0000; - color: var(--del-text); - background: transparent; - background: var(--del-bg); - text-decoration: line-through; - } - ins { - color: #006100; - color: var(--ins-text); - background: transparent; - background: var(--ins-bg); - text-decoration: underline; - } - - /* for amendments (candidate/proposed changes) */ - - .amendment ins, .correction ins, .addition ins, - ins[class^=c] { - text-decoration-style: dotted; - } - .amendment del, .correction del, .addition del, - del[class^=c] { - text-decoration-style: dotted; - } - .amendment.proposed ins, .correction.proposed ins, .addition.proposed ins, - ins[class^=c].proposed { - text-decoration-style: double; - } - .amendment.proposed del, .correction.proposed del, .addition.proposed del, - del[class^=c].proposed { - text-decoration-style: double; - } - -/** Miscellaneous improvements to inline formatting ***************************/ - - sup { - vertical-align: super; - font-size: 80% - } - -/******************************************************************************/ -/* Code */ -/******************************************************************************/ - -/** General monospace/pre rules ***********************************************/ - - pre, code, samp { - font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace; - font-size: .9em; - hyphens: none; - text-transform: none; - text-align: left; - text-align: start; - font-variant: normal; - orphans: 3; - widows: 3; - page-break-before: avoid; - } - pre code, - code code { - font-size: 100%; - } - - pre { - margin-top: 1em; - margin-bottom: 1em; - overflow: auto; - } - -/** Inline Code fragments *****************************************************/ - - /* Do something nice. */ - -/******************************************************************************/ -/* Links */ -/******************************************************************************/ - -/** General Hyperlinks ********************************************************/ - - /* We hyperlink a lot, so make it less intrusive */ - a[href] { - color: #034575; - color: var(--a-normal-text); - text-decoration: underline #707070; - text-decoration: underline var(--a-normal-underline); - text-decoration-skip-ink: none; - } - a:visited { - color: #034575; - color: var(--a-visited-text); - text-decoration-color: #bbb; - text-decoration-color: var(--a-visited-underline); - } - - /* Indicate interaction with the link */ - a[href]:focus, - a[href]:hover { - text-decoration-thickness: 2px; - } - a[href]:active { - color: #c00; - color: var(--a-active-text); - text-decoration-color: #c00; - text-decoration-color: var(--a-active-underline); - } - - /* Backout above styling for W3C logo */ - .head .logo, - .head .logo a { - border: none; - text-decoration: none; - background: transparent; - } - -/******************************************************************************/ -/* Images */ -/******************************************************************************/ - - img { - border-style: none; - } - - img, svg { - /* Intentionally not color-scheme aware. */ - background: white; - } - - /* For autogen numbers, add - .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; } - */ - - figure, .figure, .sidefigure { - page-break-inside: avoid; - text-align: center; - margin: 2.5em 0; - } - .figure img, .sidefigure img, figure img, - .figure object, .sidefigure object, figure object { - max-width: 100%; - margin: auto; - height: auto; - } - .figure pre, .sidefigure pre, figure pre { - text-align: left; - display: table; - margin: 1em auto; - } - .figure table, figure table { - margin: auto; - } - @media screen and (min-width: 20em) { - .sidefigure { - float: right; - width: 50%; - margin: 0 0 0.5em 0.5em; - } - } - .caption, figcaption, caption { - font-style: italic; - font-size: 90%; - } - .caption::before, figcaption::before, figcaption > .marker { - font-weight: bold; - } - .caption, figcaption { - counter-increment: figure; - } - - /* DL list is indented 2em, but figure inside it is not */ - dd > .figure, dd > figure { margin-left: -2em; } - -/******************************************************************************/ -/* Colored Boxes */ -/******************************************************************************/ - - .issue, .note, .example, .assertion, .advisement, blockquote, - .amendment, .correction, .addition { - margin: 1em auto; - padding: .5em; - border: .5em; - border-left-style: solid; - page-break-inside: avoid; - } - span.issue, span.note { - padding: .1em .5em .15em; - border-right-style: solid; - } - - blockquote > :first-child, - .note > p:first-child, - .issue > p:first-child, - .amendment > p:first-child, - .correction > p:first-child, - .addition > p:first-child { - margin-top: 0; - } - blockquote > :last-child, - .note > p:last-child, - .issue > p:last-child, - .amendment > p:last-child, - .correction > p:last-child, - .addition > p:last-child { - margin-bottom: 0; - } - - - .issue::before, .issue > .marker, - .example::before, .example > .marker, - .note::before, .note > .marker, - details.note > summary > .marker, - .amendment::before, .amendment > .marker, - details.amendment > summary > .marker, - .addition::before, .addition > .marker, - addition.amendment > summary > .marker, - .correction::before, .correction > .marker, - correction.amendment > summary > .marker - { - text-transform: uppercase; - padding-right: 1em; - } - - .example::before, .example > .marker { - display: block; - padding-right: 0em; - } - -/** Blockquotes ***************************************************************/ - - blockquote { - border-color: silver; - border-color: var(--blockquote-border); - background: transparent; - background: var(--blockquote-bg); - color: currentcolor; - color: var(--blockquote-text); - } - -/** Open issue ****************************************************************/ - - .issue { - border-color: #e05252; - border-color: var(--issue-border); - background: #fbe9e9; - background: var(--issue-bg); - color: black; - color: var(--issue-text); - counter-increment: issue; - overflow: auto; - } - .issue::before, .issue > .marker { - color: #831616; - color: var(--issueheading-text); - } - /* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers, - or use class="marker" to mark up the issue number in source. */ - -/** Example *******************************************************************/ - - .example { - border-color: #e0cb52; - border-color: var(--example-border); - background: #fcfaee; - background: var(--example-bg); - color: black; - color: var(--example-text); - counter-increment: example; - overflow: auto; - clear: both; - } - .example::before, .example > .marker { - color: #574b0f; - color: var(--exampleheading-text); - } - /* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers, - or use class="marker" to mark up the example number in source. */ - -/** Non-normative Note ********************************************************/ - - .note { - border-color: #52e052; - border-color: var(--note-border); - background: #e9fbe9; - background: var(--note-bg); - color: black; - color: var(--note-text); - overflow: auto; - } - - .note::before, .note > .marker, - details.note > summary { - color: hsl(120, 70%, 30%); - color: var(--noteheading-text); - } - /* Add .note::before { content: "Note "; } for autogen label, - or use class="marker" to mark up the label in source. */ - - details.note[open] > summary { - border-bottom: 1px silver solid; - border-bottom: 1px var(--notesummary-underline) solid; - } - -/** Assertion Box *************************************************************/ - /* for assertions in algorithms */ - - .assertion { - border-color: #AAA; - border-color: var(--assertion-border); - background: #EEE; - background: var(--assertion-bg); - color: black; - color: var(--assertion-text); - } - -/** Advisement Box ************************************************************/ - /* for attention-grabbing normative statements */ - - .advisement { - border-color: orange; - border-color: var(--advisement-border); - border-style: none solid; - background: #fec; - background: var(--advisement-bg); - color: black; - color: var(--advisement-text); - } - strong.advisement { - display: block; - text-align: center; - } - .advisement::before, .advisement > .marker { - color: #b35f00; - color: var(--advisementheading-text); - } - -/** Amendment Box *************************************************************/ - - .amendment, .correction, .addition { - border-color: #330099; - border-color: var(--amendment-border); - background: #F5F0FF; - background: var(--amendment-bg); - color: black; - color: var(--amendment-text); - } - .amendment.proposed, .correction.proposed, .addition.proposed { - border-style: solid; - border-block-width: 0.25em; - } - .amendment::before, .amendment > .marker, - details.amendment > summary::before, details.amendment > summary > .marker, - .correction::before, .correction > .marker, - details.correction > summary::before, details.correction > summary > .marker, - .addition::before, .addition > .marker, - details.addition > summary::before, details.addition > summary > .marker { - color: #220066; - color: var(--amendmentheading-text); - } - .amendment.proposed::before, .amendment.proposed > .marker, - details.amendment.proposed > summary::before, details.amendment.proposed > summary > .marker, - .correction.proposed::before, .correction.proposed > .marker, - details.correction.proposed > summary::before, details.correction.proposed > summary > .marker, - .addition.proposed::before, .addition.proposed > .marker, - details.addition.proposed > summary::before, details.addition.proposed > summary > .marker { - font-weight: bold; - } - -/** Spec Obsoletion Notice ****************************************************/ - /* obnoxious obsoletion notice for older/abandoned specs. */ - - details { - display: block; - } - summary { - font-weight: bolder; - } - - .annoying-warning:not(details), - details.annoying-warning:not([open]) > summary, - details.annoying-warning[open] { - background: hsla(40,100%,50%,0.95); - background: var(--warning-bg); - color: black; - color: var(--warning-text); - padding: .75em 1em; - border: red; - border: var(--warning-border); - border-style: solid none; - box-shadow: 0 2px 8px black; - text-align: center; - } - .annoying-warning :last-child { - margin-bottom: 0; - } - -@media not print { - details.annoying-warning[open] { - position: fixed; - left: 0; - right: 0; - bottom: 2em; - z-index: 1000; - } -} - - details.annoying-warning:not([open]) > summary { - text-align: center; - } - -/** Entity Definition Boxes ***************************************************/ - - .def { - padding: .5em 1em; - background: #def; - background: var(--def-bg); - margin: 1.2em 0; - border-left: 0.5em solid #8ccbf2; - border-left: 0.5em solid var(--def-border); - color: black; - color: var(--def-text); - } - -/******************************************************************************/ -/* Tables */ -/******************************************************************************/ - - th, td { - text-align: left; - text-align: start; - } - -/** Property/Descriptor Definition Tables *************************************/ - - table.def { - /* inherits .def box styling, see above */ - width: 100%; - border-spacing: 0; - } - - table.def td, - table.def th { - padding: 0.5em; - vertical-align: baseline; - border-bottom: 1px solid #bbd7e9; - border-bottom: 1px solid var(--defrow-border); - } - - table.def > tbody > tr:last-child th, - table.def > tbody > tr:last-child td { - border-bottom: 0; - } - - table.def th { - font-style: italic; - font-weight: normal; - padding-left: 1em; - width: 3em; - } - - /* For when values are extra-complex and need formatting for readability */ - table td.pre { - white-space: pre-wrap; - } - - /* A footnote at the bottom of a def table */ - table.def td.footnote { - padding-top: 0.6em; - } - table.def td.footnote::before { - content: " "; - display: block; - height: 0.6em; - width: 4em; - border-top: thin solid; - } - -/** Data tables (and properly marked-up index tables) *************************/ - /* - <table class="data"> highlights structural relationships in a table - when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute) - - Use class="complex data" for particularly complicated tables -- - (This will draw more lines: busier, but clearer.) - - Use class="long" on table cells with paragraph-like contents - (This will adjust text alignment accordingly.) - Alternately use class="longlastcol" on tables, to have the last column assume "long". - */ - - table { - word-wrap: normal; - overflow-wrap: normal; - hyphens: manual; - } - - table.data, - table.index { - margin: 1em auto; - border-collapse: collapse; - border: hidden; - width: 100%; - } - table.data caption, - table.index caption { - max-width: 50em; - margin: 0 auto 1em; - } - - table.data td, table.data th, - table.index td, table.index th { - padding: 0.5em 1em; - border-width: 1px; - border-color: silver; - border-color: var(--datacell-border); - border-top-style: solid; - } - - table.data thead td:empty { - padding: 0; - border: 0; - } - - table.data thead, - table.index thead, - table.data tbody, - table.index tbody { - border-bottom: 2px solid; - } - - table.data colgroup, - table.index colgroup { - border-left: 2px solid; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - border-right: 2px solid; - border-top: 1px solid silver; - border-top: 1px solid var(--datacell-border); - padding-right: 1em; - } - - table.data th[colspan], - table.data td[colspan] { - text-align: center; - } - - table.complex.data th, - table.complex.data td { - border: 1px solid silver; - border: 1px solid var(--datacell-border); - text-align: center; - } - - table.data.longlastcol td:last-child, - table.data td.long { - vertical-align: baseline; - text-align: left; - } - - table.data img { - vertical-align: middle; - } - - -/* -Alternate table alignment rules - - table.data, - table.index { - text-align: center; - } - - table.data thead th[scope="row"], - table.index thead th[scope="row"] { - text-align: right; - } - - table.data tbody th:first-child, - table.index tbody th:first-child { - text-align: right; - } - -Possible extra rowspan handling - - table.data tbody th[rowspan]:not([rowspan='1']), - table.index tbody th[rowspan]:not([rowspan='1']), - table.data tbody td[rowspan]:not([rowspan='1']), - table.index tbody td[rowspan]:not([rowspan='1']) { - border-left: 1px solid silver; - } - - table.data tbody th[rowspan]:first-child, - table.index tbody th[rowspan]:first-child, - table.data tbody td[rowspan]:first-child, - table.index tbody td[rowspan]:first-child{ - border-left: 0; - border-right: 1px solid silver; - } -*/ - -/******************************************************************************/ -/* Indices */ -/******************************************************************************/ - - -/** Table of Contents *********************************************************/ - - .toc a { - /* More spacing; use padding to make it part of the click target. */ - padding: 0.1rem 1px 0; - /* Larger, more consistently-sized click target */ - display: block; - /* Switch to using border-bottom for underlines */ - text-decoration: none; - border-bottom: 1px solid; - /* Reverse color scheme */ - color: black; - color: var(--toclink-text); - border-color: #3980b5; - border-color: var(--toclink-underline); - } - .toc a:visited { - color: black; - color: var(--toclink-visited-text); - border-color: #054572; - border-color: var(--toclink-visited-underline); - } - .toc a:focus, - .toc a:hover { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom-width: 3px; - margin-bottom: -2px; - } - .toc a:not(:focus):not(:hover) { - /* Allow colors to cascade through from link styling */ - border-bottom-color: transparent; - } - - .toc, .toc ol, .toc ul, .toc li { - list-style: none; /* Numbers must be inlined into source */ - /* because generated content isn't search/selectable and markers can't do multilevel yet */ - margin: 0; - padding: 0; - } - .toc { - line-height: 1.1em; - } - - /* ToC not indented until third level, but font style & margins show hierarchy */ - .toc > li { font-weight: bold; } - .toc > li li { font-weight: normal; } - .toc > li li li { font-size: 95%; } - .toc > li li li li { font-size: 90%; } - .toc > li li li li li { font-size: 85%; } - - /* @supports not (display:grid) { */ - .toc > li { margin: 1.5rem 0; } - .toc > li li { margin: 0.3rem 0; } - .toc > li li li { margin-left: 2rem; } - - /* Section numbers in a column of their own */ - .toc .secno { - float: left; - width: 4rem; - white-space: nowrap; - } - .toc > li li li li .secno { font-size: 85%; } - .toc > li li li li li .secno { font-size: 100%; } - - .toc li { - clear: both; - } - - :not(li) > .toc { margin-left: 5rem; } - .toc .secno { margin-left: -5rem; } - .toc > li li li .secno { margin-left: -7rem; } - .toc > li li li li .secno { margin-left: -9rem; } - .toc > li li li li li .secno { margin-left: -11rem; } - - /* Tighten up indentation in narrow ToCs */ - @media (max-width: 30em) { - :not(li) > .toc { margin-left: 4rem; } - .toc .secno { margin-left: -4rem; } - .toc > li li li { margin-left: 1rem; } - .toc > li li li .secno { margin-left: -5rem; } - .toc > li li li li .secno { margin-left: -6rem; } - .toc > li li li li li .secno { margin-left: -7rem; } - } - /* Loosen it on wide screens */ - @media screen and (min-width: 78em) { - body:not(.toc-inline) :not(li) > .toc { margin-left: 4rem; } - body:not(.toc-inline) .toc .secno { margin-left: -4rem; } - body:not(.toc-inline) .toc > li li li { margin-left: 1rem; } - body:not(.toc-inline) .toc > li li li .secno { margin-left: -5rem; } - body:not(.toc-inline) .toc > li li li li .secno { margin-left: -6rem; } - body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; } - } - /* } */ - - @supports (display:grid) and (display:contents) { - /* Use #toc over .toc to override non-@supports rules. */ - #toc { - display: grid; - align-content: start; - grid-template-columns: auto 1fr; - grid-column-gap: 1rem; - column-gap: 1rem; - grid-row-gap: .6rem; - row-gap: .6rem; - } - #toc h2 { - grid-column: 1 / -1; - margin-bottom: 0; - } - #toc ol, - #toc li, - #toc a { - display: contents; - /* Switch <a> to subgrid when supported */ - } - #toc span { - margin: 0; - } - #toc > .toc > li > a > span { - /* The spans of the top-level list, - comprising the first items of each top-level section. */ - margin-top: 1.1rem; - } - #toc#toc .secno { /* Ugh, need more specificity to override base.css */ - grid-column: 1; - width: auto; - margin-left: 0; - } - #toc .content { - grid-column: 2; - width: auto; - margin-right: 1rem; - } - #toc .content:hover, - #toc .content:focus { - background: rgba(75%, 75%, 75%, .25); - background: var(--a-hover-bg); - border-bottom: 3px solid #054572; - border-bottom: 3px solid var(--toclink-underline); - margin-bottom: -3px; - } - #toc li li li .content { - margin-left: 1rem; - } - #toc li li li li .content { - margin-left: 2rem; - } - } - - -/** Index *********************************************************************/ - - /* Index Lists: Layout */ - ul.index { margin-left: 0; columns: 15em; text-indent: 1em hanging; } - ul.index li { margin-left: 0; list-style: none; break-inside: avoid; } - ul.index li li { margin-left: 1em; } - ul.index dl { margin-top: 0; } - ul.index dt { margin: .2em 0 .2em 20px;} - ul.index dd { margin: .2em 0 .2em 40px;} - /* Index Lists: Typography */ - ul.index ul, - ul.index dl { font-size: smaller; } - @media not print { - ul.index li a + span { - white-space: nowrap; - color: transparent; } - ul.index li a:hover + span, - ul.index li a:focus + span { - color: #707070; - color: var(--indexinfo-text); - } - } - -/** Index Tables *****************************************************/ - /* See also the data table styling section, which this effectively subclasses */ - - table.index { - font-size: small; - border-collapse: collapse; - border-spacing: 0; - text-align: left; - margin: 1em 0; - } - - table.index td, - table.index th { - padding: 0.4em; - } - - table.index tr:hover td:not([rowspan]), - table.index tr:hover th:not([rowspan]) { - color: black; - color: var(--indextable-hover-text); - background: #f7f8f9; - background: var(--indextable-hover-bg); - } - - /* The link in the first column in the property table (formerly a TD) */ - table.index th:first-child a { - font-weight: bold; - } - -/** Outdated warning **********************************************************/ - -.outdated-spec { - color: black; - color: var(--outdatedspec-text); - background-color: rgba(0,0,0,0.5); - background-color: var(--outdatedspec-bg); -} - -.outdated-warning { - position: fixed; - bottom: 50%; - left: 0; - right: 0; - margin: 0 auto; - width: 50%; - background: maroon; - background: var(--outdated-bg); - color: white; - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - color: var(--outdated-text); - border-radius: 1em; - box-shadow: 0 0 1em red; - box-shadow: 0 0 1em var(--outdated-shadow); - padding: 2em; - text-align: center; - z-index: 2; -} - -.outdated-warning a { - color: currentcolor; - background: transparent; -} - -.edited-rec-warning { - background: darkorange; - background: var(--editedrec-bg); - box-shadow: 0 0 1em; -} - -.outdated-warning button { - position: absolute; - top: 0; - right:0; - margin: 0; - border: 0; - padding: 0.25em 0.5em; - background: transparent; - color: white; - color: var(--outdated-text); - font:1em sans-serif; - text-align:center; -} - -.outdated-warning span { - display: block; -} - -.outdated-collapsed { - bottom: 0; - border-radius: 0; - width: 100%; - padding: 0; -} - -/******************************************************************************/ -/* Print */ -/******************************************************************************/ - - @media print { - /* Pages have their own margins. */ - html { - margin: 0; - } - /* Serif for print. */ - body { - font-family: serif; - } - - .outdated-warning { - position: absolute; - border-style: solid; - border-color: red; - } - - .outdated-warning input { - display: none; - } - } - @page { - margin: 1.5cm 1.1cm; - } - - - -/******************************************************************************/ -/* Overflow Control */ -/******************************************************************************/ - - .figure .caption, .sidefigure .caption, figcaption { - /* in case figure is overlarge, limit caption to 50em */ - max-width: 50rem; - margin-left: auto; - margin-right: auto; - } - .overlarge { - /* Magic to create good item positioning: - "content column" is 50ems wide at max; less on smaller screens. - Extra space (after ToC + content) is empty on the right. - - 1. When item < content column, centers item in column. - 2. When content < item < available, left-aligns. - 3. When item > available, fills available + scroll bar. - */ - display: grid; - grid-template-columns: minmax(0, 50em); - } - .overlarge > table { - /* limit preferred width of table */ - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - @media (min-width: 55em) { - .overlarge { - margin-right: calc(13px + 26.5rem - 50vw); - max-width: none; - } - } - @media screen and (min-width: 78em) { - body:not(.toc-inline) .overlarge { - /* 30.5em body padding 50em content area */ - margin-right: calc(40em - 50vw) !important; - } - } - @media screen and (min-width: 90em) { - body:not(.toc-inline) .overlarge { - /* 4em html margin 30.5em body padding 50em content area */ - margin-right: calc(84.5em - 100vw) !important; - } - } - - @media not print { - .overlarge { - overflow-x: auto; - /* See Lea Verou's explanation background-attachment: - * http://lea.verou.me/2012/04/background-attachment-local/ - * - background: top left / 4em 100% linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) local, - top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local, - top left / 1em 100% linear-gradient(to right, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll, - white; - background-repeat: no-repeat; - */ - } - } -</style> + <title>Writing Promise-Using Specifications</title> + <meta content="DRAFT-FINDING" name="w3c-status"> + <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-DRAFT-FINDING" rel="stylesheet"> <link href="https://www.w3.org/2001/tag/doc/promises-guide" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> + <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ .css.css, .property.property, .descriptor.descriptor { color: var(--a-normal-text); @@ -2167,34 +687,49 @@ </style> <body class="h-entry"> <div class="head"> - <p data-fill-with="logo"></p> + <p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p> <h1 class="p-name no-ref" id="title">Writing Promise-Using Specifications</h1> - <h2 class="no-num no-toc no-ref heading settled" id="profile-and-date"><span class="content">Draft Finding, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></span></h2> - <div data-fill-with="spec-metadata"> - <dl> - <dt>This version: - <dd><a class="u-url" href="https://w3ctag.github.io/promises-guide/">https://w3ctag.github.io/promises-guide/</a> - <dt>Latest published version: - <dd><a href="https://www.w3.org/2001/tag/doc/promises-guide">https://www.w3.org/2001/tag/doc/promises-guide</a> - <dt class="editor">Editor: - <dd class="editor p-author h-card vcard"><a class="p-name fn u-url url" href="https://domenic.me/">Domenic Denicola</a> (<a class="p-org org" href="https://www.google.com/">Google</a>) <a class="u-email email" href="mailto:d@domenic.me">d@domenic.me</a> - <dt>Participate: - <dd><a href="https://github.com/w3ctag/promises-guide">GitHub w3ctag/promises-guide</a> (<a href="https://github.com/w3ctag/promises-guide/issues/new">file an issue</a>; <a href="https://github.com/w3ctag/promises-guide/issues?state=open">open issues</a>) - </dl> - </div> + <p id="w3c-state"><a href="https://www.w3.org/standards/types#DRAFT-FINDING">Draft Finding of the TAG</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <details open> + <summary>More details about this document</summary> + <div data-fill-with="spec-metadata"> + <dl> + <dt>This version: + <dd><a class="u-url" href="https://w3ctag.github.io/promises-guide/">https://w3ctag.github.io/promises-guide/</a> + <dt>Latest published version: + <dd><a href="https://www.w3.org/2001/tag/doc/promises-guide">https://www.w3.org/2001/tag/doc/promises-guide</a> + <dt class="editor">Editor: + <dd class="editor p-author h-card vcard"><a class="p-name fn u-url url" href="https://domenic.me/">Domenic Denicola</a> (<a class="p-org org" href="https://www.google.com/">Google</a>) <a class="u-email email" href="mailto:d@domenic.me">d@domenic.me</a> + <dt>Participate: + <dd><a href="https://github.com/w3ctag/promises-guide">GitHub w3ctag/promises-guide</a> (<a href="https://github.com/w3ctag/promises-guide/issues/new">file an issue</a>; <a href="https://github.com/w3ctag/promises-guide/issues?state=open">open issues</a>) + </dl> + </div> + </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" height="15" src="https://licensebuttons.net/p/zero/1.0/80x15.png" width="80"></a> To the extent possible under law, the editors have waived all copyright -and related or neighboring rights to this work. -In addition, as of 1 January 1970, -the editors have made this specification available under the <a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>, -which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. -Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2> <p>This document gives guidance on how to write specifications that create, accept, or manipulate promises.</p> </div> + <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content">Status of this document</span></h2> + <div data-fill-with="status"> + <p> <em>This section describes the status of this document at the time of its + publication. A list of current <abbr title="World Wide Web Consortium">W3C</abbr> publications and the + latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/"><abbr title="World Wide Web + Consortium">W3C</abbr> technical reports index</a>.</em> </p> + <p> This document was published by the <a href="https://www.w3.org/2001/tag/">W3C Technical Architecture Group + (TAG)</a> as a Draft Finding of the TAG. + Publication as a Draft Finding of the TAG does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. This is a + draft document and may be updated, replaced or obsoleted by other documents + at any time. It is inappropriate to cite this document as other than work in + progress. </p> + <p></p> + <p> Feedback and comments on this document are welcome. Please <a href="https://github.com/test/test/issues">file an issue</a> in this document’s <a href="https://github.com/test/test/">GitHub repository</a>. </p> + <p> This document is governed by the <a href="https://www.w3.org/2019/Process-20190301/" id="w3c_process_revision">1 March 2019 W3C Process + Document</a>. </p> + </div> <div data-fill-with="at-risk"></div> <nav data-fill-with="table-of-contents" id="toc"> <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> @@ -2367,135 +902,7 @@ <h2 class="no-num heading settled" id="legacy"><span class="content">Appendix: l <p>If you find yourself doing something even remotely similar to these, stop, and instead use promises.</p> </div> </main> -<script> -(function() { - "use strict"; - var collapseSidebarText = '<span aria-hidden="true">←</span> ' - + '<span>Collapse Sidebar</span>'; - var expandSidebarText = '<span aria-hidden="true">→</span> ' - + '<span>Pop Out Sidebar</span>'; - var tocJumpText = '<span aria-hidden="true">↑</span> ' - + '<span>Jump to Table of Contents</span>'; - - var sidebarMedia = window.matchMedia('screen and (min-width: 78em)'); - var autoToggle = function(e){ toggleSidebar(e.matches) }; - if(sidebarMedia.addListener) { - sidebarMedia.addListener(autoToggle); - } - - function toggleSidebar(on) { - if (on == undefined) { - on = !document.body.classList.contains('toc-sidebar'); - } - - /* Don't scroll to compensate for the ToC if we're above it already. */ - var headY = 0; - var head = document.querySelector('.head'); - if (head) { - // terrible approx of "top of ToC" - headY += head.offsetTop + head.offsetHeight; - } - var skipScroll = window.scrollY < headY; - - var toggle = document.getElementById('toc-toggle'); - var tocNav = document.getElementById('toc'); - if (on) { - var tocHeight = tocNav.offsetHeight; - document.body.classList.add('toc-sidebar'); - document.body.classList.remove('toc-inline'); - toggle.innerHTML = collapseSidebarText; - if (!skipScroll) { - window.scrollBy(0, 0 - tocHeight); - } - tocNav.focus(); - sidebarMedia.addListener(autoToggle); // auto-collapse when out of room - } - else { - document.body.classList.add('toc-inline'); - document.body.classList.remove('toc-sidebar'); - toggle.innerHTML = expandSidebarText; - if (!skipScroll) { - window.scrollBy(0, tocNav.offsetHeight); - } - if (toggle.matches(':hover')) { - /* Unfocus button when not using keyboard navigation, - because I don't know where else to send the focus. */ - toggle.blur(); - } - } - } - - function createSidebarToggle() { - /* Create the sidebar toggle in JS; it shouldn't exist when JS is off. */ - var toggle = document.createElement('a'); - /* This should probably be a button, but appearance isn't standards-track.*/ - toggle.id = 'toc-toggle'; - toggle.class = 'toc-toggle'; - toggle.href = '#toc'; - toggle.innerHTML = collapseSidebarText; - - sidebarMedia.addListener(autoToggle); - var toggler = function(e) { - e.preventDefault(); - sidebarMedia.removeListener(autoToggle); // persist explicit off states - toggleSidebar(); - return false; - } - toggle.addEventListener('click', toggler, false); - - - /* Get <nav id=toc-nav>, or make it if we don't have one. */ - var tocNav = document.getElementById('toc-nav'); - if (!tocNav) { - tocNav = document.createElement('p'); - tocNav.id = 'toc-nav'; - /* Prepend for better keyboard navigation */ - document.body.insertBefore(tocNav, document.body.firstChild); - } - /* While we're at it, make sure we have a Jump to Toc link. */ - var tocJump = document.getElementById('toc-jump'); - if (!tocJump) { - tocJump = document.createElement('a'); - tocJump.id = 'toc-jump'; - tocJump.href = '#toc'; - tocJump.innerHTML = tocJumpText; - tocNav.appendChild(tocJump); - } - - tocNav.appendChild(toggle); - } - - var toc = document.getElementById('toc'); - if (toc) { - createSidebarToggle(); - toggleSidebar(sidebarMedia.matches); - - /* If the sidebar has been manually opened and is currently overlaying the text - (window too small for the MQ to add the margin to body), - then auto-close the sidebar once you click on something in there. */ - toc.addEventListener('click', function(e) { - if(e.target.tagName.toLowerCase() == "a" && document.body.classList.contains('toc-sidebar') && !sidebarMedia.matches) { - toggleSidebar(false); - } - }, false); - } - else { - console.warn("Can't find Table of Contents. Please use <nav id='toc'> around the ToC."); - } - - /* Wrap tables in case they overflow */ - var tables = document.querySelectorAll(':not(.overlarge) > table.data, :not(.overlarge) > table.index'); - var numTables = tables.length; - for (var i = 0; i < numTables; i++) { - var table = tables[i]; - var wrapper = document.createElement('div'); - wrapper.className = 'overlarge'; - table.parentNode.insertBefore(wrapper, table); - wrapper.appendChild(table); - } - -})(); -</script> + <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span class="content">Terms defined by reference</span><a class="self-link" href="#index-defined-elsewhere"></a></h3> <ul class="index"> @@ -2574,7 +981,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-indexeddb">[INDEXEDDB] <dd>Nikunj Mehta; et al. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> <dt id="biblio-indexeddb-3">[IndexedDB-3] - <dd>Ali Alabbas; Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> + <dd>Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> <dt id="biblio-notifications">[NOTIFICATIONS] <dd>Anne van Kesteren. <a href="https://notifications.spec.whatwg.org/"><cite>Notifications API Standard</cite></a>. Living Standard. URL: <a href="https://notifications.spec.whatwg.org/">https://notifications.spec.whatwg.org/</a> <dt id="biblio-xhr">[XHR] diff --git a/tests/github/w3ctag/security-questionnaire/index.console.txt b/tests/github/w3ctag/security-questionnaire/index.console.txt index e78616b5bf..6b8345a974 100644 --- a/tests/github/w3ctag/security-questionnaire/index.console.txt +++ b/tests/github/w3ctag/security-questionnaire/index.console.txt @@ -1,2 +1,16 @@ -LINK ERROR: No 'idl' refs found for 'NavigatorPlugins'. -{{NavigatorPlugins}} +LINK ERROR: Obsolete biblio ref: [geolocation-API] is replaced by [geolocation]. Either update the reference, or use [geolocation-API obsolete] if this is an intentionally-obsolete reference. +LINK ERROR: Multiple possible 'localStorage' idl refs. +Arbitrarily chose https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:html; type:attribute; text:localStorage +spec:saa-non-cookie-storage; type:attribute; text:localStorage +spec:saa-non-cookie-storage; type:dict-member; text:localStorage +{{localStorage}} +LINK ERROR: Multiple possible 'indexedDB' idl refs. +Arbitrarily chose https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-indexeddb +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:saa-non-cookie-storage; type:attribute; text:indexedDB +spec:saa-non-cookie-storage; type:dict-member; text:indexedDB +spec:indexeddb-3; type:attribute; text:indexedDB +spec:storage-buckets; type:attribute; text:indexedDB +{{indexedDB}} diff --git a/tests/github/w3ctag/security-questionnaire/index.html b/tests/github/w3ctag/security-questionnaire/index.html index fce7a92149..091e7eab47 100644 --- a/tests/github/w3ctag/security-questionnaire/index.html +++ b/tests/github/w3ctag/security-questionnaire/index.html @@ -5,8 +5,8 @@ <title>Self-Review Questionnaire: Security and Privacy</title> <meta content="ED" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/security-privacy-questionnaire/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -588,7 +588,7 @@ <h1 class="p-name no-ref" id="title">Self-Review Questionnaire: Security and Pri </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -932,7 +932,7 @@ <h3 class="question heading settled" data-level="2.5" id="persistent-origin-spec origins can use to store information about a user. Cookies, <code>ETag</code>, <code>Last Modified</code>, <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage" id="ref-for-dom-localstorage">localStorage</a></code>, -and <code class="idl"><a data-link-type="idl" href="https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb" id="ref-for-dom-windoworworkerglobalscope-indexeddb">indexedDB</a></code> are just a few examples.</p> +and <code class="idl"><a data-link-type="idl" href="https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-indexeddb" id="ref-for-dom-storageaccesshandle-indexeddb">indexedDB</a></code> are just a few examples.</p> <p>Allowing an origin to store data on a user’s device @@ -1045,7 +1045,7 @@ <h3 class="question heading settled" data-level="2.6" id="underlying-platform-da It’s also valuable fingerprinting data. This privacy risk must be carefully weighed when considering exposing such data to origins. </p> - <p class="example" id="example-5a75fd5f"><a class="self-link" href="#example-5a75fd5f"></a> The <code class="idl"><a data-link-type="idl">NavigatorPlugins</a></code> list almost never changes. + <p class="example" id="example-5a75fd5f"><a class="self-link" href="#example-5a75fd5f"></a> The <code class="idl"><a data-link-type="idl" href="https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins" id="ref-for-navigatorplugins">NavigatorPlugins</a></code> list almost never changes. Some user agents have <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=757726">disabled direct enumeration of the plugin list</a> to reduce the fingerprinting harm of this interface. </p> <p>See also:</p> <ul> @@ -1499,7 +1499,7 @@ <h3 class="heading settled" data-level="4.3" id="user-mediation"><span class="se prompt, it may result in divergence implementations by different user agents as some user agents choose to implement more privacy-friendly version.</p> <p>It is possible that the risk of a feature cannot be mitigated because the -risk is endemic to the feature itself. For instance, <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation API Specification 2nd Edition">[GEOLOCATION-API]</a> reveals a user’s location intentionally; user agents generally gate access to +risk is endemic to the feature itself. For instance, <a data-link-type="biblio" href="#biblio-geolocation-api" title="Geolocation">[GEOLOCATION-API]</a> reveals a user’s location intentionally; user agents generally gate access to the feature on a permission prompt which the user may choose to accept. This risk is also present and should be accounted for in features that expose personal data or identifiers.</p> @@ -1659,20 +1659,22 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms + <section> + <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> + <p>Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps + <p>Conformance requirements phrased as algorithms or specific steps can be implemented in any manner, so long as the end result is equivalent. In particular, the algorithms defined in this specification are intended to be easy to understand and are not intended to be performant. Implementers are encouraged to optimize. </p> + </section> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="index"><span class="content">Index</span><a class="self-link" href="#index"></a></h2> @@ -1708,6 +1710,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li> <a data-link-type="biblio">[HTML]</a> defines the following terms: <ul> + <li><span class="dfn-paneled" id="b6b9dbc5">NavigatorPlugins</span> <li><span class="dfn-paneled" id="cc2ecc32">domain</span> <li><span class="dfn-paneled" id="87fcd40c">iframe</span> <li><span class="dfn-paneled" id="6cfa013d">link</span> @@ -1717,14 +1720,14 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="3332e595">setTimeout(handler, timeout, ...arguments)</span> </ul> <li> - <a data-link-type="biblio">[IndexedDB-3]</a> defines the following terms: + <a data-link-type="biblio">[PERMISSIONS-POLICY]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="6ced0379">indexedDB</span> + <li><span class="dfn-paneled" id="cc890cc1">policy-controlled feature</span> </ul> <li> - <a data-link-type="biblio">[PERMISSIONS-POLICY]</a> defines the following terms: + <a data-link-type="biblio">[SAA-NON-COOKIE-STORAGE]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="cc890cc1">policy-controlled feature</span> + <li><span class="dfn-paneled" id="40a3fca9">indexedDB</span> </ul> <li> <a data-link-type="biblio">[STORAGE-ACCESS]</a> defines the following terms: @@ -1744,24 +1747,24 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-csp">[CSP] <dd>Mike West; Antonio Sartori. <a href="https://w3c.github.io/webappsec-csp/"><cite>Content Security Policy Level 3</cite></a>. URL: <a href="https://w3c.github.io/webappsec-csp/">https://w3c.github.io/webappsec-csp/</a> <dt id="biblio-design-principles">[DESIGN-PRINCIPLES] - <dd>Sangwhan Moon. <a href="https://w3ctag.github.io/design-principles/"><cite>Web Platform Design Principles</cite></a>. URL: <a href="https://w3ctag.github.io/design-principles/">https://w3ctag.github.io/design-principles/</a> + <dd>Lea Verou. <a href="https://w3ctag.github.io/design-principles/"><cite>Web Platform Design Principles</cite></a>. URL: <a href="https://w3ctag.github.io/design-principles/">https://w3ctag.github.io/design-principles/</a> <dt id="biblio-ecmascript">[ECMASCRIPT] <dd><a href="https://tc39.es/ecma262/multipage/"><cite>ECMAScript Language Specification</cite></a>. URL: <a href="https://tc39.es/ecma262/multipage/">https://tc39.es/ecma262/multipage/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> - <dt id="biblio-indexeddb-3">[IndexedDB-3] - <dd>Ali Alabbas; Joshua Bell. <a href="https://w3c.github.io/IndexedDB/"><cite>Indexed Database API 3.0</cite></a>. URL: <a href="https://w3c.github.io/IndexedDB/">https://w3c.github.io/IndexedDB/</a> <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> + <dt id="biblio-saa-non-cookie-storage">[SAA-NON-COOKIE-STORAGE] + <dd><a href="https://privacycg.github.io/saa-non-cookie-storage/"><cite>Extending Storage Access API (SAA) to non-cookie storage</cite></a>. Editor's Draft. URL: <a href="https://privacycg.github.io/saa-non-cookie-storage/">https://privacycg.github.io/saa-non-cookie-storage/</a> <dt id="biblio-storage-access">[STORAGE-ACCESS] - <dd>The Storage Access API URL: <a href="https://privacycg.github.io/storage-access/">https://privacycg.github.io/storage-access/</a> + <dd><a href="https://privacycg.github.io/storage-access/"><cite>The Storage Access API</cite></a>. Editor's Draft. URL: <a href="https://privacycg.github.io/storage-access/">https://privacycg.github.io/storage-access/</a> </dl> <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3> <dl> <dt id="biblio-adding-permission">[ADDING-PERMISSION] <dd>Nick Doty. <a href="https://github.com/w3cping/adding-permissions"><cite>Adding another permission? A guide</cite></a>. URL: <a href="https://github.com/w3cping/adding-permissions">https://github.com/w3cping/adding-permissions</a> <dt id="biblio-battery-status">[BATTERY-STATUS] - <dd>Anssi Kostiainen; Mounir Lamouri; Raphael Kubo da Costa. <a href="https://w3c.github.io/battery/"><cite>Battery Status API</cite></a>. URL: <a href="https://w3c.github.io/battery/">https://w3c.github.io/battery/</a> + <dd>Anssi Kostiainen; Raphael Kubo da Costa. <a href="https://w3c.github.io/battery/"><cite>Battery Status API</cite></a>. URL: <a href="https://w3c.github.io/battery/">https://w3c.github.io/battery/</a> <dt id="biblio-beacon">[BEACON] <dd>Ilya Grigorik; Alois Reitbauer. <a href="https://w3c.github.io/beacon/"><cite>Beacon</cite></a>. URL: <a href="https://w3c.github.io/beacon/">https://w3c.github.io/beacon/</a> <dt id="biblio-comcast">[COMCAST] @@ -1769,7 +1772,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-cors">[CORS] <dd>Anne van Kesteren. <a href="https://www.w3.org/TR/cors/"><cite>Cross-Origin Resource Sharing</cite></a>. 2 June 2020. REC. URL: <a href="https://www.w3.org/TR/cors/">https://www.w3.org/TR/cors/</a> <dt id="biblio-credential-management-1">[CREDENTIAL-MANAGEMENT-1] - <dd>Mike West. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> + <dd>Nina Satragno; Marcos Caceres. <a href="https://w3c.github.io/webappsec-credential-management/"><cite>Credential Management Level 1</cite></a>. URL: <a href="https://w3c.github.io/webappsec-credential-management/">https://w3c.github.io/webappsec-credential-management/</a> <dt id="biblio-dap-privacy-reqs">[DAP-PRIVACY-REQS] <dd>Alissa Cooper; Frederick Hirsch; John Morris. <a href="https://www.w3.org/TR/dap-privacy-reqs/"><cite>Device API Privacy Requirements</cite></a>. 29 June 2010. NOTE. URL: <a href="https://www.w3.org/TR/dap-privacy-reqs/">https://www.w3.org/TR/dap-privacy-reqs/</a> <dt id="biblio-discovery-api">[DISCOVERY-API] @@ -1777,23 +1780,23 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-doty-geolocation">[DOTY-GEOLOCATION] <dd>Nick Doty, Deirdre K. Mulligan, Erik Wilde. <a href="https://escholarship.org/uc/item/0rp834wf"><cite>Privacy Issues of the W3C Geolocation API</cite></a>. URL: <a href="https://escholarship.org/uc/item/0rp834wf">https://escholarship.org/uc/item/0rp834wf</a> <dt id="biblio-encrypted-media">[ENCRYPTED-MEDIA] - <dd>David Dorwin; et al. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> + <dd>Joey Parrish; Greg Freedman. <a href="https://w3c.github.io/encrypted-media/"><cite>Encrypted Media Extensions</cite></a>. URL: <a href="https://w3c.github.io/encrypted-media/">https://w3c.github.io/encrypted-media/</a> <dt id="biblio-fingerprinting-guidance">[FINGERPRINTING-GUIDANCE] <dd>Nick Doty. <a href="https://w3c.github.io/fingerprinting-guidance/"><cite>Mitigating Browser Fingerprinting in Web Specifications</cite></a>. URL: <a href="https://w3c.github.io/fingerprinting-guidance/">https://w3c.github.io/fingerprinting-guidance/</a> <dt id="biblio-fullscreen">[FULLSCREEN] <dd>Philip Jägenstedt. <a href="https://fullscreen.spec.whatwg.org/"><cite>Fullscreen API Standard</cite></a>. Living Standard. URL: <a href="https://fullscreen.spec.whatwg.org/">https://fullscreen.spec.whatwg.org/</a> <dt id="biblio-gamepad">[GAMEPAD] - <dd>Steve Agoston; James Hollyer; Matthew Reynolds. <a href="https://w3c.github.io/gamepad/"><cite>Gamepad</cite></a>. URL: <a href="https://w3c.github.io/gamepad/">https://w3c.github.io/gamepad/</a> + <dd>Steve Agoston; Matthew Reynolds. <a href="https://w3c.github.io/gamepad/"><cite>Gamepad</cite></a>. URL: <a href="https://w3c.github.io/gamepad/">https://w3c.github.io/gamepad/</a> <dt id="biblio-generic-sensor">[GENERIC-SENSOR] <dd>Rick Waldron. <a href="https://w3c.github.io/sensors/"><cite>Generic Sensor API</cite></a>. URL: <a href="https://w3c.github.io/sensors/">https://w3c.github.io/sensors/</a> <dt id="biblio-geolocation-api">[GEOLOCATION-API] - <dd>Andrei Popescu. <a href="https://w3c.github.io/geolocation-api/"><cite>Geolocation API Specification 2nd Edition</cite></a>. URL: <a href="https://w3c.github.io/geolocation-api/">https://w3c.github.io/geolocation-api/</a> + <dd>Marcos Caceres; Reilly Grant. <a href="https://w3c.github.io/geolocation/"><cite>Geolocation</cite></a>. URL: <a href="https://w3c.github.io/geolocation/">https://w3c.github.io/geolocation/</a> <dt id="biblio-gyrospeechrecognition">[GYROSPEECHRECOGNITION] <dd>Yan Michalevsky; Dan Boneh; Gabi Nakibly. <a href="https://www.usenix.org/system/files/conference/usenixsecurity14/sec14-paper-michalevsky.pdf"><cite>Gyrophone: Recognizing Speech from Gyroscope Signals</cite></a>. URL: <a href="https://www.usenix.org/system/files/conference/usenixsecurity14/sec14-paper-michalevsky.pdf">https://www.usenix.org/system/files/conference/usenixsecurity14/sec14-paper-michalevsky.pdf</a> <dt id="biblio-homakov">[HOMAKOV] <dd>Egor Homakov. <a href="http://homakov.blogspot.de/2014/01/using-content-security-policy-for-evil.html"><cite>Using Content-Security-Policy for Evil</cite></a>. URL: <a href="http://homakov.blogspot.de/2014/01/using-content-security-policy-for-evil.html">http://homakov.blogspot.de/2014/01/using-content-security-policy-for-evil.html</a> <dt id="biblio-html-imports">[HTML-IMPORTS] - <dd>Dimitri Glazkov; Hajime Morita. <a href="https://w3c.github.io/webcomponents/spec/imports/"><cite>HTML Imports</cite></a>. URL: <a href="https://w3c.github.io/webcomponents/spec/imports/">https://w3c.github.io/webcomponents/spec/imports/</a> + <dd>Dimitri Glazkov; Hajime Morita. <a href="https://wicg.github.io/webcomponents/spec/imports/"><cite>HTML Imports</cite></a>. URL: <a href="https://wicg.github.io/webcomponents/spec/imports/">https://wicg.github.io/webcomponents/spec/imports/</a> <dt id="biblio-olejnik-als">[OLEJNIK-ALS] <dd>Lukasz Olejnik. <a href="https://blog.lukaszolejnik.com/privacy-of-ambient-light-sensors/"><cite>Privacy analysis of Ambient Light Sensors</cite></a>. URL: <a href="https://blog.lukaszolejnik.com/privacy-of-ambient-light-sensors/">https://blog.lukaszolejnik.com/privacy-of-ambient-light-sensors/</a> <dt id="biblio-olejnik-battery">[OLEJNIK-BATTERY] @@ -2038,17 +2041,18 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "0e0909b7": {"dfnID":"0e0909b7","dfnText":"form-action","external":true,"refSections":[{"refs":[{"id":"ref-for-form-action"}],"title":"2.4. \n How do the features in your specification deal with sensitive information?\n"}],"url":"https://w3c.github.io/webappsec-csp/#form-action"}, "3332e595": {"dfnID":"3332e595","dfnText":"setTimeout(handler, timeout, ...arguments)","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-settimeout"}],"title":"2.10. \n Do features in this specification enable new script execution/loading\n mechanisms?\n"}],"url":"https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout"}, "3a2db83f": {"dfnID":"3a2db83f","dfnText":"localStorage","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-localstorage"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"}],"url":"https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage"}, +"40a3fca9": {"dfnID":"40a3fca9","dfnText":"indexedDB","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-storageaccesshandle-indexeddb"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"}],"url":"https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-indexeddb"}, "4780b3e9": {"dfnID":"4780b3e9","dfnText":"first-party-site context","external":true,"refSections":[{"refs":[{"id":"ref-for-first-party-site-context"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"}],"url":"https://privacycg.github.io/storage-access/#first-party-site-context"}, "61cd38cd": {"dfnID":"61cd38cd","dfnText":"FormData","external":true,"refSections":[{"refs":[{"id":"ref-for-formdata"}],"title":"2.4. \n How do the features in your specification deal with sensitive information?\n"}],"url":"https://xhr.spec.whatwg.org/#formdata"}, "63448587": {"dfnID":"63448587","dfnText":"eval()","external":true,"refSections":[{"refs":[{"id":"ref-for-sec-eval-x"}],"title":"2.10. \n Do features in this specification enable new script execution/loading\n mechanisms?\n"}],"url":"https://tc39.github.io/ecma262/#sec-eval-x"}, "65181da8": {"dfnID":"65181da8","dfnText":"secure context","external":true,"refSections":[{"refs":[{"id":"ref-for-secure-context"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#secure-context"}, "6a1335c3": {"dfnID":"6a1335c3","dfnText":"content decryption module","external":true,"refSections":[{"refs":[{"id":"ref-for-cdm"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"}],"url":"https://www.w3.org/TR/encrypted-media/#cdm"}, -"6ced0379": {"dfnID":"6ced0379","dfnText":"indexedDB","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-windoworworkerglobalscope-indexeddb"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"}],"url":"https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb"}, "6cfa013d": {"dfnID":"6cfa013d","dfnText":"link","external":true,"refSections":[{"refs":[{"id":"ref-for-the-link-element"}],"title":"2.10. \n Do features in this specification enable new script execution/loading\n mechanisms?\n"}],"url":"https://html.spec.whatwg.org/multipage/semantics.html#the-link-element"}, "6e4a4b23": {"dfnID":"6e4a4b23","dfnText":"connect-src","external":true,"refSections":[{"refs":[{"id":"ref-for-connect-src"}],"title":"2.4. \n How do the features in your specification deal with sensitive information?\n"}],"url":"https://w3c.github.io/webappsec-csp/#connect-src"}, "87fcd40c": {"dfnID":"87fcd40c","dfnText":"iframe","external":true,"refSections":[{"refs":[{"id":"ref-for-the-iframe-element"},{"id":"ref-for-the-iframe-element\u2460"}],"title":"2.17. \n Do features in your specification enable origins to downgrade default\n security protections?\n"}],"url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element"}, "9e196595": {"dfnID":"9e196595","dfnText":"script-src","external":true,"refSections":[{"refs":[{"id":"ref-for-script-src"}],"title":"2.10. \n Do features in this specification enable new script execution/loading\n mechanisms?\n"}],"url":"https://w3c.github.io/webappsec-csp/#script-src"}, "active-network-attacker": {"dfnID":"active-network-attacker","dfnText":"active network attacker","external":false,"refSections":[{"refs":[{"id":"ref-for-active-network-attacker"},{"id":"ref-for-active-network-attacker\u2460"}],"title":"2.5. \n Do the features in your specification introduce new state for an origin\n that persists across browsing sessions?\n"},{"refs":[{"id":"ref-for-active-network-attacker\u2461"}],"title":"4.5. \n Secure Contexts\n"}],"url":"#active-network-attacker"}, +"b6b9dbc5": {"dfnID":"b6b9dbc5","dfnText":"NavigatorPlugins","external":true,"refSections":[{"refs":[{"id":"ref-for-navigatorplugins"}],"title":"2.6. \n Do the features in your specification expose information about the\n underlying platform to origins?\n"}],"url":"https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins"}, "cc2ecc32": {"dfnID":"cc2ecc32","dfnText":"domain","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-document-domain"}],"title":"2.17. \n Do features in your specification enable origins to downgrade default\n security protections?\n"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#dom-document-domain"}, "cc890cc1": {"dfnID":"cc890cc1","dfnText":"policy-controlled feature","external":true,"refSections":[{"refs":[{"id":"ref-for-policy-controlled-feature"}],"title":"2.17. \n Do features in your specification enable origins to downgrade default\n security protections?\n"}],"url":"https://w3c.github.io/webappsec-permissions-policy/#policy-controlled-feature"}, "cross-site-request-forgery-attacks": {"dfnID":"cross-site-request-forgery-attacks","dfnText":"Cross-site request forgery attacks","external":false,"refSections":[{"refs":[{"id":"ref-for-cross-site-request-forgery-attacks"}],"title":"2.7. \n Does this specification allow an origin to send data to the underlying\n platform?\n"}],"url":"#cross-site-request-forgery-attacks"}, @@ -2452,13 +2456,14 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"iframe","type":"element","url":"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element"}, "https://html.spec.whatwg.org/multipage/scripting.html#script": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"script","type":"element","url":"https://html.spec.whatwg.org/multipage/scripting.html#script"}, "https://html.spec.whatwg.org/multipage/semantics.html#the-link-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"link","type":"element","url":"https://html.spec.whatwg.org/multipage/semantics.html#the-link-element"}, +"https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"NavigatorPlugins","type":"interface","url":"https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins"}, "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout": {"export":true,"for_":["WindowOrWorkerGlobalScope"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"setTimeout(handler, timeout, ...arguments)","type":"method","url":"https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout"}, "https://html.spec.whatwg.org/multipage/webappapis.html#secure-context": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"secure context","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#secure-context"}, "https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage": {"export":true,"for_":["WindowLocalStorage"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"localStorage","type":"attribute","url":"https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage"}, +"https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-indexeddb": {"export":true,"for_":["StorageAccessHandle"],"level":"1","normative":true,"shortname":"saa-non-cookie-storage","spec":"saa-non-cookie-storage","status":"current","text":"indexedDB","type":"attribute","url":"https://privacycg.github.io/saa-non-cookie-storage/#dom-storageaccesshandle-indexeddb"}, "https://privacycg.github.io/storage-access/#first-party-site-context": {"export":true,"for_":[],"level":"","normative":true,"shortname":"storage-access","spec":"storage-access","status":"anchor-block","text":"first-party-site context","type":"dfn","url":"https://privacycg.github.io/storage-access/#first-party-site-context"}, "https://privacycg.github.io/storage-access/#third-party-context": {"export":true,"for_":[],"level":"","normative":true,"shortname":"storage-access","spec":"storage-access","status":"anchor-block","text":"third-party context","type":"dfn","url":"https://privacycg.github.io/storage-access/#third-party-context"}, "https://tc39.github.io/ecma262/#sec-eval-x": {"export":true,"for_":[],"level":"","normative":true,"shortname":"ecmascript","spec":"ecmascript","status":"anchor-block","text":"eval()","type":"method","url":"https://tc39.github.io/ecma262/#sec-eval-x"}, -"https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb": {"export":true,"for_":["WindowOrWorkerGlobalScope"],"level":"3","normative":true,"shortname":"indexeddb","spec":"indexeddb-3","status":"current","text":"indexedDB","type":"attribute","url":"https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb"}, "https://w3c.github.io/webappsec-csp/#connect-src": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"csp","spec":"csp3","status":"current","text":"connect-src","type":"dfn","url":"https://w3c.github.io/webappsec-csp/#connect-src"}, "https://w3c.github.io/webappsec-csp/#form-action": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"csp","spec":"csp3","status":"current","text":"form-action","type":"dfn","url":"https://w3c.github.io/webappsec-csp/#form-action"}, "https://w3c.github.io/webappsec-csp/#script-src": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"csp","spec":"csp3","status":"current","text":"script-src","type":"dfn","url":"https://w3c.github.io/webappsec-csp/#script-src"}, diff --git a/tests/github/w3ctag/url/url.console.txt b/tests/github/w3ctag/url/url.console.txt index ad89219dda..8d40d41fcb 100644 --- a/tests/github/w3ctag/url/url.console.txt +++ b/tests/github/w3ctag/url/url.console.txt @@ -1,3 +1 @@ -FATAL ERROR: Not all required metadata was provided: - Must provide at least one 'Issue Tracking' entry. WARNING: This specification has neither a 'Security Considerations' nor a 'Privacy Considerations' section. Please consider adding both, see https://w3ctag.github.io/security-questionnaire/. diff --git a/tests/github/w3ctag/url/url.html b/tests/github/w3ctag/url/url.html index 1d0e6beff2..7aa692e08e 100644 --- a/tests/github/w3ctag/url/url.html +++ b/tests/github/w3ctag/url/url.html @@ -5,8 +5,8 @@ <title>URL</title> <meta content="NOTE" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-NOTE" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="https://www.w3.org/TR/url-1/" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -443,7 +443,7 @@ <h1 class="p-name no-ref allcaps" id="title">URL</h1> please send an email to the editors. </p> </details> </div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> diff --git a/tests/github/whatwg/compat/compatibility.console.txt b/tests/github/whatwg/compat/compatibility.console.txt index 43d46d0a6b..bb1792e841 100644 --- a/tests/github/whatwg/compat/compatibility.console.txt +++ b/tests/github/whatwg/compat/compatibility.console.txt @@ -1,6 +1,6 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. LINE 702:18: Character reference '&ltp' didn't end in ;. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 705: Image doesn't exist, so I couldn't determine its width and height: 'stroked-text.png' LINE ~117: No 'property' refs found for '-webkit-device-pixel-ratio'. '-webkit-device-pixel-ratio' @@ -12,5 +12,41 @@ LINE ~151: No 'property' refs found for '-webkit-transform-3d'. '-webkit-transform-3d' LINE ~161: No 'property' refs found for '-webkit-transform-3d'. '-webkit-transform-3d' +LINE ~284: Multiple possible 'border-bottom-left-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-left-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-left-radius +spec:css-borders-4; type:property; text:border-bottom-left-radius +'border-bottom-left-radius' +LINE ~288: Multiple possible 'border-bottom-right-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-right-radius +spec:css-borders-4; type:property; text:border-bottom-right-radius +'border-bottom-right-radius' +LINE ~292: Multiple possible 'border-top-left-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-left-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-left-radius +spec:css-borders-4; type:property; text:border-top-left-radius +'border-top-left-radius' +LINE ~296: Multiple possible 'border-top-right-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-right-radius +spec:css-borders-4; type:property; text:border-top-right-radius +'border-top-right-radius' +LINE ~300: Multiple possible 'border-radius' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-radius +spec:css-borders-4; type:property; text:border-radius +'border-radius' +LINE ~304: Multiple possible 'box-shadow' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:box-shadow +spec:css-borders-4; type:property; text:box-shadow +'box-shadow' LINE 759: No 'dfn' refs found for 'responsible document'. <a bs-line-number="759" data-link-type="dfn" data-lt="responsible document">responsible document</a> diff --git a/tests/github/whatwg/compat/compatibility.html b/tests/github/whatwg/compat/compatibility.html index db5b45bb57..27eea938f0 100644 --- a/tests/github/whatwg/compat/compatibility.html +++ b/tests/github/whatwg/compat/compatibility.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Compatibility Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-compat.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-compat.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-compat.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Compatibility</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref" id="title">Compatibility</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/compat">GitHub whatwg/compat</a> (<a href="https://github.com/whatwg/compat/issues/new">new issue</a>, <a href="https://github.com/whatwg/compat/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/compat">GitHub whatwg/compat</a> (<a href="https://github.com/whatwg/compat/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/compat/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/compat/commits">GitHub whatwg/compat/commits</a> @@ -287,7 +619,7 @@ <h4 class="heading settled" data-level="3.4.1" id="css-simple-aliases"><span cla <td><code><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-name" id="ref-for-propdef-animation-name">animation-name</a></code> <tr> <td><code><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef--webkit-animation-duration">-webkit-animation-duration</dfn></code> - <td><code><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-duration" id="ref-for-propdef-animation-duration">animation-duration</a></code> + <td><code><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-2/#propdef-animation-duration" id="ref-for-propdef-animation-duration">animation-duration</a></code> <tr> <td><code><dfn class="dfn-paneled css" data-dfn-type="property" data-export id="propdef--webkit-animation-timing-function">-webkit-animation-timing-function</dfn></code> <td><code><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function" id="ref-for-propdef-animation-timing-function">animation-timing-function</a></code> @@ -541,7 +873,7 @@ <h4 class="heading settled" data-level="3.4.6" id="the-webkit-background-clip-pr <td>visual </table> <p>The <code><a class="property css" data-link-type="property" href="#propdef--webkit-background-clip" id="ref-for-propdef--webkit-background-clip①">-webkit-background-clip</a></code> property—when its value is <a class="css" data-link-type="maybe" href="#valdef--webkit-background-clip-text" id="ref-for-valdef--webkit-background-clip-text">text</a>—creates a background <a data-link-type="dfn" href="https://drafts.fxtf.org/css-masking-1/#clipping-region" id="ref-for-clipping-region">clipping region</a> from the outer text stroke of the foreground text (including alpha transparency).</p> - <p>The <code><a class="property css" data-link-type="property" href="#propdef--webkit-background-clip" id="ref-for-propdef--webkit-background-clip②">-webkit-background-clip</a></code> property is a simple alias of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip" id="ref-for-propdef-background-clip">background-clip</a> property for all other <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-backgrounds-3/#typedef-box" id="ref-for-typedef-box">&lt;box></a> values.</p> + <p>The <code><a class="property css" data-link-type="property" href="#propdef--webkit-background-clip" id="ref-for-propdef--webkit-background-clip②">-webkit-background-clip</a></code> property is a simple alias of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip" id="ref-for-propdef-background-clip">background-clip</a> property for all other <a class="production css" data-link-type="type" href="https://drafts.csswg.org/css-box-4/#typedef-box" id="ref-for-typedef-box">&lt;box></a> values.</p> <div class="note" role="note"> Note that the root element has a different background painting area, and thus the <a class="property css" data-link-type="property" href="#propdef--webkit-background-clip" id="ref-for-propdef--webkit-background-clip③">-webkit-background-clip</a> property has no effect when specified on it. See <a data-link-type="dfn" href="https://drafts.csswg.org/css-backgrounds-3/#special-backgrounds" id="ref-for-special-backgrounds">the backgrounds of special elements</a>. </div> <dl> <dt><dfn class="dfn-paneled css" data-dfn-for="-webkit-background-clip" data-dfn-type="value" data-export id="valdef--webkit-background-clip-border-box">border-box</dfn> @@ -985,17 +1317,20 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="eda608e1">animation</span> <li><span class="dfn-paneled" id="78be83bb">animation-delay</span> <li><span class="dfn-paneled" id="be0387bc">animation-direction</span> - <li><span class="dfn-paneled" id="5e8da52b">animation-duration</span> <li><span class="dfn-paneled" id="baa76d7b">animation-fill-mode</span> <li><span class="dfn-paneled" id="7ddf964e">animation-iteration-count</span> <li><span class="dfn-paneled" id="d984b6fe">animation-name</span> <li><span class="dfn-paneled" id="9b3bb1df">animation-play-state</span> <li><span class="dfn-paneled" id="c16b1855">animation-timing-function</span> </ul> + <li> + <a data-link-type="biblio">[CSS-ANIMATIONS-2]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="06a8cc3f">animation-duration</span> + </ul> <li> <a data-link-type="biblio">[CSS-BACKGROUNDS-3]</a> defines the following terms: <ul> - <li><span class="dfn-paneled" id="342bb58f">&lt;box></span> <li><span class="dfn-paneled" id="ceaa27cc">&lt;line-width></span> <li><span class="dfn-paneled" id="9b0fa0e9">background-clip</span> <li><span class="dfn-paneled" id="3b1682d5">background-origin</span> @@ -1007,6 +1342,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="dae07910">border-top-right-radius</span> <li><span class="dfn-paneled" id="6916104d">box-shadow</span> </ul> + <li> + <a data-link-type="biblio">[CSS-BOX-4]</a> defines the following terms: + <ul> + <li><span class="dfn-paneled" id="e7382b89">&lt;box></span> + </ul> <li> <a data-link-type="biblio">[CSS-COLOR-4]</a> defines the following terms: <ul> @@ -1173,25 +1513,29 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-css-align-3">[CSS-ALIGN-3] <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-align/"><cite>CSS Box Alignment Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-align/">https://drafts.csswg.org/css-align/</a> <dt id="biblio-css-animations-1">[CSS-ANIMATIONS-1] - <dd>Dean Jackson; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dd>David Baron; et al. <a href="https://drafts.csswg.org/css-animations/"><cite>CSS Animations Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations/">https://drafts.csswg.org/css-animations/</a> + <dt id="biblio-css-animations-2">[CSS-ANIMATIONS-2] + <dd>David Baron; Brian Birtles. <a href="https://drafts.csswg.org/css-animations-2/"><cite>CSS Animations Level 2</cite></a>. URL: <a href="https://drafts.csswg.org/css-animations-2/">https://drafts.csswg.org/css-animations-2/</a> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dt id="biblio-css-box-4">[CSS-BOX-4] + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-display-3">[CSS-DISPLAY-3] - <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> + <dd>Elika Etemad; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-display/"><cite>CSS Display Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-display/">https://drafts.csswg.org/css-display/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-flexbox-1">[CSS-FLEXBOX-1] <dd>Tab Atkins Jr.; et al. <a href="https://drafts.csswg.org/css-flexbox-1/"><cite>CSS Flexible Box Layout Module Level 1</cite></a>. URL: <a href="https://drafts.csswg.org/css-flexbox-1/">https://drafts.csswg.org/css-flexbox-1/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-size-adjust-1">[CSS-SIZE-ADJUST-1] - <dd>CSS Mobile Text Size Adjustment Module Level 1 URL: <a href="https://drafts.csswg.org/css-size-adjust-1/">https://drafts.csswg.org/css-size-adjust-1/</a> + <dd><a href="https://drafts.csswg.org/css-size-adjust-1/"><cite>CSS Mobile Text Size Adjustment Module Level 1</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-size-adjust-1/">https://drafts.csswg.org/css-size-adjust-1/</a> <dt id="biblio-css-sizing-3">[CSS-SIZING-3] <dd>Tab Atkins Jr.; Elika Etemad. <a href="https://drafts.csswg.org/css-sizing-3/"><cite>CSS Box Sizing Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-sizing-3/">https://drafts.csswg.org/css-sizing-3/</a> <dt id="biblio-css-transforms-1">[CSS-TRANSFORMS-1] @@ -1695,6 +2039,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "-webkit-repeating-linear-gradient": {"dfnID":"-webkit-repeating-linear-gradient","dfnText":"-webkit-repeating-linear-gradient()","external":false,"refSections":[],"url":"#-webkit-repeating-linear-gradient"}, "-webkit-repeating-radial-gradient": {"dfnID":"-webkit-repeating-radial-gradient","dfnText":"-webkit-repeating-radial-gradient()","external":false,"refSections":[],"url":"#-webkit-repeating-radial-gradient"}, "0460a504": {"dfnID":"0460a504","dfnText":"resolution","external":true,"refSections":[{"refs":[{"id":"ref-for-descdef-media-resolution"},{"id":"ref-for-descdef-media-resolution\u2460"},{"id":"ref-for-descdef-media-resolution\u2461"}],"title":"3.2.1. \n -webkit-device-pixel-ratio\n"}],"url":"https://drafts.csswg.org/mediaqueries-4/#descdef-media-resolution"}, +"06a8cc3f": {"dfnID":"06a8cc3f","dfnText":"animation-duration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-duration"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-animations-2/#propdef-animation-duration"}, "09f2cf3e": {"dfnID":"09f2cf3e","dfnText":"transform-origin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transform-origin"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin"}, "0bf92d15": {"dfnID":"0bf92d15","dfnText":"mask-composite","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-composite"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-composite"}, "11151628": {"dfnID":"11151628","dfnText":"mask-clip","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-clip"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-clip"}, @@ -1710,7 +2055,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "280c9a03": {"dfnID":"280c9a03","dfnText":"border-bottom-right-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-right-radius"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-right-radius"}, "2f0492ac": {"dfnID":"2f0492ac","dfnText":"body","external":true,"refSections":[{"refs":[{"id":"ref-for-the-body-element"}],"title":"4.2. window.orientation API"},{"refs":[{"id":"ref-for-the-body-element\u2460"},{"id":"ref-for-the-body-element\u2461"}],"title":"4.2.2. Event Handlers on Window objects and body elements"}],"url":"https://html.spec.whatwg.org/multipage/sections.html#the-body-element"}, "3124d393": {"dfnID":"3124d393","dfnText":"linear-gradient","external":true,"refSections":[{"refs":[{"id":"ref-for-ltlinear-gradient"}],"title":"3.3.1. \n -webkit-linear-gradient()\n"}],"url":"https://www.w3.org/TR/2011/WD-css3-images-20110217/#ltlinear-gradient"}, -"342bb58f": {"dfnID":"342bb58f","dfnText":"<box>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-box"}],"title":"3.4.6. Foreground Text Clipping: the \n-webkit-background-clip property"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-box"}, "35972864": {"dfnID":"35972864","dfnText":"active document","external":true,"refSections":[{"refs":[{"id":"ref-for-nav-document"}],"title":"4.2. window.orientation API"}],"url":"https://html.spec.whatwg.org/multipage/document-sequences.html#nav-document"}, "366fd15a": {"dfnID":"366fd15a","dfnText":"min-resolution","external":true,"refSections":[{"refs":[{"id":"ref-for-descdef-media-resolution"},{"id":"ref-for-descdef-media-resolution\u2460"},{"id":"ref-for-descdef-media-resolution\u2461"}],"title":"3.2.1. \n -webkit-device-pixel-ratio\n"}],"url":"https://drafts.csswg.org/mediaqueries-4/#descdef-media-resolution"}, "3a74ed0c": {"dfnID":"3a74ed0c","dfnText":"flex-flow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-flow"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow"}, @@ -1723,7 +2067,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "4d0e596d": {"dfnID":"4d0e596d","dfnText":"mask-border-repeat","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-border-repeat"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-repeat"}, "58a520d5": {"dfnID":"58a520d5","dfnText":"mask-repeat","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-mask-repeat"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"},{"id":"ref-for-window\u2460"}],"title":"4.2. window.orientation API"},{"refs":[{"id":"ref-for-window\u2461"},{"id":"ref-for-window\u2462"}],"title":"4.2.2. Event Handlers on Window objects and body elements"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, -"5e8da52b": {"dfnID":"5e8da52b","dfnText":"animation-duration","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation-duration"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-duration"}, "5f1a81e7": {"dfnID":"5f1a81e7","dfnText":"border-radius","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-radius"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-radius"}, "5f1b7f60": {"dfnID":"5f1b7f60","dfnText":"@media","external":true,"refSections":[{"refs":[{"id":"ref-for-at-ruledef-media"}],"title":"3.2.1. \n -webkit-device-pixel-ratio\n"},{"refs":[{"id":"ref-for-at-ruledef-media\u2460"}],"title":"3.2.2. \n -webkit-transform-3d\n"}],"url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, "5fd23811": {"dfnID":"5fd23811","dfnText":"fire an event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event-fire"}],"title":"4.2. window.orientation API"}],"url":"https://dom.spec.whatwg.org/#concept-event-fire"}, @@ -1790,6 +2133,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "e2e08d07": {"dfnID":"e2e08d07","dfnText":"transform","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-transform"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-transforms-1/#propdef-transform"}, "e3d4f907": {"dfnID":"e3d4f907","dfnText":"color","external":true,"refSections":[{"refs":[{"id":"ref-for-animtype-color"}],"title":"3.4.7.1. Foreground Text Color: the \n-webkit-text-fill-color property"},{"refs":[{"id":"ref-for-animtype-color\u2460"}],"title":"3.4.7.2. Text Stroke Color: the \n-webkit-text-stroke-color property"}],"url":"https://drafts.csswg.org/css-transitions/#animtype-color"}, "e6ccf9d2": {"dfnID":"e6ccf9d2","dfnText":"ScreenOrientation","external":true,"refSections":[{"refs":[{"id":"ref-for-screenorientation-interface"}],"title":"4.2.1. window.orientation angle"},{"refs":[{"id":"ref-for-screenorientation-interface\u2460"}],"title":"Acknowledgements"}],"url":"https://w3c.github.io/screen-orientation/#screenorientation-interface"}, +"e7382b89": {"dfnID":"e7382b89","dfnText":"<box>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-box"}],"title":"3.4.6. Foreground Text Clipping: the \n-webkit-background-clip property"}],"url":"https://drafts.csswg.org/css-box-4/#typedef-box"}, "e983d6ca": {"dfnID":"e983d6ca","dfnText":"WebKitCSSMatrix","external":true,"refSections":[{"refs":[{"id":"ref-for-webkitcssmatrix"}],"title":"4.1. The WebKitCSSMatrix interface"}],"url":"https://drafts.fxtf.org/geometry-1/#webkitcssmatrix"}, "eda608e1": {"dfnID":"eda608e1","dfnText":"animation","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-animation"}],"title":"3.4.1. Simple property aliases"}],"url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, "edc3a18b": {"dfnID":"edc3a18b","dfnText":"flex-grow","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-flex-grow"}],"title":"3.4.1. Simple property aliases"},{"refs":[{"id":"ref-for-propdef-flex-grow\u2460"}],"title":"3.4.4. Property mappings"}],"url":"https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow"}, @@ -2264,9 +2608,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-backgrounds-3/#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | svg viewport origin box | view-box", "https://drafts.csswg.org/css-backgrounds-3/#typedef-line-width": "Expands to: medium | thick | thin", -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-box-4/#typedef-box": "Expands to: border-box | content-box | fill-box | margin-box | padding-box | stroke-box | view-box", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", }; function setTypeTitles() { @@ -2280,6 +2624,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I document.addEventListener("DOMContentLoaded", setTypeTitles); } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -2305,12 +2706,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-animations-1/#propdef-animation": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-delay": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-delay","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-delay"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-direction": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-direction","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-direction"}, -"https://drafts.csswg.org/css-animations-1/#propdef-animation-duration": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-duration","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-duration"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-fill-mode": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-fill-mode","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-fill-mode"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-iteration-count","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-name": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-name","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-name"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-play-state": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-play-state","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-play-state"}, "https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-animations","spec":"css-animations-1","status":"current","text":"animation-timing-function","type":"property","url":"https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function"}, +"https://drafts.csswg.org/css-animations-2/#propdef-animation-duration": {"export":true,"for_":[],"level":"2","normative":true,"shortname":"css-animations","spec":"css-animations-2","status":"current","text":"animation-duration","type":"property","url":"https://drafts.csswg.org/css-animations-2/#propdef-animation-duration"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-clip","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-clip"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-origin": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-origin","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-origin"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-background-size": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"background-size","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-background-size"}, @@ -2321,8 +2722,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"border-top-right-radius","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-right-radius"}, "https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"box-shadow","type":"property","url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-box-shadow"}, "https://drafts.csswg.org/css-backgrounds-3/#special-backgrounds": {"export":true,"for_":[],"level":"","normative":true,"shortname":"compat","spec":"","status":"anchor-block","text":"the backgrounds of special elements","type":"dfn","url":"https://drafts.csswg.org/css-backgrounds-3/#special-backgrounds"}, -"https://drafts.csswg.org/css-backgrounds-3/#typedef-box": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"<box>","type":"type","url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-box"}, "https://drafts.csswg.org/css-backgrounds-3/#typedef-line-width": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-backgrounds","spec":"css-backgrounds-3","status":"current","text":"<line-width>","type":"type","url":"https://drafts.csswg.org/css-backgrounds-3/#typedef-line-width"}, +"https://drafts.csswg.org/css-box-4/#typedef-box": {"export":true,"for_":[],"level":"4","normative":true,"shortname":"css-box","spec":"css-box-4","status":"current","text":"<box>","type":"type","url":"https://drafts.csswg.org/css-box-4/#typedef-box"}, "https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor": {"export":true,"for_":["<color>"],"level":"4","normative":true,"shortname":"css-color","spec":"css-color-4","status":"current","text":"currentcolor","type":"value","url":"https://drafts.csswg.org/css-color-4/#valdef-color-currentcolor"}, "https://drafts.csswg.org/css-color-5/#typedef-color": {"export":true,"for_":[],"level":"5","normative":true,"shortname":"css-color","spec":"css-color-5","status":"current","text":"<color>","type":"type","url":"https://drafts.csswg.org/css-color-5/#typedef-color"}, "https://drafts.csswg.org/css-conditional-3/#at-ruledef-media": {"export":true,"for_":[],"level":"3","normative":true,"shortname":"css-conditional","spec":"css-conditional-3","status":"current","text":"@media","type":"at-rule","url":"https://drafts.csswg.org/css-conditional-3/#at-ruledef-media"}, diff --git a/tests/github/whatwg/console/index.console.txt b/tests/github/whatwg/console/index.console.txt index 28cc74d80e..48e9fc87e2 100644 --- a/tests/github/whatwg/console/index.console.txt +++ b/tests/github/whatwg/console/index.console.txt @@ -1,5 +1,5 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 301: Image doesn't exist, so I couldn't determine its width and height: 'images/print-before-returning.png' LINE 464: Image doesn't exist, so I couldn't determine its width and height: 'images/timeEnd-formatting.png' LINE 471: Image doesn't exist, so I couldn't determine its width and height: 'images/edge-Count.png' diff --git a/tests/github/whatwg/console/index.html b/tests/github/whatwg/console/index.html index 7f6c052c30..81d19c283d 100644 --- a/tests/github/whatwg/console/index.html +++ b/tests/github/whatwg/console/index.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Console Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-console.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-console.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-console.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Console</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref" id="title">Console</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/console">GitHub whatwg/console</a> (<a href="https://github.com/whatwg/console/issues/new">new issue</a>, <a href="https://github.com/whatwg/console/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/console">GitHub whatwg/console</a> (<a href="https://github.com/whatwg/console/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/console/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/console/commits">GitHub whatwg/console/commits</a> @@ -853,7 +1185,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/assert" title="The console.assert() method writes an error message to the console if the assertion is false. If the assertion is true, nothing happens.">console/assert</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>28+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>28+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -889,7 +1221,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/count" title="The console.count() method logs the number of times that this particular call to count() has been called.">console/count</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>30+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>30+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -925,7 +1257,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/debug" title="The console.debug() method outputs a message to the web console at the &quot;debug&quot; log level. The message is only displayed to the user if the console is configured to display debug output. In most cases, the log level is configured within the console UI. This log level might correspond to the Debug or Verbose log level.">console/debug</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -943,7 +1275,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/dir" title="The method console.dir() displays an interactive list of the properties of the specified JavaScript object. The output is presented as a hierarchical listing with disclosure triangles that let you see the contents of child objects.">console/dir</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>8+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>8+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -961,7 +1293,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/dirxml" title="The console.dirxml() method displays an interactive tree of the descendant elements of the specified XML/HTML element. If it is not possible to display as an element the JavaScript Object view is shown instead. The output is presented as a hierarchical listing of expandable nodes that let you see the contents of child nodes.">console/dirxml</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>39+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>39+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -997,7 +1329,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/group" title="The console.group() method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console.groupEnd() is called.">console/group</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>9+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>9+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1033,7 +1365,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/groupEnd" title="The console.groupEnd() method exits the current inline group in the Web console. See Using groups in the console in the console documentation for details and examples.">console/groupEnd</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>9+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>9+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1105,7 +1437,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/time" title="The console.time() method starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call console.timeEnd() with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started.">console/time</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1123,7 +1455,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/timeEnd" title="The console.timeEnd() stops a timer that was previously started by calling console.time().">console/timeEnd</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>10+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1138,7 +1470,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="timelog"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/timeLog" title="The console.timeLog() method logs the current value of a timer that was previously started by calling console.time() to the console.">console/timeLog</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/timeLog" title="The console.timeLog() method logs the current value of a timer that was previously started by calling console.time().">console/timeLog</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>62+</span></span><span class="safari yes"><span>Safari</span><span>13+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> @@ -1159,7 +1491,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/console/trace" title="The console.trace() method outputs a stack trace to the Web console.">console/trace</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>6+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>6+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>11+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1874,6 +2206,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/whatwg/dom/dom.console.txt b/tests/github/whatwg/dom/dom.console.txt index 99372da441..58eb29aa1d 100644 --- a/tests/github/whatwg/dom/dom.console.txt +++ b/tests/github/whatwg/dom/dom.console.txt @@ -1,5 +1,49 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 98: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="98" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 103: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="103" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 108: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="108" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 112: Ambiguous for-less link for 'ancestors', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:ancestor +for-less references: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="112" data-link-type="dfn" data-lt="ancestors">ancestors</a> +LINE 137: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="137" data-link-type="dfn" data-lt="children">children</a> +LINE 140: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="140" data-link-type="dfn" data-lt="children">children</a> +LINE 338: Ambiguous for-less link for 'ancestors', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:ancestor +for-less references: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="338" data-link-type="dfn" data-lt="ancestors">ancestors</a> LINE 1104: Ambiguous for-less link for 'activation behavior', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:dom; type:dfn; for:EventTarget; text:activation behavior @@ -9,96 +53,463 @@ spec:core-aam-1.2; type:dfn; for:/; text:activation behavior <a bs-line-number="1104" data-link-type="dfn" data-lt="activation behavior">activation behavior</a> LINE 1564: No 'dfn' refs found for 'global object' with for='['Realm']'. <a bs-line-number="1564" data-link-for="Realm" data-link-type="dfn" data-lt="global object">global object</a> -LINE 2057: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +LINE 1949: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="1949" data-link-type="dfn" data-lt="children">children</a> +LINE 2016: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2016" data-link-type="dfn" data-lt="children">children</a> +LINE 2053: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2053" data-link-type="dfn" data-lt="children">children</a> +LINE 2420: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2420" data-link-type="dfn" data-lt="children">children</a> +LINE 2431: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2431" data-link-type="dfn" data-lt="children">children</a> +LINE 2589: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2589" data-link-type="dfn" data-lt="children">children</a> +LINE 2608: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2608" data-link-type="dfn" data-lt="children">children</a> +LINE 2613: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2613" data-link-type="dfn" data-lt="children">children</a> +LINE 2617: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2617" data-link-type="dfn" data-lt="children">children</a> +LINE 2762: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="2762" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 2768: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="2768" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 2859: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2859" data-link-type="dfn" data-lt="children">children</a> +LINE 2869: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="2869" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 2875: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="2875" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 2881: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2881" data-link-type="dfn" data-lt="children">children</a> +LINE 2890: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="2890" data-link-type="dfn" data-lt="children">children</a> +LINE 3388: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="3388" data-link-type="dfn" data-lt="children">children</a> +LINE 3406: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="3406" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 3665: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="3665" data-link-type="dfn" data-lt="children">children</a> +LINE 3998: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="3998" data-link-type="dfn" data-lt="children">children</a> +LINE 4001: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="4001" data-link-type="dfn" data-lt="children">children</a> +LINE 4041: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="4041" data-link-type="dfn" data-lt="children">children</a> +LINE 4044: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="4044" data-link-type="dfn" data-lt="children">children</a> +LINE 4162: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4162" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4216: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4216" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 4307: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="4307" data-link-type="dfn" data-lt="children">children</a> +LINE 4360: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="4360" data-link-type="dfn" data-lt="children">children</a> +LINE 4401: Ambiguous for-less link for 'ancestor', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:ancestor +for-less references: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="4401" data-link-type="dfn" data-lt="ancestor">ancestor</a> +LINE 4406: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4406" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4479: Ambiguous for-less link for 'ancestor', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:ancestor +for-less references: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="4479" data-link-type="dfn" data-lt="ancestor">ancestor</a> +LINE 4483: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4483" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4492: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="4492" data-link-type="dfn" data-lt="children">children</a> +LINE 4666: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4666" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4671: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4671" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4682: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4682" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4702: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4702" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4708: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4708" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4716: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4716" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4723: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4723" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4751: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:descendant for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="2057" data-link-type="dfn" data-lt="length">length</a> +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4751" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4935: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4935" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4937: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4937" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4946: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4946" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4951: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4951" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4958: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4958" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 4964: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="4964" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 5239: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="5239" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 5768: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="5768" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 6050: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="6050" data-link-type="dfn" data-lt="children">children</a> LINE 6800: No 'dfn' refs found for ':scope element'. <a bs-line-number="6800" data-link-type="dfn" data-lt=":scope element">:scope element</a> LINE 6818: No 'dfn' refs found for ':scope element'. <a bs-line-number="6818" data-link-type="dfn" data-lt=":scope element">:scope element</a> -LINE 7714: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +LINE 7169: Ambiguous for-less link for 'parent', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:parent +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:parent +spec:wai-aria-1.3; type:dfn; for:/; text:parent +spec:css2; type:dfn; for:/; text:parent +<a bs-line-number="7169" data-link-type="dfn" data-lt="parent">parent</a> +LINE 7170: Ambiguous for-less link for 'parent', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:parent +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:parent +spec:wai-aria-1.3; type:dfn; for:/; text:parent +spec:css2; type:dfn; for:/; text:parent +<a bs-line-number="7170" data-link-type="dfn" data-lt="parent">parent</a> +LINE 7304: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:children +for-less references: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="7304" data-link-type="dfn" data-lt="children">children</a> +LINE 7308: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="7308" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 7535: Ambiguous for-less link for 'ancestor', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:ancestor +for-less references: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="7535" data-link-type="dfn" data-lt="ancestor">ancestor</a> +LINE 7735: Ambiguous for-less link for 'descendants', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:dom; type:dfn; for:tree; text:descendant +for-less references: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="7735" data-link-type="dfn" data-lt="descendants">descendants</a> +LINE 7745: Ambiguous for-less link for 'descendant', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:descendant for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="7714" data-link-type="dfn" data-lt="length">length</a> -LINE 7818: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:css2; type:dfn; for:/; text:descendant +<a bs-line-number="7745" data-link-type="dfn" data-lt="descendant">descendant</a> +LINE 7753: Ambiguous for-less link for 'ancestor', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:ancestor for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="7818" data-link-type="dfn" data-lt="length">length</a> -LINE 7958: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="7753" data-link-type="dfn" data-lt="ancestor">ancestor</a> +LINE 7755: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="7958" data-link-type="dfn" data-lt="length">length</a> -LINE 8134: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="7755" data-link-type="dfn" data-lt="children">children</a> +LINE 7758: Ambiguous for-less link for 'ancestor', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:ancestor for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8134" data-link-type="dfn" data-lt="length">length</a> -LINE 8314: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="7758" data-link-type="dfn" data-lt="ancestor">ancestor</a> +LINE 7763: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8314" data-link-type="dfn" data-lt="length">length</a> -LINE 8324: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="7763" data-link-type="dfn" data-lt="children">children</a> +LINE 7786: Ambiguous for-less link for 'ancestor', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:ancestor for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8324" data-link-type="dfn" data-lt="length">length</a> -LINE 8344: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="7786" data-link-type="dfn" data-lt="ancestor">ancestor</a> +LINE 8236: Ambiguous for-less link for 'ancestors', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:ancestor for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8344" data-link-type="dfn" data-lt="length">length</a> -LINE 8537: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="8236" data-link-type="dfn" data-lt="ancestors">ancestors</a> +LINE 8241: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8537" data-link-type="dfn" data-lt="length">length</a> -LINE 8560: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="8241" data-link-type="dfn" data-lt="children">children</a> +LINE 8244: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8560" data-link-type="dfn" data-lt="length">length</a> -LINE 8723: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="8244" data-link-type="dfn" data-lt="children">children</a> +LINE 8497: Ambiguous for-less link for 'ancestors', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:ancestor for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8723" data-link-type="dfn" data-lt="length">length</a> -LINE 8728: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:css2; type:dfn; for:/; text:ancestor +<a bs-line-number="8497" data-link-type="dfn" data-lt="ancestors">ancestors</a> +LINE 8502: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8728" data-link-type="dfn" data-lt="length">length</a> -LINE 8828: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="8502" data-link-type="dfn" data-lt="children">children</a> +LINE 8505: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8828" data-link-type="dfn" data-lt="length">length</a> -LINE 8863: Ambiguous for-less link for 'length', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="8505" data-link-type="dfn" data-lt="children">children</a> +LINE 8775: Ambiguous for-less link for 'children', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: -spec:dom; type:dfn; for:Node; text:length +spec:dom; type:dfn; for:tree; text:children for-less references: -spec:webcryptoapi; type:dfn; for:/; text:length -<a bs-line-number="8863" data-link-type="dfn" data-lt="length">length</a> +spec:wai-aria-1.2; type:dfn; for:/; text:children +spec:wai-aria-1.3; type:dfn; for:/; text:children +<a bs-line-number="8775" data-link-type="dfn" data-lt="children">children</a> WARNING: No 'ref-for-dom-abortsignal-reason①' ID found, skipping MDN features that would target it. WARNING: No 'ref-for-dom-abortsignal-throwifaborted①' ID found, skipping MDN features that would target it. WARNING: No 'ref-for-dom-abortsignal-timeout①' ID found, skipping MDN features that would target it. WARNING: No 'eventdef-htmlslotelement-slotchange' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-xsltprocessor' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-clearparameters' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-getparameter' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-importstylesheet' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-removeparameter' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-reset' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-setparameter' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-transformtodocument' ID found, skipping MDN features that would target it. +WARNING: No 'dom-xsltprocessor-transformtofragment' ID found, skipping MDN features that would target it. WARNING: No 'interface-xsltprocessor' ID found, skipping MDN features that would target it. diff --git a/tests/github/whatwg/dom/dom.html b/tests/github/whatwg/dom/dom.html index dbcfcb56f9..75f6acac6c 100644 --- a/tests/github/whatwg/dom/dom.html +++ b/tests/github/whatwg/dom/dom.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>DOM Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-dom.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-dom.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-dom.svg"> </a> <hgroup> <h1 class="p-name no-ref allcaps" id="title">DOM</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref allcaps" id="title">DOM</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/dom">GitHub whatwg/dom</a> (<a href="https://github.com/whatwg/dom/issues/new">new issue</a>, <a href="https://github.com/whatwg/dom/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/dom">GitHub whatwg/dom</a> (<a href="https://github.com/whatwg/dom/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/dom/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/dom/commits">GitHub whatwg/dom/commits</a> @@ -242,12 +574,12 @@ <h3 class="heading settled" data-level="1.1" id="trees"><span class="secno">1.1. null or an object, and has <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export data-lt="child|children" id="concept-tree-child">children</dfn>, which is an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ordered-set" id="ref-for-ordered-set">ordered set</a> of objects. An object <var>A</var> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent">parent</a> is object <var>B</var> is a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child">child</a> of <var>B</var>. </p> <p>The <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-root">root</dfn> of an object is itself, if its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent①">parent</a> is null, or else it is the <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root">root</a> of its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent②">parent</a>. The <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root①">root</a> of a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree②">tree</a> is any object <a data-link-type="dfn" href="#concept-tree-participate" id="ref-for-concept-tree-participate">participating</a> in that <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree③">tree</a> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③">parent</a> is null. </p> <p>An object <var>A</var> is called a <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-descendant">descendant</dfn> of an object <var>B</var>, if either <var>A</var> is a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①">child</a> of <var>B</var> or <var>A</var> is a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②">child</a> of an -object <var>C</var> that is a <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant">descendant</a> of <var>B</var>.</p> +object <var>C</var> that is a <a data-link-type="dfn">descendant</a> of <var>B</var>.</p> <p>An <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-inclusive-descendant">inclusive descendant</dfn> is -an object or one of its <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①">descendants</a>.</p> - <p>An object <var>A</var> is called an <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-ancestor">ancestor</dfn> of an object <var>B</var> if and only if <var>B</var> is a <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②">descendant</a> of <var>A</var>.</p> +an object or one of its <a data-link-type="dfn">descendants</a>.</p> + <p>An object <var>A</var> is called an <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-ancestor">ancestor</dfn> of an object <var>B</var> if and only if <var>B</var> is a <a data-link-type="dfn">descendant</a> of <var>A</var>.</p> <p>An <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-inclusive-ancestor">inclusive ancestor</dfn> is -an object or one of its <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor">ancestors</a>.</p> +an object or one of its <a data-link-type="dfn">ancestors</a>.</p> <p>An object <var>A</var> is called a <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-sibling">sibling</dfn> of an object <var>B</var>, if and only if <var>B</var> and <var>A</var> share the same non-null <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④">parent</a>.</p> <p>An <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-inclusive-sibling">inclusive sibling</dfn> is an object or one of its <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling">siblings</a>.</p> @@ -258,9 +590,9 @@ <h3 class="heading settled" data-level="1.1" id="trees"><span class="secno">1.1. same <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree⑤">tree</a> and <var>A</var> comes after <var>B</var> in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order①">tree order</a>.</p> <p>The <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-first-child">first child</dfn> of an object is its -first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③">child</a> or null if it has no <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④">children</a>.</p> +first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③">child</a> or null if it has no <a data-link-type="dfn">children</a>.</p> <p>The <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-last-child">last child</dfn> of an object is its -last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤">child</a> or null if it has no <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥">children</a>.</p> +last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④">child</a> or null if it has no <a data-link-type="dfn">children</a>.</p> <p>The <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-previous-sibling">previous sibling</dfn> of an object is its first <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding">preceding</a> <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling①">sibling</a> or null if it has no <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding①">preceding</a> <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling②">sibling</a>.</p> <p>The <dfn class="dfn-paneled" data-dfn-for="tree" data-dfn-type="dfn" data-export id="concept-tree-next-sibling">next sibling</dfn> of an @@ -353,7 +685,7 @@ <h3 class="heading settled" data-level="2.1" id="introduction-to-dom-events"><sp … <c- p>}</c-> </pre> - <p>When an <a data-link-type="dfn" href="#concept-event" id="ref-for-concept-event①③">event</a> is <a data-link-type="dfn" href="#concept-event-dispatch" id="ref-for-concept-event-dispatch⑥">dispatched</a> to an object that <a data-link-type="dfn" href="#concept-tree-participate" id="ref-for-concept-tree-participate①">participates</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree⑥">tree</a> (e.g., an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element">element</a>), it can reach <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener⑤">event listeners</a> on that object’s <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor①">ancestors</a> too. Effectively, all the object’s <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor">inclusive ancestor</a> <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener⑥">event listeners</a> whose <a data-link-type="dfn" href="#event-listener-capture" id="ref-for-event-listener-capture">capture</a> is true are invoked, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②">tree order</a>. And then, if <a data-link-type="dfn" href="#concept-event" id="ref-for-concept-event①④">event</a>’s <code class="idl"><a data-link-type="idl" href="#dom-event-bubbles" id="ref-for-dom-event-bubbles">bubbles</a></code> is true, all the object’s <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①">inclusive ancestor</a> <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener⑦">event listeners</a> whose <a data-link-type="dfn" href="#event-listener-capture" id="ref-for-event-listener-capture①">capture</a> is false are invoked, now in + <p>When an <a data-link-type="dfn" href="#concept-event" id="ref-for-concept-event①③">event</a> is <a data-link-type="dfn" href="#concept-event-dispatch" id="ref-for-concept-event-dispatch⑥">dispatched</a> to an object that <a data-link-type="dfn" href="#concept-tree-participate" id="ref-for-concept-tree-participate①">participates</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree⑥">tree</a> (e.g., an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element">element</a>), it can reach <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener⑤">event listeners</a> on that object’s <a data-link-type="dfn">ancestors</a> too. Effectively, all the object’s <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor">inclusive ancestor</a> <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener⑥">event listeners</a> whose <a data-link-type="dfn" href="#event-listener-capture" id="ref-for-event-listener-capture">capture</a> is true are invoked, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②">tree order</a>. And then, if <a data-link-type="dfn" href="#concept-event" id="ref-for-concept-event①④">event</a>’s <code class="idl"><a data-link-type="idl" href="#dom-event-bubbles" id="ref-for-dom-event-bubbles">bubbles</a></code> is true, all the object’s <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①">inclusive ancestor</a> <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener⑦">event listeners</a> whose <a data-link-type="dfn" href="#event-listener-capture" id="ref-for-event-listener-capture①">capture</a> is false are invoked, now in reverse <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order③">tree order</a>. </p> <p>Let’s look at an example of how <a data-link-type="dfn" href="#concept-event" id="ref-for-concept-event①⑤">events</a> work in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree⑦">tree</a>: </p> <pre class="lang-markup highlight"><c- cp>&lt;!doctype html></c-> @@ -455,7 +787,7 @@ <h3 class="heading settled" data-level="2.2" id="interface-event"><span class="s any registered <a data-link-type="dfn" href="#concept-event-listener" id="ref-for-concept-event-listener①⓪">event listeners</a> after the current one finishes running and, when <a data-link-type="dfn" href="#concept-event-dispatch" id="ref-for-concept-event-dispatch⑨">dispatched</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree⑨">tree</a>, also prevents <var>event</var> from reaching any other objects. <dt><code><var>event</var> . <code class="idl"><a data-link-type="idl" href="#dom-event-bubbles" id="ref-for-dom-event-bubbles③">bubbles</a></code></code> - <dd>Returns true or false depending on how <var>event</var> was initialized. True if <var>event</var> goes through its <a data-link-type="dfn" href="#event-target" id="ref-for-event-target①">target</a>’s <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor②">ancestors</a> in reverse <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order④">tree order</a>; otherwise false. + <dd>Returns true or false depending on how <var>event</var> was initialized. True if <var>event</var> goes through its <a data-link-type="dfn" href="#event-target" id="ref-for-event-target①">target</a>’s <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor">ancestors</a> in reverse <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order④">tree order</a>; otherwise false. <dt><code><var>event</var> . <code class="idl"><a data-link-type="idl" href="#dom-event-cancelable" id="ref-for-dom-event-cancelable②">cancelable</a></code></code> <dd>Returns true or false depending on how <var>event</var> was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation @@ -1435,7 +1767,7 @@ <h3 class="heading settled" data-level="4.1" id="introduction-to-the-dom"><span markup-based resource, ranging from short static documents to long essays or reports with rich multimedia, as well as to fully-fledged interactive applications.</p> - <p>Each such document is represented as a <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree">node tree</a>. Some of the <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node④">nodes</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree①②">tree</a> can have <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦">children</a>, while others are always leaves. </p> + <p>Each such document is represented as a <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree">node tree</a>. Some of the <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node④">nodes</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree①②">tree</a> can have <a data-link-type="dfn">children</a>, while others are always leaves. </p> <p>To illustrate, consider this HTML document:</p> <pre class="lang-markup highlight"><c- cp>&lt;!DOCTYPE html></c-> <c- p>&lt;</c-><c- f>html</c-> <c- e>class</c-><c- o>=</c-><c- s>e</c-><c- p>></c-> @@ -1475,7 +1807,7 @@ <h3 class="heading settled" data-level="4.1" id="introduction-to-the-dom"><span <p class="note" role="note">The most excellent <a href="https://software.hixie.ch/utilities/js/live-dom-viewer/">Live DOM Viewer</a> can be used to explore this matter in more detail. </p> <h3 class="heading settled" data-level="4.2" id="node-trees"><span class="secno">4.2. </span><span class="content">Node tree</span><a class="self-link" href="#node-trees"></a></h3> <p><code class="idl"><a data-link-type="idl" href="#document" id="ref-for-document">Document</a></code>, <code class="idl"><a data-link-type="idl" href="#documenttype" id="ref-for-documenttype">DocumentType</a></code>, <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment">DocumentFragment</a></code>, <code class="idl"><a data-link-type="idl" href="#element" id="ref-for-element④">Element</a></code>, <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text④">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction">ProcessingInstruction</a></code>, and <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment">Comment</a></code> objects (simply called <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-node">nodes</dfn>) <a data-link-type="dfn" href="#concept-tree-participate" id="ref-for-concept-tree-participate④">participate</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree①④">tree</a>, simply named the <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-node-tree">node tree</dfn>. </p> - <p>A <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree①">node tree</a> is constrained as follows, expressed as a relationship between the type of <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node②">node</a> and its allowed <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑧">children</a>: </p> + <p>A <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree①">node tree</a> is constrained as follows, expressed as a relationship between the type of <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node②">node</a> and its allowed <a data-link-type="dfn">children</a>: </p> <dl> <dt><code class="idl"><a data-link-type="idl" href="#document" id="ref-for-document①">Document</a></code> <dd> @@ -1515,9 +1847,9 @@ <h3 class="heading settled" data-level="4.2" id="node-trees"><span class="secno" <p>Its <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data">data</a>’s <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-length" id="ref-for-string-length">length</a>. </p> <dt>Any other node <dd> - <p>Its number of <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑨">children</a>. </p> + <p>Its number of <a data-link-type="dfn">children</a>. </p> </dl> - <p>A <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node④">node</a> is considered <dfn class="dfn-paneled" data-dfn-for="Node" data-dfn-type="dfn" data-export id="concept-node-empty">empty</dfn> if its <a data-link-type="dfn">length</a> is zero. </p> + <p>A <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node④">node</a> is considered <dfn class="dfn-paneled" data-dfn-for="Node" data-dfn-type="dfn" data-export id="concept-node-empty">empty</dfn> if its <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length">length</a> is zero. </p> <h4 class="heading settled" data-level="4.2.1" id="document-trees"><span class="secno">4.2.1. </span><span class="content">Document tree</span><a class="self-link" href="#document-trees"></a></h4> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-document-tree">document tree</dfn> is a <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree②">node tree</a> whose <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root⑧">root</a> is a <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document③">document</a>. </p> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="document-element">document element</dfn> of a <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document④">document</a> is the <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element④">element</a> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤">parent</a> is that <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document⑤">document</a>, if it exists; otherwise null. </p> @@ -1604,10 +1936,10 @@ <h5 class="heading settled" data-level="4.2.2.3" id="finding-slots-and-slotables <p>If the <i>open flag</i> is set and <var>shadow</var>’s <a data-link-type="dfn" href="#shadowroot-mode" id="ref-for-shadowroot-mode③">mode</a> is <em>not</em> "<code>open</code>", then return null.</p> <li> <p>If <var>shadow</var>’s <a data-link-type="dfn" href="#shadowroot-slot-assignment" id="ref-for-shadowroot-slot-assignment">slot assignment</a> is "<code>manual</code>", then - return the <a data-link-type="dfn" href="#concept-slot" id="ref-for-concept-slot①①">slot</a> in <var>shadow</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant③">descendants</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/scripting.html#manually-assigned-nodes" id="ref-for-manually-assigned-nodes">manually assigned nodes</a> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain②">contains</a> <var>slottable</var>, if any; otherwise + return the <a data-link-type="dfn" href="#concept-slot" id="ref-for-concept-slot①①">slot</a> in <var>shadow</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant">descendants</a> whose <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/scripting.html#manually-assigned-nodes" id="ref-for-manually-assigned-nodes">manually assigned nodes</a> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-contain" id="ref-for-list-contain②">contains</a> <var>slottable</var>, if any; otherwise null. </p> <li> - <p>Return the first <a data-link-type="dfn" href="#concept-slot" id="ref-for-concept-slot①②">slot</a> in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order⑦">tree order</a> in <var>shadow</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant④">descendants</a> whose <a data-link-type="dfn" href="#slot-name" id="ref-for-slot-name④">name</a> is <var>slottable</var>’s <a data-link-type="dfn" href="#slotable-name" id="ref-for-slotable-name③">name</a>, if any; otherwise null. </p> + <p>Return the first <a data-link-type="dfn" href="#concept-slot" id="ref-for-concept-slot①②">slot</a> in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order⑦">tree order</a> in <var>shadow</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①">descendants</a> whose <a data-link-type="dfn" href="#slot-name" id="ref-for-slot-name④">name</a> is <var>slottable</var>’s <a data-link-type="dfn" href="#slotable-name" id="ref-for-slotable-name③">name</a>, if any; otherwise null. </p> </ol> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="find slottables|finding slottables" id="find-slotables">find slottables</dfn> for a given <a data-link-type="dfn" href="#concept-slot" id="ref-for-concept-slot①③">slot</a> <var>slot</var>, run these steps:</p> <ol> @@ -1628,7 +1960,7 @@ <h5 class="heading settled" data-level="4.2.2.3" id="finding-slots-and-slotables <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-iterate" id="ref-for-list-iterate⑧">For each</a> <a data-link-type="dfn" href="#concept-slotable" id="ref-for-concept-slotable①①">slottable</a> <var>slottable</var> of <var>slot</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/scripting.html#manually-assigned-nodes" id="ref-for-manually-assigned-nodes①">manually assigned nodes</a>, if <var>slottable</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑧">parent</a> is <var>host</var>, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-append" id="ref-for-list-append⑥">append</a> <var>slottable</var> to <var>result</var>. </p> </ol> <li> - <p>Otherwise, for each <a data-link-type="dfn" href="#concept-slotable" id="ref-for-concept-slotable①②">slottable</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⓪">child</a> <var>slottable</var> of <var>host</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order⑧">tree order</a>: </p> + <p>Otherwise, for each <a data-link-type="dfn" href="#concept-slotable" id="ref-for-concept-slotable①②">slottable</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤">child</a> <var>slottable</var> of <var>host</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order⑧">tree order</a>: </p> <ol> <li> <p>Let <var>foundSlot</var> be the result of <a data-link-type="dfn" href="#find-a-slot" id="ref-for-find-a-slot">finding a slot</a> given <var>slottable</var>. </p> @@ -1647,7 +1979,7 @@ <h5 class="heading settled" data-level="4.2.2.3" id="finding-slots-and-slotables <li> <p>Let <var>slottables</var> be the result of <a data-link-type="dfn" href="#find-slotables" id="ref-for-find-slotables">finding slottables</a> given <var>slot</var>.</p> <li> - <p>If <var>slottables</var> is the empty list, then append each <a data-link-type="dfn" href="#concept-slotable" id="ref-for-concept-slotable①③">slottable</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①①">child</a> of <var>slot</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order⑨">tree order</a>, to <var>slottables</var>.</p> + <p>If <var>slottables</var> is the empty list, then append each <a data-link-type="dfn" href="#concept-slotable" id="ref-for-concept-slotable①③">slottable</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥">child</a> of <var>slot</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order⑨">tree order</a>, to <var>slottables</var>.</p> <li> <p>For each <var>node</var> in <var>slottables</var>: </p> <ol> @@ -1719,17 +2051,17 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <dl class="switch"> <dt><code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment④">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑧">node</a> <dd> - <p>If <var>node</var> has more than one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⓪">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①②">child</a> or has a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text①①">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨">node</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①③">child</a>. </p> - <p>Otherwise, if <var>node</var> has one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①①">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①④">child</a> and either <var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①②">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑤">child</a>, <var>child</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype②">doctype</a>, or <var>child</var> is non-null and a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype③">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following②">following</a> <var>child</var>. </p> + <p>If <var>node</var> has more than one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⓪">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦">child</a> or has a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text①①">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨">node</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑧">child</a>. </p> + <p>Otherwise, if <var>node</var> has one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①①">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑨">child</a> and either <var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①②">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⓪">child</a>, <var>child</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype②">doctype</a>, or <var>child</var> is non-null and a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype③">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following②">following</a> <var>child</var>. </p> <dt><a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①③">element</a> <dd> - <p><var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①④">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑥">child</a>, <var>child</var> is + <p><var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①④">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①①">child</a>, <var>child</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype④">doctype</a>, or <var>child</var> is non-null and a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype⑤">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following③">following</a> <var>child</var>. </p> <dt><a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype⑥">doctype</a> <dd> - <p><var>parent</var> has a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype⑦">doctype</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑦">child</a>, <var>child</var> is non-null + <p><var>parent</var> has a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype⑦">doctype</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①②">child</a>, <var>child</var> is non-null and an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑤">element</a> is <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding③">preceding</a> <var>child</var>, or <var>child</var> is null - and <var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑥">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑧">child</a>. </p> + and <var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑥">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①③">child</a>. </p> </dl> </ol> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-node-pre-insert">pre-insert</dfn> a <var>node</var> into a <var>parent</var> before a <var>child</var>, run these steps: </p> @@ -1751,7 +2083,7 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-node-insert">insert</dfn> a <var>node</var> into a <var>parent</var> before a <var>child</var>, with an optional <i>suppress observers flag</i>, run these steps: </p> <ol> <li> - <p>Let <var>nodes</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑨">children</a>, if <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment⑤">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪">node</a>; otherwise « <var>node</var> ». </p> + <p>Let <var>nodes</var> be <var>node</var>’s <a data-link-type="dfn">children</a>, if <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment⑤">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪">node</a>; otherwise « <var>node</var> ». </p> <li> <p>Let <var>count</var> be <var>nodes</var>’s <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-size" id="ref-for-list-size②">size</a>. </p> <li> @@ -1760,7 +2092,7 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <p>If <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment⑥">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①①">node</a>, then: </p> <ol> <li> - <p><a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove①">Remove</a> its <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⓪">children</a> with the <i>suppress observers flag</i> set. </p> + <p><a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove①">Remove</a> its <a data-link-type="dfn">children</a> with the <i>suppress observers flag</i> set. </p> <li> <p><a data-link-type="dfn" href="#queue-a-tree-mutation-record" id="ref-for-queue-a-tree-mutation-record">Queue a tree mutation record</a> for <var>node</var> with « », <var>nodes</var>, null, and null. </p> @@ -1784,9 +2116,9 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <li> <p><a data-link-type="dfn" href="#concept-node-adopt" id="ref-for-concept-node-adopt">Adopt</a> <var>node</var> into <var>parent</var>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document">node document</a>. </p> <li> - <p>If <var>child</var> is null, then <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#set-append" id="ref-for-set-append③">append</a> <var>node</var> to <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②①">children</a>. </p> + <p>If <var>child</var> is null, then <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#set-append" id="ref-for-set-append③">append</a> <var>node</var> to <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①④">children</a>. </p> <li> - <p>Otherwise, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-insert" id="ref-for-list-insert">insert</a> <var>node</var> into <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②②">children</a> before <var>child</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index②">index</a>. </p> + <p>Otherwise, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-insert" id="ref-for-list-insert">insert</a> <var>node</var> into <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑤">children</a> before <var>child</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index②">index</a>. </p> <li> <p>If <var>parent</var> is a <a data-link-type="dfn" href="#element-shadow-host" id="ref-for-element-shadow-host">shadow host</a> whose <a data-link-type="dfn" href="#concept-shadow-root" id="ref-for-concept-shadow-root①②">shadow root</a>’s <a data-link-type="dfn" href="#shadowroot-slot-assignment" id="ref-for-shadowroot-slot-assignment②">slot assignment</a> is "<code>named</code>" and <var>node</var> is a <a data-link-type="dfn" href="#concept-slotable" id="ref-for-concept-slotable①⑥">slottable</a>, then <a data-link-type="dfn" href="#assign-a-slot" id="ref-for-assign-a-slot①">assign a slot</a> for <var>node</var>. </p> <li> @@ -1837,14 +2169,14 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <dl class="switch"> <dt><code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment⑨">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑤">node</a> <dd> - <p>If <var>node</var> has more than one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑦">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②③">child</a> or has a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text①④">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑥">node</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②④">child</a>. </p> - <p>Otherwise, if <var>node</var> has one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑧">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑤">child</a> and either <var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑨">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑥">child</a> that is not <var>child</var> or a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype⑨">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following④">following</a> <var>child</var>. </p> + <p>If <var>node</var> has more than one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑦">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑥">child</a> or has a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text①④">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑥">node</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑦">child</a>. </p> + <p>Otherwise, if <var>node</var> has one <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑧">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑧">child</a> and either <var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element①⑨">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child①⑨">child</a> that is not <var>child</var> or a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype⑨">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following④">following</a> <var>child</var>. </p> <dt><a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⓪">element</a> <dd> - <p><var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②①">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑦">child</a> that is not <var>child</var> or a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①⓪">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following⑤">following</a> <var>child</var>. </p> + <p><var>parent</var> has an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②①">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⓪">child</a> that is not <var>child</var> or a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①⓪">doctype</a> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following⑤">following</a> <var>child</var>. </p> <dt><a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①①">doctype</a> <dd> - <p><var>parent</var> has a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①②">doctype</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑧">child</a> that is not <var>child</var>, + <p><var>parent</var> has a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①②">doctype</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②①">child</a> that is not <var>child</var>, or an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②②">element</a> is <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding④">preceding</a> <var>child</var>. </p> </dl> <p class="note" role="note">The above statements differ from the <a data-link-type="dfn" href="#concept-node-pre-insert" id="ref-for-concept-node-pre-insert①">pre-insert</a> algorithm. </p> @@ -1866,7 +2198,7 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl </ol> <p class="note" role="note">The above can only be false if <var>child</var> is <var>node</var>. </p> <li> - <p>Let <var>nodes</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑨">children</a> if <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment①⓪">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑦">node</a>; otherwise « <var>node</var> ». </p> + <p>Let <var>nodes</var> be <var>node</var>’s <a data-link-type="dfn">children</a> if <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment①⓪">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑦">node</a>; otherwise « <var>node</var> ». </p> <li> <p><a data-link-type="dfn" href="#concept-node-insert" id="ref-for-concept-node-insert③">Insert</a> <var>node</var> into <var>parent</var> before <var>referenceChild</var> with the <i>suppress observers flag</i> set. </p> <li> @@ -1877,15 +2209,15 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <p>To <dfn class="dfn-paneled" data-dfn-for="Node" data-dfn-type="dfn" data-export id="concept-node-replace-all">replace all</dfn> with a <var>node</var> within a <var>parent</var>, run these steps: </p> <ol> <li> - <p>Let <var>removedNodes</var> be <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⓪">children</a>. </p> + <p>Let <var>removedNodes</var> be <var>parent</var>’s <a data-link-type="dfn">children</a>. </p> <li> <p>Let <var>addedNodes</var> be the empty set. </p> <li> - <p>If <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment①①">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑧">node</a>, then set <var>addedNodes</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③①">children</a>. </p> + <p>If <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment①①">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⑧">node</a>, then set <var>addedNodes</var> to <var>node</var>’s <a data-link-type="dfn">children</a>. </p> <li> <p>Otherwise, if <var>node</var> is non-null, set <var>addedNodes</var> to « <var>node</var> ». </p> <li> - <p><a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove③">Remove</a> all <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③②">children</a>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order①②">tree order</a>, with the <i>suppress observers flag</i> set. </p> + <p><a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove③">Remove</a> all <var>parent</var>’s <a data-link-type="dfn">children</a>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order①②">tree order</a>, with the <i>suppress observers flag</i> set. </p> <li> <p>If <var>node</var> is non-null, then <a data-link-type="dfn" href="#concept-node-insert" id="ref-for-concept-node-insert④">insert</a> <var>node</var> into <var>parent</var> before null with the <i>suppress observers flag</i> set. </p> <li> @@ -1930,7 +2262,7 @@ <h4 class="heading settled" data-level="4.2.3" id="mutation-algorithms"><span cl <li> <p>Let <var>oldNextSibling</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-next-sibling" id="ref-for-concept-tree-next-sibling③">next sibling</a>. </p> <li> - <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-remove" id="ref-for-list-remove③">Remove</a> <var>node</var> from its <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③③">children</a>. </p> + <p><a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-remove" id="ref-for-list-remove③">Remove</a> <var>node</var> from its <var>parent</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②②">children</a>. </p> <li> <p>If <var>node</var> is <a data-link-type="dfn" href="#slotable-assigned" id="ref-for-slotable-assigned③">assigned</a>, then run <a data-link-type="dfn" href="#assign-slotables" id="ref-for-assign-slotables③">assign slottables</a> for <var>node</var>’s <a data-link-type="dfn" href="#slotable-assigned-slot" id="ref-for-slotable-assigned-slot③">assigned slot</a>. </p> <li> @@ -1980,9 +2312,9 @@ <h4 class="heading settled" data-level="4.2.4" id="interface-nonelementparentnod <dl class="domintro"> <dt><code><var>node</var> . <a class="idl-code" data-link-type="method" href="#dom-nonelementparentnode-getelementbyid" id="ref-for-dom-nonelementparentnode-getelementbyid②">getElementById</a>(<var>elementId</var>)</code> <dd> - <p>Returns the first <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑤">element</a> within <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant⑤">descendants</a> whose <a data-link-type="dfn" href="#concept-id" id="ref-for-concept-id">ID</a> is <var>elementId</var>. </p> + <p>Returns the first <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑤">element</a> within <var>node</var>’s <a data-link-type="dfn">descendants</a> whose <a data-link-type="dfn" href="#concept-id" id="ref-for-concept-id">ID</a> is <var>elementId</var>. </p> </dl> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="NonElementParentNode" data-dfn-type="method" data-export id="dom-nonelementparentnode-getelementbyid"><code>getElementById(<var>elementId</var>)</code></dfn> method steps are to return the first <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑥">element</a>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order①③">tree order</a>, within <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪">this</a>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant⑥">descendants</a>, whose <a data-link-type="dfn" href="#concept-id" id="ref-for-concept-id①">ID</a> is <var>elementId</var>; otherwise, if + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="NonElementParentNode" data-dfn-type="method" data-export id="dom-nonelementparentnode-getelementbyid"><code>getElementById(<var>elementId</var>)</code></dfn> method steps are to return the first <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑥">element</a>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order①③">tree order</a>, within <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪">this</a>’s <a data-link-type="dfn">descendants</a>, whose <a data-link-type="dfn" href="#concept-id" id="ref-for-concept-id①">ID</a> is <var>elementId</var>; otherwise, if there is no such <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑦">element</a>, null. </p> <h4 class="heading settled" data-level="4.2.5" id="mixin-documentorshadowroot"><span class="secno">4.2.5. </span><span class="content">Mixin <code class="idl"><a data-link-type="idl" href="#documentorshadowroot" id="ref-for-documentorshadowroot">DocumentOrShadowRoot</a></code></span><a class="self-link" href="#mixin-documentorshadowroot"></a></h4> <pre class="idl highlight def"><c- b>interface</c-> <c- b>mixin</c-> <dfn class="dfn-paneled idl-code" data-dfn-type="interface" data-export id="documentorshadowroot"><code><c- g>DocumentOrShadowRoot</c-></code></dfn> { @@ -2025,11 +2357,11 @@ <h4 class="heading settled" data-level="4.2.6" id="interface-parentnode"><span c </pre> <dl class="domintro"> <dt><code><var>collection</var> = <var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-parentnode-children" id="ref-for-dom-parentnode-children①">children</a></code></code> - <dd>Returns the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③④">child</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑧">elements</a>. + <dd>Returns the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②③">child</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑧">elements</a>. <dt><code><var>element</var> = <var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-parentnode-firstelementchild" id="ref-for-dom-parentnode-firstelementchild①">firstElementChild</a></code></code> - <dd>Returns the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑤">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑨">element</a>; otherwise null. + <dd>Returns the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②④">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element②⑨">element</a>; otherwise null. <dt><code><var>element</var> = <var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-parentnode-lastelementchild" id="ref-for-dom-parentnode-lastelementchild①">lastElementChild</a></code></code> - <dd>Returns the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑥">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③⓪">element</a>; otherwise null. + <dd>Returns the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑤">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③⓪">element</a>; otherwise null. <dt><code><var>node</var> . <a class="idl-code" data-link-type="method" href="#dom-parentnode-prepend" id="ref-for-dom-parentnode-prepend①">prepend</a>(<var>nodes</var>)</code> <dd> <p>Inserts <var>nodes</var> before the <a data-link-type="dfn" href="#concept-tree-first-child" id="ref-for-concept-tree-first-child">first child</a> of <var>node</var>, while @@ -2044,24 +2376,24 @@ <h4 class="heading settled" data-level="4.2.6" id="interface-parentnode"><span c the <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree⑨">node tree</a> are violated. </p> <dt><code><var>node</var> . <a class="idl-code" data-link-type="method" href="#dom-parentnode-replacechildren" id="ref-for-dom-parentnode-replacechildren①">replaceChildren</a>(<var>nodes</var>)</code> <dd> - <p>Replace all <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑦">children</a> of <var>node</var> with <var>nodes</var>, + <p>Replace all <a data-link-type="dfn">children</a> of <var>node</var> with <var>nodes</var>, while replacing strings in <var>nodes</var> with equivalent <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text①⑧">Text</a></code> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node①④">nodes</a>. </p> <p><a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw②②">Throws</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#hierarchyrequesterror" id="ref-for-hierarchyrequesterror①②">HierarchyRequestError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException②⑥">DOMException</a></code> if the constraints of the <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree①⓪">node tree</a> are violated. </p> <dt><code><var>node</var> . <a class="idl-code" data-link-type="method" href="#dom-parentnode-queryselector" id="ref-for-dom-parentnode-queryselector①">querySelector</a>(<var>selectors</var>)</code> - <dd> Returns the first <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③①">element</a> that is a <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant⑦">descendant</a> of <var>node</var> that + <dd> Returns the first <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③①">element</a> that is a <a data-link-type="dfn">descendant</a> of <var>node</var> that matches <var>selectors</var>. <dt><code><var>node</var> . <a class="idl-code" data-link-type="method" href="#dom-parentnode-queryselectorall" id="ref-for-dom-parentnode-queryselectorall①">querySelectorAll</a>(<var>selectors</var>)</code> - <dd> Returns all <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③②">element</a> <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant⑧">descendants</a> of <var>node</var> that + <dd> Returns all <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③②">element</a> <a data-link-type="dfn">descendants</a> of <var>node</var> that match <var>selectors</var>. </dl> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="ParentNode" data-dfn-type="attribute" data-export id="dom-parentnode-children"><code>children</code></dfn> getter steps are to return an <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①">HTMLCollection</a></code> <a data-link-type="dfn" href="#concept-collection" id="ref-for-concept-collection">collection</a> rooted at <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③①">this</a> matching only <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③③">element</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑧">children</a>. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="ParentNode" data-dfn-type="attribute" data-export id="dom-parentnode-children"><code>children</code></dfn> getter steps are to return an <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①">HTMLCollection</a></code> <a data-link-type="dfn" href="#concept-collection" id="ref-for-concept-collection">collection</a> rooted at <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③①">this</a> matching only <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③③">element</a> <a data-link-type="dfn">children</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="ParentNode" data-dfn-type="attribute" data-export id="dom-parentnode-firstelementchild"><code>firstElementChild</code></dfn> getter steps are to return -the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑨">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③④">element</a>; otherwise null. </p> +the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑥">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③④">element</a>; otherwise null. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="ParentNode" data-dfn-type="attribute" data-export id="dom-parentnode-lastelementchild"><code>lastElementChild</code></dfn> getter steps are to return -the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⓪">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③⑤">element</a>; otherwise null. </p> +the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑦">child</a> that is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③⑤">element</a>; otherwise null. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="ParentNode" data-dfn-type="attribute" data-export id="dom-parentnode-childelementcount"><code>childElementCount</code></dfn> getter steps are to return -the number of <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④①">children</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③②">this</a> that are <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③⑥">elements</a>. </p> +the number of <a data-link-type="dfn">children</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③②">this</a> that are <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element③⑥">elements</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="ParentNode" data-dfn-type="method" data-export data-lt="prepend(...nodes)|prepend()" id="dom-parentnode-prepend"><code>prepend(<var>nodes</var>)</code></dfn> method steps are: </p> <ol> <li> @@ -2345,7 +2677,7 @@ <h3 class="heading settled" data-level="4.3" id="mutation-observers"><span class <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="registered-observer">registered observer</dfn> consists of an <dfn class="dfn-paneled" data-dfn-for="registered observer" data-dfn-type="dfn" data-noexport id="registered-observer-observer">observer</dfn> (a <code class="idl"><a data-link-type="idl" href="#mutationobserver" id="ref-for-mutationobserver①">MutationObserver</a></code> object) and <dfn class="dfn-paneled" data-dfn-for="registered observer" data-dfn-type="dfn" data-noexport id="registered-observer-options">options</dfn> (a <code class="idl"><a data-link-type="idl" href="#dictdef-mutationobserverinit" id="ref-for-dictdef-mutationobserverinit">MutationObserverInit</a></code> dictionary). </p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="transient-registered-observer">transient registered observer</dfn> is a <a data-link-type="dfn" href="#registered-observer" id="ref-for-registered-observer①">registered observer</a> that also consists of a <dfn class="dfn-paneled" data-dfn-for="transient registered observer" data-dfn-type="dfn" data-noexport id="transient-registered-observer-source">source</dfn> (a <a data-link-type="dfn" href="#registered-observer" id="ref-for-registered-observer②">registered observer</a>). </p> <p class="note" role="note"><a data-link-type="dfn" href="#transient-registered-observer" id="ref-for-transient-registered-observer②">Transient registered observers</a> are used to track mutations within -a given <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node②③">node</a>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant⑨">descendants</a> after <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node②④">node</a> has been removed so +a given <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node②③">node</a>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②">descendants</a> after <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node②④">node</a> has been removed so they do not get lost when <code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-subtree" id="ref-for-dom-mutationobserverinit-subtree①">subtree</a></code> is set to true on <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node②⑤">node</a>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent①⑨">parent</a>. </p> <h4 class="heading settled" data-level="4.3.1" id="interface-mutationobserver"><span class="secno">4.3.1. </span><span class="content">Interface <code class="idl"><a data-link-type="idl" href="#mutationobserver" id="ref-for-mutationobserver②">MutationObserver</a></code></span><a class="self-link" href="#interface-mutationobserver"></a></h4> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed" id="ref-for-Exposed⑦"><c- g>Exposed</c-></a>=<c- n>Window</c->] @@ -2391,7 +2723,7 @@ <h4 class="heading settled" data-level="4.3.1" id="interface-mutationobserver">< can be used:</p> <dl> <dt><code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-childlist" id="ref-for-dom-mutationobserverinit-childlist">childList</a></code> - <dd>Set to true if mutations to <var>target</var>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④②">children</a> are to be observed. + <dd>Set to true if mutations to <var>target</var>’s <a data-link-type="dfn">children</a> are to be observed. <dt><code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-attributes" id="ref-for-dom-mutationobserverinit-attributes">attributes</a></code> <dd>Set to true if mutations to <var>target</var>’s <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute">attributes</a> are to be observed. Can be omitted if <code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-attributeoldvalue" id="ref-for-dom-mutationobserverinit-attributeoldvalue">attributeOldValue</a></code> or <code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-attributefilter" id="ref-for-dom-mutationobserverinit-attributefilter">attributeFilter</a></code> is specified. @@ -2399,7 +2731,7 @@ <h4 class="heading settled" data-level="4.3.1" id="interface-mutationobserver">< <dd>Set to true if mutations to <var>target</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②">data</a> are to be observed. Can be omitted if <code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-characterdataoldvalue" id="ref-for-dom-mutationobserverinit-characterdataoldvalue">characterDataOldValue</a></code> is specified. <dt><code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-subtree" id="ref-for-dom-mutationobserverinit-subtree②">subtree</a></code> <dd>Set to true if mutations to not just <var>target</var>, but - also <var>target</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①⓪">descendants</a> are to be + also <var>target</var>’s <a data-link-type="dfn">descendants</a> are to be observed. <dt><code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-attributeoldvalue" id="ref-for-dom-mutationobserverinit-attributeoldvalue①">attributeOldValue</a></code> <dd>Set to true if <code class="idl"><a data-link-type="idl" href="#dom-mutationobserverinit-attributes" id="ref-for-dom-mutationobserverinit-attributes①">attributes</a></code> is true or omitted @@ -2551,7 +2883,7 @@ <h4 class="heading settled" data-level="4.3.3" id="interface-mutationrecord"><sp affected, depending on the <code class="idl"><a data-link-type="idl" href="#dom-mutationrecord-type" id="ref-for-dom-mutationrecord-type③">type</a></code>. For "<code>attributes</code>", it is the <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⓪">element</a> whose <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute⑤">attribute</a> changed. For "<code>characterData</code>", it is the <code class="idl"><a data-link-type="idl" href="#characterdata" id="ref-for-characterdata③">CharacterData</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node②⑨">node</a>. For "<code>childList</code>", - it is the <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node③⓪">node</a> whose <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④③">children</a> changed. + it is the <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node③⓪">node</a> whose <a data-link-type="dfn">children</a> changed. <dt><code><var>record</var> . <code class="idl"><a data-link-type="idl" href="#dom-mutationrecord-addednodes" id="ref-for-dom-mutationrecord-addednodes②">addedNodes</a></code></code> <dt><code><var>record</var> . <code class="idl"><a data-link-type="idl" href="#dom-mutationrecord-removednodes" id="ref-for-dom-mutationrecord-removednodes②">removedNodes</a></code></code> <dd>Return the <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node③⓪">nodes</a> added and removed @@ -2761,9 +3093,9 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-parentelement" id="ref-for-dom-node-parentelement①">parentElement</a></code></code> <dd>Returns the <a data-link-type="dfn" href="#parent-element" id="ref-for-parent-element">parent element</a>. <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-haschildnodes" id="ref-for-dom-node-haschildnodes①">hasChildNodes()</a></code></code> - <dd>Returns whether <var>node</var> has <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④④">children</a>. + <dd>Returns whether <var>node</var> has <a data-link-type="dfn">children</a>. <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-childnodes" id="ref-for-dom-node-childnodes①">childNodes</a></code></code> - <dd>Returns the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⑤">children</a>. + <dd>Returns the <a data-link-type="dfn">children</a>. <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-firstchild" id="ref-for-dom-node-firstchild①">firstChild</a></code></code> <dd>Returns the <a data-link-type="dfn" href="#concept-tree-first-child" id="ref-for-concept-tree-first-child③">first child</a>. <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-lastchild" id="ref-for-dom-node-lastchild①">lastChild</a></code></code> @@ -2784,8 +3116,8 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export id="dom-node-parentnode"><code>parentNode</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑦⑧">this</a>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent②②">parent</a>. </p> <p class="note" role="note">An <code class="idl"><a data-link-type="idl" href="#attr" id="ref-for-attr③">Attr</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node④④">node</a> has no <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent②③">parent</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export id="dom-node-parentelement"><code>parentElement</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑦⑨">this</a>’s <a data-link-type="dfn" href="#parent-element" id="ref-for-parent-element①">parent element</a>. </p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="method" data-export id="dom-node-haschildnodes"><code>hasChildNodes()</code></dfn> method steps are to return true if <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧⓪">this</a> has <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⑥">children</a>; otherwise false. </p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export id="dom-node-childnodes"><code>childNodes</code></dfn> getter steps are to return a <code class="idl"><a data-link-type="idl" href="#nodelist" id="ref-for-nodelist⑦">NodeList</a></code> rooted at <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧①">this</a> matching only <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⑦">children</a>. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="method" data-export id="dom-node-haschildnodes"><code>hasChildNodes()</code></dfn> method steps are to return true if <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧⓪">this</a> has <a data-link-type="dfn">children</a>; otherwise false. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export id="dom-node-childnodes"><code>childNodes</code></dfn> getter steps are to return a <code class="idl"><a data-link-type="idl" href="#nodelist" id="ref-for-nodelist⑦">NodeList</a></code> rooted at <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧①">this</a> matching only <a data-link-type="dfn">children</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export data-lt="firstChild" id="dom-node-firstchild"><code>firstChild</code> </dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧②">this</a>’s <a data-link-type="dfn" href="#concept-tree-first-child" id="ref-for-concept-tree-first-child④">first child</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export id="dom-node-lastchild"><code>lastChild</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧③">this</a>’s <a data-link-type="dfn" href="#concept-tree-last-child" id="ref-for-concept-tree-last-child③">last child</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="attribute" data-export id="dom-node-previoussibling"><code>previousSibling</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑧④">this</a>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling⑤">previous sibling</a>. </p> @@ -2815,7 +3147,7 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <dt><code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction①⑤">ProcessingInstruction</a></code> <dt><code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment①⑤">Comment</a></code> <dd> - <p><a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①">Replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑨①">this</a>, offset 0, count <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑨②">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length">length</a>, and data new value. </p> + <p><a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①">Replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑨①">this</a>, offset 0, count <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑨②">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①">length</a>, and data new value. </p> <dt>Any other node <dd> <p>Do nothing. </p> @@ -2858,7 +3190,7 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <dt><code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction①⑦">ProcessingInstruction</a></code> <dt><code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment①⑦">Comment</a></code> <dd> - <p><a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace②">Replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪⓪">this</a>, offset 0, count <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪①">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①">length</a>, and data the given value. </p> + <p><a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace②">Replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪⓪">this</a>, offset 0, count <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪①">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②">length</a>, and data the given value. </p> <dt>Any other node <dd> <p>Do nothing. </p> @@ -2869,9 +3201,9 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <dd>Removes <a data-link-type="dfn" href="#concept-node-empty" id="ref-for-concept-node-empty">empty</a> <a data-link-type="dfn" href="#exclusive-text-node" id="ref-for-exclusive-text-node">exclusive <code>Text</code> nodes</a> and concatenates the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data⑧">data</a> of remaining <a data-link-type="dfn" href="#contiguous-exclusive-text-nodes" id="ref-for-contiguous-exclusive-text-nodes">contiguous exclusive <code>Text</code> nodes</a> into the first of their <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node④⓪">nodes</a>. </dl> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="method" data-export id="dom-node-normalize"><code>normalize()</code></dfn> method steps are to run these steps for -each <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①①">descendant</a> <a data-link-type="dfn" href="#exclusive-text-node" id="ref-for-exclusive-text-node①">exclusive <code>Text</code> node</a> <var>node</var> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪②">this</a>: </p> +each <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#exclusive-text-node" id="ref-for-exclusive-text-node①">exclusive <code>Text</code> node</a> <var>node</var> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪②">this</a>: </p> <ol> - <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②">length</a>. + <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length③">length</a>. <li>If <var>length</var> is zero, then <a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove⑦">remove</a> <var>node</var> and continue with the next <a data-link-type="dfn" href="#exclusive-text-node" id="ref-for-exclusive-text-node②">exclusive <code>Text</code> node</a>, if any. <li>Let <var>data</var> be the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-concatenate" id="ref-for-string-concatenate①">concatenation</a> of the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data⑨">data</a> of <var>node</var>’s <a data-link-type="dfn" href="#contiguous-exclusive-text-nodes" id="ref-for-contiguous-exclusive-text-nodes①">contiguous exclusive <code>Text</code> nodes</a> (excluding itself), in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order①⑧">tree order</a>. @@ -2890,7 +3222,7 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <li> <p>For each <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range⑨">live range</a> whose <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node⑤">end node</a> is <var>currentNode</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent②⑤">parent</a> and <a data-link-type="dfn" href="#concept-range-end-offset" id="ref-for-concept-range-end-offset⑤">end offset</a> is <var>currentNode</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index⑤">index</a>, set its <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node⑥">end node</a> to <var>node</var> and its <a data-link-type="dfn" href="#concept-range-end-offset" id="ref-for-concept-range-end-offset⑥">end offset</a> to <var>length</var>. </p> <li> - <p>Add <var>currentNode</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length③">length</a> to <var>length</var>. </p> + <p>Add <var>currentNode</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length④">length</a> to <var>length</var>. </p> <li> <p>Set <var>currentNode</var> to its <a data-link-type="dfn" href="#concept-tree-next-sibling" id="ref-for-concept-tree-next-sibling⑨">next sibling</a>. </p> </ol> @@ -2899,7 +3231,7 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <hr> <dl class="domintro"> <dt><code><var>node</var> . <a class="idl-code" data-link-type="method" href="#dom-node-clonenode" id="ref-for-dom-node-clonenode①">cloneNode([<var>deep</var> = false])</a></code> - <dd>Returns a copy of <var>node</var>. If <var>deep</var> is true, the copy also includes the <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①②">descendants</a>. + <dd>Returns a copy of <var>node</var>. If <var>deep</var> is true, the copy also includes the <var>node</var>’s <a data-link-type="dfn">descendants</a>. <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-isequalnode" id="ref-for-dom-node-isequalnode①">isEqualNode(otherNode)</a></code></code> <dd>Returns whether <var>node</var> and <var>otherNode</var> have the same properties. </dl> @@ -2951,7 +3283,7 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <li> <p>Set <var>copy</var>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document②①">node document</a> and <var>document</var> to <var>copy</var>, if <var>copy</var> is a <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document②①">document</a>, and set <var>copy</var>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document②②">node document</a> to <var>document</var> otherwise. </p> <li>Run any <a data-link-type="dfn" href="#concept-node-clone-ext" id="ref-for-concept-node-clone-ext①">cloning steps</a> defined for <var>node</var> in <a data-link-type="dfn" href="#other-applicable-specifications" id="ref-for-other-applicable-specifications⑤">other applicable specifications</a> and pass <var>copy</var>, <var>node</var>, <var>document</var> and the <i>clone children flag</i> if set, as parameters. - <li>If the <i>clone children flag</i> is set, <a data-link-type="dfn" href="#concept-node-clone" id="ref-for-concept-node-clone②">clone</a> all the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⑧">children</a> of <var>node</var> and append them to <var>copy</var>, with <var>document</var> as specified and the <i>clone children flag</i> being set. + <li>If the <i>clone children flag</i> is set, <a data-link-type="dfn" href="#concept-node-clone" id="ref-for-concept-node-clone②">clone</a> all the <a data-link-type="dfn">children</a> of <var>node</var> and append them to <var>copy</var>, with <var>document</var> as specified and the <i>clone children flag</i> being set. <li>Return <var>copy</var>. </ol> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="method" data-export data-lt="cloneNode(deep)|cloneNode()" id="dom-node-clonenode"><code>cloneNode(<var>deep</var>)</code></dfn> method steps are: </p> @@ -2983,8 +3315,8 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <dd>— </dl> <li>If <var>A</var> is an <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤③">element</a>, each <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute⑨">attribute</a> in its <a data-link-type="dfn" href="#concept-element-attribute" id="ref-for-concept-element-attribute②">attribute list</a> has an <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①⓪">attribute</a> that <a data-link-type="dfn" href="#concept-node-equals" id="ref-for-concept-node-equals">equals</a> an <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①①">attribute</a> in <var>B</var>’s <a data-link-type="dfn" href="#concept-element-attribute" id="ref-for-concept-element-attribute③">attribute list</a>. - <li><var>A</var> and <var>B</var> have the same number of <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⑨">children</a>. - <li>Each <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤⓪">child</a> of <var>A</var> <a data-link-type="dfn" href="#concept-node-equals" id="ref-for-concept-node-equals①">equals</a> the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤①">child</a> of <var>B</var> at the identical <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index⑥">index</a>. + <li><var>A</var> and <var>B</var> have the same number of <a data-link-type="dfn">children</a>. + <li>Each <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑧">child</a> of <var>A</var> <a data-link-type="dfn" href="#concept-node-equals" id="ref-for-concept-node-equals①">equals</a> the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child②⑨">child</a> of <var>B</var> at the identical <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index⑥">index</a>. </ul> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Node" data-dfn-type="method" data-export id="dom-node-isequalnode"><code>isEqualNode(<var>otherNode</var>)</code></dfn> method steps are to return true if <var>otherNode</var> is non-null and <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪⑤">this</a> <a data-link-type="dfn" href="#concept-node-equals" id="ref-for-concept-node-equals②">equals</a> <var>otherNode</var>; otherwise false. </p> @@ -3005,9 +3337,9 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <dt><code><code class="idl"><a data-link-type="idl" href="#node" id="ref-for-node④⑤">Node</a></code> . <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_following" id="ref-for-dom-node-document_position_following①">DOCUMENT_POSITION_FOLLOWING</a></code></code> (4) <dd>Set when <var>other</var> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following①⓪">following</a> <var>node</var>. <dt><code><code class="idl"><a data-link-type="idl" href="#node" id="ref-for-node④⑥">Node</a></code> . <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_contains" id="ref-for-dom-node-document_position_contains①">DOCUMENT_POSITION_CONTAINS</a></code></code> (8) - <dd>Set when <var>other</var> is an <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor③">ancestor</a> of <var>node</var>. + <dd>Set when <var>other</var> is an <a data-link-type="dfn">ancestor</a> of <var>node</var>. <dt><code><code class="idl"><a data-link-type="idl" href="#node" id="ref-for-node④⑦">Node</a></code> . <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_contained_by" id="ref-for-dom-node-document_position_contained_by①">DOCUMENT_POSITION_CONTAINED_BY</a></code></code> (16, 10 in hexadecimal) - <dd>Set when <var>other</var> is a <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①③">descendant</a> of <var>node</var>. + <dd>Set when <var>other</var> is a <a data-link-type="dfn">descendant</a> of <var>node</var>. </dl> <dt><code><var>node</var> . <code class="idl"><a data-link-type="idl" href="#dom-node-contains" id="ref-for-dom-node-contains①">contains(other)</a></code></code> <dd>Returns true if <var>other</var> is an <a data-link-type="dfn" href="#concept-tree-inclusive-descendant" id="ref-for-concept-tree-inclusive-descendant④">inclusive descendant</a> of <var>node</var>; @@ -3062,16 +3394,16 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se JavaScript implementations a cached <code class="lang-javascript highlight">Math<c- p>.</c->random<c- p>()</c-></code> value can be used. </p> <li> - <p>If <var>node1</var> is an <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor④">ancestor</a> of <var>node2</var> and <var>attr1</var> is null, + <p>If <var>node1</var> is an <a data-link-type="dfn">ancestor</a> of <var>node2</var> and <var>attr1</var> is null, or <var>node1</var> is <var>node2</var> and <var>attr2</var> is non-null, then return the result of adding <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_contains" id="ref-for-dom-node-document_position_contains②">DOCUMENT_POSITION_CONTAINS</a></code> to <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_preceding" id="ref-for-dom-node-document_position_preceding⑤">DOCUMENT_POSITION_PRECEDING</a></code>. </p> <li> - <p>If <var>node1</var> is a <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①④">descendant</a> of <var>node2</var> and <var>attr2</var> is null, + <p>If <var>node1</var> is a <a data-link-type="dfn">descendant</a> of <var>node2</var> and <var>attr2</var> is null, or <var>node1</var> is <var>node2</var> and <var>attr1</var> is non-null, then return the result of adding <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_contained_by" id="ref-for-dom-node-document_position_contained_by②">DOCUMENT_POSITION_CONTAINED_BY</a></code> to <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_following" id="ref-for-dom-node-document_position_following⑤">DOCUMENT_POSITION_FOLLOWING</a></code>. </p> <li> <p>If <var>node1</var> is <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding⑨">preceding</a> <var>node2</var>, then return <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_preceding" id="ref-for-dom-node-document_position_preceding⑥">DOCUMENT_POSITION_PRECEDING</a></code>. </p> - <p class="note" role="note">Due to the way <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①④">attributes</a> are handled in this algorithm this results in a <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node④⑨">node</a>’s <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①⑤">attributes</a> counting as <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding①⓪">preceding</a> that <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑤⓪">node</a>’s <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤②">children</a>, + <p class="note" role="note">Due to the way <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①④">attributes</a> are handled in this algorithm this results in a <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node④⑨">node</a>’s <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①⑤">attributes</a> counting as <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding①⓪">preceding</a> that <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑤⓪">node</a>’s <a data-link-type="dfn">children</a>, despite <a data-link-type="dfn" href="#concept-attribute" id="ref-for-concept-attribute①⑥">attributes</a> not <a data-link-type="dfn" href="#concept-tree-participate" id="ref-for-concept-tree-participate⑤">participating</a> in a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree①⑧">tree</a>. </p> <li> <p>Return <code class="idl"><a data-link-type="idl" href="#dom-node-document_position_following" id="ref-for-dom-node-document_position_following⑥">DOCUMENT_POSITION_FOLLOWING</a></code>. </p> @@ -3194,10 +3526,10 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <ol> <li> <p>If <var>qualifiedName</var> is "<code>*</code>" (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection⑦">HTMLCollection</a></code> rooted - at <var>root</var>, whose filter matches only <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①⑤">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑤">elements</a>. </p> + at <var>root</var>, whose filter matches only <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑤">elements</a>. </p> <li> <p>Otherwise, if <var>root</var>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document②③">node document</a> is an <a data-link-type="dfn" href="#html-document" id="ref-for-html-document">HTML document</a>, - return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection⑧">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches the following <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①⑥">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑥">elements</a>: </p> + return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection⑧">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches the following <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑥">elements</a>: </p> <ul> <li> <p>Whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑤">namespace</a> is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace②">HTML namespace</a> and whose <a data-link-type="dfn" href="#concept-element-qualified-name" id="ref-for-concept-element-qualified-name">qualified name</a> is <var>qualifiedName</var>, in <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-lowercase" id="ref-for-ascii-lowercase">ASCII lowercase</a>. </p> @@ -3205,18 +3537,18 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <p>Whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑥">namespace</a> is <em>not</em> the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace③">HTML namespace</a> and whose <a data-link-type="dfn" href="#concept-element-qualified-name" id="ref-for-concept-element-qualified-name①">qualified name</a> is <var>qualifiedName</var>. </p> </ul> <li> - <p>Otherwise, return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection⑨">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①⑦">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑦">elements</a> whose <a data-link-type="dfn" href="#concept-element-qualified-name" id="ref-for-concept-element-qualified-name②">qualified name</a> is <var>qualifiedName</var>. </p> + <p>Otherwise, return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection⑨">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑦">elements</a> whose <a data-link-type="dfn" href="#concept-element-qualified-name" id="ref-for-concept-element-qualified-name②">qualified name</a> is <var>qualifiedName</var>. </p> </ol> <p>When invoked with the same argument, and as long as <var>root</var>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document②④">node document</a>’s <a data-link-type="dfn" href="#concept-document-type" id="ref-for-concept-document-type①">type</a> has not changed, the same <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⓪">HTMLCollection</a></code> object may be returned as returned by an earlier call. </p> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="list of elements with namespace namespace and local name localName" id="concept-getelementsbytagnamens">list of elements with namespace <var>namespace</var> and local name <var>localName</var></dfn> for a <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑤②">node</a> <var>root</var> is the <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①①">HTMLCollection</a></code> returned by the following algorithm:</p> <ol> <li>If <var>namespace</var> is the empty string, set it to null. - <li>If both <var>namespace</var> and <var>localName</var> are "<code>*</code>" (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①②">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①⑧">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑧">elements</a>. + <li>If both <var>namespace</var> and <var>localName</var> are "<code>*</code>" (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①②">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑧">elements</a>. <li>Otherwise, if <var>namespace</var> is "<code>*</code>" - (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①③">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant①⑨">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑨">elements</a> whose <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name②">local name</a> is <var>localName</var>. + (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①③">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑤⑨">elements</a> whose <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name②">local name</a> is <var>localName</var>. <li>Otherwise, if <var>localName</var> is "<code>*</code>" - (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①④">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②⓪">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⓪">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑦">namespace</a> is <var>namespace</var>. - <li>Otherwise, return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⑤">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②①">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥①">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑧">namespace</a> is <var>namespace</var> and <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name③">local name</a> is <var>localName</var>. + (U+002A), return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①④">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⓪">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑦">namespace</a> is <var>namespace</var>. + <li>Otherwise, return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⑤">HTMLCollection</a></code> rooted at <var>root</var>, whose filter matches <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥①">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑧">namespace</a> is <var>namespace</var> and <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name③">local name</a> is <var>localName</var>. </ol> <p>When invoked with the same arguments, the same <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⑥">HTMLCollection</a></code> object may be returned as returned by an earlier call.</p> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-getelementsbyclassname">list of elements with class names <var>classNames</var></dfn> for a <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑤③">node</a> <var>root</var> is the <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⑦">HTMLCollection</a></code> returned by the following algorithm:</p> @@ -3225,7 +3557,7 @@ <h3 class="heading settled" data-level="4.4" id="interface-node"><span class="se <li> If <var>classes</var> is the empty set, return an empty <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⑧">HTMLCollection</a></code>. <li> <p>Return a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection①⑨">HTMLCollection</a></code> rooted at <var>root</var>, - whose filter matches <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②②">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥②">elements</a> that have all their <a data-link-type="dfn" href="#concept-class" id="ref-for-concept-class">classes</a> in <var>classes</var>. </p> + whose filter matches <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥②">elements</a> that have all their <a data-link-type="dfn" href="#concept-class" id="ref-for-concept-class">classes</a> in <var>classes</var>. </p> <p>The comparisons for the <a data-link-type="dfn" href="#concept-class" id="ref-for-concept-class①">classes</a> must be done in an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-case-insensitive" id="ref-for-ascii-case-insensitive">ASCII case-insensitive</a> manner if <var>root</var>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document②⑤">node document</a>’s <a data-link-type="dfn" href="#concept-document-mode" id="ref-for-concept-document-mode①">mode</a> is "<code>quirks</code>"; otherwise in an <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-is" id="ref-for-string-is">identical to</a> manner. </p> </ol> <p>When invoked with the same argument, the same <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⓪">HTMLCollection</a></code> object may be returned as returned by an earlier call.</p> @@ -3333,15 +3665,15 @@ <h3 class="heading settled" data-level="4.5" id="interface-document"><span class <dd>Returns the <a data-link-type="dfn" href="#document-element" id="ref-for-document-element④">document element</a>. <dt><var>collection</var> = <var>document</var> . <code class="idl"><a data-link-type="idl" href="#dom-document-getelementsbytagname" id="ref-for-dom-document-getelementsbytagname①">getElementsByTagName(qualifiedName)</a></code> <dd> - <p>If <var>qualifiedName</var> is "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②④">HTMLCollection</a></code> of all <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②③">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥③">elements</a>. </p> - <p>Otherwise, returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑤">HTMLCollection</a></code> of all <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②④">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥④">elements</a> whose <a data-link-type="dfn" href="#concept-element-qualified-name" id="ref-for-concept-element-qualified-name③">qualified name</a> is <var>qualifiedName</var>. (Matches case-insensitively against <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑤">elements</a> in the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace④">HTML namespace</a> within an <a data-link-type="dfn" href="#html-document" id="ref-for-html-document②">HTML document</a>.) </p> + <p>If <var>qualifiedName</var> is "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②④">HTMLCollection</a></code> of all <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥③">elements</a>. </p> + <p>Otherwise, returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑤">HTMLCollection</a></code> of all <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥④">elements</a> whose <a data-link-type="dfn" href="#concept-element-qualified-name" id="ref-for-concept-element-qualified-name③">qualified name</a> is <var>qualifiedName</var>. (Matches case-insensitively against <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑤">elements</a> in the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace④">HTML namespace</a> within an <a data-link-type="dfn" href="#html-document" id="ref-for-html-document②">HTML document</a>.) </p> <dt><var>collection</var> = <var>document</var> . <code class="idl"><a data-link-type="idl" href="#dom-document-getelementsbytagnamens" id="ref-for-dom-document-getelementsbytagnamens①">getElementsByTagNameNS(namespace, localName)</a></code> <dd> If <var>namespace</var> and <var>localName</var> are - "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑥">HTMLCollection</a></code> of all <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②⑤">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑥">elements</a>. - <p>If only <var>namespace</var> is "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑦">HTMLCollection</a></code> of all <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②⑥">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑦">elements</a> whose <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name④">local name</a> is <var>localName</var>.</p> - <p>If only <var>localName</var> is "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑧">HTMLCollection</a></code> of all <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②⑦">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑧">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑨">namespace</a> is <var>namespace</var>.</p> - <p>Otherwise, returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑨">HTMLCollection</a></code> of all <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②⑧">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑨">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace①⓪">namespace</a> is <var>namespace</var> and <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name⑤">local name</a> is <var>localName</var>.</p> + "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑥">HTMLCollection</a></code> of all <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑥">elements</a>. + <p>If only <var>namespace</var> is "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑦">HTMLCollection</a></code> of all <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑦">elements</a> whose <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name④">local name</a> is <var>localName</var>.</p> + <p>If only <var>localName</var> is "<code>*</code>" returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑧">HTMLCollection</a></code> of all <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑧">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace⑨">namespace</a> is <var>namespace</var>.</p> + <p>Otherwise, returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection②⑨">HTMLCollection</a></code> of all <a data-link-type="dfn">descendant</a> <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑥⑨">elements</a> whose <a data-link-type="dfn" href="#concept-element-namespace" id="ref-for-concept-element-namespace①⓪">namespace</a> is <var>namespace</var> and <a data-link-type="dfn" href="#concept-element-local-name" id="ref-for-concept-element-local-name⑤">local name</a> is <var>localName</var>.</p> <dt><var>collection</var> = <var>document</var> . <code class="idl"><a data-link-type="idl" href="#dom-document-getelementsbyclassname" id="ref-for-dom-document-getelementsbyclassname①">getElementsByClassName(classNames)</a></code> <dt><var>collection</var> = <var>element</var> . <code class="idl"><a data-link-type="idl" href="#dom-element-getelementsbyclassname" id="ref-for-dom-element-getelementsbyclassname">getElementsByClassName(classNames)</a></code> <dd> Returns a <code class="idl"><a data-link-type="idl" href="#htmlcollection" id="ref-for-htmlcollection③⓪">HTMLCollection</a></code> of the <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑦⓪">elements</a> in the object on which @@ -3351,7 +3683,7 @@ <h3 class="heading settled" data-level="4.5" id="interface-document"><span class The <var>classNames</var> argument is interpreted as a space-separated list of classes. </dl> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Document" data-dfn-type="attribute" data-export id="dom-document-doctype"><code>doctype</code></dfn> getter steps are to return the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤③">child</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①②③">this</a> that is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①⑥">doctype</a>; otherwise null. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Document" data-dfn-type="attribute" data-export id="dom-document-doctype"><code>doctype</code></dfn> getter steps are to return the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⓪">child</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①②③">this</a> that is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype①⑥">doctype</a>; otherwise null. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Document" data-dfn-type="attribute" data-export id="dom-document-documentelement"><code>documentElement</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①②④">this</a>’s <a data-link-type="dfn" href="#document-element" id="ref-for-document-element⑤">document element</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Document" data-dfn-type="method" data-export id="dom-document-getelementsbytagname"><code>getElementsByTagName(<var>qualifiedName</var>)</code></dfn> method steps are to return the <a data-link-type="dfn" href="#concept-getelementsbytagname" id="ref-for-concept-getelementsbytagname">list of elements with qualified name <var>qualifiedName</var></a> for <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①②⑤">this</a>. </p> <p class="note" role="note">Thus, in an <a data-link-type="dfn" href="#html-document" id="ref-for-html-document③">HTML document</a>, <code class="lang-javascript highlight">document<c- p>.</c->getElementsByTagName<c- p>(</c-><c- u>"FOO"</c-><c- p>)</c-></code> will match <code>&lt;FOO></code> elements that are not in the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace⑤">HTML namespace</a>, and <code>&lt;foo></code> elements that are in @@ -3481,7 +3813,7 @@ <h3 class="heading settled" data-level="4.5" id="interface-document"><span class <dl class="domintro"> <dt><var>clone</var> = <var>document</var> . <a class="idl-code" data-link-type="method" href="#dom-document-importnode" id="ref-for-dom-document-importnode①">importNode(<var>node</var> [, <var>deep</var> = false])</a> <dd> - Returns a copy of <var>node</var>. If <var>deep</var> is true, the copy also includes the <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant②⑨">descendants</a>. + Returns a copy of <var>node</var>. If <var>deep</var> is true, the copy also includes the <var>node</var>’s <a data-link-type="dfn">descendants</a>. <p>If <var>node</var> is a <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document③④">document</a> or a <a data-link-type="dfn" href="#concept-shadow-root" id="ref-for-concept-shadow-root①⑦">shadow root</a>, throws a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notsupportederror" id="ref-for-notsupportederror②">NotSupportedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException④①">DOMException</a></code>.</p> <dt><var>node</var> = <var>document</var> . <code class="idl"><a data-link-type="idl" href="#dom-document-adoptnode" id="ref-for-dom-document-adoptnode①">adoptNode(node)</a></code> @@ -3590,7 +3922,7 @@ <h3 class="heading settled" data-level="4.5" id="interface-document"><span class <tr> <td>"<code>devicemotionevent</code>" <td><code class="idl"><a data-link-type="idl" href="https://w3c.github.io/deviceorientation/spec-source-orientation.html#devicemotion" id="ref-for-devicemotion">DeviceMotionEvent</a></code> - <td rowspan="2"><a data-link-type="biblio" href="#biblio-device-orientation" title="DeviceOrientation Event Specification">[DEVICE-ORIENTATION]</a> + <td rowspan="2"><a data-link-type="biblio" href="#biblio-device-orientation" title="Device Orientation and Motion">[DEVICE-ORIENTATION]</a> <tr> <td>"<code>deviceorientationevent</code>" <td><code class="idl"><a data-link-type="idl" href="https://w3c.github.io/deviceorientation/spec-source-orientation.html#devicemotion" id="ref-for-devicemotion①">DeviceOrientationEvent</a></code> @@ -3871,7 +4203,7 @@ <h3 class="heading settled" data-level="4.8" id="interface-shadowroot"><span cla <p>In <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-tree-order">shadow-including tree order</dfn> is <a data-link-type="dfn" href="#shadow-including-preorder-depth-first-traversal" id="ref-for-shadow-including-preorder-depth-first-traversal">shadow-including preorder, depth-first traversal</a> of a <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree①⑤">node tree</a>. <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="shadow-including-preorder-depth-first-traversal">Shadow-including preorder, depth-first traversal</dfn> of a <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree①⑥">node tree</a> <var>tree</var> is preorder, depth-first traversal of <var>tree</var>, with for each <a data-link-type="dfn" href="#element-shadow-host" id="ref-for-element-shadow-host①">shadow host</a> encountered in <var>tree</var>, <a data-link-type="dfn" href="#shadow-including-preorder-depth-first-traversal" id="ref-for-shadow-including-preorder-depth-first-traversal①">shadow-including preorder, depth-first traversal</a> of that <a data-link-type="dfn" href="#concept-element" id="ref-for-concept-element⑦⑦">element</a>’s <a data-link-type="dfn" href="#concept-element-shadow-root" id="ref-for-concept-element-shadow-root①">shadow root</a>’s <a data-link-type="dfn" href="#concept-node-tree" id="ref-for-concept-node-tree①⑦">node tree</a> just after it is encountered. </p> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-root">shadow-including root</dfn> of an object is its <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root②⑥">root</a>’s <a data-link-type="dfn" href="#concept-documentfragment-host" id="ref-for-concept-documentfragment-host①⓪">host</a>’s <a data-link-type="dfn" href="#concept-shadow-including-root" id="ref-for-concept-shadow-including-root③">shadow-including root</a>, if the object’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root②⑦">root</a> is a <a data-link-type="dfn" href="#concept-shadow-root" id="ref-for-concept-shadow-root③⓪">shadow root</a>; otherwise its <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root②⑧">root</a>. </p> - <p>An object <var>A</var> is a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-descendant">shadow-including descendant</dfn> of an object <var>B</var>, if <var>A</var> is a <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant③⓪">descendant</a> of <var>B</var>, or <var>A</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root②⑨">root</a> is a <a data-link-type="dfn" href="#concept-shadow-root" id="ref-for-concept-shadow-root③①">shadow root</a> and <var>A</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root③⓪">root</a>’s <a data-link-type="dfn" href="#concept-documentfragment-host" id="ref-for-concept-documentfragment-host①①">host</a> is a <a data-link-type="dfn" href="#concept-shadow-including-inclusive-descendant" id="ref-for-concept-shadow-including-inclusive-descendant④">shadow-including inclusive descendant</a> of <var>B</var>. </p> + <p>An object <var>A</var> is a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-descendant">shadow-including descendant</dfn> of an object <var>B</var>, if <var>A</var> is a <a data-link-type="dfn">descendant</a> of <var>B</var>, or <var>A</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root②⑨">root</a> is a <a data-link-type="dfn" href="#concept-shadow-root" id="ref-for-concept-shadow-root③①">shadow root</a> and <var>A</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root③⓪">root</a>’s <a data-link-type="dfn" href="#concept-documentfragment-host" id="ref-for-concept-documentfragment-host①①">host</a> is a <a data-link-type="dfn" href="#concept-shadow-including-inclusive-descendant" id="ref-for-concept-shadow-including-inclusive-descendant④">shadow-including inclusive descendant</a> of <var>B</var>. </p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-inclusive-descendant">shadow-including inclusive descendant</dfn> is an object or one of its <a data-link-type="dfn" href="#concept-shadow-including-descendant" id="ref-for-concept-shadow-including-descendant①">shadow-including descendants</a>. </p> <p>An object <var>A</var> is a <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-ancestor">shadow-including ancestor</dfn> of an object <var>B</var>, if and only if <var>B</var> is a <a data-link-type="dfn" href="#concept-shadow-including-descendant" id="ref-for-concept-shadow-including-descendant②">shadow-including descendant</a> of <var>A</var>. </p> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-shadow-including-inclusive-ancestor">shadow-including inclusive ancestor</dfn> is an object or one of its <a data-link-type="dfn" href="#concept-shadow-including-ancestor" id="ref-for-concept-shadow-including-ancestor">shadow-including ancestors</a>. </p> @@ -4067,7 +4399,7 @@ <h3 class="heading settled" data-level="4.9" id="interface-element"><span class= <p>If <var>result</var>’s <a data-link-type="dfn" href="#concept-element-attribute" id="ref-for-concept-element-attribute⑥">attribute list</a> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-is-empty" id="ref-for-list-is-empty④">is not empty</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw④②">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notsupportederror" id="ref-for-notsupportederror⑧">NotSupportedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑤②">DOMException</a></code>. </p> <li> - <p>If <var>result</var> has <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤④">children</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw④③">throw</a> a + <p>If <var>result</var> has <a data-link-type="dfn">children</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw④③">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#notsupportederror" id="ref-for-notsupportederror⑨">NotSupportedError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑤③">DOMException</a></code>. </p> <li> <p>If <var>result</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent②⑦">parent</a> is not null, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw④④">throw</a> a @@ -4718,16 +5050,16 @@ <h3 class="heading settled" data-level="4.10" id="interface-characterdata"><span called <dfn class="dfn-paneled" data-dfn-for="CharacterData" data-dfn-type="dfn" data-export id="concept-cd-data">data</dfn>.</p> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-cd-replace">replace data</dfn> of node <var>node</var> with offset <var>offset</var>, count <var>count</var>, and data <var>data</var>, run these steps:</p> <ol> - <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length④">length</a>. + <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑤">length</a>. <li>If <var>offset</var> is greater than <var>length</var>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⓪">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#indexsizeerror" id="ref-for-indexsizeerror">IndexSizeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦⓪">DOMException</a></code>. <li>If <var>offset</var> plus <var>count</var> is greater than <var>length</var>, then set <var>count</var> to <var>length</var> minus <var>offset</var>. <li> <p><a data-link-type="dfn" href="#queue-a-mutation-record" id="ref-for-queue-a-mutation-record②">Queue a mutation record</a> of "<code>characterData</code>" for <var>node</var> with null, null, <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②④">data</a>, « », « », null, and null. </p> - <li>Insert <var>data</var> into <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑤">data</a> after <var>offset</var> <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit">code units</a>. + <li>Insert <var>data</var> into <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑤">data</a> after <var>offset</var> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit">code units</a>. <li>Let <var>delete offset</var> be <var>offset</var> + <var>data</var>’s <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-length" id="ref-for-string-length①">length</a>. - <li>Starting from <var>delete offset</var> <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit①">code units</a>, remove <var>count</var> <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit②">code units</a> from <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑥">data</a>. + <li>Starting from <var>delete offset</var> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit①">code units</a>, remove <var>count</var> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit②">code units</a> from <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑥">data</a>. <li> <p>For each <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range①①">live range</a> whose <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node⑦">start node</a> is <var>node</var> and <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset⑦">start offset</a> is greater than <var>offset</var> but less than or equal to <var>offset</var> plus <var>count</var>, set its <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset⑧">start offset</a> to <var>offset</var>. </p> <li> @@ -4736,24 +5068,24 @@ <h3 class="heading settled" data-level="4.10" id="interface-characterdata"><span <p>For each <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range①③">live range</a> whose <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node⑧">start node</a> is <var>node</var> and <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset⑨">start offset</a> is greater than <var>offset</var> plus <var>count</var>, increase its <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset①⓪">start offset</a> by <var>data</var>’s <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-length" id="ref-for-string-length②">length</a> and decrease it by <var>count</var>. </p> <li> <p>For each <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range①④">live range</a> whose <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node⑧">end node</a> is <var>node</var> and <a data-link-type="dfn" href="#concept-range-end-offset" id="ref-for-concept-range-end-offset⑨">end offset</a> is greater than <var>offset</var> plus <var>count</var>, increase its <a data-link-type="dfn" href="#concept-range-end-offset" id="ref-for-concept-range-end-offset①⓪">end offset</a> by <var>data</var>’s <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-length" id="ref-for-string-length③">length</a> and decrease it by <var>count</var>. </p> - <li>If <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③④">parent</a> is non-null, then run the <a data-link-type="dfn" href="#concept-node-children-changed-ext" id="ref-for-concept-node-children-changed-ext②">children changed steps</a> for <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑤">parent</a>. + <li>If <var>node</var>’s <a data-link-type="dfn">parent</a> is non-null, then run the <a data-link-type="dfn" href="#concept-node-children-changed-ext" id="ref-for-concept-node-children-changed-ext②">children changed steps</a> for <var>node</var>’s <a data-link-type="dfn">parent</a>. </ol> <p>To <dfn class="dfn-paneled" data-dfn-for="CharacterData, Text, Comment, ProcessingInstruction" data-dfn-type="dfn" data-export id="concept-cd-substring">substring data</dfn> with node <var>node</var>, offset <var>offset</var>, and count <var>count</var>, run these steps:</p> <ol> - <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑤">length</a>. + <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑥">length</a>. <li>If <var>offset</var> is greater than <var>length</var>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥①">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#indexsizeerror" id="ref-for-indexsizeerror①">IndexSizeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦①">DOMException</a></code>. <li>If <var>offset</var> plus <var>count</var> is - greater than <var>length</var>, return a string whose value is the <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit③">code units</a> from the <var>offset</var><sup>th</sup> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit">code unit</a> to the end of <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑦">data</a>, and then + greater than <var>length</var>, return a string whose value is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit③">code units</a> from the <var>offset</var><sup>th</sup> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit④">code unit</a> to the end of <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑦">data</a>, and then return. - <li>Return a string whose value is the <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit④">code units</a> from the <var>offset</var><sup>th</sup> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit①">code unit</a> to the <var>offset</var>+<var>count</var><sup>th</sup> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit②">code unit</a> in <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑧">data</a>. + <li>Return a string whose value is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit⑤">code units</a> from the <var>offset</var><sup>th</sup> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit⑥">code unit</a> to the <var>offset</var>+<var>count</var><sup>th</sup> <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit⑦">code unit</a> in <var>node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑧">data</a>. </ol> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="attribute" data-export id="dom-characterdata-data"><code>data</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②①⑧">this</a>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑨">data</a>. Its setter must <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace④">replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②①⑨">this</a>, offset 0, count <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②⓪">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑥">length</a>, and data new value. </p> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="attribute" data-export id="dom-characterdata-length"><code>length</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②①">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑦">length</a>. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="attribute" data-export id="dom-characterdata-data"><code>data</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②①⑧">this</a>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data②⑨">data</a>. Its setter must <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace④">replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②①⑨">this</a>, offset 0, count <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②⓪">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑦">length</a>, and data new value. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="attribute" data-export id="dom-characterdata-length"><code>length</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②①">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑧">length</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="method" data-export id="dom-characterdata-substringdata"><code>substringData(<var>offset</var>, <var>count</var>)</code></dfn> method steps are to return the result of running <a data-link-type="dfn" href="#concept-cd-substring" id="ref-for-concept-cd-substring">substring data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②②">this</a>, offset <var>offset</var>, and count <var>count</var>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="method" data-export id="dom-characterdata-appenddata"><code>appendData(<var>data</var>)</code></dfn> method steps are -to <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace⑤">replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②③">this</a>, offset <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②④">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑧">length</a>, count 0, +to <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace⑤">replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②③">this</a>, offset <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②④">this</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑨">length</a>, count 0, and data <var>data</var>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="CharacterData" data-dfn-type="method" data-export id="dom-characterdata-insertdata"><code>insertData(<var>offset</var>, <var>data</var>)</code></dfn> method steps are to <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace⑥">replace data</a> with node <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②⑤">this</a>, offset <var>offset</var>, count 0, and data <var>data</var>. </p> @@ -4782,19 +5114,19 @@ <h3 class="heading settled" data-level="4.11" id="interface-text"><span class="s <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="contiguous-exclusive-text-nodes">contiguous exclusive <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤①">Text</a></code> nodes</dfn> of a <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑧⑥">node</a> <var>node</var> are <var>node</var>, <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling⑦">previous sibling</a> <a data-link-type="dfn" href="#exclusive-text-node" id="ref-for-exclusive-text-node④">exclusive <code>Text</code> node</a>, if any, and its <a data-link-type="dfn" href="#contiguous-exclusive-text-nodes" id="ref-for-contiguous-exclusive-text-nodes③">contiguous exclusive <code>Text</code> nodes</a>, and <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-next-sibling" id="ref-for-concept-tree-next-sibling①②">next sibling</a> <a data-link-type="dfn" href="#exclusive-text-node" id="ref-for-exclusive-text-node⑤">exclusive <code>Text</code> node</a>, if any, and its <a data-link-type="dfn" href="#contiguous-exclusive-text-nodes" id="ref-for-contiguous-exclusive-text-nodes④">contiguous exclusive <code>Text</code> nodes</a>, avoiding any duplicates. </p> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-child-text-content">child text content</dfn> of a <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤⓪">node</a> <var>node</var> is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-concatenate" id="ref-for-string-concatenate②">concatenation</a> of the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data③③">data</a> of all -the <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤②">Text</a></code> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤①">node</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤⑤">children</a> of <var>node</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②①">tree order</a>. </p> - <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-descendant-text-content">descendant text content</dfn> of a <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤②">node</a> <var>node</var> is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-concatenate" id="ref-for-string-concatenate③">concatenation</a> of the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data③④">data</a> of all the <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤③">Text</a></code> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤③">node</a> <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant③①">descendants</a> of <var>node</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②②">tree order</a>. </p> +the <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤②">Text</a></code> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤①">node</a> <a data-link-type="dfn">children</a> of <var>node</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②①">tree order</a>. </p> + <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-descendant-text-content">descendant text content</dfn> of a <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤②">node</a> <var>node</var> is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#string-concatenate" id="ref-for-string-concatenate③">concatenation</a> of the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data③④">data</a> of all the <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤③">Text</a></code> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤③">node</a> <a data-link-type="dfn">descendants</a> of <var>node</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②②">tree order</a>. </p> <hr> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Text" data-dfn-type="constructor" data-export data-lt="Text(data)|constructor(data)|Text()|constructor()" id="dom-text-text"><code>new Text(<var>data</var>)</code></dfn> constructor steps are to set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②⑧">this</a>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data③⑤">data</a> to <var>data</var> and <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②②⑨">this</a>’s <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document⑥②">node document</a> to <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#current-global-object" id="ref-for-current-global-object②">current global object</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-document-window" id="ref-for-concept-document-window③">associated <code>Document</code></a>. </p> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="split a Text node" id="concept-text-split">split</dfn> a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤④">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑧⑦">node</a> <var>node</var> with offset <var>offset</var>, run these steps:</p> <ol> - <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length⑨">length</a>. + <li>Let <var>length</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⓪">length</a>. <li>If <var>offset</var> is greater than <var>length</var>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥②">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#indexsizeerror" id="ref-for-indexsizeerror②">IndexSizeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦②">DOMException</a></code>. <li>Let <var>count</var> be <var>length</var> minus <var>offset</var>. <li>Let <var>new data</var> be the result of <a data-link-type="dfn" href="#concept-cd-substring" id="ref-for-concept-cd-substring①">substringing data</a> with node <var>node</var>, offset <var>offset</var>, and count <var>count</var>. <li>Let <var>new node</var> be a new <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑤⑤">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑧⑧">node</a>, with the same <a data-link-type="dfn" href="#concept-node-document" id="ref-for-concept-node-document⑥③">node document</a> as <var>node</var>. Set <var>new node</var>’s <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data③⑥">data</a> to <var>new data</var>. - <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑥">parent</a>. + <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③④">parent</a>. <li> <p>If <var>parent</var> is not null, then: </p> <ol> @@ -4878,7 +5210,7 @@ <h3 class="heading settled" data-level="5.1" id="introduction-to-dom-ranges"><sp <h3 class="heading settled" data-level="5.2" id="boundary-points"><span class="secno">5.2. </span><span class="content">Boundary points</span><a class="self-link" href="#boundary-points"></a></h3> <p>A <dfn class="dfn-paneled" data-dfn-type="dfn" data-export id="concept-range-bp">boundary point</dfn> is a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#tuple" id="ref-for-tuple①">tuple</a> consisting of a <dfn class="dfn-paneled" data-dfn-for="boundary point" data-dfn-type="dfn" data-export id="boundary-point-node">node</dfn> (a <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤⑥">node</a>) and an <dfn class="dfn-paneled" data-dfn-for="boundary point" data-dfn-type="dfn" data-export id="concept-range-bp-offset">offset</dfn> (a non-negative integer). </p> <p class="note" role="note">A correct <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp③">boundary point</a>’s <a data-link-type="dfn" href="#concept-range-bp-offset" id="ref-for-concept-range-bp-offset①">offset</a> will -be between 0 and the <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp④">boundary point</a>’s <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨①">node</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⓪">length</a>, inclusive. </p> +be between 0 and the <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp④">boundary point</a>’s <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨①">node</a>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①①">length</a>, inclusive. </p> <p>The <dfn class="dfn-paneled" data-dfn-for="boundary point" data-dfn-type="dfn" data-export id="concept-range-bp-position">position</dfn> of a <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp⑤">boundary point</a> (<var>nodeA</var>, <var>offsetA</var>) relative to a <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp⑥">boundary point</a> (<var>nodeB</var>, <var>offsetB</var>) is <dfn class="dfn-paneled" data-dfn-for="boundary point" data-dfn-type="dfn" data-export id="concept-range-bp-before">before</dfn>, <dfn class="dfn-paneled" data-dfn-for="boundary point" data-dfn-type="dfn" data-export id="concept-range-bp-equal">equal</dfn>, or <dfn class="dfn-paneled" data-dfn-for="boundary point" data-dfn-type="dfn" data-export id="concept-range-bp-after">after</dfn>, as returned by these steps: </p> <ol> <li> @@ -4889,12 +5221,12 @@ <h3 class="heading settled" data-level="5.2" id="boundary-points"><span class="s <p>If <var>nodeA</var> is <a data-link-type="dfn" href="#concept-tree-following" id="ref-for-concept-tree-following①①">following</a> <var>nodeB</var>, then if the <a data-link-type="dfn" href="#concept-range-bp-position" id="ref-for-concept-range-bp-position">position</a> of (<var>nodeB</var>, <var>offsetB</var>) relative to (<var>nodeA</var>, <var>offsetA</var>) is <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before①">before</a>, return <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after①">after</a>, and if it is <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after②">after</a>, return <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before②">before</a>. </p> <li> - <p>If <var>nodeA</var> is an <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor⑤">ancestor</a> of <var>nodeB</var>: </p> + <p>If <var>nodeA</var> is an <a data-link-type="dfn">ancestor</a> of <var>nodeB</var>: </p> <ol> <li> <p>Let <var>child</var> be <var>nodeB</var>. </p> <li> - <p>While <var>child</var> is not a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤⑥">child</a> of <var>nodeA</var>, set <var>child</var> to its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑦">parent</a>. </p> + <p>While <var>child</var> is not a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③①">child</a> of <var>nodeA</var>, set <var>child</var> to its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑤">parent</a>. </p> <li> <p>If <var>child</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index⑨">index</a> is less than <var>offsetA</var>, then return <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after③">after</a>. </p> </ol> @@ -5003,7 +5335,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <p class="note" role="note">Algorithms that modify a <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree②⓪">tree</a> (in particular the <a data-link-type="dfn" href="#concept-node-insert" id="ref-for-concept-node-insert⑦">insert</a>, <a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove①①">remove</a>, <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①①">replace data</a>, and <a data-link-type="dfn" href="#concept-text-split" id="ref-for-concept-text-split②">split</a> algorithms) modify <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range②④">live ranges</a> associated with that <a data-link-type="dfn" href="#concept-tree" id="ref-for-concept-tree②①">tree</a>. </p> <p>The <dfn class="dfn-paneled" data-dfn-for="live range" data-dfn-type="dfn" data-export id="concept-range-root">root</dfn> of a <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range②⑤">live range</a> is the <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root④⓪">root</a> of its <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node①⑤">start node</a>. </p> <p>A <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤⑧">node</a> <var>node</var> is <dfn class="dfn-paneled" data-dfn-for="live range" data-dfn-type="dfn" data-export id="contained">contained</dfn> in a <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range②⑥">live range</a> <var>range</var> if <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root④①">root</a> is <var>range</var>’s <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root">root</a>, and (<var>node</var>, 0) is <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after④">after</a> <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start⑥">start</a>, and -(<var>node</var>, <var>node</var>’s <a data-link-type="dfn">length</a>) is <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before④">before</a> <var>range</var>’s <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end⑥">end</a>. </p> +(<var>node</var>, <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①②">length</a>) is <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before④">before</a> <var>range</var>’s <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end⑥">end</a>. </p> <p>A <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑤⑨">node</a> is <dfn class="dfn-paneled" data-dfn-for="live range" data-dfn-type="dfn" data-export id="partially-contained">partially contained</dfn> in a <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range②⑦">live range</a> if it’s an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor⑦">inclusive ancestor</a> of the <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range②⑧">live range</a>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node①⑥">start node</a> but not its <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node①⑤">end node</a>, or vice versa. </p> <div class="note" role="note"> <p>Some facts to better understand these definitions: </p> @@ -5012,27 +5344,27 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <p>The content that one would think of as being within the <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range②⑨">live range</a> consists of all <a data-link-type="dfn" href="#contained" id="ref-for-contained">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⓪">nodes</a>, plus possibly some of the contents of the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node①⑦">start node</a> and <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node①⑥">end node</a> if those are <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑥⓪">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction②⑥">ProcessingInstruction</a></code>, or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment②⑥">Comment</a></code> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥①">nodes</a>. </p> <li> <p>The <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥②">nodes</a> that are contained in a <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range③⓪">live range</a> will generally not be - contiguous, because the <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑧">parent</a> of a <a data-link-type="dfn" href="#contained" id="ref-for-contained①">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥③">node</a> will not always be <a data-link-type="dfn" href="#contained" id="ref-for-contained②">contained</a>. </p> + contiguous, because the <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑥">parent</a> of a <a data-link-type="dfn" href="#contained" id="ref-for-contained①">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥③">node</a> will not always be <a data-link-type="dfn" href="#contained" id="ref-for-contained②">contained</a>. </p> <li> - <p>However, the <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant③②">descendants</a> of a <a data-link-type="dfn" href="#contained" id="ref-for-contained③">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥④">node</a> are <a data-link-type="dfn" href="#contained" id="ref-for-contained④">contained</a>, and if two <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling①⑤">siblings</a> are <a data-link-type="dfn" href="#contained" id="ref-for-contained⑤">contained</a>, so are any <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling①⑥">siblings</a> that lie between them. </p> + <p>However, the <a data-link-type="dfn">descendants</a> of a <a data-link-type="dfn" href="#contained" id="ref-for-contained③">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥④">node</a> are <a data-link-type="dfn" href="#contained" id="ref-for-contained④">contained</a>, and if two <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling①⑤">siblings</a> are <a data-link-type="dfn" href="#contained" id="ref-for-contained⑤">contained</a>, so are any <a data-link-type="dfn" href="#concept-tree-sibling" id="ref-for-concept-tree-sibling①⑥">siblings</a> that lie between them. </p> <li> <p>The <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node①⑧">start node</a> and <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node①⑦">end node</a> of a <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range③①">live range</a> are never <a data-link-type="dfn" href="#contained" id="ref-for-contained⑥">contained</a> within it. </p> <li> <p>The first <a data-link-type="dfn" href="#contained" id="ref-for-contained⑦">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑤">node</a> (if there are any) will - always be after the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node①⑨">start node</a>, and the last <a data-link-type="dfn" href="#contained" id="ref-for-contained⑧">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑥">node</a> will always be equal to or before the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node①⑧">end node</a>’s last <a data-link-type="dfn" href="#concept-tree-descendant" id="ref-for-concept-tree-descendant③③">descendant</a>. </p> + always be after the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node①⑨">start node</a>, and the last <a data-link-type="dfn" href="#contained" id="ref-for-contained⑧">contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑥">node</a> will always be equal to or before the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node①⑧">end node</a>’s last <a data-link-type="dfn">descendant</a>. </p> <li> <p>There exists a <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained">partially contained</a> <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑦">node</a> if and only if the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②⓪">start node</a> and <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node①⑨">end node</a> are different. </p> <li> <p>The <code class="idl"><a data-link-type="idl" href="#dom-range-commonancestorcontainer" id="ref-for-dom-range-commonancestorcontainer①">commonAncestorContainer</a></code> attribute value is neither <a data-link-type="dfn" href="#contained" id="ref-for-contained⑨">contained</a> nor <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained①">partially contained</a>. </p> <li> - <p>If the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②①">start node</a> is an <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor⑥">ancestor</a> of the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②⓪">end node</a>, + <p>If the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②①">start node</a> is an <a data-link-type="dfn">ancestor</a> of the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②⓪">end node</a>, the common <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor⑧">inclusive ancestor</a> will be the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②②">start node</a>. Exactly one - of its <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤⑦">children</a> will be <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained②">partially contained</a>, and a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤⑧">child</a> will be <a data-link-type="dfn" href="#contained" id="ref-for-contained①⓪">contained</a> if and only if it <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding①①">precedes</a> the <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained③">partially contained</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑤⑨">child</a>. If the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②①">end node</a> is an <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor⑦">ancestor</a> of the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②③">start node</a>, the opposite holds. </p> + of its <a data-link-type="dfn">children</a> will be <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained②">partially contained</a>, and a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③②">child</a> will be <a data-link-type="dfn" href="#contained" id="ref-for-contained①⓪">contained</a> if and only if it <a data-link-type="dfn" href="#concept-tree-preceding" id="ref-for-concept-tree-preceding①①">precedes</a> the <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained③">partially contained</a> <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③③">child</a>. If the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②①">end node</a> is an <a data-link-type="dfn">ancestor</a> of the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②③">start node</a>, the opposite holds. </p> <li> <p>If the <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②④">start node</a> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor⑨">inclusive ancestor</a> of the <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②②">end node</a>, nor vice versa, the common <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⓪">inclusive ancestor</a> will be - distinct from both of them. Exactly two of its <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥⓪">children</a> will be <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained④">partially contained</a>, and a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥①">child</a> will be contained if and + distinct from both of them. Exactly two of its <a data-link-type="dfn">children</a> will be <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained④">partially contained</a>, and a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③④">child</a> will be contained if and only if it lies between those two. </p> </ul> </div> @@ -5048,12 +5380,12 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <dl class="domintro"> <dt><var>container</var> = <var>range</var> . <code class="idl"><a data-link-type="idl" href="#dom-range-commonancestorcontainer" id="ref-for-dom-range-commonancestorcontainer②">commonAncestorContainer</a></code> <dd>Returns the <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨④">node</a>, furthest away from - the <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document④⑥">document</a>, that is an <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor⑧">ancestor</a> of both <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②⑤">start node</a> and <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②③">end node</a>. + the <a data-link-type="dfn" href="#concept-document" id="ref-for-concept-document④⑥">document</a>, that is an <a data-link-type="dfn">ancestor</a> of both <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②⑤">start node</a> and <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②③">end node</a>. </dl> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Range" data-dfn-type="attribute" data-export id="dom-range-commonancestorcontainer"><code>commonAncestorContainer</code></dfn> getter steps are: </p> <ol> <li>Let <var>container</var> be <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②⑥">start node</a>. - <li>While <var>container</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①①">inclusive ancestor</a> of <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②④">end node</a>, let <var>container</var> be <var>container</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑨">parent</a>. + <li>While <var>container</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①①">inclusive ancestor</a> of <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②④">end node</a>, let <var>container</var> be <var>container</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑦">parent</a>. <li>Return <var>container</var>. </ol> <hr> @@ -5062,7 +5394,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <ol> <li>If <var>node</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype②④">doctype</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥④">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror①">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦④">DOMException</a></code>. - <li>If <var>offset</var> is greater than <var>node</var>’s <a data-link-type="dfn">length</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⑤">throw</a> an + <li>If <var>offset</var> is greater than <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①③">length</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⑤">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#indexsizeerror" id="ref-for-indexsizeerror③">IndexSizeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦⑤">DOMException</a></code>. <li>Let <var>bp</var> be the <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp⑨">boundary point</a> (<var>node</var>, <var>offset</var>). <li> @@ -5089,14 +5421,14 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s steps are to <a data-link-type="dfn" href="#concept-range-bp-set" id="ref-for-concept-range-bp-set①">set the end</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②④②">this</a> to <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp①①">boundary point</a> (<var>node</var>, <var>offset</var>). </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Range" data-dfn-type="method" data-export id="dom-range-setstartbefore"><code>setStartBefore(<var>node</var>)</code></dfn> method steps are: </p> <ol> - <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⓪">parent</a>. + <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑧">parent</a>. <li>If <var>parent</var> is null, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⑥">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror②">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦⑥">DOMException</a></code>. <li><a data-link-type="dfn" href="#concept-range-bp-set" id="ref-for-concept-range-bp-set②">Set the start</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②④③">this</a> to <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp①②">boundary point</a> (<var>parent</var>, <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⓪">index</a>). </ol> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Range" data-dfn-type="method" data-export id="dom-range-setstartafter"><code>setStartAfter(<var>node</var>)</code></dfn> method steps are: </p> <ol> <li> - <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④①">parent</a>. </p> + <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent③⑨">parent</a>. </p> <li> <p>If <var>parent</var> is null, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⑦">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror③">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦⑦">DOMException</a></code>. </p> <li> @@ -5104,14 +5436,14 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s </ol> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Range" data-dfn-type="method" data-export id="dom-range-setendbefore"><code>setEndBefore(<var>node</var>)</code></dfn> method steps are: </p> <ol> - <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④②">parent</a>. + <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⓪">parent</a>. <li>If <var>parent</var> is null, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⑧">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror④">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦⑧">DOMException</a></code>. <li><a data-link-type="dfn" href="#concept-range-bp-set" id="ref-for-concept-range-bp-set④">Set the end</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②④⑤">this</a> to <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp①④">boundary point</a> (<var>parent</var>, <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①②">index</a>). </ol> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Range" data-dfn-type="method" data-export id="dom-range-setendafter"><code>setEndAfter(<var>node</var>)</code></dfn> method steps are: </p> <ol> <li> - <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④③">parent</a>. </p> + <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④①">parent</a>. </p> <li> <p>If <var>parent</var> is null, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑥⑨">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror⑤">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦⑨">DOMException</a></code>. </p> <li> @@ -5121,7 +5453,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <p>To <dfn class="dfn-paneled" data-dfn-for="range" data-dfn-type="dfn" data-export id="concept-range-select">select</dfn> a <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑧">node</a> <var>node</var> within a <a data-link-type="dfn" href="#concept-range" id="ref-for-concept-range①②">range</a> <var>range</var>, run these steps: </p> <ol> <li> - <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④④">parent</a>. </p> + <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④②">parent</a>. </p> <li> <p>If <var>parent</var> is null, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑦⓪">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror⑥">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑧⓪">DOMException</a></code>. </p> <li> @@ -5137,7 +5469,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <ol> <li>If <var>node</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype②⑤">doctype</a>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑦①">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror⑦">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑧①">DOMException</a></code>. - <li>Let <var>length</var> be the <a data-link-type="dfn">length</a> of <var>node</var>. + <li>Let <var>length</var> be the <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①④">length</a> of <var>node</var>. <li>Set <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start①④">start</a> to the <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp①⑧">boundary point</a> (<var>node</var>, 0). <li>Set <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end①④">end</a> to the <a data-link-type="dfn" href="#concept-range-bp" id="ref-for-concept-range-bp①⑨">boundary point</a> (<var>node</var>, <var>length</var>). </ol> @@ -5188,19 +5520,19 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li>Let <var>original start node</var>, <var>original start offset</var>, <var>original end node</var>, and <var>original end offset</var> be <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤④">this</a>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node②⑦">start node</a>, <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset①⑧">start offset</a>, <a data-link-type="dfn" href="#concept-range-end-node" id="ref-for-concept-range-end-node②⑤">end node</a>, and <a data-link-type="dfn" href="#concept-range-end-offset" id="ref-for-concept-range-end-offset①⑧">end offset</a>, respectively. <li>If <var>original start node</var> and <var>original end node</var> are the same, and they are a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑥①">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction②⑦">ProcessingInstruction</a></code>, or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment②⑦">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨⑤">node</a>, <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①②">replace data</a> with node <var>original start node</var>, offset <var>original start offset</var>, count <var>original end offset</var> minus <var>original start offset</var>, and data the empty string, and then return. - <li>Let <var>nodes to remove</var> be a list of all the <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑨">nodes</a> that are <a data-link-type="dfn" href="#contained" id="ref-for-contained①①">contained</a> in <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑤">this</a>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②④">tree order</a>, omitting any <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨⑥">node</a> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑤">parent</a> is also <a data-link-type="dfn" href="#contained" id="ref-for-contained①②">contained</a> in <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑥">this</a>. + <li>Let <var>nodes to remove</var> be a list of all the <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑥⑨">nodes</a> that are <a data-link-type="dfn" href="#contained" id="ref-for-contained①①">contained</a> in <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑤">this</a>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②④">tree order</a>, omitting any <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨⑥">node</a> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④③">parent</a> is also <a data-link-type="dfn" href="#contained" id="ref-for-contained①②">contained</a> in <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑥">this</a>. <li>If <var>original start node</var> is an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①②">inclusive ancestor</a> of <var>original end node</var>, set <var>new node</var> to <var>original start node</var> and <var>new offset</var> to <var>original start offset</var>. <li> Otherwise: <ol> <li>Let <var>reference node</var> equal <var>original start node</var>. - <li>While <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑥">parent</a> is not null and is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①③">inclusive ancestor</a> of <var>original end node</var>, set <var>reference node</var> to its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑦">parent</a>. + <li>While <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④④">parent</a> is not null and is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①③">inclusive ancestor</a> of <var>original end node</var>, set <var>reference node</var> to its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑤">parent</a>. <li> - Set <var>new node</var> to the <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑧">parent</a> of <var>reference node</var>, and <var>new offset</var> to one + Set <var>new node</var> to the <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑥">parent</a> of <var>reference node</var>, and <var>new offset</var> to one plus the <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑤">index</a> of <var>reference node</var>. - <p class="note" role="note">If <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑨">parent</a> were null, it would be the <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑤">root</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑦">this</a>, so would be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①④">inclusive ancestor</a> of <var>original end node</var>, and we could not reach this point. </p> + <p class="note" role="note">If <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑦">parent</a> were null, it would be the <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑤">root</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑦">this</a>, so would be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①④">inclusive ancestor</a> of <var>original end node</var>, and we could not reach this point. </p> </ol> - <li>If <var>original start node</var> is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑥②">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction②⑧">ProcessingInstruction</a></code>, or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment②⑧">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨⑦">node</a>, <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①③">replace data</a> with node <var>original start node</var>, offset <var>original start offset</var>, count <var>original start node</var>’s <a data-link-type="dfn">length</a> minus <var>original start offset</var>, data the empty string. + <li>If <var>original start node</var> is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑥②">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction②⑧">ProcessingInstruction</a></code>, or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment②⑧">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨⑦">node</a>, <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①③">replace data</a> with node <var>original start node</var>, offset <var>original start offset</var>, count <var>original start node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⑤">length</a> minus <var>original start offset</var>, data the empty string. <li> <p>For each <var>node</var> in <var>nodes to remove</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑤">tree order</a>, <a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove①②">remove</a> <var>node</var>. </p> <li>If <var>original end node</var> is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑥③">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction②⑨">ProcessingInstruction</a></code>, or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment②⑨">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node⑨⑧">node</a>, <a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①④">replace data</a> with node <var>original end node</var>, offset 0, count <var>original end offset</var> and data the empty string. @@ -5225,16 +5557,16 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s </ol> <li>Let <var>common ancestor</var> be <var>original start node</var>. <li>While <var>common ancestor</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑤">inclusive ancestor</a> of <var>original end node</var>, set <var>common ancestor</var> to - its own <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⓪">parent</a>. + its own <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑧">parent</a>. <li>Let <var>first partially contained child</var> be null. - <li>If <var>original start node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑥">inclusive ancestor</a> of <var>original end node</var>, set <var>first partially contained child</var> to the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥②">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑤">partially contained</a> in <var>range</var>. + <li>If <var>original start node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑥">inclusive ancestor</a> of <var>original end node</var>, set <var>first partially contained child</var> to the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑤">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑤">partially contained</a> in <var>range</var>. <li>Let <var>last partially contained child</var> be null. <li> - If <var>original end node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑦">inclusive ancestor</a> of <var>original start node</var>, set <var>last partially contained child</var> to the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥③">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑥">partially contained</a> in <var>range</var>. + If <var>original end node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑦">inclusive ancestor</a> of <var>original start node</var>, set <var>last partially contained child</var> to the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑥">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑥">partially contained</a> in <var>range</var>. <p class="note" role="note">These variable assignments do actually always make sense. - For instance, if <var>original start node</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑧">inclusive ancestor</a> of <var>original end node</var>, <var>original start node</var> is itself <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑦">partially contained</a> in <var>range</var>, and so are all its <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor⑨">ancestors</a> up until a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥④">child</a> of <var>common ancestor</var>. <var>common ancestor</var> cannot be <var>original start node</var>, because - it has to be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑨">inclusive ancestor</a> of <var>original end node</var>. The other case is similar. Also, notice that the two <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥⑤">children</a> will never be equal if both are defined. </p> - <li>Let <var>contained children</var> be a list of all <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥⑥">children</a> of <var>common ancestor</var> that are <a data-link-type="dfn" href="#contained" id="ref-for-contained①③">contained</a> in <var>range</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑥">tree order</a>. + For instance, if <var>original start node</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑧">inclusive ancestor</a> of <var>original end node</var>, <var>original start node</var> is itself <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑦">partially contained</a> in <var>range</var>, and so are all its <a data-link-type="dfn">ancestors</a> up until a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑦">child</a> of <var>common ancestor</var>. <var>common ancestor</var> cannot be <var>original start node</var>, because + it has to be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor①⑨">inclusive ancestor</a> of <var>original end node</var>. The other case is similar. Also, notice that the two <a data-link-type="dfn">children</a> will never be equal if both are defined. </p> + <li>Let <var>contained children</var> be a list of all <a data-link-type="dfn">children</a> of <var>common ancestor</var> that are <a data-link-type="dfn" href="#contained" id="ref-for-contained①③">contained</a> in <var>range</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑥">tree order</a>. <li> <p>If any member of <var>contained children</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype②⑥">doctype</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑦④">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#hierarchyrequesterror" id="ref-for-hierarchyrequesterror①⑧">HierarchyRequestError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑧④">DOMException</a></code>. </p> @@ -5247,19 +5579,19 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s Otherwise: <ol> <li>Let <var>reference node</var> equal <var>original start node</var>. - <li>While <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤①">parent</a> is not null and is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②①">inclusive ancestor</a> of <var>original end node</var>, set <var>reference node</var> to its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤②">parent</a>. + <li>While <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent④⑨">parent</a> is not null and is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②①">inclusive ancestor</a> of <var>original end node</var>, set <var>reference node</var> to its <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⓪">parent</a>. <li> - Set <var>new node</var> to the <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤③">parent</a> of <var>reference node</var>, and <var>new offset</var> to one plus <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑥">index</a>. - <p class="note" role="note">If <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤④">parent</a> is null, it would be the <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑥">root</a> of <var>range</var>, so would be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②②">inclusive ancestor</a> of <var>original end node</var>, and we could not reach this point. </p> + Set <var>new node</var> to the <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤①">parent</a> of <var>reference node</var>, and <var>new offset</var> to one plus <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑥">index</a>. + <p class="note" role="note">If <var>reference node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤②">parent</a> is null, it would be the <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑥">root</a> of <var>range</var>, so would be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②②">inclusive ancestor</a> of <var>original end node</var>, and we could not reach this point. </p> </ol> <li> If <var>first partially contained child</var> is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑥⑤">Text</a></code>, <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction③①">ProcessingInstruction</a></code>, or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment③①">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⓪">node</a>: <p class="note" role="note">In this case, <var>first partially contained child</var> is <var>original start node</var>. </p> <ol> <li>Let <var>clone</var> be a <a data-link-type="dfn" href="#concept-node-clone" id="ref-for-concept-node-clone⑥">clone</a> of <var>original start node</var>. - <li>Set the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data④①">data</a> of <var>clone</var> to the result of <a data-link-type="dfn" href="#concept-cd-substring" id="ref-for-concept-cd-substring③">substringing data</a> with node <var>original start node</var>, offset <var>original start offset</var>, and count <var>original start node</var>’s <a data-link-type="dfn">length</a> minus <var>original start offset</var>. + <li>Set the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data④①">data</a> of <var>clone</var> to the result of <a data-link-type="dfn" href="#concept-cd-substring" id="ref-for-concept-cd-substring③">substringing data</a> with node <var>original start node</var>, offset <var>original start offset</var>, and count <var>original start node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⑥">length</a> minus <var>original start offset</var>. <li><a data-link-type="dfn" href="#concept-node-append" id="ref-for-concept-node-append①②">Append</a> <var>clone</var> to <var>fragment</var>. - <li><a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①⑥">Replace data</a> with node <var>original start node</var>, offset <var>original start offset</var>, count <var>original start node</var>’s <a data-link-type="dfn">length</a> minus <var>original start offset</var>, and data the empty string. + <li><a data-link-type="dfn" href="#concept-cd-replace" id="ref-for-concept-cd-replace①⑥">Replace data</a> with node <var>original start node</var>, offset <var>original start offset</var>, count <var>original start node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⑦">length</a> minus <var>original start offset</var>, and data the empty string. </ol> <li> Otherwise, if <var>first partially contained child</var> is not @@ -5270,7 +5602,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li>Let <var>subrange</var> be a new <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range③④">live range</a> whose <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start②⓪">start</a> is (<var>original start node</var>, <var>original start offset</var>) and whose <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end②⓪">end</a> is - (<var>first partially contained child</var>, <var>first partially contained child</var>’s <a data-link-type="dfn">length</a>). + (<var>first partially contained child</var>, <var>first partially contained child</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⑧">length</a>). <li> <p>Let <var>subfragment</var> be the result of <a data-link-type="dfn" href="#concept-range-extract" id="ref-for-concept-range-extract">extracting</a> <var>subrange</var>. </p> <li><a data-link-type="dfn" href="#concept-node-append" id="ref-for-concept-node-append①④">Append</a> <var>subfragment</var> to <var>clone</var>. @@ -5320,16 +5652,16 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li>Return <var>fragment</var>. </ol> <li>Let <var>common ancestor</var> be <var>original start node</var>. - <li>While <var>common ancestor</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②③">inclusive ancestor</a> of <var>original end node</var>, set <var>common ancestor</var> to its own <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑤">parent</a>. + <li>While <var>common ancestor</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②③">inclusive ancestor</a> of <var>original end node</var>, set <var>common ancestor</var> to its own <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤③">parent</a>. <li>Let <var>first partially contained child</var> be null. - <li>If <var>original start node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②④">inclusive ancestor</a> of <var>original end node</var>, set <var>first partially contained child</var> to the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥⑦">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑧">partially contained</a> in <var>range</var>. + <li>If <var>original start node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②④">inclusive ancestor</a> of <var>original end node</var>, set <var>first partially contained child</var> to the first <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑧">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑧">partially contained</a> in <var>range</var>. <li>Let <var>last partially contained child</var> be null. <li> - If <var>original end node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②⑤">inclusive ancestor</a> of <var>original start node</var>, set <var>last partially contained child</var> to the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥⑧">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑨">partially contained</a> in <var>range</var>. + If <var>original end node</var> is <em>not</em> an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②⑤">inclusive ancestor</a> of <var>original start node</var>, set <var>last partially contained child</var> to the last <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child③⑨">child</a> of <var>common ancestor</var> that is <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained⑨">partially contained</a> in <var>range</var>. <p class="note" role="note">These variable assignments do actually always make sense. - For instance, if <var>original start node</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②⑥">inclusive ancestor</a> of <var>original end node</var>, <var>original start node</var> is itself <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained①⓪">partially contained</a> in <var>range</var>, and so are all its <a data-link-type="dfn" href="#concept-tree-ancestor" id="ref-for-concept-tree-ancestor①⓪">ancestors</a> up until a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑥⑨">child</a> of <var>common ancestor</var>. <var>common ancestor</var> cannot be <var>original start node</var>, because - it has to be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②⑦">inclusive ancestor</a> of <var>original end node</var>. The other case is similar. Also, notice that the two <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦⓪">children</a> will never be equal if both are defined. </p> - <li>Let <var>contained children</var> be a list of all <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦①">children</a> of <var>common ancestor</var> that are <a data-link-type="dfn" href="#contained" id="ref-for-contained①④">contained</a> in <var>range</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑦">tree order</a>. + For instance, if <var>original start node</var> is not an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②⑥">inclusive ancestor</a> of <var>original end node</var>, <var>original start node</var> is itself <a data-link-type="dfn" href="#partially-contained" id="ref-for-partially-contained①⓪">partially contained</a> in <var>range</var>, and so are all its <a data-link-type="dfn">ancestors</a> up until a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④⓪">child</a> of <var>common ancestor</var>. <var>common ancestor</var> cannot be <var>original start node</var>, because + it has to be an <a data-link-type="dfn" href="#concept-tree-inclusive-ancestor" id="ref-for-concept-tree-inclusive-ancestor②⑦">inclusive ancestor</a> of <var>original end node</var>. The other case is similar. Also, notice that the two <a data-link-type="dfn">children</a> will never be equal if both are defined. </p> + <li>Let <var>contained children</var> be a list of all <a data-link-type="dfn">children</a> of <var>common ancestor</var> that are <a data-link-type="dfn" href="#contained" id="ref-for-contained①④">contained</a> in <var>range</var>, in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑦">tree order</a>. <li> <p>If any member of <var>contained children</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype②⑧">doctype</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑦⑤">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#hierarchyrequesterror" id="ref-for-hierarchyrequesterror①⑨">HierarchyRequestError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑧⑤">DOMException</a></code>. </p> @@ -5342,7 +5674,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <p class="note" role="note">In this case, <var>first partially contained child</var> is <var>original start node</var>. </p> <ol> <li>Let <var>clone</var> be a <a data-link-type="dfn" href="#concept-node-clone" id="ref-for-concept-node-clone①①">clone</a> of <var>original start node</var>. - <li>Set the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data④④">data</a> of <var>clone</var> to the result of <a data-link-type="dfn" href="#concept-cd-substring" id="ref-for-concept-cd-substring⑥">substringing data</a> with node <var>original start node</var>, offset <var>original start offset</var>, and count <var>original start node</var>’s <a data-link-type="dfn">length</a> minus <var>original start offset</var>. + <li>Set the <a data-link-type="dfn" href="#concept-cd-data" id="ref-for-concept-cd-data④④">data</a> of <var>clone</var> to the result of <a data-link-type="dfn" href="#concept-cd-substring" id="ref-for-concept-cd-substring⑥">substringing data</a> with node <var>original start node</var>, offset <var>original start offset</var>, and count <var>original start node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length①⑨">length</a> minus <var>original start offset</var>. <li><a data-link-type="dfn" href="#concept-node-append" id="ref-for-concept-node-append②⓪">Append</a> <var>clone</var> to <var>fragment</var>. </ol> <li> @@ -5354,7 +5686,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li>Let <var>subrange</var> be a new <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range③⑦">live range</a> whose <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start②③">start</a> is (<var>original start node</var>, <var>original start offset</var>) and whose <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end②③">end</a> is - (<var>first partially contained child</var>, <var>first partially contained child</var>’s <a data-link-type="dfn">length</a>). + (<var>first partially contained child</var>, <var>first partially contained child</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②⓪">length</a>). <li> <p>Let <var>subfragment</var> be the result of <a data-link-type="dfn" href="#concept-range-clone" id="ref-for-concept-range-clone">cloning the contents</a> of <var>subrange</var>. </p> <li><a data-link-type="dfn" href="#concept-node-append" id="ref-for-concept-node-append②②">Append</a> <var>subfragment</var> to <var>clone</var>. @@ -5392,23 +5724,23 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s result of <a data-link-type="dfn" href="#concept-range-clone" id="ref-for-concept-range-clone②">cloning the contents</a> of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑤⑨">this</a>. </p> <p>To <dfn class="dfn-paneled" data-dfn-for="live range" data-dfn-type="dfn" data-export id="concept-range-insert">insert</dfn> a <a data-link-type="dfn" href="#concept-node" id="ref-for-concept-node⑦②">node</a> <var>node</var> into a <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range③⑨">live range</a> <var>range</var>, run these steps: </p> <ol> - <li>If <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③②">start node</a> is a <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction③⑥">ProcessingInstruction</a></code> or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment③⑥">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑤">node</a>, is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑦⓪">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑥">node</a> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑥">parent</a> is null, or is <var>node</var>, + <li>If <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③②">start node</a> is a <code class="idl"><a data-link-type="idl" href="#processinginstruction" id="ref-for-processinginstruction③⑥">ProcessingInstruction</a></code> or <code class="idl"><a data-link-type="idl" href="#comment" id="ref-for-comment③⑥">Comment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑤">node</a>, is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑦⓪">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑥">node</a> whose <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤④">parent</a> is null, or is <var>node</var>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑦⑥">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#hierarchyrequesterror" id="ref-for-hierarchyrequesterror②⓪">HierarchyRequestError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑧⑥">DOMException</a></code>. <li>Let <var>referenceNode</var> be null. <li>If <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③③">start node</a> is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑦①">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑦">node</a>, set <var>referenceNode</var> to that <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑦②">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑧">node</a>. - <li>Otherwise, set <var>referenceNode</var> to the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦②">child</a> of <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③④">start node</a> whose <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑦">index</a> is <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset②①">start offset</a>, and null if - there is no such <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦③">child</a>. - <li>Let <var>parent</var> be <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③⑤">start node</a> if <var>referenceNode</var> is null, and <var>referenceNode</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑦">parent</a> otherwise. + <li>Otherwise, set <var>referenceNode</var> to the <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④①">child</a> of <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③④">start node</a> whose <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑦">index</a> is <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset②①">start offset</a>, and null if + there is no such <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④②">child</a>. + <li>Let <var>parent</var> be <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③⑤">start node</a> if <var>referenceNode</var> is null, and <var>referenceNode</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑤">parent</a> otherwise. <li><a data-link-type="dfn" href="#concept-node-ensure-pre-insertion-validity" id="ref-for-concept-node-ensure-pre-insertion-validity②">Ensure pre-insertion validity</a> of <var>node</var> into <var>parent</var> before <var>referenceNode</var>. <li>If <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-node" id="ref-for-concept-range-start-node③⑥">start node</a> is a <code class="idl"><a data-link-type="idl" href="#text" id="ref-for-text⑦③">Text</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①⓪⑨">node</a>, set <var>referenceNode</var> to the result of <a data-link-type="dfn" href="#concept-text-split" id="ref-for-concept-text-split③">splitting</a> it with offset <var>range</var>’s <a data-link-type="dfn" href="#concept-range-start-offset" id="ref-for-concept-range-start-offset②②">start offset</a>. <li>If <var>node</var> is <var>referenceNode</var>, set <var>referenceNode</var> to its <a data-link-type="dfn" href="#concept-tree-next-sibling" id="ref-for-concept-tree-next-sibling①④">next sibling</a>. <li> - <p>If <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑧">parent</a> is non-null, then <a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove①③">remove</a> <var>node</var>. </p> - <li>Let <var>newOffset</var> be <var>parent</var>’s <a data-link-type="dfn">length</a> if <var>referenceNode</var> is null, + <p>If <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑥">parent</a> is non-null, then <a data-link-type="dfn" href="#concept-node-remove" id="ref-for-concept-node-remove①③">remove</a> <var>node</var>. </p> + <li>Let <var>newOffset</var> be <var>parent</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②①">length</a> if <var>referenceNode</var> is null, and <var>referenceNode</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑧">index</a> otherwise. - <li>Increase <var>newOffset</var> by <var>node</var>’s <a data-link-type="dfn">length</a> if <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment③⑦">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①①⓪">node</a>, and one otherwise. + <li>Increase <var>newOffset</var> by <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②②">length</a> if <var>node</var> is a <code class="idl"><a data-link-type="idl" href="#documentfragment" id="ref-for-documentfragment③⑦">DocumentFragment</a></code> <a data-link-type="dfn" href="#boundary-point-node" id="ref-for-boundary-point-node①①⓪">node</a>, and one otherwise. <li><a data-link-type="dfn" href="#concept-node-pre-insert" id="ref-for-concept-node-pre-insert①②">Pre-insert</a> <var>node</var> into <var>parent</var> before <var>referenceNode</var>. <li> <p>If <var>range</var> is <a data-link-type="dfn" href="#range-collapsed" id="ref-for-range-collapsed⑤">collapsed</a>, then set <var>range</var>’s <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end②⑤">end</a> to (<var>parent</var>, <var>newOffset</var>). </p> @@ -5425,7 +5757,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li> <p>Let <var>fragment</var> be the result of <a data-link-type="dfn" href="#concept-live-range" id="ref-for-concept-live-range④⓪">extracting</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑥②">this</a>. </p> <li> - <p>If <var>newParent</var> has <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦④">children</a>, then <a data-link-type="dfn" href="#concept-node-replace-all" id="ref-for-concept-node-replace-all②">replace all</a> with null + <p>If <var>newParent</var> has <a data-link-type="dfn">children</a>, then <a data-link-type="dfn" href="#concept-node-replace-all" id="ref-for-concept-node-replace-all②">replace all</a> with null within <var>newParent</var>. </p> <li> <p><a data-link-type="dfn" href="#concept-range-insert" id="ref-for-concept-range-insert①">Insert</a> <var>newParent</var> into <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑥③">this</a>. </p> @@ -5451,7 +5783,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li>If <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root④④">root</a> is different from <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑥⑥">this</a>’s <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑦">root</a>, return false. <li>If <var>node</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype③⓪">doctype</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑦⑨">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror⑨">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑧⑨">DOMException</a></code>. - <li>If <var>offset</var> is greater than <var>node</var>’s <a data-link-type="dfn">length</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑧⓪">throw</a> an + <li>If <var>offset</var> is greater than <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②③">length</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑧⓪">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#indexsizeerror" id="ref-for-indexsizeerror④">IndexSizeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑨⓪">DOMException</a></code>. <li>If (<var>node</var>, <var>offset</var>) is <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before⑦">before</a> <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start②⑥">start</a> or <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after⑦">after</a> <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end②⑦">end</a>, return false. <li>Return true. @@ -5461,7 +5793,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <li>If <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root④⑤">root</a> is different from <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑥⑦">this</a>’s <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑧">root</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑧①">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#wrongdocumenterror" id="ref-for-wrongdocumenterror①">WrongDocumentError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑨①">DOMException</a></code>. <li>If <var>node</var> is a <a data-link-type="dfn" href="#concept-doctype" id="ref-for-concept-doctype③①">doctype</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑧②">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#invalidnodetypeerror" id="ref-for-invalidnodetypeerror①⓪">InvalidNodeTypeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑨②">DOMException</a></code>. - <li>If <var>offset</var> is greater than <var>node</var>’s <a data-link-type="dfn">length</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑧③">throw</a> an + <li>If <var>offset</var> is greater than <var>node</var>’s <a data-link-type="dfn" href="#concept-node-length" id="ref-for-concept-node-length②④">length</a>, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw⑧③">throw</a> an "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#indexsizeerror" id="ref-for-indexsizeerror⑤">IndexSizeError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑨③">DOMException</a></code>. <li>If (<var>node</var>, <var>offset</var>) is <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before⑧">before</a> <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start②⑦">start</a>, return −1. <li>If (<var>node</var>, <var>offset</var>) is <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after⑧">after</a> <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end②⑧">end</a>, return 1. @@ -5471,7 +5803,7 @@ <h3 class="heading settled" data-level="5.5" id="interface-range"><span class="s <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Range" data-dfn-type="method" data-export id="dom-range-intersectsnode"><code>intersectsNode(<var>node</var>)</code></dfn> method steps are: </p> <ol> <li>If <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-root" id="ref-for-concept-tree-root④⑥">root</a> is different from <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑥⑧">this</a>’s <a data-link-type="dfn" href="#concept-range-root" id="ref-for-concept-range-root⑨">root</a>, return false. - <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑨">parent</a>. + <li>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑦">parent</a>. <li>If <var>parent</var> is null, return true. <li>Let <var>offset</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-index" id="ref-for-concept-tree-index①⑨">index</a>. <li>If (<var>parent</var>, <var>offset</var>) is <a data-link-type="dfn" href="#concept-range-bp-before" id="ref-for-concept-range-bp-before⑨">before</a> <a data-link-type="dfn" href="#concept-range-end" id="ref-for-concept-range-end②⑨">end</a> and (<var>parent</var>, <var>offset</var> plus 1) is <a data-link-type="dfn" href="#concept-range-bp-after" id="ref-for-concept-range-bp-after⑨">after</a> <a data-link-type="dfn" href="#concept-range-start" id="ref-for-concept-range-start②⑧">start</a>, return true. @@ -5566,7 +5898,7 @@ <h3 class="heading settled" data-level="6.1" id="interface-nodeiterator"><span c <p class="note" role="note">Steps are not terminated here. </p> </ol> <li> - <p>Set <var>nodeIterator</var>’s <a data-link-type="dfn" href="#nodeiterator-reference" id="ref-for-nodeiterator-reference③">reference</a> to <var>toBeRemovedNode</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥⓪">parent</a>, if <var>toBeRemovedNode</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling⑧">previous sibling</a> is null, and to the <a data-link-type="dfn" href="#concept-tree-inclusive-descendant" id="ref-for-concept-tree-inclusive-descendant⑧">inclusive descendant</a> of <var>toBeRemovedNode</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling⑨">previous sibling</a> that appears last in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑨">tree order</a> otherwise. </p> + <p>Set <var>nodeIterator</var>’s <a data-link-type="dfn" href="#nodeiterator-reference" id="ref-for-nodeiterator-reference③">reference</a> to <var>toBeRemovedNode</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑧">parent</a>, if <var>toBeRemovedNode</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling⑧">previous sibling</a> is null, and to the <a data-link-type="dfn" href="#concept-tree-inclusive-descendant" id="ref-for-concept-tree-inclusive-descendant⑧">inclusive descendant</a> of <var>toBeRemovedNode</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling⑨">previous sibling</a> that appears last in <a data-link-type="dfn" href="#concept-tree-order" id="ref-for-concept-tree-order②⑨">tree order</a> otherwise. </p> </ol> <hr> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="NodeIterator" data-dfn-type="attribute" data-export id="dom-nodeiterator-root"><code>root</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑦⑧">this</a>’s <a data-link-type="dfn" href="#concept-traversal-root" id="ref-for-concept-traversal-root⑦">root</a>. </p> @@ -5649,7 +5981,7 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla <p>While <var>node</var> is non-null and is not <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑨①">this</a>’s <a data-link-type="dfn" href="#concept-traversal-root" id="ref-for-concept-traversal-root①⓪">root</a>: </p> <ol> <li> - <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥①">parent</a>. </p> + <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑤⑨">parent</a>. </p> <li> <p>If <var>node</var> is non-null and <a data-link-type="dfn" href="#concept-node-filter" id="ref-for-concept-node-filter①">filtering</a> <var>node</var> within <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑨②">this</a> returns <code class="idl"><a data-link-type="idl" href="#dom-nodefilter-filter_accept" id="ref-for-dom-nodefilter-filter_accept②">FILTER_ACCEPT</a></code>, then set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this②⑨③">this</a>’s <a data-link-type="dfn" href="#treewalker-current" id="ref-for-treewalker-current④">current</a> to <var>node</var> and return <var>node</var>. </p> </ol> @@ -5686,7 +6018,7 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla <li> <p>If <var>sibling</var> is non-null, then set <var>node</var> to <var>sibling</var> and <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#iteration-break" id="ref-for-iteration-break②">break</a>. </p> <li> - <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥②">parent</a>. </p> + <p>Let <var>parent</var> be <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥⓪">parent</a>. </p> <li> <p>If <var>parent</var> is null, <var>walker</var>’s <a data-link-type="dfn" href="#concept-traversal-root" id="ref-for-concept-traversal-root①①">root</a>, or <var>walker</var>’s <a data-link-type="dfn" href="#treewalker-current" id="ref-for-treewalker-current⑦">current</a>, then return null. </p> <li> @@ -5727,7 +6059,7 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla next, and <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling①②">previous sibling</a> if <var>type</var> is previous. </p> </ol> <li> - <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥③">parent</a>. </p> + <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥①">parent</a>. </p> <li> <p>If <var>node</var> is null or <var>walker</var>’s <a data-link-type="dfn" href="#concept-traversal-root" id="ref-for-concept-traversal-root①③">root</a>, then return null. </p> @@ -5754,7 +6086,7 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla <li> <p>Let <var>result</var> be the result of <a data-link-type="dfn" href="#concept-node-filter" id="ref-for-concept-node-filter⑤">filtering</a> <var>node</var> within <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪⓪">this</a>. </p> <li> - <p>While <var>result</var> is not <code class="idl"><a data-link-type="idl" href="#dom-nodefilter-filter_reject" id="ref-for-dom-nodefilter-filter_reject①">FILTER_REJECT</a></code> and <var>node</var> has a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦⑤">child</a>: </p> + <p>While <var>result</var> is not <code class="idl"><a data-link-type="idl" href="#dom-nodefilter-filter_reject" id="ref-for-dom-nodefilter-filter_reject①">FILTER_REJECT</a></code> and <var>node</var> has a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④③">child</a>: </p> <ol> <li> <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-last-child" id="ref-for-concept-tree-last-child⑦">last child</a>. </p> @@ -5767,9 +6099,9 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla <p>Set <var>sibling</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-previous-sibling" id="ref-for-concept-tree-previous-sibling①④">previous sibling</a>. </p> </ol> <li> - <p>If <var>node</var> is <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪③">this</a>’s <a data-link-type="dfn" href="#concept-traversal-root" id="ref-for-concept-traversal-root①⑤">root</a> or <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥④">parent</a> is null, then return null. </p> + <p>If <var>node</var> is <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪③">this</a>’s <a data-link-type="dfn" href="#concept-traversal-root" id="ref-for-concept-traversal-root①⑤">root</a> or <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥②">parent</a> is null, then return null. </p> <li> - <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥⑤">parent</a>. </p> + <p>Set <var>node</var> to <var>node</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥③">parent</a>. </p> <li> <p>If the return value of <a data-link-type="dfn" href="#concept-node-filter" id="ref-for-concept-node-filter⑦">filtering</a> <var>node</var> within <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪④">this</a> is <code class="idl"><a data-link-type="idl" href="#dom-nodefilter-filter_accept" id="ref-for-dom-nodefilter-filter_accept⑦">FILTER_ACCEPT</a></code>, then set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⓪⑤">this</a>’s <a data-link-type="dfn" href="#treewalker-current" id="ref-for-treewalker-current①②">current</a> to <var>node</var> and return <var>node</var>. </p> </ol> @@ -5786,7 +6118,7 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla <p>While true: </p> <ol> <li> - <p>While <var>result</var> is not <code class="idl"><a data-link-type="idl" href="#dom-nodefilter-filter_reject" id="ref-for-dom-nodefilter-filter_reject②">FILTER_REJECT</a></code> and <var>node</var> has a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child⑦⑥">child</a>: </p> + <p>While <var>result</var> is not <code class="idl"><a data-link-type="idl" href="#dom-nodefilter-filter_reject" id="ref-for-dom-nodefilter-filter_reject②">FILTER_REJECT</a></code> and <var>node</var> has a <a data-link-type="dfn" href="#concept-tree-child" id="ref-for-concept-tree-child④④">child</a>: </p> <ol> <li> <p>Set <var>node</var> to its <a data-link-type="dfn" href="#concept-tree-first-child" id="ref-for-concept-tree-first-child⑨">first child</a>. </p> @@ -5809,7 +6141,7 @@ <h3 class="heading settled" data-level="6.2" id="interface-treewalker"><span cla <li> <p>If <var>sibling</var> is non-null, then set <var>node</var> to <var>sibling</var> and <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#iteration-break" id="ref-for-iteration-break③">break</a>. </p> <li> - <p>Set <var>temporary</var> to <var>temporary</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥⑥">parent</a>. </p> + <p>Set <var>temporary</var> to <var>temporary</var>’s <a data-link-type="dfn" href="#concept-tree-parent" id="ref-for-concept-tree-parent⑥④">parent</a>. </p> </ol> <li> <p>Set <var>result</var> to the result of <a data-link-type="dfn" href="#concept-node-filter" id="ref-for-concept-node-filter⑨">filtering</a> <var>node</var> within <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③①⓪">this</a>. </p> @@ -7604,11 +7936,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="4bd7a84e">upgrade an element</span> <li><span class="dfn-paneled" id="15c9cf79">valid custom element name</span> </ul> - <li> - <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="7cf8cfc4">code units</span> - </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: <ul> @@ -7746,7 +8073,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-console">[CONSOLE] <dd>Dominic Farolino; Robert Kowalski; Terin Stock. <a href="https://console.spec.whatwg.org/"><cite>Console Standard</cite></a>. Living Standard. URL: <a href="https://console.spec.whatwg.org/">https://console.spec.whatwg.org/</a> <dt id="biblio-device-orientation">[DEVICE-ORIENTATION] - <dd>Rich Tibbett; et al. <a href="https://w3c.github.io/deviceorientation/"><cite>DeviceOrientation Event Specification</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> + <dd>Reilly Grant; Raphael Kubo da Costa; Marcos Caceres. <a href="https://w3c.github.io/deviceorientation/"><cite>Device Orientation and Motion</cite></a>. URL: <a href="https://w3c.github.io/deviceorientation/">https://w3c.github.io/deviceorientation/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-ecmascript">[ECMASCRIPT] @@ -7757,8 +8084,6 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Yoav Weiss. <a href="https://w3c.github.io/hr-time/"><cite>High Resolution Time</cite></a>. URL: <a href="https://w3c.github.io/hr-time/">https://w3c.github.io/hr-time/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> - <dt id="biblio-i18n-glossary">[I18N-GLOSSARY] - <dd>Richard Ishida; Addison Phillips. <a href="https://w3c.github.io/i18n-glossary/"><cite>Internationalization Glossary</cite></a>. URL: <a href="https://w3c.github.io/i18n-glossary/">https://w3c.github.io/i18n-glossary/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-selectors4">[SELECTORS4] @@ -8488,25 +8813,25 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-abortsignal-abort①"> + <details class="mdn-anno unpositioned" data-anno-for="eventdef-abortsignal-abort"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort" title="The static AbortSignal.abort() method returns an AbortSignal that is already set as aborted (and which does not trigger an abort event).">AbortSignal/abort</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event" title="The abort event of the AbortSignal is fired when the associated request is aborted, i.e. using AbortController.abort().">AbortSignal/abort_event</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>93+</span></span> + <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>93+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> <hr> - <span class="nodejs yes"><span>Node.js</span><span>15.12.0+</span></span> + <span class="nodejs yes"><span>Node.js</span><span>15.0.0+</span></span> </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="eventdef-abortsignal-abort"> + <details class="mdn-anno unpositioned" data-anno-for="abortsignal-onabort"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event" title="The abort event of the AbortSignal is fired when the associated request is aborted, i.e. using AbortController.abort().">AbortSignal/abort_event</a></p> @@ -8524,21 +8849,21 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="abortsignal-onabort"> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-abortsignal-abort①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event" title="The abort event of the AbortSignal is fired when the associated request is aborted, i.e. using AbortController.abort().">AbortSignal/abort_event</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_static" title="The AbortSignal.abort() static method returns an AbortSignal that is already set as aborted (and which does not trigger an abort event).">AbortSignal/abort_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <span class="firefox yes"><span>Firefox</span><span>88+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>93+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>93+</span></span> <hr> - <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> <hr> - <span class="nodejs yes"><span>Node.js</span><span>15.0.0+</span></span> + <span class="nodejs yes"><span>Node.js</span><span>15.12.0+</span></span> </div> </div> </details> @@ -9115,7 +9440,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/nextElementSibling" title="The Element.nextElementSibling read-only property returns the element immediately following the specified one in its parent&apos;s children list, or null if the specified element is the last one in the list.">Element/nextElementSibling</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9144,7 +9469,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/previousElementSibling" title="The Element.previousElementSibling read-only property returns the Element immediately prior to the specified one in its parent&apos;s children list, or null if the specified element is the first one in the list.">Element/previousElementSibling</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9714,7 +10039,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/childElementCount" title="The Document.childElementCount read-only property returns the number of child elements of a DocumentFragment.">DocumentFragment/childElementCount</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/childElementCount" title="The DocumentFragment.childElementCount read-only property returns the number of child elements of a DocumentFragment.">DocumentFragment/childElementCount</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>25+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="chrome yes"><span>Chrome</span><span>29+</span></span> @@ -9730,7 +10055,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/childElementCount" title="The Element.childElementCount read-only property returns the number of child elements of this element.">Element/childElementCount</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -10186,7 +10511,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/firstElementChild" title="The Element.firstElementChild read-only property returns an element&apos;s first child Element, or null if there are no child elements.">Element/firstElementChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -10199,7 +10524,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-nonelementparentnode-getelementbyid②"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById" title="The Document method getElementById() returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they&apos;re a useful way to get access to a specific element quickly.">Document/getElementById</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById" title="The getElementById() method of the Document interface returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they&apos;re a useful way to get access to a specific element quickly.">Document/getElementById</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -10324,7 +10649,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/lastElementChild" title="The Element.lastElementChild read-only property returns an element&apos;s last child Element, or null if there are no child elements.">Element/lastElementChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -10395,7 +10720,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelector" title="The DocumentFragment.querySelector() method returns the first element, or null if no matches are found, within the DocumentFragment (using depth-first pre-order traversal of the document&apos;s nodes) that matches the specified group of selectors.">DocumentFragment/querySelector</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -10424,7 +10749,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelectorAll" title="The DocumentFragment.querySelectorAll() method returns a NodeList of elements within the DocumentFragment (using depth-first pre-order traversal of the document&apos;s nodes) that matches the specified group of selectors.">DocumentFragment/querySelectorAll</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>10+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -10534,6 +10859,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-nonelementparentnode-getelementbyid"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/getElementById" title="The getElementById() method of the DocumentFragment returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they&apos;re a useful way to get access to a specific element quickly.">DocumentFragment/getElementById</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>28+</span></span><span class="safari yes"><span>Safari</span><span>9+</span></span><span class="chrome yes"><span>Chrome</span><span>36+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="interface-documentfragment"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -10550,6 +10891,54 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-documenttype-name"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentType/name" title="The read-only name property of the DocumentType returns the type of the document.">DocumentType/name</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-documenttype-publicid"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentType/publicId" title="The read-only publicId property of the DocumentType returns a formal identifier of the document.">DocumentType/publicId</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-documenttype-systemid"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DocumentType/systemId" title="The read-only systemId property of the DocumentType returns the URL of the associated DTD.">DocumentType/systemId</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>9+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="interface-documenttype"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -11369,7 +11758,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-event-stoppropagation①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Event/stopPropagation" title="The stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases. It does not, however, prevent any default behaviors from occurring; for instance, clicks on links are still processed. If you want to stop those behaviors, see the preventDefault() method. It also does not prevent immediate propagation to other event-handlers. If you want to stop those, see stopImmediatePropagation().">Event/stopPropagation</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Event/stopPropagation" title="The stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases. It does not, however, prevent any default behaviors from occurring; for instance, clicks on links are still processed. If you want to stop those behaviors, see the preventDefault() method. It also does not prevent propagation to other event-handlers of the current element. If you want to stop those, see stopImmediatePropagation().">Event/stopPropagation</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -11690,10 +12079,154 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-addednodes②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/addedNodes" title="The MutationRecord read-only property addedNodes is a NodeList of nodes added to a target node by a mutation observed with a MutationObserver.">MutationRecord/addedNodes</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-attributename②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/attributeName" title="The MutationRecord read-only property attributeName contains the name of a changed attribute belonging to a node that is observed by a MutationObserver.">MutationRecord/attributeName</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-attributenamespace②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/attributeNamespace" title="The MutationRecord read-only property attributeNamespace is the namespace of the mutated attribute in the MutationRecord observed by a MutationObserver.">MutationRecord/attributeNamespace</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-nextsibling②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/nextSibling" title="The MutationRecord read-only property nextSibling is the next sibling of an added or removed child node of the target of a MutationObserver.">MutationRecord/nextSibling</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-oldvalue②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/oldValue" title="The MutationRecord read-only property oldValue contains the character data or attribute value of an observed node before it was changed.">MutationRecord/oldValue</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-previoussibling②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/previousSibling" title="The MutationRecord read-only property previousSibling is the previous sibling of an added or removed child node of the target of a MutationObserver.">MutationRecord/previousSibling</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-removednodes②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/removedNodes" title="The MutationRecord read-only property removedNodes is a NodeList of nodes removed from a target node by a mutation observed with a MutationObserver.">MutationRecord/removedNodes</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-target②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/target" title="The MutationRecord read-only property target is the target (i.e. the mutated/changed node) of a mutation observed with a MutationObserver.">MutationRecord/target</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-mutationrecord-type②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord/type" title="The MutationRecord read-only property type is the type of the MutationRecord observed by a MutationObserver.">MutationRecord/type</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>11</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="interface-mutationrecord"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord" title="A MutationRecord represents an individual DOM mutation. It is the object that is inside the array passed to MutationObserver&apos;s callback.">MutationRecord</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord" title="The MutationRecord is a read-only interface that represents an individual DOM mutation observed by a MutationObserver. It is the object inside the array passed to the callback of a MutationObserver.">MutationRecord</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>14+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>16+</span></span> @@ -11853,7 +12386,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-node-appendchild"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild" title="The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, appendChild() moves it from its current position to the new position.">Node/appendChild</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild" title="The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node.">Node/appendChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -11920,7 +12453,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition" title="The compareDocumentPosition() method of the Node interface reports the position of its argument node relative to the node on which it is called.">Node/compareDocumentPosition</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -12013,7 +12546,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-node-isconnected①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected" title="The read-only isConnected property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to the context object, for example the Document object in the case of the normal DOM, or the ShadowRoot in the case of a shadow DOM.">Node/isConnected</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected" title="The read-only isConnected property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object.">Node/isConnected</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>49+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> @@ -12077,7 +12610,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-node-lastchild①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/lastChild" title="The read-only lastChild property of the Node interface returns the last child of the node. If its parent is an element, then the child is generally an element node, a text node, or a comment node. It returns null if there are no child nodes.">Node/lastChild</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/lastChild" title="The read-only lastChild property of the Node interface returns the last child of the node, or null if there are no child nodes.">Node/lastChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -12285,7 +12818,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-node-replacechild"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/replaceChild" title="The replaceChild() method of the Node element replaces a child node within the given (parent) node.">Node/replaceChild</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/replaceChild" title="The replaceChild() method of the Node interface replaces a child node within the given (parent) node.">Node/replaceChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1.1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -12333,7 +12866,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-nodeiterator-filter"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/filter" title="The NodeIterator.filter read-only method returns a NodeFilter object, that is an object implement an acceptNode(node) method, used to screen nodes.">NodeIterator/filter</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/filter" title="The NodeIterator.filter read-only property returns a NodeFilter object, that is an object which implements an acceptNode(node) method, used to screen nodes.">NodeIterator/filter</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -12397,7 +12930,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-nodeiterator-referencenode"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/referenceNode" title="The NodeIterator.referenceNode read-only returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.">NodeIterator/referenceNode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator/referenceNode" title="The NodeIterator.referenceNode read-only property returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.">NodeIterator/referenceNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -12445,7 +12978,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="interface-nodeiterator"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator" title="The NodeIterator interface represents an iterator over the members of a list of the nodes in a subtree of the DOM. The nodes will be returned in document order.">NodeIterator</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator" title="The NodeIterator interface represents an iterator to traverse nodes of a DOM subtree in document order.">NodeIterator</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -12458,26 +12991,52 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-nodelist-item①"> + <details class="mdn-anno unpositioned" data-anno-for="interface-nodelist"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList/item" title="Returns a node from a NodeList by index. This method doesn&apos;t throw exceptions as long as you provide arguments. A value of null is returned if the index is out of range, and a TypeError is thrown if no argument is provided.">NodeList/item</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach" title="The forEach() method of the NodeList interface calls the callback given in parameter once for each value pair in the list, in insertion order.">NodeList/forEach</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>50+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/@@iterator" title="The [@@iterator]() method of Array instances implements the iterable protocol and allows arrays to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an array iterator object that yields the value of each index in the array.">Reference/Global_Objects/Array/@@iterator</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>36+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList" title="NodeList objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll().">NodeList</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>8+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>5+</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-nodelist-length①"> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-nodelist-item①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList/length" title="The NodeList.length property returns the number of items in a NodeList.">NodeList/length</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList/item" title="Returns a node from a NodeList by index. This method doesn&apos;t throw exceptions as long as you provide arguments. A value of null is returned if the index is out of range, and a TypeError is thrown if no argument is provided.">NodeList/item</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -12490,19 +13049,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> - <details class="mdn-anno unpositioned" data-anno-for="interface-nodelist"> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-nodelist-length①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList" title="NodeList objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll().">NodeList</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NodeList/length" title="The NodeList.length property returns the number of items in a NodeList.">NodeList/length</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>1+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> <hr> - <span class="opera yes"><span>Opera</span><span>8+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>5+</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>10.1+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> </details> @@ -12969,6 +13528,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-shadowroot-slotassignment"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/slotAssignment" title="The read-only slotAssignment property of the ShadowRoot interface returns the slot assignment mode for the shadow DOM tree. Nodes are either automatically assigned (named) or manually assigned (manual). The value of this property defined using the slotAssignment option when calling Element.attachShadow().">ShadowRoot/slotAssignment</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>92+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>86+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>86+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="interface-shadowroot"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -13055,7 +13630,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Text/wholeText" title="The read-only wholeText property of the Text interface returns the full text of all Text nodes logically adjacent to the node. The text is concatenated in document order. This allows specifying any text node and obtaining all adjacent text as a single string.">Text/wholeText</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -13084,7 +13659,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-treewalker-currentnode①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/currentNode" title="The TreeWalker.currentNode property represents the Node on which the TreeWalker is currently pointing at.">TreeWalker/currentNode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/currentNode" title="The TreeWalker.currentNode property represents the Node which the TreeWalker is currently pointing at.">TreeWalker/currentNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13116,7 +13691,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-firstchild"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/firstChild" title="The TreeWalker.firstChild() method moves the current Node to the first visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed.">TreeWalker/firstChild</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/firstChild" title="The TreeWalker.firstChild() method moves the current Node to the first visible child of the current node, and returns the found child. If no such child exists, it returns null and the current node is not changed.">TreeWalker/firstChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13132,7 +13707,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-lastchild"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/lastChild" title="The TreeWalker.lastChild() method moves the current Node to the last visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed.">TreeWalker/lastChild</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/lastChild" title="The TreeWalker.lastChild() method moves the current Node to the last visible child of the current node, and returns the found child. If no such child exists, it returns null and the current node is not changed.">TreeWalker/lastChild</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13148,7 +13723,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-nextnode"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextNode" title="The TreeWalker.nextNode() method moves the current Node to the next visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists, returns null and the current node is not changed.">TreeWalker/nextNode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextNode" title="The TreeWalker.nextNode() method moves the current Node to the next visible node in the document order, and returns the found node. If no such node exists, it returns null and the current node is not changed.">TreeWalker/nextNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13164,7 +13739,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-nextsibling"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextSibling" title="The TreeWalker.nextSibling() method moves the current Node to its next sibling, if any, and returns the found sibling. If there is no such node, return null and the current node is not changed.">TreeWalker/nextSibling</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/nextSibling" title="The TreeWalker.nextSibling() method moves the current Node to its next sibling, if any, and returns the found sibling. If there is no such node, it returns null and the current node is not changed.">TreeWalker/nextSibling</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13180,7 +13755,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-parentnode"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/parentNode" title="The TreeWalker.parentNode() method moves the current Node to the first visible ancestor node in the document order, and returns the found node. If no such node exists, or if it is above the TreeWalker&apos;s root node, returns null and the current node is not changed.">TreeWalker/parentNode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/parentNode" title="The TreeWalker.parentNode() method moves the current Node to the first visible ancestor node in the document order, and returns the found node. If no such node exists, or if it is above the TreeWalker&apos;s root node, it returns null and the current node is not changed.">TreeWalker/parentNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13196,7 +13771,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-previousnode"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousNode" title="The TreeWalker.previousNode() method moves the current Node to the previous visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists,or if it is before that the root node defined at the object construction, returns null and the current node is not changed.">TreeWalker/previousNode</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousNode" title="The TreeWalker.previousNode() method moves the current Node to the previous visible node in the document order, and returns the found node. If no such node exists, or if it is before that the root node defined at the object construction, it returns null and the current node is not changed.">TreeWalker/previousNode</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13212,7 +13787,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-treewalker-previoussibling"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousSibling" title="The TreeWalker.previousSibling() method moves the current Node to its previous sibling, if any, and returns the found sibling. If there is no such node, return null and the current node is not changed.">TreeWalker/previousSibling</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/previousSibling" title="The TreeWalker.previousSibling() method moves the current Node to its previous sibling, if any, and returns the found sibling. If there is no such node, it returns null and the current node is not changed.">TreeWalker/previousSibling</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> @@ -13289,6 +13864,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="dom-xpathevaluator-xpathevaluator"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/XPathEvaluator" title="The XPathEvaluator() constructor creates a new XPathEvaluator.">XPathEvaluator/XPathEvaluator</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>1+</span></span><span class="safari yes"><span>Safari</span><span>3+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="interface-xpathevaluator"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -13788,7 +14379,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "56ad2aed": {"dfnID":"56ad2aed","dfnText":"insert","external":true,"refSections":[{"refs":[{"id":"ref-for-list-insert"}],"title":"4.2.3. Mutation algorithms"}],"url":"https://infra.spec.whatwg.org/#list-insert"}, "5832b143": {"dfnID":"5832b143","dfnText":"name","external":true,"refSections":[{"refs":[{"id":"ref-for-name"}],"title":"4.5. Interface Document"}],"url":"https://encoding.spec.whatwg.org/#name"}, "583654a9": {"dfnID":"583654a9","dfnText":"InvalidCharacterError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidcharactererror"}],"title":"1.4. Namespaces"},{"refs":[{"id":"ref-for-invalidcharactererror\u2460"},{"id":"ref-for-invalidcharactererror\u2461"},{"id":"ref-for-invalidcharactererror\u2462"},{"id":"ref-for-invalidcharactererror\u2463"},{"id":"ref-for-invalidcharactererror\u2464"},{"id":"ref-for-invalidcharactererror\u2465"},{"id":"ref-for-invalidcharactererror\u2466"},{"id":"ref-for-invalidcharactererror\u2467"},{"id":"ref-for-invalidcharactererror\u2468"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-invalidcharactererror\u2460\u24ea"}],"title":"4.5.1. Interface DOMImplementation"},{"refs":[{"id":"ref-for-invalidcharactererror\u2460\u2460"},{"id":"ref-for-invalidcharactererror\u2460\u2461"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-invalidcharactererror\u2460\u2462"},{"id":"ref-for-invalidcharactererror\u2460\u2463"},{"id":"ref-for-invalidcharactererror\u2460\u2464"},{"id":"ref-for-invalidcharactererror\u2460\u2465"},{"id":"ref-for-invalidcharactererror\u2460\u2466"},{"id":"ref-for-invalidcharactererror\u2460\u2467"},{"id":"ref-for-invalidcharactererror\u2460\u2468"},{"id":"ref-for-invalidcharactererror\u2461\u24ea"}],"title":"7.1. Interface DOMTokenList"}],"url":"https://webidl.spec.whatwg.org/#invalidcharactererror"}, -"59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"},{"id":"ref-for-code-unit\u2460"},{"id":"ref-for-code-unit\u2461"}],"title":"4.10. Interface CharacterData"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, +"59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"},{"id":"ref-for-code-unit\u2460"},{"id":"ref-for-code-unit\u2461"},{"id":"ref-for-code-unit\u2462"},{"id":"ref-for-code-unit\u2463"},{"id":"ref-for-code-unit\u2464"},{"id":"ref-for-code-unit\u2465"},{"id":"ref-for-code-unit\u2466"}],"title":"4.10. Interface CharacterData"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, "5991ccfb": {"dfnID":"5991ccfb","dfnText":"relevant realm","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-relevant-realm"}],"title":"2.10. Firing events"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-realm"}, "5d7209e9": {"dfnID":"5d7209e9","dfnText":"Window","external":true,"refSections":[{"refs":[{"id":"ref-for-window"},{"id":"ref-for-window\u2460"},{"id":"ref-for-window\u2461"}],"title":"2.3. Legacy extensions to the Window interface"},{"refs":[{"id":"ref-for-window\u2462"},{"id":"ref-for-window\u2463"},{"id":"ref-for-window\u2464"},{"id":"ref-for-window\u2465"}],"title":"2.9. Dispatching events"}],"url":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#window"}, "5e0d3b02": {"dfnID":"5e0d3b02","dfnText":"match a selector against an element","external":true,"refSections":[{"refs":[{"id":"ref-for-match-a-selector-against-an-element"},{"id":"ref-for-match-a-selector-against-an-element\u2460"}],"title":"4.9. Interface Element"}],"url":"https://drafts.csswg.org/selectors-4/#match-a-selector-against-an-element"}, @@ -13813,7 +14404,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "797018a7": {"dfnID":"797018a7","dfnText":"InvalidStateError","external":true,"refSections":[{"refs":[{"id":"ref-for-invalidstateerror"}],"title":"2.7. Interface EventTarget"},{"refs":[{"id":"ref-for-invalidstateerror\u2460"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-invalidstateerror\u2461"}],"title":"6. Traversal"}],"url":"https://webidl.spec.whatwg.org/#invalidstateerror"}, "79e2abd0": {"dfnID":"79e2abd0","dfnText":"look up a custom element definition","external":true,"refSections":[{"refs":[{"id":"ref-for-look-up-a-custom-element-definition"},{"id":"ref-for-look-up-a-custom-element-definition\u2460"}],"title":"4.9. Interface Element"}],"url":"https://html.spec.whatwg.org/multipage/custom-elements.html#look-up-a-custom-element-definition"}, "7b0d918d": {"dfnID":"7b0d918d","dfnText":"break","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-break"}],"title":"2.2. Interface Event"},{"refs":[{"id":"ref-for-iteration-break\u2460"}],"title":"6.1. Interface NodeIterator"},{"refs":[{"id":"ref-for-iteration-break\u2461"},{"id":"ref-for-iteration-break\u2462"}],"title":"6.2. Interface TreeWalker"}],"url":"https://infra.spec.whatwg.org/#iteration-break"}, -"7cf8cfc4": {"dfnID":"7cf8cfc4","dfnText":"code units","external":true,"refSections":[{"refs":[{"id":"ref-for-def_code_unit"},{"id":"ref-for-def_code_unit\u2460"},{"id":"ref-for-def_code_unit\u2461"},{"id":"ref-for-def_code_unit\u2462"},{"id":"ref-for-def_code_unit\u2463"}],"title":"4.10. Interface CharacterData"}],"url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2460"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-ascii-case-insensitive\u2461"}],"title":"4.9. Interface Element"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "85a289c7": {"dfnID":"85a289c7","dfnText":"svg namespace","external":true,"refSections":[{"refs":[{"id":"ref-for-svg-namespace"}],"title":"4.5.1. Interface DOMImplementation"}],"url":"https://infra.spec.whatwg.org/#svg-namespace"}, "8611edf0": {"dfnID":"8611edf0","dfnText":"InUseAttributeError","external":true,"refSections":[{"refs":[{"id":"ref-for-inuseattributeerror"}],"title":"4.9. Interface Element"}],"url":"https://webidl.spec.whatwg.org/#inuseattributeerror"}, @@ -13999,7 +14589,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "concept-node-filter": {"dfnID":"concept-node-filter","dfnText":"filter","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-filter"}],"title":"6.1. Interface NodeIterator"},{"refs":[{"id":"ref-for-concept-node-filter\u2460"},{"id":"ref-for-concept-node-filter\u2461"},{"id":"ref-for-concept-node-filter\u2462"},{"id":"ref-for-concept-node-filter\u2463"},{"id":"ref-for-concept-node-filter\u2464"},{"id":"ref-for-concept-node-filter\u2465"},{"id":"ref-for-concept-node-filter\u2466"},{"id":"ref-for-concept-node-filter\u2467"},{"id":"ref-for-concept-node-filter\u2468"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-node-filter"}, "concept-node-insert": {"dfnID":"concept-node-insert","dfnText":"insert","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-insert"},{"id":"ref-for-concept-node-insert\u2460"},{"id":"ref-for-concept-node-insert\u2461"},{"id":"ref-for-concept-node-insert\u2462"},{"id":"ref-for-concept-node-insert\u2463"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-node-insert\u2464"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-node-insert\u2465"}],"title":"5.1. Introduction to \"DOM Ranges\""},{"refs":[{"id":"ref-for-concept-node-insert\u2466"}],"title":"5.5. Interface Range"}],"url":"#concept-node-insert"}, "concept-node-insert-ext": {"dfnID":"concept-node-insert-ext","dfnText":"insertion steps","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-insert-ext"}],"title":"4.2.3. Mutation algorithms"}],"url":"#concept-node-insert-ext"}, -"concept-node-length": {"dfnID":"concept-node-length","dfnText":"length","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-length"},{"id":"ref-for-concept-node-length\u2460"},{"id":"ref-for-concept-node-length\u2461"},{"id":"ref-for-concept-node-length\u2462"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-node-length\u2463"},{"id":"ref-for-concept-node-length\u2464"},{"id":"ref-for-concept-node-length\u2465"},{"id":"ref-for-concept-node-length\u2466"},{"id":"ref-for-concept-node-length\u2467"}],"title":"4.10. Interface CharacterData"},{"refs":[{"id":"ref-for-concept-node-length\u2468"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-node-length\u2460\u24ea"}],"title":"5.2. Boundary points"}],"url":"#concept-node-length"}, +"concept-node-length": {"dfnID":"concept-node-length","dfnText":"length","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-length"}],"title":"4.2. Node tree"},{"refs":[{"id":"ref-for-concept-node-length\u2460"},{"id":"ref-for-concept-node-length\u2461"},{"id":"ref-for-concept-node-length\u2462"},{"id":"ref-for-concept-node-length\u2463"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-node-length\u2464"},{"id":"ref-for-concept-node-length\u2465"},{"id":"ref-for-concept-node-length\u2466"},{"id":"ref-for-concept-node-length\u2467"},{"id":"ref-for-concept-node-length\u2468"}],"title":"4.10. Interface CharacterData"},{"refs":[{"id":"ref-for-concept-node-length\u2460\u24ea"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-node-length\u2460\u2460"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-node-length\u2460\u2461"},{"id":"ref-for-concept-node-length\u2460\u2462"},{"id":"ref-for-concept-node-length\u2460\u2463"},{"id":"ref-for-concept-node-length\u2460\u2464"},{"id":"ref-for-concept-node-length\u2460\u2465"},{"id":"ref-for-concept-node-length\u2460\u2466"},{"id":"ref-for-concept-node-length\u2460\u2467"},{"id":"ref-for-concept-node-length\u2460\u2468"},{"id":"ref-for-concept-node-length\u2461\u24ea"},{"id":"ref-for-concept-node-length\u2461\u2460"},{"id":"ref-for-concept-node-length\u2461\u2461"},{"id":"ref-for-concept-node-length\u2461\u2462"},{"id":"ref-for-concept-node-length\u2461\u2463"}],"title":"5.5. Interface Range"}],"url":"#concept-node-length"}, "concept-node-pre-insert": {"dfnID":"concept-node-pre-insert","dfnText":"pre-insert","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-pre-insert"},{"id":"ref-for-concept-node-pre-insert\u2460"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-node-pre-insert\u2461"}],"title":"4.2.6. Mixin ParentNode"},{"refs":[{"id":"ref-for-concept-node-pre-insert\u2462"},{"id":"ref-for-concept-node-pre-insert\u2463"},{"id":"ref-for-concept-node-pre-insert\u2464"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-node-pre-insert\u2465"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-node-pre-insert\u2466"}],"title":"4.7. Interface DocumentFragment"},{"refs":[{"id":"ref-for-concept-node-pre-insert\u2467"},{"id":"ref-for-concept-node-pre-insert\u2468"},{"id":"ref-for-concept-node-pre-insert\u2460\u24ea"},{"id":"ref-for-concept-node-pre-insert\u2460\u2460"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-node-pre-insert\u2460\u2461"}],"title":"5.5. Interface Range"}],"url":"#concept-node-pre-insert"}, "concept-node-pre-remove": {"dfnID":"concept-node-pre-remove","dfnText":"pre-remove","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-pre-remove"}],"title":"4.4. Interface Node"}],"url":"#concept-node-pre-remove"}, "concept-node-remove": {"dfnID":"concept-node-remove","dfnText":"remove","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-node-remove"},{"id":"ref-for-concept-node-remove\u2460"},{"id":"ref-for-concept-node-remove\u2461"},{"id":"ref-for-concept-node-remove\u2462"},{"id":"ref-for-concept-node-remove\u2463"},{"id":"ref-for-concept-node-remove\u2464"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-node-remove\u2465"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-node-remove\u2466"},{"id":"ref-for-concept-node-remove\u2467"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-node-remove\u2468"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-concept-node-remove\u2460\u24ea"}],"title":"5.1. Introduction to \"DOM Ranges\""},{"refs":[{"id":"ref-for-concept-node-remove\u2460\u2460"},{"id":"ref-for-concept-node-remove\u2460\u2461"},{"id":"ref-for-concept-node-remove\u2460\u2462"}],"title":"5.5. Interface Range"}],"url":"#concept-node-remove"}, @@ -14050,9 +14640,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "concept-traverse-children": {"dfnID":"concept-traverse-children","dfnText":"traverse children","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-traverse-children"},{"id":"ref-for-concept-traverse-children\u2460"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-traverse-children"}, "concept-traverse-siblings": {"dfnID":"concept-traverse-siblings","dfnText":"traverse siblings","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-traverse-siblings"},{"id":"ref-for-concept-traverse-siblings\u2460"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-traverse-siblings"}, "concept-tree": {"dfnID":"concept-tree","dfnText":"tree","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree"},{"id":"ref-for-concept-tree\u2460"},{"id":"ref-for-concept-tree\u2461"},{"id":"ref-for-concept-tree\u2462"},{"id":"ref-for-concept-tree\u2463"},{"id":"ref-for-concept-tree\u2464"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree\u2465"},{"id":"ref-for-concept-tree\u2466"}],"title":"2.1. Introduction to \"DOM Events\""},{"refs":[{"id":"ref-for-concept-tree\u2467"},{"id":"ref-for-concept-tree\u2468"},{"id":"ref-for-concept-tree\u2460\u24ea"},{"id":"ref-for-concept-tree\u2460\u2460"}],"title":"2.2. Interface Event"},{"refs":[{"id":"ref-for-concept-tree\u2460\u2461"},{"id":"ref-for-concept-tree\u2460\u2462"}],"title":"4.1. Introduction to \"The DOM\""},{"refs":[{"id":"ref-for-concept-tree\u2460\u2463"}],"title":"4.2. Node tree"},{"refs":[{"id":"ref-for-concept-tree\u2460\u2464"}],"title":"4.3.1. Interface MutationObserver"},{"refs":[{"id":"ref-for-concept-tree\u2460\u2465"}],"title":"4.3.3. Interface MutationRecord"},{"refs":[{"id":"ref-for-concept-tree\u2460\u2466"},{"id":"ref-for-concept-tree\u2460\u2467"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree\u2460\u2468"}],"title":"4.5.1. Interface DOMImplementation"},{"refs":[{"id":"ref-for-concept-tree\u2461\u24ea"},{"id":"ref-for-concept-tree\u2461\u2460"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree\u2461\u2461"}],"title":"6. Traversal"}],"url":"#concept-tree"}, -"concept-tree-ancestor": {"dfnID":"concept-tree-ancestor","dfnText":"ancestor","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-ancestor"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-ancestor\u2460"}],"title":"2.1. Introduction to \"DOM Events\""},{"refs":[{"id":"ref-for-concept-tree-ancestor\u2461"}],"title":"2.2. Interface Event"},{"refs":[{"id":"ref-for-concept-tree-ancestor\u2462"},{"id":"ref-for-concept-tree-ancestor\u2463"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-ancestor\u2464"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-tree-ancestor\u2465"},{"id":"ref-for-concept-tree-ancestor\u2466"},{"id":"ref-for-concept-tree-ancestor\u2467"},{"id":"ref-for-concept-tree-ancestor\u2468"},{"id":"ref-for-concept-tree-ancestor\u2460\u24ea"}],"title":"5.5. Interface Range"}],"url":"#concept-tree-ancestor"}, -"concept-tree-child": {"dfnID":"concept-tree-child","dfnText":"children","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-child"},{"id":"ref-for-concept-tree-child\u2460"},{"id":"ref-for-concept-tree-child\u2461"},{"id":"ref-for-concept-tree-child\u2462"},{"id":"ref-for-concept-tree-child\u2463"},{"id":"ref-for-concept-tree-child\u2464"},{"id":"ref-for-concept-tree-child\u2465"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-child\u2466"}],"title":"4.1. Introduction to \"The DOM\""},{"refs":[{"id":"ref-for-concept-tree-child\u2467"},{"id":"ref-for-concept-tree-child\u2468"}],"title":"4.2. Node tree"},{"refs":[{"id":"ref-for-concept-tree-child\u2460\u24ea"},{"id":"ref-for-concept-tree-child\u2460\u2460"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-child\u2460\u2461"},{"id":"ref-for-concept-tree-child\u2460\u2462"},{"id":"ref-for-concept-tree-child\u2460\u2463"},{"id":"ref-for-concept-tree-child\u2460\u2464"},{"id":"ref-for-concept-tree-child\u2460\u2465"},{"id":"ref-for-concept-tree-child\u2460\u2466"},{"id":"ref-for-concept-tree-child\u2460\u2467"},{"id":"ref-for-concept-tree-child\u2460\u2468"},{"id":"ref-for-concept-tree-child\u2461\u24ea"},{"id":"ref-for-concept-tree-child\u2461\u2460"},{"id":"ref-for-concept-tree-child\u2461\u2461"},{"id":"ref-for-concept-tree-child\u2461\u2462"},{"id":"ref-for-concept-tree-child\u2461\u2463"},{"id":"ref-for-concept-tree-child\u2461\u2464"},{"id":"ref-for-concept-tree-child\u2461\u2465"},{"id":"ref-for-concept-tree-child\u2461\u2466"},{"id":"ref-for-concept-tree-child\u2461\u2467"},{"id":"ref-for-concept-tree-child\u2461\u2468"},{"id":"ref-for-concept-tree-child\u2462\u24ea"},{"id":"ref-for-concept-tree-child\u2462\u2460"},{"id":"ref-for-concept-tree-child\u2462\u2461"},{"id":"ref-for-concept-tree-child\u2462\u2462"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-child\u2462\u2463"},{"id":"ref-for-concept-tree-child\u2462\u2464"},{"id":"ref-for-concept-tree-child\u2462\u2465"},{"id":"ref-for-concept-tree-child\u2462\u2466"},{"id":"ref-for-concept-tree-child\u2462\u2467"},{"id":"ref-for-concept-tree-child\u2462\u2468"},{"id":"ref-for-concept-tree-child\u2463\u24ea"},{"id":"ref-for-concept-tree-child\u2463\u2460"}],"title":"4.2.6. Mixin ParentNode"},{"refs":[{"id":"ref-for-concept-tree-child\u2463\u2461"}],"title":"4.3.1. Interface MutationObserver"},{"refs":[{"id":"ref-for-concept-tree-child\u2463\u2462"}],"title":"4.3.3. Interface MutationRecord"},{"refs":[{"id":"ref-for-concept-tree-child\u2463\u2463"},{"id":"ref-for-concept-tree-child\u2463\u2464"},{"id":"ref-for-concept-tree-child\u2463\u2465"},{"id":"ref-for-concept-tree-child\u2463\u2466"},{"id":"ref-for-concept-tree-child\u2463\u2467"},{"id":"ref-for-concept-tree-child\u2463\u2468"},{"id":"ref-for-concept-tree-child\u2464\u24ea"},{"id":"ref-for-concept-tree-child\u2464\u2460"},{"id":"ref-for-concept-tree-child\u2464\u2461"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-child\u2464\u2462"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-concept-tree-child\u2464\u2463"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-tree-child\u2464\u2464"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-child\u2464\u2465"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-tree-child\u2464\u2466"},{"id":"ref-for-concept-tree-child\u2464\u2467"},{"id":"ref-for-concept-tree-child\u2464\u2468"},{"id":"ref-for-concept-tree-child\u2465\u24ea"},{"id":"ref-for-concept-tree-child\u2465\u2460"},{"id":"ref-for-concept-tree-child\u2465\u2461"},{"id":"ref-for-concept-tree-child\u2465\u2462"},{"id":"ref-for-concept-tree-child\u2465\u2463"},{"id":"ref-for-concept-tree-child\u2465\u2464"},{"id":"ref-for-concept-tree-child\u2465\u2465"},{"id":"ref-for-concept-tree-child\u2465\u2466"},{"id":"ref-for-concept-tree-child\u2465\u2467"},{"id":"ref-for-concept-tree-child\u2465\u2468"},{"id":"ref-for-concept-tree-child\u2466\u24ea"},{"id":"ref-for-concept-tree-child\u2466\u2460"},{"id":"ref-for-concept-tree-child\u2466\u2461"},{"id":"ref-for-concept-tree-child\u2466\u2462"},{"id":"ref-for-concept-tree-child\u2466\u2463"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-child\u2466\u2464"},{"id":"ref-for-concept-tree-child\u2466\u2465"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-child"}, -"concept-tree-descendant": {"dfnID":"concept-tree-descendant","dfnText":"descendant","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-descendant"},{"id":"ref-for-concept-tree-descendant\u2460"},{"id":"ref-for-concept-tree-descendant\u2461"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2462"},{"id":"ref-for-concept-tree-descendant\u2463"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2464"},{"id":"ref-for-concept-tree-descendant\u2465"}],"title":"4.2.4. Mixin NonElementParentNode"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2466"},{"id":"ref-for-concept-tree-descendant\u2467"}],"title":"4.2.6. Mixin ParentNode"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2468"}],"title":"4.3. Mutation observers"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2460\u24ea"}],"title":"4.3.1. Interface MutationObserver"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2460\u2460"},{"id":"ref-for-concept-tree-descendant\u2460\u2461"},{"id":"ref-for-concept-tree-descendant\u2460\u2462"},{"id":"ref-for-concept-tree-descendant\u2460\u2463"},{"id":"ref-for-concept-tree-descendant\u2460\u2464"},{"id":"ref-for-concept-tree-descendant\u2460\u2465"},{"id":"ref-for-concept-tree-descendant\u2460\u2466"},{"id":"ref-for-concept-tree-descendant\u2460\u2467"},{"id":"ref-for-concept-tree-descendant\u2460\u2468"},{"id":"ref-for-concept-tree-descendant\u2461\u24ea"},{"id":"ref-for-concept-tree-descendant\u2461\u2460"},{"id":"ref-for-concept-tree-descendant\u2461\u2461"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2461\u2462"},{"id":"ref-for-concept-tree-descendant\u2461\u2463"},{"id":"ref-for-concept-tree-descendant\u2461\u2464"},{"id":"ref-for-concept-tree-descendant\u2461\u2465"},{"id":"ref-for-concept-tree-descendant\u2461\u2466"},{"id":"ref-for-concept-tree-descendant\u2461\u2467"},{"id":"ref-for-concept-tree-descendant\u2461\u2468"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2462\u24ea"}],"title":"4.8. Interface ShadowRoot"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2462\u2460"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2462\u2461"},{"id":"ref-for-concept-tree-descendant\u2462\u2462"}],"title":"5.5. Interface Range"}],"url":"#concept-tree-descendant"}, +"concept-tree-ancestor": {"dfnID":"concept-tree-ancestor","dfnText":"ancestor","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-ancestor"}],"title":"2.2. Interface Event"}],"url":"#concept-tree-ancestor"}, +"concept-tree-child": {"dfnID":"concept-tree-child","dfnText":"children","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-child"},{"id":"ref-for-concept-tree-child\u2460"},{"id":"ref-for-concept-tree-child\u2461"},{"id":"ref-for-concept-tree-child\u2462"},{"id":"ref-for-concept-tree-child\u2463"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-child\u2464"},{"id":"ref-for-concept-tree-child\u2465"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-child\u2466"},{"id":"ref-for-concept-tree-child\u2467"},{"id":"ref-for-concept-tree-child\u2468"},{"id":"ref-for-concept-tree-child\u2460\u24ea"},{"id":"ref-for-concept-tree-child\u2460\u2460"},{"id":"ref-for-concept-tree-child\u2460\u2461"},{"id":"ref-for-concept-tree-child\u2460\u2462"},{"id":"ref-for-concept-tree-child\u2460\u2463"},{"id":"ref-for-concept-tree-child\u2460\u2464"},{"id":"ref-for-concept-tree-child\u2460\u2465"},{"id":"ref-for-concept-tree-child\u2460\u2466"},{"id":"ref-for-concept-tree-child\u2460\u2467"},{"id":"ref-for-concept-tree-child\u2460\u2468"},{"id":"ref-for-concept-tree-child\u2461\u24ea"},{"id":"ref-for-concept-tree-child\u2461\u2460"},{"id":"ref-for-concept-tree-child\u2461\u2461"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-child\u2461\u2462"},{"id":"ref-for-concept-tree-child\u2461\u2463"},{"id":"ref-for-concept-tree-child\u2461\u2464"},{"id":"ref-for-concept-tree-child\u2461\u2465"},{"id":"ref-for-concept-tree-child\u2461\u2466"}],"title":"4.2.6. Mixin ParentNode"},{"refs":[{"id":"ref-for-concept-tree-child\u2461\u2467"},{"id":"ref-for-concept-tree-child\u2461\u2468"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-child\u2462\u24ea"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-concept-tree-child\u2462\u2460"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-tree-child\u2462\u2461"},{"id":"ref-for-concept-tree-child\u2462\u2462"},{"id":"ref-for-concept-tree-child\u2462\u2463"},{"id":"ref-for-concept-tree-child\u2462\u2464"},{"id":"ref-for-concept-tree-child\u2462\u2465"},{"id":"ref-for-concept-tree-child\u2462\u2466"},{"id":"ref-for-concept-tree-child\u2462\u2467"},{"id":"ref-for-concept-tree-child\u2462\u2468"},{"id":"ref-for-concept-tree-child\u2463\u24ea"},{"id":"ref-for-concept-tree-child\u2463\u2460"},{"id":"ref-for-concept-tree-child\u2463\u2461"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-child\u2463\u2462"},{"id":"ref-for-concept-tree-child\u2463\u2463"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-child"}, +"concept-tree-descendant": {"dfnID":"concept-tree-descendant","dfnText":"descendant","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-descendant"},{"id":"ref-for-concept-tree-descendant\u2460"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-descendant\u2461"}],"title":"4.3. Mutation observers"}],"url":"#concept-tree-descendant"}, "concept-tree-first-child": {"dfnID":"concept-tree-first-child","dfnText":"first child","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-first-child"},{"id":"ref-for-concept-tree-first-child\u2460"}],"title":"4.2.6. Mixin ParentNode"},{"refs":[{"id":"ref-for-concept-tree-first-child\u2461"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-tree-first-child\u2462"},{"id":"ref-for-concept-tree-first-child\u2463"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-first-child\u2464"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-tree-first-child\u2465"},{"id":"ref-for-concept-tree-first-child\u2466"},{"id":"ref-for-concept-tree-first-child\u2467"},{"id":"ref-for-concept-tree-first-child\u2468"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-first-child"}, "concept-tree-following": {"dfnID":"concept-tree-following","dfnText":"following","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-following"},{"id":"ref-for-concept-tree-following\u2460"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-following\u2461"},{"id":"ref-for-concept-tree-following\u2462"},{"id":"ref-for-concept-tree-following\u2463"},{"id":"ref-for-concept-tree-following\u2464"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-following\u2465"},{"id":"ref-for-concept-tree-following\u2466"}],"title":"4.2.7. Mixin NonDocumentTypeChildNode"},{"refs":[{"id":"ref-for-concept-tree-following\u2467"},{"id":"ref-for-concept-tree-following\u2468"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-tree-following\u2460\u24ea"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-following\u2460\u2460"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-tree-following\u2460\u2461"},{"id":"ref-for-concept-tree-following\u2460\u2462"}],"title":"6.1. Interface NodeIterator"}],"url":"#concept-tree-following"}, "concept-tree-host-including-inclusive-ancestor": {"dfnID":"concept-tree-host-including-inclusive-ancestor","dfnText":"host-including inclusive ancestor","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-host-including-inclusive-ancestor"},{"id":"ref-for-concept-tree-host-including-inclusive-ancestor\u2460"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-host-including-inclusive-ancestor\u2461"}],"title":"4.7. Interface DocumentFragment"}],"url":"#concept-tree-host-including-inclusive-ancestor"}, @@ -14063,7 +14653,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "concept-tree-last-child": {"dfnID":"concept-tree-last-child","dfnText":"last child","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-last-child"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-last-child\u2460"}],"title":"4.2.6. Mixin ParentNode"},{"refs":[{"id":"ref-for-concept-tree-last-child\u2461"},{"id":"ref-for-concept-tree-last-child\u2462"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-last-child\u2463"},{"id":"ref-for-concept-tree-last-child\u2464"},{"id":"ref-for-concept-tree-last-child\u2465"},{"id":"ref-for-concept-tree-last-child\u2466"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-last-child"}, "concept-tree-next-sibling": {"dfnID":"concept-tree-next-sibling","dfnText":"next sibling","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-next-sibling"},{"id":"ref-for-concept-tree-next-sibling\u2460"},{"id":"ref-for-concept-tree-next-sibling\u2461"},{"id":"ref-for-concept-tree-next-sibling\u2462"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2463"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2464"}],"title":"4.3.3. Interface MutationRecord"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2465"},{"id":"ref-for-concept-tree-next-sibling\u2466"},{"id":"ref-for-concept-tree-next-sibling\u2467"},{"id":"ref-for-concept-tree-next-sibling\u2468"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2460\u24ea"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2460\u2460"},{"id":"ref-for-concept-tree-next-sibling\u2460\u2461"},{"id":"ref-for-concept-tree-next-sibling\u2460\u2462"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2460\u2463"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-next-sibling\u2460\u2464"},{"id":"ref-for-concept-tree-next-sibling\u2460\u2465"},{"id":"ref-for-concept-tree-next-sibling\u2460\u2466"},{"id":"ref-for-concept-tree-next-sibling\u2460\u2467"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-next-sibling"}, "concept-tree-order": {"dfnID":"concept-tree-order","dfnText":"tree order","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-order"},{"id":"ref-for-concept-tree-order\u2460"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-order\u2461"},{"id":"ref-for-concept-tree-order\u2462"}],"title":"2.1. Introduction to \"DOM Events\""},{"refs":[{"id":"ref-for-concept-tree-order\u2463"}],"title":"2.2. Interface Event"},{"refs":[{"id":"ref-for-concept-tree-order\u2464"}],"title":"4.2. Node tree"},{"refs":[{"id":"ref-for-concept-tree-order\u2465"}],"title":"4.2.2.1. Slots"},{"refs":[{"id":"ref-for-concept-tree-order\u2466"},{"id":"ref-for-concept-tree-order\u2467"},{"id":"ref-for-concept-tree-order\u2468"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u24ea"}],"title":"4.2.2.4. Assigning slottables and slots"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u2460"},{"id":"ref-for-concept-tree-order\u2460\u2461"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u2462"}],"title":"4.2.4. Mixin NonElementParentNode"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u2463"}],"title":"4.2.10. Old-style collections: NodeList and HTMLCollection"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u2464"}],"title":"4.2.10.1. Interface NodeList"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u2465"},{"id":"ref-for-concept-tree-order\u2460\u2466"}],"title":"4.2.10.2. Interface HTMLCollection"},{"refs":[{"id":"ref-for-concept-tree-order\u2460\u2467"},{"id":"ref-for-concept-tree-order\u2460\u2468"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-order\u2461\u24ea"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-tree-order\u2461\u2460"},{"id":"ref-for-concept-tree-order\u2461\u2461"},{"id":"ref-for-concept-tree-order\u2461\u2462"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-order\u2461\u2463"},{"id":"ref-for-concept-tree-order\u2461\u2464"},{"id":"ref-for-concept-tree-order\u2461\u2465"},{"id":"ref-for-concept-tree-order\u2461\u2466"},{"id":"ref-for-concept-tree-order\u2461\u2467"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-order\u2461\u2468"}],"title":"6.1. Interface NodeIterator"}],"url":"#concept-tree-order"}, -"concept-tree-parent": {"dfnID":"concept-tree-parent","dfnText":"parent","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-parent"},{"id":"ref-for-concept-tree-parent\u2460"},{"id":"ref-for-concept-tree-parent\u2461"},{"id":"ref-for-concept-tree-parent\u2462"},{"id":"ref-for-concept-tree-parent\u2463"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-parent\u2464"}],"title":"4.2.1. Document tree"},{"refs":[{"id":"ref-for-concept-tree-parent\u2465"},{"id":"ref-for-concept-tree-parent\u2466"},{"id":"ref-for-concept-tree-parent\u2467"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-parent\u2468"},{"id":"ref-for-concept-tree-parent\u2460\u24ea"},{"id":"ref-for-concept-tree-parent\u2460\u2460"},{"id":"ref-for-concept-tree-parent\u2460\u2461"},{"id":"ref-for-concept-tree-parent\u2460\u2462"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-parent\u2460\u2463"},{"id":"ref-for-concept-tree-parent\u2460\u2464"},{"id":"ref-for-concept-tree-parent\u2460\u2465"},{"id":"ref-for-concept-tree-parent\u2460\u2466"},{"id":"ref-for-concept-tree-parent\u2460\u2467"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-tree-parent\u2460\u2468"}],"title":"4.3. Mutation observers"},{"refs":[{"id":"ref-for-concept-tree-parent\u2461\u24ea"},{"id":"ref-for-concept-tree-parent\u2461\u2460"},{"id":"ref-for-concept-tree-parent\u2461\u2461"},{"id":"ref-for-concept-tree-parent\u2461\u2462"},{"id":"ref-for-concept-tree-parent\u2461\u2463"},{"id":"ref-for-concept-tree-parent\u2461\u2464"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-parent\u2461\u2465"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-concept-tree-parent\u2461\u2466"},{"id":"ref-for-concept-tree-parent\u2461\u2467"},{"id":"ref-for-concept-tree-parent\u2461\u2468"},{"id":"ref-for-concept-tree-parent\u2462\u24ea"},{"id":"ref-for-concept-tree-parent\u2462\u2460"},{"id":"ref-for-concept-tree-parent\u2462\u2461"},{"id":"ref-for-concept-tree-parent\u2462\u2462"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2463"},{"id":"ref-for-concept-tree-parent\u2462\u2464"}],"title":"4.10. Interface CharacterData"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2465"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2466"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2467"},{"id":"ref-for-concept-tree-parent\u2462\u2468"},{"id":"ref-for-concept-tree-parent\u2463\u24ea"},{"id":"ref-for-concept-tree-parent\u2463\u2460"},{"id":"ref-for-concept-tree-parent\u2463\u2461"},{"id":"ref-for-concept-tree-parent\u2463\u2462"},{"id":"ref-for-concept-tree-parent\u2463\u2463"},{"id":"ref-for-concept-tree-parent\u2463\u2464"},{"id":"ref-for-concept-tree-parent\u2463\u2465"},{"id":"ref-for-concept-tree-parent\u2463\u2466"},{"id":"ref-for-concept-tree-parent\u2463\u2467"},{"id":"ref-for-concept-tree-parent\u2463\u2468"},{"id":"ref-for-concept-tree-parent\u2464\u24ea"},{"id":"ref-for-concept-tree-parent\u2464\u2460"},{"id":"ref-for-concept-tree-parent\u2464\u2461"},{"id":"ref-for-concept-tree-parent\u2464\u2462"},{"id":"ref-for-concept-tree-parent\u2464\u2463"},{"id":"ref-for-concept-tree-parent\u2464\u2464"},{"id":"ref-for-concept-tree-parent\u2464\u2465"},{"id":"ref-for-concept-tree-parent\u2464\u2466"},{"id":"ref-for-concept-tree-parent\u2464\u2467"},{"id":"ref-for-concept-tree-parent\u2464\u2468"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-parent\u2465\u24ea"}],"title":"6.1. Interface NodeIterator"},{"refs":[{"id":"ref-for-concept-tree-parent\u2465\u2460"},{"id":"ref-for-concept-tree-parent\u2465\u2461"},{"id":"ref-for-concept-tree-parent\u2465\u2462"},{"id":"ref-for-concept-tree-parent\u2465\u2463"},{"id":"ref-for-concept-tree-parent\u2465\u2464"},{"id":"ref-for-concept-tree-parent\u2465\u2465"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-parent"}, +"concept-tree-parent": {"dfnID":"concept-tree-parent","dfnText":"parent","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-parent"},{"id":"ref-for-concept-tree-parent\u2460"},{"id":"ref-for-concept-tree-parent\u2461"},{"id":"ref-for-concept-tree-parent\u2462"},{"id":"ref-for-concept-tree-parent\u2463"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-parent\u2464"}],"title":"4.2.1. Document tree"},{"refs":[{"id":"ref-for-concept-tree-parent\u2465"},{"id":"ref-for-concept-tree-parent\u2466"},{"id":"ref-for-concept-tree-parent\u2467"}],"title":"4.2.2.3. Finding slots and slottables"},{"refs":[{"id":"ref-for-concept-tree-parent\u2468"},{"id":"ref-for-concept-tree-parent\u2460\u24ea"},{"id":"ref-for-concept-tree-parent\u2460\u2460"},{"id":"ref-for-concept-tree-parent\u2460\u2461"},{"id":"ref-for-concept-tree-parent\u2460\u2462"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-parent\u2460\u2463"},{"id":"ref-for-concept-tree-parent\u2460\u2464"},{"id":"ref-for-concept-tree-parent\u2460\u2465"},{"id":"ref-for-concept-tree-parent\u2460\u2466"},{"id":"ref-for-concept-tree-parent\u2460\u2467"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-tree-parent\u2460\u2468"}],"title":"4.3. Mutation observers"},{"refs":[{"id":"ref-for-concept-tree-parent\u2461\u24ea"},{"id":"ref-for-concept-tree-parent\u2461\u2460"},{"id":"ref-for-concept-tree-parent\u2461\u2461"},{"id":"ref-for-concept-tree-parent\u2461\u2462"},{"id":"ref-for-concept-tree-parent\u2461\u2463"},{"id":"ref-for-concept-tree-parent\u2461\u2464"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-parent\u2461\u2465"}],"title":"4.5. Interface Document"},{"refs":[{"id":"ref-for-concept-tree-parent\u2461\u2466"},{"id":"ref-for-concept-tree-parent\u2461\u2467"},{"id":"ref-for-concept-tree-parent\u2461\u2468"},{"id":"ref-for-concept-tree-parent\u2462\u24ea"},{"id":"ref-for-concept-tree-parent\u2462\u2460"},{"id":"ref-for-concept-tree-parent\u2462\u2461"},{"id":"ref-for-concept-tree-parent\u2462\u2462"}],"title":"4.9. Interface Element"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2463"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2464"}],"title":"5.2. Boundary points"},{"refs":[{"id":"ref-for-concept-tree-parent\u2462\u2465"},{"id":"ref-for-concept-tree-parent\u2462\u2466"},{"id":"ref-for-concept-tree-parent\u2462\u2467"},{"id":"ref-for-concept-tree-parent\u2462\u2468"},{"id":"ref-for-concept-tree-parent\u2463\u24ea"},{"id":"ref-for-concept-tree-parent\u2463\u2460"},{"id":"ref-for-concept-tree-parent\u2463\u2461"},{"id":"ref-for-concept-tree-parent\u2463\u2462"},{"id":"ref-for-concept-tree-parent\u2463\u2463"},{"id":"ref-for-concept-tree-parent\u2463\u2464"},{"id":"ref-for-concept-tree-parent\u2463\u2465"},{"id":"ref-for-concept-tree-parent\u2463\u2466"},{"id":"ref-for-concept-tree-parent\u2463\u2467"},{"id":"ref-for-concept-tree-parent\u2463\u2468"},{"id":"ref-for-concept-tree-parent\u2464\u24ea"},{"id":"ref-for-concept-tree-parent\u2464\u2460"},{"id":"ref-for-concept-tree-parent\u2464\u2461"},{"id":"ref-for-concept-tree-parent\u2464\u2462"},{"id":"ref-for-concept-tree-parent\u2464\u2463"},{"id":"ref-for-concept-tree-parent\u2464\u2464"},{"id":"ref-for-concept-tree-parent\u2464\u2465"},{"id":"ref-for-concept-tree-parent\u2464\u2466"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-parent\u2464\u2467"}],"title":"6.1. Interface NodeIterator"},{"refs":[{"id":"ref-for-concept-tree-parent\u2464\u2468"},{"id":"ref-for-concept-tree-parent\u2465\u24ea"},{"id":"ref-for-concept-tree-parent\u2465\u2460"},{"id":"ref-for-concept-tree-parent\u2465\u2461"},{"id":"ref-for-concept-tree-parent\u2465\u2462"},{"id":"ref-for-concept-tree-parent\u2465\u2463"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-parent"}, "concept-tree-participate": {"dfnID":"concept-tree-participate","dfnText":"participates","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-participate"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-participate\u2460"}],"title":"2.1. Introduction to \"DOM Events\""},{"refs":[{"id":"ref-for-concept-tree-participate\u2461"},{"id":"ref-for-concept-tree-participate\u2462"}],"title":"2.2. Interface Event"},{"refs":[{"id":"ref-for-concept-tree-participate\u2463"}],"title":"4.2. Node tree"},{"refs":[{"id":"ref-for-concept-tree-participate\u2464"}],"title":"4.4. Interface Node"}],"url":"#concept-tree-participate"}, "concept-tree-preceding": {"dfnID":"concept-tree-preceding","dfnText":"preceding","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-preceding"},{"id":"ref-for-concept-tree-preceding\u2460"},{"id":"ref-for-concept-tree-preceding\u2461"}],"title":"1.1. Trees"},{"refs":[{"id":"ref-for-concept-tree-preceding\u2462"},{"id":"ref-for-concept-tree-preceding\u2463"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-preceding\u2464"},{"id":"ref-for-concept-tree-preceding\u2465"}],"title":"4.2.7. Mixin NonDocumentTypeChildNode"},{"refs":[{"id":"ref-for-concept-tree-preceding\u2466"}],"title":"4.2.8. Mixin ChildNode"},{"refs":[{"id":"ref-for-concept-tree-preceding\u2467"},{"id":"ref-for-concept-tree-preceding\u2468"},{"id":"ref-for-concept-tree-preceding\u2460\u24ea"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-preceding\u2460\u2460"}],"title":"5.5. Interface Range"},{"refs":[{"id":"ref-for-concept-tree-preceding\u2460\u2461"}],"title":"6.1. Interface NodeIterator"}],"url":"#concept-tree-preceding"}, "concept-tree-previous-sibling": {"dfnID":"concept-tree-previous-sibling","dfnText":"previous sibling","external":false,"refSections":[{"refs":[{"id":"ref-for-concept-tree-previous-sibling"},{"id":"ref-for-concept-tree-previous-sibling\u2460"},{"id":"ref-for-concept-tree-previous-sibling\u2461"}],"title":"4.2.3. Mutation algorithms"},{"refs":[{"id":"ref-for-concept-tree-previous-sibling\u2462"}],"title":"4.3.3. Interface MutationRecord"},{"refs":[{"id":"ref-for-concept-tree-previous-sibling\u2463"},{"id":"ref-for-concept-tree-previous-sibling\u2464"}],"title":"4.4. Interface Node"},{"refs":[{"id":"ref-for-concept-tree-previous-sibling\u2465"},{"id":"ref-for-concept-tree-previous-sibling\u2466"}],"title":"4.11. Interface Text"},{"refs":[{"id":"ref-for-concept-tree-previous-sibling\u2467"},{"id":"ref-for-concept-tree-previous-sibling\u2468"}],"title":"6.1. Interface NodeIterator"},{"refs":[{"id":"ref-for-concept-tree-previous-sibling\u2460\u24ea"},{"id":"ref-for-concept-tree-previous-sibling\u2460\u2460"},{"id":"ref-for-concept-tree-previous-sibling\u2460\u2461"},{"id":"ref-for-concept-tree-previous-sibling\u2460\u2462"},{"id":"ref-for-concept-tree-previous-sibling\u2460\u2463"}],"title":"6.2. Interface TreeWalker"}],"url":"#concept-tree-previous-sibling"}, @@ -15204,6 +15794,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -15972,7 +16619,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://w3c.github.io/hr-time/#clock-resolution": {"export":true,"for_":[],"level":"","normative":true,"shortname":"hr-time","spec":"hr-time","status":"anchor-block","text":"clock resolution","type":"dfn","url":"https://w3c.github.io/hr-time/#clock-resolution"}, "https://w3c.github.io/hr-time/#dfn-time-origin": {"export":true,"for_":[],"level":"","normative":true,"shortname":"hr-time","spec":"hr-time","status":"anchor-block","text":"time origin","type":"dfn","url":"https://w3c.github.io/hr-time/#dfn-time-origin"}, "https://w3c.github.io/hr-time/#dom-domhighrestimestamp": {"export":true,"for_":[],"level":"","normative":true,"shortname":"hr-time","spec":"hr-time","status":"anchor-block","text":"DOMHighResTimeStamp","type":"typedef","url":"https://w3c.github.io/hr-time/#dom-domhighrestimestamp"}, -"https://w3c.github.io/i18n-glossary/#def_code_unit": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"code units","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, "https://w3c.github.io/touch-events/#idl-def-touchevent": {"export":true,"for_":[],"level":"","normative":true,"shortname":"dom","spec":"","status":"anchor-block","text":"TouchEvent","type":"interface","url":"https://w3c.github.io/touch-events/#idl-def-touchevent"}, "https://w3c.github.io/uievents/#compositionevent": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"uievents","spec":"uievents","status":"current","text":"CompositionEvent","type":"interface","url":"https://w3c.github.io/uievents/#compositionevent"}, "https://w3c.github.io/uievents/#dom-uievent-detail": {"export":true,"for_":["UIEvent"],"level":"1","normative":true,"shortname":"uievents","spec":"uievents","status":"current","text":"detail","type":"attribute","url":"https://w3c.github.io/uievents/#dom-uievent-detail"}, diff --git a/tests/github/whatwg/encoding/encoding.console.txt b/tests/github/whatwg/encoding/encoding.console.txt index 434cf01161..daf16545b1 100644 --- a/tests/github/whatwg/encoding/encoding.console.txt +++ b/tests/github/whatwg/encoding/encoding.console.txt @@ -1,12 +1,11 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 352: Ambiguous for-less link for 'labels', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="352" data-link-type="dfn" data-lt="labels">labels</a> LINE 354: Ambiguous for-less link for 'labels', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -14,7 +13,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="354" data-link-type="dfn" data-lt="labels">labels</a> LINE 360: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -22,15 +20,20 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="360" data-link-type="dfn" data-lt="label">label</a> +LINE 365: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:encoding; type:dfn; for:encoding; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +<a bs-line-number="365" data-link-type="dfn" data-lt="name">name</a> LINE 366: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="366" data-link-type="dfn" data-lt="label">label</a> LINE 377: Ambiguous for-less link for 'labels', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -38,7 +41,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="377" data-link-type="dfn" data-lt="labels">labels</a> LINE 382: Ambiguous for-less link for 'labels', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -46,15 +48,20 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="382" data-link-type="dfn" data-lt="labels">labels</a> +LINE 390: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:encoding; type:dfn; for:encoding; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +<a bs-line-number="390" data-link-type="dfn" data-lt="Name">Name</a> LINE 391: Ambiguous for-less link for 'labels', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="391" data-link-type="dfn" data-lt="Labels">Labels</a> LINE 717: Ambiguous for-less link for 'labels', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -62,7 +69,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="717" data-link-type="dfn" data-lt="labels">labels</a> LINE 1044: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -70,7 +76,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="1044" data-link-type="dfn" data-lt="label">label</a> LINE 1357: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -78,7 +83,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="1357" data-link-type="dfn" data-lt="label">label</a> LINE 1358: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -86,8 +90,14 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="1358" data-link-type="dfn" data-lt="label">label</a> +LINE 1363: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:encoding; type:dfn; for:encoding; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +<a bs-line-number="1363" data-link-type="dfn" data-lt="name">name</a> LINE 1576: No 'dfn' refs found for 'get a reference to the buffer source'. <a bs-line-number="1576" data-lt="get a reference to the buffer source" data-link-type="dfn">getting a reference to the bytes held by</a> LINE 1679: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: @@ -96,8 +106,14 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="1679" data-link-type="dfn" data-lt="label">label</a> +LINE 1683: Ambiguous for-less link for 'name', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:encoding; type:dfn; for:encoding; text:name +for-less references: +spec:vc-data-model-2.0; type:dfn; for:/; text:name +spec:vc-data-model-2.0; type:dfn; for:/; text:name +<a bs-line-number="1683" data-link-type="dfn" data-lt="name">name</a> LINE 1748: No 'dfn' refs found for 'creating' with for='['TransformStream']'. <a bs-line-number="1748" data-link-for="TransformStream" data-link-type="dfn" data-lt="creating">creating</a> LINE 1749: No 'dfn' refs found for 'transformalgorithm' with for='['TransformStream/create']'. @@ -116,7 +132,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="2018" data-link-type="dfn" data-lt="label">label</a> LINE 3241: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -124,7 +139,6 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="3241" data-link-type="dfn" data-lt="label">label</a> LINE 3319: Ambiguous for-less link for 'label', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: @@ -132,5 +146,4 @@ spec:encoding; type:dfn; for:encoding; text:label for-less references: spec:manifest-app-info; type:dfn; for:/; text:label spec:manifest-app-info; type:dfn; for:/; text:label -spec:webcryptoapi; type:dfn; for:/; text:label <a bs-line-number="3319" data-link-type="dfn" data-lt="label">label</a> diff --git a/tests/github/whatwg/encoding/encoding.html b/tests/github/whatwg/encoding/encoding.html index 3c8db49cbe..0a0e49ddee 100644 --- a/tests/github/whatwg/encoding/encoding.html +++ b/tests/github/whatwg/encoding/encoding.html @@ -3,28 +3,360 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Encoding Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-encoding.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> <link crossorigin href="visualization-colors.css" rel="stylesheet"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -62,7 +394,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-encoding.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-encoding.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Encoding</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -70,7 +402,7 @@ <h1 class="p-name no-ref" id="title">Encoding</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/encoding">GitHub whatwg/encoding</a> (<a href="https://github.com/whatwg/encoding/issues/new">new issue</a>, <a href="https://github.com/whatwg/encoding/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/encoding">GitHub whatwg/encoding</a> (<a href="https://github.com/whatwg/encoding/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/encoding/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/encoding/commits">GitHub whatwg/encoding/commits</a> @@ -438,7 +770,7 @@ <h3 class="heading settled" data-level="4.1" id="encoders-and-decoders"><span cl <p>Otherwise, if <var>result</var> is one or more <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#list-item" id="ref-for-list-item①⑥">items</a>: </p> <ol> <li> - <p>Assert: if <var>encoderDecoder</var> is a <a data-link-type="dfn" href="#decoder" id="ref-for-decoder⑤">decoder</a> instance, <var>result</var> does not contain any <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-surrogate" id="ref-for-dfn-surrogate">surrogates</a>. </p> + <p>Assert: if <var>encoderDecoder</var> is a <a data-link-type="dfn" href="#decoder" id="ref-for-decoder⑤">decoder</a> instance, <var>result</var> does not contain any <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate①">surrogates</a>. </p> <li> <p><a data-link-type="dfn" href="#concept-stream-push" id="ref-for-concept-stream-push④">Push</a> <var>result</var> to <var>output</var>. </p> </ol> @@ -465,7 +797,7 @@ <h3 class="heading settled" data-level="4.2" id="names-and-labels"><span class=" identify it. </p> <p>New protocols and formats, as well as existing formats deployed in new contexts, must use the <a data-link-type="dfn" href="#utf-8" id="ref-for-utf-8④">UTF-8</a> <a data-link-type="dfn" href="#encoding" id="ref-for-encoding①②">encoding</a> exclusively. If these protocols and -formats need to expose the <a data-link-type="dfn" href="#encoding" id="ref-for-encoding①③">encoding</a>’s <a data-link-type="dfn" href="#name" id="ref-for-name①">name</a> or <a data-link-type="dfn">label</a>, they must expose it as "<code>utf-8</code>". </p> +formats need to expose the <a data-link-type="dfn" href="#encoding" id="ref-for-encoding①③">encoding</a>’s <a data-link-type="dfn">name</a> or <a data-link-type="dfn">label</a>, they must expose it as "<code>utf-8</code>". </p> <p>To <dfn class="dfn-paneled" data-dfn-type="dfn" data-export data-lt="get an encoding|getting an encoding" id="concept-encoding-get">get an encoding</dfn> from a string <var>label</var>, run these steps: </p> <ol> <li> @@ -478,7 +810,7 @@ <h3 class="heading settled" data-level="4.2" id="names-and-labels"><span class=" <table> <thead> <tr> - <th><a data-link-type="dfn" href="#name" id="ref-for-name②">Name</a> + <th><a data-link-type="dfn">Name</a> <th><a data-link-type="dfn">Labels</a> <tbody> <tr> @@ -1182,7 +1514,7 @@ <h2 class="heading settled" data-level="6" id="specification-hooks"><span class= sequences within a format or protocol, use <a data-link-type="dfn" href="#utf-8-decode-without-bom" id="ref-for-utf-8-decode-without-bom①">UTF-8 decode without BOM</a> or <a data-link-type="dfn" href="#utf-8-decode-without-bom-or-fail" id="ref-for-utf-8-decode-without-bom-or-fail①">UTF-8 decode without BOM or fail</a>. </p> <p>For encoding, <a data-link-type="dfn" href="#utf-8-encode" id="ref-for-utf-8-encode①">UTF-8 encode</a> is to be used. </p> <p>Standards are to ensure that the input I/O queues they pass to <a data-link-type="dfn" href="#utf-8-encode" id="ref-for-utf-8-encode②">UTF-8 encode</a> (as well as - the legacy <a data-link-type="dfn" href="#encode" id="ref-for-encode">encode</a>) are effectively I/O queues of scalar values, i.e., they contain no <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-surrogate" id="ref-for-dfn-surrogate①">surrogates</a>. </p> + the legacy <a data-link-type="dfn" href="#encode" id="ref-for-encode">encode</a>) are effectively I/O queues of scalar values, i.e., they contain no <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate②">surrogates</a>. </p> <p>These hooks (as well as <a data-link-type="dfn" href="#decode" id="ref-for-decode">decode</a> and <a data-link-type="dfn" href="#encode" id="ref-for-encode①">encode</a>) will block until the input I/O queue has been consumed in its entirety. In order to use the output tokens as they are pushed into the stream, callers are to invoke the hooks with an empty output I/O queue and read from it <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel" id="ref-for-in-parallel①">in parallel</a>. Note that some care is needed when using <a data-link-type="dfn" href="#utf-8-decode-without-bom-or-fail" id="ref-for-utf-8-decode-without-bom-or-fail②">UTF-8 decode without BOM or fail</a>, as any error found during decoding will prevent the <a data-link-type="dfn" href="#end-of-stream" id="ref-for-end-of-stream①⑤">end-of-queue</a> item from ever being pushed into the output I/O queue. </p> @@ -1439,7 +1771,7 @@ <h3 class="heading settled" data-level="7.1" id="interface-mixin-textdecodercomm the <a data-link-type="dfn" href="#decode" id="ref-for-decode④">decode</a> algorithm used by the rest of the platform to give API users more control. </p> <hr> - <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="TextDecoderCommon" data-dfn-type="attribute" data-export id="dom-textdecoder-encoding"><code>encoding</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this">this</a>’s <a data-link-type="dfn" href="#textdecoder-encoding" id="ref-for-textdecoder-encoding①">encoding</a>’s <a data-link-type="dfn" href="#name" id="ref-for-name③">name</a>, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-lowercase" id="ref-for-ascii-lowercase①">ASCII lowercased</a>. </p> + <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="TextDecoderCommon" data-dfn-type="attribute" data-export id="dom-textdecoder-encoding"><code>encoding</code></dfn> getter steps are to return <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this">this</a>’s <a data-link-type="dfn" href="#textdecoder-encoding" id="ref-for-textdecoder-encoding①">encoding</a>’s <a data-link-type="dfn" href="#name" id="ref-for-name①">name</a>, <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-lowercase" id="ref-for-ascii-lowercase①">ASCII lowercased</a>. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="TextDecoderCommon" data-dfn-type="attribute" data-export id="dom-textdecoder-fatal"><code>fatal</code></dfn> getter steps are to return true if <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①">this</a>’s <a data-link-type="dfn" href="#textdecoder-error-mode" id="ref-for-textdecoder-error-mode">error mode</a> is "<code>fatal</code>", otherwise false. </p> @@ -1471,7 +1803,7 @@ <h3 class="heading settled" data-level="7.2" id="interface-textdecoder"><span cl <p>If <var>label</var> is either not a <a data-link-type="dfn">label</a> or is a <a data-link-type="dfn">label</a> for <a data-link-type="dfn" href="#replacement" id="ref-for-replacement⑤">replacement</a>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw">throws</a> a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#exceptiondef-rangeerror" id="ref-for-exceptiondef-rangeerror">RangeError</a></code>. </p> <dt><code><var>decoder</var> . <a class="idl-code" data-link-type="attribute" href="#dom-textdecoder-encoding" id="ref-for-dom-textdecoder-encoding①">encoding</a></code> <dd> - <p>Returns <a data-link-type="dfn" href="#textdecoder-encoding" id="ref-for-textdecoder-encoding②">encoding</a>’s <a data-link-type="dfn" href="#name" id="ref-for-name④">name</a>, lowercased. </p> + <p>Returns <a data-link-type="dfn" href="#textdecoder-encoding" id="ref-for-textdecoder-encoding②">encoding</a>’s <a data-link-type="dfn">name</a>, lowercased. </p> <dt><code><var>decoder</var> . <a class="idl-code" data-link-type="attribute" href="#dom-textdecoder-fatal" id="ref-for-dom-textdecoder-fatal①">fatal</a></code> <dd> <p>Returns true if <a data-link-type="dfn" href="#textdecoder-error-mode" id="ref-for-textdecoder-error-mode①">error mode</a> is "<code>fatal</code>", otherwise @@ -1583,7 +1915,7 @@ <h3 class="heading settled" data-level="7.4" id="interface-textencoder"><span cl <p>Returns the result of running <a data-link-type="dfn" href="#utf-8" id="ref-for-utf-8①⑦">UTF-8</a>’s <a data-link-type="dfn" href="#encoder" id="ref-for-encoder①④">encoder</a>. </p> <dt><code><var>encoder</var> . <a class="idl-code" data-link-type="method" href="#dom-textencoder-encodeinto" id="ref-for-dom-textencoder-encodeinto①">encodeInto(<var>source</var>, <var>destination</var>)</a></code> <dd> - <p>Runs the <a data-link-type="dfn" href="#utf-8-encoder" id="ref-for-utf-8-encoder">UTF-8 encoder</a> on <var>source</var>, stores the result of that operation into <var>destination</var>, and returns the progress made as an object wherein <code class="idl"><a data-link-type="idl" href="#dom-textencoderencodeintoresult-read" id="ref-for-dom-textencoderencodeintoresult-read">read</a></code> is the number of converted <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit">code units</a> of <var>source</var> and <code class="idl"><a data-link-type="idl" href="#dom-textencoderencodeintoresult-written" id="ref-for-dom-textencoderencodeintoresult-written">written</a></code> is the number of bytes modified in <var>destination</var>. </p> + <p>Runs the <a data-link-type="dfn" href="#utf-8-encoder" id="ref-for-utf-8-encoder">UTF-8 encoder</a> on <var>source</var>, stores the result of that operation into <var>destination</var>, and returns the progress made as an object wherein <code class="idl"><a data-link-type="idl" href="#dom-textencoderencodeintoresult-read" id="ref-for-dom-textencoderencodeintoresult-read">read</a></code> is the number of converted <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit">code units</a> of <var>source</var> and <code class="idl"><a data-link-type="idl" href="#dom-textencoderencodeintoresult-written" id="ref-for-dom-textencoderencodeintoresult-written">written</a></code> is the number of bytes modified in <var>destination</var>. </p> </dl> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="TextEncoder" data-dfn-type="constructor" data-export data-lt="TextEncoder()|constructor()" id="dom-textencoder"><code>new TextEncoder()</code></dfn> constructor steps are to do nothing. </p> <p>The <dfn class="dfn-paneled idl-code" data-dfn-for="TextEncoder" data-dfn-type="method" data-export data-lt="encode(input)|encode()" id="dom-textencoder-encode"><code>encode(<var>input</var>)</code></dfn> method steps are: </p> @@ -1701,7 +2033,7 @@ <h3 class="heading settled" data-level="7.5" id="interface-textdecoderstream"><s <p>If <var>label</var> is either not a <a data-link-type="dfn">label</a> or is a <a data-link-type="dfn">label</a> for <a data-link-type="dfn" href="#replacement" id="ref-for-replacement⑦">replacement</a>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw④">throws</a> a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#exceptiondef-rangeerror" id="ref-for-exceptiondef-rangeerror②">RangeError</a></code>. </p> <dt><code><var>decoder</var> . <a class="idl-code" data-link-type="attribute" href="#dom-textdecoder-encoding" id="ref-for-dom-textdecoder-encoding②">encoding</a></code> <dd> - <p>Returns <a data-link-type="dfn" href="#textdecoder-encoding" id="ref-for-textdecoder-encoding⑦">encoding</a>’s <a data-link-type="dfn" href="#name" id="ref-for-name⑤">name</a>, lowercased. </p> + <p>Returns <a data-link-type="dfn" href="#textdecoder-encoding" id="ref-for-textdecoder-encoding⑦">encoding</a>’s <a data-link-type="dfn">name</a>, lowercased. </p> <dt><code><var>decoder</var> . <a class="idl-code" data-link-type="attribute" href="#dom-textdecoder-fatal" id="ref-for-dom-textdecoder-fatal②">fatal</a></code> <dd> <p>Returns true if <a data-link-type="dfn" href="#textdecoder-error-mode" id="ref-for-textdecoder-error-mode⑤">error mode</a> is "<code>fatal</code>", and @@ -1809,7 +2141,7 @@ <h3 class="heading settled" data-level="7.6" id="interface-textencoderstream"><s <dt><dfn class="dfn-paneled" data-dfn-for="TextEncoderStream" data-dfn-type="dfn" data-noexport id="textencoderstream-encoder">encoder</dfn> <dd>An <a data-link-type="dfn" href="#encoder" id="ref-for-encoder①⑤">encoder</a> instance. <dt><dfn class="dfn-paneled" data-dfn-for="TextEncoderStream" data-dfn-type="dfn" data-noexport id="textencoderstream-pending-high-surrogate">pending high surrogate</dfn> - <dd>Null or a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate①">surrogate</a>, initially null. + <dd>Null or a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate③">surrogate</a>, initially null. </dl> <p class="note no-backref" role="note">A <code class="idl"><a data-link-type="idl" href="#textencoderstream" id="ref-for-textencoderstream⑤">TextEncoderStream</a></code> object offers no <var>label</var> argument as it only supports <a data-link-type="dfn" href="#utf-8" id="ref-for-utf-8①⑧">UTF-8</a>. </p> @@ -1849,7 +2181,7 @@ <h3 class="heading settled" data-level="7.6" id="interface-textencoderstream"><s <li> <p>Let <var>input</var> be the result of <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-convert-ecmascript-to-idl-value" id="ref-for-dfn-convert-ecmascript-to-idl-value①">converting</a> <var>chunk</var> to a <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString④">DOMString</a></code>. </p> <li> - <p><a data-link-type="dfn" href="#to-i-o-queue-convert" id="ref-for-to-i-o-queue-convert②">Convert</a> <var>input</var> to an <a data-link-type="dfn" href="#concept-stream" id="ref-for-concept-stream③⓪">I/O queue</a> of <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#def_code_unit" id="ref-for-def_code_unit①">code units</a>. </p> + <p><a data-link-type="dfn" href="#to-i-o-queue-convert" id="ref-for-to-i-o-queue-convert②">Convert</a> <var>input</var> to an <a data-link-type="dfn" href="#concept-stream" id="ref-for-concept-stream③⓪">I/O queue</a> of <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit①">code units</a>. </p> <p class="note" role="note"><code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMString" id="ref-for-idl-DOMString⑤">DOMString</a></code>, as well as an <a data-link-type="dfn" href="#concept-stream" id="ref-for-concept-stream③①">I/O queue</a> of code units rather than scalar values, are used here so that a surrogate pair that is split between chunks can be reassembled into the appropriate scalar value. The behavior is otherwise identical to <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-USVString" id="ref-for-idl-USVString③">USVString</a></code>. In particular, @@ -1884,7 +2216,7 @@ <h3 class="heading settled" data-level="7.6" id="interface-textencoderstream"><s <p>If <var>result</var> is not <a data-link-type="dfn" href="#continue" id="ref-for-continue②">continue</a>, then <a data-link-type="dfn" href="#concept-encoding-process" id="ref-for-concept-encoding-process⑤">process an item</a> with <var>result</var>, <var>encoder</var>’s <a data-link-type="dfn" href="#textencoderstream-encoder" id="ref-for-textencoderstream-encoder①">encoder</a>, <var>input</var>, <var>output</var>, and "<code>fatal</code>". </p> </ol> </ol> - <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="convert-code-unit-to-scalar-value">convert code unit to scalar value</dfn> algorithm, given a <code class="idl"><a data-link-type="idl" href="#textencoderstream" id="ref-for-textencoderstream⑧">TextEncoderStream</a></code> object <var>encoder</var>, a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit">code unit</a> <var>item</var>, and an <a data-link-type="dfn" href="#concept-stream" id="ref-for-concept-stream③③">I/O queue</a> of code units <var>input</var>, runs these steps: </p> + <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="convert-code-unit-to-scalar-value">convert code unit to scalar value</dfn> algorithm, given a <code class="idl"><a data-link-type="idl" href="#textencoderstream" id="ref-for-textencoderstream⑧">TextEncoderStream</a></code> object <var>encoder</var>, a <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-unit" id="ref-for-code-unit②">code unit</a> <var>item</var>, and an <a data-link-type="dfn" href="#concept-stream" id="ref-for-concept-stream③③">I/O queue</a> of code units <var>input</var>, runs these steps: </p> <ol> <li> <p>If <var>encoder</var>’s <a data-link-type="dfn" href="#textencoderstream-pending-high-surrogate" id="ref-for-textencoderstream-pending-high-surrogate">pending high surrogate</a> is non-null, then: </p> @@ -2200,7 +2532,7 @@ <h2 class="heading settled" data-level="9" id="legacy-single-byte-encodings"><sp <td><a href="x-mac-cyrillic-bmp.html">index x-mac-cyrillic BMP coverage</a> </table> <p class="note" role="note"><a data-link-type="dfn" href="#iso-8859-8" id="ref-for-iso-8859-8①">ISO-8859-8</a> and <a data-link-type="dfn" href="#iso-8859-8-i" id="ref-for-iso-8859-8-i①">ISO-8859-8-I</a> are -distinct <a data-link-type="dfn" href="#encoding" id="ref-for-encoding②⑧">encoding</a> <a data-link-type="dfn" href="#name" id="ref-for-name⑥">names</a>, because <a data-link-type="dfn" href="#iso-8859-8" id="ref-for-iso-8859-8②">ISO-8859-8</a> has influence on the layout direction. And although +distinct <a data-link-type="dfn" href="#encoding" id="ref-for-encoding②⑧">encoding</a> <a data-link-type="dfn" href="#name" id="ref-for-name②">names</a>, because <a data-link-type="dfn" href="#iso-8859-8" id="ref-for-iso-8859-8②">ISO-8859-8</a> has influence on the layout direction. And although historically this might have been the case for <a data-link-type="dfn" href="#iso-8859-6" id="ref-for-iso-8859-6①">ISO-8859-6</a> and "ISO-8859-6-I" as well, that is no longer true. </p> <h3 class="heading settled dfn-paneled" data-dfn-type="dfn" data-export data-level="9.1" data-lt="single-byte decoder" id="single-byte-decoder"><span class="secno">9.1. </span><span class="content">single-byte decoder</span><a class="self-link" href="#single-byte-decoder" id="ref-for-single-byte-decoder①"></a></h3> @@ -3361,12 +3693,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="c6d19e56">event loop</span> <li><span class="dfn-paneled" id="a72449dd">in parallel</span> </ul> - <li> - <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="7cf8cfc4">code units</span> - <li><span class="dfn-paneled" id="6b7796d8">surrogates</span> - </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: <ul> @@ -3442,8 +3768,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> - <dt id="biblio-i18n-glossary">[I18N-GLOSSARY] - <dd>Richard Ishida; Addison Phillips. <a href="https://w3c.github.io/i18n-glossary/"><cite>Internationalization Glossary</cite></a>. URL: <a href="https://w3c.github.io/i18n-glossary/">https://w3c.github.io/i18n-glossary/</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-streams">[STREAMS] @@ -3648,7 +3972,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-textdecoder-encoding"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TextDecoderStream/encoding" title="The encoding read-only property of the TextDecoderStream interface returns a string containing the name of the encoding algorithm used by the specific encoder.">TextDecoderStream/encoding</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TextDecoderStream/encoding" title="The encoding read-only property of the TextDecoderStream interface returns a string containing the name of the encoding algorithm used by the specific decoder.">TextDecoderStream/encoding</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>105+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> @@ -3756,7 +4080,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-textencoder-encodeinto①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder/encodeInto" title="The TextEncoder.encodeInto() method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding. This is potentially more performant than the older encode() method — especially when the target buffer is a view into a WASM heap.">TextEncoder/encodeInto</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder/encodeInto" title="The TextEncoder.encodeInto() method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding. This is potentially more performant than the older encode() method — especially when the target buffer is a view into a Wasm heap.">TextEncoder/encodeInto</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>66+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>74+</span></span> @@ -4078,17 +4402,15 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"},{"id":"ref-for-idl-boolean\u2460"}],"title":"7.1. Interface mixin TextDecoderCommon"},{"refs":[{"id":"ref-for-idl-boolean\u2461"},{"id":"ref-for-idl-boolean\u2462"},{"id":"ref-for-idl-boolean\u2463"}],"title":"7.2. Interface TextDecoder"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, "56ad2aed": {"dfnID":"56ad2aed","dfnText":"insert","external":true,"refSections":[{"refs":[{"id":"ref-for-list-insert"}],"title":"3. Terminology"}],"url":"https://infra.spec.whatwg.org/#list-insert"}, "593deb55": {"dfnID":"593deb55","dfnText":"enqueue","external":true,"refSections":[{"refs":[{"id":"ref-for-transformstream-enqueue"},{"id":"ref-for-transformstream-enqueue\u2460"}],"title":"7.5. Interface TextDecoderStream"},{"refs":[{"id":"ref-for-transformstream-enqueue\u2461"},{"id":"ref-for-transformstream-enqueue\u2462"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://streams.spec.whatwg.org/#transformstream-enqueue"}, -"59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, +"59912c93": {"dfnID":"59912c93","dfnText":"code unit","external":true,"refSections":[{"refs":[{"id":"ref-for-code-unit"}],"title":"7.4. Interface TextEncoder"},{"refs":[{"id":"ref-for-code-unit\u2460"},{"id":"ref-for-code-unit\u2461"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://infra.spec.whatwg.org/#code-unit"}, "59ed4e57": {"dfnID":"59ed4e57","dfnText":"ReadableStream","external":true,"refSections":[{"refs":[{"id":"ref-for-readablestream"},{"id":"ref-for-readablestream\u2460"}],"title":"7.5. Interface TextDecoderStream"},{"refs":[{"id":"ref-for-readablestream\u2461"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://streams.spec.whatwg.org/#readablestream"}, "5afbefcd": {"dfnID":"5afbefcd","dfnText":"item","external":true,"refSections":[{"refs":[{"id":"ref-for-list-item"},{"id":"ref-for-list-item\u2460"},{"id":"ref-for-list-item\u2461"},{"id":"ref-for-list-item\u2462"},{"id":"ref-for-list-item\u2463"},{"id":"ref-for-list-item\u2464"},{"id":"ref-for-list-item\u2465"},{"id":"ref-for-list-item\u2466"},{"id":"ref-for-list-item\u2467"},{"id":"ref-for-list-item\u2468"},{"id":"ref-for-list-item\u2460\u24ea"},{"id":"ref-for-list-item\u2460\u2460"},{"id":"ref-for-list-item\u2460\u2461"}],"title":"3. Terminology"},{"refs":[{"id":"ref-for-list-item\u2460\u2462"},{"id":"ref-for-list-item\u2460\u2463"},{"id":"ref-for-list-item\u2460\u2464"},{"id":"ref-for-list-item\u2460\u2465"}],"title":"4.1. Encoders and decoders"}],"url":"https://infra.spec.whatwg.org/#list-item"}, "5fb1ed8a": {"dfnID":"5fb1ed8a","dfnText":"ascii whitespace","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-whitespace"}],"title":"4.2. Names and labels"}],"url":"https://infra.spec.whatwg.org/#ascii-whitespace"}, "617d690e": {"dfnID":"617d690e","dfnText":"ascii byte","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-byte"}],"title":"2. Security background"},{"refs":[{"id":"ref-for-ascii-byte\u2460"}],"title":"9.1. single-byte decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2461"},{"id":"ref-for-ascii-byte\u2462"}],"title":"10.2.1. gb18030 decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2463"},{"id":"ref-for-ascii-byte\u2464"}],"title":"11.1.1. Big5 decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2465"},{"id":"ref-for-ascii-byte\u2466"}],"title":"12.1.1. EUC-JP decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2467"},{"id":"ref-for-ascii-byte\u2468"}],"title":"12.3.1. Shift_JIS decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2460\u24ea"},{"id":"ref-for-ascii-byte\u2460\u2460"}],"title":"13.1.1. EUC-KR decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2460\u2461"}],"title":"14.5.1. x-user-defined decoder"},{"refs":[{"id":"ref-for-ascii-byte\u2460\u2462"}],"title":"Implementation considerations"}],"url":"https://infra.spec.whatwg.org/#ascii-byte"}, "649608b9": {"dfnID":"649608b9","dfnText":"list","external":true,"refSections":[{"refs":[{"id":"ref-for-list"},{"id":"ref-for-list\u2460"},{"id":"ref-for-list\u2461"},{"id":"ref-for-list\u2462"},{"id":"ref-for-list\u2463"},{"id":"ref-for-list\u2464"}],"title":"3. Terminology"}],"url":"https://infra.spec.whatwg.org/#list"}, -"6b7796d8": {"dfnID":"6b7796d8","dfnText":"surrogates","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-surrogate"}],"title":"4.1. Encoders and decoders"},{"refs":[{"id":"ref-for-dfn-surrogate\u2460"}],"title":"6. Hooks for standards"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "6f2dfa22": {"dfnID":"6f2dfa22","dfnText":"ascii lowercase","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-lowercase"}],"title":"4.2. Names and labels"},{"refs":[{"id":"ref-for-ascii-lowercase\u2460"}],"title":"7.1. Interface mixin TextDecoderCommon"}],"url":"https://infra.spec.whatwg.org/#ascii-lowercase"}, "762869d3": {"dfnID":"762869d3","dfnText":"scalar value string","external":true,"refSections":[{"refs":[{"id":"ref-for-scalar-value-string"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://infra.spec.whatwg.org/#scalar-value-string"}, "7b0d918d": {"dfnID":"7b0d918d","dfnText":"break","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-break"}],"title":"3. Terminology"},{"refs":[{"id":"ref-for-iteration-break\u2460"},{"id":"ref-for-iteration-break\u2461"}],"title":"7.4. Interface TextEncoder"}],"url":"https://infra.spec.whatwg.org/#iteration-break"}, -"7cf8cfc4": {"dfnID":"7cf8cfc4","dfnText":"code units","external":true,"refSections":[{"refs":[{"id":"ref-for-def_code_unit"}],"title":"7.4. Interface TextEncoder"},{"refs":[{"id":"ref-for-def_code_unit\u2460"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, "7f9469b5": {"dfnID":"7f9469b5","dfnText":"ascii case-insensitive","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-case-insensitive"},{"id":"ref-for-ascii-case-insensitive\u2460"}],"title":"4.2. Names and labels"}],"url":"https://infra.spec.whatwg.org/#ascii-case-insensitive"}, "82ca3efc": {"dfnID":"82ca3efc","dfnText":"TypeError","external":true,"refSections":[{"refs":[{"id":"ref-for-exceptiondef-typeerror"},{"id":"ref-for-exceptiondef-typeerror\u2460"}],"title":"7.2. Interface TextDecoder"},{"refs":[{"id":"ref-for-exceptiondef-typeerror\u2461"},{"id":"ref-for-exceptiondef-typeerror\u2462"},{"id":"ref-for-exceptiondef-typeerror\u2463"}],"title":"7.5. Interface TextDecoderStream"}],"url":"https://webidl.spec.whatwg.org/#exceptiondef-typeerror"}, "8855a9aa": {"dfnID":"8855a9aa","dfnText":"DOMString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-DOMString"}],"title":"7.1. Interface mixin TextDecoderCommon"},{"refs":[{"id":"ref-for-idl-DOMString\u2460"}],"title":"7.2. Interface TextDecoder"},{"refs":[{"id":"ref-for-idl-DOMString\u2461"}],"title":"7.3. Interface mixin TextEncoderCommon"},{"refs":[{"id":"ref-for-idl-DOMString\u2462"}],"title":"7.5. Interface TextDecoderStream"},{"refs":[{"id":"ref-for-idl-DOMString\u2463"},{"id":"ref-for-idl-DOMString\u2464"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://webidl.spec.whatwg.org/#idl-DOMString"}, @@ -4100,7 +4422,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "97ba5569": {"dfnID":"97ba5569","dfnText":"writable","external":true,"refSections":[{"refs":[{"id":"ref-for-dom-generictransformstream-writable"},{"id":"ref-for-dom-generictransformstream-writable\u2460"},{"id":"ref-for-dom-generictransformstream-writable\u2461"}],"title":"7.5. Interface TextDecoderStream"},{"refs":[{"id":"ref-for-dom-generictransformstream-writable\u2462"},{"id":"ref-for-dom-generictransformstream-writable\u2463"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://streams.spec.whatwg.org/#dom-generictransformstream-writable"}, "99c988d6": {"dfnID":"99c988d6","dfnText":"remove","external":true,"refSections":[{"refs":[{"id":"ref-for-list-remove"},{"id":"ref-for-list-remove\u2460"}],"title":"3. Terminology"}],"url":"https://infra.spec.whatwg.org/#list-remove"}, "a088e610": {"dfnID":"a088e610","dfnText":"convert","external":true,"refSections":[{"refs":[{"id":"ref-for-javascript-string-convert"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://infra.spec.whatwg.org/#javascript-string-convert"}, -"a3fb968a": {"dfnID":"a3fb968a","dfnText":"surrogate","external":true,"refSections":[{"refs":[{"id":"ref-for-surrogate"}],"title":"4.1. Encoders and decoders"},{"refs":[{"id":"ref-for-surrogate\u2460"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://infra.spec.whatwg.org/#surrogate"}, +"a3fb968a": {"dfnID":"a3fb968a","dfnText":"surrogate","external":true,"refSections":[{"refs":[{"id":"ref-for-surrogate"},{"id":"ref-for-surrogate\u2460"}],"title":"4.1. Encoders and decoders"},{"refs":[{"id":"ref-for-surrogate\u2461"}],"title":"6. Hooks for standards"},{"refs":[{"id":"ref-for-surrogate\u2462"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://infra.spec.whatwg.org/#surrogate"}, "a72449dd": {"dfnID":"a72449dd","dfnText":"in parallel","external":true,"refSections":[{"refs":[{"id":"ref-for-in-parallel"}],"title":"3. Terminology"},{"refs":[{"id":"ref-for-in-parallel\u2460"}],"title":"6. Hooks for standards"}],"url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, "ae8def21": {"dfnID":"ae8def21","dfnText":"contain","external":true,"refSections":[{"refs":[{"id":"ref-for-list-contain"},{"id":"ref-for-list-contain\u2460"}],"title":"3. Terminology"}],"url":"https://infra.spec.whatwg.org/#list-contain"}, "b0d7f3c3": {"dfnID":"b0d7f3c3","dfnText":"USVString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-USVString"}],"title":"7.2. Interface TextDecoder"},{"refs":[{"id":"ref-for-idl-USVString\u2460"},{"id":"ref-for-idl-USVString\u2461"}],"title":"7.4. Interface TextEncoder"},{"refs":[{"id":"ref-for-idl-USVString\u2462"}],"title":"7.6. Interface TextEncoderStream"}],"url":"https://webidl.spec.whatwg.org/#idl-USVString"}, @@ -4251,7 +4573,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "koi8-u": {"dfnID":"koi8-u","dfnText":"KOI8-U","external":false,"refSections":[{"refs":[{"id":"ref-for-koi8-u"}],"title":"4.2. Names and labels"}],"url":"#koi8-u"}, "label": {"dfnID":"label","dfnText":"labels","external":false,"refSections":[{"refs":[{"id":"ref-for-label"}],"title":"4.2. Names and labels"}],"url":"#label"}, "macintosh": {"dfnID":"macintosh","dfnText":"macintosh","external":false,"refSections":[{"refs":[{"id":"ref-for-macintosh"},{"id":"ref-for-macintosh\u2460"}],"title":"4.2. Names and labels"}],"url":"#macintosh"}, -"name": {"dfnID":"name","dfnText":"name","external":false,"refSections":[{"refs":[{"id":"ref-for-name"},{"id":"ref-for-name\u2460"},{"id":"ref-for-name\u2461"}],"title":"4.2. Names and labels"},{"refs":[{"id":"ref-for-name\u2462"}],"title":"7.1. Interface mixin TextDecoderCommon"},{"refs":[{"id":"ref-for-name\u2463"}],"title":"7.2. Interface TextDecoder"},{"refs":[{"id":"ref-for-name\u2464"}],"title":"7.5. Interface TextDecoderStream"},{"refs":[{"id":"ref-for-name\u2465"}],"title":"9. Legacy single-byte encodings"}],"url":"#name"}, +"name": {"dfnID":"name","dfnText":"name","external":false,"refSections":[{"refs":[{"id":"ref-for-name"}],"title":"4.2. Names and labels"},{"refs":[{"id":"ref-for-name\u2460"}],"title":"7.1. Interface mixin TextDecoderCommon"},{"refs":[{"id":"ref-for-name\u2461"}],"title":"9. Legacy single-byte encodings"}],"url":"#name"}, "replacement": {"dfnID":"replacement","dfnText":"14.1. replacement","external":false,"refSections":[{"refs":[{"id":"ref-for-replacement"}],"title":"2. Security background"},{"refs":[{"id":"ref-for-replacement\u2460"}],"title":"4.1. Encoders and decoders"},{"refs":[{"id":"ref-for-replacement\u2461"}],"title":"4.2. Names and labels"},{"refs":[{"id":"ref-for-replacement\u2462"}],"title":"4.3. Output encodings"},{"refs":[{"id":"ref-for-replacement\u2463"}],"title":"6.1. Legacy hooks for standards"},{"refs":[{"id":"ref-for-replacement\u2464"},{"id":"ref-for-replacement\u2465"}],"title":"7.2. Interface TextDecoder"},{"refs":[{"id":"ref-for-replacement\u2466"},{"id":"ref-for-replacement\u2467"}],"title":"7.5. Interface TextDecoderStream"},{"refs":[{"id":"ref-for-replacement"},{"id":"ref-for-replacement\u2468"}],"title":"14.1. replacement"},{"refs":[{"id":"ref-for-replacement\u2460\u24ea"},{"id":"ref-for-replacement\u2460\u2460"}],"title":"14.1.1. replacement decoder"}],"url":"#replacement"}, "replacement-decoder": {"dfnID":"replacement-decoder","dfnText":"14.1.1. replacement decoder","external":false,"refSections":[{"refs":[{"id":"ref-for-replacement-decoder"}],"title":"14.1.1. replacement decoder"}],"url":"#replacement-decoder"}, "replacement-error-returned-flag": {"dfnID":"replacement-error-returned-flag","dfnText":"replacement error returned","external":false,"refSections":[{"refs":[{"id":"ref-for-replacement-error-returned-flag"},{"id":"ref-for-replacement-error-returned-flag\u2460"}],"title":"14.1.1. replacement decoder"}],"url":"#replacement-error-returned-flag"}, @@ -4699,6 +5021,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -4916,8 +5295,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://streams.spec.whatwg.org/#transformstream": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"streams","spec":"streams","status":"current","text":"TransformStream","type":"interface","url":"https://streams.spec.whatwg.org/#transformstream"}, "https://streams.spec.whatwg.org/#transformstream-enqueue": {"export":true,"for_":["TransformStream"],"level":"1","normative":true,"shortname":"streams","spec":"streams","status":"current","text":"enqueue","type":"dfn","url":"https://streams.spec.whatwg.org/#transformstream-enqueue"}, "https://streams.spec.whatwg.org/#writable-stream": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"streams","spec":"streams","status":"current","text":"writable stream","type":"dfn","url":"https://streams.spec.whatwg.org/#writable-stream"}, -"https://w3c.github.io/i18n-glossary/#def_code_unit": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"code units","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#def_code_unit"}, -"https://w3c.github.io/i18n-glossary/#dfn-surrogate": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"surrogates","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "https://webidl.spec.whatwg.org/#AllowShared": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"AllowShared","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#AllowShared"}, "https://webidl.spec.whatwg.org/#BufferSource": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"BufferSource","type":"typedef","url":"https://webidl.spec.whatwg.org/#BufferSource"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, diff --git a/tests/github/whatwg/fetch/fetch.console.txt b/tests/github/whatwg/fetch/fetch.console.txt index c557eeb3cf..ea35711e15 100644 --- a/tests/github/whatwg/fetch/fetch.console.txt +++ b/tests/github/whatwg/fetch/fetch.console.txt @@ -1,7 +1,7 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. LINE 690:48: Spurious / in <a>. LINE 914:27: Spurious / in <a>. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE ~1622: The biblio refs [[HTTP-COND]] and [[HTTP-SEMANTICS]] are both aliases of the same base reference [[HTTP-SEMANTICS]]. Please choose one name and use it consistently. LINE ~1622: The biblio refs [[HTTP-AUTH]] and [[HTTP-SEMANTICS]] are both aliases of the same base reference [[HTTP-SEMANTICS]]. Please choose one name and use it consistently. LINE ~2156: The biblio refs [[HTTP-COND]] and [[HTTP-SEMANTICS]] are both aliases of the same base reference [[HTTP-SEMANTICS]]. Please choose one name and use it consistently. @@ -42,10 +42,17 @@ LINE 6249: No 'dfn' refs found for 'entries' with spec 'xhr'. <a bs-line-number="6249" data-link-spec="xhr" data-link-type="dfn" data-lt="entries">entries</a> LINE 6700: No 'dfn' refs found for 'cannot-be-a-base-url'. <a bs-line-number="6700" data-link-type="dfn" data-lt="cannot-be-a-base-URL">cannot-be-a-base-URL</a> +LINE 6768: No 'dfn' refs found for 'follow' with for='['AbortSignal']'. +<a bs-line-number="6768" data-link-for="AbortSignal" data-link-type="dfn" data-lt="follow">follow</a> +LINE 6951: No 'dfn' refs found for 'follow' with for='['AbortSignal']'. +<a bs-line-number="6951" data-link-for="AbortSignal" data-link-type="dfn" data-lt="follow">follow</a> LINE 7215: No 'dfn' refs found for 'aborted flag' with for='['AbortSignal']'. <a bs-line-number="7215" data-link-for="AbortSignal" data-link-type="dfn" data-lt="aborted flag">aborted flag</a> WARNING: Multiple elements have the same ID 'biblio-http-semantics'. Deduping, but this ID may not be stable across revisions. +WARNING: No 'dom-headers-getsetcookie' ID found, skipping MDN features that would target it. +WARNING: No 'ref-for-dom-response-json①' ID found, skipping MDN features that would target it. +WARNING: No 'sec-purpose-header' ID found, skipping MDN features that would target it. WARNING: The following locally-defined biblio entries are unused and can be removed: * HTTP-COND * HTTP-RANGE diff --git a/tests/github/whatwg/fetch/fetch.html b/tests/github/whatwg/fetch/fetch.html index 6d7813e9f6..d64a5206ed 100644 --- a/tests/github/whatwg/fetch/fetch.html +++ b/tests/github/whatwg/fetch/fetch.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Fetch Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-fetch.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-fetch.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-fetch.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Fetch</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref" id="title">Fetch</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/fetch">GitHub whatwg/fetch</a> (<a href="https://github.com/whatwg/fetch/issues/new">new issue</a>, <a href="https://github.com/whatwg/fetch/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/fetch">GitHub whatwg/fetch</a> (<a href="https://github.com/whatwg/fetch/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/fetch/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/fetch/commits">GitHub whatwg/fetch/commits</a> @@ -4284,10 +4616,10 @@ <h3 class="heading settled" data-level="5.2" id="bodyinit-unions"><span class="s <p>Set <var>source</var> to a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-get-buffer-source-copy" id="ref-for-dfn-get-buffer-source-copy①">copy of the bytes</a> held by <var>object</var>. </p> <dt><code class="idl"><a data-link-type="idl" href="https://xhr.spec.whatwg.org/#formdata" id="ref-for-formdata②">FormData</a></code> <dd> - <p>Set <var>action</var> to this step: run the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm" id="ref-for-multipart/form-data-encoding-algorithm"><code>multipart/form-data</code> encoding algorithm</a>, with <var>object</var>’s <a data-link-type="dfn" href="https://xhr.spec.whatwg.org/#concept-formdata-entry-list" id="ref-for-concept-formdata-entry-list">entry list</a> and <a data-link-type="dfn" href="https://encoding.spec.whatwg.org/#utf-8" id="ref-for-utf-8">UTF-8</a>. </p> + <p>Set <var>action</var> to this step: run the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-encoding-algorithm" id="ref-for-multipart%2Fform-data-encoding-algorithm"><code>multipart/form-data</code> encoding algorithm</a>, with <var>object</var>’s <a data-link-type="dfn" href="https://xhr.spec.whatwg.org/#concept-formdata-entry-list" id="ref-for-concept-formdata-entry-list">entry list</a> and <a data-link-type="dfn" href="https://encoding.spec.whatwg.org/#utf-8" id="ref-for-utf-8">UTF-8</a>. </p> <p>Set <var>source</var> to <var>object</var>. </p> <p>Set <var>length</var> to <span class="XXX">unclear, see <a href="https://github.com/whatwg/html/issues/6424">html/6424</a> for improving this</span>. </p> - <p>Set <var>Content-Type</var> to `<code>multipart/form-data; boundary=</code>`, followed by the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-boundary-string" id="ref-for-multipart/form-data-boundary-string"><code>multipart/form-data</code> boundary string</a> generated by the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm" id="ref-for-multipart/form-data-encoding-algorithm①"><code>multipart/form-data</code> encoding algorithm</a>. </p> + <p>Set <var>Content-Type</var> to `<code>multipart/form-data; boundary=</code>`, followed by the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-boundary-string" id="ref-for-multipart%2Fform-data-boundary-string"><code>multipart/form-data</code> boundary string</a> generated by the <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-encoding-algorithm" id="ref-for-multipart%2Fform-data-encoding-algorithm①"><code>multipart/form-data</code> encoding algorithm</a>. </p> <dt><code class="idl"><a data-link-type="idl" href="https://url.spec.whatwg.org/#urlsearchparams" id="ref-for-urlsearchparams①">URLSearchParams</a></code> <dd> <p>Set <var>source</var> to the result of running the <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-urlencoded-serializer" id="ref-for-concept-urlencoded-serializer"><code>application/x-www-form-urlencoded</code> serializer</a> with <var>object</var>’s <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-urlsearchparams-list" id="ref-for-concept-urlsearchparams-list">list</a>. </p> @@ -4782,7 +5114,7 @@ <h3 class="heading settled" data-level="5.4" id="request-class"><span class="sec <li> <p>Set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③③">this</a>’s <a data-link-type="dfn" href="#concept-request-request" id="ref-for-concept-request-request④">request</a> to <var>request</var>. </p> <li> - <p>If <var>signal</var> is not null, then make <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③④">this</a>’s <a data-link-type="dfn" href="#request-signal" id="ref-for-request-signal②">signal</a> <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-follow" id="ref-for-abortsignal-follow">follow</a> <var>signal</var>. </p> + <p>If <var>signal</var> is not null, then make <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③④">this</a>’s <a data-link-type="dfn" href="#request-signal" id="ref-for-request-signal②">signal</a> <a data-link-type="dfn">follow</a> <var>signal</var>. </p> <li> <p>Set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⑤">this</a>’s <a data-link-type="dfn" href="#request-headers" id="ref-for-request-headers①">headers</a> to a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#new" id="ref-for-new⑤">new</a> <code class="idl"><a data-link-type="idl" href="#headers" id="ref-for-headers①③">Headers</a></code> object with <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this③⑥">this</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-realm" id="ref-for-concept-relevant-realm">relevant Realm</a>, whose <a data-link-type="dfn" href="#concept-headers-header-list" id="ref-for-concept-headers-header-list①⓪">header list</a> is <var>request</var>’s <a data-link-type="dfn" href="#concept-request-header-list" id="ref-for-concept-request-header-list④⑥">header list</a> and <a data-link-type="dfn" href="#concept-headers-guard" id="ref-for-concept-headers-guard①⑦">guard</a> is "<code>request</code>". </p> <li> @@ -4896,7 +5228,7 @@ <h3 class="heading settled" data-level="5.4" id="request-class"><span class="sec <li> <p>Let <var>clonedRequestObject</var> be the result of <a data-link-type="dfn" href="#request-create" id="ref-for-request-create">creating</a> a <code class="idl"><a data-link-type="idl" href="#request" id="ref-for-request①④">Request</a></code> object, given <var>clonedRequest</var>, <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑦⓪">this</a>’s <a data-link-type="dfn" href="#request-headers" id="ref-for-request-headers①⓪">headers</a>’s <a data-link-type="dfn" href="#concept-headers-guard" id="ref-for-concept-headers-guard①⑨">guard</a>, and <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑦①">this</a>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-realm" id="ref-for-concept-relevant-realm②">relevant Realm</a>. </p> <li> - <p>Make <var>clonedRequestObject</var>’s <a data-link-type="dfn" href="#request-signal" id="ref-for-request-signal⑤">signal</a> <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#abortsignal-follow" id="ref-for-abortsignal-follow①">follow</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑦②">this</a>’s <a data-link-type="dfn" href="#request-signal" id="ref-for-request-signal⑥">signal</a>. </p> + <p>Make <var>clonedRequestObject</var>’s <a data-link-type="dfn" href="#request-signal" id="ref-for-request-signal⑤">signal</a> <a data-link-type="dfn">follow</a> <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this⑦②">this</a>’s <a data-link-type="dfn" href="#request-signal" id="ref-for-request-signal⑥">signal</a>. </p> <li> <p>Return <var>clonedRequestObject</var>. </p> </ol> @@ -6186,7 +6518,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <ul> <li><span class="dfn-paneled" id="cca3cdb2">AbortSignal</span> <li><span class="dfn-paneled" id="87bc23a5">add</span> - <li><span class="dfn-paneled" id="53739b28">follow</span> </ul> <li> <a data-link-type="biblio">[ENCODING]</a> defines the following terms: @@ -6243,8 +6574,8 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="8a30477b">global object <small>(for environment settings object)</small></span> <li><span class="dfn-paneled" id="73a186aa">id</span> <li><span class="dfn-paneled" id="a72449dd">in parallel</span> - <li><span class="dfn-paneled" id="f8d80989">multipart/form-data boundary string</span> - <li><span class="dfn-paneled" id="1ff4e115">multipart/form-data encoding algorithm</span> + <li><span class="dfn-paneled" id="3c4ba245">multipart/form-data boundary string</span> + <li><span class="dfn-paneled" id="c59df421">multipart/form-data encoding algorithm</span> <li><span class="dfn-paneled" id="2594e562">navigate</span> <li><span class="dfn-paneled" id="b6ae4501">networking task source</span> <li><span class="dfn-paneled" id="602b1a68">obtain a site</span> @@ -6517,13 +6848,13 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> <dt id="biblio-http">[HTTP] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9112"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9112">https://www.rfc-editor.org/rfc/rfc9112</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9112.html"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9112.html">https://httpwg.org/specs/rfc9112.html</a> <dt id="biblio-http-caching">[HTTP-CACHING] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9111"><cite>HTTP Caching</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9111">https://www.rfc-editor.org/rfc/rfc9111</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9111.html"><cite>HTTP Caching</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9111.html">https://httpwg.org/specs/rfc9111.html</a> <dt id="biblio-http-semantics">[HTTP-SEMANTICS] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-http-semantics①">[HTTP-SEMANTICS] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-http3">[HTTP3] <dd>M. Bishop, Ed.. <a href="https://tools.ietf.org/html/draft-ietf-quic-http"><cite>Hypertext Transfer Protocol Version 3 (HTTP/3)</cite></a>. URL: <a href="https://tools.ietf.org/html/draft-ietf-quic-http">https://tools.ietf.org/html/draft-ietf-quic-http</a> <dt id="biblio-http3-datagram">[HTTP3-DATAGRAM] @@ -6543,7 +6874,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc7578">[RFC7578] <dd>L. Masinter. <a href="https://www.rfc-editor.org/rfc/rfc7578"><cite>Returning Values from Forms: multipart/form-data</cite></a>. July 2015. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc7578">https://www.rfc-editor.org/rfc/rfc7578</a> <dt id="biblio-rfc8941">[RFC8941] - <dd>M. Nottingham; P-H. Kamp. <a href="https://www.rfc-editor.org/rfc/rfc8941"><cite>Structured Field Values for HTTP</cite></a>. February 2021. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc8941">https://www.rfc-editor.org/rfc/rfc8941</a> + <dd>M. Nottingham; P-H. Kamp. <a href="https://httpwg.org/specs/rfc8941.html"><cite>Structured Field Values for HTTP</cite></a>. February 2021. Proposed Standard. URL: <a href="https://httpwg.org/specs/rfc8941.html">https://httpwg.org/specs/rfc8941.html</a> <dt id="biblio-sri">[SRI] <dd>Devdatta Akhawe; et al. <a href="https://w3c.github.io/webappsec-subresource-integrity/"><cite>Subresource Integrity</cite></a>. URL: <a href="https://w3c.github.io/webappsec-subresource-integrity/">https://w3c.github.io/webappsec-subresource-integrity/</a> <dt id="biblio-stale-while-revalidate">[STALE-WHILE-REVALIDATE] @@ -6716,7 +7047,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> </div> </details> @@ -6732,7 +7065,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> </div> </details> @@ -6748,7 +7083,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> </div> </details> @@ -6764,7 +7101,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> </div> </details> @@ -6780,7 +7119,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> </div> </details> @@ -6796,7 +7137,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> </div> </details> @@ -6812,7 +7155,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>44+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> <hr> <span class="nodejs yes"><span>Node.js</span><span>18.0.0+</span></span> </div> @@ -6895,7 +7238,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-body-body①"> <summary><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Request/body" title="The read-only body property of the Request interface contains a ReadableStream with the body contents that have been added to the request. Note that a request using the GET or HEAD method cannot have a body and null is return in these cases.">Request/body</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Request/body" title="The read-only body property of the Request interface contains a ReadableStream with the body contents that have been added to the request. Note that a request using the GET or HEAD method cannot have a body and null is returned in these cases.">Request/body</a></p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>11.1+</span></span><span class="chrome yes"><span>Chrome</span><span>105+</span></span> <hr> @@ -7183,6 +7526,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-request-signal②"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Request/signal" title="The read-only signal property of the Request interface returns the AbortSignal associated with the request.">Request/signal</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari yes"><span>Safari</span><span>12.1+</span></span><span class="chrome yes"><span>Chrome</span><span>66+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-body-text①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -7281,7 +7640,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-response-error①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Response/error" title="The error() method of the Response interface returns a new Response object associated with a network error.">Response/error</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Response/error_static" title="The error() static method of the Response interface returns a new Response object associated with a network error.">Response/error_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>39+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> @@ -7329,7 +7688,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-response-redirect①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Response/redirect" title="The redirect() method of the Response interface returns a Response resulting in a redirect to the specified URL.">Response/redirect</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Response/redirect_static" title="The redirect() static method of the Response interface returns a Response resulting in a redirect to the specified URL.">Response/redirect_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>39+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>44+</span></span> @@ -7860,7 +8219,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "1adcc035": {"dfnID":"1adcc035","dfnText":"abort when","external":true,"refSections":[{"refs":[{"id":"ref-for-abort-when"}],"title":"2.5. Connections"},{"refs":[{"id":"ref-for-abort-when\u2460"}],"title":"4.2. Scheme fetch"},{"refs":[{"id":"ref-for-abort-when\u2461"}],"title":"4.6. HTTP-network-or-cache fetch"},{"refs":[{"id":"ref-for-abort-when\u2462"},{"id":"ref-for-abort-when\u2463"},{"id":"ref-for-abort-when\u2464"}],"title":"4.7. HTTP-network fetch"}],"url":"https://infra.spec.whatwg.org/#abort-when"}, "1b5b1c0c": {"dfnID":"1b5b1c0c","dfnText":"api base url","external":true,"refSections":[{"refs":[{"id":"ref-for-api-base-url"}],"title":"5.4. Request class"},{"refs":[{"id":"ref-for-api-base-url\u2460"}],"title":"5.5. Response class"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, "1d2aa117": {"dfnID":"1d2aa117","dfnText":"tuple origin","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-origin-tuple"}],"title":"3.1. `Origin` header"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#concept-origin-tuple"}, -"1ff4e115": {"dfnID":"1ff4e115","dfnText":"multipart/form-data encoding algorithm","external":true,"refSections":[{"refs":[{"id":"ref-for-multipart/form-data-encoding-algorithm"},{"id":"ref-for-multipart/form-data-encoding-algorithm\u2460"}],"title":"5.2. BodyInit unions"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm"}, "22477314": {"dfnID":"22477314","dfnText":"domain","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-domain"}],"title":"4.1. Main fetch"}],"url":"https://url.spec.whatwg.org/#concept-domain"}, "22cb9a16": {"dfnID":"22cb9a16","dfnText":"ByteString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-ByteString"},{"id":"ref-for-idl-ByteString\u2460"},{"id":"ref-for-idl-ByteString\u2461"},{"id":"ref-for-idl-ByteString\u2462"},{"id":"ref-for-idl-ByteString\u2463"},{"id":"ref-for-idl-ByteString\u2464"},{"id":"ref-for-idl-ByteString\u2465"},{"id":"ref-for-idl-ByteString\u2466"},{"id":"ref-for-idl-ByteString\u2467"},{"id":"ref-for-idl-ByteString\u2468"},{"id":"ref-for-idl-ByteString\u2460\u24ea"},{"id":"ref-for-idl-ByteString\u2460\u2460"},{"id":"ref-for-idl-ByteString\u2460\u2461"}],"title":"5.1. Headers class"},{"refs":[{"id":"ref-for-idl-ByteString\u2460\u2462"},{"id":"ref-for-idl-ByteString\u2460\u2463"}],"title":"5.4. Request class"},{"refs":[{"id":"ref-for-idl-ByteString\u2460\u2464"},{"id":"ref-for-idl-ByteString\u2460\u2465"}],"title":"5.5. Response class"}],"url":"https://webidl.spec.whatwg.org/#idl-ByteString"}, "24bd7d25": {"dfnID":"24bd7d25","dfnText":"upon fulfillment","external":true,"refSections":[{"refs":[{"id":"ref-for-upon-fulfillment"}],"title":"5.3. Body mixin"}],"url":"https://webidl.spec.whatwg.org/#upon-fulfillment"}, @@ -7882,6 +8240,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "3b60d743": {"dfnID":"3b60d743","dfnText":"parsing structured fields","external":true,"refSections":[{"refs":[{"id":"ref-for-section-4.2"}],"title":"2.2.2. Headers"}],"url":"https://tools.ietf.org/html/rfc8941#section-4.2"}, "3b90bdcd": {"dfnID":"3b90bdcd","dfnText":"resolve","external":true,"refSections":[{"refs":[{"id":"ref-for-resolve"}],"title":"5.6. Fetch method"}],"url":"https://webidl.spec.whatwg.org/#resolve"}, "3bd18bd6": {"dfnID":"3bd18bd6","dfnText":"error","external":true,"refSections":[{"refs":[{"id":"ref-for-readablestream-error"},{"id":"ref-for-readablestream-error\u2460"}],"title":"4.7. HTTP-network fetch"},{"refs":[{"id":"ref-for-readablestream-error\u2461"}],"title":"5.6. Fetch method"}],"url":"https://streams.spec.whatwg.org/#readablestream-error"}, +"3c4ba245": {"dfnID":"3c4ba245","dfnText":"multipart/form-data boundary string","external":true,"refSections":[{"refs":[{"id":"ref-for-multipart%2Fform-data-boundary-string"}],"title":"5.2. BodyInit unions"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-boundary-string"}, "3d877348": {"dfnID":"3d877348","dfnText":"should fetching request be blocked as mixed content?","external":true,"refSections":[{"refs":[{"id":"ref-for-should-block-fetch"}],"title":"4.1. Main fetch"}],"url":"https://w3c.github.io/webappsec-mixed-content/#should-block-fetch"}, "3de9e659": {"dfnID":"3de9e659","dfnText":"byte sequence","external":true,"refSections":[{"refs":[{"id":"ref-for-byte-sequence"},{"id":"ref-for-byte-sequence\u2460"},{"id":"ref-for-byte-sequence\u2461"}],"title":"2.2.2. Headers"},{"refs":[{"id":"ref-for-byte-sequence\u2462"},{"id":"ref-for-byte-sequence\u2463"},{"id":"ref-for-byte-sequence\u2464"},{"id":"ref-for-byte-sequence\u2465"}],"title":"2.2.4. Bodies"},{"refs":[{"id":"ref-for-byte-sequence\u2466"},{"id":"ref-for-byte-sequence\u2467"}],"title":"2.2.5. Requests"},{"refs":[{"id":"ref-for-byte-sequence\u2468"},{"id":"ref-for-byte-sequence\u2460\u24ea"}],"title":"2.5. Connections"},{"refs":[{"id":"ref-for-byte-sequence\u2460\u2460"},{"id":"ref-for-byte-sequence\u2460\u2461"}],"title":"4. Fetching"},{"refs":[{"id":"ref-for-byte-sequence\u2460\u2462"}],"title":"4.9. CORS-preflight cache"},{"refs":[{"id":"ref-for-byte-sequence\u2460\u2463"},{"id":"ref-for-byte-sequence\u2460\u2464"},{"id":"ref-for-byte-sequence\u2460\u2465"},{"id":"ref-for-byte-sequence\u2460\u2466"}],"title":"5.2. BodyInit unions"},{"refs":[{"id":"ref-for-byte-sequence\u2460\u2467"}],"title":"5.3. Body mixin"},{"refs":[{"id":"ref-for-byte-sequence\u2460\u2468"}],"title":"7. data: URLs"}],"url":"https://infra.spec.whatwg.org/#byte-sequence"}, "3e0b5f4d": {"dfnID":"3e0b5f4d","dfnText":"byte-uppercase","external":true,"refSections":[{"refs":[{"id":"ref-for-byte-uppercase"}],"title":"2.2.1. Methods"}],"url":"https://infra.spec.whatwg.org/#byte-uppercase"}, @@ -7907,7 +8266,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "4b6086d7": {"dfnID":"4b6086d7","dfnText":"global object","external":true,"refSections":[{"refs":[{"id":"ref-for-global-object"},{"id":"ref-for-global-object\u2460"}],"title":"2. Infrastructure"},{"refs":[{"id":"ref-for-global-object\u2461"},{"id":"ref-for-global-object\u2462"},{"id":"ref-for-global-object\u2463"}],"title":"2.2.4. Bodies"},{"refs":[{"id":"ref-for-global-object\u2464"}],"title":"4.1. Main fetch"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#global-object"}, "53275e46": {"dfnID":"53275e46","dfnText":"append (for list)","external":true,"refSections":[{"refs":[{"id":"ref-for-list-append"},{"id":"ref-for-list-append\u2460"},{"id":"ref-for-list-append\u2461"},{"id":"ref-for-list-append\u2462"},{"id":"ref-for-list-append\u2463"},{"id":"ref-for-list-append\u2464"},{"id":"ref-for-list-append\u2465"},{"id":"ref-for-list-append\u2466"}],"title":"2.2.2. Headers"},{"refs":[{"id":"ref-for-list-append\u2467"}],"title":"4.4. HTTP-redirect fetch"},{"refs":[{"id":"ref-for-list-append\u2468"}],"title":"4.9. CORS-preflight cache"}],"url":"https://infra.spec.whatwg.org/#list-append"}, "5372cca8": {"dfnID":"5372cca8","dfnText":"boolean","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-boolean"}],"title":"5.1. Headers class"},{"refs":[{"id":"ref-for-idl-boolean\u2460"}],"title":"5.3. Body mixin"},{"refs":[{"id":"ref-for-idl-boolean\u2461"},{"id":"ref-for-idl-boolean\u2462"},{"id":"ref-for-idl-boolean\u2463"},{"id":"ref-for-idl-boolean\u2464"}],"title":"5.4. Request class"},{"refs":[{"id":"ref-for-idl-boolean\u2465"},{"id":"ref-for-idl-boolean\u2466"}],"title":"5.5. Response class"}],"url":"https://webidl.spec.whatwg.org/#idl-boolean"}, -"53739b28": {"dfnID":"53739b28","dfnText":"follow","external":true,"refSections":[{"refs":[{"id":"ref-for-abortsignal-follow"},{"id":"ref-for-abortsignal-follow\u2460"}],"title":"5.4. Request class"}],"url":"https://dom.spec.whatwg.org/#abortsignal-follow"}, "5442ea33": {"dfnID":"5442ea33","dfnText":"url serializer","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-serializer"}],"title":"2.2.5. Requests"},{"refs":[{"id":"ref-for-concept-url-serializer\u2460"}],"title":"4.6. HTTP-network-or-cache fetch"},{"refs":[{"id":"ref-for-concept-url-serializer\u2461"},{"id":"ref-for-concept-url-serializer\u2462"}],"title":"5.4. Request class"},{"refs":[{"id":"ref-for-concept-url-serializer\u2463"},{"id":"ref-for-concept-url-serializer\u2464"}],"title":"5.5. Response class"},{"refs":[{"id":"ref-for-concept-url-serializer\u2465"}],"title":"7. data: URLs"}],"url":"https://url.spec.whatwg.org/#concept-url-serializer"}, "5655d36f": {"dfnID":"5655d36f","dfnText":"error steps","external":true,"refSections":[{"refs":[{"id":"ref-for-read-request-error-steps"}],"title":"2.2.4. Bodies"}],"url":"https://streams.spec.whatwg.org/#read-request-error-steps"}, "5662e806": {"dfnID":"5662e806","dfnText":"should response to request be blocked by content security policy?","external":true,"refSections":[{"refs":[{"id":"ref-for-should-block-response\u2460"}],"title":"4.1. Main fetch"}],"url":"https://w3c.github.io/webappsec-csp/#should-block-response"}, @@ -8034,6 +8392,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "c0868016": {"dfnID":"c0868016","dfnText":"path","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-url-path"}],"title":"3.1. `Origin` header"},{"refs":[{"id":"ref-for-concept-url-path\u2460"}],"title":"4.2. Scheme fetch"},{"refs":[{"id":"ref-for-concept-url-path\u2461"}],"title":"5.4. Request class"}],"url":"https://url.spec.whatwg.org/#concept-url-path"}, "c503ee23": {"dfnID":"c503ee23","dfnText":"append the Fetch metadata headers for a request","external":true,"refSections":[{"refs":[{"id":"ref-for-abstract-opdef-append-the-fetch-metadata-headers-for-a-request"}],"title":"4.6. HTTP-network-or-cache fetch"}],"url":"https://w3c.github.io/webappsec-fetch-metadata/#abstract-opdef-append-the-fetch-metadata-headers-for-a-request"}, "c59c07d7": {"dfnID":"c59c07d7","dfnText":"set the password","external":true,"refSections":[{"refs":[{"id":"ref-for-set-the-password"}],"title":"2.2.5. Requests"},{"refs":[{"id":"ref-for-set-the-password\u2460"}],"title":"4.6. HTTP-network-or-cache fetch"}],"url":"https://url.spec.whatwg.org/#set-the-password"}, +"c59df421": {"dfnID":"c59df421","dfnText":"multipart/form-data encoding algorithm","external":true,"refSections":[{"refs":[{"id":"ref-for-multipart%2Fform-data-encoding-algorithm"},{"id":"ref-for-multipart%2Fform-data-encoding-algorithm\u2460"}],"title":"5.2. BodyInit unions"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-encoding-algorithm"}, "c63519ed": {"dfnID":"c63519ed","dfnText":"top-level origin","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-environment-top-level-origin"}],"title":"2.6. Network partition keys"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-top-level-origin"}, "c6dbeae8": {"dfnID":"c6dbeae8","dfnText":"reporting endpoint","external":true,"refSections":[{"refs":[{"id":"ref-for-embedder-policy-reporting-endpoint"}],"title":"3.7. `Cross-Origin-Resource-Policy` header"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-reporting-endpoint"}, "c807e273": {"dfnID":"c807e273","dfnText":"NewObject","external":true,"refSections":[{"refs":[{"id":"ref-for-NewObject"},{"id":"ref-for-NewObject\u2460"},{"id":"ref-for-NewObject\u2461"},{"id":"ref-for-NewObject\u2462"},{"id":"ref-for-NewObject\u2463"}],"title":"5.3. Body mixin"},{"refs":[{"id":"ref-for-NewObject\u2464"}],"title":"5.4. Request class"},{"refs":[{"id":"ref-for-NewObject\u2465"},{"id":"ref-for-NewObject\u2466"},{"id":"ref-for-NewObject\u2467"}],"title":"5.5. Response class"},{"refs":[{"id":"ref-for-NewObject\u2468"}],"title":"5.6. Fetch method"}],"url":"https://webidl.spec.whatwg.org/#NewObject"}, @@ -8359,7 +8718,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "f4e7ce41": {"dfnID":"f4e7ce41","dfnText":"value","external":true,"refSections":[{"refs":[{"id":"ref-for-embedder-policy-value-2"}],"title":"3.7. `Cross-Origin-Resource-Policy` header"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-value-2"}, "f5a157b3": {"dfnID":"f5a157b3","dfnText":"XMLHttpRequestUpload","external":true,"refSections":[{"refs":[{"id":"ref-for-xmlhttprequestupload"}],"title":"2.2.5. Requests"}],"url":"https://xhr.spec.whatwg.org/#xmlhttprequestupload"}, "f77a5712": {"dfnID":"f77a5712","dfnText":"report only reporting endpoint","external":true,"refSections":[{"refs":[{"id":"ref-for-embedder-policy-report-only-reporting-endpoint"}],"title":"3.7. `Cross-Origin-Resource-Policy` header"}],"url":"https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-report-only-reporting-endpoint"}, -"f8d80989": {"dfnID":"f8d80989","dfnText":"multipart/form-data boundary string","external":true,"refSections":[{"refs":[{"id":"ref-for-multipart/form-data-boundary-string"}],"title":"5.2. BodyInit unions"}],"url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-boundary-string"}, "f937b7b6": {"dfnID":"f937b7b6","dfnText":"continue","external":true,"refSections":[{"refs":[{"id":"ref-for-iteration-continue"}],"title":"2.2.2. Headers"},{"refs":[{"id":"ref-for-iteration-continue\u2460"}],"title":"3.4. `Content-Type` header"}],"url":"https://infra.spec.whatwg.org/#iteration-continue"}, "fail-the-websocket-connection": {"dfnID":"fail-the-websocket-connection","dfnText":"Fail the WebSocket connection","external":false,"refSections":[{"refs":[{"id":"ref-for-fail-the-websocket-connection"},{"id":"ref-for-fail-the-websocket-connection\u2460"},{"id":"ref-for-fail-the-websocket-connection\u2461"}],"title":"6.2. Opening handshake"}],"url":"#fail-the-websocket-connection"}, "fb12580d": {"dfnID":"fb12580d","dfnText":"upgrade request to a potentially trustworthy url, if appropriate","external":true,"refSections":[{"refs":[{"id":"ref-for-upgrade-request"}],"title":"4.1. Main fetch"}],"url":"https://w3c.github.io/webappsec-upgrade-insecure-requests/#upgrade-request"}, @@ -8866,6 +9224,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -9218,7 +9633,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#use-cors-preflight-flag": {"export":true,"for_":["request"],"level":"","normative":true,"shortname":"fetch","spec":"fetch","status":"local","text":"use-cors-preflight flag","type":"dfn","url":"#use-cors-preflight-flag"}, "https://dom.spec.whatwg.org/#abortsignal": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"AbortSignal","type":"interface","url":"https://dom.spec.whatwg.org/#abortsignal"}, "https://dom.spec.whatwg.org/#abortsignal-add": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"add","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-add"}, -"https://dom.spec.whatwg.org/#abortsignal-follow": {"export":true,"for_":["AbortSignal"],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"follow","type":"dfn","url":"https://dom.spec.whatwg.org/#abortsignal-follow"}, "https://encoding.spec.whatwg.org/#utf-8": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"encoding","spec":"encoding","status":"current","text":"utf-8","type":"dfn","url":"https://encoding.spec.whatwg.org/#utf-8"}, "https://encoding.spec.whatwg.org/#utf-8-decode": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"encoding","spec":"encoding","status":"current","text":"utf-8 decode","type":"dfn","url":"https://encoding.spec.whatwg.org/#utf-8-decode"}, "https://encoding.spec.whatwg.org/#utf-8-decode-without-bom": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"encoding","spec":"encoding","status":"current","text":"utf-8 decode without bom","type":"dfn","url":"https://encoding.spec.whatwg.org/#utf-8-decode-without-bom"}, @@ -9241,8 +9655,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/browsers.html#site": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"site","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsers.html#site"}, "https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"navigate","type":"dfn","url":"https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate"}, "https://html.spec.whatwg.org/multipage/document-sequences.html#nav-document": {"export":true,"for_":["navigable"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"active document","type":"dfn","url":"https://html.spec.whatwg.org/multipage/document-sequences.html#nav-document"}, -"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-boundary-string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"multipart/form-data boundary string","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-boundary-string"}, -"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"multipart/form-data encoding algorithm","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm"}, +"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-boundary-string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"multipart/form-data boundary string","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-boundary-string"}, +"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-encoding-algorithm": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"multipart/form-data encoding algorithm","type":"dfn","url":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart%2Fform-data-encoding-algorithm"}, "https://html.spec.whatwg.org/multipage/forms.html#the-form-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"form","type":"element","url":"https://html.spec.whatwg.org/multipage/forms.html#the-form-element"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#enqueue-the-following-steps": {"export":true,"for_":["parallel queue"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"enqueue steps","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#enqueue-the-following-steps"}, "https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"in parallel","type":"dfn","url":"https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel"}, diff --git a/tests/github/whatwg/fullscreen/fullscreen.console.txt b/tests/github/whatwg/fullscreen/fullscreen.console.txt index c167db3475..77d1bb6204 100644 --- a/tests/github/whatwg/fullscreen/fullscreen.console.txt +++ b/tests/github/whatwg/fullscreen/fullscreen.console.txt @@ -1,5 +1,5 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 49: No 'dfn' refs found for 'ancestor browsing context'. <a bs-line-number="49" data-link-type="dfn" data-lt="ancestor browsing context">ancestor browsing context</a> LINE 66: No 'dfn' refs found for 'pairs'. diff --git a/tests/github/whatwg/fullscreen/fullscreen.html b/tests/github/whatwg/fullscreen/fullscreen.html index 119e27934e..7fa482c577 100644 --- a/tests/github/whatwg/fullscreen/fullscreen.html +++ b/tests/github/whatwg/fullscreen/fullscreen.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Fullscreen API Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-fullscreen.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -104,7 +436,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-fullscreen.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-fullscreen.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Fullscreen API</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -112,7 +444,7 @@ <h1 class="p-name no-ref" id="title">Fullscreen API</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/fullscreen">GitHub whatwg/fullscreen</a> (<a href="https://github.com/whatwg/fullscreen/issues/new">new issue</a>, <a href="https://github.com/whatwg/fullscreen/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/fullscreen">GitHub whatwg/fullscreen</a> (<a href="https://github.com/whatwg/fullscreen/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/fullscreen/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/fullscreen/commits">GitHub whatwg/fullscreen/commits</a> @@ -321,7 +653,7 @@ <h2 class="heading settled" data-level="3" id="api"><span class="secno">3. </spa <p>If any of the following conditions are false, then set <var>error</var> to true: </p> <ul> <li> - <p><var>pending</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-element-namespace" id="ref-for-concept-element-namespace">namespace</a> is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace">HTML namespace</a> or <var>pending</var> is an <a href="https://www.w3.org/TR/SVG11/struct.html#SVGElement">SVG <code>svg</code></a> or <a href="https://www.w3.org/Math/draft-spec/chapter2.html#interf.toplevel">MathML <code>math</code></a> element. <a data-link-type="biblio" href="#biblio-svg" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG]</a> <a data-link-type="biblio" href="#biblio-mathml" title="Mathematical Markup Language (MathML) 1.01 Specification">[MATHML]</a> </p> + <p><var>pending</var>’s <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-element-namespace" id="ref-for-concept-element-namespace">namespace</a> is the <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#html-namespace" id="ref-for-html-namespace">HTML namespace</a> or <var>pending</var> is an <a href="https://www.w3.org/TR/SVG11/struct.html#SVGElement">SVG <code>svg</code></a> or <a href="https://www.w3.org/Math/draft-spec/chapter2.html#interf.toplevel">MathML <code>math</code></a> element. <a data-link-type="biblio" href="#biblio-svg" title="Scalable Vector Graphics (SVG) 1.1 (Second Edition)">[SVG]</a> <a data-link-type="biblio" href="#biblio-mathml" title="Mathematical Markup Language (MathML™) 1.01 Specification">[MATHML]</a> </p> <li> <p><var>pending</var> is not a <code><a data-link-type="element" href="https://html.spec.whatwg.org/multipage/interactive-elements.html#the-dialog-element" id="ref-for-the-dialog-element①">dialog</a></code> element. </p> <li> @@ -850,7 +1182,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-mathml">[MATHML] - <dd>Patrick D F Ion; Robert R Miner. <a href="https://www.w3.org/TR/REC-MathML/"><cite>Mathematical Markup Language (MathML) 1.01 Specification</cite></a>. 7 July 1999. REC. URL: <a href="https://www.w3.org/TR/REC-MathML/">https://www.w3.org/TR/REC-MathML/</a> + <dd>Patrick D F Ion; Robert R Miner. <a href="https://www.w3.org/TR/REC-MathML/"><cite>Mathematical Markup Language (MathML™) 1.01 Specification</cite></a>. 7 March 2023. REC. URL: <a href="https://www.w3.org/TR/REC-MathML/">https://www.w3.org/TR/REC-MathML/</a> <dt id="biblio-permissions-policy-1">[PERMISSIONS-POLICY-1] <dd>Ian Clelland. <a href="https://w3c.github.io/webappsec-permissions-policy/"><cite>Permissions Policy</cite></a>. URL: <a href="https://w3c.github.io/webappsec-permissions-policy/">https://w3c.github.io/webappsec-permissions-policy/</a> <dt id="biblio-svg">[SVG] @@ -892,11 +1224,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </pre> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-document-exitfullscreen①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/exitFullscreen" title="The Document method exitFullscreen() requests that the element on this document which is currently being presented in fullscreen mode be taken out of fullscreen mode, restoring the previous state of the screen. This usually reverses the effects of a previous call to Element.requestFullscreen().">Document/exitFullscreen</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -907,11 +1240,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-document-onfullscreenchange"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreenchange_event" title="The fullscreenchange event is fired immediately after the browser switches into or out of fullscreen mode.">Document/fullscreenchange_event</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -922,8 +1256,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/fullscreenchange_event" title="The fullscreenchange event is fired immediately after an Element switches into or out of fullscreen mode.">Element/fullscreenchange_event</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -934,26 +1269,28 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-document-fullscreenelement①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreenElement" title="The Document.fullscreenElement read-only property returns the Element that is currently being presented in fullscreen mode in this document, or null if fullscreen mode is not currently in use.">Document/fullscreenElement</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>50+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>50+</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-document-fullscreenenabled①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreenEnabled" title="The read-only fullscreenEnabled property on the Document interface indicates whether or not fullscreen mode is available.">Document/fullscreenEnabled</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -964,11 +1301,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-document-onfullscreenerror"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreenerror_event" title="The fullscreenerror event is fired when the browser cannot switch to fullscreen mode.">Document/fullscreenerror_event</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -979,8 +1317,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/fullscreenerror_event" title="The fullscreenerror event is fired when the browser cannot switch to fullscreen mode.">Element/fullscreenerror_event</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -991,11 +1330,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-element-requestfullscreen①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/requestFullscreen" title="The Element.requestFullscreen() method issues an asynchronous request to make the element be displayed in fullscreen mode.">Element/requestFullscreen</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>58+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1022,31 +1362,16 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-document-fullscreenelement②"> - <summary><span>MDN</span></summary> - <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/fullscreenElement" title="The fullscreenElement read-only property of the ShadowRoot interface returns the element within the shadow tree that is currently displayed in full screen.">ShadowRoot/fullscreenElement</a></p> - <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> - <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> - <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> - <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> - </div> - </div> - </details> - <details class="mdn-anno unpositioned" data-anno-for="::backdrop-pseudo-element"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::backdrop" title="The ::backdrop CSS pseudo-element is a box the size of the viewport which is rendered immediately beneath any element being presented in fullscreen mode. This includes both elements which have been placed in fullscreen mode using the Fullscreen API and <dialog> elements.">::backdrop</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/fullscreenElement" title="The fullscreenElement read-only property of the ShadowRoot interface returns the element within the shadow tree that is currently displayed in full screen.">ShadowRoot/fullscreenElement</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>47+</span></span><span class="safari yes"><span>Safari</span><span>15.4+</span></span><span class="chrome yes"><span>Chrome</span><span>37+</span></span> + <span class="firefox yes"><span>Firefox</span><span>64+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>71+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> - <span class="edge no"><span>Edge (Legacy)</span><span>None</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> @@ -1070,7 +1395,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="permissions-policy-integration"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/fullscreen" title="The HTTP Feature-Policy header fullscreen directive controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is enabled, the returned Promise rejects with a TypeError.">Headers/Feature-Policy/fullscreen</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy/fullscreen" title="The HTTP Permissions-Policy header fullscreen directive controls whether the current document is allowed to use Element.requestFullscreen().">Headers/Feature-Policy/fullscreen</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>62+</span></span> @@ -1082,6 +1407,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy/fullscreen" title="The HTTP Permissions-Policy header fullscreen directive controls whether the current document is allowed to use Element.requestFullscreen().">Headers/Permissions-Policy/fullscreen</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>88+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>88+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; @@ -1769,6 +2107,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/whatwg/infra/infra.console.txt b/tests/github/whatwg/infra/infra.console.txt index 645aa13702..beec36c270 100644 --- a/tests/github/whatwg/infra/infra.console.txt +++ b/tests/github/whatwg/infra/infra.console.txt @@ -1,2 +1,2 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. diff --git a/tests/github/whatwg/infra/infra.html b/tests/github/whatwg/infra/infra.html index d6b9e26820..2028fcd3fe 100644 --- a/tests/github/whatwg/infra/infra.html +++ b/tests/github/whatwg/infra/infra.html @@ -3,28 +3,141 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Infra Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-infra.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> <style> /* Used for normative exemplars of how to write algorithms, as distinct from .example */ .exemplary-prose { margin-left: 2em; } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> <style>/* Boilerplate: style-ref-hints */ @@ -62,7 +175,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-infra.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-infra.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Infra</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -70,7 +183,7 @@ <h1 class="p-name no-ref" id="title">Infra</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/infra">GitHub whatwg/infra</a> (<a href="https://github.com/whatwg/infra/issues/new">new issue</a>, <a href="https://github.com/whatwg/infra/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/infra">GitHub whatwg/infra</a> (<a href="https://github.com/whatwg/infra/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/infra/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/infra/commits">GitHub whatwg/infra/commits</a> diff --git a/tests/github/whatwg/loader/index.console.txt b/tests/github/whatwg/loader/index.console.txt index 66b03a10ec..344a3163a4 100644 --- a/tests/github/whatwg/loader/index.console.txt +++ b/tests/github/whatwg/loader/index.console.txt @@ -1,8 +1,8 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. LINE ? of computed-metadata.include: Found unmatched text macro [TWITTER]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. -LINE 1:38 of !Commits metadata: Found unmatched text macro [TWITTER] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. -LINE 1:49 of !Commits metadata: Found unmatched text macro [TWITTER]. Correct the macro, or escape it by replacing the opening [ with &#91; +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:40 of !Commits metadata: Found unmatched text macro [TWITTER] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:51 of !Commits metadata: Found unmatched text macro [TWITTER]. Correct the macro, or escape it by replacing the opening [ with &#91; LINE 158: Multiple elements have the same ID 'common-operations'. Deduping, but this ID may not be stable across revisions. LINE 676: Multiple elements have the same ID 'module-status-module'. diff --git a/tests/github/whatwg/loader/index.html b/tests/github/whatwg/loader/index.html index 66277303b0..bba907a7c0 100644 --- a/tests/github/whatwg/loader/index.html +++ b/tests/github/whatwg/loader/index.html @@ -3,16 +3,14 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Loader</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-javascript.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> <link crossorigin href="https://whatwg.github.io/loader" rel="canonical"> - <meta content="dark light" name="color-scheme"> <style> .note + .example, .note + .note { margin-top: 1em; } @@ -24,18 +22,133 @@ emu-note { display: block; margin: 1em 0 1em 6em; color: #666; } emu-note::before { content: "Note"; text-transform: uppercase; margin-left: -6em; display: block; float: left; } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> <body class="h-entry status-DREAM"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-javascript.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-javascript.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Loader</h1> <p id="subtitle">A Collection of Interesting Ideas — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -43,7 +156,7 @@ <h1 class="p-name no-ref" id="title">Loader</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/loader">GitHub whatwg/loader</a> (<a href="https://github.com/whatwg/loader/issues/new">new issue</a>, <a href="https://github.com/whatwg/loader/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/loader">GitHub whatwg/loader</a> (<a href="https://github.com/whatwg/loader/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/loader/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dd><a href="https://github.com/whatwg/loader/issues/new">File an issue</a> (<a href="https://github.com/whatwg/loader/issues?state=open">open issues</a>) <dt>Commits: diff --git a/tests/github/whatwg/mimesniff/mimesniff.console.txt b/tests/github/whatwg/mimesniff/mimesniff.console.txt index c14112829d..ba87275004 100644 --- a/tests/github/whatwg/mimesniff/mimesniff.console.txt +++ b/tests/github/whatwg/mimesniff/mimesniff.console.txt @@ -1,3 +1,3 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINK ERROR: Obsolete biblio ref: [rfc7231] is replaced by [rfc9110]. Either update the reference, or use [rfc7231 obsolete] if this is an intentionally-obsolete reference. diff --git a/tests/github/whatwg/mimesniff/mimesniff.html b/tests/github/whatwg/mimesniff/mimesniff.html index 94ad19a747..0a4d34ba34 100644 --- a/tests/github/whatwg/mimesniff/mimesniff.html +++ b/tests/github/whatwg/mimesniff/mimesniff.html @@ -3,22 +3,135 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>MIME Sniffing Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-mimesniff.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> <style>/* Boilerplate: style-ref-hints */ @@ -56,7 +169,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-mimesniff.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-mimesniff.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">MIME Sniffing</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -64,7 +177,7 @@ <h1 class="p-name no-ref" id="title">MIME Sniffing</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/mimesniff">GitHub whatwg/mimesniff</a> (<a href="https://github.com/whatwg/mimesniff/issues/new">new issue</a>, <a href="https://github.com/whatwg/mimesniff/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/mimesniff">GitHub whatwg/mimesniff</a> (<a href="https://github.com/whatwg/mimesniff/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/mimesniff/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/mimesniff/commits">GitHub whatwg/mimesniff/commits</a> @@ -1830,7 +1943,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-ftp">[FTP] <dd>J. Postel; J. Reynolds. <a href="https://www.rfc-editor.org/rfc/rfc959"><cite>File Transfer Protocol</cite></a>. October 1985. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc959">https://www.rfc-editor.org/rfc/rfc959</a> <dt id="biblio-http">[HTTP] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9112"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9112">https://www.rfc-editor.org/rfc/rfc9112</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9112.html"><cite>HTTP/1.1</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9112.html">https://httpwg.org/specs/rfc9112.html</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-mimetype">[MIMETYPE] @@ -1838,7 +1951,7 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dt id="biblio-rfc2119">[RFC2119] <dd>S. Bradner. <a href="https://datatracker.ietf.org/doc/html/rfc2119"><cite>Key words for use in RFCs to Indicate Requirement Levels</cite></a>. March 1997. Best Current Practice. URL: <a href="https://datatracker.ietf.org/doc/html/rfc2119">https://datatracker.ietf.org/doc/html/rfc2119</a> <dt id="biblio-rfc7231">[RFC7231] - <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://www.rfc-editor.org/rfc/rfc9110"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc9110">https://www.rfc-editor.org/rfc/rfc9110</a> + <dd>R. Fielding, Ed.; M. Nottingham, Ed.; J. Reschke, Ed.. <a href="https://httpwg.org/specs/rfc9110.html"><cite>HTTP Semantics</cite></a>. June 2022. Internet Standard. URL: <a href="https://httpwg.org/specs/rfc9110.html">https://httpwg.org/specs/rfc9110.html</a> <dt id="biblio-rfc7303">[RFC7303] <dd>H. Thompson; C. Lilley. <a href="https://www.rfc-editor.org/rfc/rfc7303"><cite>XML Media Types</cite></a>. July 2014. Proposed Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc7303">https://www.rfc-editor.org/rfc/rfc7303</a> <dt id="biblio-rfc8081">[RFC8081] diff --git a/tests/github/whatwg/notifications/notifications.console.txt b/tests/github/whatwg/notifications/notifications.console.txt index 88d322e87e..777280c143 100644 --- a/tests/github/whatwg/notifications/notifications.console.txt +++ b/tests/github/whatwg/notifications/notifications.console.txt @@ -1,5 +1,5 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINK ERROR: No 'idl' refs found for 'DOMTimeStamp'. {{DOMTimeStamp}} LINK ERROR: No 'idl-name' refs found for 'DOMTimeStamp'. diff --git a/tests/github/whatwg/notifications/notifications.html b/tests/github/whatwg/notifications/notifications.html index 45fb41d005..3ecf2b5c1e 100644 --- a/tests/github/whatwg/notifications/notifications.html +++ b/tests/github/whatwg/notifications/notifications.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Notifications API Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-notifications.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-notifications.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-notifications.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Notifications API</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref" id="title">Notifications API</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/notifications">GitHub whatwg/notifications</a> (<a href="https://github.com/whatwg/notifications/issues/new">new issue</a>, <a href="https://github.com/whatwg/notifications/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/notifications">GitHub whatwg/notifications</a> (<a href="https://github.com/whatwg/notifications/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/notifications/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/notifications/commits">GitHub whatwg/notifications/commits</a> @@ -1193,7 +1525,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-bidi">[BIDI] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-fetch">[FETCH] @@ -1324,7 +1656,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1384,7 +1716,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1416,7 +1748,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1448,7 +1780,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1464,7 +1796,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1496,7 +1828,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1506,7 +1838,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/image" title="The image read-only property of the Notification interface contains the URL of an image to be displayed as part of the notification, as specified in the image option of the Notification() constructor.">Notification/image</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>53+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>56+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1528,14 +1860,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-notification-maxactions"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/maxActions" title="The maxActions attribute of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.">Notification/maxActions</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/maxActions_static" title="The maxActions attribute of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.">Notification/maxActions_static</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>48+</span></span> @@ -1551,7 +1883,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-notification-permission"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/permission" title="The permission read-only property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.">Notification/permission</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/permission_static" title="The permission read-only property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.">Notification/permission_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>22+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>32+</span></span> @@ -1560,7 +1892,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1583,7 +1915,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-notification-requestpermission"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/requestPermission" title="The requestPermission() method of the Notification interface requests permission from the user for the current origin to display notifications.">Notification/requestPermission</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/requestPermission_static" title="The requestPermission() static method of the Notification interface requests permission from the user for the current origin to display notifications.">Notification/requestPermission_static</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>22+</span></span><span class="safari yes"><span>Safari</span><span>15+</span></span><span class="chrome yes"><span>Chrome</span><span>20+</span></span> @@ -1592,7 +1924,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android yes"><span>Firefox for Android</span><span>22+</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android yes"><span>Firefox for Android</span><span>22+</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1629,12 +1961,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-notification-silent"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/silent" title="The silent read-only property of the Notification interface specifies whether the notification should be silent, i.e., no sounds or vibrations should be issued, regardless of the device settings. This is specified in the silent option of the Notification() constructor.">Notification/silent</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> + <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -1663,7 +1994,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-notification-timestamp"> <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/timestamp" title="The timestamp read-only property of the Notification interface returns a DOMTimeStamp, as specified in the timestamp option of the Notification() constructor.">Notification/timestamp</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Notification/timestamp" title="The timestamp read-only property of the Notification interface returns a number, as specified in the timestamp option of the Notification() constructor.">Notification/timestamp</a></p> <p class="less-than-two-engines-text">In only one current engine.</p> <div class="support"> <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>50+</span></span> @@ -1688,7 +2019,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android yes"><span>Chrome for Android</span><span>42+</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -1720,14 +2051,15 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>14+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>None</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>None</span></span><span class="opera_android no"><span>Opera Mobile</span><span>None</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-notificationevent-notificationevent"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NotificationEvent/NotificationEvent" title="The NotificationEvent() constructor creates a new NotificationEvent object.">NotificationEvent/NotificationEvent</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> <hr> @@ -1735,7 +2067,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>37+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>37+</span></span> </div> </div> </details> @@ -1755,9 +2087,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="notificationevent"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/NotificationEvent" title="The parameter passed into the onnotificationclick handler, the NotificationEvent interface represents a notification click event that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker.">NotificationEvent</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> <hr> @@ -1765,7 +2098,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>37+</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>37+</span></span> </div> </div> </details> @@ -1815,9 +2148,10 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerregistration-getnotifications"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/getNotifications" title="The getNotifications() method of the ServiceWorkerRegistration interface returns a list of the notifications in the order that they were created from the current origin via the current service worker registration. Origins can have many active but differently-scoped service worker registrations. Notifications created by one service worker on the same origin will not be available to other active services workers on that same origin.">ServiceWorkerRegistration/getNotifications</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>40+</span></span> <hr> @@ -1825,14 +2159,15 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-serviceworkerregistration-shownotification"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/showNotification" title="The showNotification() method of the ServiceWorkerRegistration interface creates a notification on an active service worker.">ServiceWorkerRegistration/showNotification</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>42+</span></span> <hr> @@ -1840,7 +2175,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <hr> <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> - <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>None</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>16.4+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>None</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> </details> @@ -2595,6 +2930,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/whatwg/quirks/quirks.console.txt b/tests/github/whatwg/quirks/quirks.console.txt index d515a1de04..50467cc690 100644 --- a/tests/github/whatwg/quirks/quirks.console.txt +++ b/tests/github/whatwg/quirks/quirks.console.txt @@ -1,22 +1,96 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE ~224: Multiple possible 'border-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-color +spec:css-borders-4; type:property; text:border-color +'border-color' +LINE ~225: Multiple possible 'border-top-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-color +spec:css-borders-4; type:property; text:border-top-color +'border-top-color' +LINE ~226: Multiple possible 'border-right-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-color +spec:css-borders-4; type:property; text:border-right-color +'border-right-color' +LINE ~227: Multiple possible 'border-bottom-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-color +spec:css-borders-4; type:property; text:border-bottom-color +'border-bottom-color' +LINE ~228: Multiple possible 'border-left-color' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-color +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-color +spec:css-borders-4; type:property; text:border-left-color +'border-left-color' LINK ERROR: No 'interface' refs found for 'CSS'. {{CSS}} -LINE ~277: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' -LINE ~278: No 'property' refs found for 'max-width' with spec 'css2'. -'max-width' -LINE ~279: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~280: No 'property' refs found for 'min-width' with spec 'css2'. -'min-width' +LINE ~261: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~262: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~263: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~264: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' LINE 300: Multiple possible 'rect()' functionish refs. Arbitrarily chose https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:css-shapes-1; type:function; text:rect() spec:css-masking-1; type:function; text:rect() <a bs-line-number="300" data-link-type="functionish" data-lt="rect()">rect()</a> -LINE ~564: No 'property' refs found for 'min-height' with spec 'css2'. -'min-height' -LINE ~564: No 'property' refs found for 'max-height' with spec 'css2'. -'max-height' +LINE ~312: Multiple possible 'border-top-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-top-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-top-width +spec:css-borders-4; type:property; text:border-top-width +'border-top-width' +LINE ~312: Multiple possible 'border-bottom-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-bottom-width +spec:css-borders-4; type:property; text:border-bottom-width +'border-bottom-width' +LINE ~312: Multiple possible 'border-right-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-right-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-right-width +spec:css-borders-4; type:property; text:border-right-width +'border-right-width' +LINE ~312: Multiple possible 'border-left-width' property refs. +Arbitrarily chose https://drafts.csswg.org/css-backgrounds-3/#propdef-border-left-width +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:css-backgrounds-3; type:property; text:border-left-width +spec:css-borders-4; type:property; text:border-left-width +'border-left-width' +LINE 434: No 'dfn' refs found for 'spanning element'. +<a bs-line-number="434" data-link-type="dfn" data-lt="spanning element">spanning element</a> +LINE 587: Multiple possible 'type selector' dfn refs. +Arbitrarily chose https://drafts.csswg.org/selectors-4/#type-selector +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:selectors-4; type:dfn; text:type selector +spec:css2; type:dfn; text:type selector +<a bs-line-number="587" data-link-type="dfn" data-lt="type selector">type selector</a> diff --git a/tests/github/whatwg/quirks/quirks.html b/tests/github/whatwg/quirks/quirks.html index 3a22b2ee5c..e39879e388 100644 --- a/tests/github/whatwg/quirks/quirks.html +++ b/tests/github/whatwg/quirks/quirks.html @@ -3,15 +3,13 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Quirks Mode Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-quirks.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> <style> .logo { position:absolute; top:1em; right:1em; width:106px; height:106px; border:1px outset gray; margin-top:-4px; margin-right:-4px } div.head .logo > img { top:2px; right:2px; border:1px inset gray } @@ -19,13 +17,128 @@ .logo { width:calc(4em + 6px); height:calc(4em + 6px) } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> <style>/* Boilerplate: style-ref-hints */ @@ -106,7 +219,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-quirks.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-quirks.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Quirks Mode</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -114,7 +227,7 @@ <h1 class="p-name no-ref" id="title">Quirks Mode</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/quirks">GitHub whatwg/quirks</a> (<a href="https://github.com/whatwg/quirks/issues/new">new issue</a>, <a href="https://github.com/whatwg/quirks/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/quirks">GitHub whatwg/quirks</a> (<a href="https://github.com/whatwg/quirks/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/quirks/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/quirks/commits">GitHub whatwg/quirks/commits</a> @@ -329,10 +442,10 @@ <h3 class="heading settled" data-level="3.2" id="the-unitless-length-quirk"><spa <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin-top" id="ref-for-propdef-margin-top">margin-top</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin-bottom" id="ref-for-propdef-margin-bottom">margin-bottom</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-margin" id="ref-for-propdef-margin">margin</a> - <li><a class="property css" data-link-type="property">max-height</a> - <li><a class="property css" data-link-type="property">max-width</a> - <li><a class="property css" data-link-type="property">min-height</a> - <li><a class="property css" data-link-type="property">min-width</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height">max-height</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width" id="ref-for-propdef-max-width">max-width</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height">min-height</a> + <li><a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" id="ref-for-propdef-min-width">min-width</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-padding-top" id="ref-for-propdef-padding-top">padding-top</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-padding-right" id="ref-for-propdef-padding-right">padding-right</a> <li><a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-box-4/#propdef-padding-bottom" id="ref-for-propdef-padding-bottom">padding-bottom</a> @@ -426,7 +539,7 @@ <h3 class="heading settled" data-level="3.7" id="the-body-element-fills-the-html <li> <p><var>body</var> is not an <a data-link-type="dfn" href="https://drafts.csswg.org/css-display-4/#inline-level" id="ref-for-inline-level①">inline-level</a> element. </p> <li> - <p><var>body</var> is not a <a data-link-type="dfn" href="https://www.w3.org/TR/css-multicol-1/#spanning-element" id="ref-for-spanning-element">spanning element</a>. <a data-link-type="biblio" href="#biblio-css3-multicol" title="CSS Multi-column Layout Module Level 1">[CSS3-MULTICOL]</a> </p> + <p><var>body</var> is not a <a data-link-type="dfn">spanning element</a>. <a data-link-type="biblio" href="#biblio-css3-multicol" title="CSS Multi-column Layout Module Level 1">[CSS3-MULTICOL]</a> </p> </ul> <p>...then <var>body</var> must have its <a data-link-type="dfn" href="https://drafts.csswg.org/css2/box.html#border-edge" id="ref-for-border-edge②">border box</a> size in the <a data-link-type="dfn" href="https://drafts.csswg.org/css-writing-modes-4/#block-flow-direction" id="ref-for-block-flow-direction②">block flow direction</a> set using the following algorithm: </p> @@ -498,7 +611,7 @@ <h3 class="heading settled" data-level="3.11" id="the-text-decoration-doesnt-pro according to the CSS specification. Return the <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value①⑥">computed value</a> of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-color-4/#propdef-color" id="ref-for-propdef-color⑧">color</a> property of <var>element</var> as specified in the CSS specification. </p> </ol> <h3 class="heading settled" data-level="3.13" id="the-table-cell-height-box-sizing-quirk"><span class="secno">3.13. </span><span class="content">The table cell height box sizing quirk</span><a class="self-link" href="#the-table-cell-height-box-sizing-quirk"></a></h3> - <p>In <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-quirks" id="ref-for-concept-document-quirks①③">quirks mode</a>, elements that have a <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value①⑦">computed value</a> of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-4/#propdef-display" id="ref-for-propdef-display③">display</a> property of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-table-cell" id="ref-for-valdef-display-table-cell②">table-cell</a> must act as they have <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value⑨">used value</a> of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing" id="ref-for-propdef-box-sizing">box-sizing</a> property of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-box-sizing-border-box" id="ref-for-valdef-box-sizing-border-box">border-box</a>, but only for the purpose of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height⑦">height</a>, <a class="property css" data-link-type="property">min-height</a> and <a class="property css" data-link-type="property">max-height</a> properties. </p> + <p>In <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-document-quirks" id="ref-for-concept-document-quirks①③">quirks mode</a>, elements that have a <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#computed-value" id="ref-for-computed-value①⑦">computed value</a> of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-display-4/#propdef-display" id="ref-for-propdef-display③">display</a> property of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-display-4/#valdef-display-table-cell" id="ref-for-valdef-display-table-cell②">table-cell</a> must act as they have <a data-link-type="dfn" href="https://drafts.csswg.org/css-cascade-5/#used-value" id="ref-for-used-value⑨">used value</a> of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing" id="ref-for-propdef-box-sizing">box-sizing</a> property of <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/css-sizing-3/#valdef-box-sizing-border-box" id="ref-for-valdef-box-sizing-border-box">border-box</a>, but only for the purpose of the <a class="property css" data-link-type="property" href="https://drafts.csswg.org/css-sizing-3/#propdef-height" id="ref-for-propdef-height⑦">height</a>, <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height" id="ref-for-propdef-min-height①">min-height</a> and <a class="property css" data-link-type="property" href="https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" id="ref-for-propdef-max-height①">max-height</a> properties. </p> <h2 class="heading settled" data-level="4" id="selectors"><span class="secno">4. </span><span class="content">Selectors</span><a class="self-link" href="#selectors"></a></h2> <p class="big-issue">The following test appears to be invalid. See <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=733682#c20">chromium issue 733682</a>.</p> @@ -507,7 +620,7 @@ <h3 class="heading settled algorithm" data-algorithm="The :active and :hover qui conditions must not match elements that would not also match the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#any-link-pseudo" id="ref-for-any-link-pseudo">:any-link</a> selector. <a data-link-type="biblio" href="#biblio-selectors4" title="Selectors Level 4">[SELECTORS4]</a> </p> <ul> <li> - <p><var>selector</var> uses the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#active-pseudo" id="ref-for-active-pseudo">:active</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#hover-pseudo" id="ref-for-hover-pseudo">:hover</a> <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-class" id="ref-for-pseudo-class">pseudo-classes</a>. </p> + <p><var>selector</var> uses the <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#active-pseudo" id="ref-for-active-pseudo">:active</a> or <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#hover-pseudo" id="ref-for-hover-pseudo">:hover</a> <a data-link-type="dfn" href="https://www.w3.org/TR/CSS21/selector.html#x23" id="ref-for-x23">pseudo-classes</a>. </p> <li> <p><var>selector</var> does not use a <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#type-selector" id="ref-for-type-selector">type selector</a>. </p> <li> @@ -517,7 +630,7 @@ <h3 class="heading settled algorithm" data-algorithm="The :active and :hover qui <li> <p><var>selector</var> does not use a <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#class-selector" id="ref-for-class-selector">class selector</a>. </p> <li> - <p><var>selector</var> does not use a <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-class" id="ref-for-pseudo-class①">pseudo-class</a> selector other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#active-pseudo" id="ref-for-active-pseudo①">:active</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#hover-pseudo" id="ref-for-hover-pseudo①">:hover</a>. </p> + <p><var>selector</var> does not use a <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-class" id="ref-for-pseudo-class">pseudo-class</a> selector other than <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#active-pseudo" id="ref-for-active-pseudo①">:active</a> and <a class="css" data-link-type="maybe" href="https://drafts.csswg.org/selectors-4/#hover-pseudo" id="ref-for-hover-pseudo①">:hover</a>. </p> <li> <p><var>selector</var> does not use a <a data-link-type="dfn" href="https://drafts.csswg.org/selectors-4/#pseudo-element" id="ref-for-pseudo-element">pseudo-element</a> selector. </p> <li> @@ -735,6 +848,11 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="6ed8382d">border box</span> <li><span class="dfn-paneled" id="1107e6c1">content box</span> <li><span class="dfn-paneled" id="64a6ef4c">illegal</span> + <li><span class="dfn-paneled" id="f80bfcde">max-height</span> + <li><span class="dfn-paneled" id="a7502998">max-width</span> + <li><span class="dfn-paneled" id="3ca3de51">min-height</span> + <li><span class="dfn-paneled" id="e5185638">min-width</span> + <li><span class="dfn-paneled" id="cc123316">pseudo-classes</span> <li><span class="dfn-paneled" id="972cd96a">replaced element</span> </ul> <li> @@ -743,11 +861,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="0570259e">float</span> <li><span class="dfn-paneled" id="ac54fbff">line-height</span> </ul> - <li> - <a data-link-type="biblio">[CSS3-MULTICOL]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="ede43c09">spanning element</span> - </ul> <li> <a data-link-type="biblio">[DOM]</a> defines the following terms: <ul> @@ -789,23 +902,23 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-css-backgrounds-3">[CSS-BACKGROUNDS-3] - <dd>Bert Bos; Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> + <dd>Elika Etemad; Brad Kemper. <a href="https://drafts.csswg.org/css-backgrounds/"><cite>CSS Backgrounds and Borders Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-backgrounds/">https://drafts.csswg.org/css-backgrounds/</a> <dt id="biblio-css-box-4">[CSS-BOX-4] <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-box-4/"><cite>CSS Box Model Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-box-4/">https://drafts.csswg.org/css-box-4/</a> <dt id="biblio-css-cascade-5">[CSS-CASCADE-5] <dd>Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. <a href="https://drafts.csswg.org/css-cascade-5/"><cite>CSS Cascading and Inheritance Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-cascade-5/">https://drafts.csswg.org/css-cascade-5/</a> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-css-color-5">[CSS-COLOR-5] <dd>Chris Lilley; et al. <a href="https://drafts.csswg.org/css-color-5/"><cite>CSS Color Module Level 5</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-5/">https://drafts.csswg.org/css-color-5/</a> <dt id="biblio-css-conditional-3">[CSS-CONDITIONAL-3] - <dd>David Baron; Elika Etemad; Chris Lilley. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> + <dd>Chris Lilley; David Baron; Elika Etemad. <a href="https://drafts.csswg.org/css-conditional-3/"><cite>CSS Conditional Rules Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-conditional-3/">https://drafts.csswg.org/css-conditional-3/</a> <dt id="biblio-css-display-4">[CSS-DISPLAY-4] - <dd>CSS Display Module Level 4 URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> + <dd><a href="https://drafts.csswg.org/css-display-4/"><cite>CSS Display Module Level 4</cite></a>. Editor's Draft. URL: <a href="https://drafts.csswg.org/css-display-4/">https://drafts.csswg.org/css-display-4/</a> <dt id="biblio-css-fonts-4">[CSS-FONTS-4] - <dd>John Daggett; Myles Maxfield; Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> + <dd>Chris Lilley. <a href="https://drafts.csswg.org/css-fonts-4/"><cite>CSS Fonts Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-fonts-4/">https://drafts.csswg.org/css-fonts-4/</a> <dt id="biblio-css-inline-3">[CSS-INLINE-3] - <dd>Dave Cramer; Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> + <dd>Elika Etemad. <a href="https://drafts.csswg.org/css-inline-3/"><cite>CSS Inline Layout Module Level 3</cite></a>. URL: <a href="https://drafts.csswg.org/css-inline-3/">https://drafts.csswg.org/css-inline-3/</a> <dt id="biblio-css-masking-1">[CSS-MASKING-1] <dd>Dirk Schulze; Brian Birtles; Tab Atkins Jr.. <a href="https://drafts.fxtf.org/css-masking-1/"><cite>CSS Masking Module Level 1</cite></a>. URL: <a href="https://drafts.fxtf.org/css-masking-1/">https://drafts.fxtf.org/css-masking-1/</a> <dt id="biblio-css-page-floats-3">[CSS-PAGE-FLOATS-3] @@ -1083,6 +1196,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "32c45571": {"dfnID":"32c45571","dfnText":"type selector","external":true,"refSections":[{"refs":[{"id":"ref-for-type-selector"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#type-selector"}, "37c6bd4e": {"dfnID":"37c6bd4e","dfnText":"padding-right","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-right"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-padding-right\u2460"}],"title":"3.3. The line height calculation quirk"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-right"}, "3a35a92a": {"dfnID":"3a35a92a","dfnText":"min-content width of an inline formatting context","external":true,"refSections":[{"refs":[{"id":"ref-for-inline-intrinsic-min"}],"title":"3.8. The table cell width calculation quirk"}],"url":"https://dbaron.org/css/intrinsic/#inline-intrinsic-min"}, +"3ca3de51": {"dfnID":"3ca3de51","dfnText":"min-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-height"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-min-height\u2460"}],"title":"3.13. The table cell height box sizing quirk"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, "3d3e300e": {"dfnID":"3d3e300e","dfnText":"absolute","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-position-absolute"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-valdef-position-absolute\u2460"}],"title":"3.7. The body element fills the html element\nquirk"}],"url":"https://drafts.csswg.org/css-position-3/#valdef-position-absolute"}, "42871fa3": {"dfnID":"42871fa3","dfnText":"border-style","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-style"}],"title":"3.10. The collapsing table quirk"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-style"}, "49a5f65f": {"dfnID":"49a5f65f","dfnText":"padding-top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-top"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-padding-top\u2460"}],"title":"3.3. The line height calculation quirk"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-top"}, @@ -1092,7 +1206,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "5c4b7db5": {"dfnID":"5c4b7db5","dfnText":"border-bottom-color","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-border-bottom-color"}],"title":"3.1. The hashless hex color quirk"}],"url":"https://drafts.csswg.org/css-backgrounds-3/#propdef-border-bottom-color"}, "5c6db8f2": {"dfnID":"5c6db8f2","dfnText":"table-column-group","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-table-column-group"}],"title":"3.10. The collapsing table quirk"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-table-column-group"}, "5eab14cd": {"dfnID":"5eab14cd","dfnText":"td","external":true,"refSections":[{"refs":[{"id":"ref-for-the-td-element"}],"title":"3.9. The table cell nowrap minimum width\ncalculation quirk"}],"url":"https://html.spec.whatwg.org/multipage/tables.html#the-td-element"}, -"628c6566": {"dfnID":"628c6566","dfnText":"pseudo-class","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-class"},{"id":"ref-for-pseudo-class\u2460"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-class"}, +"628c6566": {"dfnID":"628c6566","dfnText":"pseudo-class","external":true,"refSections":[{"refs":[{"id":"ref-for-pseudo-class"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#pseudo-class"}, "64a6ef4c": {"dfnID":"64a6ef4c","dfnText":"illegal","external":true,"refSections":[{"refs":[{"id":"ref-for-illegal"}],"title":"3.1. The hashless hex color quirk"}],"url":"https://drafts.csswg.org/css2/conform.html#illegal"}, "679bc36f": {"dfnID":"679bc36f","dfnText":"id selector","external":true,"refSections":[{"refs":[{"id":"ref-for-id-selector"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#id-selector"}, "68019d7a": {"dfnID":"68019d7a","dfnText":"height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-height"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-height\u2460"},{"id":"ref-for-propdef-height\u2461"},{"id":"ref-for-propdef-height\u2462"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-propdef-height\u2463"}],"title":"3.6. The html element fills the viewport\nquirk"},{"refs":[{"id":"ref-for-propdef-height\u2464"}],"title":"3.7. The body element fills the html element\nquirk"},{"refs":[{"id":"ref-for-propdef-height\u2465"}],"title":"3.10. The collapsing table quirk"},{"refs":[{"id":"ref-for-propdef-height\u2466"}],"title":"3.13. The table cell height box sizing quirk"}],"url":"https://drafts.csswg.org/css-sizing-3/#propdef-height"}, @@ -1127,6 +1241,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "a58a3cd8": {"dfnID":"a58a3cd8","dfnText":"bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-bottom"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-bottom"}, "a63375cb": {"dfnID":"a63375cb","dfnText":"<dimension-token>","external":true,"refSections":[{"refs":[{"id":"ref-for-typedef-dimension-token"},{"id":"ref-for-typedef-dimension-token\u2460"},{"id":"ref-for-typedef-dimension-token\u2461"}],"title":"3.1. The hashless hex color quirk"}],"url":"https://drafts.csswg.org/css-syntax-3/#typedef-dimension-token"}, "a6d5d47b": {"dfnID":"a6d5d47b","dfnText":":any-link","external":true,"refSections":[{"refs":[{"id":"ref-for-any-link-pseudo"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#any-link-pseudo"}, +"a7502998": {"dfnID":"a7502998","dfnText":"max-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-width"}],"title":"3.2. The unitless length quirk"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, "a8078b03": {"dfnID":"a8078b03","dfnText":"table-row-group","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-table-row-group"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-valdef-display-table-row-group\u2460"}],"title":"3.10. The collapsing table quirk"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-table-row-group"}, "aaf6abed": {"dfnID":"aaf6abed","dfnText":"margin-left","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-left"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-margin-left\u2460"}],"title":"3.6. The html element fills the viewport\nquirk"},{"refs":[{"id":"ref-for-propdef-margin-left\u2461"}],"title":"3.7. The body element fills the html element\nquirk"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-left"}, "abb2bed7": {"dfnID":"abb2bed7","dfnText":"table","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-table"}],"title":"3.10. The collapsing table quirk"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-table"}, @@ -1148,6 +1263,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "ca62982f": {"dfnID":"ca62982f","dfnText":"padding-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-padding-bottom"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-padding-bottom\u2460"}],"title":"3.3. The line height calculation quirk"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-padding-bottom"}, "cacc0af2": {"dfnID":"cacc0af2","dfnText":"letter-spacing","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-letter-spacing"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-text-4/#propdef-letter-spacing"}, "cbfeec00": {"dfnID":"cbfeec00","dfnText":"margin-bottom","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin-bottom"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-margin-bottom\u2460"}],"title":"3.6. The html element fills the viewport\nquirk"},{"refs":[{"id":"ref-for-propdef-margin-bottom\u2461"}],"title":"3.7. The body element fills the html element\nquirk"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin-bottom"}, +"cc123316": {"dfnID":"cc123316","dfnText":"pseudo-classes","external":true,"refSections":[{"refs":[{"id":"ref-for-x23"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://www.w3.org/TR/CSS21/selector.html#x23"}, "cd864e67": {"dfnID":"cd864e67","dfnText":"table-footer-group","external":true,"refSections":[{"refs":[{"id":"ref-for-valdef-display-table-footer-group"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-valdef-display-table-footer-group\u2460"}],"title":"3.10. The collapsing table quirk"}],"url":"https://drafts.csswg.org/css-display-4/#valdef-display-table-footer-group"}, "ce4674f3": {"dfnID":"ce4674f3","dfnText":"no-quirks mode","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-no-quirks"}],"title":"1.2. Goals"}],"url":"https://dom.spec.whatwg.org/#concept-document-no-quirks"}, "cecbe9cd": {"dfnID":"cecbe9cd","dfnText":"margin","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-margin"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-box-4/#propdef-margin"}, @@ -1160,13 +1276,14 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "e0b6ed58": {"dfnID":"e0b6ed58","dfnText":"vertical-align","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-vertical-align"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-inline-3/#propdef-vertical-align"}, "e1483d91": {"dfnID":"e1483d91","dfnText":"top","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-top"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-position-3/#propdef-top"}, "e4fa28e9": {"dfnID":"e4fa28e9","dfnText":"outer min-content width of a table cell","external":true,"refSections":[{"refs":[{"id":"ref-for-autotable"},{"id":"ref-for-autotable\u2460"}],"title":"3.9. The table cell nowrap minimum width\ncalculation quirk"}],"url":"https://dbaron.org/css/intrinsic/#autotable"}, +"e5185638": {"dfnID":"e5185638","dfnText":"min-width","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-min-width"}],"title":"3.2. The unitless length quirk"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, "e7f0dd6c": {"dfnID":"e7f0dd6c","dfnText":"display","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-display"},{"id":"ref-for-propdef-display\u2460"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-propdef-display\u2461"}],"title":"3.10. The collapsing table quirk"},{"refs":[{"id":"ref-for-propdef-display\u2462"}],"title":"3.13. The table cell height box sizing quirk"}],"url":"https://drafts.csswg.org/css-display-4/#propdef-display"}, "ea663a43": {"dfnID":"ea663a43","dfnText":"containing block","external":true,"refSections":[{"refs":[{"id":"ref-for-containing-block"},{"id":"ref-for-containing-block\u2460"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-containing-block\u2461"}],"title":"3.8. The table cell width calculation quirk"}],"url":"https://drafts.csswg.org/css-display-4/#containing-block"}, -"ede43c09": {"dfnID":"ede43c09","dfnText":"spanning element","external":true,"refSections":[{"refs":[{"id":"ref-for-spanning-element"}],"title":"3.7. The body element fills the html element\nquirk"}],"url":"https://www.w3.org/TR/css-multicol-1/#spanning-element"}, "f0811ff8": {"dfnID":"f0811ff8","dfnText":"img","external":true,"refSections":[{"refs":[{"id":"ref-for-the-img-element"}],"title":"3.8. The table cell width calculation quirk"}],"url":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"}, "f0ba04de": {"dfnID":"f0ba04de","dfnText":"number","external":true,"refSections":[{"refs":[{"id":"ref-for-number"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-values-4/#number"}, "f4eec130": {"dfnID":"f4eec130","dfnText":"attribute selector","external":true,"refSections":[{"refs":[{"id":"ref-for-attribute-selector"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#attribute-selector"}, "f71a1b93": {"dfnID":"f71a1b93","dfnText":":active","external":true,"refSections":[{"refs":[{"id":"ref-for-active-pseudo"},{"id":"ref-for-active-pseudo\u2460"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://drafts.csswg.org/selectors-4/#active-pseudo"}, +"f80bfcde": {"dfnID":"f80bfcde","dfnText":"max-height","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-max-height"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-propdef-max-height\u2460"}],"title":"3.13. The table cell height box sizing quirk"}],"url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, "fb030e6c": {"dfnID":"fb030e6c","dfnText":"<length>","external":true,"refSections":[{"refs":[{"id":"ref-for-length-value"},{"id":"ref-for-length-value\u2460"},{"id":"ref-for-length-value\u2461"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-length-value\u2462"}],"title":"3.9. The table cell nowrap minimum width\ncalculation quirk"}],"url":"https://drafts.csswg.org/css-values-4/#length-value"}, "fd11cdcd": {"dfnID":"fd11cdcd","dfnText":"quirks mode","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-document-quirks"}],"title":"1.2. Goals"},{"refs":[{"id":"ref-for-concept-document-quirks\u2460"}],"title":"3.1. The hashless hex color quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2461"}],"title":"3.2. The unitless length quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2462"}],"title":"3.3. The line height calculation quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2463"}],"title":"3.4. The blocks ignore line-height quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2464"}],"title":"3.5. The percentage height calculation\nquirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2465"}],"title":"3.6. The html element fills the viewport\nquirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2466"}],"title":"3.7. The body element fills the html element\nquirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2467"}],"title":"3.8. The table cell width calculation quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2468"}],"title":"3.9. The table cell nowrap minimum width\ncalculation quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2460\u24ea"}],"title":"3.10. The collapsing table quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2460\u2460"}],"title":"3.11. The text decoration doesn\u2019t propagate\ninto tables quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2460\u2461"}],"title":"3.12. The tables inherit color from body\nquirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2460\u2462"}],"title":"3.13. The table cell height box sizing quirk"},{"refs":[{"id":"ref-for-concept-document-quirks\u2460\u2463"}],"title":"4.1. The :active and :hover quirk"}],"url":"https://dom.spec.whatwg.org/#concept-document-quirks"}, "fdf6efd5": {"dfnID":"fdf6efd5","dfnText":"font-size","external":true,"refSections":[{"refs":[{"id":"ref-for-propdef-font-size"}],"title":"3.2. The unitless length quirk"}],"url":"https://drafts.csswg.org/css-fonts-4/#propdef-font-size"}, @@ -1562,7 +1679,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-5/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", "https://drafts.csswg.org/css-values-4/#length-value": "Expands to: advance measure | cap | ch | cm | dvb | dvh | dvi | dvmax | dvmin | dvw | em | ex | ic | in | lh | lvb | lvh | lvi | lvmax | lvmin | lvw | mm | pc | pt | px | q | rcap | rch | rem | rex | ric | rlh | svb | svh | svi | svmax | svmin | svw | vb | vh | vi | vmax | vmin | vw", }; @@ -1700,7 +1817,11 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" "https://html.spec.whatwg.org/multipage/tables.html#the-table-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"table","type":"element","url":"https://html.spec.whatwg.org/multipage/tables.html#the-table-element"}, "https://html.spec.whatwg.org/multipage/tables.html#the-td-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"td","type":"element","url":"https://html.spec.whatwg.org/multipage/tables.html#the-td-element"}, "https://html.spec.whatwg.org/multipage/tables.html#the-th-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"th","type":"element","url":"https://html.spec.whatwg.org/multipage/tables.html#the-th-element"}, -"https://www.w3.org/TR/css-multicol-1/#spanning-element": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css-multicol","spec":"css-multicol-1","status":"snapshot","text":"spanning element","type":"dfn","url":"https://www.w3.org/TR/css-multicol-1/#spanning-element"}, +"https://www.w3.org/TR/CSS21/selector.html#x23": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"pseudo-classes","type":"dfn","url":"https://www.w3.org/TR/CSS21/selector.html#x23"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"max-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-height","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"}, +"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"css","spec":"css2","status":"current","text":"min-width","type":"property","url":"https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"}, }; function mkRefHint(link, ref) { diff --git a/tests/github/whatwg/storage/storage.console.txt b/tests/github/whatwg/storage/storage.console.txt index 4daa0f3491..2af3a980c2 100644 --- a/tests/github/whatwg/storage/storage.console.txt +++ b/tests/github/whatwg/storage/storage.console.txt @@ -1,16 +1,22 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 95: Multiple possible 'user agent' dfn refs for '['/']'. Arbitrarily chose https://infra.spec.whatwg.org/#user-agent To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:infra; type:dfn; text:user agent -spec:css2; type:dfn; text:user agent +The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). +spec:css2; type:dfn; for:/; text:user agent + https://www.w3.org/TR/CSS21/conform.html#ua + https://www.w3.org/TR/CSS21/conform.html#user-agent <a bs-line-number="95" data-link-for="/" data-link-type="dfn" data-lt="user agent">user agent</a> LINE 228: Multiple possible 'user agent' dfn refs for '['/']'. Arbitrarily chose https://infra.spec.whatwg.org/#user-agent To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:infra; type:dfn; text:user agent -spec:css2; type:dfn; text:user agent +The following refs show up multiple times in their spec, in a way that Bikeshed can't distinguish between. Either create a manual link, or ask the spec maintainer to add disambiguating attributes (usually a for='' attribute to all of them). +spec:css2; type:dfn; for:/; text:user agent + https://www.w3.org/TR/CSS21/conform.html#ua + https://www.w3.org/TR/CSS21/conform.html#user-agent <a bs-line-number="228" data-link-for="/" data-link-type="dfn" data-lt="user agent">user agent</a> LINE 232: No 'dfn' refs found for 'browsing session'. <a bs-line-number="232" data-link-for="/" data-link-type="dfn" data-lt="browsing session">browsing session</a> diff --git a/tests/github/whatwg/storage/storage.html b/tests/github/whatwg/storage/storage.html index 5bdba7aed8..55f0766ba8 100644 --- a/tests/github/whatwg/storage/storage.html +++ b/tests/github/whatwg/storage/storage.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Storage Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-storage.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -104,7 +436,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-storage.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-storage.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Storage</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -112,7 +444,7 @@ <h1 class="p-name no-ref" id="title">Storage</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/storage">GitHub whatwg/storage</a> (<a href="https://github.com/whatwg/storage/issues/new">new issue</a>, <a href="https://github.com/whatwg/storage/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/storage">GitHub whatwg/storage</a> (<a href="https://github.com/whatwg/storage/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/storage/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/storage/commits">GitHub whatwg/storage/commits</a> @@ -846,11 +1178,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-storagemanager-estimate"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/estimate" title="The estimate() method of the StorageManager interface asks the Storage Manager for how much storage the current origin takes up (usage), and how much space is available (quota).">StorageManager/estimate</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> + <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari yes"><span>Safari</span><span>17+</span></span><span class="chrome yes"><span>Chrome</span><span>61+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -863,7 +1196,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="ref-for-dom-storagemanager-persist"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persist" title="The persist() method of the StorageManager interface requests permission to use persistent storage, and returns a Promise that resolves to true if permission is granted and box mode is persistent, and false otherwise.">StorageManager/persist</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persist" title="The persist() method of the StorageManager interface requests permission to use persistent storage, and returns a Promise that resolves to true if permission is granted and bucket mode is persistent, and false otherwise.">StorageManager/persist</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari yes"><span>Safari</span><span>15.2+</span></span><span class="chrome yes"><span>Chrome</span><span>55+</span></span> @@ -879,7 +1212,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-storagemanager-persisted"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persisted" title="The persisted() method of the StorageManager interface returns a Promise that resolves to true if box mode is persistent for your site&apos;s storage.">StorageManager/persisted</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persisted" title="The persisted() method of the StorageManager interface returns a Promise that resolves to true if your site&apos;s storage bucket is persistent.">StorageManager/persisted</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>57+</span></span><span class="safari yes"><span>Safari</span><span>15.2+</span></span><span class="chrome yes"><span>Chrome</span><span>55+</span></span> @@ -1579,6 +1912,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/whatwg/streams/index.console.txt b/tests/github/whatwg/streams/index.console.txt index 0acd9ac7e9..174cd9d797 100644 --- a/tests/github/whatwg/streams/index.console.txt +++ b/tests/github/whatwg/streams/index.console.txt @@ -1,5 +1,5 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE ~2092: No 'dfn' refs found for 'aborted flag' with for='['AbortSignal']'. [=AbortSignal/aborted flag=] LINK ERROR: Multiple possible 'fetch()' idl refs. @@ -10,3 +10,4 @@ spec:fetch; type:method; text:fetch(input) {{fetch()}} LINE ~6458: No 'dfn' refs found for 'constructor operation' that are marked for export. [=constructor operation=] +WARNING: No 'ref-for-ws-default-controller-signal①' ID found, skipping MDN features that would target it. diff --git a/tests/github/whatwg/streams/index.html b/tests/github/whatwg/streams/index.html index 9c14d6c4ea..acef0d10c8 100644 --- a/tests/github/whatwg/streams/index.html +++ b/tests/github/whatwg/streams/index.html @@ -3,30 +3,362 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>Streams Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-streams.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> <style> div.algorithm + div.algorithm { margin-top: 3em; } </style> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -107,7 +439,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-streams.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-streams.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">Streams</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -115,7 +447,7 @@ <h1 class="p-name no-ref" id="title">Streams</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/streams">GitHub whatwg/streams</a> (<a href="https://github.com/whatwg/streams/issues/new">new issue</a>, <a href="https://github.com/whatwg/streams/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/streams">GitHub whatwg/streams</a> (<a href="https://github.com/whatwg/streams/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/streams/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/streams/commits">GitHub whatwg/streams/commits</a> @@ -7040,7 +7372,7 @@ <h4 class="heading settled" data-level="9.3.2" id="other-specs-ts-wrapping"><spa <p>Including the <code class="idl"><a data-link-type="idl" href="#generictransformstream" id="ref-for-generictransformstream②">GenericTransformStream</a></code> mixin will give an IDL interface the appropriate <code class="idl"><a data-link-type="idl" href="#dom-generictransformstream-readable" id="ref-for-dom-generictransformstream-readable①">readable</a></code> and <code class="idl"><a data-link-type="idl" href="#dom-generictransformstream-writable" id="ref-for-dom-generictransformstream-writable①">writable</a></code> properties. To customize the behavior of the resulting interface, its constructor (or other initialization code) must set each instance’s <a data-link-type="dfn" href="#generictransformstream-transform" id="ref-for-generictransformstream-transform②">transform</a> to a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#new" id="ref-for-new③⓪">new</a> <code class="idl"><a data-link-type="idl" href="#transformstream" id="ref-for-transformstream③⓪">TransformStream</a></code>, and then <a data-link-type="dfn" href="#transformstream-set-up" id="ref-for-transformstream-set-up④">set it up</a> with appropriate customizations via the <var><a data-link-type="dfn" href="#transformstream-set-up-transformalgorithm" id="ref-for-transformstream-set-up-transformalgorithm②">transformAlgorithm</a></var> and optionally <var><a data-link-type="dfn" href="#transformstream-set-up-flushalgorithm" id="ref-for-transformstream-set-up-flushalgorithm①">flushAlgorithm</a></var> arguments.</p> - <p>Existing examples of this pattern on the web platform include <code class="idl"><a data-link-type="idl" href="https://wicg.github.io/compression/#compressionstream" id="ref-for-compressionstream">CompressionStream</a></code> and <code class="idl"><a data-link-type="idl" href="https://encoding.spec.whatwg.org/#textdecoderstream" id="ref-for-textdecoderstream">TextDecoderStream</a></code>. <a data-link-type="biblio" href="#biblio-compression" title="Compression Streams">[COMPRESSION]</a> <a data-link-type="biblio" href="#biblio-encoding" title="Encoding Standard">[ENCODING]</a></p> + <p>Existing examples of this pattern on the web platform include <code class="idl"><a data-link-type="idl" href="https://wicg.github.io/compression/#compressionstream" id="ref-for-compressionstream">CompressionStream</a></code> and <code class="idl"><a data-link-type="idl" href="https://encoding.spec.whatwg.org/#textdecoderstream" id="ref-for-textdecoderstream">TextDecoderStream</a></code>. <a data-link-type="biblio" href="#biblio-compression" title="Compression Standard">[COMPRESSION]</a> <a data-link-type="biblio" href="#biblio-encoding" title="Encoding Standard">[ENCODING]</a></p> <p class="note" role="note">There’s no need to create a wrapper class if you don’t need any API beyond what the base <code class="idl"><a data-link-type="idl" href="#transformstream" id="ref-for-transformstream③①">TransformStream</a></code> class provides. The most common driver for such a wrapper is needing a custom <a data-link-type="dfn">constructor operation</a>, but if your conceptual transform stream isn’t meant to be @@ -8784,7 +9116,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-compression">[COMPRESSION] - <dd><a href="https://wicg.github.io/compression/"><cite>Compression Streams</cite></a>. cg-draft. URL: <a href="https://wicg.github.io/compression/">https://wicg.github.io/compression/</a> + <dd>Adam Rice. <a href="https://compression.spec.whatwg.org/"><cite>Compression Standard</cite></a>. Living Standard. URL: <a href="https://compression.spec.whatwg.org/">https://compression.spec.whatwg.org/</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-ecmascript">[ECMASCRIPT] @@ -9041,7 +9373,25 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ByteLengthQueuingStrategy/ByteLengthQueuingStrategy" title="The ByteLengthQueuingStrategy() constructor creates and returns a ByteLengthQueuingStrategy object instance.">ByteLengthQueuingStrategy/ByteLengthQueuingStrategy</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>59+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>16.5.0+</span></span> + </div> + </div> + </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-blqs-high-water-mark①"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark" title="The read-only ByteLengthQueuingStrategy.highWaterMark property returns the total number of bytes that can be contained in the internal queue before backpressure is applied.">ByteLengthQueuingStrategy/highWaterMark</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9090,12 +9440,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-generictransformstream-readable"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream/readable" title="The readable read-only property of the CompressionStream interface returns a ReadableStream.">CompressionStream/readable</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -9108,9 +9458,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream/readable" title="The readable read-only property of the DecompressionStream interface returns a ReadableStream.">DecompressionStream/readable</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -9153,12 +9503,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-generictransformstream-writable"> - <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream/writable" title="The writable read-only property of the CompressionStream interface returns a WritableStream.">CompressionStream/writable</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -9171,9 +9521,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream/writable" title="The writable read-only property of the DecompressionStream interface returns a WritableStream.">DecompressionStream/writable</a></p> - <p class="less-than-two-engines-text">In only one current engine.</p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox no"><span>Firefox</span><span>None</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> + <span class="firefox yes"><span>Firefox</span><span>113+</span></span><span class="safari yes"><span>Safari</span><span>16.4+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> @@ -9233,6 +9583,24 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-cqs-high-water-mark①"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/CountQueuingStrategy/highWaterMark" title="The read-only CountQueuingStrategy.highWaterMark property returns the total number of chunks that can be contained in the internal queue before backpressure is applied.">CountQueuingStrategy/highWaterMark</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>16+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>16.5.0+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-cqs-size②"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -9377,7 +9745,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/ReadableStream" title="The ReadableStream() constructor creates and returns a readable stream object from the given handlers.">ReadableStream/ReadableStream</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9431,7 +9799,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/locked" title="The locked read-only property of the ReadableStream interface returns whether or not the readable stream is locked to a reader.">ReadableStream/locked</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9485,7 +9853,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee" title="The tee() method of the ReadableStream interface tees the current readable stream, returning a two-element array containing the two resulting branches as new ReadableStream instances.">ReadableStream/tee</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>43+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>52+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9514,6 +9882,24 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="rs-asynciterator"> + <summary><b class="less-than-two-engines-flag" title="This feature is in less than two current engines.">⚠</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/asyncIterator" title="The Symbol.asyncIterator static data property represents the well-known symbol @@asyncIterator. The async iterable protocol looks up this symbol for the method that returns the async iterator for an object. In order for an object to be async iterable, it must have an @@asyncIterator key.">Reference/Global_Objects/Symbol/asyncIterator</a></p> + <p class="less-than-two-engines-text">In only one current engine.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>110+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome no"><span>Chrome</span><span>None</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink no"><span>Edge</span><span>None</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>16.5.0+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="rs-class"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -9567,8 +9953,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/cancel" title="The cancel() method of the ReadableStreamDefaultReader interface returns a Promise that resolves when the stream is canceled. Calling this method signals a loss of interest in the stream by a consumer.">ReadableStreamDefaultReader/cancel</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9598,8 +9985,9 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/closed" title="The closed read-only property of the ReadableStreamDefaultReader interface returns a Promise that fulfills when the stream closes, or rejects if the stream throws an error or the reader&apos;s lock is released. This property enables you to write code that responds to an end to the streaming process.">ReadableStreamDefaultReader/closed</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9731,13 +10119,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-rs-default-controller-close①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultController/close" title="The close() method of the ReadableStreamDefaultController interface closes the associated stream.">ReadableStreamDefaultController/close</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -9748,13 +10137,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-rs-default-controller-desired-size②"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultController/desiredSize" title="The desiredSize read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream&apos;s internal queue.">ReadableStreamDefaultController/desiredSize</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -9765,13 +10155,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-rs-default-controller-enqueue①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultController/enqueue" title="The enqueue() method of the ReadableStreamDefaultController interface enqueues a given chunk in the associated stream.">ReadableStreamDefaultController/enqueue</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -9782,13 +10173,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="rs-default-controller-error"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultController/error" title="The error() method of the ReadableStreamDefaultController interface causes any future interactions with the associated stream to error.">ReadableStreamDefaultController/error</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -9799,13 +10191,14 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="rs-default-controller-class"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultController" title="The ReadableStreamDefaultController interface of the Streams API represents a controller allowing control of a ReadableStream&apos;s state and internal queue. Default controllers are for streams that are not byte streams.">ReadableStreamDefaultController</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>89+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>80+</span></span> <hr> - <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>89+</span></span> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>80+</span></span> <hr> <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> <hr> @@ -9820,7 +10213,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/ReadableStreamDefaultReader" title="The ReadableStreamDefaultReader() constructor creates and returns a ReadableStreamDefaultReader object instance.">ReadableStreamDefaultReader/ReadableStreamDefaultReader</a></p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>100+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9833,11 +10226,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-default-reader-read①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/read" title="The read() method of the ReadableStreamDefaultReader interface returns a Promise providing access to the next chunk in the stream&apos;s internal queue.">ReadableStreamDefaultReader/read</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9850,11 +10244,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-default-reader-release-lock②"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/releaseLock" title="The releaseLock() method of the ReadableStreamDefaultReader interface releases the reader&apos;s lock on the stream.">ReadableStreamDefaultReader/releaseLock</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -9867,11 +10262,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="default-reader-class"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader" title="The ReadableStreamDefaultReader interface of the Streams API represents a default reader that can be used to read stream data supplied from a network (such as a fetch request).">ReadableStreamDefaultReader</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>65+</span></span><span class="safari yes"><span>Safari</span><span>13.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -10098,6 +10494,24 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="ref-for-ws-close①"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WritableStream/close" title="The close() method of the WritableStream interface closes the associated stream. All chunks written before this method is called are sent before the returned promise is fulfilled.">WritableStream/close</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>100+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>81+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>81+</span></span> + <hr> + <span class="edge no"><span>Edge (Legacy)</span><span>?</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>16.5.0+</span></span> + </div> + </div> + </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-ws-get-writer①"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> @@ -10206,11 +10620,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </details> <details class="mdn-anno unpositioned" data-anno-for="ref-for-default-writer-constructor①"> - <summary><span>MDN</span></summary> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/WritableStreamDefaultWriter/WritableStreamDefaultWriter" title="The WritableStreamDefaultWriter() constructor creates a new WritableStreamDefaultWriter object instance.">WritableStreamDefaultWriter/WritableStreamDefaultWriter</a></p> + <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>100+</span></span><span class="safari no"><span>Safari</span><span>None</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> + <span class="firefox yes"><span>Firefox</span><span>100+</span></span><span class="safari yes"><span>Safari</span><span>14.1+</span></span><span class="chrome yes"><span>Chrome</span><span>78+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -11580,6 +11995,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { diff --git a/tests/github/whatwg/url/url.console.txt b/tests/github/whatwg/url/url.console.txt index 8aac268c8d..bf68482eab 100644 --- a/tests/github/whatwg/url/url.console.txt +++ b/tests/github/whatwg/url/url.console.txt @@ -1,7 +1,7 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. LINE 3202:46: Character reference '&b' didn't end in ;. LINE 3203:49: Character reference '&b' didn't end in ;. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. LINE 522: Multiple possible 'same site' dfn refs. Arbitrarily chose https://html.spec.whatwg.org/multipage/browsers.html#concept-site-same-site To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: @@ -10,3 +10,5 @@ spec:html; type:dfn; for:/; text:same site <a bs-line-number="522" data-link-type="dfn" data-lt="same site">same site</a> LINE 1648: No 'dfn' refs found for 'resolve' with for='['blob URL']'. <a bs-line-number="1648" data-lt="resolve" data-link-for="blob URL" data-link-type="dfn">resolving the blob URL</a> +WARNING: No 'ref-for-dom-url-canparse' ID found, skipping MDN features that would target it. +WARNING: No 'dom-urlsearchparams-size' ID found, skipping MDN features that would target it. diff --git a/tests/github/whatwg/url/url.html b/tests/github/whatwg/url/url.html index e9e5ae7ef0..b45da398c0 100644 --- a/tests/github/whatwg/url/url.html +++ b/tests/github/whatwg/url/url.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>URL Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-url.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-url.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-url.svg"> </a> <hgroup> <h1 class="p-name no-ref allcaps" id="title">URL</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref allcaps" id="title">URL</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/url">GitHub whatwg/url</a> (<a href="https://github.com/whatwg/url/issues/new">new issue</a>, <a href="https://github.com/whatwg/url/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/url">GitHub whatwg/url</a> (<a href="https://github.com/whatwg/url/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/url/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/url/commits">GitHub whatwg/url/commits</a> @@ -1368,7 +1700,7 @@ <h3 class="heading settled" data-level="4.3" id="url-writing"><span class="secno U+0040 (@), U+005F (_), U+007E (~), -and <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-point" id="ref-for-code-point⑧">code points</a> in the range U+00A0 to U+10FFFD, inclusive, excluding <a data-link-type="dfn" href="https://w3c.github.io/i18n-glossary/#dfn-surrogate" id="ref-for-dfn-surrogate">surrogates</a> and <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#noncharacter" id="ref-for-noncharacter">noncharacters</a>. </p> +and <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#code-point" id="ref-for-code-point⑧">code points</a> in the range U+00A0 to U+10FFFD, inclusive, excluding <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#surrogate" id="ref-for-surrogate">surrogates</a> and <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#noncharacter" id="ref-for-noncharacter">noncharacters</a>. </p> <p class="note" role="note">Code points greater than U+007F DELETE will be converted to <a data-link-type="dfn" href="#percent-encoded-byte" id="ref-for-percent-encoded-byte①">percent-encoded bytes</a> by the <a data-link-type="dfn" href="#concept-url-parser" id="ref-for-concept-url-parser⑧">URL parser</a>. </p> <p class="note" role="note">In HTML, when the document encoding is a legacy encoding, code points in the <a data-link-type="dfn" href="#url-query-string" id="ref-for-url-query-string②">URL-query string</a> that are higher than U+007F DELETE will be converted to <a data-link-type="dfn" href="#percent-encoded-byte" id="ref-for-percent-encoded-byte②">percent-encoded bytes</a> <em>using the document’s encoding</em>. This can cause problems if a URL that works in one document is copied to another document that uses a @@ -3040,11 +3372,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="0757a962">schemelessly same site</span> <li><span class="dfn-paneled" id="dae0bfde">serialization of an origin</span> </ul> - <li> - <a data-link-type="biblio">[I18N-GLOSSARY]</a> defines the following terms: - <ul> - <li><span class="dfn-paneled" id="6b7796d8">surrogates</span> - </ul> <li> <a data-link-type="biblio">[INFRA]</a> defines the following terms: <ul> @@ -3082,6 +3409,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="0204d188">size</span> <li><span class="dfn-paneled" id="e5fc5b88">strictly split</span> <li><span class="dfn-paneled" id="0698d556">string</span> + <li><span class="dfn-paneled" id="a3fb968a">surrogate</span> <li><span class="dfn-paneled" id="34f375cb">value <small>(for byte)</small></span> <li><span class="dfn-paneled" id="bb049306">value <small>(for code point)</small></span> </ul> @@ -3112,7 +3440,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span><a class="self-link" href="#normative"></a></h3> <dl> <dt id="biblio-bidi">[BIDI] - <dd>Mark Davis; Ken Whistler. <a href="https://www.unicode.org/reports/tr9/tr9-46.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 16 August 2022. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-46.html">https://www.unicode.org/reports/tr9/tr9-46.html</a> + <dd>Manish Goregaokar मनीष गोरेगांवकर; Robin Leroy. <a href="https://www.unicode.org/reports/tr9/tr9-48.html"><cite>Unicode Bidirectional Algorithm</cite></a>. 15 August 2023. Unicode Standard Annex #9. URL: <a href="https://www.unicode.org/reports/tr9/tr9-48.html">https://www.unicode.org/reports/tr9/tr9-48.html</a> <dt id="biblio-dom">[DOM] <dd>Anne van Kesteren. <a href="https://dom.spec.whatwg.org/"><cite>DOM Standard</cite></a>. Living Standard. URL: <a href="https://dom.spec.whatwg.org/">https://dom.spec.whatwg.org/</a> <dt id="biblio-encoding">[ENCODING] @@ -3121,20 +3449,18 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N <dd>Marijn Kruisselbrink. <a href="https://w3c.github.io/FileAPI/"><cite>File API</cite></a>. URL: <a href="https://w3c.github.io/FileAPI/">https://w3c.github.io/FileAPI/</a> <dt id="biblio-html">[HTML] <dd>Anne van Kesteren; et al. <a href="https://html.spec.whatwg.org/multipage/"><cite>HTML Standard</cite></a>. Living Standard. URL: <a href="https://html.spec.whatwg.org/multipage/">https://html.spec.whatwg.org/multipage/</a> - <dt id="biblio-i18n-glossary">[I18N-GLOSSARY] - <dd>Richard Ishida; Addison Phillips. <a href="https://w3c.github.io/i18n-glossary/"><cite>Internationalization Glossary</cite></a>. URL: <a href="https://w3c.github.io/i18n-glossary/">https://w3c.github.io/i18n-glossary/</a> <dt id="biblio-iana-uri-schemes">[IANA-URI-SCHEMES] <dd><a href="https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml"><cite>Uniform Resource Identifier (URI) Schemes</cite></a>. URL: <a href="https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml">https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml</a> <dt id="biblio-infra">[INFRA] <dd>Anne van Kesteren; Domenic Denicola. <a href="https://infra.spec.whatwg.org/"><cite>Infra Standard</cite></a>. Living Standard. URL: <a href="https://infra.spec.whatwg.org/">https://infra.spec.whatwg.org/</a> <dt id="biblio-media-source">[MEDIA-SOURCE] - <dd>Matthew Wolenetz; et al. <a href="https://w3c.github.io/media-source/"><cite>Media Source Extensions™</cite></a>. URL: <a href="https://w3c.github.io/media-source/">https://w3c.github.io/media-source/</a> + <dd>Jean-Yves Avenard; Mark Watson. <a href="https://w3c.github.io/media-source/"><cite>Media Source Extensions™</cite></a>. URL: <a href="https://w3c.github.io/media-source/">https://w3c.github.io/media-source/</a> <dt id="biblio-psl">[PSL] <dd><cite><a href="https://publicsuffix.org/">Public Suffix List</a></cite>. Mozilla Foundation. <dt id="biblio-rfc4291">[RFC4291] <dd>R. Hinden; S. Deering. <a href="https://www.rfc-editor.org/rfc/rfc4291"><cite>IP Version 6 Addressing Architecture</cite></a>. February 2006. Draft Standard. URL: <a href="https://www.rfc-editor.org/rfc/rfc4291">https://www.rfc-editor.org/rfc/rfc4291</a> <dt id="biblio-uts46">[UTS46] - <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr46/tr46-29.html"><cite>Unicode IDNA Compatibility Processing</cite></a>. 26 August 2022. Unicode Technical Standard #46. URL: <a href="https://www.unicode.org/reports/tr46/tr46-29.html">https://www.unicode.org/reports/tr46/tr46-29.html</a> + <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr46/tr46-31.html"><cite>Unicode IDNA Compatibility Processing</cite></a>. 5 September 2023. Unicode Technical Standard #46. URL: <a href="https://www.unicode.org/reports/tr46/tr46-31.html">https://www.unicode.org/reports/tr46/tr46-31.html</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -3161,7 +3487,7 @@ <h3 class="no-num no-ref heading settled" id="informative"><span class="content" <dt id="biblio-utr36">[UTR36] <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr36/tr36-15.html"><cite>Unicode Security Considerations</cite></a>. 19 September 2014. Unicode Technical Report #36. URL: <a href="https://www.unicode.org/reports/tr36/tr36-15.html">https://www.unicode.org/reports/tr36/tr36-15.html</a> <dt id="biblio-uts39">[UTS39] - <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr39/tr39-26.html"><cite>Unicode Security Mechanisms</cite></a>. 26 August 2022. Unicode Technical Standard #39. URL: <a href="https://www.unicode.org/reports/tr39/tr39-26.html">https://www.unicode.org/reports/tr39/tr39-26.html</a> + <dd>Mark Davis; Michel Suignard. <a href="https://www.unicode.org/reports/tr39/tr39-28.html"><cite>Unicode Security Mechanisms</cite></a>. 5 September 2023. Unicode Technical Standard #39. URL: <a href="https://www.unicode.org/reports/tr39/tr39-28.html">https://www.unicode.org/reports/tr39/tr39-28.html</a> </dl> <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">IDL Index</span><a class="self-link" href="#idl-index"></a></h2> <pre class="idl highlight def">[<a class="idl-code" data-link-type="extended-attribute" href="https://webidl.spec.whatwg.org/#Exposed"><c- g>Exposed</c-></a>=(<c- n>Window</c->,<c- n>Worker</c->), @@ -3332,7 +3658,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-url-pathname"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname" title="The pathname property of the URL interface is a string containing an initial / followed by the path of the URL, not including the query string or fragment (or the empty string if there is no path).">URL/pathname</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname" title="The pathname property of the URL interface represents a location in a hierarchical structure. It is a string constructed from a list of path segments, each of which is prefixed by a / character. If the URL has no path segments, the value of its pathname property will be the empty string.">URL/pathname</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>22+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>32+</span></span> @@ -3407,7 +3733,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URL/searchParams" title="The searchParams readonly property of the URL interface returns a URLSearchParams object allowing access to the GET decoded query arguments contained in the URL.">URL/searchParams</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>29+</span></span><span class="safari yes"><span>Safari</span><span>10+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> + <span class="firefox yes"><span>Firefox</span><span>29+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>51+</span></span> <hr> <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -3508,6 +3834,66 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="nodejs yes"><span>Node.js</span><span>7.5.0+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/entries" title="The entries() method of the URLSearchParams interface returns an iterator allowing iteration through all key/value pairs contained in this object. The iterator returns key/value pairs in the same order as they appear in the query string. The key and value of each pair are string objects.">URLSearchParams/entries</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>7.5.0+</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/forEach" title="The forEach() method of the URLSearchParams interface allows iteration through all values contained in this object via a callback function.">URLSearchParams/forEach</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>7.5.0+</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/keys" title="The keys() method of the URLSearchParams interface returns an iterator allowing iteration through all keys contained in this object. The keys are string objects.">URLSearchParams/keys</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>7.5.0+</span></span> + </div> + </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/values" title="The values() method of the URLsearchParams interface returns an iterator allowing iteration through all values contained in this object. The values are string objects.">URLSearchParams/values</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>44+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>17+</span></span><span class="ie no"><span>IE</span><span>None</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + <hr> + <span class="nodejs yes"><span>Node.js</span><span>7.5.0+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="dom-urlsearchparams-append"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -3530,7 +3916,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-urlsearchparams-delete"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/delete" title="The delete() method of the URLSearchParams interface deletes the given search parameter and all its associated values, from the list of all search parameters.">URLSearchParams/delete</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/delete" title="The delete() method of the URLSearchParams interface deletes specified parameters and their associated value(s) from the list of all search parameters.">URLSearchParams/delete</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>29+</span></span><span class="safari yes"><span>Safari</span><span>14+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> @@ -3584,7 +3970,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="dom-urlsearchparams-has"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/has" title="The has() method of the URLSearchParams interface returns a boolean value that indicates whether a parameter with the specified name exists.">URLSearchParams/has</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/has" title="The has() method of the URLSearchParams interface returns a boolean value that indicates whether the specified parameter is in the search parameters.">URLSearchParams/has</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>29+</span></span><span class="safari yes"><span>Safari</span><span>10.1+</span></span><span class="chrome yes"><span>Chrome</span><span>49+</span></span> @@ -3909,7 +4295,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "649608b9": {"dfnID":"649608b9","dfnText":"list","external":true,"refSections":[{"refs":[{"id":"ref-for-list"}],"title":"3.1. Host representation"},{"refs":[{"id":"ref-for-list\u2460"}],"title":"3.5. Host parsing"},{"refs":[{"id":"ref-for-list\u2461"}],"title":"4.1. URL representation"},{"refs":[{"id":"ref-for-list\u2462"}],"title":"5.1. application/x-www-form-urlencoded parsing"},{"refs":[{"id":"ref-for-list\u2463"}],"title":"6.2. URLSearchParams class"}],"url":"https://infra.spec.whatwg.org/#list"}, "65bee524": {"dfnID":"65bee524","dfnText":"encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-encoding"}],"title":"1.3. Percent-encoded bytes"},{"refs":[{"id":"ref-for-encoding\u2460"},{"id":"ref-for-encoding\u2461"}],"title":"4.4. URL parsing"},{"refs":[{"id":"ref-for-encoding\u2462"}],"title":"5.1. application/x-www-form-urlencoded parsing"},{"refs":[{"id":"ref-for-encoding\u2463"}],"title":"5.2. application/x-www-form-urlencoded serializing"}],"url":"https://encoding.spec.whatwg.org/#encoding"}, "674f2f2d": {"dfnID":"674f2f2d","dfnText":"ToASCII","external":true,"refSections":[{"refs":[{"id":"ref-for-ToASCII"}],"title":"3.3. IDNA"}],"url":"https://www.unicode.org/reports/tr46/#ToASCII"}, -"6b7796d8": {"dfnID":"6b7796d8","dfnText":"surrogates","external":true,"refSections":[{"refs":[{"id":"ref-for-dfn-surrogate"}],"title":"4.3. URL writing"}],"url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "6b815fdd": {"dfnID":"6b815fdd","dfnText":"is empty","external":true,"refSections":[{"refs":[{"id":"ref-for-list-is-empty"}],"title":"4.1. URL representation"},{"refs":[{"id":"ref-for-list-is-empty\u2460"}],"title":"4.2. URL miscellaneous"},{"refs":[{"id":"ref-for-list-is-empty\u2461"}],"title":"4.4. URL parsing"},{"refs":[{"id":"ref-for-list-is-empty\u2462"}],"title":"6.1. URL class"}],"url":"https://infra.spec.whatwg.org/#list-is-empty"}, "6f2dfa22": {"dfnID":"6f2dfa22","dfnText":"ascii lowercase","external":true,"refSections":[{"refs":[{"id":"ref-for-ascii-lowercase"},{"id":"ref-for-ascii-lowercase\u2460"}],"title":"4.4. URL parsing"}],"url":"https://infra.spec.whatwg.org/#ascii-lowercase"}, "7125fbb8": {"dfnID":"7125fbb8","dfnText":"iso-2022-jp","external":true,"refSections":[{"refs":[{"id":"ref-for-iso-2022-jp"}],"title":"1.3. Percent-encoded bytes"}],"url":"https://encoding.spec.whatwg.org/#iso-2022-jp"}, @@ -3927,6 +4312,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "URL-stringification-behavior": {"dfnID":"URL-stringification-behavior","dfnText":"stringifier","external":false,"refSections":[],"url":"#URL-stringification-behavior"}, "a08f319f": {"dfnID":"a08f319f","dfnText":"environment","external":true,"refSections":[{"refs":[{"id":"ref-for-blob-url-entry-environment"}],"title":"4.7. Origin"}],"url":"https://w3c.github.io/FileAPI/#blob-url-entry-environment"}, "a3033be5": {"dfnID":"a3033be5","dfnText":"utf-8 decode without bom","external":true,"refSections":[{"refs":[{"id":"ref-for-utf-8-decode-without-bom"}],"title":"1.3. Percent-encoded bytes"},{"refs":[{"id":"ref-for-utf-8-decode-without-bom\u2460"}],"title":"3.5. Host parsing"},{"refs":[{"id":"ref-for-utf-8-decode-without-bom\u2461"}],"title":"5.1. application/x-www-form-urlencoded parsing"}],"url":"https://encoding.spec.whatwg.org/#utf-8-decode-without-bom"}, +"a3fb968a": {"dfnID":"a3fb968a","dfnText":"surrogate","external":true,"refSections":[{"refs":[{"id":"ref-for-surrogate"}],"title":"4.3. URL writing"}],"url":"https://infra.spec.whatwg.org/#surrogate"}, "a5c91173": {"dfnID":"a5c91173","dfnText":"SameObject","external":true,"refSections":[{"refs":[{"id":"ref-for-SameObject"}],"title":"6.1. URL class"}],"url":"https://webidl.spec.whatwg.org/#SameObject"}, "absolute-url-string": {"dfnID":"absolute-url-string","dfnText":"absolute-URL string","external":false,"refSections":[{"refs":[{"id":"ref-for-absolute-url-string"}],"title":"4.3. URL writing"}],"url":"#absolute-url-string"}, "absolute-url-with-fragment-string": {"dfnID":"absolute-url-with-fragment-string","dfnText":"absolute-URL-with-fragment string","external":false,"refSections":[{"refs":[{"id":"ref-for-absolute-url-with-fragment-string"}],"title":"4.3. URL writing"},{"refs":[{"id":"ref-for-absolute-url-with-fragment-string\u2460"}],"title":"6.1. URL class"}],"url":"#absolute-url-with-fragment-string"}, @@ -4506,6 +4892,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -4728,11 +5171,11 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://infra.spec.whatwg.org/#string": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"string","type":"dfn","url":"https://infra.spec.whatwg.org/#string"}, "https://infra.spec.whatwg.org/#string-code-point-length": {"export":true,"for_":["string","JavaScript string","scalar value string"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"code point length","type":"dfn","url":"https://infra.spec.whatwg.org/#string-code-point-length"}, "https://infra.spec.whatwg.org/#string-length": {"export":true,"for_":["string","JavaScript string","scalar value string"],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"length","type":"dfn","url":"https://infra.spec.whatwg.org/#string-length"}, +"https://infra.spec.whatwg.org/#surrogate": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"infra","spec":"infra","status":"current","text":"surrogate","type":"dfn","url":"https://infra.spec.whatwg.org/#surrogate"}, "https://tc39.es/ecma262/#sec-encodeuricomponent-uricomponent": {"export":true,"for_":[],"level":"262","normative":true,"shortname":"ecma","spec":"ecma-262","status":"anchor-block","text":"\"encodeURIComponent() [sic]\"","type":"method","url":"https://tc39.es/ecma262/#sec-encodeuricomponent-uricomponent"}, "https://w3c.github.io/FileAPI/#BlobURLStore": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"blob url store","type":"dfn","url":"https://w3c.github.io/FileAPI/#BlobURLStore"}, "https://w3c.github.io/FileAPI/#blob-url-entry": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"blob url entry","type":"dfn","url":"https://w3c.github.io/FileAPI/#blob-url-entry"}, "https://w3c.github.io/FileAPI/#blob-url-entry-environment": {"export":true,"for_":["blob URL entry"],"level":"1","normative":true,"shortname":"fileapi","spec":"fileapi","status":"current","text":"environment","type":"dfn","url":"https://w3c.github.io/FileAPI/#blob-url-entry-environment"}, -"https://w3c.github.io/i18n-glossary/#dfn-surrogate": {"export":true,"for_":[],"level":"1","normative":false,"shortname":"i18n-glossary","spec":"i18n-glossary","status":"current","text":"surrogates","type":"dfn","url":"https://w3c.github.io/i18n-glossary/#dfn-surrogate"}, "https://webidl.spec.whatwg.org/#Exposed": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"Exposed","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#Exposed"}, "https://webidl.spec.whatwg.org/#LegacyWindowAlias": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"LegacyWindowAlias","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#LegacyWindowAlias"}, "https://webidl.spec.whatwg.org/#SameObject": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"webidl","spec":"webidl","status":"current","text":"SameObject","type":"extended-attribute","url":"https://webidl.spec.whatwg.org/#SameObject"}, diff --git a/tests/github/whatwg/xhr/xhr.console.txt b/tests/github/whatwg/xhr/xhr.console.txt index ebc506bc8e..15189145c0 100644 --- a/tests/github/whatwg/xhr/xhr.console.txt +++ b/tests/github/whatwg/xhr/xhr.console.txt @@ -1,23 +1,86 @@ LINE ? of computed-metadata.include: Found unmatched text macro [COMMIT-SHA]. Correct the macro, or escape it with a leading backslash. -LINE 1:40 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 1:42 of !Commits metadata: Found unmatched text macro [COMMIT-SHA] in href='...'. Correct the macro, or escape it by replacing the opening [ with &#91;. +LINE 277: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="277" data-link-type="event" data-lt="abort"><code bs-line-number="277">abort</code></a> +LINE 278: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="278" data-link-type="event" data-lt="error"><code bs-line-number="278">error</code></a> LINE 285: No 'dfn' refs found for 'terminated' with for='['fetch']'. <a bs-line-number="285" data-lt="terminated" data-link-for="fetch" data-link-type="dfn">terminate</a> +LINE 311: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="311" data-link-type="event" data-lt="abort"><code bs-line-number="311">abort</code></a> +LINE 314: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="314" data-link-type="event" data-lt="error"><code bs-line-number="314">error</code></a> LINE 429: No 'dfn' refs found for 'responsible document'. <a bs-line-number="429" data-link-type="dfn" data-lt="responsible document">responsible document</a> +LINE 442: No 'dfn' refs found for 'api url character encoding'. +<a bs-line-number="442" data-link-for="environment settings object" data-link-type="dfn" data-lt="API URL character encoding">API URL character encoding</a> LINE 472: No 'dfn' refs found for 'terminated' with for='['fetch']'. <a bs-line-number="472" data-lt="terminated" data-link-for="fetch" data-link-type="dfn">Terminate</a> LINE 538: No 'dfn' refs found for 'normalize' with for='['header/value']'. <a bs-line-number="538" data-link-for="header/value" data-link-type="dfn" data-lt="Normalize">Normalize</a> LINE 547: No 'dfn' refs found for 'forbidden header name'. <a bs-line-number="547" data-link-type="dfn" data-lt="forbidden header name">forbidden header name</a> +LINE 611: Multiple possible 'credentials' dfn refs. +Arbitrarily chose https://fetch.spec.whatwg.org/#credentials +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:fetch; type:dfn; text:credentials +spec:vc-data-model-2.0; type:dfn; text:credentials +<a bs-line-number="611" data-link-type="dfn" data-lt="credentials">credentials</a> LINE 899: No 'dfn' refs found for 'processrequestbody'. <a bs-line-number="899" data-link-for="fetch" data-link-type="dfn" data-lt="processRequestBody"><i bs-line-number="899">processRequestBody</i></a> LINE 916: No 'dfn' refs found for 'terminate' with for='['fetch']'. <a bs-line-number="916" data-link-for="fetch" data-link-type="dfn" data-lt="terminate">terminate</a> LINE 952: No 'dfn' refs found for 'terminate' with for='['fetch']'. <a bs-line-number="952" data-link-for="fetch" data-link-type="dfn" data-lt="terminate">terminate</a> +LINE 1003: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="1003" data-link-type="event" data-lt="abort"><code bs-line-number="1003">abort</code></a> +LINE 1007: Ambiguous for-less link for 'error', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:error +for-less references: +spec:media-source-2; type:event; for:/; text:error +spec:media-source-2; type:event; for:/; text:error +<a bs-line-number="1007" data-link-type="event" data-lt="error"><code bs-line-number="1007">error</code></a> LINE 1062: No 'dfn' refs found for 'terminated' with for='['fetch']'. <a bs-line-number="1062" data-lt="terminated" data-link-for="fetch" data-link-type="dfn">Terminate</a> +LINE 1066: Ambiguous for-less link for 'abort', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: +Local references: +spec:xhr; type:event; for:XMLHttpRequest; text:abort +for-less references: +spec:media-source-2; type:event; for:/; text:abort +spec:media-source-2; type:event; for:/; text:abort +<a bs-line-number="1066" data-link-type="event" data-lt="abort"><code bs-line-number="1066">abort</code></a> +LINE 1304: Multiple possible 'content type' dfn refs. +Arbitrarily chose https://dom.spec.whatwg.org/#concept-document-content-type +To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: +spec:dom; type:dfn; text:content type +spec:fetch; type:dfn; text:content type +<a bs-line-number="1304" data-link-type="dfn" data-lt="content type">content type</a> LINE 1600: Ambiguous for-less link for 'entries', please see <https://speced.github.io/bikeshed/#ambi-for> for instructions: Local references: spec:xhr; type:dfn; for:FormData; text:entries @@ -30,22 +93,26 @@ Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1752" data-link-type="dfn" data-lt="Events">Events</a> LINE 1777: Multiple possible 'events' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1777" data-link-type="dfn" data-lt="events">events</a> LINE 1833: Multiple possible 'events' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1833" data-link-type="dfn" data-lt="events">events</a> LINE 1841: Multiple possible 'events' dfn refs. Arbitrarily chose https://dom.spec.whatwg.org/#concept-event To auto-select one of the following refs, insert one of these lines into a <pre class=link-defaults> block: spec:dom; type:dfn; text:event spec:webdriver-bidi; type:dfn; text:event +spec:fenced-frame; type:dfn; text:event <a bs-line-number="1841" data-link-type="dfn" data-lt="events">events</a> diff --git a/tests/github/whatwg/xhr/xhr.html b/tests/github/whatwg/xhr/xhr.html index 4573a7bb9a..c4f70786a6 100644 --- a/tests/github/whatwg/xhr/xhr.html +++ b/tests/github/whatwg/xhr/xhr.html @@ -3,27 +3,359 @@ <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <meta content="#3c790a" name="theme-color"> + <meta content="light dark" name="color-scheme"> <title>XMLHttpRequest Standard</title> - <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> - <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/standard.css" rel="stylesheet"> + <link crossorigin href="https://resources.whatwg.org/spec.css" rel="stylesheet"> <link crossorigin href="https://resources.whatwg.org/logo-xhr.svg" rel="icon"> - <script async crossorigin src="https://resources.whatwg.org/file-issue.js"></script> - <script async crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> - <script crossorigin defer src="https://resources.whatwg.org/standard-mdn-annos.js"></script> - <meta content="dark light" name="color-scheme"> -<style>/* Boilerplate: style-idl-highlighting */ -pre.idl.highlight { - background: var(--borderedblock-bg, var(--def-bg)); + <script crossorigin defer src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js"></script> +<style>/* Boilerplate: style-dfn-panel */ +:root { + --dfnpanel-bg: #ddd; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #ffc; + --dfnpanel-target-outline: orange; +} +@media (prefers-color-scheme: dark) { + :root { + --dfnpanel-bg: #222; + --dfnpanel-text: var(--text); + --dfnpanel-target-bg: #333; + --dfnpanel-target-outline: silver; + } +} +.dfn-panel { + position: absolute; + z-index: 35; + width: 20em; + width: 300px; + height: auto; + max-height: 500px; + overflow: auto; + padding: 0.5em 0.75em; + font: small Helvetica Neue, sans-serif, Droid Sans Fallback; + background: var(--dfnpanel-bg); + color: var(--dfnpanel-text); + border: outset 0.2em; + white-space: normal; /* in case it's moved into a pre */ +} +.dfn-panel:not(.on) { display: none; } +.dfn-panel * { margin: 0; padding: 0; text-indent: 0; } +.dfn-panel > b { display: block; } +.dfn-panel a { color: var(--dfnpanel-text); } +.dfn-panel a:not(:hover) { text-decoration: none !important; border-bottom: none !important; } +.dfn-panel a:focus { + outline: 5px auto Highlight; + outline: 5px auto -webkit-focus-ring-color; +} +.dfn-panel > b + b { margin-top: 0.25em; } +.dfn-panel ul { padding: 0 0 0 1em; list-style: none; } +.dfn-panel li a { + max-width: calc(300px - 1.5em - 1em); + overflow: hidden; + text-overflow: ellipsis; +} + +.dfn-panel.activated { + display: inline-block; + position: fixed; + left: 8px; + bottom: 2em; + margin: 0 auto; + max-width: calc(100vw - 1.5em - .4em - .5em); + max-height: 30vh; + transition: left 1s ease-out, bottom 1s ease-out; +} + +.dfn-panel .link-item:hover { + text-decoration: underline; +} +.dfn-panel .link-item .copy-icon { + opacity: 0; +} +.dfn-panel .link-item:hover .copy-icon, +.dfn-panel .link-item .copy-icon:focus { + opacity: 1; +} + +.dfn-panel .copy-icon { + display: inline-block; + margin-right: 0.5em; + width: 0.85em; + height: 1em; + border-radius: 3px; + background-color: #ccc; + cursor: pointer; +} + +.dfn-panel .copy-icon .icon { + width: 100%; + height: 100%; + background-color: #fff; + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.dfn-panel .copy-icon .icon::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid black; + background-color: #ccc; + opacity: 0.25; + transform: translate(3px, -3px); +} + +.dfn-panel .copy-icon:active .icon::before { + opacity: 1; +} + +.dfn-paneled[role="button"] { cursor: help; } + +.highlighted { + animation: target-fade 3s; +} + +@keyframes target-fade { + from { + background-color: var(--dfnpanel-target-bg); + outline: 5px solid var(--dfnpanel-target-outline); + } + to { + color: var(--a-normal-text); + background-color: transparent; + outline: transparent; + } } </style> -<style>/* Boilerplate: style-issues */ -a[href].issue-return { - float: right; - float: inline-end; - color: var(--issueheading-text); - font-weight: bold; - text-decoration: none; +<style>/* Boilerplate: style-mdn-anno */ +:root { + --mdn-bg: #EEE; + --mdn-shadow: #999; + --mdn-nosupport-text: #ccc; + --mdn-pass: green; + --mdn-fail: red; +} +@media (prefers-color-scheme: dark) { + :root { + --mdn-bg: #222; + --mdn-shadow: #444; + --mdn-nosupport-text: #666; + --mdn-pass: #690; + --mdn-fail: #d22; + } +} +.mdn-anno { + background: var(--mdn-bg, #EEE); + border-radius: .25em; + box-shadow: 0 0 3px var(--mdn-shadow, #999); + color: var(--text, black); + font: 1em sans-serif; + hyphens: none; + max-width: min-content; + overflow: hidden; + padding: 0.2em; + position: absolute; + right: 0.3em; + top: auto; + white-space: nowrap; + word-wrap: normal; + z-index: 8; +} +.mdn-anno.unpositioned { + display: none; +} +.mdn-anno.overlapping-main { + opacity: .2; + transition: opacity .1s; +} +.mdn-anno[open] { + opacity: 1; + z-index: 9; + min-width: 9em; +} +.mdn-anno:hover { + opacity: 1; + outline: var(--text, black) 1px solid; +} +.mdn-anno > summary { + font-weight: normal; + text-align: right; + cursor: pointer; + display: block; +} +.mdn-anno > summary > .less-than-two-engines-flag { + color: var(--mdn-fail); + padding-right: 2px; +} +.mdn-anno > summary > .all-engines-flag { + color: var(--mdn-pass); + padding-right: 2px; +} +.mdn-anno > summary > span { + color: #fff; + background-color: #000; + font-weight: normal; + font-family: zillaslab, Palatino, "Palatino Linotype", serif; + padding: 2px 3px 0px 3px; + line-height: 1.3em; + vertical-align: top; +} +.mdn-anno > .feature { + margin-top: 20px; +} +.mdn-anno > .feature:not(:first-of-type) { + border-top: 1px solid #999; + margin-top: 6px; + padding-top: 2px; +} +.mdn-anno > .feature > .less-than-two-engines-text { + color: var(--mdn-fail); +} +.mdn-anno > .feature > .all-engines-text { + color: var(--mdn-pass); +} +.mdn-anno > .feature > p { + font-size: .75em; + margin-top: 6px; + margin-bottom: 0; +} +.mdn-anno > .feature > p + p { + margin-top: 3px; +} +.mdn-anno > .feature > .support { + display: block; + font-size: 0.6em; + margin: 0; + padding: 0; + margin-top: 2px; +} +.mdn-anno > .feature > .support + div { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > hr { + display: block; + border: none; + border-top: 1px dotted #999; + padding: 3px 0px 0px 0px; + margin: 2px 3px 0px 3px; +} +.mdn-anno > .feature > .support > hr::before { + content: ""; +} +.mdn-anno > .feature > .support > span { + padding: 0.2em 0; + display: block; + display: table; +} +.mdn-anno > .feature > .support > span.no { + color: var(--mdn-nosupport-text); + filter: grayscale(100%); +} +.mdn-anno > .feature > .support > span.no::before { + opacity: 0.5; +} +.mdn-anno > .feature > .support > span:first-of-type { + padding-top: 0.5em; +} +.mdn-anno > .feature > .support > span > span { + padding: 0 0.5em; + display: table-cell; +} +.mdn-anno > .feature > .support > span > span:first-child { + width: 100%; +} +.mdn-anno > .feature > .support > span > span:last-child { + width: 100%; + white-space: pre; + padding: 0; +} +.mdn-anno > .feature > .support > span::before { + content: ' '; + display: table-cell; + min-width: 1.5em; + height: 1.5em; + background: no-repeat center center; + background-size: contain; + text-align: right; + font-size: 0.75em; + font-weight: bold; +} +.mdn-anno > .feature > .support > .chrome_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .firefox_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .chrome::before { + background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); +} +.mdn-anno > .feature > .support > .edge_blink::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); +} +.mdn-anno > .feature > .support > .edge::before { + background-image: url(https://resources.whatwg.org/browser-logos/edge_legacy.svg); +} +.mdn-anno > .feature > .support > .firefox::before { + background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); +} +.mdn-anno > .feature > .support > .ie::before { + background-image: url(https://resources.whatwg.org/browser-logos/ie.png); +} +.mdn-anno > .feature > .support > .safari_ios::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); +} +.mdn-anno > .feature > .support > .nodejs::before { + background-image: url(https://nodejs.org/static/images/favicons/favicon.ico); +} +.mdn-anno > .feature > .support > .opera_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .opera::before { + background-image: url(https://resources.whatwg.org/browser-logos/opera.svg); +} +.mdn-anno > .feature > .support > .safari::before { + background-image: url(https://resources.whatwg.org/browser-logos/safari.png); +} +.mdn-anno > .feature > .support > .samsunginternet_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/samsung.svg); +} +.mdn-anno > .feature > .support > .webview_android::before { + background-image: url(https://resources.whatwg.org/browser-logos/android-webview.png); +} +.name-slug-mismatch { + color: red; +} +.caniuse-status:hover { + z-index: 9; +} +/* dt, li, .issue, .note, and .example are "position: relative", so to put annotation at right margin, must move to right of containing block */; +.h-entry:not(.status-LS) dt > .mdn-anno, .h-entry:not(.status-LS) li > .mdn-anno, .h-entry:not(.status-LS) .issue > .mdn-anno, .h-entry:not(.status-LS) .note > .mdn-anno, .h-entry:not(.status-LS) .example > .mdn-anno { + right: -6.7em; +} +.h-entry p + .mdn-anno { + margin-top: 0; +} + h2 + .mdn-anno.after { + margin: -48px 0 0 0; +} + h3 + .mdn-anno.after { + margin: -46px 0 0 0; +} + h4 + .mdn-anno.after { + margin: -42px 0 0 0; +} + h5 + .mdn-anno.after { + margin: -40px 0 0 0; +} + h6 + .mdn-anno.after { + margin: -40px 0 0 0; } </style> <style>/* Boilerplate: style-ref-hints */ @@ -61,7 +393,7 @@ </style> <body class="h-entry status-LS"> <div class="head"> - <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" crossorigin height="100" src="https://resources.whatwg.org/logo-xhr.svg"> </a> + <a class="logo" href="https://whatwg.org/"> <img alt="WHATWG" class="darkmode-aware" crossorigin height="100" src="https://resources.whatwg.org/logo-xhr.svg"> </a> <hgroup> <h1 class="p-name no-ref" id="title">XMLHttpRequest</h1> <p id="subtitle">Living Standard — Last Updated <time class="dt-updated" datetime="1970-01-01">1 January 1970</time> </p> @@ -69,7 +401,7 @@ <h1 class="p-name no-ref" id="title">XMLHttpRequest</h1> <div data-fill-with="spec-metadata"> <dl> <dt>Participate: - <dd><a href="https://github.com/whatwg/xhr">GitHub whatwg/xhr</a> (<a href="https://github.com/whatwg/xhr/issues/new">new issue</a>, <a href="https://github.com/whatwg/xhr/issues">open issues</a>) + <dd><a href="https://github.com/whatwg/xhr">GitHub whatwg/xhr</a> (<a href="https://github.com/whatwg/xhr/issues/new/choose">new issue</a>, <a href="https://github.com/whatwg/xhr/issues">open issues</a>) <dd><a href="https://whatwg.org/chat">Chat on Matrix</a> <dt>Commits: <dd><a href="https://github.com/whatwg/xhr/commits">GitHub whatwg/xhr/commits</a> @@ -341,7 +673,7 @@ <h3 class="heading settled" data-level="3.1" id="constructors"><span class="secn <p>Set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this">this</a>’s <a data-link-type="dfn" href="#upload-object" id="ref-for-upload-object">upload object</a> to a <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#new" id="ref-for-new">new</a> <code>XMLHttpRequestUpload</code> object. </p> </ol> <h3 class="heading settled" data-level="3.2" id="garbage-collection"><span class="secno">3.2. </span><span class="content">Garbage collection</span><a class="self-link" href="#garbage-collection"></a></h3> - <p>An <code class="idl"><a data-link-type="idl" href="#xmlhttprequest" id="ref-for-xmlhttprequest⑧">XMLHttpRequest</a></code> object must not be garbage collected if its <a data-link-type="dfn" href="#concept-xmlhttprequest-state" id="ref-for-concept-xmlhttprequest-state">state</a> is either <i>opened</i> with the <a data-link-type="dfn" href="#send-flag" id="ref-for-send-flag"><code>send()</code> flag</a> set, <i>headers received</i>, or <i>loading</i>, and it has one or more <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-listener" id="ref-for-concept-event-listener">event listeners</a> registered whose <b>type</b> is one of <a class="idl-code" data-link-type="event" href="#event-xhr-readystatechange" id="ref-for-event-xhr-readystatechange"><code>readystatechange</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-progress" id="ref-for-event-xhr-progress"><code>progress</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-abort" id="ref-for-event-xhr-abort"><code>abort</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-error" id="ref-for-event-xhr-error"><code>error</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-load" id="ref-for-event-xhr-load"><code>load</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-timeout" id="ref-for-event-xhr-timeout"><code>timeout</code></a>, and <a class="idl-code" data-link-type="event" href="#event-xhr-loadend" id="ref-for-event-xhr-loadend"><code>loadend</code></a>. </p> + <p>An <code class="idl"><a data-link-type="idl" href="#xmlhttprequest" id="ref-for-xmlhttprequest⑧">XMLHttpRequest</a></code> object must not be garbage collected if its <a data-link-type="dfn" href="#concept-xmlhttprequest-state" id="ref-for-concept-xmlhttprequest-state">state</a> is either <i>opened</i> with the <a data-link-type="dfn" href="#send-flag" id="ref-for-send-flag"><code>send()</code> flag</a> set, <i>headers received</i>, or <i>loading</i>, and it has one or more <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#concept-event-listener" id="ref-for-concept-event-listener">event listeners</a> registered whose <b>type</b> is one of <a class="idl-code" data-link-type="event" href="#event-xhr-readystatechange" id="ref-for-event-xhr-readystatechange"><code>readystatechange</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-progress" id="ref-for-event-xhr-progress"><code>progress</code></a>, <a class="idl-code" data-link-type="event"><code>abort</code></a>, <a class="idl-code" data-link-type="event"><code>error</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-load" id="ref-for-event-xhr-load"><code>load</code></a>, <a class="idl-code" data-link-type="event" href="#event-xhr-timeout" id="ref-for-event-xhr-timeout"><code>timeout</code></a>, and <a class="idl-code" data-link-type="event" href="#event-xhr-loadend" id="ref-for-event-xhr-loadend"><code>loadend</code></a>. </p> <p>If an <code class="idl"><a data-link-type="idl" href="#xmlhttprequest" id="ref-for-xmlhttprequest⑨">XMLHttpRequest</a></code> object is garbage collected while its connection is still open, the user agent must <a data-link-type="dfn">terminate</a> the ongoing fetch operated by the <code class="idl"><a data-link-type="idl" href="#xmlhttprequest" id="ref-for-xmlhttprequest①⓪">XMLHttpRequest</a></code> object. </p> @@ -363,10 +695,10 @@ <h3 class="heading settled" data-level="3.3" id="event-handlers"><span class="se <td><a class="idl-code" data-link-type="event" href="#event-xhr-progress" id="ref-for-event-xhr-progress①"><code>progress</code></a> <tr> <td><dfn class="dfn-paneled idl-code" data-dfn-for="XMLHttpRequestEventTarget" data-dfn-type="attribute" data-export id="handler-xhr-onabort"><code>onabort</code></dfn> - <td><a class="idl-code" data-link-type="event" href="#event-xhr-abort" id="ref-for-event-xhr-abort①"><code>abort</code></a> + <td><a class="idl-code" data-link-type="event"><code>abort</code></a> <tr> <td><dfn class="dfn-paneled idl-code" data-dfn-for="XMLHttpRequestEventTarget" data-dfn-type="attribute" data-export id="handler-xhr-onerror"><code>onerror</code></dfn> - <td><a class="idl-code" data-link-type="event" href="#event-xhr-error" id="ref-for-event-xhr-error①"><code>error</code></a> + <td><a class="idl-code" data-link-type="event"><code>error</code></a> <tr> <td><dfn class="dfn-paneled idl-code" data-dfn-for="XMLHttpRequestEventTarget" data-dfn-type="attribute" data-export id="handler-xhr-onload"><code>onload</code></dfn> <td><a class="idl-code" data-link-type="event" href="#event-xhr-load" id="ref-for-event-xhr-load①"><code>load</code></a> @@ -459,7 +791,7 @@ <h4 class="heading settled" data-level="3.5.1" id="the-open()-method"><span clas <li> <p><a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-method-normalize" id="ref-for-concept-method-normalize">Normalize</a> <var>method</var>. </p> <li> - <p>Let <var>parsedURL</var> be the result of <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser">parsing</a> <var>url</var> with <var>settingsObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url">API base URL</a> and <var>settingsObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding" id="ref-for-api-url-character-encoding">API URL character encoding</a>. </p> + <p>Let <var>parsedURL</var> be the result of <a data-link-type="dfn" href="https://url.spec.whatwg.org/#concept-url-parser" id="ref-for-concept-url-parser">parsing</a> <var>url</var> with <var>settingsObject</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url" id="ref-for-api-base-url">API base URL</a> and <var>settingsObject</var>’s <a data-link-type="dfn">API URL character encoding</a>. </p> <li> <p>If <var>parsedURL</var> is failure, then <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#dfn-throw" id="ref-for-dfn-throw④">throw</a> a "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#syntaxerror" id="ref-for-syntaxerror②">SyntaxError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException⑦">DOMException</a></code>. </p> <li> @@ -871,9 +1203,9 @@ <h4 class="heading settled" data-level="3.5.6" id="the-send()-method"><span clas <li> <p>If <var>xhr</var>’s <a data-link-type="dfn" href="#timed-out-flag" id="ref-for-timed-out-flag③">timed out flag</a> is set, then run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps">request error steps</a> for <var>xhr</var>, <a class="idl-code" data-link-type="event" href="#event-xhr-timeout" id="ref-for-event-xhr-timeout③"><code>timeout</code></a>, and "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#timeouterror" id="ref-for-timeouterror①">TimeoutError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException②③">DOMException</a></code>. </p> <li> - <p>Otherwise, if <var>xhr</var>’s <a data-link-type="dfn" href="#response" id="ref-for-response①⓪">response</a>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-aborted" id="ref-for-concept-response-aborted">aborted flag</a> is set, run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps①">request error steps</a> for <var>xhr</var>, <a class="idl-code" data-link-type="event" href="#event-xhr-abort" id="ref-for-event-xhr-abort②"><code>abort</code></a>, and "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#aborterror" id="ref-for-aborterror">AbortError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException②④">DOMException</a></code>. </p> + <p>Otherwise, if <var>xhr</var>’s <a data-link-type="dfn" href="#response" id="ref-for-response①⓪">response</a>’s <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-response-aborted" id="ref-for-concept-response-aborted">aborted flag</a> is set, run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps①">request error steps</a> for <var>xhr</var>, <a class="idl-code" data-link-type="event"><code>abort</code></a>, and "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#aborterror" id="ref-for-aborterror">AbortError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException②④">DOMException</a></code>. </p> <li> - <p>Otherwise, if <var>xhr</var>’s <a data-link-type="dfn" href="#response" id="ref-for-response①①">response</a>’s is a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-network-error" id="ref-for-concept-network-error⑤">network error</a>, run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps②">request error steps</a> for <var>xhr</var>, <a class="idl-code" data-link-type="event" href="#event-xhr-error" id="ref-for-event-xhr-error②"><code>error</code></a>, and "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#networkerror" id="ref-for-networkerror">NetworkError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException②⑤">DOMException</a></code>. </p> + <p>Otherwise, if <var>xhr</var>’s <a data-link-type="dfn" href="#response" id="ref-for-response①①">response</a>’s is a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-network-error" id="ref-for-concept-network-error⑤">network error</a>, run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps②">request error steps</a> for <var>xhr</var>, <a class="idl-code" data-link-type="event"><code>error</code></a>, and "<code class="idl"><a class="idl-code" data-link-type="exception" href="https://webidl.spec.whatwg.org/#networkerror" id="ref-for-networkerror">NetworkError</a></code>" <code class="idl"><a data-link-type="idl" href="https://webidl.spec.whatwg.org/#idl-DOMException" id="ref-for-idl-DOMException②⑤">DOMException</a></code>. </p> </ol> <p>The <dfn class="dfn-paneled" data-dfn-type="dfn" data-noexport id="request-error-steps">request error steps</dfn> for an <code class="idl"><a data-link-type="idl" href="#xmlhttprequest" id="ref-for-xmlhttprequest①⑥">XMLHttpRequest</a></code> object <var>xhr</var>, <var>event</var>, and optionally <var>exception</var> are: </p> <ol> @@ -917,7 +1249,7 @@ <h4 class="heading settled" data-level="3.5.7" id="the-abort()-method"><span cla <li> <p><a data-link-type="dfn">Terminate</a> the ongoing fetch with the <i>aborted</i> flag set. </p> <li> - <p>If <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪⓪">this</a>’s <a data-link-type="dfn" href="#concept-xmlhttprequest-state" id="ref-for-concept-xmlhttprequest-state①⑨">state</a> is <i>opened</i> with <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪①">this</a>’s <a data-link-type="dfn" href="#send-flag" id="ref-for-send-flag①③"><code>send()</code> flag</a> set, <i>headers received</i>, or <i>loading</i>, then run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps③">request error steps</a> for <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪②">this</a> and <a class="idl-code" data-link-type="event" href="#event-xhr-abort" id="ref-for-event-xhr-abort③"><code>abort</code></a>. </p> + <p>If <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪⓪">this</a>’s <a data-link-type="dfn" href="#concept-xmlhttprequest-state" id="ref-for-concept-xmlhttprequest-state①⑨">state</a> is <i>opened</i> with <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪①">this</a>’s <a data-link-type="dfn" href="#send-flag" id="ref-for-send-flag①③"><code>send()</code> flag</a> set, <i>headers received</i>, or <i>loading</i>, then run the <a data-link-type="dfn" href="#request-error-steps" id="ref-for-request-error-steps③">request error steps</a> for <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪②">this</a> and <a class="idl-code" data-link-type="event"><code>abort</code></a>. </p> <li> <p>If <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪③">this</a>’s <a data-link-type="dfn" href="#concept-xmlhttprequest-state" id="ref-for-concept-xmlhttprequest-state②⓪">state</a> is <i>done</i>, then set <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪④">this</a>’s <a data-link-type="dfn" href="#concept-xmlhttprequest-state" id="ref-for-concept-xmlhttprequest-state②①">state</a> to <i>unsent</i> and <a data-link-type="dfn" href="https://webidl.spec.whatwg.org/#this" id="ref-for-this①⓪⑤">this</a>’s <a data-link-type="dfn" href="#response" id="ref-for-response①③">response</a> to a <a data-link-type="dfn" href="https://fetch.spec.whatwg.org/#concept-network-error" id="ref-for-concept-network-error⑦">network error</a>. </p> <p class="note" role="note">No <a class="idl-code" data-link-type="event" href="#event-xhr-readystatechange" id="ref-for-event-xhr-readystatechange⑧"><code>readystatechange</code></a> event is dispatched. </p> @@ -1860,7 +2192,6 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla <li><span class="dfn-paneled" id="5d7209e9">Window</span> <li><span class="dfn-paneled" id="d5b8ecce">a known definite encoding</span> <li><span class="dfn-paneled" id="1b5b1c0c">api base url</span> - <li><span class="dfn-paneled" id="2a37f6e3">api url character encoding</span> <li><span class="dfn-paneled" id="0f7b890e">constructing the entry list</span> <li><span class="dfn-paneled" id="ce3d2bbb">current global object</span> <li><span class="dfn-paneled" id="6a5a59a0">event handler</span> @@ -2190,7 +2521,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <details class="mdn-anno unpositioned" data-anno-for="interface-formdata"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> <div class="feature"> - <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FormData" title="The FormData interface provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the fetch() or XMLHttpRequest.send() method. It uses the same format a form would use if the encoding type were set to &quot;multipart/form-data&quot;.">FormData</a></p> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/FormData" title="The FormData interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the fetch(), XMLHttpRequest.send() or navigator.sendBeacon() methods. It uses the same format a form would use if the encoding type were set to &quot;multipart/form-data&quot;.">FormData</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> <span class="firefox yes"><span>Firefox</span><span>4+</span></span><span class="safari yes"><span>Safari</span><span>5+</span></span><span class="chrome yes"><span>Chrome</span><span>5+</span></span> @@ -2332,6 +2663,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/abort_event" title="The abort event is fired at XMLHttpRequestUpload when a request has been aborted, for example because the program called XMLHttpRequest.abort().">XMLHttpRequestUpload/abort_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-onabort"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2348,6 +2692,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/abort_event" title="The abort event is fired at XMLHttpRequestUpload when a request has been aborted, for example because the program called XMLHttpRequest.abort().">XMLHttpRequestUpload/abort_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="event-xhr-error"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2364,6 +2721,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/error_event" title="The error event is fired when the request encountered an error.">XMLHttpRequestUpload/error_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-onerror"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2380,6 +2750,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/error_event" title="The error event is fired when the request encountered an error.">XMLHttpRequestUpload/error_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-getallresponseheaders()-method"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2428,6 +2811,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/load_event" title="The load event is fired when an XMLHttpRequestUpload transaction completes successfully.">XMLHttpRequestUpload/load_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-onload"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2444,6 +2840,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/load_event" title="The load event is fired when an XMLHttpRequestUpload transaction completes successfully.">XMLHttpRequestUpload/load_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="event-xhr-loadend"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2460,6 +2869,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadend_event" title="The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).">XMLHttpRequestUpload/loadend_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>18+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-onloadend"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2476,6 +2898,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadend_event" title="The loadend event is fired when a request has completed, whether successfully (after load) or unsuccessfully (after abort or error).">XMLHttpRequestUpload/loadend_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>18+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="event-xhr-loadstart"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2492,6 +2927,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadstart_event" title="The loadstart event is fired when a request has started to load data.">XMLHttpRequestUpload/loadstart_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-onloadstart"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2508,6 +2956,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/loadstart_event" title="The loadstart event is fired when a request has started to load data.">XMLHttpRequestUpload/loadstart_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-open()-method"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2556,6 +3017,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/progress_event" title="The progress event is fired periodically when a request receives more data.">XMLHttpRequestUpload/progress_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-onprogress"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2572,6 +3046,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>1+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/progress_event" title="The progress event is fired periodically when a request receives more data.">XMLHttpRequestUpload/progress_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="states"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2796,6 +3283,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>1.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/timeout_event" title="The timeout event is fired when progression is terminated due to preset time expiring.">XMLHttpRequestUpload/timeout_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>12+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>29+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>1.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="handler-xhr-ontimeout"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2812,6 +3312,19 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>1.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> </div> </div> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload/timeout_event" title="The timeout event is fired when progression is terminated due to preset time expiring.">XMLHttpRequestUpload/timeout_event</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>12+</span></span><span class="safari yes"><span>Safari</span><span>7+</span></span><span class="chrome yes"><span>Chrome</span><span>29+</span></span> + <hr> + <span class="opera no"><span>Opera</span><span>?</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios no"><span>iOS Safari</span><span>?</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android no"><span>Android WebView</span><span>?</span></span><span class="samsunginternet_android yes"><span>Samsung Internet</span><span>1.0+</span></span><span class="opera_android no"><span>Opera Mobile</span><span>?</span></span> + </div> + </div> </details> <details class="mdn-anno unpositioned" data-anno-for="the-upload-attribute"> <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> @@ -2819,7 +3332,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/upload" title="The XMLHttpRequest upload property returns an XMLHttpRequestUpload object that can be observed to monitor an upload&apos;s progress.">XMLHttpRequest/upload</a></p> <p class="all-engines-text">In all current engines.</p> <div class="support"> - <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>1+</span></span> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> <hr> <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> <hr> @@ -2877,6 +3390,22 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I </div> </div> </details> + <details class="mdn-anno unpositioned" data-anno-for="xmlhttprequestupload"> + <summary><b class="all-engines-flag" title="This feature is in all current engines.">✔</b><span>MDN</span></summary> + <div class="feature"> + <p><a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestUpload" title="The XMLHttpRequestUpload interface represents the upload process for a specific XMLHttpRequest. It is an opaque object that represents the underlying, browser-dependent, upload process. It is an XMLHttpRequestEventTarget and can be obtained by calling XMLHttpRequest.upload.">XMLHttpRequestUpload</a></p> + <p class="all-engines-text">In all current engines.</p> + <div class="support"> + <span class="firefox yes"><span>Firefox</span><span>3.5+</span></span><span class="safari yes"><span>Safari</span><span>4+</span></span><span class="chrome yes"><span>Chrome</span><span>2+</span></span> + <hr> + <span class="opera yes"><span>Opera</span><span>12.1+</span></span><span class="edge_blink yes"><span>Edge</span><span>79+</span></span> + <hr> + <span class="edge yes"><span>Edge (Legacy)</span><span>12+</span></span><span class="ie yes"><span>IE</span><span>10+</span></span> + <hr> + <span class="firefox_android no"><span>Firefox for Android</span><span>?</span></span><span class="safari_ios yes"><span>iOS Safari</span><span>3+</span></span><span class="chrome_android no"><span>Chrome for Android</span><span>?</span></span><span class="webview_android yes"><span>Android WebView</span><span>37+</span></span><span class="samsunginternet_android no"><span>Samsung Internet</span><span>?</span></span><span class="opera_android yes"><span>Opera Mobile</span><span>12.1+</span></span> + </div> + </div> + </details> <script>/* Boilerplate: script-dom-helper */ "use strict"; function query(sel) { return document.querySelector(sel); } @@ -3102,7 +3631,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "22cb9a16": {"dfnID":"22cb9a16","dfnText":"ByteString","external":true,"refSections":[{"refs":[{"id":"ref-for-idl-ByteString"},{"id":"ref-for-idl-ByteString\u2460"},{"id":"ref-for-idl-ByteString\u2461"},{"id":"ref-for-idl-ByteString\u2462"},{"id":"ref-for-idl-ByteString\u2463"},{"id":"ref-for-idl-ByteString\u2464"},{"id":"ref-for-idl-ByteString\u2465"},{"id":"ref-for-idl-ByteString\u2466"}],"title":"3. Interface XMLHttpRequest"}],"url":"https://webidl.spec.whatwg.org/#idl-ByteString"}, "24afcdf2": {"dfnID":"24afcdf2","dfnText":"status message","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response-status-message"}],"title":"3.6.3. The statusText getter"}],"url":"https://fetch.spec.whatwg.org/#concept-response-status-message"}, "26b82890": {"dfnID":"26b82890","dfnText":"event","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-event"}],"title":"5. Interface ProgressEvent"},{"refs":[{"id":"ref-for-concept-event\u2460"},{"id":"ref-for-concept-event\u2461"}],"title":"5.2. Suggested names for events using the ProgressEvent interface"},{"refs":[{"id":"ref-for-concept-event\u2462"}],"title":"5.3. Security considerations"}],"url":"https://dom.spec.whatwg.org/#concept-event"}, -"2a37f6e3": {"dfnID":"2a37f6e3","dfnText":"api url character encoding","external":true,"refSections":[{"refs":[{"id":"ref-for-api-url-character-encoding"}],"title":"3.5.1. The open() method"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "2bc0cdf4": {"dfnID":"2bc0cdf4","dfnText":"EventTarget","external":true,"refSections":[{"refs":[{"id":"ref-for-eventtarget"}],"title":"3. Interface XMLHttpRequest"}],"url":"https://dom.spec.whatwg.org/#eventtarget"}, "2c16705a": {"dfnID":"2c16705a","dfnText":"normalize","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-method-normalize"}],"title":"3.5.1. The open() method"}],"url":"https://fetch.spec.whatwg.org/#concept-method-normalize"}, "2c8ec3a8": {"dfnID":"2c8ec3a8","dfnText":"useparallelqueue","external":true,"refSections":[{"refs":[{"id":"ref-for-fetch-useparallelqueue"}],"title":"3.5.6. The send() method"}],"url":"https://fetch.spec.whatwg.org/#fetch-useparallelqueue"}, @@ -3304,8 +3832,8 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "e99bd18e": {"dfnID":"e99bd18e","dfnText":"relevant global object","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-relevant-global"}],"title":"3.5.6. The send() method"}],"url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global"}, "eb1b1af3": {"dfnID":"eb1b1af3","dfnText":"network error","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-network-error"}],"title":"3. Interface XMLHttpRequest"},{"refs":[{"id":"ref-for-concept-network-error\u2460"}],"title":"3.5.1. The open() method"},{"refs":[{"id":"ref-for-concept-network-error\u2461"},{"id":"ref-for-concept-network-error\u2462"},{"id":"ref-for-concept-network-error\u2463"},{"id":"ref-for-concept-network-error\u2464"},{"id":"ref-for-concept-network-error\u2465"}],"title":"3.5.6. The send() method"},{"refs":[{"id":"ref-for-concept-network-error\u2466"}],"title":"3.5.7. The abort() method"}],"url":"https://fetch.spec.whatwg.org/#concept-network-error"}, "ee7bba09": {"dfnID":"ee7bba09","dfnText":"response","external":true,"refSections":[{"refs":[{"id":"ref-for-concept-response"}],"title":"3. Interface XMLHttpRequest"}],"url":"https://fetch.spec.whatwg.org/#concept-response"}, -"event-xhr-abort": {"dfnID":"event-xhr-abort","dfnText":"abort","external":false,"refSections":[{"refs":[{"id":"ref-for-event-xhr-abort"}],"title":"3.2. Garbage collection"},{"refs":[{"id":"ref-for-event-xhr-abort\u2460"}],"title":"3.3. Event handlers"},{"refs":[{"id":"ref-for-event-xhr-abort\u2461"}],"title":"3.5.6. The send() method"},{"refs":[{"id":"ref-for-event-xhr-abort\u2462"}],"title":"3.5.7. The abort() method"}],"url":"#event-xhr-abort"}, -"event-xhr-error": {"dfnID":"event-xhr-error","dfnText":"error","external":false,"refSections":[{"refs":[{"id":"ref-for-event-xhr-error"}],"title":"3.2. Garbage collection"},{"refs":[{"id":"ref-for-event-xhr-error\u2460"}],"title":"3.3. Event handlers"},{"refs":[{"id":"ref-for-event-xhr-error\u2461"}],"title":"3.5.6. The send() method"}],"url":"#event-xhr-error"}, +"event-xhr-abort": {"dfnID":"event-xhr-abort","dfnText":"abort","external":false,"refSections":[],"url":"#event-xhr-abort"}, +"event-xhr-error": {"dfnID":"event-xhr-error","dfnText":"error","external":false,"refSections":[],"url":"#event-xhr-error"}, "event-xhr-load": {"dfnID":"event-xhr-load","dfnText":"load","external":false,"refSections":[{"refs":[{"id":"ref-for-event-xhr-load"}],"title":"3.2. Garbage collection"},{"refs":[{"id":"ref-for-event-xhr-load\u2460"}],"title":"3.3. Event handlers"},{"refs":[{"id":"ref-for-event-xhr-load\u2461"},{"id":"ref-for-event-xhr-load\u2462"}],"title":"3.5.6. The send() method"}],"url":"#event-xhr-load"}, "event-xhr-loadend": {"dfnID":"event-xhr-loadend","dfnText":"loadend","external":false,"refSections":[{"refs":[{"id":"ref-for-event-xhr-loadend"}],"title":"3.2. Garbage collection"},{"refs":[{"id":"ref-for-event-xhr-loadend\u2460"}],"title":"3.3. Event handlers"},{"refs":[{"id":"ref-for-event-xhr-loadend\u2461"},{"id":"ref-for-event-xhr-loadend\u2462"},{"id":"ref-for-event-xhr-loadend\u2463"},{"id":"ref-for-event-xhr-loadend\u2464"}],"title":"3.5.6. The send() method"}],"url":"#event-xhr-loadend"}, "event-xhr-loadstart": {"dfnID":"event-xhr-loadstart","dfnText":"loadstart","external":false,"refSections":[{"refs":[{"id":"ref-for-event-xhr-loadstart"}],"title":"3.3. Event handlers"},{"refs":[{"id":"ref-for-event-xhr-loadstart\u2460"},{"id":"ref-for-event-xhr-loadstart\u2461"}],"title":"3.5.6. The send() method"}],"url":"#event-xhr-loadstart"}, @@ -3741,6 +4269,63 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I } } </script> +<script>/* Boilerplate: script-position-annos */ +"use strict"; +{ +function repositionAnnoPanels(){ + const panels = [...document.querySelectorAll("[data-anno-for]")]; + hydratePanels(panels); + let vSoFar = 0; + for(const panel of panels.sort(cmpTops)) { + if(panel.top < vSoFar) { + panel.top = vSoFar; + panel.style.top = vSoFar + "px"; + } + vSoFar = panel.top + panel.height + 15; + } +} +function hydratePanels(panels) { + const main = document.querySelector("main"); + let mainRect; + if(main) mainRect = main.getBoundingClientRect(); + // First display them all, if they're not already visible. + for(const panel of panels) { + panel.classList.remove("unpositioned"); + } + // Measure them all + for(const panel of panels) { + const dfn = document.getElementById(panel.getAttribute("data-anno-for")); + if(!dfn) { + console.log("Can't find the annotation panel target:", panel); + continue; + } + panel.dfn = dfn; + panel.top = window.scrollY + dfn.getBoundingClientRect().top; + let panelRect = panel.getBoundingClientRect(); + panel.height = panelRect.height; + if(main) { + panel.overlappingMain = panelRect.left < mainRect.right; + } else { + panel.overlappingMain = false; + } + } + // And finally position them + for(const panel of panels) { + const dfn = panel.dfn; + if(!dfn) continue; + panel.style.top = panel.top + "px"; + panel.classList.toggle("overlapping-main", panel.overlappingMain); + } +} + +function cmpTops(a,b) { + return a.top - b.top; +} + +window.addEventListener("load", repositionAnnoPanels); +window.addEventListener("resize", repositionAnnoPanels); +} +</script> <script>/* Boilerplate: script-ref-hints */ "use strict"; { @@ -3792,8 +4377,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "#dom-xmlhttprequest-unsent": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"UNSENT","type":"const","url":"#dom-xmlhttprequest-unsent"}, "#dom-xmlhttprequest-upload": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"upload","type":"attribute","url":"#dom-xmlhttprequest-upload"}, "#dom-xmlhttprequest-withcredentials": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"withCredentials","type":"attribute","url":"#dom-xmlhttprequest-withcredentials"}, -"#event-xhr-abort": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"abort","type":"event","url":"#event-xhr-abort"}, -"#event-xhr-error": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"error","type":"event","url":"#event-xhr-error"}, "#event-xhr-load": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"load","type":"event","url":"#event-xhr-load"}, "#event-xhr-loadend": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"loadend","type":"event","url":"#event-xhr-loadend"}, "#event-xhr-loadstart": {"export":true,"for_":["XMLHttpRequest"],"level":"","normative":true,"shortname":"xhr","spec":"xhr","status":"local","text":"loadstart","type":"event","url":"#event-xhr-loadstart"}, @@ -3915,7 +4498,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "https://html.spec.whatwg.org/multipage/parsing.html#a-known-definite-encoding": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"a known definite encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/parsing.html#a-known-definite-encoding"}, "https://html.spec.whatwg.org/multipage/parsing.html#prescan-a-byte-stream-to-determine-its-encoding": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"prescan a byte stream to determine its encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/parsing.html#prescan-a-byte-stream-to-determine-its-encoding"}, "https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api base url","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-base-url"}, -"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"api url character encoding","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#api-url-character-encoding"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"relevant global object","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global"}, "https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-origin": {"export":true,"for_":["environment settings object"],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"origin","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#concept-settings-object-origin"}, "https://html.spec.whatwg.org/multipage/webappapis.html#current-global-object": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"html","spec":"html","status":"current","text":"current global object","type":"dfn","url":"https://html.spec.whatwg.org/multipage/webappapis.html#current-global-object"}, diff --git a/tests/idl001.html b/tests/idl001.html index 9ce5b42f1b..9852489435 100644 --- a/tests/idl001.html +++ b/tests/idl001.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl002.html b/tests/idl002.html index c8e3e7b1c1..eb82dcf909 100644 --- a/tests/idl002.html +++ b/tests/idl002.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl003.html b/tests/idl003.html index 634d2b5f28..28be690722 100644 --- a/tests/idl003.html +++ b/tests/idl003.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl004.html b/tests/idl004.html index 763877e46b..4d61d297c9 100644 --- a/tests/idl004.html +++ b/tests/idl004.html @@ -531,7 +531,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl005.html b/tests/idl005.html index e36e36b520..9218cdd75f 100644 --- a/tests/idl005.html +++ b/tests/idl005.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl006.html b/tests/idl006.html index c18fb23fc5..c9962852e1 100644 --- a/tests/idl006.html +++ b/tests/idl006.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl007.html b/tests/idl007.html index a182545bb2..25522880e3 100644 --- a/tests/idl007.html +++ b/tests/idl007.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/idl008.html b/tests/idl008.html index 8e481540fd..1009faa17b 100644 --- a/tests/idl008.html +++ b/tests/idl008.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/img-sizing/image-size001.html b/tests/img-sizing/image-size001.html index 9d1938d667..2e43dd0a87 100644 --- a/tests/img-sizing/image-size001.html +++ b/tests/img-sizing/image-size001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/include001.html b/tests/include001.html index cbee5c7ee8..67d2e55524 100644 --- a/tests/include001.html +++ b/tests/include001.html @@ -446,7 +446,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/include002.html b/tests/include002.html index cb49253a11..5e038dfe66 100644 --- a/tests/include002.html +++ b/tests/include002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/include003.html b/tests/include003.html index d1fd0f8018..1221cd7c08 100644 --- a/tests/include003.html +++ b/tests/include003.html @@ -572,7 +572,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/include004.html b/tests/include004.html index 21f9d56bd1..60b457575e 100644 --- a/tests/include004.html +++ b/tests/include004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/include005.html b/tests/include005.html index 42f9de8815..3bf70da4da 100644 --- a/tests/include005.html +++ b/tests/include005.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/include006.html b/tests/include006.html index a73554f407..22d1792e4d 100644 --- a/tests/include006.html +++ b/tests/include006.html @@ -446,7 +446,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/index001.html b/tests/index001.html index 8681592dd7..3d838e2a89 100644 --- a/tests/index001.html +++ b/tests/index001.html @@ -531,7 +531,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/index002.html b/tests/index002.html index aa1ec75e4c..45101e9cc1 100644 --- a/tests/index002.html +++ b/tests/index002.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/index003.html b/tests/index003.html index a2c469813b..7181990c32 100644 --- a/tests/index003.html +++ b/tests/index003.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/lexer001.html b/tests/lexer001.html index e6438487c7..b317a006b4 100644 --- a/tests/lexer001.html +++ b/tests/lexer001.html @@ -528,7 +528,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/line-count-001.html b/tests/line-count-001.html index 33ba19599d..3ece8a01b3 100644 --- a/tests/line-count-001.html +++ b/tests/line-count-001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/link-shorthands001.html b/tests/link-shorthands001.html index ef89eae03e..62c1731704 100644 --- a/tests/link-shorthands001.html +++ b/tests/link-shorthands001.html @@ -569,7 +569,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links001.html b/tests/links001.html index db9e01126b..1018daa420 100644 --- a/tests/links001.html +++ b/tests/links001.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links002.html b/tests/links002.html index 293a320636..405e7eed29 100644 --- a/tests/links002.html +++ b/tests/links002.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links003.html b/tests/links003.html index f6f6f337ba..d79ec81cd4 100644 --- a/tests/links003.html +++ b/tests/links003.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links004.html b/tests/links004.html index 7c899e4456..f79c9a928f 100644 --- a/tests/links004.html +++ b/tests/links004.html @@ -567,7 +567,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links005.html b/tests/links005.html index 6d8909ca3c..e2b368019a 100644 --- a/tests/links005.html +++ b/tests/links005.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links006.html b/tests/links006.html index 1abc0e95c5..884be4e3df 100644 --- a/tests/links006.html +++ b/tests/links006.html @@ -564,7 +564,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/links007.html b/tests/links007.html index b83ec6c4f4..c2b5790ce3 100644 --- a/tests/links007.html +++ b/tests/links007.html @@ -691,7 +691,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: @@ -772,7 +772,7 @@ <h2 class="no-num no-ref heading settled" id="references"><span class="content"> <h3 class="no-num no-ref heading settled" id="normative"><span class="content">Normative References</span></h3> <dl> <dt id="biblio-css-color-4">[CSS-COLOR-4] - <dd>Tab Atkins Jr.; Chris Lilley; Lea Verou. <a href="https://drafts.csswg.org/css-color/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color/">https://drafts.csswg.org/css-color/</a> + <dd>Chris Lilley; Tab Atkins Jr.; Lea Verou. <a href="https://drafts.csswg.org/css-color-4/"><cite>CSS Color Module Level 4</cite></a>. URL: <a href="https://drafts.csswg.org/css-color-4/">https://drafts.csswg.org/css-color-4/</a> <dt id="biblio-webidl">[WEBIDL] <dd>Edgar Chen; Timothy Gu. <a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a> </dl> @@ -1381,7 +1381,7 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I "use strict"; { let linkTitleData = { -"https://drafts.csswg.org/css-color-4/#typedef-color": "Expands to: aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | transparent | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen", +"https://drafts.csswg.org/css-color-4/#typedef-color": "Expands to: <alpha-value> | accentcolor | accentcolortext | activeborder | activecaption | activetext | aliceblue | antiquewhite | appworkspace | aqua | aquamarine | azure | background | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | buttonborder | buttonface | buttonhighlight | buttonshadow | buttontext | cadetblue | canvas | canvastext | captiontext | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | currentcolor | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | field | fieldtext | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | graytext | green | greenyellow | grey | highlight | highlighttext | honeydew | hotpink | inactiveborder | inactivecaption | inactivecaptiontext | indianred | indigo | infobackground | infotext | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | linktext | magenta | mark | marktext | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | menu | menutext | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | none | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | scrollbar | seagreen | seashell | selecteditem | selecteditemtext | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | threeddarkshadow | threedface | threedhighlight | threedlightshadow | threedshadow | tomato | transparent | turquoise | violet | visitedtext | wheat | white | whitesmoke | window | windowframe | windowtext | yellow | yellowgreen", }; function setTypeTitles() { diff --git a/tests/links008.html b/tests/links008.html index 04a059d4ec..a6ac4888cc 100644 --- a/tests/links008.html +++ b/tests/links008.html @@ -408,7 +408,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/lint001.html b/tests/lint001.html index b8e3477760..9128eedabc 100644 --- a/tests/lint001.html +++ b/tests/lint001.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/macros001.html b/tests/macros001.html index b697906992..4c673cb261 100644 --- a/tests/macros001.html +++ b/tests/macros001.html @@ -416,7 +416,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown001.html b/tests/markdown001.html index 03b958b00e..fc339883ed 100644 --- a/tests/markdown001.html +++ b/tests/markdown001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown002.html b/tests/markdown002.html index b9da8cf554..2e76f173b2 100644 --- a/tests/markdown002.html +++ b/tests/markdown002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown003.html b/tests/markdown003.html index abcd8d0e1e..0352e977e0 100644 --- a/tests/markdown003.html +++ b/tests/markdown003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown004.html b/tests/markdown004.html index 4664965e2f..2c15fe04a8 100644 --- a/tests/markdown004.html +++ b/tests/markdown004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown005.html b/tests/markdown005.html index 362872dcba..4979a7446c 100644 --- a/tests/markdown005.html +++ b/tests/markdown005.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown006.html b/tests/markdown006.html index af11ea47b9..05040ac628 100644 --- a/tests/markdown006.html +++ b/tests/markdown006.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown007.html b/tests/markdown007.html index 709b785445..af3277160b 100644 --- a/tests/markdown007.html +++ b/tests/markdown007.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown008.html b/tests/markdown008.html index 4d8751ffb4..633e02e109 100644 --- a/tests/markdown008.html +++ b/tests/markdown008.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown009.html b/tests/markdown009.html index 56f35df550..f88564f72c 100644 --- a/tests/markdown009.html +++ b/tests/markdown009.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown010.html b/tests/markdown010.html index b7fa7d0f39..9998204164 100644 --- a/tests/markdown010.html +++ b/tests/markdown010.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown011.html b/tests/markdown011.html index 96c8054d1a..a92dde6256 100644 --- a/tests/markdown011.html +++ b/tests/markdown011.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown012.html b/tests/markdown012.html index e65e497344..c6a6b2c669 100644 --- a/tests/markdown012.html +++ b/tests/markdown012.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/markdown013.html b/tests/markdown013.html index a8074ab999..5594359ebf 100644 --- a/tests/markdown013.html +++ b/tests/markdown013.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/merge-metadata001.html b/tests/merge-metadata001.html index d167bfa248..3aee65533f 100644 --- a/tests/merge-metadata001.html +++ b/tests/merge-metadata001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata-expires001.html b/tests/metadata-expires001.html index bce536ab6d..efe26a5f4b 100644 --- a/tests/metadata-expires001.html +++ b/tests/metadata-expires001.html @@ -406,7 +406,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt class="editor">Editor: diff --git a/tests/metadata-expires002.html b/tests/metadata-expires002.html index b08d631868..b1bdb4f19c 100644 --- a/tests/metadata-expires002.html +++ b/tests/metadata-expires002.html @@ -406,7 +406,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt class="editor">Editor: diff --git a/tests/metadata-expires003.html b/tests/metadata-expires003.html index 917632726e..46c3a9de7b 100644 --- a/tests/metadata-expires003.html +++ b/tests/metadata-expires003.html @@ -406,7 +406,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt class="editor">Editor: diff --git a/tests/metadata-expires004.html b/tests/metadata-expires004.html index e67fb89385..cdffc29066 100644 --- a/tests/metadata-expires004.html +++ b/tests/metadata-expires004.html @@ -406,7 +406,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt class="editor">Editor: diff --git a/tests/metadata-expires005.html b/tests/metadata-expires005.html index 9c6d7e6c0f..1e583ad4c8 100644 --- a/tests/metadata-expires005.html +++ b/tests/metadata-expires005.html @@ -406,7 +406,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt class="editor">Editor: diff --git a/tests/metadata-expires006.html b/tests/metadata-expires006.html index f71185c786..41e0cf7d5f 100644 --- a/tests/metadata-expires006.html +++ b/tests/metadata-expires006.html @@ -406,7 +406,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt class="editor">Editor: diff --git a/tests/metadata-order001.html b/tests/metadata-order001.html index 84acb3d864..910c85ba13 100644 --- a/tests/metadata-order001.html +++ b/tests/metadata-order001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Test</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>Version History: diff --git a/tests/metadata001.html b/tests/metadata001.html index 79cfe0ae7b..c8a0a36895 100644 --- a/tests/metadata001.html +++ b/tests/metadata001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata002.html b/tests/metadata002.html index 158610f12d..0a8c4b7bdc 100644 --- a/tests/metadata002.html +++ b/tests/metadata002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata003.html b/tests/metadata003.html index d470ce2db2..a3ed1afbd4 100644 --- a/tests/metadata003.html +++ b/tests/metadata003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata004.html b/tests/metadata004.html index 6c915fdfc7..e95f79ffba 100644 --- a/tests/metadata004.html +++ b/tests/metadata004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata005.html b/tests/metadata005.html index bd69925d5f..bc465323dc 100644 --- a/tests/metadata005.html +++ b/tests/metadata005.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata006.html b/tests/metadata006.html index b70487491b..a2c0a3113c 100644 --- a/tests/metadata006.html +++ b/tests/metadata006.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata007.html b/tests/metadata007.html index ab79b8d8b0..2f75b8ff4d 100644 --- a/tests/metadata007.html +++ b/tests/metadata007.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata008.html b/tests/metadata008.html index ddccae48ab..776f737bd2 100644 --- a/tests/metadata008.html +++ b/tests/metadata008.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata009.html b/tests/metadata009.html index 474ca513a9..4fac7aa6c6 100644 --- a/tests/metadata009.html +++ b/tests/metadata009.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata010.html b/tests/metadata010.html index 47bf1cc22c..c76a9c097f 100644 --- a/tests/metadata010.html +++ b/tests/metadata010.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata011.html b/tests/metadata011.html index 845afefa84..dc6c2a5ac5 100644 --- a/tests/metadata011.html +++ b/tests/metadata011.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata012.html b/tests/metadata012.html index 6ec280bc0c..5a94787c31 100644 --- a/tests/metadata012.html +++ b/tests/metadata012.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata013.html b/tests/metadata013.html index af8f50a336..d503dac992 100644 --- a/tests/metadata013.html +++ b/tests/metadata013.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata014.html b/tests/metadata014.html index df5460e233..4b5ba131b2 100644 --- a/tests/metadata014.html +++ b/tests/metadata014.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata015.html b/tests/metadata015.html index 904890884b..b1948382f7 100644 --- a/tests/metadata015.html +++ b/tests/metadata015.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata016.html b/tests/metadata016.html index 67b3be5057..1617e05435 100644 --- a/tests/metadata016.html +++ b/tests/metadata016.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/metadata017.html b/tests/metadata017.html index 62f401c0b2..5e232f2917 100644 --- a/tests/metadata017.html +++ b/tests/metadata017.html @@ -5,7 +5,6 @@ <title>Foo</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://example.com/foo" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -434,7 +433,7 @@ <h1 class="p-name no-ref" id="title">Foo</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -451,7 +450,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> <p> This document was published - by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Working Draft</strong> using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Working Draft</strong> using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. Publication as a Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. </p> @@ -465,12 +464,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[foo] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bfoo%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/metadata018.html b/tests/metadata018.html index 258bd71081..f43260c0f6 100644 --- a/tests/metadata018.html +++ b/tests/metadata018.html @@ -5,7 +5,6 @@ <title>Foo</title> <meta content="WD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://example.com/" rel="canonical"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> @@ -434,7 +433,7 @@ <h1 class="p-name no-ref" id="title">Foo</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -451,7 +450,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" and the latest revision of this technical report can be found in the <a href="https://www.w3.org/TR/">W3C technical reports index at https://www.w3.org/TR/.</a></em> </p> <p> This document was published - by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Working Draft</strong> using the <a href="https://www.w3.org/2021/Process-20211102/#recs-and-notes">Recommendation + by the <a href="https://www.w3.org/groups/wg/css">CSS Working Group</a> as a <strong>Working Draft</strong> using the <a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">Recommendation track</a>. Publication as a Working Draft does not imply endorsement by <abbr title="World Wide Web Consortium">W3C</abbr> and its Members. </p> @@ -465,12 +464,12 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content" “[foo] <i>…summary of comment…</i>”. All issues and comments are <a href="https://lists.w3.org/Archives/Public/public-css-archive/">archived</a>. Alternately, feedback can be sent to the (<a href="https://lists.w3.org/Archives/Public/www-style/">archived</a>) public mailing list <a href="mailto:www-style@w3.org?Subject=%5Bfoo%5D%20PUT%20SUBJECT%20HERE">www-style@w3.org</a>. </p> - <p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p> - <p>This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/">W3C Patent Policy</a>. + <p>This document is governed by the <a href="https://www.w3.org/policies/process/20231103/" id="w3c_process_revision">03 November 2023 W3C Process Document</a>. </p> + <p>This document was produced by a group operating under the <a href="https://www.w3.org/policies/patent-policy/20200915/">W3C Patent Policy</a>. W3C maintains a <a href="https://www.w3.org/groups/wg/css/ipr" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes - contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> + contains <a href="https://www.w3.org/policies/patent-policy/20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/policies/patent-policy/20200915/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p> <p></p> </div> <div data-fill-with="at-risk"></div> diff --git a/tests/notes-examples001.html b/tests/notes-examples001.html index 0e337bf3b7..65e10c0d9c 100644 --- a/tests/notes-examples001.html +++ b/tests/notes-examples001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Notes</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/notes-issues001.html b/tests/notes-issues001.html index e2ccf88be8..3a04f567bd 100644 --- a/tests/notes-issues001.html +++ b/tests/notes-issues001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Notes</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/pre001.html b/tests/pre001.html index 7d54513bd0..825bb00c78 100644 --- a/tests/pre001.html +++ b/tests/pre001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/pre002.html b/tests/pre002.html index 6d2f0b4916..cd19f52ac5 100644 --- a/tests/pre002.html +++ b/tests/pre002.html @@ -690,7 +690,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/pre003.html b/tests/pre003.html index b265c11c89..4f5f7c66c7 100644 --- a/tests/pre003.html +++ b/tests/pre003.html @@ -611,7 +611,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/pre004.html b/tests/pre004.html index 167e42e64c..f168f0fb6f 100644 --- a/tests/pre004.html +++ b/tests/pre004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-001.html b/tests/previous-versions-001.html index 8a69006945..8c1ea98ba4 100644 --- a/tests/previous-versions-001.html +++ b/tests/previous-versions-001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-002.html b/tests/previous-versions-002.html index 01c7c5511a..c8602b26f5 100644 --- a/tests/previous-versions-002.html +++ b/tests/previous-versions-002.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-003.html b/tests/previous-versions-003.html index 6e3d3db89a..51678f75e4 100644 --- a/tests/previous-versions-003.html +++ b/tests/previous-versions-003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-004.html b/tests/previous-versions-004.html index 32a9caa3ac..d30ec47fd7 100644 --- a/tests/previous-versions-004.html +++ b/tests/previous-versions-004.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-005.html b/tests/previous-versions-005.html index 544a7d8804..139e03b7f4 100644 --- a/tests/previous-versions-005.html +++ b/tests/previous-versions-005.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-006.html b/tests/previous-versions-006.html index 25651f80ae..243bb6c4e6 100644 --- a/tests/previous-versions-006.html +++ b/tests/previous-versions-006.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/previous-versions-007.html b/tests/previous-versions-007.html index 1d5867550e..31f104d63b 100644 --- a/tests/previous-versions-007.html +++ b/tests/previous-versions-007.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/section-links001.html b/tests/section-links001.html index d41f402a6c..9a24c7537c 100644 --- a/tests/section-links001.html +++ b/tests/section-links001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Section Links</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/section-links002.html b/tests/section-links002.html index 7152644ffb..887bd67dbc 100644 --- a/tests/section-links002.html +++ b/tests/section-links002.html @@ -531,7 +531,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Section Links With Weird HTML</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/section-links003.html b/tests/section-links003.html index 6eb53ab25e..c3c5b35b7e 100644 --- a/tests/section-links003.html +++ b/tests/section-links003.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1>Cross-Spec Section Links</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/tar-file001.html b/tests/tar-file001.html index cbee5c7ee8..67d2e55524 100644 --- a/tests/tar-file001.html +++ b/tests/tar-file001.html @@ -446,7 +446,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">Foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/template.console.txt b/tests/template.console.txt index e69de29bb2..f12ca0c830 100644 --- a/tests/template.console.txt +++ b/tests/template.console.txt @@ -0,0 +1 @@ +FATAL ERROR: Unknown Group 'WGNAMEORWHATEVER'. See docs for recognized Group values. diff --git a/tests/template.html b/tests/template.html index 9c4d9f05a1..0061e21ebe 100644 --- a/tests/template.html +++ b/tests/template.html @@ -3,10 +3,10 @@ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>Your Spec Title</title> - <meta content="w3c/UD" name="w3c-status"> + <meta content="UD" name="w3c-status"> <link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet"> - <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <link href="http://example.com/url-this-spec-will-live-at" rel="canonical"> + <link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon"> <meta content="dark light" name="color-scheme"> <link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css"> <style>/* Boilerplate: style-autolinks */ @@ -424,7 +424,7 @@ <h1 class="p-name no-ref" id="title">Your Spec Title</h1> </div> </details> <div data-fill-with="warning"></div> - <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" rel="license">permissive document license</a> rules apply. </p> + <p class="copyright" data-fill-with="copyright"><a href="https://www.w3.org/policies/#copyright">Copyright</a> © 1970 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/" rel="license" title="W3C Software and Document License">permissive document license</a> rules apply. </p> <hr title="Separator for header"> </div> <div class="p-summary" data-fill-with="abstract"> @@ -444,7 +444,6 @@ <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2> <a href="#w3c-conformance"><span class="secno"></span> <span class="content">Conformance</span></a> <ol class="toc"> <li><a href="#w3c-conventions"><span class="secno"></span> <span class="content">Document conventions</span></a> - <li><a href="#w3c-conformant-algorithms"><span class="secno"></span> <span class="content">Conformant Algorithms</span></a> </ol> <li> <a href="#references"><span class="secno"></span> <span class="content">References</span></a> @@ -483,20 +482,6 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont with <code>class="note"</code>, like this: </p> <p class="note" role="note">Note, this is an informative note.</p> - <h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3> - <p>Requirements phrased in the imperative as part of algorithms - (such as "strip any leading space characters" - or "return false and abort these steps") - are to be interpreted with the meaning of the key word - ("must", "should", "may", etc) - used in introducing the algorithm. </p> - <p>Conformance requirements phrased as algorithms or specific steps - can be implemented in any manner, - so long as the end result is equivalent. - In particular, the algorithms defined in this specification - are intended to be easy to understand - and are not intended to be performant. - Implementers are encouraged to optimize. </p> </div> <script src="https://www.w3.org/scripts/TR/2021/fixup.js"></script> <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2> diff --git a/tests/var001.html b/tests/var001.html index e8ffbbee75..fde266f0af 100644 --- a/tests/var001.html +++ b/tests/var001.html @@ -407,7 +407,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: diff --git a/tests/var002.html b/tests/var002.html index 617dc4f7e7..cf54ad61e7 100644 --- a/tests/var002.html +++ b/tests/var002.html @@ -450,7 +450,7 @@ <div class="head"> <p data-fill-with="logo"></p> <h1 class="p-name no-ref" id="title">foo</h1> - <p id="w3c-state"><a href="https://www.w3.org/standards/types#LS">Living Standard</a>, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> + <p>Living Standard, <time class="dt-updated" datetime="1970-01-01">1 January 1970</time></p> <div data-fill-with="spec-metadata"> <dl> <dt>This version: